diff --git a/R.as.calculator.Rnw b/R.as.calculator.Rnw index b59e5657..828569de 100644 --- a/R.as.calculator.Rnw +++ b/R.as.calculator.Rnw @@ -6,7 +6,7 @@ opts_knit$set(concordance=TRUE) opts_knit$set(unnamed.chunk.label = 'calculator-chunk') @ -\chapter{The R language: ``words'' and ``sentences''}\label{chap:R:as:calc} +\chapter{The R language: ``Words'' and ``sentences''}\label{chap:R:as:calc} \begin{VF} The desire to economize time and mental effort in arithmetical computations, and to eliminate human liability to error, is probably as old as the science of arithmetic itself. @@ -36,7 +36,7 @@ In later chapters you will learn how to write compound statements, the equivalen \section{Numeric values and arithmetic} \index{classes and modes!numeric, integer, double|(}\index{numbers and their arithmetic|(}\qRclass{numeric}\index{math operators}\index{math functions}\index{numeric values}\qRoperator{+}\qRoperator{-}\qRoperator{*}\qRoperator{/} -When working in \Rlang with arithmetic expressions, the normal mathematical precedence rules are respected, but parentheses can be used to alter this order. Parentheses can be nested, but in contrast to the usual practice in mathematics, the same parenthesis symbol is used at all nesting levels. +When working in \Rlang with arithmetic expressions, the normal mathematical precedence rules are respected, but parentheses can be used to alter this order. Parentheses can be nested, but in contrast to the usual practice in mathematics, the same parenthesis symbol is used at all nesting levels. \begin{explainbox} 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 $3 + 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, 9. In programming languages, similar rules apply to all operators, even those taking as operands non-numeric values. @@ -1431,7 +1431,7 @@ a.list @ \subsection{Member extraction and subsetting} -Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{member extraction}}\index{lists!indexes|see{member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. +Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{lists!member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. <>= a.list$x @@ -1764,7 +1764,7 @@ detach(my_data_frame.df) head(my_data_frame.df, 2) @ -In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, in this case column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. +In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, In this case, column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. <>= my_data_frame.df$C <- NULL @@ -1772,7 +1772,7 @@ my_data_frame.df$C <- with(my_data_frame.df, (A + B) / A) head(my_data_frame.df, 2) @ -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. +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. <>= my_data_frame.df$C <- NULL diff --git a/R.data.Rnw b/R.data.Rnw index ee4dd425..c13b1560 100644 --- a/R.data.Rnw +++ b/R.data.Rnw @@ -410,7 +410,7 @@ Function \Rfunction{arrange()} is used for sorting the rows---makes sorting a da arrange(long_iris.tb, Species, plant_part, part_dim) @ -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. +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. <>= filter(long_iris.tb, plant_part == "Petal") diff --git a/R.data.io.Rnw b/R.data.io.Rnw index 904d1475..2651fcb7 100644 --- a/R.data.io.Rnw +++ b/R.data.io.Rnw @@ -246,7 +246,7 @@ Text files containing data in columns can be divided into two broad groups. Thos In the first example we will read a file with fields solely delimited by ``,.'' This is what is called comma-separated-values (CSV) format which can be read and written with \Rfunction{read.csv()} and \Rfunction{write.csv()}, respectively. -Example file \code{not-aligned-ASCII-UK.csv} contains. +Example file \code{not-aligned-ASCII-UK.csv} contains: <>= cat(readLines("extdata/not-aligned-ASCII-UK.csv"), sep = "\n") @@ -471,7 +471,7 @@ write_excel_csv(my.df, path = "my-file6.csv") file.show("my-file6.csv", pager = "console") @ -That saves a file containing the following text. +That saves a file containing the following text: <>= cat(read_lines('my-file6.csv'), sep = '\n') @ @@ -573,7 +573,7 @@ sheets <- excel_sheets("extdata/Book1.xlsx") sheets @ -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. +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. <>= Book1.df <- read_excel("extdata/Book1.xlsx", sheet = "my data") @@ -690,7 +690,7 @@ my_spss.tb <- read_sav(file = "extdata/my-data.sav") my_spss.tb[1:6, c(1:6, 17)] @ -In this case the dates are correctly decoded. +In this case, the dates are correctly decoded. Next, we import an \pgrmname{SPSS}'s \code{.sav} file saved 15 years ago. @@ -868,7 +868,7 @@ remote_my_spss.tb <- remote_my_spss.tb @ -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. +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. <>= my.url <- paste("ftp://ftp.cdc.noaa.gov/Datasets/ncep.reanalysis.derived/", diff --git a/R.functions.Rnw b/R.functions.Rnw index eb7ea73f..4bf21aab 100644 --- a/R.functions.Rnw +++ b/R.functions.Rnw @@ -5,7 +5,7 @@ opts_knit$set(concordance=TRUE) opts_knit$set(unnamed.chunk.label = 'functions-chunk') @ -\chapter{The R language: adding new ``words''}\label{chap:R:functions} +\chapter{The R language: Adding new ``words''}\label{chap:R:functions} \begin{VF} Computer Science is a science of abstraction---creating the right model for a problem and devising the appropriate mechanizable techniques to solve it. diff --git a/R.intro.Rnw b/R.intro.Rnw index 94307460..15f9aadc 100644 --- a/R.intro.Rnw +++ b/R.intro.Rnw @@ -6,7 +6,7 @@ opts_knit$set(unnamed.chunk.label = 'intro-chunk') opts_knit$set(concordance=TRUE) @ -\chapter{R: the language and the program}\label{chap:R:introduction} +\chapter{R: The language and the program}\label{chap:R:introduction} \begin{VF} In a world of \ldots\ relentless pressure for more of everything, one can lose sight of the basic principles---simplicity, clarity, generality---that form the bedrock of good software. @@ -30,7 +30,7 @@ Finally you will learn about the different types and sources of help available t Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rlang as a program}} of \Rpgrm as a computer program. \Rpgrm is indeed a computer program---a piece of software--- but it is also a computer language, implemented in the \Rpgrm program. Does this make a difference? Yes. Until recently we had only one mainstream implementation of \Rlang, the program \Rpgrm. Recently another implementation has gained some popularity, \pgrmname{Microsoft R Open} (MRO), which is directly based on the \Rpgrm program from \textit{The R Project for Statistical Computing}. MRO is described as an enhanced distribution of \Rpgrm. These two very similar implementations are not the only ones available, but others are not in widespread use. In other words, the \Rlang language can be used not only in the \Rpgrm program, and it is feasible that other implementations will be developed in the future. -The name base \Rlang\index{base R@{base \Rlang}} is used to distinguish \Rlang itself, as in the \Rpgrm distribution, from \Rlang in a broader sense, which includes independently developed extensions that can be loaded from separately distributed extension packages. +The name ``base \Rlang\index{base R@{base \Rlang}}'' is used to distinguish \Rlang itself, as in the \Rpgrm distribution, from \Rlang in a broader sense, which includes independently developed extensions that can be loaded from separately distributed extension packages. Being that \Rpgrm is essentially a command-line application, it can be used on what nowadays are frugal computing resources, equivalent to a personal computer of three decades ago. \Rpgrm can run even on the Raspberry Pi\index{Raspberry Pi}, a micro-controller board with the processing power of a modest smart phone. At the other end of the spectrum, on really powerful servers, \Rpgrm can be used for the analysis of big data sets with millions of observations. How powerful a computer you will need will depend on the size of the data sets you want to analyze, on how patient you are, and on your ability to write ``good'' code. @@ -51,7 +51,7 @@ Some languages have been standardized, and their grammar has been formally defin \end{explainbox} \subsection{R as a computer program} -\index{R as a computer program@{\Rpgrm as a computer program}} +\index{R as a program@{\Rpgrm as a program}} \index{Windows@{\textsf{Windows}}|see{MS-Windows@{\textsf{MS-Windows}}}} The \Rpgrm program itself is open-source, and the source code is available for anybody to inspect, modify and use. A small fraction of users will directly contribute improvements to the \Rpgrm program itself, but it is possible, and those contributions are important in making \Rpgrm reliable. The executable, the \Rpgrm program we actually use, can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team make an important effort to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The aim is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems like \osname{Linux}, \osname{Unix} (including \osname{OS X}), and \osname{MS-Windows}, and computer hardware. @@ -111,17 +111,17 @@ A true ``batch job'' is not run at the \Rpgrm console but at the operating syste \begin{figure} \centering \includegraphics[width=\linewidth]{figures/windows-cmd-script} - \caption[Script at the Windows cmd promt]{Screen capture of the \osname{MS-Windows} command console just after running the same script. Here we use \code{Rscript} to run the script, the exact syntax will depend on the operating system in use. In this case \Rpgrm prints the results at the operating system console or shell, rather than in its own \Rpgrm console.}\label{fig:intro:shell} + \caption[Script at the Windows cmd promt]{Screen capture of the \osname{MS-Windows} command console just after running the same script. Here we use \code{Rscript} to run the script; the exact syntax will depend on the operating system in use. In this case, \Rpgrm prints the results at the operating system console or shell, rather than in its own \Rpgrm console.}\label{fig:intro:shell} \end{figure} \subsubsection{Editors and IDEs} -Integrated Development Environments (IDEs)\index{integrated development environment}\index{IDE|see{ntegrated development environment}} are used when developing computer programs. IDEs provide a centralized user interface from within which the different tools used to create and test a computer program can be accessed and used in coordination. Most IDEs include a dedicated editor capable of syntax highlighting, and even report some mistakes, related to the programming language in use. One could describe such an editor as the equivalent of a word processor with spelling and grammar checking, that can alert about spelling and syntax errors for a computer language like \Rlang instead of for a natural language like English. In the case of \RStudio, the main, but not only language supported is \Rlang. The main window of IDEs usually displays more than one pane simultaneously. From within the \RStudio IDE, one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown above at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). We can see by comparing these three figures how \RStudio is really a layer between the user and an unmodified \Rpgrm executable. The script was sourced by pressing the ``Source'' button at the top of the editor pane. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console, the same console, where we would type any \Rpgrm commands. +Integrated Development Environments (IDEs)\index{integrated development environment}\index{IDE|see{integrated development environment}} are used when developing computer programs. IDEs provide a centralized user interface from within which the different tools used to create and test a computer program can be accessed and used in coordination. Most IDEs include a dedicated editor capable of syntax highlighting, and even report some mistakes, related to the programming language in use. One could describe such an editor as the equivalent of a word processor with spelling and grammar checking, that can alert about spelling and syntax errors for a computer language like \Rlang instead of for a natural language like English. In the case of \RStudio, the main, but not only language supported is \Rlang. The main window of IDEs usually displays more than one pane simultaneously. From within the \RStudio IDE, one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown above at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). We can see by comparing these three figures how \RStudio is really a layer between the user and an unmodified \Rpgrm executable. The script was sourced by pressing the ``Source'' button at the top of the editor pane. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console, the same console, where we would type any \Rpgrm commands. \begin{figure} \centering \includegraphics[width=\linewidth]{figures/Rstudio-script} - \caption[Script in Rstudio]{The \RStudio interface just after running the same script. Here we used the ``Source'' button to run the script. In this case \Rpgrm prints the results to the \Rpgrm console in the lower left pane.}\label{fig:intro:rstudio} + \caption[Script in Rstudio]{The \RStudio interface just after running the same script. Here we used the ``Source'' button to run the script. In this case, \Rpgrm prints the results to the \Rpgrm console in the lower left pane.}\label{fig:intro:rstudio} \end{figure} When a script is run, if an error is triggered, \RStudio automatically finds the location of the error. \RStudio supports the concept of projects allowing saving of settings per project. Some features are beyond what you need for everyday data analysis and aimed at package development, such as integration of debugging, traceback on errors, profiling and bench marking of code so as to analyze and improve performance. It integrates support for file version control, which is not only useful for package development, but also for keeping track of the progress or collaboration in the analysis of data. @@ -157,7 +157,7 @@ Error messages tend to be terse in \Rpgrm, and may require some lateral thinking \subsection{R's built-in help} -To\index{R!help@{\Rlang!help}} access help pages through the command prompt we use function \Rfunction{help()} or a question mark. Every object exported by an \Rlang package (functions, methods, classes, data) is documented. Sometimes a single help page documents several \Rlang objects. Usually at the end of the help pages, some examples are given, which tend to help very much in learning how to use the functions described. For example, one can search for a help page at the \Rpgrm console. +To\index{R@{\Rlang}!help} access help pages through the command prompt we use function \Rfunction{help()} or a question mark. Every object exported by an \Rlang package (functions, methods, classes, data) is documented. Sometimes a single help page documents several \Rlang objects. Usually at the end of the help pages, some examples are given, which tend to help very much in learning how to use the functions described. For example, one can search for a help page at the \Rpgrm console. <>= help("sum") diff --git a/R.plotting.Rnw b/R.plotting.Rnw index 219b5051..0390bf38 100644 --- a/R.plotting.Rnw +++ b/R.plotting.Rnw @@ -332,7 +332,7 @@ ggplot(data = mtcars, geom_point() @ -However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers. In this case those passed as arguments to \Rfunction{ggplot()}, if present, are overridden by arguments passed to individual layers, making it possible to code the same plot as follows. +However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers. In this case, those passed as arguments to \Rfunction{ggplot()}, if present, are overridden by arguments passed to individual layers, making it possible to code the same plot as follows. <>= ggplot() + @@ -359,13 +359,14 @@ ggplot() + In these examples, the plot remains unchanged, but this flexibility in the grammar allows, in plots containing multiple layers, for each layer to use different data or a different mapping. \begin{explainbox} -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. +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. <>= ggplot(data = mtcars, mapping = aes(x = disp, y = mpg)) + geom_point(size = 4) + - geom_point(data = function(x){subset(x, cyl == 4)}, color = "yellow", size = 1.5) + geom_point(data = function(x){subset(x, cyl == 4)}, color = "yellow", + size = 1.5) @ The plot default data can also be operated upon using the \pkgname{magritrr} pipe operator, but not the dot-pipe operator from \pkgname{wrapr} (see section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). @@ -373,7 +374,8 @@ The plot default data can also be operated upon using the \pkgname{magritrr} pip ggplot(data = mtcars, mapping = aes(x = disp, y = mpg)) + geom_point(size = 4) + - geom_point(data = . %.>% subset(x = ., cyl == 4), color = "yellow", size = 1.5) + geom_point(data = . %.>% subset(x = ., cyl == 4), color = "yellow", + size = 1.5) @ \end{explainbox} @@ -568,7 +570,7 @@ ggplot(data = Orange, \index{plots!line plot|)} \index{plots!step plot|(} -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. +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. <>= ggplot(data = Orange, @@ -770,7 +772,7 @@ ggplot(my.data, aes(x, y, label = label)) + Modify the example above to use \gggeom{geom\_label()} instead of \gggeom{geom\_text()} using, in addition, the \code{fill} aesthetic. \end{playground} -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())}. +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())}. <>= ggplot(my.data, aes(x, y, label = label)) + @@ -968,7 +970,7 @@ Isoquercitin <- magick::image_read(file1.name) file2.name <- system.file("extdata", "Robinin.png", package = "ggpmisc", mustWork = TRUE) Robinin <- magick::image_read(file2.name) -grob.tb <- tibble(x = c(0, 100), y = c(10, 20), height = 1/4, width = c(1/2), +grob.tb <- tibble(x = c(0, 100), y = c(10, 20), height = 1/3, width = c(1/2), grobs = list(grid::rasterGrob(image = Isoquercitin), grid::rasterGrob(image = Robinin))) @@ -1057,12 +1059,13 @@ fake.data <- data.frame( ) @ -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.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.y}. +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.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.y}. <>= ggplot(data = fake.data, aes(y = y, x = group)) + geom_point(shape = 21) + - stat_summary(fun.y = "mean", geom = "point", color = "red", shape = "-", size = 10) + stat_summary(fun.y = "mean", geom = "point", + color = "red", shape = "-", size = 10) @ 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.y}. In the next example we add means and confidence intervals for $p = 0.95$ (the default) assuming normality. @@ -1094,7 +1097,7 @@ ggplot(data = fake.data, aes(y = y, x = group)) + We do not give an example here, but it is possible to use user-defined functions instead of the functions exported by package \ggplot (based on those in package \Hmisc). Because arguments to the function used, except for the first one containing the variable in \code{data} mapped to the $y$ aesthetic, are supplied as a named list through parameter \code{fun.args}, the names used for parameters in the function definition need only match the names in this list. -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. +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. <>= ggplot(data = fake.data, aes(y = y, x = group)) + @@ -1289,12 +1292,12 @@ ggplot(my.data, aes(y, fill = group)) + stat_bin(bins = 15, position = "dodge") @ -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, as the number of bins is the same in the two dimensions, a square plotting area is most suitable, which we achieve by adding \code{coord\_equal()} (see section \ref{sec:plot:coord} on page \pageref{sec:plot:coord} for details). +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). <>= ggplot(my.data, aes(x, y)) + stat_bin2d(bins = 8) + - coord_equal() + coord_fixed(ratio = 1) @ 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 = stat(density))}. @@ -1302,7 +1305,7 @@ The \emph{statistic} \ggstat{stat\_bin\_hex()}, and its matching \emph{geometry} <>= ggplot(my.data, aes(x, y)) + stat_bin_hex(bins = 8) + - coord_equal() + coord_fixed(ratio = 1) @ \index{plots!histograms|)} @@ -1336,7 +1339,7 @@ ggplot(my.data, aes(x, y, color = group)) + stat_density_2d() @ -In this case \gggeom{geom\_density\_2d()} is equivalent, and we can replace it in the last line in the chunk above. +In this case, \gggeom{geom\_density\_2d()} is equivalent, and we can replace it in the last line in the chunk above. <>= ggplot(my.data, aes(x, y, color = group)) + @@ -2105,7 +2108,7 @@ ggplot(viikki_d29.dat, aes(WindDir_D1_WVT)) + For an equivalent plot, using an empirical density, we have to use \ggstat{stat\_density()} instead of \ggstat{stat\_bin()} and change the \code{name} of the \code{y} scale. -<>= +<>= ggplot(viikki_d29.dat, aes(WindDir_D1_WVT)) + coord_polar() + stat_density(color = "black", fill = "gray50", size = 1, na.rm = TRUE) + @@ -2325,7 +2328,7 @@ p + my_theme_gray(15, base_color = "darkred") \index{plots!composing|(} In section \ref{sec:plot:facets} on page \pageref{sec:plot:facets}, we described how facets can be used to created coordinated sets of panels, based on a single data set. Rather frequently, we need to assemble a composite plot from individually created plots. If one wishes to have correctly aligned axis labels and plotting areas, similar to when using facets, then the task is not easy to achieve without the help of especial tools. -Package \pkgname{patchwork} defines a simple grammar for composing plots created with \ggplot. We briefly describe here the use of operators \Roperator{+}, \Roperator{|} and \Roperator{/}, although \pkgname{patchwork} provides additional tools for defining complex layouts of panels. While \Roperator{+} allows different layouts, \Roperator{|} composes panels side by side and \Roperator{/} composes panels on top of each other. The plots to be used as panels can be grouped using parentheses. +Package \pkgname{patchwork} defines a simple grammar for composing plots created with \ggplot. We briefly describe here the use of operators \Roperator{+}, \Roperator{|} and \Roperator{/}, although \pkgname{patchwork} provides additional tools for defining complex layouts of panels. While \Roperator{+} allows different layouts, \Roperator{|} composes panels side by side, and \Roperator{/} composes panels on top of each other. The plots to be used as panels can be grouped using parentheses. We start by creating and saving three plots. <>= @@ -2355,7 +2358,7 @@ We add a title and tag the panels with a letter. In this, and similar cases, par <>= ((p1 | p2) / p3) + - plot_annotation(title = "Fuel use in city trafic", tag_levels = 'a') + plot_annotation(title = "Fuel use in city traffic:", tag_levels = 'a') @ <>= diff --git a/R.scripts.Rnw b/R.scripts.Rnw index 2541b04f..133794eb 100644 --- a/R.scripts.Rnw +++ b/R.scripts.Rnw @@ -6,7 +6,7 @@ opts_knit$set(concordance=TRUE) opts_knit$set(unnamed.chunk.label = 'scripts-chunk') @ -\chapter{The R language: ``paragraphs'' and ``essays''}\label{chap:R:scripts} +\chapter{The R language: ``Paragraphs'' and ``essays''}\label{chap:R:scripts} \index{scripts} \begin{VF} @@ -907,7 +907,7 @@ for (f.name in fun.names) { results @ -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. +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. <>= results <- numeric() diff --git a/R.stats.rnw b/R.stats.rnw index 5e91646c..ce585e47 100644 --- a/R.stats.rnw +++ b/R.stats.rnw @@ -6,7 +6,7 @@ opts_knit$set(unnamed.chunk.label = 'functions-chunk') rm(plot) @ -\chapter{The R language: statistics}\label{chap:R:statistics} +\chapter{The R language: Statistics}\label{chap:R:statistics} \begin{VF} The purpose of computing is insight, not numbers. @@ -21,7 +21,6 @@ This chapter aims to give the reader only a quick introduction to statistics in %\emph{At present I use several examples adapted from the help pages for the functions described. I may revise this before publication.} \section{Statistical summaries} -\index{functions!built-in|see {functions, base-R}}% \index{functions!base R}\index{summaries!statistical} 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.) @@ -124,7 +123,7 @@ pnorm(q = 4, mean = 0, sd = 1) * 2 \end{warningbox} \subsection{``Random'' draws from a distribution}\label{sec:stat:random} -\index{distributions!pseudo-random draws} +\index{random draws|see{distributions!pseudo-random draws}}\index{distributions!pseudo-random draws} True random sequences can only be generated by physical processes. All so-called ``random'' sequences of numbers generated by computation are really deterministic although they share some properties with true random sequences (e.g., in relation to autocorrelation). It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned.\qRfunction{rnorm()}\qRfunction{runif()} @@ -139,7 +138,7 @@ Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob} and \re \end{playground} \begin{explainbox} -\index{random numbers|see{pseudo-random numbers}} +\index{random numbers|see{pseudo-random numbers}}\index{pseudo-random numbers} It is impossible to generate truly random sequences of numbers by means of a deterministic process such as a mathematical computation. ``Random numbers'' as generated by \Rpgrm and other computer programs are \emph{pseudo random numbers}, long deterministic series of numbers that resemble random draws. Random number generation uses a \emph{seed} value that determines where in the series we start. The usual way of automatically setting the value of the seed is to take the milliseconds or similar rapidly changing set of digits from the real time clock of the computer. However, in cases when we wish to repeat a calculation using the same series of pseudo-random values, we can use \Rfunction{set.seed()} with an arbitrary integer as an argument to reset the generator to the same point in the underlying (deterministic) sequence. \end{explainbox} @@ -149,7 +148,7 @@ Execute the statement \code{rnorm(3)}\qRfunction{rnorm()} by itself several time \section{``Random'' sampling} \index{random sampling|see{pseudo-random sampling}}% -\index{distributions!pseudo-random sampling}% +\index{pseudo-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. @@ -258,8 +257,8 @@ If you do not clearly remember the difference between numeric vectors and factor \end{warningbox} \subsection{Regression} -\index{linear regression} -\index{linear regression|seealso{linear models}}\index{linear models!linear regression} +%\index{linear regression} +\index{linear regression|see{linear models!linear regression}}\index{linear models!linear regression} In \index{linear models!ANOVA table} the example immediately below, \code{speed} is a continuous numeric variable. In the ANOVA table calculated for the model fit, in this case a linear regression, we can see that the term for \code{speed} has only one degree of freedom (df). In the next example we continue using the stopping distance for \Rdata{cars} data set included in \Rpgrm. Please see the plot on page \pageref{chunk:plot:cars}. @@ -318,7 +317,7 @@ summary(fm3) anova(fm3) @ -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. +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. <>= fm3a <- lm(dist ~ poly(speed, 2), data = cars) @@ -419,8 +418,8 @@ Predict using both \code{fm1} and \code{fm2} the distance required to stop cars \end{advplayground} \subsection{Analysis of variance, ANOVA}\label{sec:anova} -\index{analysis of variance} -\index{analysis of variance|seealso{linear models}}\index{linear models!analysis of variance} +%\index{analysis of variance} +\index{analysis of variance|see{linear models!analysis of variance}}\index{linear models!analysis of variance} \index{ANOVA|see{analysis of variance}} We use here the \Rdata{InsectSprays} data set, giving insect counts in plots sprayed with different insecticides. In these data, \code{spray} is a factor with six levels.% \label{xmpl:fun:lm:fm4} @@ -470,6 +469,8 @@ fm4sum <- lm(count ~ spray, data = InsectSprays, contrasts = list(spray = contr.sum)) @ +Interpretation of any analysis has to take into account these differences and users should not be surprised if ANOVA yields different results in base \Rlang and \pgrmname{SPSS} or \pgrmname{SAS} given the different types of sums of squares used. The interpretation of ANOVA on designs that are not orthogonal will depend on which type is used, so the different results are not necessarily contradictory even when different. + <>= summary(fm4trea) @ @@ -478,14 +479,12 @@ summary(fm4trea) summary(fm4sum) @ -Interpretation of any analysis has to take into account these differences and users should not be surprised if ANOVA yields different results in base \Rlang and \pgrmname{SPSS} or \pgrmname{SAS} given the different types of sums of squares used. The interpretation of ANOVA on designs that are not orthogonal will depend on which type is used, so the different results are not necessarily contradictory even when different. - In the case of contrasts, they always affect the parameter estimates independently of whether the experiment design is orthogonal or not. A different set of contrasts simply tests a different set of possible treatment effects. Contrasts, on the other hand, do not affect the table returned by \Rfunction{anova()} as this table does not deal with the effects of individual factor levels. \end{warningbox} \subsection{Analysis of covariance, ANCOVA} -\index{analysis of covariance} -\index{analysis of covariance|seealso{linear models}} +%\index{analysis of covariance} +\index{analysis of covariance|see{linear models!analysis of covariance}} \index{linear models!analysis of covariance} \index{ANCOVA|see{analysis of covariance}} diff --git a/manual-edit b/manual-edit new file mode 100644 index 00000000..e69de29b diff --git a/using-r-main-crc-edited.tex b/using-r-main-crc-edited.tex new file mode 100644 index 00000000..4f719276 --- /dev/null +++ b/using-r-main-crc-edited.tex @@ -0,0 +1,17442 @@ +\documentclass[krantz2]{krantz}\usepackage{knitr} +\usepackage{color} + +\usepackage{hologo} + +\usepackage{csquotes} + +\usepackage{graphicx} +\DeclareGraphicsExtensions{.jpg,.pdf,.png} + +\usepackage{animate} + +\usepackage[style=authoryear-comp,giveninits,sortcites,maxcitenames=2,% + mincitenames=1,maxbibnames=10,minbibnames=10,backref,uniquename=mininit,% + uniquelist=minyear,sortgiveninits=true,backend=biber]{biblatex} + +\newcommand{\href}[2]{\emph{#2} (\url{#1})} + +\usepackage{framed} + +\usepackage{abbrev} +\usepackage{usingr} + +\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=-4pt \itemsep=-2pt} +\makeatother + +%\usepackage{polyglossia} +%\setdefaultlanguage{english} + +\setcounter{topnumber}{3} +\setcounter{bottomnumber}{3} +\setcounter{totalnumber}{4} +\renewcommand{\topfraction}{0.90} +\renewcommand{\bottomfraction}{0.90} +\renewcommand{\textfraction}{0.10} +\renewcommand{\floatpagefraction}{0.70} +\renewcommand{\dbltopfraction}{0.90} +\renewcommand{\dblfloatpagefraction}{0.70} + +% ensure page numbers are aligned in TOC +\makeatletter +\renewcommand{\@pnumwidth}{2.05em} +\makeatother + +\addbibresource{rbooks.bib} +\addbibresource{references.bib} + +\makeindex[title=General index] +\makeindex[name=rindex,title=Alphabetic index of \Rlang names] +\makeindex[name=rcatsidx,title=Index of \Rlang names by category] +\IfFileExists{upquote.sty}{\usepackage{upquote}}{} +\begin{document} +\hyphenation{pro-cess-ing paren-the-ses spe-cif-ic au-thors in-ter-act-ed lim-it} + +\title{\Huge{\fontseries{ub}\sffamily Learn R\\{\Large\ldots\ as You Learned Your Mother Tongue}}} + +\author{Pedro J. Aphalo} + +\date{Helsinki, \today} + +% knitr setup + + + + + + + + + + + + + + + + + +\frontmatter + +\maketitle + +\newpage + +\setcounter{page}{7} %previous pages will be reserved for frontmatter to be added in later. +\tableofcontents +%\include{frontmatter/foreword} +\include{frontmatter/preface} +%\listoffigures + +\mainmatter + + + +% !Rnw root = using-r.main.Rnw + + + +\chapter{R: The language and the program}\label{chap:R:introduction} + +\begin{VF} +In a world of \ldots\ relentless pressure for more of everything, one can lose sight of the basic principles---simplicity, clarity, generality---that form the bedrock of good software. + +\VA{Brian W. Kernighan and Rob Pike}{\emph{The Practice of Programming}, 1999}\nocite{Kernighan1999} +\end{VF} + + +\section{Aims of this chapter} + +In this chapter you will learn some facts about the history and design aims behind the \Rlang language, its implementation in the \Rpgrm program, and how it is used in actual practice when sitting at a computer. You will learn the difference between typing commands interactively, reading each partial response from \Rlang on the screen as you type versus using \Rlang scripts to execute a ``job'' which saves results for later inspection by the user. + +I will describe the advantages and disadvantages of textual command languages such as \Rlang compared to menu-driven user interfaces as frequently used in other statistics software and occasionally also with \Rlang. I will discuss the role of textual languages in the very important question of reproducibility of data analyses. + +Finally you will learn about the different types and sources of help available to \Rlang users, and how to best make use of them. + +\section{R} + +\subsection{What is R?} + +Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rlang as a program}} +of \Rpgrm as a computer program. \Rpgrm is indeed a computer program---a piece of software--- but it is also a computer language, implemented in the \Rpgrm program. Does this make a difference? Yes. Until recently we had only one mainstream implementation of \Rlang, the program \Rpgrm. Recently another implementation has gained some popularity, \pgrmname{Microsoft R Open} (MRO), which is directly based on the \Rpgrm program from \textit{The R Project for Statistical Computing}. MRO is described as an enhanced distribution of \Rpgrm. These two very similar implementations are not the only ones available, but others are not in widespread use. In other words, the \Rlang language can be used not only in the \Rpgrm program, and it is feasible that other implementations will be developed in the future. + +The name ``base \Rlang\index{base R@{base \Rlang}}'' is used to distinguish \Rlang itself, as in the \Rpgrm distribution, from \Rlang in a broader sense, which includes independently developed extensions that can be loaded from separately distributed extension packages. + +Being that \Rpgrm is essentially a command-line application, it can be used on what nowadays are frugal computing resources, equivalent to a personal computer of three decades ago. \Rpgrm can run even on the Raspberry Pi\index{Raspberry Pi}, a micro-controller board with the processing power of a modest smart phone. At the other end of the spectrum, on really powerful servers, \Rpgrm can be used for the analysis of big data sets with millions of observations. How powerful a computer you will need will depend on the size of the data sets you want to analyze, on how patient you are, and on your ability to write ``good'' code. + +One could think of \Rlang as a dialect of an earlier language, called \Slang. \Slang evolved into \Splang \autocite{Becker1988}. \Slang and \Splang are commercial programs, and variations in the language appeared only between versions. \Rlang started as a poor man's home-brewed implementation of \Slang, for use in teaching. Initially \Rpgrm, the program, implemented a subset of the \Slang language. The \Rpgrm program evolved until only relatively few differences between \Slang and \Rlang remained, and these differences are intentional---thought of as significant improvements. As \Rlang overtook \Splang in popularity, some of the new features in \Rlang made their way back into \Splang. \Rpgrm is free and open-source and the name \pgrmname{Gnu S} is sometimes used to refer to \Rpgrm. + +What makes \Rlang different from \pgrmname{SPSS}, \pgrmname{SAS}, etc., is that \Slang was designed from the start as a computer programming language. This may look unimportant for someone not actually needing or willing to write software for data analysis. However, in reality it makes a huge difference because \Rlang is easily extensible. By this we mean that new functionality can be easily added, and shared, and this new functionality is to the user indistinguishable from that built into \Rlang. In other words, instead of having to switch between different pieces of software to do different types of analyses or plots, one can usually find an \Rlang package that will provide the tools to do the job within \Rlang. For those routinely doing similar analyses the ability to write a short program, sometimes just a handful of lines of code, allows automation of routine analyses. For those willing to spend time programming, they have the door open to building the tools they need when these do not already exist. + +However, the most important advantage of using a language like \Rlang is that it makes it easy to do data analyses in a way that ensures that they can be exactly repeated. In other words, the biggest advantage of using \Rlang, as a language, is not in communicating with the computer, but in communicating to other people what has been done, in a way that is unambiguous. Of course, other people may want to run the same commands in another computer, but still it means that a translation from a set of instructions to the computer into text readable to humans---say the materials and methods section of a paper---and back is avoided together with the ambiguities usually creeping in. + +\subsection{R as a language} +\index{R as a language@{\Rlang as a language}} +\Rlang is a computer language designed for data analysis and data visualization, however, in contrast to some other scripting languages, it is, from the point of view of computer programming, a complete language---it is not missing any important feature. In other words, no fundamental operations or data types are lacking \autocite{Chambers2016}. I attribute much of its success to the fact that its design achieves a very good balance between simplicity, clarity and generality. \Rlang excels at generality thanks to its extensibility at the cost of only a moderate loss of simplicity, while clarity is ensured by enforced documentation of extensions and support for both object-oriented and functional approaches to programming. The same three principles can be also easily respected by user code written in \Rlang. + +As mentioned above, \Rlang started as a free and open-source implementation of the \Slang language \autocite{Becker1984,Becker1988}. We will describe the features of the \Rlang language in later chapters. Here I mention, for those with programming experience, that it does have some features that make it different from other frequently used programming languages. For example, \Rlang does not have the strict type checks of \langname{Pascal} or \Cpplang. It has operators that can take vectors and matrices as operands allowing more concise program statements for such operations than other languages. Writing programs, specially reliable and fast code, requires familiarity with some of these idiosyncracies of the \Rlang language. For those using \Rpgrm interactively, or writing short scripts, these idiosyncratic features make life a lot easier by saving typing. + +\begin{explainbox} +Some languages have been standardized, and their grammar has been formally defined. \Rlang, in contrast is not standardized, and there is no formal grammar definition. So, the \Rlang language is defined by the behavior of the \Rpgrm program. +\end{explainbox} + +\subsection{R as a computer program} +\index{R as a program@{\Rpgrm as a program}} +\index{Windows@{\textsf{Windows}}|see{MS-Windows@{\textsf{MS-Windows}}}} +The \Rpgrm program itself is open-source, and the source code is available for anybody to inspect, modify and use. A small fraction of users will directly contribute improvements to the \Rpgrm program itself, but it is possible, and those contributions are important in making \Rpgrm reliable. The executable, the \Rpgrm program we actually use, can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team make an important effort to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The aim is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems like \osname{Linux}, \osname{Unix} (including \osname{OS X}), and \osname{MS-Windows}, and computer hardware. + +\begin{figure} + \centering + \includegraphics[width=0.85\textwidth]{figures/R-console-r} + \caption[The R console]{The \Rpgrm console where the user can type textual commands one by one. Here the user has typed \code{print("Hello")} and \textit{entered} it by ending the line of text by pressing the ``enter'' key. The result of running the command is displayed below the command. The character at the head of the input line, a ``$>$'' in this case, is called the command prompt, signaling where a command can be typed in. Commands entered by the user are displayed in red, while results returned by \Rlang are displayed in blue.}\label{fig:intro:console} +\end{figure} + +The \Rpgrm program does not have a graphical user interface (GUI), or menus from which to start different types of analyses. Instead, the user types the commands at the \Rpgrm console (Figure \ref{fig:intro:console}). The same textual commands can also be saved into a text file, line by line, and such a file, called a ``script'' can substitute repeated typing of the same sequence of commands. When we work at the console typing in commands one by one, we say that we use \Rlang interactively. When we run script, we may say that we run a ``batch job.'' + +The two approaches described above are part of the \Rpgrm program by itself. However, it is common to use a second program as a front-end or middleman between the user and the \Rpgrm program. Such a program allows more flexibility and has multiple features that make entering commands or writing scripts easier. Computations are still done by exactly the same \Rpgrm program. The simplest option is to use a text editor like \pgrmname{Emacs} to edit the scripts and then run the scripts in \Rpgrm from within the editor. With some editors like \pgrmname{Emacs}, rather good integration is possible. However, nowadays there are also Integrated Development Environments (IDEs) available for \Rpgrm. An IDE both gives access to the \Rpgrm console in one window and provides a text editor for writing scripts in another window. Of the available IDEs for \Rpgrm, \RStudio is currently the most popular by a wide margin. + +\subsubsection{Using R interactively} + +A physical terminal (keyboard plus text-only screen) decades ago was how users communicated with computers, and was frequently called a \emph{console}\index{console}. Nowadays, a text-only interface to a computer, in most cases a window or a pane within a graphical user interface, is still called a console. In our case, the \Rpgrm console (Figure \ref{fig:intro:console}). This is the native user interface of \Rpgrm. + +Typing commands at the \Rpgrm console is useful when one is playing around, rather aimlessly exploring things, or trying to understand how an \Rpgrm function or operator we are not familiar with works. Once we want to keep track of what we are doing, there are better ways of using \Rpgrm, which allow us to keep a record of how an analysis has been carried out. The different ways of using \Rpgrm are not exclusive of each other, so most users will use the \Rpgrm console to test individual commands and plot data during the first stages of exploration. As soon as we decide how we want to plot or analyze the data, it is best to start using scripts. This is not enforced in any way by \Rpgrm, but scripts are what really brings to light the most important advantages of using a programming language for data analysis. In Figure \ref{fig:intro:console} we can see how the \Rpgrm console looks. The text in red has been typed in by the user, except for the prompt \code{\textcolor{red}{$>$}}, and the text in blue is what \Rpgrm has displayed in response. It is essentially a dialogue between user and \Rpgrm. The console can \emph{look} different when displayed within an IDE like \RStudio, but the only difference is in the appearance of the text rather than in the text itself (cf.\ Figures \ref{fig:intro:console} and \ref{fig:intro:console:rstudio}). + +\begin{figure} + \centering + \includegraphics[width=\linewidth]{figures/r-console-rstudio} + \caption[The R console]{The \Rpgrm console embedded in \RStudio. The same commands have been typed in as in Figure \ref{fig:intro:console}. Commands entered by the user are displayed in purple, while results returned by \Rpgrm are displayed in black.}\label{fig:intro:console:rstudio} +\end{figure} + +The two previous figures showed the result of entering a single command. Figure \ref{fig:intro:console:capture} shows how the console looks after the user has entered several commands, each as a separate line of text. + +\begin{figure} + \centering + \includegraphics[width=\linewidth]{figures/r-console-capture} + \caption[The R console]{The \Rpgrm console after several commands have been entered. Commands entered by the user are displayed in red, while results returned by \Rpgrm are displayed in blue.}\label{fig:intro:console:capture} +\end{figure} + +The examples in this book require only the console window for user input. Menu-driven programs are not necessarily bad, they are just unsuitable when there is a need to set very many options and choose from many different actions. They are also difficult to maintain when extensibility is desired, and when independently developed modules of very different characteristics need to be integrated. Textual languages also have the advantage, to be addressed in later chapters, that command sequences can be stored in human- and computer-readable text files. Such files constitute a record of all the steps used, and in most cases, makes it trivial to reproduce the same steps at a later time. Scripts are a very simple and handy way of communicating to other users how to do a given data analysis. + +\begin{explainbox} +In the console one types commands at the \code{>} prompt. When one ends a line by pressing the return or enter key, if the line can be interpreted as an \Rlang command, the result will be printed at the console, followed by a new \code{>} prompt. +If the command is incomplete, a \code{+} continuation prompt will be shown, and you will be able to type in the rest of the command. For example if the whole calculation that you would like to do is $1 + 2 + 3$, if you enter in the console \code{1 + 2 +} in one line, you will get a continuation prompt where you will be able to type \code{3}. However, if you type \code{1 + 2}, the result will be calculated, and printed. +\end{explainbox} + +\subsubsection{Using R in a ``batch job''} + +To run a script\index{script}\index{batch job} we need first to prepare a script in a text editor. Figure \ref{fig:intro:script} shows the console immediately after running the script file shown in the text editor. As before, red text, the command \code{source("my-script.R")}, was typed by the user, and the blue text in the console is what was displayed by \Rpgrm as a result of this action. The title bar of the console, shows ``R-console,'' while the title bar of the editor shows the \emph{path} to the script file that is open and ready to be edited followed by ``R-editor.'' + +\begin{figure} + \centering + \includegraphics[width=\linewidth]{figures/R-console-script} + \caption[Script sourced at the R console]{Screen capture of the \Rpgrm console and editor just after running a script. The upper pane shows the \Rpgrm console, and the lower pane, the script file in an editor. }\label{fig:intro:script} +\end{figure} + +\begin{warningbox} +When working at the command prompt, most results are printed by default. However, within scripts one needs to use function \Rfunction{print()} explicitly when a result is to be displayed. +\end{warningbox} + +A true ``batch job'' is not run at the \Rpgrm console but at the operating system command prompt, or shell. The shell is the console of the operating system---\osname{Linux}, \osname{Unix}, \osname{OS X}, or \osname{MS-Windows}. Figure \ref{fig:intro:shell} shows how running a script at the Windows command prompt looks. A script can be run at the operating system prompt to do time-consuming calculations with the output saved to a file. One may use this approach on a server, say, to leave a large data analysis job running overnight or even for several days. + +\begin{figure} + \centering + \includegraphics[width=\linewidth]{figures/windows-cmd-script} + \caption[Script at the Windows cmd promt]{Screen capture of the \osname{MS-Windows} command console just after running the same script. Here we use \code{Rscript} to run the script; the exact syntax will depend on the operating system in use. In this case, \Rpgrm prints the results at the operating system console or shell, rather than in its own \Rpgrm console.}\label{fig:intro:shell} +\end{figure} + +\subsubsection{Editors and IDEs} + +Integrated Development Environments (IDEs)\index{integrated development environment}\index{IDE|see{integrated development environment}} are used when developing computer programs. IDEs provide a centralized user interface from within which the different tools used to create and test a computer program can be accessed and used in coordination. Most IDEs include a dedicated editor capable of syntax highlighting, and even report some mistakes, related to the programming language in use. One could describe such an editor as the equivalent of a word processor with spelling and grammar checking, that can alert about spelling and syntax errors for a computer language like \Rlang instead of for a natural language like English. In the case of \RStudio, the main, but not only language supported is \Rlang. The main window of IDEs usually displays more than one pane simultaneously. From within the \RStudio IDE, one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown above at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). We can see by comparing these three figures how \RStudio is really a layer between the user and an unmodified \Rpgrm executable. The script was sourced by pressing the ``Source'' button at the top of the editor pane. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console, the same console, where we would type any \Rpgrm commands. + +\begin{figure} + \centering + \includegraphics[width=\linewidth]{figures/Rstudio-script} + \caption[Script in Rstudio]{The \RStudio interface just after running the same script. Here we used the ``Source'' button to run the script. In this case, \Rpgrm prints the results to the \Rpgrm console in the lower left pane.}\label{fig:intro:rstudio} +\end{figure} + +When a script is run, if an error is triggered, \RStudio automatically finds the location of the error. \RStudio supports the concept of projects allowing saving of settings per project. Some features are beyond what you need for everyday data analysis and aimed at package development, such as integration of debugging, traceback on errors, profiling and bench marking of code so as to analyze and improve performance. It integrates support for file version control, which is not only useful for package development, but also for keeping track of the progress or collaboration in the analysis of data. + +The version of \RStudio that one uses locally, i.e., installed in a computer used locally by a single user, runs with an almost identical user interface on most modern operating systems, such as \osname{Linux}, \osname{Unix}, \osname{OS X}, and \osname{MS-Windows}. There is also a server version that runs on \osname{Linux}, and that can be used remotely through a web browser. The user interface is still the same. + +\RStudio is under active development, and constantly improved. Visit \url{http://www.rstudio.org/} for an up-to-date description and download and installation instructions. Two books \autocite{vanderLoo2012,Hillebrand2015} describe and teach how to use \RStudio without going in depth into data analysis or statistics, however, as \RStudio is under very active development, several recently added important features are not described in these books. You will find tutorials and up-to-date cheat sheets at \url{http://www.rstudio.org/}. + +\section{Reproducible data analysis} +\index{reproducible data analysis|(} +Reproducible data analysis is much more than a fashionable buzzword. Under any situation where accountability is important, from scientific research to decision making in commercial enterprises, industrial quality control and safety and environmental impact assessments, being able to reproduce a data analysis reaching the same conclusions from the same data is crucial. Most approaches to reproducible data analysis are based on automating report generation and including, as part of the report, all the computer commands used to generate the results presented. + +A fundamental requirement for reproducibility is a reliable record of what commands have been run on which data. Such a record is especially difficult to keep when issuing commands through menus and dialogue boxes in a graphical user interface or interactively at a console. Even working interactively at the \Rpgrm console using copy and paste to include commands and results in a report is error prone, and laborious. + +A further requirement is to be able to match the output of the \Rlang commands to the input. If the script saves the output to separate files, then the user will need to take care that the script saved or shared as a record of the data analysis was the one actually used for obtaining the reported results and conclusions. This is another error-prone stage in the reporting of data analysis. To solve this problem an approach was developed, inspired in what is called \emph{literate programming} \autocite{Knuth1984a}. The idea is that running the script will produce a document that includes the listing of the \Rlang code used, the results of running this code and any explanatory text needed to understand and interpret the analysis. + +Although a system capable of producing such reports with \Rlang, called \pkgname{Sweave} \autocite{Leisch2002}, has been available for a couple decades, it was rather limited and not supported by an IDE, making its use rather tedious. A more recently developed system called \pkgname{knitr} \autocite{Xie2013} together with its integration into \RStudio has made the use of this type of reports very easy. The most recent development is what has been called \Rlang \emph{notebooks} produced within \RStudio. This new feature, can produce the readable report of running the script as an HTML file, displaying the code used interspersed with the results within the viewable file as in earlier approaches. However, this newer approach goes even further: the actual source script used to generate the report is embedded in the HTML file of the report and can be extracted and run very easily and consequently re-used. This means that anyone who gets access to the output of the analysis in human readable form also gets access to the code used to generate the report, in computer executable format. + +Because of these recent developments, \Rlang is an ideal language to use when the goal of reproducibility is important. During recent years the problem of the lack of reproducibility in scientific research has been broadly discussed and analysed \autocite{Gandrud2015}. One of the problems faced when attempting to reproduce experimental work, is reproducing the data analysis. \Rlang together with these modern tools can help in avoiding this source of lack of reproducibility. + +How powerful are these tools and how flexible? They are powerful and flexible enough to write whole books, such as this very book you are now reading, produced with \Rpgrm, \pkgname{knitr} and \LaTeX\index{Latex@{\LaTeX}}\index{languages!Latex@{\LaTeX}}. All pages in the book are generated directly, all figures are generated by \Rpgrm and included automatically, except for the figures in this chapter that have been manually captured from the computer screen. Why am I using this approach? First because I want to make sure that every bit of code as you will see printed, runs without error. In addition, I want to make sure that the output that you will see below every line or chunk of \Rlang language code is exactly what \Rpgrm returns. Furthermore, it saves a lot of work for me as author, as I can just update \Rpgrm and all the packages used to their latest version, and build the book again, to keep it up to date and free of errors. + +Although the use of these tools is important, they are outside the scope of this book and well described in other books \autocite{Gandrud2015,Xie2013}. Still when writing code, using a consistent style for formatting and indentation, carefully choosing variable names, and adding textual explanations in comments when needed, helps very much with readability for humans. I have tried to be as consistent as possible throughout the whole book in this respect, with only small personal deviations from the usual style. +\index{reproducible data analysis|)} + +\section{Finding additional information} + +When searching for answers, asking for advice or reading books, you will be confronted with different ways of approaching the same tasks. Do not allow this to overwhelm you; in most cases it will not matter as many computations can be done in \Rpgrm, as in any language, in several different ways, still obtaining the same result. The different approaches may differ mainly in two aspects: 1) how readable to humans are the instructions given to the computer as part of a script or program, and 2) how fast the code runs. Unless computation time is an important bottleneck in your work, just concentrate on writing code that is easy to understand to you and to others, and consequently easy to check and reuse. Of course, do always check any code you write for mistakes, preferably using actual numerical test cases for any complex calculation or even relatively simple scripts. Testing and validation are extremely important steps in data analysis, so get into this habit while reading this book. Testing how every function works, as I will challenge you to do in this book, is at the core of any robust data analysis or computing programming. + +\begin{warningbox} +Error messages tend to be terse in \Rpgrm, and may require some lateral thinking and/or ``experimentation'' to understand the real cause behind problems. When you are not sure you understand how some command works, it is useful in many cases to try simple examples for which you know the correct answer and see if you can reproduce them with \Rpgrm. Because of this, this book includes some code examples that trigger errors. Learning to interpret error messages is part of what is needed to become a proficient user of \Rlang. To test your understanding of how a code statement or function works, it is good to try your hand at testing its limits, testing which variations of a piece code are valid or not. +\end{warningbox} + +\subsection{R's built-in help} + +To\index{R@{\Rlang}!help} access help pages through the command prompt we use function \Rfunction{help()} or a question mark. Every object exported by an \Rlang package (functions, methods, classes, data) is documented. Sometimes a single help page documents several \Rlang objects. Usually at the end of the help pages, some examples are given, which tend to help very much in learning how to use the functions described. For example, one can search for a help page at the \Rpgrm console. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{help}\hlstd{(}\hlstr{"sum"}\hlstd{)} +\hlopt{?}\hlstd{sum} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +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} +\begin{alltt} +\hlkwd{help}\hlstd{(help)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +When using \RStudio there are easier ways of navigating to a help page than using function \Rfunction{help()}, for example, with the cursor on the name of a function in the editor or console, pressing the F1 key opens the corresponding help page in the help pane. Letting the cursor hover for a few seconds over the name of a function at the \Rpgrm console will open ``bubble help'' for it. If the function is defined in a script or another file that is open in the editor pane, one can directly navigate from the line where the function is called to where it is defined. In \RStudio one can also search for help through the graphical interface. + +In addition to help pages, \Rpgrm's distribution includes useful manuals as PDF or HTML files. These can be accessed most easily through the Help menu in \RStudio or \pgrmname{RGUI}. Extension packages provide help pages for the functions and data they export. When a package is loaded into an \Rpgrm session, its help pages are added to the native help of \Rpgrm. In addition to these individual help pages, each package provides an index of its corresponding help pages for users to browse. Many packages, contain \emph{vignettes} such as User Guides or articles describing the algorithms used. + +There are some web sites that give access to \Rlang documentation through a web server. These sites can be very convenient when exploring whether a certain package could be useful for a certain problem, as they allow browsing and searching the documentation without need of installing the packages. Some package maintainers have web sites with additional documentation for their own packages. The DESCRIPTION or README of packages provide contact information for the maintainer, links to web sites, and instructions on how to report bugs. As packages are contributed by independent authors, they should be cited in addition to citing \Rpgrm itself. \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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{citation}\hlstd{()} +\end{alltt} +\begin{verbatim} +## +## To cite R in publications use: +## +## R Core Team (2020). R: A language and environment for statistical +## computing. R Foundation for Statistical Computing, Vienna, Austria. +## URL https://www.R-project.org/. +## +## A BibTeX entry for LaTeX users is +## +## @Manual{, +## title = {R: A Language and Environment for Statistical Computing}, +## author = {{R Core Team}}, +## organization = {R Foundation for Statistical Computing}, +## address = {Vienna, Austria}, +## year = {2020}, +## url = {https://www.R-project.org/}, +## } +## +## We have invested a lot of time and effort in creating R, please cite it +## when using it for data analysis. See also 'citation("pkgname")' for +## citing R packages. +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} + Look at the help page for function \code{citation()} for a discussion of why it is important for users to cite \Rpgrm and packages when using them. +\end{playground} + +\subsection{Obtaining help from online forums}\label{sec:intro:net:help} + +When consulting help pages, vignettes, and possibly books at hand fails to provide the information needed, the next step to follow is to search internet forums for existing answers to one's questions. When these steps fail to solve a problem, then it is time to ask for help, either from local experts or by posting your own question in a suitable online forum. When posting requests for help, one needs to abide by what is usually described as ``netiquette.'' + +\subsubsection{Netiquette} +In\index{netiquette}\index{network etiquette} most internet forums, a certain behavior is expected from those asking and answering questions. Some types of misbehavior, like use of offensive or inappropriate language, will usually result in the user losing writing rights in a forum. Occasional minor misbehavior, will usually result in the original question not being answered and instead the problem highlighted in the reply. In general following the steps listed below will greatly increase your chances of getting a detailed and useful answer. + +\begin{itemize} + \item Do your homework: first search for existing answers to your question, both online and in the documentation. (Do mention that you attempted this without success when you post your question.) + \item Provide a clear explanation of the problem, and all the relevant information. Say if it concerns \Rpgrm, the version, operating system, and any packages loaded and their versions. + \item If at all possible, provide a simplified and short, but self-contained, code example that reproduces the problem (sometimes called \emph{reprex}). + \item Be polite. + \item Contribute to the forum by answering other users' questions when you know the answer. +\end{itemize} + +\subsubsection{StackOverflow} + +Nowadays, StackOverflow (\url{http://stackoverflow.com/})\index{StackOverflow} is the best question-and-answer (Q\,\&\,A) support site for \Rpgrm. In most cases, searching for existing questions and their answers, will be all that you need to do. If asking a question, make sure that it is really a new question. If there is some question that looks similar, make clear how your question is different. + +StackOverflow has a user-rights system based on reputation, and questions and answers can be up- and down-voted. Those with the most up-votes are listed at the top of searches. If the questions or answers you write are up-voted, after you accumulate enough reputation, you acquire badges and rights, such as editing other users' questions and answers or later on, even deleting wrong answers or off-topic questions from the system. This sounds complicated, but works extremely well at ensuring that the base of questions and answers is relevant and correct, without relying on nominated \emph{moderators}. When using StackOverflow, do contribute by accepting correct answers, up-voting questions and answers that you find useful, down-voting those you consider poor, and flagging or correcting errors you may discover. + +\subsubsection{Reporting bugs} + +Being careful in the preparation of a reproducible example\index{reproducible example}\index{reprex|see{reproducible example}} is especially important when you intend to report a bug to the maintainer of any piece of software. For the problem to be fixed, the person revising the code, needs to be able to reproduce the problem, and after modifying the code, needs to be able to test if the problem has been solved or not. However, even if you are facing a problem caused by your misunderstanding of how \Rlang works, the simpler the example, the more likely that someone will quickly realize what your intention was when writing the code that produces a result different from what you expected. + +\begin{explainbox} +How to prepare a reproducible example\index{reproducible example} (``reprex''). A \emph{reprex} is a self-contained and as simple as possible piece of computer code that triggers (and so demonstrates) a problem. If possible, when you need to use data, either use a data set included in base \Rpgrm or generate artificial data within the reprex code. If you can reproduce the problem only with your own data, then you need to provide a minimal subset of it that triggers the problem. + +While preparing the \emph{reprex} you will need to simplify the code, and sometimes this step allows you to diagnose the problem. Always, before posting a reprex online, it is wise to check it with the latest versions of \Rpgrm and any package being used. + +I would say that about two out of three times I prepare a \emph{reprex}, it allows me to much better understand the problem and find the root of the problem and a solution or a work-around on my own. +\end{explainbox} + +\section{What is needed to run the examples in this book?} + +The book is written with the expectation that you will run most of the code examples and try as many other variations as needed until you are sure you understand the basic ``rules'' of the \Rpgrm language and how each function or command described works. As mentioned above, you are expected to use this book as a travel guide for your exploration of the world of \Rlang. + +\Rpgrm is all that is needed to work through all the examples in this book, but it is not a convenient way of doing this. I recommend that you use an editor or an IDE, in particular \RStudio\index{IDE for R}\index{editor for R scripts}. \RStudio is user friendly, actively maintained, free, open-source and available both in desktop and server versions. The desktop version runs on \osname{MS-Windows}, \osname{Linux}, and \osname{OS X} and other \osname{Unix} distributions. + +Of course when choosing which editor to use, personal preferences and previous familiarity play an important role. +Currently, for the development of packages, I use \RStudio exclusively. For writing this book I have used both \RStudio and the text editor \pgrmname{WinEdt} which has support for \Rpgrm together with excellent support for \LaTeX\index{Latex@\LaTeX}. When working on a large project or collaborating with other data analysts or researchers, one big advantage of a system based on plain text files such as \Rlang scripts, is that the same files can be edited with different programs and under different operating systems as needed or wished by the different persons involved in a project. + +When I started using \Rpgrm, nearly two decades ago, I was using other editors, using the operating system shell a lot more, and struggling with debugging as no IDE was available. The only reasonably good integration with an editor was for \pgrmname{Emacs}, which was widely available only under \osname{Unix}-like systems. Given my past experience, I encourage you to use an IDE for \Rpgrm. \RStudio is nowadays very popular, but if you do not like it, need a different set of features, such as integration with \pgrmname{ImageJ}, or are already familiar with the \pgrmname{Eclipse} IDE, you may want to try the \pgrmname{Bio7} IDE, available from \url{http://bio7.org}. + +The examples in this book make use of several freely available \Rlang extension packages, which can be installed from CRAN. One of them, \pkgname{learnrbook}, also available through CRAN, contains data sets and files specific to this book. The \pkgname{learnrbook} package contains installation instructions and saved lists of the names of all other packages used in the book. Instructions on installing \Rpgrm, \pgrmname{Git}, \RStudio, compilers and other tools are available online. In many cases the IT staff at your employer or school will know how to install them, or they may even be included in the default computer setup. In addition, a web site supporting the book will be available at: \url{http://www.learnr-book.info}. + +\section{Further reading} +Suggestions\index{further reading!shell scripts in Unix and Linux} for further reading are dependent on how you plan to use \Rlang. If you envision yourself running batch jobs under \pgrmname{Linux} or \pgrmname{Unix}, you would profit from learning to write shell scripts. Because \pgrmname{bash} is widely used nowadays, \citebooktitle{Newham2005} \autocite{Newham2005} can be recommended. If you aim at writing \Rlang code that is going to be reused, and have some familiarity with \Clang, \Cpplang or \javalang, reading \citetitle{Kernighan1999} \autocite{Kernighan1999} will provide a mostly language-independent view of programming as an activity and help you master the all-important tricks of the trade. + + + + + +% !Rnw root = appendix.main.Rnw + + + +\chapter{The R language: ``Words'' and ``sentences''}\label{chap:R:as:calc} + +\begin{VF} +The desire to economize time and mental effort in arithmetical computations, and to eliminate human liability to error, is probably as old as the science of arithmetic itself. + +\VA{Howard Aiken}{\emph{Proposed automatic calculating machine}, 1937; reprinted 1964}\nocite{Aiken1964} +\end{VF} + +%\dictum[Howard Aiken, \emph{Proposed automatic calculating machine}, presented to IBM in 1937]{The desire to economize time and mental effort in arithmetical computations, and to eliminate human liability to error, is probably as old as the science of arithmetic itself.}\vskip2ex + +\section{Aims of this chapter} + +In my experience, for those not familiar with computer programming languages, the best first step in learning the \Rlang language is to use it interactively by typing textual commands at the \emph{console} or command line. This will teach not only the syntax and grammar rules, but also give you a glimpse at the advantages and flexibility of this approach to data analysis. + +In the first part of the chapter we will use \Rlang to do everyday calculations that should be so easy and familiar that you will not need to think about the operations themselves. This easy start will give you a chance to focus on learning how to issue textual commands at the command prompt. + +Later in the chapter, you will gradually need to focus more on the \Rlang language and its grammar and less on how commands are entered. By the end of the chapter you will be familiar with most of the kinds of ``words'' used in the \Rlang language and you will be able to write simple ``sentences'' in \Rlang. + +Along the chapter, I will occasionally show the equivalent of the \Rlang code in mathematical notation. If you are not familiar with the mathematical notation, you can safely ignore it, as long as you understand the \Rlang code. + +\section{Natural and computer languages} +\index{languages!natural and computer} +Computer languages have strict rules and interpreters and compilers are unforgiving about errors. They will issue error messages, but in contrast to human readers or listeners, will not guess your intentions and continue. However, computer languages have a much smaller set of words than natural languages, such as English. If you are new to computer programming, understanding the parallels between computer and natural languages may be useful. + +One can think of constant values and variables (values stored under a name) as nouns and of operators and functions as verbs. A complete command, or statement, is the equivalent of a natural language sentence: ``a comprehensible utterance.'' The simple statement \code{a + 1} has three components: \code{a}, a variable, \code{+}, an operator and \code{1} a constant. The statement \code{sqrt(4)} has two components, a function \code{sqrt()} and a numerical constant \code{4}. We say that ``to compute $\sqrt{4}$ we \emph{call} \code{sqrt()} with \code{4} as its \emph{argument}.'' + +In later chapters you will learn how to write compound statements, the equivalent of natural-language paragraphs, and scripts, the equivalent of essays. You will also learn how to define new verbs, user-defined functions and operators, and new nouns, user-defined classes. + +\section{Numeric values and arithmetic} +\index{classes and modes!numeric, integer, double|(}\index{numbers and their arithmetic|(}\qRclass{numeric}\index{math operators}\index{math functions}\index{numeric values}\qRoperator{+}\qRoperator{-}\qRoperator{*}\qRoperator{/} +When working in \Rlang with arithmetic expressions, the normal mathematical precedence rules are respected, but parentheses can be used to alter this order. Parentheses can be nested, but in contrast to the usual practice in mathematics, the same parenthesis symbol is used at all nesting levels. + +\begin{explainbox} + 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 $3 + 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, 9. In programming languages, similar rules apply to all 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{sin()}\qRconst{pi} +$$ +\frac{3 + e^2}{\sin \pi} +$$ +is, in \Rlang, written as follows: + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{(}\hlnum{3} \hlopt{+} \hlkwd{exp}\hlstd{(}\hlnum{2}\hlstd{))} \hlopt{/} \hlkwd{sin}\hlstd{(pi)} +\end{alltt} +\begin{verbatim} +## [1] 8.483588e+16 +\end{verbatim} +\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. + +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} +\begin{alltt} +\hlnum{1} \hlopt{+} \hlnum{2} \hlopt{*} \hlnum{3} +\end{alltt} +\begin{verbatim} +## [1] 7 +\end{verbatim} +\begin{alltt} +\hlnum{1} \hlopt{+} \hlstd{(}\hlnum{2} \hlopt{*} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 7 +\end{verbatim} +\begin{alltt} +\hlstd{(}\hlnum{1} \hlopt{+} \hlnum{2}\hlstd{)} \hlopt{*} \hlnum{3} +\end{alltt} +\begin{verbatim} +## [1] 9 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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. For example, while \code{(1 + 2) * 3} is valid, \code{(1 +) 2 * 3} is a syntax error as \code{1 +} is incomplete and cannot be calculated. + +\begin{playground} +Here results are not shown. These are examples for you to type at the command prompt. 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(), log10(), log2()}\qRfunction{exp()} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{1} \hlopt{+} \hlnum{1} +\hlnum{2} \hlopt{*} \hlnum{2} +\hlnum{2} \hlopt{+} \hlnum{10} \hlopt{/} \hlnum{5} +\hlstd{(}\hlnum{2} \hlopt{+} \hlnum{10}\hlstd{)} \hlopt{/} \hlnum{5} +\hlnum{10}\hlopt{^}\hlnum{2} \hlopt{+} \hlnum{1} +\hlkwd{sqrt}\hlstd{(}\hlnum{9}\hlstd{)} +\hlstd{pi} \hlcom{# whole precision not shown when printing} +\hlkwd{print}\hlstd{(pi,} \hlkwc{digits} \hlstd{=} \hlnum{22}\hlstd{)} +\hlkwd{sin}\hlstd{(pi)} \hlcom{# oops! Read on for explanation.} +\hlkwd{log}\hlstd{(}\hlnum{100}\hlstd{)} +\hlkwd{log10}\hlstd{(}\hlnum{100}\hlstd{)} +\hlkwd{log2}\hlstd{(}\hlnum{8}\hlstd{)} +\hlkwd{exp}\hlstd{(}\hlnum{1}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} + +Variables\index{variables}\index{assignment} are used to store values. After we \emph{assign} a value to a variable, we can use 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{a} and \code{b} are arbitrarily chosen variable names; I could have used names like \code{my.variable.a} or \code{outside.temperature} if they had been useful to convey information. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlstd{a} \hlopt{+} \hlnum{1} +\end{alltt} +\begin{verbatim} +## [1] 2 +\end{verbatim} +\begin{alltt} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlnum{10} +\hlstd{b} \hlkwb{<-} \hlstd{a} \hlopt{+} \hlstd{b} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 11 +\end{verbatim} +\begin{alltt} +\hlnum{3e-2} \hlopt{*} \hlnum{2.0} +\end{alltt} +\begin{verbatim} +## [1] 0.06 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlkwd{print}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{+} \hlnum{1} +\end{alltt} +\begin{verbatim} +## [1] 2 +\end{verbatim} +\begin{alltt} +\hlkwd{print}\hlstd{(a} \hlopt{+} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 2 +\end{verbatim} +\end{kframe} +\end{knitrout} +\begin{playground} +There are some syntactically legal 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 -> a}\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{a}, \code{b} and \code{c} are being assigned the same value. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{b} \hlkwb{<-} \hlstd{c} \hlkwb{<-} \hlnum{0.0} +\hlstd{a} +\hlstd{b} +\hlstd{c} +\hlnum{1} \hlkwb{->} \hlstd{a} +\hlstd{a} +\hlstd{a} \hlkwb{=} \hlnum{3} +\hlstd{a} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} + +\begin{explainbox} +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()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{mode}\hlstd{(}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "numeric" +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlkwd{is.numeric}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +Because numbers can be stored in different formats, requiring different amounts of computer memory per value, most computing languages implement several different types of numbers. In most cases \Rpgrm's \Rfunction{numeric()} 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} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(}\hlnum{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.integer}\hlstd{(}\hlnum{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.double}\hlstd{(}\hlnum{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.integer}\hlstd{(}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.double}\hlstd{(}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +The name \code{double} originates from the \Clang language, in which there are different types of floats available. With the name \code{double} used to mean ``double-precision floating-point numbers.'' Similarly, the use of \code{L} stems from the \texttt{long} type in \Clang, meaning ``long integer numbers.'' +\end{explainbox} + +Numeric variables can contain more than one value. Even single numbers are in \Rlang \Rclass{vector}s of length one. We will later see why this is important. As you have seen above, the results of calculations were printed preceded with \code{[1]}. This is the index or position in the vector of the first number (or other value) displayed at the head of the current line. + +One can use \Rmethod{c()} ``concatenate'' to create a vector from other vectors, including vectors of length 1, such as the \code{numeric} constants in the statements below. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{)} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 3 1 2 +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{4}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{0}\hlstd{)} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 4 5 0 +\end{verbatim} +\begin{alltt} +\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(a, b)} +\hlstd{c} +\end{alltt} +\begin{verbatim} +## [1] 3 1 2 4 5 0 +\end{verbatim} +\begin{alltt} +\hlstd{d} \hlkwb{<-} \hlkwd{c}\hlstd{(b, a)} +\hlstd{d} +\end{alltt} +\begin{verbatim} +## [1] 4 5 0 3 1 2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Method \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} +\begin{alltt} +\hlkwd{append}\hlstd{(a, b)} +\end{alltt} +\begin{verbatim} +## [1] 3 1 2 4 5 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{append}\hlstd{(a,} \hlkwc{values} \hlstd{= b,} \hlkwc{after} \hlstd{=} \hlnum{2L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 3 1 4 5 0 2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Both \code{c()} and \code{append()} can also be used with lists. + +\begin{playground} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{1}\hlopt{:}\hlnum{5} +\hlstd{a} +\hlstd{b} \hlkwb{<-} \hlnum{5}\hlopt{:-}\hlnum{1} +\hlstd{b} +\hlstd{c} \hlkwb{<-} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{by} \hlstd{=} \hlnum{0.1}\hlstd{)} +\hlstd{c} +\hlstd{d} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlopt{-}\hlnum{5}\hlstd{,} \hlnum{4}\hlstd{)} +\hlstd{d} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} + +Next, 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} +\begin{alltt} +\hlstd{a} \hlopt{+} \hlnum{1} \hlcom{# we add one to vector a defined above} +\end{alltt} +\begin{verbatim} +## [1] 4 2 3 +\end{verbatim} +\begin{alltt} +\hlstd{(a} \hlopt{+} \hlnum{1}\hlstd{)} \hlopt{*} \hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] 8 4 6 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{+} \hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 7 6 2 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{-} \hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 0 0 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +As it can be seen in the first line above, another peculiarity of \Rpgrm, is what is frequently called ``recycling'' of arguments:\index{recycling of arguments} as vector \code{a} is of length 6, but the constant 1 is a vector of length 1, this short constant vector is extended, by recycling its value, into a vector of six ones---i.e., a vector of the same length as the longest vector in the statement, \code{a}.\label{par:recycling:numeric} + +Make sure you understand what calculations are taking place in the chunk above, and also the one below. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{6}\hlstd{)} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 1 1 1 1 1 1 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{+} \hlnum{1}\hlopt{:}\hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] 2 3 2 3 2 3 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{+} \hlnum{1}\hlopt{:}\hlnum{3} +\end{alltt} +\begin{verbatim} +## [1] 2 3 4 2 3 4 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{+} \hlnum{1}\hlopt{:}\hlnum{4} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning in a + 1:4: longer object length is not a multiple of shorter object length}}\begin{verbatim} +## [1] 2 3 4 5 2 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +A useful thing to know: a vector can have length zero. 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. I describe here a useful function, \Rfunction{length()} which returns the length of a vector or list. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{z} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{)} +\hlstd{z} +\end{alltt} +\begin{verbatim} +## numeric(0) +\end{verbatim} +\begin{alltt} +\hlkwd{length}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## [1] 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Vectors and lists 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} +\begin{alltt} +\hlkwd{length}\hlstd{(}\hlkwd{c}\hlstd{(a,} \hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{), b))} +\end{alltt} +\begin{verbatim} +## [1] 9 +\end{verbatim} +\begin{alltt} +\hlkwd{length}\hlstd{(}\hlkwd{c}\hlstd{(a, b))} +\end{alltt} +\begin{verbatim} +## [1] 9 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{log}\hlstd{(}\hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{))} +\end{alltt} +\begin{verbatim} +## numeric(0) +\end{verbatim} +\begin{alltt} +\hlnum{5} \hlopt{+} \hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{)} +\end{alltt} +\begin{verbatim} +## numeric(0) +\end{verbatim} +\end{kframe} +\end{knitrout} + +Even when of length zero, vectors do have to belong to a class acceptable for the operation. + +\end{explainbox} + +It\index{removing objects}\index{deleting objects|see {removing objects}} is possible to \emph{remove} variables from the workspace with \Rfunction{rm()}. Function \Rfunction{ls()} returns a \emph{list} of all objects visible in the current environment, or by supplying a \code{pattern} argument, only the objects with names matching the \code{pattern}. The pattern is given as a regular expression, with \verb|[]| enclosing alternative matching characters, \verb|^| and \verb|$|, indicating the extremes of the name (start and end, respectively). For example, \verb|"^z$"| matches only the single character `z' while \verb|"^z"| matches any name starting with `z'. In contrast \verb|"^[zy]$"| matches both `z' and `y' but neither `zy' nor `yz', and \verb|"^[a-z]"| matches any name starting with a lowercase ASCII letter. If you are using \pgrmname{RStudio}, all objects are listed in the Environment pane, and the search box of the panel can be used to find a given object. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{ls}\hlstd{(}\hlkwc{pattern}\hlstd{=}\hlstr{"^z$"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "z" +\end{verbatim} +\begin{alltt} +\hlkwd{rm}\hlstd{(z)} +\hlkwd{ls}\hlstd{(}\hlkwc{pattern}\hlstd{=}\hlstr{"^z$"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## character(0) +\end{verbatim} +\end{kframe} +\end{knitrout} + +There\index{special values!NA}\index{special values!NaN}\label{par:special:values} are some special values available for numbers. \Rconst{NA} meaning ``not available'' is used for missing values. Calculations 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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{NA} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlopt{-}\hlnum{1} \hlopt{/} \hlnum{0} +\end{alltt} +\begin{verbatim} +## [1] -Inf +\end{verbatim} +\begin{alltt} +\hlnum{1} \hlopt{/} \hlnum{0} +\end{alltt} +\begin{verbatim} +## [1] Inf +\end{verbatim} +\begin{alltt} +\hlnum{Inf} \hlopt{/} \hlnum{Inf} +\end{alltt} +\begin{verbatim} +## [1] NaN +\end{verbatim} +\begin{alltt} +\hlnum{Inf} \hlopt{+} \hlnum{4} +\end{alltt} +\begin{verbatim} +## [1] Inf +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlopt{-}\hlnum{Inf} +\hlstd{b} \hlopt{* -}\hlnum{1} +\end{alltt} +\begin{verbatim} +## [1] Inf +\end{verbatim} +\end{kframe} +\end{knitrout} + +Not available (\Rconst{NA}) values are very important in the analysis of experimental data, as frequently some observations are missing from an otherwise complete data set due to ``accidents'' during the course of an experiment. It is important to understand how to interpret \Rconst{NA}'s. They are simple placeholders for something that is unavailable, in other words, \emph{unknown}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{A} \hlkwb{<-} \hlnum{NA} +\hlstd{A} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlstd{A} \hlopt{+} \hlnum{1} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlstd{A} \hlopt{+} \hlnum{Inf} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +\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} +\begin{alltt} +\hlnum{123} \hlopt{+} \hlkwd{numeric}\hlstd{()} +\hlnum{123} \hlopt{+} \hlnum{NA} +\end{alltt} +\end{kframe} +\end{knitrout} + +\emph{Model answer:} +\Rconst{NA} is used to signal a value that ``was lost'' or ``was expected'' but is unavailable because of some accident. A vector of length zero, represents no values, but within the normal expectations. In particular, if vectors are expected to have a certain length, or if index positions along a vector are meaningful, then using \Rconst{NA} is a must. + +\end{playground} + +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} +\begin{alltt} +\hlkwd{is.na}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{1}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the example above, we can also see that \Rfunction{is.na()} is vectorized, and that it applies the test to each of the two elements of the vector individually, returning the result as a logical vector of length two. + +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} +\begin{alltt} +\hlnum{1} \hlopt{-} \hlnum{1e-20} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +When comparing \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} +\begin{alltt} +\hlnum{1L} \hlopt{+} \hlnum{3L} +\end{alltt} +\begin{verbatim} +## [1] 4 +\end{verbatim} +\begin{alltt} +\hlnum{1L} \hlopt{*} \hlnum{3L} +\end{alltt} +\begin{verbatim} +## [1] 3 +\end{verbatim} +\begin{alltt} +\hlnum{1L} \hlopt{%/%} \hlnum{3L} +\end{alltt} +\begin{verbatim} +## [1] 0 +\end{verbatim} +\begin{alltt} +\hlnum{1L} \hlopt{%%} \hlnum{3L} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlnum{1L} \hlopt{/} \hlnum{3L} +\end{alltt} +\begin{verbatim} +## [1] 0.3333333 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The last statement in the example immediately above, using the ``usual'' division operator yields a floating-point \code{double} result, while the integer division operator \Roperator{\%/\%} yields an \code{integer} result, and \Roperator{\%\%} returns the remainder from the integer division. 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} +\begin{alltt} +\hlnum{1000000L} \hlopt{*} \hlnum{1000000L} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 1000000L * 1000000L: NAs produced by integer overflow}}\begin{verbatim} +## [1] NA +\end{verbatim} +\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. The next chunk shows returned values that are either \Rconst{TRUE} or \Rconst{FALSE}. These are \code{logical} values that will be discussed in the next section.\index{numbers!double}\index{numbers!integer} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(}\hlnum{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.integer}\hlstd{(}\hlnum{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.double}\hlstd{(}\hlnum{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.double}\hlstd{(}\hlnum{1L} \hlopt{/} \hlnum{3L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(}\hlnum{1L} \hlopt{/} \hlnum{3L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +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} +\begin{alltt} +\hlnum{1} \hlopt{*} \hlnum{1000000L} \hlopt{*} \hlnum{1000000L} +\hlnum{1000000L} \hlopt{*} \hlnum{1000000L} \hlopt{*} \hlnum{1} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{advplayground} + +Both when displaying numbers 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, while \Rfunction{signif()} rounds to the requested number of significant digits. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.012 +\end{verbatim} +\begin{alltt} +\hlkwd{signif}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.0125 +\end{verbatim} +\begin{alltt} +\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1789.123 +\end{verbatim} +\begin{alltt} +\hlkwd{signif}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1790 +\end{verbatim} +\begin{alltt} +\hlkwd{round}\hlstd{(}\hlnum{1789.1234}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlopt{-}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1790 +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{0.12345} +\hlstd{b} \hlkwb{<-} \hlkwd{round}\hlstd{(a,} \hlkwc{digits} \hlstd{=} \hlnum{2}\hlstd{)} +\hlstd{a} \hlopt{==} \hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{-} \hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 0.00345 +\end{verbatim} +\begin{alltt} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 0.12 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +Being \code{digits}, the second parameter of these functions, the argument can also be passed by position. However, code is usually easier to understand for humans when parameter names are made explicit. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.012 +\end{verbatim} +\begin{alltt} +\hlkwd{round}\hlstd{(}\hlnum{0.0124567}\hlstd{,} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.012 +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +Functions \Rfunction{trunc()} and \Rfunction{ceiling()} return the non-fractional part of a numeric value as a new numeric value. They differ in how they handle negative values, and neither of them rounds the returned value to the nearest whole number. + +\begin{playground} +What does value truncation mean? Function \Rfunction{trunc()} truncates a numeric value, but it does not return an \code{integer}. +\begin{itemize} + \item Explore how \Rfunction{trunc()} and \Rfunction{ceiling()} differ. Test them both with positive and negative values. + \item \textbf{Advanced} Use function \Rfunction{abs()} and operators \Roperator{+} and \Roperator{-} to reproduce the output of \Rfunction{trunc()} and \Rfunction{ceiling()} for the different inputs. + \item Can \Rfunction{trunc()} and \Rfunction{ceiling()} be considered type conversion functions in \Rlang? +\end{itemize} +\end{playground} + +\index{classes and modes!numeric, integer, double|)}\index{numbers and their arithmetic|)} + +\section{Logical values and Boolean algebra}\label{sec:calc:boolean} +\index{classes and modes!logical|(}\index{logical operators}\index{logical values and their algebra|(}\index{Boolean arithmetic} +What in Mathematics are usually called Boolean values, are called \Rclass{logical} values in \Rlang. They can have only two values \code{TRUE} and \code{FALSE}, in addition to \code{NA} (not available). They are vectors as all other atomic types in \Rlang (by \emph{atomic} we mean that each value is not composed of ``parts''). There are also logical operators that allow Boolean algebra. In the chunk below we operate on \Rclass{logical} vectors of length one. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{TRUE} +\hlstd{b} \hlkwb{<-} \hlnum{FALSE} +\hlkwd{mode}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] "logical" +\end{verbatim} +\begin{alltt} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlopt{!}\hlstd{a} \hlcom{# negation} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{&&} \hlstd{b} \hlcom{# logical AND} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{||} \hlstd{b} \hlcom{# logical OR} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{xor}\hlstd{(a, b)} \hlcom{# exclusive OR} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +%%%% index operators using verb!! +As with arithmetic operators, vectorization is available with \emph{some} logical operators. The availability of two kinds of logical operators is one of the most troublesome aspects of the \Rlang language for beginners. 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}, 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 some, but not all cases, a warning will indicate that there is a possible problem. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{FALSE}\hlstd{)} +\hlstd{b} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{TRUE}\hlstd{)} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] TRUE FALSE +\end{verbatim} +\begin{alltt} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{&} \hlstd{b} \hlcom{# vectorized AND} +\end{alltt} +\begin{verbatim} +## [1] TRUE FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{|} \hlstd{b} \hlcom{# vectorized OR} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{&&} \hlstd{b} \hlcom{# not vectorized} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{||} \hlstd{b} \hlcom{# not vectorized} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{any}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(a} \hlopt{&} \hlstd{b)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(a} \hlopt{&} \hlstd{b)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{TRUE} \hlopt{||} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{FALSE} \hlopt{||} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlnum{TRUE} \hlopt{&&} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlnum{FALSE} \hlopt{&&} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlnum{TRUE} \hlopt{&&} \hlnum{FALSE} \hlopt{&&} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlnum{TRUE} \hlopt{&&} \hlnum{TRUE} \hlopt{&&} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{a} \hlopt{&} \hlstd{b} \hlopt{&} \hlnum{NA} +\end{alltt} +\begin{verbatim} +## [1] NA FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{&} \hlstd{b} \hlopt{&} \hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{NA}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{|} \hlstd{b} \hlopt{|} \hlkwd{c}\hlstd{(}\hlnum{NA}\hlstd{,} \hlnum{NA}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +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} +\begin{alltt} +\hlstd{x} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{NA}\hlstd{)} +\hlstd{x} \hlopt{&} \hlnum{FALSE} +\hlstd{x} \hlopt{|} \hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} +\index{logical values and their algebra|)} +\section{Comparison operators and operations} +\index{comparison operators|(}\index{operators!comparison|(}\qRoperator{>}\qRoperator{<}\qRoperator{>=}\qRoperator{<=}\qRoperator{==}\qRoperator{!=} +Comparison operators return vectors of \code{logical} values as results. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{1.2} \hlopt{>} \hlnum{1.0} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{1.2} \hlopt{>=} \hlnum{1.0} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{1.2} \hlopt{==} \hlnum{1.0} \hlcom{# be aware that here we use two = symbols} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlnum{1.2} \hlopt{!=} \hlnum{1.0} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{1.2} \hlopt{<=} \hlnum{1.0} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlnum{1.2} \hlopt{<} \hlnum{1.0} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{20} +\hlstd{a} \hlopt{<} \hlnum{100} \hlopt{&&} \hlstd{a} \hlopt{>} \hlnum{10} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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 to expect as a value for the vector returned by \code{1:10}, execute the statement \code{print(a)} after the first code statement below, or, alternatively, \code{1:10} without saving the result to a variable. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{a} \hlopt{>} \hlnum{5} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{<} \hlnum{5} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE TRUE TRUE FALSE FALSE FALSE FALSE FALSE FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{==} \hlnum{5} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE TRUE FALSE FALSE FALSE FALSE FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlstd{a} \hlopt{>} \hlnum{5} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(b)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(b)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +Precedence rules also apply to comparison operators and they can be overridden by means of parentheses. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlopt{>} \hlnum{2} \hlopt{+} \hlnum{3} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlstd{(a} \hlopt{>} \hlnum{2}\hlstd{)} \hlopt{+} \hlnum{3} +\end{alltt} +\begin{verbatim} +## [1] 3 3 4 4 4 4 4 4 4 4 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{a} \hlopt{>} \hlnum{3} \hlopt{|} \hlstd{a} \hlopt{+} \hlnum{2} \hlopt{<} \hlnum{3} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +Again, be aware of ``short-cut evaluation''. If the result does not depend on the missing value, then the result, \code{TRUE} or \code{FALSE} is returned. If the presence of the \code{NA} makes the end result unknown, then \code{NA} is returned. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(a,} \hlnum{NA}\hlstd{)} +\hlstd{c} \hlopt{>} \hlnum{5} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE NA +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(c} \hlopt{>} \hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(c} \hlopt{<} \hlnum{20}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{20}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlkwd{is.na}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.na}\hlstd{(c)} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(}\hlkwd{is.na}\hlstd{(c))} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(}\hlkwd{is.na}\hlstd{(c))} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{all}\hlstd{(c} \hlopt{<} \hlnum{20}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{20}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(c} \hlopt{<} \hlnum{20}\hlstd{,} \hlkwc{na.rm}\hlstd{=}\hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{any}\hlstd{(c} \hlopt{>} \hlnum{20}\hlstd{,} \hlkwc{na.rm}\hlstd{=}\hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +\label{box:floats} \label{par:float} +\index{floating point numbers!arithmetic|(}\index{machine arithmetic!precision|(} +\index{floats|see{floating point numbers}}\index{machine arithmetic!rounding errors}\index{Real numbers and computers} +\index{EPS ($\epsilon$)|see{machine arithmetic precision}}% +Here I give some examples for which the finite resolution of computer machine floats, as compared to Real numbers as defined in mathematics, can cause serious problems. In \Rpgrm, numbers that are not integers are stored as \emph{double-precision floats}. In addition to having limits to the largest and smallest numbers that can be represented, the precision of floats is limited by the number of significant digits that can be stored. Precision is usually described by ``epsilon'' ($\epsilon$), abbreviated \emph{eps}, defined as the largest value of $\epsilon$ for which $1 + \epsilon = 1$. The finite resolution of floats can lead to unexpected results when testing for equality. In the second example below, the result of the subtraction is still exactly 1 due to insufficient resolution. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{0} \hlopt{-} \hlnum{1e-20} +\end{alltt} +\begin{verbatim} +## [1] -1e-20 +\end{verbatim} +\begin{alltt} +\hlnum{1} \hlopt{-} \hlnum{1e-20} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The finiteness of floats also affects tests of equality, which is more likely to result in errors with important consequences. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{1e20} \hlopt{==} \hlnum{1} \hlopt{+} \hlnum{1e20} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{1} \hlopt{==} \hlnum{1} \hlopt{+} \hlnum{1e-20} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{0} \hlopt{==} \hlnum{1e-20} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +As \Rpgrm can run 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 compiler used to build the \Rpgrm program executable. However, it is possible to obtain these values at run time 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.\qRconst{.Machine\$double.eps}\qRconst{.Machine\$double.neg.eps}\qRconst{.Machine\$double.max}\qRconst{.Machine\$double.min} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{.Machine}\hlopt{$}\hlstd{double.eps} +\end{alltt} +\begin{verbatim} +## [1] 2.220446e-16 +\end{verbatim} +\begin{alltt} +\hlstd{.Machine}\hlopt{$}\hlstd{double.neg.eps} +\end{alltt} +\begin{verbatim} +## [1] 1.110223e-16 +\end{verbatim} +\begin{alltt} +\hlstd{.Machine}\hlopt{$}\hlstd{double.max} +\end{alltt} +\begin{verbatim} +## [1] 1024 +\end{verbatim} +\begin{alltt} +\hlstd{.Machine}\hlopt{$}\hlstd{double.min} +\end{alltt} +\begin{verbatim} +## [1] -1022 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The last two values refer to the exponents of 10, rather than the maximum and minimum size of numbers that can be handled as objects of class \Rclass{double}. Values outside these limits are stored as \Rconst{-Inf} or \Rconst{Inf} and enter arithmetic as infinite values according the mathematical rules. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{1e1026} +\end{alltt} +\begin{verbatim} +## [1] Inf +\end{verbatim} +\begin{alltt} +\hlnum{1e-1026} +\end{alltt} +\begin{verbatim} +## [1] 0 +\end{verbatim} +\begin{alltt} +\hlnum{Inf} \hlopt{+} \hlnum{1} +\end{alltt} +\begin{verbatim} +## [1] Inf +\end{verbatim} +\begin{alltt} +\hlopt{-}\hlnum{Inf} \hlopt{+} \hlnum{1} +\end{alltt} +\begin{verbatim} +## [1] -Inf +\end{verbatim} +\end{kframe} +\end{knitrout} + +As \Rclass{integer} values are stored in machine memory without loss of precision, epsilon is not defined for \Rclass{integer} values.\qRconst{.Machine\$integer.max} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{.Machine}\hlopt{$}\hlstd{integer.max} +\end{alltt} +\begin{verbatim} +## [1] 2147483647 +\end{verbatim} +\begin{alltt} +\hlnum{2147483699L} +\end{alltt} +\begin{verbatim} +## [1] 2147483699 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlnum{2147483600L} \hlopt{+} \hlnum{99L} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 2147483600L + 99L: NAs produced by integer overflow}}\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlnum{2147483600L} \hlopt{+} \hlnum{99} +\end{alltt} +\begin{verbatim} +## [1] 2147483699 +\end{verbatim} +\begin{alltt} +\hlnum{2147483600L} \hlopt{*} \hlnum{2147483600L} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 2147483600L * 2147483600L: NAs produced by integer overflow}}\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlnum{2147483600L} \hlopt{*} \hlnum{2147483600} +\end{alltt} +\begin{verbatim} +## [1] 4.611686e+18 +\end{verbatim} +\end{kframe} +\end{knitrout} + +We see next that 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 integers resulting in overflow. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{2147483600L} \hlopt{*} \hlnum{2147483600L} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning in 2147483600L * 2147483600L: NAs produced by integer overflow}}\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlnum{2147483600L}\hlopt{^}\hlnum{2L} +\end{alltt} +\begin{verbatim} +## [1] 4.611686e+18 +\end{verbatim} +\end{kframe} +\end{knitrout} +\index{floating point numbers!arithmetic|)}\index{machine arithmetic!precision|)} +\end{explainbox} + +\begin{warningbox} +\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'). Here we show how to gracefully handle rounding errors. As the example shows, rounding errors may accumulate, and in practice \verb|.Machine$double.eps| is not always a good value to safely use in tests for ``zero,'' and a larger value may be needed. 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 the tests should be done replacing tests like \verb|x == 1.0| with \verb|abs(x - 1.0) < 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} +\begin{alltt} +\hlstd{a} \hlopt{==} \hlnum{0.0} \hlcom{# may not always work} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{abs}\hlstd{(a)} \hlopt{<} \hlnum{1e-15} \hlcom{# is safer} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sin}\hlstd{(pi)} \hlopt{==} \hlnum{0.0} \hlcom{# angle in radians, not degrees!} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{sin}\hlstd{(}\hlnum{2} \hlopt{*} \hlstd{pi)} \hlopt{==} \hlnum{0.0} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{abs}\hlstd{(}\hlkwd{sin}\hlstd{(pi))} \hlopt{<} \hlnum{1e-15} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{abs}\hlstd{(}\hlkwd{sin}\hlstd{(}\hlnum{2} \hlopt{*} \hlstd{pi))} \hlopt{<} \hlnum{1e-15} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{sin}\hlstd{(pi)} +\end{alltt} +\begin{verbatim} +## [1] 1.224606e-16 +\end{verbatim} +\begin{alltt} +\hlkwd{sin}\hlstd{(}\hlnum{2} \hlopt{*} \hlstd{pi)} +\end{alltt} +\begin{verbatim} +## [1] -2.449213e-16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\index{comparison of floating point numbers|)}\index{inequality and equality tests|)} +\end{warningbox} + +\index{comparison operators|)}\index{operators!comparison|)} +\index{classes and modes!logical|)} + +\section{Sets and set operations} +\index{sets|(}\index{algebra of sets}\index{operators!set|(} + +The \Rlang language supports set operations on vectors. They can be useful in many different contexts when manipulating and comparing vectors of values. In Bioinformatics it is usual, for example, to have character vectors of gene tags. We may have a vector for each of a set of different samples, and need to compare them. However, we start by using a more mundane example, everyday shopping. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\hlstd{dairy} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"milk"}\hlstd{,} \hlstr{"butter"}\hlstd{,} \hlstr{"cheese"}\hlstd{)} +\hlstd{shopping} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"bread"}\hlstd{,} \hlstr{"butter"}\hlstd{,} \hlstr{"apple"}\hlstd{,} \hlstr{"cheese"}\hlstd{,} \hlstr{"orange"}\hlstd{)} +\hlkwd{intersect}\hlstd{(fruits, shopping)} +\end{alltt} +\begin{verbatim} +## [1] "apple" "orange" +\end{verbatim} +\begin{alltt} +\hlkwd{intersect}\hlstd{(bakery, shopping)} +\end{alltt} +\begin{verbatim} +## [1] "bread" +\end{verbatim} +\begin{alltt} +\hlkwd{intersect}\hlstd{(dairy, shopping)} +\end{alltt} +\begin{verbatim} +## [1] "butter" "cheese" +\end{verbatim} +\begin{alltt} +\hlstr{"lemon"} \hlopt{%in%} \hlstd{dairy} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstr{"lemon"} \hlopt{%in%} \hlstd{fruits} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{setdiff}\hlstd{(}\hlkwd{union}\hlstd{(bakery, dairy), shopping)} +\end{alltt} +\begin{verbatim} +## [1] "buns" "cake" "cookies" "milk" +\end{verbatim} +\end{kframe} +\end{knitrout} + +We continue next with abstract (symbolic) examples. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.set} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"b"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +To test if a given value belongs to a set, we use operator \Roperator{\%in\%}. 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} +\begin{alltt} +\hlstr{"a"} \hlopt{%in%} \hlstd{my.set} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlstd{my.set} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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\%}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlopt{!}\hlstr{"a"} \hlopt{%in%} \hlstd{my.set} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlopt{!}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlstd{my.set} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +Although inclusion is a set operation, it is also very useful for the simplification of \code{if()\ldots else} statements by replacing multiple tests for alternative constant values of the same \code{mode} chained by multiple \Roperator{|} operators. + +\begin{playground} +Use operator \Roperator{\%in\%} to simplify the following comparison. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{x} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} +\hlstd{x} \hlopt{==} \hlstr{"a"} \hlopt{|} \hlstd{x} \hlopt{==} \hlstr{"b"} \hlopt{|} \hlstd{x} \hlopt{==} \hlstr{"c"} \hlopt{|} \hlstd{x} \hlopt{==} \hlstr{"d"} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +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} +\begin{alltt} +\hlkwd{unique}\hlstd{(my.set)} +\end{alltt} +\begin{verbatim} +## [1] "a" "b" "c" +\end{verbatim} +\begin{alltt} +\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{)} \hlopt{%in%} \hlkwd{unique}\hlstd{(my.set)} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the notation used in algebra of sets, the set union operator is $\cup$ while the intersection operator is $\cap$. If we have sets $A$ and $B$, their union is given by $A \cup B$---in the next three examples, \code{c("a", "a", "z")} is a constant, while \code{my.set} is a variable. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{union}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} +\end{alltt} +\begin{verbatim} +## [1] "a" "z" "b" "c" +\end{verbatim} +\end{kframe} +\end{knitrout} + +If we have sets $A$ and $B$, their intersection is given by $A \cap B$. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{intersect}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} +\end{alltt} +\begin{verbatim} +## [1] "a" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +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} +\begin{alltt} +\hlkwd{union}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} +\hlkwd{c}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{), my.set)} +\hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"a"}\hlstd{,} \hlstr{"z"}\hlstd{, my.set)} +\end{alltt} +\end{kframe} +\end{knitrout} + +In the algebra of sets notation $A \subseteq B$, where $A$ and $B$ are sets, indicates that $A$ is a subset or equal to $B$. For a true subset, the notation is $A \subset B$. The operators with the reverse direction are $\supseteq$ and $\supset$. Implement these four operations in four \Rlang statements, and test them on sets (represented by \Rlang vectors) with different ``overlap'' among set members. + +\end{playground} + +\begin{explainbox} +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} +\begin{alltt} +\hlnum{9L} \hlopt{%in%} \hlnum{2L}\hlopt{:}\hlnum{4L} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlnum{9L} \hlopt{%in%} \hlstd{((}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{)} \hlopt{*} \hlstd{(}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{c}\hlstd{(}\hlnum{1L}\hlstd{,} \hlnum{16L}\hlstd{)} \hlopt{%in%} \hlstd{((}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{)} \hlopt{*} \hlstd{(}\hlnum{2L}\hlopt{:}\hlnum{4L}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] FALSE TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\emph{Empty sets} are an important component of the algebra of sets, in \Rlang they are represented as vectors of zero length. Vectors and lists of zero length, which the \Rlang language fully supports, can be used to ``encode'' emptiness also in other contexts. These vectors do belong to a class such as \Rclass{numeric} or \Rclass{character} and must be compatible with other operands in an expression. By default, constructors for vectors, construct empty vectors. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{length}\hlstd{(}\hlkwd{integer}\hlstd{())} +\end{alltt} +\begin{verbatim} +## [1] 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{1L} \hlopt{%in%} \hlkwd{integer}\hlstd{()} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{setdiff}\hlstd{(}\hlnum{1L}\hlopt{:}\hlnum{4L}\hlstd{,} \hlkwd{union}\hlstd{(}\hlnum{1L}\hlopt{:}\hlnum{4L}\hlstd{,} \hlkwd{integer}\hlstd{()))} +\end{alltt} +\begin{verbatim} +## integer(0) +\end{verbatim} +\end{kframe} +\end{knitrout} + +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}). The next two examples do, however, return the correct answers.\qRoperator{\%in\%} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{9} \hlopt{%in%} \hlstd{(}\hlnum{2}\hlopt{:}\hlnum{4}\hlstd{)}\hlopt{^}\hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{5}\hlstd{)} \hlopt{%in%} \hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)}\hlopt{^}\hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} +\index{operators!set|)} +\index{sets|)} + +\section{Character values}\label{sec:calc:character} +\index{character strings}\index{classes and modes!character|(}\qRclass{character} +Character variables can be used to store any character. Character constants are written by enclosing characters in quotes. There are three types of quotes 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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstr{"A"} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlstr{'A'} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{==} \hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +In many computer languages, vectors of characters are distinct from vectors of character strings. In these languages, character vectors store at each index position a single character, while vectors of character strings store at each index position strings of characters of various lengths, such as words or sentences. If you are familiar with \Clang or \Cpplang, you need to keep in mind that \Clang's \code{char} and \Rlang's \code{character} are not equivalent and that in \Rlang, \code{character} vectors are vectors of character strings. In contrast to these other languages, in \Rlang there is no predefined class for vectors of individual characters and character constants enclosed in double or single quotes are not different. +\end{explainbox} + +Concatenating character vectors of length one does not yield a longer character string, it yields instead a longer vector. +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstr{'A'} +\hlstd{b} \hlkwb{<-} \hlstr{"bcdefg"} +\hlstd{c} \hlkwb{<-} \hlstr{"123"} +\hlstd{d} \hlkwb{<-} \hlkwd{c}\hlstd{(a, b, c)} +\hlstd{d} +\end{alltt} +\begin{verbatim} +## [1] "A" "bcdefg" "123" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Having two different delimiters available makes it possible to choose the type of quotes used as delimiters so that other quotes can be included in a string. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstr{"He said 'hello' when he came in"} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] "He said 'hello' when he came in" +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlstr{'He said "hello" when he came in'} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] "He said \"hello\" when he came in" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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 sequences''. 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} +\begin{alltt} +\hlstd{c} \hlkwb{<-} \hlstr{"abc\textbackslash{}ndef\textbackslash{}tx\textbackslash{}"yz\textbackslash{}"\textbackslash{}\textbackslash{}\textbackslash{}tm"} +\hlkwd{print}\hlstd{(c)} +\end{alltt} +\begin{verbatim} +## [1] "abc\ndef\tx\"yz\"\\\tm" +\end{verbatim} +\begin{alltt} +\hlkwd{cat}\hlstd{(c)} +\end{alltt} +\begin{verbatim} +## abc +## def x"yz"\ m +\end{verbatim} +\end{kframe} +\end{knitrout} + +The \textit{escape codes}\index{character escape codes} work only in some contexts, as when using \Rfunction{cat()} to generate the output. For example, the new-line escape (\verb|\n|) can be embedded in strings used for axis-label, title or label in a plot to split them over two or more lines. +\index{classes and modes!character|)} + +\section{The `mode' and `class' of objects}\label{sec:rlang:mode} +\index{objects!mode} +Variables have a \emph{mode} that depends on what is stored in them. But different from other languages, assignment to a variable of a different mode is allowed and in most cases its mode changes together with its contents. However, there is a restriction that all elements in a vector, array or matrix, must be of the same mode. While this is not required for lists, which can be heterogenous. In practice this means that we can assign an object, such as a vector, with a different \code{mode} to a name already in use, but we cannot use indexing to assign an object of a different mode to individual members of a vector, matrix or array. Functions with names starting with \code{is.} are tests returning a logical value, \code{TRUE}, \code{FALSE} or \code{NA}. Function \Rfunction{mode()} returns the mode of an object, as a character string and \Rfunction{typeof()} returns R's internal type or storage mode.\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} +\begin{alltt} +\hlstd{my_var} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} +\hlkwd{mode}\hlstd{(my_var)} \hlcom{# no distinction of integer or double} +\end{alltt} +\begin{verbatim} +## [1] "numeric" +\end{verbatim} +\begin{alltt} +\hlkwd{typeof}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] "integer" +\end{verbatim} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(my_var)} \hlcom{# no distinction of integer or double} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.double}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.integer}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.logical}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.character}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstd{my_var} \hlkwb{<-} \hlstr{"abc"} +\hlkwd{mode}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] "character" +\end{verbatim} +\end{kframe} +\end{knitrout} + +While \emph{mode} is a fundamental property, and limited to those modes defined as part of the \Rlang language, the concept of \emph{class}, is different in that new classes can be defined in user code. In particular, different \Rlang objects of a given mode, such as \code{numeric}, can belong to different \code{class}es. The use of classes for dispatching functions is discussed in section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods}, in relation to object-oriented programming in \Rlang. Method \Rfunction{class()} is used to query the class of an object, and method \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} +\begin{alltt} +\hlkwd{class}\hlstd{(my_var)} +\end{alltt} +\begin{verbatim} +## [1] "character" +\end{verbatim} +\begin{alltt} +\hlkwd{inherits}\hlstd{(my_var,} \hlstr{"character"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{inherits}\hlstd{(my_var,} \hlstr{"numeric"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\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()} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{as.character}\hlstd{(}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "1" +\end{verbatim} +\begin{alltt} +\hlkwd{as.numeric}\hlstd{(}\hlstr{"1"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlkwd{as.logical}\hlstd{(}\hlstr{"TRUE"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{as.logical}\hlstd{(}\hlstr{"NA"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\end{kframe} +\end{knitrout} + +Conversion takes place automatically in arithmetic and logical expressions. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlnum{TRUE} \hlopt{+} \hlnum{10} +\end{alltt} +\begin{verbatim} +## [1] 11 +\end{verbatim} +\begin{alltt} +\hlnum{1} \hlopt{||} \hlnum{0} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlnum{FALSE} \hlopt{| -}\hlnum{2}\hlopt{:}\hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] TRUE TRUE FALSE TRUE TRUE +\end{verbatim} +\end{kframe} +\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()} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{"A"}\hlstd{)} +\hlkwd{as.numeric}\hlstd{(}\hlnum{TRUE}\hlstd{)} +\hlkwd{as.numeric}\hlstd{(}\hlnum{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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\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. +\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} +\begin{alltt} +\hlstd{f} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"1"}\hlstd{,} \hlstr{"2"}\hlstd{,} \hlstr{"3"}\hlstd{)} +\hlkwd{length}\hlstd{(f)} +\end{alltt} +\begin{verbatim} +## [1] 3 +\end{verbatim} +\begin{alltt} +\hlstd{g} \hlkwb{<-} \hlstr{"123"} +\hlkwd{length}\hlstd{(g)} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlkwd{as.numeric}\hlstd{(f)} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 +\end{verbatim} +\begin{alltt} +\hlkwd{as.numeric}\hlstd{(g)} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\end{kframe} +\end{knitrout} +\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. + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{x} \hlkwb{=} \hlkwd{c}\hlstd{(}\hlnum{123.4567890}\hlstd{,} \hlnum{1.0}\hlstd{)} +\hlkwd{format}\hlstd{(x)} \hlcom{# using defaults} +\end{alltt} +\begin{verbatim} +## [1] "123.4568" " 1.0000" +\end{verbatim} +\begin{alltt} +\hlkwd{format}\hlstd{(x[}\hlnum{1}\hlstd{])} \hlcom{# using defaults} +\end{alltt} +\begin{verbatim} +## [1] "123.4568" +\end{verbatim} +\begin{alltt} +\hlkwd{format}\hlstd{(x[}\hlnum{2}\hlstd{])} \hlcom{# using defaults} +\end{alltt} +\begin{verbatim} +## [1] "1" +\end{verbatim} +\begin{alltt} +\hlkwd{format}\hlstd{(x,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{nsmall} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "123.5" " 1.0" +\end{verbatim} +\begin{alltt} +\hlkwd{format}\hlstd{(x[}\hlnum{1}\hlstd{],} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{nsmall} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "123.5" +\end{verbatim} +\begin{alltt} +\hlkwd{format}\hlstd{(x[}\hlnum{2}\hlstd{],} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{nsmall} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "1.0" +\end{verbatim} +\begin{alltt} +\hlkwd{format}\hlstd{(x,} \hlkwc{digits} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{scientific} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "1.23e+02" "1.00e+00" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{])} +\end{alltt} +\begin{verbatim} +## [1] "The numbers are: 123.46 and 1" +\end{verbatim} +\begin{alltt} +\hlkwd{sprintf}\hlstd{(}\hlstr{"The numbers are: %.4g and %.2g"}\hlstd{, x[}\hlnum{1}\hlstd{], x[}\hlnum{2}\hlstd{])} +\end{alltt} +\begin{verbatim} +## [1] "The numbers are: 123.5 and 1" +\end{verbatim} +\begin{alltt} +\hlkwd{sprintf}\hlstd{(}\hlstr{"The numbers are: %4.2e and %.0e"}\hlstd{, x[}\hlnum{1}\hlstd{], x[}\hlnum{2}\hlstd{])} +\end{alltt} +\begin{verbatim} +## [1] "The numbers are: 1.23e+02 and 1e+00" +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the template \code{"The numbers are: \%4.2f and \%.0f"}, there are two placeholders for \code{numeric} values, \code{\%4.2f} and \code{\%.0f}, so in addition to the template, we pass two values extracted from the first two positions of vector \code{x}. These could have been two different vectors of length one, or even numeric constants. The template itself does not need to be a \code{character} constant as in these examples, as a variable can be also passed as argument. + +\begin{playground} +Function \Rfunction{format()} may be easier to use, in some cases, but \Rfunction{sprintf()} is more flexible and powerful. Those with experience in the use of the \Clang language will already know about \Rfunction{sprintf()} and its use of templates for formatting output. Even if you are familiar with \Clang, look up the help pages for both functions, and practice, by trying to create the same formatted output by means of the two functions. Do also play with these functions with other types of data like \code{integer} and \code{character}. +\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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{NA}\hlstd{)} +\hlkwd{is.numeric}\hlstd{(a[}\hlnum{2}\hlstd{])} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(}\hlnum{NA}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"abc"}\hlstd{,} \hlnum{NA}\hlstd{)} +\hlkwd{is.character}\hlstd{(b[}\hlnum{2}\hlstd{])} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.character}\hlstd{(}\hlnum{NA}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(}\hlnum{NA}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "logical" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Even the statement below works transparently. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a[}\hlnum{3}\hlstd{]} \hlkwb{<-} \hlstd{b[}\hlnum{2}\hlstd{]} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\index{type conversion|)} + +\section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} +\index{vectors!indexing|(}\index{vectors!member extraction} +If you have read earlier sections of this chapter, you already know how to create a vector. \Rlang's vectors are equivalent to what would be written in mathematical notation as $x_{1\ldots n} = a_1, a_2, \ldots, a_i, \ldots, a_n$, they are not the equivalent to the vectors, common in Physics, which are symbolized with an arrow as an ``accent,'' such as $\overrightarrow{\mathbf{F}}$. + +In this section we are going to see how to extract or retrieve, replace, and move elements such as $a_2$ from a vector. Elements are extracted using an index enclosed in single square brackets. The index indicates the position in the vector, starting from one, following the usual mathematical tradition. What in maths would be $a_i$ for a vector $a_{1\ldots n}$, in \Rpgrm is represented as \code{a[i]} and the whole vector as earlier seen as \code{a}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "b" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +Four constant vectors are available in \Rlang: \Rconst{letters}, \Rconst{LETTERS}, \Rconst{month.name} and \Rconst{month.abb}, of which we used \code{letters} in the example above. These vectors are always for English, irrespective of the locale. +\end{explainbox} + +\begin{warningbox} +In \Rlang, indexes always start from one, while in some other programming languages such as \Clang and \Cpplang, indexes start from zero. It is important to be aware of this difference, as many computation algorithms are valid only under a given indexing convention. +\end{warningbox} + +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} +\begin{alltt} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{2}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## [1] "c" "b" +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlnum{10}\hlopt{:}\hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "j" "i" "h" "g" "f" "e" "d" "c" "b" "a" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +The length of the indexing vector is 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} +\begin{alltt} +\hlkwd{length}\hlstd{(a)} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{3}\hlstd{)]} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{10}\hlopt{:}\hlnum{1}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{10}\hlstd{)]} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{11}\hlstd{)]} +\hlstd{a[}\hlnum{11}\hlstd{]} +\end{alltt} +\end{kframe} +\end{knitrout} + +Have you tried some of your own examples? If not yet, do \emph{play} with additional variations of your own before continuing. + +\end{playground} + +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} +\begin{alltt} +\hlstd{a[}\hlopt{-}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "a" "c" "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlopt{-}\hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{2}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## [1] "a" "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlopt{-}\hlnum{3}\hlopt{:-}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "a" "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +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} +\begin{alltt} +\hlstd{a[ ]} +\hlstd{a[}\hlnum{0}\hlstd{]} +\hlstd{a[}\hlkwd{numeric}\hlstd{(}\hlnum{0}\hlstd{)]} +\hlstd{a[}\hlnum{NA}\hlstd{]} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{NA}\hlstd{)]} +\hlstd{a[}\hlkwa{NULL}\hlstd{]} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlkwa{NULL}\hlstd{)]} +\end{alltt} +\end{kframe} +\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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a[}\hlnum{TRUE}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlnum{FALSE}\hlstd{]} +\end{alltt} +\begin{verbatim} +## character(0) +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## [1] "a" "c" "e" "g" "i" +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## [1] "b" "d" "f" "h" "j" +\end{verbatim} +\begin{alltt} +\hlstd{a} \hlopt{>} \hlstr{"c"} +\end{alltt} +\begin{verbatim} +## [1] FALSE FALSE FALSE TRUE TRUE TRUE TRUE TRUE TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlstd{a[a} \hlopt{>} \hlstr{"c"}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Indexing with logical vectors is very frequently used in \Rlang because comparison operators are vectorized. Comparison operators, when applied to a vector, return a \code{logical} vector, a vector that can be used to extract the elements for which the result of the comparison test was \code{TRUE}. + +\begin{playground} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} +\hlstd{b} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{selector} \hlkwb{<-} \hlstd{a} \hlopt{>} \hlstr{"c"} +\hlstd{selector} +\hlstd{a[selector]} +\hlstd{b[selector]} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{indexes} \hlkwb{<-} \hlkwd{which}\hlstd{(a} \hlopt{>} \hlstr{"c"}\hlstd{)} +\hlstd{indexes} +\hlstd{a[indexes]} +\hlstd{b[indexes]} +\end{alltt} +\end{kframe} +\end{knitrout} + +Make sure to understand the examples above. These constructs are very widely used in \Rlang because they allow for concise code that is easy to understand once you are familiar with the indexing rules. However, if you do not command these rules, many of these terse statements will be unintelligible to you. +\end{playground} + +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 7 8 9 10 +\end{verbatim} +\begin{alltt} +\hlstd{a[}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlnum{99} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 99 2 3 4 5 6 7 8 9 10 +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{b[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,}\hlnum{4}\hlstd{)]} \hlkwb{<-} \hlopt{-}\hlnum{99} \hlcom{# recycling} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 1 -99 3 -99 5 6 7 8 9 10 +\end{verbatim} +\begin{alltt} +\hlstd{c} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{c[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,}\hlnum{4}\hlstd{)]} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlopt{-}\hlnum{99}\hlstd{,} \hlnum{99}\hlstd{)} +\hlstd{c} +\end{alltt} +\begin{verbatim} +## [1] 1 -99 3 99 5 6 7 8 9 10 +\end{verbatim} +\begin{alltt} +\hlstd{d} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{d[}\hlnum{TRUE}\hlstd{]} \hlkwb{<-} \hlnum{1} \hlcom{# recycling} +\hlstd{d} +\end{alltt} +\begin{verbatim} +## [1] 1 1 1 1 1 1 1 1 1 1 +\end{verbatim} +\begin{alltt} +\hlstd{e} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{e} \hlkwb{<-} \hlnum{1} \hlcom{# no recycling} +\hlstd{e} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} +\hlstd{a[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlstd{a[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] "b" "a" "c" "d" "e" "f" "g" "h" "i" "j" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} +\hlstd{a[}\hlnum{5}\hlopt{:}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{a[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,}\hlnum{FALSE}\hlstd{)]} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] "i" "g" "e" "c" "a" "f" "g" "h" "i" "j" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{playground} + +\begin{explainbox}\label{box:vec:sort} +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} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlstd{LETTERS[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} +\hlstd{b[}\hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{b[}\hlnum{1.1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{b[}\hlnum{1.9999}\hlstd{]} \hlcom{# surprise!!} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{b[}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "B" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlstd{LETTERS[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{]} +\hlstd{b[}\hlopt{-}\hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "B" "C" "D" "E" "F" "G" "H" "I" "J" +\end{verbatim} +\begin{alltt} +\hlstd{b[}\hlopt{-}\hlnum{1.1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "B" "C" "D" "E" "F" "G" "H" "I" "J" +\end{verbatim} +\begin{alltt} +\hlstd{b[}\hlopt{-}\hlnum{1.9999}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "B" "C" "D" "E" "F" "G" "H" "I" "J" +\end{verbatim} +\begin{alltt} +\hlstd{b[}\hlopt{-}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] "A" "C" "D" "E" "F" "G" "H" "I" "J" +\end{verbatim} +\end{kframe} +\end{knitrout} + +From this experiment, we can learn that if negative indexes are not whole numbers, they are truncated to the next larger (less negative) integer. In conclusion, \code{double} index values behave as if they where sanitized using function \code{trunc()}. + +This example also shows how one can tease out of \Rlang its rules through experimentation. + +\end{explainbox} + +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} +\begin{alltt} +\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{4}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{4}\hlstd{)} +\hlkwd{sort}\hlstd{(my.vector)} +\end{alltt} +\begin{verbatim} +## [1] 1 4 4 10 22 +\end{verbatim} +\begin{alltt} +\hlkwd{sort}\hlstd{(my.vector,} \hlkwc{decreasing} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 22 10 4 4 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{order}\hlstd{(my.vector)} +\end{alltt} +\begin{verbatim} +## [1] 4 2 5 1 3 +\end{verbatim} +\begin{alltt} +\hlstd{my.vector[}\hlkwd{order}\hlstd{(my.vector)]} +\end{alltt} +\begin{verbatim} +## [1] 1 4 4 10 22 +\end{verbatim} +\begin{alltt} +\hlstd{another.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"ab"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"zy"}\hlstd{,} \hlstr{"e"}\hlstd{)} +\hlstd{another.vector[}\hlkwd{order}\hlstd{(my.vector)]} +\end{alltt} +\begin{verbatim} +## [1] "zy" "aa" "e" "ab" "c" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +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} +\begin{alltt} +\hlstd{my.letters} \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{my.letters} +\end{alltt} +\begin{verbatim} +## [1] "a" "e" "j" "c" "a" "d" "u" "a" "j" +\end{verbatim} +\begin{alltt} +\hlkwd{sort}\hlstd{(my.letters)} +\end{alltt} +\begin{verbatim} +## [1] "a" "a" "a" "c" "d" "e" "j" "j" "u" +\end{verbatim} +\begin{alltt} +\hlkwd{rle}\hlstd{(}\hlkwd{sort}\hlstd{(my.letters))} +\end{alltt} +\begin{verbatim} +## Run Length Encoding +## lengths: int [1:6] 3 1 1 1 2 1 +## values : chr [1:6] "a" "c" "d" "e" "j" "u" +\end{verbatim} +\end{kframe} +\end{knitrout} + +The second and third statements are only to demonstrate the effect of each step. The last statement uses nested function calls to compute the number of copies of each value in the vector. +\end{explainbox} + + + +\index{vectors!indexing|)} + +\section{Matrices and multidimensional arrays}\label{sec:matrix:array} +\index{matrices|(}\index{arrays|(}\qRclass{matrix}\qRclass{array} + +Vectors have a single dimension, and, as we saw above, we can query their length with method \Rfunction{length()}. Matrices have two dimensions, which can be queried with \Rfunction{dim()}, \Rfunction{ncol()} and \Rfunction{nrow()}. \Rlang arrays can have any number of dimensions, even a single dimension, which can be queried with method \Rfunction{dim()}. As expected \Rfunction{is.vector()}, \Rfunction{is.matrix()} and \Rfunction{is.array()} can be used to query the class. + +We can create a new matrix using the \Rfunction{matrix()} or \Rfunction{as.matrix()} constructors. The first argument of \Rfunction{matrix()} is a vector. In the same way as vectors, matrices are homogeneous, all elements are of the same type. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] +## [1,] 1 6 11 +## [2,] 2 7 12 +## [3,] 3 8 13 +## [4,] 4 9 14 +## [5,] 5 10 15 +\end{verbatim} +\begin{alltt} +\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{nrow} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] [,5] +## [1,] 1 4 7 10 13 +## [2,] 2 5 8 11 14 +## [3,] 3 6 9 12 15 +\end{verbatim} +\end{kframe} +\end{knitrout} + +When a vector is converted to a matrix, \Rlang's default is to allocate the values in the vector to the matrix starting from the leftmost column, and within the column, down from the top. Once the first column is filled, the process continues from the top of the next column, as can be seen above. This order can be changed as you will discover in the playground below. + +\begin{playground} +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} +\begin{alltt} +\hlkwd{help}\hlstd{(matrix)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{15}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} + +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 any element or group of elements, we use two indices. The only complication is that there are two possible orders in which, in principle, indexes could be supplied. In \Rlang, indexes for matrices are written ``row first.'' In simpler words, 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} +\begin{alltt} +\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} +\hlstd{A} +\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} +\hlstd{A[}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 1 +\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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{A[}\hlnum{1}\hlstd{, ]} +\end{alltt} +\begin{verbatim} +## [1] 1 6 11 16 +\end{verbatim} +\begin{alltt} +\hlstd{A[ ,} \hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 +\end{verbatim} +\begin{alltt} +\hlstd{A[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## [,1] [,2] +## [1,] 2 12 +## [2,] 3 13 +\end{verbatim} +\begin{alltt} +\hlstd{A[}\hlnum{3}\hlstd{,} \hlnum{4}\hlstd{]} \hlkwb{<-} \hlnum{99} +\hlstd{A} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 6 11 16 +## [2,] 2 7 12 17 +## [3,] 3 8 13 99 +## [4,] 4 9 14 19 +## [5,] 5 10 15 20 +\end{verbatim} +\begin{alltt} +\hlstd{A[}\hlnum{4}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{A[}\hlnum{3}\hlopt{:}\hlnum{4}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} +\hlstd{A} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 6 11 16 +## [2,] 2 7 12 17 +## [3,] 9 4 13 99 +## [4,] 8 3 14 19 +## [5,] 5 10 15 20 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +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 \emph{dimensions} of length two defined and stored as an attribute. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.vector} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{6} +\hlkwd{dim}\hlstd{(my.vector)} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] 6 1 +\end{verbatim} +\begin{alltt} +\hlstd{two.col.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} +\hlkwd{dim}\hlstd{(two.col.matrix)} +\end{alltt} +\begin{verbatim} +## [1] 3 2 +\end{verbatim} +\begin{alltt} +\hlstd{one.elem.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{1}\hlstd{)} +\hlkwd{dim}\hlstd{(one.elem.matrix)} +\end{alltt} +\begin{verbatim} +## [1] 1 1 +\end{verbatim} +\begin{alltt} +\hlstd{no.elem.matrix} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlkwd{numeric}\hlstd{(),} \hlkwc{ncol} \hlstd{=} \hlnum{0}\hlstd{)} +\hlkwd{dim}\hlstd{(no.elem.matrix)} +\end{alltt} +\begin{verbatim} +## [1] 0 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} + +Arrays\index{matrix!dimensions}\index{arrays!dimensions} are similar to matrices, but can have more than two dimensions, which are specified with the \code{dim} argument to the \Rfunction{array()} constructor. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{B} \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{B} +\end{alltt} +\begin{verbatim} +## , , 1 +## +## [,1] [,2] [,3] +## [1,] 1 4 7 +## [2,] 2 5 8 +## [3,] 3 6 9 +## +## , , 2 +## +## [,1] [,2] [,3] +## [1,] 10 13 16 +## [2,] 11 14 17 +## [3,] 12 15 18 +## +## , , 3 +## +## [,1] [,2] [,3] +## [1,] 19 22 25 +## [2,] 20 23 26 +## [3,] 21 24 27 +\end{verbatim} +\begin{alltt} +\hlstd{B[}\hlnum{2}\hlstd{,} \hlnum{2}\hlstd{,} \hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 14 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the chunk above, the length of the supplied vector is the product of the dimensions, $27 = 3 \times 3 \times 3$. + +\begin{playground} + 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} +\begin{alltt} +\hlstd{v} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{m2c} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{)} +\hlstd{m2cr} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{ncol} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{byrow} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlstd{m2r} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{)} +\hlstd{m2rc} \hlkwb{<-} \hlkwd{matrix}\hlstd{(v,} \hlkwc{nrow} \hlstd{=} \hlnum{2}\hlstd{,} \hlkwc{byrow} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{v} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{a2c} \hlkwb{<-} \hlkwd{array}\hlstd{(v,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{2}\hlstd{))} +\hlstd{a2c} \hlkwb{<-} \hlkwd{array}\hlstd{(v,} \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{)))} +\hlstd{a2r} \hlkwb{<-} \hlkwd{array}\hlstd{(v,} \hlkwc{dim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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 methods 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. +\end{enumerate} + +\end{playground} + +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 a matrix, by swapping columns and rows. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{20}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} +\hlstd{A} +\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{(A)} +\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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{A} \hlopt{+} \hlnum{2} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 3 8 13 18 +## [2,] 4 9 14 19 +## [3,] 5 10 15 20 +## [4,] 6 11 16 21 +## [5,] 7 12 17 22 +\end{verbatim} +\begin{alltt} +\hlstd{A} \hlopt{*} \hlnum{0}\hlopt{:}\hlnum{1} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 0 6 0 16 +## [2,] 2 0 12 0 +## [3,] 0 8 0 18 +## [4,] 4 0 14 0 +## [5,] 0 10 0 20 +\end{verbatim} +\begin{alltt} +\hlstd{A} \hlopt{*} \hlnum{1}\hlopt{:}\hlnum{0} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 0 11 0 +## [2,] 0 7 0 17 +## [3,] 3 0 13 0 +## [4,] 0 9 0 19 +## [5,] 5 0 15 0 +\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. Matrix multiplication is indicated by operator \Roperator{\%*\%}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{B} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{16}\hlstd{,} \hlkwc{ncol} \hlstd{=} \hlnum{4}\hlstd{)} +\hlstd{B} \hlopt{*} \hlstd{B} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 1 25 81 169 +## [2,] 4 36 100 196 +## [3,] 9 49 121 225 +## [4,] 16 64 144 256 +\end{verbatim} +\begin{alltt} +\hlstd{B} \hlopt{%*%} \hlstd{B} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] +## [1,] 90 202 314 426 +## [2,] 100 228 356 484 +## [3,] 110 254 398 542 +## [4,] 120 280 440 600 +\end{verbatim} +\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. + + + +\index{matrices|)}\index{arrays|)} + +\section{Factors}\label{sec:calc:factors} +\index{factors|(} +\index{categorical variables|see{factors}}\qRclass{factor} +Factors are used to indicate categories, most frequently the factors describing the treatments in an experiment, or categories in a survey. They can be created either from numerical or character vectors. The different possible values are called \emph{levels}. Normal factors created with \Rfunction{factor()} are unordered or categorical. \Rlang also supports ordered factors that can be created with function \Rfunction{ordered()}.\index{factors!ordered} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"control"}\hlstd{,} \hlstr{"treated"}\hlstd{)} +\hlstd{my.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.vector)} +\hlstd{my.factor} +\end{alltt} +\begin{verbatim} +## [1] treated treated control control control treated +## Levels: control treated +\end{verbatim} +\begin{alltt} +\hlstd{my.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{= my.vector,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{))} +\hlstd{my.factor} +\end{alltt} +\begin{verbatim} +## [1] treated treated control control control treated +## Levels: treated control +\end{verbatim} +\end{kframe} +\end{knitrout} + +The\index{factors!labels}\index{factors!levels} labels (``names'') of the levels can be set when the factor is created. In this case, when calling \Rfunction{factor()}, parameters \code{levels} and \code{labels} should both be passed a vector as argument, with levels and matching labels in the same position in the two vectors. 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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.vector} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{0}\hlstd{,} \hlnum{1}\hlstd{)} +\hlstd{my.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwc{x} \hlstd{= my.vector,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{0}\hlstd{),} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"treated"}\hlstd{,} \hlstr{"control"}\hlstd{))} +\hlstd{my.factor} +\end{alltt} +\begin{verbatim} +## [1] treated treated control control control treated +## Levels: treated control +\end{verbatim} +\end{kframe} +\end{knitrout} + +It is always preferable to use meaningful labels for levels, although it is also possible to use numbers. + +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 for parameter \code{x}. We use indexing with a test returning a logical vector to extract all ``controls.'' We use function \Rfunction{levels()} to look at the levels of the factors. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{levels}\hlstd{(my.factor)} +\end{alltt} +\begin{verbatim} +## [1] "treated" "control" +\end{verbatim} +\begin{alltt} +\hlstd{control.factor} \hlkwb{<-} \hlstd{my.factor[my.factor} \hlopt{==} \hlstr{"control"}\hlstd{]} +\hlstd{control.factor} +\end{alltt} +\begin{verbatim} +## [1] control control control +## Levels: treated control +\end{verbatim} +\begin{alltt} +\hlstd{control.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(control.factor)} +\hlstd{control.factor} +\end{alltt} +\begin{verbatim} +## [1] control control control +## Levels: control +\end{verbatim} +\end{kframe} +\end{knitrout} + +It can be seen above that subsetting does not drop unused factor levels, and that \code{factor()} can be used to explicitly drop the unused factor levels.\index{factors!drop unused levels} + +\begin{explainbox} +When the pattern of levels is regular, it is possible to use function \Rfunction{gl()} to \emph{generate levels} in a factor. Nowadays, it is more 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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{gl}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] A A A A A B B B B B +## Levels: A B +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +Converting factors into numbers is not intuitive, even in the case where a factor was created from a \code{numeric} vector. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.vector2} \hlkwb{<-} \hlkwd{rep}\hlstd{(}\hlnum{3}\hlopt{:}\hlnum{5}\hlstd{,} \hlnum{4}\hlstd{)} +\hlstd{my.vector2} +\end{alltt} +\begin{verbatim} +## [1] 3 4 5 3 4 5 3 4 5 3 4 5 +\end{verbatim} +\begin{alltt} +\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.vector2)} +\hlstd{my.factor2} +\end{alltt} +\begin{verbatim} +## [1] 3 4 5 3 4 5 3 4 5 3 4 5 +## Levels: 3 4 5 +\end{verbatim} +\begin{alltt} +\hlkwd{as.numeric}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 1 2 3 1 2 3 1 2 3 +\end{verbatim} +\begin{alltt} +\hlkwd{as.numeric}\hlstd{(}\hlkwd{as.character}\hlstd{(my.factor2))} +\end{alltt} +\begin{verbatim} +## [1] 3 4 5 3 4 5 3 4 5 3 4 5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +\textbf{Why is a double conversion needed?}\index{factors!convert to numeric} Internally, factor levels are stored as running integers starting from one, and those are the numbers 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. If these character strings represent numbers, they can be converted, in a second step, using \Rfunction{as.numeric()} into the original numeric values. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{class}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "factor" +\end{verbatim} +\begin{alltt} +\hlkwd{mode}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "numeric" +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\begin{playground} +Create a factor with levels labeled with words. Create another factor with the levels labeled with the same words, but ordered differently. After this convert both factors to numeric vectors using \Rfunction{as.numeric()}. Explain why the two numeric vectors differ or not from each other. +\end{playground} + +Factors are very important in \Rlang. In contrast to other statistical software in which the role of a variable is set when defining a model to be fitted or when setting up a test, in \Rlang, models are specified exactly in the same way for ANOVA and regression analysis, both as \emph{linear models}. The type of model that is fitted is decided by whether the explanatory variable is a factor (giving ANOVA) or a numerical variable (giving regression). This makes a lot of sense, because in most cases, considering an explanatory variable as categorical or not, depends on the design of the experiment or survey, and in other words, is a property of the data and the experiment or survey that gave origin to them, rather than of the data analysis. + +The order of the levels in a \code{factor} does not affect simple calculations or the values plotted, but it does affect how the output is printed, the order of the levels in the scales of plots, and in some cases the contrasts in significance tests. The default ordering is alphabetical, and is established at the time a factor is created. Consequently, rather frequently the default ordering of levels is not the one needed. As shown above, parameter \code{levels} in the constructor makes it possible to set the order of the levels. It is also possible to change the ordering of an existing factor. + +\begin{explainbox} +\textbf{Renaming factor levels.}\index{factors!rename levels} The most direct way is using \Rfunction{levels()<-} as shown below, but it is also possible to use \Rfunction{factor()}. The difference is that \code{factor()} drops the unused levels and \code{levels()} only renames existing levels, all of them by position. (Although we here use \code{character} strings that are only one character long, longer strings can be set as labels in exactly the same way. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.factor1} \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{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] A A A F F F B B B Z Z Z +## Levels: A F B Z +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(my.factor1)} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"d"}\hlstd{)} +\hlstd{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] a a a b b b c c c d d d +## Levels: a b c d +\end{verbatim} +\end{kframe} +\end{knitrout} + +Or more safely by matching names---i.e., order in the list of replacement values is irrelevant. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.factor1} \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{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] A A A F F F B B B Z Z Z +## Levels: A F B Z +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(my.factor1)} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"a"} \hlstd{=} \hlstr{"A"}\hlstd{,} \hlstr{"d"} \hlstd{=} \hlstr{"Z"}\hlstd{,} \hlstr{"c"} \hlstd{=} \hlstr{"B"}\hlstd{,} \hlstr{"b"} \hlstd{=} \hlstr{"F"}\hlstd{)} +\hlstd{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] a a a b b b c c c d d d +## Levels: a d c b +\end{verbatim} +\end{kframe} +\end{knitrout} + +Or alternatively by position and replacing the labels of only some levels---i.e., rather unsafe. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.factor1} \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{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] A A A F F F B B B Z Z Z +## Levels: A F B Z +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{levels}\hlstd{(my.factor1)[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{)]} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"d"}\hlstd{)} +\hlstd{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] a a a F F F B B B d d d +## Levels: a F B d +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} + +\begin{explainbox} +\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} +\begin{alltt} +\hlstd{my.factor1} \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{my.factor1} +\end{alltt} +\begin{verbatim} +## [1] A A A F F F B B B Z Z Z +## Levels: A F B Z +\end{verbatim} +\begin{alltt} +\hlkwd{factor}\hlstd{(my.factor1,} + \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"Z"}\hlstd{),} + \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"C"}\hlstd{,} \hlstr{"C"}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] A A A C C C B B B C C C +## Levels: A B C +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\begin{explainbox} +\textbf{Reordering factor levels.}\index{factors!reorder levels} The simplest approach is to use \Rfunction{factor()} and its \code{levels} parameter. The only complication is that the names of the existing levels and those passed as an argument need to match, and typing mistakes can cause bugs. To avoid the error-prone step, in all examples except the first, we use \Rfunction{levels()} to retrieve the names of the levels from the factor itself. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{levels}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "3" "4" "5" +\end{verbatim} +\begin{alltt} +\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} \hlkwc{levels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"5"}\hlstd{,} \hlstr{"3"}\hlstd{,} \hlstr{"4"}\hlstd{))} +\hlkwd{levels}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "5" "3" "4" +\end{verbatim} +\begin{alltt} +\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} \hlkwc{levels} \hlstd{=} \hlkwd{rev}\hlstd{(}\hlkwd{levels}\hlstd{(my.factor2)))} +\hlkwd{levels}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "4" "3" "5" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} + \hlkwc{levels} \hlstd{=} \hlkwd{sort}\hlstd{(}\hlkwd{levels}\hlstd{(my.factor2),} \hlkwc{decreasing} \hlstd{=} \hlnum{TRUE}\hlstd{))} +\hlkwd{levels}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "5" "4" "3" +\end{verbatim} +\begin{alltt} +\hlstd{my.factor2} \hlkwb{<-} \hlkwd{factor}\hlstd{(my.factor2,} \hlkwc{levels} \hlstd{=} \hlkwd{levels}\hlstd{(my.factor2)[}\hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{3}\hlstd{)])} +\hlkwd{levels}\hlstd{(my.factor2)} +\end{alltt} +\begin{verbatim} +## [1] "4" "5" "3" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Reordering the levels of a factor based on summary quantities from data 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 functions can be supplied in its place. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.factor3} \hlkwb{<-} \hlkwd{gl}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{))} +\hlstd{my.vector3} \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{)} +\hlkwd{levels}\hlstd{(my.factor3)} +\end{alltt} +\begin{verbatim} +## [1] "A" "B" +\end{verbatim} +\begin{alltt} +\hlstd{my.factor3ord} \hlkwb{<-} \hlkwd{reorder}\hlstd{(my.factor3, my.vector3)} +\hlkwd{levels}\hlstd{(my.factor3ord)} +\end{alltt} +\begin{verbatim} +## [1] "B" "A" +\end{verbatim} +\begin{alltt} +\hlstd{my.factor3rev} \hlkwb{<-} \hlkwd{reorder}\hlstd{(my.factor3,} \hlopt{-}\hlstd{my.vector3)} \hlcom{# a simple trick} +\hlkwd{levels}\hlstd{(my.factor3rev)} +\end{alltt} +\begin{verbatim} +## [1] "A" "B" +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the last statement, using the unary negation operator, which is vectorized, allows us to easily reverse the ordering of the levels, while still using the default function, \code{mean()}, to summarize the data. + +\end{explainbox} + +\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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# gl() keeps order of levels} +\hlstd{my.factor4} \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{my.factor4} +\hlkwd{as.integer}\hlstd{(my.factor4)} +\hlcom{# factor() orders levels alphabetically} +\hlstd{my.factor5} \hlkwb{<-} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"F"}\hlstd{,} \hlstr{"B"}\hlstd{,} \hlstr{"Z"}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlnum{3}\hlstd{,}\hlnum{4}\hlstd{)))} +\hlstd{my.factor5} +\hlkwd{as.integer}\hlstd{(my.factor5)} +\hlkwd{levels}\hlstd{(my.factor5)[}\hlkwd{as.integer}\hlstd{(my.factor5)]} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{sort}\hlstd{(my.factor4)} +\hlstd{my.factor4[}\hlkwd{order}\hlstd{(my.factor4)]} +\hlstd{my.factor4[}\hlkwd{order}\hlstd{(}\hlkwd{as.integer}\hlstd{(my.factor4))]} +\end{alltt} +\end{kframe} +\end{knitrout} + +Run the examples in the chunk above and work out why the results differ. +\end{advplayground} + + +\index{factors|)} + +\section{Lists}\label{sec:calc:lists} +\index{lists|(}\qRclass{list} +\emph{Lists'} main difference to other collections is, in \Rlang, that they can be heterogeneous. In \Rlang, the members of a list can be considered as following a sequence, and accessible through numerical indexes, the same as vectors. However, frequently members of a list are given names, and retrieved (indexed) through these names. Lists are created using function \Rfunction{list()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.list} \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{))} +\hlstd{a.list} +\end{alltt} +\begin{verbatim} +## $x +## [1] 1 2 3 4 5 6 +## +## $y +## [1] "a" +## +## $z +## [1] TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\subsection{Member extraction and subsetting} +Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{lists!member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.list}\hlopt{$}\hlstd{x} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.list[[}\hlstr{"x"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.list[[}\hlnum{1}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.list[}\hlstr{"x"}\hlstd{]} +\end{alltt} +\begin{verbatim} +## $x +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.list[}\hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## $x +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.list[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## $x +## [1] 1 2 3 4 5 6 +## +## $z +## [1] TRUE FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{try}\hlstd{(a.list[[}\hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{)]])} +\end{alltt} +\begin{verbatim} +## [1] 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +\emph{Lists}, as usually defined in languages like \Clang, are based on pointers stored at each node, and these pointers chain or link the different member nodes. 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. Of course, insertions and deletions in the middle of a list, whatever their implementation, alter (or \emph{invalidate}) any position-based indexes. +\end{explainbox} + +To investigate the returned values, function \Rfunction{str()} (\emph{structure}) is of help, especially when the lists have many members, as it formats lists more compactly than function \code{print()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{str}\hlstd{(a.list)} +\end{alltt} +\begin{verbatim} +## List of 3 +## $ x: int [1:6] 1 2 3 4 5 6 +## $ y: chr "a" +## $ z: logi [1:2] TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\index{lists!member extraction|)} + +\subsection{Adding and removing list members} +In other languages the two most common operations on lists are insertions and deletions.\index{lists!insert into}\index{lists!append to} In \Rlang, function \Rfunction{append()} can be used both to append elements at the end of a list and insert elements into the head or any position in the middle of a list. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{2L}\hlstd{)} +\hlstd{another.list} +\end{alltt} +\begin{verbatim} +## $x +## [1] 1 2 3 4 5 6 +## +## $y +## [1] "a" +## +## $yy +## [1] 1 2 3 4 5 6 7 8 9 10 +## +## $zz +## [1] "e" "d" "c" "b" "a" +## +## $z +## [1] TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +To 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} +\begin{alltt} +\hlstd{a.list}\hlopt{$}\hlstd{y} \hlkwb{<-} \hlkwa{NULL} +\hlstd{a.list} +\end{alltt} +\begin{verbatim} +## $x +## [1] 1 2 3 4 5 6 +## +## $z +## [1] TRUE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +Lists can be nested, i.e., lists of lists.\index{lists!nested} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"aa"}\hlstd{,} \hlstr{"aaa"}\hlstd{)} +\hlstd{b.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlstr{"bb"}\hlstd{)} +\hlstd{nested.list} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{A} \hlstd{= a.list,} \hlkwc{B} \hlstd{= b.list)} +\hlkwd{str}\hlstd{(nested.list)} +\end{alltt} +\begin{verbatim} +## List of 2 +## $ A:List of 3 +## ..$ : chr "a" +## ..$ : chr "aa" +## ..$ : chr "aaa" +## $ B:List of 2 +## ..$ : chr "b" +## ..$ : chr "bb" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox}\index{lists!structure} +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} +\begin{alltt} +\hlkwd{str}\hlstd{(nested.list,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## List of 2 +## $ A:List of 3 +## $ B:List of 2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} + +\subsection{Nested lists} +A nested\index{lists!nested} list can 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} +\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)} +\end{alltt} +\begin{verbatim} +## List of 2 +## $ A:List of 3 +## ..$ : chr "a" +## ..$ : chr "aa" +## ..$ : chr "aaa" +## $ B:List of 2 +## ..$ : chr "b" +## ..$ : chr "bb" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +The logic behind extraction of members of nested lists using indexing is the same as for simple lists, but applied recursively---e.g., \code{nested.list[[2]]} extracts the second member of the outermost list, which is another list. As, this is a list, its members can be extracted using again the extraction operator: \code{nested.list[[2]][[1]]}. It is important to remember that these concatenated extraction operations are written so that the leftmost operator is applied to the outermost list. The example given here uses the \Roperator{[[ ]]} operator, but the same logic applies to \Roperator{[ ]}. +\end{explainbox} + +\begin{playground} +What\index{lists!nested} do you expect each of the statements below to return? \emph{Before running the code}, predict what value and of which mode each statement will return. You may use implicit or explicit calls to \Rfunction{print()}, or calls to \Rfunction{str()} to visualize the structure of the different objects. + +% not handled correctly by knitr, works at console. +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\hlstd{nested.list[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} +\hlstd{nested.list[}\hlnum{1}\hlstd{]} +\hlstd{nested.list[[}\hlnum{1}\hlstd{]][}\hlnum{2}\hlstd{]} +\hlstd{nested.list[[}\hlnum{1}\hlstd{]][[}\hlnum{2}\hlstd{]]} +\hlstd{nested.list[}\hlnum{2}\hlstd{]} +\hlstd{nested.list[}\hlnum{2}\hlstd{][[}\hlnum{1}\hlstd{]]} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} + +Sometimes we need to flatten a list\index{lists!flattening}\index{lists!nested}, or a nested structure of lists within lists. Function \Rfunction{unlist()} is what should be normally used in such cases. + +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} +\begin{alltt} +\hlstd{c.vec} \hlkwb{<-} \hlkwd{unlist}\hlstd{(nested.list)} +\hlstd{c.vec} +\end{alltt} +\begin{verbatim} +## A1 A2 A3 B1 B2 +## "a" "aa" "aaa" "b" "bb" +\end{verbatim} +\begin{alltt} +\hlkwd{is.list}\hlstd{(nested.list)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.list}\hlstd{(c.vec)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{mode}\hlstd{(nested.list)} +\end{alltt} +\begin{verbatim} +## [1] "list" +\end{verbatim} +\begin{alltt} +\hlkwd{mode}\hlstd{(c.vec)} +\end{alltt} +\begin{verbatim} +## [1] "character" +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(nested.list)} +\end{alltt} +\begin{verbatim} +## [1] "A" "B" +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(c.vec)} +\end{alltt} +\begin{verbatim} +## [1] "A1" "A2" "A3" "B1" "B2" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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 are based on the names of list elements when available, while 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} +\begin{alltt} +\hlkwd{str}\hlstd{(c.vec)} +\end{alltt} +\begin{verbatim} +## Named chr [1:5] "a" "aa" "aaa" "b" "bb" +## - attr(*, "names")= chr [1:5] "A1" "A2" "A3" "B1" ... +\end{verbatim} +\begin{alltt} +\hlstd{c.vec[}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## A2 +## "aa" +\end{verbatim} +\begin{alltt} +\hlstd{c.vec[}\hlstr{"A2"}\hlstd{]} +\end{alltt} +\begin{verbatim} +## A2 +## "aa" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{unname}\hlstd{(c.vec)} +\end{alltt} +\begin{verbatim} +## [1] "a" "aa" "aaa" "b" "bb" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Function \Rfunction{unlist()}\index{lists!convert into vector} has two additional parameters, with default argument values, which we did not modify in the example above. These parameters are \code{recursive} and \code{use.names}, both of them expecting a \code{logical} value as an argument. Modify the statement \code{c.vec <- unlist(c.list)}, by passing \code{FALSE} as an argument to these two parameters, in turn, and in each case, study the value returned and how it differs with respect to the one obtained above. +\end{playground} + + +\index{lists|)} + +\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. They are created with 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}. As the expectation is 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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{))} +\hlstd{a.df} +\end{alltt} +\begin{verbatim} +## x y z +## 1 1 a TRUE +## 2 2 a FALSE +## 3 3 a TRUE +## 4 4 a FALSE +## 5 5 a TRUE +## 6 6 a FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{str}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## 'data.frame': 6 obs. of 3 variables: +## $ x: int 1 2 3 4 5 6 +## $ y: Factor w/ 1 level "a": 1 1 1 1 1 1 +## $ z: logi TRUE FALSE TRUE FALSE TRUE FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] "data.frame" +\end{verbatim} +\begin{alltt} +\hlkwd{mode}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] "list" +\end{verbatim} +\begin{alltt} +\hlkwd{is.data.frame}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is.list}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +Indexing of data frames is similar to that of the underlying list, but not exactly equivalent. We can index with operator \Roperator{[[]]} to extract individual variables, thought of being the columns in a matrix-like list or ``worksheet.'' + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df}\hlopt{$}\hlstd{x} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.df[[}\hlstr{"x"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlstd{a.df[[}\hlnum{1}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] "data.frame" +\end{verbatim} +\end{kframe} +\end{knitrout} + +With function \Rfunction{class()} we can query the class of an \Rlang object (see section \ref{sec:rlang:mode} on page \pageref{sec:rlang:mode}). As we saw in the two previous chunks, \code{list} and \code{data.frame} objects belong to two different classes. However, their relationship is based on a hierarchy of classes. We say that class \Rclass{data.frame} is derived from class \code{list}. Consequently, data frames inherit the methods and characteristics of lists, as long as they have not been hidden by new ones defined for data frames. + +In the same way as with vectors, we can add members to lists and data frames. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df}\hlopt{$}\hlstd{x2} \hlkwb{<-} \hlnum{6}\hlopt{:}\hlnum{1} +\hlstd{a.df}\hlopt{$}\hlstd{x3} \hlkwb{<-} \hlstr{"b"} +\hlkwd{str}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## 'data.frame': 6 obs. of 5 variables: +## $ x : int 1 2 3 4 5 6 +## $ y : Factor w/ 1 level "a": 1 1 1 1 1 1 +## $ z : logi TRUE FALSE TRUE FALSE TRUE FALSE +## $ x2: int 6 5 4 3 2 1 +## $ x3: chr "b" "b" "b" "b" ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +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 variables (columns), they are required to be vectors or factors of the same length. In the case of lists, there is no such requirement, and recycling never takes place when adding a node. 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} +\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)} +\end{alltt} +\begin{verbatim} +## List of 3 +## $ x: int [1:6] 1 2 3 4 5 6 +## $ y: chr "a" +## $ z: logi [1:2] TRUE FALSE +\end{verbatim} +\begin{alltt} +\hlstd{a.ls}\hlopt{$}\hlstd{x2} \hlkwb{<-} \hlnum{6}\hlopt{:}\hlnum{1} +\hlstd{a.ls}\hlopt{$}\hlstd{x3} \hlkwb{<-} \hlstr{"b"} +\hlkwd{str}\hlstd{(a.ls)} +\end{alltt} +\begin{verbatim} +## List of 5 +## $ x : int [1:6] 1 2 3 4 5 6 +## $ y : chr "a" +## $ z : logi [1:2] TRUE FALSE +## $ x2: int [1:6] 6 5 4 3 2 1 +## $ x3: chr "b" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Data frames are extremely important to anyone analyzing or plotting data using \Rlang. One can think of data frames as tightly structured work-sheets, or as lists. As you may have guessed from the examples earlier in this section, there are several different ways of accessing columns, rows, and individual observations stored in a data frame. The columns can be treated as members in a list, and can be accessed both by name or index (position). When accessed by name, using \Roperator{\$} or double square brackets, a single column is returned as a vector or factor. In contrast to lists, data frames are always ``rectangular'' and for this reason the values stored can also be accessed in a way similar to how elements in a matrix are accessed, using two indexes. As we saw for vectors, indexes can be vectors of integer numbers or vectors of logical values. For columns they can, in addition, be vectors of character strings matching the names of the columns. When using indexes it is extremely important to remember that the indexes are always given \textbf{row first}. + +\begin{explainbox} +Indexing of data frames can in all cases be done as if they were lists, which is preferable, as it ensures compatibility with regular \Rlang lists and with newer implementations of data-frame-like structures like those defined in package \pkgname{tibble}. Using this approach, extracting two values from the second and third positions in the first column of \code{a.df} is done as follows, using numerical indexes. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df[[}\hlnum{1}\hlstd{]][}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 2 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Or using the column name. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df[[}\hlstr{"x"}\hlstd{]][}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 2 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The less portable, matrix-like indexing is done as follows, with the first index indicating rows and the second one indicating columns. This notation allows simultaneous extraction from multiple columns, which is not possible with lists. The value returned is a ``smaller'' data frame. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} +\end{alltt} +\begin{verbatim} +## x y +## 2 2 a +## 3 3 a +\end{verbatim} +\end{kframe} +\end{knitrout} + +If the length of the column indexing vector is one, the returned value is a vector, which is not consistent with the previous example which returned a data frame. This is not only surprising in everyday use, but can be the source of bugs when coding algorithms in which the length of the second index vector cannot be guaranteed to be always more than one. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df[}\hlnum{2}\hlopt{:}\hlnum{3}\hlstd{,} \hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 2 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In contrast, indexing of tibbles---defined in package \pkgname{tibble}---is always consistent, never returning a vector, even when the vector used to extract columns is of length one (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble} for details on the differences between data frames and tibbles). +\end{explainbox} + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# first column, a.df[[1]] preferred} +\hlstd{a.df[ ,} \hlnum{1}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlcom{# first column, a.df[["x"]] or a.df$x preferred} +\hlstd{a.df[ ,} \hlstr{"x"}\hlstd{]} +\end{alltt} +\begin{verbatim} +## [1] 1 2 3 4 5 6 +\end{verbatim} +\begin{alltt} +\hlcom{# first row} +\hlstd{a.df[}\hlnum{1}\hlstd{, ]} +\end{alltt} +\begin{verbatim} +## x y z x2 x3 +## 1 1 a TRUE 6 b +\end{verbatim} +\begin{alltt} +\hlcom{# first two rows of the third and fourth columns} +\hlstd{a.df[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## z x2 +## 1 TRUE 6 +## 2 FALSE 5 +\end{verbatim} +\begin{alltt} +\hlcom{# the rows for which z is true} +\hlstd{a.df[a.df}\hlopt{$}\hlstd{z , ]} +\end{alltt} +\begin{verbatim} +## x y z x2 x3 +## 1 1 a TRUE 6 b +## 3 3 a TRUE 4 b +## 5 5 a TRUE 2 b +\end{verbatim} +\begin{alltt} +\hlcom{# the rows for which x > 3 keeping all columns except the third one} +\hlstd{a.df[a.df}\hlopt{$}\hlstd{x} \hlopt{>} \hlnum{3}\hlstd{,} \hlopt{-}\hlnum{3}\hlstd{]} +\end{alltt} +\begin{verbatim} +## x y x2 x3 +## 4 4 a 3 b +## 5 5 a 2 b +## 6 6 a 1 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +As explained earlier for vectors (see section \ref{sec:calc:indexing} on page \pageref{sec:calc:indexing}), indexing can be present both on the right-hand side and left-hand side of an assignment. +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} +\begin{alltt} +\hlstd{a.df[}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{]} \hlkwb{<-} \hlnum{99} +\hlstd{a.df} +\end{alltt} +\begin{verbatim} +## x y z x2 x3 +## 1 99 a TRUE 6 b +## 2 2 a FALSE 5 b +## 3 3 a TRUE 4 b +## 4 4 a FALSE 3 b +## 5 5 a TRUE 2 b +## 6 6 a FALSE 1 b +\end{verbatim} +\begin{alltt} +\hlstd{a.df[ ,} \hlnum{1}\hlstd{]} \hlkwb{<-} \hlopt{-}\hlnum{99} +\hlstd{a.df} +\end{alltt} +\begin{verbatim} +## x y z x2 x3 +## 1 -99 a TRUE 6 b +## 2 -99 a FALSE 5 b +## 3 -99 a TRUE 4 b +## 4 -99 a FALSE 3 b +## 5 -99 a TRUE 2 b +## 6 -99 a FALSE 1 b +\end{verbatim} +\begin{alltt} +\hlstd{a.df[[}\hlstr{"x"}\hlstd{]]} \hlkwb{<-} \hlnum{123} +\hlstd{a.df} +\end{alltt} +\begin{verbatim} +## x y z x2 x3 +## 1 123 a TRUE 6 b +## 2 123 a FALSE 5 b +## 3 123 a TRUE 4 b +## 4 123 a FALSE 3 b +## 5 123 a TRUE 2 b +## 6 123 a FALSE 1 b +\end{verbatim} +\begin{alltt} +\hlstd{a.df[}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{]} \hlkwb{<-} \hlstd{a.df[}\hlnum{6}\hlstd{,} \hlnum{4}\hlstd{]} +\hlstd{a.df} +\end{alltt} +\begin{verbatim} +## x y z x2 x3 +## 1 1 a TRUE 6 b +## 2 123 a FALSE 5 b +## 3 123 a TRUE 4 b +## 4 123 a FALSE 3 b +## 5 123 a TRUE 2 b +## 6 123 a FALSE 1 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +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} +\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{]]} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\begin{alltt} +\hlstd{a.var} \hlkwb{<-} \hlstr{"abcd"} +\hlstd{x.list[[a.var]]} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{x.list}\hlopt{$}\hlstd{abcd} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\begin{alltt} +\hlstd{x.list}\hlopt{$}\hlstd{ab} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\begin{alltt} +\hlstd{x.list}\hlopt{$}\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Both in the case of lists and data frames, when using double square brackets, an exact match is required between the name in the object and the name used for indexing. In contrast, with \Roperator{\$}, any unambiguous partial match will be accepted. For interactive use, partial matching is helpful in reducing typing. However, in scripts, and especially \Rlang code in packages, it is best to avoid the use of \Roperator{\$} as partial matching to a wrong variable present at a later time, e.g., when someone else revises the script, can lead to very difficult-to-diagnose errors. In addition, as \Roperator{\$} is implemented by first attempting a match to the name and then calling \Roperator{[[]]}, using \Roperator{\$} for indexing can result in slightly slower performance compared to using \Roperator{[[]]}. It is possible to set an \Rlang option so that partial matching triggers a warning, which can be very useful when debugging. +\end{warningbox} + +\subsection{Operating within data frames}\label{sec:calc:df:with} +\index{data frames!operating within} +When\index{data frames!subsetting}\index{data frames!``filtering rows''} the names of data frames are long, complex conditions become awkward to write using indexing---i.e., subscripts. In such cases \Rfunction{subset()} is handy because evaluation is done in the ``environment'' of the data frame, i.e., the names of the columns are recognized if entered directly when writing the condition. Function \Rfunction{subset()} ``filters'' rows, usually corresponding to observations or experimental units. The condition is computed for each row, and if it returns \code{TRUE}, the row is included in the returned data frame, and excluded if \code{FALSE}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\begin{verbatim} +## x y z +## 4 4 a FALSE +## 5 5 a TRUE +## 6 6 a FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +What is the behavior of \code{subset()} when the condition is \code{NA}? Find the answer by writing code to test this, for a case where tests for different rows return \code{NA}, \code{TRUE} and \code{FALSE}. +\end{playground} + +When calling functions that return a vector, data frame, or other structure, the square brackets 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} +\begin{alltt} +\hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)[ ,} \hlopt{-}\hlnum{3}\hlstd{]} +\end{alltt} +\begin{verbatim} +## x y +## 4 4 a +## 5 5 a +## 6 6 a +\end{verbatim} +\begin{alltt} +\hlkwd{subset}\hlstd{(a.df, x} \hlopt{>} \hlnum{3}\hlstd{)}\hlopt{$}\hlstd{x} +\end{alltt} +\begin{verbatim} +## [1] 4 5 6 +\end{verbatim} +\end{kframe} +\end{knitrout} + +None of the examples in the last three code chunks alter the original data frame \code{a.df}. We can store the returned value using a new name if we want to preserve \code{a.df} unchanged, or we can assign the result to \code{a.df}, deleting in the process, the previously stored value. +\begin{warningbox} + In the example above, the names in the expression passed as the second argument to \code{subset()} are first searched within \code{ad.df} but if not found, searched 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 expression resulting in a returned data frame with no rows. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{A} \hlkwb{<-} \hlnum{1} +\hlkwd{subset}\hlstd{(a.df, A} \hlopt{>} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] x y z +## <0 rows> (or 0-length row.names) +\end{verbatim} +\end{kframe} +\end{knitrout} + +The use of \Rfunction{subset()} is convenient, but more prone to result in bugs compared to directly using the extraction operator \code{[]}. This same ``cost'' to achieving convenience applies to functions like \Rfunction{attach()} and \Rfunction{with()} described below. The longer time that a script is expected to be used, adapted and reused, the more careful we should be when using any of these functions. An alternative way of avoiding excessive verbosity is to keep the names of data frames short. +\end{warningbox} + +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} +\begin{alltt} +\hlstd{aa.df} \hlkwb{<-} \hlstd{a.df} +\hlkwd{colnames}\hlstd{(aa.df)} +\end{alltt} +\begin{verbatim} +## [1] "x" "y" "z" +\end{verbatim} +\begin{alltt} +\hlstd{aa.df[[}\hlstr{"y"}\hlstd{]]} \hlkwb{<-} \hlkwa{NULL} +\hlkwd{colnames}\hlstd{(aa.df)} +\end{alltt} +\begin{verbatim} +## [1] "x" "z" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +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, we need to find the numerical index of the column to delete. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.df[ ,} \hlopt{-}\hlkwd{which}\hlstd{(}\hlkwd{colnames}\hlstd{(a.df)} \hlopt{==} \hlstr{"y"}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## x z +## 1 1 TRUE +## 2 2 FALSE +## 3 3 TRUE +## 4 4 FALSE +## 5 5 TRUE +## 6 6 FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} +Instead of using the equality test, we can use the operator \code{\%in\%} or function \code{grepl()} to delete multiple columns in a single statement. +\end{explainbox} + +\begin{playground} +In the previous code chunk we deleted the last column of the data frame \code{a.df}. +Here is an esoteric trick for you to first untangle how it changes the positions of columns and row, 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} +\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} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +\begin{warningbox} +Although in this last example we used numeric indexes to make it more interesting, in practice, especially in scripts or other code that will be reused, do use column or member names instead of positional indexes whenever possible. This makes code much more reliable, as changes elsewhere in the script could alter the order of columns and \emph{invalidate} numerical indexes. In addition, using meaningful names makes programmers' intentions easier to understand. +\end{warningbox} + +\begin{explainbox} +It is sometimes inconvenient to have to pre-pend the name of a \emph{container} such as a list or data frame to the name of each member variable being accessed. There are functions in \Rlang that allow us to change where \Rlang looks for the names of objects we include in a code statement. Here I describe the use of \Rscoping{attach()} and its matching \Rscoping{detach()}, and \Rscoping{with()} and \Rscoping{within()} to access members of a data frame. They can be used as well with lists and classes derived from \code{list}. + +As we can see below, when using a rather long name for a data frame, entering a simple calculation can easily result in a long and difficult to read statement. (Method \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} +\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{<-} + \hlstd{(my_data_frame.df}\hlopt{$}\hlstd{A} \hlopt{+} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{B)} \hlopt{/} \hlstd{my_data_frame.df}\hlopt{$}\hlstd{A} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B C +## 1 1 3 4.0 +## 2 2 3 2.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlkwa{NULL} +\hlkwd{attach}\hlstd{(my_data_frame.df)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# The following object is masked \_by\_ .GlobalEnv:\\\#\# \\\#\#\ \ \ \ A}}\begin{alltt} +\hlstd{my_data_frame.df}\hlopt{$}\hlstd{C} \hlkwb{<-} \hlstd{(A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A} +\hlkwd{detach}\hlstd{(my_data_frame.df)} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B C +## 1 1 3 4 +## 2 2 3 4 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, In this case, 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} +\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)} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B C +## 1 1 3 4.0 +## 2 2 3 2.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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)} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B C +## 1 1 3 4.0 +## 2 2 3 2.5 +\end{verbatim} +\end{kframe} +\end{knitrout} +In the example above, \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} +\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,} + \hlstd{\{C} \hlkwb{<-} \hlstd{(A} \hlopt{+} \hlstd{B)} \hlopt{/} \hlstd{A} + \hlstd{D} \hlkwb{<-} \hlstd{A} \hlopt{*} \hlstd{B} + \hlstd{E} \hlkwb{<-} \hlstd{A} \hlopt{/} \hlstd{B} \hlopt{+} \hlnum{1}\hlstd{\}} + \hlstd{)} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B E D C +## 1 1 3 1.333333 3 4.0 +## 2 2 3 1.666667 6 2.5 +\end{verbatim} +\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. +\end{explainbox} + +\subsection{Re-arranging columns and rows} +\index{data frames!ordering rows}\index{data frames!ordering columns} +The most direct way of changing the order of columns and/or rows in data frames (and matrices and arrays) is to use subscripting as described above. Once we know the original position and target position we can use numerical indexes on both right-hand side and left-hand side of an assignment. + +\begin{warningbox} +When using the extraction operator \Roperator{[]} on both the left-hand-side and right-hand-side to swap columns, the vectors or factors are swapped, while the names of the columns are not! The same applies to row names, which makes storing important information in them inconvenient and error prone. +\end{warningbox} + +To retain the correct naming after the column swap, we need to separately swap the names of the columns. +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B +## 1 1 3 +## 2 2 3 +\end{verbatim} +\begin{alltt} +\hlstd{my_data_frame.df[ ,} \hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlstd{my_data_frame.df[ ,} \hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## A B +## 1 3 1 +## 2 3 2 +\end{verbatim} +\begin{alltt} +\hlkwd{colnames}\hlstd{(my_data_frame.df)[}\hlnum{1}\hlopt{:}\hlnum{2}\hlstd{]} \hlkwb{<-} \hlkwd{colnames}\hlstd{(my_data_frame.df)[}\hlnum{2}\hlopt{:}\hlnum{1}\hlstd{]} +\hlkwd{head}\hlstd{(my_data_frame.df,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## B A +## 1 3 1 +## 2 3 2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Taking into account that \Rfunction{order()} returns the indexes needed to sort a vector (see page \pageref{box:vec:sort}), we can use \Rfunction{order()} to generate the indexes needed to sort either columns or rows of a data frame. When we want to sort rows, the argument to \Rfunction{order()} is usually a column of the data frame being arranged. However, any vector of suitable length, including the result of applying a function to one or more columns, can be passed as an argument to \Rfunction{order()}. + +\begin{playground}\index{data frames!ordering rows} +The first task to be completed is to sort a data frame based on the values in one column, using indexing and \Rfunction{order()}. Create a new data frame and with three numeric columns with three different haphazard sequences of values. Call these columns \code{A}, \code{B} and \code{C}. 1) Sort the rows of the data frame so that the values in \code{A} are in decreasing order. 2) Sort the rows of the data frame according to increasing values of the sum of \code{A} and \code{B} without adding a new column to the data frame or storing the vector of sums in a variable. In other words, do the sorting based on sums calculated on the fly. +\end{playground} + +\begin{advplayground}\index{data frames!ordering rows} +Repeat the tasks in the playground immediately above but using factors instead of numeric vectors as columns in the data frame. Hint: revisit the exercise on page \pageref{calc:ADVPG:order:sort} were the use of \Rfunction{order()} on factors is described. +\end{advplayground} + +\index{data frames|)} + + + +\section{Attributes of R objects}\label{sec:calc:attributes} +\index{attributes|(} + +\Rlang objects can have attributes. Attributes are normally used to store ancillary data. They are used by \Rlang itself to store things like column names in data frames and labels of factor levels. All these attributes are visible to user code, and user code can read and write objects' attributes. Attribute \code{"comment"} is meant to be set by users---e.g., to store metadata together with data.\qRfunction{comment()}\qRfunction{comment()<-} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{comment}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\begin{alltt} +\hlkwd{comment}\hlstd{(a.df)} \hlkwb{<-} \hlstr{"this is stored as a comment"} +\hlkwd{comment}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] "this is stored as a comment" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Methods like \Rfunction{names()}, \Rfunction{dim()} or \Rfunction{levels()} return values retrieved from attributes stored in \Rlang objects, and methods like \Rfunction{names()<-}, \Rfunction{dim()<-} or \Rfunction{levels()<-} set (or unset with \code{NULL}) the value of the respective attributes. Specific query and set methods do not exist for all attributes. Methods \Rfunction{attr()}, \Rfunction{attr()<-} and \Rfunction{attributes()} can be used with any attribute. In addition, method \Rfunction{str()} displays all components of \Rlang objects including their attributes. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{names}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] "x" "y" "z" +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(a.df)} \hlkwb{<-} \hlkwd{toupper}\hlstd{(}\hlkwd{names}\hlstd{(a.df))} +\hlkwd{names}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## [1] "X" "Y" "Z" +\end{verbatim} +\begin{alltt} +\hlkwd{attr}\hlstd{(a.df,} \hlstr{"names"}\hlstd{)} \hlcom{# same as previous line} +\end{alltt} +\begin{verbatim} +## [1] "X" "Y" "Z" +\end{verbatim} +\begin{alltt} +\hlkwd{attr}\hlstd{(a.df,} \hlstr{"my.attribute"}\hlstd{)} \hlkwb{<-} \hlstr{"this is stored in my attribute"} +\hlkwd{attributes}\hlstd{(a.df)} +\end{alltt} +\begin{verbatim} +## $names +## [1] "X" "Y" "Z" +## +## $class +## [1] "data.frame" +## +## $row.names +## [1] 1 2 3 4 5 6 +## +## $comment +## [1] "this is stored as a comment" +## +## $my.attribute +## [1] "this is stored in my attribute" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +There is no restriction to the creation, setting, resetting and reading of attributes, but not all methods and operators that can be used to modify objects will preserve non-standard attributes. So, using private attributes is a double-edged sword that usually is worthwhile considering only when designing a new class together with the corresponding methods for it. A good example of extensive use of class-specific attributes are the values returned by model fitting functions like \Rfunction{lm()} (see section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}). + +Even the class of S3 objects is stored as an attribute that is accessible as any other attribute---this is in contrast to the mode and atomic class of an object. Object-oriented programming in \Rlang in explained in section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{numbers} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlkwd{class}\hlstd{(numbers)} +\end{alltt} +\begin{verbatim} +## [1] "integer" +\end{verbatim} +\begin{alltt} +\hlkwd{attributes}\hlstd{(numbers)} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a.factor} \hlkwb{<-} \hlkwd{factor}\hlstd{(numbers)} +\hlkwd{class}\hlstd{(a.factor)} +\end{alltt} +\begin{verbatim} +## [1] "factor" +\end{verbatim} +\begin{alltt} +\hlkwd{attributes}\hlstd{(a.factor)} +\end{alltt} +\begin{verbatim} +## $levels +## [1] "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" +## +## $class +## [1] "factor" +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{warningbox} + + + +\index{attributes|)} + +\section{Saving and loading data} + +\subsection{Data sets in R and packages} +\index{data!loading data sets|(} +To be able to present more meaningful examples, we need some real data. Here we use \code{cars}, one of the many data sets included in base \Rpgrm. Function \Rfunction{data()} is used to load data objects that are included in \Rlang or contained in packages. It is also possible to import data saved in files with \textit{foreign} formats, defined by other software or commonly used for data exchange. Package \pkgname{foreign}, included in the \Rlang distribution, as well as contributed packages make available functions capable of reading and decoding various foreign formats. How to read or import ``foreign'' data is discussed in \Rlang documentation in \emph{R Data Import/Export}, and in this book, in chapter \ref{chap:R:data:io} starting on page \pageref{chap:R:data:io}. It is also good to keep in mind that in \Rlang, URLs (Uniform Resource Locators) are accepted as arguments to the \code{file} or \code{path} parameter of many functions (see section \ref{sec:files:remote} starting on page \pageref{sec:files:remote}). + +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} +\begin{alltt} +\hlkwd{data}\hlstd{(cars)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Once we have a data set available, the first step is usually to explore it, and we will do this with \code{cars} in section \ref{sec:calc:looking:at:data} on page \pageref{sec:calc:looking:at:data}. +\index{data!loading data sets|)} + +\subsection{.rda files}\label{sec:data:rda} + +By default, at the end of a session, the current workspace containing the results of your work is saved into a file called \code{.RData}. In addition to saving the whole workspace, it is possible to save one or more \Rlang objects present in the workspace to disk using the same file format (with file name tag \code{.rda} or \code{.Rda}). One or more objects, belonging to any mode or class can be saved into a single file using function \Rfunction{save()}. Reading the file restores all the saved objects into the current workspace with their original names. These files are portable across most \Rlang versions---i.e., old formats can be read and written by newer versions of R, although the newer, default format may be not readable with earlier \Rlang versions. Whether compression is used, and whether the ``binary'' data is encoded into ASCII characters, allowing maximum portability at the expense of increased size can be controlled by passing suitable arguments to \Rfunction{save()}. + +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} +\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} +\end{alltt} +\begin{verbatim} +## x y +## 1 1 5 +## 2 2 4 +## 3 3 3 +## 4 4 2 +## 5 5 1 +\end{verbatim} +\begin{alltt} +\hlkwd{save}\hlstd{(my.df,} \hlkwc{file} \hlstd{=} \hlstr{"my-df.rda"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{rm}\hlstd{(my.df)} +\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"my.df"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## character(0) +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{load}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"my-df.rda"}\hlstd{)} +\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"my.df"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "my.df" +\end{verbatim} +\begin{alltt} +\hlstd{my.df} +\end{alltt} +\begin{verbatim} +## x y +## 1 1 5 +## 2 2 4 +## 3 3 3 +## 4 4 2 +## 5 5 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The default format used is binary and compressed, which results in smaller files. + +\begin{playground} +In the example above, only one object was saved, but one can simply give the names of additional objects as arguments. Just try saving more than one data frame to the same file. Then the data frames plus a few vectors. After creating each file, clear the workspace and then restore from the file the objects you saved. +\end{playground} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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} +\end{kframe} +\end{knitrout} + +\begin{playground} +Practice using different patterns with \Rfunction{ls()}. You do not need to save the objects to a file. Just have a look at the list of object names returned. +\end{playground} + +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} +\begin{alltt} +\hlkwd{unlink}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"my-df.rda"}\hlstd{,} \hlstr{"my-df1.rda"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\subsection{.rds files}\label{sec:data:rds} + +The RDS format can be used to save individual objects instead of multiple objects (usually using file name tag \code{.rds}). They are read and saved with functions \Rfunction{readRDS()} and \Rfunction{saveRDS()}, respectively. +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} +\begin{alltt} +\hlkwd{saveRDS}\hlstd{(my.df,} \hlstr{"my-df.rds"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{readRDS}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## x y +## 1 1 5 +## 2 2 4 +## 3 3 3 +## 4 4 2 +## 5 5 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{my_read.df} \hlkwb{<-} \hlkwd{readRDS}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} +\hlkwd{identical}\hlstd{(my.df, my_read.df)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{unlink}\hlstd{(}\hlstr{"my-df.rds"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\section{Looking at data}\label{sec:calc:looking:at:data} +\index{data!exploration at the R console|(} +There are several functions in \Rlang that let us obtain different views into objects. Function \Rfunction{print()} is useful for small data sets, or objects. Especially in the case of large data frames, we need to explore them step by step. In the case of named components, we can obtain their names with \Rfunction{colnames()}, \Rfunction{rownames()}, and \Rfunction{names()}. If a data frame contains many rows of observations, \Rfunction{head()} and \Rfunction{tail()} allow us to easily restrict the number of rows printed. Functions \Rfunction{nrow()} and \Rfunction{ncol()} return the number of rows and columns in the data frame (also applicable to matrices but not to lists or vectors where we use \Rfunction{length()}). As mentioned earlier, function \Rfunction{str()} concisely displays the structure of \Rlang objects. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{class}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## [1] "data.frame" +\end{verbatim} +\begin{alltt} +\hlkwd{nrow}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## [1] 50 +\end{verbatim} +\begin{alltt} +\hlkwd{ncol}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## [1] 2 +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## [1] "speed" "dist" +\end{verbatim} +\begin{alltt} +\hlkwd{head}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## speed dist +## 1 4 2 +## 2 4 10 +## 3 7 4 +## 4 7 22 +## 5 8 16 +## 6 9 10 +\end{verbatim} +\begin{alltt} +\hlkwd{tail}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## speed dist +## 45 23 54 +## 46 24 70 +## 47 24 92 +## 48 24 93 +## 49 24 120 +## 50 25 85 +\end{verbatim} +\begin{alltt} +\hlkwd{str}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## 'data.frame': 50 obs. of 2 variables: +## $ speed: num 4 4 7 7 8 9 10 10 10 11 ... +## $ dist : num 2 10 4 22 16 10 18 26 34 17 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Look up the help pages for \Rfunction{head()} and \Rfunction{tail()}, and edit the code above to print only the first two lines, or only the last three lines of \code{cars}, respectively. +\end{playground} + +The different columns of a data frame can be factors or vectors of various modes (e.g., numeric, logical, character, etc.) (see section \ref{sec:R:data:frames} on page \pageref{sec:R:data:frames}). +To explore the mode of the columns of \code{cars}, we can use an \emph{apply} function. In the present case, we want to apply function \code{class()} to each column of the data frame \code{cars}. (Apply functions are described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}.) +\qRloop{sapply} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= cars,} \hlkwc{FUN} \hlstd{= class)} +\end{alltt} +\begin{verbatim} +## speed dist +## "numeric" "numeric" +\end{verbatim} +\end{kframe} +\end{knitrout} + +The statement above returns a vector of character strings, with the mode of each column. Each element of the vector is named according to the name of the corresponding ``column'' in the data frame. For this same statement to be used with any other data frame or list, we need only to substitute the name of the object, the argument to the first parameter called \code{X}, to the one of current interest. + +\begin{playground} +Data set \code{airquality} contains data from air quality measurements in New York, and, being included in the \Rpgrm distribution, can be loaded with \code{data(airquality)}. Load it, and repeat the steps above, to learn what variables (columns) it contains, their classes, the number of rows, etc. +\end{playground} + +Function \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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{summary}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## speed dist +## Min. : 4.0 Min. : 2.00 +## 1st Qu.:12.0 1st Qu.: 26.00 +## Median :15.0 Median : 36.00 +## Mean :15.4 Mean : 42.98 +## 3rd Qu.:19.0 3rd Qu.: 56.00 +## Max. :25.0 Max. :120.00 +\end{verbatim} +\begin{alltt} +\hlkwd{sapply}\hlstd{(cars, range)} +\end{alltt} +\begin{verbatim} +## speed dist +## [1,] 4 2 +## [2,] 25 120 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +Obtain the summary of \code{airquality} with function \Rfunction{summary()}, but in addition, write code with an \emph{apply} function to count the number of non-missing values in each column. Hint: using \code{sum()} on a \code{logical} vector returns the count of \code{TRUE} values as \code{TRUE}, and \code{FALSE} are transparently converted into \code{numeric} 1 and 0, respectively, when \code{logical} values are used in arithmetic expressions. +\end{advplayground} + +\section{Plotting} +\index{plots!base R graphics} +The base-\Rlang generic method \Rfunction{plot()} can be used to plot different data. It is a generic method that has specializations suitable for different kinds of objects (see section \ref{sec:script:objects:classes:methods} on page \pageref{sec:script:objects:classes:methods} for a brief introduction to objects, classes and methods). In this section we only very briefly demonstrate the use of the most common base-\Rlang graphics functions. They are well described in the book \citebooktitle{Murrell2019} \autocite{Murrell2019}. We will not describe the Lattice (based on S's Trellis) approach to plotting \autocite{Sarkar2008}. Instead we describe in detail the use of the \emph{grammar of graphics} and plotting with package \ggplot in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}. + +It is possible to pass two variables (here columns from a data frame) directly as arguments to the \code{x} and \code{y} parameters of \Rfunction{plot()}. + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-plot-1-1} + +} + + + +\end{knitrout} + +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} the name of the 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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{plot}\hlstd{(dist} \hlopt{~} \hlstd{speed,} \hlkwc{data} \hlstd{= cars)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-plot-2-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-plot-3-1} + +} + + + +\end{knitrout} + +Method \Rfunction{plot()} and variants defined in \Rlang, when used for plotting return their graphical output to a \emph{graphical output device}. In \Rlang, graphical devices are very frequently not real physical devices like a printer, but virtual devices implemented fully in software that translate the plotting commands into a specific graphical file format. Several different graphical devices are available in \Rlang and they differ in the kind of output they produce: raster files (e.g., TIFF, PNG and JPEG formats), vector graphics files (e.g., SVG, EPS and PDF) or output to a physical device like a window in the screen of a computer. Additional devices are available through contributed \Rlang packages. + +Devices follow the paradigm of ON and OFF switches. Some devices producing a file as output, save this output only when the device is closed. 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} +\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)} +\hlkwd{plot}\hlstd{(weight} \hlopt{~} \hlstd{feed,} \hlkwc{data} \hlstd{= chickwts)} +\hlkwd{dev.off}\hlstd{()} +\end{alltt} +\begin{verbatim} +## cairo_pdf +## 2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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)} +\hlkwd{dev.off}\hlstd{()} +\end{alltt} +\begin{verbatim} +## cairo_pdf +## 2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +When \Rlang is used interactively, a device to output the graphical output to a display device is opened automatically. The name of the device may depend on the operating system used (e.g., \osname{MS-Windows} or \osname{Linux}) or an IDE---e.g., \RStudio defines its own graphic device for output to the Plots pane of its user interface. + +\begin{warningbox} +This approach of direct output to a device, and addition of plot components as shown below directly on the output device itself, is not the only approach available. As we will see in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}, an alternative approach is to build a \emph{plot object} as a list of member components that is later rendered as a whole on a graphical device by calling \code{print()} once. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\hlkwd{text}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{110}\hlstd{,} \hlkwc{labels} \hlstd{=} \hlstr{"some texts to be added"}\hlstd{)} +\hlkwd{dev.off}\hlstd{()} +\end{alltt} +\begin{verbatim} +## cairo_pdf +## 2 +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{warningbox} + +\section{Further reading} +For\index{further reading!using the R language} further reading on the aspects of \Rlang discussed in the current chapter, + I suggest the books \citetitle{Peng2016} (\citeauthor{Peng2016}) and \citetitle{Matloff2011} (\citeauthor{Matloff2011}). + + + +\index{data!exploration at the R console|)} + + + + + +% !Rnw root = appendix.main.Rnw + + + +\chapter{The R language: ``Paragraphs'' and ``essays''}\label{chap:R:scripts} +\index{scripts} + +\begin{VF} +An \Rlang script is simply a text file containing (almost) the same commands that you would enter on the command line of \Rlang. + +\VA{Jim Lemon}{\emph{Kickstarting R}}\nocite{LemonND} +\end{VF} + +%\dictum[\href{https://cran.r-project.org/doc/contrib/Lemon-kickstart/}{Kickstarting R}]{An R script is simply a text file containing (almost) the same commands that you would enter on the command line of R.}\vskip2ex + +\section{Aims of this chapter} + +For those who have mainly used graphical user interfaces, understanding why and when scripts can help in communicating a certain data analysis protocol can be revelatory. As soon as a data analysis stops being trivial, describing the steps followed through a system of menus and dialogue boxes becomes extremely tedious. + +Moreover, graphical user interfaces tend to be difficult to extend or improve in a way that keeps step-by-step instructions valid across program versions and operating systems. + +Many times, exactly the same sequence of commands needs to be applied to different data sets, and scripts make both implementation and validation of such a requirement easy. + +In this chapter, I will walk you through the use of \Rpgrm scripts, starting from an extremely simple script. + +\section{Writing scripts} + +In \Rlang language, the closest match to a natural language essay is a script. A script is built from multiple interconnected code statements needed to complete a given task. Simple statements can be combined into compound statements, which are the equivalent of natural language paragraphs. Scripts can vary from simple scripts containing only a few code statements, to complex scripts containing hundreds of code statements. In the rest of the present section I discuss how to write readable and reliable scripts and how to use them. + +\subsection{What is a script?}\label{sec:script:what:is} +\index{scripts!definition} +A \textit{script} is a text file that contains (almost) the same commands that you would type at the console prompt. A true script is not, for example, an MS-Word file where you have pasted or typed some \Rlang commands. A script file has the following characteristics. +\begin{itemize} + \item The script is a text file. + \item The file contains valid \Rlang statements (including comments) and nothing else. + \item Comments start at a \code{\#} and end at the end of the line. + \item The \Rlang statements are in the file in the order that they must be executed. + \item \Rlang scripts have file names ending in \texttt{.r} or \texttt{.R}. +\end{itemize} + +It is good practice to write scripts so that they are self-contained. To make a script self-contained, one must include calls to \texttt{library()} to load the packages used, load or import data from files, perform the data analysis and display and/or save the results of the analysis. Such scripts can be used to apply the same analysis algorithm to other data and/or to reproduce the same analysis at a later time. Such scripts document all steps used for the analysis. + + + +\subsection{How do we use a script?}\label{sec:script:using} +\index{scripts!sourcing} + +A script can be ``sourced'' using function \Rfunction{source()}. If we have a text file called \texttt{my.first.script.r} containing the following text: +\begin{shaded} +\footnotesize +\begin{verbatim} +# this is my first R script +print(3 + 4) +\end{verbatim} +\end{shaded} + +and then source this file: + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{source}\hlstd{(}\hlstr{"my.first.script.r"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 7 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The results of executing the statements contained in the file will appear in the console. The commands themselves are not shown (by default the sourced file is not \emph{echoed} to the console) and the results will not be printed unless you include explicit \Rfunction{print()} commands in the script. This applies in many cases also to plots---e.g., a figure created with \Rfunction{ggplot()} needs to be printed if we want it to be included in the output when the script is run. Adding a redundant \Rfunction{print()} is harmless. + +From within \RStudio, if you have an \Rpgrm script open in the editor, there will be a ``source'' icon visible with an attached drop-down menu from which you can choose ``Source'' as described above, or ``Source with echo,'' or ``Source as local job'' for the script in the currently active editor tab. + +When a script is \emph{sourced}, the output can be saved to a text file instead of being shown in the console. It is also easy to call \Rpgrm with the \Rlang script file as an argument directly at the operating system shell or command-interpreter prompt---and obviously also from shell scripts. The next two chunks show commands entered at the OS shell command prompt rather than at the \Rlang command prompt. +\begin{shaded} +\footnotesize +\begin{verbatim} +> RScript my.first.script.r +\end{verbatim} +\end{shaded} + +You can open an operating system's \emph{shell} from the Tools menu in \RStudio, to run this command. The output will be printed to the shell console. If you would like to save the output to a file, use redirection using the operating system's syntax. +\begin{shaded} +\footnotesize +\begin{verbatim} +> RScript my.first.script.r > my.output.txt +\end{verbatim} +\end{shaded} + +Sourcing is very useful when the script is ready, however, while developing a script, or sometimes when testing things, one usually wants to run (or \emph{execute}) one or a few statements at a time. This can be done using the ``run'' button\footnote{If you use a different IDE or editor with an \Rlang mode, the details will vary, but a run command will be usually available.} after either positioning the cursor in the line to be executed, or selecting the text that one would like to run (the selected text can be part of a line, a whole line, or a group of lines, as long as it is syntactically valid). The key-shortcut Ctrl-Enter is equivalent to pressing the ``run'' button in \RStudio. + +\subsection{How to write a script}\label{sec:script:writing} +\index{scripts!writing} + +As with any type of writing, different approaches may be preferred by different \Rlang users. In general, the approach used, or mix of approaches, will also depend on how confident you are that the statements will work as expected---you already know the best approach vs.\ you are exploring different alternatives. +\begin{description} +\item[If one is very familiar with similar problems] One would just create a new text file and write the whole thing in the editor, and then test it. This is rather unusual. +\item[If one is moderately familiar with the problem] One would write the script as above, but testing it, step by step, as one is writing it. This is usually what I do. +\item[If one is mostly playing around] Then if one is using \RStudio, one can type statements at the console prompt. As you should know by now, everything you run at the console is saved to the ``History.'' In \RStudio, the History is displayed in its own pane, and in this pane one can select any previous statement(s) and by clicking on a single icon, copy and paste them to either the \Rlang console prompt, or the cursor position in the editor pane. In this way one can build a script by copying and pasting from the history to your script file, the bits that have worked as you wanted. +\end{description} + +\begin{playground} +By now you should be familiar enough with \Rlang to be able to write your own script. +\begin{enumerate} + \item Create a new \Rpgrm script (in \RStudio, from the File menu, ``+'' icon, or by typing ``Ctrl + Shift + N''). + \item Save the file as \texttt{my.second.script.r}. + \item Use the editor pane in \RStudio to type some \Rpgrm commands and comments. + \item \emph{Run} individual commands. + \item \emph{Source} the whole file. +\end{enumerate} +\end{playground} + +\subsection{The need to be understandable to people}\label{sec:script:readability} +\index{scripts!readability} + +When you write a script, it is either because you want to document what you have done or you want re-use the script at a later time. In either case, the script itself although still meaningful for the computer, could become very obscure to you, and even more to someone seeing it for the first time. This must be avoided by spending time and effort on the writing style. + +How does one achieve an understandable script or program? +\begin{itemize} + \item Avoid the unusual. People using a certain programming language tend to use some implicit or explicit rules of style---style includes \textit{indentation} of statements, \textit{capitalization} of variable and function names. As a minimum try to be consistent with yourself. + \item Use meaningful names for variables, and any other object. What is meaningful depends on the context. Depending on common use, a single letter may be more meaningful than a long word. However self-explanatory names are usually better: e.g., using \code{n.rows} and \code{n.cols} is much clearer than using \code{n1} and \code{n2} when dealing with a matrix of data. Probably \code{number.of.rows} and \code{number.of.columns} would make the script verbose, and take longer to type without gaining anything in return. + \item How to make the words visible in names: traditionally in \Rlang one would use dots to separate the words and use only lower case. Some years ago, it became possible to use underscores. The use of underscores is quite common nowadays because in some contexts it is ``safer'', as in some situations a dot may have a special meaning. What we call ``camel case'' is only infrequently used in \Rlang programming but is common in other languages like Pascal. An example of camel case is \code{NumCols}. +\end{itemize} + +\begin{playground} +Here is an example of bad style in a script. Read \href{https://google.github.io/styleguide/Rguide.xml}{Google's R Style Guide}%\footnote{This is just an example, similar, but not exactly the same style as the style I use myself.} +, 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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{2} \hlcom{# height} +\hlstd{b} \hlkwb{<-} \hlnum{4} \hlcom{# length} +\hlstd{C} \hlkwb{<-} + \hlstd{a} \hlopt{*} +\hlstd{b} +\hlstd{C} \hlkwb{->} \hlstd{variable} + \hlkwd{print}\hlstd{(} +\hlstr{"area: "}\hlstd{, variable} +\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +The points discussed above already help a lot. However, one can go further in achieving the goal of human readability by interspersing explanations and code ``chunks'' and using all the facilities of typesetting, even of formatted maths formulas and equations, within the listing of the script. Furthermore, by including the results of the calculations and the code itself in a typeset report built automatically, we can ensure that the results are indeed the result of running the code shown. This greatly contributes to data analysis reproducibility, which is becoming a widespread requirement for any data analysis both in academia and in industry. It is possible not only to typeset whole books like this one, but also whole data-based web sites with these tools. + +In the realm of programming, this approach is called literate programming\index{literate programming} and was first proposed by Donald Knuth \autocite{Knuth1984a} through his \pgrmname{WEB} system. In the case of \Rpgrm programming, the first support of literate programming was through \pkgname{Sweave}, which has been mostly superseded by \pkgname{knitr} \autocite{Xie2013}. This package supports the use of \langname{Markdown} or \LaTeX\index{Latex@\LaTeX}\ \autocite{Lamport1994} as the markup language for the textual contents and also formats and adds syntax highlighting to code chunks. \langname{Rmarkdown} is an extension to \langname{Markdown} that makes it easier to include \Rlang code in documents (see \url{http://rmarkdown.rstudio.com/}). It is the basis of \Rlang packages that support typesetting large and complex documents (\pkgname{bookdown}), web sites (\pkgname{blogdown}), package vignettes (\pkgname{pkgdown}) and slides for presentations \autocite{Xie2016,Xie2018}. The use of \pkgname{knitr} is very well integrated into the \RStudio IDE. + +This is not strictly an \Rlang programming subject, as it concerns programming in any language. On the other hand, this is an incredibly important skill to learn, but well described in other books and web sites cited in the previous paragraph. This whole book, including figures, has been generated using \pkgname{knitr} and the source code for the book is available through Bitbucket at \url{https://bitbucket.org/aphalo/learnr-book}. + +\subsection{Debugging scripts}\label{sec:script:debug} +\index{scripts!debugging} + +The use of the word \emph{bug} to describe a problem in computer hardware and software started in 1946 when a real bug, more precisely a moth, got between the contacts of a relay in an electromechanical computer causing it to malfunction and Grace Hooper described the first computer \emph{bug}. The use of the term bug in engineering predates the use in computer science, and consequently, the first use of bug in computing caught on easily because it represented an earlier-used metaphor becoming real. + +A suitable quotation from a letter written by Thomas Alva Edison 1878 \autocite[as given by][]{Hughes2004}: +\begin{quotation} + It has been just so in all of my inventions. The first step is an intuition, and comes with a burst, then difficulties arise--this thing gives out and [it is] then that ``Bugs''--as such little faults and difficulties are called--show themselves and months of intense watching, study and labor are requisite before commercial success or failure is certainly reached. +\end{quotation} + +The quoted paragraph above makes clear that only very exceptionally does any new design fully succeed. The same applies to \Rlang scripts as well as any other non-trivial piece of computer code. From this it logically follows that testing and de-bugging are fundamental steps in the development of \Rlang scripts and packages. Debugging, as an activity, is outside the scope of this book. However, clear programming style and good documentation are indispensable for efficient testing and reuse. + +Even for scripts used for analyzing a single data set, we need to be confident that the algorithms and their implementation are valid, and able to return correct results. This is true both for scientific reports, expert data-based reports and any data analysis related to assessment of compliance with legislation or regulations. Of course, even in cases when we are not required to demonstrate validity, say for decision making purely internal to a private organization, we will still want to avoid costly mistakes. + +The first step in producing reliable computer code is to accept that any code that we write needs to be tested and, if possible, validated. Another important step is to make sure that input is validated within the script and a suitable error produced for bad input (including valid input values falling outside the range that can be reliably handled by the script). + +If during testing, or during normal use, a wrong value is returned by a calculation, or no value (e.g., the script crashes or triggers a fatal error), debugging consists in finding the cause of the problem. The cause can be either a mistake in the implementation of an algorithm, as well as in the algorithm itself. However, many apparent \emph{bugs} are caused by bad or missing handling of special cases like invalid input values, rounding errors, division by zero, etc., in which a program crashes instead of elegantly issuing a helpful error message. + +Diagnosing the source of bugs is, in most cases, like detective work. One uses hunches based on common sense and experience to try to locate the lines of code causing the problem. One follows different \emph{leads} until the case is solved. In most cases, at the very bottom we rely on some sort of divide-and-conquer strategy. For example, we may check the value returned by intermediate calculations until we locate the earliest code statement producing a wrong value. Another common case is when some input values trigger a bug. In such cases it is frequently best to start by testing if different ``cases'' of input lead to errors/crashes or not. Boundary input values are usually the telltale ones: e.g., for numbers, zero, negative and positive values, very large values, very small values, missing values (\code{NA}), vectors of length zero (\code{numeric()}), etc. + +\begin{warningbox} + \textbf{Error messages} When debugging, keep in mind that in some cases a single bug can lead to a whole cascade of error messages. Do also keep in mind that typing mistakes, originating when code is entered through the keyboard, can wreak havock in a script: usually there is little correspondence between the number of error messages and the seriousness of the bug triggering them. When several errors are triggered, start by reading the error message printed first, as later errors can be an indirect consequence of earlier ones. +\end{warningbox} + +There are special tools, called debuggers, available, and they help enormously. Debuggers allow one to step through the code, executing one statement at a time, and at each pause, allowing the user to inspect the objects present in the \Rlang environment and their values. It is even possible to execute additional statements, say, to modify the value of a variable, while execution is paused. An \Rlang debugger is available within \RStudio and also through the \Rlang console. + +When writing your first scripts, you will manage perfectly well, and learn more by running the script one line at a time and when needed temporarily inserting \code{print()} statements to ``look'' at how the value of variables changes at each step. A debugger allows a lot more control, as one can ``step in'' and ``step out'' of function definitions, and set and unset break points where execution will stop, which is especially useful when developing \Rlang packages. + +When reproducing the examples in this chapter, do keep this section in mind. In addition, if you get stuck trying to find the cause of a bug, do extend your search both to the most trivial of possible causes, and to the least likely ones (such as a bug in a package installed from CRAN or \Rlang itself). Of course, when suspecting a bug in code you have not written, it is wise to very carefully read the documentation, as the ``bug'' may be just in your understanding of what a certain piece of code is expected to do. Also keep in mind that as discussed on page \pageref{sec:intro:net:help}, you will be able to find online already-answered questions to many of your likely problems and doubts. For example, Googling for the text of an error message is usually well rewarded. + +\begin{warningbox} +When installing packages from other sources than CRAN (e.g., development versions from GitHub, Bitbucket or R-Forge, or in-house packages) there is no warranty that conflicts will not happen. Packages (and their versions) released through CRAN are regularly checked for inter-compatibility, while packages released through other channels are usually checked against only a few packages. + +Conflicts among packages can easily arise, for example, when they use the same names for objects or functions. In addition, many packages use functions defined in packages in the \Rlang distribution itself or other independently developed packages by importing them. Updates to depended-upon packages can ``break'' (make non-functional) the dependent packages or parts of them. The rigorous testing by CRAN detects such problems in most cases when package revisions are submitted, forcing package maintainers to fix problems before distribution through CRAN is possible. However, if you use other repositories, I recommend that you make sure that revised (especially if under development) versions do work with your own script, before their use in ``production'' (important) data analyses. +\end{warningbox} + + +\section{Control of execution flow}\label{sec:script:flow:control} +\index{control of execution flow} +We give the name \emph{control of execution statements} to those statements that allow the execution of sections of code when a certain dynamically computed condition is \code{TRUE}. Some of the control of execution flow statements, function like \emph{ON-OFF switches} for program statements. Others allow statements to be executed repeatedly while or until a condition is met, or until all members of a list or a vector are processed. + +These \emph{control of execution statements} can be also used at the \Rlang console, but it is usually awkward to do so as they can extend over several lines of text. In simple scripts, the \emph{flow of execution} can be fixed and linear from the first to the last statement in the script. \emph{Control of execution statements} allow flexibility, as they allow conditional execution and/or repeated execution of statements. The part of the script conditionally executed can be a simple or a compound code statement providing a lot of flexibility. As we will see next, a compound statement can include multiple simple or nested compound statements. + +\subsection{Compound statements} +\index{compound code statements}\index{simple code statements} + +First of all, we need to consider compound statements. Individual statements can be grouped into compound statements by enclosed them in curly braces. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "A" +\end{verbatim} +\begin{alltt} +\hlstd{\{} + \hlkwd{print}\hlstd{(}\hlstr{"B"}\hlstd{)} + \hlkwd{print}\hlstd{(}\hlstr{"C"}\hlstd{)} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] "B" +## [1] "C" +\end{verbatim} +\end{kframe} +\end{knitrout} + +The grouping of the last two statements above is of no consequence by itself, but grouping becomes useful when used together with control-of-execution constructs. + +\subsection{Conditional execution} +\index{conditional execution} + +Conditional execution allows handling different values, such as negative and non-negative values, differently within a script. This is achieved by evaluating or not (i.e., switching ON and OFF) parts of a script based on the result returned by a logical expression. This expression can also be a \emph{flag}---i.e., a \code{logical} variable set manually, preferable near the top of the script. Use of flags is most useful when switching between two script behaviors depends on multiple sections of code. A frequent use case for flags is jointly enabling and disabling printing of output from multiple statements scattered in over a long script. + +\Rpgrm has two types of \emph{if}\index{conditional statements} statements, non-vectorized and vectorized. We will start with the non-vectorized one, which is similar to what is available in most other computer programming languages. We start with toy examples demonstrating how \emph{if} and \emph{if-else} statements work. Later we will see examples closer to real use cases. + +\subsubsection[Non-vectorized \texttt{if}, \texttt{else} and \texttt{switch}]{Non-vectorized \code{if}, \code{else} and \code{switch}} +\qRcontrol{if()}\qRcontrol{if()\ldots else}% + +The \code{if} construct ``decides,'' depending on a \code{logical} value, whether the next code statement is executed (if \code{TRUE}) or skipped (if \code{FALSE}). + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{flag} \hlkwb{<-} \hlnum{TRUE} +\hlkwa{if} \hlstd{(flag)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "Hello!" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Play with the code above by changing the value assigned to variable \code{flag}, \code{FALSE}, \code{NA}, and \code{logical(0)}. + +In the example above we use variable \code{flag} as the \emph{condition}. + +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} +\begin{alltt} +\hlkwa{if} \hlstd{(}\hlnum{TRUE}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"Hello!"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "Hello!" +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{playground} + +Conditional execution is much more useful than what could be expected from the previous example, because the statement whose execution is being controlled can be a compound statement of almost any length or complexity. A very simple example follows. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{printing} \hlkwb{<-} \hlnum{TRUE} +\hlkwa{if} \hlstd{(printing) \{} + \hlkwd{print}\hlstd{(}\hlstr{"A"}\hlstd{)} + \hlkwd{print}\hlstd{(}\hlstr{"B"}\hlstd{)} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] "A" +## [1] "B" +\end{verbatim} +\end{kframe} +\end{knitrout} + +The condition passed as an argument to \code{if}, enclosed in parentheses, can be anything yielding a \Rclass{logical} vector, however, as this condition is \emph{not} vectorized, only the first element will be used and a warning issued if longer than one. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{10.0} +\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "'a' is not negative" +\end{verbatim} +\begin{alltt} +\hlkwd{print}\hlstd{(}\hlstr{"This is always printed"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "This is always printed" +\end{verbatim} +\end{kframe} +\end{knitrout} + +As can be seen above, the statement immediately following \code{if} is executed if the condition returns \code{TRUE} and that following \code{else} is executed if the condition returns \code{FALSE}. Statements after the conditionally executed \code{if} and \code{else} statements are always executed, independently of the value returned by the condition. + +\begin{playground} +Play with the code in the chunk above by assigning different numeric vectors to \code{a}. +\end{playground} + + + +\begin{explainbox} +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} +\begin{alltt} +\hlcom{# 1} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} \hlkwa{else} \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "'a' is not negative" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlcom{# 2 (not evaluated here)} +\hlkwd{if} (a < 0.0) \hlkwd{print}(\hlstr{"\hlstr{'a'} is negative"}) +else \hlkwd{print}(\hlstr{"\hlstr{'a'} is not negative"}) +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlcom{# 1} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{) \{} + \hlkwd{print}\hlstd{(}\hlstr{"'a' is negative"}\hlstd{)} + \hlstd{\}} \hlkwa{else} \hlstd{\{} + \hlkwd{print}\hlstd{(}\hlstr{"'a' is not negative"}\hlstd{)} + \hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] "'a' is not negative" +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the example above, we enclosed a single statement between each pair of curly braces, but as these braces create compound statements, multiple statements could have been enclosed between each pair. +\end{explainbox} + +\begin{playground} +Play with the use of conditional execution, with both simple and compound statements, and also think how to combine \code{if} and \code{else} to select among more than two options. +\end{playground} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlstd{my.message} \hlkwb{<-} + \hlkwa{if} \hlstd{(a} \hlopt{<} \hlnum{0.0}\hlstd{)} \hlstr{"'a' is negative"} \hlkwa{else} \hlstr{"'a' is not negative"} +\hlkwd{print}\hlstd{(my.message)} +\end{alltt} +\begin{verbatim} +## [1] "'a' is not negative" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Study the conversion rules between \Rclass{numeric} and \Rclass{logical} values, run each of the statements below, and explain the output based on how type conversions are interpreted, remembering the difference between \emph{floating-point numbers} as implemented in computers and \emph{real numbers} ($\mathbb{R}$) as defined in mathematics. + +% chunk contains intentional error-triggering examples +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\hlkwa{if} \hlstd{(}\hlnum{0.01}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-300}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-323}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-324}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlnum{1e-500}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlstr{"true"}\hlstd{))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlkwd{as.numeric}\hlstd{(}\hlstr{"1"}\hlstd{)))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlkwd{as.logical}\hlstd{(}\hlstr{"1"}\hlstd{))} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\hlkwa{if} \hlstd{(}\hlstr{"1"}\hlstd{)} \hlkwd{print}\hlstd{(}\hlstr{"hello"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Hint: if you need to refresh your understanding of the type conversion rules, see section \ref{sec:calc:type:conversion} on page \pageref{sec:calc:type:conversion}. +\end{playground} + +In addition to \Rcontrol{if()}, there is in \Rlang a \Rcontrol{switch()} statement, which we describe next. It can be used to select among \emph{cases}, or several alternative statements, based on an expression evaluating to a \code{numeric} or a \code{character} value of length equal to one. The switch statement returns a value, the value returned by the statement corresponding to the matching switch value, or the default if there is no match and a default return value has been defined in the code. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my.object} \hlkwb{<-} \hlstr{"two"} +\hlstd{b} \hlkwb{<-} \hlkwd{switch}\hlstd{(my.object,} + \hlkwc{one} \hlstd{=} \hlnum{1}\hlstd{,} + \hlkwc{two} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{2}\hlstd{,} + \hlkwc{three} \hlstd{=} \hlnum{1} \hlopt{/} \hlnum{4}\hlstd{,} + \hlnum{0} +\hlstd{)} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 0.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} + Do play with the use of the switch statement. Look at the documentation for \code{switch()} using \code{help(switch)} and study the examples at the end of the help page. +\end{playground} + +The \Rcontrol{switch()} statement can substitute for chained \code{if else} statements when all the conditions are comparisons against different constant values, resulting in more concise and clear code. + +\subsubsection[Vectorized \texttt{ifelse()}]{Vectorized \code{ifelse()}} +\index{vectorized ifelse} +Vectorized \emph{ifelse} is a peculiarity of the \Rlang language, but very useful for writing concise code that may execute faster than logically equivalent but not vectorized code. +Vectorized conditional execution is coded by means of \emph{function} \Rcontrol{ifelse()} (written as a single word). This function takes three arguments: a \code{logical} vector usually the result of a test (parameter \code{test}), a result vector for \code{TRUE} cases (parameter \code{yes}), and a result vector for \code{FALSE} cases (parameter \code{no}). At each index position along the vectors, the value included in the returned vector is taken from \code{yes} if \code{test} is \code{TRUE} and from \code{no} if \code{test} is \code{FALSE}. All three arguments can be any \Rlang statement returning the required vector. In the case of vectors passed as arguments to parameters \code{yes} and \code{no}, recycling will take place if they are shorter than the logical vector passed as argument to \code{test}. No recycling ever applies to \code{test}, even if \code{yes} and/or \code{no} are longer than \code{test}. 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} +\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{)} +\end{alltt} +\begin{verbatim} +## [1] 1 -1 1 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{nums} \hlkwb{<-} \hlopt{-}\hlnum{3}\hlopt{:+}\hlnum{3} +\hlkwd{ifelse}\hlstd{(nums} \hlopt{<} \hlnum{0}\hlstd{,} \hlopt{-}\hlstd{nums, nums)} +\end{alltt} +\begin{verbatim} +## [1] 3 2 1 0 1 2 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +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} +\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{)} +\hlkwd{ifelse}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{, a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} +\hlkwd{ifelse}\hlstd{(}\hlkwd{any}\hlstd{(a} \hlopt{>} \hlnum{5}\hlstd{), a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# tricky} +\hlkwd{ifelse}\hlstd{(}\hlkwd{logical}\hlstd{(}\hlnum{0}\hlstd{), a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# even more tricky} +\hlkwd{ifelse}\hlstd{(}\hlnum{NA}\hlstd{, a} \hlopt{+} \hlnum{1}\hlstd{, a} \hlopt{-} \hlnum{1}\hlstd{)} \hlcom{# as expected} +\end{alltt} +\end{kframe} +\end{knitrout} +Hint: if you need to refresh your understanding of \code{logical} values and Boolean algebra see section \ref{sec:calc:boolean} on page \pageref{sec:calc:boolean}. +\end{playground} + +\begin{warningbox} +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} +\begin{alltt} +\hlkwd{ifelse}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlkwd{ifelse}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] -5 +\end{verbatim} +\begin{alltt} +\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1 -4 +\end{verbatim} +\begin{alltt} +\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlopt{-}\hlnum{5}\hlopt{:-}\hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] -5 2 +\end{verbatim} +\begin{alltt} +\hlkwd{ifelse}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{),} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlnum{0}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0 2 +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{warningbox} + +\begin{playground} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlopt{-}\hlnum{10}\hlopt{:-}\hlnum{1} +\hlstd{b} \hlkwb{<-} \hlopt{+}\hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{c} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{5}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"b"}\hlstd{,} \hlnum{5}\hlstd{))} +\hlcom{# your code} +\end{alltt} +\end{kframe} +\end{knitrout} + +If you do not understand how the three vectors are built, or you cannot guess the values they contain by reading the code, print them, and play with the arguments, until you understnd what each parameter does. Also use \code{help(rep)} and/or \code{help(ifelse)} to access the documentation. +\end{playground} + +\subsection{Iteration} +\index{loops|seealso{iteration}} +We give the name \emph{iteration} to the process of repetitive execution of a program statement (simple or compound)---e.g., \emph{computed by iteration}. We use the same word, iteration, to name each one of these repetitions of the execution of a statement---e.g., the second iteration. + +The section of computer code being executed multiple times, forms a loop (a closed path). Most loops contain a condition that determines when the flow of execution will exit the loop and continue at the next statement following the loop. In \Rlang three types of iteration loops are available: those using \Rloop{for}, \Rloop{while} and \Rloop{repeat} constructs. They differ in how much flexibility they provide with respect to the values they iterate over, and how the condition that terminates the iteration is tested. When the same algorithm can be implemented with more than one of these constructs, using the least flexible of them usually results in the easiest to understand \Rlang scripts. In \Rlang, rather frequently, explicit loops as described in this section can be replaced advantageously by calls to the \emph{apply} functions described in section \ref{sec:data:apply} on page \pageref{sec:data:apply}. + +\subsubsection[\texttt{for} loops]{\code{for} loops} +The\index{for loop}\index{iteration!for loop}\qRloop{for} most frequently used type of loop is a \code{for} loop. These loops work in \Rlang on lists or vectors of values to act upon. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlnum{0} +\hlkwa{for} \hlstd{(a} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{) b} \hlkwb{<-} \hlstd{b} \hlopt{+} \hlstd{a} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 15 +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwd{sum}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} \hlcom{# built-in function (faster)} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 15 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Here the statement \code{b <- b + a} is executed five times, with variable \code{a} sequentially taking each of the values in \code{1:5}. Instead of a simple statement used here, a compound statement could also have been used for the body of the \Rloop{for} loop. + +\begin{warningbox} +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. +\end{warningbox} + +Some examples of use of \code{for} loops---and of how to avoid their use. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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!} +\end{alltt} +\begin{verbatim} +## [1] 2 +## [1] 8 +## [1] 6 +## [1] 12 +## [1] 16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +A call to \Rloop{for} does not return a value. We need to assign values to an object so that they are not lost. If we print at each iteration the value of this object, we can follow how the stored value changes. Printing allows us to see, how the vector grows in length, unless we create a long-enough vector before the start of the loop. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwa{for}\hlstd{(x} \hlkwa{in} \hlstd{a) \{x}\hlopt{*}\hlnum{2}\hlstd{\}} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} + \hlkwd{print}\hlstd{(b)} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] 1 +## [1] 1 16 +## [1] 1 16 9 +## [1] 1 16 9 36 +## [1] 1 16 9 36 64 +\end{verbatim} +\begin{alltt} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 1 16 9 36 64 +\end{verbatim} +\begin{alltt} +\hlcom{# runs faster if we first allocate a long enough vector} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} + \hlkwd{print}\hlstd{(b)} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] 1 0 0 0 0 +## [1] 1 16 0 0 0 +## [1] 1 16 9 0 0 +## [1] 1 16 9 36 0 +## [1] 1 16 9 36 64 +\end{verbatim} +\begin{alltt} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 1 16 9 36 64 +\end{verbatim} +\begin{alltt} +\hlcom{# a vectorized expression is simplest and fastest} +\hlstd{b} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 1 16 9 36 64 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the previous chunk we used \code{seq(along.with = a)} to build a new numeric vector with a sequence of the same length as vector \code{a}. Using this \emph{idiom} is best as it ensures that even the case when \code{a} is an \emph{empty} vector of length zero will be handled correctly, with \code{numeric(0)} assigned to \code{b}. + +\begin{playground}\label{box:play:forloop} +Look at the results from the above examples, and try to understand where the returned value comes from in each case. In the code chunk above, \Rfunction{print()} is used within the \emph{loop} to make intermediate values visible. You can add additional \code{print()} statements to visualize other variables, such as \code{i}, or run parts of the code, such as \code{seq(along.with = a)}, by themselves. + +In this case, the code examples trigger no errors or warnings, but the same approach can be used for debugging syntactically correct code that does not return the expected results. +\end{playground} + +\begin{advplayground} +In the examples above we show the use of \code{seq()} passing a vector as an argument to its parameter \code{along.with}. 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)}). + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} +\hlstd{\}} +\hlkwd{print}\hlstd{(b)} + +\hlstd{c} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a))} +\hlkwa{for}\hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{length}\hlstd{(a)) \{} + \hlstd{c[i]} \hlkwb{<-} \hlstd{a[i]}\hlopt{^}\hlnum{2} +\hlstd{\}} +\hlkwd{print}\hlstd{(c)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{advplayground} + +\begin{explainbox} +\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 \Rloop{break()}, and another is jumping ahead to the start of the next iteration, which we can do with \Rloop{next()}. +\end{explainbox} + +\subsubsection[\texttt{while} loops]{\code{while} loops} +\Rloop{while} loops\index{iteration!while loop} are frequently useful, even if not as frequently used as \code{for} loops. Instead of a list or vector, they take a logical argument, which is usually an expression, but which can also be a variable. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{2} +\hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} + \hlkwd{print}\hlstd{(a)} + \hlstd{a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] 2 +## [1] 4 +## [1] 16 +\end{verbatim} +\begin{alltt} +\hlkwd{print}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] 256 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Make sure that you understand why the final value of \code{a} is larger than 50. +\end{playground} + + +\begin{advplayground} +The statements above can be simplified to: + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{2} +\hlkwd{print}\hlstd{(a)} +\hlkwa{while} \hlstd{(a} \hlopt{<} \hlnum{50}\hlstd{) \{} + \hlkwd{print}\hlstd{(a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2}\hlstd{)} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{b} \hlkwb{<-} \hlstd{c} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{5} +\hlstd{a} +\end{alltt} +\end{kframe} +\end{knitrout} + +Explain why a second \code{print(a)} has been added before \code{while()}. Hint: experiment if necessary. +\end{advplayground} + +\begin{explainbox} +\Rloop{while} loops as described above will terminate when the condition tested is \code{FALSE}. In those cases that require stopping iteration based on an additional test condition within the compound statement, we can call \Rloop{break()} in the body of an \code{if} or \code{else} statement. +\end{explainbox} + +\subsubsection[\texttt{repeat} loops]{\code{repeat} loops} +The \Rloop{repeat}\index{iteration!repeat loop} construct is less frequently used, but adds flexibility as termination will always depend on a call to \Rcontrol{break()}, which can be located anywhere within the compound statement that forms the body of the loop. To achieve conditional end of iteration, function \Rcontrol{break()} must be called, as otherwise, iteration in a \code{repeat} loop will not stop. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{2} +\hlkwa{repeat}\hlstd{\{} + \hlkwd{print}\hlstd{(a)} + \hlkwa{if} \hlstd{(a} \hlopt{>} \hlnum{50}\hlstd{)} \hlkwa{break}\hlstd{()} + \hlstd{a} \hlkwb{<-} \hlstd{a}\hlopt{^}\hlnum{2} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] 2 +## [1] 4 +## [1] 16 +## [1] 256 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Please explain why the example above returns the values it does. Use the approach of adding \code{print()} statements, as described on page \pageref{box:play:forloop}. +\end{playground} + +\begin{explainbox} +Although \code{repeat} loop constructs are easier to read if they have a single condition resulting in termination of iteration, it is allowed by the \Rlang language for the compound statement in the body of a loop to contain more than one call to \Rcontrol{break()}, each within a different \code{if} or \code{else} statement. +\end{explainbox} + +\subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} +\index{vectorization}\index{recycling of arguments}\index{iteration}\index{loops!faster alternatives|(} +If you have written programs in other languages, it will feel natural to you to use loops (\Rloop{for}, \Rloop{while}, \Rloop{repeat}) for many of the things for which in \Rlang one would normally use vectorization. In \Rlang, using vectorization whenever possible keeps scripts shorter and easier to understand (at least for those with experience in \Rlang). More importantly, as \Rlang is an interpreted language, vectorized arithmetic tends to be much faster than the use of explicit iteration. In recent versions of \Rpgrm, byte-compilation is used by default and loops may be compiled on the fly, which relieves part of the burden of repeated interpretation. However, even byte-compiled loops are usually slower to execute than efficiently coded vectorized functions and operators. + +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} +\begin{alltt} +\hlkwd{system.time}\hlstd{(\{a} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} + \hlkwa{for} \hlstd{(i} \hlkwa{in} \hlnum{1}\hlopt{:}\hlnum{1000000}\hlstd{) \{} + \hlstd{a[i]} \hlkwb{<-} \hlstd{i} \hlopt{/} \hlnum{1000} + \hlstd{\}} + \hlstd{\})} +\end{alltt} +\begin{verbatim} +## user system elapsed +## 0.34 0.04 0.38 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlopt{^}\hlnum{7}\hlstd{)} \hlcom{# 10 000 0000 pseudo-random numbers} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# b <- numeric()} +\hlstd{b} \hlkwb{<-} \hlkwd{numeric}\hlstd{(}\hlkwd{length}\hlstd{(a)}\hlopt{-}\hlnum{1}\hlstd{)} \hlcom{# pre-allocate memory} +\hlstd{i} \hlkwb{<-} \hlnum{1} +\hlkwa{while} \hlstd{(i} \hlopt{<} \hlkwd{length}\hlstd{(a)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i}\hlopt{+}\hlnum{1}\hlstd{]} \hlopt{-} \hlstd{a[i]} + \hlkwd{print}\hlstd{(b)} + \hlstd{i} \hlkwb{<-} \hlstd{i} \hlopt{+} \hlnum{1} +\hlstd{\}} +\hlstd{b} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# b <- numeric()} +\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)) \{} + \hlstd{b[i]} \hlkwb{<-} \hlstd{a[i}\hlopt{+}\hlnum{1}\hlstd{]} \hlopt{-} \hlstd{a[i]} + \hlkwd{print}\hlstd{(b)} +\hlstd{\}} +\hlstd{b} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# although in this case there were alternatives, there} +\hlcom{# are other cases when we need to use indexes explicitly} +\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{]} +\hlstd{b} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlcom{# or even better} +\hlstd{b} \hlkwb{<-} \hlkwd{diff}\hlstd{(a)} +\hlstd{b} +\end{alltt} +\end{kframe} +\end{knitrout} + +Execution time can be obtained with \Rfunction{system.time()}. For a vector of ten million numbers, the \code{for} loop above takes 1.1\,s and the equivalent \code{while} loop 2.0\,s, the vectorized statement using indexing takes 0.2\,s and function \code{diff()} takes 0.1\,s. The \code{for} loop without pre-allocation of memory to \code{b} takes 3.6\,s, and the equivalent while loop 4.7\,s---i.e., the fastest execution time was more than 40 times faster than the slowest one. (Times for \Rpgrm 3.5.1 on my laptop under Windows 10 x64.) +\end{explainbox} +\index{loops!faster alternatives|)} + +\subsection{Nesting of loops}\label{sec:nested:loops} +\index{iteration!nesting of loops}\index{nested iteration loops}\index{loops!nested} + +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} +\begin{alltt} +\hlstd{A} \hlkwb{<-} \hlkwd{matrix}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{50}\hlstd{,} \hlnum{10}\hlstd{)} +\hlstd{A} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] [,5] +## [1,] 1 11 21 31 41 +## [2,] 2 12 22 32 42 +## [3,] 3 13 23 33 43 +## [4,] 4 14 24 34 44 +## [5,] 5 15 25 35 45 +## [6,] 6 16 26 36 46 +## [7,] 7 17 27 37 47 +## [8,] 8 18 28 38 48 +## [9,] 9 19 29 39 49 +## [10,] 10 20 30 40 50 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)) \{} + \hlstd{row.sum[i]} \hlkwb{<-} \hlnum{0} + \hlkwa{for} \hlstd{(j} \hlkwa{in} \hlnum{1}\hlopt{:}\hlkwd{ncol}\hlstd{(A))} + \hlstd{row.sum[i]} \hlkwb{<-} \hlstd{row.sum[i]} \hlopt{+} \hlstd{A[i, j]} +\hlstd{\}} +\hlkwd{print}\hlstd{(row.sum)} +\end{alltt} +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The code above is very general, it will work with any two-dimensional matrix with at least one column and one row. However, sometimes we need more specific calculations. \code{A[1, 2]} selects one cell in the matrix, the one on the first row of the second column. \code{A[1, ]} selects row one, and \code{A[ , 2]} selects column two. In the example above, the value of \code{i} changes for each iteration of the outer loop. The value of \code{j} changes for each iteration of the inner loop, and the inner loop is run in full for each iteration of the outer loop. The inner loop index \code{j} changes fastest. + +\begin{advplayground} +1) Modify the code in the example in the last chunk above so that it sums the values only in the first three columns of \code{A}, 2) modify the same example so that it sums the values only in the last three rows of \code{A}, 3) modify the code so that matrices with dimensions equal to zero (as reported by \code{ncol()} and \code{nrow()}). + +Will the code you wrote continue working as expected if the number of rows in \code{A} changed? What if the number of columns in \code{A} changed, and the required results still needed to be calculated for relative positions? What would happen if \code{A} had fewer than three columns? Try to think first what to expect based on the code you wrote. Then create matrices of different sizes and test your code. After that, think how to improve the code, so that wrong results are not produced. +\end{advplayground} + +\begin{explainbox} +If the total number of iterations is large and the code executed at each iteration runs fast, the overhead added by the loop code can make a big contribution to the total running time of a script. +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} +\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)) \{} + \hlstd{row.sum[i]} \hlkwb{<-} \hlkwd{sum}\hlstd{(A[i, ])} +\hlstd{\}} +\hlkwd{print}\hlstd{(row.sum)} +\end{alltt} +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\code{A[i, ]} selects row \code{i} and all columns. Reminder: in \Rlang the row index comes first. + +Both\index{apply functions} explicit loops can be eliminated if we use an \emph{apply} function, such as \Rloop{apply()}, \Rloop{lapply()} or \Rloop{sapply()}, in place of the outer \code{for} loop. See section \ref{sec:data:apply} below %on page \pageref{sec:data:apply} +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} +\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)} +\end{alltt} +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 +\end{verbatim} +\end{kframe} +\end{knitrout} +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} +\begin{alltt} +\hlkwd{rowSums}\hlstd{(A)} +\end{alltt} +\begin{verbatim} +## [1] 105 110 115 120 125 130 135 140 145 150 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} + +\begin{playground} +1) How would you change this last example, so that only the last three columns are added up? (Think about use of subscripts to select a part of the matrix.) +2) To obtain column sums, one could modify the nested loops (think how), transpose the matrix and use \code{rowSums()} (think how), or look up if there is in \Rlang a function for this operation. A good place to start is with \code{help(rowSums)} as similar functions may share the same help page, or at least be listed in the ``See also'' section. Do try this, and explore other help pages in search for some function you may find useful in the analysis of your own data. +\end{playground} + +\section[Apply functions]{\emph{Apply} functions}\label{sec:data:apply} + +\emph{Apply}\index{apply functions}\index{loops!faster alternatives} functions apply a function passed as an argument to parameter \code{FUN} or equivalent, to elements in a collection of \Rlang objects passed as an argument to parameter \code{X} or equivalent. Collections to which \code{FUN} is to be applied can be vectors, lists, data frames, matrices or arrays. As long as the operations to be applied are \emph{independent---i.e., the results from one iteration are not used in another iteration---} apply functions can replace \code{for}, \code{while} or \code{repeat} loops. + +The different \emph{apply} functions in base \Rlang differ in the class of the values they accept for their \code{X} parameter, the class of the object they return and/or the class of the value returned by the applied function. \Rloop{lapply()} and \Rloop{sapply()} expect a \code{vector} or \code{list} as an argument passed through \code{X}. \Rloop{lapply()} returns a \code{list} or an \code{array}; and \Rloop{vapply()} always \emph{simplifies} its returned value into a vector, while \Rloop{sapply()} does the simplification according to the argument passed to its \code{simplify} parameter. All these \emph{apply} functions can be used to apply an \Rlang function that returns a value of the same or a different class as its argument. In the case of \Rloop{apply()} and \Rloop{lapply()} not even the length of the values returned for each member of the collection passed as an argument, needs to be consistent. In summary, \Rloop{apply()} is used to apply a function to the elements along a dimension of an object that has two or more \emph{dimensions}, and \Rloop{lapply()} and \Rloop{sapply()} are used to apply a function to the members of a vector or list. \Rloop{apply()} returns an array or a list or a vector depending on the size, and consistency in length and class among the values returned by the applied function. + +\subsection{Applying functions to vectors and lists} + +We first exemplify the use of \Rloop{lapply()}, \Rloop{sapply()} and \Rloop{vapply()}. In the chunks below we apply a user-defined function to a vector. + +\begin{warningbox} +A constraint on the function to be applied is that the member object will be always passed as an argument to the first parameter of the applied function. +\end{warningbox} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\hlkwd{str}\hlstd{(a.vector)} +\end{alltt} +\begin{verbatim} +## num [1:6] 0.798 0.754 0.391 0.342 0.361 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## List of 6 +## $ : num 4.77 +## $ : num 4.72 +## $ : num 4.06 +## $ : num 3.93 +## $ : num 3.98 +## $ : num 3.38 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## List of 6 +## $ : num 4.77 +## $ : num 4.72 +## $ : num 4.06 +## $ : num 3.93 +## $ : num 3.98 +## $ : num 3.38 +\end{verbatim} +\end{kframe} +\end{knitrout} + +We can see above that the computed results are the same in the three cases, but the class and structure of the objects returned differ. + +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} +\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)} +\end{alltt} +\begin{verbatim} +## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +Of course, as discussed in section \ref{sec:loops:slow} on page \pageref{sec:loops:slow}, when suitable vectorized functions are available, their use should be preferred. On the other hand, even if \emph{apply} functions are usually not as fast as vectorized functions, they are faster than the equivalent \code{for()} loops. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{z} \hlkwb{<-} \hlkwd{log}\hlstd{(a.vector)} \hlopt{+} \hlnum{5} +\hlkwd{str}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## num [1:6] 4.77 4.72 4.06 3.93 3.98 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +Function \Rloop{vapply()} can be safer to use as the mode of returned values is enforced. Here is a possible way of obtaining means and variances across member vectors at each vector index position from a list of vectors. These could be called \emph{parallel} means and variances. The argument passed to \code{FUN.VALUE} provides a template for the type of the return value and its organization into rows and columns. Notice that the rows in the output are now named according to the names in \code{FUN.VALUE}. + +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} +\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{)} +\hlkwd{str}\hlstd{(a.list)} +\end{alltt} +\begin{verbatim} +## List of 5 +## $ : num [1:4] 10.83 9.72 9.64 10.09 +## $ : num [1:4] 12.3 10.8 11.3 12.5 +## $ : num [1:4] 11.17 9.57 9 8.89 +## $ : num [1:4] 9.94 11.17 11.05 10.06 +## $ : num [1:4] 9.26 10.93 11.67 10.56 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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))} + \hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{values} \hlkwb{<-} \hlkwd{vapply}\hlstd{(}\hlkwc{X} \hlstd{= a.list,} + \hlkwc{FUN} \hlstd{= mean_and_sd,} + \hlkwc{FUN.VALUE} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0}\hlstd{),} + \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlkwd{class}\hlstd{(values)} +\end{alltt} +\begin{verbatim} +## [1] "matrix" +\end{verbatim} +\begin{alltt} +\hlstd{values} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] [,4] [,5] +## mean 10.0725427 11.7254442 9.657997 10.5573814 10.605846 +## sd 0.5428149 0.7844356 1.050663 0.6460881 1.005676 +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\begin{playground} +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}. Apply function \code{mean\_and\_sd()} defined above to the data frame \code{cars} included as example data in \Rlang. The aim is to obtain the mean and standard deviation for each column. +\end{playground} + +\subsection{Applying functions to matrices and arrays} +In the next example we use \Rloop{apply()} and \Rfunction{mean()} to compute the mean for each column of matrix \code{a.matrix}. In \Rlang the dimensions of a matrix, rows and columns, over which a function is applied are called \emph{margins}. The argument passed to parameter \code{MARGIN} determines over which margin the function will be applied. If the function is applied to individual rows, we say that we operate on the first margin, and if the function is applied to individual columns, over the second margin. Arrays can have many dimensions, and consequently more margins. In the case of arrays with more than two dimensions, it is possible and useful to apply functions over multiple margins at once. + +\begin{warningbox} +A constraint on the function to be applied is that the vector or ``slice'' will always be passed as a positional argument to the first formal parameter of the applied function. +\end{warningbox} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\hlkwd{str}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## num [1:10] 0.247 0.404 0.537 0.5 0.504 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Modify the example above so that it computes row means instead of column means. +\end{playground} + +\begin{playground} +Look up the help pages for \Rloop{apply()} and \code{mean()} and study them until you understand how additional arguments can be passed to the applied function. Can you guess why \Rloop{apply()} was designed to have parameter names fully in uppercase, something very unusual for \Rlang code style? +\end{playground} + +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} +\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{)} +\hlstd{a.small.matrix} +\end{alltt} +\begin{verbatim} +## [,1] [,2] +## [1,] 11.3 10.4 +## [2,] 10.6 8.6 +## [3,] 8.2 11.0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{no_op.fun} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{x\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] "matrix" +\end{verbatim} +\begin{alltt} +\hlstd{z} +\end{alltt} +\begin{verbatim} +## [,1] [,2] +## [1,] 11.3 10.4 +## [2,] 10.6 8.6 +## [3,] 8.2 11.0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] +## [1,] 11.3 10.6 8.2 +## [2,] 10.4 8.6 11.0 +\end{verbatim} +\begin{alltt} +\hlkwd{t}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## [,1] [,2] +## [1,] 11.3 10.4 +## [2,] 10.6 8.6 +## [3,] 8.2 11.0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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))} + \hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{alltt} +\begin{verbatim} +## [,1] [,2] +## [1,] 10.033333 10.000 +## [2,] 1.625833 1.249 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{alltt} +\begin{verbatim} +## [,1] [,2] [,3] +## [1,] 10.8500000 9.600000 9.600000 +## [2,] 0.6363961 1.414214 1.979899 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{)} +\hlstd{z} \hlkwb{<-} \hlkwd{sapply}\hlstd{(}\hlkwc{X} \hlstd{= a.vector,} \hlkwc{FUN} \hlstd{= `+`,} \hlkwc{e2} \hlstd{=} \hlnum{5}\hlstd{)} +\hlkwd{str}\hlstd{(z)} +\end{alltt} +\begin{verbatim} +## num [1:10] 5.8 5.75 5.39 5.34 5.36 ... +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +\textbf{Apply functions vs.\ loop constructs} Apply functions cannot always replace explicit loops as they are less flexible. A simple example is the accumulation pattern, where we ``walk'' through a collection that stores a partial result between iterations. A similar case is a pattern where calculations are done over a ``window'' that moves at each iteration. The simplest and probably most frequent calculation of this kind is the calculation of differences between successive members. Other examples are moving window summaries such as a moving median (see page \pageref{box:vectorization:perf} for other alternatives to the use of explicit iteration loops). +\end{explainbox} + +\section{Object names and character strings} + +In\index{object names}\index{object names!as character strings} all assignment examples before this section, we have used object names included as literal character strings in the code expressions. In other words, the names are ``decided'' as part of the code, rather than at run time. In scripts or packages, the object name to be assigned may need to be decided at run time and, consequently, be available only as a character string stored in a variable. In this case, function \Rfunction{assign()} must be used instead of the operators \code{<-} or \code{->}. The statements below demonstrate its use. + +First using a \code{character} constant. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{assign}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlnum{9.99}\hlstd{)} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 9.99 +\end{verbatim} +\end{kframe} +\end{knitrout} +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} +\begin{alltt} +\hlstd{name.of.var} \hlkwb{<-} \hlstr{"b"} +\hlkwd{assign}\hlstd{(name.of.var,} \hlnum{9.99}\hlstd{)} +\hlstd{b} +\end{alltt} +\begin{verbatim} +## [1] 9.99 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The two toy examples above do not demonstrate why one may want to use \Rfunction{assign()}. Common situations where we may want to use character strings to store (future or existing) object names are 1) when we allow users to provide names for objects either interactively or as \code{character} data, 2) when in a loop we transverse a vector or list of object names, or 3) we construct at runtime object names from multiple character strings based on data or settings. A common case is when we import data from a text file and we want to name the object according to the name of the file on disk, or a character string read from the header at the top of the file. + +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} +\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{)} +\hlstd{\}} +\hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "zz_1" "zz_2" "zz_3" "zz_4" "zz_5" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{get}\hlstd{(}\hlstr{"a"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 9.99 +\end{verbatim} +\begin{alltt} +\hlkwd{get}\hlstd{(}\hlstr{"b"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 9.99 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{obj_names} \hlkwb{<-} \hlkwd{ls}\hlstd{(}\hlkwc{pattern} \hlstd{=} \hlstr{"zz_*"}\hlstd{)} +\hlstd{obj_lst} \hlkwb{<-} \hlkwd{mget}\hlstd{(obj_names)} +\hlkwd{str}\hlstd{(obj_lst)} +\end{alltt} +\begin{verbatim} +## List of 5 +## $ zz_1: num 1 +## $ zz_2: num 4 +## $ zz_3: num 9 +## $ zz_4: num 16 +## $ zz_5: num 25 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +Think of possible uses of functions \Rfunction{assign()}, \Rfunction{get()} and \Rfunction{mget()} in scripts you use or could use to analyze your own data (or from other sources). Write a script to implement this, and iteratively test and revise this script until the result produced by the script matches your expectations. +\end{advplayground} + +\section{The multiple faces of loops}\label{sec:R:faces:of:loops} + +\ilAdvanced\ To close this chapter, I will mention some advanced aspects of the \Rlang language that are useful when writing complex scrips---if you are going through the book sequentially, you will want to return to this section after reading chapters \ref{chap:R:statistics} and \ref{chap:R:functions}. In the same way as we can assign names to \code{numeric}, \code{character} and other types of objects, we can assign names to functions and expressions. We can also create lists of functions and/or expressions. The \Rlang language has a very consistent grammar, with all lists and vectors behaving in the same way. The implication of this is that we can assign different functions or expressions to a given name, and consequently it is possible to write loops over lists of functions or expressions. + +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} +\begin{alltt} +\hlstd{x} \hlkwb{<-} \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{)} +\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlstd{fun.names} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"mean"}\hlstd{,} \hlstr{"max"}\hlstd{,} \hlstr{"min"}\hlstd{)} +\hlkwa{for} \hlstd{(f.name} \hlkwa{in} \hlstd{fun.names) \{} + \hlstd{results[[f.name]]} \hlkwb{<-} \hlkwd{do.call}\hlstd{(f.name,} \hlkwd{list}\hlstd{(x))} + \hlstd{\}} +\hlstd{results} +\end{alltt} +\begin{verbatim} +## mean max min +## 0.5453427 2.5026454 -1.1139499 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{results} \hlkwb{<-} \hlkwd{numeric}\hlstd{()} +\hlstd{funs} \hlkwb{<-} \hlkwd{list}\hlstd{(mean, max, min)} +\hlkwa{for} \hlstd{(f} \hlkwa{in} \hlstd{funs) \{} + \hlstd{results} \hlkwb{<-} \hlkwd{c}\hlstd{(results,} \hlkwd{f}\hlstd{(x))} + \hlstd{\}} +\hlstd{results} +\end{alltt} +\begin{verbatim} +## [1] 0.5453427 2.5026454 -1.1139499 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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)} +\hlkwa{for} \hlstd{(f} \hlkwa{in} \hlkwd{names}\hlstd{(funs)) \{} + \hlstd{results[[f]]} \hlkwb{<-} \hlstd{funs[[f]](x)} + \hlstd{\}} +\hlstd{results} +\end{alltt} +\begin{verbatim} +## average maximum minimum +## 0.5453427 2.5026454 -1.1139499 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{()} +\hlstd{models} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{linear} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{linear.orig} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{quadratic} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{+} \hlkwd{I}\hlstd{(x}\hlopt{^}\hlnum{2}\hlstd{))} +\hlkwa{for} \hlstd{(m} \hlkwa{in} \hlkwd{names}\hlstd{(models)) \{} + \hlstd{results[[m]]} \hlkwb{<-} \hlkwd{lm}\hlstd{(models[[m]],} \hlkwc{data} \hlstd{= my.data)} + \hlstd{\}} +\hlkwd{str}\hlstd{(results,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## List of 3 +## $ linear :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ linear.orig:List of 12 +## ..- attr(*, "class")= chr "lm" +## $ quadratic :List of 12 +## ..- attr(*, "class")= chr "lm" +\end{verbatim} +\begin{alltt} +\hlkwd{do.call}\hlstd{(anova,} \hlkwd{unname}\hlstd{(results))} +\end{alltt} +\begin{verbatim} +## Analysis of Variance Table +## +## Model 1: y ~ x +## Model 2: y ~ x - 1 +## Model 3: y ~ x + I(x^2) +## Res.Df RSS Df Sum of Sq F Pr(>F) +## 1 8 0.05525 +## 2 9 2.31266 -1 -2.2574 306.19 4.901e-07 *** +## 3 7 0.05161 2 2.2611 153.34 1.660e-06 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{))} +\hlkwa{for} \hlstd{(i} \hlkwa{in} \hlkwd{seq}\hlstd{(}\hlkwc{along.with} \hlstd{= models)) \{} + \hlstd{results[[i]]} \hlkwb{<-} \hlkwd{lm}\hlstd{(models[[i]],} \hlkwc{data} \hlstd{= my.data)} + \hlstd{\}} +\hlkwd{str}\hlstd{(results,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## List of 3 +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +\end{verbatim} +\begin{alltt} +\hlkwd{do.call}\hlstd{(anova, results)} +\end{alltt} +\begin{verbatim} +## Analysis of Variance Table +## +## Model 1: y ~ x +## Model 2: y ~ x - 1 +## Model 3: y ~ x + I(x^2) +## Res.Df RSS Df Sum of Sq F Pr(>F) +## 1 8 0.05525 +## 2 9 2.31266 -1 -2.2574 306.19 4.901e-07 *** +## 3 7 0.05161 2 2.2611 153.34 1.660e-06 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\subsection{Further reading} +For\index{further reading!the R language} further readings on the aspects of \Rlang discussed in the current chapter, I suggest the books \citetitle{Matloff2011} (\citeauthor{Matloff2011}) and \citetitle{Wickham2019} (\citeauthor{Wickham2019}). + + +% !Rnw root = appendix.main.Rnw + + +\chapter{The R language: Statistics}\label{chap:R:statistics} + +\begin{VF} +The purpose of computing is insight, not numbers. + +\VA{Richard W. Hamming}{\emph{Numerical Methods for Scientists and Engineers}, 1987}\nocite{Hamming1987} +\end{VF} + +\section{Aims of this chapter} + +This chapter aims to give the reader only a quick introduction to statistics in base \Rlang, as there are many good texts on the use of \Rpgrm for different kinds of statistical analyses (see further reading on page \pageref{sec:stat:further:reading}). Although many of base \R's functions are specific to given statistical procedures, they use a particular approach to model specification and for returning the computed values that can be considered a part of the \Rlang language. Here you will learn the approaches used in \Rlang for calculating statistical summaries, generating (pseudo-)random numbers, sampling, fitting models and carrying out tests of significance. We will use linear correlation, \emph{t}-test, linear models, generalized linear models, non-linear models and some simple multivariate methods as examples. My aim is teaching how to specify models, contrasts and data used, and how to access different components of the objects returned by the corresponding fit and summary functions. + +%\emph{At present I use several examples adapted from the help pages for the functions described. I may revise this before publication.} + +\section{Statistical summaries} +\index{functions!base R}\index{summaries!statistical} +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} +\begin{alltt} +\hlstd{x} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{20} +\hlkwd{mean}\hlstd{(x)} +\hlkwd{var}\hlstd{(x)} +\hlkwd{sd}\hlstd{(x)} +\hlkwd{median}\hlstd{(x)} +\hlkwd{mad}\hlstd{(x)} +\hlkwd{mode}\hlstd{(x)} +\hlkwd{max}\hlstd{(x)} +\hlkwd{min}\hlstd{(x)} +\hlkwd{range}\hlstd{(x)} +\hlkwd{quantile}\hlstd{(x)} +\hlkwd{length}\hlstd{(x)} +\hlkwd{summary}\hlstd{(x)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} + In contrast to many other examples in this book, the summaries computed with the code in the previous chunk are not shown. You should \emph{run} them, using vector \code{x} as defined above, and then play with other real or artificial data that you may find interesting.% Later in the book, only the output from certain examples will be shown, with the expectation, that other examples will be run by readers. +\end{playground} + +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.omit} allows us to override this default behavior by requesting any \code{NA} in the input to be omitted (or discarded) before calculation, + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlkwd{mean}\hlstd{(x,} \hlkwc{na.omit} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\end{kframe} +\end{knitrout} + +\section{Distributions} +\index{distributions|(}\index{Normal distribution} +Density, distribution functions, quantile functions and generation of pseudo-random values for several different distributions are part of the \Rlang language. Entering \code{help(Distributions)} at the \Rlang prompt will open a help page describing all the distributions available in base \Rlang. In what follows we use the Normal distribution for the examples, but with slight differences in their parameters the functions for other theoretical distributions follow a consistent naming pattern. For each distribution the different functions contain the same ``root'' in their names: \code{norm} for the normal distribution, \code{unif} for the uniform distribution, and so on. The ``head'' of the name indicates the type of values returned: ``d'' for density, ``q'' for quantile, ``r'' (pseudo-)random numbers, and ``p'' for probabilities. + +\subsection{Density from parameters} +\index{distributions!density from parameters} +Theoretical distributions are defined by mathematical functions that accept parameters that control the exact shape and location. In the case of the Normal distribution, these parameters are the \emph{mean} controlling location and \emph(standard deviation) (or its square, the \emph{variance}) controlling the spread around the center of the distribution. + +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} +\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} +\begin{verbatim} +## [1] 0.4839414 +\end{verbatim} +\end{kframe} +\end{knitrout} + +To obtain multiple values we can pass a longer vector as an argument. As perusing a long vector of numbers is difficult, we plot the result of the computation as a line (\code{type = "l"}) that shows that the 50 generated data points give the illusion of a continuous curve. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} + +\hlstd{my.data} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{= my.x,} + \hlkwc{y} \hlstd{=} \hlkwd{dnorm}\hlstd{(}\hlkwc{x} \hlstd{= my.x,} \hlkwc{mean} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.5}\hlstd{))} +\hlkwd{plot}\hlstd{(y}\hlopt{~}\hlstd{x,} \hlkwc{data} \hlstd{= my.data,} \hlkwc{type} \hlstd{=} \hlstr{"l"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-distrib-01a-1} + +} + + + +\end{knitrout} + +\subsection{Probabilities from parameters and quantiles}\label{sec:prob:quant} +\index{distributions!probabilities from quantiles} + +If we have a calculated quantile we can look up the corresponding $p$-value from the Normal distribution. The mean and standard deviation would, in such a case, also be 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. Use + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## [1] 0.9999683 +\end{verbatim} +\begin{alltt} +\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 3.167124e-05 +\end{verbatim} +\begin{alltt} +\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.1586553 +\end{verbatim} +\begin{alltt} +\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{2}\hlstd{,} \hlnum{4}\hlstd{),} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 2.275013e-02 3.167124e-05 +\end{verbatim} +\begin{alltt} +\hlkwd{pnorm}\hlstd{(}\hlkwc{q} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{4}\hlstd{),} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 3.167124e-05 1.586553e-01 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} + In tests of significance, empirical $z$-values and $t$-values are computed by subtracting from the observed mean for one group or raw quantile, the ``expected'' mean (possibly a hypothesized theoretical value, the mean of a control condition used as reference, or the mean computed over all treatments under the assumption of no effect of treatments) and then dividing by the standard deviation. Consequently, the $p$-values corresponding to these empirical $z$-values and $t$-values need to be looked up using \code{mean = 0} and \code{sd = 1} when calling \Rfunction{pnorm()} or \Rfunction{pt()} respectively. These frequently used values are the defaults. +\end{explainbox} + +\subsection{Quantiles from parameters and probabilities}\label{sec:quant:prob} +\index{distributions!quantiles from probabilities} + +The reverse computation from that in the previous section is to obtain the quantile corresponding to a known $p$-value. These quantiles are equivalent to the values in the tables used earlier to assess significance. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## [1] -2.326348 +\end{verbatim} +\begin{alltt} +\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.05}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] -1.644854 +\end{verbatim} +\begin{alltt} +\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.05}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1.644854 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +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} +\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} +\begin{verbatim} +## [1] -1.959964 +\end{verbatim} +\begin{alltt} +\hlkwd{qnorm}\hlstd{(}\hlkwc{p} \hlstd{=} \hlnum{0.025}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{lower.tail} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1.959964 +\end{verbatim} +\end{kframe} +\end{knitrout} + +We see above that in the case of a symmetric distribution like the Normal, the quantiles in the two tails differ only in sign. This is not the case for asymmetric distributions. + +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} +\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} +\begin{verbatim} +## [1] 1.999937 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{warningbox} + +\subsection{``Random'' draws from a distribution}\label{sec:stat:random} +\index{random draws|see{distributions!pseudo-random draws}}\index{distributions!pseudo-random draws} + +True random sequences can only be generated by physical processes. All so-called ``random'' sequences of numbers generated by computation are really deterministic although they share some properties with true random sequences (e.g., in relation to autocorrelation). It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. 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} +\begin{alltt} +\hlkwd{rnorm}\hlstd{(}\hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] -0.8248801 0.1201213 -0.4787266 -0.7134216 1.1264443 +\end{verbatim} +\begin{alltt} +\hlkwd{rnorm}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{10}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 12.394190 9.697729 9.212345 11.624844 12.194317 10.257707 10.082981 +## [8] 10.268540 10.792963 7.772915 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Edit the examples in sections \ref{sec:prob:quant}, \ref{sec:quant:prob} and \ref{sec:stat:random} to do computations based on different distributions, such as Student's \emph{t}, \emph{F} or uniform. +\end{playground} + +\begin{explainbox} +\index{random numbers|see{pseudo-random numbers}}\index{pseudo-random numbers} +It is impossible to generate truly random sequences of numbers by means of a deterministic process such as a mathematical computation. ``Random numbers'' as generated by \Rpgrm and other computer programs are \emph{pseudo random numbers}, long deterministic series of numbers that resemble random draws. Random number generation uses a \emph{seed} value that determines where in the series we start. The usual way of automatically setting the value of the seed is to take the milliseconds or similar rapidly changing set of digits from the real time clock of the computer. However, in cases when we wish to repeat a calculation using the same series of pseudo-random values, we can use \Rfunction{set.seed()} with an arbitrary integer as an argument to reset the generator to the same point in the underlying (deterministic) sequence. +\end{explainbox} + +\begin{advplayground} +Execute the statement \code{rnorm(3)}\qRfunction{rnorm()} by itself several times, paying attention to the values obtained. Repeat the exercise, but now executing \code{set.seed(98765)}\qRfunction{setseed()} immediately before each call to \code{rnorm(3)}, again paying attention to the values obtained. Next execute \code{set.seed(98765)}, followed by \code{c(rnorm(3), rnorm(3))}, and then execute \code{set.seed(98765)}, followed by \code{rnorm(6)} and compare the output. Repeat the exercise using a different argument in the call to \code{set.seed()}. analyze the results and explain how \code{setseed()} affects the generation of pseudo-random numbers in \Rlang. +\end{advplayground} + +\section{``Random'' sampling} +\index{random sampling|see{pseudo-random sampling}}% +\index{pseudo-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} +\begin{alltt} +\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS)} +\end{alltt} +\begin{verbatim} +## [1] "Z" "N" "Y" "R" "M" "E" "W" "J" "H" "G" "U" "O" "S" "T" "L" "F" "X" "P" "K" +## [20] "V" "D" "A" "B" "C" "I" "Q" +\end{verbatim} +\begin{alltt} +\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS,} \hlkwc{size} \hlstd{=} \hlnum{12}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "M" "S" "L" "R" "B" "D" "Q" "W" "V" "N" "J" "P" +\end{verbatim} +\begin{alltt} +\hlkwd{sample}\hlstd{(}\hlkwc{x} \hlstd{= LETTERS,} \hlkwc{size} \hlstd{=} \hlnum{12}\hlstd{,} \hlkwc{replace} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "K" "E" "V" "N" "A" "Q" "L" "C" "T" "L" "H" "U" +\end{verbatim} +\end{kframe} +\end{knitrout} + +In practice, pseudo-random sampling is useful when we need to select subsets of observations. One such case is assigning treatments to experimental units in an experiment or selecting persons to interview in a survey. Another use is in bootstrapping to estimate variation in parameter estimates using empirical distributions. +\index{distributions|)} + +\section{Correlation} +\index{correlation|(} +Both parametric (Pearson's) and non-parametric robust (Spearman's and Kendall's) methods for the estimation of the (linear) correlation between pairs of variables are available in base \Rlang. The different methods are selected by passing arguments to a single function. While Pearson's method is based on the actual values of the observations, non-parametric methods are based on the ordering or rank of the observations, and consequently less affected by observations with extreme values. + +We first load and explore the data set \Rdata{cars} from \Rlang which we will use in the example. 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} +\begin{alltt} +\hlkwd{data}\hlstd{(cars)} +\hlkwd{plot}\hlstd{(cars)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-cor-00-1} + +} + + + +\end{knitrout} +\label{chunk:plot:cars} + +\subsection{Pearson's $r$} +\index{correlation!parametric} +\index{correlation!Pearson} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## [1] 0.8068949 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{cor}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## speed dist +## speed 1.0000000 0.8068949 +## dist 0.8068949 1.0000000 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{)))} +\hlkwd{cor}\hlstd{(my.mat)} +\end{alltt} +\begin{verbatim} +## A B C +## A 1.00000000 0.2126595 0.05623007 +## B 0.21265951 1.0000000 0.31065243 +## C 0.05623007 0.3106524 1.00000000 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Modify the code in the chunk immediately above constructing a matrix with six columns and then computing the correlations. +\end{playground} + +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} +\begin{alltt} +\hlkwd{cor.test}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist)} +\end{alltt} +\begin{verbatim} +## +## Pearson's product-moment correlation +## +## data: cars$speed and cars$dist +## t = 9.464, df = 48, p-value = 1.49e-12 +## alternative hypothesis: true correlation is not equal to 0 +## 95 percent confidence interval: +## 0.6816422 0.8862036 +## sample estimates: +## cor +## 0.8068949 +\end{verbatim} +\end{kframe} +\end{knitrout} + +As described below for model fitting and $t$-test, \Rfunction{cor.test()} also accepts a \code{formula} plus \code{data} as arguments. + +\begin{playground} +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlkwd{cor}\hlstd{(cars)} +\hlkwd{class}\hlstd{(a)} +\hlkwd{attributes}\hlstd{(a)} +\hlkwd{str}\hlstd{(a)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Methods \Rfunction{class()}, \Rfunction{attributes()} and \Rfunction{str()} are very powerful tools that can be used when we are in doubt about the data contained in an object and/or how it is structured. Knowing the structure allows us to retrieve the data members directly from the object when predefined extractor methods are not available. +\end{playground} + +\subsection{Kendall's $\tau$ and Spearman's $\rho$} +\index{correlation!non-parametric} +\index{correlation!Kendall} +\index{correlation!Spearman} + +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} +\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} +\begin{verbatim} +## [1] 0.6689901 +\end{verbatim} +\begin{alltt} +\hlkwd{cor}\hlstd{(}\hlkwc{x} \hlstd{= cars}\hlopt{$}\hlstd{speed,} \hlkwc{y} \hlstd{= cars}\hlopt{$}\hlstd{dist,} \hlkwc{method} \hlstd{=} \hlstr{"spearman"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.8303568 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Function \Rfunction{cor.test()}, described above, also allows the choice of method with the same syntax as shown for \Rfunction{cor()}. + +\begin{playground} +Repeat the exercise in the playground immediately above, but now using non-parametric methods. How does the information stored in the returned \code{matrix} differ depending on the method, and how can we extract information about the method used for calculation of the correlation from the returned object. +\end{playground} +\index{correlation|)} + +\section{Fitting linear models}\label{sec:stat:LM} +\index{models!linear|see{linear models}} +\index{linear models|(} +\index{LM|see{linear models}} + +In \Rlang, the models to be fitted are described by ``model formulas'' such as \verb|y ~ x| which we read as $y$ is explained by $x$. Model formulas are used in different contexts: fitting of models, plotting, and tests like $t$-test. The syntax of model formulas is consistent throughout base \Rlang and numerous independently developed packages. However, their use is not universal, and several packages extend the basic syntax to allow the description of specific types of models. + +As most things in \Rlang, model formulas can be stored in variables. In addition, contrary to the usual behavior of other statistical software, the result of a model fit is returned as an object, containing the different components of the fit. Once the model has been fitted, different methods allow us to extract parts and/or further manipulate the results obtained by fitting a model. Most of these methods have implementations for model fit objects for different types of statistical models. Consequently, what is described in this chapter using linear models as examples, also applies in many respects to the fit of models not described here. + +The \Rlang function \Rfunction{lm()} is used to fit linear models. If the explanatory variable is continuous, the fit is a regression. If the explanatory variable is a factor, the fit is an analysis of variance (ANOVA) in broad terms. However, there is another meaning of ANOVA, referring only to the tests of significance rather to an approach to model fitting. Consequently, rather confusingly, results for tests of significance for fitted parameter estimates can both in the case of regression and ANOVA, be presented in an ANOVA table. In this second, stricter meaning, ANOVA means a test of significance based on the ratios between pairs of variances. + +\begin{warningbox} +If you do not clearly remember the difference between numeric vectors and factors, or how they can be created, please, revisit chapter \ref{chap:R:as:calc} on page \pageref{chap:R:as:calc}. +\end{warningbox} + +\subsection{Regression} +%\index{linear regression} +\index{linear regression|see{linear models!linear regression}}\index{linear models!linear regression} +In \index{linear models!ANOVA table} the example immediately below, \code{speed} is a continuous numeric variable. In the ANOVA table calculated for the model fit, in this case a linear regression, we can see that the term for \code{speed} has only one degree of freedom (df). + +In the next example we continue using the stopping distance for \Rdata{cars} data set included in \Rpgrm. Please see the plot on page \pageref{chunk:plot:cars}. +\label{xmpl:fun:lm:fm1} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{data}\hlstd{(cars)} +\hlkwd{is.factor}\hlstd{(cars}\hlopt{$}\hlstd{speed)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.numeric}\hlstd{(cars}\hlopt{$}\hlstd{speed)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +We then fit the 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). + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] "lm" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{plot}\hlstd{(fm1,} \hlkwc{which} \hlstd{=} \hlnum{2}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-models-1a-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{summary}\hlstd{(fm1)} +\end{alltt} +\begin{verbatim} +## +## Call: +## lm(formula = dist ~ 1 + speed, data = cars) +## +## Residuals: +## Min 1Q Median 3Q Max +## -29.069 -9.525 -2.272 9.215 43.201 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## (Intercept) -17.5791 6.7584 -2.601 0.0123 * +## speed 3.9324 0.4155 9.464 1.49e-12 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 15.38 on 48 degrees of freedom +## Multiple R-squared: 0.6511, Adjusted R-squared: 0.6438 +## F-statistic: 89.57 on 1 and 48 DF, p-value: 1.49e-12 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Let's\index{linear models!summary table} look at the printout of the summary, section by section. Under ``Call:'' we find, \verb|dist ~ 1 + speed| or the specification of the model fitted, plus the data used. Under ``Residuals:'' we find the extremes, quartiles and median of the residuals, or deviations between observations and the fitted line. Under ``Coefficients:'' we find the estimates of the model parameters and their variation plus corresponding $t$-tests. At the end of the summary there is information on degrees of freedom and overall coefficient of determination ($R^2$). + +If we return to the model formulation, we can now replace $\alpha$ and $\beta$ by the estimates obtaining $y = -17.6 + 3.93 x$. Given the nature of the problem, we \emph{know based on first principles} that stopping distance must be zero when speed is zero. This suggests that we should not estimate the value of $\alpha$ but instead set $\alpha = 0$, or in other words, fit the model $y = \beta \cdot x$. + +However, in \Rlang models, the intercept is always implicitly included, so the model fitted above can be formulated as \verb|dist ~ speed|---i.e., a missing \code{+ 1} does not change the model. To exclude the intercept from the previous model, we need to specify it as \verb|dist ~ speed - 1|, resulting in the fitting of a straight line passing through the origin ($x = 0$, $y = 0$). + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## +## Call: +## lm(formula = dist ~ speed - 1, data = cars) +## +## Residuals: +## Min 1Q Median 3Q Max +## -26.183 -12.637 -5.455 4.590 50.181 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## speed 2.9091 0.1414 20.58 <2e-16 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 16.26 on 49 degrees of freedom +## Multiple R-squared: 0.8963, Adjusted R-squared: 0.8942 +## F-statistic: 423.5 on 1 and 49 DF, p-value: < 2.2e-16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{plot}\hlstd{(fm2,} \hlkwc{which} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-models-2a-1} + +} + + + +\end{knitrout} + +The equation of the second fitted model is $y = 2.91 x$, and from the residuals, it can be seen that it is inadequate, as the straight line does not follow the curvature of the relationship between \code{dist} and \code{speed}. +\begin{playground} +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\hlkwd{summary}\hlstd{(fm3)} +\hlkwd{anova}\hlstd{(fm3)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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)} +\hlkwd{anova}\hlstd{(fm3a)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{anova}\hlstd{(fm2, fm1)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{anova}\hlstd{(fm2, fm3, fm3a)} +\hlkwd{anova}\hlstd{(fm2, fm3a, fm3)} +\end{alltt} +\end{kframe} +\end{knitrout} + +We 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} +\begin{alltt} +\hlkwd{BIC}\hlstd{(fm2, fm1, fm3, fm3a)} +\hlkwd{AIC}\hlstd{(fm2, fm1, fm3, fm3a)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Once you have run the code in the chunks above, you will be able see that these three criteria do not necessarily agree on which is the ``best'' model. Find in the output $p$-value, BIC and AIC estimates, for the different models and conclude which model is favored by each of the three criteria. In addition you will notice that the two different formulations of the quadratic polynomial are equivalent. + +\end{playground} + +Additional methods give easy access to different components of fitted models: \Rfunction{vcov()} returns the variance-covariance matrix, \Rfunction{coef()} and its alias \Rfunction{coefficients()} return the estimates for the fitted model coefficients, \Rfunction{fitted()} and its alias \Rfunction{fitted.values()} extract the fitted values, and \Rfunction{resid()} and its alias \Rfunction{residuals()} the corresponding residuals (or deviations). + +\begin{playground} +Familiarize yourself with these extraction and summary methods by reading their documentation and use them to explore \code{fm1} fitted above or model fits to other data of your interest. +\end{playground} + +\begin{explainbox} +The objects returned by model fitting functions are rather complex and contain the full information, including the data to which the model was fit to. 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} +\begin{alltt} +\hlkwd{class}\hlstd{(fm1)} +\end{alltt} +\begin{verbatim} +## [1] "lm" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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 happens more frequently. As with any other \Rlang object we can use \Rfunction{str()} to explore them. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{str}\hlstd{(fm1,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} \hlcom{# not evaluated} +\end{alltt} +\end{kframe} +\end{knitrout} + +We frequently only look at the output of \Rfunction{anova()} as implicitly displayed by \code{print()}. However, both \Rfunction{anova()} and \Rfunction{summary()} return complex objects containing members with data not displayed by the matching \code{print()} methods. Understanding this is frequently useful, when we want to either display the results in a different format, or extract parts of them for use in additional tests or computations. Once again we use \Rfunction{str()} to look at the structure. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{str}\hlstd{(}\hlkwd{anova}\hlstd{(fm1))} +\end{alltt} +\begin{verbatim} +## Classes 'anova' and 'data.frame': 2 obs. of 5 variables: +## $ Df : int 1 48 +## $ Sum Sq : num 21185 11354 +## $ Mean Sq: num 21185 237 +## $ F value: num 89.6 NA +## $ Pr(>F) : num 1.49e-12 NA +## - attr(*, "heading")= chr "Analysis of Variance Table\n" "Response: dist" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{str}\hlstd{(}\hlkwd{summary}\hlstd{(fm1))} +\end{alltt} +\begin{verbatim} +## List of 11 +## $ call : language lm(formula = dist ~ 1 + speed, data = cars) +## $ terms :Classes 'terms', 'formula' language dist ~ 1 + speed +## .. ..- attr(*, "variables")= language list(dist, speed) +## .. ..- attr(*, "factors")= int [1:2, 1] 0 1 +## .. .. ..- attr(*, "dimnames")=List of 2 +## .. .. .. ..$ : chr [1:2] "dist" "speed" +## .. .. .. ..$ : chr "speed" +## .. ..- attr(*, "term.labels")= chr "speed" +## .. ..- attr(*, "order")= int 1 +## .. ..- attr(*, "intercept")= int 1 +## .. ..- attr(*, "response")= int 1 +## .. ..- attr(*, ".Environment")= +## .. ..- attr(*, "predvars")= language list(dist, speed) +## .. ..- attr(*, "dataClasses")= Named chr [1:2] "numeric" "numeric" +## .. .. ..- attr(*, "names")= chr [1:2] "dist" "speed" +## $ residuals : Named num [1:50] 3.85 11.85 -5.95 12.05 2.12 ... +## ..- attr(*, "names")= chr [1:50] "1" "2" "3" "4" ... +## $ coefficients : num [1:2, 1:4] -17.579 3.932 6.758 0.416 -2.601 ... +## ..- attr(*, "dimnames")=List of 2 +## .. ..$ : chr [1:2] "(Intercept)" "speed" +## .. ..$ : chr [1:4] "Estimate" "Std. Error" "t value" "Pr(>|t|)" +## $ aliased : Named logi [1:2] FALSE FALSE +## ..- attr(*, "names")= chr [1:2] "(Intercept)" "speed" +## $ sigma : num 15.4 +## $ df : int [1:3] 2 48 2 +## $ r.squared : num 0.651 +## $ adj.r.squared: num 0.644 +## $ fstatistic : Named num [1:3] 89.6 1 48 +## ..- attr(*, "names")= chr [1:3] "value" "numdf" "dendf" +## $ cov.unscaled : num [1:2, 1:2] 0.19311 -0.01124 -0.01124 0.00073 +## ..- attr(*, "dimnames")=List of 2 +## .. ..$ : chr [1:2] "(Intercept)" "speed" +## .. ..$ : chr [1:2] "(Intercept)" "speed" +## - attr(*, "class")= chr "summary.lm" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{adj.r.squared} +\end{alltt} +\begin{verbatim} +## [1] 0.6438102 +\end{verbatim} +\end{kframe} +\end{knitrout} + +As an example we test if the slope from a linear regression fit deviates significantly from a constant value different from the usual zero. + +The examples above are for a null hypothesis of slope = 0 and next we show how to do the equivalent test with a null hypothesis of slope = 1. The procedure is applicable to any constant value as a null hypothesis for any of the fitted parameter estimates for hypotheses set \emph{a priori}. The examples use a two-sided test. In some cases, a single-sided test should be used (e.g., if its known a priori that deviation is because of physical reasons possible only in one direction away from the null hypothesis, or because only one direction of response is of interest). + +To estimate the \emph{t}-value we need an estimate for the parameter and an estimate of the standard error for this estimate and its degrees of freedom. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{est.slope.value} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{coef[}\hlstr{"speed"}\hlstd{,} \hlstr{"Estimate"}\hlstd{]} +\hlstd{est.slope.se} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{coef[}\hlstr{"speed"}\hlstd{,} \hlstr{"Std. Error"}\hlstd{]} +\hlstd{degrees.of.freedom} \hlkwb{<-} \hlkwd{summary}\hlstd{(fm1)}\hlopt{$}\hlstd{df[}\hlnum{2}\hlstd{]} +\end{alltt} +\end{kframe} +\end{knitrout} + +The \emph{t}-test is based on the difference between the value of the null hypothesis and the estimate. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\hlstd{p.value} \hlkwb{<-} \hlkwd{dt}\hlstd{(t.value,} \hlkwc{df} \hlstd{= degrees.of.freedom)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\begin{advplayground} +Check that the procedure above agrees with the output of \code{summary()} when we set \code{hyp.null <- 0} instead of \code{hyp.null <- 1}. + +Modify the example so as to test whether the intercept is significantly larger than 5 feet, doing a one-sided test. +\end{advplayground} + +Method \Rfunction{predict()} uses the fitted model together with new data for the independent variables to compute predictions. As \Rfunction{predict()} accepts new data as input, it allows interpolation and extrapolation to values of the independent variables not present in the original data. In the case of fits of linear- and some other models, method \Rfunction{predict()} returns, in addition to the prediction, estimates of the confidence and/or prediction intervals. The new data must be stored in a data frame with columns using the same names for the explanatory variables as in the data used for the fit, a response variable is not needed and additional columns are ignored. (The explanatory variables in the new data can be either continuous or factors, but they must match in this respect those in the original data.) + +\begin{advplayground} +Predict using both \code{fm1} and \code{fm2} the distance required to stop cars moving at 0, 5, 10, 20, 30, and 40~mph. Study the help page for the predict method for linear models (using \code{help(predict.lm)}). Explore the difference between \code{"prediction"} and \code{"confidence"} bands: why are they so different? +\end{advplayground} + +\subsection{Analysis of variance, ANOVA}\label{sec:anova} +%\index{analysis of variance} +\index{analysis of variance|see{linear models!analysis of variance}}\index{linear models!analysis of variance} +\index{ANOVA|see{analysis of variance}} +We use here the \Rdata{InsectSprays} data set, giving insect counts in plots sprayed with different insecticides. In these data, \code{spray} is a factor with six levels.% +\label{xmpl:fun:lm:fm4} + +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} +\begin{alltt} +\hlkwd{data}\hlstd{(InsectSprays)} +\hlkwd{is.numeric}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{is.factor}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(InsectSprays}\hlopt{$}\hlstd{spray)} +\end{alltt} +\begin{verbatim} +## [1] "A" "B" "C" "D" "E" "F" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{fm4} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{plot}\hlstd{(fm4,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-model-6a-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{anova}\hlstd{(fm4)} +\end{alltt} +\begin{verbatim} +## Analysis of Variance Table +## +## Response: count +## Df Sum Sq Mean Sq F value Pr(>F) +## spray 5 2668.8 533.77 34.702 < 2.2e-16 *** +## Residuals 66 1015.2 15.38 +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +The defaults used for model fits and ANOVA calculations vary among programs. There exist different so-called ``types'' of sums of squares, usually called I, II, and III. In orthogonal designs the choice has no consequences, but differences can be important for unbalanced designs, even leading to different conclusions. \Rlang's default, type~I, is usually considered to suffer milder problems than type~III, the default used by \pgrmname{SPSS} and \pgrmname{SAS}. + +The contrasts used affect the estimates returned by \Rfunction{coef()} and \Rfunction{summary()} applied to an ANOVA model fit. The default used in \Rlang is different to that used in some other programs (even different than in \Slang). 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} +\begin{alltt} +\hlkwd{options}\hlstd{(}\hlstr{"contrasts"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## $contrasts +## unordered ordered +## "contr.treatment" "contr.poly" +\end{verbatim} +\end{kframe} +\end{knitrout} + +It is also possible to select the contrast to be used in the call to \code{aov()} or \code{lm()}. The default, \code{contr.treatment} uses the first level of the factor (assumed to be a control) as reference for estimation of coefficients and their significance, while \code{contr.sum} uses as reference the mean of all levels, by using as condition that the sum of the coefficient estimates is equal to zero. Obviously this changes what the coefficients describe, and consequently also the estimated $p$-values. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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))} +\hlstd{fm4sum} \hlkwb{<-} \hlkwd{lm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} + \hlkwc{contrasts} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{spray} \hlstd{= contr.sum))} +\end{alltt} +\end{kframe} +\end{knitrout} + +Interpretation of any analysis has to take into account these differences and users should not be surprised if ANOVA yields different results in base \Rlang and \pgrmname{SPSS} or \pgrmname{SAS} given the different types of sums of squares used. The interpretation of ANOVA on designs that are not orthogonal will depend on which type is used, so the different results are not necessarily contradictory even when different. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{summary}\hlstd{(fm4trea)} +\end{alltt} +\begin{verbatim} +## +## Call: +## lm(formula = count ~ spray, data = InsectSprays, +## contrasts = list(spray = contr.treatment)) +## +## Residuals: +## Min 1Q Median 3Q Max +## -8.333 -1.958 -0.500 1.667 9.333 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## (Intercept) 14.5000 1.1322 12.807 < 2e-16 *** +## spray2 0.8333 1.6011 0.520 0.604 +## spray3 -12.4167 1.6011 -7.755 7.27e-11 *** +## spray4 -9.5833 1.6011 -5.985 9.82e-08 *** +## spray5 -11.0000 1.6011 -6.870 2.75e-09 *** +## spray6 2.1667 1.6011 1.353 0.181 +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 3.922 on 66 degrees of freedom +## Multiple R-squared: 0.7244, Adjusted R-squared: 0.7036 +## F-statistic: 34.7 on 5 and 66 DF, p-value: < 2.2e-16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{summary}\hlstd{(fm4sum)} +\end{alltt} +\begin{verbatim} +## +## Call: +## lm(formula = count ~ spray, data = InsectSprays, +## contrasts = list(spray = contr.sum)) +## +## Residuals: +## Min 1Q Median 3Q Max +## -8.333 -1.958 -0.500 1.667 9.333 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## (Intercept) 9.5000 0.4622 20.554 < 2e-16 *** +## spray1 5.0000 1.0335 4.838 8.22e-06 *** +## spray2 5.8333 1.0335 5.644 3.78e-07 *** +## spray3 -7.4167 1.0335 -7.176 7.87e-10 *** +## spray4 -4.5833 1.0335 -4.435 3.57e-05 *** +## spray5 -6.0000 1.0335 -5.805 2.00e-07 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 3.922 on 66 degrees of freedom +## Multiple R-squared: 0.7244, Adjusted R-squared: 0.7036 +## F-statistic: 34.7 on 5 and 66 DF, p-value: < 2.2e-16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the case of contrasts, they always affect the parameter estimates independently of whether the experiment design is orthogonal or not. A different set of contrasts simply tests a different set of possible treatment effects. Contrasts, on the other hand, do not affect the table returned by \Rfunction{anova()} as this table does not deal with the effects of individual factor levels. +\end{warningbox} + +\subsection{Analysis of covariance, ANCOVA} +%\index{analysis of covariance} +\index{analysis of covariance|see{linear models!analysis of covariance}} +\index{linear models!analysis of covariance} +\index{ANCOVA|see{analysis of covariance}} + +When a linear model includes both explanatory factors and continuous explanatory variables, we may call it \emph{analysis of covariance} (ANCOVA). The formula syntax is the same for all linear models and, as mentioned in previous sections, what determines the type of analysis is the nature of the explanatory variable(s). As the formulation remains the same, no specific example is given. The main difficulty of ANCOVA is in the selection of the covariate and the interpretation of the results of the analysis \autocite[e.g.][]{Smith1957}. +\index{linear models|)} + +\section{Generalized linear models}\label{sec:stat:GLM} +\index{generalized linear models|(}\index{models!generalized linear|see{generalized linear models}} +\index{GLM|see{generalized linear models}} + +Linear models make the assumption of normally distributed residuals. Generalized linear models, fitted with function \Rfunction{glm()} are more flexible, and allow the assumed distribution to be selected as well as the link function. +For the analysis of the \Rdata{InsectSpray} data set above (section \ref{sec:anova} on page \pageref{sec:anova}), the Normal distribution is not a good approximation as count data deviates from it. This was visible in the quantile--quantile plot above. + +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} +\begin{alltt} +\hlstd{fm10} \hlkwb{<-} \hlkwd{glm}\hlstd{(count} \hlopt{~} \hlstd{spray,} \hlkwc{data} \hlstd{= InsectSprays,} \hlkwc{family} \hlstd{= quasipoisson)} +\hlkwd{anova}\hlstd{(fm10)} +\end{alltt} +\begin{verbatim} +## Analysis of Deviance Table +## +## Model: quasipoisson, link: log +## +## Response: count +## +## Terms added sequentially (first to last) +## +## +## Df Deviance Resid. Df Resid. Dev +## NULL 71 409.04 +## spray 5 310.71 66 98.33 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{anova}\hlstd{(fm10,} \hlkwc{test} \hlstd{=} \hlstr{"F"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## Analysis of Deviance Table +## +## Model: quasipoisson, link: log +## +## Response: count +## +## Terms added sequentially (first to last) +## +## +## Df Deviance Resid. Df Resid. Dev F Pr(>F) +## NULL 71 409.04 +## spray 5 310.71 66 98.33 41.216 < 2.2e-16 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{plot}\hlstd{(fm10,} \hlkwc{which} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-model-11-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{class}\hlstd{(fm10)} +\end{alltt} +\begin{verbatim} +## [1] "glm" "lm" +\end{verbatim} +\begin{alltt} +\hlkwd{summary}\hlstd{(fm10)} +\end{alltt} +\begin{verbatim} +## +## Call: +## glm(formula = count ~ spray, family = quasipoisson, data = InsectSprays) +## +## Deviance Residuals: +## Min 1Q Median 3Q Max +## -2.3852 -0.8876 -0.1482 0.6063 2.6922 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## (Intercept) 2.67415 0.09309 28.728 < 2e-16 *** +## sprayB 0.05588 0.12984 0.430 0.668 +## sprayC -1.94018 0.26263 -7.388 3.30e-10 *** +## sprayD -1.08152 0.18499 -5.847 1.70e-07 *** +## sprayE -1.42139 0.21110 -6.733 4.82e-09 *** +## sprayF 0.13926 0.12729 1.094 0.278 +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## (Dispersion parameter for quasipoisson family taken to be 1.507713) +## +## Null deviance: 409.041 on 71 degrees of freedom +## Residual deviance: 98.329 on 66 degrees of freedom +## AIC: NA +## +## Number of Fisher Scoring iterations: 5 +\end{verbatim} +\begin{alltt} +\hlkwd{head}\hlstd{(}\hlkwd{residuals}\hlstd{(fm10))} +\end{alltt} +\begin{verbatim} +## 1 2 3 4 5 6 +## -1.2524891 -2.1919537 1.3650439 -0.1320721 -0.1320721 -0.6768988 +\end{verbatim} +\begin{alltt} +\hlkwd{head}\hlstd{(}\hlkwd{fitted}\hlstd{(fm10))} +\end{alltt} +\begin{verbatim} +## 1 2 3 4 5 6 +## 14.5 14.5 14.5 14.5 14.5 14.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +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} +\begin{alltt} +\hlkwd{names}\hlstd{(fm10)} +\end{alltt} +\begin{verbatim} +## [1] "coefficients" "residuals" "fitted.values" +## [4] "effects" "R" "rank" +## [7] "qr" "family" "linear.predictors" +## [10] "deviance" "aic" "null.deviance" +## [13] "iter" "weights" "prior.weights" +## [16] "df.residual" "df.null" "y" +## [19] "converged" "boundary" "model" +## [22] "call" "formula" "terms" +## [25] "data" "offset" "control" +## [28] "method" "contrasts" "xlevels" +\end{verbatim} +\begin{alltt} +\hlstd{fm10}\hlopt{$}\hlstd{converged} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlstd{fm10}\hlopt{$}\hlstd{iter} +\end{alltt} +\begin{verbatim} +## [1] 5 +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\index{generalized linear models|)} + +\section{Non-linear regression}\label{sec:stat:NLS} +\index{non-linear models|(}% +\index{models!non-linear|see{non-linear models}}% +\index{NLS|see{non-linear models}} + +Function \Rfunction{nls()} is \Rlang's workhorse for fitting non-linear models. By \emph{non-linear} it is meant non-linear \emph{in the parameters} whose values are being estimated through fitting the model to data. This is different from the shape of the function when plotted---i.e., polynomials of any degree are linear models. In contrast, the Michaelis-Menten equation used in chemistry and the Gompertz equation used to describe growth are non-linear models in their parameters. + +While analytical algorithms exist for finding estimates for the parameters of linear models, in the case of non-linear models, the estimates are obtained by approximation. For analytical solutions, estimates can always be obtained, except in infrequent pathological cases where reliance on floating point numbers with limited resolution introduces rounding errors that ``break'' mathematical algorithms that are valid for real numbers. For approximations obtained through iteration, cases when the algorithm fails to \emph{converge} onto an answer are relatively common. Iterative algorithms attempt to improve an initial guess for the values of the parameters to be estimated, a guess frequently supplied by the user. In each iteration the estimate obtained in the previous iteration is used as the starting value, and this process is repeated one time after another. The expectation is that after a finite number of iterations the algorithm will converge into a solution that ``cannot'' be improved further. In real life we stop iteration when the improvement in the fit is smaller than a certain threshold, or when no convergence has been achieved after a certain maximum number of iterations. In the first case, we usually obtain good estimates; in the second case, we do not obtain usable estimates and need to look for different ways of obtaining them. When convergence fails, the first thing to do is to try different starting values and if this also fails, switch to a different computational algorithm. These steps usually help, but not always. Good starting values are in many cases crucial and in some cases ``guesses'' can be obtained using either graphical or analytical approximations. + +For functions for which computational algorithms exist for ``guessing'' suitable starting values, \Rlang provides a mechanism for packaging the function to be fitted together with the function generating the starting values. These functions go by the name of \emph{self-starting functions} and relieve the user from the burden of guessing and supplying suitable starting values. The\index{self-starting functions} self-starting functions available in \Rlang are \code{SSasymp()}, \code{SSasympOff()}, \code{SSasympOrig()}, \code{SSbiexp()}, \code{SSfol()}, \code{SSfpl()}, \code{SSgompertz()}, \code{SSlogis()}, \code{SSmicmen()}, and \code{SSweibull()}. Function \code{selfStart()} can be used to define new ones. All these functions can be used when fitting models with \Rfunction{nls} or \Rfunction{nlme}. Please, check the respective help pages for details. + +In the case of \Rfunction{nls()} the specification of the model to be fitted differs from that used for linear models. We will use as an example fitting the Michaelis-Menten equation\index{Michaelis-Menten equation} describing reaction kinetics\index{chemical reaction kinetics} in biochemistry and chemistry. The mathematical formulation is given by: + +\begin{equation}\label{eq:michaelis:menten} +v = \frac{\mathrm{d} [P]}{\mathrm{d} t} = \frac{V_{\mathrm{max}} [S]}{K_{\mathrm{M}} + [S]} +\end{equation} + +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} +\begin{alltt} +\hlkwd{data}\hlstd{(Puromycin)} +\hlkwd{names}\hlstd{(Puromycin)} +\end{alltt} +\begin{verbatim} +## [1] "conc" "rate" "state" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{class}\hlstd{(fm21)} +\end{alltt} +\begin{verbatim} +## [1] "nls" +\end{verbatim} +\begin{alltt} +\hlkwd{summary}\hlstd{(fm21)} +\end{alltt} +\begin{verbatim} +## +## Formula: rate ~ SSmicmen(conc, Vm, K) +## +## Parameters: +## Estimate Std. Error t value Pr(>|t|) +## Vm 2.127e+02 6.947e+00 30.615 3.24e-11 *** +## K 6.412e-02 8.281e-03 7.743 1.57e-05 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 10.93 on 10 degrees of freedom +## +## Number of iterations to convergence: 0 +## Achieved convergence tolerance: 1.937e-06 +\end{verbatim} +\begin{alltt} +\hlkwd{residuals}\hlstd{(fm21)} +\end{alltt} +\begin{verbatim} +## [1] 25.4339970 -3.5660030 -5.8109606 4.1890394 -11.3616076 4.6383924 +## [7] -5.6846886 -12.6846886 0.1670799 10.1670799 6.0311724 -0.9688276 +## attr(,"label") +## [1] "Residuals" +\end{verbatim} +\begin{alltt} +\hlkwd{fitted}\hlstd{(fm21)} +\end{alltt} +\begin{verbatim} +## [1] 50.5660 50.5660 102.8110 102.8110 134.3616 134.3616 164.6847 164.6847 +## [9] 190.8329 190.8329 200.9688 200.9688 +## attr(,"label") +## [1] "Fitted values" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +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} +\begin{alltt} +\hlkwd{str}\hlstd{(fm21,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## List of 6 +## $ m :List of 16 +## ..- attr(*, "class")= chr "nlsModel" +## $ convInfo :List of 5 +## $ data : symbol Puromycin +## $ call : language nls(formula = rate ~ SSmicmen(conc, Vm, K), __truncated__ +## $ dataClasses: Named chr "numeric" +## ..- attr(*, "names")= chr "conc" +## $ control :List of 5 +## - attr(*, "class")= chr "nls" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{fm21}\hlopt{$}\hlstd{convInfo} +\end{alltt} +\begin{verbatim} +## $isConv +## [1] TRUE +## +## $finIter +## [1] 0 +## +## $finTol +## [1] 1.937028e-06 +## +## $stopCode +## [1] 0 +## +## $stopMessage +## [1] "converged" +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\index{non-linear models|)} + +\section{Model formulas} +\index{model formulas|(} +In the examples above we fitted simple models. More complex ones can be easily formulated using the same syntax. First of all, one can avoid use of operator \code{*} and explicitly define all individual main effects and interactions using operators \code{+} and \code{:}. The syntax implemented in base \Rlang allows grouping by means of parentheses, so it is also possible to exclude some interactions by combining the use of \code{*} and parentheses. + +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} +\begin{alltt} +\hlstd{y} \hlopt{~} \hlkwd{I}\hlstd{(x1} \hlopt{+} \hlstd{x2)} +\hlstd{y} \hlopt{~} \hlkwd{log}\hlstd{(x1} \hlopt{+} \hlstd{x2)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\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} +\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} +\end{kframe} +\end{knitrout} + +Can be replaced by a concise equivalent. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{x2} \hlopt{*} \hlstd{x3} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{(x2} \hlopt{*} \hlstd{x3))} +\end{alltt} +\begin{verbatim} +## y ~ x1 + (x2 * x3) +## attr(,"variables") +## list(y, x1, x2, x3) +## attr(,"factors") +## x1 x2 x3 x2:x3 +## y 0 0 0 0 +## x1 1 0 0 0 +## x2 0 1 0 1 +## x3 0 0 1 1 +## attr(,"term.labels") +## [1] "x1" "x2" "x3" "x2:x3" +## attr(,"order") +## [1] 1 1 1 2 +## attr(,"intercept") +## [1] 1 +## attr(,"response") +## [1] 1 +## attr(,".Environment") +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{terms}\hlstd{(y} \hlopt{~} \hlstd{x1} \hlopt{*} \hlstd{(x2} \hlopt{+} \hlstd{x3))} +\end{alltt} +\begin{verbatim} +## y ~ x1 * (x2 + x3) +## attr(,"variables") +## list(y, x1, x2, x3) +## attr(,"factors") +## x1 x2 x3 x1:x2 x1:x3 +## y 0 0 0 0 0 +## x1 1 0 0 1 1 +## x2 0 1 0 1 0 +## x3 0 0 1 0 1 +## attr(,"term.labels") +## [1] "x1" "x2" "x3" "x1:x2" "x1:x3" +## attr(,"order") +## [1] 1 1 1 2 2 +## attr(,"intercept") +## [1] 1 +## attr(,"response") +## [1] 1 +## attr(,".Environment") +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## y ~ (x1 + x2 + x3)^2 +## attr(,"variables") +## list(y, x1, x2, x3) +## attr(,"factors") +## x1 x2 x3 x1:x2 x1:x3 x2:x3 +## y 0 0 0 0 0 0 +## x1 1 0 0 1 1 0 +## x2 0 1 0 1 0 1 +## x3 0 0 1 0 1 1 +## attr(,"term.labels") +## [1] "x1" "x2" "x3" "x1:x2" "x1:x3" "x2:x3" +## attr(,"order") +## [1] 1 1 1 2 2 2 +## attr(,"intercept") +## [1] 1 +## attr(,"response") +## [1] 1 +## attr(,".Environment") +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +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{trems()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{advplayground} + +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} +\begin{alltt} +\hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} \hlopt{+} \hlstd{x1} \hlopt{%in%} \hlstd{x2} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## y ~ x1 + x2 + x1 %in% x2 +## attr(,"variables") +## list(y, x1, x2) +## attr(,"factors") +## x1 x2 x1:x2 +## y 0 0 0 +## x1 1 0 1 +## x2 0 1 1 +## attr(,"term.labels") +## [1] "x1" "x2" "x1:x2" +## attr(,"order") +## [1] 1 1 2 +## attr(,"intercept") +## [1] 1 +## attr(,"response") +## [1] 1 +## attr(,".Environment") +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Execute the examples below using the \Rdata{npk} data set from \Rlang. They demonstrate the use of different model formulas in ANOVA\index{analysis of variance!model formula}. Use these examples plus your own variations on the same theme to build your understanding of the syntax of model formulas. Based on the terms displayed in the ANOVA tables, first work out what models are being fitted in each case. In a second step, write each of the models using a mathematical formulation. Finally, think how model choice may affect the conclusions from an analysis of variance. + +% runs fine but crashes LaTeX +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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))} +\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{(N} \hlopt{+} \hlstd{P} \hlopt{+} \hlstd{K)}\hlopt{^}\hlnum{2}\hlstd{,} \hlkwc{data} \hlstd{= npk))} +\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{N} \hlopt{+} \hlstd{P} \hlopt{+} \hlstd{K} \hlopt{+} \hlstd{P} \hlopt{%in%} \hlstd{N} \hlopt{+} \hlstd{K} \hlopt{%in%} \hlstd{N,} \hlkwc{data} \hlstd{= npk))} +\hlkwd{anova}\hlstd{(}\hlkwd{lm}\hlstd{(yield} \hlopt{~} \hlstd{N} \hlopt{+} \hlstd{P} \hlopt{+} \hlstd{K} \hlopt{+} \hlstd{N} \hlopt{%in%} \hlstd{P} \hlopt{+} \hlstd{K} \hlopt{%in%} \hlstd{P,} \hlkwc{data} \hlstd{= npk))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{playground} + +Nesting of factors in experiments using hierarchical designs such as split-plots or repeated measures, results in the need to compute additional error terms, differing in their degrees of freedom. In such a design, different effects are tested based on different error terms. Whether nesting exists or not is a property of an experiment. It is decided as part of the design of the experiment based on the mechanics of treatment assignment to experimental units. In base-\Rlang model-formulas, nesting needs to be described by explicit definition of error terms by means of \code{Error()} within the formula. Nowadays, linear mixed-effects (LME) models are most frequently used with data from experiments and surveys using hierarchical designs, as implemented in packages \pkgname{nlme} and \pkgname{lme4}. These two packages use their own extensions to the model formula syntax to describe nesting and distinguishing fixed and random effects. Additive models have required other extensions, most of them specific to individual packages. These extensions fall outside the scope of this book. + +\begin{warningbox} + \Rlang will accept any syntactically correct model formula, even when the results of the fit are not interpretable. It is \emph{the responsibility of the user to ensure that models are meaningful}. The most common, and dangerous, mistake is specifying for factorial experiments, models that are missing lower-order interactions. + + 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} +\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} +\end{alltt} +\end{kframe} +\end{knitrout} + + 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} +\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} +\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{+} \hlstd{C} \hlopt{+} \hlstd{B}\hlopt{:}\hlstd{C} +\hlstd{y} \hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B} \hlopt{*} \hlstd{C} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{warningbox} + +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} +\begin{alltt} +\hlkwd{class}\hlstd{(y} \hlopt{~} \hlstd{x)} +\end{alltt} +\begin{verbatim} +## [1] "formula" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlstd{x} +\hlkwd{class}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] "formula" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{inherits}\hlstd{(a,} \hlstr{"formula"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +\index{model formulas!manipulation}\textbf{Manipulation of model formulas.} Because this is a book about the \Rlang language, it is pertinent to describe how formulas can be manipulated. Formulas, as any other \Rlang objects, can be saved in variables including lists. Why is this useful? For example, if we want to fit several different models to the same data, we can write a \code{for} loop that walks through a list of model formulas. Or we can write a function that accepts one or more formulas as arguments. + +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} +\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{()} +\hlstd{formulas} \hlkwb{<-} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{-} \hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{= y} \hlopt{~} \hlstd{x,} \hlkwc{c} \hlstd{= y} \hlopt{~} \hlstd{x} \hlopt{+} \hlstd{x}\hlopt{^}\hlnum{2}\hlstd{)} +\hlkwa{for} \hlstd{(formula} \hlkwa{in} \hlstd{formulas) \{} + \hlstd{anovas} \hlkwb{<-} \hlkwd{c}\hlstd{(anovas,} \hlkwd{list}\hlstd{(}\hlkwd{lm}\hlstd{(formula,} \hlkwc{data} \hlstd{= my.data)))} + \hlstd{\}} +\hlkwd{str}\hlstd{(anovas,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\begin{verbatim} +## List of 3 +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +## $ :List of 12 +## ..- attr(*, "class")= chr "lm" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{my.string} \hlkwb{<-} \hlstr{"y ~ x"} +\hlkwd{lm}\hlstd{(}\hlkwd{as.formula}\hlstd{(my.string),} \hlkwc{data} \hlstd{= my.data)} +\end{alltt} +\begin{verbatim} +## +## Call: +## lm(formula = as.formula(my.string), data = my.data) +## +## Coefficients: +## (Intercept) x +## 1.4059 0.2839 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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)} +\end{alltt} +\begin{verbatim} +## +## Call: +## lm(formula = as.formula(my.string), data = my.data) +## +## Coefficients: +## (Intercept) x +## 1.4059 0.2839 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{formatted.string} \hlkwb{<-} \hlkwd{format}\hlstd{(y} \hlopt{~} \hlstd{x)} +\hlstd{formatted.string} +\end{alltt} +\begin{verbatim} +## [1] "y ~ x" +\end{verbatim} +\begin{alltt} +\hlkwd{as.formula}\hlstd{(formatted.string)} +\end{alltt} +\begin{verbatim} +## y ~ x +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{my.formula} \hlkwb{<-} \hlstd{y} \hlopt{~} \hlstd{x1} \hlopt{+} \hlstd{x2} +\hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{.} \hlopt{+} \hlstd{x3)} +\end{alltt} +\begin{verbatim} +## y ~ x1 + x2 + x3 +\end{verbatim} +\begin{alltt} +\hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{.} \hlopt{-} \hlstd{x1)} +\end{alltt} +\begin{verbatim} +## y ~ x2 +\end{verbatim} +\begin{alltt} +\hlkwd{update}\hlstd{(my.formula, .} \hlopt{~} \hlstd{x3)} +\end{alltt} +\begin{verbatim} +## y ~ x3 +\end{verbatim} +\begin{alltt} +\hlkwd{update}\hlstd{(my.formula, z} \hlopt{~} \hlstd{.)} +\end{alltt} +\begin{verbatim} +## z ~ x1 + x2 +\end{verbatim} +\begin{alltt} +\hlkwd{update}\hlstd{(my.formula, .} \hlopt{+} \hlstd{z} \hlopt{~} \hlstd{.)} +\end{alltt} +\begin{verbatim} +## y + z ~ x1 + x2 +\end{verbatim} +\end{kframe} +\end{knitrout} + +R provides high-level functions for model selection. Consequently many \Rlang users will rarely need to edit model formulas in their scripts. For example, step-wise model selection is possible with \Rlang method \code{step()}. + +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} +\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{))} +\hlstd{treats.df} +\end{alltt} +\begin{verbatim} +## A B +## 1 yes white +## 2 yes black +## 3 yes white +## 4 yes black +## 5 no white +## 6 no black +## 7 no white +## 8 no black +\end{verbatim} +\end{kframe} +\end{knitrout} + +The default contrasts types currently in use. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{options}\hlstd{(}\hlstr{"contrasts"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## $contrasts +## unordered ordered +## "contr.treatment" "contr.poly" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{model.matrix}\hlstd{(}\hlopt{~} \hlstd{A} \hlopt{+} \hlstd{B, treats.df)} +\end{alltt} +\begin{verbatim} +## (Intercept) Ayes Bwhite +## 1 1 1 1 +## 2 1 1 0 +## 3 1 1 1 +## 4 1 1 0 +## 5 1 0 1 +## 6 1 0 0 +## 7 1 0 1 +## 8 1 0 0 +## attr(,"assign") +## [1] 0 1 2 +## attr(,"contrasts") +## attr(,"contrasts")$A +## [1] "contr.treatment" +## +## attr(,"contrasts")$B +## [1] "contr.treatment" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{model.matrix}\hlstd{(}\hlopt{~} \hlstd{A} \hlopt{*} \hlstd{B, treats.df)} +\end{alltt} +\begin{verbatim} +## (Intercept) Ayes Bwhite Ayes:Bwhite +## 1 1 1 1 1 +## 2 1 1 0 0 +## 3 1 1 1 1 +## 4 1 1 0 0 +## 5 1 0 1 0 +## 6 1 0 0 0 +## 7 1 0 1 0 +## 8 1 0 0 0 +## attr(,"assign") +## [1] 0 1 2 3 +## attr(,"contrasts") +## attr(,"contrasts")$A +## [1] "contr.treatment" +## +## attr(,"contrasts")$B +## [1] "contr.treatment" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} +\index{model formulas|)} + +\section{Time series}\label{sec:stat:time:series} +\index{time series|(} +Longitudinal data consist of repeated measurements, usually done over time, on the same experimental units. Longitudinal data, when replicated on several experimental units at each time point, are called repeated measurements, while when not replicated, they are called time series. Base \Rlang provides special support for the analysis of time series data, while repeated measurements can be analyzed with nested linear models, mixed-effects models, and additive models. + +Time series data are data collected in such a way that there is only one observation, possibly of multiple variables, available at each point in time. This brief section introduces only the most basic aspects of time-series analysis. In most cases time steps are of uniform duration and occur regularly, which simplifies data handling and storage. \Rlang not only provides methods for the analysis and manipulation of time-series, but also a specialized class for their storage, \Rclass{"ts"}. Regular time steps allow more compact storage---e.g., a \code{ts} object does not need to store time values for each observation but instead a combination of two of start time, step size and end time. + +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. + +For example for a time series of monthly values we could use: + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{class}\hlstd{(my.ts)} +\end{alltt} +\begin{verbatim} +## [1] "ts" +\end{verbatim} +\begin{alltt} +\hlkwd{str}\hlstd{(my.ts)} +\end{alltt} +\begin{verbatim} +## Time-Series [1:10] from 2019 to 2020: 1 2 3 4 5 6 7 8 9 10 +\end{verbatim} +\end{kframe} +\end{knitrout} + +We next use the data set \Rdata{austres} with data on the number of Australian residents and included in \Rlang. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{class}\hlstd{(austres)} +\end{alltt} +\begin{verbatim} +## [1] "ts" +\end{verbatim} +\begin{alltt} +\hlkwd{is.ts}\hlstd{(austres)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + + + +Time series \Rdata{austres} is dominated by the increasing trend. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{plot}\hlstd{(austres)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ts-02-1} + +} + + + +\end{knitrout} + +A different example, using data set \Rdata{nottem} containing meteorological data for Nottingham, shows a clear cyclic component. The annual cycle of mean air temperatures (in degrees Fahrenheit) is clear when data are plotted. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{data}\hlstd{(nottem)} +\hlkwd{is.ts}\hlstd{(nottem)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{plot}\hlstd{(nottem)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ts-03-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlstd{nottem.celcius} \hlkwb{<-} \hlstd{(nottem} \hlopt{-} \hlnum{32}\hlstd{)} \hlopt{*} \hlnum{5}\hlopt{/}\hlnum{9} +\end{alltt} +\end{kframe} +\end{knitrout} + +We set the seasonal window to 7 months, the minimum accepted. + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ts-05-1} + +} + + + +\end{knitrout} + +\begin{advplayground} +It is interesting to explore the class and structure of the object returned by \Rfunction{stl()}, as we may want to extract components. Run the statements below to find out, and then plot individual components from the time series decomposition. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{class}\hlstd{(nottem.stl)} +\hlkwd{str}\hlstd{(nottem.stl)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{advplayground} + +\index{time series|)} + +\section{Multivariate statistics}\label{sec:stat:MV} +\index{multivariate methods|(} + +\subsection{Multivariate analysis of variance} +\index{multivariate analysis of variance|(} +\index{MANOVA|see{multivariate analysis of variance}} +Multivariate methods take into account several response variables simultaneously, as part of a single analysis. In practice it is usual to use contributed packages for multivariate data analysis in \Rlang, except for simple cases. We will look first at \emph{multivariate} ANOVA or MANOVA. In the same way as \Rfunction{aov()} is a wrapper that uses internally \Rfunction{lm()}, \Rfunction{manova()} is a wrapper that uses internally \Rfunction{aov()}. + +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} +\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)} +\hlkwd{anova}\hlstd{(mmf1)} +\end{alltt} +\begin{verbatim} +## Analysis of Variance Table +## +## Df Pillai approx F num Df den Df Pr(>F) +## (Intercept) 1 0.98786 5939.2 2 146 < 2.2e-16 *** +## Species 2 1.04645 80.7 4 294 < 2.2e-16 *** +## Residuals 147 +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\begin{alltt} +\hlkwd{summary}\hlstd{(mmf1)} +\end{alltt} +\begin{verbatim} +## Response Petal.Length : +## +## Call: +## lm(formula = Petal.Length ~ Species, data = iris) +## +## Residuals: +## Min 1Q Median 3Q Max +## -1.260 -0.258 0.038 0.240 1.348 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## (Intercept) 1.46200 0.06086 24.02 <2e-16 *** +## Speciesversicolor 2.79800 0.08607 32.51 <2e-16 *** +## Speciesvirginica 4.09000 0.08607 47.52 <2e-16 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 0.4303 on 147 degrees of freedom +## Multiple R-squared: 0.9414, Adjusted R-squared: 0.9406 +## F-statistic: 1180 on 2 and 147 DF, p-value: < 2.2e-16 +## +## +## Response Petal.Width : +## +## Call: +## lm(formula = Petal.Width ~ Species, data = iris) +## +## Residuals: +## Min 1Q Median 3Q Max +## -0.626 -0.126 -0.026 0.154 0.474 +## +## Coefficients: +## Estimate Std. Error t value Pr(>|t|) +## (Intercept) 0.24600 0.02894 8.50 1.96e-14 *** +## Speciesversicolor 1.08000 0.04093 26.39 < 2e-16 *** +## Speciesvirginica 1.78000 0.04093 43.49 < 2e-16 *** +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +## +## Residual standard error: 0.2047 on 147 degrees of freedom +## Multiple R-squared: 0.9289, Adjusted R-squared: 0.9279 +## F-statistic: 960 on 2 and 147 DF, p-value: < 2.2e-16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## Analysis of Variance Table +## +## Df Pillai approx F num Df den Df Pr(>F) +## (Intercept) 1 0.98786 5939.2 2 146 < 2.2e-16 *** +## Species 2 1.04645 80.7 4 294 < 2.2e-16 *** +## Residuals 147 +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\begin{alltt} +\hlkwd{summary}\hlstd{(mmf2)} +\end{alltt} +\begin{verbatim} +## Df Pillai approx F num Df den Df Pr(>F) +## Species 2 1.0465 80.661 4 294 < 2.2e-16 *** +## Residuals 147 +## --- +## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +Modify the example above to use \code{aov()} instead of \code{manova()} and save the result to a variable named \code{mmf3}. +Use \code{class()}, \code{attributes()}, \code{names()}, \code{str()} and extraction of members to explore objects \code{mmf1}, \code{mmf2} and \code{mmf3}. Are they different? +\end{advplayground} + +\index{multivariate analysis of variance|)} + +\subsection{Principal components analysis}\label{sec:stat:PCA} +\index{principal components analysis|(}\index{PCA|see {principal components analysis}} + +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} +\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{)],} + \hlkwc{center} \hlstd{=} \hlnum{TRUE}\hlstd{,} + \hlkwc{scale} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{class}\hlstd{(pc)} +\end{alltt} +\begin{verbatim} +## [1] "prcomp" +\end{verbatim} +\begin{alltt} +\hlstd{pc} +\end{alltt} +\begin{verbatim} +## Standard deviations (1, .., p=4): +## [1] 1.7083611 0.9560494 0.3830886 0.1439265 +## +## Rotation (n x k) = (4 x 4): +## PC1 PC2 PC3 PC4 +## Sepal.Length 0.5210659 -0.37741762 0.7195664 0.2612863 +## Sepal.Width -0.2693474 -0.92329566 -0.2443818 -0.1235096 +## Petal.Length 0.5804131 -0.02449161 -0.1421264 -0.8014492 +## Petal.Width 0.5648565 -0.06694199 -0.6342727 0.5235971 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{summary}\hlstd{(pc)} +\end{alltt} +\begin{verbatim} +## Importance of components: +## PC1 PC2 PC3 PC4 +## Standard deviation 1.7084 0.9560 0.38309 0.14393 +## Proportion of Variance 0.7296 0.2285 0.03669 0.00518 +## Cumulative Proportion 0.7296 0.9581 0.99482 1.00000 +\end{verbatim} +\end{kframe} +\end{knitrout} + + + +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} +\begin{alltt} +\hlkwd{biplot}\hlstd{(pc)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-pca-05-1} + +} + + + +\end{knitrout} + + + +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} +\begin{alltt} +\hlkwd{plot}\hlstd{(pc)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-pca-04-1} + +} + + + +\end{knitrout} + +Visually more elaborate plots of the principal components and their loadings can be obtained using packages \pkgnameNI{ggplot} described in chapter \ref{chap:R:plotting} starting on page \pageref{chap:R:plotting}. Package \pkgnameNI{ggfortify} and package \pkgnameNI{ggbiplot} extend \pkgnameNI{ggplot} so as to make it easy to plot principal components and their loadings. + +\begin{playground} +For growth and morphological data, a log-transformation can be suitable given that variance is frequently proportional to the magnitude of the values measured. We leave as an exercise to repeat the above analysis using transformed values for the dimensions of petals and sepals. How much does the use of transformations change the outcome of the analysis? +\end{playground} + +\begin{advplayground} +As for other fitted models, the object returned by function \Rfunction{prcomp()} is a list with multiple components. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{str}\hlstd{(pc,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{advplayground} + +\index{principal components analysis|)} + +\subsection{Multidimensional scaling}\label{sec:stat:MDS} +\index{multidimensional scaling|(}\index{MDS|see {multidimensional scaling}} + +The aim of multidimensional scaling (MDS) is to visualize in 2D space the similarity between pairs of observations. The values for the observed variable(s) are used to compute a measure of distance among pairs of observations. The nature of the data will influence what distance metric is most informative. +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} +\begin{alltt} +\hlstd{loc} \hlkwb{<-} \hlkwd{cmdscale}\hlstd{(eurodist)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{class}\hlstd{(loc)} +\end{alltt} +\begin{verbatim} +## [1] "matrix" +\end{verbatim} +\begin{alltt} +\hlkwd{dim}\hlstd{(loc)} +\end{alltt} +\begin{verbatim} +## [1] 21 2 +\end{verbatim} +\begin{alltt} +\hlkwd{dimnames}\hlstd{(loc)} +\end{alltt} +\begin{verbatim} +## [[1]] +## [1] "Athens" "Barcelona" "Brussels" "Calais" +## [5] "Cherbourg" "Cologne" "Copenhagen" "Geneva" +## [9] "Gibraltar" "Hamburg" "Hook of Holland" "Lisbon" +## [13] "Lyons" "Madrid" "Marseilles" "Milan" +## [17] "Munich" "Paris" "Rome" "Stockholm" +## [21] "Vienna" +## +## [[2]] +## NULL +\end{verbatim} +\begin{alltt} +\hlkwd{head}\hlstd{(loc)} +\end{alltt} +\begin{verbatim} +## [,1] [,2] +## Athens 2290.27468 1798.8029 +## Barcelona -825.38279 546.8115 +## Brussels 59.18334 -367.0814 +## Calais -82.84597 -429.9147 +## Cherbourg -352.49943 -290.9084 +## Cologne 293.68963 -405.3119 +\end{verbatim} +\end{kframe} +\end{knitrout} + +To make the code easier to read, two vectors are first extracted from the matrix and named \code{x} and \code{y}. We force aspect to equality so that distances on both axes are comparable. + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\hlkwd{plot}\hlstd{(x, y,} \hlkwc{type} \hlstd{=} \hlstr{"n"}\hlstd{,} \hlkwc{asp} \hlstd{=} \hlnum{1}\hlstd{,} + \hlkwc{main} \hlstd{=} \hlstr{"cmdscale(eurodist)"}\hlstd{)} +\hlkwd{text}\hlstd{(x, y,} \hlkwd{rownames}\hlstd{(loc),} \hlkwc{cex} \hlstd{=} \hlnum{0.6}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-mds-03-1} + +} + + + +\end{knitrout} + +\begin{advplayground} + Find data on the mean annual temperature, mean annual rainfall and mean number of sunny days at each of the locations in the \code{eurodist} data set. Next, compute suitable distance metrics, for example, using function \Rfunction{dist}. Finally, use MDS to visualize how similar the locations are with respect to each of the three variables. Devise a measure of distance that takes into account the three climate variables and use MDS to find how distant the different locations are. +\end{advplayground} + +\index{multidimensional scaling|)} + +\subsection{Cluster analysis}\label{sec:stat:cluster} +\index{cluster analysis|(} + +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} +\begin{alltt} +\hlstd{hc} \hlkwb{<-} \hlkwd{hclust}\hlstd{(eurodist)} +\hlkwd{print}\hlstd{(hc)} +\end{alltt} +\begin{verbatim} +## +## Call: +## hclust(d = eurodist) +## +## Cluster method : complete +## Number of objects: 21 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{plot}\hlstd{(hc)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-cluster-02-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{cutree}\hlstd{(hc,} \hlkwc{k} \hlstd{=} \hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## Athens Barcelona Brussels Calais Cherbourg +## 1 2 3 3 3 +## Cologne Copenhagen Geneva Gibraltar Hamburg +## 3 4 2 5 4 +## Hook of Holland Lisbon Lyons Madrid Marseilles +## 3 5 2 5 2 +## Milan Munich Paris Rome Stockholm +## 2 3 3 1 4 +## Vienna +## 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{str}\hlstd{(hc)} +\end{alltt} +\begin{verbatim} +## List of 7 +## $ merge : int [1:20, 1:2] -8 -3 -6 -4 -16 -17 -5 -7 -2 -12 ... +## $ height : num [1:20] 158 172 269 280 328 428 460 460 521 668 ... +## $ order : int [1:21] 1 19 9 12 14 20 7 10 16 8 ... +## $ labels : chr [1:21] "Athens" "Barcelona" "Brussels" "Calais" ... +## $ method : chr "complete" +## $ call : language hclust(d = eurodist) +## $ dist.method: NULL +## - attr(*, "class")= chr "hclust" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\index{cluster analysis|)} + +%\subsection{Discriminant analysis}\label{sec:stat:DA} +%\index{discriminant analysis|(} +% +%In discriminant analysis the categories or groups to which objects belong are known \emph{a priori} for a training data set. The aim is to fit/build a classifier that will allow us to assign future observations to the different non-overlapping groups with as few mistakes as possible. +% +% +%\index{discriminant analysis|)} +\index{multivariate methods|)} + +\section{Further reading}\label{sec:stat:further:reading} + +Two recent text books\index{further reading!statistics in R} on statistics, following a modern approach, and using \Rlang for examples, are \citetitle{Diez2019} \autocite{Diez2019} and \citetitle{Holmes2019} \autocite{Holmes2019}. Three examples of books introducing statistical computations in \Rlang are \citetitle{Dalgaard2008} \autocite{Dalgaard2008}, \citetitle{Everitt2009} \autocite{Everitt2009} and \citetitle{Zuur2009} \autocite{Zuur2009}. More advanced books are available with detailed descriptions various types of analyses in \Rlang, including thorough descriptions of the methods briefly presented in this chapter. Good examples of books with broad scope are \citebooktitle{Crawley2012} \autocite{Crawley2012} and the classic reference \citebooktitle{Venables2002} \autocite{Venables2002}. More specific books are also available from which a few suggestions for further reading are \citebooktitle{Everitt2011} \autocite{Everitt2011}, \citebooktitle{Faraway2004} \autocite{Faraway2004}, \citebooktitle{Faraway2006} \autocite{Faraway2006}, \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000} and \citebooktitle{Wood2017} \autocite{Wood2017}. + + + + +% !Rnw root = appendix.main.Rnw + + +\chapter{The R language: Adding new ``words''}\label{chap:R:functions} + +\begin{VF} +Computer Science is a science of abstraction---creating the right model for a problem and devising the appropriate mechanizable techniques to solve it. + +\VA{Alfred V. Aho and Jeffrey D. Ullman}{\emph{Foundations of Computer Science}, 1992}\nocite{Aho1992} +\end{VF} + +%\dictum[Alfred V. Aho, Jeffrey D. Ullman, \emph{Foundations of Computer Science}, Computer Science Press, 1992]{Computer Science is a science of abstraction---creating the right model for a problem and devising the appropriate mechanizable techniques to solve it.}\vskip2ex + +\section{Aims of this chapter} + +In earlier chapters we have only used base \Rlang features. In this chapter you will learn how to expand the range of features available. In the first part of the chapter we will focus on using existing packages and how they expand the functionality of \Rlang. In the second part you will learn how to define new functions, operators and classes. We will not consider the important, but more advanced question of packaging functions and classes into new \Rlang packages. + +\section{Packages}\label{sec:script:packages} + +\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\index{CRAN}, 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. In January 2017, the number of packages available through CRAN passed the 10,000 mark. + +A key repository for bioinformatics with \Rlang is Bioconductor\index{Bioconductor}, containing packages that pass strict quality tests. Recently, ROpenScience\index{ROpenScience} has established guidelines and a system for code peer review for packages. These peer-reviewed packages are available through CRAN or other repositories and listed at the ROpenScience website. 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\index{GitHub}, Bitbucket\index{GitHub} 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). + +One good way of learning how the extensions provided by a package work, is by experimenting with them. When using a function we are not yet familiar with, looking at its help to check all its features will expand your ``toolbox.'' How much documentation is included with packages varies, while documentation of exported objects is enforced, many packages include, in addition, comprehensive user guides or articles as \emph{vignettes}. It is not unusual to decide which package to use from a set of alternatives based on the quality of available documentation. In the case of packages adding extensive new functionality, they may be documented in depth in a book. Well-known examples are \citebooktitle{Pinheiro2000} \autocite{Pinheiro2000}, \citebooktitle{Sarkar2008} \autocite{Sarkar2008} and \citebooktitle{Wickham2016} \autocite{Wickham2016}. + +\subsection{How packages work} + +The development of packages is beyond the scope of the current book, and thoroughly explained in the book \citebooktitle{Wickham2015} \autocite{Wickham2015}. However, it is still worthwhile mentioning a few things about the development of \Rpgrm packages. Using \RStudio it is relatively easy to develop your own packages. Packages can be of very different sizes and complexity. Packages use a relatively rigid structure of folders for storing the different types of files, including documentation compatible with \Rpgrm's built-in help system. This allows documentation for contributed packages to be seamlessly linked to \Rlang's help system when packages are loaded. In addition to \Rlang code, packages can call functions and routines written in \langname{C}, \langname{C++}, \langname{FORTRAN}, \langname{Java}, \langname{Python}, etc., but some kind of ``glue'' is needed, as function call conventions and \emph{name mangling} depend on the programming language, and in many cases also on the compiler used. For \langname{C++}, the \pkgname{Rcpp} \Rlang package makes the ``gluing'' relatively easy \autocite{Eddelbuettel2013}. In the case of \langname{Python}, \Rlang package \pkgname{reticulate} makes calling of \langname{Python} methods and exchange of data easy, and it is well supported by \RStudio. In the case of \langname{Java} we can use package \pkgname{RJava} instead. For \langname{C} and \langname{FORTRAN}, \Rlang provides the functionality needed, but the interface needs some ad hoc coding in most cases. + +Only objects exported by a package that has been attached are visible outside its own namespace. Loading and attaching a package with \Rfunction{library()} makes the exported objects available. Attaching a package adds the objects exported by the package to the search path so that they can be accessed without prepending the name of the namespace. Most packages do not export all the functions and objects defined in their code; some are kept internal, in most cases because they may change or be removed in future versions. Package namespaces can be detached and also unloaded with function \Rscoping{detach()} using a slightly different notation for the argument from that which we described for data frames in section \ref{sec:calc:df:with} on page \pageref{sec:calc:df:with}. + +\subsection{Download, installation and use} + +\index{packages!using} +In \Rlang speak, ``library'' is the location where packages are installed. Packages are sets of functions, and data, specific for some particular purpose, that can be loaded into an \Rlang session to make them available so that they can be used in the same way as built-in \Rlang functions and data. Function \Rfunction{library()} is used to load and attach packages that are already installed in the local \Rlang library. In contrast, function \Rfunction{install.packages()} is used to install packages. When using \RStudio it is easiest to use \RStudio menus (which call \Rfunction{install.packages()} and \Rfunction{update.packages()}) to install or update packages. + +\begin{playground} +Use \code{help} to look up the help pages for \Rfunction{install.packages()} and \Rfunction{library()}, and explain what the code in the next chunk does. +\end{playground} + +\Rpgrm packages can be installed either from sources, or from already built ``binaries''. Installing from sources, depending on the package, may require additional software to be available. Under \pgrmname{MS-Windows}, the needed shell, commands and compilers are not available as part of the operating system. Installing them is not difficult as they are available prepackaged in installers (you will need \pgrmname{RTools}, and \pgrmnameTwo{\hologo{MiKTeX}}{MiKTeX}). It is easier to install packages from binary \texttt{.zip} files under \pgrmname{MS-Windows}. Under Linux most tools will be available, or very easy to install, so it is usual to install packages from sources. For \pgrmname{OS X} (Apple Mac) the situation is somewhere in-between. If the tools are available, packages can be very easily installed from sources from within \RStudio. However, binaries are for most packages also readily available. + +\subsection{Finding suitable packages} + +Due to the large number of contributed \Rlang packages it can sometimes be difficult to find a suitable package for a task at hand. It is good to first check if the necessary capability is already built into base \Rlang. Base \Rlang plus the recommended packages (installed when \Rlang is installed) cover a lot of ground. To analyze data using almost any of the more common statistical methods does not require the use of special packages. Sometimes, contributed packages duplicate or extend the functionality in base \Rlang with advantage. When one considers the use of novel or specialized types of data analysis, the use of contributed packages can be unavoidable. Even in such cases, it is not unusual to have alternatives to choose from within the available contributed packages. Sometimes groups or suites of packages are designed to work well together. + +The CRAN repository has very broad scope and includes a section called ``views.'' \Rlang views are web pages providing annotated lists of packages frequently used within a given field of research, engineering or specific applications. These views are edited and updated by different editors. They can be found at \url{https://cran.r-project.org/web/views/}. + +The Bioconductor repository specializes in bioinformatics with \Rlang. It also has a section with ``views'' and within it, descriptions of different data analysis workflows. The workflows are especially good as they reveal which sets of packages work well together. These views can be found at \url{https://www.bioconductor.org/packages/release/BiocViews.html}. + +Although ROpenSci does not keep a separate package repository for the peer-reviewed packages, they do keep an index of them at \url{https://ropensci.org/packages/}. + +The CRAN repository keeps an archive of earlier versions of packages, on an individual package basis. METACRAN (\url{https://www.r-pkg.org/}) is an archive of repositories, that keeps a historical record as snapshots from CRAN. METACRAN uses a different search engine than CRAN itself, making it easier to search the whole repository. + +\section{Defining functions and operators}\label{sec:script:functions} +\index{functions!defining new}\index{operators!defining new} + +\emph{Abstraction} can be defined as separating the fundamental properties from the accidental ones. Say obtaining the mean from a given vector of numbers is an actual operation. There can be many such operations on different numeric vectors, each one a specific case. When we describe an algorithm for computing the mean from any numeric vector we have created the abstraction of \emph{mean}. In the same way, each time we separate operations from specific data we create a new abstraction. In this sense, functions are abstractions of operations or actions; they are like ``verbs'' describing actions separately from actors. + +The main role of functions is that of providing an abstraction allowing us to avoid repeating blocks of code (groups of statements) applying the same operations on different data. The reasons to avoid repetition of similar blocks of code statements are that 1) if the algorithm or implementation needs to be revised---e.g., to fix a bug or error---it is best to make edits in a single place; 2) sooner or later pieces of repeated code can become different leading to inconsistencies and hard-to-track bugs; 3) abstraction and division of a problem into smaller chunks, greatly helps with keeping the code understandable to humans; 4) textual repetition makes the script file longer, and this makes debugging, commenting, etc., more tedious, and error prone. + +How do we, in practice, avoid repeating bits of code? We write a function containing the statements that we would need to repeat, and later we \emph{call} (``use'') the function in their place. We have been calling \Rlang functions or operators in almost every example in this book; what we will next tackle is how to define new functions of our own. + +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} +\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{)} +\end{alltt} +\begin{verbatim} +## [1] 12 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +In base \Rlang, arguments\index{functions!arguments} to functions are passed by copy. This is something very important to remember. Whatever you do within a function to modify an argument, its value outside the function will remain (almost) always unchanged. (In other languages, arguments can also be passed by reference, meaning that assignments to a formal parameter within the body of the function are referenced to the argument and modify it. Such roundabout effects are frequently called side effects of a call. 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} +\begin{alltt} +\hlstd{my.change} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{x} \hlkwb{<-} \hlnum{NA}\hlstd{\}} +\hlstd{a} \hlkwb{<-} \hlnum{1} +\hlkwd{my.change}\hlstd{(a)} +\hlstd{a} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +In general, any result that needs to be made available outside the function must be returned by the function---or explicitly assigned to an object in the enclosing environment (i.e., using \Roperator{<<-} or \Rfunction{assign()}) as a side effect. + +A function can only return a single object, so when multiple results are produced they need to be collected into a single object. In many cases, lists are used to collect all the values to be returned into one \Rlang object. For example, model fit functions like \code{lm()}, discussed in section \ref{sec:stat:LM} on page \pageref{sec:stat:LM}, return a complex list with heterogeneous named members. +\end{warningbox} + +\begin{playground} +When function \Rcontrol{return()} is called within a function, flow of execution within the function stops and the argument passed +to \Rcontrol{return()} is the value returned by the function call. In contrast, if function \Rcontrol{return()} is not explicitly +called, the value returned by the function call is that returned by the last statement \emph{executed} within the body of the function. + +\label{chunck:print:funs} +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\begin{verbatim} +## [1] "test" +\end{verbatim} +\begin{alltt} +\hlstd{print.x.2} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{print}\hlstd{(x);} \hlkwd{return}\hlstd{(x)\}} +\hlkwd{print.x.2}\hlstd{(}\hlstr{"test"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "test" +## [1] "test" +\end{verbatim} +\begin{alltt} +\hlstd{print.x.3} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{return}\hlstd{(x);} \hlkwd{print}\hlstd{(x)\}} +\hlkwd{print.x.3}\hlstd{(}\hlstr{"test"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "test" +\end{verbatim} +\begin{alltt} +\hlstd{print.x.4} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{return}\hlstd{();} \hlkwd{print}\hlstd{(x)\}} +\hlkwd{print.x.4}\hlstd{(}\hlstr{"test"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\begin{alltt} +\hlstd{print.x.5} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{x\}} +\hlkwd{print.x.4}\hlstd{(}\hlstr{"test"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## NULL +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{playground} + +\begin{advplayground} +Test the behavior of functions \code{print.x.1()} and \code{print.x.5()}, as defined above, both at the command prompt, and in a script. The behavior of one of these functions will be different when the script is sourced than at the command prompt. Explain why. +\end{advplayground} + +Functions have their own scope. Any names created by normal assignment within the body of a function are visible only within the body of the function and disappear when the function returns from the call. In normal use, functions in \Rlang do not affect their environment through side effects. They receive input through arguments and return a value as the result of the call. This value can be either printed or assigned as we have seen when using functions earlier. + +\subsection{Ordinary functions}\label{sec:functions:sem} +\index{functions!defining new} + +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} +\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} +\end{kframe} +\end{knitrout} + +We can test our function. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\hlkwd{SEM}\hlstd{(}\hlkwc{x} \hlstd{= a)} +\end{alltt} +\begin{verbatim} +## [1] 1.796988 +\end{verbatim} +\begin{alltt} +\hlkwd{SEM}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] 1.796988 +\end{verbatim} +\begin{alltt} +\hlkwd{SEM}\hlstd{(a.na)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\end{kframe} +\end{knitrout} + +For example in \code{SEM(a)} we are calling function \Rfunction{SEM()} with \code{a} as an argument. + +The function we defined above will always give the correct answer because \code{NA} values in the input will always result in an \code{NA} being returned. The problem is that unlike \Rlang's functions like \code{var()}, there is no option to omit \code{NA} values in the function we defined. + +This could be implemented by adding a second parameter \code{na.omit} to the definition of our function and passing its argument to the call to \Rfunction{var()} within the body of \code{SEM()}. However, to avoid returning wrong values we need to make sure \code{NA} values are also removed before counting the number of observations with \code{length()}. + +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} +\begin{alltt} +\hlstd{sem} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{na.omit} \hlstd{=} \hlnum{FALSE}\hlstd{) \{} + \hlkwa{if} \hlstd{(na.omit) \{} + \hlstd{x} \hlkwb{<-} \hlkwd{na.omit}\hlstd{(x)} + \hlstd{\}} + \hlkwd{sqrt}\hlstd{(}\hlkwd{var}\hlstd{(x)}\hlopt{/}\hlkwd{length}\hlstd{(x))} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a)} +\end{alltt} +\begin{verbatim} +## [1] 1.796988 +\end{verbatim} +\begin{alltt} +\hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a.na)} +\end{alltt} +\begin{verbatim} +## [1] NA +\end{verbatim} +\begin{alltt} +\hlkwd{sem}\hlstd{(}\hlkwc{x} \hlstd{= a.na,} \hlkwc{na.omit} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 1.796988 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\Rlang does not provide a function for standard error, so the function above is generally useful. Its user interface is consistent with that of functionally similar existing functions. We have added a new word to the \Rlang vocabulary available to us. + +In the definition of \code{sem()} we set a default argument for parameter \code{na.omit} which is used unless the user explicitly passes an argument to this parameter. + +%In addition if names of the parameters are supplied arguments can be passed in any order. If parameter names are not supplied arguments are matched to parameters based on their position. Once one parameter name is given, all later arguments need also to be explicitly named. + +%We can assign to a variable defined `outside' a function with operator \code{<<-} but the usual recommendation is to avoid its use. This type of effects of calling a function are frequently called `side-effects'. + +\begin{playground} +Define your own function to calculate the mean in a similar way as \Rfunction{SEM()} was defined above. Hint: function \Rfunction{sum()} could be of help. +\end{playground} + +Functions can have much more complex and larger compound statements as their body than those in the examples above. Within an expression, a function name followed by parentheses is interpreted as a call to the function. The bare name of a function instead gives access to its definition. + +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} +\begin{alltt} +\hlstd{sem} +\end{alltt} +\begin{verbatim} +## function(x, na.omit = FALSE) { +## if (na.omit) { +## x <- na.omit(x) +## } +## sqrt(var(x)/length(x)) +## } +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{lm} +\end{alltt} +\begin{verbatim} +## function (formula, data, subset, weights, na.action, method = "qr", +## model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE, +## contrasts = NULL, offset, ...) +## { +## ret.x <- x +## ret.y <- y +## cl <- match.call() +## mf <- match.call(expand.dots = FALSE) +## m <- match(c("formula", "data", "subset", "weights", "na.action", +## "offset"), names(mf), 0L) +## mf <- mf[c(1L, m)] +## mf$drop.unused.levels <- TRUE +## mf[[1L]] <- quote(stats::model.frame) +## mf <- eval(mf, parent.frame()) +## if (method == "model.frame") +## return(mf) +## else if (method != "qr") +## warning(gettextf("method = '%s' is not supported. Using 'qr'", +## method), domain = NA) +## mt <- attr(mf, "terms") +## y <- model.response(mf, "numeric") +## w <- as.vector(model.weights(mf)) +## if (!is.null(w) && !is.numeric(w)) +## stop("'weights' must be a numeric vector") +## offset <- model.offset(mf) +## mlm <- is.matrix(y) +## ny <- if (mlm) +## nrow(y) +## else length(y) +## if (!is.null(offset)) { +## if (!mlm) +## offset <- as.vector(offset) +## if (NROW(offset) != ny) +## stop(gettextf("number of offsets is %d, should equal %d (number of observations)", +## NROW(offset), ny), domain = NA) +## } +## if (is.empty.model(mt)) { +## x <- NULL +## z <- list(coefficients = if (mlm) matrix(NA_real_, 0, +## ncol(y)) else numeric(), residuals = y, fitted.values = 0 * +## y, weights = w, rank = 0L, df.residual = if (!is.null(w)) sum(w != +## 0) else ny) +## if (!is.null(offset)) { +## z$fitted.values <- offset +## z$residuals <- y - offset +## } +## } +## else { +## x <- model.matrix(mt, mf, contrasts) +## z <- if (is.null(w)) +## lm.fit(x, y, offset = offset, singular.ok = singular.ok, +## ...) +## else lm.wfit(x, y, w, offset = offset, singular.ok = singular.ok, +## ...) +## } +## class(z) <- c(if (mlm) "mlm", "lm") +## z$na.action <- attr(mf, "na.action") +## z$offset <- offset +## z$contrasts <- attr(x, "contrasts") +## z$xlevels <- .getXlevels(mt, mf) +## z$call <- cl +## z$terms <- mt +## if (model) +## z$model <- mf +## if (ret.x) +## z$x <- x +## if (ret.y) +## z$y <- y +## if (!qr) +## z$qr <- NULL +## z +## } +## +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{list} +\end{alltt} +\begin{verbatim} +## function (...) .Primitive("list") +\end{verbatim} +\end{kframe} +\end{knitrout} + +\subsection{Operators} +\index{operators!defining new} + +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} +\begin{alltt} +\hlnum{1} \hlopt{/} \hlnum{2} +\end{alltt} +\begin{verbatim} +## [1] 0.5 +\end{verbatim} +\begin{alltt} +\hlkwd{`/`}\hlstd{(}\hlnum{1} \hlstd{,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.5 +\end{verbatim} +\begin{alltt} +\hlkwd{`/`}\hlstd{(}\hlkwc{e1} \hlstd{=} \hlnum{1} \hlstd{,} \hlkwc{e2} \hlstd{=} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +An important consequence of the possibility of calling operators using ordinary syntax is that operators can be used as arguments to \emph{apply} functions in the same way as ordinary functions. When passing operator names as arguments to \emph{apply} functions we only need to enclose them in back ticks (see section \ref{sec:data:apply} on page \pageref{sec:data:apply}). + +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} +\begin{alltt} +\hlstd{`/`} +\end{alltt} +\begin{verbatim} +## function (e1, e2) .Primitive("/") +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +\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} +\begin{alltt} +\hlstr{"%-mean%"} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{e1}\hlstd{,} \hlkwc{e2}\hlstd{) \{} + \hlstd{e1} \hlopt{-} \hlkwd{mean}\hlstd{(e2)} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlnum{10}\hlopt{:}\hlnum{15} \hlopt{%-mean%} \hlnum{1}\hlopt{:}\hlnum{20} +\end{alltt} +\begin{verbatim} +## [1] -0.5 0.5 1.5 2.5 3.5 4.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{`%-mean%`} +\end{alltt} +\begin{verbatim} +## function(e1, e2) { +## e1 - mean(e2) +## } +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{explainbox} + +\section{Objects, classes, and methods}\label{sec:script:objects:classes:methods}\label{sec:methods} +\index{objects}\index{classes}\index{methods}\index{object-oriented programming} +\index{S3 class system}\index{classes!S3 class system}\index{methods!S3 class system} +New classes are normally defined within packages rather than in user scripts. To be really useful implementing a new class involves not only defining a class but also a set of specialized functions or \emph{methods} that implement operations on objects belonging to the new class. Nevertheless, an understanding of how classes work is important even if only very occasionally a user will define a new method for an existing class within a script. + +Classes are abstractions, but abstractions describing the shared properties of ``types'' or groups of similar objects. In this sense, classes are abstractions of ``actors,'' they are like ``nouns'' in natural language. What we obtain with classes is the possibility of defining multiple versions of functions (or \emph{methods}) sharing the same name but tailored to operate on objects belonging to different classes. We have already been using methods with multiple \emph{specializations} throughout the book, for example \code{plot()} and \code{summary()}. + +We start with a quotation from \citebooktitle{Burns1998} \autocite[][, page 13]{Burns1998}. +\begin{quotation} +The idea of object-oriented programming is simple, but carries a lot of weight. +Here's the whole thing: if you told a group of people ``dress for work,'' then +you would expect each to put on clothes appropriate for that individual's job. +Likewise it is possible for S[R] objects to get dressed appropriately depending on +what class of object they are. +\end{quotation} + +We say that specific methods are \emph{dispatched} based on the class of the argument passed. This, together with the loose type checks of \Rlang, allows writing code that functions as expected on different types of objects, e.g., character and numeric vectors. + +\Rlang has good support for the object-oriented programming paradigm, but as a system that has evolved over the years, currently \Rlang supports multiple approaches. The still most popular approach is called S3, and a more recent and powerful approach, with slower performance, is called S4. The general idea is that a name like ``plot'' can be used as a generic name, and that the specific version of \Rfunction{plot()} called depends on the arguments of the call. Using computing terms we could say that the \emph{generic} of \Rfunction{plot()} dispatches the original call to different specific versions of \Rfunction{plot()} based on the class of the arguments passed. S3 generic functions dispatch, by default, based only on the argument passed to a single parameter, the first one. S4 generic functions can dispatch the call based on the arguments passed to more than one parameter and the structure of the objects of a given class is known to the interpreter. In S3 functions, the specializations of a generic are recognized/identified only by their name. And the class of an object by a character string stored as an attribute to the object. + +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} +\begin{alltt} +\hlstd{mean} +\end{alltt} +\begin{verbatim} +## function (x, ...) +## UseMethod("mean") +## +## +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{methods}\hlstd{(mean)} +\end{alltt} +\begin{verbatim} +## [1] mean.Date mean.default mean.difftime mean.POSIXct mean.POSIXlt +## see '?methods' for accessing help and source code +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{methods}\hlstd{(}\hlkwc{class} \hlstd{=} \hlstr{"list"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] all.equal as.data.frame coerce Ops relist +## [6] type.convert within +## see '?methods' for accessing help and source code +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{a} \hlkwb{<-} \hlnum{123} +\hlkwd{class}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] "numeric" +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(a)} \hlkwb{<-} \hlkwd{c}\hlstd{(}\hlstr{"myclass"}\hlstd{,} \hlkwd{class}\hlstd{(a))} +\hlkwd{class}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] "myclass" "numeric" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{print.myclass} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} + \hlkwd{sprintf}\hlstd{(}\hlstr{"[myclass] %.0f"}\hlstd{,} \hlkwd{as.numeric}\hlstd{(x))} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{print}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] "[myclass] 123" +\end{verbatim} +\begin{alltt} +\hlkwd{print}\hlstd{(}\hlkwd{as.numeric}\hlstd{(a))} +\end{alltt} +\begin{verbatim} +## [1] 123 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} + The S3 class system is ``lightweight'' in that it adds very little additional computation load, but it is rather ``fragile'' in that most of the responsibility for consistency and correctness of the design---e.g., not messing up dispatch by redefining functions or loading a package exporting functions with the same name, etc., is not checked by the \Rlang interpreter. + +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} +\begin{alltt} +\hlstd{my_print} \hlkwb{<-} \hlkwa{function} \hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} + \hlkwd{UseMethod}\hlstd{(}\hlstr{"my_print"}\hlstd{, x)} + \hlstd{\}} + +\hlstd{my_print.default} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{,} \hlkwc{...}\hlstd{) \{} + \hlkwd{print}\hlstd{(}\hlkwd{class}\hlstd{(x))} + \hlkwd{print}\hlstd{(x, ...)} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{my_print}\hlstd{(}\hlnum{123}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "numeric" +## [1] 123 +\end{verbatim} +\begin{alltt} +\hlkwd{my_print}\hlstd{(}\hlstr{"abc"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "character" +## [1] "abc" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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, ], ...)} + \hlkwd{invisible}\hlstd{(x)} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{my_print}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## speed dist +## 1 4 2 +## 2 4 10 +## 3 7 4 +## 4 7 22 +## 5 8 16 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{my_print}\hlstd{(cars,} \hlnum{8}\hlopt{:}\hlnum{10}\hlstd{)} +\end{alltt} +\begin{verbatim} +## speed dist +## 8 10 26 +## 9 10 34 +## 10 11 17 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{b} \hlkwb{<-} \hlkwd{my_print}\hlstd{(cars)} +\end{alltt} +\begin{verbatim} +## speed dist +## 1 4 2 +## 2 4 10 +## 3 7 4 +## 4 7 22 +## 5 8 16 +\end{verbatim} +\begin{alltt} +\hlkwd{str}\hlstd{(b)} +\end{alltt} +\begin{verbatim} +## 'data.frame': 50 obs. of 2 variables: +## $ speed: num 4 4 7 7 8 9 10 10 10 11 ... +## $ dist : num 2 10 4 22 16 10 18 26 34 17 ... +\end{verbatim} +\begin{alltt} +\hlkwd{nrow}\hlstd{(b)} \hlopt{==} \hlkwd{nrow}\hlstd{(cars)} \hlcom{# was the whole data frame returned?} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +%\begin{playground} +%1) What would be the most concise way of defining a \code{my\_print()} specialization for \code{matrix}? Write one, and test it. +%2) How would you modify the code of your \code{my\_print.matrix()} so that also the columns to print can be selected? +%\end{playground} +% +\end{explainbox} + +\section{Scope of names} +\index{names and scoping}\index{scoping rules}\index{namespaces} + +The visibility of names is determined by the \emph{scoping rules} of a language. The clearest, but not the only situation when scoping rules matter, is when objects with the same name coexist. In such a situation one will be accessible by its unqualified name and the other hidden but possibly accessible by qualifying the name with its name space. + +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} +\begin{alltt} +\hlstd{pi} +\end{alltt} +\begin{verbatim} +## [1] 3.141593 +\end{verbatim} +\begin{alltt} +\hlstd{pi} \hlkwb{<-} \hlstr{"apple pie"} +\hlstd{pi} +\end{alltt} +\begin{verbatim} +## [1] "apple pie" +\end{verbatim} +\begin{alltt} +\hlkwd{rm}\hlstd{(pi)} +\hlstd{pi} +\end{alltt} +\begin{verbatim} +## [1] 3.141593 +\end{verbatim} +\begin{alltt} +\hlkwd{exists}\hlstd{(}\hlstr{"pi"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{my.pie} \hlkwb{<-} \hlstr{"raspberry pie"} +\hlstd{my.pie} +\end{alltt} +\begin{verbatim} +## [1] "raspberry pie" +\end{verbatim} +\begin{alltt} +\hlstd{my.pie} \hlkwb{<-} \hlstr{"apple pie"} +\hlstd{my.pie} +\end{alltt} +\begin{verbatim} +## [1] "apple pie" +\end{verbatim} +\begin{alltt} +\hlkwd{rm}\hlstd{(my.pie)} +\hlkwd{exists}\hlstd{(}\hlstr{"my.pie"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +An additional important thing to remember is that \Rlang packages define all objects within a \emph{namespace} with the same name as the package itself. This means that when we reuse a name defined in a package, its definition in the package does not get overwritten, but instead, only hidden and still accessible using the name \emph{qualified} by prepending the name of the package followed by two colons. + +If two packages define objects with the same name, then which one is visible depends on the order in which the packages were attached. To avoid confusion in such cases, in scripts is best to use the qualified names for calling both definitions. + +\section{Further reading} + +An\index{further reading!object oriented programming in R} in-depth discussion of object-oriented programming in \Rlang is outside the scope of this book. For the non-programmer user, a basic understanding of \Rlang classes can be useful, even if he or she does not intend to create new classes. This basic knowledge is what we covered in this chapter. Several books describe in detail the different class systems available and how to use them in \Rlang packages. For an in-depth treatment of the subject please consult the books \citebooktitle{Wickham2019} \autocite{Wickham2019} and \citebooktitle{Chambers2016} \autocite{Chambers2016}. + +The\index{further reading!package development} development of packages is thoroughly described in the book \citebooktitle{Wickham2015} \autocite{Wickham2015} and an in-depth description of \Rlang from the programming perspective is given in the book \citebooktitle{Wickham2019} \autocite{Wickham2019}. The book \citebooktitle{Chambers2016} \autocite{Chambers2016} covers both subjects. + + + + + +% !Rnw root = appendix.main.Rnw + + + +\chapter{New grammars of data}\label{chap:R:data} + +\begin{VF} +Essentially everything in S[R], for instance, a call to a function, is an S[R] object. One viewpoint is that S[R] has self-knowledge. This self-awareness makes a lot of things possible in S[R] that are not in other languages. + +\VA{Patrick J. Burns}{\emph{S Poetry}, 1998}\nocite{Burns1998} +\end{VF} + +%\dictum[Patrick J. Burns (1998) S Poetry. \url{http://www.burns-stat.com/documents/books/s-poetry/}]{Essentially everything in S[R], for instance, a call to a function, is an S[R] object. One viewpoint is that S[R] has self-knowledge. This self-awareness makes a lot of things possible in S[R] that are not in other languages.} + +\section{Aims of this chapter} + +Base \Rlang and the recommended extension packages (installed by default) include many functions for manipulating data. The \Rlang distribution supplies a complete set of functions and operators that allow all the usual data manipulation operations. These functions have stable and well-described behavior, so they should be preferred unless some of their limitations justify the use of alternatives defined in contributed packages. In the present chapter we aim at describing the new syntaxes introduced by the most popular of these contributed \Rlang extension packages aiming at changing (usually improving one aspect at the expense of another) in various ways how we can manipulate data in \Rlang. These independently developed packages extend the \Rlang language not only by adding new ``words'' to it but by supporting new ways of meaningfully connecting ``words''---i.e., providing new ``grammars'' for data manipulation. + +\section{Introduction} + +By reading previous chapters, you have already become familiar with base \Rlang classes, methods, functions and operators for storing and manipulating data. Most of these had been originally designed to perform optimally on rather small data sets \autocite[see][]{Matloff2011}. The \Rlang implementation has been improved over the years significantly in performance, and random-access memory in computers has become cheaper, making constraints imposed by the original design of \Rlang less limiting, but on the other hand, the size of data sets has also increased. Some contributed packages have aimed at improving performance by relying on different compromises between usability, speed and reliability than used for base \Rlang. + +Package \pkgname{data.table} is the best example of an alternative implementation of data storage that maximizes the speed of processing for large data sets using a new semantics and requiring a new syntax. We could say that package \pkgname{data.table} is based on a ``grammar of data'' that is different from that in the \Rlang language. The compromise in this case has been the use of a less intuitive syntax, and by defaulting to call by reference of arguments instead of by copy, increasing the ``responsibility'' of the author of code defining new functions. + +When a computation includes a chain of sequential operations, if using base \Rlang, we can either store at each step in the computation the returned value in a variable, or nest multiple function calls. The first approach is verbose, but allows readable scripts, especially if variable names are wisely chosen. The second approach becomes very difficult too read as soon as there is more than one nesting level. Attempts to find an alternative syntax have borrowed the concept of data \emph{pipes} from Unix shells \autocite{Kernigham1981}. Interestingly, that it has been possible to write packages that define the operators needed to ``add'' this new syntax to \Rlang is a testimony to its flexibility and extensibility. Two packages, \pkgname{magrittr} and \pkgname{wrapr}, define operators for pipe-based syntax. + +A different aspect of the \Rlang syntax is extraction of members from lists and data frames by name. Base \Rlang provides two different operators for this, \code{\$} and \code{[[]]}, with different syntax. These two operators also differ in how \emph{incomplete names} are handled. Package \pkgname{tibble} alters this syntax for an alternative to base \Rlang's data frames. Once again, a new syntax allows new functionality at the expense of partial incompatibility with base \Rlang syntax. Objects of class \code{"tb"} were also an attempt to improve performance compared to objects of class \code{"data.frame"}. \Rlang performance has improved in recent releases and currently, even though performance is not the same, depending on the operations and data, either \Rlang's data frames or tibbles perform better. + +Base \Rlang function \Rfunction{subset()} has an unusual syntax, as it evaluates the expression passed as the second argument within the namespace of the data frame passed as its first argument (see \ref{sec:calc:df:with} on page \pageref{sec:calc:df:with}). This saves typing at the expense of increasing the risk of bugs, as by reading the call to subset, it is not obvious which names are resolved in the environment of \code{subset()} and which ones within its first argument---i.e., as column names in the data frame. In addition, changes elsewhere in a script can change how a call to subset is interpreted. In reality, subset is a wrapper function built on top of the extraction operator \code{[]}. It is a convenience function, mostly intended to be used at the console, rather than in scripts or package code. To extract rows from a data frame it is always best to use the \code{[ , ]} operator. + +Package \pkgname{dplyr} provides convenience functions that work in a similar way as base \Rlang \code{subset()}, although in latest versions more safely. This package has suffered quite drastic changes during its development with respect to how to handle the dilemma caused by ``guessing'' of the environment where names should be looked up. There is no easy answer; a simplified syntax leads to ambiguity, and a fully specified syntax is verbose. Recent versions of the package introduced a terse syntax to achieve a concise way of specifying where to look up names. My opinion is that for code that needs to be highly reliable and produce reproducible results in the future, we should for the time being prefer base \Rlang. For code that is to be used once, or for which reproducibility can depend on the use of a specific (old or soon to be old) version of \pkgname{dplyr}, or which is not a burden to update, the conciseness and power of the new syntax will be an advantage. + +In this chapter you will become familiar with alternative ``grammars of data'' as implemented in some of the packages that enable new approaches to manipulating data in \Rlang. As in previous chapters I will focus more on the available tools and how to use them than on their role in the analysis of data. The books \citebooktitle{Wickham2017} \autocite{Wickham2017} and \citebooktitle{Peng2016} \autocite{Peng2016} partly cover the same subjects from the perspective of data analysis. + +\section{Packages used in this chapter} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_data)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{library}\hlstd{(learnrbook)} +\hlkwd{library}\hlstd{(tibble)} +\hlkwd{library}\hlstd{(magrittr)} +\hlkwd{library}\hlstd{(wrapr)} +\hlkwd{library}\hlstd{(stringr)} +\hlkwd{library}\hlstd{(dplyr)} +\hlkwd{library}\hlstd{(tidyr)} +\hlkwd{library}\hlstd{(lubridate)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\section[Replacements for \texttt{data.frame}]{Replacements for \code{data.frame}} +\index{data frame!replacements|(} +\subsection{\pkgname{data.table}} +The function call semantics of the \Rlang language is that arguments are passed to functions by copy. If the arguments are modified within the code of a function, these changes are local to the function. If implemented naively, this semantic would impose a huge toll on performance, however, \Rlang in most situations only makes a copy if and when the value changes. Consequently, for modern versions of \Rlang which are very good at avoiding unnecessary copying of objects, the normal \Rlang semantics has only a moderate negative impact on performance. However, this impact can still be a problem as modification is detected at the object level, and consequently \Rlang may make copies of a whole data frame when only values in a single column or even just an attribute have changed. + +Functions and methods from package \pkgname{data.table} use arguments by reference, avoiding making any copies. However, any assignments within these functions and methods modify the variable passed as an argument. This simplifies the needed tests for delayed copying and also by avoiding the need to make a copy of arguments, achieves the best possible performance. This is a specialized package but extremely useful when dealing with very large data sets. Writing user code, such as scripts, with \pkgname{data.table} requires a good understanding of the pass-by-reference semantics. Obviously, package \pkgname{data.table} makes no attempt at backwards compatibility with base-\Rlang \code{data.frame}. + +\subsection{\pkgname{tibble}}\label{sec:data:tibble} +\index{tibble!differences with data frames|(} + +The authors of package \pkgname{tibble} describe their \Rclass{tbl} class as backwards compatible with \Rclass{data.frame} and make it a derived class. This backwards compatibility is only partial so in some situations data frames and tibbles are not equivalent. + +The class and methods that package \pkgname{tibble} defines lift some of the restrictions imposed by the design of base \Rlang data frames at the cost of creating some incompatibilities due to changed (improved) syntax for member extraction and by adding support for ``columns'' of class \Rclass{list} and removing support for columns of class \Rclass{matrix}. Handling of attributes is also different, with no row names added by default. There are also differences in default behavior of both constructors and methods. Although, objects of class \Rclass{tbl} can be passed as arguments to functions that expect data frames as input, these functions are not guaranteed to work correctly as a result of the differences in syntax. + +\begin{warningbox} +It is easy to write code that will work correctly both with data frames and tibbles. However, code that is syntactically correct according to the \Rlang language may fail if a tibble is used in place of a data frame. +\end{warningbox} + +\begin{explainbox} + 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 differently even adding color highlighting for negative numbers. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{tibble}\hlstd{(}\hlkwc{A} \hlstd{= LETTERS[}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{],} \hlkwc{B} \hlstd{=} \hlopt{-}\hlnum{2}\hlopt{:}\hlnum{2}\hlstd{,} \hlkwc{C} \hlstd{=} \hlkwd{seq}\hlstd{(}\hlkwc{from} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{to} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{length.out} \hlstd{=} \hlnum{5}\hlstd{))} +\end{alltt} +\begin{verbatim} +## # A tibble: 5 x 3 +## A B C +## +## 1 A -2 1 +## 2 B -1 0.75 +## 3 C 0 0.5 +## 4 D 1 0.25 +## 5 E 2 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The default number of rows printed can be set with options, that we set here to only three rows for most of this chapter. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{kframe} +\end{knitrout} +\end{explainbox} + +\begin{infobox} +In their first incarnation, the name for \Rclass{tibble} was \code{data\_frame} (with a dash instead of a dot). The old name is still recognized, but its use should be avoided and \Rfunction{tibble()} used instead. 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}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{inherits}\hlstd{(my.tb,} \hlstr{"tibble"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(my.tb)} +\end{alltt} +\begin{verbatim} +## [1] "tbl_df" "tbl" "data.frame" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Furthermore, by necessity, to support tibbles based on different underlying data sources, a further derived class is needed. In our example, as our tibble has an underlying \code{data.frame} class, the most derived class of \code{my.tb} is \Rclass{tbl\_df}. +\end{infobox} + +We start with the constructor and conversion methods. For this we will define our own diagnosis function (\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} +\begin{alltt} +\hlstd{show_classes} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} + \hlkwd{cat}\hlstd{(} + \hlkwd{paste}\hlstd{(}\hlkwd{paste}\hlstd{(}\hlkwd{class}\hlstd{(x)[}\hlnum{1}\hlstd{],} + \hlstr{"containing:"}\hlstd{),} + \hlkwd{paste}\hlstd{(}\hlkwd{names}\hlstd{(x),} + \hlkwd{sapply}\hlstd{(x, class),} \hlkwc{collapse} \hlstd{=} \hlstr{", "}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{": "}\hlstd{),} + \hlkwc{sep} \hlstd{=} \hlstr{"\textbackslash{}n"}\hlstd{)} + \hlstd{)} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +In the next two chunks we can see some of the differences. The \Rfunction{tibble()} constructor does not by default convert character data into factors, while the \Rfunction{data.frame()} constructor does. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is_tibble}\hlstd{(my.df)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{show_classes}\hlstd{(my.df)} +\end{alltt} +\begin{verbatim} +## data.frame containing: +## codes: factor, numbers: integer, integers: integer +\end{verbatim} +\end{kframe} +\end{knitrout} + +Tibbles are 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} +\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)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is_tibble}\hlstd{(my.tb)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{show_classes}\hlstd{(my.tb)} +\end{alltt} +\begin{verbatim} +## tbl_df containing: +## codes: character, numbers: integer, integers: integer +\end{verbatim} +\end{kframe} +\end{knitrout} + +The \Rfunction{print()} method for tibbles, overrides the one defined for data frames. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{print}\hlstd{(my.df)} +\end{alltt} +\begin{verbatim} +## codes numbers integers +## 1 A 1 1 +## 2 B 2 2 +## 3 C 3 3 +\end{verbatim} +\begin{alltt} +\hlkwd{print}\hlstd{(my.tb)} +\end{alltt} +\begin{verbatim} +## # A tibble: 3 x 3 +## codes numbers integers +## +## 1 A 1 1 +## 2 B 2 2 +## 3 C 3 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Tibbles and data frames differ in how they are printed when they have many rows or columns. 1) Construct a data frame and an equivalent tibble with at least 50 rows and then test how the output looks when they are printed. 2) Construct a data frame and an equivalent tibble with more columns than will fit in the width of the \R console and then test how the output looks when they are printed. +\end{playground} + +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} +\begin{alltt} +\hlstd{my_conv.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(my.df)} +\hlkwd{is.data.frame}\hlstd{(my_conv.tb)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is_tibble}\hlstd{(my_conv.tb)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{show_classes}\hlstd{(my_conv.tb)} +\end{alltt} +\begin{verbatim} +## tbl_df containing: +## codes: factor, numbers: integer, integers: integer +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{is_tibble}\hlstd{(my_conv.df)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{show_classes}\hlstd{(my_conv.df)} +\end{alltt} +\begin{verbatim} +## data.frame containing: +## codes: character, numbers: integer, integers: integer +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Look carefully at the result of the conversions. Why do we now have a data frame with \code{A} as \code{character} and a tibble with \code{A} as a \code{factor}? +\end{playground} + +\begin{explainbox} +Not all conversion functions work consistently when converting from a derived class into its parent. The reason for this is disagreement between authors on what the \emph{correct} behavior is based on logic and theory. You are not likely to be hit by this problem frequently, but it can be difficult to diagnose. + +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} +\begin{alltt} +\hlkwd{class}\hlstd{(my.tb)} +\end{alltt} +\begin{verbatim} +## [1] "tbl_df" "tbl" "data.frame" +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(my_conv.df)} +\end{alltt} +\begin{verbatim} +## [1] "data.frame" +\end{verbatim} +\begin{alltt} +\hlstd{my.tb} \hlopt{==} \hlstd{my_conv.df} +\end{alltt} +\begin{verbatim} +## codes numbers integers +## [1,] TRUE TRUE TRUE +## [2,] TRUE TRUE TRUE +## [3,] TRUE TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{identical}\hlstd{(my.tb, my_conv.df)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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))} +\hlkwd{class}\hlstd{(my.xtb)} +\end{alltt} +\begin{verbatim} +## [1] "xtb" "tbl_df" "tbl" "data.frame" +\end{verbatim} +\begin{alltt} +\hlstd{my_conv_x.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(my.xtb)} +\hlkwd{class}\hlstd{(my_conv_x.tb)} +\end{alltt} +\begin{verbatim} +## [1] "tbl_df" "tbl" "data.frame" +\end{verbatim} +\begin{alltt} +\hlstd{my.xtb} \hlopt{==} \hlstd{my_conv_x.tb} +\end{alltt} +\begin{verbatim} +## codes numbers integers +## [1,] TRUE TRUE TRUE +## [2,] TRUE TRUE TRUE +## [3,] TRUE TRUE TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{identical}\hlstd{(my.xtb, my_conv_x.tb)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +The two viewpoints on conversion functions are as follows. 1) The conversion function should return an object of its corresponding class, even if the argument is an object of a derived class, stripping the derived class. 2) If the object is of the class to be converted to, including objects of derived classes, then it should remain untouched. Base \Rlang follows, as far as I have been able to work out, approach 1). Packages in the \pkgname{tidyverse} follow approach 2). If in doubt about the behavior of some function, then you will need to do a test similar to the one used in this box. +\end{explainbox} + +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} +\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} +\begin{verbatim} +## # A tibble: 5 x 4 +## a b c d +## +## 1 1 5 6 b +## 2 2 4 6 c +## 3 3 3 6 d +## # ... with 2 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +What is the behavior if you replace \Rfunction{tibble()} by \Rfunction{data.frame()} in the statement above? +\end{playground} + +While data frame columns can be factors, vectors or matrices (with the same number of rows as the data frame), columns of tibbles can be factors, vectors or lists (with the same number of members as rows the tibble has). + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## # A tibble: 5 x 3 +## a b c +## +## 1 1 5 +## 2 2 4 +## 3 3 3 +## # ... with 2 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +Which even allows a list of lists as a variable, or a list of vectors. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\begin{verbatim} +## # A tibble: 5 x 3 +## a b c +## +## 1 1 5 +## 2 2 4 +## 3 3 3 +## # ... with 2 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} +\index{tibble!differences with data frames|)} +\index{data frame!replacements|)} + +\section{Data pipes}\label{sec:data:pipes} +\index{chaining statements with \emph{pipes}|(} +The first obvious difference between scripts using some of the new grammars is the frequent use of \emph{pipes}. This is, however, mostly a question of preferences, as pipes can be used equally well with base \Rlang functions. Pipes have been at the core of shell scripting in \osname{Unix} since early stages of its design \autocite{Kernigham1981}. 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 transformation takes place. In \osname{Unix}, sinks and sources are files, but files as an abstraction include all devices and connections for input or output, including physical ones as terminals and printers. The connection between steps in the pipe is usually implemented by means of temporary files. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +stdin | grep("abc") | more +\end{alltt} +\end{kframe} +\end{knitrout} + +How can \emph{pipes} exist within a single \Rlang script? When chaining functions into a pipe, data is passed between them through temporary \Rlang objects stored in memory, which are created and destroyed automatically. Conceptually there is little difference between Unix shell pipes and pipes in \Rlang scripts, but the implementations are different. + +What do pipes achieve in \Rlang scripts? They relieve the user from the responsibility of creating and deleting the temporary objects and of enforcing the sequential execution of the different steps. Pipes usually improve readability of scripts by allowing more concise code. + +Currently, two main implementations of pipes are available as \Rlang extensions, in packages \pkgnameNI{magrittr} and \pkgnameNI{wrapr}. + +\subsection{\pkgname{magrittr}} +\index{pipes!tidyverse|(} +\index{pipe operator} +One set of operators needed to build pipes of \Rlang functions is implemented in package \pkgname{magrittr}. This implementation is used in the \pkgname{tidyverse} and the pipe operator re-exported by package \pkgname{dplyr}. + +We start with a toy example first written using separate steps and normal \Rlang syntax + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{data.in} \hlkwb{<-} \hlnum{1}\hlopt{:}\hlnum{10} +\hlstd{data.tmp} \hlkwb{<-} \hlkwd{sqrt}\hlstd{(data.in)} +\hlstd{data.out} \hlkwb{<-} \hlkwd{sum}\hlstd{(data.tmp)} +\hlkwd{rm}\hlstd{(data.tmp)} \hlcom{# clean up!} +\end{alltt} +\end{kframe} +\end{knitrout} + +next using nested function calls still using normal \Rlang syntax + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{data.out} \hlkwb{<-} \hlkwd{sum}\hlstd{(}\hlkwd{sqrt}\hlstd{(data.in))} +\end{alltt} +\end{kframe} +\end{knitrout} + +written as a pipe using the chaining operator from package \pkgname{magrittr}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{data.in} \hlopt{%>%} \hlkwd{sqrt}\hlstd{()} \hlopt{%>%} \hlkwd{sum}\hlstd{()} \hlkwb{->} \hlstd{data.out} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +The \Roperator{\%>\%} from package \pkgname{magrittr} takes two operands. The value returned by the \emph{lhs} (left-hand side) operand, which can be any \Rlang expression, is passed as first argument to the \emph{rhs} operand, which must be a function accepting at least one argument. Consequently, in this implementation, the function in the \emph{rhs} must have a suitable signature for the pipe to work implicitly as usually used. However, it is possible to pass piped arguments to a function by name or to other parameters than the first one using a dot (\code{.}) as placeholder. + +Some base \Rlang functions like \code{subset()} have a signature that is suitable for use in \pkgname{magrittr} pipes using implicit passing of the piped value to the first argument, while others such as \code{assign()} will not. In such cases we can use \code{.} as a placeholder and pass it as an argument, or, alternatively, define a wrapper function to change the order of the formal parameters in the function signature. +\end{explainbox} + +Package \pkgname{magrittr} provides additional pipe operators, such as ``tee'' (\Roperator{\%T>\%}) to create a branch in the pipe, and \Roperator{\%<>\%} to apply the pipe by reference. These operators are less frequently used than \Roperator{\%>\%}. +\index{pipes!tidyverse|)} + +\subsection{\pkgname{wrapr}} +\index{pipes!wrapr|(} +\index{dot-pipe operator} +The \Roperator{\%.>\%}, or ``dot-pipe'' operator from package \pkgname{wrapr}, allows expressions both on the rhs and lhs, and enforces the use of the dot (\code{.}), as placeholder for the piped object. + +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} +\begin{alltt} +\hlstd{data.in} \hlopt{%.>%} \hlkwd{sqrt}\hlstd{(.)} \hlopt{%.>%} \hlkwd{sum}\hlstd{(.)} \hlkwb{->} \hlstd{data1.out} +\end{alltt} +\end{kframe} +\end{knitrout} +However, the same code can use the pipe operator from \pkgname{magrittr}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{(data1.out, data2.out)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +If needed or desired, named arguments are supported with the dot-pipe operator resulting in the expected behavior. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{data.in} \hlopt{%.>%} \hlkwd{assign}\hlstd{(}\hlkwc{value} \hlstd{= .,} \hlkwc{x} \hlstd{=} \hlstr{"data3.out"}\hlstd{)} +\hlkwd{all.equal}\hlstd{(data.in, data3.out)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +In contrast, the pipe operator silently and unexpectedly fails to create the variable for the same example. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{data.in} \hlopt{%>%} \hlkwd{assign}\hlstd{(}\hlkwc{value} \hlstd{= .,} \hlkwc{x} \hlstd{=} \hlstr{"data4.out"}\hlstd{)} +\hlkwd{exists}\hlstd{(}\hlstr{"data4.out"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +The dot-pipe operator allows us to use \code{.} in expressions as shown below, while \Roperator{\%>\%} fails with an error (not shown). + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{data.in} \hlopt{%.>%} \hlstd{(}\hlnum{2} \hlopt{+} \hlstd{.}\hlopt{^}\hlnum{2}\hlstd{)} \hlopt{%.>%} \hlkwd{assign}\hlstd{(}\hlstr{"data1.out"}\hlstd{, .)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +In conclusion, \Rlang syntax for expressions is preserved when using the dot-pipe operator, 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. +\end{explainbox} + +Under-the-hood, the implementations of \Roperator{\%>\%} and \Roperator{\%.>\%} are very different, with \Roperator{\%.>\%} usually having better performance. + +In the rest of the book we will exclusively use \emph{dot pipes} in examples to ensure easier understanding as they avoid implicit (''invisible'') passing of arguments and impose fewer restrictions on the syntax that can be used. + +Although pipes can make scripts visually very different from the use of assignments of intermediate results to variables, from the point of view of data analysis what makes pipes most convenient to use are some of the new classes, functions, and methods defined in \pkgnameNI{tidyr}, \pkgnameNI{dplyr}, and other packages from the \pkgname{tidyverse}. +\index{pipes!wrapr|)} +\index{chaining statements with \emph{pipes}|)} + +\section{Reshaping with \pkgname{tidyr}} +\index{reshaping tibbles|(} +\index{long-form- and wide-form tabular data} +Data stored in table-like formats can be arranged in different ways. In base \Rlang most model fitting functions and the \Rfunction{plot()} method using (model) formulas and accepting data frames, expect data to be arranged in ``long form'' so that each row in a data frame corresponds to a single observation (or measurement) event on a subject. Each column corresponds to a different measured feature, time of measurement, or a factor describing a classification of subjects according to treatments or features of the experimental design (e.g., blocks). Covariates measured on the same subject at an earlier point in time may also be stored in a column. Data arranged in \emph{long form} has been nicknamed as ``tidy'' and this is reflected in the name given to the \pkgname{tidyverse} suite of packages. Data in which columns correspond to measurement events is described as being in a \emph{wide form}. + +Although long-form data is and has been the most commonly used arrangement of data in \Rlang, manipulation of such data has not always been possible with concise \Rlang statements. The packages in the \pkgname{tidyverse} provide convenience functions to simplify coding of data manipulation, which in some cases, have, in addition, improved performance compared to base \Rlang---i.e., it is possible to code the same operations using only base \Rlang, but may require more and/or more verbose statements. + +Real-world data is rather frequently stored in wide format or even ad hoc formats, so in many cases the first task in data analysis is to reshape the data. Package \pkgname{tidyr} provides functions for reshaping data from wide to long form and \emph{vice versa} (replacing the older packages \pkgname{reshape} and \pkgname{reshape2}). + +%% replace iris with an example that is really ``wide'' +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} +\begin{alltt} +\hlstd{iris.tb} \hlkwb{<-} \hlkwd{as_tibble}\hlstd{(iris)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Function \Rfunction{gather()} converts data from wide form into long form (or ''tidy''). We use \code{gather} to obtain a long-form tibble. By comparing \code{iris.tb} with \code{long\_iris.tb} we can appreciate how \Rfunction{gather()} reshaped its input. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{head}\hlstd{(iris.tb,} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## # A tibble: 2 x 5 +## Sepal.Length Sepal.Width Petal.Length Petal.Width Species +## +## 1 5.1 3.5 1.4 0.2 setosa +## 2 4.9 3 1.4 0.2 setosa +\end{verbatim} +\begin{alltt} +\hlstd{iris.tb} \hlopt{%.>%} + \hlkwd{gather}\hlstd{(.,} \hlkwc{key} \hlstd{= part,} \hlkwc{value} \hlstd{= dimension,} \hlopt{-}\hlstd{Species)} \hlkwb{->} \hlstd{long_iris.tb} +\hlstd{long_iris.tb} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 3 +## Species part dimension +## +## 1 setosa Sepal.Length 5.1 +## 2 setosa Sepal.Length 4.9 +## 3 setosa Sepal.Length 4.7 +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +In this statement, we can see the convenience of dispensing with quotation marks for the new (\code{part} and \code{dimension}) and existing (\code{Species}) column names. Use of bare names as above triggers errors when package code is tested, requiring the use of a less convenient but more consistent and reliable syntax instead. As it is also possible to pass column names as strings but not together with the subtraction operator, equivalent code becomes more verbose but with the intention explicit and easier to grasp. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{long_iris.tb_1} \hlkwb{<-} \hlkwd{gather}\hlstd{(iris.tb,} \hlkwc{key} \hlstd{=} \hlstr{"part"}\hlstd{,} \hlkwc{value} \hlstd{=} \hlstr{"dimension"}\hlstd{,} \hlkwd{setdiff}\hlstd{(}\hlkwd{colnames}\hlstd{(iris.tb),} \hlstr{"Species"}\hlstd{))} +\hlstd{long_iris.tb_1} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 3 +## Species part dimension +## +## 1 setosa Sepal.Length 5.1 +## 2 setosa Sepal.Length 4.9 +## 3 setosa Sepal.Length 4.7 +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +\index{function arguments in the tidyverse} +Altering \Rlang's normal interpretation of the name passed as an argument to \code{key} and \code{value} prevents these arguments from being recognized as the name of a variable in the calling environment. We need to use a new operator \Roperator{!!} to restore the normal \Rlang behavior. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{part} \hlkwb{<-} \hlstr{"not part"} +\hlstd{long_iris.tb_2} \hlkwb{<-} \hlkwd{gather}\hlstd{(iris.tb,} \hlkwc{key} \hlstd{=} \hlopt{!!}\hlstd{part,} \hlkwc{value} \hlstd{= dimension,} \hlopt{-}\hlstd{Species)} +\hlstd{long_iris.tb_2} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 3 +## Species `not part` dimension +## +## 1 setosa Sepal.Length 5.1 +## 2 setosa Sepal.Length 4.9 +## 3 setosa Sepal.Length 4.7 +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +This syntax has been recently subject to debate and led to John Mount developing package \pkgname{seplyr} which provides wrappers on functions and methods from \pkgname{dplyr} that respect standard evaluation (SE). At the time of writing, \pkgname{seplyr} can be considered as experimental. +\end{warningbox} + +\begin{playground} +To better understand why I added \code{-Species} as an argument, edit the code by removing it, and execute the statement to see how the returned tibble is different. +\end{playground} + +For the reverse operation, converting from long form to wide form, we use \Rfunction{spread()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{spread}\hlstd{(long_iris.tb,} \hlkwc{key} \hlstd{=} \hlkwd{c}\hlstd{(}\hlopt{!!}\hlstd{part, Species),} \hlkwc{value} \hlstd{= dimension)} \hlcom{# does not work!!} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{warningbox} + Starting from version 1.0.0 of \pkgname{tidyr}, \Rfunction{gather()} and \Rfunction{spread()} are deprecated and replaced by \Rfunction{pivot\_longer()} and \Rfunction{pivot\_wider()}. These new functions use a different syntax but are not yet fully stable. +\end{warningbox} + +\index{reshaping tibbles|)} + +\section{Data manipulation with \pkgname{dplyr}} +\index{data manipulation in the tidyverse|(} +\begin{warningbox} +The first advantage a user of the \pkgname{dplyr} functions and methods sees is the completeness of the set of operations supported and the symmetry and consistency among the different functions. A second advantage is that almost all the functions are defined not only for objects of class \Rclass{tibble}, but also for objects of class \code{data.table} (packages \pkgname{dtplyr}) and for SQL databases (\pkgname{dbplyr}), with consistent syntax (see also section \ref{sec:data:db} on page \pageref{sec:data:db}). A further variant exists in package \pkgname{seplyr}, supporting a different syntax stemming from the use of ``standard evaluation'' (SE) instead of non-standard evaluation (NSE). A downside of \pkgname{dplyr} and much of the \pkgname{tidyverse} is that the syntax is not yet fully stable. Additionally, some function and method names either override those in base \Rlang or clash with names used in other packages. \Rlang itself is extremely stable and expected to remain forward and backward compatible for a long time. For code intended to remain in use for years, the fewer packages it depends on, the less maintenance it will need. When using the \pkgname{tidyverse} we need to be prepared to revise our own dependent code after any major revision to the \pkgname{tidyverse} packages we may use. +\end{warningbox} + +\subsection{Row-wise manipulations} +\index{row-wise operations on data|(} + +Assuming that the data is stored in long form, row-wise operations are operations combining values from the same observation event---i.e., calculations within a single row of a data frame or tibble. Using functions \Rfunction{mutate()} and \Rfunction{transmute()} we can obtain derived quantities by combining different variables, or variables and constants, or applying a mathematical transformation. We add new variables (columns) retaining existing ones using \Rfunction{mutate()} or we assemble a new tibble containing only the columns we explicitly specify using \Rfunction{transmute()}. + +\begin{explainbox} +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} +\begin{alltt} +\hlkwd{tibble}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{2} \hlopt{*} \hlstd{a)} +\end{alltt} +\begin{verbatim} +## # A tibble: 5 x 2 +## a b +## +## 1 1 2 +## 2 2 4 +## 3 3 6 +## # ... with 2 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} + +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 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} +\begin{alltt} +\hlstd{long_iris.tb} \hlopt{%.>%} + \hlkwd{mutate}\hlstd{(.,} + \hlkwc{plant_part} \hlstd{=} \hlkwd{str_extract}\hlstd{(part,} \hlstr{"^[:alpha:]*"}\hlstd{),} + \hlkwc{part_dim} \hlstd{=} \hlkwd{str_extract}\hlstd{(part,} \hlstr{"[:alpha:]*$"}\hlstd{))} \hlkwb{->} \hlstd{long_iris.tb} +\hlstd{long_iris.tb} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 5 +## Species part dimension plant_part part_dim +## +## 1 setosa Sepal.Length 5.1 Sepal Length +## 2 setosa Sepal.Length 4.9 Sepal Length +## 3 setosa Sepal.Length 4.7 Sepal Length +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +In the next few chunks, we print the returned values rather than saving them in variables. In normal use, one would combine these functions into a pipe using operator \Roperator{\%.>\%} (see section \ref{sec:data:pipes} on page \pageref{sec:data:pipes}). + +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} +\begin{alltt} +\hlkwd{arrange}\hlstd{(long_iris.tb, Species, plant_part, part_dim)} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 5 +## Species part dimension plant_part part_dim +## +## 1 setosa Petal.Length 1.4 Petal Length +## 2 setosa Petal.Length 1.4 Petal Length +## 3 setosa Petal.Length 1.3 Petal Length +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{filter}\hlstd{(long_iris.tb, plant_part} \hlopt{==} \hlstr{"Petal"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## # A tibble: 300 x 5 +## Species part dimension plant_part part_dim +## +## 1 setosa Petal.Length 1.4 Petal Length +## 2 setosa Petal.Length 1.4 Petal Length +## 3 setosa Petal.Length 1.3 Petal Length +## # ... with 297 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{slice}\hlstd{(long_iris.tb,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)} +\end{alltt} +\begin{verbatim} +## # A tibble: 5 x 5 +## Species part dimension plant_part part_dim +## +## 1 setosa Sepal.Length 5.1 Sepal Length +## 2 setosa Sepal.Length 4.9 Sepal Length +## 3 setosa Sepal.Length 4.7 Sepal Length +## # ... with 2 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{select}\hlstd{(long_iris.tb,} \hlopt{-}\hlstd{part)} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 4 +## Species dimension plant_part part_dim +## +## 1 setosa 5.1 Sepal Length +## 2 setosa 4.9 Sepal Length +## 3 setosa 4.7 Sepal Length +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{select}\hlstd{(iris.tb,} \hlopt{-}\hlkwd{starts_with}\hlstd{(}\hlstr{"Sepal"}\hlstd{))} +\end{alltt} +\begin{verbatim} +## # A tibble: 150 x 3 +## Petal.Length Petal.Width Species +## +## 1 1.4 0.2 setosa +## 2 1.4 0.2 setosa +## 3 1.3 0.2 setosa +## # ... with 147 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{select}\hlstd{(iris.tb, Species,} \hlkwd{matches}\hlstd{(}\hlstr{"pal"}\hlstd{))} +\end{alltt} +\begin{verbatim} +## # A tibble: 150 x 3 +## Species Sepal.Length Sepal.Width +## +## 1 setosa 5.1 3.5 +## 2 setosa 4.9 3 +## 3 setosa 4.7 3.2 +## # ... with 147 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{rename}\hlstd{(long_iris.tb,} \hlkwc{dim} \hlstd{= dimension)} +\end{alltt} +\begin{verbatim} +## # A tibble: 600 x 5 +## Species part dim plant_part part_dim +## +## 1 setosa Sepal.Length 5.1 Sepal Length +## 2 setosa Sepal.Length 4.9 Sepal Length +## 3 setosa Sepal.Length 4.7 Sepal Length +## # ... with 597 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} +\index{row-wise operations on data|)} + +\subsection{Group-wise manipulations} +\index{group-wise operations on data|(} + +Another important operation is to summarize quantities by groups of rows. Contrary to base \Rlang, the grammar of data manipulation, splits this operation in two: the setting of the grouping, and the calculation of summaries. This simplifies the code, making it more easily understandable when using pipes compared to the approach of base \Rlang \Rfunction{aggregate()}, and it also makes it easier to summarize several columns in a single operation. + +\begin{warningbox} +It is important to be aware that grouping is persistent, and may also affect other operations on the same data frame or tibble if it is saved or piped and reused. Grouping is invisible to users except for its side effects and because of this can lead to erroneous and surprising results from calculations. Do not save grouped tibbles or data frames, and always make sure that inputs and outputs, at the head and tail of a pipe, are not grouped, by using \Rfunction{ungroup()} when needed. +\end{warningbox} + +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} +\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{%.>%} + \hlkwd{summarise}\hlstd{(.,} + \hlkwc{mean_numbers} \hlstd{=} \hlkwd{mean}\hlstd{(numbers),} + \hlkwc{median_numbers} \hlstd{=} \hlkwd{median}\hlstd{(numbers),} + \hlkwc{n} \hlstd{=} \hlkwd{n}\hlstd{())} +\end{alltt} +\begin{verbatim} +## # A tibble: 3 x 4 +## letters mean_numbers median_numbers n +## +## 1 a 4 4 3 +## 2 b 5 5 3 +## 3 c 6 6 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +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} +\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)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(my.tb)} +\end{alltt} +\begin{verbatim} +## [1] "tbl_df" "tbl" "data.frame" +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my.tb))} +\end{alltt} +\begin{verbatim} +## [1] "names" "row.names" "class" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{class}\hlstd{(my_gr.tb)} +\end{alltt} +\begin{verbatim} +## [1] "grouped_df" "tbl_df" "tbl" "data.frame" +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my_gr.tb))} +\end{alltt} +\begin{verbatim} +## [1] "names" "row.names" "class" "groups" +\end{verbatim} +\begin{alltt} +\hlkwd{setdiff}\hlstd{(}\hlkwd{attributes}\hlstd{(my_gr.tb),} \hlkwd{attributes}\hlstd{(my.tb))} +\end{alltt} +\begin{verbatim} +## [[1]] +## [1] "grouped_df" "tbl_df" "tbl" "data.frame" +## +## [[2]] +## # A tibble: 3 x 2 +## letters .rows +## +## 1 a +## 2 b +## 3 c +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{my_ugr.tb} \hlkwb{<-} \hlkwd{ungroup}\hlstd{(my_gr.tb)} +\hlkwd{class}\hlstd{(my_ugr.tb)} +\end{alltt} +\begin{verbatim} +## [1] "tbl_df" "tbl" "data.frame" +\end{verbatim} +\begin{alltt} +\hlkwd{names}\hlstd{(}\hlkwd{attributes}\hlstd{(my_ugr.tb))} +\end{alltt} +\begin{verbatim} +## [1] "names" "row.names" "class" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{all}\hlstd{(my.tb} \hlopt{==} \hlstd{my_gr.tb)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{all}\hlstd{(my.tb} \hlopt{==} \hlstd{my_ugr.tb)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{identical}\hlstd{(my.tb, my_gr.tb)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{identical}\hlstd{(my.tb, my_ugr.tb)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +The tests above show that members are in all cases the same as operator \Roperator{==} tests for equality at each position in the tibble but not the attributes, while attributes, including \code{class} differ between normal tibbles and grouped ones and so they are not \emph{identical} objects. + +If we replace \code{tibble} by \code{data.frame} in the first statement, and rerun the chunk, the result of the last statement in the chunk is \code{FALSE} instead of \code{TRUE}. At the time of writing starting with a \code{data.frame} object, applying grouping with \Rfunction{group\_by()} followed by ungrouping with \Rfunction{ungroup()} has the side effect of converting the data frame into a tibble. This is something to be very much aware of, as there are differences in how the extraction operator \Roperator{[ , ]} behaves in the two cases. The safe way to write code making use of functions from \pkgname{dplyr} and \pkgname{tidyr} is to always use tibbles instead of data frames. +\end{warningbox} +\index{group-wise operations on data|)} + +\subsection{Joins} +\index{joins between data sources|(} +\index{merging data from two tibbles|(} +Joins allow us to combine two data sources which share some variables. Variables in common are used to match the corresponding rows before ``joining'' variables (i.e., columns) from both sources together. There are several \emph{join} functions in \pkgname{dplyr}. They differ mainly in how they handle rows that do not have a match between data sources. + +We create here some artificial data to demonstrate the use of these functions. We will create two small tibbles, with one column in common and one mismatched row in each. + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Below we apply the \emph{}\index{joins between data sources!mutating} functions exported by \pkgname{dplyr}: \Rfunction{full\_join()}, \Rfunction{left\_join()}, \Rfunction{right\_join()} and \Rfunction{inner\_join()}. These functions always retain all columns, and in case of multiple matches, keep a row for each matching combination of rows. We repeat each example with the arguments passed to \code{x} and \code{y} swapped to more clearly show their different behavior. + +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} +\begin{alltt} +\hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 6 x 3 +## idx values1 values2 +## +## 1 1 a b +## 2 2 a b +## 3 3 a b +## 4 4 a b +## 5 5 a +## 6 6 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{full_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 6 x 3 +## idx values2 values1 +## +## 1 1 b a +## 2 2 b a +## 3 3 b a +## 4 4 b a +## 5 6 b +## 6 5 a +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{left_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 5 x 3 +## idx values1 values2 +## +## 1 1 a b +## 2 2 a b +## 3 3 a b +## 4 4 a b +## 5 5 a +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{left_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 5 x 3 +## idx values2 values1 +## +## 1 1 b a +## 2 2 b a +## 3 3 b a +## 4 4 b a +## 5 6 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{right_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 5 x 3 +## idx values1 values2 +## +## 1 1 a b +## 2 2 a b +## 3 3 a b +## 4 4 a b +## 5 6 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{right_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 5 x 3 +## idx values2 values1 +## +## 1 1 b a +## 2 2 b a +## 3 3 b a +## 4 4 b a +## 5 5 a +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{inner_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 4 x 3 +## idx values1 values2 +## +## 1 1 a b +## 2 2 a b +## 3 3 a b +## 4 4 a b +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{inner_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 4 x 3 +## idx values2 values1 +## +## 1 1 b a +## 2 2 b a +## 3 3 b a +## 4 4 b a +\end{verbatim} +\end{kframe} +\end{knitrout} + +Next we apply the \emph{filtering join}\index{joins between data sources!filtering} functions exported by \pkgname{dplyr}: \Rfunction{semi\_join()} and \Rfunction{anti\_join()}. These functions only return a tibble that always contains only the columns from \code{x}, but retains rows based on their match to rows in \code{y}. + +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} +\begin{alltt} +\hlkwd{semi_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 4 x 2 +## idx values1 +## +## 1 1 a +## 2 2 a +## 3 3 a +## 4 4 a +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{semi_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 4 x 2 +## idx values2 +## +## 1 1 b +## 2 2 b +## 3 3 b +## 4 4 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{anti_join}\hlstd{(}\hlkwc{x} \hlstd{= first.tb,} \hlkwc{y} \hlstd{= second.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 1 x 2 +## idx values1 +## +## 1 5 a +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{anti_join}\hlstd{(}\hlkwc{x} \hlstd{= second.tb,} \hlkwc{y} \hlstd{= first.tb)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Joining, by = "{}idx"{}}}\begin{verbatim} +## # A tibble: 1 x 2 +## idx values2 +## +## 1 6 b +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{))} +\end{alltt} +\begin{verbatim} +## # A tibble: 6 x 3 +## idx2 values1 values2 +## +## 1 1 a b +## 2 2 a b +## 3 3 a b +## 4 4 a b +## 5 5 a +## 6 6 b +\end{verbatim} +\end{kframe} +\end{knitrout} +\index{merging data from two tibbles|)} +\index{joins between data sources|)} +\index{data manipulation in the tidyverse|)} + + + +\section{Further reading} +An\index{further reading!new grammars of data} in-depth discussion of the \pkgname{tidyverse} is outside the scope of this book. Several books describe in detail the use of these packages. As several of them are under active development, recent editions of books such as \citebooktitle{Wickham2017} \autocite{Wickham2017} are the most useful. + + + + + + +% !Rnw root = appendix.main.Rnw + + + +\chapter{Grammar of graphics}\label{chap:R:plotting} + +\begin{VF} +The commonality between science and art is in trying to see profoundly---to develop strategies of seeing and showing. + +\VA{Edward Tufte's answer to Charlotte Thralls}{\emph{An Interview with Edward R. Tufte}, 2004}\nocite{Zachry2004} +\end{VF} + +%\dictum[Edward Tufte]{The commonality between science and art is in trying to see profoundly---to develop strategies of seeing and showing.} + +\index{geometries ('ggplot2')|see{grammar of graphics, geometries}} +%\index{geom@\texttt{geom}|see{grammar of graphics, geometries}} +%\index{functions!geom@\texttt{geom}|see{grammar of graphics, geometries}} +\index{statistics ('ggplot2')|see{grammar of graphics, statistics}} +%\index{stat@\texttt{stat}|see{grammar of graphics, statistics}} +%\index{functions!stat@\texttt{stat}|see{grammar of graphics, statistics}} +\index{scales ('ggplot2')|see{grammar of graphics, scales}} +%\index{scale@\texttt{scale}|see{grammar of graphics, scales}} +%\index{functions!scale@\texttt{scale}|see{grammar of graphics, scales}} +\index{coordinates ('ggplot2')|see{grammar of graphics, coordinates}} +\index{themes ('ggplot2')|see{grammar of graphics, themes}} +%\index{theme@\texttt{scale}|see{grammar of graphics, themes}} +%\index{function!theme@\texttt{scale}|see{grammar of graphics, themes}} +\index{facets ('ggplot2')|see{grammar of graphics, facets}} +\index{annotations ('ggplot2')|see{grammar of graphics, annotations}} +\index{aesthetics ('ggplot2')|see{grammar of graphics, aesthetics}} + +\section{Aims of this chapter} + +Three main data plotting systems are available to \Rlang users: base \Rlang, package \pkgname{lattice} \autocite{Sarkar2008} and package \pkgname{ggplot2} \autocite{Wickham2016}, the last one being the most recent and currently most popular system available in \Rlang for plotting data. Even two different sets of graphics primitives (i.e., those used to produce the simplest graphical elements such as lines and symbols) are available in \Rlang, those in base \Rlang and a newer one in the \pkgname{grid} package \autocite{Murrell2011}. + +In this chapter you will learn the concepts of the grammar of graphics, on which package \pkgname{ggplot2} is based. You will also learn how to build several types of data plots with package \pkgname{ggplot2}. As a consequence of the popularity and flexibility of \pkgname{ggplot2}, many contributed packages extending its functionality have been developed and deposited in public repositories. However, I will focus mainly on package \pkgname{ggplot2} only briefly describing a few of these extensions. + +\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} +\begin{alltt} +\hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_ggplot)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{library}\hlstd{(learnrbook)} +\hlkwd{library}\hlstd{(wrapr)} +\hlkwd{library}\hlstd{(scales)} +\hlkwd{library}\hlstd{(ggplot2)} +\hlkwd{library}\hlstd{(ggrepel)} +\hlkwd{library}\hlstd{(gginnards)} +\hlkwd{library}\hlstd{(ggpmisc)} +\hlkwd{library}\hlstd{(ggbeeswarm)} +\hlkwd{library}\hlstd{(ggforce)} +\hlkwd{library}\hlstd{(tikzDevice)} +\hlkwd{library}\hlstd{(lubridate)} +\hlkwd{library}\hlstd{(tidyverse)} +\hlkwd{library}\hlstd{(patchwork)} +\end{alltt} +\end{kframe} +\end{knitrout} + + + + + +\section{Introduction to the grammar of graphics} +\index{grammar of graphics!elements|(} +What separates \ggplot from base \Rlang and trellis/lattice plotting functions is the use of a grammar of graphics\index{grammar of graphics} (the reason behind `gg' in the name of package \pkgname{ggplot2}). What is meant by grammar in this case is that plots are assembled piece by piece using different ``nouns'' and ``verbs'' \autocite{Cleveland1985}. Instead of using a single function with many arguments, plots are assembled by combining different elements with operators \code{+} and \verb|%+%|. Furthermore, the construction is mostly semantics-based and to a large extent, how plots look when printed, displayed, or exported to a bitmap or vector-graphics file is controlled by themes. + +We can think of plotting as representing the observations or data in a graphical language. We use the properties of graphical objects to represent different aspects of our data. An observation can consist of multiple recorded values. Say an observation of air temperature may be defined by a position in 3-dimensional space and a point in time, in addition to the temperature itself. An observation for the size and shape of a plant can consist of height, stem diameter, number of leaves, size of individual leaves, length of roots, fresh mass, dry mass, etc. If we are interested in the relationship between height and stem diameter, we may want to use cartesian coordinates\index{grammar of graphics!cartesian coordinates}, \emph{mapping} stem diameter to the $x$ dimension of the plot and the height to the $y$ dimension. The observations could be represented on the plot by points and/or joined by lines. + +The grammar of graphics allows us to design plots by combining various elements in ways that are nearly orthogonal. In other words, the majority of the possible combinations of ``words'' yield valid plots as long as we assemble them respecting the rules of the grammar. This flexibility makes \ggplot extremely powerful as we can build plots and even types of plots which were not even considered while designing the \ggplot package. + +When a plot is built, the whole plot and its components are created as \Rlang objects that can be saved in the workspace or written to a file as objects. The graphical representation is generated when the object is printed, explicitly or automatically. The same ggplot object can be rendered into different bitmap and vector graphic formats for display or printing. + +Even if we do not explicitly add them all, default elements may be used. The production of a rendered graphic with package \pkgname{ggplot2} can be represented as a flow of information: +\textsf{data $\to$ scale $\to$ statistic $\to$ aesthetic $\to$ geometry $\to$ coordinate $\to$ ggplot $\to$ theme $\to$ rendered graphic}. + +\subsection{Data} +The\index{grammar of graphics!data} data to be plotted must be available as a \code{data.frame} or \code{tibble}, with data stored so that each row represents a single observation event, and the columns are different values observed in that single event. In other words, in long form (so-called ``tidy data'') as described in chapter \ref{chap:R:data}. The variables to be plotted can be \code{numeric}, \code{factor}, \code{character}, and time or date stored as \code{POSIXct}. + +\subsection{Mapping} + +When\index{grammar of graphics!mapping of data} we design a plot, we need to map data variables to aesthetics\index{plots!aesthetics} (or graphic properties). Most plots will have an $x$ dimension, which is considered an \emph{aesthetic}, and a variable containing numbers mapped to it. The position on a 2D plot of, say, a point, will be determined by $x$ and $y$ aesthetics, while in a 3D plot, three aesthetics need to be mapped $x$, $y$ and $z$. Many aesthetics are not related to coordinates, they are properties, like color, size, shape, line type, or even rotation angle, which add an additional dimension on which to represent the values of variables and/or constants. + +\subsection{Geometries} + +\sloppy% +Geometries\index{grammar of graphics!geometries} are ``words'' that describe the graphics representation of the data: for example, \gggeom{geom\_point()}, plots a point or symbol for each observation, while \gggeom{geom\_line()}, draws line segments between observations. Some geometries rely by default on statistics, but most ``geoms'' default to the identity statistics. Each time a \emph{geometry} is used to add a graphical representation of data to a plot, we say that a new \emph{layer} has been added. The name \emph{layer} reflects the fact that each new layer added is plotted on top of the layers already present in the plot, or rather when a plot is printed the layers will be generated in the order they were added to the ggplot object. For example, one layer in a plot can display the observations, another layer a regression line fitted to them, and a third one may contain annotations such an equation or a text label. + +\subsection{Statistics} + +Statistics\index{grammar of graphics!statistics} are ``words'' that represent calculation of summaries or some other operation on the values from the data. When \emph{statistics} are used for a computation, the returned value is passed directly to a \emph{geometry}, and consequently adding an \emph{statistics} also adds a layer to the plot. For example, \ggstat{stat\_smooth()} fits a smoother, and \ggstat{stat\_summary()} applies a summary function. Statistics are applied automatically by group when data have been grouped by mapping additional aesthetics such as color to a factor. + +\subsection{Scales} + +Scales\index{grammar of graphics!scales} give the ``translation'' or mapping between data values and the aesthetic values to be actually plotted. Mapping a variable to the ``color'' aesthetic (also recognized when spelled as ``colour'') only tells that different values stored in the mapped variable will be represented by different colors. A scale, such as \ggscale{scale\_color\_continuous()}, will determine which color in the plot corresponds to which value in the variable. Scales can also define transformations on the data, which are used when mapping data values to aesthetic values. All continuous scales support transformations---e.g., in the case of $x$ and $y$ aesthetics, positions on the plotting region or viewport will be affected by the transformation, while the original values will be used for tick labels along the axes. Scales are used for all aesthetics, including continuous variables, such as numbers, and categorical ones such as factors. The grammar of graphics allows only one scale per \emph{aesthetic} and plot. This restriction is imposed by design to avoid ambiguity (e.g., it ensures that the red color will have the same ``meaning'' in all plot layers where the \code{color} \emph{aesthetic} is mapped to data). Scales have limits with observations falling outside these limits being ignored (replaced by \code{NA}) rather than passed to statistics or geometries---it is easy to unintentionally drop observations when setting scale limits manually as warning messages report that \code{NA} values have been omitted. + +\subsection{Coordinate systems} + +The\index{grammar of graphics!coordinates} most frequently used coordinate system when plotting data, the cartesian system, is the default for most \emph{geometries}. In the cartesian system, $x$ and $y$ are represented as distances on two orthogonal (at 90$^\circ$) axes. Additional coordinate systems are available in \pkgname{ggplot2} and through extensions. For example, in the polar system of coordinates, the $x$ values are mapped to angles around a central point and $y$ values to the radius. Another example is the ternary system of coordinates, an extension of the grammar implemented in package \pkgname{ggtern}, that allows the construction of ternary plots. Setting limits to a coordinate system changes the region of the plotting space visible in the plot, but does not discard observations. In other words, when using \emph{statistics}, observations located outside the coordinate limits, i.e., not visible in the rendered plot, will still be included in computations. + +\subsection{Themes} + +How\index{grammar of graphics!themes} the plots look when displayed or printed can be altered by means of themes. A plot can be saved without adding a theme and then printed or displayed using different themes. Also, individual theme elements can be changed, and whole new themes defined. This adds a lot of flexibility and helps in the separation of the data representation aspects from those related to the graphical design. +\index{grammar of graphics!elements|)} + +\subsection{Plot construction} +\index{grammar of graphics!plot construction|(} +We have described above the components of the grammar of graphics: aesthetics (\code{aes}), for example color, geometric elements \code{geom\_\ldots} such as lines and points, statistics \code{stat\_\ldots}, scales \code{scale\_\ldots}, coordinate systems \code{coord\_\ldots}, and themes \code{theme\_\ldots}. In this section we will see how plots are assembled from these elements. + +As the workings and use of the grammar are easier to show by example than to explain with words, will show how to build plots of increasing complexity. All elements of a plot have defaults, although in some cases these defaults result in empty plots. Defaults make it possible to create a plot very succinctly. We use function \code{ggplot()} to create the skeleton for a plot, which can be enhanced, but also printed as is. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{ggplot}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-01-1} + +} + + + +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Once the data are available, we need to \emph{map} the quantities in the data onto graphical features in the plot, or \emph{aesthetics}. When plotting in two dimensions, we need to map variables in the data to at least the $x$ and $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, extended 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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-03-1} + +} + + + +\end{knitrout} + +To make observations visible in the plot we need to add a suitable \emph{geometry} or \code{geom} to the plot. Here we display the observations as points using \gggeom{geom\_point()} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-04-1} + +} + + + +\end{knitrout} + +\begin{warningbox} +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, + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +and printed at a later time. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{print}\hlstd{(p)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{warningbox} + +\begin{advplayground} +Above we have seen how to build a plot, layer by layer, using the grammar of graphics. We have also seen how to save a ggplot. We can peep into the innards of this object using \code{summary()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{summary}\hlstd{(p)} +\end{alltt} +\end{kframe} +\end{knitrout} +We can view the structure of the ggplot object with \code{str()}. + +Package \pkgname{gginnards} provides methods \code{str()}, \code{num\_layers()}, \code{top\_layer()} and \code{mapped\_vars()}. Use these methods to explore ggplot objects with different numbers of layers or mappings. You will see that the plot elements that were added to the plot are stored as members of a list with nested lists forming a tree-like structure. +\end{advplayground} + +Although \emph{aesthetics} can be mapped to variables in the data, they can also be set to constant values, but only within layers, not as whole-plot defaults. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{geom_point}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlstr{"square"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-04a-1} + +} + + + +\end{knitrout} + +While a geometry directly constructs a graphical representation of the observations in the data, 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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-05-1} + +} + + + +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_log10}\hlstd{()} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-06-1} + +} + + + +\end{knitrout} + +The range limits of a scale can be set manually, instead of automatically by default. These limits create a virtual \emph{window into the data}: observations outside the scale limits remain hidden and are not mapped to aesthetics---i.e., these observations are not included in the graphical representation or used in calculations. Crucially, when using \emph{statistics} the computations are only applied to observations that fall within the limits of all scales in use. These limits \emph{indirectly} affect the plotting area when the plotting area is automatically set based on the range of the (within limits) data---even the mapping to values of a different aesthetics may change when a subset of the data are selected by manually setting the limits of a scale. + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} + \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{15}\hlstd{,} \hlnum{25}\hlstd{))} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-07-1} + +} + + + +\end{knitrout} + +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 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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} + \hlkwd{coord_trans}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"log10"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-08-1} + +} + + + +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{theme_classic}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-09-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{theme_classic}\hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{20}\hlstd{,} \hlkwc{base_family} \hlstd{=} \hlstr{"serif"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-10-1} + +} + + + +\end{knitrout} + +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 a convenience function allowing us to easily set the title and subtitle of a plot and to replace the default \code{name} of scales used for axis labels---by default \code{name} is set to the name of the mapped variable. When setting the \code{name} of scales with \code{labs()}, we use as parameter names 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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"Engine displacement (cubic inches)"}\hlstd{,} + \hlkwc{y} \hlstd{=} \hlstr{"Fuel use efficiency\textbackslash{}n(miles per gallon)"}\hlstd{,} + \hlkwc{title} \hlstd{=} \hlstr{"Motor Trend Car Road Tests"}\hlstd{,} + \hlkwc{subtitle} \hlstd{=} \hlstr{"Source: 1974 Motor Trend US magazine"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-11-1} + +} + + + +\end{knitrout} + +\begin{infobox} +As elsewhere in \Rlang, when a value is expected, either a value stored in a variable or 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} +\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{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-info-01-1} + +} + + + +\end{knitrout} + +\end{infobox} + +Each of the elements of the grammar exemplified above has several different members, and many of the individual \emph{geometries} and \emph{statistics} accept arguments that can be used to modify their behavior. There are also more \emph{aesthetics} than those shown above. Multiple data objects as well as multiple mappings can coexist within a single ggplot object. Packages and user code can define new \emph{geometries}, \emph{statistics}, \emph{coordinates} and even implement new \emph{aesthetics}. Individual elements in a theme can also be modified and new complete themes created, re-used and shared. We will describe in the remaining sections of this chapter how to use the grammar of graphics to construct other types of graphical presentations including more complex plots than those in the examples above. +\index{grammar of graphics!plot construction|)} + +\subsection{Plots as \Rlang objects} +\index{grammar of graphics!plots as R objects|(} +We can manipulate ggplot 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} +\begin{alltt} +\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{warningbox} + \index{grammar of graphics!structure of plot objects|(} + The separation of plot construction and rendering is possible, because \code{"gg"} objects are self-contained. Most importantly, a copy of the data object passed as argument is saved within the plot object. In the example above, \code{p} by itself could be saved to a file on disk and loaded into a clean \Rlang session, even on another computer, and rendered as long as package \ggplot and its dependencies are available. Another consequence of a copy of the data being stored in the plot object, is that editing the data used to create a \code{"gg"} object after its creation does \emph{not} affect rendered plots unless we recreate the "gg" object. + + With \code{str()} we can explore the structure of any \Rlang object, including those of class \code{"gg"}. We use \code{max.level = 1} to reduce the length of output, but to see deeper into the nested list you can increase the value passed as an argument to \code{max.level} or simply accept its default. + +% the next chuck works but it leads to stack overflow in LaTeX +% there is something wrong with how knitr handles the output of str() +% eval_playground +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{str}\hlstd{(p,} \hlkwc{max.level} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + \index{grammar of graphics!structure of plot objects|)} +\end{warningbox} + +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} +\begin{alltt} +\hlstd{p} \hlopt{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-objects-02-1} + +} + + + +\end{knitrout} + +\begin{playground} + Reproduce the examples in the previous section, using \code{p} defined above as a basis instead of building each plot from scratch. +\end{playground} + +\begin{infobox} + 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} +\begin{alltt} +\hlstd{my.layers} \hlkwb{<-} \hlkwd{list}\hlstd{(} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{),} + \hlkwd{scale_x_log10}\hlstd{())} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{p} \hlopt{+} \hlstd{my.layers} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-objects-info-02-1} + +} + + + +\end{knitrout} + +\end{infobox} +\index{grammar of graphics!plots as R objects|)} + +\subsection{Data and mappings} +\index{grammar of graphics!mapping of data|(} +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers. In this case, those passed as arguments 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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} \hlopt{+} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +It is even 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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{()} \hlopt{+} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg)} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= mtcars)} +\end{alltt} +\end{kframe} +\end{knitrout} + +In these examples, the plot remains unchanged, but this flexibility in the grammar allows, in plots containing multiple layers, for each layer to use different data or a different mapping. + +\begin{explainbox} +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{subset}\hlstd{(x, cyl} \hlopt{==} \hlnum{4}\hlstd{)\},} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} + \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +The plot default data can also be operated upon using the \pkgname{magritrr} pipe operator, but not the dot-pipe operator from \pkgname{wrapr} (see 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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} + \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= .} \hlopt{%.>%} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= ., cyl} \hlopt{==} \hlnum{4}\hlstd{),} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} + \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{explainbox} +\index{grammar of graphics!mapping of data|)} + +\section{Geometries}\label{sec:plot:geometries} +\index{grammar of graphics!geometries|(} + +Different geometries support different \emph{aesthetics}. While \gggeom{geom\_point()} supports \code{shape}, and \gggeom{geom\_line()} supports \code{linetype}, both support \code{x}, \code{y}, \code{color} and \code{size}. In this section we will describe the different \code{geometries} available in package \ggplot and some examples from packages that extend \ggplot. The graphic output from most code examples will not be shown, with the expectation that readers will run them to see the plots. + +Mainly for historical reasons, \emph{geometries} accept a \emph{statistic} as an argument, in the same way as \emph{statistics} accept a \emph{geometry} as an argument. In this section we will only describe \emph{geometries} which have as a default \emph{statistic} \code{stat\_identity} which passes values directly as mapped. The \emph{geometries} that have other \emph{statistics} as default are described in section \ref{sec:plot:stat:summaries} together with the corresponding \emph{statistics}. + +\subsection{Point}\label{sec:plot:geom:point} +\index{grammar of graphics!point geometry|(} + +As shown earlier in this chapter, \gggeom{geom\_point()}, can be used to add a layer with observations represented by ``points'' or symbols. Variable \code{cyl} describes the numbers of cylinders in the engines of the cars. It is a numeric variable, and when mapped to color, a continuous color scale is used to represent this variable. + +\index{plots!scatter plot|(}The first examples build scatter plots, because numeric variables are mapped to both \code{x} and \code{y}. +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} +\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{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-01-1} + +} + + + +\end{knitrout} + +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} +\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{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +Try a different mapping: \code{disp} $\rightarrow$ \code{color}, \code{cyl} $\rightarrow$ \code{x}. Continue by using \code{help(mtcars)} and/or \code{names(mtcars)} to see what variables are available, and then try the combinations that trigger your curiosity---i.e., explore the data. +\end{playground} + +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} +\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{+} + \hlkwd{scale_color_brewer}\hlstd{(}\hlkwc{type} \hlstd{=} \hlstr{"qual"}\hlstd{,} \hlkwc{palette} \hlstd{=} \hlnum{2}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +The data, aesthetics mappings, and geometries are the same as in earlier code; to alter how the plot looks, we have changed only the scale and palette used for the color aesthetic. Conceptually it is still exactly the same plot we created earlier, except for the colours used. This is a very important point to understand, because it allows us to separate two different concerns: the semantic structure and the graphic design. + +\begin{playground} +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} +\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{))} +\end{alltt} +\end{kframe} +\end{knitrout} +Once you have found a suitable palette for these data, redo the plot above with the chosen palette. +\end{playground} + +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} +\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{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{scale_shape_manual}\hlstd{(}\hlkwc{values} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{21}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{23}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{scale_shape_manual}\hlstd{(}\hlkwc{values} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"4"}\hlstd{,} \hlstr{"6"}\hlstd{,} \hlstr{"8"}\hlstd{),} \hlkwc{guide} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-12-1} + +} + + + +\end{knitrout} + +\begin{infobox} + 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} +\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),} + \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{infobox} + +\index{plots!scatter plot|)} +\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} +\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{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-12a-1} + +} + + + +\end{knitrout} + +Instead of making the points semitransparent, we can randomly displace them to avoid overlaps. This is called \emph{jitter}, and can be added using \code{position\_jitter()} and the amount of jitter set with \code{width} 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} +\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.05}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\index{plots!dot plot|)} +\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} +\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))} \hlopt{+} + \hlkwd{scale_size_area}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-16-1} + +} + + + +\end{knitrout} + +\begin{playground} +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} +\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))} \hlopt{+} + \hlkwd{scale_size}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +Make the plot, look at it carefully. Check the numerical values of some of the weights, and assess if your perception of the plot matches the numbers behind it. +\end{playground} + +\index{plots!bubble plot|)} + +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} +\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),} + \hlkwc{fill} \hlstd{=} \hlkwd{factor}\hlstd{(cyl),} + \hlkwc{size} \hlstd{= wt))} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.33}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} + \hlkwd{scale_size_area}\hlstd{()} \hlopt{+} + \hlkwd{scale_shape_manual}\hlstd{(}\hlkwc{values} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{21}\hlstd{,} \hlnum{22}\hlstd{,} \hlnum{23}\hlstd{))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-scatter-18-1} + +} + + + +\end{knitrout} + +\begin{playground} +Play with the code in the chunk above. Remove or change each of the mappings and the scale, display the new plot, and compare it to the one above. Continue playing with the code until you are sure you understand what graphical element in the plot is added or modified by each individual argument or ``word'' in the code statement. +\end{playground} +\index{grammar of graphics!point geometry|)} + +It is common to draw error bars together with points representing means or medians of observations and \gggeom{geom\_pointrange()} achieves this task based on the values mapped to the \code{x}, \code{y}, \code{ymin} and \code{ymax}, using \code{y} for the position of the point and \code{ymin} and \code{ymax} for the positions of the ends of the line segment representing a range. Two other \emph{geometries}, \gggeom{geom\_range()} and \gggeom{geom\_errorbar} draw only a segment or a segment with capped ends. They are frequently used together with \emph{statistics} when summaries are calculated on the fly, but can also be used directly when the data summaries are stored in a data frame passed as an argument to \code{data}. + +\subsection{Rug}\label{sec:plot:rug} +\index{plots!rug marging|(} + +Rarely, rug plots are used by themselves. Instead they are usually an addition to scatter plots. An example of the use of \gggeom{geom\_rug()} follows. They make it easier to see the distribution of observations +along the $x$- and $y$-axes. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_rug}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-rug-plot-01-1} + +} + + + +\end{knitrout} + +\begin{warningbox} + Rug plots are most useful when the local density of observations is not too high, otherwise rugs become too cluttered and the ``rug threads'' may overlap. When overlap is moderate, making the segments semitransparent by setting the \code{alpha} aesthetic to a constant value smaller than one, can make the variation in density easier to appreciate. When the number of observations is large, marginal density plots should be preferred. +\end{warningbox} +\index{plots!rug marging|)} + +\subsection{Line and area}\label{sec:plot:line} + +\index{grammar of graphics!various line and path geometries|(}\index{plots!line plot|(} +For line plots we use \gggeom{geom\_line()}. The \code{size} of a line is its thickness, and as we had \code{shape} for points, we have \code{linetype} for lines. In a line plot, observations in successive rows of the data frame, or the subset corresponding to a group, are joined by straight lines. We use a different data set included in \Rlang, \Rdata{Orange}, with data on the growth of five orange trees. See the help page for \code{Orange} for details. + +\label{plot:fig:lines} +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_line}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-line-plot-01-1} + +} + + + +\end{knitrout} +\index{plots!line plot|)} + +\index{plots!step plot|(} +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} +\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{+} + \hlkwd{geom_step}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-step-plot-01-1} + +} + + + +\end{knitrout} +\index{plots!step plot|)} + +\begin{playground} +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} +\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} +\end{kframe} +\end{knitrout} +\end{playground} + +\index{plots!filled-area plot|(} +While \gggeom{geom\_line()} draws a line joining observations, \gggeom{geom\_area()} supports filling the area below the line according to the \code{fill} \emph{aesthetic}. In contrast \gggeom{geom\_ribbon} draws two lines based on the \code{x}, \code{ymin} and \code{ymax} \emph{aesthetics}, with the space between the lines filled according to the \code{fill} \emph{aesthetic}. Finally, \gggeom{geom\_polygom} is similar to \gggeom{geom\_path()} but connects the extreme observations forming a closed polygon that supports \code{fill}. + +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} +\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{+} + \hlkwd{geom_area}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"stack"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-area-plot-01-1} + +} + + + +\end{knitrout} +\index{plots!filled-area plot|)} + +\index{plots!reference lines|(} +Finally,\label{sec:plot:vhline} three \emph{geometries} for drawing lines across the whole plotting area: \gggeom{geom\_hline}, \gggeom{geom\_vline} and \gggeom{geom\_abline}. The first two draw horizontal and vertical lines, respectively, while the third one draws straight lines according to the \emph{aesthetics} \code{slope} and \code{intercept} determining the position. The lines drawn with these three geoms extend to the edge of the plotting area. + +\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} +\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{+} + \hlkwd{geom_area}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"stack"}\hlstd{)} \hlopt{+} + \hlkwd{geom_vline}\hlstd{(}\hlkwc{xintercept} \hlstd{=} \hlnum{1000}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"gray75"}\hlstd{)} \hlopt{+} + \hlkwd{geom_vline}\hlstd{(}\hlkwc{xintercept} \hlstd{=} \hlnum{1000}\hlstd{,} \hlkwc{linetype} \hlstd{=} \hlstr{"dotted"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-area-plot-02-1} + +} + + + +\end{knitrout} + +\begin{playground} + Change the order of the three layers in the example above. How did the figure change? What order is best? Would the same order be the best for a scatter plot? And would it be necessary to add two \code{geom\_vline()} layers? +\end{playground} +\index{plots!reference lines|)} +\index{grammar of graphics!various line and path geometries|)} + +\subsection{Column}\label{sec:plot:col} +\index{grammar of graphics!column geometry|(} +\index{plots!column plot|(} + +The \emph{geometry} \gggeom{geom\_col()} can be used to create \emph{column plots} where each bar represents an observation or case in the data. + +\begin{warningbox} +\Rlang users not familiar yet with \ggplot are frequently surprised by the default behavior of \gggeom{geom\_bar()} as it uses \ggstat{stat\_count()} to produce a histogram, rather than plotting values as is (see section \ref{sec:plot:histogram} on page \pageref{sec:plot:histogram}). \gggeom{geom\_col()} is identical to \gggeom{geom\_bar()} but with \code{"identity"} as the default statistic. +\end{warningbox} + +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} +\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{)),} + \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"male"}\hlstd{,} \hlstr{"female"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlnum{3}\hlstd{,} \hlnum{3}\hlstd{))),} + \hlkwc{measurement} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{6}\hlstd{)} \hlopt{+} \hlkwd{c}\hlstd{(}\hlnum{5.5}\hlstd{,} \hlnum{5}\hlstd{,} \hlnum{7}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_col}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-col-plot-02-1} + +} + + + +\end{knitrout} + +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} +\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{+} + \hlkwd{scale_fill_grey}\hlstd{()} \hlopt{+} \hlkwd{theme_dark}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-col-plot-03-1} + +} + + + +\end{knitrout} + +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} +\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{+} + \hlkwd{scale_fill_grey}\hlstd{()} \hlopt{+} \hlkwd{theme_classic}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-col-plot-04-1} + +} + + + +\end{knitrout} + +\begin{playground} +Change the argument to \code{position}, or let the default be active, until you understand its effect on the figure. What is the difference between \emph{positions} \code{"identity"}, \code{"dodge"} and \code{"stack"}? +\end{playground} + +\begin{playground} +Use constants as arguments for \emph{aesthetics} or map variable \code{treatment} to one or more of the \emph{aesthetics} used by \gggeom{geom\_col()}, such as \code{color}, \code{fill}, \code{linetype}, \code{size}, \code{alpha} and \code{width}. +\end{playground} + +\index{grammar of graphics!column geometry|)} +\index{plots!column plot|)} + +\subsection{Tiles}\label{sec:tileplot} +\index{grammar of graphics!tile geometry|(} +\index{plots!tile plot|(} +We can draw square or rectangular tiles with \gggeom{geom\_tile()} producing tile plots or simple heat maps. + +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} +\begin{alltt} +\hlkwd{set.seed}\hlstd{(}\hlnum{1234}\hlstd{)} +\hlstd{randomf.df} \hlkwb{<-} \hlkwd{data.frame}\hlstd{(}\hlkwc{F} \hlstd{=} \hlkwd{rf}\hlstd{(}\hlnum{100}\hlstd{,} \hlkwc{df1} \hlstd{=} \hlnum{5}\hlstd{,} \hlkwc{df2} \hlstd{=} \hlnum{20}\hlstd{),} + \hlkwc{x} \hlstd{=} \hlkwd{rep}\hlstd{(letters[}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{],} \hlnum{10}\hlstd{),} + \hlkwc{y} \hlstd{= LETTERS[}\hlkwd{rep}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{10}\hlstd{,} \hlkwd{rep}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{10}\hlstd{))])} +\end{alltt} +\end{kframe} +\end{knitrout} + +\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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(randomf.df,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{fill} \hlstd{= F))} \hlopt{+} + \hlkwd{geom_tile}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-tile-plot-02-1} + +} + + + +\end{knitrout} + +We can set \code{color = "gray75"} and \code{size = 1} 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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(randomf.df,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{fill} \hlstd{= F))} \hlopt{+} + \hlkwd{geom_tile}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"gray75"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.33}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-tile-plot-03-1} + +} + + + +\end{knitrout} + +\begin{playground} +Play with the arguments passed to parameters \code{color} and \code{size} in the example above, considering what features of the data are most clearly perceived in each of the plots you create. +\end{playground} + +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} +\begin{alltt} +\hlkwd{ggplot}(randomf.df, \hlkwd{aes}(x, y, fill = F) + + \hlkwd{geom_tile}(color = \hlstr{"white"}) + + \hlkwd{scale_fill_gradient}(low = \hlstr{"gray15"}, high = \hlstr{"gray85"}, na.value = \hlstr{"red"}) +\end{alltt} +\end{kframe} +\end{knitrout} + +In contrast to \gggeom{geom\_tile()}, \gggeom{geom\_rect()} draws rectangular tiles based on the position of the corners, mapped to aesthetics \code{xmin}, \code{xmax}, \code{ymin} and \code{ymax}. + +\index{plots!tile plot|)} +\index{grammar of graphics!tile geometry|)} + +\subsection{Simple features (sf)}\label{sec:plot:sf} +\index{grammar of graphics!sf geometries|(} +\index{plots!maps and spatial plots|(} + +\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} +\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{+} + \hlkwd{geom_sf}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= AREA),} \hlkwc{color} \hlstd{=} \hlstr{"gray90"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-sf_plot-01-1} + +} + + + +\end{knitrout} +\index{grammar of graphics!sf geometries|)} +\index{plots!maps and spatial plots|)} + +\subsection{Text}\label{sec:plot:text} +\index{grammar of graphics!text and label geometries|(} +\index{plots!text in|(} +\index{plots!maths in|(} +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} +\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{+} + \hlkwd{scale_size}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{geom_text}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"darkblue"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-text-plot-01-1} + +} + + + +\end{knitrout} + +In addition, \code{angle} and \code{vjust} and \code{hjust} can be used to rotate the text and adjust its position. The default value of 0.5 for both \code{hjust} and \code{vjust} sets the center of the text at the supplied \code{x} and \code{y} coordinates. ``Vertical'' and ``horizontal'' for justification refer to the text, not the plot. This is important when \code{angle} is different from zero. Values larger than 0.5 shift the label left or down, and values smaller than 0.5, right or up with respect to its \code{x} and \code{y} coordinates. A value of 1 or 0 sets the text so that its edge is at the supplied coordinate. Values outside the range $0\ldots 1$ shift the text even farther away, however, still using units based on the length or height of the text label. Recent versions of \pkgname{ggplot2} make possible justification using character constants for alignment: \code{"left"}, \code{"middle"}, \code{"right"}, \code{"bottom"}, \code{"center"} and \code{"top"}, and two special alignments, \code{"inward"} and \code{"outward"}, that automatically vary based on the position in the plotting area. + +In the case of \gggeom{geom\_label()} the text is enclosed in a box, which obeys the \code{fill} \emph{aesthetic} and takes additional parameters (described starting at page \pageref{start:plot:label}) allowing control of the shape and size of the box. However, \gggeom{geom\_label()} does not support rotation with the \code{angle} aesthetic. + +\begin{warningbox} +You\index{plots!fonts} should be aware that \Rlang and \ggplot support the use of UNICODE\index{UNICODE}, such as UTF8\index{UTF8} character encodings in strings. If your editor or IDE supports their use, then you can type Greek letters and simple maths symbols directly, and they \emph{may} show correctly in labels if a suitable font is loaded and an extended encoding like UTF8 is in use by the operating system. Even if UTF8 is in use, text is not fully portable unless the same font is available\index{portability}, as even if the character positions are standardized for many languages, most UNICODE fonts support at most a small number of languages. In principle one can use this mechanism to have labels both using other alphabets and languages like Chinese with their numerous symbols mixed in the same figure. Furthermore, the support for fonts and consequently character sets in \Rlang is output-device dependent. The font encoding used by \Rlang by default depends on the default locale settings of the operating system, which can also lead to garbage printed to the console or wrong characters being plotted running the same code on a different computer from the one where a script was created. Not all is lost, though, as \Rlang can be coerced to use system fonts and Google fonts with functions provided by packages \pkgname{showtext} and \pkgname{extrafont}. Encoding-related problems, especially in MS-Windows, are common. +\end{warningbox} + +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} +\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{c}\hlstd{(}\hlstr{"a"}\hlstd{,} \hlstr{"b"}\hlstd{,} \hlstr{"c"}\hlstd{,} \hlstr{"d"}\hlstd{,} \hlstr{"e"}\hlstd{))} + +\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{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +Modify the example above to use \gggeom{geom\_label()} instead of \gggeom{geom\_text()} using, in addition, the \code{fill} aesthetic. +\end{playground} + +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} +\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{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +In the examples above the character strings were all of the same length, containing a single character. Redo the plots above with longer character strings of various lengths mapped to the \code{label} \emph{aesthetic}. Do also play with justification of these labels. +\end{playground} + +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} +\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{))} +\hlstd{my.data}\hlopt{$}\hlstd{label} +\end{alltt} +\begin{verbatim} +## [1] alpha[1] alpha[2] alpha[3] alpha[4] alpha[5] +## Levels: alpha[1] alpha[2] alpha[3] alpha[4] alpha[5] +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{5.2}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-text-plot-06-1} + +} + + + +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +As \gggeom{geom\_label()} obeys the same parameters as \gggeom{geom\_text()} except for \code{angle}, we briefly describe below only the additional parameters compared to \gggeom{geom\_text()}. We may want to alter the default width of the border line or the color used to \code{fill} the rectangle, or to change the ``roundness'' of the corners. To suppress the border line, use \code{label.size = 0}. Corner roundness is controlled by parameter \code{label.r} and the size of the margin around the text by \code{label.padding}. + +\label{start:plot:label} +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{c}\hlstd{(}\hlstr{"one"}\hlstd{,} \hlstr{"two"}\hlstd{,} \hlstr{"three"}\hlstd{,} \hlstr{"four"}\hlstd{,} \hlstr{"five"}\hlstd{))} + +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= label))} \hlopt{+} + \hlkwd{geom_label}\hlstd{(}\hlkwc{hjust} \hlstd{=} \hlopt{-}\hlnum{0.2}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{,} + \hlkwc{label.size} \hlstd{=} \hlnum{0L}\hlstd{,} + \hlkwc{label.r} \hlstd{=} \hlkwd{unit}\hlstd{(}\hlnum{0}\hlstd{,} \hlstr{"lines"}\hlstd{),} + \hlkwc{label.padding} \hlstd{=} \hlkwd{unit}\hlstd{(}\hlnum{0.15}\hlstd{,} \hlstr{"lines"}\hlstd{),} + \hlkwc{fill} \hlstd{=} \hlstr{"yellow"}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.5}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{5.6}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-label-plot-01-1} + +} + + + +\end{knitrout} + +\begin{playground} +Play with the arguments to the different parameters and with the \emph{aesthetics} to get an idea of what can be done with them. For example, use thicker border lines and increase the padding so that a visually well-balanced margin is retained. You may also try mapping the \code{fill} and \code{color} \emph{aesthetics} to factors in the data. +\end{playground} + +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} +\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{+} + \hlkwd{scale_size}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{)} \hlopt{+} + \hlkwd{geom_text_repel}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{,} + \hlkwc{min.segment.length} \hlstd{=} \hlnum{0.2}\hlstd{,} \hlkwc{point.padding} \hlstd{=} \hlnum{0.1}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-repel-plot-01-1} + +} + + + +\end{knitrout} +\index{plots!maths in|)} +\index{plots!text in|)} +\index{grammar of graphics!text and label geometries|)} + +\subsection{Plot insets}\label{sec:plot:insets} +\index{grammar of graphics!inset-related geometries|(} +\index{plots!insets|(} + +The support for insets in \pkgname{ggplot2} is confined to \code{annotation\_custom()} which was designed to be used for static annotations expected to be the same in each panel of a plot (the use of annotations is described in section \ref{sec:plot:annotations}). Package \pkgname{ggpmisc} provides geoms that mimic \code{geom\_text()} in relation to the \emph{aesthetics} used, but that similarly to \code{geom\_sf()}, expect that the column in \code{data} mapped to the \code{label} aesthetics are lists of objects containing multiple pieces of information, rather than atomic vectors. Similar to \code{geom\_sf()} these geoms do not inherit the plot's default mappings to aesthetics. Three geometries are currently available: \gggeom{geom\_table()}, \gggeom{geom\_plot()} and \gggeom{geom\_grob()}. + +\begin{warningbox} +Given that \gggeom{geom\_table()}, \gggeom{geom\_plot()} and \gggeom{geom\_grob()} will rarely use a mapping inherited from the whole plot, by default they do not inherit it. Either the mapping should be supplied as an argument to these functions or their parameter \code{inherit.aes} explicitly set to \code{TRUE}. +\end{warningbox} + +\index{plots!inset tables|(} +The plotting of tables by mapping a list of data frames to the \code{label} \emph{aesthetic} is done with \gggeom{geom\_table}. Positioning, justification, and angle work as for \gggeom{geom\_text} and are applied to the whole table. Only \code{tibble} objects (see documentation of package \pkgname{tibble}) can contain, as variables, lists of data frames, so this \emph{geometry} requires the use of \code{tibble} objects to store the data. The table(s) are created as 'grid' \code{grob} objects, collected in a tree and added to the \code{ggplot} object as a new layer. + +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} +\begin{alltt} +\hlstd{mtcars} \hlopt{%.>%} + \hlkwd{group_by}\hlstd{(., cyl)} \hlopt{%.>%} + \hlkwd{summarize}\hlstd{(.,} + \hlstr{"mean wt"} \hlstd{=} \hlkwd{format}\hlstd{(}\hlkwd{mean}\hlstd{(wt),} \hlkwc{digits} \hlstd{=} \hlnum{2}\hlstd{),} + \hlstr{"mean disp"} \hlstd{=} \hlkwd{format}\hlstd{(}\hlkwd{mean}\hlstd{(disp),} \hlkwc{digits} \hlstd{=} \hlnum{0}\hlstd{),} + \hlstr{"mean mpg"} \hlstd{=} \hlkwd{format}\hlstd{(}\hlkwd{mean}\hlstd{(mpg),} \hlkwc{digits} \hlstd{=} \hlnum{0}\hlstd{))} \hlkwb{->} \hlstd{my.table} +\hlstd{table.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{500}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{35}\hlstd{,} \hlkwc{table.inset} \hlstd{=} \hlkwd{list}\hlstd{(my.table))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{scale_size}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{geom_table}\hlstd{(}\hlkwc{data} \hlstd{= table.tb,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= table.inset),} + \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-table-plot-02-1} + +} + + + +\end{knitrout} + +The \code{color} and \code{size} aesthetics control the text in the table(s) as a whole. +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} +\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{+} + \hlkwd{geom_table}\hlstd{(}\hlkwc{data} \hlstd{= table.tb,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= table.inset),} + \hlkwc{color} \hlstd{=} \hlstr{"blue"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{,} + \hlkwc{hjust} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{angle} \hlstd{=} \hlnum{90}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{,} + \hlstr{'x^2'} \hlstd{= (}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)}\hlopt{^}\hlnum{2}\hlstd{,} + \hlstr{'x^3'} \hlstd{= (}\hlnum{1}\hlopt{:}\hlnum{5}\hlstd{)}\hlopt{^}\hlnum{3}\hlstd{)} +\hlstd{data.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{table.inset} \hlstd{=} \hlkwd{list}\hlstd{(tb.pm))} +\hlkwd{ggplot}\hlstd{(data.tb,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= table.inset))} \hlopt{+} + \hlkwd{geom_table}\hlstd{(}\hlkwc{inherit.aes} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{7}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} + \hlkwd{theme_void}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{explainbox} + The \emph{geometry} \gggeom{geom\_table()} uses functions from package \pkgname{gridExtra} to build a graphical object for the table. The use of table themes was not yet supported by this geometry at the time of writing. +\end{explainbox} +\index{plots!inset tables|)} + +\index{plots!inset plots|(} +Geometry \gggeom{geom\_plot()} works much like \code{geom\_table()}, but instead of expecting a list of data frames or tibbles to be mapped to the \code{label} aesthetics, it expects a list of ggplots (objects of class \code{gg}). This allows adding as an inset to a ggplot, another ggplot. In the times when plots were hand drafted with India ink on paper, the use of inset plots was more frequent than nowadays. Inset plots can be very useful for zooming-in on parts of a main plot where observations are crowded and for displaying summaries based on the observations shown in the main plot. The inset plots are nested in viewports which control the dimensions of the inset plot, and aesthetics \code{vp.height} and \code{vp.width} control their sizes---with defaults of 1/3 of the height and width of the plotting area of the main plot. Themes can be applied separately to the main and inset plots. + +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} +\begin{alltt} +\hlstd{mtcars} \hlopt{%.>%} + \hlkwd{group_by}\hlstd{(., cyl)} \hlopt{%.>%} + \hlkwd{summarize}\hlstd{(.,} \hlkwc{mean.mpg} \hlstd{=} \hlkwd{mean}\hlstd{(mpg))} \hlopt{%.>%} + \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= .,} + \hlkwd{aes}\hlstd{(}\hlkwd{factor}\hlstd{(cyl), mean.mpg,} \hlkwc{fill} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} + \hlkwd{scale_fill_discrete}\hlstd{(}\hlkwc{guide} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwa{NULL}\hlstd{)} \hlopt{+} + \hlkwd{geom_col}\hlstd{()} \hlopt{+} + \hlkwd{theme_bw}\hlstd{(}\hlnum{8}\hlstd{)} \hlkwb{->} \hlstd{my.plot} +\hlstd{plot.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{500}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{35}\hlstd{,} \hlkwc{plot.inset} \hlstd{=} \hlkwd{list}\hlstd{(my.plot))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_plot}\hlstd{(}\hlkwc{data} \hlstd{= plot.tb,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= plot.inset),} + \hlkwc{vp.width} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{2}\hlstd{,} + \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-plot-02-1} + +} + + + +\end{knitrout} + +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} +\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{()} +\hlstd{p.inset} \hlkwb{<-} \hlstd{p.main} \hlopt{+} + \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{xlim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{270}\hlstd{,} \hlnum{330}\hlstd{),} \hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{14}\hlstd{,} \hlnum{19}\hlstd{))} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwa{NULL}\hlstd{,} \hlkwc{y} \hlstd{=} \hlkwa{NULL}\hlstd{)} \hlopt{+} + \hlkwd{scale_color_discrete}\hlstd{(}\hlkwc{guide} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlopt{+} + \hlkwd{theme_bw}\hlstd{(}\hlnum{8}\hlstd{)} \hlopt{+} \hlkwd{theme}\hlstd{(}\hlkwc{aspect.ratio} \hlstd{=} \hlnum{1}\hlstd{)} +\hlstd{p.main} \hlopt{+} + \hlkwd{geom_plot}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{480}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{34}\hlstd{,} \hlkwc{label} \hlstd{=} \hlkwd{list}\hlstd{(p.inset),} \hlkwc{vp.height} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{2}\hlstd{,} + \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} \hlopt{+} + \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"rect"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlnum{NA}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} + \hlkwc{xmin} \hlstd{=} \hlnum{270}\hlstd{,} \hlkwc{xmax} \hlstd{=} \hlnum{330}\hlstd{,} \hlkwc{ymin} \hlstd{=} \hlnum{14}\hlstd{,} \hlkwc{ymax} \hlstd{=} \hlnum{19}\hlstd{,} + \hlkwc{linetype} \hlstd{=} \hlstr{"dotted"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-plot-03-1} + +} + + + +\end{knitrout} +\index{plots!inset plots|)} +\index{plots!inset graphical objects|(} +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} +\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{)} +\hlstd{Isoquercitin} \hlkwb{<-} \hlstd{magick}\hlopt{::}\hlkwd{image_read}\hlstd{(file1.name)} +\hlstd{file2.name} \hlkwb{<-} + \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlstr{"Robinin.png"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"ggpmisc"}\hlstd{,} \hlkwc{mustWork} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlstd{Robinin} \hlkwb{<-} \hlstd{magick}\hlopt{::}\hlkwd{image_read}\hlstd{(file2.name)} +\hlstd{grob.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{100}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{20}\hlstd{),} \hlkwc{height} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{,} \hlkwc{width} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{/}\hlnum{2}\hlstd{),} + \hlkwc{grobs} \hlstd{=} \hlkwd{list}\hlstd{(grid}\hlopt{::}\hlkwd{rasterGrob}\hlstd{(}\hlkwc{image} \hlstd{= Isoquercitin),} + \hlstd{grid}\hlopt{::}\hlkwd{rasterGrob}\hlstd{(}\hlkwc{image} \hlstd{= Robinin)))} + +\hlkwd{ggplot}\hlstd{()} \hlopt{+} + \hlkwd{geom_grob}\hlstd{(}\hlkwc{data} \hlstd{= grob.tb,} + \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= grobs,} \hlkwc{vp.height} \hlstd{= height,} \hlkwc{vp.width} \hlstd{= width),} + \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-grob-01-1} + +} + + + +\end{knitrout} +\index{plots!inset graphical objects|)} + +\begin{explainbox} +Grid graphics\index{grid graphics coordinate systems} provide the low-level functions that both \pkgname{ggplot2} and \pkgname{lattice} use under the hood. Grid supports different types of units for expressing the coordinates of positions within the plotting area. All examples outside this text box use \code{"native"} data coordinates, however, coordinates can be also given in physical units like \code{"mm"}. More useful when working with scalable plots is to use "npc" \emph{normalized parent coordinates}, which are expressed as numbers in the range 0 to 1, relative to the dimensions of the sides of the current \emph{viewport}, with origin at the lower left corner. + +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} +\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{+} + \hlkwd{geom_label_npc}\hlstd{(}\hlkwc{npcx} \hlstd{=} \hlnum{0.5}\hlstd{,} \hlkwc{npcy} \hlstd{=} \hlnum{0.9}\hlstd{,} \hlkwc{label} \hlstd{=} \hlstr{"a label"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-npc-eb-01-1} + +} + + + +\end{knitrout} + +\end{explainbox} + +\index{grammar of graphics!inset-related geometries|)} +\index{plots!insets|)} +\index{grammar of graphics!geometries|)} + +\section{Statistics}\label{sec:plot:statistics} +\index{grammar of graphics!statistics|(} + +Before learning about \ggplot \emph{statistics}, it is important to have clear how the mapping of factors to \emph{aesthetics} works. When a factor, for example, is mapped to \code{color}, it creates a new grouping, with the observations matching a given level of the factor, corresponding to a group. Most \emph{statistics} operate on the data for each of these groups separately, returning a summary for each group, for example, the mean of the observations in a group. + +\subsection{Functions}\label{sec:plot:function} +\index{grammar of graphics!function statistic|(} +\index{plots!plots of functions|(} +In addition to plotting data from a data frame with variables to map to $x$ and $y$ \emph{aesthetics}, it is possible to have only a variable mapped to $x$ and use \ggstat{stat\_function()} to compute the values to be mapped to $y$ using an \Rlang function. This avoids the need to generate data beforehand as even the number of data points to be generated can be set in \code{geom\_function()}. Any \Rlang function, user defined or not, can be used as long as it is vectorized, with the length of the returned vector equal to the length of the vector passed as first argument to it. The variable mapped to \code{x} determines the range, and the argument to parameter \code{n} of \code{geom\_function()} the length of the generated vector that is passed as first argument to \code{fun} when it is called to generate the values to napped to \code{y}. These are the $x$ and $y$ values passed to the \emph{geometry}. + +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} +\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)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-function-plot-01-1} + +} + + + +\end{knitrout} + +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} +\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{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +Edit the code above so as to plot in the same figure three curves, either for three different values for \code{mean} or for three different values for \code{sd}. +\end{playground} + +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} +\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{\},} + \hlkwc{args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{b} \hlstd{=} \hlnum{1.4}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +Edit the code above to use a different function, such as $e^{x + k}$, adjusting the argument(s) passed through \code{args} accordingly. Do this by means of an anonymous function, and by means of an equivalent named function defined by your code. +\end{playground} + +\index{plots!plots of functions|)} +\index{grammar of graphics!function statistic|)} + +\subsection{Summaries}\label{sec:plot:stat:summaries} +\index{grammar of graphics!summary statistic|(} +\index{plots!data summaries|(} +\index{plots!means}\index{plots!medians}\index{plots!error bars} +The summaries discussed in this section can be superimposed on raw data plots, or plotted on their own. Beware, that if scale limits are manually set, the summaries will be calculated from the subset of observations within these limits. Scale limits can be altered when explicitly defining a scale or by means of functions \Rfunction{xlim()} and \Rfunction{ylim()}. See section \ref{sec:plot:coord} on page \pageref{sec:plot:coord} for an explanation of how coordinate limits can be used to zoom into a plot without excluding of $x$ and $y$ values from the data. + +It is possible to summarize data on the fly when plotting. We describe in the same section the calculation of measures of central tendency and of variation, as \ggstat{stat\_summary()} allows them to be calculated simultaneously and added together with a single layer. + +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} +\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{),} + \hlkwd{rnorm}\hlstd{(}\hlnum{10}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{4}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{0.7}\hlstd{)),} + \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlnum{10}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"B"}\hlstd{,} \hlnum{10}\hlstd{)))} + \hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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.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.y}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.y} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlstr{"-"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{10}\hlstd{)} +\end{alltt} + +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-summary-plot-02-1} + +} + + + +\end{knitrout} + +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.y}. 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} +\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} +\end{kframe} +\end{knitrout} + +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} +\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{),} + \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.7}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +We do not give an example here, but it is possible to use user-defined functions instead of the functions exported by package \ggplot (based on those in package \Hmisc). Because arguments to the function used, except for the first one containing the variable in \code{data} mapped to the $y$ aesthetic, are supplied as a named list through parameter \code{fun.args}, the names used for parameters in the function definition need only match the names in this list. + +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} +\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.y} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} + \hlkwc{fill} \hlstd{=} \hlstr{"white"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} + \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.data} \hlstd{=} \hlstr{"mean_cl_boot"}\hlstd{,} + \hlkwc{geom} \hlstd{=} \hlstr{"errorbar"}\hlstd{,} + \hlkwc{width} \hlstd{=} \hlnum{0.1}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{3}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{0.3}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} + \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun.y} \hlstd{= mean)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-summary-plot-09a-1} + +} + + + +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +Passing \code{"errorbar"} instead of \code{"linerange"} to \code{geom} results in traditional ``capped'' error bars. However, this type of error bar has been criticized as adding unnecessary clutter to plots \autocite{Tufte1983}. We can use \code{width} to reduce the width of the caps at the ends of the error bars. + +If we have already calculated values for the summaries, we can still obtain the same plots by mapping variables to the \emph{aesthetics} required by \gggeom{geom\_errorbar()} and \gggeom{geom\_linerange()}: \code{x}, \code{y}, \code{ymax} and \code{ymin}. + +\begin{explainbox} +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} + \hlkwd{geom_col}\hlstd{(}\hlkwc{stat} \hlstd{=} \hlstr{"summary"}\hlstd{,} \hlkwc{fun.y} \hlstd{= mean)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{explainbox} +\index{plots!data summaries|)} +\index{grammar of graphics!summary statistic|)} + +\subsection{Smoothers and models} +\index{plots!smooth curves|(} +\index{plots!fitted curves|(} +\index{plots!statistics!smooth} +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 spline is automatically chosen based on the number of observations. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using method = 'loess' and formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-02-1} + +} + + + +\end{knitrout} + +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()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} + \hlkwd{stat_smooth}(method=\hlstr{"lm"}) + +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-04-1} + +} + + + +\end{knitrout} + +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} +\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{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +Instead of using the default \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 fitted by \Rfunction{lm()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-06-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(Puromycin,} \hlkwd{aes}\hlstd{(conc, rate,} \hlkwc{color} \hlstd{= state))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{geom_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"nls"}\hlstd{,} + \hlkwc{formula} \hlstd{= y} \hlopt{~} \hlkwd{SSmicmen}\hlstd{(x, Vm, K),} + \hlkwc{se} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(Puromycin,} \hlkwd{aes}\hlstd{(conc, rate,} \hlkwc{color} \hlstd{= state))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{geom_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"nls"}\hlstd{,} + \hlkwc{method.args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{formula} \hlstd{= y} \hlopt{~} \hlstd{(Vmax} \hlopt{*} \hlstd{x)} \hlopt{/} \hlstd{(k} \hlopt{+} \hlstd{x),} + \hlkwc{start} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{Vmax} \hlstd{=} \hlnum{200}\hlstd{,} \hlkwc{k} \hlstd{=} \hlnum{0.05}\hlstd{)),} + \hlkwc{se} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= my.formula,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} + \hlkwd{stat_poly_eq}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula,} \hlkwd{aes}\hlstd{(}\hlkwc{label} \hlstd{= ..eq.label..),} + \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{,} \hlkwc{label.x.npc} \hlstd{=} \hlnum{0.3}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-12-1} + +} + + + +\end{knitrout} + +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} +\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{+} + \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} \hlkwc{formula} \hlstd{= my.formula,} \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{)} \hlopt{+} + \hlkwd{stat_fit_tb}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{,} + \hlkwc{method.args} \hlstd{=} \hlkwd{list}\hlstd{(}\hlkwc{formula} \hlstd{= my.formula),} + \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} + \hlkwc{tb.vars} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwc{Parameter} \hlstd{=} \hlstr{"term"}\hlstd{,} + \hlkwc{Estimate} \hlstd{=} \hlstr{"estimate"}\hlstd{,} + \hlstr{"s.e."} \hlstd{=} \hlstr{"std.error"}\hlstd{,} + \hlstr{"italic(t)"} \hlstd{=} \hlstr{"statistic"}\hlstd{,} + \hlstr{"italic(P)"} \hlstd{=} \hlstr{"p.value"}\hlstd{),} + \hlkwc{label.y.npc} \hlstd{=} \hlstr{"top"}\hlstd{,} \hlkwc{label.x.npc} \hlstd{=} \hlstr{"right"}\hlstd{,} + \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-13-1} + +} + + + +\end{knitrout} + +Package \pkgname{ggpmisc} provides additional \emph{statistics} for the annotation of plots based on fitted models. Please see the package documentation for details. + +\index{plots!smooth curves|)} +\index{plots!fitted curves|)} + +\subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogram} +\index{plots!histograms|(} + +When the number of observations is rather small, we can rely on the density of graphical elements to convey the density of the observations. For example, scatter plots using well-chosen values for \code{alpha} can give a satisfactory impression of the density. Rug plots, described in section \ref{sec:plot:rug} on page \pageref{sec:plot:rug}, can also satisfactorily convey the density of observations along $x$ and/or $y$ axes. Such approaches do not involve computations, while the \emph{statistics} described in this section do. Frequencies by value-range (or bins) and empirical density functions are summaries especially useful when the number of observations is large. These summaries can be computed in one or more dimensions. + +Histograms are defined by how the plotted values are calculated. Although histograms are most frequently plotted as bar plots, many bar or ``column'' plots are not histograms. Although rarely done in practice, a histogram could be plotted using a different \emph{geometry} using \ggstat{stat\_bin()}, the \emph{statistic} used by default by \gggeom{geom\_histogram()}. This \emph{statistic} does binning of observations before computing frequencies, and is suitable for continuous $x$ scales. When a factor is mapped to \code{x}, \ggstat{stat\_count()} should be used, which is the default \code{stat} for \gggeom{geom\_bar()}. These two \emph{geometries} are described in this section about statistics, because they default to using statistics different from \code{stat\_identity()} and consequently summarize the data. + +As before, we generate suitable artificial data. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{set.seed}\hlstd{(}\hlnum{12345}\hlstd{)} +\hlstd{my.data} \hlkwb{<-} +\hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{200}\hlstd{),} +\hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlkwd{rnorm}\hlstd{(}\hlnum{100}\hlstd{,} \hlopt{-}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{),} \hlkwd{rnorm}\hlstd{(}\hlnum{100}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{1}\hlstd{)),} +\hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlkwd{c}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlstr{"B"}\hlstd{),} \hlkwd{c}\hlstd{(}\hlnum{100}\hlstd{,} \hlnum{100}\hlstd{))) )} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x))} \hlopt{+} + \hlkwd{geom_histogram}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-histogram-plot-01-1} + +} + + + +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{stat}\hlstd{(density)),} \hlkwc{bins} \hlstd{=} \hlnum{15}\hlstd{,} \hlkwc{position} \hlstd{=} \hlstr{"dodge"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-histogram-plot-03-1} + +} + + + +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} + \hlkwd{stat_bin2d}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} + \hlkwd{coord_fixed}\hlstd{(}\hlkwc{ratio} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-bin2d-plot-01-1} + +} + + + +\end{knitrout} + +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 = stat(density))}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{coord_fixed}\hlstd{(}\hlkwc{ratio} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-hex-plot-01-1} + +} + + + +\end{knitrout} +\index{plots!histograms|)} + +\subsection{Density functions}\label{sec:plot:density} +\index{plots!density plot!1 dimension|(} +\index{plots!statistics!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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(y,} \hlkwc{color} \hlstd{= group))} \hlopt{+} + \hlkwd{geom_density}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-density-plot-01-1} + +} + + + +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} +\index{plots!density plot!1 dimension|)} + +\index{plots!density plot!2 dimensions|(} +\index{plots!statistics!density 2d} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{color} \hlstd{= group))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{geom_rug}\hlstd{()} \hlopt{+} + \hlkwd{stat_density_2d}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-density-plot-10-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{geom_density_2d}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +In the next example we plot the groups in separate panels, and use a \emph{geometry} supporting the \code{fill} \emph{aesthetic} and we map to it the variable \code{level}, computed by \code{stat\_density\_2d()} + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{stat}\hlstd{(level)),} \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{)} \hlopt{+} + \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlstd{group)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-density-plot-12-1} + +} + + + +\end{knitrout} + + +\index{plots!density plot!2 dimensions|)} + +\subsection{Box and whiskers plots}\label{sec:boxplot} +\index{box plots|see{plots, box and whiskers plot}} +\index{plots!box and whiskers plot|(} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} + \hlkwd{stat_boxplot}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-bw-plot-01-1} + +} + + + +\end{knitrout} + +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.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} +\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{,} + \hlkwc{outlier.color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{outlier.shape} \hlstd{=} \hlstr{"*"}\hlstd{,} \hlkwc{outlier.size} \hlstd{=} \hlnum{5}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-bw-plot-02-1} + +} + + + +\end{knitrout} + +\index{plots!box and whiskers plot|)} + +\subsection{Violin plots}\label{sec:plot:violin} +\index{plots!violin plot|(} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} + \hlkwd{geom_violin}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_point}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.33}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlnum{21}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-violin-plot-02-1} + +} + + + +\end{knitrout} + +As with other \emph{geometries}, their appearance obeys both the usual \emph{aesthetics} such as color, and others specific to these types of visual representation. + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(group, y))} \hlopt{+} + \hlkwd{geom_quasirandom}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-ggbeeswarm-plot-01-1} + +} + + + +\end{knitrout} + +\index{plots!violin plot|)} +\index{grammar of graphics!statistics|)} + +\section{Facets}\label{sec:plot:facets} +\index{grammar of graphics!facets|(} +\index{plots!trellis-like}\index{plots!coordinated panels} +Facets are used in a special kind of plots containing multiple panels in which the panels share some properties. +These sets of coordinated panels are a useful tool for visualizing complex data. These plots became popular through the \code{trellis} graphs in \langname{S}, and the \pkgname{lattice} package in \Rlang. The basic idea is to have rows and/or columns of plots with common scales, all plots showing values for the same response variable. This is useful when there are multiple classification factors in a data set. Similar-looking plots, but with free scales or with the same scale but a `floating' intercept, are sometimes also useful. In \ggplot there are two possible types of facets: facets organized in a grid, and facets along a single `axis' of variation but, possibly, wrapped into two or more rows. These are produced by adding \Rfunction{facet\_grid()} or \Rfunction{facet\_wrap()}, respectively. In the examples below we use \gggeom{geom\_point()} but faceting can be used with \code{ggplot} objects containing diverse kinds of layers, displaying either observations or summaries from \code{data}. + + + +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} +\begin{alltt} +\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\hlstd{p} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-00-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-01-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(.} \hlopt{~} \hlstd{cyl)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + + + +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} +\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} +\end{kframe} +\end{knitrout} + + + +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} +\begin{alltt} +\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} \hlkwc{margins} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-06-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlstd{p} \hlopt{+} \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(vs, am),} \hlkwc{labeller} \hlstd{= label_both)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-facets-07-1} + +} + + + +\end{knitrout} + +\begin{explainbox} +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} +\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{))} +\hlstd{p1} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(mpg, wt))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl12),} \hlkwc{labeller} \hlstd{= label_parsed)} +\end{alltt} +\end{kframe} +\end{knitrout} + +More frequently we may need to include the levels of the factor used in the faceting as part of the labels. Here we use as \code{labeller}, function \Rfunction{label\_bquote()} with a special syntax that allows us to use an expression where replacement based on the facet (panel) data takes place. See section \ref{sec:plot:plotmath} for an example of the use of \code{bquote()}, the \Rlang function on which \Rfunction{label\_bquote()}, is built. + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{p} \hlopt{+} + \hlkwd{facet_grid}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{vars}\hlstd{(cyl),} + \hlkwc{labeller} \hlstd{=} \hlkwd{label_bquote}\hlstd{(}\hlkwc{cols} \hlstd{=} \hlkwd{.}\hlstd{(cyl)}\hlopt{~}\hlstr{"cylinders"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\end{explainbox} +%\begin{infobox} +%\sloppy +%In versions of \ggplot before 2.0.0, \code{labeller} was not implemented for \Rfunction{facet\_wrap()}, it was only available for \Rfunction{facet\_grid()}. +%\end{infobox} + +In the next example we create a plot with wrapped facets. In this case the number of levels is small, and no wrapping takes place by default. In cases when more panels are present, wrapping into two or more continuation rows is the default. Here, we force wrapping with \code{nrow = 2}. When using \Rfunction{facet\_wrap()} there is only one dimension, and the parameter is called \code{facets}, instead of \code{rows} or \code{cols}. + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-facets-13-1} + +} + + + +\end{knitrout} + +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} +\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} +\end{kframe} +\end{knitrout} + + +%In versions of \ggplot before 2.0.0, \code{labeller} was not implemented for +%\code{facet\_wrap()}, it was only available for \code{facet\_grid()}. In the current +%version it is implemented for both. +% +%<>= +%opts_chunk$set(opts_fig_wide) +%@ +% +%<<>>= +%p + facet_wrap(~ vs, labeller = label_bquote(alpha ^ .(vs))) +%@ +\index{grammar of graphics!facets|)} + +\section{Scales}\label{sec:plot:scales} +\index{grammar of graphics!scales|(} + +In earlier sections of this chapter, examples have used the default \emph{scales} or we have set them with convenience functions. In the present section we describe in more detail the use of \emph{scales}. There are \emph{scales} available for different \emph{aesthetics} ($\approx$ attributes) of the plotted geometrical objects, such as position (\code{x, y, z}), \code{size}, \code{shape}, \code{linetype}, \code{color}, \code{fill}, \code{alpha} or transparency, \code{angle}. Scales determine how values in \code{data} are mapped to values of an \emph{aesthetics}, and how these values are labeled. + +Depending on the characteristics of the data being mapped, \emph{scales} can be continuous or discrete, for \code{numeric} or \code{factor} variables in \code{data}, respectively. On the other hand, some \emph{aesthetics}, like \code{size}, can vary continuously but others like \code{linetype} are inherently discrete. In addition to discrete scales for inherently discrete \emph{aesthetics}, discrete scales are available for those \emph{aesthetics} that are inherently continuous, like \code{x}, \code{y}, \code{size}, \code{color}, etc.\ + +The scales used by default set the mapping automatically (e.g., which color value corresponds to $x = 0$ and which one to $x = 1$). However, for each \emph{aesthetic} such as \code{color}, there are multiple scales to choose from when creating a plot, both continuous and discrete (e.g., 20 different color scales in \ggplot 3.2.0). + +\begin{explainbox} +\emph{Aesthetics} in a plot layer, in addition to being determined by mappings, can also be set to constant values (e.g., plotting all points in a layer in red instead of the default black). \emph{Aesthetics} set to constant values, are not mapped to data, and are consequently independent of scales. In other words, properties of plot elements can be either set to a single constant value of an \emph{aesthetic} affecting all observations present in the layer \code{data}, or mapped to a variable in \code{data} in which case the value of the \emph{aesthetic}, such as \code{color}, will depend on the values of the mapped variable. +\end{explainbox} + +The most direct mapping to data is \code{identity}, which means that the data is taken at its face value. In a color scale, say \ggscale{scale\_color\_identity()}, the variable in the data would be encoded with values such as \code{"red"}, \code{"blue"}---i.e., valid \Rlang colours. In a simple mapping using \ggscale{scale\_color\_discrete()} levels of a factor, such as \code{"treatment"} and \code{"control"} would be represented as distinct colours with the correspondence of individual factor levels to individual colours selected automatically by default. In contrast with \code{scale\_color\_manual()} the user needs to explicitly provide the mapping between factor levels and colours by passing arguments to the scale functions' parameters \code{breaks} and \code{values}. + +A continuous data variable needs to be mapped to an \emph{aesthetic} through a continuous scale such as \code{scale\_color\_continuous()} or one its various variants. Values in a \code{numeric} variable will be mapped into a continuous range of colours, determined either automatically through a palette or manually by giving the colours at the extremes, and optionally at multiple intermediate values, within the range of variation of the mapped variable (e.g., scale settings so that the color varies gradually between \code{"red"} and \code{"gray50"}). Handling of missing values is such that mapping a value in a variable to an \code{NA} value for an aesthetic such as color makes the mapped values invisible. The reverse, mapping \code{NA} values in the data to a specific value of an aesthetic is also possible (e.g., displaying \code{NA} values in the mapped variable in red, while other values are mapped to shades of blue). + +% +% +%\sloppy +%Advanced scale manipulation requires package \code{scales} to be loaded, although \ggplot (2.0.0 and later) re-export several functions from package \code{scales}. Some simple examples follow. + +%\begin{infobox} +\subsection{Axis and key labels}\label{sec:plot:scale:name}\label{sec:plot:labs} +\index{plots!labels|(} +\index{plots!title|(} +\index{plots!subtitle|(} +\index{plots!tag|(} +\index{plots!caption|(} +First we describe a feature common to all scales, their \code{name}. The default \code{name} of all scales is the name of the variable or the expression mapped to it. In the case of the \code{x}, \code{y} and \code{z} \emph{aesthetics} the \code{name} given to the scale is used for the axis labels. For other \emph{aesthetics} the name of the scale becomes the ``heading'' or \emph{key title} of the guide or key. All scales have a \code{name} parameter to which a character string or \Rlang expression (see section \ref{sec:plot:plotmath}) can be passed as an argument to override the default. + +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} +\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{+} + \hlkwd{geom_line}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} \hlopt{+} + \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Time (d)"}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Circumference (mm)"}\hlstd{)} \hlopt{+} + \hlkwd{ggtitle}\hlstd{(}\hlkwc{label} \hlstd{=} \hlstr{"Growth of orange trees"}\hlstd{,} + \hlkwc{subtitle} \hlstd{=} \hlstr{"Starting from 1968-12-31"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-axis-labels-01-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{xlab}(\hlstr{"\hlkwd{Time} (d)"}) + + \hlkwd{ylab}(\hlstr{"\hlkwd{Circumference} (mm)"}) + +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_line}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlstr{"Growth of orange trees"}\hlstd{,} + \hlkwc{subtitle} \hlstd{=} \hlstr{"Starting from 1968-12-31"}\hlstd{,} + \hlkwc{caption} \hlstd{=} \hlstr{"see Draper, N. R. and Smith, H. (1998)"}\hlstd{,} + \hlkwc{tag} \hlstd{=} \hlstr{"A"}\hlstd{,} + \hlkwc{x} \hlstd{=} \hlstr{"Time (d)"}\hlstd{,} + \hlkwc{y} \hlstd{=} \hlstr{"Circumference (mm)"}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"Tree\textbackslash{}nnumber"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-axis-labels-03-1} + +} + + + +\end{knitrout} + +\begin{playground} +Make an empty plot (\code{ggplot()}) and add to it as title an \Rlang expression producing $y = b_0 + b_1 x + b_2 x^2$. (Hint: have a look at the examples for the use of expressions in the \code{plotmath} demo in \Rlang by typing \code{demo(plotmath)} at the \Rlang console. +\end{playground} + +%\begin{warningbox} +%Check!! +%When setting or updating labels using either \Rfunction{labs()} or \Rfunction{update\_labels()} be aware that even though \code{color} and \code{color} are synonyms for the same \emph{aesthetics}, the `name' used in the call to \Rfunction{aes()} must match the `name' used when setting or updating the labels. +%\end{warningbox} +% +%The labels used in keys and axis tick-labels for factor levels can be changed through the different \emph{scales} as described in section \ref{sec:plot:scales} on page \pageref{sec:plot:scales}. +% +\index{plots!tag|)} +\index{plots!caption|)} +\index{plots!subtitle|)} +\index{plots!title|)} +\index{plots!labels|)} + +\subsection{Continuous scales}\label{sec:plot:scales:continuous} +\index{grammar of graphics!continuous scales|(} +We start by listing the most frequently used arguments to the continuous scale functions: \code{name}, \code{breaks}, \code{minor\_breaks}, \code{labels}, \code{limits}, \code{expand}, \code{na.value}, \code{trans}, \code{guide}, and \code{position}. The value of \code{name} is used for axis labels or the key title (see previous section). The arguments to \code{breaks} and \code{minor\_breaks} override the default locations of major and minor ticks and grid lines. Setting them to \code{NULL} suppresses the ticks. By default the tick labels are generated from the value of \code{breaks} but an argument to \code{labels} of the same length as \code{breaks} will replace these defaults. The values of \code{limits} determine both the range of values in the data included and the plotting area as described above---by default the out-of-bounds (\code{oob}) observations are replaced by \code{NA} but it is possible to instead ``squish'' these observations towards the edge of the plotting area. The argument to \code{expand} determines the size of the margins or padding added to the area delimited by \code{lims} when setting the ``visual'' plotting area. The value passed to \code{na.value} is used as a replacement for \code{NA} valued observations---most useful for \code{color} and \code{fill} aesthetics. The transformation object passed as an argument to \code{trans} determines the transformation used---the transformation affects the rendering, but breaks and tick labels remain expressed in the original data units. The argument to \code{guide} determines the type of key or removes the default key. Depending on the scale in question not all these parameters are available. + + + +We generate new fake data. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{),} + \hlkwd{rnorm}\hlstd{(}\hlnum{20}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{40}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{10}\hlstd{)),} + \hlkwc{group} \hlstd{=} \hlkwd{factor}\hlstd{(}\hlkwd{c}\hlstd{(}\hlkwd{rep}\hlstd{(}\hlstr{"A"}\hlstd{,} \hlnum{20}\hlstd{),} \hlkwd{rep}\hlstd{(}\hlstr{"B"}\hlstd{,} \hlnum{20}\hlstd{))),} + \hlkwc{z} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{40}\hlstd{,} \hlkwc{mean} \hlstd{=} \hlnum{12}\hlstd{,} \hlkwc{sd} \hlstd{=} \hlnum{6}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} +\subsubsection{Limits} + +Limits are relevant to all kinds of \emph{scales}. Limits are set through parameter \code{limits} of the different scale functions. They can also be set with convenience functions \code{xlim()} and \code{ylim()} in the case of the \code{x} and \code{y} \emph{aesthetics}, and more generally with function \code{lims()} which like \code{labs()}, takes arguments named according to the name of the \emph{aesthetics}. The \code{limits} argument of scales accepts vectors, factors or a function computing them from \code{data}. In contrast, the convenience functions do not accept functions as their arguments. + +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} +\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{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{50}\hlstd{,} \hlnum{NA}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{ylim}\hlstd{(}\hlnum{50}\hlstd{,} \hlnum{NA}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +In general, setting hard limits should be avoided, even though a warning is issued about \code{NA} values being omitted, as it is easy to unwillingly subset the data being plotted. +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{x} \hlstd{=} \hlnum{0}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-limits-04-1} + +} + + + +\end{knitrout} + +The \code{expand} parameter of the scales plays a different role than \Rfunction{expand\_limits()}. It controls how much larger the ``visual'' plotting area is compared to the limits of the actual plotting area. In other words, it adds a ``margin'' or padding to the plotting area outside the limits set either dynamically or manually. Very rarely plots are drawn so that observations are plotted on top of the axes, avoiding this is a key role of \code{expand}. Rug plots and marginal annotations will also require the plotting area to be expanded. In \ggplot the default is to always apply some expansion. + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} + \hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= group,} \hlkwc{color} \hlstd{= group,} \hlkwc{x} \hlstd{= y))} \hlopt{+} + \hlkwd{stat_density}\hlstd{(}\hlkwc{alpha} \hlstd{=} \hlnum{0.3}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{expand} \hlstd{=} \hlkwd{expand_scale}\hlstd{(}\hlkwc{add} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0.02}\hlstd{)))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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} +\end{kframe} +\end{knitrout} + +In the case of scales, we cannot reverse their direction through the setting of limits. We need instead to use a transformation as described in section \ref{sec:plot:scales:trans} on page \pageref{sec:plot:scales:trans}. But, inconsistently, \Rfunction{xlim()} and \Rfunction{ylim()} do implicitly allow this transformation through the numeric values passed as limits. + +%%% to be moved +%We can also use \code{limits} with discrete scales, listing all or some of the levels of a factor that are to be included in the scale. This works even if the levels are defined in the factor but not present in a given data set, such as after subsetting. + +\begin{playground} +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} +\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{))} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{playground} + +\subsubsection{Ticks and their labels}\label{sec:plot:scales:ticks} + +Parameter \code{breaks}\index{plots!scales!tick breaks} is used to set the location of ticks along the axis. Parameter \code{labels}\index{plots!scales!tick labels} is used to set the tick labels. Both parameters can be passed either a vector or a function as an argument. The default is to compute ``good'' breaks based on the limits and format the numbers as strings. + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{, pi} \hlopt{*} \hlnum{10}\hlstd{,} \hlnum{40}\hlstd{,} \hlnum{60}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{= scales}\hlopt{::}\hlkwd{pretty_breaks}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{7}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{, pi} \hlopt{*} \hlnum{10}\hlstd{,} \hlnum{40}\hlstd{,} \hlnum{60}\hlstd{),} + \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"20"}\hlstd{,} \hlkwd{expression}\hlstd{(}\hlnum{10}\hlopt{*}\hlstd{pi),} \hlstr{"40"}\hlstd{,} \hlstr{"60"}\hlstd{))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-ticks-02-1} + +} + + + +\end{knitrout} + +Package \pkgname{scales} provides several functions for the automatic generation of labels. For example, to display tick labels as percentages for data available as decimal fractions, we can use function \code{scales::percent()}. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{labels} \hlstd{= scales}\hlopt{::}\hlstd{percent)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-ticks-03-1} + +} + + + +\end{knitrout} + +For currency, we can use \code{scales::dollar()}, to include commas separating thousands, millions, so on, we can use \code{scales::comma()}, and for numbers formatted using exponents of 10---useful for logarithmic-transformed scales---we can use \code{scales::scientific\_format()}. It is also possible to use user-defined functions both for breaks and labels. + +\subsubsection{Transformed scales}\label{sec:plot:scales:trans} + +The\index{plots!scales!transformations} default scales used by the \code{x} and \code{y} aesthetics, \ggscale{scale\_x\_continuous()} and \ggscale{scale\_y\_continuous()}, accept a user-supplied transformation function as an argument to \code{trans} with default code{trans = "identity"} (no transformation). In addition, there are predefined convenience scale functions for \code{log10}, \code{sqrt} and \code{reverse}. + +\begin{warningbox} + Similar to the maths functions of \Rlang, the name of the scales are \ggscale{scale\_x\_log10()} and \ggscale{scale\_y\_log10()} rather than \ggscale{scale\_y\_log()} because in \Rlang, the function \code{log} returns the natural logarithm. +\end{warningbox} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_x_reverse}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-trans-01-1} + +} + + + +\end{knitrout} + +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} +\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} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z,} \hlkwd{log10}\hlstd{(y)))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{trans} \hlstd{=} \hlstr{"reciprocal"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_line}\hlstd{()} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{trans} \hlstd{=} \hlstr{"log"}\hlstd{,} \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{,} \hlnum{50}\hlstd{,} \hlnum{100}\hlstd{,} \hlnum{200}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\subsubsection{Position of $x$ and $y$ axes} +\index{plots!axis position} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"top"}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{position} \hlstd{=} \hlstr{"right"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-axis-position-01-1} + +} + + + +\end{knitrout} + +\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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwd{aes}\hlstd{(wt, mpg))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{sec.axis} \hlstd{=} \hlkwd{sec_axis}\hlstd{(}\hlopt{~} \hlstd{.} \hlopt{^-}\hlnum{1}\hlstd{,} \hlkwc{name} \hlstd{=} \hlstr{"1/y"}\hlstd{) )} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-axis-secondary-01-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{sec.axis} \hlstd{=} \hlkwd{sec_axis}\hlstd{(}\hlopt{~} \hlstd{.,} \hlkwc{name} \hlstd{=} \hlstr{"y"}\hlstd{,} \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{()))} +\end{alltt} +\end{kframe} +\end{knitrout} +\index{grammar of graphics!continuous scales|)} + +\subsection{Time and date scales for $x$ and $y$}\label{sec:plot:scales:time:date} +\index{grammar of graphics!time and date scales|(} +In \Rlang and many other computing languages, time values are stored as integer or numeric values subject to special interpretation. Times stored as objects of class \code{POSIXct} can be mapped to continuous \emph{aesthetics} such as $x$ and $y$. Special scales are available for these quantities. + +We can set limits and breaks using constants as time or dates. These are most easily input with the functions in packages \pkgname{lubridate} or \pkgname{anytime}. + + +\begin{warningbox} +Warnings are issued in the next two chunks as we are using scale limits to subset a part of the observations present in \code{data}. +\end{warningbox} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{geom_line}\hlstd{()} \hlopt{+} + \hlkwd{scale_x_datetime}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwa{NULL}\hlstd{,} + \hlkwc{breaks} \hlstd{=} \hlkwd{ymd_hm}\hlstd{(}\hlstr{"2019-06-11 12:00"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"EET"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(}\hlnum{0}\hlopt{:}\hlnum{1}\hlstd{),} + \hlkwc{limits} \hlstd{=} \hlkwd{ymd_hm}\hlstd{(}\hlstr{"2019-06-11 00:00"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"EET"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{2}\hlstd{)))} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Air temperature (C)"}\hlstd{)} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Removed 7199 row(s) containing missing values (geom\_path).}}\end{kframe} + +{\centering \includegraphics[width=.9\textwidth]{figure/pos-scale-datetime-01-1} + +} + + + +\end{knitrout} + +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} +\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{+} + \hlkwd{geom_line}\hlstd{()} \hlopt{+} + \hlkwd{scale_x_datetime}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwa{NULL}\hlstd{,} + \hlkwc{date_breaks} \hlstd{=} \hlstr{"1 hour"}\hlstd{,} + \hlkwc{limits} \hlstd{=} \hlkwd{ymd_hm}\hlstd{(}\hlstr{"2019-06-16 00:00"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"EET"}\hlstd{)} \hlopt{+} \hlkwd{hours}\hlstd{(}\hlkwd{c}\hlstd{(}\hlnum{6}\hlstd{,} \hlnum{18}\hlstd{)),} + \hlkwc{date_labels} \hlstd{=} \hlstr{"%H:%M"}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Air temperature (C)"}\hlstd{)} \hlopt{+} + \hlkwd{expand_limits}\hlstd{(}\hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Removed 9359 row(s) containing missing values (geom\_path).}}\end{kframe} + +{\centering \includegraphics[width=.9\textwidth]{figure/pos-scale-datetime-02-1} + +} + + + +\end{knitrout} + +\begin{playground} +The formatting strings used are those supported by \Rfunction{strptime()} and \code{help(strptime)} lists them. Change, in the two examples above, the $y$-axis labels used and the limits---e.g., include a single hour or a whole week of data, check which tick labels are produced by default and then pass as an argument to \code{date\_labels} different format strings, taking into account that in addition to the \emph{conversion specification} codes, format strings can include additional text. +\end{playground} +\index{grammar of graphics!time and date scales|)} + +\subsection{Discrete scales for $x$ and $y$} +\index{grammar of graphics!discrete scales|(} + +In\index{plots!scales!limits} the case of ordered or unordered factors, the tick labels are by default the names of the factor levels. Consequently, one roundabout way of obtaining the desired tick labels is to set them as factor levels. This approach is not recommended as in many cases the text of the desired tick labels may not be recognized as a valid name making the code using them more difficult to type in scripts or at the command prompt. It is best to use simple mnemonic short names for factor levels and variables, and to set suitable labels through \emph{scales} when plotting, as we will show here. + +We can use \ggscale{scale\_x\_discrete()} to reorder and select the columns without altering the data. If we use this approach to subset the data, then to avoid warnings we need to add \code{na.rm = TRUE}. We additionally use \code{scale\_x\_discrete} to convert level names to uppercase. + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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.y} \hlstd{= mean,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} + \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"compact"}\hlstd{,} \hlstr{"subcompact"}\hlstd{,} \hlstr{"midsize"}\hlstd{),} + \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"COMPACT"}\hlstd{,} \hlstr{"SUBCOMPACT"}\hlstd{,} \hlstr{"MIDSIZE"}\hlstd{))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-discrete-10-1} + +} + + + +\end{knitrout} + +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} +\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)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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.y} \hlstd{= mean)} +\end{alltt} +\end{kframe} +\end{knitrout} +\index{grammar of graphics!discrete scales|)} + + +\subsection{Size} +\index{grammar of graphics!size scales|(} +For the \code{size} \emph{aesthetic}, several scales are available, both discrete and continuous. They do not differ much from those already described above. \emph{Geometries} \gggeom{geom\_point()}, \gggeom{geom\_line()}, \gggeom{geom\_hline()}, \gggeom{geom\_vline()}, \gggeom{geom\_text()}, \gggeom{geom\_label()} obey \code{size} as expected. In the case of \gggeom{geom\_bar()}, \gggeom{geom\_col()}, \gggeom{geom\_area()} and all other geometric elements bordered by lines, \code{size} is obeyed by these border lines. In fact, other aesthetics natural for lines such as \code{linetype} also apply to these borders. + +When using \code{size} scales, \code{breaks} and \code{labels} affect the key or \code{guide}. In scales that produce a key passing \code{guide = FALSE} removes the key corresponding to the scale. +\index{grammar of graphics!size scales|)} + +\subsection{Color and fill} +\index{grammar of graphics!color and fill scales|(} +\index{plots!with colors|(} + +color and fill scales are similar, but they affect different elements of the plot. All visual elements in a plot obey the \code{color} \emph{aesthetic}, but only elements that have an inner region and a boundary, obey both \code{color} and \code{fill} \emph{aesthetics}. There are separate but equivalent sets of scales available for these two \emph{aesthetics}. We will describe in more detail the \code{color} \emph{aesthetic} and give only some examples for \code{fill}. We will, however, start by reviewing how colors are defined and used in \Rlang. + +\subsubsection{Color definitions in R}\label{sec:plot:colors} +\index{color!definitions|(} +Colors can be specified in \Rlang not only through character strings with the names of previously defined colors, but also directly as strings describing the RGB (red, green and blue) components as hexadecimal numbers (on base 16 expressed using 0, 1, 2, 3, 4, 6, 7, 8, 9, A, B, C, D, E, and F as ``digits'') such as \code{"\#FFFFFF"} for white or \code{"\#000000"} for black, or \code{"\#FF0000"} for the brightest available pure red. + +The list of color names\index{color!names} known to \Rlang can be obtained be typing \code{colors()} at the \Rlang console. +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} +\begin{alltt} +\hlkwd{length}\hlstd{(}\hlkwd{colors}\hlstd{())} +\end{alltt} +\begin{verbatim} +## [1] 657 +\end{verbatim} +\begin{alltt} +\hlkwd{grep}\hlstd{(}\hlstr{"dark"}\hlstd{,}\hlkwd{colors}\hlstd{(),} \hlkwc{value} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "darkblue" "darkcyan" "darkgoldenrod" "darkgoldenrod1" +## [5] "darkgoldenrod2" "darkgoldenrod3" "darkgoldenrod4" "darkgray" +## [9] "darkgreen" "darkgrey" "darkkhaki" "darkmagenta" +## [13] "darkolivegreen" "darkolivegreen1" "darkolivegreen2" "darkolivegreen3" +## [17] "darkolivegreen4" "darkorange" "darkorange1" "darkorange2" +## [21] "darkorange3" "darkorange4" "darkorchid" "darkorchid1" +## [25] "darkorchid2" "darkorchid3" "darkorchid4" "darkred" +## [29] "darksalmon" "darkseagreen" "darkseagreen1" "darkseagreen2" +## [33] "darkseagreen3" "darkseagreen4" "darkslateblue" "darkslategray" +## [37] "darkslategray1" "darkslategray2" "darkslategray3" "darkslategray4" +## [41] "darkslategrey" "darkturquoise" "darkviolet" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{col2rgb}\hlstd{(}\hlstr{"purple"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [,1] +## red 160 +## green 32 +## blue 240 +\end{verbatim} +\begin{alltt} +\hlkwd{col2rgb}\hlstd{(}\hlstr{"#FF0000"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [,1] +## red 255 +## green 0 +## blue 0 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{col2rgb}\hlstd{(}\hlstr{"purple"}\hlstd{,} \hlkwc{alpha} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [,1] +## red 160 +## green 32 +## blue 240 +## alpha 255 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{rgb}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "#FFFF00" +\end{verbatim} +\begin{alltt} +\hlkwd{rgb}\hlstd{(}\hlnum{1}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{0}\hlstd{,} \hlkwc{names} \hlstd{=} \hlstr{"my.color"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## my.color +## "#FFFF00" +\end{verbatim} +\begin{alltt} +\hlkwd{rgb}\hlstd{(}\hlnum{255}\hlstd{,} \hlnum{255}\hlstd{,} \hlnum{0}\hlstd{,} \hlkwc{names} \hlstd{=} \hlstr{"my.color"}\hlstd{,} \hlkwc{maxColorValue} \hlstd{=} \hlnum{255}\hlstd{)} +\end{alltt} +\begin{verbatim} +## my.color +## "#FFFF00" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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} +\begin{verbatim} +## [1] "#804040" "#608040" "#408080" "#604080" "#804040" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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} +\begin{verbatim} +## [1] "#FFC5D0" "#D4D8A7" "#99E2D8" "#D5D0FC" "#FFC5D0" +\end{verbatim} +\end{kframe} +\end{knitrout} + +It is also important to remember that humans can only distinguish a limited set of colours, and even smaller color gamuts can be reproduced by screens and printers. Furthermore, variation from individual to individual exists in color perception, including different types of color blindness. It is important to take this into account when choosing the colors used in illustrations. +\index{color!definitions|)} + +\subsection{Continuous color-related scales} +\sloppy +Continuous color scales \ggscale{scale\_color\_continuous()}, \ggscale{scale\_color\_gradient()}, \ggscale{scale\_color\_gradient2()}, \ggscale{scale\_color\_gradientn()}, \ggscale{scale\_color\_date()} and \ggscale{scale\_color\_datetime()}, give a smooth continuous gradient between two or more colours. They are used with \code{numeric}, \code{date} and \code{datetime} data. A corresponding set of \code{fill} scales is also available. Other scales like \ggscale{scale\_color\_viridis\_c()} and \ggscale{scale\_color\_distiller()} are based on the use of ready-made palettes of sets of color gradients chosen to work well together under multiple conditions or for human vision including different types of color blindness. + +\subsection{Discrete color-related scales} +\sloppy +Color scales \ggscale{scale\_color\_discrete()}, \ggscale{scale\_color\_hue()}, \ggscale{scale\_color\_gray()} are used with categorical data stored as factors. Other scales like \ggscale{scale\_color\_viridis\_d()} and \ggscale{scale\_color\_brewer()} provide discrete sets of colours based on palettes. + +\subsection{Identity scales} +\index{grammar of graphics!identity color scales|(} +In the case of identity scales, the mapping is one to-one to the data. For example, if we map the \code{color} or \code{fill} \emph{aesthetic} to a variable using \ggscale{scale\_color\_identity()} or \ggscale{scale\_fill\_identity()}, the mapped variable must already contain valid color definitions. In the case of mapping \code{alpha}, the variable must contain numeric values in the range 0 to 1. + +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} +\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{))} + +\hlkwd{ggplot}\hlstd{(df99,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{color} \hlstd{= colors))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_color_identity}\hlstd{()} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-scale-color-10-1} + +} + + + +\end{knitrout} + +\begin{playground} +How does the plot look, if the identity scale is deleted from the example above? Edit and re-run the example code. + +While using the identity scale, how would you need to change the code example above, to produce a plot with green and purple points? +\end{playground} +\index{grammar of graphics!identity color scales|)} +\index{plots!with colors|)} +\index{grammar of graphics!color and fill scales|)} +\index{grammar of graphics!scales|)} + +\section{Adding annotations}\label{sec:plot:annotations} +\index{grammar of graphics!annotations|(} +The idea of annotations is that they add plot elements that are not directly connected with \code{data}, which we could call ``decorations'' such as arrows used to highlight some feature of the data, specific points along an axis, etc. They are referenced to the ``natural'' coordinates used to plot the observations, but are elements that do not represent observations or summaries computed from the observations. Annotations are added to a ggplot with \Rfunction{annotate()} as plot layers (each call to \code{annotate()} creates a new layer). To achieve the behavior expected of annotations, \Rfunction{annotate()} does not inherit the default \code{data} or \code{mapping} of variables to \emph{aesthetics}. Annotations frequently make use of \code{"text"} or \code{"label"} \emph{geometries} with character strings as data, possibly to be parsed as expressions. However, for example, the \code{"segment"} geometry can be used to add arrows. + +\begin{warningbox} +While layers added to a plot directly using \emph{geometries} and \emph{statistics} respect faceting, annotation layers added with \Rfunction{annotate()} are replicated unchanged in every panel of a faceted plot. The reason is that annotation layers accept \emph{aesthetics} only as constant values which are the same for every panel as no grouping is possible without a \code{mapping} to \code{data}. +\end{warningbox} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"text"}\hlstd{,} + \hlkwc{label} \hlstd{=} \hlstr{"origin"}\hlstd{,} + \hlkwc{x} \hlstd{=} \hlnum{0}\hlstd{,} \hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"blue"}\hlstd{,} + \hlkwc{size}\hlstd{=}\hlnum{4}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-annotate-01-1} + +} + + + +\end{knitrout} + +\begin{playground} +Play with the values of the arguments to \Rfunction{annotate()} to vary the position, size, color, font family, font face, rotation angle and justification of the annotation. +\end{playground} + +\index{plots!insets as 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} +\begin{alltt} +\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\hlstd{p} \hlopt{+} \hlkwd{expand_limits}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{40}\hlstd{)} \hlopt{+} + \hlkwd{annotation_custom}\hlstd{(}\hlkwd{ggplotGrob}\hlstd{(p} \hlopt{+} \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{xlim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{5}\hlstd{,} \hlnum{10}\hlstd{),} \hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{20}\hlstd{,} \hlnum{40}\hlstd{))} \hlopt{+} + \hlkwd{theme_bw}\hlstd{(}\hlnum{10}\hlstd{)),} + \hlkwc{xmin} \hlstd{=} \hlnum{21}\hlstd{,} \hlkwc{xmax} \hlstd{=} \hlnum{40}\hlstd{,} \hlkwc{ymin} \hlstd{=} \hlnum{30}\hlstd{,} \hlkwc{ymax} \hlstd{=} \hlnum{60}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-inset-01-1} + +} + + + +\end{knitrout} + +This approach has the limitation that if used together with faceting, the inset will be the same for each plot panel. See section \ref{sec:plot:insets} on page \pageref{sec:plot:insets} for \emph{geometries} that can be used to add insets. +\index{plots!insets as 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} +\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{+} + \hlkwd{scale_x_continuous}\hlstd{(} + \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0.5}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{1.5}\hlstd{,} \hlnum{2}\hlstd{)} \hlopt{*} \hlstd{pi,} + \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"0"}\hlstd{,} \hlkwd{expression}\hlstd{(}\hlnum{0.5}\hlopt{~}\hlstd{pi),} \hlkwd{expression}\hlstd{(pi),} + \hlkwd{expression}\hlstd{(}\hlnum{1.5}\hlopt{~}\hlstd{pi),} \hlkwd{expression}\hlstd{(}\hlnum{2}\hlopt{~}\hlstd{pi)))} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"sin(x)"}\hlstd{)} \hlopt{+} + \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"text"}\hlstd{,} + \hlkwc{label} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"+"}\hlstd{,} \hlstr{"-"}\hlstd{),} + \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0.5}\hlstd{,} \hlnum{1.5}\hlstd{)} \hlopt{*} \hlstd{pi,} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0.5}\hlstd{,} \hlopt{-}\hlnum{0.5}\hlstd{),} + \hlkwc{size} \hlstd{=} \hlnum{20}\hlstd{)} \hlopt{+} + \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} + \hlkwc{shape} \hlstd{=} \hlnum{21}\hlstd{,} + \hlkwc{fill} \hlstd{=} \hlstr{"white"}\hlstd{,} + \hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{1}\hlstd{,} \hlnum{2}\hlstd{)} \hlopt{*} \hlstd{pi,} \hlkwc{y} \hlstd{=} \hlnum{0}\hlstd{,} + \hlkwc{size} \hlstd{=} \hlnum{6}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-annotate-03-1} + +} + + + +\end{knitrout} + +\begin{playground} +Modify the plot above to show the cosine instead of the sine function, replacing \code{sin} with \code{cos}. This is easy, but the catch is that you will need to relocate the annotations. +\end{playground} + +\begin{infobox} +We cannot use \Rfunction{annotate()} with \code{geom = "vline"} or \code{geom = "hline"} as we can use \code{geom = "line"} or \code{geom = "segment"}. Instead, \gggeom{geom\_vline()} and/or \gggeom{geom\_hline()} can be used directly passing constant arguments to them. See section \ref{sec:plot:line} on page \pageref{sec:plot:vhline}. +\end{infobox} +\index{grammar of graphics!annotations|)} + +\section{Coordinates and circular plots}\label{sec:plot:circular}\label{sec:plot:coord} +\index{grammar of graphics!polar coordinates|(} +\index{plots!circular|(} +Circular plots can be thought of as plots equivalent to those described earlier in this chapter but drawn using a different system of coordinates. This is a key insight, that the grammar of graphics as implemented in \ggplot makes use of. To obtain circular plots we use the same \emph{geometries}, \emph{statistics} and \emph{scales} we have been using with the default system of cartesian coordinates. The only thing that we need to do is to add \ggcoordinate{coord\_polar()} to override the default. Of course only some observed quantities can be better perceived in circular plots than in cartesian plots. Here we add a new ``word'' to the grammar of graphics, \textit{coordinates}, such as \ggcoordinate{coord\_polar()}. +When using polar coordinates, the \code{x} and \code{y} \textit{aesthetics} correspond to the angle and radial distance, respectively. + +\subsection{Wind-rose plots} +\index{plots!wind rose|(} +Some types of data are more naturally expressed on polar coordinates than on cartesian coordinates. The clearest example is wind direction, from which the name derives. In some cases of time series data with a strong periodic variation, polar coordinates can be used to highlight any phase shifts or changes in frequency. A more mundane application is to plot variation in a response variable through the day with a clock-face-like representation of time of day. + +Wind rose plots are frequently histograms or density plots drawn on a polar system of coordinates (see sections \ref{sec:plot:histogram} and \ref{sec:plot:density} on pages \pageref{sec:plot:histogram} and \pageref{sec:plot:density}, respectively for a description of the use of these \emph{statistics} and \emph{geometries}). We will use them for examples where we plot wind speed and direction data, measured once per minute during 24~h (from package \pkgname{learnrbook}). + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(viikki_d29.dat,} \hlkwd{aes}\hlstd{(WindDir_D1_WVT))} \hlopt{+} + \hlkwd{coord_polar}\hlstd{()} \hlopt{+} + \hlkwd{stat_bin}\hlstd{(}\hlkwc{color} \hlstd{=} \hlstr{"black"}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"gray50"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"bar"}\hlstd{,} + \hlkwc{binwidth} \hlstd{=} \hlnum{30}\hlstd{,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Frequency"}\hlstd{)} \hlopt{+} + \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{90}\hlstd{,} \hlnum{180}\hlstd{,} \hlnum{270}\hlstd{),} + \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"N"}\hlstd{,} \hlstr{"E"}\hlstd{,} \hlstr{"S"}\hlstd{,} \hlstr{"W"}\hlstd{),} + \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{360}\hlstd{),} + \hlkwc{expand} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0}\hlstd{),} + \hlkwc{name} \hlstd{=} \hlstr{"Wind direction"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-wind-05-1} + +} + + + +\end{knitrout} + +For an equivalent plot, using an empirical density, we have to use \ggstat{stat\_density()} instead of \ggstat{stat\_bin()} and change the \code{name} of the \code{y} scale. + +\begin{knitrout}\footnotesize + + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-wind-06-1} + +} + + + +\end{knitrout} + +As the final wind-rose plot example, we do 2D density plot with facets added with \Rfunction{facet\_wrap()} to have separate panels for AM and PM. This plot uses fill to describe the density of observations for different combinations wind directions and speeds, the radius ($y$ \emph{aesthetic}) to represent wind speeds and the angle ($x$ \emph{aesthetic}) to represent wind direction. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{opts_chunk}\hlopt{$}\hlkwd{set}\hlstd{(opts_fig_very_wide)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{stat_density_2d}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{=} \hlkwd{stat}\hlstd{(level)),} \hlkwc{geom} \hlstd{=} \hlstr{"polygon"}\hlstd{)} \hlopt{+} + \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{90}\hlstd{,} \hlnum{180}\hlstd{,} \hlnum{270}\hlstd{),} + \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"N"}\hlstd{,} \hlstr{"E"}\hlstd{,} \hlstr{"S"}\hlstd{,} \hlstr{"W"}\hlstd{),} + \hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{360}\hlstd{),} + \hlkwc{expand} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{0}\hlstd{),} + \hlkwc{name} \hlstd{=} \hlstr{"Wind direction"}\hlstd{)} \hlopt{+} + \hlkwd{scale_y_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlstr{"Wind speed (m/s)"}\hlstd{)} \hlopt{+} + \hlkwd{facet_wrap}\hlstd{(}\hlopt{~}\hlkwd{factor}\hlstd{(}\hlkwd{ifelse}\hlstd{(}\hlkwd{hour}\hlstd{(solar_time)} \hlopt{<} \hlnum{12}\hlstd{,} \hlstr{"AM"}\hlstd{,} \hlstr{"PM"}\hlstd{)))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.9\textwidth]{figure/pos-wind-08-1} + +} + + + +\end{knitrout} +\index{plots!wind rose|)} + + +\subsection{Pie charts} +\index{plots!pie charts|(} + +\begin{warningbox} +Pie charts are more difficult to read than bar charts because our brain is better at comparing lengths than angles. If used, pie charts should only be used to show composition, or fractional components that add up to a total. In this case, used only if the number of “pie slices” is small (rule of thumb: seven at most), however in general, they are best avoided. +\end{warningbox} + +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} +\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{+} + \hlkwd{coord_polar}\hlstd{(}\hlkwc{theta} \hlstd{=} \hlstr{"y"}\hlstd{)} \hlopt{+} + \hlkwd{scale_fill_brewer}\hlstd{()} \hlopt{+} + \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{breaks} \hlstd{=} \hlkwa{NULL}\hlstd{)} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwa{NULL}\hlstd{,} \hlkwc{fill} \hlstd{=} \hlstr{"Vehicle class"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-main-chunk-54-1} + +} + + + +\end{knitrout} +\index{plots!pie charts|)} +\index{plots!circular|)} +\index{grammar of graphics!polar coordinates|)} + +\begin{playground} +Edit the code for the pie chart above to obtain a bar chart. Which one of the two plots is easier to read? +\end{playground} + +\section{Themes}\label{sec:plot:themes} +\index{grammar of graphics!themes|(} +\index{plots!styling|(} +In \ggplot, \emph{themes} are the equivalent of style sheets. They determine how the different elements of a plot are rendered when displayed, printed or saved to a file. \emph{Themes} do not alter what aesthetics or scales are used to plot the observations or summaries, but instead how text-labels, titles, axes, grids, plotting-area background and grid, etc., are formatted and if displayed or not. Package \ggplot includes several predefined \emph{theme constructors} (usually described as \emph{themes}), and independently developed extension packages define additional ones. These constructors return complete themes, which when added to a plot, replace any theme already present in whole. In addition to choosing among these already available \emph{complete themes}, users can modify the ones already present by adding \emph{incomplete themes} to a plot. When used in this way, \emph{incomplete themes} usually are created on the fly. It is also possible to create new theme constructors that return complete themes, similar to \code{theme\_gray()} from \ggplot. + +\subsection{Complete themes} +\index{grammar of graphics!complete themes|(} +The theme used by default is \ggtheme{theme\_gray()} with default arguments. In \pkgnameNI{ggplot2}, predefined themes are defined as constructor functions, with parameters. These parameters allow changing some ``base'' properties. The \code{base\_size} for text elements controlled is given in points, and affects all text elements in the returned theme object as the size of these elements is by default defined relative to the base size. Another parameter, \code{base\_family}, allows the font family to be set. These functions return complete themes. + +\begin{warningbox} +\emph{Themes} have no effect on layers produced by \emph{geometries} as themes have no effect on \emph{mappings}, \emph{scales} or \emph{aesthetics}. In the name \ggtheme{theme\_bw()} black-and- white refers to the color of the background of the plotting area and labels. If the \emph{color} or fill \emph{aesthetics} are mapped or set to a constant in the figure, these will be respected irrespective of the theme. We cannot convert a color figure into a black-and-white one by adding a \emph{theme}, we need to change the \emph{aesthetics} used, for example, use \code{shape} instead of \code{color} for a layer added with \code{geom\_point()}. +\end{warningbox} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{theme_gray}\hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{15}\hlstd{,} + \hlkwc{base_family} \hlstd{=} \hlstr{"serif"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-01-1} + +} + + + +\end{knitrout} + +\begin{playground} +Change the code in the previous chunk to use, one at a time, each of the predefined themes from \ggplot: \ggtheme{theme\_bw()}, \ggtheme{theme\_classic()}, \ggtheme{theme\_minimal()}, \ggtheme{theme\_linedraw()}, \ggtheme{theme\_light()}, \ggtheme{theme\_dark()} and \ggtheme{theme\_void()}. +\end{playground} + +\begin{explainbox} +Predefined ``themes'' like \ggtheme{theme\_gray()} are, in reality, not themes but instead are constructors of theme objects. The \emph{themes} they return when called depend on the arguments passed to their parameters. In other words, \code{theme\_gray(base\_size = 15)}, creates a different theme than \code{theme\_gray(base\_size = 11)}. In this case, as sizes of different text elements are defined relative to the base size, the size of all text elements changes in coordination. Font size changes by \emph{themes} do not affect the size of text or labels in plot layers created with geometries, as their size is controlled by the \code{size} \emph{aesthetic}. +\end{explainbox} + +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} +\begin{alltt} +\hlstd{p} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\hlkwd{print}\hlstd{(p} \hlopt{+} \hlkwd{theme_bw}\hlstd{())} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{old_theme} \hlkwb{<-} \hlkwd{theme_set}\hlstd{(}\hlkwd{theme_bw}\hlstd{(}\hlnum{15}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{theme_set}\hlstd{(old_theme)} +\hlstd{p} +\end{alltt} +\end{kframe} +\end{knitrout} +\index{grammar of graphics!complete themes|)} + +\subsection{Incomplete themes} +\index{grammar of graphics!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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(fake2.data,} \hlkwd{aes}\hlstd{(z} \hlopt{+} \hlnum{1000}\hlstd{, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{breaks} \hlstd{= scales}\hlopt{::}\hlkwd{pretty_breaks}\hlstd{(}\hlkwc{n} \hlstd{=} \hlnum{8}\hlstd{))} \hlopt{+} + \hlkwd{theme}\hlstd{(}\hlkwc{axis.text.x} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{90}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlnum{0.5}\hlstd{))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-11-1} + +} + + + +\end{knitrout} + +\begin{warningbox} +When tick labels are rotated, one usually needs to set both the horizontal and vertical justification, \code{hjust} and \code{vjust}, as the default values stop being suitable. This is due to the fact that justification settings are referenced to the text itself rather than to the plot, i.e., \textbf{vertical} justification of $x$-axis tick labels rotated 90 degrees shifts their alignment with respect to tick marks along the (\textbf{horizontal}) $x$ axis. +\end{warningbox} + +\begin{playground} +Play with the code in the last chunk above, modifying the values used for \code{angle}, \code{hjust} and \code{vjust}. (Angles are expressed in degrees, and justification with values between 0 and 1). +\end{playground} + +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} +\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} +\end{kframe} +\end{knitrout} + +Theme definitions follow a hierarchy, allowing us to modify the formatting of groups of similar elements, as well as of individual elements. In the chunk above, had we used \code{axis.text} instead of \code{axis.text.x}, the change would have affected the tick labels in both $x$ and $y$ axes. + +\begin{playground} +Modify the example above, so that the tick labels on the $x$-axis are blue and those on the $y$-axis red, and the font size is the same for both axes, but changed from the default. Consult the documentation for \code{theme()} to find out the names of the elements that need to be given new values. For examples, see \citebooktitle{Wickham2016} \autocite{Wickham2016} and \citebooktitle{Chang2018} \autocite{Chang2018}. +\end{playground} + +Formatting of other text elements can be adjusted in a similar way, as well as thickness of axes, length of tick marks, grid lines, etc. However, in most cases these are graphic design elements that are best kept consistent throughout sets of plots and best handled by creating a new \emph{theme} that can be easily reused. + +\begin{warningbox} +If you both add a \emph{complete theme} and want to modify some of its elements, you should add the whole theme before modifying it with \code{+ theme(...)}. This may seem obvious once one has a good grasp of the grammar of graphics, but can be at first disconcerting. +\end{warningbox} + +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} +\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} +\end{kframe} +\end{knitrout} + + +\index{grammar of graphics!incomplete themes|)} + +\subsection{Defining a new theme} +\index{grammar of graphics!creating a theme|(} +Themes can be defined both from scratch, or by modifying existing saved themes, and saving the modified version. As discussed above, it is also possible to define a new, parameterized theme constructor function. + +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} +\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} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-21-1} + +} + + + +\end{knitrout} + +\begin{playground} +It is always good to learn to recognize error messages. One way of doing this is by generating errors on purpose. So do add parentheses to the statement in the code chunk above and study the error message. +\end{playground} + +\begin{explainbox} +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} +\begin{alltt} +\hlstd{my_theme_gray} \hlkwb{<-} + \hlkwa{function} \hlstd{(}\hlkwc{base_size} \hlstd{=} \hlnum{11}\hlstd{,} + \hlkwc{base_family} \hlstd{=} \hlstr{"serif"}\hlstd{,} + \hlkwc{base_line_size} \hlstd{= base_size}\hlopt{/}\hlnum{22}\hlstd{,} + \hlkwc{base_rect_size} \hlstd{= base_size}\hlopt{/}\hlnum{22}\hlstd{,} + \hlkwc{base_color} \hlstd{=} \hlstr{"darkblue"}\hlstd{) \{} + \hlkwd{theme_gray}\hlstd{(}\hlkwc{base_size} \hlstd{= base_size,} + \hlkwc{base_family} \hlstd{= base_family,} + \hlkwc{base_line_size} \hlstd{= base_line_size,} + \hlkwc{base_rect_size} \hlstd{= base_rect_size)} \hlopt{+} + \hlkwd{theme}\hlstd{(}\hlkwc{line} \hlstd{=} \hlkwd{element_line}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} + \hlkwc{rect} \hlstd{=} \hlkwd{element_rect}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} + \hlkwc{text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} + \hlkwc{title} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} + \hlkwc{axis.text} \hlstd{=} \hlkwd{element_text}\hlstd{(}\hlkwc{color} \hlstd{= base_color),} \hlkwc{complete} \hlstd{=} \hlnum{TRUE}\hlstd{)} + \hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +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\_gray()} 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} +\begin{alltt} +\hlstd{my_theme_gray} \hlkwb{<-} \hlstd{my_theme_gray} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{p} \hlopt{+} \hlkwd{my_theme_gray}\hlstd{(}\hlnum{15}\hlstd{,} \hlkwc{base_color} \hlstd{=} \hlstr{"darkred"}\hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.54\textwidth]{figure/pos-themes-33-1} + +} + + + +\end{knitrout} +\end{explainbox} +\index{grammar of graphics!creating a theme|)} +\index{plots!styling|)} +\index{grammar of graphics!themes|)} + +\section{Composing plots} +\index{plots!composing|(} +In section \ref{sec:plot:facets} on page \pageref{sec:plot:facets}, we described how facets can be used to created coordinated sets of panels, based on a single data set. Rather frequently, we need to assemble a composite plot from individually created plots. If one wishes to have correctly aligned axis labels and plotting areas, similar to when using facets, then the task is not easy to achieve without the help of especial tools. + +Package \pkgname{patchwork} defines a simple grammar for composing plots created with \ggplot. We briefly describe here the use of operators \Roperator{+}, \Roperator{|} and \Roperator{/}, although \pkgname{patchwork} provides additional tools for defining complex layouts of panels. While \Roperator{+} allows different layouts, \Roperator{|} composes panels side by side, and \Roperator{/} composes panels on top of each other. The plots to be used as panels can be grouped using parentheses. + +We start by creating and saving three plots. +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} + \hlkwd{theme}\hlstd{(}\hlkwc{legend.position} \hlstd{=} \hlstr{"top"}\hlstd{)} +\hlstd{p2} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(displ, cty,} \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(year)))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{theme}\hlstd{(}\hlkwc{legend.position} \hlstd{=} \hlstr{"top"}\hlstd{)} +\hlstd{p3} \hlkwb{<-} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(}\hlkwd{factor}\hlstd{(model), cty))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{theme}\hlstd{(}\hlkwc{axis.text.x} \hlstd{=} + \hlkwd{element_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{90}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlnum{0.5}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +Next, we compose a plot using as panels the three plots created above (plot not shown). + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{(p1} \hlopt{|} \hlstd{p2)} \hlopt{/} \hlstd{p3} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.9\textwidth]{figure/pos-patchwork-03-1} + +} + + + +\end{knitrout} + + +\index{plots!composing|)} + +\section[Using plotmath expressions]{Using \code{plotmath} expressions}\label{sec:plot:plotmath} +\index{plotmath} +\index{plots!math expressions|(} +In sections \ref{sec:plot:function} and \ref{sec:plot:text} we gave some simple examples of the use of \Rlang expressions in plots. The \code{plotmath} demo and help in \Rlang provide enough information to start using expressions in plots. However, composing syntactically correct expressions can be challenging because their syntax is rather unusual. Although expressions are shown here in the context of plotting, they are also used in other contexts in \Rlang code. + +In general it is possible to create \emph{expressions} explicitly with function \Rfunction{expression()}, or by parsing a character string. In the case of \ggplot for some plot elements, layers created with \gggeom{geom\_text} and \gggeom{geom\_label}, and the strip labels of facets the parsing is delayed and applied to mapped character variables in \code{data}. In contrast, for titles, subtitles, captions, axis-labels, etc. (anything that is defined within \Rfunction{labs()}) the expressions have to be entered explicitly, or saved as such into a variable, and the variable passed as an argument. + +When plotting expressions using \gggeom{geom\_text()}, that character strings are to be parsed is signaled with \code{parse = TRUE}. In the case of facets' strip labels, parsing or not depends on the \emph{labeller} function used. An additional twist is in this case the possibility of combining static character strings with values taken from \code{data}. + +The most difficult thing to remember when writing expressions is how to connect the different parts. A tilde (\code{\textasciitilde}) adds space in between symbols. Asterisk (\code{*}) can be also used as a connector, and is needed usually when dealing with numbers. Using space is allowed in some situations, but not in others. To include bits of text within an expression we need to use quotation marks. For a long list of examples have a look at the output and code displayed by \code{demo(plotmath)} at the \Rlang command prompt. + +We will use a couple of complex examples to show how to use expressions for different elements of a plot. +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} +\begin{alltt} +\hlkwd{set.seed}\hlstd{(}\hlnum{54321}\hlstd{)} \hlcom{# make sure we always generate the same data} +\hlstd{my.data} \hlkwb{<-} + \hlkwd{data.frame}\hlstd{(}\hlkwc{x} \hlstd{=} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} + \hlkwc{y} \hlstd{=} \hlkwd{rnorm}\hlstd{(}\hlnum{5}\hlstd{),} + \hlkwc{greek.label} \hlstd{=} \hlkwd{paste}\hlstd{(}\hlstr{"alpha["}\hlstd{,} \hlnum{1}\hlopt{:}\hlnum{5}\hlstd{,} \hlstr{"]"}\hlstd{,} \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +We use as $x$-axis label, a Greek $\alpha$ character with $i$ as subscript, and in the $y$-axis label, we have a superscript in the units. For the title we use a character string but for the subtitle a rather complex expression. We create these expressions with function \Rfunction{expression()}. + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y,} \hlkwc{label} \hlstd{= greek.label))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{geom_text}\hlstd{(}\hlkwc{angle} \hlstd{=} \hlnum{45}\hlstd{,} \hlkwc{hjust} \hlstd{=} \hlnum{1.2}\hlstd{,} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{expression}\hlstd{(alpha[i]),} + \hlkwc{y} \hlstd{=} \hlkwd{expression}\hlstd{(Speed}\hlopt{~~}\hlstd{(m}\hlopt{~}\hlstd{s}\hlopt{^}\hlstd{\{}\hlopt{-}\hlnum{1}\hlstd{\})),} + \hlkwc{title} \hlstd{=} \hlstr{"Using expressions"}\hlstd{,} + \hlkwc{subtitle} \hlstd{=} \hlkwd{expression}\hlstd{(}\hlkwd{sqrt}\hlstd{(alpha[}\hlnum{1}\hlstd{]} \hlopt{+} \hlkwd{frac}\hlstd{(beta, gamma))))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plotmath-02-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlstd{my_eq.char} \hlkwb{<-} \hlstr{"alpha[i]"} +\hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{= my_eq.char))} \hlopt{+} + \hlkwd{scale_x_continuous}\hlstd{(}\hlkwc{name} \hlstd{=} \hlkwd{expression}\hlstd{(alpha[i]),} + \hlkwc{breaks} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlstd{,}\hlnum{3}\hlstd{,}\hlnum{5}\hlstd{),} + \hlkwc{labels} \hlstd{=} \hlkwd{expression}\hlstd{(alpha[}\hlnum{1}\hlstd{], alpha[}\hlnum{3}\hlstd{], alpha[}\hlnum{5}\hlstd{]))} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plotmath-02a-1} + +} + + + +\end{knitrout} + +A different approach (no example shown) would be to use \Rfunction{parse()} explicitly for each individual label, something that might be needed if the tick labels need to be ``assembled'' programmatically instead of set as constants. + +\begin{explainbox} +\textbf{Differences between \Rfunction{parse()} and \Rfunction{expression()}}. Function \Rfunction{parse()} takes as an argument a character string. This is very useful as the character string can be created programmatically. When using \code{expression()} this is not possible, except for substitution at execution time of the value of variables into the expression. See the help pages for both functions. + +Function \Rfunction{expression()} accepts its arguments without any delimiters. Function \Rfunction{parse()} takes a single character string as an argument to be parsed, in which case quotation marks within the string need to be \emph{escaped} (using \code{\backslash"} where a literal \code{"} is desired). We can, also in both cases, embed a character string by means of one of the functions \Rfunction{plain()}, \Rfunction{italic()}, \Rfunction{bold()} or \Rfunction{bolditalic()} which also affect the font used. The argument to these functions needs to be a character string delimited by quotation marks if it is not to be parsed. + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{xlab}\hlstd{(}\hlkwd{expression}\hlstd{(x[}\hlnum{1}\hlstd{]}\hlopt{*}\hlstr{" test"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*\textbackslash{}" test\textbackslash{}""}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*italic(\textbackslash{}" test\textbackslash{}")"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{xlab}\hlstd{(}\hlkwd{expression}\hlstd{(x[}\hlnum{1}\hlstd{],} \hlstr{" test"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} + \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]~~~~\textbackslash{}"test\textbackslash{}""}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} + \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]~~~~plain(test)"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +However, unquoted white space is discarded. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} + \hlkwd{xlab}\hlstd{(}\hlkwd{parse}\hlstd{(}\hlkwc{text} \hlstd{=} \hlstr{"x[1]*plain( test)"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{annotate}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"text"}\hlstd{,} + \hlkwc{x} \hlstd{=} \hlkwd{rep}\hlstd{(}\hlnum{6}\hlstd{,} \hlnum{3}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{90}\hlstd{,} \hlnum{100}\hlstd{,} \hlnum{110}\hlstd{),} + \hlkwc{label} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"'1.00'*x^2"}\hlstd{,} \hlstr{"1.00*x^2"}\hlstd{,} \hlstr{"1.01*x^2"}\hlstd{),} \hlkwc{parse} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{explainbox} + +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} +\begin{alltt} +\hlkwd{sprintf}\hlstd{(}\hlstr{"log(%.3f) = %.3f"}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwd{log}\hlstd{(}\hlnum{5}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] "log(5.000) = 1.609" +\end{verbatim} +\begin{alltt} +\hlkwd{sprintf}\hlstd{(}\hlstr{"log(%.3g) = %.3g"}\hlstd{,} \hlnum{5}\hlstd{,} \hlkwd{log}\hlstd{(}\hlnum{5}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] "log(5) = 1.61" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Study the chunck above. If you are familiar with \langname{C} or \langname{C++} function \Rfunction{sprintf()} will already be familiar to you, otherwise study its help page. + +Play with functions \Rfunction{format()}, \Rfunction{sprintf()}, and \Rfunction{strftime()}, formatting different types of data, into character strings of different widths, with different numbers of digits, etc. +\end{playground} + +It is also possible to substitute the value of variables or, in fact, the result of evaluation, into a new expression, allowing on the fly construction of expressions. Such expressions are frequently used as labels in plots. This is achieved through use of \emph{quoting} and \emph{substitution}. + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlkwd{bquote}\hlstd{(Time}\hlopt{~}\hlstd{zone}\hlopt{:} \hlkwd{.}\hlstd{(}\hlkwd{Sys.timezone}\hlstd{())),} + \hlkwc{subtitle} \hlstd{=} \hlkwd{bquote}\hlstd{(Date}\hlopt{:} \hlkwd{.}\hlstd{(}\hlkwd{as.character}\hlstd{(}\hlkwd{today}\hlstd{())))} + \hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-expr-bquote-01-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{ggplot}\hlstd{(cars,} \hlkwd{aes}\hlstd{(speed, dist))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} \hlopt{+} + \hlkwd{labs}\hlstd{(}\hlkwc{title} \hlstd{=} \hlkwd{substitute}\hlstd{(Time}\hlopt{~}\hlstd{zone}\hlopt{:} \hlstd{tz,} \hlkwd{list}\hlstd{(}\hlkwc{tz} \hlstd{=} \hlkwd{Sys.timezone}\hlstd{())),} + \hlkwc{subtitle} \hlstd{=} \hlkwd{substitute}\hlstd{(Date}\hlopt{:} \hlstd{date,} \hlkwd{list}\hlstd{(}\hlkwc{date} \hlstd{=} \hlkwd{as.character}\hlstd{(}\hlkwd{today}\hlstd{())))} + \hlstd{)} +\end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-expr-substitute-01-1} + +} + + + +\end{knitrout} + +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} +\begin{alltt} +\hlstd{deparse_test} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{) \{} + \hlkwd{print}\hlstd{(}\hlkwd{deparse}\hlstd{(}\hlkwd{substitute}\hlstd{(x)))} +\hlstd{\}} + +\hlstd{a} \hlkwb{<-} \hlstr{"saved in variable"} + +\hlkwd{deparse_test}\hlstd{(}\hlstr{"constant"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "\"constant\"" +\end{verbatim} +\begin{alltt} +\hlkwd{deparse_test}\hlstd{(}\hlnum{1} \hlopt{+} \hlnum{2}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "1 + 2" +\end{verbatim} +\begin{alltt} +\hlkwd{deparse_test}\hlstd{(a)} +\end{alltt} +\begin{verbatim} +## [1] "a" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{infobox} +A new package, \pkgname{ggtext}, which is not yet in CRAN, provides rich-text (basic \langname{HTML} and \langname{Markdown}) support for \ggplot, both for annotations and for data visualization. This package provides an alternative to the use of \Rlang expressions. +\end{infobox} +\index{plots!math expressions|)} + +\section{Creating complex data displays}\label{sec:plot:composition} +\index{plots!modular construction|(} + +The grammar of graphics\index{grammar of graphics}\index{plots!layers} allows one to build and test plots incrementally. In daily use, when creating a completely new plot, it is best to start with a simple design for a plot, \code{print()} this plot, checking that the output is as expected and the code error-free. Afterwards, one can map additional \emph{aesthetics} and add \emph{geometries} and \emph{statistics} gradually. The final steps are then to add \emph{annotations} and the text or expressions used for titles, and axis and key labels. Another approach is to start with an existing plot and modify it, e.g., by using the same plotting code with different \code{data} or mapping different variables. When reusing code for a different data set, scale \code{limits} and \code{names} are likely to need to be edited. + +\begin{playground} + Build a graphically complex data plot of your interest, step by step. By step by step, I do not refer to using the grammar in the construction of the plot as earlier, but of taking advantage of this modularity to test intermediate versions in an iterative design process, first by building up the complex plot in stages as a tool in debugging, and later using iteration in the processes of improving the graphic design of the plot and improving its readability and effectiveness. +\end{playground} + +\section{Creating sets of plots}\label{sec:plot:sets:of} +\index{plots!consistent styling}\index{plots!programatic construction|(} +Plots to be presented at a given occasion or published as part of the same work need to be consistent in various respects: themes, scales and palettes, annotations, titles and captions. To guarantee this consistency we need to build plots modularly and avoid repetition by assigning names to the ``modules'' that need to be used multiple times. + +\subsection{Saving plot layers and scales in variables} + +When creating plots with \ggplot,\index{plots!reusing parts of} objects are composed using operator \code{+} to assemble together the individual components. The functions that create plot layers, scales, etc.\ are constructors of objects and the objects they return can be stored in variables, and once saved, added to multiple plots at a later time. + +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} +\begin{alltt} +\hlstd{myplot} \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{()} + +\hlstd{mylabs} \hlkwb{<-} \hlkwd{labs}\hlstd{(}\hlkwc{x} \hlstd{=} \hlstr{"Engine displacement)"}\hlstd{,} + \hlkwc{y} \hlstd{=} \hlstr{"Gross horsepower"}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"Number of\textbackslash{}ncylinders"}\hlstd{,} + \hlkwc{shape} \hlstd{=} \hlstr{"Number of\textbackslash{}ncylinders"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +We assemble the final plot from the two parts we saved into variables. This is useful when we need to create several plots ensuring that scale \code{name} arguments are used consistently. In the example above, we saved these names, but the approach can be used for other plot components or lists of components. + +\begin{warningbox} + When composing plots with the \code{+} operator, the left-hand-side operand must be a \code{"gg"} object. The left operand is added to the \code{"gg"} object and the result returned. +\end{warningbox} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{myplot} +\hlstd{myplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} +\hlstd{myplot} \hlopt{+} \hlstd{mylabs} \hlopt{+} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{)} \hlopt{+} \hlkwd{ylim}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{NA}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +We can also save intermediate results. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\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} +\begin{alltt} +\hlstd{myparts} \hlkwb{<-} \hlkwd{list}\hlstd{(mylabs,} \hlkwd{theme_bw}\hlstd{(}\hlnum{16}\hlstd{))} +\hlstd{mylogplot} \hlopt{+} \hlstd{myparts} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{playground} +Revise the code you wrote for the ``playground'' exercise in section \ref{sec:plot:composition}, but this time, pre-building and saving groups of elements that you expect to be useful unchanged when composing a different plot of the same type, or a plot of a different type from the same data. +\end{playground} + +\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} +\begin{alltt} +\hlstd{bw_ggplot} \hlkwb{<-} \hlkwa{function}\hlstd{(}\hlkwc{...}\hlstd{) \{} + \hlkwd{ggplot}\hlstd{(...)} \hlopt{+} + \hlkwd{theme_bw}\hlstd{()} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} + +which could be used as follows. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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,} + \hlkwc{color} \hlstd{=} \hlkwd{factor}\hlstd{(cyl)))} \hlopt{+} + \hlkwd{geom_point}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +\index{plots!programatic construction|)} +\index{plots!modular construction|)} + +\section{Generating output files} +\index{devices!output|see{graphic output devices}} +\index{plots!saving to file|see{plots, rendering}} +\index{graphic output devices|(} +\index{plots!rendering|(} +It is possible, when using \RStudio, to directly export the displayed plot to a file using a menu. However, if the file will have to be generated again at a later time, or a series of plots need to be produced with consistent format, it is best to include the commands to export the plot in the script. + +In \Rlang,\index{plots!printing}\index{plots!saving}\index{plots!output to files} files are created by printing to different devices. Printing is directed to a currently open device such a window in \RStudio. Some devices produce screen output, others files. Devices depend on drivers. There are both devices that are part of \Rlang and additional ones defined in contributed packages. + +Creating a file involves opening a device, printing and closing the device in sequence. In most cases the file remains locked until the device is close. + +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} +\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)} +\hlkwd{pdf}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"fig1.pdf"}\hlstd{,} \hlkwc{width} \hlstd{=} \hlnum{8}\hlstd{,} \hlkwc{height} \hlstd{=} \hlnum{6}\hlstd{)} +\hlkwd{print}\hlstd{(fig1)} +\hlkwd{dev.off}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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)} +\hlkwd{dev.off}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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)} +\hlkwd{dev.off}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} +\index{plots!rendering|)} +\index{graphic output devices|)} + +\begin{infobox} +Some graphics devices are part of base-\Rlang, and others are implemented in contributed packages. In some cases, there are multiple graphic device available for rendering graphics in a given file format. These devices usually use different libraries, or have been designed with different aims. These alternative graphic devices can also differ in their function signature, i.e., have differences in the parameters and their names. In cases when rendering fails inexplicably, it can be worthwhile to switch to an alternative graphics device to find out if the problem is in the plot or in the rendering engine. +\end{infobox} + +\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}. + + + + + + +% !Rnw root = appendix.main.Rnw + + + +\chapter{Data import and export}\label{chap:R:data:io}\label{sec:data:io} + +\begin{VF} +Most programmers have seen them, and most good programmers realize they've written at least one. They are huge, messy, ugly programs that should have been short, clean, beautiful programs. + +\VA{John Bentley}{\emph{Programming Pearls}, 1986} +\end{VF} + + + +\section{Aims of this chapter} + +Base \Rlang and the recommended packages (installed by default) include several functions for importing and exporting data. Contributed packages provide both replacements for some of these functions and support for several additional file formats. In the present chapter, I aim at describing both data input and output covering in detail only the most common ``foreign'' data formats (those not native to \Rlang). + +Data file formats that are foreign to \Rlang are not always well defined, making it necessary to reverse-engineer the algorithms needed to read them. These formats, even when clearly defined, may be updated by the developers of the foreign software that writes the files. Consequently, developing software to read and write files using foreign formats can easily result in long, messy, and ugly \Rlang scripts. We can also unwillingly write code that usually works but occasionally fails with specific files, or even worse, occasionally silently corrupts the imported data. The aim of this chapter is to provide guidance for finding functions for reading data encoded using foreign formats, covering both base \Rlang, including the \pkgname{foreign} package, and independently contributed packages. Such functions are well tested or validated. + +In this chapter you will familiarize yourself with how to exchange data between \Rlang and other applications. The functions \code{save()} and \code{load()}, and \code{saveRDS()} and \code{readRDS()}, all of which save and read data in \Rlang's native formats, are described in sections \ref{sec:data:rda} and \ref{sec:data:rds} starting on page \pageref{sec:data:rda}. + +\section{Introduction} + +The first step in any data analysis with \Rlang is to input or read-in the data. Available sources of data are many and data can be stored or transmitted using various formats, both based on text or binary encodings. It is crucial that data is not altered (corrupted) when read and that in the eventual case of an error, errors are clearly reported. Most dangerous are silent non-catastrophic errors. + +The very welcome increase of awareness of the need for open availability of data, makes the output of data from \Rlang into well-defined data-exchange formats another crucial step. Consequently, in many cases an important step in data analysis is to export the data for submission to a repository, in addition to publication of the results of the analysis. + +Faster internet access to data sources and cheaper random-access memory (RAM) has made it possible to efficiently work with relatively large data sets in \Rlang. That \Rlang keeps all data in memory (RAM), imposes limits to the size of data \Rlang functions can operate on. For data sets large enough not to fit in computer RAM, one can use selective reading of data from flat files, or from databases outside of \Rlang. + +Some \Rlang packages have made it faster to import data saved in the same formats already supported by base \Rlang, but in some cases providing weaker guarantees of not corrupting the data than base \Rlang. Other contributed packages make it possible to import and export data stored in file formats not supported by base \Rlang functions. Some of these formats are subject-area specific while others are in widespread use. + +\section{Packages used in this chapter} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{install.packages}\hlstd{(learnrbook}\hlopt{::}\hlstd{pkgs_ch_data)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{library}\hlstd{(learnrbook)} +\hlkwd{library}\hlstd{(tibble)} +\hlkwd{library}\hlstd{(purrr)} +\hlkwd{library}\hlstd{(wrapr)} +\hlkwd{library}\hlstd{(stringr)} +\hlkwd{library}\hlstd{(dplyr)} +\hlkwd{library}\hlstd{(tidyr)} +\hlkwd{library}\hlstd{(readr)} +\hlkwd{library}\hlstd{(readxl)} +\hlkwd{library}\hlstd{(xlsx)} +\hlkwd{library}\hlstd{(readODS)} +\hlkwd{library}\hlstd{(pdftools)} +\hlkwd{library}\hlstd{(foreign)} +\hlkwd{library}\hlstd{(haven)} +\hlkwd{library}\hlstd{(xml2)} +\hlkwd{library}\hlstd{(XML)} +\hlkwd{library}\hlstd{(ncdf4)} +\hlkwd{library}\hlstd{(tidync)} +\hlkwd{library}\hlstd{(lubridate)} +\hlkwd{library}\hlstd{(jsonlite)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{infobox} +Some data sets used in this and other chapters are available in package \pkgname{learnrbook}. In addition to the +R data objects, we provide files saved in \emph{foreign} formats, which we used in examples on how to import data. The files can be either read from the \Rlang library, or from a copy in a local folder. In this chapter we assume the user has copied the folder \code{"extdata"} from the package to a working folder. + +Copy the files using: + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{save.path} \hlkwb{=} \hlstr{"./data"} +\hlkwa{if} \hlstd{(}\hlopt{!}\hlkwd{dir.exists}\hlstd{(save.path)) \{} + \hlkwd{dir.create}\hlstd{(save.path)} +\hlstd{\}} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{infobox} + +\section{File names and operations}\label{sec:files:filenames} +\index{file names!portable} +\index{file operations|(} +We start with the naming of files as it affects data sharing irrespective of the format used for its encoding. The main difficulty is that different operating systems have different rules governing the syntax used for file names and file paths. In many cases, like when depositing data files in a public repository, we need to ensure that file names are valid in multiple operating systems (OSs). If the script used to create the files is itself expected to be OS agnostic, we also need to be careful to query the OS for file names and paths without making assumptions on the naming rules or available OS commands. This is especially important when developing \Rlang packages. + +\begin{warningbox} +\index{file names!script portability} +For maximum portability, file names should never contain white-space characters and contain at most one dot. For the widest possible portability, underscores should be avoided using dashes instead. As an example, instead of \code{my data.2019.csv}, use \code{my-data-2019.csv}. +\end{warningbox} + +\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} +\begin{alltt} +\hlkwd{basename}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "my-file.txt" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +\index{file paths!script portability} +\index{folders|see{file paths}} +\index{file paths!parsing|(} +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} +\begin{alltt} +\hlkwd{basename}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "my-file.txt" +\end{verbatim} +\begin{alltt} +\hlkwd{basename}\hlstd{(}\hlstr{"extdata\textbackslash{}\textbackslash{}my-file.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "my-file.txt" +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{warningbox} + +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} +\begin{alltt} +\hlkwd{dirname}\hlstd{(}\hlstr{"extdata/my-file.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "extdata" +\end{verbatim} +\end{kframe} +\end{knitrout} +\index{file paths!parsing|)} +\index{working directory|(} +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} +\begin{alltt} +\hlcom{# not run} +\hlkwd{getwd}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlcom{# not run} +\hlstd{oldwd} \hlkwb{<-} \hlkwd{setwd}\hlstd{(}\hlstr{".."}\hlstd{)} +\hlkwd{getwd}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlcom{# not run} +\hlstd{oldwd} +\hlkwd{setwd}\hlstd{(oldwd)} +\hlkwd{getwd}\hlstd{()} +\end{alltt} +\end{kframe} +\end{knitrout} +\index{working directory|)} + +\index{listing files or directories|(} +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} +\begin{alltt} +\hlkwd{head}\hlstd{(}\hlkwd{list.files}\hlstd{())} +\end{alltt} +\begin{verbatim} +## [1] "abbrev.sty" "anscombe.svg" "aphalo-learnr-001.pdf" +## [4] "aphalo-learnr-002.pdf" "aphalo-learnr-003.pdf" "aphalo-learnr-004.pdf" +\end{verbatim} +\begin{alltt} +\hlkwd{head}\hlstd{(}\hlkwd{list.dirs}\hlstd{())} +\end{alltt} +\begin{verbatim} +## [1] "." "./.git" "./.git/hooks" "./.git/info" +## [5] "./.git/logs" "./.git/logs/refs" +\end{verbatim} +\begin{alltt} +\hlkwd{head}\hlstd{(}\hlkwd{dir}\hlstd{())} +\end{alltt} +\begin{verbatim} +## [1] "abbrev.sty" "anscombe.svg" "aphalo-learnr-001.pdf" +## [4] "aphalo-learnr-002.pdf" "aphalo-learnr-003.pdf" "aphalo-learnr-004.pdf" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +The default argument for parameter \code{path} is the current working directory, under Windows, Unix, and Linux indicated by \code{"."}. Convince yourself that this is indeed the default by calling the functions with an explicit argument. After this, play with the functions trying other existing and non-existent paths in your computer. +\end{playground} + +\begin{playground} +Use parameter \code{full.names} with \Rfunction{list.files()} to obtain either a list of file paths or bare file names. Similarly, investigate how the returned list of files is affected by the argument passed to \code{all.names}. +\end{playground} + +\begin{playground} +Compare the behavior of functions \Rfunction{dir()} and \Rfunction{list.dirs()}, and try by overriding the default arguments of \Rfunction{list.dirs()}, to get the call to return the same output as \Rfunction{dir()} does by default. +\end{playground} +\index{listing files or directories|)} + +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} +\begin{alltt} +\hlkwa{if} \hlstd{(}\hlopt{!}\hlkwd{file.exists}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)) \{} + \hlkwd{file.create}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} +\hlstd{\}} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{file.size}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] 0 +\end{verbatim} +\begin{alltt} +\hlkwd{file.info}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## size isdir mode mtime ctime +## xxx.txt 0 FALSE 666 2020-04-03 14:29:51 2020-04-03 14:29:51 +## atime exe +## xxx.txt 2020-04-03 14:29:51 no +\end{verbatim} +\begin{alltt} +\hlkwd{file.rename}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{,} \hlstr{"zzz.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{file.exists}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] FALSE +\end{verbatim} +\begin{alltt} +\hlkwd{file.exists}\hlstd{(}\hlstr{"zzz.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\begin{alltt} +\hlkwd{file.remove}\hlstd{(}\hlstr{"zzz.txt"}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Function \Rfunction{file.path()} can be used to construct a file path from its components in a way that is portable across OSs. Look at the help page and play with the function to assemble some paths that exist in the computer you are using. +\end{playground} +\index{file operations|)} + +\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} +\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{1L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "col1,col2,col3,col4" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{2L}\hlstd{)} +\end{alltt} +\begin{verbatim} +## [1] "1.0,24.5,346,ABC" "23.4,45.6,78,Z Y" +\end{verbatim} +\begin{alltt} +\hlkwd{close}\hlstd{(f1)} +\end{alltt} +\end{kframe} +\end{knitrout} + +When \Rpgrm is used in batch mode, the ``files'' \code{stdin}, \code{stdout} and \code{stderror} can be opened, and data read from, or written to. These \emph{standard} sources and sinks, so familiar to \Clang programmers, allow the use of \Rlang scripts as tools in data pipes coded as shell scripts under Unix and other OSs. + +\section{Plain-text files}\label{sec:files:txt} +\index{importing data!text files|(} +In general, text files are the most portable approach to data storage but usually also the least efficient with respect to the size of the file. Text files are composed of encoded characters. This makes them easy to edit with text editors and easy to read from programs written in most programming languages. On the other hand, how the data encoded as characters is arranged can be based on two different approaches: positional or using a specific character as a separator. The positional approach is more concise but almost unreadable to humans as the values run into each other. Reading of data stored using a positional approach requires access to a format definition and was common in FORTRAN and COBOL at the time when punch cards were used to store data. In the case of separators, different separators are in common use. Comma-separated values (CSV) encodings use either a comma or semicolon to separate the fields or columns. Tabulator, or tab-separated values (TSV) use the tab character as a column separator. Sometimes white space is used as a separator, most commonly when all values are to be converted to \code{numeric}. + +\begin{explainbox} +\textbf{Not all text files are born equal.} When reading text files, and \emph{foreign} binary files which may contain embedded text strings, there is potential for their misinterpretation during the import operation. One common source of problems, is that column headers are to be read as \Rlang names. As earlier discussed, there are strict rules, such as avoiding spaces or special characters if the names are to be used with the normal syntax. On import, some functions will attempt to sanitize the names, but others not. Most such names are still accessible in \Rlang statements, but a special syntax is needed to protect them from triggering syntax errors through their interpretation as something different than variable or function names---in \Rlang jargon we say that they need to be quoted. + +Some of the things we need to be on the watch for are: +1) Mismatches between the character encoding expected by the function used to read the file, and the encoding used for saving the file---usually because of different locales. +2) Leading or trailing (invisible) spaces present in the character values or column names---which are almost invisible when data frames are printed. +3) Wrongly guessed column classes---a typing mistake affecting a single value in a column, e.g., the wrong kind of decimal marker, prevents the column from being recognized as numeric. +4) Mismatched decimal marker in \code{CSV} files---the marker depends on the locale (language and sometimes country) settings. + +If you encounter problems after import, such as failure of indexing of data frame columns by name, use function \code{names()} to get the names printed to the console as a character vector. This is useful because character vectors are always printed with each string delimited by quotation marks making leading and trailing spaces clearly visible. The same applies to use of \code{levels()} with factors created with data that might have contained mistakes. + +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} +\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} +\begin{verbatim} +## a a a +## 1 1 2 3 +\end{verbatim} +\begin{alltt} +\hlkwd{data.frame}\hlstd{(}\hlkwc{a} \hlstd{=} \hlnum{1}\hlstd{,} \hlstr{"a "} \hlstd{=} \hlnum{2}\hlstd{,} \hlstr{" a"} \hlstd{=} \hlnum{3}\hlstd{)} +\end{alltt} +\begin{verbatim} +## a a. X.a +## 1 1 2 3 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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} +\begin{verbatim} +## al a1 aO a0 +## 1 1 2 3 4 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Reading data from a text file can result in very odd-looking values stored in \Rlang variables because of a mismatch in encoding, e.g., when a CSV file saved with \pgrmname{MS-Excel} is silently encoded using 16-bit unicode format, but read as an 8-bit unicode encoded file. + +The hardest part of all these problems is to diagnose their origin, as function arguments and working environment options can in most cases be used to force the correct decoding of text files with diverse characteristics, origins and vintages once one knows what is required. One function in the \Rlang \pkgname{tools} package, which is not exported, can at the time of writing be used to test files for the presence on non-ASCII characters: \Rfunction{tools:::showNonASCIIfile()}. This function takes as an argument the path to a file. +\end{explainbox} + +\subsection[Base R and `utils']{Base \Rlang and \pkgname{utils}} +\index{text files!with field markers} +Text files containing data in columns can be divided into two broad groups. Those with fixed-width fields and those with delimited fields. Fixed-width fields were especially common in the early days of \langname{FORTRAN} and \langname{COBOL} when data storage capacity was very limited. These formats are frequently capable of encoding information using fewer characters than when delimited fields are used. The best way of understanding the differences is with examples. Although in this section we exemplify the use of functions by passing a file name as an argument, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). + +In the first example we will read a file with fields solely delimited by ``,.'' This is what is called comma-separated-values (CSV) format which can be read and written with \Rfunction{read.csv()} and \Rfunction{write.csv()}, respectively. + +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} +\begin{verbatim} +col1,col2,col3,col4 +1.0,24.5,346,ABC +23.4,45.6,78,Z Y +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{from_csv_a.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sapply}\hlstd{(from_csv_a.df, class)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} +\hlstd{from_csv_a.df[[}\hlstr{"col4"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(from_csv_a.df[[}\hlstr{"col4"}\hlstd{]])} +\end{alltt} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Read the file \code{not-aligned-ASCII-UK.csv} with function \Rfunction{read.csv2()} instead of \Rfunction{read.csv()}. Although this may look like a waste of time, the point of the exercise is for you to get familiar with \Rlang behavior in case of such a mistake. This will help you recognize similar errors when they happen accidentally, which is quite common when files are shared. +\end{playground} + +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} +\begin{verbatim} +col1, col2, col3, col4 + 1.0, 24.5, 346, ABC +23.4, 45.6, 78, Z Y +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{from_csv_b.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{sapply}\hlstd{(from_csv_b.df, class)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} +\hlstd{from_csv_b.df[[}\hlstr{"col4"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(from_csv_b.df[[}\hlstr{"col4"}\hlstd{]])} +\end{alltt} +\begin{verbatim} +## [1] " ABC" " Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{from_csv_e.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{strip.white} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlkwd{sapply}\hlstd{(from_csv_e.df, class)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} +\hlstd{from_csv_e.df[[}\hlstr{"col4"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(from_csv_e.df[[}\hlstr{"col4"}\hlstd{]])} +\end{alltt} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +The functions from the \Rlang \pkgname{utils} package by default convert columns containing character strings into factors, as seen above. This default can be changed so that character strings remain as is. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{from_csv_c.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} + \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{FALSE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sapply}\hlstd{(from_csv_c.df, class)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "character" +\end{verbatim} +\begin{alltt} +\hlstd{from_csv_c.df[[}\hlstr{"col4"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{verbatim} +col1 col2 col3 col4 + 1.0 24.5 346 ABC +23.4 45.6 78 "Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sapply}\hlstd{(from_txt_b.df, class)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} +\hlstd{from_txt_b.df[[}\hlstr{"col4"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} +\hlkwd{levels}\hlstd{(from_txt_b.df[[}\hlstr{"col4"}\hlstd{]])} +\end{alltt} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\index{text files!fixed width fields} +With a fixed-width format, no delimiters are needed. Decoding is based solely on the position of the characters in the line or record. A file like this cannot be interpreted without a description of the format used for saving the data. Files containing data stored in \emph{fixed width format} can be read with function \Rfunction{read.fwf()}. Records for a single observation can be stored in a single or multiple lines. In either case, each line has fields of different but fixed known widths. + +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} +\begin{verbatim} + 10245346ABC +234456 78Z Y +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{),} + \hlkwc{col.names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"col1"}\hlstd{,} \hlstr{"col2"}\hlstd{,} \hlstr{"col3"}\hlstd{,} \hlstr{"col4"}\hlstd{))} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sapply}\hlstd{(from_fwf_a.df, class)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "numeric" "character" +\end{verbatim} +\begin{alltt} +\hlstd{from_fwf_a.df[[}\hlstr{"col4"}\hlstd{]]} +\end{alltt} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} + The file reading functions described above share with \Rfunction{read.table()} the same parameters. In addition to those described above, other frequently useful parameters are \code{skip} and \code{n}, which can be used to skip lines at the top of a file and limit the number of lines (or records) to read; \code{header}, which accepts a logical argument indicating if the fields in the first text line read should be decoded as column names rather than data; \code{na.strings}, to which can be passed a character vector with strings to be interpreted as \code{NA}; and \code{colClasses}, which provides control of the conversion of the fields to \Rlang classes and possibly skipping some columns altogether. All these parameters are described in the corresponding help pages. +\end{explainbox} + +\begin{playground} +In reality \Rfunction{read.csv()}, \code{read.csv2()} and \Rfunction{read.table()} are the same function with different default arguments to several of their parameters. Study the help page, and by passing suitable arguments, make \Rfunction{read.csv()} behave like \Rfunction{read.table()}, then make \Rfunction{read.table()} behave like \Rfunction{read.csv2()}. +\end{playground} + +\begin{explainbox} +We can read a text file as character strings, without attempting to decode them. This is occasionally useful, such as when we do the decoding as part of our own script. In this case, the function to use is \code{readLines()}. The returned value is a character vector in which each member string corresponds to one line or record in the file, with the end-of-line markers stripped (see example in section \ref{sec:io:connections} on page \pageref{sec:io:connections}). +\end{explainbox} +\index{importing data!text files|)} + +\index{exporting data!text files|(} +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} +\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} +\end{kframe} +\end{knitrout} + +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} +\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{verbatim} +"x","y","z" +1,0.5,"a" +2,0.4,"b" +3,0.3,"c" +4,0.2,"d" +5,0.1,"e" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +In most cases setting, as above, \code{row.names = FALSE} when writing a CSV file will help when it is read. Of course, if row names do contain important information, such as gene tags, you cannot skip writing the row names to the file unless you first copy these data into a column in the data frame. (Row names are stored separately as an attribute in \code{data.frame} objects, see section \ref{sec:calc:attributes} on page \pageref{sec:calc:attributes} for details.) +\end{explainbox} + +\begin{playground} +Write the data frame \code{my.df} into text files with functions \Rfunction{write.csv2()} and \Rfunction{write.table()} instead of \Rfunction{read.csv()} and display the files. +\end{playground} + +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} +\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{)} +\hlkwd{file.show}\hlstd{(}\hlstr{"my-file2.txt"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{verbatim} +abcd +hello world +123.45 +\end{verbatim} +\end{kframe} +\end{knitrout} +\index{exporting data!text files|)} + +\subsection[readr]{\pkgname{readr}}\label{sec:files:readr} +\index{importing data!text files|(} + + + +Package \pkgname{readr} is part of the \pkgname{tidyverse} suite. It defines functions that allow faster input and output, and have different default behavior. Contrary to base \Rlang functions, they are optimized for speed, but may sometimes wrongly decode their input and rarely even silently do this. Base \Rlang functions do less \emph{guessing}, e.g., the delimiters must be supplied as arguments. The \pkgname{readr} functions guess more properties of the text file format; in most cases they succeed, which is very handy, but occasionally they fail. Automatic guessing can be overridden by passing arguments and this is recommended for scripts that may be reused to read different files in the future. Another important advantage is that these functions read character strings formatted as dates or times directly into columns of class \code{POSIXct}. All \code{write} functions defined in \pkgname{readr} have an \code{append} parameter, which can be used to change the default behavior of overwriting an existing file with the same name, to appending the output at its end. + +Although in this section we exemplify the use of these functions by passing a file name as an argument, as is the case with \Rlang native functions, URLs, and open file descriptors are also accepted (see section \ref{sec:io:connections} on page \pageref{sec:io:connections}). Furthermore, if the file name ends in a tag recognizable as indicating a compressed file format, the file will be uncompressed on the fly. + +\begin{warningbox} +The names of functions ``equivalent'' to those described in the previous section have names formed by replacing the dot with an underscore, e.g., \Rfunction{read\_csv()} $\approx$ \Rfunction{read.csv()}. The similarity refers to the format of the files read, but not the order, names, or roles of their formal parameters. For example, function \code{read\_table()} has a slightly different behavior than \Rfunction{read.table()}, although they both read fields separated by white space. Other aspects of the default behavior are also different, for example \pkgname{readr} functions do not convert columns of character strings into factors and row names are not set in the returned \Rclass{tibble}, which inherits from \Rclass{data.frame}, but is not fully compatible (see section \ref{sec:data:tibble} on page \pageref{sec:data:tibble}). +\end{warningbox} + +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 part of it. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{read_csv}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## +## 1 1 24.5 346 ABC +## 2 23.4 45.6 78 Z Y +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{read_csv}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## +## 1 1 24.5 346 ABC +## 2 23.4 45.6 78 Z Y +\end{verbatim} +\end{kframe} +\end{knitrout} + +Function \Rfunction{read\_table()}, differently to \Rfunction{read.table()}, retains quotes as part of read character strings. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{read_table}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/aligned-ASCII.txt"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## +## 1 1 24.5 346 "ABC" +## 2 23.4 45.6 78 "\"Z Y\"" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"}, we need to use \Rfunction{read\_table2()}, which allows misalignment of fields, like \Rfunction{read.table()}, instead of \Rfunction{read\_table()}, which expects vertically aligned fields across rows. However, in this case the embedded space character in the quoted string is misinterpreted and part of the string dropped with a warning. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{read_table2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/not-aligned-ASCII.txt"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}} + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row col\ \ expected\ \ \ \ actual\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\#\ \ 2\ \ -- 4 columns 5 columns 'extdata/not-aligned-ASCII.txt'}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## +## 1 1 24.5 346 "ABC" +## 2 23.4 45.6 78 "\"Z" +\end{verbatim} +\end{kframe} +\end{knitrout} + +Function \Rfunction{read\_delim()} with space as the delimiter needs to be used. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## +## 1 1 24.5 346 ABC +## 2 23.4 45.6 78 Z Y +\end{verbatim} +\end{kframe} +\end{knitrout} + +Function \Rfunction{read\_tsv()} reads files encoded with the tab character as the delimiter, and \Rfunction{read\_fwf()} reads files with fixed width fields. There is, however, no equivalent to \Rfunction{read.fortran()}, supporting implicit decimal points. + +\begin{playground} +Use the "wrong" \code{read\_} functions to read the example files used above and/or your own files. As mentioned earlier, forcing errors will help you learn how to diagnose when such errors are caused by coding mistakes. In this case, as wrongly read data are not always accompanied by error or warning messages, carefully check the returned tibbles for misread data values. +\end{playground} + +\begin{explainbox} +The functions from R's \pkgname{utils} read the whole file as text before attempting to guess the class of the columns or their alignment. This is reliable but slow for very large text files. The functions from \pkgname{readr} read only the top 1000 lines by default for guessing, and then rather blindly read the whole files assuming that the guessed properties also apply to the remainder of the file. This is more efficient, but somehow risky. In earlier versions of \pkgname{readr}, a typical failure to correctly decode fields was when numbers are in increasing order and the field widths continue increasing in the lines below those used for guessing, but this case seems to be, at the time of writing correctly, handled. It also means that in cases when an individual value after \code{guess\_max} lines cannot be converted to numeric, instead of returning a column of character strings with base \Rpgrm functions, this value is encoded as a numeric \code{NA} with a warning. To demonstrate this we will drastically reduce \code{guess\_max} from its default so that we can use an example file only a few lines in length. + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{read_table2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_character(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 4 x 4 +## col1 col2 col3 col4 +## +## 1 1.0 24.5 346 ABC +## 2 2.4 45.6 78 XYZ +## 3 20.4 45.6 78 XYZ +## 4 a 20 2500 abc +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{read_table2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{,} \hlkwc{guess_max} \hlstd{=} \hlnum{3L}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}} + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row\ \ col expected actual\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\#\ \ 4 col1 a double\ \ \ \ \ \ a 'extdata/miss-aligned-ASCII.txt'}}\begin{verbatim} +## # A tibble: 4 x 4 +## col1 col2 col3 col4 +## +## 1 1 24.5 346 ABC +## 2 2.4 45.6 78 XYZ +## 3 20.4 45.6 78 XYZ +## 4 NA 20 2500 abc +\end{verbatim} +\end{kframe} +\end{knitrout} +\end{explainbox} +\index{importing data!text files|)} + + + +\index{exporting data!text files|(} +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} +\begin{alltt} +\hlkwd{write_excel_csv}\hlstd{(my.df,} \hlkwc{path} \hlstd{=} \hlstr{"my-file6.csv"}\hlstd{)} +\hlkwd{file.show}\hlstd{(}\hlstr{"my-file6.csv"}\hlstd{,} \hlkwc{pager} \hlstd{=} \hlstr{"console"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +That saves a file containing the following text: +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{verbatim} +x,y,z +1,0.5,a +2,0.4,b +3,0.3,c +4,0.2,d +5,0.1,e +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Compare the output from \Rfunction{write\_excel\_csv()} and \Rfunction{write\_csv()}. What is the difference? Does it matter when you import the written CSV file into Excel (the version you are using, with the locale settings of your computer)? +\end{playground} + +The pair of functions \Rfunction{read\_lines()} and \Rfunction{write\_lines()} read and write character vectors without conversion, similarly to base \Rlang \code{readLines()} and \code{writeLines()}. Functions \Rfunction{read\_file()} and \Rfunction{write\_file()} read and write the contents of a whole text file into, and from, a single character string. Functions \Rfunction{read\_file()} and \Rfunction{write\_file()} can also be used with raw vectors to read and write binary files or text files of unknown encoding. + +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} +\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)} +\end{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} +\hlkwd{cat}\hlstd{(one.str)} +\end{alltt} +\begin{verbatim} +## col1 col2 col3 col4 + +## 1.0 24.5 346 ABC + +## 2.4 45.6 78 XYZ + +## 20.4 45.6 78 XYZ + +## a 20 2500 abc + +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +Use \Rfunction{write\_file()} to write a file that can be read with \Rfunction{read\_csv()}. +\end{advplayground} +\index{exporting data!text files|)} + +\section{XML and HTML files} +\index{importing data!XML and HTML files|(} + +XML files contain text with special markup. Several modern data exchange formats are based on the \langname{XML} standard (see \url{https://www.w3.org/TR/xml/}) which uses schemas for flexibility. Schemas define specific formats, allowing reading of formats not specifically targeted during development of the read functions. Even the modern \langname{XHTML} standard used for web pages is based on such schemas, while \langname{HTML} only differs slightly in its syntax. + +\subsection[`xml2']{\pkgname{xml2}} + + + +Package \pkgname{xml2} provides functions for reading and parsing \langname{XTML} and \langname{HTML} files. This is a vast subject, of which I will only give a brief example. + +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} +\begin{alltt} +\hlstd{web_page} \hlkwb{<-} \hlkwd{read_html}\hlstd{(}\hlstr{"http://r4photobiology.info/R/index.html"}\hlstd{)} +\hlkwd{html_structure}\hlstd{(web_page)} +\end{alltt} +\begin{verbatim} +## +## +## +## {text} +## <meta [name, content]> +## <meta [name, content]> +## <meta [name, content]> +## <body> +## {text} +## <hr> +## <h1> +## {text} +## {text} +## <hr> +## <p> +## {text} +## <a [href]> +## {text} +## {text} +## {text} +## <p> +## {text} +## <a [href]> +## {text} +## {text} +## {text} +## <address> +## {text} +## {text} +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlkwd{xml_text}\hlstd{(}\hlkwd{xml_find_all}\hlstd{(web_page,} \hlstr{".//title"}\hlstd{))} +\end{alltt} +\begin{verbatim} +## [1] "Suite of R packages for photobiology" +\end{verbatim} +\end{kframe} +\end{knitrout} + +The functions defined in this package can be used to ``harvest'' data from web pages, but also to read data from files using formats that are defined through \langname{XML} schemas. +\index{importing data!XML and HTML files|)} + +\section{GPX files} +\index{importing data!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} +\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{%.>%} +\hlkwd{xmlToList}\hlstd{(}\hlkwc{node} \hlstd{= .)[[}\hlstr{"trk"}\hlstd{]]} \hlopt{%.>%} +\hlkwd{unlist}\hlstd{(}\hlkwc{x} \hlstd{= .[}\hlkwd{names}\hlstd{(.)} \hlopt{==} \hlstr{"trkseg"}\hlstd{],} \hlkwc{recursive} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlopt{%.>%} +\hlkwd{map_df}\hlstd{(}\hlkwc{.x} \hlstd{= .,} \hlkwc{.f} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)} \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{t}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{unlist}\hlstd{(}\hlkwc{x} \hlstd{= x))))} +\end{alltt} +\begin{verbatim} +## # A tibble: 199 x 7 +## time speed name type fix .attrs.lat .attrs.lon +## <chr> <chr> <chr> <chr> <chr> <chr> <chr> +## 1 2018-12-08T23:09~ 0.03~ trkpt-2018-12-08T23~ T 3d -34.912071 138.660595 +## 2 2018-12-08T23:09~ 0.08~ trkpt-2018-12-08T23~ T 3d -34.912067 138.660543 +## 3 2018-12-08T23:09~ 0.01~ trkpt-2018-12-08T23~ T 3d -34.912102 138.660554 +## # ... with 196 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +I have passed all arguments by name to make explicit how this pipe works. See section \ref{sec:data:pipes} on page \pageref{sec:data:pipes} for details on the use of the pipe and dot-pipe operators. + +\begin{playground} + To understand what data transformation takes place in each statement of this pipe, start by executing the first statement by itself, excluding the dot-pipe operator, and continue adding one statement at a time, and at each step check the returned value and look out for what has changed from the previous step. +\end{playground} + +\index{importing data!GPX files|)} + +\section{Worksheets}\label{sec:files:worksheets} +\index{importing data!worksheets and workbooks|(} + +Microsoft Office, Open Office and Libre Office are the most frequently used suites containing programs based on the worksheet paradigm. There is available a standardized file format for exchange of worksheet data, but it does not support all the features present in native file formats. We will start by considering \pgrmname{MS-Excel}. The file format used by \pgrmname{MS-Excel} has changed significantly over the years, and old formats tend to be less well supported by available \Rlang packages and may require the file to be updated to a more modern format with \pgrmname{MS-Excel} itself before import into \Rlang. The current format is based on XML and relatively simple to decode, whereas older binary formats are more difficult. Worksheets contain code as equations in addition to the actual data. In all cases, only values entered as such or those computed by means of the embedded equations can be imported into \Rlang rather than the equations themselves. + +\subsection{CSV files as middlemen} + +If we have access to the original software used for creating a worksheet or workbook, then exporting worksheets to text files in CSV format and importing them into \Rlang using the functions described in sections \ref{sec:files:txt} and \ref{sec:files:readr} starting on pages \pageref{sec:files:txt} and \pageref{sec:files:readr} provides a broadly compatible route for importing data---with the caveat that we should take care that delimiters and decimal marks match the expectations of the functions used. This approach is not ideal from the perspective of having to recreate intermediate files. A better approach is, when feasible, to import the data directly from the workbook or worksheets into \Rlang. + +\subsection[`readxl']{\pkgname{readxl}}\label{sec:files:excel} +\index{importing data!.xlsx files|(} + + + +Package \pkgname{readxl} supports reading of \pgrmname{MS-Excel} workbooks, and selecting worksheets and regions within worksheets specified in ways similar to those used by \pgrmname{MS-Excel} itself. The interface is simple, and the package easy to install. We will import a file that in \pgrmname{MS-Excel} looks like the screen capture below. + +\begin{center} +\includegraphics[width=0.75\textwidth]{figures/Book1-xlsx.png} +\end{center} + +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} +\begin{alltt} +\hlstd{sheets} \hlkwb{<-} \hlkwd{excel_sheets}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{)} +\hlstd{sheets} +\end{alltt} +\begin{verbatim} +## [1] "my data" +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{Book1.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{)} +\hlstd{Book1.df} +\end{alltt} +\begin{verbatim} +## # A tibble: 10 x 3 +## sample group observation +## <dbl> <chr> <dbl> +## 1 1 a 1 +## 2 2 a 5 +## 3 3 a 7 +## # ... with 7 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{Book1_region.df} \hlkwb{<-} \hlkwd{read_excel}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlstr{"my data"}\hlstd{,} \hlkwc{range} \hlstd{=} \hlstr{"A1:B8"}\hlstd{)} +\hlstd{Book1_region.df} +\end{alltt} +\begin{verbatim} +## # A tibble: 7 x 2 +## sample group +## <dbl> <chr> +## 1 1 a +## 2 2 a +## 3 3 a +## # ... with 4 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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}). + +\subsection[`xlsx']{\pkgname{xlsx}} + + + +Package \pkgname{xlsx} can be more difficult to install as it uses Java functions to do the actual work. However, it is more comprehensive, with functions both for reading and writing \pgrmname{MS-Excel} worksheets and workbooks, in different formats including the older binary ones. Similar to \pkgname{readr} it allows selected regions of a worksheet to be imported. + +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} +\begin{alltt} +\hlstd{Book1_xlsx.df} \hlkwb{<-} \hlkwd{read.xlsx}\hlstd{(}\hlstr{"extdata/Book1.xlsx"}\hlstd{,} \hlkwc{sheetName} \hlstd{=} \hlstr{"my data"}\hlstd{)} +\hlstd{Book1_xlsx.df} +\end{alltt} +\begin{verbatim} +## sample group observation +## 1 1 a 1.0 +## 2 2 a 5.0 +## 3 3 a 7.0 +## 4 4 a 2.0 +## 5 5 a 5.0 +## 6 6 b 0.0 +## 7 7 b 2.0 +## 8 8 b 3.0 +## 9 9 b 1.0 +## 10 10 b 1.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{])} +\hlkwd{write.xlsx}\hlstd{(my.data,} \hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.xlsx"}\hlstd{,} \hlkwc{sheetName} \hlstd{=} \hlstr{"first copy"}\hlstd{)} +\hlkwd{write.xlsx}\hlstd{(my.data,} \hlkwc{file} \hlstd{=} \hlstr{"extdata/my-data.xlsx"}\hlstd{,} \hlkwc{sheetName} \hlstd{=} \hlstr{"second copy"}\hlstd{,} \hlkwc{append} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +When opened in Excel, we get a workbook containing two worksheets, named using the arguments we passed through \code{sheetName} in the code chunk above. +% screen capture to be replaced!! +\begin{center} +\includegraphics[width=0.75\textwidth]{figures/my-data-xlsx.png} +\end{center} + +\begin{playground} +If you have some worksheet files available, import them into \Rlang to get a feel for how the way in which data is organized in the worksheets affects how easy or difficult it is to import them into \Rlang. +\end{playground} +\index{importing data!.xlsx files|)} + +\subsection[`readODS']{\pkgname{readODS}} +\index{importing data!.ods files|(} + +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} +\begin{alltt} +\hlstd{ods.df} \hlkwb{<-} \hlkwd{read_ods}\hlstd{(}\hlstr{"extdata/Book1.ods"}\hlstd{,} \hlkwc{sheet} \hlstd{=} \hlnum{1}\hlstd{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ sample = col\_double(),\\\#\#\ \ group = col\_character(),\\\#\#\ \ observation = col\_double()\\\#\# )}}\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlstd{ods.df} +\end{alltt} +\begin{verbatim} +## sample group observation +## 1 1 a 1.0 +## 2 2 a 5.0 +## 3 3 a 7.0 +## 4 4 a 2.0 +## 5 5 a 5.0 +## 6 6 b 0.0 +## 7 7 b 2.0 +## 8 8 b 3.0 +## 9 9 b 1.0 +## 10 10 b 1.5 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Function \Rfunction{write\_ods()} writes a data frame into an ODS file. +\index{importing data!.ods files|)} +\index{importing data!worksheets and workbooks|)} + +\section{Statistical software}\label{sec:files:stat} +\index{importing data!other statistical software|(} + +There are two different comprehensive packages for importing data saved from other statistical programs such as SAS, Statistica, SPSS, etc. The longtime ``standard'' is package \pkgname{foreign} included in base \Rlang, and package \pkgname{haven} is a newer contributed extension. In the case of files saved with old versions of statistical programs, functions from \pkgname{foreign} tend to be more robust than those from \pkgname{haven}. + +\subsection[foreign]{\pkgname{foreign}} + + + +Functions in package \pkgname{foreign} allow us to import data from files saved by several statistical analysis programs, including \pgrmname{SAS}, \pgrmname{Stata}, \pgrmname{SPPS}, \pgrmname{Systat}, \pgrmname{Octave} among others, and a function for writing data into files with formats native to \pgrmname{SAS}, \pgrmname{Stata}, and \pgrmname{SPPS}. \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} +\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{)} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# re-encoding from UTF-8}}\begin{alltt} +\hlstd{my_spss.df[}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{:}\hlnum{6}\hlstd{,} \hlnum{17}\hlstd{)]} +\end{alltt} +\begin{verbatim} +## block treat mycotreat water1 pot harvest harvest_date +## 1 0 Watered, EM 1 1 14 1 13653705600 +## 2 0 Watered, EM 1 1 52 1 13653705600 +## 3 0 Watered, EM 1 1 111 1 13653705600 +## 4 0 Watered, EM 1 1 127 1 13653705600 +## 5 0 Watered, EM 1 1 230 1 13653705600 +## 6 0 Watered, EM 1 1 258 1 13653705600 +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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)} +\end{alltt} +\begin{verbatim} +## THIAMIN CEREAL +## 1 5.2 wheat +## 2 4.5 wheat +## 3 6.0 wheat +## 4 6.1 wheat +## 5 6.7 wheat +## 6 5.8 wheat +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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)} +\end{alltt} +\begin{verbatim} +## CONT DENS BLOCK SEEDL VITAL BASE ANGLE HEIGHT DIAM +## 1 1 1 1 2 44 2 0 1 53 +## 2 1 1 1 2 41 2 1 2 70 +## 3 1 1 1 2 21 2 0 1 65 +## 4 1 1 1 2 15 3 0 1 79 +## 5 1 1 1 2 37 3 0 1 71 +## 6 1 1 1 2 29 2 1 1 43 +\end{verbatim} +\end{kframe} +\end{knitrout} + +Not all functions in \pkgname{foreign} return data frames by default, but all of them can be coerced to do so. + +\subsection[haven]{\pkgname{haven}} + + + +Package \pkgname{haven} is less ambitious with respect to the number of formats supported, or their vintages, providing read and write functions for only three file formats: \pgrmname{SAS}, \pgrmname{Stata} and \pgrmname{SPSS}. On the other hand, \pkgname{haven} provides flexible ways to convert the different labeled values that cannot be directly mapped to \Rlang modes. They also decode dates and times according to the idiosyncrasies of each of these file formats. In cases when the imported file contains labeled values the returned \Rclass{tibble} object needs some additional attention from the user. Labeled numeric columns in \pgrmname{SPSS} are not necessarily equivalent to factors, although they sometimes are. Consequently, conversion to factors cannot be automated and must be done manually in a separate step. + +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} +\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{)]} +\end{alltt} +\begin{verbatim} +## # A tibble: 6 x 7 +## block treat mycotreat water1 pot harvest harvest_date +## <dbl> <dbl+lbl> <dbl> <dbl> <dbl> <dbl> <date> +## 1 0 1 [Watered, EM] 1 1 14 1 2015-06-15 +## 2 0 1 [Watered, EM] 1 1 52 1 2015-06-15 +## 3 0 1 [Watered, EM] 1 1 111 1 2015-06-15 +## # ... with 3 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +In this case, the dates are correctly decoded. + +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} +\begin{alltt} +\hlstd{thiamin.tb} \hlkwb{<-} \hlkwd{read_sav}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/thiamin.sav"}\hlstd{)} +\hlstd{thiamin.tb} +\end{alltt} +\begin{verbatim} +## # A tibble: 24 x 2 +## THIAMIN CEREAL +## <dbl> <dbl+lbl> +## 1 5.2 1 [wheat] +## 2 4.5 1 [wheat] +## 3 6 1 [wheat] +## # ... with 21 more rows +\end{verbatim} +\begin{alltt} +\hlstd{thiamin.tb} \hlkwb{<-} \hlkwd{as_factor}\hlstd{(thiamin.tb)} +\hlstd{thiamin.tb} +\end{alltt} +\begin{verbatim} +## # A tibble: 24 x 2 +## THIAMIN CEREAL +## <dbl> <fct> +## 1 5.2 wheat +## 2 4.5 wheat +## 3 6 wheat +## # ... with 21 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Compare the values returned by different \code{read} functions when applied to the same file on disk. Use \Rfunction{names()}, \Rfunction{str()} and \Rfunction{class()} as tools in your exploration. If you are brave, also use \Rfunction{attributes()}, \Rfunction{mode()}, \Rfunction{dim()}, \Rfunction{dimnames()}, \Rfunction{nrow()} and \Rfunction{ncol()}. +\end{playground} + +\begin{playground} +If you use or have in the past used other statistical software or a general-purpose language like \langname{Python}, look for some old files and import them into \Rlang. +\end{playground} +\index{importing data!other statistical software|)} + +\section{NetCDF files} +\index{importing data!NeCDF files|(} + +In some fields, including geophysics and meteorology, \pgrmname{NetCDF} is a very common format for the exchange of data. It is also used in other contexts in which data is referenced to a grid of locations, like with data read from Affymetrix microarrays used to study gene expression. \pgrmname{NetCDF} files are binary but use a format that allows the storage of metadata describing each variable together with the data itself in a well-organized and standardized format, which is ideal for exchange of moderately large data sets measured on a spatial or spatio-temporal grid. + +Officially described as follows: +\begin{quote} +\pgrmname{NetCDF} is a set of software libraries [from Unidata] and self-describing, machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. +\end{quote} + +As sometimes \pgrmname{NetCDF} files are large, it is good that it is possible to selectively read the data from individual variables with functions in packages \pkgname{ncdf4} or \pkgname{RNetCDF}. On the other hand, this implies that contrary to other data file reading operations, reading a \pgrmname{NetCDF} file is done in two or more steps---i.e., opening the file, reading metadata describing the variables and spatial grid, and finally reading the data of interest. + +\subsection[ncdf4]{\pkgname{ncdf4}} + + + +Package \pkgname{ncdf4} supports reading of files using \pgrmname{netCDF} version 4 or earlier formats. Functions in \pkgname{ncdf4} not only allow reading and writing of these files, but also their modification. + +We first read metadata to obtain an index of the file contents, and in additional steps, read a subset of the data. With \Rfunction{print()} we can find out the names and characteristics of the variables and attributes. In this example, we read long-term averages for potential evapotranspiration (PET). + +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} +\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{)} +\end{alltt} +\begin{verbatim} +## List of 14 +## $ filename : chr "extdata/pevpr.sfc.mon.ltm.nc" +## $ writable : logi FALSE +## $ id : int 65536 +## $ safemode : logi FALSE +## $ format : chr "NC_FORMAT_NETCDF4_CLASSIC" +## $ is_GMT : logi FALSE +## $ groups :List of 1 +## $ fqgn2Rindex:List of 1 +## $ ndims : num 4 +## $ natts : num 8 +## $ dim :List of 4 +## $ unlimdimid : num -1 +## $ nvars : num 3 +## $ var :List of 3 +## - attr(*, "class")= chr "ncdf4" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{advplayground} +Increase \code{max.level} in the call to \Rfunction{str()} above and study the connection object stores information on the dimensions and for each data variable. You can also \code{print(meteo\_data.nc)} for a more complete printout once you have understood the structure of the object. +\end{advplayground} +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} +\begin{alltt} +\hlstd{time.vec} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"time"}\hlstd{)} +\hlkwd{head}\hlstd{(time.vec)} +\end{alltt} +\begin{verbatim} +## [1] -657073 -657042 -657014 -656983 -656953 -656922 +\end{verbatim} +\begin{alltt} +\hlstd{longitude} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"lon"}\hlstd{)} +\hlkwd{head}\hlstd{(longitude)} +\end{alltt} +\begin{verbatim} +## [1] 0.000 1.875 3.750 5.625 7.500 9.375 +\end{verbatim} +\begin{alltt} +\hlstd{latitude} \hlkwb{<-} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"lat"}\hlstd{)} +\hlkwd{head}\hlstd{(latitude)} +\end{alltt} +\begin{verbatim} +## [1] 88.5420 86.6531 84.7532 82.8508 80.9473 79.0435 +\end{verbatim} +\end{kframe} +\end{knitrout} + +The \code{time} vector is rather odd, as it contains only monthly data as these are long-term averages, but expressed as days from 1800-01-01 corresponding to the first day of each month of year 1. We use package \pkgname{lubridate} for the conversion. + +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} +\begin{alltt} +\hlstd{pet.tb} \hlkwb{<-} + \hlkwd{tibble}\hlstd{(}\hlkwc{time} \hlstd{=} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"time"}\hlstd{),} + \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)),} + \hlkwc{lon} \hlstd{= longitude[}\hlnum{6}\hlstd{],} + \hlkwc{lat} \hlstd{= latitude[}\hlnum{2}\hlstd{],} + \hlkwc{pet} \hlstd{=} \hlkwd{ncvar_get}\hlstd{(meteo_data.nc,} \hlstr{"pevpr"}\hlstd{)[}\hlnum{6}\hlstd{,} \hlnum{2}\hlstd{, ]} + \hlstd{)} +\hlstd{pet.tb} +\end{alltt} +\begin{verbatim} +## # A tibble: 12 x 5 +## time month lon lat pet +## <dbl> <dbl> <dbl> <dbl> <dbl> +## 1 -657073 12 9.38 86.7 4.28 +## 2 -657042 1 9.38 86.7 5.72 +## 3 -657014 2 9.38 86.7 4.38 +## # ... with 9 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +If we want to read in several grid points, we can use several different approaches. However, the order of nesting of dimensions can make adding the dimensions as columns error prone. It is much simpler to use package \pkgnameNI{tidync} described next. + +\subsection[tidync]{\pkgname{tidync}} + + + +Package \pkgname{tidync} provides functions that make it easier to extract subsets of the data from an \pgrmname{NetCDF} file. We start by doing the same operations as in the examples for \pkgnameNI{ncdf4}. + +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} +\begin{alltt} +\hlstd{meteo_data.tnc} \hlkwb{<-} \hlkwd{tidync}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} +\hlstd{meteo_data.tnc} +\end{alltt} +\begin{verbatim} +## +## Data Source (1): pevpr.sfc.mon.ltm.nc ... +## +## Grids (5) <dimension family> : <associated variables> +## +## [1] D0,D1,D2 : pevpr, valid_yr_count **ACTIVE GRID** ( 216576 values per var... +## [2] D3,D2 : climatology_bounds +## [3] D0 : lon +## [4] D1 : lat +## [5] D2 : time +## +## Dimensions 4 (3 active): +## +## dim name length min max start count dmin dmax unlim coord_dim +## <chr> <chr> <dbl> <dbl> <dbl> <int> <int> <dbl> <dbl> <lgl> <lgl> +## 1 D0 lon 192 0. 3.58e2 1 192 0. 3.58e2 FALSE TRUE +## 2 D1 lat 94 -8.85e1 8.85e1 1 94 -8.85e1 8.85e1 FALSE TRUE +## 3 D2 time 12 -6.57e5 -6.57e5 1 12 -6.57e5 -6.57e5 FALSE TRUE +## +## Inactive dimensions: +## +## dim name length min max unlim coord_dim +## <chr> <chr> <dbl> <dbl> <dbl> <lgl> <lgl> +## 1 D3 nbnds 2 1 2 FALSE FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{hyper_dims}\hlstd{(meteo_data.tnc)} +\end{alltt} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Column `length` has different attributes on LHS and RHS of join}}\begin{verbatim} +## # A tibble: 3 x 7 +## name length start count id unlim coord_dim +## <chr> <dbl> <int> <int> <int> <lgl> <lgl> +## 1 lon 192 1 192 0 FALSE TRUE +## 2 lat 94 1 94 1 FALSE TRUE +## 3 time 12 1 12 2 FALSE TRUE +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{hyper_vars}\hlstd{(meteo_data.tnc)} +\end{alltt} +\begin{verbatim} +## # A tibble: 2 x 6 +## id name type ndims natts dim_coord +## <int> <chr> <chr> <int> <int> <lgl> +## 1 4 pevpr NC_FLOAT 3 14 FALSE +## 2 5 valid_yr_count NC_FLOAT 3 4 FALSE +\end{verbatim} +\end{kframe} +\end{knitrout} + +We extract a subset of the data into a tibble in long (or tidy) format, and add +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} +\begin{alltt} +\hlkwd{hyper_tibble}\hlstd{(meteo_data.tnc,} + \hlkwc{lon} \hlstd{=} \hlkwd{signif}\hlstd{(lon,} \hlnum{1}\hlstd{)} \hlopt{==} \hlnum{9}\hlstd{,} + \hlkwc{lat} \hlstd{=} \hlkwd{signif}\hlstd{(lat,} \hlnum{2}\hlstd{)} \hlopt{==} \hlnum{87}\hlstd{)} \hlopt{%.>%} + \hlkwd{mutate}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)))} \hlopt{%.>%} + \hlkwd{select}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlopt{-}\hlstd{time)} +\end{alltt} +\begin{verbatim} +## # A tibble: 12 x 5 +## pevpr valid_yr_count lon lat month +## <dbl> <dbl> <dbl> <dbl> <dbl> +## 1 4.28 1.19e-39 9.38 86.7 12 +## 2 5.72 1.19e-39 9.38 86.7 1 +## 3 4.38 1.29e-39 9.38 86.7 2 +## # ... with 9 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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 chuck 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} +\begin{alltt} +\hlkwd{hyper_tibble}\hlstd{(meteo_data.tnc,} + \hlkwc{lon} \hlstd{=} \hlkwd{signif}\hlstd{(lon,} \hlnum{1}\hlstd{)} \hlopt{==} \hlnum{9}\hlstd{)} \hlopt{%.>%} + \hlkwd{mutate}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)))} \hlopt{%.>%} + \hlkwd{select}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlopt{-}\hlstd{time)} +\end{alltt} +\begin{verbatim} +## # A tibble: 1,128 x 5 +## pevpr valid_yr_count lon lat month +## <dbl> <dbl> <dbl> <dbl> <dbl> +## 1 1.02 1.19e-39 9.38 88.5 12 +## 2 4.28 1.19e-39 9.38 86.7 12 +## 3 3.03 9.18e-40 9.38 84.8 12 +## # ... with 1,125 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{playground} +Instead of extracting data for one longitude across latitudes, extract data across longitudes for one latitude near the Equator. +\end{playground} +\index{importing data!NeCDF files|)} + +\section{Remotely located data}\label{sec:files:remote} +\index{importing data!remote connections|(} + +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} +\begin{alltt} +\hlstd{logger.df} \hlkwb{<-} + \hlkwd{read.csv2}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/logger_1.txt"}\hlstd{,} + \hlkwc{header} \hlstd{=} \hlnum{FALSE}\hlstd{,} + \hlkwc{col.names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"time"}\hlstd{,} \hlstr{"temperature"}\hlstd{))} +\hlkwd{sapply}\hlstd{(logger.df, class)} +\end{alltt} +\begin{verbatim} +## time temperature +## "factor" "numeric" +\end{verbatim} +\begin{alltt} +\hlkwd{sapply}\hlstd{(logger.df, mode)} +\end{alltt} +\begin{verbatim} +## time temperature +## "numeric" "numeric" +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{,} + \hlkwc{col_names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"time"}\hlstd{,} \hlstr{"temperature"}\hlstd{))} +\end{alltt} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Using ',' as decimal and '.' as grouping mark. Use read\_delim() for more control.}} + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ time = col\_character(),\\\#\#\ \ temperature = col\_double()\\\#\# )}}\begin{alltt} +\hlkwd{sapply}\hlstd{(logger.tb, class)} +\end{alltt} +\begin{verbatim} +## time temperature +## "character" "numeric" +\end{verbatim} +\begin{alltt} +\hlkwd{sapply}\hlstd{(logger.tb, mode)} +\end{alltt} +\begin{verbatim} +## time temperature +## "character" "numeric" +\end{verbatim} +\end{kframe} +\end{knitrout} + +While functions in package \pkgname{readr} support the use of URLs, those in packages \pkgname{readxl} and \pkgname{xlsx} do not. Consequently, we need to first download the file and save a copy locally, that we can read as described in section \ref{sec:files:excel} on page \pageref{sec:files:excel}. Function \Rfunction{download.file()} in the \Rlang \pkgname{utils} package can be used to download files using URLs. It supports different modes such as binary or text, and write or append, and different methods such as \code{"internal"}, \code{"wget"} and \code{"libcurl" }. + +\begin{warningbox} +For portability, \pgrmname{MS-Excel} files should be downloaded in binary mode, setting \code{mode = "wb"}, which is required under \osname{MS-Windows}. +\end{warningbox} + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{,} + \hlkwc{mode} \hlstd{=} \hlstr{"wb"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\begin{alltt} +\hlstd{remote_thiamin.df} \hlkwb{<-} + \hlkwd{read.spss}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"http://r4photobiology.info/learnr/thiamin.sav"}\hlstd{,} + \hlkwc{to.data.frame} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlkwd{head}\hlstd{(remote_thiamin.df)} +\end{alltt} +\begin{verbatim} +## THIAMIN CEREAL +## 1 5.2 wheat +## 2 4.5 wheat +## 3 6.0 wheat +## 4 6.1 wheat +## 5 6.7 wheat +## 6 5.8 wheat +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\hlstd{remote_my_spss.tb} +\end{alltt} +\begin{verbatim} +## # A tibble: 24 x 2 +## THIAMIN CEREAL +## <dbl> <dbl+lbl> +## 1 5.2 1 [wheat] +## 2 4.5 1 [wheat] +## 3 6 1 [wheat] +## # ... with 21 more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +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} +\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{,} + \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{)} +\hlcom{#download.file(my.url,} +\hlcom{# mode = "wb",} +\hlcom{# destfile = "extdata/pevpr.sfc.mon.ltm.nc")} +\hlstd{pet_ltm.nc} \hlkwb{<-} \hlkwd{nc_open}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{warningbox} +For portability, \pgrmname{NetCDF} files should be downloaded in binary mode, setting \code{mode = "wb"}, which is required under \osname{MS-Windows}. +. +\end{warningbox} +\index{importing data!remote connections|)} + +\section{Data acquisition from physical devices}\label{sec:data:acquisition} +\index{importing data!physical devices|(} + +Numerous\index{internet-of-things} modern data acquisition devices based on microcontrollers, including internet-of-things (IoT) devices, have servers (or daemons) that can be queried over a network connection to retrieve either real-time or logged data. Formats based on XML schemas or in JSON format are commonly used. + +\subsection[jsonlite]{\pkgname{jsonlite}} + + + +\index{importing data!jsonlite}\index{YoctoPuce modules} +We give here a simple example using a module from the \href{http://www.yoctopuce.com/}{YoctoPuce} family using a software hub running locally. We retrieve logged data from a YoctoMeteo module. + +\begin{infobox} +This example needs setting the configuration of the YoctoPuce module beforehand. Fully reproducible examples, including configuration instructions, will be provided online. +\end{infobox} + +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} +\begin{alltt} +\hlstd{hub.url} \hlkwb{<-} \hlstr{"http://localhost:4444/"} +\hlstd{Meteo01.df} \hlkwb{<-} + \hlkwd{fromJSON}\hlstd{(}\hlkwd{paste}\hlstd{(hub.url,} \hlstr{"byName/METEO01/dataLogger.json"}\hlstd{,} + \hlkwc{sep} \hlstd{=} \hlstr{""}\hlstd{),} \hlkwc{flatten} \hlstd{=} \hlnum{TRUE}\hlstd{)} +\hlkwd{str}\hlstd{(Meteo01.df,} \hlkwc{max.level} \hlstd{=} \hlnum{2}\hlstd{)} +\end{alltt} +\end{kframe} +\end{knitrout} + +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} +\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{%.>%} + \hlstd{dplyr}\hlopt{::}\hlkwd{transmute}\hlstd{(}\hlkwc{.data} \hlstd{= .,} + \hlkwc{utc.time} \hlstd{=} \hlkwd{as.POSIXct}\hlstd{(utc,} \hlkwc{origin} \hlstd{=} \hlstr{"1970-01-01"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"UTC"}\hlstd{),} + \hlkwc{t_min} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} + \hlkwc{t_mean} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} + \hlkwc{t_max} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{)])} \hlkwb{->} \hlstd{temperature.df} + +\hlstd{Meteo01.df[[}\hlstr{"streams"}\hlstd{]][[}\hlkwd{which}\hlstd{(Meteo01.df}\hlopt{$}\hlstd{id} \hlopt{==} \hlstr{"humidity"}\hlstd{)]]} \hlopt{%.>%} + \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{= .)} \hlopt{%.>%} + \hlstd{dplyr}\hlopt{::}\hlkwd{transmute}\hlstd{(}\hlkwc{.data} \hlstd{= .,} + \hlkwc{utc.time} \hlstd{=} \hlkwd{as.POSIXct}\hlstd{(utc,} \hlkwc{origin} \hlstd{=} \hlstr{"1970-01-01"}\hlstd{,} \hlkwc{tz} \hlstd{=} \hlstr{"UTC"}\hlstd{),} + \hlkwc{hr_min} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} + \hlkwc{hr_mean} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{,} \hlnum{FALSE}\hlstd{)],} + \hlkwc{hr_max} \hlstd{=} \hlkwd{unlist}\hlstd{(val)[}\hlkwd{c}\hlstd{(}\hlnum{FALSE}\hlstd{,} \hlnum{FALSE}\hlstd{,} \hlnum{TRUE}\hlstd{)])} \hlkwb{->} \hlstd{humidity.df} + +\hlkwd{full_join}\hlstd{(temperature.df, humidity.df)} +\end{alltt} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +Most YoctoPuce input modules have a built-in datalogger, and the stored data can also be downloaded as a \code{CSV} file through a physical or virtual hub. As shown above, it is possible to control them through the HTML server in the physical or virtual hubs. Alternatively the \Rlang package \pkgname{reticulate} can be used to control YoctoPuce modules by means of the \langname{Python} library giving access to their API. +\end{explainbox} +\index{importing data!physical devices|)} + +\section{Databases}\label{sec:data:db} +\index{importing data!databases|(} + + + + +One of the advantages of using databases is that subsets of cases and variables can be retrieved, even remotely, making it possible to work in \Rlang both locally and remotely with huge data sets. One should remember that \Rlang natively keeps whole objects in RAM, and consequently, available machine memory limits the size of data sets with which it is possible to work. Package \pkgname{dbplyr} provides the tools to work with data in databases using the same verbs as when using \pkgname{dplyr} with data stored in memory (RAM) (see chapter \ref{chap:R:data}). This is an important subject, but extensive enough to be outside the scope of this book. We provide a few simple examples to show the very basics but interested readers should consult \citebooktitle{Wickham2017} \autocite{Wickham2017}. + +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} +\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{)} +\hlkwd{copy_to}\hlstd{(con, weather_wk_25_2019.tb,} \hlstr{"weather"}\hlstd{,} + \hlkwc{temporary} \hlstd{=} \hlnum{FALSE}\hlstd{,} + \hlkwc{indexes} \hlstd{=} \hlkwd{list}\hlstd{(} + \hlkwd{c}\hlstd{(}\hlstr{"month_name"}\hlstd{,} \hlstr{"calendar_year"}\hlstd{,} \hlstr{"solar_time"}\hlstd{),} + \hlstr{"time"}\hlstd{,} + \hlstr{"sun_elevation"}\hlstd{,} + \hlstr{"was_sunny"}\hlstd{,} + \hlstr{"day_of_year"}\hlstd{,} + \hlstr{"month_of_year"} + \hlstd{)} +\hlstd{)} +\hlstd{weather.db} \hlkwb{<-} \hlkwd{tbl}\hlstd{(con,} \hlstr{"weather"}\hlstd{)} +\hlkwd{colnames}\hlstd{(weather.db)} +\end{alltt} +\begin{verbatim} +## [1] "time" "PAR_umol" "PAR_diff_fr" "global_watt" +## [5] "day_of_year" "month_of_year" "month_name" "calendar_year" +## [9] "solar_time" "sun_elevation" "sun_azimuth" "was_sunny" +## [13] "wind_speed" "wind_direction" "air_temp_C" "air_RH" +## [17] "air_DP" "air_pressure" "red_umol" "far_red_umol" +## [21] "red_far_red" +\end{verbatim} +\begin{alltt} +\hlstd{weather.db} \hlopt{%.>%} + \hlkwd{filter}\hlstd{(., sun_elevation} \hlopt{>} \hlnum{5}\hlstd{)} \hlopt{%.>%} + \hlkwd{group_by}\hlstd{(., day_of_year)} \hlopt{%.>%} + \hlkwd{summarise}\hlstd{(.,} \hlkwc{energy_Wh} \hlstd{=} \hlkwd{sum}\hlstd{(global_watt,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{*} \hlnum{60} \hlopt{/} \hlnum{3600}\hlstd{)} +\end{alltt} +\begin{verbatim} +## # Source: lazy query [?? x 2] +## # Database: sqlite 3.30.1 [:memory:] +## day_of_year energy_Wh +## <dbl> <dbl> +## 1 162 7500. +## 2 163 6660. +## 3 164 3958. +## # ... with more rows +\end{verbatim} +\end{kframe} +\end{knitrout} + +\begin{explainbox} +Package \pkgname{dbplyr} translates data pipes that use \pkgname{dplyr} syntax into SQL queries to databases, either local or remote. As long as there are no problems with the backend, the use of a database is almost transparent to the \Rlang user. +\end{explainbox} +\index{importing data!databases|)} + +\begin{infobox} +It is always good to clean up, and in the case of the book, the best way to test that the examples +can be run in a ``clean'' system. + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} +\end{alltt} +\end{kframe} +\end{knitrout} +\end{infobox} + +\section{Further reading} +Since\index{further reading!elegant R code}\index{further reading!idiosyncracies or R} this is the end of the book, I recommend as further reading the writings of \citeauthor{Burns1998} as they are full of insight. Having arrived at the end of \emph{Learn R \ldots as your mother tongue} you should read \citebooktitle{Burns1998} \autocite{Burns1998} and \citebooktitle{Burns2012} \autocite{Burns2012}. If you want to never get caught unaware by \Rlang's idiosyncrasies, read also \citebooktitle{Burns2011} \autocite{Burns2011}. + + + + + +\backmatter + +\printbibliography + +\printindex + +\printindex[rcatsidx] + +\printindex[rindex] + +\end{document} + +\appendix + +\chapter{Build information} + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{Sys.info}\hlstd{()} +\end{alltt} +\begin{verbatim} +## sysname release version nodename machine +## "Windows" "10 x64" "build 18363" "CARBONILLA" "x86-64" +## login user effective_user +## "Aphalo" "Aphalo" "Aphalo" +\end{verbatim} +\end{kframe} +\end{knitrout} + + + +\begin{knitrout}\footnotesize +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} +\begin{alltt} +\hlkwd{sessionInfo}\hlstd{()} +\end{alltt} +\begin{verbatim} +## R version 3.6.3 (2020-02-29) +## Platform: x86_64-w64-mingw32/x64 (64-bit) +## Running under: Windows 10 x64 (build 18363) +## +## Matrix products: default +## +## locale: +## [1] LC_COLLATE=English_Finland.1252 LC_CTYPE=English_Finland.1252 +## [3] LC_MONETARY=English_Finland.1252 LC_NUMERIC=C +## [5] LC_TIME=English_Finland.1252 +## +## attached base packages: +## [1] tools stats graphics grDevices utils datasets methods +## [8] base +## +## other attached packages: +## [1] XML_3.99-0.3 pdftools_2.3 readODS_1.6.7 patchwork_1.0.0 +## [5] forcats_0.5.0 purrr_0.3.3 svglite_1.2.3 knitr_1.28 +## +## loaded via a namespace (and not attached): +## [1] ggbeeswarm_0.6.0 colorspace_1.4-1 ellipsis_0.3.0 +## [4] class_7.3-15 fs_1.3.2 rstudioapi_0.11 +## [7] farver_2.0.3 hexbin_1.28.1 bit64_0.9-7 +## [10] ggrepel_0.8.2 fansi_0.4.1 lubridate_1.7.4 +## [13] xml2_1.2.5 splines_3.6.3 ncdf4_1.17 +## [16] polyclip_1.10-0 polynom_1.4-0 jsonlite_1.6.1 +## [19] gginnards_0.0.3 rematch_1.0.1 rJava_0.9-12 +## [22] broom_0.5.5 dbplyr_1.4.2 ggforce_0.3.1 +## [25] readr_1.3.1 compiler_3.6.3 httr_1.4.1 +## [28] backports_1.1.5 assertthat_0.2.1 Matrix_1.2-18 +## [31] cli_2.0.2 tweenr_1.0.1 gtable_0.3.0 +## [34] glue_1.3.2 dplyr_0.8.5 Rcpp_1.0.4 +## [37] tikzDevice_0.12.3 cellranger_1.1.0 RNetCDF_2.1-1 +## [40] vctrs_0.2.4 filehash_2.4-2 nlme_3.1-145 +## [43] xfun_0.12 stringr_1.4.0 xlsxjars_0.6.1 +## [46] rvest_0.3.5 lifecycle_0.2.0 ncmeta_0.2.0 +## [49] tidync_0.2.3 xlsx_0.6.3 MASS_7.3-51.5 +## [52] scales_1.1.0 hms_0.5.3 tidyverse_1.3.0 +## [55] RColorBrewer_1.1-2 curl_4.3 memoise_1.1.0 +## [58] gridExtra_2.3 ggplot2_3.3.0 ggpmisc_0.3.3 +## [61] gdtools_0.2.1 RSQLite_2.2.0 stringi_1.4.6 +## [64] highr_0.8 e1071_1.7-3 learnrbook_0.0.2.9002 +## [67] rlang_0.4.5 pkgconfig_2.0.3 systemfonts_0.1.1 +## [70] evaluate_0.14 lattice_0.20-38 sf_0.9-0 +## [73] labeling_0.3 bit_1.1-15.2 tidyselect_1.0.0 +## [76] magrittr_1.5 wrapr_2.0.0 R6_2.4.1 +## [79] magick_2.3 generics_0.0.2 DBI_1.1.0 +## [82] pillar_1.4.3 haven_2.2.0 foreign_0.8-76 +## [85] withr_2.1.2 mgcv_1.8-31 units_0.6-6 +## [88] tibble_3.0.0 modelr_0.1.6 crayon_1.3.4 +## [91] KernSmooth_2.23-16 utf8_1.1.4 grid_3.6.3 +## [94] readxl_1.3.1 isoband_0.2.0 blob_1.2.1 +## [97] qpdf_1.1 reprex_0.3.0 digest_0.6.25 +## [100] classInt_0.4-2 tidyr_1.0.2 munsell_0.5.0 +## [103] beeswarm_0.2.3 viridisLite_0.3.0 vipor_0.4.5 +## [106] askpass_1.1 +\end{verbatim} +\end{kframe} +\end{knitrout} + +\end{document} + + diff --git a/using-r-main-crc.Rnw b/using-r-main-crc.Rnw index 360aa3d4..4a68cfd3 100644 --- a/using-r-main-crc.Rnw +++ b/using-r-main-crc.Rnw @@ -43,6 +43,11 @@ \renewcommand{\dbltopfraction}{0.90} \renewcommand{\dblfloatpagefraction}{0.70} +% ensure page numbers are aligned in TOC +\makeatletter +\renewcommand{\@pnumwidth}{2.05em} +\makeatother + \addbibresource{rbooks.bib} \addbibresource{references.bib} @@ -51,6 +56,7 @@ \makeindex[name=rcatsidx,title=Index of \Rlang names by category] \begin{document} +\hyphenation{pro-cess-ing paren-the-ses spe-cif-ic au-thors in-ter-act-ed lim-it} \title{\Huge{\fontseries{ub}\sffamily Learn R\\{\Large\ldots\ as You Learned Your Mother Tongue}}} @@ -69,7 +75,7 @@ library(svglite) 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='pdf', dev.args=list(family='ArialMT'), cache=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') # options(replace.assign=TRUE,width=70,tidy.opts=list(blank=FALSE)) @ diff --git a/using-r-main-crc.idx b/using-r-main-crc.idx index 52d9d6f4..e2bf1ece 100644 --- a/using-r-main-crc.idx +++ b/using-r-main-crc.idx @@ -39,7 +39,7 @@ \indexentry{languages!Pascal@\textsf {Pascal}}{3} \indexentry{C++@\textsf {C++}}{3} \indexentry{languages!C++@\textsf {C++}}{3} -\indexentry{R as a computer program@{\Rpgrm as a computer program}}{3} +\indexentry{R as a program@{\Rpgrm as a program}}{3} \indexentry{Windows@{\textsf{Windows}}|see{MS-Windows@{\textsf{MS-Windows}}}}{3} \indexentry{Linux@\textsf {Linux}}{3} \indexentry{operating systems!Linux@\textsf {Linux}}{3} @@ -73,7 +73,7 @@ \indexentry{MS-Windows@\textsf {MS-Windows}}{7} \indexentry{operating systems!MS-Windows@\textsf {MS-Windows}}{7} \indexentry{integrated development environment}{7} -\indexentry{IDE|see{ntegrated development environment}}{7} +\indexentry{IDE|see{integrated development environment}}{7} \indexentry{RStudio@\textsf {RStudio}}{7} \indexentry{programmes!RStudio@\textsf {RStudio}}{7} \indexentry{RStudio@\textsf {RStudio}}{7} @@ -119,12 +119,12 @@ \indexentry{programmes!RStudio@\textsf {RStudio}}{9} \indexentry{RStudio@\textsf {RStudio}}{9} \indexentry{programmes!RStudio@\textsf {RStudio}}{9} -\indexentry{knitr@\textsf {`knitr'}}{9} -\indexentry{packages!knitr@\textsf {`knitr'}}{9} -\indexentry{Latex@{\LaTeX}}{9} -\indexentry{languages!Latex@{\LaTeX}}{9} +\indexentry{knitr@\textsf {`knitr'}}{10} +\indexentry{packages!knitr@\textsf {`knitr'}}{10} +\indexentry{Latex@{\LaTeX}}{10} +\indexentry{languages!Latex@{\LaTeX}}{10} \indexentry{reproducible data analysis|)}{10} -\indexentry{R!help@{\Rlang!help}}{11} +\indexentry{R@{\Rlang}!help}{11} \indexentry{RStudio@\textsf {RStudio}}{11} \indexentry{programmes!RStudio@\textsf {RStudio}}{11} \indexentry{RStudio@\textsf {RStudio}}{11} @@ -176,10 +176,10 @@ \indexentry{packages!learnrbook@\textsf {`learnrbook'}}{14} \indexentry{learnrbook@\textsf {`learnrbook'}}{14} \indexentry{packages!learnrbook@\textsf {`learnrbook'}}{14} -\indexentry{Git@\textsf {Git}}{14} -\indexentry{programmes!Git@\textsf {Git}}{14} -\indexentry{RStudio@\textsf {RStudio}}{14} -\indexentry{programmes!RStudio@\textsf {RStudio}}{14} +\indexentry{Git@\textsf {Git}}{15} +\indexentry{programmes!Git@\textsf {Git}}{15} +\indexentry{RStudio@\textsf {RStudio}}{15} +\indexentry{programmes!RStudio@\textsf {RStudio}}{15} \indexentry{further reading!shell scripts in Unix and Linux}{15} \indexentry{Linux@\textsf {Linux}}{15} \indexentry{programmes!Linux@\textsf {Linux}}{15} @@ -312,8 +312,7 @@ \indexentry{factors|)}{61} \indexentry{lists|(}{62} \indexentry{lists!member extraction|(}{62} -\indexentry{lists!member indexing|see{member extraction}}{62} -\indexentry{lists!indexes|see{member extraction}}{62} +\indexentry{lists!member indexing|see{lists!member extraction}}{62} \indexentry{C@\textsf {C}}{63} \indexentry{languages!C@\textsf {C}}{63} \indexentry{lists!member extraction|)}{63} @@ -435,7 +434,6 @@ \indexentry{object names}{113} \indexentry{object names!as character strings}{113} \indexentry{further reading!the R language}{116} -\indexentry{functions!built-in|see {functions, base-R}}{117} \indexentry{functions!base R}{117} \indexentry{summaries!statistical}{117} \indexentry{distributions|(}{118} @@ -443,10 +441,12 @@ \indexentry{distributions!density from parameters}{119} \indexentry{distributions!probabilities from quantiles}{120} \indexentry{distributions!quantiles from probabilities}{120} +\indexentry{random draws|see{distributions!pseudo-random draws}}{121} \indexentry{distributions!pseudo-random draws}{121} \indexentry{random numbers|see{pseudo-random numbers}}{122} +\indexentry{pseudo-random numbers}{122} \indexentry{random sampling|see{pseudo-random sampling}}{122} -\indexentry{distributions!pseudo-random sampling}{122} +\indexentry{pseudo-random sampling}{122} \indexentry{distributions|)}{123} \indexentry{correlation|(}{123} \indexentry{correlation!parametric}{123} @@ -458,15 +458,13 @@ \indexentry{models!linear|see{linear models}}{125} \indexentry{linear models|(}{125} \indexentry{LM|see{linear models}}{125} -\indexentry{linear regression}{126} -\indexentry{linear regression|seealso{linear models}}{126} +\indexentry{linear regression|see{linear models!linear regression}}{126} \indexentry{linear models!linear regression}{126} \indexentry{linear models!ANOVA table}{126} \indexentry{linear models!summary table}{127} \indexentry{linear models!polynomial regression}{129} \indexentry{polynomial regression}{129} -\indexentry{analysis of variance}{133} -\indexentry{analysis of variance|seealso{linear models}}{133} +\indexentry{analysis of variance|see{linear models!analysis of variance}}{133} \indexentry{linear models!analysis of variance}{133} \indexentry{ANOVA|see{analysis of variance}}{133} \indexentry{SPSS@\textsf {SPSS}}{134} @@ -475,12 +473,11 @@ \indexentry{programmes!SAS@\textsf {SAS}}{134} \indexentry{S@\textsf {S}}{134} \indexentry{languages!S@\textsf {S}}{134} -\indexentry{SPSS@\textsf {SPSS}}{135} -\indexentry{programmes!SPSS@\textsf {SPSS}}{135} -\indexentry{SAS@\textsf {SAS}}{135} -\indexentry{programmes!SAS@\textsf {SAS}}{135} -\indexentry{analysis of covariance}{136} -\indexentry{analysis of covariance|seealso{linear models}}{136} +\indexentry{SPSS@\textsf {SPSS}}{134} +\indexentry{programmes!SPSS@\textsf {SPSS}}{134} +\indexentry{SAS@\textsf {SAS}}{134} +\indexentry{programmes!SAS@\textsf {SAS}}{134} +\indexentry{analysis of covariance|see{linear models!analysis of covariance}}{136} \indexentry{linear models!analysis of covariance}{136} \indexentry{ANCOVA|see{analysis of covariance}}{136} \indexentry{linear models|)}{136} @@ -488,13 +485,13 @@ \indexentry{models!generalized linear|see{generalized linear models}}{136} \indexentry{GLM|see{generalized linear models}}{136} \indexentry{generalized linear models|)}{138} -\indexentry{non-linear models|(}{139} -\indexentry{models!non-linear|see{non-linear models}}{139} -\indexentry{NLS|see{non-linear models}}{139} +\indexentry{non-linear models|(}{138} +\indexentry{models!non-linear|see{non-linear models}}{138} +\indexentry{NLS|see{non-linear models}}{138} \indexentry{self-starting functions}{139} \indexentry{Michaelis-Menten equation}{139} \indexentry{chemical reaction kinetics}{139} -\indexentry{models!selfstart@{\texttt{selfStart}}}{140} +\indexentry{models!selfstart@{\texttt{selfStart}}}{139} \indexentry{non-linear models|)}{141} \indexentry{model formulas|(}{141} \indexentry{analysis of variance!model formula}{144} @@ -800,339 +797,339 @@ \indexentry{packages!ggtern@\textsf {`ggtern'}}{204} \indexentry{grammar of graphics!themes}{204} \indexentry{grammar of graphics!elements|)}{204} -\indexentry{grammar of graphics!plot construction|(}{204} -\indexentry{gginnards@\textsf {`gginnards'}}{206} -\indexentry{packages!gginnards@\textsf {`gginnards'}}{206} -\indexentry{grammar of graphics!cartesian coordinates}{208} -\indexentry{grammar of graphics!plot construction|)}{211} -\indexentry{grammar of graphics!plots as R objects|(}{211} -\indexentry{grammar of graphics!structure of plot objects|(}{211} +\indexentry{grammar of graphics!plot construction|(}{205} +\indexentry{gginnards@\textsf {`gginnards'}}{207} +\indexentry{packages!gginnards@\textsf {`gginnards'}}{207} +\indexentry{grammar of graphics!cartesian coordinates}{209} +\indexentry{grammar of graphics!plot construction|)}{212} +\indexentry{grammar of graphics!plots as R objects|(}{212} +\indexentry{grammar of graphics!structure of plot objects|(}{212} \indexentry{ggplot2@\textsf {`ggplot2'}}{212} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{212} -\indexentry{grammar of graphics!structure of plot objects|)}{212} -\indexentry{grammar of graphics!plots as R objects|)}{213} -\indexentry{grammar of graphics!mapping of data|(}{213} -\indexentry{magritrr@\textsf {`magritrr'}}{214} -\indexentry{packages!magritrr@\textsf {`magritrr'}}{214} -\indexentry{wrapr@\textsf {`wrapr'}}{214} -\indexentry{packages!wrapr@\textsf {`wrapr'}}{214} -\indexentry{grammar of graphics!mapping of data|)}{214} -\indexentry{grammar of graphics!geometries|(}{214} -\indexentry{ggplot2@\textsf {`ggplot2'}}{214} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{214} -\indexentry{ggplot2@\textsf {`ggplot2'}}{214} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{214} +\indexentry{grammar of graphics!structure of plot objects|)}{213} +\indexentry{grammar of graphics!plots as R objects|)}{214} +\indexentry{grammar of graphics!mapping of data|(}{214} +\indexentry{magritrr@\textsf {`magritrr'}}{215} +\indexentry{packages!magritrr@\textsf {`magritrr'}}{215} +\indexentry{wrapr@\textsf {`wrapr'}}{215} +\indexentry{packages!wrapr@\textsf {`wrapr'}}{215} +\indexentry{grammar of graphics!mapping of data|)}{215} +\indexentry{grammar of graphics!geometries|(}{215} +\indexentry{ggplot2@\textsf {`ggplot2'}}{215} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{215} +\indexentry{ggplot2@\textsf {`ggplot2'}}{215} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{215} \indexentry{grammar of graphics!point geometry|(}{215} \indexentry{plots!scatter plot|(}{215} -\indexentry{scales@\textsf {`scales'}}{216} -\indexentry{packages!scales@\textsf {`scales'}}{216} -\indexentry{plots!scatter plot|)}{217} -\indexentry{plots!dot plot|(}{217} +\indexentry{scales@\textsf {`scales'}}{217} +\indexentry{packages!scales@\textsf {`scales'}}{217} +\indexentry{plots!scatter plot|)}{218} +\indexentry{plots!dot plot|(}{218} \indexentry{plots!dot plot|)}{218} \indexentry{plots!bubble plot|(}{218} -\indexentry{plots!bubble plot|)}{218} -\indexentry{grammar of graphics!point geometry|)}{219} -\indexentry{plots!rug marging|(}{219} +\indexentry{plots!bubble plot|)}{219} +\indexentry{grammar of graphics!point geometry|)}{220} +\indexentry{plots!rug marging|(}{220} \indexentry{plots!rug marging|)}{220} -\indexentry{grammar of graphics!various line and path geometries|(}{220} -\indexentry{plots!line plot|(}{220} -\indexentry{plots!line plot|)}{220} -\indexentry{plots!step plot|(}{220} +\indexentry{grammar of graphics!various line and path geometries|(}{221} +\indexentry{plots!line plot|(}{221} +\indexentry{plots!line plot|)}{221} +\indexentry{plots!step plot|(}{221} \indexentry{plots!step plot|)}{221} -\indexentry{plots!filled-area plot|(}{221} +\indexentry{plots!filled-area plot|(}{222} \indexentry{plots!filled-area plot|)}{222} \indexentry{plots!reference lines|(}{222} -\indexentry{plots!reference lines|)}{222} -\indexentry{grammar of graphics!various line and path geometries|)}{222} +\indexentry{plots!reference lines|)}{223} +\indexentry{grammar of graphics!various line and path geometries|)}{223} \indexentry{grammar of graphics!column geometry|(}{223} \indexentry{plots!column plot|(}{223} \indexentry{ggplot2@\textsf {`ggplot2'}}{223} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{223} -\indexentry{grammar of graphics!column geometry|)}{224} -\indexentry{plots!column plot|)}{224} -\indexentry{grammar of graphics!tile geometry|(}{224} -\indexentry{plots!tile plot|(}{224} +\indexentry{grammar of graphics!column geometry|)}{225} +\indexentry{plots!column plot|)}{225} +\indexentry{grammar of graphics!tile geometry|(}{225} +\indexentry{plots!tile plot|(}{225} \indexentry{plots!tile plot|)}{226} \indexentry{grammar of graphics!tile geometry|)}{226} -\indexentry{grammar of graphics!sf geometries|(}{226} -\indexentry{plots!maps and spatial plots|(}{226} -\indexentry{ggplot2@\textsf {`ggplot2'}}{226} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{226} -\indexentry{sf@\textsf {`sf'}}{226} -\indexentry{packages!sf@\textsf {`sf'}}{226} -\indexentry{grammar of graphics!sf geometries|)}{226} -\indexentry{plots!maps and spatial plots|)}{226} -\indexentry{grammar of graphics!text and label geometries|(}{226} -\indexentry{plots!text in|(}{226} -\indexentry{plots!maths in|(}{226} +\indexentry{grammar of graphics!sf geometries|(}{227} +\indexentry{plots!maps and spatial plots|(}{227} \indexentry{ggplot2@\textsf {`ggplot2'}}{227} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{227} -\indexentry{plots!fonts}{227} -\indexentry{ggplot2@\textsf {`ggplot2'}}{227} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{227} -\indexentry{UNICODE}{227} -\indexentry{UTF8}{227} -\indexentry{portability}{227} +\indexentry{sf@\textsf {`sf'}}{227} +\indexentry{packages!sf@\textsf {`sf'}}{227} +\indexentry{grammar of graphics!sf geometries|)}{227} +\indexentry{plots!maps and spatial plots|)}{227} +\indexentry{grammar of graphics!text and label geometries|(}{227} +\indexentry{plots!text in|(}{227} +\indexentry{plots!maths in|(}{227} +\indexentry{ggplot2@\textsf {`ggplot2'}}{228} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{228} +\indexentry{plots!fonts}{228} +\indexentry{ggplot2@\textsf {`ggplot2'}}{228} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{228} +\indexentry{UNICODE}{228} +\indexentry{UTF8}{228} +\indexentry{portability}{228} \indexentry{showtext@\textsf {`showtext'}}{228} \indexentry{packages!showtext@\textsf {`showtext'}}{228} \indexentry{extrafont@\textsf {`extrafont'}}{228} \indexentry{packages!extrafont@\textsf {`extrafont'}}{228} -\indexentry{grammar of graphics!text and label geometries!repulsive}{230} -\indexentry{ggrepel@\textsf {`ggrepel'}}{230} -\indexentry{packages!ggrepel@\textsf {`ggrepel'}}{230} -\indexentry{plots!maths in|)}{231} -\indexentry{plots!text in|)}{231} -\indexentry{grammar of graphics!text and label geometries|)}{231} -\indexentry{grammar of graphics!inset-related geometries|(}{231} -\indexentry{plots!insets|(}{231} -\indexentry{ggplot2@\textsf {`ggplot2'}}{231} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{231} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{231} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{231} -\indexentry{plots!inset tables|(}{231} -\indexentry{tibble@\textsf {`tibble'}}{231} -\indexentry{packages!tibble@\textsf {`tibble'}}{231} -\indexentry{tidyverse@\textsf {`tidyverse'}}{231} -\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{231} -\indexentry{gridExtra@\textsf {`gridExtra'}}{232} -\indexentry{packages!gridExtra@\textsf {`gridExtra'}}{232} -\indexentry{plots!inset tables|)}{233} -\indexentry{plots!inset plots|(}{233} -\indexentry{ggplot2@\textsf {`ggplot2'}}{234} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{234} -\indexentry{plots!inset plots|)}{234} -\indexentry{plots!inset graphical objects|(}{234} -\indexentry{grid@\textsf {`grid'}}{234} -\indexentry{packages!grid@\textsf {`grid'}}{234} -\indexentry{grid@\textsf {`grid'}}{234} -\indexentry{packages!grid@\textsf {`grid'}}{234} -\indexentry{plots!inset graphical objects|)}{235} -\indexentry{grid graphics coordinate systems}{235} -\indexentry{ggplot2@\textsf {`ggplot2'}}{235} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{235} -\indexentry{lattice@\textsf {`lattice'}}{235} -\indexentry{packages!lattice@\textsf {`lattice'}}{235} +\indexentry{grammar of graphics!text and label geometries!repulsive}{231} +\indexentry{ggrepel@\textsf {`ggrepel'}}{231} +\indexentry{packages!ggrepel@\textsf {`ggrepel'}}{231} +\indexentry{plots!maths in|)}{232} +\indexentry{plots!text in|)}{232} +\indexentry{grammar of graphics!text and label geometries|)}{232} +\indexentry{grammar of graphics!inset-related geometries|(}{232} +\indexentry{plots!insets|(}{232} +\indexentry{ggplot2@\textsf {`ggplot2'}}{232} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{232} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{232} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{232} +\indexentry{plots!inset tables|(}{232} +\indexentry{tibble@\textsf {`tibble'}}{232} +\indexentry{packages!tibble@\textsf {`tibble'}}{232} +\indexentry{tidyverse@\textsf {`tidyverse'}}{232} +\indexentry{packages!tidyverse@\textsf {`tidyverse'}}{232} +\indexentry{gridExtra@\textsf {`gridExtra'}}{233} +\indexentry{packages!gridExtra@\textsf {`gridExtra'}}{233} +\indexentry{plots!inset tables|)}{234} +\indexentry{plots!inset plots|(}{234} \indexentry{ggplot2@\textsf {`ggplot2'}}{235} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{235} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{235} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{235} -\indexentry{grammar of graphics!inset-related geometries|)}{236} -\indexentry{plots!insets|)}{236} -\indexentry{grammar of graphics!geometries|)}{236} -\indexentry{grammar of graphics!statistics|(}{236} +\indexentry{plots!inset plots|)}{235} +\indexentry{plots!inset graphical objects|(}{235} +\indexentry{grid@\textsf {`grid'}}{235} +\indexentry{packages!grid@\textsf {`grid'}}{235} +\indexentry{grid@\textsf {`grid'}}{235} +\indexentry{packages!grid@\textsf {`grid'}}{235} +\indexentry{plots!inset graphical objects|)}{236} +\indexentry{grid graphics coordinate systems}{236} \indexentry{ggplot2@\textsf {`ggplot2'}}{236} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{236} -\indexentry{grammar of graphics!function statistic|(}{236} -\indexentry{plots!plots of functions|(}{236} -\indexentry{plots!plots of functions|)}{237} -\indexentry{grammar of graphics!function statistic|)}{237} -\indexentry{grammar of graphics!summary statistic|(}{237} -\indexentry{plots!data summaries|(}{237} -\indexentry{plots!means}{237} -\indexentry{plots!medians}{237} -\indexentry{plots!error bars}{237} -\indexentry{ggplot2@\textsf {`ggplot2'}}{239} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{239} -\indexentry{Hmisc@\textsf {`Hmisc'}}{239} -\indexentry{packages!Hmisc@\textsf {`Hmisc'}}{239} -\indexentry{plots!data summaries|)}{240} -\indexentry{grammar of graphics!summary statistic|)}{240} -\indexentry{plots!smooth curves|(}{240} -\indexentry{plots!fitted curves|(}{240} -\indexentry{plots!statistics!smooth}{240} -\indexentry{self-starting functions}{242} -\indexentry{ggpmisc@\textsf {`ggpmisc'}}{242} -\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{242} +\indexentry{lattice@\textsf {`lattice'}}{236} +\indexentry{packages!lattice@\textsf {`lattice'}}{236} +\indexentry{ggplot2@\textsf {`ggplot2'}}{236} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{236} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{236} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{236} +\indexentry{grammar of graphics!inset-related geometries|)}{237} +\indexentry{plots!insets|)}{237} +\indexentry{grammar of graphics!geometries|)}{237} +\indexentry{grammar of graphics!statistics|(}{237} +\indexentry{ggplot2@\textsf {`ggplot2'}}{237} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{237} +\indexentry{grammar of graphics!function statistic|(}{237} +\indexentry{plots!plots of functions|(}{237} +\indexentry{plots!plots of functions|)}{238} +\indexentry{grammar of graphics!function statistic|)}{238} +\indexentry{grammar of graphics!summary statistic|(}{238} +\indexentry{plots!data summaries|(}{238} +\indexentry{plots!means}{238} +\indexentry{plots!medians}{238} +\indexentry{plots!error bars}{238} +\indexentry{ggplot2@\textsf {`ggplot2'}}{240} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{240} +\indexentry{Hmisc@\textsf {`Hmisc'}}{240} +\indexentry{packages!Hmisc@\textsf {`Hmisc'}}{240} +\indexentry{plots!data summaries|)}{241} +\indexentry{grammar of graphics!summary statistic|)}{241} +\indexentry{plots!smooth curves|(}{241} +\indexentry{plots!fitted curves|(}{241} +\indexentry{plots!statistics!smooth}{241} +\indexentry{self-starting functions}{243} \indexentry{ggpmisc@\textsf {`ggpmisc'}}{243} \indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{243} -\indexentry{plots!smooth curves|)}{243} -\indexentry{plots!fitted curves|)}{243} -\indexentry{plots!histograms|(}{243} -\indexentry{plots!histograms|)}{246} -\indexentry{plots!density plot!1 dimension|(}{246} -\indexentry{plots!statistics!density}{246} -\indexentry{plots!density plot!1 dimension|)}{247} -\indexentry{plots!density plot!2 dimensions|(}{247} -\indexentry{plots!statistics!density 2d}{247} -\indexentry{plots!density plot!2 dimensions|)}{248} -\indexentry{box plots|see{plots, box and whiskers plot}}{248} -\indexentry{plots!box and whiskers plot|(}{248} -\indexentry{plots!box and whiskers plot|)}{249} -\indexentry{plots!violin plot|(}{249} -\indexentry{ggbeeswarm@\textsf {`ggbeeswarm'}}{249} -\indexentry{packages!ggbeeswarm@\textsf {`ggbeeswarm'}}{249} -\indexentry{ggforce@\textsf {`ggforce'}}{249} -\indexentry{packages!ggforce@\textsf {`ggforce'}}{249} -\indexentry{plots!violin plot|)}{250} -\indexentry{grammar of graphics!statistics|)}{250} -\indexentry{grammar of graphics!facets|(}{250} -\indexentry{plots!trellis-like}{250} -\indexentry{plots!coordinated panels}{250} -\indexentry{S@\textsf {S}}{250} -\indexentry{languages!S@\textsf {S}}{250} -\indexentry{lattice@\textsf {`lattice'}}{250} -\indexentry{packages!lattice@\textsf {`lattice'}}{250} -\indexentry{ggplot2@\textsf {`ggplot2'}}{250} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{250} -\indexentry{grammar of graphics!facets|)}{253} -\indexentry{grammar of graphics!scales|(}{253} -\indexentry{ggplot2@\textsf {`ggplot2'}}{254} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{254} -\indexentry{plots!labels|(}{254} -\indexentry{plots!title|(}{254} -\indexentry{plots!subtitle|(}{254} -\indexentry{plots!tag|(}{254} -\indexentry{plots!caption|(}{254} -\indexentry{plots!tag|)}{256} -\indexentry{plots!caption|)}{256} -\indexentry{plots!subtitle|)}{256} -\indexentry{plots!title|)}{256} -\indexentry{plots!labels|)}{256} -\indexentry{grammar of graphics!continuous scales|(}{256} -\indexentry{ggplot2@\textsf {`ggplot2'}}{258} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{258} -\indexentry{plots!scales!tick breaks}{258} -\indexentry{plots!scales!tick labels}{258} -\indexentry{scales@\textsf {`scales'}}{258} -\indexentry{packages!scales@\textsf {`scales'}}{258} +\indexentry{ggpmisc@\textsf {`ggpmisc'}}{244} +\indexentry{packages!ggpmisc@\textsf {`ggpmisc'}}{244} +\indexentry{plots!smooth curves|)}{244} +\indexentry{plots!fitted curves|)}{244} +\indexentry{plots!histograms|(}{245} +\indexentry{plots!histograms|)}{247} +\indexentry{plots!density plot!1 dimension|(}{247} +\indexentry{plots!statistics!density}{247} +\indexentry{plots!density plot!1 dimension|)}{248} +\indexentry{plots!density plot!2 dimensions|(}{248} +\indexentry{plots!statistics!density 2d}{248} +\indexentry{plots!density plot!2 dimensions|)}{249} +\indexentry{box plots|see{plots, box and whiskers plot}}{249} +\indexentry{plots!box and whiskers plot|(}{249} +\indexentry{plots!box and whiskers plot|)}{250} +\indexentry{plots!violin plot|(}{250} +\indexentry{ggbeeswarm@\textsf {`ggbeeswarm'}}{250} +\indexentry{packages!ggbeeswarm@\textsf {`ggbeeswarm'}}{250} +\indexentry{ggforce@\textsf {`ggforce'}}{250} +\indexentry{packages!ggforce@\textsf {`ggforce'}}{250} +\indexentry{plots!violin plot|)}{251} +\indexentry{grammar of graphics!statistics|)}{251} +\indexentry{grammar of graphics!facets|(}{251} +\indexentry{plots!trellis-like}{251} +\indexentry{plots!coordinated panels}{251} +\indexentry{S@\textsf {S}}{251} +\indexentry{languages!S@\textsf {S}}{251} +\indexentry{lattice@\textsf {`lattice'}}{251} +\indexentry{packages!lattice@\textsf {`lattice'}}{251} +\indexentry{ggplot2@\textsf {`ggplot2'}}{251} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{251} +\indexentry{grammar of graphics!facets|)}{254} +\indexentry{grammar of graphics!scales|(}{254} +\indexentry{ggplot2@\textsf {`ggplot2'}}{255} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{255} +\indexentry{plots!labels|(}{255} +\indexentry{plots!title|(}{255} +\indexentry{plots!subtitle|(}{255} +\indexentry{plots!tag|(}{255} +\indexentry{plots!caption|(}{255} +\indexentry{plots!tag|)}{257} +\indexentry{plots!caption|)}{257} +\indexentry{plots!subtitle|)}{257} +\indexentry{plots!title|)}{257} +\indexentry{plots!labels|)}{257} +\indexentry{grammar of graphics!continuous scales|(}{257} +\indexentry{ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{259} +\indexentry{plots!scales!tick breaks}{259} +\indexentry{plots!scales!tick labels}{259} \indexentry{scales@\textsf {`scales'}}{259} \indexentry{packages!scales@\textsf {`scales'}}{259} -\indexentry{plots!scales!transformations}{260} -\indexentry{plots!axis position}{261} -\indexentry{plots!secondary axes}{261} -\indexentry{grammar of graphics!continuous scales|)}{262} -\indexentry{grammar of graphics!time and date scales|(}{262} -\indexentry{lubridate@\textsf {`lubridate'}}{262} -\indexentry{packages!lubridate@\textsf {`lubridate'}}{262} -\indexentry{anytime@\textsf {`anytime'}}{262} -\indexentry{packages!anytime@\textsf {`anytime'}}{262} -\indexentry{plots!scales!axis labels}{262} -\indexentry{grammar of graphics!time and date scales|)}{263} -\indexentry{grammar of graphics!discrete scales|(}{263} -\indexentry{plots!scales!limits}{263} -\indexentry{grammar of graphics!discrete scales|)}{264} -\indexentry{grammar of graphics!size scales|(}{264} -\indexentry{grammar of graphics!size scales|)}{264} -\indexentry{grammar of graphics!color and fill scales|(}{264} -\indexentry{plots!with colors|(}{264} -\indexentry{color!definitions|(}{265} -\indexentry{color!names}{265} -\indexentry{ggplot2@\textsf {`ggplot2'}}{266} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{266} -\indexentry{color!definitions|)}{266} -\indexentry{grammar of graphics!identity color scales|(}{267} -\indexentry{grammar of graphics!identity color scales|)}{267} -\indexentry{plots!with colors|)}{267} -\indexentry{grammar of graphics!color and fill scales|)}{267} -\indexentry{grammar of graphics!scales|)}{267} -\indexentry{grammar of graphics!annotations|(}{267} -\indexentry{plots!insets as annotations|(}{268} -\indexentry{grid@\textsf {`grid'}}{268} -\indexentry{packages!grid@\textsf {`grid'}}{268} -\indexentry{plots!insets as annotations|)}{269} -\indexentry{grammar of graphics!annotations|)}{270} -\indexentry{grammar of graphics!polar coordinates|(}{270} -\indexentry{plots!circular|(}{270} -\indexentry{ggplot2@\textsf {`ggplot2'}}{270} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{270} -\indexentry{plots!wind rose|(}{270} -\indexentry{learnrbook@\textsf {`learnrbook'}}{271} -\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{271} -\indexentry{plots!wind rose|)}{272} -\indexentry{plots!pie charts|(}{272} -\indexentry{plots!pie charts|)}{273} -\indexentry{plots!circular|)}{273} -\indexentry{grammar of graphics!polar coordinates|)}{273} -\indexentry{grammar of graphics!themes|(}{273} -\indexentry{plots!styling|(}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{273} -\indexentry{grammar of graphics!complete themes|(}{273} +\indexentry{scales@\textsf {`scales'}}{260} +\indexentry{packages!scales@\textsf {`scales'}}{260} +\indexentry{plots!scales!transformations}{261} +\indexentry{plots!axis position}{262} +\indexentry{plots!secondary axes}{262} +\indexentry{grammar of graphics!continuous scales|)}{263} +\indexentry{grammar of graphics!time and date scales|(}{263} +\indexentry{lubridate@\textsf {`lubridate'}}{263} +\indexentry{packages!lubridate@\textsf {`lubridate'}}{263} +\indexentry{anytime@\textsf {`anytime'}}{263} +\indexentry{packages!anytime@\textsf {`anytime'}}{263} +\indexentry{plots!scales!axis labels}{263} +\indexentry{grammar of graphics!time and date scales|)}{264} +\indexentry{grammar of graphics!discrete scales|(}{264} +\indexentry{plots!scales!limits}{264} +\indexentry{grammar of graphics!discrete scales|)}{265} +\indexentry{grammar of graphics!size scales|(}{265} +\indexentry{grammar of graphics!size scales|)}{265} +\indexentry{grammar of graphics!color and fill scales|(}{266} +\indexentry{plots!with colors|(}{266} +\indexentry{color!definitions|(}{266} +\indexentry{color!names}{266} +\indexentry{ggplot2@\textsf {`ggplot2'}}{267} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{267} +\indexentry{color!definitions|)}{267} +\indexentry{grammar of graphics!identity color scales|(}{268} +\indexentry{grammar of graphics!identity color scales|)}{268} +\indexentry{plots!with colors|)}{268} +\indexentry{grammar of graphics!color and fill scales|)}{268} +\indexentry{grammar of graphics!scales|)}{268} +\indexentry{grammar of graphics!annotations|(}{269} +\indexentry{plots!insets as annotations|(}{270} +\indexentry{grid@\textsf {`grid'}}{270} +\indexentry{packages!grid@\textsf {`grid'}}{270} +\indexentry{plots!insets as annotations|)}{270} +\indexentry{grammar of graphics!annotations|)}{271} +\indexentry{grammar of graphics!polar coordinates|(}{271} +\indexentry{plots!circular|(}{271} +\indexentry{ggplot2@\textsf {`ggplot2'}}{271} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{271} +\indexentry{plots!wind rose|(}{271} +\indexentry{learnrbook@\textsf {`learnrbook'}}{272} +\indexentry{packages!learnrbook@\textsf {`learnrbook'}}{272} +\indexentry{plots!wind rose|)}{273} +\indexentry{plots!pie charts|(}{273} +\indexentry{plots!pie charts|)}{274} +\indexentry{plots!circular|)}{274} +\indexentry{grammar of graphics!polar coordinates|)}{274} +\indexentry{grammar of graphics!themes|(}{274} +\indexentry{plots!styling|(}{274} +\indexentry{ggplot2@\textsf {`ggplot2'}}{274} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} +\indexentry{ggplot2@\textsf {`ggplot2'}}{274} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} \indexentry{ggplot2@\textsf {`ggplot2'}}{274} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{274} -\indexentry{grammar of graphics!complete themes|)}{275} -\indexentry{grammar of graphics!incomplete themes|(}{275} -\indexentry{grammar of graphics!incomplete themes|)}{277} -\indexentry{grammar of graphics!creating a theme|(}{277} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{278} -\indexentry{grammar of graphics!creating a theme|)}{279} -\indexentry{plots!styling|)}{279} -\indexentry{grammar of graphics!themes|)}{279} -\indexentry{plots!composing|(}{279} -\indexentry{patchwork@\textsf {`patchwork'}}{279} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{279} +\indexentry{grammar of graphics!complete themes|(}{274} +\indexentry{ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{275} +\indexentry{grammar of graphics!complete themes|)}{276} +\indexentry{grammar of graphics!incomplete themes|(}{276} +\indexentry{grammar of graphics!incomplete themes|)}{278} +\indexentry{grammar of graphics!creating a theme|(}{278} +\indexentry{ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{ggplot2@\textsf {`ggplot2'}}{279} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} \indexentry{ggplot2@\textsf {`ggplot2'}}{279} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{279} -\indexentry{patchwork@\textsf {`patchwork'}}{279} -\indexentry{packages!patchwork@\textsf {`patchwork'}}{279} -\indexentry{plots!composing|)}{280} -\indexentry{plotmath}{280} -\indexentry{plots!math expressions|(}{280} -\indexentry{ggplot2@\textsf {`ggplot2'}}{281} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{281} -\indexentry{C@\textsf {C}}{284} -\indexentry{languages!C@\textsf {C}}{284} -\indexentry{C++@\textsf {C++}}{284} -\indexentry{languages!C++@\textsf {C++}}{284} -\indexentry{ggtext@\textsf {`ggtext'}}{285} -\indexentry{packages!ggtext@\textsf {`ggtext'}}{285} -\indexentry{HTML@\textsf {HTML}}{285} -\indexentry{languages!HTML@\textsf {HTML}}{285} -\indexentry{Markdown@\textsf {Markdown}}{285} -\indexentry{languages!Markdown@\textsf {Markdown}}{285} -\indexentry{ggplot2@\textsf {`ggplot2'}}{285} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{285} -\indexentry{plots!math expressions|)}{285} -\indexentry{plots!modular construction|(}{285} -\indexentry{grammar of graphics}{285} -\indexentry{plots!layers}{285} -\indexentry{plots!consistent styling}{286} -\indexentry{plots!programatic construction|(}{286} +\indexentry{grammar of graphics!creating a theme|)}{280} +\indexentry{plots!styling|)}{280} +\indexentry{grammar of graphics!themes|)}{280} +\indexentry{plots!composing|(}{280} +\indexentry{patchwork@\textsf {`patchwork'}}{280} +\indexentry{packages!patchwork@\textsf {`patchwork'}}{280} +\indexentry{ggplot2@\textsf {`ggplot2'}}{280} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{280} +\indexentry{patchwork@\textsf {`patchwork'}}{280} +\indexentry{packages!patchwork@\textsf {`patchwork'}}{280} +\indexentry{plots!composing|)}{281} +\indexentry{plotmath}{281} +\indexentry{plots!math expressions|(}{281} +\indexentry{ggplot2@\textsf {`ggplot2'}}{282} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{282} +\indexentry{C@\textsf {C}}{285} +\indexentry{languages!C@\textsf {C}}{285} +\indexentry{C++@\textsf {C++}}{285} +\indexentry{languages!C++@\textsf {C++}}{285} +\indexentry{ggtext@\textsf {`ggtext'}}{286} +\indexentry{packages!ggtext@\textsf {`ggtext'}}{286} +\indexentry{HTML@\textsf {HTML}}{286} +\indexentry{languages!HTML@\textsf {HTML}}{286} +\indexentry{Markdown@\textsf {Markdown}}{286} +\indexentry{languages!Markdown@\textsf {Markdown}}{286} \indexentry{ggplot2@\textsf {`ggplot2'}}{286} \indexentry{packages!ggplot2@\textsf {`ggplot2'}}{286} -\indexentry{plots!reusing parts of}{286} -\indexentry{plots!programatic construction|)}{288} -\indexentry{plots!modular construction|)}{288} -\indexentry{devices!output|see{graphic output devices}}{288} -\indexentry{plots!saving to file|see{plots, rendering}}{288} -\indexentry{graphic output devices|(}{288} -\indexentry{plots!rendering|(}{288} -\indexentry{RStudio@\textsf {RStudio}}{288} -\indexentry{programmes!RStudio@\textsf {RStudio}}{288} -\indexentry{plots!printing}{288} -\indexentry{plots!saving}{288} -\indexentry{plots!output to files}{288} -\indexentry{RStudio@\textsf {RStudio}}{288} -\indexentry{programmes!RStudio@\textsf {RStudio}}{288} -\indexentry{plots!PDF output}{288} -\indexentry{plots!Postscript output}{288} -\indexentry{plots!SVG output}{288} -\indexentry{plots!bitmap output}{288} -\indexentry{plots!rendering|)}{288} -\indexentry{graphic output devices|)}{288} -\indexentry{further reading!grammar of graphics}{289} -\indexentry{further reading!plotting}{289} -\indexentry{ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{ggplot2@\textsf {`ggplot2'}}{289} -\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{289} +\indexentry{plots!math expressions|)}{286} +\indexentry{plots!modular construction|(}{286} +\indexentry{grammar of graphics}{286} +\indexentry{plots!layers}{286} +\indexentry{plots!consistent styling}{287} +\indexentry{plots!programatic construction|(}{287} +\indexentry{ggplot2@\textsf {`ggplot2'}}{287} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{287} +\indexentry{plots!reusing parts of}{287} +\indexentry{plots!programatic construction|)}{289} +\indexentry{plots!modular construction|)}{289} +\indexentry{devices!output|see{graphic output devices}}{289} +\indexentry{plots!saving to file|see{plots, rendering}}{289} +\indexentry{graphic output devices|(}{289} +\indexentry{plots!rendering|(}{289} +\indexentry{RStudio@\textsf {RStudio}}{289} +\indexentry{programmes!RStudio@\textsf {RStudio}}{289} +\indexentry{plots!printing}{289} +\indexentry{plots!saving}{289} +\indexentry{plots!output to files}{289} +\indexentry{RStudio@\textsf {RStudio}}{289} +\indexentry{programmes!RStudio@\textsf {RStudio}}{289} +\indexentry{plots!PDF output}{289} +\indexentry{plots!Postscript output}{289} +\indexentry{plots!SVG output}{289} +\indexentry{plots!bitmap output}{289} +\indexentry{plots!rendering|)}{289} +\indexentry{graphic output devices|)}{289} +\indexentry{further reading!grammar of graphics}{290} +\indexentry{further reading!plotting}{290} +\indexentry{ggplot2@\textsf {`ggplot2'}}{290} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{290} +\indexentry{ggplot2@\textsf {`ggplot2'}}{290} +\indexentry{packages!ggplot2@\textsf {`ggplot2'}}{290} \indexentry{foreign@\textsf {`foreign'}}{291} \indexentry{packages!foreign@\textsf {`foreign'}}{291} \indexentry{learnrbook@\textsf {`learnrbook'}}{293} @@ -1166,13 +1163,13 @@ \indexentry{programmes!MS-Excel@\textsf {MS-Excel}}{298} \indexentry{tools@\textsf {`tools'}}{298} \indexentry{packages!tools@\textsf {`tools'}}{298} -\indexentry{utils@\textsf {`utils'}}{298} -\indexentry{packages!utils@\textsf {`utils'}}{298} -\indexentry{text files!with field markers}{298} -\indexentry{FORTRAN@\textsf {FORTRAN}}{298} -\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{298} -\indexentry{COBOL@\textsf {COBOL}}{298} -\indexentry{languages!COBOL@\textsf {COBOL}}{298} +\indexentry{utils@\textsf {`utils'}}{299} +\indexentry{packages!utils@\textsf {`utils'}}{299} +\indexentry{text files!with field markers}{299} +\indexentry{FORTRAN@\textsf {FORTRAN}}{299} +\indexentry{languages!FORTRAN@\textsf {FORTRAN}}{299} +\indexentry{COBOL@\textsf {COBOL}}{299} +\indexentry{languages!COBOL@\textsf {COBOL}}{299} \indexentry{utils@\textsf {`utils'}}{300} \indexentry{packages!utils@\textsf {`utils'}}{300} \indexentry{text files!fixed width fields}{301} diff --git a/using-r-main-crc.ilg b/using-r-main-crc.ilg index ba321077..fb0c2b73 100644 --- a/using-r-main-crc.ilg +++ b/using-r-main-crc.ilg @@ -1,18 +1,24 @@ -This is makeindex, version 2.15 [MiKTeX 2.9.7250 64-bit] (kpathsea + Thai support). +This is makeindex, version 2.15 [MiKTeX 2.9.7300 64-bit] (kpathsea + Thai support). Scanning input file using-r-main-crc.idx.... !! Input index error (file = using-r-main-crc.idx, line = 43): -- Extra `@' at position 42 of first argument. -.done (1429 entries accepted, 1 rejected). -Sorting entries...............done (16952 comparisons). -Generating output file using-r-main-crc.ind.... -## Warning (input = using-r-main-crc.idx, line = 483; output = using-r-main-crc.ind, line = 6): - -- Conflicting entries: multiple encaps for the same page under same key. -## Warning (input = using-r-main-crc.idx, line = 469; output = using-r-main-crc.ind, line = 7): - -- Conflicting entries: multiple encaps for the same page under same key. +!! Input index error (file = using-r-main-crc.idx, line = 315): + -- Extra `!' at position 32 of first argument. -## Warning (input = using-r-main-crc.idx, line = 462; output = using-r-main-crc.ind, line = 305): - -- Conflicting entries: multiple encaps for the same page under same key. -.done (740 lines written, 3 warnings). +!! Input index error (file = using-r-main-crc.idx, line = 444): + -- Extra `!' at position 31 of first argument. + +!! Input index error (file = using-r-main-crc.idx, line = 461): + -- Extra `!' at position 36 of first argument. + +!! Input index error (file = using-r-main-crc.idx, line = 467): + -- Extra `!' at position 39 of first argument. + +!! Input index error (file = using-r-main-crc.idx, line = 480): + -- Extra `!' at position 41 of first argument. +.done (1421 entries accepted, 6 rejected). +Sorting entries...............done (16509 comparisons). +Generating output file using-r-main-crc.ind.....done (735 lines written, 0 warnings). Output written in using-r-main-crc.ind. Transcript written in using-r-main-crc.ilg. diff --git a/using-r-main-crc.ind b/using-r-main-crc.ind index 1558fab5..6c1a6f0a 100644 --- a/using-r-main-crc.ind +++ b/using-r-main-crc.ind @@ -3,14 +3,13 @@ \item aesthetics ('ggplot2'), \see{grammar of graphics, aesthetics}{201} \item algebra of sets, 36 - \item analysis of covariance, 136, \seealso{linear models}{136} - \item analysis of variance, 133, \seealso{linear models}{133} + \item analysis of variance \subitem model formula, 144 \item ANCOVA, \see{analysis of covariance}{136} \item annotations ('ggplot2'), \see{grammar of graphics, annotations}{201} \item ANOVA, \see{analysis of variance}{133} - \item \textsf {`anytime'}, 262 + \item \textsf {`anytime'}, 263 \item apply functions, 107 \item arithmetic overflow, 35 \subitem type promotion, 35 @@ -31,12 +30,12 @@ \item \textsf {`blogdown'}, 91 \item \textsf {`bookdown'}, 91 \item Boolean arithmetic, 29 - \item box plots, \see{plots, box and whiskers plot}{248} + \item box plots, \see{plots, box and whiskers plot}{249} \indexspace - \item \textsf {C}, 15, 22, 40, 44, 46, 63, 162, 284, 297 - \item \textsf {C++}, 3, 15, 40, 46, 162, 284 + \item \textsf {C}, 15, 22, 40, 44, 46, 63, 162, 285, 297 + \item \textsf {C++}, 3, 15, 40, 46, 162, 285 \item categorical variables, \see{factors}{56} \item chaining statements with \emph{pipes}, 185--188 \item character escape codes, 41 @@ -50,10 +49,10 @@ \subitem logical, 29--36 \subitem numeric, integer, double, 18--28 \item cluster analysis, 157--159 - \item \textsf {COBOL}, 298 + \item \textsf {COBOL}, 299 \item color - \subitem definitions, 265--266 - \subitem names, 265 + \subitem definitions, 266--267 + \subitem names, 266 \item comparison of floating point numbers, 35--36 \item comparison operators, 31--36 \item compound code statements, 94 @@ -90,13 +89,12 @@ \item \textsf {`dbplyr'}, 190, 323, 324 \item deleting objects, \see {removing objects}{24} \item devices - \subitem output, \see{graphic output devices}{288} + \subitem output, \see{graphic output devices}{289} \item \textsf {`devtools'}, 162 \item distributions, 118--123 \subitem density from parameters, 119 \subitem probabilities from quantiles, 120 \subitem pseudo-random draws, 121 - \subitem pseudo-random sampling, 122 \subitem quantiles from probabilities, 120 \item dot-pipe operator, 187 \item \textsf {`dplyr'}, 178, 179, 186, 189--192, 195, 198, 319, @@ -142,21 +140,20 @@ \item for loop, 100 \item \textsf {`foreign'}, 78, 291, 314, 315, 321 \item formatted character strings from numbers, 43 - \item \textsf {FORTRAN}, 162, 298, 301 + \item \textsf {FORTRAN}, 162, 299, 301 \item function arguments in the tidyverse, 189 \item functions \subitem arguments, 165 \subitem base R, 117 - \subitem built-in, \see {functions, base-R}{117} \subitem defining new, 164, 166 \item further reading \subitem elegant R code, 324 - \subitem grammar of graphics, 289 + \subitem grammar of graphics, 290 \subitem idiosyncracies or R, 324 \subitem new grammars of data, 199 \subitem object oriented programming in R, 175 \subitem package development, 175 - \subitem plotting, 289 + \subitem plotting, 290 \subitem shell scripts in Unix and Linux, 15 \subitem statistics in R, 159 \subitem the R language, 116 @@ -169,59 +166,59 @@ \subitem S3 class system, 172 \item geometries ('ggplot2'), \see{grammar of graphics, geometries}{201} - \item \textsf {`ggbeeswarm'}, 249 - \item \textsf {`ggforce'}, 249 - \item \textsf {`gginnards'}, 206 - \item \textsf {`ggplot2'}, 83, 201--204, 212, 214, 223, 226, 227, - 231, 234--236, 239, 250, 254, 258, 266, 270, 273, 274, - 278, 279, 281, 285, 286, 289 - \item \textsf {`ggpmisc'}, 231, 235, 242, 243 - \item \textsf {`ggrepel'}, 230 + \item \textsf {`ggbeeswarm'}, 250 + \item \textsf {`ggforce'}, 250 + \item \textsf {`gginnards'}, 207 + \item \textsf {`ggplot2'}, 83, 201--204, 212, 215, 223, 227, 228, + 232, 235--237, 240, 251, 255, 259, 267, 271, 274, 275, + 279, 280, 282, 286, 287, 290 + \item \textsf {`ggpmisc'}, 232, 236, 243, 244 + \item \textsf {`ggrepel'}, 231 \item \textsf {`ggtern'}, 204 - \item \textsf {`ggtext'}, 285 - \item \textsf {Git}, 14, 162 + \item \textsf {`ggtext'}, 286 + \item \textsf {Git}, 15, 162 \item GitHub, 162 \item GLM, \see{generalized linear models}{136} \item \textsf {Gnu S}, 2 - \item grammar of graphics, 202, 285 - \subitem annotations, 267--270 - \subitem cartesian coordinates, 202, 208 - \subitem color and fill scales, 264--267 - \subitem column geometry, 223--224 - \subitem complete themes, 273--275 - \subitem continuous scales, 256--262 + \item grammar of graphics, 202, 286 + \subitem annotations, 269--271 + \subitem cartesian coordinates, 202, 209 + \subitem color and fill scales, 266--268 + \subitem column geometry, 223--225 + \subitem complete themes, 274--276 + \subitem continuous scales, 257--263 \subitem coordinates, 204 - \subitem creating a theme, 277--279 + \subitem creating a theme, 278--280 \subitem data, 203 - \subitem discrete scales, 263--264 + \subitem discrete scales, 264--265 \subitem elements, 202--204 - \subitem facets, 250--253 - \subitem function statistic, 236--237 - \subitem geometries, 203, 214--236 - \subitem identity color scales, 267 - \subitem incomplete themes, 275--277 - \subitem inset-related geometries, 231--236 - \subitem mapping of data, 203, 213--214 - \subitem plot construction, 204--211 - \subitem plots as R objects, 211--213 - \subitem point geometry, 215--219 - \subitem polar coordinates, 270--273 - \subitem scales, 204, 253--267 - \subitem sf geometries, 226 - \subitem size scales, 264 - \subitem statistics, 203, 236--250 - \subitem structure of plot objects, 211--212 - \subitem summary statistic, 237--240 - \subitem text and label geometries, 226--231 - \subsubitem repulsive, 230 - \subitem themes, 204, 273--279 - \subitem tile geometry, 224--226 - \subitem time and date scales, 262--263 - \subitem various line and path geometries, 220--222 - \item graphic output devices, 288 - \item \textsf {`grid'}, 201, 234, 268 - \item grid graphics coordinate systems, 235 - \item \textsf {`gridExtra'}, 232 + \subitem facets, 251--254 + \subitem function statistic, 237--238 + \subitem geometries, 203, 215--237 + \subitem identity color scales, 268 + \subitem incomplete themes, 276--278 + \subitem inset-related geometries, 232--237 + \subitem mapping of data, 203, 214--215 + \subitem plot construction, 205--212 + \subitem plots as R objects, 212--214 + \subitem point geometry, 215--220 + \subitem polar coordinates, 271--274 + \subitem scales, 204, 254--268 + \subitem sf geometries, 227 + \subitem size scales, 265 + \subitem statistics, 203, 237--251 + \subitem structure of plot objects, 212--213 + \subitem summary statistic, 238--241 + \subitem text and label geometries, 227--232 + \subsubitem repulsive, 231 + \subitem themes, 204, 274--280 + \subitem tile geometry, 225--226 + \subitem time and date scales, 263--264 + \subitem various line and path geometries, 221--223 + \item graphic output devices, 289 + \item \textsf {`grid'}, 201, 235, 270 + \item grid graphics coordinate systems, 236 + \item \textsf {`gridExtra'}, 233 \item group-wise operations on data, 193--195 \item grouping \subitem implementation in tidyverse, 194 @@ -229,12 +226,12 @@ \indexspace \item \textsf {`haven'}, 314, 315, 321 - \item \textsf {`Hmisc'}, 239 - \item \textsf {HTML}, 285, 308 + \item \textsf {`Hmisc'}, 240 + \item \textsf {HTML}, 286, 308 \indexspace - \item IDE, \see{ntegrated development environment}{7} + \item IDE, \see{integrated development environment}{7} \item IDE for R, 14 \item \textsf {ImageJ}, 14 \item importing data @@ -269,32 +266,32 @@ \indexspace - \item \textsf {`knitr'}, 9, 91 + \item \textsf {`knitr'}, 9, 10, 91 \indexspace \item languages - \subitem \textsf {C}, 15, 22, 40, 44, 46, 63, 162, 284, 297 - \subitem \textsf {C++}, 3, 15, 40, 46, 162, 284 - \subitem \textsf {COBOL}, 298 - \subitem \textsf {FORTRAN}, 162, 298, 301 - \subitem \textsf {HTML}, 285, 308 + \subitem \textsf {C}, 15, 22, 40, 44, 46, 63, 162, 285, 297 + \subitem \textsf {C++}, 3, 15, 40, 46, 162, 285 + \subitem \textsf {COBOL}, 299 + \subitem \textsf {FORTRAN}, 162, 299, 301 + \subitem \textsf {HTML}, 286, 308 \subitem \textsf {Java}, 15, 162 - \subitem {\LaTeX}, 9 - \subitem \textsf {Markdown}, 91, 285 + \subitem {\LaTeX}, 10 + \subitem \textsf {Markdown}, 91, 286 \subitem natural and computer, 18 \subitem \textsf {Pascal}, 3 \subitem \textsf {Python}, 162, 316, 323 \subitem \textsf {Rmarkdown}, 91 - \subitem \textsf {S}, 2, 3, 134, 250 + \subitem \textsf {S}, 2, 3, 134, 251 \subitem \textsf {S-Plus}, 2 \subitem \textsf {XHTML}, 308 \subitem \textsf {XML}, 308, 309 \subitem \textsf {XTML}, 308 \item \LaTeX, 14, 91 - \item {\LaTeX}, 9 - \item \textsf {`lattice'}, 201, 235, 250 - \item \textsf {`learnrbook'}, 14, 201, 271, 293, 323 + \item {\LaTeX}, 10 + \item \textsf {`lattice'}, 201, 236, 251 + \item \textsf {`learnrbook'}, 14, 201, 272, 293, 323 \item linear models, 125--136 \subitem analysis of covariance, 136 \subitem analysis of variance, 133 @@ -302,17 +299,14 @@ \subitem linear regression, 126 \subitem polynomial regression, 129 \subitem summary table, 127 - \item linear regression, 126, \seealso{linear models}{126} \item \textsf {Linux}, 3, 6, 8, 14, 15, 86, 294 \item listing files or directories, 295 \item lists, 62--66 \subitem append to, 63 \subitem convert into vector, 66 \subitem flattening, 65 - \subitem indexes, \see{member extraction}{62} \subitem insert into, 63 \subitem member extraction, 62--63 - \subitem member indexing, \see{member extraction}{62} \subitem nested, 63--65 \subitem structure, 64 \item literate programming, 91 @@ -325,17 +319,17 @@ \subitem faster alternatives, 104--105, 107 \subitem nested, 105 \item loss of numeric precision, 35 - \item \textsf {`lubridate'}, 262, 318 + \item \textsf {`lubridate'}, 263, 318 \indexspace \item machine arithmetic \subitem precision, 33--35 \subitem rounding errors, 33 - \item \textsf {`magritrr'}, 214 + \item \textsf {`magritrr'}, 215 \item \textsf {`magrittr'}, 178, 186, 187 \item MANOVA, \see{multivariate analysis of variance}{151} - \item \textsf {Markdown}, 91, 285 + \item \textsf {Markdown}, 91, 286 \item math functions, 18 \item math operators, 18 \item matrices, 51--56 @@ -355,8 +349,8 @@ \item models \subitem generalized linear, \see{generalized linear models}{136} \subitem linear, \see{linear models}{125} - \subitem non-linear, \see{non-linear models}{139} - \subitem {\texttt{selfStart}}, 140 + \subitem non-linear, \see{non-linear models}{138} + \subitem {\texttt{selfStart}}, 139 \item \textsf {MS-Excel}, 298, 307, 310--312, 321 \item \textsf {MS-Windows}, 3, 6--8, 14, 86, 163, 294, 321, 322 \item multidimensional scaling, 155--157 @@ -374,8 +368,8 @@ \item netiquette, 12 \item network etiquette, 12 \item \textsf {`nlme'}, 144 - \item NLS, \see{non-linear models}{139} - \item non-linear models, 139--141 + \item NLS, \see{non-linear models}{138} + \item non-linear models, 138--141 \item Normal distribution, 118 \item numbers \subitem double, 27 @@ -409,7 +403,7 @@ \indexspace \item packages - \subitem \textsf {`anytime'}, 262 + \subitem \textsf {`anytime'}, 263 \subitem \textsf {`blogdown'}, 91 \subitem \textsf {`bookdown'}, 91 \subitem \textsf {`data.table'}, 165, 178--180 @@ -420,33 +414,33 @@ \subitem \textsf {`dtplyr'}, 190 \subitem \textsf {`extrafont'}, 228 \subitem \textsf {`foreign'}, 78, 291, 314, 315, 321 - \subitem \textsf {`ggbeeswarm'}, 249 - \subitem \textsf {`ggforce'}, 249 - \subitem \textsf {`gginnards'}, 206 - \subitem \textsf {`ggplot2'}, 83, 201--204, 212, 214, 223, - 226, 227, 231, 234--236, 239, 250, 254, 258, 266, 270, - 273, 274, 278, 279, 281, 285, 286, 289 - \subitem \textsf {`ggpmisc'}, 231, 235, 242, 243 - \subitem \textsf {`ggrepel'}, 230 + \subitem \textsf {`ggbeeswarm'}, 250 + \subitem \textsf {`ggforce'}, 250 + \subitem \textsf {`gginnards'}, 207 + \subitem \textsf {`ggplot2'}, 83, 201--204, 212, 215, 223, + 227, 228, 232, 235--237, 240, 251, 255, 259, 267, 271, + 274, 275, 279, 280, 282, 286, 287, 290 + \subitem \textsf {`ggpmisc'}, 232, 236, 243, 244 + \subitem \textsf {`ggrepel'}, 231 \subitem \textsf {`ggtern'}, 204 - \subitem \textsf {`ggtext'}, 285 - \subitem \textsf {`grid'}, 201, 234, 268 - \subitem \textsf {`gridExtra'}, 232 + \subitem \textsf {`ggtext'}, 286 + \subitem \textsf {`grid'}, 201, 235, 270 + \subitem \textsf {`gridExtra'}, 233 \subitem \textsf {`haven'}, 314, 315, 321 - \subitem \textsf {`Hmisc'}, 239 + \subitem \textsf {`Hmisc'}, 240 \subitem \textsf {`jsonlite'}, 322 - \subitem \textsf {`knitr'}, 9, 91 - \subitem \textsf {`lattice'}, 201, 235, 250 - \subitem \textsf {`learnrbook'}, 14, 201, 271, 293, 323 + \subitem \textsf {`knitr'}, 9, 10, 91 + \subitem \textsf {`lattice'}, 201, 236, 251 + \subitem \textsf {`learnrbook'}, 14, 201, 272, 293, 323 \subitem \textsf {`lme4'}, 144 - \subitem \textsf {`lubridate'}, 262, 318 - \subitem \textsf {`magritrr'}, 214 + \subitem \textsf {`lubridate'}, 263, 318 + \subitem \textsf {`magritrr'}, 215 \subitem \textsf {`magrittr'}, 178, 186, 187 \subitem \textsf {`matrixStats'}, 56 \subitem \textsf {`microbenchmark'}, 104 \subitem \textsf {`ncdf4'}, 316, 317, 321 \subitem \textsf {`nlme'}, 144 - \subitem \textsf {`patchwork'}, 279 + \subitem \textsf {`patchwork'}, 280 \subitem \textsf {`pkgdown'}, 91 \subitem \textsf {`Rcpp'}, 162 \subitem \textsf {`readODS'}, 313 @@ -458,110 +452,110 @@ \subitem \textsf {`RJava'}, 162 \subitem \textsf {`RNetCDF'}, 316 \subitem \textsf {`RSQLite'}, 323 - \subitem \textsf {`scales'}, 216, 258, 259 + \subitem \textsf {`scales'}, 217, 259, 260 \subitem \textsf {`seplyr'}, 189, 190 - \subitem \textsf {`sf'}, 226, 309 + \subitem \textsf {`sf'}, 227, 309 \subitem \textsf {`showtext'}, 228 \subitem \textsf {`stats'}, 157 \subitem \textsf {`stringr'}, 191 \subitem \textsf {`Sweave'}, 9, 91 - \subitem \textsf {`tibble'}, 68, 69, 178, 180, 231 + \subitem \textsf {`tibble'}, 68, 69, 178, 180, 232 \subitem \textsf {`tidync'}, 318 \subitem \textsf {`tidyr'}, 188, 190, 195 - \subitem \textsf {`tidyverse'}, 184, 186, 188, 190, 192, 199, 231, + \subitem \textsf {`tidyverse'}, 184, 186, 188, 190, 192, 199, 232, 303, 311 \subitem \textsf {`tools'}, 298 \subitem using, 163 - \subitem \textsf {`utils'}, 298, 300, 306, 307, 321 - \subitem \textsf {`wrapr'}, 178, 187, 214, 319 + \subitem \textsf {`utils'}, 299, 300, 306, 307, 321 + \subitem \textsf {`wrapr'}, 178, 187, 215, 319 \subitem \textsf {`xlsx'}, 312, 320 \subitem \textsf {`xml2'}, 308 \item \textsf {Pascal}, 3 - \item \textsf {`patchwork'}, 279 + \item \textsf {`patchwork'}, 280 \item PCA, \see {principal components analysis}{153} \item pipe operator, 186 \item pipes \subitem tidyverse, 186--187 \subitem wrapr, 187--188 \item \textsf {`pkgdown'}, 91 - \item plotmath, 280 + \item plotmath, 281 \item plots \subitem aesthetics, 203 - \subitem axis position, 261 + \subitem axis position, 262 \subitem base R graphics, 83 - \subitem bitmap output, 288 - \subitem box and whiskers plot, 248--249 - \subitem bubble plot, 218 - \subitem caption, 254--256 - \subitem circular, 270--273 - \subitem column plot, 223--224 - \subitem composing, 279--280 - \subitem consistent styling, 286 - \subitem coordinated panels, 250 - \subitem data summaries, 237--240 + \subitem bitmap output, 289 + \subitem box and whiskers plot, 249--250 + \subitem bubble plot, 218--219 + \subitem caption, 255--257 + \subitem circular, 271--274 + \subitem column plot, 223--225 + \subitem composing, 280--281 + \subitem consistent styling, 287 + \subitem coordinated panels, 251 + \subitem data summaries, 238--241 \subitem density plot - \subsubitem 1 dimension, 246--247 - \subsubitem 2 dimensions, 247--248 - \subitem dot plot, 217--218 - \subitem error bars, 237 - \subitem filled-area plot, 221--222 - \subitem fitted curves, 240--243 - \subitem fonts, 227 - \subitem histograms, 243--246 - \subitem inset graphical objects, 234--235 - \subitem inset plots, 233--234 - \subitem inset tables, 231--233 - \subitem insets, 231--236 - \subitem insets as annotations, 268--269 - \subitem labels, 254--256 - \subitem layers, 285 - \subitem line plot, 220 - \subitem maps and spatial plots, 226 - \subitem math expressions, 280--285 - \subitem maths in, 226--231 - \subitem means, 237 - \subitem medians, 237 - \subitem modular construction, 285--288 - \subitem output to files, 288 - \subitem PDF output, 288 - \subitem pie charts, 272--273 - \subitem plots of functions, 236--237 - \subitem Postscript output, 288 - \subitem printing, 288 - \subitem programatic construction, 286--288 - \subitem reference lines, 222 - \subitem rendering, 288 - \subitem reusing parts of, 286 - \subitem rug marging, 219--220 - \subitem saving, 288 - \subitem saving to file, \see{plots, rendering}{288} + \subsubitem 1 dimension, 247--248 + \subsubitem 2 dimensions, 248--249 + \subitem dot plot, 218 + \subitem error bars, 238 + \subitem filled-area plot, 222 + \subitem fitted curves, 241--244 + \subitem fonts, 228 + \subitem histograms, 245--247 + \subitem inset graphical objects, 235--236 + \subitem inset plots, 234--235 + \subitem inset tables, 232--234 + \subitem insets, 232--237 + \subitem insets as annotations, 270 + \subitem labels, 255--257 + \subitem layers, 286 + \subitem line plot, 221 + \subitem maps and spatial plots, 227 + \subitem math expressions, 281--286 + \subitem maths in, 227--232 + \subitem means, 238 + \subitem medians, 238 + \subitem modular construction, 286--289 + \subitem output to files, 289 + \subitem PDF output, 289 + \subitem pie charts, 273--274 + \subitem plots of functions, 237--238 + \subitem Postscript output, 289 + \subitem printing, 289 + \subitem programatic construction, 287--289 + \subitem reference lines, 222--223 + \subitem rendering, 289 + \subitem reusing parts of, 287 + \subitem rug marging, 220 + \subitem saving, 289 + \subitem saving to file, \see{plots, rendering}{289} \subitem scales - \subsubitem axis labels, 262 - \subsubitem limits, 263 - \subsubitem tick breaks, 258 - \subsubitem tick labels, 258 - \subsubitem transformations, 260 - \subitem scatter plot, 215--217 - \subitem secondary axes, 261 - \subitem smooth curves, 240--243 + \subsubitem axis labels, 263 + \subsubitem limits, 264 + \subsubitem tick breaks, 259 + \subsubitem tick labels, 259 + \subsubitem transformations, 261 + \subitem scatter plot, 215--218 + \subitem secondary axes, 262 + \subitem smooth curves, 241--244 \subitem statistics - \subsubitem density, 246 - \subsubitem density 2d, 247 - \subsubitem smooth, 240 - \subitem step plot, 220--221 - \subitem styling, 273--279 - \subitem subtitle, 254--256 - \subitem SVG output, 288 - \subitem tag, 254--256 - \subitem text in, 226--231 - \subitem tile plot, 224--226 - \subitem title, 254--256 - \subitem trellis-like, 250 - \subitem violin plot, 249--250 - \subitem wind rose, 270--272 - \subitem with colors, 264--267 + \subsubitem density, 247 + \subsubitem density 2d, 248 + \subsubitem smooth, 241 + \subitem step plot, 221 + \subitem styling, 274--280 + \subitem subtitle, 255--257 + \subitem SVG output, 289 + \subitem tag, 255--257 + \subitem text in, 227--232 + \subitem tile plot, 225--226 + \subitem title, 255--257 + \subitem trellis-like, 251 + \subitem violin plot, 250--251 + \subitem wind rose, 271--273 + \subitem with colors, 266--268 \item polynomial regression, 129 - \item portability, 227 + \item portability, 228 \item precision \subitem math operations, 26 \item principal components analysis, 153--155 @@ -570,7 +564,7 @@ \subitem \textsf {Bio7}, 14 \subitem \textsf {Eclipse}, 14 \subitem \textsf {Emacs}, 4, 14 - \subitem \textsf {Git}, 14, 162 + \subitem \textsf {Git}, 15, 162 \subitem \textsf {Gnu S}, 2 \subitem \textsf {ImageJ}, 14 \subitem \textsf {Linux}, 15, 294 @@ -583,28 +577,29 @@ \subitem \textsf {Octave}, 314 \subitem \textsf {OS X}, 163 \subitem \textsf {RGUI}, 11 - \subitem \textsf {RStudio}, 4, 5, 7--9, 11, 14, 25, 86, 88--91, 93, - 162, 163, 288 + \subitem \textsf {RStudio}, 4, 5, 7--9, 11, 14, 15, 25, 86, 88--91, + 93, 162, 163, 289 \subitem \textsf {RTools}, 163 - \subitem \textsf {SAS}, 2, 134, 135, 314, 315 + \subitem \textsf {SAS}, 2, 134, 314, 315 \subitem \textsf {SPPS}, 314 - \subitem \textsf {SPSS}, 2, 134, 135, 314, 315 + \subitem \textsf {SPSS}, 2, 134, 314, 315 \subitem \textsf {SQLite}, 323 \subitem \textsf {Stata}, 314, 315 \subitem \textsf {Systat}, 314, 315 \subitem \textsf {Unix}, 15, 294 \subitem \textsf {WEB}, 91 \subitem \textsf {WinEdt}, 14 + \item pseudo-random numbers, 122 + \item pseudo-random sampling, 122 \item \textsf {Python}, 162, 316, 323 \indexspace - \item R - \subitem {\Rlang - \subsubitem help}, 11 - \item {\Rpgrm as a computer program}, 3 + \item {\Rlang} + \subitem help, 11 \item {\Rlang as a language}, 1, 3 \item {\Rlang as a program}, 1 + \item {\Rpgrm as a program}, 3 \item random numbers, \see{pseudo-random numbers}{122} \item random sampling, \see{pseudo-random sampling}{122} \item Raspberry Pi, 2 @@ -629,17 +624,17 @@ \item ROpenScience, 162 \item row-wise operations on data, 190--193 \item \textsf {`RSQLite'}, 323 - \item \textsf {RStudio}, 4, 5, 7--9, 11, 14, 25, 86, 88--91, 93, - 162, 163, 288 + \item \textsf {RStudio}, 4, 5, 7--9, 11, 14, 15, 25, 86, 88--91, 93, + 162, 163, 289 \item \textsf {RTools}, 163 \indexspace - \item \textsf {S}, 2, 3, 134, 250 + \item \textsf {S}, 2, 3, 134, 251 \item \textsf {S-Plus}, 2 \item S3 class system, 170 - \item \textsf {SAS}, 2, 134, 135, 314, 315 - \item \textsf {`scales'}, 216, 258, 259 + \item \textsf {SAS}, 2, 134, 314, 315 + \item \textsf {`scales'}, 217, 259, 260 \item scales ('ggplot2'), \see{grammar of graphics, scales}{201} \item scoping rules, 174 \item script, 6 @@ -649,18 +644,18 @@ \subitem readability, 90 \subitem sourcing, 88 \subitem writing, 89 - \item self-starting functions, 139, 242 + \item self-starting functions, 139, 243 \item \textsf {`seplyr'}, 189, 190 \item sequence, 23 \item sets, 36--39 - \item \textsf {`sf'}, 226, 309 + \item \textsf {`sf'}, 227, 309 \item \textsf {`showtext'}, 228 \item simple code statements, 94 \item special values \subitem NA, 25 \subitem NaN, 25 \item \textsf {SPPS}, 314 - \item \textsf {SPSS}, 2, 134, 135, 314, 315 + \item \textsf {SPSS}, 2, 134, 314, 315 \item \textsf {SQLite}, 323 \item StackOverflow, 13 \item \textsf {Stata}, 314, 315 @@ -677,14 +672,14 @@ \item text files \subitem fixed width fields, 301 - \subitem with field markers, 298 + \subitem with field markers, 299 \item themes ('ggplot2'), \see{grammar of graphics, themes}{201} \item tibble \subitem differences with data frames, 180--185 - \item \textsf {`tibble'}, 68, 69, 178, 180, 231 + \item \textsf {`tibble'}, 68, 69, 178, 180, 232 \item \textsf {`tidync'}, 318 \item \textsf {`tidyr'}, 188, 190, 195 - \item \textsf {`tidyverse'}, 184, 186, 188, 190, 192, 199, 231, 303, + \item \textsf {`tidyverse'}, 184, 186, 188, 190, 192, 199, 232, 303, 311 \item time series, 149--151 \subitem decomposition, 150 @@ -694,10 +689,10 @@ \indexspace - \item UNICODE, 227 + \item UNICODE, 228 \item \textsf {Unix}, 3, 6, 8, 14, 15, 185, 294 - \item UTF8, 227 - \item \textsf {`utils'}, 298, 300, 306, 307, 321 + \item UTF8, 228 + \item \textsf {`utils'}, 299, 300, 306, 307, 321 \indexspace @@ -719,7 +714,7 @@ \item \textsf {WinEdt}, 14 \item working directory, 294--295 \item `worksheet', \see{data frame}{66} - \item \textsf {`wrapr'}, 178, 187, 214, 319 + \item \textsf {`wrapr'}, 178, 187, 215, 319 \indexspace diff --git a/using-r-main-crc.lof b/using-r-main-crc.lof deleted file mode 100644 index c6404568..00000000 --- a/using-r-main-crc.lof +++ /dev/null @@ -1,29 +0,0 @@ -\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\contentsline {figure}{\numberline {1.1}{\ignorespaces The R console}}{4}% -\defcounter {refsection}{0}\relax -\contentsline {figure}{\numberline {1.2}{\ignorespaces The R console}}{5}% -\defcounter {refsection}{0}\relax -\contentsline {figure}{\numberline {1.3}{\ignorespaces The R console}}{5}% -\defcounter {refsection}{0}\relax -\contentsline {figure}{\numberline {1.4}{\ignorespaces Script sourced at the R console}}{6}% -\defcounter {refsection}{0}\relax -\contentsline {figure}{\numberline {1.5}{\ignorespaces Script at the Windows cmd promt}}{7}% -\defcounter {refsection}{0}\relax -\contentsline {figure}{\numberline {1.6}{\ignorespaces Script in Rstudio}}{8}% -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } -\defcounter {refsection}{0}\relax -\addvspace {10\p@ } diff --git a/using-r-main-crc.log b/using-r-main-crc.log new file mode 100644 index 00000000..ade19b81 --- /dev/null +++ b/using-r-main-crc.log @@ -0,0 +1,9614 @@ +This is XeTeX, Version 3.14159265-2.6-0.999992 (MiKTeX 2.9.7300 64-bit) (preloaded format=xelatex 2020.2.16) 4 APR 2020 19:03 +entering extended mode +**./using-r-main-crc.tex +(using-r-main-crc.tex +LaTeX2e <2020-02-02> patch level 1 +L3 programming layer <2020-02-08> (krantz.cls +Document Class: krantz 2005/09/16 v1.4f Standard LaTeX document class +("C:\Program Files\MiKTeX 2.9\tex/latex/base\bk10.clo" +File: bk10.clo 2019/12/20 v1.4l Standard LaTeX file (size option) +) +\trimheight=\dimen134 +\trimwidth=\dimen135 +\normaltextheight=\dimen136 +\tempa=\dimen137 +\tempdimen=\dimen138 +\htrim=\dimen139 +\vtrimtop=\dimen140 +\vtrimbot=\dimen141 +\ul@box=\box45 +\ur@box=\box46 +\ll@box=\box47 +\lr@box=\box48 +\@cipboxa=\box49 +\@cipboxb=\box50 +\@ciprulewidth=\dimen142 +\c@part=\count163 +\c@chapter=\count164 +\c@section=\count165 +\c@subsection=\count166 +\c@subsubsection=\count167 +\c@paragraph=\count168 +\c@subparagraph=\count169 +\secwd=\dimen143 +\subsecwd=\dimen144 +\subsubsecwd=\dimen145 +\c@figure=\count170 +\c@table=\count171 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\c@numauthors=\count172 +\section@toc@skip=\skip49 +\SectionTOCWidth=\skip50 +\subsection@toc@skip=\skip51 +\SubSectionTOCWidth=\skip52 +\subsubsection@toc@skip=\skip53 +\SubSubSectionTOCWidth=\skip54 +\paragraph@toc@skip=\skip55 +\ParagraphTOCWidth=\skip56 +\subparagraph@toc@skip=\skip57 +\@AUonebox=\box51 +\@AUtwobox=\box52 +\@AUthreebox=\box53 +\@AUfourbox=\box54 +\@AUaffonebox=\box55 +\@AUafftwobox=\box56 +\@AUaffthreebox=\box57 +\@AUafffourbox=\box58 +\@finalAUboxfromone=\box59 +\@finalAUboxfromtwo=\box60 +\@finalAUboxfromthree=\box61 +\@finalAUboxfromfour=\box62 +\c@chaptocdepth=\count173 +\bibindent=\dimen146 +\tempbox=\box63 +\nomenwidth=\dimen147 +\@tablebox=\box64 +\@tabletitlebox=\box65 +\@tablewidth=\dimen148 +\@tabletitlewidth=\dimen149 +\max@tablewidth=\dimen150 +\tempbox=\box66 +\tempdimen=\dimen151 + +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\color.sty" +Package: color 2019/11/23 v1.2a Standard LaTeX Color (DPC) + +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-cfg\color.cfg" +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package color Info: Driver file: xetex.def on input line 147. + +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-def\xetex.def" +File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/framed\framed.sty" +Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks +\OuterFrameSep=\skip58 +\fb@frw=\dimen152 +\fb@frh=\dimen153 +\FrameRule=\dimen154 +\FrameSep=\dimen155 +) +\tempbox=\box67 +\notewidth=\dimen156 +\wherebox=\box68 +\wherewidth=\dimen157 +\listtextleftmargin=\skip59 +\listtextleftmarginii=\skip60 +\listtextleftmarginiii=\skip61 +\listtextrightmargin=\skip62 +\listlabelleftskip=\skip63 +\listlabelleftskipii=\skip64 +\listlabelleftskipiii=\skip65 +\abovelistskipi=\skip66 +\belowlistskipi=\skip67 +\abovelistskipii=\skip68 +\belowlistskipii=\skip69 +\abovelistskipiii=\skip70 +\belowlistskipiii=\skip71 +\labelsepi=\skip72 +\labelsepii=\skip73 +\labelsepiii=\skip74 +\itemsepi=\skip75 +\itemsepii=\skip76 +\itemsepiii=\skip77 +\enumdimwd=\dimen158 +\enumdim=\dimen159 +\concolwidth=\dimen160 +\stempbox=\box69 +) (knitr.sty +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphicx.sty" +Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) + +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\keyval.sty" +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks14 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphics.sty" +Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) + +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\trig.sty" +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-cfg\graphics.cfg" +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: xetex.def on input line 105. +) +\Gin@req@height=\dimen161 +\Gin@req@width=\dimen162 +) +Package color Info: Redefining color shadecolor on input line 45. +) +("C:\Program Files\MiKTeX 2.9\tex/latex/base\alltt.sty" +Package: alltt 1997/06/16 v2.0g defines alltt environment +) +("C:\Program Files\MiKTeX 2.9\tex/generic/hologo\hologo.sty" +Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO) + +("C:\Program Files\MiKTeX 2.9\tex/generic/ltxcmds\ltxcmds.sty" +Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/generic/infwarerr\infwarerr.sty" +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/generic/kvsetkeys\kvsetkeys.sty" +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/generic/kvdefinekeys\kvdefinekeys.sty" +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/pdftexcmds\pdftexcmds.sty" +Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO +) + +("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\iftex.sty" +Package: iftex 2019/11/07 v1.0c TeX engine tests +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode not found. +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/csquotes\csquotes.sty" +Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) + +("C:\Program Files\MiKTeX 2.9\tex/latex/etoolbox\etoolbox.sty" +Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW) +\etb@tempcnta=\count174 +) +\csq@reset=\count175 +\csq@gtype=\count176 +\csq@glevel=\count177 +\csq@qlevel=\count178 +\csq@maxlvl=\count179 +\csq@tshold=\count180 +\csq@ltx@everypar=\toks15 + +("C:\Program Files\MiKTeX 2.9\tex/latex/csquotes\csquotes.def" +File: csquotes.def 2019-12-06 v5.2j csquotes generic definitions (JAW) +) +Package csquotes Info: Trying to load configuration file 'csquotes.cfg'... +Package csquotes Info: ... configuration file loaded successfully. + +("C:\Program Files\MiKTeX 2.9\tex/latex/csquotes\csquotes.cfg" +File: csquotes.cfg +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/animate\animate.sty" +Package: animate 2019/12/03 PDF & SVG animations from files and inline graphics + + +("C:\Program Files\MiKTeX 2.9\tex/latex/xkeyval\xkeyval.sty" +Package: xkeyval 2014/12/03 v2.7a package option processing (HA) + +("C:\Program Files\MiKTeX 2.9\tex/generic/xkeyval\xkeyval.tex" +("C:\Program Files\MiKTeX 2.9\tex/generic/xkeyval\xkvutils.tex" +\XKV@toks=\toks16 +\XKV@tempa@toks=\toks17 +) +\XKV@depth=\count181 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/base\ifthen.sty" +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\ifdraft.sty" +Package: ifdraft 2016/05/16 v1.4 Detect class options draft and final (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/tools\calc.sty" +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count182 +\calc@Bcount=\count183 +\calc@Adimen=\dimen163 +\calc@Bdimen=\dimen164 +\calc@Askip=\skip78 +\calc@Bskip=\skip79 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count184 +\calc@Cskip=\skip80 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/zref\zref-abspage.sty" +Package: zref-abspage 2019/11/29 v2.28 Module abspage for zref (HO) + +("C:\Program Files\MiKTeX 2.9\tex/latex/zref\zref-base.sty" +Package: zref-base 2019/11/29 v2.28 Module base for zref (HO) + +("C:\Program Files\MiKTeX 2.9\tex/generic/etexcmds\etexcmds.sty" +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/auxhook\auxhook.sty" +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +Package zref Info: New property list: main on input line 763. +Package zref Info: New property: default on input line 764. +Package zref Info: New property: page on input line 765. +) +("C:\Program Files\MiKTeX 2.9\tex/generic/atbegshi\atbegshi.sty" +Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) +) +\c@abspage=\count185 +Package zref Info: New property: abspage on input line 66. +) +("C:\Program Files\MiKTeX 2.9\tex/latex/media9\pdfbase.sty" +("C:\Program Files\MiKTeX 2.9\tex/latex/l3kernel\expl3.sty" +Package: expl3 2020-02-08 L3 programming layer (loader) + +("C:\Program Files\MiKTeX 2.9\tex/latex/l3backend\l3backend-xdvipdfmx.def" +File: l3backend-xdvipdfmx.def 2020-02-03 L3 backend support: xdvipdfmx +\g__graphics_track_int=\count186 +\l__pdf_internal_box=\box70 +\g__pdf_backend_object_int=\count187 +\g__pdf_backend_annotation_int=\count188 +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/l3packages/l3keys2e\l3keys2e.sty" +Package: l3keys2e 2020-02-08 LaTeX2e option processing using LaTeX3 keys +) +Package: pdfbase 2020/01/27 v0.36 driver independent access to low-level PDF fe +atures +\g_pbs_page_int=\count189 +\g_pbs_obj_int=\count190 +\g_pbs_oc_int=\count191 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/ocgx2\ocgbase.sty" +Package: ocgbase 2019/11/04 v0.17 support package for ocgx2.sty +\g_ocgbase_nd_int=\count192 +) +\@anim@box=\box71 +\@anim@measbox=\box72 +\@anim@tmpdima=\dimen165 +\@anim@tmpdimb=\dimen166 +\@anim@num=\count193 +\@anim@curframe=\count194 +\@anim@curframe@zb=\count195 +\@anim@resizeflags=\count196 +\@anim@skipfram=\count197 +\@anim@mulframecnt=\count198 +\@anim@@tmlnfile=\read2 +\@anim@tmpcnt=\count199 +\c@@anim@ltxcnt=\count266 +\@anim@curlayer=\count267 +\@anim@lineno=\count268 +\@anim@curfield=\count269 +\@anim@@resizeflags=\count270 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\biblatex.sty" +Package: biblatex 2019/12/01 v3.14 programmable bibliographies (PK/MW) + +("C:\Program Files\MiKTeX 2.9\tex/latex/kvoptions\kvoptions.sty" +Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/logreq\logreq.sty" +Package: logreq 2010/08/04 v1.0 xml request logger +\lrq@indent=\count271 + +("C:\Program Files\MiKTeX 2.9\tex/latex/logreq\logreq.def" +File: logreq.def 2010/08/04 v1.0 logreq spec v1.0 +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/url\url.sty" +\Urlmuskip=\muskip16 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +\c@tabx@nest=\count272 +\c@listtotal=\count273 +\c@listcount=\count274 +\c@liststart=\count275 +\c@liststop=\count276 +\c@citecount=\count277 +\c@citetotal=\count278 +\c@multicitecount=\count279 +\c@multicitetotal=\count280 +\c@instcount=\count281 +\c@maxnames=\count282 +\c@minnames=\count283 +\c@maxitems=\count284 +\c@minitems=\count285 +\c@citecounter=\count286 +\c@maxcitecounter=\count287 +\c@savedcitecounter=\count288 +\c@uniquelist=\count289 +\c@uniquename=\count290 +\c@refsection=\count291 +\c@refsegment=\count292 +\c@maxextratitle=\count293 +\c@maxextratitleyear=\count294 +\c@maxextraname=\count295 +\c@maxextradate=\count296 +\c@maxextraalpha=\count297 +\c@abbrvpenalty=\count298 +\c@highnamepenalty=\count299 +\c@lownamepenalty=\count300 +\c@maxparens=\count301 +\c@parenlevel=\count302 +\blx@tempcnta=\count303 +\blx@tempcntb=\count304 +\blx@tempcntc=\count305 +\blx@maxsection=\count306 +\blx@maxsegment@0=\count307 +\blx@notetype=\count308 +\blx@parenlevel@text=\count309 +\blx@parenlevel@foot=\count310 +\blx@sectionciteorder@0=\count311 +\blx@entrysetcounter=\count312 +\labelnumberwidth=\skip81 +\labelalphawidth=\skip82 +\biblabelsep=\skip83 +\bibitemsep=\skip84 +\bibnamesep=\skip85 +\bibinitsep=\skip86 +\bibparsep=\skip87 +\bibhang=\skip88 +\blx@bcfin=\read3 +\blx@bcfout=\write3 +\blx@langwohyphens=\language15 +\c@mincomprange=\count313 +\c@maxcomprange=\count314 +\c@mincompwidth=\count315 +Package biblatex Info: Trying to load biblatex default data model... +Package biblatex Info: ... file 'blx-dm.def' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\blx-dm.def" +File: blx-dm.def 2019/12/01 v3.14 biblatex localization (PK/MW) +) +Package biblatex Info: Trying to load biblatex style data model... +Package biblatex Info: ... file 'authoryear-comp.dbx' not found. +Package biblatex Info: Trying to load biblatex custom data model... +Package biblatex Info: ... file 'biblatex-dm.cfg' not found. +\c@afterword=\count316 +\c@savedafterword=\count317 +\c@annotator=\count318 +\c@savedannotator=\count319 +\c@author=\count320 +\c@savedauthor=\count321 +\c@bookauthor=\count322 +\c@savedbookauthor=\count323 +\c@commentator=\count324 +\c@savedcommentator=\count325 +\c@editor=\count326 +\c@savededitor=\count327 +\c@editora=\count328 +\c@savededitora=\count329 +\c@editorb=\count330 +\c@savededitorb=\count331 +\c@editorc=\count332 +\c@savededitorc=\count333 +\c@foreword=\count334 +\c@savedforeword=\count335 +\c@holder=\count336 +\c@savedholder=\count337 +\c@introduction=\count338 +\c@savedintroduction=\count339 +\c@namea=\count340 +\c@savednamea=\count341 +\c@nameb=\count342 +\c@savednameb=\count343 +\c@namec=\count344 +\c@savednamec=\count345 +\c@translator=\count346 +\c@savedtranslator=\count347 +\c@shortauthor=\count348 +\c@savedshortauthor=\count349 +\c@shorteditor=\count350 +\c@savedshorteditor=\count351 +\c@labelname=\count352 +\c@savedlabelname=\count353 +\c@institution=\count354 +\c@savedinstitution=\count355 +\c@lista=\count356 +\c@savedlista=\count357 +\c@listb=\count358 +\c@savedlistb=\count359 +\c@listc=\count360 +\c@savedlistc=\count361 +\c@listd=\count362 +\c@savedlistd=\count363 +\c@liste=\count364 +\c@savedliste=\count365 +\c@listf=\count366 +\c@savedlistf=\count367 +\c@location=\count368 +\c@savedlocation=\count369 +\c@organization=\count370 +\c@savedorganization=\count371 +\c@origlocation=\count372 +\c@savedoriglocation=\count373 +\c@origpublisher=\count374 +\c@savedorigpublisher=\count375 +\c@publisher=\count376 +\c@savedpublisher=\count377 +\c@language=\count378 +\c@savedlanguage=\count379 +\c@origlanguage=\count380 +\c@savedoriglanguage=\count381 +\c@pageref=\count382 +\c@savedpageref=\count383 +\shorthandwidth=\skip89 +\shortjournalwidth=\skip90 +\shortserieswidth=\skip91 +\shorttitlewidth=\skip92 +\shortauthorwidth=\skip93 +\shorteditorwidth=\skip94 +\locallabelnumberwidth=\skip95 +\locallabelalphawidth=\skip96 +\localshorthandwidth=\skip97 +\localshortjournalwidth=\skip98 +\localshortserieswidth=\skip99 +\localshorttitlewidth=\skip100 +\localshortauthorwidth=\skip101 +\localshorteditorwidth=\skip102 +Package biblatex Info: Trying to load enhanced support for Unicode engines... +Package biblatex Info: ... file 'blx-unicode.def' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\blx-unicode.def") +Package biblatex Info: Trying to load compatibility code... +Package biblatex Info: ... file 'blx-compat.def' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\blx-compat.def" +File: blx-compat.def 2019/12/01 v3.14 biblatex compatibility (PK/MW) +) +Package biblatex Info: Trying to load generic definitions... +Package biblatex Info: ... file 'biblatex.def' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\biblatex.def" +File: biblatex.def 2019/12/01 v3.14 biblatex compatibility (PK/MW) +\c@textcitecount=\count384 +\c@textcitetotal=\count385 +\c@textcitemaxnames=\count386 +\c@biburlbigbreakpenalty=\count387 +\c@biburlbreakpenalty=\count388 +\c@biburlnumpenalty=\count389 +\c@biburlucpenalty=\count390 +\c@biburllcpenalty=\count391 +\biburlbigskip=\muskip17 +\biburlnumskip=\muskip18 +\biburlucskip=\muskip19 +\biburllcskip=\muskip20 +\c@smartand=\count392 +) +Package biblatex Info: Trying to load bibliography style 'authoryear-comp'... +Package biblatex Info: ... file 'authoryear-comp.bbx' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex/bbx\authoryear-comp.bbx" +File: authoryear-comp.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW) +Package biblatex Info: Trying to load bibliography style 'authoryear'... +Package biblatex Info: ... file 'authoryear.bbx' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex/bbx\authoryear.bbx" +File: authoryear.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW) +Package biblatex Info: Trying to load bibliography style 'standard'... +Package biblatex Info: ... file 'standard.bbx' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex/bbx\standard.bbx" +File: standard.bbx 2019/12/01 v3.14 biblatex bibliography style (PK/MW) +\c@bbx:relatedcount=\count393 +\c@bbx:relatedtotal=\count394 +))) +Package biblatex Info: Trying to load citation style 'authoryear-comp'... +Package biblatex Info: ... file 'authoryear-comp.cbx' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex/cbx\authoryear-comp.cbx" +File: authoryear-comp.cbx 2019/12/01 v3.14 biblatex citation style (PK/MW) +Package biblatex Info: Redefining '\cite'. +Package biblatex Info: Redefining '\parencite'. +Package biblatex Info: Redefining '\footcite'. +Package biblatex Info: Redefining '\footcitetext'. +Package biblatex Info: Redefining '\smartcite'. +Package biblatex Info: Redefining '\textcite'. +Package biblatex Info: Redefining '\textcites'. +Package biblatex Info: Redefining '\cites'. +Package biblatex Info: Redefining '\parencites'. +Package biblatex Info: Redefining '\footcites'. +Package biblatex Info: Redefining '\footcitetexts'. +Package biblatex Info: Redefining '\smartcites'. +) +Package biblatex Info: Trying to load configuration file... +Package biblatex Info: ... file 'biblatex.cfg' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\biblatex.cfg" +File: biblatex.cfg +) + +Package biblatex Warning: 'sortgiveninits' option is deprecated. +(biblatex) Please use 'inits' option to '\namepart' +(biblatex) in '\DeclareSortingNamekeyTemplate' instead. + +) (abbrev.sty +Package: abbrev 2014/05/17 + ("C:\Program Files\MiKTeX 2.9\tex/latex/tools\xspace.sty" +Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/base\textcomp.sty" +Package: textcomp 2020/02/02 v2.0n Standard LaTeX package +) +("C:\Program Files\MiKTeX 2.9\tex/latex/was\upgreek.sty" +Package: upgreek 2003/02/12 v2.0 (WaS) +Package upgreek Info: Using Euler Roman for upright Greek on input line 31. +\symugrf@m=\mathgroup4 +LaTeX Font Info: Overwriting symbol font `ugrf@m' in version `bold' +(Font) U/eur/m/n --> U/eur/b/n on input line 38. +)) (usingr.sty +Package: usingr 2016/10/20 + +("C:\Program Files\MiKTeX 2.9\tex/latex/booktabs\booktabs.sty" +Package: booktabs 2020/01/12 v1.61803398 Publication quality tables +\heavyrulewidth=\dimen167 +\lightrulewidth=\dimen168 +\cmidrulewidth=\dimen169 +\belowrulesep=\dimen170 +\belowbottomsep=\dimen171 +\aboverulesep=\dimen172 +\abovetopsep=\dimen173 +\cmidrulesep=\dimen174 +\cmidrulekern=\dimen175 +\defaultaddspace=\dimen176 +\@cmidla=\count395 +\@cmidlb=\count396 +\@aboverulesep=\dimen177 +\@belowrulesep=\dimen178 +\@thisruleclass=\count397 +\@lastruleclass=\count398 +\@thisrulewidth=\dimen179 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/unicode-math\unicode-math.sty" +Package: unicode-math 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLaTeX + +("C:\Program Files\MiKTeX 2.9\tex/latex/unicode-math\unicode-math-xetex.sty" +Package: unicode-math-xetex 2020/01/31 v0.8q Unicode maths in XeLaTeX and LuaLa +TeX + +("C:\Program Files\MiKTeX 2.9\tex/latex/l3packages/xparse\xparse.sty" +Package: xparse 2020-02-08 L3 Experimental document command parser +\l__xparse_current_arg_int=\count399 +\g__xparse_grabber_int=\count400 +\l__xparse_m_args_int=\count401 +\l__xparse_v_nesting_int=\count402 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/fontspec\fontspec.sty" +Package: fontspec 2020/02/03 v2.7h Font selection for XeLaTeX and LuaLaTeX + +("C:\Program Files\MiKTeX 2.9\tex/latex/fontspec\fontspec-xetex.sty" +Package: fontspec-xetex 2020/02/03 v2.7h Font selection for XeLaTeX and LuaLaTe +X +\l__fontspec_script_int=\count403 +\l__fontspec_language_int=\count404 +\l__fontspec_strnum_int=\count405 +\l__fontspec_tmp_int=\count406 +\l__fontspec_tmpa_int=\count407 +\l__fontspec_tmpb_int=\count408 +\l__fontspec_tmpc_int=\count409 +\l__fontspec_em_int=\count410 +\l__fontspec_emdef_int=\count411 +\l__fontspec_strong_int=\count412 +\l__fontspec_strongdef_int=\count413 +\l__fontspec_tmpa_dim=\dimen180 +\l__fontspec_tmpb_dim=\dimen181 +\l__fontspec_tmpc_dim=\dimen182 + +("C:\Program Files\MiKTeX 2.9\tex/latex/base\fontenc.sty" +Package: fontenc 2020/01/25 v2.0m Standard LaTeX package +) +("C:\Program Files\MiKTeX 2.9\tex/latex/fontspec\fontspec.cfg"))) +("C:\Program Files\MiKTeX 2.9\tex/latex/base\fix-cm.sty" +Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX + +("C:\Program Files\MiKTeX 2.9\tex/latex/base\ts1enc.def" +File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file +LaTeX Font Info: Redeclaring font encoding TS1 on input line 47. +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsmath.sty" +Package: amsmath 2020/01/20 v2.17e AMS math features +\@mathmargin=\skip103 + +For additional information on amsmath, use the `?' option. +("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amstext.sty" +Package: amstext 2000/06/29 v2.01 AMS text + +("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsgen.sty" +File: amsgen.sty 1999/11/30 v2.0 generic functions +\@emptytoks=\toks18 +\ex@=\dimen183 +)) +("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsbsy.sty" +Package: amsbsy 1999/11/29 v1.2d Bold Symbols +\pmbraise@=\dimen184 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsopn.sty" +Package: amsopn 2016/03/08 v2.02 operator names +) +\inf@bad=\count414 +LaTeX Info: Redefining \frac on input line 227. +\uproot@=\count415 +\leftroot@=\count416 +LaTeX Info: Redefining \overline on input line 389. +\classnum@=\count417 +\DOTSCASE@=\count418 +LaTeX Info: Redefining \ldots on input line 486. +LaTeX Info: Redefining \dots on input line 489. +LaTeX Info: Redefining \cdots on input line 610. +\Mathstrutbox@=\box73 +\strutbox@=\box74 +\big@size=\dimen185 +LaTeX Font Info: Redeclaring font encoding OML on input line 733. +LaTeX Font Info: Redeclaring font encoding OMS on input line 734. +\macc@depth=\count419 +\c@MaxMatrixCols=\count420 +\dotsspace@=\muskip21 +\c@parentequation=\count421 +\dspbrk@lvl=\count422 +\tag@help=\toks19 +\row@=\count423 +\column@=\count424 +\maxfields@=\count425 +\andhelp@=\toks20 +\eqnshift@=\dimen186 +\alignsep@=\dimen187 +\tagshift@=\dimen188 +\tagwidth@=\dimen189 +\totwidth@=\dimen190 +\lineht@=\dimen191 +\@envbody=\toks21 +\multlinegap=\skip104 +\multlinetaggap=\skip105 +\mathdisplay@stack=\toks22 +LaTeX Info: Redefining \[ on input line 2859. +LaTeX Info: Redefining \] on input line 2860. +) +\g__um_fam_int=\count426 +\g__um_fonts_used_int=\count427 +\l__um_primecount_int=\count428 +\g__um_primekern_muskip=\muskip22 + +("C:\Program Files\MiKTeX 2.9\tex/latex/unicode-math\unicode-math-table.tex"))) + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe +c) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe +c) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe +c) + +Package fontspec Info: Font family 'LucidaBrightOT(0)' created for font +(fontspec) 'Lucida Bright OT' with options [Ligatures=TeX]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Bright +(fontspec) OT/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Lucida +(fontspec) Bright +(fontspec) OT/OT:script=latn;language=dflt;+smcp;mapping=tex-text;" + +(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright +(fontspec) OT/B/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Lucida +(fontspec) Bright +(fontspec) OT/B/OT:script=latn;language=dflt;+smcp;mapping=tex-text +;" +(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Bright +(fontspec) OT/I/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'italic small caps' (m/scit) with NFSS spec.: +(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida +(fontspec) Bright +(fontspec) OT/BI/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe +c) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe +c) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaBrightOT.fontspe +c) + +Package fontspec Info: Font family 'LucidaBrightOT(1)' created for font +(fontspec) 'Lucida Bright OT' with options []. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Bright +(fontspec) OT/OT:script=latn;language=dflt;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: <->"Lucida +(fontspec) Bright OT/OT:script=latn;language=dflt;+smcp;" +(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright +(fontspec) OT/B/OT:script=latn;language=dflt;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: <->"Lucida +(fontspec) Bright OT/B/OT:script=latn;language=dflt;+smcp;" +(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Bright +(fontspec) OT/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) Bright OT/BI/OT:script=latn;language=dflt;" +(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: + +LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal' +(Font) OT1/cmr/m/n --> TU/LucidaBrightOT(1)/m/n on input line +13. +LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' +(Font) OT1/cmr/m/it --> TU/LucidaBrightOT(1)/m/it on input lin +e 13. +LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' +(Font) OT1/cmr/bx/n --> TU/LucidaBrightOT(1)/bx/n on input lin +e 13. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) + +Package fontspec Info: Font family 'LucidaSansOT(0)' created for font 'Lucida +(fontspec) Sans OT' with options [Ligatures=TeX]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: +(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/B/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: +(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/I/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'italic small caps' (m/scit) with NFSS spec.: +(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/BI/OT:script=latn;language=dflt;mapping=tex-text;" +(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaSansOT.fontspec) + +Package fontspec Info: Font family 'LucidaSansOT(1)' created for font 'Lucida +(fontspec) Sans OT' with options []. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/OT:script=latn;language=dflt;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: +(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/B/OT:script=latn;language=dflt;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: +(fontspec) - 'italic' (m/it) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/I/OT:script=latn;language=dflt;" +(fontspec) - 'italic small caps' (m/scit) with NFSS spec.: +(fontspec) - 'bold italic' (b/it) with NFSS spec.: <->"Lucida Sans +(fontspec) OT/BI/OT:script=latn;language=dflt;" +(fontspec) - 'bold italic small caps' (b/scit) with NFSS spec.: + +LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' +(Font) OT1/cmss/m/n --> TU/LucidaSansOT(1)/m/n on input line 1 +4. +LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' +(Font) OT1/cmss/bx/n --> TU/LucidaSansOT(1)/bx/n on input line + 14. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +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]. +(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) - '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 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 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 small caps' (b/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: + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +Package fontspec Info: Font family 'LucidaConsoleDK(1)' created for font +(fontspec) 'Lucida Console DK' with options []. +(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) - '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 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 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 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 15. +LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' +(Font) OT1/cmtt/m/n --> TU/LucidaConsoleDK(1)/bx/n on input li +ne 15. + +Package fontspec Info: Font family 'LucidaBrightMathOT(0)' created for font +(fontspec) 'Lucida Bright Math OT' with options +(fontspec) [BoldItalicFont={},ItalicFont={},SmallCapsFont={},Script +=Math]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <->"Lucida Bright +(fontspec) Math OT/OT:script=math;language=dflt;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: +(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright Math +(fontspec) OT/B/OT:script=math;language=dflt;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: + + +Package fontspec Info: Font family 'LucidaBrightMathOT(1)' created for font +(fontspec) 'Lucida Bright Math OT' with options +(fontspec) [BoldItalicFont={},ItalicFont={},SmallCapsFont={},Script +=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=Lucida +(fontspec) Bright Math OT,Style=MathScript},{Size=-6,Font=Lucida +(fontspec) Bright Math OT,Style=MathScriptScript}}]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <8.5->"Lucida Bright +(fontspec) Math OT/OT:script=math;language=dflt;"<6-8.5>"Lucida +(fontspec) Bright Math +(fontspec) OT/OT:script=math;language=dflt;+ssty=0;"<-6>"Lucida +(fontspec) Bright Math OT/OT:script=math;language=dflt;+ssty=1;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: +(fontspec) - 'bold' (b/n) with NFSS spec.: <->"Lucida Bright Math +(fontspec) OT/B/OT:script=math;language=dflt;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: + +LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font +(Font) `operators' in the math version `normal' on input line 16. +LaTeX Font Info: Overwriting symbol font `operators' in version `normal' +(Font) OT1/cmr/m/n --> TU/LucidaBrightMathOT(1)/m/n on input l +ine 16. +LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font +(Font) `operators' in the math version `bold' on input line 16. +LaTeX Font Info: Overwriting symbol font `operators' in version `bold' +(Font) OT1/cmr/bx/n --> TU/LucidaBrightMathOT(1)/b/n on input +line 16. + +Package fontspec Info: Lucida Bright Math OT scale = 1.0001. + + +Package fontspec Info: Lucida Bright Math OT scale = 1.0001. + + +Package fontspec Info: Lucida Bright Math OT scale = 1.0001. + + +Package fontspec Info: Lucida Bright Math OT scale = 1.0001. + + +Package fontspec Info: Lucida Bright Math OT/B scale = 1.0001. + + +Package fontspec Info: Font family 'LucidaBrightMathOT(2)' created for font +(fontspec) 'Lucida Bright Math OT' with options +(fontspec) [BoldItalicFont={},ItalicFont={},SmallCapsFont={},Script +=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=Lucida +(fontspec) Bright Math OT,Style=MathScript},{Size=-6,Font=Lucida +(fontspec) Bright Math +(fontspec) OT,Style=MathScriptScript}},ScaleAgain=1.0001,FontAdjust +ment={\fontdimen +(fontspec) 8\font =7.0pt\relax \fontdimen 9\font =5.0pt\relax +(fontspec) \fontdimen 10\font =5.0pt\relax \fontdimen 11\font +(fontspec) =7.2pt\relax \fontdimen 12\font =3.6pt\relax \fontdimen +(fontspec) 13\font =4.2pt\relax \fontdimen 14\font =4.2pt\relax +(fontspec) \fontdimen 15\font =2.9pt\relax \fontdimen 16\font +(fontspec) =1.5pt\relax \fontdimen 17\font =1.5pt\relax \fontdimen +(fontspec) 18\font =4.0pt\relax \fontdimen 19\font =0.5pt\relax +(fontspec) \fontdimen 22\font =3.13pt\relax \fontdimen 20\font +(fontspec) =0pt\relax \fontdimen 21\font =0pt\relax }]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: +(fontspec) <8.5->s*[1.0001]"Lucida Bright Math +(fontspec) OT/OT:script=math;language=dflt;"<6-8.5>s*[1.0001]"Lucid +a +(fontspec) Bright Math +(fontspec) OT/OT:script=math;language=dflt;+ssty=0;"<-6>s*[1.0001]" +Lucida +(fontspec) Bright Math OT/OT:script=math;language=dflt;+ssty=1;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: +(fontspec) and font adjustment code: +(fontspec) \fontdimen 8\font =7.0pt\relax \fontdimen 9\font +(fontspec) =5.0pt\relax \fontdimen 10\font =5.0pt\relax \fontdimen +(fontspec) 11\font =7.2pt\relax \fontdimen 12\font =3.6pt\relax +(fontspec) \fontdimen 13\font =4.2pt\relax \fontdimen 14\font +(fontspec) =4.2pt\relax \fontdimen 15\font =2.9pt\relax \fontdimen +(fontspec) 16\font =1.5pt\relax \fontdimen 17\font =1.5pt\relax +(fontspec) \fontdimen 18\font =4.0pt\relax \fontdimen 19\font +(fontspec) =0.5pt\relax \fontdimen 22\font =3.13pt\relax +(fontspec) \fontdimen 20\font =0pt\relax \fontdimen 21\font +(fontspec) =0pt\relax +(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[1.0001]"Lucida +(fontspec) Bright Math OT/B/OT:script=math;language=dflt;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: +(fontspec) and font adjustment code: +(fontspec) \fontdimen 8\font =7.0pt\relax \fontdimen 9\font +(fontspec) =5.0pt\relax \fontdimen 10\font =5.0pt\relax \fontdimen +(fontspec) 11\font =7.2pt\relax \fontdimen 12\font =3.6pt\relax +(fontspec) \fontdimen 13\font =4.2pt\relax \fontdimen 14\font +(fontspec) =4.2pt\relax \fontdimen 15\font =2.9pt\relax \fontdimen +(fontspec) 16\font =1.5pt\relax \fontdimen 17\font =1.5pt\relax +(fontspec) \fontdimen 18\font =4.0pt\relax \fontdimen 19\font +(fontspec) =0.5pt\relax \fontdimen 22\font =3.13pt\relax +(fontspec) \fontdimen 20\font =0pt\relax \fontdimen 21\font +(fontspec) =0pt\relax + +LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font +(Font) `symbols' in the math version `normal' on input line 16. +LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' +(Font) OMS/cmsy/m/n --> TU/LucidaBrightMathOT(2)/m/n on input +line 16. +LaTeX Font Info: Encoding `OMS' has changed to `TU' for symbol font +(Font) `symbols' in the math version `bold' on input line 16. +LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' +(Font) OMS/cmsy/b/n --> TU/LucidaBrightMathOT(2)/b/n on input +line 16. + +Package fontspec Info: Lucida Bright Math OT scale = 0.9999. + + +Package fontspec Info: Lucida Bright Math OT scale = 0.9999. + + +Package fontspec Info: Lucida Bright Math OT scale = 0.9999. + + +Package fontspec Info: Lucida Bright Math OT scale = 0.9999. + + +Package fontspec Info: Lucida Bright Math OT/B scale = 0.9999. + + +Package fontspec Info: Font family 'LucidaBrightMathOT(3)' created for font +(fontspec) 'Lucida Bright Math OT' with options +(fontspec) [BoldItalicFont={},ItalicFont={},SmallCapsFont={},Script +=Math,SizeFeatures={{Size=8.5-},{Size=6-8.5,Font=Lucida +(fontspec) Bright Math OT,Style=MathScript},{Size=-6,Font=Lucida +(fontspec) Bright Math +(fontspec) OT,Style=MathScriptScript}},ScaleAgain=0.9999,FontAdjust +ment={\fontdimen +(fontspec) 8\font =0.4pt\relax \fontdimen 9\font =2.9pt\relax +(fontspec) \fontdimen 10\font =2.7pt\relax \fontdimen 11\font +(fontspec) =2.0pt\relax \fontdimen 12\font =6.0pt\relax \fontdimen +(fontspec) 13\font =0pt\relax }]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: +(fontspec) <8.5->s*[0.9999]"Lucida Bright Math +(fontspec) OT/OT:script=math;language=dflt;"<6-8.5>s*[0.9999]"Lucid +a +(fontspec) Bright Math +(fontspec) OT/OT:script=math;language=dflt;+ssty=0;"<-6>s*[0.9999]" +Lucida +(fontspec) Bright Math OT/OT:script=math;language=dflt;+ssty=1;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: +(fontspec) and font adjustment code: +(fontspec) \fontdimen 8\font =0.4pt\relax \fontdimen 9\font +(fontspec) =2.9pt\relax \fontdimen 10\font =2.7pt\relax \fontdimen +(fontspec) 11\font =2.0pt\relax \fontdimen 12\font =6.0pt\relax +(fontspec) \fontdimen 13\font =0pt\relax +(fontspec) - 'bold' (b/n) with NFSS spec.: <->s*[0.9999]"Lucida +(fontspec) Bright Math OT/B/OT:script=math;language=dflt;" +(fontspec) - 'bold small caps' (b/sc) with NFSS spec.: +(fontspec) and font adjustment code: +(fontspec) \fontdimen 8\font =0.4pt\relax \fontdimen 9\font +(fontspec) =2.9pt\relax \fontdimen 10\font =2.7pt\relax \fontdimen +(fontspec) 11\font =2.0pt\relax \fontdimen 12\font =6.0pt\relax +(fontspec) \fontdimen 13\font =0pt\relax + +LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font +(Font) `largesymbols' in the math version `normal' on input line 1 +6. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' +(Font) OMX/cmex/m/n --> TU/LucidaBrightMathOT(3)/m/n on input +line 16. +LaTeX Font Info: Encoding `OMX' has changed to `TU' for symbol font +(Font) `largesymbols' in the math version `bold' on input line 16. + +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' +(Font) OMX/cmex/m/n --> TU/LucidaBrightMathOT(3)/b/n on input +line 16. +Missing character: There is no in font Wingdings! +Missing character: There is no in font Wingdings/OT! +Missing character: There is no in font Wingdings/OT:language=dflt;! + +Package fontspec Info: Could not resolve font "Wingdings/BI" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Wingdings/B" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Wingdings/I" (it probably +(fontspec) doesn't exist). + +Missing character: There is no in font Wingdings/OT:language=dflt;! + +Package fontspec Info: Font family 'Wingdings(0)' created for font 'Wingdings' +(fontspec) with options []. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: +(fontspec) <->"Wingdings/OT:language=dflt;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: + +Missing character: There is no in font Wingdings 2! +Missing character: There is no in font Wingdings 2/OT! +Missing character: There is no in font Wingdings 2/OT:language=dflt;! + +Package fontspec Info: Could not resolve font "Wingdings2/BI" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Wingdings2/B" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Wingdings2/I" (it probably +(fontspec) doesn't exist). + +Missing character: There is no in font Wingdings 2/OT:language=dflt;! + +Package fontspec Info: Font family 'Wingdings2(0)' created for font +(fontspec) 'Wingdings2' with options []. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: +(fontspec) <->"Wingdings2/OT:language=dflt;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: + +Missing character: There is no in font Wingdings 3! +Missing character: There is no in font Wingdings 3/OT! +Missing character: There is no in font Wingdings 3/OT:language=dflt;! + +Package fontspec Info: Could not resolve font "Wingdings3/BI" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Wingdings3/B" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Wingdings3/I" (it probably +(fontspec) doesn't exist). + +Missing character: There is no in font Wingdings 3/OT:language=dflt;! + +Package fontspec Info: Font family 'Wingdings3(0)' created for font +(fontspec) 'Wingdings3' with options []. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: +(fontspec) <->"Wingdings3/OT:language=dflt;" +(fontspec) - 'small caps' (m/sc) with NFSS spec.: + +Missing character: There is no in font Typicons! +Missing character: There is no in font Typicons/OT! +Missing character: There is no in font Typicons/OT:language=dflt;! + +Package fontspec Info: Could not resolve font "Typicons/BI" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Typicons/B" (it probably +(fontspec) doesn't exist). + + +Package fontspec Info: Could not resolve font "Typicons/I" (it probably +(fontspec) doesn't exist). + +Missing character: There is no in font Typicons/OT:language=dflt;! + +Package fontspec Info: Font family 'Typicons(0)' created for font 'Typicons' +(fontspec) with options []. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: +(fontspec) <->"Typicons/OT:language=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: Could not resolve font "ModernPictograms/BI" (it +(fontspec) probably doesn't exist). + + +Package fontspec Info: Could not resolve font "ModernPictograms/B" (it +(fontspec) probably doesn't exist). + + +Package fontspec Info: Could not resolve font "ModernPictograms/I" (it +(fontspec) probably doesn't exist). + + +Package fontspec Info: Font family 'ModernPictograms(0)' created for font +(fontspec) 'ModernPictograms' with options []. +(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) - 'small caps' (m/sc) with NFSS spec.: + +) ("C:\Program Files\MiKTeX 2.9\tex/latex/imakeidx\imakeidx.sty" +Package: imakeidx 2016/10/15 v1.3e Package for typesetting indices in a synchro +nous mode + +("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifxetex.sty" +Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead. +) +("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\ifluatex.sty" +Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead. +) +("C:\Program Files\MiKTeX 2.9\tex/latex/tools\multicol.sty" +Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi) +\c@tracingmulticols=\count429 +\mult@box=\box75 +\multicol@leftmargin=\dimen192 +\c@unbalance=\count430 +\c@collectmore=\count431 +\doublecol@number=\count432 +\multicoltolerance=\count433 +\multicolpretolerance=\count434 +\full@width=\dimen193 +\page@free=\dimen194 +\premulticols=\dimen195 +\postmulticols=\dimen196 +\multicolsep=\skip106 +\multicolbaselineskip=\skip107 +\partial@page=\box76 +\last@line=\box77 +\maxbalancingoverflow=\dimen197 +\mult@rightbox=\box78 +\mult@grightbox=\box79 +\mult@gfirstbox=\box80 +\mult@firstbox=\box81 +\@tempa=\box82 +\@tempa=\box83 +\@tempa=\box84 +\@tempa=\box85 +\@tempa=\box86 +\@tempa=\box87 +\@tempa=\box88 +\@tempa=\box89 +\@tempa=\box90 +\@tempa=\box91 +\@tempa=\box92 +\@tempa=\box93 +\@tempa=\box94 +\@tempa=\box95 +\@tempa=\box96 +\@tempa=\box97 +\@tempa=\box98 +\@tempa=\box99 +\@tempa=\box100 +\@tempa=\box101 +\@tempa=\box102 +\@tempa=\box103 +\@tempa=\box104 +\@tempa=\box105 +\@tempa=\box106 +\@tempa=\box107 +\@tempa=\box108 +\@tempa=\box109 +\@tempa=\box110 +\@tempa=\box111 +\@tempa=\box112 +\@tempa=\box113 +\@tempa=\box114 +\@tempa=\box115 +\@tempa=\box116 +\@tempa=\box117 +\@tempa=\box118 +\c@minrows=\count435 +\c@columnbadness=\count436 +\c@finalcolumnbadness=\count437 +\last@try=\dimen198 +\multicolovershoot=\dimen199 +\multicolundershoot=\dimen256 +\mult@nat@firstbox=\box119 +\colbreak@box=\box120 +\mc@col@check@num=\count438 +)) +\using-r-main-crc@idxfile=\write4 +\openout4 = `using-r-main-crc.idx'. + + +Writing index file using-r-main-crc.idx +\rindex@idxfile=\write5 +\openout5 = `rindex.idx'. + +Writing index file rindex.idx +\rcatsidx@idxfile=\write6 +\openout6 = `rcatsidx.idx'. + +Writing index file rcatsidx.idx +("C:\Program Files\MiKTeX 2.9\tex/latex/upquote\upquote.sty" +Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba +tim +) +Package csquotes Info: Checking for multilingual support... +Package csquotes Info: ... none found. + +(using-r-main-crc.aux (frontmatter/preface.aux)) +\openout1 = `using-r-main-crc.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 58. +LaTeX Font Info: ... okay on input line 58. +\AtBeginShipoutBox=\box121 +Package biblatex Info: Trying to load language 'english'... +Package biblatex Info: ... file 'english.lbx' found. + +("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex/lbx\english.lbx" +File: english.lbx 2019/12/01 v3.14 biblatex localization (PK/MW) +) +Package biblatex Info: XeTeX detected. +(biblatex) Assuming input encoding 'utf8'. +Package biblatex Info: Automatic encoding selection. +(biblatex) Assuming data encoding 'utf8'. +\openout3 = `using-r-main-crc.bcf'. + +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 58. +Package biblatex Info: Reference segment=0 on input line 58. +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 87. +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 87. +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 87. + + +LaTeX Font Warning: Font shape `TU/LucidaSansOT(0)/ub/sl' undefined +(Font) using `TU/LucidaSansOT(0)/m/n' instead on input line 87. + + +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 + [][][][] + [] + +[1 + + + +] +Underfull \vbox (badness 10000) detected at line 92 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 92 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 92 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 92 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 92 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 92 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 92 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 92 +[] + [] + + +Underfull \hbox (badness 10000) detected at line 92 +[] + [] + +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 92. +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 92. +(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 9. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 7.00075pt on input line 9. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 5.00053pt on input line 9. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 9.99893pt on input line 9. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 6.99925pt on input line 9. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 4.99947pt on input line 9. + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[7 + +] [8] [9] [10] [11]) +\tf@toc=\write7 +\openout7 = `using-r-main-crc.toc'. + + [12] +\openout2 = `frontmatter/preface.aux'. + + (frontmatter/preface.tex +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \hbox (badness 10000) detected at line 1 +[] + [] + + +LaTeX Warning: Citation 'Boas1981' undefined on input line 6. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 7--7 +| + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[13 + + + +] [14] [15] +Underfull \hbox (badness 10000) in paragraph at lines 40--41 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 42--44 + + [] + +Missing character: There is no in font Typicons/OT:language=dflt;! + +Underfull \hbox (badness 10000) in paragraph at lines 45--47 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 48--50 + + [] + +Missing character: There is no in font Typicons/OT:language=dflt;! + +Underfull \hbox (badness 10000) in paragraph at lines 51--53 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 54--58 + + [] + +) [16] +Underfull \vbox (badness 10000) detected at line 105 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 105 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 105 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 105 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 105 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 105 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 105 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 105 +[] + [] + +Chapter 1. + +LaTeX Warning: Citation 'Kernighan1999' undefined on input line 110. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 111--111 +| + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[1 + + + + +] + +LaTeX Warning: Citation 'Becker1988' on page 2 undefined on input line 133. + + +LaTeX Warning: Citation 'Chambers2016' on page 2 undefined on input line 141. + +[2] + +LaTeX Warning: Citation 'Becker1984' on page 3 undefined on input line 143. + + +LaTeX Warning: Citation 'Becker1988' on page 3 undefined on input line 143. + +File: figures/R-console-r.png Graphic file (type bmp) +<figures/R-console-r.png> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +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 +(fontspec) = 0.89]. +(fontspec) +(fontspec) This font family consists of the following NFSS +(fontspec) series/shapes: +(fontspec) +(fontspec) - 'normal' (m/n) with NFSS spec.: <->s*[0.89]"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.: <->s*[0.89]"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.: <->s*[0.89]"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.: +(fontspec) <->s*[0.89]"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 +(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: + +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be +(Font) scaled to size 8.9pt on input line 157. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [3] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [4] +File: figures/r-console-rstudio.png Graphic file (type bmp) +<figures/r-console-rstudio.png> +File: figures/r-console-capture.png Graphic file (type bmp) +<figures/r-console-capture.png> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [5] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +File: figures/R-console-script.png Graphic file (type bmp) +<figures/R-console-script.png> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [6] +File: figures/windows-cmd-script.png Graphic file (type bmp) +<figures/windows-cmd-script.png> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [7] +File: figures/Rstudio-script.png Graphic file (type bmp) +<figures/Rstudio-script.png> + + +LaTeX Warning: Citation 'vanderLoo2012' on page 8 undefined on input line 227. + + +LaTeX Warning: Citation 'Hillebrand2015' on page 8 undefined on input line 227. + + +[8] + +LaTeX Warning: Citation 'Knuth1984a' on page 9 undefined on input line 235. + + +LaTeX Warning: Citation 'Leisch2002' on page 9 undefined on input line 237. + + +LaTeX Warning: Citation 'Xie2013' on page 9 undefined on input line 237. + + +LaTeX Warning: Citation 'Gandrud2015' on page 9 undefined on input line 239. + +[9] + +LaTeX Warning: Citation 'Gandrud2015' on page 10 undefined on input line 243. + + +LaTeX Warning: Citation 'Xie2013' on page 10 undefined on input line 243. + + +Underfull \vbox (badness 3668) detected at line 252 + [] + +[10] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 259. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 271. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 286. + [11] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [12] [13] [14] + +LaTeX Warning: Citation 'Newham2005' on page 15 undefined on input line 367. + + +LaTeX Warning: Citation 'Newham2005' on page 15 undefined on input line 367. + + +LaTeX Warning: Citation 'Kernighan1999' on page 15 undefined on input line 367. + + + +LaTeX Warning: Citation 'Kernighan1999' on page 15 undefined on input line 367. + + +[15] +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 + [][][][] + [] + +[16 + +] +Underfull \vbox (badness 10000) detected at line 377 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 377 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 377 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 377 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 377 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 377 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 377 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 377 +[] + [] + +Chapter 2. + +LaTeX Warning: Citation 'Aiken1964' undefined on input line 382. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 383--383 +| + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[17 + +] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 422. + [18] +Package color Info: Redefining color shadecolor on input line 437. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 465. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [19] +Package color Info: Redefining color shadecolor on input line 489. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 523. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 554. + +Underfull \vbox (badness 1675) detected at line 568 + [] + +[20] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 574. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 594. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 619. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \vbox (badness 4429) detected at line 642 + [] + +[21] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 649. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 684. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 697. + [22] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 713. +Package color Info: Redefining color shadecolor on input line 732. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 765. + [23] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 800. +Package color Info: Redefining color shadecolor on input line 820. +Package color Info: Redefining color shadecolor on input line 839. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [24] +Package color Info: Redefining color shadecolor on input line 862. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 882. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 927. + [25] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be +(Font) scaled to size 8.9pt on input line 951. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 954. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 970. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 985. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 998. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [26] +Package color Info: Redefining color shadecolor on input line 1035. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1050. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1088. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1100. + [27] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1158. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [28] +Package color Info: Redefining color shadecolor on input line 1193. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1239. + [29] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1284. +Package color Info: Redefining color shadecolor on input line 1315. +Package color Info: Redefining color shadecolor on input line 1358. + [30] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1384. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1400. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1450. + [31] +Package color Info: Redefining color shadecolor on input line 1507. +Package color Info: Redefining color shadecolor on input line 1527. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1539. + [32] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1601. +Package color Info: Redefining color shadecolor on input line 1637. +Package color Info: Redefining color shadecolor on input line 1656. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1681. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1712. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1743. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1762. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1797. + [33] [34] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1821. +Package color Info: Redefining color shadecolor on input line 1838. + +Underfull \vbox (badness 1112) detected at line 1879 + [] + +[35] +Package color Info: Redefining color shadecolor on input line 1890. + [36] +Package color Info: Redefining color shadecolor on input line 1937. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1947. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1966. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 1988. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2000. + [37] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2019. +Package color Info: Redefining color shadecolor on input line 2032. +Package color Info: Redefining color shadecolor on input line 2046. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2063. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2088. +Package color Info: Redefining color shadecolor on input line 2099. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2118. + +Underfull \vbox (badness 1845) detected at line 2134 + [] + +[38] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2143. + [39] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2173. +Package color Info: Redefining color shadecolor on input line 2190. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2211. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [40] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2237. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2294. + [41] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 8.00085pt on input line 2318. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 6.00064pt on input line 2318. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 7.99915pt on input line 2318. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 5.99936pt on input line 2318. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/m/n' will be +(Font) scaled to size 7.12pt on input line 2318. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2321. +Package color Info: Redefining color shadecolor on input line 2352. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2378. + [42] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2405. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2442. + [43] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2492. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [44] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2525. +Package color Info: Redefining color shadecolor on input line 2564. + + +LaTeX Font Warning: Font shape `TU/LucidaBrightOT(1)/bx/n' undefined +(Font) using `TU/LucidaBrightOT(1)/m/n' instead on input line 2576 +. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2581. + [45] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2609. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2629. +Package color Info: Redefining color shadecolor on input line 2647. + [46] +Package color Info: Redefining color shadecolor on input line 2673. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2690. + [47] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2736. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2751. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2767. + [48] +Package color Info: Redefining color shadecolor on input line 2820. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2836. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2854. +Package color Info: Redefining color shadecolor on input line 2886. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \vbox (badness 1845) detected at line 2919 + [] + +[49] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2924. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2944. + [50] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 2971. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3011. + [51] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3041. +Package color Info: Redefining color shadecolor on input line 3051. +Package color Info: Redefining color shadecolor on input line 3061. +Package color Info: Redefining color shadecolor on input line 3073. + [52] +Package color Info: Redefining color shadecolor on input line 3098. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3150. +Package color Info: Redefining color shadecolor on input line 3162. + +Underfull \vbox (badness 4686) detected at line 3194 + [] + +[53] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3199. +Package color Info: Redefining color shadecolor on input line 3241. +Package color Info: Redefining color shadecolor on input line 3253. + +Underfull \hbox (badness 10000) detected at line 3265 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 3265 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 3266 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 3266 +[][][] + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [54] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3274. +Package color Info: Redefining color shadecolor on input line 3303. + [55] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3343. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 7326) in paragraph at lines 3368--3369 +[]\TU/LucidaBrightOT(0)/m/n/10 Other operators and functions for matrix algebra + like cross-product + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3380. + [56] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3404. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3422. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3454. + [57] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3469. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3504. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [58] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3533. +Package color Info: Redefining color shadecolor on input line 3556. +Package color Info: Redefining color shadecolor on input line 3579. +Package color Info: Redefining color shadecolor on input line 3592. + [59] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3610. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3636. +Package color Info: Redefining color shadecolor on input line 3661. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3683. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [60] +Package color Info: Redefining color shadecolor on input line 3717. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3735. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [61] +Package color Info: Redefining color shadecolor on input line 3755. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3777. + [62] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3836. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3855. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3882. +Package color Info: Redefining color shadecolor on input line 3900. + [63] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3924. +Package color Info: Redefining color shadecolor on input line 3942. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [64] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3969. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 3990. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4041. + [65] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4069. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4092. + [66] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4145. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4178. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4198. + [67] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4231. +Package color Info: Redefining color shadecolor on input line 4244. +Package color Info: Redefining color shadecolor on input line 4257. +Package color Info: Redefining color shadecolor on input line 4272. + [68] +Package color Info: Redefining color shadecolor on input line 4287. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [69] +Package color Info: Redefining color shadecolor on input line 4346. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4406. +Package color Info: Redefining color shadecolor on input line 4425. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [70] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4455. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [71] +Package color Info: Redefining color shadecolor on input line 4476. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4500. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4518. + [72] +Package color Info: Redefining color shadecolor on input line 4540. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4563. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4582. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4600. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4623. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4640. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4656. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [73] +Underfull \vbox (badness 2150) detected at line 4675 + [] + + +Underfull \vbox (badness 2150) detected at line 4675 + [] + +[74] [75] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4687. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [76] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4738. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4759. + [77] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4808. +Package color Info: Redefining color shadecolor on input line 4826. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4861. + [78] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4878. +Package color Info: Redefining color shadecolor on input line 4900. +Package color Info: Redefining color shadecolor on input line 4914. + [79] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4945. +Package color Info: Redefining color shadecolor on input line 4956. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4970. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 4983. + [80] +Package color Info: Redefining color shadecolor on input line 4993. +Package color Info: Redefining color shadecolor on input line 5011. +Package color Info: Redefining color shadecolor on input line 5025. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5037. + [81] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5106. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5126. + [82] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +LaTeX Warning: Citation 'Murrell2019' on page 83 undefined on input line 5156. + + +LaTeX Warning: Citation 'Murrell2019' on page 83 undefined on input line 5156. + + +LaTeX Warning: Citation 'Sarkar2008' on page 83 undefined on input line 5156. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5163. +File: figure/pos-plot-1-1.pdf Graphic file (type pdf) +<use figure/pos-plot-1-1.pdf> + [83] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5180. +File: figure/pos-plot-2-1.pdf Graphic file (type pdf) +<use figure/pos-plot-2-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5197. + [84] +File: figure/pos-plot-3-1.pdf Graphic file (type pdf) +<use figure/pos-plot-3-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5216. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5233. + [85] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5252. + + +LaTeX Warning: Citation 'Peng2016' on page 86 undefined on input line 5269. + + +LaTeX Warning: Citation 'Peng2016' on page 86 undefined on input line 5269. + + +LaTeX Warning: Citation 'Matloff2011' on page 86 undefined on input line 5269. + + +LaTeX Warning: Citation 'Matloff2011' on page 86 undefined on input line 5269. + +[86] +Underfull \vbox (badness 10000) detected at line 5283 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 5283 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 5283 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 5283 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 5283 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 5283 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 5283 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 5283 +[] + [] + +Chapter 3. + +LaTeX Warning: Citation 'LemonND' undefined on input line 5289. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 5290--5290 +| + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[87 + + +] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5338. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [88] +Underfull \hbox (badness 10000) detected at line 5383 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 5383 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 5384 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 5384 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 5385 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 5385 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 5386 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 5386 +[][][] + [] + + +Underfull \hbox (badness 10000) detected at line 5387 + [][] + [] + + +Underfull \hbox (badness 10000) detected at line 5387 +[][][] + [] + +[89] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5408. + [90] + +LaTeX Warning: Citation 'Knuth1984a' on page 91 undefined on input line 5426. + + +LaTeX Warning: Citation 'Xie2013' on page 91 undefined on input line 5426. + + +LaTeX Warning: Citation 'Lamport1994' on page 91 undefined on input line 5426. + + +LaTeX Warning: Citation 'Xie2016' on page 91 undefined on input line 5426. + + +LaTeX Warning: Citation 'Xie2018' on page 91 undefined on input line 5426. + + +LaTeX Warning: Citation 'Hughes2004' on page 91 undefined on input line 5435. + +[91] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [92] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [93] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5479. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [94] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5514. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5533. +Package color Info: Redefining color shadecolor on input line 5547. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5565. + [95] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5594. +Package color Info: Redefining color shadecolor on input line 5609. +Package color Info: Redefining color shadecolor on input line 5621. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [96] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5647. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5665. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5688. + [97] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5717. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5731. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5746. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [98] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5764. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5803. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [99] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5826. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5854. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5872. + [100] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [101] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5944. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 5971. + [102] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6002. +Package color Info: Redefining color shadecolor on input line 6016. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6035. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [103] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6068. +Package color Info: Redefining color shadecolor on input line 6087. +Package color Info: Redefining color shadecolor on input line 6095. +Package color Info: Redefining color shadecolor on input line 6111. +Package color Info: Redefining color shadecolor on input line 6125. +Package color Info: Redefining color shadecolor on input line 6136. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [104] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6155. + [105] +Package color Info: Redefining color shadecolor on input line 6177. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6206. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6226. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6239. + [106] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [107] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6271. +Package color Info: Redefining color shadecolor on input line 6284. +Package color Info: Redefining color shadecolor on input line 6292. +Package color Info: Redefining color shadecolor on input line 6310. + [108] +Package color Info: Redefining color shadecolor on input line 6322. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6344. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6358. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6375. +Package color Info: Redefining color shadecolor on input line 6395. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6407. + +Underfull \vbox (badness 1448) detected at line 6428 + [] + +[109] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [110] +Package color Info: Redefining color shadecolor on input line 6442. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6465. +Package color Info: Redefining color shadecolor on input line 6481. +Package color Info: Redefining color shadecolor on input line 6489. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6512. + [111] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6537. +Package color Info: Redefining color shadecolor on input line 6547. +Package color Info: Redefining color shadecolor on input line 6561. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6577. + [112] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6601. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6614. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6631. + [113] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6647. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6666. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6694. + [114] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6714. +Package color Info: Redefining color shadecolor on input line 6732. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6751. + [115] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6792. + + +LaTeX Warning: Citation 'Matloff2011' on page 116 undefined on input line 6830. + + + +LaTeX Warning: Citation 'Matloff2011' on page 116 undefined on input line 6830. + + + +LaTeX Warning: Citation 'Wickham2019' on page 116 undefined on input line 6830. + + + +LaTeX Warning: Citation 'Wickham2019' on page 116 undefined on input line 6830. + + +[116] +Underfull \vbox (badness 10000) detected at line 6836 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 6836 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 6836 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 6836 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 6836 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 6836 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 6836 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 6836 +[] + [] + +Chapter 4. + +LaTeX Warning: Citation 'Hamming1987' undefined on input line 6841. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 6842--6842 +| + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[117 + + +] +Package color Info: Redefining color shadecolor on input line 6855. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6881. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [118] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6909. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6922. +File: figure/pos-distrib-01a-1.pdf Graphic file (type pdf) +<use figure/pos-distrib-01a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [119] +Package color Info: Redefining color shadecolor on input line 6946. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 6990. + [120] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7016. +Package color Info: Redefining color shadecolor on input line 7037. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7055. + [121] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1412) in paragraph at lines 7082--7083 +\TU/LucidaBrightOT(0)/m/n/10 tention to the values obtained. Repeat the exercis +e, but now executing + [] + + +Underfull \hbox (badness 1226) in paragraph at lines 7082--7083 +[][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 immediately before each call to [ +][][][][][], again paying + [] + +Package color Info: Redefining color shadecolor on input line 7092. +[122] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7125. +File: figure/pos-cor-00-1.pdf Graphic file (type pdf) +<use figure/pos-cor-00-1.pdf> +LaTeX Font Info: Calculating math sizes for size <11> on input line 7141. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 11.00117pt on input line 7141. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 7.70078pt on input line 7141. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(2)/m/n' will be +(Font) scaled to size 5.50058pt on input line 7141. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 10.99883pt on input line 7141. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 7.69914pt on input line 7141. +LaTeX Font Info: Font shape `TU/LucidaBrightMathOT(3)/m/n' will be +(Font) scaled to size 5.4994pt on input line 7141. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7148. +Package color Info: Redefining color shadecolor on input line 7161. + [123] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7176. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7198. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7224. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [124] +Package color Info: Redefining color shadecolor on input line 7245. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [125] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7292. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7312. +Package color Info: Redefining color shadecolor on input line 7326. + [126] +File: figure/pos-models-1a-1.pdf Graphic file (type pdf) +<use figure/pos-models-1a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7343. + [127] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7377. +Package color Info: Redefining color shadecolor on input line 7407. +File: figure/pos-models-2a-1.pdf Graphic file (type pdf) +<use figure/pos-models-2a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [128] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7426. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7439. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7451. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7461. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7472. + [129] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7494. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7507. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7517. +Package color Info: Redefining color shadecolor on input line 7534. +Package color Info: Redefining color shadecolor on input line 7581. +Package color Info: Redefining color shadecolor on input line 7598. +Package color Info: Redefining color shadecolor on input line 7610. + [130] [131] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [132] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7642. +Package color Info: Redefining color shadecolor on input line 7668. +Package color Info: Redefining color shadecolor on input line 7678. +File: figure/pos-model-6a-1.pdf Graphic file (type pdf) +<use figure/pos-model-6a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7695. + [133] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7718. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7733. +Package color Info: Redefining color shadecolor on input line 7746. + +Overfull \hbox (55.35208pt too wide) in paragraph at lines 7773--7773 +[]\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra +ys, contrasts = list(spray = contr.treatment))[] + [] + +Package color Info: Redefining color shadecolor on input line 7778. + +Overfull \hbox (26.40807pt too wide) in paragraph at lines 7805--7805 +[]\TU/LucidaConsoleDK(0)/m/n/8 ## lm(formula = count ~ spray, data = InsectSpra +ys, contrasts = list(spray = contr.sum))[] + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \vbox (badness 2134) detected at line 7810 + [] + +[134] + +LaTeX Warning: Citation 'Smith1957' on page 135 undefined on input line 7818. + +[135] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7831. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7856. + [136] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7882. +File: figure/pos-model-11-1.pdf Graphic file (type pdf) +<use figure/pos-model-11-1.pdf> +Package color Info: Redefining color shadecolor on input line 7899. + [137] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 7958. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [138] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +LaTeX Warning: Citation 'Johnson2011' on page 139 undefined on input line 8009. + + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8012. +Package color Info: Redefining color shadecolor on input line 8024. + [139] +Package color Info: Redefining color shadecolor on input line 8035. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8086. + +Overfull \hbox (336.75217pt too wide) in paragraph at lines 8101--8101 +[]\TU/LucidaConsoleDK(0)/m/n/8 ## $ call : language nls(formula = rate ~ + SSmicmen(conc, Vm, K), data = Puromycin, subset = state == "treated", alg +orithm = "defa| __truncated__ ...[] + [] + +Package color Info: Redefining color shadecolor on input line 8106. + +Underfull \vbox (badness 10000) detected at line 8128 + [] + +[140] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8139. + [141] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8150. +Package color Info: Redefining color shadecolor on input line 8160. +Package color Info: Redefining color shadecolor on input line 8170. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8181. +Package color Info: Redefining color shadecolor on input line 8210. +Package color Info: Redefining color shadecolor on input line 8219. + [142] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8250. +Package color Info: Redefining color shadecolor on input line 8259. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8291. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8304. + [143] +Package color Info: Redefining color shadecolor on input line 8312. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8344. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [144] +Package color Info: Redefining color shadecolor on input line 8365. +Package color Info: Redefining color shadecolor on input line 8376. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8391. +Package color Info: Redefining color shadecolor on input line 8402. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8416. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8432. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8457. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8477. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8497. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8517. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8557. +Package color Info: Redefining color shadecolor on input line 8580. +Package color Info: Redefining color shadecolor on input line 8595. +Package color Info: Redefining color shadecolor on input line 8624. + [145] [146] [147] [148] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8664. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8684. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8705. +File: figure/pos-ts-02-1.pdf Graphic file (type pdf) +<use figure/pos-ts-02-1.pdf> + [149] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8722. +File: figure/pos-ts-03-1.pdf Graphic file (type pdf) +<use figure/pos-ts-03-1.pdf> +Package color Info: Redefining color shadecolor on input line 8746. +Package color Info: Redefining color shadecolor on input line 8757. +File: figure/pos-ts-05-1.pdf Graphic file (type pdf) +<use figure/pos-ts-05-1.pdf> + [150] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8776. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8798. + [151] +Package color Info: Redefining color shadecolor on input line 8865. + [152] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8906. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8918. +Package color Info: Redefining color shadecolor on input line 8945. + [153] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8964. +File: figure/pos-pca-05-1.pdf Graphic file (type pdf) +<use figure/pos-pca-05-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 8983. +File: figure/pos-pca-04-1.pdf Graphic file (type pdf) +<use figure/pos-pca-04-1.pdf> + [154] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9007. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9024. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9034. + [155] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9082. +File: figure/pos-mds-03-1.pdf Graphic file (type pdf) +<use figure/pos-mds-03-1.pdf> + [156] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9112. + [157] +Package color Info: Redefining color shadecolor on input line 9129. +File: figure/pos-cluster-02-1.pdf Graphic file (type pdf) +<use figure/pos-cluster-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9146. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9167. + [158] + +LaTeX Warning: Citation 'Diez2019' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Diez2019' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Holmes2019' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Holmes2019' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Dalgaard2008' on page 159 undefined on input line 9198 +. + + +LaTeX Warning: Citation 'Dalgaard2008' on page 159 undefined on input line 9198 +. + + +LaTeX Warning: Citation 'Everitt2009' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Everitt2009' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Zuur2009' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Zuur2009' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Crawley2012' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Crawley2012' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Venables2002' on page 159 undefined on input line 9198 +. + + +LaTeX Warning: Citation 'Venables2002' on page 159 undefined on input line 9198 +. + + +LaTeX Warning: Citation 'Everitt2011' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Everitt2011' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Faraway2004' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Faraway2004' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Faraway2006' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Faraway2006' on page 159 undefined on input line 9198. + + + +LaTeX Warning: Citation 'Pinheiro2000' on page 159 undefined on input line 9198 +. + + +LaTeX Warning: Citation 'Pinheiro2000' on page 159 undefined on input line 9198 +. + + +LaTeX Warning: Citation 'Wood2017' on page 159 undefined on input line 9198. + + +LaTeX Warning: Citation 'Wood2017' on page 159 undefined on input line 9198. + +[159] +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 + [][][][] + [] + +[160 + +] +Underfull \vbox (badness 10000) detected at line 9206 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9206 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 9206 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9206 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 9206 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9206 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 9206 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9206 +[] + [] + +Chapter 5. + +LaTeX Warning: Citation 'Aho1992' undefined on input line 9211. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 9212--9212 +| + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[161 + +] + +LaTeX Warning: Citation 'Pinheiro2000' on page 162 undefined on input line 9230 +. + + +LaTeX Warning: Citation 'Pinheiro2000' on page 162 undefined on input line 9230 +. + + +LaTeX Warning: Citation 'Sarkar2008' on page 162 undefined on input line 9230. + + +LaTeX Warning: Citation 'Sarkar2008' on page 162 undefined on input line 9230. + + +LaTeX Warning: Citation 'Wickham2016' on page 162 undefined on input line 9230. + + + +LaTeX Warning: Citation 'Wickham2016' on page 162 undefined on input line 9230. + + + +LaTeX Warning: Citation 'Wickham2015' on page 162 undefined on input line 9234. + + + +LaTeX Warning: Citation 'Wickham2015' on page 162 undefined on input line 9234. + + + +LaTeX Warning: Citation 'Eddelbuettel2013' on page 162 undefined on input line +9234. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [162] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [163] [164] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9273. +Package color Info: Redefining color shadecolor on input line 9288. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9313. + +Underfull \vbox (badness 1681) detected at line 9352 + [] + +[165] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9366. +Package color Info: Redefining color shadecolor on input line 9376. + [166] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9409. +Package color Info: Redefining color shadecolor on input line 9422. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9461. + [167] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9480. + +Overfull \hbox (34.94408pt too wide) in paragraph at lines 9559--9559 +[]\TU/LucidaConsoleDK(0)/m/n/8 ## stop(gettextf("number of offsets +is %d, should equal %d (number of observations)",[] + [] + +[168] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9566. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9582. + [169] +Package color Info: Redefining color shadecolor on input line 9609. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9623. +Package color Info: Redefining color shadecolor on input line 9635. +Package color Info: Redefining color shadecolor on input line 9648. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [170] + +LaTeX Warning: Citation 'Burns1998' on page 171 undefined on input line 9669. + + +LaTeX Warning: Citation 'Burns1998' on page 171 undefined on input line 9669. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9685. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9701. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9715. + [171] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9730. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9751. +Package color Info: Redefining color shadecolor on input line 9763. +Package color Info: Redefining color shadecolor on input line 9785. +Package color Info: Redefining color shadecolor on input line 9800. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9821. +Package color Info: Redefining color shadecolor on input line 9834. +Package color Info: Redefining color shadecolor on input line 9850. +Package color Info: Redefining color shadecolor on input line 9864. + [172] +Underfull \vbox (badness 4981) detected at line 9898 + [] + + +Underfull \vbox (badness 4981) detected at line 9898 + [] + +[173] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 9908. +Package color Info: Redefining color shadecolor on input line 9941. + [174] + +LaTeX Warning: Citation 'Wickham2019' on page 175 undefined on input line 9972. + + + +LaTeX Warning: Citation 'Wickham2019' on page 175 undefined on input line 9972. + + + +LaTeX Warning: Citation 'Chambers2016' on page 175 undefined on input line 9972 +. + + +LaTeX Warning: Citation 'Chambers2016' on page 175 undefined on input line 9972 +. + + +LaTeX Warning: Citation 'Wickham2015' on page 175 undefined on input line 9974. + + + +LaTeX Warning: Citation 'Wickham2015' on page 175 undefined on input line 9974. + + + +LaTeX Warning: Citation 'Wickham2019' on page 175 undefined on input line 9974. + + + +LaTeX Warning: Citation 'Wickham2019' on page 175 undefined on input line 9974. + + + +LaTeX Warning: Citation 'Chambers2016' on page 175 undefined on input line 9974 +. + + +LaTeX Warning: Citation 'Chambers2016' on page 175 undefined on input line 9974 +. + + +Underfull \hbox (badness 10000) in paragraph at lines 9974--9975 +[]\TU/LucidaBrightOT(0)/m/n/10 The[] development of packages is thoroughly desc +ribed in the book + [] + + +Underfull \hbox (badness 2042) in paragraph at lines 9974--9975 +[] \TU/LucidaBrightOT(0)/m/n/10 ([]) and an in-depth description of \TU/LucidaS +ansOT(0)/m/n/10 R \TU/LucidaBrightOT(0)/m/n/10 from the + [] + +[175] +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 + [][][][] + [] + +[176 + +] +Underfull \vbox (badness 10000) detected at line 9984 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9984 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 9984 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9984 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 9984 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9984 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 9984 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 9984 +[] + [] + +Chapter 6. + +LaTeX Warning: Citation 'Burns1998' undefined on input line 9989. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 9990--9990 +| + [] + + +LaTeX Warning: Citation 'Matloff2011' on page 177 undefined on input line 10000 +. + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[177 + +] + +LaTeX Warning: Citation 'Kernigham1981' on page 178 undefined on input line 100 +04. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [178] + +LaTeX Warning: Citation 'Wickham2017' on page 179 undefined on input line 10012 +. + + +LaTeX Warning: Citation 'Wickham2017' on page 179 undefined on input line 10012 +. + + +LaTeX Warning: Citation 'Peng2016' on page 179 undefined on input line 10012. + + +LaTeX Warning: Citation 'Peng2016' on page 179 undefined on input line 10012. + +Package color Info: Redefining color shadecolor on input line 10017. +Package color Info: Redefining color shadecolor on input line 10027. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +LaTeX Font Info: Font shape `TU/LucidaConsoleDK(2)/b/n' will be +(Font) scaled to size 10.68pt on input line 10041. + [179] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10063. +Package color Info: Redefining color shadecolor on input line 10083. + +Underfull \vbox (badness 6110) detected at line 10089 + [] + +[180] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10095. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10124. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10142. + [181] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10169. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10196. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10227. + [182] +Package color Info: Redefining color shadecolor on input line 10252. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10286. +Package color Info: Redefining color shadecolor on input line 10320. + +Underfull \vbox (badness 10000) detected at line 10355 + [] + +[183] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10360. + [184] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10383. +Package color Info: Redefining color shadecolor on input line 10402. + + +LaTeX Warning: Citation 'Kernigham1981' on page 185 undefined on input line 104 +22. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10425. + [185] +Package color Info: Redefining color shadecolor on input line 10446. +Package color Info: Redefining color shadecolor on input line 10459. +Package color Info: Redefining color shadecolor on input line 10469. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [186] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10493. +Package color Info: Redefining color shadecolor on input line 10502. +Package color Info: Redefining color shadecolor on input line 10516. +Package color Info: Redefining color shadecolor on input line 10530. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10544. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [187] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10576. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10586. + [188] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10617. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10639. + [189] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10667. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [190] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10695. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10715. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10740. + [191] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10759. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10778. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10797. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10816. + [192] +Package color Info: Redefining color shadecolor on input line 10833. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10852. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10881. + [193] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 10905. +Package color Info: Redefining color shadecolor on input line 10929. +Package color Info: Redefining color shadecolor on input line 10968. +Package color Info: Redefining color shadecolor on input line 10986. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [194] +Package color Info: Redefining color shadecolor on input line 11030. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [195] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11043. +Package color Info: Redefining color shadecolor on input line 11064. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11087. +Package color Info: Redefining color shadecolor on input line 11107. + [196] +Package color Info: Redefining color shadecolor on input line 11127. +Package color Info: Redefining color shadecolor on input line 11147. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11169. +Package color Info: Redefining color shadecolor on input line 11188. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [197] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11211. +Package color Info: Redefining color shadecolor on input line 11230. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11251. +Package color Info: Redefining color shadecolor on input line 11267. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11285. + [198] + +LaTeX Warning: Citation 'Wickham2017' on page 199 undefined on input line 11310 +. + + +LaTeX Warning: Citation 'Wickham2017' on page 199 undefined on input line 11310 +. + +[199] +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 + [][][][] + [] + +[200 + +] +Underfull \vbox (badness 10000) detected at line 11321 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 11321 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 11321 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 11321 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 11321 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 11321 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 11321 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 11321 +[] + [] + +Chapter 7. + +Underfull \hbox (badness 2503) in paragraph at lines 11323--11325 + \TU/LucidaBrightOT(0)/m/n/10 The commonality between science and art is in try +ing to see + [] + + +LaTeX Warning: Citation 'Zachry2004' undefined on input line 11326. + + +Overfull \hbox (30.0pt too wide) in paragraph at lines 11327--11327 +| + [] + + +LaTeX Warning: Citation 'Sarkar2008' on page 201 undefined on input line 11350. + + + +LaTeX Warning: Citation 'Wickham2016' on page 201 undefined on input line 11350 +. + + +LaTeX Warning: Citation 'Murrell2011' on page 201 undefined on input line 11350 +. + +Package color Info: Redefining color shadecolor on input line 11361. +Package color Info: Redefining color shadecolor on input line 11371. + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[201 + +] + +LaTeX Warning: Citation 'Cleveland1985' on page 202 undefined on input line 113 +96. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [202] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [203] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [204] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11443. +File: figure/pos-ggplot-basics-01-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11460. +Package color Info: Redefining color shadecolor on input line 11470. +File: figure/pos-ggplot-basics-03-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-03-1.pdf> + [205] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11488. +File: figure/pos-ggplot-basics-04-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-04-1.pdf> +Package color Info: Redefining color shadecolor on input line 11508. +Package color Info: Redefining color shadecolor on input line 11520. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11532. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [206] +Package color Info: Redefining color shadecolor on input line 11546. +File: figure/pos-ggplot-basics-04a-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-04a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11565. +File: figure/pos-ggplot-basics-05-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-05-1.pdf> + [207] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11587. +File: figure/pos-ggplot-basics-06-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-06-1.pdf> + [208] +Package color Info: Redefining color shadecolor on input line 11612. +File: figure/pos-ggplot-basics-07-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-07-1.pdf> +Package color Info: Redefining color shadecolor on input line 11635. +File: figure/pos-ggplot-basics-08-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-08-1.pdf> + [209] +Package color Info: Redefining color shadecolor on input line 11658. +File: figure/pos-ggplot-basics-09-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-09-1.pdf> +Package color Info: Redefining color shadecolor on input line 11678. +File: figure/pos-ggplot-basics-10-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-10-1.pdf> + [210] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11698. +File: figure/pos-ggplot-basics-11-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-11-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11722. +File: figure/pos-ggplot-basics-info-01-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-basics-info-01-1.pdf> + [211] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11747. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11766. + [212] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11778. +File: figure/pos-ggplot-objects-02-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-objects-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11803. +Package color Info: Redefining color shadecolor on input line 11813. +File: figure/pos-ggplot-objects-info-02-1.pdf Graphic file (type pdf) +<use figure/pos-ggplot-objects-info-02-1.pdf> + [213] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11837. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11849. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11861. +Package color Info: Redefining color shadecolor on input line 11873. + [214] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11888. +Package color Info: Redefining color shadecolor on input line 11901. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11931. + [215] +File: figure/pos-scatter-01-1.pdf Graphic file (type pdf) +<use figure/pos-scatter-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11950. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11962. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11978. + [216] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 11994. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12007. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12018. +Package color Info: Redefining color shadecolor on input line 12030. +File: figure/pos-scatter-12-1.pdf Graphic file (type pdf) +<use figure/pos-scatter-12-1.pdf> +Package color Info: Redefining color shadecolor on input line 12050. + [217] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12065. +File: figure/pos-scatter-12a-1.pdf Graphic file (type pdf) +<use figure/pos-scatter-12a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12083. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12095. +File: figure/pos-scatter-16-1.pdf Graphic file (type pdf) +<use figure/pos-scatter-16-1.pdf> + [218] +Package color Info: Redefining color shadecolor on input line 12117. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12136. +File: figure/pos-scatter-18-1.pdf Graphic file (type pdf) +<use figure/pos-scatter-18-1.pdf> + [219] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12170. +File: figure/pos-rug-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-rug-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [220] +Package color Info: Redefining color shadecolor on input line 12199. +File: figure/pos-line-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-line-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12220. +File: figure/pos-step-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-step-plot-01-1.pdf> + [221] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1383) in paragraph at lines 12238--12239 +[]\TU/Notice2Std(0)/m/n/20.74 U[] \TU/LucidaBrightOT(0)/m/n/10 Using the follow +ing toy data, make three plots using [][][][][][], + [] + +Package color Info: Redefining color shadecolor on input line 12241. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12255. +File: figure/pos-area-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-area-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 4726) in paragraph at lines 12275--12276 +[][][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 and [][][][][][][][] require a +single aesthetic, [][][][][][] and + [] + +Package color Info: Redefining color shadecolor on input line 12278. +[222] +File: figure/pos-area-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-area-plot-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12315. +Package color Info: Redefining color shadecolor on input line 12328. +File: figure/pos-col-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-col-plot-02-1.pdf> + [223] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12347. +File: figure/pos-col-plot-03-1.pdf Graphic file (type pdf) +<use figure/pos-col-plot-03-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12366. +File: figure/pos-col-plot-04-1.pdf Graphic file (type pdf) +<use figure/pos-col-plot-04-1.pdf> + [224] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12401. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12414. +File: figure/pos-tile-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-tile-plot-02-1.pdf> + [225] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12432. +File: figure/pos-tile-plot-03-1.pdf Graphic file (type pdf) +<use figure/pos-tile-plot-03-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12454. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [226] +Package color Info: Redefining color shadecolor on input line 12475. +File: figure/pos-sf_plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-sf_plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12500. +File: figure/pos-text-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-text-plot-01-1.pdf> + [227] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [228] +Package color Info: Redefining color shadecolor on input line 12531. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12552. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12568. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12584. + [229] +File: figure/pos-text-plot-06-1.pdf Graphic file (type pdf) +<use figure/pos-text-plot-06-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12604. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12617. +File: figure/pos-label-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-label-plot-01-1.pdf> + [230] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12649. +File: figure/pos-repel-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-repel-plot-01-1.pdf> + [231] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12689. +Package color Info: Redefining color shadecolor on input line 12703. + [232] +File: figure/pos-table-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-table-plot-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12729. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12744. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [233] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12769. +Package color Info: Redefining color shadecolor on input line 12786. +File: figure/pos-plot-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-plot-plot-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [234] +Package color Info: Redefining color shadecolor on input line 12809. +File: figure/pos-plot-plot-03-1.pdf Graphic file (type pdf) +<use figure/pos-plot-plot-03-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12839. + [235] +File: figure/pos-plot-grob-01-1.pdf Graphic file (type pdf) +<use figure/pos-plot-grob-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12873. +File: figure/pos-plot-npc-eb-01-1.pdf Graphic file (type pdf) +<use figure/pos-plot-npc-eb-01-1.pdf> + +Underfull \vbox (badness 10000) detected at line 12889 + [] + +[236] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12908. +File: figure/pos-function-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-function-plot-01-1.pdf> + [237] +Package color Info: Redefining color shadecolor on input line 12926. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12941. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12968. + [238] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 12982. +File: figure/pos-summary-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-summary-plot-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13004. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13014. + [239] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13026. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13039. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13055. +File: figure/pos-summary-plot-09a-1.pdf Graphic file (type pdf) +<use figure/pos-summary-plot-09a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13075. + [240] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +LaTeX Warning: Citation 'Tufte1983' on page 241 undefined on input line 13083. + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1466) in paragraph at lines 13083--13084 +[]\TU/LucidaBrightOT(0)/m/n/10 Passing [][][][][][] instead of [][][][][][] to +[][][][][][] results in traditional + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13091. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13109. +Package color Info: Redefining color shadecolor on input line 13120. +File: figure/pos-smooth-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-smooth-plot-02-1.pdf> + [241] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13141. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13151. +File: figure/pos-smooth-plot-04-1.pdf Graphic file (type pdf) +<use figure/pos-smooth-plot-04-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13172. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13184. + [242] +File: figure/pos-smooth-plot-06-1.pdf Graphic file (type pdf) +<use figure/pos-smooth-plot-06-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13203. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13217. +Package color Info: Redefining color shadecolor on input line 13232. + [243] +File: figure/pos-smooth-plot-12-1.pdf Graphic file (type pdf) +<use figure/pos-smooth-plot-12-1.pdf> +Package color Info: Redefining color shadecolor on input line 13254. +File: figure/pos-smooth-plot-13-1.pdf Graphic file (type pdf) +<use figure/pos-smooth-plot-13-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [244] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13296. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13310. +File: figure/pos-histogram-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-histogram-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [245] +Package color Info: Redefining color shadecolor on input line 13328. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13339. +File: figure/pos-histogram-plot-03-1.pdf Graphic file (type pdf) +<use figure/pos-histogram-plot-03-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13357. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13368. +File: figure/pos-bin2d-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-bin2d-plot-01-1.pdf> + [246] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13387. +File: figure/pos-hex-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-hex-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13410. +File: figure/pos-density-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-density-plot-01-1.pdf> + [247] +Package color Info: Redefining color shadecolor on input line 13428. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13443. +File: figure/pos-density-plot-10-1.pdf Graphic file (type pdf) +<use figure/pos-density-plot-10-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13463. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13475. +File: figure/pos-density-plot-12-1.pdf Graphic file (type pdf) +<use figure/pos-density-plot-12-1.pdf> + [248] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13501. +File: figure/pos-bw-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-bw-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1184) in paragraph at lines 13516--13517 +[][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , which affect the outliers in a way s +imilar to the equivalent + [] + +Package color Info: Redefining color shadecolor on input line 13519. +File: figure/pos-bw-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-bw-plot-02-1.pdf> +[249] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13543. +Package color Info: Redefining color shadecolor on input line 13552. +File: figure/pos-violin-plot-02-1.pdf Graphic file (type pdf) +<use figure/pos-violin-plot-02-1.pdf> +Package color Info: Redefining color shadecolor on input line 13574. + [250] +File: figure/pos-ggbeeswarm-plot-01-1.pdf Graphic file (type pdf) +<use figure/pos-ggbeeswarm-plot-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13603. +File: figure/pos-facets-00-1.pdf Graphic file (type pdf) +<use figure/pos-facets-00-1.pdf> + [251] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13622. +File: figure/pos-facets-01-1.pdf Graphic file (type pdf) +<use figure/pos-facets-01-1.pdf> +Package color Info: Redefining color shadecolor on input line 13639. +Package color Info: Redefining color shadecolor on input line 13649. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13662. +Package color Info: Redefining color shadecolor on input line 13674. +File: figure/pos-facets-06-1.pdf Graphic file (type pdf) +<use figure/pos-facets-06-1.pdf> + [252] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13691. +File: figure/pos-facets-07-1.pdf Graphic file (type pdf) +<use figure/pos-facets-07-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13709. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13725. + [253] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13745. +File: figure/pos-facets-13-1.pdf Graphic file (type pdf) +<use figure/pos-facets-13-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13762. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [254] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [255] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13817. +File: figure/pos-axis-labels-01-1.pdf Graphic file (type pdf) +<use figure/pos-axis-labels-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13842. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13853. +File: figure/pos-axis-labels-03-1.pdf Graphic file (type pdf) +<use figure/pos-axis-labels-03-1.pdf> + [256] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13904. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [257] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13921. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13932. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13942. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13953. +File: figure/pos-scale-limits-04-1.pdf Graphic file (type pdf) +<use figure/pos-scale-limits-04-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [258] +Package color Info: Redefining color shadecolor on input line 13974. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 13987. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14003. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14019. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14031. + [259] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14041. +File: figure/pos-scale-ticks-02-1.pdf Graphic file (type pdf) +<use figure/pos-scale-ticks-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14061. +File: figure/pos-scale-ticks-03-1.pdf Graphic file (type pdf) +<use figure/pos-scale-ticks-03-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [260] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1418) in paragraph at lines 14084--14085 +[][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Similar to the maths functions of \TU +/LucidaSansOT(0)/m/n/10 R\TU/LucidaBrightOT(0)/m/n/10 , the name of the scales +are + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14090. +File: figure/pos-scale-trans-01-1.pdf Graphic file (type pdf) +<use figure/pos-scale-trans-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14109. +Package color Info: Redefining color shadecolor on input line 14119. +Package color Info: Redefining color shadecolor on input line 14130. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14140. + [261] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14157. +File: figure/pos-axis-position-01-1.pdf Graphic file (type pdf) +<use figure/pos-axis-position-01-1.pdf> +Package color Info: Redefining color shadecolor on input line 14179. +File: figure/pos-axis-secondary-01-1.pdf Graphic file (type pdf) +<use figure/pos-axis-secondary-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14198. + [262] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14218. +File: figure/pos-scale-datetime-01-1.pdf Graphic file (type pdf) +<use figure/pos-scale-datetime-01-1.pdf> +Package color Info: Redefining color shadecolor on input line 14244. + [263] +File: figure/pos-scale-datetime-02-1.pdf Graphic file (type pdf) +<use figure/pos-scale-datetime-02-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14282. + [264] +File: figure/pos-scale-discrete-10-1.pdf Graphic file (type pdf) +<use figure/pos-scale-discrete-10-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14304. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14315. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1552) in paragraph at lines 14327--14328 +\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 14327--14328 +\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- + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [265] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14346. +Package color Info: Redefining color shadecolor on input line 14375. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14400. + [266] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14417. +Package color Info: Redefining color shadecolor on input line 14444. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14457. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 4378) in paragraph at lines 14472--14473 +\TU/LucidaBrightOT(0)/m/n/10 Continuous color scales [][][][][][][][], [][][][] +[][][][], + [] + + +Underfull \hbox (badness 7963) in paragraph at lines 14472--14473 +[][][][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , [][][][][][][][], [][][][][][][] +[] and + [] + +[267] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 2103) in paragraph at lines 14476--14477 +\TU/LucidaBrightOT(0)/m/n/10 Color scales [][][][][][][][], [][][][][][][][], [ +][][][][][][][] + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 14476--14477 +\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 14476--14477 +[][][][][][][][] \TU/LucidaBrightOT(0)/m/n/10 and [][][][][][][][] provide disc +rete sets of + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14485. +File: figure/pos-scale-color-10-1.pdf Graphic file (type pdf) +<use figure/pos-scale-color-10-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [268] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14524. +File: figure/pos-annotate-01-1.pdf Graphic file (type pdf) +<use figure/pos-annotate-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [269] +Package color Info: Redefining color shadecolor on input line 14552. + +Overfull \hbox (4.39212pt too wide) in paragraph at lines 14557--14557 +[] []\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 +oleDK(0)/m/n/8 ([][]xlim[] []=[] []\TU/LucidaConsoleDK(0)/b/n/8 c[][]\TU/Lucida +ConsoleDK(0)/m/n/8 ([][]5[][],[] []10[][]),[] []ylim[] []=[] []\TU/LucidaConsol +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) +<use figure/pos-inset-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14577. +File: figure/pos-annotate-03-1.pdf Graphic file (type pdf) +<use figure/pos-annotate-03-1.pdf> + [270] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [271] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14631. +File: figure/pos-wind-05-1.pdf Graphic file (type pdf) +<use figure/pos-wind-05-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 5374) in paragraph at lines 14654--14655 +[]\TU/LucidaBrightOT(0)/m/n/10 For an equivalent plot, using an empirical densi +ty, we have to use + [] + +Package color Info: Redefining color shadecolor on input line 14657. +File: figure/pos-wind-06-1.pdf Graphic file (type pdf) +<use figure/pos-wind-06-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [272] +Package color Info: Redefining color shadecolor on input line 14673. +Package color Info: Redefining color shadecolor on input line 14681. +File: figure/pos-wind-08-1.pdf Graphic file (type pdf) +<use figure/pos-wind-08-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14716. +File: figure/pos-main-chunk-54-1.pdf Graphic file (type pdf) +<use figure/pos-main-chunk-54-1.pdf> + [273] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [274] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14758. +File: figure/pos-themes-01-1.pdf Graphic file (type pdf) +<use figure/pos-themes-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 3009) in paragraph at lines 14776--14777 +\TU/LucidaBrightOT(0)/m/n/10 of the predefined themes from ‘\TU/LucidaSansOT(0) +/m/n/10 ggplot2\TU/LucidaBrightOT(0)/m/n/10 ’[][]: [][][][][][][][], [][][][][] +[][][], + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 14776--14777 +[][][][][][][][]\TU/LucidaBrightOT(0)/m/n/10 , [][][][][][][][], [][][][][][][] +[], [][][][][][][][] and + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1783) in paragraph at lines 14780--14781 +[][][][][][] \TU/LucidaBrightOT(0)/m/n/10 Predefined “themes” like [][][][][][] +[][] are, in reality, not themes + [] + + +Underfull \hbox (badness 1308) in paragraph at lines 14780--14781 +\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 2173) in paragraph at lines 14780--14781 +\TU/LucidaBrightOT(0)/m/n/10 when called depend on the arguments passed to thei +r parameters. In + [] + +[275] +Package color Info: Redefining color shadecolor on input line 14786. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14798. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14808. +Package color Info: Redefining color shadecolor on input line 14822. +File: figure/pos-themes-11-1.pdf Graphic file (type pdf) +<use figure/pos-themes-11-1.pdf> + [276] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14850. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +LaTeX Warning: Citation 'Wickham2016' on page 277 undefined on input line 14860 +. + + +LaTeX Warning: Citation 'Wickham2016' on page 277 undefined on input line 14860 +. + + +LaTeX Warning: Citation 'Chang2018' on page 277 undefined on input line 14860. + + +LaTeX Warning: Citation 'Chang2018' on page 277 undefined on input line 14860. + +[277] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14872. +Package color Info: Redefining color shadecolor on input line 14889. +File: figure/pos-themes-21-1.pdf Graphic file (type pdf) +<use figure/pos-themes-21-1.pdf> + [278] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14912. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14937. +Package color Info: Redefining color shadecolor on input line 14947. +File: figure/pos-themes-33-1.pdf Graphic file (type pdf) +<use figure/pos-themes-33-1.pdf> + +Underfull \vbox (badness 5592) detected at line 14960 + [] + + +Underfull \vbox (badness 5592) detected at line 14960 + [] + +[279] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 14973. +Package color Info: Redefining color shadecolor on input line 14994. + [280] +Package color Info: Redefining color shadecolor on input line 15004. +File: figure/pos-patchwork-03-1.pdf Graphic file (type pdf) +<use figure/pos-patchwork-03-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 3471) in paragraph at lines 15027--15028 +[]\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 + [] + +[281] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15037. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15053. +File: figure/pos-plotmath-02-1.pdf Graphic file (type pdf) +<use figure/pos-plotmath-02-1.pdf> + [282] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15076. +File: figure/pos-plotmath-02a-1.pdf Graphic file (type pdf) +<use figure/pos-plotmath-02a-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15106. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15118. +Package color Info: Redefining color shadecolor on input line 15130. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15142. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15154. +Package color Info: Redefining color shadecolor on input line 15162. +Package color Info: Redefining color shadecolor on input line 15172. +Package color Info: Redefining color shadecolor on input line 15182. + [283] [284] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15197. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15224. +File: figure/pos-expr-bquote-01-1.pdf Graphic file (type pdf) +<use figure/pos-expr-bquote-01-1.pdf> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15245. + [285] +File: figure/pos-expr-substitute-01-1.pdf Graphic file (type pdf) +<use figure/pos-expr-substitute-01-1.pdf> +Package color Info: Redefining color shadecolor on input line 15266. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [286] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15319. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [287] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15341. +Package color Info: Redefining color shadecolor on input line 15353. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15366. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15383. +Package color Info: Redefining color shadecolor on input line 15396. + [288] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15423. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15437. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15449. + [289] + +LaTeX Warning: Citation 'Wickham2016' on page 290 undefined on input line 15465 +. + + +LaTeX Warning: Citation 'Wickham2016' on page 290 undefined on input line 15465 +. + + +LaTeX Warning: Citation 'Chang2018' on page 290 undefined on input line 15465. + + +LaTeX Warning: Citation 'Chang2018' on page 290 undefined on input line 15465. + + +LaTeX Warning: Citation 'Murrell2019' on page 290 undefined on input line 15465 +. + + +LaTeX Warning: Citation 'Murrell2019' on page 290 undefined on input line 15465 +. + +[290] +Underfull \vbox (badness 10000) detected at line 15476 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 15476 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 15476 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 15476 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 15476 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 15476 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 15476 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 15476 +[] + [] + +Chapter 8. + +Overfull \hbox (30.0pt too wide) in paragraph at lines 15482--15482 +| + [] + + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[291 + + +] +Package color Info: Redefining color shadecolor on input line 15507. +Package color Info: Redefining color shadecolor on input line 15517. + [292] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15550. +Package color Info: Redefining color shadecolor on input line 15564. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [293] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15588. +Package color Info: Redefining color shadecolor on input line 15605. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15625. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15639. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15650. + [294] +Package color Info: Redefining color shadecolor on input line 15662. +Package color Info: Redefining color shadecolor on input line 15677. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15718. + [295] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15779. +Package color Info: Redefining color shadecolor on input line 15791. + [296] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15824. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15845. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Overfull \vbox (1.25632pt too high) detected at line 15859 + [] + +[297] [298] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15870. +Package color Info: Redefining color shadecolor on input line 15880. +Package color Info: Redefining color shadecolor on input line 15888. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 1708) in paragraph at lines 15916--15917 +[]\TU/LucidaBrightOT(0)/m/n/10 Example file [][][][][][] contains comma-separat +ed-values with + [] + +Package color Info: Redefining color shadecolor on input line 15919. +Package color Info: Redefining color shadecolor on input line 15930. +[299] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15939. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 15966. +Package color Info: Redefining color shadecolor on input line 15994. +Package color Info: Redefining color shadecolor on input line 16003. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16023. + [300] +Package color Info: Redefining color shadecolor on input line 16033. +Package color Info: Redefining color shadecolor on input line 16041. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16071. +Package color Info: Redefining color shadecolor on input line 16080. +Package color Info: Redefining color shadecolor on input line 16090. + [301] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16124. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16134. +Package color Info: Redefining color shadecolor on input line 16143. + [302] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16166. +Package color Info: Redefining color shadecolor on input line 16176. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [303] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16202. +Package color Info: Redefining color shadecolor on input line 16219. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16238. + [304] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16257. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16278. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [305] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16306. +Package color Info: Redefining color shadecolor on input line 16325. + +Underfull \vbox (badness 10000) detected at line 16344 + [] + +[306] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16353. +Package color Info: Redefining color shadecolor on input line 16363. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16384. + [307] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16429. + [308] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Underfull \hbox (badness 10000) in paragraph at lines 16468--16469 +[]\TU/LucidaBrightOT(0)/m/n/10 Next we extract the text from its [][][][][][] a +ttribute, using functions + [] + +Package color Info: Redefining color shadecolor on input line 16471. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16489. + [309] [310] +File: figures/Book1-xlsx.png Graphic file (type bmp) +<figures/Book1-xlsx.png> + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16540. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16554. +Package color Info: Redefining color shadecolor on input line 16574. + +Overfull \hbox (9.21608pt too wide) in paragraph at lines 16576--16576 +[][]\TU/LucidaConsoleDK(0)/m/n/8 Book1_region.df[] []<-[] []\TU/LucidaConsoleDK +(0)/b/n/8 read_excel[][]\TU/LucidaConsoleDK(0)/m/n/8 ([][]"extdata/Book1.xlsx"[ +][],[] []sheet[] []=[] []"my data"[][],[] []range[] []=[] []"A1:B8"[][])[][] + [] + +[311] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16602. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16626. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +File: figures/my-data-xlsx.png Graphic file (type bmp) +<figures/my-data-xlsx.png> + [312] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16653. +Package color Info: Redefining color shadecolor on input line 16663. + [313] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16699. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16723. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16743. + [314] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16771. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16793. + [315] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [316] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16855. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16887. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [317] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 16917. +Package color Info: Redefining color shadecolor on input line 16951. + +Overfull \hbox (14.04007pt too wide) in paragraph at lines 16981--16981 +[]\TU/LucidaConsoleDK(0)/m/n/8 ## [1] D0,D1,D2 : pevpr, valid_yr_count **A +CTIVE GRID** ( 216576 values per variable)[] + [] + +[318] +Package color Info: Redefining color shadecolor on input line 16986. +Package color Info: Redefining color shadecolor on input line 17004. +Package color Info: Redefining color shadecolor on input line 17022. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 17045. + [319] +Package color Info: Redefining color shadecolor on input line 17075. +Package color Info: Redefining color shadecolor on input line 17098. + +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) [320] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 17133. +Package color Info: Redefining color shadecolor on input line 17145. +Package color Info: Redefining color shadecolor on input line 17165. +Package color Info: Redefining color shadecolor on input line 17186. + [321] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) +Package color Info: Redefining color shadecolor on input line 17224. +Package color Info: Redefining color shadecolor on input line 17238. + [322] +(C:/Users/Aphalo/Documents/texmf.user\tex/latex/lucidaot\LucidaConsoleDK.fontsp +ec) + +LaTeX Warning: Citation 'Wickham2017' on page 323 undefined on input line 17272 +. + + +LaTeX Warning: Citation 'Wickham2017' on page 323 undefined on input line 17272 +. + +Package color Info: Redefining color shadecolor on input line 17277. +[323] +Package color Info: Redefining color shadecolor on input line 17332. + + +LaTeX Warning: Citation 'Burns1998' on page 324 undefined on input line 17342. + + +LaTeX Warning: Citation 'Burns1998' on page 324 undefined on input line 17342. + + +LaTeX Warning: Citation 'Burns1998' on page 324 undefined on input line 17342. + + +LaTeX Warning: Citation 'Burns2012' on page 324 undefined on input line 17342. + + +LaTeX Warning: Citation 'Burns2012' on page 324 undefined on input line 17342. + + +LaTeX Warning: Citation 'Burns2011' on page 324 undefined on input line 17342. + + +LaTeX Warning: Citation 'Burns2011' on page 324 undefined on input line 17342. + +[324] + +LaTeX Warning: Empty bibliography on input line 17350. + +runsystem(makeindex using-r-main-crc.idx)...executed (allowed). + +(using-r-main-crc.ind +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \hbox (badness 10000) detected at line 1 +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[325 + + + + +] [326] [327] [328] [329] [330] [331]) [332] +runsystem(makeindex rcatsidx.idx)...executed (allowed). + + (rcatsidx.ind +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \hbox (badness 10000) detected at line 1 +[] + [] + +LaTeX Font Info: Font shape `TU/LucidaSansOT(0)/b/sl' in size <18> not avail +able +(Font) Font shape `TU/LucidaSansOT(0)/b/it' tried instead on input + line 1. + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[333 + + + +] [334] [335] [336] [337]) [338] +runsystem(makeindex rindex.idx)...executed (allowed). + + (rindex.ind +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \vbox (badness 10000) detected at line 1 + [] + + +Overfull \hbox (395.75pt too wide) detected at line 1 +[] + [] + + +Underfull \hbox (badness 10000) detected at line 1 +[] + [] + + +Underfull \hbox (badness 10000) has occurred while \output is active + [][][][] + [] + +[339 + + + +] [340] [341] [342] [343]) [344] (using-r-main-crc.aux +(frontmatter/preface.aux)) + +LaTeX Font Warning: Some font shapes were not available, defaults substituted. + + +LaTeX Warning: There were undefined references. + + +Package biblatex Warning: Please (re)run Biber on the file: +(biblatex) using-r-main-crc +(biblatex) and rerun LaTeX afterwards. + +Package logreq Info: Writing requests to 'using-r-main-crc.run.xml'. +\openout1 = `using-r-main-crc.run.xml'. + + ) +Here is how much of TeX's memory you used: + 25303 strings out of 416397 + 659771 string characters out of 2937051 + 1236857 words of memory out of 3000000 + 36923 multiletter control sequences out of 15000+200000 + 539216 words of font info for 177 fonts, out of 3000000 for 9000 + 68 hyphenation exceptions out of 8191 + 60i,8n,113p,2174b,5390s stack positions out of 5000i,500n,10000p,200000b,50000s + +Output written on using-r-main-crc.pdf (355 pages). diff --git a/using-r-main-crc.run.xml b/using-r-main-crc.run.xml index 0d108b6c..89c7a5a8 100644 --- a/using-r-main-crc.run.xml +++ b/using-r-main-crc.run.xml @@ -41,7 +41,7 @@ > ]> <requests version="1.0"> - <internal package="biblatex" priority="9" active="0"> + <internal package="biblatex" priority="9" active="1"> <generic>latex</generic> <provides type="dynamic"> <file>using-r-main-crc.bcf</file> @@ -62,7 +62,7 @@ <file>english.lbx</file> </requires> </internal> - <external package="biblatex" priority="5" active="0"> + <external package="biblatex" priority="5" active="1"> <generic>biber</generic> <cmdline> <binary>biber</binary> diff --git a/using-r-main-crc.synctex b/using-r-main-crc.synctex index 37937d4d..c08c61ad 100644 --- a/using-r-main-crc.synctex +++ b/using-r-main-crc.synctex @@ -1,12 +1,12 @@ SyncTeX Version:1 -Input:1:D:\aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.tex -Input:2:D:\aphalo\Documents\Own_manuscripts\Books\using-r\krantz.cls +Input:1:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.tex +Input:2:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\krantz.cls Input:3:C:\Program Files\MiKTeX 2.9\tex\latex\base\bk10.clo Input:4:C:\Program Files\MiKTeX 2.9\tex\latex\graphics\color.sty Input:5:C:\Program Files\MiKTeX 2.9\tex\latex\graphics-cfg\color.cfg Input:6:C:\Program Files\MiKTeX 2.9\tex\latex\graphics-def\xetex.def Input:7:C:\Program Files\MiKTeX 2.9\tex\latex\framed\framed.sty -Input:8:D:\aphalo\Documents\Own_manuscripts\Books\using-r\knitr.sty +Input:8:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\knitr.sty Input:9:C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphicx.sty Input:10:C:\Program Files\MiKTeX 2.9\tex\latex\graphics\keyval.sty Input:11:C:\Program Files\MiKTeX 2.9\tex\latex\graphics\graphics.sty @@ -38,126322 +38,126243 @@ Input:36:C:\Program Files\MiKTeX 2.9\tex\latex\auxhook\auxhook.sty Input:37:C:\Program Files\MiKTeX 2.9\tex\generic\atbegshi\atbegshi.sty Input:38:C:\Program Files\MiKTeX 2.9\tex\latex\media9\pdfbase.sty Input:39:C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\expl3.sty -Input:40:C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\expl3-code.tex -Input:41:C:\Program Files\MiKTeX 2.9\tex\latex\l3kernel\l3deprecation.def -Input:42:C:\Program Files\MiKTeX 2.9\tex\latex\l3backend\l3backend-xdvipdfmx.def -Input:43:C:\Program Files\MiKTeX 2.9\tex\latex\l3packages\l3keys2e\l3keys2e.sty -Input:44:C:\Program Files\MiKTeX 2.9\tex\latex\ocgx2\ocgbase.sty -Input:45:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty -Input:46:C:\Program Files\MiKTeX 2.9\tex\latex\kvoptions\kvoptions.sty -Input:47:C:\Program Files\MiKTeX 2.9\tex\latex\logreq\logreq.sty -Input:48:C:\Program Files\MiKTeX 2.9\tex\latex\logreq\logreq.def -Input:49:C:\Program Files\MiKTeX 2.9\tex\latex\url\url.sty -Input:50:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\blx-dm.def -Input:51:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\blx-unicode.def -Input:52:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\blx-compat.def -Input:53:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.def -Input:54:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\bbx\authoryear-comp.bbx -Input:55:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\bbx\authoryear.bbx -Input:56:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\bbx\standard.bbx -Input:57:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\cbx\authoryear-comp.cbx -Input:58:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.cfg -Input:59:D:\aphalo\Documents\Own_manuscripts\Books\using-r\abbrev.sty -Input:60:C:\Program Files\MiKTeX 2.9\tex\latex\tools\xspace.sty -Input:61:C:\Program Files\MiKTeX 2.9\tex\latex\base\textcomp.sty -Input:62:C:\Program Files\MiKTeX 2.9\tex\latex\base\ts1enc.def -Input:63:C:\Program Files\MiKTeX 2.9\tex\latex\was\upgreek.sty -Input:64:D:\aphalo\Documents\Own_manuscripts\Books\using-r\usingr.sty -Input:65:C:\Program Files\MiKTeX 2.9\tex\latex\booktabs\booktabs.sty -Input:66:C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math.sty -Input:67:C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math-xetex.sty -Input:68:C:\Program Files\MiKTeX 2.9\tex\latex\l3packages\xparse\xparse.sty -Input:69:C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.sty -Input:70:C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec-xetex.sty -Input:71:C:\Program Files\MiKTeX 2.9\tex\latex\base\fontenc.sty -Input:72:C:\Program Files\MiKTeX 2.9\tex\latex\base\tuenc.def -Input:73:C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.cfg -Input:74:C:\Program Files\MiKTeX 2.9\tex\latex\base\fix-cm.sty -Input:75:C:\Program Files\MiKTeX 2.9\tex\latex\base\ts1enc.def -Input:76:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsmath.sty -Input:77:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amstext.sty -Input:78:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsgen.sty -Input:79:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsbsy.sty -Input:80:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsopn.sty -Input:81:C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math-table.tex -Input:82:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:83:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:84:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:85:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:86:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:87:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec -Input:88:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec -Input:89:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec -Input:90:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec -Input:91:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec -Input:92:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec -Input:93:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec -Input:94:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:95:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:96:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:97:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:98:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:99:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:100:C:\Program Files\MiKTeX 2.9\tex\latex\imakeidx\imakeidx.sty -Input:101:C:\Program Files\MiKTeX 2.9\tex\generic\iftex\ifxetex.sty -Input:102:C:\Program Files\MiKTeX 2.9\tex\generic\iftex\ifluatex.sty -Input:103:C:\Program Files\MiKTeX 2.9\tex\latex\tools\multicol.sty -Input:104:C:\Program Files\MiKTeX 2.9\tex\latex\upquote\upquote.sty -Input:105:D:\aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.aux -Input:106:D:\aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.aux -Input:107:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\lbx\english.lbx -Input:108:D:\aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.bbl +Input:40:C:\Program Files\MiKTeX 2.9\tex\latex\l3backend\l3backend-xdvipdfmx.def +Input:41:C:\Program Files\MiKTeX 2.9\tex\latex\l3packages\l3keys2e\l3keys2e.sty +Input:42:C:\Program Files\MiKTeX 2.9\tex\latex\ocgx2\ocgbase.sty +Input:43:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.sty +Input:44:C:\Program Files\MiKTeX 2.9\tex\latex\kvoptions\kvoptions.sty +Input:45:C:\Program Files\MiKTeX 2.9\tex\latex\logreq\logreq.sty +Input:46:C:\Program Files\MiKTeX 2.9\tex\latex\logreq\logreq.def +Input:47:C:\Program Files\MiKTeX 2.9\tex\latex\url\url.sty +Input:48:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\blx-dm.def +Input:49:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\blx-unicode.def +Input:50:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\blx-compat.def +Input:51:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.def +Input:52:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\bbx\authoryear-comp.bbx +Input:53:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\bbx\authoryear.bbx +Input:54:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\bbx\standard.bbx +Input:55:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\cbx\authoryear-comp.cbx +Input:56:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\biblatex.cfg +Input:57:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\abbrev.sty +Input:58:C:\Program Files\MiKTeX 2.9\tex\latex\tools\xspace.sty +Input:59:C:\Program Files\MiKTeX 2.9\tex\latex\base\textcomp.sty +Input:60:C:\Program Files\MiKTeX 2.9\tex\latex\was\upgreek.sty +Input:61:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\usingr.sty +Input:62:C:\Program Files\MiKTeX 2.9\tex\latex\booktabs\booktabs.sty +Input:63:C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math.sty +Input:64:C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math-xetex.sty +Input:65:C:\Program Files\MiKTeX 2.9\tex\latex\l3packages\xparse\xparse.sty +Input:66:C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.sty +Input:67:C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec-xetex.sty +Input:68:C:\Program Files\MiKTeX 2.9\tex\latex\base\fontenc.sty +Input:69:C:\Program Files\MiKTeX 2.9\tex\latex\fontspec\fontspec.cfg +Input:70:C:\Program Files\MiKTeX 2.9\tex\latex\base\fix-cm.sty +Input:71:C:\Program Files\MiKTeX 2.9\tex\latex\base\ts1enc.def +Input:72:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsmath.sty +Input:73:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amstext.sty +Input:74:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsgen.sty +Input:75:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsbsy.sty +Input:76:C:\Program Files\MiKTeX 2.9\tex\latex\amsmath\amsopn.sty +Input:77:C:\Program Files\MiKTeX 2.9\tex\latex\unicode-math\unicode-math-table.tex +Input:78:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:79:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:80:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:81:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:82:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:83:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaBrightOT.fontspec +Input:84:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec +Input:85:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec +Input:86:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec +Input:87:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec +Input:88:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec +Input:89:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaSansOT.fontspec +Input:90:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:91:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:92:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:93:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:94:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:95:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:96:C:\Program Files\MiKTeX 2.9\tex\latex\imakeidx\imakeidx.sty +Input:97:C:\Program Files\MiKTeX 2.9\tex\generic\iftex\ifxetex.sty +Input:98:C:\Program Files\MiKTeX 2.9\tex\generic\iftex\ifluatex.sty +Input:99:C:\Program Files\MiKTeX 2.9\tex\latex\tools\multicol.sty +Input:100:C:\Program Files\MiKTeX 2.9\tex\latex\upquote\upquote.sty +Input:101:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.aux +Input:102:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.aux +Input:103:C:\Program Files\MiKTeX 2.9\tex\latex\biblatex\lbx\english.lbx +Input:104:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.bbl Output:pdf Magnification:1000 Unit:1 X Offset:0 Y Offset:0 Content: -!7835 +!7717 {1 -[1,81:4262630,47279633:28320399,43253760,0 -(1,81:4262630,4025873:0,0,0 -[1,81:-473657,4025873:25952256,0,0 -(1,81:-473657,-710414:25952256,0,0 -h1,81:-473657,-710414:0,0,0 -(1,81:-473657,-710414:0,0,0 -(1,81:-473657,-710414:0,0,0 -g1,81:-473657,-710414 -(1,81:-473657,-710414:65781,0,65781 -g1,81:-407876,-710414 -[1,81:-407876,-644633:0,0,0 +[1,87:4262630,47279633:28320399,43253760,0 +(1,87:4262630,4025873:0,0,0 +[1,87:-473657,4025873:25952256,0,0 +(1,87:-473657,-710414:25952256,0,0 +h1,87:-473657,-710414:0,0,0 +(1,87:-473657,-710414:0,0,0 +(1,87:-473657,-710414:0,0,0 +g1,87:-473657,-710414 +(1,87:-473657,-710414:65781,0,65781 +g1,87:-407876,-710414 +[1,87:-407876,-644633:0,0,0 ] ) -k1,81:-473657,-710414:-65781 +k1,87:-473657,-710414:-65781 ) ) -k1,81:25478599,-710414:25952256 -g1,81:25478599,-710414 +k1,87:25478599,-710414:25952256 +g1,87:25478599,-710414 ) ] ) -[1,81:6630773,47279633:25952256,43253760,0 -[1,81:6630773,4812305:25952256,786432,0 -(1,81:6630773,4812305:25952256,0,0 -(1,81:6630773,4812305:25952256,0,0 -g1,81:3078558,4812305 -[1,81:3078558,4812305:0,0,0 -(1,81:3078558,2439708:0,1703936,0 -k1,81:1358238,2439708:-1720320 -(1,81:1358238,2439708:1720320,1703936,0 -(1,81:1358238,2439708:1179648,16384,0 -r1,81:2537886,2439708:1179648,16384,0 +[1,87:6630773,47279633:25952256,43253760,0 +[1,87:6630773,4812305:25952256,786432,0 +(1,87:6630773,4812305:25952256,0,0 +(1,87:6630773,4812305:25952256,0,0 +g1,87:3078558,4812305 +[1,87:3078558,4812305:0,0,0 +(1,87:3078558,2439708:0,1703936,0 +k1,87:1358238,2439708:-1720320 +(1,87:1358238,2439708:1720320,1703936,0 +(1,87:1358238,2439708:1179648,16384,0 +r1,87:2537886,2439708:1179648,16384,0 ) -g1,81:3062174,2439708 -(1,81:3062174,2439708:16384,1703936,0 -[1,81:3062174,2439708:25952256,1703936,0 -(1,81:3062174,1915420:25952256,1179648,0 -(1,81:3062174,1915420:16384,1179648,0 -r1,81:3078558,1915420:16384,1179648,0 +g1,87:3062174,2439708 +(1,87:3062174,2439708:16384,1703936,0 +[1,87:3062174,2439708:25952256,1703936,0 +(1,87:3062174,1915420:25952256,1179648,0 +(1,87:3062174,1915420:16384,1179648,0 +r1,87:3078558,1915420:16384,1179648,0 ) -k1,81:29014430,1915420:25935872 -g1,81:29014430,1915420 +k1,87:29014430,1915420:25935872 +g1,87:29014430,1915420 ) ] ) ) ) ] -[1,81:3078558,4812305:0,0,0 -(1,81:3078558,2439708:0,1703936,0 -g1,81:29030814,2439708 -g1,81:36135244,2439708 -(1,81:36135244,2439708:1720320,1703936,0 -(1,81:36135244,2439708:16384,1703936,0 -[1,81:36135244,2439708:25952256,1703936,0 -(1,81:36135244,1915420:25952256,1179648,0 -(1,81:36135244,1915420:16384,1179648,0 -r1,81:36151628,1915420:16384,1179648,0 +[1,87:3078558,4812305:0,0,0 +(1,87:3078558,2439708:0,1703936,0 +g1,87:29030814,2439708 +g1,87:36135244,2439708 +(1,87:36135244,2439708:1720320,1703936,0 +(1,87:36135244,2439708:16384,1703936,0 +[1,87:36135244,2439708:25952256,1703936,0 +(1,87:36135244,1915420:25952256,1179648,0 +(1,87:36135244,1915420:16384,1179648,0 +r1,87:36151628,1915420:16384,1179648,0 ) -k1,81:62087500,1915420:25935872 -g1,81:62087500,1915420 +k1,87:62087500,1915420:25935872 +g1,87:62087500,1915420 ) ] ) -g1,81:36675916,2439708 -(1,81:36675916,2439708:1179648,16384,0 -r1,81:37855564,2439708:1179648,16384,0 +g1,87:36675916,2439708 +(1,87:36675916,2439708:1179648,16384,0 +r1,87:37855564,2439708:1179648,16384,0 ) ) -k1,81:3078556,2439708:-34777008 +k1,87:3078556,2439708:-34777008 ) ] -[1,81:3078558,4812305:0,0,0 -(1,81:3078558,49800853:0,16384,2228224 -k1,81:1358238,49800853:-1720320 -(1,81:1358238,49800853:1720320,16384,2228224 -(1,81:1358238,49800853:1179648,16384,0 -r1,81:2537886,49800853:1179648,16384,0 +[1,87:3078558,4812305:0,0,0 +(1,87:3078558,49800853:0,16384,2228224 +k1,87:1358238,49800853:-1720320 +(1,87:1358238,49800853:1720320,16384,2228224 +(1,87:1358238,49800853:1179648,16384,0 +r1,87:2537886,49800853:1179648,16384,0 ) -g1,81:3062174,49800853 -(1,81:3062174,52029077:16384,1703936,0 -[1,81:3062174,52029077:25952256,1703936,0 -(1,81:3062174,51504789:25952256,1179648,0 -(1,81:3062174,51504789:16384,1179648,0 -r1,81:3078558,51504789:16384,1179648,0 +g1,87:3062174,49800853 +(1,87:3062174,52029077:16384,1703936,0 +[1,87:3062174,52029077:25952256,1703936,0 +(1,87:3062174,51504789:25952256,1179648,0 +(1,87:3062174,51504789:16384,1179648,0 +r1,87:3078558,51504789:16384,1179648,0 ) -k1,81:29014430,51504789:25935872 -g1,81:29014430,51504789 +k1,87:29014430,51504789:25935872 +g1,87:29014430,51504789 ) ] ) ) ) ] -[1,81:3078558,4812305:0,0,0 -(1,81:3078558,49800853:0,16384,2228224 -g1,81:29030814,49800853 -g1,81:36135244,49800853 -(1,81:36135244,49800853:1720320,16384,2228224 -(1,81:36135244,52029077:16384,1703936,0 -[1,81:36135244,52029077:25952256,1703936,0 -(1,81:36135244,51504789:25952256,1179648,0 -(1,81:36135244,51504789:16384,1179648,0 -r1,81:36151628,51504789:16384,1179648,0 +[1,87:3078558,4812305:0,0,0 +(1,87:3078558,49800853:0,16384,2228224 +g1,87:29030814,49800853 +g1,87:36135244,49800853 +(1,87:36135244,49800853:1720320,16384,2228224 +(1,87:36135244,52029077:16384,1703936,0 +[1,87:36135244,52029077:25952256,1703936,0 +(1,87:36135244,51504789:25952256,1179648,0 +(1,87:36135244,51504789:16384,1179648,0 +r1,87:36151628,51504789:16384,1179648,0 ) -k1,81:62087500,51504789:25935872 -g1,81:62087500,51504789 +k1,87:62087500,51504789:25935872 +g1,87:62087500,51504789 ) ] ) -g1,81:36675916,49800853 -(1,81:36675916,49800853:1179648,16384,0 -r1,81:37855564,49800853:1179648,16384,0 +g1,87:36675916,49800853 +(1,87:36675916,49800853:1179648,16384,0 +r1,87:37855564,49800853:1179648,16384,0 ) ) -k1,81:3078556,49800853:-34777008 +k1,87:3078556,49800853:-34777008 ) ] -g1,81:6630773,4812305 +g1,87:6630773,4812305 ) ) ] -[1,81:6630773,45706769:25952256,40108032,0 -(1,81:6630773,45706769:25952256,40108032,0 -(1,81:6630773,45706769:0,0,0 -g1,81:6630773,45706769 +[1,87:6630773,45706769:25952256,40108032,0 +(1,87:6630773,45706769:25952256,40108032,0 +(1,87:6630773,45706769:0,0,0 +g1,87:6630773,45706769 ) -[1,81:6630773,45706769:25952256,40108032,0 -[1,81:6630773,12262553:25952256,6663816,193461 -(1,81:6630773,5643548:25952256,505283,126483 -h1,81:6630773,5643548:0,0,0 -g1,81:8622412,5643548 -g1,81:9271873,5643548 -k1,81:22055654,5643548:10527376 -k1,81:32583030,5643548:10527376 +[1,87:6630773,45706769:25952256,40108032,0 +[1,87:6630773,12262553:25952256,6663816,193461 +(1,87:6630773,5643548:25952256,505283,126483 +h1,87:6630773,5643548:0,0,0 +g1,87:8622412,5643548 +g1,87:9271873,5643548 +k1,87:22055654,5643548:10527376 +k1,87:32583030,5643548:10527376 ) -(1,81:6630773,6607915:25952256,32768,229376 -(1,81:6630773,6607915:0,32768,229376 -(1,81:6630773,6607915:5505024,32768,229376 -r1,81:12135797,6607915:5505024,262144,229376 +(1,87:6630773,6607915:25952256,32768,229376 +(1,87:6630773,6607915:0,32768,229376 +(1,87:6630773,6607915:5505024,32768,229376 +r1,87:12135797,6607915:5505024,262144,229376 ) -k1,81:6630773,6607915:-5505024 +k1,87:6630773,6607915:-5505024 ) -(1,81:6630773,6607915:25952256,32768,0 -r1,81:32583029,6607915:25952256,32768,0 +(1,87:6630773,6607915:25952256,32768,0 +r1,87:32583029,6607915:25952256,32768,0 ) ) -(1,81:6630773,10158833:25952256,1178878,19565 -h1,81:6630773,10158833:0,0,0 -g1,81:11501184,10158833 -k1,81:22558171,10158833:10024858 -k1,81:32583029,10158833:10024858 +(1,87:6630773,10158833:25952256,1178878,19565 +h1,87:6630773,10158833:0,0,0 +g1,87:11501184,10158833 +k1,87:22558171,10158833:10024858 +k1,87:32583029,10158833:10024858 ) -(1,81:6630773,12262553:25952256,727607,193461 -h1,81:6630773,12262553:0,0,0 -g1,81:7872706,12262553 -g1,81:9172206,12262553 -g1,81:11222905,12262553 -g1,81:15161984,12262553 -g1,81:17598664,12262553 -g1,81:21138551,12262553 -k1,81:28590625,12262553:3992404 -k1,81:32583029,12262553:3992404 +(1,87:6630773,12262553:25952256,727607,193461 +h1,87:6630773,12262553:0,0,0 +g1,87:7872706,12262553 +g1,87:9172206,12262553 +g1,87:11222905,12262553 +g1,87:15161984,12262553 +g1,87:17598664,12262553 +g1,87:21138551,12262553 +k1,87:28590625,12262553:3992404 +k1,87:32583029,12262553:3992404 ) ] -h1,81:6630773,29404534:0,0,0 +h1,87:6630773,29404534:0,0,0 ] -(1,81:32583029,45706769:0,0,0 -g1,81:32583029,45706769 +(1,87:32583029,45706769:0,0,0 +g1,87:32583029,45706769 ) ) ] -(1,81:6630773,47279633:25952256,0,0 -h1,81:6630773,47279633:25952256,0,0 +(1,87:6630773,47279633:25952256,0,0 +h1,87:6630773,47279633:25952256,0,0 ) ] -h1,81:4262630,4025873:0,0,0 +h1,87:4262630,4025873:0,0,0 ] !4140 }1 -Input:109:D:\aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.toc -!90 +Input:105:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.toc +!96 {2 -[109,81:4262630,47279633:28320399,43253760,3931 -(109,81:4262630,4025873:0,0,0 -[109,81:-473657,4025873:25952256,0,0 -(109,81:-473657,-710414:25952256,0,0 -h109,81:-473657,-710414:0,0,0 -(109,81:-473657,-710414:0,0,0 -(109,81:-473657,-710414:0,0,0 -g109,81:-473657,-710414 -(109,81:-473657,-710414:65781,0,65781 -g109,81:-407876,-710414 -[109,81:-407876,-644633:0,0,0 +[105,81:4262630,47279633:28320399,43253760,3931 +(105,81:4262630,4025873:0,0,0 +[105,81:-473657,4025873:25952256,0,0 +(105,81:-473657,-710414:25952256,0,0 +h105,81:-473657,-710414:0,0,0 +(105,81:-473657,-710414:0,0,0 +(105,81:-473657,-710414:0,0,0 +g105,81:-473657,-710414 +(105,81:-473657,-710414:65781,0,65781 +g105,81:-407876,-710414 +[105,81:-407876,-644633:0,0,0 ] ) -k109,81:-473657,-710414:-65781 +k105,81:-473657,-710414:-65781 ) ) -k109,81:25478599,-710414:25952256 -g109,81:25478599,-710414 +k105,81:25478599,-710414:25952256 +g105,81:25478599,-710414 ) ] ) -[109,81:6630773,47279633:25952256,43253760,3931 -[109,81:6630773,4812305:25952256,786432,0 -(109,81:6630773,4812305:25952256,0,0 -(109,81:6630773,4812305:25952256,0,0 -g109,81:3078558,4812305 -[109,81:3078558,4812305:0,0,0 -(109,81:3078558,2439708:0,1703936,0 -k109,81:1358238,2439708:-1720320 -(1,86:1358238,2439708:1720320,1703936,0 -(1,86:1358238,2439708:1179648,16384,0 -r109,81:2537886,2439708:1179648,16384,0 +[105,81:6630773,47279633:25952256,43253760,3931 +[105,81:6630773,4812305:25952256,786432,0 +(105,81:6630773,4812305:25952256,0,0 +(105,81:6630773,4812305:25952256,0,0 +g105,81:3078558,4812305 +[105,81:3078558,4812305:0,0,0 +(105,81:3078558,2439708:0,1703936,0 +k105,81:1358238,2439708:-1720320 +(1,92:1358238,2439708:1720320,1703936,0 +(1,92:1358238,2439708:1179648,16384,0 +r105,81:2537886,2439708:1179648,16384,0 ) -g1,86:3062174,2439708 -(1,86:3062174,2439708:16384,1703936,0 -[1,86:3062174,2439708:25952256,1703936,0 -(1,86:3062174,1915420:25952256,1179648,0 -(1,86:3062174,1915420:16384,1179648,0 -r109,81:3078558,1915420:16384,1179648,0 +g1,92:3062174,2439708 +(1,92:3062174,2439708:16384,1703936,0 +[1,92:3062174,2439708:25952256,1703936,0 +(1,92:3062174,1915420:25952256,1179648,0 +(1,92:3062174,1915420:16384,1179648,0 +r105,81:3078558,1915420:16384,1179648,0 ) -k1,86:29014430,1915420:25935872 -g1,86:29014430,1915420 +k1,92:29014430,1915420:25935872 +g1,92:29014430,1915420 ) ] ) ) ) ] -[109,81:3078558,4812305:0,0,0 -(109,81:3078558,2439708:0,1703936,0 -g109,81:29030814,2439708 -g109,81:36135244,2439708 -(1,86:36135244,2439708:1720320,1703936,0 -(1,86:36135244,2439708:16384,1703936,0 -[1,86:36135244,2439708:25952256,1703936,0 -(1,86:36135244,1915420:25952256,1179648,0 -(1,86:36135244,1915420:16384,1179648,0 -r109,81:36151628,1915420:16384,1179648,0 +[105,81:3078558,4812305:0,0,0 +(105,81:3078558,2439708:0,1703936,0 +g105,81:29030814,2439708 +g105,81:36135244,2439708 +(1,92:36135244,2439708:1720320,1703936,0 +(1,92:36135244,2439708:16384,1703936,0 +[1,92:36135244,2439708:25952256,1703936,0 +(1,92:36135244,1915420:25952256,1179648,0 +(1,92:36135244,1915420:16384,1179648,0 +r105,81:36151628,1915420:16384,1179648,0 ) -k1,86:62087500,1915420:25935872 -g1,86:62087500,1915420 +k1,92:62087500,1915420:25935872 +g1,92:62087500,1915420 ) ] ) -g1,86:36675916,2439708 -(1,86:36675916,2439708:1179648,16384,0 -r109,81:37855564,2439708:1179648,16384,0 +g1,92:36675916,2439708 +(1,92:36675916,2439708:1179648,16384,0 +r105,81:37855564,2439708:1179648,16384,0 ) ) -k109,81:3078556,2439708:-34777008 +k105,81:3078556,2439708:-34777008 ) ] -[109,81:3078558,4812305:0,0,0 -(109,81:3078558,49800853:0,16384,2228224 -k109,81:1358238,49800853:-1720320 -(1,86:1358238,49800853:1720320,16384,2228224 -(1,86:1358238,49800853:1179648,16384,0 -r109,81:2537886,49800853:1179648,16384,0 +[105,81:3078558,4812305:0,0,0 +(105,81:3078558,49800853:0,16384,2228224 +k105,81:1358238,49800853:-1720320 +(1,92:1358238,49800853:1720320,16384,2228224 +(1,92:1358238,49800853:1179648,16384,0 +r105,81:2537886,49800853:1179648,16384,0 ) -g1,86:3062174,49800853 -(1,86:3062174,52029077:16384,1703936,0 -[1,86:3062174,52029077:25952256,1703936,0 -(1,86:3062174,51504789:25952256,1179648,0 -(1,86:3062174,51504789:16384,1179648,0 -r109,81:3078558,51504789:16384,1179648,0 +g1,92:3062174,49800853 +(1,92:3062174,52029077:16384,1703936,0 +[1,92:3062174,52029077:25952256,1703936,0 +(1,92:3062174,51504789:25952256,1179648,0 +(1,92:3062174,51504789:16384,1179648,0 +r105,81:3078558,51504789:16384,1179648,0 ) -k1,86:29014430,51504789:25935872 -g1,86:29014430,51504789 +k1,92:29014430,51504789:25935872 +g1,92:29014430,51504789 ) ] ) ) ) ] -[109,81:3078558,4812305:0,0,0 -(109,81:3078558,49800853:0,16384,2228224 -g109,81:29030814,49800853 -g109,81:36135244,49800853 -(1,86:36135244,49800853:1720320,16384,2228224 -(1,86:36135244,52029077:16384,1703936,0 -[1,86:36135244,52029077:25952256,1703936,0 -(1,86:36135244,51504789:25952256,1179648,0 -(1,86:36135244,51504789:16384,1179648,0 -r109,81:36151628,51504789:16384,1179648,0 +[105,81:3078558,4812305:0,0,0 +(105,81:3078558,49800853:0,16384,2228224 +g105,81:29030814,49800853 +g105,81:36135244,49800853 +(1,92:36135244,49800853:1720320,16384,2228224 +(1,92:36135244,52029077:16384,1703936,0 +[1,92:36135244,52029077:25952256,1703936,0 +(1,92:36135244,51504789:25952256,1179648,0 +(1,92:36135244,51504789:16384,1179648,0 +r105,81:36151628,51504789:16384,1179648,0 ) -k1,86:62087500,51504789:25935872 -g1,86:62087500,51504789 +k1,92:62087500,51504789:25935872 +g1,92:62087500,51504789 ) ] ) -g1,86:36675916,49800853 -(1,86:36675916,49800853:1179648,16384,0 -r109,81:37855564,49800853:1179648,16384,0 +g1,92:36675916,49800853 +(1,92:36675916,49800853:1179648,16384,0 +r105,81:37855564,49800853:1179648,16384,0 ) ) -k109,81:3078556,49800853:-34777008 +k105,81:3078556,49800853:-34777008 ) ] -g109,81:6630773,4812305 +g105,81:6630773,4812305 ) ) ] -[109,81:6630773,45706769:25952256,40108032,0 -(109,81:6630773,45706769:25952256,40108032,0 -(109,81:6630773,45706769:0,0,0 -g109,81:6630773,45706769 +[105,81:6630773,45706769:25952256,40108032,0 +(105,81:6630773,45706769:25952256,40108032,0 +(105,81:6630773,45706769:0,0,0 +g105,81:6630773,45706769 ) -[109,81:6630773,45706769:25952256,40108032,0 -[1,86:6630773,12106481:25952256,6507744,0 -(1,86:6630773,7073297:25952256,32768,229376 -(1,86:6630773,7073297:0,32768,229376 -(1,86:6630773,7073297:5505024,32768,229376 -r1,86:12135797,7073297:5505024,262144,229376 +[105,81:6630773,45706769:25952256,40108032,0 +[1,92:6630773,12106481:25952256,6507744,0 +(1,92:6630773,7073297:25952256,32768,229376 +(1,92:6630773,7073297:0,32768,229376 +(1,92:6630773,7073297:5505024,32768,229376 +r1,92:12135797,7073297:5505024,262144,229376 ) -k1,86:6630773,7073297:-5505024 +k1,92:6630773,7073297:-5505024 ) ) -(1,86:6630773,8803457:25952256,874119,23592 -h1,86:6630773,8803457:0,0,0 -k1,86:22218642,8803457:10364387 -k1,86:32583029,8803457:10364387 +(1,92:6630773,8803457:25952256,874119,23592 +h1,92:6630773,8803457:0,0,0 +k1,92:22218642,8803457:10364387 +k1,92:32583029,8803457:10364387 ) -(1,86:6630773,9419505:25952256,32768,0 -(1,86:6630773,9419505:5505024,32768,0 -r1,86:12135797,9419505:5505024,32768,0 +(1,92:6630773,9419505:25952256,32768,0 +(1,92:6630773,9419505:5505024,32768,0 +r1,92:12135797,9419505:5505024,32768,0 ) -k1,86:22359413,9419505:10223616 -k1,86:32583029,9419505:10223616 +k1,92:22359413,9419505:10223616 +k1,92:32583029,9419505:10223616 ) ] -(109,5:6630773,13603329:25952256,513147,7863 -g109,5:7613813,13603329 -h109,5:7613813,13603329:0,0,0 -g109,5:6630773,13603329 -k109,5:20233752,13603329:11169627 -k109,5:31403379,13603329:11169627 -(109,5:31403379,13603329:1179650,505283,0 -k109,5:31545594,13603329:142215 +(105,5:6630773,13603329:25952256,513147,7863 +g105,5:7613813,13603329 +h105,5:7613813,13603329:0,0,0 +g105,5:6630773,13603329 +k105,5:20151832,13603329:11087707 +k105,5:31239539,13603329:11087707 +(105,5:31239539,13603329:1343490,505283,0 +k105,5:31545594,13603329:306055 ) -g109,5:31403379,13603329 -g109,5:32583029,13603329 +g105,5:31239539,13603329 +g105,5:32583029,13603329 ) -(109,7:6630773,15100177:25952256,505283,134348 -g109,7:7613813,15100177 -h109,7:7613813,15100177:0,0,0 -g109,7:6630773,15100177 -(109,7:6630773,15100177:983040,477757,0 -k109,7:7613813,15100177:574751 +(105,7:6630773,15100177:25952256,505283,134348 +g105,7:7613813,15100177 +h105,7:7613813,15100177:0,0,0 +g105,7:6630773,15100177 +(105,7:6630773,15100177:983040,477757,0 +k105,7:7613813,15100177:574751 ) -g109,7:8463815,15100177 -g109,7:9720140,15100177 -g109,7:12877009,15100177 -g109,7:14301761,15100177 -g109,7:15558086,15100177 -k109,7:24894672,15100177:6508707 -k109,7:31403379,15100177:6508707 -(109,7:31403379,15100177:1179650,477757,0 -k109,7:32174740,15100177:771361 +g105,7:8463815,15100177 +g105,7:9933132,15100177 +g105,7:13090001,15100177 +g105,7:14514753,15100177 +g105,7:15771078,15100177 +k105,7:24919248,15100177:6320291 +k105,7:31239539,15100177:6320291 +(105,7:31239539,15100177:1343490,477757,0 +k105,7:32174740,15100177:935201 ) -g109,7:31403379,15100177 -g109,7:32583029,15100177 +g105,7:31239539,15100177 +g105,7:32583029,15100177 ) -(109,9:6630773,15941665:25952256,513147,126483 -g109,9:9121143,15941665 -h109,9:9121143,15941665:983040,0,0 -h109,9:10104183,15941665:0,0,0 -g109,9:7613813,15941665 -(109,9:7613813,15941665:1507330,477757,0 -k109,9:9121143,15941665:536742 +(105,9:6630773,15941665:25952256,513147,126483 +g105,9:9121143,15941665 +h105,9:9121143,15941665:983040,0,0 +h105,9:10104183,15941665:0,0,0 +g105,9:7613813,15941665 +(105,9:7613813,15941665:1507330,477757,0 +k105,9:9121143,15941665:536742 ) -g109,9:10959427,15941665 -g109,9:11817948,15941665 -g109,9:13220418,15941665 -g109,9:15837270,15941665 -g109,9:15837270,15941665 -(109,9:16156955,15941665:501378,78643,0 -$109,9:16156955,15941665 -(109,9:16320809,15941665:173670,78643,0 +g105,9:10959427,15941665 +g105,9:11817948,15941665 +g105,9:13220418,15941665 +g105,9:15837270,15941665 +g105,9:15837270,15941665 +(105,9:16156955,15941665:501378,78643,0 +$105,9:16156955,15941665 +(105,9:16320809,15941665:173670,78643,0 ) -$109,9:16658333,15941665 +$105,9:16658333,15941665 ) -(109,9:16658333,15941665:501378,78643,0 -(109,9:16822187,15941665:173670,78643,0 +(105,9:16658333,15941665:501378,78643,0 +(105,9:16822187,15941665:173670,78643,0 ) ) -(109,9:17159711,15941665:501378,78643,0 -(109,9:17323565,15941665:173670,78643,0 +(105,9:17159711,15941665:501378,78643,0 +(105,9:17323565,15941665:173670,78643,0 ) ) -(109,9:17661089,15941665:501378,78643,0 -(109,9:17824943,15941665:173670,78643,0 +(105,9:17661089,15941665:501378,78643,0 +(105,9:17824943,15941665:173670,78643,0 ) ) -(109,9:18162467,15941665:501378,78643,0 -(109,9:18326321,15941665:173670,78643,0 +(105,9:18162467,15941665:501378,78643,0 +(105,9:18326321,15941665:173670,78643,0 ) ) -(109,9:18663845,15941665:501378,78643,0 -(109,9:18827699,15941665:173670,78643,0 +(105,9:18663845,15941665:501378,78643,0 +(105,9:18827699,15941665:173670,78643,0 ) ) -(109,9:19165223,15941665:501378,78643,0 -(109,9:19329077,15941665:173670,78643,0 +(105,9:19165223,15941665:501378,78643,0 +(105,9:19329077,15941665:173670,78643,0 ) ) -(109,9:19666601,15941665:501378,78643,0 -(109,9:19830455,15941665:173670,78643,0 +(105,9:19666601,15941665:501378,78643,0 +(105,9:19830455,15941665:173670,78643,0 ) ) -(109,9:20167979,15941665:501378,78643,0 -(109,9:20331833,15941665:173670,78643,0 +(105,9:20167979,15941665:501378,78643,0 +(105,9:20331833,15941665:173670,78643,0 ) ) -(109,9:20669357,15941665:501378,78643,0 -(109,9:20833211,15941665:173670,78643,0 +(105,9:20669357,15941665:501378,78643,0 +(105,9:20833211,15941665:173670,78643,0 ) ) -(109,9:21170735,15941665:501378,78643,0 -(109,9:21334589,15941665:173670,78643,0 +(105,9:21170735,15941665:501378,78643,0 +(105,9:21334589,15941665:173670,78643,0 ) ) -(109,9:21672113,15941665:501378,78643,0 -(109,9:21835967,15941665:173670,78643,0 +(105,9:21672113,15941665:501378,78643,0 +(105,9:21835967,15941665:173670,78643,0 ) ) -(109,9:22173491,15941665:501378,78643,0 -(109,9:22337345,15941665:173670,78643,0 +(105,9:22173491,15941665:501378,78643,0 +(105,9:22337345,15941665:173670,78643,0 ) ) -(109,9:22674869,15941665:501378,78643,0 -(109,9:22838723,15941665:173670,78643,0 +(105,9:22674869,15941665:501378,78643,0 +(105,9:22838723,15941665:173670,78643,0 ) ) -(109,9:23176247,15941665:501378,78643,0 -(109,9:23340101,15941665:173670,78643,0 +(105,9:23176247,15941665:501378,78643,0 +(105,9:23340101,15941665:173670,78643,0 ) ) -(109,9:23677625,15941665:501378,78643,0 -(109,9:23841479,15941665:173670,78643,0 +(105,9:23677625,15941665:501378,78643,0 +(105,9:23841479,15941665:173670,78643,0 ) ) -(109,9:24179003,15941665:501378,78643,0 -(109,9:24342857,15941665:173670,78643,0 +(105,9:24179003,15941665:501378,78643,0 +(105,9:24342857,15941665:173670,78643,0 ) ) -(109,9:24680381,15941665:501378,78643,0 -(109,9:24844235,15941665:173670,78643,0 +(105,9:24680381,15941665:501378,78643,0 +(105,9:24844235,15941665:173670,78643,0 ) ) -(109,9:25181759,15941665:501378,78643,0 -(109,9:25345613,15941665:173670,78643,0 +(105,9:25181759,15941665:501378,78643,0 +(105,9:25345613,15941665:173670,78643,0 ) ) -(109,9:25683137,15941665:501378,78643,0 -(109,9:25846991,15941665:173670,78643,0 +(105,9:25683137,15941665:501378,78643,0 +(105,9:25846991,15941665:173670,78643,0 ) ) -(109,9:26184515,15941665:501378,78643,0 -(109,9:26348369,15941665:173670,78643,0 +(105,9:26184515,15941665:501378,78643,0 +(105,9:26348369,15941665:173670,78643,0 ) ) -(109,9:26685893,15941665:501378,78643,0 -(109,9:26849747,15941665:173670,78643,0 +(105,9:26685893,15941665:501378,78643,0 +(105,9:26849747,15941665:173670,78643,0 ) ) -(109,9:27187271,15941665:501378,78643,0 -(109,9:27351125,15941665:173670,78643,0 +(105,9:27187271,15941665:501378,78643,0 +(105,9:27351125,15941665:173670,78643,0 ) ) -(109,9:27688649,15941665:501378,78643,0 -(109,9:27852503,15941665:173670,78643,0 +(105,9:27688649,15941665:501378,78643,0 +(105,9:27852503,15941665:173670,78643,0 ) ) -(109,9:28190027,15941665:501378,78643,0 -(109,9:28353881,15941665:173670,78643,0 +(105,9:28190027,15941665:501378,78643,0 +(105,9:28353881,15941665:173670,78643,0 ) ) -(109,9:28691405,15941665:501378,78643,0 -(109,9:28855259,15941665:173670,78643,0 +(105,9:28691405,15941665:501378,78643,0 +(105,9:28855259,15941665:173670,78643,0 ) ) -(109,9:29192783,15941665:501378,78643,0 -(109,9:29356637,15941665:173670,78643,0 +(105,9:29192783,15941665:501378,78643,0 +(105,9:29356637,15941665:173670,78643,0 ) ) -(109,9:29694161,15941665:501378,78643,0 -(109,9:29858015,15941665:173670,78643,0 +(105,9:29694161,15941665:501378,78643,0 +(105,9:29858015,15941665:173670,78643,0 ) ) -(109,9:30195539,15941665:501378,78643,0 -(109,9:30359393,15941665:173670,78643,0 +(105,9:30195539,15941665:501378,78643,0 +(105,9:30359393,15941665:173670,78643,0 ) ) -(109,9:30696917,15941665:501378,78643,0 -(109,9:30860771,15941665:173670,78643,0 +(105,9:30696917,15941665:501378,78643,0 +(105,9:30860771,15941665:173670,78643,0 ) ) -(109,9:31403379,15941665:1179650,477757,0 -k109,9:31985341,15941665:581962 -g109,9:32184570,15941665 +(105,9:31239539,15941665:1343490,477757,0 +k105,9:31985341,15941665:745802 +g105,9:32184570,15941665 ) -g109,9:30911859,15941665 -g109,9:32583029,15941665 +g105,9:30911859,15941665 +g105,9:32583029,15941665 ) -(109,11:6630773,16783153:25952256,485622,0 -g109,11:9121143,16783153 -h109,11:9121143,16783153:983040,0,0 -h109,11:10104183,16783153:0,0,0 -g109,11:7613813,16783153 -(109,11:7613813,16783153:1507330,485622,0 -k109,11:9121143,16783153:536742 +(105,11:6630773,16783153:25952256,485622,0 +g105,11:9121143,16783153 +h105,11:9121143,16783153:983040,0,0 +h105,11:10104183,16783153:0,0,0 +g105,11:7613813,16783153 +(105,11:7613813,16783153:1507330,485622,0 +k105,11:9121143,16783153:536742 ) -g109,11:9765361,16783153 -g109,11:9765361,16783153 -(109,11:10140419,16783153:501378,78643,0 -$109,11:10140419,16783153 -(109,11:10304273,16783153:173670,78643,0 +g105,11:9765361,16783153 +g105,11:9765361,16783153 +(105,11:10140419,16783153:501378,78643,0 +$105,11:10140419,16783153 +(105,11:10304273,16783153:173670,78643,0 ) -$109,11:10641797,16783153 +$105,11:10641797,16783153 ) -(109,11:10641797,16783153:501378,78643,0 -(109,11:10805651,16783153:173670,78643,0 +(105,11:10641797,16783153:501378,78643,0 +(105,11:10805651,16783153:173670,78643,0 ) ) -(109,11:11143175,16783153:501378,78643,0 -(109,11:11307029,16783153:173670,78643,0 +(105,11:11143175,16783153:501378,78643,0 +(105,11:11307029,16783153:173670,78643,0 ) ) -(109,11:11644553,16783153:501378,78643,0 -(109,11:11808407,16783153:173670,78643,0 +(105,11:11644553,16783153:501378,78643,0 +(105,11:11808407,16783153:173670,78643,0 ) ) -(109,11:12145931,16783153:501378,78643,0 -(109,11:12309785,16783153:173670,78643,0 +(105,11:12145931,16783153:501378,78643,0 +(105,11:12309785,16783153:173670,78643,0 ) ) -(109,11:12647309,16783153:501378,78643,0 -(109,11:12811163,16783153:173670,78643,0 +(105,11:12647309,16783153:501378,78643,0 +(105,11:12811163,16783153:173670,78643,0 ) ) -(109,11:13148687,16783153:501378,78643,0 -(109,11:13312541,16783153:173670,78643,0 +(105,11:13148687,16783153:501378,78643,0 +(105,11:13312541,16783153:173670,78643,0 ) ) -(109,11:13650065,16783153:501378,78643,0 -(109,11:13813919,16783153:173670,78643,0 +(105,11:13650065,16783153:501378,78643,0 +(105,11:13813919,16783153:173670,78643,0 ) ) -(109,11:14151443,16783153:501378,78643,0 -(109,11:14315297,16783153:173670,78643,0 +(105,11:14151443,16783153:501378,78643,0 +(105,11:14315297,16783153:173670,78643,0 ) ) -(109,11:14652821,16783153:501378,78643,0 -(109,11:14816675,16783153:173670,78643,0 +(105,11:14652821,16783153:501378,78643,0 +(105,11:14816675,16783153:173670,78643,0 ) ) -(109,11:15154199,16783153:501378,78643,0 -(109,11:15318053,16783153:173670,78643,0 +(105,11:15154199,16783153:501378,78643,0 +(105,11:15318053,16783153:173670,78643,0 ) ) -(109,11:15655577,16783153:501378,78643,0 -(109,11:15819431,16783153:173670,78643,0 +(105,11:15655577,16783153:501378,78643,0 +(105,11:15819431,16783153:173670,78643,0 ) ) -(109,11:16156955,16783153:501378,78643,0 -(109,11:16320809,16783153:173670,78643,0 +(105,11:16156955,16783153:501378,78643,0 +(105,11:16320809,16783153:173670,78643,0 ) ) -(109,11:16658333,16783153:501378,78643,0 -(109,11:16822187,16783153:173670,78643,0 +(105,11:16658333,16783153:501378,78643,0 +(105,11:16822187,16783153:173670,78643,0 ) ) -(109,11:17159711,16783153:501378,78643,0 -(109,11:17323565,16783153:173670,78643,0 +(105,11:17159711,16783153:501378,78643,0 +(105,11:17323565,16783153:173670,78643,0 ) ) -(109,11:17661089,16783153:501378,78643,0 -(109,11:17824943,16783153:173670,78643,0 +(105,11:17661089,16783153:501378,78643,0 +(105,11:17824943,16783153:173670,78643,0 ) ) -(109,11:18162467,16783153:501378,78643,0 -(109,11:18326321,16783153:173670,78643,0 +(105,11:18162467,16783153:501378,78643,0 +(105,11:18326321,16783153:173670,78643,0 ) ) -(109,11:18663845,16783153:501378,78643,0 -(109,11:18827699,16783153:173670,78643,0 +(105,11:18663845,16783153:501378,78643,0 +(105,11:18827699,16783153:173670,78643,0 ) ) -(109,11:19165223,16783153:501378,78643,0 -(109,11:19329077,16783153:173670,78643,0 +(105,11:19165223,16783153:501378,78643,0 +(105,11:19329077,16783153:173670,78643,0 ) ) -(109,11:19666601,16783153:501378,78643,0 -(109,11:19830455,16783153:173670,78643,0 +(105,11:19666601,16783153:501378,78643,0 +(105,11:19830455,16783153:173670,78643,0 ) ) -(109,11:20167979,16783153:501378,78643,0 -(109,11:20331833,16783153:173670,78643,0 +(105,11:20167979,16783153:501378,78643,0 +(105,11:20331833,16783153:173670,78643,0 ) ) -(109,11:20669357,16783153:501378,78643,0 -(109,11:20833211,16783153:173670,78643,0 +(105,11:20669357,16783153:501378,78643,0 +(105,11:20833211,16783153:173670,78643,0 ) ) -(109,11:21170735,16783153:501378,78643,0 -(109,11:21334589,16783153:173670,78643,0 +(105,11:21170735,16783153:501378,78643,0 +(105,11:21334589,16783153:173670,78643,0 ) ) -(109,11:21672113,16783153:501378,78643,0 -(109,11:21835967,16783153:173670,78643,0 +(105,11:21672113,16783153:501378,78643,0 +(105,11:21835967,16783153:173670,78643,0 ) ) -(109,11:22173491,16783153:501378,78643,0 -(109,11:22337345,16783153:173670,78643,0 +(105,11:22173491,16783153:501378,78643,0 +(105,11:22337345,16783153:173670,78643,0 ) ) -(109,11:22674869,16783153:501378,78643,0 -(109,11:22838723,16783153:173670,78643,0 +(105,11:22674869,16783153:501378,78643,0 +(105,11:22838723,16783153:173670,78643,0 ) ) -(109,11:23176247,16783153:501378,78643,0 -(109,11:23340101,16783153:173670,78643,0 +(105,11:23176247,16783153:501378,78643,0 +(105,11:23340101,16783153:173670,78643,0 ) ) -(109,11:23677625,16783153:501378,78643,0 -(109,11:23841479,16783153:173670,78643,0 +(105,11:23677625,16783153:501378,78643,0 +(105,11:23841479,16783153:173670,78643,0 ) ) -(109,11:24179003,16783153:501378,78643,0 -(109,11:24342857,16783153:173670,78643,0 +(105,11:24179003,16783153:501378,78643,0 +(105,11:24342857,16783153:173670,78643,0 ) ) -(109,11:24680381,16783153:501378,78643,0 -(109,11:24844235,16783153:173670,78643,0 +(105,11:24680381,16783153:501378,78643,0 +(105,11:24844235,16783153:173670,78643,0 ) ) -(109,11:25181759,16783153:501378,78643,0 -(109,11:25345613,16783153:173670,78643,0 +(105,11:25181759,16783153:501378,78643,0 +(105,11:25345613,16783153:173670,78643,0 ) ) -(109,11:25683137,16783153:501378,78643,0 -(109,11:25846991,16783153:173670,78643,0 +(105,11:25683137,16783153:501378,78643,0 +(105,11:25846991,16783153:173670,78643,0 ) ) -(109,11:26184515,16783153:501378,78643,0 -(109,11:26348369,16783153:173670,78643,0 +(105,11:26184515,16783153:501378,78643,0 +(105,11:26348369,16783153:173670,78643,0 ) ) -(109,11:26685893,16783153:501378,78643,0 -(109,11:26849747,16783153:173670,78643,0 +(105,11:26685893,16783153:501378,78643,0 +(105,11:26849747,16783153:173670,78643,0 ) ) -(109,11:27187271,16783153:501378,78643,0 -(109,11:27351125,16783153:173670,78643,0 +(105,11:27187271,16783153:501378,78643,0 +(105,11:27351125,16783153:173670,78643,0 ) ) -(109,11:27688649,16783153:501378,78643,0 -(109,11:27852503,16783153:173670,78643,0 +(105,11:27688649,16783153:501378,78643,0 +(105,11:27852503,16783153:173670,78643,0 ) ) -(109,11:28190027,16783153:501378,78643,0 -(109,11:28353881,16783153:173670,78643,0 +(105,11:28190027,16783153:501378,78643,0 +(105,11:28353881,16783153:173670,78643,0 ) ) -(109,11:28691405,16783153:501378,78643,0 -(109,11:28855259,16783153:173670,78643,0 +(105,11:28691405,16783153:501378,78643,0 +(105,11:28855259,16783153:173670,78643,0 ) ) -(109,11:29192783,16783153:501378,78643,0 -(109,11:29356637,16783153:173670,78643,0 +(105,11:29192783,16783153:501378,78643,0 +(105,11:29356637,16783153:173670,78643,0 ) ) -(109,11:29694161,16783153:501378,78643,0 -(109,11:29858015,16783153:173670,78643,0 +(105,11:29694161,16783153:501378,78643,0 +(105,11:29858015,16783153:173670,78643,0 ) ) -(109,11:30195539,16783153:501378,78643,0 -(109,11:30359393,16783153:173670,78643,0 +(105,11:30195539,16783153:501378,78643,0 +(105,11:30359393,16783153:173670,78643,0 ) ) -(109,11:30696917,16783153:501378,78643,0 -(109,11:30860771,16783153:173670,78643,0 +(105,11:30696917,16783153:501378,78643,0 +(105,11:30860771,16783153:173670,78643,0 ) ) -(109,11:31403379,16783153:1179650,477757,0 -k109,11:31985341,16783153:581962 -g109,11:32184570,16783153 +(105,11:31239539,16783153:1343490,477757,0 +k105,11:31985341,16783153:745802 +g105,11:32184570,16783153 ) -g109,11:30911859,16783153 -g109,11:32583029,16783153 +g105,11:30911859,16783153 +g105,11:32583029,16783153 ) -(109,13:6630773,17624641:25952256,505283,7863 -g109,13:11218293,17624641 -h109,13:11218293,17624641:2490370,0,0 -h109,13:13708663,17624641:0,0,0 -g109,13:9121143,17624641 -(109,13:9121143,17624641:2097150,485622,0 -k109,13:11218293,17624641:554432 +(105,13:6630773,17624641:25952256,505283,7863 +g105,13:11218293,17624641 +h105,13:11218293,17624641:2490370,0,0 +h105,13:13708663,17624641:0,0,0 +g105,13:9121143,17624641 +(105,13:9121143,17624641:2097150,485622,0 +k105,13:11218293,17624641:554432 ) -g109,13:13051335,17624641 -g109,13:13782061,17624641 -g109,13:14554075,17624641 -(109,13:14652821,17624641:501378,78643,0 -$109,13:14652821,17624641 -(109,13:14816675,17624641:173670,78643,0 +g105,13:13051335,17624641 +g105,13:13782061,17624641 +g105,13:14554075,17624641 +(105,13:14652821,17624641:501378,78643,0 +$105,13:14652821,17624641 +(105,13:14816675,17624641:173670,78643,0 ) -$109,13:15154199,17624641 +$105,13:15154199,17624641 ) -(109,13:15154199,17624641:501378,78643,0 -(109,13:15318053,17624641:173670,78643,0 +(105,13:15154199,17624641:501378,78643,0 +(105,13:15318053,17624641:173670,78643,0 ) ) -(109,13:15655577,17624641:501378,78643,0 -(109,13:15819431,17624641:173670,78643,0 +(105,13:15655577,17624641:501378,78643,0 +(105,13:15819431,17624641:173670,78643,0 ) ) -(109,13:16156955,17624641:501378,78643,0 -(109,13:16320809,17624641:173670,78643,0 +(105,13:16156955,17624641:501378,78643,0 +(105,13:16320809,17624641:173670,78643,0 ) ) -(109,13:16658333,17624641:501378,78643,0 -(109,13:16822187,17624641:173670,78643,0 +(105,13:16658333,17624641:501378,78643,0 +(105,13:16822187,17624641:173670,78643,0 ) ) -(109,13:17159711,17624641:501378,78643,0 -(109,13:17323565,17624641:173670,78643,0 +(105,13:17159711,17624641:501378,78643,0 +(105,13:17323565,17624641:173670,78643,0 ) ) -(109,13:17661089,17624641:501378,78643,0 -(109,13:17824943,17624641:173670,78643,0 +(105,13:17661089,17624641:501378,78643,0 +(105,13:17824943,17624641:173670,78643,0 ) ) -(109,13:18162467,17624641:501378,78643,0 -(109,13:18326321,17624641:173670,78643,0 +(105,13:18162467,17624641:501378,78643,0 +(105,13:18326321,17624641:173670,78643,0 ) ) -(109,13:18663845,17624641:501378,78643,0 -(109,13:18827699,17624641:173670,78643,0 +(105,13:18663845,17624641:501378,78643,0 +(105,13:18827699,17624641:173670,78643,0 ) ) -(109,13:19165223,17624641:501378,78643,0 -(109,13:19329077,17624641:173670,78643,0 +(105,13:19165223,17624641:501378,78643,0 +(105,13:19329077,17624641:173670,78643,0 ) ) -(109,13:19666601,17624641:501378,78643,0 -(109,13:19830455,17624641:173670,78643,0 +(105,13:19666601,17624641:501378,78643,0 +(105,13:19830455,17624641:173670,78643,0 ) ) -(109,13:20167979,17624641:501378,78643,0 -(109,13:20331833,17624641:173670,78643,0 +(105,13:20167979,17624641:501378,78643,0 +(105,13:20331833,17624641:173670,78643,0 ) ) -(109,13:20669357,17624641:501378,78643,0 -(109,13:20833211,17624641:173670,78643,0 +(105,13:20669357,17624641:501378,78643,0 +(105,13:20833211,17624641:173670,78643,0 ) ) -(109,13:21170735,17624641:501378,78643,0 -(109,13:21334589,17624641:173670,78643,0 +(105,13:21170735,17624641:501378,78643,0 +(105,13:21334589,17624641:173670,78643,0 ) ) -(109,13:21672113,17624641:501378,78643,0 -(109,13:21835967,17624641:173670,78643,0 +(105,13:21672113,17624641:501378,78643,0 +(105,13:21835967,17624641:173670,78643,0 ) ) -(109,13:22173491,17624641:501378,78643,0 -(109,13:22337345,17624641:173670,78643,0 +(105,13:22173491,17624641:501378,78643,0 +(105,13:22337345,17624641:173670,78643,0 ) ) -(109,13:22674869,17624641:501378,78643,0 -(109,13:22838723,17624641:173670,78643,0 +(105,13:22674869,17624641:501378,78643,0 +(105,13:22838723,17624641:173670,78643,0 ) ) -(109,13:23176247,17624641:501378,78643,0 -(109,13:23340101,17624641:173670,78643,0 +(105,13:23176247,17624641:501378,78643,0 +(105,13:23340101,17624641:173670,78643,0 ) ) -(109,13:23677625,17624641:501378,78643,0 -(109,13:23841479,17624641:173670,78643,0 +(105,13:23677625,17624641:501378,78643,0 +(105,13:23841479,17624641:173670,78643,0 ) ) -(109,13:24179003,17624641:501378,78643,0 -(109,13:24342857,17624641:173670,78643,0 +(105,13:24179003,17624641:501378,78643,0 +(105,13:24342857,17624641:173670,78643,0 ) ) -(109,13:24680381,17624641:501378,78643,0 -(109,13:24844235,17624641:173670,78643,0 +(105,13:24680381,17624641:501378,78643,0 +(105,13:24844235,17624641:173670,78643,0 ) ) -(109,13:25181759,17624641:501378,78643,0 -(109,13:25345613,17624641:173670,78643,0 +(105,13:25181759,17624641:501378,78643,0 +(105,13:25345613,17624641:173670,78643,0 ) ) -(109,13:25683137,17624641:501378,78643,0 -(109,13:25846991,17624641:173670,78643,0 +(105,13:25683137,17624641:501378,78643,0 +(105,13:25846991,17624641:173670,78643,0 ) ) -(109,13:26184515,17624641:501378,78643,0 -(109,13:26348369,17624641:173670,78643,0 +(105,13:26184515,17624641:501378,78643,0 +(105,13:26348369,17624641:173670,78643,0 ) ) -(109,13:26685893,17624641:501378,78643,0 -(109,13:26849747,17624641:173670,78643,0 +(105,13:26685893,17624641:501378,78643,0 +(105,13:26849747,17624641:173670,78643,0 ) ) -(109,13:27187271,17624641:501378,78643,0 -(109,13:27351125,17624641:173670,78643,0 +(105,13:27187271,17624641:501378,78643,0 +(105,13:27351125,17624641:173670,78643,0 ) ) -(109,13:27688649,17624641:501378,78643,0 -(109,13:27852503,17624641:173670,78643,0 +(105,13:27688649,17624641:501378,78643,0 +(105,13:27852503,17624641:173670,78643,0 ) ) -(109,13:28190027,17624641:501378,78643,0 -(109,13:28353881,17624641:173670,78643,0 +(105,13:28190027,17624641:501378,78643,0 +(105,13:28353881,17624641:173670,78643,0 ) ) -(109,13:28691405,17624641:501378,78643,0 -(109,13:28855259,17624641:173670,78643,0 +(105,13:28691405,17624641:501378,78643,0 +(105,13:28855259,17624641:173670,78643,0 ) ) -(109,13:29192783,17624641:501378,78643,0 -(109,13:29356637,17624641:173670,78643,0 +(105,13:29192783,17624641:501378,78643,0 +(105,13:29356637,17624641:173670,78643,0 ) ) -(109,13:29694161,17624641:501378,78643,0 -(109,13:29858015,17624641:173670,78643,0 +(105,13:29694161,17624641:501378,78643,0 +(105,13:29858015,17624641:173670,78643,0 ) ) -(109,13:30195539,17624641:501378,78643,0 -(109,13:30359393,17624641:173670,78643,0 +(105,13:30195539,17624641:501378,78643,0 +(105,13:30359393,17624641:173670,78643,0 ) ) -(109,13:30696917,17624641:501378,78643,0 -(109,13:30860771,17624641:173670,78643,0 +(105,13:30696917,17624641:501378,78643,0 +(105,13:30860771,17624641:173670,78643,0 ) ) -(109,13:31403379,17624641:1179650,477757,0 -k109,13:31985341,17624641:581962 -g109,13:32184570,17624641 +(105,13:31239539,17624641:1343490,477757,0 +k105,13:31985341,17624641:745802 +g105,13:32184570,17624641 ) -g109,13:30911859,17624641 -g109,13:32583029,17624641 +g105,13:30911859,17624641 +g105,13:32583029,17624641 ) -(109,15:6630773,18466129:25952256,505283,134348 -g109,15:11218293,18466129 -h109,15:11218293,18466129:2490370,0,0 -h109,15:13708663,18466129:0,0,0 -g109,15:9121143,18466129 -(109,15:9121143,18466129:2097150,485622,0 -k109,15:11218293,18466129:554432 +(105,15:6630773,18466129:25952256,505283,134348 +g105,15:11218293,18466129 +h105,15:11218293,18466129:2490370,0,0 +h105,15:13708663,18466129:0,0,0 +g105,15:9121143,18466129 +(105,15:9121143,18466129:2097150,485622,0 +k105,15:11218293,18466129:554432 ) -g109,15:11862511,18466129 -g109,15:12747902,18466129 -g109,15:13302991,18466129 -g109,15:16145287,18466129 -(109,15:16156955,18466129:501378,78643,0 -$109,15:16156955,18466129 -(109,15:16320809,18466129:173670,78643,0 +g105,15:11862511,18466129 +g105,15:12747902,18466129 +g105,15:13302991,18466129 +g105,15:16145287,18466129 +(105,15:16156955,18466129:501378,78643,0 +$105,15:16156955,18466129 +(105,15:16320809,18466129:173670,78643,0 ) -$109,15:16658333,18466129 +$105,15:16658333,18466129 ) -(109,15:16658333,18466129:501378,78643,0 -(109,15:16822187,18466129:173670,78643,0 +(105,15:16658333,18466129:501378,78643,0 +(105,15:16822187,18466129:173670,78643,0 ) ) -(109,15:17159711,18466129:501378,78643,0 -(109,15:17323565,18466129:173670,78643,0 +(105,15:17159711,18466129:501378,78643,0 +(105,15:17323565,18466129:173670,78643,0 ) ) -(109,15:17661089,18466129:501378,78643,0 -(109,15:17824943,18466129:173670,78643,0 +(105,15:17661089,18466129:501378,78643,0 +(105,15:17824943,18466129:173670,78643,0 ) ) -(109,15:18162467,18466129:501378,78643,0 -(109,15:18326321,18466129:173670,78643,0 +(105,15:18162467,18466129:501378,78643,0 +(105,15:18326321,18466129:173670,78643,0 ) ) -(109,15:18663845,18466129:501378,78643,0 -(109,15:18827699,18466129:173670,78643,0 +(105,15:18663845,18466129:501378,78643,0 +(105,15:18827699,18466129:173670,78643,0 ) ) -(109,15:19165223,18466129:501378,78643,0 -(109,15:19329077,18466129:173670,78643,0 +(105,15:19165223,18466129:501378,78643,0 +(105,15:19329077,18466129:173670,78643,0 ) ) -(109,15:19666601,18466129:501378,78643,0 -(109,15:19830455,18466129:173670,78643,0 +(105,15:19666601,18466129:501378,78643,0 +(105,15:19830455,18466129:173670,78643,0 ) ) -(109,15:20167979,18466129:501378,78643,0 -(109,15:20331833,18466129:173670,78643,0 +(105,15:20167979,18466129:501378,78643,0 +(105,15:20331833,18466129:173670,78643,0 ) ) -(109,15:20669357,18466129:501378,78643,0 -(109,15:20833211,18466129:173670,78643,0 +(105,15:20669357,18466129:501378,78643,0 +(105,15:20833211,18466129:173670,78643,0 ) ) -(109,15:21170735,18466129:501378,78643,0 -(109,15:21334589,18466129:173670,78643,0 +(105,15:21170735,18466129:501378,78643,0 +(105,15:21334589,18466129:173670,78643,0 ) ) -(109,15:21672113,18466129:501378,78643,0 -(109,15:21835967,18466129:173670,78643,0 +(105,15:21672113,18466129:501378,78643,0 +(105,15:21835967,18466129:173670,78643,0 ) ) -(109,15:22173491,18466129:501378,78643,0 -(109,15:22337345,18466129:173670,78643,0 +(105,15:22173491,18466129:501378,78643,0 +(105,15:22337345,18466129:173670,78643,0 ) ) -(109,15:22674869,18466129:501378,78643,0 -(109,15:22838723,18466129:173670,78643,0 +(105,15:22674869,18466129:501378,78643,0 +(105,15:22838723,18466129:173670,78643,0 ) ) -(109,15:23176247,18466129:501378,78643,0 -(109,15:23340101,18466129:173670,78643,0 +(105,15:23176247,18466129:501378,78643,0 +(105,15:23340101,18466129:173670,78643,0 ) ) -(109,15:23677625,18466129:501378,78643,0 -(109,15:23841479,18466129:173670,78643,0 +(105,15:23677625,18466129:501378,78643,0 +(105,15:23841479,18466129:173670,78643,0 ) ) -(109,15:24179003,18466129:501378,78643,0 -(109,15:24342857,18466129:173670,78643,0 +(105,15:24179003,18466129:501378,78643,0 +(105,15:24342857,18466129:173670,78643,0 ) ) -(109,15:24680381,18466129:501378,78643,0 -(109,15:24844235,18466129:173670,78643,0 +(105,15:24680381,18466129:501378,78643,0 +(105,15:24844235,18466129:173670,78643,0 ) ) -(109,15:25181759,18466129:501378,78643,0 -(109,15:25345613,18466129:173670,78643,0 +(105,15:25181759,18466129:501378,78643,0 +(105,15:25345613,18466129:173670,78643,0 ) ) -(109,15:25683137,18466129:501378,78643,0 -(109,15:25846991,18466129:173670,78643,0 +(105,15:25683137,18466129:501378,78643,0 +(105,15:25846991,18466129:173670,78643,0 ) ) -(109,15:26184515,18466129:501378,78643,0 -(109,15:26348369,18466129:173670,78643,0 +(105,15:26184515,18466129:501378,78643,0 +(105,15:26348369,18466129:173670,78643,0 ) ) -(109,15:26685893,18466129:501378,78643,0 -(109,15:26849747,18466129:173670,78643,0 +(105,15:26685893,18466129:501378,78643,0 +(105,15:26849747,18466129:173670,78643,0 ) ) -(109,15:27187271,18466129:501378,78643,0 -(109,15:27351125,18466129:173670,78643,0 +(105,15:27187271,18466129:501378,78643,0 +(105,15:27351125,18466129:173670,78643,0 ) ) -(109,15:27688649,18466129:501378,78643,0 -(109,15:27852503,18466129:173670,78643,0 +(105,15:27688649,18466129:501378,78643,0 +(105,15:27852503,18466129:173670,78643,0 ) ) -(109,15:28190027,18466129:501378,78643,0 -(109,15:28353881,18466129:173670,78643,0 +(105,15:28190027,18466129:501378,78643,0 +(105,15:28353881,18466129:173670,78643,0 ) ) -(109,15:28691405,18466129:501378,78643,0 -(109,15:28855259,18466129:173670,78643,0 +(105,15:28691405,18466129:501378,78643,0 +(105,15:28855259,18466129:173670,78643,0 ) ) -(109,15:29192783,18466129:501378,78643,0 -(109,15:29356637,18466129:173670,78643,0 +(105,15:29192783,18466129:501378,78643,0 +(105,15:29356637,18466129:173670,78643,0 ) ) -(109,15:29694161,18466129:501378,78643,0 -(109,15:29858015,18466129:173670,78643,0 +(105,15:29694161,18466129:501378,78643,0 +(105,15:29858015,18466129:173670,78643,0 ) ) -(109,15:30195539,18466129:501378,78643,0 -(109,15:30359393,18466129:173670,78643,0 +(105,15:30195539,18466129:501378,78643,0 +(105,15:30359393,18466129:173670,78643,0 ) ) -(109,15:30696917,18466129:501378,78643,0 -(109,15:30860771,18466129:173670,78643,0 +(105,15:30696917,18466129:501378,78643,0 +(105,15:30860771,18466129:173670,78643,0 ) ) -(109,15:31403379,18466129:1179650,485622,11795 -k109,15:31985341,18466129:581962 -g109,15:32184570,18466129 +(105,15:31239539,18466129:1343490,485622,11795 +k105,15:31985341,18466129:745802 +g105,15:32184570,18466129 ) -g109,15:30911859,18466129 -g109,15:32583029,18466129 +g105,15:30911859,18466129 +g105,15:32583029,18466129 ) -(109,17:6630773,19307617:25952256,485622,134348 -g109,17:11218293,19307617 -h109,17:11218293,19307617:2490370,0,0 -h109,17:13708663,19307617:0,0,0 -g109,17:9121143,19307617 -(109,17:9121143,19307617:2097150,485622,11795 -k109,17:11218293,19307617:554432 +(105,17:6630773,19307617:25952256,485622,134348 +g105,17:11218293,19307617 +h105,17:11218293,19307617:2490370,0,0 +h105,17:13708663,19307617:0,0,0 +g105,17:9121143,19307617 +(105,17:9121143,19307617:2097150,485622,11795 +k105,17:11218293,19307617:554432 ) -g109,17:11862511,19307617 -g109,17:12747902,19307617 -g109,17:13302991,19307617 -g109,17:16578480,19307617 -g109,17:19320506,19307617 -(109,17:19666601,19307617:501378,78643,0 -$109,17:19666601,19307617 -(109,17:19830455,19307617:173670,78643,0 +g105,17:11862511,19307617 +g105,17:12747902,19307617 +g105,17:13302991,19307617 +g105,17:16578480,19307617 +g105,17:19320506,19307617 +(105,17:19666601,19307617:501378,78643,0 +$105,17:19666601,19307617 +(105,17:19830455,19307617:173670,78643,0 ) -$109,17:20167979,19307617 +$105,17:20167979,19307617 ) -(109,17:20167979,19307617:501378,78643,0 -(109,17:20331833,19307617:173670,78643,0 +(105,17:20167979,19307617:501378,78643,0 +(105,17:20331833,19307617:173670,78643,0 ) ) -(109,17:20669357,19307617:501378,78643,0 -(109,17:20833211,19307617:173670,78643,0 +(105,17:20669357,19307617:501378,78643,0 +(105,17:20833211,19307617:173670,78643,0 ) ) -(109,17:21170735,19307617:501378,78643,0 -(109,17:21334589,19307617:173670,78643,0 +(105,17:21170735,19307617:501378,78643,0 +(105,17:21334589,19307617:173670,78643,0 ) ) -(109,17:21672113,19307617:501378,78643,0 -(109,17:21835967,19307617:173670,78643,0 +(105,17:21672113,19307617:501378,78643,0 +(105,17:21835967,19307617:173670,78643,0 ) ) -(109,17:22173491,19307617:501378,78643,0 -(109,17:22337345,19307617:173670,78643,0 +(105,17:22173491,19307617:501378,78643,0 +(105,17:22337345,19307617:173670,78643,0 ) ) -(109,17:22674869,19307617:501378,78643,0 -(109,17:22838723,19307617:173670,78643,0 +(105,17:22674869,19307617:501378,78643,0 +(105,17:22838723,19307617:173670,78643,0 ) ) -(109,17:23176247,19307617:501378,78643,0 -(109,17:23340101,19307617:173670,78643,0 +(105,17:23176247,19307617:501378,78643,0 +(105,17:23340101,19307617:173670,78643,0 ) ) -(109,17:23677625,19307617:501378,78643,0 -(109,17:23841479,19307617:173670,78643,0 +(105,17:23677625,19307617:501378,78643,0 +(105,17:23841479,19307617:173670,78643,0 ) ) -(109,17:24179003,19307617:501378,78643,0 -(109,17:24342857,19307617:173670,78643,0 +(105,17:24179003,19307617:501378,78643,0 +(105,17:24342857,19307617:173670,78643,0 ) ) -(109,17:24680381,19307617:501378,78643,0 -(109,17:24844235,19307617:173670,78643,0 +(105,17:24680381,19307617:501378,78643,0 +(105,17:24844235,19307617:173670,78643,0 ) ) -(109,17:25181759,19307617:501378,78643,0 -(109,17:25345613,19307617:173670,78643,0 +(105,17:25181759,19307617:501378,78643,0 +(105,17:25345613,19307617:173670,78643,0 ) ) -(109,17:25683137,19307617:501378,78643,0 -(109,17:25846991,19307617:173670,78643,0 +(105,17:25683137,19307617:501378,78643,0 +(105,17:25846991,19307617:173670,78643,0 ) ) -(109,17:26184515,19307617:501378,78643,0 -(109,17:26348369,19307617:173670,78643,0 +(105,17:26184515,19307617:501378,78643,0 +(105,17:26348369,19307617:173670,78643,0 ) ) -(109,17:26685893,19307617:501378,78643,0 -(109,17:26849747,19307617:173670,78643,0 +(105,17:26685893,19307617:501378,78643,0 +(105,17:26849747,19307617:173670,78643,0 ) ) -(109,17:27187271,19307617:501378,78643,0 -(109,17:27351125,19307617:173670,78643,0 +(105,17:27187271,19307617:501378,78643,0 +(105,17:27351125,19307617:173670,78643,0 ) ) -(109,17:27688649,19307617:501378,78643,0 -(109,17:27852503,19307617:173670,78643,0 +(105,17:27688649,19307617:501378,78643,0 +(105,17:27852503,19307617:173670,78643,0 ) ) -(109,17:28190027,19307617:501378,78643,0 -(109,17:28353881,19307617:173670,78643,0 +(105,17:28190027,19307617:501378,78643,0 +(105,17:28353881,19307617:173670,78643,0 ) ) -(109,17:28691405,19307617:501378,78643,0 -(109,17:28855259,19307617:173670,78643,0 +(105,17:28691405,19307617:501378,78643,0 +(105,17:28855259,19307617:173670,78643,0 ) ) -(109,17:29192783,19307617:501378,78643,0 -(109,17:29356637,19307617:173670,78643,0 +(105,17:29192783,19307617:501378,78643,0 +(105,17:29356637,19307617:173670,78643,0 ) ) -(109,17:29694161,19307617:501378,78643,0 -(109,17:29858015,19307617:173670,78643,0 +(105,17:29694161,19307617:501378,78643,0 +(105,17:29858015,19307617:173670,78643,0 ) ) -(109,17:30195539,19307617:501378,78643,0 -(109,17:30359393,19307617:173670,78643,0 +(105,17:30195539,19307617:501378,78643,0 +(105,17:30359393,19307617:173670,78643,0 ) ) -(109,17:30696917,19307617:501378,78643,0 -(109,17:30860771,19307617:173670,78643,0 +(105,17:30696917,19307617:501378,78643,0 +(105,17:30860771,19307617:173670,78643,0 ) ) -(109,17:31403379,19307617:1179650,485622,11795 -k109,17:31985341,19307617:581962 -g109,17:32184570,19307617 +(105,17:31239539,19307617:1343490,485622,11795 +k105,17:31985341,19307617:745802 +g105,17:32184570,19307617 ) -g109,17:30911859,19307617 -g109,17:32583029,19307617 +g105,17:30911859,19307617 +g105,17:32583029,19307617 ) -(109,19:6630773,20149105:25952256,505283,134348 -g109,19:13905273,20149105 -h109,19:13905273,20149105:4587520,0,0 -h109,19:18492793,20149105:0,0,0 -g109,19:11218293,20149105 -(109,19:11218293,20149105:2686980,485622,11795 -k109,19:13905273,20149105:572133 +(105,19:6630773,20149105:25952256,505283,134348 +g105,19:13905273,20149105 +h105,19:13905273,20149105:4587520,0,0 +h105,19:18492793,20149105:0,0,0 +g105,19:11218293,20149105 +(105,19:11218293,20149105:2686980,485622,11795 +k105,19:13905273,20149105:572133 ) -g109,19:15896256,20149105 -g109,19:16540474,20149105 -g109,19:20467391,20149105 -(109,19:20669357,20149105:501378,78643,0 -$109,19:20669357,20149105 -(109,19:20833211,20149105:173670,78643,0 +g105,19:15896256,20149105 +g105,19:16540474,20149105 +g105,19:20467391,20149105 +(105,19:20669357,20149105:501378,78643,0 +$105,19:20669357,20149105 +(105,19:20833211,20149105:173670,78643,0 ) -$109,19:21170735,20149105 +$105,19:21170735,20149105 ) -(109,19:21170735,20149105:501378,78643,0 -(109,19:21334589,20149105:173670,78643,0 +(105,19:21170735,20149105:501378,78643,0 +(105,19:21334589,20149105:173670,78643,0 ) ) -(109,19:21672113,20149105:501378,78643,0 -(109,19:21835967,20149105:173670,78643,0 +(105,19:21672113,20149105:501378,78643,0 +(105,19:21835967,20149105:173670,78643,0 ) ) -(109,19:22173491,20149105:501378,78643,0 -(109,19:22337345,20149105:173670,78643,0 +(105,19:22173491,20149105:501378,78643,0 +(105,19:22337345,20149105:173670,78643,0 ) ) -(109,19:22674869,20149105:501378,78643,0 -(109,19:22838723,20149105:173670,78643,0 +(105,19:22674869,20149105:501378,78643,0 +(105,19:22838723,20149105:173670,78643,0 ) ) -(109,19:23176247,20149105:501378,78643,0 -(109,19:23340101,20149105:173670,78643,0 +(105,19:23176247,20149105:501378,78643,0 +(105,19:23340101,20149105:173670,78643,0 ) ) -(109,19:23677625,20149105:501378,78643,0 -(109,19:23841479,20149105:173670,78643,0 +(105,19:23677625,20149105:501378,78643,0 +(105,19:23841479,20149105:173670,78643,0 ) ) -(109,19:24179003,20149105:501378,78643,0 -(109,19:24342857,20149105:173670,78643,0 +(105,19:24179003,20149105:501378,78643,0 +(105,19:24342857,20149105:173670,78643,0 ) ) -(109,19:24680381,20149105:501378,78643,0 -(109,19:24844235,20149105:173670,78643,0 +(105,19:24680381,20149105:501378,78643,0 +(105,19:24844235,20149105:173670,78643,0 ) ) -(109,19:25181759,20149105:501378,78643,0 -(109,19:25345613,20149105:173670,78643,0 +(105,19:25181759,20149105:501378,78643,0 +(105,19:25345613,20149105:173670,78643,0 ) ) -(109,19:25683137,20149105:501378,78643,0 -(109,19:25846991,20149105:173670,78643,0 +(105,19:25683137,20149105:501378,78643,0 +(105,19:25846991,20149105:173670,78643,0 ) ) -(109,19:26184515,20149105:501378,78643,0 -(109,19:26348369,20149105:173670,78643,0 +(105,19:26184515,20149105:501378,78643,0 +(105,19:26348369,20149105:173670,78643,0 ) ) -(109,19:26685893,20149105:501378,78643,0 -(109,19:26849747,20149105:173670,78643,0 +(105,19:26685893,20149105:501378,78643,0 +(105,19:26849747,20149105:173670,78643,0 ) ) -(109,19:27187271,20149105:501378,78643,0 -(109,19:27351125,20149105:173670,78643,0 +(105,19:27187271,20149105:501378,78643,0 +(105,19:27351125,20149105:173670,78643,0 ) ) -(109,19:27688649,20149105:501378,78643,0 -(109,19:27852503,20149105:173670,78643,0 +(105,19:27688649,20149105:501378,78643,0 +(105,19:27852503,20149105:173670,78643,0 ) ) -(109,19:28190027,20149105:501378,78643,0 -(109,19:28353881,20149105:173670,78643,0 +(105,19:28190027,20149105:501378,78643,0 +(105,19:28353881,20149105:173670,78643,0 ) ) -(109,19:28691405,20149105:501378,78643,0 -(109,19:28855259,20149105:173670,78643,0 +(105,19:28691405,20149105:501378,78643,0 +(105,19:28855259,20149105:173670,78643,0 ) ) -(109,19:29192783,20149105:501378,78643,0 -(109,19:29356637,20149105:173670,78643,0 +(105,19:29192783,20149105:501378,78643,0 +(105,19:29356637,20149105:173670,78643,0 ) ) -(109,19:29694161,20149105:501378,78643,0 -(109,19:29858015,20149105:173670,78643,0 +(105,19:29694161,20149105:501378,78643,0 +(105,19:29858015,20149105:173670,78643,0 ) ) -(109,19:30195539,20149105:501378,78643,0 -(109,19:30359393,20149105:173670,78643,0 +(105,19:30195539,20149105:501378,78643,0 +(105,19:30359393,20149105:173670,78643,0 ) ) -(109,19:30696917,20149105:501378,78643,0 -(109,19:30860771,20149105:173670,78643,0 +(105,19:30696917,20149105:501378,78643,0 +(105,19:30860771,20149105:173670,78643,0 ) ) -(109,19:31403379,20149105:1179650,481690,0 -k109,19:31985341,20149105:581962 -g109,19:32184570,20149105 +(105,19:31239539,20149105:1343490,481690,0 +k105,19:31985341,20149105:745802 +g105,19:32184570,20149105 ) -g109,19:30911859,20149105 -g109,19:32583029,20149105 +g105,19:30911859,20149105 +g105,19:32583029,20149105 ) -(109,21:6630773,20990593:25952256,505283,134348 -g109,21:13905273,20990593 -h109,21:13905273,20990593:4587520,0,0 -h109,21:18492793,20990593:0,0,0 -g109,21:11218293,20990593 -(109,21:11218293,20990593:2686980,485622,11795 -k109,21:13905273,20990593:572133 +(105,21:6630773,20990593:25952256,505283,134348 +g105,21:13905273,20990593 +h105,21:13905273,20990593:4587520,0,0 +h105,21:18492793,20990593:0,0,0 +g105,21:11218293,20990593 +(105,21:11218293,20990593:2686980,485622,11795 +k105,21:13905273,20990593:572133 ) -g109,21:15896256,20990593 -g109,21:16540474,20990593 -g109,21:17355741,20990593 -g109,21:17910830,20990593 -g109,21:20171822,20990593 -g109,21:21493683,20990593 -(109,21:21672113,20990593:501378,78643,0 -$109,21:21672113,20990593 -(109,21:21835967,20990593:173670,78643,0 +g105,21:15896256,20990593 +g105,21:16540474,20990593 +g105,21:17355741,20990593 +g105,21:17910830,20990593 +g105,21:20171822,20990593 +g105,21:21493683,20990593 +(105,21:21672113,20990593:501378,78643,0 +$105,21:21672113,20990593 +(105,21:21835967,20990593:173670,78643,0 ) -$109,21:22173491,20990593 +$105,21:22173491,20990593 ) -(109,21:22173491,20990593:501378,78643,0 -(109,21:22337345,20990593:173670,78643,0 +(105,21:22173491,20990593:501378,78643,0 +(105,21:22337345,20990593:173670,78643,0 ) ) -(109,21:22674869,20990593:501378,78643,0 -(109,21:22838723,20990593:173670,78643,0 +(105,21:22674869,20990593:501378,78643,0 +(105,21:22838723,20990593:173670,78643,0 ) ) -(109,21:23176247,20990593:501378,78643,0 -(109,21:23340101,20990593:173670,78643,0 +(105,21:23176247,20990593:501378,78643,0 +(105,21:23340101,20990593:173670,78643,0 ) ) -(109,21:23677625,20990593:501378,78643,0 -(109,21:23841479,20990593:173670,78643,0 +(105,21:23677625,20990593:501378,78643,0 +(105,21:23841479,20990593:173670,78643,0 ) ) -(109,21:24179003,20990593:501378,78643,0 -(109,21:24342857,20990593:173670,78643,0 +(105,21:24179003,20990593:501378,78643,0 +(105,21:24342857,20990593:173670,78643,0 ) ) -(109,21:24680381,20990593:501378,78643,0 -(109,21:24844235,20990593:173670,78643,0 +(105,21:24680381,20990593:501378,78643,0 +(105,21:24844235,20990593:173670,78643,0 ) ) -(109,21:25181759,20990593:501378,78643,0 -(109,21:25345613,20990593:173670,78643,0 +(105,21:25181759,20990593:501378,78643,0 +(105,21:25345613,20990593:173670,78643,0 ) ) -(109,21:25683137,20990593:501378,78643,0 -(109,21:25846991,20990593:173670,78643,0 +(105,21:25683137,20990593:501378,78643,0 +(105,21:25846991,20990593:173670,78643,0 ) ) -(109,21:26184515,20990593:501378,78643,0 -(109,21:26348369,20990593:173670,78643,0 +(105,21:26184515,20990593:501378,78643,0 +(105,21:26348369,20990593:173670,78643,0 ) ) -(109,21:26685893,20990593:501378,78643,0 -(109,21:26849747,20990593:173670,78643,0 +(105,21:26685893,20990593:501378,78643,0 +(105,21:26849747,20990593:173670,78643,0 ) ) -(109,21:27187271,20990593:501378,78643,0 -(109,21:27351125,20990593:173670,78643,0 +(105,21:27187271,20990593:501378,78643,0 +(105,21:27351125,20990593:173670,78643,0 ) ) -(109,21:27688649,20990593:501378,78643,0 -(109,21:27852503,20990593:173670,78643,0 +(105,21:27688649,20990593:501378,78643,0 +(105,21:27852503,20990593:173670,78643,0 ) ) -(109,21:28190027,20990593:501378,78643,0 -(109,21:28353881,20990593:173670,78643,0 +(105,21:28190027,20990593:501378,78643,0 +(105,21:28353881,20990593:173670,78643,0 ) ) -(109,21:28691405,20990593:501378,78643,0 -(109,21:28855259,20990593:173670,78643,0 +(105,21:28691405,20990593:501378,78643,0 +(105,21:28855259,20990593:173670,78643,0 ) ) -(109,21:29192783,20990593:501378,78643,0 -(109,21:29356637,20990593:173670,78643,0 +(105,21:29192783,20990593:501378,78643,0 +(105,21:29356637,20990593:173670,78643,0 ) ) -(109,21:29694161,20990593:501378,78643,0 -(109,21:29858015,20990593:173670,78643,0 +(105,21:29694161,20990593:501378,78643,0 +(105,21:29858015,20990593:173670,78643,0 ) ) -(109,21:30195539,20990593:501378,78643,0 -(109,21:30359393,20990593:173670,78643,0 +(105,21:30195539,20990593:501378,78643,0 +(105,21:30359393,20990593:173670,78643,0 ) ) -(109,21:30696917,20990593:501378,78643,0 -(109,21:30860771,20990593:173670,78643,0 +(105,21:30696917,20990593:501378,78643,0 +(105,21:30860771,20990593:173670,78643,0 ) ) -(109,21:31403379,20990593:1179650,485622,11795 -k109,21:31985341,20990593:581962 -g109,21:32184570,20990593 +(105,21:31239539,20990593:1343490,485622,11795 +k105,21:31985341,20990593:745802 +g105,21:32184570,20990593 ) -g109,21:30911859,20990593 -g109,21:32583029,20990593 +g105,21:30911859,20990593 +g105,21:32583029,20990593 ) -(109,23:6630773,21832081:25952256,505283,11795 -g109,23:13905273,21832081 -h109,23:13905273,21832081:4587520,0,0 -h109,23:18492793,21832081:0,0,0 -g109,23:11218293,21832081 -(109,23:11218293,21832081:2686980,485622,11795 -k109,23:13905273,21832081:572133 +(105,23:6630773,21832081:25952256,505283,11795 +g105,23:13905273,21832081 +h105,23:13905273,21832081:4587520,0,0 +h105,23:18492793,21832081:0,0,0 +g105,23:11218293,21832081 +(105,23:11218293,21832081:2686980,485622,11795 +k105,23:13905273,21832081:572133 ) -g109,23:16367460,21832081 -g109,23:17758134,21832081 -g109,23:19175678,21832081 -(109,23:19666601,21832081:501378,78643,0 -$109,23:19666601,21832081 -(109,23:19830455,21832081:173670,78643,0 +g105,23:16367460,21832081 +g105,23:17758134,21832081 +g105,23:19175678,21832081 +(105,23:19666601,21832081:501378,78643,0 +$105,23:19666601,21832081 +(105,23:19830455,21832081:173670,78643,0 ) -$109,23:20167979,21832081 +$105,23:20167979,21832081 ) -(109,23:20167979,21832081:501378,78643,0 -(109,23:20331833,21832081:173670,78643,0 +(105,23:20167979,21832081:501378,78643,0 +(105,23:20331833,21832081:173670,78643,0 ) ) -(109,23:20669357,21832081:501378,78643,0 -(109,23:20833211,21832081:173670,78643,0 +(105,23:20669357,21832081:501378,78643,0 +(105,23:20833211,21832081:173670,78643,0 ) ) -(109,23:21170735,21832081:501378,78643,0 -(109,23:21334589,21832081:173670,78643,0 +(105,23:21170735,21832081:501378,78643,0 +(105,23:21334589,21832081:173670,78643,0 ) ) -(109,23:21672113,21832081:501378,78643,0 -(109,23:21835967,21832081:173670,78643,0 +(105,23:21672113,21832081:501378,78643,0 +(105,23:21835967,21832081:173670,78643,0 ) ) -(109,23:22173491,21832081:501378,78643,0 -(109,23:22337345,21832081:173670,78643,0 +(105,23:22173491,21832081:501378,78643,0 +(105,23:22337345,21832081:173670,78643,0 ) ) -(109,23:22674869,21832081:501378,78643,0 -(109,23:22838723,21832081:173670,78643,0 +(105,23:22674869,21832081:501378,78643,0 +(105,23:22838723,21832081:173670,78643,0 ) ) -(109,23:23176247,21832081:501378,78643,0 -(109,23:23340101,21832081:173670,78643,0 +(105,23:23176247,21832081:501378,78643,0 +(105,23:23340101,21832081:173670,78643,0 ) ) -(109,23:23677625,21832081:501378,78643,0 -(109,23:23841479,21832081:173670,78643,0 +(105,23:23677625,21832081:501378,78643,0 +(105,23:23841479,21832081:173670,78643,0 ) ) -(109,23:24179003,21832081:501378,78643,0 -(109,23:24342857,21832081:173670,78643,0 +(105,23:24179003,21832081:501378,78643,0 +(105,23:24342857,21832081:173670,78643,0 ) ) -(109,23:24680381,21832081:501378,78643,0 -(109,23:24844235,21832081:173670,78643,0 +(105,23:24680381,21832081:501378,78643,0 +(105,23:24844235,21832081:173670,78643,0 ) ) -(109,23:25181759,21832081:501378,78643,0 -(109,23:25345613,21832081:173670,78643,0 +(105,23:25181759,21832081:501378,78643,0 +(105,23:25345613,21832081:173670,78643,0 ) ) -(109,23:25683137,21832081:501378,78643,0 -(109,23:25846991,21832081:173670,78643,0 +(105,23:25683137,21832081:501378,78643,0 +(105,23:25846991,21832081:173670,78643,0 ) ) -(109,23:26184515,21832081:501378,78643,0 -(109,23:26348369,21832081:173670,78643,0 +(105,23:26184515,21832081:501378,78643,0 +(105,23:26348369,21832081:173670,78643,0 ) ) -(109,23:26685893,21832081:501378,78643,0 -(109,23:26849747,21832081:173670,78643,0 +(105,23:26685893,21832081:501378,78643,0 +(105,23:26849747,21832081:173670,78643,0 ) ) -(109,23:27187271,21832081:501378,78643,0 -(109,23:27351125,21832081:173670,78643,0 +(105,23:27187271,21832081:501378,78643,0 +(105,23:27351125,21832081:173670,78643,0 ) ) -(109,23:27688649,21832081:501378,78643,0 -(109,23:27852503,21832081:173670,78643,0 +(105,23:27688649,21832081:501378,78643,0 +(105,23:27852503,21832081:173670,78643,0 ) ) -(109,23:28190027,21832081:501378,78643,0 -(109,23:28353881,21832081:173670,78643,0 +(105,23:28190027,21832081:501378,78643,0 +(105,23:28353881,21832081:173670,78643,0 ) ) -(109,23:28691405,21832081:501378,78643,0 -(109,23:28855259,21832081:173670,78643,0 +(105,23:28691405,21832081:501378,78643,0 +(105,23:28855259,21832081:173670,78643,0 ) ) -(109,23:29192783,21832081:501378,78643,0 -(109,23:29356637,21832081:173670,78643,0 +(105,23:29192783,21832081:501378,78643,0 +(105,23:29356637,21832081:173670,78643,0 ) ) -(109,23:29694161,21832081:501378,78643,0 -(109,23:29858015,21832081:173670,78643,0 +(105,23:29694161,21832081:501378,78643,0 +(105,23:29858015,21832081:173670,78643,0 ) ) -(109,23:30195539,21832081:501378,78643,0 -(109,23:30359393,21832081:173670,78643,0 +(105,23:30195539,21832081:501378,78643,0 +(105,23:30359393,21832081:173670,78643,0 ) ) -(109,23:30696917,21832081:501378,78643,0 -(109,23:30860771,21832081:173670,78643,0 +(105,23:30696917,21832081:501378,78643,0 +(105,23:30860771,21832081:173670,78643,0 ) ) -(109,23:31403379,21832081:1179650,473825,0 -k109,23:31985341,21832081:581962 -g109,23:32184570,21832081 +(105,23:31239539,21832081:1343490,473825,0 +k105,23:31985341,21832081:745802 +g105,23:32184570,21832081 ) -g109,23:30911859,21832081 -g109,23:32583029,21832081 +g105,23:30911859,21832081 +g105,23:32583029,21832081 ) -(109,25:6630773,22673569:25952256,505283,126483 -g109,25:9121143,22673569 -h109,25:9121143,22673569:983040,0,0 -h109,25:10104183,22673569:0,0,0 -g109,25:7613813,22673569 -(109,25:7613813,22673569:1507330,485622,11795 -k109,25:9121143,22673569:536742 +(105,25:6630773,22673569:25952256,505283,126483 +g105,25:9121143,22673569 +h105,25:9121143,22673569:983040,0,0 +h105,25:10104183,22673569:0,0,0 +g105,25:7613813,22673569 +(105,25:7613813,22673569:1507330,485622,11795 +k105,25:9121143,22673569:536742 ) -g109,25:13539580,22673569 -g109,25:15128172,22673569 -g109,25:17881994,22673569 -g109,25:17881994,22673569 -(109,25:18162467,22673569:501378,78643,0 -$109,25:18162467,22673569 -(109,25:18326321,22673569:173670,78643,0 +g105,25:13539580,22673569 +g105,25:15128172,22673569 +g105,25:17881994,22673569 +g105,25:17881994,22673569 +(105,25:18162467,22673569:501378,78643,0 +$105,25:18162467,22673569 +(105,25:18326321,22673569:173670,78643,0 ) -$109,25:18663845,22673569 +$105,25:18663845,22673569 ) -(109,25:18663845,22673569:501378,78643,0 -(109,25:18827699,22673569:173670,78643,0 +(105,25:18663845,22673569:501378,78643,0 +(105,25:18827699,22673569:173670,78643,0 ) ) -(109,25:19165223,22673569:501378,78643,0 -(109,25:19329077,22673569:173670,78643,0 +(105,25:19165223,22673569:501378,78643,0 +(105,25:19329077,22673569:173670,78643,0 ) ) -(109,25:19666601,22673569:501378,78643,0 -(109,25:19830455,22673569:173670,78643,0 +(105,25:19666601,22673569:501378,78643,0 +(105,25:19830455,22673569:173670,78643,0 ) ) -(109,25:20167979,22673569:501378,78643,0 -(109,25:20331833,22673569:173670,78643,0 +(105,25:20167979,22673569:501378,78643,0 +(105,25:20331833,22673569:173670,78643,0 ) ) -(109,25:20669357,22673569:501378,78643,0 -(109,25:20833211,22673569:173670,78643,0 +(105,25:20669357,22673569:501378,78643,0 +(105,25:20833211,22673569:173670,78643,0 ) ) -(109,25:21170735,22673569:501378,78643,0 -(109,25:21334589,22673569:173670,78643,0 +(105,25:21170735,22673569:501378,78643,0 +(105,25:21334589,22673569:173670,78643,0 ) ) -(109,25:21672113,22673569:501378,78643,0 -(109,25:21835967,22673569:173670,78643,0 +(105,25:21672113,22673569:501378,78643,0 +(105,25:21835967,22673569:173670,78643,0 ) ) -(109,25:22173491,22673569:501378,78643,0 -(109,25:22337345,22673569:173670,78643,0 +(105,25:22173491,22673569:501378,78643,0 +(105,25:22337345,22673569:173670,78643,0 ) ) -(109,25:22674869,22673569:501378,78643,0 -(109,25:22838723,22673569:173670,78643,0 +(105,25:22674869,22673569:501378,78643,0 +(105,25:22838723,22673569:173670,78643,0 ) ) -(109,25:23176247,22673569:501378,78643,0 -(109,25:23340101,22673569:173670,78643,0 +(105,25:23176247,22673569:501378,78643,0 +(105,25:23340101,22673569:173670,78643,0 ) ) -(109,25:23677625,22673569:501378,78643,0 -(109,25:23841479,22673569:173670,78643,0 +(105,25:23677625,22673569:501378,78643,0 +(105,25:23841479,22673569:173670,78643,0 ) ) -(109,25:24179003,22673569:501378,78643,0 -(109,25:24342857,22673569:173670,78643,0 +(105,25:24179003,22673569:501378,78643,0 +(105,25:24342857,22673569:173670,78643,0 ) ) -(109,25:24680381,22673569:501378,78643,0 -(109,25:24844235,22673569:173670,78643,0 +(105,25:24680381,22673569:501378,78643,0 +(105,25:24844235,22673569:173670,78643,0 ) ) -(109,25:25181759,22673569:501378,78643,0 -(109,25:25345613,22673569:173670,78643,0 +(105,25:25181759,22673569:501378,78643,0 +(105,25:25345613,22673569:173670,78643,0 ) ) -(109,25:25683137,22673569:501378,78643,0 -(109,25:25846991,22673569:173670,78643,0 +(105,25:25683137,22673569:501378,78643,0 +(105,25:25846991,22673569:173670,78643,0 ) ) -(109,25:26184515,22673569:501378,78643,0 -(109,25:26348369,22673569:173670,78643,0 +(105,25:26184515,22673569:501378,78643,0 +(105,25:26348369,22673569:173670,78643,0 ) ) -(109,25:26685893,22673569:501378,78643,0 -(109,25:26849747,22673569:173670,78643,0 +(105,25:26685893,22673569:501378,78643,0 +(105,25:26849747,22673569:173670,78643,0 ) ) -(109,25:27187271,22673569:501378,78643,0 -(109,25:27351125,22673569:173670,78643,0 +(105,25:27187271,22673569:501378,78643,0 +(105,25:27351125,22673569:173670,78643,0 ) ) -(109,25:27688649,22673569:501378,78643,0 -(109,25:27852503,22673569:173670,78643,0 +(105,25:27688649,22673569:501378,78643,0 +(105,25:27852503,22673569:173670,78643,0 ) ) -(109,25:28190027,22673569:501378,78643,0 -(109,25:28353881,22673569:173670,78643,0 +(105,25:28190027,22673569:501378,78643,0 +(105,25:28353881,22673569:173670,78643,0 ) ) -(109,25:28691405,22673569:501378,78643,0 -(109,25:28855259,22673569:173670,78643,0 +(105,25:28691405,22673569:501378,78643,0 +(105,25:28855259,22673569:173670,78643,0 ) ) -(109,25:29192783,22673569:501378,78643,0 -(109,25:29356637,22673569:173670,78643,0 +(105,25:29192783,22673569:501378,78643,0 +(105,25:29356637,22673569:173670,78643,0 ) ) -(109,25:29694161,22673569:501378,78643,0 -(109,25:29858015,22673569:173670,78643,0 +(105,25:29694161,22673569:501378,78643,0 +(105,25:29858015,22673569:173670,78643,0 ) ) -(109,25:30195539,22673569:501378,78643,0 -(109,25:30359393,22673569:173670,78643,0 +(105,25:30195539,22673569:501378,78643,0 +(105,25:30359393,22673569:173670,78643,0 ) ) -(109,25:30696917,22673569:501378,78643,0 -(109,25:30860771,22673569:173670,78643,0 +(105,25:30696917,22673569:501378,78643,0 +(105,25:30860771,22673569:173670,78643,0 ) ) -(109,25:31403379,22673569:1179650,485622,11795 -k109,25:31985341,22673569:581962 -g109,25:32184570,22673569 +(105,25:31239539,22673569:1343490,485622,11795 +k105,25:31985341,22673569:745802 +g105,25:32184570,22673569 ) -g109,25:30911859,22673569 -g109,25:32583029,22673569 +g105,25:30911859,22673569 +g105,25:32583029,22673569 ) -(109,27:6630773,23515057:25952256,513147,134348 -g109,27:9121143,23515057 -h109,27:9121143,23515057:983040,0,0 -h109,27:10104183,23515057:0,0,0 -g109,27:7613813,23515057 -(109,27:7613813,23515057:1507330,481690,0 -k109,27:9121143,23515057:536742 +(105,27:6630773,23515057:25952256,513147,134348 +g105,27:9121143,23515057 +h105,27:9121143,23515057:983040,0,0 +h105,27:10104183,23515057:0,0,0 +g105,27:7613813,23515057 +(105,27:7613813,23515057:1507330,481690,0 +k105,27:9121143,23515057:536742 ) -g109,27:11706538,23515057 -g109,27:15132760,23515057 -g109,27:19138975,23515057 -g109,27:19138975,23515057 -(109,27:19165223,23515057:501378,78643,0 -$109,27:19165223,23515057 -(109,27:19329077,23515057:173670,78643,0 +g105,27:11706538,23515057 +g105,27:15132760,23515057 +g105,27:19138975,23515057 +g105,27:19138975,23515057 +(105,27:19165223,23515057:501378,78643,0 +$105,27:19165223,23515057 +(105,27:19329077,23515057:173670,78643,0 ) -$109,27:19666601,23515057 +$105,27:19666601,23515057 ) -(109,27:19666601,23515057:501378,78643,0 -(109,27:19830455,23515057:173670,78643,0 +(105,27:19666601,23515057:501378,78643,0 +(105,27:19830455,23515057:173670,78643,0 ) ) -(109,27:20167979,23515057:501378,78643,0 -(109,27:20331833,23515057:173670,78643,0 +(105,27:20167979,23515057:501378,78643,0 +(105,27:20331833,23515057:173670,78643,0 ) ) -(109,27:20669357,23515057:501378,78643,0 -(109,27:20833211,23515057:173670,78643,0 +(105,27:20669357,23515057:501378,78643,0 +(105,27:20833211,23515057:173670,78643,0 ) ) -(109,27:21170735,23515057:501378,78643,0 -(109,27:21334589,23515057:173670,78643,0 +(105,27:21170735,23515057:501378,78643,0 +(105,27:21334589,23515057:173670,78643,0 ) ) -(109,27:21672113,23515057:501378,78643,0 -(109,27:21835967,23515057:173670,78643,0 +(105,27:21672113,23515057:501378,78643,0 +(105,27:21835967,23515057:173670,78643,0 ) ) -(109,27:22173491,23515057:501378,78643,0 -(109,27:22337345,23515057:173670,78643,0 +(105,27:22173491,23515057:501378,78643,0 +(105,27:22337345,23515057:173670,78643,0 ) ) -(109,27:22674869,23515057:501378,78643,0 -(109,27:22838723,23515057:173670,78643,0 +(105,27:22674869,23515057:501378,78643,0 +(105,27:22838723,23515057:173670,78643,0 ) ) -(109,27:23176247,23515057:501378,78643,0 -(109,27:23340101,23515057:173670,78643,0 +(105,27:23176247,23515057:501378,78643,0 +(105,27:23340101,23515057:173670,78643,0 ) ) -(109,27:23677625,23515057:501378,78643,0 -(109,27:23841479,23515057:173670,78643,0 +(105,27:23677625,23515057:501378,78643,0 +(105,27:23841479,23515057:173670,78643,0 ) ) -(109,27:24179003,23515057:501378,78643,0 -(109,27:24342857,23515057:173670,78643,0 +(105,27:24179003,23515057:501378,78643,0 +(105,27:24342857,23515057:173670,78643,0 ) ) -(109,27:24680381,23515057:501378,78643,0 -(109,27:24844235,23515057:173670,78643,0 +(105,27:24680381,23515057:501378,78643,0 +(105,27:24844235,23515057:173670,78643,0 ) ) -(109,27:25181759,23515057:501378,78643,0 -(109,27:25345613,23515057:173670,78643,0 +(105,27:25181759,23515057:501378,78643,0 +(105,27:25345613,23515057:173670,78643,0 ) ) -(109,27:25683137,23515057:501378,78643,0 -(109,27:25846991,23515057:173670,78643,0 +(105,27:25683137,23515057:501378,78643,0 +(105,27:25846991,23515057:173670,78643,0 ) ) -(109,27:26184515,23515057:501378,78643,0 -(109,27:26348369,23515057:173670,78643,0 +(105,27:26184515,23515057:501378,78643,0 +(105,27:26348369,23515057:173670,78643,0 ) ) -(109,27:26685893,23515057:501378,78643,0 -(109,27:26849747,23515057:173670,78643,0 +(105,27:26685893,23515057:501378,78643,0 +(105,27:26849747,23515057:173670,78643,0 ) ) -(109,27:27187271,23515057:501378,78643,0 -(109,27:27351125,23515057:173670,78643,0 +(105,27:27187271,23515057:501378,78643,0 +(105,27:27351125,23515057:173670,78643,0 ) ) -(109,27:27688649,23515057:501378,78643,0 -(109,27:27852503,23515057:173670,78643,0 +(105,27:27688649,23515057:501378,78643,0 +(105,27:27852503,23515057:173670,78643,0 ) ) -(109,27:28190027,23515057:501378,78643,0 -(109,27:28353881,23515057:173670,78643,0 +(105,27:28190027,23515057:501378,78643,0 +(105,27:28353881,23515057:173670,78643,0 ) ) -(109,27:28691405,23515057:501378,78643,0 -(109,27:28855259,23515057:173670,78643,0 +(105,27:28691405,23515057:501378,78643,0 +(105,27:28855259,23515057:173670,78643,0 ) ) -(109,27:29192783,23515057:501378,78643,0 -(109,27:29356637,23515057:173670,78643,0 +(105,27:29192783,23515057:501378,78643,0 +(105,27:29356637,23515057:173670,78643,0 ) ) -(109,27:29694161,23515057:501378,78643,0 -(109,27:29858015,23515057:173670,78643,0 +(105,27:29694161,23515057:501378,78643,0 +(105,27:29858015,23515057:173670,78643,0 ) ) -(109,27:30195539,23515057:501378,78643,0 -(109,27:30359393,23515057:173670,78643,0 +(105,27:30195539,23515057:501378,78643,0 +(105,27:30359393,23515057:173670,78643,0 ) ) -(109,27:30696917,23515057:501378,78643,0 -(109,27:30860771,23515057:173670,78643,0 +(105,27:30696917,23515057:501378,78643,0 +(105,27:30860771,23515057:173670,78643,0 ) ) -(109,27:31403379,23515057:1179650,485622,11795 -k109,27:31586882,23515057:183503 -g109,27:31786111,23515057 +(105,27:31239539,23515057:1343490,485622,11795 +k105,27:31586882,23515057:347343 +g105,27:31786111,23515057 ) -g109,27:30911859,23515057 -g109,27:32583029,23515057 +g105,27:30911859,23515057 +g105,27:32583029,23515057 ) -(109,29:6630773,24356545:25952256,505283,126483 -g109,29:11218293,24356545 -h109,29:11218293,24356545:2490370,0,0 -h109,29:13708663,24356545:0,0,0 -g109,29:9121143,24356545 -(109,29:9121143,24356545:2097150,481690,0 -k109,29:11218293,24356545:554432 +(105,29:6630773,24356545:25952256,505283,126483 +g105,29:11218293,24356545 +h105,29:11218293,24356545:2490370,0,0 +h105,29:13708663,24356545:0,0,0 +g105,29:9121143,24356545 +(105,29:9121143,24356545:2097150,481690,0 +k105,29:11218293,24356545:554432 ) -g109,29:12366483,24356545 -g109,29:14873235,24356545 -g109,29:16261288,24356545 -(109,29:16658333,24356545:501378,78643,0 -$109,29:16658333,24356545 -(109,29:16822187,24356545:173670,78643,0 +g105,29:12366483,24356545 +g105,29:14873235,24356545 +g105,29:16261288,24356545 +(105,29:16658333,24356545:501378,78643,0 +$105,29:16658333,24356545 +(105,29:16822187,24356545:173670,78643,0 ) -$109,29:17159711,24356545 +$105,29:17159711,24356545 ) -(109,29:17159711,24356545:501378,78643,0 -(109,29:17323565,24356545:173670,78643,0 +(105,29:17159711,24356545:501378,78643,0 +(105,29:17323565,24356545:173670,78643,0 ) ) -(109,29:17661089,24356545:501378,78643,0 -(109,29:17824943,24356545:173670,78643,0 +(105,29:17661089,24356545:501378,78643,0 +(105,29:17824943,24356545:173670,78643,0 ) ) -(109,29:18162467,24356545:501378,78643,0 -(109,29:18326321,24356545:173670,78643,0 +(105,29:18162467,24356545:501378,78643,0 +(105,29:18326321,24356545:173670,78643,0 ) ) -(109,29:18663845,24356545:501378,78643,0 -(109,29:18827699,24356545:173670,78643,0 +(105,29:18663845,24356545:501378,78643,0 +(105,29:18827699,24356545:173670,78643,0 ) ) -(109,29:19165223,24356545:501378,78643,0 -(109,29:19329077,24356545:173670,78643,0 +(105,29:19165223,24356545:501378,78643,0 +(105,29:19329077,24356545:173670,78643,0 ) ) -(109,29:19666601,24356545:501378,78643,0 -(109,29:19830455,24356545:173670,78643,0 +(105,29:19666601,24356545:501378,78643,0 +(105,29:19830455,24356545:173670,78643,0 ) ) -(109,29:20167979,24356545:501378,78643,0 -(109,29:20331833,24356545:173670,78643,0 +(105,29:20167979,24356545:501378,78643,0 +(105,29:20331833,24356545:173670,78643,0 ) ) -(109,29:20669357,24356545:501378,78643,0 -(109,29:20833211,24356545:173670,78643,0 +(105,29:20669357,24356545:501378,78643,0 +(105,29:20833211,24356545:173670,78643,0 ) ) -(109,29:21170735,24356545:501378,78643,0 -(109,29:21334589,24356545:173670,78643,0 +(105,29:21170735,24356545:501378,78643,0 +(105,29:21334589,24356545:173670,78643,0 ) ) -(109,29:21672113,24356545:501378,78643,0 -(109,29:21835967,24356545:173670,78643,0 +(105,29:21672113,24356545:501378,78643,0 +(105,29:21835967,24356545:173670,78643,0 ) ) -(109,29:22173491,24356545:501378,78643,0 -(109,29:22337345,24356545:173670,78643,0 +(105,29:22173491,24356545:501378,78643,0 +(105,29:22337345,24356545:173670,78643,0 ) ) -(109,29:22674869,24356545:501378,78643,0 -(109,29:22838723,24356545:173670,78643,0 +(105,29:22674869,24356545:501378,78643,0 +(105,29:22838723,24356545:173670,78643,0 ) ) -(109,29:23176247,24356545:501378,78643,0 -(109,29:23340101,24356545:173670,78643,0 +(105,29:23176247,24356545:501378,78643,0 +(105,29:23340101,24356545:173670,78643,0 ) ) -(109,29:23677625,24356545:501378,78643,0 -(109,29:23841479,24356545:173670,78643,0 +(105,29:23677625,24356545:501378,78643,0 +(105,29:23841479,24356545:173670,78643,0 ) ) -(109,29:24179003,24356545:501378,78643,0 -(109,29:24342857,24356545:173670,78643,0 +(105,29:24179003,24356545:501378,78643,0 +(105,29:24342857,24356545:173670,78643,0 ) ) -(109,29:24680381,24356545:501378,78643,0 -(109,29:24844235,24356545:173670,78643,0 +(105,29:24680381,24356545:501378,78643,0 +(105,29:24844235,24356545:173670,78643,0 ) ) -(109,29:25181759,24356545:501378,78643,0 -(109,29:25345613,24356545:173670,78643,0 +(105,29:25181759,24356545:501378,78643,0 +(105,29:25345613,24356545:173670,78643,0 ) ) -(109,29:25683137,24356545:501378,78643,0 -(109,29:25846991,24356545:173670,78643,0 +(105,29:25683137,24356545:501378,78643,0 +(105,29:25846991,24356545:173670,78643,0 ) ) -(109,29:26184515,24356545:501378,78643,0 -(109,29:26348369,24356545:173670,78643,0 +(105,29:26184515,24356545:501378,78643,0 +(105,29:26348369,24356545:173670,78643,0 ) ) -(109,29:26685893,24356545:501378,78643,0 -(109,29:26849747,24356545:173670,78643,0 +(105,29:26685893,24356545:501378,78643,0 +(105,29:26849747,24356545:173670,78643,0 ) ) -(109,29:27187271,24356545:501378,78643,0 -(109,29:27351125,24356545:173670,78643,0 +(105,29:27187271,24356545:501378,78643,0 +(105,29:27351125,24356545:173670,78643,0 ) ) -(109,29:27688649,24356545:501378,78643,0 -(109,29:27852503,24356545:173670,78643,0 +(105,29:27688649,24356545:501378,78643,0 +(105,29:27852503,24356545:173670,78643,0 ) ) -(109,29:28190027,24356545:501378,78643,0 -(109,29:28353881,24356545:173670,78643,0 +(105,29:28190027,24356545:501378,78643,0 +(105,29:28353881,24356545:173670,78643,0 ) ) -(109,29:28691405,24356545:501378,78643,0 -(109,29:28855259,24356545:173670,78643,0 +(105,29:28691405,24356545:501378,78643,0 +(105,29:28855259,24356545:173670,78643,0 ) ) -(109,29:29192783,24356545:501378,78643,0 -(109,29:29356637,24356545:173670,78643,0 +(105,29:29192783,24356545:501378,78643,0 +(105,29:29356637,24356545:173670,78643,0 ) ) -(109,29:29694161,24356545:501378,78643,0 -(109,29:29858015,24356545:173670,78643,0 +(105,29:29694161,24356545:501378,78643,0 +(105,29:29858015,24356545:173670,78643,0 ) ) -(109,29:30195539,24356545:501378,78643,0 -(109,29:30359393,24356545:173670,78643,0 +(105,29:30195539,24356545:501378,78643,0 +(105,29:30359393,24356545:173670,78643,0 ) ) -(109,29:30696917,24356545:501378,78643,0 -(109,29:30860771,24356545:173670,78643,0 +(105,29:30696917,24356545:501378,78643,0 +(105,29:30860771,24356545:173670,78643,0 ) ) -(109,29:31403379,24356545:1179650,477757,0 -k109,29:31586882,24356545:183503 -g109,29:31786111,24356545 +(105,29:31239539,24356545:1343490,477757,0 +k105,29:31586882,24356545:347343 +g105,29:31786111,24356545 ) -g109,29:30911859,24356545 -g109,29:32583029,24356545 +g105,29:30911859,24356545 +g105,29:32583029,24356545 ) -(109,31:6630773,25198033:25952256,513147,134348 -g109,31:11218293,25198033 -h109,31:11218293,25198033:2490370,0,0 -h109,31:13708663,25198033:0,0,0 -g109,31:9121143,25198033 -(109,31:9121143,25198033:2097150,485622,0 -k109,31:11218293,25198033:554432 +(105,31:6630773,25198033:25952256,513147,134348 +g105,31:11218293,25198033 +h105,31:11218293,25198033:2490370,0,0 +h105,31:13708663,25198033:0,0,0 +g105,31:9121143,25198033 +(105,31:9121143,25198033:2097150,485622,0 +k105,31:11218293,25198033:554432 ) -g109,31:14546211,25198033 -g109,31:16133493,25198033 -g109,31:17900343,25198033 -g109,31:20077449,25198033 -g109,31:22390215,25198033 -(109,31:22674869,25198033:501378,78643,0 -$109,31:22674869,25198033 -(109,31:22838723,25198033:173670,78643,0 +g105,31:14546211,25198033 +g105,31:16133493,25198033 +g105,31:17900343,25198033 +g105,31:20077449,25198033 +g105,31:22390215,25198033 +(105,31:22674869,25198033:501378,78643,0 +$105,31:22674869,25198033 +(105,31:22838723,25198033:173670,78643,0 ) -$109,31:23176247,25198033 +$105,31:23176247,25198033 ) -(109,31:23176247,25198033:501378,78643,0 -(109,31:23340101,25198033:173670,78643,0 +(105,31:23176247,25198033:501378,78643,0 +(105,31:23340101,25198033:173670,78643,0 ) ) -(109,31:23677625,25198033:501378,78643,0 -(109,31:23841479,25198033:173670,78643,0 +(105,31:23677625,25198033:501378,78643,0 +(105,31:23841479,25198033:173670,78643,0 ) ) -(109,31:24179003,25198033:501378,78643,0 -(109,31:24342857,25198033:173670,78643,0 +(105,31:24179003,25198033:501378,78643,0 +(105,31:24342857,25198033:173670,78643,0 ) ) -(109,31:24680381,25198033:501378,78643,0 -(109,31:24844235,25198033:173670,78643,0 +(105,31:24680381,25198033:501378,78643,0 +(105,31:24844235,25198033:173670,78643,0 ) ) -(109,31:25181759,25198033:501378,78643,0 -(109,31:25345613,25198033:173670,78643,0 +(105,31:25181759,25198033:501378,78643,0 +(105,31:25345613,25198033:173670,78643,0 ) ) -(109,31:25683137,25198033:501378,78643,0 -(109,31:25846991,25198033:173670,78643,0 +(105,31:25683137,25198033:501378,78643,0 +(105,31:25846991,25198033:173670,78643,0 ) ) -(109,31:26184515,25198033:501378,78643,0 -(109,31:26348369,25198033:173670,78643,0 +(105,31:26184515,25198033:501378,78643,0 +(105,31:26348369,25198033:173670,78643,0 ) ) -(109,31:26685893,25198033:501378,78643,0 -(109,31:26849747,25198033:173670,78643,0 +(105,31:26685893,25198033:501378,78643,0 +(105,31:26849747,25198033:173670,78643,0 ) ) -(109,31:27187271,25198033:501378,78643,0 -(109,31:27351125,25198033:173670,78643,0 +(105,31:27187271,25198033:501378,78643,0 +(105,31:27351125,25198033:173670,78643,0 ) ) -(109,31:27688649,25198033:501378,78643,0 -(109,31:27852503,25198033:173670,78643,0 +(105,31:27688649,25198033:501378,78643,0 +(105,31:27852503,25198033:173670,78643,0 ) ) -(109,31:28190027,25198033:501378,78643,0 -(109,31:28353881,25198033:173670,78643,0 +(105,31:28190027,25198033:501378,78643,0 +(105,31:28353881,25198033:173670,78643,0 ) ) -(109,31:28691405,25198033:501378,78643,0 -(109,31:28855259,25198033:173670,78643,0 +(105,31:28691405,25198033:501378,78643,0 +(105,31:28855259,25198033:173670,78643,0 ) ) -(109,31:29192783,25198033:501378,78643,0 -(109,31:29356637,25198033:173670,78643,0 +(105,31:29192783,25198033:501378,78643,0 +(105,31:29356637,25198033:173670,78643,0 ) ) -(109,31:29694161,25198033:501378,78643,0 -(109,31:29858015,25198033:173670,78643,0 +(105,31:29694161,25198033:501378,78643,0 +(105,31:29858015,25198033:173670,78643,0 ) ) -(109,31:30195539,25198033:501378,78643,0 -(109,31:30359393,25198033:173670,78643,0 +(105,31:30195539,25198033:501378,78643,0 +(105,31:30359393,25198033:173670,78643,0 ) ) -(109,31:30696917,25198033:501378,78643,0 -(109,31:30860771,25198033:173670,78643,0 +(105,31:30696917,25198033:501378,78643,0 +(105,31:30860771,25198033:173670,78643,0 ) ) -(109,31:31403379,25198033:1179650,485622,0 -k109,31:31586882,25198033:183503 -g109,31:31786111,25198033 +(105,31:31239539,25198033:1343490,485622,0 +k105,31:31586882,25198033:347343 +g105,31:31786111,25198033 ) -g109,31:30911859,25198033 -g109,31:32583029,25198033 +g105,31:30911859,25198033 +g105,31:32583029,25198033 ) -(109,33:6630773,26039521:25952256,485622,126483 -g109,33:13905273,26039521 -h109,33:13905273,26039521:4587520,0,0 -h109,33:18492793,26039521:0,0,0 -g109,33:11218293,26039521 -(109,33:11218293,26039521:2686980,485622,0 -k109,33:13905273,26039521:572133 +(105,33:6630773,26039521:25952256,485622,126483 +g105,33:13905273,26039521 +h105,33:13905273,26039521:4587520,0,0 +h105,33:18492793,26039521:0,0,0 +g105,33:11218293,26039521 +(105,33:11218293,26039521:2686980,485622,0 +k105,33:13905273,26039521:572133 ) -g109,33:17230570,26039521 -(109,33:17661089,26039521:501378,78643,0 -$109,33:17661089,26039521 -(109,33:17824943,26039521:173670,78643,0 +g105,33:17230570,26039521 +(105,33:17661089,26039521:501378,78643,0 +$105,33:17661089,26039521 +(105,33:17824943,26039521:173670,78643,0 ) -$109,33:18162467,26039521 +$105,33:18162467,26039521 ) -(109,33:18162467,26039521:501378,78643,0 -(109,33:18326321,26039521:173670,78643,0 +(105,33:18162467,26039521:501378,78643,0 +(105,33:18326321,26039521:173670,78643,0 ) ) -(109,33:18663845,26039521:501378,78643,0 -(109,33:18827699,26039521:173670,78643,0 +(105,33:18663845,26039521:501378,78643,0 +(105,33:18827699,26039521:173670,78643,0 ) ) -(109,33:19165223,26039521:501378,78643,0 -(109,33:19329077,26039521:173670,78643,0 +(105,33:19165223,26039521:501378,78643,0 +(105,33:19329077,26039521:173670,78643,0 ) ) -(109,33:19666601,26039521:501378,78643,0 -(109,33:19830455,26039521:173670,78643,0 +(105,33:19666601,26039521:501378,78643,0 +(105,33:19830455,26039521:173670,78643,0 ) ) -(109,33:20167979,26039521:501378,78643,0 -(109,33:20331833,26039521:173670,78643,0 +(105,33:20167979,26039521:501378,78643,0 +(105,33:20331833,26039521:173670,78643,0 ) ) -(109,33:20669357,26039521:501378,78643,0 -(109,33:20833211,26039521:173670,78643,0 +(105,33:20669357,26039521:501378,78643,0 +(105,33:20833211,26039521:173670,78643,0 ) ) -(109,33:21170735,26039521:501378,78643,0 -(109,33:21334589,26039521:173670,78643,0 +(105,33:21170735,26039521:501378,78643,0 +(105,33:21334589,26039521:173670,78643,0 ) ) -(109,33:21672113,26039521:501378,78643,0 -(109,33:21835967,26039521:173670,78643,0 +(105,33:21672113,26039521:501378,78643,0 +(105,33:21835967,26039521:173670,78643,0 ) ) -(109,33:22173491,26039521:501378,78643,0 -(109,33:22337345,26039521:173670,78643,0 +(105,33:22173491,26039521:501378,78643,0 +(105,33:22337345,26039521:173670,78643,0 ) ) -(109,33:22674869,26039521:501378,78643,0 -(109,33:22838723,26039521:173670,78643,0 +(105,33:22674869,26039521:501378,78643,0 +(105,33:22838723,26039521:173670,78643,0 ) ) -(109,33:23176247,26039521:501378,78643,0 -(109,33:23340101,26039521:173670,78643,0 +(105,33:23176247,26039521:501378,78643,0 +(105,33:23340101,26039521:173670,78643,0 ) ) -(109,33:23677625,26039521:501378,78643,0 -(109,33:23841479,26039521:173670,78643,0 +(105,33:23677625,26039521:501378,78643,0 +(105,33:23841479,26039521:173670,78643,0 ) ) -(109,33:24179003,26039521:501378,78643,0 -(109,33:24342857,26039521:173670,78643,0 +(105,33:24179003,26039521:501378,78643,0 +(105,33:24342857,26039521:173670,78643,0 ) ) -(109,33:24680381,26039521:501378,78643,0 -(109,33:24844235,26039521:173670,78643,0 +(105,33:24680381,26039521:501378,78643,0 +(105,33:24844235,26039521:173670,78643,0 ) ) -(109,33:25181759,26039521:501378,78643,0 -(109,33:25345613,26039521:173670,78643,0 +(105,33:25181759,26039521:501378,78643,0 +(105,33:25345613,26039521:173670,78643,0 ) ) -(109,33:25683137,26039521:501378,78643,0 -(109,33:25846991,26039521:173670,78643,0 +(105,33:25683137,26039521:501378,78643,0 +(105,33:25846991,26039521:173670,78643,0 ) ) -(109,33:26184515,26039521:501378,78643,0 -(109,33:26348369,26039521:173670,78643,0 +(105,33:26184515,26039521:501378,78643,0 +(105,33:26348369,26039521:173670,78643,0 ) ) -(109,33:26685893,26039521:501378,78643,0 -(109,33:26849747,26039521:173670,78643,0 +(105,33:26685893,26039521:501378,78643,0 +(105,33:26849747,26039521:173670,78643,0 ) ) -(109,33:27187271,26039521:501378,78643,0 -(109,33:27351125,26039521:173670,78643,0 +(105,33:27187271,26039521:501378,78643,0 +(105,33:27351125,26039521:173670,78643,0 ) ) -(109,33:27688649,26039521:501378,78643,0 -(109,33:27852503,26039521:173670,78643,0 +(105,33:27688649,26039521:501378,78643,0 +(105,33:27852503,26039521:173670,78643,0 ) ) -(109,33:28190027,26039521:501378,78643,0 -(109,33:28353881,26039521:173670,78643,0 +(105,33:28190027,26039521:501378,78643,0 +(105,33:28353881,26039521:173670,78643,0 ) ) -(109,33:28691405,26039521:501378,78643,0 -(109,33:28855259,26039521:173670,78643,0 +(105,33:28691405,26039521:501378,78643,0 +(105,33:28855259,26039521:173670,78643,0 ) ) -(109,33:29192783,26039521:501378,78643,0 -(109,33:29356637,26039521:173670,78643,0 +(105,33:29192783,26039521:501378,78643,0 +(105,33:29356637,26039521:173670,78643,0 ) ) -(109,33:29694161,26039521:501378,78643,0 -(109,33:29858015,26039521:173670,78643,0 +(105,33:29694161,26039521:501378,78643,0 +(105,33:29858015,26039521:173670,78643,0 ) ) -(109,33:30195539,26039521:501378,78643,0 -(109,33:30359393,26039521:173670,78643,0 +(105,33:30195539,26039521:501378,78643,0 +(105,33:30359393,26039521:173670,78643,0 ) ) -(109,33:30696917,26039521:501378,78643,0 -(109,33:30860771,26039521:173670,78643,0 +(105,33:30696917,26039521:501378,78643,0 +(105,33:30860771,26039521:173670,78643,0 ) ) -(109,33:31403379,26039521:1179650,485622,0 -k109,33:31586882,26039521:183503 -g109,33:31786111,26039521 +(105,33:31239539,26039521:1343490,485622,0 +k105,33:31586882,26039521:347343 +g105,33:31786111,26039521 ) -g109,33:30911859,26039521 -g109,33:32583029,26039521 +g105,33:30911859,26039521 +g105,33:32583029,26039521 ) -(109,35:6630773,26881009:25952256,513147,11795 -g109,35:13905273,26881009 -h109,35:13905273,26881009:4587520,0,0 -h109,35:18492793,26881009:0,0,0 -g109,35:11218293,26881009 -(109,35:11218293,26881009:2686980,485622,0 -k109,35:13905273,26881009:572133 +(105,35:6630773,26881009:25952256,513147,11795 +g105,35:13905273,26881009 +h105,35:13905273,26881009:4587520,0,0 +h105,35:18492793,26881009:0,0,0 +g105,35:11218293,26881009 +(105,35:11218293,26881009:2686980,485622,0 +k105,35:13905273,26881009:572133 ) -g109,35:18451506,26881009 -(109,35:18663845,26881009:501378,78643,0 -$109,35:18663845,26881009 -(109,35:18827699,26881009:173670,78643,0 +g105,35:18451506,26881009 +(105,35:18663845,26881009:501378,78643,0 +$105,35:18663845,26881009 +(105,35:18827699,26881009:173670,78643,0 ) -$109,35:19165223,26881009 +$105,35:19165223,26881009 ) -(109,35:19165223,26881009:501378,78643,0 -(109,35:19329077,26881009:173670,78643,0 +(105,35:19165223,26881009:501378,78643,0 +(105,35:19329077,26881009:173670,78643,0 ) ) -(109,35:19666601,26881009:501378,78643,0 -(109,35:19830455,26881009:173670,78643,0 +(105,35:19666601,26881009:501378,78643,0 +(105,35:19830455,26881009:173670,78643,0 ) ) -(109,35:20167979,26881009:501378,78643,0 -(109,35:20331833,26881009:173670,78643,0 +(105,35:20167979,26881009:501378,78643,0 +(105,35:20331833,26881009:173670,78643,0 ) ) -(109,35:20669357,26881009:501378,78643,0 -(109,35:20833211,26881009:173670,78643,0 +(105,35:20669357,26881009:501378,78643,0 +(105,35:20833211,26881009:173670,78643,0 ) ) -(109,35:21170735,26881009:501378,78643,0 -(109,35:21334589,26881009:173670,78643,0 +(105,35:21170735,26881009:501378,78643,0 +(105,35:21334589,26881009:173670,78643,0 ) ) -(109,35:21672113,26881009:501378,78643,0 -(109,35:21835967,26881009:173670,78643,0 +(105,35:21672113,26881009:501378,78643,0 +(105,35:21835967,26881009:173670,78643,0 ) ) -(109,35:22173491,26881009:501378,78643,0 -(109,35:22337345,26881009:173670,78643,0 +(105,35:22173491,26881009:501378,78643,0 +(105,35:22337345,26881009:173670,78643,0 ) ) -(109,35:22674869,26881009:501378,78643,0 -(109,35:22838723,26881009:173670,78643,0 +(105,35:22674869,26881009:501378,78643,0 +(105,35:22838723,26881009:173670,78643,0 ) ) -(109,35:23176247,26881009:501378,78643,0 -(109,35:23340101,26881009:173670,78643,0 +(105,35:23176247,26881009:501378,78643,0 +(105,35:23340101,26881009:173670,78643,0 ) ) -(109,35:23677625,26881009:501378,78643,0 -(109,35:23841479,26881009:173670,78643,0 +(105,35:23677625,26881009:501378,78643,0 +(105,35:23841479,26881009:173670,78643,0 ) ) -(109,35:24179003,26881009:501378,78643,0 -(109,35:24342857,26881009:173670,78643,0 +(105,35:24179003,26881009:501378,78643,0 +(105,35:24342857,26881009:173670,78643,0 ) ) -(109,35:24680381,26881009:501378,78643,0 -(109,35:24844235,26881009:173670,78643,0 +(105,35:24680381,26881009:501378,78643,0 +(105,35:24844235,26881009:173670,78643,0 ) ) -(109,35:25181759,26881009:501378,78643,0 -(109,35:25345613,26881009:173670,78643,0 +(105,35:25181759,26881009:501378,78643,0 +(105,35:25345613,26881009:173670,78643,0 ) ) -(109,35:25683137,26881009:501378,78643,0 -(109,35:25846991,26881009:173670,78643,0 +(105,35:25683137,26881009:501378,78643,0 +(105,35:25846991,26881009:173670,78643,0 ) ) -(109,35:26184515,26881009:501378,78643,0 -(109,35:26348369,26881009:173670,78643,0 +(105,35:26184515,26881009:501378,78643,0 +(105,35:26348369,26881009:173670,78643,0 ) ) -(109,35:26685893,26881009:501378,78643,0 -(109,35:26849747,26881009:173670,78643,0 +(105,35:26685893,26881009:501378,78643,0 +(105,35:26849747,26881009:173670,78643,0 ) ) -(109,35:27187271,26881009:501378,78643,0 -(109,35:27351125,26881009:173670,78643,0 +(105,35:27187271,26881009:501378,78643,0 +(105,35:27351125,26881009:173670,78643,0 ) ) -(109,35:27688649,26881009:501378,78643,0 -(109,35:27852503,26881009:173670,78643,0 +(105,35:27688649,26881009:501378,78643,0 +(105,35:27852503,26881009:173670,78643,0 ) ) -(109,35:28190027,26881009:501378,78643,0 -(109,35:28353881,26881009:173670,78643,0 +(105,35:28190027,26881009:501378,78643,0 +(105,35:28353881,26881009:173670,78643,0 ) ) -(109,35:28691405,26881009:501378,78643,0 -(109,35:28855259,26881009:173670,78643,0 +(105,35:28691405,26881009:501378,78643,0 +(105,35:28855259,26881009:173670,78643,0 ) ) -(109,35:29192783,26881009:501378,78643,0 -(109,35:29356637,26881009:173670,78643,0 +(105,35:29192783,26881009:501378,78643,0 +(105,35:29356637,26881009:173670,78643,0 ) ) -(109,35:29694161,26881009:501378,78643,0 -(109,35:29858015,26881009:173670,78643,0 +(105,35:29694161,26881009:501378,78643,0 +(105,35:29858015,26881009:173670,78643,0 ) ) -(109,35:30195539,26881009:501378,78643,0 -(109,35:30359393,26881009:173670,78643,0 +(105,35:30195539,26881009:501378,78643,0 +(105,35:30359393,26881009:173670,78643,0 ) ) -(109,35:30696917,26881009:501378,78643,0 -(109,35:30860771,26881009:173670,78643,0 +(105,35:30696917,26881009:501378,78643,0 +(105,35:30860771,26881009:173670,78643,0 ) ) -(109,35:31403379,26881009:1179650,485622,11795 -k109,35:31586882,26881009:183503 -g109,35:31786111,26881009 +(105,35:31239539,26881009:1343490,485622,11795 +k105,35:31586882,26881009:347343 +g105,35:31786111,26881009 ) -g109,35:30911859,26881009 -g109,35:32583029,26881009 +g105,35:30911859,26881009 +g105,35:32583029,26881009 ) -(109,37:6630773,27722497:25952256,505283,134348 -g109,37:13905273,27722497 -h109,37:13905273,27722497:4587520,0,0 -h109,37:18492793,27722497:0,0,0 -g109,37:11218293,27722497 -(109,37:11218293,27722497:2686980,485622,11795 -k109,37:13905273,27722497:572133 +(105,37:6630773,27722497:25952256,505283,134348 +g105,37:13905273,27722497 +h105,37:13905273,27722497:4587520,0,0 +h105,37:18492793,27722497:0,0,0 +g105,37:11218293,27722497 +(105,37:11218293,27722497:2686980,485622,11795 +k105,37:13905273,27722497:572133 ) -g109,37:17247609,27722497 -g109,37:18767389,27722497 -(109,37:19165223,27722497:501378,78643,0 -$109,37:19165223,27722497 -(109,37:19329077,27722497:173670,78643,0 +g105,37:17247609,27722497 +g105,37:18767389,27722497 +(105,37:19165223,27722497:501378,78643,0 +$105,37:19165223,27722497 +(105,37:19329077,27722497:173670,78643,0 ) -$109,37:19666601,27722497 +$105,37:19666601,27722497 ) -(109,37:19666601,27722497:501378,78643,0 -(109,37:19830455,27722497:173670,78643,0 +(105,37:19666601,27722497:501378,78643,0 +(105,37:19830455,27722497:173670,78643,0 ) ) -(109,37:20167979,27722497:501378,78643,0 -(109,37:20331833,27722497:173670,78643,0 +(105,37:20167979,27722497:501378,78643,0 +(105,37:20331833,27722497:173670,78643,0 ) ) -(109,37:20669357,27722497:501378,78643,0 -(109,37:20833211,27722497:173670,78643,0 +(105,37:20669357,27722497:501378,78643,0 +(105,37:20833211,27722497:173670,78643,0 ) ) -(109,37:21170735,27722497:501378,78643,0 -(109,37:21334589,27722497:173670,78643,0 +(105,37:21170735,27722497:501378,78643,0 +(105,37:21334589,27722497:173670,78643,0 ) ) -(109,37:21672113,27722497:501378,78643,0 -(109,37:21835967,27722497:173670,78643,0 +(105,37:21672113,27722497:501378,78643,0 +(105,37:21835967,27722497:173670,78643,0 ) ) -(109,37:22173491,27722497:501378,78643,0 -(109,37:22337345,27722497:173670,78643,0 +(105,37:22173491,27722497:501378,78643,0 +(105,37:22337345,27722497:173670,78643,0 ) ) -(109,37:22674869,27722497:501378,78643,0 -(109,37:22838723,27722497:173670,78643,0 +(105,37:22674869,27722497:501378,78643,0 +(105,37:22838723,27722497:173670,78643,0 ) ) -(109,37:23176247,27722497:501378,78643,0 -(109,37:23340101,27722497:173670,78643,0 +(105,37:23176247,27722497:501378,78643,0 +(105,37:23340101,27722497:173670,78643,0 ) ) -(109,37:23677625,27722497:501378,78643,0 -(109,37:23841479,27722497:173670,78643,0 +(105,37:23677625,27722497:501378,78643,0 +(105,37:23841479,27722497:173670,78643,0 ) ) -(109,37:24179003,27722497:501378,78643,0 -(109,37:24342857,27722497:173670,78643,0 +(105,37:24179003,27722497:501378,78643,0 +(105,37:24342857,27722497:173670,78643,0 ) ) -(109,37:24680381,27722497:501378,78643,0 -(109,37:24844235,27722497:173670,78643,0 +(105,37:24680381,27722497:501378,78643,0 +(105,37:24844235,27722497:173670,78643,0 ) ) -(109,37:25181759,27722497:501378,78643,0 -(109,37:25345613,27722497:173670,78643,0 +(105,37:25181759,27722497:501378,78643,0 +(105,37:25345613,27722497:173670,78643,0 ) ) -(109,37:25683137,27722497:501378,78643,0 -(109,37:25846991,27722497:173670,78643,0 +(105,37:25683137,27722497:501378,78643,0 +(105,37:25846991,27722497:173670,78643,0 ) ) -(109,37:26184515,27722497:501378,78643,0 -(109,37:26348369,27722497:173670,78643,0 +(105,37:26184515,27722497:501378,78643,0 +(105,37:26348369,27722497:173670,78643,0 ) ) -(109,37:26685893,27722497:501378,78643,0 -(109,37:26849747,27722497:173670,78643,0 +(105,37:26685893,27722497:501378,78643,0 +(105,37:26849747,27722497:173670,78643,0 ) ) -(109,37:27187271,27722497:501378,78643,0 -(109,37:27351125,27722497:173670,78643,0 +(105,37:27187271,27722497:501378,78643,0 +(105,37:27351125,27722497:173670,78643,0 ) ) -(109,37:27688649,27722497:501378,78643,0 -(109,37:27852503,27722497:173670,78643,0 +(105,37:27688649,27722497:501378,78643,0 +(105,37:27852503,27722497:173670,78643,0 ) ) -(109,37:28190027,27722497:501378,78643,0 -(109,37:28353881,27722497:173670,78643,0 +(105,37:28190027,27722497:501378,78643,0 +(105,37:28353881,27722497:173670,78643,0 ) ) -(109,37:28691405,27722497:501378,78643,0 -(109,37:28855259,27722497:173670,78643,0 +(105,37:28691405,27722497:501378,78643,0 +(105,37:28855259,27722497:173670,78643,0 ) ) -(109,37:29192783,27722497:501378,78643,0 -(109,37:29356637,27722497:173670,78643,0 +(105,37:29192783,27722497:501378,78643,0 +(105,37:29356637,27722497:173670,78643,0 ) ) -(109,37:29694161,27722497:501378,78643,0 -(109,37:29858015,27722497:173670,78643,0 +(105,37:29694161,27722497:501378,78643,0 +(105,37:29858015,27722497:173670,78643,0 ) ) -(109,37:30195539,27722497:501378,78643,0 -(109,37:30359393,27722497:173670,78643,0 +(105,37:30195539,27722497:501378,78643,0 +(105,37:30359393,27722497:173670,78643,0 ) ) -(109,37:30696917,27722497:501378,78643,0 -(109,37:30860771,27722497:173670,78643,0 +(105,37:30696917,27722497:501378,78643,0 +(105,37:30860771,27722497:173670,78643,0 ) ) -(109,37:31403379,27722497:1179650,485622,11795 -k109,37:31586882,27722497:183503 -g109,37:31786111,27722497 +(105,37:31239539,27722497:1343490,485622,11795 +k105,37:31586882,27722497:347343 +g105,37:31786111,27722497 ) -g109,37:30911859,27722497 -g109,37:32583029,27722497 +g105,37:30911859,27722497 +g105,37:32583029,27722497 ) -(109,39:6630773,28563985:25952256,505283,126483 -g109,39:9121143,28563985 -h109,39:9121143,28563985:983040,0,0 -h109,39:10104183,28563985:0,0,0 -g109,39:7613813,28563985 -(109,39:7613813,28563985:1507330,477757,11795 -k109,39:9121143,28563985:536742 +(105,39:6630773,28563985:25952256,505283,126483 +g105,39:9121143,28563985 +h105,39:9121143,28563985:983040,0,0 +h105,39:10104183,28563985:0,0,0 +g105,39:7613813,28563985 +(105,39:7613813,28563985:1507330,477757,11795 +k105,39:9121143,28563985:536742 ) -g109,39:10954185,28563985 -g109,39:11684911,28563985 -g109,39:14182488,28563985 -g109,39:15033145,28563985 -g109,39:16350418,28563985 -g109,39:17568732,28563985 -g109,39:20759680,28563985 -g109,39:21574947,28563985 -g109,39:22977417,28563985 -g109,39:25085710,28563985 -g109,39:25085710,28563985 -(109,39:25181759,28563985:501378,78643,0 -$109,39:25181759,28563985 -(109,39:25345613,28563985:173670,78643,0 +g105,39:10954185,28563985 +g105,39:11684911,28563985 +g105,39:14182488,28563985 +g105,39:15033145,28563985 +g105,39:16350418,28563985 +g105,39:17568732,28563985 +g105,39:20759680,28563985 +g105,39:21574947,28563985 +g105,39:22977417,28563985 +g105,39:25085710,28563985 +g105,39:25085710,28563985 +(105,39:25181759,28563985:501378,78643,0 +$105,39:25181759,28563985 +(105,39:25345613,28563985:173670,78643,0 ) -$109,39:25683137,28563985 +$105,39:25683137,28563985 ) -(109,39:25683137,28563985:501378,78643,0 -(109,39:25846991,28563985:173670,78643,0 +(105,39:25683137,28563985:501378,78643,0 +(105,39:25846991,28563985:173670,78643,0 ) ) -(109,39:26184515,28563985:501378,78643,0 -(109,39:26348369,28563985:173670,78643,0 +(105,39:26184515,28563985:501378,78643,0 +(105,39:26348369,28563985:173670,78643,0 ) ) -(109,39:26685893,28563985:501378,78643,0 -(109,39:26849747,28563985:173670,78643,0 +(105,39:26685893,28563985:501378,78643,0 +(105,39:26849747,28563985:173670,78643,0 ) ) -(109,39:27187271,28563985:501378,78643,0 -(109,39:27351125,28563985:173670,78643,0 +(105,39:27187271,28563985:501378,78643,0 +(105,39:27351125,28563985:173670,78643,0 ) ) -(109,39:27688649,28563985:501378,78643,0 -(109,39:27852503,28563985:173670,78643,0 +(105,39:27688649,28563985:501378,78643,0 +(105,39:27852503,28563985:173670,78643,0 ) ) -(109,39:28190027,28563985:501378,78643,0 -(109,39:28353881,28563985:173670,78643,0 +(105,39:28190027,28563985:501378,78643,0 +(105,39:28353881,28563985:173670,78643,0 ) ) -(109,39:28691405,28563985:501378,78643,0 -(109,39:28855259,28563985:173670,78643,0 +(105,39:28691405,28563985:501378,78643,0 +(105,39:28855259,28563985:173670,78643,0 ) ) -(109,39:29192783,28563985:501378,78643,0 -(109,39:29356637,28563985:173670,78643,0 +(105,39:29192783,28563985:501378,78643,0 +(105,39:29356637,28563985:173670,78643,0 ) ) -(109,39:29694161,28563985:501378,78643,0 -(109,39:29858015,28563985:173670,78643,0 +(105,39:29694161,28563985:501378,78643,0 +(105,39:29858015,28563985:173670,78643,0 ) ) -(109,39:30195539,28563985:501378,78643,0 -(109,39:30359393,28563985:173670,78643,0 +(105,39:30195539,28563985:501378,78643,0 +(105,39:30359393,28563985:173670,78643,0 ) ) -(109,39:30696917,28563985:501378,78643,0 -(109,39:30860771,28563985:173670,78643,0 +(105,39:30696917,28563985:501378,78643,0 +(105,39:30860771,28563985:173670,78643,0 ) ) -(109,39:31403379,28563985:1179650,481690,0 -k109,39:31586882,28563985:183503 -g109,39:31786111,28563985 +(105,39:31239539,28563985:1343490,481690,0 +k105,39:31586882,28563985:347343 +g105,39:31786111,28563985 ) -g109,39:30911859,28563985 -g109,39:32583029,28563985 +g105,39:30911859,28563985 +g105,39:32583029,28563985 ) -(109,41:6630773,29405473:25952256,505283,134348 -g109,41:9121143,29405473 -h109,41:9121143,29405473:983040,0,0 -h109,41:10104183,29405473:0,0,0 -g109,41:7613813,29405473 -(109,41:7613813,29405473:1507330,485622,11795 -k109,41:9121143,29405473:536742 +(105,41:6630773,29405473:25952256,505283,134348 +g105,41:9121143,29405473 +h105,41:9121143,29405473:983040,0,0 +h105,41:10104183,29405473:0,0,0 +g105,41:7613813,29405473 +(105,41:7613813,29405473:1507330,485622,11795 +k105,41:9121143,29405473:536742 ) -g109,41:11690154,29405473 -g109,41:14291933,29405473 -g109,41:14291933,29405473 -(109,41:14652821,29405473:501378,78643,0 -$109,41:14652821,29405473 -(109,41:14816675,29405473:173670,78643,0 +g105,41:11690154,29405473 +g105,41:14291933,29405473 +g105,41:14291933,29405473 +(105,41:14652821,29405473:501378,78643,0 +$105,41:14652821,29405473 +(105,41:14816675,29405473:173670,78643,0 ) -$109,41:15154199,29405473 +$105,41:15154199,29405473 ) -(109,41:15154199,29405473:501378,78643,0 -(109,41:15318053,29405473:173670,78643,0 +(105,41:15154199,29405473:501378,78643,0 +(105,41:15318053,29405473:173670,78643,0 ) ) -(109,41:15655577,29405473:501378,78643,0 -(109,41:15819431,29405473:173670,78643,0 +(105,41:15655577,29405473:501378,78643,0 +(105,41:15819431,29405473:173670,78643,0 ) ) -(109,41:16156955,29405473:501378,78643,0 -(109,41:16320809,29405473:173670,78643,0 +(105,41:16156955,29405473:501378,78643,0 +(105,41:16320809,29405473:173670,78643,0 ) ) -(109,41:16658333,29405473:501378,78643,0 -(109,41:16822187,29405473:173670,78643,0 +(105,41:16658333,29405473:501378,78643,0 +(105,41:16822187,29405473:173670,78643,0 ) ) -(109,41:17159711,29405473:501378,78643,0 -(109,41:17323565,29405473:173670,78643,0 +(105,41:17159711,29405473:501378,78643,0 +(105,41:17323565,29405473:173670,78643,0 ) ) -(109,41:17661089,29405473:501378,78643,0 -(109,41:17824943,29405473:173670,78643,0 +(105,41:17661089,29405473:501378,78643,0 +(105,41:17824943,29405473:173670,78643,0 ) ) -(109,41:18162467,29405473:501378,78643,0 -(109,41:18326321,29405473:173670,78643,0 +(105,41:18162467,29405473:501378,78643,0 +(105,41:18326321,29405473:173670,78643,0 ) ) -(109,41:18663845,29405473:501378,78643,0 -(109,41:18827699,29405473:173670,78643,0 +(105,41:18663845,29405473:501378,78643,0 +(105,41:18827699,29405473:173670,78643,0 ) ) -(109,41:19165223,29405473:501378,78643,0 -(109,41:19329077,29405473:173670,78643,0 +(105,41:19165223,29405473:501378,78643,0 +(105,41:19329077,29405473:173670,78643,0 ) ) -(109,41:19666601,29405473:501378,78643,0 -(109,41:19830455,29405473:173670,78643,0 +(105,41:19666601,29405473:501378,78643,0 +(105,41:19830455,29405473:173670,78643,0 ) ) -(109,41:20167979,29405473:501378,78643,0 -(109,41:20331833,29405473:173670,78643,0 +(105,41:20167979,29405473:501378,78643,0 +(105,41:20331833,29405473:173670,78643,0 ) ) -(109,41:20669357,29405473:501378,78643,0 -(109,41:20833211,29405473:173670,78643,0 +(105,41:20669357,29405473:501378,78643,0 +(105,41:20833211,29405473:173670,78643,0 ) ) -(109,41:21170735,29405473:501378,78643,0 -(109,41:21334589,29405473:173670,78643,0 +(105,41:21170735,29405473:501378,78643,0 +(105,41:21334589,29405473:173670,78643,0 ) ) -(109,41:21672113,29405473:501378,78643,0 -(109,41:21835967,29405473:173670,78643,0 +(105,41:21672113,29405473:501378,78643,0 +(105,41:21835967,29405473:173670,78643,0 ) ) -(109,41:22173491,29405473:501378,78643,0 -(109,41:22337345,29405473:173670,78643,0 +(105,41:22173491,29405473:501378,78643,0 +(105,41:22337345,29405473:173670,78643,0 ) ) -(109,41:22674869,29405473:501378,78643,0 -(109,41:22838723,29405473:173670,78643,0 +(105,41:22674869,29405473:501378,78643,0 +(105,41:22838723,29405473:173670,78643,0 ) ) -(109,41:23176247,29405473:501378,78643,0 -(109,41:23340101,29405473:173670,78643,0 +(105,41:23176247,29405473:501378,78643,0 +(105,41:23340101,29405473:173670,78643,0 ) ) -(109,41:23677625,29405473:501378,78643,0 -(109,41:23841479,29405473:173670,78643,0 +(105,41:23677625,29405473:501378,78643,0 +(105,41:23841479,29405473:173670,78643,0 ) ) -(109,41:24179003,29405473:501378,78643,0 -(109,41:24342857,29405473:173670,78643,0 +(105,41:24179003,29405473:501378,78643,0 +(105,41:24342857,29405473:173670,78643,0 ) ) -(109,41:24680381,29405473:501378,78643,0 -(109,41:24844235,29405473:173670,78643,0 +(105,41:24680381,29405473:501378,78643,0 +(105,41:24844235,29405473:173670,78643,0 ) ) -(109,41:25181759,29405473:501378,78643,0 -(109,41:25345613,29405473:173670,78643,0 +(105,41:25181759,29405473:501378,78643,0 +(105,41:25345613,29405473:173670,78643,0 ) ) -(109,41:25683137,29405473:501378,78643,0 -(109,41:25846991,29405473:173670,78643,0 +(105,41:25683137,29405473:501378,78643,0 +(105,41:25846991,29405473:173670,78643,0 ) ) -(109,41:26184515,29405473:501378,78643,0 -(109,41:26348369,29405473:173670,78643,0 +(105,41:26184515,29405473:501378,78643,0 +(105,41:26348369,29405473:173670,78643,0 ) ) -(109,41:26685893,29405473:501378,78643,0 -(109,41:26849747,29405473:173670,78643,0 +(105,41:26685893,29405473:501378,78643,0 +(105,41:26849747,29405473:173670,78643,0 ) ) -(109,41:27187271,29405473:501378,78643,0 -(109,41:27351125,29405473:173670,78643,0 +(105,41:27187271,29405473:501378,78643,0 +(105,41:27351125,29405473:173670,78643,0 ) ) -(109,41:27688649,29405473:501378,78643,0 -(109,41:27852503,29405473:173670,78643,0 +(105,41:27688649,29405473:501378,78643,0 +(105,41:27852503,29405473:173670,78643,0 ) ) -(109,41:28190027,29405473:501378,78643,0 -(109,41:28353881,29405473:173670,78643,0 +(105,41:28190027,29405473:501378,78643,0 +(105,41:28353881,29405473:173670,78643,0 ) ) -(109,41:28691405,29405473:501378,78643,0 -(109,41:28855259,29405473:173670,78643,0 +(105,41:28691405,29405473:501378,78643,0 +(105,41:28855259,29405473:173670,78643,0 ) ) -(109,41:29192783,29405473:501378,78643,0 -(109,41:29356637,29405473:173670,78643,0 +(105,41:29192783,29405473:501378,78643,0 +(105,41:29356637,29405473:173670,78643,0 ) ) -(109,41:29694161,29405473:501378,78643,0 -(109,41:29858015,29405473:173670,78643,0 +(105,41:29694161,29405473:501378,78643,0 +(105,41:29858015,29405473:173670,78643,0 ) ) -(109,41:30195539,29405473:501378,78643,0 -(109,41:30359393,29405473:173670,78643,0 +(105,41:30195539,29405473:501378,78643,0 +(105,41:30359393,29405473:173670,78643,0 ) ) -(109,41:30696917,29405473:501378,78643,0 -(109,41:30860771,29405473:173670,78643,0 +(105,41:30696917,29405473:501378,78643,0 +(105,41:30860771,29405473:173670,78643,0 ) ) -(109,41:31403379,29405473:1179650,477757,11795 -k109,41:31586882,29405473:183503 -g109,41:31786111,29405473 +(105,41:31239539,29405473:1343490,477757,11795 +k105,41:31586882,29405473:347343 +g105,41:31786111,29405473 ) -g109,41:30911859,29405473 -g109,41:32583029,29405473 +g105,41:30911859,29405473 +g105,41:32583029,29405473 ) -(109,43:6630773,30902321:25952256,505283,134348 -g109,43:7613813,30902321 -h109,43:7613813,30902321:0,0,0 -g109,43:6630773,30902321 -(109,43:6630773,30902321:983040,485622,0 -k109,43:7613813,30902321:574751 +(105,43:6630773,30902321:25952256,505283,134348 +g105,43:7613813,30902321 +h105,43:7613813,30902321:0,0,0 +g105,43:6630773,30902321 +(105,43:6630773,30902321:983040,485622,0 +k105,43:7613813,30902321:574751 ) -g109,43:9083130,30902321 -g109,43:9759461,30902321 -g109,43:13090000,30902321 -g109,43:15965064,30902321 -g109,43:17389816,30902321 -k109,43:26333842,30902321:5069538 -k109,43:31403379,30902321:5069537 -(109,43:31403379,30902321:1179650,477757,0 -k109,43:31766450,30902321:363071 +g105,43:9083130,30902321 +g105,43:9759461,30902321 +g105,43:13090000,30902321 +g105,43:16014216,30902321 +g105,43:17438968,30902321 +k105,43:26276498,30902321:4963042 +k105,43:31239539,30902321:4963041 +(105,43:31239539,30902321:1343490,477757,0 +k105,43:31766450,30902321:526911 ) -g109,43:31403379,30902321 -g109,43:32583029,30902321 +g105,43:31239539,30902321 +g105,43:32583029,30902321 ) -(109,45:6630773,31743809:25952256,513147,126483 -g109,45:9121143,31743809 -h109,45:9121143,31743809:983040,0,0 -h109,45:10104183,31743809:0,0,0 -g109,45:7613813,31743809 -(109,45:7613813,31743809:1507330,485622,0 -k109,45:9121143,31743809:536742 +(105,45:6630773,31743809:25952256,513147,126483 +g105,45:9121143,31743809 +h105,45:9121143,31743809:983040,0,0 +h105,45:10104183,31743809:0,0,0 +g105,45:7613813,31743809 +(105,45:7613813,31743809:1507330,485622,0 +k105,45:9121143,31743809:536742 ) -g109,45:10959427,31743809 -g109,45:11817948,31743809 -g109,45:13220418,31743809 -g109,45:15837270,31743809 -g109,45:15837270,31743809 -(109,45:16156955,31743809:501378,78643,0 -$109,45:16156955,31743809 -(109,45:16320809,31743809:173670,78643,0 +g105,45:10959427,31743809 +g105,45:11817948,31743809 +g105,45:13220418,31743809 +g105,45:15837270,31743809 +g105,45:15837270,31743809 +(105,45:16156955,31743809:501378,78643,0 +$105,45:16156955,31743809 +(105,45:16320809,31743809:173670,78643,0 ) -$109,45:16658333,31743809 +$105,45:16658333,31743809 ) -(109,45:16658333,31743809:501378,78643,0 -(109,45:16822187,31743809:173670,78643,0 +(105,45:16658333,31743809:501378,78643,0 +(105,45:16822187,31743809:173670,78643,0 ) ) -(109,45:17159711,31743809:501378,78643,0 -(109,45:17323565,31743809:173670,78643,0 +(105,45:17159711,31743809:501378,78643,0 +(105,45:17323565,31743809:173670,78643,0 ) ) -(109,45:17661089,31743809:501378,78643,0 -(109,45:17824943,31743809:173670,78643,0 +(105,45:17661089,31743809:501378,78643,0 +(105,45:17824943,31743809:173670,78643,0 ) ) -(109,45:18162467,31743809:501378,78643,0 -(109,45:18326321,31743809:173670,78643,0 +(105,45:18162467,31743809:501378,78643,0 +(105,45:18326321,31743809:173670,78643,0 ) ) -(109,45:18663845,31743809:501378,78643,0 -(109,45:18827699,31743809:173670,78643,0 +(105,45:18663845,31743809:501378,78643,0 +(105,45:18827699,31743809:173670,78643,0 ) ) -(109,45:19165223,31743809:501378,78643,0 -(109,45:19329077,31743809:173670,78643,0 +(105,45:19165223,31743809:501378,78643,0 +(105,45:19329077,31743809:173670,78643,0 ) ) -(109,45:19666601,31743809:501378,78643,0 -(109,45:19830455,31743809:173670,78643,0 +(105,45:19666601,31743809:501378,78643,0 +(105,45:19830455,31743809:173670,78643,0 ) ) -(109,45:20167979,31743809:501378,78643,0 -(109,45:20331833,31743809:173670,78643,0 +(105,45:20167979,31743809:501378,78643,0 +(105,45:20331833,31743809:173670,78643,0 ) ) -(109,45:20669357,31743809:501378,78643,0 -(109,45:20833211,31743809:173670,78643,0 +(105,45:20669357,31743809:501378,78643,0 +(105,45:20833211,31743809:173670,78643,0 ) ) -(109,45:21170735,31743809:501378,78643,0 -(109,45:21334589,31743809:173670,78643,0 +(105,45:21170735,31743809:501378,78643,0 +(105,45:21334589,31743809:173670,78643,0 ) ) -(109,45:21672113,31743809:501378,78643,0 -(109,45:21835967,31743809:173670,78643,0 +(105,45:21672113,31743809:501378,78643,0 +(105,45:21835967,31743809:173670,78643,0 ) ) -(109,45:22173491,31743809:501378,78643,0 -(109,45:22337345,31743809:173670,78643,0 +(105,45:22173491,31743809:501378,78643,0 +(105,45:22337345,31743809:173670,78643,0 ) ) -(109,45:22674869,31743809:501378,78643,0 -(109,45:22838723,31743809:173670,78643,0 +(105,45:22674869,31743809:501378,78643,0 +(105,45:22838723,31743809:173670,78643,0 ) ) -(109,45:23176247,31743809:501378,78643,0 -(109,45:23340101,31743809:173670,78643,0 +(105,45:23176247,31743809:501378,78643,0 +(105,45:23340101,31743809:173670,78643,0 ) ) -(109,45:23677625,31743809:501378,78643,0 -(109,45:23841479,31743809:173670,78643,0 +(105,45:23677625,31743809:501378,78643,0 +(105,45:23841479,31743809:173670,78643,0 ) ) -(109,45:24179003,31743809:501378,78643,0 -(109,45:24342857,31743809:173670,78643,0 +(105,45:24179003,31743809:501378,78643,0 +(105,45:24342857,31743809:173670,78643,0 ) ) -(109,45:24680381,31743809:501378,78643,0 -(109,45:24844235,31743809:173670,78643,0 +(105,45:24680381,31743809:501378,78643,0 +(105,45:24844235,31743809:173670,78643,0 ) ) -(109,45:25181759,31743809:501378,78643,0 -(109,45:25345613,31743809:173670,78643,0 +(105,45:25181759,31743809:501378,78643,0 +(105,45:25345613,31743809:173670,78643,0 ) ) -(109,45:25683137,31743809:501378,78643,0 -(109,45:25846991,31743809:173670,78643,0 +(105,45:25683137,31743809:501378,78643,0 +(105,45:25846991,31743809:173670,78643,0 ) ) -(109,45:26184515,31743809:501378,78643,0 -(109,45:26348369,31743809:173670,78643,0 +(105,45:26184515,31743809:501378,78643,0 +(105,45:26348369,31743809:173670,78643,0 ) ) -(109,45:26685893,31743809:501378,78643,0 -(109,45:26849747,31743809:173670,78643,0 +(105,45:26685893,31743809:501378,78643,0 +(105,45:26849747,31743809:173670,78643,0 ) ) -(109,45:27187271,31743809:501378,78643,0 -(109,45:27351125,31743809:173670,78643,0 +(105,45:27187271,31743809:501378,78643,0 +(105,45:27351125,31743809:173670,78643,0 ) ) -(109,45:27688649,31743809:501378,78643,0 -(109,45:27852503,31743809:173670,78643,0 +(105,45:27688649,31743809:501378,78643,0 +(105,45:27852503,31743809:173670,78643,0 ) ) -(109,45:28190027,31743809:501378,78643,0 -(109,45:28353881,31743809:173670,78643,0 +(105,45:28190027,31743809:501378,78643,0 +(105,45:28353881,31743809:173670,78643,0 ) ) -(109,45:28691405,31743809:501378,78643,0 -(109,45:28855259,31743809:173670,78643,0 +(105,45:28691405,31743809:501378,78643,0 +(105,45:28855259,31743809:173670,78643,0 ) ) -(109,45:29192783,31743809:501378,78643,0 -(109,45:29356637,31743809:173670,78643,0 +(105,45:29192783,31743809:501378,78643,0 +(105,45:29356637,31743809:173670,78643,0 ) ) -(109,45:29694161,31743809:501378,78643,0 -(109,45:29858015,31743809:173670,78643,0 +(105,45:29694161,31743809:501378,78643,0 +(105,45:29858015,31743809:173670,78643,0 ) ) -(109,45:30195539,31743809:501378,78643,0 -(109,45:30359393,31743809:173670,78643,0 +(105,45:30195539,31743809:501378,78643,0 +(105,45:30359393,31743809:173670,78643,0 ) ) -(109,45:30696917,31743809:501378,78643,0 -(109,45:30860771,31743809:173670,78643,0 +(105,45:30696917,31743809:501378,78643,0 +(105,45:30860771,31743809:173670,78643,0 ) ) -(109,45:31403379,31743809:1179650,477757,0 -k109,45:31586882,31743809:183503 -g109,45:31786111,31743809 +(105,45:31239539,31743809:1343490,477757,0 +k105,45:31586882,31743809:347343 +g105,45:31786111,31743809 ) -g109,45:30911859,31743809 -g109,45:32583029,31743809 +g105,45:30911859,31743809 +g105,45:32583029,31743809 ) -(109,47:6630773,32585297:25952256,505283,134348 -g109,47:9121143,32585297 -h109,47:9121143,32585297:983040,0,0 -h109,47:10104183,32585297:0,0,0 -g109,47:7613813,32585297 -(109,47:7613813,32585297:1507330,485622,0 -k109,47:9121143,32585297:536742 +(105,47:6630773,32585297:25952256,505283,134348 +g105,47:9121143,32585297 +h105,47:9121143,32585297:983040,0,0 +h105,47:10104183,32585297:0,0,0 +g105,47:7613813,32585297 +(105,47:7613813,32585297:1507330,485622,0 +k105,47:9121143,32585297:536742 ) -g109,47:11689499,32585297 -g109,47:13080173,32585297 -g109,47:16355662,32585297 -g109,47:19727489,32585297 -g109,47:19727489,32585297 -(109,47:20167979,32585297:501378,78643,0 -$109,47:20167979,32585297 -(109,47:20331833,32585297:173670,78643,0 +g105,47:11689499,32585297 +g105,47:13080173,32585297 +g105,47:16355662,32585297 +g105,47:19727489,32585297 +g105,47:19727489,32585297 +(105,47:20167979,32585297:501378,78643,0 +$105,47:20167979,32585297 +(105,47:20331833,32585297:173670,78643,0 ) -$109,47:20669357,32585297 +$105,47:20669357,32585297 ) -(109,47:20669357,32585297:501378,78643,0 -(109,47:20833211,32585297:173670,78643,0 +(105,47:20669357,32585297:501378,78643,0 +(105,47:20833211,32585297:173670,78643,0 ) ) -(109,47:21170735,32585297:501378,78643,0 -(109,47:21334589,32585297:173670,78643,0 +(105,47:21170735,32585297:501378,78643,0 +(105,47:21334589,32585297:173670,78643,0 ) ) -(109,47:21672113,32585297:501378,78643,0 -(109,47:21835967,32585297:173670,78643,0 +(105,47:21672113,32585297:501378,78643,0 +(105,47:21835967,32585297:173670,78643,0 ) ) -(109,47:22173491,32585297:501378,78643,0 -(109,47:22337345,32585297:173670,78643,0 +(105,47:22173491,32585297:501378,78643,0 +(105,47:22337345,32585297:173670,78643,0 ) ) -(109,47:22674869,32585297:501378,78643,0 -(109,47:22838723,32585297:173670,78643,0 +(105,47:22674869,32585297:501378,78643,0 +(105,47:22838723,32585297:173670,78643,0 ) ) -(109,47:23176247,32585297:501378,78643,0 -(109,47:23340101,32585297:173670,78643,0 +(105,47:23176247,32585297:501378,78643,0 +(105,47:23340101,32585297:173670,78643,0 ) ) -(109,47:23677625,32585297:501378,78643,0 -(109,47:23841479,32585297:173670,78643,0 +(105,47:23677625,32585297:501378,78643,0 +(105,47:23841479,32585297:173670,78643,0 ) ) -(109,47:24179003,32585297:501378,78643,0 -(109,47:24342857,32585297:173670,78643,0 +(105,47:24179003,32585297:501378,78643,0 +(105,47:24342857,32585297:173670,78643,0 ) ) -(109,47:24680381,32585297:501378,78643,0 -(109,47:24844235,32585297:173670,78643,0 +(105,47:24680381,32585297:501378,78643,0 +(105,47:24844235,32585297:173670,78643,0 ) ) -(109,47:25181759,32585297:501378,78643,0 -(109,47:25345613,32585297:173670,78643,0 +(105,47:25181759,32585297:501378,78643,0 +(105,47:25345613,32585297:173670,78643,0 ) ) -(109,47:25683137,32585297:501378,78643,0 -(109,47:25846991,32585297:173670,78643,0 +(105,47:25683137,32585297:501378,78643,0 +(105,47:25846991,32585297:173670,78643,0 ) ) -(109,47:26184515,32585297:501378,78643,0 -(109,47:26348369,32585297:173670,78643,0 +(105,47:26184515,32585297:501378,78643,0 +(105,47:26348369,32585297:173670,78643,0 ) ) -(109,47:26685893,32585297:501378,78643,0 -(109,47:26849747,32585297:173670,78643,0 +(105,47:26685893,32585297:501378,78643,0 +(105,47:26849747,32585297:173670,78643,0 ) ) -(109,47:27187271,32585297:501378,78643,0 -(109,47:27351125,32585297:173670,78643,0 +(105,47:27187271,32585297:501378,78643,0 +(105,47:27351125,32585297:173670,78643,0 ) ) -(109,47:27688649,32585297:501378,78643,0 -(109,47:27852503,32585297:173670,78643,0 +(105,47:27688649,32585297:501378,78643,0 +(105,47:27852503,32585297:173670,78643,0 ) ) -(109,47:28190027,32585297:501378,78643,0 -(109,47:28353881,32585297:173670,78643,0 +(105,47:28190027,32585297:501378,78643,0 +(105,47:28353881,32585297:173670,78643,0 ) ) -(109,47:28691405,32585297:501378,78643,0 -(109,47:28855259,32585297:173670,78643,0 +(105,47:28691405,32585297:501378,78643,0 +(105,47:28855259,32585297:173670,78643,0 ) ) -(109,47:29192783,32585297:501378,78643,0 -(109,47:29356637,32585297:173670,78643,0 +(105,47:29192783,32585297:501378,78643,0 +(105,47:29356637,32585297:173670,78643,0 ) ) -(109,47:29694161,32585297:501378,78643,0 -(109,47:29858015,32585297:173670,78643,0 +(105,47:29694161,32585297:501378,78643,0 +(105,47:29858015,32585297:173670,78643,0 ) ) -(109,47:30195539,32585297:501378,78643,0 -(109,47:30359393,32585297:173670,78643,0 +(105,47:30195539,32585297:501378,78643,0 +(105,47:30359393,32585297:173670,78643,0 ) ) -(109,47:30696917,32585297:501378,78643,0 -(109,47:30860771,32585297:173670,78643,0 +(105,47:30696917,32585297:501378,78643,0 +(105,47:30860771,32585297:173670,78643,0 ) ) -(109,47:31403379,32585297:1179650,485622,11795 -k109,47:31586882,32585297:183503 -g109,47:31786111,32585297 +(105,47:31239539,32585297:1343490,485622,11795 +k105,47:31586882,32585297:347343 +g105,47:31786111,32585297 ) -g109,47:30911859,32585297 -g109,47:32583029,32585297 +g105,47:30911859,32585297 +g105,47:32583029,32585297 ) -(109,49:6630773,33426785:25952256,505283,11795 -g109,49:9121143,33426785 -h109,49:9121143,33426785:983040,0,0 -h109,49:10104183,33426785:0,0,0 -g109,49:7613813,33426785 -(109,49:7613813,33426785:1507330,485622,11795 -k109,49:9121143,33426785:536742 +(105,49:6630773,33426785:25952256,505283,11795 +g105,49:9121143,33426785 +h105,49:9121143,33426785:983040,0,0 +h105,49:10104183,33426785:0,0,0 +g105,49:7613813,33426785 +(105,49:7613813,33426785:1507330,485622,11795 +k105,49:9121143,33426785:536742 ) -g109,49:12017834,33426785 -g109,49:14227708,33426785 -g109,49:15618382,33426785 -g109,49:19093756,33426785 -g109,49:19093756,33426785 -(109,49:19165223,33426785:501378,78643,0 -$109,49:19165223,33426785 -(109,49:19329077,33426785:173670,78643,0 +g105,49:12017834,33426785 +g105,49:14227708,33426785 +g105,49:15618382,33426785 +g105,49:19093756,33426785 +g105,49:19093756,33426785 +(105,49:19165223,33426785:501378,78643,0 +$105,49:19165223,33426785 +(105,49:19329077,33426785:173670,78643,0 ) -$109,49:19666601,33426785 +$105,49:19666601,33426785 ) -(109,49:19666601,33426785:501378,78643,0 -(109,49:19830455,33426785:173670,78643,0 +(105,49:19666601,33426785:501378,78643,0 +(105,49:19830455,33426785:173670,78643,0 ) ) -(109,49:20167979,33426785:501378,78643,0 -(109,49:20331833,33426785:173670,78643,0 +(105,49:20167979,33426785:501378,78643,0 +(105,49:20331833,33426785:173670,78643,0 ) ) -(109,49:20669357,33426785:501378,78643,0 -(109,49:20833211,33426785:173670,78643,0 +(105,49:20669357,33426785:501378,78643,0 +(105,49:20833211,33426785:173670,78643,0 ) ) -(109,49:21170735,33426785:501378,78643,0 -(109,49:21334589,33426785:173670,78643,0 +(105,49:21170735,33426785:501378,78643,0 +(105,49:21334589,33426785:173670,78643,0 ) ) -(109,49:21672113,33426785:501378,78643,0 -(109,49:21835967,33426785:173670,78643,0 +(105,49:21672113,33426785:501378,78643,0 +(105,49:21835967,33426785:173670,78643,0 ) ) -(109,49:22173491,33426785:501378,78643,0 -(109,49:22337345,33426785:173670,78643,0 +(105,49:22173491,33426785:501378,78643,0 +(105,49:22337345,33426785:173670,78643,0 ) ) -(109,49:22674869,33426785:501378,78643,0 -(109,49:22838723,33426785:173670,78643,0 +(105,49:22674869,33426785:501378,78643,0 +(105,49:22838723,33426785:173670,78643,0 ) ) -(109,49:23176247,33426785:501378,78643,0 -(109,49:23340101,33426785:173670,78643,0 +(105,49:23176247,33426785:501378,78643,0 +(105,49:23340101,33426785:173670,78643,0 ) ) -(109,49:23677625,33426785:501378,78643,0 -(109,49:23841479,33426785:173670,78643,0 +(105,49:23677625,33426785:501378,78643,0 +(105,49:23841479,33426785:173670,78643,0 ) ) -(109,49:24179003,33426785:501378,78643,0 -(109,49:24342857,33426785:173670,78643,0 +(105,49:24179003,33426785:501378,78643,0 +(105,49:24342857,33426785:173670,78643,0 ) ) -(109,49:24680381,33426785:501378,78643,0 -(109,49:24844235,33426785:173670,78643,0 +(105,49:24680381,33426785:501378,78643,0 +(105,49:24844235,33426785:173670,78643,0 ) ) -(109,49:25181759,33426785:501378,78643,0 -(109,49:25345613,33426785:173670,78643,0 +(105,49:25181759,33426785:501378,78643,0 +(105,49:25345613,33426785:173670,78643,0 ) ) -(109,49:25683137,33426785:501378,78643,0 -(109,49:25846991,33426785:173670,78643,0 +(105,49:25683137,33426785:501378,78643,0 +(105,49:25846991,33426785:173670,78643,0 ) ) -(109,49:26184515,33426785:501378,78643,0 -(109,49:26348369,33426785:173670,78643,0 +(105,49:26184515,33426785:501378,78643,0 +(105,49:26348369,33426785:173670,78643,0 ) ) -(109,49:26685893,33426785:501378,78643,0 -(109,49:26849747,33426785:173670,78643,0 +(105,49:26685893,33426785:501378,78643,0 +(105,49:26849747,33426785:173670,78643,0 ) ) -(109,49:27187271,33426785:501378,78643,0 -(109,49:27351125,33426785:173670,78643,0 +(105,49:27187271,33426785:501378,78643,0 +(105,49:27351125,33426785:173670,78643,0 ) ) -(109,49:27688649,33426785:501378,78643,0 -(109,49:27852503,33426785:173670,78643,0 +(105,49:27688649,33426785:501378,78643,0 +(105,49:27852503,33426785:173670,78643,0 ) ) -(109,49:28190027,33426785:501378,78643,0 -(109,49:28353881,33426785:173670,78643,0 +(105,49:28190027,33426785:501378,78643,0 +(105,49:28353881,33426785:173670,78643,0 ) ) -(109,49:28691405,33426785:501378,78643,0 -(109,49:28855259,33426785:173670,78643,0 +(105,49:28691405,33426785:501378,78643,0 +(105,49:28855259,33426785:173670,78643,0 ) ) -(109,49:29192783,33426785:501378,78643,0 -(109,49:29356637,33426785:173670,78643,0 +(105,49:29192783,33426785:501378,78643,0 +(105,49:29356637,33426785:173670,78643,0 ) ) -(109,49:29694161,33426785:501378,78643,0 -(109,49:29858015,33426785:173670,78643,0 +(105,49:29694161,33426785:501378,78643,0 +(105,49:29858015,33426785:173670,78643,0 ) ) -(109,49:30195539,33426785:501378,78643,0 -(109,49:30359393,33426785:173670,78643,0 +(105,49:30195539,33426785:501378,78643,0 +(105,49:30359393,33426785:173670,78643,0 ) ) -(109,49:30696917,33426785:501378,78643,0 -(109,49:30860771,33426785:173670,78643,0 +(105,49:30696917,33426785:501378,78643,0 +(105,49:30860771,33426785:173670,78643,0 ) ) -(109,49:31403379,33426785:1179650,485622,11795 -k109,49:31586882,33426785:183503 -g109,49:31786111,33426785 +(105,49:31239539,33426785:1343490,485622,11795 +k105,49:31586882,33426785:347343 +g105,49:31786111,33426785 ) -g109,49:30911859,33426785 -g109,49:32583029,33426785 +g105,49:30911859,33426785 +g105,49:32583029,33426785 ) -(109,51:6630773,34268273:25952256,505283,134348 -g109,51:9121143,34268273 -h109,51:9121143,34268273:983040,0,0 -h109,51:10104183,34268273:0,0,0 -g109,51:7613813,34268273 -(109,51:7613813,34268273:1507330,485622,0 -k109,51:9121143,34268273:536742 +(105,51:6630773,34268273:25952256,505283,134348 +g105,51:9121143,34268273 +h105,51:9121143,34268273:983040,0,0 +h105,51:10104183,34268273:0,0,0 +g105,51:7613813,34268273 +(105,51:7613813,34268273:1507330,485622,0 +k105,51:9121143,34268273:536742 ) -g109,51:11549907,34268273 -g109,51:13759781,34268273 -g109,51:15150455,34268273 -g109,51:17861024,34268273 -g109,51:20387436,34268273 -g109,51:20387436,34268273 -(109,51:20669357,34268273:501378,78643,0 -$109,51:20669357,34268273 -(109,51:20833211,34268273:173670,78643,0 +g105,51:11549907,34268273 +g105,51:13759781,34268273 +g105,51:15150455,34268273 +g105,51:17861024,34268273 +g105,51:20387436,34268273 +g105,51:20387436,34268273 +(105,51:20669357,34268273:501378,78643,0 +$105,51:20669357,34268273 +(105,51:20833211,34268273:173670,78643,0 ) -$109,51:21170735,34268273 +$105,51:21170735,34268273 ) -(109,51:21170735,34268273:501378,78643,0 -(109,51:21334589,34268273:173670,78643,0 +(105,51:21170735,34268273:501378,78643,0 +(105,51:21334589,34268273:173670,78643,0 ) ) -(109,51:21672113,34268273:501378,78643,0 -(109,51:21835967,34268273:173670,78643,0 +(105,51:21672113,34268273:501378,78643,0 +(105,51:21835967,34268273:173670,78643,0 ) ) -(109,51:22173491,34268273:501378,78643,0 -(109,51:22337345,34268273:173670,78643,0 +(105,51:22173491,34268273:501378,78643,0 +(105,51:22337345,34268273:173670,78643,0 ) ) -(109,51:22674869,34268273:501378,78643,0 -(109,51:22838723,34268273:173670,78643,0 +(105,51:22674869,34268273:501378,78643,0 +(105,51:22838723,34268273:173670,78643,0 ) ) -(109,51:23176247,34268273:501378,78643,0 -(109,51:23340101,34268273:173670,78643,0 +(105,51:23176247,34268273:501378,78643,0 +(105,51:23340101,34268273:173670,78643,0 ) ) -(109,51:23677625,34268273:501378,78643,0 -(109,51:23841479,34268273:173670,78643,0 +(105,51:23677625,34268273:501378,78643,0 +(105,51:23841479,34268273:173670,78643,0 ) ) -(109,51:24179003,34268273:501378,78643,0 -(109,51:24342857,34268273:173670,78643,0 +(105,51:24179003,34268273:501378,78643,0 +(105,51:24342857,34268273:173670,78643,0 ) ) -(109,51:24680381,34268273:501378,78643,0 -(109,51:24844235,34268273:173670,78643,0 +(105,51:24680381,34268273:501378,78643,0 +(105,51:24844235,34268273:173670,78643,0 ) ) -(109,51:25181759,34268273:501378,78643,0 -(109,51:25345613,34268273:173670,78643,0 +(105,51:25181759,34268273:501378,78643,0 +(105,51:25345613,34268273:173670,78643,0 ) ) -(109,51:25683137,34268273:501378,78643,0 -(109,51:25846991,34268273:173670,78643,0 +(105,51:25683137,34268273:501378,78643,0 +(105,51:25846991,34268273:173670,78643,0 ) ) -(109,51:26184515,34268273:501378,78643,0 -(109,51:26348369,34268273:173670,78643,0 +(105,51:26184515,34268273:501378,78643,0 +(105,51:26348369,34268273:173670,78643,0 ) ) -(109,51:26685893,34268273:501378,78643,0 -(109,51:26849747,34268273:173670,78643,0 +(105,51:26685893,34268273:501378,78643,0 +(105,51:26849747,34268273:173670,78643,0 ) ) -(109,51:27187271,34268273:501378,78643,0 -(109,51:27351125,34268273:173670,78643,0 +(105,51:27187271,34268273:501378,78643,0 +(105,51:27351125,34268273:173670,78643,0 ) ) -(109,51:27688649,34268273:501378,78643,0 -(109,51:27852503,34268273:173670,78643,0 +(105,51:27688649,34268273:501378,78643,0 +(105,51:27852503,34268273:173670,78643,0 ) ) -(109,51:28190027,34268273:501378,78643,0 -(109,51:28353881,34268273:173670,78643,0 +(105,51:28190027,34268273:501378,78643,0 +(105,51:28353881,34268273:173670,78643,0 ) ) -(109,51:28691405,34268273:501378,78643,0 -(109,51:28855259,34268273:173670,78643,0 +(105,51:28691405,34268273:501378,78643,0 +(105,51:28855259,34268273:173670,78643,0 ) ) -(109,51:29192783,34268273:501378,78643,0 -(109,51:29356637,34268273:173670,78643,0 +(105,51:29192783,34268273:501378,78643,0 +(105,51:29356637,34268273:173670,78643,0 ) ) -(109,51:29694161,34268273:501378,78643,0 -(109,51:29858015,34268273:173670,78643,0 +(105,51:29694161,34268273:501378,78643,0 +(105,51:29858015,34268273:173670,78643,0 ) ) -(109,51:30195539,34268273:501378,78643,0 -(109,51:30359393,34268273:173670,78643,0 +(105,51:30195539,34268273:501378,78643,0 +(105,51:30359393,34268273:173670,78643,0 ) ) -(109,51:30696917,34268273:501378,78643,0 -(109,51:30860771,34268273:173670,78643,0 +(105,51:30696917,34268273:501378,78643,0 +(105,51:30860771,34268273:173670,78643,0 ) ) -(109,51:31403379,34268273:1179650,485622,11795 -k109,51:31586882,34268273:183503 -g109,51:31786111,34268273 +(105,51:31239539,34268273:1343490,485622,11795 +k105,51:31586882,34268273:347343 +g105,51:31786111,34268273 ) -g109,51:30911859,34268273 -g109,51:32583029,34268273 +g105,51:30911859,34268273 +g105,51:32583029,34268273 ) -(109,53:6630773,35109761:25952256,505283,126483 -g109,53:9121143,35109761 -h109,53:9121143,35109761:983040,0,0 -h109,53:10104183,35109761:0,0,0 -g109,53:7613813,35109761 -(109,53:7613813,35109761:1507330,485622,11795 -k109,53:9121143,35109761:536742 +(105,53:6630773,35109761:25952256,505283,126483 +g105,53:9121143,35109761 +h105,53:9121143,35109761:983040,0,0 +h105,53:10104183,35109761:0,0,0 +g105,53:7613813,35109761 +(105,53:7613813,35109761:1507330,485622,11795 +k105,53:9121143,35109761:536742 ) -g109,53:13196171,35109761 -g109,53:16472315,35109761 -g109,53:17862989,35109761 -g109,53:21466813,35109761 -g109,53:21466813,35109761 -(109,53:21672113,35109761:501378,78643,0 -$109,53:21672113,35109761 -(109,53:21835967,35109761:173670,78643,0 +g105,53:13196171,35109761 +g105,53:16472315,35109761 +g105,53:17862989,35109761 +g105,53:21466813,35109761 +g105,53:21466813,35109761 +(105,53:21672113,35109761:501378,78643,0 +$105,53:21672113,35109761 +(105,53:21835967,35109761:173670,78643,0 ) -$109,53:22173491,35109761 +$105,53:22173491,35109761 ) -(109,53:22173491,35109761:501378,78643,0 -(109,53:22337345,35109761:173670,78643,0 +(105,53:22173491,35109761:501378,78643,0 +(105,53:22337345,35109761:173670,78643,0 ) ) -(109,53:22674869,35109761:501378,78643,0 -(109,53:22838723,35109761:173670,78643,0 +(105,53:22674869,35109761:501378,78643,0 +(105,53:22838723,35109761:173670,78643,0 ) ) -(109,53:23176247,35109761:501378,78643,0 -(109,53:23340101,35109761:173670,78643,0 +(105,53:23176247,35109761:501378,78643,0 +(105,53:23340101,35109761:173670,78643,0 ) ) -(109,53:23677625,35109761:501378,78643,0 -(109,53:23841479,35109761:173670,78643,0 +(105,53:23677625,35109761:501378,78643,0 +(105,53:23841479,35109761:173670,78643,0 ) ) -(109,53:24179003,35109761:501378,78643,0 -(109,53:24342857,35109761:173670,78643,0 +(105,53:24179003,35109761:501378,78643,0 +(105,53:24342857,35109761:173670,78643,0 ) ) -(109,53:24680381,35109761:501378,78643,0 -(109,53:24844235,35109761:173670,78643,0 +(105,53:24680381,35109761:501378,78643,0 +(105,53:24844235,35109761:173670,78643,0 ) ) -(109,53:25181759,35109761:501378,78643,0 -(109,53:25345613,35109761:173670,78643,0 +(105,53:25181759,35109761:501378,78643,0 +(105,53:25345613,35109761:173670,78643,0 ) ) -(109,53:25683137,35109761:501378,78643,0 -(109,53:25846991,35109761:173670,78643,0 +(105,53:25683137,35109761:501378,78643,0 +(105,53:25846991,35109761:173670,78643,0 ) ) -(109,53:26184515,35109761:501378,78643,0 -(109,53:26348369,35109761:173670,78643,0 +(105,53:26184515,35109761:501378,78643,0 +(105,53:26348369,35109761:173670,78643,0 ) ) -(109,53:26685893,35109761:501378,78643,0 -(109,53:26849747,35109761:173670,78643,0 +(105,53:26685893,35109761:501378,78643,0 +(105,53:26849747,35109761:173670,78643,0 ) ) -(109,53:27187271,35109761:501378,78643,0 -(109,53:27351125,35109761:173670,78643,0 +(105,53:27187271,35109761:501378,78643,0 +(105,53:27351125,35109761:173670,78643,0 ) ) -(109,53:27688649,35109761:501378,78643,0 -(109,53:27852503,35109761:173670,78643,0 +(105,53:27688649,35109761:501378,78643,0 +(105,53:27852503,35109761:173670,78643,0 ) ) -(109,53:28190027,35109761:501378,78643,0 -(109,53:28353881,35109761:173670,78643,0 +(105,53:28190027,35109761:501378,78643,0 +(105,53:28353881,35109761:173670,78643,0 ) ) -(109,53:28691405,35109761:501378,78643,0 -(109,53:28855259,35109761:173670,78643,0 +(105,53:28691405,35109761:501378,78643,0 +(105,53:28855259,35109761:173670,78643,0 ) ) -(109,53:29192783,35109761:501378,78643,0 -(109,53:29356637,35109761:173670,78643,0 +(105,53:29192783,35109761:501378,78643,0 +(105,53:29356637,35109761:173670,78643,0 ) ) -(109,53:29694161,35109761:501378,78643,0 -(109,53:29858015,35109761:173670,78643,0 +(105,53:29694161,35109761:501378,78643,0 +(105,53:29858015,35109761:173670,78643,0 ) ) -(109,53:30195539,35109761:501378,78643,0 -(109,53:30359393,35109761:173670,78643,0 +(105,53:30195539,35109761:501378,78643,0 +(105,53:30359393,35109761:173670,78643,0 ) ) -(109,53:30696917,35109761:501378,78643,0 -(109,53:30860771,35109761:173670,78643,0 +(105,53:30696917,35109761:501378,78643,0 +(105,53:30860771,35109761:173670,78643,0 ) ) -(109,53:31403379,35109761:1179650,485622,11795 -k109,53:31586882,35109761:183503 -g109,53:31786111,35109761 +(105,53:31239539,35109761:1343490,485622,11795 +k105,53:31586882,35109761:347343 +g105,53:31786111,35109761 ) -g109,53:30911859,35109761 -g109,53:32583029,35109761 +g105,53:30911859,35109761 +g105,53:32583029,35109761 ) -(109,55:6630773,35951249:25952256,505283,126483 -g109,55:9121143,35951249 -h109,55:9121143,35951249:983040,0,0 -h109,55:10104183,35951249:0,0,0 -g109,55:7613813,35951249 -(109,55:7613813,35951249:1507330,485622,11795 -k109,55:9121143,35951249:536742 +(105,55:6630773,35951249:25952256,505283,126483 +g105,55:9121143,35951249 +h105,55:9121143,35951249:983040,0,0 +h105,55:10104183,35951249:0,0,0 +g105,55:7613813,35951249 +(105,55:7613813,35951249:1507330,485622,11795 +k105,55:9121143,35951249:536742 ) -g109,55:10610121,35951249 -g109,55:12000795,35951249 -g109,55:13134567,35951249 -g109,55:16738391,35951249 -g109,55:16738391,35951249 -(109,55:17159711,35951249:501378,78643,0 -$109,55:17159711,35951249 -(109,55:17323565,35951249:173670,78643,0 +g105,55:10610121,35951249 +g105,55:12000795,35951249 +g105,55:13134567,35951249 +g105,55:16738391,35951249 +g105,55:16738391,35951249 +(105,55:17159711,35951249:501378,78643,0 +$105,55:17159711,35951249 +(105,55:17323565,35951249:173670,78643,0 ) -$109,55:17661089,35951249 +$105,55:17661089,35951249 ) -(109,55:17661089,35951249:501378,78643,0 -(109,55:17824943,35951249:173670,78643,0 +(105,55:17661089,35951249:501378,78643,0 +(105,55:17824943,35951249:173670,78643,0 ) ) -(109,55:18162467,35951249:501378,78643,0 -(109,55:18326321,35951249:173670,78643,0 +(105,55:18162467,35951249:501378,78643,0 +(105,55:18326321,35951249:173670,78643,0 ) ) -(109,55:18663845,35951249:501378,78643,0 -(109,55:18827699,35951249:173670,78643,0 +(105,55:18663845,35951249:501378,78643,0 +(105,55:18827699,35951249:173670,78643,0 ) ) -(109,55:19165223,35951249:501378,78643,0 -(109,55:19329077,35951249:173670,78643,0 +(105,55:19165223,35951249:501378,78643,0 +(105,55:19329077,35951249:173670,78643,0 ) ) -(109,55:19666601,35951249:501378,78643,0 -(109,55:19830455,35951249:173670,78643,0 +(105,55:19666601,35951249:501378,78643,0 +(105,55:19830455,35951249:173670,78643,0 ) ) -(109,55:20167979,35951249:501378,78643,0 -(109,55:20331833,35951249:173670,78643,0 +(105,55:20167979,35951249:501378,78643,0 +(105,55:20331833,35951249:173670,78643,0 ) ) -(109,55:20669357,35951249:501378,78643,0 -(109,55:20833211,35951249:173670,78643,0 +(105,55:20669357,35951249:501378,78643,0 +(105,55:20833211,35951249:173670,78643,0 ) ) -(109,55:21170735,35951249:501378,78643,0 -(109,55:21334589,35951249:173670,78643,0 +(105,55:21170735,35951249:501378,78643,0 +(105,55:21334589,35951249:173670,78643,0 ) ) -(109,55:21672113,35951249:501378,78643,0 -(109,55:21835967,35951249:173670,78643,0 +(105,55:21672113,35951249:501378,78643,0 +(105,55:21835967,35951249:173670,78643,0 ) ) -(109,55:22173491,35951249:501378,78643,0 -(109,55:22337345,35951249:173670,78643,0 +(105,55:22173491,35951249:501378,78643,0 +(105,55:22337345,35951249:173670,78643,0 ) ) -(109,55:22674869,35951249:501378,78643,0 -(109,55:22838723,35951249:173670,78643,0 +(105,55:22674869,35951249:501378,78643,0 +(105,55:22838723,35951249:173670,78643,0 ) ) -(109,55:23176247,35951249:501378,78643,0 -(109,55:23340101,35951249:173670,78643,0 +(105,55:23176247,35951249:501378,78643,0 +(105,55:23340101,35951249:173670,78643,0 ) ) -(109,55:23677625,35951249:501378,78643,0 -(109,55:23841479,35951249:173670,78643,0 +(105,55:23677625,35951249:501378,78643,0 +(105,55:23841479,35951249:173670,78643,0 ) ) -(109,55:24179003,35951249:501378,78643,0 -(109,55:24342857,35951249:173670,78643,0 +(105,55:24179003,35951249:501378,78643,0 +(105,55:24342857,35951249:173670,78643,0 ) ) -(109,55:24680381,35951249:501378,78643,0 -(109,55:24844235,35951249:173670,78643,0 +(105,55:24680381,35951249:501378,78643,0 +(105,55:24844235,35951249:173670,78643,0 ) ) -(109,55:25181759,35951249:501378,78643,0 -(109,55:25345613,35951249:173670,78643,0 +(105,55:25181759,35951249:501378,78643,0 +(105,55:25345613,35951249:173670,78643,0 ) ) -(109,55:25683137,35951249:501378,78643,0 -(109,55:25846991,35951249:173670,78643,0 +(105,55:25683137,35951249:501378,78643,0 +(105,55:25846991,35951249:173670,78643,0 ) ) -(109,55:26184515,35951249:501378,78643,0 -(109,55:26348369,35951249:173670,78643,0 +(105,55:26184515,35951249:501378,78643,0 +(105,55:26348369,35951249:173670,78643,0 ) ) -(109,55:26685893,35951249:501378,78643,0 -(109,55:26849747,35951249:173670,78643,0 +(105,55:26685893,35951249:501378,78643,0 +(105,55:26849747,35951249:173670,78643,0 ) ) -(109,55:27187271,35951249:501378,78643,0 -(109,55:27351125,35951249:173670,78643,0 +(105,55:27187271,35951249:501378,78643,0 +(105,55:27351125,35951249:173670,78643,0 ) ) -(109,55:27688649,35951249:501378,78643,0 -(109,55:27852503,35951249:173670,78643,0 +(105,55:27688649,35951249:501378,78643,0 +(105,55:27852503,35951249:173670,78643,0 ) ) -(109,55:28190027,35951249:501378,78643,0 -(109,55:28353881,35951249:173670,78643,0 +(105,55:28190027,35951249:501378,78643,0 +(105,55:28353881,35951249:173670,78643,0 ) ) -(109,55:28691405,35951249:501378,78643,0 -(109,55:28855259,35951249:173670,78643,0 +(105,55:28691405,35951249:501378,78643,0 +(105,55:28855259,35951249:173670,78643,0 ) ) -(109,55:29192783,35951249:501378,78643,0 -(109,55:29356637,35951249:173670,78643,0 +(105,55:29192783,35951249:501378,78643,0 +(105,55:29356637,35951249:173670,78643,0 ) ) -(109,55:29694161,35951249:501378,78643,0 -(109,55:29858015,35951249:173670,78643,0 +(105,55:29694161,35951249:501378,78643,0 +(105,55:29858015,35951249:173670,78643,0 ) ) -(109,55:30195539,35951249:501378,78643,0 -(109,55:30359393,35951249:173670,78643,0 +(105,55:30195539,35951249:501378,78643,0 +(105,55:30359393,35951249:173670,78643,0 ) ) -(109,55:30696917,35951249:501378,78643,0 -(109,55:30860771,35951249:173670,78643,0 +(105,55:30696917,35951249:501378,78643,0 +(105,55:30860771,35951249:173670,78643,0 ) ) -(109,55:31403379,35951249:1179650,485622,11795 -k109,55:31586882,35951249:183503 -g109,55:31786111,35951249 +(105,55:31239539,35951249:1343490,485622,11795 +k105,55:31586882,35951249:347343 +g105,55:31786111,35951249 ) -g109,55:30911859,35951249 -g109,55:32583029,35951249 +g105,55:30911859,35951249 +g105,55:32583029,35951249 ) -(109,57:6630773,36792737:25952256,505283,11795 -g109,57:9121143,36792737 -h109,57:9121143,36792737:983040,0,0 -h109,57:10104183,36792737:0,0,0 -g109,57:7613813,36792737 -(109,57:7613813,36792737:1507330,485622,0 -k109,57:9121143,36792737:536742 +(105,57:6630773,36792737:25952256,505283,11795 +g105,57:9121143,36792737 +h105,57:9121143,36792737:983040,0,0 +h105,57:10104183,36792737:0,0,0 +g105,57:7613813,36792737 +(105,57:7613813,36792737:1507330,485622,0 +k105,57:9121143,36792737:536742 ) -g109,57:12416948,36792737 -g109,57:14626822,36792737 -g109,57:14626822,36792737 -(109,57:14652821,36792737:501378,78643,0 -$109,57:14652821,36792737 -(109,57:14816675,36792737:173670,78643,0 +g105,57:12416948,36792737 +g105,57:14626822,36792737 +g105,57:14626822,36792737 +(105,57:14652821,36792737:501378,78643,0 +$105,57:14652821,36792737 +(105,57:14816675,36792737:173670,78643,0 ) -$109,57:15154199,36792737 +$105,57:15154199,36792737 ) -(109,57:15154199,36792737:501378,78643,0 -(109,57:15318053,36792737:173670,78643,0 +(105,57:15154199,36792737:501378,78643,0 +(105,57:15318053,36792737:173670,78643,0 ) ) -(109,57:15655577,36792737:501378,78643,0 -(109,57:15819431,36792737:173670,78643,0 +(105,57:15655577,36792737:501378,78643,0 +(105,57:15819431,36792737:173670,78643,0 ) ) -(109,57:16156955,36792737:501378,78643,0 -(109,57:16320809,36792737:173670,78643,0 +(105,57:16156955,36792737:501378,78643,0 +(105,57:16320809,36792737:173670,78643,0 ) ) -(109,57:16658333,36792737:501378,78643,0 -(109,57:16822187,36792737:173670,78643,0 +(105,57:16658333,36792737:501378,78643,0 +(105,57:16822187,36792737:173670,78643,0 ) ) -(109,57:17159711,36792737:501378,78643,0 -(109,57:17323565,36792737:173670,78643,0 +(105,57:17159711,36792737:501378,78643,0 +(105,57:17323565,36792737:173670,78643,0 ) ) -(109,57:17661089,36792737:501378,78643,0 -(109,57:17824943,36792737:173670,78643,0 +(105,57:17661089,36792737:501378,78643,0 +(105,57:17824943,36792737:173670,78643,0 ) ) -(109,57:18162467,36792737:501378,78643,0 -(109,57:18326321,36792737:173670,78643,0 +(105,57:18162467,36792737:501378,78643,0 +(105,57:18326321,36792737:173670,78643,0 ) ) -(109,57:18663845,36792737:501378,78643,0 -(109,57:18827699,36792737:173670,78643,0 +(105,57:18663845,36792737:501378,78643,0 +(105,57:18827699,36792737:173670,78643,0 ) ) -(109,57:19165223,36792737:501378,78643,0 -(109,57:19329077,36792737:173670,78643,0 +(105,57:19165223,36792737:501378,78643,0 +(105,57:19329077,36792737:173670,78643,0 ) ) -(109,57:19666601,36792737:501378,78643,0 -(109,57:19830455,36792737:173670,78643,0 +(105,57:19666601,36792737:501378,78643,0 +(105,57:19830455,36792737:173670,78643,0 ) ) -(109,57:20167979,36792737:501378,78643,0 -(109,57:20331833,36792737:173670,78643,0 +(105,57:20167979,36792737:501378,78643,0 +(105,57:20331833,36792737:173670,78643,0 ) ) -(109,57:20669357,36792737:501378,78643,0 -(109,57:20833211,36792737:173670,78643,0 +(105,57:20669357,36792737:501378,78643,0 +(105,57:20833211,36792737:173670,78643,0 ) ) -(109,57:21170735,36792737:501378,78643,0 -(109,57:21334589,36792737:173670,78643,0 +(105,57:21170735,36792737:501378,78643,0 +(105,57:21334589,36792737:173670,78643,0 ) ) -(109,57:21672113,36792737:501378,78643,0 -(109,57:21835967,36792737:173670,78643,0 +(105,57:21672113,36792737:501378,78643,0 +(105,57:21835967,36792737:173670,78643,0 ) ) -(109,57:22173491,36792737:501378,78643,0 -(109,57:22337345,36792737:173670,78643,0 +(105,57:22173491,36792737:501378,78643,0 +(105,57:22337345,36792737:173670,78643,0 ) ) -(109,57:22674869,36792737:501378,78643,0 -(109,57:22838723,36792737:173670,78643,0 +(105,57:22674869,36792737:501378,78643,0 +(105,57:22838723,36792737:173670,78643,0 ) ) -(109,57:23176247,36792737:501378,78643,0 -(109,57:23340101,36792737:173670,78643,0 +(105,57:23176247,36792737:501378,78643,0 +(105,57:23340101,36792737:173670,78643,0 ) ) -(109,57:23677625,36792737:501378,78643,0 -(109,57:23841479,36792737:173670,78643,0 +(105,57:23677625,36792737:501378,78643,0 +(105,57:23841479,36792737:173670,78643,0 ) ) -(109,57:24179003,36792737:501378,78643,0 -(109,57:24342857,36792737:173670,78643,0 +(105,57:24179003,36792737:501378,78643,0 +(105,57:24342857,36792737:173670,78643,0 ) ) -(109,57:24680381,36792737:501378,78643,0 -(109,57:24844235,36792737:173670,78643,0 +(105,57:24680381,36792737:501378,78643,0 +(105,57:24844235,36792737:173670,78643,0 ) ) -(109,57:25181759,36792737:501378,78643,0 -(109,57:25345613,36792737:173670,78643,0 +(105,57:25181759,36792737:501378,78643,0 +(105,57:25345613,36792737:173670,78643,0 ) ) -(109,57:25683137,36792737:501378,78643,0 -(109,57:25846991,36792737:173670,78643,0 +(105,57:25683137,36792737:501378,78643,0 +(105,57:25846991,36792737:173670,78643,0 ) ) -(109,57:26184515,36792737:501378,78643,0 -(109,57:26348369,36792737:173670,78643,0 +(105,57:26184515,36792737:501378,78643,0 +(105,57:26348369,36792737:173670,78643,0 ) ) -(109,57:26685893,36792737:501378,78643,0 -(109,57:26849747,36792737:173670,78643,0 +(105,57:26685893,36792737:501378,78643,0 +(105,57:26849747,36792737:173670,78643,0 ) ) -(109,57:27187271,36792737:501378,78643,0 -(109,57:27351125,36792737:173670,78643,0 +(105,57:27187271,36792737:501378,78643,0 +(105,57:27351125,36792737:173670,78643,0 ) ) -(109,57:27688649,36792737:501378,78643,0 -(109,57:27852503,36792737:173670,78643,0 +(105,57:27688649,36792737:501378,78643,0 +(105,57:27852503,36792737:173670,78643,0 ) ) -(109,57:28190027,36792737:501378,78643,0 -(109,57:28353881,36792737:173670,78643,0 +(105,57:28190027,36792737:501378,78643,0 +(105,57:28353881,36792737:173670,78643,0 ) ) -(109,57:28691405,36792737:501378,78643,0 -(109,57:28855259,36792737:173670,78643,0 +(105,57:28691405,36792737:501378,78643,0 +(105,57:28855259,36792737:173670,78643,0 ) ) -(109,57:29192783,36792737:501378,78643,0 -(109,57:29356637,36792737:173670,78643,0 +(105,57:29192783,36792737:501378,78643,0 +(105,57:29356637,36792737:173670,78643,0 ) ) -(109,57:29694161,36792737:501378,78643,0 -(109,57:29858015,36792737:173670,78643,0 +(105,57:29694161,36792737:501378,78643,0 +(105,57:29858015,36792737:173670,78643,0 ) ) -(109,57:30195539,36792737:501378,78643,0 -(109,57:30359393,36792737:173670,78643,0 +(105,57:30195539,36792737:501378,78643,0 +(105,57:30359393,36792737:173670,78643,0 ) ) -(109,57:30696917,36792737:501378,78643,0 -(109,57:30860771,36792737:173670,78643,0 +(105,57:30696917,36792737:501378,78643,0 +(105,57:30860771,36792737:173670,78643,0 ) ) -(109,57:31403379,36792737:1179650,485622,11795 -k109,57:31586882,36792737:183503 -g109,57:31786111,36792737 +(105,57:31239539,36792737:1343490,485622,11795 +k105,57:31586882,36792737:347343 +g105,57:31786111,36792737 ) -g109,57:30911859,36792737 -g109,57:32583029,36792737 +g105,57:30911859,36792737 +g105,57:32583029,36792737 ) -(109,59:6630773,37634225:25952256,513147,134348 -g109,59:9121143,37634225 -h109,59:9121143,37634225:983040,0,0 -h109,59:10104183,37634225:0,0,0 -g109,59:7613813,37634225 -(109,59:7613813,37634225:1507330,485622,11795 -k109,59:9121143,37634225:536742 +(105,59:6630773,37634225:25952256,513147,134348 +g105,59:9121143,37634225 +h105,59:9121143,37634225:983040,0,0 +h105,59:10104183,37634225:0,0,0 +g105,59:7613813,37634225 +(105,59:7613813,37634225:1507330,485622,11795 +k105,59:9121143,37634225:536742 ) -g109,59:10517059,37634225 -g109,59:12846208,37634225 -g109,59:14236882,37634225 -g109,59:16338621,37634225 -g109,59:17197142,37634225 -g109,59:19686199,37634225 -g109,59:19686199,37634225 -(109,59:20167979,37634225:501378,78643,0 -$109,59:20167979,37634225 -(109,59:20331833,37634225:173670,78643,0 +g105,59:10517059,37634225 +g105,59:12846208,37634225 +g105,59:14236882,37634225 +g105,59:16338621,37634225 +g105,59:17197142,37634225 +g105,59:19686199,37634225 +g105,59:19686199,37634225 +(105,59:20167979,37634225:501378,78643,0 +$105,59:20167979,37634225 +(105,59:20331833,37634225:173670,78643,0 ) -$109,59:20669357,37634225 +$105,59:20669357,37634225 ) -(109,59:20669357,37634225:501378,78643,0 -(109,59:20833211,37634225:173670,78643,0 +(105,59:20669357,37634225:501378,78643,0 +(105,59:20833211,37634225:173670,78643,0 ) ) -(109,59:21170735,37634225:501378,78643,0 -(109,59:21334589,37634225:173670,78643,0 +(105,59:21170735,37634225:501378,78643,0 +(105,59:21334589,37634225:173670,78643,0 ) ) -(109,59:21672113,37634225:501378,78643,0 -(109,59:21835967,37634225:173670,78643,0 +(105,59:21672113,37634225:501378,78643,0 +(105,59:21835967,37634225:173670,78643,0 ) ) -(109,59:22173491,37634225:501378,78643,0 -(109,59:22337345,37634225:173670,78643,0 +(105,59:22173491,37634225:501378,78643,0 +(105,59:22337345,37634225:173670,78643,0 ) ) -(109,59:22674869,37634225:501378,78643,0 -(109,59:22838723,37634225:173670,78643,0 +(105,59:22674869,37634225:501378,78643,0 +(105,59:22838723,37634225:173670,78643,0 ) ) -(109,59:23176247,37634225:501378,78643,0 -(109,59:23340101,37634225:173670,78643,0 +(105,59:23176247,37634225:501378,78643,0 +(105,59:23340101,37634225:173670,78643,0 ) ) -(109,59:23677625,37634225:501378,78643,0 -(109,59:23841479,37634225:173670,78643,0 +(105,59:23677625,37634225:501378,78643,0 +(105,59:23841479,37634225:173670,78643,0 ) ) -(109,59:24179003,37634225:501378,78643,0 -(109,59:24342857,37634225:173670,78643,0 +(105,59:24179003,37634225:501378,78643,0 +(105,59:24342857,37634225:173670,78643,0 ) ) -(109,59:24680381,37634225:501378,78643,0 -(109,59:24844235,37634225:173670,78643,0 +(105,59:24680381,37634225:501378,78643,0 +(105,59:24844235,37634225:173670,78643,0 ) ) -(109,59:25181759,37634225:501378,78643,0 -(109,59:25345613,37634225:173670,78643,0 +(105,59:25181759,37634225:501378,78643,0 +(105,59:25345613,37634225:173670,78643,0 ) ) -(109,59:25683137,37634225:501378,78643,0 -(109,59:25846991,37634225:173670,78643,0 +(105,59:25683137,37634225:501378,78643,0 +(105,59:25846991,37634225:173670,78643,0 ) ) -(109,59:26184515,37634225:501378,78643,0 -(109,59:26348369,37634225:173670,78643,0 +(105,59:26184515,37634225:501378,78643,0 +(105,59:26348369,37634225:173670,78643,0 ) ) -(109,59:26685893,37634225:501378,78643,0 -(109,59:26849747,37634225:173670,78643,0 +(105,59:26685893,37634225:501378,78643,0 +(105,59:26849747,37634225:173670,78643,0 ) ) -(109,59:27187271,37634225:501378,78643,0 -(109,59:27351125,37634225:173670,78643,0 +(105,59:27187271,37634225:501378,78643,0 +(105,59:27351125,37634225:173670,78643,0 ) ) -(109,59:27688649,37634225:501378,78643,0 -(109,59:27852503,37634225:173670,78643,0 +(105,59:27688649,37634225:501378,78643,0 +(105,59:27852503,37634225:173670,78643,0 ) ) -(109,59:28190027,37634225:501378,78643,0 -(109,59:28353881,37634225:173670,78643,0 +(105,59:28190027,37634225:501378,78643,0 +(105,59:28353881,37634225:173670,78643,0 ) ) -(109,59:28691405,37634225:501378,78643,0 -(109,59:28855259,37634225:173670,78643,0 +(105,59:28691405,37634225:501378,78643,0 +(105,59:28855259,37634225:173670,78643,0 ) ) -(109,59:29192783,37634225:501378,78643,0 -(109,59:29356637,37634225:173670,78643,0 +(105,59:29192783,37634225:501378,78643,0 +(105,59:29356637,37634225:173670,78643,0 ) ) -(109,59:29694161,37634225:501378,78643,0 -(109,59:29858015,37634225:173670,78643,0 +(105,59:29694161,37634225:501378,78643,0 +(105,59:29858015,37634225:173670,78643,0 ) ) -(109,59:30195539,37634225:501378,78643,0 -(109,59:30359393,37634225:173670,78643,0 +(105,59:30195539,37634225:501378,78643,0 +(105,59:30359393,37634225:173670,78643,0 ) ) -(109,59:30696917,37634225:501378,78643,0 -(109,59:30860771,37634225:173670,78643,0 +(105,59:30696917,37634225:501378,78643,0 +(105,59:30860771,37634225:173670,78643,0 ) ) -(109,59:31403379,37634225:1179650,481690,0 -k109,59:31586882,37634225:183503 -g109,59:31786111,37634225 +(105,59:31239539,37634225:1343490,481690,0 +k105,59:31586882,37634225:347343 +g105,59:31786111,37634225 ) -g109,59:30911859,37634225 -g109,59:32583029,37634225 +g105,59:30911859,37634225 +g105,59:32583029,37634225 ) -(109,61:6630773,38475713:25952256,505283,126483 -g109,61:9121143,38475713 -h109,61:9121143,38475713:983040,0,0 -h109,61:10104183,38475713:0,0,0 -g109,61:7613813,38475713 -(109,61:7613813,38475713:1507330,485622,11795 -k109,61:9121143,38475713:536742 +(105,61:6630773,38475713:25952256,505283,126483 +g105,61:9121143,38475713 +h105,61:9121143,38475713:983040,0,0 +h105,61:10104183,38475713:0,0,0 +g105,61:7613813,38475713 +(105,61:7613813,38475713:1507330,485622,11795 +k105,61:9121143,38475713:536742 ) -g109,61:11231402,38475713 -g109,61:15237617,38475713 -g109,61:15237617,38475713 -(109,61:15655577,38475713:501378,78643,0 -$109,61:15655577,38475713 -(109,61:15819431,38475713:173670,78643,0 +g105,61:11231402,38475713 +g105,61:15237617,38475713 +g105,61:15237617,38475713 +(105,61:15655577,38475713:501378,78643,0 +$105,61:15655577,38475713 +(105,61:15819431,38475713:173670,78643,0 ) -$109,61:16156955,38475713 +$105,61:16156955,38475713 ) -(109,61:16156955,38475713:501378,78643,0 -(109,61:16320809,38475713:173670,78643,0 +(105,61:16156955,38475713:501378,78643,0 +(105,61:16320809,38475713:173670,78643,0 ) ) -(109,61:16658333,38475713:501378,78643,0 -(109,61:16822187,38475713:173670,78643,0 +(105,61:16658333,38475713:501378,78643,0 +(105,61:16822187,38475713:173670,78643,0 ) ) -(109,61:17159711,38475713:501378,78643,0 -(109,61:17323565,38475713:173670,78643,0 +(105,61:17159711,38475713:501378,78643,0 +(105,61:17323565,38475713:173670,78643,0 ) ) -(109,61:17661089,38475713:501378,78643,0 -(109,61:17824943,38475713:173670,78643,0 +(105,61:17661089,38475713:501378,78643,0 +(105,61:17824943,38475713:173670,78643,0 ) ) -(109,61:18162467,38475713:501378,78643,0 -(109,61:18326321,38475713:173670,78643,0 +(105,61:18162467,38475713:501378,78643,0 +(105,61:18326321,38475713:173670,78643,0 ) ) -(109,61:18663845,38475713:501378,78643,0 -(109,61:18827699,38475713:173670,78643,0 +(105,61:18663845,38475713:501378,78643,0 +(105,61:18827699,38475713:173670,78643,0 ) ) -(109,61:19165223,38475713:501378,78643,0 -(109,61:19329077,38475713:173670,78643,0 +(105,61:19165223,38475713:501378,78643,0 +(105,61:19329077,38475713:173670,78643,0 ) ) -(109,61:19666601,38475713:501378,78643,0 -(109,61:19830455,38475713:173670,78643,0 +(105,61:19666601,38475713:501378,78643,0 +(105,61:19830455,38475713:173670,78643,0 ) ) -(109,61:20167979,38475713:501378,78643,0 -(109,61:20331833,38475713:173670,78643,0 +(105,61:20167979,38475713:501378,78643,0 +(105,61:20331833,38475713:173670,78643,0 ) ) -(109,61:20669357,38475713:501378,78643,0 -(109,61:20833211,38475713:173670,78643,0 +(105,61:20669357,38475713:501378,78643,0 +(105,61:20833211,38475713:173670,78643,0 ) ) -(109,61:21170735,38475713:501378,78643,0 -(109,61:21334589,38475713:173670,78643,0 +(105,61:21170735,38475713:501378,78643,0 +(105,61:21334589,38475713:173670,78643,0 ) ) -(109,61:21672113,38475713:501378,78643,0 -(109,61:21835967,38475713:173670,78643,0 +(105,61:21672113,38475713:501378,78643,0 +(105,61:21835967,38475713:173670,78643,0 ) ) -(109,61:22173491,38475713:501378,78643,0 -(109,61:22337345,38475713:173670,78643,0 +(105,61:22173491,38475713:501378,78643,0 +(105,61:22337345,38475713:173670,78643,0 ) ) -(109,61:22674869,38475713:501378,78643,0 -(109,61:22838723,38475713:173670,78643,0 +(105,61:22674869,38475713:501378,78643,0 +(105,61:22838723,38475713:173670,78643,0 ) ) -(109,61:23176247,38475713:501378,78643,0 -(109,61:23340101,38475713:173670,78643,0 +(105,61:23176247,38475713:501378,78643,0 +(105,61:23340101,38475713:173670,78643,0 ) ) -(109,61:23677625,38475713:501378,78643,0 -(109,61:23841479,38475713:173670,78643,0 +(105,61:23677625,38475713:501378,78643,0 +(105,61:23841479,38475713:173670,78643,0 ) ) -(109,61:24179003,38475713:501378,78643,0 -(109,61:24342857,38475713:173670,78643,0 +(105,61:24179003,38475713:501378,78643,0 +(105,61:24342857,38475713:173670,78643,0 ) ) -(109,61:24680381,38475713:501378,78643,0 -(109,61:24844235,38475713:173670,78643,0 +(105,61:24680381,38475713:501378,78643,0 +(105,61:24844235,38475713:173670,78643,0 ) ) -(109,61:25181759,38475713:501378,78643,0 -(109,61:25345613,38475713:173670,78643,0 +(105,61:25181759,38475713:501378,78643,0 +(105,61:25345613,38475713:173670,78643,0 ) ) -(109,61:25683137,38475713:501378,78643,0 -(109,61:25846991,38475713:173670,78643,0 +(105,61:25683137,38475713:501378,78643,0 +(105,61:25846991,38475713:173670,78643,0 ) ) -(109,61:26184515,38475713:501378,78643,0 -(109,61:26348369,38475713:173670,78643,0 +(105,61:26184515,38475713:501378,78643,0 +(105,61:26348369,38475713:173670,78643,0 ) ) -(109,61:26685893,38475713:501378,78643,0 -(109,61:26849747,38475713:173670,78643,0 +(105,61:26685893,38475713:501378,78643,0 +(105,61:26849747,38475713:173670,78643,0 ) ) -(109,61:27187271,38475713:501378,78643,0 -(109,61:27351125,38475713:173670,78643,0 +(105,61:27187271,38475713:501378,78643,0 +(105,61:27351125,38475713:173670,78643,0 ) ) -(109,61:27688649,38475713:501378,78643,0 -(109,61:27852503,38475713:173670,78643,0 +(105,61:27688649,38475713:501378,78643,0 +(105,61:27852503,38475713:173670,78643,0 ) ) -(109,61:28190027,38475713:501378,78643,0 -(109,61:28353881,38475713:173670,78643,0 +(105,61:28190027,38475713:501378,78643,0 +(105,61:28353881,38475713:173670,78643,0 ) ) -(109,61:28691405,38475713:501378,78643,0 -(109,61:28855259,38475713:173670,78643,0 +(105,61:28691405,38475713:501378,78643,0 +(105,61:28855259,38475713:173670,78643,0 ) ) -(109,61:29192783,38475713:501378,78643,0 -(109,61:29356637,38475713:173670,78643,0 +(105,61:29192783,38475713:501378,78643,0 +(105,61:29356637,38475713:173670,78643,0 ) ) -(109,61:29694161,38475713:501378,78643,0 -(109,61:29858015,38475713:173670,78643,0 +(105,61:29694161,38475713:501378,78643,0 +(105,61:29858015,38475713:173670,78643,0 ) ) -(109,61:30195539,38475713:501378,78643,0 -(109,61:30359393,38475713:173670,78643,0 +(105,61:30195539,38475713:501378,78643,0 +(105,61:30359393,38475713:173670,78643,0 ) ) -(109,61:30696917,38475713:501378,78643,0 -(109,61:30860771,38475713:173670,78643,0 +(105,61:30696917,38475713:501378,78643,0 +(105,61:30860771,38475713:173670,78643,0 ) ) -(109,61:31403379,38475713:1179650,485622,0 -k109,61:31586882,38475713:183503 -g109,61:31786111,38475713 +(105,61:31239539,38475713:1343490,485622,0 +k105,61:31586882,38475713:347343 +g105,61:31786111,38475713 ) -g109,61:30911859,38475713 -g109,61:32583029,38475713 +g105,61:30911859,38475713 +g105,61:32583029,38475713 ) -(109,63:6630773,39317201:25952256,505283,126483 -g109,63:9121143,39317201 -h109,63:9121143,39317201:983040,0,0 -h109,63:10104183,39317201:0,0,0 -g109,63:7613813,39317201 -(109,63:7613813,39317201:1507330,485622,11795 -k109,63:9121143,39317201:138283 +(105,63:6630773,39317201:25952256,505283,126483 +g105,63:9121143,39317201 +h105,63:9121143,39317201:983040,0,0 +h105,63:10104183,39317201:0,0,0 +g105,63:7613813,39317201 +(105,63:7613813,39317201:1507330,485622,11795 +k105,63:9121143,39317201:138283 ) -g109,63:11399174,39317201 -g109,63:15854311,39317201 -g109,63:15854311,39317201 -(109,63:16156955,39317201:501378,78643,0 -$109,63:16156955,39317201 -(109,63:16320809,39317201:173670,78643,0 +g105,63:11399174,39317201 +g105,63:15854311,39317201 +g105,63:15854311,39317201 +(105,63:16156955,39317201:501378,78643,0 +$105,63:16156955,39317201 +(105,63:16320809,39317201:173670,78643,0 ) -$109,63:16658333,39317201 +$105,63:16658333,39317201 ) -(109,63:16658333,39317201:501378,78643,0 -(109,63:16822187,39317201:173670,78643,0 +(105,63:16658333,39317201:501378,78643,0 +(105,63:16822187,39317201:173670,78643,0 ) ) -(109,63:17159711,39317201:501378,78643,0 -(109,63:17323565,39317201:173670,78643,0 +(105,63:17159711,39317201:501378,78643,0 +(105,63:17323565,39317201:173670,78643,0 ) ) -(109,63:17661089,39317201:501378,78643,0 -(109,63:17824943,39317201:173670,78643,0 +(105,63:17661089,39317201:501378,78643,0 +(105,63:17824943,39317201:173670,78643,0 ) ) -(109,63:18162467,39317201:501378,78643,0 -(109,63:18326321,39317201:173670,78643,0 +(105,63:18162467,39317201:501378,78643,0 +(105,63:18326321,39317201:173670,78643,0 ) ) -(109,63:18663845,39317201:501378,78643,0 -(109,63:18827699,39317201:173670,78643,0 +(105,63:18663845,39317201:501378,78643,0 +(105,63:18827699,39317201:173670,78643,0 ) ) -(109,63:19165223,39317201:501378,78643,0 -(109,63:19329077,39317201:173670,78643,0 +(105,63:19165223,39317201:501378,78643,0 +(105,63:19329077,39317201:173670,78643,0 ) ) -(109,63:19666601,39317201:501378,78643,0 -(109,63:19830455,39317201:173670,78643,0 +(105,63:19666601,39317201:501378,78643,0 +(105,63:19830455,39317201:173670,78643,0 ) ) -(109,63:20167979,39317201:501378,78643,0 -(109,63:20331833,39317201:173670,78643,0 +(105,63:20167979,39317201:501378,78643,0 +(105,63:20331833,39317201:173670,78643,0 ) ) -(109,63:20669357,39317201:501378,78643,0 -(109,63:20833211,39317201:173670,78643,0 +(105,63:20669357,39317201:501378,78643,0 +(105,63:20833211,39317201:173670,78643,0 ) ) -(109,63:21170735,39317201:501378,78643,0 -(109,63:21334589,39317201:173670,78643,0 +(105,63:21170735,39317201:501378,78643,0 +(105,63:21334589,39317201:173670,78643,0 ) ) -(109,63:21672113,39317201:501378,78643,0 -(109,63:21835967,39317201:173670,78643,0 +(105,63:21672113,39317201:501378,78643,0 +(105,63:21835967,39317201:173670,78643,0 ) ) -(109,63:22173491,39317201:501378,78643,0 -(109,63:22337345,39317201:173670,78643,0 +(105,63:22173491,39317201:501378,78643,0 +(105,63:22337345,39317201:173670,78643,0 ) ) -(109,63:22674869,39317201:501378,78643,0 -(109,63:22838723,39317201:173670,78643,0 +(105,63:22674869,39317201:501378,78643,0 +(105,63:22838723,39317201:173670,78643,0 ) ) -(109,63:23176247,39317201:501378,78643,0 -(109,63:23340101,39317201:173670,78643,0 +(105,63:23176247,39317201:501378,78643,0 +(105,63:23340101,39317201:173670,78643,0 ) ) -(109,63:23677625,39317201:501378,78643,0 -(109,63:23841479,39317201:173670,78643,0 +(105,63:23677625,39317201:501378,78643,0 +(105,63:23841479,39317201:173670,78643,0 ) ) -(109,63:24179003,39317201:501378,78643,0 -(109,63:24342857,39317201:173670,78643,0 +(105,63:24179003,39317201:501378,78643,0 +(105,63:24342857,39317201:173670,78643,0 ) ) -(109,63:24680381,39317201:501378,78643,0 -(109,63:24844235,39317201:173670,78643,0 +(105,63:24680381,39317201:501378,78643,0 +(105,63:24844235,39317201:173670,78643,0 ) ) -(109,63:25181759,39317201:501378,78643,0 -(109,63:25345613,39317201:173670,78643,0 +(105,63:25181759,39317201:501378,78643,0 +(105,63:25345613,39317201:173670,78643,0 ) ) -(109,63:25683137,39317201:501378,78643,0 -(109,63:25846991,39317201:173670,78643,0 +(105,63:25683137,39317201:501378,78643,0 +(105,63:25846991,39317201:173670,78643,0 ) ) -(109,63:26184515,39317201:501378,78643,0 -(109,63:26348369,39317201:173670,78643,0 +(105,63:26184515,39317201:501378,78643,0 +(105,63:26348369,39317201:173670,78643,0 ) ) -(109,63:26685893,39317201:501378,78643,0 -(109,63:26849747,39317201:173670,78643,0 +(105,63:26685893,39317201:501378,78643,0 +(105,63:26849747,39317201:173670,78643,0 ) ) -(109,63:27187271,39317201:501378,78643,0 -(109,63:27351125,39317201:173670,78643,0 +(105,63:27187271,39317201:501378,78643,0 +(105,63:27351125,39317201:173670,78643,0 ) ) -(109,63:27688649,39317201:501378,78643,0 -(109,63:27852503,39317201:173670,78643,0 +(105,63:27688649,39317201:501378,78643,0 +(105,63:27852503,39317201:173670,78643,0 ) ) -(109,63:28190027,39317201:501378,78643,0 -(109,63:28353881,39317201:173670,78643,0 +(105,63:28190027,39317201:501378,78643,0 +(105,63:28353881,39317201:173670,78643,0 ) ) -(109,63:28691405,39317201:501378,78643,0 -(109,63:28855259,39317201:173670,78643,0 +(105,63:28691405,39317201:501378,78643,0 +(105,63:28855259,39317201:173670,78643,0 ) ) -(109,63:29192783,39317201:501378,78643,0 -(109,63:29356637,39317201:173670,78643,0 +(105,63:29192783,39317201:501378,78643,0 +(105,63:29356637,39317201:173670,78643,0 ) ) -(109,63:29694161,39317201:501378,78643,0 -(109,63:29858015,39317201:173670,78643,0 +(105,63:29694161,39317201:501378,78643,0 +(105,63:29858015,39317201:173670,78643,0 ) ) -(109,63:30195539,39317201:501378,78643,0 -(109,63:30359393,39317201:173670,78643,0 +(105,63:30195539,39317201:501378,78643,0 +(105,63:30359393,39317201:173670,78643,0 ) ) -(109,63:30696917,39317201:501378,78643,0 -(109,63:30860771,39317201:173670,78643,0 +(105,63:30696917,39317201:501378,78643,0 +(105,63:30860771,39317201:173670,78643,0 ) ) -(109,63:31403379,39317201:1179650,481690,11795 -k109,63:31586882,39317201:183503 -g109,63:31786111,39317201 +(105,63:31239539,39317201:1343490,481690,11795 +k105,63:31586882,39317201:347343 +g105,63:31786111,39317201 ) -g109,63:30911859,39317201 -g109,63:32583029,39317201 +g105,63:30911859,39317201 +g105,63:32583029,39317201 ) -(109,65:6630773,40158689:25952256,505283,126483 -g109,65:9121143,40158689 -h109,65:9121143,40158689:983040,0,0 -h109,65:10104183,40158689:0,0,0 -g109,65:7613813,40158689 -(109,65:7613813,40158689:1507330,485622,0 -k109,65:9121143,40158689:138283 +(105,65:6630773,40158689:25952256,505283,126483 +g105,65:9121143,40158689 +h105,65:9121143,40158689:983040,0,0 +h105,65:10104183,40158689:0,0,0 +g105,65:7613813,40158689 +(105,65:7613813,40158689:1507330,485622,0 +k105,65:9121143,40158689:138283 ) -g109,65:11997518,40158689 -g109,65:13388192,40158689 -g109,65:19191405,40158689 -g109,65:21370477,40158689 -g109,65:21370477,40158689 -(109,65:21672113,40158689:501378,78643,0 -$109,65:21672113,40158689 -(109,65:21835967,40158689:173670,78643,0 +g105,65:11997518,40158689 +g105,65:13388192,40158689 +g105,65:19191405,40158689 +g105,65:21370477,40158689 +g105,65:21370477,40158689 +(105,65:21672113,40158689:501378,78643,0 +$105,65:21672113,40158689 +(105,65:21835967,40158689:173670,78643,0 ) -$109,65:22173491,40158689 +$105,65:22173491,40158689 ) -(109,65:22173491,40158689:501378,78643,0 -(109,65:22337345,40158689:173670,78643,0 +(105,65:22173491,40158689:501378,78643,0 +(105,65:22337345,40158689:173670,78643,0 ) ) -(109,65:22674869,40158689:501378,78643,0 -(109,65:22838723,40158689:173670,78643,0 +(105,65:22674869,40158689:501378,78643,0 +(105,65:22838723,40158689:173670,78643,0 ) ) -(109,65:23176247,40158689:501378,78643,0 -(109,65:23340101,40158689:173670,78643,0 +(105,65:23176247,40158689:501378,78643,0 +(105,65:23340101,40158689:173670,78643,0 ) ) -(109,65:23677625,40158689:501378,78643,0 -(109,65:23841479,40158689:173670,78643,0 +(105,65:23677625,40158689:501378,78643,0 +(105,65:23841479,40158689:173670,78643,0 ) ) -(109,65:24179003,40158689:501378,78643,0 -(109,65:24342857,40158689:173670,78643,0 +(105,65:24179003,40158689:501378,78643,0 +(105,65:24342857,40158689:173670,78643,0 ) ) -(109,65:24680381,40158689:501378,78643,0 -(109,65:24844235,40158689:173670,78643,0 +(105,65:24680381,40158689:501378,78643,0 +(105,65:24844235,40158689:173670,78643,0 ) ) -(109,65:25181759,40158689:501378,78643,0 -(109,65:25345613,40158689:173670,78643,0 +(105,65:25181759,40158689:501378,78643,0 +(105,65:25345613,40158689:173670,78643,0 ) ) -(109,65:25683137,40158689:501378,78643,0 -(109,65:25846991,40158689:173670,78643,0 +(105,65:25683137,40158689:501378,78643,0 +(105,65:25846991,40158689:173670,78643,0 ) ) -(109,65:26184515,40158689:501378,78643,0 -(109,65:26348369,40158689:173670,78643,0 +(105,65:26184515,40158689:501378,78643,0 +(105,65:26348369,40158689:173670,78643,0 ) ) -(109,65:26685893,40158689:501378,78643,0 -(109,65:26849747,40158689:173670,78643,0 +(105,65:26685893,40158689:501378,78643,0 +(105,65:26849747,40158689:173670,78643,0 ) ) -(109,65:27187271,40158689:501378,78643,0 -(109,65:27351125,40158689:173670,78643,0 +(105,65:27187271,40158689:501378,78643,0 +(105,65:27351125,40158689:173670,78643,0 ) ) -(109,65:27688649,40158689:501378,78643,0 -(109,65:27852503,40158689:173670,78643,0 +(105,65:27688649,40158689:501378,78643,0 +(105,65:27852503,40158689:173670,78643,0 ) ) -(109,65:28190027,40158689:501378,78643,0 -(109,65:28353881,40158689:173670,78643,0 +(105,65:28190027,40158689:501378,78643,0 +(105,65:28353881,40158689:173670,78643,0 ) ) -(109,65:28691405,40158689:501378,78643,0 -(109,65:28855259,40158689:173670,78643,0 +(105,65:28691405,40158689:501378,78643,0 +(105,65:28855259,40158689:173670,78643,0 ) ) -(109,65:29192783,40158689:501378,78643,0 -(109,65:29356637,40158689:173670,78643,0 +(105,65:29192783,40158689:501378,78643,0 +(105,65:29356637,40158689:173670,78643,0 ) ) -(109,65:29694161,40158689:501378,78643,0 -(109,65:29858015,40158689:173670,78643,0 +(105,65:29694161,40158689:501378,78643,0 +(105,65:29858015,40158689:173670,78643,0 ) ) -(109,65:30195539,40158689:501378,78643,0 -(109,65:30359393,40158689:173670,78643,0 +(105,65:30195539,40158689:501378,78643,0 +(105,65:30359393,40158689:173670,78643,0 ) ) -(109,65:30696917,40158689:501378,78643,0 -(109,65:30860771,40158689:173670,78643,0 +(105,65:30696917,40158689:501378,78643,0 +(105,65:30860771,40158689:173670,78643,0 ) ) -(109,65:31403379,40158689:1179650,477757,11795 -k109,65:31586882,40158689:183503 -g109,65:31786111,40158689 +(105,65:31239539,40158689:1343490,477757,11795 +k105,65:31586882,40158689:347343 +g105,65:31786111,40158689 ) -g109,65:30911859,40158689 -g109,65:32583029,40158689 +g105,65:30911859,40158689 +g105,65:32583029,40158689 ) -(109,67:6630773,41000177:25952256,485622,11795 -g109,67:9121143,41000177 -h109,67:9121143,41000177:983040,0,0 -h109,67:10104183,41000177:0,0,0 -g109,67:7613813,41000177 -(109,67:7613813,41000177:1507330,485622,0 -k109,67:9121143,41000177:138283 +(105,67:6630773,41000177:25952256,485622,11795 +g105,67:9121143,41000177 +h105,67:9121143,41000177:983040,0,0 +h105,67:10104183,41000177:0,0,0 +g105,67:7613813,41000177 +(105,67:7613813,41000177:1507330,485622,0 +k105,67:9121143,41000177:138283 ) -g109,67:11639036,41000177 -g109,67:11639036,41000177 -(109,67:11644553,41000177:501378,78643,0 -$109,67:11644553,41000177 -(109,67:11808407,41000177:173670,78643,0 +g105,67:11639036,41000177 +g105,67:11639036,41000177 +(105,67:11644553,41000177:501378,78643,0 +$105,67:11644553,41000177 +(105,67:11808407,41000177:173670,78643,0 ) -$109,67:12145931,41000177 +$105,67:12145931,41000177 ) -(109,67:12145931,41000177:501378,78643,0 -(109,67:12309785,41000177:173670,78643,0 +(105,67:12145931,41000177:501378,78643,0 +(105,67:12309785,41000177:173670,78643,0 ) ) -(109,67:12647309,41000177:501378,78643,0 -(109,67:12811163,41000177:173670,78643,0 +(105,67:12647309,41000177:501378,78643,0 +(105,67:12811163,41000177:173670,78643,0 ) ) -(109,67:13148687,41000177:501378,78643,0 -(109,67:13312541,41000177:173670,78643,0 +(105,67:13148687,41000177:501378,78643,0 +(105,67:13312541,41000177:173670,78643,0 ) ) -(109,67:13650065,41000177:501378,78643,0 -(109,67:13813919,41000177:173670,78643,0 +(105,67:13650065,41000177:501378,78643,0 +(105,67:13813919,41000177:173670,78643,0 ) ) -(109,67:14151443,41000177:501378,78643,0 -(109,67:14315297,41000177:173670,78643,0 +(105,67:14151443,41000177:501378,78643,0 +(105,67:14315297,41000177:173670,78643,0 ) ) -(109,67:14652821,41000177:501378,78643,0 -(109,67:14816675,41000177:173670,78643,0 +(105,67:14652821,41000177:501378,78643,0 +(105,67:14816675,41000177:173670,78643,0 ) ) -(109,67:15154199,41000177:501378,78643,0 -(109,67:15318053,41000177:173670,78643,0 +(105,67:15154199,41000177:501378,78643,0 +(105,67:15318053,41000177:173670,78643,0 ) ) -(109,67:15655577,41000177:501378,78643,0 -(109,67:15819431,41000177:173670,78643,0 +(105,67:15655577,41000177:501378,78643,0 +(105,67:15819431,41000177:173670,78643,0 ) ) -(109,67:16156955,41000177:501378,78643,0 -(109,67:16320809,41000177:173670,78643,0 +(105,67:16156955,41000177:501378,78643,0 +(105,67:16320809,41000177:173670,78643,0 ) ) -(109,67:16658333,41000177:501378,78643,0 -(109,67:16822187,41000177:173670,78643,0 +(105,67:16658333,41000177:501378,78643,0 +(105,67:16822187,41000177:173670,78643,0 ) ) -(109,67:17159711,41000177:501378,78643,0 -(109,67:17323565,41000177:173670,78643,0 +(105,67:17159711,41000177:501378,78643,0 +(105,67:17323565,41000177:173670,78643,0 ) ) -(109,67:17661089,41000177:501378,78643,0 -(109,67:17824943,41000177:173670,78643,0 +(105,67:17661089,41000177:501378,78643,0 +(105,67:17824943,41000177:173670,78643,0 ) ) -(109,67:18162467,41000177:501378,78643,0 -(109,67:18326321,41000177:173670,78643,0 +(105,67:18162467,41000177:501378,78643,0 +(105,67:18326321,41000177:173670,78643,0 ) ) -(109,67:18663845,41000177:501378,78643,0 -(109,67:18827699,41000177:173670,78643,0 +(105,67:18663845,41000177:501378,78643,0 +(105,67:18827699,41000177:173670,78643,0 ) ) -(109,67:19165223,41000177:501378,78643,0 -(109,67:19329077,41000177:173670,78643,0 +(105,67:19165223,41000177:501378,78643,0 +(105,67:19329077,41000177:173670,78643,0 ) ) -(109,67:19666601,41000177:501378,78643,0 -(109,67:19830455,41000177:173670,78643,0 +(105,67:19666601,41000177:501378,78643,0 +(105,67:19830455,41000177:173670,78643,0 ) ) -(109,67:20167979,41000177:501378,78643,0 -(109,67:20331833,41000177:173670,78643,0 +(105,67:20167979,41000177:501378,78643,0 +(105,67:20331833,41000177:173670,78643,0 ) ) -(109,67:20669357,41000177:501378,78643,0 -(109,67:20833211,41000177:173670,78643,0 +(105,67:20669357,41000177:501378,78643,0 +(105,67:20833211,41000177:173670,78643,0 ) ) -(109,67:21170735,41000177:501378,78643,0 -(109,67:21334589,41000177:173670,78643,0 +(105,67:21170735,41000177:501378,78643,0 +(105,67:21334589,41000177:173670,78643,0 ) ) -(109,67:21672113,41000177:501378,78643,0 -(109,67:21835967,41000177:173670,78643,0 +(105,67:21672113,41000177:501378,78643,0 +(105,67:21835967,41000177:173670,78643,0 ) ) -(109,67:22173491,41000177:501378,78643,0 -(109,67:22337345,41000177:173670,78643,0 +(105,67:22173491,41000177:501378,78643,0 +(105,67:22337345,41000177:173670,78643,0 ) ) -(109,67:22674869,41000177:501378,78643,0 -(109,67:22838723,41000177:173670,78643,0 +(105,67:22674869,41000177:501378,78643,0 +(105,67:22838723,41000177:173670,78643,0 ) ) -(109,67:23176247,41000177:501378,78643,0 -(109,67:23340101,41000177:173670,78643,0 +(105,67:23176247,41000177:501378,78643,0 +(105,67:23340101,41000177:173670,78643,0 ) ) -(109,67:23677625,41000177:501378,78643,0 -(109,67:23841479,41000177:173670,78643,0 +(105,67:23677625,41000177:501378,78643,0 +(105,67:23841479,41000177:173670,78643,0 ) ) -(109,67:24179003,41000177:501378,78643,0 -(109,67:24342857,41000177:173670,78643,0 +(105,67:24179003,41000177:501378,78643,0 +(105,67:24342857,41000177:173670,78643,0 ) ) -(109,67:24680381,41000177:501378,78643,0 -(109,67:24844235,41000177:173670,78643,0 +(105,67:24680381,41000177:501378,78643,0 +(105,67:24844235,41000177:173670,78643,0 ) ) -(109,67:25181759,41000177:501378,78643,0 -(109,67:25345613,41000177:173670,78643,0 +(105,67:25181759,41000177:501378,78643,0 +(105,67:25345613,41000177:173670,78643,0 ) ) -(109,67:25683137,41000177:501378,78643,0 -(109,67:25846991,41000177:173670,78643,0 +(105,67:25683137,41000177:501378,78643,0 +(105,67:25846991,41000177:173670,78643,0 ) ) -(109,67:26184515,41000177:501378,78643,0 -(109,67:26348369,41000177:173670,78643,0 +(105,67:26184515,41000177:501378,78643,0 +(105,67:26348369,41000177:173670,78643,0 ) ) -(109,67:26685893,41000177:501378,78643,0 -(109,67:26849747,41000177:173670,78643,0 +(105,67:26685893,41000177:501378,78643,0 +(105,67:26849747,41000177:173670,78643,0 ) ) -(109,67:27187271,41000177:501378,78643,0 -(109,67:27351125,41000177:173670,78643,0 +(105,67:27187271,41000177:501378,78643,0 +(105,67:27351125,41000177:173670,78643,0 ) ) -(109,67:27688649,41000177:501378,78643,0 -(109,67:27852503,41000177:173670,78643,0 +(105,67:27688649,41000177:501378,78643,0 +(105,67:27852503,41000177:173670,78643,0 ) ) -(109,67:28190027,41000177:501378,78643,0 -(109,67:28353881,41000177:173670,78643,0 +(105,67:28190027,41000177:501378,78643,0 +(105,67:28353881,41000177:173670,78643,0 ) ) -(109,67:28691405,41000177:501378,78643,0 -(109,67:28855259,41000177:173670,78643,0 +(105,67:28691405,41000177:501378,78643,0 +(105,67:28855259,41000177:173670,78643,0 ) ) -(109,67:29192783,41000177:501378,78643,0 -(109,67:29356637,41000177:173670,78643,0 +(105,67:29192783,41000177:501378,78643,0 +(105,67:29356637,41000177:173670,78643,0 ) ) -(109,67:29694161,41000177:501378,78643,0 -(109,67:29858015,41000177:173670,78643,0 +(105,67:29694161,41000177:501378,78643,0 +(105,67:29858015,41000177:173670,78643,0 ) ) -(109,67:30195539,41000177:501378,78643,0 -(109,67:30359393,41000177:173670,78643,0 +(105,67:30195539,41000177:501378,78643,0 +(105,67:30359393,41000177:173670,78643,0 ) ) -(109,67:30696917,41000177:501378,78643,0 -(109,67:30860771,41000177:173670,78643,0 +(105,67:30696917,41000177:501378,78643,0 +(105,67:30860771,41000177:173670,78643,0 ) ) -(109,67:31403380,41000177:1179650,485622,11795 -k109,67:31586883,41000177:183503 -g109,67:31786112,41000177 +(105,67:31239540,41000177:1343490,485622,11795 +k105,67:31586883,41000177:347343 +g105,67:31786112,41000177 ) -g109,67:30911860,41000177 -g109,67:32583030,41000177 +g105,67:30911860,41000177 +g105,67:32583030,41000177 ) -(109,69:6630773,41841665:25952256,485622,11795 -g109,69:9121143,41841665 -h109,69:9121143,41841665:983040,0,0 -h109,69:10104183,41841665:0,0,0 -g109,69:7613813,41841665 -(109,69:7613813,41841665:1507330,485622,11795 -k109,69:9121143,41841665:138283 +(105,69:6630773,41841665:25952256,485622,11795 +g105,69:9121143,41841665 +h105,69:9121143,41841665:983040,0,0 +h105,69:10104183,41841665:0,0,0 +g105,69:7613813,41841665 +(105,69:7613813,41841665:1507330,485622,11795 +k105,69:9121143,41841665:138283 ) -g109,69:10804107,41841665 -g109,69:10804107,41841665 -(109,69:11143175,41841665:501378,78643,0 -$109,69:11143175,41841665 -(109,69:11307029,41841665:173670,78643,0 +g105,69:10804107,41841665 +g105,69:10804107,41841665 +(105,69:11143175,41841665:501378,78643,0 +$105,69:11143175,41841665 +(105,69:11307029,41841665:173670,78643,0 ) -$109,69:11644553,41841665 +$105,69:11644553,41841665 ) -(109,69:11644553,41841665:501378,78643,0 -(109,69:11808407,41841665:173670,78643,0 +(105,69:11644553,41841665:501378,78643,0 +(105,69:11808407,41841665:173670,78643,0 ) ) -(109,69:12145931,41841665:501378,78643,0 -(109,69:12309785,41841665:173670,78643,0 +(105,69:12145931,41841665:501378,78643,0 +(105,69:12309785,41841665:173670,78643,0 ) ) -(109,69:12647309,41841665:501378,78643,0 -(109,69:12811163,41841665:173670,78643,0 +(105,69:12647309,41841665:501378,78643,0 +(105,69:12811163,41841665:173670,78643,0 ) ) -(109,69:13148687,41841665:501378,78643,0 -(109,69:13312541,41841665:173670,78643,0 +(105,69:13148687,41841665:501378,78643,0 +(105,69:13312541,41841665:173670,78643,0 ) ) -(109,69:13650065,41841665:501378,78643,0 -(109,69:13813919,41841665:173670,78643,0 +(105,69:13650065,41841665:501378,78643,0 +(105,69:13813919,41841665:173670,78643,0 ) ) -(109,69:14151443,41841665:501378,78643,0 -(109,69:14315297,41841665:173670,78643,0 +(105,69:14151443,41841665:501378,78643,0 +(105,69:14315297,41841665:173670,78643,0 ) ) -(109,69:14652821,41841665:501378,78643,0 -(109,69:14816675,41841665:173670,78643,0 +(105,69:14652821,41841665:501378,78643,0 +(105,69:14816675,41841665:173670,78643,0 ) ) -(109,69:15154199,41841665:501378,78643,0 -(109,69:15318053,41841665:173670,78643,0 +(105,69:15154199,41841665:501378,78643,0 +(105,69:15318053,41841665:173670,78643,0 ) ) -(109,69:15655577,41841665:501378,78643,0 -(109,69:15819431,41841665:173670,78643,0 +(105,69:15655577,41841665:501378,78643,0 +(105,69:15819431,41841665:173670,78643,0 ) ) -(109,69:16156955,41841665:501378,78643,0 -(109,69:16320809,41841665:173670,78643,0 +(105,69:16156955,41841665:501378,78643,0 +(105,69:16320809,41841665:173670,78643,0 ) ) -(109,69:16658333,41841665:501378,78643,0 -(109,69:16822187,41841665:173670,78643,0 +(105,69:16658333,41841665:501378,78643,0 +(105,69:16822187,41841665:173670,78643,0 ) ) -(109,69:17159711,41841665:501378,78643,0 -(109,69:17323565,41841665:173670,78643,0 +(105,69:17159711,41841665:501378,78643,0 +(105,69:17323565,41841665:173670,78643,0 ) ) -(109,69:17661089,41841665:501378,78643,0 -(109,69:17824943,41841665:173670,78643,0 +(105,69:17661089,41841665:501378,78643,0 +(105,69:17824943,41841665:173670,78643,0 ) ) -(109,69:18162467,41841665:501378,78643,0 -(109,69:18326321,41841665:173670,78643,0 +(105,69:18162467,41841665:501378,78643,0 +(105,69:18326321,41841665:173670,78643,0 ) ) -(109,69:18663845,41841665:501378,78643,0 -(109,69:18827699,41841665:173670,78643,0 +(105,69:18663845,41841665:501378,78643,0 +(105,69:18827699,41841665:173670,78643,0 ) ) -(109,69:19165223,41841665:501378,78643,0 -(109,69:19329077,41841665:173670,78643,0 +(105,69:19165223,41841665:501378,78643,0 +(105,69:19329077,41841665:173670,78643,0 ) ) -(109,69:19666601,41841665:501378,78643,0 -(109,69:19830455,41841665:173670,78643,0 +(105,69:19666601,41841665:501378,78643,0 +(105,69:19830455,41841665:173670,78643,0 ) ) -(109,69:20167979,41841665:501378,78643,0 -(109,69:20331833,41841665:173670,78643,0 +(105,69:20167979,41841665:501378,78643,0 +(105,69:20331833,41841665:173670,78643,0 ) ) -(109,69:20669357,41841665:501378,78643,0 -(109,69:20833211,41841665:173670,78643,0 +(105,69:20669357,41841665:501378,78643,0 +(105,69:20833211,41841665:173670,78643,0 ) ) -(109,69:21170735,41841665:501378,78643,0 -(109,69:21334589,41841665:173670,78643,0 +(105,69:21170735,41841665:501378,78643,0 +(105,69:21334589,41841665:173670,78643,0 ) ) -(109,69:21672113,41841665:501378,78643,0 -(109,69:21835967,41841665:173670,78643,0 +(105,69:21672113,41841665:501378,78643,0 +(105,69:21835967,41841665:173670,78643,0 ) ) -(109,69:22173491,41841665:501378,78643,0 -(109,69:22337345,41841665:173670,78643,0 +(105,69:22173491,41841665:501378,78643,0 +(105,69:22337345,41841665:173670,78643,0 ) ) -(109,69:22674869,41841665:501378,78643,0 -(109,69:22838723,41841665:173670,78643,0 +(105,69:22674869,41841665:501378,78643,0 +(105,69:22838723,41841665:173670,78643,0 ) ) -(109,69:23176247,41841665:501378,78643,0 -(109,69:23340101,41841665:173670,78643,0 +(105,69:23176247,41841665:501378,78643,0 +(105,69:23340101,41841665:173670,78643,0 ) ) -(109,69:23677625,41841665:501378,78643,0 -(109,69:23841479,41841665:173670,78643,0 +(105,69:23677625,41841665:501378,78643,0 +(105,69:23841479,41841665:173670,78643,0 ) ) -(109,69:24179003,41841665:501378,78643,0 -(109,69:24342857,41841665:173670,78643,0 +(105,69:24179003,41841665:501378,78643,0 +(105,69:24342857,41841665:173670,78643,0 ) ) -(109,69:24680381,41841665:501378,78643,0 -(109,69:24844235,41841665:173670,78643,0 +(105,69:24680381,41841665:501378,78643,0 +(105,69:24844235,41841665:173670,78643,0 ) ) -(109,69:25181759,41841665:501378,78643,0 -(109,69:25345613,41841665:173670,78643,0 +(105,69:25181759,41841665:501378,78643,0 +(105,69:25345613,41841665:173670,78643,0 ) ) -(109,69:25683137,41841665:501378,78643,0 -(109,69:25846991,41841665:173670,78643,0 +(105,69:25683137,41841665:501378,78643,0 +(105,69:25846991,41841665:173670,78643,0 ) ) -(109,69:26184515,41841665:501378,78643,0 -(109,69:26348369,41841665:173670,78643,0 +(105,69:26184515,41841665:501378,78643,0 +(105,69:26348369,41841665:173670,78643,0 ) ) -(109,69:26685893,41841665:501378,78643,0 -(109,69:26849747,41841665:173670,78643,0 +(105,69:26685893,41841665:501378,78643,0 +(105,69:26849747,41841665:173670,78643,0 ) ) -(109,69:27187271,41841665:501378,78643,0 -(109,69:27351125,41841665:173670,78643,0 +(105,69:27187271,41841665:501378,78643,0 +(105,69:27351125,41841665:173670,78643,0 ) ) -(109,69:27688649,41841665:501378,78643,0 -(109,69:27852503,41841665:173670,78643,0 +(105,69:27688649,41841665:501378,78643,0 +(105,69:27852503,41841665:173670,78643,0 ) ) -(109,69:28190027,41841665:501378,78643,0 -(109,69:28353881,41841665:173670,78643,0 +(105,69:28190027,41841665:501378,78643,0 +(105,69:28353881,41841665:173670,78643,0 ) ) -(109,69:28691405,41841665:501378,78643,0 -(109,69:28855259,41841665:173670,78643,0 +(105,69:28691405,41841665:501378,78643,0 +(105,69:28855259,41841665:173670,78643,0 ) ) -(109,69:29192783,41841665:501378,78643,0 -(109,69:29356637,41841665:173670,78643,0 +(105,69:29192783,41841665:501378,78643,0 +(105,69:29356637,41841665:173670,78643,0 ) ) -(109,69:29694161,41841665:501378,78643,0 -(109,69:29858015,41841665:173670,78643,0 +(105,69:29694161,41841665:501378,78643,0 +(105,69:29858015,41841665:173670,78643,0 ) ) -(109,69:30195539,41841665:501378,78643,0 -(109,69:30359393,41841665:173670,78643,0 +(105,69:30195539,41841665:501378,78643,0 +(105,69:30359393,41841665:173670,78643,0 ) ) -(109,69:30696917,41841665:501378,78643,0 -(109,69:30860771,41841665:173670,78643,0 +(105,69:30696917,41841665:501378,78643,0 +(105,69:30860771,41841665:173670,78643,0 ) ) -(109,69:31403379,41841665:1179650,485622,11795 -k109,69:31586882,41841665:183503 -g109,69:31786111,41841665 +(105,69:31239539,41841665:1343490,485622,11795 +k105,69:31586882,41841665:347343 +g105,69:31786111,41841665 ) -g109,69:30911859,41841665 -g109,69:32583029,41841665 +g105,69:30911859,41841665 +g105,69:32583029,41841665 ) -(109,71:6630773,42683153:25952256,505283,134348 -g109,71:11218293,42683153 -h109,71:11218293,42683153:2490370,0,0 -h109,71:13708663,42683153:0,0,0 -g109,71:9121143,42683153 -(109,71:9121143,42683153:2097150,485622,11795 -k109,71:11218293,42683153:155974 +(105,71:6630773,42683153:25952256,505283,134348 +g105,71:11218293,42683153 +h105,71:11218293,42683153:2490370,0,0 +h105,71:13708663,42683153:0,0,0 +g105,71:9121143,42683153 +(105,71:9121143,42683153:2097150,485622,11795 +k105,71:11218293,42683153:155974 ) -g109,71:13984567,42683153 -g109,71:17398337,42683153 -g109,71:18789011,42683153 -g109,71:22116274,42683153 -(109,71:22173491,42683153:501378,78643,0 -$109,71:22173491,42683153 -(109,71:22337345,42683153:173670,78643,0 +g105,71:13984567,42683153 +g105,71:17398337,42683153 +g105,71:18789011,42683153 +g105,71:22116274,42683153 +(105,71:22173491,42683153:501378,78643,0 +$105,71:22173491,42683153 +(105,71:22337345,42683153:173670,78643,0 ) -$109,71:22674869,42683153 +$105,71:22674869,42683153 ) -(109,71:22674869,42683153:501378,78643,0 -(109,71:22838723,42683153:173670,78643,0 +(105,71:22674869,42683153:501378,78643,0 +(105,71:22838723,42683153:173670,78643,0 ) ) -(109,71:23176247,42683153:501378,78643,0 -(109,71:23340101,42683153:173670,78643,0 +(105,71:23176247,42683153:501378,78643,0 +(105,71:23340101,42683153:173670,78643,0 ) ) -(109,71:23677625,42683153:501378,78643,0 -(109,71:23841479,42683153:173670,78643,0 +(105,71:23677625,42683153:501378,78643,0 +(105,71:23841479,42683153:173670,78643,0 ) ) -(109,71:24179003,42683153:501378,78643,0 -(109,71:24342857,42683153:173670,78643,0 +(105,71:24179003,42683153:501378,78643,0 +(105,71:24342857,42683153:173670,78643,0 ) ) -(109,71:24680381,42683153:501378,78643,0 -(109,71:24844235,42683153:173670,78643,0 +(105,71:24680381,42683153:501378,78643,0 +(105,71:24844235,42683153:173670,78643,0 ) ) -(109,71:25181759,42683153:501378,78643,0 -(109,71:25345613,42683153:173670,78643,0 +(105,71:25181759,42683153:501378,78643,0 +(105,71:25345613,42683153:173670,78643,0 ) ) -(109,71:25683137,42683153:501378,78643,0 -(109,71:25846991,42683153:173670,78643,0 +(105,71:25683137,42683153:501378,78643,0 +(105,71:25846991,42683153:173670,78643,0 ) ) -(109,71:26184515,42683153:501378,78643,0 -(109,71:26348369,42683153:173670,78643,0 +(105,71:26184515,42683153:501378,78643,0 +(105,71:26348369,42683153:173670,78643,0 ) ) -(109,71:26685893,42683153:501378,78643,0 -(109,71:26849747,42683153:173670,78643,0 +(105,71:26685893,42683153:501378,78643,0 +(105,71:26849747,42683153:173670,78643,0 ) ) -(109,71:27187271,42683153:501378,78643,0 -(109,71:27351125,42683153:173670,78643,0 +(105,71:27187271,42683153:501378,78643,0 +(105,71:27351125,42683153:173670,78643,0 ) ) -(109,71:27688649,42683153:501378,78643,0 -(109,71:27852503,42683153:173670,78643,0 +(105,71:27688649,42683153:501378,78643,0 +(105,71:27852503,42683153:173670,78643,0 ) ) -(109,71:28190027,42683153:501378,78643,0 -(109,71:28353881,42683153:173670,78643,0 +(105,71:28190027,42683153:501378,78643,0 +(105,71:28353881,42683153:173670,78643,0 ) ) -(109,71:28691405,42683153:501378,78643,0 -(109,71:28855259,42683153:173670,78643,0 +(105,71:28691405,42683153:501378,78643,0 +(105,71:28855259,42683153:173670,78643,0 ) ) -(109,71:29192783,42683153:501378,78643,0 -(109,71:29356637,42683153:173670,78643,0 +(105,71:29192783,42683153:501378,78643,0 +(105,71:29356637,42683153:173670,78643,0 ) ) -(109,71:29694161,42683153:501378,78643,0 -(109,71:29858015,42683153:173670,78643,0 +(105,71:29694161,42683153:501378,78643,0 +(105,71:29858015,42683153:173670,78643,0 ) ) -(109,71:30195539,42683153:501378,78643,0 -(109,71:30359393,42683153:173670,78643,0 +(105,71:30195539,42683153:501378,78643,0 +(105,71:30359393,42683153:173670,78643,0 ) ) -(109,71:30696917,42683153:501378,78643,0 -(109,71:30860771,42683153:173670,78643,0 +(105,71:30696917,42683153:501378,78643,0 +(105,71:30860771,42683153:173670,78643,0 ) ) -(109,71:31403379,42683153:1179650,485622,11795 -k109,71:31586882,42683153:183503 -g109,71:31786111,42683153 +(105,71:31239539,42683153:1343490,485622,11795 +k105,71:31586882,42683153:347343 +g105,71:31786111,42683153 ) -g109,71:30911859,42683153 -g109,71:32583029,42683153 +g105,71:30911859,42683153 +g105,71:32583029,42683153 ) -(109,73:6630773,43524641:25952256,505283,134348 -g109,73:11218293,43524641 -h109,73:11218293,43524641:2490370,0,0 -h109,73:13708663,43524641:0,0,0 -g109,73:9121143,43524641 -(109,73:9121143,43524641:2097150,485622,11795 -k109,73:11218293,43524641:155974 +(105,73:6630773,43524641:25952256,505283,134348 +g105,73:11218293,43524641 +h105,73:11218293,43524641:2490370,0,0 +h105,73:13708663,43524641:0,0,0 +g105,73:9121143,43524641 +(105,73:9121143,43524641:2097150,485622,11795 +k105,73:11218293,43524641:155974 ) -g109,73:13736841,43524641 -g109,73:15127515,43524641 -g109,73:18324361,43524641 -g109,73:19517116,43524641 -g109,73:22470824,43524641 -(109,73:22674869,43524641:501378,78643,0 -$109,73:22674869,43524641 -(109,73:22838723,43524641:173670,78643,0 +g105,73:13736841,43524641 +g105,73:15127515,43524641 +g105,73:18324361,43524641 +g105,73:19517116,43524641 +g105,73:22470824,43524641 +(105,73:22674869,43524641:501378,78643,0 +$105,73:22674869,43524641 +(105,73:22838723,43524641:173670,78643,0 ) -$109,73:23176247,43524641 +$105,73:23176247,43524641 ) -(109,73:23176247,43524641:501378,78643,0 -(109,73:23340101,43524641:173670,78643,0 +(105,73:23176247,43524641:501378,78643,0 +(105,73:23340101,43524641:173670,78643,0 ) ) -(109,73:23677625,43524641:501378,78643,0 -(109,73:23841479,43524641:173670,78643,0 +(105,73:23677625,43524641:501378,78643,0 +(105,73:23841479,43524641:173670,78643,0 ) ) -(109,73:24179003,43524641:501378,78643,0 -(109,73:24342857,43524641:173670,78643,0 +(105,73:24179003,43524641:501378,78643,0 +(105,73:24342857,43524641:173670,78643,0 ) ) -(109,73:24680381,43524641:501378,78643,0 -(109,73:24844235,43524641:173670,78643,0 +(105,73:24680381,43524641:501378,78643,0 +(105,73:24844235,43524641:173670,78643,0 ) ) -(109,73:25181759,43524641:501378,78643,0 -(109,73:25345613,43524641:173670,78643,0 +(105,73:25181759,43524641:501378,78643,0 +(105,73:25345613,43524641:173670,78643,0 ) ) -(109,73:25683137,43524641:501378,78643,0 -(109,73:25846991,43524641:173670,78643,0 +(105,73:25683137,43524641:501378,78643,0 +(105,73:25846991,43524641:173670,78643,0 ) ) -(109,73:26184515,43524641:501378,78643,0 -(109,73:26348369,43524641:173670,78643,0 +(105,73:26184515,43524641:501378,78643,0 +(105,73:26348369,43524641:173670,78643,0 ) ) -(109,73:26685893,43524641:501378,78643,0 -(109,73:26849747,43524641:173670,78643,0 +(105,73:26685893,43524641:501378,78643,0 +(105,73:26849747,43524641:173670,78643,0 ) ) -(109,73:27187271,43524641:501378,78643,0 -(109,73:27351125,43524641:173670,78643,0 +(105,73:27187271,43524641:501378,78643,0 +(105,73:27351125,43524641:173670,78643,0 ) ) -(109,73:27688649,43524641:501378,78643,0 -(109,73:27852503,43524641:173670,78643,0 +(105,73:27688649,43524641:501378,78643,0 +(105,73:27852503,43524641:173670,78643,0 ) ) -(109,73:28190027,43524641:501378,78643,0 -(109,73:28353881,43524641:173670,78643,0 +(105,73:28190027,43524641:501378,78643,0 +(105,73:28353881,43524641:173670,78643,0 ) ) -(109,73:28691405,43524641:501378,78643,0 -(109,73:28855259,43524641:173670,78643,0 +(105,73:28691405,43524641:501378,78643,0 +(105,73:28855259,43524641:173670,78643,0 ) ) -(109,73:29192783,43524641:501378,78643,0 -(109,73:29356637,43524641:173670,78643,0 +(105,73:29192783,43524641:501378,78643,0 +(105,73:29356637,43524641:173670,78643,0 ) ) -(109,73:29694161,43524641:501378,78643,0 -(109,73:29858015,43524641:173670,78643,0 +(105,73:29694161,43524641:501378,78643,0 +(105,73:29858015,43524641:173670,78643,0 ) ) -(109,73:30195539,43524641:501378,78643,0 -(109,73:30359393,43524641:173670,78643,0 +(105,73:30195539,43524641:501378,78643,0 +(105,73:30359393,43524641:173670,78643,0 ) ) -(109,73:30696917,43524641:501378,78643,0 -(109,73:30860771,43524641:173670,78643,0 +(105,73:30696917,43524641:501378,78643,0 +(105,73:30860771,43524641:173670,78643,0 ) ) -(109,73:31403379,43524641:1179650,485622,11795 -k109,73:31586882,43524641:183503 -g109,73:31786111,43524641 +(105,73:31239539,43524641:1343490,485622,11795 +k105,73:31586882,43524641:347343 +g105,73:31786111,43524641 ) -g109,73:30911859,43524641 -g109,73:32583029,43524641 +g105,73:30911859,43524641 +g105,73:32583029,43524641 ) -(109,75:6630773,44366129:25952256,505283,11795 -g109,75:11218293,44366129 -h109,75:11218293,44366129:2490370,0,0 -h109,75:13708663,44366129:0,0,0 -g109,75:9121143,44366129 -(109,75:9121143,44366129:2097150,485622,11795 -k109,75:11218293,44366129:155974 +(105,75:6630773,44366129:25952256,505283,11795 +g105,75:11218293,44366129 +h105,75:11218293,44366129:2490370,0,0 +h105,75:13708663,44366129:0,0,0 +g105,75:9121143,44366129 +(105,75:9121143,44366129:2097150,485622,11795 +k105,75:11218293,44366129:155974 ) -g109,75:13612323,44366129 -g109,75:14936150,44366129 -(109,75:15154199,44366129:501378,78643,0 -$109,75:15154199,44366129 -(109,75:15318053,44366129:173670,78643,0 +g105,75:13612323,44366129 +g105,75:14936150,44366129 +(105,75:15154199,44366129:501378,78643,0 +$105,75:15154199,44366129 +(105,75:15318053,44366129:173670,78643,0 ) -$109,75:15655577,44366129 +$105,75:15655577,44366129 ) -(109,75:15655577,44366129:501378,78643,0 -(109,75:15819431,44366129:173670,78643,0 +(105,75:15655577,44366129:501378,78643,0 +(105,75:15819431,44366129:173670,78643,0 ) ) -(109,75:16156955,44366129:501378,78643,0 -(109,75:16320809,44366129:173670,78643,0 +(105,75:16156955,44366129:501378,78643,0 +(105,75:16320809,44366129:173670,78643,0 ) ) -(109,75:16658333,44366129:501378,78643,0 -(109,75:16822187,44366129:173670,78643,0 +(105,75:16658333,44366129:501378,78643,0 +(105,75:16822187,44366129:173670,78643,0 ) ) -(109,75:17159711,44366129:501378,78643,0 -(109,75:17323565,44366129:173670,78643,0 +(105,75:17159711,44366129:501378,78643,0 +(105,75:17323565,44366129:173670,78643,0 ) ) -(109,75:17661089,44366129:501378,78643,0 -(109,75:17824943,44366129:173670,78643,0 +(105,75:17661089,44366129:501378,78643,0 +(105,75:17824943,44366129:173670,78643,0 ) ) -(109,75:18162467,44366129:501378,78643,0 -(109,75:18326321,44366129:173670,78643,0 +(105,75:18162467,44366129:501378,78643,0 +(105,75:18326321,44366129:173670,78643,0 ) ) -(109,75:18663845,44366129:501378,78643,0 -(109,75:18827699,44366129:173670,78643,0 +(105,75:18663845,44366129:501378,78643,0 +(105,75:18827699,44366129:173670,78643,0 ) ) -(109,75:19165223,44366129:501378,78643,0 -(109,75:19329077,44366129:173670,78643,0 +(105,75:19165223,44366129:501378,78643,0 +(105,75:19329077,44366129:173670,78643,0 ) ) -(109,75:19666601,44366129:501378,78643,0 -(109,75:19830455,44366129:173670,78643,0 +(105,75:19666601,44366129:501378,78643,0 +(105,75:19830455,44366129:173670,78643,0 ) ) -(109,75:20167979,44366129:501378,78643,0 -(109,75:20331833,44366129:173670,78643,0 +(105,75:20167979,44366129:501378,78643,0 +(105,75:20331833,44366129:173670,78643,0 ) ) -(109,75:20669357,44366129:501378,78643,0 -(109,75:20833211,44366129:173670,78643,0 +(105,75:20669357,44366129:501378,78643,0 +(105,75:20833211,44366129:173670,78643,0 ) ) -(109,75:21170735,44366129:501378,78643,0 -(109,75:21334589,44366129:173670,78643,0 +(105,75:21170735,44366129:501378,78643,0 +(105,75:21334589,44366129:173670,78643,0 ) ) -(109,75:21672113,44366129:501378,78643,0 -(109,75:21835967,44366129:173670,78643,0 +(105,75:21672113,44366129:501378,78643,0 +(105,75:21835967,44366129:173670,78643,0 ) ) -(109,75:22173491,44366129:501378,78643,0 -(109,75:22337345,44366129:173670,78643,0 +(105,75:22173491,44366129:501378,78643,0 +(105,75:22337345,44366129:173670,78643,0 ) ) -(109,75:22674869,44366129:501378,78643,0 -(109,75:22838723,44366129:173670,78643,0 +(105,75:22674869,44366129:501378,78643,0 +(105,75:22838723,44366129:173670,78643,0 ) ) -(109,75:23176247,44366129:501378,78643,0 -(109,75:23340101,44366129:173670,78643,0 +(105,75:23176247,44366129:501378,78643,0 +(105,75:23340101,44366129:173670,78643,0 ) ) -(109,75:23677625,44366129:501378,78643,0 -(109,75:23841479,44366129:173670,78643,0 +(105,75:23677625,44366129:501378,78643,0 +(105,75:23841479,44366129:173670,78643,0 ) ) -(109,75:24179003,44366129:501378,78643,0 -(109,75:24342857,44366129:173670,78643,0 +(105,75:24179003,44366129:501378,78643,0 +(105,75:24342857,44366129:173670,78643,0 ) ) -(109,75:24680381,44366129:501378,78643,0 -(109,75:24844235,44366129:173670,78643,0 +(105,75:24680381,44366129:501378,78643,0 +(105,75:24844235,44366129:173670,78643,0 ) ) -(109,75:25181759,44366129:501378,78643,0 -(109,75:25345613,44366129:173670,78643,0 +(105,75:25181759,44366129:501378,78643,0 +(105,75:25345613,44366129:173670,78643,0 ) ) -(109,75:25683137,44366129:501378,78643,0 -(109,75:25846991,44366129:173670,78643,0 +(105,75:25683137,44366129:501378,78643,0 +(105,75:25846991,44366129:173670,78643,0 ) ) -(109,75:26184515,44366129:501378,78643,0 -(109,75:26348369,44366129:173670,78643,0 +(105,75:26184515,44366129:501378,78643,0 +(105,75:26348369,44366129:173670,78643,0 ) ) -(109,75:26685893,44366129:501378,78643,0 -(109,75:26849747,44366129:173670,78643,0 +(105,75:26685893,44366129:501378,78643,0 +(105,75:26849747,44366129:173670,78643,0 ) ) -(109,75:27187271,44366129:501378,78643,0 -(109,75:27351125,44366129:173670,78643,0 +(105,75:27187271,44366129:501378,78643,0 +(105,75:27351125,44366129:173670,78643,0 ) ) -(109,75:27688649,44366129:501378,78643,0 -(109,75:27852503,44366129:173670,78643,0 +(105,75:27688649,44366129:501378,78643,0 +(105,75:27852503,44366129:173670,78643,0 ) ) -(109,75:28190027,44366129:501378,78643,0 -(109,75:28353881,44366129:173670,78643,0 +(105,75:28190027,44366129:501378,78643,0 +(105,75:28353881,44366129:173670,78643,0 ) ) -(109,75:28691405,44366129:501378,78643,0 -(109,75:28855259,44366129:173670,78643,0 +(105,75:28691405,44366129:501378,78643,0 +(105,75:28855259,44366129:173670,78643,0 ) ) -(109,75:29192783,44366129:501378,78643,0 -(109,75:29356637,44366129:173670,78643,0 +(105,75:29192783,44366129:501378,78643,0 +(105,75:29356637,44366129:173670,78643,0 ) ) -(109,75:29694161,44366129:501378,78643,0 -(109,75:29858015,44366129:173670,78643,0 +(105,75:29694161,44366129:501378,78643,0 +(105,75:29858015,44366129:173670,78643,0 ) ) -(109,75:30195539,44366129:501378,78643,0 -(109,75:30359393,44366129:173670,78643,0 +(105,75:30195539,44366129:501378,78643,0 +(105,75:30359393,44366129:173670,78643,0 ) ) -(109,75:30696917,44366129:501378,78643,0 -(109,75:30860771,44366129:173670,78643,0 +(105,75:30696917,44366129:501378,78643,0 +(105,75:30860771,44366129:173670,78643,0 ) ) -(109,75:31403379,44366129:1179650,485622,11795 -k109,75:31586882,44366129:183503 -g109,75:31786111,44366129 +(105,75:31239539,44366129:1343490,485622,11795 +k105,75:31586882,44366129:347343 +g105,75:31786111,44366129 ) -g109,75:30911859,44366129 -g109,75:32583029,44366129 +g105,75:30911859,44366129 +g105,75:32583029,44366129 ) -(109,77:6630773,45207617:25952256,513147,11795 -g109,77:9121143,45207617 -h109,77:9121143,45207617:983040,0,0 -h109,77:10104183,45207617:0,0,0 -g109,77:7613813,45207617 -(109,77:7613813,45207617:1507330,485622,0 -k109,77:9121143,45207617:138283 +(105,77:6630773,45207617:25952256,513147,11795 +g105,77:9121143,45207617 +h105,77:9121143,45207617:983040,0,0 +h105,77:10104183,45207617:0,0,0 +g105,77:7613813,45207617 +(105,77:7613813,45207617:1507330,485622,0 +k105,77:9121143,45207617:138283 ) -g109,77:10792311,45207617 -g109,77:13198137,45207617 -g109,77:13198137,45207617 -(109,77:13650065,45207617:501378,78643,0 -$109,77:13650065,45207617 -(109,77:13813919,45207617:173670,78643,0 +g105,77:10792311,45207617 +g105,77:13198137,45207617 +g105,77:13198137,45207617 +(105,77:13650065,45207617:501378,78643,0 +$105,77:13650065,45207617 +(105,77:13813919,45207617:173670,78643,0 ) -$109,77:14151443,45207617 +$105,77:14151443,45207617 ) -(109,77:14151443,45207617:501378,78643,0 -(109,77:14315297,45207617:173670,78643,0 +(105,77:14151443,45207617:501378,78643,0 +(105,77:14315297,45207617:173670,78643,0 ) ) -(109,77:14652821,45207617:501378,78643,0 -(109,77:14816675,45207617:173670,78643,0 +(105,77:14652821,45207617:501378,78643,0 +(105,77:14816675,45207617:173670,78643,0 ) ) -(109,77:15154199,45207617:501378,78643,0 -(109,77:15318053,45207617:173670,78643,0 +(105,77:15154199,45207617:501378,78643,0 +(105,77:15318053,45207617:173670,78643,0 ) ) -(109,77:15655577,45207617:501378,78643,0 -(109,77:15819431,45207617:173670,78643,0 +(105,77:15655577,45207617:501378,78643,0 +(105,77:15819431,45207617:173670,78643,0 ) ) -(109,77:16156955,45207617:501378,78643,0 -(109,77:16320809,45207617:173670,78643,0 +(105,77:16156955,45207617:501378,78643,0 +(105,77:16320809,45207617:173670,78643,0 ) ) -(109,77:16658333,45207617:501378,78643,0 -(109,77:16822187,45207617:173670,78643,0 +(105,77:16658333,45207617:501378,78643,0 +(105,77:16822187,45207617:173670,78643,0 ) ) -(109,77:17159711,45207617:501378,78643,0 -(109,77:17323565,45207617:173670,78643,0 +(105,77:17159711,45207617:501378,78643,0 +(105,77:17323565,45207617:173670,78643,0 ) ) -(109,77:17661089,45207617:501378,78643,0 -(109,77:17824943,45207617:173670,78643,0 +(105,77:17661089,45207617:501378,78643,0 +(105,77:17824943,45207617:173670,78643,0 ) ) -(109,77:18162467,45207617:501378,78643,0 -(109,77:18326321,45207617:173670,78643,0 +(105,77:18162467,45207617:501378,78643,0 +(105,77:18326321,45207617:173670,78643,0 ) ) -(109,77:18663845,45207617:501378,78643,0 -(109,77:18827699,45207617:173670,78643,0 +(105,77:18663845,45207617:501378,78643,0 +(105,77:18827699,45207617:173670,78643,0 ) ) -(109,77:19165223,45207617:501378,78643,0 -(109,77:19329077,45207617:173670,78643,0 +(105,77:19165223,45207617:501378,78643,0 +(105,77:19329077,45207617:173670,78643,0 ) ) -(109,77:19666601,45207617:501378,78643,0 -(109,77:19830455,45207617:173670,78643,0 +(105,77:19666601,45207617:501378,78643,0 +(105,77:19830455,45207617:173670,78643,0 ) ) -(109,77:20167979,45207617:501378,78643,0 -(109,77:20331833,45207617:173670,78643,0 +(105,77:20167979,45207617:501378,78643,0 +(105,77:20331833,45207617:173670,78643,0 ) ) -(109,77:20669357,45207617:501378,78643,0 -(109,77:20833211,45207617:173670,78643,0 +(105,77:20669357,45207617:501378,78643,0 +(105,77:20833211,45207617:173670,78643,0 ) ) -(109,77:21170735,45207617:501378,78643,0 -(109,77:21334589,45207617:173670,78643,0 +(105,77:21170735,45207617:501378,78643,0 +(105,77:21334589,45207617:173670,78643,0 ) ) -(109,77:21672113,45207617:501378,78643,0 -(109,77:21835967,45207617:173670,78643,0 +(105,77:21672113,45207617:501378,78643,0 +(105,77:21835967,45207617:173670,78643,0 ) ) -(109,77:22173491,45207617:501378,78643,0 -(109,77:22337345,45207617:173670,78643,0 +(105,77:22173491,45207617:501378,78643,0 +(105,77:22337345,45207617:173670,78643,0 ) ) -(109,77:22674869,45207617:501378,78643,0 -(109,77:22838723,45207617:173670,78643,0 +(105,77:22674869,45207617:501378,78643,0 +(105,77:22838723,45207617:173670,78643,0 ) ) -(109,77:23176247,45207617:501378,78643,0 -(109,77:23340101,45207617:173670,78643,0 +(105,77:23176247,45207617:501378,78643,0 +(105,77:23340101,45207617:173670,78643,0 ) ) -(109,77:23677625,45207617:501378,78643,0 -(109,77:23841479,45207617:173670,78643,0 +(105,77:23677625,45207617:501378,78643,0 +(105,77:23841479,45207617:173670,78643,0 ) ) -(109,77:24179003,45207617:501378,78643,0 -(109,77:24342857,45207617:173670,78643,0 +(105,77:24179003,45207617:501378,78643,0 +(105,77:24342857,45207617:173670,78643,0 ) ) -(109,77:24680381,45207617:501378,78643,0 -(109,77:24844235,45207617:173670,78643,0 +(105,77:24680381,45207617:501378,78643,0 +(105,77:24844235,45207617:173670,78643,0 ) ) -(109,77:25181759,45207617:501378,78643,0 -(109,77:25345613,45207617:173670,78643,0 +(105,77:25181759,45207617:501378,78643,0 +(105,77:25345613,45207617:173670,78643,0 ) ) -(109,77:25683137,45207617:501378,78643,0 -(109,77:25846991,45207617:173670,78643,0 +(105,77:25683137,45207617:501378,78643,0 +(105,77:25846991,45207617:173670,78643,0 ) ) -(109,77:26184515,45207617:501378,78643,0 -(109,77:26348369,45207617:173670,78643,0 +(105,77:26184515,45207617:501378,78643,0 +(105,77:26348369,45207617:173670,78643,0 ) ) -(109,77:26685893,45207617:501378,78643,0 -(109,77:26849747,45207617:173670,78643,0 +(105,77:26685893,45207617:501378,78643,0 +(105,77:26849747,45207617:173670,78643,0 ) ) -(109,77:27187271,45207617:501378,78643,0 -(109,77:27351125,45207617:173670,78643,0 +(105,77:27187271,45207617:501378,78643,0 +(105,77:27351125,45207617:173670,78643,0 ) ) -(109,77:27688649,45207617:501378,78643,0 -(109,77:27852503,45207617:173670,78643,0 +(105,77:27688649,45207617:501378,78643,0 +(105,77:27852503,45207617:173670,78643,0 ) ) -(109,77:28190027,45207617:501378,78643,0 -(109,77:28353881,45207617:173670,78643,0 +(105,77:28190027,45207617:501378,78643,0 +(105,77:28353881,45207617:173670,78643,0 ) ) -(109,77:28691405,45207617:501378,78643,0 -(109,77:28855259,45207617:173670,78643,0 +(105,77:28691405,45207617:501378,78643,0 +(105,77:28855259,45207617:173670,78643,0 ) ) -(109,77:29192783,45207617:501378,78643,0 -(109,77:29356637,45207617:173670,78643,0 +(105,77:29192783,45207617:501378,78643,0 +(105,77:29356637,45207617:173670,78643,0 ) ) -(109,77:29694161,45207617:501378,78643,0 -(109,77:29858015,45207617:173670,78643,0 +(105,77:29694161,45207617:501378,78643,0 +(105,77:29858015,45207617:173670,78643,0 ) ) -(109,77:30195539,45207617:501378,78643,0 -(109,77:30359393,45207617:173670,78643,0 +(105,77:30195539,45207617:501378,78643,0 +(105,77:30359393,45207617:173670,78643,0 ) ) -(109,77:30696917,45207617:501378,78643,0 -(109,77:30860771,45207617:173670,78643,0 +(105,77:30696917,45207617:501378,78643,0 +(105,77:30860771,45207617:173670,78643,0 ) ) -(109,77:31403379,45207617:1179650,485622,11795 -k109,77:31586882,45207617:183503 -g109,77:31786111,45207617 +(105,77:31239539,45207617:1343490,485622,11795 +k105,77:31586882,45207617:347343 +g105,77:31786111,45207617 ) -g109,77:30911859,45207617 -g109,77:32583029,45207617 +g105,77:30911859,45207617 +g105,77:32583029,45207617 ) ] -(109,81:32583029,45706769:0,0,0 -g109,81:32583029,45706769 +(105,81:32583029,45706769:0,0,0 +g105,81:32583029,45706769 ) ) ] -(109,81:6630773,47279633:25952256,473825,3931 -(109,81:6630773,47279633:25952256,473825,3931 -(109,81:6630773,47279633:0,0,0 -v109,81:6630773,47279633:0,0,0 +(105,81:6630773,47279633:25952256,473825,3931 +(105,81:6630773,47279633:25952256,473825,3931 +(105,81:6630773,47279633:0,0,0 +v105,81:6630773,47279633:0,0,0 ) -g109,81:6830002,47279633 -k109,81:31823466,47279633:24993464 +g105,81:6830002,47279633 +k105,81:31823466,47279633:24993464 ) ) ] -h109,81:4262630,4025873:0,0,0 +h105,81:4262630,4025873:0,0,0 ] !101572 }2 !11 {3 -[109,173:4262630,47279633:28320399,43253760,0 -(109,173:4262630,4025873:0,0,0 -[109,173:-473657,4025873:25952256,0,0 -(109,173:-473657,-710414:25952256,0,0 -h109,173:-473657,-710414:0,0,0 -(109,173:-473657,-710414:0,0,0 -(109,173:-473657,-710414:0,0,0 -g109,173:-473657,-710414 -(109,173:-473657,-710414:65781,0,65781 -g109,173:-407876,-710414 -[109,173:-407876,-644633:0,0,0 +[105,173:4262630,47279633:28320399,43253760,0 +(105,173:4262630,4025873:0,0,0 +[105,173:-473657,4025873:25952256,0,0 +(105,173:-473657,-710414:25952256,0,0 +h105,173:-473657,-710414:0,0,0 +(105,173:-473657,-710414:0,0,0 +(105,173:-473657,-710414:0,0,0 +g105,173:-473657,-710414 +(105,173:-473657,-710414:65781,0,65781 +g105,173:-407876,-710414 +[105,173:-407876,-644633:0,0,0 ] ) -k109,173:-473657,-710414:-65781 +k105,173:-473657,-710414:-65781 ) ) -k109,173:25478599,-710414:25952256 -g109,173:25478599,-710414 +k105,173:25478599,-710414:25952256 +g105,173:25478599,-710414 ) ] ) -[109,173:6630773,47279633:25952256,43253760,0 -[109,173:6630773,4812305:25952256,786432,0 -(109,173:6630773,4812305:25952256,485622,11795 -(109,173:6630773,4812305:25952256,485622,11795 -g109,173:3078558,4812305 -[109,173:3078558,4812305:0,0,0 -(109,173:3078558,2439708:0,1703936,0 -k109,173:1358238,2439708:-1720320 -(1,86:1358238,2439708:1720320,1703936,0 -(1,86:1358238,2439708:1179648,16384,0 -r109,173:2537886,2439708:1179648,16384,0 +[105,173:6630773,47279633:25952256,43253760,0 +[105,173:6630773,4812305:25952256,786432,0 +(105,173:6630773,4812305:25952256,485622,11795 +(105,173:6630773,4812305:25952256,485622,11795 +g105,173:3078558,4812305 +[105,173:3078558,4812305:0,0,0 +(105,173:3078558,2439708:0,1703936,0 +k105,173:1358238,2439708:-1720320 +(1,92:1358238,2439708:1720320,1703936,0 +(1,92:1358238,2439708:1179648,16384,0 +r105,173:2537886,2439708:1179648,16384,0 ) -g1,86:3062174,2439708 -(1,86:3062174,2439708:16384,1703936,0 -[1,86:3062174,2439708:25952256,1703936,0 -(1,86:3062174,1915420:25952256,1179648,0 -(1,86:3062174,1915420:16384,1179648,0 -r109,173:3078558,1915420:16384,1179648,0 +g1,92:3062174,2439708 +(1,92:3062174,2439708:16384,1703936,0 +[1,92:3062174,2439708:25952256,1703936,0 +(1,92:3062174,1915420:25952256,1179648,0 +(1,92:3062174,1915420:16384,1179648,0 +r105,173:3078558,1915420:16384,1179648,0 ) -k1,86:29014430,1915420:25935872 -g1,86:29014430,1915420 +k1,92:29014430,1915420:25935872 +g1,92:29014430,1915420 ) ] ) ) ) ] -[109,173:3078558,4812305:0,0,0 -(109,173:3078558,2439708:0,1703936,0 -g109,173:29030814,2439708 -g109,173:36135244,2439708 -(1,86:36135244,2439708:1720320,1703936,0 -(1,86:36135244,2439708:16384,1703936,0 -[1,86:36135244,2439708:25952256,1703936,0 -(1,86:36135244,1915420:25952256,1179648,0 -(1,86:36135244,1915420:16384,1179648,0 -r109,173:36151628,1915420:16384,1179648,0 +[105,173:3078558,4812305:0,0,0 +(105,173:3078558,2439708:0,1703936,0 +g105,173:29030814,2439708 +g105,173:36135244,2439708 +(1,92:36135244,2439708:1720320,1703936,0 +(1,92:36135244,2439708:16384,1703936,0 +[1,92:36135244,2439708:25952256,1703936,0 +(1,92:36135244,1915420:25952256,1179648,0 +(1,92:36135244,1915420:16384,1179648,0 +r105,173:36151628,1915420:16384,1179648,0 ) -k1,86:62087500,1915420:25935872 -g1,86:62087500,1915420 +k1,92:62087500,1915420:25935872 +g1,92:62087500,1915420 ) ] ) -g1,86:36675916,2439708 -(1,86:36675916,2439708:1179648,16384,0 -r109,173:37855564,2439708:1179648,16384,0 +g1,92:36675916,2439708 +(1,92:36675916,2439708:1179648,16384,0 +r105,173:37855564,2439708:1179648,16384,0 ) ) -k109,173:3078556,2439708:-34777008 +k105,173:3078556,2439708:-34777008 ) ] -[109,173:3078558,4812305:0,0,0 -(109,173:3078558,49800853:0,16384,2228224 -k109,173:1358238,49800853:-1720320 -(1,86:1358238,49800853:1720320,16384,2228224 -(1,86:1358238,49800853:1179648,16384,0 -r109,173:2537886,49800853:1179648,16384,0 +[105,173:3078558,4812305:0,0,0 +(105,173:3078558,49800853:0,16384,2228224 +k105,173:1358238,49800853:-1720320 +(1,92:1358238,49800853:1720320,16384,2228224 +(1,92:1358238,49800853:1179648,16384,0 +r105,173:2537886,49800853:1179648,16384,0 ) -g1,86:3062174,49800853 -(1,86:3062174,52029077:16384,1703936,0 -[1,86:3062174,52029077:25952256,1703936,0 -(1,86:3062174,51504789:25952256,1179648,0 -(1,86:3062174,51504789:16384,1179648,0 -r109,173:3078558,51504789:16384,1179648,0 +g1,92:3062174,49800853 +(1,92:3062174,52029077:16384,1703936,0 +[1,92:3062174,52029077:25952256,1703936,0 +(1,92:3062174,51504789:25952256,1179648,0 +(1,92:3062174,51504789:16384,1179648,0 +r105,173:3078558,51504789:16384,1179648,0 ) -k1,86:29014430,51504789:25935872 -g1,86:29014430,51504789 +k1,92:29014430,51504789:25935872 +g1,92:29014430,51504789 ) ] ) ) ) ] -[109,173:3078558,4812305:0,0,0 -(109,173:3078558,49800853:0,16384,2228224 -g109,173:29030814,49800853 -g109,173:36135244,49800853 -(1,86:36135244,49800853:1720320,16384,2228224 -(1,86:36135244,52029077:16384,1703936,0 -[1,86:36135244,52029077:25952256,1703936,0 -(1,86:36135244,51504789:25952256,1179648,0 -(1,86:36135244,51504789:16384,1179648,0 -r109,173:36151628,51504789:16384,1179648,0 +[105,173:3078558,4812305:0,0,0 +(105,173:3078558,49800853:0,16384,2228224 +g105,173:29030814,49800853 +g105,173:36135244,49800853 +(1,92:36135244,49800853:1720320,16384,2228224 +(1,92:36135244,52029077:16384,1703936,0 +[1,92:36135244,52029077:25952256,1703936,0 +(1,92:36135244,51504789:25952256,1179648,0 +(1,92:36135244,51504789:16384,1179648,0 +r105,173:36151628,51504789:16384,1179648,0 ) -k1,86:62087500,51504789:25935872 -g1,86:62087500,51504789 +k1,92:62087500,51504789:25935872 +g1,92:62087500,51504789 ) ] ) -g1,86:36675916,49800853 -(1,86:36675916,49800853:1179648,16384,0 -r109,173:37855564,49800853:1179648,16384,0 +g1,92:36675916,49800853 +(1,92:36675916,49800853:1179648,16384,0 +r105,173:37855564,49800853:1179648,16384,0 ) ) -k109,173:3078556,49800853:-34777008 +k105,173:3078556,49800853:-34777008 ) ] -g109,173:6630773,4812305 -k109,173:29827895,4812305:22236364 +g105,173:6630773,4812305 +k105,173:29827895,4812305:22236364 ) ) ] -[109,173:6630773,45706769:25952256,40108032,0 -(109,173:6630773,45706769:25952256,40108032,0 -(109,173:6630773,45706769:0,0,0 -g109,173:6630773,45706769 +[105,173:6630773,45706769:25952256,40108032,0 +(105,173:6630773,45706769:25952256,40108032,0 +(105,173:6630773,45706769:0,0,0 +g105,173:6630773,45706769 ) -[109,173:6630773,45706769:25952256,40108032,0 -(109,79:6630773,6254097:25952256,513147,134348 -g109,79:11218293,6254097 -h109,79:11218293,6254097:2490370,0,0 -h109,79:13708663,6254097:0,0,0 -g109,79:9121143,6254097 -(109,79:9121143,6254097:2097150,485622,0 -k109,79:11218293,6254097:155974 +[105,173:6630773,45706769:25952256,40108032,0 +(105,79:6630773,6254097:25952256,513147,134348 +g105,79:11218293,6254097 +h105,79:11218293,6254097:2490370,0,0 +h105,79:13708663,6254097:0,0,0 +g105,79:9121143,6254097 +(105,79:9121143,6254097:2097150,485622,0 +k105,79:11218293,6254097:155974 ) -g109,79:14586188,6254097 -g109,79:16795406,6254097 -g109,79:18383998,6254097 -g109,79:20590595,6254097 -(109,79:20669357,6254097:501378,78643,0 -$109,79:20669357,6254097 -(109,79:20833211,6254097:173670,78643,0 +g105,79:14586188,6254097 +g105,79:16795406,6254097 +g105,79:18383998,6254097 +g105,79:20590595,6254097 +(105,79:20669357,6254097:501378,78643,0 +$105,79:20669357,6254097 +(105,79:20833211,6254097:173670,78643,0 ) -$109,79:21170735,6254097 +$105,79:21170735,6254097 ) -(109,79:21170735,6254097:501378,78643,0 -(109,79:21334589,6254097:173670,78643,0 +(105,79:21170735,6254097:501378,78643,0 +(105,79:21334589,6254097:173670,78643,0 ) ) -(109,79:21672113,6254097:501378,78643,0 -(109,79:21835967,6254097:173670,78643,0 +(105,79:21672113,6254097:501378,78643,0 +(105,79:21835967,6254097:173670,78643,0 ) ) -(109,79:22173491,6254097:501378,78643,0 -(109,79:22337345,6254097:173670,78643,0 +(105,79:22173491,6254097:501378,78643,0 +(105,79:22337345,6254097:173670,78643,0 ) ) -(109,79:22674869,6254097:501378,78643,0 -(109,79:22838723,6254097:173670,78643,0 +(105,79:22674869,6254097:501378,78643,0 +(105,79:22838723,6254097:173670,78643,0 ) ) -(109,79:23176247,6254097:501378,78643,0 -(109,79:23340101,6254097:173670,78643,0 +(105,79:23176247,6254097:501378,78643,0 +(105,79:23340101,6254097:173670,78643,0 ) ) -(109,79:23677625,6254097:501378,78643,0 -(109,79:23841479,6254097:173670,78643,0 +(105,79:23677625,6254097:501378,78643,0 +(105,79:23841479,6254097:173670,78643,0 ) ) -(109,79:24179003,6254097:501378,78643,0 -(109,79:24342857,6254097:173670,78643,0 +(105,79:24179003,6254097:501378,78643,0 +(105,79:24342857,6254097:173670,78643,0 ) ) -(109,79:24680381,6254097:501378,78643,0 -(109,79:24844235,6254097:173670,78643,0 +(105,79:24680381,6254097:501378,78643,0 +(105,79:24844235,6254097:173670,78643,0 ) ) -(109,79:25181759,6254097:501378,78643,0 -(109,79:25345613,6254097:173670,78643,0 +(105,79:25181759,6254097:501378,78643,0 +(105,79:25345613,6254097:173670,78643,0 ) ) -(109,79:25683137,6254097:501378,78643,0 -(109,79:25846991,6254097:173670,78643,0 +(105,79:25683137,6254097:501378,78643,0 +(105,79:25846991,6254097:173670,78643,0 ) ) -(109,79:26184515,6254097:501378,78643,0 -(109,79:26348369,6254097:173670,78643,0 +(105,79:26184515,6254097:501378,78643,0 +(105,79:26348369,6254097:173670,78643,0 ) ) -(109,79:26685893,6254097:501378,78643,0 -(109,79:26849747,6254097:173670,78643,0 +(105,79:26685893,6254097:501378,78643,0 +(105,79:26849747,6254097:173670,78643,0 ) ) -(109,79:27187271,6254097:501378,78643,0 -(109,79:27351125,6254097:173670,78643,0 +(105,79:27187271,6254097:501378,78643,0 +(105,79:27351125,6254097:173670,78643,0 ) ) -(109,79:27688649,6254097:501378,78643,0 -(109,79:27852503,6254097:173670,78643,0 +(105,79:27688649,6254097:501378,78643,0 +(105,79:27852503,6254097:173670,78643,0 ) ) -(109,79:28190027,6254097:501378,78643,0 -(109,79:28353881,6254097:173670,78643,0 +(105,79:28190027,6254097:501378,78643,0 +(105,79:28353881,6254097:173670,78643,0 ) ) -(109,79:28691405,6254097:501378,78643,0 -(109,79:28855259,6254097:173670,78643,0 +(105,79:28691405,6254097:501378,78643,0 +(105,79:28855259,6254097:173670,78643,0 ) ) -(109,79:29192783,6254097:501378,78643,0 -(109,79:29356637,6254097:173670,78643,0 +(105,79:29192783,6254097:501378,78643,0 +(105,79:29356637,6254097:173670,78643,0 ) ) -(109,79:29694161,6254097:501378,78643,0 -(109,79:29858015,6254097:173670,78643,0 +(105,79:29694161,6254097:501378,78643,0 +(105,79:29858015,6254097:173670,78643,0 ) ) -(109,79:30195539,6254097:501378,78643,0 -(109,79:30359393,6254097:173670,78643,0 +(105,79:30195539,6254097:501378,78643,0 +(105,79:30359393,6254097:173670,78643,0 ) ) -(109,79:30696917,6254097:501378,78643,0 -(109,79:30860771,6254097:173670,78643,0 +(105,79:30696917,6254097:501378,78643,0 +(105,79:30860771,6254097:173670,78643,0 ) ) -(109,79:31403379,6254097:1179650,477757,0 -k109,79:31586882,6254097:183503 -g109,79:31786111,6254097 +(105,79:31239539,6254097:1343490,477757,0 +k105,79:31586882,6254097:347343 +g105,79:31786111,6254097 ) -g109,79:30911859,6254097 -g109,79:32583029,6254097 +g105,79:30911859,6254097 +g105,79:32583029,6254097 ) -(109,81:6630773,7095585:25952256,505283,134348 -g109,81:11218293,7095585 -h109,81:11218293,7095585:2490370,0,0 -h109,81:13708663,7095585:0,0,0 -g109,81:9121143,7095585 -(109,81:9121143,7095585:2097150,485622,0 -k109,81:11218293,7095585:155974 +(105,81:6630773,7095585:25952256,505283,134348 +g105,81:11218293,7095585 +h105,81:11218293,7095585:2490370,0,0 +h105,81:13708663,7095585:0,0,0 +g105,81:9121143,7095585 +(105,81:9121143,7095585:2097150,485622,0 +k105,81:11218293,7095585:155974 ) -g109,81:15490585,7095585 -g109,81:18403005,7095585 -g109,81:19793679,7095585 -g109,81:21327877,7095585 -(109,81:21672113,7095585:501378,78643,0 -$109,81:21672113,7095585 -(109,81:21835967,7095585:173670,78643,0 +g105,81:15490585,7095585 +g105,81:18403005,7095585 +g105,81:19793679,7095585 +g105,81:21327877,7095585 +(105,81:21672113,7095585:501378,78643,0 +$105,81:21672113,7095585 +(105,81:21835967,7095585:173670,78643,0 ) -$109,81:22173491,7095585 +$105,81:22173491,7095585 ) -(109,81:22173491,7095585:501378,78643,0 -(109,81:22337345,7095585:173670,78643,0 +(105,81:22173491,7095585:501378,78643,0 +(105,81:22337345,7095585:173670,78643,0 ) ) -(109,81:22674869,7095585:501378,78643,0 -(109,81:22838723,7095585:173670,78643,0 +(105,81:22674869,7095585:501378,78643,0 +(105,81:22838723,7095585:173670,78643,0 ) ) -(109,81:23176247,7095585:501378,78643,0 -(109,81:23340101,7095585:173670,78643,0 +(105,81:23176247,7095585:501378,78643,0 +(105,81:23340101,7095585:173670,78643,0 ) ) -(109,81:23677625,7095585:501378,78643,0 -(109,81:23841479,7095585:173670,78643,0 +(105,81:23677625,7095585:501378,78643,0 +(105,81:23841479,7095585:173670,78643,0 ) ) -(109,81:24179003,7095585:501378,78643,0 -(109,81:24342857,7095585:173670,78643,0 +(105,81:24179003,7095585:501378,78643,0 +(105,81:24342857,7095585:173670,78643,0 ) ) -(109,81:24680381,7095585:501378,78643,0 -(109,81:24844235,7095585:173670,78643,0 +(105,81:24680381,7095585:501378,78643,0 +(105,81:24844235,7095585:173670,78643,0 ) ) -(109,81:25181759,7095585:501378,78643,0 -(109,81:25345613,7095585:173670,78643,0 +(105,81:25181759,7095585:501378,78643,0 +(105,81:25345613,7095585:173670,78643,0 ) ) -(109,81:25683137,7095585:501378,78643,0 -(109,81:25846991,7095585:173670,78643,0 +(105,81:25683137,7095585:501378,78643,0 +(105,81:25846991,7095585:173670,78643,0 ) ) -(109,81:26184515,7095585:501378,78643,0 -(109,81:26348369,7095585:173670,78643,0 +(105,81:26184515,7095585:501378,78643,0 +(105,81:26348369,7095585:173670,78643,0 ) ) -(109,81:26685893,7095585:501378,78643,0 -(109,81:26849747,7095585:173670,78643,0 +(105,81:26685893,7095585:501378,78643,0 +(105,81:26849747,7095585:173670,78643,0 ) ) -(109,81:27187271,7095585:501378,78643,0 -(109,81:27351125,7095585:173670,78643,0 +(105,81:27187271,7095585:501378,78643,0 +(105,81:27351125,7095585:173670,78643,0 ) ) -(109,81:27688649,7095585:501378,78643,0 -(109,81:27852503,7095585:173670,78643,0 +(105,81:27688649,7095585:501378,78643,0 +(105,81:27852503,7095585:173670,78643,0 ) ) -(109,81:28190027,7095585:501378,78643,0 -(109,81:28353881,7095585:173670,78643,0 +(105,81:28190027,7095585:501378,78643,0 +(105,81:28353881,7095585:173670,78643,0 ) ) -(109,81:28691405,7095585:501378,78643,0 -(109,81:28855259,7095585:173670,78643,0 +(105,81:28691405,7095585:501378,78643,0 +(105,81:28855259,7095585:173670,78643,0 ) ) -(109,81:29192783,7095585:501378,78643,0 -(109,81:29356637,7095585:173670,78643,0 +(105,81:29192783,7095585:501378,78643,0 +(105,81:29356637,7095585:173670,78643,0 ) ) -(109,81:29694161,7095585:501378,78643,0 -(109,81:29858015,7095585:173670,78643,0 +(105,81:29694161,7095585:501378,78643,0 +(105,81:29858015,7095585:173670,78643,0 ) ) -(109,81:30195539,7095585:501378,78643,0 -(109,81:30359393,7095585:173670,78643,0 +(105,81:30195539,7095585:501378,78643,0 +(105,81:30359393,7095585:173670,78643,0 ) ) -(109,81:30696917,7095585:501378,78643,0 -(109,81:30860771,7095585:173670,78643,0 +(105,81:30696917,7095585:501378,78643,0 +(105,81:30860771,7095585:173670,78643,0 ) ) -(109,81:31403379,7095585:1179650,473825,11795 -k109,81:31586882,7095585:183503 -g109,81:31786111,7095585 +(105,81:31239539,7095585:1343490,473825,11795 +k105,81:31586882,7095585:347343 +g105,81:31786111,7095585 ) -g109,81:30911859,7095585 -g109,81:32583029,7095585 +g105,81:30911859,7095585 +g105,81:32583029,7095585 ) -(109,83:6630773,7937073:25952256,513147,134348 -g109,83:9121143,7937073 -h109,83:9121143,7937073:983040,0,0 -h109,83:10104183,7937073:0,0,0 -g109,83:7613813,7937073 -(109,83:7613813,7937073:1507330,485622,11795 -k109,83:9121143,7937073:138283 +(105,83:6630773,7937073:25952256,513147,134348 +g105,83:9121143,7937073 +h105,83:9121143,7937073:983040,0,0 +h105,83:10104183,7937073:0,0,0 +g105,83:7613813,7937073 +(105,83:7613813,7937073:1507330,485622,11795 +k105,83:9121143,7937073:138283 ) -g109,83:12561127,7937073 -g109,83:13419648,7937073 -g109,83:14063866,7937073 -g109,83:16552923,7937073 -g109,83:16552923,7937073 -(109,83:16658333,7937073:501378,78643,0 -$109,83:16658333,7937073 -(109,83:16822187,7937073:173670,78643,0 +g105,83:12561127,7937073 +g105,83:13419648,7937073 +g105,83:14063866,7937073 +g105,83:16552923,7937073 +g105,83:16552923,7937073 +(105,83:16658333,7937073:501378,78643,0 +$105,83:16658333,7937073 +(105,83:16822187,7937073:173670,78643,0 ) -$109,83:17159711,7937073 +$105,83:17159711,7937073 ) -(109,83:17159711,7937073:501378,78643,0 -(109,83:17323565,7937073:173670,78643,0 +(105,83:17159711,7937073:501378,78643,0 +(105,83:17323565,7937073:173670,78643,0 ) ) -(109,83:17661089,7937073:501378,78643,0 -(109,83:17824943,7937073:173670,78643,0 +(105,83:17661089,7937073:501378,78643,0 +(105,83:17824943,7937073:173670,78643,0 ) ) -(109,83:18162467,7937073:501378,78643,0 -(109,83:18326321,7937073:173670,78643,0 +(105,83:18162467,7937073:501378,78643,0 +(105,83:18326321,7937073:173670,78643,0 ) ) -(109,83:18663845,7937073:501378,78643,0 -(109,83:18827699,7937073:173670,78643,0 +(105,83:18663845,7937073:501378,78643,0 +(105,83:18827699,7937073:173670,78643,0 ) ) -(109,83:19165223,7937073:501378,78643,0 -(109,83:19329077,7937073:173670,78643,0 +(105,83:19165223,7937073:501378,78643,0 +(105,83:19329077,7937073:173670,78643,0 ) ) -(109,83:19666601,7937073:501378,78643,0 -(109,83:19830455,7937073:173670,78643,0 +(105,83:19666601,7937073:501378,78643,0 +(105,83:19830455,7937073:173670,78643,0 ) ) -(109,83:20167979,7937073:501378,78643,0 -(109,83:20331833,7937073:173670,78643,0 +(105,83:20167979,7937073:501378,78643,0 +(105,83:20331833,7937073:173670,78643,0 ) ) -(109,83:20669357,7937073:501378,78643,0 -(109,83:20833211,7937073:173670,78643,0 +(105,83:20669357,7937073:501378,78643,0 +(105,83:20833211,7937073:173670,78643,0 ) ) -(109,83:21170735,7937073:501378,78643,0 -(109,83:21334589,7937073:173670,78643,0 +(105,83:21170735,7937073:501378,78643,0 +(105,83:21334589,7937073:173670,78643,0 ) ) -(109,83:21672113,7937073:501378,78643,0 -(109,83:21835967,7937073:173670,78643,0 +(105,83:21672113,7937073:501378,78643,0 +(105,83:21835967,7937073:173670,78643,0 ) ) -(109,83:22173491,7937073:501378,78643,0 -(109,83:22337345,7937073:173670,78643,0 +(105,83:22173491,7937073:501378,78643,0 +(105,83:22337345,7937073:173670,78643,0 ) ) -(109,83:22674869,7937073:501378,78643,0 -(109,83:22838723,7937073:173670,78643,0 +(105,83:22674869,7937073:501378,78643,0 +(105,83:22838723,7937073:173670,78643,0 ) ) -(109,83:23176247,7937073:501378,78643,0 -(109,83:23340101,7937073:173670,78643,0 +(105,83:23176247,7937073:501378,78643,0 +(105,83:23340101,7937073:173670,78643,0 ) ) -(109,83:23677625,7937073:501378,78643,0 -(109,83:23841479,7937073:173670,78643,0 +(105,83:23677625,7937073:501378,78643,0 +(105,83:23841479,7937073:173670,78643,0 ) ) -(109,83:24179003,7937073:501378,78643,0 -(109,83:24342857,7937073:173670,78643,0 +(105,83:24179003,7937073:501378,78643,0 +(105,83:24342857,7937073:173670,78643,0 ) ) -(109,83:24680381,7937073:501378,78643,0 -(109,83:24844235,7937073:173670,78643,0 +(105,83:24680381,7937073:501378,78643,0 +(105,83:24844235,7937073:173670,78643,0 ) ) -(109,83:25181759,7937073:501378,78643,0 -(109,83:25345613,7937073:173670,78643,0 +(105,83:25181759,7937073:501378,78643,0 +(105,83:25345613,7937073:173670,78643,0 ) ) -(109,83:25683137,7937073:501378,78643,0 -(109,83:25846991,7937073:173670,78643,0 +(105,83:25683137,7937073:501378,78643,0 +(105,83:25846991,7937073:173670,78643,0 ) ) -(109,83:26184515,7937073:501378,78643,0 -(109,83:26348369,7937073:173670,78643,0 +(105,83:26184515,7937073:501378,78643,0 +(105,83:26348369,7937073:173670,78643,0 ) ) -(109,83:26685893,7937073:501378,78643,0 -(109,83:26849747,7937073:173670,78643,0 +(105,83:26685893,7937073:501378,78643,0 +(105,83:26849747,7937073:173670,78643,0 ) ) -(109,83:27187271,7937073:501378,78643,0 -(109,83:27351125,7937073:173670,78643,0 +(105,83:27187271,7937073:501378,78643,0 +(105,83:27351125,7937073:173670,78643,0 ) ) -(109,83:27688649,7937073:501378,78643,0 -(109,83:27852503,7937073:173670,78643,0 +(105,83:27688649,7937073:501378,78643,0 +(105,83:27852503,7937073:173670,78643,0 ) ) -(109,83:28190027,7937073:501378,78643,0 -(109,83:28353881,7937073:173670,78643,0 +(105,83:28190027,7937073:501378,78643,0 +(105,83:28353881,7937073:173670,78643,0 ) ) -(109,83:28691405,7937073:501378,78643,0 -(109,83:28855259,7937073:173670,78643,0 +(105,83:28691405,7937073:501378,78643,0 +(105,83:28855259,7937073:173670,78643,0 ) ) -(109,83:29192783,7937073:501378,78643,0 -(109,83:29356637,7937073:173670,78643,0 +(105,83:29192783,7937073:501378,78643,0 +(105,83:29356637,7937073:173670,78643,0 ) ) -(109,83:29694161,7937073:501378,78643,0 -(109,83:29858015,7937073:173670,78643,0 +(105,83:29694161,7937073:501378,78643,0 +(105,83:29858015,7937073:173670,78643,0 ) ) -(109,83:30195539,7937073:501378,78643,0 -(109,83:30359393,7937073:173670,78643,0 +(105,83:30195539,7937073:501378,78643,0 +(105,83:30359393,7937073:173670,78643,0 ) ) -(109,83:30696917,7937073:501378,78643,0 -(109,83:30860771,7937073:173670,78643,0 +(105,83:30696917,7937073:501378,78643,0 +(105,83:30860771,7937073:173670,78643,0 ) ) -(109,83:31403379,7937073:1179650,473825,0 -k109,83:31586882,7937073:183503 -g109,83:31786111,7937073 +(105,83:31239539,7937073:1343490,473825,0 +k105,83:31586882,7937073:347343 +g105,83:31786111,7937073 ) -g109,83:30911859,7937073 -g109,83:32583029,7937073 +g105,83:30911859,7937073 +g105,83:32583029,7937073 ) -(109,85:6630773,8778561:25952256,505283,134348 -g109,85:9121143,8778561 -h109,85:9121143,8778561:983040,0,0 -h109,85:10104183,8778561:0,0,0 -g109,85:7613813,8778561 -(109,85:7613813,8778561:1507330,485622,11795 -k109,85:9121143,8778561:138283 +(105,85:6630773,8778561:25952256,505283,134348 +g105,85:9121143,8778561 +h105,85:9121143,8778561:983040,0,0 +h105,85:10104183,8778561:0,0,0 +g105,85:7613813,8778561 +(105,85:7613813,8778561:1507330,485622,11795 +k105,85:9121143,8778561:138283 ) -g109,85:11378858,8778561 -g109,85:12769532,8778561 -g109,85:15335266,8778561 -g109,85:16923858,8778561 -g109,85:16923858,8778561 -(109,85:17159711,8778561:501378,78643,0 -$109,85:17159711,8778561 -(109,85:17323565,8778561:173670,78643,0 +g105,85:11378858,8778561 +g105,85:12769532,8778561 +g105,85:15335266,8778561 +g105,85:16923858,8778561 +g105,85:16923858,8778561 +(105,85:17159711,8778561:501378,78643,0 +$105,85:17159711,8778561 +(105,85:17323565,8778561:173670,78643,0 ) -$109,85:17661089,8778561 +$105,85:17661089,8778561 ) -(109,85:17661089,8778561:501378,78643,0 -(109,85:17824943,8778561:173670,78643,0 +(105,85:17661089,8778561:501378,78643,0 +(105,85:17824943,8778561:173670,78643,0 ) ) -(109,85:18162467,8778561:501378,78643,0 -(109,85:18326321,8778561:173670,78643,0 +(105,85:18162467,8778561:501378,78643,0 +(105,85:18326321,8778561:173670,78643,0 ) ) -(109,85:18663845,8778561:501378,78643,0 -(109,85:18827699,8778561:173670,78643,0 +(105,85:18663845,8778561:501378,78643,0 +(105,85:18827699,8778561:173670,78643,0 ) ) -(109,85:19165223,8778561:501378,78643,0 -(109,85:19329077,8778561:173670,78643,0 +(105,85:19165223,8778561:501378,78643,0 +(105,85:19329077,8778561:173670,78643,0 ) ) -(109,85:19666601,8778561:501378,78643,0 -(109,85:19830455,8778561:173670,78643,0 +(105,85:19666601,8778561:501378,78643,0 +(105,85:19830455,8778561:173670,78643,0 ) ) -(109,85:20167979,8778561:501378,78643,0 -(109,85:20331833,8778561:173670,78643,0 +(105,85:20167979,8778561:501378,78643,0 +(105,85:20331833,8778561:173670,78643,0 ) ) -(109,85:20669357,8778561:501378,78643,0 -(109,85:20833211,8778561:173670,78643,0 +(105,85:20669357,8778561:501378,78643,0 +(105,85:20833211,8778561:173670,78643,0 ) ) -(109,85:21170735,8778561:501378,78643,0 -(109,85:21334589,8778561:173670,78643,0 +(105,85:21170735,8778561:501378,78643,0 +(105,85:21334589,8778561:173670,78643,0 ) ) -(109,85:21672113,8778561:501378,78643,0 -(109,85:21835967,8778561:173670,78643,0 +(105,85:21672113,8778561:501378,78643,0 +(105,85:21835967,8778561:173670,78643,0 ) ) -(109,85:22173491,8778561:501378,78643,0 -(109,85:22337345,8778561:173670,78643,0 +(105,85:22173491,8778561:501378,78643,0 +(105,85:22337345,8778561:173670,78643,0 ) ) -(109,85:22674869,8778561:501378,78643,0 -(109,85:22838723,8778561:173670,78643,0 +(105,85:22674869,8778561:501378,78643,0 +(105,85:22838723,8778561:173670,78643,0 ) ) -(109,85:23176247,8778561:501378,78643,0 -(109,85:23340101,8778561:173670,78643,0 +(105,85:23176247,8778561:501378,78643,0 +(105,85:23340101,8778561:173670,78643,0 ) ) -(109,85:23677625,8778561:501378,78643,0 -(109,85:23841479,8778561:173670,78643,0 +(105,85:23677625,8778561:501378,78643,0 +(105,85:23841479,8778561:173670,78643,0 ) ) -(109,85:24179003,8778561:501378,78643,0 -(109,85:24342857,8778561:173670,78643,0 +(105,85:24179003,8778561:501378,78643,0 +(105,85:24342857,8778561:173670,78643,0 ) ) -(109,85:24680381,8778561:501378,78643,0 -(109,85:24844235,8778561:173670,78643,0 +(105,85:24680381,8778561:501378,78643,0 +(105,85:24844235,8778561:173670,78643,0 ) ) -(109,85:25181759,8778561:501378,78643,0 -(109,85:25345613,8778561:173670,78643,0 +(105,85:25181759,8778561:501378,78643,0 +(105,85:25345613,8778561:173670,78643,0 ) ) -(109,85:25683137,8778561:501378,78643,0 -(109,85:25846991,8778561:173670,78643,0 +(105,85:25683137,8778561:501378,78643,0 +(105,85:25846991,8778561:173670,78643,0 ) ) -(109,85:26184515,8778561:501378,78643,0 -(109,85:26348369,8778561:173670,78643,0 +(105,85:26184515,8778561:501378,78643,0 +(105,85:26348369,8778561:173670,78643,0 ) ) -(109,85:26685893,8778561:501378,78643,0 -(109,85:26849747,8778561:173670,78643,0 +(105,85:26685893,8778561:501378,78643,0 +(105,85:26849747,8778561:173670,78643,0 ) ) -(109,85:27187271,8778561:501378,78643,0 -(109,85:27351125,8778561:173670,78643,0 +(105,85:27187271,8778561:501378,78643,0 +(105,85:27351125,8778561:173670,78643,0 ) ) -(109,85:27688649,8778561:501378,78643,0 -(109,85:27852503,8778561:173670,78643,0 +(105,85:27688649,8778561:501378,78643,0 +(105,85:27852503,8778561:173670,78643,0 ) ) -(109,85:28190027,8778561:501378,78643,0 -(109,85:28353881,8778561:173670,78643,0 +(105,85:28190027,8778561:501378,78643,0 +(105,85:28353881,8778561:173670,78643,0 ) ) -(109,85:28691405,8778561:501378,78643,0 -(109,85:28855259,8778561:173670,78643,0 +(105,85:28691405,8778561:501378,78643,0 +(105,85:28855259,8778561:173670,78643,0 ) ) -(109,85:29192783,8778561:501378,78643,0 -(109,85:29356637,8778561:173670,78643,0 +(105,85:29192783,8778561:501378,78643,0 +(105,85:29356637,8778561:173670,78643,0 ) ) -(109,85:29694161,8778561:501378,78643,0 -(109,85:29858015,8778561:173670,78643,0 +(105,85:29694161,8778561:501378,78643,0 +(105,85:29858015,8778561:173670,78643,0 ) ) -(109,85:30195539,8778561:501378,78643,0 -(109,85:30359393,8778561:173670,78643,0 +(105,85:30195539,8778561:501378,78643,0 +(105,85:30359393,8778561:173670,78643,0 ) ) -(109,85:30696917,8778561:501378,78643,0 -(109,85:30860771,8778561:173670,78643,0 +(105,85:30696917,8778561:501378,78643,0 +(105,85:30860771,8778561:173670,78643,0 ) ) -(109,85:31403379,8778561:1179650,485622,11795 -k109,85:31586882,8778561:183503 -g109,85:31786111,8778561 +(105,85:31239539,8778561:1343490,485622,11795 +k105,85:31586882,8778561:347343 +g105,85:31786111,8778561 ) -g109,85:30911859,8778561 -g109,85:32583029,8778561 +g105,85:30911859,8778561 +g105,85:32583029,8778561 ) -(109,87:6630773,9620049:25952256,505283,134348 -g109,87:11218293,9620049 -h109,87:11218293,9620049:2490370,0,0 -h109,87:13708663,9620049:0,0,0 -g109,87:9121143,9620049 -(109,87:9121143,9620049:2097150,485622,11795 -k109,87:11218293,9620049:155974 +(105,87:6630773,9620049:25952256,505283,134348 +g105,87:11218293,9620049 +h105,87:11218293,9620049:2490370,0,0 +h105,87:13708663,9620049:0,0,0 +g105,87:9121143,9620049 +(105,87:9121143,9620049:2097150,485622,11795 +k105,87:11218293,9620049:155974 ) -g109,87:12889461,9620049 -g109,87:14353535,9620049 -g109,87:15168802,9620049 -g109,87:15813020,9620049 -g109,87:17203694,9620049 -g109,87:20114148,9620049 -(109,87:20167979,9620049:501378,78643,0 -$109,87:20167979,9620049 -(109,87:20331833,9620049:173670,78643,0 +g105,87:12889461,9620049 +g105,87:14353535,9620049 +g105,87:15168802,9620049 +g105,87:15813020,9620049 +g105,87:17203694,9620049 +g105,87:20114148,9620049 +(105,87:20167979,9620049:501378,78643,0 +$105,87:20167979,9620049 +(105,87:20331833,9620049:173670,78643,0 ) -$109,87:20669357,9620049 +$105,87:20669357,9620049 ) -(109,87:20669357,9620049:501378,78643,0 -(109,87:20833211,9620049:173670,78643,0 +(105,87:20669357,9620049:501378,78643,0 +(105,87:20833211,9620049:173670,78643,0 ) ) -(109,87:21170735,9620049:501378,78643,0 -(109,87:21334589,9620049:173670,78643,0 +(105,87:21170735,9620049:501378,78643,0 +(105,87:21334589,9620049:173670,78643,0 ) ) -(109,87:21672113,9620049:501378,78643,0 -(109,87:21835967,9620049:173670,78643,0 +(105,87:21672113,9620049:501378,78643,0 +(105,87:21835967,9620049:173670,78643,0 ) ) -(109,87:22173491,9620049:501378,78643,0 -(109,87:22337345,9620049:173670,78643,0 +(105,87:22173491,9620049:501378,78643,0 +(105,87:22337345,9620049:173670,78643,0 ) ) -(109,87:22674869,9620049:501378,78643,0 -(109,87:22838723,9620049:173670,78643,0 +(105,87:22674869,9620049:501378,78643,0 +(105,87:22838723,9620049:173670,78643,0 ) ) -(109,87:23176247,9620049:501378,78643,0 -(109,87:23340101,9620049:173670,78643,0 +(105,87:23176247,9620049:501378,78643,0 +(105,87:23340101,9620049:173670,78643,0 ) ) -(109,87:23677625,9620049:501378,78643,0 -(109,87:23841479,9620049:173670,78643,0 +(105,87:23677625,9620049:501378,78643,0 +(105,87:23841479,9620049:173670,78643,0 ) ) -(109,87:24179003,9620049:501378,78643,0 -(109,87:24342857,9620049:173670,78643,0 +(105,87:24179003,9620049:501378,78643,0 +(105,87:24342857,9620049:173670,78643,0 ) ) -(109,87:24680381,9620049:501378,78643,0 -(109,87:24844235,9620049:173670,78643,0 +(105,87:24680381,9620049:501378,78643,0 +(105,87:24844235,9620049:173670,78643,0 ) ) -(109,87:25181759,9620049:501378,78643,0 -(109,87:25345613,9620049:173670,78643,0 +(105,87:25181759,9620049:501378,78643,0 +(105,87:25345613,9620049:173670,78643,0 ) ) -(109,87:25683137,9620049:501378,78643,0 -(109,87:25846991,9620049:173670,78643,0 +(105,87:25683137,9620049:501378,78643,0 +(105,87:25846991,9620049:173670,78643,0 ) ) -(109,87:26184515,9620049:501378,78643,0 -(109,87:26348369,9620049:173670,78643,0 +(105,87:26184515,9620049:501378,78643,0 +(105,87:26348369,9620049:173670,78643,0 ) ) -(109,87:26685893,9620049:501378,78643,0 -(109,87:26849747,9620049:173670,78643,0 +(105,87:26685893,9620049:501378,78643,0 +(105,87:26849747,9620049:173670,78643,0 ) ) -(109,87:27187271,9620049:501378,78643,0 -(109,87:27351125,9620049:173670,78643,0 +(105,87:27187271,9620049:501378,78643,0 +(105,87:27351125,9620049:173670,78643,0 ) ) -(109,87:27688649,9620049:501378,78643,0 -(109,87:27852503,9620049:173670,78643,0 +(105,87:27688649,9620049:501378,78643,0 +(105,87:27852503,9620049:173670,78643,0 ) ) -(109,87:28190027,9620049:501378,78643,0 -(109,87:28353881,9620049:173670,78643,0 +(105,87:28190027,9620049:501378,78643,0 +(105,87:28353881,9620049:173670,78643,0 ) ) -(109,87:28691405,9620049:501378,78643,0 -(109,87:28855259,9620049:173670,78643,0 +(105,87:28691405,9620049:501378,78643,0 +(105,87:28855259,9620049:173670,78643,0 ) ) -(109,87:29192783,9620049:501378,78643,0 -(109,87:29356637,9620049:173670,78643,0 +(105,87:29192783,9620049:501378,78643,0 +(105,87:29356637,9620049:173670,78643,0 ) ) -(109,87:29694161,9620049:501378,78643,0 -(109,87:29858015,9620049:173670,78643,0 +(105,87:29694161,9620049:501378,78643,0 +(105,87:29858015,9620049:173670,78643,0 ) ) -(109,87:30195539,9620049:501378,78643,0 -(109,87:30359393,9620049:173670,78643,0 +(105,87:30195539,9620049:501378,78643,0 +(105,87:30359393,9620049:173670,78643,0 ) ) -(109,87:30696917,9620049:501378,78643,0 -(109,87:30860771,9620049:173670,78643,0 +(105,87:30696917,9620049:501378,78643,0 +(105,87:30860771,9620049:173670,78643,0 ) ) -(109,87:31403379,9620049:1179650,485622,11795 -k109,87:31586882,9620049:183503 -g109,87:31786111,9620049 +(105,87:31239539,9620049:1343490,485622,11795 +k105,87:31586882,9620049:347343 +g105,87:31786111,9620049 ) -g109,87:30911859,9620049 -g109,87:32583029,9620049 +g105,87:30911859,9620049 +g105,87:32583029,9620049 ) -(109,89:6630773,10461537:25952256,513147,11795 -g109,89:11218293,10461537 -h109,89:11218293,10461537:2490370,0,0 -h109,89:13708663,10461537:0,0,0 -g109,89:9121143,10461537 -(109,89:9121143,10461537:2097150,485622,11795 -k109,89:11218293,10461537:155974 +(105,89:6630773,10461537:25952256,513147,11795 +g105,89:11218293,10461537 +h105,89:11218293,10461537:2490370,0,0 +h105,89:13708663,10461537:0,0,0 +g105,89:9121143,10461537 +(105,89:9121143,10461537:2097150,485622,11795 +k105,89:11218293,10461537:155974 ) -g109,89:12656152,10461537 -g109,89:13969494,10461537 -(109,89:14151443,10461537:501378,78643,0 -$109,89:14151443,10461537 -(109,89:14315297,10461537:173670,78643,0 +g105,89:12656152,10461537 +g105,89:13969494,10461537 +(105,89:14151443,10461537:501378,78643,0 +$105,89:14151443,10461537 +(105,89:14315297,10461537:173670,78643,0 ) -$109,89:14652821,10461537 +$105,89:14652821,10461537 ) -(109,89:14652821,10461537:501378,78643,0 -(109,89:14816675,10461537:173670,78643,0 +(105,89:14652821,10461537:501378,78643,0 +(105,89:14816675,10461537:173670,78643,0 ) ) -(109,89:15154199,10461537:501378,78643,0 -(109,89:15318053,10461537:173670,78643,0 +(105,89:15154199,10461537:501378,78643,0 +(105,89:15318053,10461537:173670,78643,0 ) ) -(109,89:15655577,10461537:501378,78643,0 -(109,89:15819431,10461537:173670,78643,0 +(105,89:15655577,10461537:501378,78643,0 +(105,89:15819431,10461537:173670,78643,0 ) ) -(109,89:16156955,10461537:501378,78643,0 -(109,89:16320809,10461537:173670,78643,0 +(105,89:16156955,10461537:501378,78643,0 +(105,89:16320809,10461537:173670,78643,0 ) ) -(109,89:16658333,10461537:501378,78643,0 -(109,89:16822187,10461537:173670,78643,0 +(105,89:16658333,10461537:501378,78643,0 +(105,89:16822187,10461537:173670,78643,0 ) ) -(109,89:17159711,10461537:501378,78643,0 -(109,89:17323565,10461537:173670,78643,0 +(105,89:17159711,10461537:501378,78643,0 +(105,89:17323565,10461537:173670,78643,0 ) ) -(109,89:17661089,10461537:501378,78643,0 -(109,89:17824943,10461537:173670,78643,0 +(105,89:17661089,10461537:501378,78643,0 +(105,89:17824943,10461537:173670,78643,0 ) ) -(109,89:18162467,10461537:501378,78643,0 -(109,89:18326321,10461537:173670,78643,0 +(105,89:18162467,10461537:501378,78643,0 +(105,89:18326321,10461537:173670,78643,0 ) ) -(109,89:18663845,10461537:501378,78643,0 -(109,89:18827699,10461537:173670,78643,0 +(105,89:18663845,10461537:501378,78643,0 +(105,89:18827699,10461537:173670,78643,0 ) ) -(109,89:19165223,10461537:501378,78643,0 -(109,89:19329077,10461537:173670,78643,0 +(105,89:19165223,10461537:501378,78643,0 +(105,89:19329077,10461537:173670,78643,0 ) ) -(109,89:19666601,10461537:501378,78643,0 -(109,89:19830455,10461537:173670,78643,0 +(105,89:19666601,10461537:501378,78643,0 +(105,89:19830455,10461537:173670,78643,0 ) ) -(109,89:20167979,10461537:501378,78643,0 -(109,89:20331833,10461537:173670,78643,0 +(105,89:20167979,10461537:501378,78643,0 +(105,89:20331833,10461537:173670,78643,0 ) ) -(109,89:20669357,10461537:501378,78643,0 -(109,89:20833211,10461537:173670,78643,0 +(105,89:20669357,10461537:501378,78643,0 +(105,89:20833211,10461537:173670,78643,0 ) ) -(109,89:21170735,10461537:501378,78643,0 -(109,89:21334589,10461537:173670,78643,0 +(105,89:21170735,10461537:501378,78643,0 +(105,89:21334589,10461537:173670,78643,0 ) ) -(109,89:21672113,10461537:501378,78643,0 -(109,89:21835967,10461537:173670,78643,0 +(105,89:21672113,10461537:501378,78643,0 +(105,89:21835967,10461537:173670,78643,0 ) ) -(109,89:22173491,10461537:501378,78643,0 -(109,89:22337345,10461537:173670,78643,0 +(105,89:22173491,10461537:501378,78643,0 +(105,89:22337345,10461537:173670,78643,0 ) ) -(109,89:22674869,10461537:501378,78643,0 -(109,89:22838723,10461537:173670,78643,0 +(105,89:22674869,10461537:501378,78643,0 +(105,89:22838723,10461537:173670,78643,0 ) ) -(109,89:23176247,10461537:501378,78643,0 -(109,89:23340101,10461537:173670,78643,0 +(105,89:23176247,10461537:501378,78643,0 +(105,89:23340101,10461537:173670,78643,0 ) ) -(109,89:23677625,10461537:501378,78643,0 -(109,89:23841479,10461537:173670,78643,0 +(105,89:23677625,10461537:501378,78643,0 +(105,89:23841479,10461537:173670,78643,0 ) ) -(109,89:24179003,10461537:501378,78643,0 -(109,89:24342857,10461537:173670,78643,0 +(105,89:24179003,10461537:501378,78643,0 +(105,89:24342857,10461537:173670,78643,0 ) ) -(109,89:24680381,10461537:501378,78643,0 -(109,89:24844235,10461537:173670,78643,0 +(105,89:24680381,10461537:501378,78643,0 +(105,89:24844235,10461537:173670,78643,0 ) ) -(109,89:25181759,10461537:501378,78643,0 -(109,89:25345613,10461537:173670,78643,0 +(105,89:25181759,10461537:501378,78643,0 +(105,89:25345613,10461537:173670,78643,0 ) ) -(109,89:25683137,10461537:501378,78643,0 -(109,89:25846991,10461537:173670,78643,0 +(105,89:25683137,10461537:501378,78643,0 +(105,89:25846991,10461537:173670,78643,0 ) ) -(109,89:26184515,10461537:501378,78643,0 -(109,89:26348369,10461537:173670,78643,0 +(105,89:26184515,10461537:501378,78643,0 +(105,89:26348369,10461537:173670,78643,0 ) ) -(109,89:26685893,10461537:501378,78643,0 -(109,89:26849747,10461537:173670,78643,0 +(105,89:26685893,10461537:501378,78643,0 +(105,89:26849747,10461537:173670,78643,0 ) ) -(109,89:27187271,10461537:501378,78643,0 -(109,89:27351125,10461537:173670,78643,0 +(105,89:27187271,10461537:501378,78643,0 +(105,89:27351125,10461537:173670,78643,0 ) ) -(109,89:27688649,10461537:501378,78643,0 -(109,89:27852503,10461537:173670,78643,0 +(105,89:27688649,10461537:501378,78643,0 +(105,89:27852503,10461537:173670,78643,0 ) ) -(109,89:28190027,10461537:501378,78643,0 -(109,89:28353881,10461537:173670,78643,0 +(105,89:28190027,10461537:501378,78643,0 +(105,89:28353881,10461537:173670,78643,0 ) ) -(109,89:28691405,10461537:501378,78643,0 -(109,89:28855259,10461537:173670,78643,0 +(105,89:28691405,10461537:501378,78643,0 +(105,89:28855259,10461537:173670,78643,0 ) ) -(109,89:29192783,10461537:501378,78643,0 -(109,89:29356637,10461537:173670,78643,0 +(105,89:29192783,10461537:501378,78643,0 +(105,89:29356637,10461537:173670,78643,0 ) ) -(109,89:29694161,10461537:501378,78643,0 -(109,89:29858015,10461537:173670,78643,0 +(105,89:29694161,10461537:501378,78643,0 +(105,89:29858015,10461537:173670,78643,0 ) ) -(109,89:30195539,10461537:501378,78643,0 -(109,89:30359393,10461537:173670,78643,0 +(105,89:30195539,10461537:501378,78643,0 +(105,89:30359393,10461537:173670,78643,0 ) ) -(109,89:30696917,10461537:501378,78643,0 -(109,89:30860771,10461537:173670,78643,0 +(105,89:30696917,10461537:501378,78643,0 +(105,89:30860771,10461537:173670,78643,0 ) ) -(109,89:31403378,10461537:1179650,485622,11795 -k109,89:31586881,10461537:183503 -g109,89:31786110,10461537 +(105,89:31239538,10461537:1343490,485622,11795 +k105,89:31586881,10461537:347343 +g105,89:31786110,10461537 ) -g109,89:30911858,10461537 -g109,89:32583028,10461537 +g105,89:30911858,10461537 +g105,89:32583028,10461537 ) -(109,91:6630773,11303025:25952256,513147,11795 -g109,91:11218293,11303025 -h109,91:11218293,11303025:2490370,0,0 -h109,91:13708663,11303025:0,0,0 -g109,91:9121143,11303025 -(109,91:9121143,11303025:2097150,485622,11795 -k109,91:11218293,11303025:155974 +(105,91:6630773,11303025:25952256,513147,11795 +g105,91:11218293,11303025 +h105,91:11218293,11303025:2490370,0,0 +h105,91:13708663,11303025:0,0,0 +g105,91:9121143,11303025 +(105,91:9121143,11303025:2097150,485622,11795 +k105,91:11218293,11303025:155974 ) -g109,91:12630593,11303025 -g109,91:13943935,11303025 -(109,91:14151443,11303025:501378,78643,0 -$109,91:14151443,11303025 -(109,91:14315297,11303025:173670,78643,0 +g105,91:12630593,11303025 +g105,91:13943935,11303025 +(105,91:14151443,11303025:501378,78643,0 +$105,91:14151443,11303025 +(105,91:14315297,11303025:173670,78643,0 ) -$109,91:14652821,11303025 +$105,91:14652821,11303025 ) -(109,91:14652821,11303025:501378,78643,0 -(109,91:14816675,11303025:173670,78643,0 +(105,91:14652821,11303025:501378,78643,0 +(105,91:14816675,11303025:173670,78643,0 ) ) -(109,91:15154199,11303025:501378,78643,0 -(109,91:15318053,11303025:173670,78643,0 +(105,91:15154199,11303025:501378,78643,0 +(105,91:15318053,11303025:173670,78643,0 ) ) -(109,91:15655577,11303025:501378,78643,0 -(109,91:15819431,11303025:173670,78643,0 +(105,91:15655577,11303025:501378,78643,0 +(105,91:15819431,11303025:173670,78643,0 ) ) -(109,91:16156955,11303025:501378,78643,0 -(109,91:16320809,11303025:173670,78643,0 +(105,91:16156955,11303025:501378,78643,0 +(105,91:16320809,11303025:173670,78643,0 ) ) -(109,91:16658333,11303025:501378,78643,0 -(109,91:16822187,11303025:173670,78643,0 +(105,91:16658333,11303025:501378,78643,0 +(105,91:16822187,11303025:173670,78643,0 ) ) -(109,91:17159711,11303025:501378,78643,0 -(109,91:17323565,11303025:173670,78643,0 +(105,91:17159711,11303025:501378,78643,0 +(105,91:17323565,11303025:173670,78643,0 ) ) -(109,91:17661089,11303025:501378,78643,0 -(109,91:17824943,11303025:173670,78643,0 +(105,91:17661089,11303025:501378,78643,0 +(105,91:17824943,11303025:173670,78643,0 ) ) -(109,91:18162467,11303025:501378,78643,0 -(109,91:18326321,11303025:173670,78643,0 +(105,91:18162467,11303025:501378,78643,0 +(105,91:18326321,11303025:173670,78643,0 ) ) -(109,91:18663845,11303025:501378,78643,0 -(109,91:18827699,11303025:173670,78643,0 +(105,91:18663845,11303025:501378,78643,0 +(105,91:18827699,11303025:173670,78643,0 ) ) -(109,91:19165223,11303025:501378,78643,0 -(109,91:19329077,11303025:173670,78643,0 +(105,91:19165223,11303025:501378,78643,0 +(105,91:19329077,11303025:173670,78643,0 ) ) -(109,91:19666601,11303025:501378,78643,0 -(109,91:19830455,11303025:173670,78643,0 +(105,91:19666601,11303025:501378,78643,0 +(105,91:19830455,11303025:173670,78643,0 ) ) -(109,91:20167979,11303025:501378,78643,0 -(109,91:20331833,11303025:173670,78643,0 +(105,91:20167979,11303025:501378,78643,0 +(105,91:20331833,11303025:173670,78643,0 ) ) -(109,91:20669357,11303025:501378,78643,0 -(109,91:20833211,11303025:173670,78643,0 +(105,91:20669357,11303025:501378,78643,0 +(105,91:20833211,11303025:173670,78643,0 ) ) -(109,91:21170735,11303025:501378,78643,0 -(109,91:21334589,11303025:173670,78643,0 +(105,91:21170735,11303025:501378,78643,0 +(105,91:21334589,11303025:173670,78643,0 ) ) -(109,91:21672113,11303025:501378,78643,0 -(109,91:21835967,11303025:173670,78643,0 +(105,91:21672113,11303025:501378,78643,0 +(105,91:21835967,11303025:173670,78643,0 ) ) -(109,91:22173491,11303025:501378,78643,0 -(109,91:22337345,11303025:173670,78643,0 +(105,91:22173491,11303025:501378,78643,0 +(105,91:22337345,11303025:173670,78643,0 ) ) -(109,91:22674869,11303025:501378,78643,0 -(109,91:22838723,11303025:173670,78643,0 +(105,91:22674869,11303025:501378,78643,0 +(105,91:22838723,11303025:173670,78643,0 ) ) -(109,91:23176247,11303025:501378,78643,0 -(109,91:23340101,11303025:173670,78643,0 +(105,91:23176247,11303025:501378,78643,0 +(105,91:23340101,11303025:173670,78643,0 ) ) -(109,91:23677625,11303025:501378,78643,0 -(109,91:23841479,11303025:173670,78643,0 +(105,91:23677625,11303025:501378,78643,0 +(105,91:23841479,11303025:173670,78643,0 ) ) -(109,91:24179003,11303025:501378,78643,0 -(109,91:24342857,11303025:173670,78643,0 +(105,91:24179003,11303025:501378,78643,0 +(105,91:24342857,11303025:173670,78643,0 ) ) -(109,91:24680381,11303025:501378,78643,0 -(109,91:24844235,11303025:173670,78643,0 +(105,91:24680381,11303025:501378,78643,0 +(105,91:24844235,11303025:173670,78643,0 ) ) -(109,91:25181759,11303025:501378,78643,0 -(109,91:25345613,11303025:173670,78643,0 +(105,91:25181759,11303025:501378,78643,0 +(105,91:25345613,11303025:173670,78643,0 ) ) -(109,91:25683137,11303025:501378,78643,0 -(109,91:25846991,11303025:173670,78643,0 +(105,91:25683137,11303025:501378,78643,0 +(105,91:25846991,11303025:173670,78643,0 ) ) -(109,91:26184515,11303025:501378,78643,0 -(109,91:26348369,11303025:173670,78643,0 +(105,91:26184515,11303025:501378,78643,0 +(105,91:26348369,11303025:173670,78643,0 ) ) -(109,91:26685893,11303025:501378,78643,0 -(109,91:26849747,11303025:173670,78643,0 +(105,91:26685893,11303025:501378,78643,0 +(105,91:26849747,11303025:173670,78643,0 ) ) -(109,91:27187271,11303025:501378,78643,0 -(109,91:27351125,11303025:173670,78643,0 +(105,91:27187271,11303025:501378,78643,0 +(105,91:27351125,11303025:173670,78643,0 ) ) -(109,91:27688649,11303025:501378,78643,0 -(109,91:27852503,11303025:173670,78643,0 +(105,91:27688649,11303025:501378,78643,0 +(105,91:27852503,11303025:173670,78643,0 ) ) -(109,91:28190027,11303025:501378,78643,0 -(109,91:28353881,11303025:173670,78643,0 +(105,91:28190027,11303025:501378,78643,0 +(105,91:28353881,11303025:173670,78643,0 ) ) -(109,91:28691405,11303025:501378,78643,0 -(109,91:28855259,11303025:173670,78643,0 +(105,91:28691405,11303025:501378,78643,0 +(105,91:28855259,11303025:173670,78643,0 ) ) -(109,91:29192783,11303025:501378,78643,0 -(109,91:29356637,11303025:173670,78643,0 +(105,91:29192783,11303025:501378,78643,0 +(105,91:29356637,11303025:173670,78643,0 ) ) -(109,91:29694161,11303025:501378,78643,0 -(109,91:29858015,11303025:173670,78643,0 +(105,91:29694161,11303025:501378,78643,0 +(105,91:29858015,11303025:173670,78643,0 ) ) -(109,91:30195539,11303025:501378,78643,0 -(109,91:30359393,11303025:173670,78643,0 +(105,91:30195539,11303025:501378,78643,0 +(105,91:30359393,11303025:173670,78643,0 ) ) -(109,91:30696917,11303025:501378,78643,0 -(109,91:30860771,11303025:173670,78643,0 +(105,91:30696917,11303025:501378,78643,0 +(105,91:30860771,11303025:173670,78643,0 ) ) -(109,91:31403379,11303025:1179650,485622,11795 -k109,91:31586882,11303025:183503 -g109,91:31786111,11303025 +(105,91:31239539,11303025:1343490,485622,11795 +k105,91:31586882,11303025:347343 +g105,91:31786111,11303025 ) -g109,91:30911859,11303025 -g109,91:32583029,11303025 +g105,91:30911859,11303025 +g105,91:32583029,11303025 ) -(109,93:6630773,12144513:25952256,505283,134348 -g109,93:9121143,12144513 -h109,93:9121143,12144513:983040,0,0 -h109,93:10104183,12144513:0,0,0 -g109,93:7613813,12144513 -(109,93:7613813,12144513:1507330,485622,0 -k109,93:9121143,12144513:138283 +(105,93:6630773,12144513:25952256,505283,134348 +g105,93:9121143,12144513 +h105,93:9121143,12144513:983040,0,0 +h105,93:10104183,12144513:0,0,0 +g105,93:7613813,12144513 +(105,93:7613813,12144513:1507330,485622,0 +k105,93:9121143,12144513:138283 ) -g109,93:11857271,12144513 -g109,93:12669262,12144513 -g109,93:14257854,12144513 -g109,93:14257854,12144513 -(109,93:14652821,12144513:501378,78643,0 -$109,93:14652821,12144513 -(109,93:14816675,12144513:173670,78643,0 +g105,93:11857271,12144513 +g105,93:12669262,12144513 +g105,93:14257854,12144513 +g105,93:14257854,12144513 +(105,93:14652821,12144513:501378,78643,0 +$105,93:14652821,12144513 +(105,93:14816675,12144513:173670,78643,0 ) -$109,93:15154199,12144513 +$105,93:15154199,12144513 ) -(109,93:15154199,12144513:501378,78643,0 -(109,93:15318053,12144513:173670,78643,0 +(105,93:15154199,12144513:501378,78643,0 +(105,93:15318053,12144513:173670,78643,0 ) ) -(109,93:15655577,12144513:501378,78643,0 -(109,93:15819431,12144513:173670,78643,0 +(105,93:15655577,12144513:501378,78643,0 +(105,93:15819431,12144513:173670,78643,0 ) ) -(109,93:16156955,12144513:501378,78643,0 -(109,93:16320809,12144513:173670,78643,0 +(105,93:16156955,12144513:501378,78643,0 +(105,93:16320809,12144513:173670,78643,0 ) ) -(109,93:16658333,12144513:501378,78643,0 -(109,93:16822187,12144513:173670,78643,0 +(105,93:16658333,12144513:501378,78643,0 +(105,93:16822187,12144513:173670,78643,0 ) ) -(109,93:17159711,12144513:501378,78643,0 -(109,93:17323565,12144513:173670,78643,0 +(105,93:17159711,12144513:501378,78643,0 +(105,93:17323565,12144513:173670,78643,0 ) ) -(109,93:17661089,12144513:501378,78643,0 -(109,93:17824943,12144513:173670,78643,0 +(105,93:17661089,12144513:501378,78643,0 +(105,93:17824943,12144513:173670,78643,0 ) ) -(109,93:18162467,12144513:501378,78643,0 -(109,93:18326321,12144513:173670,78643,0 +(105,93:18162467,12144513:501378,78643,0 +(105,93:18326321,12144513:173670,78643,0 ) ) -(109,93:18663845,12144513:501378,78643,0 -(109,93:18827699,12144513:173670,78643,0 +(105,93:18663845,12144513:501378,78643,0 +(105,93:18827699,12144513:173670,78643,0 ) ) -(109,93:19165223,12144513:501378,78643,0 -(109,93:19329077,12144513:173670,78643,0 +(105,93:19165223,12144513:501378,78643,0 +(105,93:19329077,12144513:173670,78643,0 ) ) -(109,93:19666601,12144513:501378,78643,0 -(109,93:19830455,12144513:173670,78643,0 +(105,93:19666601,12144513:501378,78643,0 +(105,93:19830455,12144513:173670,78643,0 ) ) -(109,93:20167979,12144513:501378,78643,0 -(109,93:20331833,12144513:173670,78643,0 +(105,93:20167979,12144513:501378,78643,0 +(105,93:20331833,12144513:173670,78643,0 ) ) -(109,93:20669357,12144513:501378,78643,0 -(109,93:20833211,12144513:173670,78643,0 +(105,93:20669357,12144513:501378,78643,0 +(105,93:20833211,12144513:173670,78643,0 ) ) -(109,93:21170735,12144513:501378,78643,0 -(109,93:21334589,12144513:173670,78643,0 +(105,93:21170735,12144513:501378,78643,0 +(105,93:21334589,12144513:173670,78643,0 ) ) -(109,93:21672113,12144513:501378,78643,0 -(109,93:21835967,12144513:173670,78643,0 +(105,93:21672113,12144513:501378,78643,0 +(105,93:21835967,12144513:173670,78643,0 ) ) -(109,93:22173491,12144513:501378,78643,0 -(109,93:22337345,12144513:173670,78643,0 +(105,93:22173491,12144513:501378,78643,0 +(105,93:22337345,12144513:173670,78643,0 ) ) -(109,93:22674869,12144513:501378,78643,0 -(109,93:22838723,12144513:173670,78643,0 +(105,93:22674869,12144513:501378,78643,0 +(105,93:22838723,12144513:173670,78643,0 ) ) -(109,93:23176247,12144513:501378,78643,0 -(109,93:23340101,12144513:173670,78643,0 +(105,93:23176247,12144513:501378,78643,0 +(105,93:23340101,12144513:173670,78643,0 ) ) -(109,93:23677625,12144513:501378,78643,0 -(109,93:23841479,12144513:173670,78643,0 +(105,93:23677625,12144513:501378,78643,0 +(105,93:23841479,12144513:173670,78643,0 ) ) -(109,93:24179003,12144513:501378,78643,0 -(109,93:24342857,12144513:173670,78643,0 +(105,93:24179003,12144513:501378,78643,0 +(105,93:24342857,12144513:173670,78643,0 ) ) -(109,93:24680381,12144513:501378,78643,0 -(109,93:24844235,12144513:173670,78643,0 +(105,93:24680381,12144513:501378,78643,0 +(105,93:24844235,12144513:173670,78643,0 ) ) -(109,93:25181759,12144513:501378,78643,0 -(109,93:25345613,12144513:173670,78643,0 +(105,93:25181759,12144513:501378,78643,0 +(105,93:25345613,12144513:173670,78643,0 ) ) -(109,93:25683137,12144513:501378,78643,0 -(109,93:25846991,12144513:173670,78643,0 +(105,93:25683137,12144513:501378,78643,0 +(105,93:25846991,12144513:173670,78643,0 ) ) -(109,93:26184515,12144513:501378,78643,0 -(109,93:26348369,12144513:173670,78643,0 +(105,93:26184515,12144513:501378,78643,0 +(105,93:26348369,12144513:173670,78643,0 ) ) -(109,93:26685893,12144513:501378,78643,0 -(109,93:26849747,12144513:173670,78643,0 +(105,93:26685893,12144513:501378,78643,0 +(105,93:26849747,12144513:173670,78643,0 ) ) -(109,93:27187271,12144513:501378,78643,0 -(109,93:27351125,12144513:173670,78643,0 +(105,93:27187271,12144513:501378,78643,0 +(105,93:27351125,12144513:173670,78643,0 ) ) -(109,93:27688649,12144513:501378,78643,0 -(109,93:27852503,12144513:173670,78643,0 +(105,93:27688649,12144513:501378,78643,0 +(105,93:27852503,12144513:173670,78643,0 ) ) -(109,93:28190027,12144513:501378,78643,0 -(109,93:28353881,12144513:173670,78643,0 +(105,93:28190027,12144513:501378,78643,0 +(105,93:28353881,12144513:173670,78643,0 ) ) -(109,93:28691405,12144513:501378,78643,0 -(109,93:28855259,12144513:173670,78643,0 +(105,93:28691405,12144513:501378,78643,0 +(105,93:28855259,12144513:173670,78643,0 ) ) -(109,93:29192783,12144513:501378,78643,0 -(109,93:29356637,12144513:173670,78643,0 +(105,93:29192783,12144513:501378,78643,0 +(105,93:29356637,12144513:173670,78643,0 ) ) -(109,93:29694161,12144513:501378,78643,0 -(109,93:29858015,12144513:173670,78643,0 +(105,93:29694161,12144513:501378,78643,0 +(105,93:29858015,12144513:173670,78643,0 ) ) -(109,93:30195539,12144513:501378,78643,0 -(109,93:30359393,12144513:173670,78643,0 +(105,93:30195539,12144513:501378,78643,0 +(105,93:30359393,12144513:173670,78643,0 ) ) -(109,93:30696917,12144513:501378,78643,0 -(109,93:30860771,12144513:173670,78643,0 +(105,93:30696917,12144513:501378,78643,0 +(105,93:30860771,12144513:173670,78643,0 ) ) -(109,93:31403378,12144513:1179650,485622,11795 -k109,93:31586881,12144513:183503 -g109,93:31786110,12144513 +(105,93:31239538,12144513:1343490,485622,11795 +k105,93:31586881,12144513:347343 +g105,93:31786110,12144513 ) -g109,93:30911858,12144513 -g109,93:32583028,12144513 +g105,93:30911858,12144513 +g105,93:32583028,12144513 ) -(109,95:6630773,12986001:25952256,505283,134348 -g109,95:9121143,12986001 -h109,95:9121143,12986001:983040,0,0 -h109,95:10104183,12986001:0,0,0 -g109,95:7613813,12986001 -(109,95:7613813,12986001:1507330,485622,11795 -k109,95:9121143,12986001:138283 +(105,95:6630773,12986001:25952256,505283,134348 +g105,95:9121143,12986001 +h105,95:9121143,12986001:983040,0,0 +h105,95:10104183,12986001:0,0,0 +g105,95:7613813,12986001 +(105,95:7613813,12986001:1507330,485622,11795 +k105,95:9121143,12986001:138283 ) -g109,95:11799599,12986001 -g109,95:11799599,12986001 -(109,95:12145931,12986001:501378,78643,0 -$109,95:12145931,12986001 -(109,95:12309785,12986001:173670,78643,0 +g105,95:11799599,12986001 +g105,95:11799599,12986001 +(105,95:12145931,12986001:501378,78643,0 +$105,95:12145931,12986001 +(105,95:12309785,12986001:173670,78643,0 ) -$109,95:12647309,12986001 +$105,95:12647309,12986001 ) -(109,95:12647309,12986001:501378,78643,0 -(109,95:12811163,12986001:173670,78643,0 +(105,95:12647309,12986001:501378,78643,0 +(105,95:12811163,12986001:173670,78643,0 ) ) -(109,95:13148687,12986001:501378,78643,0 -(109,95:13312541,12986001:173670,78643,0 +(105,95:13148687,12986001:501378,78643,0 +(105,95:13312541,12986001:173670,78643,0 ) ) -(109,95:13650065,12986001:501378,78643,0 -(109,95:13813919,12986001:173670,78643,0 +(105,95:13650065,12986001:501378,78643,0 +(105,95:13813919,12986001:173670,78643,0 ) ) -(109,95:14151443,12986001:501378,78643,0 -(109,95:14315297,12986001:173670,78643,0 +(105,95:14151443,12986001:501378,78643,0 +(105,95:14315297,12986001:173670,78643,0 ) ) -(109,95:14652821,12986001:501378,78643,0 -(109,95:14816675,12986001:173670,78643,0 +(105,95:14652821,12986001:501378,78643,0 +(105,95:14816675,12986001:173670,78643,0 ) ) -(109,95:15154199,12986001:501378,78643,0 -(109,95:15318053,12986001:173670,78643,0 +(105,95:15154199,12986001:501378,78643,0 +(105,95:15318053,12986001:173670,78643,0 ) ) -(109,95:15655577,12986001:501378,78643,0 -(109,95:15819431,12986001:173670,78643,0 +(105,95:15655577,12986001:501378,78643,0 +(105,95:15819431,12986001:173670,78643,0 ) ) -(109,95:16156955,12986001:501378,78643,0 -(109,95:16320809,12986001:173670,78643,0 +(105,95:16156955,12986001:501378,78643,0 +(105,95:16320809,12986001:173670,78643,0 ) ) -(109,95:16658333,12986001:501378,78643,0 -(109,95:16822187,12986001:173670,78643,0 +(105,95:16658333,12986001:501378,78643,0 +(105,95:16822187,12986001:173670,78643,0 ) ) -(109,95:17159711,12986001:501378,78643,0 -(109,95:17323565,12986001:173670,78643,0 +(105,95:17159711,12986001:501378,78643,0 +(105,95:17323565,12986001:173670,78643,0 ) ) -(109,95:17661089,12986001:501378,78643,0 -(109,95:17824943,12986001:173670,78643,0 +(105,95:17661089,12986001:501378,78643,0 +(105,95:17824943,12986001:173670,78643,0 ) ) -(109,95:18162467,12986001:501378,78643,0 -(109,95:18326321,12986001:173670,78643,0 +(105,95:18162467,12986001:501378,78643,0 +(105,95:18326321,12986001:173670,78643,0 ) ) -(109,95:18663845,12986001:501378,78643,0 -(109,95:18827699,12986001:173670,78643,0 +(105,95:18663845,12986001:501378,78643,0 +(105,95:18827699,12986001:173670,78643,0 ) ) -(109,95:19165223,12986001:501378,78643,0 -(109,95:19329077,12986001:173670,78643,0 +(105,95:19165223,12986001:501378,78643,0 +(105,95:19329077,12986001:173670,78643,0 ) ) -(109,95:19666601,12986001:501378,78643,0 -(109,95:19830455,12986001:173670,78643,0 +(105,95:19666601,12986001:501378,78643,0 +(105,95:19830455,12986001:173670,78643,0 ) ) -(109,95:20167979,12986001:501378,78643,0 -(109,95:20331833,12986001:173670,78643,0 +(105,95:20167979,12986001:501378,78643,0 +(105,95:20331833,12986001:173670,78643,0 ) ) -(109,95:20669357,12986001:501378,78643,0 -(109,95:20833211,12986001:173670,78643,0 +(105,95:20669357,12986001:501378,78643,0 +(105,95:20833211,12986001:173670,78643,0 ) ) -(109,95:21170735,12986001:501378,78643,0 -(109,95:21334589,12986001:173670,78643,0 +(105,95:21170735,12986001:501378,78643,0 +(105,95:21334589,12986001:173670,78643,0 ) ) -(109,95:21672113,12986001:501378,78643,0 -(109,95:21835967,12986001:173670,78643,0 +(105,95:21672113,12986001:501378,78643,0 +(105,95:21835967,12986001:173670,78643,0 ) ) -(109,95:22173491,12986001:501378,78643,0 -(109,95:22337345,12986001:173670,78643,0 +(105,95:22173491,12986001:501378,78643,0 +(105,95:22337345,12986001:173670,78643,0 ) ) -(109,95:22674869,12986001:501378,78643,0 -(109,95:22838723,12986001:173670,78643,0 +(105,95:22674869,12986001:501378,78643,0 +(105,95:22838723,12986001:173670,78643,0 ) ) -(109,95:23176247,12986001:501378,78643,0 -(109,95:23340101,12986001:173670,78643,0 +(105,95:23176247,12986001:501378,78643,0 +(105,95:23340101,12986001:173670,78643,0 ) ) -(109,95:23677625,12986001:501378,78643,0 -(109,95:23841479,12986001:173670,78643,0 +(105,95:23677625,12986001:501378,78643,0 +(105,95:23841479,12986001:173670,78643,0 ) ) -(109,95:24179003,12986001:501378,78643,0 -(109,95:24342857,12986001:173670,78643,0 +(105,95:24179003,12986001:501378,78643,0 +(105,95:24342857,12986001:173670,78643,0 ) ) -(109,95:24680381,12986001:501378,78643,0 -(109,95:24844235,12986001:173670,78643,0 +(105,95:24680381,12986001:501378,78643,0 +(105,95:24844235,12986001:173670,78643,0 ) ) -(109,95:25181759,12986001:501378,78643,0 -(109,95:25345613,12986001:173670,78643,0 +(105,95:25181759,12986001:501378,78643,0 +(105,95:25345613,12986001:173670,78643,0 ) ) -(109,95:25683137,12986001:501378,78643,0 -(109,95:25846991,12986001:173670,78643,0 +(105,95:25683137,12986001:501378,78643,0 +(105,95:25846991,12986001:173670,78643,0 ) ) -(109,95:26184515,12986001:501378,78643,0 -(109,95:26348369,12986001:173670,78643,0 +(105,95:26184515,12986001:501378,78643,0 +(105,95:26348369,12986001:173670,78643,0 ) ) -(109,95:26685893,12986001:501378,78643,0 -(109,95:26849747,12986001:173670,78643,0 +(105,95:26685893,12986001:501378,78643,0 +(105,95:26849747,12986001:173670,78643,0 ) ) -(109,95:27187271,12986001:501378,78643,0 -(109,95:27351125,12986001:173670,78643,0 +(105,95:27187271,12986001:501378,78643,0 +(105,95:27351125,12986001:173670,78643,0 ) ) -(109,95:27688649,12986001:501378,78643,0 -(109,95:27852503,12986001:173670,78643,0 +(105,95:27688649,12986001:501378,78643,0 +(105,95:27852503,12986001:173670,78643,0 ) ) -(109,95:28190027,12986001:501378,78643,0 -(109,95:28353881,12986001:173670,78643,0 +(105,95:28190027,12986001:501378,78643,0 +(105,95:28353881,12986001:173670,78643,0 ) ) -(109,95:28691405,12986001:501378,78643,0 -(109,95:28855259,12986001:173670,78643,0 +(105,95:28691405,12986001:501378,78643,0 +(105,95:28855259,12986001:173670,78643,0 ) ) -(109,95:29192783,12986001:501378,78643,0 -(109,95:29356637,12986001:173670,78643,0 +(105,95:29192783,12986001:501378,78643,0 +(105,95:29356637,12986001:173670,78643,0 ) ) -(109,95:29694161,12986001:501378,78643,0 -(109,95:29858015,12986001:173670,78643,0 +(105,95:29694161,12986001:501378,78643,0 +(105,95:29858015,12986001:173670,78643,0 ) ) -(109,95:30195539,12986001:501378,78643,0 -(109,95:30359393,12986001:173670,78643,0 +(105,95:30195539,12986001:501378,78643,0 +(105,95:30359393,12986001:173670,78643,0 ) ) -(109,95:30696917,12986001:501378,78643,0 -(109,95:30860771,12986001:173670,78643,0 +(105,95:30696917,12986001:501378,78643,0 +(105,95:30860771,12986001:173670,78643,0 ) ) -(109,95:31403379,12986001:1179650,485622,11795 -k109,95:31586882,12986001:183503 -g109,95:31786111,12986001 +(105,95:31239539,12986001:1343490,485622,11795 +k105,95:31586882,12986001:347343 +g105,95:31786111,12986001 ) -g109,95:30911859,12986001 -g109,95:32583029,12986001 +g105,95:30911859,12986001 +g105,95:32583029,12986001 ) -(109,97:6630773,13827489:25952256,505283,134348 -g109,97:9121143,13827489 -h109,97:9121143,13827489:983040,0,0 -h109,97:10104183,13827489:0,0,0 -g109,97:7613813,13827489 -(109,97:7613813,13827489:1507330,485622,11795 -k109,97:9121143,13827489:138283 +(105,97:6630773,13827489:25952256,505283,134348 +g105,97:9121143,13827489 +h105,97:9121143,13827489:983040,0,0 +h105,97:10104183,13827489:0,0,0 +g105,97:7613813,13827489 +(105,97:7613813,13827489:1507330,485622,11795 +k105,97:9121143,13827489:138283 ) -g109,97:11690154,13827489 -g109,97:14291933,13827489 -g109,97:14291933,13827489 -(109,97:14652821,13827489:501378,78643,0 -$109,97:14652821,13827489 -(109,97:14816675,13827489:173670,78643,0 +g105,97:11690154,13827489 +g105,97:14291933,13827489 +g105,97:14291933,13827489 +(105,97:14652821,13827489:501378,78643,0 +$105,97:14652821,13827489 +(105,97:14816675,13827489:173670,78643,0 ) -$109,97:15154199,13827489 +$105,97:15154199,13827489 ) -(109,97:15154199,13827489:501378,78643,0 -(109,97:15318053,13827489:173670,78643,0 +(105,97:15154199,13827489:501378,78643,0 +(105,97:15318053,13827489:173670,78643,0 ) ) -(109,97:15655577,13827489:501378,78643,0 -(109,97:15819431,13827489:173670,78643,0 +(105,97:15655577,13827489:501378,78643,0 +(105,97:15819431,13827489:173670,78643,0 ) ) -(109,97:16156955,13827489:501378,78643,0 -(109,97:16320809,13827489:173670,78643,0 +(105,97:16156955,13827489:501378,78643,0 +(105,97:16320809,13827489:173670,78643,0 ) ) -(109,97:16658333,13827489:501378,78643,0 -(109,97:16822187,13827489:173670,78643,0 +(105,97:16658333,13827489:501378,78643,0 +(105,97:16822187,13827489:173670,78643,0 ) ) -(109,97:17159711,13827489:501378,78643,0 -(109,97:17323565,13827489:173670,78643,0 +(105,97:17159711,13827489:501378,78643,0 +(105,97:17323565,13827489:173670,78643,0 ) ) -(109,97:17661089,13827489:501378,78643,0 -(109,97:17824943,13827489:173670,78643,0 +(105,97:17661089,13827489:501378,78643,0 +(105,97:17824943,13827489:173670,78643,0 ) ) -(109,97:18162467,13827489:501378,78643,0 -(109,97:18326321,13827489:173670,78643,0 +(105,97:18162467,13827489:501378,78643,0 +(105,97:18326321,13827489:173670,78643,0 ) ) -(109,97:18663845,13827489:501378,78643,0 -(109,97:18827699,13827489:173670,78643,0 +(105,97:18663845,13827489:501378,78643,0 +(105,97:18827699,13827489:173670,78643,0 ) ) -(109,97:19165223,13827489:501378,78643,0 -(109,97:19329077,13827489:173670,78643,0 +(105,97:19165223,13827489:501378,78643,0 +(105,97:19329077,13827489:173670,78643,0 ) ) -(109,97:19666601,13827489:501378,78643,0 -(109,97:19830455,13827489:173670,78643,0 +(105,97:19666601,13827489:501378,78643,0 +(105,97:19830455,13827489:173670,78643,0 ) ) -(109,97:20167979,13827489:501378,78643,0 -(109,97:20331833,13827489:173670,78643,0 +(105,97:20167979,13827489:501378,78643,0 +(105,97:20331833,13827489:173670,78643,0 ) ) -(109,97:20669357,13827489:501378,78643,0 -(109,97:20833211,13827489:173670,78643,0 +(105,97:20669357,13827489:501378,78643,0 +(105,97:20833211,13827489:173670,78643,0 ) ) -(109,97:21170735,13827489:501378,78643,0 -(109,97:21334589,13827489:173670,78643,0 +(105,97:21170735,13827489:501378,78643,0 +(105,97:21334589,13827489:173670,78643,0 ) ) -(109,97:21672113,13827489:501378,78643,0 -(109,97:21835967,13827489:173670,78643,0 +(105,97:21672113,13827489:501378,78643,0 +(105,97:21835967,13827489:173670,78643,0 ) ) -(109,97:22173491,13827489:501378,78643,0 -(109,97:22337345,13827489:173670,78643,0 +(105,97:22173491,13827489:501378,78643,0 +(105,97:22337345,13827489:173670,78643,0 ) ) -(109,97:22674869,13827489:501378,78643,0 -(109,97:22838723,13827489:173670,78643,0 +(105,97:22674869,13827489:501378,78643,0 +(105,97:22838723,13827489:173670,78643,0 ) ) -(109,97:23176247,13827489:501378,78643,0 -(109,97:23340101,13827489:173670,78643,0 +(105,97:23176247,13827489:501378,78643,0 +(105,97:23340101,13827489:173670,78643,0 ) ) -(109,97:23677625,13827489:501378,78643,0 -(109,97:23841479,13827489:173670,78643,0 +(105,97:23677625,13827489:501378,78643,0 +(105,97:23841479,13827489:173670,78643,0 ) ) -(109,97:24179003,13827489:501378,78643,0 -(109,97:24342857,13827489:173670,78643,0 +(105,97:24179003,13827489:501378,78643,0 +(105,97:24342857,13827489:173670,78643,0 ) ) -(109,97:24680381,13827489:501378,78643,0 -(109,97:24844235,13827489:173670,78643,0 +(105,97:24680381,13827489:501378,78643,0 +(105,97:24844235,13827489:173670,78643,0 ) ) -(109,97:25181759,13827489:501378,78643,0 -(109,97:25345613,13827489:173670,78643,0 +(105,97:25181759,13827489:501378,78643,0 +(105,97:25345613,13827489:173670,78643,0 ) ) -(109,97:25683137,13827489:501378,78643,0 -(109,97:25846991,13827489:173670,78643,0 +(105,97:25683137,13827489:501378,78643,0 +(105,97:25846991,13827489:173670,78643,0 ) ) -(109,97:26184515,13827489:501378,78643,0 -(109,97:26348369,13827489:173670,78643,0 +(105,97:26184515,13827489:501378,78643,0 +(105,97:26348369,13827489:173670,78643,0 ) ) -(109,97:26685893,13827489:501378,78643,0 -(109,97:26849747,13827489:173670,78643,0 +(105,97:26685893,13827489:501378,78643,0 +(105,97:26849747,13827489:173670,78643,0 ) ) -(109,97:27187271,13827489:501378,78643,0 -(109,97:27351125,13827489:173670,78643,0 +(105,97:27187271,13827489:501378,78643,0 +(105,97:27351125,13827489:173670,78643,0 ) ) -(109,97:27688649,13827489:501378,78643,0 -(109,97:27852503,13827489:173670,78643,0 +(105,97:27688649,13827489:501378,78643,0 +(105,97:27852503,13827489:173670,78643,0 ) ) -(109,97:28190027,13827489:501378,78643,0 -(109,97:28353881,13827489:173670,78643,0 +(105,97:28190027,13827489:501378,78643,0 +(105,97:28353881,13827489:173670,78643,0 ) ) -(109,97:28691405,13827489:501378,78643,0 -(109,97:28855259,13827489:173670,78643,0 +(105,97:28691405,13827489:501378,78643,0 +(105,97:28855259,13827489:173670,78643,0 ) ) -(109,97:29192783,13827489:501378,78643,0 -(109,97:29356637,13827489:173670,78643,0 +(105,97:29192783,13827489:501378,78643,0 +(105,97:29356637,13827489:173670,78643,0 ) ) -(109,97:29694161,13827489:501378,78643,0 -(109,97:29858015,13827489:173670,78643,0 +(105,97:29694161,13827489:501378,78643,0 +(105,97:29858015,13827489:173670,78643,0 ) ) -(109,97:30195539,13827489:501378,78643,0 -(109,97:30359393,13827489:173670,78643,0 +(105,97:30195539,13827489:501378,78643,0 +(105,97:30359393,13827489:173670,78643,0 ) ) -(109,97:30696917,13827489:501378,78643,0 -(109,97:30860771,13827489:173670,78643,0 +(105,97:30696917,13827489:501378,78643,0 +(105,97:30860771,13827489:173670,78643,0 ) ) -(109,97:31403379,13827489:1179650,485622,11795 -k109,97:31586882,13827489:183503 -g109,97:31786111,13827489 +(105,97:31239539,13827489:1343490,485622,11795 +k105,97:31586882,13827489:347343 +g105,97:31786111,13827489 ) -g109,97:30911859,13827489 -g109,97:32583029,13827489 +g105,97:30911859,13827489 +g105,97:32583029,13827489 ) -(109,99:6630773,15324337:25952256,505283,134348 -g109,99:7613813,15324337 -h109,99:7613813,15324337:0,0,0 -g109,99:6630773,15324337 -(109,99:6630773,15324337:983040,485622,11795 -k109,99:7613813,15324337:574751 +(105,99:6630773,15324337:25952256,505283,134348 +g105,99:7613813,15324337 +h105,99:7613813,15324337:0,0,0 +g105,99:6630773,15324337 +(105,99:6630773,15324337:983040,485622,11795 +k105,99:7613813,15324337:574751 ) -g109,99:9083130,15324337 -g109,99:9759461,15324337 -g109,99:13090000,15324337 -g109,99:17628368,15324337 -g109,99:19053120,15324337 -k109,99:26632031,15324337:4771349 -k109,99:31403379,15324337:4771348 -(109,99:31403379,15324337:1179650,485622,11795 -k109,99:31766450,15324337:363071 +g105,99:9083130,15324337 +g105,99:9759461,15324337 +g105,99:13090000,15324337 +g105,99:17603464,15324337 +g105,99:19028216,15324337 +k105,99:26537659,15324337:4701881 +k105,99:31239539,15324337:4701880 +(105,99:31239539,15324337:1343490,485622,11795 +k105,99:31766450,15324337:526911 ) -g109,99:31403379,15324337 -g109,99:32583029,15324337 +g105,99:31239539,15324337 +g105,99:32583029,15324337 ) -(109,101:6630773,16165825:25952256,513147,126483 -g109,101:9121143,16165825 -h109,101:9121143,16165825:983040,0,0 -h109,101:10104183,16165825:0,0,0 -g109,101:7613813,16165825 -(109,101:7613813,16165825:1507330,485622,11795 -k109,101:9121143,16165825:536742 +(105,101:6630773,16165825:25952256,513147,126483 +g105,101:9121143,16165825 +h105,101:9121143,16165825:983040,0,0 +h105,101:10104183,16165825:0,0,0 +g105,101:7613813,16165825 +(105,101:7613813,16165825:1507330,485622,11795 +k105,101:9121143,16165825:536742 ) -g109,101:10959427,16165825 -g109,101:11817948,16165825 -g109,101:13220418,16165825 -g109,101:15837270,16165825 -g109,101:15837270,16165825 -(109,101:16156955,16165825:501378,78643,0 -$109,101:16156955,16165825 -(109,101:16320809,16165825:173670,78643,0 +g105,101:10959427,16165825 +g105,101:11817948,16165825 +g105,101:13220418,16165825 +g105,101:15837270,16165825 +g105,101:15837270,16165825 +(105,101:16156955,16165825:501378,78643,0 +$105,101:16156955,16165825 +(105,101:16320809,16165825:173670,78643,0 ) -$109,101:16658333,16165825 +$105,101:16658333,16165825 ) -(109,101:16658333,16165825:501378,78643,0 -(109,101:16822187,16165825:173670,78643,0 +(105,101:16658333,16165825:501378,78643,0 +(105,101:16822187,16165825:173670,78643,0 ) ) -(109,101:17159711,16165825:501378,78643,0 -(109,101:17323565,16165825:173670,78643,0 +(105,101:17159711,16165825:501378,78643,0 +(105,101:17323565,16165825:173670,78643,0 ) ) -(109,101:17661089,16165825:501378,78643,0 -(109,101:17824943,16165825:173670,78643,0 +(105,101:17661089,16165825:501378,78643,0 +(105,101:17824943,16165825:173670,78643,0 ) ) -(109,101:18162467,16165825:501378,78643,0 -(109,101:18326321,16165825:173670,78643,0 +(105,101:18162467,16165825:501378,78643,0 +(105,101:18326321,16165825:173670,78643,0 ) ) -(109,101:18663845,16165825:501378,78643,0 -(109,101:18827699,16165825:173670,78643,0 +(105,101:18663845,16165825:501378,78643,0 +(105,101:18827699,16165825:173670,78643,0 ) ) -(109,101:19165223,16165825:501378,78643,0 -(109,101:19329077,16165825:173670,78643,0 +(105,101:19165223,16165825:501378,78643,0 +(105,101:19329077,16165825:173670,78643,0 ) ) -(109,101:19666601,16165825:501378,78643,0 -(109,101:19830455,16165825:173670,78643,0 +(105,101:19666601,16165825:501378,78643,0 +(105,101:19830455,16165825:173670,78643,0 ) ) -(109,101:20167979,16165825:501378,78643,0 -(109,101:20331833,16165825:173670,78643,0 +(105,101:20167979,16165825:501378,78643,0 +(105,101:20331833,16165825:173670,78643,0 ) ) -(109,101:20669357,16165825:501378,78643,0 -(109,101:20833211,16165825:173670,78643,0 +(105,101:20669357,16165825:501378,78643,0 +(105,101:20833211,16165825:173670,78643,0 ) ) -(109,101:21170735,16165825:501378,78643,0 -(109,101:21334589,16165825:173670,78643,0 +(105,101:21170735,16165825:501378,78643,0 +(105,101:21334589,16165825:173670,78643,0 ) ) -(109,101:21672113,16165825:501378,78643,0 -(109,101:21835967,16165825:173670,78643,0 +(105,101:21672113,16165825:501378,78643,0 +(105,101:21835967,16165825:173670,78643,0 ) ) -(109,101:22173491,16165825:501378,78643,0 -(109,101:22337345,16165825:173670,78643,0 +(105,101:22173491,16165825:501378,78643,0 +(105,101:22337345,16165825:173670,78643,0 ) ) -(109,101:22674869,16165825:501378,78643,0 -(109,101:22838723,16165825:173670,78643,0 +(105,101:22674869,16165825:501378,78643,0 +(105,101:22838723,16165825:173670,78643,0 ) ) -(109,101:23176247,16165825:501378,78643,0 -(109,101:23340101,16165825:173670,78643,0 +(105,101:23176247,16165825:501378,78643,0 +(105,101:23340101,16165825:173670,78643,0 ) ) -(109,101:23677625,16165825:501378,78643,0 -(109,101:23841479,16165825:173670,78643,0 +(105,101:23677625,16165825:501378,78643,0 +(105,101:23841479,16165825:173670,78643,0 ) ) -(109,101:24179003,16165825:501378,78643,0 -(109,101:24342857,16165825:173670,78643,0 +(105,101:24179003,16165825:501378,78643,0 +(105,101:24342857,16165825:173670,78643,0 ) ) -(109,101:24680381,16165825:501378,78643,0 -(109,101:24844235,16165825:173670,78643,0 +(105,101:24680381,16165825:501378,78643,0 +(105,101:24844235,16165825:173670,78643,0 ) ) -(109,101:25181759,16165825:501378,78643,0 -(109,101:25345613,16165825:173670,78643,0 +(105,101:25181759,16165825:501378,78643,0 +(105,101:25345613,16165825:173670,78643,0 ) ) -(109,101:25683137,16165825:501378,78643,0 -(109,101:25846991,16165825:173670,78643,0 +(105,101:25683137,16165825:501378,78643,0 +(105,101:25846991,16165825:173670,78643,0 ) ) -(109,101:26184515,16165825:501378,78643,0 -(109,101:26348369,16165825:173670,78643,0 +(105,101:26184515,16165825:501378,78643,0 +(105,101:26348369,16165825:173670,78643,0 ) ) -(109,101:26685893,16165825:501378,78643,0 -(109,101:26849747,16165825:173670,78643,0 +(105,101:26685893,16165825:501378,78643,0 +(105,101:26849747,16165825:173670,78643,0 ) ) -(109,101:27187271,16165825:501378,78643,0 -(109,101:27351125,16165825:173670,78643,0 +(105,101:27187271,16165825:501378,78643,0 +(105,101:27351125,16165825:173670,78643,0 ) ) -(109,101:27688649,16165825:501378,78643,0 -(109,101:27852503,16165825:173670,78643,0 +(105,101:27688649,16165825:501378,78643,0 +(105,101:27852503,16165825:173670,78643,0 ) ) -(109,101:28190027,16165825:501378,78643,0 -(109,101:28353881,16165825:173670,78643,0 +(105,101:28190027,16165825:501378,78643,0 +(105,101:28353881,16165825:173670,78643,0 ) ) -(109,101:28691405,16165825:501378,78643,0 -(109,101:28855259,16165825:173670,78643,0 +(105,101:28691405,16165825:501378,78643,0 +(105,101:28855259,16165825:173670,78643,0 ) ) -(109,101:29192783,16165825:501378,78643,0 -(109,101:29356637,16165825:173670,78643,0 +(105,101:29192783,16165825:501378,78643,0 +(105,101:29356637,16165825:173670,78643,0 ) ) -(109,101:29694161,16165825:501378,78643,0 -(109,101:29858015,16165825:173670,78643,0 +(105,101:29694161,16165825:501378,78643,0 +(105,101:29858015,16165825:173670,78643,0 ) ) -(109,101:30195539,16165825:501378,78643,0 -(109,101:30359393,16165825:173670,78643,0 +(105,101:30195539,16165825:501378,78643,0 +(105,101:30359393,16165825:173670,78643,0 ) ) -(109,101:30696917,16165825:501378,78643,0 -(109,101:30860771,16165825:173670,78643,0 +(105,101:30696917,16165825:501378,78643,0 +(105,101:30860771,16165825:173670,78643,0 ) ) -(109,101:31403379,16165825:1179650,485622,11795 -k109,101:31586882,16165825:183503 -g109,101:31786111,16165825 +(105,101:31239539,16165825:1343490,485622,11795 +k105,101:31586882,16165825:347343 +g105,101:31786111,16165825 ) -g109,101:30911859,16165825 -g109,101:32583029,16165825 +g105,101:30911859,16165825 +g105,101:32583029,16165825 ) -(109,103:6630773,17007313:25952256,485622,134348 -g109,103:9121143,17007313 -h109,103:9121143,17007313:983040,0,0 -h109,103:10104183,17007313:0,0,0 -g109,103:7613813,17007313 -(109,103:7613813,17007313:1507330,485622,11795 -k109,103:9121143,17007313:536742 +(105,103:6630773,17007313:25952256,485622,134348 +g105,103:9121143,17007313 +h105,103:9121143,17007313:983040,0,0 +h105,103:10104183,17007313:0,0,0 +g105,103:7613813,17007313 +(105,103:7613813,17007313:1507330,485622,11795 +k105,103:9121143,17007313:536742 ) -g109,103:11663284,17007313 -g109,103:14023890,17007313 -g109,103:14023890,17007313 -(109,103:14151443,17007313:501378,78643,0 -$109,103:14151443,17007313 -(109,103:14315297,17007313:173670,78643,0 +g105,103:11663284,17007313 +g105,103:14023890,17007313 +g105,103:14023890,17007313 +(105,103:14151443,17007313:501378,78643,0 +$105,103:14151443,17007313 +(105,103:14315297,17007313:173670,78643,0 ) -$109,103:14652821,17007313 +$105,103:14652821,17007313 ) -(109,103:14652821,17007313:501378,78643,0 -(109,103:14816675,17007313:173670,78643,0 +(105,103:14652821,17007313:501378,78643,0 +(105,103:14816675,17007313:173670,78643,0 ) ) -(109,103:15154199,17007313:501378,78643,0 -(109,103:15318053,17007313:173670,78643,0 +(105,103:15154199,17007313:501378,78643,0 +(105,103:15318053,17007313:173670,78643,0 ) ) -(109,103:15655577,17007313:501378,78643,0 -(109,103:15819431,17007313:173670,78643,0 +(105,103:15655577,17007313:501378,78643,0 +(105,103:15819431,17007313:173670,78643,0 ) ) -(109,103:16156955,17007313:501378,78643,0 -(109,103:16320809,17007313:173670,78643,0 +(105,103:16156955,17007313:501378,78643,0 +(105,103:16320809,17007313:173670,78643,0 ) ) -(109,103:16658333,17007313:501378,78643,0 -(109,103:16822187,17007313:173670,78643,0 +(105,103:16658333,17007313:501378,78643,0 +(105,103:16822187,17007313:173670,78643,0 ) ) -(109,103:17159711,17007313:501378,78643,0 -(109,103:17323565,17007313:173670,78643,0 +(105,103:17159711,17007313:501378,78643,0 +(105,103:17323565,17007313:173670,78643,0 ) ) -(109,103:17661089,17007313:501378,78643,0 -(109,103:17824943,17007313:173670,78643,0 +(105,103:17661089,17007313:501378,78643,0 +(105,103:17824943,17007313:173670,78643,0 ) ) -(109,103:18162467,17007313:501378,78643,0 -(109,103:18326321,17007313:173670,78643,0 +(105,103:18162467,17007313:501378,78643,0 +(105,103:18326321,17007313:173670,78643,0 ) ) -(109,103:18663845,17007313:501378,78643,0 -(109,103:18827699,17007313:173670,78643,0 +(105,103:18663845,17007313:501378,78643,0 +(105,103:18827699,17007313:173670,78643,0 ) ) -(109,103:19165223,17007313:501378,78643,0 -(109,103:19329077,17007313:173670,78643,0 +(105,103:19165223,17007313:501378,78643,0 +(105,103:19329077,17007313:173670,78643,0 ) ) -(109,103:19666601,17007313:501378,78643,0 -(109,103:19830455,17007313:173670,78643,0 +(105,103:19666601,17007313:501378,78643,0 +(105,103:19830455,17007313:173670,78643,0 ) ) -(109,103:20167979,17007313:501378,78643,0 -(109,103:20331833,17007313:173670,78643,0 +(105,103:20167979,17007313:501378,78643,0 +(105,103:20331833,17007313:173670,78643,0 ) ) -(109,103:20669357,17007313:501378,78643,0 -(109,103:20833211,17007313:173670,78643,0 +(105,103:20669357,17007313:501378,78643,0 +(105,103:20833211,17007313:173670,78643,0 ) ) -(109,103:21170735,17007313:501378,78643,0 -(109,103:21334589,17007313:173670,78643,0 +(105,103:21170735,17007313:501378,78643,0 +(105,103:21334589,17007313:173670,78643,0 ) ) -(109,103:21672113,17007313:501378,78643,0 -(109,103:21835967,17007313:173670,78643,0 +(105,103:21672113,17007313:501378,78643,0 +(105,103:21835967,17007313:173670,78643,0 ) ) -(109,103:22173491,17007313:501378,78643,0 -(109,103:22337345,17007313:173670,78643,0 +(105,103:22173491,17007313:501378,78643,0 +(105,103:22337345,17007313:173670,78643,0 ) ) -(109,103:22674869,17007313:501378,78643,0 -(109,103:22838723,17007313:173670,78643,0 +(105,103:22674869,17007313:501378,78643,0 +(105,103:22838723,17007313:173670,78643,0 ) ) -(109,103:23176247,17007313:501378,78643,0 -(109,103:23340101,17007313:173670,78643,0 +(105,103:23176247,17007313:501378,78643,0 +(105,103:23340101,17007313:173670,78643,0 ) ) -(109,103:23677625,17007313:501378,78643,0 -(109,103:23841479,17007313:173670,78643,0 +(105,103:23677625,17007313:501378,78643,0 +(105,103:23841479,17007313:173670,78643,0 ) ) -(109,103:24179003,17007313:501378,78643,0 -(109,103:24342857,17007313:173670,78643,0 +(105,103:24179003,17007313:501378,78643,0 +(105,103:24342857,17007313:173670,78643,0 ) ) -(109,103:24680381,17007313:501378,78643,0 -(109,103:24844235,17007313:173670,78643,0 +(105,103:24680381,17007313:501378,78643,0 +(105,103:24844235,17007313:173670,78643,0 ) ) -(109,103:25181759,17007313:501378,78643,0 -(109,103:25345613,17007313:173670,78643,0 +(105,103:25181759,17007313:501378,78643,0 +(105,103:25345613,17007313:173670,78643,0 ) ) -(109,103:25683137,17007313:501378,78643,0 -(109,103:25846991,17007313:173670,78643,0 +(105,103:25683137,17007313:501378,78643,0 +(105,103:25846991,17007313:173670,78643,0 ) ) -(109,103:26184515,17007313:501378,78643,0 -(109,103:26348369,17007313:173670,78643,0 +(105,103:26184515,17007313:501378,78643,0 +(105,103:26348369,17007313:173670,78643,0 ) ) -(109,103:26685893,17007313:501378,78643,0 -(109,103:26849747,17007313:173670,78643,0 +(105,103:26685893,17007313:501378,78643,0 +(105,103:26849747,17007313:173670,78643,0 ) ) -(109,103:27187271,17007313:501378,78643,0 -(109,103:27351125,17007313:173670,78643,0 +(105,103:27187271,17007313:501378,78643,0 +(105,103:27351125,17007313:173670,78643,0 ) ) -(109,103:27688649,17007313:501378,78643,0 -(109,103:27852503,17007313:173670,78643,0 +(105,103:27688649,17007313:501378,78643,0 +(105,103:27852503,17007313:173670,78643,0 ) ) -(109,103:28190027,17007313:501378,78643,0 -(109,103:28353881,17007313:173670,78643,0 +(105,103:28190027,17007313:501378,78643,0 +(105,103:28353881,17007313:173670,78643,0 ) ) -(109,103:28691405,17007313:501378,78643,0 -(109,103:28855259,17007313:173670,78643,0 +(105,103:28691405,17007313:501378,78643,0 +(105,103:28855259,17007313:173670,78643,0 ) ) -(109,103:29192783,17007313:501378,78643,0 -(109,103:29356637,17007313:173670,78643,0 +(105,103:29192783,17007313:501378,78643,0 +(105,103:29356637,17007313:173670,78643,0 ) ) -(109,103:29694161,17007313:501378,78643,0 -(109,103:29858015,17007313:173670,78643,0 +(105,103:29694161,17007313:501378,78643,0 +(105,103:29858015,17007313:173670,78643,0 ) ) -(109,103:30195539,17007313:501378,78643,0 -(109,103:30359393,17007313:173670,78643,0 +(105,103:30195539,17007313:501378,78643,0 +(105,103:30359393,17007313:173670,78643,0 ) ) -(109,103:30696917,17007313:501378,78643,0 -(109,103:30860771,17007313:173670,78643,0 +(105,103:30696917,17007313:501378,78643,0 +(105,103:30860771,17007313:173670,78643,0 ) ) -(109,103:31403378,17007313:1179650,485622,11795 -k109,103:31586881,17007313:183503 -g109,103:31786110,17007313 +(105,103:31239538,17007313:1343490,485622,11795 +k105,103:31586881,17007313:347343 +g105,103:31786110,17007313 ) -g109,103:30911858,17007313 -g109,103:32583028,17007313 +g105,103:30911858,17007313 +g105,103:32583028,17007313 ) -(109,105:6630773,17848801:25952256,505283,126483 -g109,105:11218293,17848801 -h109,105:11218293,17848801:2490370,0,0 -h109,105:13708663,17848801:0,0,0 -g109,105:9121143,17848801 -(109,105:9121143,17848801:2097150,485622,11795 -k109,105:11218293,17848801:554432 +(105,105:6630773,17848801:25952256,505283,126483 +g105,105:11218293,17848801 +h105,105:11218293,17848801:2490370,0,0 +h105,105:13708663,17848801:0,0,0 +g105,105:9121143,17848801 +(105,105:9121143,17848801:2097150,485622,11795 +k105,105:11218293,17848801:554432 ) -g109,105:13051335,17848801 -g109,105:13782061,17848801 -g109,105:14337150,17848801 -g109,105:16495251,17848801 -(109,105:16658333,17848801:501378,78643,0 -$109,105:16658333,17848801 -(109,105:16822187,17848801:173670,78643,0 +g105,105:13051335,17848801 +g105,105:13782061,17848801 +g105,105:14337150,17848801 +g105,105:16495251,17848801 +(105,105:16658333,17848801:501378,78643,0 +$105,105:16658333,17848801 +(105,105:16822187,17848801:173670,78643,0 ) -$109,105:17159711,17848801 +$105,105:17159711,17848801 ) -(109,105:17159711,17848801:501378,78643,0 -(109,105:17323565,17848801:173670,78643,0 +(105,105:17159711,17848801:501378,78643,0 +(105,105:17323565,17848801:173670,78643,0 ) ) -(109,105:17661089,17848801:501378,78643,0 -(109,105:17824943,17848801:173670,78643,0 +(105,105:17661089,17848801:501378,78643,0 +(105,105:17824943,17848801:173670,78643,0 ) ) -(109,105:18162467,17848801:501378,78643,0 -(109,105:18326321,17848801:173670,78643,0 +(105,105:18162467,17848801:501378,78643,0 +(105,105:18326321,17848801:173670,78643,0 ) ) -(109,105:18663845,17848801:501378,78643,0 -(109,105:18827699,17848801:173670,78643,0 +(105,105:18663845,17848801:501378,78643,0 +(105,105:18827699,17848801:173670,78643,0 ) ) -(109,105:19165223,17848801:501378,78643,0 -(109,105:19329077,17848801:173670,78643,0 +(105,105:19165223,17848801:501378,78643,0 +(105,105:19329077,17848801:173670,78643,0 ) ) -(109,105:19666601,17848801:501378,78643,0 -(109,105:19830455,17848801:173670,78643,0 +(105,105:19666601,17848801:501378,78643,0 +(105,105:19830455,17848801:173670,78643,0 ) ) -(109,105:20167979,17848801:501378,78643,0 -(109,105:20331833,17848801:173670,78643,0 +(105,105:20167979,17848801:501378,78643,0 +(105,105:20331833,17848801:173670,78643,0 ) ) -(109,105:20669357,17848801:501378,78643,0 -(109,105:20833211,17848801:173670,78643,0 +(105,105:20669357,17848801:501378,78643,0 +(105,105:20833211,17848801:173670,78643,0 ) ) -(109,105:21170735,17848801:501378,78643,0 -(109,105:21334589,17848801:173670,78643,0 +(105,105:21170735,17848801:501378,78643,0 +(105,105:21334589,17848801:173670,78643,0 ) ) -(109,105:21672113,17848801:501378,78643,0 -(109,105:21835967,17848801:173670,78643,0 +(105,105:21672113,17848801:501378,78643,0 +(105,105:21835967,17848801:173670,78643,0 ) ) -(109,105:22173491,17848801:501378,78643,0 -(109,105:22337345,17848801:173670,78643,0 +(105,105:22173491,17848801:501378,78643,0 +(105,105:22337345,17848801:173670,78643,0 ) ) -(109,105:22674869,17848801:501378,78643,0 -(109,105:22838723,17848801:173670,78643,0 +(105,105:22674869,17848801:501378,78643,0 +(105,105:22838723,17848801:173670,78643,0 ) ) -(109,105:23176247,17848801:501378,78643,0 -(109,105:23340101,17848801:173670,78643,0 +(105,105:23176247,17848801:501378,78643,0 +(105,105:23340101,17848801:173670,78643,0 ) ) -(109,105:23677625,17848801:501378,78643,0 -(109,105:23841479,17848801:173670,78643,0 +(105,105:23677625,17848801:501378,78643,0 +(105,105:23841479,17848801:173670,78643,0 ) ) -(109,105:24179003,17848801:501378,78643,0 -(109,105:24342857,17848801:173670,78643,0 +(105,105:24179003,17848801:501378,78643,0 +(105,105:24342857,17848801:173670,78643,0 ) ) -(109,105:24680381,17848801:501378,78643,0 -(109,105:24844235,17848801:173670,78643,0 +(105,105:24680381,17848801:501378,78643,0 +(105,105:24844235,17848801:173670,78643,0 ) ) -(109,105:25181759,17848801:501378,78643,0 -(109,105:25345613,17848801:173670,78643,0 +(105,105:25181759,17848801:501378,78643,0 +(105,105:25345613,17848801:173670,78643,0 ) ) -(109,105:25683137,17848801:501378,78643,0 -(109,105:25846991,17848801:173670,78643,0 +(105,105:25683137,17848801:501378,78643,0 +(105,105:25846991,17848801:173670,78643,0 ) ) -(109,105:26184515,17848801:501378,78643,0 -(109,105:26348369,17848801:173670,78643,0 +(105,105:26184515,17848801:501378,78643,0 +(105,105:26348369,17848801:173670,78643,0 ) ) -(109,105:26685893,17848801:501378,78643,0 -(109,105:26849747,17848801:173670,78643,0 +(105,105:26685893,17848801:501378,78643,0 +(105,105:26849747,17848801:173670,78643,0 ) ) -(109,105:27187271,17848801:501378,78643,0 -(109,105:27351125,17848801:173670,78643,0 +(105,105:27187271,17848801:501378,78643,0 +(105,105:27351125,17848801:173670,78643,0 ) ) -(109,105:27688649,17848801:501378,78643,0 -(109,105:27852503,17848801:173670,78643,0 +(105,105:27688649,17848801:501378,78643,0 +(105,105:27852503,17848801:173670,78643,0 ) ) -(109,105:28190027,17848801:501378,78643,0 -(109,105:28353881,17848801:173670,78643,0 +(105,105:28190027,17848801:501378,78643,0 +(105,105:28353881,17848801:173670,78643,0 ) ) -(109,105:28691405,17848801:501378,78643,0 -(109,105:28855259,17848801:173670,78643,0 +(105,105:28691405,17848801:501378,78643,0 +(105,105:28855259,17848801:173670,78643,0 ) ) -(109,105:29192783,17848801:501378,78643,0 -(109,105:29356637,17848801:173670,78643,0 +(105,105:29192783,17848801:501378,78643,0 +(105,105:29356637,17848801:173670,78643,0 ) ) -(109,105:29694161,17848801:501378,78643,0 -(109,105:29858015,17848801:173670,78643,0 +(105,105:29694161,17848801:501378,78643,0 +(105,105:29858015,17848801:173670,78643,0 ) ) -(109,105:30195539,17848801:501378,78643,0 -(109,105:30359393,17848801:173670,78643,0 +(105,105:30195539,17848801:501378,78643,0 +(105,105:30359393,17848801:173670,78643,0 ) ) -(109,105:30696917,17848801:501378,78643,0 -(109,105:30860771,17848801:173670,78643,0 +(105,105:30696917,17848801:501378,78643,0 +(105,105:30860771,17848801:173670,78643,0 ) ) -(109,105:31403379,17848801:1179650,485622,11795 -k109,105:31586882,17848801:183503 -g109,105:31786111,17848801 +(105,105:31239539,17848801:1343490,485622,11795 +k105,105:31586882,17848801:347343 +g105,105:31786111,17848801 ) -g109,105:30911859,17848801 -g109,105:32583029,17848801 +g105,105:30911859,17848801 +g105,105:32583029,17848801 ) -(109,107:6630773,18690289:25952256,505283,126483 -g109,107:11218293,18690289 -h109,107:11218293,18690289:2490370,0,0 -h109,107:13708663,18690289:0,0,0 -g109,107:9121143,18690289 -(109,107:9121143,18690289:2097150,485622,11795 -k109,107:11218293,18690289:554432 +(105,107:6630773,18690289:25952256,505283,126483 +g105,107:11218293,18690289 +h105,107:11218293,18690289:2490370,0,0 +h105,107:13708663,18690289:0,0,0 +g105,107:9121143,18690289 +(105,107:9121143,18690289:2097150,485622,11795 +k105,107:11218293,18690289:554432 ) -g109,107:12838343,18690289 -g109,107:13852840,18690289 -g109,107:14920421,18690289 -g109,107:16212135,18690289 -g109,107:16767224,18690289 -g109,107:18925325,18690289 -(109,107:19165223,18690289:501378,78643,0 -$109,107:19165223,18690289 -(109,107:19329077,18690289:173670,78643,0 +g105,107:12838343,18690289 +g105,107:13852840,18690289 +g105,107:14920421,18690289 +g105,107:16212135,18690289 +g105,107:16767224,18690289 +g105,107:18925325,18690289 +(105,107:19165223,18690289:501378,78643,0 +$105,107:19165223,18690289 +(105,107:19329077,18690289:173670,78643,0 ) -$109,107:19666601,18690289 +$105,107:19666601,18690289 ) -(109,107:19666601,18690289:501378,78643,0 -(109,107:19830455,18690289:173670,78643,0 +(105,107:19666601,18690289:501378,78643,0 +(105,107:19830455,18690289:173670,78643,0 ) ) -(109,107:20167979,18690289:501378,78643,0 -(109,107:20331833,18690289:173670,78643,0 +(105,107:20167979,18690289:501378,78643,0 +(105,107:20331833,18690289:173670,78643,0 ) ) -(109,107:20669357,18690289:501378,78643,0 -(109,107:20833211,18690289:173670,78643,0 +(105,107:20669357,18690289:501378,78643,0 +(105,107:20833211,18690289:173670,78643,0 ) ) -(109,107:21170735,18690289:501378,78643,0 -(109,107:21334589,18690289:173670,78643,0 +(105,107:21170735,18690289:501378,78643,0 +(105,107:21334589,18690289:173670,78643,0 ) ) -(109,107:21672113,18690289:501378,78643,0 -(109,107:21835967,18690289:173670,78643,0 +(105,107:21672113,18690289:501378,78643,0 +(105,107:21835967,18690289:173670,78643,0 ) ) -(109,107:22173491,18690289:501378,78643,0 -(109,107:22337345,18690289:173670,78643,0 +(105,107:22173491,18690289:501378,78643,0 +(105,107:22337345,18690289:173670,78643,0 ) ) -(109,107:22674869,18690289:501378,78643,0 -(109,107:22838723,18690289:173670,78643,0 +(105,107:22674869,18690289:501378,78643,0 +(105,107:22838723,18690289:173670,78643,0 ) ) -(109,107:23176247,18690289:501378,78643,0 -(109,107:23340101,18690289:173670,78643,0 +(105,107:23176247,18690289:501378,78643,0 +(105,107:23340101,18690289:173670,78643,0 ) ) -(109,107:23677625,18690289:501378,78643,0 -(109,107:23841479,18690289:173670,78643,0 +(105,107:23677625,18690289:501378,78643,0 +(105,107:23841479,18690289:173670,78643,0 ) ) -(109,107:24179003,18690289:501378,78643,0 -(109,107:24342857,18690289:173670,78643,0 +(105,107:24179003,18690289:501378,78643,0 +(105,107:24342857,18690289:173670,78643,0 ) ) -(109,107:24680381,18690289:501378,78643,0 -(109,107:24844235,18690289:173670,78643,0 +(105,107:24680381,18690289:501378,78643,0 +(105,107:24844235,18690289:173670,78643,0 ) ) -(109,107:25181759,18690289:501378,78643,0 -(109,107:25345613,18690289:173670,78643,0 +(105,107:25181759,18690289:501378,78643,0 +(105,107:25345613,18690289:173670,78643,0 ) ) -(109,107:25683137,18690289:501378,78643,0 -(109,107:25846991,18690289:173670,78643,0 +(105,107:25683137,18690289:501378,78643,0 +(105,107:25846991,18690289:173670,78643,0 ) ) -(109,107:26184515,18690289:501378,78643,0 -(109,107:26348369,18690289:173670,78643,0 +(105,107:26184515,18690289:501378,78643,0 +(105,107:26348369,18690289:173670,78643,0 ) ) -(109,107:26685893,18690289:501378,78643,0 -(109,107:26849747,18690289:173670,78643,0 +(105,107:26685893,18690289:501378,78643,0 +(105,107:26849747,18690289:173670,78643,0 ) ) -(109,107:27187271,18690289:501378,78643,0 -(109,107:27351125,18690289:173670,78643,0 +(105,107:27187271,18690289:501378,78643,0 +(105,107:27351125,18690289:173670,78643,0 ) ) -(109,107:27688649,18690289:501378,78643,0 -(109,107:27852503,18690289:173670,78643,0 +(105,107:27688649,18690289:501378,78643,0 +(105,107:27852503,18690289:173670,78643,0 ) ) -(109,107:28190027,18690289:501378,78643,0 -(109,107:28353881,18690289:173670,78643,0 +(105,107:28190027,18690289:501378,78643,0 +(105,107:28353881,18690289:173670,78643,0 ) ) -(109,107:28691405,18690289:501378,78643,0 -(109,107:28855259,18690289:173670,78643,0 +(105,107:28691405,18690289:501378,78643,0 +(105,107:28855259,18690289:173670,78643,0 ) ) -(109,107:29192783,18690289:501378,78643,0 -(109,107:29356637,18690289:173670,78643,0 +(105,107:29192783,18690289:501378,78643,0 +(105,107:29356637,18690289:173670,78643,0 ) ) -(109,107:29694161,18690289:501378,78643,0 -(109,107:29858015,18690289:173670,78643,0 +(105,107:29694161,18690289:501378,78643,0 +(105,107:29858015,18690289:173670,78643,0 ) ) -(109,107:30195539,18690289:501378,78643,0 -(109,107:30359393,18690289:173670,78643,0 +(105,107:30195539,18690289:501378,78643,0 +(105,107:30359393,18690289:173670,78643,0 ) ) -(109,107:30696917,18690289:501378,78643,0 -(109,107:30860771,18690289:173670,78643,0 +(105,107:30696917,18690289:501378,78643,0 +(105,107:30860771,18690289:173670,78643,0 ) ) -(109,107:31403379,18690289:1179650,485622,11795 -k109,107:31586882,18690289:183503 -g109,107:31786111,18690289 +(105,107:31239539,18690289:1343490,485622,11795 +k105,107:31586882,18690289:347343 +g105,107:31786111,18690289 ) -g109,107:30911859,18690289 -g109,107:32583029,18690289 +g105,107:30911859,18690289 +g105,107:32583029,18690289 ) -(109,109:6630773,19531777:25952256,485622,126483 -g109,109:11218293,19531777 -h109,109:11218293,19531777:2490370,0,0 -h109,109:13708663,19531777:0,0,0 -g109,109:9121143,19531777 -(109,109:9121143,19531777:2097150,485622,11795 -k109,109:11218293,19531777:554432 +(105,109:6630773,19531777:25952256,485622,126483 +g105,109:11218293,19531777 +h105,109:11218293,19531777:2490370,0,0 +h105,109:13708663,19531777:0,0,0 +g105,109:9121143,19531777 +(105,109:9121143,19531777:2097150,485622,11795 +k105,109:11218293,19531777:554432 ) -g109,109:12838343,19531777 -g109,109:13689000,19531777 -g109,109:15503036,19531777 -g109,109:16058125,19531777 -g109,109:17889201,19531777 -(109,109:18162467,19531777:501378,78643,0 -$109,109:18162467,19531777 -(109,109:18326321,19531777:173670,78643,0 +g105,109:12838343,19531777 +g105,109:13689000,19531777 +g105,109:15503036,19531777 +g105,109:16058125,19531777 +g105,109:17889201,19531777 +(105,109:18162467,19531777:501378,78643,0 +$105,109:18162467,19531777 +(105,109:18326321,19531777:173670,78643,0 ) -$109,109:18663845,19531777 +$105,109:18663845,19531777 ) -(109,109:18663845,19531777:501378,78643,0 -(109,109:18827699,19531777:173670,78643,0 +(105,109:18663845,19531777:501378,78643,0 +(105,109:18827699,19531777:173670,78643,0 ) ) -(109,109:19165223,19531777:501378,78643,0 -(109,109:19329077,19531777:173670,78643,0 +(105,109:19165223,19531777:501378,78643,0 +(105,109:19329077,19531777:173670,78643,0 ) ) -(109,109:19666601,19531777:501378,78643,0 -(109,109:19830455,19531777:173670,78643,0 +(105,109:19666601,19531777:501378,78643,0 +(105,109:19830455,19531777:173670,78643,0 ) ) -(109,109:20167979,19531777:501378,78643,0 -(109,109:20331833,19531777:173670,78643,0 +(105,109:20167979,19531777:501378,78643,0 +(105,109:20331833,19531777:173670,78643,0 ) ) -(109,109:20669357,19531777:501378,78643,0 -(109,109:20833211,19531777:173670,78643,0 +(105,109:20669357,19531777:501378,78643,0 +(105,109:20833211,19531777:173670,78643,0 ) ) -(109,109:21170735,19531777:501378,78643,0 -(109,109:21334589,19531777:173670,78643,0 +(105,109:21170735,19531777:501378,78643,0 +(105,109:21334589,19531777:173670,78643,0 ) ) -(109,109:21672113,19531777:501378,78643,0 -(109,109:21835967,19531777:173670,78643,0 +(105,109:21672113,19531777:501378,78643,0 +(105,109:21835967,19531777:173670,78643,0 ) ) -(109,109:22173491,19531777:501378,78643,0 -(109,109:22337345,19531777:173670,78643,0 +(105,109:22173491,19531777:501378,78643,0 +(105,109:22337345,19531777:173670,78643,0 ) ) -(109,109:22674869,19531777:501378,78643,0 -(109,109:22838723,19531777:173670,78643,0 +(105,109:22674869,19531777:501378,78643,0 +(105,109:22838723,19531777:173670,78643,0 ) ) -(109,109:23176247,19531777:501378,78643,0 -(109,109:23340101,19531777:173670,78643,0 +(105,109:23176247,19531777:501378,78643,0 +(105,109:23340101,19531777:173670,78643,0 ) ) -(109,109:23677625,19531777:501378,78643,0 -(109,109:23841479,19531777:173670,78643,0 +(105,109:23677625,19531777:501378,78643,0 +(105,109:23841479,19531777:173670,78643,0 ) ) -(109,109:24179003,19531777:501378,78643,0 -(109,109:24342857,19531777:173670,78643,0 +(105,109:24179003,19531777:501378,78643,0 +(105,109:24342857,19531777:173670,78643,0 ) ) -(109,109:24680381,19531777:501378,78643,0 -(109,109:24844235,19531777:173670,78643,0 +(105,109:24680381,19531777:501378,78643,0 +(105,109:24844235,19531777:173670,78643,0 ) ) -(109,109:25181759,19531777:501378,78643,0 -(109,109:25345613,19531777:173670,78643,0 +(105,109:25181759,19531777:501378,78643,0 +(105,109:25345613,19531777:173670,78643,0 ) ) -(109,109:25683137,19531777:501378,78643,0 -(109,109:25846991,19531777:173670,78643,0 +(105,109:25683137,19531777:501378,78643,0 +(105,109:25846991,19531777:173670,78643,0 ) ) -(109,109:26184515,19531777:501378,78643,0 -(109,109:26348369,19531777:173670,78643,0 +(105,109:26184515,19531777:501378,78643,0 +(105,109:26348369,19531777:173670,78643,0 ) ) -(109,109:26685893,19531777:501378,78643,0 -(109,109:26849747,19531777:173670,78643,0 +(105,109:26685893,19531777:501378,78643,0 +(105,109:26849747,19531777:173670,78643,0 ) ) -(109,109:27187271,19531777:501378,78643,0 -(109,109:27351125,19531777:173670,78643,0 +(105,109:27187271,19531777:501378,78643,0 +(105,109:27351125,19531777:173670,78643,0 ) ) -(109,109:27688649,19531777:501378,78643,0 -(109,109:27852503,19531777:173670,78643,0 +(105,109:27688649,19531777:501378,78643,0 +(105,109:27852503,19531777:173670,78643,0 ) ) -(109,109:28190027,19531777:501378,78643,0 -(109,109:28353881,19531777:173670,78643,0 +(105,109:28190027,19531777:501378,78643,0 +(105,109:28353881,19531777:173670,78643,0 ) ) -(109,109:28691405,19531777:501378,78643,0 -(109,109:28855259,19531777:173670,78643,0 +(105,109:28691405,19531777:501378,78643,0 +(105,109:28855259,19531777:173670,78643,0 ) ) -(109,109:29192783,19531777:501378,78643,0 -(109,109:29356637,19531777:173670,78643,0 +(105,109:29192783,19531777:501378,78643,0 +(105,109:29356637,19531777:173670,78643,0 ) ) -(109,109:29694161,19531777:501378,78643,0 -(109,109:29858015,19531777:173670,78643,0 +(105,109:29694161,19531777:501378,78643,0 +(105,109:29858015,19531777:173670,78643,0 ) ) -(109,109:30195539,19531777:501378,78643,0 -(109,109:30359393,19531777:173670,78643,0 +(105,109:30195539,19531777:501378,78643,0 +(105,109:30359393,19531777:173670,78643,0 ) ) -(109,109:30696917,19531777:501378,78643,0 -(109,109:30860771,19531777:173670,78643,0 +(105,109:30696917,19531777:501378,78643,0 +(105,109:30860771,19531777:173670,78643,0 ) ) -(109,109:31403379,19531777:1179650,485622,11795 -k109,109:31586882,19531777:183503 -g109,109:31786111,19531777 +(105,109:31239539,19531777:1343490,485622,11795 +k105,109:31586882,19531777:347343 +g105,109:31786111,19531777 ) -g109,109:30911859,19531777 -g109,109:32583029,19531777 +g105,109:30911859,19531777 +g105,109:32583029,19531777 ) -(109,111:6630773,20373265:25952256,505283,126483 -g109,111:11218293,20373265 -h109,111:11218293,20373265:2490370,0,0 -h109,111:13708663,20373265:0,0,0 -g109,111:9121143,20373265 -(109,111:9121143,20373265:2097150,485622,11795 -k109,111:11218293,20373265:554432 +(105,111:6630773,20373265:25952256,505283,126483 +g105,111:11218293,20373265 +h105,111:11218293,20373265:2490370,0,0 +h105,111:13708663,20373265:0,0,0 +g105,111:9121143,20373265 +(105,111:9121143,20373265:2097150,485622,11795 +k105,111:11218293,20373265:554432 ) -g109,111:12614209,20373265 -g109,111:14343704,20373265 -g109,111:15194361,20373265 -g109,111:16141356,20373265 -g109,111:21314112,20373265 -g109,111:22164769,20373265 -g109,111:24300587,20373265 -(109,111:24680381,20373265:501378,78643,0 -$109,111:24680381,20373265 -(109,111:24844235,20373265:173670,78643,0 +g105,111:12614209,20373265 +g105,111:14343704,20373265 +g105,111:15194361,20373265 +g105,111:16141356,20373265 +g105,111:21314112,20373265 +g105,111:22164769,20373265 +g105,111:24300587,20373265 +(105,111:24680381,20373265:501378,78643,0 +$105,111:24680381,20373265 +(105,111:24844235,20373265:173670,78643,0 ) -$109,111:25181759,20373265 +$105,111:25181759,20373265 ) -(109,111:25181759,20373265:501378,78643,0 -(109,111:25345613,20373265:173670,78643,0 +(105,111:25181759,20373265:501378,78643,0 +(105,111:25345613,20373265:173670,78643,0 ) ) -(109,111:25683137,20373265:501378,78643,0 -(109,111:25846991,20373265:173670,78643,0 +(105,111:25683137,20373265:501378,78643,0 +(105,111:25846991,20373265:173670,78643,0 ) ) -(109,111:26184515,20373265:501378,78643,0 -(109,111:26348369,20373265:173670,78643,0 +(105,111:26184515,20373265:501378,78643,0 +(105,111:26348369,20373265:173670,78643,0 ) ) -(109,111:26685893,20373265:501378,78643,0 -(109,111:26849747,20373265:173670,78643,0 +(105,111:26685893,20373265:501378,78643,0 +(105,111:26849747,20373265:173670,78643,0 ) ) -(109,111:27187271,20373265:501378,78643,0 -(109,111:27351125,20373265:173670,78643,0 +(105,111:27187271,20373265:501378,78643,0 +(105,111:27351125,20373265:173670,78643,0 ) ) -(109,111:27688649,20373265:501378,78643,0 -(109,111:27852503,20373265:173670,78643,0 +(105,111:27688649,20373265:501378,78643,0 +(105,111:27852503,20373265:173670,78643,0 ) ) -(109,111:28190027,20373265:501378,78643,0 -(109,111:28353881,20373265:173670,78643,0 +(105,111:28190027,20373265:501378,78643,0 +(105,111:28353881,20373265:173670,78643,0 ) ) -(109,111:28691405,20373265:501378,78643,0 -(109,111:28855259,20373265:173670,78643,0 +(105,111:28691405,20373265:501378,78643,0 +(105,111:28855259,20373265:173670,78643,0 ) ) -(109,111:29192783,20373265:501378,78643,0 -(109,111:29356637,20373265:173670,78643,0 +(105,111:29192783,20373265:501378,78643,0 +(105,111:29356637,20373265:173670,78643,0 ) ) -(109,111:29694161,20373265:501378,78643,0 -(109,111:29858015,20373265:173670,78643,0 +(105,111:29694161,20373265:501378,78643,0 +(105,111:29858015,20373265:173670,78643,0 ) ) -(109,111:30195539,20373265:501378,78643,0 -(109,111:30359393,20373265:173670,78643,0 +(105,111:30195539,20373265:501378,78643,0 +(105,111:30359393,20373265:173670,78643,0 ) ) -(109,111:30696917,20373265:501378,78643,0 -(109,111:30860771,20373265:173670,78643,0 +(105,111:30696917,20373265:501378,78643,0 +(105,111:30860771,20373265:173670,78643,0 ) ) -(109,111:31403379,20373265:1179650,485622,11795 -k109,111:31586882,20373265:183503 -g109,111:31786111,20373265 +(105,111:31239539,20373265:1343490,485622,11795 +k105,111:31586882,20373265:347343 +g105,111:31786111,20373265 ) -g109,111:30911859,20373265 -g109,111:32583029,20373265 +g105,111:30911859,20373265 +g105,111:32583029,20373265 ) -(109,113:6630773,21214753:25952256,505283,134348 -g109,113:11218293,21214753 -h109,113:11218293,21214753:2490370,0,0 -h109,113:13708663,21214753:0,0,0 -g109,113:9121143,21214753 -(109,113:9121143,21214753:2097150,485622,11795 -k109,113:11218293,21214753:554432 +(105,113:6630773,21214753:25952256,505283,134348 +g105,113:11218293,21214753 +h105,113:11218293,21214753:2490370,0,0 +h105,113:13708663,21214753:0,0,0 +g105,113:9121143,21214753 +(105,113:9121143,21214753:2097150,485622,11795 +k105,113:11218293,21214753:554432 ) -g109,113:14822117,21214753 -g109,113:16983494,21214753 -(109,113:17159711,21214753:501378,78643,0 -$109,113:17159711,21214753 -(109,113:17323565,21214753:173670,78643,0 +g105,113:14822117,21214753 +g105,113:16983494,21214753 +(105,113:17159711,21214753:501378,78643,0 +$105,113:17159711,21214753 +(105,113:17323565,21214753:173670,78643,0 ) -$109,113:17661089,21214753 +$105,113:17661089,21214753 ) -(109,113:17661089,21214753:501378,78643,0 -(109,113:17824943,21214753:173670,78643,0 +(105,113:17661089,21214753:501378,78643,0 +(105,113:17824943,21214753:173670,78643,0 ) ) -(109,113:18162467,21214753:501378,78643,0 -(109,113:18326321,21214753:173670,78643,0 +(105,113:18162467,21214753:501378,78643,0 +(105,113:18326321,21214753:173670,78643,0 ) ) -(109,113:18663845,21214753:501378,78643,0 -(109,113:18827699,21214753:173670,78643,0 +(105,113:18663845,21214753:501378,78643,0 +(105,113:18827699,21214753:173670,78643,0 ) ) -(109,113:19165223,21214753:501378,78643,0 -(109,113:19329077,21214753:173670,78643,0 +(105,113:19165223,21214753:501378,78643,0 +(105,113:19329077,21214753:173670,78643,0 ) ) -(109,113:19666601,21214753:501378,78643,0 -(109,113:19830455,21214753:173670,78643,0 +(105,113:19666601,21214753:501378,78643,0 +(105,113:19830455,21214753:173670,78643,0 ) ) -(109,113:20167979,21214753:501378,78643,0 -(109,113:20331833,21214753:173670,78643,0 +(105,113:20167979,21214753:501378,78643,0 +(105,113:20331833,21214753:173670,78643,0 ) ) -(109,113:20669357,21214753:501378,78643,0 -(109,113:20833211,21214753:173670,78643,0 +(105,113:20669357,21214753:501378,78643,0 +(105,113:20833211,21214753:173670,78643,0 ) ) -(109,113:21170735,21214753:501378,78643,0 -(109,113:21334589,21214753:173670,78643,0 +(105,113:21170735,21214753:501378,78643,0 +(105,113:21334589,21214753:173670,78643,0 ) ) -(109,113:21672113,21214753:501378,78643,0 -(109,113:21835967,21214753:173670,78643,0 +(105,113:21672113,21214753:501378,78643,0 +(105,113:21835967,21214753:173670,78643,0 ) ) -(109,113:22173491,21214753:501378,78643,0 -(109,113:22337345,21214753:173670,78643,0 +(105,113:22173491,21214753:501378,78643,0 +(105,113:22337345,21214753:173670,78643,0 ) ) -(109,113:22674869,21214753:501378,78643,0 -(109,113:22838723,21214753:173670,78643,0 +(105,113:22674869,21214753:501378,78643,0 +(105,113:22838723,21214753:173670,78643,0 ) ) -(109,113:23176247,21214753:501378,78643,0 -(109,113:23340101,21214753:173670,78643,0 +(105,113:23176247,21214753:501378,78643,0 +(105,113:23340101,21214753:173670,78643,0 ) ) -(109,113:23677625,21214753:501378,78643,0 -(109,113:23841479,21214753:173670,78643,0 +(105,113:23677625,21214753:501378,78643,0 +(105,113:23841479,21214753:173670,78643,0 ) ) -(109,113:24179003,21214753:501378,78643,0 -(109,113:24342857,21214753:173670,78643,0 +(105,113:24179003,21214753:501378,78643,0 +(105,113:24342857,21214753:173670,78643,0 ) ) -(109,113:24680381,21214753:501378,78643,0 -(109,113:24844235,21214753:173670,78643,0 +(105,113:24680381,21214753:501378,78643,0 +(105,113:24844235,21214753:173670,78643,0 ) ) -(109,113:25181759,21214753:501378,78643,0 -(109,113:25345613,21214753:173670,78643,0 +(105,113:25181759,21214753:501378,78643,0 +(105,113:25345613,21214753:173670,78643,0 ) ) -(109,113:25683137,21214753:501378,78643,0 -(109,113:25846991,21214753:173670,78643,0 +(105,113:25683137,21214753:501378,78643,0 +(105,113:25846991,21214753:173670,78643,0 ) ) -(109,113:26184515,21214753:501378,78643,0 -(109,113:26348369,21214753:173670,78643,0 +(105,113:26184515,21214753:501378,78643,0 +(105,113:26348369,21214753:173670,78643,0 ) ) -(109,113:26685893,21214753:501378,78643,0 -(109,113:26849747,21214753:173670,78643,0 +(105,113:26685893,21214753:501378,78643,0 +(105,113:26849747,21214753:173670,78643,0 ) ) -(109,113:27187271,21214753:501378,78643,0 -(109,113:27351125,21214753:173670,78643,0 +(105,113:27187271,21214753:501378,78643,0 +(105,113:27351125,21214753:173670,78643,0 ) ) -(109,113:27688649,21214753:501378,78643,0 -(109,113:27852503,21214753:173670,78643,0 +(105,113:27688649,21214753:501378,78643,0 +(105,113:27852503,21214753:173670,78643,0 ) ) -(109,113:28190027,21214753:501378,78643,0 -(109,113:28353881,21214753:173670,78643,0 +(105,113:28190027,21214753:501378,78643,0 +(105,113:28353881,21214753:173670,78643,0 ) ) -(109,113:28691405,21214753:501378,78643,0 -(109,113:28855259,21214753:173670,78643,0 +(105,113:28691405,21214753:501378,78643,0 +(105,113:28855259,21214753:173670,78643,0 ) ) -(109,113:29192783,21214753:501378,78643,0 -(109,113:29356637,21214753:173670,78643,0 +(105,113:29192783,21214753:501378,78643,0 +(105,113:29356637,21214753:173670,78643,0 ) ) -(109,113:29694161,21214753:501378,78643,0 -(109,113:29858015,21214753:173670,78643,0 +(105,113:29694161,21214753:501378,78643,0 +(105,113:29858015,21214753:173670,78643,0 ) ) -(109,113:30195539,21214753:501378,78643,0 -(109,113:30359393,21214753:173670,78643,0 +(105,113:30195539,21214753:501378,78643,0 +(105,113:30359393,21214753:173670,78643,0 ) ) -(109,113:30696917,21214753:501378,78643,0 -(109,113:30860771,21214753:173670,78643,0 +(105,113:30696917,21214753:501378,78643,0 +(105,113:30860771,21214753:173670,78643,0 ) ) -(109,113:31403379,21214753:1179650,485622,11795 -k109,113:31586882,21214753:183503 -g109,113:31786111,21214753 +(105,113:31239539,21214753:1343490,485622,11795 +k105,113:31586882,21214753:347343 +g105,113:31786111,21214753 ) -g109,113:30911859,21214753 -g109,113:32583029,21214753 +g105,113:30911859,21214753 +g105,113:32583029,21214753 ) -(109,115:6630773,22056241:25952256,513147,11795 -g109,115:9121143,22056241 -h109,115:9121143,22056241:983040,0,0 -h109,115:10104183,22056241:0,0,0 -g109,115:7613813,22056241 -(109,115:7613813,22056241:1507330,485622,11795 -k109,115:9121143,22056241:536742 +(105,115:6630773,22056241:25952256,513147,11795 +g105,115:9121143,22056241 +h105,115:9121143,22056241:983040,0,0 +h105,115:10104183,22056241:0,0,0 +g105,115:7613813,22056241 +(105,115:7613813,22056241:1507330,485622,11795 +k105,115:9121143,22056241:536742 ) -g109,115:11730131,22056241 -g109,115:12588652,22056241 -g109,115:15863486,22056241 -g109,115:17412757,22056241 -g109,115:17412757,22056241 -(109,115:17661089,22056241:501378,78643,0 -$109,115:17661089,22056241 -(109,115:17824943,22056241:173670,78643,0 +g105,115:11730131,22056241 +g105,115:12588652,22056241 +g105,115:15863486,22056241 +g105,115:17412757,22056241 +g105,115:17412757,22056241 +(105,115:17661089,22056241:501378,78643,0 +$105,115:17661089,22056241 +(105,115:17824943,22056241:173670,78643,0 ) -$109,115:18162467,22056241 +$105,115:18162467,22056241 ) -(109,115:18162467,22056241:501378,78643,0 -(109,115:18326321,22056241:173670,78643,0 +(105,115:18162467,22056241:501378,78643,0 +(105,115:18326321,22056241:173670,78643,0 ) ) -(109,115:18663845,22056241:501378,78643,0 -(109,115:18827699,22056241:173670,78643,0 +(105,115:18663845,22056241:501378,78643,0 +(105,115:18827699,22056241:173670,78643,0 ) ) -(109,115:19165223,22056241:501378,78643,0 -(109,115:19329077,22056241:173670,78643,0 +(105,115:19165223,22056241:501378,78643,0 +(105,115:19329077,22056241:173670,78643,0 ) ) -(109,115:19666601,22056241:501378,78643,0 -(109,115:19830455,22056241:173670,78643,0 +(105,115:19666601,22056241:501378,78643,0 +(105,115:19830455,22056241:173670,78643,0 ) ) -(109,115:20167979,22056241:501378,78643,0 -(109,115:20331833,22056241:173670,78643,0 +(105,115:20167979,22056241:501378,78643,0 +(105,115:20331833,22056241:173670,78643,0 ) ) -(109,115:20669357,22056241:501378,78643,0 -(109,115:20833211,22056241:173670,78643,0 +(105,115:20669357,22056241:501378,78643,0 +(105,115:20833211,22056241:173670,78643,0 ) ) -(109,115:21170735,22056241:501378,78643,0 -(109,115:21334589,22056241:173670,78643,0 +(105,115:21170735,22056241:501378,78643,0 +(105,115:21334589,22056241:173670,78643,0 ) ) -(109,115:21672113,22056241:501378,78643,0 -(109,115:21835967,22056241:173670,78643,0 +(105,115:21672113,22056241:501378,78643,0 +(105,115:21835967,22056241:173670,78643,0 ) ) -(109,115:22173491,22056241:501378,78643,0 -(109,115:22337345,22056241:173670,78643,0 +(105,115:22173491,22056241:501378,78643,0 +(105,115:22337345,22056241:173670,78643,0 ) ) -(109,115:22674869,22056241:501378,78643,0 -(109,115:22838723,22056241:173670,78643,0 +(105,115:22674869,22056241:501378,78643,0 +(105,115:22838723,22056241:173670,78643,0 ) ) -(109,115:23176247,22056241:501378,78643,0 -(109,115:23340101,22056241:173670,78643,0 +(105,115:23176247,22056241:501378,78643,0 +(105,115:23340101,22056241:173670,78643,0 ) ) -(109,115:23677625,22056241:501378,78643,0 -(109,115:23841479,22056241:173670,78643,0 +(105,115:23677625,22056241:501378,78643,0 +(105,115:23841479,22056241:173670,78643,0 ) ) -(109,115:24179003,22056241:501378,78643,0 -(109,115:24342857,22056241:173670,78643,0 +(105,115:24179003,22056241:501378,78643,0 +(105,115:24342857,22056241:173670,78643,0 ) ) -(109,115:24680381,22056241:501378,78643,0 -(109,115:24844235,22056241:173670,78643,0 +(105,115:24680381,22056241:501378,78643,0 +(105,115:24844235,22056241:173670,78643,0 ) ) -(109,115:25181759,22056241:501378,78643,0 -(109,115:25345613,22056241:173670,78643,0 +(105,115:25181759,22056241:501378,78643,0 +(105,115:25345613,22056241:173670,78643,0 ) ) -(109,115:25683137,22056241:501378,78643,0 -(109,115:25846991,22056241:173670,78643,0 +(105,115:25683137,22056241:501378,78643,0 +(105,115:25846991,22056241:173670,78643,0 ) ) -(109,115:26184515,22056241:501378,78643,0 -(109,115:26348369,22056241:173670,78643,0 +(105,115:26184515,22056241:501378,78643,0 +(105,115:26348369,22056241:173670,78643,0 ) ) -(109,115:26685893,22056241:501378,78643,0 -(109,115:26849747,22056241:173670,78643,0 +(105,115:26685893,22056241:501378,78643,0 +(105,115:26849747,22056241:173670,78643,0 ) ) -(109,115:27187271,22056241:501378,78643,0 -(109,115:27351125,22056241:173670,78643,0 +(105,115:27187271,22056241:501378,78643,0 +(105,115:27351125,22056241:173670,78643,0 ) ) -(109,115:27688649,22056241:501378,78643,0 -(109,115:27852503,22056241:173670,78643,0 +(105,115:27688649,22056241:501378,78643,0 +(105,115:27852503,22056241:173670,78643,0 ) ) -(109,115:28190027,22056241:501378,78643,0 -(109,115:28353881,22056241:173670,78643,0 +(105,115:28190027,22056241:501378,78643,0 +(105,115:28353881,22056241:173670,78643,0 ) ) -(109,115:28691405,22056241:501378,78643,0 -(109,115:28855259,22056241:173670,78643,0 +(105,115:28691405,22056241:501378,78643,0 +(105,115:28855259,22056241:173670,78643,0 ) ) -(109,115:29192783,22056241:501378,78643,0 -(109,115:29356637,22056241:173670,78643,0 +(105,115:29192783,22056241:501378,78643,0 +(105,115:29356637,22056241:173670,78643,0 ) ) -(109,115:29694161,22056241:501378,78643,0 -(109,115:29858015,22056241:173670,78643,0 +(105,115:29694161,22056241:501378,78643,0 +(105,115:29858015,22056241:173670,78643,0 ) ) -(109,115:30195539,22056241:501378,78643,0 -(109,115:30359393,22056241:173670,78643,0 +(105,115:30195539,22056241:501378,78643,0 +(105,115:30359393,22056241:173670,78643,0 ) ) -(109,115:30696917,22056241:501378,78643,0 -(109,115:30860771,22056241:173670,78643,0 +(105,115:30696917,22056241:501378,78643,0 +(105,115:30860771,22056241:173670,78643,0 ) ) -(109,115:31403379,22056241:1179650,485622,11795 -k109,115:31586882,22056241:183503 -g109,115:31786111,22056241 +(105,115:31239539,22056241:1343490,485622,11795 +k105,115:31586882,22056241:347343 +g105,115:31786111,22056241 ) -g109,115:30911859,22056241 -g109,115:32583029,22056241 +g105,115:30911859,22056241 +g105,115:32583029,22056241 ) -(109,117:6630773,22897729:25952256,505283,126483 -g109,117:11218293,22897729 -h109,117:11218293,22897729:2490370,0,0 -h109,117:13708663,22897729:0,0,0 -g109,117:9121143,22897729 -(109,117:9121143,22897729:2097150,485622,11795 -k109,117:11218293,22897729:554432 +(105,117:6630773,22897729:25952256,505283,126483 +g105,117:11218293,22897729 +h105,117:11218293,22897729:2490370,0,0 +h105,117:13708663,22897729:0,0,0 +g105,117:9121143,22897729 +(105,117:9121143,22897729:2097150,485622,11795 +k105,117:11218293,22897729:554432 ) -g109,117:14953189,22897729 -g109,117:18469851,22897729 -(109,117:18663845,22897729:501378,78643,0 -$109,117:18663845,22897729 -(109,117:18827699,22897729:173670,78643,0 +g105,117:14953189,22897729 +g105,117:18469851,22897729 +(105,117:18663845,22897729:501378,78643,0 +$105,117:18663845,22897729 +(105,117:18827699,22897729:173670,78643,0 ) -$109,117:19165223,22897729 +$105,117:19165223,22897729 ) -(109,117:19165223,22897729:501378,78643,0 -(109,117:19329077,22897729:173670,78643,0 +(105,117:19165223,22897729:501378,78643,0 +(105,117:19329077,22897729:173670,78643,0 ) ) -(109,117:19666601,22897729:501378,78643,0 -(109,117:19830455,22897729:173670,78643,0 +(105,117:19666601,22897729:501378,78643,0 +(105,117:19830455,22897729:173670,78643,0 ) ) -(109,117:20167979,22897729:501378,78643,0 -(109,117:20331833,22897729:173670,78643,0 +(105,117:20167979,22897729:501378,78643,0 +(105,117:20331833,22897729:173670,78643,0 ) ) -(109,117:20669357,22897729:501378,78643,0 -(109,117:20833211,22897729:173670,78643,0 +(105,117:20669357,22897729:501378,78643,0 +(105,117:20833211,22897729:173670,78643,0 ) ) -(109,117:21170735,22897729:501378,78643,0 -(109,117:21334589,22897729:173670,78643,0 +(105,117:21170735,22897729:501378,78643,0 +(105,117:21334589,22897729:173670,78643,0 ) ) -(109,117:21672113,22897729:501378,78643,0 -(109,117:21835967,22897729:173670,78643,0 +(105,117:21672113,22897729:501378,78643,0 +(105,117:21835967,22897729:173670,78643,0 ) ) -(109,117:22173491,22897729:501378,78643,0 -(109,117:22337345,22897729:173670,78643,0 +(105,117:22173491,22897729:501378,78643,0 +(105,117:22337345,22897729:173670,78643,0 ) ) -(109,117:22674869,22897729:501378,78643,0 -(109,117:22838723,22897729:173670,78643,0 +(105,117:22674869,22897729:501378,78643,0 +(105,117:22838723,22897729:173670,78643,0 ) ) -(109,117:23176247,22897729:501378,78643,0 -(109,117:23340101,22897729:173670,78643,0 +(105,117:23176247,22897729:501378,78643,0 +(105,117:23340101,22897729:173670,78643,0 ) ) -(109,117:23677625,22897729:501378,78643,0 -(109,117:23841479,22897729:173670,78643,0 +(105,117:23677625,22897729:501378,78643,0 +(105,117:23841479,22897729:173670,78643,0 ) ) -(109,117:24179003,22897729:501378,78643,0 -(109,117:24342857,22897729:173670,78643,0 +(105,117:24179003,22897729:501378,78643,0 +(105,117:24342857,22897729:173670,78643,0 ) ) -(109,117:24680381,22897729:501378,78643,0 -(109,117:24844235,22897729:173670,78643,0 +(105,117:24680381,22897729:501378,78643,0 +(105,117:24844235,22897729:173670,78643,0 ) ) -(109,117:25181759,22897729:501378,78643,0 -(109,117:25345613,22897729:173670,78643,0 +(105,117:25181759,22897729:501378,78643,0 +(105,117:25345613,22897729:173670,78643,0 ) ) -(109,117:25683137,22897729:501378,78643,0 -(109,117:25846991,22897729:173670,78643,0 +(105,117:25683137,22897729:501378,78643,0 +(105,117:25846991,22897729:173670,78643,0 ) ) -(109,117:26184515,22897729:501378,78643,0 -(109,117:26348369,22897729:173670,78643,0 +(105,117:26184515,22897729:501378,78643,0 +(105,117:26348369,22897729:173670,78643,0 ) ) -(109,117:26685893,22897729:501378,78643,0 -(109,117:26849747,22897729:173670,78643,0 +(105,117:26685893,22897729:501378,78643,0 +(105,117:26849747,22897729:173670,78643,0 ) ) -(109,117:27187271,22897729:501378,78643,0 -(109,117:27351125,22897729:173670,78643,0 +(105,117:27187271,22897729:501378,78643,0 +(105,117:27351125,22897729:173670,78643,0 ) ) -(109,117:27688649,22897729:501378,78643,0 -(109,117:27852503,22897729:173670,78643,0 +(105,117:27688649,22897729:501378,78643,0 +(105,117:27852503,22897729:173670,78643,0 ) ) -(109,117:28190027,22897729:501378,78643,0 -(109,117:28353881,22897729:173670,78643,0 +(105,117:28190027,22897729:501378,78643,0 +(105,117:28353881,22897729:173670,78643,0 ) ) -(109,117:28691405,22897729:501378,78643,0 -(109,117:28855259,22897729:173670,78643,0 +(105,117:28691405,22897729:501378,78643,0 +(105,117:28855259,22897729:173670,78643,0 ) ) -(109,117:29192783,22897729:501378,78643,0 -(109,117:29356637,22897729:173670,78643,0 +(105,117:29192783,22897729:501378,78643,0 +(105,117:29356637,22897729:173670,78643,0 ) ) -(109,117:29694161,22897729:501378,78643,0 -(109,117:29858015,22897729:173670,78643,0 +(105,117:29694161,22897729:501378,78643,0 +(105,117:29858015,22897729:173670,78643,0 ) ) -(109,117:30195539,22897729:501378,78643,0 -(109,117:30359393,22897729:173670,78643,0 +(105,117:30195539,22897729:501378,78643,0 +(105,117:30359393,22897729:173670,78643,0 ) ) -(109,117:30696917,22897729:501378,78643,0 -(109,117:30860771,22897729:173670,78643,0 +(105,117:30696917,22897729:501378,78643,0 +(105,117:30860771,22897729:173670,78643,0 ) ) -(109,117:31403379,22897729:1179650,485622,11795 -k109,117:31586882,22897729:183503 -g109,117:31786111,22897729 +(105,117:31239539,22897729:1343490,485622,11795 +k105,117:31586882,22897729:347343 +g105,117:31786111,22897729 ) -g109,117:30911859,22897729 -g109,117:32583029,22897729 +g105,117:30911859,22897729 +g105,117:32583029,22897729 ) -(109,119:6630773,23739217:25952256,505283,11795 -g109,119:11218293,23739217 -h109,119:11218293,23739217:2490370,0,0 -h109,119:13708663,23739217:0,0,0 -g109,119:9121143,23739217 -(109,119:9121143,23739217:2097150,485622,11795 -k109,119:11218293,23739217:554432 +(105,119:6630773,23739217:25952256,505283,11795 +g105,119:11218293,23739217 +h105,119:11218293,23739217:2490370,0,0 +h105,119:13708663,23739217:0,0,0 +g105,119:9121143,23739217 +(105,119:9121143,23739217:2097150,485622,11795 +k105,119:11218293,23739217:554432 ) -g109,119:15132758,23739217 -g109,119:18208363,23739217 -(109,119:18663845,23739217:501378,78643,0 -$109,119:18663845,23739217 -(109,119:18827699,23739217:173670,78643,0 +g105,119:15132758,23739217 +g105,119:18208363,23739217 +(105,119:18663845,23739217:501378,78643,0 +$105,119:18663845,23739217 +(105,119:18827699,23739217:173670,78643,0 ) -$109,119:19165223,23739217 +$105,119:19165223,23739217 ) -(109,119:19165223,23739217:501378,78643,0 -(109,119:19329077,23739217:173670,78643,0 +(105,119:19165223,23739217:501378,78643,0 +(105,119:19329077,23739217:173670,78643,0 ) ) -(109,119:19666601,23739217:501378,78643,0 -(109,119:19830455,23739217:173670,78643,0 +(105,119:19666601,23739217:501378,78643,0 +(105,119:19830455,23739217:173670,78643,0 ) ) -(109,119:20167979,23739217:501378,78643,0 -(109,119:20331833,23739217:173670,78643,0 +(105,119:20167979,23739217:501378,78643,0 +(105,119:20331833,23739217:173670,78643,0 ) ) -(109,119:20669357,23739217:501378,78643,0 -(109,119:20833211,23739217:173670,78643,0 +(105,119:20669357,23739217:501378,78643,0 +(105,119:20833211,23739217:173670,78643,0 ) ) -(109,119:21170735,23739217:501378,78643,0 -(109,119:21334589,23739217:173670,78643,0 +(105,119:21170735,23739217:501378,78643,0 +(105,119:21334589,23739217:173670,78643,0 ) ) -(109,119:21672113,23739217:501378,78643,0 -(109,119:21835967,23739217:173670,78643,0 +(105,119:21672113,23739217:501378,78643,0 +(105,119:21835967,23739217:173670,78643,0 ) ) -(109,119:22173491,23739217:501378,78643,0 -(109,119:22337345,23739217:173670,78643,0 +(105,119:22173491,23739217:501378,78643,0 +(105,119:22337345,23739217:173670,78643,0 ) ) -(109,119:22674869,23739217:501378,78643,0 -(109,119:22838723,23739217:173670,78643,0 +(105,119:22674869,23739217:501378,78643,0 +(105,119:22838723,23739217:173670,78643,0 ) ) -(109,119:23176247,23739217:501378,78643,0 -(109,119:23340101,23739217:173670,78643,0 +(105,119:23176247,23739217:501378,78643,0 +(105,119:23340101,23739217:173670,78643,0 ) ) -(109,119:23677625,23739217:501378,78643,0 -(109,119:23841479,23739217:173670,78643,0 +(105,119:23677625,23739217:501378,78643,0 +(105,119:23841479,23739217:173670,78643,0 ) ) -(109,119:24179003,23739217:501378,78643,0 -(109,119:24342857,23739217:173670,78643,0 +(105,119:24179003,23739217:501378,78643,0 +(105,119:24342857,23739217:173670,78643,0 ) ) -(109,119:24680381,23739217:501378,78643,0 -(109,119:24844235,23739217:173670,78643,0 +(105,119:24680381,23739217:501378,78643,0 +(105,119:24844235,23739217:173670,78643,0 ) ) -(109,119:25181759,23739217:501378,78643,0 -(109,119:25345613,23739217:173670,78643,0 +(105,119:25181759,23739217:501378,78643,0 +(105,119:25345613,23739217:173670,78643,0 ) ) -(109,119:25683137,23739217:501378,78643,0 -(109,119:25846991,23739217:173670,78643,0 +(105,119:25683137,23739217:501378,78643,0 +(105,119:25846991,23739217:173670,78643,0 ) ) -(109,119:26184515,23739217:501378,78643,0 -(109,119:26348369,23739217:173670,78643,0 +(105,119:26184515,23739217:501378,78643,0 +(105,119:26348369,23739217:173670,78643,0 ) ) -(109,119:26685893,23739217:501378,78643,0 -(109,119:26849747,23739217:173670,78643,0 +(105,119:26685893,23739217:501378,78643,0 +(105,119:26849747,23739217:173670,78643,0 ) ) -(109,119:27187271,23739217:501378,78643,0 -(109,119:27351125,23739217:173670,78643,0 +(105,119:27187271,23739217:501378,78643,0 +(105,119:27351125,23739217:173670,78643,0 ) ) -(109,119:27688649,23739217:501378,78643,0 -(109,119:27852503,23739217:173670,78643,0 +(105,119:27688649,23739217:501378,78643,0 +(105,119:27852503,23739217:173670,78643,0 ) ) -(109,119:28190027,23739217:501378,78643,0 -(109,119:28353881,23739217:173670,78643,0 +(105,119:28190027,23739217:501378,78643,0 +(105,119:28353881,23739217:173670,78643,0 ) ) -(109,119:28691405,23739217:501378,78643,0 -(109,119:28855259,23739217:173670,78643,0 +(105,119:28691405,23739217:501378,78643,0 +(105,119:28855259,23739217:173670,78643,0 ) ) -(109,119:29192783,23739217:501378,78643,0 -(109,119:29356637,23739217:173670,78643,0 +(105,119:29192783,23739217:501378,78643,0 +(105,119:29356637,23739217:173670,78643,0 ) ) -(109,119:29694161,23739217:501378,78643,0 -(109,119:29858015,23739217:173670,78643,0 +(105,119:29694161,23739217:501378,78643,0 +(105,119:29858015,23739217:173670,78643,0 ) ) -(109,119:30195539,23739217:501378,78643,0 -(109,119:30359393,23739217:173670,78643,0 +(105,119:30195539,23739217:501378,78643,0 +(105,119:30359393,23739217:173670,78643,0 ) ) -(109,119:30696917,23739217:501378,78643,0 -(109,119:30860771,23739217:173670,78643,0 +(105,119:30696917,23739217:501378,78643,0 +(105,119:30860771,23739217:173670,78643,0 ) ) -(109,119:31403379,23739217:1179650,485622,11795 -k109,119:31586882,23739217:183503 -g109,119:31786111,23739217 +(105,119:31239539,23739217:1343490,485622,11795 +k105,119:31586882,23739217:347343 +g105,119:31786111,23739217 ) -g109,119:30911859,23739217 -g109,119:32583029,23739217 +g105,119:30911859,23739217 +g105,119:32583029,23739217 ) -(109,121:6630773,24580705:25952256,513147,102891 -g109,121:13905273,24580705 -h109,121:13905273,24580705:4587520,0,0 -h109,121:18492793,24580705:0,0,0 -g109,121:11218293,24580705 -(109,121:11218293,24580705:2686980,485622,11795 -k109,121:13905273,24580705:572133 +(105,121:6630773,24580705:25952256,513147,102891 +g105,121:13905273,24580705 +h105,121:13905273,24580705:4587520,0,0 +h105,121:18492793,24580705:0,0,0 +g105,121:11218293,24580705 +(105,121:11218293,24580705:2686980,485622,11795 +k105,121:13905273,24580705:572133 ) -g109,121:18956132,24580705 -g109,121:20119395,24580705 -g109,121:21899352,24580705 -g109,121:23290026,24580705 -g109,121:25661119,24580705 -(109,121:25683137,24580705:501378,78643,0 -$109,121:25683137,24580705 -(109,121:25846991,24580705:173670,78643,0 +g105,121:18956132,24580705 +g105,121:20119395,24580705 +g105,121:21899352,24580705 +g105,121:23290026,24580705 +g105,121:25661119,24580705 +(105,121:25683137,24580705:501378,78643,0 +$105,121:25683137,24580705 +(105,121:25846991,24580705:173670,78643,0 ) -$109,121:26184515,24580705 +$105,121:26184515,24580705 ) -(109,121:26184515,24580705:501378,78643,0 -(109,121:26348369,24580705:173670,78643,0 +(105,121:26184515,24580705:501378,78643,0 +(105,121:26348369,24580705:173670,78643,0 ) ) -(109,121:26685893,24580705:501378,78643,0 -(109,121:26849747,24580705:173670,78643,0 +(105,121:26685893,24580705:501378,78643,0 +(105,121:26849747,24580705:173670,78643,0 ) ) -(109,121:27187271,24580705:501378,78643,0 -(109,121:27351125,24580705:173670,78643,0 +(105,121:27187271,24580705:501378,78643,0 +(105,121:27351125,24580705:173670,78643,0 ) ) -(109,121:27688649,24580705:501378,78643,0 -(109,121:27852503,24580705:173670,78643,0 +(105,121:27688649,24580705:501378,78643,0 +(105,121:27852503,24580705:173670,78643,0 ) ) -(109,121:28190027,24580705:501378,78643,0 -(109,121:28353881,24580705:173670,78643,0 +(105,121:28190027,24580705:501378,78643,0 +(105,121:28353881,24580705:173670,78643,0 ) ) -(109,121:28691405,24580705:501378,78643,0 -(109,121:28855259,24580705:173670,78643,0 +(105,121:28691405,24580705:501378,78643,0 +(105,121:28855259,24580705:173670,78643,0 ) ) -(109,121:29192783,24580705:501378,78643,0 -(109,121:29356637,24580705:173670,78643,0 +(105,121:29192783,24580705:501378,78643,0 +(105,121:29356637,24580705:173670,78643,0 ) ) -(109,121:29694161,24580705:501378,78643,0 -(109,121:29858015,24580705:173670,78643,0 +(105,121:29694161,24580705:501378,78643,0 +(105,121:29858015,24580705:173670,78643,0 ) ) -(109,121:30195539,24580705:501378,78643,0 -(109,121:30359393,24580705:173670,78643,0 +(105,121:30195539,24580705:501378,78643,0 +(105,121:30359393,24580705:173670,78643,0 ) ) -(109,121:30696917,24580705:501378,78643,0 -(109,121:30860771,24580705:173670,78643,0 +(105,121:30696917,24580705:501378,78643,0 +(105,121:30860771,24580705:173670,78643,0 ) ) -(109,121:31403379,24580705:1179650,485622,11795 -k109,121:31586882,24580705:183503 -g109,121:31786111,24580705 +(105,121:31239539,24580705:1343490,485622,11795 +k105,121:31586882,24580705:347343 +g105,121:31786111,24580705 ) -g109,121:30911859,24580705 -g109,121:32583029,24580705 +g105,121:30911859,24580705 +g105,121:32583029,24580705 ) -(109,123:6630773,25422193:25952256,513147,95026 -g109,123:13905273,25422193 -h109,123:13905273,25422193:4587520,0,0 -h109,123:18492793,25422193:0,0,0 -g109,123:11218293,25422193 -(109,123:11218293,25422193:2686980,485622,11795 -k109,123:13905273,25422193:572133 +(105,123:6630773,25422193:25952256,513147,95026 +g105,123:13905273,25422193 +h105,123:13905273,25422193:4587520,0,0 +h105,123:18492793,25422193:0,0,0 +g105,123:11218293,25422193 +(105,123:11218293,25422193:2686980,485622,11795 +k105,123:13905273,25422193:572133 ) -g109,123:17542521,25422193 -g109,123:20703978,25422193 -(109,123:21170735,25422193:501378,78643,0 -$109,123:21170735,25422193 -(109,123:21334589,25422193:173670,78643,0 +g105,123:17542521,25422193 +g105,123:20703978,25422193 +(105,123:21170735,25422193:501378,78643,0 +$105,123:21170735,25422193 +(105,123:21334589,25422193:173670,78643,0 ) -$109,123:21672113,25422193 +$105,123:21672113,25422193 ) -(109,123:21672113,25422193:501378,78643,0 -(109,123:21835967,25422193:173670,78643,0 +(105,123:21672113,25422193:501378,78643,0 +(105,123:21835967,25422193:173670,78643,0 ) ) -(109,123:22173491,25422193:501378,78643,0 -(109,123:22337345,25422193:173670,78643,0 +(105,123:22173491,25422193:501378,78643,0 +(105,123:22337345,25422193:173670,78643,0 ) ) -(109,123:22674869,25422193:501378,78643,0 -(109,123:22838723,25422193:173670,78643,0 +(105,123:22674869,25422193:501378,78643,0 +(105,123:22838723,25422193:173670,78643,0 ) ) -(109,123:23176247,25422193:501378,78643,0 -(109,123:23340101,25422193:173670,78643,0 +(105,123:23176247,25422193:501378,78643,0 +(105,123:23340101,25422193:173670,78643,0 ) ) -(109,123:23677625,25422193:501378,78643,0 -(109,123:23841479,25422193:173670,78643,0 +(105,123:23677625,25422193:501378,78643,0 +(105,123:23841479,25422193:173670,78643,0 ) ) -(109,123:24179003,25422193:501378,78643,0 -(109,123:24342857,25422193:173670,78643,0 +(105,123:24179003,25422193:501378,78643,0 +(105,123:24342857,25422193:173670,78643,0 ) ) -(109,123:24680381,25422193:501378,78643,0 -(109,123:24844235,25422193:173670,78643,0 +(105,123:24680381,25422193:501378,78643,0 +(105,123:24844235,25422193:173670,78643,0 ) ) -(109,123:25181759,25422193:501378,78643,0 -(109,123:25345613,25422193:173670,78643,0 +(105,123:25181759,25422193:501378,78643,0 +(105,123:25345613,25422193:173670,78643,0 ) ) -(109,123:25683137,25422193:501378,78643,0 -(109,123:25846991,25422193:173670,78643,0 +(105,123:25683137,25422193:501378,78643,0 +(105,123:25846991,25422193:173670,78643,0 ) ) -(109,123:26184515,25422193:501378,78643,0 -(109,123:26348369,25422193:173670,78643,0 +(105,123:26184515,25422193:501378,78643,0 +(105,123:26348369,25422193:173670,78643,0 ) ) -(109,123:26685893,25422193:501378,78643,0 -(109,123:26849747,25422193:173670,78643,0 +(105,123:26685893,25422193:501378,78643,0 +(105,123:26849747,25422193:173670,78643,0 ) ) -(109,123:27187271,25422193:501378,78643,0 -(109,123:27351125,25422193:173670,78643,0 +(105,123:27187271,25422193:501378,78643,0 +(105,123:27351125,25422193:173670,78643,0 ) ) -(109,123:27688649,25422193:501378,78643,0 -(109,123:27852503,25422193:173670,78643,0 +(105,123:27688649,25422193:501378,78643,0 +(105,123:27852503,25422193:173670,78643,0 ) ) -(109,123:28190027,25422193:501378,78643,0 -(109,123:28353881,25422193:173670,78643,0 +(105,123:28190027,25422193:501378,78643,0 +(105,123:28353881,25422193:173670,78643,0 ) ) -(109,123:28691405,25422193:501378,78643,0 -(109,123:28855259,25422193:173670,78643,0 +(105,123:28691405,25422193:501378,78643,0 +(105,123:28855259,25422193:173670,78643,0 ) ) -(109,123:29192783,25422193:501378,78643,0 -(109,123:29356637,25422193:173670,78643,0 +(105,123:29192783,25422193:501378,78643,0 +(105,123:29356637,25422193:173670,78643,0 ) ) -(109,123:29694161,25422193:501378,78643,0 -(109,123:29858015,25422193:173670,78643,0 +(105,123:29694161,25422193:501378,78643,0 +(105,123:29858015,25422193:173670,78643,0 ) ) -(109,123:30195539,25422193:501378,78643,0 -(109,123:30359393,25422193:173670,78643,0 +(105,123:30195539,25422193:501378,78643,0 +(105,123:30359393,25422193:173670,78643,0 ) ) -(109,123:30696917,25422193:501378,78643,0 -(109,123:30860771,25422193:173670,78643,0 +(105,123:30696917,25422193:501378,78643,0 +(105,123:30860771,25422193:173670,78643,0 ) ) -(109,123:31403379,25422193:1179650,485622,11795 -k109,123:31586882,25422193:183503 -g109,123:31786111,25422193 +(105,123:31239539,25422193:1343490,485622,11795 +k105,123:31586882,25422193:347343 +g105,123:31786111,25422193 ) -g109,123:30911859,25422193 -g109,123:32583029,25422193 +g105,123:30911859,25422193 +g105,123:32583029,25422193 ) -(109,125:6630773,26263681:25952256,485622,11795 -g109,125:11218293,26263681 -h109,125:11218293,26263681:2490370,0,0 -h109,125:13708663,26263681:0,0,0 -g109,125:9121143,26263681 -(109,125:9121143,26263681:2097150,485622,11795 -k109,125:11218293,26263681:554432 +(105,125:6630773,26263681:25952256,485622,11795 +g105,125:11218293,26263681 +h105,125:11218293,26263681:2490370,0,0 +h105,125:13708663,26263681:0,0,0 +g105,125:9121143,26263681 +(105,125:9121143,26263681:2097150,485622,11795 +k105,125:11218293,26263681:554432 ) -g109,125:13947212,26263681 -(109,125:14151443,26263681:501378,78643,0 -$109,125:14151443,26263681 -(109,125:14315297,26263681:173670,78643,0 +g105,125:13947212,26263681 +(105,125:14151443,26263681:501378,78643,0 +$105,125:14151443,26263681 +(105,125:14315297,26263681:173670,78643,0 ) -$109,125:14652821,26263681 +$105,125:14652821,26263681 ) -(109,125:14652821,26263681:501378,78643,0 -(109,125:14816675,26263681:173670,78643,0 +(105,125:14652821,26263681:501378,78643,0 +(105,125:14816675,26263681:173670,78643,0 ) ) -(109,125:15154199,26263681:501378,78643,0 -(109,125:15318053,26263681:173670,78643,0 +(105,125:15154199,26263681:501378,78643,0 +(105,125:15318053,26263681:173670,78643,0 ) ) -(109,125:15655577,26263681:501378,78643,0 -(109,125:15819431,26263681:173670,78643,0 +(105,125:15655577,26263681:501378,78643,0 +(105,125:15819431,26263681:173670,78643,0 ) ) -(109,125:16156955,26263681:501378,78643,0 -(109,125:16320809,26263681:173670,78643,0 +(105,125:16156955,26263681:501378,78643,0 +(105,125:16320809,26263681:173670,78643,0 ) ) -(109,125:16658333,26263681:501378,78643,0 -(109,125:16822187,26263681:173670,78643,0 +(105,125:16658333,26263681:501378,78643,0 +(105,125:16822187,26263681:173670,78643,0 ) ) -(109,125:17159711,26263681:501378,78643,0 -(109,125:17323565,26263681:173670,78643,0 +(105,125:17159711,26263681:501378,78643,0 +(105,125:17323565,26263681:173670,78643,0 ) ) -(109,125:17661089,26263681:501378,78643,0 -(109,125:17824943,26263681:173670,78643,0 +(105,125:17661089,26263681:501378,78643,0 +(105,125:17824943,26263681:173670,78643,0 ) ) -(109,125:18162467,26263681:501378,78643,0 -(109,125:18326321,26263681:173670,78643,0 +(105,125:18162467,26263681:501378,78643,0 +(105,125:18326321,26263681:173670,78643,0 ) ) -(109,125:18663845,26263681:501378,78643,0 -(109,125:18827699,26263681:173670,78643,0 +(105,125:18663845,26263681:501378,78643,0 +(105,125:18827699,26263681:173670,78643,0 ) ) -(109,125:19165223,26263681:501378,78643,0 -(109,125:19329077,26263681:173670,78643,0 +(105,125:19165223,26263681:501378,78643,0 +(105,125:19329077,26263681:173670,78643,0 ) ) -(109,125:19666601,26263681:501378,78643,0 -(109,125:19830455,26263681:173670,78643,0 +(105,125:19666601,26263681:501378,78643,0 +(105,125:19830455,26263681:173670,78643,0 ) ) -(109,125:20167979,26263681:501378,78643,0 -(109,125:20331833,26263681:173670,78643,0 +(105,125:20167979,26263681:501378,78643,0 +(105,125:20331833,26263681:173670,78643,0 ) ) -(109,125:20669357,26263681:501378,78643,0 -(109,125:20833211,26263681:173670,78643,0 +(105,125:20669357,26263681:501378,78643,0 +(105,125:20833211,26263681:173670,78643,0 ) ) -(109,125:21170735,26263681:501378,78643,0 -(109,125:21334589,26263681:173670,78643,0 +(105,125:21170735,26263681:501378,78643,0 +(105,125:21334589,26263681:173670,78643,0 ) ) -(109,125:21672113,26263681:501378,78643,0 -(109,125:21835967,26263681:173670,78643,0 +(105,125:21672113,26263681:501378,78643,0 +(105,125:21835967,26263681:173670,78643,0 ) ) -(109,125:22173491,26263681:501378,78643,0 -(109,125:22337345,26263681:173670,78643,0 +(105,125:22173491,26263681:501378,78643,0 +(105,125:22337345,26263681:173670,78643,0 ) ) -(109,125:22674869,26263681:501378,78643,0 -(109,125:22838723,26263681:173670,78643,0 +(105,125:22674869,26263681:501378,78643,0 +(105,125:22838723,26263681:173670,78643,0 ) ) -(109,125:23176247,26263681:501378,78643,0 -(109,125:23340101,26263681:173670,78643,0 +(105,125:23176247,26263681:501378,78643,0 +(105,125:23340101,26263681:173670,78643,0 ) ) -(109,125:23677625,26263681:501378,78643,0 -(109,125:23841479,26263681:173670,78643,0 +(105,125:23677625,26263681:501378,78643,0 +(105,125:23841479,26263681:173670,78643,0 ) ) -(109,125:24179003,26263681:501378,78643,0 -(109,125:24342857,26263681:173670,78643,0 +(105,125:24179003,26263681:501378,78643,0 +(105,125:24342857,26263681:173670,78643,0 ) ) -(109,125:24680381,26263681:501378,78643,0 -(109,125:24844235,26263681:173670,78643,0 +(105,125:24680381,26263681:501378,78643,0 +(105,125:24844235,26263681:173670,78643,0 ) ) -(109,125:25181759,26263681:501378,78643,0 -(109,125:25345613,26263681:173670,78643,0 +(105,125:25181759,26263681:501378,78643,0 +(105,125:25345613,26263681:173670,78643,0 ) ) -(109,125:25683137,26263681:501378,78643,0 -(109,125:25846991,26263681:173670,78643,0 +(105,125:25683137,26263681:501378,78643,0 +(105,125:25846991,26263681:173670,78643,0 ) ) -(109,125:26184515,26263681:501378,78643,0 -(109,125:26348369,26263681:173670,78643,0 +(105,125:26184515,26263681:501378,78643,0 +(105,125:26348369,26263681:173670,78643,0 ) ) -(109,125:26685893,26263681:501378,78643,0 -(109,125:26849747,26263681:173670,78643,0 +(105,125:26685893,26263681:501378,78643,0 +(105,125:26849747,26263681:173670,78643,0 ) ) -(109,125:27187271,26263681:501378,78643,0 -(109,125:27351125,26263681:173670,78643,0 +(105,125:27187271,26263681:501378,78643,0 +(105,125:27351125,26263681:173670,78643,0 ) ) -(109,125:27688649,26263681:501378,78643,0 -(109,125:27852503,26263681:173670,78643,0 +(105,125:27688649,26263681:501378,78643,0 +(105,125:27852503,26263681:173670,78643,0 ) ) -(109,125:28190027,26263681:501378,78643,0 -(109,125:28353881,26263681:173670,78643,0 +(105,125:28190027,26263681:501378,78643,0 +(105,125:28353881,26263681:173670,78643,0 ) ) -(109,125:28691405,26263681:501378,78643,0 -(109,125:28855259,26263681:173670,78643,0 +(105,125:28691405,26263681:501378,78643,0 +(105,125:28855259,26263681:173670,78643,0 ) ) -(109,125:29192783,26263681:501378,78643,0 -(109,125:29356637,26263681:173670,78643,0 +(105,125:29192783,26263681:501378,78643,0 +(105,125:29356637,26263681:173670,78643,0 ) ) -(109,125:29694161,26263681:501378,78643,0 -(109,125:29858015,26263681:173670,78643,0 +(105,125:29694161,26263681:501378,78643,0 +(105,125:29858015,26263681:173670,78643,0 ) ) -(109,125:30195539,26263681:501378,78643,0 -(109,125:30359393,26263681:173670,78643,0 +(105,125:30195539,26263681:501378,78643,0 +(105,125:30359393,26263681:173670,78643,0 ) ) -(109,125:30696917,26263681:501378,78643,0 -(109,125:30860771,26263681:173670,78643,0 +(105,125:30696917,26263681:501378,78643,0 +(105,125:30860771,26263681:173670,78643,0 ) ) -(109,125:31403380,26263681:1179650,485622,11795 -k109,125:31403380,26263681:0 -k109,125:31536200,26263681:132820 +(105,125:31239540,26263681:1343490,485622,11795 +k105,125:31239540,26263681:0 +k105,125:31387653,26263681:148113 ) -g109,125:30911860,26263681 -g109,125:32583030,26263681 +g105,125:30911860,26263681 +g105,125:32583030,26263681 ) -(109,127:6630773,27105169:25952256,513147,126483 -g109,127:13905273,27105169 -h109,127:13905273,27105169:4587520,0,0 -h109,127:18492793,27105169:0,0,0 -g109,127:11218293,27105169 -(109,127:11218293,27105169:2686980,485622,11795 -k109,127:13905273,27105169:572133 +(105,127:6630773,27105169:25952256,513147,126483 +g105,127:13905273,27105169 +h105,127:13905273,27105169:4587520,0,0 +h105,127:18492793,27105169:0,0,0 +g105,127:11218293,27105169 +(105,127:11218293,27105169:2686980,485622,11795 +k105,127:13905273,27105169:572133 ) -g109,127:15290048,27105169 -g109,127:17035272,27105169 -(109,127:17159711,27105169:501378,78643,0 -$109,127:17159711,27105169 -(109,127:17323565,27105169:173670,78643,0 +g105,127:15290048,27105169 +g105,127:17035272,27105169 +(105,127:17159711,27105169:501378,78643,0 +$105,127:17159711,27105169 +(105,127:17323565,27105169:173670,78643,0 ) -$109,127:17661089,27105169 +$105,127:17661089,27105169 ) -(109,127:17661089,27105169:501378,78643,0 -(109,127:17824943,27105169:173670,78643,0 +(105,127:17661089,27105169:501378,78643,0 +(105,127:17824943,27105169:173670,78643,0 ) ) -(109,127:18162467,27105169:501378,78643,0 -(109,127:18326321,27105169:173670,78643,0 +(105,127:18162467,27105169:501378,78643,0 +(105,127:18326321,27105169:173670,78643,0 ) ) -(109,127:18663845,27105169:501378,78643,0 -(109,127:18827699,27105169:173670,78643,0 +(105,127:18663845,27105169:501378,78643,0 +(105,127:18827699,27105169:173670,78643,0 ) ) -(109,127:19165223,27105169:501378,78643,0 -(109,127:19329077,27105169:173670,78643,0 +(105,127:19165223,27105169:501378,78643,0 +(105,127:19329077,27105169:173670,78643,0 ) ) -(109,127:19666601,27105169:501378,78643,0 -(109,127:19830455,27105169:173670,78643,0 +(105,127:19666601,27105169:501378,78643,0 +(105,127:19830455,27105169:173670,78643,0 ) ) -(109,127:20167979,27105169:501378,78643,0 -(109,127:20331833,27105169:173670,78643,0 +(105,127:20167979,27105169:501378,78643,0 +(105,127:20331833,27105169:173670,78643,0 ) ) -(109,127:20669357,27105169:501378,78643,0 -(109,127:20833211,27105169:173670,78643,0 +(105,127:20669357,27105169:501378,78643,0 +(105,127:20833211,27105169:173670,78643,0 ) ) -(109,127:21170735,27105169:501378,78643,0 -(109,127:21334589,27105169:173670,78643,0 +(105,127:21170735,27105169:501378,78643,0 +(105,127:21334589,27105169:173670,78643,0 ) ) -(109,127:21672113,27105169:501378,78643,0 -(109,127:21835967,27105169:173670,78643,0 +(105,127:21672113,27105169:501378,78643,0 +(105,127:21835967,27105169:173670,78643,0 ) ) -(109,127:22173491,27105169:501378,78643,0 -(109,127:22337345,27105169:173670,78643,0 +(105,127:22173491,27105169:501378,78643,0 +(105,127:22337345,27105169:173670,78643,0 ) ) -(109,127:22674869,27105169:501378,78643,0 -(109,127:22838723,27105169:173670,78643,0 +(105,127:22674869,27105169:501378,78643,0 +(105,127:22838723,27105169:173670,78643,0 ) ) -(109,127:23176247,27105169:501378,78643,0 -(109,127:23340101,27105169:173670,78643,0 +(105,127:23176247,27105169:501378,78643,0 +(105,127:23340101,27105169:173670,78643,0 ) ) -(109,127:23677625,27105169:501378,78643,0 -(109,127:23841479,27105169:173670,78643,0 +(105,127:23677625,27105169:501378,78643,0 +(105,127:23841479,27105169:173670,78643,0 ) ) -(109,127:24179003,27105169:501378,78643,0 -(109,127:24342857,27105169:173670,78643,0 +(105,127:24179003,27105169:501378,78643,0 +(105,127:24342857,27105169:173670,78643,0 ) ) -(109,127:24680381,27105169:501378,78643,0 -(109,127:24844235,27105169:173670,78643,0 +(105,127:24680381,27105169:501378,78643,0 +(105,127:24844235,27105169:173670,78643,0 ) ) -(109,127:25181759,27105169:501378,78643,0 -(109,127:25345613,27105169:173670,78643,0 +(105,127:25181759,27105169:501378,78643,0 +(105,127:25345613,27105169:173670,78643,0 ) ) -(109,127:25683137,27105169:501378,78643,0 -(109,127:25846991,27105169:173670,78643,0 +(105,127:25683137,27105169:501378,78643,0 +(105,127:25846991,27105169:173670,78643,0 ) ) -(109,127:26184515,27105169:501378,78643,0 -(109,127:26348369,27105169:173670,78643,0 +(105,127:26184515,27105169:501378,78643,0 +(105,127:26348369,27105169:173670,78643,0 ) ) -(109,127:26685893,27105169:501378,78643,0 -(109,127:26849747,27105169:173670,78643,0 +(105,127:26685893,27105169:501378,78643,0 +(105,127:26849747,27105169:173670,78643,0 ) ) -(109,127:27187271,27105169:501378,78643,0 -(109,127:27351125,27105169:173670,78643,0 +(105,127:27187271,27105169:501378,78643,0 +(105,127:27351125,27105169:173670,78643,0 ) ) -(109,127:27688649,27105169:501378,78643,0 -(109,127:27852503,27105169:173670,78643,0 +(105,127:27688649,27105169:501378,78643,0 +(105,127:27852503,27105169:173670,78643,0 ) ) -(109,127:28190027,27105169:501378,78643,0 -(109,127:28353881,27105169:173670,78643,0 +(105,127:28190027,27105169:501378,78643,0 +(105,127:28353881,27105169:173670,78643,0 ) ) -(109,127:28691405,27105169:501378,78643,0 -(109,127:28855259,27105169:173670,78643,0 +(105,127:28691405,27105169:501378,78643,0 +(105,127:28855259,27105169:173670,78643,0 ) ) -(109,127:29192783,27105169:501378,78643,0 -(109,127:29356637,27105169:173670,78643,0 +(105,127:29192783,27105169:501378,78643,0 +(105,127:29356637,27105169:173670,78643,0 ) ) -(109,127:29694161,27105169:501378,78643,0 -(109,127:29858015,27105169:173670,78643,0 +(105,127:29694161,27105169:501378,78643,0 +(105,127:29858015,27105169:173670,78643,0 ) ) -(109,127:30195539,27105169:501378,78643,0 -(109,127:30359393,27105169:173670,78643,0 +(105,127:30195539,27105169:501378,78643,0 +(105,127:30359393,27105169:173670,78643,0 ) ) -(109,127:30696917,27105169:501378,78643,0 -(109,127:30860771,27105169:173670,78643,0 +(105,127:30696917,27105169:501378,78643,0 +(105,127:30860771,27105169:173670,78643,0 ) ) -(109,127:31403379,27105169:1179650,485622,11795 -k109,127:31403379,27105169:0 -k109,127:31536199,27105169:132820 +(105,127:31239539,27105169:1343490,485622,11795 +k105,127:31239539,27105169:0 +k105,127:31387652,27105169:148113 ) -g109,127:30911859,27105169 -g109,127:32583029,27105169 +g105,127:30911859,27105169 +g105,127:32583029,27105169 ) -(109,129:6630773,27946657:25952256,505283,126483 -g109,129:13905273,27946657 -h109,129:13905273,27946657:4587520,0,0 -h109,129:18492793,27946657:0,0,0 -g109,129:11218293,27946657 -(109,129:11218293,27946657:2686980,485622,11795 -k109,129:13905273,27946657:572133 +(105,129:6630773,27946657:25952256,505283,126483 +g105,129:13905273,27946657 +h105,129:13905273,27946657:4587520,0,0 +h105,129:18492793,27946657:0,0,0 +g105,129:11218293,27946657 +(105,129:11218293,27946657:2686980,485622,11795 +k105,129:13905273,27946657:572133 ) -g109,129:16080412,27946657 -g109,129:17825636,27946657 -(109,129:18162467,27946657:501378,78643,0 -$109,129:18162467,27946657 -(109,129:18326321,27946657:173670,78643,0 +g105,129:16080412,27946657 +g105,129:17825636,27946657 +(105,129:18162467,27946657:501378,78643,0 +$105,129:18162467,27946657 +(105,129:18326321,27946657:173670,78643,0 ) -$109,129:18663845,27946657 +$105,129:18663845,27946657 ) -(109,129:18663845,27946657:501378,78643,0 -(109,129:18827699,27946657:173670,78643,0 +(105,129:18663845,27946657:501378,78643,0 +(105,129:18827699,27946657:173670,78643,0 ) ) -(109,129:19165223,27946657:501378,78643,0 -(109,129:19329077,27946657:173670,78643,0 +(105,129:19165223,27946657:501378,78643,0 +(105,129:19329077,27946657:173670,78643,0 ) ) -(109,129:19666601,27946657:501378,78643,0 -(109,129:19830455,27946657:173670,78643,0 +(105,129:19666601,27946657:501378,78643,0 +(105,129:19830455,27946657:173670,78643,0 ) ) -(109,129:20167979,27946657:501378,78643,0 -(109,129:20331833,27946657:173670,78643,0 +(105,129:20167979,27946657:501378,78643,0 +(105,129:20331833,27946657:173670,78643,0 ) ) -(109,129:20669357,27946657:501378,78643,0 -(109,129:20833211,27946657:173670,78643,0 +(105,129:20669357,27946657:501378,78643,0 +(105,129:20833211,27946657:173670,78643,0 ) ) -(109,129:21170735,27946657:501378,78643,0 -(109,129:21334589,27946657:173670,78643,0 +(105,129:21170735,27946657:501378,78643,0 +(105,129:21334589,27946657:173670,78643,0 ) ) -(109,129:21672113,27946657:501378,78643,0 -(109,129:21835967,27946657:173670,78643,0 +(105,129:21672113,27946657:501378,78643,0 +(105,129:21835967,27946657:173670,78643,0 ) ) -(109,129:22173491,27946657:501378,78643,0 -(109,129:22337345,27946657:173670,78643,0 +(105,129:22173491,27946657:501378,78643,0 +(105,129:22337345,27946657:173670,78643,0 ) ) -(109,129:22674869,27946657:501378,78643,0 -(109,129:22838723,27946657:173670,78643,0 +(105,129:22674869,27946657:501378,78643,0 +(105,129:22838723,27946657:173670,78643,0 ) ) -(109,129:23176247,27946657:501378,78643,0 -(109,129:23340101,27946657:173670,78643,0 +(105,129:23176247,27946657:501378,78643,0 +(105,129:23340101,27946657:173670,78643,0 ) ) -(109,129:23677625,27946657:501378,78643,0 -(109,129:23841479,27946657:173670,78643,0 +(105,129:23677625,27946657:501378,78643,0 +(105,129:23841479,27946657:173670,78643,0 ) ) -(109,129:24179003,27946657:501378,78643,0 -(109,129:24342857,27946657:173670,78643,0 +(105,129:24179003,27946657:501378,78643,0 +(105,129:24342857,27946657:173670,78643,0 ) ) -(109,129:24680381,27946657:501378,78643,0 -(109,129:24844235,27946657:173670,78643,0 +(105,129:24680381,27946657:501378,78643,0 +(105,129:24844235,27946657:173670,78643,0 ) ) -(109,129:25181759,27946657:501378,78643,0 -(109,129:25345613,27946657:173670,78643,0 +(105,129:25181759,27946657:501378,78643,0 +(105,129:25345613,27946657:173670,78643,0 ) ) -(109,129:25683137,27946657:501378,78643,0 -(109,129:25846991,27946657:173670,78643,0 +(105,129:25683137,27946657:501378,78643,0 +(105,129:25846991,27946657:173670,78643,0 ) ) -(109,129:26184515,27946657:501378,78643,0 -(109,129:26348369,27946657:173670,78643,0 +(105,129:26184515,27946657:501378,78643,0 +(105,129:26348369,27946657:173670,78643,0 ) ) -(109,129:26685893,27946657:501378,78643,0 -(109,129:26849747,27946657:173670,78643,0 +(105,129:26685893,27946657:501378,78643,0 +(105,129:26849747,27946657:173670,78643,0 ) ) -(109,129:27187271,27946657:501378,78643,0 -(109,129:27351125,27946657:173670,78643,0 +(105,129:27187271,27946657:501378,78643,0 +(105,129:27351125,27946657:173670,78643,0 ) ) -(109,129:27688649,27946657:501378,78643,0 -(109,129:27852503,27946657:173670,78643,0 +(105,129:27688649,27946657:501378,78643,0 +(105,129:27852503,27946657:173670,78643,0 ) ) -(109,129:28190027,27946657:501378,78643,0 -(109,129:28353881,27946657:173670,78643,0 +(105,129:28190027,27946657:501378,78643,0 +(105,129:28353881,27946657:173670,78643,0 ) ) -(109,129:28691405,27946657:501378,78643,0 -(109,129:28855259,27946657:173670,78643,0 +(105,129:28691405,27946657:501378,78643,0 +(105,129:28855259,27946657:173670,78643,0 ) ) -(109,129:29192783,27946657:501378,78643,0 -(109,129:29356637,27946657:173670,78643,0 +(105,129:29192783,27946657:501378,78643,0 +(105,129:29356637,27946657:173670,78643,0 ) ) -(109,129:29694161,27946657:501378,78643,0 -(109,129:29858015,27946657:173670,78643,0 +(105,129:29694161,27946657:501378,78643,0 +(105,129:29858015,27946657:173670,78643,0 ) ) -(109,129:30195539,27946657:501378,78643,0 -(109,129:30359393,27946657:173670,78643,0 +(105,129:30195539,27946657:501378,78643,0 +(105,129:30359393,27946657:173670,78643,0 ) ) -(109,129:30696917,27946657:501378,78643,0 -(109,129:30860771,27946657:173670,78643,0 +(105,129:30696917,27946657:501378,78643,0 +(105,129:30860771,27946657:173670,78643,0 ) ) -(109,129:31403379,27946657:1179650,485622,11795 -k109,129:31403379,27946657:0 -k109,129:31536199,27946657:132820 +(105,129:31239539,27946657:1343490,485622,11795 +k105,129:31239539,27946657:0 +k105,129:31387652,27946657:148113 ) -g109,129:30911859,27946657 -g109,129:32583029,27946657 +g105,129:30911859,27946657 +g105,129:32583029,27946657 ) -(109,131:6630773,28788145:25952256,505283,126483 -g109,131:13905273,28788145 -h109,131:13905273,28788145:4587520,0,0 -h109,131:18492793,28788145:0,0,0 -g109,131:11218293,28788145 -(109,131:11218293,28788145:2686980,485622,11795 -k109,131:13905273,28788145:572133 +(105,131:6630773,28788145:25952256,505283,126483 +g105,131:13905273,28788145 +h105,131:13905273,28788145:4587520,0,0 +h105,131:18492793,28788145:0,0,0 +g105,131:11218293,28788145 +(105,131:11218293,28788145:2686980,485622,11795 +k105,131:13905273,28788145:572133 ) -g109,131:16475595,28788145 -g109,131:18220819,28788145 -(109,131:18663845,28788145:501378,78643,0 -$109,131:18663845,28788145 -(109,131:18827699,28788145:173670,78643,0 +g105,131:16475595,28788145 +g105,131:18220819,28788145 +(105,131:18663845,28788145:501378,78643,0 +$105,131:18663845,28788145 +(105,131:18827699,28788145:173670,78643,0 ) -$109,131:19165223,28788145 +$105,131:19165223,28788145 ) -(109,131:19165223,28788145:501378,78643,0 -(109,131:19329077,28788145:173670,78643,0 +(105,131:19165223,28788145:501378,78643,0 +(105,131:19329077,28788145:173670,78643,0 ) ) -(109,131:19666601,28788145:501378,78643,0 -(109,131:19830455,28788145:173670,78643,0 +(105,131:19666601,28788145:501378,78643,0 +(105,131:19830455,28788145:173670,78643,0 ) ) -(109,131:20167979,28788145:501378,78643,0 -(109,131:20331833,28788145:173670,78643,0 +(105,131:20167979,28788145:501378,78643,0 +(105,131:20331833,28788145:173670,78643,0 ) ) -(109,131:20669357,28788145:501378,78643,0 -(109,131:20833211,28788145:173670,78643,0 +(105,131:20669357,28788145:501378,78643,0 +(105,131:20833211,28788145:173670,78643,0 ) ) -(109,131:21170735,28788145:501378,78643,0 -(109,131:21334589,28788145:173670,78643,0 +(105,131:21170735,28788145:501378,78643,0 +(105,131:21334589,28788145:173670,78643,0 ) ) -(109,131:21672113,28788145:501378,78643,0 -(109,131:21835967,28788145:173670,78643,0 +(105,131:21672113,28788145:501378,78643,0 +(105,131:21835967,28788145:173670,78643,0 ) ) -(109,131:22173491,28788145:501378,78643,0 -(109,131:22337345,28788145:173670,78643,0 +(105,131:22173491,28788145:501378,78643,0 +(105,131:22337345,28788145:173670,78643,0 ) ) -(109,131:22674869,28788145:501378,78643,0 -(109,131:22838723,28788145:173670,78643,0 +(105,131:22674869,28788145:501378,78643,0 +(105,131:22838723,28788145:173670,78643,0 ) ) -(109,131:23176247,28788145:501378,78643,0 -(109,131:23340101,28788145:173670,78643,0 +(105,131:23176247,28788145:501378,78643,0 +(105,131:23340101,28788145:173670,78643,0 ) ) -(109,131:23677625,28788145:501378,78643,0 -(109,131:23841479,28788145:173670,78643,0 +(105,131:23677625,28788145:501378,78643,0 +(105,131:23841479,28788145:173670,78643,0 ) ) -(109,131:24179003,28788145:501378,78643,0 -(109,131:24342857,28788145:173670,78643,0 +(105,131:24179003,28788145:501378,78643,0 +(105,131:24342857,28788145:173670,78643,0 ) ) -(109,131:24680381,28788145:501378,78643,0 -(109,131:24844235,28788145:173670,78643,0 +(105,131:24680381,28788145:501378,78643,0 +(105,131:24844235,28788145:173670,78643,0 ) ) -(109,131:25181759,28788145:501378,78643,0 -(109,131:25345613,28788145:173670,78643,0 +(105,131:25181759,28788145:501378,78643,0 +(105,131:25345613,28788145:173670,78643,0 ) ) -(109,131:25683137,28788145:501378,78643,0 -(109,131:25846991,28788145:173670,78643,0 +(105,131:25683137,28788145:501378,78643,0 +(105,131:25846991,28788145:173670,78643,0 ) ) -(109,131:26184515,28788145:501378,78643,0 -(109,131:26348369,28788145:173670,78643,0 +(105,131:26184515,28788145:501378,78643,0 +(105,131:26348369,28788145:173670,78643,0 ) ) -(109,131:26685893,28788145:501378,78643,0 -(109,131:26849747,28788145:173670,78643,0 +(105,131:26685893,28788145:501378,78643,0 +(105,131:26849747,28788145:173670,78643,0 ) ) -(109,131:27187271,28788145:501378,78643,0 -(109,131:27351125,28788145:173670,78643,0 +(105,131:27187271,28788145:501378,78643,0 +(105,131:27351125,28788145:173670,78643,0 ) ) -(109,131:27688649,28788145:501378,78643,0 -(109,131:27852503,28788145:173670,78643,0 +(105,131:27688649,28788145:501378,78643,0 +(105,131:27852503,28788145:173670,78643,0 ) ) -(109,131:28190027,28788145:501378,78643,0 -(109,131:28353881,28788145:173670,78643,0 +(105,131:28190027,28788145:501378,78643,0 +(105,131:28353881,28788145:173670,78643,0 ) ) -(109,131:28691405,28788145:501378,78643,0 -(109,131:28855259,28788145:173670,78643,0 +(105,131:28691405,28788145:501378,78643,0 +(105,131:28855259,28788145:173670,78643,0 ) ) -(109,131:29192783,28788145:501378,78643,0 -(109,131:29356637,28788145:173670,78643,0 +(105,131:29192783,28788145:501378,78643,0 +(105,131:29356637,28788145:173670,78643,0 ) ) -(109,131:29694161,28788145:501378,78643,0 -(109,131:29858015,28788145:173670,78643,0 +(105,131:29694161,28788145:501378,78643,0 +(105,131:29858015,28788145:173670,78643,0 ) ) -(109,131:30195539,28788145:501378,78643,0 -(109,131:30359393,28788145:173670,78643,0 +(105,131:30195539,28788145:501378,78643,0 +(105,131:30359393,28788145:173670,78643,0 ) ) -(109,131:30696917,28788145:501378,78643,0 -(109,131:30860771,28788145:173670,78643,0 +(105,131:30696917,28788145:501378,78643,0 +(105,131:30860771,28788145:173670,78643,0 ) ) -(109,131:31403379,28788145:1179650,485622,11795 -k109,131:31403379,28788145:0 -k109,131:31536199,28788145:132820 +(105,131:31239539,28788145:1343490,485622,11795 +k105,131:31239539,28788145:0 +k105,131:31387652,28788145:148113 ) -g109,131:30911859,28788145 -g109,131:32583029,28788145 +g105,131:30911859,28788145 +g105,131:32583029,28788145 ) -(109,133:6630773,29629633:25952256,505283,126483 -g109,133:11218293,29629633 -h109,133:11218293,29629633:2490370,0,0 -h109,133:13708663,29629633:0,0,0 -g109,133:9121143,29629633 -(109,133:9121143,29629633:2097150,485622,11795 -k109,133:11218293,29629633:554432 +(105,133:6630773,29629633:25952256,505283,126483 +g105,133:11218293,29629633 +h105,133:11218293,29629633:2490370,0,0 +h105,133:13708663,29629633:0,0,0 +g105,133:9121143,29629633 +(105,133:9121143,29629633:2097150,485622,11795 +k105,133:11218293,29629633:554432 ) -g109,133:13772231,29629633 -g109,133:15716684,29629633 -g109,133:17020195,29629633 -g109,133:17967190,29629633 -g109,133:19617386,29629633 -g109,133:20432653,29629633 -g109,133:21046725,29629633 -g109,133:21046725,29629633 -(109,133:21170735,29629633:501378,78643,0 -$109,133:21170735,29629633 -(109,133:21334589,29629633:173670,78643,0 +g105,133:13772231,29629633 +g105,133:15716684,29629633 +g105,133:17020195,29629633 +g105,133:17967190,29629633 +g105,133:19617386,29629633 +g105,133:20432653,29629633 +g105,133:21046725,29629633 +g105,133:21046725,29629633 +(105,133:21170735,29629633:501378,78643,0 +$105,133:21170735,29629633 +(105,133:21334589,29629633:173670,78643,0 ) -$109,133:21672113,29629633 +$105,133:21672113,29629633 ) -(109,133:21672113,29629633:501378,78643,0 -(109,133:21835967,29629633:173670,78643,0 +(105,133:21672113,29629633:501378,78643,0 +(105,133:21835967,29629633:173670,78643,0 ) ) -(109,133:22173491,29629633:501378,78643,0 -(109,133:22337345,29629633:173670,78643,0 +(105,133:22173491,29629633:501378,78643,0 +(105,133:22337345,29629633:173670,78643,0 ) ) -(109,133:22674869,29629633:501378,78643,0 -(109,133:22838723,29629633:173670,78643,0 +(105,133:22674869,29629633:501378,78643,0 +(105,133:22838723,29629633:173670,78643,0 ) ) -(109,133:23176247,29629633:501378,78643,0 -(109,133:23340101,29629633:173670,78643,0 +(105,133:23176247,29629633:501378,78643,0 +(105,133:23340101,29629633:173670,78643,0 ) ) -(109,133:23677625,29629633:501378,78643,0 -(109,133:23841479,29629633:173670,78643,0 +(105,133:23677625,29629633:501378,78643,0 +(105,133:23841479,29629633:173670,78643,0 ) ) -(109,133:24179003,29629633:501378,78643,0 -(109,133:24342857,29629633:173670,78643,0 +(105,133:24179003,29629633:501378,78643,0 +(105,133:24342857,29629633:173670,78643,0 ) ) -(109,133:24680381,29629633:501378,78643,0 -(109,133:24844235,29629633:173670,78643,0 +(105,133:24680381,29629633:501378,78643,0 +(105,133:24844235,29629633:173670,78643,0 ) ) -(109,133:25181759,29629633:501378,78643,0 -(109,133:25345613,29629633:173670,78643,0 +(105,133:25181759,29629633:501378,78643,0 +(105,133:25345613,29629633:173670,78643,0 ) ) -(109,133:25683137,29629633:501378,78643,0 -(109,133:25846991,29629633:173670,78643,0 +(105,133:25683137,29629633:501378,78643,0 +(105,133:25846991,29629633:173670,78643,0 ) ) -(109,133:26184515,29629633:501378,78643,0 -(109,133:26348369,29629633:173670,78643,0 +(105,133:26184515,29629633:501378,78643,0 +(105,133:26348369,29629633:173670,78643,0 ) ) -(109,133:26685893,29629633:501378,78643,0 -(109,133:26849747,29629633:173670,78643,0 +(105,133:26685893,29629633:501378,78643,0 +(105,133:26849747,29629633:173670,78643,0 ) ) -(109,133:27187271,29629633:501378,78643,0 -(109,133:27351125,29629633:173670,78643,0 +(105,133:27187271,29629633:501378,78643,0 +(105,133:27351125,29629633:173670,78643,0 ) ) -(109,133:27688649,29629633:501378,78643,0 -(109,133:27852503,29629633:173670,78643,0 +(105,133:27688649,29629633:501378,78643,0 +(105,133:27852503,29629633:173670,78643,0 ) ) -(109,133:28190027,29629633:501378,78643,0 -(109,133:28353881,29629633:173670,78643,0 +(105,133:28190027,29629633:501378,78643,0 +(105,133:28353881,29629633:173670,78643,0 ) ) -(109,133:28691405,29629633:501378,78643,0 -(109,133:28855259,29629633:173670,78643,0 +(105,133:28691405,29629633:501378,78643,0 +(105,133:28855259,29629633:173670,78643,0 ) ) -(109,133:29192783,29629633:501378,78643,0 -(109,133:29356637,29629633:173670,78643,0 +(105,133:29192783,29629633:501378,78643,0 +(105,133:29356637,29629633:173670,78643,0 ) ) -(109,133:29694161,29629633:501378,78643,0 -(109,133:29858015,29629633:173670,78643,0 +(105,133:29694161,29629633:501378,78643,0 +(105,133:29858015,29629633:173670,78643,0 ) ) -(109,133:30195539,29629633:501378,78643,0 -(109,133:30359393,29629633:173670,78643,0 +(105,133:30195539,29629633:501378,78643,0 +(105,133:30359393,29629633:173670,78643,0 ) ) -(109,133:30696917,29629633:501378,78643,0 -(109,133:30860771,29629633:173670,78643,0 +(105,133:30696917,29629633:501378,78643,0 +(105,133:30860771,29629633:173670,78643,0 ) ) -(109,133:31403379,29629633:1179650,485622,11795 -k109,133:31403379,29629633:0 -k109,133:31536199,29629633:132820 +(105,133:31239539,29629633:1343490,485622,11795 +k105,133:31239539,29629633:0 +k105,133:31387652,29629633:148113 ) -g109,133:30911859,29629633 -g109,133:32583029,29629633 +g105,133:30911859,29629633 +g105,133:32583029,29629633 ) -(109,135:6630773,30471121:25952256,513147,134348 -g109,135:11218293,30471121 -h109,135:11218293,30471121:2490370,0,0 -h109,135:13708663,30471121:0,0,0 -g109,135:9121143,30471121 -(109,135:9121143,30471121:2097150,485622,11795 -k109,135:11218293,30471121:554432 +(105,135:6630773,30471121:25952256,513147,134348 +g105,135:11218293,30471121 +h105,135:11218293,30471121:2490370,0,0 +h105,135:13708663,30471121:0,0,0 +g105,135:9121143,30471121 +(105,135:9121143,30471121:2097150,485622,11795 +k105,135:11218293,30471121:554432 ) -g109,135:13834490,30471121 -g109,135:14693011,30471121 -g109,135:16438235,30471121 -(109,135:16658333,30471121:501378,78643,0 -$109,135:16658333,30471121 -(109,135:16822187,30471121:173670,78643,0 +g105,135:13834490,30471121 +g105,135:14693011,30471121 +g105,135:16438235,30471121 +(105,135:16658333,30471121:501378,78643,0 +$105,135:16658333,30471121 +(105,135:16822187,30471121:173670,78643,0 ) -$109,135:17159711,30471121 +$105,135:17159711,30471121 ) -(109,135:17159711,30471121:501378,78643,0 -(109,135:17323565,30471121:173670,78643,0 +(105,135:17159711,30471121:501378,78643,0 +(105,135:17323565,30471121:173670,78643,0 ) ) -(109,135:17661089,30471121:501378,78643,0 -(109,135:17824943,30471121:173670,78643,0 +(105,135:17661089,30471121:501378,78643,0 +(105,135:17824943,30471121:173670,78643,0 ) ) -(109,135:18162467,30471121:501378,78643,0 -(109,135:18326321,30471121:173670,78643,0 +(105,135:18162467,30471121:501378,78643,0 +(105,135:18326321,30471121:173670,78643,0 ) ) -(109,135:18663845,30471121:501378,78643,0 -(109,135:18827699,30471121:173670,78643,0 +(105,135:18663845,30471121:501378,78643,0 +(105,135:18827699,30471121:173670,78643,0 ) ) -(109,135:19165223,30471121:501378,78643,0 -(109,135:19329077,30471121:173670,78643,0 +(105,135:19165223,30471121:501378,78643,0 +(105,135:19329077,30471121:173670,78643,0 ) ) -(109,135:19666601,30471121:501378,78643,0 -(109,135:19830455,30471121:173670,78643,0 +(105,135:19666601,30471121:501378,78643,0 +(105,135:19830455,30471121:173670,78643,0 ) ) -(109,135:20167979,30471121:501378,78643,0 -(109,135:20331833,30471121:173670,78643,0 +(105,135:20167979,30471121:501378,78643,0 +(105,135:20331833,30471121:173670,78643,0 ) ) -(109,135:20669357,30471121:501378,78643,0 -(109,135:20833211,30471121:173670,78643,0 +(105,135:20669357,30471121:501378,78643,0 +(105,135:20833211,30471121:173670,78643,0 ) ) -(109,135:21170735,30471121:501378,78643,0 -(109,135:21334589,30471121:173670,78643,0 +(105,135:21170735,30471121:501378,78643,0 +(105,135:21334589,30471121:173670,78643,0 ) ) -(109,135:21672113,30471121:501378,78643,0 -(109,135:21835967,30471121:173670,78643,0 +(105,135:21672113,30471121:501378,78643,0 +(105,135:21835967,30471121:173670,78643,0 ) ) -(109,135:22173491,30471121:501378,78643,0 -(109,135:22337345,30471121:173670,78643,0 +(105,135:22173491,30471121:501378,78643,0 +(105,135:22337345,30471121:173670,78643,0 ) ) -(109,135:22674869,30471121:501378,78643,0 -(109,135:22838723,30471121:173670,78643,0 +(105,135:22674869,30471121:501378,78643,0 +(105,135:22838723,30471121:173670,78643,0 ) ) -(109,135:23176247,30471121:501378,78643,0 -(109,135:23340101,30471121:173670,78643,0 +(105,135:23176247,30471121:501378,78643,0 +(105,135:23340101,30471121:173670,78643,0 ) ) -(109,135:23677625,30471121:501378,78643,0 -(109,135:23841479,30471121:173670,78643,0 +(105,135:23677625,30471121:501378,78643,0 +(105,135:23841479,30471121:173670,78643,0 ) ) -(109,135:24179003,30471121:501378,78643,0 -(109,135:24342857,30471121:173670,78643,0 +(105,135:24179003,30471121:501378,78643,0 +(105,135:24342857,30471121:173670,78643,0 ) ) -(109,135:24680381,30471121:501378,78643,0 -(109,135:24844235,30471121:173670,78643,0 +(105,135:24680381,30471121:501378,78643,0 +(105,135:24844235,30471121:173670,78643,0 ) ) -(109,135:25181759,30471121:501378,78643,0 -(109,135:25345613,30471121:173670,78643,0 +(105,135:25181759,30471121:501378,78643,0 +(105,135:25345613,30471121:173670,78643,0 ) ) -(109,135:25683137,30471121:501378,78643,0 -(109,135:25846991,30471121:173670,78643,0 +(105,135:25683137,30471121:501378,78643,0 +(105,135:25846991,30471121:173670,78643,0 ) ) -(109,135:26184515,30471121:501378,78643,0 -(109,135:26348369,30471121:173670,78643,0 +(105,135:26184515,30471121:501378,78643,0 +(105,135:26348369,30471121:173670,78643,0 ) ) -(109,135:26685893,30471121:501378,78643,0 -(109,135:26849747,30471121:173670,78643,0 +(105,135:26685893,30471121:501378,78643,0 +(105,135:26849747,30471121:173670,78643,0 ) ) -(109,135:27187271,30471121:501378,78643,0 -(109,135:27351125,30471121:173670,78643,0 +(105,135:27187271,30471121:501378,78643,0 +(105,135:27351125,30471121:173670,78643,0 ) ) -(109,135:27688649,30471121:501378,78643,0 -(109,135:27852503,30471121:173670,78643,0 +(105,135:27688649,30471121:501378,78643,0 +(105,135:27852503,30471121:173670,78643,0 ) ) -(109,135:28190027,30471121:501378,78643,0 -(109,135:28353881,30471121:173670,78643,0 +(105,135:28190027,30471121:501378,78643,0 +(105,135:28353881,30471121:173670,78643,0 ) ) -(109,135:28691405,30471121:501378,78643,0 -(109,135:28855259,30471121:173670,78643,0 +(105,135:28691405,30471121:501378,78643,0 +(105,135:28855259,30471121:173670,78643,0 ) ) -(109,135:29192783,30471121:501378,78643,0 -(109,135:29356637,30471121:173670,78643,0 +(105,135:29192783,30471121:501378,78643,0 +(105,135:29356637,30471121:173670,78643,0 ) ) -(109,135:29694161,30471121:501378,78643,0 -(109,135:29858015,30471121:173670,78643,0 +(105,135:29694161,30471121:501378,78643,0 +(105,135:29858015,30471121:173670,78643,0 ) ) -(109,135:30195539,30471121:501378,78643,0 -(109,135:30359393,30471121:173670,78643,0 +(105,135:30195539,30471121:501378,78643,0 +(105,135:30359393,30471121:173670,78643,0 ) ) -(109,135:30696917,30471121:501378,78643,0 -(109,135:30860771,30471121:173670,78643,0 +(105,135:30696917,30471121:501378,78643,0 +(105,135:30860771,30471121:173670,78643,0 ) ) -(109,135:31403379,30471121:1179650,485622,11795 -k109,135:31403379,30471121:0 -k109,135:31536199,30471121:132820 +(105,135:31239539,30471121:1343490,485622,11795 +k105,135:31239539,30471121:0 +k105,135:31387652,30471121:148113 ) -g109,135:30911859,30471121 -g109,135:32583029,30471121 +g105,135:30911859,30471121 +g105,135:32583029,30471121 ) -(109,137:6630773,31312609:25952256,513147,126483 -g109,137:9121143,31312609 -h109,137:9121143,31312609:983040,0,0 -h109,137:10104183,31312609:0,0,0 -g109,137:7613813,31312609 -(109,137:7613813,31312609:1507330,485622,11795 -k109,137:9121143,31312609:536742 +(105,137:6630773,31312609:25952256,513147,126483 +g105,137:9121143,31312609 +h105,137:9121143,31312609:983040,0,0 +h105,137:10104183,31312609:0,0,0 +g105,137:7613813,31312609 +(105,137:7613813,31312609:1507330,485622,11795 +k105,137:9121143,31312609:536742 ) -g109,137:11215673,31312609 -g109,137:14440699,31312609 -g109,137:14440699,31312609 -(109,137:14652821,31312609:501378,78643,0 -$109,137:14652821,31312609 -(109,137:14816675,31312609:173670,78643,0 +g105,137:11215673,31312609 +g105,137:14440699,31312609 +g105,137:14440699,31312609 +(105,137:14652821,31312609:501378,78643,0 +$105,137:14652821,31312609 +(105,137:14816675,31312609:173670,78643,0 ) -$109,137:15154199,31312609 +$105,137:15154199,31312609 ) -(109,137:15154199,31312609:501378,78643,0 -(109,137:15318053,31312609:173670,78643,0 +(105,137:15154199,31312609:501378,78643,0 +(105,137:15318053,31312609:173670,78643,0 ) ) -(109,137:15655577,31312609:501378,78643,0 -(109,137:15819431,31312609:173670,78643,0 +(105,137:15655577,31312609:501378,78643,0 +(105,137:15819431,31312609:173670,78643,0 ) ) -(109,137:16156955,31312609:501378,78643,0 -(109,137:16320809,31312609:173670,78643,0 +(105,137:16156955,31312609:501378,78643,0 +(105,137:16320809,31312609:173670,78643,0 ) ) -(109,137:16658333,31312609:501378,78643,0 -(109,137:16822187,31312609:173670,78643,0 +(105,137:16658333,31312609:501378,78643,0 +(105,137:16822187,31312609:173670,78643,0 ) ) -(109,137:17159711,31312609:501378,78643,0 -(109,137:17323565,31312609:173670,78643,0 +(105,137:17159711,31312609:501378,78643,0 +(105,137:17323565,31312609:173670,78643,0 ) ) -(109,137:17661089,31312609:501378,78643,0 -(109,137:17824943,31312609:173670,78643,0 +(105,137:17661089,31312609:501378,78643,0 +(105,137:17824943,31312609:173670,78643,0 ) ) -(109,137:18162467,31312609:501378,78643,0 -(109,137:18326321,31312609:173670,78643,0 +(105,137:18162467,31312609:501378,78643,0 +(105,137:18326321,31312609:173670,78643,0 ) ) -(109,137:18663845,31312609:501378,78643,0 -(109,137:18827699,31312609:173670,78643,0 +(105,137:18663845,31312609:501378,78643,0 +(105,137:18827699,31312609:173670,78643,0 ) ) -(109,137:19165223,31312609:501378,78643,0 -(109,137:19329077,31312609:173670,78643,0 +(105,137:19165223,31312609:501378,78643,0 +(105,137:19329077,31312609:173670,78643,0 ) ) -(109,137:19666601,31312609:501378,78643,0 -(109,137:19830455,31312609:173670,78643,0 +(105,137:19666601,31312609:501378,78643,0 +(105,137:19830455,31312609:173670,78643,0 ) ) -(109,137:20167979,31312609:501378,78643,0 -(109,137:20331833,31312609:173670,78643,0 +(105,137:20167979,31312609:501378,78643,0 +(105,137:20331833,31312609:173670,78643,0 ) ) -(109,137:20669357,31312609:501378,78643,0 -(109,137:20833211,31312609:173670,78643,0 +(105,137:20669357,31312609:501378,78643,0 +(105,137:20833211,31312609:173670,78643,0 ) ) -(109,137:21170735,31312609:501378,78643,0 -(109,137:21334589,31312609:173670,78643,0 +(105,137:21170735,31312609:501378,78643,0 +(105,137:21334589,31312609:173670,78643,0 ) ) -(109,137:21672113,31312609:501378,78643,0 -(109,137:21835967,31312609:173670,78643,0 +(105,137:21672113,31312609:501378,78643,0 +(105,137:21835967,31312609:173670,78643,0 ) ) -(109,137:22173491,31312609:501378,78643,0 -(109,137:22337345,31312609:173670,78643,0 +(105,137:22173491,31312609:501378,78643,0 +(105,137:22337345,31312609:173670,78643,0 ) ) -(109,137:22674869,31312609:501378,78643,0 -(109,137:22838723,31312609:173670,78643,0 +(105,137:22674869,31312609:501378,78643,0 +(105,137:22838723,31312609:173670,78643,0 ) ) -(109,137:23176247,31312609:501378,78643,0 -(109,137:23340101,31312609:173670,78643,0 +(105,137:23176247,31312609:501378,78643,0 +(105,137:23340101,31312609:173670,78643,0 ) ) -(109,137:23677625,31312609:501378,78643,0 -(109,137:23841479,31312609:173670,78643,0 +(105,137:23677625,31312609:501378,78643,0 +(105,137:23841479,31312609:173670,78643,0 ) ) -(109,137:24179003,31312609:501378,78643,0 -(109,137:24342857,31312609:173670,78643,0 +(105,137:24179003,31312609:501378,78643,0 +(105,137:24342857,31312609:173670,78643,0 ) ) -(109,137:24680381,31312609:501378,78643,0 -(109,137:24844235,31312609:173670,78643,0 +(105,137:24680381,31312609:501378,78643,0 +(105,137:24844235,31312609:173670,78643,0 ) ) -(109,137:25181759,31312609:501378,78643,0 -(109,137:25345613,31312609:173670,78643,0 +(105,137:25181759,31312609:501378,78643,0 +(105,137:25345613,31312609:173670,78643,0 ) ) -(109,137:25683137,31312609:501378,78643,0 -(109,137:25846991,31312609:173670,78643,0 +(105,137:25683137,31312609:501378,78643,0 +(105,137:25846991,31312609:173670,78643,0 ) ) -(109,137:26184515,31312609:501378,78643,0 -(109,137:26348369,31312609:173670,78643,0 +(105,137:26184515,31312609:501378,78643,0 +(105,137:26348369,31312609:173670,78643,0 ) ) -(109,137:26685893,31312609:501378,78643,0 -(109,137:26849747,31312609:173670,78643,0 +(105,137:26685893,31312609:501378,78643,0 +(105,137:26849747,31312609:173670,78643,0 ) ) -(109,137:27187271,31312609:501378,78643,0 -(109,137:27351125,31312609:173670,78643,0 +(105,137:27187271,31312609:501378,78643,0 +(105,137:27351125,31312609:173670,78643,0 ) ) -(109,137:27688649,31312609:501378,78643,0 -(109,137:27852503,31312609:173670,78643,0 +(105,137:27688649,31312609:501378,78643,0 +(105,137:27852503,31312609:173670,78643,0 ) ) -(109,137:28190027,31312609:501378,78643,0 -(109,137:28353881,31312609:173670,78643,0 +(105,137:28190027,31312609:501378,78643,0 +(105,137:28353881,31312609:173670,78643,0 ) ) -(109,137:28691405,31312609:501378,78643,0 -(109,137:28855259,31312609:173670,78643,0 +(105,137:28691405,31312609:501378,78643,0 +(105,137:28855259,31312609:173670,78643,0 ) ) -(109,137:29192783,31312609:501378,78643,0 -(109,137:29356637,31312609:173670,78643,0 +(105,137:29192783,31312609:501378,78643,0 +(105,137:29356637,31312609:173670,78643,0 ) ) -(109,137:29694161,31312609:501378,78643,0 -(109,137:29858015,31312609:173670,78643,0 +(105,137:29694161,31312609:501378,78643,0 +(105,137:29858015,31312609:173670,78643,0 ) ) -(109,137:30195539,31312609:501378,78643,0 -(109,137:30359393,31312609:173670,78643,0 +(105,137:30195539,31312609:501378,78643,0 +(105,137:30359393,31312609:173670,78643,0 ) ) -(109,137:30696917,31312609:501378,78643,0 -(109,137:30860771,31312609:173670,78643,0 +(105,137:30696917,31312609:501378,78643,0 +(105,137:30860771,31312609:173670,78643,0 ) ) -(109,137:31403379,31312609:1179650,485622,11795 -k109,137:31403379,31312609:0 -k109,137:31536199,31312609:132820 +(105,137:31239539,31312609:1343490,485622,11795 +k105,137:31239539,31312609:0 +k105,137:31387652,31312609:148113 ) -g109,137:30911859,31312609 -g109,137:32583029,31312609 +g105,137:30911859,31312609 +g105,137:32583029,31312609 ) -(109,139:6630773,32154097:25952256,513147,134348 -g109,139:11218293,32154097 -h109,139:11218293,32154097:2490370,0,0 -h109,139:13708663,32154097:0,0,0 -g109,139:9121143,32154097 -(109,139:9121143,32154097:2097150,485622,11795 -k109,139:11218293,32154097:554432 +(105,139:6630773,32154097:25952256,513147,134348 +g105,139:11218293,32154097 +h105,139:11218293,32154097:2490370,0,0 +h105,139:13708663,32154097:0,0,0 +g105,139:9121143,32154097 +(105,139:9121143,32154097:2097150,485622,11795 +k105,139:11218293,32154097:554432 ) -g109,139:14303072,32154097 -g109,139:17528098,32154097 -g109,139:18378755,32154097 -g109,139:20886162,32154097 -g109,139:22276836,32154097 -g109,139:23600663,32154097 -(109,139:23677625,32154097:501378,78643,0 -$109,139:23677625,32154097 -(109,139:23841479,32154097:173670,78643,0 +g105,139:14303072,32154097 +g105,139:17528098,32154097 +g105,139:18378755,32154097 +g105,139:20886162,32154097 +g105,139:22276836,32154097 +g105,139:23600663,32154097 +(105,139:23677625,32154097:501378,78643,0 +$105,139:23677625,32154097 +(105,139:23841479,32154097:173670,78643,0 ) -$109,139:24179003,32154097 +$105,139:24179003,32154097 ) -(109,139:24179003,32154097:501378,78643,0 -(109,139:24342857,32154097:173670,78643,0 +(105,139:24179003,32154097:501378,78643,0 +(105,139:24342857,32154097:173670,78643,0 ) ) -(109,139:24680381,32154097:501378,78643,0 -(109,139:24844235,32154097:173670,78643,0 +(105,139:24680381,32154097:501378,78643,0 +(105,139:24844235,32154097:173670,78643,0 ) ) -(109,139:25181759,32154097:501378,78643,0 -(109,139:25345613,32154097:173670,78643,0 +(105,139:25181759,32154097:501378,78643,0 +(105,139:25345613,32154097:173670,78643,0 ) ) -(109,139:25683137,32154097:501378,78643,0 -(109,139:25846991,32154097:173670,78643,0 +(105,139:25683137,32154097:501378,78643,0 +(105,139:25846991,32154097:173670,78643,0 ) ) -(109,139:26184515,32154097:501378,78643,0 -(109,139:26348369,32154097:173670,78643,0 +(105,139:26184515,32154097:501378,78643,0 +(105,139:26348369,32154097:173670,78643,0 ) ) -(109,139:26685893,32154097:501378,78643,0 -(109,139:26849747,32154097:173670,78643,0 +(105,139:26685893,32154097:501378,78643,0 +(105,139:26849747,32154097:173670,78643,0 ) ) -(109,139:27187271,32154097:501378,78643,0 -(109,139:27351125,32154097:173670,78643,0 +(105,139:27187271,32154097:501378,78643,0 +(105,139:27351125,32154097:173670,78643,0 ) ) -(109,139:27688649,32154097:501378,78643,0 -(109,139:27852503,32154097:173670,78643,0 +(105,139:27688649,32154097:501378,78643,0 +(105,139:27852503,32154097:173670,78643,0 ) ) -(109,139:28190027,32154097:501378,78643,0 -(109,139:28353881,32154097:173670,78643,0 +(105,139:28190027,32154097:501378,78643,0 +(105,139:28353881,32154097:173670,78643,0 ) ) -(109,139:28691405,32154097:501378,78643,0 -(109,139:28855259,32154097:173670,78643,0 +(105,139:28691405,32154097:501378,78643,0 +(105,139:28855259,32154097:173670,78643,0 ) ) -(109,139:29192783,32154097:501378,78643,0 -(109,139:29356637,32154097:173670,78643,0 +(105,139:29192783,32154097:501378,78643,0 +(105,139:29356637,32154097:173670,78643,0 ) ) -(109,139:29694161,32154097:501378,78643,0 -(109,139:29858015,32154097:173670,78643,0 +(105,139:29694161,32154097:501378,78643,0 +(105,139:29858015,32154097:173670,78643,0 ) ) -(109,139:30195539,32154097:501378,78643,0 -(109,139:30359393,32154097:173670,78643,0 +(105,139:30195539,32154097:501378,78643,0 +(105,139:30359393,32154097:173670,78643,0 ) ) -(109,139:30696917,32154097:501378,78643,0 -(109,139:30860771,32154097:173670,78643,0 +(105,139:30696917,32154097:501378,78643,0 +(105,139:30860771,32154097:173670,78643,0 ) ) -(109,139:31403379,32154097:1179650,485622,11795 -k109,139:31403379,32154097:0 -k109,139:31536199,32154097:132820 +(105,139:31239539,32154097:1343490,485622,11795 +k105,139:31239539,32154097:0 +k105,139:31387652,32154097:148113 ) -g109,139:30911859,32154097 -g109,139:32583029,32154097 +g105,139:30911859,32154097 +g105,139:32583029,32154097 ) -(109,141:6630773,32995585:25952256,513147,134348 -g109,141:11218293,32995585 -h109,141:11218293,32995585:2490370,0,0 -h109,141:13708663,32995585:0,0,0 -g109,141:9121143,32995585 -(109,141:9121143,32995585:2097150,485622,11795 -k109,141:11218293,32995585:554432 +(105,141:6630773,32995585:25952256,513147,134348 +g105,141:11218293,32995585 +h105,141:11218293,32995585:2490370,0,0 +h105,141:13708663,32995585:0,0,0 +g105,141:9121143,32995585 +(105,141:9121143,32995585:2097150,485622,11795 +k105,141:11218293,32995585:554432 ) -g109,141:14303072,32995585 -g109,141:17528098,32995585 -g109,141:18378755,32995585 -g109,141:21311491,32995585 -g109,141:22702165,32995585 -g109,141:24682008,32995585 -(109,141:25181759,32995585:501378,78643,0 -$109,141:25181759,32995585 -(109,141:25345613,32995585:173670,78643,0 +g105,141:14303072,32995585 +g105,141:17528098,32995585 +g105,141:18378755,32995585 +g105,141:21311491,32995585 +g105,141:22702165,32995585 +g105,141:24682008,32995585 +(105,141:25181759,32995585:501378,78643,0 +$105,141:25181759,32995585 +(105,141:25345613,32995585:173670,78643,0 ) -$109,141:25683137,32995585 +$105,141:25683137,32995585 ) -(109,141:25683137,32995585:501378,78643,0 -(109,141:25846991,32995585:173670,78643,0 +(105,141:25683137,32995585:501378,78643,0 +(105,141:25846991,32995585:173670,78643,0 ) ) -(109,141:26184515,32995585:501378,78643,0 -(109,141:26348369,32995585:173670,78643,0 +(105,141:26184515,32995585:501378,78643,0 +(105,141:26348369,32995585:173670,78643,0 ) ) -(109,141:26685893,32995585:501378,78643,0 -(109,141:26849747,32995585:173670,78643,0 +(105,141:26685893,32995585:501378,78643,0 +(105,141:26849747,32995585:173670,78643,0 ) ) -(109,141:27187271,32995585:501378,78643,0 -(109,141:27351125,32995585:173670,78643,0 +(105,141:27187271,32995585:501378,78643,0 +(105,141:27351125,32995585:173670,78643,0 ) ) -(109,141:27688649,32995585:501378,78643,0 -(109,141:27852503,32995585:173670,78643,0 +(105,141:27688649,32995585:501378,78643,0 +(105,141:27852503,32995585:173670,78643,0 ) ) -(109,141:28190027,32995585:501378,78643,0 -(109,141:28353881,32995585:173670,78643,0 +(105,141:28190027,32995585:501378,78643,0 +(105,141:28353881,32995585:173670,78643,0 ) ) -(109,141:28691405,32995585:501378,78643,0 -(109,141:28855259,32995585:173670,78643,0 +(105,141:28691405,32995585:501378,78643,0 +(105,141:28855259,32995585:173670,78643,0 ) ) -(109,141:29192783,32995585:501378,78643,0 -(109,141:29356637,32995585:173670,78643,0 +(105,141:29192783,32995585:501378,78643,0 +(105,141:29356637,32995585:173670,78643,0 ) ) -(109,141:29694161,32995585:501378,78643,0 -(109,141:29858015,32995585:173670,78643,0 +(105,141:29694161,32995585:501378,78643,0 +(105,141:29858015,32995585:173670,78643,0 ) ) -(109,141:30195539,32995585:501378,78643,0 -(109,141:30359393,32995585:173670,78643,0 +(105,141:30195539,32995585:501378,78643,0 +(105,141:30359393,32995585:173670,78643,0 ) ) -(109,141:30696917,32995585:501378,78643,0 -(109,141:30860771,32995585:173670,78643,0 +(105,141:30696917,32995585:501378,78643,0 +(105,141:30860771,32995585:173670,78643,0 ) ) -(109,141:31403379,32995585:1179650,485622,11795 -k109,141:31403379,32995585:0 -k109,141:31536199,32995585:132820 +(105,141:31239539,32995585:1343490,485622,11795 +k105,141:31239539,32995585:0 +k105,141:31387652,32995585:148113 ) -g109,141:30911859,32995585 -g109,141:32583029,32995585 +g105,141:30911859,32995585 +g105,141:32583029,32995585 ) -(109,143:6630773,33837073:25952256,505283,134348 -g109,143:9121143,33837073 -h109,143:9121143,33837073:983040,0,0 -h109,143:10104183,33837073:0,0,0 -g109,143:7613813,33837073 -(109,143:7613813,33837073:1507330,485622,11795 -k109,143:9121143,33837073:536742 +(105,143:6630773,33837073:25952256,505283,134348 +g105,143:9121143,33837073 +h105,143:9121143,33837073:983040,0,0 +h105,143:10104183,33837073:0,0,0 +g105,143:7613813,33837073 +(105,143:7613813,33837073:1507330,485622,11795 +k105,143:9121143,33837073:536742 ) -g109,143:11394586,33837073 -g109,143:13662131,33837073 -g109,143:15052805,33837073 -g109,143:18226713,33837073 -g109,143:20622053,33837073 -g109,143:20622053,33837073 -(109,143:20669357,33837073:501378,78643,0 -$109,143:20669357,33837073 -(109,143:20833211,33837073:173670,78643,0 +g105,143:11394586,33837073 +g105,143:13662131,33837073 +g105,143:15052805,33837073 +g105,143:18226713,33837073 +g105,143:20622053,33837073 +g105,143:20622053,33837073 +(105,143:20669357,33837073:501378,78643,0 +$105,143:20669357,33837073 +(105,143:20833211,33837073:173670,78643,0 ) -$109,143:21170735,33837073 +$105,143:21170735,33837073 ) -(109,143:21170735,33837073:501378,78643,0 -(109,143:21334589,33837073:173670,78643,0 +(105,143:21170735,33837073:501378,78643,0 +(105,143:21334589,33837073:173670,78643,0 ) ) -(109,143:21672113,33837073:501378,78643,0 -(109,143:21835967,33837073:173670,78643,0 +(105,143:21672113,33837073:501378,78643,0 +(105,143:21835967,33837073:173670,78643,0 ) ) -(109,143:22173491,33837073:501378,78643,0 -(109,143:22337345,33837073:173670,78643,0 +(105,143:22173491,33837073:501378,78643,0 +(105,143:22337345,33837073:173670,78643,0 ) ) -(109,143:22674869,33837073:501378,78643,0 -(109,143:22838723,33837073:173670,78643,0 +(105,143:22674869,33837073:501378,78643,0 +(105,143:22838723,33837073:173670,78643,0 ) ) -(109,143:23176247,33837073:501378,78643,0 -(109,143:23340101,33837073:173670,78643,0 +(105,143:23176247,33837073:501378,78643,0 +(105,143:23340101,33837073:173670,78643,0 ) ) -(109,143:23677625,33837073:501378,78643,0 -(109,143:23841479,33837073:173670,78643,0 +(105,143:23677625,33837073:501378,78643,0 +(105,143:23841479,33837073:173670,78643,0 ) ) -(109,143:24179003,33837073:501378,78643,0 -(109,143:24342857,33837073:173670,78643,0 +(105,143:24179003,33837073:501378,78643,0 +(105,143:24342857,33837073:173670,78643,0 ) ) -(109,143:24680381,33837073:501378,78643,0 -(109,143:24844235,33837073:173670,78643,0 +(105,143:24680381,33837073:501378,78643,0 +(105,143:24844235,33837073:173670,78643,0 ) ) -(109,143:25181759,33837073:501378,78643,0 -(109,143:25345613,33837073:173670,78643,0 +(105,143:25181759,33837073:501378,78643,0 +(105,143:25345613,33837073:173670,78643,0 ) ) -(109,143:25683137,33837073:501378,78643,0 -(109,143:25846991,33837073:173670,78643,0 +(105,143:25683137,33837073:501378,78643,0 +(105,143:25846991,33837073:173670,78643,0 ) ) -(109,143:26184515,33837073:501378,78643,0 -(109,143:26348369,33837073:173670,78643,0 +(105,143:26184515,33837073:501378,78643,0 +(105,143:26348369,33837073:173670,78643,0 ) ) -(109,143:26685893,33837073:501378,78643,0 -(109,143:26849747,33837073:173670,78643,0 +(105,143:26685893,33837073:501378,78643,0 +(105,143:26849747,33837073:173670,78643,0 ) ) -(109,143:27187271,33837073:501378,78643,0 -(109,143:27351125,33837073:173670,78643,0 +(105,143:27187271,33837073:501378,78643,0 +(105,143:27351125,33837073:173670,78643,0 ) ) -(109,143:27688649,33837073:501378,78643,0 -(109,143:27852503,33837073:173670,78643,0 +(105,143:27688649,33837073:501378,78643,0 +(105,143:27852503,33837073:173670,78643,0 ) ) -(109,143:28190027,33837073:501378,78643,0 -(109,143:28353881,33837073:173670,78643,0 +(105,143:28190027,33837073:501378,78643,0 +(105,143:28353881,33837073:173670,78643,0 ) ) -(109,143:28691405,33837073:501378,78643,0 -(109,143:28855259,33837073:173670,78643,0 +(105,143:28691405,33837073:501378,78643,0 +(105,143:28855259,33837073:173670,78643,0 ) ) -(109,143:29192783,33837073:501378,78643,0 -(109,143:29356637,33837073:173670,78643,0 +(105,143:29192783,33837073:501378,78643,0 +(105,143:29356637,33837073:173670,78643,0 ) ) -(109,143:29694161,33837073:501378,78643,0 -(109,143:29858015,33837073:173670,78643,0 +(105,143:29694161,33837073:501378,78643,0 +(105,143:29858015,33837073:173670,78643,0 ) ) -(109,143:30195539,33837073:501378,78643,0 -(109,143:30359393,33837073:173670,78643,0 +(105,143:30195539,33837073:501378,78643,0 +(105,143:30359393,33837073:173670,78643,0 ) ) -(109,143:30696917,33837073:501378,78643,0 -(109,143:30860771,33837073:173670,78643,0 +(105,143:30696917,33837073:501378,78643,0 +(105,143:30860771,33837073:173670,78643,0 ) ) -(109,143:31403379,33837073:1179650,485622,11795 -k109,143:31403379,33837073:0 -k109,143:31536199,33837073:132820 +(105,143:31239539,33837073:1343490,485622,11795 +k105,143:31239539,33837073:0 +k105,143:31387652,33837073:148113 ) -g109,143:30911859,33837073 -g109,143:32583029,33837073 +g105,143:30911859,33837073 +g105,143:32583029,33837073 ) -(109,145:6630773,34678561:25952256,513147,126483 -g109,145:9121143,34678561 -h109,145:9121143,34678561:983040,0,0 -h109,145:10104183,34678561:0,0,0 -g109,145:7613813,34678561 -(109,145:7613813,34678561:1507330,485622,11795 -k109,145:9121143,34678561:536742 +(105,145:6630773,34678561:25952256,513147,126483 +g105,145:9121143,34678561 +h105,145:9121143,34678561:983040,0,0 +h105,145:10104183,34678561:0,0,0 +g105,145:7613813,34678561 +(105,145:7613813,34678561:1507330,485622,11795 +k105,145:9121143,34678561:536742 ) -g109,145:10517059,34678561 -g109,145:13387535,34678561 -g109,145:15218610,34678561 -g109,145:16077131,34678561 -g109,145:18021584,34678561 -g109,145:18021584,34678561 -(109,145:18162467,34678561:501378,78643,0 -$109,145:18162467,34678561 -(109,145:18326321,34678561:173670,78643,0 +g105,145:10517059,34678561 +g105,145:13387535,34678561 +g105,145:15218610,34678561 +g105,145:16077131,34678561 +g105,145:18021584,34678561 +g105,145:18021584,34678561 +(105,145:18162467,34678561:501378,78643,0 +$105,145:18162467,34678561 +(105,145:18326321,34678561:173670,78643,0 ) -$109,145:18663845,34678561 +$105,145:18663845,34678561 ) -(109,145:18663845,34678561:501378,78643,0 -(109,145:18827699,34678561:173670,78643,0 +(105,145:18663845,34678561:501378,78643,0 +(105,145:18827699,34678561:173670,78643,0 ) ) -(109,145:19165223,34678561:501378,78643,0 -(109,145:19329077,34678561:173670,78643,0 +(105,145:19165223,34678561:501378,78643,0 +(105,145:19329077,34678561:173670,78643,0 ) ) -(109,145:19666601,34678561:501378,78643,0 -(109,145:19830455,34678561:173670,78643,0 +(105,145:19666601,34678561:501378,78643,0 +(105,145:19830455,34678561:173670,78643,0 ) ) -(109,145:20167979,34678561:501378,78643,0 -(109,145:20331833,34678561:173670,78643,0 +(105,145:20167979,34678561:501378,78643,0 +(105,145:20331833,34678561:173670,78643,0 ) ) -(109,145:20669357,34678561:501378,78643,0 -(109,145:20833211,34678561:173670,78643,0 +(105,145:20669357,34678561:501378,78643,0 +(105,145:20833211,34678561:173670,78643,0 ) ) -(109,145:21170735,34678561:501378,78643,0 -(109,145:21334589,34678561:173670,78643,0 +(105,145:21170735,34678561:501378,78643,0 +(105,145:21334589,34678561:173670,78643,0 ) ) -(109,145:21672113,34678561:501378,78643,0 -(109,145:21835967,34678561:173670,78643,0 +(105,145:21672113,34678561:501378,78643,0 +(105,145:21835967,34678561:173670,78643,0 ) ) -(109,145:22173491,34678561:501378,78643,0 -(109,145:22337345,34678561:173670,78643,0 +(105,145:22173491,34678561:501378,78643,0 +(105,145:22337345,34678561:173670,78643,0 ) ) -(109,145:22674869,34678561:501378,78643,0 -(109,145:22838723,34678561:173670,78643,0 +(105,145:22674869,34678561:501378,78643,0 +(105,145:22838723,34678561:173670,78643,0 ) ) -(109,145:23176247,34678561:501378,78643,0 -(109,145:23340101,34678561:173670,78643,0 +(105,145:23176247,34678561:501378,78643,0 +(105,145:23340101,34678561:173670,78643,0 ) ) -(109,145:23677625,34678561:501378,78643,0 -(109,145:23841479,34678561:173670,78643,0 +(105,145:23677625,34678561:501378,78643,0 +(105,145:23841479,34678561:173670,78643,0 ) ) -(109,145:24179003,34678561:501378,78643,0 -(109,145:24342857,34678561:173670,78643,0 +(105,145:24179003,34678561:501378,78643,0 +(105,145:24342857,34678561:173670,78643,0 ) ) -(109,145:24680381,34678561:501378,78643,0 -(109,145:24844235,34678561:173670,78643,0 +(105,145:24680381,34678561:501378,78643,0 +(105,145:24844235,34678561:173670,78643,0 ) ) -(109,145:25181759,34678561:501378,78643,0 -(109,145:25345613,34678561:173670,78643,0 +(105,145:25181759,34678561:501378,78643,0 +(105,145:25345613,34678561:173670,78643,0 ) ) -(109,145:25683137,34678561:501378,78643,0 -(109,145:25846991,34678561:173670,78643,0 +(105,145:25683137,34678561:501378,78643,0 +(105,145:25846991,34678561:173670,78643,0 ) ) -(109,145:26184515,34678561:501378,78643,0 -(109,145:26348369,34678561:173670,78643,0 +(105,145:26184515,34678561:501378,78643,0 +(105,145:26348369,34678561:173670,78643,0 ) ) -(109,145:26685893,34678561:501378,78643,0 -(109,145:26849747,34678561:173670,78643,0 +(105,145:26685893,34678561:501378,78643,0 +(105,145:26849747,34678561:173670,78643,0 ) ) -(109,145:27187271,34678561:501378,78643,0 -(109,145:27351125,34678561:173670,78643,0 +(105,145:27187271,34678561:501378,78643,0 +(105,145:27351125,34678561:173670,78643,0 ) ) -(109,145:27688649,34678561:501378,78643,0 -(109,145:27852503,34678561:173670,78643,0 +(105,145:27688649,34678561:501378,78643,0 +(105,145:27852503,34678561:173670,78643,0 ) ) -(109,145:28190027,34678561:501378,78643,0 -(109,145:28353881,34678561:173670,78643,0 +(105,145:28190027,34678561:501378,78643,0 +(105,145:28353881,34678561:173670,78643,0 ) ) -(109,145:28691405,34678561:501378,78643,0 -(109,145:28855259,34678561:173670,78643,0 +(105,145:28691405,34678561:501378,78643,0 +(105,145:28855259,34678561:173670,78643,0 ) ) -(109,145:29192783,34678561:501378,78643,0 -(109,145:29356637,34678561:173670,78643,0 +(105,145:29192783,34678561:501378,78643,0 +(105,145:29356637,34678561:173670,78643,0 ) ) -(109,145:29694161,34678561:501378,78643,0 -(109,145:29858015,34678561:173670,78643,0 +(105,145:29694161,34678561:501378,78643,0 +(105,145:29858015,34678561:173670,78643,0 ) ) -(109,145:30195539,34678561:501378,78643,0 -(109,145:30359393,34678561:173670,78643,0 +(105,145:30195539,34678561:501378,78643,0 +(105,145:30359393,34678561:173670,78643,0 ) ) -(109,145:30696917,34678561:501378,78643,0 -(109,145:30860771,34678561:173670,78643,0 +(105,145:30696917,34678561:501378,78643,0 +(105,145:30860771,34678561:173670,78643,0 ) ) -(109,145:31403379,34678561:1179650,481690,0 -k109,145:31403379,34678561:0 -k109,145:31536199,34678561:132820 +(105,145:31239539,34678561:1343490,481690,0 +k105,145:31239539,34678561:0 +k105,145:31387652,34678561:148113 ) -g109,145:30911859,34678561 -g109,145:32583029,34678561 +g105,145:30911859,34678561 +g105,145:32583029,34678561 ) -(109,147:6630773,35520049:25952256,505283,134348 -g109,147:11218293,35520049 -h109,147:11218293,35520049:2490370,0,0 -h109,147:13708663,35520049:0,0,0 -g109,147:9121143,35520049 -(109,147:9121143,35520049:2097150,485622,11795 -k109,147:11218293,35520049:554432 +(105,147:6630773,35520049:25952256,505283,134348 +g105,147:11218293,35520049 +h105,147:11218293,35520049:2490370,0,0 +h105,147:13708663,35520049:0,0,0 +g105,147:9121143,35520049 +(105,147:9121143,35520049:2097150,485622,11795 +k105,147:11218293,35520049:554432 ) -g109,147:13787304,35520049 -g109,147:16189854,35520049 -(109,147:16658333,35520049:501378,78643,0 -$109,147:16658333,35520049 -(109,147:16822187,35520049:173670,78643,0 +g105,147:13787304,35520049 +g105,147:16189854,35520049 +(105,147:16658333,35520049:501378,78643,0 +$105,147:16658333,35520049 +(105,147:16822187,35520049:173670,78643,0 ) -$109,147:17159711,35520049 +$105,147:17159711,35520049 ) -(109,147:17159711,35520049:501378,78643,0 -(109,147:17323565,35520049:173670,78643,0 +(105,147:17159711,35520049:501378,78643,0 +(105,147:17323565,35520049:173670,78643,0 ) ) -(109,147:17661089,35520049:501378,78643,0 -(109,147:17824943,35520049:173670,78643,0 +(105,147:17661089,35520049:501378,78643,0 +(105,147:17824943,35520049:173670,78643,0 ) ) -(109,147:18162467,35520049:501378,78643,0 -(109,147:18326321,35520049:173670,78643,0 +(105,147:18162467,35520049:501378,78643,0 +(105,147:18326321,35520049:173670,78643,0 ) ) -(109,147:18663845,35520049:501378,78643,0 -(109,147:18827699,35520049:173670,78643,0 +(105,147:18663845,35520049:501378,78643,0 +(105,147:18827699,35520049:173670,78643,0 ) ) -(109,147:19165223,35520049:501378,78643,0 -(109,147:19329077,35520049:173670,78643,0 +(105,147:19165223,35520049:501378,78643,0 +(105,147:19329077,35520049:173670,78643,0 ) ) -(109,147:19666601,35520049:501378,78643,0 -(109,147:19830455,35520049:173670,78643,0 +(105,147:19666601,35520049:501378,78643,0 +(105,147:19830455,35520049:173670,78643,0 ) ) -(109,147:20167979,35520049:501378,78643,0 -(109,147:20331833,35520049:173670,78643,0 +(105,147:20167979,35520049:501378,78643,0 +(105,147:20331833,35520049:173670,78643,0 ) ) -(109,147:20669357,35520049:501378,78643,0 -(109,147:20833211,35520049:173670,78643,0 +(105,147:20669357,35520049:501378,78643,0 +(105,147:20833211,35520049:173670,78643,0 ) ) -(109,147:21170735,35520049:501378,78643,0 -(109,147:21334589,35520049:173670,78643,0 +(105,147:21170735,35520049:501378,78643,0 +(105,147:21334589,35520049:173670,78643,0 ) ) -(109,147:21672113,35520049:501378,78643,0 -(109,147:21835967,35520049:173670,78643,0 +(105,147:21672113,35520049:501378,78643,0 +(105,147:21835967,35520049:173670,78643,0 ) ) -(109,147:22173491,35520049:501378,78643,0 -(109,147:22337345,35520049:173670,78643,0 +(105,147:22173491,35520049:501378,78643,0 +(105,147:22337345,35520049:173670,78643,0 ) ) -(109,147:22674869,35520049:501378,78643,0 -(109,147:22838723,35520049:173670,78643,0 +(105,147:22674869,35520049:501378,78643,0 +(105,147:22838723,35520049:173670,78643,0 ) ) -(109,147:23176247,35520049:501378,78643,0 -(109,147:23340101,35520049:173670,78643,0 +(105,147:23176247,35520049:501378,78643,0 +(105,147:23340101,35520049:173670,78643,0 ) ) -(109,147:23677625,35520049:501378,78643,0 -(109,147:23841479,35520049:173670,78643,0 +(105,147:23677625,35520049:501378,78643,0 +(105,147:23841479,35520049:173670,78643,0 ) ) -(109,147:24179003,35520049:501378,78643,0 -(109,147:24342857,35520049:173670,78643,0 +(105,147:24179003,35520049:501378,78643,0 +(105,147:24342857,35520049:173670,78643,0 ) ) -(109,147:24680381,35520049:501378,78643,0 -(109,147:24844235,35520049:173670,78643,0 +(105,147:24680381,35520049:501378,78643,0 +(105,147:24844235,35520049:173670,78643,0 ) ) -(109,147:25181759,35520049:501378,78643,0 -(109,147:25345613,35520049:173670,78643,0 +(105,147:25181759,35520049:501378,78643,0 +(105,147:25345613,35520049:173670,78643,0 ) ) -(109,147:25683137,35520049:501378,78643,0 -(109,147:25846991,35520049:173670,78643,0 +(105,147:25683137,35520049:501378,78643,0 +(105,147:25846991,35520049:173670,78643,0 ) ) -(109,147:26184515,35520049:501378,78643,0 -(109,147:26348369,35520049:173670,78643,0 +(105,147:26184515,35520049:501378,78643,0 +(105,147:26348369,35520049:173670,78643,0 ) ) -(109,147:26685893,35520049:501378,78643,0 -(109,147:26849747,35520049:173670,78643,0 +(105,147:26685893,35520049:501378,78643,0 +(105,147:26849747,35520049:173670,78643,0 ) ) -(109,147:27187271,35520049:501378,78643,0 -(109,147:27351125,35520049:173670,78643,0 +(105,147:27187271,35520049:501378,78643,0 +(105,147:27351125,35520049:173670,78643,0 ) ) -(109,147:27688649,35520049:501378,78643,0 -(109,147:27852503,35520049:173670,78643,0 +(105,147:27688649,35520049:501378,78643,0 +(105,147:27852503,35520049:173670,78643,0 ) ) -(109,147:28190027,35520049:501378,78643,0 -(109,147:28353881,35520049:173670,78643,0 +(105,147:28190027,35520049:501378,78643,0 +(105,147:28353881,35520049:173670,78643,0 ) ) -(109,147:28691405,35520049:501378,78643,0 -(109,147:28855259,35520049:173670,78643,0 +(105,147:28691405,35520049:501378,78643,0 +(105,147:28855259,35520049:173670,78643,0 ) ) -(109,147:29192783,35520049:501378,78643,0 -(109,147:29356637,35520049:173670,78643,0 +(105,147:29192783,35520049:501378,78643,0 +(105,147:29356637,35520049:173670,78643,0 ) ) -(109,147:29694161,35520049:501378,78643,0 -(109,147:29858015,35520049:173670,78643,0 +(105,147:29694161,35520049:501378,78643,0 +(105,147:29858015,35520049:173670,78643,0 ) ) -(109,147:30195539,35520049:501378,78643,0 -(109,147:30359393,35520049:173670,78643,0 +(105,147:30195539,35520049:501378,78643,0 +(105,147:30359393,35520049:173670,78643,0 ) ) -(109,147:30696917,35520049:501378,78643,0 -(109,147:30860771,35520049:173670,78643,0 +(105,147:30696917,35520049:501378,78643,0 +(105,147:30860771,35520049:173670,78643,0 ) ) -(109,147:31403379,35520049:1179650,485622,11795 -k109,147:31403379,35520049:0 -k109,147:31536199,35520049:132820 +(105,147:31239539,35520049:1343490,485622,11795 +k105,147:31239539,35520049:0 +k105,147:31387652,35520049:148113 ) -g109,147:30911859,35520049 -g109,147:32583029,35520049 +g105,147:30911859,35520049 +g105,147:32583029,35520049 ) -(109,149:6630773,37016897:25952256,505283,134348 -g109,149:7613813,37016897 -h109,149:7613813,37016897:0,0,0 -g109,149:6630773,37016897 -(109,149:6630773,37016897:983040,479724,0 -k109,149:7613813,37016897:574751 +(105,149:6630773,37016897:25952256,505283,134348 +g105,149:7613813,37016897 +h105,149:7613813,37016897:0,0,0 +g105,149:6630773,37016897 +(105,149:6630773,37016897:983040,479724,0 +k105,149:7613813,37016897:574751 ) -g109,149:9083130,37016897 -g109,149:9759461,37016897 -g109,149:13090000,37016897 -k109,149:23716662,37016897:7686717 -k109,149:31403379,37016897:7686717 -(109,149:31403379,37016897:1179650,477757,0 -k109,149:31358161,37016897:-45218 +g105,149:9083130,37016897 +g105,149:9759461,37016897 +g105,149:13090000,37016897 +k105,149:23645228,37016897:7594311 +k105,149:31239539,37016897:7594311 +(105,149:31239539,37016897:1343490,477757,0 +k105,149:31358161,37016897:118622 ) -g109,149:31403379,37016897 -g109,149:32583029,37016897 +g105,149:31239539,37016897 +g105,149:32583029,37016897 ) -(109,151:6630773,37858385:25952256,513147,126483 -g109,151:9121143,37858385 -h109,151:9121143,37858385:983040,0,0 -h109,151:10104183,37858385:0,0,0 -g109,151:7613813,37858385 -(109,151:7613813,37858385:1507330,481690,0 -k109,151:9121143,37858385:536742 +(105,151:6630773,37858385:25952256,513147,126483 +g105,151:9121143,37858385 +h105,151:9121143,37858385:983040,0,0 +h105,151:10104183,37858385:0,0,0 +g105,151:7613813,37858385 +(105,151:7613813,37858385:1507330,481690,0 +k105,151:9121143,37858385:536742 ) -g109,151:10959427,37858385 -g109,151:11817948,37858385 -g109,151:13220418,37858385 -g109,151:15837270,37858385 -g109,151:15837270,37858385 -(109,151:16156955,37858385:501378,78643,0 -$109,151:16156955,37858385 -(109,151:16320809,37858385:173670,78643,0 +g105,151:10959427,37858385 +g105,151:11817948,37858385 +g105,151:13220418,37858385 +g105,151:15837270,37858385 +g105,151:15837270,37858385 +(105,151:16156955,37858385:501378,78643,0 +$105,151:16156955,37858385 +(105,151:16320809,37858385:173670,78643,0 ) -$109,151:16658333,37858385 +$105,151:16658333,37858385 ) -(109,151:16658333,37858385:501378,78643,0 -(109,151:16822187,37858385:173670,78643,0 +(105,151:16658333,37858385:501378,78643,0 +(105,151:16822187,37858385:173670,78643,0 ) ) -(109,151:17159711,37858385:501378,78643,0 -(109,151:17323565,37858385:173670,78643,0 +(105,151:17159711,37858385:501378,78643,0 +(105,151:17323565,37858385:173670,78643,0 ) ) -(109,151:17661089,37858385:501378,78643,0 -(109,151:17824943,37858385:173670,78643,0 +(105,151:17661089,37858385:501378,78643,0 +(105,151:17824943,37858385:173670,78643,0 ) ) -(109,151:18162467,37858385:501378,78643,0 -(109,151:18326321,37858385:173670,78643,0 +(105,151:18162467,37858385:501378,78643,0 +(105,151:18326321,37858385:173670,78643,0 ) ) -(109,151:18663845,37858385:501378,78643,0 -(109,151:18827699,37858385:173670,78643,0 +(105,151:18663845,37858385:501378,78643,0 +(105,151:18827699,37858385:173670,78643,0 ) ) -(109,151:19165223,37858385:501378,78643,0 -(109,151:19329077,37858385:173670,78643,0 +(105,151:19165223,37858385:501378,78643,0 +(105,151:19329077,37858385:173670,78643,0 ) ) -(109,151:19666601,37858385:501378,78643,0 -(109,151:19830455,37858385:173670,78643,0 +(105,151:19666601,37858385:501378,78643,0 +(105,151:19830455,37858385:173670,78643,0 ) ) -(109,151:20167979,37858385:501378,78643,0 -(109,151:20331833,37858385:173670,78643,0 +(105,151:20167979,37858385:501378,78643,0 +(105,151:20331833,37858385:173670,78643,0 ) ) -(109,151:20669357,37858385:501378,78643,0 -(109,151:20833211,37858385:173670,78643,0 +(105,151:20669357,37858385:501378,78643,0 +(105,151:20833211,37858385:173670,78643,0 ) ) -(109,151:21170735,37858385:501378,78643,0 -(109,151:21334589,37858385:173670,78643,0 +(105,151:21170735,37858385:501378,78643,0 +(105,151:21334589,37858385:173670,78643,0 ) ) -(109,151:21672113,37858385:501378,78643,0 -(109,151:21835967,37858385:173670,78643,0 +(105,151:21672113,37858385:501378,78643,0 +(105,151:21835967,37858385:173670,78643,0 ) ) -(109,151:22173491,37858385:501378,78643,0 -(109,151:22337345,37858385:173670,78643,0 +(105,151:22173491,37858385:501378,78643,0 +(105,151:22337345,37858385:173670,78643,0 ) ) -(109,151:22674869,37858385:501378,78643,0 -(109,151:22838723,37858385:173670,78643,0 +(105,151:22674869,37858385:501378,78643,0 +(105,151:22838723,37858385:173670,78643,0 ) ) -(109,151:23176247,37858385:501378,78643,0 -(109,151:23340101,37858385:173670,78643,0 +(105,151:23176247,37858385:501378,78643,0 +(105,151:23340101,37858385:173670,78643,0 ) ) -(109,151:23677625,37858385:501378,78643,0 -(109,151:23841479,37858385:173670,78643,0 +(105,151:23677625,37858385:501378,78643,0 +(105,151:23841479,37858385:173670,78643,0 ) ) -(109,151:24179003,37858385:501378,78643,0 -(109,151:24342857,37858385:173670,78643,0 +(105,151:24179003,37858385:501378,78643,0 +(105,151:24342857,37858385:173670,78643,0 ) ) -(109,151:24680381,37858385:501378,78643,0 -(109,151:24844235,37858385:173670,78643,0 +(105,151:24680381,37858385:501378,78643,0 +(105,151:24844235,37858385:173670,78643,0 ) ) -(109,151:25181759,37858385:501378,78643,0 -(109,151:25345613,37858385:173670,78643,0 +(105,151:25181759,37858385:501378,78643,0 +(105,151:25345613,37858385:173670,78643,0 ) ) -(109,151:25683137,37858385:501378,78643,0 -(109,151:25846991,37858385:173670,78643,0 +(105,151:25683137,37858385:501378,78643,0 +(105,151:25846991,37858385:173670,78643,0 ) ) -(109,151:26184515,37858385:501378,78643,0 -(109,151:26348369,37858385:173670,78643,0 +(105,151:26184515,37858385:501378,78643,0 +(105,151:26348369,37858385:173670,78643,0 ) ) -(109,151:26685893,37858385:501378,78643,0 -(109,151:26849747,37858385:173670,78643,0 +(105,151:26685893,37858385:501378,78643,0 +(105,151:26849747,37858385:173670,78643,0 ) ) -(109,151:27187271,37858385:501378,78643,0 -(109,151:27351125,37858385:173670,78643,0 +(105,151:27187271,37858385:501378,78643,0 +(105,151:27351125,37858385:173670,78643,0 ) ) -(109,151:27688649,37858385:501378,78643,0 -(109,151:27852503,37858385:173670,78643,0 +(105,151:27688649,37858385:501378,78643,0 +(105,151:27852503,37858385:173670,78643,0 ) ) -(109,151:28190027,37858385:501378,78643,0 -(109,151:28353881,37858385:173670,78643,0 +(105,151:28190027,37858385:501378,78643,0 +(105,151:28353881,37858385:173670,78643,0 ) ) -(109,151:28691405,37858385:501378,78643,0 -(109,151:28855259,37858385:173670,78643,0 +(105,151:28691405,37858385:501378,78643,0 +(105,151:28855259,37858385:173670,78643,0 ) ) -(109,151:29192783,37858385:501378,78643,0 -(109,151:29356637,37858385:173670,78643,0 +(105,151:29192783,37858385:501378,78643,0 +(105,151:29356637,37858385:173670,78643,0 ) ) -(109,151:29694161,37858385:501378,78643,0 -(109,151:29858015,37858385:173670,78643,0 +(105,151:29694161,37858385:501378,78643,0 +(105,151:29858015,37858385:173670,78643,0 ) ) -(109,151:30195539,37858385:501378,78643,0 -(109,151:30359393,37858385:173670,78643,0 +(105,151:30195539,37858385:501378,78643,0 +(105,151:30359393,37858385:173670,78643,0 ) ) -(109,151:30696917,37858385:501378,78643,0 -(109,151:30860771,37858385:173670,78643,0 +(105,151:30696917,37858385:501378,78643,0 +(105,151:30860771,37858385:173670,78643,0 ) ) -(109,151:31403379,37858385:1179650,477757,0 -k109,151:31403379,37858385:0 -k109,151:31536199,37858385:132820 +(105,151:31239539,37858385:1343490,477757,0 +k105,151:31239539,37858385:0 +k105,151:31387652,37858385:148113 ) -g109,151:30911859,37858385 -g109,151:32583029,37858385 +g105,151:30911859,37858385 +g105,151:32583029,37858385 ) -(109,153:6630773,38699873:25952256,505283,11795 -g109,153:9121143,38699873 -h109,153:9121143,38699873:983040,0,0 -h109,153:10104183,38699873:0,0,0 -g109,153:7613813,38699873 -(109,153:7613813,38699873:1507330,485622,0 -k109,153:9121143,38699873:536742 +(105,153:6630773,38699873:25952256,505283,11795 +g105,153:9121143,38699873 +h105,153:9121143,38699873:983040,0,0 +h105,153:10104183,38699873:0,0,0 +g105,153:7613813,38699873 +(105,153:7613813,38699873:1507330,485622,0 +k105,153:9121143,38699873:536742 ) -g109,153:12429400,38699873 -g109,153:16136771,38699873 -g109,153:16136771,38699873 -(109,153:16156955,38699873:501378,78643,0 -$109,153:16156955,38699873 -(109,153:16320809,38699873:173670,78643,0 +g105,153:12429400,38699873 +g105,153:16136771,38699873 +g105,153:16136771,38699873 +(105,153:16156955,38699873:501378,78643,0 +$105,153:16156955,38699873 +(105,153:16320809,38699873:173670,78643,0 ) -$109,153:16658333,38699873 +$105,153:16658333,38699873 ) -(109,153:16658333,38699873:501378,78643,0 -(109,153:16822187,38699873:173670,78643,0 +(105,153:16658333,38699873:501378,78643,0 +(105,153:16822187,38699873:173670,78643,0 ) ) -(109,153:17159711,38699873:501378,78643,0 -(109,153:17323565,38699873:173670,78643,0 +(105,153:17159711,38699873:501378,78643,0 +(105,153:17323565,38699873:173670,78643,0 ) ) -(109,153:17661089,38699873:501378,78643,0 -(109,153:17824943,38699873:173670,78643,0 +(105,153:17661089,38699873:501378,78643,0 +(105,153:17824943,38699873:173670,78643,0 ) ) -(109,153:18162467,38699873:501378,78643,0 -(109,153:18326321,38699873:173670,78643,0 +(105,153:18162467,38699873:501378,78643,0 +(105,153:18326321,38699873:173670,78643,0 ) ) -(109,153:18663845,38699873:501378,78643,0 -(109,153:18827699,38699873:173670,78643,0 +(105,153:18663845,38699873:501378,78643,0 +(105,153:18827699,38699873:173670,78643,0 ) ) -(109,153:19165223,38699873:501378,78643,0 -(109,153:19329077,38699873:173670,78643,0 +(105,153:19165223,38699873:501378,78643,0 +(105,153:19329077,38699873:173670,78643,0 ) ) -(109,153:19666601,38699873:501378,78643,0 -(109,153:19830455,38699873:173670,78643,0 +(105,153:19666601,38699873:501378,78643,0 +(105,153:19830455,38699873:173670,78643,0 ) ) -(109,153:20167979,38699873:501378,78643,0 -(109,153:20331833,38699873:173670,78643,0 +(105,153:20167979,38699873:501378,78643,0 +(105,153:20331833,38699873:173670,78643,0 ) ) -(109,153:20669357,38699873:501378,78643,0 -(109,153:20833211,38699873:173670,78643,0 +(105,153:20669357,38699873:501378,78643,0 +(105,153:20833211,38699873:173670,78643,0 ) ) -(109,153:21170735,38699873:501378,78643,0 -(109,153:21334589,38699873:173670,78643,0 +(105,153:21170735,38699873:501378,78643,0 +(105,153:21334589,38699873:173670,78643,0 ) ) -(109,153:21672113,38699873:501378,78643,0 -(109,153:21835967,38699873:173670,78643,0 +(105,153:21672113,38699873:501378,78643,0 +(105,153:21835967,38699873:173670,78643,0 ) ) -(109,153:22173491,38699873:501378,78643,0 -(109,153:22337345,38699873:173670,78643,0 +(105,153:22173491,38699873:501378,78643,0 +(105,153:22337345,38699873:173670,78643,0 ) ) -(109,153:22674869,38699873:501378,78643,0 -(109,153:22838723,38699873:173670,78643,0 +(105,153:22674869,38699873:501378,78643,0 +(105,153:22838723,38699873:173670,78643,0 ) ) -(109,153:23176247,38699873:501378,78643,0 -(109,153:23340101,38699873:173670,78643,0 +(105,153:23176247,38699873:501378,78643,0 +(105,153:23340101,38699873:173670,78643,0 ) ) -(109,153:23677625,38699873:501378,78643,0 -(109,153:23841479,38699873:173670,78643,0 +(105,153:23677625,38699873:501378,78643,0 +(105,153:23841479,38699873:173670,78643,0 ) ) -(109,153:24179003,38699873:501378,78643,0 -(109,153:24342857,38699873:173670,78643,0 +(105,153:24179003,38699873:501378,78643,0 +(105,153:24342857,38699873:173670,78643,0 ) ) -(109,153:24680381,38699873:501378,78643,0 -(109,153:24844235,38699873:173670,78643,0 +(105,153:24680381,38699873:501378,78643,0 +(105,153:24844235,38699873:173670,78643,0 ) ) -(109,153:25181759,38699873:501378,78643,0 -(109,153:25345613,38699873:173670,78643,0 +(105,153:25181759,38699873:501378,78643,0 +(105,153:25345613,38699873:173670,78643,0 ) ) -(109,153:25683137,38699873:501378,78643,0 -(109,153:25846991,38699873:173670,78643,0 +(105,153:25683137,38699873:501378,78643,0 +(105,153:25846991,38699873:173670,78643,0 ) ) -(109,153:26184515,38699873:501378,78643,0 -(109,153:26348369,38699873:173670,78643,0 +(105,153:26184515,38699873:501378,78643,0 +(105,153:26348369,38699873:173670,78643,0 ) ) -(109,153:26685893,38699873:501378,78643,0 -(109,153:26849747,38699873:173670,78643,0 +(105,153:26685893,38699873:501378,78643,0 +(105,153:26849747,38699873:173670,78643,0 ) ) -(109,153:27187271,38699873:501378,78643,0 -(109,153:27351125,38699873:173670,78643,0 +(105,153:27187271,38699873:501378,78643,0 +(105,153:27351125,38699873:173670,78643,0 ) ) -(109,153:27688649,38699873:501378,78643,0 -(109,153:27852503,38699873:173670,78643,0 +(105,153:27688649,38699873:501378,78643,0 +(105,153:27852503,38699873:173670,78643,0 ) ) -(109,153:28190027,38699873:501378,78643,0 -(109,153:28353881,38699873:173670,78643,0 +(105,153:28190027,38699873:501378,78643,0 +(105,153:28353881,38699873:173670,78643,0 ) ) -(109,153:28691405,38699873:501378,78643,0 -(109,153:28855259,38699873:173670,78643,0 +(105,153:28691405,38699873:501378,78643,0 +(105,153:28855259,38699873:173670,78643,0 ) ) -(109,153:29192783,38699873:501378,78643,0 -(109,153:29356637,38699873:173670,78643,0 +(105,153:29192783,38699873:501378,78643,0 +(105,153:29356637,38699873:173670,78643,0 ) ) -(109,153:29694161,38699873:501378,78643,0 -(109,153:29858015,38699873:173670,78643,0 +(105,153:29694161,38699873:501378,78643,0 +(105,153:29858015,38699873:173670,78643,0 ) ) -(109,153:30195539,38699873:501378,78643,0 -(109,153:30359393,38699873:173670,78643,0 +(105,153:30195539,38699873:501378,78643,0 +(105,153:30359393,38699873:173670,78643,0 ) ) -(109,153:30696917,38699873:501378,78643,0 -(109,153:30860771,38699873:173670,78643,0 +(105,153:30696917,38699873:501378,78643,0 +(105,153:30860771,38699873:173670,78643,0 ) ) -(109,153:31403379,38699873:1179650,477757,0 -k109,153:31403379,38699873:0 -k109,153:31536199,38699873:132820 +(105,153:31239539,38699873:1343490,477757,0 +k105,153:31239539,38699873:0 +k105,153:31387652,38699873:148113 ) -g109,153:30911859,38699873 -g109,153:32583029,38699873 +g105,153:30911859,38699873 +g105,153:32583029,38699873 ) -(109,155:6630773,39541361:25952256,505283,11795 -g109,155:9121143,39541361 -h109,155:9121143,39541361:983040,0,0 -h109,155:10104183,39541361:0,0,0 -g109,155:7613813,39541361 -(109,155:7613813,39541361:1507330,485622,11795 -k109,155:9121143,39541361:536742 +(105,155:6630773,39541361:25952256,505283,11795 +g105,155:9121143,39541361 +h105,155:9121143,39541361:983040,0,0 +h105,155:10104183,39541361:0,0,0 +g105,155:7613813,39541361 +(105,155:7613813,39541361:1507330,485622,11795 +k105,155:9121143,39541361:536742 ) -g109,155:13514676,39541361 -g109,155:13514676,39541361 -(109,155:13650065,39541361:501378,78643,0 -$109,155:13650065,39541361 -(109,155:13813919,39541361:173670,78643,0 +g105,155:13514676,39541361 +g105,155:13514676,39541361 +(105,155:13650065,39541361:501378,78643,0 +$105,155:13650065,39541361 +(105,155:13813919,39541361:173670,78643,0 ) -$109,155:14151443,39541361 +$105,155:14151443,39541361 ) -(109,155:14151443,39541361:501378,78643,0 -(109,155:14315297,39541361:173670,78643,0 +(105,155:14151443,39541361:501378,78643,0 +(105,155:14315297,39541361:173670,78643,0 ) ) -(109,155:14652821,39541361:501378,78643,0 -(109,155:14816675,39541361:173670,78643,0 +(105,155:14652821,39541361:501378,78643,0 +(105,155:14816675,39541361:173670,78643,0 ) ) -(109,155:15154199,39541361:501378,78643,0 -(109,155:15318053,39541361:173670,78643,0 +(105,155:15154199,39541361:501378,78643,0 +(105,155:15318053,39541361:173670,78643,0 ) ) -(109,155:15655577,39541361:501378,78643,0 -(109,155:15819431,39541361:173670,78643,0 +(105,155:15655577,39541361:501378,78643,0 +(105,155:15819431,39541361:173670,78643,0 ) ) -(109,155:16156955,39541361:501378,78643,0 -(109,155:16320809,39541361:173670,78643,0 +(105,155:16156955,39541361:501378,78643,0 +(105,155:16320809,39541361:173670,78643,0 ) ) -(109,155:16658333,39541361:501378,78643,0 -(109,155:16822187,39541361:173670,78643,0 +(105,155:16658333,39541361:501378,78643,0 +(105,155:16822187,39541361:173670,78643,0 ) ) -(109,155:17159711,39541361:501378,78643,0 -(109,155:17323565,39541361:173670,78643,0 +(105,155:17159711,39541361:501378,78643,0 +(105,155:17323565,39541361:173670,78643,0 ) ) -(109,155:17661089,39541361:501378,78643,0 -(109,155:17824943,39541361:173670,78643,0 +(105,155:17661089,39541361:501378,78643,0 +(105,155:17824943,39541361:173670,78643,0 ) ) -(109,155:18162467,39541361:501378,78643,0 -(109,155:18326321,39541361:173670,78643,0 +(105,155:18162467,39541361:501378,78643,0 +(105,155:18326321,39541361:173670,78643,0 ) ) -(109,155:18663845,39541361:501378,78643,0 -(109,155:18827699,39541361:173670,78643,0 +(105,155:18663845,39541361:501378,78643,0 +(105,155:18827699,39541361:173670,78643,0 ) ) -(109,155:19165223,39541361:501378,78643,0 -(109,155:19329077,39541361:173670,78643,0 +(105,155:19165223,39541361:501378,78643,0 +(105,155:19329077,39541361:173670,78643,0 ) ) -(109,155:19666601,39541361:501378,78643,0 -(109,155:19830455,39541361:173670,78643,0 +(105,155:19666601,39541361:501378,78643,0 +(105,155:19830455,39541361:173670,78643,0 ) ) -(109,155:20167979,39541361:501378,78643,0 -(109,155:20331833,39541361:173670,78643,0 +(105,155:20167979,39541361:501378,78643,0 +(105,155:20331833,39541361:173670,78643,0 ) ) -(109,155:20669357,39541361:501378,78643,0 -(109,155:20833211,39541361:173670,78643,0 +(105,155:20669357,39541361:501378,78643,0 +(105,155:20833211,39541361:173670,78643,0 ) ) -(109,155:21170735,39541361:501378,78643,0 -(109,155:21334589,39541361:173670,78643,0 +(105,155:21170735,39541361:501378,78643,0 +(105,155:21334589,39541361:173670,78643,0 ) ) -(109,155:21672113,39541361:501378,78643,0 -(109,155:21835967,39541361:173670,78643,0 +(105,155:21672113,39541361:501378,78643,0 +(105,155:21835967,39541361:173670,78643,0 ) ) -(109,155:22173491,39541361:501378,78643,0 -(109,155:22337345,39541361:173670,78643,0 +(105,155:22173491,39541361:501378,78643,0 +(105,155:22337345,39541361:173670,78643,0 ) ) -(109,155:22674869,39541361:501378,78643,0 -(109,155:22838723,39541361:173670,78643,0 +(105,155:22674869,39541361:501378,78643,0 +(105,155:22838723,39541361:173670,78643,0 ) ) -(109,155:23176247,39541361:501378,78643,0 -(109,155:23340101,39541361:173670,78643,0 +(105,155:23176247,39541361:501378,78643,0 +(105,155:23340101,39541361:173670,78643,0 ) ) -(109,155:23677625,39541361:501378,78643,0 -(109,155:23841479,39541361:173670,78643,0 +(105,155:23677625,39541361:501378,78643,0 +(105,155:23841479,39541361:173670,78643,0 ) ) -(109,155:24179003,39541361:501378,78643,0 -(109,155:24342857,39541361:173670,78643,0 +(105,155:24179003,39541361:501378,78643,0 +(105,155:24342857,39541361:173670,78643,0 ) ) -(109,155:24680381,39541361:501378,78643,0 -(109,155:24844235,39541361:173670,78643,0 +(105,155:24680381,39541361:501378,78643,0 +(105,155:24844235,39541361:173670,78643,0 ) ) -(109,155:25181759,39541361:501378,78643,0 -(109,155:25345613,39541361:173670,78643,0 +(105,155:25181759,39541361:501378,78643,0 +(105,155:25345613,39541361:173670,78643,0 ) ) -(109,155:25683137,39541361:501378,78643,0 -(109,155:25846991,39541361:173670,78643,0 +(105,155:25683137,39541361:501378,78643,0 +(105,155:25846991,39541361:173670,78643,0 ) ) -(109,155:26184515,39541361:501378,78643,0 -(109,155:26348369,39541361:173670,78643,0 +(105,155:26184515,39541361:501378,78643,0 +(105,155:26348369,39541361:173670,78643,0 ) ) -(109,155:26685893,39541361:501378,78643,0 -(109,155:26849747,39541361:173670,78643,0 +(105,155:26685893,39541361:501378,78643,0 +(105,155:26849747,39541361:173670,78643,0 ) ) -(109,155:27187271,39541361:501378,78643,0 -(109,155:27351125,39541361:173670,78643,0 +(105,155:27187271,39541361:501378,78643,0 +(105,155:27351125,39541361:173670,78643,0 ) ) -(109,155:27688649,39541361:501378,78643,0 -(109,155:27852503,39541361:173670,78643,0 +(105,155:27688649,39541361:501378,78643,0 +(105,155:27852503,39541361:173670,78643,0 ) ) -(109,155:28190027,39541361:501378,78643,0 -(109,155:28353881,39541361:173670,78643,0 +(105,155:28190027,39541361:501378,78643,0 +(105,155:28353881,39541361:173670,78643,0 ) ) -(109,155:28691405,39541361:501378,78643,0 -(109,155:28855259,39541361:173670,78643,0 +(105,155:28691405,39541361:501378,78643,0 +(105,155:28855259,39541361:173670,78643,0 ) ) -(109,155:29192783,39541361:501378,78643,0 -(109,155:29356637,39541361:173670,78643,0 +(105,155:29192783,39541361:501378,78643,0 +(105,155:29356637,39541361:173670,78643,0 ) ) -(109,155:29694161,39541361:501378,78643,0 -(109,155:29858015,39541361:173670,78643,0 +(105,155:29694161,39541361:501378,78643,0 +(105,155:29858015,39541361:173670,78643,0 ) ) -(109,155:30195539,39541361:501378,78643,0 -(109,155:30359393,39541361:173670,78643,0 +(105,155:30195539,39541361:501378,78643,0 +(105,155:30359393,39541361:173670,78643,0 ) ) -(109,155:30696917,39541361:501378,78643,0 -(109,155:30860771,39541361:173670,78643,0 +(105,155:30696917,39541361:501378,78643,0 +(105,155:30860771,39541361:173670,78643,0 ) ) -(109,155:31403380,39541361:1179650,485622,11795 -k109,155:31403380,39541361:0 -k109,155:31536200,39541361:132820 +(105,155:31239540,39541361:1343490,485622,11795 +k105,155:31239540,39541361:0 +k105,155:31387653,39541361:148113 ) -g109,155:30911860,39541361 -g109,155:32583030,39541361 +g105,155:30911860,39541361 +g105,155:32583030,39541361 ) -(109,157:6630773,40382849:25952256,513147,126483 -g109,157:11218293,40382849 -h109,157:11218293,40382849:2490370,0,0 -h109,157:13708663,40382849:0,0,0 -g109,157:9121143,40382849 -(109,157:9121143,40382849:2097150,485622,11795 -k109,157:11218293,40382849:554432 +(105,157:6630773,40382849:25952256,513147,126483 +g105,157:11218293,40382849 +h105,157:11218293,40382849:2490370,0,0 +h105,157:13708663,40382849:0,0,0 +g105,157:9121143,40382849 +(105,157:9121143,40382849:2097150,485622,11795 +k105,157:11218293,40382849:554432 ) -g109,157:13832524,40382849 -g109,157:15599374,40382849 -g109,157:19210408,40382849 -(109,157:19666601,40382849:501378,78643,0 -$109,157:19666601,40382849 -(109,157:19830455,40382849:173670,78643,0 +g105,157:13832524,40382849 +g105,157:15599374,40382849 +g105,157:19210408,40382849 +(105,157:19666601,40382849:501378,78643,0 +$105,157:19666601,40382849 +(105,157:19830455,40382849:173670,78643,0 ) -$109,157:20167979,40382849 +$105,157:20167979,40382849 ) -(109,157:20167979,40382849:501378,78643,0 -(109,157:20331833,40382849:173670,78643,0 +(105,157:20167979,40382849:501378,78643,0 +(105,157:20331833,40382849:173670,78643,0 ) ) -(109,157:20669357,40382849:501378,78643,0 -(109,157:20833211,40382849:173670,78643,0 +(105,157:20669357,40382849:501378,78643,0 +(105,157:20833211,40382849:173670,78643,0 ) ) -(109,157:21170735,40382849:501378,78643,0 -(109,157:21334589,40382849:173670,78643,0 +(105,157:21170735,40382849:501378,78643,0 +(105,157:21334589,40382849:173670,78643,0 ) ) -(109,157:21672113,40382849:501378,78643,0 -(109,157:21835967,40382849:173670,78643,0 +(105,157:21672113,40382849:501378,78643,0 +(105,157:21835967,40382849:173670,78643,0 ) ) -(109,157:22173491,40382849:501378,78643,0 -(109,157:22337345,40382849:173670,78643,0 +(105,157:22173491,40382849:501378,78643,0 +(105,157:22337345,40382849:173670,78643,0 ) ) -(109,157:22674869,40382849:501378,78643,0 -(109,157:22838723,40382849:173670,78643,0 +(105,157:22674869,40382849:501378,78643,0 +(105,157:22838723,40382849:173670,78643,0 ) ) -(109,157:23176247,40382849:501378,78643,0 -(109,157:23340101,40382849:173670,78643,0 +(105,157:23176247,40382849:501378,78643,0 +(105,157:23340101,40382849:173670,78643,0 ) ) -(109,157:23677625,40382849:501378,78643,0 -(109,157:23841479,40382849:173670,78643,0 +(105,157:23677625,40382849:501378,78643,0 +(105,157:23841479,40382849:173670,78643,0 ) ) -(109,157:24179003,40382849:501378,78643,0 -(109,157:24342857,40382849:173670,78643,0 +(105,157:24179003,40382849:501378,78643,0 +(105,157:24342857,40382849:173670,78643,0 ) ) -(109,157:24680381,40382849:501378,78643,0 -(109,157:24844235,40382849:173670,78643,0 +(105,157:24680381,40382849:501378,78643,0 +(105,157:24844235,40382849:173670,78643,0 ) ) -(109,157:25181759,40382849:501378,78643,0 -(109,157:25345613,40382849:173670,78643,0 +(105,157:25181759,40382849:501378,78643,0 +(105,157:25345613,40382849:173670,78643,0 ) ) -(109,157:25683137,40382849:501378,78643,0 -(109,157:25846991,40382849:173670,78643,0 +(105,157:25683137,40382849:501378,78643,0 +(105,157:25846991,40382849:173670,78643,0 ) ) -(109,157:26184515,40382849:501378,78643,0 -(109,157:26348369,40382849:173670,78643,0 +(105,157:26184515,40382849:501378,78643,0 +(105,157:26348369,40382849:173670,78643,0 ) ) -(109,157:26685893,40382849:501378,78643,0 -(109,157:26849747,40382849:173670,78643,0 +(105,157:26685893,40382849:501378,78643,0 +(105,157:26849747,40382849:173670,78643,0 ) ) -(109,157:27187271,40382849:501378,78643,0 -(109,157:27351125,40382849:173670,78643,0 +(105,157:27187271,40382849:501378,78643,0 +(105,157:27351125,40382849:173670,78643,0 ) ) -(109,157:27688649,40382849:501378,78643,0 -(109,157:27852503,40382849:173670,78643,0 +(105,157:27688649,40382849:501378,78643,0 +(105,157:27852503,40382849:173670,78643,0 ) ) -(109,157:28190027,40382849:501378,78643,0 -(109,157:28353881,40382849:173670,78643,0 +(105,157:28190027,40382849:501378,78643,0 +(105,157:28353881,40382849:173670,78643,0 ) ) -(109,157:28691405,40382849:501378,78643,0 -(109,157:28855259,40382849:173670,78643,0 +(105,157:28691405,40382849:501378,78643,0 +(105,157:28855259,40382849:173670,78643,0 ) ) -(109,157:29192783,40382849:501378,78643,0 -(109,157:29356637,40382849:173670,78643,0 +(105,157:29192783,40382849:501378,78643,0 +(105,157:29356637,40382849:173670,78643,0 ) ) -(109,157:29694161,40382849:501378,78643,0 -(109,157:29858015,40382849:173670,78643,0 +(105,157:29694161,40382849:501378,78643,0 +(105,157:29858015,40382849:173670,78643,0 ) ) -(109,157:30195539,40382849:501378,78643,0 -(109,157:30359393,40382849:173670,78643,0 +(105,157:30195539,40382849:501378,78643,0 +(105,157:30359393,40382849:173670,78643,0 ) ) -(109,157:30696917,40382849:501378,78643,0 -(109,157:30860771,40382849:173670,78643,0 +(105,157:30696917,40382849:501378,78643,0 +(105,157:30860771,40382849:173670,78643,0 ) ) -(109,157:31403379,40382849:1179650,485622,11795 -k109,157:31403379,40382849:0 -k109,157:31536199,40382849:132820 +(105,157:31239539,40382849:1343490,485622,11795 +k105,157:31239539,40382849:0 +k105,157:31387652,40382849:148113 ) -g109,157:30911859,40382849 -g109,157:32583029,40382849 +g105,157:30911859,40382849 +g105,157:32583029,40382849 ) -(109,159:6630773,41224337:25952256,513147,126483 -g109,159:11218293,41224337 -h109,159:11218293,41224337:2490370,0,0 -h109,159:13708663,41224337:0,0,0 -g109,159:9121143,41224337 -(109,159:9121143,41224337:2097150,485622,11795 -k109,159:11218293,41224337:554432 +(105,159:6630773,41224337:25952256,513147,126483 +g105,159:11218293,41224337 +h105,159:11218293,41224337:2490370,0,0 +h105,159:13708663,41224337:0,0,0 +g105,159:9121143,41224337 +(105,159:9121143,41224337:2097150,485622,11795 +k105,159:11218293,41224337:554432 ) -g109,159:15375897,41224337 -g109,159:17142747,41224337 -g109,159:20953010,41224337 -g109,159:22343684,41224337 -g109,159:25274454,41224337 -(109,159:25683137,41224337:501378,78643,0 -$109,159:25683137,41224337 -(109,159:25846991,41224337:173670,78643,0 +g105,159:15375897,41224337 +g105,159:17142747,41224337 +g105,159:20953010,41224337 +g105,159:22343684,41224337 +g105,159:25274454,41224337 +(105,159:25683137,41224337:501378,78643,0 +$105,159:25683137,41224337 +(105,159:25846991,41224337:173670,78643,0 ) -$109,159:26184515,41224337 +$105,159:26184515,41224337 ) -(109,159:26184515,41224337:501378,78643,0 -(109,159:26348369,41224337:173670,78643,0 +(105,159:26184515,41224337:501378,78643,0 +(105,159:26348369,41224337:173670,78643,0 ) ) -(109,159:26685893,41224337:501378,78643,0 -(109,159:26849747,41224337:173670,78643,0 +(105,159:26685893,41224337:501378,78643,0 +(105,159:26849747,41224337:173670,78643,0 ) ) -(109,159:27187271,41224337:501378,78643,0 -(109,159:27351125,41224337:173670,78643,0 +(105,159:27187271,41224337:501378,78643,0 +(105,159:27351125,41224337:173670,78643,0 ) ) -(109,159:27688649,41224337:501378,78643,0 -(109,159:27852503,41224337:173670,78643,0 +(105,159:27688649,41224337:501378,78643,0 +(105,159:27852503,41224337:173670,78643,0 ) ) -(109,159:28190027,41224337:501378,78643,0 -(109,159:28353881,41224337:173670,78643,0 +(105,159:28190027,41224337:501378,78643,0 +(105,159:28353881,41224337:173670,78643,0 ) ) -(109,159:28691405,41224337:501378,78643,0 -(109,159:28855259,41224337:173670,78643,0 +(105,159:28691405,41224337:501378,78643,0 +(105,159:28855259,41224337:173670,78643,0 ) ) -(109,159:29192783,41224337:501378,78643,0 -(109,159:29356637,41224337:173670,78643,0 +(105,159:29192783,41224337:501378,78643,0 +(105,159:29356637,41224337:173670,78643,0 ) ) -(109,159:29694161,41224337:501378,78643,0 -(109,159:29858015,41224337:173670,78643,0 +(105,159:29694161,41224337:501378,78643,0 +(105,159:29858015,41224337:173670,78643,0 ) ) -(109,159:30195539,41224337:501378,78643,0 -(109,159:30359393,41224337:173670,78643,0 +(105,159:30195539,41224337:501378,78643,0 +(105,159:30359393,41224337:173670,78643,0 ) ) -(109,159:30696917,41224337:501378,78643,0 -(109,159:30860771,41224337:173670,78643,0 +(105,159:30696917,41224337:501378,78643,0 +(105,159:30860771,41224337:173670,78643,0 ) ) -(109,159:31403379,41224337:1179650,485622,11795 -k109,159:31403379,41224337:0 -k109,159:31536199,41224337:132820 +(105,159:31239539,41224337:1343490,485622,11795 +k105,159:31239539,41224337:0 +k105,159:31387652,41224337:148113 ) -g109,159:30911859,41224337 -g109,159:32583029,41224337 +g105,159:30911859,41224337 +g105,159:32583029,41224337 ) -(109,161:6630773,42065825:25952256,513147,126483 -g109,161:11218293,42065825 -h109,161:11218293,42065825:2490370,0,0 -h109,161:13708663,42065825:0,0,0 -g109,161:9121143,42065825 -(109,161:9121143,42065825:2097150,485622,11795 -k109,161:11218293,42065825:554432 +(105,161:6630773,42065825:25952256,513147,126483 +g105,161:11218293,42065825 +h105,161:11218293,42065825:2490370,0,0 +h105,161:13708663,42065825:0,0,0 +g105,161:9121143,42065825 +(105,161:9121143,42065825:2097150,485622,11795 +k105,161:11218293,42065825:554432 ) -g109,161:14453805,42065825 -g109,161:16220655,42065825 -g109,161:20030918,42065825 -g109,161:21421592,42065825 -g109,161:25425186,42065825 -(109,161:25683137,42065825:501378,78643,0 -$109,161:25683137,42065825 -(109,161:25846991,42065825:173670,78643,0 +g105,161:14453805,42065825 +g105,161:16220655,42065825 +g105,161:20030918,42065825 +g105,161:21421592,42065825 +g105,161:25425186,42065825 +(105,161:25683137,42065825:501378,78643,0 +$105,161:25683137,42065825 +(105,161:25846991,42065825:173670,78643,0 ) -$109,161:26184515,42065825 +$105,161:26184515,42065825 ) -(109,161:26184515,42065825:501378,78643,0 -(109,161:26348369,42065825:173670,78643,0 +(105,161:26184515,42065825:501378,78643,0 +(105,161:26348369,42065825:173670,78643,0 ) ) -(109,161:26685893,42065825:501378,78643,0 -(109,161:26849747,42065825:173670,78643,0 +(105,161:26685893,42065825:501378,78643,0 +(105,161:26849747,42065825:173670,78643,0 ) ) -(109,161:27187271,42065825:501378,78643,0 -(109,161:27351125,42065825:173670,78643,0 +(105,161:27187271,42065825:501378,78643,0 +(105,161:27351125,42065825:173670,78643,0 ) ) -(109,161:27688649,42065825:501378,78643,0 -(109,161:27852503,42065825:173670,78643,0 +(105,161:27688649,42065825:501378,78643,0 +(105,161:27852503,42065825:173670,78643,0 ) ) -(109,161:28190027,42065825:501378,78643,0 -(109,161:28353881,42065825:173670,78643,0 +(105,161:28190027,42065825:501378,78643,0 +(105,161:28353881,42065825:173670,78643,0 ) ) -(109,161:28691405,42065825:501378,78643,0 -(109,161:28855259,42065825:173670,78643,0 +(105,161:28691405,42065825:501378,78643,0 +(105,161:28855259,42065825:173670,78643,0 ) ) -(109,161:29192783,42065825:501378,78643,0 -(109,161:29356637,42065825:173670,78643,0 +(105,161:29192783,42065825:501378,78643,0 +(105,161:29356637,42065825:173670,78643,0 ) ) -(109,161:29694161,42065825:501378,78643,0 -(109,161:29858015,42065825:173670,78643,0 +(105,161:29694161,42065825:501378,78643,0 +(105,161:29858015,42065825:173670,78643,0 ) ) -(109,161:30195539,42065825:501378,78643,0 -(109,161:30359393,42065825:173670,78643,0 +(105,161:30195539,42065825:501378,78643,0 +(105,161:30359393,42065825:173670,78643,0 ) ) -(109,161:30696917,42065825:501378,78643,0 -(109,161:30860771,42065825:173670,78643,0 +(105,161:30696917,42065825:501378,78643,0 +(105,161:30860771,42065825:173670,78643,0 ) ) -(109,161:31403379,42065825:1179650,485622,11795 -k109,161:31403379,42065825:0 -k109,161:31536199,42065825:132820 +(105,161:31239539,42065825:1343490,485622,11795 +k105,161:31239539,42065825:0 +k105,161:31387652,42065825:148113 ) -g109,161:30911859,42065825 -g109,161:32583029,42065825 +g105,161:30911859,42065825 +g105,161:32583029,42065825 ) -(109,163:6630773,42907313:25952256,513147,11795 -g109,163:11218293,42907313 -h109,163:11218293,42907313:2490370,0,0 -h109,163:13708663,42907313:0,0,0 -g109,163:9121143,42907313 -(109,163:9121143,42907313:2097150,485622,11795 -k109,163:11218293,42907313:554432 +(105,163:6630773,42907313:25952256,513147,11795 +g105,163:11218293,42907313 +h105,163:11218293,42907313:2490370,0,0 +h105,163:13708663,42907313:0,0,0 +g105,163:9121143,42907313 +(105,163:9121143,42907313:2097150,485622,11795 +k105,163:11218293,42907313:554432 ) -g109,163:14668763,42907313 -g109,163:16784265,42907313 -g109,163:18551115,42907313 -g109,163:19106204,42907313 -g109,163:22887631,42907313 -(109,163:23176247,42907313:501378,78643,0 -$109,163:23176247,42907313 -(109,163:23340101,42907313:173670,78643,0 +g105,163:14668763,42907313 +g105,163:16784265,42907313 +g105,163:18551115,42907313 +g105,163:19106204,42907313 +g105,163:22887631,42907313 +(105,163:23176247,42907313:501378,78643,0 +$105,163:23176247,42907313 +(105,163:23340101,42907313:173670,78643,0 ) -$109,163:23677625,42907313 +$105,163:23677625,42907313 ) -(109,163:23677625,42907313:501378,78643,0 -(109,163:23841479,42907313:173670,78643,0 +(105,163:23677625,42907313:501378,78643,0 +(105,163:23841479,42907313:173670,78643,0 ) ) -(109,163:24179003,42907313:501378,78643,0 -(109,163:24342857,42907313:173670,78643,0 +(105,163:24179003,42907313:501378,78643,0 +(105,163:24342857,42907313:173670,78643,0 ) ) -(109,163:24680381,42907313:501378,78643,0 -(109,163:24844235,42907313:173670,78643,0 +(105,163:24680381,42907313:501378,78643,0 +(105,163:24844235,42907313:173670,78643,0 ) ) -(109,163:25181759,42907313:501378,78643,0 -(109,163:25345613,42907313:173670,78643,0 +(105,163:25181759,42907313:501378,78643,0 +(105,163:25345613,42907313:173670,78643,0 ) ) -(109,163:25683137,42907313:501378,78643,0 -(109,163:25846991,42907313:173670,78643,0 +(105,163:25683137,42907313:501378,78643,0 +(105,163:25846991,42907313:173670,78643,0 ) ) -(109,163:26184515,42907313:501378,78643,0 -(109,163:26348369,42907313:173670,78643,0 +(105,163:26184515,42907313:501378,78643,0 +(105,163:26348369,42907313:173670,78643,0 ) ) -(109,163:26685893,42907313:501378,78643,0 -(109,163:26849747,42907313:173670,78643,0 +(105,163:26685893,42907313:501378,78643,0 +(105,163:26849747,42907313:173670,78643,0 ) ) -(109,163:27187271,42907313:501378,78643,0 -(109,163:27351125,42907313:173670,78643,0 +(105,163:27187271,42907313:501378,78643,0 +(105,163:27351125,42907313:173670,78643,0 ) ) -(109,163:27688649,42907313:501378,78643,0 -(109,163:27852503,42907313:173670,78643,0 +(105,163:27688649,42907313:501378,78643,0 +(105,163:27852503,42907313:173670,78643,0 ) ) -(109,163:28190027,42907313:501378,78643,0 -(109,163:28353881,42907313:173670,78643,0 +(105,163:28190027,42907313:501378,78643,0 +(105,163:28353881,42907313:173670,78643,0 ) ) -(109,163:28691405,42907313:501378,78643,0 -(109,163:28855259,42907313:173670,78643,0 +(105,163:28691405,42907313:501378,78643,0 +(105,163:28855259,42907313:173670,78643,0 ) ) -(109,163:29192783,42907313:501378,78643,0 -(109,163:29356637,42907313:173670,78643,0 +(105,163:29192783,42907313:501378,78643,0 +(105,163:29356637,42907313:173670,78643,0 ) ) -(109,163:29694161,42907313:501378,78643,0 -(109,163:29858015,42907313:173670,78643,0 +(105,163:29694161,42907313:501378,78643,0 +(105,163:29858015,42907313:173670,78643,0 ) ) -(109,163:30195539,42907313:501378,78643,0 -(109,163:30359393,42907313:173670,78643,0 +(105,163:30195539,42907313:501378,78643,0 +(105,163:30359393,42907313:173670,78643,0 ) ) -(109,163:30696917,42907313:501378,78643,0 -(109,163:30860771,42907313:173670,78643,0 +(105,163:30696917,42907313:501378,78643,0 +(105,163:30860771,42907313:173670,78643,0 ) ) -(109,163:31403379,42907313:1179650,485622,0 -k109,163:31403379,42907313:0 -k109,163:31536199,42907313:132820 +(105,163:31239539,42907313:1343490,485622,0 +k105,163:31239539,42907313:0 +k105,163:31387652,42907313:148113 ) -g109,163:30911859,42907313 -g109,163:32583029,42907313 +g105,163:30911859,42907313 +g105,163:32583029,42907313 ) -(109,165:6630773,43748801:25952256,505283,134348 -g109,165:9121143,43748801 -h109,165:9121143,43748801:983040,0,0 -h109,165:10104183,43748801:0,0,0 -g109,165:7613813,43748801 -(109,165:7613813,43748801:1507330,481690,0 -k109,165:9121143,43748801:536742 +(105,165:6630773,43748801:25952256,505283,134348 +g105,165:9121143,43748801 +h105,165:9121143,43748801:983040,0,0 +h105,165:10104183,43748801:0,0,0 +g105,165:7613813,43748801 +(105,165:7613813,43748801:1507330,481690,0 +k105,165:9121143,43748801:536742 ) -g109,165:12571613,43748801 -g109,165:15693092,43748801 -g109,165:15693092,43748801 -(109,165:16156955,43748801:501378,78643,0 -$109,165:16156955,43748801 -(109,165:16320809,43748801:173670,78643,0 +g105,165:12571613,43748801 +g105,165:15693092,43748801 +g105,165:15693092,43748801 +(105,165:16156955,43748801:501378,78643,0 +$105,165:16156955,43748801 +(105,165:16320809,43748801:173670,78643,0 ) -$109,165:16658333,43748801 +$105,165:16658333,43748801 ) -(109,165:16658333,43748801:501378,78643,0 -(109,165:16822187,43748801:173670,78643,0 +(105,165:16658333,43748801:501378,78643,0 +(105,165:16822187,43748801:173670,78643,0 ) ) -(109,165:17159711,43748801:501378,78643,0 -(109,165:17323565,43748801:173670,78643,0 +(105,165:17159711,43748801:501378,78643,0 +(105,165:17323565,43748801:173670,78643,0 ) ) -(109,165:17661089,43748801:501378,78643,0 -(109,165:17824943,43748801:173670,78643,0 +(105,165:17661089,43748801:501378,78643,0 +(105,165:17824943,43748801:173670,78643,0 ) ) -(109,165:18162467,43748801:501378,78643,0 -(109,165:18326321,43748801:173670,78643,0 +(105,165:18162467,43748801:501378,78643,0 +(105,165:18326321,43748801:173670,78643,0 ) ) -(109,165:18663845,43748801:501378,78643,0 -(109,165:18827699,43748801:173670,78643,0 +(105,165:18663845,43748801:501378,78643,0 +(105,165:18827699,43748801:173670,78643,0 ) ) -(109,165:19165223,43748801:501378,78643,0 -(109,165:19329077,43748801:173670,78643,0 +(105,165:19165223,43748801:501378,78643,0 +(105,165:19329077,43748801:173670,78643,0 ) ) -(109,165:19666601,43748801:501378,78643,0 -(109,165:19830455,43748801:173670,78643,0 +(105,165:19666601,43748801:501378,78643,0 +(105,165:19830455,43748801:173670,78643,0 ) ) -(109,165:20167979,43748801:501378,78643,0 -(109,165:20331833,43748801:173670,78643,0 +(105,165:20167979,43748801:501378,78643,0 +(105,165:20331833,43748801:173670,78643,0 ) ) -(109,165:20669357,43748801:501378,78643,0 -(109,165:20833211,43748801:173670,78643,0 +(105,165:20669357,43748801:501378,78643,0 +(105,165:20833211,43748801:173670,78643,0 ) ) -(109,165:21170735,43748801:501378,78643,0 -(109,165:21334589,43748801:173670,78643,0 +(105,165:21170735,43748801:501378,78643,0 +(105,165:21334589,43748801:173670,78643,0 ) ) -(109,165:21672113,43748801:501378,78643,0 -(109,165:21835967,43748801:173670,78643,0 +(105,165:21672113,43748801:501378,78643,0 +(105,165:21835967,43748801:173670,78643,0 ) ) -(109,165:22173491,43748801:501378,78643,0 -(109,165:22337345,43748801:173670,78643,0 +(105,165:22173491,43748801:501378,78643,0 +(105,165:22337345,43748801:173670,78643,0 ) ) -(109,165:22674869,43748801:501378,78643,0 -(109,165:22838723,43748801:173670,78643,0 +(105,165:22674869,43748801:501378,78643,0 +(105,165:22838723,43748801:173670,78643,0 ) ) -(109,165:23176247,43748801:501378,78643,0 -(109,165:23340101,43748801:173670,78643,0 +(105,165:23176247,43748801:501378,78643,0 +(105,165:23340101,43748801:173670,78643,0 ) ) -(109,165:23677625,43748801:501378,78643,0 -(109,165:23841479,43748801:173670,78643,0 +(105,165:23677625,43748801:501378,78643,0 +(105,165:23841479,43748801:173670,78643,0 ) ) -(109,165:24179003,43748801:501378,78643,0 -(109,165:24342857,43748801:173670,78643,0 +(105,165:24179003,43748801:501378,78643,0 +(105,165:24342857,43748801:173670,78643,0 ) ) -(109,165:24680381,43748801:501378,78643,0 -(109,165:24844235,43748801:173670,78643,0 +(105,165:24680381,43748801:501378,78643,0 +(105,165:24844235,43748801:173670,78643,0 ) ) -(109,165:25181759,43748801:501378,78643,0 -(109,165:25345613,43748801:173670,78643,0 +(105,165:25181759,43748801:501378,78643,0 +(105,165:25345613,43748801:173670,78643,0 ) ) -(109,165:25683137,43748801:501378,78643,0 -(109,165:25846991,43748801:173670,78643,0 +(105,165:25683137,43748801:501378,78643,0 +(105,165:25846991,43748801:173670,78643,0 ) ) -(109,165:26184515,43748801:501378,78643,0 -(109,165:26348369,43748801:173670,78643,0 +(105,165:26184515,43748801:501378,78643,0 +(105,165:26348369,43748801:173670,78643,0 ) ) -(109,165:26685893,43748801:501378,78643,0 -(109,165:26849747,43748801:173670,78643,0 +(105,165:26685893,43748801:501378,78643,0 +(105,165:26849747,43748801:173670,78643,0 ) ) -(109,165:27187271,43748801:501378,78643,0 -(109,165:27351125,43748801:173670,78643,0 +(105,165:27187271,43748801:501378,78643,0 +(105,165:27351125,43748801:173670,78643,0 ) ) -(109,165:27688649,43748801:501378,78643,0 -(109,165:27852503,43748801:173670,78643,0 +(105,165:27688649,43748801:501378,78643,0 +(105,165:27852503,43748801:173670,78643,0 ) ) -(109,165:28190027,43748801:501378,78643,0 -(109,165:28353881,43748801:173670,78643,0 +(105,165:28190027,43748801:501378,78643,0 +(105,165:28353881,43748801:173670,78643,0 ) ) -(109,165:28691405,43748801:501378,78643,0 -(109,165:28855259,43748801:173670,78643,0 +(105,165:28691405,43748801:501378,78643,0 +(105,165:28855259,43748801:173670,78643,0 ) ) -(109,165:29192783,43748801:501378,78643,0 -(109,165:29356637,43748801:173670,78643,0 +(105,165:29192783,43748801:501378,78643,0 +(105,165:29356637,43748801:173670,78643,0 ) ) -(109,165:29694161,43748801:501378,78643,0 -(109,165:29858015,43748801:173670,78643,0 +(105,165:29694161,43748801:501378,78643,0 +(105,165:29858015,43748801:173670,78643,0 ) ) -(109,165:30195539,43748801:501378,78643,0 -(109,165:30359393,43748801:173670,78643,0 +(105,165:30195539,43748801:501378,78643,0 +(105,165:30359393,43748801:173670,78643,0 ) ) -(109,165:30696917,43748801:501378,78643,0 -(109,165:30860771,43748801:173670,78643,0 +(105,165:30696917,43748801:501378,78643,0 +(105,165:30860771,43748801:173670,78643,0 ) ) -(109,165:31403379,43748801:1179650,485622,0 -k109,165:31403379,43748801:0 -k109,165:31536199,43748801:132820 +(105,165:31239539,43748801:1343490,485622,0 +k105,165:31239539,43748801:0 +k105,165:31387652,43748801:148113 ) -g109,165:30911859,43748801 -g109,165:32583029,43748801 +g105,165:30911859,43748801 +g105,165:32583029,43748801 ) -(109,167:6630773,44590289:25952256,505283,11795 -g109,167:9121143,44590289 -h109,167:9121143,44590289:983040,0,0 -h109,167:10104183,44590289:0,0,0 -g109,167:7613813,44590289 -(109,167:7613813,44590289:1507330,481690,11795 -k109,167:9121143,44590289:536742 +(105,167:6630773,44590289:25952256,505283,11795 +g105,167:9121143,44590289 +h105,167:9121143,44590289:983040,0,0 +h105,167:10104183,44590289:0,0,0 +g105,167:7613813,44590289 +(105,167:7613813,44590289:1507330,481690,11795 +k105,167:9121143,44590289:536742 ) -g109,167:12922886,44590289 -g109,167:12922886,44590289 -(109,167:13148687,44590289:501378,78643,0 -$109,167:13148687,44590289 -(109,167:13312541,44590289:173670,78643,0 +g105,167:12922886,44590289 +g105,167:12922886,44590289 +(105,167:13148687,44590289:501378,78643,0 +$105,167:13148687,44590289 +(105,167:13312541,44590289:173670,78643,0 ) -$109,167:13650065,44590289 +$105,167:13650065,44590289 ) -(109,167:13650065,44590289:501378,78643,0 -(109,167:13813919,44590289:173670,78643,0 +(105,167:13650065,44590289:501378,78643,0 +(105,167:13813919,44590289:173670,78643,0 ) ) -(109,167:14151443,44590289:501378,78643,0 -(109,167:14315297,44590289:173670,78643,0 +(105,167:14151443,44590289:501378,78643,0 +(105,167:14315297,44590289:173670,78643,0 ) ) -(109,167:14652821,44590289:501378,78643,0 -(109,167:14816675,44590289:173670,78643,0 +(105,167:14652821,44590289:501378,78643,0 +(105,167:14816675,44590289:173670,78643,0 ) ) -(109,167:15154199,44590289:501378,78643,0 -(109,167:15318053,44590289:173670,78643,0 +(105,167:15154199,44590289:501378,78643,0 +(105,167:15318053,44590289:173670,78643,0 ) ) -(109,167:15655577,44590289:501378,78643,0 -(109,167:15819431,44590289:173670,78643,0 +(105,167:15655577,44590289:501378,78643,0 +(105,167:15819431,44590289:173670,78643,0 ) ) -(109,167:16156955,44590289:501378,78643,0 -(109,167:16320809,44590289:173670,78643,0 +(105,167:16156955,44590289:501378,78643,0 +(105,167:16320809,44590289:173670,78643,0 ) ) -(109,167:16658333,44590289:501378,78643,0 -(109,167:16822187,44590289:173670,78643,0 +(105,167:16658333,44590289:501378,78643,0 +(105,167:16822187,44590289:173670,78643,0 ) ) -(109,167:17159711,44590289:501378,78643,0 -(109,167:17323565,44590289:173670,78643,0 +(105,167:17159711,44590289:501378,78643,0 +(105,167:17323565,44590289:173670,78643,0 ) ) -(109,167:17661089,44590289:501378,78643,0 -(109,167:17824943,44590289:173670,78643,0 +(105,167:17661089,44590289:501378,78643,0 +(105,167:17824943,44590289:173670,78643,0 ) ) -(109,167:18162467,44590289:501378,78643,0 -(109,167:18326321,44590289:173670,78643,0 +(105,167:18162467,44590289:501378,78643,0 +(105,167:18326321,44590289:173670,78643,0 ) ) -(109,167:18663845,44590289:501378,78643,0 -(109,167:18827699,44590289:173670,78643,0 +(105,167:18663845,44590289:501378,78643,0 +(105,167:18827699,44590289:173670,78643,0 ) ) -(109,167:19165223,44590289:501378,78643,0 -(109,167:19329077,44590289:173670,78643,0 +(105,167:19165223,44590289:501378,78643,0 +(105,167:19329077,44590289:173670,78643,0 ) ) -(109,167:19666601,44590289:501378,78643,0 -(109,167:19830455,44590289:173670,78643,0 +(105,167:19666601,44590289:501378,78643,0 +(105,167:19830455,44590289:173670,78643,0 ) ) -(109,167:20167979,44590289:501378,78643,0 -(109,167:20331833,44590289:173670,78643,0 +(105,167:20167979,44590289:501378,78643,0 +(105,167:20331833,44590289:173670,78643,0 ) ) -(109,167:20669357,44590289:501378,78643,0 -(109,167:20833211,44590289:173670,78643,0 +(105,167:20669357,44590289:501378,78643,0 +(105,167:20833211,44590289:173670,78643,0 ) ) -(109,167:21170735,44590289:501378,78643,0 -(109,167:21334589,44590289:173670,78643,0 +(105,167:21170735,44590289:501378,78643,0 +(105,167:21334589,44590289:173670,78643,0 ) ) -(109,167:21672113,44590289:501378,78643,0 -(109,167:21835967,44590289:173670,78643,0 +(105,167:21672113,44590289:501378,78643,0 +(105,167:21835967,44590289:173670,78643,0 ) ) -(109,167:22173491,44590289:501378,78643,0 -(109,167:22337345,44590289:173670,78643,0 +(105,167:22173491,44590289:501378,78643,0 +(105,167:22337345,44590289:173670,78643,0 ) ) -(109,167:22674869,44590289:501378,78643,0 -(109,167:22838723,44590289:173670,78643,0 +(105,167:22674869,44590289:501378,78643,0 +(105,167:22838723,44590289:173670,78643,0 ) ) -(109,167:23176247,44590289:501378,78643,0 -(109,167:23340101,44590289:173670,78643,0 +(105,167:23176247,44590289:501378,78643,0 +(105,167:23340101,44590289:173670,78643,0 ) ) -(109,167:23677625,44590289:501378,78643,0 -(109,167:23841479,44590289:173670,78643,0 +(105,167:23677625,44590289:501378,78643,0 +(105,167:23841479,44590289:173670,78643,0 ) ) -(109,167:24179003,44590289:501378,78643,0 -(109,167:24342857,44590289:173670,78643,0 +(105,167:24179003,44590289:501378,78643,0 +(105,167:24342857,44590289:173670,78643,0 ) ) -(109,167:24680381,44590289:501378,78643,0 -(109,167:24844235,44590289:173670,78643,0 +(105,167:24680381,44590289:501378,78643,0 +(105,167:24844235,44590289:173670,78643,0 ) ) -(109,167:25181759,44590289:501378,78643,0 -(109,167:25345613,44590289:173670,78643,0 +(105,167:25181759,44590289:501378,78643,0 +(105,167:25345613,44590289:173670,78643,0 ) ) -(109,167:25683137,44590289:501378,78643,0 -(109,167:25846991,44590289:173670,78643,0 +(105,167:25683137,44590289:501378,78643,0 +(105,167:25846991,44590289:173670,78643,0 ) ) -(109,167:26184515,44590289:501378,78643,0 -(109,167:26348369,44590289:173670,78643,0 +(105,167:26184515,44590289:501378,78643,0 +(105,167:26348369,44590289:173670,78643,0 ) ) -(109,167:26685893,44590289:501378,78643,0 -(109,167:26849747,44590289:173670,78643,0 +(105,167:26685893,44590289:501378,78643,0 +(105,167:26849747,44590289:173670,78643,0 ) ) -(109,167:27187271,44590289:501378,78643,0 -(109,167:27351125,44590289:173670,78643,0 +(105,167:27187271,44590289:501378,78643,0 +(105,167:27351125,44590289:173670,78643,0 ) ) -(109,167:27688649,44590289:501378,78643,0 -(109,167:27852503,44590289:173670,78643,0 +(105,167:27688649,44590289:501378,78643,0 +(105,167:27852503,44590289:173670,78643,0 ) ) -(109,167:28190027,44590289:501378,78643,0 -(109,167:28353881,44590289:173670,78643,0 +(105,167:28190027,44590289:501378,78643,0 +(105,167:28353881,44590289:173670,78643,0 ) ) -(109,167:28691405,44590289:501378,78643,0 -(109,167:28855259,44590289:173670,78643,0 +(105,167:28691405,44590289:501378,78643,0 +(105,167:28855259,44590289:173670,78643,0 ) ) -(109,167:29192783,44590289:501378,78643,0 -(109,167:29356637,44590289:173670,78643,0 +(105,167:29192783,44590289:501378,78643,0 +(105,167:29356637,44590289:173670,78643,0 ) ) -(109,167:29694161,44590289:501378,78643,0 -(109,167:29858015,44590289:173670,78643,0 +(105,167:29694161,44590289:501378,78643,0 +(105,167:29858015,44590289:173670,78643,0 ) ) -(109,167:30195539,44590289:501378,78643,0 -(109,167:30359393,44590289:173670,78643,0 +(105,167:30195539,44590289:501378,78643,0 +(105,167:30359393,44590289:173670,78643,0 ) ) -(109,167:30696917,44590289:501378,78643,0 -(109,167:30860771,44590289:173670,78643,0 +(105,167:30696917,44590289:501378,78643,0 +(105,167:30860771,44590289:173670,78643,0 ) ) -(109,167:31403378,44590289:1179650,485622,11795 -k109,167:31403378,44590289:0 -k109,167:31536198,44590289:132820 +(105,167:31239538,44590289:1343490,485622,11795 +k105,167:31239538,44590289:0 +k105,167:31387651,44590289:148113 ) -g109,167:30911858,44590289 -g109,167:32583028,44590289 +g105,167:30911858,44590289 +g105,167:32583028,44590289 ) -(109,169:6630773,45431777:25952256,505283,11795 -g109,169:11218293,45431777 -h109,169:11218293,45431777:2490370,0,0 -h109,169:13708663,45431777:0,0,0 -g109,169:9121143,45431777 -(109,169:9121143,45431777:2097150,481690,11795 -k109,169:11218293,45431777:554432 +(105,169:6630773,45431777:25952256,505283,11795 +g105,169:11218293,45431777 +h105,169:11218293,45431777:2490370,0,0 +h105,169:13708663,45431777:0,0,0 +g105,169:9121143,45431777 +(105,169:9121143,45431777:2097150,481690,11795 +k105,169:11218293,45431777:554432 ) -g109,169:14428246,45431777 -$109,169:14428246,45431777 -$109,169:14873235,45431777 -g109,169:14873235,45431777 -(109,169:15154199,45431777:501378,78643,0 -$109,169:15154199,45431777 -(109,169:15318053,45431777:173670,78643,0 +g105,169:14428246,45431777 +$105,169:14428246,45431777 +$105,169:14873235,45431777 +g105,169:14873235,45431777 +(105,169:15154199,45431777:501378,78643,0 +$105,169:15154199,45431777 +(105,169:15318053,45431777:173670,78643,0 ) -$109,169:15655577,45431777 +$105,169:15655577,45431777 ) -(109,169:15655577,45431777:501378,78643,0 -(109,169:15819431,45431777:173670,78643,0 +(105,169:15655577,45431777:501378,78643,0 +(105,169:15819431,45431777:173670,78643,0 ) ) -(109,169:16156955,45431777:501378,78643,0 -(109,169:16320809,45431777:173670,78643,0 +(105,169:16156955,45431777:501378,78643,0 +(105,169:16320809,45431777:173670,78643,0 ) ) -(109,169:16658333,45431777:501378,78643,0 -(109,169:16822187,45431777:173670,78643,0 +(105,169:16658333,45431777:501378,78643,0 +(105,169:16822187,45431777:173670,78643,0 ) ) -(109,169:17159711,45431777:501378,78643,0 -(109,169:17323565,45431777:173670,78643,0 +(105,169:17159711,45431777:501378,78643,0 +(105,169:17323565,45431777:173670,78643,0 ) ) -(109,169:17661089,45431777:501378,78643,0 -(109,169:17824943,45431777:173670,78643,0 +(105,169:17661089,45431777:501378,78643,0 +(105,169:17824943,45431777:173670,78643,0 ) ) -(109,169:18162467,45431777:501378,78643,0 -(109,169:18326321,45431777:173670,78643,0 +(105,169:18162467,45431777:501378,78643,0 +(105,169:18326321,45431777:173670,78643,0 ) ) -(109,169:18663845,45431777:501378,78643,0 -(109,169:18827699,45431777:173670,78643,0 +(105,169:18663845,45431777:501378,78643,0 +(105,169:18827699,45431777:173670,78643,0 ) ) -(109,169:19165223,45431777:501378,78643,0 -(109,169:19329077,45431777:173670,78643,0 +(105,169:19165223,45431777:501378,78643,0 +(105,169:19329077,45431777:173670,78643,0 ) ) -(109,169:19666601,45431777:501378,78643,0 -(109,169:19830455,45431777:173670,78643,0 +(105,169:19666601,45431777:501378,78643,0 +(105,169:19830455,45431777:173670,78643,0 ) ) -(109,169:20167979,45431777:501378,78643,0 -(109,169:20331833,45431777:173670,78643,0 +(105,169:20167979,45431777:501378,78643,0 +(105,169:20331833,45431777:173670,78643,0 ) ) -(109,169:20669357,45431777:501378,78643,0 -(109,169:20833211,45431777:173670,78643,0 +(105,169:20669357,45431777:501378,78643,0 +(105,169:20833211,45431777:173670,78643,0 ) ) -(109,169:21170735,45431777:501378,78643,0 -(109,169:21334589,45431777:173670,78643,0 +(105,169:21170735,45431777:501378,78643,0 +(105,169:21334589,45431777:173670,78643,0 ) ) -(109,169:21672113,45431777:501378,78643,0 -(109,169:21835967,45431777:173670,78643,0 +(105,169:21672113,45431777:501378,78643,0 +(105,169:21835967,45431777:173670,78643,0 ) ) -(109,169:22173491,45431777:501378,78643,0 -(109,169:22337345,45431777:173670,78643,0 +(105,169:22173491,45431777:501378,78643,0 +(105,169:22337345,45431777:173670,78643,0 ) ) -(109,169:22674869,45431777:501378,78643,0 -(109,169:22838723,45431777:173670,78643,0 +(105,169:22674869,45431777:501378,78643,0 +(105,169:22838723,45431777:173670,78643,0 ) ) -(109,169:23176247,45431777:501378,78643,0 -(109,169:23340101,45431777:173670,78643,0 +(105,169:23176247,45431777:501378,78643,0 +(105,169:23340101,45431777:173670,78643,0 ) ) -(109,169:23677625,45431777:501378,78643,0 -(109,169:23841479,45431777:173670,78643,0 +(105,169:23677625,45431777:501378,78643,0 +(105,169:23841479,45431777:173670,78643,0 ) ) -(109,169:24179003,45431777:501378,78643,0 -(109,169:24342857,45431777:173670,78643,0 +(105,169:24179003,45431777:501378,78643,0 +(105,169:24342857,45431777:173670,78643,0 ) ) -(109,169:24680381,45431777:501378,78643,0 -(109,169:24844235,45431777:173670,78643,0 +(105,169:24680381,45431777:501378,78643,0 +(105,169:24844235,45431777:173670,78643,0 ) ) -(109,169:25181759,45431777:501378,78643,0 -(109,169:25345613,45431777:173670,78643,0 +(105,169:25181759,45431777:501378,78643,0 +(105,169:25345613,45431777:173670,78643,0 ) ) -(109,169:25683137,45431777:501378,78643,0 -(109,169:25846991,45431777:173670,78643,0 +(105,169:25683137,45431777:501378,78643,0 +(105,169:25846991,45431777:173670,78643,0 ) ) -(109,169:26184515,45431777:501378,78643,0 -(109,169:26348369,45431777:173670,78643,0 +(105,169:26184515,45431777:501378,78643,0 +(105,169:26348369,45431777:173670,78643,0 ) ) -(109,169:26685893,45431777:501378,78643,0 -(109,169:26849747,45431777:173670,78643,0 +(105,169:26685893,45431777:501378,78643,0 +(105,169:26849747,45431777:173670,78643,0 ) ) -(109,169:27187271,45431777:501378,78643,0 -(109,169:27351125,45431777:173670,78643,0 +(105,169:27187271,45431777:501378,78643,0 +(105,169:27351125,45431777:173670,78643,0 ) ) -(109,169:27688649,45431777:501378,78643,0 -(109,169:27852503,45431777:173670,78643,0 +(105,169:27688649,45431777:501378,78643,0 +(105,169:27852503,45431777:173670,78643,0 ) ) -(109,169:28190027,45431777:501378,78643,0 -(109,169:28353881,45431777:173670,78643,0 +(105,169:28190027,45431777:501378,78643,0 +(105,169:28353881,45431777:173670,78643,0 ) ) -(109,169:28691405,45431777:501378,78643,0 -(109,169:28855259,45431777:173670,78643,0 +(105,169:28691405,45431777:501378,78643,0 +(105,169:28855259,45431777:173670,78643,0 ) ) -(109,169:29192783,45431777:501378,78643,0 -(109,169:29356637,45431777:173670,78643,0 +(105,169:29192783,45431777:501378,78643,0 +(105,169:29356637,45431777:173670,78643,0 ) ) -(109,169:29694161,45431777:501378,78643,0 -(109,169:29858015,45431777:173670,78643,0 +(105,169:29694161,45431777:501378,78643,0 +(105,169:29858015,45431777:173670,78643,0 ) ) -(109,169:30195539,45431777:501378,78643,0 -(109,169:30359393,45431777:173670,78643,0 +(105,169:30195539,45431777:501378,78643,0 +(105,169:30359393,45431777:173670,78643,0 ) ) -(109,169:30696917,45431777:501378,78643,0 -(109,169:30860771,45431777:173670,78643,0 +(105,169:30696917,45431777:501378,78643,0 +(105,169:30860771,45431777:173670,78643,0 ) ) -(109,169:31403379,45431777:1179650,485622,11795 -k109,169:31403379,45431777:0 -k109,169:31536199,45431777:132820 +(105,169:31239539,45431777:1343490,485622,11795 +k105,169:31239539,45431777:0 +k105,169:31387652,45431777:148113 ) -g109,169:30911859,45431777 -g109,169:32583029,45431777 +g105,169:30911859,45431777 +g105,169:32583029,45431777 ) ] -(109,173:32583029,45706769:0,0,0 -g109,173:32583029,45706769 +(105,173:32583029,45706769:0,0,0 +g105,173:32583029,45706769 ) ) ] -(109,173:6630773,47279633:25952256,0,0 -h109,173:6630773,47279633:25952256,0,0 +(105,173:6630773,47279633:25952256,0,0 +h105,173:6630773,47279633:25952256,0,0 ) ] -h109,173:4262630,4025873:0,0,0 +h105,173:4262630,4025873:0,0,0 ] !128701 }3 !11 {4 -[109,263:4262630,47279633:28320399,43253760,0 -(109,263:4262630,4025873:0,0,0 -[109,263:-473657,4025873:25952256,0,0 -(109,263:-473657,-710414:25952256,0,0 -h109,263:-473657,-710414:0,0,0 -(109,263:-473657,-710414:0,0,0 -(109,263:-473657,-710414:0,0,0 -g109,263:-473657,-710414 -(109,263:-473657,-710414:65781,0,65781 -g109,263:-407876,-710414 -[109,263:-407876,-644633:0,0,0 +[105,263:4262630,47279633:28320399,43253760,0 +(105,263:4262630,4025873:0,0,0 +[105,263:-473657,4025873:25952256,0,0 +(105,263:-473657,-710414:25952256,0,0 +h105,263:-473657,-710414:0,0,0 +(105,263:-473657,-710414:0,0,0 +(105,263:-473657,-710414:0,0,0 +g105,263:-473657,-710414 +(105,263:-473657,-710414:65781,0,65781 +g105,263:-407876,-710414 +[105,263:-407876,-644633:0,0,0 ] ) -k109,263:-473657,-710414:-65781 +k105,263:-473657,-710414:-65781 ) ) -k109,263:25478599,-710414:25952256 -g109,263:25478599,-710414 +k105,263:25478599,-710414:25952256 +g105,263:25478599,-710414 ) ] ) -[109,263:6630773,47279633:25952256,43253760,0 -[109,263:6630773,4812305:25952256,786432,0 -(109,263:6630773,4812305:25952256,485622,11795 -(109,263:6630773,4812305:25952256,485622,11795 -g109,263:3078558,4812305 -[109,263:3078558,4812305:0,0,0 -(109,263:3078558,2439708:0,1703936,0 -k109,263:1358238,2439708:-1720320 -(1,86:1358238,2439708:1720320,1703936,0 -(1,86:1358238,2439708:1179648,16384,0 -r109,263:2537886,2439708:1179648,16384,0 +[105,263:6630773,47279633:25952256,43253760,0 +[105,263:6630773,4812305:25952256,786432,0 +(105,263:6630773,4812305:25952256,485622,11795 +(105,263:6630773,4812305:25952256,485622,11795 +g105,263:3078558,4812305 +[105,263:3078558,4812305:0,0,0 +(105,263:3078558,2439708:0,1703936,0 +k105,263:1358238,2439708:-1720320 +(1,92:1358238,2439708:1720320,1703936,0 +(1,92:1358238,2439708:1179648,16384,0 +r105,263:2537886,2439708:1179648,16384,0 ) -g1,86:3062174,2439708 -(1,86:3062174,2439708:16384,1703936,0 -[1,86:3062174,2439708:25952256,1703936,0 -(1,86:3062174,1915420:25952256,1179648,0 -(1,86:3062174,1915420:16384,1179648,0 -r109,263:3078558,1915420:16384,1179648,0 +g1,92:3062174,2439708 +(1,92:3062174,2439708:16384,1703936,0 +[1,92:3062174,2439708:25952256,1703936,0 +(1,92:3062174,1915420:25952256,1179648,0 +(1,92:3062174,1915420:16384,1179648,0 +r105,263:3078558,1915420:16384,1179648,0 ) -k1,86:29014430,1915420:25935872 -g1,86:29014430,1915420 +k1,92:29014430,1915420:25935872 +g1,92:29014430,1915420 ) ] ) ) ) ] -[109,263:3078558,4812305:0,0,0 -(109,263:3078558,2439708:0,1703936,0 -g109,263:29030814,2439708 -g109,263:36135244,2439708 -(1,86:36135244,2439708:1720320,1703936,0 -(1,86:36135244,2439708:16384,1703936,0 -[1,86:36135244,2439708:25952256,1703936,0 -(1,86:36135244,1915420:25952256,1179648,0 -(1,86:36135244,1915420:16384,1179648,0 -r109,263:36151628,1915420:16384,1179648,0 +[105,263:3078558,4812305:0,0,0 +(105,263:3078558,2439708:0,1703936,0 +g105,263:29030814,2439708 +g105,263:36135244,2439708 +(1,92:36135244,2439708:1720320,1703936,0 +(1,92:36135244,2439708:16384,1703936,0 +[1,92:36135244,2439708:25952256,1703936,0 +(1,92:36135244,1915420:25952256,1179648,0 +(1,92:36135244,1915420:16384,1179648,0 +r105,263:36151628,1915420:16384,1179648,0 ) -k1,86:62087500,1915420:25935872 -g1,86:62087500,1915420 +k1,92:62087500,1915420:25935872 +g1,92:62087500,1915420 ) ] ) -g1,86:36675916,2439708 -(1,86:36675916,2439708:1179648,16384,0 -r109,263:37855564,2439708:1179648,16384,0 +g1,92:36675916,2439708 +(1,92:36675916,2439708:1179648,16384,0 +r105,263:37855564,2439708:1179648,16384,0 ) ) -k109,263:3078556,2439708:-34777008 +k105,263:3078556,2439708:-34777008 ) ] -[109,263:3078558,4812305:0,0,0 -(109,263:3078558,49800853:0,16384,2228224 -k109,263:1358238,49800853:-1720320 -(1,86:1358238,49800853:1720320,16384,2228224 -(1,86:1358238,49800853:1179648,16384,0 -r109,263:2537886,49800853:1179648,16384,0 +[105,263:3078558,4812305:0,0,0 +(105,263:3078558,49800853:0,16384,2228224 +k105,263:1358238,49800853:-1720320 +(1,92:1358238,49800853:1720320,16384,2228224 +(1,92:1358238,49800853:1179648,16384,0 +r105,263:2537886,49800853:1179648,16384,0 ) -g1,86:3062174,49800853 -(1,86:3062174,52029077:16384,1703936,0 -[1,86:3062174,52029077:25952256,1703936,0 -(1,86:3062174,51504789:25952256,1179648,0 -(1,86:3062174,51504789:16384,1179648,0 -r109,263:3078558,51504789:16384,1179648,0 +g1,92:3062174,49800853 +(1,92:3062174,52029077:16384,1703936,0 +[1,92:3062174,52029077:25952256,1703936,0 +(1,92:3062174,51504789:25952256,1179648,0 +(1,92:3062174,51504789:16384,1179648,0 +r105,263:3078558,51504789:16384,1179648,0 ) -k1,86:29014430,51504789:25935872 -g1,86:29014430,51504789 +k1,92:29014430,51504789:25935872 +g1,92:29014430,51504789 ) ] ) ) ) ] -[109,263:3078558,4812305:0,0,0 -(109,263:3078558,49800853:0,16384,2228224 -g109,263:29030814,49800853 -g109,263:36135244,49800853 -(1,86:36135244,49800853:1720320,16384,2228224 -(1,86:36135244,52029077:16384,1703936,0 -[1,86:36135244,52029077:25952256,1703936,0 -(1,86:36135244,51504789:25952256,1179648,0 -(1,86:36135244,51504789:16384,1179648,0 -r109,263:36151628,51504789:16384,1179648,0 +[105,263:3078558,4812305:0,0,0 +(105,263:3078558,49800853:0,16384,2228224 +g105,263:29030814,49800853 +g105,263:36135244,49800853 +(1,92:36135244,49800853:1720320,16384,2228224 +(1,92:36135244,52029077:16384,1703936,0 +[1,92:36135244,52029077:25952256,1703936,0 +(1,92:36135244,51504789:25952256,1179648,0 +(1,92:36135244,51504789:16384,1179648,0 +r105,263:36151628,51504789:16384,1179648,0 ) -k1,86:62087500,51504789:25935872 -g1,86:62087500,51504789 +k1,92:62087500,51504789:25935872 +g1,92:62087500,51504789 ) ] ) -g1,86:36675916,49800853 -(1,86:36675916,49800853:1179648,16384,0 -r109,263:37855564,49800853:1179648,16384,0 +g1,92:36675916,49800853 +(1,92:36675916,49800853:1179648,16384,0 +r105,263:37855564,49800853:1179648,16384,0 ) ) -k109,263:3078556,49800853:-34777008 +k105,263:3078556,49800853:-34777008 ) ] -g109,263:6630773,4812305 -g109,263:6630773,4812305 -g109,263:9585136,4812305 -k109,263:32016798,4812305:22431662 +g105,263:6630773,4812305 +g105,263:6630773,4812305 +g105,263:9585136,4812305 +k105,263:32016798,4812305:22431662 ) ) ] -[109,263:6630773,45706769:25952256,40108032,0 -(109,263:6630773,45706769:25952256,40108032,0 -(109,263:6630773,45706769:0,0,0 -g109,263:6630773,45706769 +[105,263:6630773,45706769:25952256,40108032,0 +(105,263:6630773,45706769:25952256,40108032,0 +(105,263:6630773,45706769:0,0,0 +g105,263:6630773,45706769 ) -[109,263:6630773,45706769:25952256,40108032,0 -(109,171:6630773,6254097:25952256,505283,126484 -g109,171:11218293,6254097 -h109,171:11218293,6254097:2490370,0,0 -h109,171:13708663,6254097:0,0,0 -g109,171:9121143,6254097 -(109,171:9121143,6254097:2097150,485622,11795 -k109,171:11218293,6254097:554432 +[105,263:6630773,45706769:25952256,40108032,0 +(105,171:6630773,6254097:25952256,505283,126484 +g105,171:11218293,6254097 +h105,171:11218293,6254097:2490370,0,0 +h105,171:13708663,6254097:0,0,0 +g105,171:9121143,6254097 +(105,171:9121143,6254097:2097150,485622,11795 +k105,171:11218293,6254097:554432 ) -g109,171:14334529,6254097 -$109,171:14334529,6254097 -$109,171:14803111,6254097 -g109,171:15002340,6254097 -g109,171:16393014,6254097 -g109,171:20254395,6254097 -$109,171:20254395,6254097 -$109,171:20712492,6254097 -g109,171:20712492,6254097 -(109,171:21170735,6254097:501378,78643,0 -$109,171:21170735,6254097 -(109,171:21334589,6254097:173670,78643,0 +g105,171:14334529,6254097 +$105,171:14334529,6254097 +$105,171:14803111,6254097 +g105,171:15002340,6254097 +g105,171:16393014,6254097 +g105,171:20254395,6254097 +$105,171:20254395,6254097 +$105,171:20712492,6254097 +g105,171:20712492,6254097 +(105,171:21170735,6254097:501378,78643,0 +$105,171:21170735,6254097 +(105,171:21334589,6254097:173670,78643,0 ) -$109,171:21672113,6254097 +$105,171:21672113,6254097 ) -(109,171:21672113,6254097:501378,78643,0 -(109,171:21835967,6254097:173670,78643,0 +(105,171:21672113,6254097:501378,78643,0 +(105,171:21835967,6254097:173670,78643,0 ) ) -(109,171:22173491,6254097:501378,78643,0 -(109,171:22337345,6254097:173670,78643,0 +(105,171:22173491,6254097:501378,78643,0 +(105,171:22337345,6254097:173670,78643,0 ) ) -(109,171:22674869,6254097:501378,78643,0 -(109,171:22838723,6254097:173670,78643,0 +(105,171:22674869,6254097:501378,78643,0 +(105,171:22838723,6254097:173670,78643,0 ) ) -(109,171:23176247,6254097:501378,78643,0 -(109,171:23340101,6254097:173670,78643,0 +(105,171:23176247,6254097:501378,78643,0 +(105,171:23340101,6254097:173670,78643,0 ) ) -(109,171:23677625,6254097:501378,78643,0 -(109,171:23841479,6254097:173670,78643,0 +(105,171:23677625,6254097:501378,78643,0 +(105,171:23841479,6254097:173670,78643,0 ) ) -(109,171:24179003,6254097:501378,78643,0 -(109,171:24342857,6254097:173670,78643,0 +(105,171:24179003,6254097:501378,78643,0 +(105,171:24342857,6254097:173670,78643,0 ) ) -(109,171:24680381,6254097:501378,78643,0 -(109,171:24844235,6254097:173670,78643,0 +(105,171:24680381,6254097:501378,78643,0 +(105,171:24844235,6254097:173670,78643,0 ) ) -(109,171:25181759,6254097:501378,78643,0 -(109,171:25345613,6254097:173670,78643,0 +(105,171:25181759,6254097:501378,78643,0 +(105,171:25345613,6254097:173670,78643,0 ) ) -(109,171:25683137,6254097:501378,78643,0 -(109,171:25846991,6254097:173670,78643,0 +(105,171:25683137,6254097:501378,78643,0 +(105,171:25846991,6254097:173670,78643,0 ) ) -(109,171:26184515,6254097:501378,78643,0 -(109,171:26348369,6254097:173670,78643,0 +(105,171:26184515,6254097:501378,78643,0 +(105,171:26348369,6254097:173670,78643,0 ) ) -(109,171:26685893,6254097:501378,78643,0 -(109,171:26849747,6254097:173670,78643,0 +(105,171:26685893,6254097:501378,78643,0 +(105,171:26849747,6254097:173670,78643,0 ) ) -(109,171:27187271,6254097:501378,78643,0 -(109,171:27351125,6254097:173670,78643,0 +(105,171:27187271,6254097:501378,78643,0 +(105,171:27351125,6254097:173670,78643,0 ) ) -(109,171:27688649,6254097:501378,78643,0 -(109,171:27852503,6254097:173670,78643,0 +(105,171:27688649,6254097:501378,78643,0 +(105,171:27852503,6254097:173670,78643,0 ) ) -(109,171:28190027,6254097:501378,78643,0 -(109,171:28353881,6254097:173670,78643,0 +(105,171:28190027,6254097:501378,78643,0 +(105,171:28353881,6254097:173670,78643,0 ) ) -(109,171:28691405,6254097:501378,78643,0 -(109,171:28855259,6254097:173670,78643,0 +(105,171:28691405,6254097:501378,78643,0 +(105,171:28855259,6254097:173670,78643,0 ) ) -(109,171:29192783,6254097:501378,78643,0 -(109,171:29356637,6254097:173670,78643,0 +(105,171:29192783,6254097:501378,78643,0 +(105,171:29356637,6254097:173670,78643,0 ) ) -(109,171:29694161,6254097:501378,78643,0 -(109,171:29858015,6254097:173670,78643,0 +(105,171:29694161,6254097:501378,78643,0 +(105,171:29858015,6254097:173670,78643,0 ) ) -(109,171:30195539,6254097:501378,78643,0 -(109,171:30359393,6254097:173670,78643,0 +(105,171:30195539,6254097:501378,78643,0 +(105,171:30359393,6254097:173670,78643,0 ) ) -(109,171:30696917,6254097:501378,78643,0 -(109,171:30860771,6254097:173670,78643,0 +(105,171:30696917,6254097:501378,78643,0 +(105,171:30860771,6254097:173670,78643,0 ) ) -(109,171:31403379,6254097:1179650,485622,11795 -k109,171:31403379,6254097:0 -k109,171:31536199,6254097:132820 +(105,171:31239539,6254097:1343490,485622,11795 +k105,171:31239539,6254097:0 +k105,171:31387652,6254097:148113 ) -g109,171:30911859,6254097 -g109,171:32583029,6254097 +g105,171:30911859,6254097 +g105,171:32583029,6254097 ) -(109,173:6630773,7095585:25952256,505283,134348 -g109,173:9121143,7095585 -h109,173:9121143,7095585:983040,0,0 -h109,173:10104183,7095585:0,0,0 -g109,173:7613813,7095585 -(109,173:7613813,7095585:1507330,485622,11795 -k109,173:9121143,7095585:536742 +(105,173:6630773,7095585:25952256,505283,134348 +g105,173:9121143,7095585 +h105,173:9121143,7095585:983040,0,0 +h105,173:10104183,7095585:0,0,0 +g105,173:7613813,7095585 +(105,173:7613813,7095585:1507330,485622,11795 +k105,173:9121143,7095585:536742 ) -g109,173:11384756,7095585 -g109,173:13396711,7095585 -g109,173:15913948,7095585 -g109,173:15913948,7095585 -(109,173:16156955,7095585:501378,78643,0 -$109,173:16156955,7095585 -(109,173:16320809,7095585:173670,78643,0 +g105,173:11384756,7095585 +g105,173:13396711,7095585 +g105,173:15913948,7095585 +g105,173:15913948,7095585 +(105,173:16156955,7095585:501378,78643,0 +$105,173:16156955,7095585 +(105,173:16320809,7095585:173670,78643,0 ) -$109,173:16658333,7095585 +$105,173:16658333,7095585 ) -(109,173:16658333,7095585:501378,78643,0 -(109,173:16822187,7095585:173670,78643,0 +(105,173:16658333,7095585:501378,78643,0 +(105,173:16822187,7095585:173670,78643,0 ) ) -(109,173:17159711,7095585:501378,78643,0 -(109,173:17323565,7095585:173670,78643,0 +(105,173:17159711,7095585:501378,78643,0 +(105,173:17323565,7095585:173670,78643,0 ) ) -(109,173:17661089,7095585:501378,78643,0 -(109,173:17824943,7095585:173670,78643,0 +(105,173:17661089,7095585:501378,78643,0 +(105,173:17824943,7095585:173670,78643,0 ) ) -(109,173:18162467,7095585:501378,78643,0 -(109,173:18326321,7095585:173670,78643,0 +(105,173:18162467,7095585:501378,78643,0 +(105,173:18326321,7095585:173670,78643,0 ) ) -(109,173:18663845,7095585:501378,78643,0 -(109,173:18827699,7095585:173670,78643,0 +(105,173:18663845,7095585:501378,78643,0 +(105,173:18827699,7095585:173670,78643,0 ) ) -(109,173:19165223,7095585:501378,78643,0 -(109,173:19329077,7095585:173670,78643,0 +(105,173:19165223,7095585:501378,78643,0 +(105,173:19329077,7095585:173670,78643,0 ) ) -(109,173:19666601,7095585:501378,78643,0 -(109,173:19830455,7095585:173670,78643,0 +(105,173:19666601,7095585:501378,78643,0 +(105,173:19830455,7095585:173670,78643,0 ) ) -(109,173:20167979,7095585:501378,78643,0 -(109,173:20331833,7095585:173670,78643,0 +(105,173:20167979,7095585:501378,78643,0 +(105,173:20331833,7095585:173670,78643,0 ) ) -(109,173:20669357,7095585:501378,78643,0 -(109,173:20833211,7095585:173670,78643,0 +(105,173:20669357,7095585:501378,78643,0 +(105,173:20833211,7095585:173670,78643,0 ) ) -(109,173:21170735,7095585:501378,78643,0 -(109,173:21334589,7095585:173670,78643,0 +(105,173:21170735,7095585:501378,78643,0 +(105,173:21334589,7095585:173670,78643,0 ) ) -(109,173:21672113,7095585:501378,78643,0 -(109,173:21835967,7095585:173670,78643,0 +(105,173:21672113,7095585:501378,78643,0 +(105,173:21835967,7095585:173670,78643,0 ) ) -(109,173:22173491,7095585:501378,78643,0 -(109,173:22337345,7095585:173670,78643,0 +(105,173:22173491,7095585:501378,78643,0 +(105,173:22337345,7095585:173670,78643,0 ) ) -(109,173:22674869,7095585:501378,78643,0 -(109,173:22838723,7095585:173670,78643,0 +(105,173:22674869,7095585:501378,78643,0 +(105,173:22838723,7095585:173670,78643,0 ) ) -(109,173:23176247,7095585:501378,78643,0 -(109,173:23340101,7095585:173670,78643,0 +(105,173:23176247,7095585:501378,78643,0 +(105,173:23340101,7095585:173670,78643,0 ) ) -(109,173:23677625,7095585:501378,78643,0 -(109,173:23841479,7095585:173670,78643,0 +(105,173:23677625,7095585:501378,78643,0 +(105,173:23841479,7095585:173670,78643,0 ) ) -(109,173:24179003,7095585:501378,78643,0 -(109,173:24342857,7095585:173670,78643,0 +(105,173:24179003,7095585:501378,78643,0 +(105,173:24342857,7095585:173670,78643,0 ) ) -(109,173:24680381,7095585:501378,78643,0 -(109,173:24844235,7095585:173670,78643,0 +(105,173:24680381,7095585:501378,78643,0 +(105,173:24844235,7095585:173670,78643,0 ) ) -(109,173:25181759,7095585:501378,78643,0 -(109,173:25345613,7095585:173670,78643,0 +(105,173:25181759,7095585:501378,78643,0 +(105,173:25345613,7095585:173670,78643,0 ) ) -(109,173:25683137,7095585:501378,78643,0 -(109,173:25846991,7095585:173670,78643,0 +(105,173:25683137,7095585:501378,78643,0 +(105,173:25846991,7095585:173670,78643,0 ) ) -(109,173:26184515,7095585:501378,78643,0 -(109,173:26348369,7095585:173670,78643,0 +(105,173:26184515,7095585:501378,78643,0 +(105,173:26348369,7095585:173670,78643,0 ) ) -(109,173:26685893,7095585:501378,78643,0 -(109,173:26849747,7095585:173670,78643,0 +(105,173:26685893,7095585:501378,78643,0 +(105,173:26849747,7095585:173670,78643,0 ) ) -(109,173:27187271,7095585:501378,78643,0 -(109,173:27351125,7095585:173670,78643,0 +(105,173:27187271,7095585:501378,78643,0 +(105,173:27351125,7095585:173670,78643,0 ) ) -(109,173:27688649,7095585:501378,78643,0 -(109,173:27852503,7095585:173670,78643,0 +(105,173:27688649,7095585:501378,78643,0 +(105,173:27852503,7095585:173670,78643,0 ) ) -(109,173:28190027,7095585:501378,78643,0 -(109,173:28353881,7095585:173670,78643,0 +(105,173:28190027,7095585:501378,78643,0 +(105,173:28353881,7095585:173670,78643,0 ) ) -(109,173:28691405,7095585:501378,78643,0 -(109,173:28855259,7095585:173670,78643,0 +(105,173:28691405,7095585:501378,78643,0 +(105,173:28855259,7095585:173670,78643,0 ) ) -(109,173:29192783,7095585:501378,78643,0 -(109,173:29356637,7095585:173670,78643,0 +(105,173:29192783,7095585:501378,78643,0 +(105,173:29356637,7095585:173670,78643,0 ) ) -(109,173:29694161,7095585:501378,78643,0 -(109,173:29858015,7095585:173670,78643,0 +(105,173:29694161,7095585:501378,78643,0 +(105,173:29858015,7095585:173670,78643,0 ) ) -(109,173:30195539,7095585:501378,78643,0 -(109,173:30359393,7095585:173670,78643,0 +(105,173:30195539,7095585:501378,78643,0 +(105,173:30359393,7095585:173670,78643,0 ) ) -(109,173:30696917,7095585:501378,78643,0 -(109,173:30860771,7095585:173670,78643,0 +(105,173:30696917,7095585:501378,78643,0 +(105,173:30860771,7095585:173670,78643,0 ) ) -(109,173:31403379,7095585:1179650,485622,11795 -k109,173:31403379,7095585:0 -k109,173:31536199,7095585:132820 +(105,173:31239539,7095585:1343490,485622,11795 +k105,173:31239539,7095585:0 +k105,173:31387652,7095585:148113 ) -g109,173:30911859,7095585 -g109,173:32583029,7095585 +g105,173:30911859,7095585 +g105,173:32583029,7095585 ) -(109,175:6630773,7937073:25952256,485622,134348 -g109,175:11218293,7937073 -h109,175:11218293,7937073:2490370,0,0 -h109,175:13708663,7937073:0,0,0 -g109,175:9121143,7937073 -(109,175:9121143,7937073:2097150,485622,11795 -k109,175:11218293,7937073:554432 +(105,175:6630773,7937073:25952256,485622,134348 +g105,175:11218293,7937073 +h105,175:11218293,7937073:2490370,0,0 +h105,175:13708663,7937073:0,0,0 +g105,175:9121143,7937073 +(105,175:9121143,7937073:2097150,485622,11795 +k105,175:11218293,7937073:554432 ) -g109,175:14691701,7937073 -(109,175:15154199,7937073:501378,78643,0 -$109,175:15154199,7937073 -(109,175:15318053,7937073:173670,78643,0 +g105,175:14691701,7937073 +(105,175:15154199,7937073:501378,78643,0 +$105,175:15154199,7937073 +(105,175:15318053,7937073:173670,78643,0 ) -$109,175:15655577,7937073 +$105,175:15655577,7937073 ) -(109,175:15655577,7937073:501378,78643,0 -(109,175:15819431,7937073:173670,78643,0 +(105,175:15655577,7937073:501378,78643,0 +(105,175:15819431,7937073:173670,78643,0 ) ) -(109,175:16156955,7937073:501378,78643,0 -(109,175:16320809,7937073:173670,78643,0 +(105,175:16156955,7937073:501378,78643,0 +(105,175:16320809,7937073:173670,78643,0 ) ) -(109,175:16658333,7937073:501378,78643,0 -(109,175:16822187,7937073:173670,78643,0 +(105,175:16658333,7937073:501378,78643,0 +(105,175:16822187,7937073:173670,78643,0 ) ) -(109,175:17159711,7937073:501378,78643,0 -(109,175:17323565,7937073:173670,78643,0 +(105,175:17159711,7937073:501378,78643,0 +(105,175:17323565,7937073:173670,78643,0 ) ) -(109,175:17661089,7937073:501378,78643,0 -(109,175:17824943,7937073:173670,78643,0 +(105,175:17661089,7937073:501378,78643,0 +(105,175:17824943,7937073:173670,78643,0 ) ) -(109,175:18162467,7937073:501378,78643,0 -(109,175:18326321,7937073:173670,78643,0 +(105,175:18162467,7937073:501378,78643,0 +(105,175:18326321,7937073:173670,78643,0 ) ) -(109,175:18663845,7937073:501378,78643,0 -(109,175:18827699,7937073:173670,78643,0 +(105,175:18663845,7937073:501378,78643,0 +(105,175:18827699,7937073:173670,78643,0 ) ) -(109,175:19165223,7937073:501378,78643,0 -(109,175:19329077,7937073:173670,78643,0 +(105,175:19165223,7937073:501378,78643,0 +(105,175:19329077,7937073:173670,78643,0 ) ) -(109,175:19666601,7937073:501378,78643,0 -(109,175:19830455,7937073:173670,78643,0 +(105,175:19666601,7937073:501378,78643,0 +(105,175:19830455,7937073:173670,78643,0 ) ) -(109,175:20167979,7937073:501378,78643,0 -(109,175:20331833,7937073:173670,78643,0 +(105,175:20167979,7937073:501378,78643,0 +(105,175:20331833,7937073:173670,78643,0 ) ) -(109,175:20669357,7937073:501378,78643,0 -(109,175:20833211,7937073:173670,78643,0 +(105,175:20669357,7937073:501378,78643,0 +(105,175:20833211,7937073:173670,78643,0 ) ) -(109,175:21170735,7937073:501378,78643,0 -(109,175:21334589,7937073:173670,78643,0 +(105,175:21170735,7937073:501378,78643,0 +(105,175:21334589,7937073:173670,78643,0 ) ) -(109,175:21672113,7937073:501378,78643,0 -(109,175:21835967,7937073:173670,78643,0 +(105,175:21672113,7937073:501378,78643,0 +(105,175:21835967,7937073:173670,78643,0 ) ) -(109,175:22173491,7937073:501378,78643,0 -(109,175:22337345,7937073:173670,78643,0 +(105,175:22173491,7937073:501378,78643,0 +(105,175:22337345,7937073:173670,78643,0 ) ) -(109,175:22674869,7937073:501378,78643,0 -(109,175:22838723,7937073:173670,78643,0 +(105,175:22674869,7937073:501378,78643,0 +(105,175:22838723,7937073:173670,78643,0 ) ) -(109,175:23176247,7937073:501378,78643,0 -(109,175:23340101,7937073:173670,78643,0 +(105,175:23176247,7937073:501378,78643,0 +(105,175:23340101,7937073:173670,78643,0 ) ) -(109,175:23677625,7937073:501378,78643,0 -(109,175:23841479,7937073:173670,78643,0 +(105,175:23677625,7937073:501378,78643,0 +(105,175:23841479,7937073:173670,78643,0 ) ) -(109,175:24179003,7937073:501378,78643,0 -(109,175:24342857,7937073:173670,78643,0 +(105,175:24179003,7937073:501378,78643,0 +(105,175:24342857,7937073:173670,78643,0 ) ) -(109,175:24680381,7937073:501378,78643,0 -(109,175:24844235,7937073:173670,78643,0 +(105,175:24680381,7937073:501378,78643,0 +(105,175:24844235,7937073:173670,78643,0 ) ) -(109,175:25181759,7937073:501378,78643,0 -(109,175:25345613,7937073:173670,78643,0 +(105,175:25181759,7937073:501378,78643,0 +(105,175:25345613,7937073:173670,78643,0 ) ) -(109,175:25683137,7937073:501378,78643,0 -(109,175:25846991,7937073:173670,78643,0 +(105,175:25683137,7937073:501378,78643,0 +(105,175:25846991,7937073:173670,78643,0 ) ) -(109,175:26184515,7937073:501378,78643,0 -(109,175:26348369,7937073:173670,78643,0 +(105,175:26184515,7937073:501378,78643,0 +(105,175:26348369,7937073:173670,78643,0 ) ) -(109,175:26685893,7937073:501378,78643,0 -(109,175:26849747,7937073:173670,78643,0 +(105,175:26685893,7937073:501378,78643,0 +(105,175:26849747,7937073:173670,78643,0 ) ) -(109,175:27187271,7937073:501378,78643,0 -(109,175:27351125,7937073:173670,78643,0 +(105,175:27187271,7937073:501378,78643,0 +(105,175:27351125,7937073:173670,78643,0 ) ) -(109,175:27688649,7937073:501378,78643,0 -(109,175:27852503,7937073:173670,78643,0 +(105,175:27688649,7937073:501378,78643,0 +(105,175:27852503,7937073:173670,78643,0 ) ) -(109,175:28190027,7937073:501378,78643,0 -(109,175:28353881,7937073:173670,78643,0 +(105,175:28190027,7937073:501378,78643,0 +(105,175:28353881,7937073:173670,78643,0 ) ) -(109,175:28691405,7937073:501378,78643,0 -(109,175:28855259,7937073:173670,78643,0 +(105,175:28691405,7937073:501378,78643,0 +(105,175:28855259,7937073:173670,78643,0 ) ) -(109,175:29192783,7937073:501378,78643,0 -(109,175:29356637,7937073:173670,78643,0 +(105,175:29192783,7937073:501378,78643,0 +(105,175:29356637,7937073:173670,78643,0 ) ) -(109,175:29694161,7937073:501378,78643,0 -(109,175:29858015,7937073:173670,78643,0 +(105,175:29694161,7937073:501378,78643,0 +(105,175:29858015,7937073:173670,78643,0 ) ) -(109,175:30195539,7937073:501378,78643,0 -(109,175:30359393,7937073:173670,78643,0 +(105,175:30195539,7937073:501378,78643,0 +(105,175:30359393,7937073:173670,78643,0 ) ) -(109,175:30696917,7937073:501378,78643,0 -(109,175:30860771,7937073:173670,78643,0 +(105,175:30696917,7937073:501378,78643,0 +(105,175:30860771,7937073:173670,78643,0 ) ) -(109,175:31403379,7937073:1179650,485622,11795 -k109,175:31403379,7937073:0 -k109,175:31536199,7937073:132820 +(105,175:31239539,7937073:1343490,485622,11795 +k105,175:31239539,7937073:0 +k105,175:31387652,7937073:148113 ) -g109,175:30911859,7937073 -g109,175:32583029,7937073 +g105,175:30911859,7937073 +g105,175:32583029,7937073 ) -(109,177:6630773,8778561:25952256,513147,126483 -g109,177:11218293,8778561 -h109,177:11218293,8778561:2490370,0,0 -h109,177:13708663,8778561:0,0,0 -g109,177:9121143,8778561 -(109,177:9121143,8778561:2097150,485622,11795 -k109,177:11218293,8778561:554432 +(105,177:6630773,8778561:25952256,513147,126483 +g105,177:11218293,8778561 +h105,177:11218293,8778561:2490370,0,0 +h105,177:13708663,8778561:0,0,0 +g105,177:9121143,8778561 +(105,177:9121143,8778561:2097150,485622,11795 +k105,177:11218293,8778561:554432 ) -g109,177:14103843,8778561 -g109,177:14962364,8778561 -g109,177:17989472,8778561 -g109,177:20424135,8778561 -(109,177:20669357,8778561:501378,78643,0 -$109,177:20669357,8778561 -(109,177:20833211,8778561:173670,78643,0 +g105,177:14103843,8778561 +g105,177:14962364,8778561 +g105,177:17989472,8778561 +g105,177:20424135,8778561 +(105,177:20669357,8778561:501378,78643,0 +$105,177:20669357,8778561 +(105,177:20833211,8778561:173670,78643,0 ) -$109,177:21170735,8778561 +$105,177:21170735,8778561 ) -(109,177:21170735,8778561:501378,78643,0 -(109,177:21334589,8778561:173670,78643,0 +(105,177:21170735,8778561:501378,78643,0 +(105,177:21334589,8778561:173670,78643,0 ) ) -(109,177:21672113,8778561:501378,78643,0 -(109,177:21835967,8778561:173670,78643,0 +(105,177:21672113,8778561:501378,78643,0 +(105,177:21835967,8778561:173670,78643,0 ) ) -(109,177:22173491,8778561:501378,78643,0 -(109,177:22337345,8778561:173670,78643,0 +(105,177:22173491,8778561:501378,78643,0 +(105,177:22337345,8778561:173670,78643,0 ) ) -(109,177:22674869,8778561:501378,78643,0 -(109,177:22838723,8778561:173670,78643,0 +(105,177:22674869,8778561:501378,78643,0 +(105,177:22838723,8778561:173670,78643,0 ) ) -(109,177:23176247,8778561:501378,78643,0 -(109,177:23340101,8778561:173670,78643,0 +(105,177:23176247,8778561:501378,78643,0 +(105,177:23340101,8778561:173670,78643,0 ) ) -(109,177:23677625,8778561:501378,78643,0 -(109,177:23841479,8778561:173670,78643,0 +(105,177:23677625,8778561:501378,78643,0 +(105,177:23841479,8778561:173670,78643,0 ) ) -(109,177:24179003,8778561:501378,78643,0 -(109,177:24342857,8778561:173670,78643,0 +(105,177:24179003,8778561:501378,78643,0 +(105,177:24342857,8778561:173670,78643,0 ) ) -(109,177:24680381,8778561:501378,78643,0 -(109,177:24844235,8778561:173670,78643,0 +(105,177:24680381,8778561:501378,78643,0 +(105,177:24844235,8778561:173670,78643,0 ) ) -(109,177:25181759,8778561:501378,78643,0 -(109,177:25345613,8778561:173670,78643,0 +(105,177:25181759,8778561:501378,78643,0 +(105,177:25345613,8778561:173670,78643,0 ) ) -(109,177:25683137,8778561:501378,78643,0 -(109,177:25846991,8778561:173670,78643,0 +(105,177:25683137,8778561:501378,78643,0 +(105,177:25846991,8778561:173670,78643,0 ) ) -(109,177:26184515,8778561:501378,78643,0 -(109,177:26348369,8778561:173670,78643,0 +(105,177:26184515,8778561:501378,78643,0 +(105,177:26348369,8778561:173670,78643,0 ) ) -(109,177:26685893,8778561:501378,78643,0 -(109,177:26849747,8778561:173670,78643,0 +(105,177:26685893,8778561:501378,78643,0 +(105,177:26849747,8778561:173670,78643,0 ) ) -(109,177:27187271,8778561:501378,78643,0 -(109,177:27351125,8778561:173670,78643,0 +(105,177:27187271,8778561:501378,78643,0 +(105,177:27351125,8778561:173670,78643,0 ) ) -(109,177:27688649,8778561:501378,78643,0 -(109,177:27852503,8778561:173670,78643,0 +(105,177:27688649,8778561:501378,78643,0 +(105,177:27852503,8778561:173670,78643,0 ) ) -(109,177:28190027,8778561:501378,78643,0 -(109,177:28353881,8778561:173670,78643,0 +(105,177:28190027,8778561:501378,78643,0 +(105,177:28353881,8778561:173670,78643,0 ) ) -(109,177:28691405,8778561:501378,78643,0 -(109,177:28855259,8778561:173670,78643,0 +(105,177:28691405,8778561:501378,78643,0 +(105,177:28855259,8778561:173670,78643,0 ) ) -(109,177:29192783,8778561:501378,78643,0 -(109,177:29356637,8778561:173670,78643,0 +(105,177:29192783,8778561:501378,78643,0 +(105,177:29356637,8778561:173670,78643,0 ) ) -(109,177:29694161,8778561:501378,78643,0 -(109,177:29858015,8778561:173670,78643,0 +(105,177:29694161,8778561:501378,78643,0 +(105,177:29858015,8778561:173670,78643,0 ) ) -(109,177:30195539,8778561:501378,78643,0 -(109,177:30359393,8778561:173670,78643,0 +(105,177:30195539,8778561:501378,78643,0 +(105,177:30359393,8778561:173670,78643,0 ) ) -(109,177:30696917,8778561:501378,78643,0 -(109,177:30860771,8778561:173670,78643,0 +(105,177:30696917,8778561:501378,78643,0 +(105,177:30860771,8778561:173670,78643,0 ) ) -(109,177:31403379,8778561:1179650,485622,11795 -k109,177:31403379,8778561:0 -k109,177:31536199,8778561:132820 +(105,177:31239539,8778561:1343490,485622,11795 +k105,177:31239539,8778561:0 +k105,177:31387652,8778561:148113 ) -g109,177:30911859,8778561 -g109,177:32583029,8778561 +g105,177:30911859,8778561 +g105,177:32583029,8778561 ) -(109,179:6630773,9620049:25952256,513147,126483 -g109,179:11218293,9620049 -h109,179:11218293,9620049:2490370,0,0 -h109,179:13708663,9620049:0,0,0 -g109,179:9121143,9620049 -(109,179:9121143,9620049:2097150,485622,11795 -k109,179:11218293,9620049:554432 +(105,179:6630773,9620049:25952256,513147,126483 +g105,179:11218293,9620049 +h105,179:11218293,9620049:2490370,0,0 +h105,179:13708663,9620049:0,0,0 +g105,179:9121143,9620049 +(105,179:9121143,9620049:2097150,485622,11795 +k105,179:11218293,9620049:554432 ) -g109,179:14103843,9620049 -g109,179:14962364,9620049 -g109,179:18717576,9620049 -g109,179:21607714,9620049 -(109,179:21672113,9620049:501378,78643,0 -$109,179:21672113,9620049 -(109,179:21835967,9620049:173670,78643,0 +g105,179:14103843,9620049 +g105,179:14962364,9620049 +g105,179:18717576,9620049 +g105,179:21607714,9620049 +(105,179:21672113,9620049:501378,78643,0 +$105,179:21672113,9620049 +(105,179:21835967,9620049:173670,78643,0 ) -$109,179:22173491,9620049 +$105,179:22173491,9620049 ) -(109,179:22173491,9620049:501378,78643,0 -(109,179:22337345,9620049:173670,78643,0 +(105,179:22173491,9620049:501378,78643,0 +(105,179:22337345,9620049:173670,78643,0 ) ) -(109,179:22674869,9620049:501378,78643,0 -(109,179:22838723,9620049:173670,78643,0 +(105,179:22674869,9620049:501378,78643,0 +(105,179:22838723,9620049:173670,78643,0 ) ) -(109,179:23176247,9620049:501378,78643,0 -(109,179:23340101,9620049:173670,78643,0 +(105,179:23176247,9620049:501378,78643,0 +(105,179:23340101,9620049:173670,78643,0 ) ) -(109,179:23677625,9620049:501378,78643,0 -(109,179:23841479,9620049:173670,78643,0 +(105,179:23677625,9620049:501378,78643,0 +(105,179:23841479,9620049:173670,78643,0 ) ) -(109,179:24179003,9620049:501378,78643,0 -(109,179:24342857,9620049:173670,78643,0 +(105,179:24179003,9620049:501378,78643,0 +(105,179:24342857,9620049:173670,78643,0 ) ) -(109,179:24680381,9620049:501378,78643,0 -(109,179:24844235,9620049:173670,78643,0 +(105,179:24680381,9620049:501378,78643,0 +(105,179:24844235,9620049:173670,78643,0 ) ) -(109,179:25181759,9620049:501378,78643,0 -(109,179:25345613,9620049:173670,78643,0 +(105,179:25181759,9620049:501378,78643,0 +(105,179:25345613,9620049:173670,78643,0 ) ) -(109,179:25683137,9620049:501378,78643,0 -(109,179:25846991,9620049:173670,78643,0 +(105,179:25683137,9620049:501378,78643,0 +(105,179:25846991,9620049:173670,78643,0 ) ) -(109,179:26184515,9620049:501378,78643,0 -(109,179:26348369,9620049:173670,78643,0 +(105,179:26184515,9620049:501378,78643,0 +(105,179:26348369,9620049:173670,78643,0 ) ) -(109,179:26685893,9620049:501378,78643,0 -(109,179:26849747,9620049:173670,78643,0 +(105,179:26685893,9620049:501378,78643,0 +(105,179:26849747,9620049:173670,78643,0 ) ) -(109,179:27187271,9620049:501378,78643,0 -(109,179:27351125,9620049:173670,78643,0 +(105,179:27187271,9620049:501378,78643,0 +(105,179:27351125,9620049:173670,78643,0 ) ) -(109,179:27688649,9620049:501378,78643,0 -(109,179:27852503,9620049:173670,78643,0 +(105,179:27688649,9620049:501378,78643,0 +(105,179:27852503,9620049:173670,78643,0 ) ) -(109,179:28190027,9620049:501378,78643,0 -(109,179:28353881,9620049:173670,78643,0 +(105,179:28190027,9620049:501378,78643,0 +(105,179:28353881,9620049:173670,78643,0 ) ) -(109,179:28691405,9620049:501378,78643,0 -(109,179:28855259,9620049:173670,78643,0 +(105,179:28691405,9620049:501378,78643,0 +(105,179:28855259,9620049:173670,78643,0 ) ) -(109,179:29192783,9620049:501378,78643,0 -(109,179:29356637,9620049:173670,78643,0 +(105,179:29192783,9620049:501378,78643,0 +(105,179:29356637,9620049:173670,78643,0 ) ) -(109,179:29694161,9620049:501378,78643,0 -(109,179:29858015,9620049:173670,78643,0 +(105,179:29694161,9620049:501378,78643,0 +(105,179:29858015,9620049:173670,78643,0 ) ) -(109,179:30195539,9620049:501378,78643,0 -(109,179:30359393,9620049:173670,78643,0 +(105,179:30195539,9620049:501378,78643,0 +(105,179:30359393,9620049:173670,78643,0 ) ) -(109,179:30696917,9620049:501378,78643,0 -(109,179:30860771,9620049:173670,78643,0 +(105,179:30696917,9620049:501378,78643,0 +(105,179:30860771,9620049:173670,78643,0 ) ) -(109,179:31403379,9620049:1179650,485622,11795 -k109,179:31403379,9620049:0 -k109,179:31536199,9620049:132820 +(105,179:31239539,9620049:1343490,485622,11795 +k105,179:31239539,9620049:0 +k105,179:31387652,9620049:148113 ) -g109,179:30911859,9620049 -g109,179:32583029,9620049 +g105,179:30911859,9620049 +g105,179:32583029,9620049 ) -(109,181:6630773,10461537:25952256,505283,11795 -g109,181:9121143,10461537 -h109,181:9121143,10461537:983040,0,0 -h109,181:10104183,10461537:0,0,0 -g109,181:7613813,10461537 -(109,181:7613813,10461537:1507330,481690,0 -k109,181:9121143,10461537:536742 +(105,181:6630773,10461537:25952256,505283,11795 +g105,181:9121143,10461537 +h105,181:9121143,10461537:983040,0,0 +h105,181:10104183,10461537:0,0,0 +g105,181:7613813,10461537 +(105,181:7613813,10461537:1507330,481690,0 +k105,181:9121143,10461537:536742 ) -g109,181:13118183,10461537 -g109,181:15130138,10461537 -g109,181:17647375,10461537 -g109,181:17647375,10461537 -(109,181:17661089,10461537:501378,78643,0 -$109,181:17661089,10461537 -(109,181:17824943,10461537:173670,78643,0 +g105,181:13118183,10461537 +g105,181:15130138,10461537 +g105,181:17647375,10461537 +g105,181:17647375,10461537 +(105,181:17661089,10461537:501378,78643,0 +$105,181:17661089,10461537 +(105,181:17824943,10461537:173670,78643,0 ) -$109,181:18162467,10461537 +$105,181:18162467,10461537 ) -(109,181:18162467,10461537:501378,78643,0 -(109,181:18326321,10461537:173670,78643,0 +(105,181:18162467,10461537:501378,78643,0 +(105,181:18326321,10461537:173670,78643,0 ) ) -(109,181:18663845,10461537:501378,78643,0 -(109,181:18827699,10461537:173670,78643,0 +(105,181:18663845,10461537:501378,78643,0 +(105,181:18827699,10461537:173670,78643,0 ) ) -(109,181:19165223,10461537:501378,78643,0 -(109,181:19329077,10461537:173670,78643,0 +(105,181:19165223,10461537:501378,78643,0 +(105,181:19329077,10461537:173670,78643,0 ) ) -(109,181:19666601,10461537:501378,78643,0 -(109,181:19830455,10461537:173670,78643,0 +(105,181:19666601,10461537:501378,78643,0 +(105,181:19830455,10461537:173670,78643,0 ) ) -(109,181:20167979,10461537:501378,78643,0 -(109,181:20331833,10461537:173670,78643,0 +(105,181:20167979,10461537:501378,78643,0 +(105,181:20331833,10461537:173670,78643,0 ) ) -(109,181:20669357,10461537:501378,78643,0 -(109,181:20833211,10461537:173670,78643,0 +(105,181:20669357,10461537:501378,78643,0 +(105,181:20833211,10461537:173670,78643,0 ) ) -(109,181:21170735,10461537:501378,78643,0 -(109,181:21334589,10461537:173670,78643,0 +(105,181:21170735,10461537:501378,78643,0 +(105,181:21334589,10461537:173670,78643,0 ) ) -(109,181:21672113,10461537:501378,78643,0 -(109,181:21835967,10461537:173670,78643,0 +(105,181:21672113,10461537:501378,78643,0 +(105,181:21835967,10461537:173670,78643,0 ) ) -(109,181:22173491,10461537:501378,78643,0 -(109,181:22337345,10461537:173670,78643,0 +(105,181:22173491,10461537:501378,78643,0 +(105,181:22337345,10461537:173670,78643,0 ) ) -(109,181:22674869,10461537:501378,78643,0 -(109,181:22838723,10461537:173670,78643,0 +(105,181:22674869,10461537:501378,78643,0 +(105,181:22838723,10461537:173670,78643,0 ) ) -(109,181:23176247,10461537:501378,78643,0 -(109,181:23340101,10461537:173670,78643,0 +(105,181:23176247,10461537:501378,78643,0 +(105,181:23340101,10461537:173670,78643,0 ) ) -(109,181:23677625,10461537:501378,78643,0 -(109,181:23841479,10461537:173670,78643,0 +(105,181:23677625,10461537:501378,78643,0 +(105,181:23841479,10461537:173670,78643,0 ) ) -(109,181:24179003,10461537:501378,78643,0 -(109,181:24342857,10461537:173670,78643,0 +(105,181:24179003,10461537:501378,78643,0 +(105,181:24342857,10461537:173670,78643,0 ) ) -(109,181:24680381,10461537:501378,78643,0 -(109,181:24844235,10461537:173670,78643,0 +(105,181:24680381,10461537:501378,78643,0 +(105,181:24844235,10461537:173670,78643,0 ) ) -(109,181:25181759,10461537:501378,78643,0 -(109,181:25345613,10461537:173670,78643,0 +(105,181:25181759,10461537:501378,78643,0 +(105,181:25345613,10461537:173670,78643,0 ) ) -(109,181:25683137,10461537:501378,78643,0 -(109,181:25846991,10461537:173670,78643,0 +(105,181:25683137,10461537:501378,78643,0 +(105,181:25846991,10461537:173670,78643,0 ) ) -(109,181:26184515,10461537:501378,78643,0 -(109,181:26348369,10461537:173670,78643,0 +(105,181:26184515,10461537:501378,78643,0 +(105,181:26348369,10461537:173670,78643,0 ) ) -(109,181:26685893,10461537:501378,78643,0 -(109,181:26849747,10461537:173670,78643,0 +(105,181:26685893,10461537:501378,78643,0 +(105,181:26849747,10461537:173670,78643,0 ) ) -(109,181:27187271,10461537:501378,78643,0 -(109,181:27351125,10461537:173670,78643,0 +(105,181:27187271,10461537:501378,78643,0 +(105,181:27351125,10461537:173670,78643,0 ) ) -(109,181:27688649,10461537:501378,78643,0 -(109,181:27852503,10461537:173670,78643,0 +(105,181:27688649,10461537:501378,78643,0 +(105,181:27852503,10461537:173670,78643,0 ) ) -(109,181:28190027,10461537:501378,78643,0 -(109,181:28353881,10461537:173670,78643,0 +(105,181:28190027,10461537:501378,78643,0 +(105,181:28353881,10461537:173670,78643,0 ) ) -(109,181:28691405,10461537:501378,78643,0 -(109,181:28855259,10461537:173670,78643,0 +(105,181:28691405,10461537:501378,78643,0 +(105,181:28855259,10461537:173670,78643,0 ) ) -(109,181:29192783,10461537:501378,78643,0 -(109,181:29356637,10461537:173670,78643,0 +(105,181:29192783,10461537:501378,78643,0 +(105,181:29356637,10461537:173670,78643,0 ) ) -(109,181:29694161,10461537:501378,78643,0 -(109,181:29858015,10461537:173670,78643,0 +(105,181:29694161,10461537:501378,78643,0 +(105,181:29858015,10461537:173670,78643,0 ) ) -(109,181:30195539,10461537:501378,78643,0 -(109,181:30359393,10461537:173670,78643,0 +(105,181:30195539,10461537:501378,78643,0 +(105,181:30359393,10461537:173670,78643,0 ) ) -(109,181:30696917,10461537:501378,78643,0 -(109,181:30860771,10461537:173670,78643,0 +(105,181:30696917,10461537:501378,78643,0 +(105,181:30860771,10461537:173670,78643,0 ) ) -(109,181:31403379,10461537:1179650,485622,11795 -k109,181:31403379,10461537:0 -k109,181:31536199,10461537:132820 +(105,181:31239539,10461537:1343490,485622,11795 +k105,181:31239539,10461537:0 +k105,181:31387652,10461537:148113 ) -g109,181:30911859,10461537 -g109,181:32583029,10461537 +g105,181:30911859,10461537 +g105,181:32583029,10461537 ) -(109,183:6630773,11303025:25952256,505283,134348 -g109,183:9121143,11303025 -h109,183:9121143,11303025:983040,0,0 -h109,183:10104183,11303025:0,0,0 -g109,183:7613813,11303025 -(109,183:7613813,11303025:1507330,485622,11795 -k109,183:9121143,11303025:536742 +(105,183:6630773,11303025:25952256,505283,134348 +g105,183:9121143,11303025 +h105,183:9121143,11303025:983040,0,0 +h105,183:10104183,11303025:0,0,0 +g105,183:7613813,11303025 +(105,183:7613813,11303025:1507330,485622,11795 +k105,183:9121143,11303025:536742 ) -g109,183:12647635,11303025 -g109,183:16163641,11303025 -g109,183:16163641,11303025 -(109,183:16658333,11303025:501378,78643,0 -$109,183:16658333,11303025 -(109,183:16822187,11303025:173670,78643,0 +g105,183:12647635,11303025 +g105,183:16163641,11303025 +g105,183:16163641,11303025 +(105,183:16658333,11303025:501378,78643,0 +$105,183:16658333,11303025 +(105,183:16822187,11303025:173670,78643,0 ) -$109,183:17159711,11303025 +$105,183:17159711,11303025 ) -(109,183:17159711,11303025:501378,78643,0 -(109,183:17323565,11303025:173670,78643,0 +(105,183:17159711,11303025:501378,78643,0 +(105,183:17323565,11303025:173670,78643,0 ) ) -(109,183:17661089,11303025:501378,78643,0 -(109,183:17824943,11303025:173670,78643,0 +(105,183:17661089,11303025:501378,78643,0 +(105,183:17824943,11303025:173670,78643,0 ) ) -(109,183:18162467,11303025:501378,78643,0 -(109,183:18326321,11303025:173670,78643,0 +(105,183:18162467,11303025:501378,78643,0 +(105,183:18326321,11303025:173670,78643,0 ) ) -(109,183:18663845,11303025:501378,78643,0 -(109,183:18827699,11303025:173670,78643,0 +(105,183:18663845,11303025:501378,78643,0 +(105,183:18827699,11303025:173670,78643,0 ) ) -(109,183:19165223,11303025:501378,78643,0 -(109,183:19329077,11303025:173670,78643,0 +(105,183:19165223,11303025:501378,78643,0 +(105,183:19329077,11303025:173670,78643,0 ) ) -(109,183:19666601,11303025:501378,78643,0 -(109,183:19830455,11303025:173670,78643,0 +(105,183:19666601,11303025:501378,78643,0 +(105,183:19830455,11303025:173670,78643,0 ) ) -(109,183:20167979,11303025:501378,78643,0 -(109,183:20331833,11303025:173670,78643,0 +(105,183:20167979,11303025:501378,78643,0 +(105,183:20331833,11303025:173670,78643,0 ) ) -(109,183:20669357,11303025:501378,78643,0 -(109,183:20833211,11303025:173670,78643,0 +(105,183:20669357,11303025:501378,78643,0 +(105,183:20833211,11303025:173670,78643,0 ) ) -(109,183:21170735,11303025:501378,78643,0 -(109,183:21334589,11303025:173670,78643,0 +(105,183:21170735,11303025:501378,78643,0 +(105,183:21334589,11303025:173670,78643,0 ) ) -(109,183:21672113,11303025:501378,78643,0 -(109,183:21835967,11303025:173670,78643,0 +(105,183:21672113,11303025:501378,78643,0 +(105,183:21835967,11303025:173670,78643,0 ) ) -(109,183:22173491,11303025:501378,78643,0 -(109,183:22337345,11303025:173670,78643,0 +(105,183:22173491,11303025:501378,78643,0 +(105,183:22337345,11303025:173670,78643,0 ) ) -(109,183:22674869,11303025:501378,78643,0 -(109,183:22838723,11303025:173670,78643,0 +(105,183:22674869,11303025:501378,78643,0 +(105,183:22838723,11303025:173670,78643,0 ) ) -(109,183:23176247,11303025:501378,78643,0 -(109,183:23340101,11303025:173670,78643,0 +(105,183:23176247,11303025:501378,78643,0 +(105,183:23340101,11303025:173670,78643,0 ) ) -(109,183:23677625,11303025:501378,78643,0 -(109,183:23841479,11303025:173670,78643,0 +(105,183:23677625,11303025:501378,78643,0 +(105,183:23841479,11303025:173670,78643,0 ) ) -(109,183:24179003,11303025:501378,78643,0 -(109,183:24342857,11303025:173670,78643,0 +(105,183:24179003,11303025:501378,78643,0 +(105,183:24342857,11303025:173670,78643,0 ) ) -(109,183:24680381,11303025:501378,78643,0 -(109,183:24844235,11303025:173670,78643,0 +(105,183:24680381,11303025:501378,78643,0 +(105,183:24844235,11303025:173670,78643,0 ) ) -(109,183:25181759,11303025:501378,78643,0 -(109,183:25345613,11303025:173670,78643,0 +(105,183:25181759,11303025:501378,78643,0 +(105,183:25345613,11303025:173670,78643,0 ) ) -(109,183:25683137,11303025:501378,78643,0 -(109,183:25846991,11303025:173670,78643,0 +(105,183:25683137,11303025:501378,78643,0 +(105,183:25846991,11303025:173670,78643,0 ) ) -(109,183:26184515,11303025:501378,78643,0 -(109,183:26348369,11303025:173670,78643,0 +(105,183:26184515,11303025:501378,78643,0 +(105,183:26348369,11303025:173670,78643,0 ) ) -(109,183:26685893,11303025:501378,78643,0 -(109,183:26849747,11303025:173670,78643,0 +(105,183:26685893,11303025:501378,78643,0 +(105,183:26849747,11303025:173670,78643,0 ) ) -(109,183:27187271,11303025:501378,78643,0 -(109,183:27351125,11303025:173670,78643,0 +(105,183:27187271,11303025:501378,78643,0 +(105,183:27351125,11303025:173670,78643,0 ) ) -(109,183:27688649,11303025:501378,78643,0 -(109,183:27852503,11303025:173670,78643,0 +(105,183:27688649,11303025:501378,78643,0 +(105,183:27852503,11303025:173670,78643,0 ) ) -(109,183:28190027,11303025:501378,78643,0 -(109,183:28353881,11303025:173670,78643,0 +(105,183:28190027,11303025:501378,78643,0 +(105,183:28353881,11303025:173670,78643,0 ) ) -(109,183:28691405,11303025:501378,78643,0 -(109,183:28855259,11303025:173670,78643,0 +(105,183:28691405,11303025:501378,78643,0 +(105,183:28855259,11303025:173670,78643,0 ) ) -(109,183:29192783,11303025:501378,78643,0 -(109,183:29356637,11303025:173670,78643,0 +(105,183:29192783,11303025:501378,78643,0 +(105,183:29356637,11303025:173670,78643,0 ) ) -(109,183:29694161,11303025:501378,78643,0 -(109,183:29858015,11303025:173670,78643,0 +(105,183:29694161,11303025:501378,78643,0 +(105,183:29858015,11303025:173670,78643,0 ) ) -(109,183:30195539,11303025:501378,78643,0 -(109,183:30359393,11303025:173670,78643,0 +(105,183:30195539,11303025:501378,78643,0 +(105,183:30359393,11303025:173670,78643,0 ) ) -(109,183:30696917,11303025:501378,78643,0 -(109,183:30860771,11303025:173670,78643,0 +(105,183:30696917,11303025:501378,78643,0 +(105,183:30860771,11303025:173670,78643,0 ) ) -(109,183:31403379,11303025:1179650,485622,11795 -k109,183:31403379,11303025:0 -k109,183:31536199,11303025:132820 +(105,183:31239539,11303025:1343490,485622,11795 +k105,183:31239539,11303025:0 +k105,183:31387652,11303025:148113 ) -g109,183:30911859,11303025 -g109,183:32583029,11303025 +g105,183:30911859,11303025 +g105,183:32583029,11303025 ) -(109,185:6630773,12144513:25952256,513147,11795 -g109,185:9121143,12144513 -h109,185:9121143,12144513:983040,0,0 -h109,185:10104183,12144513:0,0,0 -g109,185:7613813,12144513 -(109,185:7613813,12144513:1507330,485622,11795 -k109,185:9121143,12144513:536742 +(105,185:6630773,12144513:25952256,513147,11795 +g105,185:9121143,12144513 +h105,185:9121143,12144513:983040,0,0 +h105,185:10104183,12144513:0,0,0 +g105,185:7613813,12144513 +(105,185:7613813,12144513:1507330,485622,11795 +k105,185:9121143,12144513:536742 ) -g109,185:11251718,12144513 -g109,185:14324701,12144513 -g109,185:14324701,12144513 -(109,185:14652821,12144513:501378,78643,0 -$109,185:14652821,12144513 -(109,185:14816675,12144513:173670,78643,0 +g105,185:11251718,12144513 +g105,185:14324701,12144513 +g105,185:14324701,12144513 +(105,185:14652821,12144513:501378,78643,0 +$105,185:14652821,12144513 +(105,185:14816675,12144513:173670,78643,0 ) -$109,185:15154199,12144513 +$105,185:15154199,12144513 ) -(109,185:15154199,12144513:501378,78643,0 -(109,185:15318053,12144513:173670,78643,0 +(105,185:15154199,12144513:501378,78643,0 +(105,185:15318053,12144513:173670,78643,0 ) ) -(109,185:15655577,12144513:501378,78643,0 -(109,185:15819431,12144513:173670,78643,0 +(105,185:15655577,12144513:501378,78643,0 +(105,185:15819431,12144513:173670,78643,0 ) ) -(109,185:16156955,12144513:501378,78643,0 -(109,185:16320809,12144513:173670,78643,0 +(105,185:16156955,12144513:501378,78643,0 +(105,185:16320809,12144513:173670,78643,0 ) ) -(109,185:16658333,12144513:501378,78643,0 -(109,185:16822187,12144513:173670,78643,0 +(105,185:16658333,12144513:501378,78643,0 +(105,185:16822187,12144513:173670,78643,0 ) ) -(109,185:17159711,12144513:501378,78643,0 -(109,185:17323565,12144513:173670,78643,0 +(105,185:17159711,12144513:501378,78643,0 +(105,185:17323565,12144513:173670,78643,0 ) ) -(109,185:17661089,12144513:501378,78643,0 -(109,185:17824943,12144513:173670,78643,0 +(105,185:17661089,12144513:501378,78643,0 +(105,185:17824943,12144513:173670,78643,0 ) ) -(109,185:18162467,12144513:501378,78643,0 -(109,185:18326321,12144513:173670,78643,0 +(105,185:18162467,12144513:501378,78643,0 +(105,185:18326321,12144513:173670,78643,0 ) ) -(109,185:18663845,12144513:501378,78643,0 -(109,185:18827699,12144513:173670,78643,0 +(105,185:18663845,12144513:501378,78643,0 +(105,185:18827699,12144513:173670,78643,0 ) ) -(109,185:19165223,12144513:501378,78643,0 -(109,185:19329077,12144513:173670,78643,0 +(105,185:19165223,12144513:501378,78643,0 +(105,185:19329077,12144513:173670,78643,0 ) ) -(109,185:19666601,12144513:501378,78643,0 -(109,185:19830455,12144513:173670,78643,0 +(105,185:19666601,12144513:501378,78643,0 +(105,185:19830455,12144513:173670,78643,0 ) ) -(109,185:20167979,12144513:501378,78643,0 -(109,185:20331833,12144513:173670,78643,0 +(105,185:20167979,12144513:501378,78643,0 +(105,185:20331833,12144513:173670,78643,0 ) ) -(109,185:20669357,12144513:501378,78643,0 -(109,185:20833211,12144513:173670,78643,0 +(105,185:20669357,12144513:501378,78643,0 +(105,185:20833211,12144513:173670,78643,0 ) ) -(109,185:21170735,12144513:501378,78643,0 -(109,185:21334589,12144513:173670,78643,0 +(105,185:21170735,12144513:501378,78643,0 +(105,185:21334589,12144513:173670,78643,0 ) ) -(109,185:21672113,12144513:501378,78643,0 -(109,185:21835967,12144513:173670,78643,0 +(105,185:21672113,12144513:501378,78643,0 +(105,185:21835967,12144513:173670,78643,0 ) ) -(109,185:22173491,12144513:501378,78643,0 -(109,185:22337345,12144513:173670,78643,0 +(105,185:22173491,12144513:501378,78643,0 +(105,185:22337345,12144513:173670,78643,0 ) ) -(109,185:22674869,12144513:501378,78643,0 -(109,185:22838723,12144513:173670,78643,0 +(105,185:22674869,12144513:501378,78643,0 +(105,185:22838723,12144513:173670,78643,0 ) ) -(109,185:23176247,12144513:501378,78643,0 -(109,185:23340101,12144513:173670,78643,0 +(105,185:23176247,12144513:501378,78643,0 +(105,185:23340101,12144513:173670,78643,0 ) ) -(109,185:23677625,12144513:501378,78643,0 -(109,185:23841479,12144513:173670,78643,0 +(105,185:23677625,12144513:501378,78643,0 +(105,185:23841479,12144513:173670,78643,0 ) ) -(109,185:24179003,12144513:501378,78643,0 -(109,185:24342857,12144513:173670,78643,0 +(105,185:24179003,12144513:501378,78643,0 +(105,185:24342857,12144513:173670,78643,0 ) ) -(109,185:24680381,12144513:501378,78643,0 -(109,185:24844235,12144513:173670,78643,0 +(105,185:24680381,12144513:501378,78643,0 +(105,185:24844235,12144513:173670,78643,0 ) ) -(109,185:25181759,12144513:501378,78643,0 -(109,185:25345613,12144513:173670,78643,0 +(105,185:25181759,12144513:501378,78643,0 +(105,185:25345613,12144513:173670,78643,0 ) ) -(109,185:25683137,12144513:501378,78643,0 -(109,185:25846991,12144513:173670,78643,0 +(105,185:25683137,12144513:501378,78643,0 +(105,185:25846991,12144513:173670,78643,0 ) ) -(109,185:26184515,12144513:501378,78643,0 -(109,185:26348369,12144513:173670,78643,0 +(105,185:26184515,12144513:501378,78643,0 +(105,185:26348369,12144513:173670,78643,0 ) ) -(109,185:26685893,12144513:501378,78643,0 -(109,185:26849747,12144513:173670,78643,0 +(105,185:26685893,12144513:501378,78643,0 +(105,185:26849747,12144513:173670,78643,0 ) ) -(109,185:27187271,12144513:501378,78643,0 -(109,185:27351125,12144513:173670,78643,0 +(105,185:27187271,12144513:501378,78643,0 +(105,185:27351125,12144513:173670,78643,0 ) ) -(109,185:27688649,12144513:501378,78643,0 -(109,185:27852503,12144513:173670,78643,0 +(105,185:27688649,12144513:501378,78643,0 +(105,185:27852503,12144513:173670,78643,0 ) ) -(109,185:28190027,12144513:501378,78643,0 -(109,185:28353881,12144513:173670,78643,0 +(105,185:28190027,12144513:501378,78643,0 +(105,185:28353881,12144513:173670,78643,0 ) ) -(109,185:28691405,12144513:501378,78643,0 -(109,185:28855259,12144513:173670,78643,0 +(105,185:28691405,12144513:501378,78643,0 +(105,185:28855259,12144513:173670,78643,0 ) ) -(109,185:29192783,12144513:501378,78643,0 -(109,185:29356637,12144513:173670,78643,0 +(105,185:29192783,12144513:501378,78643,0 +(105,185:29356637,12144513:173670,78643,0 ) ) -(109,185:29694161,12144513:501378,78643,0 -(109,185:29858015,12144513:173670,78643,0 +(105,185:29694161,12144513:501378,78643,0 +(105,185:29858015,12144513:173670,78643,0 ) ) -(109,185:30195539,12144513:501378,78643,0 -(109,185:30359393,12144513:173670,78643,0 +(105,185:30195539,12144513:501378,78643,0 +(105,185:30359393,12144513:173670,78643,0 ) ) -(109,185:30696917,12144513:501378,78643,0 -(109,185:30860771,12144513:173670,78643,0 +(105,185:30696917,12144513:501378,78643,0 +(105,185:30860771,12144513:173670,78643,0 ) ) -(109,185:31403379,12144513:1179650,481690,0 -k109,185:31403379,12144513:0 -k109,185:31536199,12144513:132820 +(105,185:31239539,12144513:1343490,481690,0 +k105,185:31239539,12144513:0 +k105,185:31387652,12144513:148113 ) -g109,185:30911859,12144513 -g109,185:32583029,12144513 +g105,185:30911859,12144513 +g105,185:32583029,12144513 ) -(109,187:6630773,12986001:25952256,485622,11795 -g109,187:9121143,12986001 -h109,187:9121143,12986001:983040,0,0 -h109,187:10104183,12986001:0,0,0 -g109,187:7613813,12986001 -(109,187:7613813,12986001:1507330,485622,11795 -k109,187:9121143,12986001:138283 +(105,187:6630773,12986001:25952256,485622,11795 +g105,187:9121143,12986001 +h105,187:9121143,12986001:983040,0,0 +h105,187:10104183,12986001:0,0,0 +g105,187:7613813,12986001 +(105,187:7613813,12986001:1507330,485622,11795 +k105,187:9121143,12986001:138283 ) -g109,187:10923383,12986001 -g109,187:12967450,12986001 -g109,187:12967450,12986001 -(109,187:13148687,12986001:501378,78643,0 -$109,187:13148687,12986001 -(109,187:13312541,12986001:173670,78643,0 +g105,187:10923383,12986001 +g105,187:12967450,12986001 +g105,187:12967450,12986001 +(105,187:13148687,12986001:501378,78643,0 +$105,187:13148687,12986001 +(105,187:13312541,12986001:173670,78643,0 ) -$109,187:13650065,12986001 +$105,187:13650065,12986001 ) -(109,187:13650065,12986001:501378,78643,0 -(109,187:13813919,12986001:173670,78643,0 +(105,187:13650065,12986001:501378,78643,0 +(105,187:13813919,12986001:173670,78643,0 ) ) -(109,187:14151443,12986001:501378,78643,0 -(109,187:14315297,12986001:173670,78643,0 +(105,187:14151443,12986001:501378,78643,0 +(105,187:14315297,12986001:173670,78643,0 ) ) -(109,187:14652821,12986001:501378,78643,0 -(109,187:14816675,12986001:173670,78643,0 +(105,187:14652821,12986001:501378,78643,0 +(105,187:14816675,12986001:173670,78643,0 ) ) -(109,187:15154199,12986001:501378,78643,0 -(109,187:15318053,12986001:173670,78643,0 +(105,187:15154199,12986001:501378,78643,0 +(105,187:15318053,12986001:173670,78643,0 ) ) -(109,187:15655577,12986001:501378,78643,0 -(109,187:15819431,12986001:173670,78643,0 +(105,187:15655577,12986001:501378,78643,0 +(105,187:15819431,12986001:173670,78643,0 ) ) -(109,187:16156955,12986001:501378,78643,0 -(109,187:16320809,12986001:173670,78643,0 +(105,187:16156955,12986001:501378,78643,0 +(105,187:16320809,12986001:173670,78643,0 ) ) -(109,187:16658333,12986001:501378,78643,0 -(109,187:16822187,12986001:173670,78643,0 +(105,187:16658333,12986001:501378,78643,0 +(105,187:16822187,12986001:173670,78643,0 ) ) -(109,187:17159711,12986001:501378,78643,0 -(109,187:17323565,12986001:173670,78643,0 +(105,187:17159711,12986001:501378,78643,0 +(105,187:17323565,12986001:173670,78643,0 ) ) -(109,187:17661089,12986001:501378,78643,0 -(109,187:17824943,12986001:173670,78643,0 +(105,187:17661089,12986001:501378,78643,0 +(105,187:17824943,12986001:173670,78643,0 ) ) -(109,187:18162467,12986001:501378,78643,0 -(109,187:18326321,12986001:173670,78643,0 +(105,187:18162467,12986001:501378,78643,0 +(105,187:18326321,12986001:173670,78643,0 ) ) -(109,187:18663845,12986001:501378,78643,0 -(109,187:18827699,12986001:173670,78643,0 +(105,187:18663845,12986001:501378,78643,0 +(105,187:18827699,12986001:173670,78643,0 ) ) -(109,187:19165223,12986001:501378,78643,0 -(109,187:19329077,12986001:173670,78643,0 +(105,187:19165223,12986001:501378,78643,0 +(105,187:19329077,12986001:173670,78643,0 ) ) -(109,187:19666601,12986001:501378,78643,0 -(109,187:19830455,12986001:173670,78643,0 +(105,187:19666601,12986001:501378,78643,0 +(105,187:19830455,12986001:173670,78643,0 ) ) -(109,187:20167979,12986001:501378,78643,0 -(109,187:20331833,12986001:173670,78643,0 +(105,187:20167979,12986001:501378,78643,0 +(105,187:20331833,12986001:173670,78643,0 ) ) -(109,187:20669357,12986001:501378,78643,0 -(109,187:20833211,12986001:173670,78643,0 +(105,187:20669357,12986001:501378,78643,0 +(105,187:20833211,12986001:173670,78643,0 ) ) -(109,187:21170735,12986001:501378,78643,0 -(109,187:21334589,12986001:173670,78643,0 +(105,187:21170735,12986001:501378,78643,0 +(105,187:21334589,12986001:173670,78643,0 ) ) -(109,187:21672113,12986001:501378,78643,0 -(109,187:21835967,12986001:173670,78643,0 +(105,187:21672113,12986001:501378,78643,0 +(105,187:21835967,12986001:173670,78643,0 ) ) -(109,187:22173491,12986001:501378,78643,0 -(109,187:22337345,12986001:173670,78643,0 +(105,187:22173491,12986001:501378,78643,0 +(105,187:22337345,12986001:173670,78643,0 ) ) -(109,187:22674869,12986001:501378,78643,0 -(109,187:22838723,12986001:173670,78643,0 +(105,187:22674869,12986001:501378,78643,0 +(105,187:22838723,12986001:173670,78643,0 ) ) -(109,187:23176247,12986001:501378,78643,0 -(109,187:23340101,12986001:173670,78643,0 +(105,187:23176247,12986001:501378,78643,0 +(105,187:23340101,12986001:173670,78643,0 ) ) -(109,187:23677625,12986001:501378,78643,0 -(109,187:23841479,12986001:173670,78643,0 +(105,187:23677625,12986001:501378,78643,0 +(105,187:23841479,12986001:173670,78643,0 ) ) -(109,187:24179003,12986001:501378,78643,0 -(109,187:24342857,12986001:173670,78643,0 +(105,187:24179003,12986001:501378,78643,0 +(105,187:24342857,12986001:173670,78643,0 ) ) -(109,187:24680381,12986001:501378,78643,0 -(109,187:24844235,12986001:173670,78643,0 +(105,187:24680381,12986001:501378,78643,0 +(105,187:24844235,12986001:173670,78643,0 ) ) -(109,187:25181759,12986001:501378,78643,0 -(109,187:25345613,12986001:173670,78643,0 +(105,187:25181759,12986001:501378,78643,0 +(105,187:25345613,12986001:173670,78643,0 ) ) -(109,187:25683137,12986001:501378,78643,0 -(109,187:25846991,12986001:173670,78643,0 +(105,187:25683137,12986001:501378,78643,0 +(105,187:25846991,12986001:173670,78643,0 ) ) -(109,187:26184515,12986001:501378,78643,0 -(109,187:26348369,12986001:173670,78643,0 +(105,187:26184515,12986001:501378,78643,0 +(105,187:26348369,12986001:173670,78643,0 ) ) -(109,187:26685893,12986001:501378,78643,0 -(109,187:26849747,12986001:173670,78643,0 +(105,187:26685893,12986001:501378,78643,0 +(105,187:26849747,12986001:173670,78643,0 ) ) -(109,187:27187271,12986001:501378,78643,0 -(109,187:27351125,12986001:173670,78643,0 +(105,187:27187271,12986001:501378,78643,0 +(105,187:27351125,12986001:173670,78643,0 ) ) -(109,187:27688649,12986001:501378,78643,0 -(109,187:27852503,12986001:173670,78643,0 +(105,187:27688649,12986001:501378,78643,0 +(105,187:27852503,12986001:173670,78643,0 ) ) -(109,187:28190027,12986001:501378,78643,0 -(109,187:28353881,12986001:173670,78643,0 +(105,187:28190027,12986001:501378,78643,0 +(105,187:28353881,12986001:173670,78643,0 ) ) -(109,187:28691405,12986001:501378,78643,0 -(109,187:28855259,12986001:173670,78643,0 +(105,187:28691405,12986001:501378,78643,0 +(105,187:28855259,12986001:173670,78643,0 ) ) -(109,187:29192783,12986001:501378,78643,0 -(109,187:29356637,12986001:173670,78643,0 +(105,187:29192783,12986001:501378,78643,0 +(105,187:29356637,12986001:173670,78643,0 ) ) -(109,187:29694161,12986001:501378,78643,0 -(109,187:29858015,12986001:173670,78643,0 +(105,187:29694161,12986001:501378,78643,0 +(105,187:29858015,12986001:173670,78643,0 ) ) -(109,187:30195539,12986001:501378,78643,0 -(109,187:30359393,12986001:173670,78643,0 +(105,187:30195539,12986001:501378,78643,0 +(105,187:30359393,12986001:173670,78643,0 ) ) -(109,187:30696917,12986001:501378,78643,0 -(109,187:30860771,12986001:173670,78643,0 +(105,187:30696917,12986001:501378,78643,0 +(105,187:30860771,12986001:173670,78643,0 ) ) -(109,187:31403378,12986001:1179650,485622,11795 -k109,187:31403378,12986001:0 -k109,187:31536198,12986001:132820 +(105,187:31239538,12986001:1343490,485622,11795 +k105,187:31239538,12986001:0 +k105,187:31387651,12986001:148113 ) -g109,187:30911858,12986001 -g109,187:32583028,12986001 +g105,187:30911858,12986001 +g105,187:32583028,12986001 ) -(109,189:6630773,13827489:25952256,505283,11795 -g109,189:9121143,13827489 -h109,189:9121143,13827489:983040,0,0 -h109,189:10104183,13827489:0,0,0 -g109,189:7613813,13827489 -(109,189:7613813,13827489:1507330,481690,0 -k109,189:9121143,13827489:138283 +(105,189:6630773,13827489:25952256,505283,11795 +g105,189:9121143,13827489 +h105,189:9121143,13827489:983040,0,0 +h105,189:10104183,13827489:0,0,0 +g105,189:7613813,13827489 +(105,189:7613813,13827489:1507330,481690,0 +k105,189:9121143,13827489:138283 ) -g109,189:13124737,13827489 -g109,189:16177404,13827489 -g109,189:16177404,13827489 -(109,189:16658333,13827489:501378,78643,0 -$109,189:16658333,13827489 -(109,189:16822187,13827489:173670,78643,0 +g105,189:13124737,13827489 +g105,189:16177404,13827489 +g105,189:16177404,13827489 +(105,189:16658333,13827489:501378,78643,0 +$105,189:16658333,13827489 +(105,189:16822187,13827489:173670,78643,0 ) -$109,189:17159711,13827489 +$105,189:17159711,13827489 ) -(109,189:17159711,13827489:501378,78643,0 -(109,189:17323565,13827489:173670,78643,0 +(105,189:17159711,13827489:501378,78643,0 +(105,189:17323565,13827489:173670,78643,0 ) ) -(109,189:17661089,13827489:501378,78643,0 -(109,189:17824943,13827489:173670,78643,0 +(105,189:17661089,13827489:501378,78643,0 +(105,189:17824943,13827489:173670,78643,0 ) ) -(109,189:18162467,13827489:501378,78643,0 -(109,189:18326321,13827489:173670,78643,0 +(105,189:18162467,13827489:501378,78643,0 +(105,189:18326321,13827489:173670,78643,0 ) ) -(109,189:18663845,13827489:501378,78643,0 -(109,189:18827699,13827489:173670,78643,0 +(105,189:18663845,13827489:501378,78643,0 +(105,189:18827699,13827489:173670,78643,0 ) ) -(109,189:19165223,13827489:501378,78643,0 -(109,189:19329077,13827489:173670,78643,0 +(105,189:19165223,13827489:501378,78643,0 +(105,189:19329077,13827489:173670,78643,0 ) ) -(109,189:19666601,13827489:501378,78643,0 -(109,189:19830455,13827489:173670,78643,0 +(105,189:19666601,13827489:501378,78643,0 +(105,189:19830455,13827489:173670,78643,0 ) ) -(109,189:20167979,13827489:501378,78643,0 -(109,189:20331833,13827489:173670,78643,0 +(105,189:20167979,13827489:501378,78643,0 +(105,189:20331833,13827489:173670,78643,0 ) ) -(109,189:20669357,13827489:501378,78643,0 -(109,189:20833211,13827489:173670,78643,0 +(105,189:20669357,13827489:501378,78643,0 +(105,189:20833211,13827489:173670,78643,0 ) ) -(109,189:21170735,13827489:501378,78643,0 -(109,189:21334589,13827489:173670,78643,0 +(105,189:21170735,13827489:501378,78643,0 +(105,189:21334589,13827489:173670,78643,0 ) ) -(109,189:21672113,13827489:501378,78643,0 -(109,189:21835967,13827489:173670,78643,0 +(105,189:21672113,13827489:501378,78643,0 +(105,189:21835967,13827489:173670,78643,0 ) ) -(109,189:22173491,13827489:501378,78643,0 -(109,189:22337345,13827489:173670,78643,0 +(105,189:22173491,13827489:501378,78643,0 +(105,189:22337345,13827489:173670,78643,0 ) ) -(109,189:22674869,13827489:501378,78643,0 -(109,189:22838723,13827489:173670,78643,0 +(105,189:22674869,13827489:501378,78643,0 +(105,189:22838723,13827489:173670,78643,0 ) ) -(109,189:23176247,13827489:501378,78643,0 -(109,189:23340101,13827489:173670,78643,0 +(105,189:23176247,13827489:501378,78643,0 +(105,189:23340101,13827489:173670,78643,0 ) ) -(109,189:23677625,13827489:501378,78643,0 -(109,189:23841479,13827489:173670,78643,0 +(105,189:23677625,13827489:501378,78643,0 +(105,189:23841479,13827489:173670,78643,0 ) ) -(109,189:24179003,13827489:501378,78643,0 -(109,189:24342857,13827489:173670,78643,0 +(105,189:24179003,13827489:501378,78643,0 +(105,189:24342857,13827489:173670,78643,0 ) ) -(109,189:24680381,13827489:501378,78643,0 -(109,189:24844235,13827489:173670,78643,0 +(105,189:24680381,13827489:501378,78643,0 +(105,189:24844235,13827489:173670,78643,0 ) ) -(109,189:25181759,13827489:501378,78643,0 -(109,189:25345613,13827489:173670,78643,0 +(105,189:25181759,13827489:501378,78643,0 +(105,189:25345613,13827489:173670,78643,0 ) ) -(109,189:25683137,13827489:501378,78643,0 -(109,189:25846991,13827489:173670,78643,0 +(105,189:25683137,13827489:501378,78643,0 +(105,189:25846991,13827489:173670,78643,0 ) ) -(109,189:26184515,13827489:501378,78643,0 -(109,189:26348369,13827489:173670,78643,0 +(105,189:26184515,13827489:501378,78643,0 +(105,189:26348369,13827489:173670,78643,0 ) ) -(109,189:26685893,13827489:501378,78643,0 -(109,189:26849747,13827489:173670,78643,0 +(105,189:26685893,13827489:501378,78643,0 +(105,189:26849747,13827489:173670,78643,0 ) ) -(109,189:27187271,13827489:501378,78643,0 -(109,189:27351125,13827489:173670,78643,0 +(105,189:27187271,13827489:501378,78643,0 +(105,189:27351125,13827489:173670,78643,0 ) ) -(109,189:27688649,13827489:501378,78643,0 -(109,189:27852503,13827489:173670,78643,0 +(105,189:27688649,13827489:501378,78643,0 +(105,189:27852503,13827489:173670,78643,0 ) ) -(109,189:28190027,13827489:501378,78643,0 -(109,189:28353881,13827489:173670,78643,0 +(105,189:28190027,13827489:501378,78643,0 +(105,189:28353881,13827489:173670,78643,0 ) ) -(109,189:28691405,13827489:501378,78643,0 -(109,189:28855259,13827489:173670,78643,0 +(105,189:28691405,13827489:501378,78643,0 +(105,189:28855259,13827489:173670,78643,0 ) ) -(109,189:29192783,13827489:501378,78643,0 -(109,189:29356637,13827489:173670,78643,0 +(105,189:29192783,13827489:501378,78643,0 +(105,189:29356637,13827489:173670,78643,0 ) ) -(109,189:29694161,13827489:501378,78643,0 -(109,189:29858015,13827489:173670,78643,0 +(105,189:29694161,13827489:501378,78643,0 +(105,189:29858015,13827489:173670,78643,0 ) ) -(109,189:30195539,13827489:501378,78643,0 -(109,189:30359393,13827489:173670,78643,0 +(105,189:30195539,13827489:501378,78643,0 +(105,189:30359393,13827489:173670,78643,0 ) ) -(109,189:30696917,13827489:501378,78643,0 -(109,189:30860771,13827489:173670,78643,0 +(105,189:30696917,13827489:501378,78643,0 +(105,189:30860771,13827489:173670,78643,0 ) ) -(109,189:31403379,13827489:1179650,477757,11795 -k109,189:31403379,13827489:0 -k109,189:31536199,13827489:132820 +(105,189:31239539,13827489:1343490,477757,11795 +k105,189:31239539,13827489:0 +k105,189:31387652,13827489:148113 ) -g109,189:30911859,13827489 -g109,189:32583029,13827489 +g105,189:30911859,13827489 +g105,189:32583029,13827489 ) -(109,191:6630773,14668977:25952256,513147,126483 -g109,191:11218293,14668977 -h109,191:11218293,14668977:2490370,0,0 -h109,191:13708663,14668977:0,0,0 -g109,191:9121143,14668977 -(109,191:9121143,14668977:2097150,481690,0 -k109,191:11218293,14668977:155974 +(105,191:6630773,14668977:25952256,513147,126483 +g105,191:11218293,14668977 +h105,191:11218293,14668977:2490370,0,0 +h105,191:13708663,14668977:0,0,0 +g105,191:9121143,14668977 +(105,191:9121143,14668977:2097150,481690,0 +k105,191:11218293,14668977:155974 ) -g109,191:15221887,14668977 -g109,191:17975709,14668977 -g109,191:18834230,14668977 -g109,191:21488438,14668977 -(109,191:21672113,14668977:501378,78643,0 -$109,191:21672113,14668977 -(109,191:21835967,14668977:173670,78643,0 +g105,191:15221887,14668977 +g105,191:17975709,14668977 +g105,191:18834230,14668977 +g105,191:21488438,14668977 +(105,191:21672113,14668977:501378,78643,0 +$105,191:21672113,14668977 +(105,191:21835967,14668977:173670,78643,0 ) -$109,191:22173491,14668977 +$105,191:22173491,14668977 ) -(109,191:22173491,14668977:501378,78643,0 -(109,191:22337345,14668977:173670,78643,0 +(105,191:22173491,14668977:501378,78643,0 +(105,191:22337345,14668977:173670,78643,0 ) ) -(109,191:22674869,14668977:501378,78643,0 -(109,191:22838723,14668977:173670,78643,0 +(105,191:22674869,14668977:501378,78643,0 +(105,191:22838723,14668977:173670,78643,0 ) ) -(109,191:23176247,14668977:501378,78643,0 -(109,191:23340101,14668977:173670,78643,0 +(105,191:23176247,14668977:501378,78643,0 +(105,191:23340101,14668977:173670,78643,0 ) ) -(109,191:23677625,14668977:501378,78643,0 -(109,191:23841479,14668977:173670,78643,0 +(105,191:23677625,14668977:501378,78643,0 +(105,191:23841479,14668977:173670,78643,0 ) ) -(109,191:24179003,14668977:501378,78643,0 -(109,191:24342857,14668977:173670,78643,0 +(105,191:24179003,14668977:501378,78643,0 +(105,191:24342857,14668977:173670,78643,0 ) ) -(109,191:24680381,14668977:501378,78643,0 -(109,191:24844235,14668977:173670,78643,0 +(105,191:24680381,14668977:501378,78643,0 +(105,191:24844235,14668977:173670,78643,0 ) ) -(109,191:25181759,14668977:501378,78643,0 -(109,191:25345613,14668977:173670,78643,0 +(105,191:25181759,14668977:501378,78643,0 +(105,191:25345613,14668977:173670,78643,0 ) ) -(109,191:25683137,14668977:501378,78643,0 -(109,191:25846991,14668977:173670,78643,0 +(105,191:25683137,14668977:501378,78643,0 +(105,191:25846991,14668977:173670,78643,0 ) ) -(109,191:26184515,14668977:501378,78643,0 -(109,191:26348369,14668977:173670,78643,0 +(105,191:26184515,14668977:501378,78643,0 +(105,191:26348369,14668977:173670,78643,0 ) ) -(109,191:26685893,14668977:501378,78643,0 -(109,191:26849747,14668977:173670,78643,0 +(105,191:26685893,14668977:501378,78643,0 +(105,191:26849747,14668977:173670,78643,0 ) ) -(109,191:27187271,14668977:501378,78643,0 -(109,191:27351125,14668977:173670,78643,0 +(105,191:27187271,14668977:501378,78643,0 +(105,191:27351125,14668977:173670,78643,0 ) ) -(109,191:27688649,14668977:501378,78643,0 -(109,191:27852503,14668977:173670,78643,0 +(105,191:27688649,14668977:501378,78643,0 +(105,191:27852503,14668977:173670,78643,0 ) ) -(109,191:28190027,14668977:501378,78643,0 -(109,191:28353881,14668977:173670,78643,0 +(105,191:28190027,14668977:501378,78643,0 +(105,191:28353881,14668977:173670,78643,0 ) ) -(109,191:28691405,14668977:501378,78643,0 -(109,191:28855259,14668977:173670,78643,0 +(105,191:28691405,14668977:501378,78643,0 +(105,191:28855259,14668977:173670,78643,0 ) ) -(109,191:29192783,14668977:501378,78643,0 -(109,191:29356637,14668977:173670,78643,0 +(105,191:29192783,14668977:501378,78643,0 +(105,191:29356637,14668977:173670,78643,0 ) ) -(109,191:29694161,14668977:501378,78643,0 -(109,191:29858015,14668977:173670,78643,0 +(105,191:29694161,14668977:501378,78643,0 +(105,191:29858015,14668977:173670,78643,0 ) ) -(109,191:30195539,14668977:501378,78643,0 -(109,191:30359393,14668977:173670,78643,0 +(105,191:30195539,14668977:501378,78643,0 +(105,191:30359393,14668977:173670,78643,0 ) ) -(109,191:30696917,14668977:501378,78643,0 -(109,191:30860771,14668977:173670,78643,0 +(105,191:30696917,14668977:501378,78643,0 +(105,191:30860771,14668977:173670,78643,0 ) ) -(109,191:31403379,14668977:1179650,477757,11795 -k109,191:31403379,14668977:0 -k109,191:31536199,14668977:132820 +(105,191:31239539,14668977:1343490,477757,11795 +k105,191:31239539,14668977:0 +k105,191:31387652,14668977:148113 ) -g109,191:30911859,14668977 -g109,191:32583029,14668977 +g105,191:30911859,14668977 +g105,191:32583029,14668977 ) -(109,193:6630773,15510465:25952256,505283,126483 -g109,193:11218293,15510465 -h109,193:11218293,15510465:2490370,0,0 -h109,193:13708663,15510465:0,0,0 -g109,193:9121143,15510465 -(109,193:9121143,15510465:2097150,485622,0 -k109,193:11218293,15510465:155974 +(105,193:6630773,15510465:25952256,505283,126483 +g105,193:11218293,15510465 +h105,193:11218293,15510465:2490370,0,0 +h105,193:13708663,15510465:0,0,0 +g105,193:9121143,15510465 +(105,193:9121143,15510465:2097150,485622,0 +k105,193:11218293,15510465:155974 ) -g109,193:14213943,15510465 -g109,193:18340745,15510465 -g109,193:20895338,15510465 -(109,193:21170735,15510465:501378,78643,0 -$109,193:21170735,15510465 -(109,193:21334589,15510465:173670,78643,0 +g105,193:14213943,15510465 +g105,193:18340745,15510465 +g105,193:20895338,15510465 +(105,193:21170735,15510465:501378,78643,0 +$105,193:21170735,15510465 +(105,193:21334589,15510465:173670,78643,0 ) -$109,193:21672113,15510465 +$105,193:21672113,15510465 ) -(109,193:21672113,15510465:501378,78643,0 -(109,193:21835967,15510465:173670,78643,0 +(105,193:21672113,15510465:501378,78643,0 +(105,193:21835967,15510465:173670,78643,0 ) ) -(109,193:22173491,15510465:501378,78643,0 -(109,193:22337345,15510465:173670,78643,0 +(105,193:22173491,15510465:501378,78643,0 +(105,193:22337345,15510465:173670,78643,0 ) ) -(109,193:22674869,15510465:501378,78643,0 -(109,193:22838723,15510465:173670,78643,0 +(105,193:22674869,15510465:501378,78643,0 +(105,193:22838723,15510465:173670,78643,0 ) ) -(109,193:23176247,15510465:501378,78643,0 -(109,193:23340101,15510465:173670,78643,0 +(105,193:23176247,15510465:501378,78643,0 +(105,193:23340101,15510465:173670,78643,0 ) ) -(109,193:23677625,15510465:501378,78643,0 -(109,193:23841479,15510465:173670,78643,0 +(105,193:23677625,15510465:501378,78643,0 +(105,193:23841479,15510465:173670,78643,0 ) ) -(109,193:24179003,15510465:501378,78643,0 -(109,193:24342857,15510465:173670,78643,0 +(105,193:24179003,15510465:501378,78643,0 +(105,193:24342857,15510465:173670,78643,0 ) ) -(109,193:24680381,15510465:501378,78643,0 -(109,193:24844235,15510465:173670,78643,0 +(105,193:24680381,15510465:501378,78643,0 +(105,193:24844235,15510465:173670,78643,0 ) ) -(109,193:25181759,15510465:501378,78643,0 -(109,193:25345613,15510465:173670,78643,0 +(105,193:25181759,15510465:501378,78643,0 +(105,193:25345613,15510465:173670,78643,0 ) ) -(109,193:25683137,15510465:501378,78643,0 -(109,193:25846991,15510465:173670,78643,0 +(105,193:25683137,15510465:501378,78643,0 +(105,193:25846991,15510465:173670,78643,0 ) ) -(109,193:26184515,15510465:501378,78643,0 -(109,193:26348369,15510465:173670,78643,0 +(105,193:26184515,15510465:501378,78643,0 +(105,193:26348369,15510465:173670,78643,0 ) ) -(109,193:26685893,15510465:501378,78643,0 -(109,193:26849747,15510465:173670,78643,0 +(105,193:26685893,15510465:501378,78643,0 +(105,193:26849747,15510465:173670,78643,0 ) ) -(109,193:27187271,15510465:501378,78643,0 -(109,193:27351125,15510465:173670,78643,0 +(105,193:27187271,15510465:501378,78643,0 +(105,193:27351125,15510465:173670,78643,0 ) ) -(109,193:27688649,15510465:501378,78643,0 -(109,193:27852503,15510465:173670,78643,0 +(105,193:27688649,15510465:501378,78643,0 +(105,193:27852503,15510465:173670,78643,0 ) ) -(109,193:28190027,15510465:501378,78643,0 -(109,193:28353881,15510465:173670,78643,0 +(105,193:28190027,15510465:501378,78643,0 +(105,193:28353881,15510465:173670,78643,0 ) ) -(109,193:28691405,15510465:501378,78643,0 -(109,193:28855259,15510465:173670,78643,0 +(105,193:28691405,15510465:501378,78643,0 +(105,193:28855259,15510465:173670,78643,0 ) ) -(109,193:29192783,15510465:501378,78643,0 -(109,193:29356637,15510465:173670,78643,0 +(105,193:29192783,15510465:501378,78643,0 +(105,193:29356637,15510465:173670,78643,0 ) ) -(109,193:29694161,15510465:501378,78643,0 -(109,193:29858015,15510465:173670,78643,0 +(105,193:29694161,15510465:501378,78643,0 +(105,193:29858015,15510465:173670,78643,0 ) ) -(109,193:30195539,15510465:501378,78643,0 -(109,193:30359393,15510465:173670,78643,0 +(105,193:30195539,15510465:501378,78643,0 +(105,193:30359393,15510465:173670,78643,0 ) ) -(109,193:30696917,15510465:501378,78643,0 -(109,193:30860771,15510465:173670,78643,0 +(105,193:30696917,15510465:501378,78643,0 +(105,193:30860771,15510465:173670,78643,0 ) ) -(109,193:31403379,15510465:1179650,485622,11795 -k109,193:31403379,15510465:0 -k109,193:31536199,15510465:132820 +(105,193:31239539,15510465:1343490,485622,11795 +k105,193:31239539,15510465:0 +k105,193:31387652,15510465:148113 ) -g109,193:30911859,15510465 -g109,193:32583029,15510465 +g105,193:30911859,15510465 +g105,193:32583029,15510465 ) -(109,195:6630773,16351953:25952256,505283,134348 -g109,195:11218293,16351953 -h109,195:11218293,16351953:2490370,0,0 -h109,195:13708663,16351953:0,0,0 -g109,195:9121143,16351953 -(109,195:9121143,16351953:2097150,485622,11795 -k109,195:11218293,16351953:155974 +(105,195:6630773,16351953:25952256,505283,134348 +g105,195:11218293,16351953 +h105,195:11218293,16351953:2490370,0,0 +h105,195:13708663,16351953:0,0,0 +g105,195:9121143,16351953 +(105,195:9121143,16351953:2097150,485622,11795 +k105,195:11218293,16351953:155974 ) -g109,195:16965145,16351953 -g109,195:19180262,16351953 -(109,195:19666601,16351953:501378,78643,0 -$109,195:19666601,16351953 -(109,195:19830455,16351953:173670,78643,0 +g105,195:16965145,16351953 +g105,195:19180262,16351953 +(105,195:19666601,16351953:501378,78643,0 +$105,195:19666601,16351953 +(105,195:19830455,16351953:173670,78643,0 ) -$109,195:20167979,16351953 +$105,195:20167979,16351953 ) -(109,195:20167979,16351953:501378,78643,0 -(109,195:20331833,16351953:173670,78643,0 +(105,195:20167979,16351953:501378,78643,0 +(105,195:20331833,16351953:173670,78643,0 ) ) -(109,195:20669357,16351953:501378,78643,0 -(109,195:20833211,16351953:173670,78643,0 +(105,195:20669357,16351953:501378,78643,0 +(105,195:20833211,16351953:173670,78643,0 ) ) -(109,195:21170735,16351953:501378,78643,0 -(109,195:21334589,16351953:173670,78643,0 +(105,195:21170735,16351953:501378,78643,0 +(105,195:21334589,16351953:173670,78643,0 ) ) -(109,195:21672113,16351953:501378,78643,0 -(109,195:21835967,16351953:173670,78643,0 +(105,195:21672113,16351953:501378,78643,0 +(105,195:21835967,16351953:173670,78643,0 ) ) -(109,195:22173491,16351953:501378,78643,0 -(109,195:22337345,16351953:173670,78643,0 +(105,195:22173491,16351953:501378,78643,0 +(105,195:22337345,16351953:173670,78643,0 ) ) -(109,195:22674869,16351953:501378,78643,0 -(109,195:22838723,16351953:173670,78643,0 +(105,195:22674869,16351953:501378,78643,0 +(105,195:22838723,16351953:173670,78643,0 ) ) -(109,195:23176247,16351953:501378,78643,0 -(109,195:23340101,16351953:173670,78643,0 +(105,195:23176247,16351953:501378,78643,0 +(105,195:23340101,16351953:173670,78643,0 ) ) -(109,195:23677625,16351953:501378,78643,0 -(109,195:23841479,16351953:173670,78643,0 +(105,195:23677625,16351953:501378,78643,0 +(105,195:23841479,16351953:173670,78643,0 ) ) -(109,195:24179003,16351953:501378,78643,0 -(109,195:24342857,16351953:173670,78643,0 +(105,195:24179003,16351953:501378,78643,0 +(105,195:24342857,16351953:173670,78643,0 ) ) -(109,195:24680381,16351953:501378,78643,0 -(109,195:24844235,16351953:173670,78643,0 +(105,195:24680381,16351953:501378,78643,0 +(105,195:24844235,16351953:173670,78643,0 ) ) -(109,195:25181759,16351953:501378,78643,0 -(109,195:25345613,16351953:173670,78643,0 +(105,195:25181759,16351953:501378,78643,0 +(105,195:25345613,16351953:173670,78643,0 ) ) -(109,195:25683137,16351953:501378,78643,0 -(109,195:25846991,16351953:173670,78643,0 +(105,195:25683137,16351953:501378,78643,0 +(105,195:25846991,16351953:173670,78643,0 ) ) -(109,195:26184515,16351953:501378,78643,0 -(109,195:26348369,16351953:173670,78643,0 +(105,195:26184515,16351953:501378,78643,0 +(105,195:26348369,16351953:173670,78643,0 ) ) -(109,195:26685893,16351953:501378,78643,0 -(109,195:26849747,16351953:173670,78643,0 +(105,195:26685893,16351953:501378,78643,0 +(105,195:26849747,16351953:173670,78643,0 ) ) -(109,195:27187271,16351953:501378,78643,0 -(109,195:27351125,16351953:173670,78643,0 +(105,195:27187271,16351953:501378,78643,0 +(105,195:27351125,16351953:173670,78643,0 ) ) -(109,195:27688649,16351953:501378,78643,0 -(109,195:27852503,16351953:173670,78643,0 +(105,195:27688649,16351953:501378,78643,0 +(105,195:27852503,16351953:173670,78643,0 ) ) -(109,195:28190027,16351953:501378,78643,0 -(109,195:28353881,16351953:173670,78643,0 +(105,195:28190027,16351953:501378,78643,0 +(105,195:28353881,16351953:173670,78643,0 ) ) -(109,195:28691405,16351953:501378,78643,0 -(109,195:28855259,16351953:173670,78643,0 +(105,195:28691405,16351953:501378,78643,0 +(105,195:28855259,16351953:173670,78643,0 ) ) -(109,195:29192783,16351953:501378,78643,0 -(109,195:29356637,16351953:173670,78643,0 +(105,195:29192783,16351953:501378,78643,0 +(105,195:29356637,16351953:173670,78643,0 ) ) -(109,195:29694161,16351953:501378,78643,0 -(109,195:29858015,16351953:173670,78643,0 +(105,195:29694161,16351953:501378,78643,0 +(105,195:29858015,16351953:173670,78643,0 ) ) -(109,195:30195539,16351953:501378,78643,0 -(109,195:30359393,16351953:173670,78643,0 +(105,195:30195539,16351953:501378,78643,0 +(105,195:30359393,16351953:173670,78643,0 ) ) -(109,195:30696917,16351953:501378,78643,0 -(109,195:30860771,16351953:173670,78643,0 +(105,195:30696917,16351953:501378,78643,0 +(105,195:30860771,16351953:173670,78643,0 ) ) -(109,195:31403379,16351953:1179650,477757,11795 -k109,195:31403379,16351953:0 -k109,195:31536199,16351953:132820 +(105,195:31239539,16351953:1343490,477757,11795 +k105,195:31239539,16351953:0 +k105,195:31387652,16351953:148113 ) -g109,195:30911859,16351953 -g109,195:32583029,16351953 +g105,195:30911859,16351953 +g105,195:32583029,16351953 ) -(109,197:6630773,17193441:25952256,505283,126483 -g109,197:11218293,17193441 -h109,197:11218293,17193441:2490370,0,0 -h109,197:13708663,17193441:0,0,0 -g109,197:9121143,17193441 -(109,197:9121143,17193441:2097150,481690,0 -k109,197:11218293,17193441:155974 +(105,197:6630773,17193441:25952256,505283,126483 +g105,197:11218293,17193441 +h105,197:11218293,17193441:2490370,0,0 +h105,197:13708663,17193441:0,0,0 +g105,197:9121143,17193441 +(105,197:9121143,17193441:2097150,481690,0 +k105,197:11218293,17193441:155974 ) -g109,197:13715870,17193441 -g109,197:16270463,17193441 -(109,197:16658333,17193441:501378,78643,0 -$109,197:16658333,17193441 -(109,197:16822187,17193441:173670,78643,0 +g105,197:13715870,17193441 +g105,197:16270463,17193441 +(105,197:16658333,17193441:501378,78643,0 +$105,197:16658333,17193441 +(105,197:16822187,17193441:173670,78643,0 ) -$109,197:17159711,17193441 +$105,197:17159711,17193441 ) -(109,197:17159711,17193441:501378,78643,0 -(109,197:17323565,17193441:173670,78643,0 +(105,197:17159711,17193441:501378,78643,0 +(105,197:17323565,17193441:173670,78643,0 ) ) -(109,197:17661089,17193441:501378,78643,0 -(109,197:17824943,17193441:173670,78643,0 +(105,197:17661089,17193441:501378,78643,0 +(105,197:17824943,17193441:173670,78643,0 ) ) -(109,197:18162467,17193441:501378,78643,0 -(109,197:18326321,17193441:173670,78643,0 +(105,197:18162467,17193441:501378,78643,0 +(105,197:18326321,17193441:173670,78643,0 ) ) -(109,197:18663845,17193441:501378,78643,0 -(109,197:18827699,17193441:173670,78643,0 +(105,197:18663845,17193441:501378,78643,0 +(105,197:18827699,17193441:173670,78643,0 ) ) -(109,197:19165223,17193441:501378,78643,0 -(109,197:19329077,17193441:173670,78643,0 +(105,197:19165223,17193441:501378,78643,0 +(105,197:19329077,17193441:173670,78643,0 ) ) -(109,197:19666601,17193441:501378,78643,0 -(109,197:19830455,17193441:173670,78643,0 +(105,197:19666601,17193441:501378,78643,0 +(105,197:19830455,17193441:173670,78643,0 ) ) -(109,197:20167979,17193441:501378,78643,0 -(109,197:20331833,17193441:173670,78643,0 +(105,197:20167979,17193441:501378,78643,0 +(105,197:20331833,17193441:173670,78643,0 ) ) -(109,197:20669357,17193441:501378,78643,0 -(109,197:20833211,17193441:173670,78643,0 +(105,197:20669357,17193441:501378,78643,0 +(105,197:20833211,17193441:173670,78643,0 ) ) -(109,197:21170735,17193441:501378,78643,0 -(109,197:21334589,17193441:173670,78643,0 +(105,197:21170735,17193441:501378,78643,0 +(105,197:21334589,17193441:173670,78643,0 ) ) -(109,197:21672113,17193441:501378,78643,0 -(109,197:21835967,17193441:173670,78643,0 +(105,197:21672113,17193441:501378,78643,0 +(105,197:21835967,17193441:173670,78643,0 ) ) -(109,197:22173491,17193441:501378,78643,0 -(109,197:22337345,17193441:173670,78643,0 +(105,197:22173491,17193441:501378,78643,0 +(105,197:22337345,17193441:173670,78643,0 ) ) -(109,197:22674869,17193441:501378,78643,0 -(109,197:22838723,17193441:173670,78643,0 +(105,197:22674869,17193441:501378,78643,0 +(105,197:22838723,17193441:173670,78643,0 ) ) -(109,197:23176247,17193441:501378,78643,0 -(109,197:23340101,17193441:173670,78643,0 +(105,197:23176247,17193441:501378,78643,0 +(105,197:23340101,17193441:173670,78643,0 ) ) -(109,197:23677625,17193441:501378,78643,0 -(109,197:23841479,17193441:173670,78643,0 +(105,197:23677625,17193441:501378,78643,0 +(105,197:23841479,17193441:173670,78643,0 ) ) -(109,197:24179003,17193441:501378,78643,0 -(109,197:24342857,17193441:173670,78643,0 +(105,197:24179003,17193441:501378,78643,0 +(105,197:24342857,17193441:173670,78643,0 ) ) -(109,197:24680381,17193441:501378,78643,0 -(109,197:24844235,17193441:173670,78643,0 +(105,197:24680381,17193441:501378,78643,0 +(105,197:24844235,17193441:173670,78643,0 ) ) -(109,197:25181759,17193441:501378,78643,0 -(109,197:25345613,17193441:173670,78643,0 +(105,197:25181759,17193441:501378,78643,0 +(105,197:25345613,17193441:173670,78643,0 ) ) -(109,197:25683137,17193441:501378,78643,0 -(109,197:25846991,17193441:173670,78643,0 +(105,197:25683137,17193441:501378,78643,0 +(105,197:25846991,17193441:173670,78643,0 ) ) -(109,197:26184515,17193441:501378,78643,0 -(109,197:26348369,17193441:173670,78643,0 +(105,197:26184515,17193441:501378,78643,0 +(105,197:26348369,17193441:173670,78643,0 ) ) -(109,197:26685893,17193441:501378,78643,0 -(109,197:26849747,17193441:173670,78643,0 +(105,197:26685893,17193441:501378,78643,0 +(105,197:26849747,17193441:173670,78643,0 ) ) -(109,197:27187271,17193441:501378,78643,0 -(109,197:27351125,17193441:173670,78643,0 +(105,197:27187271,17193441:501378,78643,0 +(105,197:27351125,17193441:173670,78643,0 ) ) -(109,197:27688649,17193441:501378,78643,0 -(109,197:27852503,17193441:173670,78643,0 +(105,197:27688649,17193441:501378,78643,0 +(105,197:27852503,17193441:173670,78643,0 ) ) -(109,197:28190027,17193441:501378,78643,0 -(109,197:28353881,17193441:173670,78643,0 +(105,197:28190027,17193441:501378,78643,0 +(105,197:28353881,17193441:173670,78643,0 ) ) -(109,197:28691405,17193441:501378,78643,0 -(109,197:28855259,17193441:173670,78643,0 +(105,197:28691405,17193441:501378,78643,0 +(105,197:28855259,17193441:173670,78643,0 ) ) -(109,197:29192783,17193441:501378,78643,0 -(109,197:29356637,17193441:173670,78643,0 +(105,197:29192783,17193441:501378,78643,0 +(105,197:29356637,17193441:173670,78643,0 ) ) -(109,197:29694161,17193441:501378,78643,0 -(109,197:29858015,17193441:173670,78643,0 +(105,197:29694161,17193441:501378,78643,0 +(105,197:29858015,17193441:173670,78643,0 ) ) -(109,197:30195539,17193441:501378,78643,0 -(109,197:30359393,17193441:173670,78643,0 +(105,197:30195539,17193441:501378,78643,0 +(105,197:30359393,17193441:173670,78643,0 ) ) -(109,197:30696917,17193441:501378,78643,0 -(109,197:30860771,17193441:173670,78643,0 +(105,197:30696917,17193441:501378,78643,0 +(105,197:30860771,17193441:173670,78643,0 ) ) -(109,197:31403379,17193441:1179650,477757,11795 -k109,197:31403379,17193441:0 -k109,197:31536199,17193441:132820 +(105,197:31239539,17193441:1343490,477757,11795 +k105,197:31239539,17193441:0 +k105,197:31387652,17193441:148113 ) -g109,197:30911859,17193441 -g109,197:32583029,17193441 +g105,197:30911859,17193441 +g105,197:32583029,17193441 ) -(109,199:6630773,18034929:25952256,505283,134348 -g109,199:9121143,18034929 -h109,199:9121143,18034929:983040,0,0 -h109,199:10104183,18034929:0,0,0 -g109,199:7613813,18034929 -(109,199:7613813,18034929:1507330,485622,0 -k109,199:9121143,18034929:138283 +(105,199:6630773,18034929:25952256,505283,134348 +g105,199:9121143,18034929 +h105,199:9121143,18034929:983040,0,0 +h105,199:10104183,18034929:0,0,0 +g105,199:7613813,18034929 +(105,199:7613813,18034929:1507330,485622,0 +k105,199:9121143,18034929:138283 ) -g109,199:11690154,18034929 -g109,199:14291933,18034929 -g109,199:14291933,18034929 -(109,199:14652821,18034929:501378,78643,0 -$109,199:14652821,18034929 -(109,199:14816675,18034929:173670,78643,0 +g105,199:11690154,18034929 +g105,199:14291933,18034929 +g105,199:14291933,18034929 +(105,199:14652821,18034929:501378,78643,0 +$105,199:14652821,18034929 +(105,199:14816675,18034929:173670,78643,0 ) -$109,199:15154199,18034929 +$105,199:15154199,18034929 ) -(109,199:15154199,18034929:501378,78643,0 -(109,199:15318053,18034929:173670,78643,0 +(105,199:15154199,18034929:501378,78643,0 +(105,199:15318053,18034929:173670,78643,0 ) ) -(109,199:15655577,18034929:501378,78643,0 -(109,199:15819431,18034929:173670,78643,0 +(105,199:15655577,18034929:501378,78643,0 +(105,199:15819431,18034929:173670,78643,0 ) ) -(109,199:16156955,18034929:501378,78643,0 -(109,199:16320809,18034929:173670,78643,0 +(105,199:16156955,18034929:501378,78643,0 +(105,199:16320809,18034929:173670,78643,0 ) ) -(109,199:16658333,18034929:501378,78643,0 -(109,199:16822187,18034929:173670,78643,0 +(105,199:16658333,18034929:501378,78643,0 +(105,199:16822187,18034929:173670,78643,0 ) ) -(109,199:17159711,18034929:501378,78643,0 -(109,199:17323565,18034929:173670,78643,0 +(105,199:17159711,18034929:501378,78643,0 +(105,199:17323565,18034929:173670,78643,0 ) ) -(109,199:17661089,18034929:501378,78643,0 -(109,199:17824943,18034929:173670,78643,0 +(105,199:17661089,18034929:501378,78643,0 +(105,199:17824943,18034929:173670,78643,0 ) ) -(109,199:18162467,18034929:501378,78643,0 -(109,199:18326321,18034929:173670,78643,0 +(105,199:18162467,18034929:501378,78643,0 +(105,199:18326321,18034929:173670,78643,0 ) ) -(109,199:18663845,18034929:501378,78643,0 -(109,199:18827699,18034929:173670,78643,0 +(105,199:18663845,18034929:501378,78643,0 +(105,199:18827699,18034929:173670,78643,0 ) ) -(109,199:19165223,18034929:501378,78643,0 -(109,199:19329077,18034929:173670,78643,0 +(105,199:19165223,18034929:501378,78643,0 +(105,199:19329077,18034929:173670,78643,0 ) ) -(109,199:19666601,18034929:501378,78643,0 -(109,199:19830455,18034929:173670,78643,0 +(105,199:19666601,18034929:501378,78643,0 +(105,199:19830455,18034929:173670,78643,0 ) ) -(109,199:20167979,18034929:501378,78643,0 -(109,199:20331833,18034929:173670,78643,0 +(105,199:20167979,18034929:501378,78643,0 +(105,199:20331833,18034929:173670,78643,0 ) ) -(109,199:20669357,18034929:501378,78643,0 -(109,199:20833211,18034929:173670,78643,0 +(105,199:20669357,18034929:501378,78643,0 +(105,199:20833211,18034929:173670,78643,0 ) ) -(109,199:21170735,18034929:501378,78643,0 -(109,199:21334589,18034929:173670,78643,0 +(105,199:21170735,18034929:501378,78643,0 +(105,199:21334589,18034929:173670,78643,0 ) ) -(109,199:21672113,18034929:501378,78643,0 -(109,199:21835967,18034929:173670,78643,0 +(105,199:21672113,18034929:501378,78643,0 +(105,199:21835967,18034929:173670,78643,0 ) ) -(109,199:22173491,18034929:501378,78643,0 -(109,199:22337345,18034929:173670,78643,0 +(105,199:22173491,18034929:501378,78643,0 +(105,199:22337345,18034929:173670,78643,0 ) ) -(109,199:22674869,18034929:501378,78643,0 -(109,199:22838723,18034929:173670,78643,0 +(105,199:22674869,18034929:501378,78643,0 +(105,199:22838723,18034929:173670,78643,0 ) ) -(109,199:23176247,18034929:501378,78643,0 -(109,199:23340101,18034929:173670,78643,0 +(105,199:23176247,18034929:501378,78643,0 +(105,199:23340101,18034929:173670,78643,0 ) ) -(109,199:23677625,18034929:501378,78643,0 -(109,199:23841479,18034929:173670,78643,0 +(105,199:23677625,18034929:501378,78643,0 +(105,199:23841479,18034929:173670,78643,0 ) ) -(109,199:24179003,18034929:501378,78643,0 -(109,199:24342857,18034929:173670,78643,0 +(105,199:24179003,18034929:501378,78643,0 +(105,199:24342857,18034929:173670,78643,0 ) ) -(109,199:24680381,18034929:501378,78643,0 -(109,199:24844235,18034929:173670,78643,0 +(105,199:24680381,18034929:501378,78643,0 +(105,199:24844235,18034929:173670,78643,0 ) ) -(109,199:25181759,18034929:501378,78643,0 -(109,199:25345613,18034929:173670,78643,0 +(105,199:25181759,18034929:501378,78643,0 +(105,199:25345613,18034929:173670,78643,0 ) ) -(109,199:25683137,18034929:501378,78643,0 -(109,199:25846991,18034929:173670,78643,0 +(105,199:25683137,18034929:501378,78643,0 +(105,199:25846991,18034929:173670,78643,0 ) ) -(109,199:26184515,18034929:501378,78643,0 -(109,199:26348369,18034929:173670,78643,0 +(105,199:26184515,18034929:501378,78643,0 +(105,199:26348369,18034929:173670,78643,0 ) ) -(109,199:26685893,18034929:501378,78643,0 -(109,199:26849747,18034929:173670,78643,0 +(105,199:26685893,18034929:501378,78643,0 +(105,199:26849747,18034929:173670,78643,0 ) ) -(109,199:27187271,18034929:501378,78643,0 -(109,199:27351125,18034929:173670,78643,0 +(105,199:27187271,18034929:501378,78643,0 +(105,199:27351125,18034929:173670,78643,0 ) ) -(109,199:27688649,18034929:501378,78643,0 -(109,199:27852503,18034929:173670,78643,0 +(105,199:27688649,18034929:501378,78643,0 +(105,199:27852503,18034929:173670,78643,0 ) ) -(109,199:28190027,18034929:501378,78643,0 -(109,199:28353881,18034929:173670,78643,0 +(105,199:28190027,18034929:501378,78643,0 +(105,199:28353881,18034929:173670,78643,0 ) ) -(109,199:28691405,18034929:501378,78643,0 -(109,199:28855259,18034929:173670,78643,0 +(105,199:28691405,18034929:501378,78643,0 +(105,199:28855259,18034929:173670,78643,0 ) ) -(109,199:29192783,18034929:501378,78643,0 -(109,199:29356637,18034929:173670,78643,0 +(105,199:29192783,18034929:501378,78643,0 +(105,199:29356637,18034929:173670,78643,0 ) ) -(109,199:29694161,18034929:501378,78643,0 -(109,199:29858015,18034929:173670,78643,0 +(105,199:29694161,18034929:501378,78643,0 +(105,199:29858015,18034929:173670,78643,0 ) ) -(109,199:30195539,18034929:501378,78643,0 -(109,199:30359393,18034929:173670,78643,0 +(105,199:30195539,18034929:501378,78643,0 +(105,199:30359393,18034929:173670,78643,0 ) ) -(109,199:30696917,18034929:501378,78643,0 -(109,199:30860771,18034929:173670,78643,0 +(105,199:30696917,18034929:501378,78643,0 +(105,199:30860771,18034929:173670,78643,0 ) ) -(109,199:31403379,18034929:1179650,485622,11795 -k109,199:31403379,18034929:0 -k109,199:31536199,18034929:132820 +(105,199:31239539,18034929:1343490,485622,11795 +k105,199:31239539,18034929:0 +k105,199:31387652,18034929:148113 ) -g109,199:30911859,18034929 -g109,199:32583029,18034929 +g105,199:30911859,18034929 +g105,199:32583029,18034929 ) -(109,201:6630773,19531777:25952256,505283,134348 -g109,201:7613813,19531777 -h109,201:7613813,19531777:0,0,0 -g109,201:6630773,19531777 -(109,201:6630773,19531777:983040,473825,11795 -k109,201:7613813,19531777:574751 +(105,201:6630773,19531777:25952256,505283,134348 +g105,201:7613813,19531777 +h105,201:7613813,19531777:0,0,0 +g105,201:6630773,19531777 +(105,201:6630773,19531777:983040,473825,11795 +k105,201:7613813,19531777:574751 ) -g109,201:9083130,19531777 -g109,201:9759461,19531777 -g109,201:13090000,19531777 -g109,201:15547600,19531777 -g109,201:17125707,19531777 -k109,201:25599839,19531777:5803540 -k109,201:31403379,19531777:5803540 -(109,201:31403379,19531777:1179650,485622,11795 -k109,201:31358161,19531777:-45218 +g105,201:9083130,19531777 +g105,201:9759461,19531777 +g105,201:13090000,19531777 +g105,201:15704231,19531777 +g105,201:17282338,19531777 +k105,201:25596235,19531777:5643305 +k105,201:31239539,19531777:5643304 +(105,201:31239539,19531777:1343490,485622,11795 +k105,201:31358161,19531777:118622 ) -g109,201:31403379,19531777 -g109,201:32583029,19531777 +g105,201:31239539,19531777 +g105,201:32583029,19531777 ) -(109,203:6630773,20373265:25952256,513147,126483 -g109,203:9121143,20373265 -h109,203:9121143,20373265:983040,0,0 -h109,203:10104183,20373265:0,0,0 -g109,203:7613813,20373265 -(109,203:7613813,20373265:1507330,477757,11795 -k109,203:9121143,20373265:536742 +(105,203:6630773,20373265:25952256,513147,126483 +g105,203:9121143,20373265 +h105,203:9121143,20373265:983040,0,0 +h105,203:10104183,20373265:0,0,0 +g105,203:7613813,20373265 +(105,203:7613813,20373265:1507330,477757,11795 +k105,203:9121143,20373265:536742 ) -g109,203:10959427,20373265 -g109,203:11817948,20373265 -g109,203:13220418,20373265 -g109,203:15837270,20373265 -g109,203:15837270,20373265 -(109,203:16156955,20373265:501378,78643,0 -$109,203:16156955,20373265 -(109,203:16320809,20373265:173670,78643,0 +g105,203:10959427,20373265 +g105,203:11817948,20373265 +g105,203:13220418,20373265 +g105,203:15837270,20373265 +g105,203:15837270,20373265 +(105,203:16156955,20373265:501378,78643,0 +$105,203:16156955,20373265 +(105,203:16320809,20373265:173670,78643,0 ) -$109,203:16658333,20373265 +$105,203:16658333,20373265 ) -(109,203:16658333,20373265:501378,78643,0 -(109,203:16822187,20373265:173670,78643,0 +(105,203:16658333,20373265:501378,78643,0 +(105,203:16822187,20373265:173670,78643,0 ) ) -(109,203:17159711,20373265:501378,78643,0 -(109,203:17323565,20373265:173670,78643,0 +(105,203:17159711,20373265:501378,78643,0 +(105,203:17323565,20373265:173670,78643,0 ) ) -(109,203:17661089,20373265:501378,78643,0 -(109,203:17824943,20373265:173670,78643,0 +(105,203:17661089,20373265:501378,78643,0 +(105,203:17824943,20373265:173670,78643,0 ) ) -(109,203:18162467,20373265:501378,78643,0 -(109,203:18326321,20373265:173670,78643,0 +(105,203:18162467,20373265:501378,78643,0 +(105,203:18326321,20373265:173670,78643,0 ) ) -(109,203:18663845,20373265:501378,78643,0 -(109,203:18827699,20373265:173670,78643,0 +(105,203:18663845,20373265:501378,78643,0 +(105,203:18827699,20373265:173670,78643,0 ) ) -(109,203:19165223,20373265:501378,78643,0 -(109,203:19329077,20373265:173670,78643,0 +(105,203:19165223,20373265:501378,78643,0 +(105,203:19329077,20373265:173670,78643,0 ) ) -(109,203:19666601,20373265:501378,78643,0 -(109,203:19830455,20373265:173670,78643,0 +(105,203:19666601,20373265:501378,78643,0 +(105,203:19830455,20373265:173670,78643,0 ) ) -(109,203:20167979,20373265:501378,78643,0 -(109,203:20331833,20373265:173670,78643,0 +(105,203:20167979,20373265:501378,78643,0 +(105,203:20331833,20373265:173670,78643,0 ) ) -(109,203:20669357,20373265:501378,78643,0 -(109,203:20833211,20373265:173670,78643,0 +(105,203:20669357,20373265:501378,78643,0 +(105,203:20833211,20373265:173670,78643,0 ) ) -(109,203:21170735,20373265:501378,78643,0 -(109,203:21334589,20373265:173670,78643,0 +(105,203:21170735,20373265:501378,78643,0 +(105,203:21334589,20373265:173670,78643,0 ) ) -(109,203:21672113,20373265:501378,78643,0 -(109,203:21835967,20373265:173670,78643,0 +(105,203:21672113,20373265:501378,78643,0 +(105,203:21835967,20373265:173670,78643,0 ) ) -(109,203:22173491,20373265:501378,78643,0 -(109,203:22337345,20373265:173670,78643,0 +(105,203:22173491,20373265:501378,78643,0 +(105,203:22337345,20373265:173670,78643,0 ) ) -(109,203:22674869,20373265:501378,78643,0 -(109,203:22838723,20373265:173670,78643,0 +(105,203:22674869,20373265:501378,78643,0 +(105,203:22838723,20373265:173670,78643,0 ) ) -(109,203:23176247,20373265:501378,78643,0 -(109,203:23340101,20373265:173670,78643,0 +(105,203:23176247,20373265:501378,78643,0 +(105,203:23340101,20373265:173670,78643,0 ) ) -(109,203:23677625,20373265:501378,78643,0 -(109,203:23841479,20373265:173670,78643,0 +(105,203:23677625,20373265:501378,78643,0 +(105,203:23841479,20373265:173670,78643,0 ) ) -(109,203:24179003,20373265:501378,78643,0 -(109,203:24342857,20373265:173670,78643,0 +(105,203:24179003,20373265:501378,78643,0 +(105,203:24342857,20373265:173670,78643,0 ) ) -(109,203:24680381,20373265:501378,78643,0 -(109,203:24844235,20373265:173670,78643,0 +(105,203:24680381,20373265:501378,78643,0 +(105,203:24844235,20373265:173670,78643,0 ) ) -(109,203:25181759,20373265:501378,78643,0 -(109,203:25345613,20373265:173670,78643,0 +(105,203:25181759,20373265:501378,78643,0 +(105,203:25345613,20373265:173670,78643,0 ) ) -(109,203:25683137,20373265:501378,78643,0 -(109,203:25846991,20373265:173670,78643,0 +(105,203:25683137,20373265:501378,78643,0 +(105,203:25846991,20373265:173670,78643,0 ) ) -(109,203:26184515,20373265:501378,78643,0 -(109,203:26348369,20373265:173670,78643,0 +(105,203:26184515,20373265:501378,78643,0 +(105,203:26348369,20373265:173670,78643,0 ) ) -(109,203:26685893,20373265:501378,78643,0 -(109,203:26849747,20373265:173670,78643,0 +(105,203:26685893,20373265:501378,78643,0 +(105,203:26849747,20373265:173670,78643,0 ) ) -(109,203:27187271,20373265:501378,78643,0 -(109,203:27351125,20373265:173670,78643,0 +(105,203:27187271,20373265:501378,78643,0 +(105,203:27351125,20373265:173670,78643,0 ) ) -(109,203:27688649,20373265:501378,78643,0 -(109,203:27852503,20373265:173670,78643,0 +(105,203:27688649,20373265:501378,78643,0 +(105,203:27852503,20373265:173670,78643,0 ) ) -(109,203:28190027,20373265:501378,78643,0 -(109,203:28353881,20373265:173670,78643,0 +(105,203:28190027,20373265:501378,78643,0 +(105,203:28353881,20373265:173670,78643,0 ) ) -(109,203:28691405,20373265:501378,78643,0 -(109,203:28855259,20373265:173670,78643,0 +(105,203:28691405,20373265:501378,78643,0 +(105,203:28855259,20373265:173670,78643,0 ) ) -(109,203:29192783,20373265:501378,78643,0 -(109,203:29356637,20373265:173670,78643,0 +(105,203:29192783,20373265:501378,78643,0 +(105,203:29356637,20373265:173670,78643,0 ) ) -(109,203:29694161,20373265:501378,78643,0 -(109,203:29858015,20373265:173670,78643,0 +(105,203:29694161,20373265:501378,78643,0 +(105,203:29858015,20373265:173670,78643,0 ) ) -(109,203:30195539,20373265:501378,78643,0 -(109,203:30359393,20373265:173670,78643,0 +(105,203:30195539,20373265:501378,78643,0 +(105,203:30359393,20373265:173670,78643,0 ) ) -(109,203:30696917,20373265:501378,78643,0 -(109,203:30860771,20373265:173670,78643,0 +(105,203:30696917,20373265:501378,78643,0 +(105,203:30860771,20373265:173670,78643,0 ) ) -(109,203:31403379,20373265:1179650,485622,11795 -k109,203:31403379,20373265:0 -k109,203:31536199,20373265:132820 +(105,203:31239539,20373265:1343490,485622,11795 +k105,203:31239539,20373265:0 +k105,203:31387652,20373265:148113 ) -g109,203:30911859,20373265 -g109,203:32583029,20373265 +g105,203:30911859,20373265 +g105,203:32583029,20373265 ) -(109,205:6630773,21214753:25952256,505283,134348 -g109,205:9121143,21214753 -h109,205:9121143,21214753:983040,0,0 -h109,205:10104183,21214753:0,0,0 -g109,205:7613813,21214753 -(109,205:7613813,21214753:1507330,485622,11795 -k109,205:9121143,21214753:536742 +(105,205:6630773,21214753:25952256,505283,134348 +g105,205:9121143,21214753 +h105,205:9121143,21214753:983040,0,0 +h105,205:10104183,21214753:0,0,0 +g105,205:7613813,21214753 +(105,205:7613813,21214753:1507330,485622,11795 +k105,205:9121143,21214753:536742 ) -g109,205:12185606,21214753 -g109,205:12185606,21214753 -(109,205:12647309,21214753:501378,78643,0 -$109,205:12647309,21214753 -(109,205:12811163,21214753:173670,78643,0 +g105,205:12185606,21214753 +g105,205:12185606,21214753 +(105,205:12647309,21214753:501378,78643,0 +$105,205:12647309,21214753 +(105,205:12811163,21214753:173670,78643,0 ) -$109,205:13148687,21214753 +$105,205:13148687,21214753 ) -(109,205:13148687,21214753:501378,78643,0 -(109,205:13312541,21214753:173670,78643,0 +(105,205:13148687,21214753:501378,78643,0 +(105,205:13312541,21214753:173670,78643,0 ) ) -(109,205:13650065,21214753:501378,78643,0 -(109,205:13813919,21214753:173670,78643,0 +(105,205:13650065,21214753:501378,78643,0 +(105,205:13813919,21214753:173670,78643,0 ) ) -(109,205:14151443,21214753:501378,78643,0 -(109,205:14315297,21214753:173670,78643,0 +(105,205:14151443,21214753:501378,78643,0 +(105,205:14315297,21214753:173670,78643,0 ) ) -(109,205:14652821,21214753:501378,78643,0 -(109,205:14816675,21214753:173670,78643,0 +(105,205:14652821,21214753:501378,78643,0 +(105,205:14816675,21214753:173670,78643,0 ) ) -(109,205:15154199,21214753:501378,78643,0 -(109,205:15318053,21214753:173670,78643,0 +(105,205:15154199,21214753:501378,78643,0 +(105,205:15318053,21214753:173670,78643,0 ) ) -(109,205:15655577,21214753:501378,78643,0 -(109,205:15819431,21214753:173670,78643,0 +(105,205:15655577,21214753:501378,78643,0 +(105,205:15819431,21214753:173670,78643,0 ) ) -(109,205:16156955,21214753:501378,78643,0 -(109,205:16320809,21214753:173670,78643,0 +(105,205:16156955,21214753:501378,78643,0 +(105,205:16320809,21214753:173670,78643,0 ) ) -(109,205:16658333,21214753:501378,78643,0 -(109,205:16822187,21214753:173670,78643,0 +(105,205:16658333,21214753:501378,78643,0 +(105,205:16822187,21214753:173670,78643,0 ) ) -(109,205:17159711,21214753:501378,78643,0 -(109,205:17323565,21214753:173670,78643,0 +(105,205:17159711,21214753:501378,78643,0 +(105,205:17323565,21214753:173670,78643,0 ) ) -(109,205:17661089,21214753:501378,78643,0 -(109,205:17824943,21214753:173670,78643,0 +(105,205:17661089,21214753:501378,78643,0 +(105,205:17824943,21214753:173670,78643,0 ) ) -(109,205:18162467,21214753:501378,78643,0 -(109,205:18326321,21214753:173670,78643,0 +(105,205:18162467,21214753:501378,78643,0 +(105,205:18326321,21214753:173670,78643,0 ) ) -(109,205:18663845,21214753:501378,78643,0 -(109,205:18827699,21214753:173670,78643,0 +(105,205:18663845,21214753:501378,78643,0 +(105,205:18827699,21214753:173670,78643,0 ) ) -(109,205:19165223,21214753:501378,78643,0 -(109,205:19329077,21214753:173670,78643,0 +(105,205:19165223,21214753:501378,78643,0 +(105,205:19329077,21214753:173670,78643,0 ) ) -(109,205:19666601,21214753:501378,78643,0 -(109,205:19830455,21214753:173670,78643,0 +(105,205:19666601,21214753:501378,78643,0 +(105,205:19830455,21214753:173670,78643,0 ) ) -(109,205:20167979,21214753:501378,78643,0 -(109,205:20331833,21214753:173670,78643,0 +(105,205:20167979,21214753:501378,78643,0 +(105,205:20331833,21214753:173670,78643,0 ) ) -(109,205:20669357,21214753:501378,78643,0 -(109,205:20833211,21214753:173670,78643,0 +(105,205:20669357,21214753:501378,78643,0 +(105,205:20833211,21214753:173670,78643,0 ) ) -(109,205:21170735,21214753:501378,78643,0 -(109,205:21334589,21214753:173670,78643,0 +(105,205:21170735,21214753:501378,78643,0 +(105,205:21334589,21214753:173670,78643,0 ) ) -(109,205:21672113,21214753:501378,78643,0 -(109,205:21835967,21214753:173670,78643,0 +(105,205:21672113,21214753:501378,78643,0 +(105,205:21835967,21214753:173670,78643,0 ) ) -(109,205:22173491,21214753:501378,78643,0 -(109,205:22337345,21214753:173670,78643,0 +(105,205:22173491,21214753:501378,78643,0 +(105,205:22337345,21214753:173670,78643,0 ) ) -(109,205:22674869,21214753:501378,78643,0 -(109,205:22838723,21214753:173670,78643,0 +(105,205:22674869,21214753:501378,78643,0 +(105,205:22838723,21214753:173670,78643,0 ) ) -(109,205:23176247,21214753:501378,78643,0 -(109,205:23340101,21214753:173670,78643,0 +(105,205:23176247,21214753:501378,78643,0 +(105,205:23340101,21214753:173670,78643,0 ) ) -(109,205:23677625,21214753:501378,78643,0 -(109,205:23841479,21214753:173670,78643,0 +(105,205:23677625,21214753:501378,78643,0 +(105,205:23841479,21214753:173670,78643,0 ) ) -(109,205:24179003,21214753:501378,78643,0 -(109,205:24342857,21214753:173670,78643,0 +(105,205:24179003,21214753:501378,78643,0 +(105,205:24342857,21214753:173670,78643,0 ) ) -(109,205:24680381,21214753:501378,78643,0 -(109,205:24844235,21214753:173670,78643,0 +(105,205:24680381,21214753:501378,78643,0 +(105,205:24844235,21214753:173670,78643,0 ) ) -(109,205:25181759,21214753:501378,78643,0 -(109,205:25345613,21214753:173670,78643,0 +(105,205:25181759,21214753:501378,78643,0 +(105,205:25345613,21214753:173670,78643,0 ) ) -(109,205:25683137,21214753:501378,78643,0 -(109,205:25846991,21214753:173670,78643,0 +(105,205:25683137,21214753:501378,78643,0 +(105,205:25846991,21214753:173670,78643,0 ) ) -(109,205:26184515,21214753:501378,78643,0 -(109,205:26348369,21214753:173670,78643,0 +(105,205:26184515,21214753:501378,78643,0 +(105,205:26348369,21214753:173670,78643,0 ) ) -(109,205:26685893,21214753:501378,78643,0 -(109,205:26849747,21214753:173670,78643,0 +(105,205:26685893,21214753:501378,78643,0 +(105,205:26849747,21214753:173670,78643,0 ) ) -(109,205:27187271,21214753:501378,78643,0 -(109,205:27351125,21214753:173670,78643,0 +(105,205:27187271,21214753:501378,78643,0 +(105,205:27351125,21214753:173670,78643,0 ) ) -(109,205:27688649,21214753:501378,78643,0 -(109,205:27852503,21214753:173670,78643,0 +(105,205:27688649,21214753:501378,78643,0 +(105,205:27852503,21214753:173670,78643,0 ) ) -(109,205:28190027,21214753:501378,78643,0 -(109,205:28353881,21214753:173670,78643,0 +(105,205:28190027,21214753:501378,78643,0 +(105,205:28353881,21214753:173670,78643,0 ) ) -(109,205:28691405,21214753:501378,78643,0 -(109,205:28855259,21214753:173670,78643,0 +(105,205:28691405,21214753:501378,78643,0 +(105,205:28855259,21214753:173670,78643,0 ) ) -(109,205:29192783,21214753:501378,78643,0 -(109,205:29356637,21214753:173670,78643,0 +(105,205:29192783,21214753:501378,78643,0 +(105,205:29356637,21214753:173670,78643,0 ) ) -(109,205:29694161,21214753:501378,78643,0 -(109,205:29858015,21214753:173670,78643,0 +(105,205:29694161,21214753:501378,78643,0 +(105,205:29858015,21214753:173670,78643,0 ) ) -(109,205:30195539,21214753:501378,78643,0 -(109,205:30359393,21214753:173670,78643,0 +(105,205:30195539,21214753:501378,78643,0 +(105,205:30359393,21214753:173670,78643,0 ) ) -(109,205:30696917,21214753:501378,78643,0 -(109,205:30860771,21214753:173670,78643,0 +(105,205:30696917,21214753:501378,78643,0 +(105,205:30860771,21214753:173670,78643,0 ) ) -(109,205:31403378,21214753:1179650,485622,11795 -k109,205:31403378,21214753:0 -k109,205:31536198,21214753:132820 +(105,205:31239538,21214753:1343490,485622,11795 +k105,205:31239538,21214753:0 +k105,205:31387651,21214753:148113 ) -g109,205:30911858,21214753 -g109,205:32583028,21214753 +g105,205:30911858,21214753 +g105,205:32583028,21214753 ) -(109,207:6630773,22056241:25952256,513147,134348 -g109,207:11218293,22056241 -h109,207:11218293,22056241:2490370,0,0 -h109,207:13708663,22056241:0,0,0 -g109,207:9121143,22056241 -(109,207:9121143,22056241:2097150,485622,11795 -k109,207:11218293,22056241:554432 +(105,207:6630773,22056241:25952256,513147,134348 +g105,207:11218293,22056241 +h105,207:11218293,22056241:2490370,0,0 +h105,207:13708663,22056241:0,0,0 +g105,207:9121143,22056241 +(105,207:9121143,22056241:2097150,485622,11795 +k105,207:11218293,22056241:554432 ) -g109,207:13822038,22056241 -g109,207:14688423,22056241 -g109,207:18357783,22056241 -g109,207:21760412,22056241 -(109,207:22173491,22056241:501378,78643,0 -$109,207:22173491,22056241 -(109,207:22337345,22056241:173670,78643,0 +g105,207:13822038,22056241 +g105,207:14688423,22056241 +g105,207:18357783,22056241 +g105,207:21760412,22056241 +(105,207:22173491,22056241:501378,78643,0 +$105,207:22173491,22056241 +(105,207:22337345,22056241:173670,78643,0 ) -$109,207:22674869,22056241 +$105,207:22674869,22056241 ) -(109,207:22674869,22056241:501378,78643,0 -(109,207:22838723,22056241:173670,78643,0 +(105,207:22674869,22056241:501378,78643,0 +(105,207:22838723,22056241:173670,78643,0 ) ) -(109,207:23176247,22056241:501378,78643,0 -(109,207:23340101,22056241:173670,78643,0 +(105,207:23176247,22056241:501378,78643,0 +(105,207:23340101,22056241:173670,78643,0 ) ) -(109,207:23677625,22056241:501378,78643,0 -(109,207:23841479,22056241:173670,78643,0 +(105,207:23677625,22056241:501378,78643,0 +(105,207:23841479,22056241:173670,78643,0 ) ) -(109,207:24179003,22056241:501378,78643,0 -(109,207:24342857,22056241:173670,78643,0 +(105,207:24179003,22056241:501378,78643,0 +(105,207:24342857,22056241:173670,78643,0 ) ) -(109,207:24680381,22056241:501378,78643,0 -(109,207:24844235,22056241:173670,78643,0 +(105,207:24680381,22056241:501378,78643,0 +(105,207:24844235,22056241:173670,78643,0 ) ) -(109,207:25181759,22056241:501378,78643,0 -(109,207:25345613,22056241:173670,78643,0 +(105,207:25181759,22056241:501378,78643,0 +(105,207:25345613,22056241:173670,78643,0 ) ) -(109,207:25683137,22056241:501378,78643,0 -(109,207:25846991,22056241:173670,78643,0 +(105,207:25683137,22056241:501378,78643,0 +(105,207:25846991,22056241:173670,78643,0 ) ) -(109,207:26184515,22056241:501378,78643,0 -(109,207:26348369,22056241:173670,78643,0 +(105,207:26184515,22056241:501378,78643,0 +(105,207:26348369,22056241:173670,78643,0 ) ) -(109,207:26685893,22056241:501378,78643,0 -(109,207:26849747,22056241:173670,78643,0 +(105,207:26685893,22056241:501378,78643,0 +(105,207:26849747,22056241:173670,78643,0 ) ) -(109,207:27187271,22056241:501378,78643,0 -(109,207:27351125,22056241:173670,78643,0 +(105,207:27187271,22056241:501378,78643,0 +(105,207:27351125,22056241:173670,78643,0 ) ) -(109,207:27688649,22056241:501378,78643,0 -(109,207:27852503,22056241:173670,78643,0 +(105,207:27688649,22056241:501378,78643,0 +(105,207:27852503,22056241:173670,78643,0 ) ) -(109,207:28190027,22056241:501378,78643,0 -(109,207:28353881,22056241:173670,78643,0 +(105,207:28190027,22056241:501378,78643,0 +(105,207:28353881,22056241:173670,78643,0 ) ) -(109,207:28691405,22056241:501378,78643,0 -(109,207:28855259,22056241:173670,78643,0 +(105,207:28691405,22056241:501378,78643,0 +(105,207:28855259,22056241:173670,78643,0 ) ) -(109,207:29192783,22056241:501378,78643,0 -(109,207:29356637,22056241:173670,78643,0 +(105,207:29192783,22056241:501378,78643,0 +(105,207:29356637,22056241:173670,78643,0 ) ) -(109,207:29694161,22056241:501378,78643,0 -(109,207:29858015,22056241:173670,78643,0 +(105,207:29694161,22056241:501378,78643,0 +(105,207:29858015,22056241:173670,78643,0 ) ) -(109,207:30195539,22056241:501378,78643,0 -(109,207:30359393,22056241:173670,78643,0 +(105,207:30195539,22056241:501378,78643,0 +(105,207:30359393,22056241:173670,78643,0 ) ) -(109,207:30696917,22056241:501378,78643,0 -(109,207:30860771,22056241:173670,78643,0 +(105,207:30696917,22056241:501378,78643,0 +(105,207:30860771,22056241:173670,78643,0 ) ) -(109,207:31403379,22056241:1179650,485622,11795 -k109,207:31403379,22056241:0 -k109,207:31536199,22056241:132820 +(105,207:31239539,22056241:1343490,485622,11795 +k105,207:31239539,22056241:0 +k105,207:31387652,22056241:148113 ) -g109,207:30911859,22056241 -g109,207:32583029,22056241 +g105,207:30911859,22056241 +g105,207:32583029,22056241 ) -(109,209:6630773,22897729:25952256,505283,134348 -g109,209:11218293,22897729 -h109,209:11218293,22897729:2490370,0,0 -h109,209:13708663,22897729:0,0,0 -g109,209:9121143,22897729 -(109,209:9121143,22897729:2097150,485622,11795 -k109,209:11218293,22897729:554432 +(105,209:6630773,22897729:25952256,505283,134348 +g105,209:11218293,22897729 +h105,209:11218293,22897729:2490370,0,0 +h105,209:13708663,22897729:0,0,0 +g105,209:9121143,22897729 +(105,209:9121143,22897729:2097150,485622,11795 +k105,209:11218293,22897729:554432 ) -g109,209:12838343,22897729 -g109,209:15948026,22897729 -g109,209:17544483,22897729 -(109,209:17661089,22897729:501378,78643,0 -$109,209:17661089,22897729 -(109,209:17824943,22897729:173670,78643,0 +g105,209:12838343,22897729 +g105,209:15948026,22897729 +g105,209:17544483,22897729 +(105,209:17661089,22897729:501378,78643,0 +$105,209:17661089,22897729 +(105,209:17824943,22897729:173670,78643,0 ) -$109,209:18162467,22897729 +$105,209:18162467,22897729 ) -(109,209:18162467,22897729:501378,78643,0 -(109,209:18326321,22897729:173670,78643,0 +(105,209:18162467,22897729:501378,78643,0 +(105,209:18326321,22897729:173670,78643,0 ) ) -(109,209:18663845,22897729:501378,78643,0 -(109,209:18827699,22897729:173670,78643,0 +(105,209:18663845,22897729:501378,78643,0 +(105,209:18827699,22897729:173670,78643,0 ) ) -(109,209:19165223,22897729:501378,78643,0 -(109,209:19329077,22897729:173670,78643,0 +(105,209:19165223,22897729:501378,78643,0 +(105,209:19329077,22897729:173670,78643,0 ) ) -(109,209:19666601,22897729:501378,78643,0 -(109,209:19830455,22897729:173670,78643,0 +(105,209:19666601,22897729:501378,78643,0 +(105,209:19830455,22897729:173670,78643,0 ) ) -(109,209:20167979,22897729:501378,78643,0 -(109,209:20331833,22897729:173670,78643,0 +(105,209:20167979,22897729:501378,78643,0 +(105,209:20331833,22897729:173670,78643,0 ) ) -(109,209:20669357,22897729:501378,78643,0 -(109,209:20833211,22897729:173670,78643,0 +(105,209:20669357,22897729:501378,78643,0 +(105,209:20833211,22897729:173670,78643,0 ) ) -(109,209:21170735,22897729:501378,78643,0 -(109,209:21334589,22897729:173670,78643,0 +(105,209:21170735,22897729:501378,78643,0 +(105,209:21334589,22897729:173670,78643,0 ) ) -(109,209:21672113,22897729:501378,78643,0 -(109,209:21835967,22897729:173670,78643,0 +(105,209:21672113,22897729:501378,78643,0 +(105,209:21835967,22897729:173670,78643,0 ) ) -(109,209:22173491,22897729:501378,78643,0 -(109,209:22337345,22897729:173670,78643,0 +(105,209:22173491,22897729:501378,78643,0 +(105,209:22337345,22897729:173670,78643,0 ) ) -(109,209:22674869,22897729:501378,78643,0 -(109,209:22838723,22897729:173670,78643,0 +(105,209:22674869,22897729:501378,78643,0 +(105,209:22838723,22897729:173670,78643,0 ) ) -(109,209:23176247,22897729:501378,78643,0 -(109,209:23340101,22897729:173670,78643,0 +(105,209:23176247,22897729:501378,78643,0 +(105,209:23340101,22897729:173670,78643,0 ) ) -(109,209:23677625,22897729:501378,78643,0 -(109,209:23841479,22897729:173670,78643,0 +(105,209:23677625,22897729:501378,78643,0 +(105,209:23841479,22897729:173670,78643,0 ) ) -(109,209:24179003,22897729:501378,78643,0 -(109,209:24342857,22897729:173670,78643,0 +(105,209:24179003,22897729:501378,78643,0 +(105,209:24342857,22897729:173670,78643,0 ) ) -(109,209:24680381,22897729:501378,78643,0 -(109,209:24844235,22897729:173670,78643,0 +(105,209:24680381,22897729:501378,78643,0 +(105,209:24844235,22897729:173670,78643,0 ) ) -(109,209:25181759,22897729:501378,78643,0 -(109,209:25345613,22897729:173670,78643,0 +(105,209:25181759,22897729:501378,78643,0 +(105,209:25345613,22897729:173670,78643,0 ) ) -(109,209:25683137,22897729:501378,78643,0 -(109,209:25846991,22897729:173670,78643,0 +(105,209:25683137,22897729:501378,78643,0 +(105,209:25846991,22897729:173670,78643,0 ) ) -(109,209:26184515,22897729:501378,78643,0 -(109,209:26348369,22897729:173670,78643,0 +(105,209:26184515,22897729:501378,78643,0 +(105,209:26348369,22897729:173670,78643,0 ) ) -(109,209:26685893,22897729:501378,78643,0 -(109,209:26849747,22897729:173670,78643,0 +(105,209:26685893,22897729:501378,78643,0 +(105,209:26849747,22897729:173670,78643,0 ) ) -(109,209:27187271,22897729:501378,78643,0 -(109,209:27351125,22897729:173670,78643,0 +(105,209:27187271,22897729:501378,78643,0 +(105,209:27351125,22897729:173670,78643,0 ) ) -(109,209:27688649,22897729:501378,78643,0 -(109,209:27852503,22897729:173670,78643,0 +(105,209:27688649,22897729:501378,78643,0 +(105,209:27852503,22897729:173670,78643,0 ) ) -(109,209:28190027,22897729:501378,78643,0 -(109,209:28353881,22897729:173670,78643,0 +(105,209:28190027,22897729:501378,78643,0 +(105,209:28353881,22897729:173670,78643,0 ) ) -(109,209:28691405,22897729:501378,78643,0 -(109,209:28855259,22897729:173670,78643,0 +(105,209:28691405,22897729:501378,78643,0 +(105,209:28855259,22897729:173670,78643,0 ) ) -(109,209:29192783,22897729:501378,78643,0 -(109,209:29356637,22897729:173670,78643,0 +(105,209:29192783,22897729:501378,78643,0 +(105,209:29356637,22897729:173670,78643,0 ) ) -(109,209:29694161,22897729:501378,78643,0 -(109,209:29858015,22897729:173670,78643,0 +(105,209:29694161,22897729:501378,78643,0 +(105,209:29858015,22897729:173670,78643,0 ) ) -(109,209:30195539,22897729:501378,78643,0 -(109,209:30359393,22897729:173670,78643,0 +(105,209:30195539,22897729:501378,78643,0 +(105,209:30359393,22897729:173670,78643,0 ) ) -(109,209:30696917,22897729:501378,78643,0 -(109,209:30860771,22897729:173670,78643,0 +(105,209:30696917,22897729:501378,78643,0 +(105,209:30860771,22897729:173670,78643,0 ) ) -(109,209:31403379,22897729:1179650,485622,11795 -k109,209:31403379,22897729:0 -k109,209:31536199,22897729:132820 +(105,209:31239539,22897729:1343490,485622,11795 +k105,209:31239539,22897729:0 +k105,209:31387652,22897729:148113 ) -g109,209:30911859,22897729 -g109,209:32583029,22897729 +g105,209:30911859,22897729 +g105,209:32583029,22897729 ) -(109,211:6630773,23739217:25952256,505283,102891 -g109,211:11218293,23739217 -h109,211:11218293,23739217:2490370,0,0 -h109,211:13708663,23739217:0,0,0 -g109,211:9121143,23739217 -(109,211:9121143,23739217:2097150,485622,11795 -k109,211:11218293,23739217:554432 +(105,211:6630773,23739217:25952256,505283,102891 +g105,211:11218293,23739217 +h105,211:11218293,23739217:2490370,0,0 +h105,211:13708663,23739217:0,0,0 +g105,211:9121143,23739217 +(105,211:9121143,23739217:2097150,485622,11795 +k105,211:11218293,23739217:554432 ) -g109,211:14801146,23739217 -g109,211:18593059,23739217 -g109,211:19983733,23739217 -g109,211:21076218,23739217 -(109,211:21170735,23739217:501378,78643,0 -$109,211:21170735,23739217 -(109,211:21334589,23739217:173670,78643,0 +g105,211:14801146,23739217 +g105,211:18593059,23739217 +g105,211:19983733,23739217 +g105,211:21076218,23739217 +(105,211:21170735,23739217:501378,78643,0 +$105,211:21170735,23739217 +(105,211:21334589,23739217:173670,78643,0 ) -$109,211:21672113,23739217 +$105,211:21672113,23739217 ) -(109,211:21672113,23739217:501378,78643,0 -(109,211:21835967,23739217:173670,78643,0 +(105,211:21672113,23739217:501378,78643,0 +(105,211:21835967,23739217:173670,78643,0 ) ) -(109,211:22173491,23739217:501378,78643,0 -(109,211:22337345,23739217:173670,78643,0 +(105,211:22173491,23739217:501378,78643,0 +(105,211:22337345,23739217:173670,78643,0 ) ) -(109,211:22674869,23739217:501378,78643,0 -(109,211:22838723,23739217:173670,78643,0 +(105,211:22674869,23739217:501378,78643,0 +(105,211:22838723,23739217:173670,78643,0 ) ) -(109,211:23176247,23739217:501378,78643,0 -(109,211:23340101,23739217:173670,78643,0 +(105,211:23176247,23739217:501378,78643,0 +(105,211:23340101,23739217:173670,78643,0 ) ) -(109,211:23677625,23739217:501378,78643,0 -(109,211:23841479,23739217:173670,78643,0 +(105,211:23677625,23739217:501378,78643,0 +(105,211:23841479,23739217:173670,78643,0 ) ) -(109,211:24179003,23739217:501378,78643,0 -(109,211:24342857,23739217:173670,78643,0 +(105,211:24179003,23739217:501378,78643,0 +(105,211:24342857,23739217:173670,78643,0 ) ) -(109,211:24680381,23739217:501378,78643,0 -(109,211:24844235,23739217:173670,78643,0 +(105,211:24680381,23739217:501378,78643,0 +(105,211:24844235,23739217:173670,78643,0 ) ) -(109,211:25181759,23739217:501378,78643,0 -(109,211:25345613,23739217:173670,78643,0 +(105,211:25181759,23739217:501378,78643,0 +(105,211:25345613,23739217:173670,78643,0 ) ) -(109,211:25683137,23739217:501378,78643,0 -(109,211:25846991,23739217:173670,78643,0 +(105,211:25683137,23739217:501378,78643,0 +(105,211:25846991,23739217:173670,78643,0 ) ) -(109,211:26184515,23739217:501378,78643,0 -(109,211:26348369,23739217:173670,78643,0 +(105,211:26184515,23739217:501378,78643,0 +(105,211:26348369,23739217:173670,78643,0 ) ) -(109,211:26685893,23739217:501378,78643,0 -(109,211:26849747,23739217:173670,78643,0 +(105,211:26685893,23739217:501378,78643,0 +(105,211:26849747,23739217:173670,78643,0 ) ) -(109,211:27187271,23739217:501378,78643,0 -(109,211:27351125,23739217:173670,78643,0 +(105,211:27187271,23739217:501378,78643,0 +(105,211:27351125,23739217:173670,78643,0 ) ) -(109,211:27688649,23739217:501378,78643,0 -(109,211:27852503,23739217:173670,78643,0 +(105,211:27688649,23739217:501378,78643,0 +(105,211:27852503,23739217:173670,78643,0 ) ) -(109,211:28190027,23739217:501378,78643,0 -(109,211:28353881,23739217:173670,78643,0 +(105,211:28190027,23739217:501378,78643,0 +(105,211:28353881,23739217:173670,78643,0 ) ) -(109,211:28691405,23739217:501378,78643,0 -(109,211:28855259,23739217:173670,78643,0 +(105,211:28691405,23739217:501378,78643,0 +(105,211:28855259,23739217:173670,78643,0 ) ) -(109,211:29192783,23739217:501378,78643,0 -(109,211:29356637,23739217:173670,78643,0 +(105,211:29192783,23739217:501378,78643,0 +(105,211:29356637,23739217:173670,78643,0 ) ) -(109,211:29694161,23739217:501378,78643,0 -(109,211:29858015,23739217:173670,78643,0 +(105,211:29694161,23739217:501378,78643,0 +(105,211:29858015,23739217:173670,78643,0 ) ) -(109,211:30195539,23739217:501378,78643,0 -(109,211:30359393,23739217:173670,78643,0 +(105,211:30195539,23739217:501378,78643,0 +(105,211:30359393,23739217:173670,78643,0 ) ) -(109,211:30696917,23739217:501378,78643,0 -(109,211:30860771,23739217:173670,78643,0 +(105,211:30696917,23739217:501378,78643,0 +(105,211:30860771,23739217:173670,78643,0 ) ) -(109,211:31403379,23739217:1179650,485622,11795 -k109,211:31403379,23739217:0 -k109,211:31536199,23739217:132820 +(105,211:31239539,23739217:1343490,485622,11795 +k105,211:31239539,23739217:0 +k105,211:31387652,23739217:148113 ) -g109,211:30911859,23739217 -g109,211:32583029,23739217 +g105,211:30911859,23739217 +g105,211:32583029,23739217 ) -(109,213:6630773,24580705:25952256,505283,134348 -g109,213:11218293,24580705 -h109,213:11218293,24580705:2490370,0,0 -h109,213:13708663,24580705:0,0,0 -g109,213:9121143,24580705 -(109,213:9121143,24580705:2097150,485622,11795 -k109,213:11218293,24580705:554432 +(105,213:6630773,24580705:25952256,505283,134348 +g105,213:11218293,24580705 +h105,213:11218293,24580705:2490370,0,0 +h105,213:13708663,24580705:0,0,0 +g105,213:9121143,24580705 +(105,213:9121143,24580705:2097150,485622,11795 +k105,213:11218293,24580705:554432 ) -g109,213:13803688,24580705 -g109,213:16514912,24580705 -g109,213:19425366,24580705 -(109,213:19666601,24580705:501378,78643,0 -$109,213:19666601,24580705 -(109,213:19830455,24580705:173670,78643,0 +g105,213:13803688,24580705 +g105,213:16514912,24580705 +g105,213:19425366,24580705 +(105,213:19666601,24580705:501378,78643,0 +$105,213:19666601,24580705 +(105,213:19830455,24580705:173670,78643,0 ) -$109,213:20167979,24580705 +$105,213:20167979,24580705 ) -(109,213:20167979,24580705:501378,78643,0 -(109,213:20331833,24580705:173670,78643,0 +(105,213:20167979,24580705:501378,78643,0 +(105,213:20331833,24580705:173670,78643,0 ) ) -(109,213:20669357,24580705:501378,78643,0 -(109,213:20833211,24580705:173670,78643,0 +(105,213:20669357,24580705:501378,78643,0 +(105,213:20833211,24580705:173670,78643,0 ) ) -(109,213:21170735,24580705:501378,78643,0 -(109,213:21334589,24580705:173670,78643,0 +(105,213:21170735,24580705:501378,78643,0 +(105,213:21334589,24580705:173670,78643,0 ) ) -(109,213:21672113,24580705:501378,78643,0 -(109,213:21835967,24580705:173670,78643,0 +(105,213:21672113,24580705:501378,78643,0 +(105,213:21835967,24580705:173670,78643,0 ) ) -(109,213:22173491,24580705:501378,78643,0 -(109,213:22337345,24580705:173670,78643,0 +(105,213:22173491,24580705:501378,78643,0 +(105,213:22337345,24580705:173670,78643,0 ) ) -(109,213:22674869,24580705:501378,78643,0 -(109,213:22838723,24580705:173670,78643,0 +(105,213:22674869,24580705:501378,78643,0 +(105,213:22838723,24580705:173670,78643,0 ) ) -(109,213:23176247,24580705:501378,78643,0 -(109,213:23340101,24580705:173670,78643,0 +(105,213:23176247,24580705:501378,78643,0 +(105,213:23340101,24580705:173670,78643,0 ) ) -(109,213:23677625,24580705:501378,78643,0 -(109,213:23841479,24580705:173670,78643,0 +(105,213:23677625,24580705:501378,78643,0 +(105,213:23841479,24580705:173670,78643,0 ) ) -(109,213:24179003,24580705:501378,78643,0 -(109,213:24342857,24580705:173670,78643,0 +(105,213:24179003,24580705:501378,78643,0 +(105,213:24342857,24580705:173670,78643,0 ) ) -(109,213:24680381,24580705:501378,78643,0 -(109,213:24844235,24580705:173670,78643,0 +(105,213:24680381,24580705:501378,78643,0 +(105,213:24844235,24580705:173670,78643,0 ) ) -(109,213:25181759,24580705:501378,78643,0 -(109,213:25345613,24580705:173670,78643,0 +(105,213:25181759,24580705:501378,78643,0 +(105,213:25345613,24580705:173670,78643,0 ) ) -(109,213:25683137,24580705:501378,78643,0 -(109,213:25846991,24580705:173670,78643,0 +(105,213:25683137,24580705:501378,78643,0 +(105,213:25846991,24580705:173670,78643,0 ) ) -(109,213:26184515,24580705:501378,78643,0 -(109,213:26348369,24580705:173670,78643,0 +(105,213:26184515,24580705:501378,78643,0 +(105,213:26348369,24580705:173670,78643,0 ) ) -(109,213:26685893,24580705:501378,78643,0 -(109,213:26849747,24580705:173670,78643,0 +(105,213:26685893,24580705:501378,78643,0 +(105,213:26849747,24580705:173670,78643,0 ) ) -(109,213:27187271,24580705:501378,78643,0 -(109,213:27351125,24580705:173670,78643,0 +(105,213:27187271,24580705:501378,78643,0 +(105,213:27351125,24580705:173670,78643,0 ) ) -(109,213:27688649,24580705:501378,78643,0 -(109,213:27852503,24580705:173670,78643,0 +(105,213:27688649,24580705:501378,78643,0 +(105,213:27852503,24580705:173670,78643,0 ) ) -(109,213:28190027,24580705:501378,78643,0 -(109,213:28353881,24580705:173670,78643,0 +(105,213:28190027,24580705:501378,78643,0 +(105,213:28353881,24580705:173670,78643,0 ) ) -(109,213:28691405,24580705:501378,78643,0 -(109,213:28855259,24580705:173670,78643,0 +(105,213:28691405,24580705:501378,78643,0 +(105,213:28855259,24580705:173670,78643,0 ) ) -(109,213:29192783,24580705:501378,78643,0 -(109,213:29356637,24580705:173670,78643,0 +(105,213:29192783,24580705:501378,78643,0 +(105,213:29356637,24580705:173670,78643,0 ) ) -(109,213:29694161,24580705:501378,78643,0 -(109,213:29858015,24580705:173670,78643,0 +(105,213:29694161,24580705:501378,78643,0 +(105,213:29858015,24580705:173670,78643,0 ) ) -(109,213:30195539,24580705:501378,78643,0 -(109,213:30359393,24580705:173670,78643,0 +(105,213:30195539,24580705:501378,78643,0 +(105,213:30359393,24580705:173670,78643,0 ) ) -(109,213:30696917,24580705:501378,78643,0 -(109,213:30860771,24580705:173670,78643,0 +(105,213:30696917,24580705:501378,78643,0 +(105,213:30860771,24580705:173670,78643,0 ) ) -(109,213:31403379,24580705:1179650,485622,11795 -k109,213:31403379,24580705:0 -k109,213:31536199,24580705:132820 +(105,213:31239539,24580705:1343490,485622,11795 +k105,213:31239539,24580705:0 +k105,213:31387652,24580705:148113 ) -g109,213:30911859,24580705 -g109,213:32583029,24580705 +g105,213:30911859,24580705 +g105,213:32583029,24580705 ) -(109,215:6630773,25422193:25952256,513147,134348 -g109,215:9121143,25422193 -h109,215:9121143,25422193:983040,0,0 -h109,215:10104183,25422193:0,0,0 -g109,215:7613813,25422193 -(109,215:7613813,25422193:1507330,485622,11795 -k109,215:9121143,25422193:536742 +(105,215:6630773,25422193:25952256,513147,134348 +g105,215:9121143,25422193 +h105,215:9121143,25422193:983040,0,0 +h105,215:10104183,25422193:0,0,0 +g105,215:7613813,25422193 +(105,215:7613813,25422193:1507330,485622,11795 +k105,215:9121143,25422193:536742 ) -g109,215:12006693,25422193 -g109,215:15231719,25422193 -g109,215:16622393,25422193 -g109,215:19898537,25422193 -g109,215:19898537,25422193 -(109,215:20167979,25422193:501378,78643,0 -$109,215:20167979,25422193 -(109,215:20331833,25422193:173670,78643,0 +g105,215:12006693,25422193 +g105,215:15231719,25422193 +g105,215:16622393,25422193 +g105,215:19898537,25422193 +g105,215:19898537,25422193 +(105,215:20167979,25422193:501378,78643,0 +$105,215:20167979,25422193 +(105,215:20331833,25422193:173670,78643,0 ) -$109,215:20669357,25422193 +$105,215:20669357,25422193 ) -(109,215:20669357,25422193:501378,78643,0 -(109,215:20833211,25422193:173670,78643,0 +(105,215:20669357,25422193:501378,78643,0 +(105,215:20833211,25422193:173670,78643,0 ) ) -(109,215:21170735,25422193:501378,78643,0 -(109,215:21334589,25422193:173670,78643,0 +(105,215:21170735,25422193:501378,78643,0 +(105,215:21334589,25422193:173670,78643,0 ) ) -(109,215:21672113,25422193:501378,78643,0 -(109,215:21835967,25422193:173670,78643,0 +(105,215:21672113,25422193:501378,78643,0 +(105,215:21835967,25422193:173670,78643,0 ) ) -(109,215:22173491,25422193:501378,78643,0 -(109,215:22337345,25422193:173670,78643,0 +(105,215:22173491,25422193:501378,78643,0 +(105,215:22337345,25422193:173670,78643,0 ) ) -(109,215:22674869,25422193:501378,78643,0 -(109,215:22838723,25422193:173670,78643,0 +(105,215:22674869,25422193:501378,78643,0 +(105,215:22838723,25422193:173670,78643,0 ) ) -(109,215:23176247,25422193:501378,78643,0 -(109,215:23340101,25422193:173670,78643,0 +(105,215:23176247,25422193:501378,78643,0 +(105,215:23340101,25422193:173670,78643,0 ) ) -(109,215:23677625,25422193:501378,78643,0 -(109,215:23841479,25422193:173670,78643,0 +(105,215:23677625,25422193:501378,78643,0 +(105,215:23841479,25422193:173670,78643,0 ) ) -(109,215:24179003,25422193:501378,78643,0 -(109,215:24342857,25422193:173670,78643,0 +(105,215:24179003,25422193:501378,78643,0 +(105,215:24342857,25422193:173670,78643,0 ) ) -(109,215:24680381,25422193:501378,78643,0 -(109,215:24844235,25422193:173670,78643,0 +(105,215:24680381,25422193:501378,78643,0 +(105,215:24844235,25422193:173670,78643,0 ) ) -(109,215:25181759,25422193:501378,78643,0 -(109,215:25345613,25422193:173670,78643,0 +(105,215:25181759,25422193:501378,78643,0 +(105,215:25345613,25422193:173670,78643,0 ) ) -(109,215:25683137,25422193:501378,78643,0 -(109,215:25846991,25422193:173670,78643,0 +(105,215:25683137,25422193:501378,78643,0 +(105,215:25846991,25422193:173670,78643,0 ) ) -(109,215:26184515,25422193:501378,78643,0 -(109,215:26348369,25422193:173670,78643,0 +(105,215:26184515,25422193:501378,78643,0 +(105,215:26348369,25422193:173670,78643,0 ) ) -(109,215:26685893,25422193:501378,78643,0 -(109,215:26849747,25422193:173670,78643,0 +(105,215:26685893,25422193:501378,78643,0 +(105,215:26849747,25422193:173670,78643,0 ) ) -(109,215:27187271,25422193:501378,78643,0 -(109,215:27351125,25422193:173670,78643,0 +(105,215:27187271,25422193:501378,78643,0 +(105,215:27351125,25422193:173670,78643,0 ) ) -(109,215:27688649,25422193:501378,78643,0 -(109,215:27852503,25422193:173670,78643,0 +(105,215:27688649,25422193:501378,78643,0 +(105,215:27852503,25422193:173670,78643,0 ) ) -(109,215:28190027,25422193:501378,78643,0 -(109,215:28353881,25422193:173670,78643,0 +(105,215:28190027,25422193:501378,78643,0 +(105,215:28353881,25422193:173670,78643,0 ) ) -(109,215:28691405,25422193:501378,78643,0 -(109,215:28855259,25422193:173670,78643,0 +(105,215:28691405,25422193:501378,78643,0 +(105,215:28855259,25422193:173670,78643,0 ) ) -(109,215:29192783,25422193:501378,78643,0 -(109,215:29356637,25422193:173670,78643,0 +(105,215:29192783,25422193:501378,78643,0 +(105,215:29356637,25422193:173670,78643,0 ) ) -(109,215:29694161,25422193:501378,78643,0 -(109,215:29858015,25422193:173670,78643,0 +(105,215:29694161,25422193:501378,78643,0 +(105,215:29858015,25422193:173670,78643,0 ) ) -(109,215:30195539,25422193:501378,78643,0 -(109,215:30359393,25422193:173670,78643,0 +(105,215:30195539,25422193:501378,78643,0 +(105,215:30359393,25422193:173670,78643,0 ) ) -(109,215:30696917,25422193:501378,78643,0 -(109,215:30860771,25422193:173670,78643,0 +(105,215:30696917,25422193:501378,78643,0 +(105,215:30860771,25422193:173670,78643,0 ) ) -(109,215:31403379,25422193:1179650,485622,11795 -k109,215:31403379,25422193:0 -k109,215:31536199,25422193:132820 +(105,215:31239539,25422193:1343490,485622,11795 +k105,215:31239539,25422193:0 +k105,215:31387652,25422193:148113 ) -g109,215:30911859,25422193 -g109,215:32583029,25422193 +g105,215:30911859,25422193 +g105,215:32583029,25422193 ) -(109,217:6630773,26263681:25952256,513147,126483 -g109,217:11218293,26263681 -h109,217:11218293,26263681:2490370,0,0 -h109,217:13708663,26263681:0,0,0 -g109,217:9121143,26263681 -(109,217:9121143,26263681:2097150,485622,11795 -k109,217:11218293,26263681:554432 +(105,217:6630773,26263681:25952256,513147,126483 +g105,217:11218293,26263681 +h105,217:11218293,26263681:2490370,0,0 +h105,217:13708663,26263681:0,0,0 +g105,217:9121143,26263681 +(105,217:9121143,26263681:2097150,485622,11795 +k105,217:11218293,26263681:554432 ) -g109,217:14257197,26263681 -g109,217:17282994,26263681 -(109,217:17661089,26263681:501378,78643,0 -$109,217:17661089,26263681 -(109,217:17824943,26263681:173670,78643,0 +g105,217:14257197,26263681 +g105,217:17282994,26263681 +(105,217:17661089,26263681:501378,78643,0 +$105,217:17661089,26263681 +(105,217:17824943,26263681:173670,78643,0 ) -$109,217:18162467,26263681 +$105,217:18162467,26263681 ) -(109,217:18162467,26263681:501378,78643,0 -(109,217:18326321,26263681:173670,78643,0 +(105,217:18162467,26263681:501378,78643,0 +(105,217:18326321,26263681:173670,78643,0 ) ) -(109,217:18663845,26263681:501378,78643,0 -(109,217:18827699,26263681:173670,78643,0 +(105,217:18663845,26263681:501378,78643,0 +(105,217:18827699,26263681:173670,78643,0 ) ) -(109,217:19165223,26263681:501378,78643,0 -(109,217:19329077,26263681:173670,78643,0 +(105,217:19165223,26263681:501378,78643,0 +(105,217:19329077,26263681:173670,78643,0 ) ) -(109,217:19666601,26263681:501378,78643,0 -(109,217:19830455,26263681:173670,78643,0 +(105,217:19666601,26263681:501378,78643,0 +(105,217:19830455,26263681:173670,78643,0 ) ) -(109,217:20167979,26263681:501378,78643,0 -(109,217:20331833,26263681:173670,78643,0 +(105,217:20167979,26263681:501378,78643,0 +(105,217:20331833,26263681:173670,78643,0 ) ) -(109,217:20669357,26263681:501378,78643,0 -(109,217:20833211,26263681:173670,78643,0 +(105,217:20669357,26263681:501378,78643,0 +(105,217:20833211,26263681:173670,78643,0 ) ) -(109,217:21170735,26263681:501378,78643,0 -(109,217:21334589,26263681:173670,78643,0 +(105,217:21170735,26263681:501378,78643,0 +(105,217:21334589,26263681:173670,78643,0 ) ) -(109,217:21672113,26263681:501378,78643,0 -(109,217:21835967,26263681:173670,78643,0 +(105,217:21672113,26263681:501378,78643,0 +(105,217:21835967,26263681:173670,78643,0 ) ) -(109,217:22173491,26263681:501378,78643,0 -(109,217:22337345,26263681:173670,78643,0 +(105,217:22173491,26263681:501378,78643,0 +(105,217:22337345,26263681:173670,78643,0 ) ) -(109,217:22674869,26263681:501378,78643,0 -(109,217:22838723,26263681:173670,78643,0 +(105,217:22674869,26263681:501378,78643,0 +(105,217:22838723,26263681:173670,78643,0 ) ) -(109,217:23176247,26263681:501378,78643,0 -(109,217:23340101,26263681:173670,78643,0 +(105,217:23176247,26263681:501378,78643,0 +(105,217:23340101,26263681:173670,78643,0 ) ) -(109,217:23677625,26263681:501378,78643,0 -(109,217:23841479,26263681:173670,78643,0 +(105,217:23677625,26263681:501378,78643,0 +(105,217:23841479,26263681:173670,78643,0 ) ) -(109,217:24179003,26263681:501378,78643,0 -(109,217:24342857,26263681:173670,78643,0 +(105,217:24179003,26263681:501378,78643,0 +(105,217:24342857,26263681:173670,78643,0 ) ) -(109,217:24680381,26263681:501378,78643,0 -(109,217:24844235,26263681:173670,78643,0 +(105,217:24680381,26263681:501378,78643,0 +(105,217:24844235,26263681:173670,78643,0 ) ) -(109,217:25181759,26263681:501378,78643,0 -(109,217:25345613,26263681:173670,78643,0 +(105,217:25181759,26263681:501378,78643,0 +(105,217:25345613,26263681:173670,78643,0 ) ) -(109,217:25683137,26263681:501378,78643,0 -(109,217:25846991,26263681:173670,78643,0 +(105,217:25683137,26263681:501378,78643,0 +(105,217:25846991,26263681:173670,78643,0 ) ) -(109,217:26184515,26263681:501378,78643,0 -(109,217:26348369,26263681:173670,78643,0 +(105,217:26184515,26263681:501378,78643,0 +(105,217:26348369,26263681:173670,78643,0 ) ) -(109,217:26685893,26263681:501378,78643,0 -(109,217:26849747,26263681:173670,78643,0 +(105,217:26685893,26263681:501378,78643,0 +(105,217:26849747,26263681:173670,78643,0 ) ) -(109,217:27187271,26263681:501378,78643,0 -(109,217:27351125,26263681:173670,78643,0 +(105,217:27187271,26263681:501378,78643,0 +(105,217:27351125,26263681:173670,78643,0 ) ) -(109,217:27688649,26263681:501378,78643,0 -(109,217:27852503,26263681:173670,78643,0 +(105,217:27688649,26263681:501378,78643,0 +(105,217:27852503,26263681:173670,78643,0 ) ) -(109,217:28190027,26263681:501378,78643,0 -(109,217:28353881,26263681:173670,78643,0 +(105,217:28190027,26263681:501378,78643,0 +(105,217:28353881,26263681:173670,78643,0 ) ) -(109,217:28691405,26263681:501378,78643,0 -(109,217:28855259,26263681:173670,78643,0 +(105,217:28691405,26263681:501378,78643,0 +(105,217:28855259,26263681:173670,78643,0 ) ) -(109,217:29192783,26263681:501378,78643,0 -(109,217:29356637,26263681:173670,78643,0 +(105,217:29192783,26263681:501378,78643,0 +(105,217:29356637,26263681:173670,78643,0 ) ) -(109,217:29694161,26263681:501378,78643,0 -(109,217:29858015,26263681:173670,78643,0 +(105,217:29694161,26263681:501378,78643,0 +(105,217:29858015,26263681:173670,78643,0 ) ) -(109,217:30195539,26263681:501378,78643,0 -(109,217:30359393,26263681:173670,78643,0 +(105,217:30195539,26263681:501378,78643,0 +(105,217:30359393,26263681:173670,78643,0 ) ) -(109,217:30696917,26263681:501378,78643,0 -(109,217:30860771,26263681:173670,78643,0 +(105,217:30696917,26263681:501378,78643,0 +(105,217:30860771,26263681:173670,78643,0 ) ) -(109,217:31403379,26263681:1179650,485622,11795 -k109,217:31403379,26263681:0 -k109,217:31536199,26263681:132820 +(105,217:31239539,26263681:1343490,485622,11795 +k105,217:31239539,26263681:0 +k105,217:31387652,26263681:148113 ) -g109,217:30911859,26263681 -g109,217:32583029,26263681 +g105,217:30911859,26263681 +g105,217:32583029,26263681 ) -(109,219:6630773,27105169:25952256,485622,126483 -g109,219:11218293,27105169 -h109,219:11218293,27105169:2490370,0,0 -h109,219:13708663,27105169:0,0,0 -g109,219:9121143,27105169 -(109,219:9121143,27105169:2097150,485622,11795 -k109,219:11218293,27105169:554432 +(105,219:6630773,27105169:25952256,485622,126483 +g105,219:11218293,27105169 +h105,219:11218293,27105169:2490370,0,0 +h105,219:13708663,27105169:0,0,0 +g105,219:9121143,27105169 +(105,219:9121143,27105169:2097150,485622,11795 +k105,219:11218293,27105169:554432 ) -g109,219:14409896,27105169 -(109,219:14652821,27105169:501378,78643,0 -$109,219:14652821,27105169 -(109,219:14816675,27105169:173670,78643,0 +g105,219:14409896,27105169 +(105,219:14652821,27105169:501378,78643,0 +$105,219:14652821,27105169 +(105,219:14816675,27105169:173670,78643,0 ) -$109,219:15154199,27105169 +$105,219:15154199,27105169 ) -(109,219:15154199,27105169:501378,78643,0 -(109,219:15318053,27105169:173670,78643,0 +(105,219:15154199,27105169:501378,78643,0 +(105,219:15318053,27105169:173670,78643,0 ) ) -(109,219:15655577,27105169:501378,78643,0 -(109,219:15819431,27105169:173670,78643,0 +(105,219:15655577,27105169:501378,78643,0 +(105,219:15819431,27105169:173670,78643,0 ) ) -(109,219:16156955,27105169:501378,78643,0 -(109,219:16320809,27105169:173670,78643,0 +(105,219:16156955,27105169:501378,78643,0 +(105,219:16320809,27105169:173670,78643,0 ) ) -(109,219:16658333,27105169:501378,78643,0 -(109,219:16822187,27105169:173670,78643,0 +(105,219:16658333,27105169:501378,78643,0 +(105,219:16822187,27105169:173670,78643,0 ) ) -(109,219:17159711,27105169:501378,78643,0 -(109,219:17323565,27105169:173670,78643,0 +(105,219:17159711,27105169:501378,78643,0 +(105,219:17323565,27105169:173670,78643,0 ) ) -(109,219:17661089,27105169:501378,78643,0 -(109,219:17824943,27105169:173670,78643,0 +(105,219:17661089,27105169:501378,78643,0 +(105,219:17824943,27105169:173670,78643,0 ) ) -(109,219:18162467,27105169:501378,78643,0 -(109,219:18326321,27105169:173670,78643,0 +(105,219:18162467,27105169:501378,78643,0 +(105,219:18326321,27105169:173670,78643,0 ) ) -(109,219:18663845,27105169:501378,78643,0 -(109,219:18827699,27105169:173670,78643,0 +(105,219:18663845,27105169:501378,78643,0 +(105,219:18827699,27105169:173670,78643,0 ) ) -(109,219:19165223,27105169:501378,78643,0 -(109,219:19329077,27105169:173670,78643,0 +(105,219:19165223,27105169:501378,78643,0 +(105,219:19329077,27105169:173670,78643,0 ) ) -(109,219:19666601,27105169:501378,78643,0 -(109,219:19830455,27105169:173670,78643,0 +(105,219:19666601,27105169:501378,78643,0 +(105,219:19830455,27105169:173670,78643,0 ) ) -(109,219:20167979,27105169:501378,78643,0 -(109,219:20331833,27105169:173670,78643,0 +(105,219:20167979,27105169:501378,78643,0 +(105,219:20331833,27105169:173670,78643,0 ) ) -(109,219:20669357,27105169:501378,78643,0 -(109,219:20833211,27105169:173670,78643,0 +(105,219:20669357,27105169:501378,78643,0 +(105,219:20833211,27105169:173670,78643,0 ) ) -(109,219:21170735,27105169:501378,78643,0 -(109,219:21334589,27105169:173670,78643,0 +(105,219:21170735,27105169:501378,78643,0 +(105,219:21334589,27105169:173670,78643,0 ) ) -(109,219:21672113,27105169:501378,78643,0 -(109,219:21835967,27105169:173670,78643,0 +(105,219:21672113,27105169:501378,78643,0 +(105,219:21835967,27105169:173670,78643,0 ) ) -(109,219:22173491,27105169:501378,78643,0 -(109,219:22337345,27105169:173670,78643,0 +(105,219:22173491,27105169:501378,78643,0 +(105,219:22337345,27105169:173670,78643,0 ) ) -(109,219:22674869,27105169:501378,78643,0 -(109,219:22838723,27105169:173670,78643,0 +(105,219:22674869,27105169:501378,78643,0 +(105,219:22838723,27105169:173670,78643,0 ) ) -(109,219:23176247,27105169:501378,78643,0 -(109,219:23340101,27105169:173670,78643,0 +(105,219:23176247,27105169:501378,78643,0 +(105,219:23340101,27105169:173670,78643,0 ) ) -(109,219:23677625,27105169:501378,78643,0 -(109,219:23841479,27105169:173670,78643,0 +(105,219:23677625,27105169:501378,78643,0 +(105,219:23841479,27105169:173670,78643,0 ) ) -(109,219:24179003,27105169:501378,78643,0 -(109,219:24342857,27105169:173670,78643,0 +(105,219:24179003,27105169:501378,78643,0 +(105,219:24342857,27105169:173670,78643,0 ) ) -(109,219:24680381,27105169:501378,78643,0 -(109,219:24844235,27105169:173670,78643,0 +(105,219:24680381,27105169:501378,78643,0 +(105,219:24844235,27105169:173670,78643,0 ) ) -(109,219:25181759,27105169:501378,78643,0 -(109,219:25345613,27105169:173670,78643,0 +(105,219:25181759,27105169:501378,78643,0 +(105,219:25345613,27105169:173670,78643,0 ) ) -(109,219:25683137,27105169:501378,78643,0 -(109,219:25846991,27105169:173670,78643,0 +(105,219:25683137,27105169:501378,78643,0 +(105,219:25846991,27105169:173670,78643,0 ) ) -(109,219:26184515,27105169:501378,78643,0 -(109,219:26348369,27105169:173670,78643,0 +(105,219:26184515,27105169:501378,78643,0 +(105,219:26348369,27105169:173670,78643,0 ) ) -(109,219:26685893,27105169:501378,78643,0 -(109,219:26849747,27105169:173670,78643,0 +(105,219:26685893,27105169:501378,78643,0 +(105,219:26849747,27105169:173670,78643,0 ) ) -(109,219:27187271,27105169:501378,78643,0 -(109,219:27351125,27105169:173670,78643,0 +(105,219:27187271,27105169:501378,78643,0 +(105,219:27351125,27105169:173670,78643,0 ) ) -(109,219:27688649,27105169:501378,78643,0 -(109,219:27852503,27105169:173670,78643,0 +(105,219:27688649,27105169:501378,78643,0 +(105,219:27852503,27105169:173670,78643,0 ) ) -(109,219:28190027,27105169:501378,78643,0 -(109,219:28353881,27105169:173670,78643,0 +(105,219:28190027,27105169:501378,78643,0 +(105,219:28353881,27105169:173670,78643,0 ) ) -(109,219:28691405,27105169:501378,78643,0 -(109,219:28855259,27105169:173670,78643,0 +(105,219:28691405,27105169:501378,78643,0 +(105,219:28855259,27105169:173670,78643,0 ) ) -(109,219:29192783,27105169:501378,78643,0 -(109,219:29356637,27105169:173670,78643,0 +(105,219:29192783,27105169:501378,78643,0 +(105,219:29356637,27105169:173670,78643,0 ) ) -(109,219:29694161,27105169:501378,78643,0 -(109,219:29858015,27105169:173670,78643,0 +(105,219:29694161,27105169:501378,78643,0 +(105,219:29858015,27105169:173670,78643,0 ) ) -(109,219:30195539,27105169:501378,78643,0 -(109,219:30359393,27105169:173670,78643,0 +(105,219:30195539,27105169:501378,78643,0 +(105,219:30359393,27105169:173670,78643,0 ) ) -(109,219:30696917,27105169:501378,78643,0 -(109,219:30860771,27105169:173670,78643,0 +(105,219:30696917,27105169:501378,78643,0 +(105,219:30860771,27105169:173670,78643,0 ) ) -(109,219:31403380,27105169:1179650,485622,11795 -k109,219:31403380,27105169:0 -k109,219:31536200,27105169:132820 +(105,219:31239540,27105169:1343490,485622,11795 +k105,219:31239540,27105169:0 +k105,219:31387653,27105169:148113 ) -g109,219:30911860,27105169 -g109,219:32583030,27105169 +g105,219:30911860,27105169 +g105,219:32583030,27105169 ) -(109,221:6630773,27946657:25952256,505283,134348 -g109,221:9121143,27946657 -h109,221:9121143,27946657:983040,0,0 -h109,221:10104183,27946657:0,0,0 -g109,221:7613813,27946657 -(109,221:7613813,27946657:1507330,481690,11795 -k109,221:9121143,27946657:536742 +(105,221:6630773,27946657:25952256,505283,134348 +g105,221:9121143,27946657 +h105,221:9121143,27946657:983040,0,0 +h105,221:10104183,27946657:0,0,0 +g105,221:7613813,27946657 +(105,221:7613813,27946657:1507330,481690,11795 +k105,221:9121143,27946657:536742 ) -g109,221:11898558,27946657 -g109,221:14504269,27946657 -g109,221:15894943,27946657 -g109,221:18878797,27946657 -g109,221:18878797,27946657 -(109,221:19165223,27946657:501378,78643,0 -$109,221:19165223,27946657 -(109,221:19329077,27946657:173670,78643,0 +g105,221:11898558,27946657 +g105,221:14504269,27946657 +g105,221:15894943,27946657 +g105,221:18878797,27946657 +g105,221:18878797,27946657 +(105,221:19165223,27946657:501378,78643,0 +$105,221:19165223,27946657 +(105,221:19329077,27946657:173670,78643,0 ) -$109,221:19666601,27946657 +$105,221:19666601,27946657 ) -(109,221:19666601,27946657:501378,78643,0 -(109,221:19830455,27946657:173670,78643,0 +(105,221:19666601,27946657:501378,78643,0 +(105,221:19830455,27946657:173670,78643,0 ) ) -(109,221:20167979,27946657:501378,78643,0 -(109,221:20331833,27946657:173670,78643,0 +(105,221:20167979,27946657:501378,78643,0 +(105,221:20331833,27946657:173670,78643,0 ) ) -(109,221:20669357,27946657:501378,78643,0 -(109,221:20833211,27946657:173670,78643,0 +(105,221:20669357,27946657:501378,78643,0 +(105,221:20833211,27946657:173670,78643,0 ) ) -(109,221:21170735,27946657:501378,78643,0 -(109,221:21334589,27946657:173670,78643,0 +(105,221:21170735,27946657:501378,78643,0 +(105,221:21334589,27946657:173670,78643,0 ) ) -(109,221:21672113,27946657:501378,78643,0 -(109,221:21835967,27946657:173670,78643,0 +(105,221:21672113,27946657:501378,78643,0 +(105,221:21835967,27946657:173670,78643,0 ) ) -(109,221:22173491,27946657:501378,78643,0 -(109,221:22337345,27946657:173670,78643,0 +(105,221:22173491,27946657:501378,78643,0 +(105,221:22337345,27946657:173670,78643,0 ) ) -(109,221:22674869,27946657:501378,78643,0 -(109,221:22838723,27946657:173670,78643,0 +(105,221:22674869,27946657:501378,78643,0 +(105,221:22838723,27946657:173670,78643,0 ) ) -(109,221:23176247,27946657:501378,78643,0 -(109,221:23340101,27946657:173670,78643,0 +(105,221:23176247,27946657:501378,78643,0 +(105,221:23340101,27946657:173670,78643,0 ) ) -(109,221:23677625,27946657:501378,78643,0 -(109,221:23841479,27946657:173670,78643,0 +(105,221:23677625,27946657:501378,78643,0 +(105,221:23841479,27946657:173670,78643,0 ) ) -(109,221:24179003,27946657:501378,78643,0 -(109,221:24342857,27946657:173670,78643,0 +(105,221:24179003,27946657:501378,78643,0 +(105,221:24342857,27946657:173670,78643,0 ) ) -(109,221:24680381,27946657:501378,78643,0 -(109,221:24844235,27946657:173670,78643,0 +(105,221:24680381,27946657:501378,78643,0 +(105,221:24844235,27946657:173670,78643,0 ) ) -(109,221:25181759,27946657:501378,78643,0 -(109,221:25345613,27946657:173670,78643,0 +(105,221:25181759,27946657:501378,78643,0 +(105,221:25345613,27946657:173670,78643,0 ) ) -(109,221:25683137,27946657:501378,78643,0 -(109,221:25846991,27946657:173670,78643,0 +(105,221:25683137,27946657:501378,78643,0 +(105,221:25846991,27946657:173670,78643,0 ) ) -(109,221:26184515,27946657:501378,78643,0 -(109,221:26348369,27946657:173670,78643,0 +(105,221:26184515,27946657:501378,78643,0 +(105,221:26348369,27946657:173670,78643,0 ) ) -(109,221:26685893,27946657:501378,78643,0 -(109,221:26849747,27946657:173670,78643,0 +(105,221:26685893,27946657:501378,78643,0 +(105,221:26849747,27946657:173670,78643,0 ) ) -(109,221:27187271,27946657:501378,78643,0 -(109,221:27351125,27946657:173670,78643,0 +(105,221:27187271,27946657:501378,78643,0 +(105,221:27351125,27946657:173670,78643,0 ) ) -(109,221:27688649,27946657:501378,78643,0 -(109,221:27852503,27946657:173670,78643,0 +(105,221:27688649,27946657:501378,78643,0 +(105,221:27852503,27946657:173670,78643,0 ) ) -(109,221:28190027,27946657:501378,78643,0 -(109,221:28353881,27946657:173670,78643,0 +(105,221:28190027,27946657:501378,78643,0 +(105,221:28353881,27946657:173670,78643,0 ) ) -(109,221:28691405,27946657:501378,78643,0 -(109,221:28855259,27946657:173670,78643,0 +(105,221:28691405,27946657:501378,78643,0 +(105,221:28855259,27946657:173670,78643,0 ) ) -(109,221:29192783,27946657:501378,78643,0 -(109,221:29356637,27946657:173670,78643,0 +(105,221:29192783,27946657:501378,78643,0 +(105,221:29356637,27946657:173670,78643,0 ) ) -(109,221:29694161,27946657:501378,78643,0 -(109,221:29858015,27946657:173670,78643,0 +(105,221:29694161,27946657:501378,78643,0 +(105,221:29858015,27946657:173670,78643,0 ) ) -(109,221:30195539,27946657:501378,78643,0 -(109,221:30359393,27946657:173670,78643,0 +(105,221:30195539,27946657:501378,78643,0 +(105,221:30359393,27946657:173670,78643,0 ) ) -(109,221:30696917,27946657:501378,78643,0 -(109,221:30860771,27946657:173670,78643,0 +(105,221:30696917,27946657:501378,78643,0 +(105,221:30860771,27946657:173670,78643,0 ) ) -(109,221:31403379,27946657:1179650,485622,11795 -k109,221:31403379,27946657:0 -k109,221:31536199,27946657:132820 +(105,221:31239539,27946657:1343490,485622,11795 +k105,221:31239539,27946657:0 +k105,221:31387652,27946657:148113 ) -g109,221:30911859,27946657 -g109,221:32583029,27946657 +g105,221:30911859,27946657 +g105,221:32583029,27946657 ) -(109,223:6630773,28788145:25952256,513147,126483 -g109,223:9121143,28788145 -h109,223:9121143,28788145:983040,0,0 -h109,223:10104183,28788145:0,0,0 -g109,223:7613813,28788145 -(109,223:7613813,28788145:1507330,473825,11795 -k109,223:9121143,28788145:536742 +(105,223:6630773,28788145:25952256,513147,126483 +g105,223:9121143,28788145 +h105,223:9121143,28788145:983040,0,0 +h105,223:10104183,28788145:0,0,0 +g105,223:7613813,28788145 +(105,223:7613813,28788145:1507330,473825,11795 +k105,223:9121143,28788145:536742 ) -g109,223:11171764,28788145 -g109,223:12030285,28788145 -g109,223:14297830,28788145 -g109,223:14297830,28788145 -(109,223:14652821,28788145:501378,78643,0 -$109,223:14652821,28788145 -(109,223:14816675,28788145:173670,78643,0 +g105,223:11171764,28788145 +g105,223:12030285,28788145 +g105,223:14297830,28788145 +g105,223:14297830,28788145 +(105,223:14652821,28788145:501378,78643,0 +$105,223:14652821,28788145 +(105,223:14816675,28788145:173670,78643,0 ) -$109,223:15154199,28788145 +$105,223:15154199,28788145 ) -(109,223:15154199,28788145:501378,78643,0 -(109,223:15318053,28788145:173670,78643,0 +(105,223:15154199,28788145:501378,78643,0 +(105,223:15318053,28788145:173670,78643,0 ) ) -(109,223:15655577,28788145:501378,78643,0 -(109,223:15819431,28788145:173670,78643,0 +(105,223:15655577,28788145:501378,78643,0 +(105,223:15819431,28788145:173670,78643,0 ) ) -(109,223:16156955,28788145:501378,78643,0 -(109,223:16320809,28788145:173670,78643,0 +(105,223:16156955,28788145:501378,78643,0 +(105,223:16320809,28788145:173670,78643,0 ) ) -(109,223:16658333,28788145:501378,78643,0 -(109,223:16822187,28788145:173670,78643,0 +(105,223:16658333,28788145:501378,78643,0 +(105,223:16822187,28788145:173670,78643,0 ) ) -(109,223:17159711,28788145:501378,78643,0 -(109,223:17323565,28788145:173670,78643,0 +(105,223:17159711,28788145:501378,78643,0 +(105,223:17323565,28788145:173670,78643,0 ) ) -(109,223:17661089,28788145:501378,78643,0 -(109,223:17824943,28788145:173670,78643,0 +(105,223:17661089,28788145:501378,78643,0 +(105,223:17824943,28788145:173670,78643,0 ) ) -(109,223:18162467,28788145:501378,78643,0 -(109,223:18326321,28788145:173670,78643,0 +(105,223:18162467,28788145:501378,78643,0 +(105,223:18326321,28788145:173670,78643,0 ) ) -(109,223:18663845,28788145:501378,78643,0 -(109,223:18827699,28788145:173670,78643,0 +(105,223:18663845,28788145:501378,78643,0 +(105,223:18827699,28788145:173670,78643,0 ) ) -(109,223:19165223,28788145:501378,78643,0 -(109,223:19329077,28788145:173670,78643,0 +(105,223:19165223,28788145:501378,78643,0 +(105,223:19329077,28788145:173670,78643,0 ) ) -(109,223:19666601,28788145:501378,78643,0 -(109,223:19830455,28788145:173670,78643,0 +(105,223:19666601,28788145:501378,78643,0 +(105,223:19830455,28788145:173670,78643,0 ) ) -(109,223:20167979,28788145:501378,78643,0 -(109,223:20331833,28788145:173670,78643,0 +(105,223:20167979,28788145:501378,78643,0 +(105,223:20331833,28788145:173670,78643,0 ) ) -(109,223:20669357,28788145:501378,78643,0 -(109,223:20833211,28788145:173670,78643,0 +(105,223:20669357,28788145:501378,78643,0 +(105,223:20833211,28788145:173670,78643,0 ) ) -(109,223:21170735,28788145:501378,78643,0 -(109,223:21334589,28788145:173670,78643,0 +(105,223:21170735,28788145:501378,78643,0 +(105,223:21334589,28788145:173670,78643,0 ) ) -(109,223:21672113,28788145:501378,78643,0 -(109,223:21835967,28788145:173670,78643,0 +(105,223:21672113,28788145:501378,78643,0 +(105,223:21835967,28788145:173670,78643,0 ) ) -(109,223:22173491,28788145:501378,78643,0 -(109,223:22337345,28788145:173670,78643,0 +(105,223:22173491,28788145:501378,78643,0 +(105,223:22337345,28788145:173670,78643,0 ) ) -(109,223:22674869,28788145:501378,78643,0 -(109,223:22838723,28788145:173670,78643,0 +(105,223:22674869,28788145:501378,78643,0 +(105,223:22838723,28788145:173670,78643,0 ) ) -(109,223:23176247,28788145:501378,78643,0 -(109,223:23340101,28788145:173670,78643,0 +(105,223:23176247,28788145:501378,78643,0 +(105,223:23340101,28788145:173670,78643,0 ) ) -(109,223:23677625,28788145:501378,78643,0 -(109,223:23841479,28788145:173670,78643,0 +(105,223:23677625,28788145:501378,78643,0 +(105,223:23841479,28788145:173670,78643,0 ) ) -(109,223:24179003,28788145:501378,78643,0 -(109,223:24342857,28788145:173670,78643,0 +(105,223:24179003,28788145:501378,78643,0 +(105,223:24342857,28788145:173670,78643,0 ) ) -(109,223:24680381,28788145:501378,78643,0 -(109,223:24844235,28788145:173670,78643,0 +(105,223:24680381,28788145:501378,78643,0 +(105,223:24844235,28788145:173670,78643,0 ) ) -(109,223:25181759,28788145:501378,78643,0 -(109,223:25345613,28788145:173670,78643,0 +(105,223:25181759,28788145:501378,78643,0 +(105,223:25345613,28788145:173670,78643,0 ) ) -(109,223:25683137,28788145:501378,78643,0 -(109,223:25846991,28788145:173670,78643,0 +(105,223:25683137,28788145:501378,78643,0 +(105,223:25846991,28788145:173670,78643,0 ) ) -(109,223:26184515,28788145:501378,78643,0 -(109,223:26348369,28788145:173670,78643,0 +(105,223:26184515,28788145:501378,78643,0 +(105,223:26348369,28788145:173670,78643,0 ) ) -(109,223:26685893,28788145:501378,78643,0 -(109,223:26849747,28788145:173670,78643,0 +(105,223:26685893,28788145:501378,78643,0 +(105,223:26849747,28788145:173670,78643,0 ) ) -(109,223:27187271,28788145:501378,78643,0 -(109,223:27351125,28788145:173670,78643,0 +(105,223:27187271,28788145:501378,78643,0 +(105,223:27351125,28788145:173670,78643,0 ) ) -(109,223:27688649,28788145:501378,78643,0 -(109,223:27852503,28788145:173670,78643,0 +(105,223:27688649,28788145:501378,78643,0 +(105,223:27852503,28788145:173670,78643,0 ) ) -(109,223:28190027,28788145:501378,78643,0 -(109,223:28353881,28788145:173670,78643,0 +(105,223:28190027,28788145:501378,78643,0 +(105,223:28353881,28788145:173670,78643,0 ) ) -(109,223:28691405,28788145:501378,78643,0 -(109,223:28855259,28788145:173670,78643,0 +(105,223:28691405,28788145:501378,78643,0 +(105,223:28855259,28788145:173670,78643,0 ) ) -(109,223:29192783,28788145:501378,78643,0 -(109,223:29356637,28788145:173670,78643,0 +(105,223:29192783,28788145:501378,78643,0 +(105,223:29356637,28788145:173670,78643,0 ) ) -(109,223:29694161,28788145:501378,78643,0 -(109,223:29858015,28788145:173670,78643,0 +(105,223:29694161,28788145:501378,78643,0 +(105,223:29858015,28788145:173670,78643,0 ) ) -(109,223:30195539,28788145:501378,78643,0 -(109,223:30359393,28788145:173670,78643,0 +(105,223:30195539,28788145:501378,78643,0 +(105,223:30359393,28788145:173670,78643,0 ) ) -(109,223:30696917,28788145:501378,78643,0 -(109,223:30860771,28788145:173670,78643,0 +(105,223:30696917,28788145:501378,78643,0 +(105,223:30860771,28788145:173670,78643,0 ) ) -(109,223:31403378,28788145:1179650,481690,0 -k109,223:31403378,28788145:0 -k109,223:31536198,28788145:132820 +(105,223:31239538,28788145:1343490,481690,0 +k105,223:31239538,28788145:0 +k105,223:31387651,28788145:148113 ) -g109,223:30911858,28788145 -g109,223:32583028,28788145 +g105,223:30911858,28788145 +g105,223:32583028,28788145 ) -(109,225:6630773,29629633:25952256,505283,134348 -g109,225:9121143,29629633 -h109,225:9121143,29629633:983040,0,0 -h109,225:10104183,29629633:0,0,0 -g109,225:7613813,29629633 -(109,225:7613813,29629633:1507330,485622,11795 -k109,225:9121143,29629633:536742 +(105,225:6630773,29629633:25952256,505283,134348 +g105,225:9121143,29629633 +h105,225:9121143,29629633:983040,0,0 +h105,225:10104183,29629633:0,0,0 +g105,225:7613813,29629633 +(105,225:7613813,29629633:1507330,485622,11795 +k105,225:9121143,29629633:536742 ) -g109,225:11690154,29629633 -g109,225:14291933,29629633 -g109,225:14291933,29629633 -(109,225:14652821,29629633:501378,78643,0 -$109,225:14652821,29629633 -(109,225:14816675,29629633:173670,78643,0 +g105,225:11690154,29629633 +g105,225:14291933,29629633 +g105,225:14291933,29629633 +(105,225:14652821,29629633:501378,78643,0 +$105,225:14652821,29629633 +(105,225:14816675,29629633:173670,78643,0 ) -$109,225:15154199,29629633 +$105,225:15154199,29629633 ) -(109,225:15154199,29629633:501378,78643,0 -(109,225:15318053,29629633:173670,78643,0 +(105,225:15154199,29629633:501378,78643,0 +(105,225:15318053,29629633:173670,78643,0 ) ) -(109,225:15655577,29629633:501378,78643,0 -(109,225:15819431,29629633:173670,78643,0 +(105,225:15655577,29629633:501378,78643,0 +(105,225:15819431,29629633:173670,78643,0 ) ) -(109,225:16156955,29629633:501378,78643,0 -(109,225:16320809,29629633:173670,78643,0 +(105,225:16156955,29629633:501378,78643,0 +(105,225:16320809,29629633:173670,78643,0 ) ) -(109,225:16658333,29629633:501378,78643,0 -(109,225:16822187,29629633:173670,78643,0 +(105,225:16658333,29629633:501378,78643,0 +(105,225:16822187,29629633:173670,78643,0 ) ) -(109,225:17159711,29629633:501378,78643,0 -(109,225:17323565,29629633:173670,78643,0 +(105,225:17159711,29629633:501378,78643,0 +(105,225:17323565,29629633:173670,78643,0 ) ) -(109,225:17661089,29629633:501378,78643,0 -(109,225:17824943,29629633:173670,78643,0 +(105,225:17661089,29629633:501378,78643,0 +(105,225:17824943,29629633:173670,78643,0 ) ) -(109,225:18162467,29629633:501378,78643,0 -(109,225:18326321,29629633:173670,78643,0 +(105,225:18162467,29629633:501378,78643,0 +(105,225:18326321,29629633:173670,78643,0 ) ) -(109,225:18663845,29629633:501378,78643,0 -(109,225:18827699,29629633:173670,78643,0 +(105,225:18663845,29629633:501378,78643,0 +(105,225:18827699,29629633:173670,78643,0 ) ) -(109,225:19165223,29629633:501378,78643,0 -(109,225:19329077,29629633:173670,78643,0 +(105,225:19165223,29629633:501378,78643,0 +(105,225:19329077,29629633:173670,78643,0 ) ) -(109,225:19666601,29629633:501378,78643,0 -(109,225:19830455,29629633:173670,78643,0 +(105,225:19666601,29629633:501378,78643,0 +(105,225:19830455,29629633:173670,78643,0 ) ) -(109,225:20167979,29629633:501378,78643,0 -(109,225:20331833,29629633:173670,78643,0 +(105,225:20167979,29629633:501378,78643,0 +(105,225:20331833,29629633:173670,78643,0 ) ) -(109,225:20669357,29629633:501378,78643,0 -(109,225:20833211,29629633:173670,78643,0 +(105,225:20669357,29629633:501378,78643,0 +(105,225:20833211,29629633:173670,78643,0 ) ) -(109,225:21170735,29629633:501378,78643,0 -(109,225:21334589,29629633:173670,78643,0 +(105,225:21170735,29629633:501378,78643,0 +(105,225:21334589,29629633:173670,78643,0 ) ) -(109,225:21672113,29629633:501378,78643,0 -(109,225:21835967,29629633:173670,78643,0 +(105,225:21672113,29629633:501378,78643,0 +(105,225:21835967,29629633:173670,78643,0 ) ) -(109,225:22173491,29629633:501378,78643,0 -(109,225:22337345,29629633:173670,78643,0 +(105,225:22173491,29629633:501378,78643,0 +(105,225:22337345,29629633:173670,78643,0 ) ) -(109,225:22674869,29629633:501378,78643,0 -(109,225:22838723,29629633:173670,78643,0 +(105,225:22674869,29629633:501378,78643,0 +(105,225:22838723,29629633:173670,78643,0 ) ) -(109,225:23176247,29629633:501378,78643,0 -(109,225:23340101,29629633:173670,78643,0 +(105,225:23176247,29629633:501378,78643,0 +(105,225:23340101,29629633:173670,78643,0 ) ) -(109,225:23677625,29629633:501378,78643,0 -(109,225:23841479,29629633:173670,78643,0 +(105,225:23677625,29629633:501378,78643,0 +(105,225:23841479,29629633:173670,78643,0 ) ) -(109,225:24179003,29629633:501378,78643,0 -(109,225:24342857,29629633:173670,78643,0 +(105,225:24179003,29629633:501378,78643,0 +(105,225:24342857,29629633:173670,78643,0 ) ) -(109,225:24680381,29629633:501378,78643,0 -(109,225:24844235,29629633:173670,78643,0 +(105,225:24680381,29629633:501378,78643,0 +(105,225:24844235,29629633:173670,78643,0 ) ) -(109,225:25181759,29629633:501378,78643,0 -(109,225:25345613,29629633:173670,78643,0 +(105,225:25181759,29629633:501378,78643,0 +(105,225:25345613,29629633:173670,78643,0 ) ) -(109,225:25683137,29629633:501378,78643,0 -(109,225:25846991,29629633:173670,78643,0 +(105,225:25683137,29629633:501378,78643,0 +(105,225:25846991,29629633:173670,78643,0 ) ) -(109,225:26184515,29629633:501378,78643,0 -(109,225:26348369,29629633:173670,78643,0 +(105,225:26184515,29629633:501378,78643,0 +(105,225:26348369,29629633:173670,78643,0 ) ) -(109,225:26685893,29629633:501378,78643,0 -(109,225:26849747,29629633:173670,78643,0 +(105,225:26685893,29629633:501378,78643,0 +(105,225:26849747,29629633:173670,78643,0 ) ) -(109,225:27187271,29629633:501378,78643,0 -(109,225:27351125,29629633:173670,78643,0 +(105,225:27187271,29629633:501378,78643,0 +(105,225:27351125,29629633:173670,78643,0 ) ) -(109,225:27688649,29629633:501378,78643,0 -(109,225:27852503,29629633:173670,78643,0 +(105,225:27688649,29629633:501378,78643,0 +(105,225:27852503,29629633:173670,78643,0 ) ) -(109,225:28190027,29629633:501378,78643,0 -(109,225:28353881,29629633:173670,78643,0 +(105,225:28190027,29629633:501378,78643,0 +(105,225:28353881,29629633:173670,78643,0 ) ) -(109,225:28691405,29629633:501378,78643,0 -(109,225:28855259,29629633:173670,78643,0 +(105,225:28691405,29629633:501378,78643,0 +(105,225:28855259,29629633:173670,78643,0 ) ) -(109,225:29192783,29629633:501378,78643,0 -(109,225:29356637,29629633:173670,78643,0 +(105,225:29192783,29629633:501378,78643,0 +(105,225:29356637,29629633:173670,78643,0 ) ) -(109,225:29694161,29629633:501378,78643,0 -(109,225:29858015,29629633:173670,78643,0 +(105,225:29694161,29629633:501378,78643,0 +(105,225:29858015,29629633:173670,78643,0 ) ) -(109,225:30195539,29629633:501378,78643,0 -(109,225:30359393,29629633:173670,78643,0 +(105,225:30195539,29629633:501378,78643,0 +(105,225:30359393,29629633:173670,78643,0 ) ) -(109,225:30696917,29629633:501378,78643,0 -(109,225:30860771,29629633:173670,78643,0 +(105,225:30696917,29629633:501378,78643,0 +(105,225:30860771,29629633:173670,78643,0 ) ) -(109,225:31403379,29629633:1179650,477757,11795 -k109,225:31403379,29629633:0 -k109,225:31536199,29629633:132820 +(105,225:31239539,29629633:1343490,477757,11795 +k105,225:31239539,29629633:0 +k105,225:31387652,29629633:148113 ) -g109,225:30911859,29629633 -g109,225:32583029,29629633 +g105,225:30911859,29629633 +g105,225:32583029,29629633 ) -(109,227:6630773,31126481:25952256,513147,134348 -g109,227:7613813,31126481 -h109,227:7613813,31126481:0,0,0 -g109,227:6630773,31126481 -(109,227:6630773,31126481:983040,485622,11795 -k109,227:7613813,31126481:574751 +(105,227:6630773,31126481:25952256,513147,134348 +g105,227:7613813,31126481 +h105,227:7613813,31126481:0,0,0 +g105,227:6630773,31126481 +(105,227:6630773,31126481:983040,485622,11795 +k105,227:7613813,31126481:574751 ) -g109,227:9279738,31126481 -g109,227:12821959,31126481 -g109,227:13703418,31126481 -k109,227:23258894,31126481:8144486 -k109,227:31403379,31126481:8144485 -(109,227:31403379,31126481:1179650,477757,0 -k109,227:31358161,31126481:-45218 +g105,227:9279738,31126481 +g105,227:12821959,31126481 +g105,227:13703418,31126481 +k105,227:23176974,31126481:8062566 +k105,227:31239539,31126481:8062565 +(105,227:31239539,31126481:1343490,477757,0 +k105,227:31358161,31126481:118622 ) -g109,227:31403379,31126481 -g109,227:32583029,31126481 +g105,227:31239539,31126481 +g105,227:32583029,31126481 ) -(109,229:6630773,31967969:25952256,513147,126483 -g109,229:9121143,31967969 -h109,229:9121143,31967969:983040,0,0 -h109,229:10104183,31967969:0,0,0 -g109,229:7613813,31967969 -(109,229:7613813,31967969:1507330,485622,11795 -k109,229:9121143,31967969:536742 +(105,229:6630773,31967969:25952256,513147,126483 +g105,229:9121143,31967969 +h105,229:9121143,31967969:983040,0,0 +h105,229:10104183,31967969:0,0,0 +g105,229:7613813,31967969 +(105,229:7613813,31967969:1507330,485622,11795 +k105,229:9121143,31967969:536742 ) -g109,229:10959427,31967969 -g109,229:11817948,31967969 -g109,229:13220418,31967969 -g109,229:15837270,31967969 -g109,229:15837270,31967969 -(109,229:16156955,31967969:501378,78643,0 -$109,229:16156955,31967969 -(109,229:16320809,31967969:173670,78643,0 +g105,229:10959427,31967969 +g105,229:11817948,31967969 +g105,229:13220418,31967969 +g105,229:15837270,31967969 +g105,229:15837270,31967969 +(105,229:16156955,31967969:501378,78643,0 +$105,229:16156955,31967969 +(105,229:16320809,31967969:173670,78643,0 ) -$109,229:16658333,31967969 +$105,229:16658333,31967969 ) -(109,229:16658333,31967969:501378,78643,0 -(109,229:16822187,31967969:173670,78643,0 +(105,229:16658333,31967969:501378,78643,0 +(105,229:16822187,31967969:173670,78643,0 ) ) -(109,229:17159711,31967969:501378,78643,0 -(109,229:17323565,31967969:173670,78643,0 +(105,229:17159711,31967969:501378,78643,0 +(105,229:17323565,31967969:173670,78643,0 ) ) -(109,229:17661089,31967969:501378,78643,0 -(109,229:17824943,31967969:173670,78643,0 +(105,229:17661089,31967969:501378,78643,0 +(105,229:17824943,31967969:173670,78643,0 ) ) -(109,229:18162467,31967969:501378,78643,0 -(109,229:18326321,31967969:173670,78643,0 +(105,229:18162467,31967969:501378,78643,0 +(105,229:18326321,31967969:173670,78643,0 ) ) -(109,229:18663845,31967969:501378,78643,0 -(109,229:18827699,31967969:173670,78643,0 +(105,229:18663845,31967969:501378,78643,0 +(105,229:18827699,31967969:173670,78643,0 ) ) -(109,229:19165223,31967969:501378,78643,0 -(109,229:19329077,31967969:173670,78643,0 +(105,229:19165223,31967969:501378,78643,0 +(105,229:19329077,31967969:173670,78643,0 ) ) -(109,229:19666601,31967969:501378,78643,0 -(109,229:19830455,31967969:173670,78643,0 +(105,229:19666601,31967969:501378,78643,0 +(105,229:19830455,31967969:173670,78643,0 ) ) -(109,229:20167979,31967969:501378,78643,0 -(109,229:20331833,31967969:173670,78643,0 +(105,229:20167979,31967969:501378,78643,0 +(105,229:20331833,31967969:173670,78643,0 ) ) -(109,229:20669357,31967969:501378,78643,0 -(109,229:20833211,31967969:173670,78643,0 +(105,229:20669357,31967969:501378,78643,0 +(105,229:20833211,31967969:173670,78643,0 ) ) -(109,229:21170735,31967969:501378,78643,0 -(109,229:21334589,31967969:173670,78643,0 +(105,229:21170735,31967969:501378,78643,0 +(105,229:21334589,31967969:173670,78643,0 ) ) -(109,229:21672113,31967969:501378,78643,0 -(109,229:21835967,31967969:173670,78643,0 +(105,229:21672113,31967969:501378,78643,0 +(105,229:21835967,31967969:173670,78643,0 ) ) -(109,229:22173491,31967969:501378,78643,0 -(109,229:22337345,31967969:173670,78643,0 +(105,229:22173491,31967969:501378,78643,0 +(105,229:22337345,31967969:173670,78643,0 ) ) -(109,229:22674869,31967969:501378,78643,0 -(109,229:22838723,31967969:173670,78643,0 +(105,229:22674869,31967969:501378,78643,0 +(105,229:22838723,31967969:173670,78643,0 ) ) -(109,229:23176247,31967969:501378,78643,0 -(109,229:23340101,31967969:173670,78643,0 +(105,229:23176247,31967969:501378,78643,0 +(105,229:23340101,31967969:173670,78643,0 ) ) -(109,229:23677625,31967969:501378,78643,0 -(109,229:23841479,31967969:173670,78643,0 +(105,229:23677625,31967969:501378,78643,0 +(105,229:23841479,31967969:173670,78643,0 ) ) -(109,229:24179003,31967969:501378,78643,0 -(109,229:24342857,31967969:173670,78643,0 +(105,229:24179003,31967969:501378,78643,0 +(105,229:24342857,31967969:173670,78643,0 ) ) -(109,229:24680381,31967969:501378,78643,0 -(109,229:24844235,31967969:173670,78643,0 +(105,229:24680381,31967969:501378,78643,0 +(105,229:24844235,31967969:173670,78643,0 ) ) -(109,229:25181759,31967969:501378,78643,0 -(109,229:25345613,31967969:173670,78643,0 +(105,229:25181759,31967969:501378,78643,0 +(105,229:25345613,31967969:173670,78643,0 ) ) -(109,229:25683137,31967969:501378,78643,0 -(109,229:25846991,31967969:173670,78643,0 +(105,229:25683137,31967969:501378,78643,0 +(105,229:25846991,31967969:173670,78643,0 ) ) -(109,229:26184515,31967969:501378,78643,0 -(109,229:26348369,31967969:173670,78643,0 +(105,229:26184515,31967969:501378,78643,0 +(105,229:26348369,31967969:173670,78643,0 ) ) -(109,229:26685893,31967969:501378,78643,0 -(109,229:26849747,31967969:173670,78643,0 +(105,229:26685893,31967969:501378,78643,0 +(105,229:26849747,31967969:173670,78643,0 ) ) -(109,229:27187271,31967969:501378,78643,0 -(109,229:27351125,31967969:173670,78643,0 +(105,229:27187271,31967969:501378,78643,0 +(105,229:27351125,31967969:173670,78643,0 ) ) -(109,229:27688649,31967969:501378,78643,0 -(109,229:27852503,31967969:173670,78643,0 +(105,229:27688649,31967969:501378,78643,0 +(105,229:27852503,31967969:173670,78643,0 ) ) -(109,229:28190027,31967969:501378,78643,0 -(109,229:28353881,31967969:173670,78643,0 +(105,229:28190027,31967969:501378,78643,0 +(105,229:28353881,31967969:173670,78643,0 ) ) -(109,229:28691405,31967969:501378,78643,0 -(109,229:28855259,31967969:173670,78643,0 +(105,229:28691405,31967969:501378,78643,0 +(105,229:28855259,31967969:173670,78643,0 ) ) -(109,229:29192783,31967969:501378,78643,0 -(109,229:29356637,31967969:173670,78643,0 +(105,229:29192783,31967969:501378,78643,0 +(105,229:29356637,31967969:173670,78643,0 ) ) -(109,229:29694161,31967969:501378,78643,0 -(109,229:29858015,31967969:173670,78643,0 +(105,229:29694161,31967969:501378,78643,0 +(105,229:29858015,31967969:173670,78643,0 ) ) -(109,229:30195539,31967969:501378,78643,0 -(109,229:30359393,31967969:173670,78643,0 +(105,229:30195539,31967969:501378,78643,0 +(105,229:30359393,31967969:173670,78643,0 ) ) -(109,229:30696917,31967969:501378,78643,0 -(109,229:30860771,31967969:173670,78643,0 +(105,229:30696917,31967969:501378,78643,0 +(105,229:30860771,31967969:173670,78643,0 ) ) -(109,229:31403379,31967969:1179650,477757,0 -k109,229:31403379,31967969:0 -k109,229:31536199,31967969:132820 +(105,229:31239539,31967969:1343490,477757,0 +k105,229:31239539,31967969:0 +k105,229:31387652,31967969:148113 ) -g109,229:30911859,31967969 -g109,229:32583029,31967969 +g105,229:30911859,31967969 +g105,229:32583029,31967969 ) -(109,231:6630773,32809457:25952256,505283,11795 -g109,231:9121143,32809457 -h109,231:9121143,32809457:983040,0,0 -h109,231:10104183,32809457:0,0,0 -g109,231:7613813,32809457 -(109,231:7613813,32809457:1507330,485622,11795 -k109,231:9121143,32809457:536742 +(105,231:6630773,32809457:25952256,505283,11795 +g105,231:9121143,32809457 +h105,231:9121143,32809457:983040,0,0 +h105,231:10104183,32809457:0,0,0 +g105,231:7613813,32809457 +(105,231:7613813,32809457:1507330,485622,11795 +k105,231:9121143,32809457:536742 ) -g109,231:13324622,32809457 -g109,231:13324622,32809457 -(109,231:13650065,32809457:501378,78643,0 -$109,231:13650065,32809457 -(109,231:13813919,32809457:173670,78643,0 +g105,231:13324622,32809457 +g105,231:13324622,32809457 +(105,231:13650065,32809457:501378,78643,0 +$105,231:13650065,32809457 +(105,231:13813919,32809457:173670,78643,0 ) -$109,231:14151443,32809457 +$105,231:14151443,32809457 ) -(109,231:14151443,32809457:501378,78643,0 -(109,231:14315297,32809457:173670,78643,0 +(105,231:14151443,32809457:501378,78643,0 +(105,231:14315297,32809457:173670,78643,0 ) ) -(109,231:14652821,32809457:501378,78643,0 -(109,231:14816675,32809457:173670,78643,0 +(105,231:14652821,32809457:501378,78643,0 +(105,231:14816675,32809457:173670,78643,0 ) ) -(109,231:15154199,32809457:501378,78643,0 -(109,231:15318053,32809457:173670,78643,0 +(105,231:15154199,32809457:501378,78643,0 +(105,231:15318053,32809457:173670,78643,0 ) ) -(109,231:15655577,32809457:501378,78643,0 -(109,231:15819431,32809457:173670,78643,0 +(105,231:15655577,32809457:501378,78643,0 +(105,231:15819431,32809457:173670,78643,0 ) ) -(109,231:16156955,32809457:501378,78643,0 -(109,231:16320809,32809457:173670,78643,0 +(105,231:16156955,32809457:501378,78643,0 +(105,231:16320809,32809457:173670,78643,0 ) ) -(109,231:16658333,32809457:501378,78643,0 -(109,231:16822187,32809457:173670,78643,0 +(105,231:16658333,32809457:501378,78643,0 +(105,231:16822187,32809457:173670,78643,0 ) ) -(109,231:17159711,32809457:501378,78643,0 -(109,231:17323565,32809457:173670,78643,0 +(105,231:17159711,32809457:501378,78643,0 +(105,231:17323565,32809457:173670,78643,0 ) ) -(109,231:17661089,32809457:501378,78643,0 -(109,231:17824943,32809457:173670,78643,0 +(105,231:17661089,32809457:501378,78643,0 +(105,231:17824943,32809457:173670,78643,0 ) ) -(109,231:18162467,32809457:501378,78643,0 -(109,231:18326321,32809457:173670,78643,0 +(105,231:18162467,32809457:501378,78643,0 +(105,231:18326321,32809457:173670,78643,0 ) ) -(109,231:18663845,32809457:501378,78643,0 -(109,231:18827699,32809457:173670,78643,0 +(105,231:18663845,32809457:501378,78643,0 +(105,231:18827699,32809457:173670,78643,0 ) ) -(109,231:19165223,32809457:501378,78643,0 -(109,231:19329077,32809457:173670,78643,0 +(105,231:19165223,32809457:501378,78643,0 +(105,231:19329077,32809457:173670,78643,0 ) ) -(109,231:19666601,32809457:501378,78643,0 -(109,231:19830455,32809457:173670,78643,0 +(105,231:19666601,32809457:501378,78643,0 +(105,231:19830455,32809457:173670,78643,0 ) ) -(109,231:20167979,32809457:501378,78643,0 -(109,231:20331833,32809457:173670,78643,0 +(105,231:20167979,32809457:501378,78643,0 +(105,231:20331833,32809457:173670,78643,0 ) ) -(109,231:20669357,32809457:501378,78643,0 -(109,231:20833211,32809457:173670,78643,0 +(105,231:20669357,32809457:501378,78643,0 +(105,231:20833211,32809457:173670,78643,0 ) ) -(109,231:21170735,32809457:501378,78643,0 -(109,231:21334589,32809457:173670,78643,0 +(105,231:21170735,32809457:501378,78643,0 +(105,231:21334589,32809457:173670,78643,0 ) ) -(109,231:21672113,32809457:501378,78643,0 -(109,231:21835967,32809457:173670,78643,0 +(105,231:21672113,32809457:501378,78643,0 +(105,231:21835967,32809457:173670,78643,0 ) ) -(109,231:22173491,32809457:501378,78643,0 -(109,231:22337345,32809457:173670,78643,0 +(105,231:22173491,32809457:501378,78643,0 +(105,231:22337345,32809457:173670,78643,0 ) ) -(109,231:22674869,32809457:501378,78643,0 -(109,231:22838723,32809457:173670,78643,0 +(105,231:22674869,32809457:501378,78643,0 +(105,231:22838723,32809457:173670,78643,0 ) ) -(109,231:23176247,32809457:501378,78643,0 -(109,231:23340101,32809457:173670,78643,0 +(105,231:23176247,32809457:501378,78643,0 +(105,231:23340101,32809457:173670,78643,0 ) ) -(109,231:23677625,32809457:501378,78643,0 -(109,231:23841479,32809457:173670,78643,0 +(105,231:23677625,32809457:501378,78643,0 +(105,231:23841479,32809457:173670,78643,0 ) ) -(109,231:24179003,32809457:501378,78643,0 -(109,231:24342857,32809457:173670,78643,0 +(105,231:24179003,32809457:501378,78643,0 +(105,231:24342857,32809457:173670,78643,0 ) ) -(109,231:24680381,32809457:501378,78643,0 -(109,231:24844235,32809457:173670,78643,0 +(105,231:24680381,32809457:501378,78643,0 +(105,231:24844235,32809457:173670,78643,0 ) ) -(109,231:25181759,32809457:501378,78643,0 -(109,231:25345613,32809457:173670,78643,0 +(105,231:25181759,32809457:501378,78643,0 +(105,231:25345613,32809457:173670,78643,0 ) ) -(109,231:25683137,32809457:501378,78643,0 -(109,231:25846991,32809457:173670,78643,0 +(105,231:25683137,32809457:501378,78643,0 +(105,231:25846991,32809457:173670,78643,0 ) ) -(109,231:26184515,32809457:501378,78643,0 -(109,231:26348369,32809457:173670,78643,0 +(105,231:26184515,32809457:501378,78643,0 +(105,231:26348369,32809457:173670,78643,0 ) ) -(109,231:26685893,32809457:501378,78643,0 -(109,231:26849747,32809457:173670,78643,0 +(105,231:26685893,32809457:501378,78643,0 +(105,231:26849747,32809457:173670,78643,0 ) ) -(109,231:27187271,32809457:501378,78643,0 -(109,231:27351125,32809457:173670,78643,0 +(105,231:27187271,32809457:501378,78643,0 +(105,231:27351125,32809457:173670,78643,0 ) ) -(109,231:27688649,32809457:501378,78643,0 -(109,231:27852503,32809457:173670,78643,0 +(105,231:27688649,32809457:501378,78643,0 +(105,231:27852503,32809457:173670,78643,0 ) ) -(109,231:28190027,32809457:501378,78643,0 -(109,231:28353881,32809457:173670,78643,0 +(105,231:28190027,32809457:501378,78643,0 +(105,231:28353881,32809457:173670,78643,0 ) ) -(109,231:28691405,32809457:501378,78643,0 -(109,231:28855259,32809457:173670,78643,0 +(105,231:28691405,32809457:501378,78643,0 +(105,231:28855259,32809457:173670,78643,0 ) ) -(109,231:29192783,32809457:501378,78643,0 -(109,231:29356637,32809457:173670,78643,0 +(105,231:29192783,32809457:501378,78643,0 +(105,231:29356637,32809457:173670,78643,0 ) ) -(109,231:29694161,32809457:501378,78643,0 -(109,231:29858015,32809457:173670,78643,0 +(105,231:29694161,32809457:501378,78643,0 +(105,231:29858015,32809457:173670,78643,0 ) ) -(109,231:30195539,32809457:501378,78643,0 -(109,231:30359393,32809457:173670,78643,0 +(105,231:30195539,32809457:501378,78643,0 +(105,231:30359393,32809457:173670,78643,0 ) ) -(109,231:30696917,32809457:501378,78643,0 -(109,231:30860771,32809457:173670,78643,0 +(105,231:30696917,32809457:501378,78643,0 +(105,231:30860771,32809457:173670,78643,0 ) ) -(109,231:31403378,32809457:1179650,477757,0 -k109,231:31403378,32809457:0 -k109,231:31536198,32809457:132820 +(105,231:31239538,32809457:1343490,477757,0 +k105,231:31239538,32809457:0 +k105,231:31387651,32809457:148113 ) -g109,231:30911858,32809457 -g109,231:32583028,32809457 +g105,231:30911858,32809457 +g105,231:32583028,32809457 ) -(109,233:6630773,33650945:25952256,505283,134348 -g109,233:9121143,33650945 -h109,233:9121143,33650945:983040,0,0 -h109,233:10104183,33650945:0,0,0 -g109,233:7613813,33650945 -(109,233:7613813,33650945:1507330,485622,11795 -k109,233:9121143,33650945:536742 +(105,233:6630773,33650945:25952256,505283,134348 +g105,233:9121143,33650945 +h105,233:9121143,33650945:983040,0,0 +h105,233:10104183,33650945:0,0,0 +g105,233:7613813,33650945 +(105,233:7613813,33650945:1507330,485622,11795 +k105,233:9121143,33650945:536742 ) -g109,233:12185606,33650945 -g109,233:13898061,33650945 -g109,233:14713328,33650945 -g109,233:16115798,33650945 -g109,233:18732650,33650945 -g109,233:18732650,33650945 -(109,233:19165223,33650945:501378,78643,0 -$109,233:19165223,33650945 -(109,233:19329077,33650945:173670,78643,0 +g105,233:12185606,33650945 +g105,233:13898061,33650945 +g105,233:14713328,33650945 +g105,233:16115798,33650945 +g105,233:18732650,33650945 +g105,233:18732650,33650945 +(105,233:19165223,33650945:501378,78643,0 +$105,233:19165223,33650945 +(105,233:19329077,33650945:173670,78643,0 ) -$109,233:19666601,33650945 +$105,233:19666601,33650945 ) -(109,233:19666601,33650945:501378,78643,0 -(109,233:19830455,33650945:173670,78643,0 +(105,233:19666601,33650945:501378,78643,0 +(105,233:19830455,33650945:173670,78643,0 ) ) -(109,233:20167979,33650945:501378,78643,0 -(109,233:20331833,33650945:173670,78643,0 +(105,233:20167979,33650945:501378,78643,0 +(105,233:20331833,33650945:173670,78643,0 ) ) -(109,233:20669357,33650945:501378,78643,0 -(109,233:20833211,33650945:173670,78643,0 +(105,233:20669357,33650945:501378,78643,0 +(105,233:20833211,33650945:173670,78643,0 ) ) -(109,233:21170735,33650945:501378,78643,0 -(109,233:21334589,33650945:173670,78643,0 +(105,233:21170735,33650945:501378,78643,0 +(105,233:21334589,33650945:173670,78643,0 ) ) -(109,233:21672113,33650945:501378,78643,0 -(109,233:21835967,33650945:173670,78643,0 +(105,233:21672113,33650945:501378,78643,0 +(105,233:21835967,33650945:173670,78643,0 ) ) -(109,233:22173491,33650945:501378,78643,0 -(109,233:22337345,33650945:173670,78643,0 +(105,233:22173491,33650945:501378,78643,0 +(105,233:22337345,33650945:173670,78643,0 ) ) -(109,233:22674869,33650945:501378,78643,0 -(109,233:22838723,33650945:173670,78643,0 +(105,233:22674869,33650945:501378,78643,0 +(105,233:22838723,33650945:173670,78643,0 ) ) -(109,233:23176247,33650945:501378,78643,0 -(109,233:23340101,33650945:173670,78643,0 +(105,233:23176247,33650945:501378,78643,0 +(105,233:23340101,33650945:173670,78643,0 ) ) -(109,233:23677625,33650945:501378,78643,0 -(109,233:23841479,33650945:173670,78643,0 +(105,233:23677625,33650945:501378,78643,0 +(105,233:23841479,33650945:173670,78643,0 ) ) -(109,233:24179003,33650945:501378,78643,0 -(109,233:24342857,33650945:173670,78643,0 +(105,233:24179003,33650945:501378,78643,0 +(105,233:24342857,33650945:173670,78643,0 ) ) -(109,233:24680381,33650945:501378,78643,0 -(109,233:24844235,33650945:173670,78643,0 +(105,233:24680381,33650945:501378,78643,0 +(105,233:24844235,33650945:173670,78643,0 ) ) -(109,233:25181759,33650945:501378,78643,0 -(109,233:25345613,33650945:173670,78643,0 +(105,233:25181759,33650945:501378,78643,0 +(105,233:25345613,33650945:173670,78643,0 ) ) -(109,233:25683137,33650945:501378,78643,0 -(109,233:25846991,33650945:173670,78643,0 +(105,233:25683137,33650945:501378,78643,0 +(105,233:25846991,33650945:173670,78643,0 ) ) -(109,233:26184515,33650945:501378,78643,0 -(109,233:26348369,33650945:173670,78643,0 +(105,233:26184515,33650945:501378,78643,0 +(105,233:26348369,33650945:173670,78643,0 ) ) -(109,233:26685893,33650945:501378,78643,0 -(109,233:26849747,33650945:173670,78643,0 +(105,233:26685893,33650945:501378,78643,0 +(105,233:26849747,33650945:173670,78643,0 ) ) -(109,233:27187271,33650945:501378,78643,0 -(109,233:27351125,33650945:173670,78643,0 +(105,233:27187271,33650945:501378,78643,0 +(105,233:27351125,33650945:173670,78643,0 ) ) -(109,233:27688649,33650945:501378,78643,0 -(109,233:27852503,33650945:173670,78643,0 +(105,233:27688649,33650945:501378,78643,0 +(105,233:27852503,33650945:173670,78643,0 ) ) -(109,233:28190027,33650945:501378,78643,0 -(109,233:28353881,33650945:173670,78643,0 +(105,233:28190027,33650945:501378,78643,0 +(105,233:28353881,33650945:173670,78643,0 ) ) -(109,233:28691405,33650945:501378,78643,0 -(109,233:28855259,33650945:173670,78643,0 +(105,233:28691405,33650945:501378,78643,0 +(105,233:28855259,33650945:173670,78643,0 ) ) -(109,233:29192783,33650945:501378,78643,0 -(109,233:29356637,33650945:173670,78643,0 +(105,233:29192783,33650945:501378,78643,0 +(105,233:29356637,33650945:173670,78643,0 ) ) -(109,233:29694161,33650945:501378,78643,0 -(109,233:29858015,33650945:173670,78643,0 +(105,233:29694161,33650945:501378,78643,0 +(105,233:29858015,33650945:173670,78643,0 ) ) -(109,233:30195539,33650945:501378,78643,0 -(109,233:30359393,33650945:173670,78643,0 +(105,233:30195539,33650945:501378,78643,0 +(105,233:30359393,33650945:173670,78643,0 ) ) -(109,233:30696917,33650945:501378,78643,0 -(109,233:30860771,33650945:173670,78643,0 +(105,233:30696917,33650945:501378,78643,0 +(105,233:30860771,33650945:173670,78643,0 ) ) -(109,233:31403379,33650945:1179650,485622,11795 -k109,233:31403379,33650945:0 -k109,233:31536199,33650945:132820 +(105,233:31239539,33650945:1343490,485622,11795 +k105,233:31239539,33650945:0 +k105,233:31387652,33650945:148113 ) -g109,233:30911859,33650945 -g109,233:32583029,33650945 +g105,233:30911859,33650945 +g105,233:32583029,33650945 ) -(109,235:6630773,34492433:25952256,513147,126483 -g109,235:9121143,34492433 -h109,235:9121143,34492433:983040,0,0 -h109,235:10104183,34492433:0,0,0 -g109,235:7613813,34492433 -(109,235:7613813,34492433:1507330,485622,11795 -k109,235:9121143,34492433:536742 +(105,235:6630773,34492433:25952256,513147,126483 +g105,235:9121143,34492433 +h105,235:9121143,34492433:983040,0,0 +h105,235:10104183,34492433:0,0,0 +g105,235:7613813,34492433 +(105,235:7613813,34492433:1507330,485622,11795 +k105,235:9121143,34492433:536742 ) -g109,235:13744708,34492433 -g109,235:14891588,34492433 -g109,235:19042638,34492433 -g109,235:19042638,34492433 -(109,235:19165223,34492433:501378,78643,0 -$109,235:19165223,34492433 -(109,235:19329077,34492433:173670,78643,0 +g105,235:13744708,34492433 +g105,235:14891588,34492433 +g105,235:19042638,34492433 +g105,235:19042638,34492433 +(105,235:19165223,34492433:501378,78643,0 +$105,235:19165223,34492433 +(105,235:19329077,34492433:173670,78643,0 ) -$109,235:19666601,34492433 +$105,235:19666601,34492433 ) -(109,235:19666601,34492433:501378,78643,0 -(109,235:19830455,34492433:173670,78643,0 +(105,235:19666601,34492433:501378,78643,0 +(105,235:19830455,34492433:173670,78643,0 ) ) -(109,235:20167979,34492433:501378,78643,0 -(109,235:20331833,34492433:173670,78643,0 +(105,235:20167979,34492433:501378,78643,0 +(105,235:20331833,34492433:173670,78643,0 ) ) -(109,235:20669357,34492433:501378,78643,0 -(109,235:20833211,34492433:173670,78643,0 +(105,235:20669357,34492433:501378,78643,0 +(105,235:20833211,34492433:173670,78643,0 ) ) -(109,235:21170735,34492433:501378,78643,0 -(109,235:21334589,34492433:173670,78643,0 +(105,235:21170735,34492433:501378,78643,0 +(105,235:21334589,34492433:173670,78643,0 ) ) -(109,235:21672113,34492433:501378,78643,0 -(109,235:21835967,34492433:173670,78643,0 +(105,235:21672113,34492433:501378,78643,0 +(105,235:21835967,34492433:173670,78643,0 ) ) -(109,235:22173491,34492433:501378,78643,0 -(109,235:22337345,34492433:173670,78643,0 +(105,235:22173491,34492433:501378,78643,0 +(105,235:22337345,34492433:173670,78643,0 ) ) -(109,235:22674869,34492433:501378,78643,0 -(109,235:22838723,34492433:173670,78643,0 +(105,235:22674869,34492433:501378,78643,0 +(105,235:22838723,34492433:173670,78643,0 ) ) -(109,235:23176247,34492433:501378,78643,0 -(109,235:23340101,34492433:173670,78643,0 +(105,235:23176247,34492433:501378,78643,0 +(105,235:23340101,34492433:173670,78643,0 ) ) -(109,235:23677625,34492433:501378,78643,0 -(109,235:23841479,34492433:173670,78643,0 +(105,235:23677625,34492433:501378,78643,0 +(105,235:23841479,34492433:173670,78643,0 ) ) -(109,235:24179003,34492433:501378,78643,0 -(109,235:24342857,34492433:173670,78643,0 +(105,235:24179003,34492433:501378,78643,0 +(105,235:24342857,34492433:173670,78643,0 ) ) -(109,235:24680381,34492433:501378,78643,0 -(109,235:24844235,34492433:173670,78643,0 +(105,235:24680381,34492433:501378,78643,0 +(105,235:24844235,34492433:173670,78643,0 ) ) -(109,235:25181759,34492433:501378,78643,0 -(109,235:25345613,34492433:173670,78643,0 +(105,235:25181759,34492433:501378,78643,0 +(105,235:25345613,34492433:173670,78643,0 ) ) -(109,235:25683137,34492433:501378,78643,0 -(109,235:25846991,34492433:173670,78643,0 +(105,235:25683137,34492433:501378,78643,0 +(105,235:25846991,34492433:173670,78643,0 ) ) -(109,235:26184515,34492433:501378,78643,0 -(109,235:26348369,34492433:173670,78643,0 +(105,235:26184515,34492433:501378,78643,0 +(105,235:26348369,34492433:173670,78643,0 ) ) -(109,235:26685893,34492433:501378,78643,0 -(109,235:26849747,34492433:173670,78643,0 +(105,235:26685893,34492433:501378,78643,0 +(105,235:26849747,34492433:173670,78643,0 ) ) -(109,235:27187271,34492433:501378,78643,0 -(109,235:27351125,34492433:173670,78643,0 +(105,235:27187271,34492433:501378,78643,0 +(105,235:27351125,34492433:173670,78643,0 ) ) -(109,235:27688649,34492433:501378,78643,0 -(109,235:27852503,34492433:173670,78643,0 +(105,235:27688649,34492433:501378,78643,0 +(105,235:27852503,34492433:173670,78643,0 ) ) -(109,235:28190027,34492433:501378,78643,0 -(109,235:28353881,34492433:173670,78643,0 +(105,235:28190027,34492433:501378,78643,0 +(105,235:28353881,34492433:173670,78643,0 ) ) -(109,235:28691405,34492433:501378,78643,0 -(109,235:28855259,34492433:173670,78643,0 +(105,235:28691405,34492433:501378,78643,0 +(105,235:28855259,34492433:173670,78643,0 ) ) -(109,235:29192783,34492433:501378,78643,0 -(109,235:29356637,34492433:173670,78643,0 +(105,235:29192783,34492433:501378,78643,0 +(105,235:29356637,34492433:173670,78643,0 ) ) -(109,235:29694161,34492433:501378,78643,0 -(109,235:29858015,34492433:173670,78643,0 +(105,235:29694161,34492433:501378,78643,0 +(105,235:29858015,34492433:173670,78643,0 ) ) -(109,235:30195539,34492433:501378,78643,0 -(109,235:30359393,34492433:173670,78643,0 +(105,235:30195539,34492433:501378,78643,0 +(105,235:30359393,34492433:173670,78643,0 ) ) -(109,235:30696917,34492433:501378,78643,0 -(109,235:30860771,34492433:173670,78643,0 +(105,235:30696917,34492433:501378,78643,0 +(105,235:30860771,34492433:173670,78643,0 ) ) -(109,235:31403379,34492433:1179650,485622,11795 -k109,235:31403379,34492433:0 -k109,235:31536199,34492433:132820 +(105,235:31239539,34492433:1343490,485622,11795 +k105,235:31239539,34492433:0 +k105,235:31387652,34492433:148113 ) -g109,235:30911859,34492433 -g109,235:32583029,34492433 +g105,235:30911859,34492433 +g105,235:32583029,34492433 ) -(109,237:6630773,35333921:25952256,505283,11795 -g109,237:11218293,35333921 -h109,237:11218293,35333921:2490370,0,0 -h109,237:13708663,35333921:0,0,0 -g109,237:9121143,35333921 -(109,237:9121143,35333921:2097150,485622,11795 -k109,237:11218293,35333921:554432 +(105,237:6630773,35333921:25952256,505283,11795 +g105,237:11218293,35333921 +h105,237:11218293,35333921:2490370,0,0 +h105,237:13708663,35333921:0,0,0 +g105,237:9121143,35333921 +(105,237:9121143,35333921:2097150,485622,11795 +k105,237:11218293,35333921:554432 ) -g109,237:14927629,35333921 -g109,237:14927629,35333921 -(109,237:15154199,35333921:501378,78643,0 -$109,237:15154199,35333921 -(109,237:15318053,35333921:173670,78643,0 +g105,237:14927629,35333921 +g105,237:14927629,35333921 +(105,237:15154199,35333921:501378,78643,0 +$105,237:15154199,35333921 +(105,237:15318053,35333921:173670,78643,0 ) -$109,237:15655577,35333921 +$105,237:15655577,35333921 ) -(109,237:15655577,35333921:501378,78643,0 -(109,237:15819431,35333921:173670,78643,0 +(105,237:15655577,35333921:501378,78643,0 +(105,237:15819431,35333921:173670,78643,0 ) ) -(109,237:16156955,35333921:501378,78643,0 -(109,237:16320809,35333921:173670,78643,0 +(105,237:16156955,35333921:501378,78643,0 +(105,237:16320809,35333921:173670,78643,0 ) ) -(109,237:16658333,35333921:501378,78643,0 -(109,237:16822187,35333921:173670,78643,0 +(105,237:16658333,35333921:501378,78643,0 +(105,237:16822187,35333921:173670,78643,0 ) ) -(109,237:17159711,35333921:501378,78643,0 -(109,237:17323565,35333921:173670,78643,0 +(105,237:17159711,35333921:501378,78643,0 +(105,237:17323565,35333921:173670,78643,0 ) ) -(109,237:17661089,35333921:501378,78643,0 -(109,237:17824943,35333921:173670,78643,0 +(105,237:17661089,35333921:501378,78643,0 +(105,237:17824943,35333921:173670,78643,0 ) ) -(109,237:18162467,35333921:501378,78643,0 -(109,237:18326321,35333921:173670,78643,0 +(105,237:18162467,35333921:501378,78643,0 +(105,237:18326321,35333921:173670,78643,0 ) ) -(109,237:18663845,35333921:501378,78643,0 -(109,237:18827699,35333921:173670,78643,0 +(105,237:18663845,35333921:501378,78643,0 +(105,237:18827699,35333921:173670,78643,0 ) ) -(109,237:19165223,35333921:501378,78643,0 -(109,237:19329077,35333921:173670,78643,0 +(105,237:19165223,35333921:501378,78643,0 +(105,237:19329077,35333921:173670,78643,0 ) ) -(109,237:19666601,35333921:501378,78643,0 -(109,237:19830455,35333921:173670,78643,0 +(105,237:19666601,35333921:501378,78643,0 +(105,237:19830455,35333921:173670,78643,0 ) ) -(109,237:20167979,35333921:501378,78643,0 -(109,237:20331833,35333921:173670,78643,0 +(105,237:20167979,35333921:501378,78643,0 +(105,237:20331833,35333921:173670,78643,0 ) ) -(109,237:20669357,35333921:501378,78643,0 -(109,237:20833211,35333921:173670,78643,0 +(105,237:20669357,35333921:501378,78643,0 +(105,237:20833211,35333921:173670,78643,0 ) ) -(109,237:21170735,35333921:501378,78643,0 -(109,237:21334589,35333921:173670,78643,0 +(105,237:21170735,35333921:501378,78643,0 +(105,237:21334589,35333921:173670,78643,0 ) ) -(109,237:21672113,35333921:501378,78643,0 -(109,237:21835967,35333921:173670,78643,0 +(105,237:21672113,35333921:501378,78643,0 +(105,237:21835967,35333921:173670,78643,0 ) ) -(109,237:22173491,35333921:501378,78643,0 -(109,237:22337345,35333921:173670,78643,0 +(105,237:22173491,35333921:501378,78643,0 +(105,237:22337345,35333921:173670,78643,0 ) ) -(109,237:22674869,35333921:501378,78643,0 -(109,237:22838723,35333921:173670,78643,0 +(105,237:22674869,35333921:501378,78643,0 +(105,237:22838723,35333921:173670,78643,0 ) ) -(109,237:23176247,35333921:501378,78643,0 -(109,237:23340101,35333921:173670,78643,0 +(105,237:23176247,35333921:501378,78643,0 +(105,237:23340101,35333921:173670,78643,0 ) ) -(109,237:23677625,35333921:501378,78643,0 -(109,237:23841479,35333921:173670,78643,0 +(105,237:23677625,35333921:501378,78643,0 +(105,237:23841479,35333921:173670,78643,0 ) ) -(109,237:24179003,35333921:501378,78643,0 -(109,237:24342857,35333921:173670,78643,0 +(105,237:24179003,35333921:501378,78643,0 +(105,237:24342857,35333921:173670,78643,0 ) ) -(109,237:24680381,35333921:501378,78643,0 -(109,237:24844235,35333921:173670,78643,0 +(105,237:24680381,35333921:501378,78643,0 +(105,237:24844235,35333921:173670,78643,0 ) ) -(109,237:25181759,35333921:501378,78643,0 -(109,237:25345613,35333921:173670,78643,0 +(105,237:25181759,35333921:501378,78643,0 +(105,237:25345613,35333921:173670,78643,0 ) ) -(109,237:25683137,35333921:501378,78643,0 -(109,237:25846991,35333921:173670,78643,0 +(105,237:25683137,35333921:501378,78643,0 +(105,237:25846991,35333921:173670,78643,0 ) ) -(109,237:26184515,35333921:501378,78643,0 -(109,237:26348369,35333921:173670,78643,0 +(105,237:26184515,35333921:501378,78643,0 +(105,237:26348369,35333921:173670,78643,0 ) ) -(109,237:26685893,35333921:501378,78643,0 -(109,237:26849747,35333921:173670,78643,0 +(105,237:26685893,35333921:501378,78643,0 +(105,237:26849747,35333921:173670,78643,0 ) ) -(109,237:27187271,35333921:501378,78643,0 -(109,237:27351125,35333921:173670,78643,0 +(105,237:27187271,35333921:501378,78643,0 +(105,237:27351125,35333921:173670,78643,0 ) ) -(109,237:27688649,35333921:501378,78643,0 -(109,237:27852503,35333921:173670,78643,0 +(105,237:27688649,35333921:501378,78643,0 +(105,237:27852503,35333921:173670,78643,0 ) ) -(109,237:28190027,35333921:501378,78643,0 -(109,237:28353881,35333921:173670,78643,0 +(105,237:28190027,35333921:501378,78643,0 +(105,237:28353881,35333921:173670,78643,0 ) ) -(109,237:28691405,35333921:501378,78643,0 -(109,237:28855259,35333921:173670,78643,0 +(105,237:28691405,35333921:501378,78643,0 +(105,237:28855259,35333921:173670,78643,0 ) ) -(109,237:29192783,35333921:501378,78643,0 -(109,237:29356637,35333921:173670,78643,0 +(105,237:29192783,35333921:501378,78643,0 +(105,237:29356637,35333921:173670,78643,0 ) ) -(109,237:29694161,35333921:501378,78643,0 -(109,237:29858015,35333921:173670,78643,0 +(105,237:29694161,35333921:501378,78643,0 +(105,237:29858015,35333921:173670,78643,0 ) ) -(109,237:30195539,35333921:501378,78643,0 -(109,237:30359393,35333921:173670,78643,0 +(105,237:30195539,35333921:501378,78643,0 +(105,237:30359393,35333921:173670,78643,0 ) ) -(109,237:30696917,35333921:501378,78643,0 -(109,237:30860771,35333921:173670,78643,0 +(105,237:30696917,35333921:501378,78643,0 +(105,237:30860771,35333921:173670,78643,0 ) ) -(109,237:31403379,35333921:1179650,485622,11795 -k109,237:31403379,35333921:0 -k109,237:31536199,35333921:132820 +(105,237:31239539,35333921:1343490,485622,11795 +k105,237:31239539,35333921:0 +k105,237:31387652,35333921:148113 ) -g109,237:30911859,35333921 -g109,237:32583029,35333921 +g105,237:30911859,35333921 +g105,237:32583029,35333921 ) -(109,239:6630773,36175409:25952256,505283,11795 -g109,239:11218293,36175409 -h109,239:11218293,36175409:2490370,0,0 -h109,239:13708663,36175409:0,0,0 -g109,239:9121143,36175409 -(109,239:9121143,36175409:2097150,485622,11795 -k109,239:11218293,36175409:554432 +(105,239:6630773,36175409:25952256,505283,11795 +g105,239:11218293,36175409 +h105,239:11218293,36175409:2490370,0,0 +h105,239:13708663,36175409:0,0,0 +g105,239:9121143,36175409 +(105,239:9121143,36175409:2097150,485622,11795 +k105,239:11218293,36175409:554432 ) -g109,239:13579554,36175409 -g109,239:13579554,36175409 -(109,239:13650065,36175409:501378,78643,0 -$109,239:13650065,36175409 -(109,239:13813919,36175409:173670,78643,0 +g105,239:13579554,36175409 +g105,239:13579554,36175409 +(105,239:13650065,36175409:501378,78643,0 +$105,239:13650065,36175409 +(105,239:13813919,36175409:173670,78643,0 ) -$109,239:14151443,36175409 +$105,239:14151443,36175409 ) -(109,239:14151443,36175409:501378,78643,0 -(109,239:14315297,36175409:173670,78643,0 +(105,239:14151443,36175409:501378,78643,0 +(105,239:14315297,36175409:173670,78643,0 ) ) -(109,239:14652821,36175409:501378,78643,0 -(109,239:14816675,36175409:173670,78643,0 +(105,239:14652821,36175409:501378,78643,0 +(105,239:14816675,36175409:173670,78643,0 ) ) -(109,239:15154199,36175409:501378,78643,0 -(109,239:15318053,36175409:173670,78643,0 +(105,239:15154199,36175409:501378,78643,0 +(105,239:15318053,36175409:173670,78643,0 ) ) -(109,239:15655577,36175409:501378,78643,0 -(109,239:15819431,36175409:173670,78643,0 +(105,239:15655577,36175409:501378,78643,0 +(105,239:15819431,36175409:173670,78643,0 ) ) -(109,239:16156955,36175409:501378,78643,0 -(109,239:16320809,36175409:173670,78643,0 +(105,239:16156955,36175409:501378,78643,0 +(105,239:16320809,36175409:173670,78643,0 ) ) -(109,239:16658333,36175409:501378,78643,0 -(109,239:16822187,36175409:173670,78643,0 +(105,239:16658333,36175409:501378,78643,0 +(105,239:16822187,36175409:173670,78643,0 ) ) -(109,239:17159711,36175409:501378,78643,0 -(109,239:17323565,36175409:173670,78643,0 +(105,239:17159711,36175409:501378,78643,0 +(105,239:17323565,36175409:173670,78643,0 ) ) -(109,239:17661089,36175409:501378,78643,0 -(109,239:17824943,36175409:173670,78643,0 +(105,239:17661089,36175409:501378,78643,0 +(105,239:17824943,36175409:173670,78643,0 ) ) -(109,239:18162467,36175409:501378,78643,0 -(109,239:18326321,36175409:173670,78643,0 +(105,239:18162467,36175409:501378,78643,0 +(105,239:18326321,36175409:173670,78643,0 ) ) -(109,239:18663845,36175409:501378,78643,0 -(109,239:18827699,36175409:173670,78643,0 +(105,239:18663845,36175409:501378,78643,0 +(105,239:18827699,36175409:173670,78643,0 ) ) -(109,239:19165223,36175409:501378,78643,0 -(109,239:19329077,36175409:173670,78643,0 +(105,239:19165223,36175409:501378,78643,0 +(105,239:19329077,36175409:173670,78643,0 ) ) -(109,239:19666601,36175409:501378,78643,0 -(109,239:19830455,36175409:173670,78643,0 +(105,239:19666601,36175409:501378,78643,0 +(105,239:19830455,36175409:173670,78643,0 ) ) -(109,239:20167979,36175409:501378,78643,0 -(109,239:20331833,36175409:173670,78643,0 +(105,239:20167979,36175409:501378,78643,0 +(105,239:20331833,36175409:173670,78643,0 ) ) -(109,239:20669357,36175409:501378,78643,0 -(109,239:20833211,36175409:173670,78643,0 +(105,239:20669357,36175409:501378,78643,0 +(105,239:20833211,36175409:173670,78643,0 ) ) -(109,239:21170735,36175409:501378,78643,0 -(109,239:21334589,36175409:173670,78643,0 +(105,239:21170735,36175409:501378,78643,0 +(105,239:21334589,36175409:173670,78643,0 ) ) -(109,239:21672113,36175409:501378,78643,0 -(109,239:21835967,36175409:173670,78643,0 +(105,239:21672113,36175409:501378,78643,0 +(105,239:21835967,36175409:173670,78643,0 ) ) -(109,239:22173491,36175409:501378,78643,0 -(109,239:22337345,36175409:173670,78643,0 +(105,239:22173491,36175409:501378,78643,0 +(105,239:22337345,36175409:173670,78643,0 ) ) -(109,239:22674869,36175409:501378,78643,0 -(109,239:22838723,36175409:173670,78643,0 +(105,239:22674869,36175409:501378,78643,0 +(105,239:22838723,36175409:173670,78643,0 ) ) -(109,239:23176247,36175409:501378,78643,0 -(109,239:23340101,36175409:173670,78643,0 +(105,239:23176247,36175409:501378,78643,0 +(105,239:23340101,36175409:173670,78643,0 ) ) -(109,239:23677625,36175409:501378,78643,0 -(109,239:23841479,36175409:173670,78643,0 +(105,239:23677625,36175409:501378,78643,0 +(105,239:23841479,36175409:173670,78643,0 ) ) -(109,239:24179003,36175409:501378,78643,0 -(109,239:24342857,36175409:173670,78643,0 +(105,239:24179003,36175409:501378,78643,0 +(105,239:24342857,36175409:173670,78643,0 ) ) -(109,239:24680381,36175409:501378,78643,0 -(109,239:24844235,36175409:173670,78643,0 +(105,239:24680381,36175409:501378,78643,0 +(105,239:24844235,36175409:173670,78643,0 ) ) -(109,239:25181759,36175409:501378,78643,0 -(109,239:25345613,36175409:173670,78643,0 +(105,239:25181759,36175409:501378,78643,0 +(105,239:25345613,36175409:173670,78643,0 ) ) -(109,239:25683137,36175409:501378,78643,0 -(109,239:25846991,36175409:173670,78643,0 +(105,239:25683137,36175409:501378,78643,0 +(105,239:25846991,36175409:173670,78643,0 ) ) -(109,239:26184515,36175409:501378,78643,0 -(109,239:26348369,36175409:173670,78643,0 +(105,239:26184515,36175409:501378,78643,0 +(105,239:26348369,36175409:173670,78643,0 ) ) -(109,239:26685893,36175409:501378,78643,0 -(109,239:26849747,36175409:173670,78643,0 +(105,239:26685893,36175409:501378,78643,0 +(105,239:26849747,36175409:173670,78643,0 ) ) -(109,239:27187271,36175409:501378,78643,0 -(109,239:27351125,36175409:173670,78643,0 +(105,239:27187271,36175409:501378,78643,0 +(105,239:27351125,36175409:173670,78643,0 ) ) -(109,239:27688649,36175409:501378,78643,0 -(109,239:27852503,36175409:173670,78643,0 +(105,239:27688649,36175409:501378,78643,0 +(105,239:27852503,36175409:173670,78643,0 ) ) -(109,239:28190027,36175409:501378,78643,0 -(109,239:28353881,36175409:173670,78643,0 +(105,239:28190027,36175409:501378,78643,0 +(105,239:28353881,36175409:173670,78643,0 ) ) -(109,239:28691405,36175409:501378,78643,0 -(109,239:28855259,36175409:173670,78643,0 +(105,239:28691405,36175409:501378,78643,0 +(105,239:28855259,36175409:173670,78643,0 ) ) -(109,239:29192783,36175409:501378,78643,0 -(109,239:29356637,36175409:173670,78643,0 +(105,239:29192783,36175409:501378,78643,0 +(105,239:29356637,36175409:173670,78643,0 ) ) -(109,239:29694161,36175409:501378,78643,0 -(109,239:29858015,36175409:173670,78643,0 +(105,239:29694161,36175409:501378,78643,0 +(105,239:29858015,36175409:173670,78643,0 ) ) -(109,239:30195539,36175409:501378,78643,0 -(109,239:30359393,36175409:173670,78643,0 +(105,239:30195539,36175409:501378,78643,0 +(105,239:30359393,36175409:173670,78643,0 ) ) -(109,239:30696917,36175409:501378,78643,0 -(109,239:30860771,36175409:173670,78643,0 +(105,239:30696917,36175409:501378,78643,0 +(105,239:30860771,36175409:173670,78643,0 ) ) -(109,239:31403378,36175409:1179650,485622,11795 -k109,239:31403378,36175409:0 -k109,239:31536198,36175409:132820 +(105,239:31239538,36175409:1343490,485622,11795 +k105,239:31239538,36175409:0 +k105,239:31387651,36175409:148113 ) -g109,239:30911858,36175409 -g109,239:32583028,36175409 +g105,239:30911858,36175409 +g105,239:32583028,36175409 ) -(109,241:6630773,37016897:25952256,485622,126483 -g109,241:9121143,37016897 -h109,241:9121143,37016897:983040,0,0 -h109,241:10104183,37016897:0,0,0 -g109,241:7613813,37016897 -(109,241:7613813,37016897:1507330,485622,11795 -k109,241:9121143,37016897:536742 +(105,241:6630773,37016897:25952256,485622,126483 +g105,241:9121143,37016897 +h105,241:9121143,37016897:983040,0,0 +h105,241:10104183,37016897:0,0,0 +g105,241:7613813,37016897 +(105,241:7613813,37016897:1507330,485622,11795 +k105,241:9121143,37016897:536742 ) -g109,241:10792311,37016897 -g109,241:12711860,37016897 -g109,241:12711860,37016897 -(109,241:13148687,37016897:501378,78643,0 -$109,241:13148687,37016897 -(109,241:13312541,37016897:173670,78643,0 +g105,241:10792311,37016897 +g105,241:12711860,37016897 +g105,241:12711860,37016897 +(105,241:13148687,37016897:501378,78643,0 +$105,241:13148687,37016897 +(105,241:13312541,37016897:173670,78643,0 ) -$109,241:13650065,37016897 +$105,241:13650065,37016897 ) -(109,241:13650065,37016897:501378,78643,0 -(109,241:13813919,37016897:173670,78643,0 +(105,241:13650065,37016897:501378,78643,0 +(105,241:13813919,37016897:173670,78643,0 ) ) -(109,241:14151443,37016897:501378,78643,0 -(109,241:14315297,37016897:173670,78643,0 +(105,241:14151443,37016897:501378,78643,0 +(105,241:14315297,37016897:173670,78643,0 ) ) -(109,241:14652821,37016897:501378,78643,0 -(109,241:14816675,37016897:173670,78643,0 +(105,241:14652821,37016897:501378,78643,0 +(105,241:14816675,37016897:173670,78643,0 ) ) -(109,241:15154199,37016897:501378,78643,0 -(109,241:15318053,37016897:173670,78643,0 +(105,241:15154199,37016897:501378,78643,0 +(105,241:15318053,37016897:173670,78643,0 ) ) -(109,241:15655577,37016897:501378,78643,0 -(109,241:15819431,37016897:173670,78643,0 +(105,241:15655577,37016897:501378,78643,0 +(105,241:15819431,37016897:173670,78643,0 ) ) -(109,241:16156955,37016897:501378,78643,0 -(109,241:16320809,37016897:173670,78643,0 +(105,241:16156955,37016897:501378,78643,0 +(105,241:16320809,37016897:173670,78643,0 ) ) -(109,241:16658333,37016897:501378,78643,0 -(109,241:16822187,37016897:173670,78643,0 +(105,241:16658333,37016897:501378,78643,0 +(105,241:16822187,37016897:173670,78643,0 ) ) -(109,241:17159711,37016897:501378,78643,0 -(109,241:17323565,37016897:173670,78643,0 +(105,241:17159711,37016897:501378,78643,0 +(105,241:17323565,37016897:173670,78643,0 ) ) -(109,241:17661089,37016897:501378,78643,0 -(109,241:17824943,37016897:173670,78643,0 +(105,241:17661089,37016897:501378,78643,0 +(105,241:17824943,37016897:173670,78643,0 ) ) -(109,241:18162467,37016897:501378,78643,0 -(109,241:18326321,37016897:173670,78643,0 +(105,241:18162467,37016897:501378,78643,0 +(105,241:18326321,37016897:173670,78643,0 ) ) -(109,241:18663845,37016897:501378,78643,0 -(109,241:18827699,37016897:173670,78643,0 +(105,241:18663845,37016897:501378,78643,0 +(105,241:18827699,37016897:173670,78643,0 ) ) -(109,241:19165223,37016897:501378,78643,0 -(109,241:19329077,37016897:173670,78643,0 +(105,241:19165223,37016897:501378,78643,0 +(105,241:19329077,37016897:173670,78643,0 ) ) -(109,241:19666601,37016897:501378,78643,0 -(109,241:19830455,37016897:173670,78643,0 +(105,241:19666601,37016897:501378,78643,0 +(105,241:19830455,37016897:173670,78643,0 ) ) -(109,241:20167979,37016897:501378,78643,0 -(109,241:20331833,37016897:173670,78643,0 +(105,241:20167979,37016897:501378,78643,0 +(105,241:20331833,37016897:173670,78643,0 ) ) -(109,241:20669357,37016897:501378,78643,0 -(109,241:20833211,37016897:173670,78643,0 +(105,241:20669357,37016897:501378,78643,0 +(105,241:20833211,37016897:173670,78643,0 ) ) -(109,241:21170735,37016897:501378,78643,0 -(109,241:21334589,37016897:173670,78643,0 +(105,241:21170735,37016897:501378,78643,0 +(105,241:21334589,37016897:173670,78643,0 ) ) -(109,241:21672113,37016897:501378,78643,0 -(109,241:21835967,37016897:173670,78643,0 +(105,241:21672113,37016897:501378,78643,0 +(105,241:21835967,37016897:173670,78643,0 ) ) -(109,241:22173491,37016897:501378,78643,0 -(109,241:22337345,37016897:173670,78643,0 +(105,241:22173491,37016897:501378,78643,0 +(105,241:22337345,37016897:173670,78643,0 ) ) -(109,241:22674869,37016897:501378,78643,0 -(109,241:22838723,37016897:173670,78643,0 +(105,241:22674869,37016897:501378,78643,0 +(105,241:22838723,37016897:173670,78643,0 ) ) -(109,241:23176247,37016897:501378,78643,0 -(109,241:23340101,37016897:173670,78643,0 +(105,241:23176247,37016897:501378,78643,0 +(105,241:23340101,37016897:173670,78643,0 ) ) -(109,241:23677625,37016897:501378,78643,0 -(109,241:23841479,37016897:173670,78643,0 +(105,241:23677625,37016897:501378,78643,0 +(105,241:23841479,37016897:173670,78643,0 ) ) -(109,241:24179003,37016897:501378,78643,0 -(109,241:24342857,37016897:173670,78643,0 +(105,241:24179003,37016897:501378,78643,0 +(105,241:24342857,37016897:173670,78643,0 ) ) -(109,241:24680381,37016897:501378,78643,0 -(109,241:24844235,37016897:173670,78643,0 +(105,241:24680381,37016897:501378,78643,0 +(105,241:24844235,37016897:173670,78643,0 ) ) -(109,241:25181759,37016897:501378,78643,0 -(109,241:25345613,37016897:173670,78643,0 +(105,241:25181759,37016897:501378,78643,0 +(105,241:25345613,37016897:173670,78643,0 ) ) -(109,241:25683137,37016897:501378,78643,0 -(109,241:25846991,37016897:173670,78643,0 +(105,241:25683137,37016897:501378,78643,0 +(105,241:25846991,37016897:173670,78643,0 ) ) -(109,241:26184515,37016897:501378,78643,0 -(109,241:26348369,37016897:173670,78643,0 +(105,241:26184515,37016897:501378,78643,0 +(105,241:26348369,37016897:173670,78643,0 ) ) -(109,241:26685893,37016897:501378,78643,0 -(109,241:26849747,37016897:173670,78643,0 +(105,241:26685893,37016897:501378,78643,0 +(105,241:26849747,37016897:173670,78643,0 ) ) -(109,241:27187271,37016897:501378,78643,0 -(109,241:27351125,37016897:173670,78643,0 +(105,241:27187271,37016897:501378,78643,0 +(105,241:27351125,37016897:173670,78643,0 ) ) -(109,241:27688649,37016897:501378,78643,0 -(109,241:27852503,37016897:173670,78643,0 +(105,241:27688649,37016897:501378,78643,0 +(105,241:27852503,37016897:173670,78643,0 ) ) -(109,241:28190027,37016897:501378,78643,0 -(109,241:28353881,37016897:173670,78643,0 +(105,241:28190027,37016897:501378,78643,0 +(105,241:28353881,37016897:173670,78643,0 ) ) -(109,241:28691405,37016897:501378,78643,0 -(109,241:28855259,37016897:173670,78643,0 +(105,241:28691405,37016897:501378,78643,0 +(105,241:28855259,37016897:173670,78643,0 ) ) -(109,241:29192783,37016897:501378,78643,0 -(109,241:29356637,37016897:173670,78643,0 +(105,241:29192783,37016897:501378,78643,0 +(105,241:29356637,37016897:173670,78643,0 ) ) -(109,241:29694161,37016897:501378,78643,0 -(109,241:29858015,37016897:173670,78643,0 +(105,241:29694161,37016897:501378,78643,0 +(105,241:29858015,37016897:173670,78643,0 ) ) -(109,241:30195539,37016897:501378,78643,0 -(109,241:30359393,37016897:173670,78643,0 +(105,241:30195539,37016897:501378,78643,0 +(105,241:30359393,37016897:173670,78643,0 ) ) -(109,241:30696917,37016897:501378,78643,0 -(109,241:30860771,37016897:173670,78643,0 +(105,241:30696917,37016897:501378,78643,0 +(105,241:30860771,37016897:173670,78643,0 ) ) -(109,241:31403380,37016897:1179650,485622,11795 -k109,241:31403380,37016897:0 -k109,241:31536200,37016897:132820 +(105,241:31239540,37016897:1343490,485622,11795 +k105,241:31239540,37016897:0 +k105,241:31387653,37016897:148113 ) -g109,241:30911860,37016897 -g109,241:32583030,37016897 +g105,241:30911860,37016897 +g105,241:32583030,37016897 ) -(109,243:6630773,37858385:25952256,505283,134348 -g109,243:11218293,37858385 -h109,243:11218293,37858385:2490370,0,0 -h109,243:13708663,37858385:0,0,0 -g109,243:9121143,37858385 -(109,243:9121143,37858385:2097150,485622,11795 -k109,243:11218293,37858385:554432 +(105,243:6630773,37858385:25952256,505283,134348 +g105,243:11218293,37858385 +h105,243:11218293,37858385:2490370,0,0 +h105,243:13708663,37858385:0,0,0 +g105,243:9121143,37858385 +(105,243:9121143,37858385:2097150,485622,11795 +k105,243:11218293,37858385:554432 ) -g109,243:14362709,37858385 -g109,243:14362709,37858385 -(109,243:14652821,37858385:501378,78643,0 -$109,243:14652821,37858385 -(109,243:14816675,37858385:173670,78643,0 +g105,243:14362709,37858385 +g105,243:14362709,37858385 +(105,243:14652821,37858385:501378,78643,0 +$105,243:14652821,37858385 +(105,243:14816675,37858385:173670,78643,0 ) -$109,243:15154199,37858385 +$105,243:15154199,37858385 ) -(109,243:15154199,37858385:501378,78643,0 -(109,243:15318053,37858385:173670,78643,0 +(105,243:15154199,37858385:501378,78643,0 +(105,243:15318053,37858385:173670,78643,0 ) ) -(109,243:15655577,37858385:501378,78643,0 -(109,243:15819431,37858385:173670,78643,0 +(105,243:15655577,37858385:501378,78643,0 +(105,243:15819431,37858385:173670,78643,0 ) ) -(109,243:16156955,37858385:501378,78643,0 -(109,243:16320809,37858385:173670,78643,0 +(105,243:16156955,37858385:501378,78643,0 +(105,243:16320809,37858385:173670,78643,0 ) ) -(109,243:16658333,37858385:501378,78643,0 -(109,243:16822187,37858385:173670,78643,0 +(105,243:16658333,37858385:501378,78643,0 +(105,243:16822187,37858385:173670,78643,0 ) ) -(109,243:17159711,37858385:501378,78643,0 -(109,243:17323565,37858385:173670,78643,0 +(105,243:17159711,37858385:501378,78643,0 +(105,243:17323565,37858385:173670,78643,0 ) ) -(109,243:17661089,37858385:501378,78643,0 -(109,243:17824943,37858385:173670,78643,0 +(105,243:17661089,37858385:501378,78643,0 +(105,243:17824943,37858385:173670,78643,0 ) ) -(109,243:18162467,37858385:501378,78643,0 -(109,243:18326321,37858385:173670,78643,0 +(105,243:18162467,37858385:501378,78643,0 +(105,243:18326321,37858385:173670,78643,0 ) ) -(109,243:18663845,37858385:501378,78643,0 -(109,243:18827699,37858385:173670,78643,0 +(105,243:18663845,37858385:501378,78643,0 +(105,243:18827699,37858385:173670,78643,0 ) ) -(109,243:19165223,37858385:501378,78643,0 -(109,243:19329077,37858385:173670,78643,0 +(105,243:19165223,37858385:501378,78643,0 +(105,243:19329077,37858385:173670,78643,0 ) ) -(109,243:19666601,37858385:501378,78643,0 -(109,243:19830455,37858385:173670,78643,0 +(105,243:19666601,37858385:501378,78643,0 +(105,243:19830455,37858385:173670,78643,0 ) ) -(109,243:20167979,37858385:501378,78643,0 -(109,243:20331833,37858385:173670,78643,0 +(105,243:20167979,37858385:501378,78643,0 +(105,243:20331833,37858385:173670,78643,0 ) ) -(109,243:20669357,37858385:501378,78643,0 -(109,243:20833211,37858385:173670,78643,0 +(105,243:20669357,37858385:501378,78643,0 +(105,243:20833211,37858385:173670,78643,0 ) ) -(109,243:21170735,37858385:501378,78643,0 -(109,243:21334589,37858385:173670,78643,0 +(105,243:21170735,37858385:501378,78643,0 +(105,243:21334589,37858385:173670,78643,0 ) ) -(109,243:21672113,37858385:501378,78643,0 -(109,243:21835967,37858385:173670,78643,0 +(105,243:21672113,37858385:501378,78643,0 +(105,243:21835967,37858385:173670,78643,0 ) ) -(109,243:22173491,37858385:501378,78643,0 -(109,243:22337345,37858385:173670,78643,0 +(105,243:22173491,37858385:501378,78643,0 +(105,243:22337345,37858385:173670,78643,0 ) ) -(109,243:22674869,37858385:501378,78643,0 -(109,243:22838723,37858385:173670,78643,0 +(105,243:22674869,37858385:501378,78643,0 +(105,243:22838723,37858385:173670,78643,0 ) ) -(109,243:23176247,37858385:501378,78643,0 -(109,243:23340101,37858385:173670,78643,0 +(105,243:23176247,37858385:501378,78643,0 +(105,243:23340101,37858385:173670,78643,0 ) ) -(109,243:23677625,37858385:501378,78643,0 -(109,243:23841479,37858385:173670,78643,0 +(105,243:23677625,37858385:501378,78643,0 +(105,243:23841479,37858385:173670,78643,0 ) ) -(109,243:24179003,37858385:501378,78643,0 -(109,243:24342857,37858385:173670,78643,0 +(105,243:24179003,37858385:501378,78643,0 +(105,243:24342857,37858385:173670,78643,0 ) ) -(109,243:24680381,37858385:501378,78643,0 -(109,243:24844235,37858385:173670,78643,0 +(105,243:24680381,37858385:501378,78643,0 +(105,243:24844235,37858385:173670,78643,0 ) ) -(109,243:25181759,37858385:501378,78643,0 -(109,243:25345613,37858385:173670,78643,0 +(105,243:25181759,37858385:501378,78643,0 +(105,243:25345613,37858385:173670,78643,0 ) ) -(109,243:25683137,37858385:501378,78643,0 -(109,243:25846991,37858385:173670,78643,0 +(105,243:25683137,37858385:501378,78643,0 +(105,243:25846991,37858385:173670,78643,0 ) ) -(109,243:26184515,37858385:501378,78643,0 -(109,243:26348369,37858385:173670,78643,0 +(105,243:26184515,37858385:501378,78643,0 +(105,243:26348369,37858385:173670,78643,0 ) ) -(109,243:26685893,37858385:501378,78643,0 -(109,243:26849747,37858385:173670,78643,0 +(105,243:26685893,37858385:501378,78643,0 +(105,243:26849747,37858385:173670,78643,0 ) ) -(109,243:27187271,37858385:501378,78643,0 -(109,243:27351125,37858385:173670,78643,0 +(105,243:27187271,37858385:501378,78643,0 +(105,243:27351125,37858385:173670,78643,0 ) ) -(109,243:27688649,37858385:501378,78643,0 -(109,243:27852503,37858385:173670,78643,0 +(105,243:27688649,37858385:501378,78643,0 +(105,243:27852503,37858385:173670,78643,0 ) ) -(109,243:28190027,37858385:501378,78643,0 -(109,243:28353881,37858385:173670,78643,0 +(105,243:28190027,37858385:501378,78643,0 +(105,243:28353881,37858385:173670,78643,0 ) ) -(109,243:28691405,37858385:501378,78643,0 -(109,243:28855259,37858385:173670,78643,0 +(105,243:28691405,37858385:501378,78643,0 +(105,243:28855259,37858385:173670,78643,0 ) ) -(109,243:29192783,37858385:501378,78643,0 -(109,243:29356637,37858385:173670,78643,0 +(105,243:29192783,37858385:501378,78643,0 +(105,243:29356637,37858385:173670,78643,0 ) ) -(109,243:29694161,37858385:501378,78643,0 -(109,243:29858015,37858385:173670,78643,0 +(105,243:29694161,37858385:501378,78643,0 +(105,243:29858015,37858385:173670,78643,0 ) ) -(109,243:30195539,37858385:501378,78643,0 -(109,243:30359393,37858385:173670,78643,0 +(105,243:30195539,37858385:501378,78643,0 +(105,243:30359393,37858385:173670,78643,0 ) ) -(109,243:30696917,37858385:501378,78643,0 -(109,243:30860771,37858385:173670,78643,0 +(105,243:30696917,37858385:501378,78643,0 +(105,243:30860771,37858385:173670,78643,0 ) ) -(109,243:31403379,37858385:1179650,485622,11795 -k109,243:31403379,37858385:0 -k109,243:31536199,37858385:132820 +(105,243:31239539,37858385:1343490,485622,11795 +k105,243:31239539,37858385:0 +k105,243:31387652,37858385:148113 ) -g109,243:30911859,37858385 -g109,243:32583029,37858385 +g105,243:30911859,37858385 +g105,243:32583029,37858385 ) -(109,245:6630773,38699873:25952256,505283,126483 -g109,245:11218293,38699873 -h109,245:11218293,38699873:2490370,0,0 -h109,245:13708663,38699873:0,0,0 -g109,245:9121143,38699873 -(109,245:9121143,38699873:2097150,485622,11795 -k109,245:11218293,38699873:554432 +(105,245:6630773,38699873:25952256,505283,126483 +g105,245:11218293,38699873 +h105,245:11218293,38699873:2490370,0,0 +h105,245:13708663,38699873:0,0,0 +g105,245:9121143,38699873 +(105,245:9121143,38699873:2097150,485622,11795 +k105,245:11218293,38699873:554432 ) -g109,245:13580209,38699873 -g109,245:13580209,38699873 -(109,245:13650065,38699873:501378,78643,0 -$109,245:13650065,38699873 -(109,245:13813919,38699873:173670,78643,0 +g105,245:13580209,38699873 +g105,245:13580209,38699873 +(105,245:13650065,38699873:501378,78643,0 +$105,245:13650065,38699873 +(105,245:13813919,38699873:173670,78643,0 ) -$109,245:14151443,38699873 +$105,245:14151443,38699873 ) -(109,245:14151443,38699873:501378,78643,0 -(109,245:14315297,38699873:173670,78643,0 +(105,245:14151443,38699873:501378,78643,0 +(105,245:14315297,38699873:173670,78643,0 ) ) -(109,245:14652821,38699873:501378,78643,0 -(109,245:14816675,38699873:173670,78643,0 +(105,245:14652821,38699873:501378,78643,0 +(105,245:14816675,38699873:173670,78643,0 ) ) -(109,245:15154199,38699873:501378,78643,0 -(109,245:15318053,38699873:173670,78643,0 +(105,245:15154199,38699873:501378,78643,0 +(105,245:15318053,38699873:173670,78643,0 ) ) -(109,245:15655577,38699873:501378,78643,0 -(109,245:15819431,38699873:173670,78643,0 +(105,245:15655577,38699873:501378,78643,0 +(105,245:15819431,38699873:173670,78643,0 ) ) -(109,245:16156955,38699873:501378,78643,0 -(109,245:16320809,38699873:173670,78643,0 +(105,245:16156955,38699873:501378,78643,0 +(105,245:16320809,38699873:173670,78643,0 ) ) -(109,245:16658333,38699873:501378,78643,0 -(109,245:16822187,38699873:173670,78643,0 +(105,245:16658333,38699873:501378,78643,0 +(105,245:16822187,38699873:173670,78643,0 ) ) -(109,245:17159711,38699873:501378,78643,0 -(109,245:17323565,38699873:173670,78643,0 +(105,245:17159711,38699873:501378,78643,0 +(105,245:17323565,38699873:173670,78643,0 ) ) -(109,245:17661089,38699873:501378,78643,0 -(109,245:17824943,38699873:173670,78643,0 +(105,245:17661089,38699873:501378,78643,0 +(105,245:17824943,38699873:173670,78643,0 ) ) -(109,245:18162467,38699873:501378,78643,0 -(109,245:18326321,38699873:173670,78643,0 +(105,245:18162467,38699873:501378,78643,0 +(105,245:18326321,38699873:173670,78643,0 ) ) -(109,245:18663845,38699873:501378,78643,0 -(109,245:18827699,38699873:173670,78643,0 +(105,245:18663845,38699873:501378,78643,0 +(105,245:18827699,38699873:173670,78643,0 ) ) -(109,245:19165223,38699873:501378,78643,0 -(109,245:19329077,38699873:173670,78643,0 +(105,245:19165223,38699873:501378,78643,0 +(105,245:19329077,38699873:173670,78643,0 ) ) -(109,245:19666601,38699873:501378,78643,0 -(109,245:19830455,38699873:173670,78643,0 +(105,245:19666601,38699873:501378,78643,0 +(105,245:19830455,38699873:173670,78643,0 ) ) -(109,245:20167979,38699873:501378,78643,0 -(109,245:20331833,38699873:173670,78643,0 +(105,245:20167979,38699873:501378,78643,0 +(105,245:20331833,38699873:173670,78643,0 ) ) -(109,245:20669357,38699873:501378,78643,0 -(109,245:20833211,38699873:173670,78643,0 +(105,245:20669357,38699873:501378,78643,0 +(105,245:20833211,38699873:173670,78643,0 ) ) -(109,245:21170735,38699873:501378,78643,0 -(109,245:21334589,38699873:173670,78643,0 +(105,245:21170735,38699873:501378,78643,0 +(105,245:21334589,38699873:173670,78643,0 ) ) -(109,245:21672113,38699873:501378,78643,0 -(109,245:21835967,38699873:173670,78643,0 +(105,245:21672113,38699873:501378,78643,0 +(105,245:21835967,38699873:173670,78643,0 ) ) -(109,245:22173491,38699873:501378,78643,0 -(109,245:22337345,38699873:173670,78643,0 +(105,245:22173491,38699873:501378,78643,0 +(105,245:22337345,38699873:173670,78643,0 ) ) -(109,245:22674869,38699873:501378,78643,0 -(109,245:22838723,38699873:173670,78643,0 +(105,245:22674869,38699873:501378,78643,0 +(105,245:22838723,38699873:173670,78643,0 ) ) -(109,245:23176247,38699873:501378,78643,0 -(109,245:23340101,38699873:173670,78643,0 +(105,245:23176247,38699873:501378,78643,0 +(105,245:23340101,38699873:173670,78643,0 ) ) -(109,245:23677625,38699873:501378,78643,0 -(109,245:23841479,38699873:173670,78643,0 +(105,245:23677625,38699873:501378,78643,0 +(105,245:23841479,38699873:173670,78643,0 ) ) -(109,245:24179003,38699873:501378,78643,0 -(109,245:24342857,38699873:173670,78643,0 +(105,245:24179003,38699873:501378,78643,0 +(105,245:24342857,38699873:173670,78643,0 ) ) -(109,245:24680381,38699873:501378,78643,0 -(109,245:24844235,38699873:173670,78643,0 +(105,245:24680381,38699873:501378,78643,0 +(105,245:24844235,38699873:173670,78643,0 ) ) -(109,245:25181759,38699873:501378,78643,0 -(109,245:25345613,38699873:173670,78643,0 +(105,245:25181759,38699873:501378,78643,0 +(105,245:25345613,38699873:173670,78643,0 ) ) -(109,245:25683137,38699873:501378,78643,0 -(109,245:25846991,38699873:173670,78643,0 +(105,245:25683137,38699873:501378,78643,0 +(105,245:25846991,38699873:173670,78643,0 ) ) -(109,245:26184515,38699873:501378,78643,0 -(109,245:26348369,38699873:173670,78643,0 +(105,245:26184515,38699873:501378,78643,0 +(105,245:26348369,38699873:173670,78643,0 ) ) -(109,245:26685893,38699873:501378,78643,0 -(109,245:26849747,38699873:173670,78643,0 +(105,245:26685893,38699873:501378,78643,0 +(105,245:26849747,38699873:173670,78643,0 ) ) -(109,245:27187271,38699873:501378,78643,0 -(109,245:27351125,38699873:173670,78643,0 +(105,245:27187271,38699873:501378,78643,0 +(105,245:27351125,38699873:173670,78643,0 ) ) -(109,245:27688649,38699873:501378,78643,0 -(109,245:27852503,38699873:173670,78643,0 +(105,245:27688649,38699873:501378,78643,0 +(105,245:27852503,38699873:173670,78643,0 ) ) -(109,245:28190027,38699873:501378,78643,0 -(109,245:28353881,38699873:173670,78643,0 +(105,245:28190027,38699873:501378,78643,0 +(105,245:28353881,38699873:173670,78643,0 ) ) -(109,245:28691405,38699873:501378,78643,0 -(109,245:28855259,38699873:173670,78643,0 +(105,245:28691405,38699873:501378,78643,0 +(105,245:28855259,38699873:173670,78643,0 ) ) -(109,245:29192783,38699873:501378,78643,0 -(109,245:29356637,38699873:173670,78643,0 +(105,245:29192783,38699873:501378,78643,0 +(105,245:29356637,38699873:173670,78643,0 ) ) -(109,245:29694161,38699873:501378,78643,0 -(109,245:29858015,38699873:173670,78643,0 +(105,245:29694161,38699873:501378,78643,0 +(105,245:29858015,38699873:173670,78643,0 ) ) -(109,245:30195539,38699873:501378,78643,0 -(109,245:30359393,38699873:173670,78643,0 +(105,245:30195539,38699873:501378,78643,0 +(105,245:30359393,38699873:173670,78643,0 ) ) -(109,245:30696917,38699873:501378,78643,0 -(109,245:30860771,38699873:173670,78643,0 +(105,245:30696917,38699873:501378,78643,0 +(105,245:30860771,38699873:173670,78643,0 ) ) -(109,245:31403379,38699873:1179650,485622,11795 -k109,245:31403379,38699873:0 -k109,245:31536199,38699873:132820 +(105,245:31239539,38699873:1343490,485622,11795 +k105,245:31239539,38699873:0 +k105,245:31387652,38699873:148113 ) -g109,245:30911859,38699873 -g109,245:32583029,38699873 +g105,245:30911859,38699873 +g105,245:32583029,38699873 ) -(109,247:6630773,39541361:25952256,505283,134348 -g109,247:9121143,39541361 -h109,247:9121143,39541361:983040,0,0 -h109,247:10104183,39541361:0,0,0 -g109,247:7613813,39541361 -(109,247:7613813,39541361:1507330,485622,11795 -k109,247:9121143,39541361:536742 +(105,247:6630773,39541361:25952256,505283,134348 +g105,247:9121143,39541361 +h105,247:9121143,39541361:983040,0,0 +h105,247:10104183,39541361:0,0,0 +g105,247:7613813,39541361 +(105,247:7613813,39541361:1507330,485622,11795 +k105,247:9121143,39541361:536742 ) -g109,247:12624697,39541361 -g109,247:14217877,39541361 -g109,247:16221967,39541361 -g109,247:16221967,39541361 -(109,247:16658333,39541361:501378,78643,0 -$109,247:16658333,39541361 -(109,247:16822187,39541361:173670,78643,0 +g105,247:12624697,39541361 +g105,247:14217877,39541361 +g105,247:16221967,39541361 +g105,247:16221967,39541361 +(105,247:16658333,39541361:501378,78643,0 +$105,247:16658333,39541361 +(105,247:16822187,39541361:173670,78643,0 ) -$109,247:17159711,39541361 +$105,247:17159711,39541361 ) -(109,247:17159711,39541361:501378,78643,0 -(109,247:17323565,39541361:173670,78643,0 +(105,247:17159711,39541361:501378,78643,0 +(105,247:17323565,39541361:173670,78643,0 ) ) -(109,247:17661089,39541361:501378,78643,0 -(109,247:17824943,39541361:173670,78643,0 +(105,247:17661089,39541361:501378,78643,0 +(105,247:17824943,39541361:173670,78643,0 ) ) -(109,247:18162467,39541361:501378,78643,0 -(109,247:18326321,39541361:173670,78643,0 +(105,247:18162467,39541361:501378,78643,0 +(105,247:18326321,39541361:173670,78643,0 ) ) -(109,247:18663845,39541361:501378,78643,0 -(109,247:18827699,39541361:173670,78643,0 +(105,247:18663845,39541361:501378,78643,0 +(105,247:18827699,39541361:173670,78643,0 ) ) -(109,247:19165223,39541361:501378,78643,0 -(109,247:19329077,39541361:173670,78643,0 +(105,247:19165223,39541361:501378,78643,0 +(105,247:19329077,39541361:173670,78643,0 ) ) -(109,247:19666601,39541361:501378,78643,0 -(109,247:19830455,39541361:173670,78643,0 +(105,247:19666601,39541361:501378,78643,0 +(105,247:19830455,39541361:173670,78643,0 ) ) -(109,247:20167979,39541361:501378,78643,0 -(109,247:20331833,39541361:173670,78643,0 +(105,247:20167979,39541361:501378,78643,0 +(105,247:20331833,39541361:173670,78643,0 ) ) -(109,247:20669357,39541361:501378,78643,0 -(109,247:20833211,39541361:173670,78643,0 +(105,247:20669357,39541361:501378,78643,0 +(105,247:20833211,39541361:173670,78643,0 ) ) -(109,247:21170735,39541361:501378,78643,0 -(109,247:21334589,39541361:173670,78643,0 +(105,247:21170735,39541361:501378,78643,0 +(105,247:21334589,39541361:173670,78643,0 ) ) -(109,247:21672113,39541361:501378,78643,0 -(109,247:21835967,39541361:173670,78643,0 +(105,247:21672113,39541361:501378,78643,0 +(105,247:21835967,39541361:173670,78643,0 ) ) -(109,247:22173491,39541361:501378,78643,0 -(109,247:22337345,39541361:173670,78643,0 +(105,247:22173491,39541361:501378,78643,0 +(105,247:22337345,39541361:173670,78643,0 ) ) -(109,247:22674869,39541361:501378,78643,0 -(109,247:22838723,39541361:173670,78643,0 +(105,247:22674869,39541361:501378,78643,0 +(105,247:22838723,39541361:173670,78643,0 ) ) -(109,247:23176247,39541361:501378,78643,0 -(109,247:23340101,39541361:173670,78643,0 +(105,247:23176247,39541361:501378,78643,0 +(105,247:23340101,39541361:173670,78643,0 ) ) -(109,247:23677625,39541361:501378,78643,0 -(109,247:23841479,39541361:173670,78643,0 +(105,247:23677625,39541361:501378,78643,0 +(105,247:23841479,39541361:173670,78643,0 ) ) -(109,247:24179003,39541361:501378,78643,0 -(109,247:24342857,39541361:173670,78643,0 +(105,247:24179003,39541361:501378,78643,0 +(105,247:24342857,39541361:173670,78643,0 ) ) -(109,247:24680381,39541361:501378,78643,0 -(109,247:24844235,39541361:173670,78643,0 +(105,247:24680381,39541361:501378,78643,0 +(105,247:24844235,39541361:173670,78643,0 ) ) -(109,247:25181759,39541361:501378,78643,0 -(109,247:25345613,39541361:173670,78643,0 +(105,247:25181759,39541361:501378,78643,0 +(105,247:25345613,39541361:173670,78643,0 ) ) -(109,247:25683137,39541361:501378,78643,0 -(109,247:25846991,39541361:173670,78643,0 +(105,247:25683137,39541361:501378,78643,0 +(105,247:25846991,39541361:173670,78643,0 ) ) -(109,247:26184515,39541361:501378,78643,0 -(109,247:26348369,39541361:173670,78643,0 +(105,247:26184515,39541361:501378,78643,0 +(105,247:26348369,39541361:173670,78643,0 ) ) -(109,247:26685893,39541361:501378,78643,0 -(109,247:26849747,39541361:173670,78643,0 +(105,247:26685893,39541361:501378,78643,0 +(105,247:26849747,39541361:173670,78643,0 ) ) -(109,247:27187271,39541361:501378,78643,0 -(109,247:27351125,39541361:173670,78643,0 +(105,247:27187271,39541361:501378,78643,0 +(105,247:27351125,39541361:173670,78643,0 ) ) -(109,247:27688649,39541361:501378,78643,0 -(109,247:27852503,39541361:173670,78643,0 +(105,247:27688649,39541361:501378,78643,0 +(105,247:27852503,39541361:173670,78643,0 ) ) -(109,247:28190027,39541361:501378,78643,0 -(109,247:28353881,39541361:173670,78643,0 +(105,247:28190027,39541361:501378,78643,0 +(105,247:28353881,39541361:173670,78643,0 ) ) -(109,247:28691405,39541361:501378,78643,0 -(109,247:28855259,39541361:173670,78643,0 +(105,247:28691405,39541361:501378,78643,0 +(105,247:28855259,39541361:173670,78643,0 ) ) -(109,247:29192783,39541361:501378,78643,0 -(109,247:29356637,39541361:173670,78643,0 +(105,247:29192783,39541361:501378,78643,0 +(105,247:29356637,39541361:173670,78643,0 ) ) -(109,247:29694161,39541361:501378,78643,0 -(109,247:29858015,39541361:173670,78643,0 +(105,247:29694161,39541361:501378,78643,0 +(105,247:29858015,39541361:173670,78643,0 ) ) -(109,247:30195539,39541361:501378,78643,0 -(109,247:30359393,39541361:173670,78643,0 +(105,247:30195539,39541361:501378,78643,0 +(105,247:30359393,39541361:173670,78643,0 ) ) -(109,247:30696917,39541361:501378,78643,0 -(109,247:30860771,39541361:173670,78643,0 +(105,247:30696917,39541361:501378,78643,0 +(105,247:30860771,39541361:173670,78643,0 ) ) -(109,247:31403379,39541361:1179650,485622,11795 -k109,247:31403379,39541361:0 -k109,247:31536199,39541361:132820 +(105,247:31239539,39541361:1343490,485622,11795 +k105,247:31239539,39541361:0 +k105,247:31387652,39541361:148113 ) -g109,247:30911859,39541361 -g109,247:32583029,39541361 +g105,247:30911859,39541361 +g105,247:32583029,39541361 ) -(109,249:6630773,40382849:25952256,505283,126483 -g109,249:9121143,40382849 -h109,249:9121143,40382849:983040,0,0 -h109,249:10104183,40382849:0,0,0 -g109,249:7613813,40382849 -(109,249:7613813,40382849:1507330,485622,11795 -k109,249:9121143,40382849:536742 +(105,249:6630773,40382849:25952256,505283,126483 +g105,249:9121143,40382849 +h105,249:9121143,40382849:983040,0,0 +h105,249:10104183,40382849:0,0,0 +g105,249:7613813,40382849 +(105,249:7613813,40382849:1507330,485622,11795 +k105,249:9121143,40382849:536742 ) -g109,249:10792311,40382849 -g109,249:15247448,40382849 -g109,249:16840628,40382849 -g109,249:19012490,40382849 -g109,249:19012490,40382849 -(109,249:19165223,40382849:501378,78643,0 -$109,249:19165223,40382849 -(109,249:19329077,40382849:173670,78643,0 +g105,249:10792311,40382849 +g105,249:15247448,40382849 +g105,249:16840628,40382849 +g105,249:19012490,40382849 +g105,249:19012490,40382849 +(105,249:19165223,40382849:501378,78643,0 +$105,249:19165223,40382849 +(105,249:19329077,40382849:173670,78643,0 ) -$109,249:19666601,40382849 +$105,249:19666601,40382849 ) -(109,249:19666601,40382849:501378,78643,0 -(109,249:19830455,40382849:173670,78643,0 +(105,249:19666601,40382849:501378,78643,0 +(105,249:19830455,40382849:173670,78643,0 ) ) -(109,249:20167979,40382849:501378,78643,0 -(109,249:20331833,40382849:173670,78643,0 +(105,249:20167979,40382849:501378,78643,0 +(105,249:20331833,40382849:173670,78643,0 ) ) -(109,249:20669357,40382849:501378,78643,0 -(109,249:20833211,40382849:173670,78643,0 +(105,249:20669357,40382849:501378,78643,0 +(105,249:20833211,40382849:173670,78643,0 ) ) -(109,249:21170735,40382849:501378,78643,0 -(109,249:21334589,40382849:173670,78643,0 +(105,249:21170735,40382849:501378,78643,0 +(105,249:21334589,40382849:173670,78643,0 ) ) -(109,249:21672113,40382849:501378,78643,0 -(109,249:21835967,40382849:173670,78643,0 +(105,249:21672113,40382849:501378,78643,0 +(105,249:21835967,40382849:173670,78643,0 ) ) -(109,249:22173491,40382849:501378,78643,0 -(109,249:22337345,40382849:173670,78643,0 +(105,249:22173491,40382849:501378,78643,0 +(105,249:22337345,40382849:173670,78643,0 ) ) -(109,249:22674869,40382849:501378,78643,0 -(109,249:22838723,40382849:173670,78643,0 +(105,249:22674869,40382849:501378,78643,0 +(105,249:22838723,40382849:173670,78643,0 ) ) -(109,249:23176247,40382849:501378,78643,0 -(109,249:23340101,40382849:173670,78643,0 +(105,249:23176247,40382849:501378,78643,0 +(105,249:23340101,40382849:173670,78643,0 ) ) -(109,249:23677625,40382849:501378,78643,0 -(109,249:23841479,40382849:173670,78643,0 +(105,249:23677625,40382849:501378,78643,0 +(105,249:23841479,40382849:173670,78643,0 ) ) -(109,249:24179003,40382849:501378,78643,0 -(109,249:24342857,40382849:173670,78643,0 +(105,249:24179003,40382849:501378,78643,0 +(105,249:24342857,40382849:173670,78643,0 ) ) -(109,249:24680381,40382849:501378,78643,0 -(109,249:24844235,40382849:173670,78643,0 +(105,249:24680381,40382849:501378,78643,0 +(105,249:24844235,40382849:173670,78643,0 ) ) -(109,249:25181759,40382849:501378,78643,0 -(109,249:25345613,40382849:173670,78643,0 +(105,249:25181759,40382849:501378,78643,0 +(105,249:25345613,40382849:173670,78643,0 ) ) -(109,249:25683137,40382849:501378,78643,0 -(109,249:25846991,40382849:173670,78643,0 +(105,249:25683137,40382849:501378,78643,0 +(105,249:25846991,40382849:173670,78643,0 ) ) -(109,249:26184515,40382849:501378,78643,0 -(109,249:26348369,40382849:173670,78643,0 +(105,249:26184515,40382849:501378,78643,0 +(105,249:26348369,40382849:173670,78643,0 ) ) -(109,249:26685893,40382849:501378,78643,0 -(109,249:26849747,40382849:173670,78643,0 +(105,249:26685893,40382849:501378,78643,0 +(105,249:26849747,40382849:173670,78643,0 ) ) -(109,249:27187271,40382849:501378,78643,0 -(109,249:27351125,40382849:173670,78643,0 +(105,249:27187271,40382849:501378,78643,0 +(105,249:27351125,40382849:173670,78643,0 ) ) -(109,249:27688649,40382849:501378,78643,0 -(109,249:27852503,40382849:173670,78643,0 +(105,249:27688649,40382849:501378,78643,0 +(105,249:27852503,40382849:173670,78643,0 ) ) -(109,249:28190027,40382849:501378,78643,0 -(109,249:28353881,40382849:173670,78643,0 +(105,249:28190027,40382849:501378,78643,0 +(105,249:28353881,40382849:173670,78643,0 ) ) -(109,249:28691405,40382849:501378,78643,0 -(109,249:28855259,40382849:173670,78643,0 +(105,249:28691405,40382849:501378,78643,0 +(105,249:28855259,40382849:173670,78643,0 ) ) -(109,249:29192783,40382849:501378,78643,0 -(109,249:29356637,40382849:173670,78643,0 +(105,249:29192783,40382849:501378,78643,0 +(105,249:29356637,40382849:173670,78643,0 ) ) -(109,249:29694161,40382849:501378,78643,0 -(109,249:29858015,40382849:173670,78643,0 +(105,249:29694161,40382849:501378,78643,0 +(105,249:29858015,40382849:173670,78643,0 ) ) -(109,249:30195539,40382849:501378,78643,0 -(109,249:30359393,40382849:173670,78643,0 +(105,249:30195539,40382849:501378,78643,0 +(105,249:30359393,40382849:173670,78643,0 ) ) -(109,249:30696917,40382849:501378,78643,0 -(109,249:30860771,40382849:173670,78643,0 +(105,249:30696917,40382849:501378,78643,0 +(105,249:30860771,40382849:173670,78643,0 ) ) -(109,249:31403379,40382849:1179650,485622,11795 -k109,249:31403379,40382849:0 -k109,249:31536199,40382849:132820 +(105,249:31239539,40382849:1343490,485622,11795 +k105,249:31239539,40382849:0 +k105,249:31387652,40382849:148113 ) -g109,249:30911859,40382849 -g109,249:32583029,40382849 +g105,249:30911859,40382849 +g105,249:32583029,40382849 ) -(109,251:6630773,41224337:25952256,505283,126483 -g109,251:11218293,41224337 -h109,251:11218293,41224337:2490370,0,0 -h109,251:13708663,41224337:0,0,0 -g109,251:9121143,41224337 -(109,251:9121143,41224337:2097150,485622,11795 -k109,251:11218293,41224337:554432 +(105,251:6630773,41224337:25952256,505283,126483 +g105,251:11218293,41224337 +h105,251:11218293,41224337:2490370,0,0 +h105,251:13708663,41224337:0,0,0 +g105,251:9121143,41224337 +(105,251:9121143,41224337:2097150,485622,11795 +k105,251:11218293,41224337:554432 ) -g109,251:14390890,41224337 -g109,251:18977100,41224337 -(109,251:19165223,41224337:501378,78643,0 -$109,251:19165223,41224337 -(109,251:19329077,41224337:173670,78643,0 +g105,251:14390890,41224337 +g105,251:18977100,41224337 +(105,251:19165223,41224337:501378,78643,0 +$105,251:19165223,41224337 +(105,251:19329077,41224337:173670,78643,0 ) -$109,251:19666601,41224337 +$105,251:19666601,41224337 ) -(109,251:19666601,41224337:501378,78643,0 -(109,251:19830455,41224337:173670,78643,0 +(105,251:19666601,41224337:501378,78643,0 +(105,251:19830455,41224337:173670,78643,0 ) ) -(109,251:20167979,41224337:501378,78643,0 -(109,251:20331833,41224337:173670,78643,0 +(105,251:20167979,41224337:501378,78643,0 +(105,251:20331833,41224337:173670,78643,0 ) ) -(109,251:20669357,41224337:501378,78643,0 -(109,251:20833211,41224337:173670,78643,0 +(105,251:20669357,41224337:501378,78643,0 +(105,251:20833211,41224337:173670,78643,0 ) ) -(109,251:21170735,41224337:501378,78643,0 -(109,251:21334589,41224337:173670,78643,0 +(105,251:21170735,41224337:501378,78643,0 +(105,251:21334589,41224337:173670,78643,0 ) ) -(109,251:21672113,41224337:501378,78643,0 -(109,251:21835967,41224337:173670,78643,0 +(105,251:21672113,41224337:501378,78643,0 +(105,251:21835967,41224337:173670,78643,0 ) ) -(109,251:22173491,41224337:501378,78643,0 -(109,251:22337345,41224337:173670,78643,0 +(105,251:22173491,41224337:501378,78643,0 +(105,251:22337345,41224337:173670,78643,0 ) ) -(109,251:22674869,41224337:501378,78643,0 -(109,251:22838723,41224337:173670,78643,0 +(105,251:22674869,41224337:501378,78643,0 +(105,251:22838723,41224337:173670,78643,0 ) ) -(109,251:23176247,41224337:501378,78643,0 -(109,251:23340101,41224337:173670,78643,0 +(105,251:23176247,41224337:501378,78643,0 +(105,251:23340101,41224337:173670,78643,0 ) ) -(109,251:23677625,41224337:501378,78643,0 -(109,251:23841479,41224337:173670,78643,0 +(105,251:23677625,41224337:501378,78643,0 +(105,251:23841479,41224337:173670,78643,0 ) ) -(109,251:24179003,41224337:501378,78643,0 -(109,251:24342857,41224337:173670,78643,0 +(105,251:24179003,41224337:501378,78643,0 +(105,251:24342857,41224337:173670,78643,0 ) ) -(109,251:24680381,41224337:501378,78643,0 -(109,251:24844235,41224337:173670,78643,0 +(105,251:24680381,41224337:501378,78643,0 +(105,251:24844235,41224337:173670,78643,0 ) ) -(109,251:25181759,41224337:501378,78643,0 -(109,251:25345613,41224337:173670,78643,0 +(105,251:25181759,41224337:501378,78643,0 +(105,251:25345613,41224337:173670,78643,0 ) ) -(109,251:25683137,41224337:501378,78643,0 -(109,251:25846991,41224337:173670,78643,0 +(105,251:25683137,41224337:501378,78643,0 +(105,251:25846991,41224337:173670,78643,0 ) ) -(109,251:26184515,41224337:501378,78643,0 -(109,251:26348369,41224337:173670,78643,0 +(105,251:26184515,41224337:501378,78643,0 +(105,251:26348369,41224337:173670,78643,0 ) ) -(109,251:26685893,41224337:501378,78643,0 -(109,251:26849747,41224337:173670,78643,0 +(105,251:26685893,41224337:501378,78643,0 +(105,251:26849747,41224337:173670,78643,0 ) ) -(109,251:27187271,41224337:501378,78643,0 -(109,251:27351125,41224337:173670,78643,0 +(105,251:27187271,41224337:501378,78643,0 +(105,251:27351125,41224337:173670,78643,0 ) ) -(109,251:27688649,41224337:501378,78643,0 -(109,251:27852503,41224337:173670,78643,0 +(105,251:27688649,41224337:501378,78643,0 +(105,251:27852503,41224337:173670,78643,0 ) ) -(109,251:28190027,41224337:501378,78643,0 -(109,251:28353881,41224337:173670,78643,0 +(105,251:28190027,41224337:501378,78643,0 +(105,251:28353881,41224337:173670,78643,0 ) ) -(109,251:28691405,41224337:501378,78643,0 -(109,251:28855259,41224337:173670,78643,0 +(105,251:28691405,41224337:501378,78643,0 +(105,251:28855259,41224337:173670,78643,0 ) ) -(109,251:29192783,41224337:501378,78643,0 -(109,251:29356637,41224337:173670,78643,0 +(105,251:29192783,41224337:501378,78643,0 +(105,251:29356637,41224337:173670,78643,0 ) ) -(109,251:29694161,41224337:501378,78643,0 -(109,251:29858015,41224337:173670,78643,0 +(105,251:29694161,41224337:501378,78643,0 +(105,251:29858015,41224337:173670,78643,0 ) ) -(109,251:30195539,41224337:501378,78643,0 -(109,251:30359393,41224337:173670,78643,0 +(105,251:30195539,41224337:501378,78643,0 +(105,251:30359393,41224337:173670,78643,0 ) ) -(109,251:30696917,41224337:501378,78643,0 -(109,251:30860771,41224337:173670,78643,0 +(105,251:30696917,41224337:501378,78643,0 +(105,251:30860771,41224337:173670,78643,0 ) ) -(109,251:31403379,41224337:1179650,485622,11795 -k109,251:31403379,41224337:0 -k109,251:31536199,41224337:132820 +(105,251:31239539,41224337:1343490,485622,11795 +k105,251:31239539,41224337:0 +k105,251:31387652,41224337:148113 ) -g109,251:30911859,41224337 -g109,251:32583029,41224337 +g105,251:30911859,41224337 +g105,251:32583029,41224337 ) -(109,253:6630773,42065825:25952256,505283,126483 -g109,253:11218293,42065825 -h109,253:11218293,42065825:2490370,0,0 -h109,253:13708663,42065825:0,0,0 -g109,253:9121143,42065825 -(109,253:9121143,42065825:2097150,485622,11795 -k109,253:11218293,42065825:554432 +(105,253:6630773,42065825:25952256,505283,126483 +g105,253:11218293,42065825 +h105,253:11218293,42065825:2490370,0,0 +h105,253:13708663,42065825:0,0,0 +g105,253:9121143,42065825 +(105,253:9121143,42065825:2097150,485622,11795 +k105,253:11218293,42065825:554432 ) -g109,253:15028556,42065825 -g109,253:19614766,42065825 -(109,253:19666601,42065825:501378,78643,0 -$109,253:19666601,42065825 -(109,253:19830455,42065825:173670,78643,0 +g105,253:15028556,42065825 +g105,253:19614766,42065825 +(105,253:19666601,42065825:501378,78643,0 +$105,253:19666601,42065825 +(105,253:19830455,42065825:173670,78643,0 ) -$109,253:20167979,42065825 +$105,253:20167979,42065825 ) -(109,253:20167979,42065825:501378,78643,0 -(109,253:20331833,42065825:173670,78643,0 +(105,253:20167979,42065825:501378,78643,0 +(105,253:20331833,42065825:173670,78643,0 ) ) -(109,253:20669357,42065825:501378,78643,0 -(109,253:20833211,42065825:173670,78643,0 +(105,253:20669357,42065825:501378,78643,0 +(105,253:20833211,42065825:173670,78643,0 ) ) -(109,253:21170735,42065825:501378,78643,0 -(109,253:21334589,42065825:173670,78643,0 +(105,253:21170735,42065825:501378,78643,0 +(105,253:21334589,42065825:173670,78643,0 ) ) -(109,253:21672113,42065825:501378,78643,0 -(109,253:21835967,42065825:173670,78643,0 +(105,253:21672113,42065825:501378,78643,0 +(105,253:21835967,42065825:173670,78643,0 ) ) -(109,253:22173491,42065825:501378,78643,0 -(109,253:22337345,42065825:173670,78643,0 +(105,253:22173491,42065825:501378,78643,0 +(105,253:22337345,42065825:173670,78643,0 ) ) -(109,253:22674869,42065825:501378,78643,0 -(109,253:22838723,42065825:173670,78643,0 +(105,253:22674869,42065825:501378,78643,0 +(105,253:22838723,42065825:173670,78643,0 ) ) -(109,253:23176247,42065825:501378,78643,0 -(109,253:23340101,42065825:173670,78643,0 +(105,253:23176247,42065825:501378,78643,0 +(105,253:23340101,42065825:173670,78643,0 ) ) -(109,253:23677625,42065825:501378,78643,0 -(109,253:23841479,42065825:173670,78643,0 +(105,253:23677625,42065825:501378,78643,0 +(105,253:23841479,42065825:173670,78643,0 ) ) -(109,253:24179003,42065825:501378,78643,0 -(109,253:24342857,42065825:173670,78643,0 +(105,253:24179003,42065825:501378,78643,0 +(105,253:24342857,42065825:173670,78643,0 ) ) -(109,253:24680381,42065825:501378,78643,0 -(109,253:24844235,42065825:173670,78643,0 +(105,253:24680381,42065825:501378,78643,0 +(105,253:24844235,42065825:173670,78643,0 ) ) -(109,253:25181759,42065825:501378,78643,0 -(109,253:25345613,42065825:173670,78643,0 +(105,253:25181759,42065825:501378,78643,0 +(105,253:25345613,42065825:173670,78643,0 ) ) -(109,253:25683137,42065825:501378,78643,0 -(109,253:25846991,42065825:173670,78643,0 +(105,253:25683137,42065825:501378,78643,0 +(105,253:25846991,42065825:173670,78643,0 ) ) -(109,253:26184515,42065825:501378,78643,0 -(109,253:26348369,42065825:173670,78643,0 +(105,253:26184515,42065825:501378,78643,0 +(105,253:26348369,42065825:173670,78643,0 ) ) -(109,253:26685893,42065825:501378,78643,0 -(109,253:26849747,42065825:173670,78643,0 +(105,253:26685893,42065825:501378,78643,0 +(105,253:26849747,42065825:173670,78643,0 ) ) -(109,253:27187271,42065825:501378,78643,0 -(109,253:27351125,42065825:173670,78643,0 +(105,253:27187271,42065825:501378,78643,0 +(105,253:27351125,42065825:173670,78643,0 ) ) -(109,253:27688649,42065825:501378,78643,0 -(109,253:27852503,42065825:173670,78643,0 +(105,253:27688649,42065825:501378,78643,0 +(105,253:27852503,42065825:173670,78643,0 ) ) -(109,253:28190027,42065825:501378,78643,0 -(109,253:28353881,42065825:173670,78643,0 +(105,253:28190027,42065825:501378,78643,0 +(105,253:28353881,42065825:173670,78643,0 ) ) -(109,253:28691405,42065825:501378,78643,0 -(109,253:28855259,42065825:173670,78643,0 +(105,253:28691405,42065825:501378,78643,0 +(105,253:28855259,42065825:173670,78643,0 ) ) -(109,253:29192783,42065825:501378,78643,0 -(109,253:29356637,42065825:173670,78643,0 +(105,253:29192783,42065825:501378,78643,0 +(105,253:29356637,42065825:173670,78643,0 ) ) -(109,253:29694161,42065825:501378,78643,0 -(109,253:29858015,42065825:173670,78643,0 +(105,253:29694161,42065825:501378,78643,0 +(105,253:29858015,42065825:173670,78643,0 ) ) -(109,253:30195539,42065825:501378,78643,0 -(109,253:30359393,42065825:173670,78643,0 +(105,253:30195539,42065825:501378,78643,0 +(105,253:30359393,42065825:173670,78643,0 ) ) -(109,253:30696917,42065825:501378,78643,0 -(109,253:30860771,42065825:173670,78643,0 +(105,253:30696917,42065825:501378,78643,0 +(105,253:30860771,42065825:173670,78643,0 ) ) -(109,253:31403379,42065825:1179650,485622,11795 -k109,253:31403379,42065825:0 -k109,253:31536199,42065825:132820 +(105,253:31239539,42065825:1343490,485622,11795 +k105,253:31239539,42065825:0 +k105,253:31387652,42065825:148113 ) -g109,253:30911859,42065825 -g109,253:32583029,42065825 +g105,253:30911859,42065825 +g105,253:32583029,42065825 ) -(109,255:6630773,42907313:25952256,485622,95026 -g109,255:11218293,42907313 -h109,255:11218293,42907313:2490370,0,0 -h109,255:13708663,42907313:0,0,0 -g109,255:9121143,42907313 -(109,255:9121143,42907313:2097150,485622,11795 -k109,255:11218293,42907313:554432 +(105,255:6630773,42907313:25952256,485622,95026 +g105,255:11218293,42907313 +h105,255:11218293,42907313:2490370,0,0 +h105,255:13708663,42907313:0,0,0 +g105,255:9121143,42907313 +(105,255:9121143,42907313:2097150,485622,11795 +k105,255:11218293,42907313:554432 ) -g109,255:12835722,42907313 -(109,255:13148687,42907313:501378,78643,0 -$109,255:13148687,42907313 -(109,255:13312541,42907313:173670,78643,0 +g105,255:12835722,42907313 +(105,255:13148687,42907313:501378,78643,0 +$105,255:13148687,42907313 +(105,255:13312541,42907313:173670,78643,0 ) -$109,255:13650065,42907313 +$105,255:13650065,42907313 ) -(109,255:13650065,42907313:501378,78643,0 -(109,255:13813919,42907313:173670,78643,0 +(105,255:13650065,42907313:501378,78643,0 +(105,255:13813919,42907313:173670,78643,0 ) ) -(109,255:14151443,42907313:501378,78643,0 -(109,255:14315297,42907313:173670,78643,0 +(105,255:14151443,42907313:501378,78643,0 +(105,255:14315297,42907313:173670,78643,0 ) ) -(109,255:14652821,42907313:501378,78643,0 -(109,255:14816675,42907313:173670,78643,0 +(105,255:14652821,42907313:501378,78643,0 +(105,255:14816675,42907313:173670,78643,0 ) ) -(109,255:15154199,42907313:501378,78643,0 -(109,255:15318053,42907313:173670,78643,0 +(105,255:15154199,42907313:501378,78643,0 +(105,255:15318053,42907313:173670,78643,0 ) ) -(109,255:15655577,42907313:501378,78643,0 -(109,255:15819431,42907313:173670,78643,0 +(105,255:15655577,42907313:501378,78643,0 +(105,255:15819431,42907313:173670,78643,0 ) ) -(109,255:16156955,42907313:501378,78643,0 -(109,255:16320809,42907313:173670,78643,0 +(105,255:16156955,42907313:501378,78643,0 +(105,255:16320809,42907313:173670,78643,0 ) ) -(109,255:16658333,42907313:501378,78643,0 -(109,255:16822187,42907313:173670,78643,0 +(105,255:16658333,42907313:501378,78643,0 +(105,255:16822187,42907313:173670,78643,0 ) ) -(109,255:17159711,42907313:501378,78643,0 -(109,255:17323565,42907313:173670,78643,0 +(105,255:17159711,42907313:501378,78643,0 +(105,255:17323565,42907313:173670,78643,0 ) ) -(109,255:17661089,42907313:501378,78643,0 -(109,255:17824943,42907313:173670,78643,0 +(105,255:17661089,42907313:501378,78643,0 +(105,255:17824943,42907313:173670,78643,0 ) ) -(109,255:18162467,42907313:501378,78643,0 -(109,255:18326321,42907313:173670,78643,0 +(105,255:18162467,42907313:501378,78643,0 +(105,255:18326321,42907313:173670,78643,0 ) ) -(109,255:18663845,42907313:501378,78643,0 -(109,255:18827699,42907313:173670,78643,0 +(105,255:18663845,42907313:501378,78643,0 +(105,255:18827699,42907313:173670,78643,0 ) ) -(109,255:19165223,42907313:501378,78643,0 -(109,255:19329077,42907313:173670,78643,0 +(105,255:19165223,42907313:501378,78643,0 +(105,255:19329077,42907313:173670,78643,0 ) ) -(109,255:19666601,42907313:501378,78643,0 -(109,255:19830455,42907313:173670,78643,0 +(105,255:19666601,42907313:501378,78643,0 +(105,255:19830455,42907313:173670,78643,0 ) ) -(109,255:20167979,42907313:501378,78643,0 -(109,255:20331833,42907313:173670,78643,0 +(105,255:20167979,42907313:501378,78643,0 +(105,255:20331833,42907313:173670,78643,0 ) ) -(109,255:20669357,42907313:501378,78643,0 -(109,255:20833211,42907313:173670,78643,0 +(105,255:20669357,42907313:501378,78643,0 +(105,255:20833211,42907313:173670,78643,0 ) ) -(109,255:21170735,42907313:501378,78643,0 -(109,255:21334589,42907313:173670,78643,0 +(105,255:21170735,42907313:501378,78643,0 +(105,255:21334589,42907313:173670,78643,0 ) ) -(109,255:21672113,42907313:501378,78643,0 -(109,255:21835967,42907313:173670,78643,0 +(105,255:21672113,42907313:501378,78643,0 +(105,255:21835967,42907313:173670,78643,0 ) ) -(109,255:22173491,42907313:501378,78643,0 -(109,255:22337345,42907313:173670,78643,0 +(105,255:22173491,42907313:501378,78643,0 +(105,255:22337345,42907313:173670,78643,0 ) ) -(109,255:22674869,42907313:501378,78643,0 -(109,255:22838723,42907313:173670,78643,0 +(105,255:22674869,42907313:501378,78643,0 +(105,255:22838723,42907313:173670,78643,0 ) ) -(109,255:23176247,42907313:501378,78643,0 -(109,255:23340101,42907313:173670,78643,0 +(105,255:23176247,42907313:501378,78643,0 +(105,255:23340101,42907313:173670,78643,0 ) ) -(109,255:23677625,42907313:501378,78643,0 -(109,255:23841479,42907313:173670,78643,0 +(105,255:23677625,42907313:501378,78643,0 +(105,255:23841479,42907313:173670,78643,0 ) ) -(109,255:24179003,42907313:501378,78643,0 -(109,255:24342857,42907313:173670,78643,0 +(105,255:24179003,42907313:501378,78643,0 +(105,255:24342857,42907313:173670,78643,0 ) ) -(109,255:24680381,42907313:501378,78643,0 -(109,255:24844235,42907313:173670,78643,0 +(105,255:24680381,42907313:501378,78643,0 +(105,255:24844235,42907313:173670,78643,0 ) ) -(109,255:25181759,42907313:501378,78643,0 -(109,255:25345613,42907313:173670,78643,0 +(105,255:25181759,42907313:501378,78643,0 +(105,255:25345613,42907313:173670,78643,0 ) ) -(109,255:25683137,42907313:501378,78643,0 -(109,255:25846991,42907313:173670,78643,0 +(105,255:25683137,42907313:501378,78643,0 +(105,255:25846991,42907313:173670,78643,0 ) ) -(109,255:26184515,42907313:501378,78643,0 -(109,255:26348369,42907313:173670,78643,0 +(105,255:26184515,42907313:501378,78643,0 +(105,255:26348369,42907313:173670,78643,0 ) ) -(109,255:26685893,42907313:501378,78643,0 -(109,255:26849747,42907313:173670,78643,0 +(105,255:26685893,42907313:501378,78643,0 +(105,255:26849747,42907313:173670,78643,0 ) ) -(109,255:27187271,42907313:501378,78643,0 -(109,255:27351125,42907313:173670,78643,0 +(105,255:27187271,42907313:501378,78643,0 +(105,255:27351125,42907313:173670,78643,0 ) ) -(109,255:27688649,42907313:501378,78643,0 -(109,255:27852503,42907313:173670,78643,0 +(105,255:27688649,42907313:501378,78643,0 +(105,255:27852503,42907313:173670,78643,0 ) ) -(109,255:28190027,42907313:501378,78643,0 -(109,255:28353881,42907313:173670,78643,0 +(105,255:28190027,42907313:501378,78643,0 +(105,255:28353881,42907313:173670,78643,0 ) ) -(109,255:28691405,42907313:501378,78643,0 -(109,255:28855259,42907313:173670,78643,0 +(105,255:28691405,42907313:501378,78643,0 +(105,255:28855259,42907313:173670,78643,0 ) ) -(109,255:29192783,42907313:501378,78643,0 -(109,255:29356637,42907313:173670,78643,0 +(105,255:29192783,42907313:501378,78643,0 +(105,255:29356637,42907313:173670,78643,0 ) ) -(109,255:29694161,42907313:501378,78643,0 -(109,255:29858015,42907313:173670,78643,0 +(105,255:29694161,42907313:501378,78643,0 +(105,255:29858015,42907313:173670,78643,0 ) ) -(109,255:30195539,42907313:501378,78643,0 -(109,255:30359393,42907313:173670,78643,0 +(105,255:30195539,42907313:501378,78643,0 +(105,255:30359393,42907313:173670,78643,0 ) ) -(109,255:30696917,42907313:501378,78643,0 -(109,255:30860771,42907313:173670,78643,0 +(105,255:30696917,42907313:501378,78643,0 +(105,255:30860771,42907313:173670,78643,0 ) ) -(109,255:31403378,42907313:1179650,485622,11795 -k109,255:31403378,42907313:0 -k109,255:31536198,42907313:132820 +(105,255:31239538,42907313:1343490,485622,11795 +k105,255:31239538,42907313:0 +k105,255:31387651,42907313:148113 ) -g109,255:30911858,42907313 -g109,255:32583028,42907313 +g105,255:30911858,42907313 +g105,255:32583028,42907313 ) -(109,257:6630773,43748801:25952256,505283,134348 -g109,257:9121143,43748801 -h109,257:9121143,43748801:983040,0,0 -h109,257:10104183,43748801:0,0,0 -g109,257:7613813,43748801 -(109,257:7613813,43748801:1507330,485622,11795 -k109,257:9121143,43748801:536742 +(105,257:6630773,43748801:25952256,505283,134348 +g105,257:9121143,43748801 +h105,257:9121143,43748801:983040,0,0 +h105,257:10104183,43748801:0,0,0 +g105,257:7613813,43748801 +(105,257:7613813,43748801:1507330,485622,11795 +k105,257:9121143,43748801:536742 ) -g109,257:11690154,43748801 -g109,257:14291933,43748801 -g109,257:14291933,43748801 -(109,257:14652821,43748801:501378,78643,0 -$109,257:14652821,43748801 -(109,257:14816675,43748801:173670,78643,0 +g105,257:11690154,43748801 +g105,257:14291933,43748801 +g105,257:14291933,43748801 +(105,257:14652821,43748801:501378,78643,0 +$105,257:14652821,43748801 +(105,257:14816675,43748801:173670,78643,0 ) -$109,257:15154199,43748801 +$105,257:15154199,43748801 ) -(109,257:15154199,43748801:501378,78643,0 -(109,257:15318053,43748801:173670,78643,0 +(105,257:15154199,43748801:501378,78643,0 +(105,257:15318053,43748801:173670,78643,0 ) ) -(109,257:15655577,43748801:501378,78643,0 -(109,257:15819431,43748801:173670,78643,0 +(105,257:15655577,43748801:501378,78643,0 +(105,257:15819431,43748801:173670,78643,0 ) ) -(109,257:16156955,43748801:501378,78643,0 -(109,257:16320809,43748801:173670,78643,0 +(105,257:16156955,43748801:501378,78643,0 +(105,257:16320809,43748801:173670,78643,0 ) ) -(109,257:16658333,43748801:501378,78643,0 -(109,257:16822187,43748801:173670,78643,0 +(105,257:16658333,43748801:501378,78643,0 +(105,257:16822187,43748801:173670,78643,0 ) ) -(109,257:17159711,43748801:501378,78643,0 -(109,257:17323565,43748801:173670,78643,0 +(105,257:17159711,43748801:501378,78643,0 +(105,257:17323565,43748801:173670,78643,0 ) ) -(109,257:17661089,43748801:501378,78643,0 -(109,257:17824943,43748801:173670,78643,0 +(105,257:17661089,43748801:501378,78643,0 +(105,257:17824943,43748801:173670,78643,0 ) ) -(109,257:18162467,43748801:501378,78643,0 -(109,257:18326321,43748801:173670,78643,0 +(105,257:18162467,43748801:501378,78643,0 +(105,257:18326321,43748801:173670,78643,0 ) ) -(109,257:18663845,43748801:501378,78643,0 -(109,257:18827699,43748801:173670,78643,0 +(105,257:18663845,43748801:501378,78643,0 +(105,257:18827699,43748801:173670,78643,0 ) ) -(109,257:19165223,43748801:501378,78643,0 -(109,257:19329077,43748801:173670,78643,0 +(105,257:19165223,43748801:501378,78643,0 +(105,257:19329077,43748801:173670,78643,0 ) ) -(109,257:19666601,43748801:501378,78643,0 -(109,257:19830455,43748801:173670,78643,0 +(105,257:19666601,43748801:501378,78643,0 +(105,257:19830455,43748801:173670,78643,0 ) ) -(109,257:20167979,43748801:501378,78643,0 -(109,257:20331833,43748801:173670,78643,0 +(105,257:20167979,43748801:501378,78643,0 +(105,257:20331833,43748801:173670,78643,0 ) ) -(109,257:20669357,43748801:501378,78643,0 -(109,257:20833211,43748801:173670,78643,0 +(105,257:20669357,43748801:501378,78643,0 +(105,257:20833211,43748801:173670,78643,0 ) ) -(109,257:21170735,43748801:501378,78643,0 -(109,257:21334589,43748801:173670,78643,0 +(105,257:21170735,43748801:501378,78643,0 +(105,257:21334589,43748801:173670,78643,0 ) ) -(109,257:21672113,43748801:501378,78643,0 -(109,257:21835967,43748801:173670,78643,0 +(105,257:21672113,43748801:501378,78643,0 +(105,257:21835967,43748801:173670,78643,0 ) ) -(109,257:22173491,43748801:501378,78643,0 -(109,257:22337345,43748801:173670,78643,0 +(105,257:22173491,43748801:501378,78643,0 +(105,257:22337345,43748801:173670,78643,0 ) ) -(109,257:22674869,43748801:501378,78643,0 -(109,257:22838723,43748801:173670,78643,0 +(105,257:22674869,43748801:501378,78643,0 +(105,257:22838723,43748801:173670,78643,0 ) ) -(109,257:23176247,43748801:501378,78643,0 -(109,257:23340101,43748801:173670,78643,0 +(105,257:23176247,43748801:501378,78643,0 +(105,257:23340101,43748801:173670,78643,0 ) ) -(109,257:23677625,43748801:501378,78643,0 -(109,257:23841479,43748801:173670,78643,0 +(105,257:23677625,43748801:501378,78643,0 +(105,257:23841479,43748801:173670,78643,0 ) ) -(109,257:24179003,43748801:501378,78643,0 -(109,257:24342857,43748801:173670,78643,0 +(105,257:24179003,43748801:501378,78643,0 +(105,257:24342857,43748801:173670,78643,0 ) ) -(109,257:24680381,43748801:501378,78643,0 -(109,257:24844235,43748801:173670,78643,0 +(105,257:24680381,43748801:501378,78643,0 +(105,257:24844235,43748801:173670,78643,0 ) ) -(109,257:25181759,43748801:501378,78643,0 -(109,257:25345613,43748801:173670,78643,0 +(105,257:25181759,43748801:501378,78643,0 +(105,257:25345613,43748801:173670,78643,0 ) ) -(109,257:25683137,43748801:501378,78643,0 -(109,257:25846991,43748801:173670,78643,0 +(105,257:25683137,43748801:501378,78643,0 +(105,257:25846991,43748801:173670,78643,0 ) ) -(109,257:26184515,43748801:501378,78643,0 -(109,257:26348369,43748801:173670,78643,0 +(105,257:26184515,43748801:501378,78643,0 +(105,257:26348369,43748801:173670,78643,0 ) ) -(109,257:26685893,43748801:501378,78643,0 -(109,257:26849747,43748801:173670,78643,0 +(105,257:26685893,43748801:501378,78643,0 +(105,257:26849747,43748801:173670,78643,0 ) ) -(109,257:27187271,43748801:501378,78643,0 -(109,257:27351125,43748801:173670,78643,0 +(105,257:27187271,43748801:501378,78643,0 +(105,257:27351125,43748801:173670,78643,0 ) ) -(109,257:27688649,43748801:501378,78643,0 -(109,257:27852503,43748801:173670,78643,0 +(105,257:27688649,43748801:501378,78643,0 +(105,257:27852503,43748801:173670,78643,0 ) ) -(109,257:28190027,43748801:501378,78643,0 -(109,257:28353881,43748801:173670,78643,0 +(105,257:28190027,43748801:501378,78643,0 +(105,257:28353881,43748801:173670,78643,0 ) ) -(109,257:28691405,43748801:501378,78643,0 -(109,257:28855259,43748801:173670,78643,0 +(105,257:28691405,43748801:501378,78643,0 +(105,257:28855259,43748801:173670,78643,0 ) ) -(109,257:29192783,43748801:501378,78643,0 -(109,257:29356637,43748801:173670,78643,0 +(105,257:29192783,43748801:501378,78643,0 +(105,257:29356637,43748801:173670,78643,0 ) ) -(109,257:29694161,43748801:501378,78643,0 -(109,257:29858015,43748801:173670,78643,0 +(105,257:29694161,43748801:501378,78643,0 +(105,257:29858015,43748801:173670,78643,0 ) ) -(109,257:30195539,43748801:501378,78643,0 -(109,257:30359393,43748801:173670,78643,0 +(105,257:30195539,43748801:501378,78643,0 +(105,257:30359393,43748801:173670,78643,0 ) ) -(109,257:30696917,43748801:501378,78643,0 -(109,257:30860771,43748801:173670,78643,0 +(105,257:30696917,43748801:501378,78643,0 +(105,257:30860771,43748801:173670,78643,0 ) ) -(109,257:31403379,43748801:1179650,485622,11795 -k109,257:31403379,43748801:0 -k109,257:31536199,43748801:132820 +(105,257:31239539,43748801:1343490,485622,11795 +k105,257:31239539,43748801:0 +k105,257:31387652,43748801:148113 ) -g109,257:30911859,43748801 -g109,257:32583029,43748801 +g105,257:30911859,43748801 +g105,257:32583029,43748801 ) ] -(109,263:32583029,45706769:0,0,0 -g109,263:32583029,45706769 +(105,263:32583029,45706769:0,0,0 +g105,263:32583029,45706769 ) ) ] -(109,263:6630773,47279633:25952256,0,0 -h109,263:6630773,47279633:25952256,0,0 +(105,263:6630773,47279633:25952256,0,0 +h105,263:6630773,47279633:25952256,0,0 ) ] -h109,263:4262630,4025873:0,0,0 +h105,263:4262630,4025873:0,0,0 ] !131720 }4 !11 {5 -[109,355:4262630,47279633:28320399,43253760,0 -(109,355:4262630,4025873:0,0,0 -[109,355:-473657,4025873:25952256,0,0 -(109,355:-473657,-710414:25952256,0,0 -h109,355:-473657,-710414:0,0,0 -(109,355:-473657,-710414:0,0,0 -(109,355:-473657,-710414:0,0,0 -g109,355:-473657,-710414 -(109,355:-473657,-710414:65781,0,65781 -g109,355:-407876,-710414 -[109,355:-407876,-644633:0,0,0 +[105,355:4262630,47279633:28320399,43253760,0 +(105,355:4262630,4025873:0,0,0 +[105,355:-473657,4025873:25952256,0,0 +(105,355:-473657,-710414:25952256,0,0 +h105,355:-473657,-710414:0,0,0 +(105,355:-473657,-710414:0,0,0 +(105,355:-473657,-710414:0,0,0 +g105,355:-473657,-710414 +(105,355:-473657,-710414:65781,0,65781 +g105,355:-407876,-710414 +[105,355:-407876,-644633:0,0,0 ] ) -k109,355:-473657,-710414:-65781 +k105,355:-473657,-710414:-65781 ) ) -k109,355:25478599,-710414:25952256 -g109,355:25478599,-710414 +k105,355:25478599,-710414:25952256 +g105,355:25478599,-710414 ) ] ) -[109,355:6630773,47279633:25952256,43253760,0 -[109,355:6630773,4812305:25952256,786432,0 -(109,355:6630773,4812305:25952256,485622,11795 -(109,355:6630773,4812305:25952256,485622,11795 -g109,355:3078558,4812305 -[109,355:3078558,4812305:0,0,0 -(109,355:3078558,2439708:0,1703936,0 -k109,355:1358238,2439708:-1720320 -(1,86:1358238,2439708:1720320,1703936,0 -(1,86:1358238,2439708:1179648,16384,0 -r109,355:2537886,2439708:1179648,16384,0 +[105,355:6630773,47279633:25952256,43253760,0 +[105,355:6630773,4812305:25952256,786432,0 +(105,355:6630773,4812305:25952256,485622,11795 +(105,355:6630773,4812305:25952256,485622,11795 +g105,355:3078558,4812305 +[105,355:3078558,4812305:0,0,0 +(105,355:3078558,2439708:0,1703936,0 +k105,355:1358238,2439708:-1720320 +(1,92:1358238,2439708:1720320,1703936,0 +(1,92:1358238,2439708:1179648,16384,0 +r105,355:2537886,2439708:1179648,16384,0 ) -g1,86:3062174,2439708 -(1,86:3062174,2439708:16384,1703936,0 -[1,86:3062174,2439708:25952256,1703936,0 -(1,86:3062174,1915420:25952256,1179648,0 -(1,86:3062174,1915420:16384,1179648,0 -r109,355:3078558,1915420:16384,1179648,0 +g1,92:3062174,2439708 +(1,92:3062174,2439708:16384,1703936,0 +[1,92:3062174,2439708:25952256,1703936,0 +(1,92:3062174,1915420:25952256,1179648,0 +(1,92:3062174,1915420:16384,1179648,0 +r105,355:3078558,1915420:16384,1179648,0 ) -k1,86:29014430,1915420:25935872 -g1,86:29014430,1915420 +k1,92:29014430,1915420:25935872 +g1,92:29014430,1915420 ) ] ) ) ) ] -[109,355:3078558,4812305:0,0,0 -(109,355:3078558,2439708:0,1703936,0 -g109,355:29030814,2439708 -g109,355:36135244,2439708 -(1,86:36135244,2439708:1720320,1703936,0 -(1,86:36135244,2439708:16384,1703936,0 -[1,86:36135244,2439708:25952256,1703936,0 -(1,86:36135244,1915420:25952256,1179648,0 -(1,86:36135244,1915420:16384,1179648,0 -r109,355:36151628,1915420:16384,1179648,0 +[105,355:3078558,4812305:0,0,0 +(105,355:3078558,2439708:0,1703936,0 +g105,355:29030814,2439708 +g105,355:36135244,2439708 +(1,92:36135244,2439708:1720320,1703936,0 +(1,92:36135244,2439708:16384,1703936,0 +[1,92:36135244,2439708:25952256,1703936,0 +(1,92:36135244,1915420:25952256,1179648,0 +(1,92:36135244,1915420:16384,1179648,0 +r105,355:36151628,1915420:16384,1179648,0 ) -k1,86:62087500,1915420:25935872 -g1,86:62087500,1915420 +k1,92:62087500,1915420:25935872 +g1,92:62087500,1915420 ) ] ) -g1,86:36675916,2439708 -(1,86:36675916,2439708:1179648,16384,0 -r109,355:37855564,2439708:1179648,16384,0 +g1,92:36675916,2439708 +(1,92:36675916,2439708:1179648,16384,0 +r105,355:37855564,2439708:1179648,16384,0 ) ) -k109,355:3078556,2439708:-34777008 +k105,355:3078556,2439708:-34777008 ) ] -[109,355:3078558,4812305:0,0,0 -(109,355:3078558,49800853:0,16384,2228224 -k109,355:1358238,49800853:-1720320 -(1,86:1358238,49800853:1720320,16384,2228224 -(1,86:1358238,49800853:1179648,16384,0 -r109,355:2537886,49800853:1179648,16384,0 +[105,355:3078558,4812305:0,0,0 +(105,355:3078558,49800853:0,16384,2228224 +k105,355:1358238,49800853:-1720320 +(1,92:1358238,49800853:1720320,16384,2228224 +(1,92:1358238,49800853:1179648,16384,0 +r105,355:2537886,49800853:1179648,16384,0 ) -g1,86:3062174,49800853 -(1,86:3062174,52029077:16384,1703936,0 -[1,86:3062174,52029077:25952256,1703936,0 -(1,86:3062174,51504789:25952256,1179648,0 -(1,86:3062174,51504789:16384,1179648,0 -r109,355:3078558,51504789:16384,1179648,0 +g1,92:3062174,49800853 +(1,92:3062174,52029077:16384,1703936,0 +[1,92:3062174,52029077:25952256,1703936,0 +(1,92:3062174,51504789:25952256,1179648,0 +(1,92:3062174,51504789:16384,1179648,0 +r105,355:3078558,51504789:16384,1179648,0 ) -k1,86:29014430,51504789:25935872 -g1,86:29014430,51504789 +k1,92:29014430,51504789:25935872 +g1,92:29014430,51504789 ) ] ) ) ) ] -[109,355:3078558,4812305:0,0,0 -(109,355:3078558,49800853:0,16384,2228224 -g109,355:29030814,49800853 -g109,355:36135244,49800853 -(1,86:36135244,49800853:1720320,16384,2228224 -(1,86:36135244,52029077:16384,1703936,0 -[1,86:36135244,52029077:25952256,1703936,0 -(1,86:36135244,51504789:25952256,1179648,0 -(1,86:36135244,51504789:16384,1179648,0 -r109,355:36151628,51504789:16384,1179648,0 +[105,355:3078558,4812305:0,0,0 +(105,355:3078558,49800853:0,16384,2228224 +g105,355:29030814,49800853 +g105,355:36135244,49800853 +(1,92:36135244,49800853:1720320,16384,2228224 +(1,92:36135244,52029077:16384,1703936,0 +[1,92:36135244,52029077:25952256,1703936,0 +(1,92:36135244,51504789:25952256,1179648,0 +(1,92:36135244,51504789:16384,1179648,0 +r105,355:36151628,51504789:16384,1179648,0 ) -k1,86:62087500,51504789:25935872 -g1,86:62087500,51504789 +k1,92:62087500,51504789:25935872 +g1,92:62087500,51504789 ) ] ) -g1,86:36675916,49800853 -(1,86:36675916,49800853:1179648,16384,0 -r109,355:37855564,49800853:1179648,16384,0 +g1,92:36675916,49800853 +(1,92:36675916,49800853:1179648,16384,0 +r105,355:37855564,49800853:1179648,16384,0 ) ) -k109,355:3078556,49800853:-34777008 +k105,355:3078556,49800853:-34777008 ) ] -g109,355:6630773,4812305 -k109,355:29827895,4812305:22832086 +g105,355:6630773,4812305 +k105,355:29827895,4812305:22832086 ) ) ] -[109,355:6630773,45706769:25952256,40108032,0 -(109,355:6630773,45706769:25952256,40108032,0 -(109,355:6630773,45706769:0,0,0 -g109,355:6630773,45706769 +[105,355:6630773,45706769:25952256,40108032,0 +(105,355:6630773,45706769:25952256,40108032,0 +(105,355:6630773,45706769:0,0,0 +g105,355:6630773,45706769 ) -[109,355:6630773,45706769:25952256,40108032,0 -(109,259:6630773,6254097:25952256,513147,134348 -g109,259:7613813,6254097 -h109,259:7613813,6254097:0,0,0 -g109,259:6630773,6254097 -(109,259:6630773,6254097:983040,473825,0 -k109,259:7613813,6254097:574751 +[105,355:6630773,45706769:25952256,40108032,0 +(105,259:6630773,6254097:25952256,513147,134348 +g105,259:7613813,6254097 +h105,259:7613813,6254097:0,0,0 +g105,259:6630773,6254097 +(105,259:6630773,6254097:983040,473825,0 +k105,259:7613813,6254097:574751 ) -g109,259:10913550,6254097 -g109,259:11795009,6254097 -k109,259:23012478,6254097:8390901 -k109,259:31403379,6254097:8390901 -(109,259:31403379,6254097:1179650,485622,11795 -k109,259:31358161,6254097:-45218 +g105,259:10913550,6254097 +g105,259:11795009,6254097 +k105,259:22930558,6254097:8308981 +k105,259:31239539,6254097:8308981 +(105,259:31239539,6254097:1343490,485622,11795 +k105,259:31358161,6254097:118622 ) -g109,259:31403379,6254097 -g109,259:32583029,6254097 +g105,259:31239539,6254097 +g105,259:32583029,6254097 ) -(109,261:6630773,7095585:25952256,513147,126483 -g109,261:9121143,7095585 -h109,261:9121143,7095585:983040,0,0 -h109,261:10104183,7095585:0,0,0 -g109,261:7613813,7095585 -(109,261:7613813,7095585:1507330,477757,0 -k109,261:9121143,7095585:536742 +(105,261:6630773,7095585:25952256,513147,126483 +g105,261:9121143,7095585 +h105,261:9121143,7095585:983040,0,0 +h105,261:10104183,7095585:0,0,0 +g105,261:7613813,7095585 +(105,261:7613813,7095585:1507330,477757,0 +k105,261:9121143,7095585:536742 ) -g109,261:10959427,7095585 -g109,261:11817948,7095585 -g109,261:13220418,7095585 -g109,261:15837270,7095585 -g109,261:15837270,7095585 -(109,261:16156955,7095585:501378,78643,0 -$109,261:16156955,7095585 -(109,261:16320809,7095585:173670,78643,0 +g105,261:10959427,7095585 +g105,261:11817948,7095585 +g105,261:13220418,7095585 +g105,261:15837270,7095585 +g105,261:15837270,7095585 +(105,261:16156955,7095585:501378,78643,0 +$105,261:16156955,7095585 +(105,261:16320809,7095585:173670,78643,0 ) -$109,261:16658333,7095585 +$105,261:16658333,7095585 ) -(109,261:16658333,7095585:501378,78643,0 -(109,261:16822187,7095585:173670,78643,0 +(105,261:16658333,7095585:501378,78643,0 +(105,261:16822187,7095585:173670,78643,0 ) ) -(109,261:17159711,7095585:501378,78643,0 -(109,261:17323565,7095585:173670,78643,0 +(105,261:17159711,7095585:501378,78643,0 +(105,261:17323565,7095585:173670,78643,0 ) ) -(109,261:17661089,7095585:501378,78643,0 -(109,261:17824943,7095585:173670,78643,0 +(105,261:17661089,7095585:501378,78643,0 +(105,261:17824943,7095585:173670,78643,0 ) ) -(109,261:18162467,7095585:501378,78643,0 -(109,261:18326321,7095585:173670,78643,0 +(105,261:18162467,7095585:501378,78643,0 +(105,261:18326321,7095585:173670,78643,0 ) ) -(109,261:18663845,7095585:501378,78643,0 -(109,261:18827699,7095585:173670,78643,0 +(105,261:18663845,7095585:501378,78643,0 +(105,261:18827699,7095585:173670,78643,0 ) ) -(109,261:19165223,7095585:501378,78643,0 -(109,261:19329077,7095585:173670,78643,0 +(105,261:19165223,7095585:501378,78643,0 +(105,261:19329077,7095585:173670,78643,0 ) ) -(109,261:19666601,7095585:501378,78643,0 -(109,261:19830455,7095585:173670,78643,0 +(105,261:19666601,7095585:501378,78643,0 +(105,261:19830455,7095585:173670,78643,0 ) ) -(109,261:20167979,7095585:501378,78643,0 -(109,261:20331833,7095585:173670,78643,0 +(105,261:20167979,7095585:501378,78643,0 +(105,261:20331833,7095585:173670,78643,0 ) ) -(109,261:20669357,7095585:501378,78643,0 -(109,261:20833211,7095585:173670,78643,0 +(105,261:20669357,7095585:501378,78643,0 +(105,261:20833211,7095585:173670,78643,0 ) ) -(109,261:21170735,7095585:501378,78643,0 -(109,261:21334589,7095585:173670,78643,0 +(105,261:21170735,7095585:501378,78643,0 +(105,261:21334589,7095585:173670,78643,0 ) ) -(109,261:21672113,7095585:501378,78643,0 -(109,261:21835967,7095585:173670,78643,0 +(105,261:21672113,7095585:501378,78643,0 +(105,261:21835967,7095585:173670,78643,0 ) ) -(109,261:22173491,7095585:501378,78643,0 -(109,261:22337345,7095585:173670,78643,0 +(105,261:22173491,7095585:501378,78643,0 +(105,261:22337345,7095585:173670,78643,0 ) ) -(109,261:22674869,7095585:501378,78643,0 -(109,261:22838723,7095585:173670,78643,0 +(105,261:22674869,7095585:501378,78643,0 +(105,261:22838723,7095585:173670,78643,0 ) ) -(109,261:23176247,7095585:501378,78643,0 -(109,261:23340101,7095585:173670,78643,0 +(105,261:23176247,7095585:501378,78643,0 +(105,261:23340101,7095585:173670,78643,0 ) ) -(109,261:23677625,7095585:501378,78643,0 -(109,261:23841479,7095585:173670,78643,0 +(105,261:23677625,7095585:501378,78643,0 +(105,261:23841479,7095585:173670,78643,0 ) ) -(109,261:24179003,7095585:501378,78643,0 -(109,261:24342857,7095585:173670,78643,0 +(105,261:24179003,7095585:501378,78643,0 +(105,261:24342857,7095585:173670,78643,0 ) ) -(109,261:24680381,7095585:501378,78643,0 -(109,261:24844235,7095585:173670,78643,0 +(105,261:24680381,7095585:501378,78643,0 +(105,261:24844235,7095585:173670,78643,0 ) ) -(109,261:25181759,7095585:501378,78643,0 -(109,261:25345613,7095585:173670,78643,0 +(105,261:25181759,7095585:501378,78643,0 +(105,261:25345613,7095585:173670,78643,0 ) ) -(109,261:25683137,7095585:501378,78643,0 -(109,261:25846991,7095585:173670,78643,0 +(105,261:25683137,7095585:501378,78643,0 +(105,261:25846991,7095585:173670,78643,0 ) ) -(109,261:26184515,7095585:501378,78643,0 -(109,261:26348369,7095585:173670,78643,0 +(105,261:26184515,7095585:501378,78643,0 +(105,261:26348369,7095585:173670,78643,0 ) ) -(109,261:26685893,7095585:501378,78643,0 -(109,261:26849747,7095585:173670,78643,0 +(105,261:26685893,7095585:501378,78643,0 +(105,261:26849747,7095585:173670,78643,0 ) ) -(109,261:27187271,7095585:501378,78643,0 -(109,261:27351125,7095585:173670,78643,0 +(105,261:27187271,7095585:501378,78643,0 +(105,261:27351125,7095585:173670,78643,0 ) ) -(109,261:27688649,7095585:501378,78643,0 -(109,261:27852503,7095585:173670,78643,0 +(105,261:27688649,7095585:501378,78643,0 +(105,261:27852503,7095585:173670,78643,0 ) ) -(109,261:28190027,7095585:501378,78643,0 -(109,261:28353881,7095585:173670,78643,0 +(105,261:28190027,7095585:501378,78643,0 +(105,261:28353881,7095585:173670,78643,0 ) ) -(109,261:28691405,7095585:501378,78643,0 -(109,261:28855259,7095585:173670,78643,0 +(105,261:28691405,7095585:501378,78643,0 +(105,261:28855259,7095585:173670,78643,0 ) ) -(109,261:29192783,7095585:501378,78643,0 -(109,261:29356637,7095585:173670,78643,0 +(105,261:29192783,7095585:501378,78643,0 +(105,261:29356637,7095585:173670,78643,0 ) ) -(109,261:29694161,7095585:501378,78643,0 -(109,261:29858015,7095585:173670,78643,0 +(105,261:29694161,7095585:501378,78643,0 +(105,261:29858015,7095585:173670,78643,0 ) ) -(109,261:30195539,7095585:501378,78643,0 -(109,261:30359393,7095585:173670,78643,0 +(105,261:30195539,7095585:501378,78643,0 +(105,261:30359393,7095585:173670,78643,0 ) ) -(109,261:30696917,7095585:501378,78643,0 -(109,261:30860771,7095585:173670,78643,0 +(105,261:30696917,7095585:501378,78643,0 +(105,261:30860771,7095585:173670,78643,0 ) ) -(109,261:31403379,7095585:1179650,485622,11795 -k109,261:31403379,7095585:0 -k109,261:31536199,7095585:132820 +(105,261:31239539,7095585:1343490,485622,11795 +k105,261:31239539,7095585:0 +k105,261:31387652,7095585:148113 ) -g109,261:30911859,7095585 -g109,261:32583029,7095585 +g105,261:30911859,7095585 +g105,261:32583029,7095585 ) -(109,263:6630773,7937073:25952256,505283,134348 -g109,263:9121143,7937073 -h109,263:9121143,7937073:983040,0,0 -h109,263:10104183,7937073:0,0,0 -g109,263:7613813,7937073 -(109,263:7613813,7937073:1507330,485622,0 -k109,263:9121143,7937073:536742 +(105,263:6630773,7937073:25952256,505283,134348 +g105,263:9121143,7937073 +h105,263:9121143,7937073:983040,0,0 +h105,263:10104183,7937073:0,0,0 +g105,263:7613813,7937073 +(105,263:7613813,7937073:1507330,485622,0 +k105,263:9121143,7937073:536742 ) -g109,263:12185606,7937073 -g109,263:13898061,7937073 -g109,263:14713328,7937073 -g109,263:16115798,7937073 -g109,263:18732650,7937073 -g109,263:18732650,7937073 -(109,263:19165223,7937073:501378,78643,0 -$109,263:19165223,7937073 -(109,263:19329077,7937073:173670,78643,0 +g105,263:12185606,7937073 +g105,263:13898061,7937073 +g105,263:14713328,7937073 +g105,263:16115798,7937073 +g105,263:18732650,7937073 +g105,263:18732650,7937073 +(105,263:19165223,7937073:501378,78643,0 +$105,263:19165223,7937073 +(105,263:19329077,7937073:173670,78643,0 ) -$109,263:19666601,7937073 +$105,263:19666601,7937073 ) -(109,263:19666601,7937073:501378,78643,0 -(109,263:19830455,7937073:173670,78643,0 +(105,263:19666601,7937073:501378,78643,0 +(105,263:19830455,7937073:173670,78643,0 ) ) -(109,263:20167979,7937073:501378,78643,0 -(109,263:20331833,7937073:173670,78643,0 +(105,263:20167979,7937073:501378,78643,0 +(105,263:20331833,7937073:173670,78643,0 ) ) -(109,263:20669357,7937073:501378,78643,0 -(109,263:20833211,7937073:173670,78643,0 +(105,263:20669357,7937073:501378,78643,0 +(105,263:20833211,7937073:173670,78643,0 ) ) -(109,263:21170735,7937073:501378,78643,0 -(109,263:21334589,7937073:173670,78643,0 +(105,263:21170735,7937073:501378,78643,0 +(105,263:21334589,7937073:173670,78643,0 ) ) -(109,263:21672113,7937073:501378,78643,0 -(109,263:21835967,7937073:173670,78643,0 +(105,263:21672113,7937073:501378,78643,0 +(105,263:21835967,7937073:173670,78643,0 ) ) -(109,263:22173491,7937073:501378,78643,0 -(109,263:22337345,7937073:173670,78643,0 +(105,263:22173491,7937073:501378,78643,0 +(105,263:22337345,7937073:173670,78643,0 ) ) -(109,263:22674869,7937073:501378,78643,0 -(109,263:22838723,7937073:173670,78643,0 +(105,263:22674869,7937073:501378,78643,0 +(105,263:22838723,7937073:173670,78643,0 ) ) -(109,263:23176247,7937073:501378,78643,0 -(109,263:23340101,7937073:173670,78643,0 +(105,263:23176247,7937073:501378,78643,0 +(105,263:23340101,7937073:173670,78643,0 ) ) -(109,263:23677625,7937073:501378,78643,0 -(109,263:23841479,7937073:173670,78643,0 +(105,263:23677625,7937073:501378,78643,0 +(105,263:23841479,7937073:173670,78643,0 ) ) -(109,263:24179003,7937073:501378,78643,0 -(109,263:24342857,7937073:173670,78643,0 +(105,263:24179003,7937073:501378,78643,0 +(105,263:24342857,7937073:173670,78643,0 ) ) -(109,263:24680381,7937073:501378,78643,0 -(109,263:24844235,7937073:173670,78643,0 +(105,263:24680381,7937073:501378,78643,0 +(105,263:24844235,7937073:173670,78643,0 ) ) -(109,263:25181759,7937073:501378,78643,0 -(109,263:25345613,7937073:173670,78643,0 +(105,263:25181759,7937073:501378,78643,0 +(105,263:25345613,7937073:173670,78643,0 ) ) -(109,263:25683137,7937073:501378,78643,0 -(109,263:25846991,7937073:173670,78643,0 +(105,263:25683137,7937073:501378,78643,0 +(105,263:25846991,7937073:173670,78643,0 ) ) -(109,263:26184515,7937073:501378,78643,0 -(109,263:26348369,7937073:173670,78643,0 +(105,263:26184515,7937073:501378,78643,0 +(105,263:26348369,7937073:173670,78643,0 ) ) -(109,263:26685893,7937073:501378,78643,0 -(109,263:26849747,7937073:173670,78643,0 +(105,263:26685893,7937073:501378,78643,0 +(105,263:26849747,7937073:173670,78643,0 ) ) -(109,263:27187271,7937073:501378,78643,0 -(109,263:27351125,7937073:173670,78643,0 +(105,263:27187271,7937073:501378,78643,0 +(105,263:27351125,7937073:173670,78643,0 ) ) -(109,263:27688649,7937073:501378,78643,0 -(109,263:27852503,7937073:173670,78643,0 +(105,263:27688649,7937073:501378,78643,0 +(105,263:27852503,7937073:173670,78643,0 ) ) -(109,263:28190027,7937073:501378,78643,0 -(109,263:28353881,7937073:173670,78643,0 +(105,263:28190027,7937073:501378,78643,0 +(105,263:28353881,7937073:173670,78643,0 ) ) -(109,263:28691405,7937073:501378,78643,0 -(109,263:28855259,7937073:173670,78643,0 +(105,263:28691405,7937073:501378,78643,0 +(105,263:28855259,7937073:173670,78643,0 ) ) -(109,263:29192783,7937073:501378,78643,0 -(109,263:29356637,7937073:173670,78643,0 +(105,263:29192783,7937073:501378,78643,0 +(105,263:29356637,7937073:173670,78643,0 ) ) -(109,263:29694161,7937073:501378,78643,0 -(109,263:29858015,7937073:173670,78643,0 +(105,263:29694161,7937073:501378,78643,0 +(105,263:29858015,7937073:173670,78643,0 ) ) -(109,263:30195539,7937073:501378,78643,0 -(109,263:30359393,7937073:173670,78643,0 +(105,263:30195539,7937073:501378,78643,0 +(105,263:30359393,7937073:173670,78643,0 ) ) -(109,263:30696917,7937073:501378,78643,0 -(109,263:30860771,7937073:173670,78643,0 +(105,263:30696917,7937073:501378,78643,0 +(105,263:30860771,7937073:173670,78643,0 ) ) -(109,263:31403379,7937073:1179650,485622,11795 -k109,263:31403379,7937073:0 -k109,263:31536199,7937073:132820 +(105,263:31239539,7937073:1343490,485622,11795 +k105,263:31239539,7937073:0 +k105,263:31387652,7937073:148113 ) -g109,263:30911859,7937073 -g109,263:32583029,7937073 +g105,263:30911859,7937073 +g105,263:32583029,7937073 ) -(109,265:6630773,8778561:25952256,513147,134348 -g109,265:9121143,8778561 -h109,265:9121143,8778561:983040,0,0 -h109,265:10104183,8778561:0,0,0 -g109,265:7613813,8778561 -(109,265:7613813,8778561:1507330,485622,11795 -k109,265:9121143,8778561:536742 +(105,265:6630773,8778561:25952256,513147,134348 +g105,265:9121143,8778561 +h105,265:9121143,8778561:983040,0,0 +h105,265:10104183,8778561:0,0,0 +g105,265:7613813,8778561 +(105,265:7613813,8778561:1507330,485622,11795 +k105,265:9121143,8778561:536742 ) -g109,265:13324622,8778561 -g109,265:14175279,8778561 -g109,265:15393593,8778561 -g109,265:18495412,8778561 -g109,265:19353933,8778561 -g109,265:22272251,8778561 -g109,265:22272251,8778561 -(109,265:22674869,8778561:501378,78643,0 -$109,265:22674869,8778561 -(109,265:22838723,8778561:173670,78643,0 +g105,265:13324622,8778561 +g105,265:14175279,8778561 +g105,265:15393593,8778561 +g105,265:18495412,8778561 +g105,265:19353933,8778561 +g105,265:22272251,8778561 +g105,265:22272251,8778561 +(105,265:22674869,8778561:501378,78643,0 +$105,265:22674869,8778561 +(105,265:22838723,8778561:173670,78643,0 ) -$109,265:23176247,8778561 +$105,265:23176247,8778561 ) -(109,265:23176247,8778561:501378,78643,0 -(109,265:23340101,8778561:173670,78643,0 +(105,265:23176247,8778561:501378,78643,0 +(105,265:23340101,8778561:173670,78643,0 ) ) -(109,265:23677625,8778561:501378,78643,0 -(109,265:23841479,8778561:173670,78643,0 +(105,265:23677625,8778561:501378,78643,0 +(105,265:23841479,8778561:173670,78643,0 ) ) -(109,265:24179003,8778561:501378,78643,0 -(109,265:24342857,8778561:173670,78643,0 +(105,265:24179003,8778561:501378,78643,0 +(105,265:24342857,8778561:173670,78643,0 ) ) -(109,265:24680381,8778561:501378,78643,0 -(109,265:24844235,8778561:173670,78643,0 +(105,265:24680381,8778561:501378,78643,0 +(105,265:24844235,8778561:173670,78643,0 ) ) -(109,265:25181759,8778561:501378,78643,0 -(109,265:25345613,8778561:173670,78643,0 +(105,265:25181759,8778561:501378,78643,0 +(105,265:25345613,8778561:173670,78643,0 ) ) -(109,265:25683137,8778561:501378,78643,0 -(109,265:25846991,8778561:173670,78643,0 +(105,265:25683137,8778561:501378,78643,0 +(105,265:25846991,8778561:173670,78643,0 ) ) -(109,265:26184515,8778561:501378,78643,0 -(109,265:26348369,8778561:173670,78643,0 +(105,265:26184515,8778561:501378,78643,0 +(105,265:26348369,8778561:173670,78643,0 ) ) -(109,265:26685893,8778561:501378,78643,0 -(109,265:26849747,8778561:173670,78643,0 +(105,265:26685893,8778561:501378,78643,0 +(105,265:26849747,8778561:173670,78643,0 ) ) -(109,265:27187271,8778561:501378,78643,0 -(109,265:27351125,8778561:173670,78643,0 +(105,265:27187271,8778561:501378,78643,0 +(105,265:27351125,8778561:173670,78643,0 ) ) -(109,265:27688649,8778561:501378,78643,0 -(109,265:27852503,8778561:173670,78643,0 +(105,265:27688649,8778561:501378,78643,0 +(105,265:27852503,8778561:173670,78643,0 ) ) -(109,265:28190027,8778561:501378,78643,0 -(109,265:28353881,8778561:173670,78643,0 +(105,265:28190027,8778561:501378,78643,0 +(105,265:28353881,8778561:173670,78643,0 ) ) -(109,265:28691405,8778561:501378,78643,0 -(109,265:28855259,8778561:173670,78643,0 +(105,265:28691405,8778561:501378,78643,0 +(105,265:28855259,8778561:173670,78643,0 ) ) -(109,265:29192783,8778561:501378,78643,0 -(109,265:29356637,8778561:173670,78643,0 +(105,265:29192783,8778561:501378,78643,0 +(105,265:29356637,8778561:173670,78643,0 ) ) -(109,265:29694161,8778561:501378,78643,0 -(109,265:29858015,8778561:173670,78643,0 +(105,265:29694161,8778561:501378,78643,0 +(105,265:29858015,8778561:173670,78643,0 ) ) -(109,265:30195539,8778561:501378,78643,0 -(109,265:30359393,8778561:173670,78643,0 +(105,265:30195539,8778561:501378,78643,0 +(105,265:30359393,8778561:173670,78643,0 ) ) -(109,265:30696917,8778561:501378,78643,0 -(109,265:30860771,8778561:173670,78643,0 +(105,265:30696917,8778561:501378,78643,0 +(105,265:30860771,8778561:173670,78643,0 ) ) -(109,265:31403379,8778561:1179650,485622,11795 -k109,265:31403379,8778561:0 -k109,265:31536199,8778561:132820 +(105,265:31239539,8778561:1343490,485622,11795 +k105,265:31239539,8778561:0 +k105,265:31387652,8778561:148113 ) -g109,265:30911859,8778561 -g109,265:32583029,8778561 +g105,265:30911859,8778561 +g105,265:32583029,8778561 ) -(109,267:6630773,9620049:25952256,485622,11795 -g109,267:11218293,9620049 -h109,267:11218293,9620049:2490370,0,0 -h109,267:13708663,9620049:0,0,0 -g109,267:9121143,9620049 -(109,267:9121143,9620049:2097150,485622,11795 -k109,267:11218293,9620049:554432 +(105,267:6630773,9620049:25952256,485622,11795 +g105,267:11218293,9620049 +h105,267:11218293,9620049:2490370,0,0 +h105,267:13708663,9620049:0,0,0 +g105,267:9121143,9620049 +(105,267:9121143,9620049:2097150,485622,11795 +k105,267:11218293,9620049:554432 ) -g109,267:12690232,9620049 -(109,267:13148687,9620049:501378,78643,0 -$109,267:13148687,9620049 -(109,267:13312541,9620049:173670,78643,0 +g105,267:12690232,9620049 +(105,267:13148687,9620049:501378,78643,0 +$105,267:13148687,9620049 +(105,267:13312541,9620049:173670,78643,0 ) -$109,267:13650065,9620049 +$105,267:13650065,9620049 ) -(109,267:13650065,9620049:501378,78643,0 -(109,267:13813919,9620049:173670,78643,0 +(105,267:13650065,9620049:501378,78643,0 +(105,267:13813919,9620049:173670,78643,0 ) ) -(109,267:14151443,9620049:501378,78643,0 -(109,267:14315297,9620049:173670,78643,0 +(105,267:14151443,9620049:501378,78643,0 +(105,267:14315297,9620049:173670,78643,0 ) ) -(109,267:14652821,9620049:501378,78643,0 -(109,267:14816675,9620049:173670,78643,0 +(105,267:14652821,9620049:501378,78643,0 +(105,267:14816675,9620049:173670,78643,0 ) ) -(109,267:15154199,9620049:501378,78643,0 -(109,267:15318053,9620049:173670,78643,0 +(105,267:15154199,9620049:501378,78643,0 +(105,267:15318053,9620049:173670,78643,0 ) ) -(109,267:15655577,9620049:501378,78643,0 -(109,267:15819431,9620049:173670,78643,0 +(105,267:15655577,9620049:501378,78643,0 +(105,267:15819431,9620049:173670,78643,0 ) ) -(109,267:16156955,9620049:501378,78643,0 -(109,267:16320809,9620049:173670,78643,0 +(105,267:16156955,9620049:501378,78643,0 +(105,267:16320809,9620049:173670,78643,0 ) ) -(109,267:16658333,9620049:501378,78643,0 -(109,267:16822187,9620049:173670,78643,0 +(105,267:16658333,9620049:501378,78643,0 +(105,267:16822187,9620049:173670,78643,0 ) ) -(109,267:17159711,9620049:501378,78643,0 -(109,267:17323565,9620049:173670,78643,0 +(105,267:17159711,9620049:501378,78643,0 +(105,267:17323565,9620049:173670,78643,0 ) ) -(109,267:17661089,9620049:501378,78643,0 -(109,267:17824943,9620049:173670,78643,0 +(105,267:17661089,9620049:501378,78643,0 +(105,267:17824943,9620049:173670,78643,0 ) ) -(109,267:18162467,9620049:501378,78643,0 -(109,267:18326321,9620049:173670,78643,0 +(105,267:18162467,9620049:501378,78643,0 +(105,267:18326321,9620049:173670,78643,0 ) ) -(109,267:18663845,9620049:501378,78643,0 -(109,267:18827699,9620049:173670,78643,0 +(105,267:18663845,9620049:501378,78643,0 +(105,267:18827699,9620049:173670,78643,0 ) ) -(109,267:19165223,9620049:501378,78643,0 -(109,267:19329077,9620049:173670,78643,0 +(105,267:19165223,9620049:501378,78643,0 +(105,267:19329077,9620049:173670,78643,0 ) ) -(109,267:19666601,9620049:501378,78643,0 -(109,267:19830455,9620049:173670,78643,0 +(105,267:19666601,9620049:501378,78643,0 +(105,267:19830455,9620049:173670,78643,0 ) ) -(109,267:20167979,9620049:501378,78643,0 -(109,267:20331833,9620049:173670,78643,0 +(105,267:20167979,9620049:501378,78643,0 +(105,267:20331833,9620049:173670,78643,0 ) ) -(109,267:20669357,9620049:501378,78643,0 -(109,267:20833211,9620049:173670,78643,0 +(105,267:20669357,9620049:501378,78643,0 +(105,267:20833211,9620049:173670,78643,0 ) ) -(109,267:21170735,9620049:501378,78643,0 -(109,267:21334589,9620049:173670,78643,0 +(105,267:21170735,9620049:501378,78643,0 +(105,267:21334589,9620049:173670,78643,0 ) ) -(109,267:21672113,9620049:501378,78643,0 -(109,267:21835967,9620049:173670,78643,0 +(105,267:21672113,9620049:501378,78643,0 +(105,267:21835967,9620049:173670,78643,0 ) ) -(109,267:22173491,9620049:501378,78643,0 -(109,267:22337345,9620049:173670,78643,0 +(105,267:22173491,9620049:501378,78643,0 +(105,267:22337345,9620049:173670,78643,0 ) ) -(109,267:22674869,9620049:501378,78643,0 -(109,267:22838723,9620049:173670,78643,0 +(105,267:22674869,9620049:501378,78643,0 +(105,267:22838723,9620049:173670,78643,0 ) ) -(109,267:23176247,9620049:501378,78643,0 -(109,267:23340101,9620049:173670,78643,0 +(105,267:23176247,9620049:501378,78643,0 +(105,267:23340101,9620049:173670,78643,0 ) ) -(109,267:23677625,9620049:501378,78643,0 -(109,267:23841479,9620049:173670,78643,0 +(105,267:23677625,9620049:501378,78643,0 +(105,267:23841479,9620049:173670,78643,0 ) ) -(109,267:24179003,9620049:501378,78643,0 -(109,267:24342857,9620049:173670,78643,0 +(105,267:24179003,9620049:501378,78643,0 +(105,267:24342857,9620049:173670,78643,0 ) ) -(109,267:24680381,9620049:501378,78643,0 -(109,267:24844235,9620049:173670,78643,0 +(105,267:24680381,9620049:501378,78643,0 +(105,267:24844235,9620049:173670,78643,0 ) ) -(109,267:25181759,9620049:501378,78643,0 -(109,267:25345613,9620049:173670,78643,0 +(105,267:25181759,9620049:501378,78643,0 +(105,267:25345613,9620049:173670,78643,0 ) ) -(109,267:25683137,9620049:501378,78643,0 -(109,267:25846991,9620049:173670,78643,0 +(105,267:25683137,9620049:501378,78643,0 +(105,267:25846991,9620049:173670,78643,0 ) ) -(109,267:26184515,9620049:501378,78643,0 -(109,267:26348369,9620049:173670,78643,0 +(105,267:26184515,9620049:501378,78643,0 +(105,267:26348369,9620049:173670,78643,0 ) ) -(109,267:26685893,9620049:501378,78643,0 -(109,267:26849747,9620049:173670,78643,0 +(105,267:26685893,9620049:501378,78643,0 +(105,267:26849747,9620049:173670,78643,0 ) ) -(109,267:27187271,9620049:501378,78643,0 -(109,267:27351125,9620049:173670,78643,0 +(105,267:27187271,9620049:501378,78643,0 +(105,267:27351125,9620049:173670,78643,0 ) ) -(109,267:27688649,9620049:501378,78643,0 -(109,267:27852503,9620049:173670,78643,0 +(105,267:27688649,9620049:501378,78643,0 +(105,267:27852503,9620049:173670,78643,0 ) ) -(109,267:28190027,9620049:501378,78643,0 -(109,267:28353881,9620049:173670,78643,0 +(105,267:28190027,9620049:501378,78643,0 +(105,267:28353881,9620049:173670,78643,0 ) ) -(109,267:28691405,9620049:501378,78643,0 -(109,267:28855259,9620049:173670,78643,0 +(105,267:28691405,9620049:501378,78643,0 +(105,267:28855259,9620049:173670,78643,0 ) ) -(109,267:29192783,9620049:501378,78643,0 -(109,267:29356637,9620049:173670,78643,0 +(105,267:29192783,9620049:501378,78643,0 +(105,267:29356637,9620049:173670,78643,0 ) ) -(109,267:29694161,9620049:501378,78643,0 -(109,267:29858015,9620049:173670,78643,0 +(105,267:29694161,9620049:501378,78643,0 +(105,267:29858015,9620049:173670,78643,0 ) ) -(109,267:30195539,9620049:501378,78643,0 -(109,267:30359393,9620049:173670,78643,0 +(105,267:30195539,9620049:501378,78643,0 +(105,267:30359393,9620049:173670,78643,0 ) ) -(109,267:30696917,9620049:501378,78643,0 -(109,267:30860771,9620049:173670,78643,0 +(105,267:30696917,9620049:501378,78643,0 +(105,267:30860771,9620049:173670,78643,0 ) ) -(109,267:31403380,9620049:1179650,485622,11795 -k109,267:31403380,9620049:0 -k109,267:31536200,9620049:132820 +(105,267:31239540,9620049:1343490,485622,11795 +k105,267:31239540,9620049:0 +k105,267:31387653,9620049:148113 ) -g109,267:30911860,9620049 -g109,267:32583030,9620049 +g105,267:30911860,9620049 +g105,267:32583030,9620049 ) -(109,269:6630773,10461537:25952256,485622,134348 -g109,269:11218293,10461537 -h109,269:11218293,10461537:2490370,0,0 -h109,269:13708663,10461537:0,0,0 -g109,269:9121143,10461537 -(109,269:9121143,10461537:2097150,485622,11795 -k109,269:11218293,10461537:554432 +(105,269:6630773,10461537:25952256,485622,134348 +g105,269:11218293,10461537 +h105,269:11218293,10461537:2490370,0,0 +h105,269:13708663,10461537:0,0,0 +g105,269:9121143,10461537 +(105,269:9121143,10461537:2097150,485622,11795 +k105,269:11218293,10461537:554432 ) -g109,269:13969494,10461537 -(109,269:14151443,10461537:501378,78643,0 -$109,269:14151443,10461537 -(109,269:14315297,10461537:173670,78643,0 +g105,269:13969494,10461537 +(105,269:14151443,10461537:501378,78643,0 +$105,269:14151443,10461537 +(105,269:14315297,10461537:173670,78643,0 ) -$109,269:14652821,10461537 +$105,269:14652821,10461537 ) -(109,269:14652821,10461537:501378,78643,0 -(109,269:14816675,10461537:173670,78643,0 +(105,269:14652821,10461537:501378,78643,0 +(105,269:14816675,10461537:173670,78643,0 ) ) -(109,269:15154199,10461537:501378,78643,0 -(109,269:15318053,10461537:173670,78643,0 +(105,269:15154199,10461537:501378,78643,0 +(105,269:15318053,10461537:173670,78643,0 ) ) -(109,269:15655577,10461537:501378,78643,0 -(109,269:15819431,10461537:173670,78643,0 +(105,269:15655577,10461537:501378,78643,0 +(105,269:15819431,10461537:173670,78643,0 ) ) -(109,269:16156955,10461537:501378,78643,0 -(109,269:16320809,10461537:173670,78643,0 +(105,269:16156955,10461537:501378,78643,0 +(105,269:16320809,10461537:173670,78643,0 ) ) -(109,269:16658333,10461537:501378,78643,0 -(109,269:16822187,10461537:173670,78643,0 +(105,269:16658333,10461537:501378,78643,0 +(105,269:16822187,10461537:173670,78643,0 ) ) -(109,269:17159711,10461537:501378,78643,0 -(109,269:17323565,10461537:173670,78643,0 +(105,269:17159711,10461537:501378,78643,0 +(105,269:17323565,10461537:173670,78643,0 ) ) -(109,269:17661089,10461537:501378,78643,0 -(109,269:17824943,10461537:173670,78643,0 +(105,269:17661089,10461537:501378,78643,0 +(105,269:17824943,10461537:173670,78643,0 ) ) -(109,269:18162467,10461537:501378,78643,0 -(109,269:18326321,10461537:173670,78643,0 +(105,269:18162467,10461537:501378,78643,0 +(105,269:18326321,10461537:173670,78643,0 ) ) -(109,269:18663845,10461537:501378,78643,0 -(109,269:18827699,10461537:173670,78643,0 +(105,269:18663845,10461537:501378,78643,0 +(105,269:18827699,10461537:173670,78643,0 ) ) -(109,269:19165223,10461537:501378,78643,0 -(109,269:19329077,10461537:173670,78643,0 +(105,269:19165223,10461537:501378,78643,0 +(105,269:19329077,10461537:173670,78643,0 ) ) -(109,269:19666601,10461537:501378,78643,0 -(109,269:19830455,10461537:173670,78643,0 +(105,269:19666601,10461537:501378,78643,0 +(105,269:19830455,10461537:173670,78643,0 ) ) -(109,269:20167979,10461537:501378,78643,0 -(109,269:20331833,10461537:173670,78643,0 +(105,269:20167979,10461537:501378,78643,0 +(105,269:20331833,10461537:173670,78643,0 ) ) -(109,269:20669357,10461537:501378,78643,0 -(109,269:20833211,10461537:173670,78643,0 +(105,269:20669357,10461537:501378,78643,0 +(105,269:20833211,10461537:173670,78643,0 ) ) -(109,269:21170735,10461537:501378,78643,0 -(109,269:21334589,10461537:173670,78643,0 +(105,269:21170735,10461537:501378,78643,0 +(105,269:21334589,10461537:173670,78643,0 ) ) -(109,269:21672113,10461537:501378,78643,0 -(109,269:21835967,10461537:173670,78643,0 +(105,269:21672113,10461537:501378,78643,0 +(105,269:21835967,10461537:173670,78643,0 ) ) -(109,269:22173491,10461537:501378,78643,0 -(109,269:22337345,10461537:173670,78643,0 +(105,269:22173491,10461537:501378,78643,0 +(105,269:22337345,10461537:173670,78643,0 ) ) -(109,269:22674869,10461537:501378,78643,0 -(109,269:22838723,10461537:173670,78643,0 +(105,269:22674869,10461537:501378,78643,0 +(105,269:22838723,10461537:173670,78643,0 ) ) -(109,269:23176247,10461537:501378,78643,0 -(109,269:23340101,10461537:173670,78643,0 +(105,269:23176247,10461537:501378,78643,0 +(105,269:23340101,10461537:173670,78643,0 ) ) -(109,269:23677625,10461537:501378,78643,0 -(109,269:23841479,10461537:173670,78643,0 +(105,269:23677625,10461537:501378,78643,0 +(105,269:23841479,10461537:173670,78643,0 ) ) -(109,269:24179003,10461537:501378,78643,0 -(109,269:24342857,10461537:173670,78643,0 +(105,269:24179003,10461537:501378,78643,0 +(105,269:24342857,10461537:173670,78643,0 ) ) -(109,269:24680381,10461537:501378,78643,0 -(109,269:24844235,10461537:173670,78643,0 +(105,269:24680381,10461537:501378,78643,0 +(105,269:24844235,10461537:173670,78643,0 ) ) -(109,269:25181759,10461537:501378,78643,0 -(109,269:25345613,10461537:173670,78643,0 +(105,269:25181759,10461537:501378,78643,0 +(105,269:25345613,10461537:173670,78643,0 ) ) -(109,269:25683137,10461537:501378,78643,0 -(109,269:25846991,10461537:173670,78643,0 +(105,269:25683137,10461537:501378,78643,0 +(105,269:25846991,10461537:173670,78643,0 ) ) -(109,269:26184515,10461537:501378,78643,0 -(109,269:26348369,10461537:173670,78643,0 +(105,269:26184515,10461537:501378,78643,0 +(105,269:26348369,10461537:173670,78643,0 ) ) -(109,269:26685893,10461537:501378,78643,0 -(109,269:26849747,10461537:173670,78643,0 +(105,269:26685893,10461537:501378,78643,0 +(105,269:26849747,10461537:173670,78643,0 ) ) -(109,269:27187271,10461537:501378,78643,0 -(109,269:27351125,10461537:173670,78643,0 +(105,269:27187271,10461537:501378,78643,0 +(105,269:27351125,10461537:173670,78643,0 ) ) -(109,269:27688649,10461537:501378,78643,0 -(109,269:27852503,10461537:173670,78643,0 +(105,269:27688649,10461537:501378,78643,0 +(105,269:27852503,10461537:173670,78643,0 ) ) -(109,269:28190027,10461537:501378,78643,0 -(109,269:28353881,10461537:173670,78643,0 +(105,269:28190027,10461537:501378,78643,0 +(105,269:28353881,10461537:173670,78643,0 ) ) -(109,269:28691405,10461537:501378,78643,0 -(109,269:28855259,10461537:173670,78643,0 +(105,269:28691405,10461537:501378,78643,0 +(105,269:28855259,10461537:173670,78643,0 ) ) -(109,269:29192783,10461537:501378,78643,0 -(109,269:29356637,10461537:173670,78643,0 +(105,269:29192783,10461537:501378,78643,0 +(105,269:29356637,10461537:173670,78643,0 ) ) -(109,269:29694161,10461537:501378,78643,0 -(109,269:29858015,10461537:173670,78643,0 +(105,269:29694161,10461537:501378,78643,0 +(105,269:29858015,10461537:173670,78643,0 ) ) -(109,269:30195539,10461537:501378,78643,0 -(109,269:30359393,10461537:173670,78643,0 +(105,269:30195539,10461537:501378,78643,0 +(105,269:30359393,10461537:173670,78643,0 ) ) -(109,269:30696917,10461537:501378,78643,0 -(109,269:30860771,10461537:173670,78643,0 +(105,269:30696917,10461537:501378,78643,0 +(105,269:30860771,10461537:173670,78643,0 ) ) -(109,269:31403378,10461537:1179650,485622,11795 -k109,269:31403378,10461537:0 -k109,269:31536198,10461537:132820 +(105,269:31239538,10461537:1343490,485622,11795 +k105,269:31239538,10461537:0 +k105,269:31387651,10461537:148113 ) -g109,269:30911858,10461537 -g109,269:32583028,10461537 +g105,269:30911858,10461537 +g105,269:32583028,10461537 ) -(109,271:6630773,11303025:25952256,485622,11795 -g109,271:11218293,11303025 -h109,271:11218293,11303025:2490370,0,0 -h109,271:13708663,11303025:0,0,0 -g109,271:9121143,11303025 -(109,271:9121143,11303025:2097150,485622,11795 -k109,271:11218293,11303025:554432 +(105,271:6630773,11303025:25952256,485622,11795 +g105,271:11218293,11303025 +h105,271:11218293,11303025:2490370,0,0 +h105,271:13708663,11303025:0,0,0 +g105,271:9121143,11303025 +(105,271:9121143,11303025:2097150,485622,11795 +k105,271:11218293,11303025:554432 ) -g109,271:14831293,11303025 -(109,271:15154199,11303025:501378,78643,0 -$109,271:15154199,11303025 -(109,271:15318053,11303025:173670,78643,0 +g105,271:14831293,11303025 +(105,271:15154199,11303025:501378,78643,0 +$105,271:15154199,11303025 +(105,271:15318053,11303025:173670,78643,0 ) -$109,271:15655577,11303025 +$105,271:15655577,11303025 ) -(109,271:15655577,11303025:501378,78643,0 -(109,271:15819431,11303025:173670,78643,0 +(105,271:15655577,11303025:501378,78643,0 +(105,271:15819431,11303025:173670,78643,0 ) ) -(109,271:16156955,11303025:501378,78643,0 -(109,271:16320809,11303025:173670,78643,0 +(105,271:16156955,11303025:501378,78643,0 +(105,271:16320809,11303025:173670,78643,0 ) ) -(109,271:16658333,11303025:501378,78643,0 -(109,271:16822187,11303025:173670,78643,0 +(105,271:16658333,11303025:501378,78643,0 +(105,271:16822187,11303025:173670,78643,0 ) ) -(109,271:17159711,11303025:501378,78643,0 -(109,271:17323565,11303025:173670,78643,0 +(105,271:17159711,11303025:501378,78643,0 +(105,271:17323565,11303025:173670,78643,0 ) ) -(109,271:17661089,11303025:501378,78643,0 -(109,271:17824943,11303025:173670,78643,0 +(105,271:17661089,11303025:501378,78643,0 +(105,271:17824943,11303025:173670,78643,0 ) ) -(109,271:18162467,11303025:501378,78643,0 -(109,271:18326321,11303025:173670,78643,0 +(105,271:18162467,11303025:501378,78643,0 +(105,271:18326321,11303025:173670,78643,0 ) ) -(109,271:18663845,11303025:501378,78643,0 -(109,271:18827699,11303025:173670,78643,0 +(105,271:18663845,11303025:501378,78643,0 +(105,271:18827699,11303025:173670,78643,0 ) ) -(109,271:19165223,11303025:501378,78643,0 -(109,271:19329077,11303025:173670,78643,0 +(105,271:19165223,11303025:501378,78643,0 +(105,271:19329077,11303025:173670,78643,0 ) ) -(109,271:19666601,11303025:501378,78643,0 -(109,271:19830455,11303025:173670,78643,0 +(105,271:19666601,11303025:501378,78643,0 +(105,271:19830455,11303025:173670,78643,0 ) ) -(109,271:20167979,11303025:501378,78643,0 -(109,271:20331833,11303025:173670,78643,0 +(105,271:20167979,11303025:501378,78643,0 +(105,271:20331833,11303025:173670,78643,0 ) ) -(109,271:20669357,11303025:501378,78643,0 -(109,271:20833211,11303025:173670,78643,0 +(105,271:20669357,11303025:501378,78643,0 +(105,271:20833211,11303025:173670,78643,0 ) ) -(109,271:21170735,11303025:501378,78643,0 -(109,271:21334589,11303025:173670,78643,0 +(105,271:21170735,11303025:501378,78643,0 +(105,271:21334589,11303025:173670,78643,0 ) ) -(109,271:21672113,11303025:501378,78643,0 -(109,271:21835967,11303025:173670,78643,0 +(105,271:21672113,11303025:501378,78643,0 +(105,271:21835967,11303025:173670,78643,0 ) ) -(109,271:22173491,11303025:501378,78643,0 -(109,271:22337345,11303025:173670,78643,0 +(105,271:22173491,11303025:501378,78643,0 +(105,271:22337345,11303025:173670,78643,0 ) ) -(109,271:22674869,11303025:501378,78643,0 -(109,271:22838723,11303025:173670,78643,0 +(105,271:22674869,11303025:501378,78643,0 +(105,271:22838723,11303025:173670,78643,0 ) ) -(109,271:23176247,11303025:501378,78643,0 -(109,271:23340101,11303025:173670,78643,0 +(105,271:23176247,11303025:501378,78643,0 +(105,271:23340101,11303025:173670,78643,0 ) ) -(109,271:23677625,11303025:501378,78643,0 -(109,271:23841479,11303025:173670,78643,0 +(105,271:23677625,11303025:501378,78643,0 +(105,271:23841479,11303025:173670,78643,0 ) ) -(109,271:24179003,11303025:501378,78643,0 -(109,271:24342857,11303025:173670,78643,0 +(105,271:24179003,11303025:501378,78643,0 +(105,271:24342857,11303025:173670,78643,0 ) ) -(109,271:24680381,11303025:501378,78643,0 -(109,271:24844235,11303025:173670,78643,0 +(105,271:24680381,11303025:501378,78643,0 +(105,271:24844235,11303025:173670,78643,0 ) ) -(109,271:25181759,11303025:501378,78643,0 -(109,271:25345613,11303025:173670,78643,0 +(105,271:25181759,11303025:501378,78643,0 +(105,271:25345613,11303025:173670,78643,0 ) ) -(109,271:25683137,11303025:501378,78643,0 -(109,271:25846991,11303025:173670,78643,0 +(105,271:25683137,11303025:501378,78643,0 +(105,271:25846991,11303025:173670,78643,0 ) ) -(109,271:26184515,11303025:501378,78643,0 -(109,271:26348369,11303025:173670,78643,0 +(105,271:26184515,11303025:501378,78643,0 +(105,271:26348369,11303025:173670,78643,0 ) ) -(109,271:26685893,11303025:501378,78643,0 -(109,271:26849747,11303025:173670,78643,0 +(105,271:26685893,11303025:501378,78643,0 +(105,271:26849747,11303025:173670,78643,0 ) ) -(109,271:27187271,11303025:501378,78643,0 -(109,271:27351125,11303025:173670,78643,0 +(105,271:27187271,11303025:501378,78643,0 +(105,271:27351125,11303025:173670,78643,0 ) ) -(109,271:27688649,11303025:501378,78643,0 -(109,271:27852503,11303025:173670,78643,0 +(105,271:27688649,11303025:501378,78643,0 +(105,271:27852503,11303025:173670,78643,0 ) ) -(109,271:28190027,11303025:501378,78643,0 -(109,271:28353881,11303025:173670,78643,0 +(105,271:28190027,11303025:501378,78643,0 +(105,271:28353881,11303025:173670,78643,0 ) ) -(109,271:28691405,11303025:501378,78643,0 -(109,271:28855259,11303025:173670,78643,0 +(105,271:28691405,11303025:501378,78643,0 +(105,271:28855259,11303025:173670,78643,0 ) ) -(109,271:29192783,11303025:501378,78643,0 -(109,271:29356637,11303025:173670,78643,0 +(105,271:29192783,11303025:501378,78643,0 +(105,271:29356637,11303025:173670,78643,0 ) ) -(109,271:29694161,11303025:501378,78643,0 -(109,271:29858015,11303025:173670,78643,0 +(105,271:29694161,11303025:501378,78643,0 +(105,271:29858015,11303025:173670,78643,0 ) ) -(109,271:30195539,11303025:501378,78643,0 -(109,271:30359393,11303025:173670,78643,0 +(105,271:30195539,11303025:501378,78643,0 +(105,271:30359393,11303025:173670,78643,0 ) ) -(109,271:30696917,11303025:501378,78643,0 -(109,271:30860771,11303025:173670,78643,0 +(105,271:30696917,11303025:501378,78643,0 +(105,271:30860771,11303025:173670,78643,0 ) ) -(109,271:31403379,11303025:1179650,485622,11795 -k109,271:31403379,11303025:0 -k109,271:31536199,11303025:132820 +(105,271:31239539,11303025:1343490,485622,11795 +k105,271:31239539,11303025:0 +k105,271:31387652,11303025:148113 ) -g109,271:30911859,11303025 -g109,271:32583029,11303025 +g105,271:30911859,11303025 +g105,271:32583029,11303025 ) -(109,273:6630773,12144513:25952256,485622,11795 -g109,273:11218293,12144513 -h109,273:11218293,12144513:2490370,0,0 -h109,273:13708663,12144513:0,0,0 -g109,273:9121143,12144513 -(109,273:9121143,12144513:2097150,485622,11795 -k109,273:11218293,12144513:554432 +(105,273:6630773,12144513:25952256,485622,11795 +g105,273:11218293,12144513 +h105,273:11218293,12144513:2490370,0,0 +h105,273:13708663,12144513:0,0,0 +g105,273:9121143,12144513 +(105,273:9121143,12144513:2097150,485622,11795 +k105,273:11218293,12144513:554432 ) -g109,273:14096634,12144513 -(109,273:14151443,12144513:501378,78643,0 -$109,273:14151443,12144513 -(109,273:14315297,12144513:173670,78643,0 +g105,273:14096634,12144513 +(105,273:14151443,12144513:501378,78643,0 +$105,273:14151443,12144513 +(105,273:14315297,12144513:173670,78643,0 ) -$109,273:14652821,12144513 +$105,273:14652821,12144513 ) -(109,273:14652821,12144513:501378,78643,0 -(109,273:14816675,12144513:173670,78643,0 +(105,273:14652821,12144513:501378,78643,0 +(105,273:14816675,12144513:173670,78643,0 ) ) -(109,273:15154199,12144513:501378,78643,0 -(109,273:15318053,12144513:173670,78643,0 +(105,273:15154199,12144513:501378,78643,0 +(105,273:15318053,12144513:173670,78643,0 ) ) -(109,273:15655577,12144513:501378,78643,0 -(109,273:15819431,12144513:173670,78643,0 +(105,273:15655577,12144513:501378,78643,0 +(105,273:15819431,12144513:173670,78643,0 ) ) -(109,273:16156955,12144513:501378,78643,0 -(109,273:16320809,12144513:173670,78643,0 +(105,273:16156955,12144513:501378,78643,0 +(105,273:16320809,12144513:173670,78643,0 ) ) -(109,273:16658333,12144513:501378,78643,0 -(109,273:16822187,12144513:173670,78643,0 +(105,273:16658333,12144513:501378,78643,0 +(105,273:16822187,12144513:173670,78643,0 ) ) -(109,273:17159711,12144513:501378,78643,0 -(109,273:17323565,12144513:173670,78643,0 +(105,273:17159711,12144513:501378,78643,0 +(105,273:17323565,12144513:173670,78643,0 ) ) -(109,273:17661089,12144513:501378,78643,0 -(109,273:17824943,12144513:173670,78643,0 +(105,273:17661089,12144513:501378,78643,0 +(105,273:17824943,12144513:173670,78643,0 ) ) -(109,273:18162467,12144513:501378,78643,0 -(109,273:18326321,12144513:173670,78643,0 +(105,273:18162467,12144513:501378,78643,0 +(105,273:18326321,12144513:173670,78643,0 ) ) -(109,273:18663845,12144513:501378,78643,0 -(109,273:18827699,12144513:173670,78643,0 +(105,273:18663845,12144513:501378,78643,0 +(105,273:18827699,12144513:173670,78643,0 ) ) -(109,273:19165223,12144513:501378,78643,0 -(109,273:19329077,12144513:173670,78643,0 +(105,273:19165223,12144513:501378,78643,0 +(105,273:19329077,12144513:173670,78643,0 ) ) -(109,273:19666601,12144513:501378,78643,0 -(109,273:19830455,12144513:173670,78643,0 +(105,273:19666601,12144513:501378,78643,0 +(105,273:19830455,12144513:173670,78643,0 ) ) -(109,273:20167979,12144513:501378,78643,0 -(109,273:20331833,12144513:173670,78643,0 +(105,273:20167979,12144513:501378,78643,0 +(105,273:20331833,12144513:173670,78643,0 ) ) -(109,273:20669357,12144513:501378,78643,0 -(109,273:20833211,12144513:173670,78643,0 +(105,273:20669357,12144513:501378,78643,0 +(105,273:20833211,12144513:173670,78643,0 ) ) -(109,273:21170735,12144513:501378,78643,0 -(109,273:21334589,12144513:173670,78643,0 +(105,273:21170735,12144513:501378,78643,0 +(105,273:21334589,12144513:173670,78643,0 ) ) -(109,273:21672113,12144513:501378,78643,0 -(109,273:21835967,12144513:173670,78643,0 +(105,273:21672113,12144513:501378,78643,0 +(105,273:21835967,12144513:173670,78643,0 ) ) -(109,273:22173491,12144513:501378,78643,0 -(109,273:22337345,12144513:173670,78643,0 +(105,273:22173491,12144513:501378,78643,0 +(105,273:22337345,12144513:173670,78643,0 ) ) -(109,273:22674869,12144513:501378,78643,0 -(109,273:22838723,12144513:173670,78643,0 +(105,273:22674869,12144513:501378,78643,0 +(105,273:22838723,12144513:173670,78643,0 ) ) -(109,273:23176247,12144513:501378,78643,0 -(109,273:23340101,12144513:173670,78643,0 +(105,273:23176247,12144513:501378,78643,0 +(105,273:23340101,12144513:173670,78643,0 ) ) -(109,273:23677625,12144513:501378,78643,0 -(109,273:23841479,12144513:173670,78643,0 +(105,273:23677625,12144513:501378,78643,0 +(105,273:23841479,12144513:173670,78643,0 ) ) -(109,273:24179003,12144513:501378,78643,0 -(109,273:24342857,12144513:173670,78643,0 +(105,273:24179003,12144513:501378,78643,0 +(105,273:24342857,12144513:173670,78643,0 ) ) -(109,273:24680381,12144513:501378,78643,0 -(109,273:24844235,12144513:173670,78643,0 +(105,273:24680381,12144513:501378,78643,0 +(105,273:24844235,12144513:173670,78643,0 ) ) -(109,273:25181759,12144513:501378,78643,0 -(109,273:25345613,12144513:173670,78643,0 +(105,273:25181759,12144513:501378,78643,0 +(105,273:25345613,12144513:173670,78643,0 ) ) -(109,273:25683137,12144513:501378,78643,0 -(109,273:25846991,12144513:173670,78643,0 +(105,273:25683137,12144513:501378,78643,0 +(105,273:25846991,12144513:173670,78643,0 ) ) -(109,273:26184515,12144513:501378,78643,0 -(109,273:26348369,12144513:173670,78643,0 +(105,273:26184515,12144513:501378,78643,0 +(105,273:26348369,12144513:173670,78643,0 ) ) -(109,273:26685893,12144513:501378,78643,0 -(109,273:26849747,12144513:173670,78643,0 +(105,273:26685893,12144513:501378,78643,0 +(105,273:26849747,12144513:173670,78643,0 ) ) -(109,273:27187271,12144513:501378,78643,0 -(109,273:27351125,12144513:173670,78643,0 +(105,273:27187271,12144513:501378,78643,0 +(105,273:27351125,12144513:173670,78643,0 ) ) -(109,273:27688649,12144513:501378,78643,0 -(109,273:27852503,12144513:173670,78643,0 +(105,273:27688649,12144513:501378,78643,0 +(105,273:27852503,12144513:173670,78643,0 ) ) -(109,273:28190027,12144513:501378,78643,0 -(109,273:28353881,12144513:173670,78643,0 +(105,273:28190027,12144513:501378,78643,0 +(105,273:28353881,12144513:173670,78643,0 ) ) -(109,273:28691405,12144513:501378,78643,0 -(109,273:28855259,12144513:173670,78643,0 +(105,273:28691405,12144513:501378,78643,0 +(105,273:28855259,12144513:173670,78643,0 ) ) -(109,273:29192783,12144513:501378,78643,0 -(109,273:29356637,12144513:173670,78643,0 +(105,273:29192783,12144513:501378,78643,0 +(105,273:29356637,12144513:173670,78643,0 ) ) -(109,273:29694161,12144513:501378,78643,0 -(109,273:29858015,12144513:173670,78643,0 +(105,273:29694161,12144513:501378,78643,0 +(105,273:29858015,12144513:173670,78643,0 ) ) -(109,273:30195539,12144513:501378,78643,0 -(109,273:30359393,12144513:173670,78643,0 +(105,273:30195539,12144513:501378,78643,0 +(105,273:30359393,12144513:173670,78643,0 ) ) -(109,273:30696917,12144513:501378,78643,0 -(109,273:30860771,12144513:173670,78643,0 +(105,273:30696917,12144513:501378,78643,0 +(105,273:30860771,12144513:173670,78643,0 ) ) -(109,273:31403378,12144513:1179650,485622,11795 -k109,273:31403378,12144513:0 -k109,273:31536198,12144513:132820 +(105,273:31239538,12144513:1343490,485622,11795 +k105,273:31239538,12144513:0 +k105,273:31387651,12144513:148113 ) -g109,273:30911858,12144513 -g109,273:32583028,12144513 +g105,273:30911858,12144513 +g105,273:32583028,12144513 ) -(109,275:6630773,12986001:25952256,505283,11795 -g109,275:11218293,12986001 -h109,275:11218293,12986001:2490370,0,0 -h109,275:13708663,12986001:0,0,0 -g109,275:9121143,12986001 -(109,275:9121143,12986001:2097150,485622,11795 -k109,275:11218293,12986001:554432 +(105,275:6630773,12986001:25952256,505283,11795 +g105,275:11218293,12986001 +h105,275:11218293,12986001:2490370,0,0 +h105,275:13708663,12986001:0,0,0 +g105,275:9121143,12986001 +(105,275:9121143,12986001:2097150,485622,11795 +k105,275:11218293,12986001:554432 ) -g109,275:13145707,12986001 -(109,275:13148687,12986001:501378,78643,0 -$109,275:13148687,12986001 -(109,275:13312541,12986001:173670,78643,0 +g105,275:13145707,12986001 +(105,275:13148687,12986001:501378,78643,0 +$105,275:13148687,12986001 +(105,275:13312541,12986001:173670,78643,0 ) -$109,275:13650065,12986001 +$105,275:13650065,12986001 ) -(109,275:13650065,12986001:501378,78643,0 -(109,275:13813919,12986001:173670,78643,0 +(105,275:13650065,12986001:501378,78643,0 +(105,275:13813919,12986001:173670,78643,0 ) ) -(109,275:14151443,12986001:501378,78643,0 -(109,275:14315297,12986001:173670,78643,0 +(105,275:14151443,12986001:501378,78643,0 +(105,275:14315297,12986001:173670,78643,0 ) ) -(109,275:14652821,12986001:501378,78643,0 -(109,275:14816675,12986001:173670,78643,0 +(105,275:14652821,12986001:501378,78643,0 +(105,275:14816675,12986001:173670,78643,0 ) ) -(109,275:15154199,12986001:501378,78643,0 -(109,275:15318053,12986001:173670,78643,0 +(105,275:15154199,12986001:501378,78643,0 +(105,275:15318053,12986001:173670,78643,0 ) ) -(109,275:15655577,12986001:501378,78643,0 -(109,275:15819431,12986001:173670,78643,0 +(105,275:15655577,12986001:501378,78643,0 +(105,275:15819431,12986001:173670,78643,0 ) ) -(109,275:16156955,12986001:501378,78643,0 -(109,275:16320809,12986001:173670,78643,0 +(105,275:16156955,12986001:501378,78643,0 +(105,275:16320809,12986001:173670,78643,0 ) ) -(109,275:16658333,12986001:501378,78643,0 -(109,275:16822187,12986001:173670,78643,0 +(105,275:16658333,12986001:501378,78643,0 +(105,275:16822187,12986001:173670,78643,0 ) ) -(109,275:17159711,12986001:501378,78643,0 -(109,275:17323565,12986001:173670,78643,0 +(105,275:17159711,12986001:501378,78643,0 +(105,275:17323565,12986001:173670,78643,0 ) ) -(109,275:17661089,12986001:501378,78643,0 -(109,275:17824943,12986001:173670,78643,0 +(105,275:17661089,12986001:501378,78643,0 +(105,275:17824943,12986001:173670,78643,0 ) ) -(109,275:18162467,12986001:501378,78643,0 -(109,275:18326321,12986001:173670,78643,0 +(105,275:18162467,12986001:501378,78643,0 +(105,275:18326321,12986001:173670,78643,0 ) ) -(109,275:18663845,12986001:501378,78643,0 -(109,275:18827699,12986001:173670,78643,0 +(105,275:18663845,12986001:501378,78643,0 +(105,275:18827699,12986001:173670,78643,0 ) ) -(109,275:19165223,12986001:501378,78643,0 -(109,275:19329077,12986001:173670,78643,0 +(105,275:19165223,12986001:501378,78643,0 +(105,275:19329077,12986001:173670,78643,0 ) ) -(109,275:19666601,12986001:501378,78643,0 -(109,275:19830455,12986001:173670,78643,0 +(105,275:19666601,12986001:501378,78643,0 +(105,275:19830455,12986001:173670,78643,0 ) ) -(109,275:20167979,12986001:501378,78643,0 -(109,275:20331833,12986001:173670,78643,0 +(105,275:20167979,12986001:501378,78643,0 +(105,275:20331833,12986001:173670,78643,0 ) ) -(109,275:20669357,12986001:501378,78643,0 -(109,275:20833211,12986001:173670,78643,0 +(105,275:20669357,12986001:501378,78643,0 +(105,275:20833211,12986001:173670,78643,0 ) ) -(109,275:21170735,12986001:501378,78643,0 -(109,275:21334589,12986001:173670,78643,0 +(105,275:21170735,12986001:501378,78643,0 +(105,275:21334589,12986001:173670,78643,0 ) ) -(109,275:21672113,12986001:501378,78643,0 -(109,275:21835967,12986001:173670,78643,0 +(105,275:21672113,12986001:501378,78643,0 +(105,275:21835967,12986001:173670,78643,0 ) ) -(109,275:22173491,12986001:501378,78643,0 -(109,275:22337345,12986001:173670,78643,0 +(105,275:22173491,12986001:501378,78643,0 +(105,275:22337345,12986001:173670,78643,0 ) ) -(109,275:22674869,12986001:501378,78643,0 -(109,275:22838723,12986001:173670,78643,0 +(105,275:22674869,12986001:501378,78643,0 +(105,275:22838723,12986001:173670,78643,0 ) ) -(109,275:23176247,12986001:501378,78643,0 -(109,275:23340101,12986001:173670,78643,0 +(105,275:23176247,12986001:501378,78643,0 +(105,275:23340101,12986001:173670,78643,0 ) ) -(109,275:23677625,12986001:501378,78643,0 -(109,275:23841479,12986001:173670,78643,0 +(105,275:23677625,12986001:501378,78643,0 +(105,275:23841479,12986001:173670,78643,0 ) ) -(109,275:24179003,12986001:501378,78643,0 -(109,275:24342857,12986001:173670,78643,0 +(105,275:24179003,12986001:501378,78643,0 +(105,275:24342857,12986001:173670,78643,0 ) ) -(109,275:24680381,12986001:501378,78643,0 -(109,275:24844235,12986001:173670,78643,0 +(105,275:24680381,12986001:501378,78643,0 +(105,275:24844235,12986001:173670,78643,0 ) ) -(109,275:25181759,12986001:501378,78643,0 -(109,275:25345613,12986001:173670,78643,0 +(105,275:25181759,12986001:501378,78643,0 +(105,275:25345613,12986001:173670,78643,0 ) ) -(109,275:25683137,12986001:501378,78643,0 -(109,275:25846991,12986001:173670,78643,0 +(105,275:25683137,12986001:501378,78643,0 +(105,275:25846991,12986001:173670,78643,0 ) ) -(109,275:26184515,12986001:501378,78643,0 -(109,275:26348369,12986001:173670,78643,0 +(105,275:26184515,12986001:501378,78643,0 +(105,275:26348369,12986001:173670,78643,0 ) ) -(109,275:26685893,12986001:501378,78643,0 -(109,275:26849747,12986001:173670,78643,0 +(105,275:26685893,12986001:501378,78643,0 +(105,275:26849747,12986001:173670,78643,0 ) ) -(109,275:27187271,12986001:501378,78643,0 -(109,275:27351125,12986001:173670,78643,0 +(105,275:27187271,12986001:501378,78643,0 +(105,275:27351125,12986001:173670,78643,0 ) ) -(109,275:27688649,12986001:501378,78643,0 -(109,275:27852503,12986001:173670,78643,0 +(105,275:27688649,12986001:501378,78643,0 +(105,275:27852503,12986001:173670,78643,0 ) ) -(109,275:28190027,12986001:501378,78643,0 -(109,275:28353881,12986001:173670,78643,0 +(105,275:28190027,12986001:501378,78643,0 +(105,275:28353881,12986001:173670,78643,0 ) ) -(109,275:28691405,12986001:501378,78643,0 -(109,275:28855259,12986001:173670,78643,0 +(105,275:28691405,12986001:501378,78643,0 +(105,275:28855259,12986001:173670,78643,0 ) ) -(109,275:29192783,12986001:501378,78643,0 -(109,275:29356637,12986001:173670,78643,0 +(105,275:29192783,12986001:501378,78643,0 +(105,275:29356637,12986001:173670,78643,0 ) ) -(109,275:29694161,12986001:501378,78643,0 -(109,275:29858015,12986001:173670,78643,0 +(105,275:29694161,12986001:501378,78643,0 +(105,275:29858015,12986001:173670,78643,0 ) ) -(109,275:30195539,12986001:501378,78643,0 -(109,275:30359393,12986001:173670,78643,0 +(105,275:30195539,12986001:501378,78643,0 +(105,275:30359393,12986001:173670,78643,0 ) ) -(109,275:30696917,12986001:501378,78643,0 -(109,275:30860771,12986001:173670,78643,0 +(105,275:30696917,12986001:501378,78643,0 +(105,275:30860771,12986001:173670,78643,0 ) ) -(109,275:31403379,12986001:1179650,485622,11795 -k109,275:31403379,12986001:0 -k109,275:31536199,12986001:132820 +(105,275:31239539,12986001:1343490,485622,11795 +k105,275:31239539,12986001:0 +k105,275:31387652,12986001:148113 ) -g109,275:30911859,12986001 -g109,275:32583029,12986001 +g105,275:30911859,12986001 +g105,275:32583029,12986001 ) -(109,277:6630773,13827489:25952256,505283,126483 -g109,277:11218293,13827489 -h109,277:11218293,13827489:2490370,0,0 -h109,277:13708663,13827489:0,0,0 -g109,277:9121143,13827489 -(109,277:9121143,13827489:2097150,485622,11795 -k109,277:11218293,13827489:554432 +(105,277:6630773,13827489:25952256,505283,126483 +g105,277:11218293,13827489 +h105,277:11218293,13827489:2490370,0,0 +h105,277:13708663,13827489:0,0,0 +g105,277:9121143,13827489 +(105,277:9121143,13827489:2097150,485622,11795 +k105,277:11218293,13827489:554432 ) -g109,277:14947291,13827489 -g109,277:17523511,13827489 -(109,277:17661089,13827489:501378,78643,0 -$109,277:17661089,13827489 -(109,277:17824943,13827489:173670,78643,0 +g105,277:14947291,13827489 +g105,277:17523511,13827489 +(105,277:17661089,13827489:501378,78643,0 +$105,277:17661089,13827489 +(105,277:17824943,13827489:173670,78643,0 ) -$109,277:18162467,13827489 +$105,277:18162467,13827489 ) -(109,277:18162467,13827489:501378,78643,0 -(109,277:18326321,13827489:173670,78643,0 +(105,277:18162467,13827489:501378,78643,0 +(105,277:18326321,13827489:173670,78643,0 ) ) -(109,277:18663845,13827489:501378,78643,0 -(109,277:18827699,13827489:173670,78643,0 +(105,277:18663845,13827489:501378,78643,0 +(105,277:18827699,13827489:173670,78643,0 ) ) -(109,277:19165223,13827489:501378,78643,0 -(109,277:19329077,13827489:173670,78643,0 +(105,277:19165223,13827489:501378,78643,0 +(105,277:19329077,13827489:173670,78643,0 ) ) -(109,277:19666601,13827489:501378,78643,0 -(109,277:19830455,13827489:173670,78643,0 +(105,277:19666601,13827489:501378,78643,0 +(105,277:19830455,13827489:173670,78643,0 ) ) -(109,277:20167979,13827489:501378,78643,0 -(109,277:20331833,13827489:173670,78643,0 +(105,277:20167979,13827489:501378,78643,0 +(105,277:20331833,13827489:173670,78643,0 ) ) -(109,277:20669357,13827489:501378,78643,0 -(109,277:20833211,13827489:173670,78643,0 +(105,277:20669357,13827489:501378,78643,0 +(105,277:20833211,13827489:173670,78643,0 ) ) -(109,277:21170735,13827489:501378,78643,0 -(109,277:21334589,13827489:173670,78643,0 +(105,277:21170735,13827489:501378,78643,0 +(105,277:21334589,13827489:173670,78643,0 ) ) -(109,277:21672113,13827489:501378,78643,0 -(109,277:21835967,13827489:173670,78643,0 +(105,277:21672113,13827489:501378,78643,0 +(105,277:21835967,13827489:173670,78643,0 ) ) -(109,277:22173491,13827489:501378,78643,0 -(109,277:22337345,13827489:173670,78643,0 +(105,277:22173491,13827489:501378,78643,0 +(105,277:22337345,13827489:173670,78643,0 ) ) -(109,277:22674869,13827489:501378,78643,0 -(109,277:22838723,13827489:173670,78643,0 +(105,277:22674869,13827489:501378,78643,0 +(105,277:22838723,13827489:173670,78643,0 ) ) -(109,277:23176247,13827489:501378,78643,0 -(109,277:23340101,13827489:173670,78643,0 +(105,277:23176247,13827489:501378,78643,0 +(105,277:23340101,13827489:173670,78643,0 ) ) -(109,277:23677625,13827489:501378,78643,0 -(109,277:23841479,13827489:173670,78643,0 +(105,277:23677625,13827489:501378,78643,0 +(105,277:23841479,13827489:173670,78643,0 ) ) -(109,277:24179003,13827489:501378,78643,0 -(109,277:24342857,13827489:173670,78643,0 +(105,277:24179003,13827489:501378,78643,0 +(105,277:24342857,13827489:173670,78643,0 ) ) -(109,277:24680381,13827489:501378,78643,0 -(109,277:24844235,13827489:173670,78643,0 +(105,277:24680381,13827489:501378,78643,0 +(105,277:24844235,13827489:173670,78643,0 ) ) -(109,277:25181759,13827489:501378,78643,0 -(109,277:25345613,13827489:173670,78643,0 +(105,277:25181759,13827489:501378,78643,0 +(105,277:25345613,13827489:173670,78643,0 ) ) -(109,277:25683137,13827489:501378,78643,0 -(109,277:25846991,13827489:173670,78643,0 +(105,277:25683137,13827489:501378,78643,0 +(105,277:25846991,13827489:173670,78643,0 ) ) -(109,277:26184515,13827489:501378,78643,0 -(109,277:26348369,13827489:173670,78643,0 +(105,277:26184515,13827489:501378,78643,0 +(105,277:26348369,13827489:173670,78643,0 ) ) -(109,277:26685893,13827489:501378,78643,0 -(109,277:26849747,13827489:173670,78643,0 +(105,277:26685893,13827489:501378,78643,0 +(105,277:26849747,13827489:173670,78643,0 ) ) -(109,277:27187271,13827489:501378,78643,0 -(109,277:27351125,13827489:173670,78643,0 +(105,277:27187271,13827489:501378,78643,0 +(105,277:27351125,13827489:173670,78643,0 ) ) -(109,277:27688649,13827489:501378,78643,0 -(109,277:27852503,13827489:173670,78643,0 +(105,277:27688649,13827489:501378,78643,0 +(105,277:27852503,13827489:173670,78643,0 ) ) -(109,277:28190027,13827489:501378,78643,0 -(109,277:28353881,13827489:173670,78643,0 +(105,277:28190027,13827489:501378,78643,0 +(105,277:28353881,13827489:173670,78643,0 ) ) -(109,277:28691405,13827489:501378,78643,0 -(109,277:28855259,13827489:173670,78643,0 +(105,277:28691405,13827489:501378,78643,0 +(105,277:28855259,13827489:173670,78643,0 ) ) -(109,277:29192783,13827489:501378,78643,0 -(109,277:29356637,13827489:173670,78643,0 +(105,277:29192783,13827489:501378,78643,0 +(105,277:29356637,13827489:173670,78643,0 ) ) -(109,277:29694161,13827489:501378,78643,0 -(109,277:29858015,13827489:173670,78643,0 +(105,277:29694161,13827489:501378,78643,0 +(105,277:29858015,13827489:173670,78643,0 ) ) -(109,277:30195539,13827489:501378,78643,0 -(109,277:30359393,13827489:173670,78643,0 +(105,277:30195539,13827489:501378,78643,0 +(105,277:30359393,13827489:173670,78643,0 ) ) -(109,277:30696917,13827489:501378,78643,0 -(109,277:30860771,13827489:173670,78643,0 +(105,277:30696917,13827489:501378,78643,0 +(105,277:30860771,13827489:173670,78643,0 ) ) -(109,277:31403379,13827489:1179650,485622,11795 -k109,277:31403379,13827489:0 -k109,277:31536199,13827489:132820 +(105,277:31239539,13827489:1343490,485622,11795 +k105,277:31239539,13827489:0 +k105,277:31387652,13827489:148113 ) -g109,277:30911859,13827489 -g109,277:32583029,13827489 +g105,277:30911859,13827489 +g105,277:32583029,13827489 ) -(109,279:6630773,14668977:25952256,505283,11795 -g109,279:11218293,14668977 -h109,279:11218293,14668977:2490370,0,0 -h109,279:13708663,14668977:0,0,0 -g109,279:9121143,14668977 -(109,279:9121143,14668977:2097150,485622,11795 -k109,279:11218293,14668977:554432 +(105,279:6630773,14668977:25952256,505283,11795 +g105,279:11218293,14668977 +h105,279:11218293,14668977:2490370,0,0 +h105,279:13708663,14668977:0,0,0 +g105,279:9121143,14668977 +(105,279:9121143,14668977:2097150,485622,11795 +k105,279:11218293,14668977:554432 ) -g109,279:13712593,14668977 -(109,279:14151443,14668977:501378,78643,0 -$109,279:14151443,14668977 -(109,279:14315297,14668977:173670,78643,0 +g105,279:13712593,14668977 +(105,279:14151443,14668977:501378,78643,0 +$105,279:14151443,14668977 +(105,279:14315297,14668977:173670,78643,0 ) -$109,279:14652821,14668977 +$105,279:14652821,14668977 ) -(109,279:14652821,14668977:501378,78643,0 -(109,279:14816675,14668977:173670,78643,0 +(105,279:14652821,14668977:501378,78643,0 +(105,279:14816675,14668977:173670,78643,0 ) ) -(109,279:15154199,14668977:501378,78643,0 -(109,279:15318053,14668977:173670,78643,0 +(105,279:15154199,14668977:501378,78643,0 +(105,279:15318053,14668977:173670,78643,0 ) ) -(109,279:15655577,14668977:501378,78643,0 -(109,279:15819431,14668977:173670,78643,0 +(105,279:15655577,14668977:501378,78643,0 +(105,279:15819431,14668977:173670,78643,0 ) ) -(109,279:16156955,14668977:501378,78643,0 -(109,279:16320809,14668977:173670,78643,0 +(105,279:16156955,14668977:501378,78643,0 +(105,279:16320809,14668977:173670,78643,0 ) ) -(109,279:16658333,14668977:501378,78643,0 -(109,279:16822187,14668977:173670,78643,0 +(105,279:16658333,14668977:501378,78643,0 +(105,279:16822187,14668977:173670,78643,0 ) ) -(109,279:17159711,14668977:501378,78643,0 -(109,279:17323565,14668977:173670,78643,0 +(105,279:17159711,14668977:501378,78643,0 +(105,279:17323565,14668977:173670,78643,0 ) ) -(109,279:17661089,14668977:501378,78643,0 -(109,279:17824943,14668977:173670,78643,0 +(105,279:17661089,14668977:501378,78643,0 +(105,279:17824943,14668977:173670,78643,0 ) ) -(109,279:18162467,14668977:501378,78643,0 -(109,279:18326321,14668977:173670,78643,0 +(105,279:18162467,14668977:501378,78643,0 +(105,279:18326321,14668977:173670,78643,0 ) ) -(109,279:18663845,14668977:501378,78643,0 -(109,279:18827699,14668977:173670,78643,0 +(105,279:18663845,14668977:501378,78643,0 +(105,279:18827699,14668977:173670,78643,0 ) ) -(109,279:19165223,14668977:501378,78643,0 -(109,279:19329077,14668977:173670,78643,0 +(105,279:19165223,14668977:501378,78643,0 +(105,279:19329077,14668977:173670,78643,0 ) ) -(109,279:19666601,14668977:501378,78643,0 -(109,279:19830455,14668977:173670,78643,0 +(105,279:19666601,14668977:501378,78643,0 +(105,279:19830455,14668977:173670,78643,0 ) ) -(109,279:20167979,14668977:501378,78643,0 -(109,279:20331833,14668977:173670,78643,0 +(105,279:20167979,14668977:501378,78643,0 +(105,279:20331833,14668977:173670,78643,0 ) ) -(109,279:20669357,14668977:501378,78643,0 -(109,279:20833211,14668977:173670,78643,0 +(105,279:20669357,14668977:501378,78643,0 +(105,279:20833211,14668977:173670,78643,0 ) ) -(109,279:21170735,14668977:501378,78643,0 -(109,279:21334589,14668977:173670,78643,0 +(105,279:21170735,14668977:501378,78643,0 +(105,279:21334589,14668977:173670,78643,0 ) ) -(109,279:21672113,14668977:501378,78643,0 -(109,279:21835967,14668977:173670,78643,0 +(105,279:21672113,14668977:501378,78643,0 +(105,279:21835967,14668977:173670,78643,0 ) ) -(109,279:22173491,14668977:501378,78643,0 -(109,279:22337345,14668977:173670,78643,0 +(105,279:22173491,14668977:501378,78643,0 +(105,279:22337345,14668977:173670,78643,0 ) ) -(109,279:22674869,14668977:501378,78643,0 -(109,279:22838723,14668977:173670,78643,0 +(105,279:22674869,14668977:501378,78643,0 +(105,279:22838723,14668977:173670,78643,0 ) ) -(109,279:23176247,14668977:501378,78643,0 -(109,279:23340101,14668977:173670,78643,0 +(105,279:23176247,14668977:501378,78643,0 +(105,279:23340101,14668977:173670,78643,0 ) ) -(109,279:23677625,14668977:501378,78643,0 -(109,279:23841479,14668977:173670,78643,0 +(105,279:23677625,14668977:501378,78643,0 +(105,279:23841479,14668977:173670,78643,0 ) ) -(109,279:24179003,14668977:501378,78643,0 -(109,279:24342857,14668977:173670,78643,0 +(105,279:24179003,14668977:501378,78643,0 +(105,279:24342857,14668977:173670,78643,0 ) ) -(109,279:24680381,14668977:501378,78643,0 -(109,279:24844235,14668977:173670,78643,0 +(105,279:24680381,14668977:501378,78643,0 +(105,279:24844235,14668977:173670,78643,0 ) ) -(109,279:25181759,14668977:501378,78643,0 -(109,279:25345613,14668977:173670,78643,0 +(105,279:25181759,14668977:501378,78643,0 +(105,279:25345613,14668977:173670,78643,0 ) ) -(109,279:25683137,14668977:501378,78643,0 -(109,279:25846991,14668977:173670,78643,0 +(105,279:25683137,14668977:501378,78643,0 +(105,279:25846991,14668977:173670,78643,0 ) ) -(109,279:26184515,14668977:501378,78643,0 -(109,279:26348369,14668977:173670,78643,0 +(105,279:26184515,14668977:501378,78643,0 +(105,279:26348369,14668977:173670,78643,0 ) ) -(109,279:26685893,14668977:501378,78643,0 -(109,279:26849747,14668977:173670,78643,0 +(105,279:26685893,14668977:501378,78643,0 +(105,279:26849747,14668977:173670,78643,0 ) ) -(109,279:27187271,14668977:501378,78643,0 -(109,279:27351125,14668977:173670,78643,0 +(105,279:27187271,14668977:501378,78643,0 +(105,279:27351125,14668977:173670,78643,0 ) ) -(109,279:27688649,14668977:501378,78643,0 -(109,279:27852503,14668977:173670,78643,0 +(105,279:27688649,14668977:501378,78643,0 +(105,279:27852503,14668977:173670,78643,0 ) ) -(109,279:28190027,14668977:501378,78643,0 -(109,279:28353881,14668977:173670,78643,0 +(105,279:28190027,14668977:501378,78643,0 +(105,279:28353881,14668977:173670,78643,0 ) ) -(109,279:28691405,14668977:501378,78643,0 -(109,279:28855259,14668977:173670,78643,0 +(105,279:28691405,14668977:501378,78643,0 +(105,279:28855259,14668977:173670,78643,0 ) ) -(109,279:29192783,14668977:501378,78643,0 -(109,279:29356637,14668977:173670,78643,0 +(105,279:29192783,14668977:501378,78643,0 +(105,279:29356637,14668977:173670,78643,0 ) ) -(109,279:29694161,14668977:501378,78643,0 -(109,279:29858015,14668977:173670,78643,0 +(105,279:29694161,14668977:501378,78643,0 +(105,279:29858015,14668977:173670,78643,0 ) ) -(109,279:30195539,14668977:501378,78643,0 -(109,279:30359393,14668977:173670,78643,0 +(105,279:30195539,14668977:501378,78643,0 +(105,279:30359393,14668977:173670,78643,0 ) ) -(109,279:30696917,14668977:501378,78643,0 -(109,279:30860771,14668977:173670,78643,0 +(105,279:30696917,14668977:501378,78643,0 +(105,279:30860771,14668977:173670,78643,0 ) ) -(109,279:31403379,14668977:1179650,485622,11795 -k109,279:31403379,14668977:0 -k109,279:31536199,14668977:132820 +(105,279:31239539,14668977:1343490,485622,11795 +k105,279:31239539,14668977:0 +k105,279:31387652,14668977:148113 ) -g109,279:30911859,14668977 -g109,279:32583029,14668977 +g105,279:30911859,14668977 +g105,279:32583029,14668977 ) -(109,281:6630773,15510465:25952256,505283,11795 -g109,281:11218293,15510465 -h109,281:11218293,15510465:2490370,0,0 -h109,281:13708663,15510465:0,0,0 -g109,281:9121143,15510465 -(109,281:9121143,15510465:2097150,485622,11795 -k109,281:11218293,15510465:554432 +(105,281:6630773,15510465:25952256,505283,11795 +g105,281:11218293,15510465 +h105,281:11218293,15510465:2490370,0,0 +h105,281:13708663,15510465:0,0,0 +g105,281:9121143,15510465 +(105,281:9121143,15510465:2097150,485622,11795 +k105,281:11218293,15510465:554432 ) -g109,281:12649599,15510465 -g109,281:16683995,15510465 -(109,281:17159711,15510465:501378,78643,0 -$109,281:17159711,15510465 -(109,281:17323565,15510465:173670,78643,0 +g105,281:12649599,15510465 +g105,281:16683995,15510465 +(105,281:17159711,15510465:501378,78643,0 +$105,281:17159711,15510465 +(105,281:17323565,15510465:173670,78643,0 ) -$109,281:17661089,15510465 +$105,281:17661089,15510465 ) -(109,281:17661089,15510465:501378,78643,0 -(109,281:17824943,15510465:173670,78643,0 +(105,281:17661089,15510465:501378,78643,0 +(105,281:17824943,15510465:173670,78643,0 ) ) -(109,281:18162467,15510465:501378,78643,0 -(109,281:18326321,15510465:173670,78643,0 +(105,281:18162467,15510465:501378,78643,0 +(105,281:18326321,15510465:173670,78643,0 ) ) -(109,281:18663845,15510465:501378,78643,0 -(109,281:18827699,15510465:173670,78643,0 +(105,281:18663845,15510465:501378,78643,0 +(105,281:18827699,15510465:173670,78643,0 ) ) -(109,281:19165223,15510465:501378,78643,0 -(109,281:19329077,15510465:173670,78643,0 +(105,281:19165223,15510465:501378,78643,0 +(105,281:19329077,15510465:173670,78643,0 ) ) -(109,281:19666601,15510465:501378,78643,0 -(109,281:19830455,15510465:173670,78643,0 +(105,281:19666601,15510465:501378,78643,0 +(105,281:19830455,15510465:173670,78643,0 ) ) -(109,281:20167979,15510465:501378,78643,0 -(109,281:20331833,15510465:173670,78643,0 +(105,281:20167979,15510465:501378,78643,0 +(105,281:20331833,15510465:173670,78643,0 ) ) -(109,281:20669357,15510465:501378,78643,0 -(109,281:20833211,15510465:173670,78643,0 +(105,281:20669357,15510465:501378,78643,0 +(105,281:20833211,15510465:173670,78643,0 ) ) -(109,281:21170735,15510465:501378,78643,0 -(109,281:21334589,15510465:173670,78643,0 +(105,281:21170735,15510465:501378,78643,0 +(105,281:21334589,15510465:173670,78643,0 ) ) -(109,281:21672113,15510465:501378,78643,0 -(109,281:21835967,15510465:173670,78643,0 +(105,281:21672113,15510465:501378,78643,0 +(105,281:21835967,15510465:173670,78643,0 ) ) -(109,281:22173491,15510465:501378,78643,0 -(109,281:22337345,15510465:173670,78643,0 +(105,281:22173491,15510465:501378,78643,0 +(105,281:22337345,15510465:173670,78643,0 ) ) -(109,281:22674869,15510465:501378,78643,0 -(109,281:22838723,15510465:173670,78643,0 +(105,281:22674869,15510465:501378,78643,0 +(105,281:22838723,15510465:173670,78643,0 ) ) -(109,281:23176247,15510465:501378,78643,0 -(109,281:23340101,15510465:173670,78643,0 +(105,281:23176247,15510465:501378,78643,0 +(105,281:23340101,15510465:173670,78643,0 ) ) -(109,281:23677625,15510465:501378,78643,0 -(109,281:23841479,15510465:173670,78643,0 +(105,281:23677625,15510465:501378,78643,0 +(105,281:23841479,15510465:173670,78643,0 ) ) -(109,281:24179003,15510465:501378,78643,0 -(109,281:24342857,15510465:173670,78643,0 +(105,281:24179003,15510465:501378,78643,0 +(105,281:24342857,15510465:173670,78643,0 ) ) -(109,281:24680381,15510465:501378,78643,0 -(109,281:24844235,15510465:173670,78643,0 +(105,281:24680381,15510465:501378,78643,0 +(105,281:24844235,15510465:173670,78643,0 ) ) -(109,281:25181759,15510465:501378,78643,0 -(109,281:25345613,15510465:173670,78643,0 +(105,281:25181759,15510465:501378,78643,0 +(105,281:25345613,15510465:173670,78643,0 ) ) -(109,281:25683137,15510465:501378,78643,0 -(109,281:25846991,15510465:173670,78643,0 +(105,281:25683137,15510465:501378,78643,0 +(105,281:25846991,15510465:173670,78643,0 ) ) -(109,281:26184515,15510465:501378,78643,0 -(109,281:26348369,15510465:173670,78643,0 +(105,281:26184515,15510465:501378,78643,0 +(105,281:26348369,15510465:173670,78643,0 ) ) -(109,281:26685893,15510465:501378,78643,0 -(109,281:26849747,15510465:173670,78643,0 +(105,281:26685893,15510465:501378,78643,0 +(105,281:26849747,15510465:173670,78643,0 ) ) -(109,281:27187271,15510465:501378,78643,0 -(109,281:27351125,15510465:173670,78643,0 +(105,281:27187271,15510465:501378,78643,0 +(105,281:27351125,15510465:173670,78643,0 ) ) -(109,281:27688649,15510465:501378,78643,0 -(109,281:27852503,15510465:173670,78643,0 +(105,281:27688649,15510465:501378,78643,0 +(105,281:27852503,15510465:173670,78643,0 ) ) -(109,281:28190027,15510465:501378,78643,0 -(109,281:28353881,15510465:173670,78643,0 +(105,281:28190027,15510465:501378,78643,0 +(105,281:28353881,15510465:173670,78643,0 ) ) -(109,281:28691405,15510465:501378,78643,0 -(109,281:28855259,15510465:173670,78643,0 +(105,281:28691405,15510465:501378,78643,0 +(105,281:28855259,15510465:173670,78643,0 ) ) -(109,281:29192783,15510465:501378,78643,0 -(109,281:29356637,15510465:173670,78643,0 +(105,281:29192783,15510465:501378,78643,0 +(105,281:29356637,15510465:173670,78643,0 ) ) -(109,281:29694161,15510465:501378,78643,0 -(109,281:29858015,15510465:173670,78643,0 +(105,281:29694161,15510465:501378,78643,0 +(105,281:29858015,15510465:173670,78643,0 ) ) -(109,281:30195539,15510465:501378,78643,0 -(109,281:30359393,15510465:173670,78643,0 +(105,281:30195539,15510465:501378,78643,0 +(105,281:30359393,15510465:173670,78643,0 ) ) -(109,281:30696917,15510465:501378,78643,0 -(109,281:30860771,15510465:173670,78643,0 +(105,281:30696917,15510465:501378,78643,0 +(105,281:30860771,15510465:173670,78643,0 ) ) -(109,281:31403379,15510465:1179650,485622,11795 -k109,281:31403379,15510465:0 -k109,281:31536199,15510465:132820 +(105,281:31239539,15510465:1343490,485622,11795 +k105,281:31239539,15510465:0 +k105,281:31387652,15510465:148113 ) -g109,281:30911859,15510465 -g109,281:32583029,15510465 +g105,281:30911859,15510465 +g105,281:32583029,15510465 ) -(109,283:6630773,16351953:25952256,505283,134348 -g109,283:11218293,16351953 -h109,283:11218293,16351953:2490370,0,0 -h109,283:13708663,16351953:0,0,0 -g109,283:9121143,16351953 -(109,283:9121143,16351953:2097150,485622,11795 -k109,283:11218293,16351953:554432 +(105,283:6630773,16351953:25952256,505283,134348 +g105,283:11218293,16351953 +h105,283:11218293,16351953:2490370,0,0 +h105,283:13708663,16351953:0,0,0 +g105,283:9121143,16351953 +(105,283:9121143,16351953:2097150,485622,11795 +k105,283:11218293,16351953:554432 ) -g109,283:12979900,16351953 -g109,283:13865291,16351953 -g109,283:14479363,16351953 -g109,283:16769191,16351953 -(109,283:17159711,16351953:501378,78643,0 -$109,283:17159711,16351953 -(109,283:17323565,16351953:173670,78643,0 +g105,283:12979900,16351953 +g105,283:13865291,16351953 +g105,283:14479363,16351953 +g105,283:16769191,16351953 +(105,283:17159711,16351953:501378,78643,0 +$105,283:17159711,16351953 +(105,283:17323565,16351953:173670,78643,0 ) -$109,283:17661089,16351953 +$105,283:17661089,16351953 ) -(109,283:17661089,16351953:501378,78643,0 -(109,283:17824943,16351953:173670,78643,0 +(105,283:17661089,16351953:501378,78643,0 +(105,283:17824943,16351953:173670,78643,0 ) ) -(109,283:18162467,16351953:501378,78643,0 -(109,283:18326321,16351953:173670,78643,0 +(105,283:18162467,16351953:501378,78643,0 +(105,283:18326321,16351953:173670,78643,0 ) ) -(109,283:18663845,16351953:501378,78643,0 -(109,283:18827699,16351953:173670,78643,0 +(105,283:18663845,16351953:501378,78643,0 +(105,283:18827699,16351953:173670,78643,0 ) ) -(109,283:19165223,16351953:501378,78643,0 -(109,283:19329077,16351953:173670,78643,0 +(105,283:19165223,16351953:501378,78643,0 +(105,283:19329077,16351953:173670,78643,0 ) ) -(109,283:19666601,16351953:501378,78643,0 -(109,283:19830455,16351953:173670,78643,0 +(105,283:19666601,16351953:501378,78643,0 +(105,283:19830455,16351953:173670,78643,0 ) ) -(109,283:20167979,16351953:501378,78643,0 -(109,283:20331833,16351953:173670,78643,0 +(105,283:20167979,16351953:501378,78643,0 +(105,283:20331833,16351953:173670,78643,0 ) ) -(109,283:20669357,16351953:501378,78643,0 -(109,283:20833211,16351953:173670,78643,0 +(105,283:20669357,16351953:501378,78643,0 +(105,283:20833211,16351953:173670,78643,0 ) ) -(109,283:21170735,16351953:501378,78643,0 -(109,283:21334589,16351953:173670,78643,0 +(105,283:21170735,16351953:501378,78643,0 +(105,283:21334589,16351953:173670,78643,0 ) ) -(109,283:21672113,16351953:501378,78643,0 -(109,283:21835967,16351953:173670,78643,0 +(105,283:21672113,16351953:501378,78643,0 +(105,283:21835967,16351953:173670,78643,0 ) ) -(109,283:22173491,16351953:501378,78643,0 -(109,283:22337345,16351953:173670,78643,0 +(105,283:22173491,16351953:501378,78643,0 +(105,283:22337345,16351953:173670,78643,0 ) ) -(109,283:22674869,16351953:501378,78643,0 -(109,283:22838723,16351953:173670,78643,0 +(105,283:22674869,16351953:501378,78643,0 +(105,283:22838723,16351953:173670,78643,0 ) ) -(109,283:23176247,16351953:501378,78643,0 -(109,283:23340101,16351953:173670,78643,0 +(105,283:23176247,16351953:501378,78643,0 +(105,283:23340101,16351953:173670,78643,0 ) ) -(109,283:23677625,16351953:501378,78643,0 -(109,283:23841479,16351953:173670,78643,0 +(105,283:23677625,16351953:501378,78643,0 +(105,283:23841479,16351953:173670,78643,0 ) ) -(109,283:24179003,16351953:501378,78643,0 -(109,283:24342857,16351953:173670,78643,0 +(105,283:24179003,16351953:501378,78643,0 +(105,283:24342857,16351953:173670,78643,0 ) ) -(109,283:24680381,16351953:501378,78643,0 -(109,283:24844235,16351953:173670,78643,0 +(105,283:24680381,16351953:501378,78643,0 +(105,283:24844235,16351953:173670,78643,0 ) ) -(109,283:25181759,16351953:501378,78643,0 -(109,283:25345613,16351953:173670,78643,0 +(105,283:25181759,16351953:501378,78643,0 +(105,283:25345613,16351953:173670,78643,0 ) ) -(109,283:25683137,16351953:501378,78643,0 -(109,283:25846991,16351953:173670,78643,0 +(105,283:25683137,16351953:501378,78643,0 +(105,283:25846991,16351953:173670,78643,0 ) ) -(109,283:26184515,16351953:501378,78643,0 -(109,283:26348369,16351953:173670,78643,0 +(105,283:26184515,16351953:501378,78643,0 +(105,283:26348369,16351953:173670,78643,0 ) ) -(109,283:26685893,16351953:501378,78643,0 -(109,283:26849747,16351953:173670,78643,0 +(105,283:26685893,16351953:501378,78643,0 +(105,283:26849747,16351953:173670,78643,0 ) ) -(109,283:27187271,16351953:501378,78643,0 -(109,283:27351125,16351953:173670,78643,0 +(105,283:27187271,16351953:501378,78643,0 +(105,283:27351125,16351953:173670,78643,0 ) ) -(109,283:27688649,16351953:501378,78643,0 -(109,283:27852503,16351953:173670,78643,0 +(105,283:27688649,16351953:501378,78643,0 +(105,283:27852503,16351953:173670,78643,0 ) ) -(109,283:28190027,16351953:501378,78643,0 -(109,283:28353881,16351953:173670,78643,0 +(105,283:28190027,16351953:501378,78643,0 +(105,283:28353881,16351953:173670,78643,0 ) ) -(109,283:28691405,16351953:501378,78643,0 -(109,283:28855259,16351953:173670,78643,0 +(105,283:28691405,16351953:501378,78643,0 +(105,283:28855259,16351953:173670,78643,0 ) ) -(109,283:29192783,16351953:501378,78643,0 -(109,283:29356637,16351953:173670,78643,0 +(105,283:29192783,16351953:501378,78643,0 +(105,283:29356637,16351953:173670,78643,0 ) ) -(109,283:29694161,16351953:501378,78643,0 -(109,283:29858015,16351953:173670,78643,0 +(105,283:29694161,16351953:501378,78643,0 +(105,283:29858015,16351953:173670,78643,0 ) ) -(109,283:30195539,16351953:501378,78643,0 -(109,283:30359393,16351953:173670,78643,0 +(105,283:30195539,16351953:501378,78643,0 +(105,283:30359393,16351953:173670,78643,0 ) ) -(109,283:30696917,16351953:501378,78643,0 -(109,283:30860771,16351953:173670,78643,0 +(105,283:30696917,16351953:501378,78643,0 +(105,283:30860771,16351953:173670,78643,0 ) ) -(109,283:31403379,16351953:1179650,485622,0 -k109,283:31403379,16351953:0 -k109,283:31536199,16351953:132820 +(105,283:31239539,16351953:1343490,485622,0 +k105,283:31239539,16351953:0 +k105,283:31387652,16351953:148113 ) -g109,283:30911859,16351953 -g109,283:32583029,16351953 +g105,283:30911859,16351953 +g105,283:32583029,16351953 ) -(109,285:6630773,17193441:25952256,505283,134348 -g109,285:11218293,17193441 -h109,285:11218293,17193441:2490370,0,0 -h109,285:13708663,17193441:0,0,0 -g109,285:9121143,17193441 -(109,285:9121143,17193441:2097150,485622,11795 -k109,285:11218293,17193441:155974 +(105,285:6630773,17193441:25952256,505283,134348 +g105,285:11218293,17193441 +h105,285:11218293,17193441:2490370,0,0 +h105,285:13708663,17193441:0,0,0 +g105,285:9121143,17193441 +(105,285:9121143,17193441:2097150,485622,11795 +k105,285:11218293,17193441:155974 ) -g109,285:12889461,17193441 -g109,285:14280135,17193441 -g109,285:17417999,17193441 -(109,285:17661089,17193441:501378,78643,0 -$109,285:17661089,17193441 -(109,285:17824943,17193441:173670,78643,0 +g105,285:12889461,17193441 +g105,285:14280135,17193441 +g105,285:17417999,17193441 +(105,285:17661089,17193441:501378,78643,0 +$105,285:17661089,17193441 +(105,285:17824943,17193441:173670,78643,0 ) -$109,285:18162467,17193441 +$105,285:18162467,17193441 ) -(109,285:18162467,17193441:501378,78643,0 -(109,285:18326321,17193441:173670,78643,0 +(105,285:18162467,17193441:501378,78643,0 +(105,285:18326321,17193441:173670,78643,0 ) ) -(109,285:18663845,17193441:501378,78643,0 -(109,285:18827699,17193441:173670,78643,0 +(105,285:18663845,17193441:501378,78643,0 +(105,285:18827699,17193441:173670,78643,0 ) ) -(109,285:19165223,17193441:501378,78643,0 -(109,285:19329077,17193441:173670,78643,0 +(105,285:19165223,17193441:501378,78643,0 +(105,285:19329077,17193441:173670,78643,0 ) ) -(109,285:19666601,17193441:501378,78643,0 -(109,285:19830455,17193441:173670,78643,0 +(105,285:19666601,17193441:501378,78643,0 +(105,285:19830455,17193441:173670,78643,0 ) ) -(109,285:20167979,17193441:501378,78643,0 -(109,285:20331833,17193441:173670,78643,0 +(105,285:20167979,17193441:501378,78643,0 +(105,285:20331833,17193441:173670,78643,0 ) ) -(109,285:20669357,17193441:501378,78643,0 -(109,285:20833211,17193441:173670,78643,0 +(105,285:20669357,17193441:501378,78643,0 +(105,285:20833211,17193441:173670,78643,0 ) ) -(109,285:21170735,17193441:501378,78643,0 -(109,285:21334589,17193441:173670,78643,0 +(105,285:21170735,17193441:501378,78643,0 +(105,285:21334589,17193441:173670,78643,0 ) ) -(109,285:21672113,17193441:501378,78643,0 -(109,285:21835967,17193441:173670,78643,0 +(105,285:21672113,17193441:501378,78643,0 +(105,285:21835967,17193441:173670,78643,0 ) ) -(109,285:22173491,17193441:501378,78643,0 -(109,285:22337345,17193441:173670,78643,0 +(105,285:22173491,17193441:501378,78643,0 +(105,285:22337345,17193441:173670,78643,0 ) ) -(109,285:22674869,17193441:501378,78643,0 -(109,285:22838723,17193441:173670,78643,0 +(105,285:22674869,17193441:501378,78643,0 +(105,285:22838723,17193441:173670,78643,0 ) ) -(109,285:23176247,17193441:501378,78643,0 -(109,285:23340101,17193441:173670,78643,0 +(105,285:23176247,17193441:501378,78643,0 +(105,285:23340101,17193441:173670,78643,0 ) ) -(109,285:23677625,17193441:501378,78643,0 -(109,285:23841479,17193441:173670,78643,0 +(105,285:23677625,17193441:501378,78643,0 +(105,285:23841479,17193441:173670,78643,0 ) ) -(109,285:24179003,17193441:501378,78643,0 -(109,285:24342857,17193441:173670,78643,0 +(105,285:24179003,17193441:501378,78643,0 +(105,285:24342857,17193441:173670,78643,0 ) ) -(109,285:24680381,17193441:501378,78643,0 -(109,285:24844235,17193441:173670,78643,0 +(105,285:24680381,17193441:501378,78643,0 +(105,285:24844235,17193441:173670,78643,0 ) ) -(109,285:25181759,17193441:501378,78643,0 -(109,285:25345613,17193441:173670,78643,0 +(105,285:25181759,17193441:501378,78643,0 +(105,285:25345613,17193441:173670,78643,0 ) ) -(109,285:25683137,17193441:501378,78643,0 -(109,285:25846991,17193441:173670,78643,0 +(105,285:25683137,17193441:501378,78643,0 +(105,285:25846991,17193441:173670,78643,0 ) ) -(109,285:26184515,17193441:501378,78643,0 -(109,285:26348369,17193441:173670,78643,0 +(105,285:26184515,17193441:501378,78643,0 +(105,285:26348369,17193441:173670,78643,0 ) ) -(109,285:26685893,17193441:501378,78643,0 -(109,285:26849747,17193441:173670,78643,0 +(105,285:26685893,17193441:501378,78643,0 +(105,285:26849747,17193441:173670,78643,0 ) ) -(109,285:27187271,17193441:501378,78643,0 -(109,285:27351125,17193441:173670,78643,0 +(105,285:27187271,17193441:501378,78643,0 +(105,285:27351125,17193441:173670,78643,0 ) ) -(109,285:27688649,17193441:501378,78643,0 -(109,285:27852503,17193441:173670,78643,0 +(105,285:27688649,17193441:501378,78643,0 +(105,285:27852503,17193441:173670,78643,0 ) ) -(109,285:28190027,17193441:501378,78643,0 -(109,285:28353881,17193441:173670,78643,0 +(105,285:28190027,17193441:501378,78643,0 +(105,285:28353881,17193441:173670,78643,0 ) ) -(109,285:28691405,17193441:501378,78643,0 -(109,285:28855259,17193441:173670,78643,0 +(105,285:28691405,17193441:501378,78643,0 +(105,285:28855259,17193441:173670,78643,0 ) ) -(109,285:29192783,17193441:501378,78643,0 -(109,285:29356637,17193441:173670,78643,0 +(105,285:29192783,17193441:501378,78643,0 +(105,285:29356637,17193441:173670,78643,0 ) ) -(109,285:29694161,17193441:501378,78643,0 -(109,285:29858015,17193441:173670,78643,0 +(105,285:29694161,17193441:501378,78643,0 +(105,285:29858015,17193441:173670,78643,0 ) ) -(109,285:30195539,17193441:501378,78643,0 -(109,285:30359393,17193441:173670,78643,0 +(105,285:30195539,17193441:501378,78643,0 +(105,285:30359393,17193441:173670,78643,0 ) ) -(109,285:30696917,17193441:501378,78643,0 -(109,285:30860771,17193441:173670,78643,0 +(105,285:30696917,17193441:501378,78643,0 +(105,285:30860771,17193441:173670,78643,0 ) ) -(109,285:31403379,17193441:1179650,485622,11795 -k109,285:31403379,17193441:0 -k109,285:31536199,17193441:132820 +(105,285:31239539,17193441:1343490,485622,0 +k105,285:31239539,17193441:0 +k105,285:31387652,17193441:148113 ) -g109,285:30911859,17193441 -g109,285:32583029,17193441 +g105,285:30911859,17193441 +g105,285:32583029,17193441 ) -(109,287:6630773,18034929:25952256,485622,11795 -g109,287:9121143,18034929 -h109,287:9121143,18034929:983040,0,0 -h109,287:10104183,18034929:0,0,0 -g109,287:7613813,18034929 -(109,287:7613813,18034929:1507330,481690,0 -k109,287:9121143,18034929:536742 +(105,287:6630773,18034929:25952256,485622,11795 +g105,287:9121143,18034929 +h105,287:9121143,18034929:983040,0,0 +h105,287:10104183,18034929:0,0,0 +g105,287:7613813,18034929 +(105,287:7613813,18034929:1507330,481690,0 +k105,287:9121143,18034929:536742 ) -g109,287:12933372,18034929 -g109,287:12933372,18034929 -(109,287:13148687,18034929:501378,78643,0 -$109,287:13148687,18034929 -(109,287:13312541,18034929:173670,78643,0 +g105,287:12933372,18034929 +g105,287:12933372,18034929 +(105,287:13148687,18034929:501378,78643,0 +$105,287:13148687,18034929 +(105,287:13312541,18034929:173670,78643,0 ) -$109,287:13650065,18034929 +$105,287:13650065,18034929 ) -(109,287:13650065,18034929:501378,78643,0 -(109,287:13813919,18034929:173670,78643,0 +(105,287:13650065,18034929:501378,78643,0 +(105,287:13813919,18034929:173670,78643,0 ) ) -(109,287:14151443,18034929:501378,78643,0 -(109,287:14315297,18034929:173670,78643,0 +(105,287:14151443,18034929:501378,78643,0 +(105,287:14315297,18034929:173670,78643,0 ) ) -(109,287:14652821,18034929:501378,78643,0 -(109,287:14816675,18034929:173670,78643,0 +(105,287:14652821,18034929:501378,78643,0 +(105,287:14816675,18034929:173670,78643,0 ) ) -(109,287:15154199,18034929:501378,78643,0 -(109,287:15318053,18034929:173670,78643,0 +(105,287:15154199,18034929:501378,78643,0 +(105,287:15318053,18034929:173670,78643,0 ) ) -(109,287:15655577,18034929:501378,78643,0 -(109,287:15819431,18034929:173670,78643,0 +(105,287:15655577,18034929:501378,78643,0 +(105,287:15819431,18034929:173670,78643,0 ) ) -(109,287:16156955,18034929:501378,78643,0 -(109,287:16320809,18034929:173670,78643,0 +(105,287:16156955,18034929:501378,78643,0 +(105,287:16320809,18034929:173670,78643,0 ) ) -(109,287:16658333,18034929:501378,78643,0 -(109,287:16822187,18034929:173670,78643,0 +(105,287:16658333,18034929:501378,78643,0 +(105,287:16822187,18034929:173670,78643,0 ) ) -(109,287:17159711,18034929:501378,78643,0 -(109,287:17323565,18034929:173670,78643,0 +(105,287:17159711,18034929:501378,78643,0 +(105,287:17323565,18034929:173670,78643,0 ) ) -(109,287:17661089,18034929:501378,78643,0 -(109,287:17824943,18034929:173670,78643,0 +(105,287:17661089,18034929:501378,78643,0 +(105,287:17824943,18034929:173670,78643,0 ) ) -(109,287:18162467,18034929:501378,78643,0 -(109,287:18326321,18034929:173670,78643,0 +(105,287:18162467,18034929:501378,78643,0 +(105,287:18326321,18034929:173670,78643,0 ) ) -(109,287:18663845,18034929:501378,78643,0 -(109,287:18827699,18034929:173670,78643,0 +(105,287:18663845,18034929:501378,78643,0 +(105,287:18827699,18034929:173670,78643,0 ) ) -(109,287:19165223,18034929:501378,78643,0 -(109,287:19329077,18034929:173670,78643,0 +(105,287:19165223,18034929:501378,78643,0 +(105,287:19329077,18034929:173670,78643,0 ) ) -(109,287:19666601,18034929:501378,78643,0 -(109,287:19830455,18034929:173670,78643,0 +(105,287:19666601,18034929:501378,78643,0 +(105,287:19830455,18034929:173670,78643,0 ) ) -(109,287:20167979,18034929:501378,78643,0 -(109,287:20331833,18034929:173670,78643,0 +(105,287:20167979,18034929:501378,78643,0 +(105,287:20331833,18034929:173670,78643,0 ) ) -(109,287:20669357,18034929:501378,78643,0 -(109,287:20833211,18034929:173670,78643,0 +(105,287:20669357,18034929:501378,78643,0 +(105,287:20833211,18034929:173670,78643,0 ) ) -(109,287:21170735,18034929:501378,78643,0 -(109,287:21334589,18034929:173670,78643,0 +(105,287:21170735,18034929:501378,78643,0 +(105,287:21334589,18034929:173670,78643,0 ) ) -(109,287:21672113,18034929:501378,78643,0 -(109,287:21835967,18034929:173670,78643,0 +(105,287:21672113,18034929:501378,78643,0 +(105,287:21835967,18034929:173670,78643,0 ) ) -(109,287:22173491,18034929:501378,78643,0 -(109,287:22337345,18034929:173670,78643,0 +(105,287:22173491,18034929:501378,78643,0 +(105,287:22337345,18034929:173670,78643,0 ) ) -(109,287:22674869,18034929:501378,78643,0 -(109,287:22838723,18034929:173670,78643,0 +(105,287:22674869,18034929:501378,78643,0 +(105,287:22838723,18034929:173670,78643,0 ) ) -(109,287:23176247,18034929:501378,78643,0 -(109,287:23340101,18034929:173670,78643,0 +(105,287:23176247,18034929:501378,78643,0 +(105,287:23340101,18034929:173670,78643,0 ) ) -(109,287:23677625,18034929:501378,78643,0 -(109,287:23841479,18034929:173670,78643,0 +(105,287:23677625,18034929:501378,78643,0 +(105,287:23841479,18034929:173670,78643,0 ) ) -(109,287:24179003,18034929:501378,78643,0 -(109,287:24342857,18034929:173670,78643,0 +(105,287:24179003,18034929:501378,78643,0 +(105,287:24342857,18034929:173670,78643,0 ) ) -(109,287:24680381,18034929:501378,78643,0 -(109,287:24844235,18034929:173670,78643,0 +(105,287:24680381,18034929:501378,78643,0 +(105,287:24844235,18034929:173670,78643,0 ) ) -(109,287:25181759,18034929:501378,78643,0 -(109,287:25345613,18034929:173670,78643,0 +(105,287:25181759,18034929:501378,78643,0 +(105,287:25345613,18034929:173670,78643,0 ) ) -(109,287:25683137,18034929:501378,78643,0 -(109,287:25846991,18034929:173670,78643,0 +(105,287:25683137,18034929:501378,78643,0 +(105,287:25846991,18034929:173670,78643,0 ) ) -(109,287:26184515,18034929:501378,78643,0 -(109,287:26348369,18034929:173670,78643,0 +(105,287:26184515,18034929:501378,78643,0 +(105,287:26348369,18034929:173670,78643,0 ) ) -(109,287:26685893,18034929:501378,78643,0 -(109,287:26849747,18034929:173670,78643,0 +(105,287:26685893,18034929:501378,78643,0 +(105,287:26849747,18034929:173670,78643,0 ) ) -(109,287:27187271,18034929:501378,78643,0 -(109,287:27351125,18034929:173670,78643,0 +(105,287:27187271,18034929:501378,78643,0 +(105,287:27351125,18034929:173670,78643,0 ) ) -(109,287:27688649,18034929:501378,78643,0 -(109,287:27852503,18034929:173670,78643,0 +(105,287:27688649,18034929:501378,78643,0 +(105,287:27852503,18034929:173670,78643,0 ) ) -(109,287:28190027,18034929:501378,78643,0 -(109,287:28353881,18034929:173670,78643,0 +(105,287:28190027,18034929:501378,78643,0 +(105,287:28353881,18034929:173670,78643,0 ) ) -(109,287:28691405,18034929:501378,78643,0 -(109,287:28855259,18034929:173670,78643,0 +(105,287:28691405,18034929:501378,78643,0 +(105,287:28855259,18034929:173670,78643,0 ) ) -(109,287:29192783,18034929:501378,78643,0 -(109,287:29356637,18034929:173670,78643,0 +(105,287:29192783,18034929:501378,78643,0 +(105,287:29356637,18034929:173670,78643,0 ) ) -(109,287:29694161,18034929:501378,78643,0 -(109,287:29858015,18034929:173670,78643,0 +(105,287:29694161,18034929:501378,78643,0 +(105,287:29858015,18034929:173670,78643,0 ) ) -(109,287:30195539,18034929:501378,78643,0 -(109,287:30359393,18034929:173670,78643,0 +(105,287:30195539,18034929:501378,78643,0 +(105,287:30359393,18034929:173670,78643,0 ) ) -(109,287:30696917,18034929:501378,78643,0 -(109,287:30860771,18034929:173670,78643,0 +(105,287:30696917,18034929:501378,78643,0 +(105,287:30860771,18034929:173670,78643,0 ) ) -(109,287:31403380,18034929:1179650,485622,0 -k109,287:31403380,18034929:0 -k109,287:31536200,18034929:132820 +(105,287:31239540,18034929:1343490,485622,11795 +k105,287:31239540,18034929:0 +k105,287:31387653,18034929:148113 ) -g109,287:30911860,18034929 -g109,287:32583030,18034929 +g105,287:30911860,18034929 +g105,287:32583030,18034929 ) -(109,289:6630773,18876417:25952256,485622,11795 -g109,289:11218293,18876417 -h109,289:11218293,18876417:2490370,0,0 -h109,289:13708663,18876417:0,0,0 -g109,289:9121143,18876417 -(109,289:9121143,18876417:2097150,481690,0 -k109,289:11218293,18876417:554432 +(105,289:6630773,18876417:25952256,485622,11795 +g105,289:11218293,18876417 +h105,289:11218293,18876417:2490370,0,0 +h105,289:13708663,18876417:0,0,0 +g105,289:9121143,18876417 +(105,289:9121143,18876417:2097150,481690,0 +k105,289:11218293,18876417:554432 ) -g109,289:12861281,18876417 -(109,289:13148687,18876417:501378,78643,0 -$109,289:13148687,18876417 -(109,289:13312541,18876417:173670,78643,0 +g105,289:12861281,18876417 +(105,289:13148687,18876417:501378,78643,0 +$105,289:13148687,18876417 +(105,289:13312541,18876417:173670,78643,0 ) -$109,289:13650065,18876417 +$105,289:13650065,18876417 ) -(109,289:13650065,18876417:501378,78643,0 -(109,289:13813919,18876417:173670,78643,0 +(105,289:13650065,18876417:501378,78643,0 +(105,289:13813919,18876417:173670,78643,0 ) ) -(109,289:14151443,18876417:501378,78643,0 -(109,289:14315297,18876417:173670,78643,0 +(105,289:14151443,18876417:501378,78643,0 +(105,289:14315297,18876417:173670,78643,0 ) ) -(109,289:14652821,18876417:501378,78643,0 -(109,289:14816675,18876417:173670,78643,0 +(105,289:14652821,18876417:501378,78643,0 +(105,289:14816675,18876417:173670,78643,0 ) ) -(109,289:15154199,18876417:501378,78643,0 -(109,289:15318053,18876417:173670,78643,0 +(105,289:15154199,18876417:501378,78643,0 +(105,289:15318053,18876417:173670,78643,0 ) ) -(109,289:15655577,18876417:501378,78643,0 -(109,289:15819431,18876417:173670,78643,0 +(105,289:15655577,18876417:501378,78643,0 +(105,289:15819431,18876417:173670,78643,0 ) ) -(109,289:16156955,18876417:501378,78643,0 -(109,289:16320809,18876417:173670,78643,0 +(105,289:16156955,18876417:501378,78643,0 +(105,289:16320809,18876417:173670,78643,0 ) ) -(109,289:16658333,18876417:501378,78643,0 -(109,289:16822187,18876417:173670,78643,0 +(105,289:16658333,18876417:501378,78643,0 +(105,289:16822187,18876417:173670,78643,0 ) ) -(109,289:17159711,18876417:501378,78643,0 -(109,289:17323565,18876417:173670,78643,0 +(105,289:17159711,18876417:501378,78643,0 +(105,289:17323565,18876417:173670,78643,0 ) ) -(109,289:17661089,18876417:501378,78643,0 -(109,289:17824943,18876417:173670,78643,0 +(105,289:17661089,18876417:501378,78643,0 +(105,289:17824943,18876417:173670,78643,0 ) ) -(109,289:18162467,18876417:501378,78643,0 -(109,289:18326321,18876417:173670,78643,0 +(105,289:18162467,18876417:501378,78643,0 +(105,289:18326321,18876417:173670,78643,0 ) ) -(109,289:18663845,18876417:501378,78643,0 -(109,289:18827699,18876417:173670,78643,0 +(105,289:18663845,18876417:501378,78643,0 +(105,289:18827699,18876417:173670,78643,0 ) ) -(109,289:19165223,18876417:501378,78643,0 -(109,289:19329077,18876417:173670,78643,0 +(105,289:19165223,18876417:501378,78643,0 +(105,289:19329077,18876417:173670,78643,0 ) ) -(109,289:19666601,18876417:501378,78643,0 -(109,289:19830455,18876417:173670,78643,0 +(105,289:19666601,18876417:501378,78643,0 +(105,289:19830455,18876417:173670,78643,0 ) ) -(109,289:20167979,18876417:501378,78643,0 -(109,289:20331833,18876417:173670,78643,0 +(105,289:20167979,18876417:501378,78643,0 +(105,289:20331833,18876417:173670,78643,0 ) ) -(109,289:20669357,18876417:501378,78643,0 -(109,289:20833211,18876417:173670,78643,0 +(105,289:20669357,18876417:501378,78643,0 +(105,289:20833211,18876417:173670,78643,0 ) ) -(109,289:21170735,18876417:501378,78643,0 -(109,289:21334589,18876417:173670,78643,0 +(105,289:21170735,18876417:501378,78643,0 +(105,289:21334589,18876417:173670,78643,0 ) ) -(109,289:21672113,18876417:501378,78643,0 -(109,289:21835967,18876417:173670,78643,0 +(105,289:21672113,18876417:501378,78643,0 +(105,289:21835967,18876417:173670,78643,0 ) ) -(109,289:22173491,18876417:501378,78643,0 -(109,289:22337345,18876417:173670,78643,0 +(105,289:22173491,18876417:501378,78643,0 +(105,289:22337345,18876417:173670,78643,0 ) ) -(109,289:22674869,18876417:501378,78643,0 -(109,289:22838723,18876417:173670,78643,0 +(105,289:22674869,18876417:501378,78643,0 +(105,289:22838723,18876417:173670,78643,0 ) ) -(109,289:23176247,18876417:501378,78643,0 -(109,289:23340101,18876417:173670,78643,0 +(105,289:23176247,18876417:501378,78643,0 +(105,289:23340101,18876417:173670,78643,0 ) ) -(109,289:23677625,18876417:501378,78643,0 -(109,289:23841479,18876417:173670,78643,0 +(105,289:23677625,18876417:501378,78643,0 +(105,289:23841479,18876417:173670,78643,0 ) ) -(109,289:24179003,18876417:501378,78643,0 -(109,289:24342857,18876417:173670,78643,0 +(105,289:24179003,18876417:501378,78643,0 +(105,289:24342857,18876417:173670,78643,0 ) ) -(109,289:24680381,18876417:501378,78643,0 -(109,289:24844235,18876417:173670,78643,0 +(105,289:24680381,18876417:501378,78643,0 +(105,289:24844235,18876417:173670,78643,0 ) ) -(109,289:25181759,18876417:501378,78643,0 -(109,289:25345613,18876417:173670,78643,0 +(105,289:25181759,18876417:501378,78643,0 +(105,289:25345613,18876417:173670,78643,0 ) ) -(109,289:25683137,18876417:501378,78643,0 -(109,289:25846991,18876417:173670,78643,0 +(105,289:25683137,18876417:501378,78643,0 +(105,289:25846991,18876417:173670,78643,0 ) ) -(109,289:26184515,18876417:501378,78643,0 -(109,289:26348369,18876417:173670,78643,0 +(105,289:26184515,18876417:501378,78643,0 +(105,289:26348369,18876417:173670,78643,0 ) ) -(109,289:26685893,18876417:501378,78643,0 -(109,289:26849747,18876417:173670,78643,0 +(105,289:26685893,18876417:501378,78643,0 +(105,289:26849747,18876417:173670,78643,0 ) ) -(109,289:27187271,18876417:501378,78643,0 -(109,289:27351125,18876417:173670,78643,0 +(105,289:27187271,18876417:501378,78643,0 +(105,289:27351125,18876417:173670,78643,0 ) ) -(109,289:27688649,18876417:501378,78643,0 -(109,289:27852503,18876417:173670,78643,0 +(105,289:27688649,18876417:501378,78643,0 +(105,289:27852503,18876417:173670,78643,0 ) ) -(109,289:28190027,18876417:501378,78643,0 -(109,289:28353881,18876417:173670,78643,0 +(105,289:28190027,18876417:501378,78643,0 +(105,289:28353881,18876417:173670,78643,0 ) ) -(109,289:28691405,18876417:501378,78643,0 -(109,289:28855259,18876417:173670,78643,0 +(105,289:28691405,18876417:501378,78643,0 +(105,289:28855259,18876417:173670,78643,0 ) ) -(109,289:29192783,18876417:501378,78643,0 -(109,289:29356637,18876417:173670,78643,0 +(105,289:29192783,18876417:501378,78643,0 +(105,289:29356637,18876417:173670,78643,0 ) ) -(109,289:29694161,18876417:501378,78643,0 -(109,289:29858015,18876417:173670,78643,0 +(105,289:29694161,18876417:501378,78643,0 +(105,289:29858015,18876417:173670,78643,0 ) ) -(109,289:30195539,18876417:501378,78643,0 -(109,289:30359393,18876417:173670,78643,0 +(105,289:30195539,18876417:501378,78643,0 +(105,289:30359393,18876417:173670,78643,0 ) ) -(109,289:30696917,18876417:501378,78643,0 -(109,289:30860771,18876417:173670,78643,0 +(105,289:30696917,18876417:501378,78643,0 +(105,289:30860771,18876417:173670,78643,0 ) ) -(109,289:31403379,18876417:1179650,485622,11795 -k109,289:31403379,18876417:0 -k109,289:31536199,18876417:132820 +(105,289:31239539,18876417:1343490,485622,11795 +k105,289:31239539,18876417:0 +k105,289:31387652,18876417:148113 ) -g109,289:30911859,18876417 -g109,289:32583029,18876417 +g105,289:30911859,18876417 +g105,289:32583029,18876417 ) -(109,291:6630773,19717905:25952256,485622,134348 -g109,291:11218293,19717905 -h109,291:11218293,19717905:2490370,0,0 -h109,291:13708663,19717905:0,0,0 -g109,291:9121143,19717905 -(109,291:9121143,19717905:2097150,485622,0 -k109,291:11218293,19717905:554432 +(105,291:6630773,19717905:25952256,485622,134348 +g105,291:11218293,19717905 +h105,291:11218293,19717905:2490370,0,0 +h105,291:13708663,19717905:0,0,0 +g105,291:9121143,19717905 +(105,291:9121143,19717905:2097150,485622,0 +k105,291:11218293,19717905:554432 ) -g109,291:12452336,19717905 -(109,291:12647309,19717905:501378,78643,0 -$109,291:12647309,19717905 -(109,291:12811163,19717905:173670,78643,0 +g105,291:12452336,19717905 +(105,291:12647309,19717905:501378,78643,0 +$105,291:12647309,19717905 +(105,291:12811163,19717905:173670,78643,0 ) -$109,291:13148687,19717905 +$105,291:13148687,19717905 ) -(109,291:13148687,19717905:501378,78643,0 -(109,291:13312541,19717905:173670,78643,0 +(105,291:13148687,19717905:501378,78643,0 +(105,291:13312541,19717905:173670,78643,0 ) ) -(109,291:13650065,19717905:501378,78643,0 -(109,291:13813919,19717905:173670,78643,0 +(105,291:13650065,19717905:501378,78643,0 +(105,291:13813919,19717905:173670,78643,0 ) ) -(109,291:14151443,19717905:501378,78643,0 -(109,291:14315297,19717905:173670,78643,0 +(105,291:14151443,19717905:501378,78643,0 +(105,291:14315297,19717905:173670,78643,0 ) ) -(109,291:14652821,19717905:501378,78643,0 -(109,291:14816675,19717905:173670,78643,0 +(105,291:14652821,19717905:501378,78643,0 +(105,291:14816675,19717905:173670,78643,0 ) ) -(109,291:15154199,19717905:501378,78643,0 -(109,291:15318053,19717905:173670,78643,0 +(105,291:15154199,19717905:501378,78643,0 +(105,291:15318053,19717905:173670,78643,0 ) ) -(109,291:15655577,19717905:501378,78643,0 -(109,291:15819431,19717905:173670,78643,0 +(105,291:15655577,19717905:501378,78643,0 +(105,291:15819431,19717905:173670,78643,0 ) ) -(109,291:16156955,19717905:501378,78643,0 -(109,291:16320809,19717905:173670,78643,0 +(105,291:16156955,19717905:501378,78643,0 +(105,291:16320809,19717905:173670,78643,0 ) ) -(109,291:16658333,19717905:501378,78643,0 -(109,291:16822187,19717905:173670,78643,0 +(105,291:16658333,19717905:501378,78643,0 +(105,291:16822187,19717905:173670,78643,0 ) ) -(109,291:17159711,19717905:501378,78643,0 -(109,291:17323565,19717905:173670,78643,0 +(105,291:17159711,19717905:501378,78643,0 +(105,291:17323565,19717905:173670,78643,0 ) ) -(109,291:17661089,19717905:501378,78643,0 -(109,291:17824943,19717905:173670,78643,0 +(105,291:17661089,19717905:501378,78643,0 +(105,291:17824943,19717905:173670,78643,0 ) ) -(109,291:18162467,19717905:501378,78643,0 -(109,291:18326321,19717905:173670,78643,0 +(105,291:18162467,19717905:501378,78643,0 +(105,291:18326321,19717905:173670,78643,0 ) ) -(109,291:18663845,19717905:501378,78643,0 -(109,291:18827699,19717905:173670,78643,0 +(105,291:18663845,19717905:501378,78643,0 +(105,291:18827699,19717905:173670,78643,0 ) ) -(109,291:19165223,19717905:501378,78643,0 -(109,291:19329077,19717905:173670,78643,0 +(105,291:19165223,19717905:501378,78643,0 +(105,291:19329077,19717905:173670,78643,0 ) ) -(109,291:19666601,19717905:501378,78643,0 -(109,291:19830455,19717905:173670,78643,0 +(105,291:19666601,19717905:501378,78643,0 +(105,291:19830455,19717905:173670,78643,0 ) ) -(109,291:20167979,19717905:501378,78643,0 -(109,291:20331833,19717905:173670,78643,0 +(105,291:20167979,19717905:501378,78643,0 +(105,291:20331833,19717905:173670,78643,0 ) ) -(109,291:20669357,19717905:501378,78643,0 -(109,291:20833211,19717905:173670,78643,0 +(105,291:20669357,19717905:501378,78643,0 +(105,291:20833211,19717905:173670,78643,0 ) ) -(109,291:21170735,19717905:501378,78643,0 -(109,291:21334589,19717905:173670,78643,0 +(105,291:21170735,19717905:501378,78643,0 +(105,291:21334589,19717905:173670,78643,0 ) ) -(109,291:21672113,19717905:501378,78643,0 -(109,291:21835967,19717905:173670,78643,0 +(105,291:21672113,19717905:501378,78643,0 +(105,291:21835967,19717905:173670,78643,0 ) ) -(109,291:22173491,19717905:501378,78643,0 -(109,291:22337345,19717905:173670,78643,0 +(105,291:22173491,19717905:501378,78643,0 +(105,291:22337345,19717905:173670,78643,0 ) ) -(109,291:22674869,19717905:501378,78643,0 -(109,291:22838723,19717905:173670,78643,0 +(105,291:22674869,19717905:501378,78643,0 +(105,291:22838723,19717905:173670,78643,0 ) ) -(109,291:23176247,19717905:501378,78643,0 -(109,291:23340101,19717905:173670,78643,0 +(105,291:23176247,19717905:501378,78643,0 +(105,291:23340101,19717905:173670,78643,0 ) ) -(109,291:23677625,19717905:501378,78643,0 -(109,291:23841479,19717905:173670,78643,0 +(105,291:23677625,19717905:501378,78643,0 +(105,291:23841479,19717905:173670,78643,0 ) ) -(109,291:24179003,19717905:501378,78643,0 -(109,291:24342857,19717905:173670,78643,0 +(105,291:24179003,19717905:501378,78643,0 +(105,291:24342857,19717905:173670,78643,0 ) ) -(109,291:24680381,19717905:501378,78643,0 -(109,291:24844235,19717905:173670,78643,0 +(105,291:24680381,19717905:501378,78643,0 +(105,291:24844235,19717905:173670,78643,0 ) ) -(109,291:25181759,19717905:501378,78643,0 -(109,291:25345613,19717905:173670,78643,0 +(105,291:25181759,19717905:501378,78643,0 +(105,291:25345613,19717905:173670,78643,0 ) ) -(109,291:25683137,19717905:501378,78643,0 -(109,291:25846991,19717905:173670,78643,0 +(105,291:25683137,19717905:501378,78643,0 +(105,291:25846991,19717905:173670,78643,0 ) ) -(109,291:26184515,19717905:501378,78643,0 -(109,291:26348369,19717905:173670,78643,0 +(105,291:26184515,19717905:501378,78643,0 +(105,291:26348369,19717905:173670,78643,0 ) ) -(109,291:26685893,19717905:501378,78643,0 -(109,291:26849747,19717905:173670,78643,0 +(105,291:26685893,19717905:501378,78643,0 +(105,291:26849747,19717905:173670,78643,0 ) ) -(109,291:27187271,19717905:501378,78643,0 -(109,291:27351125,19717905:173670,78643,0 +(105,291:27187271,19717905:501378,78643,0 +(105,291:27351125,19717905:173670,78643,0 ) ) -(109,291:27688649,19717905:501378,78643,0 -(109,291:27852503,19717905:173670,78643,0 +(105,291:27688649,19717905:501378,78643,0 +(105,291:27852503,19717905:173670,78643,0 ) ) -(109,291:28190027,19717905:501378,78643,0 -(109,291:28353881,19717905:173670,78643,0 +(105,291:28190027,19717905:501378,78643,0 +(105,291:28353881,19717905:173670,78643,0 ) ) -(109,291:28691405,19717905:501378,78643,0 -(109,291:28855259,19717905:173670,78643,0 +(105,291:28691405,19717905:501378,78643,0 +(105,291:28855259,19717905:173670,78643,0 ) ) -(109,291:29192783,19717905:501378,78643,0 -(109,291:29356637,19717905:173670,78643,0 +(105,291:29192783,19717905:501378,78643,0 +(105,291:29356637,19717905:173670,78643,0 ) ) -(109,291:29694161,19717905:501378,78643,0 -(109,291:29858015,19717905:173670,78643,0 +(105,291:29694161,19717905:501378,78643,0 +(105,291:29858015,19717905:173670,78643,0 ) ) -(109,291:30195539,19717905:501378,78643,0 -(109,291:30359393,19717905:173670,78643,0 +(105,291:30195539,19717905:501378,78643,0 +(105,291:30359393,19717905:173670,78643,0 ) ) -(109,291:30696917,19717905:501378,78643,0 -(109,291:30860771,19717905:173670,78643,0 +(105,291:30696917,19717905:501378,78643,0 +(105,291:30860771,19717905:173670,78643,0 ) ) -(109,291:31403380,19717905:1179650,485622,11795 -k109,291:31403380,19717905:0 -k109,291:31536200,19717905:132820 +(105,291:31239540,19717905:1343490,485622,11795 +k105,291:31239540,19717905:0 +k105,291:31387653,19717905:148113 ) -g109,291:30911860,19717905 -g109,291:32583030,19717905 +g105,291:30911860,19717905 +g105,291:32583030,19717905 ) -(109,293:6630773,20559393:25952256,505283,11795 -g109,293:11218293,20559393 -h109,293:11218293,20559393:2490370,0,0 -h109,293:13708663,20559393:0,0,0 -g109,293:9121143,20559393 -(109,293:9121143,20559393:2097150,485622,11795 -k109,293:11218293,20559393:554432 +(105,293:6630773,20559393:25952256,505283,11795 +g105,293:11218293,20559393 +h105,293:11218293,20559393:2490370,0,0 +h105,293:13708663,20559393:0,0,0 +g105,293:9121143,20559393 +(105,293:9121143,20559393:2097150,485622,11795 +k105,293:11218293,20559393:554432 ) -g109,293:12745937,20559393 -g109,293:14136611,20559393 -g109,293:15484031,20559393 -(109,293:15655577,20559393:501378,78643,0 -$109,293:15655577,20559393 -(109,293:15819431,20559393:173670,78643,0 +g105,293:12745937,20559393 +g105,293:14136611,20559393 +g105,293:15484031,20559393 +(105,293:15655577,20559393:501378,78643,0 +$105,293:15655577,20559393 +(105,293:15819431,20559393:173670,78643,0 ) -$109,293:16156955,20559393 +$105,293:16156955,20559393 ) -(109,293:16156955,20559393:501378,78643,0 -(109,293:16320809,20559393:173670,78643,0 +(105,293:16156955,20559393:501378,78643,0 +(105,293:16320809,20559393:173670,78643,0 ) ) -(109,293:16658333,20559393:501378,78643,0 -(109,293:16822187,20559393:173670,78643,0 +(105,293:16658333,20559393:501378,78643,0 +(105,293:16822187,20559393:173670,78643,0 ) ) -(109,293:17159711,20559393:501378,78643,0 -(109,293:17323565,20559393:173670,78643,0 +(105,293:17159711,20559393:501378,78643,0 +(105,293:17323565,20559393:173670,78643,0 ) ) -(109,293:17661089,20559393:501378,78643,0 -(109,293:17824943,20559393:173670,78643,0 +(105,293:17661089,20559393:501378,78643,0 +(105,293:17824943,20559393:173670,78643,0 ) ) -(109,293:18162467,20559393:501378,78643,0 -(109,293:18326321,20559393:173670,78643,0 +(105,293:18162467,20559393:501378,78643,0 +(105,293:18326321,20559393:173670,78643,0 ) ) -(109,293:18663845,20559393:501378,78643,0 -(109,293:18827699,20559393:173670,78643,0 +(105,293:18663845,20559393:501378,78643,0 +(105,293:18827699,20559393:173670,78643,0 ) ) -(109,293:19165223,20559393:501378,78643,0 -(109,293:19329077,20559393:173670,78643,0 +(105,293:19165223,20559393:501378,78643,0 +(105,293:19329077,20559393:173670,78643,0 ) ) -(109,293:19666601,20559393:501378,78643,0 -(109,293:19830455,20559393:173670,78643,0 +(105,293:19666601,20559393:501378,78643,0 +(105,293:19830455,20559393:173670,78643,0 ) ) -(109,293:20167979,20559393:501378,78643,0 -(109,293:20331833,20559393:173670,78643,0 +(105,293:20167979,20559393:501378,78643,0 +(105,293:20331833,20559393:173670,78643,0 ) ) -(109,293:20669357,20559393:501378,78643,0 -(109,293:20833211,20559393:173670,78643,0 +(105,293:20669357,20559393:501378,78643,0 +(105,293:20833211,20559393:173670,78643,0 ) ) -(109,293:21170735,20559393:501378,78643,0 -(109,293:21334589,20559393:173670,78643,0 +(105,293:21170735,20559393:501378,78643,0 +(105,293:21334589,20559393:173670,78643,0 ) ) -(109,293:21672113,20559393:501378,78643,0 -(109,293:21835967,20559393:173670,78643,0 +(105,293:21672113,20559393:501378,78643,0 +(105,293:21835967,20559393:173670,78643,0 ) ) -(109,293:22173491,20559393:501378,78643,0 -(109,293:22337345,20559393:173670,78643,0 +(105,293:22173491,20559393:501378,78643,0 +(105,293:22337345,20559393:173670,78643,0 ) ) -(109,293:22674869,20559393:501378,78643,0 -(109,293:22838723,20559393:173670,78643,0 +(105,293:22674869,20559393:501378,78643,0 +(105,293:22838723,20559393:173670,78643,0 ) ) -(109,293:23176247,20559393:501378,78643,0 -(109,293:23340101,20559393:173670,78643,0 +(105,293:23176247,20559393:501378,78643,0 +(105,293:23340101,20559393:173670,78643,0 ) ) -(109,293:23677625,20559393:501378,78643,0 -(109,293:23841479,20559393:173670,78643,0 +(105,293:23677625,20559393:501378,78643,0 +(105,293:23841479,20559393:173670,78643,0 ) ) -(109,293:24179003,20559393:501378,78643,0 -(109,293:24342857,20559393:173670,78643,0 +(105,293:24179003,20559393:501378,78643,0 +(105,293:24342857,20559393:173670,78643,0 ) ) -(109,293:24680381,20559393:501378,78643,0 -(109,293:24844235,20559393:173670,78643,0 +(105,293:24680381,20559393:501378,78643,0 +(105,293:24844235,20559393:173670,78643,0 ) ) -(109,293:25181759,20559393:501378,78643,0 -(109,293:25345613,20559393:173670,78643,0 +(105,293:25181759,20559393:501378,78643,0 +(105,293:25345613,20559393:173670,78643,0 ) ) -(109,293:25683137,20559393:501378,78643,0 -(109,293:25846991,20559393:173670,78643,0 +(105,293:25683137,20559393:501378,78643,0 +(105,293:25846991,20559393:173670,78643,0 ) ) -(109,293:26184515,20559393:501378,78643,0 -(109,293:26348369,20559393:173670,78643,0 +(105,293:26184515,20559393:501378,78643,0 +(105,293:26348369,20559393:173670,78643,0 ) ) -(109,293:26685893,20559393:501378,78643,0 -(109,293:26849747,20559393:173670,78643,0 +(105,293:26685893,20559393:501378,78643,0 +(105,293:26849747,20559393:173670,78643,0 ) ) -(109,293:27187271,20559393:501378,78643,0 -(109,293:27351125,20559393:173670,78643,0 +(105,293:27187271,20559393:501378,78643,0 +(105,293:27351125,20559393:173670,78643,0 ) ) -(109,293:27688649,20559393:501378,78643,0 -(109,293:27852503,20559393:173670,78643,0 +(105,293:27688649,20559393:501378,78643,0 +(105,293:27852503,20559393:173670,78643,0 ) ) -(109,293:28190027,20559393:501378,78643,0 -(109,293:28353881,20559393:173670,78643,0 +(105,293:28190027,20559393:501378,78643,0 +(105,293:28353881,20559393:173670,78643,0 ) ) -(109,293:28691405,20559393:501378,78643,0 -(109,293:28855259,20559393:173670,78643,0 +(105,293:28691405,20559393:501378,78643,0 +(105,293:28855259,20559393:173670,78643,0 ) ) -(109,293:29192783,20559393:501378,78643,0 -(109,293:29356637,20559393:173670,78643,0 +(105,293:29192783,20559393:501378,78643,0 +(105,293:29356637,20559393:173670,78643,0 ) ) -(109,293:29694161,20559393:501378,78643,0 -(109,293:29858015,20559393:173670,78643,0 +(105,293:29694161,20559393:501378,78643,0 +(105,293:29858015,20559393:173670,78643,0 ) ) -(109,293:30195539,20559393:501378,78643,0 -(109,293:30359393,20559393:173670,78643,0 +(105,293:30195539,20559393:501378,78643,0 +(105,293:30359393,20559393:173670,78643,0 ) ) -(109,293:30696917,20559393:501378,78643,0 -(109,293:30860771,20559393:173670,78643,0 +(105,293:30696917,20559393:501378,78643,0 +(105,293:30860771,20559393:173670,78643,0 ) ) -(109,293:31403379,20559393:1179650,485622,11795 -k109,293:31403379,20559393:0 -k109,293:31536199,20559393:132820 +(105,293:31239539,20559393:1343490,485622,0 +k105,293:31239539,20559393:0 +k105,293:31387652,20559393:148113 ) -g109,293:30911859,20559393 -g109,293:32583029,20559393 +g105,293:30911859,20559393 +g105,293:32583029,20559393 ) -(109,295:6630773,21400881:25952256,505283,11795 -g109,295:11218293,21400881 -h109,295:11218293,21400881:2490370,0,0 -h109,295:13708663,21400881:0,0,0 -g109,295:9121143,21400881 -(109,295:9121143,21400881:2097150,481690,0 -k109,295:11218293,21400881:554432 +(105,295:6630773,21400881:25952256,505283,11795 +g105,295:11218293,21400881 +h105,295:11218293,21400881:2490370,0,0 +h105,295:13708663,21400881:0,0,0 +g105,295:9121143,21400881 +(105,295:9121143,21400881:2097150,481690,0 +k105,295:11218293,21400881:554432 ) -g109,295:13723079,21400881 -(109,295:14151443,21400881:501378,78643,0 -$109,295:14151443,21400881 -(109,295:14315297,21400881:173670,78643,0 +g105,295:13723079,21400881 +(105,295:14151443,21400881:501378,78643,0 +$105,295:14151443,21400881 +(105,295:14315297,21400881:173670,78643,0 ) -$109,295:14652821,21400881 +$105,295:14652821,21400881 ) -(109,295:14652821,21400881:501378,78643,0 -(109,295:14816675,21400881:173670,78643,0 +(105,295:14652821,21400881:501378,78643,0 +(105,295:14816675,21400881:173670,78643,0 ) ) -(109,295:15154199,21400881:501378,78643,0 -(109,295:15318053,21400881:173670,78643,0 +(105,295:15154199,21400881:501378,78643,0 +(105,295:15318053,21400881:173670,78643,0 ) ) -(109,295:15655577,21400881:501378,78643,0 -(109,295:15819431,21400881:173670,78643,0 +(105,295:15655577,21400881:501378,78643,0 +(105,295:15819431,21400881:173670,78643,0 ) ) -(109,295:16156955,21400881:501378,78643,0 -(109,295:16320809,21400881:173670,78643,0 +(105,295:16156955,21400881:501378,78643,0 +(105,295:16320809,21400881:173670,78643,0 ) ) -(109,295:16658333,21400881:501378,78643,0 -(109,295:16822187,21400881:173670,78643,0 +(105,295:16658333,21400881:501378,78643,0 +(105,295:16822187,21400881:173670,78643,0 ) ) -(109,295:17159711,21400881:501378,78643,0 -(109,295:17323565,21400881:173670,78643,0 +(105,295:17159711,21400881:501378,78643,0 +(105,295:17323565,21400881:173670,78643,0 ) ) -(109,295:17661089,21400881:501378,78643,0 -(109,295:17824943,21400881:173670,78643,0 +(105,295:17661089,21400881:501378,78643,0 +(105,295:17824943,21400881:173670,78643,0 ) ) -(109,295:18162467,21400881:501378,78643,0 -(109,295:18326321,21400881:173670,78643,0 +(105,295:18162467,21400881:501378,78643,0 +(105,295:18326321,21400881:173670,78643,0 ) ) -(109,295:18663845,21400881:501378,78643,0 -(109,295:18827699,21400881:173670,78643,0 +(105,295:18663845,21400881:501378,78643,0 +(105,295:18827699,21400881:173670,78643,0 ) ) -(109,295:19165223,21400881:501378,78643,0 -(109,295:19329077,21400881:173670,78643,0 +(105,295:19165223,21400881:501378,78643,0 +(105,295:19329077,21400881:173670,78643,0 ) ) -(109,295:19666601,21400881:501378,78643,0 -(109,295:19830455,21400881:173670,78643,0 +(105,295:19666601,21400881:501378,78643,0 +(105,295:19830455,21400881:173670,78643,0 ) ) -(109,295:20167979,21400881:501378,78643,0 -(109,295:20331833,21400881:173670,78643,0 +(105,295:20167979,21400881:501378,78643,0 +(105,295:20331833,21400881:173670,78643,0 ) ) -(109,295:20669357,21400881:501378,78643,0 -(109,295:20833211,21400881:173670,78643,0 +(105,295:20669357,21400881:501378,78643,0 +(105,295:20833211,21400881:173670,78643,0 ) ) -(109,295:21170735,21400881:501378,78643,0 -(109,295:21334589,21400881:173670,78643,0 +(105,295:21170735,21400881:501378,78643,0 +(105,295:21334589,21400881:173670,78643,0 ) ) -(109,295:21672113,21400881:501378,78643,0 -(109,295:21835967,21400881:173670,78643,0 +(105,295:21672113,21400881:501378,78643,0 +(105,295:21835967,21400881:173670,78643,0 ) ) -(109,295:22173491,21400881:501378,78643,0 -(109,295:22337345,21400881:173670,78643,0 +(105,295:22173491,21400881:501378,78643,0 +(105,295:22337345,21400881:173670,78643,0 ) ) -(109,295:22674869,21400881:501378,78643,0 -(109,295:22838723,21400881:173670,78643,0 +(105,295:22674869,21400881:501378,78643,0 +(105,295:22838723,21400881:173670,78643,0 ) ) -(109,295:23176247,21400881:501378,78643,0 -(109,295:23340101,21400881:173670,78643,0 +(105,295:23176247,21400881:501378,78643,0 +(105,295:23340101,21400881:173670,78643,0 ) ) -(109,295:23677625,21400881:501378,78643,0 -(109,295:23841479,21400881:173670,78643,0 +(105,295:23677625,21400881:501378,78643,0 +(105,295:23841479,21400881:173670,78643,0 ) ) -(109,295:24179003,21400881:501378,78643,0 -(109,295:24342857,21400881:173670,78643,0 +(105,295:24179003,21400881:501378,78643,0 +(105,295:24342857,21400881:173670,78643,0 ) ) -(109,295:24680381,21400881:501378,78643,0 -(109,295:24844235,21400881:173670,78643,0 +(105,295:24680381,21400881:501378,78643,0 +(105,295:24844235,21400881:173670,78643,0 ) ) -(109,295:25181759,21400881:501378,78643,0 -(109,295:25345613,21400881:173670,78643,0 +(105,295:25181759,21400881:501378,78643,0 +(105,295:25345613,21400881:173670,78643,0 ) ) -(109,295:25683137,21400881:501378,78643,0 -(109,295:25846991,21400881:173670,78643,0 +(105,295:25683137,21400881:501378,78643,0 +(105,295:25846991,21400881:173670,78643,0 ) ) -(109,295:26184515,21400881:501378,78643,0 -(109,295:26348369,21400881:173670,78643,0 +(105,295:26184515,21400881:501378,78643,0 +(105,295:26348369,21400881:173670,78643,0 ) ) -(109,295:26685893,21400881:501378,78643,0 -(109,295:26849747,21400881:173670,78643,0 +(105,295:26685893,21400881:501378,78643,0 +(105,295:26849747,21400881:173670,78643,0 ) ) -(109,295:27187271,21400881:501378,78643,0 -(109,295:27351125,21400881:173670,78643,0 +(105,295:27187271,21400881:501378,78643,0 +(105,295:27351125,21400881:173670,78643,0 ) ) -(109,295:27688649,21400881:501378,78643,0 -(109,295:27852503,21400881:173670,78643,0 +(105,295:27688649,21400881:501378,78643,0 +(105,295:27852503,21400881:173670,78643,0 ) ) -(109,295:28190027,21400881:501378,78643,0 -(109,295:28353881,21400881:173670,78643,0 +(105,295:28190027,21400881:501378,78643,0 +(105,295:28353881,21400881:173670,78643,0 ) ) -(109,295:28691405,21400881:501378,78643,0 -(109,295:28855259,21400881:173670,78643,0 +(105,295:28691405,21400881:501378,78643,0 +(105,295:28855259,21400881:173670,78643,0 ) ) -(109,295:29192783,21400881:501378,78643,0 -(109,295:29356637,21400881:173670,78643,0 +(105,295:29192783,21400881:501378,78643,0 +(105,295:29356637,21400881:173670,78643,0 ) ) -(109,295:29694161,21400881:501378,78643,0 -(109,295:29858015,21400881:173670,78643,0 +(105,295:29694161,21400881:501378,78643,0 +(105,295:29858015,21400881:173670,78643,0 ) ) -(109,295:30195539,21400881:501378,78643,0 -(109,295:30359393,21400881:173670,78643,0 +(105,295:30195539,21400881:501378,78643,0 +(105,295:30359393,21400881:173670,78643,0 ) ) -(109,295:30696917,21400881:501378,78643,0 -(109,295:30860771,21400881:173670,78643,0 +(105,295:30696917,21400881:501378,78643,0 +(105,295:30860771,21400881:173670,78643,0 ) ) -(109,295:31403379,21400881:1179650,485622,11795 -k109,295:31403379,21400881:0 -k109,295:31536199,21400881:132820 +(105,295:31239539,21400881:1343490,485622,11795 +k105,295:31239539,21400881:0 +k105,295:31387652,21400881:148113 ) -g109,295:30911859,21400881 -g109,295:32583029,21400881 +g105,295:30911859,21400881 +g105,295:32583029,21400881 ) -(109,297:6630773,22242369:25952256,505283,11795 -g109,297:11218293,22242369 -h109,297:11218293,22242369:2490370,0,0 -h109,297:13708663,22242369:0,0,0 -g109,297:9121143,22242369 -(109,297:9121143,22242369:2097150,481690,11795 -k109,297:11218293,22242369:554432 +(105,297:6630773,22242369:25952256,505283,11795 +g105,297:11218293,22242369 +h105,297:11218293,22242369:2490370,0,0 +h105,297:13708663,22242369:0,0,0 +g105,297:9121143,22242369 +(105,297:9121143,22242369:2097150,481690,11795 +k105,297:11218293,22242369:554432 ) -g109,297:12736762,22242369 -(109,297:13148687,22242369:501378,78643,0 -$109,297:13148687,22242369 -(109,297:13312541,22242369:173670,78643,0 +g105,297:12736762,22242369 +(105,297:13148687,22242369:501378,78643,0 +$105,297:13148687,22242369 +(105,297:13312541,22242369:173670,78643,0 ) -$109,297:13650065,22242369 +$105,297:13650065,22242369 ) -(109,297:13650065,22242369:501378,78643,0 -(109,297:13813919,22242369:173670,78643,0 +(105,297:13650065,22242369:501378,78643,0 +(105,297:13813919,22242369:173670,78643,0 ) ) -(109,297:14151443,22242369:501378,78643,0 -(109,297:14315297,22242369:173670,78643,0 +(105,297:14151443,22242369:501378,78643,0 +(105,297:14315297,22242369:173670,78643,0 ) ) -(109,297:14652821,22242369:501378,78643,0 -(109,297:14816675,22242369:173670,78643,0 +(105,297:14652821,22242369:501378,78643,0 +(105,297:14816675,22242369:173670,78643,0 ) ) -(109,297:15154199,22242369:501378,78643,0 -(109,297:15318053,22242369:173670,78643,0 +(105,297:15154199,22242369:501378,78643,0 +(105,297:15318053,22242369:173670,78643,0 ) ) -(109,297:15655577,22242369:501378,78643,0 -(109,297:15819431,22242369:173670,78643,0 +(105,297:15655577,22242369:501378,78643,0 +(105,297:15819431,22242369:173670,78643,0 ) ) -(109,297:16156955,22242369:501378,78643,0 -(109,297:16320809,22242369:173670,78643,0 +(105,297:16156955,22242369:501378,78643,0 +(105,297:16320809,22242369:173670,78643,0 ) ) -(109,297:16658333,22242369:501378,78643,0 -(109,297:16822187,22242369:173670,78643,0 +(105,297:16658333,22242369:501378,78643,0 +(105,297:16822187,22242369:173670,78643,0 ) ) -(109,297:17159711,22242369:501378,78643,0 -(109,297:17323565,22242369:173670,78643,0 +(105,297:17159711,22242369:501378,78643,0 +(105,297:17323565,22242369:173670,78643,0 ) ) -(109,297:17661089,22242369:501378,78643,0 -(109,297:17824943,22242369:173670,78643,0 +(105,297:17661089,22242369:501378,78643,0 +(105,297:17824943,22242369:173670,78643,0 ) ) -(109,297:18162467,22242369:501378,78643,0 -(109,297:18326321,22242369:173670,78643,0 +(105,297:18162467,22242369:501378,78643,0 +(105,297:18326321,22242369:173670,78643,0 ) ) -(109,297:18663845,22242369:501378,78643,0 -(109,297:18827699,22242369:173670,78643,0 +(105,297:18663845,22242369:501378,78643,0 +(105,297:18827699,22242369:173670,78643,0 ) ) -(109,297:19165223,22242369:501378,78643,0 -(109,297:19329077,22242369:173670,78643,0 +(105,297:19165223,22242369:501378,78643,0 +(105,297:19329077,22242369:173670,78643,0 ) ) -(109,297:19666601,22242369:501378,78643,0 -(109,297:19830455,22242369:173670,78643,0 +(105,297:19666601,22242369:501378,78643,0 +(105,297:19830455,22242369:173670,78643,0 ) ) -(109,297:20167979,22242369:501378,78643,0 -(109,297:20331833,22242369:173670,78643,0 +(105,297:20167979,22242369:501378,78643,0 +(105,297:20331833,22242369:173670,78643,0 ) ) -(109,297:20669357,22242369:501378,78643,0 -(109,297:20833211,22242369:173670,78643,0 +(105,297:20669357,22242369:501378,78643,0 +(105,297:20833211,22242369:173670,78643,0 ) ) -(109,297:21170735,22242369:501378,78643,0 -(109,297:21334589,22242369:173670,78643,0 +(105,297:21170735,22242369:501378,78643,0 +(105,297:21334589,22242369:173670,78643,0 ) ) -(109,297:21672113,22242369:501378,78643,0 -(109,297:21835967,22242369:173670,78643,0 +(105,297:21672113,22242369:501378,78643,0 +(105,297:21835967,22242369:173670,78643,0 ) ) -(109,297:22173491,22242369:501378,78643,0 -(109,297:22337345,22242369:173670,78643,0 +(105,297:22173491,22242369:501378,78643,0 +(105,297:22337345,22242369:173670,78643,0 ) ) -(109,297:22674869,22242369:501378,78643,0 -(109,297:22838723,22242369:173670,78643,0 +(105,297:22674869,22242369:501378,78643,0 +(105,297:22838723,22242369:173670,78643,0 ) ) -(109,297:23176247,22242369:501378,78643,0 -(109,297:23340101,22242369:173670,78643,0 +(105,297:23176247,22242369:501378,78643,0 +(105,297:23340101,22242369:173670,78643,0 ) ) -(109,297:23677625,22242369:501378,78643,0 -(109,297:23841479,22242369:173670,78643,0 +(105,297:23677625,22242369:501378,78643,0 +(105,297:23841479,22242369:173670,78643,0 ) ) -(109,297:24179003,22242369:501378,78643,0 -(109,297:24342857,22242369:173670,78643,0 +(105,297:24179003,22242369:501378,78643,0 +(105,297:24342857,22242369:173670,78643,0 ) ) -(109,297:24680381,22242369:501378,78643,0 -(109,297:24844235,22242369:173670,78643,0 +(105,297:24680381,22242369:501378,78643,0 +(105,297:24844235,22242369:173670,78643,0 ) ) -(109,297:25181759,22242369:501378,78643,0 -(109,297:25345613,22242369:173670,78643,0 +(105,297:25181759,22242369:501378,78643,0 +(105,297:25345613,22242369:173670,78643,0 ) ) -(109,297:25683137,22242369:501378,78643,0 -(109,297:25846991,22242369:173670,78643,0 +(105,297:25683137,22242369:501378,78643,0 +(105,297:25846991,22242369:173670,78643,0 ) ) -(109,297:26184515,22242369:501378,78643,0 -(109,297:26348369,22242369:173670,78643,0 +(105,297:26184515,22242369:501378,78643,0 +(105,297:26348369,22242369:173670,78643,0 ) ) -(109,297:26685893,22242369:501378,78643,0 -(109,297:26849747,22242369:173670,78643,0 +(105,297:26685893,22242369:501378,78643,0 +(105,297:26849747,22242369:173670,78643,0 ) ) -(109,297:27187271,22242369:501378,78643,0 -(109,297:27351125,22242369:173670,78643,0 +(105,297:27187271,22242369:501378,78643,0 +(105,297:27351125,22242369:173670,78643,0 ) ) -(109,297:27688649,22242369:501378,78643,0 -(109,297:27852503,22242369:173670,78643,0 +(105,297:27688649,22242369:501378,78643,0 +(105,297:27852503,22242369:173670,78643,0 ) ) -(109,297:28190027,22242369:501378,78643,0 -(109,297:28353881,22242369:173670,78643,0 +(105,297:28190027,22242369:501378,78643,0 +(105,297:28353881,22242369:173670,78643,0 ) ) -(109,297:28691405,22242369:501378,78643,0 -(109,297:28855259,22242369:173670,78643,0 +(105,297:28691405,22242369:501378,78643,0 +(105,297:28855259,22242369:173670,78643,0 ) ) -(109,297:29192783,22242369:501378,78643,0 -(109,297:29356637,22242369:173670,78643,0 +(105,297:29192783,22242369:501378,78643,0 +(105,297:29356637,22242369:173670,78643,0 ) ) -(109,297:29694161,22242369:501378,78643,0 -(109,297:29858015,22242369:173670,78643,0 +(105,297:29694161,22242369:501378,78643,0 +(105,297:29858015,22242369:173670,78643,0 ) ) -(109,297:30195539,22242369:501378,78643,0 -(109,297:30359393,22242369:173670,78643,0 +(105,297:30195539,22242369:501378,78643,0 +(105,297:30359393,22242369:173670,78643,0 ) ) -(109,297:30696917,22242369:501378,78643,0 -(109,297:30860771,22242369:173670,78643,0 +(105,297:30696917,22242369:501378,78643,0 +(105,297:30860771,22242369:173670,78643,0 ) ) -(109,297:31403378,22242369:1179650,485622,0 -k109,297:31403378,22242369:0 -k109,297:31536198,22242369:132820 +(105,297:31239538,22242369:1343490,485622,11795 +k105,297:31239538,22242369:0 +k105,297:31387651,22242369:148113 ) -g109,297:30911858,22242369 -g109,297:32583028,22242369 +g105,297:30911858,22242369 +g105,297:32583028,22242369 ) -(109,299:6630773,23083857:25952256,513147,126483 -g109,299:11218293,23083857 -h109,299:11218293,23083857:2490370,0,0 -h109,299:13708663,23083857:0,0,0 -g109,299:9121143,23083857 -(109,299:9121143,23083857:2097150,485622,11795 -k109,299:11218293,23083857:554432 +(105,299:6630773,23083857:25952256,513147,126483 +g105,299:11218293,23083857 +h105,299:11218293,23083857:2490370,0,0 +h105,299:13708663,23083857:0,0,0 +g105,299:9121143,23083857 +(105,299:9121143,23083857:2097150,485622,11795 +k105,299:11218293,23083857:554432 ) -g109,299:13567103,23083857 -g109,299:16372043,23083857 -g109,299:17381297,23083857 -(109,299:17661089,23083857:501378,78643,0 -$109,299:17661089,23083857 -(109,299:17824943,23083857:173670,78643,0 +g105,299:13567103,23083857 +g105,299:16372043,23083857 +g105,299:17381297,23083857 +(105,299:17661089,23083857:501378,78643,0 +$105,299:17661089,23083857 +(105,299:17824943,23083857:173670,78643,0 ) -$109,299:18162467,23083857 +$105,299:18162467,23083857 ) -(109,299:18162467,23083857:501378,78643,0 -(109,299:18326321,23083857:173670,78643,0 +(105,299:18162467,23083857:501378,78643,0 +(105,299:18326321,23083857:173670,78643,0 ) ) -(109,299:18663845,23083857:501378,78643,0 -(109,299:18827699,23083857:173670,78643,0 +(105,299:18663845,23083857:501378,78643,0 +(105,299:18827699,23083857:173670,78643,0 ) ) -(109,299:19165223,23083857:501378,78643,0 -(109,299:19329077,23083857:173670,78643,0 +(105,299:19165223,23083857:501378,78643,0 +(105,299:19329077,23083857:173670,78643,0 ) ) -(109,299:19666601,23083857:501378,78643,0 -(109,299:19830455,23083857:173670,78643,0 +(105,299:19666601,23083857:501378,78643,0 +(105,299:19830455,23083857:173670,78643,0 ) ) -(109,299:20167979,23083857:501378,78643,0 -(109,299:20331833,23083857:173670,78643,0 +(105,299:20167979,23083857:501378,78643,0 +(105,299:20331833,23083857:173670,78643,0 ) ) -(109,299:20669357,23083857:501378,78643,0 -(109,299:20833211,23083857:173670,78643,0 +(105,299:20669357,23083857:501378,78643,0 +(105,299:20833211,23083857:173670,78643,0 ) ) -(109,299:21170735,23083857:501378,78643,0 -(109,299:21334589,23083857:173670,78643,0 +(105,299:21170735,23083857:501378,78643,0 +(105,299:21334589,23083857:173670,78643,0 ) ) -(109,299:21672113,23083857:501378,78643,0 -(109,299:21835967,23083857:173670,78643,0 +(105,299:21672113,23083857:501378,78643,0 +(105,299:21835967,23083857:173670,78643,0 ) ) -(109,299:22173491,23083857:501378,78643,0 -(109,299:22337345,23083857:173670,78643,0 +(105,299:22173491,23083857:501378,78643,0 +(105,299:22337345,23083857:173670,78643,0 ) ) -(109,299:22674869,23083857:501378,78643,0 -(109,299:22838723,23083857:173670,78643,0 +(105,299:22674869,23083857:501378,78643,0 +(105,299:22838723,23083857:173670,78643,0 ) ) -(109,299:23176247,23083857:501378,78643,0 -(109,299:23340101,23083857:173670,78643,0 +(105,299:23176247,23083857:501378,78643,0 +(105,299:23340101,23083857:173670,78643,0 ) ) -(109,299:23677625,23083857:501378,78643,0 -(109,299:23841479,23083857:173670,78643,0 +(105,299:23677625,23083857:501378,78643,0 +(105,299:23841479,23083857:173670,78643,0 ) ) -(109,299:24179003,23083857:501378,78643,0 -(109,299:24342857,23083857:173670,78643,0 +(105,299:24179003,23083857:501378,78643,0 +(105,299:24342857,23083857:173670,78643,0 ) ) -(109,299:24680381,23083857:501378,78643,0 -(109,299:24844235,23083857:173670,78643,0 +(105,299:24680381,23083857:501378,78643,0 +(105,299:24844235,23083857:173670,78643,0 ) ) -(109,299:25181759,23083857:501378,78643,0 -(109,299:25345613,23083857:173670,78643,0 +(105,299:25181759,23083857:501378,78643,0 +(105,299:25345613,23083857:173670,78643,0 ) ) -(109,299:25683137,23083857:501378,78643,0 -(109,299:25846991,23083857:173670,78643,0 +(105,299:25683137,23083857:501378,78643,0 +(105,299:25846991,23083857:173670,78643,0 ) ) -(109,299:26184515,23083857:501378,78643,0 -(109,299:26348369,23083857:173670,78643,0 +(105,299:26184515,23083857:501378,78643,0 +(105,299:26348369,23083857:173670,78643,0 ) ) -(109,299:26685893,23083857:501378,78643,0 -(109,299:26849747,23083857:173670,78643,0 +(105,299:26685893,23083857:501378,78643,0 +(105,299:26849747,23083857:173670,78643,0 ) ) -(109,299:27187271,23083857:501378,78643,0 -(109,299:27351125,23083857:173670,78643,0 +(105,299:27187271,23083857:501378,78643,0 +(105,299:27351125,23083857:173670,78643,0 ) ) -(109,299:27688649,23083857:501378,78643,0 -(109,299:27852503,23083857:173670,78643,0 +(105,299:27688649,23083857:501378,78643,0 +(105,299:27852503,23083857:173670,78643,0 ) ) -(109,299:28190027,23083857:501378,78643,0 -(109,299:28353881,23083857:173670,78643,0 +(105,299:28190027,23083857:501378,78643,0 +(105,299:28353881,23083857:173670,78643,0 ) ) -(109,299:28691405,23083857:501378,78643,0 -(109,299:28855259,23083857:173670,78643,0 +(105,299:28691405,23083857:501378,78643,0 +(105,299:28855259,23083857:173670,78643,0 ) ) -(109,299:29192783,23083857:501378,78643,0 -(109,299:29356637,23083857:173670,78643,0 +(105,299:29192783,23083857:501378,78643,0 +(105,299:29356637,23083857:173670,78643,0 ) ) -(109,299:29694161,23083857:501378,78643,0 -(109,299:29858015,23083857:173670,78643,0 +(105,299:29694161,23083857:501378,78643,0 +(105,299:29858015,23083857:173670,78643,0 ) ) -(109,299:30195539,23083857:501378,78643,0 -(109,299:30359393,23083857:173670,78643,0 +(105,299:30195539,23083857:501378,78643,0 +(105,299:30359393,23083857:173670,78643,0 ) ) -(109,299:30696917,23083857:501378,78643,0 -(109,299:30860771,23083857:173670,78643,0 +(105,299:30696917,23083857:501378,78643,0 +(105,299:30860771,23083857:173670,78643,0 ) ) -(109,299:31403379,23083857:1179650,485622,11795 -k109,299:31403379,23083857:0 -k109,299:31536199,23083857:132820 +(105,299:31239539,23083857:1343490,485622,0 +k105,299:31239539,23083857:0 +k105,299:31387652,23083857:148113 ) -g109,299:30911859,23083857 -g109,299:32583029,23083857 +g105,299:30911859,23083857 +g105,299:32583029,23083857 ) -(109,301:6630773,23925345:25952256,485622,11795 -g109,301:11218293,23925345 -h109,301:11218293,23925345:2490370,0,0 -h109,301:13708663,23925345:0,0,0 -g109,301:9121143,23925345 -(109,301:9121143,23925345:2097150,481690,0 -k109,301:11218293,23925345:554432 +(105,301:6630773,23925345:25952256,485622,7863 +g105,301:11218293,23925345 +h105,301:11218293,23925345:2490370,0,0 +h105,301:13708663,23925345:0,0,0 +g105,301:9121143,23925345 +(105,301:9121143,23925345:2097150,481690,0 +k105,301:11218293,23925345:554432 ) -g109,301:12622074,23925345 -(109,301:12647309,23925345:501378,78643,0 -$109,301:12647309,23925345 -(109,301:12811163,23925345:173670,78643,0 +g105,301:12622074,23925345 +(105,301:12647309,23925345:501378,78643,0 +$105,301:12647309,23925345 +(105,301:12811163,23925345:173670,78643,0 ) -$109,301:13148687,23925345 +$105,301:13148687,23925345 ) -(109,301:13148687,23925345:501378,78643,0 -(109,301:13312541,23925345:173670,78643,0 +(105,301:13148687,23925345:501378,78643,0 +(105,301:13312541,23925345:173670,78643,0 ) ) -(109,301:13650065,23925345:501378,78643,0 -(109,301:13813919,23925345:173670,78643,0 +(105,301:13650065,23925345:501378,78643,0 +(105,301:13813919,23925345:173670,78643,0 ) ) -(109,301:14151443,23925345:501378,78643,0 -(109,301:14315297,23925345:173670,78643,0 +(105,301:14151443,23925345:501378,78643,0 +(105,301:14315297,23925345:173670,78643,0 ) ) -(109,301:14652821,23925345:501378,78643,0 -(109,301:14816675,23925345:173670,78643,0 +(105,301:14652821,23925345:501378,78643,0 +(105,301:14816675,23925345:173670,78643,0 ) ) -(109,301:15154199,23925345:501378,78643,0 -(109,301:15318053,23925345:173670,78643,0 +(105,301:15154199,23925345:501378,78643,0 +(105,301:15318053,23925345:173670,78643,0 ) ) -(109,301:15655577,23925345:501378,78643,0 -(109,301:15819431,23925345:173670,78643,0 +(105,301:15655577,23925345:501378,78643,0 +(105,301:15819431,23925345:173670,78643,0 ) ) -(109,301:16156955,23925345:501378,78643,0 -(109,301:16320809,23925345:173670,78643,0 +(105,301:16156955,23925345:501378,78643,0 +(105,301:16320809,23925345:173670,78643,0 ) ) -(109,301:16658333,23925345:501378,78643,0 -(109,301:16822187,23925345:173670,78643,0 +(105,301:16658333,23925345:501378,78643,0 +(105,301:16822187,23925345:173670,78643,0 ) ) -(109,301:17159711,23925345:501378,78643,0 -(109,301:17323565,23925345:173670,78643,0 +(105,301:17159711,23925345:501378,78643,0 +(105,301:17323565,23925345:173670,78643,0 ) ) -(109,301:17661089,23925345:501378,78643,0 -(109,301:17824943,23925345:173670,78643,0 +(105,301:17661089,23925345:501378,78643,0 +(105,301:17824943,23925345:173670,78643,0 ) ) -(109,301:18162467,23925345:501378,78643,0 -(109,301:18326321,23925345:173670,78643,0 +(105,301:18162467,23925345:501378,78643,0 +(105,301:18326321,23925345:173670,78643,0 ) ) -(109,301:18663845,23925345:501378,78643,0 -(109,301:18827699,23925345:173670,78643,0 +(105,301:18663845,23925345:501378,78643,0 +(105,301:18827699,23925345:173670,78643,0 ) ) -(109,301:19165223,23925345:501378,78643,0 -(109,301:19329077,23925345:173670,78643,0 +(105,301:19165223,23925345:501378,78643,0 +(105,301:19329077,23925345:173670,78643,0 ) ) -(109,301:19666601,23925345:501378,78643,0 -(109,301:19830455,23925345:173670,78643,0 +(105,301:19666601,23925345:501378,78643,0 +(105,301:19830455,23925345:173670,78643,0 ) ) -(109,301:20167979,23925345:501378,78643,0 -(109,301:20331833,23925345:173670,78643,0 +(105,301:20167979,23925345:501378,78643,0 +(105,301:20331833,23925345:173670,78643,0 ) ) -(109,301:20669357,23925345:501378,78643,0 -(109,301:20833211,23925345:173670,78643,0 +(105,301:20669357,23925345:501378,78643,0 +(105,301:20833211,23925345:173670,78643,0 ) ) -(109,301:21170735,23925345:501378,78643,0 -(109,301:21334589,23925345:173670,78643,0 +(105,301:21170735,23925345:501378,78643,0 +(105,301:21334589,23925345:173670,78643,0 ) ) -(109,301:21672113,23925345:501378,78643,0 -(109,301:21835967,23925345:173670,78643,0 +(105,301:21672113,23925345:501378,78643,0 +(105,301:21835967,23925345:173670,78643,0 ) ) -(109,301:22173491,23925345:501378,78643,0 -(109,301:22337345,23925345:173670,78643,0 +(105,301:22173491,23925345:501378,78643,0 +(105,301:22337345,23925345:173670,78643,0 ) ) -(109,301:22674869,23925345:501378,78643,0 -(109,301:22838723,23925345:173670,78643,0 +(105,301:22674869,23925345:501378,78643,0 +(105,301:22838723,23925345:173670,78643,0 ) ) -(109,301:23176247,23925345:501378,78643,0 -(109,301:23340101,23925345:173670,78643,0 +(105,301:23176247,23925345:501378,78643,0 +(105,301:23340101,23925345:173670,78643,0 ) ) -(109,301:23677625,23925345:501378,78643,0 -(109,301:23841479,23925345:173670,78643,0 +(105,301:23677625,23925345:501378,78643,0 +(105,301:23841479,23925345:173670,78643,0 ) ) -(109,301:24179003,23925345:501378,78643,0 -(109,301:24342857,23925345:173670,78643,0 +(105,301:24179003,23925345:501378,78643,0 +(105,301:24342857,23925345:173670,78643,0 ) ) -(109,301:24680381,23925345:501378,78643,0 -(109,301:24844235,23925345:173670,78643,0 +(105,301:24680381,23925345:501378,78643,0 +(105,301:24844235,23925345:173670,78643,0 ) ) -(109,301:25181759,23925345:501378,78643,0 -(109,301:25345613,23925345:173670,78643,0 +(105,301:25181759,23925345:501378,78643,0 +(105,301:25345613,23925345:173670,78643,0 ) ) -(109,301:25683137,23925345:501378,78643,0 -(109,301:25846991,23925345:173670,78643,0 +(105,301:25683137,23925345:501378,78643,0 +(105,301:25846991,23925345:173670,78643,0 ) ) -(109,301:26184515,23925345:501378,78643,0 -(109,301:26348369,23925345:173670,78643,0 +(105,301:26184515,23925345:501378,78643,0 +(105,301:26348369,23925345:173670,78643,0 ) ) -(109,301:26685893,23925345:501378,78643,0 -(109,301:26849747,23925345:173670,78643,0 +(105,301:26685893,23925345:501378,78643,0 +(105,301:26849747,23925345:173670,78643,0 ) ) -(109,301:27187271,23925345:501378,78643,0 -(109,301:27351125,23925345:173670,78643,0 +(105,301:27187271,23925345:501378,78643,0 +(105,301:27351125,23925345:173670,78643,0 ) ) -(109,301:27688649,23925345:501378,78643,0 -(109,301:27852503,23925345:173670,78643,0 +(105,301:27688649,23925345:501378,78643,0 +(105,301:27852503,23925345:173670,78643,0 ) ) -(109,301:28190027,23925345:501378,78643,0 -(109,301:28353881,23925345:173670,78643,0 +(105,301:28190027,23925345:501378,78643,0 +(105,301:28353881,23925345:173670,78643,0 ) ) -(109,301:28691405,23925345:501378,78643,0 -(109,301:28855259,23925345:173670,78643,0 +(105,301:28691405,23925345:501378,78643,0 +(105,301:28855259,23925345:173670,78643,0 ) ) -(109,301:29192783,23925345:501378,78643,0 -(109,301:29356637,23925345:173670,78643,0 +(105,301:29192783,23925345:501378,78643,0 +(105,301:29356637,23925345:173670,78643,0 ) ) -(109,301:29694161,23925345:501378,78643,0 -(109,301:29858015,23925345:173670,78643,0 +(105,301:29694161,23925345:501378,78643,0 +(105,301:29858015,23925345:173670,78643,0 ) ) -(109,301:30195539,23925345:501378,78643,0 -(109,301:30359393,23925345:173670,78643,0 +(105,301:30195539,23925345:501378,78643,0 +(105,301:30359393,23925345:173670,78643,0 ) ) -(109,301:30696917,23925345:501378,78643,0 -(109,301:30860771,23925345:173670,78643,0 +(105,301:30696917,23925345:501378,78643,0 +(105,301:30860771,23925345:173670,78643,0 ) ) -(109,301:31403378,23925345:1179650,485622,11795 -k109,301:31403378,23925345:0 -k109,301:31536198,23925345:132820 +(105,301:31239538,23925345:1343490,485622,0 +k105,301:31239538,23925345:0 +k105,301:31387651,23925345:148113 ) -g109,301:30911858,23925345 -g109,301:32583028,23925345 +g105,301:30911858,23925345 +g105,301:32583028,23925345 ) -(109,303:6630773,24766833:25952256,505283,11795 -g109,303:11218293,24766833 -h109,303:11218293,24766833:2490370,0,0 -h109,303:13708663,24766833:0,0,0 -g109,303:9121143,24766833 -(109,303:9121143,24766833:2097150,485622,11795 -k109,303:11218293,24766833:554432 +(105,303:6630773,24766833:25952256,505283,11795 +g105,303:11218293,24766833 +h105,303:11218293,24766833:2490370,0,0 +h105,303:13708663,24766833:0,0,0 +g105,303:9121143,24766833 +(105,303:9121143,24766833:2097150,485622,11795 +k105,303:11218293,24766833:554432 ) -g109,303:12649599,24766833 -g109,303:14530482,24766833 -(109,303:14652821,24766833:501378,78643,0 -$109,303:14652821,24766833 -(109,303:14816675,24766833:173670,78643,0 +g105,303:12649599,24766833 +g105,303:14530482,24766833 +(105,303:14652821,24766833:501378,78643,0 +$105,303:14652821,24766833 +(105,303:14816675,24766833:173670,78643,0 ) -$109,303:15154199,24766833 +$105,303:15154199,24766833 ) -(109,303:15154199,24766833:501378,78643,0 -(109,303:15318053,24766833:173670,78643,0 +(105,303:15154199,24766833:501378,78643,0 +(105,303:15318053,24766833:173670,78643,0 ) ) -(109,303:15655577,24766833:501378,78643,0 -(109,303:15819431,24766833:173670,78643,0 +(105,303:15655577,24766833:501378,78643,0 +(105,303:15819431,24766833:173670,78643,0 ) ) -(109,303:16156955,24766833:501378,78643,0 -(109,303:16320809,24766833:173670,78643,0 +(105,303:16156955,24766833:501378,78643,0 +(105,303:16320809,24766833:173670,78643,0 ) ) -(109,303:16658333,24766833:501378,78643,0 -(109,303:16822187,24766833:173670,78643,0 +(105,303:16658333,24766833:501378,78643,0 +(105,303:16822187,24766833:173670,78643,0 ) ) -(109,303:17159711,24766833:501378,78643,0 -(109,303:17323565,24766833:173670,78643,0 +(105,303:17159711,24766833:501378,78643,0 +(105,303:17323565,24766833:173670,78643,0 ) ) -(109,303:17661089,24766833:501378,78643,0 -(109,303:17824943,24766833:173670,78643,0 +(105,303:17661089,24766833:501378,78643,0 +(105,303:17824943,24766833:173670,78643,0 ) ) -(109,303:18162467,24766833:501378,78643,0 -(109,303:18326321,24766833:173670,78643,0 +(105,303:18162467,24766833:501378,78643,0 +(105,303:18326321,24766833:173670,78643,0 ) ) -(109,303:18663845,24766833:501378,78643,0 -(109,303:18827699,24766833:173670,78643,0 +(105,303:18663845,24766833:501378,78643,0 +(105,303:18827699,24766833:173670,78643,0 ) ) -(109,303:19165223,24766833:501378,78643,0 -(109,303:19329077,24766833:173670,78643,0 +(105,303:19165223,24766833:501378,78643,0 +(105,303:19329077,24766833:173670,78643,0 ) ) -(109,303:19666601,24766833:501378,78643,0 -(109,303:19830455,24766833:173670,78643,0 +(105,303:19666601,24766833:501378,78643,0 +(105,303:19830455,24766833:173670,78643,0 ) ) -(109,303:20167979,24766833:501378,78643,0 -(109,303:20331833,24766833:173670,78643,0 +(105,303:20167979,24766833:501378,78643,0 +(105,303:20331833,24766833:173670,78643,0 ) ) -(109,303:20669357,24766833:501378,78643,0 -(109,303:20833211,24766833:173670,78643,0 +(105,303:20669357,24766833:501378,78643,0 +(105,303:20833211,24766833:173670,78643,0 ) ) -(109,303:21170735,24766833:501378,78643,0 -(109,303:21334589,24766833:173670,78643,0 +(105,303:21170735,24766833:501378,78643,0 +(105,303:21334589,24766833:173670,78643,0 ) ) -(109,303:21672113,24766833:501378,78643,0 -(109,303:21835967,24766833:173670,78643,0 +(105,303:21672113,24766833:501378,78643,0 +(105,303:21835967,24766833:173670,78643,0 ) ) -(109,303:22173491,24766833:501378,78643,0 -(109,303:22337345,24766833:173670,78643,0 +(105,303:22173491,24766833:501378,78643,0 +(105,303:22337345,24766833:173670,78643,0 ) ) -(109,303:22674869,24766833:501378,78643,0 -(109,303:22838723,24766833:173670,78643,0 +(105,303:22674869,24766833:501378,78643,0 +(105,303:22838723,24766833:173670,78643,0 ) ) -(109,303:23176247,24766833:501378,78643,0 -(109,303:23340101,24766833:173670,78643,0 +(105,303:23176247,24766833:501378,78643,0 +(105,303:23340101,24766833:173670,78643,0 ) ) -(109,303:23677625,24766833:501378,78643,0 -(109,303:23841479,24766833:173670,78643,0 +(105,303:23677625,24766833:501378,78643,0 +(105,303:23841479,24766833:173670,78643,0 ) ) -(109,303:24179003,24766833:501378,78643,0 -(109,303:24342857,24766833:173670,78643,0 +(105,303:24179003,24766833:501378,78643,0 +(105,303:24342857,24766833:173670,78643,0 ) ) -(109,303:24680381,24766833:501378,78643,0 -(109,303:24844235,24766833:173670,78643,0 +(105,303:24680381,24766833:501378,78643,0 +(105,303:24844235,24766833:173670,78643,0 ) ) -(109,303:25181759,24766833:501378,78643,0 -(109,303:25345613,24766833:173670,78643,0 +(105,303:25181759,24766833:501378,78643,0 +(105,303:25345613,24766833:173670,78643,0 ) ) -(109,303:25683137,24766833:501378,78643,0 -(109,303:25846991,24766833:173670,78643,0 +(105,303:25683137,24766833:501378,78643,0 +(105,303:25846991,24766833:173670,78643,0 ) ) -(109,303:26184515,24766833:501378,78643,0 -(109,303:26348369,24766833:173670,78643,0 +(105,303:26184515,24766833:501378,78643,0 +(105,303:26348369,24766833:173670,78643,0 ) ) -(109,303:26685893,24766833:501378,78643,0 -(109,303:26849747,24766833:173670,78643,0 +(105,303:26685893,24766833:501378,78643,0 +(105,303:26849747,24766833:173670,78643,0 ) ) -(109,303:27187271,24766833:501378,78643,0 -(109,303:27351125,24766833:173670,78643,0 +(105,303:27187271,24766833:501378,78643,0 +(105,303:27351125,24766833:173670,78643,0 ) ) -(109,303:27688649,24766833:501378,78643,0 -(109,303:27852503,24766833:173670,78643,0 +(105,303:27688649,24766833:501378,78643,0 +(105,303:27852503,24766833:173670,78643,0 ) ) -(109,303:28190027,24766833:501378,78643,0 -(109,303:28353881,24766833:173670,78643,0 +(105,303:28190027,24766833:501378,78643,0 +(105,303:28353881,24766833:173670,78643,0 ) ) -(109,303:28691405,24766833:501378,78643,0 -(109,303:28855259,24766833:173670,78643,0 +(105,303:28691405,24766833:501378,78643,0 +(105,303:28855259,24766833:173670,78643,0 ) ) -(109,303:29192783,24766833:501378,78643,0 -(109,303:29356637,24766833:173670,78643,0 +(105,303:29192783,24766833:501378,78643,0 +(105,303:29356637,24766833:173670,78643,0 ) ) -(109,303:29694161,24766833:501378,78643,0 -(109,303:29858015,24766833:173670,78643,0 +(105,303:29694161,24766833:501378,78643,0 +(105,303:29858015,24766833:173670,78643,0 ) ) -(109,303:30195539,24766833:501378,78643,0 -(109,303:30359393,24766833:173670,78643,0 +(105,303:30195539,24766833:501378,78643,0 +(105,303:30359393,24766833:173670,78643,0 ) ) -(109,303:30696917,24766833:501378,78643,0 -(109,303:30860771,24766833:173670,78643,0 +(105,303:30696917,24766833:501378,78643,0 +(105,303:30860771,24766833:173670,78643,0 ) ) -(109,303:31403378,24766833:1179650,485622,11795 -k109,303:31403378,24766833:0 -k109,303:31536198,24766833:132820 +(105,303:31239539,24766833:1343490,485622,11795 +k105,303:31239539,24766833:0 +k105,303:31387652,24766833:148113 ) -g109,303:30911858,24766833 -g109,303:32583028,24766833 +g105,303:30911859,24766833 +g105,303:32583029,24766833 ) -(109,305:6630773,25608321:25952256,485622,11795 -g109,305:9121143,25608321 -h109,305:9121143,25608321:983040,0,0 -h109,305:10104183,25608321:0,0,0 -g109,305:7613813,25608321 -(109,305:7613813,25608321:1507330,473825,11795 -k109,305:9121143,25608321:536742 +(105,305:6630773,25608321:25952256,485622,11795 +g105,305:9121143,25608321 +h105,305:9121143,25608321:983040,0,0 +h105,305:10104183,25608321:0,0,0 +g105,305:7613813,25608321 +(105,305:7613813,25608321:1507330,473825,11795 +k105,305:9121143,25608321:536742 ) -g109,305:12198713,25608321 -g109,305:12198713,25608321 -(109,305:12647309,25608321:501378,78643,0 -$109,305:12647309,25608321 -(109,305:12811163,25608321:173670,78643,0 +g105,305:12198713,25608321 +g105,305:12198713,25608321 +(105,305:12647309,25608321:501378,78643,0 +$105,305:12647309,25608321 +(105,305:12811163,25608321:173670,78643,0 ) -$109,305:13148687,25608321 +$105,305:13148687,25608321 ) -(109,305:13148687,25608321:501378,78643,0 -(109,305:13312541,25608321:173670,78643,0 +(105,305:13148687,25608321:501378,78643,0 +(105,305:13312541,25608321:173670,78643,0 ) ) -(109,305:13650065,25608321:501378,78643,0 -(109,305:13813919,25608321:173670,78643,0 +(105,305:13650065,25608321:501378,78643,0 +(105,305:13813919,25608321:173670,78643,0 ) ) -(109,305:14151443,25608321:501378,78643,0 -(109,305:14315297,25608321:173670,78643,0 +(105,305:14151443,25608321:501378,78643,0 +(105,305:14315297,25608321:173670,78643,0 ) ) -(109,305:14652821,25608321:501378,78643,0 -(109,305:14816675,25608321:173670,78643,0 +(105,305:14652821,25608321:501378,78643,0 +(105,305:14816675,25608321:173670,78643,0 ) ) -(109,305:15154199,25608321:501378,78643,0 -(109,305:15318053,25608321:173670,78643,0 +(105,305:15154199,25608321:501378,78643,0 +(105,305:15318053,25608321:173670,78643,0 ) ) -(109,305:15655577,25608321:501378,78643,0 -(109,305:15819431,25608321:173670,78643,0 +(105,305:15655577,25608321:501378,78643,0 +(105,305:15819431,25608321:173670,78643,0 ) ) -(109,305:16156955,25608321:501378,78643,0 -(109,305:16320809,25608321:173670,78643,0 +(105,305:16156955,25608321:501378,78643,0 +(105,305:16320809,25608321:173670,78643,0 ) ) -(109,305:16658333,25608321:501378,78643,0 -(109,305:16822187,25608321:173670,78643,0 +(105,305:16658333,25608321:501378,78643,0 +(105,305:16822187,25608321:173670,78643,0 ) ) -(109,305:17159711,25608321:501378,78643,0 -(109,305:17323565,25608321:173670,78643,0 +(105,305:17159711,25608321:501378,78643,0 +(105,305:17323565,25608321:173670,78643,0 ) ) -(109,305:17661089,25608321:501378,78643,0 -(109,305:17824943,25608321:173670,78643,0 +(105,305:17661089,25608321:501378,78643,0 +(105,305:17824943,25608321:173670,78643,0 ) ) -(109,305:18162467,25608321:501378,78643,0 -(109,305:18326321,25608321:173670,78643,0 +(105,305:18162467,25608321:501378,78643,0 +(105,305:18326321,25608321:173670,78643,0 ) ) -(109,305:18663845,25608321:501378,78643,0 -(109,305:18827699,25608321:173670,78643,0 +(105,305:18663845,25608321:501378,78643,0 +(105,305:18827699,25608321:173670,78643,0 ) ) -(109,305:19165223,25608321:501378,78643,0 -(109,305:19329077,25608321:173670,78643,0 +(105,305:19165223,25608321:501378,78643,0 +(105,305:19329077,25608321:173670,78643,0 ) ) -(109,305:19666601,25608321:501378,78643,0 -(109,305:19830455,25608321:173670,78643,0 +(105,305:19666601,25608321:501378,78643,0 +(105,305:19830455,25608321:173670,78643,0 ) ) -(109,305:20167979,25608321:501378,78643,0 -(109,305:20331833,25608321:173670,78643,0 +(105,305:20167979,25608321:501378,78643,0 +(105,305:20331833,25608321:173670,78643,0 ) ) -(109,305:20669357,25608321:501378,78643,0 -(109,305:20833211,25608321:173670,78643,0 +(105,305:20669357,25608321:501378,78643,0 +(105,305:20833211,25608321:173670,78643,0 ) ) -(109,305:21170735,25608321:501378,78643,0 -(109,305:21334589,25608321:173670,78643,0 +(105,305:21170735,25608321:501378,78643,0 +(105,305:21334589,25608321:173670,78643,0 ) ) -(109,305:21672113,25608321:501378,78643,0 -(109,305:21835967,25608321:173670,78643,0 +(105,305:21672113,25608321:501378,78643,0 +(105,305:21835967,25608321:173670,78643,0 ) ) -(109,305:22173491,25608321:501378,78643,0 -(109,305:22337345,25608321:173670,78643,0 +(105,305:22173491,25608321:501378,78643,0 +(105,305:22337345,25608321:173670,78643,0 ) ) -(109,305:22674869,25608321:501378,78643,0 -(109,305:22838723,25608321:173670,78643,0 +(105,305:22674869,25608321:501378,78643,0 +(105,305:22838723,25608321:173670,78643,0 ) ) -(109,305:23176247,25608321:501378,78643,0 -(109,305:23340101,25608321:173670,78643,0 +(105,305:23176247,25608321:501378,78643,0 +(105,305:23340101,25608321:173670,78643,0 ) ) -(109,305:23677625,25608321:501378,78643,0 -(109,305:23841479,25608321:173670,78643,0 +(105,305:23677625,25608321:501378,78643,0 +(105,305:23841479,25608321:173670,78643,0 ) ) -(109,305:24179003,25608321:501378,78643,0 -(109,305:24342857,25608321:173670,78643,0 +(105,305:24179003,25608321:501378,78643,0 +(105,305:24342857,25608321:173670,78643,0 ) ) -(109,305:24680381,25608321:501378,78643,0 -(109,305:24844235,25608321:173670,78643,0 +(105,305:24680381,25608321:501378,78643,0 +(105,305:24844235,25608321:173670,78643,0 ) ) -(109,305:25181759,25608321:501378,78643,0 -(109,305:25345613,25608321:173670,78643,0 +(105,305:25181759,25608321:501378,78643,0 +(105,305:25345613,25608321:173670,78643,0 ) ) -(109,305:25683137,25608321:501378,78643,0 -(109,305:25846991,25608321:173670,78643,0 +(105,305:25683137,25608321:501378,78643,0 +(105,305:25846991,25608321:173670,78643,0 ) ) -(109,305:26184515,25608321:501378,78643,0 -(109,305:26348369,25608321:173670,78643,0 +(105,305:26184515,25608321:501378,78643,0 +(105,305:26348369,25608321:173670,78643,0 ) ) -(109,305:26685893,25608321:501378,78643,0 -(109,305:26849747,25608321:173670,78643,0 +(105,305:26685893,25608321:501378,78643,0 +(105,305:26849747,25608321:173670,78643,0 ) ) -(109,305:27187271,25608321:501378,78643,0 -(109,305:27351125,25608321:173670,78643,0 +(105,305:27187271,25608321:501378,78643,0 +(105,305:27351125,25608321:173670,78643,0 ) ) -(109,305:27688649,25608321:501378,78643,0 -(109,305:27852503,25608321:173670,78643,0 +(105,305:27688649,25608321:501378,78643,0 +(105,305:27852503,25608321:173670,78643,0 ) ) -(109,305:28190027,25608321:501378,78643,0 -(109,305:28353881,25608321:173670,78643,0 +(105,305:28190027,25608321:501378,78643,0 +(105,305:28353881,25608321:173670,78643,0 ) ) -(109,305:28691405,25608321:501378,78643,0 -(109,305:28855259,25608321:173670,78643,0 +(105,305:28691405,25608321:501378,78643,0 +(105,305:28855259,25608321:173670,78643,0 ) ) -(109,305:29192783,25608321:501378,78643,0 -(109,305:29356637,25608321:173670,78643,0 +(105,305:29192783,25608321:501378,78643,0 +(105,305:29356637,25608321:173670,78643,0 ) ) -(109,305:29694161,25608321:501378,78643,0 -(109,305:29858015,25608321:173670,78643,0 +(105,305:29694161,25608321:501378,78643,0 +(105,305:29858015,25608321:173670,78643,0 ) ) -(109,305:30195539,25608321:501378,78643,0 -(109,305:30359393,25608321:173670,78643,0 +(105,305:30195539,25608321:501378,78643,0 +(105,305:30359393,25608321:173670,78643,0 ) ) -(109,305:30696917,25608321:501378,78643,0 -(109,305:30860771,25608321:173670,78643,0 +(105,305:30696917,25608321:501378,78643,0 +(105,305:30860771,25608321:173670,78643,0 ) ) -(109,305:31403379,25608321:1179650,485622,11795 -k109,305:31403379,25608321:0 -k109,305:31536199,25608321:132820 +(105,305:31239539,25608321:1343490,485622,11795 +k105,305:31239539,25608321:0 +k105,305:31387652,25608321:148113 ) -g109,305:30911859,25608321 -g109,305:32583029,25608321 +g105,305:30911859,25608321 +g105,305:32583029,25608321 ) -(109,307:6630773,26449809:25952256,485622,11795 -g109,307:11218293,26449809 -h109,307:11218293,26449809:2490370,0,0 -h109,307:13708663,26449809:0,0,0 -g109,307:9121143,26449809 -(109,307:9121143,26449809:2097150,477757,11795 -k109,307:11218293,26449809:554432 +(105,307:6630773,26449809:25952256,485622,11795 +g105,307:11218293,26449809 +h105,307:11218293,26449809:2490370,0,0 +h105,307:13708663,26449809:0,0,0 +g105,307:9121143,26449809 +(105,307:9121143,26449809:2097150,477757,11795 +k105,307:11218293,26449809:554432 ) -g109,307:14338462,26449809 -(109,307:14652821,26449809:501378,78643,0 -$109,307:14652821,26449809 -(109,307:14816675,26449809:173670,78643,0 +g105,307:14338462,26449809 +(105,307:14652821,26449809:501378,78643,0 +$105,307:14652821,26449809 +(105,307:14816675,26449809:173670,78643,0 ) -$109,307:15154199,26449809 +$105,307:15154199,26449809 ) -(109,307:15154199,26449809:501378,78643,0 -(109,307:15318053,26449809:173670,78643,0 +(105,307:15154199,26449809:501378,78643,0 +(105,307:15318053,26449809:173670,78643,0 ) ) -(109,307:15655577,26449809:501378,78643,0 -(109,307:15819431,26449809:173670,78643,0 +(105,307:15655577,26449809:501378,78643,0 +(105,307:15819431,26449809:173670,78643,0 ) ) -(109,307:16156955,26449809:501378,78643,0 -(109,307:16320809,26449809:173670,78643,0 +(105,307:16156955,26449809:501378,78643,0 +(105,307:16320809,26449809:173670,78643,0 ) ) -(109,307:16658333,26449809:501378,78643,0 -(109,307:16822187,26449809:173670,78643,0 +(105,307:16658333,26449809:501378,78643,0 +(105,307:16822187,26449809:173670,78643,0 ) ) -(109,307:17159711,26449809:501378,78643,0 -(109,307:17323565,26449809:173670,78643,0 +(105,307:17159711,26449809:501378,78643,0 +(105,307:17323565,26449809:173670,78643,0 ) ) -(109,307:17661089,26449809:501378,78643,0 -(109,307:17824943,26449809:173670,78643,0 +(105,307:17661089,26449809:501378,78643,0 +(105,307:17824943,26449809:173670,78643,0 ) ) -(109,307:18162467,26449809:501378,78643,0 -(109,307:18326321,26449809:173670,78643,0 +(105,307:18162467,26449809:501378,78643,0 +(105,307:18326321,26449809:173670,78643,0 ) ) -(109,307:18663845,26449809:501378,78643,0 -(109,307:18827699,26449809:173670,78643,0 +(105,307:18663845,26449809:501378,78643,0 +(105,307:18827699,26449809:173670,78643,0 ) ) -(109,307:19165223,26449809:501378,78643,0 -(109,307:19329077,26449809:173670,78643,0 +(105,307:19165223,26449809:501378,78643,0 +(105,307:19329077,26449809:173670,78643,0 ) ) -(109,307:19666601,26449809:501378,78643,0 -(109,307:19830455,26449809:173670,78643,0 +(105,307:19666601,26449809:501378,78643,0 +(105,307:19830455,26449809:173670,78643,0 ) ) -(109,307:20167979,26449809:501378,78643,0 -(109,307:20331833,26449809:173670,78643,0 +(105,307:20167979,26449809:501378,78643,0 +(105,307:20331833,26449809:173670,78643,0 ) ) -(109,307:20669357,26449809:501378,78643,0 -(109,307:20833211,26449809:173670,78643,0 +(105,307:20669357,26449809:501378,78643,0 +(105,307:20833211,26449809:173670,78643,0 ) ) -(109,307:21170735,26449809:501378,78643,0 -(109,307:21334589,26449809:173670,78643,0 +(105,307:21170735,26449809:501378,78643,0 +(105,307:21334589,26449809:173670,78643,0 ) ) -(109,307:21672113,26449809:501378,78643,0 -(109,307:21835967,26449809:173670,78643,0 +(105,307:21672113,26449809:501378,78643,0 +(105,307:21835967,26449809:173670,78643,0 ) ) -(109,307:22173491,26449809:501378,78643,0 -(109,307:22337345,26449809:173670,78643,0 +(105,307:22173491,26449809:501378,78643,0 +(105,307:22337345,26449809:173670,78643,0 ) ) -(109,307:22674869,26449809:501378,78643,0 -(109,307:22838723,26449809:173670,78643,0 +(105,307:22674869,26449809:501378,78643,0 +(105,307:22838723,26449809:173670,78643,0 ) ) -(109,307:23176247,26449809:501378,78643,0 -(109,307:23340101,26449809:173670,78643,0 +(105,307:23176247,26449809:501378,78643,0 +(105,307:23340101,26449809:173670,78643,0 ) ) -(109,307:23677625,26449809:501378,78643,0 -(109,307:23841479,26449809:173670,78643,0 +(105,307:23677625,26449809:501378,78643,0 +(105,307:23841479,26449809:173670,78643,0 ) ) -(109,307:24179003,26449809:501378,78643,0 -(109,307:24342857,26449809:173670,78643,0 +(105,307:24179003,26449809:501378,78643,0 +(105,307:24342857,26449809:173670,78643,0 ) ) -(109,307:24680381,26449809:501378,78643,0 -(109,307:24844235,26449809:173670,78643,0 +(105,307:24680381,26449809:501378,78643,0 +(105,307:24844235,26449809:173670,78643,0 ) ) -(109,307:25181759,26449809:501378,78643,0 -(109,307:25345613,26449809:173670,78643,0 +(105,307:25181759,26449809:501378,78643,0 +(105,307:25345613,26449809:173670,78643,0 ) ) -(109,307:25683137,26449809:501378,78643,0 -(109,307:25846991,26449809:173670,78643,0 +(105,307:25683137,26449809:501378,78643,0 +(105,307:25846991,26449809:173670,78643,0 ) ) -(109,307:26184515,26449809:501378,78643,0 -(109,307:26348369,26449809:173670,78643,0 +(105,307:26184515,26449809:501378,78643,0 +(105,307:26348369,26449809:173670,78643,0 ) ) -(109,307:26685893,26449809:501378,78643,0 -(109,307:26849747,26449809:173670,78643,0 +(105,307:26685893,26449809:501378,78643,0 +(105,307:26849747,26449809:173670,78643,0 ) ) -(109,307:27187271,26449809:501378,78643,0 -(109,307:27351125,26449809:173670,78643,0 +(105,307:27187271,26449809:501378,78643,0 +(105,307:27351125,26449809:173670,78643,0 ) ) -(109,307:27688649,26449809:501378,78643,0 -(109,307:27852503,26449809:173670,78643,0 +(105,307:27688649,26449809:501378,78643,0 +(105,307:27852503,26449809:173670,78643,0 ) ) -(109,307:28190027,26449809:501378,78643,0 -(109,307:28353881,26449809:173670,78643,0 +(105,307:28190027,26449809:501378,78643,0 +(105,307:28353881,26449809:173670,78643,0 ) ) -(109,307:28691405,26449809:501378,78643,0 -(109,307:28855259,26449809:173670,78643,0 +(105,307:28691405,26449809:501378,78643,0 +(105,307:28855259,26449809:173670,78643,0 ) ) -(109,307:29192783,26449809:501378,78643,0 -(109,307:29356637,26449809:173670,78643,0 +(105,307:29192783,26449809:501378,78643,0 +(105,307:29356637,26449809:173670,78643,0 ) ) -(109,307:29694161,26449809:501378,78643,0 -(109,307:29858015,26449809:173670,78643,0 +(105,307:29694161,26449809:501378,78643,0 +(105,307:29858015,26449809:173670,78643,0 ) ) -(109,307:30195539,26449809:501378,78643,0 -(109,307:30359393,26449809:173670,78643,0 +(105,307:30195539,26449809:501378,78643,0 +(105,307:30359393,26449809:173670,78643,0 ) ) -(109,307:30696917,26449809:501378,78643,0 -(109,307:30860771,26449809:173670,78643,0 +(105,307:30696917,26449809:501378,78643,0 +(105,307:30860771,26449809:173670,78643,0 ) ) -(109,307:31403378,26449809:1179650,485622,11795 -k109,307:31403378,26449809:0 -k109,307:31536198,26449809:132820 +(105,307:31239538,26449809:1343490,485622,11795 +k105,307:31239538,26449809:0 +k105,307:31387651,26449809:148113 ) -g109,307:30911858,26449809 -g109,307:32583028,26449809 +g105,307:30911858,26449809 +g105,307:32583028,26449809 ) -(109,309:6630773,27291297:25952256,485622,11795 -g109,309:11218293,27291297 -h109,309:11218293,27291297:2490370,0,0 -h109,309:13708663,27291297:0,0,0 -g109,309:9121143,27291297 -(109,309:9121143,27291297:2097150,485622,11795 -k109,309:11218293,27291297:554432 +(105,309:6630773,27291297:25952256,485622,11795 +g105,309:11218293,27291297 +h105,309:11218293,27291297:2490370,0,0 +h105,309:13708663,27291297:0,0,0 +g105,309:9121143,27291297 +(105,309:9121143,27291297:2097150,485622,11795 +k105,309:11218293,27291297:554432 ) -g109,309:14751339,27291297 -(109,309:15154199,27291297:501378,78643,0 -$109,309:15154199,27291297 -(109,309:15318053,27291297:173670,78643,0 +g105,309:14751339,27291297 +(105,309:15154199,27291297:501378,78643,0 +$105,309:15154199,27291297 +(105,309:15318053,27291297:173670,78643,0 ) -$109,309:15655577,27291297 +$105,309:15655577,27291297 ) -(109,309:15655577,27291297:501378,78643,0 -(109,309:15819431,27291297:173670,78643,0 +(105,309:15655577,27291297:501378,78643,0 +(105,309:15819431,27291297:173670,78643,0 ) ) -(109,309:16156955,27291297:501378,78643,0 -(109,309:16320809,27291297:173670,78643,0 +(105,309:16156955,27291297:501378,78643,0 +(105,309:16320809,27291297:173670,78643,0 ) ) -(109,309:16658333,27291297:501378,78643,0 -(109,309:16822187,27291297:173670,78643,0 +(105,309:16658333,27291297:501378,78643,0 +(105,309:16822187,27291297:173670,78643,0 ) ) -(109,309:17159711,27291297:501378,78643,0 -(109,309:17323565,27291297:173670,78643,0 +(105,309:17159711,27291297:501378,78643,0 +(105,309:17323565,27291297:173670,78643,0 ) ) -(109,309:17661089,27291297:501378,78643,0 -(109,309:17824943,27291297:173670,78643,0 +(105,309:17661089,27291297:501378,78643,0 +(105,309:17824943,27291297:173670,78643,0 ) ) -(109,309:18162467,27291297:501378,78643,0 -(109,309:18326321,27291297:173670,78643,0 +(105,309:18162467,27291297:501378,78643,0 +(105,309:18326321,27291297:173670,78643,0 ) ) -(109,309:18663845,27291297:501378,78643,0 -(109,309:18827699,27291297:173670,78643,0 +(105,309:18663845,27291297:501378,78643,0 +(105,309:18827699,27291297:173670,78643,0 ) ) -(109,309:19165223,27291297:501378,78643,0 -(109,309:19329077,27291297:173670,78643,0 +(105,309:19165223,27291297:501378,78643,0 +(105,309:19329077,27291297:173670,78643,0 ) ) -(109,309:19666601,27291297:501378,78643,0 -(109,309:19830455,27291297:173670,78643,0 +(105,309:19666601,27291297:501378,78643,0 +(105,309:19830455,27291297:173670,78643,0 ) ) -(109,309:20167979,27291297:501378,78643,0 -(109,309:20331833,27291297:173670,78643,0 +(105,309:20167979,27291297:501378,78643,0 +(105,309:20331833,27291297:173670,78643,0 ) ) -(109,309:20669357,27291297:501378,78643,0 -(109,309:20833211,27291297:173670,78643,0 +(105,309:20669357,27291297:501378,78643,0 +(105,309:20833211,27291297:173670,78643,0 ) ) -(109,309:21170735,27291297:501378,78643,0 -(109,309:21334589,27291297:173670,78643,0 +(105,309:21170735,27291297:501378,78643,0 +(105,309:21334589,27291297:173670,78643,0 ) ) -(109,309:21672113,27291297:501378,78643,0 -(109,309:21835967,27291297:173670,78643,0 +(105,309:21672113,27291297:501378,78643,0 +(105,309:21835967,27291297:173670,78643,0 ) ) -(109,309:22173491,27291297:501378,78643,0 -(109,309:22337345,27291297:173670,78643,0 +(105,309:22173491,27291297:501378,78643,0 +(105,309:22337345,27291297:173670,78643,0 ) ) -(109,309:22674869,27291297:501378,78643,0 -(109,309:22838723,27291297:173670,78643,0 +(105,309:22674869,27291297:501378,78643,0 +(105,309:22838723,27291297:173670,78643,0 ) ) -(109,309:23176247,27291297:501378,78643,0 -(109,309:23340101,27291297:173670,78643,0 +(105,309:23176247,27291297:501378,78643,0 +(105,309:23340101,27291297:173670,78643,0 ) ) -(109,309:23677625,27291297:501378,78643,0 -(109,309:23841479,27291297:173670,78643,0 +(105,309:23677625,27291297:501378,78643,0 +(105,309:23841479,27291297:173670,78643,0 ) ) -(109,309:24179003,27291297:501378,78643,0 -(109,309:24342857,27291297:173670,78643,0 +(105,309:24179003,27291297:501378,78643,0 +(105,309:24342857,27291297:173670,78643,0 ) ) -(109,309:24680381,27291297:501378,78643,0 -(109,309:24844235,27291297:173670,78643,0 +(105,309:24680381,27291297:501378,78643,0 +(105,309:24844235,27291297:173670,78643,0 ) ) -(109,309:25181759,27291297:501378,78643,0 -(109,309:25345613,27291297:173670,78643,0 +(105,309:25181759,27291297:501378,78643,0 +(105,309:25345613,27291297:173670,78643,0 ) ) -(109,309:25683137,27291297:501378,78643,0 -(109,309:25846991,27291297:173670,78643,0 +(105,309:25683137,27291297:501378,78643,0 +(105,309:25846991,27291297:173670,78643,0 ) ) -(109,309:26184515,27291297:501378,78643,0 -(109,309:26348369,27291297:173670,78643,0 +(105,309:26184515,27291297:501378,78643,0 +(105,309:26348369,27291297:173670,78643,0 ) ) -(109,309:26685893,27291297:501378,78643,0 -(109,309:26849747,27291297:173670,78643,0 +(105,309:26685893,27291297:501378,78643,0 +(105,309:26849747,27291297:173670,78643,0 ) ) -(109,309:27187271,27291297:501378,78643,0 -(109,309:27351125,27291297:173670,78643,0 +(105,309:27187271,27291297:501378,78643,0 +(105,309:27351125,27291297:173670,78643,0 ) ) -(109,309:27688649,27291297:501378,78643,0 -(109,309:27852503,27291297:173670,78643,0 +(105,309:27688649,27291297:501378,78643,0 +(105,309:27852503,27291297:173670,78643,0 ) ) -(109,309:28190027,27291297:501378,78643,0 -(109,309:28353881,27291297:173670,78643,0 +(105,309:28190027,27291297:501378,78643,0 +(105,309:28353881,27291297:173670,78643,0 ) ) -(109,309:28691405,27291297:501378,78643,0 -(109,309:28855259,27291297:173670,78643,0 +(105,309:28691405,27291297:501378,78643,0 +(105,309:28855259,27291297:173670,78643,0 ) ) -(109,309:29192783,27291297:501378,78643,0 -(109,309:29356637,27291297:173670,78643,0 +(105,309:29192783,27291297:501378,78643,0 +(105,309:29356637,27291297:173670,78643,0 ) ) -(109,309:29694161,27291297:501378,78643,0 -(109,309:29858015,27291297:173670,78643,0 +(105,309:29694161,27291297:501378,78643,0 +(105,309:29858015,27291297:173670,78643,0 ) ) -(109,309:30195539,27291297:501378,78643,0 -(109,309:30359393,27291297:173670,78643,0 +(105,309:30195539,27291297:501378,78643,0 +(105,309:30359393,27291297:173670,78643,0 ) ) -(109,309:30696917,27291297:501378,78643,0 -(109,309:30860771,27291297:173670,78643,0 +(105,309:30696917,27291297:501378,78643,0 +(105,309:30860771,27291297:173670,78643,0 ) ) -(109,309:31403379,27291297:1179650,485622,11795 -k109,309:31403379,27291297:0 -k109,309:31536199,27291297:132820 +(105,309:31239539,27291297:1343490,485622,11795 +k105,309:31239539,27291297:0 +k105,309:31387652,27291297:148113 ) -g109,309:30911859,27291297 -g109,309:32583029,27291297 +g105,309:30911859,27291297 +g105,309:32583029,27291297 ) -(109,311:6630773,28132785:25952256,505283,11795 -g109,311:11218293,28132785 -h109,311:11218293,28132785:2490370,0,0 -h109,311:13708663,28132785:0,0,0 -g109,311:9121143,28132785 -(109,311:9121143,28132785:2097150,485622,11795 -k109,311:11218293,28132785:554432 +(105,311:6630773,28132785:25952256,505283,11795 +g105,311:11218293,28132785 +h105,311:11218293,28132785:2490370,0,0 +h105,311:13708663,28132785:0,0,0 +g105,311:9121143,28132785 +(105,311:9121143,28132785:2097150,485622,11795 +k105,311:11218293,28132785:554432 ) -g109,311:14819496,28132785 -g109,311:16210170,28132785 -g109,311:18528178,28132785 -(109,311:18663845,28132785:501378,78643,0 -$109,311:18663845,28132785 -(109,311:18827699,28132785:173670,78643,0 +g105,311:14819496,28132785 +g105,311:16210170,28132785 +g105,311:18528178,28132785 +(105,311:18663845,28132785:501378,78643,0 +$105,311:18663845,28132785 +(105,311:18827699,28132785:173670,78643,0 ) -$109,311:19165223,28132785 +$105,311:19165223,28132785 ) -(109,311:19165223,28132785:501378,78643,0 -(109,311:19329077,28132785:173670,78643,0 +(105,311:19165223,28132785:501378,78643,0 +(105,311:19329077,28132785:173670,78643,0 ) ) -(109,311:19666601,28132785:501378,78643,0 -(109,311:19830455,28132785:173670,78643,0 +(105,311:19666601,28132785:501378,78643,0 +(105,311:19830455,28132785:173670,78643,0 ) ) -(109,311:20167979,28132785:501378,78643,0 -(109,311:20331833,28132785:173670,78643,0 +(105,311:20167979,28132785:501378,78643,0 +(105,311:20331833,28132785:173670,78643,0 ) ) -(109,311:20669357,28132785:501378,78643,0 -(109,311:20833211,28132785:173670,78643,0 +(105,311:20669357,28132785:501378,78643,0 +(105,311:20833211,28132785:173670,78643,0 ) ) -(109,311:21170735,28132785:501378,78643,0 -(109,311:21334589,28132785:173670,78643,0 +(105,311:21170735,28132785:501378,78643,0 +(105,311:21334589,28132785:173670,78643,0 ) ) -(109,311:21672113,28132785:501378,78643,0 -(109,311:21835967,28132785:173670,78643,0 +(105,311:21672113,28132785:501378,78643,0 +(105,311:21835967,28132785:173670,78643,0 ) ) -(109,311:22173491,28132785:501378,78643,0 -(109,311:22337345,28132785:173670,78643,0 +(105,311:22173491,28132785:501378,78643,0 +(105,311:22337345,28132785:173670,78643,0 ) ) -(109,311:22674869,28132785:501378,78643,0 -(109,311:22838723,28132785:173670,78643,0 +(105,311:22674869,28132785:501378,78643,0 +(105,311:22838723,28132785:173670,78643,0 ) ) -(109,311:23176247,28132785:501378,78643,0 -(109,311:23340101,28132785:173670,78643,0 +(105,311:23176247,28132785:501378,78643,0 +(105,311:23340101,28132785:173670,78643,0 ) ) -(109,311:23677625,28132785:501378,78643,0 -(109,311:23841479,28132785:173670,78643,0 +(105,311:23677625,28132785:501378,78643,0 +(105,311:23841479,28132785:173670,78643,0 ) ) -(109,311:24179003,28132785:501378,78643,0 -(109,311:24342857,28132785:173670,78643,0 +(105,311:24179003,28132785:501378,78643,0 +(105,311:24342857,28132785:173670,78643,0 ) ) -(109,311:24680381,28132785:501378,78643,0 -(109,311:24844235,28132785:173670,78643,0 +(105,311:24680381,28132785:501378,78643,0 +(105,311:24844235,28132785:173670,78643,0 ) ) -(109,311:25181759,28132785:501378,78643,0 -(109,311:25345613,28132785:173670,78643,0 +(105,311:25181759,28132785:501378,78643,0 +(105,311:25345613,28132785:173670,78643,0 ) ) -(109,311:25683137,28132785:501378,78643,0 -(109,311:25846991,28132785:173670,78643,0 +(105,311:25683137,28132785:501378,78643,0 +(105,311:25846991,28132785:173670,78643,0 ) ) -(109,311:26184515,28132785:501378,78643,0 -(109,311:26348369,28132785:173670,78643,0 +(105,311:26184515,28132785:501378,78643,0 +(105,311:26348369,28132785:173670,78643,0 ) ) -(109,311:26685893,28132785:501378,78643,0 -(109,311:26849747,28132785:173670,78643,0 +(105,311:26685893,28132785:501378,78643,0 +(105,311:26849747,28132785:173670,78643,0 ) ) -(109,311:27187271,28132785:501378,78643,0 -(109,311:27351125,28132785:173670,78643,0 +(105,311:27187271,28132785:501378,78643,0 +(105,311:27351125,28132785:173670,78643,0 ) ) -(109,311:27688649,28132785:501378,78643,0 -(109,311:27852503,28132785:173670,78643,0 +(105,311:27688649,28132785:501378,78643,0 +(105,311:27852503,28132785:173670,78643,0 ) ) -(109,311:28190027,28132785:501378,78643,0 -(109,311:28353881,28132785:173670,78643,0 +(105,311:28190027,28132785:501378,78643,0 +(105,311:28353881,28132785:173670,78643,0 ) ) -(109,311:28691405,28132785:501378,78643,0 -(109,311:28855259,28132785:173670,78643,0 +(105,311:28691405,28132785:501378,78643,0 +(105,311:28855259,28132785:173670,78643,0 ) ) -(109,311:29192783,28132785:501378,78643,0 -(109,311:29356637,28132785:173670,78643,0 +(105,311:29192783,28132785:501378,78643,0 +(105,311:29356637,28132785:173670,78643,0 ) ) -(109,311:29694161,28132785:501378,78643,0 -(109,311:29858015,28132785:173670,78643,0 +(105,311:29694161,28132785:501378,78643,0 +(105,311:29858015,28132785:173670,78643,0 ) ) -(109,311:30195539,28132785:501378,78643,0 -(109,311:30359393,28132785:173670,78643,0 +(105,311:30195539,28132785:501378,78643,0 +(105,311:30359393,28132785:173670,78643,0 ) ) -(109,311:30696917,28132785:501378,78643,0 -(109,311:30860771,28132785:173670,78643,0 +(105,311:30696917,28132785:501378,78643,0 +(105,311:30860771,28132785:173670,78643,0 ) ) -(109,311:31403379,28132785:1179650,485622,11795 -k109,311:31403379,28132785:0 -k109,311:31536199,28132785:132820 +(105,311:31239539,28132785:1343490,485622,0 +k105,311:31239539,28132785:0 +k105,311:31387652,28132785:148113 ) -g109,311:30911859,28132785 -g109,311:32583029,28132785 +g105,311:30911859,28132785 +g105,311:32583029,28132785 ) -(109,313:6630773,28974273:25952256,505283,126483 -g109,313:11218293,28974273 -h109,313:11218293,28974273:2490370,0,0 -h109,313:13708663,28974273:0,0,0 -g109,313:9121143,28974273 -(109,313:9121143,28974273:2097150,481690,11795 -k109,313:11218293,28974273:554432 +(105,313:6630773,28974273:25952256,505283,126483 +g105,313:11218293,28974273 +h105,313:11218293,28974273:2490370,0,0 +h105,313:13708663,28974273:0,0,0 +g105,313:9121143,28974273 +(105,313:9121143,28974273:2097150,481690,11795 +k105,313:11218293,28974273:554432 ) -g109,313:15206158,28974273 -g109,313:16596832,28974273 -g109,313:18741825,28974273 -(109,313:19165223,28974273:501378,78643,0 -$109,313:19165223,28974273 -(109,313:19329077,28974273:173670,78643,0 +g105,313:15206158,28974273 +g105,313:16596832,28974273 +g105,313:18741825,28974273 +(105,313:19165223,28974273:501378,78643,0 +$105,313:19165223,28974273 +(105,313:19329077,28974273:173670,78643,0 ) -$109,313:19666601,28974273 +$105,313:19666601,28974273 ) -(109,313:19666601,28974273:501378,78643,0 -(109,313:19830455,28974273:173670,78643,0 +(105,313:19666601,28974273:501378,78643,0 +(105,313:19830455,28974273:173670,78643,0 ) ) -(109,313:20167979,28974273:501378,78643,0 -(109,313:20331833,28974273:173670,78643,0 +(105,313:20167979,28974273:501378,78643,0 +(105,313:20331833,28974273:173670,78643,0 ) ) -(109,313:20669357,28974273:501378,78643,0 -(109,313:20833211,28974273:173670,78643,0 +(105,313:20669357,28974273:501378,78643,0 +(105,313:20833211,28974273:173670,78643,0 ) ) -(109,313:21170735,28974273:501378,78643,0 -(109,313:21334589,28974273:173670,78643,0 +(105,313:21170735,28974273:501378,78643,0 +(105,313:21334589,28974273:173670,78643,0 ) ) -(109,313:21672113,28974273:501378,78643,0 -(109,313:21835967,28974273:173670,78643,0 +(105,313:21672113,28974273:501378,78643,0 +(105,313:21835967,28974273:173670,78643,0 ) ) -(109,313:22173491,28974273:501378,78643,0 -(109,313:22337345,28974273:173670,78643,0 +(105,313:22173491,28974273:501378,78643,0 +(105,313:22337345,28974273:173670,78643,0 ) ) -(109,313:22674869,28974273:501378,78643,0 -(109,313:22838723,28974273:173670,78643,0 +(105,313:22674869,28974273:501378,78643,0 +(105,313:22838723,28974273:173670,78643,0 ) ) -(109,313:23176247,28974273:501378,78643,0 -(109,313:23340101,28974273:173670,78643,0 +(105,313:23176247,28974273:501378,78643,0 +(105,313:23340101,28974273:173670,78643,0 ) ) -(109,313:23677625,28974273:501378,78643,0 -(109,313:23841479,28974273:173670,78643,0 +(105,313:23677625,28974273:501378,78643,0 +(105,313:23841479,28974273:173670,78643,0 ) ) -(109,313:24179003,28974273:501378,78643,0 -(109,313:24342857,28974273:173670,78643,0 +(105,313:24179003,28974273:501378,78643,0 +(105,313:24342857,28974273:173670,78643,0 ) ) -(109,313:24680381,28974273:501378,78643,0 -(109,313:24844235,28974273:173670,78643,0 +(105,313:24680381,28974273:501378,78643,0 +(105,313:24844235,28974273:173670,78643,0 ) ) -(109,313:25181759,28974273:501378,78643,0 -(109,313:25345613,28974273:173670,78643,0 +(105,313:25181759,28974273:501378,78643,0 +(105,313:25345613,28974273:173670,78643,0 ) ) -(109,313:25683137,28974273:501378,78643,0 -(109,313:25846991,28974273:173670,78643,0 +(105,313:25683137,28974273:501378,78643,0 +(105,313:25846991,28974273:173670,78643,0 ) ) -(109,313:26184515,28974273:501378,78643,0 -(109,313:26348369,28974273:173670,78643,0 +(105,313:26184515,28974273:501378,78643,0 +(105,313:26348369,28974273:173670,78643,0 ) ) -(109,313:26685893,28974273:501378,78643,0 -(109,313:26849747,28974273:173670,78643,0 +(105,313:26685893,28974273:501378,78643,0 +(105,313:26849747,28974273:173670,78643,0 ) ) -(109,313:27187271,28974273:501378,78643,0 -(109,313:27351125,28974273:173670,78643,0 +(105,313:27187271,28974273:501378,78643,0 +(105,313:27351125,28974273:173670,78643,0 ) ) -(109,313:27688649,28974273:501378,78643,0 -(109,313:27852503,28974273:173670,78643,0 +(105,313:27688649,28974273:501378,78643,0 +(105,313:27852503,28974273:173670,78643,0 ) ) -(109,313:28190027,28974273:501378,78643,0 -(109,313:28353881,28974273:173670,78643,0 +(105,313:28190027,28974273:501378,78643,0 +(105,313:28353881,28974273:173670,78643,0 ) ) -(109,313:28691405,28974273:501378,78643,0 -(109,313:28855259,28974273:173670,78643,0 +(105,313:28691405,28974273:501378,78643,0 +(105,313:28855259,28974273:173670,78643,0 ) ) -(109,313:29192783,28974273:501378,78643,0 -(109,313:29356637,28974273:173670,78643,0 +(105,313:29192783,28974273:501378,78643,0 +(105,313:29356637,28974273:173670,78643,0 ) ) -(109,313:29694161,28974273:501378,78643,0 -(109,313:29858015,28974273:173670,78643,0 +(105,313:29694161,28974273:501378,78643,0 +(105,313:29858015,28974273:173670,78643,0 ) ) -(109,313:30195539,28974273:501378,78643,0 -(109,313:30359393,28974273:173670,78643,0 +(105,313:30195539,28974273:501378,78643,0 +(105,313:30359393,28974273:173670,78643,0 ) ) -(109,313:30696917,28974273:501378,78643,0 -(109,313:30860771,28974273:173670,78643,0 +(105,313:30696917,28974273:501378,78643,0 +(105,313:30860771,28974273:173670,78643,0 ) ) -(109,313:31403379,28974273:1179650,485622,11795 -k109,313:31403379,28974273:0 -k109,313:31536199,28974273:132820 +(105,313:31239539,28974273:1343490,485622,11795 +k105,313:31239539,28974273:0 +k105,313:31387652,28974273:148113 ) -g109,313:30911859,28974273 -g109,313:32583029,28974273 +g105,313:30911859,28974273 +g105,313:32583029,28974273 ) -(109,315:6630773,29815761:25952256,513147,126483 -g109,315:11218293,29815761 -h109,315:11218293,29815761:2490370,0,0 -h109,315:13708663,29815761:0,0,0 -g109,315:9121143,29815761 -(109,315:9121143,29815761:2097150,473825,11795 -k109,315:11218293,29815761:554432 +(105,315:6630773,29815761:25952256,513147,126483 +g105,315:11218293,29815761 +h105,315:11218293,29815761:2490370,0,0 +h105,315:13708663,29815761:0,0,0 +g105,315:9121143,29815761 +(105,315:9121143,29815761:2097150,473825,11795 +k105,315:11218293,29815761:554432 ) -g109,315:13832524,29815761 -g109,315:16858321,29815761 -(109,315:17159711,29815761:501378,78643,0 -$109,315:17159711,29815761 -(109,315:17323565,29815761:173670,78643,0 +g105,315:13832524,29815761 +g105,315:16858321,29815761 +(105,315:17159711,29815761:501378,78643,0 +$105,315:17159711,29815761 +(105,315:17323565,29815761:173670,78643,0 ) -$109,315:17661089,29815761 +$105,315:17661089,29815761 ) -(109,315:17661089,29815761:501378,78643,0 -(109,315:17824943,29815761:173670,78643,0 +(105,315:17661089,29815761:501378,78643,0 +(105,315:17824943,29815761:173670,78643,0 ) ) -(109,315:18162467,29815761:501378,78643,0 -(109,315:18326321,29815761:173670,78643,0 +(105,315:18162467,29815761:501378,78643,0 +(105,315:18326321,29815761:173670,78643,0 ) ) -(109,315:18663845,29815761:501378,78643,0 -(109,315:18827699,29815761:173670,78643,0 +(105,315:18663845,29815761:501378,78643,0 +(105,315:18827699,29815761:173670,78643,0 ) ) -(109,315:19165223,29815761:501378,78643,0 -(109,315:19329077,29815761:173670,78643,0 +(105,315:19165223,29815761:501378,78643,0 +(105,315:19329077,29815761:173670,78643,0 ) ) -(109,315:19666601,29815761:501378,78643,0 -(109,315:19830455,29815761:173670,78643,0 +(105,315:19666601,29815761:501378,78643,0 +(105,315:19830455,29815761:173670,78643,0 ) ) -(109,315:20167979,29815761:501378,78643,0 -(109,315:20331833,29815761:173670,78643,0 +(105,315:20167979,29815761:501378,78643,0 +(105,315:20331833,29815761:173670,78643,0 ) ) -(109,315:20669357,29815761:501378,78643,0 -(109,315:20833211,29815761:173670,78643,0 +(105,315:20669357,29815761:501378,78643,0 +(105,315:20833211,29815761:173670,78643,0 ) ) -(109,315:21170735,29815761:501378,78643,0 -(109,315:21334589,29815761:173670,78643,0 +(105,315:21170735,29815761:501378,78643,0 +(105,315:21334589,29815761:173670,78643,0 ) ) -(109,315:21672113,29815761:501378,78643,0 -(109,315:21835967,29815761:173670,78643,0 +(105,315:21672113,29815761:501378,78643,0 +(105,315:21835967,29815761:173670,78643,0 ) ) -(109,315:22173491,29815761:501378,78643,0 -(109,315:22337345,29815761:173670,78643,0 +(105,315:22173491,29815761:501378,78643,0 +(105,315:22337345,29815761:173670,78643,0 ) ) -(109,315:22674869,29815761:501378,78643,0 -(109,315:22838723,29815761:173670,78643,0 +(105,315:22674869,29815761:501378,78643,0 +(105,315:22838723,29815761:173670,78643,0 ) ) -(109,315:23176247,29815761:501378,78643,0 -(109,315:23340101,29815761:173670,78643,0 +(105,315:23176247,29815761:501378,78643,0 +(105,315:23340101,29815761:173670,78643,0 ) ) -(109,315:23677625,29815761:501378,78643,0 -(109,315:23841479,29815761:173670,78643,0 +(105,315:23677625,29815761:501378,78643,0 +(105,315:23841479,29815761:173670,78643,0 ) ) -(109,315:24179003,29815761:501378,78643,0 -(109,315:24342857,29815761:173670,78643,0 +(105,315:24179003,29815761:501378,78643,0 +(105,315:24342857,29815761:173670,78643,0 ) ) -(109,315:24680381,29815761:501378,78643,0 -(109,315:24844235,29815761:173670,78643,0 +(105,315:24680381,29815761:501378,78643,0 +(105,315:24844235,29815761:173670,78643,0 ) ) -(109,315:25181759,29815761:501378,78643,0 -(109,315:25345613,29815761:173670,78643,0 +(105,315:25181759,29815761:501378,78643,0 +(105,315:25345613,29815761:173670,78643,0 ) ) -(109,315:25683137,29815761:501378,78643,0 -(109,315:25846991,29815761:173670,78643,0 +(105,315:25683137,29815761:501378,78643,0 +(105,315:25846991,29815761:173670,78643,0 ) ) -(109,315:26184515,29815761:501378,78643,0 -(109,315:26348369,29815761:173670,78643,0 +(105,315:26184515,29815761:501378,78643,0 +(105,315:26348369,29815761:173670,78643,0 ) ) -(109,315:26685893,29815761:501378,78643,0 -(109,315:26849747,29815761:173670,78643,0 +(105,315:26685893,29815761:501378,78643,0 +(105,315:26849747,29815761:173670,78643,0 ) ) -(109,315:27187271,29815761:501378,78643,0 -(109,315:27351125,29815761:173670,78643,0 +(105,315:27187271,29815761:501378,78643,0 +(105,315:27351125,29815761:173670,78643,0 ) ) -(109,315:27688649,29815761:501378,78643,0 -(109,315:27852503,29815761:173670,78643,0 +(105,315:27688649,29815761:501378,78643,0 +(105,315:27852503,29815761:173670,78643,0 ) ) -(109,315:28190027,29815761:501378,78643,0 -(109,315:28353881,29815761:173670,78643,0 +(105,315:28190027,29815761:501378,78643,0 +(105,315:28353881,29815761:173670,78643,0 ) ) -(109,315:28691405,29815761:501378,78643,0 -(109,315:28855259,29815761:173670,78643,0 +(105,315:28691405,29815761:501378,78643,0 +(105,315:28855259,29815761:173670,78643,0 ) ) -(109,315:29192783,29815761:501378,78643,0 -(109,315:29356637,29815761:173670,78643,0 +(105,315:29192783,29815761:501378,78643,0 +(105,315:29356637,29815761:173670,78643,0 ) ) -(109,315:29694161,29815761:501378,78643,0 -(109,315:29858015,29815761:173670,78643,0 +(105,315:29694161,29815761:501378,78643,0 +(105,315:29858015,29815761:173670,78643,0 ) ) -(109,315:30195539,29815761:501378,78643,0 -(109,315:30359393,29815761:173670,78643,0 +(105,315:30195539,29815761:501378,78643,0 +(105,315:30359393,29815761:173670,78643,0 ) ) -(109,315:30696917,29815761:501378,78643,0 -(109,315:30860771,29815761:173670,78643,0 +(105,315:30696917,29815761:501378,78643,0 +(105,315:30860771,29815761:173670,78643,0 ) ) -(109,315:31403379,29815761:1179650,485622,11795 -k109,315:31403379,29815761:0 -k109,315:31536199,29815761:132820 +(105,315:31239539,29815761:1343490,485622,0 +k105,315:31239539,29815761:0 +k105,315:31387652,29815761:148113 ) -g109,315:30911859,29815761 -g109,315:32583029,29815761 +g105,315:30911859,29815761 +g105,315:32583029,29815761 ) -(109,317:6630773,30657249:25952256,505283,126483 -g109,317:11218293,30657249 -h109,317:11218293,30657249:2490370,0,0 -h109,317:13708663,30657249:0,0,0 -g109,317:9121143,30657249 -(109,317:9121143,30657249:2097150,485622,11795 -k109,317:11218293,30657249:554432 +(105,317:6630773,30657249:25952256,505283,126483 +g105,317:11218293,30657249 +h105,317:11218293,30657249:2490370,0,0 +h105,317:13708663,30657249:0,0,0 +g105,317:9121143,30657249 +(105,317:9121143,30657249:2097150,485622,11795 +k105,317:11218293,30657249:554432 ) -g109,317:12576199,30657249 -g109,317:13966873,30657249 -g109,317:16992014,30657249 -g109,317:18599612,30657249 -(109,317:18663845,30657249:501378,78643,0 -$109,317:18663845,30657249 -(109,317:18827699,30657249:173670,78643,0 +g105,317:12576199,30657249 +g105,317:13966873,30657249 +g105,317:16992014,30657249 +g105,317:18599612,30657249 +(105,317:18663845,30657249:501378,78643,0 +$105,317:18663845,30657249 +(105,317:18827699,30657249:173670,78643,0 ) -$109,317:19165223,30657249 +$105,317:19165223,30657249 ) -(109,317:19165223,30657249:501378,78643,0 -(109,317:19329077,30657249:173670,78643,0 +(105,317:19165223,30657249:501378,78643,0 +(105,317:19329077,30657249:173670,78643,0 ) ) -(109,317:19666601,30657249:501378,78643,0 -(109,317:19830455,30657249:173670,78643,0 +(105,317:19666601,30657249:501378,78643,0 +(105,317:19830455,30657249:173670,78643,0 ) ) -(109,317:20167979,30657249:501378,78643,0 -(109,317:20331833,30657249:173670,78643,0 +(105,317:20167979,30657249:501378,78643,0 +(105,317:20331833,30657249:173670,78643,0 ) ) -(109,317:20669357,30657249:501378,78643,0 -(109,317:20833211,30657249:173670,78643,0 +(105,317:20669357,30657249:501378,78643,0 +(105,317:20833211,30657249:173670,78643,0 ) ) -(109,317:21170735,30657249:501378,78643,0 -(109,317:21334589,30657249:173670,78643,0 +(105,317:21170735,30657249:501378,78643,0 +(105,317:21334589,30657249:173670,78643,0 ) ) -(109,317:21672113,30657249:501378,78643,0 -(109,317:21835967,30657249:173670,78643,0 +(105,317:21672113,30657249:501378,78643,0 +(105,317:21835967,30657249:173670,78643,0 ) ) -(109,317:22173491,30657249:501378,78643,0 -(109,317:22337345,30657249:173670,78643,0 +(105,317:22173491,30657249:501378,78643,0 +(105,317:22337345,30657249:173670,78643,0 ) ) -(109,317:22674869,30657249:501378,78643,0 -(109,317:22838723,30657249:173670,78643,0 +(105,317:22674869,30657249:501378,78643,0 +(105,317:22838723,30657249:173670,78643,0 ) ) -(109,317:23176247,30657249:501378,78643,0 -(109,317:23340101,30657249:173670,78643,0 +(105,317:23176247,30657249:501378,78643,0 +(105,317:23340101,30657249:173670,78643,0 ) ) -(109,317:23677625,30657249:501378,78643,0 -(109,317:23841479,30657249:173670,78643,0 +(105,317:23677625,30657249:501378,78643,0 +(105,317:23841479,30657249:173670,78643,0 ) ) -(109,317:24179003,30657249:501378,78643,0 -(109,317:24342857,30657249:173670,78643,0 +(105,317:24179003,30657249:501378,78643,0 +(105,317:24342857,30657249:173670,78643,0 ) ) -(109,317:24680381,30657249:501378,78643,0 -(109,317:24844235,30657249:173670,78643,0 +(105,317:24680381,30657249:501378,78643,0 +(105,317:24844235,30657249:173670,78643,0 ) ) -(109,317:25181759,30657249:501378,78643,0 -(109,317:25345613,30657249:173670,78643,0 +(105,317:25181759,30657249:501378,78643,0 +(105,317:25345613,30657249:173670,78643,0 ) ) -(109,317:25683137,30657249:501378,78643,0 -(109,317:25846991,30657249:173670,78643,0 +(105,317:25683137,30657249:501378,78643,0 +(105,317:25846991,30657249:173670,78643,0 ) ) -(109,317:26184515,30657249:501378,78643,0 -(109,317:26348369,30657249:173670,78643,0 +(105,317:26184515,30657249:501378,78643,0 +(105,317:26348369,30657249:173670,78643,0 ) ) -(109,317:26685893,30657249:501378,78643,0 -(109,317:26849747,30657249:173670,78643,0 +(105,317:26685893,30657249:501378,78643,0 +(105,317:26849747,30657249:173670,78643,0 ) ) -(109,317:27187271,30657249:501378,78643,0 -(109,317:27351125,30657249:173670,78643,0 +(105,317:27187271,30657249:501378,78643,0 +(105,317:27351125,30657249:173670,78643,0 ) ) -(109,317:27688649,30657249:501378,78643,0 -(109,317:27852503,30657249:173670,78643,0 +(105,317:27688649,30657249:501378,78643,0 +(105,317:27852503,30657249:173670,78643,0 ) ) -(109,317:28190027,30657249:501378,78643,0 -(109,317:28353881,30657249:173670,78643,0 +(105,317:28190027,30657249:501378,78643,0 +(105,317:28353881,30657249:173670,78643,0 ) ) -(109,317:28691405,30657249:501378,78643,0 -(109,317:28855259,30657249:173670,78643,0 +(105,317:28691405,30657249:501378,78643,0 +(105,317:28855259,30657249:173670,78643,0 ) ) -(109,317:29192783,30657249:501378,78643,0 -(109,317:29356637,30657249:173670,78643,0 +(105,317:29192783,30657249:501378,78643,0 +(105,317:29356637,30657249:173670,78643,0 ) ) -(109,317:29694161,30657249:501378,78643,0 -(109,317:29858015,30657249:173670,78643,0 +(105,317:29694161,30657249:501378,78643,0 +(105,317:29858015,30657249:173670,78643,0 ) ) -(109,317:30195539,30657249:501378,78643,0 -(109,317:30359393,30657249:173670,78643,0 +(105,317:30195539,30657249:501378,78643,0 +(105,317:30359393,30657249:173670,78643,0 ) ) -(109,317:30696917,30657249:501378,78643,0 -(109,317:30860771,30657249:173670,78643,0 +(105,317:30696917,30657249:501378,78643,0 +(105,317:30860771,30657249:173670,78643,0 ) ) -(109,317:31403379,30657249:1179650,485622,11795 -k109,317:31403379,30657249:0 -k109,317:31536199,30657249:132820 +(105,317:31239539,30657249:1343490,485622,11795 +k105,317:31239539,30657249:0 +k105,317:31387652,30657249:148113 ) -g109,317:30911859,30657249 -g109,317:32583029,30657249 +g105,317:30911859,30657249 +g105,317:32583029,30657249 ) -(109,319:6630773,31498737:25952256,505283,126483 -g109,319:11218293,31498737 -h109,319:11218293,31498737:2490370,0,0 -h109,319:13708663,31498737:0,0,0 -g109,319:9121143,31498737 -(109,319:9121143,31498737:2097150,473825,11795 -k109,319:11218293,31498737:554432 +(105,319:6630773,31498737:25952256,505283,126483 +g105,319:11218293,31498737 +h105,319:11218293,31498737:2490370,0,0 +h105,319:13708663,31498737:0,0,0 +g105,319:9121143,31498737 +(105,319:9121143,31498737:2097150,473825,11795 +k105,319:11218293,31498737:554432 ) -g109,319:13292507,31498737 -g109,319:14900105,31498737 -(109,319:15154199,31498737:501378,78643,0 -$109,319:15154199,31498737 -(109,319:15318053,31498737:173670,78643,0 +g105,319:13292507,31498737 +g105,319:14900105,31498737 +(105,319:15154199,31498737:501378,78643,0 +$105,319:15154199,31498737 +(105,319:15318053,31498737:173670,78643,0 ) -$109,319:15655577,31498737 +$105,319:15655577,31498737 ) -(109,319:15655577,31498737:501378,78643,0 -(109,319:15819431,31498737:173670,78643,0 +(105,319:15655577,31498737:501378,78643,0 +(105,319:15819431,31498737:173670,78643,0 ) ) -(109,319:16156955,31498737:501378,78643,0 -(109,319:16320809,31498737:173670,78643,0 +(105,319:16156955,31498737:501378,78643,0 +(105,319:16320809,31498737:173670,78643,0 ) ) -(109,319:16658333,31498737:501378,78643,0 -(109,319:16822187,31498737:173670,78643,0 +(105,319:16658333,31498737:501378,78643,0 +(105,319:16822187,31498737:173670,78643,0 ) ) -(109,319:17159711,31498737:501378,78643,0 -(109,319:17323565,31498737:173670,78643,0 +(105,319:17159711,31498737:501378,78643,0 +(105,319:17323565,31498737:173670,78643,0 ) ) -(109,319:17661089,31498737:501378,78643,0 -(109,319:17824943,31498737:173670,78643,0 +(105,319:17661089,31498737:501378,78643,0 +(105,319:17824943,31498737:173670,78643,0 ) ) -(109,319:18162467,31498737:501378,78643,0 -(109,319:18326321,31498737:173670,78643,0 +(105,319:18162467,31498737:501378,78643,0 +(105,319:18326321,31498737:173670,78643,0 ) ) -(109,319:18663845,31498737:501378,78643,0 -(109,319:18827699,31498737:173670,78643,0 +(105,319:18663845,31498737:501378,78643,0 +(105,319:18827699,31498737:173670,78643,0 ) ) -(109,319:19165223,31498737:501378,78643,0 -(109,319:19329077,31498737:173670,78643,0 +(105,319:19165223,31498737:501378,78643,0 +(105,319:19329077,31498737:173670,78643,0 ) ) -(109,319:19666601,31498737:501378,78643,0 -(109,319:19830455,31498737:173670,78643,0 +(105,319:19666601,31498737:501378,78643,0 +(105,319:19830455,31498737:173670,78643,0 ) ) -(109,319:20167979,31498737:501378,78643,0 -(109,319:20331833,31498737:173670,78643,0 +(105,319:20167979,31498737:501378,78643,0 +(105,319:20331833,31498737:173670,78643,0 ) ) -(109,319:20669357,31498737:501378,78643,0 -(109,319:20833211,31498737:173670,78643,0 +(105,319:20669357,31498737:501378,78643,0 +(105,319:20833211,31498737:173670,78643,0 ) ) -(109,319:21170735,31498737:501378,78643,0 -(109,319:21334589,31498737:173670,78643,0 +(105,319:21170735,31498737:501378,78643,0 +(105,319:21334589,31498737:173670,78643,0 ) ) -(109,319:21672113,31498737:501378,78643,0 -(109,319:21835967,31498737:173670,78643,0 +(105,319:21672113,31498737:501378,78643,0 +(105,319:21835967,31498737:173670,78643,0 ) ) -(109,319:22173491,31498737:501378,78643,0 -(109,319:22337345,31498737:173670,78643,0 +(105,319:22173491,31498737:501378,78643,0 +(105,319:22337345,31498737:173670,78643,0 ) ) -(109,319:22674869,31498737:501378,78643,0 -(109,319:22838723,31498737:173670,78643,0 +(105,319:22674869,31498737:501378,78643,0 +(105,319:22838723,31498737:173670,78643,0 ) ) -(109,319:23176247,31498737:501378,78643,0 -(109,319:23340101,31498737:173670,78643,0 +(105,319:23176247,31498737:501378,78643,0 +(105,319:23340101,31498737:173670,78643,0 ) ) -(109,319:23677625,31498737:501378,78643,0 -(109,319:23841479,31498737:173670,78643,0 +(105,319:23677625,31498737:501378,78643,0 +(105,319:23841479,31498737:173670,78643,0 ) ) -(109,319:24179003,31498737:501378,78643,0 -(109,319:24342857,31498737:173670,78643,0 +(105,319:24179003,31498737:501378,78643,0 +(105,319:24342857,31498737:173670,78643,0 ) ) -(109,319:24680381,31498737:501378,78643,0 -(109,319:24844235,31498737:173670,78643,0 +(105,319:24680381,31498737:501378,78643,0 +(105,319:24844235,31498737:173670,78643,0 ) ) -(109,319:25181759,31498737:501378,78643,0 -(109,319:25345613,31498737:173670,78643,0 +(105,319:25181759,31498737:501378,78643,0 +(105,319:25345613,31498737:173670,78643,0 ) ) -(109,319:25683137,31498737:501378,78643,0 -(109,319:25846991,31498737:173670,78643,0 +(105,319:25683137,31498737:501378,78643,0 +(105,319:25846991,31498737:173670,78643,0 ) ) -(109,319:26184515,31498737:501378,78643,0 -(109,319:26348369,31498737:173670,78643,0 +(105,319:26184515,31498737:501378,78643,0 +(105,319:26348369,31498737:173670,78643,0 ) ) -(109,319:26685893,31498737:501378,78643,0 -(109,319:26849747,31498737:173670,78643,0 +(105,319:26685893,31498737:501378,78643,0 +(105,319:26849747,31498737:173670,78643,0 ) ) -(109,319:27187271,31498737:501378,78643,0 -(109,319:27351125,31498737:173670,78643,0 +(105,319:27187271,31498737:501378,78643,0 +(105,319:27351125,31498737:173670,78643,0 ) ) -(109,319:27688649,31498737:501378,78643,0 -(109,319:27852503,31498737:173670,78643,0 +(105,319:27688649,31498737:501378,78643,0 +(105,319:27852503,31498737:173670,78643,0 ) ) -(109,319:28190027,31498737:501378,78643,0 -(109,319:28353881,31498737:173670,78643,0 +(105,319:28190027,31498737:501378,78643,0 +(105,319:28353881,31498737:173670,78643,0 ) ) -(109,319:28691405,31498737:501378,78643,0 -(109,319:28855259,31498737:173670,78643,0 +(105,319:28691405,31498737:501378,78643,0 +(105,319:28855259,31498737:173670,78643,0 ) ) -(109,319:29192783,31498737:501378,78643,0 -(109,319:29356637,31498737:173670,78643,0 +(105,319:29192783,31498737:501378,78643,0 +(105,319:29356637,31498737:173670,78643,0 ) ) -(109,319:29694161,31498737:501378,78643,0 -(109,319:29858015,31498737:173670,78643,0 +(105,319:29694161,31498737:501378,78643,0 +(105,319:29858015,31498737:173670,78643,0 ) ) -(109,319:30195539,31498737:501378,78643,0 -(109,319:30359393,31498737:173670,78643,0 +(105,319:30195539,31498737:501378,78643,0 +(105,319:30359393,31498737:173670,78643,0 ) ) -(109,319:30696917,31498737:501378,78643,0 -(109,319:30860771,31498737:173670,78643,0 +(105,319:30696917,31498737:501378,78643,0 +(105,319:30860771,31498737:173670,78643,0 ) ) -(109,319:31403379,31498737:1179650,485622,11795 -k109,319:31403379,31498737:0 -k109,319:31536199,31498737:132820 +(105,319:31239539,31498737:1343490,485622,11795 +k105,319:31239539,31498737:0 +k105,319:31387652,31498737:148113 ) -g109,319:30911859,31498737 -g109,319:32583029,31498737 +g105,319:30911859,31498737 +g105,319:32583029,31498737 ) -(109,321:6630773,32340225:25952256,485622,11795 -g109,321:9121143,32340225 -h109,321:9121143,32340225:983040,0,0 -h109,321:10104183,32340225:0,0,0 -g109,321:7613813,32340225 -(109,321:7613813,32340225:1507330,485622,11795 -k109,321:9121143,32340225:536742 +(105,321:6630773,32340225:25952256,485622,11795 +g105,321:9121143,32340225 +h105,321:9121143,32340225:983040,0,0 +h105,321:10104183,32340225:0,0,0 +g105,321:7613813,32340225 +(105,321:7613813,32340225:1507330,485622,11795 +k105,321:9121143,32340225:536742 ) -g109,321:11303491,32340225 -g109,321:11303491,32340225 -(109,321:11644553,32340225:501378,78643,0 -$109,321:11644553,32340225 -(109,321:11808407,32340225:173670,78643,0 +g105,321:11303491,32340225 +g105,321:11303491,32340225 +(105,321:11644553,32340225:501378,78643,0 +$105,321:11644553,32340225 +(105,321:11808407,32340225:173670,78643,0 ) -$109,321:12145931,32340225 +$105,321:12145931,32340225 ) -(109,321:12145931,32340225:501378,78643,0 -(109,321:12309785,32340225:173670,78643,0 +(105,321:12145931,32340225:501378,78643,0 +(105,321:12309785,32340225:173670,78643,0 ) ) -(109,321:12647309,32340225:501378,78643,0 -(109,321:12811163,32340225:173670,78643,0 +(105,321:12647309,32340225:501378,78643,0 +(105,321:12811163,32340225:173670,78643,0 ) ) -(109,321:13148687,32340225:501378,78643,0 -(109,321:13312541,32340225:173670,78643,0 +(105,321:13148687,32340225:501378,78643,0 +(105,321:13312541,32340225:173670,78643,0 ) ) -(109,321:13650065,32340225:501378,78643,0 -(109,321:13813919,32340225:173670,78643,0 +(105,321:13650065,32340225:501378,78643,0 +(105,321:13813919,32340225:173670,78643,0 ) ) -(109,321:14151443,32340225:501378,78643,0 -(109,321:14315297,32340225:173670,78643,0 +(105,321:14151443,32340225:501378,78643,0 +(105,321:14315297,32340225:173670,78643,0 ) ) -(109,321:14652821,32340225:501378,78643,0 -(109,321:14816675,32340225:173670,78643,0 +(105,321:14652821,32340225:501378,78643,0 +(105,321:14816675,32340225:173670,78643,0 ) ) -(109,321:15154199,32340225:501378,78643,0 -(109,321:15318053,32340225:173670,78643,0 +(105,321:15154199,32340225:501378,78643,0 +(105,321:15318053,32340225:173670,78643,0 ) ) -(109,321:15655577,32340225:501378,78643,0 -(109,321:15819431,32340225:173670,78643,0 +(105,321:15655577,32340225:501378,78643,0 +(105,321:15819431,32340225:173670,78643,0 ) ) -(109,321:16156955,32340225:501378,78643,0 -(109,321:16320809,32340225:173670,78643,0 +(105,321:16156955,32340225:501378,78643,0 +(105,321:16320809,32340225:173670,78643,0 ) ) -(109,321:16658333,32340225:501378,78643,0 -(109,321:16822187,32340225:173670,78643,0 +(105,321:16658333,32340225:501378,78643,0 +(105,321:16822187,32340225:173670,78643,0 ) ) -(109,321:17159711,32340225:501378,78643,0 -(109,321:17323565,32340225:173670,78643,0 +(105,321:17159711,32340225:501378,78643,0 +(105,321:17323565,32340225:173670,78643,0 ) ) -(109,321:17661089,32340225:501378,78643,0 -(109,321:17824943,32340225:173670,78643,0 +(105,321:17661089,32340225:501378,78643,0 +(105,321:17824943,32340225:173670,78643,0 ) ) -(109,321:18162467,32340225:501378,78643,0 -(109,321:18326321,32340225:173670,78643,0 +(105,321:18162467,32340225:501378,78643,0 +(105,321:18326321,32340225:173670,78643,0 ) ) -(109,321:18663845,32340225:501378,78643,0 -(109,321:18827699,32340225:173670,78643,0 +(105,321:18663845,32340225:501378,78643,0 +(105,321:18827699,32340225:173670,78643,0 ) ) -(109,321:19165223,32340225:501378,78643,0 -(109,321:19329077,32340225:173670,78643,0 +(105,321:19165223,32340225:501378,78643,0 +(105,321:19329077,32340225:173670,78643,0 ) ) -(109,321:19666601,32340225:501378,78643,0 -(109,321:19830455,32340225:173670,78643,0 +(105,321:19666601,32340225:501378,78643,0 +(105,321:19830455,32340225:173670,78643,0 ) ) -(109,321:20167979,32340225:501378,78643,0 -(109,321:20331833,32340225:173670,78643,0 +(105,321:20167979,32340225:501378,78643,0 +(105,321:20331833,32340225:173670,78643,0 ) ) -(109,321:20669357,32340225:501378,78643,0 -(109,321:20833211,32340225:173670,78643,0 +(105,321:20669357,32340225:501378,78643,0 +(105,321:20833211,32340225:173670,78643,0 ) ) -(109,321:21170735,32340225:501378,78643,0 -(109,321:21334589,32340225:173670,78643,0 +(105,321:21170735,32340225:501378,78643,0 +(105,321:21334589,32340225:173670,78643,0 ) ) -(109,321:21672113,32340225:501378,78643,0 -(109,321:21835967,32340225:173670,78643,0 +(105,321:21672113,32340225:501378,78643,0 +(105,321:21835967,32340225:173670,78643,0 ) ) -(109,321:22173491,32340225:501378,78643,0 -(109,321:22337345,32340225:173670,78643,0 +(105,321:22173491,32340225:501378,78643,0 +(105,321:22337345,32340225:173670,78643,0 ) ) -(109,321:22674869,32340225:501378,78643,0 -(109,321:22838723,32340225:173670,78643,0 +(105,321:22674869,32340225:501378,78643,0 +(105,321:22838723,32340225:173670,78643,0 ) ) -(109,321:23176247,32340225:501378,78643,0 -(109,321:23340101,32340225:173670,78643,0 +(105,321:23176247,32340225:501378,78643,0 +(105,321:23340101,32340225:173670,78643,0 ) ) -(109,321:23677625,32340225:501378,78643,0 -(109,321:23841479,32340225:173670,78643,0 +(105,321:23677625,32340225:501378,78643,0 +(105,321:23841479,32340225:173670,78643,0 ) ) -(109,321:24179003,32340225:501378,78643,0 -(109,321:24342857,32340225:173670,78643,0 +(105,321:24179003,32340225:501378,78643,0 +(105,321:24342857,32340225:173670,78643,0 ) ) -(109,321:24680381,32340225:501378,78643,0 -(109,321:24844235,32340225:173670,78643,0 +(105,321:24680381,32340225:501378,78643,0 +(105,321:24844235,32340225:173670,78643,0 ) ) -(109,321:25181759,32340225:501378,78643,0 -(109,321:25345613,32340225:173670,78643,0 +(105,321:25181759,32340225:501378,78643,0 +(105,321:25345613,32340225:173670,78643,0 ) ) -(109,321:25683137,32340225:501378,78643,0 -(109,321:25846991,32340225:173670,78643,0 +(105,321:25683137,32340225:501378,78643,0 +(105,321:25846991,32340225:173670,78643,0 ) ) -(109,321:26184515,32340225:501378,78643,0 -(109,321:26348369,32340225:173670,78643,0 +(105,321:26184515,32340225:501378,78643,0 +(105,321:26348369,32340225:173670,78643,0 ) ) -(109,321:26685893,32340225:501378,78643,0 -(109,321:26849747,32340225:173670,78643,0 +(105,321:26685893,32340225:501378,78643,0 +(105,321:26849747,32340225:173670,78643,0 ) ) -(109,321:27187271,32340225:501378,78643,0 -(109,321:27351125,32340225:173670,78643,0 +(105,321:27187271,32340225:501378,78643,0 +(105,321:27351125,32340225:173670,78643,0 ) ) -(109,321:27688649,32340225:501378,78643,0 -(109,321:27852503,32340225:173670,78643,0 +(105,321:27688649,32340225:501378,78643,0 +(105,321:27852503,32340225:173670,78643,0 ) ) -(109,321:28190027,32340225:501378,78643,0 -(109,321:28353881,32340225:173670,78643,0 +(105,321:28190027,32340225:501378,78643,0 +(105,321:28353881,32340225:173670,78643,0 ) ) -(109,321:28691405,32340225:501378,78643,0 -(109,321:28855259,32340225:173670,78643,0 +(105,321:28691405,32340225:501378,78643,0 +(105,321:28855259,32340225:173670,78643,0 ) ) -(109,321:29192783,32340225:501378,78643,0 -(109,321:29356637,32340225:173670,78643,0 +(105,321:29192783,32340225:501378,78643,0 +(105,321:29356637,32340225:173670,78643,0 ) ) -(109,321:29694161,32340225:501378,78643,0 -(109,321:29858015,32340225:173670,78643,0 +(105,321:29694161,32340225:501378,78643,0 +(105,321:29858015,32340225:173670,78643,0 ) ) -(109,321:30195539,32340225:501378,78643,0 -(109,321:30359393,32340225:173670,78643,0 +(105,321:30195539,32340225:501378,78643,0 +(105,321:30359393,32340225:173670,78643,0 ) ) -(109,321:30696917,32340225:501378,78643,0 -(109,321:30860771,32340225:173670,78643,0 +(105,321:30696917,32340225:501378,78643,0 +(105,321:30860771,32340225:173670,78643,0 ) ) -(109,321:31403379,32340225:1179650,485622,11795 -k109,321:31403379,32340225:0 -k109,321:31536199,32340225:132820 +(105,321:31239539,32340225:1343490,485622,11795 +k105,321:31239539,32340225:0 +k105,321:31387652,32340225:148113 ) -g109,321:30911859,32340225 -g109,321:32583029,32340225 +g105,321:30911859,32340225 +g105,321:32583029,32340225 ) -(109,323:6630773,33181713:25952256,505283,11795 -g109,323:9121143,33181713 -h109,323:9121143,33181713:983040,0,0 -h109,323:10104183,33181713:0,0,0 -g109,323:7613813,33181713 -(109,323:7613813,33181713:1507330,473825,0 -k109,323:9121143,33181713:536742 +(105,323:6630773,33181713:25952256,505283,11795 +g105,323:9121143,33181713 +h105,323:9121143,33181713:983040,0,0 +h105,323:10104183,33181713:0,0,0 +g105,323:7613813,33181713 +(105,323:7613813,33181713:1507330,473825,0 +k105,323:9121143,33181713:536742 ) -g109,323:11247786,33181713 -g109,323:11247786,33181713 -(109,323:11644553,33181713:501378,78643,0 -$109,323:11644553,33181713 -(109,323:11808407,33181713:173670,78643,0 +g105,323:11247786,33181713 +g105,323:11247786,33181713 +(105,323:11644553,33181713:501378,78643,0 +$105,323:11644553,33181713 +(105,323:11808407,33181713:173670,78643,0 ) -$109,323:12145931,33181713 +$105,323:12145931,33181713 ) -(109,323:12145931,33181713:501378,78643,0 -(109,323:12309785,33181713:173670,78643,0 +(105,323:12145931,33181713:501378,78643,0 +(105,323:12309785,33181713:173670,78643,0 ) ) -(109,323:12647309,33181713:501378,78643,0 -(109,323:12811163,33181713:173670,78643,0 +(105,323:12647309,33181713:501378,78643,0 +(105,323:12811163,33181713:173670,78643,0 ) ) -(109,323:13148687,33181713:501378,78643,0 -(109,323:13312541,33181713:173670,78643,0 +(105,323:13148687,33181713:501378,78643,0 +(105,323:13312541,33181713:173670,78643,0 ) ) -(109,323:13650065,33181713:501378,78643,0 -(109,323:13813919,33181713:173670,78643,0 +(105,323:13650065,33181713:501378,78643,0 +(105,323:13813919,33181713:173670,78643,0 ) ) -(109,323:14151443,33181713:501378,78643,0 -(109,323:14315297,33181713:173670,78643,0 +(105,323:14151443,33181713:501378,78643,0 +(105,323:14315297,33181713:173670,78643,0 ) ) -(109,323:14652821,33181713:501378,78643,0 -(109,323:14816675,33181713:173670,78643,0 +(105,323:14652821,33181713:501378,78643,0 +(105,323:14816675,33181713:173670,78643,0 ) ) -(109,323:15154199,33181713:501378,78643,0 -(109,323:15318053,33181713:173670,78643,0 +(105,323:15154199,33181713:501378,78643,0 +(105,323:15318053,33181713:173670,78643,0 ) ) -(109,323:15655577,33181713:501378,78643,0 -(109,323:15819431,33181713:173670,78643,0 +(105,323:15655577,33181713:501378,78643,0 +(105,323:15819431,33181713:173670,78643,0 ) ) -(109,323:16156955,33181713:501378,78643,0 -(109,323:16320809,33181713:173670,78643,0 +(105,323:16156955,33181713:501378,78643,0 +(105,323:16320809,33181713:173670,78643,0 ) ) -(109,323:16658333,33181713:501378,78643,0 -(109,323:16822187,33181713:173670,78643,0 +(105,323:16658333,33181713:501378,78643,0 +(105,323:16822187,33181713:173670,78643,0 ) ) -(109,323:17159711,33181713:501378,78643,0 -(109,323:17323565,33181713:173670,78643,0 +(105,323:17159711,33181713:501378,78643,0 +(105,323:17323565,33181713:173670,78643,0 ) ) -(109,323:17661089,33181713:501378,78643,0 -(109,323:17824943,33181713:173670,78643,0 +(105,323:17661089,33181713:501378,78643,0 +(105,323:17824943,33181713:173670,78643,0 ) ) -(109,323:18162467,33181713:501378,78643,0 -(109,323:18326321,33181713:173670,78643,0 +(105,323:18162467,33181713:501378,78643,0 +(105,323:18326321,33181713:173670,78643,0 ) ) -(109,323:18663845,33181713:501378,78643,0 -(109,323:18827699,33181713:173670,78643,0 +(105,323:18663845,33181713:501378,78643,0 +(105,323:18827699,33181713:173670,78643,0 ) ) -(109,323:19165223,33181713:501378,78643,0 -(109,323:19329077,33181713:173670,78643,0 +(105,323:19165223,33181713:501378,78643,0 +(105,323:19329077,33181713:173670,78643,0 ) ) -(109,323:19666601,33181713:501378,78643,0 -(109,323:19830455,33181713:173670,78643,0 +(105,323:19666601,33181713:501378,78643,0 +(105,323:19830455,33181713:173670,78643,0 ) ) -(109,323:20167979,33181713:501378,78643,0 -(109,323:20331833,33181713:173670,78643,0 +(105,323:20167979,33181713:501378,78643,0 +(105,323:20331833,33181713:173670,78643,0 ) ) -(109,323:20669357,33181713:501378,78643,0 -(109,323:20833211,33181713:173670,78643,0 +(105,323:20669357,33181713:501378,78643,0 +(105,323:20833211,33181713:173670,78643,0 ) ) -(109,323:21170735,33181713:501378,78643,0 -(109,323:21334589,33181713:173670,78643,0 +(105,323:21170735,33181713:501378,78643,0 +(105,323:21334589,33181713:173670,78643,0 ) ) -(109,323:21672113,33181713:501378,78643,0 -(109,323:21835967,33181713:173670,78643,0 +(105,323:21672113,33181713:501378,78643,0 +(105,323:21835967,33181713:173670,78643,0 ) ) -(109,323:22173491,33181713:501378,78643,0 -(109,323:22337345,33181713:173670,78643,0 +(105,323:22173491,33181713:501378,78643,0 +(105,323:22337345,33181713:173670,78643,0 ) ) -(109,323:22674869,33181713:501378,78643,0 -(109,323:22838723,33181713:173670,78643,0 +(105,323:22674869,33181713:501378,78643,0 +(105,323:22838723,33181713:173670,78643,0 ) ) -(109,323:23176247,33181713:501378,78643,0 -(109,323:23340101,33181713:173670,78643,0 +(105,323:23176247,33181713:501378,78643,0 +(105,323:23340101,33181713:173670,78643,0 ) ) -(109,323:23677625,33181713:501378,78643,0 -(109,323:23841479,33181713:173670,78643,0 +(105,323:23677625,33181713:501378,78643,0 +(105,323:23841479,33181713:173670,78643,0 ) ) -(109,323:24179003,33181713:501378,78643,0 -(109,323:24342857,33181713:173670,78643,0 +(105,323:24179003,33181713:501378,78643,0 +(105,323:24342857,33181713:173670,78643,0 ) ) -(109,323:24680381,33181713:501378,78643,0 -(109,323:24844235,33181713:173670,78643,0 +(105,323:24680381,33181713:501378,78643,0 +(105,323:24844235,33181713:173670,78643,0 ) ) -(109,323:25181759,33181713:501378,78643,0 -(109,323:25345613,33181713:173670,78643,0 +(105,323:25181759,33181713:501378,78643,0 +(105,323:25345613,33181713:173670,78643,0 ) ) -(109,323:25683137,33181713:501378,78643,0 -(109,323:25846991,33181713:173670,78643,0 +(105,323:25683137,33181713:501378,78643,0 +(105,323:25846991,33181713:173670,78643,0 ) ) -(109,323:26184515,33181713:501378,78643,0 -(109,323:26348369,33181713:173670,78643,0 +(105,323:26184515,33181713:501378,78643,0 +(105,323:26348369,33181713:173670,78643,0 ) ) -(109,323:26685893,33181713:501378,78643,0 -(109,323:26849747,33181713:173670,78643,0 +(105,323:26685893,33181713:501378,78643,0 +(105,323:26849747,33181713:173670,78643,0 ) ) -(109,323:27187271,33181713:501378,78643,0 -(109,323:27351125,33181713:173670,78643,0 +(105,323:27187271,33181713:501378,78643,0 +(105,323:27351125,33181713:173670,78643,0 ) ) -(109,323:27688649,33181713:501378,78643,0 -(109,323:27852503,33181713:173670,78643,0 +(105,323:27688649,33181713:501378,78643,0 +(105,323:27852503,33181713:173670,78643,0 ) ) -(109,323:28190027,33181713:501378,78643,0 -(109,323:28353881,33181713:173670,78643,0 +(105,323:28190027,33181713:501378,78643,0 +(105,323:28353881,33181713:173670,78643,0 ) ) -(109,323:28691405,33181713:501378,78643,0 -(109,323:28855259,33181713:173670,78643,0 +(105,323:28691405,33181713:501378,78643,0 +(105,323:28855259,33181713:173670,78643,0 ) ) -(109,323:29192783,33181713:501378,78643,0 -(109,323:29356637,33181713:173670,78643,0 +(105,323:29192783,33181713:501378,78643,0 +(105,323:29356637,33181713:173670,78643,0 ) ) -(109,323:29694161,33181713:501378,78643,0 -(109,323:29858015,33181713:173670,78643,0 +(105,323:29694161,33181713:501378,78643,0 +(105,323:29858015,33181713:173670,78643,0 ) ) -(109,323:30195539,33181713:501378,78643,0 -(109,323:30359393,33181713:173670,78643,0 +(105,323:30195539,33181713:501378,78643,0 +(105,323:30359393,33181713:173670,78643,0 ) ) -(109,323:30696917,33181713:501378,78643,0 -(109,323:30860771,33181713:173670,78643,0 +(105,323:30696917,33181713:501378,78643,0 +(105,323:30860771,33181713:173670,78643,0 ) ) -(109,323:31403378,33181713:1179650,485622,11795 -k109,323:31403378,33181713:0 -k109,323:31536198,33181713:132820 +(105,323:31239538,33181713:1343490,485622,11795 +k105,323:31239538,33181713:0 +k105,323:31387651,33181713:148113 ) -g109,323:30911858,33181713 -g109,323:32583028,33181713 +g105,323:30911858,33181713 +g105,323:32583028,33181713 ) -(109,325:6630773,34023201:25952256,505283,126483 -g109,325:11218293,34023201 -h109,325:11218293,34023201:2490370,0,0 -h109,325:13708663,34023201:0,0,0 -g109,325:9121143,34023201 -(109,325:9121143,34023201:2097150,477757,0 -k109,325:11218293,34023201:554432 +(105,325:6630773,34023201:25952256,505283,126483 +g105,325:11218293,34023201 +h105,325:11218293,34023201:2490370,0,0 +h105,325:13708663,34023201:0,0,0 +g105,325:9121143,34023201 +(105,325:9121143,34023201:2097150,477757,0 +k105,325:11218293,34023201:554432 ) -g109,325:12801642,34023201 -g109,325:14192316,34023201 -g109,325:15492550,34023201 -g109,325:17336733,34023201 -(109,325:17661089,34023201:501378,78643,0 -$109,325:17661089,34023201 -(109,325:17824943,34023201:173670,78643,0 +g105,325:12801642,34023201 +g105,325:14192316,34023201 +g105,325:15492550,34023201 +g105,325:17336733,34023201 +(105,325:17661089,34023201:501378,78643,0 +$105,325:17661089,34023201 +(105,325:17824943,34023201:173670,78643,0 ) -$109,325:18162467,34023201 +$105,325:18162467,34023201 ) -(109,325:18162467,34023201:501378,78643,0 -(109,325:18326321,34023201:173670,78643,0 +(105,325:18162467,34023201:501378,78643,0 +(105,325:18326321,34023201:173670,78643,0 ) ) -(109,325:18663845,34023201:501378,78643,0 -(109,325:18827699,34023201:173670,78643,0 +(105,325:18663845,34023201:501378,78643,0 +(105,325:18827699,34023201:173670,78643,0 ) ) -(109,325:19165223,34023201:501378,78643,0 -(109,325:19329077,34023201:173670,78643,0 +(105,325:19165223,34023201:501378,78643,0 +(105,325:19329077,34023201:173670,78643,0 ) ) -(109,325:19666601,34023201:501378,78643,0 -(109,325:19830455,34023201:173670,78643,0 +(105,325:19666601,34023201:501378,78643,0 +(105,325:19830455,34023201:173670,78643,0 ) ) -(109,325:20167979,34023201:501378,78643,0 -(109,325:20331833,34023201:173670,78643,0 +(105,325:20167979,34023201:501378,78643,0 +(105,325:20331833,34023201:173670,78643,0 ) ) -(109,325:20669357,34023201:501378,78643,0 -(109,325:20833211,34023201:173670,78643,0 +(105,325:20669357,34023201:501378,78643,0 +(105,325:20833211,34023201:173670,78643,0 ) ) -(109,325:21170735,34023201:501378,78643,0 -(109,325:21334589,34023201:173670,78643,0 +(105,325:21170735,34023201:501378,78643,0 +(105,325:21334589,34023201:173670,78643,0 ) ) -(109,325:21672113,34023201:501378,78643,0 -(109,325:21835967,34023201:173670,78643,0 +(105,325:21672113,34023201:501378,78643,0 +(105,325:21835967,34023201:173670,78643,0 ) ) -(109,325:22173491,34023201:501378,78643,0 -(109,325:22337345,34023201:173670,78643,0 +(105,325:22173491,34023201:501378,78643,0 +(105,325:22337345,34023201:173670,78643,0 ) ) -(109,325:22674869,34023201:501378,78643,0 -(109,325:22838723,34023201:173670,78643,0 +(105,325:22674869,34023201:501378,78643,0 +(105,325:22838723,34023201:173670,78643,0 ) ) -(109,325:23176247,34023201:501378,78643,0 -(109,325:23340101,34023201:173670,78643,0 +(105,325:23176247,34023201:501378,78643,0 +(105,325:23340101,34023201:173670,78643,0 ) ) -(109,325:23677625,34023201:501378,78643,0 -(109,325:23841479,34023201:173670,78643,0 +(105,325:23677625,34023201:501378,78643,0 +(105,325:23841479,34023201:173670,78643,0 ) ) -(109,325:24179003,34023201:501378,78643,0 -(109,325:24342857,34023201:173670,78643,0 +(105,325:24179003,34023201:501378,78643,0 +(105,325:24342857,34023201:173670,78643,0 ) ) -(109,325:24680381,34023201:501378,78643,0 -(109,325:24844235,34023201:173670,78643,0 +(105,325:24680381,34023201:501378,78643,0 +(105,325:24844235,34023201:173670,78643,0 ) ) -(109,325:25181759,34023201:501378,78643,0 -(109,325:25345613,34023201:173670,78643,0 +(105,325:25181759,34023201:501378,78643,0 +(105,325:25345613,34023201:173670,78643,0 ) ) -(109,325:25683137,34023201:501378,78643,0 -(109,325:25846991,34023201:173670,78643,0 +(105,325:25683137,34023201:501378,78643,0 +(105,325:25846991,34023201:173670,78643,0 ) ) -(109,325:26184515,34023201:501378,78643,0 -(109,325:26348369,34023201:173670,78643,0 +(105,325:26184515,34023201:501378,78643,0 +(105,325:26348369,34023201:173670,78643,0 ) ) -(109,325:26685893,34023201:501378,78643,0 -(109,325:26849747,34023201:173670,78643,0 +(105,325:26685893,34023201:501378,78643,0 +(105,325:26849747,34023201:173670,78643,0 ) ) -(109,325:27187271,34023201:501378,78643,0 -(109,325:27351125,34023201:173670,78643,0 +(105,325:27187271,34023201:501378,78643,0 +(105,325:27351125,34023201:173670,78643,0 ) ) -(109,325:27688649,34023201:501378,78643,0 -(109,325:27852503,34023201:173670,78643,0 +(105,325:27688649,34023201:501378,78643,0 +(105,325:27852503,34023201:173670,78643,0 ) ) -(109,325:28190027,34023201:501378,78643,0 -(109,325:28353881,34023201:173670,78643,0 +(105,325:28190027,34023201:501378,78643,0 +(105,325:28353881,34023201:173670,78643,0 ) ) -(109,325:28691405,34023201:501378,78643,0 -(109,325:28855259,34023201:173670,78643,0 +(105,325:28691405,34023201:501378,78643,0 +(105,325:28855259,34023201:173670,78643,0 ) ) -(109,325:29192783,34023201:501378,78643,0 -(109,325:29356637,34023201:173670,78643,0 +(105,325:29192783,34023201:501378,78643,0 +(105,325:29356637,34023201:173670,78643,0 ) ) -(109,325:29694161,34023201:501378,78643,0 -(109,325:29858015,34023201:173670,78643,0 +(105,325:29694161,34023201:501378,78643,0 +(105,325:29858015,34023201:173670,78643,0 ) ) -(109,325:30195539,34023201:501378,78643,0 -(109,325:30359393,34023201:173670,78643,0 +(105,325:30195539,34023201:501378,78643,0 +(105,325:30359393,34023201:173670,78643,0 ) ) -(109,325:30696917,34023201:501378,78643,0 -(109,325:30860771,34023201:173670,78643,0 +(105,325:30696917,34023201:501378,78643,0 +(105,325:30860771,34023201:173670,78643,0 ) ) -(109,325:31403379,34023201:1179650,485622,11795 -k109,325:31403379,34023201:0 -k109,325:31536199,34023201:132820 +(105,325:31239539,34023201:1343490,485622,11795 +k105,325:31239539,34023201:0 +k105,325:31387652,34023201:148113 ) -g109,325:30911859,34023201 -g109,325:32583029,34023201 +g105,325:30911859,34023201 +g105,325:32583029,34023201 ) -(109,327:6630773,34864689:25952256,505283,11795 -g109,327:11218293,34864689 -h109,327:11218293,34864689:2490370,0,0 -h109,327:13708663,34864689:0,0,0 -g109,327:9121143,34864689 -(109,327:9121143,34864689:2097150,485622,0 -k109,327:11218293,34864689:554432 +(105,327:6630773,34864689:25952256,505283,11795 +g105,327:11218293,34864689 +h105,327:11218293,34864689:2490370,0,0 +h105,327:13708663,34864689:0,0,0 +g105,327:9121143,34864689 +(105,327:9121143,34864689:2097150,485622,0 +k105,327:11218293,34864689:554432 ) -g109,327:15109820,34864689 -g109,327:17012330,34864689 -(109,327:17159711,34864689:501378,78643,0 -$109,327:17159711,34864689 -(109,327:17323565,34864689:173670,78643,0 +g105,327:15109820,34864689 +g105,327:17012330,34864689 +(105,327:17159711,34864689:501378,78643,0 +$105,327:17159711,34864689 +(105,327:17323565,34864689:173670,78643,0 ) -$109,327:17661089,34864689 +$105,327:17661089,34864689 ) -(109,327:17661089,34864689:501378,78643,0 -(109,327:17824943,34864689:173670,78643,0 +(105,327:17661089,34864689:501378,78643,0 +(105,327:17824943,34864689:173670,78643,0 ) ) -(109,327:18162467,34864689:501378,78643,0 -(109,327:18326321,34864689:173670,78643,0 +(105,327:18162467,34864689:501378,78643,0 +(105,327:18326321,34864689:173670,78643,0 ) ) -(109,327:18663845,34864689:501378,78643,0 -(109,327:18827699,34864689:173670,78643,0 +(105,327:18663845,34864689:501378,78643,0 +(105,327:18827699,34864689:173670,78643,0 ) ) -(109,327:19165223,34864689:501378,78643,0 -(109,327:19329077,34864689:173670,78643,0 +(105,327:19165223,34864689:501378,78643,0 +(105,327:19329077,34864689:173670,78643,0 ) ) -(109,327:19666601,34864689:501378,78643,0 -(109,327:19830455,34864689:173670,78643,0 +(105,327:19666601,34864689:501378,78643,0 +(105,327:19830455,34864689:173670,78643,0 ) ) -(109,327:20167979,34864689:501378,78643,0 -(109,327:20331833,34864689:173670,78643,0 +(105,327:20167979,34864689:501378,78643,0 +(105,327:20331833,34864689:173670,78643,0 ) ) -(109,327:20669357,34864689:501378,78643,0 -(109,327:20833211,34864689:173670,78643,0 +(105,327:20669357,34864689:501378,78643,0 +(105,327:20833211,34864689:173670,78643,0 ) ) -(109,327:21170735,34864689:501378,78643,0 -(109,327:21334589,34864689:173670,78643,0 +(105,327:21170735,34864689:501378,78643,0 +(105,327:21334589,34864689:173670,78643,0 ) ) -(109,327:21672113,34864689:501378,78643,0 -(109,327:21835967,34864689:173670,78643,0 +(105,327:21672113,34864689:501378,78643,0 +(105,327:21835967,34864689:173670,78643,0 ) ) -(109,327:22173491,34864689:501378,78643,0 -(109,327:22337345,34864689:173670,78643,0 +(105,327:22173491,34864689:501378,78643,0 +(105,327:22337345,34864689:173670,78643,0 ) ) -(109,327:22674869,34864689:501378,78643,0 -(109,327:22838723,34864689:173670,78643,0 +(105,327:22674869,34864689:501378,78643,0 +(105,327:22838723,34864689:173670,78643,0 ) ) -(109,327:23176247,34864689:501378,78643,0 -(109,327:23340101,34864689:173670,78643,0 +(105,327:23176247,34864689:501378,78643,0 +(105,327:23340101,34864689:173670,78643,0 ) ) -(109,327:23677625,34864689:501378,78643,0 -(109,327:23841479,34864689:173670,78643,0 +(105,327:23677625,34864689:501378,78643,0 +(105,327:23841479,34864689:173670,78643,0 ) ) -(109,327:24179003,34864689:501378,78643,0 -(109,327:24342857,34864689:173670,78643,0 +(105,327:24179003,34864689:501378,78643,0 +(105,327:24342857,34864689:173670,78643,0 ) ) -(109,327:24680381,34864689:501378,78643,0 -(109,327:24844235,34864689:173670,78643,0 +(105,327:24680381,34864689:501378,78643,0 +(105,327:24844235,34864689:173670,78643,0 ) ) -(109,327:25181759,34864689:501378,78643,0 -(109,327:25345613,34864689:173670,78643,0 +(105,327:25181759,34864689:501378,78643,0 +(105,327:25345613,34864689:173670,78643,0 ) ) -(109,327:25683137,34864689:501378,78643,0 -(109,327:25846991,34864689:173670,78643,0 +(105,327:25683137,34864689:501378,78643,0 +(105,327:25846991,34864689:173670,78643,0 ) ) -(109,327:26184515,34864689:501378,78643,0 -(109,327:26348369,34864689:173670,78643,0 +(105,327:26184515,34864689:501378,78643,0 +(105,327:26348369,34864689:173670,78643,0 ) ) -(109,327:26685893,34864689:501378,78643,0 -(109,327:26849747,34864689:173670,78643,0 +(105,327:26685893,34864689:501378,78643,0 +(105,327:26849747,34864689:173670,78643,0 ) ) -(109,327:27187271,34864689:501378,78643,0 -(109,327:27351125,34864689:173670,78643,0 +(105,327:27187271,34864689:501378,78643,0 +(105,327:27351125,34864689:173670,78643,0 ) ) -(109,327:27688649,34864689:501378,78643,0 -(109,327:27852503,34864689:173670,78643,0 +(105,327:27688649,34864689:501378,78643,0 +(105,327:27852503,34864689:173670,78643,0 ) ) -(109,327:28190027,34864689:501378,78643,0 -(109,327:28353881,34864689:173670,78643,0 +(105,327:28190027,34864689:501378,78643,0 +(105,327:28353881,34864689:173670,78643,0 ) ) -(109,327:28691405,34864689:501378,78643,0 -(109,327:28855259,34864689:173670,78643,0 +(105,327:28691405,34864689:501378,78643,0 +(105,327:28855259,34864689:173670,78643,0 ) ) -(109,327:29192783,34864689:501378,78643,0 -(109,327:29356637,34864689:173670,78643,0 +(105,327:29192783,34864689:501378,78643,0 +(105,327:29356637,34864689:173670,78643,0 ) ) -(109,327:29694161,34864689:501378,78643,0 -(109,327:29858015,34864689:173670,78643,0 +(105,327:29694161,34864689:501378,78643,0 +(105,327:29858015,34864689:173670,78643,0 ) ) -(109,327:30195539,34864689:501378,78643,0 -(109,327:30359393,34864689:173670,78643,0 +(105,327:30195539,34864689:501378,78643,0 +(105,327:30359393,34864689:173670,78643,0 ) ) -(109,327:30696917,34864689:501378,78643,0 -(109,327:30860771,34864689:173670,78643,0 +(105,327:30696917,34864689:501378,78643,0 +(105,327:30860771,34864689:173670,78643,0 ) ) -(109,327:31403379,34864689:1179650,485622,11795 -k109,327:31403379,34864689:0 -k109,327:31536199,34864689:132820 +(105,327:31239539,34864689:1343490,485622,11795 +k105,327:31239539,34864689:0 +k105,327:31387652,34864689:148113 ) -g109,327:30911859,34864689 -g109,327:32583029,34864689 +g105,327:30911859,34864689 +g105,327:32583029,34864689 ) -(109,329:6630773,35706177:25952256,485622,11795 -g109,329:13905273,35706177 -h109,329:13905273,35706177:4587520,0,0 -h109,329:18492793,35706177:0,0,0 -g109,329:11218293,35706177 -(109,329:11218293,35706177:2686980,485622,0 -k109,329:13905273,35706177:572133 +(105,329:6630773,35706177:25952256,485622,11795 +g105,329:13905273,35706177 +h105,329:13905273,35706177:4587520,0,0 +h105,329:18492793,35706177:0,0,0 +g105,329:11218293,35706177 +(105,329:11218293,35706177:2686980,485622,0 +k105,329:13905273,35706177:572133 ) -g109,329:15879873,35706177 -(109,329:16156955,35706177:501378,78643,0 -$109,329:16156955,35706177 -(109,329:16320809,35706177:173670,78643,0 +g105,329:15879873,35706177 +(105,329:16156955,35706177:501378,78643,0 +$105,329:16156955,35706177 +(105,329:16320809,35706177:173670,78643,0 ) -$109,329:16658333,35706177 +$105,329:16658333,35706177 ) -(109,329:16658333,35706177:501378,78643,0 -(109,329:16822187,35706177:173670,78643,0 +(105,329:16658333,35706177:501378,78643,0 +(105,329:16822187,35706177:173670,78643,0 ) ) -(109,329:17159711,35706177:501378,78643,0 -(109,329:17323565,35706177:173670,78643,0 +(105,329:17159711,35706177:501378,78643,0 +(105,329:17323565,35706177:173670,78643,0 ) ) -(109,329:17661089,35706177:501378,78643,0 -(109,329:17824943,35706177:173670,78643,0 +(105,329:17661089,35706177:501378,78643,0 +(105,329:17824943,35706177:173670,78643,0 ) ) -(109,329:18162467,35706177:501378,78643,0 -(109,329:18326321,35706177:173670,78643,0 +(105,329:18162467,35706177:501378,78643,0 +(105,329:18326321,35706177:173670,78643,0 ) ) -(109,329:18663845,35706177:501378,78643,0 -(109,329:18827699,35706177:173670,78643,0 +(105,329:18663845,35706177:501378,78643,0 +(105,329:18827699,35706177:173670,78643,0 ) ) -(109,329:19165223,35706177:501378,78643,0 -(109,329:19329077,35706177:173670,78643,0 +(105,329:19165223,35706177:501378,78643,0 +(105,329:19329077,35706177:173670,78643,0 ) ) -(109,329:19666601,35706177:501378,78643,0 -(109,329:19830455,35706177:173670,78643,0 +(105,329:19666601,35706177:501378,78643,0 +(105,329:19830455,35706177:173670,78643,0 ) ) -(109,329:20167979,35706177:501378,78643,0 -(109,329:20331833,35706177:173670,78643,0 +(105,329:20167979,35706177:501378,78643,0 +(105,329:20331833,35706177:173670,78643,0 ) ) -(109,329:20669357,35706177:501378,78643,0 -(109,329:20833211,35706177:173670,78643,0 +(105,329:20669357,35706177:501378,78643,0 +(105,329:20833211,35706177:173670,78643,0 ) ) -(109,329:21170735,35706177:501378,78643,0 -(109,329:21334589,35706177:173670,78643,0 +(105,329:21170735,35706177:501378,78643,0 +(105,329:21334589,35706177:173670,78643,0 ) ) -(109,329:21672113,35706177:501378,78643,0 -(109,329:21835967,35706177:173670,78643,0 +(105,329:21672113,35706177:501378,78643,0 +(105,329:21835967,35706177:173670,78643,0 ) ) -(109,329:22173491,35706177:501378,78643,0 -(109,329:22337345,35706177:173670,78643,0 +(105,329:22173491,35706177:501378,78643,0 +(105,329:22337345,35706177:173670,78643,0 ) ) -(109,329:22674869,35706177:501378,78643,0 -(109,329:22838723,35706177:173670,78643,0 +(105,329:22674869,35706177:501378,78643,0 +(105,329:22838723,35706177:173670,78643,0 ) ) -(109,329:23176247,35706177:501378,78643,0 -(109,329:23340101,35706177:173670,78643,0 +(105,329:23176247,35706177:501378,78643,0 +(105,329:23340101,35706177:173670,78643,0 ) ) -(109,329:23677625,35706177:501378,78643,0 -(109,329:23841479,35706177:173670,78643,0 +(105,329:23677625,35706177:501378,78643,0 +(105,329:23841479,35706177:173670,78643,0 ) ) -(109,329:24179003,35706177:501378,78643,0 -(109,329:24342857,35706177:173670,78643,0 +(105,329:24179003,35706177:501378,78643,0 +(105,329:24342857,35706177:173670,78643,0 ) ) -(109,329:24680381,35706177:501378,78643,0 -(109,329:24844235,35706177:173670,78643,0 +(105,329:24680381,35706177:501378,78643,0 +(105,329:24844235,35706177:173670,78643,0 ) ) -(109,329:25181759,35706177:501378,78643,0 -(109,329:25345613,35706177:173670,78643,0 +(105,329:25181759,35706177:501378,78643,0 +(105,329:25345613,35706177:173670,78643,0 ) ) -(109,329:25683137,35706177:501378,78643,0 -(109,329:25846991,35706177:173670,78643,0 +(105,329:25683137,35706177:501378,78643,0 +(105,329:25846991,35706177:173670,78643,0 ) ) -(109,329:26184515,35706177:501378,78643,0 -(109,329:26348369,35706177:173670,78643,0 +(105,329:26184515,35706177:501378,78643,0 +(105,329:26348369,35706177:173670,78643,0 ) ) -(109,329:26685893,35706177:501378,78643,0 -(109,329:26849747,35706177:173670,78643,0 +(105,329:26685893,35706177:501378,78643,0 +(105,329:26849747,35706177:173670,78643,0 ) ) -(109,329:27187271,35706177:501378,78643,0 -(109,329:27351125,35706177:173670,78643,0 +(105,329:27187271,35706177:501378,78643,0 +(105,329:27351125,35706177:173670,78643,0 ) ) -(109,329:27688649,35706177:501378,78643,0 -(109,329:27852503,35706177:173670,78643,0 +(105,329:27688649,35706177:501378,78643,0 +(105,329:27852503,35706177:173670,78643,0 ) ) -(109,329:28190027,35706177:501378,78643,0 -(109,329:28353881,35706177:173670,78643,0 +(105,329:28190027,35706177:501378,78643,0 +(105,329:28353881,35706177:173670,78643,0 ) ) -(109,329:28691405,35706177:501378,78643,0 -(109,329:28855259,35706177:173670,78643,0 +(105,329:28691405,35706177:501378,78643,0 +(105,329:28855259,35706177:173670,78643,0 ) ) -(109,329:29192783,35706177:501378,78643,0 -(109,329:29356637,35706177:173670,78643,0 +(105,329:29192783,35706177:501378,78643,0 +(105,329:29356637,35706177:173670,78643,0 ) ) -(109,329:29694161,35706177:501378,78643,0 -(109,329:29858015,35706177:173670,78643,0 +(105,329:29694161,35706177:501378,78643,0 +(105,329:29858015,35706177:173670,78643,0 ) ) -(109,329:30195539,35706177:501378,78643,0 -(109,329:30359393,35706177:173670,78643,0 +(105,329:30195539,35706177:501378,78643,0 +(105,329:30359393,35706177:173670,78643,0 ) ) -(109,329:30696917,35706177:501378,78643,0 -(109,329:30860771,35706177:173670,78643,0 +(105,329:30696917,35706177:501378,78643,0 +(105,329:30860771,35706177:173670,78643,0 ) ) -(109,329:31403379,35706177:1179650,485622,11795 -k109,329:31403379,35706177:0 -k109,329:31536199,35706177:132820 +(105,329:31239539,35706177:1343490,485622,11795 +k105,329:31239539,35706177:0 +k105,329:31387652,35706177:148113 ) -g109,329:30911859,35706177 -g109,329:32583029,35706177 +g105,329:30911859,35706177 +g105,329:32583029,35706177 ) -(109,331:6630773,36547665:25952256,505283,11795 -g109,331:13905273,36547665 -h109,331:13905273,36547665:4587520,0,0 -h109,331:18492793,36547665:0,0,0 -g109,331:11218293,36547665 -(109,331:11218293,36547665:2686980,485622,0 -k109,331:13905273,36547665:572133 +(105,331:6630773,36547665:25952256,505283,11795 +g105,331:13905273,36547665 +h105,331:13905273,36547665:4587520,0,0 +h105,331:18492793,36547665:0,0,0 +g105,331:11218293,36547665 +(105,331:11218293,36547665:2686980,485622,0 +k105,331:13905273,36547665:572133 ) -g109,331:15796642,36547665 -g109,331:17187316,36547665 -g109,331:18895184,36547665 -g109,331:20739367,36547665 -(109,331:21170735,36547665:501378,78643,0 -$109,331:21170735,36547665 -(109,331:21334589,36547665:173670,78643,0 +g105,331:15796642,36547665 +g105,331:17187316,36547665 +g105,331:18895184,36547665 +g105,331:20739367,36547665 +(105,331:21170735,36547665:501378,78643,0 +$105,331:21170735,36547665 +(105,331:21334589,36547665:173670,78643,0 ) -$109,331:21672113,36547665 +$105,331:21672113,36547665 ) -(109,331:21672113,36547665:501378,78643,0 -(109,331:21835967,36547665:173670,78643,0 +(105,331:21672113,36547665:501378,78643,0 +(105,331:21835967,36547665:173670,78643,0 ) ) -(109,331:22173491,36547665:501378,78643,0 -(109,331:22337345,36547665:173670,78643,0 +(105,331:22173491,36547665:501378,78643,0 +(105,331:22337345,36547665:173670,78643,0 ) ) -(109,331:22674869,36547665:501378,78643,0 -(109,331:22838723,36547665:173670,78643,0 +(105,331:22674869,36547665:501378,78643,0 +(105,331:22838723,36547665:173670,78643,0 ) ) -(109,331:23176247,36547665:501378,78643,0 -(109,331:23340101,36547665:173670,78643,0 +(105,331:23176247,36547665:501378,78643,0 +(105,331:23340101,36547665:173670,78643,0 ) ) -(109,331:23677625,36547665:501378,78643,0 -(109,331:23841479,36547665:173670,78643,0 +(105,331:23677625,36547665:501378,78643,0 +(105,331:23841479,36547665:173670,78643,0 ) ) -(109,331:24179003,36547665:501378,78643,0 -(109,331:24342857,36547665:173670,78643,0 +(105,331:24179003,36547665:501378,78643,0 +(105,331:24342857,36547665:173670,78643,0 ) ) -(109,331:24680381,36547665:501378,78643,0 -(109,331:24844235,36547665:173670,78643,0 +(105,331:24680381,36547665:501378,78643,0 +(105,331:24844235,36547665:173670,78643,0 ) ) -(109,331:25181759,36547665:501378,78643,0 -(109,331:25345613,36547665:173670,78643,0 +(105,331:25181759,36547665:501378,78643,0 +(105,331:25345613,36547665:173670,78643,0 ) ) -(109,331:25683137,36547665:501378,78643,0 -(109,331:25846991,36547665:173670,78643,0 +(105,331:25683137,36547665:501378,78643,0 +(105,331:25846991,36547665:173670,78643,0 ) ) -(109,331:26184515,36547665:501378,78643,0 -(109,331:26348369,36547665:173670,78643,0 +(105,331:26184515,36547665:501378,78643,0 +(105,331:26348369,36547665:173670,78643,0 ) ) -(109,331:26685893,36547665:501378,78643,0 -(109,331:26849747,36547665:173670,78643,0 +(105,331:26685893,36547665:501378,78643,0 +(105,331:26849747,36547665:173670,78643,0 ) ) -(109,331:27187271,36547665:501378,78643,0 -(109,331:27351125,36547665:173670,78643,0 +(105,331:27187271,36547665:501378,78643,0 +(105,331:27351125,36547665:173670,78643,0 ) ) -(109,331:27688649,36547665:501378,78643,0 -(109,331:27852503,36547665:173670,78643,0 +(105,331:27688649,36547665:501378,78643,0 +(105,331:27852503,36547665:173670,78643,0 ) ) -(109,331:28190027,36547665:501378,78643,0 -(109,331:28353881,36547665:173670,78643,0 +(105,331:28190027,36547665:501378,78643,0 +(105,331:28353881,36547665:173670,78643,0 ) ) -(109,331:28691405,36547665:501378,78643,0 -(109,331:28855259,36547665:173670,78643,0 +(105,331:28691405,36547665:501378,78643,0 +(105,331:28855259,36547665:173670,78643,0 ) ) -(109,331:29192783,36547665:501378,78643,0 -(109,331:29356637,36547665:173670,78643,0 +(105,331:29192783,36547665:501378,78643,0 +(105,331:29356637,36547665:173670,78643,0 ) ) -(109,331:29694161,36547665:501378,78643,0 -(109,331:29858015,36547665:173670,78643,0 +(105,331:29694161,36547665:501378,78643,0 +(105,331:29858015,36547665:173670,78643,0 ) ) -(109,331:30195539,36547665:501378,78643,0 -(109,331:30359393,36547665:173670,78643,0 +(105,331:30195539,36547665:501378,78643,0 +(105,331:30359393,36547665:173670,78643,0 ) ) -(109,331:30696917,36547665:501378,78643,0 -(109,331:30860771,36547665:173670,78643,0 +(105,331:30696917,36547665:501378,78643,0 +(105,331:30860771,36547665:173670,78643,0 ) ) -(109,331:31403379,36547665:1179650,485622,11795 -k109,331:31403379,36547665:0 -k109,331:31536199,36547665:132820 +(105,331:31239539,36547665:1343490,485622,11795 +k105,331:31239539,36547665:0 +k105,331:31387652,36547665:148113 ) -g109,331:30911859,36547665 -g109,331:32583029,36547665 +g105,331:30911859,36547665 +g105,331:32583029,36547665 ) -(109,333:6630773,37389153:25952256,513147,11795 -g109,333:13905273,37389153 -h109,333:13905273,37389153:4587520,0,0 -h109,333:18492793,37389153:0,0,0 -g109,333:11218293,37389153 -(109,333:11218293,37389153:2686980,485622,11795 -k109,333:13905273,37389153:572133 +(105,333:6630773,37389153:25952256,513147,11795 +g105,333:13905273,37389153 +h105,333:13905273,37389153:4587520,0,0 +h105,333:18492793,37389153:0,0,0 +g105,333:11218293,37389153 +(105,333:11218293,37389153:2686980,485622,11795 +k105,333:13905273,37389153:572133 ) -g109,333:18264072,37389153 -g109,333:20166582,37389153 -(109,333:20167979,37389153:501378,78643,0 -$109,333:20167979,37389153 -(109,333:20331833,37389153:173670,78643,0 +g105,333:18264072,37389153 +g105,333:20166582,37389153 +(105,333:20167979,37389153:501378,78643,0 +$105,333:20167979,37389153 +(105,333:20331833,37389153:173670,78643,0 ) -$109,333:20669357,37389153 +$105,333:20669357,37389153 ) -(109,333:20669357,37389153:501378,78643,0 -(109,333:20833211,37389153:173670,78643,0 +(105,333:20669357,37389153:501378,78643,0 +(105,333:20833211,37389153:173670,78643,0 ) ) -(109,333:21170735,37389153:501378,78643,0 -(109,333:21334589,37389153:173670,78643,0 +(105,333:21170735,37389153:501378,78643,0 +(105,333:21334589,37389153:173670,78643,0 ) ) -(109,333:21672113,37389153:501378,78643,0 -(109,333:21835967,37389153:173670,78643,0 +(105,333:21672113,37389153:501378,78643,0 +(105,333:21835967,37389153:173670,78643,0 ) ) -(109,333:22173491,37389153:501378,78643,0 -(109,333:22337345,37389153:173670,78643,0 +(105,333:22173491,37389153:501378,78643,0 +(105,333:22337345,37389153:173670,78643,0 ) ) -(109,333:22674869,37389153:501378,78643,0 -(109,333:22838723,37389153:173670,78643,0 +(105,333:22674869,37389153:501378,78643,0 +(105,333:22838723,37389153:173670,78643,0 ) ) -(109,333:23176247,37389153:501378,78643,0 -(109,333:23340101,37389153:173670,78643,0 +(105,333:23176247,37389153:501378,78643,0 +(105,333:23340101,37389153:173670,78643,0 ) ) -(109,333:23677625,37389153:501378,78643,0 -(109,333:23841479,37389153:173670,78643,0 +(105,333:23677625,37389153:501378,78643,0 +(105,333:23841479,37389153:173670,78643,0 ) ) -(109,333:24179003,37389153:501378,78643,0 -(109,333:24342857,37389153:173670,78643,0 +(105,333:24179003,37389153:501378,78643,0 +(105,333:24342857,37389153:173670,78643,0 ) ) -(109,333:24680381,37389153:501378,78643,0 -(109,333:24844235,37389153:173670,78643,0 +(105,333:24680381,37389153:501378,78643,0 +(105,333:24844235,37389153:173670,78643,0 ) ) -(109,333:25181759,37389153:501378,78643,0 -(109,333:25345613,37389153:173670,78643,0 +(105,333:25181759,37389153:501378,78643,0 +(105,333:25345613,37389153:173670,78643,0 ) ) -(109,333:25683137,37389153:501378,78643,0 -(109,333:25846991,37389153:173670,78643,0 +(105,333:25683137,37389153:501378,78643,0 +(105,333:25846991,37389153:173670,78643,0 ) ) -(109,333:26184515,37389153:501378,78643,0 -(109,333:26348369,37389153:173670,78643,0 +(105,333:26184515,37389153:501378,78643,0 +(105,333:26348369,37389153:173670,78643,0 ) ) -(109,333:26685893,37389153:501378,78643,0 -(109,333:26849747,37389153:173670,78643,0 +(105,333:26685893,37389153:501378,78643,0 +(105,333:26849747,37389153:173670,78643,0 ) ) -(109,333:27187271,37389153:501378,78643,0 -(109,333:27351125,37389153:173670,78643,0 +(105,333:27187271,37389153:501378,78643,0 +(105,333:27351125,37389153:173670,78643,0 ) ) -(109,333:27688649,37389153:501378,78643,0 -(109,333:27852503,37389153:173670,78643,0 +(105,333:27688649,37389153:501378,78643,0 +(105,333:27852503,37389153:173670,78643,0 ) ) -(109,333:28190027,37389153:501378,78643,0 -(109,333:28353881,37389153:173670,78643,0 +(105,333:28190027,37389153:501378,78643,0 +(105,333:28353881,37389153:173670,78643,0 ) ) -(109,333:28691405,37389153:501378,78643,0 -(109,333:28855259,37389153:173670,78643,0 +(105,333:28691405,37389153:501378,78643,0 +(105,333:28855259,37389153:173670,78643,0 ) ) -(109,333:29192783,37389153:501378,78643,0 -(109,333:29356637,37389153:173670,78643,0 +(105,333:29192783,37389153:501378,78643,0 +(105,333:29356637,37389153:173670,78643,0 ) ) -(109,333:29694161,37389153:501378,78643,0 -(109,333:29858015,37389153:173670,78643,0 +(105,333:29694161,37389153:501378,78643,0 +(105,333:29858015,37389153:173670,78643,0 ) ) -(109,333:30195539,37389153:501378,78643,0 -(109,333:30359393,37389153:173670,78643,0 +(105,333:30195539,37389153:501378,78643,0 +(105,333:30359393,37389153:173670,78643,0 ) ) -(109,333:30696917,37389153:501378,78643,0 -(109,333:30860771,37389153:173670,78643,0 +(105,333:30696917,37389153:501378,78643,0 +(105,333:30860771,37389153:173670,78643,0 ) ) -(109,333:31403379,37389153:1179650,485622,11795 -k109,333:31403379,37389153:0 -k109,333:31536199,37389153:132820 +(105,333:31239539,37389153:1343490,485622,11795 +k105,333:31239539,37389153:0 +k105,333:31387652,37389153:148113 ) -g109,333:30911859,37389153 -g109,333:32583029,37389153 +g105,333:30911859,37389153 +g105,333:32583029,37389153 ) -(109,335:6630773,38230641:25952256,513147,138281 -g109,335:13905273,38230641 -h109,335:13905273,38230641:4587520,0,0 -h109,335:18492793,38230641:0,0,0 -g109,335:11218293,38230641 -(109,335:11218293,38230641:2686980,485622,0 -k109,335:13905273,38230641:572133 +(105,335:6630773,38230641:25952256,513147,138281 +g105,335:13905273,38230641 +h105,335:13905273,38230641:4587520,0,0 +h105,335:18492793,38230641:0,0,0 +g105,335:11218293,38230641 +(105,335:11218293,38230641:2686980,485622,0 +k105,335:13905273,38230641:572133 ) -g109,335:16673513,38230641 -g109,335:17532034,38230641 -$109,335:17532034,38230641 -$109,335:18034695,38230641 -g109,335:18233924,38230641 -g109,335:19624598,38230641 -$109,335:19624598,38230641 -$109,335:20176411,38230641 -g109,335:20375640,38230641 -g109,335:21774178,38230641 -(109,335:22173491,38230641:501378,78643,0 -$109,335:22173491,38230641 -(109,335:22337345,38230641:173670,78643,0 +g105,335:16673513,38230641 +g105,335:17532034,38230641 +$105,335:17532034,38230641 +$105,335:18034695,38230641 +g105,335:18233924,38230641 +g105,335:19624598,38230641 +$105,335:19624598,38230641 +$105,335:20176411,38230641 +g105,335:20375640,38230641 +g105,335:21774178,38230641 +(105,335:22173491,38230641:501378,78643,0 +$105,335:22173491,38230641 +(105,335:22337345,38230641:173670,78643,0 ) -$109,335:22674869,38230641 +$105,335:22674869,38230641 ) -(109,335:22674869,38230641:501378,78643,0 -(109,335:22838723,38230641:173670,78643,0 +(105,335:22674869,38230641:501378,78643,0 +(105,335:22838723,38230641:173670,78643,0 ) ) -(109,335:23176247,38230641:501378,78643,0 -(109,335:23340101,38230641:173670,78643,0 +(105,335:23176247,38230641:501378,78643,0 +(105,335:23340101,38230641:173670,78643,0 ) ) -(109,335:23677625,38230641:501378,78643,0 -(109,335:23841479,38230641:173670,78643,0 +(105,335:23677625,38230641:501378,78643,0 +(105,335:23841479,38230641:173670,78643,0 ) ) -(109,335:24179003,38230641:501378,78643,0 -(109,335:24342857,38230641:173670,78643,0 +(105,335:24179003,38230641:501378,78643,0 +(105,335:24342857,38230641:173670,78643,0 ) ) -(109,335:24680381,38230641:501378,78643,0 -(109,335:24844235,38230641:173670,78643,0 +(105,335:24680381,38230641:501378,78643,0 +(105,335:24844235,38230641:173670,78643,0 ) ) -(109,335:25181759,38230641:501378,78643,0 -(109,335:25345613,38230641:173670,78643,0 +(105,335:25181759,38230641:501378,78643,0 +(105,335:25345613,38230641:173670,78643,0 ) ) -(109,335:25683137,38230641:501378,78643,0 -(109,335:25846991,38230641:173670,78643,0 +(105,335:25683137,38230641:501378,78643,0 +(105,335:25846991,38230641:173670,78643,0 ) ) -(109,335:26184515,38230641:501378,78643,0 -(109,335:26348369,38230641:173670,78643,0 +(105,335:26184515,38230641:501378,78643,0 +(105,335:26348369,38230641:173670,78643,0 ) ) -(109,335:26685893,38230641:501378,78643,0 -(109,335:26849747,38230641:173670,78643,0 +(105,335:26685893,38230641:501378,78643,0 +(105,335:26849747,38230641:173670,78643,0 ) ) -(109,335:27187271,38230641:501378,78643,0 -(109,335:27351125,38230641:173670,78643,0 +(105,335:27187271,38230641:501378,78643,0 +(105,335:27351125,38230641:173670,78643,0 ) ) -(109,335:27688649,38230641:501378,78643,0 -(109,335:27852503,38230641:173670,78643,0 +(105,335:27688649,38230641:501378,78643,0 +(105,335:27852503,38230641:173670,78643,0 ) ) -(109,335:28190027,38230641:501378,78643,0 -(109,335:28353881,38230641:173670,78643,0 +(105,335:28190027,38230641:501378,78643,0 +(105,335:28353881,38230641:173670,78643,0 ) ) -(109,335:28691405,38230641:501378,78643,0 -(109,335:28855259,38230641:173670,78643,0 +(105,335:28691405,38230641:501378,78643,0 +(105,335:28855259,38230641:173670,78643,0 ) ) -(109,335:29192783,38230641:501378,78643,0 -(109,335:29356637,38230641:173670,78643,0 +(105,335:29192783,38230641:501378,78643,0 +(105,335:29356637,38230641:173670,78643,0 ) ) -(109,335:29694161,38230641:501378,78643,0 -(109,335:29858015,38230641:173670,78643,0 +(105,335:29694161,38230641:501378,78643,0 +(105,335:29858015,38230641:173670,78643,0 ) ) -(109,335:30195539,38230641:501378,78643,0 -(109,335:30359393,38230641:173670,78643,0 +(105,335:30195539,38230641:501378,78643,0 +(105,335:30359393,38230641:173670,78643,0 ) ) -(109,335:30696917,38230641:501378,78643,0 -(109,335:30860771,38230641:173670,78643,0 +(105,335:30696917,38230641:501378,78643,0 +(105,335:30860771,38230641:173670,78643,0 ) ) -(109,335:31403379,38230641:1179650,485622,11795 -k109,335:31403379,38230641:0 -k109,335:31536199,38230641:132820 +(105,335:31239539,38230641:1343490,485622,11795 +k105,335:31239539,38230641:0 +k105,335:31387652,38230641:148113 ) -g109,335:30911859,38230641 -g109,335:32583029,38230641 +g105,335:30911859,38230641 +g105,335:32583029,38230641 ) -(109,337:6630773,39072129:25952256,505283,126483 -g109,337:13905273,39072129 -h109,337:13905273,39072129:4587520,0,0 -h109,337:18492793,39072129:0,0,0 -g109,337:11218293,39072129 -(109,337:11218293,39072129:2686980,485622,11795 -k109,337:13905273,39072129:572133 +(105,337:6630773,39072129:25952256,505283,126483 +g105,337:13905273,39072129 +h105,337:13905273,39072129:4587520,0,0 +h105,337:18492793,39072129:0,0,0 +g105,337:11218293,39072129 +(105,337:11218293,39072129:2686980,485622,11795 +k105,337:13905273,39072129:572133 ) -g109,337:17376059,39072129 -g109,337:18774597,39072129 -(109,337:19165223,39072129:501378,78643,0 -$109,337:19165223,39072129 -(109,337:19329077,39072129:173670,78643,0 +g105,337:17376059,39072129 +g105,337:18774597,39072129 +(105,337:19165223,39072129:501378,78643,0 +$105,337:19165223,39072129 +(105,337:19329077,39072129:173670,78643,0 ) -$109,337:19666601,39072129 +$105,337:19666601,39072129 ) -(109,337:19666601,39072129:501378,78643,0 -(109,337:19830455,39072129:173670,78643,0 +(105,337:19666601,39072129:501378,78643,0 +(105,337:19830455,39072129:173670,78643,0 ) ) -(109,337:20167979,39072129:501378,78643,0 -(109,337:20331833,39072129:173670,78643,0 +(105,337:20167979,39072129:501378,78643,0 +(105,337:20331833,39072129:173670,78643,0 ) ) -(109,337:20669357,39072129:501378,78643,0 -(109,337:20833211,39072129:173670,78643,0 +(105,337:20669357,39072129:501378,78643,0 +(105,337:20833211,39072129:173670,78643,0 ) ) -(109,337:21170735,39072129:501378,78643,0 -(109,337:21334589,39072129:173670,78643,0 +(105,337:21170735,39072129:501378,78643,0 +(105,337:21334589,39072129:173670,78643,0 ) ) -(109,337:21672113,39072129:501378,78643,0 -(109,337:21835967,39072129:173670,78643,0 +(105,337:21672113,39072129:501378,78643,0 +(105,337:21835967,39072129:173670,78643,0 ) ) -(109,337:22173491,39072129:501378,78643,0 -(109,337:22337345,39072129:173670,78643,0 +(105,337:22173491,39072129:501378,78643,0 +(105,337:22337345,39072129:173670,78643,0 ) ) -(109,337:22674869,39072129:501378,78643,0 -(109,337:22838723,39072129:173670,78643,0 +(105,337:22674869,39072129:501378,78643,0 +(105,337:22838723,39072129:173670,78643,0 ) ) -(109,337:23176247,39072129:501378,78643,0 -(109,337:23340101,39072129:173670,78643,0 +(105,337:23176247,39072129:501378,78643,0 +(105,337:23340101,39072129:173670,78643,0 ) ) -(109,337:23677625,39072129:501378,78643,0 -(109,337:23841479,39072129:173670,78643,0 +(105,337:23677625,39072129:501378,78643,0 +(105,337:23841479,39072129:173670,78643,0 ) ) -(109,337:24179003,39072129:501378,78643,0 -(109,337:24342857,39072129:173670,78643,0 +(105,337:24179003,39072129:501378,78643,0 +(105,337:24342857,39072129:173670,78643,0 ) ) -(109,337:24680381,39072129:501378,78643,0 -(109,337:24844235,39072129:173670,78643,0 +(105,337:24680381,39072129:501378,78643,0 +(105,337:24844235,39072129:173670,78643,0 ) ) -(109,337:25181759,39072129:501378,78643,0 -(109,337:25345613,39072129:173670,78643,0 +(105,337:25181759,39072129:501378,78643,0 +(105,337:25345613,39072129:173670,78643,0 ) ) -(109,337:25683137,39072129:501378,78643,0 -(109,337:25846991,39072129:173670,78643,0 +(105,337:25683137,39072129:501378,78643,0 +(105,337:25846991,39072129:173670,78643,0 ) ) -(109,337:26184515,39072129:501378,78643,0 -(109,337:26348369,39072129:173670,78643,0 +(105,337:26184515,39072129:501378,78643,0 +(105,337:26348369,39072129:173670,78643,0 ) ) -(109,337:26685893,39072129:501378,78643,0 -(109,337:26849747,39072129:173670,78643,0 +(105,337:26685893,39072129:501378,78643,0 +(105,337:26849747,39072129:173670,78643,0 ) ) -(109,337:27187271,39072129:501378,78643,0 -(109,337:27351125,39072129:173670,78643,0 +(105,337:27187271,39072129:501378,78643,0 +(105,337:27351125,39072129:173670,78643,0 ) ) -(109,337:27688649,39072129:501378,78643,0 -(109,337:27852503,39072129:173670,78643,0 +(105,337:27688649,39072129:501378,78643,0 +(105,337:27852503,39072129:173670,78643,0 ) ) -(109,337:28190027,39072129:501378,78643,0 -(109,337:28353881,39072129:173670,78643,0 +(105,337:28190027,39072129:501378,78643,0 +(105,337:28353881,39072129:173670,78643,0 ) ) -(109,337:28691405,39072129:501378,78643,0 -(109,337:28855259,39072129:173670,78643,0 +(105,337:28691405,39072129:501378,78643,0 +(105,337:28855259,39072129:173670,78643,0 ) ) -(109,337:29192783,39072129:501378,78643,0 -(109,337:29356637,39072129:173670,78643,0 +(105,337:29192783,39072129:501378,78643,0 +(105,337:29356637,39072129:173670,78643,0 ) ) -(109,337:29694161,39072129:501378,78643,0 -(109,337:29858015,39072129:173670,78643,0 +(105,337:29694161,39072129:501378,78643,0 +(105,337:29858015,39072129:173670,78643,0 ) ) -(109,337:30195539,39072129:501378,78643,0 -(109,337:30359393,39072129:173670,78643,0 +(105,337:30195539,39072129:501378,78643,0 +(105,337:30359393,39072129:173670,78643,0 ) ) -(109,337:30696917,39072129:501378,78643,0 -(109,337:30860771,39072129:173670,78643,0 +(105,337:30696917,39072129:501378,78643,0 +(105,337:30860771,39072129:173670,78643,0 ) ) -(109,337:31403379,39072129:1179650,485622,11795 -k109,337:31403379,39072129:0 -k109,337:31536199,39072129:132820 +(105,337:31239539,39072129:1343490,485622,11795 +k105,337:31239539,39072129:0 +k105,337:31387652,39072129:148113 ) -g109,337:30911859,39072129 -g109,337:32583029,39072129 +g105,337:30911859,39072129 +g105,337:32583029,39072129 ) -(109,339:6630773,39913617:25952256,513147,138281 -g109,339:11218293,39913617 -h109,339:11218293,39913617:2490370,0,0 -h109,339:13708663,39913617:0,0,0 -g109,339:9121143,39913617 -(109,339:9121143,39913617:2097150,485622,11795 -k109,339:11218293,39913617:554432 +(105,339:6630773,39913617:25952256,513147,138281 +g105,339:11218293,39913617 +h105,339:11218293,39913617:2490370,0,0 +h105,339:13708663,39913617:0,0,0 +g105,339:9121143,39913617 +(105,339:9121143,39913617:2097150,485622,11795 +k105,339:11218293,39913617:554432 ) -g109,339:13020533,39913617 -g109,339:14411207,39913617 -g109,339:15991280,39913617 -g109,339:18093019,39913617 -g109,339:19239899,39913617 -$109,339:19239899,39913617 -$109,339:19742560,39913617 -g109,339:19941789,39913617 -g109,339:21332463,39913617 -$109,339:21332463,39913617 -$109,339:21884276,39913617 -g109,339:21884276,39913617 -(109,339:22173491,39913617:501378,78643,0 -$109,339:22173491,39913617 -(109,339:22337345,39913617:173670,78643,0 +g105,339:13020533,39913617 +g105,339:14411207,39913617 +g105,339:15991280,39913617 +g105,339:18093019,39913617 +g105,339:19239899,39913617 +$105,339:19239899,39913617 +$105,339:19742560,39913617 +g105,339:19941789,39913617 +g105,339:21332463,39913617 +$105,339:21332463,39913617 +$105,339:21884276,39913617 +g105,339:21884276,39913617 +(105,339:22173491,39913617:501378,78643,0 +$105,339:22173491,39913617 +(105,339:22337345,39913617:173670,78643,0 ) -$109,339:22674869,39913617 +$105,339:22674869,39913617 ) -(109,339:22674869,39913617:501378,78643,0 -(109,339:22838723,39913617:173670,78643,0 +(105,339:22674869,39913617:501378,78643,0 +(105,339:22838723,39913617:173670,78643,0 ) ) -(109,339:23176247,39913617:501378,78643,0 -(109,339:23340101,39913617:173670,78643,0 +(105,339:23176247,39913617:501378,78643,0 +(105,339:23340101,39913617:173670,78643,0 ) ) -(109,339:23677625,39913617:501378,78643,0 -(109,339:23841479,39913617:173670,78643,0 +(105,339:23677625,39913617:501378,78643,0 +(105,339:23841479,39913617:173670,78643,0 ) ) -(109,339:24179003,39913617:501378,78643,0 -(109,339:24342857,39913617:173670,78643,0 +(105,339:24179003,39913617:501378,78643,0 +(105,339:24342857,39913617:173670,78643,0 ) ) -(109,339:24680381,39913617:501378,78643,0 -(109,339:24844235,39913617:173670,78643,0 +(105,339:24680381,39913617:501378,78643,0 +(105,339:24844235,39913617:173670,78643,0 ) ) -(109,339:25181759,39913617:501378,78643,0 -(109,339:25345613,39913617:173670,78643,0 +(105,339:25181759,39913617:501378,78643,0 +(105,339:25345613,39913617:173670,78643,0 ) ) -(109,339:25683137,39913617:501378,78643,0 -(109,339:25846991,39913617:173670,78643,0 +(105,339:25683137,39913617:501378,78643,0 +(105,339:25846991,39913617:173670,78643,0 ) ) -(109,339:26184515,39913617:501378,78643,0 -(109,339:26348369,39913617:173670,78643,0 +(105,339:26184515,39913617:501378,78643,0 +(105,339:26348369,39913617:173670,78643,0 ) ) -(109,339:26685893,39913617:501378,78643,0 -(109,339:26849747,39913617:173670,78643,0 +(105,339:26685893,39913617:501378,78643,0 +(105,339:26849747,39913617:173670,78643,0 ) ) -(109,339:27187271,39913617:501378,78643,0 -(109,339:27351125,39913617:173670,78643,0 +(105,339:27187271,39913617:501378,78643,0 +(105,339:27351125,39913617:173670,78643,0 ) ) -(109,339:27688649,39913617:501378,78643,0 -(109,339:27852503,39913617:173670,78643,0 +(105,339:27688649,39913617:501378,78643,0 +(105,339:27852503,39913617:173670,78643,0 ) ) -(109,339:28190027,39913617:501378,78643,0 -(109,339:28353881,39913617:173670,78643,0 +(105,339:28190027,39913617:501378,78643,0 +(105,339:28353881,39913617:173670,78643,0 ) ) -(109,339:28691405,39913617:501378,78643,0 -(109,339:28855259,39913617:173670,78643,0 +(105,339:28691405,39913617:501378,78643,0 +(105,339:28855259,39913617:173670,78643,0 ) ) -(109,339:29192783,39913617:501378,78643,0 -(109,339:29356637,39913617:173670,78643,0 +(105,339:29192783,39913617:501378,78643,0 +(105,339:29356637,39913617:173670,78643,0 ) ) -(109,339:29694161,39913617:501378,78643,0 -(109,339:29858015,39913617:173670,78643,0 +(105,339:29694161,39913617:501378,78643,0 +(105,339:29858015,39913617:173670,78643,0 ) ) -(109,339:30195539,39913617:501378,78643,0 -(109,339:30359393,39913617:173670,78643,0 +(105,339:30195539,39913617:501378,78643,0 +(105,339:30359393,39913617:173670,78643,0 ) ) -(109,339:30696917,39913617:501378,78643,0 -(109,339:30860771,39913617:173670,78643,0 +(105,339:30696917,39913617:501378,78643,0 +(105,339:30860771,39913617:173670,78643,0 ) ) -(109,339:31403379,39913617:1179650,485622,11795 -k109,339:31403379,39913617:0 -k109,339:31536199,39913617:132820 +(105,339:31239539,39913617:1343490,485622,11795 +k105,339:31239539,39913617:0 +k105,339:31387652,39913617:148113 ) -g109,339:30911859,39913617 -g109,339:32583029,39913617 +g105,339:30911859,39913617 +g105,339:32583029,39913617 ) -(109,341:6630773,40755105:25952256,513147,138281 -g109,341:11218293,40755105 -h109,341:11218293,40755105:2490370,0,0 -h109,341:13708663,40755105:0,0,0 -g109,341:9121143,40755105 -(109,341:9121143,40755105:2097150,481690,0 -k109,341:11218293,40755105:554432 +(105,341:6630773,40755105:25952256,513147,138281 +g105,341:11218293,40755105 +h105,341:11218293,40755105:2490370,0,0 +h105,341:13708663,40755105:0,0,0 +g105,341:9121143,40755105 +(105,341:9121143,40755105:2097150,481690,0 +k105,341:11218293,40755105:554432 ) -g109,341:14025855,40755105 -g109,341:16127594,40755105 -g109,341:17274474,40755105 -$109,341:17274474,40755105 -$109,341:17777135,40755105 -g109,341:17976364,40755105 -g109,341:19367038,40755105 -$109,341:19367038,40755105 -$109,341:19918851,40755105 -g109,341:19918851,40755105 -(109,341:20167979,40755105:501378,78643,0 -$109,341:20167979,40755105 -(109,341:20331833,40755105:173670,78643,0 +g105,341:14025855,40755105 +g105,341:16127594,40755105 +g105,341:17274474,40755105 +$105,341:17274474,40755105 +$105,341:17777135,40755105 +g105,341:17976364,40755105 +g105,341:19367038,40755105 +$105,341:19367038,40755105 +$105,341:19918851,40755105 +g105,341:19918851,40755105 +(105,341:20167979,40755105:501378,78643,0 +$105,341:20167979,40755105 +(105,341:20331833,40755105:173670,78643,0 ) -$109,341:20669357,40755105 +$105,341:20669357,40755105 ) -(109,341:20669357,40755105:501378,78643,0 -(109,341:20833211,40755105:173670,78643,0 +(105,341:20669357,40755105:501378,78643,0 +(105,341:20833211,40755105:173670,78643,0 ) ) -(109,341:21170735,40755105:501378,78643,0 -(109,341:21334589,40755105:173670,78643,0 +(105,341:21170735,40755105:501378,78643,0 +(105,341:21334589,40755105:173670,78643,0 ) ) -(109,341:21672113,40755105:501378,78643,0 -(109,341:21835967,40755105:173670,78643,0 +(105,341:21672113,40755105:501378,78643,0 +(105,341:21835967,40755105:173670,78643,0 ) ) -(109,341:22173491,40755105:501378,78643,0 -(109,341:22337345,40755105:173670,78643,0 +(105,341:22173491,40755105:501378,78643,0 +(105,341:22337345,40755105:173670,78643,0 ) ) -(109,341:22674869,40755105:501378,78643,0 -(109,341:22838723,40755105:173670,78643,0 +(105,341:22674869,40755105:501378,78643,0 +(105,341:22838723,40755105:173670,78643,0 ) ) -(109,341:23176247,40755105:501378,78643,0 -(109,341:23340101,40755105:173670,78643,0 +(105,341:23176247,40755105:501378,78643,0 +(105,341:23340101,40755105:173670,78643,0 ) ) -(109,341:23677625,40755105:501378,78643,0 -(109,341:23841479,40755105:173670,78643,0 +(105,341:23677625,40755105:501378,78643,0 +(105,341:23841479,40755105:173670,78643,0 ) ) -(109,341:24179003,40755105:501378,78643,0 -(109,341:24342857,40755105:173670,78643,0 +(105,341:24179003,40755105:501378,78643,0 +(105,341:24342857,40755105:173670,78643,0 ) ) -(109,341:24680381,40755105:501378,78643,0 -(109,341:24844235,40755105:173670,78643,0 +(105,341:24680381,40755105:501378,78643,0 +(105,341:24844235,40755105:173670,78643,0 ) ) -(109,341:25181759,40755105:501378,78643,0 -(109,341:25345613,40755105:173670,78643,0 +(105,341:25181759,40755105:501378,78643,0 +(105,341:25345613,40755105:173670,78643,0 ) ) -(109,341:25683137,40755105:501378,78643,0 -(109,341:25846991,40755105:173670,78643,0 +(105,341:25683137,40755105:501378,78643,0 +(105,341:25846991,40755105:173670,78643,0 ) ) -(109,341:26184515,40755105:501378,78643,0 -(109,341:26348369,40755105:173670,78643,0 +(105,341:26184515,40755105:501378,78643,0 +(105,341:26348369,40755105:173670,78643,0 ) ) -(109,341:26685893,40755105:501378,78643,0 -(109,341:26849747,40755105:173670,78643,0 +(105,341:26685893,40755105:501378,78643,0 +(105,341:26849747,40755105:173670,78643,0 ) ) -(109,341:27187271,40755105:501378,78643,0 -(109,341:27351125,40755105:173670,78643,0 +(105,341:27187271,40755105:501378,78643,0 +(105,341:27351125,40755105:173670,78643,0 ) ) -(109,341:27688649,40755105:501378,78643,0 -(109,341:27852503,40755105:173670,78643,0 +(105,341:27688649,40755105:501378,78643,0 +(105,341:27852503,40755105:173670,78643,0 ) ) -(109,341:28190027,40755105:501378,78643,0 -(109,341:28353881,40755105:173670,78643,0 +(105,341:28190027,40755105:501378,78643,0 +(105,341:28353881,40755105:173670,78643,0 ) ) -(109,341:28691405,40755105:501378,78643,0 -(109,341:28855259,40755105:173670,78643,0 +(105,341:28691405,40755105:501378,78643,0 +(105,341:28855259,40755105:173670,78643,0 ) ) -(109,341:29192783,40755105:501378,78643,0 -(109,341:29356637,40755105:173670,78643,0 +(105,341:29192783,40755105:501378,78643,0 +(105,341:29356637,40755105:173670,78643,0 ) ) -(109,341:29694161,40755105:501378,78643,0 -(109,341:29858015,40755105:173670,78643,0 +(105,341:29694161,40755105:501378,78643,0 +(105,341:29858015,40755105:173670,78643,0 ) ) -(109,341:30195539,40755105:501378,78643,0 -(109,341:30359393,40755105:173670,78643,0 +(105,341:30195539,40755105:501378,78643,0 +(105,341:30359393,40755105:173670,78643,0 ) ) -(109,341:30696917,40755105:501378,78643,0 -(109,341:30860771,40755105:173670,78643,0 +(105,341:30696917,40755105:501378,78643,0 +(105,341:30860771,40755105:173670,78643,0 ) ) -(109,341:31403379,40755105:1179650,485622,11795 -k109,341:31403379,40755105:0 -k109,341:31536199,40755105:132820 +(105,341:31239539,40755105:1343490,485622,11795 +k105,341:31239539,40755105:0 +k105,341:31387652,40755105:148113 ) -g109,341:30911859,40755105 -g109,341:32583029,40755105 +g105,341:30911859,40755105 +g105,341:32583029,40755105 ) -(109,343:6630773,41596593:25952256,485622,11795 -g109,343:11218293,41596593 -h109,343:11218293,41596593:2490370,0,0 -h109,343:13708663,41596593:0,0,0 -g109,343:9121143,41596593 -(109,343:9121143,41596593:2097150,473825,11795 -k109,343:11218293,41596593:554432 +(105,343:6630773,41596593:25952256,485622,11795 +g105,343:11218293,41596593 +h105,343:11218293,41596593:2490370,0,0 +h105,343:13708663,41596593:0,0,0 +g105,343:9121143,41596593 +(105,343:9121143,41596593:2097150,473825,11795 +k105,343:11218293,41596593:554432 ) -g109,343:12511974,41596593 -(109,343:12647309,41596593:501378,78643,0 -$109,343:12647309,41596593 -(109,343:12811163,41596593:173670,78643,0 +g105,343:12511974,41596593 +(105,343:12647309,41596593:501378,78643,0 +$105,343:12647309,41596593 +(105,343:12811163,41596593:173670,78643,0 ) -$109,343:13148687,41596593 +$105,343:13148687,41596593 ) -(109,343:13148687,41596593:501378,78643,0 -(109,343:13312541,41596593:173670,78643,0 +(105,343:13148687,41596593:501378,78643,0 +(105,343:13312541,41596593:173670,78643,0 ) ) -(109,343:13650065,41596593:501378,78643,0 -(109,343:13813919,41596593:173670,78643,0 +(105,343:13650065,41596593:501378,78643,0 +(105,343:13813919,41596593:173670,78643,0 ) ) -(109,343:14151443,41596593:501378,78643,0 -(109,343:14315297,41596593:173670,78643,0 +(105,343:14151443,41596593:501378,78643,0 +(105,343:14315297,41596593:173670,78643,0 ) ) -(109,343:14652821,41596593:501378,78643,0 -(109,343:14816675,41596593:173670,78643,0 +(105,343:14652821,41596593:501378,78643,0 +(105,343:14816675,41596593:173670,78643,0 ) ) -(109,343:15154199,41596593:501378,78643,0 -(109,343:15318053,41596593:173670,78643,0 +(105,343:15154199,41596593:501378,78643,0 +(105,343:15318053,41596593:173670,78643,0 ) ) -(109,343:15655577,41596593:501378,78643,0 -(109,343:15819431,41596593:173670,78643,0 +(105,343:15655577,41596593:501378,78643,0 +(105,343:15819431,41596593:173670,78643,0 ) ) -(109,343:16156955,41596593:501378,78643,0 -(109,343:16320809,41596593:173670,78643,0 +(105,343:16156955,41596593:501378,78643,0 +(105,343:16320809,41596593:173670,78643,0 ) ) -(109,343:16658333,41596593:501378,78643,0 -(109,343:16822187,41596593:173670,78643,0 +(105,343:16658333,41596593:501378,78643,0 +(105,343:16822187,41596593:173670,78643,0 ) ) -(109,343:17159711,41596593:501378,78643,0 -(109,343:17323565,41596593:173670,78643,0 +(105,343:17159711,41596593:501378,78643,0 +(105,343:17323565,41596593:173670,78643,0 ) ) -(109,343:17661089,41596593:501378,78643,0 -(109,343:17824943,41596593:173670,78643,0 +(105,343:17661089,41596593:501378,78643,0 +(105,343:17824943,41596593:173670,78643,0 ) ) -(109,343:18162467,41596593:501378,78643,0 -(109,343:18326321,41596593:173670,78643,0 +(105,343:18162467,41596593:501378,78643,0 +(105,343:18326321,41596593:173670,78643,0 ) ) -(109,343:18663845,41596593:501378,78643,0 -(109,343:18827699,41596593:173670,78643,0 +(105,343:18663845,41596593:501378,78643,0 +(105,343:18827699,41596593:173670,78643,0 ) ) -(109,343:19165223,41596593:501378,78643,0 -(109,343:19329077,41596593:173670,78643,0 +(105,343:19165223,41596593:501378,78643,0 +(105,343:19329077,41596593:173670,78643,0 ) ) -(109,343:19666601,41596593:501378,78643,0 -(109,343:19830455,41596593:173670,78643,0 +(105,343:19666601,41596593:501378,78643,0 +(105,343:19830455,41596593:173670,78643,0 ) ) -(109,343:20167979,41596593:501378,78643,0 -(109,343:20331833,41596593:173670,78643,0 +(105,343:20167979,41596593:501378,78643,0 +(105,343:20331833,41596593:173670,78643,0 ) ) -(109,343:20669357,41596593:501378,78643,0 -(109,343:20833211,41596593:173670,78643,0 +(105,343:20669357,41596593:501378,78643,0 +(105,343:20833211,41596593:173670,78643,0 ) ) -(109,343:21170735,41596593:501378,78643,0 -(109,343:21334589,41596593:173670,78643,0 +(105,343:21170735,41596593:501378,78643,0 +(105,343:21334589,41596593:173670,78643,0 ) ) -(109,343:21672113,41596593:501378,78643,0 -(109,343:21835967,41596593:173670,78643,0 +(105,343:21672113,41596593:501378,78643,0 +(105,343:21835967,41596593:173670,78643,0 ) ) -(109,343:22173491,41596593:501378,78643,0 -(109,343:22337345,41596593:173670,78643,0 +(105,343:22173491,41596593:501378,78643,0 +(105,343:22337345,41596593:173670,78643,0 ) ) -(109,343:22674869,41596593:501378,78643,0 -(109,343:22838723,41596593:173670,78643,0 +(105,343:22674869,41596593:501378,78643,0 +(105,343:22838723,41596593:173670,78643,0 ) ) -(109,343:23176247,41596593:501378,78643,0 -(109,343:23340101,41596593:173670,78643,0 +(105,343:23176247,41596593:501378,78643,0 +(105,343:23340101,41596593:173670,78643,0 ) ) -(109,343:23677625,41596593:501378,78643,0 -(109,343:23841479,41596593:173670,78643,0 +(105,343:23677625,41596593:501378,78643,0 +(105,343:23841479,41596593:173670,78643,0 ) ) -(109,343:24179003,41596593:501378,78643,0 -(109,343:24342857,41596593:173670,78643,0 +(105,343:24179003,41596593:501378,78643,0 +(105,343:24342857,41596593:173670,78643,0 ) ) -(109,343:24680381,41596593:501378,78643,0 -(109,343:24844235,41596593:173670,78643,0 +(105,343:24680381,41596593:501378,78643,0 +(105,343:24844235,41596593:173670,78643,0 ) ) -(109,343:25181759,41596593:501378,78643,0 -(109,343:25345613,41596593:173670,78643,0 +(105,343:25181759,41596593:501378,78643,0 +(105,343:25345613,41596593:173670,78643,0 ) ) -(109,343:25683137,41596593:501378,78643,0 -(109,343:25846991,41596593:173670,78643,0 +(105,343:25683137,41596593:501378,78643,0 +(105,343:25846991,41596593:173670,78643,0 ) ) -(109,343:26184515,41596593:501378,78643,0 -(109,343:26348369,41596593:173670,78643,0 +(105,343:26184515,41596593:501378,78643,0 +(105,343:26348369,41596593:173670,78643,0 ) ) -(109,343:26685893,41596593:501378,78643,0 -(109,343:26849747,41596593:173670,78643,0 +(105,343:26685893,41596593:501378,78643,0 +(105,343:26849747,41596593:173670,78643,0 ) ) -(109,343:27187271,41596593:501378,78643,0 -(109,343:27351125,41596593:173670,78643,0 +(105,343:27187271,41596593:501378,78643,0 +(105,343:27351125,41596593:173670,78643,0 ) ) -(109,343:27688649,41596593:501378,78643,0 -(109,343:27852503,41596593:173670,78643,0 +(105,343:27688649,41596593:501378,78643,0 +(105,343:27852503,41596593:173670,78643,0 ) ) -(109,343:28190027,41596593:501378,78643,0 -(109,343:28353881,41596593:173670,78643,0 +(105,343:28190027,41596593:501378,78643,0 +(105,343:28353881,41596593:173670,78643,0 ) ) -(109,343:28691405,41596593:501378,78643,0 -(109,343:28855259,41596593:173670,78643,0 +(105,343:28691405,41596593:501378,78643,0 +(105,343:28855259,41596593:173670,78643,0 ) ) -(109,343:29192783,41596593:501378,78643,0 -(109,343:29356637,41596593:173670,78643,0 +(105,343:29192783,41596593:501378,78643,0 +(105,343:29356637,41596593:173670,78643,0 ) ) -(109,343:29694161,41596593:501378,78643,0 -(109,343:29858015,41596593:173670,78643,0 +(105,343:29694161,41596593:501378,78643,0 +(105,343:29858015,41596593:173670,78643,0 ) ) -(109,343:30195539,41596593:501378,78643,0 -(109,343:30359393,41596593:173670,78643,0 +(105,343:30195539,41596593:501378,78643,0 +(105,343:30359393,41596593:173670,78643,0 ) ) -(109,343:30696917,41596593:501378,78643,0 -(109,343:30860771,41596593:173670,78643,0 +(105,343:30696917,41596593:501378,78643,0 +(105,343:30860771,41596593:173670,78643,0 ) ) -(109,343:31403378,41596593:1179650,485622,11795 -k109,343:31403378,41596593:0 -k109,343:31536198,41596593:132820 +(105,343:31239538,41596593:1343490,485622,11795 +k105,343:31239538,41596593:0 +k105,343:31387651,41596593:148113 ) -g109,343:30911858,41596593 -g109,343:32583028,41596593 +g105,343:30911858,41596593 +g105,343:32583028,41596593 ) -(109,345:6630773,42438081:25952256,513147,11795 -g109,345:11218293,42438081 -h109,345:11218293,42438081:2490370,0,0 -h109,345:13708663,42438081:0,0,0 -g109,345:9121143,42438081 -(109,345:9121143,42438081:2097150,485622,11795 -k109,345:11218293,42438081:554432 +(105,345:6630773,42438081:25952256,513147,11795 +g105,345:11218293,42438081 +h105,345:11218293,42438081:2490370,0,0 +h105,345:13708663,42438081:0,0,0 +g105,345:9121143,42438081 +(105,345:9121143,42438081:2097150,485622,11795 +k105,345:11218293,42438081:554432 ) -g109,345:13155537,42438081 -g109,345:14546211,42438081 -g109,345:15387038,42438081 -(109,345:15655577,42438081:501378,78643,0 -$109,345:15655577,42438081 -(109,345:15819431,42438081:173670,78643,0 +g105,345:13155537,42438081 +g105,345:14546211,42438081 +g105,345:15387038,42438081 +(105,345:15655577,42438081:501378,78643,0 +$105,345:15655577,42438081 +(105,345:15819431,42438081:173670,78643,0 ) -$109,345:16156955,42438081 +$105,345:16156955,42438081 ) -(109,345:16156955,42438081:501378,78643,0 -(109,345:16320809,42438081:173670,78643,0 +(105,345:16156955,42438081:501378,78643,0 +(105,345:16320809,42438081:173670,78643,0 ) ) -(109,345:16658333,42438081:501378,78643,0 -(109,345:16822187,42438081:173670,78643,0 +(105,345:16658333,42438081:501378,78643,0 +(105,345:16822187,42438081:173670,78643,0 ) ) -(109,345:17159711,42438081:501378,78643,0 -(109,345:17323565,42438081:173670,78643,0 +(105,345:17159711,42438081:501378,78643,0 +(105,345:17323565,42438081:173670,78643,0 ) ) -(109,345:17661089,42438081:501378,78643,0 -(109,345:17824943,42438081:173670,78643,0 +(105,345:17661089,42438081:501378,78643,0 +(105,345:17824943,42438081:173670,78643,0 ) ) -(109,345:18162467,42438081:501378,78643,0 -(109,345:18326321,42438081:173670,78643,0 +(105,345:18162467,42438081:501378,78643,0 +(105,345:18326321,42438081:173670,78643,0 ) ) -(109,345:18663845,42438081:501378,78643,0 -(109,345:18827699,42438081:173670,78643,0 +(105,345:18663845,42438081:501378,78643,0 +(105,345:18827699,42438081:173670,78643,0 ) ) -(109,345:19165223,42438081:501378,78643,0 -(109,345:19329077,42438081:173670,78643,0 +(105,345:19165223,42438081:501378,78643,0 +(105,345:19329077,42438081:173670,78643,0 ) ) -(109,345:19666601,42438081:501378,78643,0 -(109,345:19830455,42438081:173670,78643,0 +(105,345:19666601,42438081:501378,78643,0 +(105,345:19830455,42438081:173670,78643,0 ) ) -(109,345:20167979,42438081:501378,78643,0 -(109,345:20331833,42438081:173670,78643,0 +(105,345:20167979,42438081:501378,78643,0 +(105,345:20331833,42438081:173670,78643,0 ) ) -(109,345:20669357,42438081:501378,78643,0 -(109,345:20833211,42438081:173670,78643,0 +(105,345:20669357,42438081:501378,78643,0 +(105,345:20833211,42438081:173670,78643,0 ) ) -(109,345:21170735,42438081:501378,78643,0 -(109,345:21334589,42438081:173670,78643,0 +(105,345:21170735,42438081:501378,78643,0 +(105,345:21334589,42438081:173670,78643,0 ) ) -(109,345:21672113,42438081:501378,78643,0 -(109,345:21835967,42438081:173670,78643,0 +(105,345:21672113,42438081:501378,78643,0 +(105,345:21835967,42438081:173670,78643,0 ) ) -(109,345:22173491,42438081:501378,78643,0 -(109,345:22337345,42438081:173670,78643,0 +(105,345:22173491,42438081:501378,78643,0 +(105,345:22337345,42438081:173670,78643,0 ) ) -(109,345:22674869,42438081:501378,78643,0 -(109,345:22838723,42438081:173670,78643,0 +(105,345:22674869,42438081:501378,78643,0 +(105,345:22838723,42438081:173670,78643,0 ) ) -(109,345:23176247,42438081:501378,78643,0 -(109,345:23340101,42438081:173670,78643,0 +(105,345:23176247,42438081:501378,78643,0 +(105,345:23340101,42438081:173670,78643,0 ) ) -(109,345:23677625,42438081:501378,78643,0 -(109,345:23841479,42438081:173670,78643,0 +(105,345:23677625,42438081:501378,78643,0 +(105,345:23841479,42438081:173670,78643,0 ) ) -(109,345:24179003,42438081:501378,78643,0 -(109,345:24342857,42438081:173670,78643,0 +(105,345:24179003,42438081:501378,78643,0 +(105,345:24342857,42438081:173670,78643,0 ) ) -(109,345:24680381,42438081:501378,78643,0 -(109,345:24844235,42438081:173670,78643,0 +(105,345:24680381,42438081:501378,78643,0 +(105,345:24844235,42438081:173670,78643,0 ) ) -(109,345:25181759,42438081:501378,78643,0 -(109,345:25345613,42438081:173670,78643,0 +(105,345:25181759,42438081:501378,78643,0 +(105,345:25345613,42438081:173670,78643,0 ) ) -(109,345:25683137,42438081:501378,78643,0 -(109,345:25846991,42438081:173670,78643,0 +(105,345:25683137,42438081:501378,78643,0 +(105,345:25846991,42438081:173670,78643,0 ) ) -(109,345:26184515,42438081:501378,78643,0 -(109,345:26348369,42438081:173670,78643,0 +(105,345:26184515,42438081:501378,78643,0 +(105,345:26348369,42438081:173670,78643,0 ) ) -(109,345:26685893,42438081:501378,78643,0 -(109,345:26849747,42438081:173670,78643,0 +(105,345:26685893,42438081:501378,78643,0 +(105,345:26849747,42438081:173670,78643,0 ) ) -(109,345:27187271,42438081:501378,78643,0 -(109,345:27351125,42438081:173670,78643,0 +(105,345:27187271,42438081:501378,78643,0 +(105,345:27351125,42438081:173670,78643,0 ) ) -(109,345:27688649,42438081:501378,78643,0 -(109,345:27852503,42438081:173670,78643,0 +(105,345:27688649,42438081:501378,78643,0 +(105,345:27852503,42438081:173670,78643,0 ) ) -(109,345:28190027,42438081:501378,78643,0 -(109,345:28353881,42438081:173670,78643,0 +(105,345:28190027,42438081:501378,78643,0 +(105,345:28353881,42438081:173670,78643,0 ) ) -(109,345:28691405,42438081:501378,78643,0 -(109,345:28855259,42438081:173670,78643,0 +(105,345:28691405,42438081:501378,78643,0 +(105,345:28855259,42438081:173670,78643,0 ) ) -(109,345:29192783,42438081:501378,78643,0 -(109,345:29356637,42438081:173670,78643,0 +(105,345:29192783,42438081:501378,78643,0 +(105,345:29356637,42438081:173670,78643,0 ) ) -(109,345:29694161,42438081:501378,78643,0 -(109,345:29858015,42438081:173670,78643,0 +(105,345:29694161,42438081:501378,78643,0 +(105,345:29858015,42438081:173670,78643,0 ) ) -(109,345:30195539,42438081:501378,78643,0 -(109,345:30359393,42438081:173670,78643,0 +(105,345:30195539,42438081:501378,78643,0 +(105,345:30359393,42438081:173670,78643,0 ) ) -(109,345:30696917,42438081:501378,78643,0 -(109,345:30860771,42438081:173670,78643,0 +(105,345:30696917,42438081:501378,78643,0 +(105,345:30860771,42438081:173670,78643,0 ) ) -(109,345:31403379,42438081:1179650,485622,11795 -k109,345:31403379,42438081:0 -k109,345:31536199,42438081:132820 +(105,345:31239539,42438081:1343490,485622,11795 +k105,345:31239539,42438081:0 +k105,345:31387652,42438081:148113 ) -g109,345:30911859,42438081 -g109,345:32583029,42438081 +g105,345:30911859,42438081 +g105,345:32583029,42438081 ) -(109,347:6630773,43279569:25952256,513147,11795 -g109,347:13905273,43279569 -h109,347:13905273,43279569:4587520,0,0 -h109,347:18492793,43279569:0,0,0 -g109,347:11218293,43279569 -(109,347:11218293,43279569:2686980,485622,11795 -k109,347:13905273,43279569:572133 +(105,347:6630773,43279569:25952256,513147,11795 +g105,347:13905273,43279569 +h105,347:13905273,43279569:4587520,0,0 +h105,347:18492793,43279569:0,0,0 +g105,347:11218293,43279569 +(105,347:11218293,43279569:2686980,485622,11795 +k105,347:13905273,43279569:572133 ) -g109,347:15842517,43279569 -g109,347:19454206,43279569 -g109,347:20269473,43279569 -g109,347:20714462,43279569 -(109,347:21170735,43279569:501378,78643,0 -$109,347:21170735,43279569 -(109,347:21334589,43279569:173670,78643,0 +g105,347:15842517,43279569 +g105,347:19454206,43279569 +g105,347:20269473,43279569 +g105,347:20714462,43279569 +(105,347:21170735,43279569:501378,78643,0 +$105,347:21170735,43279569 +(105,347:21334589,43279569:173670,78643,0 ) -$109,347:21672113,43279569 +$105,347:21672113,43279569 ) -(109,347:21672113,43279569:501378,78643,0 -(109,347:21835967,43279569:173670,78643,0 +(105,347:21672113,43279569:501378,78643,0 +(105,347:21835967,43279569:173670,78643,0 ) ) -(109,347:22173491,43279569:501378,78643,0 -(109,347:22337345,43279569:173670,78643,0 +(105,347:22173491,43279569:501378,78643,0 +(105,347:22337345,43279569:173670,78643,0 ) ) -(109,347:22674869,43279569:501378,78643,0 -(109,347:22838723,43279569:173670,78643,0 +(105,347:22674869,43279569:501378,78643,0 +(105,347:22838723,43279569:173670,78643,0 ) ) -(109,347:23176247,43279569:501378,78643,0 -(109,347:23340101,43279569:173670,78643,0 +(105,347:23176247,43279569:501378,78643,0 +(105,347:23340101,43279569:173670,78643,0 ) ) -(109,347:23677625,43279569:501378,78643,0 -(109,347:23841479,43279569:173670,78643,0 +(105,347:23677625,43279569:501378,78643,0 +(105,347:23841479,43279569:173670,78643,0 ) ) -(109,347:24179003,43279569:501378,78643,0 -(109,347:24342857,43279569:173670,78643,0 +(105,347:24179003,43279569:501378,78643,0 +(105,347:24342857,43279569:173670,78643,0 ) ) -(109,347:24680381,43279569:501378,78643,0 -(109,347:24844235,43279569:173670,78643,0 +(105,347:24680381,43279569:501378,78643,0 +(105,347:24844235,43279569:173670,78643,0 ) ) -(109,347:25181759,43279569:501378,78643,0 -(109,347:25345613,43279569:173670,78643,0 +(105,347:25181759,43279569:501378,78643,0 +(105,347:25345613,43279569:173670,78643,0 ) ) -(109,347:25683137,43279569:501378,78643,0 -(109,347:25846991,43279569:173670,78643,0 +(105,347:25683137,43279569:501378,78643,0 +(105,347:25846991,43279569:173670,78643,0 ) ) -(109,347:26184515,43279569:501378,78643,0 -(109,347:26348369,43279569:173670,78643,0 +(105,347:26184515,43279569:501378,78643,0 +(105,347:26348369,43279569:173670,78643,0 ) ) -(109,347:26685893,43279569:501378,78643,0 -(109,347:26849747,43279569:173670,78643,0 +(105,347:26685893,43279569:501378,78643,0 +(105,347:26849747,43279569:173670,78643,0 ) ) -(109,347:27187271,43279569:501378,78643,0 -(109,347:27351125,43279569:173670,78643,0 +(105,347:27187271,43279569:501378,78643,0 +(105,347:27351125,43279569:173670,78643,0 ) ) -(109,347:27688649,43279569:501378,78643,0 -(109,347:27852503,43279569:173670,78643,0 +(105,347:27688649,43279569:501378,78643,0 +(105,347:27852503,43279569:173670,78643,0 ) ) -(109,347:28190027,43279569:501378,78643,0 -(109,347:28353881,43279569:173670,78643,0 +(105,347:28190027,43279569:501378,78643,0 +(105,347:28353881,43279569:173670,78643,0 ) ) -(109,347:28691405,43279569:501378,78643,0 -(109,347:28855259,43279569:173670,78643,0 +(105,347:28691405,43279569:501378,78643,0 +(105,347:28855259,43279569:173670,78643,0 ) ) -(109,347:29192783,43279569:501378,78643,0 -(109,347:29356637,43279569:173670,78643,0 +(105,347:29192783,43279569:501378,78643,0 +(105,347:29356637,43279569:173670,78643,0 ) ) -(109,347:29694161,43279569:501378,78643,0 -(109,347:29858015,43279569:173670,78643,0 +(105,347:29694161,43279569:501378,78643,0 +(105,347:29858015,43279569:173670,78643,0 ) ) -(109,347:30195539,43279569:501378,78643,0 -(109,347:30359393,43279569:173670,78643,0 +(105,347:30195539,43279569:501378,78643,0 +(105,347:30359393,43279569:173670,78643,0 ) ) -(109,347:30696917,43279569:501378,78643,0 -(109,347:30860771,43279569:173670,78643,0 +(105,347:30696917,43279569:501378,78643,0 +(105,347:30860771,43279569:173670,78643,0 ) ) -(109,347:31403379,43279569:1179650,485622,11795 -k109,347:31403379,43279569:0 -k109,347:31536199,43279569:132820 +(105,347:31239539,43279569:1343490,485622,11795 +k105,347:31239539,43279569:0 +k105,347:31387652,43279569:148113 ) -g109,347:30911859,43279569 -g109,347:32583029,43279569 +g105,347:30911859,43279569 +g105,347:32583029,43279569 ) -(109,349:6630773,44121057:25952256,505283,11795 -g109,349:11218293,44121057 -h109,349:11218293,44121057:2490370,0,0 -h109,349:13708663,44121057:0,0,0 -g109,349:9121143,44121057 -(109,349:9121143,44121057:2097150,473825,0 -k109,349:11218293,44121057:554432 +(105,349:6630773,44121057:25952256,505283,11795 +g105,349:11218293,44121057 +h105,349:11218293,44121057:2490370,0,0 +h105,349:13708663,44121057:0,0,0 +g105,349:9121143,44121057 +(105,349:9121143,44121057:2097150,473825,0 +k105,349:11218293,44121057:554432 ) -g109,349:15109820,44121057 -g109,349:19359829,44121057 -g109,349:21262339,44121057 -(109,349:21672113,44121057:501378,78643,0 -$109,349:21672113,44121057 -(109,349:21835967,44121057:173670,78643,0 +g105,349:15109820,44121057 +g105,349:19359829,44121057 +g105,349:21262339,44121057 +(105,349:21672113,44121057:501378,78643,0 +$105,349:21672113,44121057 +(105,349:21835967,44121057:173670,78643,0 ) -$109,349:22173491,44121057 +$105,349:22173491,44121057 ) -(109,349:22173491,44121057:501378,78643,0 -(109,349:22337345,44121057:173670,78643,0 +(105,349:22173491,44121057:501378,78643,0 +(105,349:22337345,44121057:173670,78643,0 ) ) -(109,349:22674869,44121057:501378,78643,0 -(109,349:22838723,44121057:173670,78643,0 +(105,349:22674869,44121057:501378,78643,0 +(105,349:22838723,44121057:173670,78643,0 ) ) -(109,349:23176247,44121057:501378,78643,0 -(109,349:23340101,44121057:173670,78643,0 +(105,349:23176247,44121057:501378,78643,0 +(105,349:23340101,44121057:173670,78643,0 ) ) -(109,349:23677625,44121057:501378,78643,0 -(109,349:23841479,44121057:173670,78643,0 +(105,349:23677625,44121057:501378,78643,0 +(105,349:23841479,44121057:173670,78643,0 ) ) -(109,349:24179003,44121057:501378,78643,0 -(109,349:24342857,44121057:173670,78643,0 +(105,349:24179003,44121057:501378,78643,0 +(105,349:24342857,44121057:173670,78643,0 ) ) -(109,349:24680381,44121057:501378,78643,0 -(109,349:24844235,44121057:173670,78643,0 +(105,349:24680381,44121057:501378,78643,0 +(105,349:24844235,44121057:173670,78643,0 ) ) -(109,349:25181759,44121057:501378,78643,0 -(109,349:25345613,44121057:173670,78643,0 +(105,349:25181759,44121057:501378,78643,0 +(105,349:25345613,44121057:173670,78643,0 ) ) -(109,349:25683137,44121057:501378,78643,0 -(109,349:25846991,44121057:173670,78643,0 +(105,349:25683137,44121057:501378,78643,0 +(105,349:25846991,44121057:173670,78643,0 ) ) -(109,349:26184515,44121057:501378,78643,0 -(109,349:26348369,44121057:173670,78643,0 +(105,349:26184515,44121057:501378,78643,0 +(105,349:26348369,44121057:173670,78643,0 ) ) -(109,349:26685893,44121057:501378,78643,0 -(109,349:26849747,44121057:173670,78643,0 +(105,349:26685893,44121057:501378,78643,0 +(105,349:26849747,44121057:173670,78643,0 ) ) -(109,349:27187271,44121057:501378,78643,0 -(109,349:27351125,44121057:173670,78643,0 +(105,349:27187271,44121057:501378,78643,0 +(105,349:27351125,44121057:173670,78643,0 ) ) -(109,349:27688649,44121057:501378,78643,0 -(109,349:27852503,44121057:173670,78643,0 +(105,349:27688649,44121057:501378,78643,0 +(105,349:27852503,44121057:173670,78643,0 ) ) -(109,349:28190027,44121057:501378,78643,0 -(109,349:28353881,44121057:173670,78643,0 +(105,349:28190027,44121057:501378,78643,0 +(105,349:28353881,44121057:173670,78643,0 ) ) -(109,349:28691405,44121057:501378,78643,0 -(109,349:28855259,44121057:173670,78643,0 +(105,349:28691405,44121057:501378,78643,0 +(105,349:28855259,44121057:173670,78643,0 ) ) -(109,349:29192783,44121057:501378,78643,0 -(109,349:29356637,44121057:173670,78643,0 +(105,349:29192783,44121057:501378,78643,0 +(105,349:29356637,44121057:173670,78643,0 ) ) -(109,349:29694161,44121057:501378,78643,0 -(109,349:29858015,44121057:173670,78643,0 +(105,349:29694161,44121057:501378,78643,0 +(105,349:29858015,44121057:173670,78643,0 ) ) -(109,349:30195539,44121057:501378,78643,0 -(109,349:30359393,44121057:173670,78643,0 +(105,349:30195539,44121057:501378,78643,0 +(105,349:30359393,44121057:173670,78643,0 ) ) -(109,349:30696917,44121057:501378,78643,0 -(109,349:30860771,44121057:173670,78643,0 +(105,349:30696917,44121057:501378,78643,0 +(105,349:30860771,44121057:173670,78643,0 ) ) -(109,349:31403379,44121057:1179650,485622,11795 -k109,349:31403379,44121057:0 -k109,349:31536199,44121057:132820 +(105,349:31239539,44121057:1343490,485622,11795 +k105,349:31239539,44121057:0 +k105,349:31387652,44121057:148113 ) -g109,349:30911859,44121057 -g109,349:32583029,44121057 +g105,349:30911859,44121057 +g105,349:32583029,44121057 ) -(109,351:6630773,44962545:25952256,505283,11795 -g109,351:11218293,44962545 -h109,351:11218293,44962545:2490370,0,0 -h109,351:13708663,44962545:0,0,0 -g109,351:9121143,44962545 -(109,351:9121143,44962545:2097150,485622,11795 -k109,351:11218293,44962545:554432 +(105,351:6630773,44962545:25952256,505283,11795 +g105,351:11218293,44962545 +h105,351:11218293,44962545:2490370,0,0 +h105,351:13708663,44962545:0,0,0 +g105,351:9121143,44962545 +(105,351:9121143,44962545:2097150,485622,11795 +k105,351:11218293,44962545:554432 ) -g109,351:14025855,44962545 -g109,351:18275864,44962545 -g109,351:20178374,44962545 -(109,351:20669357,44962545:501378,78643,0 -$109,351:20669357,44962545 -(109,351:20833211,44962545:173670,78643,0 +g105,351:14025855,44962545 +g105,351:18275864,44962545 +g105,351:20178374,44962545 +(105,351:20669357,44962545:501378,78643,0 +$105,351:20669357,44962545 +(105,351:20833211,44962545:173670,78643,0 ) -$109,351:21170735,44962545 +$105,351:21170735,44962545 ) -(109,351:21170735,44962545:501378,78643,0 -(109,351:21334589,44962545:173670,78643,0 +(105,351:21170735,44962545:501378,78643,0 +(105,351:21334589,44962545:173670,78643,0 ) ) -(109,351:21672113,44962545:501378,78643,0 -(109,351:21835967,44962545:173670,78643,0 +(105,351:21672113,44962545:501378,78643,0 +(105,351:21835967,44962545:173670,78643,0 ) ) -(109,351:22173491,44962545:501378,78643,0 -(109,351:22337345,44962545:173670,78643,0 +(105,351:22173491,44962545:501378,78643,0 +(105,351:22337345,44962545:173670,78643,0 ) ) -(109,351:22674869,44962545:501378,78643,0 -(109,351:22838723,44962545:173670,78643,0 +(105,351:22674869,44962545:501378,78643,0 +(105,351:22838723,44962545:173670,78643,0 ) ) -(109,351:23176247,44962545:501378,78643,0 -(109,351:23340101,44962545:173670,78643,0 +(105,351:23176247,44962545:501378,78643,0 +(105,351:23340101,44962545:173670,78643,0 ) ) -(109,351:23677625,44962545:501378,78643,0 -(109,351:23841479,44962545:173670,78643,0 +(105,351:23677625,44962545:501378,78643,0 +(105,351:23841479,44962545:173670,78643,0 ) ) -(109,351:24179003,44962545:501378,78643,0 -(109,351:24342857,44962545:173670,78643,0 +(105,351:24179003,44962545:501378,78643,0 +(105,351:24342857,44962545:173670,78643,0 ) ) -(109,351:24680381,44962545:501378,78643,0 -(109,351:24844235,44962545:173670,78643,0 +(105,351:24680381,44962545:501378,78643,0 +(105,351:24844235,44962545:173670,78643,0 ) ) -(109,351:25181759,44962545:501378,78643,0 -(109,351:25345613,44962545:173670,78643,0 +(105,351:25181759,44962545:501378,78643,0 +(105,351:25345613,44962545:173670,78643,0 ) ) -(109,351:25683137,44962545:501378,78643,0 -(109,351:25846991,44962545:173670,78643,0 +(105,351:25683137,44962545:501378,78643,0 +(105,351:25846991,44962545:173670,78643,0 ) ) -(109,351:26184515,44962545:501378,78643,0 -(109,351:26348369,44962545:173670,78643,0 +(105,351:26184515,44962545:501378,78643,0 +(105,351:26348369,44962545:173670,78643,0 ) ) -(109,351:26685893,44962545:501378,78643,0 -(109,351:26849747,44962545:173670,78643,0 +(105,351:26685893,44962545:501378,78643,0 +(105,351:26849747,44962545:173670,78643,0 ) ) -(109,351:27187271,44962545:501378,78643,0 -(109,351:27351125,44962545:173670,78643,0 +(105,351:27187271,44962545:501378,78643,0 +(105,351:27351125,44962545:173670,78643,0 ) ) -(109,351:27688649,44962545:501378,78643,0 -(109,351:27852503,44962545:173670,78643,0 +(105,351:27688649,44962545:501378,78643,0 +(105,351:27852503,44962545:173670,78643,0 ) ) -(109,351:28190027,44962545:501378,78643,0 -(109,351:28353881,44962545:173670,78643,0 +(105,351:28190027,44962545:501378,78643,0 +(105,351:28353881,44962545:173670,78643,0 ) ) -(109,351:28691405,44962545:501378,78643,0 -(109,351:28855259,44962545:173670,78643,0 +(105,351:28691405,44962545:501378,78643,0 +(105,351:28855259,44962545:173670,78643,0 ) ) -(109,351:29192783,44962545:501378,78643,0 -(109,351:29356637,44962545:173670,78643,0 +(105,351:29192783,44962545:501378,78643,0 +(105,351:29356637,44962545:173670,78643,0 ) ) -(109,351:29694161,44962545:501378,78643,0 -(109,351:29858015,44962545:173670,78643,0 +(105,351:29694161,44962545:501378,78643,0 +(105,351:29858015,44962545:173670,78643,0 ) ) -(109,351:30195539,44962545:501378,78643,0 -(109,351:30359393,44962545:173670,78643,0 +(105,351:30195539,44962545:501378,78643,0 +(105,351:30359393,44962545:173670,78643,0 ) ) -(109,351:30696917,44962545:501378,78643,0 -(109,351:30860771,44962545:173670,78643,0 +(105,351:30696917,44962545:501378,78643,0 +(105,351:30860771,44962545:173670,78643,0 ) ) -(109,351:31403379,44962545:1179650,485622,11795 -k109,351:31403379,44962545:0 -k109,351:31536199,44962545:132820 +(105,351:31239539,44962545:1343490,485622,11795 +k105,351:31239539,44962545:0 +k105,351:31387652,44962545:148113 ) -g109,351:30911859,44962545 -g109,351:32583029,44962545 +g105,351:30911859,44962545 +g105,351:32583029,44962545 ) ] -(109,355:32583029,45706769:0,0,0 -g109,355:32583029,45706769 +(105,355:32583029,45706769:0,0,0 +g105,355:32583029,45706769 ) ) ] -(109,355:6630773,47279633:25952256,0,0 -h109,355:6630773,47279633:25952256,0,0 +(105,355:6630773,47279633:25952256,0,0 +h105,355:6630773,47279633:25952256,0,0 ) ] -h109,355:4262630,4025873:0,0,0 +h105,355:4262630,4025873:0,0,0 ] -!147441 +!147424 }5 !11 {6 -[109,445:4262630,47279633:28320399,43253760,0 -(109,445:4262630,4025873:0,0,0 -[109,445:-473657,4025873:25952256,0,0 -(109,445:-473657,-710414:25952256,0,0 -h109,445:-473657,-710414:0,0,0 -(109,445:-473657,-710414:0,0,0 -(109,445:-473657,-710414:0,0,0 -g109,445:-473657,-710414 -(109,445:-473657,-710414:65781,0,65781 -g109,445:-407876,-710414 -[109,445:-407876,-644633:0,0,0 +[105,445:4262630,47279633:28320399,43253760,0 +(105,445:4262630,4025873:0,0,0 +[105,445:-473657,4025873:25952256,0,0 +(105,445:-473657,-710414:25952256,0,0 +h105,445:-473657,-710414:0,0,0 +(105,445:-473657,-710414:0,0,0 +(105,445:-473657,-710414:0,0,0 +g105,445:-473657,-710414 +(105,445:-473657,-710414:65781,0,65781 +g105,445:-407876,-710414 +[105,445:-407876,-644633:0,0,0 ] ) -k109,445:-473657,-710414:-65781 +k105,445:-473657,-710414:-65781 ) ) -k109,445:25478599,-710414:25952256 -g109,445:25478599,-710414 +k105,445:25478599,-710414:25952256 +g105,445:25478599,-710414 ) ] ) -[109,445:6630773,47279633:25952256,43253760,0 -[109,445:6630773,4812305:25952256,786432,0 -(109,445:6630773,4812305:25952256,485622,11795 -(109,445:6630773,4812305:25952256,485622,11795 -g109,445:3078558,4812305 -[109,445:3078558,4812305:0,0,0 -(109,445:3078558,2439708:0,1703936,0 -k109,445:1358238,2439708:-1720320 -(1,86:1358238,2439708:1720320,1703936,0 -(1,86:1358238,2439708:1179648,16384,0 -r109,445:2537886,2439708:1179648,16384,0 +[105,445:6630773,47279633:25952256,43253760,0 +[105,445:6630773,4812305:25952256,786432,0 +(105,445:6630773,4812305:25952256,485622,11795 +(105,445:6630773,4812305:25952256,485622,11795 +g105,445:3078558,4812305 +[105,445:3078558,4812305:0,0,0 +(105,445:3078558,2439708:0,1703936,0 +k105,445:1358238,2439708:-1720320 +(1,92:1358238,2439708:1720320,1703936,0 +(1,92:1358238,2439708:1179648,16384,0 +r105,445:2537886,2439708:1179648,16384,0 ) -g1,86:3062174,2439708 -(1,86:3062174,2439708:16384,1703936,0 -[1,86:3062174,2439708:25952256,1703936,0 -(1,86:3062174,1915420:25952256,1179648,0 -(1,86:3062174,1915420:16384,1179648,0 -r109,445:3078558,1915420:16384,1179648,0 +g1,92:3062174,2439708 +(1,92:3062174,2439708:16384,1703936,0 +[1,92:3062174,2439708:25952256,1703936,0 +(1,92:3062174,1915420:25952256,1179648,0 +(1,92:3062174,1915420:16384,1179648,0 +r105,445:3078558,1915420:16384,1179648,0 ) -k1,86:29014430,1915420:25935872 -g1,86:29014430,1915420 +k1,92:29014430,1915420:25935872 +g1,92:29014430,1915420 ) ] ) ) ) ] -[109,445:3078558,4812305:0,0,0 -(109,445:3078558,2439708:0,1703936,0 -g109,445:29030814,2439708 -g109,445:36135244,2439708 -(1,86:36135244,2439708:1720320,1703936,0 -(1,86:36135244,2439708:16384,1703936,0 -[1,86:36135244,2439708:25952256,1703936,0 -(1,86:36135244,1915420:25952256,1179648,0 -(1,86:36135244,1915420:16384,1179648,0 -r109,445:36151628,1915420:16384,1179648,0 +[105,445:3078558,4812305:0,0,0 +(105,445:3078558,2439708:0,1703936,0 +g105,445:29030814,2439708 +g105,445:36135244,2439708 +(1,92:36135244,2439708:1720320,1703936,0 +(1,92:36135244,2439708:16384,1703936,0 +[1,92:36135244,2439708:25952256,1703936,0 +(1,92:36135244,1915420:25952256,1179648,0 +(1,92:36135244,1915420:16384,1179648,0 +r105,445:36151628,1915420:16384,1179648,0 ) -k1,86:62087500,1915420:25935872 -g1,86:62087500,1915420 +k1,92:62087500,1915420:25935872 +g1,92:62087500,1915420 ) ] ) -g1,86:36675916,2439708 -(1,86:36675916,2439708:1179648,16384,0 -r109,445:37855564,2439708:1179648,16384,0 +g1,92:36675916,2439708 +(1,92:36675916,2439708:1179648,16384,0 +r105,445:37855564,2439708:1179648,16384,0 ) ) -k109,445:3078556,2439708:-34777008 +k105,445:3078556,2439708:-34777008 ) ] -[109,445:3078558,4812305:0,0,0 -(109,445:3078558,49800853:0,16384,2228224 -k109,445:1358238,49800853:-1720320 -(1,86:1358238,49800853:1720320,16384,2228224 -(1,86:1358238,49800853:1179648,16384,0 -r109,445:2537886,49800853:1179648,16384,0 +[105,445:3078558,4812305:0,0,0 +(105,445:3078558,49800853:0,16384,2228224 +k105,445:1358238,49800853:-1720320 +(1,92:1358238,49800853:1720320,16384,2228224 +(1,92:1358238,49800853:1179648,16384,0 +r105,445:2537886,49800853:1179648,16384,0 ) -g1,86:3062174,49800853 -(1,86:3062174,52029077:16384,1703936,0 -[1,86:3062174,52029077:25952256,1703936,0 -(1,86:3062174,51504789:25952256,1179648,0 -(1,86:3062174,51504789:16384,1179648,0 -r109,445:3078558,51504789:16384,1179648,0 +g1,92:3062174,49800853 +(1,92:3062174,52029077:16384,1703936,0 +[1,92:3062174,52029077:25952256,1703936,0 +(1,92:3062174,51504789:25952256,1179648,0 +(1,92:3062174,51504789:16384,1179648,0 +r105,445:3078558,51504789:16384,1179648,0 ) -k1,86:29014430,51504789:25935872 -g1,86:29014430,51504789 +k1,92:29014430,51504789:25935872 +g1,92:29014430,51504789 ) ] ) ) ) ] -[109,445:3078558,4812305:0,0,0 -(109,445:3078558,49800853:0,16384,2228224 -g109,445:29030814,49800853 -g109,445:36135244,49800853 -(1,86:36135244,49800853:1720320,16384,2228224 -(1,86:36135244,52029077:16384,1703936,0 -[1,86:36135244,52029077:25952256,1703936,0 -(1,86:36135244,51504789:25952256,1179648,0 -(1,86:36135244,51504789:16384,1179648,0 -r109,445:36151628,51504789:16384,1179648,0 +[105,445:3078558,4812305:0,0,0 +(105,445:3078558,49800853:0,16384,2228224 +g105,445:29030814,49800853 +g105,445:36135244,49800853 +(1,92:36135244,49800853:1720320,16384,2228224 +(1,92:36135244,52029077:16384,1703936,0 +[1,92:36135244,52029077:25952256,1703936,0 +(1,92:36135244,51504789:25952256,1179648,0 +(1,92:36135244,51504789:16384,1179648,0 +r105,445:36151628,51504789:16384,1179648,0 ) -k1,86:62087500,51504789:25935872 -g1,86:62087500,51504789 +k1,92:62087500,51504789:25935872 +g1,92:62087500,51504789 ) ] ) -g1,86:36675916,49800853 -(1,86:36675916,49800853:1179648,16384,0 -r109,445:37855564,49800853:1179648,16384,0 +g1,92:36675916,49800853 +(1,92:36675916,49800853:1179648,16384,0 +r105,445:37855564,49800853:1179648,16384,0 ) ) -k109,445:3078556,49800853:-34777008 +k105,445:3078556,49800853:-34777008 ) ] -g109,445:6630773,4812305 -g109,445:6630773,4812305 -g109,445:9585136,4812305 -k109,445:32016798,4812305:22431662 +g105,445:6630773,4812305 +g105,445:6630773,4812305 +g105,445:9585136,4812305 +k105,445:32016798,4812305:22431662 ) ) ] -[109,445:6630773,45706769:25952256,40108032,0 -(109,445:6630773,45706769:25952256,40108032,0 -(109,445:6630773,45706769:0,0,0 -g109,445:6630773,45706769 +[105,445:6630773,45706769:25952256,40108032,0 +(105,445:6630773,45706769:25952256,40108032,0 +(105,445:6630773,45706769:0,0,0 +g105,445:6630773,45706769 ) -[109,445:6630773,45706769:25952256,40108032,0 -(109,353:6630773,6254097:25952256,505283,126483 -g109,353:11218293,6254097 -h109,353:11218293,6254097:2490370,0,0 -h109,353:13708663,6254097:0,0,0 -g109,353:9121143,6254097 -(109,353:9121143,6254097:2097150,485622,11795 -k109,353:11218293,6254097:554432 +[105,445:6630773,45706769:25952256,40108032,0 +(105,353:6630773,6254097:25952256,505283,126483 +g105,353:11218293,6254097 +h105,353:11218293,6254097:2490370,0,0 +h105,353:13708663,6254097:0,0,0 +g105,353:9121143,6254097 +(105,353:9121143,6254097:2097150,485622,11795 +k105,353:11218293,6254097:554432 ) -g109,353:13889540,6254097 -g109,353:15792050,6254097 -(109,353:16156955,6254097:501378,78643,0 -$109,353:16156955,6254097 -(109,353:16320809,6254097:173670,78643,0 +g105,353:13889540,6254097 +g105,353:15792050,6254097 +(105,353:16156955,6254097:501378,78643,0 +$105,353:16156955,6254097 +(105,353:16320809,6254097:173670,78643,0 ) -$109,353:16658333,6254097 +$105,353:16658333,6254097 ) -(109,353:16658333,6254097:501378,78643,0 -(109,353:16822187,6254097:173670,78643,0 +(105,353:16658333,6254097:501378,78643,0 +(105,353:16822187,6254097:173670,78643,0 ) ) -(109,353:17159711,6254097:501378,78643,0 -(109,353:17323565,6254097:173670,78643,0 +(105,353:17159711,6254097:501378,78643,0 +(105,353:17323565,6254097:173670,78643,0 ) ) -(109,353:17661089,6254097:501378,78643,0 -(109,353:17824943,6254097:173670,78643,0 +(105,353:17661089,6254097:501378,78643,0 +(105,353:17824943,6254097:173670,78643,0 ) ) -(109,353:18162467,6254097:501378,78643,0 -(109,353:18326321,6254097:173670,78643,0 +(105,353:18162467,6254097:501378,78643,0 +(105,353:18326321,6254097:173670,78643,0 ) ) -(109,353:18663845,6254097:501378,78643,0 -(109,353:18827699,6254097:173670,78643,0 +(105,353:18663845,6254097:501378,78643,0 +(105,353:18827699,6254097:173670,78643,0 ) ) -(109,353:19165223,6254097:501378,78643,0 -(109,353:19329077,6254097:173670,78643,0 +(105,353:19165223,6254097:501378,78643,0 +(105,353:19329077,6254097:173670,78643,0 ) ) -(109,353:19666601,6254097:501378,78643,0 -(109,353:19830455,6254097:173670,78643,0 +(105,353:19666601,6254097:501378,78643,0 +(105,353:19830455,6254097:173670,78643,0 ) ) -(109,353:20167979,6254097:501378,78643,0 -(109,353:20331833,6254097:173670,78643,0 +(105,353:20167979,6254097:501378,78643,0 +(105,353:20331833,6254097:173670,78643,0 ) ) -(109,353:20669357,6254097:501378,78643,0 -(109,353:20833211,6254097:173670,78643,0 +(105,353:20669357,6254097:501378,78643,0 +(105,353:20833211,6254097:173670,78643,0 ) ) -(109,353:21170735,6254097:501378,78643,0 -(109,353:21334589,6254097:173670,78643,0 +(105,353:21170735,6254097:501378,78643,0 +(105,353:21334589,6254097:173670,78643,0 ) ) -(109,353:21672113,6254097:501378,78643,0 -(109,353:21835967,6254097:173670,78643,0 +(105,353:21672113,6254097:501378,78643,0 +(105,353:21835967,6254097:173670,78643,0 ) ) -(109,353:22173491,6254097:501378,78643,0 -(109,353:22337345,6254097:173670,78643,0 +(105,353:22173491,6254097:501378,78643,0 +(105,353:22337345,6254097:173670,78643,0 ) ) -(109,353:22674869,6254097:501378,78643,0 -(109,353:22838723,6254097:173670,78643,0 +(105,353:22674869,6254097:501378,78643,0 +(105,353:22838723,6254097:173670,78643,0 ) ) -(109,353:23176247,6254097:501378,78643,0 -(109,353:23340101,6254097:173670,78643,0 +(105,353:23176247,6254097:501378,78643,0 +(105,353:23340101,6254097:173670,78643,0 ) ) -(109,353:23677625,6254097:501378,78643,0 -(109,353:23841479,6254097:173670,78643,0 +(105,353:23677625,6254097:501378,78643,0 +(105,353:23841479,6254097:173670,78643,0 ) ) -(109,353:24179003,6254097:501378,78643,0 -(109,353:24342857,6254097:173670,78643,0 +(105,353:24179003,6254097:501378,78643,0 +(105,353:24342857,6254097:173670,78643,0 ) ) -(109,353:24680381,6254097:501378,78643,0 -(109,353:24844235,6254097:173670,78643,0 +(105,353:24680381,6254097:501378,78643,0 +(105,353:24844235,6254097:173670,78643,0 ) ) -(109,353:25181759,6254097:501378,78643,0 -(109,353:25345613,6254097:173670,78643,0 +(105,353:25181759,6254097:501378,78643,0 +(105,353:25345613,6254097:173670,78643,0 ) ) -(109,353:25683137,6254097:501378,78643,0 -(109,353:25846991,6254097:173670,78643,0 +(105,353:25683137,6254097:501378,78643,0 +(105,353:25846991,6254097:173670,78643,0 ) ) -(109,353:26184515,6254097:501378,78643,0 -(109,353:26348369,6254097:173670,78643,0 +(105,353:26184515,6254097:501378,78643,0 +(105,353:26348369,6254097:173670,78643,0 ) ) -(109,353:26685893,6254097:501378,78643,0 -(109,353:26849747,6254097:173670,78643,0 +(105,353:26685893,6254097:501378,78643,0 +(105,353:26849747,6254097:173670,78643,0 ) ) -(109,353:27187271,6254097:501378,78643,0 -(109,353:27351125,6254097:173670,78643,0 +(105,353:27187271,6254097:501378,78643,0 +(105,353:27351125,6254097:173670,78643,0 ) ) -(109,353:27688649,6254097:501378,78643,0 -(109,353:27852503,6254097:173670,78643,0 +(105,353:27688649,6254097:501378,78643,0 +(105,353:27852503,6254097:173670,78643,0 ) ) -(109,353:28190027,6254097:501378,78643,0 -(109,353:28353881,6254097:173670,78643,0 +(105,353:28190027,6254097:501378,78643,0 +(105,353:28353881,6254097:173670,78643,0 ) ) -(109,353:28691405,6254097:501378,78643,0 -(109,353:28855259,6254097:173670,78643,0 +(105,353:28691405,6254097:501378,78643,0 +(105,353:28855259,6254097:173670,78643,0 ) ) -(109,353:29192783,6254097:501378,78643,0 -(109,353:29356637,6254097:173670,78643,0 +(105,353:29192783,6254097:501378,78643,0 +(105,353:29356637,6254097:173670,78643,0 ) ) -(109,353:29694161,6254097:501378,78643,0 -(109,353:29858015,6254097:173670,78643,0 +(105,353:29694161,6254097:501378,78643,0 +(105,353:29858015,6254097:173670,78643,0 ) ) -(109,353:30195539,6254097:501378,78643,0 -(109,353:30359393,6254097:173670,78643,0 +(105,353:30195539,6254097:501378,78643,0 +(105,353:30359393,6254097:173670,78643,0 ) ) -(109,353:30696917,6254097:501378,78643,0 -(109,353:30860771,6254097:173670,78643,0 +(105,353:30696917,6254097:501378,78643,0 +(105,353:30860771,6254097:173670,78643,0 ) ) -(109,353:31403379,6254097:1179650,485622,11795 -k109,353:31403379,6254097:0 -k109,353:31536199,6254097:132820 +(105,353:31239539,6254097:1343490,485622,11795 +k105,353:31239539,6254097:0 +k105,353:31387652,6254097:148113 ) -g109,353:30911859,6254097 -g109,353:32583029,6254097 +g105,353:30911859,6254097 +g105,353:32583029,6254097 ) -(109,355:6630773,7095585:25952256,505283,134348 -g109,355:9121143,7095585 -h109,355:9121143,7095585:983040,0,0 -h109,355:10104183,7095585:0,0,0 -g109,355:7613813,7095585 -(109,355:7613813,7095585:1507330,485622,11795 -k109,355:9121143,7095585:536742 +(105,355:6630773,7095585:25952256,505283,134348 +g105,355:9121143,7095585 +h105,355:9121143,7095585:983040,0,0 +h105,355:10104183,7095585:0,0,0 +g105,355:7613813,7095585 +(105,355:7613813,7095585:1507330,485622,11795 +k105,355:9121143,7095585:536742 ) -g109,355:11639691,7095585 -g109,355:15629522,7095585 -g109,355:15629522,7095585 -(109,355:15655577,7095585:501378,78643,0 -$109,355:15655577,7095585 -(109,355:15819431,7095585:173670,78643,0 +g105,355:11639691,7095585 +g105,355:15629522,7095585 +g105,355:15629522,7095585 +(105,355:15655577,7095585:501378,78643,0 +$105,355:15655577,7095585 +(105,355:15819431,7095585:173670,78643,0 ) -$109,355:16156955,7095585 +$105,355:16156955,7095585 ) -(109,355:16156955,7095585:501378,78643,0 -(109,355:16320809,7095585:173670,78643,0 +(105,355:16156955,7095585:501378,78643,0 +(105,355:16320809,7095585:173670,78643,0 ) ) -(109,355:16658333,7095585:501378,78643,0 -(109,355:16822187,7095585:173670,78643,0 +(105,355:16658333,7095585:501378,78643,0 +(105,355:16822187,7095585:173670,78643,0 ) ) -(109,355:17159711,7095585:501378,78643,0 -(109,355:17323565,7095585:173670,78643,0 +(105,355:17159711,7095585:501378,78643,0 +(105,355:17323565,7095585:173670,78643,0 ) ) -(109,355:17661089,7095585:501378,78643,0 -(109,355:17824943,7095585:173670,78643,0 +(105,355:17661089,7095585:501378,78643,0 +(105,355:17824943,7095585:173670,78643,0 ) ) -(109,355:18162467,7095585:501378,78643,0 -(109,355:18326321,7095585:173670,78643,0 +(105,355:18162467,7095585:501378,78643,0 +(105,355:18326321,7095585:173670,78643,0 ) ) -(109,355:18663845,7095585:501378,78643,0 -(109,355:18827699,7095585:173670,78643,0 +(105,355:18663845,7095585:501378,78643,0 +(105,355:18827699,7095585:173670,78643,0 ) ) -(109,355:19165223,7095585:501378,78643,0 -(109,355:19329077,7095585:173670,78643,0 +(105,355:19165223,7095585:501378,78643,0 +(105,355:19329077,7095585:173670,78643,0 ) ) -(109,355:19666601,7095585:501378,78643,0 -(109,355:19830455,7095585:173670,78643,0 +(105,355:19666601,7095585:501378,78643,0 +(105,355:19830455,7095585:173670,78643,0 ) ) -(109,355:20167979,7095585:501378,78643,0 -(109,355:20331833,7095585:173670,78643,0 +(105,355:20167979,7095585:501378,78643,0 +(105,355:20331833,7095585:173670,78643,0 ) ) -(109,355:20669357,7095585:501378,78643,0 -(109,355:20833211,7095585:173670,78643,0 +(105,355:20669357,7095585:501378,78643,0 +(105,355:20833211,7095585:173670,78643,0 ) ) -(109,355:21170735,7095585:501378,78643,0 -(109,355:21334589,7095585:173670,78643,0 +(105,355:21170735,7095585:501378,78643,0 +(105,355:21334589,7095585:173670,78643,0 ) ) -(109,355:21672113,7095585:501378,78643,0 -(109,355:21835967,7095585:173670,78643,0 +(105,355:21672113,7095585:501378,78643,0 +(105,355:21835967,7095585:173670,78643,0 ) ) -(109,355:22173491,7095585:501378,78643,0 -(109,355:22337345,7095585:173670,78643,0 +(105,355:22173491,7095585:501378,78643,0 +(105,355:22337345,7095585:173670,78643,0 ) ) -(109,355:22674869,7095585:501378,78643,0 -(109,355:22838723,7095585:173670,78643,0 +(105,355:22674869,7095585:501378,78643,0 +(105,355:22838723,7095585:173670,78643,0 ) ) -(109,355:23176247,7095585:501378,78643,0 -(109,355:23340101,7095585:173670,78643,0 +(105,355:23176247,7095585:501378,78643,0 +(105,355:23340101,7095585:173670,78643,0 ) ) -(109,355:23677625,7095585:501378,78643,0 -(109,355:23841479,7095585:173670,78643,0 +(105,355:23677625,7095585:501378,78643,0 +(105,355:23841479,7095585:173670,78643,0 ) ) -(109,355:24179003,7095585:501378,78643,0 -(109,355:24342857,7095585:173670,78643,0 +(105,355:24179003,7095585:501378,78643,0 +(105,355:24342857,7095585:173670,78643,0 ) ) -(109,355:24680381,7095585:501378,78643,0 -(109,355:24844235,7095585:173670,78643,0 +(105,355:24680381,7095585:501378,78643,0 +(105,355:24844235,7095585:173670,78643,0 ) ) -(109,355:25181759,7095585:501378,78643,0 -(109,355:25345613,7095585:173670,78643,0 +(105,355:25181759,7095585:501378,78643,0 +(105,355:25345613,7095585:173670,78643,0 ) ) -(109,355:25683137,7095585:501378,78643,0 -(109,355:25846991,7095585:173670,78643,0 +(105,355:25683137,7095585:501378,78643,0 +(105,355:25846991,7095585:173670,78643,0 ) ) -(109,355:26184515,7095585:501378,78643,0 -(109,355:26348369,7095585:173670,78643,0 +(105,355:26184515,7095585:501378,78643,0 +(105,355:26348369,7095585:173670,78643,0 ) ) -(109,355:26685893,7095585:501378,78643,0 -(109,355:26849747,7095585:173670,78643,0 +(105,355:26685893,7095585:501378,78643,0 +(105,355:26849747,7095585:173670,78643,0 ) ) -(109,355:27187271,7095585:501378,78643,0 -(109,355:27351125,7095585:173670,78643,0 +(105,355:27187271,7095585:501378,78643,0 +(105,355:27351125,7095585:173670,78643,0 ) ) -(109,355:27688649,7095585:501378,78643,0 -(109,355:27852503,7095585:173670,78643,0 +(105,355:27688649,7095585:501378,78643,0 +(105,355:27852503,7095585:173670,78643,0 ) ) -(109,355:28190027,7095585:501378,78643,0 -(109,355:28353881,7095585:173670,78643,0 +(105,355:28190027,7095585:501378,78643,0 +(105,355:28353881,7095585:173670,78643,0 ) ) -(109,355:28691405,7095585:501378,78643,0 -(109,355:28855259,7095585:173670,78643,0 +(105,355:28691405,7095585:501378,78643,0 +(105,355:28855259,7095585:173670,78643,0 ) ) -(109,355:29192783,7095585:501378,78643,0 -(109,355:29356637,7095585:173670,78643,0 +(105,355:29192783,7095585:501378,78643,0 +(105,355:29356637,7095585:173670,78643,0 ) ) -(109,355:29694161,7095585:501378,78643,0 -(109,355:29858015,7095585:173670,78643,0 +(105,355:29694161,7095585:501378,78643,0 +(105,355:29858015,7095585:173670,78643,0 ) ) -(109,355:30195539,7095585:501378,78643,0 -(109,355:30359393,7095585:173670,78643,0 +(105,355:30195539,7095585:501378,78643,0 +(105,355:30359393,7095585:173670,78643,0 ) ) -(109,355:30696917,7095585:501378,78643,0 -(109,355:30860771,7095585:173670,78643,0 +(105,355:30696917,7095585:501378,78643,0 +(105,355:30860771,7095585:173670,78643,0 ) ) -(109,355:31403379,7095585:1179650,485622,11795 -k109,355:31403379,7095585:0 -k109,355:31536199,7095585:132820 +(105,355:31239539,7095585:1343490,485622,11795 +k105,355:31239539,7095585:0 +k105,355:31387652,7095585:148113 ) -g109,355:30911859,7095585 -g109,355:32583029,7095585 +g105,355:30911859,7095585 +g105,355:32583029,7095585 ) -(109,357:6630773,7937073:25952256,505283,126483 -g109,357:9121143,7937073 -h109,357:9121143,7937073:983040,0,0 -h109,357:10104183,7937073:0,0,0 -g109,357:7613813,7937073 -(109,357:7613813,7937073:1507330,485622,11795 -k109,357:9121143,7937073:536742 +(105,357:6630773,7937073:25952256,505283,126483 +g105,357:9121143,7937073 +h105,357:9121143,7937073:983040,0,0 +h105,357:10104183,7937073:0,0,0 +g105,357:7613813,7937073 +(105,357:7613813,7937073:1507330,485622,11795 +k105,357:9121143,7937073:536742 ) -g109,357:13180443,7937073 -g109,357:14571117,7937073 -g109,357:17191246,7937073 -g109,357:18998073,7937073 -g109,357:18998073,7937073 -(109,357:19165223,7937073:501378,78643,0 -$109,357:19165223,7937073 -(109,357:19329077,7937073:173670,78643,0 +g105,357:13180443,7937073 +g105,357:14571117,7937073 +g105,357:17191246,7937073 +g105,357:18998073,7937073 +g105,357:18998073,7937073 +(105,357:19165223,7937073:501378,78643,0 +$105,357:19165223,7937073 +(105,357:19329077,7937073:173670,78643,0 ) -$109,357:19666601,7937073 +$105,357:19666601,7937073 ) -(109,357:19666601,7937073:501378,78643,0 -(109,357:19830455,7937073:173670,78643,0 +(105,357:19666601,7937073:501378,78643,0 +(105,357:19830455,7937073:173670,78643,0 ) ) -(109,357:20167979,7937073:501378,78643,0 -(109,357:20331833,7937073:173670,78643,0 +(105,357:20167979,7937073:501378,78643,0 +(105,357:20331833,7937073:173670,78643,0 ) ) -(109,357:20669357,7937073:501378,78643,0 -(109,357:20833211,7937073:173670,78643,0 +(105,357:20669357,7937073:501378,78643,0 +(105,357:20833211,7937073:173670,78643,0 ) ) -(109,357:21170735,7937073:501378,78643,0 -(109,357:21334589,7937073:173670,78643,0 +(105,357:21170735,7937073:501378,78643,0 +(105,357:21334589,7937073:173670,78643,0 ) ) -(109,357:21672113,7937073:501378,78643,0 -(109,357:21835967,7937073:173670,78643,0 +(105,357:21672113,7937073:501378,78643,0 +(105,357:21835967,7937073:173670,78643,0 ) ) -(109,357:22173491,7937073:501378,78643,0 -(109,357:22337345,7937073:173670,78643,0 +(105,357:22173491,7937073:501378,78643,0 +(105,357:22337345,7937073:173670,78643,0 ) ) -(109,357:22674869,7937073:501378,78643,0 -(109,357:22838723,7937073:173670,78643,0 +(105,357:22674869,7937073:501378,78643,0 +(105,357:22838723,7937073:173670,78643,0 ) ) -(109,357:23176247,7937073:501378,78643,0 -(109,357:23340101,7937073:173670,78643,0 +(105,357:23176247,7937073:501378,78643,0 +(105,357:23340101,7937073:173670,78643,0 ) ) -(109,357:23677625,7937073:501378,78643,0 -(109,357:23841479,7937073:173670,78643,0 +(105,357:23677625,7937073:501378,78643,0 +(105,357:23841479,7937073:173670,78643,0 ) ) -(109,357:24179003,7937073:501378,78643,0 -(109,357:24342857,7937073:173670,78643,0 +(105,357:24179003,7937073:501378,78643,0 +(105,357:24342857,7937073:173670,78643,0 ) ) -(109,357:24680381,7937073:501378,78643,0 -(109,357:24844235,7937073:173670,78643,0 +(105,357:24680381,7937073:501378,78643,0 +(105,357:24844235,7937073:173670,78643,0 ) ) -(109,357:25181759,7937073:501378,78643,0 -(109,357:25345613,7937073:173670,78643,0 +(105,357:25181759,7937073:501378,78643,0 +(105,357:25345613,7937073:173670,78643,0 ) ) -(109,357:25683137,7937073:501378,78643,0 -(109,357:25846991,7937073:173670,78643,0 +(105,357:25683137,7937073:501378,78643,0 +(105,357:25846991,7937073:173670,78643,0 ) ) -(109,357:26184515,7937073:501378,78643,0 -(109,357:26348369,7937073:173670,78643,0 +(105,357:26184515,7937073:501378,78643,0 +(105,357:26348369,7937073:173670,78643,0 ) ) -(109,357:26685893,7937073:501378,78643,0 -(109,357:26849747,7937073:173670,78643,0 +(105,357:26685893,7937073:501378,78643,0 +(105,357:26849747,7937073:173670,78643,0 ) ) -(109,357:27187271,7937073:501378,78643,0 -(109,357:27351125,7937073:173670,78643,0 +(105,357:27187271,7937073:501378,78643,0 +(105,357:27351125,7937073:173670,78643,0 ) ) -(109,357:27688649,7937073:501378,78643,0 -(109,357:27852503,7937073:173670,78643,0 +(105,357:27688649,7937073:501378,78643,0 +(105,357:27852503,7937073:173670,78643,0 ) ) -(109,357:28190027,7937073:501378,78643,0 -(109,357:28353881,7937073:173670,78643,0 +(105,357:28190027,7937073:501378,78643,0 +(105,357:28353881,7937073:173670,78643,0 ) ) -(109,357:28691405,7937073:501378,78643,0 -(109,357:28855259,7937073:173670,78643,0 +(105,357:28691405,7937073:501378,78643,0 +(105,357:28855259,7937073:173670,78643,0 ) ) -(109,357:29192783,7937073:501378,78643,0 -(109,357:29356637,7937073:173670,78643,0 +(105,357:29192783,7937073:501378,78643,0 +(105,357:29356637,7937073:173670,78643,0 ) ) -(109,357:29694161,7937073:501378,78643,0 -(109,357:29858015,7937073:173670,78643,0 +(105,357:29694161,7937073:501378,78643,0 +(105,357:29858015,7937073:173670,78643,0 ) ) -(109,357:30195539,7937073:501378,78643,0 -(109,357:30359393,7937073:173670,78643,0 +(105,357:30195539,7937073:501378,78643,0 +(105,357:30359393,7937073:173670,78643,0 ) ) -(109,357:30696917,7937073:501378,78643,0 -(109,357:30860771,7937073:173670,78643,0 +(105,357:30696917,7937073:501378,78643,0 +(105,357:30860771,7937073:173670,78643,0 ) ) -(109,357:31403379,7937073:1179650,485622,11795 -k109,357:31403379,7937073:0 -k109,357:31536199,7937073:132820 +(105,357:31239539,7937073:1343490,485622,0 +k105,357:31239539,7937073:0 +k105,357:31387652,7937073:148113 ) -g109,357:30911859,7937073 -g109,357:32583029,7937073 +g105,357:30911859,7937073 +g105,357:32583029,7937073 ) -(109,359:6630773,8778561:25952256,505283,126483 -g109,359:11218293,8778561 -h109,359:11218293,8778561:2490370,0,0 -h109,359:13708663,8778561:0,0,0 -g109,359:9121143,8778561 -(109,359:9121143,8778561:2097150,485622,11795 -k109,359:11218293,8778561:554432 +(105,359:6630773,8778561:25952256,505283,126483 +g105,359:11218293,8778561 +h105,359:11218293,8778561:2490370,0,0 +h105,359:13708663,8778561:0,0,0 +g105,359:9121143,8778561 +(105,359:9121143,8778561:2097150,485622,11795 +k105,359:11218293,8778561:554432 ) -g109,359:14634029,8778561 -g109,359:16241627,8778561 -(109,359:16658333,8778561:501378,78643,0 -$109,359:16658333,8778561 -(109,359:16822187,8778561:173670,78643,0 +g105,359:14634029,8778561 +g105,359:16241627,8778561 +(105,359:16658333,8778561:501378,78643,0 +$105,359:16658333,8778561 +(105,359:16822187,8778561:173670,78643,0 ) -$109,359:17159711,8778561 +$105,359:17159711,8778561 ) -(109,359:17159711,8778561:501378,78643,0 -(109,359:17323565,8778561:173670,78643,0 +(105,359:17159711,8778561:501378,78643,0 +(105,359:17323565,8778561:173670,78643,0 ) ) -(109,359:17661089,8778561:501378,78643,0 -(109,359:17824943,8778561:173670,78643,0 +(105,359:17661089,8778561:501378,78643,0 +(105,359:17824943,8778561:173670,78643,0 ) ) -(109,359:18162467,8778561:501378,78643,0 -(109,359:18326321,8778561:173670,78643,0 +(105,359:18162467,8778561:501378,78643,0 +(105,359:18326321,8778561:173670,78643,0 ) ) -(109,359:18663845,8778561:501378,78643,0 -(109,359:18827699,8778561:173670,78643,0 +(105,359:18663845,8778561:501378,78643,0 +(105,359:18827699,8778561:173670,78643,0 ) ) -(109,359:19165223,8778561:501378,78643,0 -(109,359:19329077,8778561:173670,78643,0 +(105,359:19165223,8778561:501378,78643,0 +(105,359:19329077,8778561:173670,78643,0 ) ) -(109,359:19666601,8778561:501378,78643,0 -(109,359:19830455,8778561:173670,78643,0 +(105,359:19666601,8778561:501378,78643,0 +(105,359:19830455,8778561:173670,78643,0 ) ) -(109,359:20167979,8778561:501378,78643,0 -(109,359:20331833,8778561:173670,78643,0 +(105,359:20167979,8778561:501378,78643,0 +(105,359:20331833,8778561:173670,78643,0 ) ) -(109,359:20669357,8778561:501378,78643,0 -(109,359:20833211,8778561:173670,78643,0 +(105,359:20669357,8778561:501378,78643,0 +(105,359:20833211,8778561:173670,78643,0 ) ) -(109,359:21170735,8778561:501378,78643,0 -(109,359:21334589,8778561:173670,78643,0 +(105,359:21170735,8778561:501378,78643,0 +(105,359:21334589,8778561:173670,78643,0 ) ) -(109,359:21672113,8778561:501378,78643,0 -(109,359:21835967,8778561:173670,78643,0 +(105,359:21672113,8778561:501378,78643,0 +(105,359:21835967,8778561:173670,78643,0 ) ) -(109,359:22173491,8778561:501378,78643,0 -(109,359:22337345,8778561:173670,78643,0 +(105,359:22173491,8778561:501378,78643,0 +(105,359:22337345,8778561:173670,78643,0 ) ) -(109,359:22674869,8778561:501378,78643,0 -(109,359:22838723,8778561:173670,78643,0 +(105,359:22674869,8778561:501378,78643,0 +(105,359:22838723,8778561:173670,78643,0 ) ) -(109,359:23176247,8778561:501378,78643,0 -(109,359:23340101,8778561:173670,78643,0 +(105,359:23176247,8778561:501378,78643,0 +(105,359:23340101,8778561:173670,78643,0 ) ) -(109,359:23677625,8778561:501378,78643,0 -(109,359:23841479,8778561:173670,78643,0 +(105,359:23677625,8778561:501378,78643,0 +(105,359:23841479,8778561:173670,78643,0 ) ) -(109,359:24179003,8778561:501378,78643,0 -(109,359:24342857,8778561:173670,78643,0 +(105,359:24179003,8778561:501378,78643,0 +(105,359:24342857,8778561:173670,78643,0 ) ) -(109,359:24680381,8778561:501378,78643,0 -(109,359:24844235,8778561:173670,78643,0 +(105,359:24680381,8778561:501378,78643,0 +(105,359:24844235,8778561:173670,78643,0 ) ) -(109,359:25181759,8778561:501378,78643,0 -(109,359:25345613,8778561:173670,78643,0 +(105,359:25181759,8778561:501378,78643,0 +(105,359:25345613,8778561:173670,78643,0 ) ) -(109,359:25683137,8778561:501378,78643,0 -(109,359:25846991,8778561:173670,78643,0 +(105,359:25683137,8778561:501378,78643,0 +(105,359:25846991,8778561:173670,78643,0 ) ) -(109,359:26184515,8778561:501378,78643,0 -(109,359:26348369,8778561:173670,78643,0 +(105,359:26184515,8778561:501378,78643,0 +(105,359:26348369,8778561:173670,78643,0 ) ) -(109,359:26685893,8778561:501378,78643,0 -(109,359:26849747,8778561:173670,78643,0 +(105,359:26685893,8778561:501378,78643,0 +(105,359:26849747,8778561:173670,78643,0 ) ) -(109,359:27187271,8778561:501378,78643,0 -(109,359:27351125,8778561:173670,78643,0 +(105,359:27187271,8778561:501378,78643,0 +(105,359:27351125,8778561:173670,78643,0 ) ) -(109,359:27688649,8778561:501378,78643,0 -(109,359:27852503,8778561:173670,78643,0 +(105,359:27688649,8778561:501378,78643,0 +(105,359:27852503,8778561:173670,78643,0 ) ) -(109,359:28190027,8778561:501378,78643,0 -(109,359:28353881,8778561:173670,78643,0 +(105,359:28190027,8778561:501378,78643,0 +(105,359:28353881,8778561:173670,78643,0 ) ) -(109,359:28691405,8778561:501378,78643,0 -(109,359:28855259,8778561:173670,78643,0 +(105,359:28691405,8778561:501378,78643,0 +(105,359:28855259,8778561:173670,78643,0 ) ) -(109,359:29192783,8778561:501378,78643,0 -(109,359:29356637,8778561:173670,78643,0 +(105,359:29192783,8778561:501378,78643,0 +(105,359:29356637,8778561:173670,78643,0 ) ) -(109,359:29694161,8778561:501378,78643,0 -(109,359:29858015,8778561:173670,78643,0 +(105,359:29694161,8778561:501378,78643,0 +(105,359:29858015,8778561:173670,78643,0 ) ) -(109,359:30195539,8778561:501378,78643,0 -(109,359:30359393,8778561:173670,78643,0 +(105,359:30195539,8778561:501378,78643,0 +(105,359:30359393,8778561:173670,78643,0 ) ) -(109,359:30696917,8778561:501378,78643,0 -(109,359:30860771,8778561:173670,78643,0 +(105,359:30696917,8778561:501378,78643,0 +(105,359:30860771,8778561:173670,78643,0 ) ) -(109,359:31403379,8778561:1179650,485622,11795 -k109,359:31403379,8778561:0 -k109,359:31536199,8778561:132820 +(105,359:31239539,8778561:1343490,485622,0 +k105,359:31239539,8778561:0 +k105,359:31387652,8778561:148113 ) -g109,359:30911859,8778561 -g109,359:32583029,8778561 +g105,359:30911859,8778561 +g105,359:32583029,8778561 ) -(109,361:6630773,9620049:25952256,505283,11795 -g109,361:11218293,9620049 -h109,361:11218293,9620049:2490370,0,0 -h109,361:13708663,9620049:0,0,0 -g109,361:9121143,9620049 -(109,361:9121143,9620049:2097150,485622,11795 -k109,361:11218293,9620049:554432 +(105,361:6630773,9620049:25952256,505283,11795 +g105,361:11218293,9620049 +h105,361:11218293,9620049:2490370,0,0 +h105,361:13708663,9620049:0,0,0 +g105,361:9121143,9620049 +(105,361:9121143,9620049:2097150,485622,11795 +k105,361:11218293,9620049:554432 ) -g109,361:12341580,9620049 -g109,361:14321423,9620049 -(109,361:14652821,9620049:501378,78643,0 -$109,361:14652821,9620049 -(109,361:14816675,9620049:173670,78643,0 +g105,361:12341580,9620049 +g105,361:14321423,9620049 +(105,361:14652821,9620049:501378,78643,0 +$105,361:14652821,9620049 +(105,361:14816675,9620049:173670,78643,0 ) -$109,361:15154199,9620049 +$105,361:15154199,9620049 ) -(109,361:15154199,9620049:501378,78643,0 -(109,361:15318053,9620049:173670,78643,0 +(105,361:15154199,9620049:501378,78643,0 +(105,361:15318053,9620049:173670,78643,0 ) ) -(109,361:15655577,9620049:501378,78643,0 -(109,361:15819431,9620049:173670,78643,0 +(105,361:15655577,9620049:501378,78643,0 +(105,361:15819431,9620049:173670,78643,0 ) ) -(109,361:16156955,9620049:501378,78643,0 -(109,361:16320809,9620049:173670,78643,0 +(105,361:16156955,9620049:501378,78643,0 +(105,361:16320809,9620049:173670,78643,0 ) ) -(109,361:16658333,9620049:501378,78643,0 -(109,361:16822187,9620049:173670,78643,0 +(105,361:16658333,9620049:501378,78643,0 +(105,361:16822187,9620049:173670,78643,0 ) ) -(109,361:17159711,9620049:501378,78643,0 -(109,361:17323565,9620049:173670,78643,0 +(105,361:17159711,9620049:501378,78643,0 +(105,361:17323565,9620049:173670,78643,0 ) ) -(109,361:17661089,9620049:501378,78643,0 -(109,361:17824943,9620049:173670,78643,0 +(105,361:17661089,9620049:501378,78643,0 +(105,361:17824943,9620049:173670,78643,0 ) ) -(109,361:18162467,9620049:501378,78643,0 -(109,361:18326321,9620049:173670,78643,0 +(105,361:18162467,9620049:501378,78643,0 +(105,361:18326321,9620049:173670,78643,0 ) ) -(109,361:18663845,9620049:501378,78643,0 -(109,361:18827699,9620049:173670,78643,0 +(105,361:18663845,9620049:501378,78643,0 +(105,361:18827699,9620049:173670,78643,0 ) ) -(109,361:19165223,9620049:501378,78643,0 -(109,361:19329077,9620049:173670,78643,0 +(105,361:19165223,9620049:501378,78643,0 +(105,361:19329077,9620049:173670,78643,0 ) ) -(109,361:19666601,9620049:501378,78643,0 -(109,361:19830455,9620049:173670,78643,0 +(105,361:19666601,9620049:501378,78643,0 +(105,361:19830455,9620049:173670,78643,0 ) ) -(109,361:20167979,9620049:501378,78643,0 -(109,361:20331833,9620049:173670,78643,0 +(105,361:20167979,9620049:501378,78643,0 +(105,361:20331833,9620049:173670,78643,0 ) ) -(109,361:20669357,9620049:501378,78643,0 -(109,361:20833211,9620049:173670,78643,0 +(105,361:20669357,9620049:501378,78643,0 +(105,361:20833211,9620049:173670,78643,0 ) ) -(109,361:21170735,9620049:501378,78643,0 -(109,361:21334589,9620049:173670,78643,0 +(105,361:21170735,9620049:501378,78643,0 +(105,361:21334589,9620049:173670,78643,0 ) ) -(109,361:21672113,9620049:501378,78643,0 -(109,361:21835967,9620049:173670,78643,0 +(105,361:21672113,9620049:501378,78643,0 +(105,361:21835967,9620049:173670,78643,0 ) ) -(109,361:22173491,9620049:501378,78643,0 -(109,361:22337345,9620049:173670,78643,0 +(105,361:22173491,9620049:501378,78643,0 +(105,361:22337345,9620049:173670,78643,0 ) ) -(109,361:22674869,9620049:501378,78643,0 -(109,361:22838723,9620049:173670,78643,0 +(105,361:22674869,9620049:501378,78643,0 +(105,361:22838723,9620049:173670,78643,0 ) ) -(109,361:23176247,9620049:501378,78643,0 -(109,361:23340101,9620049:173670,78643,0 +(105,361:23176247,9620049:501378,78643,0 +(105,361:23340101,9620049:173670,78643,0 ) ) -(109,361:23677625,9620049:501378,78643,0 -(109,361:23841479,9620049:173670,78643,0 +(105,361:23677625,9620049:501378,78643,0 +(105,361:23841479,9620049:173670,78643,0 ) ) -(109,361:24179003,9620049:501378,78643,0 -(109,361:24342857,9620049:173670,78643,0 +(105,361:24179003,9620049:501378,78643,0 +(105,361:24342857,9620049:173670,78643,0 ) ) -(109,361:24680381,9620049:501378,78643,0 -(109,361:24844235,9620049:173670,78643,0 +(105,361:24680381,9620049:501378,78643,0 +(105,361:24844235,9620049:173670,78643,0 ) ) -(109,361:25181759,9620049:501378,78643,0 -(109,361:25345613,9620049:173670,78643,0 +(105,361:25181759,9620049:501378,78643,0 +(105,361:25345613,9620049:173670,78643,0 ) ) -(109,361:25683137,9620049:501378,78643,0 -(109,361:25846991,9620049:173670,78643,0 +(105,361:25683137,9620049:501378,78643,0 +(105,361:25846991,9620049:173670,78643,0 ) ) -(109,361:26184515,9620049:501378,78643,0 -(109,361:26348369,9620049:173670,78643,0 +(105,361:26184515,9620049:501378,78643,0 +(105,361:26348369,9620049:173670,78643,0 ) ) -(109,361:26685893,9620049:501378,78643,0 -(109,361:26849747,9620049:173670,78643,0 +(105,361:26685893,9620049:501378,78643,0 +(105,361:26849747,9620049:173670,78643,0 ) ) -(109,361:27187271,9620049:501378,78643,0 -(109,361:27351125,9620049:173670,78643,0 +(105,361:27187271,9620049:501378,78643,0 +(105,361:27351125,9620049:173670,78643,0 ) ) -(109,361:27688649,9620049:501378,78643,0 -(109,361:27852503,9620049:173670,78643,0 +(105,361:27688649,9620049:501378,78643,0 +(105,361:27852503,9620049:173670,78643,0 ) ) -(109,361:28190027,9620049:501378,78643,0 -(109,361:28353881,9620049:173670,78643,0 +(105,361:28190027,9620049:501378,78643,0 +(105,361:28353881,9620049:173670,78643,0 ) ) -(109,361:28691405,9620049:501378,78643,0 -(109,361:28855259,9620049:173670,78643,0 +(105,361:28691405,9620049:501378,78643,0 +(105,361:28855259,9620049:173670,78643,0 ) ) -(109,361:29192783,9620049:501378,78643,0 -(109,361:29356637,9620049:173670,78643,0 +(105,361:29192783,9620049:501378,78643,0 +(105,361:29356637,9620049:173670,78643,0 ) ) -(109,361:29694161,9620049:501378,78643,0 -(109,361:29858015,9620049:173670,78643,0 +(105,361:29694161,9620049:501378,78643,0 +(105,361:29858015,9620049:173670,78643,0 ) ) -(109,361:30195539,9620049:501378,78643,0 -(109,361:30359393,9620049:173670,78643,0 +(105,361:30195539,9620049:501378,78643,0 +(105,361:30359393,9620049:173670,78643,0 ) ) -(109,361:30696917,9620049:501378,78643,0 -(109,361:30860771,9620049:173670,78643,0 +(105,361:30696917,9620049:501378,78643,0 +(105,361:30860771,9620049:173670,78643,0 ) ) -(109,361:31403379,9620049:1179650,485622,0 -k109,361:31403379,9620049:0 -k109,361:31536199,9620049:132820 +(105,361:31239539,9620049:1343490,485622,11795 +k105,361:31239539,9620049:0 +k105,361:31387652,9620049:148113 ) -g109,361:30911859,9620049 -g109,361:32583029,9620049 +g105,361:30911859,9620049 +g105,361:32583029,9620049 ) -(109,363:6630773,10461537:25952256,505283,11795 -g109,363:9121143,10461537 -h109,363:9121143,10461537:983040,0,0 -h109,363:10104183,10461537:0,0,0 -g109,363:7613813,10461537 -(109,363:7613813,10461537:1507330,485622,11795 -k109,363:9121143,10461537:138283 +(105,363:6630773,10461537:25952256,505283,11795 +g105,363:9121143,10461537 +h105,363:9121143,10461537:983040,0,0 +h105,363:10104183,10461537:0,0,0 +g105,363:7613813,10461537 +(105,363:7613813,10461537:1507330,485622,11795 +k105,363:9121143,10461537:138283 ) -g109,363:11814672,10461537 -g109,363:11814672,10461537 -(109,363:12145931,10461537:501378,78643,0 -$109,363:12145931,10461537 -(109,363:12309785,10461537:173670,78643,0 +g105,363:11814672,10461537 +g105,363:11814672,10461537 +(105,363:12145931,10461537:501378,78643,0 +$105,363:12145931,10461537 +(105,363:12309785,10461537:173670,78643,0 ) -$109,363:12647309,10461537 +$105,363:12647309,10461537 ) -(109,363:12647309,10461537:501378,78643,0 -(109,363:12811163,10461537:173670,78643,0 +(105,363:12647309,10461537:501378,78643,0 +(105,363:12811163,10461537:173670,78643,0 ) ) -(109,363:13148687,10461537:501378,78643,0 -(109,363:13312541,10461537:173670,78643,0 +(105,363:13148687,10461537:501378,78643,0 +(105,363:13312541,10461537:173670,78643,0 ) ) -(109,363:13650065,10461537:501378,78643,0 -(109,363:13813919,10461537:173670,78643,0 +(105,363:13650065,10461537:501378,78643,0 +(105,363:13813919,10461537:173670,78643,0 ) ) -(109,363:14151443,10461537:501378,78643,0 -(109,363:14315297,10461537:173670,78643,0 +(105,363:14151443,10461537:501378,78643,0 +(105,363:14315297,10461537:173670,78643,0 ) ) -(109,363:14652821,10461537:501378,78643,0 -(109,363:14816675,10461537:173670,78643,0 +(105,363:14652821,10461537:501378,78643,0 +(105,363:14816675,10461537:173670,78643,0 ) ) -(109,363:15154199,10461537:501378,78643,0 -(109,363:15318053,10461537:173670,78643,0 +(105,363:15154199,10461537:501378,78643,0 +(105,363:15318053,10461537:173670,78643,0 ) ) -(109,363:15655577,10461537:501378,78643,0 -(109,363:15819431,10461537:173670,78643,0 +(105,363:15655577,10461537:501378,78643,0 +(105,363:15819431,10461537:173670,78643,0 ) ) -(109,363:16156955,10461537:501378,78643,0 -(109,363:16320809,10461537:173670,78643,0 +(105,363:16156955,10461537:501378,78643,0 +(105,363:16320809,10461537:173670,78643,0 ) ) -(109,363:16658333,10461537:501378,78643,0 -(109,363:16822187,10461537:173670,78643,0 +(105,363:16658333,10461537:501378,78643,0 +(105,363:16822187,10461537:173670,78643,0 ) ) -(109,363:17159711,10461537:501378,78643,0 -(109,363:17323565,10461537:173670,78643,0 +(105,363:17159711,10461537:501378,78643,0 +(105,363:17323565,10461537:173670,78643,0 ) ) -(109,363:17661089,10461537:501378,78643,0 -(109,363:17824943,10461537:173670,78643,0 +(105,363:17661089,10461537:501378,78643,0 +(105,363:17824943,10461537:173670,78643,0 ) ) -(109,363:18162467,10461537:501378,78643,0 -(109,363:18326321,10461537:173670,78643,0 +(105,363:18162467,10461537:501378,78643,0 +(105,363:18326321,10461537:173670,78643,0 ) ) -(109,363:18663845,10461537:501378,78643,0 -(109,363:18827699,10461537:173670,78643,0 +(105,363:18663845,10461537:501378,78643,0 +(105,363:18827699,10461537:173670,78643,0 ) ) -(109,363:19165223,10461537:501378,78643,0 -(109,363:19329077,10461537:173670,78643,0 +(105,363:19165223,10461537:501378,78643,0 +(105,363:19329077,10461537:173670,78643,0 ) ) -(109,363:19666601,10461537:501378,78643,0 -(109,363:19830455,10461537:173670,78643,0 +(105,363:19666601,10461537:501378,78643,0 +(105,363:19830455,10461537:173670,78643,0 ) ) -(109,363:20167979,10461537:501378,78643,0 -(109,363:20331833,10461537:173670,78643,0 +(105,363:20167979,10461537:501378,78643,0 +(105,363:20331833,10461537:173670,78643,0 ) ) -(109,363:20669357,10461537:501378,78643,0 -(109,363:20833211,10461537:173670,78643,0 +(105,363:20669357,10461537:501378,78643,0 +(105,363:20833211,10461537:173670,78643,0 ) ) -(109,363:21170735,10461537:501378,78643,0 -(109,363:21334589,10461537:173670,78643,0 +(105,363:21170735,10461537:501378,78643,0 +(105,363:21334589,10461537:173670,78643,0 ) ) -(109,363:21672113,10461537:501378,78643,0 -(109,363:21835967,10461537:173670,78643,0 +(105,363:21672113,10461537:501378,78643,0 +(105,363:21835967,10461537:173670,78643,0 ) ) -(109,363:22173491,10461537:501378,78643,0 -(109,363:22337345,10461537:173670,78643,0 +(105,363:22173491,10461537:501378,78643,0 +(105,363:22337345,10461537:173670,78643,0 ) ) -(109,363:22674869,10461537:501378,78643,0 -(109,363:22838723,10461537:173670,78643,0 +(105,363:22674869,10461537:501378,78643,0 +(105,363:22838723,10461537:173670,78643,0 ) ) -(109,363:23176247,10461537:501378,78643,0 -(109,363:23340101,10461537:173670,78643,0 +(105,363:23176247,10461537:501378,78643,0 +(105,363:23340101,10461537:173670,78643,0 ) ) -(109,363:23677625,10461537:501378,78643,0 -(109,363:23841479,10461537:173670,78643,0 +(105,363:23677625,10461537:501378,78643,0 +(105,363:23841479,10461537:173670,78643,0 ) ) -(109,363:24179003,10461537:501378,78643,0 -(109,363:24342857,10461537:173670,78643,0 +(105,363:24179003,10461537:501378,78643,0 +(105,363:24342857,10461537:173670,78643,0 ) ) -(109,363:24680381,10461537:501378,78643,0 -(109,363:24844235,10461537:173670,78643,0 +(105,363:24680381,10461537:501378,78643,0 +(105,363:24844235,10461537:173670,78643,0 ) ) -(109,363:25181759,10461537:501378,78643,0 -(109,363:25345613,10461537:173670,78643,0 +(105,363:25181759,10461537:501378,78643,0 +(105,363:25345613,10461537:173670,78643,0 ) ) -(109,363:25683137,10461537:501378,78643,0 -(109,363:25846991,10461537:173670,78643,0 +(105,363:25683137,10461537:501378,78643,0 +(105,363:25846991,10461537:173670,78643,0 ) ) -(109,363:26184515,10461537:501378,78643,0 -(109,363:26348369,10461537:173670,78643,0 +(105,363:26184515,10461537:501378,78643,0 +(105,363:26348369,10461537:173670,78643,0 ) ) -(109,363:26685893,10461537:501378,78643,0 -(109,363:26849747,10461537:173670,78643,0 +(105,363:26685893,10461537:501378,78643,0 +(105,363:26849747,10461537:173670,78643,0 ) ) -(109,363:27187271,10461537:501378,78643,0 -(109,363:27351125,10461537:173670,78643,0 +(105,363:27187271,10461537:501378,78643,0 +(105,363:27351125,10461537:173670,78643,0 ) ) -(109,363:27688649,10461537:501378,78643,0 -(109,363:27852503,10461537:173670,78643,0 +(105,363:27688649,10461537:501378,78643,0 +(105,363:27852503,10461537:173670,78643,0 ) ) -(109,363:28190027,10461537:501378,78643,0 -(109,363:28353881,10461537:173670,78643,0 +(105,363:28190027,10461537:501378,78643,0 +(105,363:28353881,10461537:173670,78643,0 ) ) -(109,363:28691405,10461537:501378,78643,0 -(109,363:28855259,10461537:173670,78643,0 +(105,363:28691405,10461537:501378,78643,0 +(105,363:28855259,10461537:173670,78643,0 ) ) -(109,363:29192783,10461537:501378,78643,0 -(109,363:29356637,10461537:173670,78643,0 +(105,363:29192783,10461537:501378,78643,0 +(105,363:29356637,10461537:173670,78643,0 ) ) -(109,363:29694161,10461537:501378,78643,0 -(109,363:29858015,10461537:173670,78643,0 +(105,363:29694161,10461537:501378,78643,0 +(105,363:29858015,10461537:173670,78643,0 ) ) -(109,363:30195539,10461537:501378,78643,0 -(109,363:30359393,10461537:173670,78643,0 +(105,363:30195539,10461537:501378,78643,0 +(105,363:30359393,10461537:173670,78643,0 ) ) -(109,363:30696917,10461537:501378,78643,0 -(109,363:30860771,10461537:173670,78643,0 +(105,363:30696917,10461537:501378,78643,0 +(105,363:30860771,10461537:173670,78643,0 ) ) -(109,363:31403380,10461537:1179650,485622,11795 -k109,363:31403380,10461537:0 -k109,363:31536200,10461537:132820 +(105,363:31239540,10461537:1343490,485622,0 +k105,363:31239540,10461537:0 +k105,363:31387653,10461537:148113 ) -g109,363:30911860,10461537 -g109,363:32583030,10461537 +g105,363:30911860,10461537 +g105,363:32583030,10461537 ) -(109,365:6630773,11303025:25952256,505283,126483 -g109,365:11218293,11303025 -h109,365:11218293,11303025:2490370,0,0 -h109,365:13708663,11303025:0,0,0 -g109,365:9121143,11303025 -(109,365:9121143,11303025:2097150,485622,11795 -k109,365:11218293,11303025:155974 +(105,365:6630773,11303025:25952256,505283,126483 +g105,365:11218293,11303025 +h105,365:11218293,11303025:2490370,0,0 +h105,365:13708663,11303025:0,0,0 +g105,365:9121143,11303025 +(105,365:9121143,11303025:2097150,485622,11795 +k105,365:11218293,11303025:155974 ) -g109,365:14464946,11303025 -g109,365:16781644,11303025 -(109,365:17159711,11303025:501378,78643,0 -$109,365:17159711,11303025 -(109,365:17323565,11303025:173670,78643,0 +g105,365:14464946,11303025 +g105,365:16781644,11303025 +(105,365:17159711,11303025:501378,78643,0 +$105,365:17159711,11303025 +(105,365:17323565,11303025:173670,78643,0 ) -$109,365:17661089,11303025 +$105,365:17661089,11303025 ) -(109,365:17661089,11303025:501378,78643,0 -(109,365:17824943,11303025:173670,78643,0 +(105,365:17661089,11303025:501378,78643,0 +(105,365:17824943,11303025:173670,78643,0 ) ) -(109,365:18162467,11303025:501378,78643,0 -(109,365:18326321,11303025:173670,78643,0 +(105,365:18162467,11303025:501378,78643,0 +(105,365:18326321,11303025:173670,78643,0 ) ) -(109,365:18663845,11303025:501378,78643,0 -(109,365:18827699,11303025:173670,78643,0 +(105,365:18663845,11303025:501378,78643,0 +(105,365:18827699,11303025:173670,78643,0 ) ) -(109,365:19165223,11303025:501378,78643,0 -(109,365:19329077,11303025:173670,78643,0 +(105,365:19165223,11303025:501378,78643,0 +(105,365:19329077,11303025:173670,78643,0 ) ) -(109,365:19666601,11303025:501378,78643,0 -(109,365:19830455,11303025:173670,78643,0 +(105,365:19666601,11303025:501378,78643,0 +(105,365:19830455,11303025:173670,78643,0 ) ) -(109,365:20167979,11303025:501378,78643,0 -(109,365:20331833,11303025:173670,78643,0 +(105,365:20167979,11303025:501378,78643,0 +(105,365:20331833,11303025:173670,78643,0 ) ) -(109,365:20669357,11303025:501378,78643,0 -(109,365:20833211,11303025:173670,78643,0 +(105,365:20669357,11303025:501378,78643,0 +(105,365:20833211,11303025:173670,78643,0 ) ) -(109,365:21170735,11303025:501378,78643,0 -(109,365:21334589,11303025:173670,78643,0 +(105,365:21170735,11303025:501378,78643,0 +(105,365:21334589,11303025:173670,78643,0 ) ) -(109,365:21672113,11303025:501378,78643,0 -(109,365:21835967,11303025:173670,78643,0 +(105,365:21672113,11303025:501378,78643,0 +(105,365:21835967,11303025:173670,78643,0 ) ) -(109,365:22173491,11303025:501378,78643,0 -(109,365:22337345,11303025:173670,78643,0 +(105,365:22173491,11303025:501378,78643,0 +(105,365:22337345,11303025:173670,78643,0 ) ) -(109,365:22674869,11303025:501378,78643,0 -(109,365:22838723,11303025:173670,78643,0 +(105,365:22674869,11303025:501378,78643,0 +(105,365:22838723,11303025:173670,78643,0 ) ) -(109,365:23176247,11303025:501378,78643,0 -(109,365:23340101,11303025:173670,78643,0 +(105,365:23176247,11303025:501378,78643,0 +(105,365:23340101,11303025:173670,78643,0 ) ) -(109,365:23677625,11303025:501378,78643,0 -(109,365:23841479,11303025:173670,78643,0 +(105,365:23677625,11303025:501378,78643,0 +(105,365:23841479,11303025:173670,78643,0 ) ) -(109,365:24179003,11303025:501378,78643,0 -(109,365:24342857,11303025:173670,78643,0 +(105,365:24179003,11303025:501378,78643,0 +(105,365:24342857,11303025:173670,78643,0 ) ) -(109,365:24680381,11303025:501378,78643,0 -(109,365:24844235,11303025:173670,78643,0 +(105,365:24680381,11303025:501378,78643,0 +(105,365:24844235,11303025:173670,78643,0 ) ) -(109,365:25181759,11303025:501378,78643,0 -(109,365:25345613,11303025:173670,78643,0 +(105,365:25181759,11303025:501378,78643,0 +(105,365:25345613,11303025:173670,78643,0 ) ) -(109,365:25683137,11303025:501378,78643,0 -(109,365:25846991,11303025:173670,78643,0 +(105,365:25683137,11303025:501378,78643,0 +(105,365:25846991,11303025:173670,78643,0 ) ) -(109,365:26184515,11303025:501378,78643,0 -(109,365:26348369,11303025:173670,78643,0 +(105,365:26184515,11303025:501378,78643,0 +(105,365:26348369,11303025:173670,78643,0 ) ) -(109,365:26685893,11303025:501378,78643,0 -(109,365:26849747,11303025:173670,78643,0 +(105,365:26685893,11303025:501378,78643,0 +(105,365:26849747,11303025:173670,78643,0 ) ) -(109,365:27187271,11303025:501378,78643,0 -(109,365:27351125,11303025:173670,78643,0 +(105,365:27187271,11303025:501378,78643,0 +(105,365:27351125,11303025:173670,78643,0 ) ) -(109,365:27688649,11303025:501378,78643,0 -(109,365:27852503,11303025:173670,78643,0 +(105,365:27688649,11303025:501378,78643,0 +(105,365:27852503,11303025:173670,78643,0 ) ) -(109,365:28190027,11303025:501378,78643,0 -(109,365:28353881,11303025:173670,78643,0 +(105,365:28190027,11303025:501378,78643,0 +(105,365:28353881,11303025:173670,78643,0 ) ) -(109,365:28691405,11303025:501378,78643,0 -(109,365:28855259,11303025:173670,78643,0 +(105,365:28691405,11303025:501378,78643,0 +(105,365:28855259,11303025:173670,78643,0 ) ) -(109,365:29192783,11303025:501378,78643,0 -(109,365:29356637,11303025:173670,78643,0 +(105,365:29192783,11303025:501378,78643,0 +(105,365:29356637,11303025:173670,78643,0 ) ) -(109,365:29694161,11303025:501378,78643,0 -(109,365:29858015,11303025:173670,78643,0 +(105,365:29694161,11303025:501378,78643,0 +(105,365:29858015,11303025:173670,78643,0 ) ) -(109,365:30195539,11303025:501378,78643,0 -(109,365:30359393,11303025:173670,78643,0 +(105,365:30195539,11303025:501378,78643,0 +(105,365:30359393,11303025:173670,78643,0 ) ) -(109,365:30696917,11303025:501378,78643,0 -(109,365:30860771,11303025:173670,78643,0 +(105,365:30696917,11303025:501378,78643,0 +(105,365:30860771,11303025:173670,78643,0 ) ) -(109,365:31403379,11303025:1179650,485622,11795 -k109,365:31403379,11303025:0 -k109,365:31536199,11303025:132820 +(105,365:31239539,11303025:1343490,485622,0 +k105,365:31239539,11303025:0 +k105,365:31387652,11303025:148113 ) -g109,365:30911859,11303025 -g109,365:32583029,11303025 +g105,365:30911859,11303025 +g105,365:32583029,11303025 ) -(109,367:6630773,12144513:25952256,505283,126483 -g109,367:11218293,12144513 -h109,367:11218293,12144513:2490370,0,0 -h109,367:13708663,12144513:0,0,0 -g109,367:9121143,12144513 -(109,367:9121143,12144513:2097150,485622,11795 -k109,367:11218293,12144513:155974 +(105,367:6630773,12144513:25952256,505283,126483 +g105,367:11218293,12144513 +h105,367:11218293,12144513:2490370,0,0 +h105,367:13708663,12144513:0,0,0 +g105,367:9121143,12144513 +(105,367:9121143,12144513:2097150,485622,11795 +k105,367:11218293,12144513:155974 ) -g109,367:14970884,12144513 -g109,367:17287582,12144513 -(109,367:17661089,12144513:501378,78643,0 -$109,367:17661089,12144513 -(109,367:17824943,12144513:173670,78643,0 +g105,367:14970884,12144513 +g105,367:17287582,12144513 +(105,367:17661089,12144513:501378,78643,0 +$105,367:17661089,12144513 +(105,367:17824943,12144513:173670,78643,0 ) -$109,367:18162467,12144513 +$105,367:18162467,12144513 ) -(109,367:18162467,12144513:501378,78643,0 -(109,367:18326321,12144513:173670,78643,0 +(105,367:18162467,12144513:501378,78643,0 +(105,367:18326321,12144513:173670,78643,0 ) ) -(109,367:18663845,12144513:501378,78643,0 -(109,367:18827699,12144513:173670,78643,0 +(105,367:18663845,12144513:501378,78643,0 +(105,367:18827699,12144513:173670,78643,0 ) ) -(109,367:19165223,12144513:501378,78643,0 -(109,367:19329077,12144513:173670,78643,0 +(105,367:19165223,12144513:501378,78643,0 +(105,367:19329077,12144513:173670,78643,0 ) ) -(109,367:19666601,12144513:501378,78643,0 -(109,367:19830455,12144513:173670,78643,0 +(105,367:19666601,12144513:501378,78643,0 +(105,367:19830455,12144513:173670,78643,0 ) ) -(109,367:20167979,12144513:501378,78643,0 -(109,367:20331833,12144513:173670,78643,0 +(105,367:20167979,12144513:501378,78643,0 +(105,367:20331833,12144513:173670,78643,0 ) ) -(109,367:20669357,12144513:501378,78643,0 -(109,367:20833211,12144513:173670,78643,0 +(105,367:20669357,12144513:501378,78643,0 +(105,367:20833211,12144513:173670,78643,0 ) ) -(109,367:21170735,12144513:501378,78643,0 -(109,367:21334589,12144513:173670,78643,0 +(105,367:21170735,12144513:501378,78643,0 +(105,367:21334589,12144513:173670,78643,0 ) ) -(109,367:21672113,12144513:501378,78643,0 -(109,367:21835967,12144513:173670,78643,0 +(105,367:21672113,12144513:501378,78643,0 +(105,367:21835967,12144513:173670,78643,0 ) ) -(109,367:22173491,12144513:501378,78643,0 -(109,367:22337345,12144513:173670,78643,0 +(105,367:22173491,12144513:501378,78643,0 +(105,367:22337345,12144513:173670,78643,0 ) ) -(109,367:22674869,12144513:501378,78643,0 -(109,367:22838723,12144513:173670,78643,0 +(105,367:22674869,12144513:501378,78643,0 +(105,367:22838723,12144513:173670,78643,0 ) ) -(109,367:23176247,12144513:501378,78643,0 -(109,367:23340101,12144513:173670,78643,0 +(105,367:23176247,12144513:501378,78643,0 +(105,367:23340101,12144513:173670,78643,0 ) ) -(109,367:23677625,12144513:501378,78643,0 -(109,367:23841479,12144513:173670,78643,0 +(105,367:23677625,12144513:501378,78643,0 +(105,367:23841479,12144513:173670,78643,0 ) ) -(109,367:24179003,12144513:501378,78643,0 -(109,367:24342857,12144513:173670,78643,0 +(105,367:24179003,12144513:501378,78643,0 +(105,367:24342857,12144513:173670,78643,0 ) ) -(109,367:24680381,12144513:501378,78643,0 -(109,367:24844235,12144513:173670,78643,0 +(105,367:24680381,12144513:501378,78643,0 +(105,367:24844235,12144513:173670,78643,0 ) ) -(109,367:25181759,12144513:501378,78643,0 -(109,367:25345613,12144513:173670,78643,0 +(105,367:25181759,12144513:501378,78643,0 +(105,367:25345613,12144513:173670,78643,0 ) ) -(109,367:25683137,12144513:501378,78643,0 -(109,367:25846991,12144513:173670,78643,0 +(105,367:25683137,12144513:501378,78643,0 +(105,367:25846991,12144513:173670,78643,0 ) ) -(109,367:26184515,12144513:501378,78643,0 -(109,367:26348369,12144513:173670,78643,0 +(105,367:26184515,12144513:501378,78643,0 +(105,367:26348369,12144513:173670,78643,0 ) ) -(109,367:26685893,12144513:501378,78643,0 -(109,367:26849747,12144513:173670,78643,0 +(105,367:26685893,12144513:501378,78643,0 +(105,367:26849747,12144513:173670,78643,0 ) ) -(109,367:27187271,12144513:501378,78643,0 -(109,367:27351125,12144513:173670,78643,0 +(105,367:27187271,12144513:501378,78643,0 +(105,367:27351125,12144513:173670,78643,0 ) ) -(109,367:27688649,12144513:501378,78643,0 -(109,367:27852503,12144513:173670,78643,0 +(105,367:27688649,12144513:501378,78643,0 +(105,367:27852503,12144513:173670,78643,0 ) ) -(109,367:28190027,12144513:501378,78643,0 -(109,367:28353881,12144513:173670,78643,0 +(105,367:28190027,12144513:501378,78643,0 +(105,367:28353881,12144513:173670,78643,0 ) ) -(109,367:28691405,12144513:501378,78643,0 -(109,367:28855259,12144513:173670,78643,0 +(105,367:28691405,12144513:501378,78643,0 +(105,367:28855259,12144513:173670,78643,0 ) ) -(109,367:29192783,12144513:501378,78643,0 -(109,367:29356637,12144513:173670,78643,0 +(105,367:29192783,12144513:501378,78643,0 +(105,367:29356637,12144513:173670,78643,0 ) ) -(109,367:29694161,12144513:501378,78643,0 -(109,367:29858015,12144513:173670,78643,0 +(105,367:29694161,12144513:501378,78643,0 +(105,367:29858015,12144513:173670,78643,0 ) ) -(109,367:30195539,12144513:501378,78643,0 -(109,367:30359393,12144513:173670,78643,0 +(105,367:30195539,12144513:501378,78643,0 +(105,367:30359393,12144513:173670,78643,0 ) ) -(109,367:30696917,12144513:501378,78643,0 -(109,367:30860771,12144513:173670,78643,0 +(105,367:30696917,12144513:501378,78643,0 +(105,367:30860771,12144513:173670,78643,0 ) ) -(109,367:31403379,12144513:1179650,485622,11795 -k109,367:31403379,12144513:0 -k109,367:31536199,12144513:132820 +(105,367:31239539,12144513:1343490,485622,11795 +k105,367:31239539,12144513:0 +k105,367:31387652,12144513:148113 ) -g109,367:30911859,12144513 -g109,367:32583029,12144513 +g105,367:30911859,12144513 +g105,367:32583029,12144513 ) -(109,369:6630773,12986001:25952256,513147,134348 -g109,369:11218293,12986001 -h109,369:11218293,12986001:2490370,0,0 -h109,369:13708663,12986001:0,0,0 -g109,369:9121143,12986001 -(109,369:9121143,12986001:2097150,485622,11795 -k109,369:11218293,12986001:155974 +(105,369:6630773,12986001:25952256,513147,134348 +g105,369:11218293,12986001 +h105,369:11218293,12986001:2490370,0,0 +h105,369:13708663,12986001:0,0,0 +g105,369:9121143,12986001 +(105,369:9121143,12986001:2097150,485622,11795 +k105,369:11218293,12986001:155974 ) -g109,369:14103843,12986001 -g109,369:14658932,12986001 -g109,369:16141356,12986001 -g109,369:18127752,12986001 -(109,369:18162467,12986001:501378,78643,0 -$109,369:18162467,12986001 -(109,369:18326321,12986001:173670,78643,0 +g105,369:14103843,12986001 +g105,369:14658932,12986001 +g105,369:16141356,12986001 +g105,369:18127752,12986001 +(105,369:18162467,12986001:501378,78643,0 +$105,369:18162467,12986001 +(105,369:18326321,12986001:173670,78643,0 ) -$109,369:18663845,12986001 +$105,369:18663845,12986001 ) -(109,369:18663845,12986001:501378,78643,0 -(109,369:18827699,12986001:173670,78643,0 +(105,369:18663845,12986001:501378,78643,0 +(105,369:18827699,12986001:173670,78643,0 ) ) -(109,369:19165223,12986001:501378,78643,0 -(109,369:19329077,12986001:173670,78643,0 +(105,369:19165223,12986001:501378,78643,0 +(105,369:19329077,12986001:173670,78643,0 ) ) -(109,369:19666601,12986001:501378,78643,0 -(109,369:19830455,12986001:173670,78643,0 +(105,369:19666601,12986001:501378,78643,0 +(105,369:19830455,12986001:173670,78643,0 ) ) -(109,369:20167979,12986001:501378,78643,0 -(109,369:20331833,12986001:173670,78643,0 +(105,369:20167979,12986001:501378,78643,0 +(105,369:20331833,12986001:173670,78643,0 ) ) -(109,369:20669357,12986001:501378,78643,0 -(109,369:20833211,12986001:173670,78643,0 +(105,369:20669357,12986001:501378,78643,0 +(105,369:20833211,12986001:173670,78643,0 ) ) -(109,369:21170735,12986001:501378,78643,0 -(109,369:21334589,12986001:173670,78643,0 +(105,369:21170735,12986001:501378,78643,0 +(105,369:21334589,12986001:173670,78643,0 ) ) -(109,369:21672113,12986001:501378,78643,0 -(109,369:21835967,12986001:173670,78643,0 +(105,369:21672113,12986001:501378,78643,0 +(105,369:21835967,12986001:173670,78643,0 ) ) -(109,369:22173491,12986001:501378,78643,0 -(109,369:22337345,12986001:173670,78643,0 +(105,369:22173491,12986001:501378,78643,0 +(105,369:22337345,12986001:173670,78643,0 ) ) -(109,369:22674869,12986001:501378,78643,0 -(109,369:22838723,12986001:173670,78643,0 +(105,369:22674869,12986001:501378,78643,0 +(105,369:22838723,12986001:173670,78643,0 ) ) -(109,369:23176247,12986001:501378,78643,0 -(109,369:23340101,12986001:173670,78643,0 +(105,369:23176247,12986001:501378,78643,0 +(105,369:23340101,12986001:173670,78643,0 ) ) -(109,369:23677625,12986001:501378,78643,0 -(109,369:23841479,12986001:173670,78643,0 +(105,369:23677625,12986001:501378,78643,0 +(105,369:23841479,12986001:173670,78643,0 ) ) -(109,369:24179003,12986001:501378,78643,0 -(109,369:24342857,12986001:173670,78643,0 +(105,369:24179003,12986001:501378,78643,0 +(105,369:24342857,12986001:173670,78643,0 ) ) -(109,369:24680381,12986001:501378,78643,0 -(109,369:24844235,12986001:173670,78643,0 +(105,369:24680381,12986001:501378,78643,0 +(105,369:24844235,12986001:173670,78643,0 ) ) -(109,369:25181759,12986001:501378,78643,0 -(109,369:25345613,12986001:173670,78643,0 +(105,369:25181759,12986001:501378,78643,0 +(105,369:25345613,12986001:173670,78643,0 ) ) -(109,369:25683137,12986001:501378,78643,0 -(109,369:25846991,12986001:173670,78643,0 +(105,369:25683137,12986001:501378,78643,0 +(105,369:25846991,12986001:173670,78643,0 ) ) -(109,369:26184515,12986001:501378,78643,0 -(109,369:26348369,12986001:173670,78643,0 +(105,369:26184515,12986001:501378,78643,0 +(105,369:26348369,12986001:173670,78643,0 ) ) -(109,369:26685893,12986001:501378,78643,0 -(109,369:26849747,12986001:173670,78643,0 +(105,369:26685893,12986001:501378,78643,0 +(105,369:26849747,12986001:173670,78643,0 ) ) -(109,369:27187271,12986001:501378,78643,0 -(109,369:27351125,12986001:173670,78643,0 +(105,369:27187271,12986001:501378,78643,0 +(105,369:27351125,12986001:173670,78643,0 ) ) -(109,369:27688649,12986001:501378,78643,0 -(109,369:27852503,12986001:173670,78643,0 +(105,369:27688649,12986001:501378,78643,0 +(105,369:27852503,12986001:173670,78643,0 ) ) -(109,369:28190027,12986001:501378,78643,0 -(109,369:28353881,12986001:173670,78643,0 +(105,369:28190027,12986001:501378,78643,0 +(105,369:28353881,12986001:173670,78643,0 ) ) -(109,369:28691405,12986001:501378,78643,0 -(109,369:28855259,12986001:173670,78643,0 +(105,369:28691405,12986001:501378,78643,0 +(105,369:28855259,12986001:173670,78643,0 ) ) -(109,369:29192783,12986001:501378,78643,0 -(109,369:29356637,12986001:173670,78643,0 +(105,369:29192783,12986001:501378,78643,0 +(105,369:29356637,12986001:173670,78643,0 ) ) -(109,369:29694161,12986001:501378,78643,0 -(109,369:29858015,12986001:173670,78643,0 +(105,369:29694161,12986001:501378,78643,0 +(105,369:29858015,12986001:173670,78643,0 ) ) -(109,369:30195539,12986001:501378,78643,0 -(109,369:30359393,12986001:173670,78643,0 +(105,369:30195539,12986001:501378,78643,0 +(105,369:30359393,12986001:173670,78643,0 ) ) -(109,369:30696917,12986001:501378,78643,0 -(109,369:30860771,12986001:173670,78643,0 +(105,369:30696917,12986001:501378,78643,0 +(105,369:30860771,12986001:173670,78643,0 ) ) -(109,369:31403379,12986001:1179650,485622,0 -k109,369:31403379,12986001:0 -k109,369:31536199,12986001:132820 +(105,369:31239539,12986001:1343490,485622,11795 +k105,369:31239539,12986001:0 +k105,369:31387652,12986001:148113 ) -g109,369:30911859,12986001 -g109,369:32583029,12986001 +g105,369:30911859,12986001 +g105,369:32583029,12986001 ) -(109,371:6630773,13827489:25952256,505283,134348 -g109,371:9121143,13827489 -h109,371:9121143,13827489:983040,0,0 -h109,371:10104183,13827489:0,0,0 -g109,371:7613813,13827489 -(109,371:7613813,13827489:1507330,477757,0 -k109,371:9121143,13827489:138283 +(105,371:6630773,13827489:25952256,505283,134348 +g105,371:9121143,13827489 +h105,371:9121143,13827489:983040,0,0 +h105,371:10104183,13827489:0,0,0 +g105,371:7613813,13827489 +(105,371:7613813,13827489:1507330,477757,0 +k105,371:9121143,13827489:138283 ) -g109,371:12926163,13827489 -g109,371:14732990,13827489 -g109,371:14732990,13827489 -(109,371:15154199,13827489:501378,78643,0 -$109,371:15154199,13827489 -(109,371:15318053,13827489:173670,78643,0 +g105,371:12926163,13827489 +g105,371:14732990,13827489 +g105,371:14732990,13827489 +(105,371:15154199,13827489:501378,78643,0 +$105,371:15154199,13827489 +(105,371:15318053,13827489:173670,78643,0 ) -$109,371:15655577,13827489 +$105,371:15655577,13827489 ) -(109,371:15655577,13827489:501378,78643,0 -(109,371:15819431,13827489:173670,78643,0 +(105,371:15655577,13827489:501378,78643,0 +(105,371:15819431,13827489:173670,78643,0 ) ) -(109,371:16156955,13827489:501378,78643,0 -(109,371:16320809,13827489:173670,78643,0 +(105,371:16156955,13827489:501378,78643,0 +(105,371:16320809,13827489:173670,78643,0 ) ) -(109,371:16658333,13827489:501378,78643,0 -(109,371:16822187,13827489:173670,78643,0 +(105,371:16658333,13827489:501378,78643,0 +(105,371:16822187,13827489:173670,78643,0 ) ) -(109,371:17159711,13827489:501378,78643,0 -(109,371:17323565,13827489:173670,78643,0 +(105,371:17159711,13827489:501378,78643,0 +(105,371:17323565,13827489:173670,78643,0 ) ) -(109,371:17661089,13827489:501378,78643,0 -(109,371:17824943,13827489:173670,78643,0 +(105,371:17661089,13827489:501378,78643,0 +(105,371:17824943,13827489:173670,78643,0 ) ) -(109,371:18162467,13827489:501378,78643,0 -(109,371:18326321,13827489:173670,78643,0 +(105,371:18162467,13827489:501378,78643,0 +(105,371:18326321,13827489:173670,78643,0 ) ) -(109,371:18663845,13827489:501378,78643,0 -(109,371:18827699,13827489:173670,78643,0 +(105,371:18663845,13827489:501378,78643,0 +(105,371:18827699,13827489:173670,78643,0 ) ) -(109,371:19165223,13827489:501378,78643,0 -(109,371:19329077,13827489:173670,78643,0 +(105,371:19165223,13827489:501378,78643,0 +(105,371:19329077,13827489:173670,78643,0 ) ) -(109,371:19666601,13827489:501378,78643,0 -(109,371:19830455,13827489:173670,78643,0 +(105,371:19666601,13827489:501378,78643,0 +(105,371:19830455,13827489:173670,78643,0 ) ) -(109,371:20167979,13827489:501378,78643,0 -(109,371:20331833,13827489:173670,78643,0 +(105,371:20167979,13827489:501378,78643,0 +(105,371:20331833,13827489:173670,78643,0 ) ) -(109,371:20669357,13827489:501378,78643,0 -(109,371:20833211,13827489:173670,78643,0 +(105,371:20669357,13827489:501378,78643,0 +(105,371:20833211,13827489:173670,78643,0 ) ) -(109,371:21170735,13827489:501378,78643,0 -(109,371:21334589,13827489:173670,78643,0 +(105,371:21170735,13827489:501378,78643,0 +(105,371:21334589,13827489:173670,78643,0 ) ) -(109,371:21672113,13827489:501378,78643,0 -(109,371:21835967,13827489:173670,78643,0 +(105,371:21672113,13827489:501378,78643,0 +(105,371:21835967,13827489:173670,78643,0 ) ) -(109,371:22173491,13827489:501378,78643,0 -(109,371:22337345,13827489:173670,78643,0 +(105,371:22173491,13827489:501378,78643,0 +(105,371:22337345,13827489:173670,78643,0 ) ) -(109,371:22674869,13827489:501378,78643,0 -(109,371:22838723,13827489:173670,78643,0 +(105,371:22674869,13827489:501378,78643,0 +(105,371:22838723,13827489:173670,78643,0 ) ) -(109,371:23176247,13827489:501378,78643,0 -(109,371:23340101,13827489:173670,78643,0 +(105,371:23176247,13827489:501378,78643,0 +(105,371:23340101,13827489:173670,78643,0 ) ) -(109,371:23677625,13827489:501378,78643,0 -(109,371:23841479,13827489:173670,78643,0 +(105,371:23677625,13827489:501378,78643,0 +(105,371:23841479,13827489:173670,78643,0 ) ) -(109,371:24179003,13827489:501378,78643,0 -(109,371:24342857,13827489:173670,78643,0 +(105,371:24179003,13827489:501378,78643,0 +(105,371:24342857,13827489:173670,78643,0 ) ) -(109,371:24680381,13827489:501378,78643,0 -(109,371:24844235,13827489:173670,78643,0 +(105,371:24680381,13827489:501378,78643,0 +(105,371:24844235,13827489:173670,78643,0 ) ) -(109,371:25181759,13827489:501378,78643,0 -(109,371:25345613,13827489:173670,78643,0 +(105,371:25181759,13827489:501378,78643,0 +(105,371:25345613,13827489:173670,78643,0 ) ) -(109,371:25683137,13827489:501378,78643,0 -(109,371:25846991,13827489:173670,78643,0 +(105,371:25683137,13827489:501378,78643,0 +(105,371:25846991,13827489:173670,78643,0 ) ) -(109,371:26184515,13827489:501378,78643,0 -(109,371:26348369,13827489:173670,78643,0 +(105,371:26184515,13827489:501378,78643,0 +(105,371:26348369,13827489:173670,78643,0 ) ) -(109,371:26685893,13827489:501378,78643,0 -(109,371:26849747,13827489:173670,78643,0 +(105,371:26685893,13827489:501378,78643,0 +(105,371:26849747,13827489:173670,78643,0 ) ) -(109,371:27187271,13827489:501378,78643,0 -(109,371:27351125,13827489:173670,78643,0 +(105,371:27187271,13827489:501378,78643,0 +(105,371:27351125,13827489:173670,78643,0 ) ) -(109,371:27688649,13827489:501378,78643,0 -(109,371:27852503,13827489:173670,78643,0 +(105,371:27688649,13827489:501378,78643,0 +(105,371:27852503,13827489:173670,78643,0 ) ) -(109,371:28190027,13827489:501378,78643,0 -(109,371:28353881,13827489:173670,78643,0 +(105,371:28190027,13827489:501378,78643,0 +(105,371:28353881,13827489:173670,78643,0 ) ) -(109,371:28691405,13827489:501378,78643,0 -(109,371:28855259,13827489:173670,78643,0 +(105,371:28691405,13827489:501378,78643,0 +(105,371:28855259,13827489:173670,78643,0 ) ) -(109,371:29192783,13827489:501378,78643,0 -(109,371:29356637,13827489:173670,78643,0 +(105,371:29192783,13827489:501378,78643,0 +(105,371:29356637,13827489:173670,78643,0 ) ) -(109,371:29694161,13827489:501378,78643,0 -(109,371:29858015,13827489:173670,78643,0 +(105,371:29694161,13827489:501378,78643,0 +(105,371:29858015,13827489:173670,78643,0 ) ) -(109,371:30195539,13827489:501378,78643,0 -(109,371:30359393,13827489:173670,78643,0 +(105,371:30195539,13827489:501378,78643,0 +(105,371:30359393,13827489:173670,78643,0 ) ) -(109,371:30696917,13827489:501378,78643,0 -(109,371:30860771,13827489:173670,78643,0 +(105,371:30696917,13827489:501378,78643,0 +(105,371:30860771,13827489:173670,78643,0 ) ) -(109,371:31403379,13827489:1179650,485622,11795 -k109,371:31403379,13827489:0 -k109,371:31536199,13827489:132820 +(105,371:31239539,13827489:1343490,485622,11795 +k105,371:31239539,13827489:0 +k105,371:31387652,13827489:148113 ) -g109,371:30911859,13827489 -g109,371:32583029,13827489 +g105,371:30911859,13827489 +g105,371:32583029,13827489 ) -(109,373:6630773,14668977:25952256,505283,134348 -g109,373:9121143,14668977 -h109,373:9121143,14668977:983040,0,0 -h109,373:10104183,14668977:0,0,0 -g109,373:7613813,14668977 -(109,373:7613813,14668977:1507330,485622,0 -k109,373:9121143,14668977:138283 +(105,373:6630773,14668977:25952256,505283,134348 +g105,373:9121143,14668977 +h105,373:9121143,14668977:983040,0,0 +h105,373:10104183,14668977:0,0,0 +g105,373:7613813,14668977 +(105,373:7613813,14668977:1507330,485622,0 +k105,373:9121143,14668977:138283 ) -g109,373:11112126,14668977 -g109,373:14236227,14668977 -g109,373:18205742,14668977 -g109,373:18205742,14668977 -(109,373:18663845,14668977:501378,78643,0 -$109,373:18663845,14668977 -(109,373:18827699,14668977:173670,78643,0 +g105,373:11112126,14668977 +g105,373:14236227,14668977 +g105,373:18205742,14668977 +g105,373:18205742,14668977 +(105,373:18663845,14668977:501378,78643,0 +$105,373:18663845,14668977 +(105,373:18827699,14668977:173670,78643,0 ) -$109,373:19165223,14668977 +$105,373:19165223,14668977 ) -(109,373:19165223,14668977:501378,78643,0 -(109,373:19329077,14668977:173670,78643,0 +(105,373:19165223,14668977:501378,78643,0 +(105,373:19329077,14668977:173670,78643,0 ) ) -(109,373:19666601,14668977:501378,78643,0 -(109,373:19830455,14668977:173670,78643,0 +(105,373:19666601,14668977:501378,78643,0 +(105,373:19830455,14668977:173670,78643,0 ) ) -(109,373:20167979,14668977:501378,78643,0 -(109,373:20331833,14668977:173670,78643,0 +(105,373:20167979,14668977:501378,78643,0 +(105,373:20331833,14668977:173670,78643,0 ) ) -(109,373:20669357,14668977:501378,78643,0 -(109,373:20833211,14668977:173670,78643,0 +(105,373:20669357,14668977:501378,78643,0 +(105,373:20833211,14668977:173670,78643,0 ) ) -(109,373:21170735,14668977:501378,78643,0 -(109,373:21334589,14668977:173670,78643,0 +(105,373:21170735,14668977:501378,78643,0 +(105,373:21334589,14668977:173670,78643,0 ) ) -(109,373:21672113,14668977:501378,78643,0 -(109,373:21835967,14668977:173670,78643,0 +(105,373:21672113,14668977:501378,78643,0 +(105,373:21835967,14668977:173670,78643,0 ) ) -(109,373:22173491,14668977:501378,78643,0 -(109,373:22337345,14668977:173670,78643,0 +(105,373:22173491,14668977:501378,78643,0 +(105,373:22337345,14668977:173670,78643,0 ) ) -(109,373:22674869,14668977:501378,78643,0 -(109,373:22838723,14668977:173670,78643,0 +(105,373:22674869,14668977:501378,78643,0 +(105,373:22838723,14668977:173670,78643,0 ) ) -(109,373:23176247,14668977:501378,78643,0 -(109,373:23340101,14668977:173670,78643,0 +(105,373:23176247,14668977:501378,78643,0 +(105,373:23340101,14668977:173670,78643,0 ) ) -(109,373:23677625,14668977:501378,78643,0 -(109,373:23841479,14668977:173670,78643,0 +(105,373:23677625,14668977:501378,78643,0 +(105,373:23841479,14668977:173670,78643,0 ) ) -(109,373:24179003,14668977:501378,78643,0 -(109,373:24342857,14668977:173670,78643,0 +(105,373:24179003,14668977:501378,78643,0 +(105,373:24342857,14668977:173670,78643,0 ) ) -(109,373:24680381,14668977:501378,78643,0 -(109,373:24844235,14668977:173670,78643,0 +(105,373:24680381,14668977:501378,78643,0 +(105,373:24844235,14668977:173670,78643,0 ) ) -(109,373:25181759,14668977:501378,78643,0 -(109,373:25345613,14668977:173670,78643,0 +(105,373:25181759,14668977:501378,78643,0 +(105,373:25345613,14668977:173670,78643,0 ) ) -(109,373:25683137,14668977:501378,78643,0 -(109,373:25846991,14668977:173670,78643,0 +(105,373:25683137,14668977:501378,78643,0 +(105,373:25846991,14668977:173670,78643,0 ) ) -(109,373:26184515,14668977:501378,78643,0 -(109,373:26348369,14668977:173670,78643,0 +(105,373:26184515,14668977:501378,78643,0 +(105,373:26348369,14668977:173670,78643,0 ) ) -(109,373:26685893,14668977:501378,78643,0 -(109,373:26849747,14668977:173670,78643,0 +(105,373:26685893,14668977:501378,78643,0 +(105,373:26849747,14668977:173670,78643,0 ) ) -(109,373:27187271,14668977:501378,78643,0 -(109,373:27351125,14668977:173670,78643,0 +(105,373:27187271,14668977:501378,78643,0 +(105,373:27351125,14668977:173670,78643,0 ) ) -(109,373:27688649,14668977:501378,78643,0 -(109,373:27852503,14668977:173670,78643,0 +(105,373:27688649,14668977:501378,78643,0 +(105,373:27852503,14668977:173670,78643,0 ) ) -(109,373:28190027,14668977:501378,78643,0 -(109,373:28353881,14668977:173670,78643,0 +(105,373:28190027,14668977:501378,78643,0 +(105,373:28353881,14668977:173670,78643,0 ) ) -(109,373:28691405,14668977:501378,78643,0 -(109,373:28855259,14668977:173670,78643,0 +(105,373:28691405,14668977:501378,78643,0 +(105,373:28855259,14668977:173670,78643,0 ) ) -(109,373:29192783,14668977:501378,78643,0 -(109,373:29356637,14668977:173670,78643,0 +(105,373:29192783,14668977:501378,78643,0 +(105,373:29356637,14668977:173670,78643,0 ) ) -(109,373:29694161,14668977:501378,78643,0 -(109,373:29858015,14668977:173670,78643,0 +(105,373:29694161,14668977:501378,78643,0 +(105,373:29858015,14668977:173670,78643,0 ) ) -(109,373:30195539,14668977:501378,78643,0 -(109,373:30359393,14668977:173670,78643,0 +(105,373:30195539,14668977:501378,78643,0 +(105,373:30359393,14668977:173670,78643,0 ) ) -(109,373:30696917,14668977:501378,78643,0 -(109,373:30860771,14668977:173670,78643,0 +(105,373:30696917,14668977:501378,78643,0 +(105,373:30860771,14668977:173670,78643,0 ) ) -(109,373:31403379,14668977:1179650,485622,11795 -k109,373:31403379,14668977:0 -k109,373:31536199,14668977:132820 +(105,373:31239539,14668977:1343490,485622,11795 +k105,373:31239539,14668977:0 +k105,373:31387652,14668977:148113 ) -g109,373:30911859,14668977 -g109,373:32583029,14668977 +g105,373:30911859,14668977 +g105,373:32583029,14668977 ) -(109,375:6630773,15510465:25952256,505283,134348 -g109,375:9121143,15510465 -h109,375:9121143,15510465:983040,0,0 -h109,375:10104183,15510465:0,0,0 -g109,375:7613813,15510465 -(109,375:7613813,15510465:1507330,485622,11795 -k109,375:9121143,15510465:138283 +(105,375:6630773,15510465:25952256,505283,134348 +g105,375:9121143,15510465 +h105,375:9121143,15510465:983040,0,0 +h105,375:10104183,15510465:0,0,0 +g105,375:7613813,15510465 +(105,375:7613813,15510465:1507330,485622,11795 +k105,375:9121143,15510465:138283 ) -g109,375:12014557,15510465 -g109,375:14900107,15510465 -g109,375:16488699,15510465 -g109,375:19313300,15510465 -g109,375:19313300,15510465 -(109,375:19666601,15510465:501378,78643,0 -$109,375:19666601,15510465 -(109,375:19830455,15510465:173670,78643,0 +g105,375:12014557,15510465 +g105,375:14900107,15510465 +g105,375:16488699,15510465 +g105,375:19313300,15510465 +g105,375:19313300,15510465 +(105,375:19666601,15510465:501378,78643,0 +$105,375:19666601,15510465 +(105,375:19830455,15510465:173670,78643,0 ) -$109,375:20167979,15510465 +$105,375:20167979,15510465 ) -(109,375:20167979,15510465:501378,78643,0 -(109,375:20331833,15510465:173670,78643,0 +(105,375:20167979,15510465:501378,78643,0 +(105,375:20331833,15510465:173670,78643,0 ) ) -(109,375:20669357,15510465:501378,78643,0 -(109,375:20833211,15510465:173670,78643,0 +(105,375:20669357,15510465:501378,78643,0 +(105,375:20833211,15510465:173670,78643,0 ) ) -(109,375:21170735,15510465:501378,78643,0 -(109,375:21334589,15510465:173670,78643,0 +(105,375:21170735,15510465:501378,78643,0 +(105,375:21334589,15510465:173670,78643,0 ) ) -(109,375:21672113,15510465:501378,78643,0 -(109,375:21835967,15510465:173670,78643,0 +(105,375:21672113,15510465:501378,78643,0 +(105,375:21835967,15510465:173670,78643,0 ) ) -(109,375:22173491,15510465:501378,78643,0 -(109,375:22337345,15510465:173670,78643,0 +(105,375:22173491,15510465:501378,78643,0 +(105,375:22337345,15510465:173670,78643,0 ) ) -(109,375:22674869,15510465:501378,78643,0 -(109,375:22838723,15510465:173670,78643,0 +(105,375:22674869,15510465:501378,78643,0 +(105,375:22838723,15510465:173670,78643,0 ) ) -(109,375:23176247,15510465:501378,78643,0 -(109,375:23340101,15510465:173670,78643,0 +(105,375:23176247,15510465:501378,78643,0 +(105,375:23340101,15510465:173670,78643,0 ) ) -(109,375:23677625,15510465:501378,78643,0 -(109,375:23841479,15510465:173670,78643,0 +(105,375:23677625,15510465:501378,78643,0 +(105,375:23841479,15510465:173670,78643,0 ) ) -(109,375:24179003,15510465:501378,78643,0 -(109,375:24342857,15510465:173670,78643,0 +(105,375:24179003,15510465:501378,78643,0 +(105,375:24342857,15510465:173670,78643,0 ) ) -(109,375:24680381,15510465:501378,78643,0 -(109,375:24844235,15510465:173670,78643,0 +(105,375:24680381,15510465:501378,78643,0 +(105,375:24844235,15510465:173670,78643,0 ) ) -(109,375:25181759,15510465:501378,78643,0 -(109,375:25345613,15510465:173670,78643,0 +(105,375:25181759,15510465:501378,78643,0 +(105,375:25345613,15510465:173670,78643,0 ) ) -(109,375:25683137,15510465:501378,78643,0 -(109,375:25846991,15510465:173670,78643,0 +(105,375:25683137,15510465:501378,78643,0 +(105,375:25846991,15510465:173670,78643,0 ) ) -(109,375:26184515,15510465:501378,78643,0 -(109,375:26348369,15510465:173670,78643,0 +(105,375:26184515,15510465:501378,78643,0 +(105,375:26348369,15510465:173670,78643,0 ) ) -(109,375:26685893,15510465:501378,78643,0 -(109,375:26849747,15510465:173670,78643,0 +(105,375:26685893,15510465:501378,78643,0 +(105,375:26849747,15510465:173670,78643,0 ) ) -(109,375:27187271,15510465:501378,78643,0 -(109,375:27351125,15510465:173670,78643,0 +(105,375:27187271,15510465:501378,78643,0 +(105,375:27351125,15510465:173670,78643,0 ) ) -(109,375:27688649,15510465:501378,78643,0 -(109,375:27852503,15510465:173670,78643,0 +(105,375:27688649,15510465:501378,78643,0 +(105,375:27852503,15510465:173670,78643,0 ) ) -(109,375:28190027,15510465:501378,78643,0 -(109,375:28353881,15510465:173670,78643,0 +(105,375:28190027,15510465:501378,78643,0 +(105,375:28353881,15510465:173670,78643,0 ) ) -(109,375:28691405,15510465:501378,78643,0 -(109,375:28855259,15510465:173670,78643,0 +(105,375:28691405,15510465:501378,78643,0 +(105,375:28855259,15510465:173670,78643,0 ) ) -(109,375:29192783,15510465:501378,78643,0 -(109,375:29356637,15510465:173670,78643,0 +(105,375:29192783,15510465:501378,78643,0 +(105,375:29356637,15510465:173670,78643,0 ) ) -(109,375:29694161,15510465:501378,78643,0 -(109,375:29858015,15510465:173670,78643,0 +(105,375:29694161,15510465:501378,78643,0 +(105,375:29858015,15510465:173670,78643,0 ) ) -(109,375:30195539,15510465:501378,78643,0 -(109,375:30359393,15510465:173670,78643,0 +(105,375:30195539,15510465:501378,78643,0 +(105,375:30359393,15510465:173670,78643,0 ) ) -(109,375:30696917,15510465:501378,78643,0 -(109,375:30860771,15510465:173670,78643,0 +(105,375:30696917,15510465:501378,78643,0 +(105,375:30860771,15510465:173670,78643,0 ) ) -(109,375:31403379,15510465:1179650,485622,11795 -k109,375:31403379,15510465:0 -k109,375:31536199,15510465:132820 +(105,375:31239539,15510465:1343490,485622,11795 +k105,375:31239539,15510465:0 +k105,375:31387652,15510465:148113 ) -g109,375:30911859,15510465 -g109,375:32583029,15510465 +g105,375:30911859,15510465 +g105,375:32583029,15510465 ) -(109,377:6630773,16351953:25952256,513147,134348 -g109,377:9121143,16351953 -h109,377:9121143,16351953:983040,0,0 -h109,377:10104183,16351953:0,0,0 -g109,377:7613813,16351953 -(109,377:7613813,16351953:1507330,481690,0 -k109,377:9121143,16351953:138283 +(105,377:6630773,16351953:25952256,513147,134348 +g105,377:9121143,16351953 +h105,377:9121143,16351953:983040,0,0 +h105,377:10104183,16351953:0,0,0 +g105,377:7613813,16351953 +(105,377:7613813,16351953:1507330,481690,0 +k105,377:9121143,16351953:138283 ) -g109,377:12014557,16351953 -g109,377:13478631,16351953 -g109,377:14337152,16351953 -g109,377:16143979,16351953 -g109,377:16143979,16351953 -(109,377:16156955,16351953:501378,78643,0 -$109,377:16156955,16351953 -(109,377:16320809,16351953:173670,78643,0 +g105,377:12014557,16351953 +g105,377:13478631,16351953 +g105,377:14337152,16351953 +g105,377:16143979,16351953 +g105,377:16143979,16351953 +(105,377:16156955,16351953:501378,78643,0 +$105,377:16156955,16351953 +(105,377:16320809,16351953:173670,78643,0 ) -$109,377:16658333,16351953 +$105,377:16658333,16351953 ) -(109,377:16658333,16351953:501378,78643,0 -(109,377:16822187,16351953:173670,78643,0 +(105,377:16658333,16351953:501378,78643,0 +(105,377:16822187,16351953:173670,78643,0 ) ) -(109,377:17159711,16351953:501378,78643,0 -(109,377:17323565,16351953:173670,78643,0 +(105,377:17159711,16351953:501378,78643,0 +(105,377:17323565,16351953:173670,78643,0 ) ) -(109,377:17661089,16351953:501378,78643,0 -(109,377:17824943,16351953:173670,78643,0 +(105,377:17661089,16351953:501378,78643,0 +(105,377:17824943,16351953:173670,78643,0 ) ) -(109,377:18162467,16351953:501378,78643,0 -(109,377:18326321,16351953:173670,78643,0 +(105,377:18162467,16351953:501378,78643,0 +(105,377:18326321,16351953:173670,78643,0 ) ) -(109,377:18663845,16351953:501378,78643,0 -(109,377:18827699,16351953:173670,78643,0 +(105,377:18663845,16351953:501378,78643,0 +(105,377:18827699,16351953:173670,78643,0 ) ) -(109,377:19165223,16351953:501378,78643,0 -(109,377:19329077,16351953:173670,78643,0 +(105,377:19165223,16351953:501378,78643,0 +(105,377:19329077,16351953:173670,78643,0 ) ) -(109,377:19666601,16351953:501378,78643,0 -(109,377:19830455,16351953:173670,78643,0 +(105,377:19666601,16351953:501378,78643,0 +(105,377:19830455,16351953:173670,78643,0 ) ) -(109,377:20167979,16351953:501378,78643,0 -(109,377:20331833,16351953:173670,78643,0 +(105,377:20167979,16351953:501378,78643,0 +(105,377:20331833,16351953:173670,78643,0 ) ) -(109,377:20669357,16351953:501378,78643,0 -(109,377:20833211,16351953:173670,78643,0 +(105,377:20669357,16351953:501378,78643,0 +(105,377:20833211,16351953:173670,78643,0 ) ) -(109,377:21170735,16351953:501378,78643,0 -(109,377:21334589,16351953:173670,78643,0 +(105,377:21170735,16351953:501378,78643,0 +(105,377:21334589,16351953:173670,78643,0 ) ) -(109,377:21672113,16351953:501378,78643,0 -(109,377:21835967,16351953:173670,78643,0 +(105,377:21672113,16351953:501378,78643,0 +(105,377:21835967,16351953:173670,78643,0 ) ) -(109,377:22173491,16351953:501378,78643,0 -(109,377:22337345,16351953:173670,78643,0 +(105,377:22173491,16351953:501378,78643,0 +(105,377:22337345,16351953:173670,78643,0 ) ) -(109,377:22674869,16351953:501378,78643,0 -(109,377:22838723,16351953:173670,78643,0 +(105,377:22674869,16351953:501378,78643,0 +(105,377:22838723,16351953:173670,78643,0 ) ) -(109,377:23176247,16351953:501378,78643,0 -(109,377:23340101,16351953:173670,78643,0 +(105,377:23176247,16351953:501378,78643,0 +(105,377:23340101,16351953:173670,78643,0 ) ) -(109,377:23677625,16351953:501378,78643,0 -(109,377:23841479,16351953:173670,78643,0 +(105,377:23677625,16351953:501378,78643,0 +(105,377:23841479,16351953:173670,78643,0 ) ) -(109,377:24179003,16351953:501378,78643,0 -(109,377:24342857,16351953:173670,78643,0 +(105,377:24179003,16351953:501378,78643,0 +(105,377:24342857,16351953:173670,78643,0 ) ) -(109,377:24680381,16351953:501378,78643,0 -(109,377:24844235,16351953:173670,78643,0 +(105,377:24680381,16351953:501378,78643,0 +(105,377:24844235,16351953:173670,78643,0 ) ) -(109,377:25181759,16351953:501378,78643,0 -(109,377:25345613,16351953:173670,78643,0 +(105,377:25181759,16351953:501378,78643,0 +(105,377:25345613,16351953:173670,78643,0 ) ) -(109,377:25683137,16351953:501378,78643,0 -(109,377:25846991,16351953:173670,78643,0 +(105,377:25683137,16351953:501378,78643,0 +(105,377:25846991,16351953:173670,78643,0 ) ) -(109,377:26184515,16351953:501378,78643,0 -(109,377:26348369,16351953:173670,78643,0 +(105,377:26184515,16351953:501378,78643,0 +(105,377:26348369,16351953:173670,78643,0 ) ) -(109,377:26685893,16351953:501378,78643,0 -(109,377:26849747,16351953:173670,78643,0 +(105,377:26685893,16351953:501378,78643,0 +(105,377:26849747,16351953:173670,78643,0 ) ) -(109,377:27187271,16351953:501378,78643,0 -(109,377:27351125,16351953:173670,78643,0 +(105,377:27187271,16351953:501378,78643,0 +(105,377:27351125,16351953:173670,78643,0 ) ) -(109,377:27688649,16351953:501378,78643,0 -(109,377:27852503,16351953:173670,78643,0 +(105,377:27688649,16351953:501378,78643,0 +(105,377:27852503,16351953:173670,78643,0 ) ) -(109,377:28190027,16351953:501378,78643,0 -(109,377:28353881,16351953:173670,78643,0 +(105,377:28190027,16351953:501378,78643,0 +(105,377:28353881,16351953:173670,78643,0 ) ) -(109,377:28691405,16351953:501378,78643,0 -(109,377:28855259,16351953:173670,78643,0 +(105,377:28691405,16351953:501378,78643,0 +(105,377:28855259,16351953:173670,78643,0 ) ) -(109,377:29192783,16351953:501378,78643,0 -(109,377:29356637,16351953:173670,78643,0 +(105,377:29192783,16351953:501378,78643,0 +(105,377:29356637,16351953:173670,78643,0 ) ) -(109,377:29694161,16351953:501378,78643,0 -(109,377:29858015,16351953:173670,78643,0 +(105,377:29694161,16351953:501378,78643,0 +(105,377:29858015,16351953:173670,78643,0 ) ) -(109,377:30195539,16351953:501378,78643,0 -(109,377:30359393,16351953:173670,78643,0 +(105,377:30195539,16351953:501378,78643,0 +(105,377:30359393,16351953:173670,78643,0 ) ) -(109,377:30696917,16351953:501378,78643,0 -(109,377:30860771,16351953:173670,78643,0 +(105,377:30696917,16351953:501378,78643,0 +(105,377:30860771,16351953:173670,78643,0 ) ) -(109,377:31403379,16351953:1179650,485622,11795 -k109,377:31403379,16351953:0 -k109,377:31536199,16351953:132820 +(105,377:31239539,16351953:1343490,485622,11795 +k105,377:31239539,16351953:0 +k105,377:31387652,16351953:148113 ) -g109,377:30911859,16351953 -g109,377:32583029,16351953 +g105,377:30911859,16351953 +g105,377:32583029,16351953 ) -(109,379:6630773,17193441:25952256,505283,134348 -g109,379:11218293,17193441 -h109,379:11218293,17193441:2490370,0,0 -h109,379:13708663,17193441:0,0,0 -g109,379:9121143,17193441 -(109,379:9121143,17193441:2097150,481690,0 -k109,379:11218293,17193441:155974 +(105,379:6630773,17193441:25952256,505283,134348 +g105,379:11218293,17193441 +h105,379:11218293,17193441:2490370,0,0 +h105,379:13708663,17193441:0,0,0 +g105,379:9121143,17193441 +(105,379:9121143,17193441:2097150,481690,0 +k105,379:11218293,17193441:155974 ) -g109,379:13476008,17193441 -g109,379:14952534,17193441 -g109,379:17039855,17193441 -g109,379:18430529,17193441 -g109,379:20532268,17193441 -g109,379:21347535,17193441 -g109,379:24189176,17193441 -(109,379:24680381,17193441:501378,78643,0 -$109,379:24680381,17193441 -(109,379:24844235,17193441:173670,78643,0 +g105,379:13476008,17193441 +g105,379:14952534,17193441 +g105,379:17039855,17193441 +g105,379:18430529,17193441 +g105,379:20532268,17193441 +g105,379:21347535,17193441 +g105,379:24189176,17193441 +(105,379:24680381,17193441:501378,78643,0 +$105,379:24680381,17193441 +(105,379:24844235,17193441:173670,78643,0 ) -$109,379:25181759,17193441 +$105,379:25181759,17193441 ) -(109,379:25181759,17193441:501378,78643,0 -(109,379:25345613,17193441:173670,78643,0 +(105,379:25181759,17193441:501378,78643,0 +(105,379:25345613,17193441:173670,78643,0 ) ) -(109,379:25683137,17193441:501378,78643,0 -(109,379:25846991,17193441:173670,78643,0 +(105,379:25683137,17193441:501378,78643,0 +(105,379:25846991,17193441:173670,78643,0 ) ) -(109,379:26184515,17193441:501378,78643,0 -(109,379:26348369,17193441:173670,78643,0 +(105,379:26184515,17193441:501378,78643,0 +(105,379:26348369,17193441:173670,78643,0 ) ) -(109,379:26685893,17193441:501378,78643,0 -(109,379:26849747,17193441:173670,78643,0 +(105,379:26685893,17193441:501378,78643,0 +(105,379:26849747,17193441:173670,78643,0 ) ) -(109,379:27187271,17193441:501378,78643,0 -(109,379:27351125,17193441:173670,78643,0 +(105,379:27187271,17193441:501378,78643,0 +(105,379:27351125,17193441:173670,78643,0 ) ) -(109,379:27688649,17193441:501378,78643,0 -(109,379:27852503,17193441:173670,78643,0 +(105,379:27688649,17193441:501378,78643,0 +(105,379:27852503,17193441:173670,78643,0 ) ) -(109,379:28190027,17193441:501378,78643,0 -(109,379:28353881,17193441:173670,78643,0 +(105,379:28190027,17193441:501378,78643,0 +(105,379:28353881,17193441:173670,78643,0 ) ) -(109,379:28691405,17193441:501378,78643,0 -(109,379:28855259,17193441:173670,78643,0 +(105,379:28691405,17193441:501378,78643,0 +(105,379:28855259,17193441:173670,78643,0 ) ) -(109,379:29192783,17193441:501378,78643,0 -(109,379:29356637,17193441:173670,78643,0 +(105,379:29192783,17193441:501378,78643,0 +(105,379:29356637,17193441:173670,78643,0 ) ) -(109,379:29694161,17193441:501378,78643,0 -(109,379:29858015,17193441:173670,78643,0 +(105,379:29694161,17193441:501378,78643,0 +(105,379:29858015,17193441:173670,78643,0 ) ) -(109,379:30195539,17193441:501378,78643,0 -(109,379:30359393,17193441:173670,78643,0 +(105,379:30195539,17193441:501378,78643,0 +(105,379:30359393,17193441:173670,78643,0 ) ) -(109,379:30696917,17193441:501378,78643,0 -(109,379:30860771,17193441:173670,78643,0 +(105,379:30696917,17193441:501378,78643,0 +(105,379:30860771,17193441:173670,78643,0 ) ) -(109,379:31403379,17193441:1179650,485622,11795 -k109,379:31403379,17193441:0 -k109,379:31536199,17193441:132820 +(105,379:31239539,17193441:1343490,485622,11795 +k105,379:31239539,17193441:0 +k105,379:31387652,17193441:148113 ) -g109,379:30911859,17193441 -g109,379:32583029,17193441 +g105,379:30911859,17193441 +g105,379:32583029,17193441 ) -(109,381:6630773,18034929:25952256,505283,134348 -g109,381:11218293,18034929 -h109,381:11218293,18034929:2490370,0,0 -h109,381:13708663,18034929:0,0,0 -g109,381:9121143,18034929 -(109,381:9121143,18034929:2097150,485622,0 -k109,381:11218293,18034929:155974 +(105,381:6630773,18034929:25952256,505283,134348 +g105,381:11218293,18034929 +h105,381:11218293,18034929:2490370,0,0 +h105,381:13708663,18034929:0,0,0 +g105,381:9121143,18034929 +(105,381:9121143,18034929:2097150,485622,0 +k105,381:11218293,18034929:155974 ) -g109,381:13476008,18034929 -g109,381:14952534,18034929 -g109,381:17039855,18034929 -g109,381:18430529,18034929 -g109,381:20532268,18034929 -g109,381:21347535,18034929 -g109,381:22671362,18034929 -(109,381:22674869,18034929:501378,78643,0 -$109,381:22674869,18034929 -(109,381:22838723,18034929:173670,78643,0 +g105,381:13476008,18034929 +g105,381:14952534,18034929 +g105,381:17039855,18034929 +g105,381:18430529,18034929 +g105,381:20532268,18034929 +g105,381:21347535,18034929 +g105,381:22671362,18034929 +(105,381:22674869,18034929:501378,78643,0 +$105,381:22674869,18034929 +(105,381:22838723,18034929:173670,78643,0 ) -$109,381:23176247,18034929 +$105,381:23176247,18034929 ) -(109,381:23176247,18034929:501378,78643,0 -(109,381:23340101,18034929:173670,78643,0 +(105,381:23176247,18034929:501378,78643,0 +(105,381:23340101,18034929:173670,78643,0 ) ) -(109,381:23677625,18034929:501378,78643,0 -(109,381:23841479,18034929:173670,78643,0 +(105,381:23677625,18034929:501378,78643,0 +(105,381:23841479,18034929:173670,78643,0 ) ) -(109,381:24179003,18034929:501378,78643,0 -(109,381:24342857,18034929:173670,78643,0 +(105,381:24179003,18034929:501378,78643,0 +(105,381:24342857,18034929:173670,78643,0 ) ) -(109,381:24680381,18034929:501378,78643,0 -(109,381:24844235,18034929:173670,78643,0 +(105,381:24680381,18034929:501378,78643,0 +(105,381:24844235,18034929:173670,78643,0 ) ) -(109,381:25181759,18034929:501378,78643,0 -(109,381:25345613,18034929:173670,78643,0 +(105,381:25181759,18034929:501378,78643,0 +(105,381:25345613,18034929:173670,78643,0 ) ) -(109,381:25683137,18034929:501378,78643,0 -(109,381:25846991,18034929:173670,78643,0 +(105,381:25683137,18034929:501378,78643,0 +(105,381:25846991,18034929:173670,78643,0 ) ) -(109,381:26184515,18034929:501378,78643,0 -(109,381:26348369,18034929:173670,78643,0 +(105,381:26184515,18034929:501378,78643,0 +(105,381:26348369,18034929:173670,78643,0 ) ) -(109,381:26685893,18034929:501378,78643,0 -(109,381:26849747,18034929:173670,78643,0 +(105,381:26685893,18034929:501378,78643,0 +(105,381:26849747,18034929:173670,78643,0 ) ) -(109,381:27187271,18034929:501378,78643,0 -(109,381:27351125,18034929:173670,78643,0 +(105,381:27187271,18034929:501378,78643,0 +(105,381:27351125,18034929:173670,78643,0 ) ) -(109,381:27688649,18034929:501378,78643,0 -(109,381:27852503,18034929:173670,78643,0 +(105,381:27688649,18034929:501378,78643,0 +(105,381:27852503,18034929:173670,78643,0 ) ) -(109,381:28190027,18034929:501378,78643,0 -(109,381:28353881,18034929:173670,78643,0 +(105,381:28190027,18034929:501378,78643,0 +(105,381:28353881,18034929:173670,78643,0 ) ) -(109,381:28691405,18034929:501378,78643,0 -(109,381:28855259,18034929:173670,78643,0 +(105,381:28691405,18034929:501378,78643,0 +(105,381:28855259,18034929:173670,78643,0 ) ) -(109,381:29192783,18034929:501378,78643,0 -(109,381:29356637,18034929:173670,78643,0 +(105,381:29192783,18034929:501378,78643,0 +(105,381:29356637,18034929:173670,78643,0 ) ) -(109,381:29694161,18034929:501378,78643,0 -(109,381:29858015,18034929:173670,78643,0 +(105,381:29694161,18034929:501378,78643,0 +(105,381:29858015,18034929:173670,78643,0 ) ) -(109,381:30195539,18034929:501378,78643,0 -(109,381:30359393,18034929:173670,78643,0 +(105,381:30195539,18034929:501378,78643,0 +(105,381:30359393,18034929:173670,78643,0 ) ) -(109,381:30696917,18034929:501378,78643,0 -(109,381:30860771,18034929:173670,78643,0 +(105,381:30696917,18034929:501378,78643,0 +(105,381:30860771,18034929:173670,78643,0 ) ) -(109,381:31403379,18034929:1179650,485622,11795 -k109,381:31403379,18034929:0 -k109,381:31536199,18034929:132820 +(105,381:31239539,18034929:1343490,485622,11795 +k105,381:31239539,18034929:0 +k105,381:31387652,18034929:148113 ) -g109,381:30911859,18034929 -g109,381:32583029,18034929 +g105,381:30911859,18034929 +g105,381:32583029,18034929 ) -(109,383:6630773,18876417:25952256,513147,134348 -g109,383:11218293,18876417 -h109,383:11218293,18876417:2490370,0,0 -h109,383:13708663,18876417:0,0,0 -g109,383:9121143,18876417 -(109,383:9121143,18876417:2097150,485622,11795 -k109,383:11218293,18876417:155974 +(105,383:6630773,18876417:25952256,513147,134348 +g105,383:11218293,18876417 +h105,383:11218293,18876417:2490370,0,0 +h105,383:13708663,18876417:0,0,0 +g105,383:9121143,18876417 +(105,383:9121143,18876417:2097150,485622,11795 +k105,383:11218293,18876417:155974 ) -g109,383:13209276,18876417 -g109,383:16434302,18876417 -g109,383:17319693,18876417 -g109,383:20151503,18876417 -g109,383:22208023,18876417 -(109,383:22674869,18876417:501378,78643,0 -$109,383:22674869,18876417 -(109,383:22838723,18876417:173670,78643,0 +g105,383:13209276,18876417 +g105,383:16434302,18876417 +g105,383:17319693,18876417 +g105,383:20151503,18876417 +g105,383:22208023,18876417 +(105,383:22674869,18876417:501378,78643,0 +$105,383:22674869,18876417 +(105,383:22838723,18876417:173670,78643,0 ) -$109,383:23176247,18876417 +$105,383:23176247,18876417 ) -(109,383:23176247,18876417:501378,78643,0 -(109,383:23340101,18876417:173670,78643,0 +(105,383:23176247,18876417:501378,78643,0 +(105,383:23340101,18876417:173670,78643,0 ) ) -(109,383:23677625,18876417:501378,78643,0 -(109,383:23841479,18876417:173670,78643,0 +(105,383:23677625,18876417:501378,78643,0 +(105,383:23841479,18876417:173670,78643,0 ) ) -(109,383:24179003,18876417:501378,78643,0 -(109,383:24342857,18876417:173670,78643,0 +(105,383:24179003,18876417:501378,78643,0 +(105,383:24342857,18876417:173670,78643,0 ) ) -(109,383:24680381,18876417:501378,78643,0 -(109,383:24844235,18876417:173670,78643,0 +(105,383:24680381,18876417:501378,78643,0 +(105,383:24844235,18876417:173670,78643,0 ) ) -(109,383:25181759,18876417:501378,78643,0 -(109,383:25345613,18876417:173670,78643,0 +(105,383:25181759,18876417:501378,78643,0 +(105,383:25345613,18876417:173670,78643,0 ) ) -(109,383:25683137,18876417:501378,78643,0 -(109,383:25846991,18876417:173670,78643,0 +(105,383:25683137,18876417:501378,78643,0 +(105,383:25846991,18876417:173670,78643,0 ) ) -(109,383:26184515,18876417:501378,78643,0 -(109,383:26348369,18876417:173670,78643,0 +(105,383:26184515,18876417:501378,78643,0 +(105,383:26348369,18876417:173670,78643,0 ) ) -(109,383:26685893,18876417:501378,78643,0 -(109,383:26849747,18876417:173670,78643,0 +(105,383:26685893,18876417:501378,78643,0 +(105,383:26849747,18876417:173670,78643,0 ) ) -(109,383:27187271,18876417:501378,78643,0 -(109,383:27351125,18876417:173670,78643,0 +(105,383:27187271,18876417:501378,78643,0 +(105,383:27351125,18876417:173670,78643,0 ) ) -(109,383:27688649,18876417:501378,78643,0 -(109,383:27852503,18876417:173670,78643,0 +(105,383:27688649,18876417:501378,78643,0 +(105,383:27852503,18876417:173670,78643,0 ) ) -(109,383:28190027,18876417:501378,78643,0 -(109,383:28353881,18876417:173670,78643,0 +(105,383:28190027,18876417:501378,78643,0 +(105,383:28353881,18876417:173670,78643,0 ) ) -(109,383:28691405,18876417:501378,78643,0 -(109,383:28855259,18876417:173670,78643,0 +(105,383:28691405,18876417:501378,78643,0 +(105,383:28855259,18876417:173670,78643,0 ) ) -(109,383:29192783,18876417:501378,78643,0 -(109,383:29356637,18876417:173670,78643,0 +(105,383:29192783,18876417:501378,78643,0 +(105,383:29356637,18876417:173670,78643,0 ) ) -(109,383:29694161,18876417:501378,78643,0 -(109,383:29858015,18876417:173670,78643,0 +(105,383:29694161,18876417:501378,78643,0 +(105,383:29858015,18876417:173670,78643,0 ) ) -(109,383:30195539,18876417:501378,78643,0 -(109,383:30359393,18876417:173670,78643,0 +(105,383:30195539,18876417:501378,78643,0 +(105,383:30359393,18876417:173670,78643,0 ) ) -(109,383:30696917,18876417:501378,78643,0 -(109,383:30860771,18876417:173670,78643,0 +(105,383:30696917,18876417:501378,78643,0 +(105,383:30860771,18876417:173670,78643,0 ) ) -(109,383:31403379,18876417:1179650,485622,11795 -k109,383:31403379,18876417:0 -k109,383:31536199,18876417:132820 +(105,383:31239539,18876417:1343490,485622,11795 +k105,383:31239539,18876417:0 +k105,383:31387652,18876417:148113 ) -g109,383:30911859,18876417 -g109,383:32583029,18876417 +g105,383:30911859,18876417 +g105,383:32583029,18876417 ) -(109,385:6630773,19717905:25952256,513147,134348 -g109,385:9121143,19717905 -h109,385:9121143,19717905:983040,0,0 -h109,385:10104183,19717905:0,0,0 -g109,385:7613813,19717905 -(109,385:7613813,19717905:1507330,477757,11795 -k109,385:9121143,19717905:138283 +(105,385:6630773,19717905:25952256,513147,134348 +g105,385:9121143,19717905 +h105,385:9121143,19717905:983040,0,0 +h105,385:10104183,19717905:0,0,0 +g105,385:7613813,19717905 +(105,385:7613813,19717905:1507330,477757,11795 +k105,385:9121143,19717905:138283 ) -g109,385:12800989,19717905 -g109,385:15158974,19717905 -g109,385:16671545,19717905 -g109,385:16671545,19717905 -(109,385:17159711,19717905:501378,78643,0 -$109,385:17159711,19717905 -(109,385:17323565,19717905:173670,78643,0 +g105,385:12800989,19717905 +g105,385:15158974,19717905 +g105,385:16671545,19717905 +g105,385:16671545,19717905 +(105,385:17159711,19717905:501378,78643,0 +$105,385:17159711,19717905 +(105,385:17323565,19717905:173670,78643,0 ) -$109,385:17661089,19717905 +$105,385:17661089,19717905 ) -(109,385:17661089,19717905:501378,78643,0 -(109,385:17824943,19717905:173670,78643,0 +(105,385:17661089,19717905:501378,78643,0 +(105,385:17824943,19717905:173670,78643,0 ) ) -(109,385:18162467,19717905:501378,78643,0 -(109,385:18326321,19717905:173670,78643,0 +(105,385:18162467,19717905:501378,78643,0 +(105,385:18326321,19717905:173670,78643,0 ) ) -(109,385:18663845,19717905:501378,78643,0 -(109,385:18827699,19717905:173670,78643,0 +(105,385:18663845,19717905:501378,78643,0 +(105,385:18827699,19717905:173670,78643,0 ) ) -(109,385:19165223,19717905:501378,78643,0 -(109,385:19329077,19717905:173670,78643,0 +(105,385:19165223,19717905:501378,78643,0 +(105,385:19329077,19717905:173670,78643,0 ) ) -(109,385:19666601,19717905:501378,78643,0 -(109,385:19830455,19717905:173670,78643,0 +(105,385:19666601,19717905:501378,78643,0 +(105,385:19830455,19717905:173670,78643,0 ) ) -(109,385:20167979,19717905:501378,78643,0 -(109,385:20331833,19717905:173670,78643,0 +(105,385:20167979,19717905:501378,78643,0 +(105,385:20331833,19717905:173670,78643,0 ) ) -(109,385:20669357,19717905:501378,78643,0 -(109,385:20833211,19717905:173670,78643,0 +(105,385:20669357,19717905:501378,78643,0 +(105,385:20833211,19717905:173670,78643,0 ) ) -(109,385:21170735,19717905:501378,78643,0 -(109,385:21334589,19717905:173670,78643,0 +(105,385:21170735,19717905:501378,78643,0 +(105,385:21334589,19717905:173670,78643,0 ) ) -(109,385:21672113,19717905:501378,78643,0 -(109,385:21835967,19717905:173670,78643,0 +(105,385:21672113,19717905:501378,78643,0 +(105,385:21835967,19717905:173670,78643,0 ) ) -(109,385:22173491,19717905:501378,78643,0 -(109,385:22337345,19717905:173670,78643,0 +(105,385:22173491,19717905:501378,78643,0 +(105,385:22337345,19717905:173670,78643,0 ) ) -(109,385:22674869,19717905:501378,78643,0 -(109,385:22838723,19717905:173670,78643,0 +(105,385:22674869,19717905:501378,78643,0 +(105,385:22838723,19717905:173670,78643,0 ) ) -(109,385:23176247,19717905:501378,78643,0 -(109,385:23340101,19717905:173670,78643,0 +(105,385:23176247,19717905:501378,78643,0 +(105,385:23340101,19717905:173670,78643,0 ) ) -(109,385:23677625,19717905:501378,78643,0 -(109,385:23841479,19717905:173670,78643,0 +(105,385:23677625,19717905:501378,78643,0 +(105,385:23841479,19717905:173670,78643,0 ) ) -(109,385:24179003,19717905:501378,78643,0 -(109,385:24342857,19717905:173670,78643,0 +(105,385:24179003,19717905:501378,78643,0 +(105,385:24342857,19717905:173670,78643,0 ) ) -(109,385:24680381,19717905:501378,78643,0 -(109,385:24844235,19717905:173670,78643,0 +(105,385:24680381,19717905:501378,78643,0 +(105,385:24844235,19717905:173670,78643,0 ) ) -(109,385:25181759,19717905:501378,78643,0 -(109,385:25345613,19717905:173670,78643,0 +(105,385:25181759,19717905:501378,78643,0 +(105,385:25345613,19717905:173670,78643,0 ) ) -(109,385:25683137,19717905:501378,78643,0 -(109,385:25846991,19717905:173670,78643,0 +(105,385:25683137,19717905:501378,78643,0 +(105,385:25846991,19717905:173670,78643,0 ) ) -(109,385:26184515,19717905:501378,78643,0 -(109,385:26348369,19717905:173670,78643,0 +(105,385:26184515,19717905:501378,78643,0 +(105,385:26348369,19717905:173670,78643,0 ) ) -(109,385:26685893,19717905:501378,78643,0 -(109,385:26849747,19717905:173670,78643,0 +(105,385:26685893,19717905:501378,78643,0 +(105,385:26849747,19717905:173670,78643,0 ) ) -(109,385:27187271,19717905:501378,78643,0 -(109,385:27351125,19717905:173670,78643,0 +(105,385:27187271,19717905:501378,78643,0 +(105,385:27351125,19717905:173670,78643,0 ) ) -(109,385:27688649,19717905:501378,78643,0 -(109,385:27852503,19717905:173670,78643,0 +(105,385:27688649,19717905:501378,78643,0 +(105,385:27852503,19717905:173670,78643,0 ) ) -(109,385:28190027,19717905:501378,78643,0 -(109,385:28353881,19717905:173670,78643,0 +(105,385:28190027,19717905:501378,78643,0 +(105,385:28353881,19717905:173670,78643,0 ) ) -(109,385:28691405,19717905:501378,78643,0 -(109,385:28855259,19717905:173670,78643,0 +(105,385:28691405,19717905:501378,78643,0 +(105,385:28855259,19717905:173670,78643,0 ) ) -(109,385:29192783,19717905:501378,78643,0 -(109,385:29356637,19717905:173670,78643,0 +(105,385:29192783,19717905:501378,78643,0 +(105,385:29356637,19717905:173670,78643,0 ) ) -(109,385:29694161,19717905:501378,78643,0 -(109,385:29858015,19717905:173670,78643,0 +(105,385:29694161,19717905:501378,78643,0 +(105,385:29858015,19717905:173670,78643,0 ) ) -(109,385:30195539,19717905:501378,78643,0 -(109,385:30359393,19717905:173670,78643,0 +(105,385:30195539,19717905:501378,78643,0 +(105,385:30359393,19717905:173670,78643,0 ) ) -(109,385:30696917,19717905:501378,78643,0 -(109,385:30860771,19717905:173670,78643,0 +(105,385:30696917,19717905:501378,78643,0 +(105,385:30860771,19717905:173670,78643,0 ) ) -(109,385:31403379,19717905:1179650,485622,11795 -k109,385:31403379,19717905:0 -k109,385:31536199,19717905:132820 +(105,385:31239539,19717905:1343490,485622,11795 +k105,385:31239539,19717905:0 +k105,385:31387652,19717905:148113 ) -g109,385:30911859,19717905 -g109,385:32583029,19717905 +g105,385:30911859,19717905 +g105,385:32583029,19717905 ) -(109,387:6630773,20559393:25952256,505283,134348 -g109,387:9121143,20559393 -h109,387:9121143,20559393:983040,0,0 -h109,387:10104183,20559393:0,0,0 -g109,387:7613813,20559393 -(109,387:7613813,20559393:1507330,485622,11795 -k109,387:9121143,20559393:138283 +(105,387:6630773,20559393:25952256,505283,134348 +g105,387:9121143,20559393 +h105,387:9121143,20559393:983040,0,0 +h105,387:10104183,20559393:0,0,0 +g105,387:7613813,20559393 +(105,387:7613813,20559393:1507330,485622,11795 +k105,387:9121143,20559393:138283 ) -g109,387:11690154,20559393 -g109,387:14291933,20559393 -g109,387:14291933,20559393 -(109,387:14652821,20559393:501378,78643,0 -$109,387:14652821,20559393 -(109,387:14816675,20559393:173670,78643,0 +g105,387:11690154,20559393 +g105,387:14291933,20559393 +g105,387:14291933,20559393 +(105,387:14652821,20559393:501378,78643,0 +$105,387:14652821,20559393 +(105,387:14816675,20559393:173670,78643,0 ) -$109,387:15154199,20559393 +$105,387:15154199,20559393 ) -(109,387:15154199,20559393:501378,78643,0 -(109,387:15318053,20559393:173670,78643,0 +(105,387:15154199,20559393:501378,78643,0 +(105,387:15318053,20559393:173670,78643,0 ) ) -(109,387:15655577,20559393:501378,78643,0 -(109,387:15819431,20559393:173670,78643,0 +(105,387:15655577,20559393:501378,78643,0 +(105,387:15819431,20559393:173670,78643,0 ) ) -(109,387:16156955,20559393:501378,78643,0 -(109,387:16320809,20559393:173670,78643,0 +(105,387:16156955,20559393:501378,78643,0 +(105,387:16320809,20559393:173670,78643,0 ) ) -(109,387:16658333,20559393:501378,78643,0 -(109,387:16822187,20559393:173670,78643,0 +(105,387:16658333,20559393:501378,78643,0 +(105,387:16822187,20559393:173670,78643,0 ) ) -(109,387:17159711,20559393:501378,78643,0 -(109,387:17323565,20559393:173670,78643,0 +(105,387:17159711,20559393:501378,78643,0 +(105,387:17323565,20559393:173670,78643,0 ) ) -(109,387:17661089,20559393:501378,78643,0 -(109,387:17824943,20559393:173670,78643,0 +(105,387:17661089,20559393:501378,78643,0 +(105,387:17824943,20559393:173670,78643,0 ) ) -(109,387:18162467,20559393:501378,78643,0 -(109,387:18326321,20559393:173670,78643,0 +(105,387:18162467,20559393:501378,78643,0 +(105,387:18326321,20559393:173670,78643,0 ) ) -(109,387:18663845,20559393:501378,78643,0 -(109,387:18827699,20559393:173670,78643,0 +(105,387:18663845,20559393:501378,78643,0 +(105,387:18827699,20559393:173670,78643,0 ) ) -(109,387:19165223,20559393:501378,78643,0 -(109,387:19329077,20559393:173670,78643,0 +(105,387:19165223,20559393:501378,78643,0 +(105,387:19329077,20559393:173670,78643,0 ) ) -(109,387:19666601,20559393:501378,78643,0 -(109,387:19830455,20559393:173670,78643,0 +(105,387:19666601,20559393:501378,78643,0 +(105,387:19830455,20559393:173670,78643,0 ) ) -(109,387:20167979,20559393:501378,78643,0 -(109,387:20331833,20559393:173670,78643,0 +(105,387:20167979,20559393:501378,78643,0 +(105,387:20331833,20559393:173670,78643,0 ) ) -(109,387:20669357,20559393:501378,78643,0 -(109,387:20833211,20559393:173670,78643,0 +(105,387:20669357,20559393:501378,78643,0 +(105,387:20833211,20559393:173670,78643,0 ) ) -(109,387:21170735,20559393:501378,78643,0 -(109,387:21334589,20559393:173670,78643,0 +(105,387:21170735,20559393:501378,78643,0 +(105,387:21334589,20559393:173670,78643,0 ) ) -(109,387:21672113,20559393:501378,78643,0 -(109,387:21835967,20559393:173670,78643,0 +(105,387:21672113,20559393:501378,78643,0 +(105,387:21835967,20559393:173670,78643,0 ) ) -(109,387:22173491,20559393:501378,78643,0 -(109,387:22337345,20559393:173670,78643,0 +(105,387:22173491,20559393:501378,78643,0 +(105,387:22337345,20559393:173670,78643,0 ) ) -(109,387:22674869,20559393:501378,78643,0 -(109,387:22838723,20559393:173670,78643,0 +(105,387:22674869,20559393:501378,78643,0 +(105,387:22838723,20559393:173670,78643,0 ) ) -(109,387:23176247,20559393:501378,78643,0 -(109,387:23340101,20559393:173670,78643,0 +(105,387:23176247,20559393:501378,78643,0 +(105,387:23340101,20559393:173670,78643,0 ) ) -(109,387:23677625,20559393:501378,78643,0 -(109,387:23841479,20559393:173670,78643,0 +(105,387:23677625,20559393:501378,78643,0 +(105,387:23841479,20559393:173670,78643,0 ) ) -(109,387:24179003,20559393:501378,78643,0 -(109,387:24342857,20559393:173670,78643,0 +(105,387:24179003,20559393:501378,78643,0 +(105,387:24342857,20559393:173670,78643,0 ) ) -(109,387:24680381,20559393:501378,78643,0 -(109,387:24844235,20559393:173670,78643,0 +(105,387:24680381,20559393:501378,78643,0 +(105,387:24844235,20559393:173670,78643,0 ) ) -(109,387:25181759,20559393:501378,78643,0 -(109,387:25345613,20559393:173670,78643,0 +(105,387:25181759,20559393:501378,78643,0 +(105,387:25345613,20559393:173670,78643,0 ) ) -(109,387:25683137,20559393:501378,78643,0 -(109,387:25846991,20559393:173670,78643,0 +(105,387:25683137,20559393:501378,78643,0 +(105,387:25846991,20559393:173670,78643,0 ) ) -(109,387:26184515,20559393:501378,78643,0 -(109,387:26348369,20559393:173670,78643,0 +(105,387:26184515,20559393:501378,78643,0 +(105,387:26348369,20559393:173670,78643,0 ) ) -(109,387:26685893,20559393:501378,78643,0 -(109,387:26849747,20559393:173670,78643,0 +(105,387:26685893,20559393:501378,78643,0 +(105,387:26849747,20559393:173670,78643,0 ) ) -(109,387:27187271,20559393:501378,78643,0 -(109,387:27351125,20559393:173670,78643,0 +(105,387:27187271,20559393:501378,78643,0 +(105,387:27351125,20559393:173670,78643,0 ) ) -(109,387:27688649,20559393:501378,78643,0 -(109,387:27852503,20559393:173670,78643,0 +(105,387:27688649,20559393:501378,78643,0 +(105,387:27852503,20559393:173670,78643,0 ) ) -(109,387:28190027,20559393:501378,78643,0 -(109,387:28353881,20559393:173670,78643,0 +(105,387:28190027,20559393:501378,78643,0 +(105,387:28353881,20559393:173670,78643,0 ) ) -(109,387:28691405,20559393:501378,78643,0 -(109,387:28855259,20559393:173670,78643,0 +(105,387:28691405,20559393:501378,78643,0 +(105,387:28855259,20559393:173670,78643,0 ) ) -(109,387:29192783,20559393:501378,78643,0 -(109,387:29356637,20559393:173670,78643,0 +(105,387:29192783,20559393:501378,78643,0 +(105,387:29356637,20559393:173670,78643,0 ) ) -(109,387:29694161,20559393:501378,78643,0 -(109,387:29858015,20559393:173670,78643,0 +(105,387:29694161,20559393:501378,78643,0 +(105,387:29858015,20559393:173670,78643,0 ) ) -(109,387:30195539,20559393:501378,78643,0 -(109,387:30359393,20559393:173670,78643,0 +(105,387:30195539,20559393:501378,78643,0 +(105,387:30359393,20559393:173670,78643,0 ) ) -(109,387:30696917,20559393:501378,78643,0 -(109,387:30860771,20559393:173670,78643,0 +(105,387:30696917,20559393:501378,78643,0 +(105,387:30860771,20559393:173670,78643,0 ) ) -(109,387:31403379,20559393:1179650,485622,11795 -k109,387:31403379,20559393:0 -k109,387:31536199,20559393:132820 +(105,387:31239539,20559393:1343490,485622,11795 +k105,387:31239539,20559393:0 +k105,387:31387652,20559393:148113 ) -g109,387:30911859,20559393 -g109,387:32583029,20559393 +g105,387:30911859,20559393 +g105,387:32583029,20559393 ) -(109,389:6630773,22056241:25952256,505283,126483 -g109,389:7613813,22056241 -h109,389:7613813,22056241:0,0,0 -g109,389:6630773,22056241 -(109,389:6630773,22056241:983040,485622,11795 -k109,389:7613813,22056241:574751 +(105,389:6630773,22056241:25952256,505283,126483 +g105,389:7613813,22056241 +h105,389:7613813,22056241:0,0,0 +g105,389:6630773,22056241 +(105,389:6630773,22056241:983040,485622,11795 +k105,389:7613813,22056241:574751 ) -g109,389:9322336,22056241 -g109,389:11762896,22056241 -g109,389:13187648,22056241 -k109,389:23373581,22056241:8029798 -k109,389:31403379,22056241:8029798 -(109,389:31403379,22056241:1179650,485622,11795 -k109,389:31358161,22056241:-45218 +g105,389:9322336,22056241 +g105,389:11762896,22056241 +g105,389:13187648,22056241 +k105,389:23291661,22056241:7947878 +k105,389:31239539,22056241:7947878 +(105,389:31239539,22056241:1343490,485622,11795 +k105,389:31358161,22056241:118622 ) -g109,389:31403379,22056241 -g109,389:32583029,22056241 +g105,389:31239539,22056241 +g105,389:32583029,22056241 ) -(109,391:6630773,22897729:25952256,513147,126483 -g109,391:9121143,22897729 -h109,391:9121143,22897729:983040,0,0 -h109,391:10104183,22897729:0,0,0 -g109,391:7613813,22897729 -(109,391:7613813,22897729:1507330,485622,11795 -k109,391:9121143,22897729:536742 +(105,391:6630773,22897729:25952256,513147,126483 +g105,391:9121143,22897729 +h105,391:9121143,22897729:983040,0,0 +h105,391:10104183,22897729:0,0,0 +g105,391:7613813,22897729 +(105,391:7613813,22897729:1507330,485622,11795 +k105,391:9121143,22897729:536742 ) -g109,391:10959427,22897729 -g109,391:11817948,22897729 -g109,391:13220418,22897729 -g109,391:15837270,22897729 -g109,391:15837270,22897729 -(109,391:16156955,22897729:501378,78643,0 -$109,391:16156955,22897729 -(109,391:16320809,22897729:173670,78643,0 +g105,391:10959427,22897729 +g105,391:11817948,22897729 +g105,391:13220418,22897729 +g105,391:15837270,22897729 +g105,391:15837270,22897729 +(105,391:16156955,22897729:501378,78643,0 +$105,391:16156955,22897729 +(105,391:16320809,22897729:173670,78643,0 ) -$109,391:16658333,22897729 +$105,391:16658333,22897729 ) -(109,391:16658333,22897729:501378,78643,0 -(109,391:16822187,22897729:173670,78643,0 +(105,391:16658333,22897729:501378,78643,0 +(105,391:16822187,22897729:173670,78643,0 ) ) -(109,391:17159711,22897729:501378,78643,0 -(109,391:17323565,22897729:173670,78643,0 +(105,391:17159711,22897729:501378,78643,0 +(105,391:17323565,22897729:173670,78643,0 ) ) -(109,391:17661089,22897729:501378,78643,0 -(109,391:17824943,22897729:173670,78643,0 +(105,391:17661089,22897729:501378,78643,0 +(105,391:17824943,22897729:173670,78643,0 ) ) -(109,391:18162467,22897729:501378,78643,0 -(109,391:18326321,22897729:173670,78643,0 +(105,391:18162467,22897729:501378,78643,0 +(105,391:18326321,22897729:173670,78643,0 ) ) -(109,391:18663845,22897729:501378,78643,0 -(109,391:18827699,22897729:173670,78643,0 +(105,391:18663845,22897729:501378,78643,0 +(105,391:18827699,22897729:173670,78643,0 ) ) -(109,391:19165223,22897729:501378,78643,0 -(109,391:19329077,22897729:173670,78643,0 +(105,391:19165223,22897729:501378,78643,0 +(105,391:19329077,22897729:173670,78643,0 ) ) -(109,391:19666601,22897729:501378,78643,0 -(109,391:19830455,22897729:173670,78643,0 +(105,391:19666601,22897729:501378,78643,0 +(105,391:19830455,22897729:173670,78643,0 ) ) -(109,391:20167979,22897729:501378,78643,0 -(109,391:20331833,22897729:173670,78643,0 +(105,391:20167979,22897729:501378,78643,0 +(105,391:20331833,22897729:173670,78643,0 ) ) -(109,391:20669357,22897729:501378,78643,0 -(109,391:20833211,22897729:173670,78643,0 +(105,391:20669357,22897729:501378,78643,0 +(105,391:20833211,22897729:173670,78643,0 ) ) -(109,391:21170735,22897729:501378,78643,0 -(109,391:21334589,22897729:173670,78643,0 +(105,391:21170735,22897729:501378,78643,0 +(105,391:21334589,22897729:173670,78643,0 ) ) -(109,391:21672113,22897729:501378,78643,0 -(109,391:21835967,22897729:173670,78643,0 +(105,391:21672113,22897729:501378,78643,0 +(105,391:21835967,22897729:173670,78643,0 ) ) -(109,391:22173491,22897729:501378,78643,0 -(109,391:22337345,22897729:173670,78643,0 +(105,391:22173491,22897729:501378,78643,0 +(105,391:22337345,22897729:173670,78643,0 ) ) -(109,391:22674869,22897729:501378,78643,0 -(109,391:22838723,22897729:173670,78643,0 +(105,391:22674869,22897729:501378,78643,0 +(105,391:22838723,22897729:173670,78643,0 ) ) -(109,391:23176247,22897729:501378,78643,0 -(109,391:23340101,22897729:173670,78643,0 +(105,391:23176247,22897729:501378,78643,0 +(105,391:23340101,22897729:173670,78643,0 ) ) -(109,391:23677625,22897729:501378,78643,0 -(109,391:23841479,22897729:173670,78643,0 +(105,391:23677625,22897729:501378,78643,0 +(105,391:23841479,22897729:173670,78643,0 ) ) -(109,391:24179003,22897729:501378,78643,0 -(109,391:24342857,22897729:173670,78643,0 +(105,391:24179003,22897729:501378,78643,0 +(105,391:24342857,22897729:173670,78643,0 ) ) -(109,391:24680381,22897729:501378,78643,0 -(109,391:24844235,22897729:173670,78643,0 +(105,391:24680381,22897729:501378,78643,0 +(105,391:24844235,22897729:173670,78643,0 ) ) -(109,391:25181759,22897729:501378,78643,0 -(109,391:25345613,22897729:173670,78643,0 +(105,391:25181759,22897729:501378,78643,0 +(105,391:25345613,22897729:173670,78643,0 ) ) -(109,391:25683137,22897729:501378,78643,0 -(109,391:25846991,22897729:173670,78643,0 +(105,391:25683137,22897729:501378,78643,0 +(105,391:25846991,22897729:173670,78643,0 ) ) -(109,391:26184515,22897729:501378,78643,0 -(109,391:26348369,22897729:173670,78643,0 +(105,391:26184515,22897729:501378,78643,0 +(105,391:26348369,22897729:173670,78643,0 ) ) -(109,391:26685893,22897729:501378,78643,0 -(109,391:26849747,22897729:173670,78643,0 +(105,391:26685893,22897729:501378,78643,0 +(105,391:26849747,22897729:173670,78643,0 ) ) -(109,391:27187271,22897729:501378,78643,0 -(109,391:27351125,22897729:173670,78643,0 +(105,391:27187271,22897729:501378,78643,0 +(105,391:27351125,22897729:173670,78643,0 ) ) -(109,391:27688649,22897729:501378,78643,0 -(109,391:27852503,22897729:173670,78643,0 +(105,391:27688649,22897729:501378,78643,0 +(105,391:27852503,22897729:173670,78643,0 ) ) -(109,391:28190027,22897729:501378,78643,0 -(109,391:28353881,22897729:173670,78643,0 +(105,391:28190027,22897729:501378,78643,0 +(105,391:28353881,22897729:173670,78643,0 ) ) -(109,391:28691405,22897729:501378,78643,0 -(109,391:28855259,22897729:173670,78643,0 +(105,391:28691405,22897729:501378,78643,0 +(105,391:28855259,22897729:173670,78643,0 ) ) -(109,391:29192783,22897729:501378,78643,0 -(109,391:29356637,22897729:173670,78643,0 +(105,391:29192783,22897729:501378,78643,0 +(105,391:29356637,22897729:173670,78643,0 ) ) -(109,391:29694161,22897729:501378,78643,0 -(109,391:29858015,22897729:173670,78643,0 +(105,391:29694161,22897729:501378,78643,0 +(105,391:29858015,22897729:173670,78643,0 ) ) -(109,391:30195539,22897729:501378,78643,0 -(109,391:30359393,22897729:173670,78643,0 +(105,391:30195539,22897729:501378,78643,0 +(105,391:30359393,22897729:173670,78643,0 ) ) -(109,391:30696917,22897729:501378,78643,0 -(109,391:30860771,22897729:173670,78643,0 +(105,391:30696917,22897729:501378,78643,0 +(105,391:30860771,22897729:173670,78643,0 ) ) -(109,391:31403379,22897729:1179650,485622,11795 -k109,391:31403379,22897729:0 -k109,391:31536199,22897729:132820 +(105,391:31239539,22897729:1343490,485622,11795 +k105,391:31239539,22897729:0 +k105,391:31387652,22897729:148113 ) -g109,391:30911859,22897729 -g109,391:32583029,22897729 +g105,391:30911859,22897729 +g105,391:32583029,22897729 ) -(109,393:6630773,23739217:25952256,505283,11795 -g109,393:9121143,23739217 -h109,393:9121143,23739217:983040,0,0 -h109,393:10104183,23739217:0,0,0 -g109,393:7613813,23739217 -(109,393:7613813,23739217:1507330,485622,11795 -k109,393:9121143,23739217:536742 +(105,393:6630773,23739217:25952256,505283,11795 +g105,393:9121143,23739217 +h105,393:9121143,23739217:983040,0,0 +h105,393:10104183,23739217:0,0,0 +g105,393:7613813,23739217 +(105,393:7613813,23739217:1507330,485622,11795 +k105,393:9121143,23739217:536742 ) -g109,393:13324622,23739217 -g109,393:13324622,23739217 -(109,393:13650065,23739217:501378,78643,0 -$109,393:13650065,23739217 -(109,393:13813919,23739217:173670,78643,0 +g105,393:13324622,23739217 +g105,393:13324622,23739217 +(105,393:13650065,23739217:501378,78643,0 +$105,393:13650065,23739217 +(105,393:13813919,23739217:173670,78643,0 ) -$109,393:14151443,23739217 +$105,393:14151443,23739217 ) -(109,393:14151443,23739217:501378,78643,0 -(109,393:14315297,23739217:173670,78643,0 +(105,393:14151443,23739217:501378,78643,0 +(105,393:14315297,23739217:173670,78643,0 ) ) -(109,393:14652821,23739217:501378,78643,0 -(109,393:14816675,23739217:173670,78643,0 +(105,393:14652821,23739217:501378,78643,0 +(105,393:14816675,23739217:173670,78643,0 ) ) -(109,393:15154199,23739217:501378,78643,0 -(109,393:15318053,23739217:173670,78643,0 +(105,393:15154199,23739217:501378,78643,0 +(105,393:15318053,23739217:173670,78643,0 ) ) -(109,393:15655577,23739217:501378,78643,0 -(109,393:15819431,23739217:173670,78643,0 +(105,393:15655577,23739217:501378,78643,0 +(105,393:15819431,23739217:173670,78643,0 ) ) -(109,393:16156955,23739217:501378,78643,0 -(109,393:16320809,23739217:173670,78643,0 +(105,393:16156955,23739217:501378,78643,0 +(105,393:16320809,23739217:173670,78643,0 ) ) -(109,393:16658333,23739217:501378,78643,0 -(109,393:16822187,23739217:173670,78643,0 +(105,393:16658333,23739217:501378,78643,0 +(105,393:16822187,23739217:173670,78643,0 ) ) -(109,393:17159711,23739217:501378,78643,0 -(109,393:17323565,23739217:173670,78643,0 +(105,393:17159711,23739217:501378,78643,0 +(105,393:17323565,23739217:173670,78643,0 ) ) -(109,393:17661089,23739217:501378,78643,0 -(109,393:17824943,23739217:173670,78643,0 +(105,393:17661089,23739217:501378,78643,0 +(105,393:17824943,23739217:173670,78643,0 ) ) -(109,393:18162467,23739217:501378,78643,0 -(109,393:18326321,23739217:173670,78643,0 +(105,393:18162467,23739217:501378,78643,0 +(105,393:18326321,23739217:173670,78643,0 ) ) -(109,393:18663845,23739217:501378,78643,0 -(109,393:18827699,23739217:173670,78643,0 +(105,393:18663845,23739217:501378,78643,0 +(105,393:18827699,23739217:173670,78643,0 ) ) -(109,393:19165223,23739217:501378,78643,0 -(109,393:19329077,23739217:173670,78643,0 +(105,393:19165223,23739217:501378,78643,0 +(105,393:19329077,23739217:173670,78643,0 ) ) -(109,393:19666601,23739217:501378,78643,0 -(109,393:19830455,23739217:173670,78643,0 +(105,393:19666601,23739217:501378,78643,0 +(105,393:19830455,23739217:173670,78643,0 ) ) -(109,393:20167979,23739217:501378,78643,0 -(109,393:20331833,23739217:173670,78643,0 +(105,393:20167979,23739217:501378,78643,0 +(105,393:20331833,23739217:173670,78643,0 ) ) -(109,393:20669357,23739217:501378,78643,0 -(109,393:20833211,23739217:173670,78643,0 +(105,393:20669357,23739217:501378,78643,0 +(105,393:20833211,23739217:173670,78643,0 ) ) -(109,393:21170735,23739217:501378,78643,0 -(109,393:21334589,23739217:173670,78643,0 +(105,393:21170735,23739217:501378,78643,0 +(105,393:21334589,23739217:173670,78643,0 ) ) -(109,393:21672113,23739217:501378,78643,0 -(109,393:21835967,23739217:173670,78643,0 +(105,393:21672113,23739217:501378,78643,0 +(105,393:21835967,23739217:173670,78643,0 ) ) -(109,393:22173491,23739217:501378,78643,0 -(109,393:22337345,23739217:173670,78643,0 +(105,393:22173491,23739217:501378,78643,0 +(105,393:22337345,23739217:173670,78643,0 ) ) -(109,393:22674869,23739217:501378,78643,0 -(109,393:22838723,23739217:173670,78643,0 +(105,393:22674869,23739217:501378,78643,0 +(105,393:22838723,23739217:173670,78643,0 ) ) -(109,393:23176247,23739217:501378,78643,0 -(109,393:23340101,23739217:173670,78643,0 +(105,393:23176247,23739217:501378,78643,0 +(105,393:23340101,23739217:173670,78643,0 ) ) -(109,393:23677625,23739217:501378,78643,0 -(109,393:23841479,23739217:173670,78643,0 +(105,393:23677625,23739217:501378,78643,0 +(105,393:23841479,23739217:173670,78643,0 ) ) -(109,393:24179003,23739217:501378,78643,0 -(109,393:24342857,23739217:173670,78643,0 +(105,393:24179003,23739217:501378,78643,0 +(105,393:24342857,23739217:173670,78643,0 ) ) -(109,393:24680381,23739217:501378,78643,0 -(109,393:24844235,23739217:173670,78643,0 +(105,393:24680381,23739217:501378,78643,0 +(105,393:24844235,23739217:173670,78643,0 ) ) -(109,393:25181759,23739217:501378,78643,0 -(109,393:25345613,23739217:173670,78643,0 +(105,393:25181759,23739217:501378,78643,0 +(105,393:25345613,23739217:173670,78643,0 ) ) -(109,393:25683137,23739217:501378,78643,0 -(109,393:25846991,23739217:173670,78643,0 +(105,393:25683137,23739217:501378,78643,0 +(105,393:25846991,23739217:173670,78643,0 ) ) -(109,393:26184515,23739217:501378,78643,0 -(109,393:26348369,23739217:173670,78643,0 +(105,393:26184515,23739217:501378,78643,0 +(105,393:26348369,23739217:173670,78643,0 ) ) -(109,393:26685893,23739217:501378,78643,0 -(109,393:26849747,23739217:173670,78643,0 +(105,393:26685893,23739217:501378,78643,0 +(105,393:26849747,23739217:173670,78643,0 ) ) -(109,393:27187271,23739217:501378,78643,0 -(109,393:27351125,23739217:173670,78643,0 +(105,393:27187271,23739217:501378,78643,0 +(105,393:27351125,23739217:173670,78643,0 ) ) -(109,393:27688649,23739217:501378,78643,0 -(109,393:27852503,23739217:173670,78643,0 +(105,393:27688649,23739217:501378,78643,0 +(105,393:27852503,23739217:173670,78643,0 ) ) -(109,393:28190027,23739217:501378,78643,0 -(109,393:28353881,23739217:173670,78643,0 +(105,393:28190027,23739217:501378,78643,0 +(105,393:28353881,23739217:173670,78643,0 ) ) -(109,393:28691405,23739217:501378,78643,0 -(109,393:28855259,23739217:173670,78643,0 +(105,393:28691405,23739217:501378,78643,0 +(105,393:28855259,23739217:173670,78643,0 ) ) -(109,393:29192783,23739217:501378,78643,0 -(109,393:29356637,23739217:173670,78643,0 +(105,393:29192783,23739217:501378,78643,0 +(105,393:29356637,23739217:173670,78643,0 ) ) -(109,393:29694161,23739217:501378,78643,0 -(109,393:29858015,23739217:173670,78643,0 +(105,393:29694161,23739217:501378,78643,0 +(105,393:29858015,23739217:173670,78643,0 ) ) -(109,393:30195539,23739217:501378,78643,0 -(109,393:30359393,23739217:173670,78643,0 +(105,393:30195539,23739217:501378,78643,0 +(105,393:30359393,23739217:173670,78643,0 ) ) -(109,393:30696917,23739217:501378,78643,0 -(109,393:30860771,23739217:173670,78643,0 +(105,393:30696917,23739217:501378,78643,0 +(105,393:30860771,23739217:173670,78643,0 ) ) -(109,393:31403378,23739217:1179650,485622,11795 -k109,393:31403378,23739217:0 -k109,393:31536198,23739217:132820 +(105,393:31239538,23739217:1343490,485622,11795 +k105,393:31239538,23739217:0 +k105,393:31387651,23739217:148113 ) -g109,393:30911858,23739217 -g109,393:32583028,23739217 +g105,393:30911858,23739217 +g105,393:32583028,23739217 ) -(109,395:6630773,24580705:25952256,505283,134348 -g109,395:9121143,24580705 -h109,395:9121143,24580705:983040,0,0 -h109,395:10104183,24580705:0,0,0 -g109,395:7613813,24580705 -(109,395:7613813,24580705:1507330,485622,11795 -k109,395:9121143,24580705:536742 +(105,395:6630773,24580705:25952256,505283,134348 +g105,395:9121143,24580705 +h105,395:9121143,24580705:983040,0,0 +h105,395:10104183,24580705:0,0,0 +g105,395:7613813,24580705 +(105,395:7613813,24580705:1507330,485622,11795 +k105,395:9121143,24580705:536742 ) -g109,395:12185606,24580705 -g109,395:13898061,24580705 -g109,395:14713328,24580705 -g109,395:16115798,24580705 -g109,395:18732650,24580705 -g109,395:18732650,24580705 -(109,395:19165223,24580705:501378,78643,0 -$109,395:19165223,24580705 -(109,395:19329077,24580705:173670,78643,0 +g105,395:12185606,24580705 +g105,395:13898061,24580705 +g105,395:14713328,24580705 +g105,395:16115798,24580705 +g105,395:18732650,24580705 +g105,395:18732650,24580705 +(105,395:19165223,24580705:501378,78643,0 +$105,395:19165223,24580705 +(105,395:19329077,24580705:173670,78643,0 ) -$109,395:19666601,24580705 +$105,395:19666601,24580705 ) -(109,395:19666601,24580705:501378,78643,0 -(109,395:19830455,24580705:173670,78643,0 +(105,395:19666601,24580705:501378,78643,0 +(105,395:19830455,24580705:173670,78643,0 ) ) -(109,395:20167979,24580705:501378,78643,0 -(109,395:20331833,24580705:173670,78643,0 +(105,395:20167979,24580705:501378,78643,0 +(105,395:20331833,24580705:173670,78643,0 ) ) -(109,395:20669357,24580705:501378,78643,0 -(109,395:20833211,24580705:173670,78643,0 +(105,395:20669357,24580705:501378,78643,0 +(105,395:20833211,24580705:173670,78643,0 ) ) -(109,395:21170735,24580705:501378,78643,0 -(109,395:21334589,24580705:173670,78643,0 +(105,395:21170735,24580705:501378,78643,0 +(105,395:21334589,24580705:173670,78643,0 ) ) -(109,395:21672113,24580705:501378,78643,0 -(109,395:21835967,24580705:173670,78643,0 +(105,395:21672113,24580705:501378,78643,0 +(105,395:21835967,24580705:173670,78643,0 ) ) -(109,395:22173491,24580705:501378,78643,0 -(109,395:22337345,24580705:173670,78643,0 +(105,395:22173491,24580705:501378,78643,0 +(105,395:22337345,24580705:173670,78643,0 ) ) -(109,395:22674869,24580705:501378,78643,0 -(109,395:22838723,24580705:173670,78643,0 +(105,395:22674869,24580705:501378,78643,0 +(105,395:22838723,24580705:173670,78643,0 ) ) -(109,395:23176247,24580705:501378,78643,0 -(109,395:23340101,24580705:173670,78643,0 +(105,395:23176247,24580705:501378,78643,0 +(105,395:23340101,24580705:173670,78643,0 ) ) -(109,395:23677625,24580705:501378,78643,0 -(109,395:23841479,24580705:173670,78643,0 +(105,395:23677625,24580705:501378,78643,0 +(105,395:23841479,24580705:173670,78643,0 ) ) -(109,395:24179003,24580705:501378,78643,0 -(109,395:24342857,24580705:173670,78643,0 +(105,395:24179003,24580705:501378,78643,0 +(105,395:24342857,24580705:173670,78643,0 ) ) -(109,395:24680381,24580705:501378,78643,0 -(109,395:24844235,24580705:173670,78643,0 +(105,395:24680381,24580705:501378,78643,0 +(105,395:24844235,24580705:173670,78643,0 ) ) -(109,395:25181759,24580705:501378,78643,0 -(109,395:25345613,24580705:173670,78643,0 +(105,395:25181759,24580705:501378,78643,0 +(105,395:25345613,24580705:173670,78643,0 ) ) -(109,395:25683137,24580705:501378,78643,0 -(109,395:25846991,24580705:173670,78643,0 +(105,395:25683137,24580705:501378,78643,0 +(105,395:25846991,24580705:173670,78643,0 ) ) -(109,395:26184515,24580705:501378,78643,0 -(109,395:26348369,24580705:173670,78643,0 +(105,395:26184515,24580705:501378,78643,0 +(105,395:26348369,24580705:173670,78643,0 ) ) -(109,395:26685893,24580705:501378,78643,0 -(109,395:26849747,24580705:173670,78643,0 +(105,395:26685893,24580705:501378,78643,0 +(105,395:26849747,24580705:173670,78643,0 ) ) -(109,395:27187271,24580705:501378,78643,0 -(109,395:27351125,24580705:173670,78643,0 +(105,395:27187271,24580705:501378,78643,0 +(105,395:27351125,24580705:173670,78643,0 ) ) -(109,395:27688649,24580705:501378,78643,0 -(109,395:27852503,24580705:173670,78643,0 +(105,395:27688649,24580705:501378,78643,0 +(105,395:27852503,24580705:173670,78643,0 ) ) -(109,395:28190027,24580705:501378,78643,0 -(109,395:28353881,24580705:173670,78643,0 +(105,395:28190027,24580705:501378,78643,0 +(105,395:28353881,24580705:173670,78643,0 ) ) -(109,395:28691405,24580705:501378,78643,0 -(109,395:28855259,24580705:173670,78643,0 +(105,395:28691405,24580705:501378,78643,0 +(105,395:28855259,24580705:173670,78643,0 ) ) -(109,395:29192783,24580705:501378,78643,0 -(109,395:29356637,24580705:173670,78643,0 +(105,395:29192783,24580705:501378,78643,0 +(105,395:29356637,24580705:173670,78643,0 ) ) -(109,395:29694161,24580705:501378,78643,0 -(109,395:29858015,24580705:173670,78643,0 +(105,395:29694161,24580705:501378,78643,0 +(105,395:29858015,24580705:173670,78643,0 ) ) -(109,395:30195539,24580705:501378,78643,0 -(109,395:30359393,24580705:173670,78643,0 +(105,395:30195539,24580705:501378,78643,0 +(105,395:30359393,24580705:173670,78643,0 ) ) -(109,395:30696917,24580705:501378,78643,0 -(109,395:30860771,24580705:173670,78643,0 +(105,395:30696917,24580705:501378,78643,0 +(105,395:30860771,24580705:173670,78643,0 ) ) -(109,395:31403379,24580705:1179650,485622,11795 -k109,395:31403379,24580705:0 -k109,395:31536199,24580705:132820 +(105,395:31239539,24580705:1343490,485622,11795 +k105,395:31239539,24580705:0 +k105,395:31387652,24580705:148113 ) -g109,395:30911859,24580705 -g109,395:32583029,24580705 +g105,395:30911859,24580705 +g105,395:32583029,24580705 ) -(109,397:6630773,25422193:25952256,505283,126483 -g109,397:9121143,25422193 -h109,397:9121143,25422193:983040,0,0 -h109,397:10104183,25422193:0,0,0 -g109,397:7613813,25422193 -(109,397:7613813,25422193:1507330,485622,11795 -k109,397:9121143,25422193:536742 +(105,397:6630773,25422193:25952256,505283,126483 +g105,397:9121143,25422193 +h105,397:9121143,25422193:983040,0,0 +h105,397:10104183,25422193:0,0,0 +g105,397:7613813,25422193 +(105,397:7613813,25422193:1507330,485622,11795 +k105,397:9121143,25422193:536742 ) -g109,397:10433173,25422193 -g109,397:12700718,25422193 -g109,397:14091392,25422193 -g109,397:17695216,25422193 -g109,397:17695216,25422193 -(109,397:18162467,25422193:501378,78643,0 -$109,397:18162467,25422193 -(109,397:18326321,25422193:173670,78643,0 +g105,397:10433173,25422193 +g105,397:12700718,25422193 +g105,397:14091392,25422193 +g105,397:17695216,25422193 +g105,397:17695216,25422193 +(105,397:18162467,25422193:501378,78643,0 +$105,397:18162467,25422193 +(105,397:18326321,25422193:173670,78643,0 ) -$109,397:18663845,25422193 +$105,397:18663845,25422193 ) -(109,397:18663845,25422193:501378,78643,0 -(109,397:18827699,25422193:173670,78643,0 +(105,397:18663845,25422193:501378,78643,0 +(105,397:18827699,25422193:173670,78643,0 ) ) -(109,397:19165223,25422193:501378,78643,0 -(109,397:19329077,25422193:173670,78643,0 +(105,397:19165223,25422193:501378,78643,0 +(105,397:19329077,25422193:173670,78643,0 ) ) -(109,397:19666601,25422193:501378,78643,0 -(109,397:19830455,25422193:173670,78643,0 +(105,397:19666601,25422193:501378,78643,0 +(105,397:19830455,25422193:173670,78643,0 ) ) -(109,397:20167979,25422193:501378,78643,0 -(109,397:20331833,25422193:173670,78643,0 +(105,397:20167979,25422193:501378,78643,0 +(105,397:20331833,25422193:173670,78643,0 ) ) -(109,397:20669357,25422193:501378,78643,0 -(109,397:20833211,25422193:173670,78643,0 +(105,397:20669357,25422193:501378,78643,0 +(105,397:20833211,25422193:173670,78643,0 ) ) -(109,397:21170735,25422193:501378,78643,0 -(109,397:21334589,25422193:173670,78643,0 +(105,397:21170735,25422193:501378,78643,0 +(105,397:21334589,25422193:173670,78643,0 ) ) -(109,397:21672113,25422193:501378,78643,0 -(109,397:21835967,25422193:173670,78643,0 +(105,397:21672113,25422193:501378,78643,0 +(105,397:21835967,25422193:173670,78643,0 ) ) -(109,397:22173491,25422193:501378,78643,0 -(109,397:22337345,25422193:173670,78643,0 +(105,397:22173491,25422193:501378,78643,0 +(105,397:22337345,25422193:173670,78643,0 ) ) -(109,397:22674869,25422193:501378,78643,0 -(109,397:22838723,25422193:173670,78643,0 +(105,397:22674869,25422193:501378,78643,0 +(105,397:22838723,25422193:173670,78643,0 ) ) -(109,397:23176247,25422193:501378,78643,0 -(109,397:23340101,25422193:173670,78643,0 +(105,397:23176247,25422193:501378,78643,0 +(105,397:23340101,25422193:173670,78643,0 ) ) -(109,397:23677625,25422193:501378,78643,0 -(109,397:23841479,25422193:173670,78643,0 +(105,397:23677625,25422193:501378,78643,0 +(105,397:23841479,25422193:173670,78643,0 ) ) -(109,397:24179003,25422193:501378,78643,0 -(109,397:24342857,25422193:173670,78643,0 +(105,397:24179003,25422193:501378,78643,0 +(105,397:24342857,25422193:173670,78643,0 ) ) -(109,397:24680381,25422193:501378,78643,0 -(109,397:24844235,25422193:173670,78643,0 +(105,397:24680381,25422193:501378,78643,0 +(105,397:24844235,25422193:173670,78643,0 ) ) -(109,397:25181759,25422193:501378,78643,0 -(109,397:25345613,25422193:173670,78643,0 +(105,397:25181759,25422193:501378,78643,0 +(105,397:25345613,25422193:173670,78643,0 ) ) -(109,397:25683137,25422193:501378,78643,0 -(109,397:25846991,25422193:173670,78643,0 +(105,397:25683137,25422193:501378,78643,0 +(105,397:25846991,25422193:173670,78643,0 ) ) -(109,397:26184515,25422193:501378,78643,0 -(109,397:26348369,25422193:173670,78643,0 +(105,397:26184515,25422193:501378,78643,0 +(105,397:26348369,25422193:173670,78643,0 ) ) -(109,397:26685893,25422193:501378,78643,0 -(109,397:26849747,25422193:173670,78643,0 +(105,397:26685893,25422193:501378,78643,0 +(105,397:26849747,25422193:173670,78643,0 ) ) -(109,397:27187271,25422193:501378,78643,0 -(109,397:27351125,25422193:173670,78643,0 +(105,397:27187271,25422193:501378,78643,0 +(105,397:27351125,25422193:173670,78643,0 ) ) -(109,397:27688649,25422193:501378,78643,0 -(109,397:27852503,25422193:173670,78643,0 +(105,397:27688649,25422193:501378,78643,0 +(105,397:27852503,25422193:173670,78643,0 ) ) -(109,397:28190027,25422193:501378,78643,0 -(109,397:28353881,25422193:173670,78643,0 +(105,397:28190027,25422193:501378,78643,0 +(105,397:28353881,25422193:173670,78643,0 ) ) -(109,397:28691405,25422193:501378,78643,0 -(109,397:28855259,25422193:173670,78643,0 +(105,397:28691405,25422193:501378,78643,0 +(105,397:28855259,25422193:173670,78643,0 ) ) -(109,397:29192783,25422193:501378,78643,0 -(109,397:29356637,25422193:173670,78643,0 +(105,397:29192783,25422193:501378,78643,0 +(105,397:29356637,25422193:173670,78643,0 ) ) -(109,397:29694161,25422193:501378,78643,0 -(109,397:29858015,25422193:173670,78643,0 +(105,397:29694161,25422193:501378,78643,0 +(105,397:29858015,25422193:173670,78643,0 ) ) -(109,397:30195539,25422193:501378,78643,0 -(109,397:30359393,25422193:173670,78643,0 +(105,397:30195539,25422193:501378,78643,0 +(105,397:30359393,25422193:173670,78643,0 ) ) -(109,397:30696917,25422193:501378,78643,0 -(109,397:30860771,25422193:173670,78643,0 +(105,397:30696917,25422193:501378,78643,0 +(105,397:30860771,25422193:173670,78643,0 ) ) -(109,397:31403379,25422193:1179650,485622,11795 -k109,397:31403379,25422193:0 -k109,397:31536199,25422193:132820 +(105,397:31239539,25422193:1343490,485622,11795 +k105,397:31239539,25422193:0 +k105,397:31387652,25422193:148113 ) -g109,397:30911859,25422193 -g109,397:32583029,25422193 +g105,397:30911859,25422193 +g105,397:32583029,25422193 ) -(109,399:6630773,26263681:25952256,513147,134348 -g109,399:9121143,26263681 -h109,399:9121143,26263681:983040,0,0 -h109,399:10104183,26263681:0,0,0 -g109,399:7613813,26263681 -(109,399:7613813,26263681:1507330,485622,11795 -k109,399:9121143,26263681:536742 +(105,399:6630773,26263681:25952256,513147,134348 +g105,399:9121143,26263681 +h105,399:9121143,26263681:983040,0,0 +h105,399:10104183,26263681:0,0,0 +g105,399:7613813,26263681 +(105,399:7613813,26263681:1507330,485622,11795 +k105,399:9121143,26263681:536742 ) -g109,399:12002761,26263681 -g109,399:13393435,26263681 -g109,399:15846447,26263681 -g109,399:17028716,26263681 -g109,399:21064423,26263681 -g109,399:21064423,26263681 -(109,399:21170735,26263681:501378,78643,0 -$109,399:21170735,26263681 -(109,399:21334589,26263681:173670,78643,0 +g105,399:12002761,26263681 +g105,399:13393435,26263681 +g105,399:15846447,26263681 +g105,399:17028716,26263681 +g105,399:21064423,26263681 +g105,399:21064423,26263681 +(105,399:21170735,26263681:501378,78643,0 +$105,399:21170735,26263681 +(105,399:21334589,26263681:173670,78643,0 ) -$109,399:21672113,26263681 +$105,399:21672113,26263681 ) -(109,399:21672113,26263681:501378,78643,0 -(109,399:21835967,26263681:173670,78643,0 +(105,399:21672113,26263681:501378,78643,0 +(105,399:21835967,26263681:173670,78643,0 ) ) -(109,399:22173491,26263681:501378,78643,0 -(109,399:22337345,26263681:173670,78643,0 +(105,399:22173491,26263681:501378,78643,0 +(105,399:22337345,26263681:173670,78643,0 ) ) -(109,399:22674869,26263681:501378,78643,0 -(109,399:22838723,26263681:173670,78643,0 +(105,399:22674869,26263681:501378,78643,0 +(105,399:22838723,26263681:173670,78643,0 ) ) -(109,399:23176247,26263681:501378,78643,0 -(109,399:23340101,26263681:173670,78643,0 +(105,399:23176247,26263681:501378,78643,0 +(105,399:23340101,26263681:173670,78643,0 ) ) -(109,399:23677625,26263681:501378,78643,0 -(109,399:23841479,26263681:173670,78643,0 +(105,399:23677625,26263681:501378,78643,0 +(105,399:23841479,26263681:173670,78643,0 ) ) -(109,399:24179003,26263681:501378,78643,0 -(109,399:24342857,26263681:173670,78643,0 +(105,399:24179003,26263681:501378,78643,0 +(105,399:24342857,26263681:173670,78643,0 ) ) -(109,399:24680381,26263681:501378,78643,0 -(109,399:24844235,26263681:173670,78643,0 +(105,399:24680381,26263681:501378,78643,0 +(105,399:24844235,26263681:173670,78643,0 ) ) -(109,399:25181759,26263681:501378,78643,0 -(109,399:25345613,26263681:173670,78643,0 +(105,399:25181759,26263681:501378,78643,0 +(105,399:25345613,26263681:173670,78643,0 ) ) -(109,399:25683137,26263681:501378,78643,0 -(109,399:25846991,26263681:173670,78643,0 +(105,399:25683137,26263681:501378,78643,0 +(105,399:25846991,26263681:173670,78643,0 ) ) -(109,399:26184515,26263681:501378,78643,0 -(109,399:26348369,26263681:173670,78643,0 +(105,399:26184515,26263681:501378,78643,0 +(105,399:26348369,26263681:173670,78643,0 ) ) -(109,399:26685893,26263681:501378,78643,0 -(109,399:26849747,26263681:173670,78643,0 +(105,399:26685893,26263681:501378,78643,0 +(105,399:26849747,26263681:173670,78643,0 ) ) -(109,399:27187271,26263681:501378,78643,0 -(109,399:27351125,26263681:173670,78643,0 +(105,399:27187271,26263681:501378,78643,0 +(105,399:27351125,26263681:173670,78643,0 ) ) -(109,399:27688649,26263681:501378,78643,0 -(109,399:27852503,26263681:173670,78643,0 +(105,399:27688649,26263681:501378,78643,0 +(105,399:27852503,26263681:173670,78643,0 ) ) -(109,399:28190027,26263681:501378,78643,0 -(109,399:28353881,26263681:173670,78643,0 +(105,399:28190027,26263681:501378,78643,0 +(105,399:28353881,26263681:173670,78643,0 ) ) -(109,399:28691405,26263681:501378,78643,0 -(109,399:28855259,26263681:173670,78643,0 +(105,399:28691405,26263681:501378,78643,0 +(105,399:28855259,26263681:173670,78643,0 ) ) -(109,399:29192783,26263681:501378,78643,0 -(109,399:29356637,26263681:173670,78643,0 +(105,399:29192783,26263681:501378,78643,0 +(105,399:29356637,26263681:173670,78643,0 ) ) -(109,399:29694161,26263681:501378,78643,0 -(109,399:29858015,26263681:173670,78643,0 +(105,399:29694161,26263681:501378,78643,0 +(105,399:29858015,26263681:173670,78643,0 ) ) -(109,399:30195539,26263681:501378,78643,0 -(109,399:30359393,26263681:173670,78643,0 +(105,399:30195539,26263681:501378,78643,0 +(105,399:30359393,26263681:173670,78643,0 ) ) -(109,399:30696917,26263681:501378,78643,0 -(109,399:30860771,26263681:173670,78643,0 +(105,399:30696917,26263681:501378,78643,0 +(105,399:30860771,26263681:173670,78643,0 ) ) -(109,399:31403379,26263681:1179650,485622,11795 -k109,399:31403379,26263681:0 -k109,399:31536199,26263681:132820 +(105,399:31239539,26263681:1343490,485622,11795 +k105,399:31239539,26263681:0 +k105,399:31387652,26263681:148113 ) -g109,399:30911859,26263681 -g109,399:32583029,26263681 +g105,399:30911859,26263681 +g105,399:32583029,26263681 ) -(109,401:6630773,27105169:25952256,513147,11795 -g109,401:9121143,27105169 -h109,401:9121143,27105169:983040,0,0 -h109,401:10104183,27105169:0,0,0 -g109,401:7613813,27105169 -(109,401:7613813,27105169:1507330,485622,11795 -k109,401:9121143,27105169:536742 +(105,401:6630773,27105169:25952256,513147,11795 +g105,401:9121143,27105169 +h105,401:9121143,27105169:983040,0,0 +h105,401:10104183,27105169:0,0,0 +g105,401:7613813,27105169 +(105,401:7613813,27105169:1507330,485622,11795 +k105,401:9121143,27105169:536742 ) -g109,401:12312091,27105169 -g109,401:13824662,27105169 -g109,401:13824662,27105169 -(109,401:14151443,27105169:501378,78643,0 -$109,401:14151443,27105169 -(109,401:14315297,27105169:173670,78643,0 +g105,401:12312091,27105169 +g105,401:13824662,27105169 +g105,401:13824662,27105169 +(105,401:14151443,27105169:501378,78643,0 +$105,401:14151443,27105169 +(105,401:14315297,27105169:173670,78643,0 ) -$109,401:14652821,27105169 +$105,401:14652821,27105169 ) -(109,401:14652821,27105169:501378,78643,0 -(109,401:14816675,27105169:173670,78643,0 +(105,401:14652821,27105169:501378,78643,0 +(105,401:14816675,27105169:173670,78643,0 ) ) -(109,401:15154199,27105169:501378,78643,0 -(109,401:15318053,27105169:173670,78643,0 +(105,401:15154199,27105169:501378,78643,0 +(105,401:15318053,27105169:173670,78643,0 ) ) -(109,401:15655577,27105169:501378,78643,0 -(109,401:15819431,27105169:173670,78643,0 +(105,401:15655577,27105169:501378,78643,0 +(105,401:15819431,27105169:173670,78643,0 ) ) -(109,401:16156955,27105169:501378,78643,0 -(109,401:16320809,27105169:173670,78643,0 +(105,401:16156955,27105169:501378,78643,0 +(105,401:16320809,27105169:173670,78643,0 ) ) -(109,401:16658333,27105169:501378,78643,0 -(109,401:16822187,27105169:173670,78643,0 +(105,401:16658333,27105169:501378,78643,0 +(105,401:16822187,27105169:173670,78643,0 ) ) -(109,401:17159711,27105169:501378,78643,0 -(109,401:17323565,27105169:173670,78643,0 +(105,401:17159711,27105169:501378,78643,0 +(105,401:17323565,27105169:173670,78643,0 ) ) -(109,401:17661089,27105169:501378,78643,0 -(109,401:17824943,27105169:173670,78643,0 +(105,401:17661089,27105169:501378,78643,0 +(105,401:17824943,27105169:173670,78643,0 ) ) -(109,401:18162467,27105169:501378,78643,0 -(109,401:18326321,27105169:173670,78643,0 +(105,401:18162467,27105169:501378,78643,0 +(105,401:18326321,27105169:173670,78643,0 ) ) -(109,401:18663845,27105169:501378,78643,0 -(109,401:18827699,27105169:173670,78643,0 +(105,401:18663845,27105169:501378,78643,0 +(105,401:18827699,27105169:173670,78643,0 ) ) -(109,401:19165223,27105169:501378,78643,0 -(109,401:19329077,27105169:173670,78643,0 +(105,401:19165223,27105169:501378,78643,0 +(105,401:19329077,27105169:173670,78643,0 ) ) -(109,401:19666601,27105169:501378,78643,0 -(109,401:19830455,27105169:173670,78643,0 +(105,401:19666601,27105169:501378,78643,0 +(105,401:19830455,27105169:173670,78643,0 ) ) -(109,401:20167979,27105169:501378,78643,0 -(109,401:20331833,27105169:173670,78643,0 +(105,401:20167979,27105169:501378,78643,0 +(105,401:20331833,27105169:173670,78643,0 ) ) -(109,401:20669357,27105169:501378,78643,0 -(109,401:20833211,27105169:173670,78643,0 +(105,401:20669357,27105169:501378,78643,0 +(105,401:20833211,27105169:173670,78643,0 ) ) -(109,401:21170735,27105169:501378,78643,0 -(109,401:21334589,27105169:173670,78643,0 +(105,401:21170735,27105169:501378,78643,0 +(105,401:21334589,27105169:173670,78643,0 ) ) -(109,401:21672113,27105169:501378,78643,0 -(109,401:21835967,27105169:173670,78643,0 +(105,401:21672113,27105169:501378,78643,0 +(105,401:21835967,27105169:173670,78643,0 ) ) -(109,401:22173491,27105169:501378,78643,0 -(109,401:22337345,27105169:173670,78643,0 +(105,401:22173491,27105169:501378,78643,0 +(105,401:22337345,27105169:173670,78643,0 ) ) -(109,401:22674869,27105169:501378,78643,0 -(109,401:22838723,27105169:173670,78643,0 +(105,401:22674869,27105169:501378,78643,0 +(105,401:22838723,27105169:173670,78643,0 ) ) -(109,401:23176247,27105169:501378,78643,0 -(109,401:23340101,27105169:173670,78643,0 +(105,401:23176247,27105169:501378,78643,0 +(105,401:23340101,27105169:173670,78643,0 ) ) -(109,401:23677625,27105169:501378,78643,0 -(109,401:23841479,27105169:173670,78643,0 +(105,401:23677625,27105169:501378,78643,0 +(105,401:23841479,27105169:173670,78643,0 ) ) -(109,401:24179003,27105169:501378,78643,0 -(109,401:24342857,27105169:173670,78643,0 +(105,401:24179003,27105169:501378,78643,0 +(105,401:24342857,27105169:173670,78643,0 ) ) -(109,401:24680381,27105169:501378,78643,0 -(109,401:24844235,27105169:173670,78643,0 +(105,401:24680381,27105169:501378,78643,0 +(105,401:24844235,27105169:173670,78643,0 ) ) -(109,401:25181759,27105169:501378,78643,0 -(109,401:25345613,27105169:173670,78643,0 +(105,401:25181759,27105169:501378,78643,0 +(105,401:25345613,27105169:173670,78643,0 ) ) -(109,401:25683137,27105169:501378,78643,0 -(109,401:25846991,27105169:173670,78643,0 +(105,401:25683137,27105169:501378,78643,0 +(105,401:25846991,27105169:173670,78643,0 ) ) -(109,401:26184515,27105169:501378,78643,0 -(109,401:26348369,27105169:173670,78643,0 +(105,401:26184515,27105169:501378,78643,0 +(105,401:26348369,27105169:173670,78643,0 ) ) -(109,401:26685893,27105169:501378,78643,0 -(109,401:26849747,27105169:173670,78643,0 +(105,401:26685893,27105169:501378,78643,0 +(105,401:26849747,27105169:173670,78643,0 ) ) -(109,401:27187271,27105169:501378,78643,0 -(109,401:27351125,27105169:173670,78643,0 +(105,401:27187271,27105169:501378,78643,0 +(105,401:27351125,27105169:173670,78643,0 ) ) -(109,401:27688649,27105169:501378,78643,0 -(109,401:27852503,27105169:173670,78643,0 +(105,401:27688649,27105169:501378,78643,0 +(105,401:27852503,27105169:173670,78643,0 ) ) -(109,401:28190027,27105169:501378,78643,0 -(109,401:28353881,27105169:173670,78643,0 +(105,401:28190027,27105169:501378,78643,0 +(105,401:28353881,27105169:173670,78643,0 ) ) -(109,401:28691405,27105169:501378,78643,0 -(109,401:28855259,27105169:173670,78643,0 +(105,401:28691405,27105169:501378,78643,0 +(105,401:28855259,27105169:173670,78643,0 ) ) -(109,401:29192783,27105169:501378,78643,0 -(109,401:29356637,27105169:173670,78643,0 +(105,401:29192783,27105169:501378,78643,0 +(105,401:29356637,27105169:173670,78643,0 ) ) -(109,401:29694161,27105169:501378,78643,0 -(109,401:29858015,27105169:173670,78643,0 +(105,401:29694161,27105169:501378,78643,0 +(105,401:29858015,27105169:173670,78643,0 ) ) -(109,401:30195539,27105169:501378,78643,0 -(109,401:30359393,27105169:173670,78643,0 +(105,401:30195539,27105169:501378,78643,0 +(105,401:30359393,27105169:173670,78643,0 ) ) -(109,401:30696917,27105169:501378,78643,0 -(109,401:30860771,27105169:173670,78643,0 +(105,401:30696917,27105169:501378,78643,0 +(105,401:30860771,27105169:173670,78643,0 ) ) -(109,401:31403378,27105169:1179650,485622,11795 -k109,401:31403378,27105169:0 -k109,401:31536198,27105169:132820 +(105,401:31239538,27105169:1343490,485622,11795 +k105,401:31239538,27105169:0 +k105,401:31387651,27105169:148113 ) -g109,401:30911858,27105169 -g109,401:32583028,27105169 +g105,401:30911858,27105169 +g105,401:32583028,27105169 ) -(109,403:6630773,27946657:25952256,505283,11795 -g109,403:11218293,27946657 -h109,403:11218293,27946657:2490370,0,0 -h109,403:13708663,27946657:0,0,0 -g109,403:9121143,27946657 -(109,403:9121143,27946657:2097150,485622,11795 -k109,403:11218293,27946657:554432 +(105,403:6630773,27946657:25952256,505283,11795 +g105,403:11218293,27946657 +h105,403:11218293,27946657:2490370,0,0 +h105,403:13708663,27946657:0,0,0 +g105,403:9121143,27946657 +(105,403:9121143,27946657:2097150,485622,11795 +k105,403:11218293,27946657:554432 ) -g109,403:12850139,27946657 -g109,403:13494357,27946657 -g109,403:14885031,27946657 -g109,403:16640741,27946657 -(109,403:16658333,27946657:501378,78643,0 -$109,403:16658333,27946657 -(109,403:16822187,27946657:173670,78643,0 +g105,403:12850139,27946657 +g105,403:13494357,27946657 +g105,403:14885031,27946657 +g105,403:16640741,27946657 +(105,403:16658333,27946657:501378,78643,0 +$105,403:16658333,27946657 +(105,403:16822187,27946657:173670,78643,0 ) -$109,403:17159711,27946657 +$105,403:17159711,27946657 ) -(109,403:17159711,27946657:501378,78643,0 -(109,403:17323565,27946657:173670,78643,0 +(105,403:17159711,27946657:501378,78643,0 +(105,403:17323565,27946657:173670,78643,0 ) ) -(109,403:17661089,27946657:501378,78643,0 -(109,403:17824943,27946657:173670,78643,0 +(105,403:17661089,27946657:501378,78643,0 +(105,403:17824943,27946657:173670,78643,0 ) ) -(109,403:18162467,27946657:501378,78643,0 -(109,403:18326321,27946657:173670,78643,0 +(105,403:18162467,27946657:501378,78643,0 +(105,403:18326321,27946657:173670,78643,0 ) ) -(109,403:18663845,27946657:501378,78643,0 -(109,403:18827699,27946657:173670,78643,0 +(105,403:18663845,27946657:501378,78643,0 +(105,403:18827699,27946657:173670,78643,0 ) ) -(109,403:19165223,27946657:501378,78643,0 -(109,403:19329077,27946657:173670,78643,0 +(105,403:19165223,27946657:501378,78643,0 +(105,403:19329077,27946657:173670,78643,0 ) ) -(109,403:19666601,27946657:501378,78643,0 -(109,403:19830455,27946657:173670,78643,0 +(105,403:19666601,27946657:501378,78643,0 +(105,403:19830455,27946657:173670,78643,0 ) ) -(109,403:20167979,27946657:501378,78643,0 -(109,403:20331833,27946657:173670,78643,0 +(105,403:20167979,27946657:501378,78643,0 +(105,403:20331833,27946657:173670,78643,0 ) ) -(109,403:20669357,27946657:501378,78643,0 -(109,403:20833211,27946657:173670,78643,0 +(105,403:20669357,27946657:501378,78643,0 +(105,403:20833211,27946657:173670,78643,0 ) ) -(109,403:21170735,27946657:501378,78643,0 -(109,403:21334589,27946657:173670,78643,0 +(105,403:21170735,27946657:501378,78643,0 +(105,403:21334589,27946657:173670,78643,0 ) ) -(109,403:21672113,27946657:501378,78643,0 -(109,403:21835967,27946657:173670,78643,0 +(105,403:21672113,27946657:501378,78643,0 +(105,403:21835967,27946657:173670,78643,0 ) ) -(109,403:22173491,27946657:501378,78643,0 -(109,403:22337345,27946657:173670,78643,0 +(105,403:22173491,27946657:501378,78643,0 +(105,403:22337345,27946657:173670,78643,0 ) ) -(109,403:22674869,27946657:501378,78643,0 -(109,403:22838723,27946657:173670,78643,0 +(105,403:22674869,27946657:501378,78643,0 +(105,403:22838723,27946657:173670,78643,0 ) ) -(109,403:23176247,27946657:501378,78643,0 -(109,403:23340101,27946657:173670,78643,0 +(105,403:23176247,27946657:501378,78643,0 +(105,403:23340101,27946657:173670,78643,0 ) ) -(109,403:23677625,27946657:501378,78643,0 -(109,403:23841479,27946657:173670,78643,0 +(105,403:23677625,27946657:501378,78643,0 +(105,403:23841479,27946657:173670,78643,0 ) ) -(109,403:24179003,27946657:501378,78643,0 -(109,403:24342857,27946657:173670,78643,0 +(105,403:24179003,27946657:501378,78643,0 +(105,403:24342857,27946657:173670,78643,0 ) ) -(109,403:24680381,27946657:501378,78643,0 -(109,403:24844235,27946657:173670,78643,0 +(105,403:24680381,27946657:501378,78643,0 +(105,403:24844235,27946657:173670,78643,0 ) ) -(109,403:25181759,27946657:501378,78643,0 -(109,403:25345613,27946657:173670,78643,0 +(105,403:25181759,27946657:501378,78643,0 +(105,403:25345613,27946657:173670,78643,0 ) ) -(109,403:25683137,27946657:501378,78643,0 -(109,403:25846991,27946657:173670,78643,0 +(105,403:25683137,27946657:501378,78643,0 +(105,403:25846991,27946657:173670,78643,0 ) ) -(109,403:26184515,27946657:501378,78643,0 -(109,403:26348369,27946657:173670,78643,0 +(105,403:26184515,27946657:501378,78643,0 +(105,403:26348369,27946657:173670,78643,0 ) ) -(109,403:26685893,27946657:501378,78643,0 -(109,403:26849747,27946657:173670,78643,0 +(105,403:26685893,27946657:501378,78643,0 +(105,403:26849747,27946657:173670,78643,0 ) ) -(109,403:27187271,27946657:501378,78643,0 -(109,403:27351125,27946657:173670,78643,0 +(105,403:27187271,27946657:501378,78643,0 +(105,403:27351125,27946657:173670,78643,0 ) ) -(109,403:27688649,27946657:501378,78643,0 -(109,403:27852503,27946657:173670,78643,0 +(105,403:27688649,27946657:501378,78643,0 +(105,403:27852503,27946657:173670,78643,0 ) ) -(109,403:28190027,27946657:501378,78643,0 -(109,403:28353881,27946657:173670,78643,0 +(105,403:28190027,27946657:501378,78643,0 +(105,403:28353881,27946657:173670,78643,0 ) ) -(109,403:28691405,27946657:501378,78643,0 -(109,403:28855259,27946657:173670,78643,0 +(105,403:28691405,27946657:501378,78643,0 +(105,403:28855259,27946657:173670,78643,0 ) ) -(109,403:29192783,27946657:501378,78643,0 -(109,403:29356637,27946657:173670,78643,0 +(105,403:29192783,27946657:501378,78643,0 +(105,403:29356637,27946657:173670,78643,0 ) ) -(109,403:29694161,27946657:501378,78643,0 -(109,403:29858015,27946657:173670,78643,0 +(105,403:29694161,27946657:501378,78643,0 +(105,403:29858015,27946657:173670,78643,0 ) ) -(109,403:30195539,27946657:501378,78643,0 -(109,403:30359393,27946657:173670,78643,0 +(105,403:30195539,27946657:501378,78643,0 +(105,403:30359393,27946657:173670,78643,0 ) ) -(109,403:30696917,27946657:501378,78643,0 -(109,403:30860771,27946657:173670,78643,0 +(105,403:30696917,27946657:501378,78643,0 +(105,403:30860771,27946657:173670,78643,0 ) ) -(109,403:31403379,27946657:1179650,485622,11795 -k109,403:31403379,27946657:0 -k109,403:31536199,27946657:132820 +(105,403:31239539,27946657:1343490,485622,11795 +k105,403:31239539,27946657:0 +k105,403:31387652,27946657:148113 ) -g109,403:30911859,27946657 -g109,403:32583029,27946657 +g105,403:30911859,27946657 +g105,403:32583029,27946657 ) -(109,405:6630773,28788145:25952256,505283,11795 -g109,405:11218293,28788145 -h109,405:11218293,28788145:2490370,0,0 -h109,405:13708663,28788145:0,0,0 -g109,405:9121143,28788145 -(109,405:9121143,28788145:2097150,485622,11795 -k109,405:11218293,28788145:554432 +(105,405:6630773,28788145:25952256,505283,11795 +g105,405:11218293,28788145 +h105,405:11218293,28788145:2490370,0,0 +h105,405:13708663,28788145:0,0,0 +g105,405:9121143,28788145 +(105,405:9121143,28788145:2097150,485622,11795 +k105,405:11218293,28788145:554432 ) -g109,405:12918952,28788145 -(109,405:13148687,28788145:501378,78643,0 -$109,405:13148687,28788145 -(109,405:13312541,28788145:173670,78643,0 +g105,405:12918952,28788145 +(105,405:13148687,28788145:501378,78643,0 +$105,405:13148687,28788145 +(105,405:13312541,28788145:173670,78643,0 ) -$109,405:13650065,28788145 +$105,405:13650065,28788145 ) -(109,405:13650065,28788145:501378,78643,0 -(109,405:13813919,28788145:173670,78643,0 +(105,405:13650065,28788145:501378,78643,0 +(105,405:13813919,28788145:173670,78643,0 ) ) -(109,405:14151443,28788145:501378,78643,0 -(109,405:14315297,28788145:173670,78643,0 +(105,405:14151443,28788145:501378,78643,0 +(105,405:14315297,28788145:173670,78643,0 ) ) -(109,405:14652821,28788145:501378,78643,0 -(109,405:14816675,28788145:173670,78643,0 +(105,405:14652821,28788145:501378,78643,0 +(105,405:14816675,28788145:173670,78643,0 ) ) -(109,405:15154199,28788145:501378,78643,0 -(109,405:15318053,28788145:173670,78643,0 +(105,405:15154199,28788145:501378,78643,0 +(105,405:15318053,28788145:173670,78643,0 ) ) -(109,405:15655577,28788145:501378,78643,0 -(109,405:15819431,28788145:173670,78643,0 +(105,405:15655577,28788145:501378,78643,0 +(105,405:15819431,28788145:173670,78643,0 ) ) -(109,405:16156955,28788145:501378,78643,0 -(109,405:16320809,28788145:173670,78643,0 +(105,405:16156955,28788145:501378,78643,0 +(105,405:16320809,28788145:173670,78643,0 ) ) -(109,405:16658333,28788145:501378,78643,0 -(109,405:16822187,28788145:173670,78643,0 +(105,405:16658333,28788145:501378,78643,0 +(105,405:16822187,28788145:173670,78643,0 ) ) -(109,405:17159711,28788145:501378,78643,0 -(109,405:17323565,28788145:173670,78643,0 +(105,405:17159711,28788145:501378,78643,0 +(105,405:17323565,28788145:173670,78643,0 ) ) -(109,405:17661089,28788145:501378,78643,0 -(109,405:17824943,28788145:173670,78643,0 +(105,405:17661089,28788145:501378,78643,0 +(105,405:17824943,28788145:173670,78643,0 ) ) -(109,405:18162467,28788145:501378,78643,0 -(109,405:18326321,28788145:173670,78643,0 +(105,405:18162467,28788145:501378,78643,0 +(105,405:18326321,28788145:173670,78643,0 ) ) -(109,405:18663845,28788145:501378,78643,0 -(109,405:18827699,28788145:173670,78643,0 +(105,405:18663845,28788145:501378,78643,0 +(105,405:18827699,28788145:173670,78643,0 ) ) -(109,405:19165223,28788145:501378,78643,0 -(109,405:19329077,28788145:173670,78643,0 +(105,405:19165223,28788145:501378,78643,0 +(105,405:19329077,28788145:173670,78643,0 ) ) -(109,405:19666601,28788145:501378,78643,0 -(109,405:19830455,28788145:173670,78643,0 +(105,405:19666601,28788145:501378,78643,0 +(105,405:19830455,28788145:173670,78643,0 ) ) -(109,405:20167979,28788145:501378,78643,0 -(109,405:20331833,28788145:173670,78643,0 +(105,405:20167979,28788145:501378,78643,0 +(105,405:20331833,28788145:173670,78643,0 ) ) -(109,405:20669357,28788145:501378,78643,0 -(109,405:20833211,28788145:173670,78643,0 +(105,405:20669357,28788145:501378,78643,0 +(105,405:20833211,28788145:173670,78643,0 ) ) -(109,405:21170735,28788145:501378,78643,0 -(109,405:21334589,28788145:173670,78643,0 +(105,405:21170735,28788145:501378,78643,0 +(105,405:21334589,28788145:173670,78643,0 ) ) -(109,405:21672113,28788145:501378,78643,0 -(109,405:21835967,28788145:173670,78643,0 +(105,405:21672113,28788145:501378,78643,0 +(105,405:21835967,28788145:173670,78643,0 ) ) -(109,405:22173491,28788145:501378,78643,0 -(109,405:22337345,28788145:173670,78643,0 +(105,405:22173491,28788145:501378,78643,0 +(105,405:22337345,28788145:173670,78643,0 ) ) -(109,405:22674869,28788145:501378,78643,0 -(109,405:22838723,28788145:173670,78643,0 +(105,405:22674869,28788145:501378,78643,0 +(105,405:22838723,28788145:173670,78643,0 ) ) -(109,405:23176247,28788145:501378,78643,0 -(109,405:23340101,28788145:173670,78643,0 +(105,405:23176247,28788145:501378,78643,0 +(105,405:23340101,28788145:173670,78643,0 ) ) -(109,405:23677625,28788145:501378,78643,0 -(109,405:23841479,28788145:173670,78643,0 +(105,405:23677625,28788145:501378,78643,0 +(105,405:23841479,28788145:173670,78643,0 ) ) -(109,405:24179003,28788145:501378,78643,0 -(109,405:24342857,28788145:173670,78643,0 +(105,405:24179003,28788145:501378,78643,0 +(105,405:24342857,28788145:173670,78643,0 ) ) -(109,405:24680381,28788145:501378,78643,0 -(109,405:24844235,28788145:173670,78643,0 +(105,405:24680381,28788145:501378,78643,0 +(105,405:24844235,28788145:173670,78643,0 ) ) -(109,405:25181759,28788145:501378,78643,0 -(109,405:25345613,28788145:173670,78643,0 +(105,405:25181759,28788145:501378,78643,0 +(105,405:25345613,28788145:173670,78643,0 ) ) -(109,405:25683137,28788145:501378,78643,0 -(109,405:25846991,28788145:173670,78643,0 +(105,405:25683137,28788145:501378,78643,0 +(105,405:25846991,28788145:173670,78643,0 ) ) -(109,405:26184515,28788145:501378,78643,0 -(109,405:26348369,28788145:173670,78643,0 +(105,405:26184515,28788145:501378,78643,0 +(105,405:26348369,28788145:173670,78643,0 ) ) -(109,405:26685893,28788145:501378,78643,0 -(109,405:26849747,28788145:173670,78643,0 +(105,405:26685893,28788145:501378,78643,0 +(105,405:26849747,28788145:173670,78643,0 ) ) -(109,405:27187271,28788145:501378,78643,0 -(109,405:27351125,28788145:173670,78643,0 +(105,405:27187271,28788145:501378,78643,0 +(105,405:27351125,28788145:173670,78643,0 ) ) -(109,405:27688649,28788145:501378,78643,0 -(109,405:27852503,28788145:173670,78643,0 +(105,405:27688649,28788145:501378,78643,0 +(105,405:27852503,28788145:173670,78643,0 ) ) -(109,405:28190027,28788145:501378,78643,0 -(109,405:28353881,28788145:173670,78643,0 +(105,405:28190027,28788145:501378,78643,0 +(105,405:28353881,28788145:173670,78643,0 ) ) -(109,405:28691405,28788145:501378,78643,0 -(109,405:28855259,28788145:173670,78643,0 +(105,405:28691405,28788145:501378,78643,0 +(105,405:28855259,28788145:173670,78643,0 ) ) -(109,405:29192783,28788145:501378,78643,0 -(109,405:29356637,28788145:173670,78643,0 +(105,405:29192783,28788145:501378,78643,0 +(105,405:29356637,28788145:173670,78643,0 ) ) -(109,405:29694161,28788145:501378,78643,0 -(109,405:29858015,28788145:173670,78643,0 +(105,405:29694161,28788145:501378,78643,0 +(105,405:29858015,28788145:173670,78643,0 ) ) -(109,405:30195539,28788145:501378,78643,0 -(109,405:30359393,28788145:173670,78643,0 +(105,405:30195539,28788145:501378,78643,0 +(105,405:30359393,28788145:173670,78643,0 ) ) -(109,405:30696917,28788145:501378,78643,0 -(109,405:30860771,28788145:173670,78643,0 +(105,405:30696917,28788145:501378,78643,0 +(105,405:30860771,28788145:173670,78643,0 ) ) -(109,405:31403380,28788145:1179650,485622,11795 -k109,405:31403380,28788145:0 -k109,405:31536200,28788145:132820 +(105,405:31239540,28788145:1343490,485622,11795 +k105,405:31239540,28788145:0 +k105,405:31387653,28788145:148113 ) -g109,405:30911860,28788145 -g109,405:32583030,28788145 +g105,405:30911860,28788145 +g105,405:32583030,28788145 ) -(109,407:6630773,29629633:25952256,513147,11795 -g109,407:9121143,29629633 -h109,407:9121143,29629633:983040,0,0 -h109,407:10104183,29629633:0,0,0 -g109,407:7613813,29629633 -(109,407:7613813,29629633:1507330,485622,11795 -k109,407:9121143,29629633:536742 +(105,407:6630773,29629633:25952256,513147,11795 +g105,407:9121143,29629633 +h105,407:9121143,29629633:983040,0,0 +h105,407:10104183,29629633:0,0,0 +g105,407:7613813,29629633 +(105,407:7613813,29629633:1507330,485622,11795 +k105,407:9121143,29629633:536742 ) -g109,407:10679589,29629633 -g109,407:12070263,29629633 -g109,407:14137923,29629633 -g109,407:15650494,29629633 -g109,407:15650494,29629633 -(109,407:15655577,29629633:501378,78643,0 -$109,407:15655577,29629633 -(109,407:15819431,29629633:173670,78643,0 +g105,407:10679589,29629633 +g105,407:12070263,29629633 +g105,407:14137923,29629633 +g105,407:15650494,29629633 +g105,407:15650494,29629633 +(105,407:15655577,29629633:501378,78643,0 +$105,407:15655577,29629633 +(105,407:15819431,29629633:173670,78643,0 ) -$109,407:16156955,29629633 +$105,407:16156955,29629633 ) -(109,407:16156955,29629633:501378,78643,0 -(109,407:16320809,29629633:173670,78643,0 +(105,407:16156955,29629633:501378,78643,0 +(105,407:16320809,29629633:173670,78643,0 ) ) -(109,407:16658333,29629633:501378,78643,0 -(109,407:16822187,29629633:173670,78643,0 +(105,407:16658333,29629633:501378,78643,0 +(105,407:16822187,29629633:173670,78643,0 ) ) -(109,407:17159711,29629633:501378,78643,0 -(109,407:17323565,29629633:173670,78643,0 +(105,407:17159711,29629633:501378,78643,0 +(105,407:17323565,29629633:173670,78643,0 ) ) -(109,407:17661089,29629633:501378,78643,0 -(109,407:17824943,29629633:173670,78643,0 +(105,407:17661089,29629633:501378,78643,0 +(105,407:17824943,29629633:173670,78643,0 ) ) -(109,407:18162467,29629633:501378,78643,0 -(109,407:18326321,29629633:173670,78643,0 +(105,407:18162467,29629633:501378,78643,0 +(105,407:18326321,29629633:173670,78643,0 ) ) -(109,407:18663845,29629633:501378,78643,0 -(109,407:18827699,29629633:173670,78643,0 +(105,407:18663845,29629633:501378,78643,0 +(105,407:18827699,29629633:173670,78643,0 ) ) -(109,407:19165223,29629633:501378,78643,0 -(109,407:19329077,29629633:173670,78643,0 +(105,407:19165223,29629633:501378,78643,0 +(105,407:19329077,29629633:173670,78643,0 ) ) -(109,407:19666601,29629633:501378,78643,0 -(109,407:19830455,29629633:173670,78643,0 +(105,407:19666601,29629633:501378,78643,0 +(105,407:19830455,29629633:173670,78643,0 ) ) -(109,407:20167979,29629633:501378,78643,0 -(109,407:20331833,29629633:173670,78643,0 +(105,407:20167979,29629633:501378,78643,0 +(105,407:20331833,29629633:173670,78643,0 ) ) -(109,407:20669357,29629633:501378,78643,0 -(109,407:20833211,29629633:173670,78643,0 +(105,407:20669357,29629633:501378,78643,0 +(105,407:20833211,29629633:173670,78643,0 ) ) -(109,407:21170735,29629633:501378,78643,0 -(109,407:21334589,29629633:173670,78643,0 +(105,407:21170735,29629633:501378,78643,0 +(105,407:21334589,29629633:173670,78643,0 ) ) -(109,407:21672113,29629633:501378,78643,0 -(109,407:21835967,29629633:173670,78643,0 +(105,407:21672113,29629633:501378,78643,0 +(105,407:21835967,29629633:173670,78643,0 ) ) -(109,407:22173491,29629633:501378,78643,0 -(109,407:22337345,29629633:173670,78643,0 +(105,407:22173491,29629633:501378,78643,0 +(105,407:22337345,29629633:173670,78643,0 ) ) -(109,407:22674869,29629633:501378,78643,0 -(109,407:22838723,29629633:173670,78643,0 +(105,407:22674869,29629633:501378,78643,0 +(105,407:22838723,29629633:173670,78643,0 ) ) -(109,407:23176247,29629633:501378,78643,0 -(109,407:23340101,29629633:173670,78643,0 +(105,407:23176247,29629633:501378,78643,0 +(105,407:23340101,29629633:173670,78643,0 ) ) -(109,407:23677625,29629633:501378,78643,0 -(109,407:23841479,29629633:173670,78643,0 +(105,407:23677625,29629633:501378,78643,0 +(105,407:23841479,29629633:173670,78643,0 ) ) -(109,407:24179003,29629633:501378,78643,0 -(109,407:24342857,29629633:173670,78643,0 +(105,407:24179003,29629633:501378,78643,0 +(105,407:24342857,29629633:173670,78643,0 ) ) -(109,407:24680381,29629633:501378,78643,0 -(109,407:24844235,29629633:173670,78643,0 +(105,407:24680381,29629633:501378,78643,0 +(105,407:24844235,29629633:173670,78643,0 ) ) -(109,407:25181759,29629633:501378,78643,0 -(109,407:25345613,29629633:173670,78643,0 +(105,407:25181759,29629633:501378,78643,0 +(105,407:25345613,29629633:173670,78643,0 ) ) -(109,407:25683137,29629633:501378,78643,0 -(109,407:25846991,29629633:173670,78643,0 +(105,407:25683137,29629633:501378,78643,0 +(105,407:25846991,29629633:173670,78643,0 ) ) -(109,407:26184515,29629633:501378,78643,0 -(109,407:26348369,29629633:173670,78643,0 +(105,407:26184515,29629633:501378,78643,0 +(105,407:26348369,29629633:173670,78643,0 ) ) -(109,407:26685893,29629633:501378,78643,0 -(109,407:26849747,29629633:173670,78643,0 +(105,407:26685893,29629633:501378,78643,0 +(105,407:26849747,29629633:173670,78643,0 ) ) -(109,407:27187271,29629633:501378,78643,0 -(109,407:27351125,29629633:173670,78643,0 +(105,407:27187271,29629633:501378,78643,0 +(105,407:27351125,29629633:173670,78643,0 ) ) -(109,407:27688649,29629633:501378,78643,0 -(109,407:27852503,29629633:173670,78643,0 +(105,407:27688649,29629633:501378,78643,0 +(105,407:27852503,29629633:173670,78643,0 ) ) -(109,407:28190027,29629633:501378,78643,0 -(109,407:28353881,29629633:173670,78643,0 +(105,407:28190027,29629633:501378,78643,0 +(105,407:28353881,29629633:173670,78643,0 ) ) -(109,407:28691405,29629633:501378,78643,0 -(109,407:28855259,29629633:173670,78643,0 +(105,407:28691405,29629633:501378,78643,0 +(105,407:28855259,29629633:173670,78643,0 ) ) -(109,407:29192783,29629633:501378,78643,0 -(109,407:29356637,29629633:173670,78643,0 +(105,407:29192783,29629633:501378,78643,0 +(105,407:29356637,29629633:173670,78643,0 ) ) -(109,407:29694161,29629633:501378,78643,0 -(109,407:29858015,29629633:173670,78643,0 +(105,407:29694161,29629633:501378,78643,0 +(105,407:29858015,29629633:173670,78643,0 ) ) -(109,407:30195539,29629633:501378,78643,0 -(109,407:30359393,29629633:173670,78643,0 +(105,407:30195539,29629633:501378,78643,0 +(105,407:30359393,29629633:173670,78643,0 ) ) -(109,407:30696917,29629633:501378,78643,0 -(109,407:30860771,29629633:173670,78643,0 +(105,407:30696917,29629633:501378,78643,0 +(105,407:30860771,29629633:173670,78643,0 ) ) -(109,407:31403379,29629633:1179650,485622,11795 -k109,407:31403379,29629633:0 -k109,407:31536199,29629633:132820 +(105,407:31239539,29629633:1343490,485622,11795 +k105,407:31239539,29629633:0 +k105,407:31387652,29629633:148113 ) -g109,407:30911859,29629633 -g109,407:32583029,29629633 +g105,407:30911859,29629633 +g105,407:32583029,29629633 ) -(109,409:6630773,30471121:25952256,505283,11795 -g109,409:11218293,30471121 -h109,409:11218293,30471121:2490370,0,0 -h109,409:13708663,30471121:0,0,0 -g109,409:9121143,30471121 -(109,409:9121143,30471121:2097150,485622,11795 -k109,409:11218293,30471121:554432 +(105,409:6630773,30471121:25952256,505283,11795 +g105,409:11218293,30471121 +h105,409:11218293,30471121:2490370,0,0 +h105,409:13708663,30471121:0,0,0 +g105,409:9121143,30471121 +(105,409:9121143,30471121:2097150,485622,11795 +k105,409:11218293,30471121:554432 ) -g109,409:13154227,30471121 -(109,409:13650065,30471121:501378,78643,0 -$109,409:13650065,30471121 -(109,409:13813919,30471121:173670,78643,0 +g105,409:13154227,30471121 +(105,409:13650065,30471121:501378,78643,0 +$105,409:13650065,30471121 +(105,409:13813919,30471121:173670,78643,0 ) -$109,409:14151443,30471121 +$105,409:14151443,30471121 ) -(109,409:14151443,30471121:501378,78643,0 -(109,409:14315297,30471121:173670,78643,0 +(105,409:14151443,30471121:501378,78643,0 +(105,409:14315297,30471121:173670,78643,0 ) ) -(109,409:14652821,30471121:501378,78643,0 -(109,409:14816675,30471121:173670,78643,0 +(105,409:14652821,30471121:501378,78643,0 +(105,409:14816675,30471121:173670,78643,0 ) ) -(109,409:15154199,30471121:501378,78643,0 -(109,409:15318053,30471121:173670,78643,0 +(105,409:15154199,30471121:501378,78643,0 +(105,409:15318053,30471121:173670,78643,0 ) ) -(109,409:15655577,30471121:501378,78643,0 -(109,409:15819431,30471121:173670,78643,0 +(105,409:15655577,30471121:501378,78643,0 +(105,409:15819431,30471121:173670,78643,0 ) ) -(109,409:16156955,30471121:501378,78643,0 -(109,409:16320809,30471121:173670,78643,0 +(105,409:16156955,30471121:501378,78643,0 +(105,409:16320809,30471121:173670,78643,0 ) ) -(109,409:16658333,30471121:501378,78643,0 -(109,409:16822187,30471121:173670,78643,0 +(105,409:16658333,30471121:501378,78643,0 +(105,409:16822187,30471121:173670,78643,0 ) ) -(109,409:17159711,30471121:501378,78643,0 -(109,409:17323565,30471121:173670,78643,0 +(105,409:17159711,30471121:501378,78643,0 +(105,409:17323565,30471121:173670,78643,0 ) ) -(109,409:17661089,30471121:501378,78643,0 -(109,409:17824943,30471121:173670,78643,0 +(105,409:17661089,30471121:501378,78643,0 +(105,409:17824943,30471121:173670,78643,0 ) ) -(109,409:18162467,30471121:501378,78643,0 -(109,409:18326321,30471121:173670,78643,0 +(105,409:18162467,30471121:501378,78643,0 +(105,409:18326321,30471121:173670,78643,0 ) ) -(109,409:18663845,30471121:501378,78643,0 -(109,409:18827699,30471121:173670,78643,0 +(105,409:18663845,30471121:501378,78643,0 +(105,409:18827699,30471121:173670,78643,0 ) ) -(109,409:19165223,30471121:501378,78643,0 -(109,409:19329077,30471121:173670,78643,0 +(105,409:19165223,30471121:501378,78643,0 +(105,409:19329077,30471121:173670,78643,0 ) ) -(109,409:19666601,30471121:501378,78643,0 -(109,409:19830455,30471121:173670,78643,0 +(105,409:19666601,30471121:501378,78643,0 +(105,409:19830455,30471121:173670,78643,0 ) ) -(109,409:20167979,30471121:501378,78643,0 -(109,409:20331833,30471121:173670,78643,0 +(105,409:20167979,30471121:501378,78643,0 +(105,409:20331833,30471121:173670,78643,0 ) ) -(109,409:20669357,30471121:501378,78643,0 -(109,409:20833211,30471121:173670,78643,0 +(105,409:20669357,30471121:501378,78643,0 +(105,409:20833211,30471121:173670,78643,0 ) ) -(109,409:21170735,30471121:501378,78643,0 -(109,409:21334589,30471121:173670,78643,0 +(105,409:21170735,30471121:501378,78643,0 +(105,409:21334589,30471121:173670,78643,0 ) ) -(109,409:21672113,30471121:501378,78643,0 -(109,409:21835967,30471121:173670,78643,0 +(105,409:21672113,30471121:501378,78643,0 +(105,409:21835967,30471121:173670,78643,0 ) ) -(109,409:22173491,30471121:501378,78643,0 -(109,409:22337345,30471121:173670,78643,0 +(105,409:22173491,30471121:501378,78643,0 +(105,409:22337345,30471121:173670,78643,0 ) ) -(109,409:22674869,30471121:501378,78643,0 -(109,409:22838723,30471121:173670,78643,0 +(105,409:22674869,30471121:501378,78643,0 +(105,409:22838723,30471121:173670,78643,0 ) ) -(109,409:23176247,30471121:501378,78643,0 -(109,409:23340101,30471121:173670,78643,0 +(105,409:23176247,30471121:501378,78643,0 +(105,409:23340101,30471121:173670,78643,0 ) ) -(109,409:23677625,30471121:501378,78643,0 -(109,409:23841479,30471121:173670,78643,0 +(105,409:23677625,30471121:501378,78643,0 +(105,409:23841479,30471121:173670,78643,0 ) ) -(109,409:24179003,30471121:501378,78643,0 -(109,409:24342857,30471121:173670,78643,0 +(105,409:24179003,30471121:501378,78643,0 +(105,409:24342857,30471121:173670,78643,0 ) ) -(109,409:24680381,30471121:501378,78643,0 -(109,409:24844235,30471121:173670,78643,0 +(105,409:24680381,30471121:501378,78643,0 +(105,409:24844235,30471121:173670,78643,0 ) ) -(109,409:25181759,30471121:501378,78643,0 -(109,409:25345613,30471121:173670,78643,0 +(105,409:25181759,30471121:501378,78643,0 +(105,409:25345613,30471121:173670,78643,0 ) ) -(109,409:25683137,30471121:501378,78643,0 -(109,409:25846991,30471121:173670,78643,0 +(105,409:25683137,30471121:501378,78643,0 +(105,409:25846991,30471121:173670,78643,0 ) ) -(109,409:26184515,30471121:501378,78643,0 -(109,409:26348369,30471121:173670,78643,0 +(105,409:26184515,30471121:501378,78643,0 +(105,409:26348369,30471121:173670,78643,0 ) ) -(109,409:26685893,30471121:501378,78643,0 -(109,409:26849747,30471121:173670,78643,0 +(105,409:26685893,30471121:501378,78643,0 +(105,409:26849747,30471121:173670,78643,0 ) ) -(109,409:27187271,30471121:501378,78643,0 -(109,409:27351125,30471121:173670,78643,0 +(105,409:27187271,30471121:501378,78643,0 +(105,409:27351125,30471121:173670,78643,0 ) ) -(109,409:27688649,30471121:501378,78643,0 -(109,409:27852503,30471121:173670,78643,0 +(105,409:27688649,30471121:501378,78643,0 +(105,409:27852503,30471121:173670,78643,0 ) ) -(109,409:28190027,30471121:501378,78643,0 -(109,409:28353881,30471121:173670,78643,0 +(105,409:28190027,30471121:501378,78643,0 +(105,409:28353881,30471121:173670,78643,0 ) ) -(109,409:28691405,30471121:501378,78643,0 -(109,409:28855259,30471121:173670,78643,0 +(105,409:28691405,30471121:501378,78643,0 +(105,409:28855259,30471121:173670,78643,0 ) ) -(109,409:29192783,30471121:501378,78643,0 -(109,409:29356637,30471121:173670,78643,0 +(105,409:29192783,30471121:501378,78643,0 +(105,409:29356637,30471121:173670,78643,0 ) ) -(109,409:29694161,30471121:501378,78643,0 -(109,409:29858015,30471121:173670,78643,0 +(105,409:29694161,30471121:501378,78643,0 +(105,409:29858015,30471121:173670,78643,0 ) ) -(109,409:30195539,30471121:501378,78643,0 -(109,409:30359393,30471121:173670,78643,0 +(105,409:30195539,30471121:501378,78643,0 +(105,409:30359393,30471121:173670,78643,0 ) ) -(109,409:30696917,30471121:501378,78643,0 -(109,409:30860771,30471121:173670,78643,0 +(105,409:30696917,30471121:501378,78643,0 +(105,409:30860771,30471121:173670,78643,0 ) ) -(109,409:31403379,30471121:1179650,485622,11795 -k109,409:31403379,30471121:0 -k109,409:31536199,30471121:132820 +(105,409:31239539,30471121:1343490,485622,11795 +k105,409:31239539,30471121:0 +k105,409:31387652,30471121:148113 ) -g109,409:30911859,30471121 -g109,409:32583029,30471121 +g105,409:30911859,30471121 +g105,409:32583029,30471121 ) -(109,411:6630773,31312609:25952256,513147,11795 -g109,411:9121143,31312609 -h109,411:9121143,31312609:983040,0,0 -h109,411:10104183,31312609:0,0,0 -g109,411:7613813,31312609 -(109,411:7613813,31312609:1507330,485622,11795 -k109,411:9121143,31312609:536742 +(105,411:6630773,31312609:25952256,513147,11795 +g105,411:9121143,31312609 +h105,411:9121143,31312609:983040,0,0 +h105,411:10104183,31312609:0,0,0 +g105,411:7613813,31312609 +(105,411:7613813,31312609:1507330,485622,11795 +k105,411:9121143,31312609:536742 ) -g109,411:10606188,31312609 -g109,411:12118759,31312609 -g109,411:12118759,31312609 -(109,411:12145931,31312609:501378,78643,0 -$109,411:12145931,31312609 -(109,411:12309785,31312609:173670,78643,0 +g105,411:10606188,31312609 +g105,411:12118759,31312609 +g105,411:12118759,31312609 +(105,411:12145931,31312609:501378,78643,0 +$105,411:12145931,31312609 +(105,411:12309785,31312609:173670,78643,0 ) -$109,411:12647309,31312609 +$105,411:12647309,31312609 ) -(109,411:12647309,31312609:501378,78643,0 -(109,411:12811163,31312609:173670,78643,0 +(105,411:12647309,31312609:501378,78643,0 +(105,411:12811163,31312609:173670,78643,0 ) ) -(109,411:13148687,31312609:501378,78643,0 -(109,411:13312541,31312609:173670,78643,0 +(105,411:13148687,31312609:501378,78643,0 +(105,411:13312541,31312609:173670,78643,0 ) ) -(109,411:13650065,31312609:501378,78643,0 -(109,411:13813919,31312609:173670,78643,0 +(105,411:13650065,31312609:501378,78643,0 +(105,411:13813919,31312609:173670,78643,0 ) ) -(109,411:14151443,31312609:501378,78643,0 -(109,411:14315297,31312609:173670,78643,0 +(105,411:14151443,31312609:501378,78643,0 +(105,411:14315297,31312609:173670,78643,0 ) ) -(109,411:14652821,31312609:501378,78643,0 -(109,411:14816675,31312609:173670,78643,0 +(105,411:14652821,31312609:501378,78643,0 +(105,411:14816675,31312609:173670,78643,0 ) ) -(109,411:15154199,31312609:501378,78643,0 -(109,411:15318053,31312609:173670,78643,0 +(105,411:15154199,31312609:501378,78643,0 +(105,411:15318053,31312609:173670,78643,0 ) ) -(109,411:15655577,31312609:501378,78643,0 -(109,411:15819431,31312609:173670,78643,0 +(105,411:15655577,31312609:501378,78643,0 +(105,411:15819431,31312609:173670,78643,0 ) ) -(109,411:16156955,31312609:501378,78643,0 -(109,411:16320809,31312609:173670,78643,0 +(105,411:16156955,31312609:501378,78643,0 +(105,411:16320809,31312609:173670,78643,0 ) ) -(109,411:16658333,31312609:501378,78643,0 -(109,411:16822187,31312609:173670,78643,0 +(105,411:16658333,31312609:501378,78643,0 +(105,411:16822187,31312609:173670,78643,0 ) ) -(109,411:17159711,31312609:501378,78643,0 -(109,411:17323565,31312609:173670,78643,0 +(105,411:17159711,31312609:501378,78643,0 +(105,411:17323565,31312609:173670,78643,0 ) ) -(109,411:17661089,31312609:501378,78643,0 -(109,411:17824943,31312609:173670,78643,0 +(105,411:17661089,31312609:501378,78643,0 +(105,411:17824943,31312609:173670,78643,0 ) ) -(109,411:18162467,31312609:501378,78643,0 -(109,411:18326321,31312609:173670,78643,0 +(105,411:18162467,31312609:501378,78643,0 +(105,411:18326321,31312609:173670,78643,0 ) ) -(109,411:18663845,31312609:501378,78643,0 -(109,411:18827699,31312609:173670,78643,0 +(105,411:18663845,31312609:501378,78643,0 +(105,411:18827699,31312609:173670,78643,0 ) ) -(109,411:19165223,31312609:501378,78643,0 -(109,411:19329077,31312609:173670,78643,0 +(105,411:19165223,31312609:501378,78643,0 +(105,411:19329077,31312609:173670,78643,0 ) ) -(109,411:19666601,31312609:501378,78643,0 -(109,411:19830455,31312609:173670,78643,0 +(105,411:19666601,31312609:501378,78643,0 +(105,411:19830455,31312609:173670,78643,0 ) ) -(109,411:20167979,31312609:501378,78643,0 -(109,411:20331833,31312609:173670,78643,0 +(105,411:20167979,31312609:501378,78643,0 +(105,411:20331833,31312609:173670,78643,0 ) ) -(109,411:20669357,31312609:501378,78643,0 -(109,411:20833211,31312609:173670,78643,0 +(105,411:20669357,31312609:501378,78643,0 +(105,411:20833211,31312609:173670,78643,0 ) ) -(109,411:21170735,31312609:501378,78643,0 -(109,411:21334589,31312609:173670,78643,0 +(105,411:21170735,31312609:501378,78643,0 +(105,411:21334589,31312609:173670,78643,0 ) ) -(109,411:21672113,31312609:501378,78643,0 -(109,411:21835967,31312609:173670,78643,0 +(105,411:21672113,31312609:501378,78643,0 +(105,411:21835967,31312609:173670,78643,0 ) ) -(109,411:22173491,31312609:501378,78643,0 -(109,411:22337345,31312609:173670,78643,0 +(105,411:22173491,31312609:501378,78643,0 +(105,411:22337345,31312609:173670,78643,0 ) ) -(109,411:22674869,31312609:501378,78643,0 -(109,411:22838723,31312609:173670,78643,0 +(105,411:22674869,31312609:501378,78643,0 +(105,411:22838723,31312609:173670,78643,0 ) ) -(109,411:23176247,31312609:501378,78643,0 -(109,411:23340101,31312609:173670,78643,0 +(105,411:23176247,31312609:501378,78643,0 +(105,411:23340101,31312609:173670,78643,0 ) ) -(109,411:23677625,31312609:501378,78643,0 -(109,411:23841479,31312609:173670,78643,0 +(105,411:23677625,31312609:501378,78643,0 +(105,411:23841479,31312609:173670,78643,0 ) ) -(109,411:24179003,31312609:501378,78643,0 -(109,411:24342857,31312609:173670,78643,0 +(105,411:24179003,31312609:501378,78643,0 +(105,411:24342857,31312609:173670,78643,0 ) ) -(109,411:24680381,31312609:501378,78643,0 -(109,411:24844235,31312609:173670,78643,0 +(105,411:24680381,31312609:501378,78643,0 +(105,411:24844235,31312609:173670,78643,0 ) ) -(109,411:25181759,31312609:501378,78643,0 -(109,411:25345613,31312609:173670,78643,0 +(105,411:25181759,31312609:501378,78643,0 +(105,411:25345613,31312609:173670,78643,0 ) ) -(109,411:25683137,31312609:501378,78643,0 -(109,411:25846991,31312609:173670,78643,0 +(105,411:25683137,31312609:501378,78643,0 +(105,411:25846991,31312609:173670,78643,0 ) ) -(109,411:26184515,31312609:501378,78643,0 -(109,411:26348369,31312609:173670,78643,0 +(105,411:26184515,31312609:501378,78643,0 +(105,411:26348369,31312609:173670,78643,0 ) ) -(109,411:26685893,31312609:501378,78643,0 -(109,411:26849747,31312609:173670,78643,0 +(105,411:26685893,31312609:501378,78643,0 +(105,411:26849747,31312609:173670,78643,0 ) ) -(109,411:27187271,31312609:501378,78643,0 -(109,411:27351125,31312609:173670,78643,0 +(105,411:27187271,31312609:501378,78643,0 +(105,411:27351125,31312609:173670,78643,0 ) ) -(109,411:27688649,31312609:501378,78643,0 -(109,411:27852503,31312609:173670,78643,0 +(105,411:27688649,31312609:501378,78643,0 +(105,411:27852503,31312609:173670,78643,0 ) ) -(109,411:28190027,31312609:501378,78643,0 -(109,411:28353881,31312609:173670,78643,0 +(105,411:28190027,31312609:501378,78643,0 +(105,411:28353881,31312609:173670,78643,0 ) ) -(109,411:28691405,31312609:501378,78643,0 -(109,411:28855259,31312609:173670,78643,0 +(105,411:28691405,31312609:501378,78643,0 +(105,411:28855259,31312609:173670,78643,0 ) ) -(109,411:29192783,31312609:501378,78643,0 -(109,411:29356637,31312609:173670,78643,0 +(105,411:29192783,31312609:501378,78643,0 +(105,411:29356637,31312609:173670,78643,0 ) ) -(109,411:29694161,31312609:501378,78643,0 -(109,411:29858015,31312609:173670,78643,0 +(105,411:29694161,31312609:501378,78643,0 +(105,411:29858015,31312609:173670,78643,0 ) ) -(109,411:30195539,31312609:501378,78643,0 -(109,411:30359393,31312609:173670,78643,0 +(105,411:30195539,31312609:501378,78643,0 +(105,411:30359393,31312609:173670,78643,0 ) ) -(109,411:30696917,31312609:501378,78643,0 -(109,411:30860771,31312609:173670,78643,0 +(105,411:30696917,31312609:501378,78643,0 +(105,411:30860771,31312609:173670,78643,0 ) ) -(109,411:31403379,31312609:1179650,485622,11795 -k109,411:31403379,31312609:0 -k109,411:31536199,31312609:132820 +(105,411:31239539,31312609:1343490,485622,11795 +k105,411:31239539,31312609:0 +k105,411:31387652,31312609:148113 ) -g109,411:30911859,31312609 -g109,411:32583029,31312609 +g105,411:30911859,31312609 +g105,411:32583029,31312609 ) -(109,413:6630773,32154097:25952256,505283,11795 -g109,413:9121143,32154097 -h109,413:9121143,32154097:983040,0,0 -h109,413:10104183,32154097:0,0,0 -g109,413:7613813,32154097 -(109,413:7613813,32154097:1507330,485622,11795 -k109,413:9121143,32154097:536742 +(105,413:6630773,32154097:25952256,505283,11795 +g105,413:9121143,32154097 +h105,413:9121143,32154097:983040,0,0 +h105,413:10104183,32154097:0,0,0 +g105,413:7613813,32154097 +(105,413:7613813,32154097:1507330,485622,11795 +k105,413:9121143,32154097:536742 ) -g109,413:13029054,32154097 -g109,413:13029054,32154097 -(109,413:13148687,32154097:501378,78643,0 -$109,413:13148687,32154097 -(109,413:13312541,32154097:173670,78643,0 +g105,413:13029054,32154097 +g105,413:13029054,32154097 +(105,413:13148687,32154097:501378,78643,0 +$105,413:13148687,32154097 +(105,413:13312541,32154097:173670,78643,0 ) -$109,413:13650065,32154097 +$105,413:13650065,32154097 ) -(109,413:13650065,32154097:501378,78643,0 -(109,413:13813919,32154097:173670,78643,0 +(105,413:13650065,32154097:501378,78643,0 +(105,413:13813919,32154097:173670,78643,0 ) ) -(109,413:14151443,32154097:501378,78643,0 -(109,413:14315297,32154097:173670,78643,0 +(105,413:14151443,32154097:501378,78643,0 +(105,413:14315297,32154097:173670,78643,0 ) ) -(109,413:14652821,32154097:501378,78643,0 -(109,413:14816675,32154097:173670,78643,0 +(105,413:14652821,32154097:501378,78643,0 +(105,413:14816675,32154097:173670,78643,0 ) ) -(109,413:15154199,32154097:501378,78643,0 -(109,413:15318053,32154097:173670,78643,0 +(105,413:15154199,32154097:501378,78643,0 +(105,413:15318053,32154097:173670,78643,0 ) ) -(109,413:15655577,32154097:501378,78643,0 -(109,413:15819431,32154097:173670,78643,0 +(105,413:15655577,32154097:501378,78643,0 +(105,413:15819431,32154097:173670,78643,0 ) ) -(109,413:16156955,32154097:501378,78643,0 -(109,413:16320809,32154097:173670,78643,0 +(105,413:16156955,32154097:501378,78643,0 +(105,413:16320809,32154097:173670,78643,0 ) ) -(109,413:16658333,32154097:501378,78643,0 -(109,413:16822187,32154097:173670,78643,0 +(105,413:16658333,32154097:501378,78643,0 +(105,413:16822187,32154097:173670,78643,0 ) ) -(109,413:17159711,32154097:501378,78643,0 -(109,413:17323565,32154097:173670,78643,0 +(105,413:17159711,32154097:501378,78643,0 +(105,413:17323565,32154097:173670,78643,0 ) ) -(109,413:17661089,32154097:501378,78643,0 -(109,413:17824943,32154097:173670,78643,0 +(105,413:17661089,32154097:501378,78643,0 +(105,413:17824943,32154097:173670,78643,0 ) ) -(109,413:18162467,32154097:501378,78643,0 -(109,413:18326321,32154097:173670,78643,0 +(105,413:18162467,32154097:501378,78643,0 +(105,413:18326321,32154097:173670,78643,0 ) ) -(109,413:18663845,32154097:501378,78643,0 -(109,413:18827699,32154097:173670,78643,0 +(105,413:18663845,32154097:501378,78643,0 +(105,413:18827699,32154097:173670,78643,0 ) ) -(109,413:19165223,32154097:501378,78643,0 -(109,413:19329077,32154097:173670,78643,0 +(105,413:19165223,32154097:501378,78643,0 +(105,413:19329077,32154097:173670,78643,0 ) ) -(109,413:19666601,32154097:501378,78643,0 -(109,413:19830455,32154097:173670,78643,0 +(105,413:19666601,32154097:501378,78643,0 +(105,413:19830455,32154097:173670,78643,0 ) ) -(109,413:20167979,32154097:501378,78643,0 -(109,413:20331833,32154097:173670,78643,0 +(105,413:20167979,32154097:501378,78643,0 +(105,413:20331833,32154097:173670,78643,0 ) ) -(109,413:20669357,32154097:501378,78643,0 -(109,413:20833211,32154097:173670,78643,0 +(105,413:20669357,32154097:501378,78643,0 +(105,413:20833211,32154097:173670,78643,0 ) ) -(109,413:21170735,32154097:501378,78643,0 -(109,413:21334589,32154097:173670,78643,0 +(105,413:21170735,32154097:501378,78643,0 +(105,413:21334589,32154097:173670,78643,0 ) ) -(109,413:21672113,32154097:501378,78643,0 -(109,413:21835967,32154097:173670,78643,0 +(105,413:21672113,32154097:501378,78643,0 +(105,413:21835967,32154097:173670,78643,0 ) ) -(109,413:22173491,32154097:501378,78643,0 -(109,413:22337345,32154097:173670,78643,0 +(105,413:22173491,32154097:501378,78643,0 +(105,413:22337345,32154097:173670,78643,0 ) ) -(109,413:22674869,32154097:501378,78643,0 -(109,413:22838723,32154097:173670,78643,0 +(105,413:22674869,32154097:501378,78643,0 +(105,413:22838723,32154097:173670,78643,0 ) ) -(109,413:23176247,32154097:501378,78643,0 -(109,413:23340101,32154097:173670,78643,0 +(105,413:23176247,32154097:501378,78643,0 +(105,413:23340101,32154097:173670,78643,0 ) ) -(109,413:23677625,32154097:501378,78643,0 -(109,413:23841479,32154097:173670,78643,0 +(105,413:23677625,32154097:501378,78643,0 +(105,413:23841479,32154097:173670,78643,0 ) ) -(109,413:24179003,32154097:501378,78643,0 -(109,413:24342857,32154097:173670,78643,0 +(105,413:24179003,32154097:501378,78643,0 +(105,413:24342857,32154097:173670,78643,0 ) ) -(109,413:24680381,32154097:501378,78643,0 -(109,413:24844235,32154097:173670,78643,0 +(105,413:24680381,32154097:501378,78643,0 +(105,413:24844235,32154097:173670,78643,0 ) ) -(109,413:25181759,32154097:501378,78643,0 -(109,413:25345613,32154097:173670,78643,0 +(105,413:25181759,32154097:501378,78643,0 +(105,413:25345613,32154097:173670,78643,0 ) ) -(109,413:25683137,32154097:501378,78643,0 -(109,413:25846991,32154097:173670,78643,0 +(105,413:25683137,32154097:501378,78643,0 +(105,413:25846991,32154097:173670,78643,0 ) ) -(109,413:26184515,32154097:501378,78643,0 -(109,413:26348369,32154097:173670,78643,0 +(105,413:26184515,32154097:501378,78643,0 +(105,413:26348369,32154097:173670,78643,0 ) ) -(109,413:26685893,32154097:501378,78643,0 -(109,413:26849747,32154097:173670,78643,0 +(105,413:26685893,32154097:501378,78643,0 +(105,413:26849747,32154097:173670,78643,0 ) ) -(109,413:27187271,32154097:501378,78643,0 -(109,413:27351125,32154097:173670,78643,0 +(105,413:27187271,32154097:501378,78643,0 +(105,413:27351125,32154097:173670,78643,0 ) ) -(109,413:27688649,32154097:501378,78643,0 -(109,413:27852503,32154097:173670,78643,0 +(105,413:27688649,32154097:501378,78643,0 +(105,413:27852503,32154097:173670,78643,0 ) ) -(109,413:28190027,32154097:501378,78643,0 -(109,413:28353881,32154097:173670,78643,0 +(105,413:28190027,32154097:501378,78643,0 +(105,413:28353881,32154097:173670,78643,0 ) ) -(109,413:28691405,32154097:501378,78643,0 -(109,413:28855259,32154097:173670,78643,0 +(105,413:28691405,32154097:501378,78643,0 +(105,413:28855259,32154097:173670,78643,0 ) ) -(109,413:29192783,32154097:501378,78643,0 -(109,413:29356637,32154097:173670,78643,0 +(105,413:29192783,32154097:501378,78643,0 +(105,413:29356637,32154097:173670,78643,0 ) ) -(109,413:29694161,32154097:501378,78643,0 -(109,413:29858015,32154097:173670,78643,0 +(105,413:29694161,32154097:501378,78643,0 +(105,413:29858015,32154097:173670,78643,0 ) ) -(109,413:30195539,32154097:501378,78643,0 -(109,413:30359393,32154097:173670,78643,0 +(105,413:30195539,32154097:501378,78643,0 +(105,413:30359393,32154097:173670,78643,0 ) ) -(109,413:30696917,32154097:501378,78643,0 -(109,413:30860771,32154097:173670,78643,0 +(105,413:30696917,32154097:501378,78643,0 +(105,413:30860771,32154097:173670,78643,0 ) ) -(109,413:31403378,32154097:1179650,485622,11795 -k109,413:31403378,32154097:0 -k109,413:31536198,32154097:132820 +(105,413:31239538,32154097:1343490,485622,11795 +k105,413:31239538,32154097:0 +k105,413:31387651,32154097:148113 ) -g109,413:30911858,32154097 -g109,413:32583028,32154097 +g105,413:30911858,32154097 +g105,413:32583028,32154097 ) -(109,415:6630773,32995585:25952256,513147,11795 -g109,415:11218293,32995585 -h109,415:11218293,32995585:2490370,0,0 -h109,415:13708663,32995585:0,0,0 -g109,415:9121143,32995585 -(109,415:9121143,32995585:2097150,485622,11795 -k109,415:11218293,32995585:554432 +(105,415:6630773,32995585:25952256,513147,11795 +g105,415:11218293,32995585 +h105,415:11218293,32995585:2490370,0,0 +h105,415:13708663,32995585:0,0,0 +g105,415:9121143,32995585 +(105,415:9121143,32995585:2097150,485622,11795 +k105,415:11218293,32995585:554432 ) -g109,415:12686299,32995585 -g109,415:14198870,32995585 -g109,415:15084261,32995585 -g109,415:18681532,32995585 -(109,415:19165223,32995585:501378,78643,0 -$109,415:19165223,32995585 -(109,415:19329077,32995585:173670,78643,0 +g105,415:12686299,32995585 +g105,415:14198870,32995585 +g105,415:15084261,32995585 +g105,415:18681532,32995585 +(105,415:19165223,32995585:501378,78643,0 +$105,415:19165223,32995585 +(105,415:19329077,32995585:173670,78643,0 ) -$109,415:19666601,32995585 +$105,415:19666601,32995585 ) -(109,415:19666601,32995585:501378,78643,0 -(109,415:19830455,32995585:173670,78643,0 +(105,415:19666601,32995585:501378,78643,0 +(105,415:19830455,32995585:173670,78643,0 ) ) -(109,415:20167979,32995585:501378,78643,0 -(109,415:20331833,32995585:173670,78643,0 +(105,415:20167979,32995585:501378,78643,0 +(105,415:20331833,32995585:173670,78643,0 ) ) -(109,415:20669357,32995585:501378,78643,0 -(109,415:20833211,32995585:173670,78643,0 +(105,415:20669357,32995585:501378,78643,0 +(105,415:20833211,32995585:173670,78643,0 ) ) -(109,415:21170735,32995585:501378,78643,0 -(109,415:21334589,32995585:173670,78643,0 +(105,415:21170735,32995585:501378,78643,0 +(105,415:21334589,32995585:173670,78643,0 ) ) -(109,415:21672113,32995585:501378,78643,0 -(109,415:21835967,32995585:173670,78643,0 +(105,415:21672113,32995585:501378,78643,0 +(105,415:21835967,32995585:173670,78643,0 ) ) -(109,415:22173491,32995585:501378,78643,0 -(109,415:22337345,32995585:173670,78643,0 +(105,415:22173491,32995585:501378,78643,0 +(105,415:22337345,32995585:173670,78643,0 ) ) -(109,415:22674869,32995585:501378,78643,0 -(109,415:22838723,32995585:173670,78643,0 +(105,415:22674869,32995585:501378,78643,0 +(105,415:22838723,32995585:173670,78643,0 ) ) -(109,415:23176247,32995585:501378,78643,0 -(109,415:23340101,32995585:173670,78643,0 +(105,415:23176247,32995585:501378,78643,0 +(105,415:23340101,32995585:173670,78643,0 ) ) -(109,415:23677625,32995585:501378,78643,0 -(109,415:23841479,32995585:173670,78643,0 +(105,415:23677625,32995585:501378,78643,0 +(105,415:23841479,32995585:173670,78643,0 ) ) -(109,415:24179003,32995585:501378,78643,0 -(109,415:24342857,32995585:173670,78643,0 +(105,415:24179003,32995585:501378,78643,0 +(105,415:24342857,32995585:173670,78643,0 ) ) -(109,415:24680381,32995585:501378,78643,0 -(109,415:24844235,32995585:173670,78643,0 +(105,415:24680381,32995585:501378,78643,0 +(105,415:24844235,32995585:173670,78643,0 ) ) -(109,415:25181759,32995585:501378,78643,0 -(109,415:25345613,32995585:173670,78643,0 +(105,415:25181759,32995585:501378,78643,0 +(105,415:25345613,32995585:173670,78643,0 ) ) -(109,415:25683137,32995585:501378,78643,0 -(109,415:25846991,32995585:173670,78643,0 +(105,415:25683137,32995585:501378,78643,0 +(105,415:25846991,32995585:173670,78643,0 ) ) -(109,415:26184515,32995585:501378,78643,0 -(109,415:26348369,32995585:173670,78643,0 +(105,415:26184515,32995585:501378,78643,0 +(105,415:26348369,32995585:173670,78643,0 ) ) -(109,415:26685893,32995585:501378,78643,0 -(109,415:26849747,32995585:173670,78643,0 +(105,415:26685893,32995585:501378,78643,0 +(105,415:26849747,32995585:173670,78643,0 ) ) -(109,415:27187271,32995585:501378,78643,0 -(109,415:27351125,32995585:173670,78643,0 +(105,415:27187271,32995585:501378,78643,0 +(105,415:27351125,32995585:173670,78643,0 ) ) -(109,415:27688649,32995585:501378,78643,0 -(109,415:27852503,32995585:173670,78643,0 +(105,415:27688649,32995585:501378,78643,0 +(105,415:27852503,32995585:173670,78643,0 ) ) -(109,415:28190027,32995585:501378,78643,0 -(109,415:28353881,32995585:173670,78643,0 +(105,415:28190027,32995585:501378,78643,0 +(105,415:28353881,32995585:173670,78643,0 ) ) -(109,415:28691405,32995585:501378,78643,0 -(109,415:28855259,32995585:173670,78643,0 +(105,415:28691405,32995585:501378,78643,0 +(105,415:28855259,32995585:173670,78643,0 ) ) -(109,415:29192783,32995585:501378,78643,0 -(109,415:29356637,32995585:173670,78643,0 +(105,415:29192783,32995585:501378,78643,0 +(105,415:29356637,32995585:173670,78643,0 ) ) -(109,415:29694161,32995585:501378,78643,0 -(109,415:29858015,32995585:173670,78643,0 +(105,415:29694161,32995585:501378,78643,0 +(105,415:29858015,32995585:173670,78643,0 ) ) -(109,415:30195539,32995585:501378,78643,0 -(109,415:30359393,32995585:173670,78643,0 +(105,415:30195539,32995585:501378,78643,0 +(105,415:30359393,32995585:173670,78643,0 ) ) -(109,415:30696917,32995585:501378,78643,0 -(109,415:30860771,32995585:173670,78643,0 +(105,415:30696917,32995585:501378,78643,0 +(105,415:30860771,32995585:173670,78643,0 ) ) -(109,415:31403379,32995585:1179650,485622,11795 -k109,415:31403379,32995585:0 -k109,415:31536199,32995585:132820 +(105,415:31239539,32995585:1343490,485622,11795 +k105,415:31239539,32995585:0 +k105,415:31387652,32995585:148113 ) -g109,415:30911859,32995585 -g109,415:32583029,32995585 +g105,415:30911859,32995585 +g105,415:32583029,32995585 ) -(109,417:6630773,33837073:25952256,505283,11795 -g109,417:11218293,33837073 -h109,417:11218293,33837073:2490370,0,0 -h109,417:13708663,33837073:0,0,0 -g109,417:9121143,33837073 -(109,417:9121143,33837073:2097150,485622,11795 -k109,417:11218293,33837073:554432 +(105,417:6630773,33837073:25952256,505283,11795 +g105,417:11218293,33837073 +h105,417:11218293,33837073:2490370,0,0 +h105,417:13708663,33837073:0,0,0 +g105,417:9121143,33837073 +(105,417:9121143,33837073:2097150,485622,11795 +k105,417:11218293,33837073:554432 ) -g109,417:13548098,33837073 -(109,417:13650065,33837073:501378,78643,0 -$109,417:13650065,33837073 -(109,417:13813919,33837073:173670,78643,0 +g105,417:13548098,33837073 +(105,417:13650065,33837073:501378,78643,0 +$105,417:13650065,33837073 +(105,417:13813919,33837073:173670,78643,0 ) -$109,417:14151443,33837073 +$105,417:14151443,33837073 ) -(109,417:14151443,33837073:501378,78643,0 -(109,417:14315297,33837073:173670,78643,0 +(105,417:14151443,33837073:501378,78643,0 +(105,417:14315297,33837073:173670,78643,0 ) ) -(109,417:14652821,33837073:501378,78643,0 -(109,417:14816675,33837073:173670,78643,0 +(105,417:14652821,33837073:501378,78643,0 +(105,417:14816675,33837073:173670,78643,0 ) ) -(109,417:15154199,33837073:501378,78643,0 -(109,417:15318053,33837073:173670,78643,0 +(105,417:15154199,33837073:501378,78643,0 +(105,417:15318053,33837073:173670,78643,0 ) ) -(109,417:15655577,33837073:501378,78643,0 -(109,417:15819431,33837073:173670,78643,0 +(105,417:15655577,33837073:501378,78643,0 +(105,417:15819431,33837073:173670,78643,0 ) ) -(109,417:16156955,33837073:501378,78643,0 -(109,417:16320809,33837073:173670,78643,0 +(105,417:16156955,33837073:501378,78643,0 +(105,417:16320809,33837073:173670,78643,0 ) ) -(109,417:16658333,33837073:501378,78643,0 -(109,417:16822187,33837073:173670,78643,0 +(105,417:16658333,33837073:501378,78643,0 +(105,417:16822187,33837073:173670,78643,0 ) ) -(109,417:17159711,33837073:501378,78643,0 -(109,417:17323565,33837073:173670,78643,0 +(105,417:17159711,33837073:501378,78643,0 +(105,417:17323565,33837073:173670,78643,0 ) ) -(109,417:17661089,33837073:501378,78643,0 -(109,417:17824943,33837073:173670,78643,0 +(105,417:17661089,33837073:501378,78643,0 +(105,417:17824943,33837073:173670,78643,0 ) ) -(109,417:18162467,33837073:501378,78643,0 -(109,417:18326321,33837073:173670,78643,0 +(105,417:18162467,33837073:501378,78643,0 +(105,417:18326321,33837073:173670,78643,0 ) ) -(109,417:18663845,33837073:501378,78643,0 -(109,417:18827699,33837073:173670,78643,0 +(105,417:18663845,33837073:501378,78643,0 +(105,417:18827699,33837073:173670,78643,0 ) ) -(109,417:19165223,33837073:501378,78643,0 -(109,417:19329077,33837073:173670,78643,0 +(105,417:19165223,33837073:501378,78643,0 +(105,417:19329077,33837073:173670,78643,0 ) ) -(109,417:19666601,33837073:501378,78643,0 -(109,417:19830455,33837073:173670,78643,0 +(105,417:19666601,33837073:501378,78643,0 +(105,417:19830455,33837073:173670,78643,0 ) ) -(109,417:20167979,33837073:501378,78643,0 -(109,417:20331833,33837073:173670,78643,0 +(105,417:20167979,33837073:501378,78643,0 +(105,417:20331833,33837073:173670,78643,0 ) ) -(109,417:20669357,33837073:501378,78643,0 -(109,417:20833211,33837073:173670,78643,0 +(105,417:20669357,33837073:501378,78643,0 +(105,417:20833211,33837073:173670,78643,0 ) ) -(109,417:21170735,33837073:501378,78643,0 -(109,417:21334589,33837073:173670,78643,0 +(105,417:21170735,33837073:501378,78643,0 +(105,417:21334589,33837073:173670,78643,0 ) ) -(109,417:21672113,33837073:501378,78643,0 -(109,417:21835967,33837073:173670,78643,0 +(105,417:21672113,33837073:501378,78643,0 +(105,417:21835967,33837073:173670,78643,0 ) ) -(109,417:22173491,33837073:501378,78643,0 -(109,417:22337345,33837073:173670,78643,0 +(105,417:22173491,33837073:501378,78643,0 +(105,417:22337345,33837073:173670,78643,0 ) ) -(109,417:22674869,33837073:501378,78643,0 -(109,417:22838723,33837073:173670,78643,0 +(105,417:22674869,33837073:501378,78643,0 +(105,417:22838723,33837073:173670,78643,0 ) ) -(109,417:23176247,33837073:501378,78643,0 -(109,417:23340101,33837073:173670,78643,0 +(105,417:23176247,33837073:501378,78643,0 +(105,417:23340101,33837073:173670,78643,0 ) ) -(109,417:23677625,33837073:501378,78643,0 -(109,417:23841479,33837073:173670,78643,0 +(105,417:23677625,33837073:501378,78643,0 +(105,417:23841479,33837073:173670,78643,0 ) ) -(109,417:24179003,33837073:501378,78643,0 -(109,417:24342857,33837073:173670,78643,0 +(105,417:24179003,33837073:501378,78643,0 +(105,417:24342857,33837073:173670,78643,0 ) ) -(109,417:24680381,33837073:501378,78643,0 -(109,417:24844235,33837073:173670,78643,0 +(105,417:24680381,33837073:501378,78643,0 +(105,417:24844235,33837073:173670,78643,0 ) ) -(109,417:25181759,33837073:501378,78643,0 -(109,417:25345613,33837073:173670,78643,0 +(105,417:25181759,33837073:501378,78643,0 +(105,417:25345613,33837073:173670,78643,0 ) ) -(109,417:25683137,33837073:501378,78643,0 -(109,417:25846991,33837073:173670,78643,0 +(105,417:25683137,33837073:501378,78643,0 +(105,417:25846991,33837073:173670,78643,0 ) ) -(109,417:26184515,33837073:501378,78643,0 -(109,417:26348369,33837073:173670,78643,0 +(105,417:26184515,33837073:501378,78643,0 +(105,417:26348369,33837073:173670,78643,0 ) ) -(109,417:26685893,33837073:501378,78643,0 -(109,417:26849747,33837073:173670,78643,0 +(105,417:26685893,33837073:501378,78643,0 +(105,417:26849747,33837073:173670,78643,0 ) ) -(109,417:27187271,33837073:501378,78643,0 -(109,417:27351125,33837073:173670,78643,0 +(105,417:27187271,33837073:501378,78643,0 +(105,417:27351125,33837073:173670,78643,0 ) ) -(109,417:27688649,33837073:501378,78643,0 -(109,417:27852503,33837073:173670,78643,0 +(105,417:27688649,33837073:501378,78643,0 +(105,417:27852503,33837073:173670,78643,0 ) ) -(109,417:28190027,33837073:501378,78643,0 -(109,417:28353881,33837073:173670,78643,0 +(105,417:28190027,33837073:501378,78643,0 +(105,417:28353881,33837073:173670,78643,0 ) ) -(109,417:28691405,33837073:501378,78643,0 -(109,417:28855259,33837073:173670,78643,0 +(105,417:28691405,33837073:501378,78643,0 +(105,417:28855259,33837073:173670,78643,0 ) ) -(109,417:29192783,33837073:501378,78643,0 -(109,417:29356637,33837073:173670,78643,0 +(105,417:29192783,33837073:501378,78643,0 +(105,417:29356637,33837073:173670,78643,0 ) ) -(109,417:29694161,33837073:501378,78643,0 -(109,417:29858015,33837073:173670,78643,0 +(105,417:29694161,33837073:501378,78643,0 +(105,417:29858015,33837073:173670,78643,0 ) ) -(109,417:30195539,33837073:501378,78643,0 -(109,417:30359393,33837073:173670,78643,0 +(105,417:30195539,33837073:501378,78643,0 +(105,417:30359393,33837073:173670,78643,0 ) ) -(109,417:30696917,33837073:501378,78643,0 -(109,417:30860771,33837073:173670,78643,0 +(105,417:30696917,33837073:501378,78643,0 +(105,417:30860771,33837073:173670,78643,0 ) ) -(109,417:31403378,33837073:1179650,485622,11795 -k109,417:31403378,33837073:0 -k109,417:31536198,33837073:132820 +(105,417:31239538,33837073:1343490,485622,11795 +k105,417:31239538,33837073:0 +k105,417:31387651,33837073:148113 ) -g109,417:30911858,33837073 -g109,417:32583028,33837073 +g105,417:30911858,33837073 +g105,417:32583028,33837073 ) -(109,419:6630773,34678561:25952256,505283,11795 -g109,419:11218293,34678561 -h109,419:11218293,34678561:2490370,0,0 -h109,419:13708663,34678561:0,0,0 -g109,419:9121143,34678561 -(109,419:9121143,34678561:2097150,485622,11795 -k109,419:11218293,34678561:554432 +(105,419:6630773,34678561:25952256,505283,11795 +g105,419:11218293,34678561 +h105,419:11218293,34678561:2490370,0,0 +h105,419:13708663,34678561:0,0,0 +g105,419:9121143,34678561 +(105,419:9121143,34678561:2097150,485622,11795 +k105,419:11218293,34678561:554432 ) -g109,419:12831134,34678561 -(109,419:13148687,34678561:501378,78643,0 -$109,419:13148687,34678561 -(109,419:13312541,34678561:173670,78643,0 +g105,419:12831134,34678561 +(105,419:13148687,34678561:501378,78643,0 +$105,419:13148687,34678561 +(105,419:13312541,34678561:173670,78643,0 ) -$109,419:13650065,34678561 +$105,419:13650065,34678561 ) -(109,419:13650065,34678561:501378,78643,0 -(109,419:13813919,34678561:173670,78643,0 +(105,419:13650065,34678561:501378,78643,0 +(105,419:13813919,34678561:173670,78643,0 ) ) -(109,419:14151443,34678561:501378,78643,0 -(109,419:14315297,34678561:173670,78643,0 +(105,419:14151443,34678561:501378,78643,0 +(105,419:14315297,34678561:173670,78643,0 ) ) -(109,419:14652821,34678561:501378,78643,0 -(109,419:14816675,34678561:173670,78643,0 +(105,419:14652821,34678561:501378,78643,0 +(105,419:14816675,34678561:173670,78643,0 ) ) -(109,419:15154199,34678561:501378,78643,0 -(109,419:15318053,34678561:173670,78643,0 +(105,419:15154199,34678561:501378,78643,0 +(105,419:15318053,34678561:173670,78643,0 ) ) -(109,419:15655577,34678561:501378,78643,0 -(109,419:15819431,34678561:173670,78643,0 +(105,419:15655577,34678561:501378,78643,0 +(105,419:15819431,34678561:173670,78643,0 ) ) -(109,419:16156955,34678561:501378,78643,0 -(109,419:16320809,34678561:173670,78643,0 +(105,419:16156955,34678561:501378,78643,0 +(105,419:16320809,34678561:173670,78643,0 ) ) -(109,419:16658333,34678561:501378,78643,0 -(109,419:16822187,34678561:173670,78643,0 +(105,419:16658333,34678561:501378,78643,0 +(105,419:16822187,34678561:173670,78643,0 ) ) -(109,419:17159711,34678561:501378,78643,0 -(109,419:17323565,34678561:173670,78643,0 +(105,419:17159711,34678561:501378,78643,0 +(105,419:17323565,34678561:173670,78643,0 ) ) -(109,419:17661089,34678561:501378,78643,0 -(109,419:17824943,34678561:173670,78643,0 +(105,419:17661089,34678561:501378,78643,0 +(105,419:17824943,34678561:173670,78643,0 ) ) -(109,419:18162467,34678561:501378,78643,0 -(109,419:18326321,34678561:173670,78643,0 +(105,419:18162467,34678561:501378,78643,0 +(105,419:18326321,34678561:173670,78643,0 ) ) -(109,419:18663845,34678561:501378,78643,0 -(109,419:18827699,34678561:173670,78643,0 +(105,419:18663845,34678561:501378,78643,0 +(105,419:18827699,34678561:173670,78643,0 ) ) -(109,419:19165223,34678561:501378,78643,0 -(109,419:19329077,34678561:173670,78643,0 +(105,419:19165223,34678561:501378,78643,0 +(105,419:19329077,34678561:173670,78643,0 ) ) -(109,419:19666601,34678561:501378,78643,0 -(109,419:19830455,34678561:173670,78643,0 +(105,419:19666601,34678561:501378,78643,0 +(105,419:19830455,34678561:173670,78643,0 ) ) -(109,419:20167979,34678561:501378,78643,0 -(109,419:20331833,34678561:173670,78643,0 +(105,419:20167979,34678561:501378,78643,0 +(105,419:20331833,34678561:173670,78643,0 ) ) -(109,419:20669357,34678561:501378,78643,0 -(109,419:20833211,34678561:173670,78643,0 +(105,419:20669357,34678561:501378,78643,0 +(105,419:20833211,34678561:173670,78643,0 ) ) -(109,419:21170735,34678561:501378,78643,0 -(109,419:21334589,34678561:173670,78643,0 +(105,419:21170735,34678561:501378,78643,0 +(105,419:21334589,34678561:173670,78643,0 ) ) -(109,419:21672113,34678561:501378,78643,0 -(109,419:21835967,34678561:173670,78643,0 +(105,419:21672113,34678561:501378,78643,0 +(105,419:21835967,34678561:173670,78643,0 ) ) -(109,419:22173491,34678561:501378,78643,0 -(109,419:22337345,34678561:173670,78643,0 +(105,419:22173491,34678561:501378,78643,0 +(105,419:22337345,34678561:173670,78643,0 ) ) -(109,419:22674869,34678561:501378,78643,0 -(109,419:22838723,34678561:173670,78643,0 +(105,419:22674869,34678561:501378,78643,0 +(105,419:22838723,34678561:173670,78643,0 ) ) -(109,419:23176247,34678561:501378,78643,0 -(109,419:23340101,34678561:173670,78643,0 +(105,419:23176247,34678561:501378,78643,0 +(105,419:23340101,34678561:173670,78643,0 ) ) -(109,419:23677625,34678561:501378,78643,0 -(109,419:23841479,34678561:173670,78643,0 +(105,419:23677625,34678561:501378,78643,0 +(105,419:23841479,34678561:173670,78643,0 ) ) -(109,419:24179003,34678561:501378,78643,0 -(109,419:24342857,34678561:173670,78643,0 +(105,419:24179003,34678561:501378,78643,0 +(105,419:24342857,34678561:173670,78643,0 ) ) -(109,419:24680381,34678561:501378,78643,0 -(109,419:24844235,34678561:173670,78643,0 +(105,419:24680381,34678561:501378,78643,0 +(105,419:24844235,34678561:173670,78643,0 ) ) -(109,419:25181759,34678561:501378,78643,0 -(109,419:25345613,34678561:173670,78643,0 +(105,419:25181759,34678561:501378,78643,0 +(105,419:25345613,34678561:173670,78643,0 ) ) -(109,419:25683137,34678561:501378,78643,0 -(109,419:25846991,34678561:173670,78643,0 +(105,419:25683137,34678561:501378,78643,0 +(105,419:25846991,34678561:173670,78643,0 ) ) -(109,419:26184515,34678561:501378,78643,0 -(109,419:26348369,34678561:173670,78643,0 +(105,419:26184515,34678561:501378,78643,0 +(105,419:26348369,34678561:173670,78643,0 ) ) -(109,419:26685893,34678561:501378,78643,0 -(109,419:26849747,34678561:173670,78643,0 +(105,419:26685893,34678561:501378,78643,0 +(105,419:26849747,34678561:173670,78643,0 ) ) -(109,419:27187271,34678561:501378,78643,0 -(109,419:27351125,34678561:173670,78643,0 +(105,419:27187271,34678561:501378,78643,0 +(105,419:27351125,34678561:173670,78643,0 ) ) -(109,419:27688649,34678561:501378,78643,0 -(109,419:27852503,34678561:173670,78643,0 +(105,419:27688649,34678561:501378,78643,0 +(105,419:27852503,34678561:173670,78643,0 ) ) -(109,419:28190027,34678561:501378,78643,0 -(109,419:28353881,34678561:173670,78643,0 +(105,419:28190027,34678561:501378,78643,0 +(105,419:28353881,34678561:173670,78643,0 ) ) -(109,419:28691405,34678561:501378,78643,0 -(109,419:28855259,34678561:173670,78643,0 +(105,419:28691405,34678561:501378,78643,0 +(105,419:28855259,34678561:173670,78643,0 ) ) -(109,419:29192783,34678561:501378,78643,0 -(109,419:29356637,34678561:173670,78643,0 +(105,419:29192783,34678561:501378,78643,0 +(105,419:29356637,34678561:173670,78643,0 ) ) -(109,419:29694161,34678561:501378,78643,0 -(109,419:29858015,34678561:173670,78643,0 +(105,419:29694161,34678561:501378,78643,0 +(105,419:29858015,34678561:173670,78643,0 ) ) -(109,419:30195539,34678561:501378,78643,0 -(109,419:30359393,34678561:173670,78643,0 +(105,419:30195539,34678561:501378,78643,0 +(105,419:30359393,34678561:173670,78643,0 ) ) -(109,419:30696917,34678561:501378,78643,0 -(109,419:30860771,34678561:173670,78643,0 +(105,419:30696917,34678561:501378,78643,0 +(105,419:30860771,34678561:173670,78643,0 ) ) -(109,419:31403378,34678561:1179650,485622,11795 -k109,419:31403378,34678561:0 -k109,419:31536198,34678561:132820 +(105,419:31239538,34678561:1343490,485622,11795 +k105,419:31239538,34678561:0 +k105,419:31387651,34678561:148113 ) -g109,419:30911858,34678561 -g109,419:32583028,34678561 +g105,419:30911858,34678561 +g105,419:32583028,34678561 ) -(109,421:6630773,35520049:25952256,505283,11795 -g109,421:11218293,35520049 -h109,421:11218293,35520049:2490370,0,0 -h109,421:13708663,35520049:0,0,0 -g109,421:9121143,35520049 -(109,421:9121143,35520049:2097150,485622,11795 -k109,421:11218293,35520049:554432 +(105,421:6630773,35520049:25952256,505283,11795 +g105,421:11218293,35520049 +h105,421:11218293,35520049:2490370,0,0 +h105,421:13708663,35520049:0,0,0 +g105,421:9121143,35520049 +(105,421:9121143,35520049:2097150,485622,11795 +k105,421:11218293,35520049:554432 ) -g109,421:14345671,35520049 -(109,421:14652821,35520049:501378,78643,0 -$109,421:14652821,35520049 -(109,421:14816675,35520049:173670,78643,0 +g105,421:14345671,35520049 +(105,421:14652821,35520049:501378,78643,0 +$105,421:14652821,35520049 +(105,421:14816675,35520049:173670,78643,0 ) -$109,421:15154199,35520049 +$105,421:15154199,35520049 ) -(109,421:15154199,35520049:501378,78643,0 -(109,421:15318053,35520049:173670,78643,0 +(105,421:15154199,35520049:501378,78643,0 +(105,421:15318053,35520049:173670,78643,0 ) ) -(109,421:15655577,35520049:501378,78643,0 -(109,421:15819431,35520049:173670,78643,0 +(105,421:15655577,35520049:501378,78643,0 +(105,421:15819431,35520049:173670,78643,0 ) ) -(109,421:16156955,35520049:501378,78643,0 -(109,421:16320809,35520049:173670,78643,0 +(105,421:16156955,35520049:501378,78643,0 +(105,421:16320809,35520049:173670,78643,0 ) ) -(109,421:16658333,35520049:501378,78643,0 -(109,421:16822187,35520049:173670,78643,0 +(105,421:16658333,35520049:501378,78643,0 +(105,421:16822187,35520049:173670,78643,0 ) ) -(109,421:17159711,35520049:501378,78643,0 -(109,421:17323565,35520049:173670,78643,0 +(105,421:17159711,35520049:501378,78643,0 +(105,421:17323565,35520049:173670,78643,0 ) ) -(109,421:17661089,35520049:501378,78643,0 -(109,421:17824943,35520049:173670,78643,0 +(105,421:17661089,35520049:501378,78643,0 +(105,421:17824943,35520049:173670,78643,0 ) ) -(109,421:18162467,35520049:501378,78643,0 -(109,421:18326321,35520049:173670,78643,0 +(105,421:18162467,35520049:501378,78643,0 +(105,421:18326321,35520049:173670,78643,0 ) ) -(109,421:18663845,35520049:501378,78643,0 -(109,421:18827699,35520049:173670,78643,0 +(105,421:18663845,35520049:501378,78643,0 +(105,421:18827699,35520049:173670,78643,0 ) ) -(109,421:19165223,35520049:501378,78643,0 -(109,421:19329077,35520049:173670,78643,0 +(105,421:19165223,35520049:501378,78643,0 +(105,421:19329077,35520049:173670,78643,0 ) ) -(109,421:19666601,35520049:501378,78643,0 -(109,421:19830455,35520049:173670,78643,0 +(105,421:19666601,35520049:501378,78643,0 +(105,421:19830455,35520049:173670,78643,0 ) ) -(109,421:20167979,35520049:501378,78643,0 -(109,421:20331833,35520049:173670,78643,0 +(105,421:20167979,35520049:501378,78643,0 +(105,421:20331833,35520049:173670,78643,0 ) ) -(109,421:20669357,35520049:501378,78643,0 -(109,421:20833211,35520049:173670,78643,0 +(105,421:20669357,35520049:501378,78643,0 +(105,421:20833211,35520049:173670,78643,0 ) ) -(109,421:21170735,35520049:501378,78643,0 -(109,421:21334589,35520049:173670,78643,0 +(105,421:21170735,35520049:501378,78643,0 +(105,421:21334589,35520049:173670,78643,0 ) ) -(109,421:21672113,35520049:501378,78643,0 -(109,421:21835967,35520049:173670,78643,0 +(105,421:21672113,35520049:501378,78643,0 +(105,421:21835967,35520049:173670,78643,0 ) ) -(109,421:22173491,35520049:501378,78643,0 -(109,421:22337345,35520049:173670,78643,0 +(105,421:22173491,35520049:501378,78643,0 +(105,421:22337345,35520049:173670,78643,0 ) ) -(109,421:22674869,35520049:501378,78643,0 -(109,421:22838723,35520049:173670,78643,0 +(105,421:22674869,35520049:501378,78643,0 +(105,421:22838723,35520049:173670,78643,0 ) ) -(109,421:23176247,35520049:501378,78643,0 -(109,421:23340101,35520049:173670,78643,0 +(105,421:23176247,35520049:501378,78643,0 +(105,421:23340101,35520049:173670,78643,0 ) ) -(109,421:23677625,35520049:501378,78643,0 -(109,421:23841479,35520049:173670,78643,0 +(105,421:23677625,35520049:501378,78643,0 +(105,421:23841479,35520049:173670,78643,0 ) ) -(109,421:24179003,35520049:501378,78643,0 -(109,421:24342857,35520049:173670,78643,0 +(105,421:24179003,35520049:501378,78643,0 +(105,421:24342857,35520049:173670,78643,0 ) ) -(109,421:24680381,35520049:501378,78643,0 -(109,421:24844235,35520049:173670,78643,0 +(105,421:24680381,35520049:501378,78643,0 +(105,421:24844235,35520049:173670,78643,0 ) ) -(109,421:25181759,35520049:501378,78643,0 -(109,421:25345613,35520049:173670,78643,0 +(105,421:25181759,35520049:501378,78643,0 +(105,421:25345613,35520049:173670,78643,0 ) ) -(109,421:25683137,35520049:501378,78643,0 -(109,421:25846991,35520049:173670,78643,0 +(105,421:25683137,35520049:501378,78643,0 +(105,421:25846991,35520049:173670,78643,0 ) ) -(109,421:26184515,35520049:501378,78643,0 -(109,421:26348369,35520049:173670,78643,0 +(105,421:26184515,35520049:501378,78643,0 +(105,421:26348369,35520049:173670,78643,0 ) ) -(109,421:26685893,35520049:501378,78643,0 -(109,421:26849747,35520049:173670,78643,0 +(105,421:26685893,35520049:501378,78643,0 +(105,421:26849747,35520049:173670,78643,0 ) ) -(109,421:27187271,35520049:501378,78643,0 -(109,421:27351125,35520049:173670,78643,0 +(105,421:27187271,35520049:501378,78643,0 +(105,421:27351125,35520049:173670,78643,0 ) ) -(109,421:27688649,35520049:501378,78643,0 -(109,421:27852503,35520049:173670,78643,0 +(105,421:27688649,35520049:501378,78643,0 +(105,421:27852503,35520049:173670,78643,0 ) ) -(109,421:28190027,35520049:501378,78643,0 -(109,421:28353881,35520049:173670,78643,0 +(105,421:28190027,35520049:501378,78643,0 +(105,421:28353881,35520049:173670,78643,0 ) ) -(109,421:28691405,35520049:501378,78643,0 -(109,421:28855259,35520049:173670,78643,0 +(105,421:28691405,35520049:501378,78643,0 +(105,421:28855259,35520049:173670,78643,0 ) ) -(109,421:29192783,35520049:501378,78643,0 -(109,421:29356637,35520049:173670,78643,0 +(105,421:29192783,35520049:501378,78643,0 +(105,421:29356637,35520049:173670,78643,0 ) ) -(109,421:29694161,35520049:501378,78643,0 -(109,421:29858015,35520049:173670,78643,0 +(105,421:29694161,35520049:501378,78643,0 +(105,421:29858015,35520049:173670,78643,0 ) ) -(109,421:30195539,35520049:501378,78643,0 -(109,421:30359393,35520049:173670,78643,0 +(105,421:30195539,35520049:501378,78643,0 +(105,421:30359393,35520049:173670,78643,0 ) ) -(109,421:30696917,35520049:501378,78643,0 -(109,421:30860771,35520049:173670,78643,0 +(105,421:30696917,35520049:501378,78643,0 +(105,421:30860771,35520049:173670,78643,0 ) ) -(109,421:31403379,35520049:1179650,485622,11795 -k109,421:31403379,35520049:0 -k109,421:31536199,35520049:132820 +(105,421:31239539,35520049:1343490,485622,11795 +k105,421:31239539,35520049:0 +k105,421:31387652,35520049:148113 ) -g109,421:30911859,35520049 -g109,421:32583029,35520049 +g105,421:30911859,35520049 +g105,421:32583029,35520049 ) -(109,423:6630773,36361537:25952256,513147,11795 -g109,423:9121143,36361537 -h109,423:9121143,36361537:983040,0,0 -h109,423:10104183,36361537:0,0,0 -g109,423:7613813,36361537 -(109,423:7613813,36361537:1507330,485622,11795 -k109,423:9121143,36361537:138283 +(105,423:6630773,36361537:25952256,513147,11795 +g105,423:9121143,36361537 +h105,423:9121143,36361537:983040,0,0 +h105,423:10104183,36361537:0,0,0 +g105,423:7613813,36361537 +(105,423:7613813,36361537:1507330,485622,11795 +k105,423:9121143,36361537:138283 ) -g109,423:12429400,36361537 -g109,423:15387695,36361537 -g109,423:15387695,36361537 -(109,423:15655577,36361537:501378,78643,0 -$109,423:15655577,36361537 -(109,423:15819431,36361537:173670,78643,0 +g105,423:12429400,36361537 +g105,423:15387695,36361537 +g105,423:15387695,36361537 +(105,423:15655577,36361537:501378,78643,0 +$105,423:15655577,36361537 +(105,423:15819431,36361537:173670,78643,0 ) -$109,423:16156955,36361537 +$105,423:16156955,36361537 ) -(109,423:16156955,36361537:501378,78643,0 -(109,423:16320809,36361537:173670,78643,0 +(105,423:16156955,36361537:501378,78643,0 +(105,423:16320809,36361537:173670,78643,0 ) ) -(109,423:16658333,36361537:501378,78643,0 -(109,423:16822187,36361537:173670,78643,0 +(105,423:16658333,36361537:501378,78643,0 +(105,423:16822187,36361537:173670,78643,0 ) ) -(109,423:17159711,36361537:501378,78643,0 -(109,423:17323565,36361537:173670,78643,0 +(105,423:17159711,36361537:501378,78643,0 +(105,423:17323565,36361537:173670,78643,0 ) ) -(109,423:17661089,36361537:501378,78643,0 -(109,423:17824943,36361537:173670,78643,0 +(105,423:17661089,36361537:501378,78643,0 +(105,423:17824943,36361537:173670,78643,0 ) ) -(109,423:18162467,36361537:501378,78643,0 -(109,423:18326321,36361537:173670,78643,0 +(105,423:18162467,36361537:501378,78643,0 +(105,423:18326321,36361537:173670,78643,0 ) ) -(109,423:18663845,36361537:501378,78643,0 -(109,423:18827699,36361537:173670,78643,0 +(105,423:18663845,36361537:501378,78643,0 +(105,423:18827699,36361537:173670,78643,0 ) ) -(109,423:19165223,36361537:501378,78643,0 -(109,423:19329077,36361537:173670,78643,0 +(105,423:19165223,36361537:501378,78643,0 +(105,423:19329077,36361537:173670,78643,0 ) ) -(109,423:19666601,36361537:501378,78643,0 -(109,423:19830455,36361537:173670,78643,0 +(105,423:19666601,36361537:501378,78643,0 +(105,423:19830455,36361537:173670,78643,0 ) ) -(109,423:20167979,36361537:501378,78643,0 -(109,423:20331833,36361537:173670,78643,0 +(105,423:20167979,36361537:501378,78643,0 +(105,423:20331833,36361537:173670,78643,0 ) ) -(109,423:20669357,36361537:501378,78643,0 -(109,423:20833211,36361537:173670,78643,0 +(105,423:20669357,36361537:501378,78643,0 +(105,423:20833211,36361537:173670,78643,0 ) ) -(109,423:21170735,36361537:501378,78643,0 -(109,423:21334589,36361537:173670,78643,0 +(105,423:21170735,36361537:501378,78643,0 +(105,423:21334589,36361537:173670,78643,0 ) ) -(109,423:21672113,36361537:501378,78643,0 -(109,423:21835967,36361537:173670,78643,0 +(105,423:21672113,36361537:501378,78643,0 +(105,423:21835967,36361537:173670,78643,0 ) ) -(109,423:22173491,36361537:501378,78643,0 -(109,423:22337345,36361537:173670,78643,0 +(105,423:22173491,36361537:501378,78643,0 +(105,423:22337345,36361537:173670,78643,0 ) ) -(109,423:22674869,36361537:501378,78643,0 -(109,423:22838723,36361537:173670,78643,0 +(105,423:22674869,36361537:501378,78643,0 +(105,423:22838723,36361537:173670,78643,0 ) ) -(109,423:23176247,36361537:501378,78643,0 -(109,423:23340101,36361537:173670,78643,0 +(105,423:23176247,36361537:501378,78643,0 +(105,423:23340101,36361537:173670,78643,0 ) ) -(109,423:23677625,36361537:501378,78643,0 -(109,423:23841479,36361537:173670,78643,0 +(105,423:23677625,36361537:501378,78643,0 +(105,423:23841479,36361537:173670,78643,0 ) ) -(109,423:24179003,36361537:501378,78643,0 -(109,423:24342857,36361537:173670,78643,0 +(105,423:24179003,36361537:501378,78643,0 +(105,423:24342857,36361537:173670,78643,0 ) ) -(109,423:24680381,36361537:501378,78643,0 -(109,423:24844235,36361537:173670,78643,0 +(105,423:24680381,36361537:501378,78643,0 +(105,423:24844235,36361537:173670,78643,0 ) ) -(109,423:25181759,36361537:501378,78643,0 -(109,423:25345613,36361537:173670,78643,0 +(105,423:25181759,36361537:501378,78643,0 +(105,423:25345613,36361537:173670,78643,0 ) ) -(109,423:25683137,36361537:501378,78643,0 -(109,423:25846991,36361537:173670,78643,0 +(105,423:25683137,36361537:501378,78643,0 +(105,423:25846991,36361537:173670,78643,0 ) ) -(109,423:26184515,36361537:501378,78643,0 -(109,423:26348369,36361537:173670,78643,0 +(105,423:26184515,36361537:501378,78643,0 +(105,423:26348369,36361537:173670,78643,0 ) ) -(109,423:26685893,36361537:501378,78643,0 -(109,423:26849747,36361537:173670,78643,0 +(105,423:26685893,36361537:501378,78643,0 +(105,423:26849747,36361537:173670,78643,0 ) ) -(109,423:27187271,36361537:501378,78643,0 -(109,423:27351125,36361537:173670,78643,0 +(105,423:27187271,36361537:501378,78643,0 +(105,423:27351125,36361537:173670,78643,0 ) ) -(109,423:27688649,36361537:501378,78643,0 -(109,423:27852503,36361537:173670,78643,0 +(105,423:27688649,36361537:501378,78643,0 +(105,423:27852503,36361537:173670,78643,0 ) ) -(109,423:28190027,36361537:501378,78643,0 -(109,423:28353881,36361537:173670,78643,0 +(105,423:28190027,36361537:501378,78643,0 +(105,423:28353881,36361537:173670,78643,0 ) ) -(109,423:28691405,36361537:501378,78643,0 -(109,423:28855259,36361537:173670,78643,0 +(105,423:28691405,36361537:501378,78643,0 +(105,423:28855259,36361537:173670,78643,0 ) ) -(109,423:29192783,36361537:501378,78643,0 -(109,423:29356637,36361537:173670,78643,0 +(105,423:29192783,36361537:501378,78643,0 +(105,423:29356637,36361537:173670,78643,0 ) ) -(109,423:29694161,36361537:501378,78643,0 -(109,423:29858015,36361537:173670,78643,0 +(105,423:29694161,36361537:501378,78643,0 +(105,423:29858015,36361537:173670,78643,0 ) ) -(109,423:30195539,36361537:501378,78643,0 -(109,423:30359393,36361537:173670,78643,0 +(105,423:30195539,36361537:501378,78643,0 +(105,423:30359393,36361537:173670,78643,0 ) ) -(109,423:30696917,36361537:501378,78643,0 -(109,423:30860771,36361537:173670,78643,0 +(105,423:30696917,36361537:501378,78643,0 +(105,423:30860771,36361537:173670,78643,0 ) ) -(109,423:31403379,36361537:1179650,485622,11795 -k109,423:31403379,36361537:0 -k109,423:31536199,36361537:132820 +(105,423:31239539,36361537:1343490,485622,11795 +k105,423:31239539,36361537:0 +k105,423:31387652,36361537:148113 ) -g109,423:30911859,36361537 -g109,423:32583029,36361537 +g105,423:30911859,36361537 +g105,423:32583029,36361537 ) -(109,425:6630773,37203025:25952256,513147,134348 -g109,425:11218293,37203025 -h109,425:11218293,37203025:2490370,0,0 -h109,425:13708663,37203025:0,0,0 -g109,425:9121143,37203025 -(109,425:9121143,37203025:2097150,485622,11795 -k109,425:11218293,37203025:155974 +(105,425:6630773,37203025:25952256,513147,134348 +g105,425:11218293,37203025 +h105,425:11218293,37203025:2490370,0,0 +h105,425:13708663,37203025:0,0,0 +g105,425:9121143,37203025 +(105,425:9121143,37203025:2097150,485622,11795 +k105,425:11218293,37203025:155974 ) -g109,425:13503533,37203025 -(109,425:13650065,37203025:501378,78643,0 -$109,425:13650065,37203025 -(109,425:13813919,37203025:173670,78643,0 +g105,425:13503533,37203025 +(105,425:13650065,37203025:501378,78643,0 +$105,425:13650065,37203025 +(105,425:13813919,37203025:173670,78643,0 ) -$109,425:14151443,37203025 +$105,425:14151443,37203025 ) -(109,425:14151443,37203025:501378,78643,0 -(109,425:14315297,37203025:173670,78643,0 +(105,425:14151443,37203025:501378,78643,0 +(105,425:14315297,37203025:173670,78643,0 ) ) -(109,425:14652821,37203025:501378,78643,0 -(109,425:14816675,37203025:173670,78643,0 +(105,425:14652821,37203025:501378,78643,0 +(105,425:14816675,37203025:173670,78643,0 ) ) -(109,425:15154199,37203025:501378,78643,0 -(109,425:15318053,37203025:173670,78643,0 +(105,425:15154199,37203025:501378,78643,0 +(105,425:15318053,37203025:173670,78643,0 ) ) -(109,425:15655577,37203025:501378,78643,0 -(109,425:15819431,37203025:173670,78643,0 +(105,425:15655577,37203025:501378,78643,0 +(105,425:15819431,37203025:173670,78643,0 ) ) -(109,425:16156955,37203025:501378,78643,0 -(109,425:16320809,37203025:173670,78643,0 +(105,425:16156955,37203025:501378,78643,0 +(105,425:16320809,37203025:173670,78643,0 ) ) -(109,425:16658333,37203025:501378,78643,0 -(109,425:16822187,37203025:173670,78643,0 +(105,425:16658333,37203025:501378,78643,0 +(105,425:16822187,37203025:173670,78643,0 ) ) -(109,425:17159711,37203025:501378,78643,0 -(109,425:17323565,37203025:173670,78643,0 +(105,425:17159711,37203025:501378,78643,0 +(105,425:17323565,37203025:173670,78643,0 ) ) -(109,425:17661089,37203025:501378,78643,0 -(109,425:17824943,37203025:173670,78643,0 +(105,425:17661089,37203025:501378,78643,0 +(105,425:17824943,37203025:173670,78643,0 ) ) -(109,425:18162467,37203025:501378,78643,0 -(109,425:18326321,37203025:173670,78643,0 +(105,425:18162467,37203025:501378,78643,0 +(105,425:18326321,37203025:173670,78643,0 ) ) -(109,425:18663845,37203025:501378,78643,0 -(109,425:18827699,37203025:173670,78643,0 +(105,425:18663845,37203025:501378,78643,0 +(105,425:18827699,37203025:173670,78643,0 ) ) -(109,425:19165223,37203025:501378,78643,0 -(109,425:19329077,37203025:173670,78643,0 +(105,425:19165223,37203025:501378,78643,0 +(105,425:19329077,37203025:173670,78643,0 ) ) -(109,425:19666601,37203025:501378,78643,0 -(109,425:19830455,37203025:173670,78643,0 +(105,425:19666601,37203025:501378,78643,0 +(105,425:19830455,37203025:173670,78643,0 ) ) -(109,425:20167979,37203025:501378,78643,0 -(109,425:20331833,37203025:173670,78643,0 +(105,425:20167979,37203025:501378,78643,0 +(105,425:20331833,37203025:173670,78643,0 ) ) -(109,425:20669357,37203025:501378,78643,0 -(109,425:20833211,37203025:173670,78643,0 +(105,425:20669357,37203025:501378,78643,0 +(105,425:20833211,37203025:173670,78643,0 ) ) -(109,425:21170735,37203025:501378,78643,0 -(109,425:21334589,37203025:173670,78643,0 +(105,425:21170735,37203025:501378,78643,0 +(105,425:21334589,37203025:173670,78643,0 ) ) -(109,425:21672113,37203025:501378,78643,0 -(109,425:21835967,37203025:173670,78643,0 +(105,425:21672113,37203025:501378,78643,0 +(105,425:21835967,37203025:173670,78643,0 ) ) -(109,425:22173491,37203025:501378,78643,0 -(109,425:22337345,37203025:173670,78643,0 +(105,425:22173491,37203025:501378,78643,0 +(105,425:22337345,37203025:173670,78643,0 ) ) -(109,425:22674869,37203025:501378,78643,0 -(109,425:22838723,37203025:173670,78643,0 +(105,425:22674869,37203025:501378,78643,0 +(105,425:22838723,37203025:173670,78643,0 ) ) -(109,425:23176247,37203025:501378,78643,0 -(109,425:23340101,37203025:173670,78643,0 +(105,425:23176247,37203025:501378,78643,0 +(105,425:23340101,37203025:173670,78643,0 ) ) -(109,425:23677625,37203025:501378,78643,0 -(109,425:23841479,37203025:173670,78643,0 +(105,425:23677625,37203025:501378,78643,0 +(105,425:23841479,37203025:173670,78643,0 ) ) -(109,425:24179003,37203025:501378,78643,0 -(109,425:24342857,37203025:173670,78643,0 +(105,425:24179003,37203025:501378,78643,0 +(105,425:24342857,37203025:173670,78643,0 ) ) -(109,425:24680381,37203025:501378,78643,0 -(109,425:24844235,37203025:173670,78643,0 +(105,425:24680381,37203025:501378,78643,0 +(105,425:24844235,37203025:173670,78643,0 ) ) -(109,425:25181759,37203025:501378,78643,0 -(109,425:25345613,37203025:173670,78643,0 +(105,425:25181759,37203025:501378,78643,0 +(105,425:25345613,37203025:173670,78643,0 ) ) -(109,425:25683137,37203025:501378,78643,0 -(109,425:25846991,37203025:173670,78643,0 +(105,425:25683137,37203025:501378,78643,0 +(105,425:25846991,37203025:173670,78643,0 ) ) -(109,425:26184515,37203025:501378,78643,0 -(109,425:26348369,37203025:173670,78643,0 +(105,425:26184515,37203025:501378,78643,0 +(105,425:26348369,37203025:173670,78643,0 ) ) -(109,425:26685893,37203025:501378,78643,0 -(109,425:26849747,37203025:173670,78643,0 +(105,425:26685893,37203025:501378,78643,0 +(105,425:26849747,37203025:173670,78643,0 ) ) -(109,425:27187271,37203025:501378,78643,0 -(109,425:27351125,37203025:173670,78643,0 +(105,425:27187271,37203025:501378,78643,0 +(105,425:27351125,37203025:173670,78643,0 ) ) -(109,425:27688649,37203025:501378,78643,0 -(109,425:27852503,37203025:173670,78643,0 +(105,425:27688649,37203025:501378,78643,0 +(105,425:27852503,37203025:173670,78643,0 ) ) -(109,425:28190027,37203025:501378,78643,0 -(109,425:28353881,37203025:173670,78643,0 +(105,425:28190027,37203025:501378,78643,0 +(105,425:28353881,37203025:173670,78643,0 ) ) -(109,425:28691405,37203025:501378,78643,0 -(109,425:28855259,37203025:173670,78643,0 +(105,425:28691405,37203025:501378,78643,0 +(105,425:28855259,37203025:173670,78643,0 ) ) -(109,425:29192783,37203025:501378,78643,0 -(109,425:29356637,37203025:173670,78643,0 +(105,425:29192783,37203025:501378,78643,0 +(105,425:29356637,37203025:173670,78643,0 ) ) -(109,425:29694161,37203025:501378,78643,0 -(109,425:29858015,37203025:173670,78643,0 +(105,425:29694161,37203025:501378,78643,0 +(105,425:29858015,37203025:173670,78643,0 ) ) -(109,425:30195539,37203025:501378,78643,0 -(109,425:30359393,37203025:173670,78643,0 +(105,425:30195539,37203025:501378,78643,0 +(105,425:30359393,37203025:173670,78643,0 ) ) -(109,425:30696917,37203025:501378,78643,0 -(109,425:30860771,37203025:173670,78643,0 +(105,425:30696917,37203025:501378,78643,0 +(105,425:30860771,37203025:173670,78643,0 ) ) -(109,425:31403379,37203025:1179650,485622,11795 -k109,425:31403379,37203025:0 -k109,425:31536199,37203025:132820 +(105,425:31239539,37203025:1343490,485622,11795 +k105,425:31239539,37203025:0 +k105,425:31387652,37203025:148113 ) -g109,425:30911859,37203025 -g109,425:32583029,37203025 +g105,425:30911859,37203025 +g105,425:32583029,37203025 ) -(109,427:6630773,38044513:25952256,505283,11795 -g109,427:11218293,38044513 -h109,427:11218293,38044513:2490370,0,0 -h109,427:13708663,38044513:0,0,0 -g109,427:9121143,38044513 -(109,427:9121143,38044513:2097150,485622,11795 -k109,427:11218293,38044513:155974 +(105,427:6630773,38044513:25952256,505283,11795 +g105,427:11218293,38044513 +h105,427:11218293,38044513:2490370,0,0 +h105,427:13708663,38044513:0,0,0 +g105,427:9121143,38044513 +(105,427:9121143,38044513:2097150,485622,11795 +k105,427:11218293,38044513:155974 ) -g109,427:13108351,38044513 -(109,427:13148687,38044513:501378,78643,0 -$109,427:13148687,38044513 -(109,427:13312541,38044513:173670,78643,0 +g105,427:13108351,38044513 +(105,427:13148687,38044513:501378,78643,0 +$105,427:13148687,38044513 +(105,427:13312541,38044513:173670,78643,0 ) -$109,427:13650065,38044513 +$105,427:13650065,38044513 ) -(109,427:13650065,38044513:501378,78643,0 -(109,427:13813919,38044513:173670,78643,0 +(105,427:13650065,38044513:501378,78643,0 +(105,427:13813919,38044513:173670,78643,0 ) ) -(109,427:14151443,38044513:501378,78643,0 -(109,427:14315297,38044513:173670,78643,0 +(105,427:14151443,38044513:501378,78643,0 +(105,427:14315297,38044513:173670,78643,0 ) ) -(109,427:14652821,38044513:501378,78643,0 -(109,427:14816675,38044513:173670,78643,0 +(105,427:14652821,38044513:501378,78643,0 +(105,427:14816675,38044513:173670,78643,0 ) ) -(109,427:15154199,38044513:501378,78643,0 -(109,427:15318053,38044513:173670,78643,0 +(105,427:15154199,38044513:501378,78643,0 +(105,427:15318053,38044513:173670,78643,0 ) ) -(109,427:15655577,38044513:501378,78643,0 -(109,427:15819431,38044513:173670,78643,0 +(105,427:15655577,38044513:501378,78643,0 +(105,427:15819431,38044513:173670,78643,0 ) ) -(109,427:16156955,38044513:501378,78643,0 -(109,427:16320809,38044513:173670,78643,0 +(105,427:16156955,38044513:501378,78643,0 +(105,427:16320809,38044513:173670,78643,0 ) ) -(109,427:16658333,38044513:501378,78643,0 -(109,427:16822187,38044513:173670,78643,0 +(105,427:16658333,38044513:501378,78643,0 +(105,427:16822187,38044513:173670,78643,0 ) ) -(109,427:17159711,38044513:501378,78643,0 -(109,427:17323565,38044513:173670,78643,0 +(105,427:17159711,38044513:501378,78643,0 +(105,427:17323565,38044513:173670,78643,0 ) ) -(109,427:17661089,38044513:501378,78643,0 -(109,427:17824943,38044513:173670,78643,0 +(105,427:17661089,38044513:501378,78643,0 +(105,427:17824943,38044513:173670,78643,0 ) ) -(109,427:18162467,38044513:501378,78643,0 -(109,427:18326321,38044513:173670,78643,0 +(105,427:18162467,38044513:501378,78643,0 +(105,427:18326321,38044513:173670,78643,0 ) ) -(109,427:18663845,38044513:501378,78643,0 -(109,427:18827699,38044513:173670,78643,0 +(105,427:18663845,38044513:501378,78643,0 +(105,427:18827699,38044513:173670,78643,0 ) ) -(109,427:19165223,38044513:501378,78643,0 -(109,427:19329077,38044513:173670,78643,0 +(105,427:19165223,38044513:501378,78643,0 +(105,427:19329077,38044513:173670,78643,0 ) ) -(109,427:19666601,38044513:501378,78643,0 -(109,427:19830455,38044513:173670,78643,0 +(105,427:19666601,38044513:501378,78643,0 +(105,427:19830455,38044513:173670,78643,0 ) ) -(109,427:20167979,38044513:501378,78643,0 -(109,427:20331833,38044513:173670,78643,0 +(105,427:20167979,38044513:501378,78643,0 +(105,427:20331833,38044513:173670,78643,0 ) ) -(109,427:20669357,38044513:501378,78643,0 -(109,427:20833211,38044513:173670,78643,0 +(105,427:20669357,38044513:501378,78643,0 +(105,427:20833211,38044513:173670,78643,0 ) ) -(109,427:21170735,38044513:501378,78643,0 -(109,427:21334589,38044513:173670,78643,0 +(105,427:21170735,38044513:501378,78643,0 +(105,427:21334589,38044513:173670,78643,0 ) ) -(109,427:21672113,38044513:501378,78643,0 -(109,427:21835967,38044513:173670,78643,0 +(105,427:21672113,38044513:501378,78643,0 +(105,427:21835967,38044513:173670,78643,0 ) ) -(109,427:22173491,38044513:501378,78643,0 -(109,427:22337345,38044513:173670,78643,0 +(105,427:22173491,38044513:501378,78643,0 +(105,427:22337345,38044513:173670,78643,0 ) ) -(109,427:22674869,38044513:501378,78643,0 -(109,427:22838723,38044513:173670,78643,0 +(105,427:22674869,38044513:501378,78643,0 +(105,427:22838723,38044513:173670,78643,0 ) ) -(109,427:23176247,38044513:501378,78643,0 -(109,427:23340101,38044513:173670,78643,0 +(105,427:23176247,38044513:501378,78643,0 +(105,427:23340101,38044513:173670,78643,0 ) ) -(109,427:23677625,38044513:501378,78643,0 -(109,427:23841479,38044513:173670,78643,0 +(105,427:23677625,38044513:501378,78643,0 +(105,427:23841479,38044513:173670,78643,0 ) ) -(109,427:24179003,38044513:501378,78643,0 -(109,427:24342857,38044513:173670,78643,0 +(105,427:24179003,38044513:501378,78643,0 +(105,427:24342857,38044513:173670,78643,0 ) ) -(109,427:24680381,38044513:501378,78643,0 -(109,427:24844235,38044513:173670,78643,0 +(105,427:24680381,38044513:501378,78643,0 +(105,427:24844235,38044513:173670,78643,0 ) ) -(109,427:25181759,38044513:501378,78643,0 -(109,427:25345613,38044513:173670,78643,0 +(105,427:25181759,38044513:501378,78643,0 +(105,427:25345613,38044513:173670,78643,0 ) ) -(109,427:25683137,38044513:501378,78643,0 -(109,427:25846991,38044513:173670,78643,0 +(105,427:25683137,38044513:501378,78643,0 +(105,427:25846991,38044513:173670,78643,0 ) ) -(109,427:26184515,38044513:501378,78643,0 -(109,427:26348369,38044513:173670,78643,0 +(105,427:26184515,38044513:501378,78643,0 +(105,427:26348369,38044513:173670,78643,0 ) ) -(109,427:26685893,38044513:501378,78643,0 -(109,427:26849747,38044513:173670,78643,0 +(105,427:26685893,38044513:501378,78643,0 +(105,427:26849747,38044513:173670,78643,0 ) ) -(109,427:27187271,38044513:501378,78643,0 -(109,427:27351125,38044513:173670,78643,0 +(105,427:27187271,38044513:501378,78643,0 +(105,427:27351125,38044513:173670,78643,0 ) ) -(109,427:27688649,38044513:501378,78643,0 -(109,427:27852503,38044513:173670,78643,0 +(105,427:27688649,38044513:501378,78643,0 +(105,427:27852503,38044513:173670,78643,0 ) ) -(109,427:28190027,38044513:501378,78643,0 -(109,427:28353881,38044513:173670,78643,0 +(105,427:28190027,38044513:501378,78643,0 +(105,427:28353881,38044513:173670,78643,0 ) ) -(109,427:28691405,38044513:501378,78643,0 -(109,427:28855259,38044513:173670,78643,0 +(105,427:28691405,38044513:501378,78643,0 +(105,427:28855259,38044513:173670,78643,0 ) ) -(109,427:29192783,38044513:501378,78643,0 -(109,427:29356637,38044513:173670,78643,0 +(105,427:29192783,38044513:501378,78643,0 +(105,427:29356637,38044513:173670,78643,0 ) ) -(109,427:29694161,38044513:501378,78643,0 -(109,427:29858015,38044513:173670,78643,0 +(105,427:29694161,38044513:501378,78643,0 +(105,427:29858015,38044513:173670,78643,0 ) ) -(109,427:30195539,38044513:501378,78643,0 -(109,427:30359393,38044513:173670,78643,0 +(105,427:30195539,38044513:501378,78643,0 +(105,427:30359393,38044513:173670,78643,0 ) ) -(109,427:30696917,38044513:501378,78643,0 -(109,427:30860771,38044513:173670,78643,0 +(105,427:30696917,38044513:501378,78643,0 +(105,427:30860771,38044513:173670,78643,0 ) ) -(109,427:31403379,38044513:1179650,485622,11795 -k109,427:31403379,38044513:0 -k109,427:31536199,38044513:132820 +(105,427:31239539,38044513:1343490,485622,11795 +k105,427:31239539,38044513:0 +k105,427:31387652,38044513:148113 ) -g109,427:30911859,38044513 -g109,427:32583029,38044513 +g105,427:30911859,38044513 +g105,427:32583029,38044513 ) -(109,429:6630773,38886001:25952256,513147,11795 -g109,429:9121143,38886001 -h109,429:9121143,38886001:983040,0,0 -h109,429:10104183,38886001:0,0,0 -g109,429:7613813,38886001 -(109,429:7613813,38886001:1507330,485622,11795 -k109,429:9121143,38886001:138283 +(105,429:6630773,38886001:25952256,513147,11795 +g105,429:9121143,38886001 +h105,429:9121143,38886001:983040,0,0 +h105,429:10104183,38886001:0,0,0 +g105,429:7613813,38886001 +(105,429:7613813,38886001:1507330,485622,11795 +k105,429:9121143,38886001:138283 ) -g109,429:11734718,38886001 -g109,429:13247289,38886001 -g109,429:13247289,38886001 -(109,429:13650065,38886001:501378,78643,0 -$109,429:13650065,38886001 -(109,429:13813919,38886001:173670,78643,0 +g105,429:11734718,38886001 +g105,429:13247289,38886001 +g105,429:13247289,38886001 +(105,429:13650065,38886001:501378,78643,0 +$105,429:13650065,38886001 +(105,429:13813919,38886001:173670,78643,0 ) -$109,429:14151443,38886001 +$105,429:14151443,38886001 ) -(109,429:14151443,38886001:501378,78643,0 -(109,429:14315297,38886001:173670,78643,0 +(105,429:14151443,38886001:501378,78643,0 +(105,429:14315297,38886001:173670,78643,0 ) ) -(109,429:14652821,38886001:501378,78643,0 -(109,429:14816675,38886001:173670,78643,0 +(105,429:14652821,38886001:501378,78643,0 +(105,429:14816675,38886001:173670,78643,0 ) ) -(109,429:15154199,38886001:501378,78643,0 -(109,429:15318053,38886001:173670,78643,0 +(105,429:15154199,38886001:501378,78643,0 +(105,429:15318053,38886001:173670,78643,0 ) ) -(109,429:15655577,38886001:501378,78643,0 -(109,429:15819431,38886001:173670,78643,0 +(105,429:15655577,38886001:501378,78643,0 +(105,429:15819431,38886001:173670,78643,0 ) ) -(109,429:16156955,38886001:501378,78643,0 -(109,429:16320809,38886001:173670,78643,0 +(105,429:16156955,38886001:501378,78643,0 +(105,429:16320809,38886001:173670,78643,0 ) ) -(109,429:16658333,38886001:501378,78643,0 -(109,429:16822187,38886001:173670,78643,0 +(105,429:16658333,38886001:501378,78643,0 +(105,429:16822187,38886001:173670,78643,0 ) ) -(109,429:17159711,38886001:501378,78643,0 -(109,429:17323565,38886001:173670,78643,0 +(105,429:17159711,38886001:501378,78643,0 +(105,429:17323565,38886001:173670,78643,0 ) ) -(109,429:17661089,38886001:501378,78643,0 -(109,429:17824943,38886001:173670,78643,0 +(105,429:17661089,38886001:501378,78643,0 +(105,429:17824943,38886001:173670,78643,0 ) ) -(109,429:18162467,38886001:501378,78643,0 -(109,429:18326321,38886001:173670,78643,0 +(105,429:18162467,38886001:501378,78643,0 +(105,429:18326321,38886001:173670,78643,0 ) ) -(109,429:18663845,38886001:501378,78643,0 -(109,429:18827699,38886001:173670,78643,0 +(105,429:18663845,38886001:501378,78643,0 +(105,429:18827699,38886001:173670,78643,0 ) ) -(109,429:19165223,38886001:501378,78643,0 -(109,429:19329077,38886001:173670,78643,0 +(105,429:19165223,38886001:501378,78643,0 +(105,429:19329077,38886001:173670,78643,0 ) ) -(109,429:19666601,38886001:501378,78643,0 -(109,429:19830455,38886001:173670,78643,0 +(105,429:19666601,38886001:501378,78643,0 +(105,429:19830455,38886001:173670,78643,0 ) ) -(109,429:20167979,38886001:501378,78643,0 -(109,429:20331833,38886001:173670,78643,0 +(105,429:20167979,38886001:501378,78643,0 +(105,429:20331833,38886001:173670,78643,0 ) ) -(109,429:20669357,38886001:501378,78643,0 -(109,429:20833211,38886001:173670,78643,0 +(105,429:20669357,38886001:501378,78643,0 +(105,429:20833211,38886001:173670,78643,0 ) ) -(109,429:21170735,38886001:501378,78643,0 -(109,429:21334589,38886001:173670,78643,0 +(105,429:21170735,38886001:501378,78643,0 +(105,429:21334589,38886001:173670,78643,0 ) ) -(109,429:21672113,38886001:501378,78643,0 -(109,429:21835967,38886001:173670,78643,0 +(105,429:21672113,38886001:501378,78643,0 +(105,429:21835967,38886001:173670,78643,0 ) ) -(109,429:22173491,38886001:501378,78643,0 -(109,429:22337345,38886001:173670,78643,0 +(105,429:22173491,38886001:501378,78643,0 +(105,429:22337345,38886001:173670,78643,0 ) ) -(109,429:22674869,38886001:501378,78643,0 -(109,429:22838723,38886001:173670,78643,0 +(105,429:22674869,38886001:501378,78643,0 +(105,429:22838723,38886001:173670,78643,0 ) ) -(109,429:23176247,38886001:501378,78643,0 -(109,429:23340101,38886001:173670,78643,0 +(105,429:23176247,38886001:501378,78643,0 +(105,429:23340101,38886001:173670,78643,0 ) ) -(109,429:23677625,38886001:501378,78643,0 -(109,429:23841479,38886001:173670,78643,0 +(105,429:23677625,38886001:501378,78643,0 +(105,429:23841479,38886001:173670,78643,0 ) ) -(109,429:24179003,38886001:501378,78643,0 -(109,429:24342857,38886001:173670,78643,0 +(105,429:24179003,38886001:501378,78643,0 +(105,429:24342857,38886001:173670,78643,0 ) ) -(109,429:24680381,38886001:501378,78643,0 -(109,429:24844235,38886001:173670,78643,0 +(105,429:24680381,38886001:501378,78643,0 +(105,429:24844235,38886001:173670,78643,0 ) ) -(109,429:25181759,38886001:501378,78643,0 -(109,429:25345613,38886001:173670,78643,0 +(105,429:25181759,38886001:501378,78643,0 +(105,429:25345613,38886001:173670,78643,0 ) ) -(109,429:25683137,38886001:501378,78643,0 -(109,429:25846991,38886001:173670,78643,0 +(105,429:25683137,38886001:501378,78643,0 +(105,429:25846991,38886001:173670,78643,0 ) ) -(109,429:26184515,38886001:501378,78643,0 -(109,429:26348369,38886001:173670,78643,0 +(105,429:26184515,38886001:501378,78643,0 +(105,429:26348369,38886001:173670,78643,0 ) ) -(109,429:26685893,38886001:501378,78643,0 -(109,429:26849747,38886001:173670,78643,0 +(105,429:26685893,38886001:501378,78643,0 +(105,429:26849747,38886001:173670,78643,0 ) ) -(109,429:27187271,38886001:501378,78643,0 -(109,429:27351125,38886001:173670,78643,0 +(105,429:27187271,38886001:501378,78643,0 +(105,429:27351125,38886001:173670,78643,0 ) ) -(109,429:27688649,38886001:501378,78643,0 -(109,429:27852503,38886001:173670,78643,0 +(105,429:27688649,38886001:501378,78643,0 +(105,429:27852503,38886001:173670,78643,0 ) ) -(109,429:28190027,38886001:501378,78643,0 -(109,429:28353881,38886001:173670,78643,0 +(105,429:28190027,38886001:501378,78643,0 +(105,429:28353881,38886001:173670,78643,0 ) ) -(109,429:28691405,38886001:501378,78643,0 -(109,429:28855259,38886001:173670,78643,0 +(105,429:28691405,38886001:501378,78643,0 +(105,429:28855259,38886001:173670,78643,0 ) ) -(109,429:29192783,38886001:501378,78643,0 -(109,429:29356637,38886001:173670,78643,0 +(105,429:29192783,38886001:501378,78643,0 +(105,429:29356637,38886001:173670,78643,0 ) ) -(109,429:29694161,38886001:501378,78643,0 -(109,429:29858015,38886001:173670,78643,0 +(105,429:29694161,38886001:501378,78643,0 +(105,429:29858015,38886001:173670,78643,0 ) ) -(109,429:30195539,38886001:501378,78643,0 -(109,429:30359393,38886001:173670,78643,0 +(105,429:30195539,38886001:501378,78643,0 +(105,429:30359393,38886001:173670,78643,0 ) ) -(109,429:30696917,38886001:501378,78643,0 -(109,429:30860771,38886001:173670,78643,0 +(105,429:30696917,38886001:501378,78643,0 +(105,429:30860771,38886001:173670,78643,0 ) ) -(109,429:31403379,38886001:1179650,485622,11795 -k109,429:31403379,38886001:0 -k109,429:31536199,38886001:132820 +(105,429:31239539,38886001:1343490,485622,11795 +k105,429:31239539,38886001:0 +k105,429:31387652,38886001:148113 ) -g109,429:30911859,38886001 -g109,429:32583029,38886001 +g105,429:30911859,38886001 +g105,429:32583029,38886001 ) -(109,431:6630773,39727489:25952256,513147,11795 -g109,431:11218293,39727489 -h109,431:11218293,39727489:2490370,0,0 -h109,431:13708663,39727489:0,0,0 -g109,431:9121143,39727489 -(109,431:9121143,39727489:2097150,485622,11795 -k109,431:11218293,39727489:155974 +(105,431:6630773,39727489:25952256,513147,11795 +g105,431:11218293,39727489 +h105,431:11218293,39727489:2490370,0,0 +h105,431:13708663,39727489:0,0,0 +g105,431:9121143,39727489 +(105,431:9121143,39727489:2097150,485622,11795 +k105,431:11218293,39727489:155974 ) -g109,431:13050680,39727489 -(109,431:13148687,39727489:501378,78643,0 -$109,431:13148687,39727489 -(109,431:13312541,39727489:173670,78643,0 +g105,431:13050680,39727489 +(105,431:13148687,39727489:501378,78643,0 +$105,431:13148687,39727489 +(105,431:13312541,39727489:173670,78643,0 ) -$109,431:13650065,39727489 +$105,431:13650065,39727489 ) -(109,431:13650065,39727489:501378,78643,0 -(109,431:13813919,39727489:173670,78643,0 +(105,431:13650065,39727489:501378,78643,0 +(105,431:13813919,39727489:173670,78643,0 ) ) -(109,431:14151443,39727489:501378,78643,0 -(109,431:14315297,39727489:173670,78643,0 +(105,431:14151443,39727489:501378,78643,0 +(105,431:14315297,39727489:173670,78643,0 ) ) -(109,431:14652821,39727489:501378,78643,0 -(109,431:14816675,39727489:173670,78643,0 +(105,431:14652821,39727489:501378,78643,0 +(105,431:14816675,39727489:173670,78643,0 ) ) -(109,431:15154199,39727489:501378,78643,0 -(109,431:15318053,39727489:173670,78643,0 +(105,431:15154199,39727489:501378,78643,0 +(105,431:15318053,39727489:173670,78643,0 ) ) -(109,431:15655577,39727489:501378,78643,0 -(109,431:15819431,39727489:173670,78643,0 +(105,431:15655577,39727489:501378,78643,0 +(105,431:15819431,39727489:173670,78643,0 ) ) -(109,431:16156955,39727489:501378,78643,0 -(109,431:16320809,39727489:173670,78643,0 +(105,431:16156955,39727489:501378,78643,0 +(105,431:16320809,39727489:173670,78643,0 ) ) -(109,431:16658333,39727489:501378,78643,0 -(109,431:16822187,39727489:173670,78643,0 +(105,431:16658333,39727489:501378,78643,0 +(105,431:16822187,39727489:173670,78643,0 ) ) -(109,431:17159711,39727489:501378,78643,0 -(109,431:17323565,39727489:173670,78643,0 +(105,431:17159711,39727489:501378,78643,0 +(105,431:17323565,39727489:173670,78643,0 ) ) -(109,431:17661089,39727489:501378,78643,0 -(109,431:17824943,39727489:173670,78643,0 +(105,431:17661089,39727489:501378,78643,0 +(105,431:17824943,39727489:173670,78643,0 ) ) -(109,431:18162467,39727489:501378,78643,0 -(109,431:18326321,39727489:173670,78643,0 +(105,431:18162467,39727489:501378,78643,0 +(105,431:18326321,39727489:173670,78643,0 ) ) -(109,431:18663845,39727489:501378,78643,0 -(109,431:18827699,39727489:173670,78643,0 +(105,431:18663845,39727489:501378,78643,0 +(105,431:18827699,39727489:173670,78643,0 ) ) -(109,431:19165223,39727489:501378,78643,0 -(109,431:19329077,39727489:173670,78643,0 +(105,431:19165223,39727489:501378,78643,0 +(105,431:19329077,39727489:173670,78643,0 ) ) -(109,431:19666601,39727489:501378,78643,0 -(109,431:19830455,39727489:173670,78643,0 +(105,431:19666601,39727489:501378,78643,0 +(105,431:19830455,39727489:173670,78643,0 ) ) -(109,431:20167979,39727489:501378,78643,0 -(109,431:20331833,39727489:173670,78643,0 +(105,431:20167979,39727489:501378,78643,0 +(105,431:20331833,39727489:173670,78643,0 ) ) -(109,431:20669357,39727489:501378,78643,0 -(109,431:20833211,39727489:173670,78643,0 +(105,431:20669357,39727489:501378,78643,0 +(105,431:20833211,39727489:173670,78643,0 ) ) -(109,431:21170735,39727489:501378,78643,0 -(109,431:21334589,39727489:173670,78643,0 +(105,431:21170735,39727489:501378,78643,0 +(105,431:21334589,39727489:173670,78643,0 ) ) -(109,431:21672113,39727489:501378,78643,0 -(109,431:21835967,39727489:173670,78643,0 +(105,431:21672113,39727489:501378,78643,0 +(105,431:21835967,39727489:173670,78643,0 ) ) -(109,431:22173491,39727489:501378,78643,0 -(109,431:22337345,39727489:173670,78643,0 +(105,431:22173491,39727489:501378,78643,0 +(105,431:22337345,39727489:173670,78643,0 ) ) -(109,431:22674869,39727489:501378,78643,0 -(109,431:22838723,39727489:173670,78643,0 +(105,431:22674869,39727489:501378,78643,0 +(105,431:22838723,39727489:173670,78643,0 ) ) -(109,431:23176247,39727489:501378,78643,0 -(109,431:23340101,39727489:173670,78643,0 +(105,431:23176247,39727489:501378,78643,0 +(105,431:23340101,39727489:173670,78643,0 ) ) -(109,431:23677625,39727489:501378,78643,0 -(109,431:23841479,39727489:173670,78643,0 +(105,431:23677625,39727489:501378,78643,0 +(105,431:23841479,39727489:173670,78643,0 ) ) -(109,431:24179003,39727489:501378,78643,0 -(109,431:24342857,39727489:173670,78643,0 +(105,431:24179003,39727489:501378,78643,0 +(105,431:24342857,39727489:173670,78643,0 ) ) -(109,431:24680381,39727489:501378,78643,0 -(109,431:24844235,39727489:173670,78643,0 +(105,431:24680381,39727489:501378,78643,0 +(105,431:24844235,39727489:173670,78643,0 ) ) -(109,431:25181759,39727489:501378,78643,0 -(109,431:25345613,39727489:173670,78643,0 +(105,431:25181759,39727489:501378,78643,0 +(105,431:25345613,39727489:173670,78643,0 ) ) -(109,431:25683137,39727489:501378,78643,0 -(109,431:25846991,39727489:173670,78643,0 +(105,431:25683137,39727489:501378,78643,0 +(105,431:25846991,39727489:173670,78643,0 ) ) -(109,431:26184515,39727489:501378,78643,0 -(109,431:26348369,39727489:173670,78643,0 +(105,431:26184515,39727489:501378,78643,0 +(105,431:26348369,39727489:173670,78643,0 ) ) -(109,431:26685893,39727489:501378,78643,0 -(109,431:26849747,39727489:173670,78643,0 +(105,431:26685893,39727489:501378,78643,0 +(105,431:26849747,39727489:173670,78643,0 ) ) -(109,431:27187271,39727489:501378,78643,0 -(109,431:27351125,39727489:173670,78643,0 +(105,431:27187271,39727489:501378,78643,0 +(105,431:27351125,39727489:173670,78643,0 ) ) -(109,431:27688649,39727489:501378,78643,0 -(109,431:27852503,39727489:173670,78643,0 +(105,431:27688649,39727489:501378,78643,0 +(105,431:27852503,39727489:173670,78643,0 ) ) -(109,431:28190027,39727489:501378,78643,0 -(109,431:28353881,39727489:173670,78643,0 +(105,431:28190027,39727489:501378,78643,0 +(105,431:28353881,39727489:173670,78643,0 ) ) -(109,431:28691405,39727489:501378,78643,0 -(109,431:28855259,39727489:173670,78643,0 +(105,431:28691405,39727489:501378,78643,0 +(105,431:28855259,39727489:173670,78643,0 ) ) -(109,431:29192783,39727489:501378,78643,0 -(109,431:29356637,39727489:173670,78643,0 +(105,431:29192783,39727489:501378,78643,0 +(105,431:29356637,39727489:173670,78643,0 ) ) -(109,431:29694161,39727489:501378,78643,0 -(109,431:29858015,39727489:173670,78643,0 +(105,431:29694161,39727489:501378,78643,0 +(105,431:29858015,39727489:173670,78643,0 ) ) -(109,431:30195539,39727489:501378,78643,0 -(109,431:30359393,39727489:173670,78643,0 +(105,431:30195539,39727489:501378,78643,0 +(105,431:30359393,39727489:173670,78643,0 ) ) -(109,431:30696917,39727489:501378,78643,0 -(109,431:30860771,39727489:173670,78643,0 +(105,431:30696917,39727489:501378,78643,0 +(105,431:30860771,39727489:173670,78643,0 ) ) -(109,431:31403380,39727489:1179650,485622,11795 -k109,431:31403380,39727489:0 -k109,431:31536200,39727489:132820 +(105,431:31239540,39727489:1343490,485622,11795 +k105,431:31239540,39727489:0 +k105,431:31387653,39727489:148113 ) -g109,431:30911860,39727489 -g109,431:32583030,39727489 +g105,431:30911860,39727489 +g105,431:32583030,39727489 ) -(109,433:6630773,40568977:25952256,505283,126483 -g109,433:11218293,40568977 -h109,433:11218293,40568977:2490370,0,0 -h109,433:13708663,40568977:0,0,0 -g109,433:9121143,40568977 -(109,433:9121143,40568977:2097150,485622,11795 -k109,433:11218293,40568977:155974 +(105,433:6630773,40568977:25952256,505283,126483 +g105,433:11218293,40568977 +h105,433:11218293,40568977:2490370,0,0 +h105,433:13708663,40568977:0,0,0 +g105,433:9121143,40568977 +(105,433:9121143,40568977:2097150,485622,11795 +k105,433:11218293,40568977:155974 ) -g109,433:13206655,40568977 -(109,433:13650065,40568977:501378,78643,0 -$109,433:13650065,40568977 -(109,433:13813919,40568977:173670,78643,0 +g105,433:13206655,40568977 +(105,433:13650065,40568977:501378,78643,0 +$105,433:13650065,40568977 +(105,433:13813919,40568977:173670,78643,0 ) -$109,433:14151443,40568977 +$105,433:14151443,40568977 ) -(109,433:14151443,40568977:501378,78643,0 -(109,433:14315297,40568977:173670,78643,0 +(105,433:14151443,40568977:501378,78643,0 +(105,433:14315297,40568977:173670,78643,0 ) ) -(109,433:14652821,40568977:501378,78643,0 -(109,433:14816675,40568977:173670,78643,0 +(105,433:14652821,40568977:501378,78643,0 +(105,433:14816675,40568977:173670,78643,0 ) ) -(109,433:15154199,40568977:501378,78643,0 -(109,433:15318053,40568977:173670,78643,0 +(105,433:15154199,40568977:501378,78643,0 +(105,433:15318053,40568977:173670,78643,0 ) ) -(109,433:15655577,40568977:501378,78643,0 -(109,433:15819431,40568977:173670,78643,0 +(105,433:15655577,40568977:501378,78643,0 +(105,433:15819431,40568977:173670,78643,0 ) ) -(109,433:16156955,40568977:501378,78643,0 -(109,433:16320809,40568977:173670,78643,0 +(105,433:16156955,40568977:501378,78643,0 +(105,433:16320809,40568977:173670,78643,0 ) ) -(109,433:16658333,40568977:501378,78643,0 -(109,433:16822187,40568977:173670,78643,0 +(105,433:16658333,40568977:501378,78643,0 +(105,433:16822187,40568977:173670,78643,0 ) ) -(109,433:17159711,40568977:501378,78643,0 -(109,433:17323565,40568977:173670,78643,0 +(105,433:17159711,40568977:501378,78643,0 +(105,433:17323565,40568977:173670,78643,0 ) ) -(109,433:17661089,40568977:501378,78643,0 -(109,433:17824943,40568977:173670,78643,0 +(105,433:17661089,40568977:501378,78643,0 +(105,433:17824943,40568977:173670,78643,0 ) ) -(109,433:18162467,40568977:501378,78643,0 -(109,433:18326321,40568977:173670,78643,0 +(105,433:18162467,40568977:501378,78643,0 +(105,433:18326321,40568977:173670,78643,0 ) ) -(109,433:18663845,40568977:501378,78643,0 -(109,433:18827699,40568977:173670,78643,0 +(105,433:18663845,40568977:501378,78643,0 +(105,433:18827699,40568977:173670,78643,0 ) ) -(109,433:19165223,40568977:501378,78643,0 -(109,433:19329077,40568977:173670,78643,0 +(105,433:19165223,40568977:501378,78643,0 +(105,433:19329077,40568977:173670,78643,0 ) ) -(109,433:19666601,40568977:501378,78643,0 -(109,433:19830455,40568977:173670,78643,0 +(105,433:19666601,40568977:501378,78643,0 +(105,433:19830455,40568977:173670,78643,0 ) ) -(109,433:20167979,40568977:501378,78643,0 -(109,433:20331833,40568977:173670,78643,0 +(105,433:20167979,40568977:501378,78643,0 +(105,433:20331833,40568977:173670,78643,0 ) ) -(109,433:20669357,40568977:501378,78643,0 -(109,433:20833211,40568977:173670,78643,0 +(105,433:20669357,40568977:501378,78643,0 +(105,433:20833211,40568977:173670,78643,0 ) ) -(109,433:21170735,40568977:501378,78643,0 -(109,433:21334589,40568977:173670,78643,0 +(105,433:21170735,40568977:501378,78643,0 +(105,433:21334589,40568977:173670,78643,0 ) ) -(109,433:21672113,40568977:501378,78643,0 -(109,433:21835967,40568977:173670,78643,0 +(105,433:21672113,40568977:501378,78643,0 +(105,433:21835967,40568977:173670,78643,0 ) ) -(109,433:22173491,40568977:501378,78643,0 -(109,433:22337345,40568977:173670,78643,0 +(105,433:22173491,40568977:501378,78643,0 +(105,433:22337345,40568977:173670,78643,0 ) ) -(109,433:22674869,40568977:501378,78643,0 -(109,433:22838723,40568977:173670,78643,0 +(105,433:22674869,40568977:501378,78643,0 +(105,433:22838723,40568977:173670,78643,0 ) ) -(109,433:23176247,40568977:501378,78643,0 -(109,433:23340101,40568977:173670,78643,0 +(105,433:23176247,40568977:501378,78643,0 +(105,433:23340101,40568977:173670,78643,0 ) ) -(109,433:23677625,40568977:501378,78643,0 -(109,433:23841479,40568977:173670,78643,0 +(105,433:23677625,40568977:501378,78643,0 +(105,433:23841479,40568977:173670,78643,0 ) ) -(109,433:24179003,40568977:501378,78643,0 -(109,433:24342857,40568977:173670,78643,0 +(105,433:24179003,40568977:501378,78643,0 +(105,433:24342857,40568977:173670,78643,0 ) ) -(109,433:24680381,40568977:501378,78643,0 -(109,433:24844235,40568977:173670,78643,0 +(105,433:24680381,40568977:501378,78643,0 +(105,433:24844235,40568977:173670,78643,0 ) ) -(109,433:25181759,40568977:501378,78643,0 -(109,433:25345613,40568977:173670,78643,0 +(105,433:25181759,40568977:501378,78643,0 +(105,433:25345613,40568977:173670,78643,0 ) ) -(109,433:25683137,40568977:501378,78643,0 -(109,433:25846991,40568977:173670,78643,0 +(105,433:25683137,40568977:501378,78643,0 +(105,433:25846991,40568977:173670,78643,0 ) ) -(109,433:26184515,40568977:501378,78643,0 -(109,433:26348369,40568977:173670,78643,0 +(105,433:26184515,40568977:501378,78643,0 +(105,433:26348369,40568977:173670,78643,0 ) ) -(109,433:26685893,40568977:501378,78643,0 -(109,433:26849747,40568977:173670,78643,0 +(105,433:26685893,40568977:501378,78643,0 +(105,433:26849747,40568977:173670,78643,0 ) ) -(109,433:27187271,40568977:501378,78643,0 -(109,433:27351125,40568977:173670,78643,0 +(105,433:27187271,40568977:501378,78643,0 +(105,433:27351125,40568977:173670,78643,0 ) ) -(109,433:27688649,40568977:501378,78643,0 -(109,433:27852503,40568977:173670,78643,0 +(105,433:27688649,40568977:501378,78643,0 +(105,433:27852503,40568977:173670,78643,0 ) ) -(109,433:28190027,40568977:501378,78643,0 -(109,433:28353881,40568977:173670,78643,0 +(105,433:28190027,40568977:501378,78643,0 +(105,433:28353881,40568977:173670,78643,0 ) ) -(109,433:28691405,40568977:501378,78643,0 -(109,433:28855259,40568977:173670,78643,0 +(105,433:28691405,40568977:501378,78643,0 +(105,433:28855259,40568977:173670,78643,0 ) ) -(109,433:29192783,40568977:501378,78643,0 -(109,433:29356637,40568977:173670,78643,0 +(105,433:29192783,40568977:501378,78643,0 +(105,433:29356637,40568977:173670,78643,0 ) ) -(109,433:29694161,40568977:501378,78643,0 -(109,433:29858015,40568977:173670,78643,0 +(105,433:29694161,40568977:501378,78643,0 +(105,433:29858015,40568977:173670,78643,0 ) ) -(109,433:30195539,40568977:501378,78643,0 -(109,433:30359393,40568977:173670,78643,0 +(105,433:30195539,40568977:501378,78643,0 +(105,433:30359393,40568977:173670,78643,0 ) ) -(109,433:30696917,40568977:501378,78643,0 -(109,433:30860771,40568977:173670,78643,0 +(105,433:30696917,40568977:501378,78643,0 +(105,433:30860771,40568977:173670,78643,0 ) ) -(109,433:31403379,40568977:1179650,485622,11795 -k109,433:31403379,40568977:0 -k109,433:31536199,40568977:132820 +(105,433:31239539,40568977:1343490,485622,11795 +k105,433:31239539,40568977:0 +k105,433:31387652,40568977:148113 ) -g109,433:30911859,40568977 -g109,433:32583029,40568977 +g105,433:30911859,40568977 +g105,433:32583029,40568977 ) -(109,435:6630773,41410465:25952256,505283,126483 -g109,435:9121143,41410465 -h109,435:9121143,41410465:983040,0,0 -h109,435:10104183,41410465:0,0,0 -g109,435:7613813,41410465 -(109,435:7613813,41410465:1507330,485622,11795 -k109,435:9121143,41410465:138283 +(105,435:6630773,41410465:25952256,505283,126483 +g105,435:9121143,41410465 +h105,435:9121143,41410465:983040,0,0 +h105,435:10104183,41410465:0,0,0 +g105,435:7613813,41410465 +(105,435:7613813,41410465:1507330,485622,11795 +k105,435:9121143,41410465:138283 ) -g109,435:12297673,41410465 -g109,435:14810978,41410465 -g109,435:16399570,41410465 -g109,435:16399570,41410465 -(109,435:16658333,41410465:501378,78643,0 -$109,435:16658333,41410465 -(109,435:16822187,41410465:173670,78643,0 +g105,435:12297673,41410465 +g105,435:14810978,41410465 +g105,435:16399570,41410465 +g105,435:16399570,41410465 +(105,435:16658333,41410465:501378,78643,0 +$105,435:16658333,41410465 +(105,435:16822187,41410465:173670,78643,0 ) -$109,435:17159711,41410465 +$105,435:17159711,41410465 ) -(109,435:17159711,41410465:501378,78643,0 -(109,435:17323565,41410465:173670,78643,0 +(105,435:17159711,41410465:501378,78643,0 +(105,435:17323565,41410465:173670,78643,0 ) ) -(109,435:17661089,41410465:501378,78643,0 -(109,435:17824943,41410465:173670,78643,0 +(105,435:17661089,41410465:501378,78643,0 +(105,435:17824943,41410465:173670,78643,0 ) ) -(109,435:18162467,41410465:501378,78643,0 -(109,435:18326321,41410465:173670,78643,0 +(105,435:18162467,41410465:501378,78643,0 +(105,435:18326321,41410465:173670,78643,0 ) ) -(109,435:18663845,41410465:501378,78643,0 -(109,435:18827699,41410465:173670,78643,0 +(105,435:18663845,41410465:501378,78643,0 +(105,435:18827699,41410465:173670,78643,0 ) ) -(109,435:19165223,41410465:501378,78643,0 -(109,435:19329077,41410465:173670,78643,0 +(105,435:19165223,41410465:501378,78643,0 +(105,435:19329077,41410465:173670,78643,0 ) ) -(109,435:19666601,41410465:501378,78643,0 -(109,435:19830455,41410465:173670,78643,0 +(105,435:19666601,41410465:501378,78643,0 +(105,435:19830455,41410465:173670,78643,0 ) ) -(109,435:20167979,41410465:501378,78643,0 -(109,435:20331833,41410465:173670,78643,0 +(105,435:20167979,41410465:501378,78643,0 +(105,435:20331833,41410465:173670,78643,0 ) ) -(109,435:20669357,41410465:501378,78643,0 -(109,435:20833211,41410465:173670,78643,0 +(105,435:20669357,41410465:501378,78643,0 +(105,435:20833211,41410465:173670,78643,0 ) ) -(109,435:21170735,41410465:501378,78643,0 -(109,435:21334589,41410465:173670,78643,0 +(105,435:21170735,41410465:501378,78643,0 +(105,435:21334589,41410465:173670,78643,0 ) ) -(109,435:21672113,41410465:501378,78643,0 -(109,435:21835967,41410465:173670,78643,0 +(105,435:21672113,41410465:501378,78643,0 +(105,435:21835967,41410465:173670,78643,0 ) ) -(109,435:22173491,41410465:501378,78643,0 -(109,435:22337345,41410465:173670,78643,0 +(105,435:22173491,41410465:501378,78643,0 +(105,435:22337345,41410465:173670,78643,0 ) ) -(109,435:22674869,41410465:501378,78643,0 -(109,435:22838723,41410465:173670,78643,0 +(105,435:22674869,41410465:501378,78643,0 +(105,435:22838723,41410465:173670,78643,0 ) ) -(109,435:23176247,41410465:501378,78643,0 -(109,435:23340101,41410465:173670,78643,0 +(105,435:23176247,41410465:501378,78643,0 +(105,435:23340101,41410465:173670,78643,0 ) ) -(109,435:23677625,41410465:501378,78643,0 -(109,435:23841479,41410465:173670,78643,0 +(105,435:23677625,41410465:501378,78643,0 +(105,435:23841479,41410465:173670,78643,0 ) ) -(109,435:24179003,41410465:501378,78643,0 -(109,435:24342857,41410465:173670,78643,0 +(105,435:24179003,41410465:501378,78643,0 +(105,435:24342857,41410465:173670,78643,0 ) ) -(109,435:24680381,41410465:501378,78643,0 -(109,435:24844235,41410465:173670,78643,0 +(105,435:24680381,41410465:501378,78643,0 +(105,435:24844235,41410465:173670,78643,0 ) ) -(109,435:25181759,41410465:501378,78643,0 -(109,435:25345613,41410465:173670,78643,0 +(105,435:25181759,41410465:501378,78643,0 +(105,435:25345613,41410465:173670,78643,0 ) ) -(109,435:25683137,41410465:501378,78643,0 -(109,435:25846991,41410465:173670,78643,0 +(105,435:25683137,41410465:501378,78643,0 +(105,435:25846991,41410465:173670,78643,0 ) ) -(109,435:26184515,41410465:501378,78643,0 -(109,435:26348369,41410465:173670,78643,0 +(105,435:26184515,41410465:501378,78643,0 +(105,435:26348369,41410465:173670,78643,0 ) ) -(109,435:26685893,41410465:501378,78643,0 -(109,435:26849747,41410465:173670,78643,0 +(105,435:26685893,41410465:501378,78643,0 +(105,435:26849747,41410465:173670,78643,0 ) ) -(109,435:27187271,41410465:501378,78643,0 -(109,435:27351125,41410465:173670,78643,0 +(105,435:27187271,41410465:501378,78643,0 +(105,435:27351125,41410465:173670,78643,0 ) ) -(109,435:27688649,41410465:501378,78643,0 -(109,435:27852503,41410465:173670,78643,0 +(105,435:27688649,41410465:501378,78643,0 +(105,435:27852503,41410465:173670,78643,0 ) ) -(109,435:28190027,41410465:501378,78643,0 -(109,435:28353881,41410465:173670,78643,0 +(105,435:28190027,41410465:501378,78643,0 +(105,435:28353881,41410465:173670,78643,0 ) ) -(109,435:28691405,41410465:501378,78643,0 -(109,435:28855259,41410465:173670,78643,0 +(105,435:28691405,41410465:501378,78643,0 +(105,435:28855259,41410465:173670,78643,0 ) ) -(109,435:29192783,41410465:501378,78643,0 -(109,435:29356637,41410465:173670,78643,0 +(105,435:29192783,41410465:501378,78643,0 +(105,435:29356637,41410465:173670,78643,0 ) ) -(109,435:29694161,41410465:501378,78643,0 -(109,435:29858015,41410465:173670,78643,0 +(105,435:29694161,41410465:501378,78643,0 +(105,435:29858015,41410465:173670,78643,0 ) ) -(109,435:30195539,41410465:501378,78643,0 -(109,435:30359393,41410465:173670,78643,0 +(105,435:30195539,41410465:501378,78643,0 +(105,435:30359393,41410465:173670,78643,0 ) ) -(109,435:30696917,41410465:501378,78643,0 -(109,435:30860771,41410465:173670,78643,0 +(105,435:30696917,41410465:501378,78643,0 +(105,435:30860771,41410465:173670,78643,0 ) ) -(109,435:31403379,41410465:1179650,485622,11795 -k109,435:31403379,41410465:0 -k109,435:31536199,41410465:132820 +(105,435:31239539,41410465:1343490,485622,11795 +k105,435:31239539,41410465:0 +k105,435:31387652,41410465:148113 ) -g109,435:30911859,41410465 -g109,435:32583029,41410465 +g105,435:30911859,41410465 +g105,435:32583029,41410465 ) -(109,437:6630773,42251953:25952256,513147,126483 -g109,437:9121143,42251953 -h109,437:9121143,42251953:983040,0,0 -h109,437:10104183,42251953:0,0,0 -g109,437:7613813,42251953 -(109,437:7613813,42251953:1507330,485622,11795 -k109,437:9121143,42251953:138283 +(105,437:6630773,42251953:25952256,513147,126483 +g105,437:9121143,42251953 +h105,437:9121143,42251953:983040,0,0 +h105,437:10104183,42251953:0,0,0 +g105,437:7613813,42251953 +(105,437:7613813,42251953:1507330,485622,11795 +k105,437:9121143,42251953:138283 ) -g109,437:10792311,42251953 -g109,437:14500338,42251953 -g109,437:16267188,42251953 -g109,437:19089168,42251953 -g109,437:21626066,42251953 -g109,437:21626066,42251953 -(109,437:21672113,42251953:501378,78643,0 -$109,437:21672113,42251953 -(109,437:21835967,42251953:173670,78643,0 +g105,437:10792311,42251953 +g105,437:14500338,42251953 +g105,437:16267188,42251953 +g105,437:19089168,42251953 +g105,437:21626066,42251953 +g105,437:21626066,42251953 +(105,437:21672113,42251953:501378,78643,0 +$105,437:21672113,42251953 +(105,437:21835967,42251953:173670,78643,0 ) -$109,437:22173491,42251953 +$105,437:22173491,42251953 ) -(109,437:22173491,42251953:501378,78643,0 -(109,437:22337345,42251953:173670,78643,0 +(105,437:22173491,42251953:501378,78643,0 +(105,437:22337345,42251953:173670,78643,0 ) ) -(109,437:22674869,42251953:501378,78643,0 -(109,437:22838723,42251953:173670,78643,0 +(105,437:22674869,42251953:501378,78643,0 +(105,437:22838723,42251953:173670,78643,0 ) ) -(109,437:23176247,42251953:501378,78643,0 -(109,437:23340101,42251953:173670,78643,0 +(105,437:23176247,42251953:501378,78643,0 +(105,437:23340101,42251953:173670,78643,0 ) ) -(109,437:23677625,42251953:501378,78643,0 -(109,437:23841479,42251953:173670,78643,0 +(105,437:23677625,42251953:501378,78643,0 +(105,437:23841479,42251953:173670,78643,0 ) ) -(109,437:24179003,42251953:501378,78643,0 -(109,437:24342857,42251953:173670,78643,0 +(105,437:24179003,42251953:501378,78643,0 +(105,437:24342857,42251953:173670,78643,0 ) ) -(109,437:24680381,42251953:501378,78643,0 -(109,437:24844235,42251953:173670,78643,0 +(105,437:24680381,42251953:501378,78643,0 +(105,437:24844235,42251953:173670,78643,0 ) ) -(109,437:25181759,42251953:501378,78643,0 -(109,437:25345613,42251953:173670,78643,0 +(105,437:25181759,42251953:501378,78643,0 +(105,437:25345613,42251953:173670,78643,0 ) ) -(109,437:25683137,42251953:501378,78643,0 -(109,437:25846991,42251953:173670,78643,0 +(105,437:25683137,42251953:501378,78643,0 +(105,437:25846991,42251953:173670,78643,0 ) ) -(109,437:26184515,42251953:501378,78643,0 -(109,437:26348369,42251953:173670,78643,0 +(105,437:26184515,42251953:501378,78643,0 +(105,437:26348369,42251953:173670,78643,0 ) ) -(109,437:26685893,42251953:501378,78643,0 -(109,437:26849747,42251953:173670,78643,0 +(105,437:26685893,42251953:501378,78643,0 +(105,437:26849747,42251953:173670,78643,0 ) ) -(109,437:27187271,42251953:501378,78643,0 -(109,437:27351125,42251953:173670,78643,0 +(105,437:27187271,42251953:501378,78643,0 +(105,437:27351125,42251953:173670,78643,0 ) ) -(109,437:27688649,42251953:501378,78643,0 -(109,437:27852503,42251953:173670,78643,0 +(105,437:27688649,42251953:501378,78643,0 +(105,437:27852503,42251953:173670,78643,0 ) ) -(109,437:28190027,42251953:501378,78643,0 -(109,437:28353881,42251953:173670,78643,0 +(105,437:28190027,42251953:501378,78643,0 +(105,437:28353881,42251953:173670,78643,0 ) ) -(109,437:28691405,42251953:501378,78643,0 -(109,437:28855259,42251953:173670,78643,0 +(105,437:28691405,42251953:501378,78643,0 +(105,437:28855259,42251953:173670,78643,0 ) ) -(109,437:29192783,42251953:501378,78643,0 -(109,437:29356637,42251953:173670,78643,0 +(105,437:29192783,42251953:501378,78643,0 +(105,437:29356637,42251953:173670,78643,0 ) ) -(109,437:29694161,42251953:501378,78643,0 -(109,437:29858015,42251953:173670,78643,0 +(105,437:29694161,42251953:501378,78643,0 +(105,437:29858015,42251953:173670,78643,0 ) ) -(109,437:30195539,42251953:501378,78643,0 -(109,437:30359393,42251953:173670,78643,0 +(105,437:30195539,42251953:501378,78643,0 +(105,437:30359393,42251953:173670,78643,0 ) ) -(109,437:30696917,42251953:501378,78643,0 -(109,437:30860771,42251953:173670,78643,0 +(105,437:30696917,42251953:501378,78643,0 +(105,437:30860771,42251953:173670,78643,0 ) ) -(109,437:31403379,42251953:1179650,485622,11795 -k109,437:31403379,42251953:0 -k109,437:31536199,42251953:132820 +(105,437:31239539,42251953:1343490,485622,11795 +k105,437:31239539,42251953:0 +k105,437:31387652,42251953:148113 ) -g109,437:30911859,42251953 -g109,437:32583029,42251953 +g105,437:30911859,42251953 +g105,437:32583029,42251953 ) -(109,439:6630773,43093441:25952256,505283,134348 -g109,439:11218293,43093441 -h109,439:11218293,43093441:2490370,0,0 -h109,439:13708663,43093441:0,0,0 -g109,439:9121143,43093441 -(109,439:9121143,43093441:2097150,485622,11795 -k109,439:11218293,43093441:155974 +(105,439:6630773,43093441:25952256,505283,134348 +g105,439:11218293,43093441 +h105,439:11218293,43093441:2490370,0,0 +h105,439:13708663,43093441:0,0,0 +g105,439:9121143,43093441 +(105,439:9121143,43093441:2097150,485622,11795 +k105,439:11218293,43093441:155974 ) -g109,439:13595284,43093441 -(109,439:13650065,43093441:501378,78643,0 -$109,439:13650065,43093441 -(109,439:13813919,43093441:173670,78643,0 +g105,439:13595284,43093441 +(105,439:13650065,43093441:501378,78643,0 +$105,439:13650065,43093441 +(105,439:13813919,43093441:173670,78643,0 ) -$109,439:14151443,43093441 +$105,439:14151443,43093441 ) -(109,439:14151443,43093441:501378,78643,0 -(109,439:14315297,43093441:173670,78643,0 +(105,439:14151443,43093441:501378,78643,0 +(105,439:14315297,43093441:173670,78643,0 ) ) -(109,439:14652821,43093441:501378,78643,0 -(109,439:14816675,43093441:173670,78643,0 +(105,439:14652821,43093441:501378,78643,0 +(105,439:14816675,43093441:173670,78643,0 ) ) -(109,439:15154199,43093441:501378,78643,0 -(109,439:15318053,43093441:173670,78643,0 +(105,439:15154199,43093441:501378,78643,0 +(105,439:15318053,43093441:173670,78643,0 ) ) -(109,439:15655577,43093441:501378,78643,0 -(109,439:15819431,43093441:173670,78643,0 +(105,439:15655577,43093441:501378,78643,0 +(105,439:15819431,43093441:173670,78643,0 ) ) -(109,439:16156955,43093441:501378,78643,0 -(109,439:16320809,43093441:173670,78643,0 +(105,439:16156955,43093441:501378,78643,0 +(105,439:16320809,43093441:173670,78643,0 ) ) -(109,439:16658333,43093441:501378,78643,0 -(109,439:16822187,43093441:173670,78643,0 +(105,439:16658333,43093441:501378,78643,0 +(105,439:16822187,43093441:173670,78643,0 ) ) -(109,439:17159711,43093441:501378,78643,0 -(109,439:17323565,43093441:173670,78643,0 +(105,439:17159711,43093441:501378,78643,0 +(105,439:17323565,43093441:173670,78643,0 ) ) -(109,439:17661089,43093441:501378,78643,0 -(109,439:17824943,43093441:173670,78643,0 +(105,439:17661089,43093441:501378,78643,0 +(105,439:17824943,43093441:173670,78643,0 ) ) -(109,439:18162467,43093441:501378,78643,0 -(109,439:18326321,43093441:173670,78643,0 +(105,439:18162467,43093441:501378,78643,0 +(105,439:18326321,43093441:173670,78643,0 ) ) -(109,439:18663845,43093441:501378,78643,0 -(109,439:18827699,43093441:173670,78643,0 +(105,439:18663845,43093441:501378,78643,0 +(105,439:18827699,43093441:173670,78643,0 ) ) -(109,439:19165223,43093441:501378,78643,0 -(109,439:19329077,43093441:173670,78643,0 +(105,439:19165223,43093441:501378,78643,0 +(105,439:19329077,43093441:173670,78643,0 ) ) -(109,439:19666601,43093441:501378,78643,0 -(109,439:19830455,43093441:173670,78643,0 +(105,439:19666601,43093441:501378,78643,0 +(105,439:19830455,43093441:173670,78643,0 ) ) -(109,439:20167979,43093441:501378,78643,0 -(109,439:20331833,43093441:173670,78643,0 +(105,439:20167979,43093441:501378,78643,0 +(105,439:20331833,43093441:173670,78643,0 ) ) -(109,439:20669357,43093441:501378,78643,0 -(109,439:20833211,43093441:173670,78643,0 +(105,439:20669357,43093441:501378,78643,0 +(105,439:20833211,43093441:173670,78643,0 ) ) -(109,439:21170735,43093441:501378,78643,0 -(109,439:21334589,43093441:173670,78643,0 +(105,439:21170735,43093441:501378,78643,0 +(105,439:21334589,43093441:173670,78643,0 ) ) -(109,439:21672113,43093441:501378,78643,0 -(109,439:21835967,43093441:173670,78643,0 +(105,439:21672113,43093441:501378,78643,0 +(105,439:21835967,43093441:173670,78643,0 ) ) -(109,439:22173491,43093441:501378,78643,0 -(109,439:22337345,43093441:173670,78643,0 +(105,439:22173491,43093441:501378,78643,0 +(105,439:22337345,43093441:173670,78643,0 ) ) -(109,439:22674869,43093441:501378,78643,0 -(109,439:22838723,43093441:173670,78643,0 +(105,439:22674869,43093441:501378,78643,0 +(105,439:22838723,43093441:173670,78643,0 ) ) -(109,439:23176247,43093441:501378,78643,0 -(109,439:23340101,43093441:173670,78643,0 +(105,439:23176247,43093441:501378,78643,0 +(105,439:23340101,43093441:173670,78643,0 ) ) -(109,439:23677625,43093441:501378,78643,0 -(109,439:23841479,43093441:173670,78643,0 +(105,439:23677625,43093441:501378,78643,0 +(105,439:23841479,43093441:173670,78643,0 ) ) -(109,439:24179003,43093441:501378,78643,0 -(109,439:24342857,43093441:173670,78643,0 +(105,439:24179003,43093441:501378,78643,0 +(105,439:24342857,43093441:173670,78643,0 ) ) -(109,439:24680381,43093441:501378,78643,0 -(109,439:24844235,43093441:173670,78643,0 +(105,439:24680381,43093441:501378,78643,0 +(105,439:24844235,43093441:173670,78643,0 ) ) -(109,439:25181759,43093441:501378,78643,0 -(109,439:25345613,43093441:173670,78643,0 +(105,439:25181759,43093441:501378,78643,0 +(105,439:25345613,43093441:173670,78643,0 ) ) -(109,439:25683137,43093441:501378,78643,0 -(109,439:25846991,43093441:173670,78643,0 +(105,439:25683137,43093441:501378,78643,0 +(105,439:25846991,43093441:173670,78643,0 ) ) -(109,439:26184515,43093441:501378,78643,0 -(109,439:26348369,43093441:173670,78643,0 +(105,439:26184515,43093441:501378,78643,0 +(105,439:26348369,43093441:173670,78643,0 ) ) -(109,439:26685893,43093441:501378,78643,0 -(109,439:26849747,43093441:173670,78643,0 +(105,439:26685893,43093441:501378,78643,0 +(105,439:26849747,43093441:173670,78643,0 ) ) -(109,439:27187271,43093441:501378,78643,0 -(109,439:27351125,43093441:173670,78643,0 +(105,439:27187271,43093441:501378,78643,0 +(105,439:27351125,43093441:173670,78643,0 ) ) -(109,439:27688649,43093441:501378,78643,0 -(109,439:27852503,43093441:173670,78643,0 +(105,439:27688649,43093441:501378,78643,0 +(105,439:27852503,43093441:173670,78643,0 ) ) -(109,439:28190027,43093441:501378,78643,0 -(109,439:28353881,43093441:173670,78643,0 +(105,439:28190027,43093441:501378,78643,0 +(105,439:28353881,43093441:173670,78643,0 ) ) -(109,439:28691405,43093441:501378,78643,0 -(109,439:28855259,43093441:173670,78643,0 +(105,439:28691405,43093441:501378,78643,0 +(105,439:28855259,43093441:173670,78643,0 ) ) -(109,439:29192783,43093441:501378,78643,0 -(109,439:29356637,43093441:173670,78643,0 +(105,439:29192783,43093441:501378,78643,0 +(105,439:29356637,43093441:173670,78643,0 ) ) -(109,439:29694161,43093441:501378,78643,0 -(109,439:29858015,43093441:173670,78643,0 +(105,439:29694161,43093441:501378,78643,0 +(105,439:29858015,43093441:173670,78643,0 ) ) -(109,439:30195539,43093441:501378,78643,0 -(109,439:30359393,43093441:173670,78643,0 +(105,439:30195539,43093441:501378,78643,0 +(105,439:30359393,43093441:173670,78643,0 ) ) -(109,439:30696917,43093441:501378,78643,0 -(109,439:30860771,43093441:173670,78643,0 +(105,439:30696917,43093441:501378,78643,0 +(105,439:30860771,43093441:173670,78643,0 ) ) -(109,439:31403380,43093441:1179650,485622,11795 -k109,439:31403380,43093441:0 -k109,439:31536200,43093441:132820 +(105,439:31239540,43093441:1343490,485622,11795 +k105,439:31239540,43093441:0 +k105,439:31387653,43093441:148113 ) -g109,439:30911860,43093441 -g109,439:32583030,43093441 +g105,439:30911860,43093441 +g105,439:32583030,43093441 ) -(109,441:6630773,43934929:25952256,505283,11795 -g109,441:9121143,43934929 -h109,441:9121143,43934929:983040,0,0 -h109,441:10104183,43934929:0,0,0 -g109,441:7613813,43934929 -(109,441:7613813,43934929:1507330,485622,11795 -k109,441:9121143,43934929:138283 +(105,441:6630773,43934929:25952256,505283,11795 +g105,441:9121143,43934929 +h105,441:9121143,43934929:983040,0,0 +h105,441:10104183,43934929:0,0,0 +g105,441:7613813,43934929 +(105,441:7613813,43934929:1507330,485622,11795 +k105,441:9121143,43934929:138283 ) -g109,441:12556540,43934929 -g109,441:12556540,43934929 -(109,441:12647309,43934929:501378,78643,0 -$109,441:12647309,43934929 -(109,441:12811163,43934929:173670,78643,0 +g105,441:12556540,43934929 +g105,441:12556540,43934929 +(105,441:12647309,43934929:501378,78643,0 +$105,441:12647309,43934929 +(105,441:12811163,43934929:173670,78643,0 ) -$109,441:13148687,43934929 +$105,441:13148687,43934929 ) -(109,441:13148687,43934929:501378,78643,0 -(109,441:13312541,43934929:173670,78643,0 +(105,441:13148687,43934929:501378,78643,0 +(105,441:13312541,43934929:173670,78643,0 ) ) -(109,441:13650065,43934929:501378,78643,0 -(109,441:13813919,43934929:173670,78643,0 +(105,441:13650065,43934929:501378,78643,0 +(105,441:13813919,43934929:173670,78643,0 ) ) -(109,441:14151443,43934929:501378,78643,0 -(109,441:14315297,43934929:173670,78643,0 +(105,441:14151443,43934929:501378,78643,0 +(105,441:14315297,43934929:173670,78643,0 ) ) -(109,441:14652821,43934929:501378,78643,0 -(109,441:14816675,43934929:173670,78643,0 +(105,441:14652821,43934929:501378,78643,0 +(105,441:14816675,43934929:173670,78643,0 ) ) -(109,441:15154199,43934929:501378,78643,0 -(109,441:15318053,43934929:173670,78643,0 +(105,441:15154199,43934929:501378,78643,0 +(105,441:15318053,43934929:173670,78643,0 ) ) -(109,441:15655577,43934929:501378,78643,0 -(109,441:15819431,43934929:173670,78643,0 +(105,441:15655577,43934929:501378,78643,0 +(105,441:15819431,43934929:173670,78643,0 ) ) -(109,441:16156955,43934929:501378,78643,0 -(109,441:16320809,43934929:173670,78643,0 +(105,441:16156955,43934929:501378,78643,0 +(105,441:16320809,43934929:173670,78643,0 ) ) -(109,441:16658333,43934929:501378,78643,0 -(109,441:16822187,43934929:173670,78643,0 +(105,441:16658333,43934929:501378,78643,0 +(105,441:16822187,43934929:173670,78643,0 ) ) -(109,441:17159711,43934929:501378,78643,0 -(109,441:17323565,43934929:173670,78643,0 +(105,441:17159711,43934929:501378,78643,0 +(105,441:17323565,43934929:173670,78643,0 ) ) -(109,441:17661089,43934929:501378,78643,0 -(109,441:17824943,43934929:173670,78643,0 +(105,441:17661089,43934929:501378,78643,0 +(105,441:17824943,43934929:173670,78643,0 ) ) -(109,441:18162467,43934929:501378,78643,0 -(109,441:18326321,43934929:173670,78643,0 +(105,441:18162467,43934929:501378,78643,0 +(105,441:18326321,43934929:173670,78643,0 ) ) -(109,441:18663845,43934929:501378,78643,0 -(109,441:18827699,43934929:173670,78643,0 +(105,441:18663845,43934929:501378,78643,0 +(105,441:18827699,43934929:173670,78643,0 ) ) -(109,441:19165223,43934929:501378,78643,0 -(109,441:19329077,43934929:173670,78643,0 +(105,441:19165223,43934929:501378,78643,0 +(105,441:19329077,43934929:173670,78643,0 ) ) -(109,441:19666601,43934929:501378,78643,0 -(109,441:19830455,43934929:173670,78643,0 +(105,441:19666601,43934929:501378,78643,0 +(105,441:19830455,43934929:173670,78643,0 ) ) -(109,441:20167979,43934929:501378,78643,0 -(109,441:20331833,43934929:173670,78643,0 +(105,441:20167979,43934929:501378,78643,0 +(105,441:20331833,43934929:173670,78643,0 ) ) -(109,441:20669357,43934929:501378,78643,0 -(109,441:20833211,43934929:173670,78643,0 +(105,441:20669357,43934929:501378,78643,0 +(105,441:20833211,43934929:173670,78643,0 ) ) -(109,441:21170735,43934929:501378,78643,0 -(109,441:21334589,43934929:173670,78643,0 +(105,441:21170735,43934929:501378,78643,0 +(105,441:21334589,43934929:173670,78643,0 ) ) -(109,441:21672113,43934929:501378,78643,0 -(109,441:21835967,43934929:173670,78643,0 +(105,441:21672113,43934929:501378,78643,0 +(105,441:21835967,43934929:173670,78643,0 ) ) -(109,441:22173491,43934929:501378,78643,0 -(109,441:22337345,43934929:173670,78643,0 +(105,441:22173491,43934929:501378,78643,0 +(105,441:22337345,43934929:173670,78643,0 ) ) -(109,441:22674869,43934929:501378,78643,0 -(109,441:22838723,43934929:173670,78643,0 +(105,441:22674869,43934929:501378,78643,0 +(105,441:22838723,43934929:173670,78643,0 ) ) -(109,441:23176247,43934929:501378,78643,0 -(109,441:23340101,43934929:173670,78643,0 +(105,441:23176247,43934929:501378,78643,0 +(105,441:23340101,43934929:173670,78643,0 ) ) -(109,441:23677625,43934929:501378,78643,0 -(109,441:23841479,43934929:173670,78643,0 +(105,441:23677625,43934929:501378,78643,0 +(105,441:23841479,43934929:173670,78643,0 ) ) -(109,441:24179003,43934929:501378,78643,0 -(109,441:24342857,43934929:173670,78643,0 +(105,441:24179003,43934929:501378,78643,0 +(105,441:24342857,43934929:173670,78643,0 ) ) -(109,441:24680381,43934929:501378,78643,0 -(109,441:24844235,43934929:173670,78643,0 +(105,441:24680381,43934929:501378,78643,0 +(105,441:24844235,43934929:173670,78643,0 ) ) -(109,441:25181759,43934929:501378,78643,0 -(109,441:25345613,43934929:173670,78643,0 +(105,441:25181759,43934929:501378,78643,0 +(105,441:25345613,43934929:173670,78643,0 ) ) -(109,441:25683137,43934929:501378,78643,0 -(109,441:25846991,43934929:173670,78643,0 +(105,441:25683137,43934929:501378,78643,0 +(105,441:25846991,43934929:173670,78643,0 ) ) -(109,441:26184515,43934929:501378,78643,0 -(109,441:26348369,43934929:173670,78643,0 +(105,441:26184515,43934929:501378,78643,0 +(105,441:26348369,43934929:173670,78643,0 ) ) -(109,441:26685893,43934929:501378,78643,0 -(109,441:26849747,43934929:173670,78643,0 +(105,441:26685893,43934929:501378,78643,0 +(105,441:26849747,43934929:173670,78643,0 ) ) -(109,441:27187271,43934929:501378,78643,0 -(109,441:27351125,43934929:173670,78643,0 +(105,441:27187271,43934929:501378,78643,0 +(105,441:27351125,43934929:173670,78643,0 ) ) -(109,441:27688649,43934929:501378,78643,0 -(109,441:27852503,43934929:173670,78643,0 +(105,441:27688649,43934929:501378,78643,0 +(105,441:27852503,43934929:173670,78643,0 ) ) -(109,441:28190027,43934929:501378,78643,0 -(109,441:28353881,43934929:173670,78643,0 +(105,441:28190027,43934929:501378,78643,0 +(105,441:28353881,43934929:173670,78643,0 ) ) -(109,441:28691405,43934929:501378,78643,0 -(109,441:28855259,43934929:173670,78643,0 +(105,441:28691405,43934929:501378,78643,0 +(105,441:28855259,43934929:173670,78643,0 ) ) -(109,441:29192783,43934929:501378,78643,0 -(109,441:29356637,43934929:173670,78643,0 +(105,441:29192783,43934929:501378,78643,0 +(105,441:29356637,43934929:173670,78643,0 ) ) -(109,441:29694161,43934929:501378,78643,0 -(109,441:29858015,43934929:173670,78643,0 +(105,441:29694161,43934929:501378,78643,0 +(105,441:29858015,43934929:173670,78643,0 ) ) -(109,441:30195539,43934929:501378,78643,0 -(109,441:30359393,43934929:173670,78643,0 +(105,441:30195539,43934929:501378,78643,0 +(105,441:30359393,43934929:173670,78643,0 ) ) -(109,441:30696917,43934929:501378,78643,0 -(109,441:30860771,43934929:173670,78643,0 +(105,441:30696917,43934929:501378,78643,0 +(105,441:30860771,43934929:173670,78643,0 ) ) -(109,441:31403380,43934929:1179650,485622,11795 -k109,441:31403380,43934929:0 -k109,441:31536200,43934929:132820 +(105,441:31239540,43934929:1343490,485622,11795 +k105,441:31239540,43934929:0 +k105,441:31387653,43934929:148113 ) -g109,441:30911860,43934929 -g109,441:32583030,43934929 +g105,441:30911860,43934929 +g105,441:32583030,43934929 ) -(109,443:6630773,44776417:25952256,505283,134348 -g109,443:9121143,44776417 -h109,443:9121143,44776417:983040,0,0 -h109,443:10104183,44776417:0,0,0 -g109,443:7613813,44776417 -(109,443:7613813,44776417:1507330,485622,11795 -k109,443:9121143,44776417:138283 +(105,443:6630773,44776417:25952256,505283,134348 +g105,443:9121143,44776417 +h105,443:9121143,44776417:983040,0,0 +h105,443:10104183,44776417:0,0,0 +g105,443:7613813,44776417 +(105,443:7613813,44776417:1507330,485622,11795 +k105,443:9121143,44776417:138283 ) -g109,443:11690154,44776417 -g109,443:14291933,44776417 -g109,443:14291933,44776417 -(109,443:14652821,44776417:501378,78643,0 -$109,443:14652821,44776417 -(109,443:14816675,44776417:173670,78643,0 +g105,443:11690154,44776417 +g105,443:14291933,44776417 +g105,443:14291933,44776417 +(105,443:14652821,44776417:501378,78643,0 +$105,443:14652821,44776417 +(105,443:14816675,44776417:173670,78643,0 ) -$109,443:15154199,44776417 +$105,443:15154199,44776417 ) -(109,443:15154199,44776417:501378,78643,0 -(109,443:15318053,44776417:173670,78643,0 +(105,443:15154199,44776417:501378,78643,0 +(105,443:15318053,44776417:173670,78643,0 ) ) -(109,443:15655577,44776417:501378,78643,0 -(109,443:15819431,44776417:173670,78643,0 +(105,443:15655577,44776417:501378,78643,0 +(105,443:15819431,44776417:173670,78643,0 ) ) -(109,443:16156955,44776417:501378,78643,0 -(109,443:16320809,44776417:173670,78643,0 +(105,443:16156955,44776417:501378,78643,0 +(105,443:16320809,44776417:173670,78643,0 ) ) -(109,443:16658333,44776417:501378,78643,0 -(109,443:16822187,44776417:173670,78643,0 +(105,443:16658333,44776417:501378,78643,0 +(105,443:16822187,44776417:173670,78643,0 ) ) -(109,443:17159711,44776417:501378,78643,0 -(109,443:17323565,44776417:173670,78643,0 +(105,443:17159711,44776417:501378,78643,0 +(105,443:17323565,44776417:173670,78643,0 ) ) -(109,443:17661089,44776417:501378,78643,0 -(109,443:17824943,44776417:173670,78643,0 +(105,443:17661089,44776417:501378,78643,0 +(105,443:17824943,44776417:173670,78643,0 ) ) -(109,443:18162467,44776417:501378,78643,0 -(109,443:18326321,44776417:173670,78643,0 +(105,443:18162467,44776417:501378,78643,0 +(105,443:18326321,44776417:173670,78643,0 ) ) -(109,443:18663845,44776417:501378,78643,0 -(109,443:18827699,44776417:173670,78643,0 +(105,443:18663845,44776417:501378,78643,0 +(105,443:18827699,44776417:173670,78643,0 ) ) -(109,443:19165223,44776417:501378,78643,0 -(109,443:19329077,44776417:173670,78643,0 +(105,443:19165223,44776417:501378,78643,0 +(105,443:19329077,44776417:173670,78643,0 ) ) -(109,443:19666601,44776417:501378,78643,0 -(109,443:19830455,44776417:173670,78643,0 +(105,443:19666601,44776417:501378,78643,0 +(105,443:19830455,44776417:173670,78643,0 ) ) -(109,443:20167979,44776417:501378,78643,0 -(109,443:20331833,44776417:173670,78643,0 +(105,443:20167979,44776417:501378,78643,0 +(105,443:20331833,44776417:173670,78643,0 ) ) -(109,443:20669357,44776417:501378,78643,0 -(109,443:20833211,44776417:173670,78643,0 +(105,443:20669357,44776417:501378,78643,0 +(105,443:20833211,44776417:173670,78643,0 ) ) -(109,443:21170735,44776417:501378,78643,0 -(109,443:21334589,44776417:173670,78643,0 +(105,443:21170735,44776417:501378,78643,0 +(105,443:21334589,44776417:173670,78643,0 ) ) -(109,443:21672113,44776417:501378,78643,0 -(109,443:21835967,44776417:173670,78643,0 +(105,443:21672113,44776417:501378,78643,0 +(105,443:21835967,44776417:173670,78643,0 ) ) -(109,443:22173491,44776417:501378,78643,0 -(109,443:22337345,44776417:173670,78643,0 +(105,443:22173491,44776417:501378,78643,0 +(105,443:22337345,44776417:173670,78643,0 ) ) -(109,443:22674869,44776417:501378,78643,0 -(109,443:22838723,44776417:173670,78643,0 +(105,443:22674869,44776417:501378,78643,0 +(105,443:22838723,44776417:173670,78643,0 ) ) -(109,443:23176247,44776417:501378,78643,0 -(109,443:23340101,44776417:173670,78643,0 +(105,443:23176247,44776417:501378,78643,0 +(105,443:23340101,44776417:173670,78643,0 ) ) -(109,443:23677625,44776417:501378,78643,0 -(109,443:23841479,44776417:173670,78643,0 +(105,443:23677625,44776417:501378,78643,0 +(105,443:23841479,44776417:173670,78643,0 ) ) -(109,443:24179003,44776417:501378,78643,0 -(109,443:24342857,44776417:173670,78643,0 +(105,443:24179003,44776417:501378,78643,0 +(105,443:24342857,44776417:173670,78643,0 ) ) -(109,443:24680381,44776417:501378,78643,0 -(109,443:24844235,44776417:173670,78643,0 +(105,443:24680381,44776417:501378,78643,0 +(105,443:24844235,44776417:173670,78643,0 ) ) -(109,443:25181759,44776417:501378,78643,0 -(109,443:25345613,44776417:173670,78643,0 +(105,443:25181759,44776417:501378,78643,0 +(105,443:25345613,44776417:173670,78643,0 ) ) -(109,443:25683137,44776417:501378,78643,0 -(109,443:25846991,44776417:173670,78643,0 +(105,443:25683137,44776417:501378,78643,0 +(105,443:25846991,44776417:173670,78643,0 ) ) -(109,443:26184515,44776417:501378,78643,0 -(109,443:26348369,44776417:173670,78643,0 +(105,443:26184515,44776417:501378,78643,0 +(105,443:26348369,44776417:173670,78643,0 ) ) -(109,443:26685893,44776417:501378,78643,0 -(109,443:26849747,44776417:173670,78643,0 +(105,443:26685893,44776417:501378,78643,0 +(105,443:26849747,44776417:173670,78643,0 ) ) -(109,443:27187271,44776417:501378,78643,0 -(109,443:27351125,44776417:173670,78643,0 +(105,443:27187271,44776417:501378,78643,0 +(105,443:27351125,44776417:173670,78643,0 ) ) -(109,443:27688649,44776417:501378,78643,0 -(109,443:27852503,44776417:173670,78643,0 +(105,443:27688649,44776417:501378,78643,0 +(105,443:27852503,44776417:173670,78643,0 ) ) -(109,443:28190027,44776417:501378,78643,0 -(109,443:28353881,44776417:173670,78643,0 +(105,443:28190027,44776417:501378,78643,0 +(105,443:28353881,44776417:173670,78643,0 ) ) -(109,443:28691405,44776417:501378,78643,0 -(109,443:28855259,44776417:173670,78643,0 +(105,443:28691405,44776417:501378,78643,0 +(105,443:28855259,44776417:173670,78643,0 ) ) -(109,443:29192783,44776417:501378,78643,0 -(109,443:29356637,44776417:173670,78643,0 +(105,443:29192783,44776417:501378,78643,0 +(105,443:29356637,44776417:173670,78643,0 ) ) -(109,443:29694161,44776417:501378,78643,0 -(109,443:29858015,44776417:173670,78643,0 +(105,443:29694161,44776417:501378,78643,0 +(105,443:29858015,44776417:173670,78643,0 ) ) -(109,443:30195539,44776417:501378,78643,0 -(109,443:30359393,44776417:173670,78643,0 +(105,443:30195539,44776417:501378,78643,0 +(105,443:30359393,44776417:173670,78643,0 ) ) -(109,443:30696917,44776417:501378,78643,0 -(109,443:30860771,44776417:173670,78643,0 +(105,443:30696917,44776417:501378,78643,0 +(105,443:30860771,44776417:173670,78643,0 ) ) -(109,443:31403379,44776417:1179650,485622,11795 -k109,443:31403379,44776417:0 -k109,443:31536199,44776417:132820 +(105,443:31239539,44776417:1343490,485622,11795 +k105,443:31239539,44776417:0 +k105,443:31387652,44776417:148113 ) -g109,443:30911859,44776417 -g109,443:32583029,44776417 +g105,443:30911859,44776417 +g105,443:32583029,44776417 ) ] -(109,445:32583029,45706769:0,0,0 -g109,445:32583029,45706769 +(105,445:32583029,45706769:0,0,0 +g105,445:32583029,45706769 ) ) ] -(109,445:6630773,47279633:25952256,0,0 -h109,445:6630773,47279633:25952256,0,0 +(105,445:6630773,47279633:25952256,0,0 +h105,445:6630773,47279633:25952256,0,0 ) ] -h109,445:4262630,4025873:0,0,0 +h105,445:4262630,4025873:0,0,0 ] -!147385 +!147377 }6 !11 {7 -[1,88:4262630,47279633:28320399,43253760,0 -(1,88:4262630,4025873:0,0,0 -[1,88:-473657,4025873:25952256,0,0 -(1,88:-473657,-710414:25952256,0,0 -h1,88:-473657,-710414:0,0,0 -(1,88:-473657,-710414:0,0,0 -(1,88:-473657,-710414:0,0,0 -g1,88:-473657,-710414 -(1,88:-473657,-710414:65781,0,65781 -g1,88:-407876,-710414 -[1,88:-407876,-644633:0,0,0 +[1,94:4262630,47279633:28320399,43253760,0 +(1,94:4262630,4025873:0,0,0 +[1,94:-473657,4025873:25952256,0,0 +(1,94:-473657,-710414:25952256,0,0 +h1,94:-473657,-710414:0,0,0 +(1,94:-473657,-710414:0,0,0 +(1,94:-473657,-710414:0,0,0 +g1,94:-473657,-710414 +(1,94:-473657,-710414:65781,0,65781 +g1,94:-407876,-710414 +[1,94:-407876,-644633:0,0,0 ] ) -k1,88:-473657,-710414:-65781 +k1,94:-473657,-710414:-65781 ) ) -k1,88:25478599,-710414:25952256 -g1,88:25478599,-710414 +k1,94:25478599,-710414:25952256 +g1,94:25478599,-710414 ) ] ) -[1,88:6630773,47279633:25952256,43253760,0 -[1,88:6630773,4812305:25952256,786432,0 -(1,88:6630773,4812305:25952256,485622,11795 -(1,88:6630773,4812305:25952256,485622,11795 -g1,88:3078558,4812305 -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,2439708:0,1703936,0 -k1,88:1358238,2439708:-1720320 -(1,86:1358238,2439708:1720320,1703936,0 -(1,86:1358238,2439708:1179648,16384,0 -r1,88:2537886,2439708:1179648,16384,0 +[1,94:6630773,47279633:25952256,43253760,0 +[1,94:6630773,4812305:25952256,786432,0 +(1,94:6630773,4812305:25952256,485622,11795 +(1,94:6630773,4812305:25952256,485622,11795 +g1,94:3078558,4812305 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,2439708:0,1703936,0 +k1,94:1358238,2439708:-1720320 +(1,92:1358238,2439708:1720320,1703936,0 +(1,92:1358238,2439708:1179648,16384,0 +r1,94:2537886,2439708:1179648,16384,0 ) -g1,86:3062174,2439708 -(1,86:3062174,2439708:16384,1703936,0 -[1,86:3062174,2439708:25952256,1703936,0 -(1,86:3062174,1915420:25952256,1179648,0 -(1,86:3062174,1915420:16384,1179648,0 -r1,88:3078558,1915420:16384,1179648,0 +g1,92:3062174,2439708 +(1,92:3062174,2439708:16384,1703936,0 +[1,92:3062174,2439708:25952256,1703936,0 +(1,92:3062174,1915420:25952256,1179648,0 +(1,92:3062174,1915420:16384,1179648,0 +r1,94:3078558,1915420:16384,1179648,0 ) -k1,86:29014430,1915420:25935872 -g1,86:29014430,1915420 +k1,92:29014430,1915420:25935872 +g1,92:29014430,1915420 ) ] ) ) ) ] -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,2439708:0,1703936,0 -g1,88:29030814,2439708 -g1,88:36135244,2439708 -(1,86:36135244,2439708:1720320,1703936,0 -(1,86:36135244,2439708:16384,1703936,0 -[1,86:36135244,2439708:25952256,1703936,0 -(1,86:36135244,1915420:25952256,1179648,0 -(1,86:36135244,1915420:16384,1179648,0 -r1,88:36151628,1915420:16384,1179648,0 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,2439708:0,1703936,0 +g1,94:29030814,2439708 +g1,94:36135244,2439708 +(1,92:36135244,2439708:1720320,1703936,0 +(1,92:36135244,2439708:16384,1703936,0 +[1,92:36135244,2439708:25952256,1703936,0 +(1,92:36135244,1915420:25952256,1179648,0 +(1,92:36135244,1915420:16384,1179648,0 +r1,94:36151628,1915420:16384,1179648,0 ) -k1,86:62087500,1915420:25935872 -g1,86:62087500,1915420 +k1,92:62087500,1915420:25935872 +g1,92:62087500,1915420 ) ] ) -g1,86:36675916,2439708 -(1,86:36675916,2439708:1179648,16384,0 -r1,88:37855564,2439708:1179648,16384,0 +g1,92:36675916,2439708 +(1,92:36675916,2439708:1179648,16384,0 +r1,94:37855564,2439708:1179648,16384,0 ) ) -k1,88:3078556,2439708:-34777008 +k1,94:3078556,2439708:-34777008 ) ] -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,49800853:0,16384,2228224 -k1,88:1358238,49800853:-1720320 -(1,86:1358238,49800853:1720320,16384,2228224 -(1,86:1358238,49800853:1179648,16384,0 -r1,88:2537886,49800853:1179648,16384,0 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,49800853:0,16384,2228224 +k1,94:1358238,49800853:-1720320 +(1,92:1358238,49800853:1720320,16384,2228224 +(1,92:1358238,49800853:1179648,16384,0 +r1,94:2537886,49800853:1179648,16384,0 ) -g1,86:3062174,49800853 -(1,86:3062174,52029077:16384,1703936,0 -[1,86:3062174,52029077:25952256,1703936,0 -(1,86:3062174,51504789:25952256,1179648,0 -(1,86:3062174,51504789:16384,1179648,0 -r1,88:3078558,51504789:16384,1179648,0 +g1,92:3062174,49800853 +(1,92:3062174,52029077:16384,1703936,0 +[1,92:3062174,52029077:25952256,1703936,0 +(1,92:3062174,51504789:25952256,1179648,0 +(1,92:3062174,51504789:16384,1179648,0 +r1,94:3078558,51504789:16384,1179648,0 ) -k1,86:29014430,51504789:25935872 -g1,86:29014430,51504789 +k1,92:29014430,51504789:25935872 +g1,92:29014430,51504789 ) ] ) ) ) ] -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,49800853:0,16384,2228224 -g1,88:29030814,49800853 -g1,88:36135244,49800853 -(1,86:36135244,49800853:1720320,16384,2228224 -(1,86:36135244,52029077:16384,1703936,0 -[1,86:36135244,52029077:25952256,1703936,0 -(1,86:36135244,51504789:25952256,1179648,0 -(1,86:36135244,51504789:16384,1179648,0 -r1,88:36151628,51504789:16384,1179648,0 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,49800853:0,16384,2228224 +g1,94:29030814,49800853 +g1,94:36135244,49800853 +(1,92:36135244,49800853:1720320,16384,2228224 +(1,92:36135244,52029077:16384,1703936,0 +[1,92:36135244,52029077:25952256,1703936,0 +(1,92:36135244,51504789:25952256,1179648,0 +(1,92:36135244,51504789:16384,1179648,0 +r1,94:36151628,51504789:16384,1179648,0 ) -k1,86:62087500,51504789:25935872 -g1,86:62087500,51504789 +k1,92:62087500,51504789:25935872 +g1,92:62087500,51504789 ) ] ) -g1,86:36675916,49800853 -(1,86:36675916,49800853:1179648,16384,0 -r1,88:37855564,49800853:1179648,16384,0 +g1,92:36675916,49800853 +(1,92:36675916,49800853:1179648,16384,0 +r1,94:37855564,49800853:1179648,16384,0 ) ) -k1,88:3078556,49800853:-34777008 +k1,94:3078556,49800853:-34777008 ) ] -g1,88:6630773,4812305 -k1,88:29827896,4812305:22429696 +g1,94:6630773,4812305 +k1,94:29827896,4812305:22429696 ) ) ] -[1,88:6630773,45706769:25952256,40108032,0 -(1,88:6630773,45706769:25952256,40108032,0 -(1,88:6630773,45706769:0,0,0 -g1,88:6630773,45706769 -) -[1,88:6630773,45706769:25952256,40108032,0 -(109,445:6630773,6254097:25952256,505283,134348 -g109,445:7613813,6254097 -h109,445:7613813,6254097:0,0,0 -g109,445:6630773,6254097 -k109,445:21129957,6254097:10273422 -k109,445:31403379,6254097:10273422 -(109,445:31403379,6254097:1179650,485622,11795 -k109,445:31358161,6254097:-45218 -) -g109,445:31403379,6254097 -g109,445:32583029,6254097 +[1,94:6630773,45706769:25952256,40108032,0 +(1,94:6630773,45706769:25952256,40108032,0 +(1,94:6630773,45706769:0,0,0 +g1,94:6630773,45706769 ) -(109,447:6630773,7750945:25952256,505283,11795 -g109,447:7613813,7750945 -h109,447:7613813,7750945:0,0,0 -g109,447:6630773,7750945 -g109,447:9374110,7750945 -k109,447:21306576,7750945:10096803 -k109,447:31403379,7750945:10096803 -(109,447:31403379,7750945:1179650,485622,11795 -k109,447:31358161,7750945:-45218 +[1,94:6630773,45706769:25952256,40108032,0 +(105,445:6630773,6254097:25952256,505283,11795 +g105,445:7613813,6254097 +h105,445:7613813,6254097:0,0,0 +g105,445:6630773,6254097 +g105,445:9374110,6254097 +k105,445:21224656,6254097:10014883 +k105,445:31239539,6254097:10014883 +(105,445:31239539,6254097:1343490,485622,11795 +k105,445:31358161,6254097:118622 ) -g109,447:31403379,7750945 -g109,447:32583029,7750945 +g105,445:31239539,6254097 +g105,445:32583029,6254097 ) -(109,449:6630773,9247793:25952256,513147,134348 -g109,449:7613813,9247793 -h109,449:7613813,9247793:0,0,0 -g109,449:6630773,9247793 -g109,449:8686637,9247793 -g109,449:9580548,9247793 -g109,449:10237218,9247793 -g109,449:12580130,9247793 -g109,449:13632638,9247793 -k109,449:23953247,9247793:7450132 -k109,449:31403379,9247793:7450132 -(109,449:31403379,9247793:1179650,485622,11795 -k109,449:31358161,9247793:-45218 +(105,447:6630773,7750945:25952256,513147,134348 +g105,447:7613813,7750945 +h105,447:7613813,7750945:0,0,0 +g105,447:6630773,7750945 +g105,447:8686637,7750945 +g105,447:9580548,7750945 +g105,447:10237218,7750945 +g105,447:12580130,7750945 +g105,447:13632638,7750945 +k105,447:23871327,7750945:7368212 +k105,447:31239539,7750945:7368212 +(105,447:31239539,7750945:1343490,485622,11795 +k105,447:31358161,7750945:118622 ) -g109,449:31403379,9247793 -g109,449:32583029,9247793 +g105,447:31239539,7750945 +g105,447:32583029,7750945 ) -(1,86:6630773,10744641:25952256,513147,126483 -g1,86:7613813,10744641 -h1,86:7613813,10744641:0,0,0 -g1,86:6630773,10744641 -g1,86:10399748,10744641 -g1,86:12439883,10744641 -g1,86:13333794,10744641 -g1,86:13990464,10744641 -k1,86:23766142,10744641:7637238 -k1,86:31403379,10744641:7637237 -(1,86:31403379,10744641:1179650,485622,11795 -k1,86:31358161,10744641:-45218 +(1,92:6630773,9247793:25952256,513147,126483 +g1,92:7613813,9247793 +h1,92:7613813,9247793:0,0,0 +g1,92:6630773,9247793 +g1,92:10399748,9247793 +g1,92:12439883,9247793 +g1,92:13333794,9247793 +g1,92:13990464,9247793 +k1,92:23684222,9247793:7555318 +k1,92:31239539,9247793:7555317 +(1,92:31239539,9247793:1343490,485622,11795 +k1,92:31358161,9247793:118622 ) -g1,86:31403379,10744641 -g1,86:32583029,10744641 +g1,92:31239539,9247793 +g1,92:32583029,9247793 ) ] -(1,88:32583029,45706769:0,0,0 -g1,88:32583029,45706769 +(1,94:32583029,45706769:0,0,0 +g1,94:32583029,45706769 ) ) ] -(1,88:6630773,47279633:25952256,0,0 -h1,88:6630773,47279633:25952256,0,0 +(1,94:6630773,47279633:25952256,0,0 +h1,94:6630773,47279633:25952256,0,0 ) ] -h1,88:4262630,4025873:0,0,0 +h1,94:4262630,4025873:0,0,0 ] -!4754 +!4405 }7 -Input:110:D:\aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.tex -!93 +Input:106:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.tex +!99 {8 -[110,19:4262630,47279633:28320399,43253760,0 -(110,19:4262630,4025873:0,0,0 -[110,19:-473657,4025873:25952256,0,0 -(110,19:-473657,-710414:25952256,0,0 -h110,19:-473657,-710414:0,0,0 -(110,19:-473657,-710414:0,0,0 -(110,19:-473657,-710414:0,0,0 -g110,19:-473657,-710414 -(110,19:-473657,-710414:65781,0,65781 -g110,19:-407876,-710414 -[110,19:-407876,-644633:0,0,0 +[106,19:4262630,47279633:28320399,43253760,0 +(106,19:4262630,4025873:0,0,0 +[106,19:-473657,4025873:25952256,0,0 +(106,19:-473657,-710414:25952256,0,0 +h106,19:-473657,-710414:0,0,0 +(106,19:-473657,-710414:0,0,0 +(106,19:-473657,-710414:0,0,0 +g106,19:-473657,-710414 +(106,19:-473657,-710414:65781,0,65781 +g106,19:-407876,-710414 +[106,19:-407876,-644633:0,0,0 ] ) -k110,19:-473657,-710414:-65781 +k106,19:-473657,-710414:-65781 ) ) -k110,19:25478599,-710414:25952256 -g110,19:25478599,-710414 +k106,19:25478599,-710414:25952256 +g106,19:25478599,-710414 ) ] ) -[110,19:6630773,47279633:25952256,43253760,0 -[110,19:6630773,4812305:25952256,786432,0 -(110,19:6630773,4812305:25952256,0,0 -(110,19:6630773,4812305:25952256,0,0 -g110,19:3078558,4812305 -[110,19:3078558,4812305:0,0,0 -(110,19:3078558,2439708:0,1703936,0 -k110,19:1358238,2439708:-1720320 -(110,1:1358238,2439708:1720320,1703936,0 -(110,1:1358238,2439708:1179648,16384,0 -r110,19:2537886,2439708:1179648,16384,0 +[106,19:6630773,47279633:25952256,43253760,0 +[106,19:6630773,4812305:25952256,786432,0 +(106,19:6630773,4812305:25952256,0,0 +(106,19:6630773,4812305:25952256,0,0 +g106,19:3078558,4812305 +[106,19:3078558,4812305:0,0,0 +(106,19:3078558,2439708:0,1703936,0 +k106,19:1358238,2439708:-1720320 +(106,1:1358238,2439708:1720320,1703936,0 +(106,1:1358238,2439708:1179648,16384,0 +r106,19:2537886,2439708:1179648,16384,0 ) -g110,1:3062174,2439708 -(110,1:3062174,2439708:16384,1703936,0 -[110,1:3062174,2439708:25952256,1703936,0 -(110,1:3062174,1915420:25952256,1179648,0 -(110,1:3062174,1915420:16384,1179648,0 -r110,19:3078558,1915420:16384,1179648,0 +g106,1:3062174,2439708 +(106,1:3062174,2439708:16384,1703936,0 +[106,1:3062174,2439708:25952256,1703936,0 +(106,1:3062174,1915420:25952256,1179648,0 +(106,1:3062174,1915420:16384,1179648,0 +r106,19:3078558,1915420:16384,1179648,0 ) -k110,1:29014430,1915420:25935872 -g110,1:29014430,1915420 +k106,1:29014430,1915420:25935872 +g106,1:29014430,1915420 ) ] ) ) ) ] -[110,19:3078558,4812305:0,0,0 -(110,19:3078558,2439708:0,1703936,0 -g110,19:29030814,2439708 -g110,19:36135244,2439708 -(110,1:36135244,2439708:1720320,1703936,0 -(110,1:36135244,2439708:16384,1703936,0 -[110,1:36135244,2439708:25952256,1703936,0 -(110,1:36135244,1915420:25952256,1179648,0 -(110,1:36135244,1915420:16384,1179648,0 -r110,19:36151628,1915420:16384,1179648,0 +[106,19:3078558,4812305:0,0,0 +(106,19:3078558,2439708:0,1703936,0 +g106,19:29030814,2439708 +g106,19:36135244,2439708 +(106,1:36135244,2439708:1720320,1703936,0 +(106,1:36135244,2439708:16384,1703936,0 +[106,1:36135244,2439708:25952256,1703936,0 +(106,1:36135244,1915420:25952256,1179648,0 +(106,1:36135244,1915420:16384,1179648,0 +r106,19:36151628,1915420:16384,1179648,0 ) -k110,1:62087500,1915420:25935872 -g110,1:62087500,1915420 +k106,1:62087500,1915420:25935872 +g106,1:62087500,1915420 ) ] ) -g110,1:36675916,2439708 -(110,1:36675916,2439708:1179648,16384,0 -r110,19:37855564,2439708:1179648,16384,0 +g106,1:36675916,2439708 +(106,1:36675916,2439708:1179648,16384,0 +r106,19:37855564,2439708:1179648,16384,0 ) ) -k110,19:3078556,2439708:-34777008 +k106,19:3078556,2439708:-34777008 ) ] -[110,19:3078558,4812305:0,0,0 -(110,19:3078558,49800853:0,16384,2228224 -k110,19:1358238,49800853:-1720320 -(110,1:1358238,49800853:1720320,16384,2228224 -(110,1:1358238,49800853:1179648,16384,0 -r110,19:2537886,49800853:1179648,16384,0 +[106,19:3078558,4812305:0,0,0 +(106,19:3078558,49800853:0,16384,2228224 +k106,19:1358238,49800853:-1720320 +(106,1:1358238,49800853:1720320,16384,2228224 +(106,1:1358238,49800853:1179648,16384,0 +r106,19:2537886,49800853:1179648,16384,0 ) -g110,1:3062174,49800853 -(110,1:3062174,52029077:16384,1703936,0 -[110,1:3062174,52029077:25952256,1703936,0 -(110,1:3062174,51504789:25952256,1179648,0 -(110,1:3062174,51504789:16384,1179648,0 -r110,19:3078558,51504789:16384,1179648,0 +g106,1:3062174,49800853 +(106,1:3062174,52029077:16384,1703936,0 +[106,1:3062174,52029077:25952256,1703936,0 +(106,1:3062174,51504789:25952256,1179648,0 +(106,1:3062174,51504789:16384,1179648,0 +r106,19:3078558,51504789:16384,1179648,0 ) -k110,1:29014430,51504789:25935872 -g110,1:29014430,51504789 +k106,1:29014430,51504789:25935872 +g106,1:29014430,51504789 ) ] ) ) ) ] -[110,19:3078558,4812305:0,0,0 -(110,19:3078558,49800853:0,16384,2228224 -g110,19:29030814,49800853 -g110,19:36135244,49800853 -(110,1:36135244,49800853:1720320,16384,2228224 -(110,1:36135244,52029077:16384,1703936,0 -[110,1:36135244,52029077:25952256,1703936,0 -(110,1:36135244,51504789:25952256,1179648,0 -(110,1:36135244,51504789:16384,1179648,0 -r110,19:36151628,51504789:16384,1179648,0 +[106,19:3078558,4812305:0,0,0 +(106,19:3078558,49800853:0,16384,2228224 +g106,19:29030814,49800853 +g106,19:36135244,49800853 +(106,1:36135244,49800853:1720320,16384,2228224 +(106,1:36135244,52029077:16384,1703936,0 +[106,1:36135244,52029077:25952256,1703936,0 +(106,1:36135244,51504789:25952256,1179648,0 +(106,1:36135244,51504789:16384,1179648,0 +r106,19:36151628,51504789:16384,1179648,0 ) -k110,1:62087500,51504789:25935872 -g110,1:62087500,51504789 +k106,1:62087500,51504789:25935872 +g106,1:62087500,51504789 ) ] ) -g110,1:36675916,49800853 -(110,1:36675916,49800853:1179648,16384,0 -r110,19:37855564,49800853:1179648,16384,0 +g106,1:36675916,49800853 +(106,1:36675916,49800853:1179648,16384,0 +r106,19:37855564,49800853:1179648,16384,0 ) ) -k110,19:3078556,49800853:-34777008 +k106,19:3078556,49800853:-34777008 ) ] -g110,19:6630773,4812305 +g106,19:6630773,4812305 ) -) -] -[110,19:6630773,45706769:25952256,40108032,0 -(110,19:6630773,45706769:25952256,40108032,0 -(110,19:6630773,45706769:0,0,0 -g110,19:6630773,45706769 -) -[110,19:6630773,45706769:25952256,40108032,0 -[110,1:6630773,12106481:25952256,6507744,0 -(110,1:6630773,7073297:25952256,32768,229376 -(110,1:6630773,7073297:0,32768,229376 -(110,1:6630773,7073297:5505024,32768,229376 -r110,1:12135797,7073297:5505024,262144,229376 -) -k110,1:6630773,7073297:-5505024 -) -) -(110,1:6630773,8803457:25952256,923664,227671 -h110,1:6630773,8803457:0,0,0 -k110,1:21844104,8803457:10738926 -k110,1:32583030,8803457:10738926 -) -(110,1:6630773,9419505:25952256,32768,0 -(110,1:6630773,9419505:5505024,32768,0 -r110,1:12135797,9419505:5505024,32768,0 -) -k110,1:22359413,9419505:10223616 -k110,1:32583029,9419505:10223616 -) -] -(110,3:6630773,13734401:25952256,131072,0 -r110,3:32583029,13734401:25952256,131072,0 -g110,3:32583029,13734401 -g110,3:32583029,13734401 -) -(110,5:6630773,15054302:25952256,505283,134348 -k110,5:8596853,15054302:1966080 -k110,4:11718282,15054302:137575 -k110,4:13140363,15054302:137575 -k110,4:14448411,15054302:137575 -k110,4:16134602,15054302:137575 -k110,4:16923605,15054302:137575 -k110,4:18769704,15054302:137575 -k110,4:19926365,15054302:137576 -k110,4:21357621,15054302:137575 -k110,4:23996705,15054302:137575 -k110,4:24785708,15054302:137575 -k110,4:25279143,15054302:137575 -k110,4:26770692,15054302:137575 -k110,4:28867793,15054302:137575 -k110,4:32583029,15054302:1966080 -) -(110,5:6630773,15895790:25952256,505283,126483 -k110,5:8596853,15895790:1966080 -k110,4:9734379,15895790:239683 -k110,4:11144535,15895790:239683 -k110,4:13694362,15895790:239683 -k110,4:15218551,15895790:239683 -k110,4:15814094,15895790:239683 -k110,4:17000118,15895790:239684 -k110,4:17771298,15895790:239683 -k110,4:18366841,15895790:239683 -k110,4:21532051,15895790:239683 -k110,4:23661792,15895790:239683 -k110,4:26843386,15895790:239683 -k110,4:32583029,15895790:1966080 -) -(110,5:6630773,16737278:25952256,505283,126483 -k110,5:8596853,16737278:1966080 -k110,4:11546038,16737278:172425 -k110,4:13112414,16737278:172425 -k110,4:16566227,16737278:172425 -k110,4:18658202,16737278:172425 -k110,4:19186487,16737278:172425 -k110,4:22680278,16737278:172426 -k110,4:24527148,16737278:172425 -k110,4:27031999,16737278:172425 -k110,4:28642939,16737278:172425 -k110,4:29612282,16737278:172425 -k110,4:32583029,16737278:1966080 -) -(110,5:6630773,17578766:25952256,513147,134348 -k110,5:8596853,17578766:1966080 -k110,4:10092439,17578766:255645 -k110,4:11601788,17578766:255645 -k110,4:14684001,17578766:255645 -k110,4:16600328,17578766:255645 -k110,4:17875058,17578766:255645 -k110,4:19145200,17578766:255645 -k110,4:19756704,17578766:255644 -k110,4:20868905,17578766:255645 -k110,4:21783842,17578766:255645 -k110,4:24801830,17578766:255645 -k110,4:26507787,17578766:255645 -k110,4:28800946,17578766:255645 -k110,4:32583029,17578766:1966080 -) -(110,5:6630773,18420254:25952256,505283,134348 -k110,5:8596853,18420254:1966080 -k110,4:10264798,18420254:216323 -k110,4:12080200,18420254:216324 -k110,4:13789433,18420254:216323 -k110,4:14463854,18420254:216324 -k110,4:15988931,18420254:216323 -k110,4:17224340,18420254:216324 -k110,4:18939471,18420254:216323 -k110,4:19984824,18420254:216323 -k110,4:21293633,18420254:216324 -k110,4:21968053,18420254:216323 -k110,4:23834574,18420254:216324 -k110,4:27123880,18420254:216323 -k110,5:32583029,18420254:1966080 -) -(110,5:6630773,19261742:25952256,513147,126483 -g110,5:8596853,19261742 -g110,4:10393850,19261742 -g110,4:11584639,19261742 -g110,4:13118836,19261742 -g110,4:15061978,19261742 -g110,4:16022735,19261742 -g110,4:19810715,19261742 -g110,4:21577565,19261742 -k110,5:30616949,19261742:5152444 -g110,5:32583029,19261742 -) -(110,6:6630773,20889662:25952256,475791,7863 -k110,6:27570837,20889662:20940064 -h110,6:27570837,20889662:0,0,0 -g110,6:28388726,20889662 -g110,6:29137147,20889662 -g110,6:30616950,20889662 -g110,6:32583030,20889662 -) -(110,7:6630773,21731150:25952256,505283,134348 -k110,7:16377944,21731150:9747171 -h110,6:16377944,21731150:0,0,0 -g110,6:17857091,21731150 -g110,6:18923361,21731150 -g110,6:20846187,21731150 -g110,6:25094886,21731150 -g110,6:29023113,21731150 -g110,7:30616949,21731150 -g110,7:32583029,21731150 -) -(110,7:6630773,22965854:25952256,131072,0 -r110,7:32583029,22965854:25952256,131072,0 -g110,7:32583029,22965854 -g110,7:34549109,22965854 -) -(110,15:6630773,24593774:25952256,513147,134348 -k110,14:8251787,24593774:240170 -k110,14:10073996,24593774:240170 -k110,14:12365443,24593774:240170 -k110,14:15367957,24593774:240171 -k110,14:17983152,24593774:240170 -k110,14:18882614,24593774:240170 -k110,14:20141869,24593774:240170 -k110,14:21474524,24593774:240170 -k110,14:22373986,24593774:240170 -k110,14:23633241,24593774:240170 -k110,14:24288213,24593774:240129 -k110,14:27544351,24593774:240171 -k110,14:30654343,24593774:240170 -h110,14:31052802,24593774:0,0,0 -k110,14:31292972,24593774:240170 -k110,14:32184570,24593774:240170 -h110,14:32583029,24593774:0,0,0 -k110,14:32583029,24593774:0 -) -(110,15:6630773,25435262:25952256,513147,134348 -k110,14:9455600,25435262:155546 -k110,14:10630231,25435262:155546 -k110,14:11200577,25435262:155503 -k110,14:14198419,25435262:155546 -k110,14:16133267,25435262:155546 -k110,14:17902309,25435262:155546 -k110,14:20805780,25435262:155546 -k110,14:23630607,25435262:155546 -k110,14:27188782,25435262:155546 -k110,14:27995756,25435262:155546 -k110,14:29170387,25435262:155546 -k110,14:29740733,25435262:155503 -k110,14:32583029,25435262:0 -) -(110,15:6630773,26276750:25952256,513147,134348 -k110,14:9580071,26276750:165329 -k110,14:12303927,26276750:165330 -k110,14:16198910,26276750:165329 -k110,14:19441809,26276750:165329 -k110,14:20626223,26276750:165329 -k110,14:23836356,26276750:165330 -k110,14:24617723,26276750:165329 -k110,14:26215670,26276750:165329 -k110,14:27572444,26276750:165329 -k110,14:28756859,26276750:165330 -k110,14:31966991,26276750:165329 -k110,14:32583029,26276750:0 -) -(110,15:6630773,27118238:25952256,505283,134348 -k110,14:9704888,27118238:190531 -k110,14:10523254,27118238:190531 -k110,14:11917025,27118238:190530 -k110,14:13863266,27118238:190531 -k110,14:18116374,27118238:190531 -k110,14:19298465,27118238:190531 -k110,14:21844360,27118238:190531 -k110,14:23107060,27118238:190531 -k110,14:25669338,27118238:190530 -k110,14:28514077,27118238:190531 -k110,14:29356036,27118238:190531 -k110,14:32583029,27118238:0 -) -(110,15:6630773,27959726:25952256,513147,134348 -k110,14:9285334,27959726:215311 -k110,14:10159937,27959726:215311 -k110,14:14355905,27959726:215311 -k110,14:15296044,27959726:215311 -k110,14:16197517,27959726:215311 -k110,14:17064256,27959726:215311 -k110,14:20550469,27959726:215311 -k110,14:21784865,27959726:215311 -k110,14:26132221,27959726:215311 -k110,14:27006824,27959726:215311 -k110,14:27577995,27959726:215311 -k110,14:30111314,27959726:215311 -k110,14:30985917,27959726:215311 -k110,15:32583029,27959726:0 -) -(110,15:6630773,28801214:25952256,505283,126483 -k110,14:9506056,28801214:252532 -k110,14:13576715,28801214:252532 -k110,14:15210091,28801214:252532 -k110,14:15994120,28801214:252532 -k110,14:17312923,28801214:252532 -k110,14:18336158,28801214:252532 -k110,14:21385110,28801214:252531 -k110,14:24455035,28801214:252532 -k110,14:25910808,28801214:252532 -k110,14:26694837,28801214:252532 -k110,14:27966454,28801214:252532 -k110,14:30497673,28801214:252532 -k110,14:32583029,28801214:0 -) -(110,15:6630773,29642702:25952256,513147,134348 -k110,14:9742333,29642702:263366 -k110,14:10664990,29642702:263365 -k110,14:12530056,29642702:263366 -k110,14:13452714,29642702:263366 -k110,14:14461224,29642702:263366 -k110,14:16054970,29642702:263365 -k110,14:17410821,29642702:263366 -k110,14:18088966,29642702:263302 -k110,14:21192661,29642702:263365 -k110,14:22403678,29642702:263366 -k110,14:23022904,29642702:263366 -k110,14:25454201,29642702:263366 -k110,14:26376858,29642702:263365 -k110,14:29402567,29642702:263366 -k110,14:32583029,29642702:0 -) -(110,15:6630773,30484190:25952256,505283,134348 -k110,14:8564135,30484190:216319 -k110,14:10255669,30484190:216319 -k110,14:12339765,30484190:216320 -k110,14:16218236,30484190:216319 -k110,14:17580780,30484190:216319 -k110,14:18816184,30484190:216319 -k110,14:20189214,30484190:216320 -k110,14:21918759,30484190:216319 -k110,14:23532961,30484190:216319 -k110,14:26651214,30484190:216319 -k110,14:27886619,30484190:216320 -k110,14:29582741,30484190:216319 -k110,14:31510860,30484190:216319 -k110,14:32583029,30484190:0 -) -(110,15:6630773,31325678:25952256,505283,134348 -g110,14:7042994,31325678 -g110,14:9198473,31325678 -g110,14:10497396,31325678 -g110,14:11154722,31325678 -g110,14:14255885,31325678 -g110,14:15106542,31325678 -g110,14:16053537,31325678 -k110,15:32583029,31325678:12048795 -g110,15:32583029,31325678 -) -(110,17:6630773,32167166:25952256,505283,126483 -h110,16:6630773,32167166:983040,0,0 -k110,16:8067941,32167166:241136 -k110,16:9124388,32167166:241179 -k110,16:10431837,32167166:241178 -k110,16:13034278,32167166:241179 -k110,16:16128894,32167166:241178 -k110,16:17052958,32167166:241179 -k110,16:18683499,32167166:241178 -k110,16:21479270,32167166:241178 -k110,16:24505074,32167166:241179 -k110,16:25362290,32167166:241178 -k110,16:26806710,32167166:241179 -k110,16:28803598,32167166:241178 -k110,16:29257727,32167166:241137 -k110,16:32168186,32167166:241178 -k110,17:32583029,32167166:0 -) -(110,17:6630773,33008654:25952256,513147,134348 -k110,16:7541024,33008654:224089 -k110,16:8120974,33008654:224090 -k110,16:11187359,33008654:224089 -k110,16:12359100,33008654:224090 -k110,16:13972552,33008654:224089 -k110,16:18452549,33008654:224089 -k110,16:19868084,33008654:224090 -k110,16:22560914,33008654:224089 -k110,16:23981691,33008654:224090 -k110,16:25530918,33008654:224089 -k110,16:26286504,33008654:224089 -k110,16:27458245,33008654:224090 -k110,16:28852807,33008654:224089 -k110,16:29728325,33008654:224090 -k110,16:31563944,33008654:224089 -k110,17:32583029,33008654:0 -) -(110,17:6630773,33850142:25952256,505283,134348 -k110,16:7269118,33850142:223502 -k110,16:10334940,33850142:223526 -k110,16:11174505,33850142:223527 -k110,16:11753891,33850142:223526 -k110,16:13215392,33850142:223526 -k110,16:17160708,33850142:223526 -k110,16:18035663,33850142:223527 -k110,16:19589570,33850142:223526 -k110,16:22439124,33850142:223526 -k110,16:24274181,33850142:223527 -k110,16:24853567,33850142:223526 -k110,16:28093060,33850142:223526 -k110,16:29696775,33850142:223527 -k110,16:31516758,33850142:223526 -k110,16:32583029,33850142:0 -) -(110,17:6630773,34691630:25952256,505283,134348 -k110,16:8429456,34691630:250067 -k110,16:9698607,34691630:250066 -k110,16:11534645,34691630:250067 -k110,16:12949941,34691630:250066 -k110,16:15338448,34691630:250067 -k110,16:16350042,34691630:250066 -k110,16:19346068,34691630:250067 -k110,16:20247562,34691630:250066 -k110,16:22633447,34691630:250067 -k110,16:24730318,34691630:250066 -k110,16:26171830,34691630:250067 -k110,16:28318508,34691630:250066 -k110,16:29220003,34691630:250067 -k110,16:31034413,34691630:250066 -k110,16:32583029,34691630:0 -) -(110,17:6630773,35533118:25952256,513147,134348 -k110,16:8253553,35533118:242592 -k110,16:10044762,35533118:242593 -k110,16:10938782,35533118:242592 -k110,16:12195871,35533118:242592 -k110,16:13947102,35533118:242592 -k110,16:16777712,35533118:242593 -k110,16:17794284,35533118:242592 -k110,16:20319495,35533118:242592 -k110,16:22278475,35533118:242592 -k110,16:25147096,35533118:242593 -k110,16:27612014,35533118:242592 -k110,16:29546746,35533118:242592 -k110,16:32583029,35533118:0 -) -(110,17:6630773,36374606:25952256,513147,134348 -k110,16:7988398,36374606:285456 -k110,16:9654042,36374606:285456 -k110,16:10931058,36374606:285456 -k110,16:12282786,36374606:285457 -k110,16:14641801,36374606:285456 -k110,16:15283117,36374606:285456 -k110,16:19361797,36374606:285456 -k110,16:20581796,36374606:285456 -k110,16:21526544,36374606:285456 -k110,16:23397971,36374606:285456 -k110,16:24829653,36374606:285457 -k110,16:26813147,36374606:285456 -k110,16:29700382,36374606:285456 -k110,16:30341698,36374606:285456 -k110,16:32583029,36374606:0 -) -(110,17:6630773,37216094:25952256,513147,134348 -k110,16:9608376,37216094:135307 -k110,16:10356444,37216094:135306 -k110,16:12738325,37216094:135307 -k110,16:15212611,37216094:135306 -k110,16:16007210,37216094:135307 -k110,16:19062146,37216094:135307 -k110,16:20367925,37216094:135306 -k110,16:21635694,37216094:135307 -k110,16:23183301,37216094:135306 -k110,16:24988465,37216094:135307 -k110,16:26315217,37216094:135307 -k110,16:28777706,37216094:135306 -k110,16:29572305,37216094:135307 -k110,16:32583029,37216094:0 -) -(110,17:6630773,38057582:25952256,505283,126483 -k110,16:8059602,38057582:258356 -k110,16:9450421,38057582:258357 -k110,16:10615140,38057582:258356 -k110,16:11524925,38057582:258357 -k110,16:14195661,38057582:258356 -k110,16:14868801,38057582:258297 -k110,16:16623345,38057582:258357 -k110,16:20398363,38057582:258356 -k110,16:21466090,38057582:258357 -k110,16:22080306,38057582:258356 -k110,16:27139831,38057582:258357 -k110,16:28568660,38057582:258356 -k110,16:29959479,38057582:258357 -k110,16:31124198,38057582:258356 -k110,16:32583029,38057582:0 -) -(110,17:6630773,38899070:25952256,505283,134348 -k110,16:8530059,38899070:292999 -k110,16:9435819,38899070:292998 -k110,16:11464211,38899070:292999 -k110,16:12171958,38899070:292904 -k110,16:13116385,38899070:292999 -k110,16:14423880,38899070:292998 -k110,16:15072739,38899070:292999 -k110,16:18441998,38899070:292999 -k110,16:20283612,38899070:292998 -k110,16:21747084,38899070:292999 -k110,16:23588698,38899070:292998 -k110,16:24339794,38899070:292999 -k110,16:25284220,38899070:292998 -k110,16:28538791,38899070:292999 -k110,16:29044687,38899070:292904 -k110,16:30152954,38899070:292999 -k110,16:32583029,38899070:0 -) -(110,17:6630773,39740558:25952256,513147,134348 -k110,16:10837573,39740558:144223 -k110,16:12173240,39740558:144222 -k110,16:15353746,39740558:144223 -k110,16:16570138,39740558:144223 -k110,16:17733446,39740558:144223 -k110,16:19202806,39740558:144222 -k110,16:20006321,39740558:144223 -k110,16:21353785,39740558:144223 -k110,16:23080047,39740558:144223 -k110,16:23755766,39740558:144222 -k110,16:24847640,39740558:144223 -k110,16:26162336,39740558:144223 -k110,16:26957987,39740558:144223 -k110,16:28194694,39740558:144222 -k110,16:29358002,39740558:144223 -k110,16:32583029,39740558:0 -) -(110,17:6630773,40582046:25952256,513147,134348 -k110,16:9762247,40582046:139755 -k110,16:10553431,40582046:139756 -k110,16:11959342,40582046:139755 -k110,16:13165368,40582046:139755 -k110,16:14066652,40582046:139756 -k110,16:16812774,40582046:139755 -k110,16:17971614,40582046:139755 -k110,16:20264883,40582046:139756 -k110,16:23075885,40582046:139755 -k110,16:24407085,40582046:139755 -k110,16:26685936,40582046:139756 -k110,16:30383641,40582046:139755 -k110,16:32583029,40582046:0 -) -(110,17:6630773,41423534:25952256,513147,134348 -k110,16:7837443,41423534:187585 -k110,16:8439859,41423534:187573 -k110,16:11643411,41423534:187585 -k110,16:14169976,41423534:187585 -k110,16:15016853,41423534:187585 -k110,16:17618784,41423534:187585 -k110,16:19544384,41423534:187585 -k110,16:20751054,41423534:187585 -k110,16:22913894,41423534:187585 -k110,16:24961391,41423534:187585 -k110,16:26096627,41423534:187585 -k110,16:27743043,41423534:187585 -k110,16:29236761,41423534:187585 -k110,16:32583029,41423534:0 -) -(110,17:6630773,42265022:25952256,513147,134348 -k110,16:7502963,42265022:256152 -k110,16:8347628,42265022:256152 -k110,16:9622865,42265022:256152 -k110,16:12955277,42265022:256152 -k110,16:14343891,42265022:256152 -k110,16:15942876,42265022:256152 -k110,16:17402270,42265022:256153 -k110,16:19067446,42265022:256152 -k110,16:20577302,42265022:256152 -k110,16:21965916,42265022:256152 -k110,16:23616019,42265022:256152 -k110,16:24633699,42265022:256152 -k110,16:28142403,42265022:256152 -k110,16:29417640,42265022:256152 -k110,16:32583029,42265022:0 -) -(110,17:6630773,43106510:25952256,505283,134348 -k110,16:7853574,43106510:197818 -k110,16:9381773,43106510:197818 -k110,16:10598676,43106510:197818 -k110,16:13872754,43106510:197818 -k110,16:17191397,43106510:197819 -k110,16:18882125,43106510:197818 -k110,16:19494784,43106510:197816 -k110,16:23357375,43106510:197818 -k110,16:24725667,43106510:197819 -k110,16:25606370,43106510:197818 -k110,16:27197483,43106510:197818 -k110,16:29187055,43106510:197818 -k110,16:29740733,43106510:197818 -k110,16:32583029,43106510:0 -) -(110,17:6630773,43947998:25952256,513147,134348 -k110,16:9219404,43947998:170352 -k110,16:9921253,43947998:170352 -k110,16:11110689,43947998:170351 -k110,16:12882741,43947998:170352 -k110,16:15605720,43947998:170352 -k110,16:17014047,43947998:170352 -k110,16:17843690,43947998:170351 -k110,16:20615821,43947998:170352 -k110,16:21417940,43947998:170352 -k110,16:22348510,43947998:170352 -k110,16:24254255,43947998:170352 -k110,16:25056373,43947998:170351 -k110,16:25439688,43947998:170323 -k110,16:27348055,43947998:170352 -k110,16:30006809,43947998:170352 -k110,16:32583029,43947998:0 -) -(110,17:6630773,44789486:25952256,505283,134348 -k110,16:9313519,44789486:251360 -k110,16:10756324,44789486:251360 -k110,16:13530821,44789486:251361 -k110,16:15943558,44789486:251360 -k110,16:16877803,44789486:251360 -k110,16:20201491,44789486:251360 -k110,16:23160143,44789486:251360 -k110,16:24602948,44789486:251360 -k110,16:27382033,44789486:251361 -k110,16:28316278,44789486:251360 -k110,16:30596633,44789486:251360 -k110,17:32583029,44789486:0 -) -(110,17:6630773,45630974:25952256,513147,134348 -k110,16:8572100,45630974:197414 -k110,16:11761234,45630974:197415 -k110,16:13526269,45630974:197414 -k110,16:15636025,45630974:197415 -k110,16:16516324,45630974:197414 -k110,16:17732824,45630974:197415 -k110,16:20631632,45630974:197414 -k110,16:22321957,45630974:197415 -k110,16:23585642,45630974:197414 -k110,16:25990310,45630974:197415 -k110,16:26873886,45630974:197414 -k110,16:28806694,45630974:197415 -k110,16:29359968,45630974:197414 -k110,17:32583029,45630974:0 -k110,17:32583029,45630974:0 -) -] -(110,19:32583029,45706769:0,0,0 -g110,19:32583029,45706769 -) -) -] -(110,19:6630773,47279633:25952256,473825,0 -(110,19:6630773,47279633:25952256,473825,0 -(110,19:6630773,47279633:0,0,0 -v110,19:6630773,47279633:0,0,0 -) -g110,19:6830002,47279633 -k110,19:31614406,47279633:24784404 -) -) -] -h110,19:4262630,4025873:0,0,0 +) +] +[106,19:6630773,45706769:25952256,40108032,0 +(106,19:6630773,45706769:25952256,40108032,0 +(106,19:6630773,45706769:0,0,0 +g106,19:6630773,45706769 +) +[106,19:6630773,45706769:25952256,40108032,0 +[106,1:6630773,12106481:25952256,6507744,0 +(106,1:6630773,7073297:25952256,32768,229376 +(106,1:6630773,7073297:0,32768,229376 +(106,1:6630773,7073297:5505024,32768,229376 +r106,1:12135797,7073297:5505024,262144,229376 +) +k106,1:6630773,7073297:-5505024 +) +) +(106,1:6630773,8803457:25952256,923664,227671 +h106,1:6630773,8803457:0,0,0 +k106,1:21844104,8803457:10738926 +k106,1:32583030,8803457:10738926 +) +(106,1:6630773,9419505:25952256,32768,0 +(106,1:6630773,9419505:5505024,32768,0 +r106,1:12135797,9419505:5505024,32768,0 +) +k106,1:22359413,9419505:10223616 +k106,1:32583029,9419505:10223616 +) +] +(106,3:6630773,13734401:25952256,131072,0 +r106,3:32583029,13734401:25952256,131072,0 +g106,3:32583029,13734401 +g106,3:32583029,13734401 +) +(106,5:6630773,15054302:25952256,505283,134348 +k106,5:8596853,15054302:1966080 +k106,4:11718282,15054302:137575 +k106,4:13140363,15054302:137575 +k106,4:14448411,15054302:137575 +k106,4:16134602,15054302:137575 +k106,4:16923605,15054302:137575 +k106,4:18769704,15054302:137575 +k106,4:19926365,15054302:137576 +k106,4:21357621,15054302:137575 +k106,4:23996705,15054302:137575 +k106,4:24785708,15054302:137575 +k106,4:25279143,15054302:137575 +k106,4:26770692,15054302:137575 +k106,4:28867793,15054302:137575 +k106,4:32583029,15054302:1966080 +) +(106,5:6630773,15895790:25952256,505283,126483 +k106,5:8596853,15895790:1966080 +k106,4:9734379,15895790:239683 +k106,4:11144535,15895790:239683 +k106,4:13694362,15895790:239683 +k106,4:15218551,15895790:239683 +k106,4:15814094,15895790:239683 +k106,4:17000118,15895790:239684 +k106,4:17771298,15895790:239683 +k106,4:18366841,15895790:239683 +k106,4:21532051,15895790:239683 +k106,4:23661792,15895790:239683 +k106,4:26843386,15895790:239683 +k106,4:32583029,15895790:1966080 +) +(106,5:6630773,16737278:25952256,505283,126483 +k106,5:8596853,16737278:1966080 +k106,4:11546038,16737278:172425 +k106,4:13112414,16737278:172425 +k106,4:16566227,16737278:172425 +k106,4:18658202,16737278:172425 +k106,4:19186487,16737278:172425 +k106,4:22680278,16737278:172426 +k106,4:24527148,16737278:172425 +k106,4:27031999,16737278:172425 +k106,4:28642939,16737278:172425 +k106,4:29612282,16737278:172425 +k106,4:32583029,16737278:1966080 +) +(106,5:6630773,17578766:25952256,513147,134348 +k106,5:8596853,17578766:1966080 +k106,4:10092439,17578766:255645 +k106,4:11601788,17578766:255645 +k106,4:14684001,17578766:255645 +k106,4:16600328,17578766:255645 +k106,4:17875058,17578766:255645 +k106,4:19145200,17578766:255645 +k106,4:19756704,17578766:255644 +k106,4:20868905,17578766:255645 +k106,4:21783842,17578766:255645 +k106,4:24801830,17578766:255645 +k106,4:26507787,17578766:255645 +k106,4:28800946,17578766:255645 +k106,4:32583029,17578766:1966080 +) +(106,5:6630773,18420254:25952256,505283,134348 +k106,5:8596853,18420254:1966080 +k106,4:10264798,18420254:216323 +k106,4:12080200,18420254:216324 +k106,4:13789433,18420254:216323 +k106,4:14463854,18420254:216324 +k106,4:15988931,18420254:216323 +k106,4:17224340,18420254:216324 +k106,4:18939471,18420254:216323 +k106,4:19984824,18420254:216323 +k106,4:21293633,18420254:216324 +k106,4:21968053,18420254:216323 +k106,4:23834574,18420254:216324 +k106,4:27123880,18420254:216323 +k106,5:32583029,18420254:1966080 +) +(106,5:6630773,19261742:25952256,513147,126483 +g106,5:8596853,19261742 +g106,4:10393850,19261742 +g106,4:11584639,19261742 +g106,4:13118836,19261742 +g106,4:15061978,19261742 +g106,4:16022735,19261742 +g106,4:19810715,19261742 +g106,4:21577565,19261742 +k106,5:30616949,19261742:5152444 +g106,5:32583029,19261742 +) +(106,6:6630773,20889662:25952256,475791,7863 +k106,6:27570837,20889662:20940064 +h106,6:27570837,20889662:0,0,0 +g106,6:28388726,20889662 +g106,6:29137147,20889662 +g106,6:30616950,20889662 +g106,6:32583030,20889662 +) +(106,7:6630773,21731150:25952256,505283,134348 +k106,7:16377944,21731150:9747171 +h106,6:16377944,21731150:0,0,0 +g106,6:17857091,21731150 +g106,6:18923361,21731150 +g106,6:20846187,21731150 +g106,6:25094886,21731150 +g106,6:29023113,21731150 +g106,7:30616949,21731150 +g106,7:32583029,21731150 +) +(106,7:6630773,22965854:25952256,131072,0 +r106,7:32583029,22965854:25952256,131072,0 +g106,7:32583029,22965854 +g106,7:34549109,22965854 +) +(106,15:6630773,24593774:25952256,513147,134348 +k106,14:8251787,24593774:240170 +k106,14:10073996,24593774:240170 +k106,14:12365443,24593774:240170 +k106,14:15367957,24593774:240171 +k106,14:17983152,24593774:240170 +k106,14:18882614,24593774:240170 +k106,14:20141869,24593774:240170 +k106,14:21474524,24593774:240170 +k106,14:22373986,24593774:240170 +k106,14:23633241,24593774:240170 +k106,14:24288213,24593774:240129 +k106,14:27544351,24593774:240171 +k106,14:30654343,24593774:240170 +h106,14:31052802,24593774:0,0,0 +k106,14:31292972,24593774:240170 +k106,14:32184570,24593774:240170 +h106,14:32583029,24593774:0,0,0 +k106,14:32583029,24593774:0 +) +(106,15:6630773,25435262:25952256,513147,134348 +k106,14:9455600,25435262:155546 +k106,14:10630231,25435262:155546 +k106,14:11200577,25435262:155503 +k106,14:14198419,25435262:155546 +k106,14:16133267,25435262:155546 +k106,14:17902309,25435262:155546 +k106,14:20805780,25435262:155546 +k106,14:23630607,25435262:155546 +k106,14:27188782,25435262:155546 +k106,14:27995756,25435262:155546 +k106,14:29170387,25435262:155546 +k106,14:29740733,25435262:155503 +k106,14:32583029,25435262:0 +) +(106,15:6630773,26276750:25952256,513147,134348 +k106,14:9580071,26276750:165329 +k106,14:12303927,26276750:165330 +k106,14:16198910,26276750:165329 +k106,14:19441809,26276750:165329 +k106,14:20626223,26276750:165329 +k106,14:23836356,26276750:165330 +k106,14:24617723,26276750:165329 +k106,14:26215670,26276750:165329 +k106,14:27572444,26276750:165329 +k106,14:28756859,26276750:165330 +k106,14:31966991,26276750:165329 +k106,14:32583029,26276750:0 +) +(106,15:6630773,27118238:25952256,505283,134348 +k106,14:9704888,27118238:190531 +k106,14:10523254,27118238:190531 +k106,14:11917025,27118238:190530 +k106,14:13863266,27118238:190531 +k106,14:18116374,27118238:190531 +k106,14:19298465,27118238:190531 +k106,14:21844360,27118238:190531 +k106,14:23107060,27118238:190531 +k106,14:25669338,27118238:190530 +k106,14:28514077,27118238:190531 +k106,14:29356036,27118238:190531 +k106,14:32583029,27118238:0 +) +(106,15:6630773,27959726:25952256,513147,134348 +k106,14:9285334,27959726:215311 +k106,14:10159937,27959726:215311 +k106,14:14355905,27959726:215311 +k106,14:15296044,27959726:215311 +k106,14:16197517,27959726:215311 +k106,14:17064256,27959726:215311 +k106,14:20550469,27959726:215311 +k106,14:21784865,27959726:215311 +k106,14:26132221,27959726:215311 +k106,14:27006824,27959726:215311 +k106,14:27577995,27959726:215311 +k106,14:30111314,27959726:215311 +k106,14:30985917,27959726:215311 +k106,15:32583029,27959726:0 +) +(106,15:6630773,28801214:25952256,505283,126483 +k106,14:9506056,28801214:252532 +k106,14:13576715,28801214:252532 +k106,14:15210091,28801214:252532 +k106,14:15994120,28801214:252532 +k106,14:17312923,28801214:252532 +k106,14:18336158,28801214:252532 +k106,14:21385110,28801214:252531 +k106,14:24455035,28801214:252532 +k106,14:25910808,28801214:252532 +k106,14:26694837,28801214:252532 +k106,14:27966454,28801214:252532 +k106,14:30497673,28801214:252532 +k106,14:32583029,28801214:0 +) +(106,15:6630773,29642702:25952256,513147,134348 +k106,14:9742333,29642702:263366 +k106,14:10664990,29642702:263365 +k106,14:12530056,29642702:263366 +k106,14:13452714,29642702:263366 +k106,14:14461224,29642702:263366 +k106,14:16054970,29642702:263365 +k106,14:17410821,29642702:263366 +k106,14:18088966,29642702:263302 +k106,14:21192661,29642702:263365 +k106,14:22403678,29642702:263366 +k106,14:23022904,29642702:263366 +k106,14:25454201,29642702:263366 +k106,14:26376858,29642702:263365 +k106,14:29402567,29642702:263366 +k106,14:32583029,29642702:0 +) +(106,15:6630773,30484190:25952256,505283,134348 +k106,14:8564135,30484190:216319 +k106,14:10255669,30484190:216319 +k106,14:12339765,30484190:216320 +k106,14:16218236,30484190:216319 +k106,14:17580780,30484190:216319 +k106,14:18816184,30484190:216319 +k106,14:20189214,30484190:216320 +k106,14:21918759,30484190:216319 +k106,14:23532961,30484190:216319 +k106,14:26651214,30484190:216319 +k106,14:27886619,30484190:216320 +k106,14:29582741,30484190:216319 +k106,14:31510860,30484190:216319 +k106,14:32583029,30484190:0 +) +(106,15:6630773,31325678:25952256,505283,134348 +g106,14:7042994,31325678 +g106,14:9198473,31325678 +g106,14:10497396,31325678 +g106,14:11154722,31325678 +g106,14:14255885,31325678 +g106,14:15106542,31325678 +g106,14:16053537,31325678 +k106,15:32583029,31325678:12048795 +g106,15:32583029,31325678 +) +(106,17:6630773,32167166:25952256,505283,126483 +h106,16:6630773,32167166:983040,0,0 +k106,16:8067941,32167166:241136 +k106,16:9124388,32167166:241179 +k106,16:10431837,32167166:241178 +k106,16:13034278,32167166:241179 +k106,16:16128894,32167166:241178 +k106,16:17052958,32167166:241179 +k106,16:18683499,32167166:241178 +k106,16:21479270,32167166:241178 +k106,16:24505074,32167166:241179 +k106,16:25362290,32167166:241178 +k106,16:26806710,32167166:241179 +k106,16:28803598,32167166:241178 +k106,16:29257727,32167166:241137 +k106,16:32168186,32167166:241178 +k106,17:32583029,32167166:0 +) +(106,17:6630773,33008654:25952256,513147,134348 +k106,16:7541024,33008654:224089 +k106,16:8120974,33008654:224090 +k106,16:11187359,33008654:224089 +k106,16:12359100,33008654:224090 +k106,16:13972552,33008654:224089 +k106,16:18452549,33008654:224089 +k106,16:19868084,33008654:224090 +k106,16:22560914,33008654:224089 +k106,16:23981691,33008654:224090 +k106,16:25530918,33008654:224089 +k106,16:26286504,33008654:224089 +k106,16:27458245,33008654:224090 +k106,16:28852807,33008654:224089 +k106,16:29728325,33008654:224090 +k106,16:31563944,33008654:224089 +k106,17:32583029,33008654:0 +) +(106,17:6630773,33850142:25952256,505283,134348 +k106,16:7269118,33850142:223502 +k106,16:10334940,33850142:223526 +k106,16:11174505,33850142:223527 +k106,16:11753891,33850142:223526 +k106,16:13215392,33850142:223526 +k106,16:17160708,33850142:223526 +k106,16:18035663,33850142:223527 +k106,16:19589570,33850142:223526 +k106,16:22439124,33850142:223526 +k106,16:24274181,33850142:223527 +k106,16:24853567,33850142:223526 +k106,16:28093060,33850142:223526 +k106,16:29696775,33850142:223527 +k106,16:31516758,33850142:223526 +k106,16:32583029,33850142:0 +) +(106,17:6630773,34691630:25952256,505283,134348 +k106,16:8429456,34691630:250067 +k106,16:9698607,34691630:250066 +k106,16:11534645,34691630:250067 +k106,16:12949941,34691630:250066 +k106,16:15338448,34691630:250067 +k106,16:16350042,34691630:250066 +k106,16:19346068,34691630:250067 +k106,16:20247562,34691630:250066 +k106,16:22633447,34691630:250067 +k106,16:24730318,34691630:250066 +k106,16:26171830,34691630:250067 +k106,16:28318508,34691630:250066 +k106,16:29220003,34691630:250067 +k106,16:31034413,34691630:250066 +k106,16:32583029,34691630:0 +) +(106,17:6630773,35533118:25952256,513147,134348 +k106,16:8253553,35533118:242592 +k106,16:10044762,35533118:242593 +k106,16:10938782,35533118:242592 +k106,16:12195871,35533118:242592 +k106,16:13947102,35533118:242592 +k106,16:16777712,35533118:242593 +k106,16:17794284,35533118:242592 +k106,16:20319495,35533118:242592 +k106,16:22278475,35533118:242592 +k106,16:25147096,35533118:242593 +k106,16:27612014,35533118:242592 +k106,16:29546746,35533118:242592 +k106,16:32583029,35533118:0 +) +(106,17:6630773,36374606:25952256,513147,134348 +k106,16:7988398,36374606:285456 +k106,16:9654042,36374606:285456 +k106,16:10931058,36374606:285456 +k106,16:12282786,36374606:285457 +k106,16:14641801,36374606:285456 +k106,16:15283117,36374606:285456 +k106,16:19361797,36374606:285456 +k106,16:20581796,36374606:285456 +k106,16:21526544,36374606:285456 +k106,16:23397971,36374606:285456 +k106,16:24829653,36374606:285457 +k106,16:26813147,36374606:285456 +k106,16:29700382,36374606:285456 +k106,16:30341698,36374606:285456 +k106,16:32583029,36374606:0 +) +(106,17:6630773,37216094:25952256,513147,134348 +k106,16:9608376,37216094:135307 +k106,16:10356444,37216094:135306 +k106,16:12738325,37216094:135307 +k106,16:15212611,37216094:135306 +k106,16:16007210,37216094:135307 +k106,16:19062146,37216094:135307 +k106,16:20367925,37216094:135306 +k106,16:21635694,37216094:135307 +k106,16:23183301,37216094:135306 +k106,16:24988465,37216094:135307 +k106,16:26315217,37216094:135307 +k106,16:28777706,37216094:135306 +k106,16:29572305,37216094:135307 +k106,16:32583029,37216094:0 +) +(106,17:6630773,38057582:25952256,505283,126483 +k106,16:8059602,38057582:258356 +k106,16:9450421,38057582:258357 +k106,16:10615140,38057582:258356 +k106,16:11524925,38057582:258357 +k106,16:14195661,38057582:258356 +k106,16:14868801,38057582:258297 +k106,16:16623345,38057582:258357 +k106,16:20398363,38057582:258356 +k106,16:21466090,38057582:258357 +k106,16:22080306,38057582:258356 +k106,16:27139831,38057582:258357 +k106,16:28568660,38057582:258356 +k106,16:29959479,38057582:258357 +k106,16:31124198,38057582:258356 +k106,16:32583029,38057582:0 +) +(106,17:6630773,38899070:25952256,505283,134348 +k106,16:8530059,38899070:292999 +k106,16:9435819,38899070:292998 +k106,16:11464211,38899070:292999 +k106,16:12171958,38899070:292904 +k106,16:13116385,38899070:292999 +k106,16:14423880,38899070:292998 +k106,16:15072739,38899070:292999 +k106,16:18441998,38899070:292999 +k106,16:20283612,38899070:292998 +k106,16:21747084,38899070:292999 +k106,16:23588698,38899070:292998 +k106,16:24339794,38899070:292999 +k106,16:25284220,38899070:292998 +k106,16:28538791,38899070:292999 +k106,16:29044687,38899070:292904 +k106,16:30152954,38899070:292999 +k106,16:32583029,38899070:0 +) +(106,17:6630773,39740558:25952256,513147,134348 +k106,16:10837573,39740558:144223 +k106,16:12173240,39740558:144222 +k106,16:15353746,39740558:144223 +k106,16:16570138,39740558:144223 +k106,16:17733446,39740558:144223 +k106,16:19202806,39740558:144222 +k106,16:20006321,39740558:144223 +k106,16:21353785,39740558:144223 +k106,16:23080047,39740558:144223 +k106,16:23755766,39740558:144222 +k106,16:24847640,39740558:144223 +k106,16:26162336,39740558:144223 +k106,16:26957987,39740558:144223 +k106,16:28194694,39740558:144222 +k106,16:29358002,39740558:144223 +k106,16:32583029,39740558:0 +) +(106,17:6630773,40582046:25952256,513147,134348 +k106,16:9762247,40582046:139755 +k106,16:10553431,40582046:139756 +k106,16:11959342,40582046:139755 +k106,16:13165368,40582046:139755 +k106,16:14066652,40582046:139756 +k106,16:16812774,40582046:139755 +k106,16:17971614,40582046:139755 +k106,16:20264883,40582046:139756 +k106,16:23075885,40582046:139755 +k106,16:24407085,40582046:139755 +k106,16:26685936,40582046:139756 +k106,16:30383641,40582046:139755 +k106,16:32583029,40582046:0 +) +(106,17:6630773,41423534:25952256,513147,134348 +k106,16:7837443,41423534:187585 +k106,16:8439859,41423534:187573 +k106,16:11643411,41423534:187585 +k106,16:14169976,41423534:187585 +k106,16:15016853,41423534:187585 +k106,16:17618784,41423534:187585 +k106,16:19544384,41423534:187585 +k106,16:20751054,41423534:187585 +k106,16:22913894,41423534:187585 +k106,16:24961391,41423534:187585 +k106,16:26096627,41423534:187585 +k106,16:27743043,41423534:187585 +k106,16:29236761,41423534:187585 +k106,16:32583029,41423534:0 +) +(106,17:6630773,42265022:25952256,513147,134348 +k106,16:7502963,42265022:256152 +k106,16:8347628,42265022:256152 +k106,16:9622865,42265022:256152 +k106,16:12955277,42265022:256152 +k106,16:14343891,42265022:256152 +k106,16:15942876,42265022:256152 +k106,16:17402270,42265022:256153 +k106,16:19067446,42265022:256152 +k106,16:20577302,42265022:256152 +k106,16:21965916,42265022:256152 +k106,16:23616019,42265022:256152 +k106,16:24633699,42265022:256152 +k106,16:28142403,42265022:256152 +k106,16:29417640,42265022:256152 +k106,16:32583029,42265022:0 +) +(106,17:6630773,43106510:25952256,505283,134348 +k106,16:7853574,43106510:197818 +k106,16:9381773,43106510:197818 +k106,16:10598676,43106510:197818 +k106,16:13872754,43106510:197818 +k106,16:17191397,43106510:197819 +k106,16:18882125,43106510:197818 +k106,16:19494784,43106510:197816 +k106,16:23357375,43106510:197818 +k106,16:24725667,43106510:197819 +k106,16:25606370,43106510:197818 +k106,16:27197483,43106510:197818 +k106,16:29187055,43106510:197818 +k106,16:29740733,43106510:197818 +k106,16:32583029,43106510:0 +) +(106,17:6630773,43947998:25952256,513147,134348 +k106,16:9219404,43947998:170352 +k106,16:9921253,43947998:170352 +k106,16:11110689,43947998:170351 +k106,16:12882741,43947998:170352 +k106,16:15605720,43947998:170352 +k106,16:17014047,43947998:170352 +k106,16:17843690,43947998:170351 +k106,16:20615821,43947998:170352 +k106,16:21417940,43947998:170352 +k106,16:22348510,43947998:170352 +k106,16:24254255,43947998:170352 +k106,16:25056373,43947998:170351 +k106,16:25439688,43947998:170323 +k106,16:27348055,43947998:170352 +k106,16:30006809,43947998:170352 +k106,16:32583029,43947998:0 +) +(106,17:6630773,44789486:25952256,505283,134348 +k106,16:9313519,44789486:251360 +k106,16:10756324,44789486:251360 +k106,16:13530821,44789486:251361 +k106,16:15943558,44789486:251360 +k106,16:16877803,44789486:251360 +k106,16:20201491,44789486:251360 +k106,16:23160143,44789486:251360 +k106,16:24602948,44789486:251360 +k106,16:27382033,44789486:251361 +k106,16:28316278,44789486:251360 +k106,16:30596633,44789486:251360 +k106,17:32583029,44789486:0 +) +(106,17:6630773,45630974:25952256,513147,134348 +k106,16:8572100,45630974:197414 +k106,16:11761234,45630974:197415 +k106,16:13526269,45630974:197414 +k106,16:15636025,45630974:197415 +k106,16:16516324,45630974:197414 +k106,16:17732824,45630974:197415 +k106,16:20631632,45630974:197414 +k106,16:22321957,45630974:197415 +k106,16:23585642,45630974:197414 +k106,16:25990310,45630974:197415 +k106,16:26873886,45630974:197414 +k106,16:28806694,45630974:197415 +k106,16:29359968,45630974:197414 +k106,17:32583029,45630974:0 +k106,17:32583029,45630974:0 +) +] +(106,19:32583029,45706769:0,0,0 +g106,19:32583029,45706769 +) +) +] +(106,19:6630773,47279633:25952256,473825,0 +(106,19:6630773,47279633:25952256,473825,0 +(106,19:6630773,47279633:0,0,0 +v106,19:6630773,47279633:0,0,0 +) +g106,19:6830002,47279633 +k106,19:31614406,47279633:24784404 +) +) +] +h106,19:4262630,4025873:0,0,0 ] !20836 }8 !10 {9 -[110,27:4262630,47279633:28320399,43253760,0 -(110,27:4262630,4025873:0,0,0 -[110,27:-473657,4025873:25952256,0,0 -(110,27:-473657,-710414:25952256,0,0 -h110,27:-473657,-710414:0,0,0 -(110,27:-473657,-710414:0,0,0 -(110,27:-473657,-710414:0,0,0 -g110,27:-473657,-710414 -(110,27:-473657,-710414:65781,0,65781 -g110,27:-407876,-710414 -[110,27:-407876,-644633:0,0,0 +[106,27:4262630,47279633:28320399,43253760,0 +(106,27:4262630,4025873:0,0,0 +[106,27:-473657,4025873:25952256,0,0 +(106,27:-473657,-710414:25952256,0,0 +h106,27:-473657,-710414:0,0,0 +(106,27:-473657,-710414:0,0,0 +(106,27:-473657,-710414:0,0,0 +g106,27:-473657,-710414 +(106,27:-473657,-710414:65781,0,65781 +g106,27:-407876,-710414 +[106,27:-407876,-644633:0,0,0 ] ) -k110,27:-473657,-710414:-65781 +k106,27:-473657,-710414:-65781 ) ) -k110,27:25478599,-710414:25952256 -g110,27:25478599,-710414 +k106,27:25478599,-710414:25952256 +g106,27:25478599,-710414 ) ] ) -[110,27:6630773,47279633:25952256,43253760,0 -[110,27:6630773,4812305:25952256,786432,0 -(110,27:6630773,4812305:25952256,513147,126483 -(110,27:6630773,4812305:25952256,513147,126483 -g110,27:3078558,4812305 -[110,27:3078558,4812305:0,0,0 -(110,27:3078558,2439708:0,1703936,0 -k110,27:1358238,2439708:-1720320 -(110,1:1358238,2439708:1720320,1703936,0 -(110,1:1358238,2439708:1179648,16384,0 -r110,27:2537886,2439708:1179648,16384,0 +[106,27:6630773,47279633:25952256,43253760,0 +[106,27:6630773,4812305:25952256,786432,0 +(106,27:6630773,4812305:25952256,513147,126483 +(106,27:6630773,4812305:25952256,513147,126483 +g106,27:3078558,4812305 +[106,27:3078558,4812305:0,0,0 +(106,27:3078558,2439708:0,1703936,0 +k106,27:1358238,2439708:-1720320 +(106,1:1358238,2439708:1720320,1703936,0 +(106,1:1358238,2439708:1179648,16384,0 +r106,27:2537886,2439708:1179648,16384,0 ) -g110,1:3062174,2439708 -(110,1:3062174,2439708:16384,1703936,0 -[110,1:3062174,2439708:25952256,1703936,0 -(110,1:3062174,1915420:25952256,1179648,0 -(110,1:3062174,1915420:16384,1179648,0 -r110,27:3078558,1915420:16384,1179648,0 +g106,1:3062174,2439708 +(106,1:3062174,2439708:16384,1703936,0 +[106,1:3062174,2439708:25952256,1703936,0 +(106,1:3062174,1915420:25952256,1179648,0 +(106,1:3062174,1915420:16384,1179648,0 +r106,27:3078558,1915420:16384,1179648,0 ) -k110,1:29014430,1915420:25935872 -g110,1:29014430,1915420 +k106,1:29014430,1915420:25935872 +g106,1:29014430,1915420 ) ] ) ) ) ] -[110,27:3078558,4812305:0,0,0 -(110,27:3078558,2439708:0,1703936,0 -g110,27:29030814,2439708 -g110,27:36135244,2439708 -(110,1:36135244,2439708:1720320,1703936,0 -(110,1:36135244,2439708:16384,1703936,0 -[110,1:36135244,2439708:25952256,1703936,0 -(110,1:36135244,1915420:25952256,1179648,0 -(110,1:36135244,1915420:16384,1179648,0 -r110,27:36151628,1915420:16384,1179648,0 +[106,27:3078558,4812305:0,0,0 +(106,27:3078558,2439708:0,1703936,0 +g106,27:29030814,2439708 +g106,27:36135244,2439708 +(106,1:36135244,2439708:1720320,1703936,0 +(106,1:36135244,2439708:16384,1703936,0 +[106,1:36135244,2439708:25952256,1703936,0 +(106,1:36135244,1915420:25952256,1179648,0 +(106,1:36135244,1915420:16384,1179648,0 +r106,27:36151628,1915420:16384,1179648,0 ) -k110,1:62087500,1915420:25935872 -g110,1:62087500,1915420 +k106,1:62087500,1915420:25935872 +g106,1:62087500,1915420 ) ] ) -g110,1:36675916,2439708 -(110,1:36675916,2439708:1179648,16384,0 -r110,27:37855564,2439708:1179648,16384,0 +g106,1:36675916,2439708 +(106,1:36675916,2439708:1179648,16384,0 +r106,27:37855564,2439708:1179648,16384,0 ) ) -k110,27:3078556,2439708:-34777008 +k106,27:3078556,2439708:-34777008 ) ] -[110,27:3078558,4812305:0,0,0 -(110,27:3078558,49800853:0,16384,2228224 -k110,27:1358238,49800853:-1720320 -(110,1:1358238,49800853:1720320,16384,2228224 -(110,1:1358238,49800853:1179648,16384,0 -r110,27:2537886,49800853:1179648,16384,0 +[106,27:3078558,4812305:0,0,0 +(106,27:3078558,49800853:0,16384,2228224 +k106,27:1358238,49800853:-1720320 +(106,1:1358238,49800853:1720320,16384,2228224 +(106,1:1358238,49800853:1179648,16384,0 +r106,27:2537886,49800853:1179648,16384,0 ) -g110,1:3062174,49800853 -(110,1:3062174,52029077:16384,1703936,0 -[110,1:3062174,52029077:25952256,1703936,0 -(110,1:3062174,51504789:25952256,1179648,0 -(110,1:3062174,51504789:16384,1179648,0 -r110,27:3078558,51504789:16384,1179648,0 +g106,1:3062174,49800853 +(106,1:3062174,52029077:16384,1703936,0 +[106,1:3062174,52029077:25952256,1703936,0 +(106,1:3062174,51504789:25952256,1179648,0 +(106,1:3062174,51504789:16384,1179648,0 +r106,27:3078558,51504789:16384,1179648,0 ) -k110,1:29014430,51504789:25935872 -g110,1:29014430,51504789 -) -] -) -) -) -] -[110,27:3078558,4812305:0,0,0 -(110,27:3078558,49800853:0,16384,2228224 -g110,27:29030814,49800853 -g110,27:36135244,49800853 -(110,1:36135244,49800853:1720320,16384,2228224 -(110,1:36135244,52029077:16384,1703936,0 -[110,1:36135244,52029077:25952256,1703936,0 -(110,1:36135244,51504789:25952256,1179648,0 -(110,1:36135244,51504789:16384,1179648,0 -r110,27:36151628,51504789:16384,1179648,0 -) -k110,1:62087500,51504789:25935872 -g110,1:62087500,51504789 -) -] -) -g110,1:36675916,49800853 -(110,1:36675916,49800853:1179648,16384,0 -r110,27:37855564,49800853:1179648,16384,0 -) -) -k110,27:3078556,49800853:-34777008 -) -] -g110,27:6630773,4812305 -k110,27:30249947,4812305:22695772 -) -) -] -[110,27:6630773,45706769:25952256,40108032,0 -(110,27:6630773,45706769:25952256,40108032,0 -(110,27:6630773,45706769:0,0,0 -g110,27:6630773,45706769 -) -[110,27:6630773,45706769:25952256,40108032,0 -(110,19:6630773,6254097:25952256,505283,134348 -h110,18:6630773,6254097:983040,0,0 -k110,18:7978417,6254097:151612 -k110,18:9605292,6254097:151660 -k110,18:11266902,6254097:151660 -k110,18:13153954,6254097:151659 -k110,18:13720410,6254097:151613 -k110,18:15499328,6254097:151659 -k110,18:17940161,6254097:151660 -k110,18:19685657,6254097:151660 -k110,18:20520201,6254097:151659 -k110,18:22439367,6254097:151660 -k110,18:23663196,6254097:151660 -k110,18:24027800,6254097:151612 -k110,18:25155291,6254097:151660 -k110,18:26505604,6254097:151659 -k110,18:29981250,6254097:151660 -k110,18:32583029,6254097:0 -) -(110,19:6630773,7095585:25952256,513147,134348 -k110,18:8153529,7095585:239561 -k110,18:10385385,7095585:239562 -k110,18:12447502,7095585:239561 -k110,18:13101866,7095585:239521 -k110,18:14947059,7095585:239561 -k110,18:16378065,7095585:239561 -k110,18:17032429,7095585:239521 -k110,18:20356114,7095585:239561 -k110,18:22074823,7095585:239561 -k110,18:23913463,7095585:239562 -k110,18:24611121,7095585:239561 -k110,18:25951687,7095585:239561 -k110,18:28910337,7095585:239561 -k110,18:29765937,7095585:239562 -k110,18:30986572,7095585:239561 -k110,18:32583029,7095585:0 -) -(110,19:6630773,7937073:25952256,513147,134348 -k110,18:7544618,7937073:227683 -k110,18:8128161,7937073:227683 -k110,18:11697525,7937073:227683 -k110,18:13116653,7937073:227683 -k110,18:15688559,7937073:227683 -k110,18:18147743,7937073:227683 -k110,18:20077396,7937073:227683 -k110,18:22285577,7937073:227683 -k110,18:23172552,7937073:227683 -k110,18:26332971,7937073:227683 -k110,18:28156455,7937073:227683 -k110,18:30438691,7937073:227683 -k110,19:32583029,7937073:0 -) -(110,19:6630773,8778561:25952256,513147,134348 -k110,18:9863145,8778561:281286 -k110,18:11335876,8778561:281286 -k110,18:12075259,8778561:281286 -k110,18:13457550,8778561:281286 -k110,18:16182017,8778561:281285 -k110,18:16819163,8778561:281286 -k110,18:19302459,8778561:281286 -k110,18:21233942,8778561:281286 -k110,18:22174520,8778561:281286 -k110,18:23474891,8778561:281286 -k110,18:25007259,8778561:281286 -k110,18:26223088,8778561:281286 -k110,18:26717283,8778561:281203 -k110,18:28091054,8778561:281286 -k110,18:29319991,8778561:281286 -k110,18:32583029,8778561:0 -) -(110,19:6630773,9620049:25952256,505283,134348 -k110,18:9042088,9620049:217825 -k110,18:11268591,9620049:217825 -k110,18:13403999,9620049:217825 -k110,18:15534166,9620049:217826 -k110,18:16943436,9620049:217825 -k110,18:18627957,9620049:217825 -k110,18:20114559,9620049:217825 -k110,18:22334509,9620049:217825 -k110,18:23933178,9620049:217825 -k110,18:24682500,9620049:217825 -k110,18:25551753,9620049:217825 -k110,18:26816844,9620049:217826 -k110,18:28319175,9620049:217825 -k110,18:28995097,9620049:217825 -k110,18:29744419,9620049:217825 -k110,18:30981329,9620049:217825 -k110,18:32583029,9620049:0 -) -(110,19:6630773,10461537:25952256,513147,134348 -k110,18:8794218,10461537:186224 -k110,18:10630639,10461537:186224 -k110,18:11476155,10461537:186224 -k110,18:14421445,10461537:186224 -k110,18:15799114,10461537:186224 -k110,18:20337584,10461537:186224 -k110,18:23366104,10461537:186224 -k110,18:23765307,10461537:186211 -k110,18:25426746,10461537:186224 -k110,18:26953181,10461537:186224 -k110,18:29519017,10461537:186224 -k110,18:30356669,10461537:186224 -k110,18:31809049,10461537:186224 -k110,18:32583029,10461537:0 -) -(110,19:6630773,11303025:25952256,505283,134348 -k110,18:9143464,11303025:230072 -k110,18:9989574,11303025:230072 -k110,18:11645055,11303025:230073 -k110,18:12333224,11303025:230072 -k110,18:13695758,11303025:230072 -k110,18:14673596,11303025:230072 -k110,18:17622757,11303025:230072 -k110,18:18614358,11303025:230073 -k110,18:22198563,11303025:230072 -k110,18:24499573,11303025:230072 -k110,18:25801814,11303025:230072 -k110,18:26644648,11303025:230072 -k110,18:27893805,11303025:230072 -k110,18:30777431,11303025:230073 -k110,18:31465600,11303025:230072 -k110,18:32227169,11303025:230072 -k110,18:32583029,11303025:0 -) -(110,19:6630773,12144513:25952256,513147,134348 -g110,18:7931007,12144513 -g110,18:10972532,12144513 -g110,18:11823189,12144513 -g110,18:13633948,12144513 -g110,18:14780828,12144513 -g110,18:17688660,12144513 -g110,18:19281840,12144513 -g110,18:19836929,12144513 -g110,18:21566424,12144513 -g110,18:22417081,12144513 -g110,18:25046385,12144513 -g110,18:26437059,12144513 -g110,18:28931359,12144513 -k110,19:32583029,12144513:2088636 -g110,19:32583029,12144513 -) -(110,21:6630773,12986001:25952256,513147,134348 -h110,20:6630773,12986001:983040,0,0 -k110,20:9442456,12986001:194830 -k110,20:10168783,12986001:194830 -k110,20:10719473,12986001:194830 -k110,20:14083623,12986001:194829 -k110,20:14766037,12986001:194826 -k110,20:17803163,12986001:194830 -k110,20:18529489,12986001:194829 -k110,20:19080179,12986001:194830 -k110,20:21520928,12986001:194830 -k110,20:22375050,12986001:194830 -k110,20:27699383,12986001:194830 -k110,20:28309051,12986001:194825 -k110,20:29190043,12986001:194830 -k110,20:29740733,12986001:194830 -k110,20:32583029,12986001:0 -) -(110,21:6630773,13827489:25952256,513147,126483 -k110,20:8809746,13827489:167018 -k110,20:9721909,13827489:167019 -k110,20:10540355,13827489:167018 -k110,20:14999981,13827489:167018 -k110,20:16560951,13827489:167019 -k110,20:18429939,13827489:167018 -k110,20:21550665,13827489:167018 -k110,20:22376975,13827489:167018 -k110,20:23563079,13827489:167019 -k110,20:24144908,13827489:166986 -k110,20:28102528,13827489:167018 -k110,20:29460992,13827489:167019 -k110,20:31021961,13827489:167018 -k110,21:32583029,13827489:0 -) -(110,21:6630773,14668977:25952256,505283,134348 -k110,20:9013464,14668977:150535 -k110,20:9981888,14668977:150535 -k110,20:10898539,14668977:150535 -k110,20:14221671,14668977:150534 -k110,20:14988244,14668977:150535 -k110,20:16990826,14668977:150535 -k110,20:18407517,14668977:150535 -k110,20:18972847,14668977:150487 -k110,20:21636031,14668977:150534 -k110,20:23147093,14668977:150535 -k110,20:25852877,14668977:150535 -k110,20:27194857,14668977:150535 -k110,20:28628587,14668977:150535 -k110,20:32583029,14668977:0 -) -(110,21:6630773,15510465:25952256,513147,134348 -k110,20:7828880,15510465:206547 -k110,20:12152400,15510465:206548 -k110,20:13626413,15510465:206547 -k110,20:14852046,15510465:206548 -k110,20:18074560,15510465:206547 -k110,20:19472553,15510465:206548 -k110,20:21371240,15510465:206547 -k110,20:23611369,15510465:206547 -k110,20:27122898,15510465:206548 -k110,20:28842671,15510465:206547 -k110,20:30536231,15510465:206548 -k110,20:31734338,15510465:206547 -k110,21:32583029,15510465:0 -) -(110,21:6630773,16351953:25952256,513147,134348 -k110,20:9101343,16351953:163047 -k110,20:9915817,16351953:163046 -k110,20:11097949,16351953:163047 -k110,20:13482011,16351953:163047 -k110,20:14304350,16351953:163047 -k110,20:15486481,16351953:163046 -k110,20:18005547,16351953:163047 -k110,20:18381550,16351953:163011 -k110,20:21213877,16351953:163046 -k110,20:23721147,16351953:163047 -k110,20:25706750,16351953:163047 -k110,20:27061242,16351953:163047 -k110,20:30741605,16351953:163046 -k110,20:31563944,16351953:163047 -k110,21:32583029,16351953:0 -) -(110,21:6630773,17193441:25952256,513147,134348 -k110,20:7277038,17193441:231422 -k110,20:10350788,17193441:231454 -k110,20:11198280,17193441:231454 -k110,20:11785594,17193441:231454 -k110,20:13255023,17193441:231454 -k110,20:16671527,17193441:231454 -k110,20:17554409,17193441:231454 -k110,20:18141723,17193441:231454 -k110,20:21788258,17193441:231454 -k110,20:25341732,17193441:231454 -k110,20:26967137,17193441:231454 -k110,20:30274851,17193441:231454 -k110,20:32583029,17193441:0 -) -(110,21:6630773,18034929:25952256,505283,134348 -k110,20:7895164,18034929:192222 -k110,20:9481337,18034929:192222 -k110,20:11365699,18034929:192222 -k110,20:15347869,18034929:192223 -k110,20:16156129,18034929:192222 -k110,20:17737714,18034929:192222 -k110,20:20484529,18034929:192222 -k110,20:21362913,18034929:192222 -k110,20:23068361,18034929:192222 -k110,20:23876622,18034929:192223 -k110,20:26573630,18034929:192222 -k110,20:30665244,18034929:192222 -k110,20:31540351,18034929:192222 -k110,21:32583029,18034929:0 -) -(110,21:6630773,18876417:25952256,473825,7863 -k110,21:32583028,18876417:23050976 -g110,21:32583028,18876417 -) -(110,23:6630773,19717905:25952256,505283,134348 -h110,22:6630773,19717905:983040,0,0 -k110,22:9636735,19717905:239687 -k110,22:12748864,19717905:239686 -k110,22:13201502,19717905:239646 -k110,22:14881015,19717905:239687 -k110,22:15772130,19717905:239687 -k110,22:17334989,19717905:239687 -k110,22:19812074,19717905:239686 -k110,22:23692941,19717905:239687 -k110,22:26704801,19717905:239687 -k110,22:28896149,19717905:239686 -k110,22:30578283,19717905:239687 -k110,22:32583029,19717905:0 -) -(110,23:6630773,20559393:25952256,513147,126483 -k110,22:7571450,20559393:169974 -k110,22:12519000,20559393:169975 -k110,22:14493836,20559393:169974 -k110,22:16496197,20559393:169974 -k110,22:17657731,20559393:169974 -k110,22:19000145,20559393:169975 -k110,22:21631651,20559393:169974 -k110,22:22749276,20559393:169974 -k110,22:24296162,20559393:169975 -k110,22:26075700,20559393:169974 -k110,22:26458637,20559393:169945 -k110,22:28585516,20559393:169974 -k110,22:29441653,20559393:169975 -k110,22:29967487,20559393:169974 -k110,22:32583029,20559393:0 -) -(110,23:6630773,21400881:25952256,513147,134348 -k110,22:8089189,21400881:266971 -k110,22:8569084,21400881:266903 -k110,22:10447584,21400881:266970 -k110,22:12049523,21400881:266971 -k110,22:14445103,21400881:266971 -k110,22:15178035,21400881:266971 -k110,22:16464090,21400881:266970 -k110,22:18490047,21400881:266971 -k110,22:19288515,21400881:266971 -k110,22:20621757,21400881:266971 -k110,22:21934682,21400881:266970 -k110,22:23769930,21400881:266971 -k110,22:26476806,21400881:266971 -k110,22:27209738,21400881:266971 -k110,22:27689633,21400881:266903 -k110,22:29912853,21400881:266970 -k110,22:31563944,21400881:266971 -k110,22:32583029,21400881:0 -) -(110,23:6630773,22242369:25952256,513147,134348 -k110,22:8660844,22242369:196374 -k110,22:10046041,22242369:196374 -k110,22:10901707,22242369:196374 -k110,22:12117166,22242369:196374 -k110,22:12728380,22242369:196371 -k110,22:15940721,22242369:196374 -k110,22:16595192,22242369:196374 -k110,22:18747815,22242369:196373 -k110,22:20659922,22242369:196374 -k110,22:23408268,22242369:196374 -k110,22:24623071,22242369:196374 -k110,22:26602680,22242369:196374 -k110,22:28449251,22242369:196374 -k110,22:31129440,22242369:196374 -k110,22:32583029,22242369:0 -) -(110,23:6630773,23083857:25952256,505283,126483 -k110,22:7800994,23083857:187181 -k110,22:9241879,23083857:187181 -k110,22:10561521,23083857:187180 -k110,22:11814973,23083857:187181 -k110,22:15261259,23083857:187181 -k110,22:16214556,23083857:187181 -k110,22:17420821,23083857:187180 -k110,22:19899141,23083857:187181 -k110,22:22472488,23083857:187181 -k110,22:24602156,23083857:187181 -k110,22:27724038,23083857:187180 -k110,22:29081692,23083857:187181 -k110,22:30870573,23083857:187181 -k110,22:32583029,23083857:0 -) -(110,23:6630773,23925345:25952256,513147,126483 -k110,22:7959799,23925345:196564 -k110,22:11415469,23925345:196565 -k110,22:12294918,23925345:196564 -k110,22:14984472,23925345:196564 -k110,22:15536897,23925345:196565 -k110,22:17503588,23925345:196564 -k110,22:18359444,23925345:196564 -k110,22:19172047,23925345:196565 -k110,22:21254082,23925345:196564 -k110,22:24607515,23925345:196564 -k110,22:25974553,23925345:196565 -k110,22:27701383,23925345:196564 -k110,22:28549375,23925345:196564 -k110,22:29493706,23925345:196565 -k110,22:31900144,23925345:196564 -k110,22:32583029,23925345:0 -) -(110,23:6630773,24766833:25952256,505283,126483 -k110,22:8994453,24766833:183297 -k110,22:10999651,24766833:183297 -k110,22:12202033,24766833:183297 -k110,22:14676468,24766833:183296 -k110,22:15783167,24766833:183297 -k110,22:16179440,24766833:183281 -k110,22:17495199,24766833:183297 -k110,22:19883783,24766833:183297 -k110,22:21237553,24766833:183297 -k110,22:22487121,24766833:183297 -k110,22:24046019,24766833:183297 -k110,22:24880744,24766833:183297 -k110,22:26083125,24766833:183296 -k110,22:27987397,24766833:183297 -k110,22:30041747,24766833:183297 -k110,22:31297213,24766833:183297 -k110,22:32583029,24766833:0 -) -(110,23:6630773,25608321:25952256,513147,134348 -k110,22:7508600,25608321:226399 -k110,22:9966501,25608321:226400 -k110,22:13604704,25608321:226399 -k110,22:15022549,25608321:226400 -k110,22:20350926,25608321:226399 -k110,22:23183037,25608321:226400 -k110,22:24068728,25608321:226399 -k110,22:25314213,25608321:226400 -k110,22:28556579,25608321:226399 -k110,22:30668450,25608321:226400 -k110,22:31107814,25608321:226372 -k110,22:32583029,25608321:0 -) -(110,23:6630773,26449809:25952256,505283,134348 -k110,22:10423947,26449809:167722 -k110,22:11985619,26449809:167721 -k110,22:14001456,26449809:167722 -k110,22:16728359,26449809:167722 -k110,22:18099321,26449809:167721 -k110,22:19849082,26449809:167722 -k110,22:21149266,26449809:167722 -k110,22:22064754,26449809:167722 -k110,22:24055031,26449809:167721 -k110,22:27234132,26449809:167722 -k110,22:27757714,26449809:167722 -k110,22:29208630,26449809:167721 -k110,22:31379788,26449809:167722 -k110,22:32583029,26449809:0 -) -(110,23:6630773,27291297:25952256,513147,134348 -k110,22:8401337,27291297:188525 -k110,22:10097191,27291297:188526 -k110,22:10937144,27291297:188525 -k110,22:11873435,27291297:188525 -k110,22:12417820,27291297:188525 -k110,22:14417106,27291297:188526 -k110,22:16537632,27291297:188525 -k110,22:17798326,27291297:188525 -k110,22:20257674,27291297:188525 -k110,22:20802060,27291297:188526 -k110,22:23941016,27291297:188525 -k110,22:26807342,27291297:188525 -k110,22:28093595,27291297:188525 -k110,22:28637981,27291297:188526 -k110,22:31923737,27291297:188525 -k110,23:32583029,27291297:0 -) -(110,23:6630773,28132785:25952256,473825,126483 -g110,22:7244845,28132785 -k110,23:32583028,28132785:22895656 -g110,23:32583028,28132785 -) -(110,25:6630773,28974273:25952256,505283,134348 -h110,24:6630773,28974273:983040,0,0 -k110,24:9400840,28974273:207609 -k110,24:10224487,28974273:207609 -k110,24:12088847,28974273:207610 -k110,24:13580962,28974273:207609 -k110,24:14246668,28974273:207609 -k110,24:14985774,28974273:207609 -k110,24:18644510,28974273:207610 -k110,24:19503547,28974273:207609 -k110,24:22970261,28974273:207609 -k110,24:26541178,28974273:207609 -k110,24:28571344,28974273:207610 -k110,24:29367466,28974273:207609 -k110,24:30771762,28974273:207609 -k110,24:31394206,28974273:207601 -k110,25:32583029,28974273:0 -) -(110,25:6630773,29815761:25952256,505283,134348 -k110,24:8900145,29815761:229236 -k110,24:9745418,29815761:229235 -k110,24:10330514,29815761:229236 -k110,24:12419661,29815761:229235 -k110,24:14592695,29815761:229236 -k110,24:15353427,29815761:229235 -k110,24:16882897,29815761:229236 -k110,24:19641822,29815761:229235 -k110,24:20659456,29815761:229236 -k110,24:24498414,29815761:229235 -k110,24:25831932,29815761:229236 -k110,24:26808933,29815761:229235 -k110,24:30130813,29815761:229236 -k110,24:31753999,29815761:229235 -k110,25:32583029,29815761:0 -) -(110,25:6630773,30657249:25952256,513147,134348 -k110,24:10761093,30657249:173256 -k110,24:14195419,30657249:173255 -k110,24:17452799,30657249:173256 -k110,24:20387742,30657249:173256 -k110,24:21212426,30657249:173256 -k110,24:22478166,30657249:173255 -k110,24:23066239,30657249:173230 -k110,24:25831444,30657249:173256 -k110,24:26663992,30657249:173256 -k110,24:29439026,30657249:173255 -k110,24:30631367,30657249:173256 -k110,24:32583029,30657249:0 -) -(110,25:6630773,31498737:25952256,513147,134348 -k110,24:8196522,31498737:194736 -k110,24:11874496,31498737:194735 -k110,24:13088317,31498737:194736 -k110,24:14617366,31498737:194736 -k110,24:15471394,31498737:194736 -k110,24:17922534,31498737:194735 -k110,24:19576101,31498737:194736 -k110,24:21008812,31498737:194736 -k110,24:21819586,31498737:194736 -k110,24:22429160,31498737:194731 -k110,24:23815341,31498737:194736 -k110,24:24798475,31498737:194736 -k110,24:29992952,31498737:194735 -k110,24:30815523,31498737:194736 -k110,24:32583029,31498737:0 -) -(110,25:6630773,32340225:25952256,513147,134348 -k110,24:7803216,32340225:153358 -k110,24:10442356,32340225:153359 -k110,24:11255006,32340225:153358 -k110,24:14318818,32340225:153358 -k110,24:17256146,32340225:153359 -k110,24:18025542,32340225:153358 -k110,24:19197985,32340225:153358 -k110,24:24290793,32340225:153359 -k110,24:24858948,32340225:153312 -k110,24:27442382,32340225:153359 -k110,24:30288614,32340225:153358 -k110,24:32583029,32340225:0 -) -(110,25:6630773,33181713:25952256,505283,126483 -k110,24:8632900,33181713:178915 -k110,24:9830900,33181713:178915 -k110,24:12175779,33181713:178914 -k110,24:14698261,33181713:178915 -k110,24:16757384,33181713:178895 -k110,24:17467796,33181713:178915 -k110,24:18665795,33181713:178914 -k110,24:20446410,33181713:178915 -k110,24:24008293,33181713:178915 -k110,24:25259377,33181713:178915 -k110,24:26504562,33181713:178914 -k110,24:28232748,33181713:178915 -k110,24:30387573,33181713:178915 -k110,25:32583029,33181713:0 -) -(110,25:6630773,34023201:25952256,513147,134348 -k110,24:8125694,34023201:194031 -k110,24:9267376,34023201:194031 -k110,24:9876244,34023201:194025 -k110,24:13154399,34023201:194031 -k110,24:14769251,34023201:194031 -k110,24:16547287,34023201:194031 -k110,24:17097178,34023201:194031 -k110,24:20450699,34023201:194030 -k110,24:21304022,34023201:194031 -k110,24:22517138,34023201:194031 -k110,24:23126007,34023201:194026 -k110,24:26162334,34023201:194031 -k110,24:27547809,34023201:194030 -k110,24:30652294,34023201:194031 -k110,24:31202185,34023201:194031 -k110,24:32583029,34023201:0 -) -(110,25:6630773,34864689:25952256,513147,126483 -k110,24:8729938,34864689:238598 -k110,24:11670585,34864689:238598 -k110,24:12718552,34864689:238597 -k110,24:13976235,34864689:238598 -k110,24:15600919,34864689:238598 -k110,24:16498809,34864689:238598 -k110,24:19579048,34864689:238598 -k110,24:20469073,34864689:238597 -k110,24:21455437,34864689:238598 -k110,24:23929468,34864689:238598 -k110,24:25408007,34864689:238598 -k110,24:27027448,34864689:238597 -k110,24:28848085,34864689:238598 -k110,24:31931601,34864689:238598 -k110,24:32583029,34864689:0 -) -(110,25:6630773,35706177:25952256,513147,134348 -k110,24:8335366,35706177:187435 -k110,24:9693273,35706177:187434 -k110,24:10496746,35706177:187435 -k110,24:11703265,35706177:187434 -k110,24:12983185,35706177:187435 -k110,24:13829911,35706177:187434 -k110,24:15036431,35706177:187435 -k110,24:15638697,35706177:187423 -k110,24:18668427,35706177:187434 -k110,24:20635164,35706177:187435 -k110,24:22014043,35706177:187434 -k110,24:22860770,35706177:187435 -k110,24:25548404,35706177:187435 -k110,24:26150669,35706177:187422 -k110,24:29180400,35706177:187435 -k110,24:32583029,35706177:0 -) -(110,25:6630773,36547665:25952256,513147,134348 -k110,24:7837291,36547665:258867 -k110,24:9485521,36547665:258867 -k110,24:14000296,36547665:258867 -k110,24:15450608,36547665:258867 -k110,24:18659251,36547665:258868 -k110,24:21386859,36547665:258867 -k110,24:23446000,36547665:258867 -k110,24:24723952,36547665:258867 -k110,24:28439843,36547665:258867 -k110,24:29358002,36547665:258867 -k110,24:32583029,36547665:0 -) -(110,25:6630773,37389153:25952256,505283,126483 -k110,24:8752000,37389153:208886 -k110,24:9770255,37389153:208885 -k110,24:13063265,37389153:208886 -k110,24:15826744,37389153:208886 -k110,24:17429580,37389153:208885 -k110,24:18226979,37389153:208886 -k110,24:19051903,37389153:208886 -k110,24:20279873,37389153:208885 -k110,24:22894586,37389153:208886 -k110,24:24685510,37389153:208885 -k110,24:25107378,37389153:208876 -k110,24:26448726,37389153:208886 -k110,24:28378587,37389153:208886 -k110,24:29963073,37389153:208885 -k110,24:31191044,37389153:208886 -k110,24:32583029,37389153:0 -) -(110,25:6630773,38230641:25952256,513147,134348 -k110,24:9865443,38230641:142681 -k110,24:10667416,38230641:142681 -k110,24:12013339,38230641:142682 -k110,24:14639835,38230641:142681 -k110,24:15979203,38230641:142681 -k110,24:17775357,38230641:142681 -k110,24:18449535,38230641:142681 -k110,24:19899660,38230641:142682 -k110,24:20989992,38230641:142681 -k110,24:23712825,38230641:142681 -k110,24:27987551,38230641:142681 -k110,24:28746271,38230641:142682 -k110,24:29477465,38230641:142681 -k110,24:31000990,38230641:142681 -k110,24:32583029,38230641:0 -) -(110,25:6630773,39072129:25952256,505283,134348 -k110,24:8475684,39072129:224206 -k110,24:12310923,39072129:224205 -k110,24:15344002,39072129:224206 -k110,24:17735484,39072129:224206 -k110,24:18572451,39072129:224205 -k110,24:21495430,39072129:224206 -k110,24:26071882,39072129:224206 -k110,24:30247253,39072129:224205 -k110,24:31490544,39072129:224206 -k110,24:32583029,39072129:0 -) -(110,25:6630773,39913617:25952256,513147,134348 -k110,24:7494264,39913617:196335 -k110,24:8105439,39913617:196332 -k110,24:8953203,39913617:196336 -k110,24:12151742,39913617:196335 -k110,24:13367162,39913617:196335 -k110,24:16479194,39913617:196335 -k110,24:17334821,39913617:196335 -k110,24:18920519,39913617:196335 -k110,24:23546433,39913617:196336 -k110,24:26723345,39913617:196335 -k110,24:27938765,39913617:196335 -k110,24:30897443,39913617:196335 -k110,24:32583029,39913617:0 -) -(110,25:6630773,40755105:25952256,513147,134348 -k110,24:9721844,40755105:164233 -k110,24:11453698,40755105:164233 -k110,24:13007294,40755105:164233 -k110,24:14880051,40755105:164233 -k110,24:16235729,40755105:164233 -k110,24:20044419,40755105:164233 -k110,24:20860080,40755105:164233 -k110,24:22043398,40755105:164233 -k110,24:25747886,40755105:164233 -k110,24:26571411,40755105:164233 -k110,24:32583029,40755105:0 -) -(110,25:6630773,41596593:25952256,505283,7863 -k110,25:32583030,41596593:21923104 -g110,25:32583030,41596593 -) -(110,27:6630773,42438081:25952256,513147,134348 -h110,26:6630773,42438081:983040,0,0 -k110,26:8604296,42438081:172594 -k110,26:10170840,42438081:172593 -k110,26:11109550,42438081:172594 -k110,26:13120429,42438081:172594 -k110,26:16639291,42438081:172594 -k110,26:18466668,42438081:172593 -k110,26:19630822,42438081:172594 -k110,26:21555193,42438081:172594 -k110,26:24490129,42438081:172593 -k110,26:26231000,42438081:172594 -k110,26:27062886,42438081:172594 -k110,26:29040997,42438081:172594 -k110,26:31205884,42438081:172593 -k110,26:31994516,42438081:172594 -k110,26:32583029,42438081:0 -) -(110,27:6630773,43279569:25952256,513147,126483 -k110,26:8025145,43279569:202927 -k110,26:9882857,43279569:202928 -k110,26:10617281,43279569:202927 -k110,26:11436247,43279569:202928 -k110,26:13801862,43279569:202927 -k110,26:14770906,43279569:202928 -k110,26:16671215,43279569:202927 -k110,26:17683512,43279569:202927 -k110,26:22734794,43279569:202928 -k110,26:25549986,43279569:202927 -k110,26:26404342,43279569:202928 -k110,26:26963129,43279569:202927 -k110,26:30016218,43279569:202928 -k110,26:32051532,43279569:202927 -k110,26:32583029,43279569:0 -) -(110,27:6630773,44121057:25952256,505283,126483 -k110,26:8913884,44121057:153846 -k110,26:9423589,44121057:153845 -k110,26:13527945,44121057:153846 -k110,26:16553578,44121057:153845 -k110,26:18994631,44121057:153846 -k110,26:21783679,44121057:153845 -k110,26:23362933,44121057:153846 -k110,26:25286906,44121057:153846 -k110,26:26202279,44121057:153845 -k110,26:27375210,44121057:153846 -k110,26:28909899,44121057:153845 -k110,26:30255190,44121057:153846 -k110,27:32583029,44121057:0 -) -(110,27:6630773,44962545:25952256,513147,134348 -k110,26:8177977,44962545:226654 -k110,26:9830038,44962545:226653 -k110,26:12769227,44962545:226654 -k110,26:13611919,44962545:226654 -k110,26:14857657,44962545:226653 -k110,26:18334241,44962545:226654 -k110,26:20256311,44962545:226654 -k110,26:21142257,44962545:226654 -k110,26:22387995,44962545:226653 -k110,26:25525103,44962545:226654 -k110,26:27036263,44962545:226654 -k110,26:28254476,44962545:226653 -k110,26:30082830,44962545:226654 -k110,26:32583029,44962545:0 -) -] -(110,27:32583029,45706769:0,0,0 -g110,27:32583029,45706769 -) -) -] -(110,27:6630773,47279633:25952256,0,0 -h110,27:6630773,47279633:25952256,0,0 -) -] -h110,27:4262630,4025873:0,0,0 -] -!26534 +k106,1:29014430,51504789:25935872 +g106,1:29014430,51504789 +) +] +) +) +) +] +[106,27:3078558,4812305:0,0,0 +(106,27:3078558,49800853:0,16384,2228224 +g106,27:29030814,49800853 +g106,27:36135244,49800853 +(106,1:36135244,49800853:1720320,16384,2228224 +(106,1:36135244,52029077:16384,1703936,0 +[106,1:36135244,52029077:25952256,1703936,0 +(106,1:36135244,51504789:25952256,1179648,0 +(106,1:36135244,51504789:16384,1179648,0 +r106,27:36151628,51504789:16384,1179648,0 +) +k106,1:62087500,51504789:25935872 +g106,1:62087500,51504789 +) +] +) +g106,1:36675916,49800853 +(106,1:36675916,49800853:1179648,16384,0 +r106,27:37855564,49800853:1179648,16384,0 +) +) +k106,27:3078556,49800853:-34777008 +) +] +g106,27:6630773,4812305 +k106,27:30249947,4812305:22695772 +) +) +] +[106,27:6630773,45706769:25952256,40108032,0 +(106,27:6630773,45706769:25952256,40108032,0 +(106,27:6630773,45706769:0,0,0 +g106,27:6630773,45706769 +) +[106,27:6630773,45706769:25952256,40108032,0 +(106,19:6630773,6254097:25952256,505283,134348 +h106,18:6630773,6254097:983040,0,0 +k106,18:7978417,6254097:151612 +k106,18:9605292,6254097:151660 +k106,18:11266902,6254097:151660 +k106,18:13153954,6254097:151659 +k106,18:13720410,6254097:151613 +k106,18:15499328,6254097:151659 +k106,18:17940161,6254097:151660 +k106,18:19685657,6254097:151660 +k106,18:20520201,6254097:151659 +k106,18:22439367,6254097:151660 +k106,18:23663196,6254097:151660 +k106,18:24027800,6254097:151612 +k106,18:25155291,6254097:151660 +k106,18:26505604,6254097:151659 +k106,18:29981250,6254097:151660 +k106,18:32583029,6254097:0 +) +(106,19:6630773,7095585:25952256,513147,134348 +k106,18:8153529,7095585:239561 +k106,18:10385385,7095585:239562 +k106,18:12447502,7095585:239561 +k106,18:13101866,7095585:239521 +k106,18:14947059,7095585:239561 +k106,18:16378065,7095585:239561 +k106,18:17032429,7095585:239521 +k106,18:20356114,7095585:239561 +k106,18:22074823,7095585:239561 +k106,18:23913463,7095585:239562 +k106,18:24611121,7095585:239561 +k106,18:25951687,7095585:239561 +k106,18:28910337,7095585:239561 +k106,18:29765937,7095585:239562 +k106,18:30986572,7095585:239561 +k106,18:32583029,7095585:0 +) +(106,19:6630773,7937073:25952256,513147,134348 +k106,18:7544618,7937073:227683 +k106,18:8128161,7937073:227683 +k106,18:11697525,7937073:227683 +k106,18:13116653,7937073:227683 +k106,18:15688559,7937073:227683 +k106,18:18147743,7937073:227683 +k106,18:20077396,7937073:227683 +k106,18:22285577,7937073:227683 +k106,18:23172552,7937073:227683 +k106,18:26332971,7937073:227683 +k106,18:28156455,7937073:227683 +k106,18:30438691,7937073:227683 +k106,19:32583029,7937073:0 +) +(106,19:6630773,8778561:25952256,513147,134348 +k106,18:9863145,8778561:281286 +k106,18:11335876,8778561:281286 +k106,18:12075259,8778561:281286 +k106,18:13457550,8778561:281286 +k106,18:16182017,8778561:281285 +k106,18:16819163,8778561:281286 +k106,18:19302459,8778561:281286 +k106,18:21233942,8778561:281286 +k106,18:22174520,8778561:281286 +k106,18:23474891,8778561:281286 +k106,18:25007259,8778561:281286 +k106,18:26223088,8778561:281286 +k106,18:26717283,8778561:281203 +k106,18:28091054,8778561:281286 +k106,18:29319991,8778561:281286 +k106,18:32583029,8778561:0 +) +(106,19:6630773,9620049:25952256,505283,134348 +k106,18:9031234,9620049:206971 +k106,18:11246883,9620049:206971 +k106,18:13371436,9620049:206970 +k106,18:15664418,9620049:206971 +k106,18:17062834,9620049:206971 +k106,18:18736501,9620049:206971 +k106,18:20212248,9620049:206970 +k106,18:22421344,9620049:206971 +k106,18:24009159,9620049:206971 +k106,18:24747627,9620049:206971 +k106,18:25606025,9620049:206970 +k106,18:26860261,9620049:206971 +k106,18:28351738,9620049:206971 +k106,18:29016806,9620049:206971 +k106,18:29755273,9620049:206970 +k106,18:30981329,9620049:206971 +k106,18:32583029,9620049:0 +) +(106,19:6630773,10461537:25952256,513147,134348 +k106,18:8794218,10461537:186224 +k106,18:10630639,10461537:186224 +k106,18:11476155,10461537:186224 +k106,18:14421445,10461537:186224 +k106,18:15799114,10461537:186224 +k106,18:20337584,10461537:186224 +k106,18:23366104,10461537:186224 +k106,18:23765307,10461537:186211 +k106,18:25426746,10461537:186224 +k106,18:26953181,10461537:186224 +k106,18:29519017,10461537:186224 +k106,18:30356669,10461537:186224 +k106,18:31809049,10461537:186224 +k106,18:32583029,10461537:0 +) +(106,19:6630773,11303025:25952256,505283,134348 +k106,18:9143464,11303025:230072 +k106,18:9989574,11303025:230072 +k106,18:11645055,11303025:230073 +k106,18:12333224,11303025:230072 +k106,18:13695758,11303025:230072 +k106,18:14673596,11303025:230072 +k106,18:17622757,11303025:230072 +k106,18:18614358,11303025:230073 +k106,18:22198563,11303025:230072 +k106,18:24499573,11303025:230072 +k106,18:25801814,11303025:230072 +k106,18:26644648,11303025:230072 +k106,18:27893805,11303025:230072 +k106,18:30777431,11303025:230073 +k106,18:31465600,11303025:230072 +k106,18:32227169,11303025:230072 +k106,18:32583029,11303025:0 +) +(106,19:6630773,12144513:25952256,513147,134348 +g106,18:7931007,12144513 +g106,18:10972532,12144513 +g106,18:11823189,12144513 +g106,18:13633948,12144513 +g106,18:14780828,12144513 +g106,18:17688660,12144513 +g106,18:19281840,12144513 +g106,18:19836929,12144513 +g106,18:21566424,12144513 +g106,18:22417081,12144513 +g106,18:25046385,12144513 +g106,18:26437059,12144513 +g106,18:28931359,12144513 +k106,19:32583029,12144513:2088636 +g106,19:32583029,12144513 +) +(106,21:6630773,12986001:25952256,513147,134348 +h106,20:6630773,12986001:983040,0,0 +k106,20:9442456,12986001:194830 +k106,20:10168783,12986001:194830 +k106,20:10719473,12986001:194830 +k106,20:14083623,12986001:194829 +k106,20:14766037,12986001:194826 +k106,20:17803163,12986001:194830 +k106,20:18529489,12986001:194829 +k106,20:19080179,12986001:194830 +k106,20:21520928,12986001:194830 +k106,20:22375050,12986001:194830 +k106,20:27699383,12986001:194830 +k106,20:28309051,12986001:194825 +k106,20:29190043,12986001:194830 +k106,20:29740733,12986001:194830 +k106,20:32583029,12986001:0 +) +(106,21:6630773,13827489:25952256,513147,126483 +k106,20:8809746,13827489:167018 +k106,20:9721909,13827489:167019 +k106,20:10540355,13827489:167018 +k106,20:14999981,13827489:167018 +k106,20:16560951,13827489:167019 +k106,20:18429939,13827489:167018 +k106,20:21550665,13827489:167018 +k106,20:22376975,13827489:167018 +k106,20:23563079,13827489:167019 +k106,20:24144908,13827489:166986 +k106,20:28102528,13827489:167018 +k106,20:29460992,13827489:167019 +k106,20:31021961,13827489:167018 +k106,21:32583029,13827489:0 +) +(106,21:6630773,14668977:25952256,505283,134348 +k106,20:9067308,14668977:204379 +k106,20:10089576,14668977:204379 +k106,20:11687906,14668977:204379 +k106,20:12658401,14668977:204379 +k106,20:16035378,14668977:204379 +k106,20:16855795,14668977:204379 +k106,20:18912221,14668977:204379 +k106,20:20382756,14668977:204379 +k106,20:21001973,14668977:204374 +k106,20:23719002,14668977:204379 +k106,20:25283908,14668977:204379 +k106,20:28043536,14668977:204379 +k106,20:29439360,14668977:204379 +k106,20:30926934,14668977:204379 +k106,21:32583029,14668977:0 +) +(106,21:6630773,15510465:25952256,513147,134348 +k106,20:9306429,15510465:164316 +k106,20:10462306,15510465:164317 +k106,20:14743594,15510465:164316 +k106,20:16175376,15510465:164316 +k106,20:17358778,15510465:164317 +k106,20:20539061,15510465:164316 +k106,20:21894823,15510465:164317 +k106,20:23751279,15510465:164316 +k106,20:25949177,15510465:164316 +k106,20:29418475,15510465:164317 +k106,20:31096017,15510465:164316 +k106,20:32583029,15510465:0 +) +(106,21:6630773,16351953:25952256,513147,134348 +k106,20:7801853,16351953:179520 +k106,20:10924594,16351953:179519 +k106,20:11755542,16351953:179520 +k106,20:12954147,16351953:179520 +k106,20:15354681,16351953:179519 +k106,20:16193493,16351953:179520 +k106,20:17392098,16351953:179520 +k106,20:19927636,16351953:179519 +k106,20:20320128,16351953:179500 +k106,20:23168929,16351953:179520 +k106,20:25692672,16351953:179520 +k106,20:27694747,16351953:179519 +k106,20:29065712,16351953:179520 +k106,20:32583029,16351953:0 +) +(106,21:6630773,17193441:25952256,513147,134348 +k106,20:7456435,17193441:166370 +k106,20:8641890,17193441:166370 +k106,20:9223071,17193441:166338 +k106,20:12231737,17193441:166370 +k106,20:13014145,17193441:166370 +k106,20:13536375,17193441:166370 +k106,20:14940721,17193441:166371 +k106,20:18292141,17193441:166370 +k106,20:19109939,17193441:166370 +k106,20:19632169,17193441:166370 +k106,20:23213620,17193441:166370 +k106,20:26702011,17193441:166371 +k106,20:28262332,17193441:166370 +k106,20:31504962,17193441:166370 +k106,21:32583029,17193441:0 +) +(106,21:6630773,18034929:25952256,505283,134348 +k106,20:8305655,18034929:231779 +k106,20:9609603,18034929:231779 +k106,20:11235333,18034929:231779 +k106,20:13159252,18034929:231779 +k106,20:17180978,18034929:231779 +k106,20:18028795,18034929:231779 +k106,20:19649937,18034929:231779 +k106,20:22436309,18034929:231779 +k106,20:23354250,18034929:231779 +k106,20:25099255,18034929:231779 +k106,20:25947072,18034929:231779 +k106,20:28683637,18034929:231779 +k106,20:32583029,18034929:0 +) +(106,21:6630773,18876417:25952256,505283,7863 +g106,20:7512887,18876417 +g106,20:8731201,18876417 +k106,21:32583030,18876417:20120864 +g106,21:32583030,18876417 +) +(106,23:6630773,19717905:25952256,505283,134348 +h106,22:6630773,19717905:983040,0,0 +k106,22:9620945,19717905:223897 +k106,22:12717285,19717905:223897 +k106,22:13154149,19717905:223872 +k106,22:14817873,19717905:223898 +k106,22:15693198,19717905:223897 +k106,22:17240267,19717905:223897 +k106,22:19701563,19717905:223897 +k106,22:23566640,19717905:223897 +k106,22:26736380,19717905:223897 +k106,22:28911939,19717905:223897 +k106,22:30578283,19717905:223897 +k106,22:32583029,19717905:0 +) +(106,23:6630773,20559393:25952256,513147,126483 +k106,22:7571450,20559393:169974 +k106,22:12519000,20559393:169975 +k106,22:14493836,20559393:169974 +k106,22:16496197,20559393:169974 +k106,22:17657731,20559393:169974 +k106,22:19000145,20559393:169975 +k106,22:21631651,20559393:169974 +k106,22:22749276,20559393:169974 +k106,22:24296162,20559393:169975 +k106,22:26075700,20559393:169974 +k106,22:26458637,20559393:169945 +k106,22:28585516,20559393:169974 +k106,22:29441653,20559393:169975 +k106,22:29967487,20559393:169974 +k106,22:32583029,20559393:0 +) +(106,23:6630773,21400881:25952256,513147,134348 +k106,22:7962836,21400881:140618 +k106,22:8316387,21400881:140559 +k106,22:10068534,21400881:140617 +k106,22:11544120,21400881:140618 +k106,22:13987017,21400881:140617 +k106,22:14593596,21400881:140618 +k106,22:15753298,21400881:140617 +k106,22:17652902,21400881:140618 +k106,22:18325016,21400881:140617 +k106,22:19531905,21400881:140618 +k106,22:20718478,21400881:140618 +k106,22:22427372,21400881:140617 +k106,22:25007895,21400881:140618 +k106,22:25614473,21400881:140617 +k106,22:25968024,21400881:140559 +k106,22:28064892,21400881:140618 +k106,22:29589629,21400881:140617 +k106,22:30749332,21400881:140618 +k106,22:32583029,21400881:0 +) +(106,23:6630773,22242369:25952256,513147,134348 +k106,22:7991651,22242369:172055 +k106,22:8822999,22242369:172056 +k106,22:10014139,22242369:172055 +k106,22:10601011,22242369:172029 +k106,22:13789033,22242369:172055 +k106,22:14419185,22242369:172055 +k106,22:16547491,22242369:172056 +k106,22:18435279,22242369:172055 +k106,22:19626420,22242369:172056 +k106,22:22350447,22242369:172055 +k106,22:23540931,22242369:172055 +k106,22:25496222,22242369:172056 +k106,22:27318474,22242369:172055 +k106,22:29974345,22242369:172056 +k106,22:31599989,22242369:172055 +k106,22:32583029,22242369:0 +) +(106,23:6630773,23083857:25952256,505283,126483 +k106,22:8169176,23083857:284699 +k106,22:9586337,23083857:284699 +k106,22:10937307,23083857:284699 +k106,22:14481112,23083857:284700 +k106,22:15531927,23083857:284699 +k106,22:16835711,23083857:284699 +k106,22:19411549,23083857:284699 +k106,22:22082414,23083857:284699 +k106,22:24309601,23083857:284700 +k106,22:27529002,23083857:284699 +k106,22:28984174,23083857:284699 +k106,22:30870573,23083857:284699 +k106,22:32583029,23083857:0 +) +(106,23:6630773,23925345:25952256,513147,126483 +k106,22:7957003,23925345:193768 +k106,22:11409876,23925345:193768 +k106,22:12286529,23925345:193768 +k106,22:14973287,23925345:193768 +k106,22:15522915,23925345:193768 +k106,22:17486810,23925345:193768 +k106,22:18339870,23925345:193768 +k106,22:20231677,23925345:193769 +k106,22:21595918,23925345:193768 +k106,22:23319952,23925345:193768 +k106,22:24165148,23925345:193768 +k106,22:25106682,23925345:193768 +k106,22:27510324,23925345:193768 +k106,22:28386977,23925345:193768 +k106,22:30761128,23925345:193768 +k106,22:32583029,23925345:0 +) +(106,23:6630773,24766833:25952256,505283,126483 +k106,22:7903117,24766833:253259 +k106,22:10447515,24766833:253259 +k106,22:11624176,24766833:253259 +k106,22:12090373,24766833:253205 +k106,22:13476094,24766833:253259 +k106,22:15934639,24766833:253258 +k106,22:17358371,24766833:253259 +k106,22:18677901,24766833:253259 +k106,22:20306761,24766833:253259 +k106,22:21211448,24766833:253259 +k106,22:22483792,24766833:253259 +k106,22:24458026,24766833:253259 +k106,22:26582338,24766833:253259 +k106,22:27907766,24766833:253259 +k106,22:29446841,24766833:253259 +k106,22:30351528,24766833:253259 +k106,22:32583029,24766833:0 +) +(106,23:6630773,25608321:25952256,513147,134348 +k106,22:10217364,25608321:174787 +k106,22:11583596,25608321:174787 +k106,22:16860360,25608321:174786 +k106,22:19640858,25608321:174787 +k106,22:20474937,25608321:174787 +k106,22:21668809,25608321:174787 +k106,22:24859563,25608321:174787 +k106,22:26919821,25608321:174787 +k106,22:27307575,25608321:174762 +k106,22:28957577,25608321:174787 +k106,22:32583029,25608321:0 +) +(106,23:6630773,26449809:25952256,505283,134348 +k106,22:8218757,26449809:194033 +k106,22:10260906,26449809:194034 +k106,22:13014120,26449809:194033 +k106,22:14411394,26449809:194033 +k106,22:16187467,26449809:194034 +k106,22:17513962,26449809:194033 +k106,22:18455761,26449809:194033 +k106,22:20472351,26449809:194034 +k106,22:23677763,26449809:194033 +k106,22:24227657,26449809:194034 +k106,22:25704885,26449809:194033 +k106,22:27902354,26449809:194033 +k106,22:29299629,26449809:194034 +k106,22:31075701,26449809:194033 +k106,22:32583029,26449809:0 +) +(106,23:6630773,27291297:25952256,513147,134348 +g106,22:7481430,27291297 +g106,22:8428425,27291297 +g106,22:8983514,27291297 +g106,22:10993503,27291297 +g106,22:13124733,27291297 +g106,22:14396131,27291297 +g106,22:16866183,27291297 +g106,22:17421272,27291297 +g106,22:20570932,27291297 +g106,22:23447962,27291297 +g106,22:24744919,27291297 +g106,22:25300008,27291297 +g106,22:28596468,27291297 +g106,22:29462853,27291297 +g106,22:30076925,27291297 +k106,23:32583029,27291297:63577 +g106,23:32583029,27291297 +) +(106,25:6630773,28132785:25952256,505283,134348 +h106,24:6630773,28132785:983040,0,0 +k106,24:9400840,28132785:207609 +k106,24:10224487,28132785:207609 +k106,24:12088847,28132785:207610 +k106,24:13580962,28132785:207609 +k106,24:14246668,28132785:207609 +k106,24:14985774,28132785:207609 +k106,24:18644510,28132785:207610 +k106,24:19503547,28132785:207609 +k106,24:22970261,28132785:207609 +k106,24:26541178,28132785:207609 +k106,24:28571344,28132785:207610 +k106,24:29367466,28132785:207609 +k106,24:30771762,28132785:207609 +k106,24:31394206,28132785:207601 +k106,25:32583029,28132785:0 +) +(106,25:6630773,28974273:25952256,505283,134348 +k106,24:8900145,28974273:229236 +k106,24:9745418,28974273:229235 +k106,24:10330514,28974273:229236 +k106,24:12419661,28974273:229235 +k106,24:14592695,28974273:229236 +k106,24:15353427,28974273:229235 +k106,24:16882897,28974273:229236 +k106,24:19641822,28974273:229235 +k106,24:20659456,28974273:229236 +k106,24:24498414,28974273:229235 +k106,24:25831932,28974273:229236 +k106,24:26808933,28974273:229235 +k106,24:30130813,28974273:229236 +k106,24:31753999,28974273:229235 +k106,25:32583029,28974273:0 +) +(106,25:6630773,29815761:25952256,513147,134348 +k106,24:10761093,29815761:173256 +k106,24:14195419,29815761:173255 +k106,24:17452799,29815761:173256 +k106,24:20387742,29815761:173256 +k106,24:21212426,29815761:173256 +k106,24:22478166,29815761:173255 +k106,24:23066239,29815761:173230 +k106,24:25831444,29815761:173256 +k106,24:26663992,29815761:173256 +k106,24:29439026,29815761:173255 +k106,24:30631367,29815761:173256 +k106,24:32583029,29815761:0 +) +(106,25:6630773,30657249:25952256,513147,134348 +k106,24:8211502,30657249:209716 +k106,24:11904457,30657249:209716 +k106,24:13133257,30657249:209715 +k106,24:14677286,30657249:209716 +k106,24:15546294,30657249:209716 +k106,24:18012415,30657249:209716 +k106,24:19680962,30657249:209716 +k106,24:21128653,30657249:209716 +k106,24:21954406,30657249:209715 +k106,24:22578955,30657249:209706 +k106,24:23980116,30657249:209716 +k106,24:24978229,30657249:209715 +k106,24:30187687,30657249:209716 +k106,24:31025238,30657249:209716 +k106,24:32583029,30657249:0 +) +(106,25:6630773,31498737:25952256,513147,134348 +k106,24:8599534,31498737:201255 +k106,24:9819874,31498737:201255 +k106,24:12506911,31498737:201256 +k106,24:13367458,31498737:201255 +k106,24:16479167,31498737:201255 +k106,24:19464391,31498737:201255 +k106,24:20281684,31498737:201255 +k106,24:21502024,31498737:201255 +k106,24:26642729,31498737:201256 +k106,24:27258825,31498737:201253 +k106,24:29890155,31498737:201255 +k106,24:32583029,31498737:0 +) +(106,25:6630773,32340225:25952256,505283,126483 +k106,24:9096466,32340225:171278 +k106,24:11090983,32340225:171305 +k106,24:12281373,32340225:171305 +k106,24:14618643,32340225:171305 +k106,24:17133516,32340225:171306 +k106,24:19185021,32340225:171277 +k106,24:19887823,32340225:171305 +k106,24:21078214,32340225:171306 +k106,24:22851219,32340225:171305 +k106,24:26405492,32340225:171305 +k106,24:27648966,32340225:171305 +k106,24:28886543,32340225:171306 +k106,24:30607119,32340225:171305 +k106,24:32583029,32340225:0 +) +(106,25:6630773,33181713:25952256,513147,134348 +k106,24:10119104,33181713:204977 +k106,24:11271732,33181713:204977 +k106,24:11891547,33181713:204972 +k106,24:15180648,33181713:204977 +k106,24:16806446,33181713:204977 +k106,24:18595428,33181713:204977 +k106,24:19156266,33181713:204978 +k106,24:22520734,33181713:204977 +k106,24:23385003,33181713:204977 +k106,24:24609065,33181713:204977 +k106,24:25228880,33181713:204972 +k106,24:28276153,33181713:204977 +k106,24:29672575,33181713:204977 +k106,24:32583029,33181713:0 +) +(106,25:6630773,34023201:25952256,513147,126483 +k106,24:7271583,34023201:284950 +k106,24:8937378,34023201:284951 +k106,24:11082895,34023201:284950 +k106,24:14069895,34023201:284951 +k106,24:15164215,34023201:284950 +k106,24:16468251,34023201:284951 +k106,24:18139287,34023201:284950 +k106,24:19083530,34023201:284951 +k106,24:22210121,34023201:284950 +k106,24:23146500,34023201:284951 +k106,24:24179216,34023201:284950 +k106,24:26699600,34023201:284951 +k106,24:28224491,34023201:284950 +k106,24:29890286,34023201:284951 +k106,24:31757275,34023201:284950 +k106,25:32583029,34023201:0 +) +(106,25:6630773,34864689:25952256,513147,134348 +k106,24:9071089,34864689:208160 +k106,24:9930677,34864689:208160 +k106,24:11655995,34864689:208160 +k106,24:13034627,34864689:208159 +k106,24:13858825,34864689:208160 +k106,24:15086070,34864689:208160 +k106,24:16386715,34864689:208160 +k106,24:17254167,34864689:208160 +k106,24:18481412,34864689:208160 +k106,24:19104406,34864689:208151 +k106,24:22154862,34864689:208160 +k106,24:24142323,34864689:208159 +k106,24:25541928,34864689:208160 +k106,24:26409380,34864689:208160 +k106,24:29117739,34864689:208160 +k106,24:29740733,34864689:208151 +k106,24:32583029,34864689:0 +) +(106,25:6630773,35706177:25952256,513147,134348 +k106,24:10274509,35706177:241107 +k106,24:11463267,35706177:241107 +k106,24:13093737,35706177:241107 +k106,24:17590752,35706177:241107 +k106,24:19023304,35706177:241107 +k106,24:22214185,35706177:241106 +k106,24:24924033,35706177:241107 +k106,24:26965414,35706177:241107 +k106,24:28225606,35706177:241107 +k106,24:31923737,35706177:241107 +k106,24:32583029,35706177:0 +) +(106,25:6630773,36547665:25952256,505283,126483 +k106,24:10140031,36547665:284231 +k106,24:12336603,36547665:284231 +k106,24:13430204,36547665:284231 +k106,24:16798559,36547665:284231 +k106,24:19637384,36547665:284232 +k106,24:21315566,36547665:284231 +k106,24:22188310,36547665:284231 +k106,24:23088579,36547665:284231 +k106,24:24391895,36547665:284231 +k106,24:27081953,36547665:284231 +k106,24:28948223,36547665:284231 +k106,24:29445361,36547665:284146 +k106,24:30862054,36547665:284231 +k106,24:32583029,36547665:0 +) +(106,25:6630773,37389153:25952256,513147,134348 +k106,24:8189320,37389153:182946 +k106,24:9391351,37389153:182946 +k106,24:10966282,37389153:182946 +k106,24:14241218,37389153:182947 +k106,24:15083456,37389153:182946 +k106,24:16469643,37389153:182946 +k106,24:19136404,37389153:182946 +k106,24:20516037,37389153:182946 +k106,24:22352456,37389153:182946 +k106,24:23066900,37389153:182947 +k106,24:24557289,37389153:182946 +k106,24:25687886,37389153:182946 +k106,24:28450984,37389153:182946 +k106,24:32583029,37389153:0 +) +(106,25:6630773,38230641:25952256,505283,134348 +k106,24:7458328,38230641:211517 +k106,24:8258359,38230641:211518 +k106,24:9850720,38230641:211517 +k106,24:11644276,38230641:211517 +k106,24:12387291,38230641:211518 +k106,24:16209842,38230641:211517 +k106,24:20059262,38230641:211517 +k106,24:22438056,38230641:211518 +k106,24:23262335,38230641:211517 +k106,24:26172625,38230641:211517 +k106,24:30736389,38230641:211518 +k106,24:31563944,38230641:211517 +k106,24:32583029,38230641:0 +) +(106,25:6630773,39072129:25952256,513147,134348 +k106,24:8736395,39072129:215564 +k106,24:9971045,39072129:215565 +k106,24:11279094,39072129:215564 +k106,24:12161814,39072129:215564 +k106,24:12792205,39072129:215548 +k106,24:13659198,39072129:215565 +k106,24:16876966,39072129:215564 +k106,24:18111615,39072129:215564 +k106,24:21242877,39072129:215565 +k106,24:22117733,39072129:215564 +k106,24:23722660,39072129:215564 +k106,24:28367803,39072129:215565 +k106,24:31563944,39072129:215564 +k106,24:32583029,39072129:0 +) +(106,25:6630773,39913617:25952256,513147,134348 +k106,24:9684572,39913617:291456 +k106,24:11661615,39913617:291457 +k106,24:14879909,39913617:291456 +k106,24:16738986,39913617:291456 +k106,24:18419805,39913617:291456 +k106,24:20419786,39913617:291457 +k106,24:21902687,39913617:291456 +k106,24:25838600,39913617:291456 +k106,24:26781485,39913617:291457 +k106,24:28092026,39913617:291456 +k106,24:31923737,39913617:291456 +k106,24:32583029,39913617:0 +) +(106,25:6630773,40755105:25952256,505283,126483 +g106,24:12841620,40755105 +k106,25:32583029,40755105:15712256 +g106,25:32583029,40755105 +) +(106,27:6630773,41596593:25952256,513147,134348 +h106,26:6630773,41596593:983040,0,0 +k106,26:8662842,41596593:231140 +k106,26:10287934,41596593:231141 +k106,26:11285190,41596593:231140 +k106,26:13354616,41596593:231141 +k106,26:16932024,41596593:231140 +k106,26:18817948,41596593:231140 +k106,26:20040649,41596593:231141 +k106,26:22023566,41596593:231140 +k106,26:25017049,41596593:231140 +k106,26:26816467,41596593:231141 +k106,26:27706899,41596593:231140 +k106,26:29743557,41596593:231141 +k106,26:31966991,41596593:231140 +k106,27:32583029,41596593:0 +) +(106,27:6630773,42438081:25952256,513147,126483 +k106,26:7464437,42438081:245151 +k106,26:8337424,42438081:245152 +k106,26:10745263,42438081:245151 +k106,26:11756530,42438081:245151 +k106,26:13699064,42438081:245152 +k106,26:15598999,42438081:245151 +k106,26:16375648,42438081:245152 +k106,26:17430169,42438081:245151 +k106,26:22523674,42438081:245151 +k106,26:25381091,42438081:245152 +k106,26:26277670,42438081:245151 +k106,26:26878681,42438081:245151 +k106,26:29973994,42438081:245152 +k106,26:32051532,42438081:245151 +k106,26:32583029,42438081:0 +) +(106,27:6630773,43279569:25952256,505283,126483 +k106,26:8998152,43279569:238114 +k106,26:9592126,43279569:238114 +k106,26:13780750,43279569:238114 +k106,26:16890652,43279569:238114 +k106,26:19415973,43279569:238114 +k106,26:22289290,43279569:238114 +k106,26:23952812,43279569:238114 +k106,26:25961053,43279569:238114 +k106,26:26960695,43279569:238114 +k106,26:28217894,43279569:238114 +k106,26:29836852,43279569:238114 +k106,26:31266411,43279569:238114 +k106,27:32583029,43279569:0 +) +(106,27:6630773,44121057:25952256,513147,134348 +k106,26:9111411,44121057:148867 +k106,26:10685687,44121057:148868 +k106,26:13547089,44121057:148867 +k106,26:14311995,44121057:148868 +k106,26:15479947,44121057:148867 +k106,26:18878745,44121057:148868 +k106,26:20723028,44121057:148867 +k106,26:21531188,44121057:148868 +k106,26:22699140,44121057:148867 +k106,26:25758462,44121057:148868 +k106,26:27191835,44121057:148867 +k106,26:28332262,44121057:148867 +k106,26:30082830,44121057:148868 +k106,26:32583029,44121057:0 +) +(106,27:6630773,44962545:25952256,513147,134348 +k106,26:9982987,44962545:197966 +k106,26:11223630,44962545:197965 +k106,26:12487867,44962545:197966 +k106,26:14186606,44962545:197965 +k106,26:16082610,44962545:197966 +k106,26:16493566,44962545:197964 +k106,26:18947936,44962545:197965 +k106,26:20881295,44962545:197966 +k106,26:21667773,44962545:197965 +k106,26:23057184,44962545:197966 +k106,26:25006926,44962545:197965 +k106,26:25864184,44962545:197966 +k106,26:27758876,44962545:197965 +k106,26:30867296,44962545:197966 +k106,26:32583029,44962545:0 +) +] +(106,27:32583029,45706769:0,0,0 +g106,27:32583029,45706769 +) +) +] +(106,27:6630773,47279633:25952256,0,0 +h106,27:6630773,47279633:25952256,0,0 +) +] +h106,27:4262630,4025873:0,0,0 +] +!27009 }9 !10 {10 -[110,37:4262630,47279633:28320399,43253760,0 -(110,37:4262630,4025873:0,0,0 -[110,37:-473657,4025873:25952256,0,0 -(110,37:-473657,-710414:25952256,0,0 -h110,37:-473657,-710414:0,0,0 -(110,37:-473657,-710414:0,0,0 -(110,37:-473657,-710414:0,0,0 -g110,37:-473657,-710414 -(110,37:-473657,-710414:65781,0,65781 -g110,37:-407876,-710414 -[110,37:-407876,-644633:0,0,0 +[106,37:4262630,47279633:28320399,43253760,0 +(106,37:4262630,4025873:0,0,0 +[106,37:-473657,4025873:25952256,0,0 +(106,37:-473657,-710414:25952256,0,0 +h106,37:-473657,-710414:0,0,0 +(106,37:-473657,-710414:0,0,0 +(106,37:-473657,-710414:0,0,0 +g106,37:-473657,-710414 +(106,37:-473657,-710414:65781,0,65781 +g106,37:-407876,-710414 +[106,37:-407876,-644633:0,0,0 ] ) -k110,37:-473657,-710414:-65781 +k106,37:-473657,-710414:-65781 ) ) -k110,37:25478599,-710414:25952256 -g110,37:25478599,-710414 +k106,37:25478599,-710414:25952256 +g106,37:25478599,-710414 ) ] ) -[110,37:6630773,47279633:25952256,43253760,0 -[110,37:6630773,4812305:25952256,786432,0 -(110,37:6630773,4812305:25952256,513147,126483 -(110,37:6630773,4812305:25952256,513147,126483 -g110,37:3078558,4812305 -[110,37:3078558,4812305:0,0,0 -(110,37:3078558,2439708:0,1703936,0 -k110,37:1358238,2439708:-1720320 -(110,1:1358238,2439708:1720320,1703936,0 -(110,1:1358238,2439708:1179648,16384,0 -r110,37:2537886,2439708:1179648,16384,0 +[106,37:6630773,47279633:25952256,43253760,0 +[106,37:6630773,4812305:25952256,786432,0 +(106,37:6630773,4812305:25952256,513147,126483 +(106,37:6630773,4812305:25952256,513147,126483 +g106,37:3078558,4812305 +[106,37:3078558,4812305:0,0,0 +(106,37:3078558,2439708:0,1703936,0 +k106,37:1358238,2439708:-1720320 +(106,1:1358238,2439708:1720320,1703936,0 +(106,1:1358238,2439708:1179648,16384,0 +r106,37:2537886,2439708:1179648,16384,0 ) -g110,1:3062174,2439708 -(110,1:3062174,2439708:16384,1703936,0 -[110,1:3062174,2439708:25952256,1703936,0 -(110,1:3062174,1915420:25952256,1179648,0 -(110,1:3062174,1915420:16384,1179648,0 -r110,37:3078558,1915420:16384,1179648,0 +g106,1:3062174,2439708 +(106,1:3062174,2439708:16384,1703936,0 +[106,1:3062174,2439708:25952256,1703936,0 +(106,1:3062174,1915420:25952256,1179648,0 +(106,1:3062174,1915420:16384,1179648,0 +r106,37:3078558,1915420:16384,1179648,0 ) -k110,1:29014430,1915420:25935872 -g110,1:29014430,1915420 +k106,1:29014430,1915420:25935872 +g106,1:29014430,1915420 ) ] ) ) ) ] -[110,37:3078558,4812305:0,0,0 -(110,37:3078558,2439708:0,1703936,0 -g110,37:29030814,2439708 -g110,37:36135244,2439708 -(110,1:36135244,2439708:1720320,1703936,0 -(110,1:36135244,2439708:16384,1703936,0 -[110,1:36135244,2439708:25952256,1703936,0 -(110,1:36135244,1915420:25952256,1179648,0 -(110,1:36135244,1915420:16384,1179648,0 -r110,37:36151628,1915420:16384,1179648,0 +[106,37:3078558,4812305:0,0,0 +(106,37:3078558,2439708:0,1703936,0 +g106,37:29030814,2439708 +g106,37:36135244,2439708 +(106,1:36135244,2439708:1720320,1703936,0 +(106,1:36135244,2439708:16384,1703936,0 +[106,1:36135244,2439708:25952256,1703936,0 +(106,1:36135244,1915420:25952256,1179648,0 +(106,1:36135244,1915420:16384,1179648,0 +r106,37:36151628,1915420:16384,1179648,0 ) -k110,1:62087500,1915420:25935872 -g110,1:62087500,1915420 +k106,1:62087500,1915420:25935872 +g106,1:62087500,1915420 ) ] ) -g110,1:36675916,2439708 -(110,1:36675916,2439708:1179648,16384,0 -r110,37:37855564,2439708:1179648,16384,0 +g106,1:36675916,2439708 +(106,1:36675916,2439708:1179648,16384,0 +r106,37:37855564,2439708:1179648,16384,0 ) ) -k110,37:3078556,2439708:-34777008 +k106,37:3078556,2439708:-34777008 ) ] -[110,37:3078558,4812305:0,0,0 -(110,37:3078558,49800853:0,16384,2228224 -k110,37:1358238,49800853:-1720320 -(110,1:1358238,49800853:1720320,16384,2228224 -(110,1:1358238,49800853:1179648,16384,0 -r110,37:2537886,49800853:1179648,16384,0 +[106,37:3078558,4812305:0,0,0 +(106,37:3078558,49800853:0,16384,2228224 +k106,37:1358238,49800853:-1720320 +(106,1:1358238,49800853:1720320,16384,2228224 +(106,1:1358238,49800853:1179648,16384,0 +r106,37:2537886,49800853:1179648,16384,0 ) -g110,1:3062174,49800853 -(110,1:3062174,52029077:16384,1703936,0 -[110,1:3062174,52029077:25952256,1703936,0 -(110,1:3062174,51504789:25952256,1179648,0 -(110,1:3062174,51504789:16384,1179648,0 -r110,37:3078558,51504789:16384,1179648,0 +g106,1:3062174,49800853 +(106,1:3062174,52029077:16384,1703936,0 +[106,1:3062174,52029077:25952256,1703936,0 +(106,1:3062174,51504789:25952256,1179648,0 +(106,1:3062174,51504789:16384,1179648,0 +r106,37:3078558,51504789:16384,1179648,0 ) -k110,1:29014430,51504789:25935872 -g110,1:29014430,51504789 -) -] -) -) -) -] -[110,37:3078558,4812305:0,0,0 -(110,37:3078558,49800853:0,16384,2228224 -g110,37:29030814,49800853 -g110,37:36135244,49800853 -(110,1:36135244,49800853:1720320,16384,2228224 -(110,1:36135244,52029077:16384,1703936,0 -[110,1:36135244,52029077:25952256,1703936,0 -(110,1:36135244,51504789:25952256,1179648,0 -(110,1:36135244,51504789:16384,1179648,0 -r110,37:36151628,51504789:16384,1179648,0 -) -k110,1:62087500,51504789:25935872 -g110,1:62087500,51504789 -) -] -) -g110,1:36675916,49800853 -(110,1:36675916,49800853:1179648,16384,0 -r110,37:37855564,49800853:1179648,16384,0 -) -) -k110,37:3078556,49800853:-34777008 -) -] -g110,37:6630773,4812305 -g110,37:6630773,4812305 -g110,37:9163084,4812305 -k110,37:31860822,4812305:22697738 -) -) -] -[110,37:6630773,45706769:25952256,40108032,0 -(110,37:6630773,45706769:25952256,40108032,0 -(110,37:6630773,45706769:0,0,0 -g110,37:6630773,45706769 -) -[110,37:6630773,45706769:25952256,40108032,0 -(110,27:6630773,6254097:25952256,513147,134348 -k110,26:9982987,6254097:197966 -k110,26:11223630,6254097:197965 -k110,26:12487867,6254097:197966 -k110,26:14186606,6254097:197965 -k110,26:16082610,6254097:197966 -k110,26:16493566,6254097:197964 -k110,26:18947936,6254097:197965 -k110,26:20881295,6254097:197966 -k110,26:21667773,6254097:197965 -k110,26:23057184,6254097:197966 -k110,26:25006926,6254097:197965 -k110,26:25864184,6254097:197966 -k110,26:27758876,6254097:197965 -k110,26:30867296,6254097:197966 -k110,26:32583029,6254097:0 -) -(110,27:6630773,7095585:25952256,513147,134348 -k110,26:8062537,7095585:148569 -k110,26:11873258,7095585:148569 -k110,26:14979466,7095585:148568 -k110,26:16399433,7095585:148569 -k110,26:18316819,7095585:148569 -k110,26:20080195,7095585:148569 -k110,26:21980541,7095585:148569 -k110,26:24891452,7095585:148568 -k110,26:25454814,7095585:148519 -k110,26:27515724,7095585:148569 -k110,26:29058243,7095585:148568 -k110,26:29562672,7095585:148569 -k110,26:31406002,7095585:148569 -k110,26:32583029,7095585:0 -) -(110,27:6630773,7937073:25952256,513147,134348 -k110,26:8573815,7937073:207649 -k110,26:12870255,7937073:207649 -k110,26:15840247,7937073:207649 -k110,26:17616173,7937073:207649 -k110,26:18483113,7937073:207648 -k110,26:21691000,7937073:207649 -k110,26:22917734,7937073:207649 -k110,26:24778856,7937073:207649 -k110,26:27333349,7937073:207649 -k110,26:28168833,7937073:207649 -k110,26:29579723,7937073:207649 -k110,26:31543082,7937073:207649 -k110,26:31963714,7937073:207640 -k110,27:32583029,7937073:0 -) -(110,27:6630773,8778561:25952256,513147,134348 -k110,26:7891414,8778561:182574 -k110,26:10202596,8778561:182573 -k110,26:11036598,8778561:182574 -k110,26:14129626,8778561:182574 -k110,26:15596705,8778561:182573 -k110,26:16770839,8778561:182574 -k110,26:19863866,8778561:182573 -k110,26:22546639,8778561:182574 -k110,26:24939087,8778561:182574 -k110,26:26406166,8778561:182573 -k110,26:26801715,8778561:182557 -k110,26:29715174,8778561:182574 -k110,26:32583029,8778561:0 -) -(110,27:6630773,9620049:25952256,513147,134348 -k110,26:9936465,9620049:275307 -k110,26:10424689,9620049:275232 -k110,26:12175211,9620049:275307 -k110,26:13066557,9620049:275308 -k110,26:16462688,9620049:275307 -k110,26:18252533,9620049:275308 -k110,26:19179268,9620049:275307 -k110,26:20938966,9620049:275308 -k110,26:23342882,9620049:275307 -k110,26:24269618,9620049:275308 -k110,26:27455379,9620049:275307 -k110,26:29124638,9620049:275308 -k110,26:31601955,9620049:275307 -k110,27:32583029,9620049:0 -) -(110,27:6630773,10461537:25952256,513147,134348 -k110,26:8132321,10461537:180998 -k110,26:12562674,10461537:180999 -k110,26:15851389,10461537:180998 -k110,26:16648426,10461537:180999 -k110,26:19293578,10461537:180998 -k110,26:20126005,10461537:180999 -k110,26:21815642,10461537:180998 -k110,26:25310797,10461537:180999 -k110,26:27125608,10461537:180998 -k110,26:27838104,10461537:180999 -k110,26:30320726,10461537:180998 -k110,26:32583029,10461537:0 -) -(110,27:6630773,11303025:25952256,513147,134348 -k110,26:7995031,11303025:172813 -k110,26:8783883,11303025:172814 -k110,26:12077520,11303025:172813 -k110,26:13798950,11303025:172814 -k110,26:14503260,11303025:172813 -k110,26:15031934,11303025:172814 -k110,26:17708222,11303025:172813 -k110,26:19261880,11303025:172814 -k110,26:22418547,11303025:172813 -k110,26:25293410,11303025:172814 -k110,26:28091595,11303025:172813 -k110,26:29073779,11303025:172814 -k110,26:30698214,11303025:172813 -k110,26:32583029,11303025:0 -) -(110,27:6630773,12144513:25952256,513147,126483 -k110,26:10575909,12144513:214827 -k110,26:11982181,12144513:214827 -k110,26:14951486,12144513:214827 -k110,26:18753098,12144513:214827 -k110,26:23488599,12144513:214827 -k110,26:24722510,12144513:214826 -k110,26:27686572,12144513:214827 -k110,26:28560691,12144513:214827 -k110,26:29794603,12144513:214827 -k110,26:31591469,12144513:214827 -k110,26:32583029,12144513:0 -) -(110,27:6630773,12986001:25952256,513147,134348 -k110,26:9536847,12986001:280702 -k110,26:11873413,12986001:280702 -k110,26:12915643,12986001:280702 -k110,26:14177419,12986001:280702 -k110,26:15788502,12986001:280702 -k110,26:19973184,12986001:280702 -k110,26:20466796,12986001:280620 -k110,26:22222713,12986001:280702 -k110,26:24017952,12986001:280702 -k110,26:24950082,12986001:280702 -k110,26:26845591,12986001:280702 -k110,26:30118012,12986001:280702 -k110,26:31014752,12986001:280702 -k110,26:32583029,12986001:0 -) -(110,27:6630773,13827489:25952256,513147,134348 -k110,26:8171268,13827489:255989 -k110,26:10839637,13827489:255989 -k110,26:12303455,13827489:255989 -k110,26:15019666,13827489:255989 -k110,26:19869074,13827489:255990 -k110,26:23692843,13827489:255989 -k110,26:24161767,13827489:255932 -k110,26:27688658,13827489:255989 -k110,26:30322949,13827489:255989 -k110,26:31230366,13827489:255989 -k110,26:32583029,13827489:0 -) -(110,27:6630773,14668977:25952256,513147,134348 -k110,26:8110475,14668977:276461 -k110,26:9968975,14668977:276461 -k110,26:10931598,14668977:276461 -k110,26:11563919,14668977:276461 -k110,26:14318952,14668977:276461 -k110,26:16283620,14668977:276461 -k110,26:17507733,14668977:276462 -k110,26:20795573,14668977:276461 -k110,26:22091119,14668977:276461 -k110,26:23721554,14668977:276461 -k110,26:25749792,14668977:276461 -k110,26:29110377,14668977:276461 -k110,26:31391584,14668977:276461 -k110,26:32583029,14668977:0 -) -(110,27:6630773,15510465:25952256,505283,126483 -g110,26:10492154,15510465 -g110,26:12576854,15510465 -g110,26:12989075,15510465 -g110,26:14663519,15510465 -g110,26:15929019,15510465 -k110,27:32583029,15510465:13390317 -g110,27:32583029,15510465 -) -(110,29:6630773,16351953:25952256,513147,134348 -h110,28:6630773,16351953:983040,0,0 -k110,28:8096291,16351953:269486 -k110,28:9498310,16351953:269557 -k110,28:13095784,16351953:269556 -k110,28:17134316,16351953:269557 -k110,28:18351523,16351953:269556 -k110,28:20896490,16351953:269557 -k110,28:24331435,16351953:269556 -k110,28:25792437,16351953:269557 -k110,28:29716936,16351953:269556 -k110,28:30645785,16351953:269557 -k110,28:32583029,16351953:0 -) -(110,29:6630773,17193441:25952256,513147,126483 -k110,28:8002660,17193441:180442 -k110,28:10543054,17193441:180443 -k110,28:13506155,17193441:180442 -k110,28:15382013,17193441:180442 -k110,28:16221748,17193441:180443 -k110,28:17421275,17193441:180442 -k110,28:20593436,17193441:180442 -k110,28:22171762,17193441:180443 -k110,28:23827419,17193441:180442 -k110,28:25517811,17193441:180442 -k110,28:28542517,17193441:180443 -k110,28:30290580,17193441:180442 -k110,28:32583029,17193441:0 -) -(110,29:6630773,18034929:25952256,513147,134348 -k110,28:9302949,18034929:232926 -k110,28:10923272,18034929:232926 -k110,28:12907974,18034929:232925 -k110,28:14823865,18034929:232926 -k110,28:16421906,18034929:232926 -k110,28:19184522,18034929:232926 -k110,28:20076739,18034929:232925 -k110,28:21686576,18034929:232926 -k110,28:22985773,18034929:232926 -k110,28:23984815,18034929:232926 -k110,28:26656990,18034929:232925 -k110,28:27881476,18034929:232926 -k110,28:32583029,18034929:0 -) -(110,29:6630773,18876417:25952256,513147,134348 -k110,28:7342353,18876417:233823 -k110,28:8746649,18876417:233823 -k110,28:12071805,18876417:233823 -k110,28:13437435,18876417:233823 -k110,28:16332675,18876417:233823 -k110,28:17252660,18876417:233823 -k110,28:19275617,18876417:233824 -k110,28:20192325,18876417:233823 -k110,28:23274998,18876417:233823 -k110,28:25416574,18876417:233823 -k110,28:27657109,18876417:233823 -k110,28:28700302,18876417:233823 -k110,28:29901436,18876417:233823 -k110,28:31858201,18876417:233823 -k110,28:32583029,18876417:0 -) -(110,29:6630773,19717905:25952256,505283,134348 -k110,28:8134878,19717905:219599 -k110,28:8567449,19717905:219579 -k110,28:9891330,19717905:219599 -k110,28:11308272,19717905:219599 -k110,28:11883731,19717905:219599 -k110,28:14263397,19717905:219599 -k110,28:20402863,19717905:219599 -k110,28:20835433,19717905:219578 -k110,28:23406464,19717905:219599 -k110,28:25461071,19717905:219599 -k110,28:26699755,19717905:219599 -k110,28:29691527,19717905:219599 -k110,28:31195632,19717905:219599 -k110,28:32583029,19717905:0 -) -(110,29:6630773,20559393:25952256,505283,126483 -k110,28:7865270,20559393:215412 -k110,28:9763646,20559393:215411 -k110,28:11454273,20559393:215412 -k110,28:13516489,20559393:215411 -k110,28:14750986,20559393:215412 -k110,28:18061008,20559393:215412 -k110,28:19467864,20559393:215411 -k110,28:21596927,20559393:215412 -k110,28:22831424,20559393:215412 -k110,28:26053627,20559393:215411 -k110,28:27553545,20559393:215412 -k110,28:29244171,20559393:215411 -k110,28:31615718,20559393:215412 -k110,28:32583029,20559393:0 -) -(110,29:6630773,21400881:25952256,513147,126483 -k110,28:8424120,21400881:178540 -k110,28:9805901,21400881:178540 -k110,28:11210621,21400881:178541 -k110,28:12580606,21400881:178540 -k110,28:15001788,21400881:178540 -k110,28:16199413,21400881:178540 -k110,28:19212385,21400881:178540 -k110,28:20582370,21400881:178540 -k110,28:22464847,21400881:178541 -k110,28:23302679,21400881:178540 -k110,28:26235697,21400881:178540 -k110,28:29251946,21400881:178540 -k110,28:29643458,21400881:178520 -k110,28:31297213,21400881:178540 -k110,28:32583029,21400881:0 -) -(110,29:6630773,22242369:25952256,513147,126483 -k110,28:9421187,22242369:147347 -k110,28:10956586,22242369:147346 -k110,28:11913303,22242369:147347 -k110,28:14038526,22242369:147346 -k110,28:16498639,22242369:147347 -k110,28:17837430,22242369:147346 -k110,28:18600815,22242369:147347 -k110,28:20944273,22242369:147347 -k110,28:22659240,22242369:147346 -k110,28:26031614,22242369:147347 -k110,28:28488449,22242369:147346 -k110,28:31015408,22242369:147347 -k110,28:32583029,22242369:0 -) -(110,29:6630773,23083857:25952256,505283,134348 -k110,28:9562526,23083857:212664 -k110,28:11717677,23083857:212664 -k110,28:12923868,23083857:212665 -k110,28:16345830,23083857:212664 -k110,28:17932784,23083857:212664 -k110,28:20051890,23083857:212664 -k110,28:22350565,23083857:212664 -k110,28:25055564,23083857:212665 -k110,28:28145914,23083857:212664 -k110,28:31391584,23083857:212664 -k110,28:32583029,23083857:0 -) -(110,29:6630773,23925345:25952256,505283,134348 -k110,28:7553869,23925345:161568 -k110,28:10949639,23925345:161568 -k110,28:11762635,23925345:161568 -k110,28:13558671,23925345:161568 -k110,28:15412379,23925345:161568 -k110,28:16857142,23925345:161568 -k110,28:20025502,23925345:161568 -k110,28:20996439,23925345:161567 -k110,28:22139081,23925345:161568 -k110,28:23804700,23925345:161568 -k110,28:24594103,23925345:161568 -k110,28:26507448,23925345:161568 -k110,28:28237293,23925345:161568 -k110,28:29602102,23925345:161568 -k110,28:30989849,23925345:161568 -k110,28:32583029,23925345:0 -) -(110,29:6630773,24766833:25952256,513147,126483 -k110,28:8570642,24766833:156634 -k110,28:10377472,24766833:156633 -k110,28:11185534,24766833:156634 -k110,28:13477985,24766833:156633 -k110,28:14965000,24766833:156634 -k110,28:16113193,24766833:156633 -k110,28:17336098,24766833:156634 -k110,28:19948366,24766833:156634 -k110,28:21547446,24766833:156633 -k110,28:22355508,24766833:156634 -k110,28:24814421,24766833:156633 -k110,28:27905757,24766833:156634 -k110,28:28748553,24766833:156634 -k110,28:29118136,24766833:156591 -k110,28:30250600,24766833:156633 -k110,28:31426319,24766833:156634 -k110,28:32583029,24766833:0 -) -(110,29:6630773,25608321:25952256,505283,102891 -k110,28:8168248,25608321:207094 -k110,28:9476346,25608321:207093 -k110,28:11969991,25608321:207094 -k110,28:13380325,25608321:207093 -k110,28:15921156,25608321:207094 -k110,28:17319694,25608321:207093 -k110,28:20018467,25608321:207094 -k110,28:21774176,25608321:207093 -k110,28:22632698,25608321:207094 -k110,28:25177460,25608321:207093 -k110,28:26575999,25608321:207094 -k110,28:29390770,25608321:207093 -k110,28:30284026,25608321:207094 -k110,28:32583029,25608321:0 -) -(110,29:6630773,26449809:25952256,513147,126483 -g110,28:7042994,26449809 -g110,28:8594886,26449809 -g110,28:9883979,26449809 -g110,28:14436765,26449809 -g110,28:15583645,26449809 -g110,28:16914681,26449809 -g110,28:19051154,26449809 -g110,28:20441828,26449809 -k110,29:32583029,26449809:8056997 -g110,29:32583029,26449809 -) -(110,31:6630773,27291297:25952256,505283,134348 -h110,30:6630773,27291297:983040,0,0 -k110,30:9204888,27291297:208921 -k110,30:10889023,27291297:208920 -k110,30:11310927,27291297:208912 -k110,30:13755280,27291297:208920 -k110,30:14983286,27291297:208921 -k110,30:16459673,27291297:208921 -k110,30:18803102,27291297:208921 -k110,30:19461590,27291297:208911 -k110,30:20325870,27291297:208920 -k110,30:21221608,27291297:208921 -k110,30:22644911,27291297:208921 -k110,30:25426120,27291297:208921 -k110,30:27157441,27291297:208920 -k110,30:29593931,27291297:208921 -k110,30:32583029,27291297:0 -) -(110,31:6630773,28132785:25952256,505283,126483 -k110,30:7725458,28132785:170627 -k110,30:9052796,28132785:170628 -k110,30:11003381,28132785:170627 -k110,30:13703699,28132785:170628 -k110,30:15077567,28132785:170627 -k110,30:16830234,28132785:170628 -k110,30:17532358,28132785:170627 -k110,30:19557655,28132785:170628 -k110,30:20537652,28132785:170627 -k110,30:24352737,28132785:170628 -k110,30:25714809,28132785:170627 -k110,30:28596661,28132785:170628 -k110,30:29691346,28132785:170627 -k110,30:30881059,28132785:170628 -k110,30:32583029,28132785:0 -) -(110,31:6630773,28974273:25952256,513147,134348 -k110,30:8626204,28974273:215473 -k110,30:11371367,28974273:215473 -k110,30:12757313,28974273:215473 -k110,30:14105247,28974273:215472 -k110,30:15068486,28974273:215473 -k110,30:17909987,28974273:215473 -k110,30:18776888,28974273:215473 -k110,30:21336584,28974273:215473 -k110,30:23374613,28974273:215473 -k110,30:24781531,28974273:215473 -k110,30:26063274,28974273:215472 -k110,30:28442090,28974273:215473 -k110,30:29676648,28974273:215473 -k110,30:31923737,28974273:215473 -k110,30:32583029,28974273:0 -) -(110,31:6630773,29815761:25952256,513147,134348 -k110,30:7897958,29815761:248100 -k110,30:11162026,29815761:248101 -k110,30:13193361,29815761:248100 -k110,30:14309814,29815761:248101 -k110,30:15650399,29815761:248100 -k110,30:16996228,29815761:248101 -k110,30:19566269,29815761:248100 -k110,30:22017034,29815761:248100 -k110,30:22881173,29815761:248101 -k110,30:25968293,29815761:248100 -k110,30:27408494,29815761:248101 -k110,30:28524946,29815761:248100 -k110,30:29588315,29815761:248101 -k110,30:30902686,29815761:248100 -k110,30:32583029,29815761:0 -) -(110,31:6630773,30657249:25952256,513147,134348 -k110,30:8699565,30657249:246236 -k110,30:11848392,30657249:246237 -k110,30:13680599,30657249:246236 -k110,30:14609721,30657249:246237 -k110,30:17648446,30657249:246236 -k110,30:20999779,30657249:246237 -k110,30:23316953,30657249:246236 -k110,30:24510841,30657249:246237 -k110,30:25776162,30657249:246236 -k110,30:28331888,30657249:246237 -k110,30:29261009,30657249:246236 -k110,30:32583029,30657249:0 -) -(110,31:6630773,31498737:25952256,513147,134348 -k110,30:10170919,31498737:209606 -k110,30:11305239,31498737:209607 -k110,30:12691872,31498737:209606 -k110,30:13432976,31498737:209607 -k110,30:14590233,31498737:209606 -k110,30:16003080,31498737:209606 -k110,30:17794726,31498737:209607 -k110,30:18655760,31498737:209606 -k110,30:20253420,31498737:209607 -k110,30:21633499,31498737:209606 -k110,30:23421213,31498737:209607 -k110,30:24282247,31498737:209606 -k110,30:25584338,31498737:209606 -k110,30:26208777,31498737:209596 -k110,30:27034422,31498737:209607 -k110,30:28447269,31498737:209606 -k110,30:30310349,31498737:209607 -k110,30:31931601,31498737:209606 -k110,30:32583029,31498737:0 -) -(110,31:6630773,32340225:25952256,513147,134348 -k110,30:9256296,32340225:182341 -k110,30:11307069,32340225:182342 -k110,30:12105448,32340225:182341 -k110,30:12876302,32340225:182341 -k110,30:14255331,32340225:182342 -k110,30:16019711,32340225:182341 -k110,30:16733549,32340225:182341 -k110,30:20268057,32340225:182341 -k110,30:22739572,32340225:182342 -k110,30:23940998,32340225:182341 -k110,30:26992505,32340225:182341 -k110,30:27834139,32340225:182342 -k110,30:31189078,32340225:182341 -k110,30:32583029,32340225:0 -) -(110,31:6630773,33181713:25952256,505283,134348 -k110,30:9298874,33181713:250478 -k110,30:11147121,33181713:250479 -k110,30:12682105,33181713:250478 -k110,30:15789953,33181713:250478 -k110,30:17059516,33181713:250478 -k110,30:20023841,33181713:250479 -k110,30:22909522,33181713:250478 -k110,30:25451794,33181713:250478 -k110,30:28874871,33181713:250479 -k110,30:30271574,33181713:250478 -k110,30:32583029,33181713:0 -) -(110,31:6630773,34023201:25952256,505283,134348 -g110,30:8021447,34023201 -g110,30:9239761,34023201 -g110,30:9853833,34023201 -k110,31:32583028,34023201:19713228 -g110,31:32583028,34023201 -) -(110,34:6630773,34864689:25952256,505283,134348 -h110,33:6630773,34864689:983040,0,0 -k110,33:8013431,34864689:186626 -k110,33:11492599,34864689:186639 -k110,33:12824807,34864689:186639 -k110,33:13611100,34864689:186639 -k110,33:16799287,34864689:186638 -k110,33:17400102,34864689:186627 -k110,33:18672016,34864689:186638 -k110,33:19257114,34864689:186639 -k110,33:20953703,34864689:186639 -k110,33:24769726,34864689:186639 -k110,33:25847655,34864689:186639 -k110,33:26709314,34864689:186638 -k110,33:27956981,34864689:186639 -k110,33:30422962,34864689:186639 -k110,33:32583029,34864689:0 -) -(110,34:6630773,35706177:25952256,513147,134348 -k110,33:8559017,35706177:234138 -k110,33:10037028,35706177:234138 -k110,33:12917510,35706177:234138 -k110,33:13751302,35706177:234138 -k110,33:15950865,35706177:234138 -k110,33:16950464,35706177:234138 -k110,33:18197789,35706177:234138 -k110,33:21165435,35706177:234139 -k110,33:22558250,35706177:234138 -k110,33:24318066,35706177:234138 -k110,33:25762654,35706177:234138 -k110,33:27169231,35706177:234138 -k110,33:29701717,35706177:234138 -k110,33:31299004,35706177:234138 -k110,33:32121000,35706177:234138 -k110,33:32583029,35706177:0 -) -(110,34:6630773,36547665:25952256,513147,134348 -k110,33:7827373,36547665:210939 -k110,33:9797297,36547665:210938 -k110,33:11263250,36547665:210939 -k110,33:13851834,36547665:210938 -k110,33:15273223,36547665:210939 -k110,33:19085364,36547665:210938 -k110,33:20633893,36547665:210939 -k110,33:21243290,36547665:210938 -k110,33:23431450,36547665:210939 -k110,33:24104417,36547665:210938 -k110,33:25460925,36547665:210939 -k110,33:26638519,36547665:210938 -k110,33:27247917,36547665:210939 -k110,33:28739429,36547665:210938 -k110,33:31245439,36547665:210939 -k110,33:32583029,36547665:0 -) -(110,34:6630773,37389153:25952256,505283,134348 -g110,33:7228461,37389153 -g110,33:9231241,37389153 -g110,33:10030124,37389153 -g110,33:11939843,37389153 -g110,33:13124733,37389153 -k110,34:13124733,37389153:39322 -k110,34:32583028,37389153:17097688 -g110,34:32583028,37389153 -) -(110,35:6630773,40196721:25952256,32768,229376 -(110,35:6630773,40196721:0,32768,229376 -(110,35:6630773,40196721:5505024,32768,229376 -r110,35:12135797,40196721:5505024,262144,229376 -) -k110,35:6630773,40196721:-5505024 -) -(110,35:6630773,40196721:25952256,32768,0 -r110,35:32583029,40196721:25952256,32768,0 -) -) -(110,35:6630773,41801049:25952256,606339,161218 -(110,35:6630773,41801049:0,0,0 -g110,35:6630773,41801049 -) -k110,35:32583028,41801049:18137480 -g110,35:32583028,41801049 -) -(110,37:6630773,43035753:25952256,513147,134348 -k110,36:8252182,43035753:185515 -k110,36:8650674,43035753:185500 -k110,36:11016572,43035753:185515 -k110,36:13037095,43035753:185515 -k110,36:15390540,43035753:185514 -k110,36:18616270,43035753:185515 -k110,36:19749435,43035753:185514 -k110,36:23650186,43035753:185515 -k110,36:24803011,43035753:185514 -k110,36:25639954,43035753:185515 -k110,36:26844553,43035753:185514 -k110,36:28463996,43035753:185515 -k110,36:29932705,43035753:185514 -k110,36:30706733,43035753:185515 -k110,36:32583029,43035753:0 -) -(110,37:6630773,43877241:25952256,513147,126483 -k110,36:7821512,43877241:171654 -k110,36:9231141,43877241:171654 -k110,36:11154572,43877241:171654 -k110,36:12604833,43877241:171654 -k110,36:14914271,43877241:171654 -k110,36:16277370,43877241:171654 -k110,36:17515294,43877241:171653 -k110,36:18411776,43877241:171654 -k110,36:20963698,43877241:171654 -k110,36:23491371,43877241:171654 -k110,36:25138240,43877241:171654 -k110,36:28335691,43877241:171654 -k110,36:29488419,43877241:171654 -k110,36:32583029,43877241:0 -) -(110,37:6630773,44718729:25952256,513147,134348 -k110,36:7491697,44718729:244886 -k110,36:9848153,44718729:244886 -k110,36:11284485,44718729:244887 -k110,36:13179568,44718729:244886 -k110,36:15979047,44718729:244886 -k110,36:16839971,44718729:244886 -k110,36:21690072,44718729:244886 -k110,36:22752847,44718729:244886 -k110,36:24423142,44718729:244887 -k110,36:26208124,44718729:244886 -k110,36:27388209,44718729:244886 -k110,36:30881059,44718729:244886 -k110,36:32583029,44718729:0 -) -(110,37:6630773,45560217:25952256,513147,134348 -k110,36:9514521,45560217:243958 -k110,36:13026758,45560217:243957 -k110,36:14737412,45560217:243958 -k110,36:15597408,45560217:243958 -k110,36:16860450,45560217:243957 -k110,36:19632132,45560217:243958 -k110,36:21067535,45560217:243958 -k110,36:21927530,45560217:243957 -k110,36:24541270,45560217:243958 -k110,36:27189744,45560217:243958 -k110,36:28452786,45560217:243957 -k110,36:30954459,45560217:243958 -k110,36:32583029,45560217:0 -) -] -(110,37:32583029,45706769:0,0,0 -g110,37:32583029,45706769 -) -) -] -(110,37:6630773,47279633:25952256,0,0 -h110,37:6630773,47279633:25952256,0,0 -) -] -h110,37:4262630,4025873:0,0,0 -] -!24060 +k106,1:29014430,51504789:25935872 +g106,1:29014430,51504789 +) +] +) +) +) +] +[106,37:3078558,4812305:0,0,0 +(106,37:3078558,49800853:0,16384,2228224 +g106,37:29030814,49800853 +g106,37:36135244,49800853 +(106,1:36135244,49800853:1720320,16384,2228224 +(106,1:36135244,52029077:16384,1703936,0 +[106,1:36135244,52029077:25952256,1703936,0 +(106,1:36135244,51504789:25952256,1179648,0 +(106,1:36135244,51504789:16384,1179648,0 +r106,37:36151628,51504789:16384,1179648,0 +) +k106,1:62087500,51504789:25935872 +g106,1:62087500,51504789 +) +] +) +g106,1:36675916,49800853 +(106,1:36675916,49800853:1179648,16384,0 +r106,37:37855564,49800853:1179648,16384,0 +) +) +k106,37:3078556,49800853:-34777008 +) +] +g106,37:6630773,4812305 +g106,37:6630773,4812305 +g106,37:9163084,4812305 +k106,37:31860822,4812305:22697738 +) +) +] +[106,37:6630773,45706769:25952256,40108032,0 +(106,37:6630773,45706769:25952256,40108032,0 +(106,37:6630773,45706769:0,0,0 +g106,37:6630773,45706769 +) +[106,37:6630773,45706769:25952256,40108032,0 +(106,27:6630773,6254097:25952256,513147,134348 +k106,26:8173004,6254097:259036 +k106,26:12094192,6254097:259036 +k106,26:15310868,6254097:259036 +k106,26:16841302,6254097:259036 +k106,26:18869155,6254097:259036 +k106,26:20742998,6254097:259036 +k106,26:22753810,6254097:259035 +k106,26:25775189,6254097:259036 +k106,26:26449008,6254097:258976 +k106,26:28620385,6254097:259036 +k106,26:30273372,6254097:259036 +k106,26:30888268,6254097:259036 +k106,26:32583029,6254097:0 +) +(106,27:6630773,7095585:25952256,513147,134348 +k106,26:7972547,7095585:164747 +k106,26:9872688,7095585:164748 +k106,26:14126226,7095585:164747 +k106,26:17053316,7095585:164747 +k106,26:18786341,7095585:164748 +k106,26:19610380,7095585:164747 +k106,26:22775365,7095585:164747 +k106,26:23959197,7095585:164747 +k106,26:25777418,7095585:164748 +k106,26:28289009,7095585:164747 +k106,26:29081591,7095585:164747 +k106,26:30449580,7095585:164748 +k106,26:32370037,7095585:164747 +k106,26:32583029,7095585:0 +) +(106,27:6630773,7937073:25952256,513147,134348 +k106,26:8263879,7937073:148716 +k106,26:10541204,7937073:148716 +k106,26:11341349,7937073:148717 +k106,26:14400519,7937073:148716 +k106,26:15833741,7937073:148716 +k106,26:16974017,7937073:148716 +k106,26:20033187,7937073:148716 +k106,26:22682102,7937073:148716 +k106,26:25040693,7937073:148717 +k106,26:26473915,7937073:148716 +k106,26:26835573,7937073:148666 +k106,26:29715174,7937073:148716 +k106,26:32583029,7937073:0 +) +(106,27:6630773,8778561:25952256,513147,134348 +k106,26:9851264,8778561:190106 +k106,26:10254352,8778561:190096 +k106,26:11919673,8778561:190106 +k106,26:12725816,8778561:190105 +k106,26:16036746,8778561:190106 +k106,26:17741388,8778561:190105 +k106,26:18582922,8778561:190106 +k106,26:20257417,8778561:190105 +k106,26:22576132,8778561:190106 +k106,26:23417665,8778561:190105 +k106,26:26518225,8778561:190106 +k106,26:28102281,8778561:190105 +k106,26:30494397,8778561:190106 +k106,26:32583029,8778561:0 +) +(106,27:6630773,9620049:25952256,513147,134348 +k106,26:11072862,9620049:192735 +k106,26:14373315,9620049:192736 +k106,26:15182088,9620049:192735 +k106,26:17838977,9620049:192735 +k106,26:18683140,9620049:192735 +k106,26:20384515,9620049:192736 +k106,26:23891406,9620049:192735 +k106,26:25717954,9620049:192735 +k106,26:26442186,9620049:192735 +k106,26:28936546,9620049:192736 +k106,26:31391584,9620049:192735 +k106,26:32583029,9620049:0 +) +(106,27:6630773,10461537:25952256,513147,134348 +k106,26:7533313,10461537:286502 +k106,26:10940638,10461537:286501 +k106,26:12775756,10461537:286502 +k106,26:13593755,10461537:286502 +k106,26:14236116,10461537:286501 +k106,26:17026093,10461537:286502 +k106,26:18693439,10461537:286502 +k106,26:21963794,10461537:286501 +k106,26:24952345,10461537:286502 +k106,26:27864219,10461537:286502 +k106,26:28960090,10461537:286501 +k106,26:30698214,10461537:286502 +k106,26:32583029,10461537:0 +) +(106,27:6630773,11303025:25952256,513147,126483 +k106,26:10575909,11303025:214827 +k106,26:11982181,11303025:214827 +k106,26:14951486,11303025:214827 +k106,26:18753098,11303025:214827 +k106,26:23488599,11303025:214827 +k106,26:24722510,11303025:214826 +k106,26:27686572,11303025:214827 +k106,26:28560691,11303025:214827 +k106,26:29794603,11303025:214827 +k106,26:31591469,11303025:214827 +k106,26:32583029,11303025:0 +) +(106,27:6630773,12144513:25952256,513147,134348 +k106,26:9536847,12144513:280702 +k106,26:11873413,12144513:280702 +k106,26:12915643,12144513:280702 +k106,26:14177419,12144513:280702 +k106,26:15788502,12144513:280702 +k106,26:19973184,12144513:280702 +k106,26:20466796,12144513:280620 +k106,26:22222713,12144513:280702 +k106,26:24017952,12144513:280702 +k106,26:24950082,12144513:280702 +k106,26:26845591,12144513:280702 +k106,26:30118012,12144513:280702 +k106,26:31014752,12144513:280702 +k106,26:32583029,12144513:0 +) +(106,27:6630773,12986001:25952256,513147,134348 +k106,26:8171268,12986001:255989 +k106,26:10839637,12986001:255989 +k106,26:12303455,12986001:255989 +k106,26:15019666,12986001:255989 +k106,26:19869074,12986001:255990 +k106,26:23692843,12986001:255989 +k106,26:24161767,12986001:255932 +k106,26:27688658,12986001:255989 +k106,26:30322949,12986001:255989 +k106,26:31230366,12986001:255989 +k106,26:32583029,12986001:0 +) +(106,27:6630773,13827489:25952256,513147,134348 +k106,26:8110475,13827489:276461 +k106,26:9968975,13827489:276461 +k106,26:10931598,13827489:276461 +k106,26:11563919,13827489:276461 +k106,26:14318952,13827489:276461 +k106,26:16283620,13827489:276461 +k106,26:17507733,13827489:276462 +k106,26:20795573,13827489:276461 +k106,26:22091119,13827489:276461 +k106,26:23721554,13827489:276461 +k106,26:25749792,13827489:276461 +k106,26:29110377,13827489:276461 +k106,26:31391584,13827489:276461 +k106,26:32583029,13827489:0 +) +(106,27:6630773,14668977:25952256,505283,126483 +g106,26:10492154,14668977 +g106,26:12576854,14668977 +g106,26:12989075,14668977 +g106,26:14663519,14668977 +g106,26:15929019,14668977 +k106,27:32583029,14668977:13390317 +g106,27:32583029,14668977 +) +(106,29:6630773,15510465:25952256,513147,134348 +h106,28:6630773,15510465:983040,0,0 +k106,28:8096291,15510465:269486 +k106,28:9498310,15510465:269557 +k106,28:13095784,15510465:269556 +k106,28:17134316,15510465:269557 +k106,28:18351523,15510465:269556 +k106,28:20896490,15510465:269557 +k106,28:24331435,15510465:269556 +k106,28:25792437,15510465:269557 +k106,28:29716936,15510465:269556 +k106,28:30645785,15510465:269557 +k106,28:32583029,15510465:0 +) +(106,29:6630773,16351953:25952256,513147,126483 +k106,28:8003276,16351953:181058 +k106,28:10544285,16351953:181058 +k106,28:13508002,16351953:181058 +k106,28:16217439,16351953:181058 +k106,28:17417582,16351953:181058 +k106,28:20590358,16351953:181057 +k106,28:22169299,16351953:181058 +k106,28:23825572,16351953:181058 +k106,28:25516580,16351953:181058 +k106,28:28541901,16351953:181058 +k106,28:30290580,16351953:181058 +k106,28:32583029,16351953:0 +) +(106,29:6630773,17193441:25952256,513147,134348 +k106,28:9293446,17193441:223423 +k106,28:10904266,17193441:223423 +k106,28:12879466,17193441:223423 +k106,28:14959524,17193441:223423 +k106,28:16249218,17193441:223423 +k106,28:17238758,17193441:223424 +k106,28:19901431,17193441:223423 +k106,28:21116414,17193441:223423 +k106,28:26041390,17193441:223423 +k106,28:26742570,17193441:223423 +k106,28:28136466,17193441:223423 +k106,28:31451222,17193441:223423 +k106,28:32583029,17193441:0 +) +(106,29:6630773,18034929:25952256,505283,126483 +k106,28:9469057,18034929:176867 +k106,28:10332085,18034929:176866 +k106,28:12298085,18034929:176867 +k106,28:13157836,18034929:176866 +k106,28:16183553,18034929:176867 +k106,28:18268172,18034929:176866 +k106,28:20451751,18034929:176867 +k106,28:21437988,18034929:176867 +k106,28:22582165,18034929:176866 +k106,28:24481974,18034929:176867 +k106,28:25383668,18034929:176866 +k106,28:26845041,18034929:176867 +k106,28:27234877,18034929:176844 +k106,28:28516026,18034929:176867 +k106,28:29890235,18034929:176866 +k106,28:30422962,18034929:176867 +k106,28:32583029,18034929:0 +) +(106,29:6630773,18876417:25952256,505283,134348 +k106,28:12721930,18876417:171290 +k106,28:13106183,18876417:171261 +k106,28:15628905,18876417:171290 +k106,28:17635203,18876417:171290 +k106,28:18825577,18876417:171289 +k106,28:21769040,18876417:171290 +k106,28:23270711,18876417:171290 +k106,28:24917215,18876417:171289 +k106,28:26935310,18876417:171290 +k106,28:28125684,18876417:171289 +k106,28:31391584,18876417:171290 +k106,28:32583029,18876417:0 +) +(106,29:6630773,19717905:25952256,505283,126483 +k106,28:8759634,19717905:215210 +k106,28:9993929,19717905:215210 +k106,28:13215931,19717905:215210 +k106,28:14715647,19717905:215210 +k106,28:16406072,19717905:215210 +k106,28:18777417,19717905:215210 +k106,28:19959938,19717905:215210 +k106,28:21789955,19717905:215210 +k106,28:23208406,19717905:215210 +k106,28:24649795,19717905:215210 +k106,28:26056450,19717905:215210 +k106,28:28514302,19717905:215210 +k106,28:29748597,19717905:215210 +k106,28:32583029,19717905:0 +) +(106,29:6630773,20559393:25952256,513147,126483 +k106,28:8028844,20559393:206626 +k106,28:9939406,20559393:206626 +k106,28:10805324,20559393:206626 +k106,28:13766428,20559393:206626 +k106,28:16810763,20559393:206626 +k106,28:17230374,20559393:206619 +k106,28:18912215,20559393:206626 +k106,28:20404657,20559393:206626 +k106,28:23254350,20559393:206626 +k106,28:24849029,20559393:206626 +k106,28:25865025,20559393:206626 +k106,28:28049528,20559393:206626 +k106,28:30568920,20559393:206626 +k106,28:31966991,20559393:206626 +k106,28:32583029,20559393:0 +) +(106,29:6630773,21400881:25952256,513147,134348 +k106,28:9073693,21400881:246809 +k106,28:10888122,21400881:246808 +k106,28:14359958,21400881:246809 +k106,28:16916255,21400881:246808 +k106,28:19542676,21400881:246809 +k106,28:21357105,21400881:246808 +k106,28:24323003,21400881:246809 +k106,28:26512298,21400881:246808 +k106,28:27752633,21400881:246809 +k106,28:31208739,21400881:246808 +k106,28:32583029,21400881:0 +) +(106,29:6630773,22242369:25952256,505283,134348 +k106,28:8819794,22242369:282579 +k106,28:11188384,22242369:282579 +k106,28:13963298,22242369:282580 +k106,28:17123563,22242369:282579 +k106,28:20439148,22242369:282579 +k106,28:21913172,22242369:282579 +k106,28:22957279,22242369:282579 +k106,28:26474060,22242369:282579 +k106,28:27408068,22242369:282580 +k106,28:29325115,22242369:282579 +k106,28:31299834,22242369:282579 +k106,28:32583029,22242369:0 +) +(106,29:6630773,23083857:25952256,505283,126483 +k106,28:9846756,23083857:209191 +k106,28:10865316,23083857:209190 +k106,28:12055581,23083857:209191 +k106,28:13768823,23083857:209191 +k106,28:14605849,23083857:209191 +k106,28:16566816,23083857:209190 +k106,28:18344284,23083857:209191 +k106,28:19756716,23083857:209191 +k106,28:21192086,23083857:209191 +k106,28:22994456,23083857:209190 +k106,28:24986882,23083857:209191 +k106,28:26846270,23083857:209191 +k106,28:27706889,23083857:209191 +k106,28:30051897,23083857:209190 +k106,28:31591469,23083857:209191 +k106,28:32583029,23083857:0 +) +(106,29:6630773,23925345:25952256,513147,126483 +k106,28:7883298,23925345:186254 +k106,28:10525186,23925345:186254 +k106,28:12153887,23925345:186254 +k106,28:12991570,23925345:186255 +k106,28:15480104,23925345:186254 +k106,28:18601060,23925345:186254 +k106,28:19473476,23925345:186254 +k106,28:19872709,23925345:186241 +k106,28:21034794,23925345:186254 +k106,28:22240133,23925345:186254 +k106,28:23583097,23925345:186254 +k106,28:25099733,23925345:186255 +k106,28:26386992,23925345:186254 +k106,28:28859797,23925345:186254 +k106,28:30249292,23925345:186254 +k106,28:32583029,23925345:0 +) +(106,29:6630773,24766833:25952256,513147,126483 +k106,28:8052251,24766833:230033 +k106,28:10773964,24766833:230034 +k106,28:12552613,24766833:230033 +k106,28:13434075,24766833:230034 +k106,28:16001777,24766833:230033 +k106,28:17423256,24766833:230034 +k106,28:20260967,24766833:230033 +k106,28:21177163,24766833:230034 +k106,28:23706199,24766833:230033 +k106,28:24149194,24766833:230003 +k106,28:25731890,24766833:230033 +k106,28:27051788,24766833:230034 +k106,28:31635378,24766833:230033 +k106,28:32583029,24766833:0 +) +(106,29:6630773,25608321:25952256,505283,126483 +g106,28:7961809,25608321 +g106,28:10098282,25608321 +g106,28:11488956,25608321 +k106,29:32583028,25608321:17009868 +g106,29:32583028,25608321 +) +(106,31:6630773,26449809:25952256,505283,134348 +h106,30:6630773,26449809:983040,0,0 +k106,30:9158785,26449809:162818 +k106,30:10796818,26449809:162818 +k106,30:11172592,26449809:162782 +k106,30:13570844,26449809:162819 +k106,30:14752747,26449809:162818 +k106,30:16183031,26449809:162818 +k106,30:18480357,26449809:162818 +k106,30:19266422,26449809:162818 +k106,30:20207153,26449809:162819 +k106,30:20768430,26449809:162818 +k106,30:24685151,26449809:162818 +k106,30:26228813,26449809:162818 +k106,30:27973670,26449809:162818 +k106,30:28667986,26449809:162819 +k106,30:30685473,26449809:162818 +k106,30:31657661,26449809:162818 +k106,31:32583029,26449809:0 +) +(106,31:6630773,27291297:25952256,505283,134348 +k106,30:9749512,27291297:186658 +k106,30:11127615,27291297:186658 +k106,30:13851828,27291297:186659 +k106,30:15322992,27291297:186658 +k106,30:17016978,27291297:186658 +k106,30:17816398,27291297:186658 +k106,30:20701829,27291297:186658 +k106,30:21539915,27291297:186658 +k106,30:24155994,27291297:186659 +k106,30:26684909,27291297:186658 +k106,30:29178434,27291297:186658 +k106,30:32583029,27291297:0 +) +(106,31:6630773,28132785:25952256,513147,134348 +k106,30:7671394,28132785:231251 +k106,30:9292007,28132785:231250 +k106,30:11258651,28132785:231251 +k106,30:12508987,28132785:231251 +k106,30:13155048,28132785:231218 +k106,30:16402266,28132785:231251 +k106,30:17103409,28132785:231250 +k106,30:19750317,28132785:231251 +k106,30:20790938,28132785:231251 +k106,30:22041273,28132785:231250 +k106,30:25288491,28132785:231251 +k106,30:27471404,28132785:231251 +k106,30:29145101,28132785:231250 +k106,30:30185722,28132785:231251 +k106,30:32583029,28132785:0 +) +(106,31:6630773,28974273:25952256,513147,134348 +k106,30:8515261,28974273:168100 +k106,30:9342652,28974273:168099 +k106,30:10900115,28974273:168100 +k106,30:13796479,28974273:168100 +k106,30:15156024,28974273:168100 +k106,30:17859711,28974273:168099 +k106,30:19046896,28974273:168100 +k106,30:21262996,28974273:168100 +k106,30:22082523,28974273:168099 +k106,30:24594846,28974273:168100 +k106,30:26585502,28974273:168100 +k106,30:27945047,28974273:168100 +k106,30:29606056,28974273:168099 +k106,30:30840427,28974273:168100 +k106,30:32583029,28974273:0 +) +(106,31:6630773,29815761:25952256,513147,134348 +k106,30:7869450,29815761:219592 +k106,30:10120659,29815761:219593 +k106,30:10999543,29815761:219592 +k106,30:12238220,29815761:219592 +k106,30:15473780,29815761:219593 +k106,30:17476607,29815761:219592 +k106,30:18564552,29815761:219593 +k106,30:19876629,29815761:219592 +k106,30:21193949,29815761:219592 +k106,30:23346854,29815761:219593 +k106,30:26408742,29815761:219592 +k106,30:27244372,29815761:219592 +k106,30:30302985,29815761:219593 +k106,30:31714677,29815761:219592 +k106,30:32583029,29815761:0 +) +(106,31:6630773,30657249:25952256,513147,134348 +k106,30:7635944,30657249:189903 +k106,30:8892118,30657249:189903 +k106,30:10762364,30657249:189903 +k106,30:12774823,30657249:189903 +k106,30:15867316,30657249:189903 +k106,30:17643190,30657249:189903 +k106,30:18515978,30657249:189903 +k106,30:21498370,30657249:189903 +k106,30:24793369,30657249:189903 +k106,30:27054210,30657249:189903 +k106,30:28191764,30657249:189903 +k106,30:29400752,30657249:189903 +k106,30:31900144,30657249:189903 +k106,30:32583029,30657249:0 +) +(106,31:6630773,31498737:25952256,513147,134348 +k106,30:10213261,31498737:260468 +k106,30:13804270,31498737:260469 +k106,30:14989451,31498737:260468 +k106,30:16426946,31498737:260468 +k106,30:17218912,31498737:260469 +k106,30:18427031,31498737:260468 +k106,30:19890740,31498737:260468 +k106,30:21733248,31498737:260469 +k106,30:22645144,31498737:260468 +k106,30:24293665,31498737:260468 +k106,30:25724607,31498737:260469 +k106,30:27563182,31498737:260468 +k106,30:28475078,31498737:260468 +k106,30:29828032,31498737:260469 +k106,30:30503282,31498737:260407 +k106,30:31379788,31498737:260468 +k106,30:32583029,31498737:0 +) +(106,31:6630773,32340225:25952256,513147,126483 +k106,30:8514277,32340225:230031 +k106,30:10155955,32340225:230032 +k106,30:11037414,32340225:230031 +k106,30:13710627,32340225:230031 +k106,30:15809090,32340225:230032 +k106,30:16655159,32340225:230031 +k106,30:17473704,32340225:230032 +k106,30:18900422,32340225:230031 +k106,30:20712492,32340225:230031 +k106,30:21474021,32340225:230032 +k106,30:25056219,32340225:230031 +k106,30:27575423,32340225:230031 +k106,30:28824540,32340225:230032 +k106,30:31923737,32340225:230031 +k106,30:32583029,32340225:0 +) +(106,31:6630773,33181713:25952256,505283,134348 +k106,30:9942962,33181713:139591 +k106,30:11476505,33181713:139592 +k106,30:14033719,33181713:139591 +k106,30:15771079,33181713:139592 +k106,30:17195176,33181713:139591 +k106,30:20192137,33181713:139591 +k106,30:21350814,33181713:139592 +k106,30:24204251,33181713:139591 +k106,30:26979046,33181713:139592 +k106,30:29410431,33181713:139591 +k106,30:32583029,33181713:0 +) +(106,31:6630773,34023201:25952256,505283,134348 +g106,30:7976227,34023201 +g106,30:10486911,34023201 +g106,30:11877585,34023201 +g106,30:13095899,34023201 +g106,30:13709971,34023201 +k106,31:32583029,34023201:15857091 +g106,31:32583029,34023201 +) +(106,34:6630773,34864689:25952256,505283,134348 +h106,33:6630773,34864689:983040,0,0 +k106,33:8013431,34864689:186626 +k106,33:11492599,34864689:186639 +k106,33:12824807,34864689:186639 +k106,33:13611100,34864689:186639 +k106,33:16799287,34864689:186638 +k106,33:17400102,34864689:186627 +k106,33:18672016,34864689:186638 +k106,33:19257114,34864689:186639 +k106,33:20953703,34864689:186639 +k106,33:24769726,34864689:186639 +k106,33:25847655,34864689:186639 +k106,33:26709314,34864689:186638 +k106,33:27956981,34864689:186639 +k106,33:30422962,34864689:186639 +k106,33:32583029,34864689:0 +) +(106,34:6630773,35706177:25952256,513147,134348 +k106,33:8559017,35706177:234138 +k106,33:10037028,35706177:234138 +k106,33:12917510,35706177:234138 +k106,33:13751302,35706177:234138 +k106,33:15950865,35706177:234138 +k106,33:16950464,35706177:234138 +k106,33:18197789,35706177:234138 +k106,33:21165435,35706177:234139 +k106,33:22558250,35706177:234138 +k106,33:24318066,35706177:234138 +k106,33:25762654,35706177:234138 +k106,33:27169231,35706177:234138 +k106,33:29701717,35706177:234138 +k106,33:31299004,35706177:234138 +k106,33:32121000,35706177:234138 +k106,33:32583029,35706177:0 +) +(106,34:6630773,36547665:25952256,513147,134348 +k106,33:7827373,36547665:210939 +k106,33:9797297,36547665:210938 +k106,33:11263250,36547665:210939 +k106,33:13851834,36547665:210938 +k106,33:15273223,36547665:210939 +k106,33:19085364,36547665:210938 +k106,33:20633893,36547665:210939 +k106,33:21243290,36547665:210938 +k106,33:23431450,36547665:210939 +k106,33:24104417,36547665:210938 +k106,33:25460925,36547665:210939 +k106,33:26638519,36547665:210938 +k106,33:27247917,36547665:210939 +k106,33:28739429,36547665:210938 +k106,33:31245439,36547665:210939 +k106,33:32583029,36547665:0 +) +(106,34:6630773,37389153:25952256,505283,134348 +g106,33:7228461,37389153 +g106,33:9231241,37389153 +g106,33:10030124,37389153 +g106,33:11939843,37389153 +g106,33:13124733,37389153 +k106,34:13124733,37389153:39322 +k106,34:32583028,37389153:17097688 +g106,34:32583028,37389153 +) +(106,35:6630773,40196721:25952256,32768,229376 +(106,35:6630773,40196721:0,32768,229376 +(106,35:6630773,40196721:5505024,32768,229376 +r106,35:12135797,40196721:5505024,262144,229376 +) +k106,35:6630773,40196721:-5505024 +) +(106,35:6630773,40196721:25952256,32768,0 +r106,35:32583029,40196721:25952256,32768,0 +) +) +(106,35:6630773,41801049:25952256,606339,161218 +(106,35:6630773,41801049:0,0,0 +g106,35:6630773,41801049 +) +k106,35:32583028,41801049:18137480 +g106,35:32583028,41801049 +) +(106,37:6630773,43035753:25952256,513147,134348 +k106,36:8234703,43035753:168036 +k106,36:8615701,43035753:168006 +k106,36:10618745,43035753:168036 +k106,36:12954712,43035753:168036 +k106,36:16162963,43035753:168036 +k106,36:17278651,43035753:168037 +k106,36:21161923,43035753:168036 +k106,36:22297270,43035753:168036 +k106,36:23116734,43035753:168036 +k106,36:24303856,43035753:168037 +k106,36:25905820,43035753:168036 +k106,36:27357051,43035753:168036 +k106,36:28113600,43035753:168036 +k106,36:30157933,43035753:168037 +k106,36:31345054,43035753:168036 +k106,36:32583029,43035753:0 +) +(106,37:6630773,43877241:25952256,513147,126483 +k106,36:8518008,43877241:135458 +k106,36:9932073,43877241:135458 +k106,36:12205315,43877241:135458 +k106,36:13532218,43877241:135458 +k106,36:14733947,43877241:135458 +k106,36:15594233,43877241:135458 +k106,36:18109958,43877241:135457 +k106,36:20601435,43877241:135458 +k106,36:22212108,43877241:135458 +k106,36:25373363,43877241:135458 +k106,36:26489895,43877241:135458 +k106,36:29719963,43877241:135458 +k106,36:30471459,43877241:135458 +k106,36:32583029,43877241:0 +) +(106,37:6630773,44718729:25952256,513147,134348 +k106,36:8097350,44718729:275132 +k106,36:10022679,44718729:275132 +k106,36:12852404,44718729:275132 +k106,36:13743574,44718729:275132 +k106,36:18623921,44718729:275132 +k106,36:19716942,44718729:275132 +k106,36:21417482,44718729:275132 +k106,36:23232710,44718729:275132 +k106,36:24443041,44718729:275132 +k106,36:27966137,44718729:275132 +k106,36:29943239,44718729:275132 +k106,36:32583029,44718729:0 +) +(106,37:6630773,45560217:25952256,513147,134348 +k106,36:10113402,45560217:214349 +k106,36:11794448,45560217:214350 +k106,36:12624835,45560217:214349 +k106,36:13858270,45560217:214350 +k106,36:16600343,45560217:214349 +k106,36:18006138,45560217:214350 +k106,36:18836525,45560217:214349 +k106,36:21420656,45560217:214349 +k106,36:24039522,45560217:214350 +k106,36:25272956,45560217:214349 +k106,36:27745021,45560217:214350 +k106,36:29587940,45560217:214349 +k106,36:30749941,45560217:214350 +k106,36:31931601,45560217:214349 +k106,36:32583029,45560217:0 +) +] +(106,37:32583029,45706769:0,0,0 +g106,37:32583029,45706769 +) +) +] +(106,37:6630773,47279633:25952256,0,0 +h106,37:6630773,47279633:25952256,0,0 +) +] +h106,37:4262630,4025873:0,0,0 +] +!23898 }10 !11 {11 -[1,88:4262630,47279633:28320399,43253760,0 -(1,88:4262630,4025873:0,0,0 -[1,88:-473657,4025873:25952256,0,0 -(1,88:-473657,-710414:25952256,0,0 -h1,88:-473657,-710414:0,0,0 -(1,88:-473657,-710414:0,0,0 -(1,88:-473657,-710414:0,0,0 -g1,88:-473657,-710414 -(1,88:-473657,-710414:65781,0,65781 -g1,88:-407876,-710414 -[1,88:-407876,-644633:0,0,0 +[1,94:4262630,47279633:28320399,43253760,0 +(1,94:4262630,4025873:0,0,0 +[1,94:-473657,4025873:25952256,0,0 +(1,94:-473657,-710414:25952256,0,0 +h1,94:-473657,-710414:0,0,0 +(1,94:-473657,-710414:0,0,0 +(1,94:-473657,-710414:0,0,0 +g1,94:-473657,-710414 +(1,94:-473657,-710414:65781,0,65781 +g1,94:-407876,-710414 +[1,94:-407876,-644633:0,0,0 ] ) -k1,88:-473657,-710414:-65781 +k1,94:-473657,-710414:-65781 ) ) -k1,88:25478599,-710414:25952256 -g1,88:25478599,-710414 +k1,94:25478599,-710414:25952256 +g1,94:25478599,-710414 ) ] ) -[1,88:6630773,47279633:25952256,43253760,0 -[1,88:6630773,4812305:25952256,786432,0 -(1,88:6630773,4812305:25952256,513147,126483 -(1,88:6630773,4812305:25952256,513147,126483 -g1,88:3078558,4812305 -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,2439708:0,1703936,0 -k1,88:1358238,2439708:-1720320 -(110,1:1358238,2439708:1720320,1703936,0 -(110,1:1358238,2439708:1179648,16384,0 -r1,88:2537886,2439708:1179648,16384,0 +[1,94:6630773,47279633:25952256,43253760,0 +[1,94:6630773,4812305:25952256,786432,0 +(1,94:6630773,4812305:25952256,513147,126483 +(1,94:6630773,4812305:25952256,513147,126483 +g1,94:3078558,4812305 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,2439708:0,1703936,0 +k1,94:1358238,2439708:-1720320 +(106,1:1358238,2439708:1720320,1703936,0 +(106,1:1358238,2439708:1179648,16384,0 +r1,94:2537886,2439708:1179648,16384,0 ) -g110,1:3062174,2439708 -(110,1:3062174,2439708:16384,1703936,0 -[110,1:3062174,2439708:25952256,1703936,0 -(110,1:3062174,1915420:25952256,1179648,0 -(110,1:3062174,1915420:16384,1179648,0 -r1,88:3078558,1915420:16384,1179648,0 +g106,1:3062174,2439708 +(106,1:3062174,2439708:16384,1703936,0 +[106,1:3062174,2439708:25952256,1703936,0 +(106,1:3062174,1915420:25952256,1179648,0 +(106,1:3062174,1915420:16384,1179648,0 +r1,94:3078558,1915420:16384,1179648,0 ) -k110,1:29014430,1915420:25935872 -g110,1:29014430,1915420 +k106,1:29014430,1915420:25935872 +g106,1:29014430,1915420 ) ] ) ) ) ] -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,2439708:0,1703936,0 -g1,88:29030814,2439708 -g1,88:36135244,2439708 -(110,1:36135244,2439708:1720320,1703936,0 -(110,1:36135244,2439708:16384,1703936,0 -[110,1:36135244,2439708:25952256,1703936,0 -(110,1:36135244,1915420:25952256,1179648,0 -(110,1:36135244,1915420:16384,1179648,0 -r1,88:36151628,1915420:16384,1179648,0 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,2439708:0,1703936,0 +g1,94:29030814,2439708 +g1,94:36135244,2439708 +(106,1:36135244,2439708:1720320,1703936,0 +(106,1:36135244,2439708:16384,1703936,0 +[106,1:36135244,2439708:25952256,1703936,0 +(106,1:36135244,1915420:25952256,1179648,0 +(106,1:36135244,1915420:16384,1179648,0 +r1,94:36151628,1915420:16384,1179648,0 ) -k110,1:62087500,1915420:25935872 -g110,1:62087500,1915420 +k106,1:62087500,1915420:25935872 +g106,1:62087500,1915420 ) ] ) -g110,1:36675916,2439708 -(110,1:36675916,2439708:1179648,16384,0 -r1,88:37855564,2439708:1179648,16384,0 +g106,1:36675916,2439708 +(106,1:36675916,2439708:1179648,16384,0 +r1,94:37855564,2439708:1179648,16384,0 ) ) -k1,88:3078556,2439708:-34777008 +k1,94:3078556,2439708:-34777008 ) ] -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,49800853:0,16384,2228224 -k1,88:1358238,49800853:-1720320 -(110,1:1358238,49800853:1720320,16384,2228224 -(110,1:1358238,49800853:1179648,16384,0 -r1,88:2537886,49800853:1179648,16384,0 +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,49800853:0,16384,2228224 +k1,94:1358238,49800853:-1720320 +(106,1:1358238,49800853:1720320,16384,2228224 +(106,1:1358238,49800853:1179648,16384,0 +r1,94:2537886,49800853:1179648,16384,0 ) -g110,1:3062174,49800853 -(110,1:3062174,52029077:16384,1703936,0 -[110,1:3062174,52029077:25952256,1703936,0 -(110,1:3062174,51504789:25952256,1179648,0 -(110,1:3062174,51504789:16384,1179648,0 -r1,88:3078558,51504789:16384,1179648,0 +g106,1:3062174,49800853 +(106,1:3062174,52029077:16384,1703936,0 +[106,1:3062174,52029077:25952256,1703936,0 +(106,1:3062174,51504789:25952256,1179648,0 +(106,1:3062174,51504789:16384,1179648,0 +r1,94:3078558,51504789:16384,1179648,0 ) -k110,1:29014430,51504789:25935872 -g110,1:29014430,51504789 -) -] -) -) -) -] -[1,88:3078558,4812305:0,0,0 -(1,88:3078558,49800853:0,16384,2228224 -g1,88:29030814,49800853 -g1,88:36135244,49800853 -(110,1:36135244,49800853:1720320,16384,2228224 -(110,1:36135244,52029077:16384,1703936,0 -[110,1:36135244,52029077:25952256,1703936,0 -(110,1:36135244,51504789:25952256,1179648,0 -(110,1:36135244,51504789:16384,1179648,0 -r1,88:36151628,51504789:16384,1179648,0 -) -k110,1:62087500,51504789:25935872 -g110,1:62087500,51504789 -) -] -) -g110,1:36675916,49800853 -(110,1:36675916,49800853:1179648,16384,0 -r1,88:37855564,49800853:1179648,16384,0 -) -) -k1,88:3078556,49800853:-34777008 -) -] -g1,88:6630773,4812305 -k1,88:30249947,4812305:22695772 -) -) -] -[1,88:6630773,45706769:25952256,40108032,0 -(1,88:6630773,45706769:25952256,40108032,0 -(1,88:6630773,45706769:0,0,0 -g1,88:6630773,45706769 -) -[1,88:6630773,45706769:25952256,40108032,0 -(110,37:6630773,6254097:25952256,513147,134348 -k110,36:7777191,6254097:198767 -k110,36:8943269,6254097:198767 -k110,36:9793463,6254097:198766 -k110,36:11669952,6254097:198767 -k110,36:13136185,6254097:198767 -k110,36:14354037,6254097:198767 -k110,36:16743672,6254097:198766 -k110,36:17601731,6254097:198767 -k110,36:18819583,6254097:198767 -k110,36:19433192,6254097:198766 -k110,36:22647926,6254097:198767 -k110,36:23620673,6254097:198767 -k110,36:26102058,6254097:198766 -k110,36:26513817,6254097:198767 -k110,36:27911237,6254097:198766 -k110,36:29088457,6254097:198767 -k110,36:31015408,6254097:198767 -k110,36:32583029,6254097:0 -) -(110,37:6630773,7095585:25952256,513147,126483 -k110,36:8240416,7095585:184235 -k110,36:9076079,7095585:184235 -k110,36:10685722,7095585:184235 -k110,36:12061401,7095585:184234 -k110,36:13324359,7095585:184235 -k110,36:14456245,7095585:184235 -k110,36:16202203,7095585:184235 -k110,36:16599415,7095585:184220 -k110,36:18251001,7095585:184235 -k110,36:19086664,7095585:184235 -k110,36:21622331,7095585:184235 -k110,36:23641574,7095585:184235 -k110,36:24591924,7095585:184234 -k110,36:25795244,7095585:184235 -k110,36:28115297,7095585:184235 -k110,36:28512509,7095585:184220 -k110,36:30171959,7095585:184235 -k110,37:32583029,7095585:0 -) -(110,37:6630773,7937073:25952256,513147,134348 -k110,36:7866026,7937073:210270 -k110,36:9470246,7937073:210269 -k110,36:10296554,7937073:210270 -k110,36:12970977,7937073:210269 -k110,36:13832675,7937073:210270 -k110,36:14661605,7937073:210270 -k110,36:17852451,7937073:210269 -k110,36:21016429,7937073:210270 -k110,36:21885991,7937073:210270 -k110,36:23077334,7937073:210269 -k110,36:24617985,7937073:210270 -k110,36:27534236,7937073:210269 -k110,36:29810856,7937073:210270 -k110,36:32583029,7937073:0 -) -(110,37:6630773,8778561:25952256,505283,134348 -k110,36:10887176,8778561:174821 -k110,36:11678036,8778561:174822 -k110,36:12871942,8778561:174821 -k110,36:15486013,8778561:174821 -k110,36:15873802,8778561:174797 -k110,36:17523838,8778561:174821 -k110,36:19945890,8778561:174822 -k110,36:23428968,8778561:174821 -k110,36:23816757,8778561:174797 -k110,36:25466793,8778561:174821 -k110,36:29599990,8778561:174822 -k110,36:31342432,8778561:174821 -k110,37:32583029,8778561:0 -) -(110,37:6630773,9620049:25952256,513147,126483 -k110,36:8243411,9620049:184608 -k110,36:9087312,9620049:184609 -k110,36:10291005,9620049:184608 -k110,36:12387955,9620049:184609 -k110,36:12785540,9620049:184593 -k110,36:14445364,9620049:184609 -k110,36:16042273,9620049:184608 -k110,36:17418326,9620049:184608 -k110,36:19738753,9620049:184609 -k110,36:20136339,9620049:184594 -k110,36:21796162,9620049:184608 -k110,36:23356371,9620049:184608 -k110,36:24765193,9620049:184609 -k110,36:26927678,9620049:184608 -k110,36:27795172,9620049:184609 -k110,36:28592542,9620049:184608 -k110,36:32583029,9620049:0 -) -(110,37:6630773,10461537:25952256,513147,126483 -k110,36:7736596,10461537:207980 -k110,36:8603869,10461537:207981 -k110,36:10450904,10461537:207980 -k110,36:12134099,10461537:207980 -k110,36:14085993,10461537:207981 -k110,36:14752070,10461537:207980 -k110,36:17590010,10461537:207980 -k110,36:18745642,10461537:207981 -k110,36:19920933,10461537:207980 -k110,36:20780342,10461537:207981 -k110,36:22603129,10461537:207980 -k110,36:24014350,10461537:207980 -k110,36:25978041,10461537:207981 -k110,36:27566865,10461537:207980 -k110,36:28875850,10461537:207980 -k110,36:30593781,10461537:207981 -k110,36:31157621,10461537:207980 -k110,36:32583029,10461537:0 -) -(110,37:6630773,11303025:25952256,513147,134348 -k110,36:10286926,11303025:157841 -k110,36:13785792,11303025:157841 -k110,36:15829104,11303025:157841 -k110,36:17087949,11303025:157840 -k110,36:18663334,11303025:157841 -k110,36:19788486,11303025:157841 -k110,36:20992282,11303025:157841 -k110,36:22901900,11303025:157841 -k110,36:24902613,11303025:157841 -k110,36:26654289,11303025:157840 -k110,36:28379751,11303025:157841 -k110,36:29518666,11303025:157841 -k110,36:31858201,11303025:157841 -k110,36:32583029,11303025:0 -) -(110,37:6630773,12144513:25952256,513147,134348 -k110,36:7037747,12144513:193982 -k110,36:9992110,12144513:193987 -k110,36:12021106,12144513:193988 -k110,36:14050101,12144513:193987 -k110,36:15769766,12144513:193987 -k110,36:17155198,12144513:193987 -k110,36:19484349,12144513:193988 -k110,36:20625987,12144513:193987 -k110,36:22328613,12144513:193987 -k110,36:27351293,12144513:193987 -k110,36:27758267,12144513:193982 -k110,36:28928086,12144513:193988 -k110,36:31931601,12144513:193987 -k110,36:32583029,12144513:0 -) -(110,37:6630773,12986001:25952256,505283,134348 -k110,36:8461776,12986001:169665 -k110,36:10583759,12986001:169665 -k110,36:12258786,12986001:169665 -k110,36:15857950,12986001:169665 -k110,36:17729586,12986001:169666 -k110,36:21381179,12986001:169665 -k110,36:24323017,12986001:169665 -k110,36:25684127,12986001:169665 -k110,36:29554610,12986001:169665 -k110,36:32583029,12986001:0 -) -(110,37:6630773,13827489:25952256,513147,126483 -k110,36:7851351,13827489:272927 -k110,36:9876056,13827489:272928 -k110,36:11502957,13827489:272927 -k110,36:14048674,13827489:272928 -k110,36:17639033,13827489:272927 -k110,36:18721331,13827489:272928 -k110,36:21756601,13827489:272927 -k110,36:24693568,13827489:272928 -k110,36:25625787,13827489:272927 -k110,36:26917800,13827489:272928 -k110,36:28772766,13827489:272927 -k110,36:32583029,13827489:0 -) -(110,37:6630773,14668977:25952256,513147,134348 -k110,36:8071036,14668977:200322 -k110,36:10280691,14668977:200321 -k110,36:11428664,14668977:200322 -k110,36:12575326,14668977:200322 -k110,36:17685604,14668977:200321 -k110,36:19077371,14668977:200322 -k110,36:21955494,14668977:200322 -k110,36:24270006,14668977:200321 -k110,36:25489413,14668977:200322 -k110,36:27572584,14668977:200322 -k110,36:30520174,14668977:200321 -k110,36:31379788,14668977:200322 -k110,36:32583029,14668977:0 -) -(110,37:6630773,15510465:25952256,505283,134348 -g110,36:8412041,15510465 -g110,36:10868985,15510465 -k110,37:32583028,15510465:19272172 -g110,37:32583028,15510465 -) -(110,38:6630773,18318033:25952256,32768,229376 -(110,38:6630773,18318033:0,32768,229376 -(110,38:6630773,18318033:5505024,32768,229376 -r110,38:12135797,18318033:5505024,262144,229376 -) -k110,38:6630773,18318033:-5505024 -) -(110,38:6630773,18318033:25952256,32768,0 -r110,38:32583029,18318033:25952256,32768,0 -) -) -(110,38:6630773,19922361:25952256,615776,9436 -(110,38:6630773,19922361:0,0,0 -g110,38:6630773,19922361 -) -g110,38:8987710,19922361 -g110,38:11114222,19922361 -g110,38:12150740,19922361 -g110,38:14471501,19922361 -g110,38:18144925,19922361 -k110,38:32583029,19922361:11444944 -g110,38:32583029,19922361 -) -(110,41:6630773,21157065:25952256,505283,134348 -k110,40:8305272,21157065:270718 -k110,40:10413620,21157065:270718 -k110,40:11675899,21157065:270719 -k110,40:13459843,21157065:270718 -k110,40:17355357,21157065:270718 -k110,40:18645160,21157065:270718 -k110,40:20497917,21157065:270718 -k110,40:21420063,21157065:270718 -k110,40:24548152,21157065:270719 -k110,40:27237804,21157065:270718 -k110,40:28793028,21157065:270718 -k110,40:30736880,21157065:270718 -k110,41:32583029,21157065:0 -) -(110,41:6630773,21998553:25952256,513147,134348 -k110,40:7608722,21998553:213799 -k110,40:9388175,21998553:213798 -k110,40:10218012,21998553:213799 -k110,40:11450895,21998553:213798 -k110,40:14266473,21998553:213799 -k110,40:16925419,21998553:213798 -k110,40:17822103,21998553:213799 -k110,40:19320407,21998553:213798 -k110,40:21826000,21998553:213799 -k110,40:24233943,21998553:213798 -k110,40:27347055,21998553:213799 -k110,40:29128474,21998553:213798 -k110,40:30361358,21998553:213799 -k110,40:32583029,21998553:0 -) -(110,41:6630773,22840041:25952256,513147,126483 -k110,40:8306622,22840041:200634 -k110,40:9667243,22840041:200634 -k110,40:12569925,22840041:200633 -k110,40:13927269,22840041:200634 -k110,40:14787195,22840041:200634 -k110,40:16122913,22840041:200634 -k110,40:19085890,22840041:200634 -k110,40:20960968,22840041:200633 -k110,40:22446108,22840041:200634 -k110,40:25178398,22840041:200634 -k110,40:26398117,22840041:200634 -k110,40:27984836,22840041:200633 -k110,40:28844762,22840041:200634 -k110,40:29833794,22840041:200634 -k110,40:32583029,22840041:0 -) -(110,41:6630773,23681529:25952256,505283,7863 -g110,40:7516164,23681529 -g110,40:10805416,23681529 -k110,40:32583030,23681529:19735512 -g110,41:32583030,23681529 -) -(110,41:6630773,25044028:25952256,0,0 -g110,41:6630773,25044028 -) -(110,44:6630773,26196938:25952256,1087374,134348 -k110,43:7997408,26196938:156932 -k110,43:10391084,26196938:156932 -k110,43:14229829,26196938:156933 -k110,43:16224391,26196938:156932 -k110,43:18266794,26196938:156932 -k110,43:20795474,26196938:156932 -k110,43:24693857,26196938:156933 -k110,43:30052382,26196938:156932 -k110,43:31400759,26196938:156932 -k110,44:32583029,26196938:0 -) -(110,44:6630773,27038426:25952256,513147,126483 -g110,43:7841223,27038426 -g110,43:8707608,27038426 -g110,43:9321680,27038426 -g110,43:11017096,27038426 -g110,43:11867753,27038426 -g110,43:13409815,27038426 -g110,43:15002995,27038426 -g110,43:15814986,27038426 -g110,43:17033300,27038426 -g110,43:17647372,27038426 -k110,43:32583029,27038426:12341742 -g110,44:32583029,27038426 -) -(110,44:6630773,28400925:25952256,0,0 -g110,44:6630773,28400925 -) -(110,47:6630773,29750443:25952256,1283982,196608 -(110,46:6630773,29750443:0,1283982,196608 -r110,46:9196018,29750443:2565245,1480590,196608 -k110,46:6630773,29750443:-2565245 -) -(110,46:6630773,29750443:2565245,1283982,196608 -) -k110,46:9438129,29750443:242111 -k110,46:11916983,29750443:242110 -k110,46:15190789,29750443:242111 -k110,46:19114711,29750443:242110 -k110,46:21242293,29750443:242111 -k110,46:22616865,29750443:242110 -k110,46:25150770,29750443:242111 -k110,46:27043077,29750443:242110 -k110,46:28710596,29750443:242111 -k110,46:29604134,29750443:242110 -k110,46:31189078,29750443:242111 -k110,46:32583029,29750443:0 -) -(110,47:6630773,30591931:25952256,513147,134348 -g110,46:8872759,30591931 -g110,46:11831709,30591931 -g110,46:14862749,30591931 -g110,46:16504425,30591931 -g110,46:18977753,30591931 -g110,46:22858794,30591931 -k110,46:32583029,30591931:7712935 -g110,47:32583029,30591931 -) -(110,47:6630773,31954430:25952256,0,0 -g110,47:6630773,31954430 -) -(110,50:6630773,33105502:25952256,1085536,298548 -(110,49:6630773,33105502:0,1085536,298548 -r110,49:8137188,33105502:1506415,1384084,298548 -k110,49:6630773,33105502:-1506415 -) -(110,49:6630773,33105502:1506415,1085536,298548 -) -k110,49:8339896,33105502:202708 -k110,49:10779349,33105502:202709 -k110,49:14191355,33105502:202708 -k110,49:15582886,33105502:202708 -k110,49:16444887,33105502:202709 -k110,49:20454581,33105502:202708 -k110,49:21941796,33105502:202709 -k110,49:23766520,33105502:202708 -k110,49:24716994,33105502:202708 -k110,49:28946890,33105502:202709 -k110,49:30847636,33105502:202708 -k110,50:32583029,33105502:0 -) -(110,50:6630773,33946990:25952256,513147,134348 -g110,49:8969753,33946990 -g110,49:11479126,33946990 -g110,49:13370495,33946990 -g110,49:16120385,33946990 -g110,49:18595024,33946990 -g110,49:19453545,33946990 -g110,49:20671859,33946990 -k110,49:32583029,33946990:8895203 -g110,50:32583029,33946990 -) -(110,50:6630773,35309489:25952256,0,0 -g110,50:6630773,35309489 -) -(110,53:6630773,36536910:25952256,1161885,196608 -(110,52:6630773,36536910:0,1161885,196608 -r110,52:8178409,36536910:1547636,1358493,196608 -k110,52:6630773,36536910:-1547636 -) -(110,52:6630773,36536910:1547636,1161885,196608 -) -k110,52:8317700,36536910:139291 -k110,52:10693735,36536910:139291 -k110,52:13522624,36536910:139291 -k110,52:17724492,36536910:139291 -k110,52:18523075,36536910:139291 -k110,52:21059672,36536910:139290 -k110,52:23217472,36536910:139291 -k110,52:24641269,36536910:139291 -k110,52:26117494,36536910:139291 -k110,52:28548579,36536910:139291 -k110,52:29858343,36536910:139291 -k110,52:30649062,36536910:139291 -k110,52:32583029,36536910:0 -) -(110,53:6630773,37378398:25952256,513147,134348 -k110,52:8259389,37378398:203208 -k110,52:11306860,37378398:203208 -k110,52:13395539,37378398:203208 -k110,52:14360932,37378398:203209 -k110,52:16897222,37378398:203208 -k110,52:18204712,37378398:203208 -k110,52:19155686,37378398:203208 -k110,52:21892516,37378398:203208 -k110,52:22905094,37378398:203208 -k110,52:24414435,37378398:203208 -k110,52:27193864,37378398:203209 -k110,52:28469241,37378398:203208 -k110,52:29323877,37378398:203208 -k110,52:31412556,37378398:203208 -k110,52:32583029,37378398:0 -) -(110,53:6630773,38219886:25952256,513147,126483 -g110,52:9010385,38219886 -g110,52:11220259,38219886 -g110,52:12032250,38219886 -g110,52:12587339,38219886 -g110,52:14413827,38219886 -g110,52:17476324,38219886 -g110,52:19100961,38219886 -g110,52:22579612,38219886 -g110,52:24172792,38219886 -g110,52:24727881,38219886 -g110,52:26096272,38219886 -g110,52:26954793,38219886 -g110,52:29062430,38219886 -g110,52:29944544,38219886 -k110,52:32583029,38219886:1504712 -g110,53:32583029,38219886 -) -(110,53:6630773,39582385:25952256,0,0 -g110,53:6630773,39582385 -) -(110,58:6630773,40670267:25952256,1022346,134348 -k110,55:8085911,40670267:199625 -k110,55:10522279,40670267:199624 -k110,55:11948083,40670267:199625 -k110,55:13985337,40670267:199624 -k110,55:17257945,40670267:199625 -k110,55:19790651,40670267:199624 -k110,55:23797262,40670267:199625 -k110,55:25063158,40670267:199625 -k110,55:27677128,40670267:199624 -k110,55:30098424,40670267:199625 -k110,55:30949476,40670267:199624 -k110,55:32168186,40670267:199625 -k110,58:32583029,40670267:0 -) -(110,58:6630773,41511755:25952256,505283,134348 -k110,55:32583028,41511755:22936288 -g110,58:32583028,41511755 -) -(110,58:6630773,42874254:25952256,0,0 -g110,58:6630773,42874254 -) -] -(1,88:32583029,45706769:0,0,0 -g1,88:32583029,45706769 -) -) -] -(1,88:6630773,47279633:25952256,0,0 -h1,88:6630773,47279633:25952256,0,0 -) -] -h1,88:4262630,4025873:0,0,0 -] -!16547 +k106,1:29014430,51504789:25935872 +g106,1:29014430,51504789 +) +] +) +) +) +] +[1,94:3078558,4812305:0,0,0 +(1,94:3078558,49800853:0,16384,2228224 +g1,94:29030814,49800853 +g1,94:36135244,49800853 +(106,1:36135244,49800853:1720320,16384,2228224 +(106,1:36135244,52029077:16384,1703936,0 +[106,1:36135244,52029077:25952256,1703936,0 +(106,1:36135244,51504789:25952256,1179648,0 +(106,1:36135244,51504789:16384,1179648,0 +r1,94:36151628,51504789:16384,1179648,0 +) +k106,1:62087500,51504789:25935872 +g106,1:62087500,51504789 +) +] +) +g106,1:36675916,49800853 +(106,1:36675916,49800853:1179648,16384,0 +r1,94:37855564,49800853:1179648,16384,0 +) +) +k1,94:3078556,49800853:-34777008 +) +] +g1,94:6630773,4812305 +k1,94:30249947,4812305:22695772 +) +) +] +[1,94:6630773,45706769:25952256,40108032,0 +(1,94:6630773,45706769:25952256,40108032,0 +(1,94:6630773,45706769:0,0,0 +g1,94:6630773,45706769 +) +[1,94:6630773,45706769:25952256,40108032,0 +(106,37:6630773,6254097:25952256,513147,134348 +k106,36:8452218,6254097:143723 +k106,36:9863407,6254097:143723 +k106,36:11026215,6254097:143723 +k106,36:13360807,6254097:143723 +k106,36:14163822,6254097:143723 +k106,36:15326630,6254097:143723 +k106,36:15885141,6254097:143668 +k106,36:19044831,6254097:143723 +k106,36:19962533,6254097:143722 +k106,36:22388875,6254097:143723 +k106,36:22745535,6254097:143668 +k106,36:24087912,6254097:143723 +k106,36:25210088,6254097:143723 +k106,36:27081995,6254097:143723 +k106,36:28793339,6254097:143723 +k106,36:30362470,6254097:143723 +k106,36:31157621,6254097:143723 +k106,36:32583029,6254097:0 +) +(106,37:6630773,7095585:25952256,513147,126483 +k106,36:8060487,7095585:238269 +k106,36:9377479,7095585:238269 +k106,36:10563399,7095585:238269 +k106,36:12363391,7095585:238269 +k106,36:12814613,7095585:238230 +k106,36:14520233,7095585:238269 +k106,36:15409930,7095585:238269 +k106,36:17999632,7095585:238270 +k106,36:20072909,7095585:238269 +k106,36:21077294,7095585:238269 +k106,36:22334648,7095585:238269 +k106,36:24708735,7095585:238269 +k106,36:25159957,7095585:238230 +k106,36:26873441,7095585:238269 +k106,36:30334771,7095585:238269 +k106,36:31966991,7095585:238269 +k106,36:32583029,7095585:0 +) +(106,37:6630773,7937073:25952256,513147,134348 +k106,36:9248281,7937073:153354 +k106,36:10053063,7937073:153354 +k106,36:10825077,7937073:153354 +k106,36:13959008,7937073:153354 +k106,36:17066070,7937073:153354 +k106,36:17878717,7937073:153355 +k106,36:19013145,7937073:153354 +k106,36:20496880,7937073:153354 +k106,36:23356216,7937073:153354 +k106,36:25575920,7937073:153354 +k106,36:28501447,7937073:153354 +k106,36:32583029,7937073:0 +) +(106,37:6630773,8778561:25952256,513147,134348 +k106,36:7499587,8778561:252776 +k106,36:8771447,8778561:252775 +k106,36:11463473,8778561:252776 +k106,36:11929187,8778561:252722 +k106,36:13657177,8778561:252775 +k106,36:16157183,8778561:252776 +k106,36:19718215,8778561:252775 +k106,36:20183929,8778561:252722 +k106,36:21911920,8778561:252776 +k106,36:26123070,8778561:252775 +k106,36:27943467,8778561:252776 +k106,36:30651876,8778561:252775 +k106,36:31563944,8778561:252776 +k106,36:32583029,8778561:0 +) +(106,37:6630773,9620049:25952256,513147,126483 +k106,36:8722112,9620049:178998 +k106,36:9114081,9620049:178977 +k106,36:10768294,9620049:178998 +k106,36:12359592,9620049:178997 +k106,36:13730035,9620049:178998 +k106,36:16044851,9620049:178998 +k106,36:16436820,9620049:178977 +k106,36:18091033,9620049:178998 +k106,36:19645632,9620049:178998 +k106,36:21048842,9620049:178997 +k106,36:23205717,9620049:178998 +k106,36:24067599,9620049:178997 +k106,36:24859359,9620049:178998 +k106,36:29028844,9620049:178998 +k106,36:30105684,9620049:178997 +k106,36:30943974,9620049:178998 +k106,36:32583029,9620049:0 +) +(106,37:6630773,10461537:25952256,513147,134348 +k106,36:8321558,10461537:215570 +k106,36:10281040,10461537:215569 +k106,36:10954707,10461537:215570 +k106,36:13800236,10461537:215569 +k106,36:14963457,10461537:215570 +k106,36:16146338,10461537:215570 +k106,36:17013335,10461537:215569 +k106,36:18843712,10461537:215570 +k106,36:20262522,10461537:215569 +k106,36:22233802,10461537:215570 +k106,36:23830216,10461537:215570 +k106,36:25146790,10461537:215569 +k106,36:26872310,10461537:215570 +k106,36:27443739,10461537:215569 +k106,36:29084717,10461537:215570 +k106,36:32583029,10461537:0 +) +(106,37:6630773,11303025:25952256,513147,126483 +k106,36:10155862,11303025:184064 +k106,36:12225396,11303025:184063 +k106,36:13510465,11303025:184064 +k106,36:15112072,11303025:184063 +k106,36:16263447,11303025:184064 +k106,36:17493465,11303025:184063 +k106,36:19429306,11303025:184064 +k106,36:21456242,11303025:184064 +k106,36:23234141,11303025:184063 +k106,36:24985826,11303025:184064 +k106,36:26150963,11303025:184063 +k106,36:28516721,11303025:184064 +k106,36:29425612,11303025:184063 +k106,36:29822653,11303025:184049 +k106,36:32583029,11303025:0 +) +(106,37:6630773,12144513:25952256,513147,134348 +k106,36:8610519,12144513:144738 +k106,36:10590264,12144513:144737 +k106,36:12260680,12144513:144738 +k106,36:13596863,12144513:144738 +k106,36:15876763,12144513:144737 +k106,36:16969152,12144513:144738 +k106,36:18622529,12144513:144738 +k106,36:23595960,12144513:144738 +k106,36:23953635,12144513:144683 +k106,36:25074204,12144513:144738 +k106,36:28028470,12144513:144738 +k106,36:28824635,12144513:144737 +k106,36:30630711,12144513:144738 +k106,36:32583029,12144513:0 +) +(106,37:6630773,12986001:25952256,505283,134348 +k106,36:8336821,12986001:200686 +k106,36:11967005,12986001:200685 +k106,36:15454977,12986001:200686 +k106,36:19003242,12986001:200686 +k106,36:20707978,12986001:200685 +k106,36:22833456,12986001:200686 +k106,36:24736112,12986001:200686 +k106,36:28418725,12986001:200685 +k106,36:31391584,12986001:200686 +k106,36:32583029,12986001:0 +) +(106,37:6630773,13827489:25952256,513147,126483 +k106,36:10482979,13827489:151388 +k106,36:13662786,13827489:151388 +k106,36:14761825,13827489:151388 +k106,36:16664990,13827489:151388 +k106,36:18170352,13827489:151388 +k106,36:20594528,13827489:151387 +k106,36:24063348,13827489:151388 +k106,36:25024106,13827489:151388 +k106,36:27937837,13827489:151388 +k106,36:30753264,13827489:151388 +k106,36:31563944,13827489:151388 +k106,36:32583029,13827489:0 +) +(106,37:6630773,14668977:25952256,513147,134348 +k106,36:8356515,14668977:143703 +k106,36:12310480,14668977:143702 +k106,36:13694124,14668977:143703 +k106,36:16020830,14668977:143702 +k106,36:16850695,14668977:143703 +k106,36:19077131,14668977:143702 +k106,36:20168485,14668977:143703 +k106,36:21258527,14668977:143702 +k106,36:26312187,14668977:143703 +k106,36:27647334,14668977:143702 +k106,36:30468838,14668977:143703 +k106,36:32583029,14668977:0 +) +(106,37:6630773,15510465:25952256,513147,134348 +k106,36:7868148,15510465:218290 +k106,36:9969286,15510465:218289 +k106,36:12934845,15510465:218290 +k106,36:13812426,15510465:218289 +k106,36:15233957,15510465:218290 +k106,36:17034285,15510465:218289 +k106,36:19510290,15510465:218290 +k106,36:22170450,15510465:218289 +k106,36:23753855,15510465:218290 +k106,36:26498557,15510465:218289 +k106,36:29239328,15510465:218290 +k106,36:31391584,15510465:218289 +k106,36:32583029,15510465:0 +) +(106,37:6630773,16351953:25952256,513147,134348 +g106,36:8181354,16351953 +g106,36:9956069,16351953 +g106,36:11102949,16351953 +g106,36:12810817,16351953 +g106,36:14398099,16351953 +g106,36:15991279,16351953 +g106,36:18952851,16351953 +g106,36:21527105,16351953 +g106,36:22385626,16351953 +g106,36:23788096,16351953 +k106,37:32583029,16351953:6353062 +g106,37:32583029,16351953 +) +(106,38:6630773,19159521:25952256,32768,229376 +(106,38:6630773,19159521:0,32768,229376 +(106,38:6630773,19159521:5505024,32768,229376 +r106,38:12135797,19159521:5505024,262144,229376 +) +k106,38:6630773,19159521:-5505024 +) +(106,38:6630773,19159521:25952256,32768,0 +r106,38:32583029,19159521:25952256,32768,0 +) +) +(106,38:6630773,20763849:25952256,615776,9436 +(106,38:6630773,20763849:0,0,0 +g106,38:6630773,20763849 +) +g106,38:8987710,20763849 +g106,38:11114222,20763849 +g106,38:12150740,20763849 +g106,38:14471501,20763849 +g106,38:18144925,20763849 +k106,38:32583029,20763849:11444944 +g106,38:32583029,20763849 +) +(106,41:6630773,21998553:25952256,513147,134348 +k106,40:8259342,21998553:224788 +k106,40:10321761,21998553:224789 +k106,40:11538109,21998553:224788 +k106,40:13276123,21998553:224788 +k106,40:17125708,21998553:224789 +k106,40:18369581,21998553:224788 +k106,40:20176408,21998553:224788 +k106,40:21052625,21998553:224789 +k106,40:24134783,21998553:224788 +k106,40:26778505,21998553:224788 +k106,40:28287800,21998553:224789 +k106,40:30185722,21998553:224788 +k106,40:32583029,21998553:0 +) +(106,41:6630773,22840041:25952256,513147,134348 +k106,40:8355529,22840041:159101 +k106,40:9130668,22840041:159101 +k106,40:10308855,22840041:159102 +k106,40:13069735,22840041:159101 +k106,40:15673984,22840041:159101 +k106,40:16515970,22840041:159101 +k106,40:17959578,22840041:159102 +k106,40:20410473,22840041:159101 +k106,40:22763719,22840041:159101 +k106,40:25822133,22840041:159101 +k106,40:27548856,22840041:159102 +k106,40:28727042,22840041:159101 +k106,40:31107814,22840041:159101 +k106,40:32583029,22840041:0 +) +(106,41:6630773,23681529:25952256,513147,126483 +k106,40:7965217,23681529:174457 +k106,40:10841723,23681529:174457 +k106,40:12172889,23681529:174456 +k106,40:13006638,23681529:174457 +k106,40:14316179,23681529:174457 +k106,40:17252979,23681529:174457 +k106,40:19101881,23681529:174457 +k106,40:20560843,23681529:174456 +k106,40:23266956,23681529:174457 +k106,40:24460498,23681529:174457 +k106,40:26021041,23681529:174457 +k106,40:26854790,23681529:174457 +k106,40:27817644,23681529:174456 +k106,40:30741336,23681529:174457 +k106,40:31601955,23681529:174457 +k106,41:32583029,23681529:0 +) +(106,41:6630773,24523017:25952256,505283,7863 +g106,40:9151943,24523017 +k106,40:32583029,24523017:21388984 +g106,41:32583029,24523017 +) +(106,41:6630773,25885516:25952256,0,0 +g106,41:6630773,25885516 +) +(106,44:6630773,27038426:25952256,1087374,134348 +k106,43:8164809,27038426:324333 +k106,43:10725885,27038426:324332 +k106,43:14732030,27038426:324333 +k106,43:16893992,27038426:324332 +k106,43:19103796,27038426:324333 +k106,43:21799876,27038426:324332 +k106,43:25865659,27038426:324333 +k106,43:31391584,27038426:324332 +k106,43:32583029,27038426:0 +) +(106,44:6630773,27879914:25952256,513147,126483 +g106,43:8810500,27879914 +g106,43:9676885,27879914 +g106,43:10290957,27879914 +g106,43:11986373,27879914 +g106,43:12837030,27879914 +g106,43:14379092,27879914 +g106,43:15972272,27879914 +g106,43:16784263,27879914 +g106,43:18002577,27879914 +g106,43:18616649,27879914 +k106,43:32583029,27879914:11372465 +g106,44:32583029,27879914 +) +(106,44:6630773,29242413:25952256,0,0 +g106,44:6630773,29242413 +) +(106,47:6630773,30591931:25952256,1283982,196608 +(106,46:6630773,30591931:0,1283982,196608 +r106,46:9196018,30591931:2565245,1480590,196608 +k106,46:6630773,30591931:-2565245 +) +(106,46:6630773,30591931:2565245,1283982,196608 +) +k106,46:9397794,30591931:201776 +k106,46:11836314,30591931:201776 +k106,46:15069785,30591931:201776 +k106,46:18953373,30591931:201776 +k106,46:20992779,30591931:201776 +k106,46:23080027,30591931:201777 +k106,46:24414265,30591931:201776 +k106,46:26907835,30591931:201776 +k106,46:28759808,30591931:201776 +k106,46:30386992,30591931:201776 +k106,46:31240196,30591931:201776 +k106,46:32583029,30591931:0 +) +(106,47:6630773,31433419:25952256,513147,134348 +g106,46:8223953,31433419 +g106,46:10465939,31433419 +g106,46:13424889,31433419 +g106,46:16455929,31433419 +g106,46:18097605,31433419 +g106,46:20570933,31433419 +g106,46:24451974,31433419 +k106,46:32583029,31433419:6119755 +g106,47:32583029,31433419 +) +(106,47:6630773,32795918:25952256,0,0 +g106,47:6630773,32795918 +) +(106,50:6630773,33946990:25952256,1085536,298548 +(106,49:6630773,33946990:0,1085536,298548 +r106,49:8137188,33946990:1506415,1384084,298548 +k106,49:6630773,33946990:-1506415 +) +(106,49:6630773,33946990:1506415,1085536,298548 +) +k106,49:8339896,33946990:202708 +k106,49:10779349,33946990:202709 +k106,49:14191355,33946990:202708 +k106,49:15582886,33946990:202708 +k106,49:16444887,33946990:202709 +k106,49:20454581,33946990:202708 +k106,49:21941796,33946990:202709 +k106,49:23766520,33946990:202708 +k106,49:24716994,33946990:202708 +k106,49:28946890,33946990:202709 +k106,49:30847636,33946990:202708 +k106,50:32583029,33946990:0 +) +(106,50:6630773,34788478:25952256,513147,134348 +g106,49:8969753,34788478 +g106,49:11479126,34788478 +g106,49:13370495,34788478 +g106,49:16120385,34788478 +g106,49:18595024,34788478 +g106,49:19453545,34788478 +g106,49:20671859,34788478 +k106,49:32583029,34788478:8895203 +g106,50:32583029,34788478 +) +(106,50:6630773,36150977:25952256,0,0 +g106,50:6630773,36150977 +) +(106,53:6630773,37378398:25952256,1161885,196608 +(106,52:6630773,37378398:0,1161885,196608 +r106,52:8178409,37378398:1547636,1358493,196608 +k106,52:6630773,37378398:-1547636 +) +(106,52:6630773,37378398:1547636,1161885,196608 +) +k106,52:8317700,37378398:139291 +k106,52:10693735,37378398:139291 +k106,52:13522624,37378398:139291 +k106,52:17724492,37378398:139291 +k106,52:18523075,37378398:139291 +k106,52:21059672,37378398:139290 +k106,52:23217472,37378398:139291 +k106,52:24641269,37378398:139291 +k106,52:26117494,37378398:139291 +k106,52:28548579,37378398:139291 +k106,52:29858343,37378398:139291 +k106,52:30649062,37378398:139291 +k106,52:32583029,37378398:0 +) +(106,53:6630773,38219886:25952256,513147,134348 +k106,52:8269828,38219886:213647 +k106,52:11327738,38219886:213647 +k106,52:13426856,38219886:213647 +k106,52:14256542,38219886:213648 +k106,52:16803271,38219886:213647 +k106,52:18121200,38219886:213647 +k106,52:19082613,38219886:213647 +k106,52:21829882,38219886:213647 +k106,52:22852899,38219886:213647 +k106,52:24372679,38219886:213647 +k106,52:27162547,38219886:213648 +k106,52:28448363,38219886:213647 +k106,52:29313438,38219886:213647 +k106,52:31412556,38219886:213647 +k106,52:32583029,38219886:0 +) +(106,53:6630773,39061374:25952256,513147,126483 +g106,52:9010385,39061374 +g106,52:11220259,39061374 +g106,52:12032250,39061374 +g106,52:12587339,39061374 +g106,52:14240157,39061374 +g106,52:17128984,39061374 +g106,52:18927291,39061374 +g106,52:22405942,39061374 +g106,52:23999122,39061374 +g106,52:24554211,39061374 +g106,52:25922602,39061374 +g106,52:26781123,39061374 +g106,52:28888760,39061374 +g106,52:29770874,39061374 +k106,52:32583029,39061374:1678382 +g106,53:32583029,39061374 +) +(106,53:6630773,40423873:25952256,0,0 +g106,53:6630773,40423873 +) +(106,58:6630773,41511755:25952256,1022346,134348 +k106,55:8085911,41511755:199625 +k106,55:10522279,41511755:199624 +k106,55:11948083,41511755:199625 +k106,55:13985337,41511755:199624 +k106,55:17257945,41511755:199625 +k106,55:19790651,41511755:199624 +k106,55:23797262,41511755:199625 +k106,55:25063158,41511755:199625 +k106,55:27677128,41511755:199624 +k106,55:30098424,41511755:199625 +k106,55:30949476,41511755:199624 +k106,55:32168186,41511755:199625 +k106,58:32583029,41511755:0 +) +(106,58:6630773,42353243:25952256,505283,134348 +k106,55:32583028,42353243:22936288 +g106,58:32583028,42353243 +) +(106,58:6630773,43715742:25952256,0,0 +g106,58:6630773,43715742 +) +] +(1,94:32583029,45706769:0,0,0 +g1,94:32583029,45706769 +) +) +] +(1,94:6630773,47279633:25952256,0,0 +h1,94:6630773,47279633:25952256,0,0 +) +] +h1,94:4262630,4025873:0,0,0 +] +!17101 }11 !11 {12 -[1,122:4262630,47279633:28320399,43253760,0 -(1,122:4262630,4025873:0,0,0 -[1,122:-473657,4025873:25952256,0,0 -(1,122:-473657,-710414:25952256,0,0 -h1,122:-473657,-710414:0,0,0 -(1,122:-473657,-710414:0,0,0 -(1,122:-473657,-710414:0,0,0 -g1,122:-473657,-710414 -(1,122:-473657,-710414:65781,0,65781 -g1,122:-407876,-710414 -[1,122:-407876,-644633:0,0,0 +[1,128:4262630,47279633:28320399,43253760,0 +(1,128:4262630,4025873:0,0,0 +[1,128:-473657,4025873:25952256,0,0 +(1,128:-473657,-710414:25952256,0,0 +h1,128:-473657,-710414:0,0,0 +(1,128:-473657,-710414:0,0,0 +(1,128:-473657,-710414:0,0,0 +g1,128:-473657,-710414 +(1,128:-473657,-710414:65781,0,65781 +g1,128:-407876,-710414 +[1,128:-407876,-644633:0,0,0 ] ) -k1,122:-473657,-710414:-65781 +k1,128:-473657,-710414:-65781 ) ) -k1,122:25478599,-710414:25952256 -g1,122:25478599,-710414 +k1,128:25478599,-710414:25952256 +g1,128:25478599,-710414 ) ] ) -[1,122:6630773,47279633:25952256,43253760,0 -[1,122:6630773,4812305:25952256,786432,0 -(1,122:6630773,4812305:25952256,0,0 -(1,122:6630773,4812305:25952256,0,0 -g1,122:3078558,4812305 -[1,122:3078558,4812305:0,0,0 -(1,122:3078558,2439708:0,1703936,0 -k1,122:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,122:2537886,2439708:1179648,16384,0 +[1,128:6630773,47279633:25952256,43253760,0 +[1,128:6630773,4812305:25952256,786432,0 +(1,128:6630773,4812305:25952256,0,0 +(1,128:6630773,4812305:25952256,0,0 +g1,128:3078558,4812305 +[1,128:3078558,4812305:0,0,0 +(1,128:3078558,2439708:0,1703936,0 +k1,128:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,128:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,122:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,128:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,122:3078558,4812305:0,0,0 -(1,122:3078558,2439708:0,1703936,0 -g1,122:29030814,2439708 -g1,122:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,122:36151628,1915420:16384,1179648,0 +[1,128:3078558,4812305:0,0,0 +(1,128:3078558,2439708:0,1703936,0 +g1,128:29030814,2439708 +g1,128:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,128:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,122:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,128:37855564,2439708:1179648,16384,0 ) ) -k1,122:3078556,2439708:-34777008 +k1,128:3078556,2439708:-34777008 ) ] -[1,122:3078558,4812305:0,0,0 -(1,122:3078558,49800853:0,16384,2228224 -k1,122:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,122:2537886,49800853:1179648,16384,0 +[1,128:3078558,4812305:0,0,0 +(1,128:3078558,49800853:0,16384,2228224 +k1,128:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,128:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,122:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,128:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,122:3078558,4812305:0,0,0 -(1,122:3078558,49800853:0,16384,2228224 -g1,122:29030814,49800853 -g1,122:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,122:36151628,51504789:16384,1179648,0 +[1,128:3078558,4812305:0,0,0 +(1,128:3078558,49800853:0,16384,2228224 +g1,128:29030814,49800853 +g1,128:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,128:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,122:37855564,49800853:1179648,16384,0 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,128:37855564,49800853:1179648,16384,0 ) ) -k1,122:3078556,49800853:-34777008 +k1,128:3078556,49800853:-34777008 ) ] -g1,122:6630773,4812305 +g1,128:6630773,4812305 ) ) ] -[1,122:6630773,45706769:25952256,40108032,0 -(1,122:6630773,45706769:25952256,40108032,0 -(1,122:6630773,45706769:0,0,0 -g1,122:6630773,45706769 +[1,128:6630773,45706769:25952256,40108032,0 +(1,128:6630773,45706769:25952256,40108032,0 +(1,128:6630773,45706769:0,0,0 +g1,128:6630773,45706769 ) -[1,122:6630773,45706769:25952256,40108032,0 -[1,99:6630773,11644859:25952256,6046122,0 -(1,99:6630773,6614283:25952256,1146618,0 -h1,99:6630773,6614283:0,0,0 -k1,99:20096848,6614283:12486181 -k1,99:32583029,6614283:12486181 +[1,128:6630773,45706769:25952256,40108032,0 +[1,105:6630773,11644859:25952256,6046122,0 +(1,105:6630773,6614283:25952256,1146618,0 +h1,105:6630773,6614283:0,0,0 +k1,105:20096848,6614283:12486181 +k1,105:32583029,6614283:12486181 ) -(1,99:6630773,7314219:25952256,32768,229376 -(1,99:6630773,7314219:0,32768,229376 -(1,99:6630773,7314219:5505024,32768,229376 -r1,99:12135797,7314219:5505024,262144,229376 +(1,105:6630773,7314219:25952256,32768,229376 +(1,105:6630773,7314219:0,32768,229376 +(1,105:6630773,7314219:5505024,32768,229376 +r1,105:12135797,7314219:5505024,262144,229376 ) -k1,99:6630773,7314219:-5505024 +k1,105:6630773,7314219:-5505024 ) -(1,99:6630773,7314219:25952256,32768,0 -r1,99:32583029,7314219:25952256,32768,0 +(1,105:6630773,7314219:25952256,32768,0 +r1,105:32583029,7314219:25952256,32768,0 ) ) -(1,99:6630773,9109915:25952256,909509,241827 -h1,99:6630773,9109915:0,0,0 -g1,99:8111231,9109915 -g1,99:10244035,9109915 -g1,99:15896908,9109915 -g1,99:18434331,9109915 -g1,99:20567135,9109915 -k1,99:29088912,9109915:3494117 -k1,99:32583029,9109915:3494117 +(1,105:6630773,9109915:25952256,909509,241827 +h1,105:6630773,9109915:0,0,0 +g1,105:8111231,9109915 +g1,105:10607366,9109915 +g1,105:16260239,9109915 +g1,105:18797662,9109915 +g1,105:20930466,9109915 +k1,105:29270578,9109915:3312452 +k1,105:32583029,9109915:3312451 ) -(1,99:6630773,9809851:25952256,32768,0 -(1,99:6630773,9809851:5505024,32768,0 -r1,99:12135797,9809851:5505024,32768,0 +(1,105:6630773,9809851:25952256,32768,0 +(1,105:6630773,9809851:5505024,32768,0 +r1,105:12135797,9809851:5505024,32768,0 ) -k1,99:22359413,9809851:10223616 -k1,99:32583029,9809851:10223616 -) -] -(1,101:6630773,14537624:25952256,131072,0 -r1,101:32583029,14537624:25952256,131072,0 -g1,101:32583029,14537624 -g1,101:32583029,14537624 -) -(1,103:6630773,15857525:25952256,513147,134348 -k1,103:8596853,15857525:1966080 -k1,102:9474380,15857525:249692 -k1,102:10079932,15857525:249692 -k1,102:12159390,15857525:249693 -k1,102:13068374,15857525:249692 -k1,102:13973426,15857525:249692 -k1,102:17296101,15857525:249692 -k1,102:20313378,15857525:249692 -k1,102:21510721,15857525:249692 -k1,102:23410611,15857525:249693 -k1,102:24319595,15857525:249692 -k1,102:28106265,15857525:249692 -k1,102:29512667,15857525:249692 -k1,102:32583029,15857525:1966080 -) -(1,103:6630773,16699013:25952256,513147,134348 -k1,103:8596853,16699013:1966080 -k1,102:10084708,16699013:210558 -k1,102:11872717,16699013:210557 -k1,102:12742567,16699013:210558 -k1,102:13972210,16699013:210558 -k1,102:15804129,16699013:210558 -k1,102:23138449,16699013:210557 -k1,102:25524802,16699013:210558 -k1,102:32583029,16699013:1966080 -) -(1,103:6630773,17540501:25952256,513147,134348 -g1,103:8596853,17540501 -g1,102:10363703,17540501 -g1,102:11582017,17540501 -g1,102:14358777,17540501 -g1,102:15217298,17540501 -g1,102:17000532,17540501 -k1,103:30616949,17540501:10683681 -g1,103:32583029,17540501 -) -(1,104:6630773,19168421:25952256,505283,134348 -k1,104:20158061,19168421:13527288 -h1,104:20158061,19168421:0,0,0 -g1,104:22016662,19168421 -g1,104:22995769,19168421 -g1,104:26470487,19168421 -g1,104:27861161,19168421 -g1,104:29300331,19168421 -g1,104:30616949,19168421 -g1,104:32583029,19168421 -) -(1,105:6630773,20009909:25952256,513147,134348 -k1,105:19372939,20009909:12742166 -h1,104:19372939,20009909:0,0,0 -g1,104:20759680,20009909 -g1,104:23444690,20009909 -g1,104:24259957,20009909 -g1,104:29023113,20009909 -g1,105:30616949,20009909 -g1,105:32583029,20009909 -) -(1,105:6630773,21244613:25952256,131072,0 -r1,105:32583029,21244613:25952256,131072,0 -g1,105:32583029,21244613 -g1,105:34549109,21244613 -) -(1,108:6630773,24052181:25952256,32768,229376 -(1,108:6630773,24052181:0,32768,229376 -(1,108:6630773,24052181:5505024,32768,229376 -r1,108:12135797,24052181:5505024,262144,229376 -) -k1,108:6630773,24052181:-5505024 -) -(1,108:6630773,24052181:25952256,32768,0 -r1,108:32583029,24052181:25952256,32768,0 -) -) -(1,108:6630773,25656509:25952256,615776,151780 -(1,108:6630773,25656509:1974731,573309,0 -g1,108:6630773,25656509 -g1,108:8605504,25656509 -) -g1,108:10904245,25656509 -g1,108:11961996,25656509 -g1,108:13695292,25656509 -k1,108:32583029,25656509:15886712 -g1,108:32583029,25656509 -) -(1,111:6630773,26891213:25952256,513147,134348 -k1,110:7435742,26891213:177134 -k1,110:8816118,26891213:177135 -k1,110:11410875,26891213:177134 -k1,110:12758482,26891213:177134 -k1,110:14068079,26891213:177135 -k1,110:15856743,26891213:177134 -k1,110:17726017,26891213:177134 -k1,110:19444559,26891213:177135 -k1,110:21444249,26891213:177134 -k1,110:22640469,26891213:177135 -k1,110:25064833,26891213:177134 -k1,110:26433412,26891213:177134 -k1,110:28699179,26891213:177135 -k1,110:30383641,26891213:177134 -k1,110:32583029,26891213:0 -) -(1,111:6630773,27732701:25952256,505283,134348 -k1,110:7858438,27732701:208580 -k1,110:8481852,27732701:208571 -k1,110:11706400,27732701:208581 -k1,110:12703378,27732701:208580 -k1,110:17968717,27732701:208581 -k1,110:18793335,27732701:208580 -k1,110:20021000,27732701:208580 -k1,110:20644414,27732701:208571 -k1,110:23768692,27732701:208581 -k1,110:25168717,27732701:208580 -k1,110:26707678,27732701:208580 -k1,110:27374356,27732701:208581 -k1,110:28114433,27732701:208580 -k1,110:29836240,27732701:208581 -k1,110:30660858,27732701:208580 -k1,110:32583029,27732701:0 -) -(1,111:6630773,28574189:25952256,513147,134348 -k1,110:9384596,28574189:216269 -k1,110:11298903,28574189:216269 -k1,110:13550719,28574189:216268 -k1,110:14379750,28574189:216269 -k1,110:14951879,28574189:216269 -k1,110:18418077,28574189:216268 -k1,110:19888050,28574189:216269 -k1,110:21236781,28574189:216269 -k1,110:23064580,28574189:216269 -k1,110:24299934,28574189:216269 -k1,110:27702562,28574189:216268 -k1,110:30554034,28574189:216269 -k1,110:32583029,28574189:0 -) -(1,111:6630773,29415677:25952256,513147,134348 -k1,110:10392486,29415677:271921 -k1,110:14764996,29415677:271922 -k1,110:17439467,29415677:271921 -k1,110:19163010,29415677:271921 -k1,110:21518976,29415677:271921 -k1,110:24664652,29415677:271922 -k1,110:26504194,29415677:271921 -k1,110:27190885,29415677:271848 -k1,110:28272176,29415677:271921 -k1,110:29563183,29415677:271922 -k1,110:31896867,29415677:271921 -k1,110:32583029,29415677:0 -) -(1,111:6630773,30257165:25952256,513147,134348 -k1,110:8072196,30257165:270950 -k1,110:9729231,30257165:270949 -k1,110:12068497,30257165:270950 -k1,110:14074840,30257165:270950 -k1,110:14760561,30257165:270878 -k1,110:17192887,30257165:270949 -k1,110:18115265,30257165:270950 -k1,110:20798595,30257165:270950 -k1,110:21425404,30257165:270949 -k1,110:23318370,30257165:270950 -k1,110:25474791,30257165:270950 -k1,110:27466716,30257165:270950 -k1,110:29910839,30257165:270949 -k1,110:31129440,30257165:270950 -k1,110:32583029,30257165:0 -) -(1,111:6630773,31098653:25952256,505283,126483 -g1,110:10145468,31098653 -g1,110:11106225,31098653 -g1,110:12324539,31098653 -k1,111:32583029,31098653:18703976 -g1,111:32583029,31098653 -) -(1,113:6630773,31940141:25952256,513147,134348 -h1,112:6630773,31940141:983040,0,0 -k1,112:7972771,31940141:145966 -k1,112:9251253,31940141:146020 -k1,112:12066553,31940141:146019 -k1,112:13231657,31940141:146019 -k1,112:16946768,31940141:146020 -k1,112:18284232,31940141:146019 -k1,112:22951580,31940141:146019 -k1,112:23756891,31940141:146019 -k1,112:26104921,31940141:146020 -k1,112:29410431,31940141:146019 -k1,112:32583029,31940141:0 -) -(1,113:6630773,32781629:25952256,513147,126483 -k1,112:8386160,32781629:261821 -k1,112:9334144,32781629:261822 -k1,112:10010745,32781629:261758 -k1,112:13453685,32781629:261822 -k1,112:14366934,32781629:261821 -k1,112:18668395,32781629:261822 -k1,112:20311060,32781629:261821 -k1,112:23713366,32781629:261821 -k1,112:24661350,32781629:261822 -k1,112:28228152,32781629:261821 -k1,112:30003200,32781629:261822 -k1,112:30881059,32781629:261821 -k1,112:32583029,32781629:0 -) -(1,113:6630773,33623117:25952256,513147,126483 -k1,112:9728210,33623117:243999 -k1,112:12731275,33623117:243999 -k1,112:14166719,33623117:243999 -k1,112:18296347,33623117:243998 -k1,112:19826162,33623117:243999 -k1,112:21464112,33623117:243999 -k1,112:22296624,33623117:243999 -k1,112:22753570,33623117:243954 -k1,112:24130031,33623117:243999 -k1,112:26735291,33623117:243998 -k1,112:27998375,33623117:243999 -k1,112:29477728,33623117:243999 -k1,112:30381019,33623117:243999 -k1,112:32583029,33623117:0 -) -(1,113:6630773,34464605:25952256,513147,134348 -g1,112:10002600,34464605 -g1,112:10817867,34464605 -g1,112:12036181,34464605 -g1,112:13589384,34464605 -g1,112:16997911,34464605 -g1,112:19961449,34464605 -g1,112:20819970,34464605 -g1,112:25754831,34464605 -g1,112:26613352,34464605 -g1,112:28201944,34464605 -k1,113:32583029,34464605:1506676 -g1,113:32583029,34464605 -) -(1,115:6630773,35306093:25952256,513147,126483 -h1,114:6630773,35306093:983040,0,0 -k1,114:9909942,35306093:193734 -k1,114:11274150,35306093:193735 -k1,114:12600346,35306093:193734 -k1,114:14405611,35306093:193735 -k1,114:16421901,35306093:193734 -k1,114:17634720,35306093:193734 -k1,114:20590798,35306093:193735 -k1,114:22500920,35306093:193734 -k1,114:23886099,35306093:193734 -k1,114:26519084,35306093:193735 -k1,114:27372110,35306093:193734 -k1,114:28953898,35306093:193735 -k1,114:31931601,35306093:193734 -k1,115:32583029,35306093:0 -) -(1,115:6630773,36147581:25952256,513147,102891 -g1,114:7244845,36147581 -g1,114:9328889,36147581 -g1,114:10719563,36147581 -g1,114:12249173,36147581 -g1,114:13099830,36147581 -g1,114:14634027,36147581 -g1,114:16548989,36147581 -g1,114:17840703,36147581 -g1,114:18699224,36147581 -k1,115:32583029,36147581:12071079 -g1,115:32583029,36147581 -) -(1,116:6630773,38955149:25952256,32768,229376 -(1,116:6630773,38955149:0,32768,229376 -(1,116:6630773,38955149:5505024,32768,229376 -r1,116:12135797,38955149:5505024,262144,229376 -) -k1,116:6630773,38955149:-5505024 -) -(1,116:6630773,38955149:25952256,32768,0 -r1,116:32583029,38955149:25952256,32768,0 -) -) -(1,116:6630773,40559477:25952256,582746,0 -(1,116:6630773,40559477:1974731,582746,0 -g1,116:6630773,40559477 -g1,116:8605504,40559477 -) -k1,116:32583029,40559477:23411294 -g1,116:32583029,40559477 -) -(1,118:6630773,41864305:25952256,555811,8650 -(1,118:6630773,41864305:2450326,534184,0 -g1,118:6630773,41864305 -g1,118:9081099,41864305 -) -g1,118:11147187,41864305 -g1,118:11984148,41864305 -k1,118:32583030,41864305:19715784 -g1,118:32583030,41864305 -) -(1,122:6630773,43099009:25952256,513147,134348 -k1,120:8358024,43099009:181912 -k1,120:10675753,43099009:181911 -k1,120:12538008,43099009:181912 -k1,121:12538008,43099009:7864 -k1,121:13387076,43099009:181912 -k1,121:13983814,43099009:181895 -k1,121:14851887,43099009:181911 -k1,121:15389659,43099009:181912 -k1,121:18647831,43099009:181912 -k1,121:21745439,43099009:181911 -k1,121:22342177,43099009:181895 -k1,121:23055586,43099009:181912 -k1,121:25389700,43099009:181912 -k1,121:25927471,43099009:181911 -k1,121:29185643,43099009:181912 -k1,122:32583029,43099009:0 -) -(1,122:6630773,43940497:25952256,513147,134348 -k1,121:7259871,43940497:273238 -k1,121:9183307,43940497:273239 -k1,121:10115837,43940497:273238 -k1,121:13803501,43940497:273238 -k1,121:15148908,43940497:273238 -k1,121:15880244,43940497:273239 -k1,121:16684979,43940497:273238 -k1,121:18244033,43940497:273238 -k1,121:18873132,43940497:273239 -k1,121:22222630,43940497:273238 -k1,121:25511835,43940497:273238 -k1,121:29986586,43940497:273238 -k1,121:30875863,43940497:273239 -k1,121:32168186,43940497:273238 -k1,122:32583029,43940497:0 -) -(1,122:6630773,44781985:25952256,513147,134348 -k1,121:9767729,44781985:221259 -k1,121:11564475,44781985:221260 -k1,121:12988975,44781985:221259 -k1,121:14925968,44781985:221260 -k1,121:15503087,44781985:221259 -k1,121:19237732,44781985:221260 -k1,121:20754638,44781985:221259 -k1,121:22525169,44781985:221260 -k1,121:25301021,44781985:221259 -k1,121:26390633,44781985:221260 -k1,121:27803337,44781985:221259 -k1,121:29400198,44781985:221260 -k1,121:30778167,44781985:221259 -k1,122:32583029,44781985:0 -) -(1,122:6630773,45623473:25952256,513147,134348 -k1,121:9004487,45623473:174981 -k1,121:14236226,45623473:174981 -k1,121:15078364,45623473:174982 -k1,121:15841858,45623473:174981 -k1,121:17035924,45623473:174981 -k1,121:19952931,45623473:174981 -k1,121:20716425,45623473:174981 -k1,121:23602631,45623473:174982 -k1,121:26250285,45623473:174981 -k1,121:31482024,45623473:174981 -k1,121:32583029,45623473:0 -) -] -(1,122:32583029,45706769:0,0,0 -g1,122:32583029,45706769 -) -) -] -(1,122:6630773,47279633:25952256,477757,0 -(1,122:6630773,47279633:25952256,477757,0 -(1,122:6630773,47279633:0,0,0 -v1,122:6630773,47279633:0,0,0 -) -g1,122:6830002,47279633 -k1,122:32184570,47279633:25354568 -) -) -] -h1,122:4262630,4025873:0,0,0 -] -!14685 +k1,105:22359413,9809851:10223616 +k1,105:32583029,9809851:10223616 +) +] +(1,107:6630773,14537624:25952256,131072,0 +r1,107:32583029,14537624:25952256,131072,0 +g1,107:32583029,14537624 +g1,107:32583029,14537624 +) +(1,109:6630773,15857525:25952256,513147,134348 +k1,109:8596853,15857525:1966080 +k1,108:9474380,15857525:249692 +k1,108:10079932,15857525:249692 +k1,108:12159390,15857525:249693 +k1,108:13068374,15857525:249692 +k1,108:13973426,15857525:249692 +k1,108:17296101,15857525:249692 +k1,108:20313378,15857525:249692 +k1,108:21510721,15857525:249692 +k1,108:23410611,15857525:249693 +k1,108:24319595,15857525:249692 +k1,108:28106265,15857525:249692 +k1,108:29512667,15857525:249692 +k1,108:32583029,15857525:1966080 +) +(1,109:6630773,16699013:25952256,513147,134348 +k1,109:8596853,16699013:1966080 +k1,108:10084708,16699013:210558 +k1,108:11872717,16699013:210557 +k1,108:12742567,16699013:210558 +k1,108:13972210,16699013:210558 +k1,108:15804129,16699013:210558 +k1,108:23138449,16699013:210557 +k1,108:25524802,16699013:210558 +k1,108:32583029,16699013:1966080 +) +(1,109:6630773,17540501:25952256,513147,134348 +g1,109:8596853,17540501 +g1,108:10363703,17540501 +g1,108:11582017,17540501 +g1,108:14358777,17540501 +g1,108:15217298,17540501 +g1,108:17000532,17540501 +k1,109:30616949,17540501:10683681 +g1,109:32583029,17540501 +) +(1,110:6630773,19168421:25952256,505283,134348 +k1,110:20158061,19168421:13527288 +h1,110:20158061,19168421:0,0,0 +g1,110:22016662,19168421 +g1,110:22995769,19168421 +g1,110:26470487,19168421 +g1,110:27861161,19168421 +g1,110:29300331,19168421 +g1,110:30616949,19168421 +g1,110:32583029,19168421 +) +(1,111:6630773,20009909:25952256,513147,134348 +k1,111:19372939,20009909:12742166 +h1,110:19372939,20009909:0,0,0 +g1,110:20759680,20009909 +g1,110:23444690,20009909 +g1,110:24259957,20009909 +g1,110:29023113,20009909 +g1,111:30616949,20009909 +g1,111:32583029,20009909 +) +(1,111:6630773,21244613:25952256,131072,0 +r1,111:32583029,21244613:25952256,131072,0 +g1,111:32583029,21244613 +g1,111:34549109,21244613 +) +(1,114:6630773,24052181:25952256,32768,229376 +(1,114:6630773,24052181:0,32768,229376 +(1,114:6630773,24052181:5505024,32768,229376 +r1,114:12135797,24052181:5505024,262144,229376 +) +k1,114:6630773,24052181:-5505024 +) +(1,114:6630773,24052181:25952256,32768,0 +r1,114:32583029,24052181:25952256,32768,0 +) +) +(1,114:6630773,25656509:25952256,615776,151780 +(1,114:6630773,25656509:1974731,573309,0 +g1,114:6630773,25656509 +g1,114:8605504,25656509 +) +g1,114:10904245,25656509 +g1,114:11961996,25656509 +g1,114:13695292,25656509 +k1,114:32583029,25656509:15886712 +g1,114:32583029,25656509 +) +(1,117:6630773,26891213:25952256,513147,134348 +k1,116:7435742,26891213:177134 +k1,116:8816118,26891213:177135 +k1,116:11410875,26891213:177134 +k1,116:12758482,26891213:177134 +k1,116:14068079,26891213:177135 +k1,116:15856743,26891213:177134 +k1,116:17726017,26891213:177134 +k1,116:19444559,26891213:177135 +k1,116:21444249,26891213:177134 +k1,116:22640469,26891213:177135 +k1,116:25064833,26891213:177134 +k1,116:26433412,26891213:177134 +k1,116:28699179,26891213:177135 +k1,116:30383641,26891213:177134 +k1,116:32583029,26891213:0 +) +(1,117:6630773,27732701:25952256,505283,134348 +k1,116:7858438,27732701:208580 +k1,116:8481852,27732701:208571 +k1,116:11706400,27732701:208581 +k1,116:12703378,27732701:208580 +k1,116:17968717,27732701:208581 +k1,116:18793335,27732701:208580 +k1,116:20021000,27732701:208580 +k1,116:20644414,27732701:208571 +k1,116:23768692,27732701:208581 +k1,116:25168717,27732701:208580 +k1,116:26707678,27732701:208580 +k1,116:27374356,27732701:208581 +k1,116:28114433,27732701:208580 +k1,116:29836240,27732701:208581 +k1,116:30660858,27732701:208580 +k1,116:32583029,27732701:0 +) +(1,117:6630773,28574189:25952256,513147,134348 +k1,116:9384596,28574189:216269 +k1,116:11298903,28574189:216269 +k1,116:13550719,28574189:216268 +k1,116:14379750,28574189:216269 +k1,116:14951879,28574189:216269 +k1,116:18418077,28574189:216268 +k1,116:19888050,28574189:216269 +k1,116:21236781,28574189:216269 +k1,116:23064580,28574189:216269 +k1,116:24299934,28574189:216269 +k1,116:27702562,28574189:216268 +k1,116:30554034,28574189:216269 +k1,116:32583029,28574189:0 +) +(1,117:6630773,29415677:25952256,513147,134348 +k1,116:10392486,29415677:271921 +k1,116:14764996,29415677:271922 +k1,116:17439467,29415677:271921 +k1,116:19163010,29415677:271921 +k1,116:21518976,29415677:271921 +k1,116:24664652,29415677:271922 +k1,116:26504194,29415677:271921 +k1,116:27190885,29415677:271848 +k1,116:28272176,29415677:271921 +k1,116:29563183,29415677:271922 +k1,116:31896867,29415677:271921 +k1,116:32583029,29415677:0 +) +(1,117:6630773,30257165:25952256,513147,134348 +k1,116:8072196,30257165:270950 +k1,116:9729231,30257165:270949 +k1,116:12068497,30257165:270950 +k1,116:14074840,30257165:270950 +k1,116:14760561,30257165:270878 +k1,116:17192887,30257165:270949 +k1,116:18115265,30257165:270950 +k1,116:20798595,30257165:270950 +k1,116:21425404,30257165:270949 +k1,116:23318370,30257165:270950 +k1,116:25474791,30257165:270950 +k1,116:27466716,30257165:270950 +k1,116:29910839,30257165:270949 +k1,116:31129440,30257165:270950 +k1,116:32583029,30257165:0 +) +(1,117:6630773,31098653:25952256,505283,126483 +g1,116:10145468,31098653 +g1,116:11106225,31098653 +g1,116:12324539,31098653 +k1,117:32583029,31098653:18703976 +g1,117:32583029,31098653 +) +(1,119:6630773,31940141:25952256,513147,134348 +h1,118:6630773,31940141:983040,0,0 +k1,118:7972771,31940141:145966 +k1,118:9251253,31940141:146020 +k1,118:12066553,31940141:146019 +k1,118:13231657,31940141:146019 +k1,118:16946768,31940141:146020 +k1,118:18284232,31940141:146019 +k1,118:22951580,31940141:146019 +k1,118:23756891,31940141:146019 +k1,118:26104921,31940141:146020 +k1,118:29410431,31940141:146019 +k1,118:32583029,31940141:0 +) +(1,119:6630773,32781629:25952256,513147,126483 +k1,118:8386160,32781629:261821 +k1,118:9334144,32781629:261822 +k1,118:10010745,32781629:261758 +k1,118:13453685,32781629:261822 +k1,118:14366934,32781629:261821 +k1,118:18668395,32781629:261822 +k1,118:20311060,32781629:261821 +k1,118:23713366,32781629:261821 +k1,118:24661350,32781629:261822 +k1,118:28228152,32781629:261821 +k1,118:30003200,32781629:261822 +k1,118:30881059,32781629:261821 +k1,118:32583029,32781629:0 +) +(1,119:6630773,33623117:25952256,513147,126483 +k1,118:9728210,33623117:243999 +k1,118:12731275,33623117:243999 +k1,118:14166719,33623117:243999 +k1,118:18296347,33623117:243998 +k1,118:19826162,33623117:243999 +k1,118:21464112,33623117:243999 +k1,118:22296624,33623117:243999 +k1,118:22753570,33623117:243954 +k1,118:24130031,33623117:243999 +k1,118:26735291,33623117:243998 +k1,118:27998375,33623117:243999 +k1,118:29477728,33623117:243999 +k1,118:30381019,33623117:243999 +k1,118:32583029,33623117:0 +) +(1,119:6630773,34464605:25952256,513147,134348 +g1,118:10002600,34464605 +g1,118:10817867,34464605 +g1,118:12036181,34464605 +g1,118:13589384,34464605 +g1,118:16997911,34464605 +g1,118:19961449,34464605 +g1,118:20819970,34464605 +g1,118:25754831,34464605 +g1,118:26613352,34464605 +g1,118:28201944,34464605 +k1,119:32583029,34464605:1506676 +g1,119:32583029,34464605 +) +(1,121:6630773,35306093:25952256,513147,126483 +h1,120:6630773,35306093:983040,0,0 +k1,120:9909942,35306093:193734 +k1,120:11274150,35306093:193735 +k1,120:12600346,35306093:193734 +k1,120:14405611,35306093:193735 +k1,120:16421901,35306093:193734 +k1,120:17634720,35306093:193734 +k1,120:20590798,35306093:193735 +k1,120:22500920,35306093:193734 +k1,120:23886099,35306093:193734 +k1,120:26519084,35306093:193735 +k1,120:27372110,35306093:193734 +k1,120:28953898,35306093:193735 +k1,120:31931601,35306093:193734 +k1,121:32583029,35306093:0 +) +(1,121:6630773,36147581:25952256,513147,102891 +g1,120:7244845,36147581 +g1,120:9328889,36147581 +g1,120:10719563,36147581 +g1,120:12249173,36147581 +g1,120:13099830,36147581 +g1,120:14634027,36147581 +g1,120:16548989,36147581 +g1,120:17840703,36147581 +g1,120:18699224,36147581 +k1,121:32583029,36147581:12071079 +g1,121:32583029,36147581 +) +(1,122:6630773,38955149:25952256,32768,229376 +(1,122:6630773,38955149:0,32768,229376 +(1,122:6630773,38955149:5505024,32768,229376 +r1,122:12135797,38955149:5505024,262144,229376 +) +k1,122:6630773,38955149:-5505024 +) +(1,122:6630773,38955149:25952256,32768,0 +r1,122:32583029,38955149:25952256,32768,0 +) +) +(1,122:6630773,40559477:25952256,582746,0 +(1,122:6630773,40559477:1974731,582746,0 +g1,122:6630773,40559477 +g1,122:8605504,40559477 +) +k1,122:32583029,40559477:23411294 +g1,122:32583029,40559477 +) +(1,124:6630773,41864305:25952256,555811,8650 +(1,124:6630773,41864305:2450326,534184,0 +g1,124:6630773,41864305 +g1,124:9081099,41864305 +) +g1,124:11147187,41864305 +g1,124:11984148,41864305 +k1,124:32583030,41864305:19715784 +g1,124:32583030,41864305 +) +(1,128:6630773,43099009:25952256,513147,134348 +k1,126:8358024,43099009:181912 +k1,126:10675753,43099009:181911 +k1,126:12538008,43099009:181912 +k1,127:12538008,43099009:7864 +k1,127:13387076,43099009:181912 +k1,127:13983814,43099009:181895 +k1,127:14851887,43099009:181911 +k1,127:15389659,43099009:181912 +k1,127:18647831,43099009:181912 +k1,127:21745439,43099009:181911 +k1,127:22342177,43099009:181895 +k1,127:23055586,43099009:181912 +k1,127:25389700,43099009:181912 +k1,127:25927471,43099009:181911 +k1,127:29185643,43099009:181912 +k1,128:32583029,43099009:0 +) +(1,128:6630773,43940497:25952256,513147,134348 +k1,127:7259871,43940497:273238 +k1,127:9183307,43940497:273239 +k1,127:10115837,43940497:273238 +k1,127:13803501,43940497:273238 +k1,127:15148908,43940497:273238 +k1,127:15880244,43940497:273239 +k1,127:16684979,43940497:273238 +k1,127:18244033,43940497:273238 +k1,127:18873132,43940497:273239 +k1,127:22222630,43940497:273238 +k1,127:25511835,43940497:273238 +k1,127:29986586,43940497:273238 +k1,127:30875863,43940497:273239 +k1,127:32168186,43940497:273238 +k1,128:32583029,43940497:0 +) +(1,128:6630773,44781985:25952256,513147,134348 +k1,127:9767729,44781985:221259 +k1,127:11564475,44781985:221260 +k1,127:12988975,44781985:221259 +k1,127:14925968,44781985:221260 +k1,127:15503087,44781985:221259 +k1,127:19237732,44781985:221260 +k1,127:20754638,44781985:221259 +k1,127:22525169,44781985:221260 +k1,127:25301021,44781985:221259 +k1,127:26390633,44781985:221260 +k1,127:27803337,44781985:221259 +k1,127:29400198,44781985:221260 +k1,127:30778167,44781985:221259 +k1,128:32583029,44781985:0 +) +(1,128:6630773,45623473:25952256,513147,134348 +k1,127:9004487,45623473:174981 +k1,127:14236226,45623473:174981 +k1,127:15078364,45623473:174982 +k1,127:15841858,45623473:174981 +k1,127:17035924,45623473:174981 +k1,127:19952931,45623473:174981 +k1,127:20716425,45623473:174981 +k1,127:23602631,45623473:174982 +k1,127:26250285,45623473:174981 +k1,127:31482024,45623473:174981 +k1,127:32583029,45623473:0 +) +] +(1,128:32583029,45706769:0,0,0 +g1,128:32583029,45706769 +) +) +] +(1,128:6630773,47279633:25952256,477757,0 +(1,128:6630773,47279633:25952256,477757,0 +(1,128:6630773,47279633:0,0,0 +v1,128:6630773,47279633:0,0,0 +) +g1,128:6830002,47279633 +k1,128:32184570,47279633:25354568 +) +) +] +h1,128:4262630,4025873:0,0,0 +] +!14747 }12 !11 {13 -[1,136:4262630,47279633:28320399,43253760,0 -(1,136:4262630,4025873:0,0,0 -[1,136:-473657,4025873:25952256,0,0 -(1,136:-473657,-710414:25952256,0,0 -h1,136:-473657,-710414:0,0,0 -(1,136:-473657,-710414:0,0,0 -(1,136:-473657,-710414:0,0,0 -g1,136:-473657,-710414 -(1,136:-473657,-710414:65781,0,65781 -g1,136:-407876,-710414 -[1,136:-407876,-644633:0,0,0 +[1,142:4262630,47279633:28320399,43253760,0 +(1,142:4262630,4025873:0,0,0 +[1,142:-473657,4025873:25952256,0,0 +(1,142:-473657,-710414:25952256,0,0 +h1,142:-473657,-710414:0,0,0 +(1,142:-473657,-710414:0,0,0 +(1,142:-473657,-710414:0,0,0 +g1,142:-473657,-710414 +(1,142:-473657,-710414:65781,0,65781 +g1,142:-407876,-710414 +[1,142:-407876,-644633:0,0,0 ] ) -k1,136:-473657,-710414:-65781 +k1,142:-473657,-710414:-65781 ) ) -k1,136:25478599,-710414:25952256 -g1,136:25478599,-710414 +k1,142:25478599,-710414:25952256 +g1,142:25478599,-710414 ) ] ) -[1,136:6630773,47279633:25952256,43253760,0 -[1,136:6630773,4812305:25952256,786432,0 -(1,136:6630773,4812305:25952256,505283,134348 -(1,136:6630773,4812305:25952256,505283,134348 -g1,136:3078558,4812305 -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,2439708:0,1703936,0 -k1,136:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,136:2537886,2439708:1179648,16384,0 +[1,142:6630773,47279633:25952256,43253760,0 +[1,142:6630773,4812305:25952256,786432,0 +(1,142:6630773,4812305:25952256,505283,134348 +(1,142:6630773,4812305:25952256,505283,134348 +g1,142:3078558,4812305 +[1,142:3078558,4812305:0,0,0 +(1,142:3078558,2439708:0,1703936,0 +k1,142:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,142:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,136:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,142:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,2439708:0,1703936,0 -g1,136:29030814,2439708 -g1,136:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,136:36151628,1915420:16384,1179648,0 +[1,142:3078558,4812305:0,0,0 +(1,142:3078558,2439708:0,1703936,0 +g1,142:29030814,2439708 +g1,142:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,142:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,136:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,142:37855564,2439708:1179648,16384,0 ) ) -k1,136:3078556,2439708:-34777008 +k1,142:3078556,2439708:-34777008 ) ] -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,49800853:0,16384,2228224 -k1,136:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,136:2537886,49800853:1179648,16384,0 +[1,142:3078558,4812305:0,0,0 +(1,142:3078558,49800853:0,16384,2228224 +k1,142:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,142:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,136:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,142:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 -) -] -) -) -) -] -[1,136:3078558,4812305:0,0,0 -(1,136:3078558,49800853:0,16384,2228224 -g1,136:29030814,49800853 -g1,136:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,136:36151628,51504789:16384,1179648,0 -) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 -) -] -) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,136:37855564,49800853:1179648,16384,0 -) -) -k1,136:3078556,49800853:-34777008 -) -] -g1,136:6630773,4812305 -k1,136:22047465,4812305:15018233 -g1,136:22869941,4812305 -g1,136:24054831,4812305 -g1,136:27195316,4812305 -g1,136:28604995,4812305 -g1,136:29789885,4812305 -) -) -] -[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 -) -[1,136:6630773,45706769:25952256,40108032,0 -(1,122:6630773,6254097:25952256,513147,134348 -k1,121:8988633,6254097:243669 -k1,121:10924442,6254097:243669 -k1,121:14661180,6254097:243669 -k1,121:17895701,6254097:253288 -k1,121:18563786,6254097:253242 -k1,121:20500905,6254097:243669 -k1,121:22850246,6254097:243669 -k1,121:24979386,6254097:243669 -k1,121:25754552,6254097:243669 -k1,121:28412567,6254097:243669 -k1,121:30510905,6254097:243669 -k1,121:31563944,6254097:243669 -k1,122:32583029,6254097:0 -) -(1,122:6630773,7095585:25952256,513147,134348 -k1,121:7291793,7095585:246177 -k1,121:10280044,7095585:246225 -k1,121:12093890,7095585:246225 -k1,121:13527626,7095585:246224 -k1,121:14223381,7095585:246178 -k1,121:16640157,7095585:246224 -k1,121:17810440,7095585:246225 -k1,121:21087049,7095585:246224 -k1,121:25001979,7095585:246225 -k1,121:26765970,7095585:246177 -k1,121:27543692,7095585:246225 -k1,121:30879939,7095585:246224 -k1,121:31812326,7095585:246225 -k1,121:32583029,7095585:0 -) -(1,122:6630773,7937073:25952256,513147,126483 -k1,121:9934621,7937073:254458 -k1,121:13970507,7937073:254459 -k1,121:14892121,7937073:254458 -k1,121:15735092,7937073:254458 -k1,121:17863881,7937073:254459 -k1,121:19290778,7937073:254458 -k1,121:20899211,7937073:254459 -k1,121:23355679,7937073:254458 -k1,121:28997196,7937073:254458 -k1,121:30243215,7937073:254459 -k1,121:31563944,7937073:254458 -k1,121:32583029,7937073:0 -) -(1,122:6630773,8778561:25952256,505283,126483 -k1,121:8259343,8778561:252969 -k1,121:9999324,8778561:252969 -k1,121:13209933,8778561:252969 -k1,121:14535070,8778561:252968 -k1,121:16820310,8778561:252969 -k1,121:18064839,8778561:252969 -k1,121:19384079,8778561:252969 -k1,121:20253086,8778561:252969 -k1,121:24159687,8778561:252969 -k1,121:25678812,8778561:252969 -k1,121:26559615,8778561:252968 -k1,121:28514554,8778561:252969 -k1,121:30896132,8778561:252969 -k1,121:32168186,8778561:252969 -k1,122:32583029,8778561:0 -) -(1,122:6630773,9620049:25952256,513147,134348 -k1,121:9703266,9620049:230197 -k1,121:11037745,9620049:230197 -k1,121:12015708,9620049:230197 -k1,121:13759131,9620049:230197 -k1,121:15055599,9620049:230197 -k1,121:16661397,9620049:230197 -k1,121:17507632,9620049:230197 -k1,121:18756914,9620049:230197 -k1,121:19401923,9620049:230166 -k1,121:22547817,9620049:230197 -k1,121:23969459,9620049:230197 -k1,121:24657753,9620049:230197 -k1,121:25419447,9620049:230197 -k1,121:28102001,9620049:230197 -k1,121:29616704,9620049:230197 -k1,121:31548871,9620049:230197 -k1,122:32583029,9620049:0 -) -(1,122:6630773,10461537:25952256,513147,126483 -g1,121:11395895,10461537 -g1,121:12727586,10461537 -g1,121:13674581,10461537 -g1,121:17134881,10461537 -g1,121:17950148,10461537 -g1,121:19168462,10461537 -k1,122:32583029,10461537:11253845 -g1,122:32583029,10461537 -) -(1,124:6630773,11303025:25952256,513147,134348 -h1,123:6630773,11303025:983040,0,0 -k1,123:9001826,11303025:191326 -k1,123:10931166,11303025:191325 -k1,123:12556420,11303025:191326 -k1,123:13162581,11303025:191318 -k1,123:13162581,11303025:0 -k1,123:13885403,11303025:191325 -k1,123:15589955,11303025:191326 -k1,123:16432708,11303025:191325 -k1,123:20184605,11303025:191326 -k1,123:20790766,11303025:191318 -k1,123:22761393,11303025:191325 -k1,123:23638881,11303025:191326 -k1,123:24446244,11303025:191325 -k1,123:25656655,11303025:191326 -k1,123:26262816,11303025:191318 -k1,123:30409239,11303025:191325 -k1,123:32168186,11303025:191326 -k1,124:32583029,11303025:0 -) -(1,124:6630773,12144513:25952256,505283,126483 -k1,123:7483003,12144513:236192 -k1,123:8075054,12144513:236191 -k1,123:10806857,12144513:236192 -k1,123:12986847,12144513:236192 -k1,123:15108510,12144513:236192 -k1,123:18012672,12144513:236191 -k1,123:22821966,12144513:236192 -k1,123:26319229,12144513:236192 -k1,123:29958049,12144513:236191 -k1,123:31478747,12144513:236192 -k1,123:32583029,12144513:0 -) -(1,124:6630773,12986001:25952256,513147,134348 -g1,123:7577768,12986001 -g1,123:9921335,12986001 -g1,123:11688185,12986001 -g1,123:15156350,12986001 -g1,123:18894523,12986001 -g1,123:22166080,12986001 -k1,124:32583029,12986001:7332825 -g1,124:32583029,12986001 -) -(1,126:6630773,13827489:25952256,505283,134348 -h1,125:6630773,13827489:983040,0,0 -k1,125:9568501,13827489:217984 -k1,125:11070991,13827489:217984 -k1,125:11703800,13827489:217966 -k1,125:12453281,13827489:217984 -k1,125:16026708,13827489:217984 -k1,125:16600552,13827489:217984 -k1,125:21359526,13827489:217984 -k1,125:25311751,13827489:217984 -k1,125:25987832,13827489:217984 -k1,125:27310099,13827489:217985 -k1,125:28275849,13827489:217984 -k1,125:30007059,13827489:217984 -k1,125:31034413,13827489:217984 -k1,125:32583029,13827489:0 -) -(1,126:6630773,14668977:25952256,513147,134348 -k1,125:10026914,14668977:241893 -k1,125:11260367,14668977:241893 -k1,125:13405426,14668977:241893 -k1,125:17078129,14668977:241893 -k1,125:20568643,14668977:241894 -k1,125:24115517,14668977:241893 -k1,125:25008838,14668977:241893 -k1,125:25606591,14668977:241893 -k1,125:28605584,14668977:241893 -k1,125:31923737,14668977:241893 -k1,125:32583029,14668977:0 -) -(1,126:6630773,15510465:25952256,505283,134348 -k1,125:8526178,15510465:240621 -k1,125:11322703,15510465:240621 -k1,125:12861592,15510465:240621 -k1,125:13517015,15510465:240580 -k1,125:14861918,15510465:240621 -k1,125:16220583,15510465:240621 -k1,125:17927900,15510465:240621 -k1,125:18977891,15510465:240621 -k1,125:20237597,15510465:240621 -k1,125:23715697,15510465:240621 -k1,125:24706705,15510465:240621 -k1,125:25303186,15510465:240621 -k1,125:30723117,15510465:240621 -k1,125:32583029,15510465:0 -) -(1,126:6630773,16351953:25952256,513147,134348 -k1,125:8339203,16351953:314479 -k1,125:9672767,16351953:314479 -k1,125:13422643,16351953:314479 -k1,125:15709101,16351953:314480 -k1,125:16682872,16351953:314479 -k1,125:17353211,16351953:314479 -k1,125:20037472,16351953:314479 -k1,125:22203343,16351953:314479 -k1,125:24683787,16351953:314479 -k1,125:25742755,16351953:314479 -k1,125:27076320,16351953:314480 -k1,125:29092769,16351953:314479 -k1,125:30590173,16351953:314479 -k1,125:31563944,16351953:314479 -k1,125:32583029,16351953:0 -) -(1,126:6630773,17193441:25952256,513147,134348 -k1,125:10069966,17193441:253488 -k1,125:11132823,17193441:253487 -k1,125:13149229,17193441:253488 -k1,125:16259431,17193441:253488 -k1,125:18975762,17193441:253488 -k1,125:19644038,17193441:253433 -k1,125:21001808,17193441:253488 -k1,125:22003062,17193441:253488 -k1,125:23769775,17193441:253487 -k1,125:24970914,17193441:253488 -k1,125:26243487,17193441:253488 -k1,125:29051568,17193441:253488 -k1,125:29964347,17193441:253487 -k1,125:31193666,17193441:253488 -k1,125:32583029,17193441:0 -) -(1,126:6630773,18034929:25952256,513147,126483 -k1,125:8157380,18034929:261762 -k1,125:9813092,18034929:261761 -k1,125:12647142,18034929:261762 -k1,125:13568196,18034929:261762 -k1,125:18075379,18034929:261761 -k1,125:19757962,18034929:261762 -k1,125:22876438,18034929:261762 -k1,125:23494059,18034929:261761 -k1,125:26832081,18034929:261762 -k1,125:28264316,18034929:261762 -k1,125:29658539,18034929:261761 -k1,125:31450567,18034929:261762 -k1,125:32583029,18034929:0 -) -(1,126:6630773,18876417:25952256,513147,126483 -k1,125:9217971,18876417:215450 -k1,125:10242790,18876417:215449 -k1,125:11477325,18876417:215450 -k1,125:12961551,18876417:215449 -k1,125:13836293,18876417:215450 -k1,125:15070827,18876417:215449 -k1,125:16675640,18876417:215450 -k1,125:18155934,18876417:215449 -k1,125:19541857,18876417:215450 -k1,125:21305922,18876417:215449 -k1,125:22172800,18876417:215450 -k1,125:24991994,18876417:215449 -k1,125:26016814,18876417:215450 -k1,125:27562644,18876417:215449 -k1,125:30031877,18876417:215450 -k1,125:31417799,18876417:215449 -k1,125:32583029,18876417:0 -) -(1,126:6630773,19717905:25952256,505283,134348 -g1,125:8021447,19717905 -g1,125:9030046,19717905 -g1,125:10688106,19717905 -g1,125:12869144,19717905 -g1,125:13719801,19717905 -g1,125:15533837,19717905 -g1,125:17917381,19717905 -k1,126:32583029,19717905:12995791 -g1,126:32583029,19717905 -) -(1,128:6630773,20559393:25952256,513147,134348 -h1,127:6630773,20559393:983040,0,0 -k1,127:9175023,20559393:289812 -k1,127:11233653,20559393:289813 -k1,127:13203808,20559393:289812 -k1,127:14160777,20559393:289813 -k1,127:14865341,20559393:289721 -k1,127:15841315,20559393:289812 -k1,127:16486988,20559393:289813 -k1,127:18897545,20559393:289812 -k1,127:19846650,20559393:289813 -k1,127:20907165,20559393:289812 -k1,127:23230559,20559393:289812 -k1,127:26536339,20559393:289813 -k1,127:28693927,20559393:289812 -k1,127:29510649,20559393:289813 -k1,127:30153609,20559393:289721 -k1,127:32583029,20559393:0 -) -(1,128:6630773,21400881:25952256,505283,134348 -k1,127:8120948,21400881:222709 -k1,127:10201603,21400881:222709 -k1,127:12739698,21400881:222708 -k1,127:13566649,21400881:222709 -k1,127:14524064,21400881:222756 -k1,127:16721513,21400881:222849 -k1,127:17297437,21400881:222685 -k1,127:18711591,21400881:222709 -k1,127:20792246,21400881:222709 -k1,127:22006515,21400881:222709 -k1,127:25928730,21400881:222708 -k1,127:29397437,21400881:222709 -k1,127:30811591,21400881:222709 -k1,128:32583029,21400881:0 -) -(1,128:6630773,22242369:25952256,505283,134348 -k1,127:8456659,22242369:228118 -k1,127:9300815,22242369:228118 -k1,127:10548018,22242369:228118 -k1,127:13618431,22242369:228117 -k1,127:16803533,22242369:228118 -k1,127:18407252,22242369:228118 -k1,127:21270573,22242369:228118 -k1,127:24336400,22242369:228118 -k1,127:24979332,22242369:228089 -k1,127:27463854,22242369:228117 -k1,127:28378134,22242369:228118 -k1,127:28962112,22242369:228118 -k1,127:30688383,22242369:228118 -k1,127:32583029,22242369:0 -) -(1,128:6630773,23083857:25952256,513147,134348 -k1,127:11102840,23083857:157177 -k1,127:16316775,23083857:157177 -k1,127:17141109,23083857:157178 -k1,127:17825195,23083857:157177 -k1,127:18930023,23083857:157177 -k1,127:20179685,23083857:157177 -k1,127:20952901,23083857:157178 -k1,127:23982521,23083857:157177 -k1,127:26554044,23083857:157177 -k1,127:27299734,23083857:157177 -k1,127:28475997,23083857:157178 -k1,127:31548871,23083857:157177 -k1,128:32583029,23083857:0 -) -(1,128:6630773,23925345:25952256,513147,134348 -k1,127:10204301,23925345:193181 -k1,127:10753342,23925345:193181 -k1,127:13026636,23925345:193181 -k1,127:13879108,23925345:193180 -k1,127:15091374,23925345:193181 -k1,127:15637788,23925345:193175 -k1,127:18846936,23925345:193181 -k1,127:20236804,23925345:193181 -k1,127:20844822,23925345:193175 -k1,127:23780028,23925345:193180 -k1,127:26402629,23925345:193181 -k1,127:28088720,23925345:193181 -k1,127:29657502,23925345:193181 -k1,127:32583029,23925345:0 -) -(1,128:6630773,24766833:25952256,513147,102891 -k1,127:7947811,24766833:183920 -k1,127:11648394,24766833:183921 -k1,127:14467517,24766833:183920 -k1,127:15004661,24766833:183905 -k1,127:16380026,24766833:183920 -k1,127:16978774,24766833:183905 -k1,127:20332016,24766833:183921 -k1,127:21707381,24766833:183920 -k1,127:23588028,24766833:183920 -k1,127:27288611,24766833:183921 -k1,127:28464091,24766833:183920 -k1,128:32583029,24766833:0 -) -(1,128:6630773,25608321:25952256,513147,134348 -k1,127:9364697,25608321:206856 -k1,127:10230845,25608321:206856 -k1,127:11123863,25608321:206856 -k1,127:14644220,25608321:206857 -k1,127:19623408,25608321:206856 -k1,127:20648153,25608321:206856 -k1,127:21269844,25608321:206848 -k1,127:24303268,25608321:206857 -k1,127:26368070,25608321:206856 -k1,127:27190964,25608321:206856 -k1,127:30890889,25608321:206856 -k1,127:32583029,25608321:0 -) -(1,128:6630773,26449809:25952256,513147,126483 -k1,127:7464885,26449809:174820 -k1,127:8658791,26449809:174821 -k1,127:10116806,26449809:174820 -k1,127:12897337,26449809:174820 -k1,127:13688195,26449809:174820 -k1,127:14277834,26449809:174796 -k1,127:16196568,26449809:174821 -k1,127:17880027,26449809:174820 -k1,127:19292822,26449809:174820 -k1,127:20950067,26449809:174821 -k1,127:22392353,26449809:174820 -k1,127:24598789,26449809:174820 -k1,127:25188428,26449809:174796 -k1,127:25894745,26449809:174820 -k1,127:27317372,26449809:174821 -k1,127:28683637,26449809:174820 -k1,127:32583029,26449809:0 -) -(1,128:6630773,27291297:25952256,513147,11795 -g1,127:8021447,27291297 -g1,127:9239761,27291297 -g1,127:11177005,27291297 -g1,127:12670571,27291297 -g1,127:13223039,27291297 -g1,127:13953765,27291297 -g1,127:17600843,27291297 -g1,127:19313298,27291297 -g1,127:20163955,27291297 -g1,127:21899348,27291297 -g1,127:22750005,27291297 -k1,128:32583029,27291297:9244511 -g1,128:32583029,27291297 -) -(1,130:6630773,28132785:25952256,513147,134348 -h1,129:6630773,28132785:983040,0,0 -k1,129:9498449,28132785:250823 -k1,129:11795306,28132785:250823 -k1,129:12460920,28132785:250771 -k1,129:15474086,28132785:250823 -k1,129:17292530,28132785:250823 -k1,129:19139154,28132785:250823 -k1,129:20722324,28132785:250823 -k1,129:22258308,28132785:250823 -k1,129:23040628,28132785:250823 -k1,129:24575957,28132785:250823 -k1,129:25179967,28132785:250771 -k1,129:26637963,28132785:250823 -k1,129:29745500,28132785:250823 -k1,129:31563944,28132785:250823 -k1,129:32583029,28132785:0 -) -(1,130:6630773,28974273:25952256,513147,134348 -k1,129:8387138,28974273:268042 -k1,129:9341342,28974273:268042 -k1,129:9965244,28974273:268042 -k1,129:13309546,28974273:268042 -k1,129:17929834,28974273:268042 -k1,129:21213844,28974273:268043 -k1,129:22862730,28974273:268042 -k1,129:24467706,28974273:268042 -k1,129:26122490,28974273:268042 -k1,129:30429516,28974273:268042 -k1,129:31645209,28974273:268042 -k1,130:32583029,28974273:0 -) -(1,130:6630773,29815761:25952256,513147,134348 -k1,129:8994438,29815761:239643 -k1,129:10300352,29815761:239643 -k1,129:13028398,29815761:239644 -k1,129:15788556,29815761:239643 -k1,129:16711084,29815761:239643 -k1,129:19073438,29815761:239643 -k1,129:19964509,29815761:239643 -k1,129:21818959,29815761:239643 -k1,129:24817669,29815761:239644 -k1,129:26004963,29815761:239643 -k1,129:27633969,29815761:239643 -k1,129:30601876,29815761:239643 -k1,130:32583029,29815761:0 -) -(1,130:6630773,30657249:25952256,513147,134348 -k1,129:8001175,30657249:203861 -k1,129:8821074,30657249:203861 -k1,129:11040822,30657249:203861 -k1,129:11702780,30657249:203861 -k1,129:13952675,30657249:203861 -k1,129:14512396,30657249:203861 -k1,129:16267494,30657249:203861 -k1,129:19657715,30657249:203861 -k1,129:22391266,30657249:203861 -k1,129:23009965,30657249:203856 -k1,129:23745323,30657249:203861 -k1,129:25750113,30657249:203861 -k1,129:29343496,30657249:203861 -k1,129:30307575,30657249:203861 -k1,129:31714677,30657249:203861 -k1,129:32583029,30657249:0 -) -(1,130:6630773,31498737:25952256,513147,126483 -k1,129:8529149,31498737:160361 -k1,129:9974017,31498737:160362 -k1,129:11417573,31498737:160361 -k1,129:15653618,31498737:160361 -k1,129:16918262,31498737:160362 -k1,129:17826389,31498737:160361 -k1,129:19787679,31498737:160361 -k1,129:22087135,31498737:160361 -k1,129:23438942,31498737:160362 -k1,129:25930419,31498737:160361 -k1,129:27282225,31498737:160361 -k1,129:28645828,31498737:160362 -k1,129:30089384,31498737:160361 -k1,130:32583029,31498737:0 -) -(1,130:6630773,32340225:25952256,513147,134348 -k1,129:8577005,32340225:151201 -k1,129:9259703,32340225:151201 -k1,129:10062332,32340225:151201 -k1,129:11232618,32340225:151201 -k1,129:12764663,32340225:151201 -k1,129:18401227,32340225:151201 -k1,129:20120048,32340225:151200 -k1,129:21555755,32340225:151201 -k1,129:23185448,32340225:151201 -k1,129:24604115,32340225:151201 -k1,129:25343829,32340225:151201 -k1,129:26122865,32340225:151201 -k1,129:27976036,32340225:151201 -k1,129:30255846,32340225:151201 -k1,129:32583029,32340225:0 -) -(1,130:6630773,33181713:25952256,513147,134348 -k1,129:7525793,33181713:235728 -k1,129:9879645,33181713:235728 -k1,129:10766800,33181713:235727 -k1,129:13060358,33181713:235728 -k1,129:15931289,33181713:235728 -k1,129:18929360,33181713:235728 -k1,129:21145585,33181713:235727 -k1,129:22040605,33181713:235728 -k1,129:25035399,33181713:235728 -k1,129:25922555,33181713:235728 -k1,129:26973550,33181713:235727 -k1,129:29971621,33181713:235728 -k1,129:31923737,33181713:235728 -k1,129:32583029,33181713:0 -) -(1,130:6630773,34023201:25952256,513147,134348 -k1,129:9538737,34023201:207225 -k1,129:10428847,34023201:207225 -k1,129:12417342,34023201:207226 -k1,129:13781277,34023201:207225 -k1,129:15092784,34023201:207225 -k1,129:17587216,34023201:207225 -k1,129:19060597,34023201:207225 -k1,129:20038526,34023201:207226 -k1,129:20660586,34023201:207217 -k1,129:23447963,34023201:207225 -k1,129:24939694,34023201:207225 -k1,129:26279381,34023201:207225 -k1,129:28916682,34023201:207226 -k1,129:30142992,34023201:207225 -k1,129:31931601,34023201:207225 -k1,129:32583029,34023201:0 -) -(1,130:6630773,34864689:25952256,505283,134348 -k1,129:7649764,34864689:203723 -k1,129:8872573,34864689:203724 -k1,129:10098002,34864689:203723 -k1,129:12311714,34864689:203723 -k1,129:13103950,34864689:203723 -k1,129:14349696,34864689:203724 -k1,129:16297332,34864689:203723 -k1,129:19385294,34864689:203723 -k1,129:21394535,34864689:203724 -k1,129:23800268,34864689:203723 -k1,129:26704730,34864689:203723 -k1,129:27927538,34864689:203723 -k1,129:30113071,34864689:203724 -k1,129:30968222,34864689:203723 -k1,129:32583029,34864689:0 -) -(1,130:6630773,35706177:25952256,513147,134348 -k1,129:7190349,35706177:203716 -k1,129:9078996,35706177:203716 -k1,129:12198410,35706177:203717 -k1,129:15849975,35706177:203716 -k1,129:17282491,35706177:203716 -k1,129:17842067,35706177:203716 -k1,129:20536807,35706177:203717 -k1,129:21399815,35706177:203716 -k1,129:23102339,35706177:203716 -k1,129:23965347,35706177:203716 -k1,129:25838921,35706177:203717 -k1,129:28054592,35706177:203716 -k1,129:31923737,35706177:203716 -k1,129:32583029,35706177:0 -) -(1,130:6630773,36547665:25952256,505283,134348 -k1,129:9110600,36547665:161819 -k1,129:12146829,36547665:161820 -k1,129:13350670,36547665:161819 -k1,129:15256403,36547665:161820 -k1,129:17540933,36547665:161819 -k1,129:18354180,36547665:161819 -k1,129:20449967,36547665:161820 -k1,129:22037194,36547665:161819 -k1,129:26724930,36547665:161820 -k1,129:28266937,36547665:161819 -k1,129:29903972,36547665:161820 -k1,129:31084876,36547665:161819 -k1,129:32583029,36547665:0 -) -(1,130:6630773,37389153:25952256,505283,134348 -g1,129:8407454,37389153 -g1,129:9258111,37389153 -g1,129:12089921,37389153 -g1,129:13308235,37389153 -g1,129:15088848,37389153 -g1,129:16668265,37389153 -g1,129:18397760,37389153 -g1,129:20295027,37389153 -g1,129:22190983,37389153 -g1,129:23205480,37389153 -g1,129:24470980,37389153 -g1,129:27004601,37389153 -k1,130:32583029,37389153:3903983 -g1,130:32583029,37389153 -) -(1,132:6630773,38230641:25952256,513147,134348 -h1,131:6630773,38230641:983040,0,0 -k1,131:10820646,38230641:272131 -k1,131:12111863,38230641:272132 -k1,131:13985694,38230641:272131 -k1,131:17467123,38230641:272131 -k1,131:20978043,38230641:272131 -k1,131:21909467,38230641:272132 -k1,131:23916991,38230641:272131 -k1,131:24544982,38230641:272131 -k1,131:27659409,38230641:272131 -k1,131:29077766,38230641:272132 -k1,131:29764667,38230641:272058 -k1,131:30568295,38230641:272131 -k1,131:32124932,38230641:272131 -k1,131:32583029,38230641:0 -) -(1,132:6630773,39072129:25952256,505283,126483 -k1,131:8913515,39072129:236708 -k1,131:9608320,39072129:236708 -k1,131:11239633,39072129:236707 -k1,131:12127769,39072129:236708 -k1,131:13179745,39072129:236708 -k1,131:14805816,39072129:236708 -k1,131:17743262,39072129:236707 -k1,131:18596008,39072129:236708 -k1,131:19188576,39072129:236708 -k1,131:20663259,39072129:236708 -k1,131:22184472,39072129:236707 -k1,131:24894509,39072129:236708 -k1,131:26415723,39072129:236708 -k1,131:28032619,39072129:236708 -k1,131:29373608,39072129:236707 -k1,131:30358082,39072129:236708 -k1,131:32583029,39072129:0 -) -(1,132:6630773,39913617:25952256,513147,134348 -k1,131:9828649,39913617:239581 -k1,131:10696065,39913617:239581 -k1,131:12637616,39913617:239581 -k1,131:15005806,39913617:239581 -k1,131:16264472,39913617:239581 -k1,131:18788638,39913617:239581 -k1,131:22267008,39913617:239581 -k1,131:23165880,39913617:239580 -k1,131:25140854,39913617:239581 -k1,131:25968948,39913617:239581 -k1,131:26894691,39913617:239581 -k1,131:27490132,39913617:239581 -k1,131:30745680,39913617:239581 -k1,131:31516758,39913617:239581 -k1,131:32583029,39913617:0 -) -(1,132:6630773,40755105:25952256,505283,134348 -k1,131:7435555,40755105:188744 -k1,131:12559814,40755105:188743 -k1,131:14142509,40755105:188744 -k1,131:15350338,40755105:188744 -k1,131:18789012,40755105:188744 -k1,131:20049924,40755105:188743 -k1,131:20854706,40755105:188744 -k1,131:25978966,40755105:188744 -k1,131:26819138,40755105:188744 -k1,131:28709851,40755105:188743 -k1,131:31034413,40755105:188744 -k1,131:32583029,40755105:0 -) -(1,132:6630773,41596593:25952256,513147,134348 -k1,131:7906672,41596593:174894 -k1,131:9591515,41596593:174893 -k1,131:11517531,41596593:174894 -k1,131:12308463,41596593:174894 -k1,131:12839217,41596593:174894 -k1,131:14252085,41596593:174893 -k1,131:15711485,41596593:174894 -k1,131:16417876,41596593:174894 -k1,131:21102302,41596593:174894 -k1,131:22051175,41596593:174893 -k1,131:24508688,41596593:174894 -k1,131:26385552,41596593:174894 -k1,131:28696264,41596593:174894 -k1,131:30208091,41596593:174893 -k1,131:31931601,41596593:174894 -k1,131:32583029,41596593:0 -) -(1,132:6630773,42438081:25952256,505283,126483 -k1,131:7935040,42438081:186223 -k1,131:9140348,42438081:186223 -k1,131:10980044,42438081:186223 -k1,131:14656059,42438081:186223 -k1,131:15458320,42438081:186223 -k1,131:18117216,42438081:186223 -k1,131:21553370,42438081:186224 -k1,131:22811762,42438081:186223 -k1,131:24196639,42438081:186223 -k1,131:24840959,42438081:186223 -k1,131:27095498,42438081:186223 -k1,131:28566227,42438081:186223 -k1,131:29108310,42438081:186223 -k1,131:32583029,42438081:0 -) -(1,132:6630773,43279569:25952256,513147,126483 -k1,131:8407000,43279569:208606 -k1,131:8971466,43279569:208606 -k1,131:10114615,43279569:208606 -k1,131:10982513,43279569:208606 -k1,131:15028907,43279569:208606 -k1,131:15888941,43279569:208606 -k1,131:17116633,43279569:208607 -k1,131:20401499,43279569:208606 -k1,131:21877571,43279569:208606 -k1,131:23312356,43279569:208606 -k1,131:26242017,43279569:208606 -k1,131:27102051,43279569:208606 -k1,131:31563944,43279569:208606 -k1,131:32583029,43279569:0 -) -(1,132:6630773,44121057:25952256,513147,134348 -k1,131:9794742,44121057:203052 -k1,131:11189239,44121057:203052 -k1,131:14176917,44121057:203053 -k1,131:16658656,44121057:203052 -k1,131:17521000,44121057:203052 -k1,131:18079912,44121057:203052 -k1,131:21962811,44121057:203052 -k1,131:23648287,44121057:203052 -k1,131:24382837,44121057:203053 -k1,131:27083466,44121057:203052 -k1,131:29966941,44121057:203052 -k1,131:31563944,44121057:203052 -k1,131:32583029,44121057:0 -) -(1,132:6630773,44962545:25952256,505283,134348 -g1,131:10533441,44962545 -g1,131:13019877,44962545 -g1,131:15946714,44962545 -k1,132:32583029,44962545:15846606 -g1,132:32583029,44962545 -) -] -(1,136:32583029,45706769:0,0,0 -g1,136:32583029,45706769 -) -) -] -(1,136:6630773,47279633:25952256,0,0 -h1,136:6630773,47279633:25952256,0,0 -) -] -h1,136:4262630,4025873:0,0,0 -] -!25629 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 +) +] +) +) +) +] +[1,142:3078558,4812305:0,0,0 +(1,142:3078558,49800853:0,16384,2228224 +g1,142:29030814,49800853 +g1,142:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,142:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 +) +] +) +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,142:37855564,49800853:1179648,16384,0 +) +) +k1,142:3078556,49800853:-34777008 +) +] +g1,142:6630773,4812305 +k1,142:21845614,4812305:14816382 +g1,142:22668090,4812305 +g1,142:24054831,4812305 +g1,142:27195316,4812305 +g1,142:28604995,4812305 +g1,142:29789885,4812305 +) +) +] +[1,142:6630773,45706769:25952256,40108032,0 +(1,142:6630773,45706769:25952256,40108032,0 +(1,142:6630773,45706769:0,0,0 +g1,142:6630773,45706769 +) +[1,142:6630773,45706769:25952256,40108032,0 +(1,128:6630773,6254097:25952256,513147,134348 +k1,127:8988633,6254097:243669 +k1,127:10924442,6254097:243669 +k1,127:14661180,6254097:243669 +k1,127:17895701,6254097:253288 +k1,127:18563786,6254097:253242 +k1,127:20500905,6254097:243669 +k1,127:22850246,6254097:243669 +k1,127:24979386,6254097:243669 +k1,127:25754552,6254097:243669 +k1,127:28412567,6254097:243669 +k1,127:30510905,6254097:243669 +k1,127:31563944,6254097:243669 +k1,128:32583029,6254097:0 +) +(1,128:6630773,7095585:25952256,513147,134348 +k1,127:7291793,7095585:246177 +k1,127:10280044,7095585:246225 +k1,127:12093890,7095585:246225 +k1,127:13527626,7095585:246224 +k1,127:14223381,7095585:246178 +k1,127:16640157,7095585:246224 +k1,127:17810440,7095585:246225 +k1,127:21087049,7095585:246224 +k1,127:25001979,7095585:246225 +k1,127:26765970,7095585:246177 +k1,127:27543692,7095585:246225 +k1,127:30879939,7095585:246224 +k1,127:31812326,7095585:246225 +k1,127:32583029,7095585:0 +) +(1,128:6630773,7937073:25952256,513147,126483 +k1,127:9934621,7937073:254458 +k1,127:13970507,7937073:254459 +k1,127:14892121,7937073:254458 +k1,127:15735092,7937073:254458 +k1,127:17863881,7937073:254459 +k1,127:19290778,7937073:254458 +k1,127:20899211,7937073:254459 +k1,127:23355679,7937073:254458 +k1,127:28997196,7937073:254458 +k1,127:30243215,7937073:254459 +k1,127:31563944,7937073:254458 +k1,127:32583029,7937073:0 +) +(1,128:6630773,8778561:25952256,505283,126483 +k1,127:8259343,8778561:252969 +k1,127:9999324,8778561:252969 +k1,127:13209933,8778561:252969 +k1,127:14535070,8778561:252968 +k1,127:16820310,8778561:252969 +k1,127:18064839,8778561:252969 +k1,127:19384079,8778561:252969 +k1,127:20253086,8778561:252969 +k1,127:24159687,8778561:252969 +k1,127:25678812,8778561:252969 +k1,127:26559615,8778561:252968 +k1,127:28514554,8778561:252969 +k1,127:30896132,8778561:252969 +k1,127:32168186,8778561:252969 +k1,128:32583029,8778561:0 +) +(1,128:6630773,9620049:25952256,513147,134348 +k1,127:9703266,9620049:230197 +k1,127:11037745,9620049:230197 +k1,127:12015708,9620049:230197 +k1,127:13759131,9620049:230197 +k1,127:15055599,9620049:230197 +k1,127:16661397,9620049:230197 +k1,127:17507632,9620049:230197 +k1,127:18756914,9620049:230197 +k1,127:19401923,9620049:230166 +k1,127:22547817,9620049:230197 +k1,127:23969459,9620049:230197 +k1,127:24657753,9620049:230197 +k1,127:25419447,9620049:230197 +k1,127:28102001,9620049:230197 +k1,127:29616704,9620049:230197 +k1,127:31548871,9620049:230197 +k1,128:32583029,9620049:0 +) +(1,128:6630773,10461537:25952256,513147,126483 +g1,127:11395895,10461537 +g1,127:12727586,10461537 +g1,127:13674581,10461537 +g1,127:17134881,10461537 +g1,127:17950148,10461537 +g1,127:19168462,10461537 +k1,128:32583029,10461537:11253845 +g1,128:32583029,10461537 +) +(1,130:6630773,11303025:25952256,513147,134348 +h1,129:6630773,11303025:983040,0,0 +k1,129:8990237,11303025:179737 +k1,129:10907990,11303025:179738 +k1,129:12821810,11303025:179737 +k1,129:13416371,11303025:179718 +k1,129:13416371,11303025:0 +k1,129:13896244,11303025:179718 +k1,129:14607478,11303025:179737 +k1,129:16300441,11303025:179737 +k1,129:17131606,11303025:179737 +k1,129:20871915,11303025:179738 +k1,129:21466476,11303025:179718 +k1,129:23425515,11303025:179737 +k1,129:24291414,11303025:179737 +k1,129:25087190,11303025:179738 +k1,129:26286012,11303025:179737 +k1,129:26880573,11303025:179718 +k1,129:31015408,11303025:179737 +k1,130:32583029,11303025:0 +) +(1,130:6630773,12144513:25952256,505283,126483 +k1,129:7222603,12144513:176987 +k1,129:8015649,12144513:177008 +k1,129:8548518,12144513:177009 +k1,129:11221138,12144513:177009 +k1,129:13341945,12144513:177009 +k1,129:15404424,12144513:177008 +k1,129:18249404,12144513:177009 +k1,129:22999515,12144513:177009 +k1,129:26437595,12144513:177009 +k1,129:30017232,12144513:177008 +k1,129:31478747,12144513:177009 +k1,129:32583029,12144513:0 +) +(1,130:6630773,12986001:25952256,513147,134348 +g1,129:7577768,12986001 +g1,129:9921335,12986001 +g1,129:11688185,12986001 +g1,129:15156350,12986001 +g1,129:18894523,12986001 +g1,129:22166080,12986001 +k1,130:32583029,12986001:7332825 +g1,130:32583029,12986001 +) +(1,132:6630773,13827489:25952256,505283,134348 +h1,131:6630773,13827489:983040,0,0 +k1,131:9568501,13827489:217984 +k1,131:11070991,13827489:217984 +k1,131:11703800,13827489:217966 +k1,131:12453281,13827489:217984 +k1,131:16026708,13827489:217984 +k1,131:16600552,13827489:217984 +k1,131:21359526,13827489:217984 +k1,131:25311751,13827489:217984 +k1,131:25987832,13827489:217984 +k1,131:27310099,13827489:217985 +k1,131:28275849,13827489:217984 +k1,131:30007059,13827489:217984 +k1,131:31034413,13827489:217984 +k1,131:32583029,13827489:0 +) +(1,132:6630773,14668977:25952256,513147,134348 +k1,131:10026914,14668977:241893 +k1,131:11260367,14668977:241893 +k1,131:13405426,14668977:241893 +k1,131:17078129,14668977:241893 +k1,131:20568643,14668977:241894 +k1,131:24115517,14668977:241893 +k1,131:25008838,14668977:241893 +k1,131:25606591,14668977:241893 +k1,131:28605584,14668977:241893 +k1,131:31923737,14668977:241893 +k1,131:32583029,14668977:0 +) +(1,132:6630773,15510465:25952256,505283,134348 +k1,131:8526178,15510465:240621 +k1,131:11322703,15510465:240621 +k1,131:12861592,15510465:240621 +k1,131:13517015,15510465:240580 +k1,131:14861918,15510465:240621 +k1,131:16220583,15510465:240621 +k1,131:17927900,15510465:240621 +k1,131:18977891,15510465:240621 +k1,131:20237597,15510465:240621 +k1,131:23715697,15510465:240621 +k1,131:24706705,15510465:240621 +k1,131:25303186,15510465:240621 +k1,131:30723117,15510465:240621 +k1,131:32583029,15510465:0 +) +(1,132:6630773,16351953:25952256,513147,134348 +k1,131:8208574,16351953:183850 +k1,131:9411510,16351953:183851 +k1,131:13030757,16351953:183850 +k1,131:15186585,16351953:183850 +k1,131:16029727,16351953:183850 +k1,131:16569438,16351953:183851 +k1,131:19123070,16351953:183850 +k1,131:21158312,16351953:183850 +k1,131:23508127,16351953:183850 +k1,131:24436467,16351953:183851 +k1,131:25639402,16351953:183850 +k1,131:27525222,16351953:183850 +k1,131:28891997,16351953:183850 +k1,131:29735140,16351953:183851 +k1,131:30938075,16351953:183850 +k1,132:32583029,16351953:0 +) +(1,132:6630773,17193441:25952256,513147,134348 +k1,131:8632245,17193441:247729 +k1,131:9689345,17193441:247730 +k1,131:11699992,17193441:247729 +k1,131:14804435,17193441:247729 +k1,131:17515008,17193441:247730 +k1,131:18177531,17193441:247680 +k1,131:19529543,17193441:247730 +k1,131:20525038,17193441:247729 +k1,131:22285993,17193441:247729 +k1,131:23481373,17193441:247729 +k1,131:24748188,17193441:247730 +k1,131:27550510,17193441:247729 +k1,131:28457531,17193441:247729 +k1,131:29681092,17193441:247730 +k1,131:31318184,17193441:247729 +k1,131:32583029,17193441:0 +) +(1,132:6630773,18034929:25952256,513147,126483 +k1,131:8194244,18034929:169520 +k1,131:10936051,18034929:169519 +k1,131:11764863,18034929:169520 +k1,131:16179805,18034929:169520 +k1,131:17770146,18034929:169520 +k1,131:20796379,18034929:169519 +k1,131:21321759,18034929:169520 +k1,131:24567539,18034929:169520 +k1,131:25907532,18034929:169520 +k1,131:27209513,18034929:169519 +k1,131:28909299,18034929:169520 +k1,131:30211281,18034929:169520 +k1,131:32583029,18034929:0 +) +(1,132:6630773,18876417:25952256,513147,126483 +k1,131:7664739,18876417:224596 +k1,131:8908419,18876417:224595 +k1,131:10401792,18876417:224596 +k1,131:11285679,18876417:224595 +k1,131:12529360,18876417:224596 +k1,131:14143319,18876417:224596 +k1,131:15632759,18876417:224595 +k1,131:17027828,18876417:224596 +k1,131:18801039,18876417:224595 +k1,131:19677063,18876417:224596 +k1,131:22505403,18876417:224595 +k1,131:23539369,18876417:224596 +k1,131:25094346,18876417:224596 +k1,131:27572724,18876417:224595 +k1,131:28967793,18876417:224596 +k1,131:30357618,18876417:224595 +k1,131:31773659,18876417:224596 +k1,131:32583029,18876417:0 +) +(1,132:6630773,19717905:25952256,505283,134348 +g1,131:8288833,19717905 +g1,131:10469871,19717905 +g1,131:11320528,19717905 +g1,131:13134564,19717905 +g1,131:15518108,19717905 +k1,132:32583029,19717905:15395064 +g1,132:32583029,19717905 +) +(1,134:6630773,20559393:25952256,513147,134348 +h1,133:6630773,20559393:983040,0,0 +k1,133:9077683,20559393:192472 +k1,133:11038972,20559393:192472 +k1,133:12911787,20559393:192472 +k1,133:13771415,20559393:192472 +k1,133:14378723,20559393:192465 +k1,133:15257357,20559393:192472 +k1,133:15805689,20559393:192472 +k1,133:18118906,20559393:192472 +k1,133:18970670,20559393:192472 +k1,133:19933845,20559393:192472 +k1,133:22159899,20559393:192472 +k1,133:25368338,20559393:192472 +k1,133:27428586,20559393:192472 +k1,133:28147967,20559393:192472 +k1,133:28693671,20559393:192465 +k1,133:31315563,20559393:192472 +k1,134:32583029,20559393:0 +) +(1,134:6630773,21400881:25952256,505283,134348 +k1,133:8698668,21400881:209949 +(1,133:8905762,21400881:3874488,505283,11795 +) +k1,133:13371026,21400881:210012 +k1,133:13934203,21400881:209938 +k1,133:15335596,21400881:209948 +k1,133:17403491,21400881:209949 +k1,133:18604999,21400881:209948 +k1,133:22514455,21400881:209949 +k1,133:25970401,21400881:209948 +k1,133:27371795,21400881:209949 +k1,133:30737957,21400881:209948 +k1,133:31563944,21400881:209949 +k1,133:32583029,21400881:0 +) +(1,134:6630773,22242369:25952256,505283,134348 +k1,133:9644299,22242369:171230 +k1,133:12772513,22242369:171230 +k1,133:14319344,22242369:171230 +k1,133:17125778,22242369:171231 +k1,133:20134717,22242369:171230 +k1,133:20720762,22242369:171202 +k1,133:23148397,22242369:171230 +k1,133:24005789,22242369:171230 +k1,133:24532880,22242369:171231 +k1,133:26202263,22242369:171230 +k1,133:28268139,22242369:171230 +k1,133:32583029,22242369:0 +) +(1,134:6630773,23083857:25952256,513147,134348 +k1,133:11910681,23083857:223150 +k1,133:12800987,23083857:223150 +k1,133:13551047,23083857:223151 +k1,133:14721848,23083857:223150 +k1,133:16037483,23083857:223150 +k1,133:16876671,23083857:223150 +k1,133:19972264,23083857:223150 +k1,133:22609760,23083857:223150 +k1,133:23421424,23083857:223151 +k1,133:24663659,23083857:223150 +k1,133:27802506,23083857:223150 +k1,133:32227169,23083857:223150 +k1,133:32583029,23083857:0 +) +(1,134:6630773,23925345:25952256,513147,134348 +k1,133:8953830,23925345:242944 +k1,133:9856065,23925345:242943 +k1,133:11118094,23925345:242944 +k1,133:11714232,23925345:242899 +k1,133:14973143,23925345:242944 +k1,133:16412773,23925345:242943 +k1,133:17070516,23925345:242900 +k1,133:20055485,23925345:242943 +k1,133:22727849,23925345:242944 +k1,133:24463702,23925345:242943 +k1,133:26082247,23925345:242944 +k1,133:29250718,23925345:242944 +k1,133:30626779,23925345:242943 +k1,134:32583029,23925345:0 +) +(1,134:6630773,24766833:25952256,513147,134348 +k1,133:8641425,24766833:237248 +k1,133:11513875,24766833:237247 +k1,133:12104324,24766833:237210 +k1,133:13533017,24766833:237248 +k1,133:14185069,24766833:237209 +k1,133:17591638,24766833:237248 +k1,133:19020331,24766833:237248 +k1,133:20954306,24766833:237248 +k1,133:24708215,24766833:237247 +k1,133:25937023,24766833:237248 +k1,133:32583029,24766833:0 +) +(1,134:6630773,25608321:25952256,513147,134348 +k1,133:7550412,25608321:260347 +k1,133:8496921,25608321:260347 +k1,133:12070768,25608321:260347 +k1,133:17103446,25608321:260346 +k1,133:18181682,25608321:260347 +k1,133:18856811,25608321:260286 +k1,133:21943725,25608321:260347 +k1,133:24062018,25608321:260347 +k1,133:24938402,25608321:260346 +k1,133:28691818,25608321:260347 +k1,133:30644305,25608321:260347 +k1,133:31563944,25608321:260347 +k1,133:32583029,25608321:0 +) +(1,134:6630773,26449809:25952256,513147,126483 +k1,133:8132905,26449809:218937 +k1,133:10957552,26449809:218936 +k1,133:11792527,26449809:218937 +k1,133:12426286,26449809:218916 +k1,133:14389136,26449809:218937 +k1,133:16116711,26449809:218936 +k1,133:17573623,26449809:218937 +k1,133:19274983,26449809:218936 +k1,133:20761386,26449809:218937 +k1,133:23011938,26449809:218936 +k1,133:23645698,26449809:218917 +k1,133:24396132,26449809:218937 +k1,133:25862874,26449809:218936 +k1,133:27273256,26449809:218937 +k1,133:31391584,26449809:218936 +k1,133:32583029,26449809:0 +) +(1,134:6630773,27291297:25952256,513147,11795 +g1,133:7849087,27291297 +g1,133:9786331,27291297 +g1,133:11279897,27291297 +g1,133:11832365,27291297 +g1,133:12563091,27291297 +g1,133:16210169,27291297 +g1,133:17922624,27291297 +g1,133:18773281,27291297 +g1,133:20508674,27291297 +g1,133:21359331,27291297 +k1,134:32583029,27291297:10635185 +g1,134:32583029,27291297 +) +(1,136:6630773,28132785:25952256,513147,134348 +h1,135:6630773,28132785:983040,0,0 +k1,135:9498449,28132785:250823 +k1,135:11795306,28132785:250823 +k1,135:12460920,28132785:250771 +k1,135:15474086,28132785:250823 +k1,135:17292530,28132785:250823 +k1,135:19139154,28132785:250823 +k1,135:20722324,28132785:250823 +k1,135:22258308,28132785:250823 +k1,135:23040628,28132785:250823 +k1,135:24575957,28132785:250823 +k1,135:25179967,28132785:250771 +k1,135:26637963,28132785:250823 +k1,135:29745500,28132785:250823 +k1,135:31563944,28132785:250823 +k1,135:32583029,28132785:0 +) +(1,136:6630773,28974273:25952256,513147,134348 +k1,135:8299201,28974273:180105 +k1,135:9165467,28974273:180104 +k1,135:9701432,28974273:180105 +k1,135:12957797,28974273:180105 +k1,135:17490147,28974273:180104 +k1,135:20686219,28974273:180105 +k1,135:22247167,28974273:180104 +k1,135:23764206,28974273:180105 +k1,135:25331053,28974273:180105 +k1,135:29550141,28974273:180104 +k1,135:30677897,28974273:180105 +k1,136:32583029,28974273:0 +) +(1,136:6630773,29815761:25952256,513147,134348 +k1,135:7962363,29815761:174880 +k1,135:9203514,29815761:174880 +k1,135:11866797,29815761:174881 +k1,135:14562192,29815761:174880 +k1,135:15419957,29815761:174880 +k1,135:17717548,29815761:174880 +k1,135:18543857,29815761:174881 +k1,135:20333544,29815761:174880 +k1,135:23267490,29815761:174880 +k1,135:24390021,29815761:174880 +k1,135:25954265,29815761:174881 +k1,135:28857409,29815761:174880 +k1,135:31966991,29815761:174880 +k1,135:32583029,29815761:0 +) +(1,136:6630773,30657249:25952256,513147,134348 +k1,135:8868267,30657249:221607 +k1,135:9547971,30657249:221607 +k1,135:11815612,30657249:221607 +k1,135:12393079,30657249:221607 +k1,135:14165922,30657249:221606 +k1,135:17573889,30657249:221607 +k1,135:20325186,30657249:221607 +k1,135:20961614,30657249:221585 +k1,135:21714718,30657249:221607 +k1,135:23737253,30657249:221606 +k1,135:27348382,30657249:221607 +k1,135:28330207,30657249:221607 +k1,135:29755055,30657249:221607 +k1,135:30845014,30657249:221607 +k1,135:32583029,30657249:0 +) +(1,136:6630773,31498737:25952256,513147,126483 +k1,135:8152519,31498737:237240 +k1,135:9672954,31498737:237240 +k1,135:13985878,31498737:237240 +k1,135:15327400,31498737:237240 +k1,135:16312406,31498737:237240 +k1,135:18350576,31498737:237241 +k1,135:20726911,31498737:237240 +k1,135:22155596,31498737:237240 +k1,135:24723952,31498737:237240 +k1,135:26152637,31498737:237240 +k1,135:27593118,31498737:237240 +k1,135:29113553,31498737:237240 +k1,136:32583029,31498737:0 +) +(1,136:6630773,32340225:25952256,513147,134348 +k1,135:7670876,32340225:220903 +k1,135:8423276,32340225:220903 +k1,135:9295607,32340225:220903 +k1,135:10535596,32340225:220904 +k1,135:12137343,32340225:220903 +k1,135:17843609,32340225:220903 +k1,135:19632133,32340225:220903 +k1,135:21137542,32340225:220903 +k1,135:22836937,32340225:220903 +k1,135:24325306,32340225:220903 +k1,135:25134723,32340225:220904 +k1,135:25983461,32340225:220903 +k1,135:27906334,32340225:220903 +k1,135:30255846,32340225:220903 +k1,135:32583029,32340225:0 +) +(1,136:6630773,33181713:25952256,513147,134348 +k1,135:7525793,33181713:235728 +k1,135:9879645,33181713:235728 +k1,135:10766800,33181713:235727 +k1,135:13060358,33181713:235728 +k1,135:15931289,33181713:235728 +k1,135:18929360,33181713:235728 +k1,135:21145585,33181713:235727 +k1,135:22040605,33181713:235728 +k1,135:25035399,33181713:235728 +k1,135:25922555,33181713:235728 +k1,135:26973550,33181713:235727 +k1,135:29971621,33181713:235728 +k1,135:31923737,33181713:235728 +k1,135:32583029,33181713:0 +) +(1,136:6630773,34023201:25952256,513147,134348 +k1,135:9538737,34023201:207225 +k1,135:10428847,34023201:207225 +k1,135:12417342,34023201:207226 +k1,135:13781277,34023201:207225 +k1,135:15092784,34023201:207225 +k1,135:17587216,34023201:207225 +k1,135:19060597,34023201:207225 +k1,135:20038526,34023201:207226 +k1,135:20660586,34023201:207217 +k1,135:23447963,34023201:207225 +k1,135:24939694,34023201:207225 +k1,135:26279381,34023201:207225 +k1,135:28916682,34023201:207226 +k1,135:30142992,34023201:207225 +k1,135:31931601,34023201:207225 +k1,135:32583029,34023201:0 +) +(1,136:6630773,34864689:25952256,505283,134348 +k1,135:7649764,34864689:203723 +k1,135:8872573,34864689:203724 +k1,135:10098002,34864689:203723 +k1,135:12311714,34864689:203723 +k1,135:13103950,34864689:203723 +k1,135:14349696,34864689:203724 +k1,135:16297332,34864689:203723 +k1,135:19385294,34864689:203723 +k1,135:21394535,34864689:203724 +k1,135:23800268,34864689:203723 +k1,135:26704730,34864689:203723 +k1,135:27927538,34864689:203723 +k1,135:30113071,34864689:203724 +k1,135:30968222,34864689:203723 +k1,135:32583029,34864689:0 +) +(1,136:6630773,35706177:25952256,513147,134348 +k1,135:7190349,35706177:203716 +k1,135:9078996,35706177:203716 +k1,135:12198410,35706177:203717 +k1,135:15849975,35706177:203716 +k1,135:17282491,35706177:203716 +k1,135:17842067,35706177:203716 +k1,135:20536807,35706177:203717 +k1,135:21399815,35706177:203716 +k1,135:23102339,35706177:203716 +k1,135:23965347,35706177:203716 +k1,135:25838921,35706177:203717 +k1,135:28054592,35706177:203716 +k1,135:31923737,35706177:203716 +k1,135:32583029,35706177:0 +) +(1,136:6630773,36547665:25952256,505283,134348 +k1,135:9110600,36547665:161819 +k1,135:12146829,36547665:161820 +k1,135:13350670,36547665:161819 +k1,135:15256403,36547665:161820 +k1,135:17540933,36547665:161819 +k1,135:18354180,36547665:161819 +k1,135:20449967,36547665:161820 +k1,135:22037194,36547665:161819 +k1,135:26724930,36547665:161820 +k1,135:28266937,36547665:161819 +k1,135:29903972,36547665:161820 +k1,135:31084876,36547665:161819 +k1,135:32583029,36547665:0 +) +(1,136:6630773,37389153:25952256,505283,134348 +g1,135:8407454,37389153 +g1,135:9258111,37389153 +g1,135:12089921,37389153 +g1,135:13308235,37389153 +g1,135:15088848,37389153 +g1,135:16668265,37389153 +g1,135:18397760,37389153 +g1,135:20295027,37389153 +g1,135:22190983,37389153 +g1,135:23205480,37389153 +g1,135:24470980,37389153 +g1,135:27004601,37389153 +k1,136:32583029,37389153:3903983 +g1,136:32583029,37389153 +) +(1,138:6630773,38230641:25952256,513147,134348 +h1,137:6630773,38230641:983040,0,0 +k1,137:10820646,38230641:272131 +k1,137:12111863,38230641:272132 +k1,137:13985694,38230641:272131 +k1,137:17467123,38230641:272131 +k1,137:20978043,38230641:272131 +k1,137:21909467,38230641:272132 +k1,137:23916991,38230641:272131 +k1,137:24544982,38230641:272131 +k1,137:27659409,38230641:272131 +k1,137:29077766,38230641:272132 +k1,137:29764667,38230641:272058 +k1,137:30568295,38230641:272131 +k1,137:32124932,38230641:272131 +k1,137:32583029,38230641:0 +) +(1,138:6630773,39072129:25952256,505283,126483 +k1,137:8913515,39072129:236708 +k1,137:9608320,39072129:236708 +k1,137:11239633,39072129:236707 +k1,137:12127769,39072129:236708 +k1,137:13179745,39072129:236708 +k1,137:14805816,39072129:236708 +k1,137:17743262,39072129:236707 +k1,137:18596008,39072129:236708 +k1,137:19188576,39072129:236708 +k1,137:20663259,39072129:236708 +k1,137:22184472,39072129:236707 +k1,137:24894509,39072129:236708 +k1,137:26415723,39072129:236708 +k1,137:28032619,39072129:236708 +k1,137:29373608,39072129:236707 +k1,137:30358082,39072129:236708 +k1,137:32583029,39072129:0 +) +(1,138:6630773,39913617:25952256,513147,134348 +k1,137:9828649,39913617:239581 +k1,137:10696065,39913617:239581 +k1,137:12637616,39913617:239581 +k1,137:15005806,39913617:239581 +k1,137:16264472,39913617:239581 +k1,137:18788638,39913617:239581 +k1,137:22267008,39913617:239581 +k1,137:23165880,39913617:239580 +k1,137:25140854,39913617:239581 +k1,137:25968948,39913617:239581 +k1,137:26894691,39913617:239581 +k1,137:27490132,39913617:239581 +k1,137:30745680,39913617:239581 +k1,137:31516758,39913617:239581 +k1,137:32583029,39913617:0 +) +(1,138:6630773,40755105:25952256,505283,134348 +k1,137:7435555,40755105:188744 +k1,137:12559814,40755105:188743 +k1,137:14142509,40755105:188744 +k1,137:15350338,40755105:188744 +k1,137:18789012,40755105:188744 +k1,137:20049924,40755105:188743 +k1,137:20854706,40755105:188744 +k1,137:25978966,40755105:188744 +k1,137:26819138,40755105:188744 +k1,137:28709851,40755105:188743 +k1,137:31034413,40755105:188744 +k1,137:32583029,40755105:0 +) +(1,138:6630773,41596593:25952256,513147,134348 +k1,137:7906672,41596593:174894 +k1,137:9591515,41596593:174893 +k1,137:11517531,41596593:174894 +k1,137:12308463,41596593:174894 +k1,137:12839217,41596593:174894 +k1,137:14252085,41596593:174893 +k1,137:15711485,41596593:174894 +k1,137:16417876,41596593:174894 +k1,137:21102302,41596593:174894 +k1,137:22051175,41596593:174893 +k1,137:24508688,41596593:174894 +k1,137:26385552,41596593:174894 +k1,137:28696264,41596593:174894 +k1,137:30208091,41596593:174893 +k1,137:31931601,41596593:174894 +k1,137:32583029,41596593:0 +) +(1,138:6630773,42438081:25952256,505283,126483 +k1,137:7935040,42438081:186223 +k1,137:9140348,42438081:186223 +k1,137:10980044,42438081:186223 +k1,137:14656059,42438081:186223 +k1,137:15458320,42438081:186223 +k1,137:18117216,42438081:186223 +k1,137:21553370,42438081:186224 +k1,137:22811762,42438081:186223 +k1,137:24196639,42438081:186223 +k1,137:24840959,42438081:186223 +k1,137:27095498,42438081:186223 +k1,137:28566227,42438081:186223 +k1,137:29108310,42438081:186223 +k1,137:32583029,42438081:0 +) +(1,138:6630773,43279569:25952256,513147,126483 +k1,137:8407000,43279569:208606 +k1,137:8971466,43279569:208606 +k1,137:10114615,43279569:208606 +k1,137:10982513,43279569:208606 +k1,137:15028907,43279569:208606 +k1,137:15888941,43279569:208606 +k1,137:17116633,43279569:208607 +k1,137:20401499,43279569:208606 +k1,137:21877571,43279569:208606 +k1,137:23312356,43279569:208606 +k1,137:26242017,43279569:208606 +k1,137:27102051,43279569:208606 +k1,137:31563944,43279569:208606 +k1,137:32583029,43279569:0 +) +(1,138:6630773,44121057:25952256,513147,134348 +k1,137:9794742,44121057:203052 +k1,137:11189239,44121057:203052 +k1,137:14176917,44121057:203053 +k1,137:16658656,44121057:203052 +k1,137:17521000,44121057:203052 +k1,137:18079912,44121057:203052 +k1,137:21962811,44121057:203052 +k1,137:23648287,44121057:203052 +k1,137:24382837,44121057:203053 +k1,137:27083466,44121057:203052 +k1,137:29966941,44121057:203052 +k1,137:31563944,44121057:203052 +k1,137:32583029,44121057:0 +) +(1,138:6630773,44962545:25952256,505283,134348 +g1,137:10533441,44962545 +g1,137:13019877,44962545 +g1,137:15946714,44962545 +k1,138:32583029,44962545:15846606 +g1,138:32583029,44962545 +) +] +(1,142:32583029,45706769:0,0,0 +g1,142:32583029,45706769 +) +) +] +(1,142:6630773,47279633:25952256,0,0 +h1,142:6630773,47279633:25952256,0,0 +) +] +h1,142:4262630,4025873:0,0,0 +] +!25601 }13 -Input:111:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:112:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:113:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:114:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!351 +Input:107:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:108:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:109:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:110:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!375 {14 -[1,156:4262630,47279633:28320399,43253760,0 -(1,156:4262630,4025873:0,0,0 -[1,156:-473657,4025873:25952256,0,0 -(1,156:-473657,-710414:25952256,0,0 -h1,156:-473657,-710414:0,0,0 -(1,156:-473657,-710414:0,0,0 -(1,156:-473657,-710414:0,0,0 -g1,156:-473657,-710414 -(1,156:-473657,-710414:65781,0,65781 -g1,156:-407876,-710414 -[1,156:-407876,-644633:0,0,0 +[1,162:4262630,47279633:28320399,43253760,0 +(1,162:4262630,4025873:0,0,0 +[1,162:-473657,4025873:25952256,0,0 +(1,162:-473657,-710414:25952256,0,0 +h1,162:-473657,-710414:0,0,0 +(1,162:-473657,-710414:0,0,0 +(1,162:-473657,-710414:0,0,0 +g1,162:-473657,-710414 +(1,162:-473657,-710414:65781,0,65781 +g1,162:-407876,-710414 +[1,162:-407876,-644633:0,0,0 ] ) -k1,156:-473657,-710414:-65781 +k1,162:-473657,-710414:-65781 ) ) -k1,156:25478599,-710414:25952256 -g1,156:25478599,-710414 +k1,162:25478599,-710414:25952256 +g1,162:25478599,-710414 ) ] ) -[1,156:6630773,47279633:25952256,43253760,0 -[1,156:6630773,4812305:25952256,786432,0 -(1,156:6630773,4812305:25952256,485622,11795 -(1,156:6630773,4812305:25952256,485622,11795 -g1,156:3078558,4812305 -[1,156:3078558,4812305:0,0,0 -(1,156:3078558,2439708:0,1703936,0 -k1,156:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,156:2537886,2439708:1179648,16384,0 +[1,162:6630773,47279633:25952256,43253760,0 +[1,162:6630773,4812305:25952256,786432,0 +(1,162:6630773,4812305:25952256,485622,11795 +(1,162:6630773,4812305:25952256,485622,11795 +g1,162:3078558,4812305 +[1,162:3078558,4812305:0,0,0 +(1,162:3078558,2439708:0,1703936,0 +k1,162:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,162:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,156:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,162:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,156:3078558,4812305:0,0,0 -(1,156:3078558,2439708:0,1703936,0 -g1,156:29030814,2439708 -g1,156:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,156:36151628,1915420:16384,1179648,0 +[1,162:3078558,4812305:0,0,0 +(1,162:3078558,2439708:0,1703936,0 +g1,162:29030814,2439708 +g1,162:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,162:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,156:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,162:37855564,2439708:1179648,16384,0 ) ) -k1,156:3078556,2439708:-34777008 +k1,162:3078556,2439708:-34777008 ) ] -[1,156:3078558,4812305:0,0,0 -(1,156:3078558,49800853:0,16384,2228224 -k1,156:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,156:2537886,49800853:1179648,16384,0 +[1,162:3078558,4812305:0,0,0 +(1,162:3078558,49800853:0,16384,2228224 +k1,162:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,162:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,156:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,162:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,156:3078558,4812305:0,0,0 -(1,156:3078558,49800853:0,16384,2228224 -g1,156:29030814,49800853 -g1,156:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,156:36151628,51504789:16384,1179648,0 -) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 -) -] -) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,156:37855564,49800853:1179648,16384,0 -) -) -k1,156:3078556,49800853:-34777008 -) -] -g1,156:6630773,4812305 -g1,156:6630773,4812305 -g1,156:7279579,4812305 -k1,156:32184571,4812305:24904992 -) -) -] -[1,156:6630773,45706769:25952256,40108032,0 -(1,156:6630773,45706769:25952256,40108032,0 -(1,156:6630773,45706769:0,0,0 -g1,156:6630773,45706769 -) -[1,156:6630773,45706769:25952256,40108032,0 -(1,133:6630773,6254097:25952256,555811,147783 -(1,133:6630773,6254097:2450326,534184,0 -g1,133:6630773,6254097 -g1,133:9081099,6254097 -) -g1,133:9825064,6254097 -g1,133:10828552,6254097 -g1,133:11454290,6254097 -k1,133:32583029,6254097:17881102 -g1,133:32583029,6254097 -) -(1,136:6630773,7488801:25952256,513147,134348 -k1,135:7233858,7488801:188242 -k1,135:7953608,7488801:188253 -k1,135:8497721,7488801:188253 -k1,135:11762234,7488801:188253 -k1,135:14792783,7488801:188253 -k1,135:17837751,7488801:188254 -k1,135:18973655,7488801:188253 -k1,135:20551271,7488801:188253 -k1,135:23294117,7488801:188253 -k1,135:24673815,7488801:188253 -k1,135:26251431,7488801:188253 -k1,135:30692315,7488801:188253 -k1,136:32583029,7488801:0 -) -(1,136:6630773,8330289:25952256,513147,134348 -k1,135:8006767,8330289:209453 -k1,135:8832258,8330289:209453 -k1,135:11672982,8330289:209453 -k1,135:12533863,8330289:209453 -k1,135:14435456,8330289:209453 -k1,135:16346879,8330289:209453 -k1,135:19377657,8330289:209453 -k1,135:22933378,8330289:209453 -k1,135:23600928,8330289:209453 -k1,135:24515548,8330289:209453 -k1,135:26292622,8330289:209453 -k1,135:27521160,8330289:209453 -k1,135:29418820,8330289:209453 -k1,135:30287565,8330289:209453 -k1,135:31923737,8330289:209453 -k1,135:32583029,8330289:0 -) -(1,136:6630773,9171777:25952256,513147,134348 -k1,135:9894728,9171777:187695 -k1,135:14608339,9171777:187695 -k1,135:15151894,9171777:187695 -k1,135:18265116,9171777:187695 -k1,135:22408564,9171777:187695 -k1,135:23127757,9171777:187696 -k1,135:24381723,9171777:187695 -k1,135:27041436,9171777:187695 -k1,135:28360938,9171777:187695 -k1,135:31757931,9171777:187695 -k1,136:32583029,9171777:0 -) -(1,136:6630773,10013265:25952256,513147,134348 -k1,135:8638414,10013265:170667 -k1,135:9436915,10013265:170666 -k1,135:11309552,10013265:170667 -k1,135:13608828,10013265:170667 -k1,135:14588864,10013265:170666 -k1,135:18830627,10013265:170667 -k1,135:22405889,10013265:170667 -k1,135:23259440,10013265:170666 -k1,135:24819470,10013265:170667 -k1,135:26706525,10013265:170667 -k1,135:27868751,10013265:170666 -k1,135:30316794,10013265:170667 -k1,136:32583029,10013265:0 -) -(1,136:6630773,10854753:25952256,513147,134348 -k1,135:8255959,10854753:258760 -k1,135:10489676,10854753:259117 -k1,135:10961368,10854753:258700 -k1,135:13998855,10854753:258760 -k1,135:16040850,10854753:258760 -k1,135:16958902,10854753:258760 -k1,135:18006060,10854753:258760 -k1,135:20685065,10854753:258760 -k1,135:21595252,10854753:258759 -k1,135:22873097,10854753:258760 -k1,135:24342962,10854753:258760 -k1,135:25886228,10854753:258760 -k1,135:26933386,10854753:258760 -k1,135:29280778,10854753:258760 -k1,135:32227169,10854753:258760 -k1,135:32583029,10854753:0 -) -(1,136:6630773,11696241:25952256,505283,134348 -k1,135:8243321,11696241:258574 -k1,135:10085901,11696241:258575 -k1,135:12757511,11696241:258574 -k1,135:15651289,11696241:258575 -k1,135:19214844,11696241:258574 -k1,135:21475544,11696241:258575 -k1,135:22925563,11696241:258574 -k1,135:26510089,11696241:258574 -k1,135:27183447,11696241:258515 -k1,135:29370747,11696241:258575 -k1,135:30242083,11696241:258574 -k1,136:32583029,11696241:0 -) -(1,136:6630773,12537729:25952256,513147,126483 -k1,135:7929416,12537729:274315 -k1,135:10369041,12537729:274315 -k1,135:11294784,12537729:274315 -k1,135:12357496,12537729:274314 -k1,135:16520717,12537729:274315 -k1,135:17407794,12537729:274315 -k1,135:18701194,12537729:274315 -k1,135:20290817,12537729:274315 -k1,135:21224424,12537729:274315 -k1,135:22874340,12537729:274315 -k1,135:23504514,12537729:274314 -k1,135:26809869,12537729:274315 -k1,135:28344441,12537729:274315 -k1,135:29278048,12537729:274315 -k1,135:32583029,12537729:0 -) -(1,136:6630773,13379217:25952256,513147,126483 -k1,135:8505639,13379217:185348 -k1,135:10693111,13379217:185347 -k1,135:11409956,13379217:185348 -k1,135:14159072,13379217:185348 -k1,135:15105947,13379217:185347 -k1,135:18102790,13379217:185348 -k1,135:23114208,13379217:185347 -k1,135:23958848,13379217:185348 -k1,135:27546825,13379217:185348 -k1,135:28923617,13379217:185347 -k1,135:31635378,13379217:185348 -k1,135:32583029,13379217:0 -) -(1,136:6630773,14220705:25952256,513147,134348 -k1,135:8302961,14220705:205492 -k1,135:13352218,14220705:205491 -k1,135:14749155,14220705:205492 -k1,135:18211131,14220705:205492 -k1,135:22078774,14220705:205491 -k1,135:22935694,14220705:205492 -k1,135:27667102,14220705:205492 -k1,135:29069280,14220705:205491 -k1,135:30928245,14220705:205492 -k1,135:32583029,14220705:0 -) -(1,136:6630773,15062193:25952256,505283,126483 -g1,135:9993425,15062193 -g1,135:11296936,15062193 -g1,135:12243931,15062193 -g1,135:13728976,15062193 -g1,135:15729134,15062193 -g1,135:19021007,15062193 -g1,135:19981764,15062193 -g1,135:21561837,15062193 -g1,135:23257253,15062193 -g1,135:25743033,15062193 -g1,135:26558300,15062193 -k1,136:32583029,15062193:5436216 -g1,136:32583029,15062193 -) -(1,138:6630773,15903681:25952256,513147,126483 -h1,137:6630773,15903681:983040,0,0 -k1,137:8591504,15903681:159802 -k1,137:12169008,15903681:159801 -k1,137:14357805,15903681:159802 -k1,137:14932411,15903681:159763 -k1,137:17348617,15903681:159801 -k1,137:18194581,15903681:159802 -k1,137:18710243,15903681:159802 -k1,137:20117850,15903681:159801 -k1,137:21469097,15903681:159802 -k1,137:25528291,15903681:159802 -k1,137:30744850,15903681:159801 -k1,137:31563944,15903681:159802 -k1,138:32583029,15903681:0 -) -(1,138:6630773,16745169:25952256,505283,134348 -k1,137:7220377,16745169:236365 -k1,137:10299075,16745169:236402 -k1,137:12850864,16745169:236402 -k1,137:14278712,16745169:236403 -k1,137:17727689,16745169:236402 -k1,137:19731745,16745169:236550 -k1,137:22076441,16745169:236403 -k1,137:22917085,16745169:236402 -k1,137:23888220,16745169:236476 -k1,137:26099445,16745169:236625 -k1,137:27289397,16745169:236403 -k1,137:28658261,16745169:236402 -k1,137:31563944,16745169:236402 -k1,137:32583029,16745169:0 -) -(1,138:6630773,17586657:25952256,513147,134348 -k1,137:9485996,17586657:249512 -k1,137:10394800,17586657:249512 -k1,137:11663397,17586657:249512 -k1,137:12327702,17586657:249462 -k1,137:15419510,17586657:249512 -k1,137:16285060,17586657:249512 -k1,137:17988161,17586657:249512 -k1,137:21159268,17586657:249512 -k1,137:22897103,17586657:249512 -k1,137:23359557,17586657:249462 -k1,137:26432360,17586657:249512 -k1,137:27629523,17586657:249512 -k1,137:29622948,17586657:249512 -k1,137:31266411,17586657:249512 -k1,138:32583029,17586657:0 -) -(1,138:6630773,18428145:25952256,513147,134348 -k1,137:10072724,18428145:193331 -k1,137:13852840,18428145:193331 -k1,137:15330677,18428145:193331 -k1,137:15982105,18428145:193331 -k1,137:17668346,18428145:193331 -k1,137:19336892,18428145:193331 -k1,137:21222363,18428145:193331 -k1,137:24021405,18428145:193331 -k1,137:25499242,18428145:193331 -k1,137:27408306,18428145:193331 -k1,137:28059734,18428145:193331 -k1,137:31015408,18428145:193331 -k1,137:32583029,18428145:0 -) -(1,138:6630773,19269633:25952256,513147,134348 -k1,137:8549848,19269633:217105 -k1,137:12071933,19269633:217104 -k1,137:13802264,19269633:217105 -k1,137:18371614,19269633:217104 -k1,137:21934987,19269633:217105 -k1,137:23194113,19269633:217104 -k1,137:26246305,19269633:217105 -k1,137:26878234,19269633:217086 -k1,137:28588249,19269633:217105 -k1,137:29871624,19269633:217104 -k1,137:31563944,19269633:217105 -k1,137:32583029,19269633:0 -) -(1,138:6630773,20111121:25952256,513147,126483 -k1,137:8492520,20111121:194511 -k1,137:10073117,20111121:194511 -k1,137:12419830,20111121:194511 -k1,137:13281496,20111121:194510 -k1,137:15420460,20111121:194511 -k1,137:16297856,20111121:194511 -k1,137:17949232,20111121:194511 -k1,137:18613636,20111121:194511 -k1,137:19909152,20111121:194511 -k1,137:23180578,20111121:194511 -k1,137:24659595,20111121:194511 -k1,137:25958387,20111121:194510 -k1,137:27505561,20111121:194511 -k1,137:30008250,20111121:194511 -k1,137:31394206,20111121:194511 -k1,138:32583029,20111121:0 -) -(1,138:6630773,20952609:25952256,513147,134348 -k1,137:8563823,20952609:175374 -k1,137:9425359,20952609:175374 -k1,137:12573446,20952609:175374 -k1,137:15420723,20952609:175374 -k1,137:17246294,20952609:175374 -k1,137:19777033,20952609:175375 -k1,137:22694433,20952609:175374 -k1,137:26386469,20952609:175374 -k1,137:27509494,20952609:175374 -k1,137:29178434,20952609:175374 -k1,137:32583029,20952609:0 -) -(1,138:6630773,21794097:25952256,513147,134348 -k1,137:8280248,21794097:207028 -k1,137:10189247,21794097:207029 -k1,137:13742543,21794097:207028 -k1,137:16292483,21794097:207028 -k1,137:19745510,21794097:207029 -k1,137:22712914,21794097:207028 -k1,137:25270718,21794097:207028 -k1,137:26669191,21794097:207028 -k1,137:28084049,21794097:207029 -k1,137:29960934,21794097:207028 -k1,137:32583029,21794097:0 -) -(1,138:6630773,22635585:25952256,513147,134348 -k1,137:10145318,22635585:203011 -k1,137:11742279,22635585:203010 -k1,137:13637430,22635585:203011 -k1,137:14499732,22635585:203010 -k1,137:16399470,22635585:203011 -k1,137:21116601,22635585:203011 -k1,137:21978903,22635585:203010 -k1,137:23200999,22635585:203011 -k1,137:23818849,22635585:203007 -k1,137:27037826,22635585:203010 -k1,137:28282859,22635585:203011 -k1,137:30229782,22635585:203010 -k1,137:32168186,22635585:203011 -k1,138:32583029,22635585:0 -) -(1,138:6630773,23477073:25952256,513147,134348 -k1,137:10963060,23477073:231699 -k1,137:11877645,23477073:231700 -k1,137:14367059,23477073:231699 -k1,137:16283690,23477073:231700 -k1,137:18850437,23477073:231699 -k1,137:20778864,23477073:231700 -k1,137:25103942,23477073:231699 -k1,137:27941353,23477073:231700 -k1,137:29888785,23477073:231699 -k1,137:31138914,23477073:231700 -k1,137:31726473,23477073:231699 -k1,137:32583029,23477073:0 -) -(1,138:6630773,24318561:25952256,505283,134348 -g1,137:8700400,24318561 -g1,137:9661157,24318561 -g1,137:11893968,24318561 -k1,138:32583029,24318561:18486396 -g1,138:32583029,24318561 -) -v1,140:6630773,25684337:0,393216,0 -(1,141:6630773,29727856:25952256,4436735,616038 -g1,141:6630773,29727856 -(1,141:6630773,29727856:25952256,4436735,616038 -(1,141:6630773,30343894:25952256,5052773,0 -[1,141:6630773,30343894:25952256,5052773,0 -(1,141:6630773,30317680:25952256,5000345,0 -r1,141:6656987,30317680:26214,5000345,0 -[1,141:6656987,30317680:25899828,5000345,0 -(1,141:6656987,29727856:25899828,3820697,0 -[1,141:7246811,29727856:24720180,3820697,0 -(1,141:7246811,27069044:24720180,1161885,196608 -(1,140:7246811,27069044:0,1161885,196608 -r1,141:8794447,27069044:1547636,1358493,196608 -k1,140:7246811,27069044:-1547636 -) -(1,140:7246811,27069044:1547636,1161885,196608 -) -k1,140:9065209,27069044:270762 -k1,140:11053013,27069044:270761 -k1,140:14496373,27069044:270762 -k1,140:16242349,27069044:270761 -k1,140:18023061,27069044:270762 -k1,140:22670316,27069044:270761 -k1,140:24132523,27069044:270762 -k1,140:25911923,27069044:270761 -k1,140:29085275,27069044:270762 -k1,140:30457041,27069044:270761 -k1,140:31966991,27069044:0 -) -(1,141:7246811,27910532:24720180,513147,126483 -k1,140:10220343,27910532:278692 -k1,140:13054284,27910532:278692 -k1,140:13921489,27910532:278692 -k1,140:14816218,27910532:278691 -k1,140:17726181,27910532:278692 -k1,140:18536370,27910532:278692 -k1,140:19881333,27910532:278692 -k1,140:24536519,27910532:278692 -k1,140:26006656,27910532:278692 -k1,140:27940131,27910532:278691 -k1,140:28750320,27910532:278692 -k1,140:29838382,27910532:278692 -k1,140:31966991,27910532:0 -) -(1,141:7246811,28752020:24720180,513147,134348 -k1,140:10442909,28752020:293508 -k1,140:13992245,28752020:293507 -k1,140:15209155,28752020:293508 -k1,140:16521748,28752020:293508 -k1,140:17230004,28752020:293413 -k1,140:20365808,28752020:293508 -k1,140:21190813,28752020:293508 -k1,140:23865898,28752020:293507 -k1,140:24920934,28752020:293508 -k1,140:26233527,28752020:293508 -k1,140:29286756,28752020:293508 -k1,140:30239555,28752020:293507 -k1,140:31552148,28752020:293508 -k1,141:31966991,28752020:0 -) -(1,141:7246811,29593508:24720180,355205,134348 -k1,141:31966992,29593508:21804484 -g1,141:31966992,29593508 -) -] -) -] -r1,141:32583029,30317680:26214,5000345,0 -) -] -) -) -g1,141:32583029,29727856 -) -h1,141:6630773,30343894:0,0,0 -(1,143:6630773,32435154:25952256,534184,147783 -(1,143:6630773,32435154:2450326,534184,12975 -g1,143:6630773,32435154 -g1,143:9081099,32435154 -) -g1,143:9825064,32435154 -g1,143:10828552,32435154 -g1,143:11454290,32435154 -g1,143:15171230,32435154 -k1,143:32583029,32435154:14301133 -g1,143:32583029,32435154 -) -(1,147:6630773,33669858:25952256,513147,134348 -k1,146:8027546,33669858:200086 -k1,146:8642475,33669858:200086 -k1,146:11584587,33669858:200086 -k1,146:13390306,33669858:200087 -k1,146:14121889,33669858:200086 -k1,146:18395038,33669858:200086 -k1,146:19786570,33669858:200087 -k1,146:21005741,33669858:200086 -k1,146:23314777,33669858:200087 -k1,146:25011050,33669858:200086 -k1,146:25742633,33669858:200086 -k1,146:28726689,33669858:200087 -k1,146:29874426,33669858:200086 -k1,146:32583029,33669858:0 -) -(1,147:6630773,34511346:25952256,513147,126483 -k1,146:7522822,34511346:240621 -k1,146:10242015,34511346:240621 -k1,146:12744939,34511346:240621 -k1,146:14177005,34511346:240621 -k1,146:15683782,34511346:240621 -k1,146:16411949,34511346:240579 -k1,146:18368958,34511346:240621 -k1,146:21119608,34511346:240621 -k1,146:22019521,34511346:240621 -k1,146:23971287,34511346:240621 -k1,146:25344370,34511346:240621 -k1,146:27999337,34511346:240621 -k1,146:31548871,34511346:240621 -k1,147:32583029,34511346:0 -) -(1,147:6630773,35352834:25952256,513147,134348 -k1,146:10598525,35352834:190257 -k1,146:11440209,35352834:190256 -k1,146:12649551,35352834:190257 -k1,146:13254642,35352834:190248 -k1,146:16186924,35352834:190256 -k1,146:18156483,35352834:190257 -k1,146:19418908,35352834:190256 -k1,146:20067262,35352834:190257 -k1,146:20789016,35352834:190257 -k1,146:23782902,35352834:190256 -k1,146:25164604,35352834:190257 -k1,146:27098773,35352834:190256 -k1,146:31591469,35352834:190257 -k1,146:32583029,35352834:0 -) -(1,147:6630773,36194322:25952256,505283,134348 -k1,146:10007898,36194322:167827 -k1,146:10791764,36194322:167828 -k1,146:13318232,36194322:167827 -k1,146:13900871,36194322:167796 -k1,146:16593145,36194322:167827 -k1,146:17957659,36194322:167827 -k1,146:21672951,36194322:167828 -k1,146:22859863,36194322:167827 -k1,146:23442502,36194322:167796 -k1,146:26352355,36194322:167827 -k1,146:27388534,36194322:167827 -k1,146:30044764,36194322:167828 -k1,146:31478747,36194322:167827 -k1,146:32583029,36194322:0 -) -(1,147:6630773,37035810:25952256,513147,134348 -k1,146:7658705,37035810:280166 -k1,146:9417363,37035810:280166 -k1,146:10645181,37035810:280167 -k1,146:13687690,37035810:280166 -k1,146:17021834,37035810:280166 -k1,146:19878220,37035810:280166 -k1,146:21349831,37035810:280166 -k1,146:24706258,37035810:280167 -k1,146:28152468,37035810:280166 -k1,146:29629321,37035810:280166 -k1,146:32583029,37035810:0 -) -(1,147:6630773,37877298:25952256,513147,134348 -k1,146:7534971,37877298:244906 -k1,146:8798963,37877298:244907 -k1,146:9458666,37877298:244860 -k1,146:13186812,37877298:244907 -k1,146:15011791,37877298:244906 -k1,146:16972430,37877298:244906 -k1,146:17988040,37877298:244907 -k1,146:21442244,37877298:244906 -k1,146:23459900,37877298:244907 -k1,146:24356234,37877298:244906 -k1,146:26109123,37877298:244906 -k1,146:27373115,37877298:244907 -k1,146:29791195,37877298:244906 -k1,146:32583029,37877298:0 -) -(1,147:6630773,38718786:25952256,513147,126483 -k1,146:8430451,38718786:232057 -k1,146:12464251,38718786:232057 -k1,146:14273759,38718786:232056 -k1,146:15315186,38718786:232057 -k1,146:16313359,38718786:232057 -k1,146:17564501,38718786:232057 -k1,146:20558901,38718786:232057 -k1,146:22763592,38718786:232057 -k1,146:24187093,38718786:232056 -k1,146:27495410,38718786:232057 -k1,146:31896867,38718786:232057 -k1,146:32583029,38718786:0 -) -(1,147:6630773,39560274:25952256,505283,126483 -k1,146:10139868,39560274:228363 -k1,146:11054393,39560274:228363 -k1,146:14086386,39560274:228363 -k1,146:15511436,39560274:228363 -k1,146:16916826,39560274:228363 -k1,146:17676687,39560274:228364 -k1,146:18556478,39560274:228363 -k1,146:20927868,39560274:228363 -k1,146:22440737,39560274:228363 -k1,146:27063289,39560274:228363 -k1,146:29302297,39560274:228363 -k1,146:32583029,39560274:0 -) -(1,147:6630773,40401762:25952256,513147,134348 -k1,146:9046270,40401762:242323 -k1,146:10354864,40401762:242323 -k1,146:11972787,40401762:242322 -k1,146:14248037,40401762:242323 -k1,146:17037089,40401762:242323 -k1,146:17930840,40401762:242323 -k1,146:18587962,40401762:242279 -k1,146:19902454,40401762:242323 -k1,146:21430593,40401762:242323 -k1,146:23705842,40401762:242322 -k1,146:26710508,40401762:242323 -k1,146:30006809,40401762:242323 -k1,146:32583029,40401762:0 -) -(1,147:6630773,41243250:25952256,505283,134348 -g1,146:7976227,41243250 -g1,146:10102214,41243250 -g1,146:11753065,41243250 -g1,146:15139965,41243250 -g1,146:16209513,41243250 -g1,146:17199761,41243250 -g1,146:18590435,41243250 -g1,146:22903358,41243250 -g1,146:24294032,41243250 -g1,146:27569521,41243250 -k1,147:32583029,41243250:1847464 -g1,147:32583029,41243250 -) -(1,155:6630773,42084738:25952256,513147,134348 -h1,154:6630773,42084738:983040,0,0 -k1,154:9037811,42084738:227311 -k1,154:9679937,42084738:227283 -k1,154:12649275,42084738:227312 -k1,154:14369496,42084738:227311 -k1,154:15663078,42084738:227311 -k1,154:17365605,42084738:227312 -k1,154:17948776,42084738:227311 -k1,154:21125862,42084738:227311 -k1,154:22734018,42084738:227312 -k1,154:25771513,42084738:227311 -k1,154:27750601,42084738:227311 -k1,154:28660798,42084738:227312 -k1,154:31015408,42084738:227311 -k1,154:32583029,42084738:0 -) -(1,155:6630773,42926226:25952256,513147,126483 -k1,154:8747641,42926226:231397 -k1,154:9630465,42926226:231396 -k1,154:11350185,42926226:231397 -k1,154:14343924,42926226:231396 -k1,154:16291709,42926226:231397 -k1,154:17182397,42926226:231396 -k1,154:20288203,42926226:231397 -k1,154:23032249,42926226:231396 -k1,154:24282731,42926226:231397 -k1,154:25894971,42926226:231396 -k1,154:27842756,42926226:231397 -k1,154:29093237,42926226:231396 -k1,154:32583029,42926226:0 -) -(1,155:6630773,43767714:25952256,505283,134348 -k1,154:7470900,43767714:227365 -k1,154:8717350,43767714:227365 -k1,154:9359530,43767714:227337 -k1,154:12007140,43767714:227365 -k1,154:14426684,43767714:227365 -h1,154:15397272,43767714:0,0,0 -k1,154:16005401,43767714:227365 -k1,154:17429453,43767714:227365 -k1,154:19310291,43767714:227365 -k1,154:21739667,43767714:227366 -k1,154:25456824,43767714:227365 -k1,154:26788471,43767714:227365 -k1,154:28301652,43767714:227365 -k1,154:29276783,43767714:227365 -k1,154:31315563,43767714:227365 -k1,154:32583029,43767714:0 -) -(1,155:6630773,44609202:25952256,513147,126483 -k1,154:7252622,44609202:265989 -k1,154:8744790,44609202:265989 -k1,154:10167488,44609202:265988 -k1,154:11601984,44609202:265989 -k1,154:12629501,44609202:265989 -k1,154:14237667,44609202:265989 -k1,154:15695101,44609202:265989 -k1,154:17454655,44609202:265988 -k1,154:18076504,44609202:265989 -k1,154:19499203,44609202:265989 -k1,154:21632968,44609202:265989 -k1,154:22254817,44609202:265989 -k1,154:24952191,44609202:265988 -k1,154:26322462,44609202:265989 -k1,154:29798404,44609202:265989 -k1,154:32583029,44609202:0 -) -(1,155:6630773,45450690:25952256,513147,134348 -k1,154:8890505,45450690:230737 -k1,154:9780534,45450690:230737 -k1,154:11030356,45450690:230737 -k1,154:12914566,45450690:230737 -k1,154:16085248,45450690:230737 -k1,154:16975277,45450690:230737 -k1,154:20869476,45450690:230736 -k1,154:22883448,45450690:230737 -k1,154:23982537,45450690:230737 -k1,154:25809731,45450690:230737 -k1,154:26653230,45450690:230737 -k1,154:27903052,45450690:230737 -k1,154:30554034,45450690:230737 -k1,154:32583029,45450690:0 -) -] -(1,156:32583029,45706769:0,0,0 -g1,156:32583029,45706769 -) -) -] -(1,156:6630773,47279633:25952256,0,0 -h1,156:6630773,47279633:25952256,0,0 -) -] -h1,156:4262630,4025873:0,0,0 -] -!22486 +[1,162:3078558,4812305:0,0,0 +(1,162:3078558,49800853:0,16384,2228224 +g1,162:29030814,49800853 +g1,162:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,162:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 +) +] +) +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,162:37855564,49800853:1179648,16384,0 +) +) +k1,162:3078556,49800853:-34777008 +) +] +g1,162:6630773,4812305 +g1,162:6630773,4812305 +g1,162:7279579,4812305 +k1,162:32184571,4812305:24904992 +) +) +] +[1,162:6630773,45706769:25952256,40108032,0 +(1,162:6630773,45706769:25952256,40108032,0 +(1,162:6630773,45706769:0,0,0 +g1,162:6630773,45706769 +) +[1,162:6630773,45706769:25952256,40108032,0 +(1,139:6630773,6254097:25952256,555811,147783 +(1,139:6630773,6254097:2450326,534184,0 +g1,139:6630773,6254097 +g1,139:9081099,6254097 +) +g1,139:9825064,6254097 +g1,139:10828552,6254097 +g1,139:11454290,6254097 +k1,139:32583029,6254097:17881102 +g1,139:32583029,6254097 +) +(1,142:6630773,7488801:25952256,513147,134348 +k1,141:7262797,7488801:217181 +k1,141:8011492,7488801:217198 +k1,141:8584551,7488801:217199 +k1,141:11878010,7488801:217199 +k1,141:14937505,7488801:217199 +k1,141:18011417,7488801:217198 +k1,141:19176267,7488801:217199 +k1,141:20782829,7488801:217199 +k1,141:23554621,7488801:217199 +k1,141:24963265,7488801:217199 +k1,141:26569826,7488801:217198 +k1,141:31039656,7488801:217199 +k1,142:32583029,7488801:0 +) +(1,142:6630773,8330289:25952256,513147,134348 +k1,141:8391351,8330289:246696 +k1,141:9254085,8330289:246696 +k1,141:12132052,8330289:246696 +k1,141:13030177,8330289:246697 +k1,141:14969013,8330289:246696 +k1,141:16917679,8330289:246696 +k1,141:19985700,8330289:246696 +k1,141:23578664,8330289:246696 +k1,141:24283457,8330289:246696 +k1,141:25235320,8330289:246696 +k1,141:27049638,8330289:246697 +k1,141:28315419,8330289:246696 +k1,141:30250322,8330289:246696 +k1,141:31156310,8330289:246696 +k1,141:32583029,8330289:0 +) +(1,142:6630773,9171777:25952256,513147,134348 +k1,141:7601492,9171777:311427 +k1,141:10989179,9171777:311427 +k1,141:15826522,9171777:311427 +k1,141:16493809,9171777:311427 +k1,141:19730764,9171777:311428 +k1,141:23997944,9171777:311427 +k1,141:24840868,9171777:311427 +k1,141:26218566,9171777:311427 +k1,141:29002011,9171777:311427 +k1,141:30445245,9171777:311427 +k1,142:32583029,9171777:0 +) +(1,142:6630773,10013265:25952256,513147,134348 +k1,141:8116748,10013265:201469 +k1,141:10767296,10013265:201468 +k1,141:11596600,10013265:201469 +k1,141:13500038,10013265:201468 +k1,141:15830116,10013265:201469 +k1,141:16840955,10013265:201469 +k1,141:21113519,10013265:201468 +k1,141:24719583,10013265:201469 +k1,141:25603936,10013265:201468 +k1,141:27194768,10013265:201469 +k1,141:29112624,10013265:201468 +k1,141:30305653,10013265:201469 +k1,141:32583029,10013265:0 +) +(1,142:6630773,10854753:25952256,513147,134348 +(1,141:6837867,10854753:4959765,505283,11795 +) +k1,141:12334864,10854753:156468 +k1,141:12704025,10854753:156169 +k1,141:15638963,10854753:156211 +k1,141:17578409,10854753:156211 +k1,141:18393912,10854753:156211 +k1,141:19338521,10854753:156211 +k1,141:21914977,10854753:156211 +k1,141:22722616,10854753:156211 +k1,141:23897912,10854753:156211 +k1,141:25265229,10854753:156212 +k1,141:26705946,10854753:156211 +k1,141:27650555,10854753:156211 +k1,141:29895398,10854753:156211 +k1,141:32583029,10854753:0 +) +(1,142:6630773,11696241:25952256,505283,134348 +k1,141:7223658,11696241:237025 +k1,141:8814656,11696241:237024 +k1,141:10635686,11696241:237025 +k1,141:13285747,11696241:237025 +k1,141:16157975,11696241:237025 +k1,141:19699980,11696241:237024 +k1,141:21939130,11696241:237025 +k1,141:23367600,11696241:237025 +k1,141:26930577,11696241:237025 +k1,141:27582407,11696241:236987 +k1,141:29748156,11696241:237024 +k1,141:30597943,11696241:237025 +k1,142:32583029,11696241:0 +) +(1,142:6630773,12537729:25952256,513147,126483 +k1,141:8259857,12537729:248896 +k1,141:10674064,12537729:248897 +k1,141:11574388,12537729:248896 +k1,141:12611682,12537729:248896 +k1,141:16749484,12537729:248896 +k1,141:17611143,12537729:248897 +k1,141:18879124,12537729:248896 +k1,141:20443328,12537729:248896 +k1,141:21351517,12537729:248897 +k1,141:22976014,12537729:248896 +k1,141:23580770,12537729:248896 +k1,141:26860706,12537729:248896 +k1,141:28369860,12537729:248897 +k1,141:29278048,12537729:248896 +k1,141:32583029,12537729:0 +) +(1,142:6630773,13379217:25952256,513147,126483 +k1,141:8505639,13379217:185348 +k1,141:10693111,13379217:185347 +k1,141:11409956,13379217:185348 +k1,141:14159072,13379217:185348 +k1,141:15105947,13379217:185347 +k1,141:18102790,13379217:185348 +k1,141:23114208,13379217:185347 +k1,141:23958848,13379217:185348 +k1,141:27546825,13379217:185348 +k1,141:28923617,13379217:185347 +k1,141:31635378,13379217:185348 +k1,141:32583029,13379217:0 +) +(1,142:6630773,14220705:25952256,513147,134348 +k1,141:8302961,14220705:205492 +k1,141:13352218,14220705:205491 +k1,141:14749155,14220705:205492 +k1,141:18211131,14220705:205492 +k1,141:22078774,14220705:205491 +k1,141:22935694,14220705:205492 +k1,141:27667102,14220705:205492 +k1,141:29069280,14220705:205491 +k1,141:30928245,14220705:205492 +k1,141:32583029,14220705:0 +) +(1,142:6630773,15062193:25952256,505283,126483 +g1,141:9993425,15062193 +g1,141:11296936,15062193 +g1,141:12243931,15062193 +g1,141:13728976,15062193 +g1,141:15729134,15062193 +g1,141:19021007,15062193 +g1,141:19981764,15062193 +g1,141:21561837,15062193 +g1,141:23257253,15062193 +g1,141:25743033,15062193 +g1,141:26558300,15062193 +k1,142:32583029,15062193:5436216 +g1,142:32583029,15062193 +) +(1,144:6630773,15903681:25952256,513147,126483 +h1,143:6630773,15903681:983040,0,0 +k1,143:8591504,15903681:159802 +k1,143:12169008,15903681:159801 +k1,143:14357805,15903681:159802 +k1,143:14932411,15903681:159763 +k1,143:17348617,15903681:159801 +k1,143:18194581,15903681:159802 +k1,143:18710243,15903681:159802 +k1,143:20117850,15903681:159801 +k1,143:21469097,15903681:159802 +k1,143:25528291,15903681:159802 +k1,143:30744850,15903681:159801 +k1,143:31563944,15903681:159802 +k1,144:32583029,15903681:0 +) +(1,144:6630773,16745169:25952256,513147,134348 +k1,143:7199326,16745169:215314 +k1,143:10256951,16745169:215329 +(1,143:10464045,16745169:3874488,505283,11795 +) +k1,143:14727598,16745169:215395 +(1,143:14727598,16745169:3874488,505283,11795 +) +k1,143:19198276,16745169:215426 +k1,143:20367155,16745169:215330 +k1,143:21714946,16745169:215329 +k1,143:24599557,16745169:215330 +k1,143:25833972,16745169:215330 +k1,143:28655013,16745169:215330 +k1,143:29529635,16745169:215330 +k1,143:30764049,16745169:215329 +k1,143:31394206,16745169:215314 +k1,144:32583029,16745169:0 +) +(1,144:6630773,17586657:25952256,513147,134348 +k1,143:8728642,17586657:231404 +k1,143:9576085,17586657:231405 +k1,143:11261078,17586657:231404 +k1,143:14414078,17586657:231405 +k1,143:16133805,17586657:231404 +k1,143:16578170,17586657:231373 +k1,143:19632865,17586657:231404 +k1,143:20811921,17586657:231405 +k1,143:22787238,17586657:231404 +k1,143:24412594,17586657:231405 +k1,143:28996244,17586657:231404 +k1,143:32583029,17586657:0 +) +(1,144:6630773,18428145:25952256,513147,126483 +k1,143:8117987,18428145:202708 +k1,143:8778791,18428145:202707 +k1,143:10474409,18428145:202708 +k1,143:12152332,18428145:202708 +k1,143:14047179,18428145:202707 +k1,143:16855598,18428145:202708 +k1,143:18342812,18428145:202708 +k1,143:20261253,18428145:202708 +k1,143:20922057,18428145:202707 +k1,143:23887108,18428145:202708 +k1,143:25657437,18428145:202708 +k1,143:27562114,18428145:202707 +k1,143:31069803,18428145:202708 +k1,143:32583029,18428145:0 +) +(1,144:6630773,19269633:25952256,513147,134348 +k1,143:11118784,19269633:135765 +k1,143:14600818,19269633:135766 +k1,143:15778605,19269633:135765 +k1,143:18749457,19269633:135765 +k1,143:19300002,19269633:135702 +k1,143:20928678,19269633:135766 +k1,143:22130714,19269633:135765 +k1,143:23741694,19269633:135765 +k1,143:24896545,19269633:135766 +k1,143:26699546,19269633:135765 +k1,143:28221397,19269633:135765 +k1,143:30509365,19269633:135766 +k1,143:31312286,19269633:135765 +k1,144:32583029,19269633:0 +) +(1,144:6630773,20111121:25952256,505283,134348 +k1,143:7658377,20111121:140902 +k1,143:8482165,20111121:140903 +k1,143:10079932,20111121:140902 +k1,143:10690727,20111121:140902 +k1,143:11932634,20111121:140902 +k1,143:15150452,20111121:140903 +k1,143:16575860,20111121:140902 +k1,143:17821044,20111121:140902 +k1,143:19314610,20111121:140903 +k1,143:21763690,20111121:140902 +k1,143:23096037,20111121:140902 +k1,143:25970446,20111121:140902 +k1,143:26797511,20111121:140903 +k1,143:29911126,20111121:140902 +k1,143:32583029,20111121:0 +) +(1,144:6630773,20952609:25952256,513147,134348 +k1,143:8459555,20952609:178585 +k1,143:10993505,20952609:178586 +k1,143:13914116,20952609:178585 +k1,143:17609364,20952609:178586 +k1,143:18735600,20952609:178585 +k1,143:20407752,20952609:178586 +k1,143:23990932,20952609:178585 +k1,143:25611965,20952609:178586 +k1,143:27492520,20952609:178585 +k1,143:31017374,20952609:178586 +k1,144:32583029,20952609:0 +) +(1,144:6630773,21794097:25952256,513147,134348 +k1,143:7880723,21794097:259701 +k1,143:11386423,21794097:259702 +k1,143:14406500,21794097:259701 +k1,143:17016977,21794097:259701 +k1,143:18468123,21794097:259701 +k1,143:19935654,21794097:259702 +k1,143:21865212,21794097:259701 +k1,143:24747008,21794097:259701 +k1,143:28318243,21794097:259701 +k1,143:29971896,21794097:259702 +k1,143:31923737,21794097:259701 +k1,143:32583029,21794097:0 +) +(1,144:6630773,22635585:25952256,513147,134348 +k1,143:8548742,22635585:221242 +k1,143:13284105,22635585:221243 +k1,143:14164639,22635585:221242 +k1,143:15404966,22635585:221242 +k1,143:16041029,22635585:221220 +k1,143:19278239,22635585:221243 +k1,143:20541503,22635585:221242 +k1,143:22506658,22635585:221242 +k1,143:24463293,22635585:221242 +k1,143:25099356,22635585:221220 +k1,143:29421187,22635585:221243 +k1,143:30325314,22635585:221242 +k1,143:32583029,22635585:0 +) +(1,144:6630773,23477073:25952256,513147,134348 +g1,143:8514933,23477073 +g1,143:11049210,23477073 +g1,143:12945166,23477073 +g1,143:17237774,23477073 +g1,143:20042714,23477073 +g1,143:21957676,23477073 +g1,143:23175334,23477073 +g1,143:23730423,23477073 +g1,143:24786208,23477073 +g1,143:26855835,23477073 +g1,143:27816592,23477073 +g1,143:30049403,23477073 +k1,144:32583029,23477073:330961 +g1,144:32583029,23477073 +) +v1,146:6630773,24842849:0,393216,0 +(1,147:6630773,28886368:25952256,4436735,616038 +g1,147:6630773,28886368 +(1,147:6630773,28886368:25952256,4436735,616038 +(1,147:6630773,29502406:25952256,5052773,0 +[1,147:6630773,29502406:25952256,5052773,0 +(1,147:6630773,29476192:25952256,5000345,0 +r1,147:6656987,29476192:26214,5000345,0 +[1,147:6656987,29476192:25899828,5000345,0 +(1,147:6656987,28886368:25899828,3820697,0 +[1,147:7246811,28886368:24720180,3820697,0 +(1,147:7246811,26227556:24720180,1161885,196608 +(1,146:7246811,26227556:0,1161885,196608 +r1,147:8794447,26227556:1547636,1358493,196608 +k1,146:7246811,26227556:-1547636 +) +(1,146:7246811,26227556:1547636,1161885,196608 +) +k1,146:9065209,26227556:270762 +k1,146:11053013,26227556:270761 +k1,146:14496373,26227556:270762 +k1,146:16242349,26227556:270761 +k1,146:18023061,26227556:270762 +k1,146:22670316,26227556:270761 +k1,146:24132523,26227556:270762 +k1,146:25911923,26227556:270761 +k1,146:29085275,26227556:270762 +k1,146:30457041,26227556:270761 +k1,146:31966991,26227556:0 +) +(1,147:7246811,27069044:24720180,513147,126483 +k1,146:10220343,27069044:278692 +k1,146:13054284,27069044:278692 +k1,146:13921489,27069044:278692 +k1,146:14816218,27069044:278691 +k1,146:17726181,27069044:278692 +k1,146:18536370,27069044:278692 +k1,146:19881333,27069044:278692 +k1,146:24536519,27069044:278692 +k1,146:26006656,27069044:278692 +k1,146:27940131,27069044:278691 +k1,146:28750320,27069044:278692 +k1,146:29838382,27069044:278692 +k1,146:31966991,27069044:0 +) +(1,147:7246811,27910532:24720180,513147,134348 +k1,146:10442909,27910532:293508 +k1,146:13992245,27910532:293507 +k1,146:15209155,27910532:293508 +k1,146:16521748,27910532:293508 +k1,146:17230004,27910532:293413 +k1,146:20365808,27910532:293508 +k1,146:21190813,27910532:293508 +k1,146:23865898,27910532:293507 +k1,146:24920934,27910532:293508 +k1,146:26233527,27910532:293508 +k1,146:29286756,27910532:293508 +k1,146:30239555,27910532:293507 +k1,146:31552148,27910532:293508 +k1,147:31966991,27910532:0 +) +(1,147:7246811,28752020:24720180,355205,134348 +k1,147:31966992,28752020:21804484 +g1,147:31966992,28752020 +) +] +) +] +r1,147:32583029,29476192:26214,5000345,0 +) +] +) +) +g1,147:32583029,28886368 +) +h1,147:6630773,29502406:0,0,0 +(1,149:6630773,31593666:25952256,534184,147783 +(1,149:6630773,31593666:2450326,534184,12975 +g1,149:6630773,31593666 +g1,149:9081099,31593666 +) +g1,149:9825064,31593666 +g1,149:10828552,31593666 +g1,149:11454290,31593666 +g1,149:15171230,31593666 +k1,149:32583029,31593666:14301133 +g1,149:32583029,31593666 +) +(1,153:6630773,32828370:25952256,513147,134348 +k1,152:8027546,32828370:200086 +k1,152:8642475,32828370:200086 +k1,152:11584587,32828370:200086 +k1,152:13390306,32828370:200087 +k1,152:14121889,32828370:200086 +k1,152:18395038,32828370:200086 +k1,152:19786570,32828370:200087 +k1,152:21005741,32828370:200086 +k1,152:23314777,32828370:200087 +k1,152:25011050,32828370:200086 +k1,152:25742633,32828370:200086 +k1,152:28726689,32828370:200087 +k1,152:29874426,32828370:200086 +k1,152:32583029,32828370:0 +) +(1,153:6630773,33669858:25952256,513147,126483 +k1,152:7522822,33669858:240621 +k1,152:10242015,33669858:240621 +k1,152:12744939,33669858:240621 +k1,152:14177005,33669858:240621 +k1,152:15683782,33669858:240621 +k1,152:16411949,33669858:240579 +k1,152:18368958,33669858:240621 +k1,152:21119608,33669858:240621 +k1,152:22019521,33669858:240621 +k1,152:23971287,33669858:240621 +k1,152:25344370,33669858:240621 +k1,152:27999337,33669858:240621 +k1,152:31548871,33669858:240621 +k1,153:32583029,33669858:0 +) +(1,153:6630773,34511346:25952256,513147,134348 +k1,152:10598525,34511346:190257 +k1,152:11440209,34511346:190256 +k1,152:12649551,34511346:190257 +k1,152:13254642,34511346:190248 +k1,152:16186924,34511346:190256 +k1,152:18156483,34511346:190257 +k1,152:19418908,34511346:190256 +k1,152:20067262,34511346:190257 +k1,152:20789016,34511346:190257 +k1,152:23782902,34511346:190256 +k1,152:25164604,34511346:190257 +k1,152:27098773,34511346:190256 +k1,152:31591469,34511346:190257 +k1,152:32583029,34511346:0 +) +(1,153:6630773,35352834:25952256,505283,134348 +k1,152:10007898,35352834:167827 +k1,152:10791764,35352834:167828 +k1,152:13318232,35352834:167827 +k1,152:13900871,35352834:167796 +k1,152:16593145,35352834:167827 +k1,152:17957659,35352834:167827 +k1,152:21672951,35352834:167828 +k1,152:22859863,35352834:167827 +k1,152:23442502,35352834:167796 +k1,152:26352355,35352834:167827 +k1,152:27388534,35352834:167827 +k1,152:30044764,35352834:167828 +k1,152:31478747,35352834:167827 +k1,152:32583029,35352834:0 +) +(1,153:6630773,36194322:25952256,513147,134348 +k1,152:7658705,36194322:280166 +k1,152:9417363,36194322:280166 +k1,152:10645181,36194322:280167 +k1,152:13687690,36194322:280166 +k1,152:17021834,36194322:280166 +k1,152:19878220,36194322:280166 +k1,152:21349831,36194322:280166 +k1,152:24706258,36194322:280167 +k1,152:28152468,36194322:280166 +k1,152:29629321,36194322:280166 +k1,152:32583029,36194322:0 +) +(1,153:6630773,37035810:25952256,513147,134348 +k1,152:7534971,37035810:244906 +k1,152:8798963,37035810:244907 +k1,152:9458666,37035810:244860 +k1,152:13186812,37035810:244907 +k1,152:15011791,37035810:244906 +k1,152:16972430,37035810:244906 +k1,152:17988040,37035810:244907 +k1,152:21442244,37035810:244906 +k1,152:23459900,37035810:244907 +k1,152:24356234,37035810:244906 +k1,152:26109123,37035810:244906 +k1,152:27373115,37035810:244907 +k1,152:29791195,37035810:244906 +k1,152:32583029,37035810:0 +) +(1,153:6630773,37877298:25952256,513147,126483 +k1,152:8430451,37877298:232057 +k1,152:12464251,37877298:232057 +k1,152:14273759,37877298:232056 +k1,152:15315186,37877298:232057 +k1,152:16313359,37877298:232057 +k1,152:17564501,37877298:232057 +k1,152:20558901,37877298:232057 +k1,152:22763592,37877298:232057 +k1,152:24187093,37877298:232056 +k1,152:27495410,37877298:232057 +k1,152:31896867,37877298:232057 +k1,152:32583029,37877298:0 +) +(1,153:6630773,38718786:25952256,505283,126483 +k1,152:10139868,38718786:228363 +k1,152:11054393,38718786:228363 +k1,152:14086386,38718786:228363 +k1,152:15511436,38718786:228363 +k1,152:16916826,38718786:228363 +k1,152:17676687,38718786:228364 +k1,152:18556478,38718786:228363 +k1,152:20927868,38718786:228363 +k1,152:22440737,38718786:228363 +k1,152:27063289,38718786:228363 +k1,152:29302297,38718786:228363 +k1,152:32583029,38718786:0 +) +(1,153:6630773,39560274:25952256,513147,134348 +k1,152:9046270,39560274:242323 +k1,152:10354864,39560274:242323 +k1,152:11972787,39560274:242322 +k1,152:14248037,39560274:242323 +k1,152:17037089,39560274:242323 +k1,152:17930840,39560274:242323 +k1,152:18587962,39560274:242279 +k1,152:19902454,39560274:242323 +k1,152:21430593,39560274:242323 +k1,152:23705842,39560274:242322 +k1,152:26710508,39560274:242323 +k1,152:30006809,39560274:242323 +k1,152:32583029,39560274:0 +) +(1,153:6630773,40401762:25952256,505283,134348 +g1,152:7976227,40401762 +g1,152:10102214,40401762 +g1,152:11753065,40401762 +g1,152:15139965,40401762 +g1,152:16209513,40401762 +g1,152:17199761,40401762 +g1,152:18590435,40401762 +g1,152:22903358,40401762 +g1,152:24294032,40401762 +g1,152:27569521,40401762 +k1,153:32583029,40401762:1847464 +g1,153:32583029,40401762 +) +(1,161:6630773,41243250:25952256,513147,134348 +h1,160:6630773,41243250:983040,0,0 +k1,160:9037811,41243250:227311 +k1,160:9679937,41243250:227283 +k1,160:12649275,41243250:227312 +k1,160:14369496,41243250:227311 +k1,160:15663078,41243250:227311 +k1,160:17365605,41243250:227312 +k1,160:17948776,41243250:227311 +k1,160:21125862,41243250:227311 +k1,160:22734018,41243250:227312 +k1,160:25771513,41243250:227311 +k1,160:27750601,41243250:227311 +k1,160:28660798,41243250:227312 +k1,160:31015408,41243250:227311 +k1,160:32583029,41243250:0 +) +(1,161:6630773,42084738:25952256,513147,126483 +k1,160:8747641,42084738:231397 +k1,160:9630465,42084738:231396 +k1,160:11350185,42084738:231397 +k1,160:14343924,42084738:231396 +k1,160:16291709,42084738:231397 +k1,160:17182397,42084738:231396 +k1,160:20288203,42084738:231397 +k1,160:23032249,42084738:231396 +k1,160:24282731,42084738:231397 +k1,160:25894971,42084738:231396 +k1,160:27842756,42084738:231397 +k1,160:29093237,42084738:231396 +k1,160:32583029,42084738:0 +) +(1,161:6630773,42926226:25952256,505283,134348 +k1,160:7470900,42926226:227365 +k1,160:8717350,42926226:227365 +k1,160:9359530,42926226:227337 +k1,160:12007140,42926226:227365 +k1,160:14426684,42926226:227365 +h1,160:15397272,42926226:0,0,0 +k1,160:16005401,42926226:227365 +k1,160:17429453,42926226:227365 +k1,160:19310291,42926226:227365 +k1,160:21739667,42926226:227366 +k1,160:25456824,42926226:227365 +k1,160:26788471,42926226:227365 +k1,160:28301652,42926226:227365 +k1,160:29276783,42926226:227365 +k1,160:31315563,42926226:227365 +k1,160:32583029,42926226:0 +) +(1,161:6630773,43767714:25952256,513147,126483 +k1,160:7252622,43767714:265989 +k1,160:8744790,43767714:265989 +k1,160:10167488,43767714:265988 +k1,160:11601984,43767714:265989 +k1,160:12629501,43767714:265989 +k1,160:14237667,43767714:265989 +k1,160:15695101,43767714:265989 +k1,160:17454655,43767714:265988 +k1,160:18076504,43767714:265989 +k1,160:19499203,43767714:265989 +k1,160:21632968,43767714:265989 +k1,160:22254817,43767714:265989 +k1,160:24952191,43767714:265988 +k1,160:26322462,43767714:265989 +k1,160:29798404,43767714:265989 +k1,160:32583029,43767714:0 +) +(1,161:6630773,44609202:25952256,513147,134348 +k1,160:8890505,44609202:230737 +k1,160:9780534,44609202:230737 +k1,160:11030356,44609202:230737 +k1,160:12914566,44609202:230737 +k1,160:16085248,44609202:230737 +k1,160:16975277,44609202:230737 +k1,160:20869476,44609202:230736 +k1,160:22883448,44609202:230737 +k1,160:23982537,44609202:230737 +k1,160:25809731,44609202:230737 +k1,160:26653230,44609202:230737 +k1,160:27903052,44609202:230737 +k1,160:30554034,44609202:230737 +k1,160:32583029,44609202:0 +) +] +(1,162:32583029,45706769:0,0,0 +g1,162:32583029,45706769 +) +) +] +(1,162:6630773,47279633:25952256,0,0 +h1,162:6630773,47279633:25952256,0,0 +) +] +h1,162:4262630,4025873:0,0,0 +] +!22332 }14 -Input:115:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!96 +Input:111:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!102 {15 -[1,163:4262630,47279633:28320399,43253760,0 -(1,163:4262630,4025873:0,0,0 -[1,163:-473657,4025873:25952256,0,0 -(1,163:-473657,-710414:25952256,0,0 -h1,163:-473657,-710414:0,0,0 -(1,163:-473657,-710414:0,0,0 -(1,163:-473657,-710414:0,0,0 -g1,163:-473657,-710414 -(1,163:-473657,-710414:65781,0,65781 -g1,163:-407876,-710414 -[1,163:-407876,-644633:0,0,0 +[1,169:4262630,47279633:28320399,43253760,0 +(1,169:4262630,4025873:0,0,0 +[1,169:-473657,4025873:25952256,0,0 +(1,169:-473657,-710414:25952256,0,0 +h1,169:-473657,-710414:0,0,0 +(1,169:-473657,-710414:0,0,0 +(1,169:-473657,-710414:0,0,0 +g1,169:-473657,-710414 +(1,169:-473657,-710414:65781,0,65781 +g1,169:-407876,-710414 +[1,169:-407876,-644633:0,0,0 ] ) -k1,163:-473657,-710414:-65781 +k1,169:-473657,-710414:-65781 ) ) -k1,163:25478599,-710414:25952256 -g1,163:25478599,-710414 +k1,169:25478599,-710414:25952256 +g1,169:25478599,-710414 ) ] ) -[1,163:6630773,47279633:25952256,43253760,0 -[1,163:6630773,4812305:25952256,786432,0 -(1,163:6630773,4812305:25952256,505283,134348 -(1,163:6630773,4812305:25952256,505283,134348 -g1,163:3078558,4812305 -[1,163:3078558,4812305:0,0,0 -(1,163:3078558,2439708:0,1703936,0 -k1,163:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,163:2537886,2439708:1179648,16384,0 +[1,169:6630773,47279633:25952256,43253760,0 +[1,169:6630773,4812305:25952256,786432,0 +(1,169:6630773,4812305:25952256,505283,134348 +(1,169:6630773,4812305:25952256,505283,134348 +g1,169:3078558,4812305 +[1,169:3078558,4812305:0,0,0 +(1,169:3078558,2439708:0,1703936,0 +k1,169:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,169:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,163:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,169:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,163:3078558,4812305:0,0,0 -(1,163:3078558,2439708:0,1703936,0 -g1,163:29030814,2439708 -g1,163:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,163:36151628,1915420:16384,1179648,0 +[1,169:3078558,4812305:0,0,0 +(1,169:3078558,2439708:0,1703936,0 +g1,169:29030814,2439708 +g1,169:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,169:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,163:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,169:37855564,2439708:1179648,16384,0 ) ) -k1,163:3078556,2439708:-34777008 +k1,169:3078556,2439708:-34777008 ) ] -[1,163:3078558,4812305:0,0,0 -(1,163:3078558,49800853:0,16384,2228224 -k1,163:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,163:2537886,49800853:1179648,16384,0 +[1,169:3078558,4812305:0,0,0 +(1,169:3078558,49800853:0,16384,2228224 +k1,169:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,169:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,163:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,169:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,163:3078558,4812305:0,0,0 -(1,163:3078558,49800853:0,16384,2228224 -g1,163:29030814,49800853 -g1,163:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,163:36151628,51504789:16384,1179648,0 +[1,169:3078558,4812305:0,0,0 +(1,169:3078558,49800853:0,16384,2228224 +g1,169:29030814,49800853 +g1,169:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,169:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,163:37855564,49800853:1179648,16384,0 -) -) -k1,163:3078556,49800853:-34777008 -) -] -g1,163:6630773,4812305 -k1,163:22047465,4812305:15018233 -g1,163:22869941,4812305 -g1,163:24054831,4812305 -g1,163:27195316,4812305 -g1,163:28604995,4812305 -g1,163:29789885,4812305 -) -) -] -[1,163:6630773,45706769:25952256,40108032,0 -(1,163:6630773,45706769:25952256,40108032,0 -(1,163:6630773,45706769:0,0,0 -g1,163:6630773,45706769 -) -[1,163:6630773,45706769:25952256,40108032,0 -[1,152:6630773,16536598:25952256,10937861,0 -[1,152:6630773,16536598:25952256,10937861,0 -(1,151:6630773,9864339:25952256,4265602,0 -k1,151:8577113,9864339:1946340 -h1,150:8577113,9864339:0,0,0 -(1,150:8577113,9864339:22059576,4265602,0 -) -g1,151:30636689,9864339 -k1,151:32583029,9864339:1946340 -) -(1,151:6630773,11361187:25952256,485622,11795 -h1,151:6630773,11361187:0,0,0 -g1,151:9295467,11361187 -k1,151:32583028,11361187:22297312 -g1,151:32583028,11361187 -) -(1,151:6630773,12202675:25952256,505283,126483 -h1,151:6630773,12202675:0,0,0 -k1,151:7979638,12202675:152178 -k1,151:8546611,12202675:152130 -k1,151:11119034,12202675:152178 -k1,151:13190106,12202675:152178 -k1,151:14361368,12202675:152177 -k1,151:15894390,12202675:152178 -k1,151:17150849,12202675:152177 -k1,151:18689113,12202675:152178 -k1,151:21043300,12202675:152177 -k1,151:24685270,12202675:152178 -k1,151:25994158,12202675:152178 -k1,151:26907863,12202675:152177 -k1,151:28390422,12202675:152178 -k1,151:30030922,12202675:152177 -k1,151:31202185,12202675:152178 -k1,151:32583029,12202675:0 -) -(1,151:6630773,13044163:25952256,513147,134348 -k1,151:7914793,13044163:183015 -k1,151:9904636,13044163:183015 -(1,151:9904636,13044163:0,452978,115847 -r1,151:14835156,13044163:4930520,568825,115847 -k1,151:9904636,13044163:-4930520 -) -(1,151:9904636,13044163:4930520,452978,115847 -k1,151:9904636,13044163:3277 -h1,151:14831879,13044163:0,411205,112570 -) -k1,151:15018171,13044163:183015 -k1,151:16392631,13044163:183015 -k1,151:18982128,13044163:183015 -k1,151:19623240,13044163:183015 -k1,151:20567782,13044163:183014 -k1,151:22923971,13044163:183015 -k1,151:24126071,13044163:183015 -k1,151:25477593,13044163:183015 -k1,151:26319900,13044163:183015 -k1,151:27729094,13044163:183015 -k1,151:28673637,13044163:183015 -k1,151:31563944,13044163:183015 -k1,151:32583029,13044163:0 -) -(1,151:6630773,13885651:25952256,513147,134348 -k1,151:9069750,13885651:183883 -k1,151:10528308,13885651:183883 -k1,151:11908878,13885651:183883 -k1,151:13935633,13885651:183883 -k1,151:14778808,13885651:183883 -k1,151:17485827,13885651:183883 -k1,151:18688796,13885651:183884 -k1,151:22032170,13885651:183883 -k1,151:22747550,13885651:183883 -k1,151:25994586,13885651:183883 -k1,151:28046900,13885651:183883 -k1,151:29249868,13885651:183883 -k1,151:32583029,13885651:0 -) -(1,151:6630773,14727139:25952256,513147,126483 -k1,151:7972526,14727139:145066 -k1,151:11092271,14727139:145066 -k1,151:11850099,14727139:145066 -k1,151:13014250,14727139:145066 -k1,151:14698100,14727139:145065 -k1,151:15502458,14727139:145066 -k1,151:16666609,14727139:145066 -k1,151:18520199,14727139:145066 -k1,151:20007442,14727139:145066 -k1,151:20508368,14727139:145066 -$1,151:20808523,14727139 -$1,151:21329534,14727139 -k1,151:21774755,14727139:145066 -k1,151:22535859,14727139:145066 -k1,151:23884165,14727139:145065 -k1,151:25569982,14727139:145066 -k1,151:26246545,14727139:145066 -k1,151:28259387,14727139:145066 -k1,151:29423538,14727139:145066 -k1,151:32583029,14727139:0 -) -(1,151:6630773,15568627:25952256,505283,134348 -k1,151:9439646,15568627:233963 -k1,151:12545398,15568627:233964 -k1,151:14698255,15568627:233963 -k1,151:15288078,15568627:233963 -k1,151:18681533,15568627:233964 -k1,151:20019778,15568627:233963 -k1,151:21001507,15568627:233963 -k1,151:23042299,15568627:233964 -k1,151:24065971,15568627:233963 -k1,151:27911623,15568627:233963 -k1,151:30568453,15568627:233964 -k1,151:31563944,15568627:233963 -k1,151:32583029,15568627:0 -) -(1,151:6630773,16410115:25952256,505283,126483 -g1,151:8210846,16410115 -g1,151:9401635,16410115 -g1,151:12664017,16410115 -g1,151:13479284,16410115 -g1,151:14908624,16410115 -g1,151:16797371,16410115 -g1,151:19169774,16410115 -g1,151:22147730,16410115 -g1,151:23108487,16410115 -g1,151:23722559,16410115 -g1,151:24913348,16410115 -g1,151:28175730,16410115 -g1,151:28990997,16410115 -k1,151:32583029,16410115:2050625 -g1,151:32583029,16410115 -) -] -] -(1,155:6630773,18502678:25952256,505283,126483 -k1,154:7456614,18502678:209803 -k1,154:11156210,18502678:209804 -k1,154:12522723,18502678:209803 -k1,154:13494054,18502678:209803 -k1,154:15034239,18502678:209804 -k1,154:16112394,18502678:209803 -k1,154:17369462,18502678:209803 -k1,154:18863771,18502678:209803 -k1,154:19941927,18502678:209804 -k1,154:21244215,18502678:209803 -k1,154:21868851,18502678:209793 -k1,154:26179242,18502678:209803 -k1,154:28172280,18502678:209803 -k1,154:29250436,18502678:209804 -k1,154:30578283,18502678:209803 -k1,154:32583029,18502678:0 -) -(1,155:6630773,19344166:25952256,505283,134348 -g1,154:7698354,19344166 -g1,154:9234517,19344166 -g1,154:10481011,19344166 -g1,154:11964746,19344166 -g1,154:13032327,19344166 -g1,154:14349600,19344166 -g1,154:14904689,19344166 -g1,154:17165681,19344166 -k1,155:32583029,19344166:13921816 -g1,155:32583029,19344166 -) -(1,157:6630773,20185654:25952256,513147,134348 -h1,156:6630773,20185654:983040,0,0 -k1,156:8989112,20185654:178612 -k1,156:10340164,20185654:178613 -k1,156:14180928,20185654:178612 -k1,156:17449564,20185654:178613 -k1,156:19483500,20185654:178612 -k1,156:20653673,20185654:178613 -k1,156:22154146,20185654:178612 -k1,156:22992050,20185654:178612 -k1,156:24189748,20185654:178613 -k1,156:24783183,20185654:178592 -k1,156:27703821,20185654:178612 -k1,156:28643962,20185654:178613 -k1,156:30601876,20185654:178612 -k1,157:32583029,20185654:0 -) -(1,157:6630773,21027142:25952256,513147,134348 -k1,156:8008340,21027142:211026 -k1,156:8677463,21027142:211026 -k1,156:9419986,21027142:211026 -k1,156:12408428,21027142:211026 -k1,156:13270882,21027142:211026 -k1,156:14574393,21027142:211026 -k1,156:15141279,21027142:211026 -k1,156:17593635,21027142:211025 -k1,156:20546687,21027142:211026 -k1,156:21443875,21027142:211026 -k1,156:22010761,21027142:211026 -k1,156:25237098,21027142:211026 -k1,156:26131009,21027142:211026 -k1,156:29947826,21027142:211026 -k1,156:32583029,21027142:0 -) -(1,157:6630773,21868630:25952256,513147,134348 -k1,156:7832377,21868630:182519 -k1,156:9395740,21868630:182519 -k1,156:10769703,21868630:182518 -k1,156:11971307,21868630:182519 -k1,156:12568652,21868630:182502 -k1,156:15666868,21868630:182519 -k1,156:17367856,21868630:182519 -k1,156:17906234,21868630:182518 -k1,156:20830779,21868630:182519 -k1,156:23025253,21868630:182519 -k1,156:24857969,21868630:182519 -k1,156:28014511,21868630:182518 -k1,156:29388475,21868630:182519 -k1,156:30671999,21868630:182519 -k1,157:32583029,21868630:0 -) -(1,157:6630773,22710118:25952256,513147,134348 -k1,156:7761597,22710118:157614 -k1,156:10524922,22710118:157614 -k1,156:11967042,22710118:157614 -k1,156:13840389,22710118:157614 -k1,156:16643036,22710118:157614 -k1,156:20290442,22710118:157614 -k1,156:21130941,22710118:157614 -k1,156:23546270,22710118:157614 -k1,156:25865261,22710118:157614 -k1,156:28066943,22710118:157614 -k1,156:32583029,22710118:0 -) -(1,157:6630773,23551606:25952256,505283,134348 -k1,156:7831475,23551606:209142 -k1,156:9239272,23551606:209143 -k1,156:11025866,23551606:209142 -k1,156:11996536,23551606:209142 -k1,156:14430626,23551606:209143 -k1,156:15658853,23551606:209142 -k1,156:17521468,23551606:209142 -k1,156:18145444,23551606:209133 -k1,156:21270283,23551606:209142 -k1,156:22676112,23551606:209142 -k1,156:25597134,23551606:209142 -k1,156:27889011,23551606:209143 -k1,156:28629650,23551606:209142 -k1,156:29490220,23551606:209142 -k1,156:30791848,23551606:209143 -k1,156:31356850,23551606:209142 -k1,156:32583029,23551606:0 -) -(1,157:6630773,24393094:25952256,513147,126483 -k1,156:8745416,24393094:205579 -k1,156:10097219,24393094:205578 -k1,156:12300991,24393094:205579 -k1,156:13157997,24393094:205578 -k1,156:14589755,24393094:205579 -k1,156:15814418,24393094:205578 -k1,156:18181374,24393094:205579 -k1,156:19578397,24393094:205578 -k1,156:21217904,24393094:205579 -k1,156:22541526,24393094:205578 -k1,156:23766190,24393094:205579 -k1,156:26133145,24393094:205578 -k1,156:26954762,24393094:205579 -k1,156:27575177,24393094:205572 -k1,156:29348376,24393094:205578 -k1,156:31563944,24393094:205579 -k1,156:32583029,24393094:0 -) -(1,157:6630773,25234582:25952256,505283,134348 -k1,156:8879790,25234582:166283 -k1,156:10525220,25234582:166282 -k1,156:12383643,25234582:166283 -k1,156:14789291,25234582:166283 -k1,156:16101798,25234582:166282 -k1,156:18439944,25234582:166283 -k1,156:20557888,25234582:166282 -k1,156:22308176,25234582:166283 -k1,156:25980635,25234582:166283 -k1,156:26678414,25234582:166282 -k1,156:29648327,25234582:166283 -k1,156:32583029,25234582:0 -) -(1,157:6630773,26076070:25952256,513147,134348 -k1,156:9940705,26076070:155684 -k1,156:11751174,26076070:155685 -k1,156:12898418,26076070:155684 -k1,156:14339919,26076070:155685 -k1,156:17771092,26076070:155684 -k1,156:22141397,26076070:155685 -k1,156:26708309,26076070:155684 -k1,156:28695725,26076070:155685 -k1,156:31635378,26076070:155684 -k1,157:32583029,26076070:0 -) -(1,157:6630773,26917558:25952256,505283,134348 -k1,156:7468083,26917558:248797 -k1,156:8619311,26917558:248797 -k1,156:9955301,26917558:248748 -k1,156:11670794,26917558:248797 -k1,156:13529811,26917558:248797 -k1,156:15809569,26917558:248797 -k1,156:16709794,26917558:248797 -k1,156:17977677,26917558:248798 -k1,156:18641267,26917558:248747 -k1,156:21310309,26917558:248797 -k1,156:22175144,26917558:248797 -k1,156:23580651,26917558:248797 -k1,156:26302778,26917558:248798 -k1,156:27743020,26917558:248797 -k1,156:30752193,26917558:248797 -k1,156:31356850,26917558:248797 -k1,156:32583029,26917558:0 -) -(1,157:6630773,27759046:25952256,513147,134348 -k1,156:8769515,27759046:229678 -k1,156:9946845,27759046:229679 -k1,156:12434238,27759046:229678 -k1,156:14825294,27759046:229679 -k1,156:15671010,27759046:229678 -k1,156:18373362,27759046:229679 -k1,156:21250039,27759046:229678 -k1,156:22253698,27759046:229679 -k1,156:23502461,27759046:229678 -k1,156:26516109,27759046:229679 -k1,156:28163331,27759046:229678 -k1,156:29340661,27759046:229679 -k1,156:30158852,27759046:229678 -k1,156:32583029,27759046:0 -) -(1,157:6630773,28600534:25952256,505283,134348 -g1,156:7361499,28600534 -g1,156:10471182,28600534 -g1,156:11689496,28600534 -g1,156:13490425,28600534 -g1,156:16189853,28600534 -g1,156:17150610,28600534 -g1,156:17705699,28600534 -g1,156:19395217,28600534 -k1,157:32583029,28600534:10759703 -g1,157:32583029,28600534 -) -(1,158:6630773,30228454:25952256,505283,134348 -(1,158:6630773,30228454:2809528,485622,11795 -g1,158:6630773,30228454 -g1,158:9440301,30228454 -) -g1,158:11511894,30228454 -g1,158:12188225,30228454 -k1,158:32583029,30228454:16199844 -g1,158:32583029,30228454 -) -(1,161:6630773,31463158:25952256,505283,134348 -k1,160:7354733,31463158:236372 -k1,160:10213894,31463158:236410 -k1,160:13139901,31463158:236409 -k1,160:16544321,31463158:236410 -k1,160:18151744,31463158:236410 -k1,160:21202924,31463158:236409 -k1,160:23708190,31463158:236410 -k1,160:26500503,31463158:236409 -k1,160:27861511,31463158:236410 -k1,160:29305093,31463158:236409 -k1,160:30871884,31463158:236410 -k1,160:32583029,31463158:0 -) -(1,161:6630773,32304646:25952256,513147,126483 -k1,160:11619082,32304646:274960 -k1,160:13287993,32304646:274960 -k1,160:17143184,32304646:274959 -k1,160:18609589,32304646:274960 -k1,160:20091722,32304646:274960 -k1,160:23671663,32304646:274960 -k1,160:25814398,32304646:274959 -k1,160:26445218,32304646:274960 -k1,160:29177778,32304646:274960 -k1,160:32583029,32304646:0 -) -(1,161:6630773,33146134:25952256,513147,126483 -k1,160:7255069,33146134:268436 -k1,160:10338275,33146134:268435 -k1,160:13416895,33146134:268436 -k1,160:14336759,33146134:268436 -k1,160:14961054,33146134:268435 -k1,160:18479420,33146134:268436 -k1,160:19363894,33146134:268436 -k1,160:21234029,33146134:268435 -k1,160:23199847,33146134:268436 -k1,160:23824143,33146134:268436 -k1,160:26565907,33146134:268435 -k1,160:27517228,33146134:268436 -k1,160:28141524,33146134:268436 -k1,160:29948744,33146134:268435 -k1,160:32227169,33146134:268436 -k1,160:32583029,33146134:0 -) -(1,161:6630773,33987622:25952256,513147,134348 -k1,160:9778935,33987622:198387 -k1,160:11358166,33987622:198387 -k1,160:14540407,33987622:198387 -k1,160:15270290,33987622:198386 -k1,160:16667331,33987622:198387 -k1,160:18733494,33987622:198387 -k1,160:19287741,33987622:198387 -k1,160:22080043,33987622:198387 -k1,160:22906265,33987622:198387 -k1,160:24202379,33987622:198386 -k1,160:25941517,33987622:198387 -k1,160:27158989,33987622:198387 -k1,160:27772218,33987622:198386 -k1,160:30390850,33987622:198387 -k1,160:32583029,33987622:0 -) -(1,161:6630773,34829110:25952256,513147,95026 -h1,160:7601361,34829110:0,0,0 -g1,160:8181354,34829110 -g1,160:9761427,34829110 -g1,160:10492153,34829110 -g1,160:11710467,34829110 -g1,160:13843008,34829110 -g1,160:15423081,34829110 -g1,160:18432494,34829110 -g1,160:19298879,34829110 -k1,161:32583029,34829110:12695637 -g1,161:32583029,34829110 -) -(1,163:6630773,35670598:25952256,513147,134348 -h1,162:6630773,35670598:983040,0,0 -k1,162:9986823,35670598:166413 -k1,162:13643029,35670598:166414 -k1,162:14422204,35670598:166413 -k1,162:15607703,35670598:166414 -k1,162:16188927,35670598:166381 -k1,162:18775585,35670598:166413 -k1,162:19473495,35670598:166413 -k1,162:21617130,35670598:166414 -k1,162:23481581,35670598:166413 -k1,162:24804705,35670598:166414 -k1,162:25502615,35670598:166413 -k1,162:28002111,35670598:166414 -k1,162:30631367,35670598:166413 -k1,162:32583029,35670598:0 -) -(1,163:6630773,36512086:25952256,513147,134348 -k1,162:9777266,36512086:190164 -k1,162:12978810,36512086:190165 -k1,162:15334939,36512086:190164 -k1,162:16207988,36512086:190164 -k1,162:18294765,36512086:190165 -k1,162:19136357,36512086:190164 -k1,162:22991294,36512086:190164 -k1,162:24511840,36512086:190165 -k1,162:25472707,36512086:190164 -k1,162:26077705,36512086:190155 -k1,162:28963366,36512086:190165 -k1,162:29836415,36512086:190164 -k1,162:32583029,36512086:0 -) -(1,163:6630773,37353574:25952256,513147,134348 -k1,162:7698109,37353574:198984 -k1,162:8888652,37353574:198983 -k1,162:10153907,37353574:198984 -k1,162:12845224,37353574:198983 -k1,162:14438159,37353574:198984 -k1,162:16737571,37353574:198983 -k1,162:18541532,37353574:198984 -k1,162:19608867,37353574:198983 -k1,162:21356467,37353574:198984 -k1,162:22206879,37353574:198984 -k1,162:23913845,37353574:198983 -k1,162:25740088,37353574:198984 -k1,162:26598363,37353574:198983 -k1,162:28345963,37353574:198984 -k1,162:29413298,37353574:198983 -k1,162:30603842,37353574:198984 -k1,162:32583029,37353574:0 -) -(1,163:6630773,38195062:25952256,513147,134348 -k1,162:8440954,38195062:155397 -k1,162:9587912,38195062:155398 -k1,162:11640576,38195062:155397 -k1,162:13364251,38195062:155398 -k1,162:14178940,38195062:155397 -k1,162:16069731,38195062:155398 -k1,162:16813641,38195062:155397 -k1,162:18854510,38195062:155398 -k1,162:20691561,38195062:155397 -k1,162:21592103,38195062:155398 -k1,162:22398928,38195062:155397 -k1,162:24062309,38195062:155398 -k1,162:24573566,38195062:155397 -k1,162:26801868,38195062:155398 -k1,162:27616557,38195062:155397 -k1,162:29102336,38195062:155398 -k1,162:30028436,38195062:155397 -k1,162:32583029,38195062:0 -) -(1,163:6630773,39036550:25952256,513147,134348 -k1,162:7903965,39036550:172187 -k1,162:9586101,39036550:172186 -k1,162:11993721,39036550:172187 -k1,162:13405849,39036550:172187 -k1,162:14774722,39036550:172186 -k1,162:17709252,39036550:172187 -k1,162:19449716,39036550:172187 -k1,162:20281194,39036550:172186 -k1,162:22188774,39036550:172187 -k1,162:22775777,39036550:172160 -k1,162:23939523,39036550:172186 -k1,162:25177981,39036550:172187 -k1,162:28252102,39036550:172187 -k1,162:29083580,39036550:172186 -k1,162:30707389,39036550:172187 -k1,162:32583029,39036550:0 -) -(1,163:6630773,39878038:25952256,505283,126483 -k1,162:7602160,39878038:246559 -k1,162:9450419,39878038:246559 -k1,162:11408123,39878038:246559 -k1,162:12787144,39878038:246559 -k1,162:14126188,39878038:246559 -k1,162:15391832,39878038:246559 -k1,162:16053187,39878038:246512 -k1,162:18719991,39878038:246559 -k1,162:19617978,39878038:246559 -k1,162:21055982,39878038:246559 -k1,162:24495455,39878038:246559 -k1,162:28231806,39878038:246559 -k1,162:29669810,39878038:246559 -k1,162:31193666,39878038:246559 -k1,162:32583029,39878038:0 -) -(1,163:6630773,40719526:25952256,513147,134348 -k1,162:8970757,40719526:225793 -k1,162:10215636,40719526:225794 -k1,162:11747562,40719526:225793 -k1,162:13968271,40719526:225793 -k1,162:14853356,40719526:225793 -k1,162:18897277,40719526:225794 -k1,162:19940959,40719526:225793 -k1,162:21700950,40719526:225793 -k1,162:22612905,40719526:225793 -k1,162:23707051,40719526:225794 -k1,162:26003782,40719526:225793 -k1,162:27559956,40719526:225793 -k1,162:28654101,40719526:225793 -k1,162:30428511,40719526:225794 -k1,162:31305732,40719526:225793 -k1,162:32583029,40719526:0 -) -(1,163:6630773,41561014:25952256,513147,134348 -k1,162:7486981,41561014:173323 -k1,162:10090380,41561014:173324 -k1,162:11282788,41561014:173323 -k1,162:13019145,41561014:173323 -k1,162:13650565,41561014:173323 -k1,162:14355386,41561014:173324 -k1,162:15863677,41561014:173323 -k1,162:16688428,41561014:173323 -k1,162:18350075,41561014:173324 -k1,162:20258791,41561014:173323 -k1,162:22767162,41561014:173323 -k1,162:24321330,41561014:173324 -k1,162:25026150,41561014:173323 -k1,162:26265744,41561014:173323 -k1,162:29250562,41561014:173323 -k1,162:30039924,41561014:173324 -k1,162:31345054,41561014:173323 -k1,162:32583029,41561014:0 -) -(1,163:6630773,42402502:25952256,505283,134348 -k1,162:7665636,42402502:273335 -k1,162:8527485,42402502:273336 -k1,162:9872989,42402502:273335 -k1,162:12307702,42402502:273336 -k1,162:13572597,42402502:273335 -k1,162:15394549,42402502:273336 -k1,162:17430802,42402502:273335 -k1,162:19713472,42402502:273336 -k1,162:20638235,42402502:273335 -k1,162:22363849,42402502:273336 -k1,162:23656269,42402502:273335 -k1,162:25531305,42402502:273336 -k1,162:29013938,42402502:273335 -k1,162:32583029,42402502:0 -) -(1,163:6630773,43243990:25952256,513147,134348 -k1,162:7506521,43243990:216456 -k1,162:9458370,43243990:216456 -k1,162:10030686,43243990:216456 -k1,162:14599388,43243990:216456 -k1,162:17658140,43243990:216456 -k1,162:18822247,43243990:216456 -k1,162:20428066,43243990:216456 -k1,162:23372786,43243990:216456 -k1,162:24217077,43243990:216456 -k1,162:26418619,43243990:216456 -h1,162:27389207,43243990:0,0,0 -k1,162:27605663,43243990:216456 -k1,162:28690471,43243990:216456 -k1,162:30011209,43243990:216456 -k1,162:31252648,43243990:216456 -k1,162:32583029,43243990:0 -) -(1,163:6630773,44085478:25952256,513147,126483 -k1,162:7867824,44085478:217966 -k1,162:8500614,44085478:217947 -k1,162:11138825,44085478:217966 -k1,162:13247505,44085478:217966 -k1,162:14662158,44085478:217966 -k1,162:16106303,44085478:217966 -k1,162:16940307,44085478:217966 -k1,162:18214713,44085478:217966 -k1,162:19533684,44085478:217966 -k1,162:21261600,44085478:217966 -k1,162:23286394,44085478:217966 -k1,162:24120398,44085478:217966 -k1,162:25099892,44085478:217966 -k1,162:26336943,44085478:217966 -k1,162:28109423,44085478:217966 -k1,162:30398327,44085478:217966 -k1,162:31563944,44085478:217966 -k1,162:32583029,44085478:0 -) -(1,163:6630773,44926966:25952256,505283,126483 -k1,162:9172841,44926966:140829 -(1,162:9172841,44926966:0,414482,115847 -r1,162:9700406,44926966:527565,530329,115847 -k1,162:9172841,44926966:-527565 -) -(1,162:9172841,44926966:527565,414482,115847 -$1,162:9176118,44926966 -$1,162:9697129,44926966 -h1,162:9697129,44926966:0,411205,112570 -) -k1,162:10014904,44926966:140828 -k1,162:11347178,44926966:140829 -k1,162:12507092,44926966:140829 -k1,162:13874100,44926966:140829 -k1,162:14630966,44926966:140828 -k1,162:16139531,44926966:140829 -k1,162:16811857,44926966:140829 -k1,162:18501301,44926966:140828 -k1,162:19056915,44926966:140771 -k1,162:20298749,44926966:140829 -k1,162:23502730,44926966:140828 -k1,162:24259597,44926966:140829 -k1,162:27447850,44926966:140829 -k1,162:28058572,44926966:140829 -k1,162:28730897,44926966:140828 -k1,162:32227169,44926966:140829 -k1,162:32583029,44926966:0 -) -] -(1,163:32583029,45706769:0,0,0 -g1,163:32583029,45706769 -) -) -] -(1,163:6630773,47279633:25952256,0,0 -h1,163:6630773,47279633:25952256,0,0 -) -] -h1,163:4262630,4025873:0,0,0 -] -!22787 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,169:37855564,49800853:1179648,16384,0 +) +) +k1,169:3078556,49800853:-34777008 +) +] +g1,169:6630773,4812305 +k1,169:21845614,4812305:14816382 +g1,169:22668090,4812305 +g1,169:24054831,4812305 +g1,169:27195316,4812305 +g1,169:28604995,4812305 +g1,169:29789885,4812305 +) +) +] +[1,169:6630773,45706769:25952256,40108032,0 +(1,169:6630773,45706769:25952256,40108032,0 +(1,169:6630773,45706769:0,0,0 +g1,169:6630773,45706769 +) +[1,169:6630773,45706769:25952256,40108032,0 +[1,158:6630773,16536598:25952256,10937861,0 +[1,158:6630773,16536598:25952256,10937861,0 +(1,157:6630773,9864339:25952256,4265602,0 +k1,157:8577113,9864339:1946340 +h1,156:8577113,9864339:0,0,0 +(1,156:8577113,9864339:22059576,4265602,0 +) +g1,157:30636689,9864339 +k1,157:32583029,9864339:1946340 +) +(1,157:6630773,11361187:25952256,485622,11795 +h1,157:6630773,11361187:0,0,0 +g1,157:9295467,11361187 +k1,157:32583028,11361187:22297312 +g1,157:32583028,11361187 +) +(1,157:6630773,12202675:25952256,505283,126483 +h1,157:6630773,12202675:0,0,0 +k1,157:7979638,12202675:152178 +k1,157:8546611,12202675:152130 +k1,157:11119034,12202675:152178 +k1,157:13190106,12202675:152178 +k1,157:14361368,12202675:152177 +k1,157:15894390,12202675:152178 +k1,157:17150849,12202675:152177 +k1,157:18689113,12202675:152178 +k1,157:21043300,12202675:152177 +k1,157:24685270,12202675:152178 +k1,157:25994158,12202675:152178 +k1,157:26907863,12202675:152177 +k1,157:28390422,12202675:152178 +k1,157:30030922,12202675:152177 +k1,157:31202185,12202675:152178 +k1,157:32583029,12202675:0 +) +(1,157:6630773,13044163:25952256,513147,134348 +k1,157:7914793,13044163:183015 +k1,157:9904636,13044163:183015 +(1,157:9904636,13044163:0,452978,115847 +r1,157:14835156,13044163:4930520,568825,115847 +k1,157:9904636,13044163:-4930520 +) +(1,157:9904636,13044163:4930520,452978,115847 +k1,157:9904636,13044163:3277 +h1,157:14831879,13044163:0,411205,112570 +) +k1,157:15018171,13044163:183015 +k1,157:16392631,13044163:183015 +k1,157:18982128,13044163:183015 +k1,157:19623240,13044163:183015 +k1,157:20567782,13044163:183014 +k1,157:22923971,13044163:183015 +k1,157:24126071,13044163:183015 +k1,157:25477593,13044163:183015 +k1,157:26319900,13044163:183015 +k1,157:27729094,13044163:183015 +k1,157:28673637,13044163:183015 +k1,157:31563944,13044163:183015 +k1,157:32583029,13044163:0 +) +(1,157:6630773,13885651:25952256,513147,134348 +k1,157:9069750,13885651:183883 +k1,157:10528308,13885651:183883 +k1,157:11908878,13885651:183883 +k1,157:13935633,13885651:183883 +k1,157:14778808,13885651:183883 +k1,157:17485827,13885651:183883 +k1,157:18688796,13885651:183884 +k1,157:22032170,13885651:183883 +k1,157:22747550,13885651:183883 +k1,157:25994586,13885651:183883 +k1,157:28046900,13885651:183883 +k1,157:29249868,13885651:183883 +k1,157:32583029,13885651:0 +) +(1,157:6630773,14727139:25952256,513147,126483 +k1,157:7972526,14727139:145066 +k1,157:11092271,14727139:145066 +k1,157:11850099,14727139:145066 +k1,157:13014250,14727139:145066 +k1,157:14698100,14727139:145065 +k1,157:15502458,14727139:145066 +k1,157:16666609,14727139:145066 +k1,157:18520199,14727139:145066 +k1,157:20007442,14727139:145066 +k1,157:20508368,14727139:145066 +$1,157:20808523,14727139 +$1,157:21329534,14727139 +k1,157:21774755,14727139:145066 +k1,157:22535859,14727139:145066 +k1,157:23884165,14727139:145065 +k1,157:25569982,14727139:145066 +k1,157:26246545,14727139:145066 +k1,157:28259387,14727139:145066 +k1,157:29423538,14727139:145066 +k1,157:32583029,14727139:0 +) +(1,157:6630773,15568627:25952256,505283,134348 +k1,157:9439646,15568627:233963 +k1,157:12545398,15568627:233964 +k1,157:14698255,15568627:233963 +k1,157:15288078,15568627:233963 +k1,157:18681533,15568627:233964 +k1,157:20019778,15568627:233963 +k1,157:21001507,15568627:233963 +k1,157:23042299,15568627:233964 +k1,157:24065971,15568627:233963 +k1,157:27911623,15568627:233963 +k1,157:30568453,15568627:233964 +k1,157:31563944,15568627:233963 +k1,157:32583029,15568627:0 +) +(1,157:6630773,16410115:25952256,505283,126483 +g1,157:8210846,16410115 +g1,157:9401635,16410115 +g1,157:12664017,16410115 +g1,157:13479284,16410115 +g1,157:14908624,16410115 +g1,157:16797371,16410115 +g1,157:19169774,16410115 +g1,157:22147730,16410115 +g1,157:23108487,16410115 +g1,157:23722559,16410115 +g1,157:24913348,16410115 +g1,157:28175730,16410115 +g1,157:28990997,16410115 +k1,157:32583029,16410115:2050625 +g1,157:32583029,16410115 +) +] +] +(1,161:6630773,18502678:25952256,505283,126483 +k1,160:7456614,18502678:209803 +k1,160:11156210,18502678:209804 +k1,160:12522723,18502678:209803 +k1,160:13494054,18502678:209803 +k1,160:15034239,18502678:209804 +k1,160:16112394,18502678:209803 +k1,160:17369462,18502678:209803 +k1,160:18863771,18502678:209803 +k1,160:19941927,18502678:209804 +k1,160:21244215,18502678:209803 +k1,160:21868851,18502678:209793 +k1,160:26179242,18502678:209803 +k1,160:28172280,18502678:209803 +k1,160:29250436,18502678:209804 +k1,160:30578283,18502678:209803 +k1,160:32583029,18502678:0 +) +(1,161:6630773,19344166:25952256,505283,134348 +g1,160:7698354,19344166 +g1,160:9234517,19344166 +g1,160:10481011,19344166 +g1,160:11964746,19344166 +g1,160:13032327,19344166 +g1,160:14349600,19344166 +g1,160:14904689,19344166 +g1,160:17165681,19344166 +k1,161:32583029,19344166:13921816 +g1,161:32583029,19344166 +) +(1,163:6630773,20185654:25952256,513147,134348 +h1,162:6630773,20185654:983040,0,0 +k1,162:9015830,20185654:205330 +k1,162:10393599,20185654:205330 +k1,162:14261080,20185654:205329 +k1,162:17556433,20185654:205330 +k1,162:19617087,20185654:205330 +k1,162:20813977,20185654:205330 +k1,162:22341167,20185654:205329 +k1,162:23205789,20185654:205330 +k1,162:24430204,20185654:205330 +k1,162:25050371,20185654:205324 +k1,162:27997726,20185654:205329 +k1,162:28964584,20185654:205330 +k1,162:30949216,20185654:205330 +k1,163:32583029,20185654:0 +) +(1,163:6630773,21027142:25952256,513147,134348 +k1,162:8330871,21027142:186216 +k1,162:8975184,21027142:186216 +k1,162:9692897,21027142:186216 +k1,162:12656528,21027142:186215 +k1,162:13494172,21027142:186216 +k1,162:14772873,21027142:186216 +k1,162:15314949,21027142:186216 +k1,162:17742496,21027142:186216 +k1,162:20670738,21027142:186216 +k1,162:21543116,21027142:186216 +k1,162:22085191,21027142:186215 +k1,162:25286718,21027142:186216 +k1,162:26155819,21027142:186216 +k1,162:29947826,21027142:186216 +k1,162:32583029,21027142:0 +) +(1,163:6630773,21868630:25952256,513147,134348 +k1,162:7832377,21868630:182519 +k1,162:9395740,21868630:182519 +k1,162:10769703,21868630:182518 +k1,162:11971307,21868630:182519 +k1,162:12568652,21868630:182502 +k1,162:15666868,21868630:182519 +k1,162:17367856,21868630:182519 +k1,162:17906234,21868630:182518 +k1,162:20830779,21868630:182519 +k1,162:23025253,21868630:182519 +k1,162:24857969,21868630:182519 +k1,162:28014511,21868630:182518 +k1,162:29388475,21868630:182519 +k1,162:30671999,21868630:182519 +k1,163:32583029,21868630:0 +) +(1,163:6630773,22710118:25952256,513147,134348 +k1,162:7761597,22710118:157614 +k1,162:10524922,22710118:157614 +k1,162:11967042,22710118:157614 +k1,162:13840389,22710118:157614 +k1,162:16643036,22710118:157614 +k1,162:20290442,22710118:157614 +k1,162:21130941,22710118:157614 +k1,162:23546270,22710118:157614 +k1,162:25865261,22710118:157614 +k1,162:28066943,22710118:157614 +k1,162:32583029,22710118:0 +) +(1,163:6630773,23551606:25952256,505283,134348 +k1,162:7831475,23551606:209142 +k1,162:9239272,23551606:209143 +k1,162:11025866,23551606:209142 +k1,162:11996536,23551606:209142 +k1,162:14430626,23551606:209143 +k1,162:15658853,23551606:209142 +k1,162:17521468,23551606:209142 +k1,162:18145444,23551606:209133 +k1,162:21270283,23551606:209142 +k1,162:22676112,23551606:209142 +k1,162:25597134,23551606:209142 +k1,162:27889011,23551606:209143 +k1,162:28629650,23551606:209142 +k1,162:29490220,23551606:209142 +k1,162:30791848,23551606:209143 +k1,162:31356850,23551606:209142 +k1,162:32583029,23551606:0 +) +(1,163:6630773,24393094:25952256,513147,126483 +k1,162:8745416,24393094:205579 +k1,162:10097219,24393094:205578 +k1,162:12300991,24393094:205579 +k1,162:13157997,24393094:205578 +k1,162:14589755,24393094:205579 +k1,162:15814418,24393094:205578 +k1,162:18181374,24393094:205579 +k1,162:19578397,24393094:205578 +k1,162:21217904,24393094:205579 +k1,162:22541526,24393094:205578 +k1,162:23766190,24393094:205579 +k1,162:26133145,24393094:205578 +k1,162:26954762,24393094:205579 +k1,162:27575177,24393094:205572 +k1,162:29348376,24393094:205578 +k1,162:31563944,24393094:205579 +k1,162:32583029,24393094:0 +) +(1,163:6630773,25234582:25952256,505283,134348 +k1,162:8879790,25234582:166283 +k1,162:10525220,25234582:166282 +k1,162:12383643,25234582:166283 +k1,162:14789291,25234582:166283 +k1,162:16101798,25234582:166282 +k1,162:18439944,25234582:166283 +k1,162:20557888,25234582:166282 +k1,162:22308176,25234582:166283 +k1,162:25980635,25234582:166283 +k1,162:26678414,25234582:166282 +k1,162:29648327,25234582:166283 +k1,162:32583029,25234582:0 +) +(1,163:6630773,26076070:25952256,513147,134348 +k1,162:9940705,26076070:155684 +k1,162:11751174,26076070:155685 +k1,162:12898418,26076070:155684 +k1,162:14339919,26076070:155685 +k1,162:17771092,26076070:155684 +k1,162:22141397,26076070:155685 +k1,162:26708309,26076070:155684 +k1,162:28695725,26076070:155685 +k1,162:31635378,26076070:155684 +k1,163:32583029,26076070:0 +) +(1,163:6630773,26917558:25952256,505283,134348 +k1,162:7468083,26917558:248797 +k1,162:8619311,26917558:248797 +k1,162:9955301,26917558:248748 +k1,162:11670794,26917558:248797 +k1,162:13529811,26917558:248797 +k1,162:15809569,26917558:248797 +k1,162:16709794,26917558:248797 +k1,162:17977677,26917558:248798 +k1,162:18641267,26917558:248747 +k1,162:21310309,26917558:248797 +k1,162:22175144,26917558:248797 +k1,162:23580651,26917558:248797 +k1,162:26302778,26917558:248798 +k1,162:27743020,26917558:248797 +k1,162:30752193,26917558:248797 +k1,162:31356850,26917558:248797 +k1,162:32583029,26917558:0 +) +(1,163:6630773,27759046:25952256,513147,134348 +k1,162:8769515,27759046:229678 +k1,162:9946845,27759046:229679 +k1,162:12434238,27759046:229678 +k1,162:14825294,27759046:229679 +k1,162:15671010,27759046:229678 +k1,162:18373362,27759046:229679 +k1,162:21250039,27759046:229678 +k1,162:22253698,27759046:229679 +k1,162:23502461,27759046:229678 +k1,162:26516109,27759046:229679 +k1,162:28163331,27759046:229678 +k1,162:29340661,27759046:229679 +k1,162:30158852,27759046:229678 +k1,162:32583029,27759046:0 +) +(1,163:6630773,28600534:25952256,505283,134348 +g1,162:7361499,28600534 +g1,162:10471182,28600534 +g1,162:11689496,28600534 +g1,162:13490425,28600534 +g1,162:16189853,28600534 +g1,162:17150610,28600534 +g1,162:17705699,28600534 +g1,162:19395217,28600534 +k1,163:32583029,28600534:10759703 +g1,163:32583029,28600534 +) +(1,164:6630773,30228454:25952256,505283,134348 +(1,164:6630773,30228454:2809528,485622,11795 +g1,164:6630773,30228454 +g1,164:9440301,30228454 +) +g1,164:11511894,30228454 +g1,164:12188225,30228454 +k1,164:32583029,30228454:16199844 +g1,164:32583029,30228454 +) +(1,167:6630773,31463158:25952256,505283,134348 +k1,166:7354733,31463158:236372 +k1,166:10213894,31463158:236410 +k1,166:13139901,31463158:236409 +k1,166:16544321,31463158:236410 +k1,166:18151744,31463158:236410 +k1,166:21202924,31463158:236409 +k1,166:23708190,31463158:236410 +k1,166:26500503,31463158:236409 +k1,166:27861511,31463158:236410 +k1,166:29305093,31463158:236409 +k1,166:30871884,31463158:236410 +k1,166:32583029,31463158:0 +) +(1,167:6630773,32304646:25952256,513147,126483 +k1,166:11619082,32304646:274960 +k1,166:13287993,32304646:274960 +k1,166:17143184,32304646:274959 +k1,166:18609589,32304646:274960 +k1,166:20091722,32304646:274960 +k1,166:23671663,32304646:274960 +k1,166:25814398,32304646:274959 +k1,166:26445218,32304646:274960 +k1,166:29177778,32304646:274960 +k1,166:32583029,32304646:0 +) +(1,167:6630773,33146134:25952256,513147,126483 +k1,166:7255069,33146134:268436 +k1,166:10338275,33146134:268435 +k1,166:13416895,33146134:268436 +k1,166:14336759,33146134:268436 +k1,166:14961054,33146134:268435 +k1,166:18479420,33146134:268436 +k1,166:19363894,33146134:268436 +k1,166:21234029,33146134:268435 +k1,166:23199847,33146134:268436 +k1,166:23824143,33146134:268436 +k1,166:26565907,33146134:268435 +k1,166:27517228,33146134:268436 +k1,166:28141524,33146134:268436 +k1,166:29948744,33146134:268435 +k1,166:32227169,33146134:268436 +k1,166:32583029,33146134:0 +) +(1,167:6630773,33987622:25952256,513147,134348 +k1,166:9778935,33987622:198387 +k1,166:11358166,33987622:198387 +k1,166:14540407,33987622:198387 +k1,166:15270290,33987622:198386 +k1,166:16667331,33987622:198387 +k1,166:18733494,33987622:198387 +k1,166:19287741,33987622:198387 +k1,166:22080043,33987622:198387 +k1,166:22906265,33987622:198387 +k1,166:24202379,33987622:198386 +k1,166:25941517,33987622:198387 +k1,166:27158989,33987622:198387 +k1,166:27772218,33987622:198386 +k1,166:30390850,33987622:198387 +k1,166:32583029,33987622:0 +) +(1,167:6630773,34829110:25952256,513147,95026 +h1,166:7601361,34829110:0,0,0 +g1,166:8181354,34829110 +g1,166:9761427,34829110 +g1,166:10492153,34829110 +g1,166:11710467,34829110 +g1,166:13843008,34829110 +g1,166:15423081,34829110 +g1,166:18432494,34829110 +g1,166:19298879,34829110 +k1,167:32583029,34829110:12695637 +g1,167:32583029,34829110 +) +(1,169:6630773,35670598:25952256,513147,134348 +h1,168:6630773,35670598:983040,0,0 +k1,168:9986823,35670598:166413 +k1,168:13643029,35670598:166414 +k1,168:14422204,35670598:166413 +k1,168:15607703,35670598:166414 +k1,168:16188927,35670598:166381 +k1,168:18775585,35670598:166413 +k1,168:19473495,35670598:166413 +k1,168:21617130,35670598:166414 +k1,168:23481581,35670598:166413 +k1,168:24804705,35670598:166414 +k1,168:25502615,35670598:166413 +k1,168:28002111,35670598:166414 +k1,168:30631367,35670598:166413 +k1,168:32583029,35670598:0 +) +(1,169:6630773,36512086:25952256,513147,134348 +k1,168:9777266,36512086:190164 +k1,168:12978810,36512086:190165 +k1,168:15334939,36512086:190164 +k1,168:16207988,36512086:190164 +k1,168:18294765,36512086:190165 +k1,168:19136357,36512086:190164 +k1,168:22991294,36512086:190164 +k1,168:24511840,36512086:190165 +k1,168:25472707,36512086:190164 +k1,168:26077705,36512086:190155 +k1,168:28963366,36512086:190165 +k1,168:29836415,36512086:190164 +k1,168:32583029,36512086:0 +) +(1,169:6630773,37353574:25952256,513147,134348 +k1,168:7698109,37353574:198984 +k1,168:8888652,37353574:198983 +k1,168:10153907,37353574:198984 +k1,168:12845224,37353574:198983 +k1,168:14438159,37353574:198984 +k1,168:16737571,37353574:198983 +k1,168:18541532,37353574:198984 +k1,168:19608867,37353574:198983 +k1,168:21356467,37353574:198984 +k1,168:22206879,37353574:198984 +k1,168:23913845,37353574:198983 +k1,168:25740088,37353574:198984 +k1,168:26598363,37353574:198983 +k1,168:28345963,37353574:198984 +k1,168:29413298,37353574:198983 +k1,168:30603842,37353574:198984 +k1,168:32583029,37353574:0 +) +(1,169:6630773,38195062:25952256,513147,134348 +k1,168:8440954,38195062:155397 +k1,168:9587912,38195062:155398 +k1,168:11640576,38195062:155397 +k1,168:13364251,38195062:155398 +k1,168:14178940,38195062:155397 +k1,168:16069731,38195062:155398 +k1,168:16813641,38195062:155397 +k1,168:18854510,38195062:155398 +k1,168:20691561,38195062:155397 +k1,168:21592103,38195062:155398 +k1,168:22398928,38195062:155397 +k1,168:24062309,38195062:155398 +k1,168:24573566,38195062:155397 +k1,168:26801868,38195062:155398 +k1,168:27616557,38195062:155397 +k1,168:29102336,38195062:155398 +k1,168:30028436,38195062:155397 +k1,168:32583029,38195062:0 +) +(1,169:6630773,39036550:25952256,513147,134348 +k1,168:7903965,39036550:172187 +k1,168:9586101,39036550:172186 +k1,168:11993721,39036550:172187 +k1,168:13405849,39036550:172187 +k1,168:14774722,39036550:172186 +k1,168:17709252,39036550:172187 +k1,168:19449716,39036550:172187 +k1,168:20281194,39036550:172186 +k1,168:22188774,39036550:172187 +k1,168:22775777,39036550:172160 +k1,168:23939523,39036550:172186 +k1,168:25177981,39036550:172187 +k1,168:28252102,39036550:172187 +k1,168:29083580,39036550:172186 +k1,168:30707389,39036550:172187 +k1,168:32583029,39036550:0 +) +(1,169:6630773,39878038:25952256,505283,126483 +k1,168:7602160,39878038:246559 +k1,168:9450419,39878038:246559 +k1,168:11408123,39878038:246559 +k1,168:12787144,39878038:246559 +k1,168:14126188,39878038:246559 +k1,168:15391832,39878038:246559 +k1,168:16053187,39878038:246512 +k1,168:18719991,39878038:246559 +k1,168:19617978,39878038:246559 +k1,168:21055982,39878038:246559 +k1,168:24495455,39878038:246559 +k1,168:28231806,39878038:246559 +k1,168:29669810,39878038:246559 +k1,168:31193666,39878038:246559 +k1,168:32583029,39878038:0 +) +(1,169:6630773,40719526:25952256,513147,134348 +k1,168:8970757,40719526:225793 +k1,168:10215636,40719526:225794 +k1,168:11747562,40719526:225793 +k1,168:13968271,40719526:225793 +k1,168:14853356,40719526:225793 +k1,168:18897277,40719526:225794 +k1,168:19940959,40719526:225793 +k1,168:21700950,40719526:225793 +k1,168:22612905,40719526:225793 +k1,168:23707051,40719526:225794 +k1,168:26003782,40719526:225793 +k1,168:27559956,40719526:225793 +k1,168:28654101,40719526:225793 +k1,168:30428511,40719526:225794 +k1,168:31305732,40719526:225793 +k1,168:32583029,40719526:0 +) +(1,169:6630773,41561014:25952256,513147,134348 +k1,168:7486981,41561014:173323 +k1,168:10090380,41561014:173324 +k1,168:11282788,41561014:173323 +k1,168:13019145,41561014:173323 +k1,168:13650565,41561014:173323 +k1,168:14355386,41561014:173324 +k1,168:15863677,41561014:173323 +k1,168:16688428,41561014:173323 +k1,168:18350075,41561014:173324 +k1,168:20258791,41561014:173323 +k1,168:22767162,41561014:173323 +k1,168:24321330,41561014:173324 +k1,168:25026150,41561014:173323 +k1,168:26265744,41561014:173323 +k1,168:29250562,41561014:173323 +k1,168:30039924,41561014:173324 +k1,168:31345054,41561014:173323 +k1,168:32583029,41561014:0 +) +(1,169:6630773,42402502:25952256,505283,134348 +k1,168:7665636,42402502:273335 +k1,168:8527485,42402502:273336 +k1,168:9872989,42402502:273335 +k1,168:12307702,42402502:273336 +k1,168:13572597,42402502:273335 +k1,168:15394549,42402502:273336 +k1,168:17430802,42402502:273335 +k1,168:19713472,42402502:273336 +k1,168:20638235,42402502:273335 +k1,168:22363849,42402502:273336 +k1,168:23656269,42402502:273335 +k1,168:25531305,42402502:273336 +k1,168:29013938,42402502:273335 +k1,168:32583029,42402502:0 +) +(1,169:6630773,43243990:25952256,513147,134348 +k1,168:7506521,43243990:216456 +k1,168:9458370,43243990:216456 +k1,168:10030686,43243990:216456 +k1,168:14599388,43243990:216456 +k1,168:17658140,43243990:216456 +k1,168:18822247,43243990:216456 +k1,168:20428066,43243990:216456 +k1,168:23372786,43243990:216456 +k1,168:24217077,43243990:216456 +k1,168:26418619,43243990:216456 +h1,168:27389207,43243990:0,0,0 +k1,168:27605663,43243990:216456 +k1,168:28690471,43243990:216456 +k1,168:30011209,43243990:216456 +k1,168:31252648,43243990:216456 +k1,168:32583029,43243990:0 +) +(1,169:6630773,44085478:25952256,513147,126483 +k1,168:7867824,44085478:217966 +k1,168:8500614,44085478:217947 +k1,168:11138825,44085478:217966 +k1,168:13247505,44085478:217966 +k1,168:14662158,44085478:217966 +k1,168:16106303,44085478:217966 +k1,168:16940307,44085478:217966 +k1,168:18214713,44085478:217966 +k1,168:19533684,44085478:217966 +k1,168:21261600,44085478:217966 +k1,168:23286394,44085478:217966 +k1,168:24120398,44085478:217966 +k1,168:25099892,44085478:217966 +k1,168:26336943,44085478:217966 +k1,168:28109423,44085478:217966 +k1,168:30398327,44085478:217966 +k1,168:31563944,44085478:217966 +k1,168:32583029,44085478:0 +) +(1,169:6630773,44926966:25952256,505283,126483 +k1,168:9172841,44926966:140829 +(1,168:9172841,44926966:0,414482,115847 +r1,168:9700406,44926966:527565,530329,115847 +k1,168:9172841,44926966:-527565 +) +(1,168:9172841,44926966:527565,414482,115847 +$1,168:9176118,44926966 +$1,168:9697129,44926966 +h1,168:9697129,44926966:0,411205,112570 +) +k1,168:10014904,44926966:140828 +k1,168:11347178,44926966:140829 +k1,168:12507092,44926966:140829 +k1,168:13874100,44926966:140829 +k1,168:14630966,44926966:140828 +k1,168:16139531,44926966:140829 +k1,168:16811857,44926966:140829 +k1,168:18501301,44926966:140828 +k1,168:19056915,44926966:140771 +k1,168:20298749,44926966:140829 +k1,168:23502730,44926966:140828 +k1,168:24259597,44926966:140829 +k1,168:27447850,44926966:140829 +k1,168:28058572,44926966:140829 +k1,168:28730897,44926966:140828 +k1,168:32227169,44926966:140829 +k1,168:32583029,44926966:0 +) +] +(1,169:32583029,45706769:0,0,0 +g1,169:32583029,45706769 +) +) +] +(1,169:6630773,47279633:25952256,0,0 +h1,169:6630773,47279633:25952256,0,0 +) +] +h1,169:4262630,4025873:0,0,0 +] +!22824 }15 -Input:116:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:117:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:118:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:119:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:120:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:121:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:112:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:113:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:114:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:115:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:116:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:117:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!557 {16 -[1,183:4262630,47279633:28320399,43253760,0 -(1,183:4262630,4025873:0,0,0 -[1,183:-473657,4025873:25952256,0,0 -(1,183:-473657,-710414:25952256,0,0 -h1,183:-473657,-710414:0,0,0 -(1,183:-473657,-710414:0,0,0 -(1,183:-473657,-710414:0,0,0 -g1,183:-473657,-710414 -(1,183:-473657,-710414:65781,0,65781 -g1,183:-407876,-710414 -[1,183:-407876,-644633:0,0,0 +[1,189:4262630,47279633:28320399,43253760,0 +(1,189:4262630,4025873:0,0,0 +[1,189:-473657,4025873:25952256,0,0 +(1,189:-473657,-710414:25952256,0,0 +h1,189:-473657,-710414:0,0,0 +(1,189:-473657,-710414:0,0,0 +(1,189:-473657,-710414:0,0,0 +g1,189:-473657,-710414 +(1,189:-473657,-710414:65781,0,65781 +g1,189:-407876,-710414 +[1,189:-407876,-644633:0,0,0 ] ) -k1,183:-473657,-710414:-65781 +k1,189:-473657,-710414:-65781 ) ) -k1,183:25478599,-710414:25952256 -g1,183:25478599,-710414 +k1,189:25478599,-710414:25952256 +g1,189:25478599,-710414 ) ] ) -[1,183:6630773,47279633:25952256,43253760,0 -[1,183:6630773,4812305:25952256,786432,0 -(1,183:6630773,4812305:25952256,475791,11795 -(1,183:6630773,4812305:25952256,475791,11795 -g1,183:3078558,4812305 -[1,183:3078558,4812305:0,0,0 -(1,183:3078558,2439708:0,1703936,0 -k1,183:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,183:2537886,2439708:1179648,16384,0 +[1,189:6630773,47279633:25952256,43253760,0 +[1,189:6630773,4812305:25952256,786432,0 +(1,189:6630773,4812305:25952256,475791,11795 +(1,189:6630773,4812305:25952256,475791,11795 +g1,189:3078558,4812305 +[1,189:3078558,4812305:0,0,0 +(1,189:3078558,2439708:0,1703936,0 +k1,189:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,189:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,183:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,189:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,183:3078558,4812305:0,0,0 -(1,183:3078558,2439708:0,1703936,0 -g1,183:29030814,2439708 -g1,183:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,183:36151628,1915420:16384,1179648,0 +[1,189:3078558,4812305:0,0,0 +(1,189:3078558,2439708:0,1703936,0 +g1,189:29030814,2439708 +g1,189:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,189:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,183:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,189:37855564,2439708:1179648,16384,0 ) ) -k1,183:3078556,2439708:-34777008 +k1,189:3078556,2439708:-34777008 ) ] -[1,183:3078558,4812305:0,0,0 -(1,183:3078558,49800853:0,16384,2228224 -k1,183:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,183:2537886,49800853:1179648,16384,0 +[1,189:3078558,4812305:0,0,0 +(1,189:3078558,49800853:0,16384,2228224 +k1,189:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,189:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,183:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,189:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,183:3078558,4812305:0,0,0 -(1,183:3078558,49800853:0,16384,2228224 -g1,183:29030814,49800853 -g1,183:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,183:36151628,51504789:16384,1179648,0 +[1,189:3078558,4812305:0,0,0 +(1,189:3078558,49800853:0,16384,2228224 +g1,189:29030814,49800853 +g1,189:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,189:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,183:37855564,49800853:1179648,16384,0 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,189:37855564,49800853:1179648,16384,0 ) ) -k1,183:3078556,49800853:-34777008 +k1,189:3078556,49800853:-34777008 ) ] -g1,183:6630773,4812305 -g1,183:6630773,4812305 -g1,183:7279579,4812305 -k1,183:32184571,4812305:24904992 -) -) -] -[1,183:6630773,45706769:25952256,40108032,0 -(1,183:6630773,45706769:25952256,40108032,0 -(1,183:6630773,45706769:0,0,0 -g1,183:6630773,45706769 -) -[1,183:6630773,45706769:25952256,40108032,0 -[1,168:6630773,14804429:25952256,9205692,0 -[1,168:6630773,14804429:25952256,9205692,0 -(1,167:6630773,10656634:25952256,5057897,0 -g1,167:6630773,10656634 -h1,166:6630773,10656634:0,0,0 -(1,166:6630773,10656634:25952256,5057897,0 -) -g1,167:32583029,10656634 -g1,167:32583029,10656634 -) -(1,167:6630773,12153482:25952256,485622,11795 -h1,167:6630773,12153482:0,0,0 -g1,167:9295467,12153482 -k1,167:32583028,12153482:22297312 -g1,167:32583028,12153482 -) -(1,167:6630773,12994970:25952256,505283,126483 -h1,167:6630773,12994970:0,0,0 -k1,167:8054217,12994970:226757 -k1,167:8695789,12994970:226729 -k1,167:11342791,12994970:226757 -k1,167:14894188,12994970:226756 -k1,167:15736983,12994970:226757 -k1,167:18561587,12994970:226757 -k1,167:19985031,12994970:226757 -k1,167:21865260,12994970:226756 -k1,167:25581809,12994970:226757 -k1,167:27283781,12994970:226757 -k1,167:29020488,12994970:226757 -k1,167:31054072,12994970:226756 -k1,167:31896867,12994970:226757 -k1,167:32583029,12994970:0 -) -(1,167:6630773,13836458:25952256,505283,134348 -k1,167:7416549,13836458:169738 -k1,167:9571373,13836458:169738 -h1,167:10541961,13836458:0,0,0 -k1,167:10885369,13836458:169738 -k1,167:14666797,13836458:169739 -k1,167:17259401,13836458:169738 -k1,167:18190667,13836458:169738 -k1,167:19379490,13836458:169738 -k1,167:20930072,13836458:169738 -k1,167:22091370,13836458:169738 -k1,167:25324262,13836458:169739 -k1,167:26110038,13836458:169738 -k1,167:28550599,13836458:169738 -k1,167:30409855,13836458:169738 -k1,167:32583029,13836458:0 -) -(1,167:6630773,14677946:25952256,505283,126483 -g1,167:9608729,14677946 -g1,167:10569486,14677946 -g1,167:11183558,14677946 -g1,167:12374347,14677946 -g1,167:15636729,14677946 -g1,167:16451996,14677946 -k1,167:32583029,14677946:14269811 -g1,167:32583029,14677946 -) -] -] -[1,176:6630773,25860095:25952256,10269234,0 -[1,176:6630773,25860095:25952256,10269234,0 -(1,175:6630773,22553788:25952256,6962927,0 -g1,175:6630773,22553788 -h1,174:6630773,22553788:0,0,0 -(1,174:6630773,22553788:25952256,6962927,0 -) -g1,175:32583029,22553788 -g1,175:32583029,22553788 -) -(1,175:6630773,24050636:25952256,485622,11795 -h1,175:6630773,24050636:0,0,0 -g1,175:9295467,24050636 -k1,175:32583028,24050636:22297312 -g1,175:32583028,24050636 -) -(1,175:6630773,24892124:25952256,513147,126483 -h1,175:6630773,24892124:0,0,0 -k1,175:8037295,24892124:209835 -k1,175:8661963,24892124:209825 -k1,175:11292043,24892124:209835 -k1,175:13015105,24892124:209836 -k1,175:15456441,24892124:209835 -k1,175:19156068,24892124:209835 -k1,175:20841119,24892124:209836 -k1,175:22560904,24892124:209835 -k1,175:25367275,24892124:209835 -k1,175:29188800,24892124:209836 -k1,175:31821501,24892124:209835 -k1,175:32583029,24892124:0 -) -(1,175:6630773,25733612:25952256,505283,126483 -g1,175:7849087,25733612 -g1,175:9429160,25733612 -g1,175:10619949,25733612 -g1,175:13882331,25733612 -g1,175:14697598,25733612 -g1,175:16126938,25733612 -g1,175:18015685,25733612 -g1,175:20388088,25733612 -g1,175:23366044,25733612 -g1,175:24326801,25733612 -g1,175:24940873,25733612 -g1,175:26131662,25733612 -g1,175:29394044,25733612 -g1,175:30209311,25733612 -k1,175:32583029,25733612:832311 -g1,175:32583029,25733612 -) -] -] -(1,163:6630773,27826175:25952256,513147,134348 -k1,162:9500867,27826175:156248 -k1,162:12292319,27826175:156249 -k1,162:13829411,27826175:156248 -k1,162:15177105,27826175:156249 -k1,162:15921866,27826175:156248 -k1,162:17274802,27826175:156249 -k1,162:19851295,27826175:156248 -k1,162:21111826,27826175:156249 -k1,162:22580760,27826175:156248 -k1,162:25499352,27826175:156249 -k1,162:27353638,27826175:156248 -k1,162:30573040,27826175:156249 -k1,162:32583029,27826175:0 -) -(1,163:6630773,28667663:25952256,513147,126483 -k1,162:7603720,28667663:202244 -k1,162:8893204,28667663:202242 -k1,162:10241673,28667663:202244 -k1,162:13041764,28667663:202244 -k1,162:14316177,28667663:202244 -k1,162:15537507,28667663:202245 -k1,162:17115352,28667663:202244 -k1,162:20503956,28667663:202244 -k1,162:21237697,28667663:202244 -k1,162:22055980,28667663:202245 -k1,162:23277309,28667663:202244 -k1,162:27120078,28667663:202244 -k1,162:27981614,28667663:202244 -k1,162:29202944,28667663:202245 -k1,162:30631367,28667663:202244 -k1,162:32583029,28667663:0 -) -(1,163:6630773,29509151:25952256,513147,134348 -g1,162:8272449,29509151 -g1,162:9087716,29509151 -g1,162:10306030,29509151 -g1,162:11731438,29509151 -g1,162:13536299,29509151 -g1,162:14714636,29509151 -g1,162:17229252,29509151 -h1,162:18199840,29509151:0,0,0 -g1,162:18399069,29509151 -g1,162:19789743,29509151 -h1,162:20760331,29509151:0,0,0 -k1,163:32583029,29509151:11441934 -g1,163:32583029,29509151 -) -(1,171:6630773,30350639:25952256,513147,134348 -h1,170:6630773,30350639:983040,0,0 -k1,170:9037965,30350639:227465 -k1,170:10437868,30350639:227464 -k1,170:13419811,30350639:227465 -k1,170:15832901,30350639:227464 -k1,170:18489130,30350639:227465 -k1,170:19735680,30350639:227465 -k1,170:21806016,30350639:227464 -k1,170:22692773,30350639:227465 -k1,170:25565270,30350639:227464 -k1,170:26148595,30350639:227465 -k1,170:28249078,30350639:227464 -k1,170:31809704,30350639:227465 -k1,171:32583029,30350639:0 -) -(1,171:6630773,31192127:25952256,513147,134348 -k1,170:8189925,31192127:134399 -h1,170:9160513,31192127:0,0,0 -k1,170:9294912,31192127:134399 -k1,170:11420295,31192127:134399 -k1,170:12885075,31192127:134399 -k1,170:14038559,31192127:134399 -k1,170:16593203,31192127:134399 -k1,170:18444645,31192127:134399 -k1,170:20092270,31192127:134399 -k1,170:21245754,31192127:134399 -k1,170:22760997,31192127:134399 -k1,170:23996401,31192127:134399 -k1,170:26553666,31192127:134399 -k1,170:28919566,31192127:134399 -k1,170:32583029,31192127:0 -) -(1,171:6630773,32033615:25952256,513147,126483 -g1,170:8281624,32033615 -g1,170:9167015,32033615 -g1,170:9722104,32033615 -g1,170:12624038,32033615 -g1,170:13991774,32033615 -g1,170:14850295,32033615 -k1,171:32583029,32033615:16332885 -g1,171:32583029,32033615 -) -(1,179:6630773,32875103:25952256,513147,126483 -h1,178:6630773,32875103:983040,0,0 -k1,178:9109562,32875103:299062 -k1,178:12400344,32875103:299063 -k1,178:13315444,32875103:299062 -k1,178:14817748,32875103:299063 -k1,178:16698849,32875103:299062 -k1,178:19289706,32875103:299063 -k1,178:20964369,32875103:299062 -k1,178:22282516,32875103:299062 -k1,178:25001824,32875103:299063 -k1,178:27774215,32875103:299062 -k1,178:29020929,32875103:299063 -k1,178:30700835,32875103:299062 -k1,178:32583029,32875103:0 -) -(1,179:6630773,33716591:25952256,505283,134348 -k1,178:10766571,33716591:152520 -k1,178:13991419,33716591:152520 -k1,178:15135499,33716591:152520 -k1,178:16354290,33716591:152520 -k1,178:20022161,33716591:152520 -k1,178:21525378,33716591:152520 -k1,178:23058086,33716591:152520 -k1,178:24202166,33716591:152520 -k1,178:25583486,33716591:152520 -k1,178:29077687,33716591:152520 -k1,178:30928245,33716591:152520 -k1,178:32583029,33716591:0 -) -(1,179:6630773,34558079:25952256,513147,126483 -k1,178:7371049,34558079:208779 -k1,178:7935688,34558079:208779 -k1,178:9674733,34558079:208779 -k1,178:10534939,34558079:208778 -k1,178:11678261,34558079:208779 -k1,178:13241014,34558079:208779 -k1,178:15201570,34558079:208779 -k1,178:17823385,34558079:208779 -k1,178:19223609,34558079:208779 -k1,178:21647505,34558079:208779 -k1,178:23423904,34558079:208778 -k1,178:25384460,34558079:208779 -k1,178:28355582,34558079:208779 -k1,178:31025238,34558079:208779 -k1,178:32583029,34558079:0 -) -(1,179:6630773,35399567:25952256,513147,126483 -k1,178:7768538,35399567:146205 -k1,178:9200558,35399567:146204 -k1,178:11830578,35399567:146205 -k1,178:12628211,35399567:146205 -k1,178:15595085,35399567:146204 -k1,178:17439328,35399567:146205 -k1,178:21474438,35399567:146204 -k1,178:22152140,35399567:146205 -k1,178:24828035,35399567:146205 -k1,178:26165684,35399567:146204 -k1,178:28009927,35399567:146205 -k1,178:32583029,35399567:0 -) -(1,179:6630773,36241055:25952256,513147,134348 -k1,178:10072658,36241055:180814 -k1,178:12986322,36241055:180813 -k1,178:13826428,36241055:180814 -k1,178:15361216,36241055:180814 -k1,178:18304372,36241055:180813 -k1,178:23113339,36241055:180814 -k1,178:24824419,36241055:180814 -k1,178:25656661,36241055:180814 -k1,178:26585240,36241055:180813 -k1,178:30203417,36241055:180814 -k1,178:32583029,36241055:0 -) -(1,179:6630773,37082543:25952256,505283,134348 -k1,178:10060818,37082543:257447 -k1,178:11604081,37082543:257447 -k1,178:13336743,37082543:257447 -k1,178:14613275,37082543:257447 -k1,178:18283182,37082543:257447 -k1,178:19192058,37082543:257448 -k1,178:20197271,37082543:257447 -k1,178:23716445,37082543:257447 -k1,178:24589930,37082543:257447 -k1,178:26300966,37082543:257447 -k1,178:29480008,37082543:257447 -k1,178:31021961,37082543:257447 -k1,179:32583029,37082543:0 -) -(1,179:6630773,37924031:25952256,513147,126483 -k1,178:8669240,37924031:227052 -k1,178:12166539,37924031:227052 -k1,178:13497874,37924031:227053 -k1,178:14472692,37924031:227052 -k1,178:16737914,37924031:227052 -k1,178:17581004,37924031:227052 -k1,178:20241408,37924031:227052 -k1,178:21659905,37924031:227052 -k1,178:27897265,37924031:227053 -k1,178:29350496,37924031:227052 -k1,178:31064560,37924031:227052 -k1,178:32583029,37924031:0 -) -(1,179:6630773,38765519:25952256,513147,126483 -k1,178:8124380,38765519:180265 -k1,178:11511977,38765519:180265 -k1,178:12048101,38765519:180264 -k1,178:14301270,38765519:180265 -k1,178:15140827,38765519:180265 -k1,178:16087208,38765519:180265 -k1,178:17286558,38765519:180265 -k1,178:19152408,38765519:180264 -k1,178:21019570,38765519:180265 -k1,178:22391280,38765519:180265 -k1,178:23187583,38765519:180265 -k1,178:24969548,38765519:180265 -k1,178:27020866,38765519:180265 -k1,178:29247164,38765519:180264 -k1,178:29885526,38765519:180265 -k1,178:31931601,38765519:180265 -k1,178:32583029,38765519:0 -) -(1,179:6630773,39607007:25952256,505283,126483 -k1,178:10080457,39607007:193855 -k1,178:11293398,39607007:193856 -k1,178:13140726,39607007:193855 -k1,178:15020168,39607007:193856 -k1,178:15826785,39607007:193855 -k1,178:16376500,39607007:193855 -k1,178:18023945,39607007:193856 -k1,178:19816878,39607007:193855 -k1,178:22197015,39607007:193856 -k1,178:23382430,39607007:193855 -k1,178:23932145,39607007:193855 -k1,178:25479975,39607007:193856 -k1,178:27798507,39607007:193855 -k1,178:29183808,39607007:193856 -k1,178:31345054,39607007:193855 -k1,178:32583029,39607007:0 -) -(1,179:6630773,40448495:25952256,513147,134348 -g1,178:7489294,40448495 -g1,178:12624039,40448495 -g1,178:13474696,40448495 -g1,178:15375895,40448495 -g1,178:17286269,40448495 -g1,178:18815879,40448495 -g1,178:19666536,40448495 -g1,178:20681033,40448495 -g1,178:21236122,40448495 -g1,178:23130112,40448495 -g1,178:24718704,40448495 -k1,179:32583029,40448495:5136061 -g1,179:32583029,40448495 -) -v1,181:6630773,41814271:0,393216,0 -(1,183:6630773,45008437:25952256,3587382,589824 -g1,183:6630773,45008437 -(1,183:6630773,45008437:25952256,3587382,589824 -(1,183:6630773,45598261:25952256,4177206,0 -[1,183:6630773,45598261:25952256,4177206,0 -(1,183:6630773,45598261:25952256,4150992,0 -r1,183:6656987,45598261:26214,4150992,0 -[1,183:6656987,45598261:25899828,4150992,0 -(1,183:6656987,45008437:25899828,2971344,0 -[1,183:7246811,45008437:24720180,2971344,0 -(1,183:7246811,43198978:24720180,1161885,196608 -(1,181:7246811,43198978:0,1161885,196608 -r1,183:8794447,43198978:1547636,1358493,196608 -k1,181:7246811,43198978:-1547636 -) -(1,181:7246811,43198978:1547636,1161885,196608 -) -k1,181:9035050,43198978:240603 -k1,181:9903487,43198978:240602 -k1,181:11163175,43198978:240603 -k1,181:13824022,43198978:240602 -k1,181:15221335,43198978:240603 -k1,181:17178325,43198978:240602 -k1,181:20908720,43198978:240603 -k1,181:21762084,43198978:240602 -k1,181:23021772,43198978:240603 -(1,181:23021772,43198978:0,414482,115847 -r1,183:23380038,43198978:358266,530329,115847 -k1,181:23021772,43198978:-358266 -) -(1,181:23021772,43198978:358266,414482,115847 -k1,181:23021772,43198978:3277 -h1,181:23376761,43198978:0,411205,112570 -) -k1,181:23620640,43198978:240602 -k1,181:26436153,43198978:240603 -k1,181:28459990,43198978:240602 -k1,181:29857303,43198978:240603 -k1,181:31611131,43198978:240602 -k1,181:31966991,43198978:0 -) -(1,183:7246811,44040466:24720180,513147,134348 -k1,181:8632406,44040466:217088 -k1,181:9611022,44040466:217088 -k1,181:12535402,44040466:217088 -k1,181:13771575,44040466:217088 -k1,181:15999308,44040466:217088 -k1,181:16899281,44040466:217088 -k1,181:18771153,44040466:217088 -k1,181:20262916,44040466:217088 -k1,181:20945965,44040466:217088 -k1,181:22182138,44040466:217088 -k1,181:23567733,44040466:217088 -k1,181:24889103,44040466:217088 -k1,181:25853957,44040466:217088 -k1,181:29661107,44040466:217088 -k1,181:30564357,44040466:217088 -k1,181:31552148,44040466:217088 -k1,183:31966991,44040466:0 -) -(1,183:7246811,44881954:24720180,513147,126483 -k1,181:10721545,44881954:141573 -k1,181:11882203,44881954:141573 -k1,181:13866649,44881954:141574 -k1,181:15140684,44881954:141573 -k1,181:16030023,44881954:141573 -k1,181:18521717,44881954:141573 -k1,181:19276052,44881954:141573 -k1,181:20436711,44881954:141574 -k1,181:23172199,44881954:141573 -k1,181:26066939,44881954:141573 -k1,181:26970040,44881954:141573 -k1,181:27467474,44881954:141574 -k1,181:28892242,44881954:141573 -(1,181:28892242,44881954:0,414482,115847 -r1,183:29250508,44881954:358266,530329,115847 -k1,181:28892242,44881954:-358266 -) -(1,181:28892242,44881954:358266,414482,115847 -k1,181:28892242,44881954:3277 -h1,181:29247231,44881954:0,411205,112570 -) -k1,181:29392081,44881954:141573 -k1,181:31966991,44881954:0 -) -] -) -] -r1,183:32583029,45598261:26214,4150992,0 -) -] -) -) -g1,183:32583029,45008437 -) -] -(1,183:32583029,45706769:0,0,0 -g1,183:32583029,45706769 -) -) -] -(1,183:6630773,47279633:25952256,0,0 -h1,183:6630773,47279633:25952256,0,0 -) -] -h1,183:4262630,4025873:0,0,0 -] -!16566 +g1,189:6630773,4812305 +g1,189:6630773,4812305 +g1,189:7279579,4812305 +k1,189:32184571,4812305:24904992 +) +) +] +[1,189:6630773,45706769:25952256,40108032,0 +(1,189:6630773,45706769:25952256,40108032,0 +(1,189:6630773,45706769:0,0,0 +g1,189:6630773,45706769 +) +[1,189:6630773,45706769:25952256,40108032,0 +[1,174:6630773,14804429:25952256,9205692,0 +[1,174:6630773,14804429:25952256,9205692,0 +(1,173:6630773,10656634:25952256,5057897,0 +g1,173:6630773,10656634 +h1,172:6630773,10656634:0,0,0 +(1,172:6630773,10656634:25952256,5057897,0 +) +g1,173:32583029,10656634 +g1,173:32583029,10656634 +) +(1,173:6630773,12153482:25952256,485622,11795 +h1,173:6630773,12153482:0,0,0 +g1,173:9295467,12153482 +k1,173:32583028,12153482:22297312 +g1,173:32583028,12153482 +) +(1,173:6630773,12994970:25952256,505283,126483 +h1,173:6630773,12994970:0,0,0 +k1,173:8054217,12994970:226757 +k1,173:8695789,12994970:226729 +k1,173:11342791,12994970:226757 +k1,173:14894188,12994970:226756 +k1,173:15736983,12994970:226757 +k1,173:18561587,12994970:226757 +k1,173:19985031,12994970:226757 +k1,173:21865260,12994970:226756 +k1,173:25581809,12994970:226757 +k1,173:27283781,12994970:226757 +k1,173:29020488,12994970:226757 +k1,173:31054072,12994970:226756 +k1,173:31896867,12994970:226757 +k1,173:32583029,12994970:0 +) +(1,173:6630773,13836458:25952256,505283,134348 +k1,173:7416549,13836458:169738 +k1,173:9571373,13836458:169738 +h1,173:10541961,13836458:0,0,0 +k1,173:10885369,13836458:169738 +k1,173:14666797,13836458:169739 +k1,173:17259401,13836458:169738 +k1,173:18190667,13836458:169738 +k1,173:19379490,13836458:169738 +k1,173:20930072,13836458:169738 +k1,173:22091370,13836458:169738 +k1,173:25324262,13836458:169739 +k1,173:26110038,13836458:169738 +k1,173:28550599,13836458:169738 +k1,173:30409855,13836458:169738 +k1,173:32583029,13836458:0 +) +(1,173:6630773,14677946:25952256,505283,126483 +g1,173:9608729,14677946 +g1,173:10569486,14677946 +g1,173:11183558,14677946 +g1,173:12374347,14677946 +g1,173:15636729,14677946 +g1,173:16451996,14677946 +k1,173:32583029,14677946:14269811 +g1,173:32583029,14677946 +) +] +] +[1,182:6630773,25860095:25952256,10269234,0 +[1,182:6630773,25860095:25952256,10269234,0 +(1,181:6630773,22553788:25952256,6962927,0 +g1,181:6630773,22553788 +h1,180:6630773,22553788:0,0,0 +(1,180:6630773,22553788:25952256,6962927,0 +) +g1,181:32583029,22553788 +g1,181:32583029,22553788 +) +(1,181:6630773,24050636:25952256,485622,11795 +h1,181:6630773,24050636:0,0,0 +g1,181:9295467,24050636 +k1,181:32583028,24050636:22297312 +g1,181:32583028,24050636 +) +(1,181:6630773,24892124:25952256,513147,126483 +h1,181:6630773,24892124:0,0,0 +k1,181:8037295,24892124:209835 +k1,181:8661963,24892124:209825 +k1,181:11292043,24892124:209835 +k1,181:13015105,24892124:209836 +k1,181:15456441,24892124:209835 +k1,181:19156068,24892124:209835 +k1,181:20841119,24892124:209836 +k1,181:22560904,24892124:209835 +k1,181:25367275,24892124:209835 +k1,181:29188800,24892124:209836 +k1,181:31821501,24892124:209835 +k1,181:32583029,24892124:0 +) +(1,181:6630773,25733612:25952256,505283,126483 +g1,181:7849087,25733612 +g1,181:9429160,25733612 +g1,181:10619949,25733612 +g1,181:13882331,25733612 +g1,181:14697598,25733612 +g1,181:16126938,25733612 +g1,181:18015685,25733612 +g1,181:20388088,25733612 +g1,181:23366044,25733612 +g1,181:24326801,25733612 +g1,181:24940873,25733612 +g1,181:26131662,25733612 +g1,181:29394044,25733612 +g1,181:30209311,25733612 +k1,181:32583029,25733612:832311 +g1,181:32583029,25733612 +) +] +] +(1,169:6630773,27826175:25952256,513147,134348 +k1,168:9500867,27826175:156248 +k1,168:12292319,27826175:156249 +k1,168:13829411,27826175:156248 +k1,168:15177105,27826175:156249 +k1,168:15921866,27826175:156248 +k1,168:17274802,27826175:156249 +k1,168:19851295,27826175:156248 +k1,168:21111826,27826175:156249 +k1,168:22580760,27826175:156248 +k1,168:25499352,27826175:156249 +k1,168:27353638,27826175:156248 +k1,168:30573040,27826175:156249 +k1,168:32583029,27826175:0 +) +(1,169:6630773,28667663:25952256,513147,126483 +k1,168:7603720,28667663:202244 +k1,168:8893204,28667663:202242 +k1,168:10241673,28667663:202244 +k1,168:13041764,28667663:202244 +k1,168:14316177,28667663:202244 +k1,168:15537507,28667663:202245 +k1,168:17115352,28667663:202244 +k1,168:20503956,28667663:202244 +k1,168:21237697,28667663:202244 +k1,168:22055980,28667663:202245 +k1,168:23277309,28667663:202244 +k1,168:27120078,28667663:202244 +k1,168:27981614,28667663:202244 +k1,168:29202944,28667663:202245 +k1,168:30631367,28667663:202244 +k1,168:32583029,28667663:0 +) +(1,169:6630773,29509151:25952256,513147,134348 +g1,168:8272449,29509151 +g1,168:9087716,29509151 +g1,168:10306030,29509151 +g1,168:11731438,29509151 +g1,168:13536299,29509151 +g1,168:14714636,29509151 +g1,168:17229252,29509151 +h1,168:18199840,29509151:0,0,0 +g1,168:18399069,29509151 +g1,168:19789743,29509151 +h1,168:20760331,29509151:0,0,0 +k1,169:32583029,29509151:11441934 +g1,169:32583029,29509151 +) +(1,177:6630773,30350639:25952256,513147,134348 +h1,176:6630773,30350639:983040,0,0 +k1,176:9006780,30350639:196280 +k1,176:10375500,30350639:196281 +k1,176:13326258,30350639:196280 +k1,176:15708165,30350639:196281 +k1,176:18333209,30350639:196280 +k1,176:19548574,30350639:196280 +k1,176:21587727,30350639:196281 +k1,176:22443299,30350639:196280 +k1,176:25284613,30350639:196281 +k1,176:25836753,30350639:196280 +k1,176:27906053,30350639:196281 +k1,176:31435494,30350639:196280 +k1,177:32583029,30350639:0 +) +(1,177:6630773,31192127:25952256,513147,102891 +k1,176:7844499,31192127:163184 +h1,176:8815087,31192127:0,0,0 +k1,176:8978272,31192127:163185 +k1,176:11132440,31192127:163184 +k1,176:12626006,31192127:163185 +k1,176:13808275,31192127:163184 +k1,176:16391705,31192127:163185 +k1,176:18271932,31192127:163184 +k1,176:19948343,31192127:163185 +k1,176:21130612,31192127:163184 +k1,176:22674641,31192127:163185 +k1,176:23938830,31192127:163184 +k1,176:26524881,31192127:163185 +k1,176:28919566,31192127:163184 +k1,176:32583029,31192127:0 +) +(1,177:6630773,32033615:25952256,513147,126483 +g1,176:8281624,32033615 +g1,176:9167015,32033615 +g1,176:9722104,32033615 +g1,176:12624038,32033615 +g1,176:13991774,32033615 +g1,176:14850295,32033615 +k1,177:32583029,32033615:16332885 +g1,177:32583029,32033615 +) +(1,185:6630773,32875103:25952256,513147,126483 +h1,184:6630773,32875103:983040,0,0 +k1,184:9109562,32875103:299062 +k1,184:12400344,32875103:299063 +k1,184:13315444,32875103:299062 +k1,184:14817748,32875103:299063 +k1,184:16698849,32875103:299062 +k1,184:19289706,32875103:299063 +k1,184:20964369,32875103:299062 +k1,184:22282516,32875103:299062 +k1,184:25001824,32875103:299063 +k1,184:27774215,32875103:299062 +k1,184:29020929,32875103:299063 +k1,184:30700835,32875103:299062 +k1,184:32583029,32875103:0 +) +(1,185:6630773,33716591:25952256,505283,134348 +k1,184:10766571,33716591:152520 +k1,184:13991419,33716591:152520 +k1,184:15135499,33716591:152520 +k1,184:16354290,33716591:152520 +k1,184:20022161,33716591:152520 +k1,184:21525378,33716591:152520 +k1,184:23058086,33716591:152520 +k1,184:24202166,33716591:152520 +k1,184:25583486,33716591:152520 +k1,184:29077687,33716591:152520 +k1,184:30928245,33716591:152520 +k1,184:32583029,33716591:0 +) +(1,185:6630773,34558079:25952256,513147,126483 +k1,184:7371049,34558079:208779 +k1,184:7935688,34558079:208779 +k1,184:9674733,34558079:208779 +k1,184:10534939,34558079:208778 +k1,184:11678261,34558079:208779 +k1,184:13241014,34558079:208779 +k1,184:15201570,34558079:208779 +k1,184:17823385,34558079:208779 +k1,184:19223609,34558079:208779 +k1,184:21647505,34558079:208779 +k1,184:23423904,34558079:208778 +k1,184:25384460,34558079:208779 +k1,184:28355582,34558079:208779 +k1,184:31025238,34558079:208779 +k1,184:32583029,34558079:0 +) +(1,185:6630773,35399567:25952256,513147,126483 +k1,184:7768538,35399567:146205 +k1,184:9200558,35399567:146204 +k1,184:11830578,35399567:146205 +k1,184:12628211,35399567:146205 +k1,184:15595085,35399567:146204 +k1,184:17439328,35399567:146205 +k1,184:21474438,35399567:146204 +k1,184:22152140,35399567:146205 +k1,184:24828035,35399567:146205 +k1,184:26165684,35399567:146204 +k1,184:28009927,35399567:146205 +k1,184:32583029,35399567:0 +) +(1,185:6630773,36241055:25952256,513147,134348 +k1,184:10072658,36241055:180814 +k1,184:12986322,36241055:180813 +k1,184:13826428,36241055:180814 +k1,184:15361216,36241055:180814 +k1,184:18304372,36241055:180813 +k1,184:23113339,36241055:180814 +k1,184:24824419,36241055:180814 +k1,184:25656661,36241055:180814 +k1,184:26585240,36241055:180813 +k1,184:30203417,36241055:180814 +k1,184:32583029,36241055:0 +) +(1,185:6630773,37082543:25952256,505283,134348 +k1,184:10060818,37082543:257447 +k1,184:11604081,37082543:257447 +k1,184:13336743,37082543:257447 +k1,184:14613275,37082543:257447 +k1,184:18283182,37082543:257447 +k1,184:19192058,37082543:257448 +k1,184:20197271,37082543:257447 +k1,184:23716445,37082543:257447 +k1,184:24589930,37082543:257447 +k1,184:26300966,37082543:257447 +k1,184:29480008,37082543:257447 +k1,184:31021961,37082543:257447 +k1,185:32583029,37082543:0 +) +(1,185:6630773,37924031:25952256,513147,126483 +k1,184:8669240,37924031:227052 +k1,184:12166539,37924031:227052 +k1,184:13497874,37924031:227053 +k1,184:14472692,37924031:227052 +k1,184:16737914,37924031:227052 +k1,184:17581004,37924031:227052 +k1,184:20241408,37924031:227052 +k1,184:21659905,37924031:227052 +k1,184:27897265,37924031:227053 +k1,184:29350496,37924031:227052 +k1,184:31064560,37924031:227052 +k1,184:32583029,37924031:0 +) +(1,185:6630773,38765519:25952256,513147,126483 +k1,184:8124380,38765519:180265 +k1,184:11511977,38765519:180265 +k1,184:12048101,38765519:180264 +k1,184:14301270,38765519:180265 +k1,184:15140827,38765519:180265 +k1,184:16087208,38765519:180265 +k1,184:17286558,38765519:180265 +k1,184:19152408,38765519:180264 +k1,184:21019570,38765519:180265 +k1,184:22391280,38765519:180265 +k1,184:23187583,38765519:180265 +k1,184:24969548,38765519:180265 +k1,184:27020866,38765519:180265 +k1,184:29247164,38765519:180264 +k1,184:29885526,38765519:180265 +k1,184:31931601,38765519:180265 +k1,184:32583029,38765519:0 +) +(1,185:6630773,39607007:25952256,505283,126483 +k1,184:10080457,39607007:193855 +k1,184:11293398,39607007:193856 +k1,184:13140726,39607007:193855 +k1,184:15020168,39607007:193856 +k1,184:15826785,39607007:193855 +k1,184:16376500,39607007:193855 +k1,184:18023945,39607007:193856 +k1,184:19816878,39607007:193855 +k1,184:22197015,39607007:193856 +k1,184:23382430,39607007:193855 +k1,184:23932145,39607007:193855 +k1,184:25479975,39607007:193856 +k1,184:27798507,39607007:193855 +k1,184:29183808,39607007:193856 +k1,184:31345054,39607007:193855 +k1,184:32583029,39607007:0 +) +(1,185:6630773,40448495:25952256,513147,134348 +g1,184:7489294,40448495 +g1,184:12624039,40448495 +g1,184:13474696,40448495 +g1,184:15375895,40448495 +g1,184:17286269,40448495 +g1,184:18815879,40448495 +g1,184:19666536,40448495 +g1,184:20681033,40448495 +g1,184:21236122,40448495 +g1,184:23130112,40448495 +g1,184:24718704,40448495 +k1,185:32583029,40448495:5136061 +g1,185:32583029,40448495 +) +v1,187:6630773,41814271:0,393216,0 +(1,189:6630773,45008437:25952256,3587382,589824 +g1,189:6630773,45008437 +(1,189:6630773,45008437:25952256,3587382,589824 +(1,189:6630773,45598261:25952256,4177206,0 +[1,189:6630773,45598261:25952256,4177206,0 +(1,189:6630773,45598261:25952256,4150992,0 +r1,189:6656987,45598261:26214,4150992,0 +[1,189:6656987,45598261:25899828,4150992,0 +(1,189:6656987,45008437:25899828,2971344,0 +[1,189:7246811,45008437:24720180,2971344,0 +(1,189:7246811,43198978:24720180,1161885,196608 +(1,187:7246811,43198978:0,1161885,196608 +r1,189:8794447,43198978:1547636,1358493,196608 +k1,187:7246811,43198978:-1547636 +) +(1,187:7246811,43198978:1547636,1161885,196608 +) +k1,187:9035050,43198978:240603 +k1,187:9903487,43198978:240602 +k1,187:11163175,43198978:240603 +k1,187:13824022,43198978:240602 +k1,187:15221335,43198978:240603 +k1,187:17178325,43198978:240602 +k1,187:20908720,43198978:240603 +k1,187:21762084,43198978:240602 +k1,187:23021772,43198978:240603 +(1,187:23021772,43198978:0,414482,115847 +r1,189:23380038,43198978:358266,530329,115847 +k1,187:23021772,43198978:-358266 +) +(1,187:23021772,43198978:358266,414482,115847 +k1,187:23021772,43198978:3277 +h1,187:23376761,43198978:0,411205,112570 +) +k1,187:23620640,43198978:240602 +k1,187:26436153,43198978:240603 +k1,187:28459990,43198978:240602 +k1,187:29857303,43198978:240603 +k1,187:31611131,43198978:240602 +k1,187:31966991,43198978:0 +) +(1,189:7246811,44040466:24720180,513147,134348 +k1,187:8632406,44040466:217088 +k1,187:9611022,44040466:217088 +k1,187:12535402,44040466:217088 +k1,187:13771575,44040466:217088 +k1,187:15999308,44040466:217088 +k1,187:16899281,44040466:217088 +k1,187:18771153,44040466:217088 +k1,187:20262916,44040466:217088 +k1,187:20945965,44040466:217088 +k1,187:22182138,44040466:217088 +k1,187:23567733,44040466:217088 +k1,187:24889103,44040466:217088 +k1,187:25853957,44040466:217088 +k1,187:29661107,44040466:217088 +k1,187:30564357,44040466:217088 +k1,187:31552148,44040466:217088 +k1,189:31966991,44040466:0 +) +(1,189:7246811,44881954:24720180,513147,126483 +k1,187:10721545,44881954:141573 +k1,187:11882203,44881954:141573 +k1,187:13866649,44881954:141574 +k1,187:15140684,44881954:141573 +k1,187:16030023,44881954:141573 +k1,187:18521717,44881954:141573 +k1,187:19276052,44881954:141573 +k1,187:20436711,44881954:141574 +k1,187:23172199,44881954:141573 +k1,187:26066939,44881954:141573 +k1,187:26970040,44881954:141573 +k1,187:27467474,44881954:141574 +k1,187:28892242,44881954:141573 +(1,187:28892242,44881954:0,414482,115847 +r1,189:29250508,44881954:358266,530329,115847 +k1,187:28892242,44881954:-358266 +) +(1,187:28892242,44881954:358266,414482,115847 +k1,187:28892242,44881954:3277 +h1,187:29247231,44881954:0,411205,112570 +) +k1,187:29392081,44881954:141573 +k1,187:31966991,44881954:0 +) +] +) +] +r1,189:32583029,45598261:26214,4150992,0 +) +] +) +) +g1,189:32583029,45008437 +) +] +(1,189:32583029,45706769:0,0,0 +g1,189:32583029,45706769 +) +) +] +(1,189:6630773,47279633:25952256,0,0 +h1,189:6630773,47279633:25952256,0,0 +) +] +h1,189:4262630,4025873:0,0,0 +] +!16602 }16 -Input:122:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:123:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:118:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:119:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {17 -[1,200:4262630,47279633:28320399,43253760,0 -(1,200:4262630,4025873:0,0,0 -[1,200:-473657,4025873:25952256,0,0 -(1,200:-473657,-710414:25952256,0,0 -h1,200:-473657,-710414:0,0,0 -(1,200:-473657,-710414:0,0,0 -(1,200:-473657,-710414:0,0,0 -g1,200:-473657,-710414 -(1,200:-473657,-710414:65781,0,65781 -g1,200:-407876,-710414 -[1,200:-407876,-644633:0,0,0 +[1,206:4262630,47279633:28320399,43253760,0 +(1,206:4262630,4025873:0,0,0 +[1,206:-473657,4025873:25952256,0,0 +(1,206:-473657,-710414:25952256,0,0 +h1,206:-473657,-710414:0,0,0 +(1,206:-473657,-710414:0,0,0 +(1,206:-473657,-710414:0,0,0 +g1,206:-473657,-710414 +(1,206:-473657,-710414:65781,0,65781 +g1,206:-407876,-710414 +[1,206:-407876,-644633:0,0,0 ] ) -k1,200:-473657,-710414:-65781 +k1,206:-473657,-710414:-65781 ) ) -k1,200:25478599,-710414:25952256 -g1,200:25478599,-710414 +k1,206:25478599,-710414:25952256 +g1,206:25478599,-710414 ) ] ) -[1,200:6630773,47279633:25952256,43253760,0 -[1,200:6630773,4812305:25952256,786432,0 -(1,200:6630773,4812305:25952256,505283,134348 -(1,200:6630773,4812305:25952256,505283,134348 -g1,200:3078558,4812305 -[1,200:3078558,4812305:0,0,0 -(1,200:3078558,2439708:0,1703936,0 -k1,200:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,200:2537886,2439708:1179648,16384,0 +[1,206:6630773,47279633:25952256,43253760,0 +[1,206:6630773,4812305:25952256,786432,0 +(1,206:6630773,4812305:25952256,505283,134348 +(1,206:6630773,4812305:25952256,505283,134348 +g1,206:3078558,4812305 +[1,206:3078558,4812305:0,0,0 +(1,206:3078558,2439708:0,1703936,0 +k1,206:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,206:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,200:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,206:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,200:3078558,4812305:0,0,0 -(1,200:3078558,2439708:0,1703936,0 -g1,200:29030814,2439708 -g1,200:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,200:36151628,1915420:16384,1179648,0 +[1,206:3078558,4812305:0,0,0 +(1,206:3078558,2439708:0,1703936,0 +g1,206:29030814,2439708 +g1,206:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,206:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,200:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,206:37855564,2439708:1179648,16384,0 ) ) -k1,200:3078556,2439708:-34777008 +k1,206:3078556,2439708:-34777008 ) ] -[1,200:3078558,4812305:0,0,0 -(1,200:3078558,49800853:0,16384,2228224 -k1,200:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,200:2537886,49800853:1179648,16384,0 +[1,206:3078558,4812305:0,0,0 +(1,206:3078558,49800853:0,16384,2228224 +k1,206:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,206:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,200:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,206:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,200:3078558,4812305:0,0,0 -(1,200:3078558,49800853:0,16384,2228224 -g1,200:29030814,49800853 -g1,200:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,200:36151628,51504789:16384,1179648,0 +[1,206:3078558,4812305:0,0,0 +(1,206:3078558,49800853:0,16384,2228224 +g1,206:29030814,49800853 +g1,206:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,206:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,200:37855564,49800853:1179648,16384,0 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,206:37855564,49800853:1179648,16384,0 ) ) -k1,200:3078556,49800853:-34777008 -) -] -g1,200:6630773,4812305 -k1,200:22047465,4812305:15018233 -g1,200:22869941,4812305 -g1,200:24054831,4812305 -g1,200:27195316,4812305 -g1,200:28604995,4812305 -g1,200:29789885,4812305 -) -) -] -[1,200:6630773,45706769:25952256,40108032,0 -(1,200:6630773,45706769:25952256,40108032,0 -(1,200:6630773,45706769:0,0,0 -g1,200:6630773,45706769 -) -[1,200:6630773,45706769:25952256,40108032,0 -[1,193:6630773,22780165:25952256,17181428,0 -[1,193:6630773,22780165:25952256,17181428,0 -(1,192:6630773,19473858:25952256,13875121,0 -g1,192:6630773,19473858 -h1,191:6630773,19473858:0,0,0 -(1,191:6630773,19473858:25952256,13875121,0 -) -g1,192:32583029,19473858 -g1,192:32583029,19473858 -) -(1,192:6630773,20970706:25952256,485622,11795 -h1,192:6630773,20970706:0,0,0 -g1,192:9295467,20970706 -k1,192:32583028,20970706:22297312 -g1,192:32583028,20970706 -) -(1,192:6630773,21812194:25952256,513147,134348 -h1,192:6630773,21812194:0,0,0 -k1,192:8940263,21812194:222824 -k1,192:11580710,21812194:222824 -k1,192:12462826,21812194:222824 -k1,192:13704735,21812194:222824 -k1,192:14342379,21812194:222801 -k1,192:16985448,21812194:222824 -k1,192:18399717,21812194:222824 -k1,192:20531605,21812194:222824 -k1,192:21983229,21812194:222824 -k1,192:23719280,21812194:222825 -k1,192:26465240,21812194:222824 -k1,192:27043924,21812194:222824 -k1,192:29271494,21812194:222824 -k1,192:30691005,21812194:222824 -k1,192:32583029,21812194:0 -) -(1,192:6630773,22653682:25952256,513147,126483 -g1,192:8368787,22653682 -g1,192:10559000,22653682 -g1,192:11777314,22653682 -g1,192:12391386,22653682 -g1,192:15184530,22653682 -g1,192:16575204,22653682 -g1,192:17793518,22653682 -g1,192:19749112,22653682 -g1,192:21660797,22653682 -g1,192:22879111,22653682 -g1,192:24909416,22653682 -g1,192:26091685,22653682 -g1,192:26906952,22653682 -g1,192:27876884,22653682 -k1,192:32583029,22653682:2623411 -g1,192:32583029,22653682 -) -] -] -v1,183:6630773,24746245:0,393216,0 -(1,183:6630773,28948435:25952256,4595406,616038 -g1,183:6630773,28948435 -(1,183:6630773,28948435:25952256,4595406,616038 -(1,183:6630773,29564473:25952256,5211444,0 -[1,183:6630773,29564473:25952256,5211444,0 -(1,183:6630773,29538259:25952256,5185230,0 -r1,183:6656987,29538259:26214,5185230,0 -[1,183:6656987,29538259:25899828,5185230,0 -(1,183:6656987,28948435:25899828,4005582,0 -[1,183:7246811,28948435:24720180,4005582,0 -(1,183:7246811,25456000:24720180,513147,126483 -k1,182:8001803,25456000:277235 -k1,182:9298124,25456000:277236 -k1,182:12734850,25456000:277235 -k1,182:13543582,25456000:277235 -k1,182:17536053,25456000:277235 -k1,182:18169149,25456000:277236 -(1,182:18169149,25456000:0,414482,115847 -r1,183:18527415,25456000:358266,530329,115847 -k1,182:18169149,25456000:-358266 -) -(1,182:18169149,25456000:358266,414482,115847 -k1,182:18169149,25456000:3277 -h1,182:18524138,25456000:0,411205,112570 -) -k1,182:18804650,25456000:277235 -k1,182:23135942,25456000:277235 -k1,182:25814416,25456000:277235 -k1,182:27224114,25456000:277236 -k1,182:28249115,25456000:277235 -k1,182:30775546,25456000:277235 -k1,182:31966991,25456000:0 -) -(1,183:7246811,26297488:24720180,513147,126483 -k1,182:8628679,26297488:211395 -k1,182:9972535,26297488:211394 -k1,182:10931696,26297488:211395 -k1,182:12451845,26297488:211395 -k1,182:13314667,26297488:211394 -k1,182:14912148,26297488:211395 -k1,182:15739580,26297488:211394 -k1,182:16970060,26297488:211395 -k1,182:18404357,26297488:211395 -k1,182:19275043,26297488:211394 -k1,182:20505523,26297488:211395 -k1,182:24050079,26297488:211395 -k1,182:25303495,26297488:211394 -k1,182:28176307,26297488:211395 -k1,182:28853662,26297488:211394 -k1,182:30084142,26297488:211395 -k1,182:31966991,26297488:0 -) -(1,183:7246811,27138976:24720180,513147,126483 -k1,182:10945209,27138976:226956 -k1,182:12456672,27138976:226957 -k1,182:13854101,27138976:226956 -k1,182:16037308,27138976:226957 -k1,182:17410489,27138976:226956 -k1,182:18288874,27138976:226957 -k1,182:19331098,27138976:226956 -k1,182:20089552,27138976:226957 -$1,182:20089552,27138976 -k1,182:20653929,27138976:165918 -k1,182:21388044,27138976:165918 -k1,182:21952422,27138976:165919 -k1,182:22686537,27138976:165918 -$1,182:23084996,27138976 -k1,182:23485623,27138976:226957 -k1,182:24178540,27138976:226956 -k1,182:25575970,27138976:226957 -k1,182:27457710,27138976:226956 -k1,182:28300705,27138976:226957 -k1,182:29546746,27138976:226956 -k1,183:31966991,27138976:0 -) -(1,183:7246811,27980464:24720180,505283,134348 -(1,182:7246811,27980464:0,435480,115847 -r1,183:9715349,27980464:2468538,551327,115847 -k1,182:7246811,27980464:-2468538 -) -(1,182:7246811,27980464:2468538,435480,115847 -g1,182:7953512,27980464 -g1,182:8656936,27980464 -g1,182:9360360,27980464 -h1,182:9712072,27980464:0,411205,112570 -) -k1,182:9912908,27980464:197559 -k1,182:10726505,27980464:197559 -k1,182:12080774,27980464:197559 -k1,182:13620509,27980464:197558 -k1,182:14988541,27980464:197559 -k1,182:16318562,27980464:197559 -k1,182:17494574,27980464:197559 -k1,182:18047993,27980464:197559 -k1,182:22299609,27980464:197559 -k1,182:24898407,27980464:197559 -k1,182:27014859,27980464:197558 -k1,182:28382891,27980464:197559 -k1,182:29712912,27980464:197559 -k1,182:30658237,27980464:197559 -k1,182:31966991,27980464:0 -) -(1,183:7246811,28821952:24720180,513147,126483 -k1,182:8069287,28821952:171048 -k1,182:9626421,28821952:171048 -(1,182:9626421,28821952:0,435480,115847 -r1,183:9984687,28821952:358266,551327,115847 -k1,182:9626421,28821952:-358266 -) -(1,182:9626421,28821952:358266,435480,115847 -k1,182:9626421,28821952:3277 -h1,182:9981410,28821952:0,411205,112570 -) -k1,182:10329405,28821952:171048 -k1,182:13435156,28821952:171049 -k1,182:14072165,28821952:171048 -k1,182:15413686,28821952:171048 -k1,182:16970820,28821952:171048 -(1,182:16970820,28821952:0,435480,115847 -r1,183:18735934,28821952:1765114,551327,115847 -k1,182:16970820,28821952:-1765114 -) -(1,182:16970820,28821952:1765114,435480,115847 -g1,182:17677521,28821952 -g1,182:18380945,28821952 -h1,182:18732657,28821952:0,411205,112570 -) -k1,182:19080652,28821952:171048 -k1,182:20270785,28821952:171048 -k1,182:22284705,28821952:171048 -k1,182:23588216,28821952:171049 -k1,182:24507030,28821952:171048 -k1,182:28080707,28821952:171048 -k1,182:29443200,28821952:171048 -k1,183:31966991,28821952:0 -k1,183:31966991,28821952:0 -) -] -) -] -r1,183:32583029,29538259:26214,5185230,0 -) -] -) -) -g1,183:32583029,28948435 -) -h1,183:6630773,29564473:0,0,0 -(1,185:6630773,31192393:25952256,505283,134348 -(1,185:6630773,31192393:2809528,485622,11795 -g1,185:6630773,31192393 -g1,185:9440301,31192393 -) -g1,185:11511894,31192393 -g1,185:12188225,31192393 -g1,185:13034294,31192393 -g1,185:13603146,31192393 -g1,185:15937538,31192393 -k1,185:32583029,31192393:15281031 -g1,185:32583029,31192393 -) -(1,188:6630773,32427097:25952256,513147,134348 -k1,187:7670328,32427097:210525 -k1,187:8998897,32427097:210525 -k1,187:9565281,32427097:210524 -k1,187:11606882,32427097:210525 -k1,187:12685759,32427097:210525 -k1,187:14426550,32427097:210525 -k1,187:15943207,32427097:210524 -k1,187:16805160,32427097:210525 -k1,187:19484426,32427097:210525 -k1,187:20050811,32427097:210525 -k1,187:22092411,32427097:210524 -k1,187:22918974,32427097:210525 -k1,187:23485359,32427097:210525 -k1,187:24922063,32427097:210525 -k1,187:27215321,32427097:210524 -k1,187:29410932,32427097:210525 -h1,187:30381520,32427097:0,0,0 -k1,187:30592045,32427097:210525 -k1,187:32583029,32427097:0 -) -(1,188:6630773,33268585:25952256,513147,134348 -k1,187:7870563,33268585:220705 -k1,187:10511513,33268585:220705 -k1,187:14668966,33268585:220705 -k1,187:16402897,33268585:220705 -k1,187:19146738,33268585:220705 -k1,187:20386528,33268585:220705 -k1,187:22438309,33268585:220705 -k1,187:23642054,33268585:220705 -k1,187:25938284,33268585:220705 -k1,187:26775027,33268585:220705 -k1,187:28014817,33268585:220705 -k1,187:29461701,33268585:220705 -k1,187:31765140,33268585:220705 -k1,187:32583029,33268585:0 -) -(1,188:6630773,34110073:25952256,513147,126483 -k1,187:9028494,34110073:181293 -k1,187:10266226,34110073:181292 -k1,187:11847368,34110073:181293 -k1,187:13047745,34110073:181292 -k1,187:16388529,34110073:181293 -(1,187:16388529,34110073:0,452978,115847 -r1,187:23781031,34110073:7392502,568825,115847 -k1,187:16388529,34110073:-7392502 -) -(1,187:16388529,34110073:7392502,452978,115847 -k1,187:16388529,34110073:3277 -h1,187:23777754,34110073:0,411205,112570 -) -k1,187:24135993,34110073:181292 -k1,187:25524459,34110073:181293 -k1,187:27512579,34110073:181292 -k1,187:28455400,34110073:181293 -k1,187:29655777,34110073:181292 -k1,187:31391584,34110073:181293 -k1,187:32583029,34110073:0 -) -(1,188:6630773,34951561:25952256,513147,126483 -k1,187:7878041,34951561:228183 -k1,187:9473959,34951561:228182 -k1,187:10928321,34951561:228183 -k1,187:11772542,34951561:228183 -k1,187:13019809,34951561:228182 -k1,187:15668237,34951561:228183 -k1,187:16427917,34951561:228183 -k1,187:18204715,34951561:228182 -k1,187:19640071,34951561:228183 -k1,187:22931407,34951561:228183 -k1,187:23921117,34951561:228182 -k1,187:24564114,34951561:228154 -k1,187:25478458,34951561:228182 -k1,187:26062501,34951561:228183 -k1,187:28133556,34951561:228183 -k1,187:29021030,34951561:228182 -k1,187:30452454,34951561:228183 -k1,187:32583029,34951561:0 -) -(1,188:6630773,35793049:25952256,513147,102891 -k1,187:8093162,35793049:265702 -k1,187:9626329,35793049:265701 -k1,187:10936675,35793049:265702 -k1,187:11861669,35793049:265702 -k1,187:13146455,35793049:265701 -k1,187:16006072,35793049:265702 -k1,187:18262757,35793049:265701 -k1,187:22380665,35793049:265702 -k1,187:24335885,35793049:265702 -k1,187:25620671,35793049:265701 -k1,187:27153839,35793049:265702 -k1,187:28464185,35793049:265702 -k1,187:29389178,35793049:265701 -k1,187:30673965,35793049:265702 -k1,187:32583029,35793049:0 -) -(1,188:6630773,36634537:25952256,513147,126483 -k1,187:8855925,36634537:234168 -k1,187:10109178,36634537:234168 -k1,187:11787760,36634537:234168 -k1,187:12673357,36634537:234169 -k1,187:13926610,36634537:234168 -k1,187:15991854,36634537:234168 -k1,187:17209062,36634537:234168 -k1,187:18727736,36634537:234168 -k1,187:19493401,36634537:234168 -k1,187:21305021,36634537:234168 -k1,187:22730634,36634537:234168 -k1,187:24738206,36634537:234168 -k1,187:25623803,36634537:234169 -k1,187:26605737,36634537:234168 -k1,187:28834166,36634537:234168 -k1,187:31821501,36634537:234168 -k1,187:32583029,36634537:0 -) -(1,188:6630773,37476025:25952256,505283,7863 -k1,188:32583030,37476025:22611232 -g1,188:32583030,37476025 -) -v1,196:6630773,38841801:0,393216,0 -(1,197:6630773,41959618:25952256,3511033,616038 -g1,197:6630773,41959618 -(1,197:6630773,41959618:25952256,3511033,616038 -(1,197:6630773,42575656:25952256,4127071,0 -[1,197:6630773,42575656:25952256,4127071,0 -(1,197:6630773,42549442:25952256,4074643,0 -r1,197:6656987,42549442:26214,4074643,0 -[1,197:6656987,42549442:25899828,4074643,0 -(1,197:6656987,41959618:25899828,2894995,0 -[1,197:7246811,41959618:24720180,2894995,0 -(1,197:7246811,40150159:24720180,1085536,298548 -(1,196:7246811,40150159:0,1085536,298548 -r1,197:8753226,40150159:1506415,1384084,298548 -k1,196:7246811,40150159:-1506415 -) -(1,196:7246811,40150159:1506415,1085536,298548 -) -k1,196:8971428,40150159:218202 -k1,196:10972864,40150159:218201 -k1,196:13777772,40150159:218202 -k1,196:14608735,40150159:218201 -k1,196:15846022,40150159:218202 -k1,196:19223715,40150159:218202 -k1,196:22016826,40150159:218201 -k1,196:23836728,40150159:218202 -k1,196:26228103,40150159:218201 -k1,196:27437865,40150159:218202 -k1,196:30006187,40150159:218201 -k1,196:30985917,40150159:218202 -k1,197:31966991,40150159:0 -) -(1,197:7246811,40991647:24720180,513147,126483 -k1,196:9230016,40991647:312037 -k1,196:12476756,40991647:312038 -k1,196:14798782,40991647:312037 -k1,196:17272197,40991647:312038 -k1,196:18740944,40991647:312037 -k1,196:20913548,40991647:312037 -k1,196:21877014,40991647:312038 -k1,196:23281536,40991647:312037 -k1,196:26289070,40991647:312038 -(1,196:26289070,40991647:0,452978,115847 -r1,197:28757607,40991647:2468537,568825,115847 -k1,196:26289070,40991647:-2468537 -) -(1,196:26289070,40991647:2468537,452978,115847 -k1,196:26289070,40991647:3277 -h1,196:28754330,40991647:0,411205,112570 -) -k1,196:29069644,40991647:312037 -k1,196:31966991,40991647:0 -) -(1,197:7246811,41833135:24720180,505283,126483 -g1,196:9144078,41833135 -g1,196:9699167,41833135 -g1,196:11741268,41833135 -g1,196:12471994,41833135 -g1,196:13322651,41833135 -g1,196:14269646,41833135 -k1,197:31966991,41833135:14460522 -g1,197:31966991,41833135 -) -] -) -] -r1,197:32583029,42549442:26214,4074643,0 -) -] -) -) -g1,197:32583029,41959618 -) -h1,197:6630773,42575656:0,0,0 -(1,200:6630773,43941432:25952256,505283,134348 -h1,199:6630773,43941432:983040,0,0 -k1,199:8291570,43941432:190169 -k1,199:9789191,43941432:190178 -k1,199:12041133,43941432:190179 -k1,199:13553172,43941432:190178 -k1,199:14274847,43941432:190178 -k1,199:15531296,43941432:190178 -k1,199:16839518,43941432:190178 -k1,199:17642458,43941432:190178 -k1,199:18851722,43941432:190179 -k1,199:19456734,43941432:190169 -k1,199:22067157,43941432:190178 -k1,199:23329504,43941432:190178 -k1,199:24132444,43941432:190178 -k1,199:25341708,43941432:190179 -k1,199:28585864,43941432:190178 -k1,199:31021961,43941432:190178 -k1,200:32583029,43941432:0 -) -(1,200:6630773,44782920:25952256,513147,134348 -k1,199:8690187,44782920:247999 -k1,199:11513096,44782920:247999 -k1,199:12443980,44782920:247999 -k1,199:14368390,44782920:247999 -k1,199:15813076,44782920:247999 -k1,199:17563816,44782920:247999 -k1,199:18343312,44782920:247999 -k1,199:19610396,44782920:247999 -k1,199:22278640,44782920:247999 -k1,199:23185931,44782920:247999 -k1,199:24453015,44782920:247999 -k1,199:27754992,44782920:247999 -k1,200:32583029,44782920:0 -) -(1,200:6630773,45624408:25952256,505283,134348 -k1,199:8439565,45624408:183500 -k1,199:9492746,45624408:190727 -k1,199:10260170,45624408:183499 -k1,199:11126555,45624408:183500 -k1,199:15423748,45624408:183499 -k1,199:17592334,45624408:183500 -h1,199:18562922,45624408:0,0,0 -k1,199:18746421,45624408:183499 -k1,199:20920905,45624408:183500 -k1,199:22434785,45624408:183499 -k1,199:25141421,45624408:183500 -k1,199:25680780,45624408:183499 -k1,199:27695356,45624408:183500 -k1,199:28491617,45624408:183499 -k1,199:29694202,45624408:183500 -k1,199:32583029,45624408:0 -) -] -(1,200:32583029,45706769:0,0,0 -g1,200:32583029,45706769 -) -) -] -(1,200:6630773,47279633:25952256,0,0 -h1,200:6630773,47279633:25952256,0,0 -) -] -h1,200:4262630,4025873:0,0,0 -] -!16927 +k1,206:3078556,49800853:-34777008 +) +] +g1,206:6630773,4812305 +k1,206:21845614,4812305:14816382 +g1,206:22668090,4812305 +g1,206:24054831,4812305 +g1,206:27195316,4812305 +g1,206:28604995,4812305 +g1,206:29789885,4812305 +) +) +] +[1,206:6630773,45706769:25952256,40108032,0 +(1,206:6630773,45706769:25952256,40108032,0 +(1,206:6630773,45706769:0,0,0 +g1,206:6630773,45706769 +) +[1,206:6630773,45706769:25952256,40108032,0 +[1,199:6630773,22780165:25952256,17181428,0 +[1,199:6630773,22780165:25952256,17181428,0 +(1,198:6630773,19473858:25952256,13875121,0 +g1,198:6630773,19473858 +h1,197:6630773,19473858:0,0,0 +(1,197:6630773,19473858:25952256,13875121,0 +) +g1,198:32583029,19473858 +g1,198:32583029,19473858 +) +(1,198:6630773,20970706:25952256,485622,11795 +h1,198:6630773,20970706:0,0,0 +g1,198:9295467,20970706 +k1,198:32583028,20970706:22297312 +g1,198:32583028,20970706 +) +(1,198:6630773,21812194:25952256,513147,134348 +h1,198:6630773,21812194:0,0,0 +k1,198:8940263,21812194:222824 +k1,198:11580710,21812194:222824 +k1,198:12462826,21812194:222824 +k1,198:13704735,21812194:222824 +k1,198:14342379,21812194:222801 +k1,198:16985448,21812194:222824 +k1,198:18399717,21812194:222824 +k1,198:20531605,21812194:222824 +k1,198:21983229,21812194:222824 +k1,198:23719280,21812194:222825 +k1,198:26465240,21812194:222824 +k1,198:27043924,21812194:222824 +k1,198:29271494,21812194:222824 +k1,198:30691005,21812194:222824 +k1,198:32583029,21812194:0 +) +(1,198:6630773,22653682:25952256,513147,126483 +g1,198:8368787,22653682 +g1,198:10559000,22653682 +g1,198:11777314,22653682 +g1,198:12391386,22653682 +g1,198:15184530,22653682 +g1,198:16575204,22653682 +g1,198:17793518,22653682 +g1,198:19749112,22653682 +g1,198:21660797,22653682 +g1,198:22879111,22653682 +g1,198:24909416,22653682 +g1,198:26091685,22653682 +g1,198:26906952,22653682 +g1,198:27876884,22653682 +k1,198:32583029,22653682:2623411 +g1,198:32583029,22653682 +) +] +] +v1,189:6630773,24746245:0,393216,0 +(1,189:6630773,28948435:25952256,4595406,616038 +g1,189:6630773,28948435 +(1,189:6630773,28948435:25952256,4595406,616038 +(1,189:6630773,29564473:25952256,5211444,0 +[1,189:6630773,29564473:25952256,5211444,0 +(1,189:6630773,29538259:25952256,5185230,0 +r1,189:6656987,29538259:26214,5185230,0 +[1,189:6656987,29538259:25899828,5185230,0 +(1,189:6656987,28948435:25899828,4005582,0 +[1,189:7246811,28948435:24720180,4005582,0 +(1,189:7246811,25456000:24720180,513147,126483 +k1,188:8001803,25456000:277235 +k1,188:9298124,25456000:277236 +k1,188:12734850,25456000:277235 +k1,188:13543582,25456000:277235 +k1,188:17536053,25456000:277235 +k1,188:18169149,25456000:277236 +(1,188:18169149,25456000:0,414482,115847 +r1,189:18527415,25456000:358266,530329,115847 +k1,188:18169149,25456000:-358266 +) +(1,188:18169149,25456000:358266,414482,115847 +k1,188:18169149,25456000:3277 +h1,188:18524138,25456000:0,411205,112570 +) +k1,188:18804650,25456000:277235 +k1,188:23135942,25456000:277235 +k1,188:25814416,25456000:277235 +k1,188:27224114,25456000:277236 +k1,188:28249115,25456000:277235 +k1,188:30775546,25456000:277235 +k1,188:31966991,25456000:0 +) +(1,189:7246811,26297488:24720180,513147,126483 +k1,188:8628679,26297488:211395 +k1,188:9972535,26297488:211394 +k1,188:10931696,26297488:211395 +k1,188:12451845,26297488:211395 +k1,188:13314667,26297488:211394 +k1,188:14912148,26297488:211395 +k1,188:15739580,26297488:211394 +k1,188:16970060,26297488:211395 +k1,188:18404357,26297488:211395 +k1,188:19275043,26297488:211394 +k1,188:20505523,26297488:211395 +k1,188:24050079,26297488:211395 +k1,188:25303495,26297488:211394 +k1,188:28176307,26297488:211395 +k1,188:28853662,26297488:211394 +k1,188:30084142,26297488:211395 +k1,188:31966991,26297488:0 +) +(1,189:7246811,27138976:24720180,513147,126483 +k1,188:10945209,27138976:226956 +k1,188:12456672,27138976:226957 +k1,188:13854101,27138976:226956 +k1,188:16037308,27138976:226957 +k1,188:17410489,27138976:226956 +k1,188:18288874,27138976:226957 +k1,188:19331098,27138976:226956 +k1,188:20089552,27138976:226957 +$1,188:20089552,27138976 +k1,188:20653929,27138976:165918 +k1,188:21388044,27138976:165918 +k1,188:21952422,27138976:165919 +k1,188:22686537,27138976:165918 +$1,188:23084996,27138976 +k1,188:23485623,27138976:226957 +k1,188:24178540,27138976:226956 +k1,188:25575970,27138976:226957 +k1,188:27457710,27138976:226956 +k1,188:28300705,27138976:226957 +k1,188:29546746,27138976:226956 +k1,189:31966991,27138976:0 +) +(1,189:7246811,27980464:24720180,505283,134348 +(1,188:7246811,27980464:0,435480,115847 +r1,189:9715349,27980464:2468538,551327,115847 +k1,188:7246811,27980464:-2468538 +) +(1,188:7246811,27980464:2468538,435480,115847 +g1,188:7953512,27980464 +g1,188:8656936,27980464 +g1,188:9360360,27980464 +h1,188:9712072,27980464:0,411205,112570 +) +k1,188:9912908,27980464:197559 +k1,188:10726505,27980464:197559 +k1,188:12080774,27980464:197559 +k1,188:13620509,27980464:197558 +k1,188:14988541,27980464:197559 +k1,188:16318562,27980464:197559 +k1,188:17494574,27980464:197559 +k1,188:18047993,27980464:197559 +k1,188:22299609,27980464:197559 +k1,188:24898407,27980464:197559 +k1,188:27014859,27980464:197558 +k1,188:28382891,27980464:197559 +k1,188:29712912,27980464:197559 +k1,188:30658237,27980464:197559 +k1,188:31966991,27980464:0 +) +(1,189:7246811,28821952:24720180,513147,126483 +k1,188:8069287,28821952:171048 +k1,188:9626421,28821952:171048 +(1,188:9626421,28821952:0,435480,115847 +r1,189:9984687,28821952:358266,551327,115847 +k1,188:9626421,28821952:-358266 +) +(1,188:9626421,28821952:358266,435480,115847 +k1,188:9626421,28821952:3277 +h1,188:9981410,28821952:0,411205,112570 +) +k1,188:10329405,28821952:171048 +k1,188:13435156,28821952:171049 +k1,188:14072165,28821952:171048 +k1,188:15413686,28821952:171048 +k1,188:16970820,28821952:171048 +(1,188:16970820,28821952:0,435480,115847 +r1,189:18735934,28821952:1765114,551327,115847 +k1,188:16970820,28821952:-1765114 +) +(1,188:16970820,28821952:1765114,435480,115847 +g1,188:17677521,28821952 +g1,188:18380945,28821952 +h1,188:18732657,28821952:0,411205,112570 +) +k1,188:19080652,28821952:171048 +k1,188:20270785,28821952:171048 +k1,188:22284705,28821952:171048 +k1,188:23588216,28821952:171049 +k1,188:24507030,28821952:171048 +k1,188:28080707,28821952:171048 +k1,188:29443200,28821952:171048 +k1,189:31966991,28821952:0 +k1,189:31966991,28821952:0 +) +] +) +] +r1,189:32583029,29538259:26214,5185230,0 +) +] +) +) +g1,189:32583029,28948435 +) +h1,189:6630773,29564473:0,0,0 +(1,191:6630773,31192393:25952256,505283,134348 +(1,191:6630773,31192393:2809528,485622,11795 +g1,191:6630773,31192393 +g1,191:9440301,31192393 +) +g1,191:11511894,31192393 +g1,191:12188225,31192393 +g1,191:13034294,31192393 +g1,191:13603146,31192393 +g1,191:15937538,31192393 +k1,191:32583029,31192393:15281031 +g1,191:32583029,31192393 +) +(1,194:6630773,32427097:25952256,513147,134348 +k1,193:7670328,32427097:210525 +k1,193:8998897,32427097:210525 +k1,193:9565281,32427097:210524 +k1,193:11606882,32427097:210525 +k1,193:12685759,32427097:210525 +k1,193:14426550,32427097:210525 +k1,193:15943207,32427097:210524 +k1,193:16805160,32427097:210525 +k1,193:19484426,32427097:210525 +k1,193:20050811,32427097:210525 +k1,193:22092411,32427097:210524 +k1,193:22918974,32427097:210525 +k1,193:23485359,32427097:210525 +k1,193:24922063,32427097:210525 +k1,193:27215321,32427097:210524 +k1,193:29410932,32427097:210525 +h1,193:30381520,32427097:0,0,0 +k1,193:30592045,32427097:210525 +k1,193:32583029,32427097:0 +) +(1,194:6630773,33268585:25952256,513147,134348 +k1,193:7870563,33268585:220705 +k1,193:10511513,33268585:220705 +k1,193:14668966,33268585:220705 +k1,193:16402897,33268585:220705 +k1,193:19146738,33268585:220705 +k1,193:20386528,33268585:220705 +k1,193:22438309,33268585:220705 +k1,193:23642054,33268585:220705 +k1,193:25938284,33268585:220705 +k1,193:26775027,33268585:220705 +k1,193:28014817,33268585:220705 +k1,193:29461701,33268585:220705 +k1,193:31765140,33268585:220705 +k1,193:32583029,33268585:0 +) +(1,194:6630773,34110073:25952256,513147,126483 +k1,193:9028494,34110073:181293 +k1,193:10266226,34110073:181292 +k1,193:11847368,34110073:181293 +k1,193:13047745,34110073:181292 +k1,193:16388529,34110073:181293 +(1,193:16388529,34110073:0,452978,115847 +r1,193:23781031,34110073:7392502,568825,115847 +k1,193:16388529,34110073:-7392502 +) +(1,193:16388529,34110073:7392502,452978,115847 +k1,193:16388529,34110073:3277 +h1,193:23777754,34110073:0,411205,112570 +) +k1,193:24135993,34110073:181292 +k1,193:25524459,34110073:181293 +k1,193:27512579,34110073:181292 +k1,193:28455400,34110073:181293 +k1,193:29655777,34110073:181292 +k1,193:31391584,34110073:181293 +k1,193:32583029,34110073:0 +) +(1,194:6630773,34951561:25952256,513147,126483 +k1,193:7878041,34951561:228183 +k1,193:9473959,34951561:228182 +k1,193:10928321,34951561:228183 +k1,193:11772542,34951561:228183 +k1,193:13019809,34951561:228182 +k1,193:15668237,34951561:228183 +k1,193:16427917,34951561:228183 +k1,193:18204715,34951561:228182 +k1,193:19640071,34951561:228183 +k1,193:22931407,34951561:228183 +k1,193:23921117,34951561:228182 +k1,193:24564114,34951561:228154 +k1,193:25478458,34951561:228182 +k1,193:26062501,34951561:228183 +k1,193:28133556,34951561:228183 +k1,193:29021030,34951561:228182 +k1,193:30452454,34951561:228183 +k1,193:32583029,34951561:0 +) +(1,194:6630773,35793049:25952256,513147,102891 +k1,193:8093162,35793049:265702 +k1,193:9626329,35793049:265701 +k1,193:10936675,35793049:265702 +k1,193:11861669,35793049:265702 +k1,193:13146455,35793049:265701 +k1,193:16006072,35793049:265702 +k1,193:18262757,35793049:265701 +k1,193:22380665,35793049:265702 +k1,193:24335885,35793049:265702 +k1,193:25620671,35793049:265701 +k1,193:27153839,35793049:265702 +k1,193:28464185,35793049:265702 +k1,193:29389178,35793049:265701 +k1,193:30673965,35793049:265702 +k1,193:32583029,35793049:0 +) +(1,194:6630773,36634537:25952256,513147,126483 +k1,193:8855925,36634537:234168 +k1,193:10109178,36634537:234168 +k1,193:11787760,36634537:234168 +k1,193:12673357,36634537:234169 +k1,193:13926610,36634537:234168 +k1,193:15991854,36634537:234168 +k1,193:17209062,36634537:234168 +k1,193:18727736,36634537:234168 +k1,193:19493401,36634537:234168 +k1,193:21305021,36634537:234168 +k1,193:22730634,36634537:234168 +k1,193:24738206,36634537:234168 +k1,193:25623803,36634537:234169 +k1,193:26605737,36634537:234168 +k1,193:28834166,36634537:234168 +k1,193:31821501,36634537:234168 +k1,193:32583029,36634537:0 +) +(1,194:6630773,37476025:25952256,505283,7863 +k1,194:32583030,37476025:22611232 +g1,194:32583030,37476025 +) +v1,202:6630773,38841801:0,393216,0 +(1,203:6630773,41959618:25952256,3511033,616038 +g1,203:6630773,41959618 +(1,203:6630773,41959618:25952256,3511033,616038 +(1,203:6630773,42575656:25952256,4127071,0 +[1,203:6630773,42575656:25952256,4127071,0 +(1,203:6630773,42549442:25952256,4074643,0 +r1,203:6656987,42549442:26214,4074643,0 +[1,203:6656987,42549442:25899828,4074643,0 +(1,203:6656987,41959618:25899828,2894995,0 +[1,203:7246811,41959618:24720180,2894995,0 +(1,203:7246811,40150159:24720180,1085536,298548 +(1,202:7246811,40150159:0,1085536,298548 +r1,203:8753226,40150159:1506415,1384084,298548 +k1,202:7246811,40150159:-1506415 +) +(1,202:7246811,40150159:1506415,1085536,298548 +) +k1,202:8971428,40150159:218202 +k1,202:10972864,40150159:218201 +k1,202:13777772,40150159:218202 +k1,202:14608735,40150159:218201 +k1,202:15846022,40150159:218202 +k1,202:19223715,40150159:218202 +k1,202:22016826,40150159:218201 +k1,202:23836728,40150159:218202 +k1,202:26228103,40150159:218201 +k1,202:27437865,40150159:218202 +k1,202:30006187,40150159:218201 +k1,202:30985917,40150159:218202 +k1,203:31966991,40150159:0 +) +(1,203:7246811,40991647:24720180,513147,126483 +k1,202:9230016,40991647:312037 +k1,202:12476756,40991647:312038 +k1,202:14798782,40991647:312037 +k1,202:17272197,40991647:312038 +k1,202:18740944,40991647:312037 +k1,202:20913548,40991647:312037 +k1,202:21877014,40991647:312038 +k1,202:23281536,40991647:312037 +k1,202:26289070,40991647:312038 +(1,202:26289070,40991647:0,452978,115847 +r1,203:28757607,40991647:2468537,568825,115847 +k1,202:26289070,40991647:-2468537 +) +(1,202:26289070,40991647:2468537,452978,115847 +k1,202:26289070,40991647:3277 +h1,202:28754330,40991647:0,411205,112570 +) +k1,202:29069644,40991647:312037 +k1,202:31966991,40991647:0 +) +(1,203:7246811,41833135:24720180,505283,126483 +g1,202:9144078,41833135 +g1,202:9699167,41833135 +g1,202:11741268,41833135 +g1,202:12471994,41833135 +g1,202:13322651,41833135 +g1,202:14269646,41833135 +k1,203:31966991,41833135:14460522 +g1,203:31966991,41833135 +) +] +) +] +r1,203:32583029,42549442:26214,4074643,0 +) +] +) +) +g1,203:32583029,41959618 +) +h1,203:6630773,42575656:0,0,0 +(1,206:6630773,43941432:25952256,505283,134348 +h1,205:6630773,43941432:983040,0,0 +k1,205:8291570,43941432:190169 +k1,205:9789191,43941432:190178 +k1,205:12041133,43941432:190179 +k1,205:13553172,43941432:190178 +k1,205:14274847,43941432:190178 +k1,205:15531296,43941432:190178 +k1,205:16839518,43941432:190178 +k1,205:17642458,43941432:190178 +k1,205:18851722,43941432:190179 +k1,205:19456734,43941432:190169 +k1,205:22067157,43941432:190178 +k1,205:23329504,43941432:190178 +k1,205:24132444,43941432:190178 +k1,205:25341708,43941432:190179 +k1,205:28585864,43941432:190178 +k1,205:31021961,43941432:190178 +k1,206:32583029,43941432:0 +) +(1,206:6630773,44782920:25952256,513147,134348 +k1,205:8690187,44782920:247999 +k1,205:11513096,44782920:247999 +k1,205:12443980,44782920:247999 +k1,205:14368390,44782920:247999 +k1,205:15813076,44782920:247999 +k1,205:17563816,44782920:247999 +k1,205:18343312,44782920:247999 +k1,205:19610396,44782920:247999 +k1,205:22278640,44782920:247999 +k1,205:23185931,44782920:247999 +k1,205:24453015,44782920:247999 +k1,205:27754992,44782920:247999 +k1,206:32583029,44782920:0 +) +(1,206:6630773,45624408:25952256,505283,134348 +k1,205:8439565,45624408:183500 +k1,205:9492746,45624408:190727 +k1,205:10260170,45624408:183499 +k1,205:11126555,45624408:183500 +k1,205:15423748,45624408:183499 +k1,205:17592334,45624408:183500 +h1,205:18562922,45624408:0,0,0 +k1,205:18746421,45624408:183499 +k1,205:20920905,45624408:183500 +k1,205:22434785,45624408:183499 +k1,205:25141421,45624408:183500 +k1,205:25680780,45624408:183499 +k1,205:27695356,45624408:183500 +k1,205:28491617,45624408:183499 +k1,205:29694202,45624408:183500 +k1,205:32583029,45624408:0 +) +] +(1,206:32583029,45706769:0,0,0 +g1,206:32583029,45706769 +) +) +] +(1,206:6630773,47279633:25952256,0,0 +h1,206:6630773,47279633:25952256,0,0 +) +] +h1,206:4262630,4025873:0,0,0 +] +!16963 }17 -Input:124:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:125:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:120:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:121:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {18 -[1,210:4262630,47279633:28320399,43253760,0 -(1,210:4262630,4025873:0,0,0 -[1,210:-473657,4025873:25952256,0,0 -(1,210:-473657,-710414:25952256,0,0 -h1,210:-473657,-710414:0,0,0 -(1,210:-473657,-710414:0,0,0 -(1,210:-473657,-710414:0,0,0 -g1,210:-473657,-710414 -(1,210:-473657,-710414:65781,0,65781 -g1,210:-407876,-710414 -[1,210:-407876,-644633:0,0,0 +[1,216:4262630,47279633:28320399,43253760,0 +(1,216:4262630,4025873:0,0,0 +[1,216:-473657,4025873:25952256,0,0 +(1,216:-473657,-710414:25952256,0,0 +h1,216:-473657,-710414:0,0,0 +(1,216:-473657,-710414:0,0,0 +(1,216:-473657,-710414:0,0,0 +g1,216:-473657,-710414 +(1,216:-473657,-710414:65781,0,65781 +g1,216:-407876,-710414 +[1,216:-407876,-644633:0,0,0 ] ) -k1,210:-473657,-710414:-65781 +k1,216:-473657,-710414:-65781 ) ) -k1,210:25478599,-710414:25952256 -g1,210:25478599,-710414 +k1,216:25478599,-710414:25952256 +g1,216:25478599,-710414 ) ] ) -[1,210:6630773,47279633:25952256,43253760,0 -[1,210:6630773,4812305:25952256,786432,0 -(1,210:6630773,4812305:25952256,475791,0 -(1,210:6630773,4812305:25952256,475791,0 -g1,210:3078558,4812305 -[1,210:3078558,4812305:0,0,0 -(1,210:3078558,2439708:0,1703936,0 -k1,210:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,210:2537886,2439708:1179648,16384,0 +[1,216:6630773,47279633:25952256,43253760,0 +[1,216:6630773,4812305:25952256,786432,0 +(1,216:6630773,4812305:25952256,475791,0 +(1,216:6630773,4812305:25952256,475791,0 +g1,216:3078558,4812305 +[1,216:3078558,4812305:0,0,0 +(1,216:3078558,2439708:0,1703936,0 +k1,216:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,216:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,210:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,216:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,210:3078558,4812305:0,0,0 -(1,210:3078558,2439708:0,1703936,0 -g1,210:29030814,2439708 -g1,210:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,210:36151628,1915420:16384,1179648,0 +[1,216:3078558,4812305:0,0,0 +(1,216:3078558,2439708:0,1703936,0 +g1,216:29030814,2439708 +g1,216:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,216:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,210:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,216:37855564,2439708:1179648,16384,0 ) ) -k1,210:3078556,2439708:-34777008 +k1,216:3078556,2439708:-34777008 ) ] -[1,210:3078558,4812305:0,0,0 -(1,210:3078558,49800853:0,16384,2228224 -k1,210:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,210:2537886,49800853:1179648,16384,0 +[1,216:3078558,4812305:0,0,0 +(1,216:3078558,49800853:0,16384,2228224 +k1,216:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,216:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,210:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,216:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,210:3078558,4812305:0,0,0 -(1,210:3078558,49800853:0,16384,2228224 -g1,210:29030814,49800853 -g1,210:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,210:36151628,51504789:16384,1179648,0 +[1,216:3078558,4812305:0,0,0 +(1,216:3078558,49800853:0,16384,2228224 +g1,216:29030814,49800853 +g1,216:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,216:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,210:37855564,49800853:1179648,16384,0 -) -) -k1,210:3078556,49800853:-34777008 -) -] -g1,210:6630773,4812305 -g1,210:6630773,4812305 -g1,210:7279579,4812305 -k1,210:32184571,4812305:24904992 -) -) -] -[1,210:6630773,45706769:25952256,40108032,0 -(1,210:6630773,45706769:25952256,40108032,0 -(1,210:6630773,45706769:0,0,0 -g1,210:6630773,45706769 -) -[1,210:6630773,45706769:25952256,40108032,0 -[1,205:6630773,22189757:25952256,16591020,0 -[1,205:6630773,22189757:25952256,16591020,0 -(1,204:6630773,17224066:25952256,11625329,0 -g1,204:6630773,17224066 -h1,203:6630773,17224066:0,0,0 -(1,203:6630773,17224066:25952256,11625329,0 -) -g1,204:32583029,17224066 -g1,204:32583029,17224066 -) -(1,204:6630773,18720914:25952256,485622,11795 -h1,204:6630773,18720914:0,0,0 -g1,204:9295467,18720914 -k1,204:32583028,18720914:22297312 -g1,204:32583028,18720914 -) -(1,204:6630773,19562402:25952256,513147,134348 -h1,204:6630773,19562402:0,0,0 -k1,204:8927631,19562402:210192 -k1,204:11555446,19562402:210192 -k1,204:12424929,19562402:210191 -k1,204:13654206,19562402:210192 -k1,204:17804422,19562402:210192 -k1,204:21174105,19562402:210192 -k1,204:23804542,19562402:210192 -k1,204:25243534,19562402:210192 -k1,204:26966951,19562402:210191 -k1,204:29700279,19562402:210192 -k1,204:30929556,19562402:210192 -k1,204:32583029,19562402:0 -) -(1,204:6630773,20403890:25952256,505283,126483 -k1,204:8844986,20403890:209467 -k1,204:10542775,20403890:209466 -k1,204:11620594,20403890:209467 -k1,204:12922545,20403890:209466 -(1,204:12922545,20403890:0,452978,115847 -r1,204:15391082,20403890:2468537,568825,115847 -k1,204:12922545,20403890:-2468537 -) -(1,204:12922545,20403890:2468537,452978,115847 -k1,204:12922545,20403890:3277 -h1,204:15387805,20403890:0,411205,112570 -) -k1,204:15600549,20403890:209467 -k1,204:16461444,20403890:209467 -k1,204:17788954,20403890:209466 -k1,204:19017506,20403890:209467 -k1,204:21231718,20403890:209466 -k1,204:22460270,20403890:209467 -k1,204:24328453,20403890:209467 -k1,204:26621964,20403890:209466 -k1,204:27963893,20403890:209467 -k1,204:30545107,20403890:209466 -k1,204:31563944,20403890:209467 -k1,204:32583029,20403890:0 -) -(1,204:6630773,21245378:25952256,505283,134348 -k1,204:9907668,21245378:222917 -k1,204:12376505,21245378:222918 -k1,204:13215460,21245378:222917 -k1,204:14704534,21245378:222918 -k1,204:15555286,21245378:222917 -k1,204:16981445,21245378:222918 -k1,204:18571443,21245378:222917 -k1,204:19209180,21245378:222894 -k1,204:21344439,21245378:222918 -k1,204:22586441,21245378:222917 -k1,204:24982533,21245378:222918 -k1,204:25818212,21245378:222917 -k1,204:27060215,21245378:222918 -k1,204:30337110,21245378:222917 -k1,204:32583029,21245378:0 -) -(1,204:6630773,22086866:25952256,505283,102891 -g1,204:9250247,22086866 -g1,204:10132361,22086866 -g1,204:12008001,22086866 -g1,204:14158892,22086866 -g1,204:15800568,22086866 -g1,204:16615835,22086866 -g1,204:17603462,22086866 -g1,204:19133072,22086866 -g1,204:19747144,22086866 -k1,204:32583029,22086866:10241970 -g1,204:32583029,22086866 -) -] -] -(1,200:6630773,24155837:25952256,505283,134348 -k1,199:10038548,24155837:248284 -k1,199:12688071,24155837:248284 -k1,199:14827070,24155837:248285 -k1,199:15562892,24155837:248234 -k1,199:17642253,24155837:248285 -k1,199:18994819,24155837:248284 -k1,199:19990869,24155837:248284 -k1,199:21357197,24155837:248284 -k1,199:22218243,24155837:248284 -k1,199:23485612,24155837:248284 -k1,199:26787875,24155837:248285 -k1,199:29282078,24155837:248284 -k1,199:31931601,24155837:248284 -k1,199:32583029,24155837:0 -) -(1,200:6630773,24997325:25952256,513147,134348 -k1,199:7657369,24997325:211328 -k1,199:13005410,24997325:211329 -k1,199:17018481,24997325:211328 -k1,199:18623761,24997325:211329 -k1,199:19854174,24997325:211328 -k1,199:22224259,24997325:211329 -k1,199:24247002,24997325:211328 -k1,199:25109759,24997325:211329 -k1,199:25676947,24997325:211328 -k1,199:27044986,24997325:211329 -k1,199:28527712,24997325:211328 -k1,199:30075975,24997325:211329 -k1,199:31379788,24997325:211328 -k1,199:32583029,24997325:0 -) -(1,200:6630773,25838813:25952256,505283,134348 -k1,199:9832207,25838813:216924 -k1,199:10858501,25838813:216924 -k1,199:11431285,25838813:216924 -k1,199:13780752,25838813:216925 -k1,199:15218612,25838813:216924 -k1,199:16086964,25838813:216924 -k1,199:17916729,25838813:216924 -k1,199:18489513,25838813:216924 -k1,199:20277335,25838813:216924 -k1,199:21883622,25838813:216924 -k1,199:24655140,25838813:216925 -k1,199:25893770,25838813:216924 -k1,199:28633830,25838813:216924 -k1,199:31900144,25838813:216924 -k1,199:32583029,25838813:0 -) -(1,200:6630773,26680301:25952256,513147,126483 -g1,199:8296698,26680301 -g1,199:9443578,26680301 -g1,199:11874308,26680301 -k1,200:32583029,26680301:19067044 -g1,200:32583029,26680301 -) -(1,207:6630773,28308221:25952256,505283,11795 -(1,207:6630773,28308221:2809528,485622,11795 -g1,207:6630773,28308221 -g1,207:9440301,28308221 -) -g1,207:11984408,28308221 -g1,207:13409160,28308221 -k1,207:32583029,28308221:17687512 -g1,207:32583029,28308221 -) -(1,210:6630773,29542925:25952256,505283,134348 -k1,209:10088370,29542925:182108 -k1,209:14485098,29542925:182108 -k1,209:19078434,29542925:182108 -k1,209:21092273,29542925:182108 -k1,209:22265942,29542925:182109 -k1,209:23961276,29542925:182108 -k1,209:25841422,29542925:182108 -k1,209:29506769,29542925:182108 -k1,209:32583029,29542925:0 -) -(1,210:6630773,30384413:25952256,513147,134348 -k1,209:10113177,30384413:236406 -k1,209:11767127,30384413:236406 -k1,209:14433609,30384413:236407 -k1,209:15025875,30384413:236406 -k1,209:18823507,30384413:236406 -k1,209:20440757,30384413:236406 -k1,209:23487347,30384413:236406 -k1,209:25291374,30384413:236406 -k1,209:27537770,30384413:236407 -k1,209:29659647,30384413:236406 -k1,209:30915138,30384413:236406 -k1,210:32583029,30384413:0 -) -(1,210:6630773,31225901:25952256,505283,134348 -k1,209:8100920,31225901:162704 -k1,209:9845008,31225901:162704 -k1,209:11520938,31225901:162704 -k1,209:12335070,31225901:162704 -k1,209:14427154,31225901:162704 -k1,209:15781303,31225901:162704 -k1,209:17135452,31225901:162704 -k1,209:17654015,31225901:162703 -k1,209:20892979,31225901:162704 -k1,209:23797709,31225901:162704 -k1,209:25064695,31225901:162704 -k1,209:25975165,31225901:162704 -k1,209:28936912,31225901:162704 -k1,209:30291061,31225901:162704 -k1,209:31966991,31225901:162704 -k1,209:32583029,31225901:0 -) -(1,210:6630773,32067389:25952256,513147,134348 -k1,209:11060941,32067389:185401 -k1,209:12791682,32067389:185402 -k1,209:14394627,32067389:185401 -k1,209:16917697,32067389:185401 -k1,209:17458958,32067389:185401 -k1,209:20748800,32067389:185402 -k1,209:22843265,32067389:185401 -k1,209:25447600,32067389:185401 -k1,209:26292294,32067389:185402 -k1,209:28561740,32067389:185401 -k1,209:32583029,32067389:0 -) -(1,210:6630773,32908877:25952256,505283,134348 -k1,209:8018662,32908877:196444 -k1,209:9681802,32908877:196444 -k1,209:11874473,32908877:196444 -k1,209:13763057,32908877:196444 -k1,209:16967604,32908877:196444 -k1,209:19385718,32908877:196443 -k1,209:20233590,32908877:196444 -k1,209:21449119,32908877:196444 -k1,209:25997809,32908877:196444 -k1,209:29036549,32908877:196444 -k1,209:29849031,32908877:196444 -k1,209:31311631,32908877:196444 -k1,209:32583029,32908877:0 -) -(1,210:6630773,33750365:25952256,513147,134348 -k1,209:8604970,33750365:205380 -k1,209:11479630,33750365:205379 -k1,209:13178576,33750365:205380 -k1,209:14154658,33750365:205379 -k1,209:16269102,33750365:205380 -k1,209:17160644,33750365:205380 -k1,209:18385108,33750365:205379 -k1,209:21895469,33750365:205380 -k1,209:22760141,33750365:205380 -k1,209:23321380,33750365:205379 -k1,209:25151398,33750365:205380 -k1,209:28484810,33750365:205379 -k1,209:30084141,33750365:205380 -k1,209:32583029,33750365:0 -) -(1,210:6630773,34591853:25952256,513147,134348 -k1,209:8024623,34591853:202405 -k1,209:11129618,34591853:202405 -k1,209:14317843,34591853:202405 -k1,209:15804755,34591853:202406 -k1,209:17111442,34591853:202405 -k1,209:18767436,34591853:202405 -k1,209:20792397,34591853:202405 -k1,209:23493690,34591853:202405 -k1,209:24887540,34591853:202405 -k1,209:27173991,34591853:202406 -k1,209:29313640,34591853:202405 -k1,209:30463696,34591853:202405 -k1,209:31021961,34591853:202405 -k1,210:32583029,34591853:0 -) -(1,210:6630773,35433341:25952256,513147,134348 -k1,209:8626911,35433341:267954 -k1,209:11737160,35433341:267953 -k1,209:13151339,35433341:267954 -k1,209:13834066,35433341:267884 -k1,209:16429203,35433341:267954 -k1,209:17356448,35433341:267953 -k1,209:18572053,35433341:267954 -k1,209:19195867,35433341:267954 -k1,209:21755614,35433341:267953 -k1,209:24865864,35433341:267954 -k1,209:26280042,35433341:267953 -k1,209:29033121,35433341:267954 -k1,209:29928909,35433341:267953 -k1,209:31215948,35433341:267954 -k1,209:32583029,35433341:0 -) -(1,210:6630773,36274829:25952256,513147,134348 -k1,209:7527258,36274829:229329 -k1,209:10354434,36274829:229329 -k1,209:11602848,36274829:229329 -k1,209:13597718,36274829:229330 -k1,209:14899216,36274829:229329 -k1,209:16194816,36274829:229329 -k1,209:17799746,36274829:229329 -k1,209:20871371,36274829:229329 -k1,209:24395195,36274829:229329 -k1,209:25156021,36274829:229329 -k1,209:25973864,36274829:229330 -k1,209:27399880,36274829:229329 -k1,209:29221079,36274829:229329 -k1,209:31923737,36274829:229329 -k1,209:32583029,36274829:0 -) -(1,210:6630773,37116317:25952256,505283,126483 -k1,209:8202207,37116317:153890 -k1,209:10643305,37116317:153891 -k1,209:13422567,37116317:153890 -k1,209:15226654,37116317:153890 -k1,209:16822992,37116317:153891 -k1,209:18133592,37116317:153890 -k1,209:19826268,37116317:153891 -k1,209:25006114,37116317:153890 -k1,209:26821997,37116317:153890 -k1,209:28985877,37116317:153891 -k1,209:30158852,37116317:153890 -k1,209:32583029,37116317:0 -) -(1,210:6630773,37957805:25952256,513147,126483 -k1,209:8133167,37957805:241481 -k1,209:9531358,37957805:241481 -k1,209:10873844,37957805:241481 -k1,209:13146287,37957805:241482 -k1,209:14039196,37957805:241481 -k1,209:15299762,37957805:241481 -k1,209:15956044,37957805:241439 -k1,209:18791440,37957805:241481 -k1,209:19388781,37957805:241481 -k1,209:20856441,37957805:241481 -k1,209:23180656,37957805:241481 -k1,209:23777998,37957805:241482 -k1,209:27461430,37957805:241481 -k1,209:30446903,37957805:241481 -k1,209:31044244,37957805:241481 -k1,209:32583029,37957805:0 -) -(1,210:6630773,38799293:25952256,513147,134348 -k1,209:7805233,38799293:226809 -k1,209:10981817,38799293:226809 -k1,209:13541052,38799293:226809 -k1,209:14959306,38799293:226809 -k1,209:17217076,38799293:226809 -k1,209:18095313,38799293:226809 -k1,209:20553622,38799293:226808 -k1,209:24007424,38799293:226809 -k1,209:25815617,38799293:226809 -k1,209:27535992,38799293:226809 -k1,209:28448963,38799293:226809 -k1,209:29623423,38799293:226809 -k1,209:32583029,38799293:0 -) -(1,210:6630773,39640781:25952256,505283,134348 -k1,209:8038618,39640781:216400 -k1,209:11114353,39640781:216399 -k1,209:14403081,39640781:216400 -k1,209:17703605,39640781:216400 -k1,209:20882888,39640781:216400 -k1,209:23523464,39640781:216399 -k1,209:26596578,39640781:216400 -k1,209:28166952,39640781:216400 -k1,209:29661958,39640781:216399 -k1,209:30897443,39640781:216400 -k1,210:32583029,39640781:0 -) -(1,210:6630773,40482269:25952256,513147,134348 -k1,209:9483040,40482269:192816 -k1,209:10335149,40482269:192817 -k1,209:12098863,40482269:192816 -k1,209:14453056,40482269:192816 -k1,209:15837317,40482269:192816 -k1,209:19114258,40482269:192817 -k1,209:19765171,40482269:192816 -k1,209:20489484,40482269:192816 -k1,209:23766425,40482269:192817 -k1,209:24575279,40482269:192816 -k1,209:25749169,40482269:192816 -k1,209:28557527,40482269:192816 -k1,209:30036160,40482269:192817 -k1,209:31248061,40482269:192816 -k1,209:32583029,40482269:0 -) -(1,210:6630773,41323757:25952256,513147,134348 -k1,209:9426928,41323757:166195 -k1,209:10831099,41323757:166196 -k1,209:11656586,41323757:166195 -k1,209:13558174,41323757:166195 -k1,209:14139180,41323757:166163 -k1,209:14918137,41323757:166195 -k1,209:16103417,41323757:166195 -k1,209:18689857,41323757:166195 -k1,209:19542215,41323757:166196 -k1,209:20166507,41323757:166195 -k1,209:21433707,41323757:166195 -k1,209:22618987,41323757:166195 -k1,209:23199993,41323757:166163 -k1,209:24754241,41323757:166195 -k1,209:27166355,41323757:166195 -k1,209:28686525,41323757:166196 -k1,209:30131327,41323757:166195 -k1,210:32583029,41323757:0 -) -(1,210:6630773,42165245:25952256,505283,134348 -k1,209:7843049,42165245:187293 -k1,209:9497038,42165245:187293 -k1,209:10300369,42165245:187293 -k1,209:11506748,42165245:187294 -k1,209:13603105,42165245:187293 -k1,209:14981843,42165245:187293 -k1,209:15583967,42165245:187281 -k1,209:18365175,42165245:187293 -k1,209:20537554,42165245:187293 -h1,209:21508142,42165245:0,0,0 -k1,209:21695435,42165245:187293 -k1,209:23873713,42165245:187294 -k1,209:25080091,42165245:187293 -k1,209:26859254,42165245:187293 -k1,209:29519876,42165245:187293 -k1,209:32583029,42165245:0 -) -(1,210:6630773,43006733:25952256,513147,134348 -k1,209:7603047,43006733:210746 -k1,209:10237970,43006733:210746 -k1,209:11961941,43006733:210745 -k1,209:14695823,43006733:210746 -k1,209:15925654,43006733:210746 -k1,209:17789873,43006733:210746 -k1,209:19831695,43006733:210746 -k1,209:20728603,43006733:210746 -k1,209:23014873,43006733:210745 -k1,209:25080943,43006733:210746 -k1,209:25904451,43006733:210746 -k1,209:27134282,43006733:210746 -k1,209:27759859,43006733:210734 -k1,209:30390850,43006733:210746 -k1,209:32583029,43006733:0 -) -(1,210:6630773,43848221:25952256,505283,134348 -h1,209:7601361,43848221:0,0,0 -k1,209:7961435,43848221:152980 -k1,209:9305859,43848221:152979 -k1,209:10071601,43848221:152980 -k1,209:11243665,43848221:152979 -k1,209:14450623,43848221:152980 -k1,209:16849521,43848221:152979 -k1,209:20161992,43848221:152980 -k1,209:22716211,43848221:152980 -k1,209:25061369,43848221:152979 -h1,209:26031957,43848221:0,0,0 -k1,209:26565701,43848221:152980 -k1,209:27672229,43848221:152979 -k1,209:28929491,43848221:152980 -k1,209:30107453,43848221:152979 -k1,209:31021961,43848221:152980 -k1,210:32583029,43848221:0 -) -(1,210:6630773,44689709:25952256,513147,134348 -k1,209:8928840,44689709:242858 -k1,209:10868424,44689709:242857 -k1,209:12766066,44689709:242858 -k1,209:15194549,44689709:242857 -k1,209:16767788,44689709:242858 -k1,209:19434822,44689709:242857 -k1,209:20209177,44689709:242858 -k1,209:22214953,44689709:242858 -k1,209:22813670,44689709:242857 -k1,209:24614319,44689709:242858 -k1,209:27492379,44689709:242857 -k1,209:28754322,44689709:242858 -k1,209:30378023,44689709:242857 -k1,209:31812326,44689709:242858 -k1,209:32583029,44689709:0 -) -(1,210:6630773,45531197:25952256,513147,134348 -k1,209:10495550,45531197:200004 -k1,209:11110396,45531197:200003 -k1,209:14857864,45531197:200004 -k1,209:16254555,45531197:200004 -k1,209:18285635,45531197:200004 -k1,209:19692812,45531197:200004 -k1,209:22422506,45531197:200004 -k1,209:23384038,45531197:200004 -k1,209:26291334,45531197:200004 -k1,209:27510423,45531197:200004 -k1,209:30444589,45531197:200004 -k1,209:32583029,45531197:0 -) -] -(1,210:32583029,45706769:0,0,0 -g1,210:32583029,45706769 -) -) -] -(1,210:6630773,47279633:25952256,0,0 -h1,210:6630773,47279633:25952256,0,0 -) -] -h1,210:4262630,4025873:0,0,0 -] -!17567 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,216:37855564,49800853:1179648,16384,0 +) +) +k1,216:3078556,49800853:-34777008 +) +] +g1,216:6630773,4812305 +g1,216:6630773,4812305 +g1,216:7279579,4812305 +k1,216:32184571,4812305:24904992 +) +) +] +[1,216:6630773,45706769:25952256,40108032,0 +(1,216:6630773,45706769:25952256,40108032,0 +(1,216:6630773,45706769:0,0,0 +g1,216:6630773,45706769 +) +[1,216:6630773,45706769:25952256,40108032,0 +[1,211:6630773,22189757:25952256,16591020,0 +[1,211:6630773,22189757:25952256,16591020,0 +(1,210:6630773,17224066:25952256,11625329,0 +g1,210:6630773,17224066 +h1,209:6630773,17224066:0,0,0 +(1,209:6630773,17224066:25952256,11625329,0 +) +g1,210:32583029,17224066 +g1,210:32583029,17224066 +) +(1,210:6630773,18720914:25952256,485622,11795 +h1,210:6630773,18720914:0,0,0 +g1,210:9295467,18720914 +k1,210:32583028,18720914:22297312 +g1,210:32583028,18720914 +) +(1,210:6630773,19562402:25952256,513147,134348 +h1,210:6630773,19562402:0,0,0 +k1,210:8927631,19562402:210192 +k1,210:11555446,19562402:210192 +k1,210:12424929,19562402:210191 +k1,210:13654206,19562402:210192 +k1,210:17804422,19562402:210192 +k1,210:21174105,19562402:210192 +k1,210:23804542,19562402:210192 +k1,210:25243534,19562402:210192 +k1,210:26966951,19562402:210191 +k1,210:29700279,19562402:210192 +k1,210:30929556,19562402:210192 +k1,210:32583029,19562402:0 +) +(1,210:6630773,20403890:25952256,505283,126483 +k1,210:8844986,20403890:209467 +k1,210:10542775,20403890:209466 +k1,210:11620594,20403890:209467 +k1,210:12922545,20403890:209466 +(1,210:12922545,20403890:0,452978,115847 +r1,210:15391082,20403890:2468537,568825,115847 +k1,210:12922545,20403890:-2468537 +) +(1,210:12922545,20403890:2468537,452978,115847 +k1,210:12922545,20403890:3277 +h1,210:15387805,20403890:0,411205,112570 +) +k1,210:15600549,20403890:209467 +k1,210:16461444,20403890:209467 +k1,210:17788954,20403890:209466 +k1,210:19017506,20403890:209467 +k1,210:21231718,20403890:209466 +k1,210:22460270,20403890:209467 +k1,210:24328453,20403890:209467 +k1,210:26621964,20403890:209466 +k1,210:27963893,20403890:209467 +k1,210:30545107,20403890:209466 +k1,210:31563944,20403890:209467 +k1,210:32583029,20403890:0 +) +(1,210:6630773,21245378:25952256,505283,134348 +k1,210:9895263,21245378:210512 +k1,210:12351693,21245378:210511 +k1,210:13178243,21245378:210512 +k1,210:14654910,21245378:210511 +k1,210:15493257,21245378:210512 +k1,210:16907010,21245378:210512 +k1,210:18658272,21245378:210511 +k1,210:19283615,21245378:210500 +k1,210:21406468,21245378:210512 +k1,210:22636065,21245378:210512 +k1,210:25019750,21245378:210511 +k1,210:25843024,21245378:210512 +k1,210:27072620,21245378:210511 +k1,210:30337110,21245378:210512 +k1,210:32583029,21245378:0 +) +(1,210:6630773,22086866:25952256,505283,102891 +g1,210:9250247,22086866 +g1,210:10132361,22086866 +g1,210:12008001,22086866 +g1,210:14158892,22086866 +g1,210:15800568,22086866 +g1,210:16615835,22086866 +g1,210:17603462,22086866 +g1,210:19133072,22086866 +g1,210:19747144,22086866 +k1,210:32583029,22086866:10241970 +g1,210:32583029,22086866 +) +] +] +(1,206:6630773,24155837:25952256,505283,134348 +k1,205:10038548,24155837:248284 +k1,205:12688071,24155837:248284 +k1,205:14827070,24155837:248285 +k1,205:15562892,24155837:248234 +k1,205:17642253,24155837:248285 +k1,205:18994819,24155837:248284 +k1,205:19990869,24155837:248284 +k1,205:21357197,24155837:248284 +k1,205:22218243,24155837:248284 +k1,205:23485612,24155837:248284 +k1,205:26787875,24155837:248285 +k1,205:29282078,24155837:248284 +k1,205:31931601,24155837:248284 +k1,205:32583029,24155837:0 +) +(1,206:6630773,24997325:25952256,513147,134348 +k1,205:7657369,24997325:211328 +k1,205:13005410,24997325:211329 +k1,205:17018481,24997325:211328 +k1,205:18623761,24997325:211329 +k1,205:19854174,24997325:211328 +k1,205:22224259,24997325:211329 +k1,205:24247002,24997325:211328 +k1,205:25109759,24997325:211329 +k1,205:25676947,24997325:211328 +k1,205:27044986,24997325:211329 +k1,205:28527712,24997325:211328 +k1,205:30075975,24997325:211329 +k1,205:31379788,24997325:211328 +k1,205:32583029,24997325:0 +) +(1,206:6630773,25838813:25952256,505283,134348 +k1,205:9832207,25838813:216924 +k1,205:10858501,25838813:216924 +k1,205:11431285,25838813:216924 +k1,205:13780752,25838813:216925 +k1,205:15218612,25838813:216924 +k1,205:16086964,25838813:216924 +k1,205:17916729,25838813:216924 +k1,205:18489513,25838813:216924 +k1,205:20277335,25838813:216924 +k1,205:21883622,25838813:216924 +k1,205:24655140,25838813:216925 +k1,205:25893770,25838813:216924 +k1,205:28633830,25838813:216924 +k1,205:31900144,25838813:216924 +k1,205:32583029,25838813:0 +) +(1,206:6630773,26680301:25952256,513147,126483 +g1,205:8296698,26680301 +g1,205:9443578,26680301 +g1,205:11874308,26680301 +k1,206:32583029,26680301:19067044 +g1,206:32583029,26680301 +) +(1,213:6630773,28308221:25952256,505283,11795 +(1,213:6630773,28308221:2809528,485622,11795 +g1,213:6630773,28308221 +g1,213:9440301,28308221 +) +g1,213:11984408,28308221 +g1,213:13409160,28308221 +k1,213:32583029,28308221:17687512 +g1,213:32583029,28308221 +) +(1,216:6630773,29542925:25952256,505283,134348 +k1,215:10088370,29542925:182108 +k1,215:14485098,29542925:182108 +k1,215:19078434,29542925:182108 +k1,215:21092273,29542925:182108 +k1,215:22265942,29542925:182109 +k1,215:23961276,29542925:182108 +k1,215:25841422,29542925:182108 +k1,215:29506769,29542925:182108 +k1,215:32583029,29542925:0 +) +(1,216:6630773,30384413:25952256,513147,134348 +k1,215:10086963,30384413:210192 +k1,215:11714698,30384413:210191 +k1,215:14354965,30384413:210192 +k1,215:14921017,30384413:210192 +k1,215:18692435,30384413:210192 +k1,215:20283470,30384413:210191 +k1,215:23303846,30384413:210192 +k1,215:25081659,30384413:210192 +k1,215:27301840,30384413:210192 +k1,215:29397502,30384413:210191 +k1,215:30626779,30384413:210192 +k1,216:32583029,30384413:0 +) +(1,216:6630773,31225901:25952256,505283,134348 +k1,215:7831786,31225901:181928 +k1,215:9595098,31225901:181928 +k1,215:11290251,31225901:181927 +k1,215:12123607,31225901:181928 +k1,215:14234915,31225901:181928 +k1,215:15608288,31225901:181928 +k1,215:16981661,31225901:181928 +k1,215:17519448,31225901:181927 +k1,215:20777636,31225901:181928 +k1,215:23701590,31225901:181928 +k1,215:24987800,31225901:181928 +k1,215:25917494,31225901:181928 +k1,215:28898464,31225901:181927 +k1,215:30271837,31225901:181928 +k1,215:31966991,31225901:181928 +k1,215:32583029,31225901:0 +) +(1,216:6630773,32067389:25952256,513147,134348 +k1,215:11060941,32067389:185401 +k1,215:12791682,32067389:185402 +k1,215:14394627,32067389:185401 +k1,215:16917697,32067389:185401 +k1,215:17458958,32067389:185401 +k1,215:20748800,32067389:185402 +k1,215:22843265,32067389:185401 +k1,215:25447600,32067389:185401 +k1,215:26292294,32067389:185402 +k1,215:28561740,32067389:185401 +k1,215:32583029,32067389:0 +) +(1,216:6630773,32908877:25952256,505283,134348 +k1,215:8018662,32908877:196444 +k1,215:9681802,32908877:196444 +k1,215:11874473,32908877:196444 +k1,215:13763057,32908877:196444 +k1,215:16967604,32908877:196444 +k1,215:19385718,32908877:196443 +k1,215:20233590,32908877:196444 +k1,215:21449119,32908877:196444 +k1,215:25997809,32908877:196444 +k1,215:29036549,32908877:196444 +k1,215:29849031,32908877:196444 +k1,215:31311631,32908877:196444 +k1,215:32583029,32908877:0 +) +(1,216:6630773,33750365:25952256,513147,134348 +k1,215:8604970,33750365:205380 +k1,215:11479630,33750365:205379 +k1,215:13178576,33750365:205380 +k1,215:14154658,33750365:205379 +k1,215:16269102,33750365:205380 +k1,215:17160644,33750365:205380 +k1,215:18385108,33750365:205379 +k1,215:21895469,33750365:205380 +k1,215:22760141,33750365:205380 +k1,215:23321380,33750365:205379 +k1,215:25151398,33750365:205380 +k1,215:28484810,33750365:205379 +k1,215:30084141,33750365:205380 +k1,215:32583029,33750365:0 +) +(1,216:6630773,34591853:25952256,513147,134348 +k1,215:8024623,34591853:202405 +k1,215:11129618,34591853:202405 +k1,215:14317843,34591853:202405 +k1,215:15804755,34591853:202406 +k1,215:17111442,34591853:202405 +k1,215:18767436,34591853:202405 +k1,215:20792397,34591853:202405 +k1,215:23493690,34591853:202405 +k1,215:24887540,34591853:202405 +k1,215:27173991,34591853:202406 +k1,215:29313640,34591853:202405 +k1,215:30463696,34591853:202405 +k1,215:31021961,34591853:202405 +k1,216:32583029,34591853:0 +) +(1,216:6630773,35433341:25952256,513147,134348 +k1,215:8626911,35433341:267954 +k1,215:11737160,35433341:267953 +k1,215:13151339,35433341:267954 +k1,215:13834066,35433341:267884 +k1,215:16429203,35433341:267954 +k1,215:17356448,35433341:267953 +k1,215:18572053,35433341:267954 +k1,215:19195867,35433341:267954 +k1,215:21755614,35433341:267953 +k1,215:24865864,35433341:267954 +k1,215:26280042,35433341:267953 +k1,215:29033121,35433341:267954 +k1,215:29928909,35433341:267953 +k1,215:31215948,35433341:267954 +k1,215:32583029,35433341:0 +) +(1,216:6630773,36274829:25952256,513147,134348 +k1,215:7527258,36274829:229329 +k1,215:10354434,36274829:229329 +k1,215:11602848,36274829:229329 +k1,215:13597718,36274829:229330 +k1,215:14899216,36274829:229329 +k1,215:16194816,36274829:229329 +k1,215:17799746,36274829:229329 +k1,215:20871371,36274829:229329 +k1,215:24395195,36274829:229329 +k1,215:25156021,36274829:229329 +k1,215:25973864,36274829:229330 +k1,215:27399880,36274829:229329 +k1,215:29221079,36274829:229329 +k1,215:31923737,36274829:229329 +k1,215:32583029,36274829:0 +) +(1,216:6630773,37116317:25952256,505283,126483 +k1,215:8202207,37116317:153890 +k1,215:10643305,37116317:153891 +k1,215:13422567,37116317:153890 +k1,215:15226654,37116317:153890 +k1,215:16822992,37116317:153891 +k1,215:18133592,37116317:153890 +k1,215:19826268,37116317:153891 +k1,215:25006114,37116317:153890 +k1,215:26821997,37116317:153890 +k1,215:28985877,37116317:153891 +k1,215:30158852,37116317:153890 +k1,215:32583029,37116317:0 +) +(1,216:6630773,37957805:25952256,513147,126483 +k1,215:8133167,37957805:241481 +k1,215:9531358,37957805:241481 +k1,215:10873844,37957805:241481 +k1,215:13146287,37957805:241482 +k1,215:14039196,37957805:241481 +k1,215:15299762,37957805:241481 +k1,215:15956044,37957805:241439 +k1,215:18791440,37957805:241481 +k1,215:19388781,37957805:241481 +k1,215:20856441,37957805:241481 +k1,215:23180656,37957805:241481 +k1,215:23777998,37957805:241482 +k1,215:27461430,37957805:241481 +k1,215:30446903,37957805:241481 +k1,215:31044244,37957805:241481 +k1,215:32583029,37957805:0 +) +(1,216:6630773,38799293:25952256,513147,134348 +k1,215:7805233,38799293:226809 +k1,215:10981817,38799293:226809 +k1,215:13541052,38799293:226809 +k1,215:14959306,38799293:226809 +k1,215:17217076,38799293:226809 +k1,215:18095313,38799293:226809 +k1,215:20553622,38799293:226808 +k1,215:24007424,38799293:226809 +k1,215:25815617,38799293:226809 +k1,215:27535992,38799293:226809 +k1,215:28448963,38799293:226809 +k1,215:29623423,38799293:226809 +k1,215:32583029,38799293:0 +) +(1,216:6630773,39640781:25952256,505283,134348 +k1,215:8109069,39640781:286851 +k1,215:11255256,39640781:286851 +k1,215:14614435,39640781:286851 +k1,215:17985410,39640781:286851 +k1,215:21235144,39640781:286851 +k1,215:23946171,39640781:286850 +k1,215:27089736,39640781:286851 +k1,215:28730561,39640781:286851 +k1,215:30296019,39640781:286851 +k1,215:31601955,39640781:286851 +k1,216:32583029,39640781:0 +) +(1,216:6630773,40482269:25952256,513147,134348 +k1,215:10250881,40482269:256145 +k1,215:11166318,40482269:256145 +k1,215:12993361,40482269:256145 +k1,215:15410883,40482269:256145 +k1,215:16858473,40482269:256145 +k1,215:20198742,40482269:256145 +k1,215:20912983,40482269:256144 +k1,215:21700625,40482269:256145 +k1,215:25040894,40482269:256145 +k1,215:25913077,40482269:256145 +k1,215:27150296,40482269:256145 +k1,215:30021983,40482269:256145 +k1,215:31563944,40482269:256145 +k1,215:32583029,40482269:0 +) +(1,216:6630773,41323757:25952256,513147,134348 +k1,215:8197627,41323757:231886 +k1,215:11059472,41323757:231885 +k1,215:12529333,41323757:231886 +k1,215:13420510,41323757:231885 +k1,215:15387789,41323757:231886 +k1,215:16034484,41323757:231852 +k1,215:16879132,41323757:231886 +k1,215:18130102,41323757:231885 +k1,215:20782233,41323757:231886 +k1,215:21700280,41323757:231885 +k1,215:22390263,41323757:231886 +k1,215:23723153,41323757:231885 +k1,215:24974124,41323757:231886 +k1,215:25620820,41323757:231853 +k1,215:27240758,41323757:231885 +k1,215:29718563,41323757:231886 +k1,215:31304422,41323757:231885 +k1,215:32583029,41323757:0 +) +(1,216:6630773,42165245:25952256,505283,134348 +k1,215:10057419,42165245:162953 +k1,215:11687068,42165245:162953 +k1,215:12466059,42165245:162953 +k1,215:13648097,42165245:162953 +k1,215:15720114,42165245:162953 +k1,215:17074512,42165245:162953 +k1,215:17652271,42165245:162916 +k1,215:20409139,42165245:162953 +k1,215:22557178,42165245:162953 +h1,215:23527766,42165245:0,0,0 +k1,215:23690719,42165245:162953 +k1,215:25844656,42165245:162953 +k1,215:27026694,42165245:162953 +k1,215:28781517,42165245:162953 +k1,215:31417799,42165245:162953 +k1,216:32583029,42165245:0 +) +(1,216:6630773,43006733:25952256,513147,134348 +k1,215:8958239,43006733:216551 +k1,215:9936318,43006733:216551 +k1,215:12577045,43006733:216550 +k1,215:14306822,43006733:216551 +k1,215:17046509,43006733:216551 +k1,215:18282145,43006733:216551 +k1,215:20152169,43006733:216551 +k1,215:22199796,43006733:216551 +k1,215:23102508,43006733:216550 +k1,215:25394584,43006733:216551 +k1,215:27466459,43006733:216551 +k1,215:28295772,43006733:216551 +k1,215:29531408,43006733:216551 +k1,215:30162784,43006733:216533 +k1,215:32583029,43006733:0 +) +(1,216:6630773,43848221:25952256,505283,134348 +k1,215:8997731,43848221:174779 +h1,215:9968319,43848221:0,0,0 +k1,215:10350193,43848221:174780 +k1,215:11716417,43848221:174779 +k1,215:12503958,43848221:174779 +k1,215:13697823,43848221:174780 +k1,215:16926580,43848221:174779 +k1,215:19347278,43848221:174779 +k1,215:22681548,43848221:174779 +k1,215:25257567,43848221:174780 +k1,215:27624525,43848221:174779 +h1,215:28595113,43848221:0,0,0 +k1,215:29150656,43848221:174779 +k1,215:30278985,43848221:174780 +k1,215:31558046,43848221:174779 +k1,215:32583029,43848221:0 +) +(1,216:6630773,44689709:25952256,513147,134348 +k1,215:7642497,44689709:250196 +k1,215:11295978,44689709:250196 +k1,215:13242901,44689709:250196 +k1,215:15147882,44689709:250197 +k1,215:17583704,44689709:250196 +k1,215:19164281,44689709:250196 +k1,215:21838654,44689709:250196 +k1,215:22620347,44689709:250196 +k1,215:24633461,44689709:250196 +k1,215:25239518,44689709:250197 +k1,215:27047505,44689709:250196 +k1,215:29932904,44689709:250196 +k1,215:31202185,44689709:250196 +k1,215:32583029,44689709:0 +) +(1,216:6630773,45531197:25952256,513147,134348 +k1,215:8020246,45531197:198028 +k1,215:8988977,45531197:198028 +k1,215:12851778,45531197:198028 +k1,215:13464648,45531197:198027 +k1,215:17210140,45531197:198028 +k1,215:18604855,45531197:198028 +k1,215:20633959,45531197:198028 +k1,215:22039160,45531197:198028 +k1,215:24766878,45531197:198028 +k1,215:25726434,45531197:198028 +k1,215:28631754,45531197:198028 +k1,215:29848867,45531197:198028 +k1,215:32583029,45531197:0 +) +] +(1,216:32583029,45706769:0,0,0 +g1,216:32583029,45706769 +) +) +] +(1,216:6630773,47279633:25952256,0,0 +h1,216:6630773,47279633:25952256,0,0 +) +] +h1,216:4262630,4025873:0,0,0 +] +!17540 }18 !11 {19 -[1,226:4262630,47279633:28320399,43253760,0 -(1,226:4262630,4025873:0,0,0 -[1,226:-473657,4025873:25952256,0,0 -(1,226:-473657,-710414:25952256,0,0 -h1,226:-473657,-710414:0,0,0 -(1,226:-473657,-710414:0,0,0 -(1,226:-473657,-710414:0,0,0 -g1,226:-473657,-710414 -(1,226:-473657,-710414:65781,0,65781 -g1,226:-407876,-710414 -[1,226:-407876,-644633:0,0,0 +[1,232:4262630,47279633:28320399,43253760,0 +(1,232:4262630,4025873:0,0,0 +[1,232:-473657,4025873:25952256,0,0 +(1,232:-473657,-710414:25952256,0,0 +h1,232:-473657,-710414:0,0,0 +(1,232:-473657,-710414:0,0,0 +(1,232:-473657,-710414:0,0,0 +g1,232:-473657,-710414 +(1,232:-473657,-710414:65781,0,65781 +g1,232:-407876,-710414 +[1,232:-407876,-644633:0,0,0 ] ) -k1,226:-473657,-710414:-65781 +k1,232:-473657,-710414:-65781 ) ) -k1,226:25478599,-710414:25952256 -g1,226:25478599,-710414 +k1,232:25478599,-710414:25952256 +g1,232:25478599,-710414 ) ] ) -[1,226:6630773,47279633:25952256,43253760,0 -[1,226:6630773,4812305:25952256,786432,0 -(1,226:6630773,4812305:25952256,505283,134348 -(1,226:6630773,4812305:25952256,505283,134348 -g1,226:3078558,4812305 -[1,226:3078558,4812305:0,0,0 -(1,226:3078558,2439708:0,1703936,0 -k1,226:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,226:2537886,2439708:1179648,16384,0 +[1,232:6630773,47279633:25952256,43253760,0 +[1,232:6630773,4812305:25952256,786432,0 +(1,232:6630773,4812305:25952256,505283,134348 +(1,232:6630773,4812305:25952256,505283,134348 +g1,232:3078558,4812305 +[1,232:3078558,4812305:0,0,0 +(1,232:3078558,2439708:0,1703936,0 +k1,232:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,232:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,226:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,232:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,226:3078558,4812305:0,0,0 -(1,226:3078558,2439708:0,1703936,0 -g1,226:29030814,2439708 -g1,226:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,226:36151628,1915420:16384,1179648,0 +[1,232:3078558,4812305:0,0,0 +(1,232:3078558,2439708:0,1703936,0 +g1,232:29030814,2439708 +g1,232:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,232:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,226:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,232:37855564,2439708:1179648,16384,0 ) ) -k1,226:3078556,2439708:-34777008 +k1,232:3078556,2439708:-34777008 ) ] -[1,226:3078558,4812305:0,0,0 -(1,226:3078558,49800853:0,16384,2228224 -k1,226:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,226:2537886,49800853:1179648,16384,0 +[1,232:3078558,4812305:0,0,0 +(1,232:3078558,49800853:0,16384,2228224 +k1,232:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,232:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,226:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,232:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,226:3078558,4812305:0,0,0 -(1,226:3078558,49800853:0,16384,2228224 -g1,226:29030814,49800853 -g1,226:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,226:36151628,51504789:16384,1179648,0 +[1,232:3078558,4812305:0,0,0 +(1,232:3078558,49800853:0,16384,2228224 +g1,232:29030814,49800853 +g1,232:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,232:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,226:37855564,49800853:1179648,16384,0 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,232:37855564,49800853:1179648,16384,0 ) ) -k1,226:3078556,49800853:-34777008 -) -] -g1,226:6630773,4812305 -k1,226:22047465,4812305:15018233 -g1,226:22869941,4812305 -g1,226:24054831,4812305 -g1,226:27195316,4812305 -g1,226:28604995,4812305 -g1,226:29789885,4812305 -) -) -] -[1,226:6630773,45706769:25952256,40108032,0 -(1,226:6630773,45706769:25952256,40108032,0 -(1,226:6630773,45706769:0,0,0 -g1,226:6630773,45706769 -) -[1,226:6630773,45706769:25952256,40108032,0 -[1,215:6630773,22423169:25952256,16824432,0 -[1,215:6630773,22423169:25952256,16824432,0 -(1,214:6630773,18275374:25952256,12676637,0 -g1,214:6630773,18275374 -h1,213:6630773,18275374:0,0,0 -(1,213:6630773,18275374:25952256,12676637,0 -) -g1,214:32583029,18275374 -g1,214:32583029,18275374 -) -(1,214:6630773,19772222:25952256,485622,11795 -h1,214:6630773,19772222:0,0,0 -g1,214:9295467,19772222 -k1,214:32583028,19772222:22297312 -g1,214:32583028,19772222 -) -(1,214:6630773,20613710:25952256,513147,134348 -h1,214:6630773,20613710:0,0,0 -k1,214:7977890,20613710:150430 -k1,214:10552498,20613710:150431 -k1,214:13513112,20613710:150430 -k1,214:14892342,20613710:150430 -k1,214:16555999,20613710:150431 -k1,214:19229565,20613710:150430 -k1,214:20399080,20613710:150430 -k1,214:22202983,20613710:150430 -k1,214:24358160,20613710:150431 -k1,214:25996913,20613710:150430 -k1,214:27015695,20613710:150430 -k1,214:28679352,20613710:150431 -k1,214:29848867,20613710:150430 -k1,214:32583029,20613710:0 -) -(1,214:6630773,21455198:25952256,505283,126483 -k1,214:9014053,21455198:244840 -k1,214:9910321,21455198:244840 -k1,214:11273205,21455198:244840 -k1,214:12537130,21455198:244840 -k1,214:14786716,21455198:244840 -k1,214:15659391,21455198:244840 -k1,214:17107472,21455198:244840 -k1,214:18719393,21455198:244840 -k1,214:19379031,21455198:244795 -k1,214:21536212,21455198:244840 -k1,214:22800137,21455198:244840 -k1,214:25218151,21455198:244840 -k1,214:26114419,21455198:244840 -k1,214:27378344,21455198:244840 -k1,214:28037981,21455198:244794 -k1,214:30703066,21455198:244840 -k1,214:31563944,21455198:244840 -k1,214:32583029,21455198:0 -) -(1,214:6630773,22296686:25952256,513147,126483 -g1,214:8586367,22296686 -g1,214:9859731,22296686 -k1,214:32583029,22296686:21010842 -g1,214:32583029,22296686 -) -] -] -(1,210:6630773,24389249:25952256,513147,134348 -k1,209:7432978,24389249:189443 -k1,209:8641505,24389249:189442 -k1,209:9903117,24389249:189443 -k1,209:10751851,24389249:189442 -k1,209:11960379,24389249:189443 -k1,209:14058886,24389249:189443 -k1,209:15960784,24389249:189442 -k1,209:18748074,24389249:189443 -k1,209:19553554,24389249:189442 -k1,209:22616751,24389249:189443 -k1,209:23457622,24389249:189443 -k1,209:25023975,24389249:189442 -k1,209:28366355,24389249:189443 -k1,209:29574882,24389249:189442 -k1,209:31260512,24389249:189443 -k1,210:32583029,24389249:0 -) -(1,210:6630773,25230737:25952256,513147,102891 -k1,209:8022845,25230737:203249 -k1,209:8877522,25230737:203249 -k1,209:11189719,25230737:203248 -k1,209:12412053,25230737:203249 -k1,209:13598342,25230737:203249 -k1,209:14993036,25230737:203249 -k1,209:18219461,25230737:203249 -k1,209:18880806,25230737:203248 -k1,209:19696817,25230737:203249 -k1,209:20919151,25230737:203249 -k1,209:23716315,25230737:203249 -k1,209:24938649,25230737:203249 -k1,209:26795370,25230737:203248 -k1,209:29592534,25230737:203249 -k1,209:31714677,25230737:203249 -k1,209:32583029,25230737:0 -) -(1,210:6630773,26072225:25952256,505283,126483 -g1,209:8786252,26072225 -g1,209:10371567,26072225 -g1,209:11702603,26072225 -g1,209:12316675,26072225 -k1,210:32583029,26072225:16602891 -g1,210:32583029,26072225 -) -(1,218:6630773,26913713:25952256,513147,134348 -h1,217:6630773,26913713:983040,0,0 -k1,217:9656419,26913713:259371 -k1,217:10271650,26913713:259371 -k1,217:12362097,26913713:259371 -k1,217:13152966,26913713:259372 -k1,217:14704052,26913713:259371 -k1,217:15429384,26913713:259371 -k1,217:16459458,26913713:259371 -k1,217:18325772,26913713:259371 -k1,217:19116640,26913713:259371 -k1,217:22448340,26913713:259372 -k1,217:25131888,26913713:259371 -k1,217:29708116,26913713:259371 -k1,217:31563944,26913713:259371 -k1,217:32583029,26913713:0 -) -(1,218:6630773,27755201:25952256,513147,134348 -k1,217:9396720,27755201:209388 -k1,217:10265399,27755201:209387 -k1,217:11493872,27755201:209388 -k1,217:13483872,27755201:209387 -k1,217:16117437,27755201:209388 -k1,217:19183538,27755201:209387 -k1,217:20412011,27755201:209388 -k1,217:23122907,27755201:209387 -k1,217:23991587,27755201:209388 -k1,217:26799477,27755201:209387 -k1,217:29680768,27755201:209388 -k1,217:31923737,27755201:209387 -k1,217:32583029,27755201:0 -) -(1,218:6630773,28596689:25952256,513147,134348 -k1,217:9381374,28596689:238606 -k1,217:10676419,28596689:238605 -k1,217:13356896,28596689:238606 -k1,217:15312544,28596689:238605 -k1,217:18156861,28596689:238606 -k1,217:19387027,28596689:238606 -k1,217:21964612,28596689:238605 -k1,217:23751834,28596689:238606 -k1,217:25160912,28596689:238605 -k1,217:26929784,28596689:238606 -k1,217:28116040,28596689:238605 -k1,217:31193666,28596689:238606 -k1,217:32583029,28596689:0 -) -(1,218:6630773,29438177:25952256,513147,134348 -k1,217:9477525,29438177:292159 -k1,217:10961130,29438177:292160 -k1,217:13198398,29438177:292159 -k1,217:14103320,29438177:292160 -k1,217:16975631,29438177:292159 -k1,217:21573505,29438177:292159 -k1,217:23359231,29438177:292160 -k1,217:24337552,29438177:292159 -k1,217:28135888,29438177:292160 -k1,217:29087339,29438177:292159 -k1,217:32583029,29438177:0 -) -(1,218:6630773,30279665:25952256,513147,134348 -k1,217:9975932,30279665:280696 -k1,217:11065997,30279665:280695 -k1,217:13457608,30279665:280696 -k1,217:16467878,30279665:280695 -k1,217:17940019,30279665:280696 -k1,217:20131744,30279665:280695 -k1,217:23059439,30279665:280696 -k1,217:23999426,30279665:280695 -k1,217:25776309,30279665:280696 -k1,217:26781832,30279665:280695 -k1,217:27748690,30279665:280696 -k1,217:28680813,30279665:280695 -k1,217:31391584,30279665:280696 -k1,217:32583029,30279665:0 -) -(1,218:6630773,31121153:25952256,513147,134348 -k1,217:9505062,31121153:244985 -k1,217:13999402,31121153:244986 -k1,217:14714280,31121153:244985 -k1,217:18132519,31121153:244986 -k1,217:20903917,31121153:244985 -k1,217:22096554,31121153:244986 -k1,217:23324579,31121153:244985 -k1,217:25903302,31121153:244986 -k1,217:28609819,31121153:244985 -k1,217:30740276,31121153:244986 -k1,217:31516758,31121153:244985 -k1,217:32583029,31121153:0 -) -(1,218:6630773,31962641:25952256,513147,134348 -k1,217:8246563,31962641:240189 -k1,217:10463974,31962641:240190 -k1,217:11651814,31962641:240189 -k1,217:14472156,31962641:240190 -k1,217:19018060,31962641:240189 -k1,217:20330419,31962641:240190 -k1,217:21856424,31962641:240189 -k1,217:23044264,31962641:240189 -k1,217:25782686,31962641:240190 -k1,217:27650134,31962641:240189 -k1,217:28549616,31962641:240190 -k1,217:29808890,31962641:240189 -k1,217:32583029,31962641:0 -) -(1,218:6630773,32804129:25952256,513147,126483 -g1,217:7512887,32804129 -g1,217:11912974,32804129 -g1,217:12728241,32804129 -g1,217:13946555,32804129 -g1,217:16700377,32804129 -g1,217:17558898,32804129 -k1,218:32583029,32804129:13461097 -g1,218:32583029,32804129 -) -(1,220:6630773,33645617:25952256,513147,126483 -h1,219:6630773,33645617:983040,0,0 -k1,219:9032113,33645617:221613 -k1,219:11587462,33645617:221612 -k1,219:12476231,33645617:221613 -k1,219:15122020,33645617:221612 -k1,219:16628139,33645617:221613 -k1,219:18006461,33645617:221612 -k1,219:19650861,33645617:221613 -k1,219:22106595,33645617:221612 -k1,219:23397756,33645617:221613 -k1,219:26356807,33645617:221612 -k1,219:27194458,33645617:221613 -k1,219:27771930,33645617:221612 -k1,219:31069803,33645617:221613 -k1,219:32583029,33645617:0 -) -(1,220:6630773,34487105:25952256,513147,134348 -k1,219:8905855,34487105:214630 -k1,219:9882014,34487105:214631 -k1,219:10452504,34487105:214630 -k1,219:12540153,34487105:214630 -k1,219:14309298,34487105:214631 -k1,219:15972274,34487105:214630 -k1,219:17580856,34487105:214631 -k1,219:18566189,34487105:214630 -k1,219:20943507,34487105:214630 -k1,219:23894921,34487105:214631 -k1,219:25490395,34487105:214630 -k1,219:28515209,34487105:214630 -k1,219:29539210,34487105:214631 -k1,219:31355540,34487105:214630 -k1,220:32583029,34487105:0 -) -(1,220:6630773,35328593:25952256,505283,134348 -k1,219:8297164,35328593:195108 -k1,219:11546251,35328593:195109 -k1,219:14491250,35328593:195108 -k1,219:16179925,35328593:195109 -k1,219:17061195,35328593:195108 -k1,219:19183062,35328593:195109 -k1,219:21003462,35328593:195108 -k1,219:22068723,35328593:202807 -k1,219:22847756,35328593:195108 -k1,219:24234310,35328593:195109 -k1,219:28543112,35328593:195108 -k1,219:30570608,35328593:195109 -k1,219:31297213,35328593:195108 -k1,219:32583029,35328593:0 -) -(1,220:6630773,36170081:25952256,505283,134348 -k1,219:7185950,36170081:199317 -k1,219:9344137,36170081:199316 -k1,219:11877191,36170081:199317 -k1,219:13361014,36170081:199317 -k1,219:15008676,36170081:199316 -k1,219:16017363,36170081:199317 -k1,219:18143438,36170081:199317 -k1,219:19534199,36170081:199316 -k1,219:21018022,36170081:199317 -k1,219:22321621,36170081:199317 -k1,219:23268703,36170081:199316 -k1,219:24981246,36170081:199317 -k1,219:28001233,36170081:199317 -k1,219:30759075,36170081:199316 -k1,219:31314252,36170081:199317 -k1,219:32583029,36170081:0 -) -(1,220:6630773,37011569:25952256,513147,7863 -g1,219:9573994,37011569 -g1,219:10969910,37011569 -g1,219:12549983,37011569 -g1,219:15559396,37011569 -g1,219:16290122,37011569 -g1,219:17688005,37011569 -g1,219:18906319,37011569 -k1,220:32583029,37011569:11849566 -g1,220:32583029,37011569 -) -(1,222:6630773,37853057:25952256,505283,126484 -h1,221:6630773,37853057:983040,0,0 -k1,221:10349869,37853057:311879 -k1,221:11193244,37853057:311878 -k1,221:13391249,37853057:311879 -k1,221:15555174,37853057:311878 -k1,221:20172768,37853057:311879 -k1,221:21676091,37853057:311878 -k1,221:25311956,37853057:311879 -k1,221:28847550,37853057:311878 -k1,221:30607119,37853057:311879 -$1,221:30607119,37853057 -k1,221:32187847,37853057:0 -k1,222:32583029,37853057:0 -) -(1,222:6630773,38694545:25952256,513147,134349 -k1,221:7025955,38694545:0 -k1,221:7421137,38694545:0 -k1,221:8606683,38694545:0 -k1,221:9001865,38694545:0 -k1,221:11768139,38694545:0 -k1,221:12163321,38694545:0 -$1,221:13744049,38694545 -k1,221:14015122,38694545:271073 -k1,221:15233847,38694545:271074 -k1,221:16275623,38694545:271073 -k1,221:19840536,38694545:271074 -k1,221:23721332,38694545:271073 -k1,221:25183850,38694545:271073 -k1,221:28582302,38694545:271074 -k1,221:30044820,38694545:271073 -k1,222:32583029,38694545:0 -) -(1,222:6630773,39536033:25952256,513147,134348 -k1,221:8109379,39536033:211140 -k1,221:12331979,39536033:211141 -k1,221:13893161,39536033:211140 -k1,221:16016643,39536033:211141 -k1,221:19779179,39536033:211140 -k1,221:21181765,39536033:211141 -k1,221:24016967,39536033:211140 -k1,221:25995662,39536033:211189 -k1,221:27360891,39536033:211140 -k1,221:28763477,39536033:211141 -k1,221:30782100,39536033:211140 -k1,221:32583029,39536033:0 -) -(1,222:6630773,40377521:25952256,505283,134348 -k1,221:9463941,40377521:163887 -k1,221:10819273,40377521:163887 -k1,221:12691683,40377521:163886 -k1,221:14185951,40377521:163887 -k1,221:15001266,40377521:163887 -k1,221:16257638,40377521:163887 -k1,221:18845701,40377521:163886 -k1,221:21469810,40377521:163887 -k1,221:23392683,40377521:163887 -k1,221:24172608,40377521:163887 -k1,221:26197062,40377521:163887 -k1,221:27628414,40377521:163886 -k1,221:29181664,40377521:163887 -k1,221:31900144,40377521:163887 -k1,221:32583029,40377521:0 -) -(1,222:6630773,41219009:25952256,505283,126483 -k1,221:9883390,41219009:225509 -k1,221:12953163,41219009:225510 -k1,221:13864834,41219009:225509 -k1,221:16514520,41219009:225509 -k1,221:17271527,41219009:225510 -k1,221:19383162,41219009:225509 -k1,221:20962645,41219009:225509 -k1,221:23040201,41219009:225509 -k1,221:27571426,41219009:225510 -k1,221:30028436,41219009:225509 -k1,221:32583029,41219009:0 -) -(1,222:6630773,42060497:25952256,513147,126483 -k1,221:8785269,42060497:189071 -k1,221:12183638,42060497:189071 -k1,221:14978421,42060497:189072 -k1,221:16159052,42060497:189071 -k1,221:17414394,42060497:189071 -k1,221:20693489,42060497:189072 -k1,221:21498598,42060497:189071 -k1,221:23384396,42060497:189071 -k1,221:25659478,42060497:189071 -k1,221:27102254,42060497:189072 -k1,221:28423787,42060497:189071 -k1,221:29879014,42060497:189071 -k1,221:32583029,42060497:0 -) -(1,222:6630773,42901985:25952256,505283,134349 -g1,221:8021447,42901985 -g1,221:11514515,42901985 -g1,221:13422268,42901985 -g1,221:15648526,42901985 -g1,221:16460517,42901985 -$1,221:16460517,42901985 -g1,221:18041245,42901985 -g1,221:18436427,42901985 -g1,221:18831609,42901985 -g1,221:19226791,42901985 -g1,221:20412337,42901985 -g1,221:20807519,42901985 -g1,221:23573793,42901985 -g1,221:23968975,42901985 -$1,221:25549703,42901985 -k1,222:32583029,42901985:6859656 -g1,222:32583029,42901985 -) -] -(1,226:32583029,45706769:0,0,0 -g1,226:32583029,45706769 -) -) -] -(1,226:6630773,47279633:25952256,0,0 -h1,226:6630773,47279633:25952256,0,0 -) -] -h1,226:4262630,4025873:0,0,0 -] -!15523 +k1,232:3078556,49800853:-34777008 +) +] +g1,232:6630773,4812305 +k1,232:21845614,4812305:14816382 +g1,232:22668090,4812305 +g1,232:24054831,4812305 +g1,232:27195316,4812305 +g1,232:28604995,4812305 +g1,232:29789885,4812305 +) +) +] +[1,232:6630773,45706769:25952256,40108032,0 +(1,232:6630773,45706769:25952256,40108032,0 +(1,232:6630773,45706769:0,0,0 +g1,232:6630773,45706769 +) +[1,232:6630773,45706769:25952256,40108032,0 +[1,221:6630773,22423169:25952256,16824432,0 +[1,221:6630773,22423169:25952256,16824432,0 +(1,220:6630773,18275374:25952256,12676637,0 +g1,220:6630773,18275374 +h1,219:6630773,18275374:0,0,0 +(1,219:6630773,18275374:25952256,12676637,0 +) +g1,220:32583029,18275374 +g1,220:32583029,18275374 +) +(1,220:6630773,19772222:25952256,485622,11795 +h1,220:6630773,19772222:0,0,0 +g1,220:9295467,19772222 +k1,220:32583028,19772222:22297312 +g1,220:32583028,19772222 +) +(1,220:6630773,20613710:25952256,513147,134348 +h1,220:6630773,20613710:0,0,0 +k1,220:7977890,20613710:150430 +k1,220:10552498,20613710:150431 +k1,220:13513112,20613710:150430 +k1,220:14892342,20613710:150430 +k1,220:16555999,20613710:150431 +k1,220:19229565,20613710:150430 +k1,220:20399080,20613710:150430 +k1,220:22202983,20613710:150430 +k1,220:24358160,20613710:150431 +k1,220:25996913,20613710:150430 +k1,220:27015695,20613710:150430 +k1,220:28679352,20613710:150431 +k1,220:29848867,20613710:150430 +k1,220:32583029,20613710:0 +) +(1,220:6630773,21455198:25952256,505283,126483 +k1,220:9003836,21455198:234623 +k1,220:9889887,21455198:234623 +k1,220:11242554,21455198:234623 +k1,220:12496262,21455198:234623 +k1,220:14735631,21455198:234623 +k1,220:15598089,21455198:234623 +k1,220:17035953,21455198:234623 +k1,220:18811327,21455198:234623 +k1,220:19460757,21455198:234587 +k1,220:21607721,21455198:234623 +k1,220:22861429,21455198:234623 +k1,220:25269226,21455198:234623 +k1,220:26155277,21455198:234623 +k1,220:27408985,21455198:234623 +k1,220:28058415,21455198:234587 +k1,220:30713283,21455198:234623 +k1,220:31563944,21455198:234623 +k1,220:32583029,21455198:0 +) +(1,220:6630773,22296686:25952256,513147,126483 +g1,220:8586367,22296686 +g1,220:9859731,22296686 +k1,220:32583029,22296686:21010842 +g1,220:32583029,22296686 +) +] +] +(1,216:6630773,24389249:25952256,513147,134348 +k1,215:9020778,24389249:251565 +k1,215:9885104,24389249:251564 +k1,215:11155754,24389249:251565 +k1,215:12479487,24389249:251564 +k1,215:13390344,24389249:251565 +k1,215:14660993,24389249:251564 +k1,215:16821622,24389249:251565 +k1,215:18785642,24389249:251564 +k1,215:21635054,24389249:251565 +k1,215:22502656,24389249:251564 +k1,215:25627975,24389249:251565 +k1,215:26530967,24389249:251564 +k1,215:28159443,24389249:251565 +k1,215:31563944,24389249:251564 +k1,215:32583029,24389249:0 +) +(1,216:6630773,25230737:25952256,513147,102891 +k1,215:8357693,25230737:230733 +k1,215:10886775,25230737:230734 +k1,215:11768936,25230737:230733 +k1,215:14108618,25230737:230733 +k1,215:15358436,25230737:230733 +k1,215:16572210,25230737:230734 +k1,215:17994388,25230737:230733 +k1,215:21248297,25230737:230733 +k1,215:21937128,25230737:230734 +k1,215:22780623,25230737:230733 +k1,215:24030441,25230737:230733 +k1,215:26855089,25230737:230733 +k1,215:28104908,25230737:230734 +k1,215:29989114,25230737:230733 +k1,215:32583029,25230737:0 +) +(1,216:6630773,26072225:25952256,505283,126483 +g1,215:8748896,26072225 +g1,215:9816477,26072225 +g1,215:11971956,26072225 +g1,215:13557271,26072225 +g1,215:14888307,26072225 +g1,215:15502379,26072225 +k1,216:32583029,26072225:13417187 +g1,216:32583029,26072225 +) +(1,224:6630773,26913713:25952256,513147,134348 +h1,223:6630773,26913713:983040,0,0 +k1,223:9656419,26913713:259371 +k1,223:10271650,26913713:259371 +k1,223:12362097,26913713:259371 +k1,223:13152966,26913713:259372 +k1,223:14704052,26913713:259371 +k1,223:15429384,26913713:259371 +k1,223:16459458,26913713:259371 +k1,223:18325772,26913713:259371 +k1,223:19116640,26913713:259371 +k1,223:22448340,26913713:259372 +k1,223:25131888,26913713:259371 +k1,223:29708116,26913713:259371 +k1,223:31563944,26913713:259371 +k1,223:32583029,26913713:0 +) +(1,224:6630773,27755201:25952256,513147,134348 +k1,223:9396720,27755201:209388 +k1,223:10265399,27755201:209387 +k1,223:11493872,27755201:209388 +k1,223:13483872,27755201:209387 +k1,223:16117437,27755201:209388 +k1,223:19183538,27755201:209387 +k1,223:20412011,27755201:209388 +k1,223:23122907,27755201:209387 +k1,223:23991587,27755201:209388 +k1,223:26799477,27755201:209387 +k1,223:29680768,27755201:209388 +k1,223:31923737,27755201:209387 +k1,223:32583029,27755201:0 +) +(1,224:6630773,28596689:25952256,513147,134348 +k1,223:9381374,28596689:238606 +k1,223:10676419,28596689:238605 +k1,223:13356896,28596689:238606 +k1,223:15312544,28596689:238605 +k1,223:18156861,28596689:238606 +k1,223:19387027,28596689:238606 +k1,223:21964612,28596689:238605 +k1,223:23751834,28596689:238606 +k1,223:25160912,28596689:238605 +k1,223:26929784,28596689:238606 +k1,223:28116040,28596689:238605 +k1,223:31193666,28596689:238606 +k1,223:32583029,28596689:0 +) +(1,224:6630773,29438177:25952256,513147,134348 +k1,223:9477525,29438177:292159 +k1,223:10961130,29438177:292160 +k1,223:13198398,29438177:292159 +k1,223:14103320,29438177:292160 +k1,223:16975631,29438177:292159 +k1,223:21573505,29438177:292159 +k1,223:23359231,29438177:292160 +k1,223:24337552,29438177:292159 +k1,223:28135888,29438177:292160 +k1,223:29087339,29438177:292159 +k1,223:32583029,29438177:0 +) +(1,224:6630773,30279665:25952256,513147,134348 +k1,223:9975932,30279665:280696 +k1,223:11065997,30279665:280695 +k1,223:13457608,30279665:280696 +k1,223:16467878,30279665:280695 +k1,223:17940019,30279665:280696 +k1,223:20131744,30279665:280695 +k1,223:23059439,30279665:280696 +k1,223:23999426,30279665:280695 +k1,223:25776309,30279665:280696 +k1,223:26781832,30279665:280695 +k1,223:27748690,30279665:280696 +k1,223:28680813,30279665:280695 +k1,223:31391584,30279665:280696 +k1,223:32583029,30279665:0 +) +(1,224:6630773,31121153:25952256,513147,134348 +k1,223:9505062,31121153:244985 +k1,223:13999402,31121153:244986 +k1,223:14714280,31121153:244985 +k1,223:18132519,31121153:244986 +k1,223:20903917,31121153:244985 +k1,223:22096554,31121153:244986 +k1,223:23324579,31121153:244985 +k1,223:25903302,31121153:244986 +k1,223:28609819,31121153:244985 +k1,223:30740276,31121153:244986 +k1,223:31516758,31121153:244985 +k1,223:32583029,31121153:0 +) +(1,224:6630773,31962641:25952256,513147,134348 +k1,223:8246563,31962641:240189 +k1,223:10463974,31962641:240190 +k1,223:11651814,31962641:240189 +k1,223:14472156,31962641:240190 +k1,223:19018060,31962641:240189 +k1,223:20330419,31962641:240190 +k1,223:21856424,31962641:240189 +k1,223:23044264,31962641:240189 +k1,223:25782686,31962641:240190 +k1,223:27650134,31962641:240189 +k1,223:28549616,31962641:240190 +k1,223:29808890,31962641:240189 +k1,223:32583029,31962641:0 +) +(1,224:6630773,32804129:25952256,513147,126483 +g1,223:7512887,32804129 +g1,223:11912974,32804129 +g1,223:12728241,32804129 +g1,223:13946555,32804129 +g1,223:16700377,32804129 +g1,223:17558898,32804129 +k1,224:32583029,32804129:13461097 +g1,224:32583029,32804129 +) +(1,226:6630773,33645617:25952256,513147,126483 +h1,225:6630773,33645617:983040,0,0 +k1,225:9032113,33645617:221613 +k1,225:11587462,33645617:221612 +k1,225:12476231,33645617:221613 +k1,225:15122020,33645617:221612 +k1,225:16628139,33645617:221613 +k1,225:18006461,33645617:221612 +k1,225:19650861,33645617:221613 +k1,225:22106595,33645617:221612 +k1,225:23397756,33645617:221613 +k1,225:26356807,33645617:221612 +k1,225:27194458,33645617:221613 +k1,225:27771930,33645617:221612 +k1,225:31069803,33645617:221613 +k1,225:32583029,33645617:0 +) +(1,226:6630773,34487105:25952256,513147,134348 +k1,225:8875802,34487105:184577 +k1,225:9821908,34487105:184578 +k1,225:10362345,34487105:184577 +k1,225:12419942,34487105:184578 +k1,225:14159033,34487105:184577 +k1,225:15791957,34487105:184578 +k1,225:17370485,34487105:184577 +k1,225:18325765,34487105:184577 +k1,225:20673031,34487105:184578 +k1,225:23594391,34487105:184577 +k1,225:25159813,34487105:184578 +k1,225:28154574,34487105:184577 +k1,225:29148522,34487105:184578 +k1,225:30934799,34487105:184577 +k1,226:32583029,34487105:0 +) +(1,226:6630773,35328593:25952256,505283,134348 +k1,225:7908692,35328593:227377 +k1,225:11190047,35328593:227377 +k1,225:14167315,35328593:227377 +k1,225:15888258,35328593:227377 +k1,225:16801797,35328593:227377 +k1,225:18955932,35328593:227377 +k1,225:20808602,35328593:227378 +k1,225:21907380,35328593:236324 +k1,225:22718682,35328593:227377 +k1,225:24137504,35328593:227377 +k1,225:28478575,35328593:227377 +k1,225:30538339,35328593:227377 +k1,225:31297213,35328593:227377 +k1,225:32583029,35328593:0 +) +(1,226:6630773,36170081:25952256,505283,134348 +k1,225:7185950,36170081:199317 +k1,225:9344137,36170081:199316 +k1,225:11877191,36170081:199317 +k1,225:13361014,36170081:199317 +k1,225:15008676,36170081:199316 +k1,225:16017363,36170081:199317 +k1,225:18143438,36170081:199317 +k1,225:19534199,36170081:199316 +k1,225:21018022,36170081:199317 +k1,225:22321621,36170081:199317 +k1,225:23268703,36170081:199316 +k1,225:24981246,36170081:199317 +k1,225:28001233,36170081:199317 +k1,225:30759075,36170081:199316 +k1,225:31314252,36170081:199317 +k1,225:32583029,36170081:0 +) +(1,226:6630773,37011569:25952256,513147,7863 +g1,225:9573994,37011569 +g1,225:10969910,37011569 +g1,225:12549983,37011569 +g1,225:15559396,37011569 +g1,225:16290122,37011569 +g1,225:17688005,37011569 +g1,225:18906319,37011569 +k1,226:32583029,37011569:11849566 +g1,226:32583029,37011569 +) +(1,228:6630773,37853057:25952256,505283,126484 +h1,227:6630773,37853057:983040,0,0 +k1,227:10349869,37853057:311879 +k1,227:11193244,37853057:311878 +k1,227:13391249,37853057:311879 +k1,227:15555174,37853057:311878 +k1,227:20172768,37853057:311879 +k1,227:21676091,37853057:311878 +k1,227:25311956,37853057:311879 +k1,227:28847550,37853057:311878 +k1,227:30607119,37853057:311879 +$1,227:30607119,37853057 +k1,227:32187847,37853057:0 +k1,228:32583029,37853057:0 +) +(1,228:6630773,38694545:25952256,513147,134349 +k1,227:7025955,38694545:0 +k1,227:7421137,38694545:0 +k1,227:8606683,38694545:0 +k1,227:9001865,38694545:0 +k1,227:11768139,38694545:0 +k1,227:12163321,38694545:0 +$1,227:13744049,38694545 +k1,227:13883313,38694545:139264 +k1,227:14970228,38694545:139264 +k1,227:15880195,38694545:139264 +k1,227:19313298,38694545:139264 +k1,227:23062285,38694545:139264 +k1,227:24392994,38694545:139264 +k1,227:27659636,38694545:139264 +k1,227:28990345,38694545:139264 +k1,227:32583029,38694545:0 +) +(1,228:6630773,39536033:25952256,505283,102891 +k1,227:10966283,39536033:324051 +k1,227:12640376,39536033:324051 +k1,227:14876767,39536033:324050 +(1,227:15083861,39536033:5146542,505283,11795 +) +k1,227:20728623,39536033:324550 +(1,227:20728623,39536033:5105910,505283,11795 +) +k1,227:26365678,39536033:324051 +k1,227:29359009,39536033:324050 +k1,227:30874505,39536033:324051 +k1,227:32583029,39536033:0 +) +(1,228:6630773,40377521:25952256,505283,134348 +k1,227:8114407,40377521:153253 +k1,227:8919089,40377521:153254 +k1,227:10164827,40377521:153253 +k1,227:12742258,40377521:153254 +k1,227:15355733,40377521:153253 +k1,227:17267972,40377521:153253 +k1,227:18037264,40377521:153254 +k1,227:20051084,40377521:153253 +k1,227:21471803,40377521:153253 +k1,227:23014420,40377521:153254 +k1,227:25722266,40377521:153253 +k1,227:26558405,40377521:153254 +k1,227:29738766,40377521:153253 +k1,227:32583029,40377521:0 +) +(1,228:6630773,41219009:25952256,513147,126483 +k1,227:7477915,41219009:160980 +k1,227:10063072,41219009:160980 +k1,227:10755550,41219009:160981 +k1,227:12802656,41219009:160980 +k1,227:14317610,41219009:160980 +k1,227:16330637,41219009:160980 +k1,227:20797332,41219009:160980 +k1,227:23189813,41219009:160980 +k1,227:25905387,41219009:160981 +k1,227:28031792,41219009:160980 +k1,227:31402070,41219009:160980 +k1,228:32583029,41219009:0 +) +(1,228:6630773,42060497:25952256,513147,126483 +k1,227:8439113,42060497:170595 +k1,227:9601268,42060497:170595 +k1,227:10838134,42060497:170595 +k1,227:14098752,42060497:170595 +k1,227:14885385,42060497:170595 +k1,227:16752707,42060497:170595 +k1,227:19009314,42060497:170596 +k1,227:20433613,42060497:170595 +k1,227:21736670,42060497:170595 +k1,227:23173421,42060497:170595 +k1,227:26048031,42060497:170595 +k1,227:27410071,42060497:170595 +k1,227:30874505,42060497:170595 +k1,227:32583029,42060497:0 +) +(1,228:6630773,42901985:25952256,505283,134349 +g1,227:8857031,42901985 +g1,227:9669022,42901985 +$1,227:9669022,42901985 +g1,227:11249750,42901985 +g1,227:11644932,42901985 +g1,227:12040114,42901985 +g1,227:12435296,42901985 +g1,227:13620842,42901985 +g1,227:14016024,42901985 +g1,227:16782298,42901985 +g1,227:17177480,42901985 +$1,227:18758208,42901985 +k1,228:32583029,42901985:13651151 +g1,228:32583029,42901985 +) +] +(1,232:32583029,45706769:0,0,0 +g1,232:32583029,45706769 +) +) +] +(1,232:6630773,47279633:25952256,0,0 +h1,232:6630773,47279633:25952256,0,0 +) +] +h1,232:4262630,4025873:0,0,0 +] +!15469 }19 !11 {20 -[1,236:4262630,47279633:28320399,43253760,0 -(1,236:4262630,4025873:0,0,0 -[1,236:-473657,4025873:25952256,0,0 -(1,236:-473657,-710414:25952256,0,0 -h1,236:-473657,-710414:0,0,0 -(1,236:-473657,-710414:0,0,0 -(1,236:-473657,-710414:0,0,0 -g1,236:-473657,-710414 -(1,236:-473657,-710414:65781,0,65781 -g1,236:-407876,-710414 -[1,236:-407876,-644633:0,0,0 +[1,242:4262630,47279633:28320399,43253760,0 +(1,242:4262630,4025873:0,0,0 +[1,242:-473657,4025873:25952256,0,0 +(1,242:-473657,-710414:25952256,0,0 +h1,242:-473657,-710414:0,0,0 +(1,242:-473657,-710414:0,0,0 +(1,242:-473657,-710414:0,0,0 +g1,242:-473657,-710414 +(1,242:-473657,-710414:65781,0,65781 +g1,242:-407876,-710414 +[1,242:-407876,-644633:0,0,0 ] ) -k1,236:-473657,-710414:-65781 +k1,242:-473657,-710414:-65781 ) ) -k1,236:25478599,-710414:25952256 -g1,236:25478599,-710414 +k1,242:25478599,-710414:25952256 +g1,242:25478599,-710414 ) ] ) -[1,236:6630773,47279633:25952256,43253760,0 -[1,236:6630773,4812305:25952256,786432,0 -(1,236:6630773,4812305:25952256,505283,126483 -(1,236:6630773,4812305:25952256,505283,126483 -g1,236:3078558,4812305 -[1,236:3078558,4812305:0,0,0 -(1,236:3078558,2439708:0,1703936,0 -k1,236:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,236:2537886,2439708:1179648,16384,0 +[1,242:6630773,47279633:25952256,43253760,0 +[1,242:6630773,4812305:25952256,786432,0 +(1,242:6630773,4812305:25952256,505283,126483 +(1,242:6630773,4812305:25952256,505283,126483 +g1,242:3078558,4812305 +[1,242:3078558,4812305:0,0,0 +(1,242:3078558,2439708:0,1703936,0 +k1,242:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,242:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,236:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,242:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,236:3078558,4812305:0,0,0 -(1,236:3078558,2439708:0,1703936,0 -g1,236:29030814,2439708 -g1,236:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,236:36151628,1915420:16384,1179648,0 +[1,242:3078558,4812305:0,0,0 +(1,242:3078558,2439708:0,1703936,0 +g1,242:29030814,2439708 +g1,242:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,242:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,236:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,242:37855564,2439708:1179648,16384,0 ) ) -k1,236:3078556,2439708:-34777008 +k1,242:3078556,2439708:-34777008 ) ] -[1,236:3078558,4812305:0,0,0 -(1,236:3078558,49800853:0,16384,2228224 -k1,236:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,236:2537886,49800853:1179648,16384,0 +[1,242:3078558,4812305:0,0,0 +(1,242:3078558,49800853:0,16384,2228224 +k1,242:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,242:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,236:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,242:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,236:3078558,4812305:0,0,0 -(1,236:3078558,49800853:0,16384,2228224 -g1,236:29030814,49800853 -g1,236:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,236:36151628,51504789:16384,1179648,0 +[1,242:3078558,4812305:0,0,0 +(1,242:3078558,49800853:0,16384,2228224 +g1,242:29030814,49800853 +g1,242:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,242:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,236:37855564,49800853:1179648,16384,0 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,242:37855564,49800853:1179648,16384,0 ) ) -k1,236:3078556,49800853:-34777008 -) -] -g1,236:6630773,4812305 -g1,236:6630773,4812305 -g1,236:10931900,4812305 -g1,236:12559159,4812305 -g1,236:15290044,4812305 -k1,236:32184570,4812305:16894526 -) -) -] -[1,236:6630773,45706769:25952256,40108032,0 -(1,236:6630773,45706769:25952256,40108032,0 -(1,236:6630773,45706769:0,0,0 -g1,236:6630773,45706769 -) -[1,236:6630773,45706769:25952256,40108032,0 -(1,223:6630773,6254097:25952256,32768,229376 -(1,223:6630773,6254097:0,32768,229376 -(1,223:6630773,6254097:5505024,32768,229376 -r1,223:12135797,6254097:5505024,262144,229376 -) -k1,223:6630773,6254097:-5505024 -) -(1,223:6630773,6254097:25952256,32768,0 -r1,223:32583029,6254097:25952256,32768,0 -) -) -(1,223:6630773,7858425:25952256,606339,151780 -(1,223:6630773,7858425:1974731,582746,14155 -g1,223:6630773,7858425 -g1,223:8605504,7858425 -) -g1,223:14129403,7858425 -g1,223:16067958,7858425 -k1,223:32583029,7858425:13276544 -g1,223:32583029,7858425 -) -(1,226:6630773,9093129:25952256,513147,126483 -k1,225:11020255,9093129:170274 -k1,225:12579893,9093129:170275 -k1,225:15304760,9093129:170274 -k1,225:16006532,9093129:170275 -k1,225:17960041,9093129:170274 -k1,225:19780513,9093129:170275 -k1,225:21393234,9093129:170274 -k1,225:21919369,9093129:170275 -k1,225:25774732,9093129:170274 -k1,225:29338461,9093129:170275 -k1,225:31451222,9093129:170274 -k1,225:32583029,9093129:0 -) -(1,226:6630773,9934617:25952256,513147,126483 -k1,225:9722689,9934617:265348 -k1,225:11906931,9934617:265348 -k1,225:16658218,9934617:265348 -k1,225:17455063,9934617:265348 -k1,225:21103379,9934617:265348 -k1,225:22936348,9934617:265348 -k1,225:26051201,9934617:265348 -k1,225:29022531,9934617:265348 -k1,225:29939307,9934617:265348 -k1,225:32583029,9934617:0 -) -(1,226:6630773,10776105:25952256,513147,134348 -k1,225:9201619,10776105:212205 -k1,225:10029863,10776105:212206 -k1,225:13941576,10776105:212206 -k1,225:17900474,10776105:212205 -k1,225:21202046,10776105:212205 -k1,225:23613640,10776105:212206 -k1,225:26113708,10776105:212206 -k1,225:27517358,10776105:212205 -k1,225:29645836,10776105:212205 -k1,225:31049487,10776105:212206 -k1,226:32583029,10776105:0 -) -(1,226:6630773,11617593:25952256,505283,134348 -k1,225:10160018,11617593:231473 -k1,225:12579738,11617593:231473 -k1,225:16978645,11617593:231473 -k1,225:18948133,11617593:231473 -k1,225:20488361,11617593:231474 -k1,225:21371262,11617593:231473 -k1,225:24858564,11617593:231473 -k1,225:25445897,11617593:231473 -k1,225:27066733,11617593:231473 -k1,225:29852799,11617593:231473 -k1,225:32583029,11617593:0 -) -(1,226:6630773,12459081:25952256,513147,126483 -k1,225:7805124,12459081:155266 -k1,225:9613862,12459081:155265 -k1,225:13536793,12459081:155266 -k1,225:15259680,12459081:155266 -k1,225:16434030,12459081:155265 -k1,225:18242769,12459081:155266 -k1,225:19787398,12459081:155266 -k1,225:20474160,12459081:155265 -k1,225:22935638,12459081:155266 -k1,225:24636243,12459081:155266 -k1,225:28453660,12459081:155265 -k1,225:29260354,12459081:155266 -k1,226:32583029,12459081:0 -) -(1,226:6630773,13300569:25952256,505283,134348 -k1,225:7751110,13300569:167444 -k1,225:9307918,13300569:167445 -k1,225:12029955,13300569:167444 -k1,225:13188960,13300569:167445 -k1,225:15211073,13300569:167444 -k1,225:16187887,13300569:167444 -k1,225:20000444,13300569:167445 -k1,225:22164115,13300569:167444 -k1,225:25726980,13300569:167445 -k1,225:27085869,13300569:167444 -k1,225:30407562,13300569:167445 -k1,225:31261168,13300569:167444 -k1,225:32583029,13300569:0 -) -(1,226:6630773,14142057:25952256,513147,134348 -k1,225:7483068,14142057:193003 -k1,225:8695157,14142057:193004 -k1,225:11058057,14142057:193003 -k1,225:12017177,14142057:193004 -k1,225:13229265,14142057:193003 -k1,225:16498528,14142057:193003 -k1,225:20181324,14142057:193004 -k1,225:21887553,14142057:193003 -k1,225:22731985,14142057:193004 -k1,225:25657184,14142057:193003 -k1,225:26869273,14142057:193004 -k1,225:29235450,14142057:193003 -k1,226:32583029,14142057:0 -k1,226:32583029,14142057:0 -) -(1,228:6630773,14983545:25952256,513147,126483 -h1,227:6630773,14983545:983040,0,0 -k1,227:8257397,14983545:155996 -k1,227:12484532,14983545:156039 -k1,227:16571420,14983545:156039 -k1,227:17675110,14983545:156039 -k1,227:22566781,14983545:156039 -k1,227:23254318,14983545:156040 -k1,227:23766217,14983545:156039 -k1,227:26273032,14983545:156039 -k1,227:28501975,14983545:156039 -k1,227:29317306,14983545:156039 -k1,227:31021961,14983545:156039 -k1,228:32583029,14983545:0 -) -(1,228:6630773,15825033:25952256,513147,126483 -k1,227:9002474,15825033:229984 -k1,227:10707674,15825033:229985 -k1,227:12447608,15825033:229984 -k1,227:13795637,15825033:229985 -k1,227:14834991,15825033:229984 -k1,227:16950447,15825033:229985 -k1,227:18743465,15825033:229984 -k1,227:20491918,15825033:229984 -k1,227:21077763,15825033:229985 -k1,227:23380651,15825033:229984 -k1,227:24142133,15825033:229985 -k1,227:27479834,15825033:229984 -k1,227:30193634,15825033:229985 -k1,227:31075046,15825033:229984 -k1,227:32583029,15825033:0 -) -(1,228:6630773,16666521:25952256,505283,134348 -k1,227:8580290,16666521:251479 -k1,227:11098660,16666521:251480 -k1,227:14839931,16666521:251479 -k1,227:17649936,16666521:251479 -k1,227:20028715,16666521:251480 -k1,227:21471639,16666521:251479 -k1,227:24436965,16666521:251480 -k1,227:26526074,16666521:251479 -k1,227:27393591,16666521:251479 -k1,227:28000931,16666521:251480 -k1,227:31202185,16666521:251479 -k1,227:32583029,16666521:0 -) -(1,228:6630773,17508009:25952256,513147,134348 -k1,227:9649198,17508009:208241 -k1,227:10540325,17508009:208242 -k1,227:14675483,17508009:208241 -k1,227:15496486,17508009:208241 -k1,227:16060587,17508009:208241 -k1,227:18862744,17508009:208242 -k1,227:20561274,17508009:208241 -k1,227:23356221,17508009:208241 -k1,227:27491379,17508009:208241 -k1,227:28312383,17508009:208242 -k1,227:29539709,17508009:208241 -k1,227:30162784,17508009:208232 -k1,227:32583029,17508009:0 -) -(1,228:6630773,18349497:25952256,505283,134348 -k1,227:8567221,18349497:201055 -k1,227:10278226,18349497:201055 -k1,227:11670726,18349497:201055 -k1,227:13582926,18349497:201055 -k1,227:14435409,18349497:201055 -k1,227:16974133,18349497:201055 -k1,227:20664980,18349497:201055 -k1,227:22057480,18349497:201055 -k1,227:24431709,18349497:201055 -k1,227:25248802,18349497:201055 -k1,227:25805717,18349497:201055 -k1,227:28002999,18349497:201055 -k1,227:28735551,18349497:201055 -k1,227:30543549,18349497:201055 -k1,227:32583029,18349497:0 -) -(1,228:6630773,19190985:25952256,505283,7863 -g1,227:8021447,19190985 -k1,228:32583030,19190985:21402748 -g1,228:32583030,19190985 -) -(1,230:6630773,20032473:25952256,513147,126483 -h1,229:6630773,20032473:983040,0,0 -k1,229:8300805,20032473:199404 -k1,229:10775619,20032473:199404 -k1,229:14905872,20032473:199404 -k1,229:15636773,20032473:199404 -k1,229:16487606,20032473:199405 -k1,229:17434776,20032473:199404 -k1,229:18942934,20032473:199404 -k1,229:19793766,20032473:199404 -k1,229:21974323,20032473:199404 -k1,229:23192812,20032473:199404 -k1,229:25550973,20032473:199405 -k1,229:26409669,20032473:199404 -k1,229:27628158,20032473:199404 -k1,229:28242405,20032473:199404 -k1,229:31931601,20032473:199404 -k1,229:32583029,20032473:0 -) -(1,230:6630773,20873961:25952256,513147,126483 -k1,229:7882292,20873961:232434 -k1,229:9996920,20873961:232434 -k1,229:10707112,20873961:232435 -k1,229:11958631,20873961:232434 -k1,229:14022141,20873961:232434 -k1,229:15975550,20873961:232434 -k1,229:17227069,20873961:232434 -k1,229:19618260,20873961:232435 -k1,229:20502122,20873961:232434 -k1,229:23437261,20873961:232434 -k1,229:25156707,20873961:232434 -k1,229:26823069,20873961:232434 -k1,229:28074589,20873961:232435 -k1,229:29687867,20873961:232434 -k1,229:31052763,20873961:232434 -k1,229:32583029,20873961:0 -) -(1,230:6630773,21715449:25952256,513147,126483 -k1,229:7525462,21715449:243261 -k1,229:9121387,21715449:243262 -k1,229:10689786,21715449:243261 -k1,229:12217554,21715449:243262 -k1,229:13479900,21715449:243261 -k1,229:15554238,21715449:243262 -k1,229:17608914,21715449:243261 -k1,229:18535061,21715449:243262 -k1,229:20935767,21715449:243261 -k1,229:21865190,21715449:243261 -k1,229:22464312,21715449:243262 -k1,229:24780477,21715449:243261 -k1,229:25683031,21715449:243262 -k1,229:26945377,21715449:243261 -k1,229:28578002,21715449:243262 -k1,229:31375856,21715449:243261 -k1,229:32583029,21715449:0 -) -(1,230:6630773,22556937:25952256,513147,134348 -k1,229:7884149,22556937:234291 -k1,229:9275150,22556937:234291 -k1,229:11997843,22556937:234291 -k1,229:13745360,22556937:234291 -k1,229:14927302,22556937:234291 -k1,229:18175594,22556937:234291 -k1,229:19428970,22556937:234291 -k1,229:22427570,22556937:234291 -k1,229:24835035,22556937:234291 -k1,229:26260771,22556937:234291 -k1,229:30436397,22556937:234291 -k1,229:32051532,22556937:234291 -k1,229:32583029,22556937:0 -) -(1,230:6630773,23398425:25952256,513147,134348 -k1,229:9302402,23398425:198956 -k1,229:13187104,23398425:198957 -k1,229:15050674,23398425:198956 -k1,229:15865669,23398425:198957 -k1,229:17083710,23398425:198956 -k1,229:20269142,23398425:198956 -k1,229:21127391,23398425:198957 -k1,229:22715710,23398425:198956 -k1,229:25642931,23398425:198957 -k1,229:26670917,23398425:198956 -k1,229:28504342,23398425:198957 -k1,229:29906539,23398425:198956 -k1,229:32583029,23398425:0 -) -(1,230:6630773,24239913:25952256,505283,134348 -k1,229:7541961,24239913:140485 -k1,229:10666957,24239913:140486 -k1,229:12014615,24239913:140485 -k1,229:15589842,24239913:140485 -k1,229:18355044,24239913:140485 -k1,229:19111568,24239913:140486 -k1,229:20800669,24239913:140485 -k1,229:21472651,24239913:140485 -k1,229:23480912,24239913:140485 -k1,229:25850933,24239913:140486 -k1,229:30410510,24239913:140485 -k1,229:32583029,24239913:0 -) -(1,230:6630773,25081401:25952256,505283,134348 -k1,229:8836538,25081401:231165 -k1,229:10264199,25081401:230974 -k1,229:11820312,25081401:230975 -k1,229:12582783,25081401:230974 -k1,229:14098264,25081401:230975 -k1,229:16852374,25081401:230974 -k1,229:18102434,25081401:230975 -k1,229:20164484,25081401:230974 -k1,229:21527921,25081401:230975 -k1,229:24379024,25081401:230974 -k1,229:24965859,25081401:230975 -k1,229:28399578,25081401:230975 -k1,229:29915058,25081401:230974 -k1,229:32583029,25081401:0 -) -(1,230:6630773,25922889:25952256,513147,134348 -k1,229:7817195,25922889:167337 -k1,229:9968307,25922889:167337 -k1,229:10794937,25922889:167338 -k1,229:11981359,25922889:167337 -k1,229:12563507,25922889:167305 -k1,229:14227031,25922889:167337 -k1,229:16081266,25922889:167338 -k1,229:17267688,25922889:167337 -k1,229:19608199,25922889:167337 -k1,229:20434828,25922889:167337 -k1,229:23125301,25922889:167337 -k1,229:24495879,25922889:167337 -k1,229:26159404,25922889:167338 -k1,229:27518186,25922889:167337 -k1,229:28817330,25922889:167337 -k1,229:32583029,25922889:0 -) -(1,230:6630773,26764377:25952256,505283,126483 -g1,229:8056181,26764377 -g1,229:10553758,26764377 -g1,229:11404415,26764377 -g1,229:15268417,26764377 -g1,229:16659091,26764377 -g1,229:19680300,26764377 -g1,229:20898614,26764377 -k1,230:32583029,26764377:8956151 -g1,230:32583029,26764377 -) -(1,232:6630773,27605865:25952256,513147,134348 -h1,231:6630773,27605865:983040,0,0 -k1,231:10827282,27605865:250586 -k1,231:11433727,27605865:250585 -k1,231:13930232,27605865:250586 -k1,231:16599752,27605865:250586 -k1,231:17509630,27605865:250586 -k1,231:21023253,27605865:250585 -k1,231:22767405,27605865:250586 -k1,231:25344519,27605865:250586 -k1,231:26989056,27605865:250586 -k1,231:27828154,27605865:250585 -k1,231:29946516,27605865:250586 -k1,231:32583029,27605865:0 -) -(1,232:6630773,28447353:25952256,513147,126483 -k1,231:9074247,28447353:244086 -k1,231:11293067,28447353:244220 -k1,231:12638158,28447353:244086 -k1,231:14392194,28447353:244086 -k1,231:17420249,28447353:244086 -k1,231:18611986,28447353:244086 -k1,231:19211932,28447353:244086 -k1,231:21572175,28447353:244085 -k1,231:24545836,28447353:244086 -k1,231:25248019,28447353:244086 -k1,231:26699278,28447353:244086 -k1,231:28895026,28447353:244086 -k1,231:31391584,28447353:244086 -k1,231:32583029,28447353:0 -) -(1,232:6630773,29288841:25952256,505283,134348 -k1,231:7934741,29288841:237697 -k1,231:11466933,29288841:237697 -k1,231:12466158,29288841:237697 -k1,231:13474558,29288841:237697 -k1,231:14973168,29288841:237697 -k1,231:17569506,29288841:237697 -k1,231:18595601,29288841:237697 -k1,231:19925783,29288841:237697 -k1,231:22115142,29288841:237697 -k1,231:24892359,29288841:237697 -k1,231:25617605,29288841:237658 -k1,231:27505499,29288841:237697 -k1,231:30297789,29288841:237697 -k1,232:32583029,29288841:0 -) -(1,232:6630773,30130329:25952256,505283,134348 -k1,231:8041435,30130329:221839 -k1,231:10509194,30130329:221840 -k1,231:12598809,30130329:221839 -k1,231:14659587,30130329:221839 -k1,231:16067629,30130329:221840 -k1,231:18090397,30130329:221839 -k1,231:20992659,30130329:221839 -k1,231:22608450,30130329:221840 -k1,231:23618687,30130329:221839 -k1,231:27346702,30130329:221839 -k1,231:28836008,30130329:221840 -k1,231:31482024,30130329:221839 -k1,231:32583029,30130329:0 -) -(1,232:6630773,30971817:25952256,513147,126483 -k1,231:8623957,30971817:249271 -k1,231:9892313,30971817:249271 -k1,231:11234069,30971817:249271 -k1,231:12142631,30971817:249270 -k1,231:13595143,30971817:249271 -k1,231:15230500,30971817:249271 -k1,231:16139063,30971817:249271 -k1,231:18714862,30971817:249271 -k1,231:20318107,30971817:249271 -k1,231:22135655,30971817:249271 -k1,231:23581612,30971817:249270 -k1,231:25432583,30971817:249271 -k1,231:27670216,30971817:249271 -k1,231:32051532,30971817:249271 -k1,231:32583029,30971817:0 -) -(1,232:6630773,31813305:25952256,513147,126483 -k1,231:8386756,31813305:207367 -k1,231:9695129,31813305:207368 -k1,231:11412446,31813305:207367 -k1,231:13487589,31813305:207367 -k1,231:14109791,31813305:207359 -k1,231:17472717,31813305:207367 -k1,231:20720956,31813305:207368 -k1,231:22938312,31813305:207367 -k1,231:25743526,31813305:207367 -k1,231:27331737,31813305:207367 -k1,231:28822300,31813305:207368 -k1,231:31478747,31813305:207367 -k1,231:32583029,31813305:0 -) -(1,232:6630773,32654793:25952256,513147,134348 -k1,231:9464500,32654793:213598 -k1,231:10697183,32654793:213598 -k1,231:13631836,32654793:213598 -k1,231:15841661,32654793:213598 -k1,231:16714551,32654793:213598 -k1,231:19451285,32654793:213598 -k1,231:20683968,32654793:213598 -k1,231:22728642,32654793:213598 -k1,231:23628402,32654793:213598 -k1,231:24612703,32654793:213598 -k1,231:26694718,32654793:213584 -k1,231:28065026,32654793:213598 -k1,231:31563944,32654793:213598 -k1,231:32583029,32654793:0 -) -(1,232:6630773,33496281:25952256,513147,126483 -k1,231:8295135,33496281:168175 -k1,231:9976537,33496281:168176 -k1,231:14138476,33496281:168175 -k1,231:15700603,33496281:168176 -k1,231:16887863,33496281:168175 -k1,231:19229212,33496281:168175 -k1,231:21407377,33496281:168176 -k1,231:22594637,33496281:168175 -k1,231:25498285,33496281:168175 -k1,231:26649501,33496281:168176 -k1,231:27503838,33496281:168175 -k1,231:28288052,33496281:168176 -k1,231:30489809,33496281:168175 -k1,232:32583029,33496281:0 -) -(1,232:6630773,34337769:25952256,513147,134348 -k1,231:8832901,34337769:246534 -k1,231:12014138,34337769:246535 -k1,231:13463913,34337769:246534 -k1,231:15629341,34337769:246534 -k1,231:18860386,34337769:246535 -k1,231:20553300,34337769:246534 -k1,231:22266531,34337769:246535 -k1,231:24962145,34337769:246534 -k1,231:26227764,34337769:246534 -k1,231:28396470,34337769:246535 -k1,231:30751953,34337769:246534 -k1,231:32583029,34337769:0 -) -(1,232:6630773,35179257:25952256,513147,134348 -k1,231:8330204,35179257:186205 -k1,231:9167837,35179257:186205 -k1,231:12086238,35179257:186205 -k1,231:13291527,35179257:186204 -k1,231:15473959,35179257:186205 -k1,231:16191661,35179257:186205 -k1,231:19702507,35179257:186205 -k1,231:20504750,35179257:186205 -k1,231:21710040,35179257:186205 -k1,231:23764663,35179257:186192 -k1,231:24933908,35179257:186205 -k1,231:25779405,35179257:186205 -k1,231:26984694,35179257:186204 -k1,231:29167126,35179257:186205 -k1,231:30544776,35179257:186205 -k1,231:31835263,35179257:186205 -k1,231:32583029,35179257:0 -) -(1,232:6630773,36020745:25952256,505283,126483 -k1,231:9833875,36020745:231044 -k1,231:11256364,36020745:231044 -k1,231:12605452,36020745:231044 -k1,231:14190470,36020745:231044 -k1,231:16222443,36020745:231044 -k1,231:17644932,36020745:231044 -k1,231:22101082,36020745:231044 -k1,231:24867714,36020745:231044 -k1,231:26479602,36020745:231044 -k1,231:28778962,36020745:231044 -k1,231:30294512,36020745:231044 -k1,231:32583029,36020745:0 -) -(1,232:6630773,36862233:25952256,513147,134348 -k1,231:8211174,36862233:250020 -k1,231:9769948,36862233:250020 -k1,231:12050928,36862233:250019 -k1,231:12952376,36862233:250020 -k1,231:14221481,36862233:250020 -k1,231:16630257,36862233:250020 -k1,231:17539568,36862233:250019 -k1,231:18808673,36862233:250020 -k1,231:21613286,36862233:250020 -k1,231:22479344,36862233:250020 -k1,231:24949724,36862233:250020 -k1,231:27920798,36862233:250019 -k1,231:29738439,36862233:250020 -k1,231:31274275,36862233:250020 -k1,231:32583029,36862233:0 -) -(1,232:6630773,37703721:25952256,513147,134348 -g1,231:8860963,37703721 -g1,231:9711620,37703721 -g1,231:10929934,37703721 -g1,231:12625350,37703721 -g1,231:14337805,37703721 -g1,231:15188462,37703721 -g1,231:18119887,37703721 -g1,231:19338201,37703721 -g1,231:21707327,37703721 -g1,231:22522594,37703721 -g1,231:25798083,37703721 -g1,231:29371105,37703721 -k1,232:32583029,37703721:857871 -g1,232:32583029,37703721 -) -(1,234:6630773,38545209:25952256,513147,134348 -h1,233:6630773,38545209:983040,0,0 -k1,233:10366025,38545209:223833 -k1,233:11249149,38545209:223832 -k1,233:13169709,38545209:223833 -k1,233:15381903,38545209:223832 -k1,233:20241753,38545209:223833 -k1,233:20880403,38545209:223807 -k1,233:21635733,38545209:223833 -k1,233:22630268,38545209:223832 -k1,233:24384367,38545209:223833 -k1,233:27450495,38545209:223832 -k1,233:28325756,38545209:223833 -k1,233:29642074,38545209:223833 -k1,233:31563944,38545209:223832 -k1,233:32583029,38545209:0 -) -(1,234:6630773,39386697:25952256,513147,134348 -k1,233:8192496,39386697:231997 -k1,233:9083786,39386697:231998 -k1,233:14051415,39386697:231997 -k1,233:14814909,39386697:231997 -k1,233:18429875,39386697:231998 -k1,233:20858639,39386697:231997 -k1,233:23078998,39386697:231997 -k1,233:24993961,39386697:231998 -k1,233:26245043,39386697:231997 -k1,233:29153530,39386697:231997 -k1,233:30044820,39386697:231998 -k1,233:31295902,39386697:231997 -k1,233:32583029,39386697:0 -) -(1,234:6630773,40228185:25952256,513147,126483 -k1,233:7513739,40228185:223674 -k1,233:12473045,40228185:223674 -k1,233:13312758,40228185:223675 -k1,233:16385937,40228185:223674 -k1,233:19315593,40228185:223674 -k1,233:20640272,40228185:223674 -k1,233:22373896,40228185:223674 -k1,233:25023714,40228185:223675 -k1,233:28376732,40228185:223674 -k1,233:29791851,40228185:223674 -k1,233:32583029,40228185:0 -) -(1,234:6630773,41069673:25952256,513147,134348 -k1,233:9815099,41069673:182121 -k1,233:11971922,41069673:182223 -k1,233:13425441,41069673:182121 -k1,233:14266855,41069673:182122 -k1,233:15468061,41069673:182121 -k1,233:18656974,41069673:182121 -k1,233:20561381,41069673:182121 -k1,233:22441540,41069673:182121 -k1,233:26128526,41069673:182121 -k1,233:26962075,41069673:182121 -k1,233:30400025,41069673:182121 -k1,234:32583029,41069673:0 -) -(1,234:6630773,41911161:25952256,505283,134348 -k1,233:9010988,41911161:180171 -k1,233:10961285,41911161:180170 -k1,233:11672953,41911161:180171 -k1,233:15751861,41911161:180171 -k1,233:16951117,41911161:180171 -k1,233:18520650,41911161:180170 -k1,233:21429085,41911161:180171 -k1,233:22024080,41911161:180152 -k1,233:24884674,41911161:180171 -k1,233:26458796,41911161:180171 -k1,233:28335693,41911161:180170 -k1,233:31001645,41911161:180171 -k1,233:32583029,41911161:0 -) -(1,234:6630773,42752649:25952256,513147,134348 -g1,233:7934284,42752649 -g1,233:9521566,42752649 -g1,233:10336833,42752649 -g1,233:13255806,42752649 -g1,233:14658276,42752649 -g1,233:16966454,42752649 -g1,233:17824975,42752649 -g1,233:19311331,42752649 -g1,233:20169852,42752649 -k1,234:32583029,42752649:7503875 -g1,234:32583029,42752649 -) -(1,236:6630773,43594137:25952256,513147,126483 -h1,235:6630773,43594137:983040,0,0 -k1,235:9232443,43594137:197809 -k1,235:12286966,43594137:197809 -k1,235:13476336,43594137:197810 -k1,235:15370872,43594137:197809 -k1,235:17150065,43594137:197809 -k1,235:18539319,43594137:197809 -k1,235:20067510,43594137:197810 -k1,235:22893313,43594137:197809 -k1,235:24648913,43594137:197809 -k1,235:25838283,43594137:197810 -k1,235:28892806,43594137:197809 -k1,235:30282060,43594137:197809 -k1,235:32583029,43594137:0 -) -(1,236:6630773,44435625:25952256,505283,134348 -k1,235:9129099,44435625:137719 -k1,235:9918246,44435625:137719 -k1,235:11670772,44435625:137719 -k1,235:13691340,44435625:137719 -k1,235:15915070,44435625:137719 -k1,235:17546355,44435625:137719 -k1,235:18370236,44435625:137719 -k1,235:19711197,44435625:137720 -k1,235:21202890,44435625:137719 -k1,235:22922648,44435625:137719 -k1,235:24230840,44435625:137719 -k1,235:25360119,44435625:137719 -k1,235:26828219,44435625:137719 -k1,235:29542158,44435625:137719 -k1,235:32583029,44435625:0 -) -(1,236:6630773,45277113:25952256,513147,173670 -k1,235:8206691,45277113:181967 -k1,235:8977171,45277113:181967 -k1,235:10998077,45277113:181967 -k1,235:12371489,45277113:181967 -[1,235:12500595,45277113:341312,473825,0 -(1,235:12500595,45139094:341312,335806,0 -) -] -(1,235:13068861,45450783:370934,473825,0 -) -k1,235:14144084,45277113:181967 -k1,235:15223894,45277113:181967 -k1,235:17234315,45277113:181967 -k1,235:18032320,45277113:181967 -k1,235:19233372,45277113:181967 -k1,235:20997378,45277113:181967 -k1,235:22170905,45277113:181967 -k1,235:25505809,45277113:181967 -k1,235:28275793,45277113:181967 -k1,235:29223876,45277113:181967 -k1,235:31591469,45277113:181967 -k1,235:32583029,45277113:0 -) -] -(1,236:32583029,45706769:0,0,0 -g1,236:32583029,45706769 -) -) -] -(1,236:6630773,47279633:25952256,0,0 -h1,236:6630773,47279633:25952256,0,0 -) -] -h1,236:4262630,4025873:0,0,0 -] -!24291 +k1,242:3078556,49800853:-34777008 +) +] +g1,242:6630773,4812305 +g1,242:6630773,4812305 +g1,242:10931900,4812305 +g1,242:12559159,4812305 +g1,242:15290044,4812305 +k1,242:32184570,4812305:16894526 +) +) +] +[1,242:6630773,45706769:25952256,40108032,0 +(1,242:6630773,45706769:25952256,40108032,0 +(1,242:6630773,45706769:0,0,0 +g1,242:6630773,45706769 +) +[1,242:6630773,45706769:25952256,40108032,0 +(1,229:6630773,6254097:25952256,32768,229376 +(1,229:6630773,6254097:0,32768,229376 +(1,229:6630773,6254097:5505024,32768,229376 +r1,229:12135797,6254097:5505024,262144,229376 +) +k1,229:6630773,6254097:-5505024 +) +(1,229:6630773,6254097:25952256,32768,0 +r1,229:32583029,6254097:25952256,32768,0 +) +) +(1,229:6630773,7858425:25952256,606339,151780 +(1,229:6630773,7858425:1974731,582746,14155 +g1,229:6630773,7858425 +g1,229:8605504,7858425 +) +g1,229:14129403,7858425 +g1,229:16067958,7858425 +k1,229:32583029,7858425:13276544 +g1,229:32583029,7858425 +) +(1,232:6630773,9093129:25952256,513147,126483 +k1,231:11020255,9093129:170274 +k1,231:12579893,9093129:170275 +k1,231:15304760,9093129:170274 +k1,231:16006532,9093129:170275 +k1,231:17960041,9093129:170274 +k1,231:19780513,9093129:170275 +k1,231:21393234,9093129:170274 +k1,231:21919369,9093129:170275 +k1,231:25774732,9093129:170274 +k1,231:29338461,9093129:170275 +k1,231:31451222,9093129:170274 +k1,231:32583029,9093129:0 +) +(1,232:6630773,9934617:25952256,513147,126483 +k1,231:9722689,9934617:265348 +k1,231:11906931,9934617:265348 +k1,231:16658218,9934617:265348 +k1,231:17455063,9934617:265348 +k1,231:21103379,9934617:265348 +k1,231:22936348,9934617:265348 +k1,231:26051201,9934617:265348 +k1,231:29022531,9934617:265348 +k1,231:29939307,9934617:265348 +k1,231:32583029,9934617:0 +) +(1,232:6630773,10776105:25952256,513147,134348 +k1,231:9201619,10776105:212205 +k1,231:10029863,10776105:212206 +k1,231:13941576,10776105:212206 +k1,231:17900474,10776105:212205 +k1,231:21202046,10776105:212205 +k1,231:23613640,10776105:212206 +k1,231:26113708,10776105:212206 +k1,231:27517358,10776105:212205 +k1,231:29645836,10776105:212205 +k1,231:31049487,10776105:212206 +k1,232:32583029,10776105:0 +) +(1,232:6630773,11617593:25952256,505283,134348 +k1,231:10160018,11617593:231473 +k1,231:12579738,11617593:231473 +k1,231:16978645,11617593:231473 +k1,231:18948133,11617593:231473 +k1,231:20488361,11617593:231474 +k1,231:21371262,11617593:231473 +k1,231:24858564,11617593:231473 +k1,231:25445897,11617593:231473 +k1,231:27066733,11617593:231473 +k1,231:29852799,11617593:231473 +k1,231:32583029,11617593:0 +) +(1,232:6630773,12459081:25952256,513147,126483 +k1,231:7919320,12459081:269462 +k1,231:9842255,12459081:269462 +k1,231:13879382,12459081:269462 +k1,231:15716465,12459081:269462 +k1,231:17005012,12459081:269462 +k1,231:18927948,12459081:269463 +k1,231:20586773,12459081:269462 +k1,231:21387732,12459081:269462 +k1,231:23963406,12459081:269462 +k1,231:25778207,12459081:269462 +k1,231:29709821,12459081:269462 +k1,231:30630711,12459081:269462 +k1,232:32583029,12459081:0 +) +(1,232:6630773,13300569:25952256,505283,134348 +k1,231:9218724,13300569:264700 +k1,231:10872787,13300569:264700 +k1,231:13692079,13300569:264699 +k1,231:14948339,13300569:264700 +k1,231:17067708,13300569:264700 +k1,231:18141778,13300569:264700 +k1,231:22051590,13300569:264700 +k1,231:24312516,13300569:264699 +k1,231:27972636,13300569:264700 +k1,231:29428781,13300569:264700 +k1,231:32583029,13300569:0 +) +(1,232:6630773,14142057:25952256,513147,134348 +k1,231:7598135,14142057:281200 +k1,231:9201196,14142057:281200 +k1,231:10141687,14142057:281199 +k1,231:11441972,14142057:281200 +k1,231:13893069,14142057:281200 +k1,231:14940385,14142057:281200 +k1,231:16240669,14142057:281199 +k1,231:19598129,14142057:281200 +k1,231:23369121,14142057:281200 +k1,231:25163547,14142057:281200 +k1,231:26096174,14142057:281199 +k1,231:29109570,14142057:281200 +k1,231:30409855,14142057:281200 +k1,231:32583029,14142057:0 +) +(1,232:6630773,14983545:25952256,505283,126483 +k1,232:32583028,14983545:22604676 +g1,232:32583028,14983545 +) +(1,234:6630773,15825033:25952256,513147,126483 +h1,233:6630773,15825033:983040,0,0 +k1,233:8257397,15825033:155996 +k1,233:12484532,15825033:156039 +k1,233:16571420,15825033:156039 +k1,233:17675110,15825033:156039 +k1,233:22566781,15825033:156039 +k1,233:23254318,15825033:156040 +k1,233:23766217,15825033:156039 +k1,233:26273032,15825033:156039 +k1,233:28501975,15825033:156039 +k1,233:29317306,15825033:156039 +k1,233:31021961,15825033:156039 +k1,234:32583029,15825033:0 +) +(1,234:6630773,16666521:25952256,513147,126483 +k1,233:9002474,16666521:229984 +k1,233:10707674,16666521:229985 +k1,233:12447608,16666521:229984 +k1,233:13795637,16666521:229985 +k1,233:14834991,16666521:229984 +k1,233:16950447,16666521:229985 +k1,233:18743465,16666521:229984 +k1,233:20491918,16666521:229984 +k1,233:21077763,16666521:229985 +k1,233:23380651,16666521:229984 +k1,233:24142133,16666521:229985 +k1,233:27479834,16666521:229984 +k1,233:30193634,16666521:229985 +k1,233:31075046,16666521:229984 +k1,233:32583029,16666521:0 +) +(1,234:6630773,17508009:25952256,505283,134348 +k1,233:8580290,17508009:251479 +k1,233:11098660,17508009:251480 +k1,233:14839931,17508009:251479 +k1,233:17649936,17508009:251479 +k1,233:20028715,17508009:251480 +k1,233:21471639,17508009:251479 +k1,233:24436965,17508009:251480 +k1,233:26526074,17508009:251479 +k1,233:27393591,17508009:251479 +k1,233:28000931,17508009:251480 +k1,233:31202185,17508009:251479 +k1,233:32583029,17508009:0 +) +(1,234:6630773,18349497:25952256,513147,134348 +k1,233:9649198,18349497:208241 +k1,233:10540325,18349497:208242 +k1,233:14675483,18349497:208241 +k1,233:15496486,18349497:208241 +k1,233:16060587,18349497:208241 +k1,233:18862744,18349497:208242 +k1,233:20561274,18349497:208241 +k1,233:23356221,18349497:208241 +k1,233:27491379,18349497:208241 +k1,233:28312383,18349497:208242 +k1,233:29539709,18349497:208241 +k1,233:30162784,18349497:208232 +k1,233:32583029,18349497:0 +) +(1,234:6630773,19190985:25952256,505283,134348 +k1,233:8567221,19190985:201055 +k1,233:10278226,19190985:201055 +k1,233:11670726,19190985:201055 +k1,233:13582926,19190985:201055 +k1,233:14435409,19190985:201055 +k1,233:16974133,19190985:201055 +k1,233:20664980,19190985:201055 +k1,233:22057480,19190985:201055 +k1,233:24431709,19190985:201055 +k1,233:25248802,19190985:201055 +k1,233:25805717,19190985:201055 +k1,233:28002999,19190985:201055 +k1,233:28735551,19190985:201055 +k1,233:30543549,19190985:201055 +k1,233:32583029,19190985:0 +) +(1,234:6630773,20032473:25952256,505283,7863 +g1,233:8021447,20032473 +k1,234:32583030,20032473:21402748 +g1,234:32583030,20032473 +) +(1,236:6630773,20873961:25952256,513147,126483 +h1,235:6630773,20873961:983040,0,0 +k1,235:8300805,20873961:199404 +k1,235:10775619,20873961:199404 +k1,235:14905872,20873961:199404 +k1,235:15636773,20873961:199404 +k1,235:16487606,20873961:199405 +k1,235:17434776,20873961:199404 +k1,235:18942934,20873961:199404 +k1,235:19793766,20873961:199404 +k1,235:21974323,20873961:199404 +k1,235:23192812,20873961:199404 +k1,235:25550973,20873961:199405 +k1,235:26409669,20873961:199404 +k1,235:27628158,20873961:199404 +k1,235:28242405,20873961:199404 +k1,235:31931601,20873961:199404 +k1,235:32583029,20873961:0 +) +(1,236:6630773,21715449:25952256,513147,126483 +k1,235:7882292,21715449:232434 +k1,235:9996920,21715449:232434 +k1,235:10707112,21715449:232435 +k1,235:11958631,21715449:232434 +k1,235:14022141,21715449:232434 +k1,235:15975550,21715449:232434 +k1,235:17227069,21715449:232434 +k1,235:19618260,21715449:232435 +k1,235:20502122,21715449:232434 +k1,235:23437261,21715449:232434 +k1,235:25156707,21715449:232434 +k1,235:26823069,21715449:232434 +k1,235:28074589,21715449:232435 +k1,235:29687867,21715449:232434 +k1,235:31052763,21715449:232434 +k1,235:32583029,21715449:0 +) +(1,236:6630773,22556937:25952256,513147,126483 +k1,235:7525462,22556937:243261 +k1,235:9121387,22556937:243262 +k1,235:10689786,22556937:243261 +k1,235:12217554,22556937:243262 +k1,235:13479900,22556937:243261 +k1,235:15554238,22556937:243262 +k1,235:17608914,22556937:243261 +k1,235:18535061,22556937:243262 +k1,235:20935767,22556937:243261 +k1,235:21865190,22556937:243261 +k1,235:22464312,22556937:243262 +k1,235:24780477,22556937:243261 +k1,235:25683031,22556937:243262 +k1,235:26945377,22556937:243261 +k1,235:28578002,22556937:243262 +k1,235:31375856,22556937:243261 +k1,235:32583029,22556937:0 +) +(1,236:6630773,23398425:25952256,513147,134348 +k1,235:7884149,23398425:234291 +k1,235:9275150,23398425:234291 +k1,235:11997843,23398425:234291 +k1,235:13745360,23398425:234291 +k1,235:14927302,23398425:234291 +k1,235:18175594,23398425:234291 +k1,235:19428970,23398425:234291 +k1,235:22427570,23398425:234291 +k1,235:24835035,23398425:234291 +k1,235:26260771,23398425:234291 +k1,235:30436397,23398425:234291 +k1,235:32051532,23398425:234291 +k1,235:32583029,23398425:0 +) +(1,236:6630773,24239913:25952256,513147,134348 +k1,235:9382356,24239913:278910 +k1,235:13347012,24239913:278911 +k1,235:15290536,24239913:278910 +k1,235:16185484,24239913:278910 +k1,235:17483480,24239913:278911 +k1,235:20748866,24239913:278910 +k1,235:21687068,24239913:278910 +k1,235:23355342,24239913:278911 +k1,235:26362516,24239913:278910 +k1,235:27470456,24239913:278910 +k1,235:29383835,24239913:278911 +k1,235:30865986,24239913:278910 +k1,236:32583029,24239913:0 +) +(1,236:6630773,25081401:25952256,505283,134348 +k1,235:8035507,25081401:232295 +k1,235:9038506,25081401:232296 +k1,235:12255311,25081401:232295 +k1,235:13694779,25081401:232295 +k1,235:17361816,25081401:232295 +k1,235:20218829,25081401:232296 +k1,235:21067162,25081401:232295 +k1,235:22848073,25081401:232295 +k1,235:23611865,25081401:232295 +k1,235:25711937,25081401:232296 +k1,235:28173767,25081401:232295 +k1,236:32583029,25081401:0 +) +(1,236:6630773,25922889:25952256,505283,134348 +(1,235:6837867,25922889:4027843,505283,11795 +) +k1,235:11499244,25922889:252770 +k1,235:12948382,25922889:252451 +k1,235:14525970,25922889:252450 +k1,235:15309918,25922889:252451 +k1,235:16846875,25922889:252451 +k1,235:19622462,25922889:252451 +k1,235:20893998,25922889:252451 +k1,235:22977525,25922889:252451 +k1,235:24362437,25922889:252450 +k1,235:27235017,25922889:252451 +k1,235:27843328,25922889:252451 +k1,235:31298523,25922889:252451 +k1,235:32583029,25922889:0 +) +(1,236:6630773,26764377:25952256,513147,134348 +k1,235:9539264,26764377:240520 +k1,235:10798868,26764377:240519 +k1,235:13023163,26764377:240520 +k1,235:13922975,26764377:240520 +k1,235:15182579,26764377:240519 +k1,235:15837901,26764377:240479 +k1,235:17574607,26764377:240519 +k1,235:19502024,26764377:240520 +k1,235:20761629,26764377:240520 +k1,235:23175323,26764377:240520 +k1,235:24075134,26764377:240519 +k1,235:26838790,26764377:240520 +k1,235:28282551,26764377:240520 +k1,235:30019257,26764377:240519 +k1,235:31451222,26764377:240520 +k1,235:32583029,26764377:0 +) +(1,236:6630773,27605865:25952256,505283,126483 +g1,235:10595701,27605865 +g1,235:12021109,27605865 +g1,235:14518686,27605865 +g1,235:15369343,27605865 +g1,235:19233345,27605865 +g1,235:20624019,27605865 +g1,235:23645228,27605865 +g1,235:24863542,27605865 +k1,236:32583029,27605865:4991223 +g1,236:32583029,27605865 +) +(1,238:6630773,28447353:25952256,513147,134348 +h1,237:6630773,28447353:983040,0,0 +k1,237:10827282,28447353:250586 +k1,237:11433727,28447353:250585 +k1,237:13930232,28447353:250586 +k1,237:16599752,28447353:250586 +k1,237:17509630,28447353:250586 +k1,237:21023253,28447353:250585 +k1,237:22767405,28447353:250586 +k1,237:25344519,28447353:250586 +k1,237:26989056,28447353:250586 +k1,237:27828154,28447353:250585 +k1,237:29946516,28447353:250586 +k1,237:32583029,28447353:0 +) +(1,238:6630773,29288841:25952256,513147,126483 +(1,237:6837867,29288841:3723756,505283,11795 +) +k1,237:11195503,29288841:253116 +k1,237:12549463,29288841:252955 +k1,237:14312369,29288841:252956 +k1,237:17349293,29288841:252955 +k1,237:18549900,29288841:252956 +k1,237:19158715,29288841:252955 +k1,237:21527828,29288841:252955 +k1,237:24510359,29288841:252956 +k1,237:25221411,29288841:252955 +k1,237:26681539,29288841:252955 +k1,237:28886157,29288841:252956 +k1,237:31391584,29288841:252955 +k1,237:32583029,29288841:0 +) +(1,238:6630773,30130329:25952256,505283,134348 +k1,237:7859677,30130329:162633 +k1,237:11316805,30130329:162633 +k1,237:12240966,30130329:162633 +k1,237:13174301,30130329:162632 +k1,237:14597847,30130329:162633 +k1,237:17119121,30130329:162633 +k1,237:18070152,30130329:162633 +k1,237:19325270,30130329:162633 +k1,237:21439565,30130329:162633 +k1,237:24141718,30130329:162633 +k1,237:24791902,30130329:162596 +k1,237:26604732,30130329:162633 +k1,237:29321958,30130329:162633 +k1,237:32583029,30130329:0 +) +(1,238:6630773,30971817:25952256,505283,134348 +k1,237:9059001,30971817:182309 +k1,237:11109086,30971817:182309 +k1,237:13130335,30971817:182310 +(1,237:13337429,30971817:2674524,505283,11795 +) +k1,237:16401356,30971817:182309 +k1,237:19264088,30971817:182309 +k1,237:20840348,30971817:182309 +k1,237:21811055,30971817:182309 +k1,237:25499540,30971817:182309 +k1,237:26949316,30971817:182310 +k1,237:29555802,30971817:182309 +k1,237:30839116,30971817:182309 +k1,237:32583029,30971817:0 +) +(1,238:6630773,31813305:25952256,513147,126483 +k1,237:7913079,31813305:263221 +k1,237:9268784,31813305:263220 +k1,237:10191297,31813305:263221 +k1,237:11657759,31813305:263221 +k1,237:13307065,31813305:263220 +k1,237:14229578,31813305:263221 +k1,237:16819327,31813305:263221 +k1,237:18436521,31813305:263220 +k1,237:20268019,31813305:263221 +k1,237:21727926,31813305:263220 +k1,237:23592847,31813305:263221 +k1,237:25844430,31813305:263221 +k1,237:30239695,31813305:263220 +k1,237:31034413,31813305:263221 +k1,237:32583029,31813305:0 +) +(1,238:6630773,32654793:25952256,513147,126483 +k1,237:7958480,32654793:226702 +k1,237:9695132,32654793:226702 +k1,237:11789610,32654793:226702 +k1,237:12431128,32654793:226675 +k1,237:15813389,32654793:226702 +k1,237:19080962,32654793:226702 +k1,237:21317653,32654793:226702 +k1,237:24142202,32654793:226702 +k1,237:25749748,32654793:226702 +k1,237:27259645,32654793:226702 +k1,237:29935427,32654793:226702 +k1,237:31266411,32654793:226702 +k1,238:32583029,32654793:0 +) +(1,238:6630773,33496281:25952256,513147,134348 +k1,237:8317578,33496281:170302 +k1,237:9506965,33496281:170302 +k1,237:12398322,33496281:170302 +k1,237:14564851,33496281:170302 +k1,237:15394445,33496281:170302 +k1,237:18087883,33496281:170302 +k1,237:19277270,33496281:170302 +k1,237:21278648,33496281:170302 +k1,237:22135112,33496281:170302 +k1,237:23076117,33496281:170302 +k1,237:25114821,33496281:170273 +k1,237:26441833,33496281:170302 +k1,237:29897455,33496281:170302 +k1,237:31086842,33496281:170302 +k1,237:32583029,33496281:0 +) +(1,238:6630773,34337769:25952256,513147,126483 +k1,237:8305654,34337769:161655 +k1,237:12461074,34337769:161656 +k1,237:14016680,34337769:161655 +k1,237:15197421,34337769:161656 +k1,237:17532250,34337769:161655 +k1,237:19703894,34337769:161655 +k1,237:20884635,34337769:161656 +k1,237:23781763,34337769:161655 +k1,237:24926459,34337769:161656 +k1,237:25774276,34337769:161655 +k1,237:26551970,34337769:161656 +k1,237:28747207,34337769:161655 +k1,237:32583029,34337769:0 +) +(1,238:6630773,35179257:25952256,513147,134348 +k1,237:9774043,35179257:208568 +k1,237:11185852,35179257:208568 +k1,237:13313315,35179257:208569 +k1,237:16506393,35179257:208568 +k1,237:18161341,35179257:208568 +k1,237:19836605,35179257:208568 +k1,237:22494253,35179257:208568 +k1,237:23721906,35179257:208568 +k1,237:25852646,35179257:208569 +k1,237:28170163,35179257:208568 +k1,237:30209807,35179257:208568 +k1,237:31931601,35179257:208568 +k1,237:32583029,35179257:0 +) +(1,238:6630773,36020745:25952256,513147,134348 +k1,237:9507763,36020745:144794 +k1,237:10671643,36020745:144795 +k1,237:12812664,36020745:144794 +k1,237:13488955,36020745:144794 +k1,237:16958391,36020745:144795 +k1,237:17719223,36020745:144794 +k1,237:18883102,36020745:144794 +k1,237:20896274,36020745:144741 +k1,237:22024108,36020745:144794 +k1,237:22828194,36020745:144794 +k1,237:23992074,36020745:144795 +k1,237:26133095,36020745:144794 +k1,237:27469334,36020745:144794 +k1,237:28718411,36020745:144795 +k1,237:29610971,36020745:144794 +k1,237:32583029,36020745:0 +) +(1,238:6630773,36862233:25952256,505283,134348 +k1,237:8061752,36862233:239534 +k1,237:9419330,36862233:239534 +k1,237:11012838,36862233:239534 +k1,237:13053301,36862233:239534 +k1,237:14484280,36862233:239534 +k1,237:18948920,36862233:239534 +k1,237:21724041,36862233:239533 +k1,237:23344419,36862233:239534 +k1,237:25652269,36862233:239534 +k1,237:27176309,36862233:239534 +k1,237:29704360,36862233:239534 +k1,237:31274275,36862233:239534 +k1,237:32583029,36862233:0 +) +(1,238:6630773,37703721:25952256,513147,134348 +k1,237:8908664,37703721:246930 +k1,237:9807022,37703721:246930 +k1,237:11073038,37703721:246931 +k1,237:13478724,37703721:246930 +k1,237:14384946,37703721:246930 +k1,237:15650961,37703721:246930 +k1,237:18452485,37703721:246931 +k1,237:19315453,37703721:246930 +k1,237:21782743,37703721:246930 +k1,237:24750728,37703721:246930 +k1,237:26565279,37703721:246930 +k1,237:28098026,37703721:246931 +k1,237:29653710,37703721:246930 +k1,237:31931601,37703721:246930 +k1,237:32583029,37703721:0 +) +(1,238:6630773,38545209:25952256,513147,134348 +g1,237:7849087,38545209 +g1,237:9544503,38545209 +g1,237:11256958,38545209 +g1,237:12107615,38545209 +g1,237:15039040,38545209 +g1,237:16257354,38545209 +g1,237:18626480,38545209 +g1,237:19441747,38545209 +g1,237:22717236,38545209 +g1,237:26290258,38545209 +k1,238:32583029,38545209:3938718 +g1,238:32583029,38545209 +) +(1,240:6630773,39386697:25952256,513147,134348 +h1,239:6630773,39386697:983040,0,0 +k1,239:10366025,39386697:223833 +k1,239:11249149,39386697:223832 +k1,239:13169709,39386697:223833 +k1,239:15381903,39386697:223832 +k1,239:20241753,39386697:223833 +k1,239:20880403,39386697:223807 +k1,239:21635733,39386697:223833 +k1,239:22630268,39386697:223832 +k1,239:24384367,39386697:223833 +k1,239:27450495,39386697:223832 +k1,239:28325756,39386697:223833 +k1,239:29642074,39386697:223833 +k1,239:31563944,39386697:223832 +k1,239:32583029,39386697:0 +) +(1,240:6630773,40228185:25952256,513147,134348 +k1,239:8192496,40228185:231997 +k1,239:9083786,40228185:231998 +k1,239:14051415,40228185:231997 +k1,239:14814909,40228185:231997 +k1,239:18429875,40228185:231998 +k1,239:20858639,40228185:231997 +k1,239:23078998,40228185:231997 +k1,239:24993961,40228185:231998 +k1,239:26245043,40228185:231997 +k1,239:29153530,40228185:231997 +k1,239:30044820,40228185:231998 +k1,239:31295902,40228185:231997 +k1,239:32583029,40228185:0 +) +(1,240:6630773,41069673:25952256,513147,126483 +k1,239:7513739,41069673:223674 +k1,239:12473045,41069673:223674 +k1,239:13312758,41069673:223675 +k1,239:16385937,41069673:223674 +k1,239:19315593,41069673:223674 +k1,239:20640272,41069673:223674 +k1,239:22373896,41069673:223674 +k1,239:25023714,41069673:223675 +k1,239:28376732,41069673:223674 +k1,239:29791851,41069673:223674 +k1,239:32583029,41069673:0 +) +(1,240:6630773,41911161:25952256,513147,134348 +(1,239:6837867,41911161:4505600,505283,11795 +) +k1,239:11912966,41911161:188735 +k1,239:13373036,41911161:188672 +k1,239:14220999,41911161:188671 +k1,239:15428756,41911161:188672 +k1,239:18624220,41911161:188672 +k1,239:20535178,41911161:188672 +k1,239:22421888,41911161:188672 +k1,239:26115424,41911161:188671 +k1,239:26955524,41911161:188672 +k1,239:30400025,41911161:188672 +k1,240:32583029,41911161:0 +) +(1,240:6630773,42752649:25952256,505283,134348 +k1,239:9010988,42752649:180171 +k1,239:10961285,42752649:180170 +k1,239:11672953,42752649:180171 +k1,239:15751861,42752649:180171 +k1,239:16951117,42752649:180171 +k1,239:18520650,42752649:180170 +k1,239:21429085,42752649:180171 +k1,239:22024080,42752649:180152 +k1,239:24884674,42752649:180171 +k1,239:26458796,42752649:180171 +k1,239:28335693,42752649:180170 +k1,239:31001645,42752649:180171 +k1,239:32583029,42752649:0 +) +(1,240:6630773,43594137:25952256,513147,134348 +g1,239:7934284,43594137 +g1,239:9521566,43594137 +g1,239:10336833,43594137 +g1,239:13255806,43594137 +g1,239:14658276,43594137 +g1,239:16966454,43594137 +g1,239:17824975,43594137 +g1,239:19311331,43594137 +g1,239:20169852,43594137 +k1,240:32583029,43594137:7503875 +g1,240:32583029,43594137 +) +(1,242:6630773,44435625:25952256,513147,126483 +h1,241:6630773,44435625:983040,0,0 +k1,241:9232443,44435625:197809 +k1,241:12286966,44435625:197809 +k1,241:13476336,44435625:197810 +k1,241:15370872,44435625:197809 +k1,241:17150065,44435625:197809 +k1,241:18539319,44435625:197809 +k1,241:20067510,44435625:197810 +k1,241:22893313,44435625:197809 +k1,241:24648913,44435625:197809 +k1,241:25838283,44435625:197810 +k1,241:28892806,44435625:197809 +k1,241:30282060,44435625:197809 +k1,241:32583029,44435625:0 +) +(1,242:6630773,45277113:25952256,505283,134348 +k1,241:9129099,45277113:137719 +k1,241:9918246,45277113:137719 +k1,241:11670772,45277113:137719 +k1,241:13691340,45277113:137719 +k1,241:15915070,45277113:137719 +k1,241:17546355,45277113:137719 +k1,241:18370236,45277113:137719 +k1,241:19711197,45277113:137720 +k1,241:21202890,45277113:137719 +k1,241:22922648,45277113:137719 +k1,241:24230840,45277113:137719 +k1,241:25360119,45277113:137719 +k1,241:26828219,45277113:137719 +k1,241:29542158,45277113:137719 +k1,241:32583029,45277113:0 +) +] +(1,242:32583029,45706769:0,0,0 +g1,242:32583029,45706769 +) +) +] +(1,242:6630773,47279633:25952256,0,0 +h1,242:6630773,47279633:25952256,0,0 +) +] +h1,242:4262630,4025873:0,0,0 +] +!23767 }20 -Input:126:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!96 +!11 {21 -[1,251:4262630,47279633:28320399,43253760,0 -(1,251:4262630,4025873:0,0,0 -[1,251:-473657,4025873:25952256,0,0 -(1,251:-473657,-710414:25952256,0,0 -h1,251:-473657,-710414:0,0,0 -(1,251:-473657,-710414:0,0,0 -(1,251:-473657,-710414:0,0,0 -g1,251:-473657,-710414 -(1,251:-473657,-710414:65781,0,65781 -g1,251:-407876,-710414 -[1,251:-407876,-644633:0,0,0 +[1,252:4262630,47279633:28320399,43253760,0 +(1,252:4262630,4025873:0,0,0 +[1,252:-473657,4025873:25952256,0,0 +(1,252:-473657,-710414:25952256,0,0 +h1,252:-473657,-710414:0,0,0 +(1,252:-473657,-710414:0,0,0 +(1,252:-473657,-710414:0,0,0 +g1,252:-473657,-710414 +(1,252:-473657,-710414:65781,0,65781 +g1,252:-407876,-710414 +[1,252:-407876,-644633:0,0,0 ] ) -k1,251:-473657,-710414:-65781 +k1,252:-473657,-710414:-65781 ) ) -k1,251:25478599,-710414:25952256 -g1,251:25478599,-710414 +k1,252:25478599,-710414:25952256 +g1,252:25478599,-710414 ) ] ) -[1,251:6630773,47279633:25952256,43253760,0 -[1,251:6630773,4812305:25952256,786432,0 -(1,251:6630773,4812305:25952256,505283,134348 -(1,251:6630773,4812305:25952256,505283,134348 -g1,251:3078558,4812305 -[1,251:3078558,4812305:0,0,0 -(1,251:3078558,2439708:0,1703936,0 -k1,251:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,251: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,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,252:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,251:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,252:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,251:3078558,4812305:0,0,0 -(1,251:3078558,2439708:0,1703936,0 -g1,251:29030814,2439708 -g1,251:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,251: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,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,252:36151628,1915420:16384,1179648,0 +) +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 +) +] ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,252:37855564,2439708:1179648,16384,0 +) +) +k1,252:3078556,2439708:-34777008 ) ] +[1,252:3078558,4812305:0,0,0 +(1,252:3078558,49800853:0,16384,2228224 +k1,252:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,252:2537886,49800853:1179648,16384,0 +) +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,252:3078558,51504789:16384,1179648,0 +) +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,251:37855564,2439708:1179648,16384,0 +] ) ) -k1,251:3078556,2439708:-34777008 ) ] -[1,251:3078558,4812305:0,0,0 -(1,251:3078558,49800853:0,16384,2228224 -k1,251:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,251:2537886,49800853:1179648,16384,0 +[1,252:3078558,4812305:0,0,0 +(1,252:3078558,49800853:0,16384,2228224 +g1,252:29030814,49800853 +g1,252:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,252:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,251:3078558,51504789:16384,1179648,0 +] ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 -) -] -) -) -) -] -[1,251:3078558,4812305:0,0,0 -(1,251:3078558,49800853:0,16384,2228224 -g1,251:29030814,49800853 -g1,251:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,251:36151628,51504789:16384,1179648,0 -) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 -) -] -) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,251:37855564,49800853:1179648,16384,0 -) -) -k1,251:3078556,49800853:-34777008 -) -] -g1,251:6630773,4812305 -k1,251:22047465,4812305:14619774 -g1,251:22869941,4812305 -g1,251:24054831,4812305 -g1,251:27195316,4812305 -g1,251:28604995,4812305 -g1,251:29789885,4812305 -) -) -] -[1,251:6630773,45706769:25952256,40108032,0 -(1,251:6630773,45706769:25952256,40108032,0 -(1,251:6630773,45706769:0,0,0 -g1,251:6630773,45706769 -) -[1,251:6630773,45706769:25952256,40108032,0 -(1,236:6630773,6254097:25952256,513147,134348 -k1,235:10010576,6254097:226866 -k1,235:10998970,6254097:226866 -k1,235:11640651,6254097:226838 -k1,235:13058962,6254097:226866 -k1,235:16044238,6254097:226866 -k1,235:20761631,6254097:226866 -k1,235:23059435,6254097:226866 -k1,235:24233952,6254097:226866 -k1,235:25479903,6254097:226866 -k1,235:27892395,6254097:226866 -k1,235:28735299,6254097:226866 -k1,235:30165406,6254097:226866 -k1,235:32583029,6254097:0 -) -(1,236:6630773,7095585:25952256,513147,134348 -k1,235:8107855,7095585:192576 -k1,235:9775645,7095585:192575 -k1,235:11478171,7095585:192576 -k1,235:14603482,7095585:192575 -k1,235:17634422,7095585:192576 -k1,235:19394618,7095585:192575 -k1,235:20606279,7095585:192576 -k1,235:23875114,7095585:192575 -k1,235:26303123,7095585:192576 -k1,235:27877852,7095585:192575 -k1,235:29046259,7095585:192576 -k1,235:29451819,7095585:192568 -k1,235:31379788,7095585:192576 -k1,235:32583029,7095585:0 -) -(1,236:6630773,7937073:25952256,513147,126483 -k1,235:10139284,7937073:196977 -k1,235:11772154,7937073:196976 -k1,235:14498821,7937073:196977 -k1,235:14908787,7937073:196974 -k1,235:16654380,7937073:196977 -k1,235:17502784,7937073:196976 -k1,235:19415494,7937073:196977 -k1,235:20993314,7937073:196976 -k1,235:22474797,7937073:196977 -k1,235:24373089,7937073:196977 -k1,235:25428587,7937073:196976 -k1,235:26284856,7937073:196977 -k1,235:27978019,7937073:196976 -k1,235:28861158,7937073:196977 -k1,235:30228607,7937073:196976 -k1,235:31558046,7937073:196977 -k1,235:32583029,7937073:0 -) -(1,236:6630773,8778561:25952256,505283,126483 -k1,235:9369944,8778561:215380 -k1,235:11033671,8778561:215381 -k1,235:13709273,8778561:215380 -k1,235:15705266,8778561:215380 -k1,235:16548482,8778561:215381 -k1,235:19603537,8778561:215380 -k1,235:20031893,8778561:215364 -k1,235:21795889,8778561:215380 -k1,235:22662698,8778561:215381 -k1,235:24593811,8778561:215380 -k1,235:26190035,8778561:215380 -k1,235:27689921,8778561:215380 -k1,235:28924387,8778561:215381 -k1,235:31298523,8778561:215380 -k1,235:32583029,8778561:0 -) -(1,236:6630773,9620049:25952256,513147,134348 -k1,235:7962346,9620049:161100 -k1,235:9255909,9620049:161101 -k1,235:10441992,9620049:161100 -k1,235:12471524,9620049:161101 -k1,235:14333939,9620049:161100 -k1,235:15663547,9620049:161101 -k1,235:16507532,9620049:161100 -k1,235:18639300,9620049:161100 -k1,235:19467557,9620049:161101 -k1,235:20043462,9620049:161062 -k1,235:23046859,9620049:161101 -k1,235:24704146,9620049:161100 -k1,235:25396744,9620049:161101 -k1,235:27782791,9620049:161100 -k1,235:29492507,9620049:161100 -k1,235:30068413,9620049:161063 -k1,235:32583029,9620049:0 -) -(1,236:6630773,10461537:25952256,513147,134348 -k1,235:11012766,10461537:188344 -k1,235:11659208,10461537:188345 -k1,235:13568527,10461537:188344 -k1,235:14112731,10461537:188344 -k1,235:15157631,10461537:188344 -k1,235:16005268,10461537:188345 -k1,235:17790069,10461537:188344 -k1,235:18926064,10461537:188344 -k1,235:20081719,10461537:188344 -k1,235:20956226,10461537:188345 -k1,235:23443573,10461537:188344 -k1,235:24318079,10461537:188344 -k1,235:24719405,10461537:188334 -k1,235:26012031,10461537:188344 -k1,235:27429175,10461537:188344 -k1,235:29833947,10461537:188344 -k1,235:30437124,10461537:188334 -k1,235:31816913,10461537:188344 -k1,235:32583029,10461537:0 -) -(1,236:6630773,11303025:25952256,505283,134348 -k1,235:7871588,11303025:221730 -k1,235:11003772,11303025:221730 -k1,235:12738728,11303025:221730 -k1,235:13611886,11303025:221730 -k1,235:15342255,11303025:221730 -k1,235:17316418,11303025:221730 -k1,235:20045555,11303025:221730 -k1,235:21458731,11303025:221731 -k1,235:23322793,11303025:221730 -k1,235:24563608,11303025:221730 -k1,235:26367377,11303025:221730 -k1,235:28464747,11303025:221730 -k1,235:29337905,11303025:221730 -k1,235:31067618,11303025:221730 -k1,235:31747445,11303025:221730 -k1,235:32583029,11303025:0 -) -(1,236:6630773,12144513:25952256,513147,7863 -g1,235:7481430,12144513 -g1,235:9061503,12144513 -g1,235:10452177,12144513 -g1,235:11899212,12144513 -g1,235:12757733,12144513 -k1,236:32583028,12144513:17714380 -g1,236:32583028,12144513 -) -(1,239:6630773,12986001:25952256,513147,134348 -h1,237:6630773,12986001:983040,0,0 -k1,237:10869037,12986001:292341 -k1,237:12180463,12986001:292341 -k1,237:13565289,12986001:292341 -k1,237:14516922,12986001:292341 -k1,237:16505990,12986001:292341 -k1,237:18379715,12986001:292341 -k1,237:19203552,12986001:292340 -k1,237:22878861,12986001:292341 -k1,237:24551390,12986001:292341 -k1,237:25835291,12986001:292341 -k1,237:28493482,12986001:292341 -k1,237:29804908,12986001:292341 -k1,237:31923737,12986001:292341 -k1,237:32583029,12986001:0 -) -(1,239:6630773,13827489:25952256,505283,102891 -k1,237:8044124,13827489:210110 -k1,237:9836273,13827489:210110 -k1,237:11237828,13827489:210110 -k1,237:12726545,13827489:210110 -k1,237:16026678,13827489:210110 -k1,237:16852826,13827489:210110 -k1,237:18764906,13827489:210110 -k1,237:20887357,13827489:210110 -k1,237:24099672,13827489:210110 -k1,237:26077331,13827489:210153 -k1,237:27266549,13827489:210110 -k1,237:29451324,13827489:210175 -k1,237:30884991,13827489:210110 -k1,237:32583029,13827489:0 -) -(1,239:6630773,14668977:25952256,513147,134348 -k1,237:9184121,14668977:295633 -k1,237:11149611,14668977:295633 -k1,237:13180637,14668977:295633 -k1,237:13832130,14668977:295633 -k1,237:17408495,14668977:295633 -k1,237:19204901,14668977:295632 -k1,237:20448185,14668977:295633 -k1,237:24171351,14668977:295633 -k1,237:25658429,14668977:295633 -k1,237:29806924,14668977:295633 -k1,237:32583029,14668977:0 -) -(1,239:6630773,15510465:25952256,505283,134348 -k1,237:9663123,15510465:174325 -k1,237:12348789,15510465:174326 -k1,237:14765101,15510465:174325 -k1,237:16130872,15510465:174326 -k1,237:18492789,15510465:174325 -k1,237:20869125,15510465:174326 -k1,237:25106027,15510465:174325 -k1,237:25896391,15510465:174326 -k1,237:29388148,15510465:174325 -k1,237:31260512,15510465:174326 -k1,239:32583029,15510465:0 -) -(1,239:6630773,16351953:25952256,513147,126483 -k1,237:8186505,16351953:193238 -k1,237:10098097,16351953:193238 -k1,237:11645308,16351953:193237 -k1,237:13621781,16351953:193238 -k1,237:15208970,16351953:193238 -k1,237:18796318,16351953:193238 -k1,237:19937206,16351953:193237 -k1,237:22854776,16351953:193238 -k1,237:23261000,16351953:193232 -k1,237:24929453,16351953:193238 -k1,237:26637228,16351953:193238 -k1,237:27481893,16351953:193237 -k1,237:28422897,16351953:193238 -k1,237:29302297,16351953:193238 -k1,237:32583029,16351953:0 -) -(1,239:6630773,17193441:25952256,505283,134348 -k1,237:7564170,17193441:247235 -k1,237:10441364,17193441:247234 -k1,237:14313395,17193441:247235 -k1,237:15579714,17193441:247234 -k1,237:17709798,17193441:247235 -k1,237:19539071,17193441:247234 -k1,237:20402344,17193441:247235 -k1,237:21852819,17193441:247234 -k1,237:24598286,17193441:247235 -k1,237:26239471,17193441:247234 -k1,237:27862307,17193441:247235 -k1,237:29825929,17193441:247234 -k1,237:32583029,17193441:0 -) -(1,239:6630773,18034929:25952256,513147,126483 -g1,237:10110079,18034929 -g1,237:11876929,18034929 -g1,237:13095243,18034929 -g1,237:15015447,18034929 -g1,237:16889121,18034929 -k1,239:32583029,18034929:15693908 -g1,239:32583029,18034929 -) -(1,240:6630773,20842497:25952256,32768,229376 -(1,240:6630773,20842497:0,32768,229376 -(1,240:6630773,20842497:5505024,32768,229376 -r1,240:12135797,20842497:5505024,262144,229376 -) -k1,240:6630773,20842497:-5505024 -) -(1,240:6630773,20842497:25952256,32768,0 -r1,240:32583029,20842497:25952256,32768,0 -) -) -(1,240:6630773,22446825:25952256,615776,161218 -(1,240:6630773,22446825:1974731,575668,0 -g1,240:6630773,22446825 -g1,240:8605504,22446825 -) -g1,240:11833808,22446825 -g1,240:16051443,22446825 -k1,240:32583029,22446825:11827150 -g1,240:32583029,22446825 -) -(1,243:6630773,23681529:25952256,513147,134348 -k1,242:8628512,23681529:214504 -k1,242:11903547,23681529:214504 -k1,242:13065703,23681529:214505 -k1,242:16041894,23681529:214504 -k1,242:18325370,23681529:214504 -k1,242:19487525,23681529:214504 -k1,242:21717917,23681529:214505 -k1,242:22615306,23681529:214504 -k1,242:25232360,23681529:214504 -k1,242:27532875,23681529:214504 -k1,242:28917853,23681529:214505 -k1,242:30264819,23681529:214504 -k1,242:31227089,23681529:214504 -k1,243:32583029,23681529:0 -) -(1,243:6630773,24523017:25952256,513147,134348 -k1,242:9263909,24523017:245659 -k1,242:10903519,24523017:245659 -k1,242:13911521,24523017:245659 -k1,242:15725457,24523017:245659 -k1,242:16630408,24523017:245659 -k1,242:20850826,24523017:245659 -k1,242:22115569,24523017:245658 -k1,242:24014701,24523017:245659 -k1,242:26099956,24523017:245659 -k1,242:27243458,24523017:245659 -k1,242:28555388,24523017:245659 -k1,242:30482701,24523017:245659 -k1,242:31931601,24523017:245659 -k1,242:32583029,24523017:0 -) -(1,243:6630773,25364505:25952256,505283,126483 -k1,242:10280285,25364505:153822 -k1,242:11778251,25364505:153823 -k1,242:12548111,25364505:153822 -k1,242:14303633,25364505:153822 -k1,242:16154837,25364505:153822 -k1,242:16766757,25364505:153823 -k1,242:18053041,25364505:153822 -k1,242:19273134,25364505:153822 -k1,242:21552290,25364505:153823 -k1,242:22392274,25364505:153822 -k1,242:24297873,25364505:153822 -k1,242:28845884,25364505:153822 -k1,242:30103989,25364505:153823 -k1,242:31005577,25364505:153822 -k1,242:32583029,25364505:0 -) -(1,243:6630773,26205993:25952256,513147,134348 -k1,242:7464250,26205993:217439 -k1,242:8270202,26205993:217439 -k1,242:9173803,26205993:217439 -k1,242:10007280,26205993:217439 -k1,242:11356526,26205993:217439 -k1,242:14589932,26205993:217439 -k1,242:15423409,26205993:217439 -k1,242:17872349,26205993:217439 -k1,242:20852131,26205993:217439 -k1,242:22811517,26205993:217439 -k1,242:24227610,26205993:217439 -k1,242:27459050,26205993:217439 -k1,242:28695574,26205993:217439 -k1,242:30566486,26205993:217439 -k1,242:32583029,26205993:0 -) -(1,243:6630773,27047481:25952256,513147,126483 -k1,242:8012423,27047481:184963 -k1,242:10959728,27047481:184962 -k1,242:14806843,27047481:184963 -k1,242:16328739,27047481:184962 -k1,242:18256960,27047481:184963 -k1,242:20600024,27047481:184963 -k1,242:21401024,27047481:184962 -k1,242:22758426,27047481:184963 -k1,242:25492084,27047481:184963 -k1,242:26282599,27047481:184962 -k1,242:27797943,27047481:184963 -k1,242:30703960,27047481:184962 -k1,242:31540351,27047481:184963 -k1,243:32583029,27047481:0 -) -(1,243:6630773,27888969:25952256,513147,134348 -k1,242:8504884,27888969:153136 -k1,242:9649579,27888969:153135 -k1,242:10821800,27888969:153136 -k1,242:14812724,27888969:153136 -k1,242:16660621,27888969:153136 -k1,242:17465184,27888969:153135 -k1,242:18637405,27888969:153136 -k1,242:21866801,27888969:153136 -k1,242:22706099,27888969:153136 -k1,242:24181095,27888969:153135 -k1,242:24993523,27888969:153136 -k1,242:25502519,27888969:153136 -k1,242:27486731,27888969:153136 -k1,242:28322751,27888969:153135 -k1,242:31391584,27888969:153136 -k1,242:32583029,27888969:0 -) -(1,243:6630773,28730457:25952256,513147,126483 -k1,242:7436765,28730457:200439 -k1,242:8967586,28730457:200440 -k1,242:10375854,28730457:200439 -k1,242:11595378,28730457:200439 -k1,242:13292005,28730457:200440 -k1,242:15114460,28730457:200439 -k1,242:17414017,28730457:200439 -k1,242:21678343,28730457:200439 -k1,242:23304191,28730457:200440 -k1,242:24036127,28730457:200439 -k1,242:25007269,28730457:200439 -k1,242:28417007,28730457:200440 -k1,242:31966991,28730457:200439 -k1,242:32583029,28730457:0 -) -(1,243:6630773,29571945:25952256,505283,134348 -k1,242:8278675,29571945:189071 -k1,242:10237874,29571945:189072 -k1,242:11655745,29571945:189071 -k1,242:15588888,29571945:189071 -k1,242:16587329,29571945:189071 -k1,242:19034116,29571945:189072 -k1,242:20719374,29571945:189071 -k1,242:22192951,29571945:189071 -k1,242:22913520,29571945:189072 -k1,242:24497197,29571945:189071 -k1,242:25337696,29571945:189071 -k1,242:29191540,29571945:189071 -k1,242:30032040,29571945:189072 -k1,242:31391584,29571945:189071 -k1,242:32583029,29571945:0 -) -(1,243:6630773,30413433:25952256,513147,126483 -k1,242:7504822,30413433:222621 -k1,242:9933384,30413433:222620 -k1,242:11347450,30413433:222621 -k1,242:15795176,30413433:222620 -k1,242:17412403,30413433:222621 -k1,242:18286451,30413433:222620 -k1,242:20330973,30413433:222621 -k1,242:21745038,30413433:222620 -k1,242:23869514,30413433:222621 -k1,242:24866114,30413433:222620 -k1,242:27371354,30413433:222621 -k1,242:28409242,30413433:222620 -k1,242:30761128,30413433:222621 -k1,242:32583029,30413433:0 -) -(1,243:6630773,31254921:25952256,513147,134348 -k1,242:7981634,31254921:219054 -k1,242:9696875,31254921:219054 -k1,242:11086402,31254921:219054 -k1,242:12920262,31254921:219053 -k1,242:14086967,31254921:219054 -k1,242:17314124,31254921:219054 -k1,242:20812600,31254921:219054 -k1,242:22767047,31254921:219054 -k1,242:24908272,31254921:219054 -k1,242:28308443,31254921:219053 -k1,242:29718942,31254921:219054 -k1,242:31635378,31254921:219054 -k1,242:32583029,31254921:0 -) -(1,243:6630773,32096409:25952256,505283,134348 -k1,242:8003949,32096409:241369 -k1,242:10931639,32096409:241369 -k1,242:14644450,32096409:241369 -k1,242:15568704,32096409:241369 -k1,242:17276769,32096409:241369 -k1,242:20443664,32096409:241368 -k1,242:22809710,32096409:241369 -k1,242:25386127,32096409:241369 -k1,242:27986792,32096409:241369 -k1,242:29419606,32096409:241369 -k1,242:32583029,32096409:0 -) -(1,243:6630773,32937897:25952256,505283,134348 -k1,242:7799129,32937897:176796 -k1,242:11114444,32937897:176796 -k1,242:14500538,32937897:176796 -k1,242:16362920,32937897:176796 -k1,242:17155754,32937897:176796 -k1,242:18721913,32937897:176796 -k1,242:21626972,32937897:176795 -k1,242:22528596,32937897:176796 -k1,242:23683845,32937897:176796 -k1,242:25128107,32937897:176796 -k1,242:26508144,32937897:176796 -k1,242:28314165,32937897:176796 -k1,242:30180479,32937897:176796 -k1,242:32583029,32937897:0 -) -(1,243:6630773,33779385:25952256,513147,134348 -k1,242:8055352,33779385:221338 -k1,242:10032401,33779385:221339 -k1,242:12613035,33779385:221338 -k1,242:14164754,33779385:221338 -k1,242:16087407,33779385:221338 -k1,242:19004242,33779385:221339 -k1,242:21326009,33779385:221338 -k1,242:22233509,33779385:221338 -k1,242:22667817,33779385:221316 -k1,242:24021618,33779385:221339 -k1,242:27241228,33779385:221338 -k1,242:28633039,33779385:221338 -k1,242:29505805,33779385:221338 -k1,242:30542412,33779385:221339 -k1,242:31379788,33779385:221338 -k1,242:32583029,33779385:0 -) -(1,243:6630773,34620873:25952256,513147,134348 -g1,242:8585712,34620873 -g1,242:9316438,34620873 -g1,242:10128429,34620873 -g1,242:11346743,34620873 -g1,242:12909776,34620873 -g1,242:13768297,34620873 -g1,242:15099333,34620873 -g1,242:17383918,34620873 -g1,242:18972510,34620873 -g1,242:21726332,34620873 -g1,242:22608446,34620873 -g1,242:26238485,34620873 -k1,243:32583029,34620873:1818628 -g1,243:32583029,34620873 -) -v1,245:6630773,35986649:0,393216,0 -(1,246:6630773,44876262:25952256,9282829,616038 -g1,246:6630773,44876262 -(1,246:6630773,44876262:25952256,9282829,616038 -(1,246:6630773,45492300:25952256,9898867,0 -[1,246:6630773,45492300:25952256,9898867,0 -(1,246:6630773,45466086:25952256,9846439,0 -r1,246:6656987,45466086:26214,9846439,0 -[1,246:6656987,45466086:25899828,9846439,0 -(1,246:6656987,44876262:25899828,8666791,0 -[1,246:7246811,44876262:24720180,8666791,0 -(1,246:7246811,37295007:24720180,1085536,298548 -(1,245:7246811,37295007:0,1085536,298548 -r1,246:8753226,37295007:1506415,1384084,298548 -k1,245:7246811,37295007:-1506415 -) -(1,245:7246811,37295007:1506415,1085536,298548 -) -k1,245:8960806,37295007:207580 -k1,245:10798922,37295007:207580 -k1,245:14042131,37295007:207581 -k1,245:15689537,37295007:207580 -k1,245:16548545,37295007:207580 -k1,245:17503891,37295007:207580 -k1,245:19281715,37295007:207581 -k1,245:20105333,37295007:207580 -k1,245:20901426,37295007:207580 -k1,245:22300451,37295007:207580 -k1,245:23844965,37295007:207580 -k1,245:26344340,37295007:207581 -k1,245:28244060,37295007:207580 -k1,245:30466217,37295007:207580 -k1,246:31966991,37295007:0 -) -(1,246:7246811,38136495:24720180,505283,134348 -k1,245:8807515,38136495:177894 -k1,245:11195283,38136495:177894 -k1,245:17205881,38136495:177894 -k1,245:18035203,38136495:177894 -k1,245:21877869,38136495:177893 -k1,245:23074848,38136495:177894 -k1,245:24449429,38136495:177894 -k1,245:26409247,38136495:177894 -k1,245:28786529,38136495:177894 -k1,245:31966991,38136495:0 -) -(1,246:7246811,38977983:24720180,513147,126483 -k1,245:9202607,38977983:172561 -k1,245:10545641,38977983:172561 -k1,245:11709762,38977983:172561 -k1,245:12948595,38977983:172562 -k1,245:14502000,38977983:172561 -k1,245:15845034,38977983:172561 -k1,245:19682368,38977983:172561 -k1,245:21185310,38977983:172561 -k1,245:23050011,38977983:172561 -k1,245:26382064,38977983:172562 -k1,245:28655054,38977983:172561 -k1,245:29285712,38977983:172561 -k1,245:29989770,38977983:172561 -k1,245:31966991,38977983:0 -) -(1,246:7246811,39819471:24720180,513147,126483 -k1,245:8073220,39819471:210371 -k1,245:10035367,39819471:210370 -k1,245:11943120,39819471:210371 -k1,245:12804918,39819471:210370 -k1,245:13921652,39819471:210371 -k1,245:16256699,39819471:210370 -k1,245:19458789,39819471:210371 -k1,245:20616810,39819471:210370 -k1,245:22712652,39819471:210371 -k1,245:24093495,39819471:210370 -k1,245:26026808,39819471:210371 -k1,245:27256263,39819471:210370 -k1,245:29709276,39819471:210371 -k1,245:31966991,39819471:0 -) -(1,246:7246811,40660959:24720180,513147,126483 -k1,245:8643103,40660959:204847 -k1,245:9872933,40660959:204847 -k1,245:10543740,40660959:204846 -k1,245:11919060,40660959:204847 -k1,245:13228189,40660959:204847 -k1,245:16688865,40660959:204847 -k1,245:18532767,40660959:204847 -k1,245:20131564,40660959:204846 -k1,245:20924924,40660959:204847 -k1,245:23658150,40660959:204847 -k1,245:24522289,40660959:204847 -k1,245:26104046,40660959:204846 -k1,245:27512134,40660959:204847 -k1,245:29299020,40660959:204847 -k1,245:31966991,40660959:0 -) -(1,246:7246811,41502447:24720180,505283,134348 -k1,245:9152598,41502447:213647 -k1,245:10862432,41502447:213647 -k1,245:14067799,41502447:213648 -k1,245:15565952,41502447:213647 -k1,245:17910174,41502447:213647 -k1,245:20234736,41502447:213647 -k1,245:23210070,41502447:213647 -k1,245:24075146,41502447:213648 -k1,245:27110773,41502447:213647 -k1,245:28931363,41502447:213647 -k1,245:31966991,41502447:0 -) -(1,246:7246811,42343935:24720180,513147,126483 -k1,245:8036561,42343935:258253 -k1,245:9616675,42343935:258253 -k1,245:10534220,42343935:258253 -k1,245:12341089,42343935:258253 -k1,245:13130838,42343935:258252 -k1,245:15687439,42343935:258253 -k1,245:16597120,42343935:258253 -k1,245:19298555,42343935:258253 -k1,245:19912668,42343935:258253 -k1,245:23258977,42343935:258253 -k1,245:24898074,42343935:258253 -k1,245:25823483,42343935:258253 -k1,245:26670248,42343935:258252 -k1,245:27757531,42343935:258253 -k1,245:29207229,42343935:258253 -k1,245:30924313,42343935:258253 -k1,246:31966991,42343935:0 -) -(1,246:7246811,43185423:24720180,513147,134348 -k1,245:11271985,43185423:199838 -k1,245:12131115,43185423:199838 -k1,245:13661334,43185423:199838 -k1,245:14217032,43185423:199838 -k1,245:15913057,43185423:199838 -k1,245:19299255,43185423:199838 -k1,245:20181979,43185423:199839 -k1,245:23077313,43185423:199838 -k1,245:25377580,43185423:199838 -k1,245:26035515,43185423:199838 -k1,245:26766850,43185423:199838 -k1,245:28550693,43185423:199838 -k1,245:29401959,43185423:199838 -k1,245:30508160,43185423:199838 -k1,245:31966991,43185423:0 -) -(1,246:7246811,44026911:24720180,513147,134348 -k1,245:9063328,44026911:210230 -k1,245:9886320,44026911:210230 -k1,245:12278244,44026911:210230 -k1,245:13276872,44026911:210230 -k1,245:15475464,44026911:210230 -k1,245:17867388,44026911:210230 -k1,245:19963090,44026911:210231 -k1,245:23329534,44026911:210230 -k1,245:24199056,44026911:210230 -k1,245:24765146,44026911:210230 -k1,245:26625573,44026911:210230 -k1,245:28331990,44026911:210230 -k1,245:29533780,44026911:210230 -k1,245:31284106,44026911:210230 -k1,245:31966991,44026911:0 -) -(1,246:7246811,44868399:24720180,426639,7863 -k1,246:31966992,44868399:23480240 -g1,246:31966992,44868399 -) -] -) -] -r1,246:32583029,45466086:26214,9846439,0 -) -] -) -) -g1,246:32583029,44876262 -) -h1,246:6630773,45492300:0,0,0 -] -(1,251:32583029,45706769:0,0,0 -g1,251:32583029,45706769 -) -) -] -(1,251:6630773,47279633:25952256,0,0 -h1,251:6630773,47279633:25952256,0,0 -) -] -h1,251:4262630,4025873:0,0,0 -] -!23082 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,252:37855564,49800853:1179648,16384,0 +) +) +k1,252:3078556,49800853:-34777008 +) +] +g1,252:6630773,4812305 +k1,252:21845614,4812305:14417923 +g1,252:22668090,4812305 +g1,252:24054831,4812305 +g1,252:27195316,4812305 +g1,252:28604995,4812305 +g1,252:29789885,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,242:6630773,6254097:25952256,513147,173670 +k1,241:8206691,6254097:181967 +k1,241:8977171,6254097:181967 +k1,241:10998077,6254097:181967 +k1,241:12371489,6254097:181967 +[1,241:12500595,6254097:341312,473825,0 +(1,241:12500595,6116078:341312,335806,0 +) +] +(1,241:13068861,6427767:370934,473825,0 +) +k1,241:14144084,6254097:181967 +k1,241:15223894,6254097:181967 +k1,241:17234315,6254097:181967 +k1,241:18032320,6254097:181967 +k1,241:19233372,6254097:181967 +k1,241:20997378,6254097:181967 +k1,241:22170905,6254097:181967 +k1,241:25505809,6254097:181967 +k1,241:28275793,6254097:181967 +k1,241:29223876,6254097:181967 +k1,241:31591469,6254097:181967 +k1,241:32583029,6254097:0 +) +(1,242:6630773,7095585:25952256,513147,134348 +k1,241:10010576,7095585:226866 +k1,241:10998970,7095585:226866 +k1,241:11640651,7095585:226838 +k1,241:13058962,7095585:226866 +k1,241:16044238,7095585:226866 +k1,241:20761631,7095585:226866 +k1,241:23059435,7095585:226866 +k1,241:24233952,7095585:226866 +k1,241:25479903,7095585:226866 +k1,241:27892395,7095585:226866 +k1,241:28735299,7095585:226866 +k1,241:30165406,7095585:226866 +k1,241:32583029,7095585:0 +) +(1,242:6630773,7937073:25952256,513147,134348 +k1,241:8107855,7937073:192576 +k1,241:9775645,7937073:192575 +k1,241:11478171,7937073:192576 +k1,241:14603482,7937073:192575 +k1,241:17634422,7937073:192576 +k1,241:19394618,7937073:192575 +k1,241:20606279,7937073:192576 +k1,241:23875114,7937073:192575 +k1,241:26303123,7937073:192576 +k1,241:27877852,7937073:192575 +k1,241:29046259,7937073:192576 +k1,241:29451819,7937073:192568 +k1,241:31379788,7937073:192576 +k1,241:32583029,7937073:0 +) +(1,242:6630773,8778561:25952256,513147,126483 +k1,241:10139284,8778561:196977 +k1,241:11772154,8778561:196976 +k1,241:14498821,8778561:196977 +k1,241:14908787,8778561:196974 +k1,241:16654380,8778561:196977 +k1,241:17502784,8778561:196976 +k1,241:19415494,8778561:196977 +k1,241:20993314,8778561:196976 +k1,241:22474797,8778561:196977 +k1,241:24373089,8778561:196977 +k1,241:25428587,8778561:196976 +k1,241:26284856,8778561:196977 +k1,241:27978019,8778561:196976 +k1,241:28861158,8778561:196977 +k1,241:30228607,8778561:196976 +k1,241:31558046,8778561:196977 +k1,241:32583029,8778561:0 +) +(1,242:6630773,9620049:25952256,505283,126483 +k1,241:9369944,9620049:215380 +k1,241:11033671,9620049:215381 +k1,241:13709273,9620049:215380 +k1,241:15705266,9620049:215380 +k1,241:16548482,9620049:215381 +k1,241:19603537,9620049:215380 +k1,241:20031893,9620049:215364 +k1,241:21795889,9620049:215380 +k1,241:22662698,9620049:215381 +k1,241:24593811,9620049:215380 +k1,241:26190035,9620049:215380 +k1,241:27689921,9620049:215380 +k1,241:28924387,9620049:215381 +k1,241:31298523,9620049:215380 +k1,241:32583029,9620049:0 +) +(1,242:6630773,10461537:25952256,513147,134348 +k1,241:7962346,10461537:161100 +k1,241:9255909,10461537:161101 +k1,241:10441992,10461537:161100 +k1,241:12471524,10461537:161101 +k1,241:14333939,10461537:161100 +k1,241:15663547,10461537:161101 +k1,241:16507532,10461537:161100 +k1,241:18639300,10461537:161100 +k1,241:19467557,10461537:161101 +k1,241:20043462,10461537:161062 +k1,241:23046859,10461537:161101 +k1,241:24704146,10461537:161100 +k1,241:25396744,10461537:161101 +k1,241:27782791,10461537:161100 +k1,241:29492507,10461537:161100 +k1,241:30068413,10461537:161063 +k1,241:32583029,10461537:0 +) +(1,242:6630773,11303025:25952256,513147,134348 +k1,241:11012766,11303025:188344 +k1,241:11659208,11303025:188345 +k1,241:13568527,11303025:188344 +k1,241:14112731,11303025:188344 +k1,241:15157631,11303025:188344 +k1,241:16005268,11303025:188345 +k1,241:17790069,11303025:188344 +k1,241:18926064,11303025:188344 +k1,241:20081719,11303025:188344 +k1,241:20956226,11303025:188345 +k1,241:23443573,11303025:188344 +k1,241:24318079,11303025:188344 +k1,241:24719405,11303025:188334 +k1,241:26012031,11303025:188344 +k1,241:27429175,11303025:188344 +k1,241:29833947,11303025:188344 +k1,241:30437124,11303025:188334 +k1,241:31816913,11303025:188344 +k1,241:32583029,11303025:0 +) +(1,242:6630773,12144513:25952256,505283,134348 +k1,241:7871588,12144513:221730 +k1,241:11003772,12144513:221730 +k1,241:12738728,12144513:221730 +k1,241:13611886,12144513:221730 +k1,241:15342255,12144513:221730 +k1,241:17316418,12144513:221730 +k1,241:20045555,12144513:221730 +k1,241:21458731,12144513:221731 +k1,241:23322793,12144513:221730 +k1,241:24563608,12144513:221730 +k1,241:26367377,12144513:221730 +k1,241:28464747,12144513:221730 +k1,241:29337905,12144513:221730 +k1,241:31067618,12144513:221730 +k1,241:31747445,12144513:221730 +k1,241:32583029,12144513:0 +) +(1,242:6630773,12986001:25952256,513147,7863 +g1,241:7481430,12986001 +g1,241:9061503,12986001 +g1,241:10452177,12986001 +g1,241:11899212,12986001 +g1,241:12757733,12986001 +k1,242:32583028,12986001:17714380 +g1,242:32583028,12986001 +) +(1,245:6630773,13827489:25952256,513147,134348 +h1,243:6630773,13827489:983040,0,0 +k1,243:10762210,13827489:185514 +k1,243:11966808,13827489:185513 +k1,243:13244807,13827489:185514 +k1,243:14089613,13827489:185514 +k1,243:15971853,13827489:185513 +k1,243:17738751,13827489:185514 +k1,243:18455761,13827489:185513 +k1,243:22024243,13827489:185514 +k1,243:23589945,13827489:185514 +k1,243:24767018,13827489:185513 +k1,243:27318382,13827489:185514 +k1,243:28522981,13827489:185514 +k1,243:30534982,13827489:185513 +k1,243:31379788,13827489:185514 +k1,243:32583029,13827489:0 +) +(1,245:6630773,14668977:25952256,505283,102891 +k1,243:8416089,14668977:203277 +k1,243:9810811,14668977:203277 +k1,243:11292695,14668977:203277 +k1,243:14585995,14668977:203277 +k1,243:15405310,14668977:203277 +k1,243:17310557,14668977:203277 +k1,243:19426175,14668977:203277 +(1,243:19633269,14668977:4505600,505283,11795 +) +k1,243:24515833,14668977:203294 +(1,243:24515833,14668977:2674524,505283,11795 +) +k1,243:27774422,14668977:203301 +k1,243:29201256,14668977:203277 +k1,243:31102571,14668977:203277 +k1,245:32583029,14668977:0 +) +(1,245:6630773,15510465:25952256,513147,134348 +k1,243:7815843,15510465:194821 +k1,243:9680520,15510465:194820 +k1,243:11610734,15510465:194821 +k1,243:12161415,15510465:194821 +k1,243:15636967,15510465:194820 +k1,243:17332562,15510465:194821 +k1,243:18475033,15510465:194820 +k1,243:22097387,15510465:194821 +k1,243:23483653,15510465:194821 +k1,243:27531335,15510465:194820 +k1,243:30502261,15510465:194821 +k1,245:32583029,15510465:0 +) +(1,245:6630773,16351953:25952256,505283,134348 +k1,243:7867175,16351953:246153 +k1,243:10624668,16351953:246153 +k1,243:13112808,16351953:246153 +k1,243:14550406,16351953:246153 +k1,243:16984151,16351953:246153 +k1,243:19432314,16351953:246153 +k1,243:23741044,16351953:246153 +k1,243:24603235,16351953:246153 +k1,243:28166820,16351953:246153 +k1,243:30111011,16351953:246153 +k1,243:32583029,16351953:0 +) +(1,245:6630773,17193441:25952256,513147,126483 +k1,243:8590677,17193441:241550 +k1,243:10186201,17193441:241550 +k1,243:12210985,17193441:241549 +k1,243:13846486,17193441:241550 +k1,243:17482146,17193441:241550 +k1,243:18671347,17193441:241550 +k1,243:21637229,17193441:241550 +k1,243:22091728,17193441:241507 +k1,243:23808493,17193441:241550 +k1,243:25564580,17193441:241550 +k1,243:26457558,17193441:241550 +k1,243:27446873,17193441:241549 +k1,243:28374585,17193441:241550 +k1,243:31896867,17193441:241550 +k1,243:32583029,17193441:0 +) +(1,245:6630773,18034929:25952256,505283,134348 +k1,243:9483392,18034929:222659 +k1,243:13330846,18034929:222658 +k1,243:14572590,18034929:222659 +k1,243:16678097,18034929:222658 +k1,243:18482795,18034929:222659 +k1,243:19321491,18034929:222658 +k1,243:20747391,18034929:222659 +k1,243:23468281,18034929:222658 +k1,243:25084891,18034929:222659 +k1,243:26683150,18034929:222658 +k1,243:28622197,18034929:222659 +k1,243:31601955,18034929:222658 +k1,245:32583029,18034929:0 +) +(1,245:6630773,18876417:25952256,513147,126483 +g1,243:9341997,18876417 +g1,243:11108847,18876417 +g1,243:12327161,18876417 +g1,243:14247365,18876417 +g1,243:16121039,18876417 +k1,245:32583029,18876417:16461990 +g1,245:32583029,18876417 +) +(1,246:6630773,21683985:25952256,32768,229376 +(1,246:6630773,21683985:0,32768,229376 +(1,246:6630773,21683985:5505024,32768,229376 +r1,246:12135797,21683985:5505024,262144,229376 +) +k1,246:6630773,21683985:-5505024 +) +(1,246:6630773,21683985:25952256,32768,0 +r1,246:32583029,21683985:25952256,32768,0 +) +) +(1,246:6630773,23288313:25952256,615776,161218 +(1,246:6630773,23288313:1974731,575668,0 +g1,246:6630773,23288313 +g1,246:8605504,23288313 +) +g1,246:11833808,23288313 +g1,246:16051443,23288313 +k1,246:32583029,23288313:11827150 +g1,246:32583029,23288313 +) +(1,249:6630773,24523017:25952256,513147,134348 +k1,248:8628512,24523017:214504 +k1,248:11903547,24523017:214504 +k1,248:13065703,24523017:214505 +k1,248:16041894,24523017:214504 +k1,248:18325370,24523017:214504 +k1,248:19487525,24523017:214504 +k1,248:21717917,24523017:214505 +k1,248:22615306,24523017:214504 +k1,248:25232360,24523017:214504 +k1,248:27532875,24523017:214504 +k1,248:28917853,24523017:214505 +k1,248:30264819,24523017:214504 +k1,248:31227089,24523017:214504 +k1,249:32583029,24523017:0 +) +(1,249:6630773,25364505:25952256,513147,134348 +k1,248:9263909,25364505:245659 +k1,248:10903519,25364505:245659 +k1,248:13911521,25364505:245659 +k1,248:15725457,25364505:245659 +k1,248:16630408,25364505:245659 +k1,248:20850826,25364505:245659 +k1,248:22115569,25364505:245658 +k1,248:24014701,25364505:245659 +k1,248:26099956,25364505:245659 +k1,248:27243458,25364505:245659 +k1,248:28555388,25364505:245659 +k1,248:30482701,25364505:245659 +k1,248:31931601,25364505:245659 +k1,248:32583029,25364505:0 +) +(1,249:6630773,26205993:25952256,505283,126483 +k1,248:10280285,26205993:153822 +k1,248:11778251,26205993:153823 +k1,248:12548111,26205993:153822 +k1,248:14303633,26205993:153822 +k1,248:16154837,26205993:153822 +k1,248:16766757,26205993:153823 +k1,248:18053041,26205993:153822 +k1,248:19273134,26205993:153822 +k1,248:21552290,26205993:153823 +k1,248:22392274,26205993:153822 +k1,248:24297873,26205993:153822 +k1,248:28845884,26205993:153822 +k1,248:30103989,26205993:153823 +k1,248:31005577,26205993:153822 +k1,248:32583029,26205993:0 +) +(1,249:6630773,27047481:25952256,513147,134348 +k1,248:7464250,27047481:217439 +k1,248:8270202,27047481:217439 +k1,248:9173803,27047481:217439 +k1,248:10007280,27047481:217439 +k1,248:11356526,27047481:217439 +k1,248:14589932,27047481:217439 +k1,248:15423409,27047481:217439 +k1,248:17872349,27047481:217439 +k1,248:20852131,27047481:217439 +k1,248:22811517,27047481:217439 +k1,248:24227610,27047481:217439 +k1,248:27459050,27047481:217439 +k1,248:28695574,27047481:217439 +k1,248:30566486,27047481:217439 +k1,248:32583029,27047481:0 +) +(1,249:6630773,27888969:25952256,513147,126483 +k1,248:8012423,27888969:184963 +k1,248:10959728,27888969:184962 +k1,248:14806843,27888969:184963 +k1,248:16328739,27888969:184962 +k1,248:18256960,27888969:184963 +k1,248:20600024,27888969:184963 +k1,248:21401024,27888969:184962 +k1,248:22758426,27888969:184963 +k1,248:25492084,27888969:184963 +k1,248:26282599,27888969:184962 +k1,248:27797943,27888969:184963 +k1,248:30703960,27888969:184962 +k1,248:31540351,27888969:184963 +k1,249:32583029,27888969:0 +) +(1,249:6630773,28730457:25952256,513147,134348 +k1,248:8504884,28730457:153136 +k1,248:9649579,28730457:153135 +k1,248:10821800,28730457:153136 +k1,248:14812724,28730457:153136 +k1,248:16660621,28730457:153136 +k1,248:17465184,28730457:153135 +k1,248:18637405,28730457:153136 +k1,248:21866801,28730457:153136 +k1,248:22706099,28730457:153136 +k1,248:24181095,28730457:153135 +k1,248:24993523,28730457:153136 +k1,248:25502519,28730457:153136 +k1,248:27486731,28730457:153136 +k1,248:28322751,28730457:153135 +k1,248:31391584,28730457:153136 +k1,248:32583029,28730457:0 +) +(1,249:6630773,29571945:25952256,513147,126483 +k1,248:7436765,29571945:200439 +k1,248:8967586,29571945:200440 +k1,248:10375854,29571945:200439 +k1,248:11595378,29571945:200439 +k1,248:13292005,29571945:200440 +k1,248:15114460,29571945:200439 +k1,248:17414017,29571945:200439 +k1,248:21678343,29571945:200439 +k1,248:23304191,29571945:200440 +k1,248:24036127,29571945:200439 +k1,248:25007269,29571945:200439 +k1,248:28417007,29571945:200440 +k1,248:31966991,29571945:200439 +k1,248:32583029,29571945:0 +) +(1,249:6630773,30413433:25952256,505283,134348 +k1,248:8278675,30413433:189071 +k1,248:10237874,30413433:189072 +k1,248:11655745,30413433:189071 +k1,248:15588888,30413433:189071 +k1,248:16587329,30413433:189071 +k1,248:19034116,30413433:189072 +k1,248:20719374,30413433:189071 +k1,248:22192951,30413433:189071 +k1,248:22913520,30413433:189072 +k1,248:24497197,30413433:189071 +k1,248:25337696,30413433:189071 +k1,248:29191540,30413433:189071 +k1,248:30032040,30413433:189072 +k1,248:31391584,30413433:189071 +k1,248:32583029,30413433:0 +) +(1,249:6630773,31254921:25952256,513147,126483 +k1,248:7504822,31254921:222621 +k1,248:9933384,31254921:222620 +k1,248:11347450,31254921:222621 +k1,248:15795176,31254921:222620 +k1,248:17412403,31254921:222621 +k1,248:18286451,31254921:222620 +k1,248:20330973,31254921:222621 +k1,248:21745038,31254921:222620 +k1,248:23869514,31254921:222621 +k1,248:24866114,31254921:222620 +k1,248:27371354,31254921:222621 +k1,248:28409242,31254921:222620 +k1,248:30761128,31254921:222621 +k1,248:32583029,31254921:0 +) +(1,249:6630773,32096409:25952256,513147,134348 +k1,248:7981634,32096409:219054 +k1,248:9696875,32096409:219054 +k1,248:11086402,32096409:219054 +k1,248:12920262,32096409:219053 +k1,248:14086967,32096409:219054 +k1,248:17314124,32096409:219054 +k1,248:20812600,32096409:219054 +k1,248:22767047,32096409:219054 +k1,248:24908272,32096409:219054 +k1,248:28308443,32096409:219053 +k1,248:29718942,32096409:219054 +k1,248:31635378,32096409:219054 +k1,248:32583029,32096409:0 +) +(1,249:6630773,32937897:25952256,505283,134348 +k1,248:8003949,32937897:241369 +k1,248:10931639,32937897:241369 +k1,248:14644450,32937897:241369 +k1,248:15568704,32937897:241369 +k1,248:17276769,32937897:241369 +k1,248:20443664,32937897:241368 +k1,248:22809710,32937897:241369 +k1,248:25386127,32937897:241369 +k1,248:27986792,32937897:241369 +k1,248:29419606,32937897:241369 +k1,248:32583029,32937897:0 +) +(1,249:6630773,33779385:25952256,505283,134348 +k1,248:7799129,33779385:176796 +k1,248:11114444,33779385:176796 +k1,248:14500538,33779385:176796 +k1,248:16362920,33779385:176796 +k1,248:17155754,33779385:176796 +k1,248:18721913,33779385:176796 +k1,248:21626972,33779385:176795 +k1,248:22528596,33779385:176796 +k1,248:23683845,33779385:176796 +k1,248:25128107,33779385:176796 +k1,248:26508144,33779385:176796 +k1,248:28314165,33779385:176796 +k1,248:30180479,33779385:176796 +k1,248:32583029,33779385:0 +) +(1,249:6630773,34620873:25952256,513147,134348 +k1,248:8055352,34620873:221338 +k1,248:10032401,34620873:221339 +k1,248:12613035,34620873:221338 +k1,248:14164754,34620873:221338 +k1,248:16087407,34620873:221338 +k1,248:19004242,34620873:221339 +k1,248:21326009,34620873:221338 +k1,248:22233509,34620873:221338 +k1,248:22667817,34620873:221316 +k1,248:24021618,34620873:221339 +k1,248:27241228,34620873:221338 +k1,248:28633039,34620873:221338 +k1,248:29505805,34620873:221338 +k1,248:30542412,34620873:221339 +k1,248:31379788,34620873:221338 +k1,248:32583029,34620873:0 +) +(1,249:6630773,35462361:25952256,513147,134348 +g1,248:8585712,35462361 +g1,248:9316438,35462361 +g1,248:10128429,35462361 +g1,248:11346743,35462361 +g1,248:12909776,35462361 +g1,248:13768297,35462361 +g1,248:15099333,35462361 +g1,248:17383918,35462361 +g1,248:18972510,35462361 +g1,248:21726332,35462361 +g1,248:22608446,35462361 +g1,248:26238485,35462361 +k1,249:32583029,35462361:1818628 +g1,249:32583029,35462361 +) +v1,251:6630773,36828137:0,393216,0 +(1,252:6630773,44161259:25952256,7726338,589824 +g1,252:6630773,44161259 +(1,252:6630773,44161259:25952256,7726338,589824 +(1,252:6630773,44751083:25952256,8316162,0 +[1,252:6630773,44751083:25952256,8316162,0 +(1,252:6630773,44751083:25952256,8289948,0 +r1,252:6656987,44751083:26214,8289948,0 +[1,252:6656987,44751083:25899828,8289948,0 +(1,252:6656987,44161259:25899828,7110300,0 +[1,252:7246811,44161259:24720180,7110300,0 +(1,252:7246811,38136495:24720180,1085536,298548 +(1,251:7246811,38136495:0,1085536,298548 +r1,252:8753226,38136495:1506415,1384084,298548 +k1,251:7246811,38136495:-1506415 +) +(1,251:7246811,38136495:1506415,1085536,298548 +) +k1,251:8932766,38136495:179540 +k1,251:10742842,38136495:179540 +k1,251:13958010,38136495:179540 +k1,251:15577377,38136495:179541 +k1,251:16408345,38136495:179540 +k1,251:17335651,38136495:179540 +k1,251:19085434,38136495:179540 +k1,251:19881012,38136495:179540 +k1,251:20649065,38136495:179540 +k1,251:22020050,38136495:179540 +k1,251:23536525,38136495:179541 +k1,251:26007859,38136495:179540 +k1,251:27879539,38136495:179540 +k1,251:30073656,38136495:179540 +k1,252:31966991,38136495:0 +) +(1,252:7246811,38977983:24720180,505283,134348 +k1,251:8458572,38977983:221512 +k1,251:10889958,38977983:221512 +k1,251:16944173,38977983:221511 +k1,251:17817113,38977983:221512 +k1,251:21703398,38977983:221512 +k1,251:22943995,38977983:221512 +k1,251:24362193,38977983:221511 +k1,251:26365629,38977983:221512 +k1,251:28786529,38977983:221512 +k1,251:31966991,38977983:0 +) +(1,252:7246811,39819471:24720180,513147,126483 +k1,251:9202607,39819471:172561 +k1,251:10545641,39819471:172561 +k1,251:11709762,39819471:172561 +k1,251:12948595,39819471:172562 +k1,251:14502000,39819471:172561 +k1,251:15845034,39819471:172561 +k1,251:19682368,39819471:172561 +k1,251:21185310,39819471:172561 +k1,251:23050011,39819471:172561 +k1,251:26382064,39819471:172562 +k1,251:28655054,39819471:172561 +k1,251:29285712,39819471:172561 +k1,251:29989770,39819471:172561 +k1,251:31966991,39819471:0 +) +(1,252:7246811,40660959:24720180,513147,126483 +k1,251:8073220,40660959:210371 +k1,251:10035367,40660959:210370 +k1,251:11943120,40660959:210371 +k1,251:12804918,40660959:210370 +k1,251:13921652,40660959:210371 +k1,251:16256699,40660959:210370 +k1,251:19458789,40660959:210371 +k1,251:20616810,40660959:210370 +k1,251:22712652,40660959:210371 +k1,251:24093495,40660959:210370 +k1,251:26026808,40660959:210371 +k1,251:27256263,40660959:210370 +k1,251:29709276,40660959:210371 +k1,251:31966991,40660959:0 +) +(1,252:7246811,41502447:24720180,513147,126483 +k1,251:8643103,41502447:204847 +k1,251:9872933,41502447:204847 +k1,251:10543740,41502447:204846 +k1,251:11919060,41502447:204847 +k1,251:13228189,41502447:204847 +k1,251:16688865,41502447:204847 +k1,251:18532767,41502447:204847 +k1,251:20131564,41502447:204846 +k1,251:20924924,41502447:204847 +k1,251:23658150,41502447:204847 +k1,251:24522289,41502447:204847 +k1,251:26104046,41502447:204846 +k1,251:27512134,41502447:204847 +k1,251:29299020,41502447:204847 +k1,251:31966991,41502447:0 +) +(1,252:7246811,42343935:24720180,505283,134348 +k1,251:9152598,42343935:213647 +k1,251:10862432,42343935:213647 +k1,251:14067799,42343935:213648 +k1,251:15565952,42343935:213647 +k1,251:17910174,42343935:213647 +k1,251:20234736,42343935:213647 +k1,251:23210070,42343935:213647 +k1,251:24075146,42343935:213648 +k1,251:27110773,42343935:213647 +k1,251:28931363,42343935:213647 +k1,251:31966991,42343935:0 +) +(1,252:7246811,43185423:24720180,513147,126483 +k1,251:8036561,43185423:258253 +k1,251:9616675,43185423:258253 +k1,251:10534220,43185423:258253 +k1,251:12341089,43185423:258253 +k1,251:13130838,43185423:258252 +k1,251:15687439,43185423:258253 +k1,251:16597120,43185423:258253 +k1,251:19298555,43185423:258253 +k1,251:19912668,43185423:258253 +k1,251:23258977,43185423:258253 +k1,251:24898074,43185423:258253 +k1,251:25823483,43185423:258253 +k1,251:26670248,43185423:258252 +k1,251:27757531,43185423:258253 +k1,251:29207229,43185423:258253 +k1,251:30924313,43185423:258253 +k1,252:31966991,43185423:0 +) +(1,252:7246811,44026911:24720180,513147,134348 +k1,251:11271985,44026911:199838 +k1,251:12131115,44026911:199838 +k1,251:13661334,44026911:199838 +k1,251:14217032,44026911:199838 +k1,251:15913057,44026911:199838 +k1,251:19299255,44026911:199838 +k1,251:20181979,44026911:199839 +k1,251:23077313,44026911:199838 +k1,251:25377580,44026911:199838 +k1,251:26035515,44026911:199838 +k1,251:26766850,44026911:199838 +k1,251:28550693,44026911:199838 +k1,251:29401959,44026911:199838 +k1,251:30508160,44026911:199838 +k1,251:31966991,44026911:0 +) +] +) +] +r1,252:32583029,44751083:26214,8289948,0 +) +] +) +) +g1,252:32583029,44161259 +) +] +(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 +) +] +h1,252:4262630,4025873:0,0,0 +] +!23235 }21 -Input:127:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:128:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:129:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:130:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:131:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:132:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:122:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:123:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:124:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:125:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:126:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:127:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:128:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {22 -[1,307:4262630,47279633:28320399,43253760,0 -(1,307:4262630,4025873:0,0,0 -[1,307:-473657,4025873:25952256,0,0 -(1,307:-473657,-710414:25952256,0,0 -h1,307:-473657,-710414:0,0,0 -(1,307:-473657,-710414:0,0,0 -(1,307:-473657,-710414:0,0,0 -g1,307:-473657,-710414 -(1,307:-473657,-710414:65781,0,65781 -g1,307:-407876,-710414 -[1,307:-407876,-644633:0,0,0 +[1,286:4262630,47279633:28320399,43253760,0 +(1,286:4262630,4025873:0,0,0 +[1,286:-473657,4025873:25952256,0,0 +(1,286:-473657,-710414:25952256,0,0 +h1,286:-473657,-710414:0,0,0 +(1,286:-473657,-710414:0,0,0 +(1,286:-473657,-710414:0,0,0 +g1,286:-473657,-710414 +(1,286:-473657,-710414:65781,0,65781 +g1,286:-407876,-710414 +[1,286:-407876,-644633:0,0,0 ] ) -k1,307:-473657,-710414:-65781 +k1,286:-473657,-710414:-65781 ) ) -k1,307:25478599,-710414:25952256 -g1,307:25478599,-710414 +k1,286:25478599,-710414:25952256 +g1,286:25478599,-710414 ) ] ) -[1,307:6630773,47279633:25952256,43253760,0 -[1,307:6630773,4812305:25952256,786432,0 -(1,307:6630773,4812305:25952256,513147,134348 -(1,307:6630773,4812305:25952256,513147,134348 -g1,307:3078558,4812305 -[1,307:3078558,4812305:0,0,0 -(1,307:3078558,2439708:0,1703936,0 -k1,307:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,307:2537886,2439708:1179648,16384,0 +[1,286:6630773,47279633:25952256,43253760,0 +[1,286:6630773,4812305:25952256,786432,0 +(1,286:6630773,4812305:25952256,513147,134348 +(1,286:6630773,4812305:25952256,513147,134348 +g1,286:3078558,4812305 +[1,286:3078558,4812305:0,0,0 +(1,286:3078558,2439708:0,1703936,0 +k1,286:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,286:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,307:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,286:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,307:3078558,4812305:0,0,0 -(1,307:3078558,2439708:0,1703936,0 -g1,307:29030814,2439708 -g1,307:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,307:36151628,1915420:16384,1179648,0 +[1,286:3078558,4812305:0,0,0 +(1,286:3078558,2439708:0,1703936,0 +g1,286:29030814,2439708 +g1,286:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,286:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,307:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,286:37855564,2439708:1179648,16384,0 +) +) +k1,286:3078556,2439708:-34777008 ) +] +[1,286:3078558,4812305:0,0,0 +(1,286:3078558,49800853:0,16384,2228224 +k1,286:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,286:2537886,49800853:1179648,16384,0 +) +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,286:3078558,51504789:16384,1179648,0 ) -k1,307:3078556,2439708:-34777008 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] -[1,307:3078558,4812305:0,0,0 -(1,307:3078558,49800853:0,16384,2228224 -k1,307:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,307:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,307:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 ) ] +[1,286:3078558,4812305:0,0,0 +(1,286:3078558,49800853:0,16384,2228224 +g1,286:29030814,49800853 +g1,286:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,286:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 +) +] +) +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,286:37855564,49800853:1179648,16384,0 ) ) +k1,286:3078556,49800853:-34777008 ) ] -[1,307:3078558,4812305:0,0,0 -(1,307:3078558,49800853:0,16384,2228224 -g1,307:29030814,49800853 -g1,307:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,307:36151628,51504789:16384,1179648,0 +g1,286:6630773,4812305 +g1,286:6630773,4812305 +g1,286:9189953,4812305 +g1,286:12564401,4812305 +g1,286:16510323,4812305 +k1,286:31786111,4812305:15275788 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 ) ] +[1,286:6630773,45706769:25952256,40108032,0 +(1,286:6630773,45706769:25952256,40108032,0 +(1,286:6630773,45706769:0,0,0 +g1,286:6630773,45706769 ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,307:37855564,49800853:1179648,16384,0 -) -) -k1,307:3078556,49800853:-34777008 -) -] -g1,307:6630773,4812305 -g1,307:6630773,4812305 -g1,307:9189953,4812305 -g1,307:12564401,4812305 -g1,307:16510323,4812305 -k1,307:31786111,4812305:15275788 -) -) -] -[1,307:6630773,45706769:25952256,40108032,0 -(1,307:6630773,45706769:25952256,40108032,0 -(1,307:6630773,45706769:0,0,0 -g1,307:6630773,45706769 -) -[1,307:6630773,45706769:25952256,40108032,0 -(1,248:6630773,6254097:25952256,555811,139132 -(1,248:6630773,6254097:2450326,527696,0 -g1,248:6630773,6254097 -g1,248:9081099,6254097 -) -g1,248:10393851,6254097 -g1,248:13214718,6254097 -k1,248:32583029,6254097:17787386 -g1,248:32583029,6254097 -) -(1,251:6630773,7488801:25952256,513147,134348 -k1,250:7684843,7488801:225040 -k1,250:9940843,7488801:225039 -k1,250:11553936,7488801:225040 -k1,250:13607429,7488801:225039 -k1,250:16390995,7488801:225040 -k1,250:17635119,7488801:225039 -k1,250:21019650,7488801:225040 -k1,250:23645928,7488801:225039 -k1,250:24739320,7488801:225040 -k1,250:26056844,7488801:225039 -k1,250:28977380,7488801:225040 -(1,250:28977380,7488801:0,452978,115847 -r1,250:31094205,7488801:2116825,568825,115847 -k1,250:28977380,7488801:-2116825 -) -(1,250:28977380,7488801:2116825,452978,115847 -k1,250:28977380,7488801:3277 -h1,250:31090928,7488801:0,411205,112570 -) -k1,250:31319244,7488801:225039 -k1,250:32227169,7488801:225040 -k1,250:32583029,7488801:0 -) -(1,251:6630773,8330289:25952256,513147,134348 -k1,250:9534500,8330289:139418 -k1,250:11504340,8330289:139419 -k1,250:13368666,8330289:139418 -k1,250:15467610,8330289:139418 -k1,250:18448015,8330289:139419 -k1,250:19348961,8330289:139418 -k1,250:20259082,8330289:139418 -k1,250:20813284,8330289:139359 -k1,250:23532854,8330289:139418 -k1,250:27078834,8330289:139419 -k1,250:30176547,8330289:139418 -k1,250:32583029,8330289:0 -) -(1,251:6630773,9171777:25952256,505283,134348 -k1,250:8449876,9171777:222646 -k1,250:9204018,9171777:222645 -k1,250:13571161,9171777:222646 -k1,250:17266560,9171777:222646 -k1,250:17845065,9171777:222645 -k1,250:19940730,9171777:222646 -k1,250:21551429,9171777:222646 -k1,250:23272227,9171777:222645 -k1,250:27027919,9171777:222646 -k1,250:29482066,9171777:222646 -k1,250:30119531,9171777:222622 -k1,250:32583029,9171777:0 -) -(1,251:6630773,10013265:25952256,513147,134348 -k1,250:9162122,10013265:187782 -k1,250:9962667,10013265:187783 -k1,250:11169534,10013265:187782 -k1,250:12540241,10013265:187782 -k1,250:13387315,10013265:187782 -k1,250:14594183,10013265:187783 -k1,250:16170018,10013265:187782 -k1,250:18359925,10013265:187782 -k1,250:20239847,10013265:187782 -k1,250:23419349,10013265:187783 -k1,250:24598691,10013265:187782 -k1,250:26654904,10013265:187782 -k1,250:28728157,10013265:187782 -k1,250:30355766,10013265:187783 -k1,250:31194976,10013265:187782 -k1,250:32583029,10013265:0 -) -(1,251:6630773,10854753:25952256,513147,134348 -k1,250:8221382,10854753:236635 -k1,250:10241253,10854753:236636 -k1,250:11093926,10854753:236635 -k1,250:13932341,10854753:236636 -k1,250:15499357,10854753:236635 -k1,250:16387420,10854753:236635 -k1,250:17716541,10854753:236636 -k1,250:18972261,10854753:236635 -k1,250:22234693,10854753:236635 -k1,250:25735022,10854753:236636 -k1,250:27013679,10854753:236635 -k1,250:30085402,10854753:236636 -k1,250:31478747,10854753:236635 -k1,250:32583029,10854753:0 -) -(1,251:6630773,11696241:25952256,513147,134348 -g1,250:8900284,11696241 -g1,250:10047164,11696241 -g1,250:10602253,11696241 -g1,250:12189535,11696241 -g1,250:13886917,11696241 -g1,250:14698908,11696241 -g1,250:15917222,11696241 -g1,250:16531294,11696241 -k1,251:32583029,11696241:13457820 -g1,251:32583029,11696241 -) -v1,253:6630773,12886707:0,393216,0 -(1,258:6630773,13766793:25952256,1273302,196608 -g1,258:6630773,13766793 -g1,258:6630773,13766793 -g1,258:6434165,13766793 -(1,258:6434165,13766793:0,1273302,196608 -r1,258:32779637,13766793:26345472,1469910,196608 -k1,258:6434165,13766793:-26345472 -) -(1,258:6434165,13766793:26345472,1273302,196608 -[1,258:6630773,13766793:25952256,1076694,0 -(1,255:6630773,13094325:25952256,404226,101187 -(1,254:6630773,13094325:0,0,0 -g1,254:6630773,13094325 -g1,254:6630773,13094325 -g1,254:6303093,13094325 -(1,254:6303093,13094325:0,0,0 -) -g1,254:6630773,13094325 -) -k1,255:6630773,13094325:0 -h1,255:10108376,13094325:0,0,0 -k1,255:32583028,13094325:22474652 -g1,255:32583028,13094325 -) -(1,256:6630773,13760503:25952256,388497,6290 -h1,256:6630773,13760503:0,0,0 -h1,256:7895356,13760503:0,0,0 -k1,256:32583028,13760503:24687672 -g1,256:32583028,13760503 -) -] -) -g1,258:32583029,13766793 -g1,258:6630773,13766793 -g1,258:6630773,13766793 -g1,258:32583029,13766793 -g1,258:32583029,13766793 -) -h1,258:6630773,13963401:0,0,0 -v1,262:6630773,15853465:0,393216,0 -(1,271:6630773,20225316:25952256,4765067,616038 -g1,271:6630773,20225316 -(1,271:6630773,20225316:25952256,4765067,616038 -(1,271:6630773,20841354:25952256,5381105,0 -[1,271:6630773,20841354:25952256,5381105,0 -(1,271:6630773,20815140:25952256,5328677,0 -r1,271:6656987,20815140:26214,5328677,0 -[1,271:6656987,20815140:25899828,5328677,0 -(1,271:6656987,20225316:25899828,4149029,0 -[1,271:7246811,20225316:24720180,4149029,0 -(1,263:7246811,17163661:24720180,1087374,126483 -k1,262:8644287,17163661:187773 -k1,262:10378711,17163661:187774 -k1,262:11179246,17163661:187773 -k1,262:12755072,17163661:187773 -k1,262:13890497,17163661:187774 -k1,262:15770410,17163661:187773 -k1,262:17660153,17163661:187773 -k1,262:20873723,17163661:187773 -k1,262:22207722,17163661:187774 -(1,262:22207722,17163661:0,452978,115847 -r1,271:24324547,17163661:2116825,568825,115847 -k1,262:22207722,17163661:-2116825 -) -(1,262:22207722,17163661:2116825,452978,115847 -k1,262:22207722,17163661:3277 -h1,262:24321270,17163661:0,411205,112570 -) -k1,262:24685990,17163661:187773 -(1,262:24685990,17163661:0,452978,115847 -r1,271:26451103,17163661:1765113,568825,115847 -k1,262:24685990,17163661:-1765113 -) -(1,262:24685990,17163661:1765113,452978,115847 -k1,262:24685990,17163661:3277 -h1,262:26447826,17163661:0,411205,112570 -) -k1,262:26812546,17163661:187773 -(1,262:26812546,17163661:0,452978,115847 -r1,271:28929371,17163661:2116825,568825,115847 -k1,262:26812546,17163661:-2116825 -) -(1,262:26812546,17163661:2116825,452978,115847 -k1,262:26812546,17163661:3277 -h1,262:28926094,17163661:0,411205,112570 -) -k1,262:29117145,17163661:187774 -k1,262:30670033,17163661:187773 -k1,262:31966991,17163661:0 -) -(1,263:7246811,18005149:24720180,513147,115847 -g1,262:8685981,18005149 -(1,262:8685981,18005149:0,452978,115847 -r1,271:10802806,18005149:2116825,568825,115847 -k1,262:8685981,18005149:-2116825 -) -(1,262:8685981,18005149:2116825,452978,115847 -k1,262:8685981,18005149:3277 -h1,262:10799529,18005149:0,411205,112570 -) -g1,262:11002035,18005149 -k1,263:31966991,18005149:19185654 -g1,263:31966991,18005149 -) -v1,265:7246811,19195615:0,393216,0 -(1,269:7246811,19504420:24720180,702021,196608 -g1,269:7246811,19504420 -g1,269:7246811,19504420 -g1,269:7050203,19504420 -(1,269:7050203,19504420:0,702021,196608 -r1,271:32163599,19504420:25113396,898629,196608 -k1,269:7050203,19504420:-25113396 -) -(1,269:7050203,19504420:25113396,702021,196608 -[1,269:7246811,19504420:24720180,505413,0 -(1,267:7246811,19403233:24720180,404226,101187 -(1,266:7246811,19403233:0,0,0 -g1,266:7246811,19403233 -g1,266:7246811,19403233 -g1,266:6919131,19403233 -(1,266:6919131,19403233:0,0,0 -) -g1,266:7246811,19403233 -) -k1,267:7246811,19403233:0 -h1,267:10408268,19403233:0,0,0 -k1,267:31966992,19403233:21558724 -g1,267:31966992,19403233 -) -] -) -g1,269:31966991,19504420 -g1,269:7246811,19504420 -g1,269:7246811,19504420 -g1,269:31966991,19504420 -g1,269:31966991,19504420 -) -h1,269:7246811,19701028:0,0,0 -] -) -] -r1,271:32583029,20815140:26214,5328677,0 -) -] -) -) -g1,271:32583029,20225316 -) -h1,271:6630773,20841354:0,0,0 -(1,274:6630773,22207130:25952256,513147,134348 -h1,273:6630773,22207130:983040,0,0 -k1,273:9677038,22207130:279990 -k1,273:11692421,22207130:279990 -k1,273:14396588,22207130:279990 -k1,273:16331361,22207130:279989 -k1,273:17602911,22207130:279990 -k1,273:19753299,22207130:279990 -k1,273:21601566,22207130:279990 -k1,273:22540848,22207130:279990 -k1,273:26127129,22207130:279990 -k1,273:27058546,22207130:279989 -k1,273:27694396,22207130:279990 -k1,273:29362439,22207130:279990 -k1,273:31140582,22207130:279990 -k1,273:32583029,22207130:0 -) -(1,274:6630773,23048618:25952256,513147,134348 -k1,273:8587021,23048618:220855 -k1,273:11503373,23048618:220856 -(1,273:11503373,23048618:0,452978,115847 -r1,273:13620198,23048618:2116825,568825,115847 -k1,273:11503373,23048618:-2116825 -) -(1,273:11503373,23048618:2116825,452978,115847 -k1,273:11503373,23048618:3277 -h1,273:13616921,23048618:0,411205,112570 -) -k1,273:14014723,23048618:220855 -k1,273:15183230,23048618:220856 -k1,273:18239172,23048618:220855 -k1,273:19853979,23048618:220856 -k1,273:21093919,23048618:220855 -k1,273:23364740,23048618:220855 -k1,273:24394966,23048618:220856 -k1,273:25634906,23048618:220855 -k1,273:27593777,23048618:220856 -k1,273:28473924,23048618:220855 -k1,273:29050640,23048618:220856 -k1,273:31966991,23048618:220855 -k1,273:32583029,23048618:0 -) -(1,274:6630773,23890106:25952256,505283,134348 -k1,273:7799186,23890106:149328 -k1,273:9857579,23890106:149329 -k1,273:10689792,23890106:149328 -k1,273:13433035,23890106:149328 -k1,273:16289656,23890106:149329 -k1,273:17458069,23890106:149328 -k1,273:18364993,23890106:149328 -k1,273:19615327,23890106:149329 -k1,273:21672408,23890106:149328 -k1,273:22840822,23890106:149329 -k1,273:27613715,23890106:149328 -k1,273:29151096,23890106:149328 -k1,273:30798578,23890106:149329 -k1,273:31563944,23890106:149328 -k1,273:32583029,23890106:0 -) -(1,274:6630773,24731594:25952256,513147,134348 -k1,273:8212201,24731594:193375 -k1,273:10118031,24731594:193374 -k1,273:12527834,24731594:193375 -k1,273:13740294,24731594:193375 -k1,273:15983635,24731594:193375 -k1,273:17979249,24731594:193374 -k1,273:19120275,24731594:193375 -k1,273:19669510,24731594:193375 -k1,273:20996003,24731594:193375 -k1,273:23761010,24731594:193374 -k1,273:25341782,24731594:193375 -k1,273:26554242,24731594:193375 -k1,273:28485632,24731594:193375 -k1,273:29338298,24731594:193374 -k1,273:29887533,24731594:193375 -k1,273:32583029,24731594:0 -) -(1,274:6630773,25573082:25952256,513147,126483 -k1,273:7427692,25573082:184157 -k1,273:8630934,25573082:184157 -k1,273:9229919,25573082:184142 -k1,273:11834321,25573082:184157 -k1,273:13150940,25573082:184157 -k1,273:14912549,25573082:184157 -k1,273:17565447,25573082:184157 -k1,273:19437811,25573082:184157 -k1,273:20569619,25573082:184157 -k1,273:21385543,25573082:184157 -k1,273:22047457,25573082:184157 -k1,273:23250699,25573082:184157 -k1,273:26130352,25573082:184157 -k1,273:26846006,25573082:184157 -k1,273:29411741,25573082:184157 -k1,273:30211936,25573082:184157 -k1,273:30751953,25573082:184157 -k1,273:32583029,25573082:0 -) -(1,274:6630773,26414570:25952256,513147,134348 -k1,273:7529534,26414570:215876 -k1,273:10218082,26414570:215875 -k1,273:11416998,26414570:215876 -k1,273:12917379,26414570:215875 -k1,273:13664752,26414570:215876 -k1,273:15458079,26414570:215875 -k1,273:16289993,26414570:215876 -k1,273:17524953,26414570:215875 -k1,273:19649893,26414570:215876 -k1,273:21578224,26414570:215875 -k1,273:22950810,26414570:215876 -k1,273:24270967,26414570:215875 -k1,273:26901189,26414570:215876 -k1,273:29780447,26414570:215875 -k1,273:31563944,26414570:215876 -k1,273:32583029,26414570:0 -) -(1,274:6630773,27256058:25952256,513147,11795 -k1,273:8068414,27256058:269134 -k1,273:10256443,27256058:269135 -k1,273:11544662,27256058:269134 -k1,273:14509293,27256058:269135 -k1,273:15309924,27256058:269134 -k1,273:17446834,27256058:269134 -k1,273:18367397,27256058:269135 -k1,273:20555425,27256058:269134 -k1,273:21282657,27256058:269135 -k1,273:22083288,27256058:269134 -k1,273:24907671,27256058:269134 -k1,273:25804641,27256058:269135 -k1,273:28497952,27256058:269134 -k1,273:29923797,27256058:269135 -k1,273:31297213,27256058:269134 -k1,273:32583029,27256058:0 -) -(1,274:6630773,28097546:25952256,513147,134348 -g1,273:8900284,28097546 -g1,273:10047164,28097546 -g1,273:11634446,28097546 -g1,273:14392201,28097546 -g1,273:15610515,28097546 -g1,273:18759519,28097546 -k1,274:32583029,28097546:10839656 -g1,274:32583029,28097546 -) -(1,276:6630773,28939034:25952256,513147,134348 -h1,275:6630773,28939034:983040,0,0 -k1,275:8490361,28939034:248713 -k1,275:11405079,28939034:248713 -k1,275:12305220,28939034:248713 -k1,275:13941986,28939034:248713 -k1,275:16192824,28939034:248713 -k1,275:17360352,28939034:248713 -k1,275:21390492,28939034:248713 -k1,275:24307176,28939034:248713 -k1,275:26533111,28939034:248714 -k1,275:29478631,28939034:248713 -k1,275:30413506,28939034:248713 -k1,275:31900144,28939034:248663 -k1,275:32583029,28939034:0 -) -(1,276:6630773,29780522:25952256,513147,134348 -k1,275:8712687,29780522:213483 -k1,275:10413196,29780522:213497 -k1,275:12501023,29780522:213497 -k1,275:13818802,29780522:213497 -k1,275:14780065,29780522:213497 -k1,275:17792605,29780522:213497 -k1,275:19607802,29780522:213497 -k1,275:21622228,29780522:213497 -k1,275:24394252,29780522:213498 -k1,275:25626834,29780522:213497 -k1,275:27318823,29780522:213497 -k1,275:29329317,29780522:213497 -k1,275:30158852,29780522:213497 -k1,275:32583029,29780522:0 -) -(1,276:6630773,30622010:25952256,513147,134348 -k1,275:7551171,30622010:237513 -k1,275:9601410,30622010:237514 -k1,275:12934844,30622010:237513 -k1,275:16082811,30622010:237513 -k1,275:18750400,30622010:237514 -k1,275:20375966,30622010:237513 -k1,275:22441933,30622010:237513 -k1,275:23627098,30622010:237514 -k1,275:24883696,30622010:237513 -k1,275:28147006,30622010:237513 -k1,275:29575965,30622010:237514 -k1,275:31202841,30622010:237513 -k1,275:32583029,30622010:0 -) -(1,276:6630773,31463498:25952256,505283,134348 -k1,275:9046268,31463498:168921 -k1,275:10998424,31463498:168921 -k1,275:11523205,31463498:168921 -k1,275:14272278,31463498:168921 -k1,275:14972695,31463498:168920 -k1,275:17285954,31463498:168921 -k1,275:18722341,31463498:168921 -k1,275:19661965,31463498:168921 -k1,275:20245699,31463498:168891 -k1,275:22937101,31463498:168921 -k1,275:23894420,31463498:168921 -k1,275:25451393,31463498:168920 -k1,275:27448768,31463498:168921 -k1,275:28609249,31463498:168921 -k1,275:30743595,31463498:168921 -k1,275:31563944,31463498:168921 -k1,275:32583029,31463498:0 -) -(1,276:6630773,32304986:25952256,513147,134348 -k1,275:8813575,32304986:249490 -k1,275:10451119,32304986:249491 -k1,275:11367765,32304986:249490 -k1,275:12205769,32304986:249491 -k1,275:13083094,32304986:249490 -k1,275:15998590,32304986:249491 -k1,275:16899508,32304986:249490 -k1,275:18845726,32304986:249491 -k1,275:22288130,32304986:249490 -k1,275:23925674,32304986:249491 -k1,275:26177289,32304986:249490 -k1,275:27878402,32304986:249491 -k1,275:30708044,32304986:249490 -k1,276:32583029,32304986:0 -) -(1,276:6630773,33146474:25952256,513147,134348 -k1,275:7921529,33146474:192373 -k1,275:8884606,33146474:192374 -k1,275:10826135,33146474:192373 -k1,275:11677801,33146474:192374 -k1,275:12658572,33146474:192373 -k1,275:17474510,33146474:192373 -k1,275:19054937,33146474:192374 -k1,275:21075764,33146474:192373 -k1,275:22215788,33146474:192373 -k1,275:24119307,33146474:192374 -k1,275:24963108,33146474:192373 -k1,275:27611116,33146474:192374 -k1,275:29498905,33146474:192373 -k1,275:32583029,33146474:0 -) -(1,276:6630773,33987962:25952256,505283,134348 -g1,275:9201750,33987962 -g1,275:12219683,33987962 -g1,275:13912478,33987962 -g1,275:14797869,33987962 -g1,275:16434303,33987962 -g1,275:18827677,33987962 -g1,275:19709791,33987962 -g1,275:22227684,33987962 -g1,275:25739103,33987962 -g1,275:26957417,33987962 -g1,275:30597941,33987962 -k1,276:32583029,33987962:298191 -g1,276:32583029,33987962 -) -(1,278:6630773,34829450:25952256,505283,134348 -h1,277:6630773,34829450:983040,0,0 -k1,277:9579664,34829450:133464 -k1,277:10704688,34829450:133464 -k1,277:12530292,34829450:133464 -k1,277:13932533,34829450:133464 -k1,277:15532036,34829450:133463 -k1,277:16950006,34829450:133464 -k1,277:18363388,34829450:133464 -k1,277:20527813,34829450:133464 -k1,277:21312705,34829450:133464 -k1,277:21860946,34829450:133398 -k1,277:26820481,34829450:133464 -k1,277:29512471,34829450:133464 -k1,277:30001795,34829450:133464 -k1,277:31404036,34829450:133464 -k1,278:32583029,34829450:0 -) -(1,278:6630773,35670938:25952256,505283,134348 -k1,277:7990864,35670938:193550 -k1,277:10058743,35670938:193549 -k1,277:11718333,35670938:193550 -k1,277:13016164,35670938:193549 -k1,277:13957480,35670938:193550 -k1,277:15505003,35670938:193549 -k1,277:19181136,35670938:193550 -k1,277:21072724,35670938:193550 -k1,277:24277652,35670938:193549 -k1,277:27061840,35670938:193550 -k1,277:27611249,35670938:193549 -k1,277:30002877,35670938:193550 -k1,277:32583029,35670938:0 -) -(1,278:6630773,36512426:25952256,513147,134348 -k1,277:8642880,36512426:243290 -k1,277:9633935,36512426:243289 -k1,277:11854446,36512426:243290 -k1,277:13045386,36512426:243289 -k1,277:13644536,36512426:243290 -k1,277:16085904,36512426:243290 -k1,277:19179354,36512426:243289 -k1,277:20108806,36512426:243290 -k1,277:21732284,36512426:243290 -k1,277:23657227,36512426:243289 -k1,277:26825389,36512426:243290 -k1,277:28260123,36512426:243289 -k1,277:31563944,36512426:243290 -k1,277:32583029,36512426:0 -) -(1,278:6630773,37353914:25952256,513147,134348 -k1,277:11734352,37353914:277508 -k1,277:14472083,37353914:277509 -k1,277:16279857,37353914:277508 -k1,277:17216658,37353914:277509 -k1,277:20453772,37353914:277508 -k1,277:21750366,37353914:277509 -k1,277:25111998,37353914:277508 -k1,277:27106550,37353914:277509 -k1,277:29964210,37353914:277508 -k1,278:32583029,37353914:0 -) -(1,278:6630773,38195402:25952256,513147,134348 -k1,277:8270425,38195402:258808 -k1,277:10004447,38195402:258807 -k1,277:11532032,38195402:258808 -k1,277:13256879,38195402:258807 -k1,277:14909638,38195402:258808 -k1,277:18395438,38195402:258807 -k1,277:23480317,38195402:258808 -k1,277:24686775,38195402:258807 -k1,277:26454222,38195402:258808 -k1,277:28043410,38195402:258807 -k1,277:31386342,38195402:258808 -k1,277:32583029,38195402:0 -) -(1,278:6630773,39036890:25952256,513147,134348 -k1,277:11221681,39036890:223589 -k1,277:12128180,39036890:223614 -k1,277:15093140,39036890:223589 -k1,277:15976045,39036890:223613 -k1,277:19110113,39036890:223614 -k1,277:21763802,39036890:223614 -k1,277:24333604,39036890:223613 -k1,277:28364204,39036890:223614 -k1,277:29535468,39036890:223613 -k1,277:30778167,39036890:223614 -k1,278:32583029,39036890:0 -) -(1,278:6630773,39878378:25952256,505283,134348 -k1,277:8853239,39878378:184296 -k1,277:10581564,39878378:184297 -k1,277:11417288,39878378:184296 -k1,277:12870362,39878378:184297 -k1,277:14694369,39878378:184296 -k1,277:16070111,39878378:184297 -k1,277:20092195,39878378:184296 -k1,277:21085861,39878378:184296 -k1,277:22600539,39878378:184297 -k1,277:23436263,39878378:184296 -k1,277:25616787,39878378:184297 -k1,277:27494533,39878378:184296 -k1,277:28496719,39878378:184297 -k1,277:31591469,39878378:184296 -k1,277:32583029,39878378:0 -) -(1,278:6630773,40719866:25952256,505283,134348 -k1,277:10595974,40719866:235547 -k1,277:11593050,40719866:235548 -k1,277:15835468,40719866:235547 -k1,277:18700319,40719866:235547 -k1,277:20316054,40719866:235547 -k1,277:22731985,40719866:235548 -k1,277:23715298,40719866:235547 -k1,277:25510602,40719866:235547 -k1,277:26362187,40719866:235547 -k1,277:29263740,40719866:235548 -k1,277:30150715,40719866:235547 -k1,277:32168186,40719866:235547 -k1,278:32583029,40719866:0 -) -(1,278:6630773,41561354:25952256,513147,134348 -k1,277:8631930,41561354:221855 -k1,277:9268606,41561354:221833 -k1,277:12185957,41561354:221855 -(1,277:12185957,41561354:0,452978,115847 -r1,277:15709629,41561354:3523672,568825,115847 -k1,277:12185957,41561354:-3523672 -) -(1,277:12185957,41561354:3523672,452978,115847 -k1,277:12185957,41561354:3277 -h1,277:15706352,41561354:0,411205,112570 -) -k1,277:15931484,41561354:221855 -k1,277:17851377,41561354:221855 -k1,277:19941008,41561354:221855 -k1,277:21556815,41561354:221856 -k1,277:22797755,41561354:221855 -k1,277:24757625,41561354:221855 -k1,277:25638772,41561354:221855 -k1,277:26216487,41561354:221855 -k1,277:29018495,41561354:221856 -k1,277:29926512,41561354:221855 -k1,277:30936765,41561354:221855 -k1,278:32583029,41561354:0 -) -(1,278:6630773,42402842:25952256,513147,134348 -k1,277:8472838,42402842:203010 -k1,277:11436224,42402842:203010 -k1,277:12658319,42402842:203010 -k1,277:15840597,42402842:203011 -k1,277:17328113,42402842:203010 -k1,277:19711506,42402842:203010 -k1,277:20662282,42402842:203010 -k1,277:22425049,42402842:203010 -k1,277:23575710,42402842:203010 -k1,277:24797806,42402842:203011 -k1,277:27754639,42402842:203010 -k1,277:29149094,42402842:203010 -k1,277:31812326,42402842:203010 -k1,277:32583029,42402842:0 -) -(1,278:6630773,43244330:25952256,513147,134348 -g1,277:9161118,43244330 -g1,277:12606345,43244330 -g1,277:13824659,43244330 -g1,277:17003155,43244330 -g1,277:17853812,43244330 -g1,277:19192057,43244330 -g1,277:20338937,43244330 -g1,277:21557251,43244330 -g1,277:24090217,43244330 -g1,277:24956602,43244330 -g1,277:25570674,43244330 -g1,277:26385941,43244330 -k1,278:32583029,43244330:4930932 -g1,278:32583029,43244330 -) -v1,280:6630773,44434796:0,393216,0 -(1,307:6630773,45374128:25952256,1332548,196608 -g1,307:6630773,45374128 -g1,307:6630773,45374128 -g1,307:6434165,45374128 -(1,307:6434165,45374128:0,1332548,196608 -r1,307:32779637,45374128:26345472,1529156,196608 -k1,307:6434165,45374128:-26345472 -) -(1,307:6434165,45374128:26345472,1332548,196608 -[1,307:6630773,45374128:25952256,1135940,0 -(1,282:6630773,44642414:25952256,404226,76021 -(1,281:6630773,44642414:0,0,0 -g1,281:6630773,44642414 -g1,281:6630773,44642414 -g1,281:6303093,44642414 -(1,281:6303093,44642414:0,0,0 -) -g1,281:6630773,44642414 -) -k1,282:6630773,44642414:0 -h1,282:9792229,44642414:0,0,0 -k1,282:32583029,44642414:22790800 -g1,282:32583029,44642414 -) -(1,306:6630773,45374128:25952256,379060,0 -(1,284:6630773,45374128:0,0,0 -g1,284:6630773,45374128 -g1,284:6630773,45374128 -g1,284:6303093,45374128 -(1,284:6303093,45374128:0,0,0 -) -g1,284:6630773,45374128 -) -h1,306:7263064,45374128:0,0,0 -k1,306:32583028,45374128:25319964 -g1,306:32583028,45374128 -) -] -) -g1,307:32583029,45374128 -g1,307:6630773,45374128 -g1,307:6630773,45374128 -g1,307:32583029,45374128 -g1,307:32583029,45374128 -) -] -(1,307:32583029,45706769:0,0,0 -g1,307:32583029,45706769 -) -) -] -(1,307:6630773,47279633:25952256,0,0 -h1,307:6630773,47279633:25952256,0,0 -) -] -h1,307:4262630,4025873:0,0,0 -] -!24736 +[1,286:6630773,45706769:25952256,40108032,0 +v1,252:6630773,6254097:0,393216,0 +(1,252:6630773,7813203:25952256,1952322,616038 +g1,252:6630773,7813203 +(1,252:6630773,7813203:25952256,1952322,616038 +(1,252:6630773,8429241:25952256,2568360,0 +[1,252:6630773,8429241:25952256,2568360,0 +(1,252:6630773,8403027:25952256,2542146,0 +r1,252:6656987,8403027:26214,2542146,0 +[1,252:6656987,8403027:25899828,2542146,0 +(1,252:6656987,7813203:25899828,1362498,0 +[1,252:7246811,7813203:24720180,1362498,0 +(1,252:7246811,6963852:24720180,513147,134348 +k1,251:9063328,6963852:210230 +k1,251:9886320,6963852:210230 +k1,251:12278244,6963852:210230 +k1,251:13276872,6963852:210230 +k1,251:15475464,6963852:210230 +k1,251:17867388,6963852:210230 +k1,251:19963090,6963852:210231 +k1,251:23329534,6963852:210230 +k1,251:24199056,6963852:210230 +k1,251:24765146,6963852:210230 +k1,251:26625573,6963852:210230 +k1,251:28331990,6963852:210230 +k1,251:29533780,6963852:210230 +k1,251:31284106,6963852:210230 +k1,251:31966991,6963852:0 +) +(1,252:7246811,7805340:24720180,426639,7863 +k1,252:31966992,7805340:23480240 +g1,252:31966992,7805340 +) +] +) +] +r1,252:32583029,8403027:26214,2542146,0 +) +] +) +) +g1,252:32583029,7813203 +) +h1,252:6630773,8429241:0,0,0 +(1,254:6630773,10520501:25952256,555811,139132 +(1,254:6630773,10520501:2450326,527696,0 +g1,254:6630773,10520501 +g1,254:9081099,10520501 +) +g1,254:10393851,10520501 +g1,254:13214718,10520501 +k1,254:32583029,10520501:17787386 +g1,254:32583029,10520501 +) +(1,257:6630773,11755205:25952256,513147,134348 +k1,256:7684843,11755205:225040 +k1,256:9940843,11755205:225039 +k1,256:11553936,11755205:225040 +k1,256:13607429,11755205:225039 +k1,256:16390995,11755205:225040 +k1,256:17635119,11755205:225039 +k1,256:21019650,11755205:225040 +k1,256:23645928,11755205:225039 +k1,256:24739320,11755205:225040 +k1,256:26056844,11755205:225039 +k1,256:28977380,11755205:225040 +(1,256:28977380,11755205:0,452978,115847 +r1,256:31094205,11755205:2116825,568825,115847 +k1,256:28977380,11755205:-2116825 +) +(1,256:28977380,11755205:2116825,452978,115847 +k1,256:28977380,11755205:3277 +h1,256:31090928,11755205:0,411205,112570 +) +k1,256:31319244,11755205:225039 +k1,256:32227169,11755205:225040 +k1,256:32583029,11755205:0 +) +(1,257:6630773,12596693:25952256,513147,134348 +k1,256:9534500,12596693:139418 +k1,256:11504340,12596693:139419 +k1,256:13368666,12596693:139418 +k1,256:15467610,12596693:139418 +k1,256:18448015,12596693:139419 +k1,256:19348961,12596693:139418 +k1,256:20259082,12596693:139418 +k1,256:20813284,12596693:139359 +k1,256:23532854,12596693:139418 +k1,256:27078834,12596693:139419 +k1,256:30176547,12596693:139418 +k1,256:32583029,12596693:0 +) +(1,257:6630773,13438181:25952256,505283,134348 +k1,256:8449876,13438181:222646 +k1,256:9204018,13438181:222645 +k1,256:13571161,13438181:222646 +k1,256:17266560,13438181:222646 +k1,256:17845065,13438181:222645 +k1,256:19940730,13438181:222646 +k1,256:21551429,13438181:222646 +k1,256:23272227,13438181:222645 +k1,256:27027919,13438181:222646 +k1,256:29482066,13438181:222646 +k1,256:30119531,13438181:222622 +k1,256:32583029,13438181:0 +) +(1,257:6630773,14279669:25952256,513147,134348 +k1,256:9162122,14279669:187782 +k1,256:9962667,14279669:187783 +k1,256:11169534,14279669:187782 +k1,256:12540241,14279669:187782 +k1,256:13387315,14279669:187782 +k1,256:14594183,14279669:187783 +k1,256:16170018,14279669:187782 +k1,256:18359925,14279669:187782 +k1,256:20239847,14279669:187782 +k1,256:23419349,14279669:187783 +k1,256:24598691,14279669:187782 +k1,256:26654904,14279669:187782 +k1,256:28728157,14279669:187782 +k1,256:30355766,14279669:187783 +k1,256:31194976,14279669:187782 +k1,256:32583029,14279669:0 +) +(1,257:6630773,15121157:25952256,513147,134348 +k1,256:8221382,15121157:236635 +k1,256:10241253,15121157:236636 +k1,256:11093926,15121157:236635 +k1,256:13932341,15121157:236636 +k1,256:15499357,15121157:236635 +k1,256:16387420,15121157:236635 +k1,256:17716541,15121157:236636 +k1,256:18972261,15121157:236635 +k1,256:22234693,15121157:236635 +k1,256:25735022,15121157:236636 +k1,256:27013679,15121157:236635 +k1,256:30085402,15121157:236636 +k1,256:31478747,15121157:236635 +k1,256:32583029,15121157:0 +) +(1,257:6630773,15962645:25952256,513147,134348 +g1,256:8900284,15962645 +g1,256:10047164,15962645 +g1,256:10602253,15962645 +g1,256:12189535,15962645 +g1,256:13886917,15962645 +g1,256:14698908,15962645 +g1,256:15917222,15962645 +g1,256:16531294,15962645 +k1,257:32583029,15962645:13457820 +g1,257:32583029,15962645 +) +v1,259:6630773,17153111:0,393216,0 +(1,264:6630773,18033197:25952256,1273302,196608 +g1,264:6630773,18033197 +g1,264:6630773,18033197 +g1,264:6434165,18033197 +(1,264:6434165,18033197:0,1273302,196608 +r1,264:32779637,18033197:26345472,1469910,196608 +k1,264:6434165,18033197:-26345472 +) +(1,264:6434165,18033197:26345472,1273302,196608 +[1,264:6630773,18033197:25952256,1076694,0 +(1,261:6630773,17360729:25952256,404226,101187 +(1,260:6630773,17360729:0,0,0 +g1,260:6630773,17360729 +g1,260:6630773,17360729 +g1,260:6303093,17360729 +(1,260:6303093,17360729:0,0,0 +) +g1,260:6630773,17360729 +) +k1,261:6630773,17360729:0 +h1,261:10108376,17360729:0,0,0 +k1,261:32583028,17360729:22474652 +g1,261:32583028,17360729 +) +(1,262:6630773,18026907:25952256,388497,6290 +h1,262:6630773,18026907:0,0,0 +h1,262:7895356,18026907:0,0,0 +k1,262:32583028,18026907:24687672 +g1,262:32583028,18026907 +) +] +) +g1,264:32583029,18033197 +g1,264:6630773,18033197 +g1,264:6630773,18033197 +g1,264:32583029,18033197 +g1,264:32583029,18033197 +) +h1,264:6630773,18229805:0,0,0 +v1,268:6630773,20119869:0,393216,0 +(1,277:6630773,24491720:25952256,4765067,616038 +g1,277:6630773,24491720 +(1,277:6630773,24491720:25952256,4765067,616038 +(1,277:6630773,25107758:25952256,5381105,0 +[1,277:6630773,25107758:25952256,5381105,0 +(1,277:6630773,25081544:25952256,5328677,0 +r1,277:6656987,25081544:26214,5328677,0 +[1,277:6656987,25081544:25899828,5328677,0 +(1,277:6656987,24491720:25899828,4149029,0 +[1,277:7246811,24491720:24720180,4149029,0 +(1,269:7246811,21430065:24720180,1087374,126483 +k1,268:8644287,21430065:187773 +k1,268:10378711,21430065:187774 +k1,268:11179246,21430065:187773 +k1,268:12755072,21430065:187773 +k1,268:13890497,21430065:187774 +k1,268:15770410,21430065:187773 +k1,268:17660153,21430065:187773 +k1,268:20873723,21430065:187773 +k1,268:22207722,21430065:187774 +(1,268:22207722,21430065:0,452978,115847 +r1,277:24324547,21430065:2116825,568825,115847 +k1,268:22207722,21430065:-2116825 +) +(1,268:22207722,21430065:2116825,452978,115847 +k1,268:22207722,21430065:3277 +h1,268:24321270,21430065:0,411205,112570 +) +k1,268:24685990,21430065:187773 +(1,268:24685990,21430065:0,452978,115847 +r1,277:26451103,21430065:1765113,568825,115847 +k1,268:24685990,21430065:-1765113 +) +(1,268:24685990,21430065:1765113,452978,115847 +k1,268:24685990,21430065:3277 +h1,268:26447826,21430065:0,411205,112570 +) +k1,268:26812546,21430065:187773 +(1,268:26812546,21430065:0,452978,115847 +r1,277:28929371,21430065:2116825,568825,115847 +k1,268:26812546,21430065:-2116825 +) +(1,268:26812546,21430065:2116825,452978,115847 +k1,268:26812546,21430065:3277 +h1,268:28926094,21430065:0,411205,112570 +) +k1,268:29117145,21430065:187774 +k1,268:30670033,21430065:187773 +k1,268:31966991,21430065:0 +) +(1,269:7246811,22271553:24720180,513147,115847 +g1,268:8685981,22271553 +(1,268:8685981,22271553:0,452978,115847 +r1,277:10802806,22271553:2116825,568825,115847 +k1,268:8685981,22271553:-2116825 +) +(1,268:8685981,22271553:2116825,452978,115847 +k1,268:8685981,22271553:3277 +h1,268:10799529,22271553:0,411205,112570 +) +g1,268:11002035,22271553 +k1,269:31966991,22271553:19185654 +g1,269:31966991,22271553 +) +v1,271:7246811,23462019:0,393216,0 +(1,275:7246811,23770824:24720180,702021,196608 +g1,275:7246811,23770824 +g1,275:7246811,23770824 +g1,275:7050203,23770824 +(1,275:7050203,23770824:0,702021,196608 +r1,277:32163599,23770824:25113396,898629,196608 +k1,275:7050203,23770824:-25113396 +) +(1,275:7050203,23770824:25113396,702021,196608 +[1,275:7246811,23770824:24720180,505413,0 +(1,273:7246811,23669637:24720180,404226,101187 +(1,272:7246811,23669637:0,0,0 +g1,272:7246811,23669637 +g1,272:7246811,23669637 +g1,272:6919131,23669637 +(1,272:6919131,23669637:0,0,0 +) +g1,272:7246811,23669637 +) +k1,273:7246811,23669637:0 +h1,273:10408268,23669637:0,0,0 +k1,273:31966992,23669637:21558724 +g1,273:31966992,23669637 +) +] +) +g1,275:31966991,23770824 +g1,275:7246811,23770824 +g1,275:7246811,23770824 +g1,275:31966991,23770824 +g1,275:31966991,23770824 +) +h1,275:7246811,23967432:0,0,0 +] +) +] +r1,277:32583029,25081544:26214,5328677,0 +) +] +) +) +g1,277:32583029,24491720 +) +h1,277:6630773,25107758:0,0,0 +(1,280:6630773,26473534:25952256,513147,134348 +h1,279:6630773,26473534:983040,0,0 +k1,279:9677038,26473534:279990 +k1,279:11692421,26473534:279990 +k1,279:14396588,26473534:279990 +k1,279:16331361,26473534:279989 +k1,279:17602911,26473534:279990 +k1,279:19753299,26473534:279990 +k1,279:21601566,26473534:279990 +k1,279:22540848,26473534:279990 +k1,279:26127129,26473534:279990 +k1,279:27058546,26473534:279989 +k1,279:27694396,26473534:279990 +k1,279:29362439,26473534:279990 +k1,279:31140582,26473534:279990 +k1,279:32583029,26473534:0 +) +(1,280:6630773,27315022:25952256,513147,134348 +k1,279:8587021,27315022:220855 +k1,279:11503373,27315022:220856 +(1,279:11503373,27315022:0,452978,115847 +r1,279:13620198,27315022:2116825,568825,115847 +k1,279:11503373,27315022:-2116825 +) +(1,279:11503373,27315022:2116825,452978,115847 +k1,279:11503373,27315022:3277 +h1,279:13616921,27315022:0,411205,112570 +) +k1,279:14014723,27315022:220855 +k1,279:15183230,27315022:220856 +k1,279:18239172,27315022:220855 +k1,279:19853979,27315022:220856 +k1,279:21093919,27315022:220855 +k1,279:23364740,27315022:220855 +k1,279:24394966,27315022:220856 +k1,279:25634906,27315022:220855 +k1,279:27593777,27315022:220856 +k1,279:28473924,27315022:220855 +k1,279:29050640,27315022:220856 +k1,279:31966991,27315022:220855 +k1,279:32583029,27315022:0 +) +(1,280:6630773,28156510:25952256,505283,134348 +k1,279:7799186,28156510:149328 +k1,279:9857579,28156510:149329 +k1,279:10689792,28156510:149328 +k1,279:13433035,28156510:149328 +k1,279:16289656,28156510:149329 +k1,279:17458069,28156510:149328 +k1,279:18364993,28156510:149328 +k1,279:19615327,28156510:149329 +k1,279:21672408,28156510:149328 +k1,279:22840822,28156510:149329 +k1,279:27613715,28156510:149328 +k1,279:29151096,28156510:149328 +k1,279:30798578,28156510:149329 +k1,279:31563944,28156510:149328 +k1,279:32583029,28156510:0 +) +(1,280:6630773,28997998:25952256,513147,134348 +k1,279:8212201,28997998:193375 +k1,279:10118031,28997998:193374 +k1,279:12527834,28997998:193375 +k1,279:13740294,28997998:193375 +k1,279:15983635,28997998:193375 +k1,279:17979249,28997998:193374 +k1,279:19120275,28997998:193375 +k1,279:19669510,28997998:193375 +k1,279:20996003,28997998:193375 +k1,279:23761010,28997998:193374 +k1,279:25341782,28997998:193375 +k1,279:26554242,28997998:193375 +k1,279:28485632,28997998:193375 +k1,279:29338298,28997998:193374 +k1,279:29887533,28997998:193375 +k1,279:32583029,28997998:0 +) +(1,280:6630773,29839486:25952256,513147,126483 +k1,279:7427692,29839486:184157 +k1,279:8630934,29839486:184157 +k1,279:9229919,29839486:184142 +k1,279:11834321,29839486:184157 +k1,279:13150940,29839486:184157 +k1,279:14912549,29839486:184157 +k1,279:17565447,29839486:184157 +k1,279:19437811,29839486:184157 +k1,279:20569619,29839486:184157 +k1,279:21385543,29839486:184157 +k1,279:22047457,29839486:184157 +k1,279:23250699,29839486:184157 +k1,279:26130352,29839486:184157 +k1,279:26846006,29839486:184157 +k1,279:29411741,29839486:184157 +k1,279:30211936,29839486:184157 +k1,279:30751953,29839486:184157 +k1,279:32583029,29839486:0 +) +(1,280:6630773,30680974:25952256,513147,134348 +k1,279:7529534,30680974:215876 +k1,279:10218082,30680974:215875 +k1,279:11416998,30680974:215876 +k1,279:12917379,30680974:215875 +k1,279:13664752,30680974:215876 +k1,279:15458079,30680974:215875 +k1,279:16289993,30680974:215876 +k1,279:17524953,30680974:215875 +k1,279:19649893,30680974:215876 +k1,279:21578224,30680974:215875 +k1,279:22950810,30680974:215876 +k1,279:24270967,30680974:215875 +k1,279:26901189,30680974:215876 +k1,279:29780447,30680974:215875 +k1,279:31563944,30680974:215876 +k1,279:32583029,30680974:0 +) +(1,280:6630773,31522462:25952256,513147,11795 +k1,279:8068414,31522462:269134 +k1,279:10256443,31522462:269135 +k1,279:11544662,31522462:269134 +k1,279:14509293,31522462:269135 +k1,279:15309924,31522462:269134 +k1,279:17446834,31522462:269134 +k1,279:18367397,31522462:269135 +k1,279:20555425,31522462:269134 +k1,279:21282657,31522462:269135 +k1,279:22083288,31522462:269134 +k1,279:24907671,31522462:269134 +k1,279:25804641,31522462:269135 +k1,279:28497952,31522462:269134 +k1,279:29923797,31522462:269135 +k1,279:31297213,31522462:269134 +k1,279:32583029,31522462:0 +) +(1,280:6630773,32363950:25952256,513147,134348 +g1,279:8900284,32363950 +g1,279:10047164,32363950 +g1,279:11634446,32363950 +g1,279:14392201,32363950 +g1,279:15610515,32363950 +g1,279:18759519,32363950 +k1,280:32583029,32363950:10839656 +g1,280:32583029,32363950 +) +(1,282:6630773,33205438:25952256,513147,134348 +h1,281:6630773,33205438:983040,0,0 +k1,281:8490361,33205438:248713 +k1,281:11405079,33205438:248713 +k1,281:12305220,33205438:248713 +k1,281:13941986,33205438:248713 +k1,281:16192824,33205438:248713 +k1,281:17360352,33205438:248713 +k1,281:21390492,33205438:248713 +k1,281:24307176,33205438:248713 +k1,281:26533111,33205438:248714 +k1,281:29478631,33205438:248713 +k1,281:30413506,33205438:248713 +k1,281:31900144,33205438:248663 +k1,281:32583029,33205438:0 +) +(1,282:6630773,34046926:25952256,513147,134348 +k1,281:8712687,34046926:213483 +k1,281:10413196,34046926:213497 +k1,281:12501023,34046926:213497 +k1,281:13818802,34046926:213497 +k1,281:14780065,34046926:213497 +k1,281:17792605,34046926:213497 +k1,281:19607802,34046926:213497 +k1,281:21622228,34046926:213497 +k1,281:24394252,34046926:213498 +k1,281:25626834,34046926:213497 +k1,281:27318823,34046926:213497 +k1,281:29329317,34046926:213497 +k1,281:30158852,34046926:213497 +k1,281:32583029,34046926:0 +) +(1,282:6630773,34888414:25952256,513147,134348 +k1,281:7551171,34888414:237513 +k1,281:9601410,34888414:237514 +k1,281:12934844,34888414:237513 +k1,281:16082811,34888414:237513 +k1,281:18750400,34888414:237514 +k1,281:20375966,34888414:237513 +k1,281:22441933,34888414:237513 +k1,281:23627098,34888414:237514 +k1,281:24883696,34888414:237513 +k1,281:28147006,34888414:237513 +k1,281:29575965,34888414:237514 +k1,281:31202841,34888414:237513 +k1,281:32583029,34888414:0 +) +(1,282:6630773,35729902:25952256,505283,134348 +k1,281:9125470,35729902:248123 +k1,281:11156827,35729902:248122 +k1,281:11760810,35729902:248123 +k1,281:14589084,35729902:248122 +k1,281:15368704,35729902:248123 +k1,281:17761164,35729902:248122 +k1,281:19276753,35729902:248123 +k1,281:20295578,35729902:248122 +k1,281:20958495,35729902:248074 +k1,281:23729098,35729902:248122 +k1,281:24765619,35729902:248123 +k1,281:26401794,35729902:248122 +k1,281:28478371,35729902:248123 +k1,281:29718054,35729902:248123 +k1,281:31931601,35729902:248122 +k1,281:32583029,35729902:0 +) +(1,282:6630773,36571390:25952256,513147,134348 +k1,281:7848619,36571390:198761 +k1,281:9980693,36571390:198762 +k1,281:11567507,36571390:198761 +k1,281:12433424,36571390:198761 +k1,281:13220698,36571390:198761 +k1,281:14047295,36571390:198762 +k1,281:16912061,36571390:198761 +k1,281:17762250,36571390:198761 +k1,281:19657739,36571390:198762 +k1,281:23049414,36571390:198761 +k1,281:24636228,36571390:198761 +k1,281:26837114,36571390:198761 +k1,281:28487498,36571390:198762 +k1,281:31266411,36571390:198761 +k1,282:32583029,36571390:0 +) +(1,282:6630773,37412878:25952256,513147,134348 +k1,281:8436945,37412878:149422 +k1,281:9357070,37412878:149422 +k1,281:11255648,37412878:149422 +k1,281:12064362,37412878:149422 +k1,281:13002182,37412878:149422 +k1,281:17775169,37412878:149422 +k1,281:19312645,37412878:149423 +k1,281:21290521,37412878:149422 +k1,281:22387594,37412878:149422 +k1,281:24248161,37412878:149422 +k1,281:25049011,37412878:149422 +k1,281:27654067,37412878:149422 +k1,281:29498905,37412878:149422 +k1,281:32583029,37412878:0 +) +(1,282:6630773,38254366:25952256,505283,134348 +g1,281:9201750,38254366 +g1,281:12219683,38254366 +g1,281:13912478,38254366 +g1,281:14797869,38254366 +g1,281:16434303,38254366 +g1,281:18827677,38254366 +g1,281:19709791,38254366 +g1,281:22227684,38254366 +g1,281:25739103,38254366 +g1,281:26957417,38254366 +g1,281:30597941,38254366 +k1,282:32583029,38254366:298191 +g1,282:32583029,38254366 +) +(1,284:6630773,39095854:25952256,505283,134348 +h1,283:6630773,39095854:983040,0,0 +k1,283:9680620,39095854:234420 +k1,283:10906600,39095854:234420 +k1,283:12833159,39095854:234419 +k1,283:14336356,39095854:234420 +k1,283:16036816,39095854:234420 +k1,283:17555742,39095854:234420 +k1,283:19070080,39095854:234420 +k1,283:21335460,39095854:234419 +k1,283:22221308,39095854:234420 +k1,283:22870536,39095854:234385 +k1,283:27931026,39095854:234419 +k1,283:30723972,39095854:234420 +k1,283:31314252,39095854:234420 +k1,283:32583029,39095854:0 +) +(1,284:6630773,39937342:25952256,505283,134348 +k1,283:8948399,39937342:185084 +k1,283:11007814,39937342:185085 +k1,283:12658938,39937342:185084 +k1,283:13948305,39937342:185085 +k1,283:14881155,39937342:185084 +k1,283:16420213,39937342:185084 +k1,283:20087881,39937342:185085 +k1,283:21971003,39937342:185084 +k1,283:25167467,39937342:185085 +k1,283:27943189,39937342:185084 +k1,283:28484134,39937342:185085 +k1,283:30867296,39937342:185084 +k1,284:32583029,39937342:0 +) +(1,284:6630773,40778830:25952256,513147,134348 +k1,283:7946988,40778830:238803 +k1,283:9954608,40778830:238803 +k1,283:10941177,40778830:238803 +k1,283:13157201,40778830:238803 +k1,283:14343655,40778830:238803 +k1,283:14938318,40778830:238803 +k1,283:17375198,40778830:238802 +k1,283:20464162,40778830:238803 +k1,283:21389127,40778830:238803 +k1,283:23008118,40778830:238803 +k1,283:24928575,40778830:238803 +k1,283:28092250,40778830:238803 +k1,283:29522498,40778830:238803 +k1,283:32583029,40778830:0 +) +(1,284:6630773,41620318:25952256,513147,134348 +k1,283:7879103,41620318:229245 +k1,283:12934419,41620318:229245 +k1,283:15623885,41620318:229244 +k1,283:17383396,41620318:229245 +k1,283:18271933,41620318:229245 +k1,283:21460784,41620318:229245 +k1,283:22709114,41620318:229245 +k1,283:26022482,41620318:229244 +k1,283:27968770,41620318:229245 +k1,283:30778167,41620318:229245 +k1,284:32583029,41620318:0 +) +(1,284:6630773,42461806:25952256,513147,134348 +k1,283:9010385,42461806:184811 +k1,283:10670412,42461806:184812 +k1,283:12124000,42461806:184811 +k1,283:13774852,42461806:184812 +k1,283:15353614,42461806:184811 +k1,283:18765419,42461806:184812 +k1,283:23776301,42461806:184811 +k1,283:24908764,42461806:184812 +k1,283:26602214,42461806:184811 +k1,283:28117407,42461806:184812 +k1,283:31386342,42461806:184811 +k1,283:32583029,42461806:0 +) +(1,284:6630773,43303294:25952256,513147,134348 +k1,283:11221681,43303294:223589 +k1,283:12128180,43303294:223614 +k1,283:15093140,43303294:223589 +k1,283:15976045,43303294:223613 +k1,283:19110113,43303294:223614 +k1,283:21763802,43303294:223614 +k1,283:24333604,43303294:223613 +k1,283:28364204,43303294:223614 +k1,283:29535468,43303294:223613 +k1,283:30778167,43303294:223614 +k1,284:32583029,43303294:0 +) +(1,284:6630773,44144782:25952256,505283,134348 +k1,283:8853239,44144782:184296 +k1,283:10581564,44144782:184297 +k1,283:11417288,44144782:184296 +k1,283:12870362,44144782:184297 +k1,283:14694369,44144782:184296 +k1,283:16070111,44144782:184297 +k1,283:20092195,44144782:184296 +k1,283:21085861,44144782:184296 +k1,283:22600539,44144782:184297 +k1,283:23436263,44144782:184296 +k1,283:25616787,44144782:184297 +k1,283:27494533,44144782:184296 +k1,283:28496719,44144782:184297 +k1,283:31591469,44144782:184296 +k1,283:32583029,44144782:0 +) +(1,284:6630773,44986270:25952256,505283,134348 +k1,283:10595974,44986270:235547 +k1,283:11593050,44986270:235548 +k1,283:15835468,44986270:235547 +k1,283:18700319,44986270:235547 +k1,283:20316054,44986270:235547 +k1,283:22731985,44986270:235548 +k1,283:23715298,44986270:235547 +k1,283:25510602,44986270:235547 +k1,283:26362187,44986270:235547 +k1,283:29263740,44986270:235548 +k1,283:30150715,44986270:235547 +k1,283:32168186,44986270:235547 +k1,284:32583029,44986270:0 +) +] +(1,286:32583029,45706769:0,0,0 +g1,286:32583029,45706769 +) +) +] +(1,286:6630773,47279633:25952256,0,0 +h1,286:6630773,47279633:25952256,0,0 +) +] +h1,286:4262630,4025873:0,0,0 +] +!23205 }22 -Input:133:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!96 +Input:129:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!102 {23 -[1,325:4262630,47279633:28320399,43253760,0 -(1,325:4262630,4025873:0,0,0 -[1,325:-473657,4025873:25952256,0,0 -(1,325:-473657,-710414:25952256,0,0 -h1,325:-473657,-710414:0,0,0 -(1,325:-473657,-710414:0,0,0 -(1,325:-473657,-710414:0,0,0 -g1,325:-473657,-710414 -(1,325:-473657,-710414:65781,0,65781 -g1,325:-407876,-710414 -[1,325:-407876,-644633:0,0,0 +[1,329:4262630,47279633:28320399,43253760,0 +(1,329:4262630,4025873:0,0,0 +[1,329:-473657,4025873:25952256,0,0 +(1,329:-473657,-710414:25952256,0,0 +h1,329:-473657,-710414:0,0,0 +(1,329:-473657,-710414:0,0,0 +(1,329:-473657,-710414:0,0,0 +g1,329:-473657,-710414 +(1,329:-473657,-710414:65781,0,65781 +g1,329:-407876,-710414 +[1,329:-407876,-644633:0,0,0 ] ) -k1,325:-473657,-710414:-65781 +k1,329:-473657,-710414:-65781 ) ) -k1,325:25478599,-710414:25952256 -g1,325:25478599,-710414 +k1,329:25478599,-710414:25952256 +g1,329:25478599,-710414 ) ] ) -[1,325:6630773,47279633:25952256,43253760,0 -[1,325:6630773,4812305:25952256,786432,0 -(1,325:6630773,4812305:25952256,505283,134348 -(1,325:6630773,4812305:25952256,505283,134348 -g1,325:3078558,4812305 -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,2439708:0,1703936,0 -k1,325:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,325:2537886,2439708:1179648,16384,0 +[1,329:6630773,47279633:25952256,43253760,0 +[1,329:6630773,4812305:25952256,786432,0 +(1,329:6630773,4812305:25952256,505283,134348 +(1,329:6630773,4812305:25952256,505283,134348 +g1,329:3078558,4812305 +[1,329:3078558,4812305:0,0,0 +(1,329:3078558,2439708:0,1703936,0 +k1,329:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,329:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,325:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,329:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,2439708:0,1703936,0 -g1,325:29030814,2439708 -g1,325:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,325:36151628,1915420:16384,1179648,0 +[1,329:3078558,4812305:0,0,0 +(1,329:3078558,2439708:0,1703936,0 +g1,329:29030814,2439708 +g1,329:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,329:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,325:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,329:37855564,2439708:1179648,16384,0 +) ) +k1,329:3078556,2439708:-34777008 ) -k1,325:3078556,2439708:-34777008 +] +[1,329:3078558,4812305:0,0,0 +(1,329:3078558,49800853:0,16384,2228224 +k1,329:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,329:2537886,49800853:1179648,16384,0 +) +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,329:3078558,51504789:16384,1179648,0 +) +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,49800853:0,16384,2228224 -k1,325:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,325:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,325:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +) +] +[1,329:3078558,4812305:0,0,0 +(1,329:3078558,49800853:0,16384,2228224 +g1,329:29030814,49800853 +g1,329:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,329:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -) -) -] -[1,325:3078558,4812305:0,0,0 -(1,325:3078558,49800853:0,16384,2228224 -g1,325:29030814,49800853 -g1,325:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,325:36151628,51504789:16384,1179648,0 -) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 -) -] -) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,325:37855564,49800853:1179648,16384,0 -) -) -k1,325:3078556,49800853:-34777008 -) -] -g1,325:6630773,4812305 -k1,325:22047465,4812305:14619774 -g1,325:22869941,4812305 -g1,325:24054831,4812305 -g1,325:27195316,4812305 -g1,325:28604995,4812305 -g1,325:29789885,4812305 -) -) -] -[1,325:6630773,45706769:25952256,40108032,0 -(1,325:6630773,45706769:25952256,40108032,0 -(1,325:6630773,45706769:0,0,0 -g1,325:6630773,45706769 -) -[1,325:6630773,45706769:25952256,40108032,0 -v1,307:6630773,6254097:0,393216,0 -(1,307:6630773,19226575:25952256,13365694,196608 -g1,307:6630773,19226575 -g1,307:6630773,19226575 -g1,307:6434165,19226575 -(1,307:6434165,19226575:0,13365694,196608 -r1,307:32779637,19226575:26345472,13562302,196608 -k1,307:6434165,19226575:-26345472 -) -(1,307:6434165,19226575:26345472,13365694,196608 -[1,307:6630773,19226575:25952256,13169086,0 -(1,306:6630773,6461715:25952256,404226,101187 -h1,306:6630773,6461715:0,0,0 -g1,306:7579210,6461715 -g1,306:8527647,6461715 -g1,306:10108376,6461715 -g1,306:10740668,6461715 -g1,306:11689105,6461715 -g1,306:15798999,6461715 -h1,306:17063582,6461715:0,0,0 -k1,306:32583029,6461715:15519447 -g1,306:32583029,6461715 -) -(1,306:6630773,7127893:25952256,379060,0 -h1,306:6630773,7127893:0,0,0 -h1,306:7263064,7127893:0,0,0 -k1,306:32583028,7127893:25319964 -g1,306:32583028,7127893 -) -(1,306:6630773,7794071:25952256,410518,107478 -h1,306:6630773,7794071:0,0,0 -g1,306:7579210,7794071 -g1,306:7895356,7794071 -g1,306:8211502,7794071 -g1,306:8843794,7794071 -g1,306:10424523,7794071 -g1,306:12005252,7794071 -g1,306:14534418,7794071 -g1,306:15482855,7794071 -g1,306:16115147,7794071 -g1,306:18960458,7794071 -g1,306:20225041,7794071 -g1,306:24018789,7794071 -g1,306:25283372,7794071 -h1,306:28760974,7794071:0,0,0 -k1,306:32583029,7794071:3822055 -g1,306:32583029,7794071 -) -(1,306:6630773,8460249:25952256,410518,107478 -h1,306:6630773,8460249:0,0,0 -g1,306:7579210,8460249 -g1,306:7895356,8460249 -g1,306:8211502,8460249 -g1,306:11689105,8460249 -g1,306:12321397,8460249 -g1,306:15799000,8460249 -g1,306:17063583,8460249 -g1,306:20857331,8460249 -g1,306:24334934,8460249 -g1,306:26864100,8460249 -h1,306:29393265,8460249:0,0,0 -k1,306:32583029,8460249:3189764 -g1,306:32583029,8460249 -) -(1,306:6630773,9126427:25952256,404226,107478 -h1,306:6630773,9126427:0,0,0 -g1,306:7579210,9126427 -g1,306:7895356,9126427 -g1,306:8211502,9126427 -g1,306:9476085,9126427 -k1,306:9476085,9126427:0 -h1,306:18012019,9126427:0,0,0 -k1,306:32583029,9126427:14571010 -g1,306:32583029,9126427 -) -(1,306:6630773,9792605:25952256,379060,0 -h1,306:6630773,9792605:0,0,0 -h1,306:7263064,9792605:0,0,0 -k1,306:32583028,9792605:25319964 -g1,306:32583028,9792605 -) -(1,306:6630773,10458783:25952256,410518,101187 -h1,306:6630773,10458783:0,0,0 -g1,306:7579210,10458783 -g1,306:8211502,10458783 -g1,306:10424522,10458783 -g1,306:12321396,10458783 -g1,306:13585979,10458783 -g1,306:15482853,10458783 -g1,306:17379727,10458783 -h1,306:18012018,10458783:0,0,0 -k1,306:32583029,10458783:14571011 -g1,306:32583029,10458783 -) -(1,306:6630773,11124961:25952256,379060,0 -h1,306:6630773,11124961:0,0,0 -h1,306:7263064,11124961:0,0,0 -k1,306:32583028,11124961:25319964 -g1,306:32583028,11124961 -) -(1,306:6630773,11791139:25952256,404226,107478 -h1,306:6630773,11791139:0,0,0 -g1,306:7579210,11791139 -g1,306:7895356,11791139 -g1,306:8211502,11791139 -k1,306:8211502,11791139:0 -h1,306:11056813,11791139:0,0,0 -k1,306:32583029,11791139:21526216 -g1,306:32583029,11791139 -) -(1,306:6630773,12457317:25952256,410518,107478 -h1,306:6630773,12457317:0,0,0 -g1,306:7579210,12457317 -g1,306:7895356,12457317 -g1,306:8211502,12457317 -g1,306:8527648,12457317 -g1,306:8843794,12457317 -g1,306:10740668,12457317 -g1,306:11372960,12457317 -g1,306:12637543,12457317 -g1,306:13269835,12457317 -g1,306:16115146,12457317 -g1,306:17379729,12457317 -g1,306:21173477,12457317 -g1,306:22438060,12457317 -g1,306:26231808,12457317 -k1,306:26231808,12457317:0 -h1,306:29709411,12457317:0,0,0 -k1,306:32583029,12457317:2873618 -g1,306:32583029,12457317 -) -(1,306:6630773,13123495:25952256,404226,82312 -h1,306:6630773,13123495:0,0,0 -g1,306:7579210,13123495 -g1,306:7895356,13123495 -g1,306:8211502,13123495 -g1,306:8527648,13123495 -g1,306:8843794,13123495 -g1,306:11056814,13123495 -g1,306:11689106,13123495 -g1,306:12953689,13123495 -g1,306:14534418,13123495 -k1,306:14534418,13123495:0 -h1,306:16747438,13123495:0,0,0 -k1,306:32583029,13123495:15835591 -g1,306:32583029,13123495 -) -(1,306:6630773,13789673:25952256,410518,107478 -h1,306:6630773,13789673:0,0,0 -g1,306:7579210,13789673 -g1,306:7895356,13789673 -g1,306:8211502,13789673 -g1,306:8527648,13789673 -g1,306:8843794,13789673 -g1,306:12953688,13789673 -g1,306:13585980,13789673 -g1,306:14534417,13789673 -g1,306:18012020,13789673 -g1,306:19276603,13789673 -g1,306:23070351,13789673 -k1,306:23070351,13789673:0 -h1,306:26547954,13789673:0,0,0 -k1,306:32583029,13789673:6035075 -g1,306:32583029,13789673 -) -(1,306:6630773,14455851:25952256,404226,82312 -h1,306:6630773,14455851:0,0,0 -g1,306:7579210,14455851 -g1,306:7895356,14455851 -g1,306:8211502,14455851 -g1,306:8527648,14455851 -g1,306:8843794,14455851 -g1,306:11372960,14455851 -g1,306:12005252,14455851 -g1,306:14850564,14455851 -k1,306:14850564,14455851:0 -h1,306:17695875,14455851:0,0,0 -k1,306:32583029,14455851:14887154 -g1,306:32583029,14455851 -) -(1,306:6630773,15122029:25952256,404226,101187 -h1,306:6630773,15122029:0,0,0 -g1,306:7579210,15122029 -g1,306:7895356,15122029 -g1,306:8211502,15122029 -g1,306:8527648,15122029 -g1,306:8843794,15122029 -g1,306:10424523,15122029 -g1,306:11056815,15122029 -k1,306:11056815,15122029:0 -h1,306:13269835,15122029:0,0,0 -k1,306:32583029,15122029:19313194 -g1,306:32583029,15122029 -) -(1,306:6630773,15788207:25952256,404226,107478 -h1,306:6630773,15788207:0,0,0 -g1,306:7579210,15788207 -g1,306:7895356,15788207 -g1,306:8211502,15788207 -g1,306:8527648,15788207 -g1,306:8843794,15788207 -g1,306:10108377,15788207 -g1,306:10740669,15788207 -k1,306:10740669,15788207:0 -h1,306:19908895,15788207:0,0,0 -k1,306:32583029,15788207:12674134 -g1,306:32583029,15788207 -) -(1,306:6630773,16454385:25952256,404226,76021 -h1,306:6630773,16454385:0,0,0 -g1,306:7579210,16454385 -g1,306:7895356,16454385 -g1,306:8211502,16454385 -h1,306:8527648,16454385:0,0,0 -k1,306:32583028,16454385:24055380 -g1,306:32583028,16454385 -) -(1,306:6630773,17120563:25952256,379060,0 -h1,306:6630773,17120563:0,0,0 -h1,306:7263064,17120563:0,0,0 -k1,306:32583028,17120563:25319964 -g1,306:32583028,17120563 -) -(1,306:6630773,17786741:25952256,410518,107478 -h1,306:6630773,17786741:0,0,0 -g1,306:7579210,17786741 -g1,306:8527647,17786741 -g1,306:10108376,17786741 -g1,306:12953687,17786741 -g1,306:13585979,17786741 -g1,306:14850562,17786741 -g1,306:15798999,17786741 -g1,306:17379728,17786741 -g1,306:18644311,17786741 -g1,306:20857331,17786741 -g1,306:21805768,17786741 -g1,306:24651079,17786741 -g1,306:25599517,17786741 -g1,306:27812537,17786741 -g1,306:29393266,17786741 -h1,306:30025557,17786741:0,0,0 -k1,306:32583029,17786741:2557472 -g1,306:32583029,17786741 -) -(1,306:6630773,18452919:25952256,410518,107478 -h1,306:6630773,18452919:0,0,0 -g1,306:7579210,18452919 -g1,306:9159939,18452919 -g1,306:11056813,18452919 -g1,306:12005250,18452919 -g1,306:13269833,18452919 -g1,306:14850562,18452919 -g1,306:18012019,18452919 -g1,306:19276602,18452919 -g1,306:20857331,18452919 -g1,306:27812537,18452919 -h1,306:28760974,18452919:0,0,0 -k1,306:32583029,18452919:3822055 -g1,306:32583029,18452919 -) -(1,306:6630773,19119097:25952256,404226,107478 -h1,306:6630773,19119097:0,0,0 -g1,306:7579210,19119097 -g1,306:9792230,19119097 -g1,306:10424522,19119097 -h1,306:13269833,19119097:0,0,0 -k1,306:32583029,19119097:19313196 -g1,306:32583029,19119097 -) -] -) -g1,307:32583029,19226575 -g1,307:6630773,19226575 -g1,307:6630773,19226575 -g1,307:32583029,19226575 -g1,307:32583029,19226575 -) -h1,307:6630773,19423183:0,0,0 -v1,311:6630773,21216138:0,393216,0 -(1,312:6630773,23502170:25952256,2679248,616038 -g1,312:6630773,23502170 -(1,312:6630773,23502170:25952256,2679248,616038 -(1,312:6630773,24118208:25952256,3295286,0 -[1,312:6630773,24118208:25952256,3295286,0 -(1,312:6630773,24091994:25952256,3242858,0 -r1,312:6656987,24091994:26214,3242858,0 -[1,312:6656987,24091994:25899828,3242858,0 -(1,312:6656987,23502170:25899828,2063210,0 -[1,312:7246811,23502170:24720180,2063210,0 -(1,312:7246811,22526334:24720180,1087374,134348 -k1,311:8684319,22526334:227805 -k1,311:10458774,22526334:227805 -k1,311:11299341,22526334:227805 -k1,311:12546231,22526334:227805 -k1,311:14162089,22526334:227805 -k1,311:15888047,22526334:227805 -k1,311:17063503,22526334:227805 -k1,311:19986804,22526334:227805 -(1,311:19986804,22526334:0,452978,115847 -r1,312:23510476,22526334:3523672,568825,115847 -k1,311:19986804,22526334:-3523672 -) -(1,311:19986804,22526334:3523672,452978,115847 -k1,311:19986804,22526334:3277 -h1,311:23507199,22526334:0,411205,112570 -) -k1,311:23738281,22526334:227805 -k1,311:24913737,22526334:227805 -k1,311:25497402,22526334:227805 -k1,311:29097034,22526334:227805 -k1,311:29984131,22526334:227805 -k1,311:31508894,22526334:227805 -k1,311:31966991,22526334:0 -) -(1,312:7246811,23367822:24720180,513147,134348 -g1,311:7977537,23367822 -g1,311:11386064,23367822 -g1,311:12532944,23367822 -g1,311:14443318,23367822 -g1,311:15293975,23367822 -g1,311:16632220,23367822 -g1,311:17246292,23367822 -g1,311:18636966,23367822 -g1,311:21746649,23367822 -g1,311:23643916,23367822 -g1,311:25578538,23367822 -k1,312:31966991,23367822:4575727 -g1,312:31966991,23367822 -) -] -) -] -r1,312:32583029,24091994:26214,3242858,0 -) -] -) -) -g1,312:32583029,23502170 -) -h1,312:6630773,24118208:0,0,0 -(1,314:6630773,26209468:25952256,564462,147783 -(1,314:6630773,26209468:2450326,534184,0 -g1,314:6630773,26209468 -g1,314:9081099,26209468 -) -g1,314:12875896,26209468 -g1,314:14681741,26209468 -g1,314:16681507,26209468 -g1,314:19167878,26209468 -k1,314:32583029,26209468:10791089 -g1,314:32583029,26209468 -) -(1,317:6630773,27444172:25952256,513147,134348 -k1,316:8578448,27444172:164440 -k1,316:12083259,27444172:164441 -k1,316:13635752,27444172:164440 -k1,316:15802318,27444172:164441 -k1,316:19026634,27444172:164440 -k1,316:20382520,27444172:164441 -k1,316:23190683,27444172:164441 -k1,316:25267464,27444172:164440 -k1,316:26044666,27444172:164440 -k1,316:27815394,27444172:164441 -k1,316:29337085,27444172:164440 -k1,316:30152954,27444172:164441 -k1,316:32583029,27444172:0 -) -(1,317:6630773,28285660:25952256,513147,126483 -k1,316:7897382,28285660:247524 -k1,316:11951892,28285660:247524 -k1,316:14671435,28285660:247525 -k1,316:15938044,28285660:247524 -k1,316:17569688,28285660:247524 -k1,316:19172497,28285660:247524 -k1,316:20071450,28285660:247525 -k1,316:22304060,28285660:247524 -k1,316:23083081,28285660:247524 -k1,316:23982033,28285660:247524 -k1,316:26299840,28285660:247525 -k1,316:29075088,28285660:247524 -k1,316:31635378,28285660:247524 -k1,316:32583029,28285660:0 -) -(1,317:6630773,29127148:25952256,513147,134348 -k1,316:9289064,29127148:167268 -k1,316:12044349,29127148:167268 -k1,316:12863045,29127148:167268 -k1,316:14690995,29127148:167268 -k1,316:18126543,29127148:167268 -k1,316:20077046,29127148:167268 -k1,316:21941041,29127148:167268 -k1,316:23793895,29127148:167268 -k1,316:24988112,29127148:167268 -k1,316:25806808,29127148:167268 -k1,316:27608544,29127148:167268 -k1,316:28131672,29127148:167268 -k1,316:31149101,29127148:167268 -k1,316:32583029,29127148:0 -) -(1,317:6630773,29968636:25952256,513147,134348 -k1,316:7253447,29968636:164577 -k1,316:7949521,29968636:164577 -k1,316:9539507,29968636:164578 -k1,316:10355512,29968636:164577 -k1,316:11598812,29968636:164577 -k1,316:12711040,29968636:164577 -k1,316:14437340,29968636:164577 -k1,316:16457897,29968636:164577 -k1,316:18190096,29968636:164578 -k1,316:19848894,29968636:164577 -k1,316:22369490,29968636:164577 -k1,316:23216952,29968636:164577 -k1,316:24143057,29968636:164577 -k1,316:26700354,29968636:164578 -k1,316:28323762,29968636:164577 -k1,316:29818720,29968636:164577 -k1,316:32583029,29968636:0 -) -(1,317:6630773,30810124:25952256,513147,134348 -k1,316:7444917,30810124:198106 -k1,316:7998883,30810124:198106 -k1,316:10708984,30810124:198106 -k1,316:12884967,30810124:198106 -k1,316:15239208,30810124:198106 -k1,316:17220549,30810124:198106 -k1,316:19811373,30810124:198105 -k1,316:22729223,30810124:198106 -k1,316:23874980,30810124:198106 -k1,316:25634809,30810124:198106 -k1,316:26989625,30810124:198106 -k1,316:29048298,30810124:198106 -k1,316:29897832,30810124:198106 -k1,316:31821501,30810124:198106 -k1,316:32583029,30810124:0 -) -(1,317:6630773,31651612:25952256,505283,126483 -g1,316:8378618,31651612 -g1,316:9109344,31651612 -g1,316:11595780,31651612 -g1,316:14885032,31651612 -g1,316:15770423,31651612 -k1,317:32583029,31651612:12790662 -g1,317:32583029,31651612 -) -(1,318:6630773,33279532:25952256,505283,126483 -(1,318:6630773,33279532:2809528,485622,0 -g1,318:6630773,33279532 -g1,318:9440301,33279532 -) -k1,318:32583029,33279532:19695534 -g1,318:32583029,33279532 -) -(1,320:6630773,34514236:25952256,513147,134348 -k1,319:7546311,34514236:287703 -k1,319:9435714,34514236:287703 -k1,319:12251141,34514236:287703 -k1,319:15025279,34514236:287702 -k1,319:15668842,34514236:287703 -k1,319:18154623,34514236:287703 -k1,319:21202047,34514236:287703 -k1,319:22021247,34514236:287703 -k1,319:25147970,34514236:287703 -k1,319:27003293,34514236:287702 -k1,319:29034909,34514236:287703 -k1,319:31391584,34514236:287703 -k1,319:32583029,34514236:0 -) -(1,320:6630773,35355724:25952256,513147,134348 -k1,319:10169062,35355724:290325 -k1,319:13727666,35355724:290324 -k1,319:15735034,35355724:290325 -k1,319:17741746,35355724:290324 -k1,319:18691363,35355724:290325 -k1,319:23066546,35355724:290324 -k1,319:24503096,35355724:290325 -k1,319:25885905,35355724:290324 -k1,319:26835522,35355724:290325 -k1,319:30004188,35355724:290325 -k1,319:30977397,35355724:290324 -k1,320:32583029,35355724:0 -) -(1,320:6630773,36197212:25952256,513147,134348 -k1,319:9798027,36197212:193230 -k1,319:13007225,36197212:193231 -k1,319:14332917,36197212:193230 -k1,319:16813354,36197212:193230 -k1,319:18849457,36197212:193231 -k1,319:19658725,36197212:193230 -k1,319:20871040,36197212:193230 -k1,319:22445114,36197212:193230 -k1,319:24558550,36197212:193231 -k1,319:27009495,36197212:193230 -k1,319:29068535,36197212:193230 -k1,319:29877804,36197212:193231 -k1,319:30426894,36197212:193230 -k1,319:32583029,36197212:0 -) -(1,320:6630773,37038700:25952256,505283,134348 -k1,319:10211482,37038700:146622 -k1,319:12276997,37038700:146621 -k1,319:16508478,37038700:146622 -k1,319:17787562,37038700:146622 -k1,319:20221391,37038700:146622 -k1,319:22210884,37038700:146621 -k1,319:22973544,37038700:146622 -k1,319:24139251,37038700:146622 -k1,319:26721191,37038700:146622 -k1,319:29632121,37038700:146621 -k1,319:30845014,37038700:146622 -k1,319:32583029,37038700:0 -) -(1,320:6630773,37880188:25952256,513147,134348 -k1,319:9903760,37880188:247190 -k1,319:11342394,37880188:247189 -k1,319:13916767,37880188:247190 -k1,319:15183042,37880188:247190 -k1,319:18106722,37880188:247190 -k1,319:21979363,37880188:247189 -k1,319:22842591,37880188:247190 -k1,319:24108866,37880188:247190 -k1,319:26152398,37880188:247190 -k1,319:27027422,37880188:247189 -k1,319:29607694,37880188:247190 -k1,319:32583029,37880188:0 -) -(1,320:6630773,38721676:25952256,513147,134348 -k1,319:7857607,38721676:207749 -k1,319:9750942,38721676:207749 -k1,319:11720299,38721676:207749 -k1,319:13796479,38721676:207749 -k1,319:15136690,38721676:207749 -k1,319:17533342,38721676:207749 -k1,319:20359910,38721676:207749 -k1,319:22026490,38721676:207749 -k1,319:24764584,38721676:207749 -k1,319:25631625,38721676:207749 -k1,319:28064977,38721676:207749 -k1,319:28628586,38721676:207749 -k1,319:31391584,38721676:207749 -k1,319:32583029,38721676:0 -) -(1,320:6630773,39563164:25952256,513147,7863 -g1,319:8807223,39563164 -k1,320:32583029,39563164:21344420 -g1,320:32583029,39563164 -) -(1,323:7679349,40999318:24903680,513147,134348 -(1,322:7679349,40999318:0,355205,0 -g1,322:7679349,40999318 -g1,322:6368629,40999318 -g1,322:6040949,40999318 -(1,322:6040949,40999318:1310720,355205,0 -k1,322:7351669,40999318:1310720 -(1,322:7351669,40999318:0,355205,0 -k1,322:6953210,40999318:-398459 -) -) -g1,322:7679349,40999318 -) -k1,322:8857388,40999318:280196 -k1,322:10596415,40999318:280196 -k1,322:14423420,40999318:280197 -k1,322:16009749,40999318:280196 -k1,322:18360227,40999318:280196 -k1,322:19588074,40999318:280196 -k1,322:22359293,40999318:280196 -k1,322:25227507,40999318:280197 -k1,322:26159131,40999318:280196 -k1,322:27898158,40999318:280196 -k1,322:31116333,40999318:280196 -k1,322:32583029,40999318:0 -) -(1,323:7679349,41840806:24903680,505283,126483 -k1,322:9833935,41840806:176709 -k1,322:11202088,41840806:176708 -k1,322:11994835,41840806:176709 -k1,322:13190629,41840806:176709 -k1,322:18367079,41840806:176708 -k1,322:19648725,41840806:176709 -k1,322:22475054,41840806:176708 -k1,322:23936269,41840806:176709 -k1,322:25283451,41840806:176709 -k1,322:28742857,41840806:176708 -k1,322:30122807,41840806:176709 -k1,322:32583029,41840806:0 -) -(1,323:7679349,42682294:24903680,505283,126483 -g1,322:10298823,42682294 -g1,322:12196090,42682294 -g1,322:13565792,42682294 -g1,322:15167491,42682294 -g1,322:16825551,42682294 -k1,323:32583029,42682294:12612405 -g1,323:32583029,42682294 -) -(1,324:7679349,44023793:24903680,513147,126483 -(1,323:7679349,44023793:0,355205,0 -g1,323:7679349,44023793 -g1,323:6368629,44023793 -g1,323:6040949,44023793 -(1,323:6040949,44023793:1310720,355205,0 -k1,323:7351669,44023793:1310720 -(1,323:7351669,44023793:0,355205,0 -k1,323:6953210,44023793:-398459 -) -) -g1,323:7679349,44023793 -) -k1,323:10322535,44023793:258331 -k1,323:10936726,44023793:258331 -k1,323:12725323,44023793:258331 -k1,323:16715929,44023793:258331 -k1,323:17633552,44023793:258331 -k1,323:18910967,44023793:258330 -k1,323:22019459,44023793:258331 -k1,323:23469235,44023793:258331 -k1,323:24493682,44023793:258331 -k1,323:25771098,44023793:258331 -k1,323:28602372,44023793:258331 -k1,323:32583029,44023793:0 -) -(1,324:7679349,44865281:24903680,513147,134348 -k1,323:9008474,44865281:256956 -k1,323:9731390,44865281:256955 -k1,323:10446443,44865281:256956 -k1,323:13560768,44865281:256955 -k1,323:14406237,44865281:256956 -k1,323:15682278,44865281:256956 -k1,323:18446640,44865281:256955 -k1,323:21757574,44865281:256956 -k1,323:24434118,44865281:256955 -k1,323:25882519,44865281:256956 -k1,323:27271281,44865281:256955 -k1,323:30438691,44865281:256956 -k1,323:32583029,44865281:0 -) -(1,324:7679349,45706769:24903680,505283,7863 -g1,323:9070023,45706769 -g1,323:10777891,45706769 -k1,324:32583028,45706769:18967428 -g1,324:32583028,45706769 -) -] -(1,325:32583029,45706769:0,0,0 -g1,325:32583029,45706769 -) -) -] -(1,325:6630773,47279633:25952256,0,0 -h1,325:6630773,47279633:25952256,0,0 -) -] -h1,325:4262630,4025873:0,0,0 -] -!21117 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,329:37855564,49800853:1179648,16384,0 +) +) +k1,329:3078556,49800853:-34777008 +) +] +g1,329:6630773,4812305 +k1,329:21845614,4812305:14417923 +g1,329:22668090,4812305 +g1,329:24054831,4812305 +g1,329:27195316,4812305 +g1,329:28604995,4812305 +g1,329:29789885,4812305 +) +) +] +[1,329:6630773,45706769:25952256,40108032,0 +(1,329:6630773,45706769:25952256,40108032,0 +(1,329:6630773,45706769:0,0,0 +g1,329:6630773,45706769 +) +[1,329:6630773,45706769:25952256,40108032,0 +(1,284:6630773,6254097:25952256,513147,134348 +k1,283:8631930,6254097:221855 +k1,283:9268606,6254097:221833 +k1,283:12185957,6254097:221855 +(1,283:12185957,6254097:0,452978,115847 +r1,283:15709629,6254097:3523672,568825,115847 +k1,283:12185957,6254097:-3523672 +) +(1,283:12185957,6254097:3523672,452978,115847 +k1,283:12185957,6254097:3277 +h1,283:15706352,6254097:0,411205,112570 +) +k1,283:15931484,6254097:221855 +k1,283:17851377,6254097:221855 +k1,283:19941008,6254097:221855 +k1,283:21556815,6254097:221856 +k1,283:22797755,6254097:221855 +k1,283:24757625,6254097:221855 +k1,283:25638772,6254097:221855 +k1,283:26216487,6254097:221855 +k1,283:29018495,6254097:221856 +k1,283:29926512,6254097:221855 +k1,283:30936765,6254097:221855 +k1,284:32583029,6254097:0 +) +(1,284:6630773,7095585:25952256,513147,134348 +k1,283:8472838,7095585:203010 +k1,283:11436224,7095585:203010 +k1,283:12658319,7095585:203010 +k1,283:15840597,7095585:203011 +k1,283:17328113,7095585:203010 +k1,283:19711506,7095585:203010 +k1,283:20662282,7095585:203010 +k1,283:22425049,7095585:203010 +k1,283:23575710,7095585:203010 +k1,283:24797806,7095585:203011 +k1,283:27754639,7095585:203010 +k1,283:29149094,7095585:203010 +k1,283:31812326,7095585:203010 +k1,283:32583029,7095585:0 +) +(1,284:6630773,7937073:25952256,513147,134348 +g1,283:9161118,7937073 +g1,283:12606345,7937073 +g1,283:13824659,7937073 +g1,283:17003155,7937073 +g1,283:17853812,7937073 +g1,283:19192057,7937073 +g1,283:20338937,7937073 +g1,283:21557251,7937073 +g1,283:24090217,7937073 +g1,283:24956602,7937073 +g1,283:25570674,7937073 +g1,283:26385941,7937073 +k1,284:32583029,7937073:4930932 +g1,284:32583029,7937073 +) +v1,286:6630773,9127539:0,393216,0 +(1,313:6630773,23497909:25952256,14763586,196608 +g1,313:6630773,23497909 +g1,313:6630773,23497909 +g1,313:6434165,23497909 +(1,313:6434165,23497909:0,14763586,196608 +r1,313:32779637,23497909:26345472,14960194,196608 +k1,313:6434165,23497909:-26345472 +) +(1,313:6434165,23497909:26345472,14763586,196608 +[1,313:6630773,23497909:25952256,14566978,0 +(1,288:6630773,9335157:25952256,404226,76021 +(1,287:6630773,9335157:0,0,0 +g1,287:6630773,9335157 +g1,287:6630773,9335157 +g1,287:6303093,9335157 +(1,287:6303093,9335157:0,0,0 +) +g1,287:6630773,9335157 +) +k1,288:6630773,9335157:0 +h1,288:9792229,9335157:0,0,0 +k1,288:32583029,9335157:22790800 +g1,288:32583029,9335157 +) +(1,312:6630773,10066871:25952256,379060,0 +(1,290:6630773,10066871:0,0,0 +g1,290:6630773,10066871 +g1,290:6630773,10066871 +g1,290:6303093,10066871 +(1,290:6303093,10066871:0,0,0 +) +g1,290:6630773,10066871 +) +h1,312:7263064,10066871:0,0,0 +k1,312:32583028,10066871:25319964 +g1,312:32583028,10066871 +) +(1,312:6630773,10733049:25952256,404226,101187 +h1,312:6630773,10733049:0,0,0 +g1,312:7579210,10733049 +g1,312:8527647,10733049 +g1,312:10108376,10733049 +g1,312:10740668,10733049 +g1,312:11689105,10733049 +g1,312:15798999,10733049 +h1,312:17063582,10733049:0,0,0 +k1,312:32583029,10733049:15519447 +g1,312:32583029,10733049 +) +(1,312:6630773,11399227:25952256,379060,0 +h1,312:6630773,11399227:0,0,0 +h1,312:7263064,11399227:0,0,0 +k1,312:32583028,11399227:25319964 +g1,312:32583028,11399227 +) +(1,312:6630773,12065405:25952256,410518,107478 +h1,312:6630773,12065405:0,0,0 +g1,312:7579210,12065405 +g1,312:7895356,12065405 +g1,312:8211502,12065405 +g1,312:8843794,12065405 +g1,312:10424523,12065405 +g1,312:12005252,12065405 +g1,312:14534418,12065405 +g1,312:15482855,12065405 +g1,312:16115147,12065405 +g1,312:18960458,12065405 +g1,312:20225041,12065405 +g1,312:24018789,12065405 +g1,312:25283372,12065405 +h1,312:28760974,12065405:0,0,0 +k1,312:32583029,12065405:3822055 +g1,312:32583029,12065405 +) +(1,312:6630773,12731583:25952256,410518,107478 +h1,312:6630773,12731583:0,0,0 +g1,312:7579210,12731583 +g1,312:7895356,12731583 +g1,312:8211502,12731583 +g1,312:11689105,12731583 +g1,312:12321397,12731583 +g1,312:15799000,12731583 +g1,312:17063583,12731583 +g1,312:20857331,12731583 +g1,312:24334934,12731583 +g1,312:26864100,12731583 +h1,312:29393265,12731583:0,0,0 +k1,312:32583029,12731583:3189764 +g1,312:32583029,12731583 +) +(1,312:6630773,13397761:25952256,404226,107478 +h1,312:6630773,13397761:0,0,0 +g1,312:7579210,13397761 +g1,312:7895356,13397761 +g1,312:8211502,13397761 +g1,312:9476085,13397761 +k1,312:9476085,13397761:0 +h1,312:18012019,13397761:0,0,0 +k1,312:32583029,13397761:14571010 +g1,312:32583029,13397761 +) +(1,312:6630773,14063939:25952256,379060,0 +h1,312:6630773,14063939:0,0,0 +h1,312:7263064,14063939:0,0,0 +k1,312:32583028,14063939:25319964 +g1,312:32583028,14063939 +) +(1,312:6630773,14730117:25952256,410518,101187 +h1,312:6630773,14730117:0,0,0 +g1,312:7579210,14730117 +g1,312:8211502,14730117 +g1,312:10424522,14730117 +g1,312:12321396,14730117 +g1,312:13585979,14730117 +g1,312:15482853,14730117 +g1,312:17379727,14730117 +h1,312:18012018,14730117:0,0,0 +k1,312:32583029,14730117:14571011 +g1,312:32583029,14730117 +) +(1,312:6630773,15396295:25952256,379060,0 +h1,312:6630773,15396295:0,0,0 +h1,312:7263064,15396295:0,0,0 +k1,312:32583028,15396295:25319964 +g1,312:32583028,15396295 +) +(1,312:6630773,16062473:25952256,404226,107478 +h1,312:6630773,16062473:0,0,0 +g1,312:7579210,16062473 +g1,312:7895356,16062473 +g1,312:8211502,16062473 +k1,312:8211502,16062473:0 +h1,312:11056813,16062473:0,0,0 +k1,312:32583029,16062473:21526216 +g1,312:32583029,16062473 +) +(1,312:6630773,16728651:25952256,410518,107478 +h1,312:6630773,16728651:0,0,0 +g1,312:7579210,16728651 +g1,312:7895356,16728651 +g1,312:8211502,16728651 +g1,312:8527648,16728651 +g1,312:8843794,16728651 +g1,312:10740668,16728651 +g1,312:11372960,16728651 +g1,312:12637543,16728651 +g1,312:13269835,16728651 +g1,312:16115146,16728651 +g1,312:17379729,16728651 +g1,312:21173477,16728651 +g1,312:22438060,16728651 +g1,312:26231808,16728651 +k1,312:26231808,16728651:0 +h1,312:29709411,16728651:0,0,0 +k1,312:32583029,16728651:2873618 +g1,312:32583029,16728651 +) +(1,312:6630773,17394829:25952256,404226,82312 +h1,312:6630773,17394829:0,0,0 +g1,312:7579210,17394829 +g1,312:7895356,17394829 +g1,312:8211502,17394829 +g1,312:8527648,17394829 +g1,312:8843794,17394829 +g1,312:11056814,17394829 +g1,312:11689106,17394829 +g1,312:12953689,17394829 +g1,312:14534418,17394829 +k1,312:14534418,17394829:0 +h1,312:16747438,17394829:0,0,0 +k1,312:32583029,17394829:15835591 +g1,312:32583029,17394829 +) +(1,312:6630773,18061007:25952256,410518,107478 +h1,312:6630773,18061007:0,0,0 +g1,312:7579210,18061007 +g1,312:7895356,18061007 +g1,312:8211502,18061007 +g1,312:8527648,18061007 +g1,312:8843794,18061007 +g1,312:12953688,18061007 +g1,312:13585980,18061007 +g1,312:14534417,18061007 +g1,312:18012020,18061007 +g1,312:19276603,18061007 +g1,312:23070351,18061007 +k1,312:23070351,18061007:0 +h1,312:26547954,18061007:0,0,0 +k1,312:32583029,18061007:6035075 +g1,312:32583029,18061007 +) +(1,312:6630773,18727185:25952256,404226,82312 +h1,312:6630773,18727185:0,0,0 +g1,312:7579210,18727185 +g1,312:7895356,18727185 +g1,312:8211502,18727185 +g1,312:8527648,18727185 +g1,312:8843794,18727185 +g1,312:11372960,18727185 +g1,312:12005252,18727185 +g1,312:14850564,18727185 +k1,312:14850564,18727185:0 +h1,312:17695875,18727185:0,0,0 +k1,312:32583029,18727185:14887154 +g1,312:32583029,18727185 +) +(1,312:6630773,19393363:25952256,404226,101187 +h1,312:6630773,19393363:0,0,0 +g1,312:7579210,19393363 +g1,312:7895356,19393363 +g1,312:8211502,19393363 +g1,312:8527648,19393363 +g1,312:8843794,19393363 +g1,312:10424523,19393363 +g1,312:11056815,19393363 +k1,312:11056815,19393363:0 +h1,312:13269835,19393363:0,0,0 +k1,312:32583029,19393363:19313194 +g1,312:32583029,19393363 +) +(1,312:6630773,20059541:25952256,404226,107478 +h1,312:6630773,20059541:0,0,0 +g1,312:7579210,20059541 +g1,312:7895356,20059541 +g1,312:8211502,20059541 +g1,312:8527648,20059541 +g1,312:8843794,20059541 +g1,312:10108377,20059541 +g1,312:10740669,20059541 +k1,312:10740669,20059541:0 +h1,312:19908895,20059541:0,0,0 +k1,312:32583029,20059541:12674134 +g1,312:32583029,20059541 +) +(1,312:6630773,20725719:25952256,404226,76021 +h1,312:6630773,20725719:0,0,0 +g1,312:7579210,20725719 +g1,312:7895356,20725719 +g1,312:8211502,20725719 +h1,312:8527648,20725719:0,0,0 +k1,312:32583028,20725719:24055380 +g1,312:32583028,20725719 +) +(1,312:6630773,21391897:25952256,379060,0 +h1,312:6630773,21391897:0,0,0 +h1,312:7263064,21391897:0,0,0 +k1,312:32583028,21391897:25319964 +g1,312:32583028,21391897 +) +(1,312:6630773,22058075:25952256,410518,107478 +h1,312:6630773,22058075:0,0,0 +g1,312:7579210,22058075 +g1,312:8527647,22058075 +g1,312:10108376,22058075 +g1,312:12953687,22058075 +g1,312:13585979,22058075 +g1,312:14850562,22058075 +g1,312:15798999,22058075 +g1,312:17379728,22058075 +g1,312:18644311,22058075 +g1,312:20857331,22058075 +g1,312:21805768,22058075 +g1,312:24651079,22058075 +g1,312:25599517,22058075 +g1,312:27812537,22058075 +g1,312:29393266,22058075 +h1,312:30025557,22058075:0,0,0 +k1,312:32583029,22058075:2557472 +g1,312:32583029,22058075 +) +(1,312:6630773,22724253:25952256,410518,107478 +h1,312:6630773,22724253:0,0,0 +g1,312:7579210,22724253 +g1,312:9159939,22724253 +g1,312:11056813,22724253 +g1,312:12005250,22724253 +g1,312:13269833,22724253 +g1,312:14850562,22724253 +g1,312:18012019,22724253 +g1,312:19276602,22724253 +g1,312:20857331,22724253 +g1,312:27812537,22724253 +h1,312:28760974,22724253:0,0,0 +k1,312:32583029,22724253:3822055 +g1,312:32583029,22724253 +) +(1,312:6630773,23390431:25952256,404226,107478 +h1,312:6630773,23390431:0,0,0 +g1,312:7579210,23390431 +g1,312:9792230,23390431 +g1,312:10424522,23390431 +h1,312:13269833,23390431:0,0,0 +k1,312:32583029,23390431:19313196 +g1,312:32583029,23390431 +) +] +) +g1,313:32583029,23497909 +g1,313:6630773,23497909 +g1,313:6630773,23497909 +g1,313:32583029,23497909 +g1,313:32583029,23497909 +) +h1,313:6630773,23694517:0,0,0 +v1,317:6630773,25584581:0,393216,0 +(1,318:6630773,27870613:25952256,2679248,616038 +g1,318:6630773,27870613 +(1,318:6630773,27870613:25952256,2679248,616038 +(1,318:6630773,28486651:25952256,3295286,0 +[1,318:6630773,28486651:25952256,3295286,0 +(1,318:6630773,28460437:25952256,3242858,0 +r1,318:6656987,28460437:26214,3242858,0 +[1,318:6656987,28460437:25899828,3242858,0 +(1,318:6656987,27870613:25899828,2063210,0 +[1,318:7246811,27870613:24720180,2063210,0 +(1,318:7246811,26894777:24720180,1087374,134348 +k1,317:8684319,26894777:227805 +k1,317:10458774,26894777:227805 +k1,317:11299341,26894777:227805 +k1,317:12546231,26894777:227805 +k1,317:14162089,26894777:227805 +k1,317:15888047,26894777:227805 +k1,317:17063503,26894777:227805 +k1,317:19986804,26894777:227805 +(1,317:19986804,26894777:0,452978,115847 +r1,318:23510476,26894777:3523672,568825,115847 +k1,317:19986804,26894777:-3523672 +) +(1,317:19986804,26894777:3523672,452978,115847 +k1,317:19986804,26894777:3277 +h1,317:23507199,26894777:0,411205,112570 +) +k1,317:23738281,26894777:227805 +k1,317:24913737,26894777:227805 +k1,317:25497402,26894777:227805 +k1,317:29097034,26894777:227805 +k1,317:29984131,26894777:227805 +k1,317:31508894,26894777:227805 +k1,317:31966991,26894777:0 +) +(1,318:7246811,27736265:24720180,513147,134348 +g1,317:7977537,27736265 +g1,317:11386064,27736265 +g1,317:12532944,27736265 +g1,317:14443318,27736265 +g1,317:15293975,27736265 +g1,317:16632220,27736265 +g1,317:17246292,27736265 +g1,317:18636966,27736265 +g1,317:21746649,27736265 +g1,317:23643916,27736265 +g1,317:25578538,27736265 +k1,318:31966991,27736265:4575727 +g1,318:31966991,27736265 +) +] +) +] +r1,318:32583029,28460437:26214,3242858,0 +) +] +) +) +g1,318:32583029,27870613 +) +h1,318:6630773,28486651:0,0,0 +(1,320:6630773,30577911:25952256,564462,147783 +(1,320:6630773,30577911:2450326,534184,0 +g1,320:6630773,30577911 +g1,320:9081099,30577911 +) +g1,320:12875896,30577911 +g1,320:14681741,30577911 +g1,320:16681507,30577911 +g1,320:19167878,30577911 +k1,320:32583029,30577911:10791089 +g1,320:32583029,30577911 +) +(1,323:6630773,31812615:25952256,513147,134348 +k1,322:8578448,31812615:164440 +k1,322:12083259,31812615:164441 +k1,322:13635752,31812615:164440 +k1,322:15802318,31812615:164441 +k1,322:19026634,31812615:164440 +k1,322:20382520,31812615:164441 +k1,322:23190683,31812615:164441 +k1,322:25267464,31812615:164440 +k1,322:26044666,31812615:164440 +k1,322:27815394,31812615:164441 +k1,322:29337085,31812615:164440 +k1,322:30152954,31812615:164441 +k1,322:32583029,31812615:0 +) +(1,323:6630773,32654103:25952256,513147,126483 +k1,322:7897382,32654103:247524 +k1,322:11951892,32654103:247524 +k1,322:14671435,32654103:247525 +k1,322:15938044,32654103:247524 +k1,322:17569688,32654103:247524 +k1,322:19172497,32654103:247524 +k1,322:20071450,32654103:247525 +k1,322:22304060,32654103:247524 +k1,322:23083081,32654103:247524 +k1,322:23982033,32654103:247524 +k1,322:26299840,32654103:247525 +k1,322:29075088,32654103:247524 +k1,322:31635378,32654103:247524 +k1,322:32583029,32654103:0 +) +(1,323:6630773,33495591:25952256,513147,134348 +k1,322:9289064,33495591:167268 +k1,322:12044349,33495591:167268 +k1,322:12863045,33495591:167268 +k1,322:14690995,33495591:167268 +k1,322:18126543,33495591:167268 +k1,322:20077046,33495591:167268 +k1,322:21941041,33495591:167268 +k1,322:23793895,33495591:167268 +k1,322:24988112,33495591:167268 +k1,322:25806808,33495591:167268 +k1,322:27608544,33495591:167268 +k1,322:28131672,33495591:167268 +k1,322:31149101,33495591:167268 +k1,322:32583029,33495591:0 +) +(1,323:6630773,34337079:25952256,513147,134348 +k1,322:7253447,34337079:164577 +k1,322:7949521,34337079:164577 +k1,322:9539507,34337079:164578 +k1,322:10355512,34337079:164577 +k1,322:11598812,34337079:164577 +k1,322:12711040,34337079:164577 +k1,322:14437340,34337079:164577 +k1,322:16457897,34337079:164577 +k1,322:18190096,34337079:164578 +k1,322:19848894,34337079:164577 +k1,322:22369490,34337079:164577 +k1,322:23216952,34337079:164577 +k1,322:24143057,34337079:164577 +k1,322:26700354,34337079:164578 +k1,322:28323762,34337079:164577 +k1,322:29818720,34337079:164577 +k1,322:32583029,34337079:0 +) +(1,323:6630773,35178567:25952256,513147,134348 +k1,322:7444917,35178567:198106 +k1,322:7998883,35178567:198106 +k1,322:10708984,35178567:198106 +k1,322:12884967,35178567:198106 +k1,322:15239208,35178567:198106 +k1,322:17220549,35178567:198106 +k1,322:19811373,35178567:198105 +k1,322:22729223,35178567:198106 +k1,322:23874980,35178567:198106 +k1,322:25634809,35178567:198106 +k1,322:26989625,35178567:198106 +k1,322:29048298,35178567:198106 +k1,322:29897832,35178567:198106 +k1,322:31821501,35178567:198106 +k1,322:32583029,35178567:0 +) +(1,323:6630773,36020055:25952256,505283,126483 +g1,322:8378618,36020055 +g1,322:9109344,36020055 +g1,322:11595780,36020055 +g1,322:14885032,36020055 +g1,322:15770423,36020055 +k1,323:32583029,36020055:12790662 +g1,323:32583029,36020055 +) +(1,324:6630773,37647975:25952256,505283,126483 +(1,324:6630773,37647975:2809528,485622,0 +g1,324:6630773,37647975 +g1,324:9440301,37647975 +) +k1,324:32583029,37647975:19695534 +g1,324:32583029,37647975 +) +(1,326:6630773,38882679:25952256,513147,134348 +k1,325:7546311,38882679:287703 +k1,325:9435714,38882679:287703 +k1,325:12251141,38882679:287703 +k1,325:15025279,38882679:287702 +k1,325:15668842,38882679:287703 +k1,325:18154623,38882679:287703 +k1,325:21202047,38882679:287703 +k1,325:22021247,38882679:287703 +k1,325:25147970,38882679:287703 +k1,325:27003293,38882679:287702 +k1,325:29034909,38882679:287703 +k1,325:31391584,38882679:287703 +k1,325:32583029,38882679:0 +) +(1,326:6630773,39724167:25952256,513147,134348 +k1,325:10169062,39724167:290325 +k1,325:13727666,39724167:290324 +k1,325:15735034,39724167:290325 +k1,325:17741746,39724167:290324 +k1,325:18691363,39724167:290325 +k1,325:23066546,39724167:290324 +k1,325:24503096,39724167:290325 +k1,325:25885905,39724167:290324 +k1,325:26835522,39724167:290325 +k1,325:30004188,39724167:290325 +k1,325:30977397,39724167:290324 +k1,326:32583029,39724167:0 +) +(1,326:6630773,40565655:25952256,513147,134348 +k1,325:9798027,40565655:193230 +k1,325:13007225,40565655:193231 +k1,325:14332917,40565655:193230 +k1,325:16813354,40565655:193230 +k1,325:18849457,40565655:193231 +k1,325:19658725,40565655:193230 +k1,325:20871040,40565655:193230 +k1,325:22445114,40565655:193230 +k1,325:24558550,40565655:193231 +k1,325:27009495,40565655:193230 +k1,325:29068535,40565655:193230 +k1,325:29877804,40565655:193231 +k1,325:30426894,40565655:193230 +k1,325:32583029,40565655:0 +) +(1,326:6630773,41407143:25952256,505283,134348 +k1,325:10211482,41407143:146622 +k1,325:12276997,41407143:146621 +k1,325:16508478,41407143:146622 +k1,325:17787562,41407143:146622 +k1,325:20221391,41407143:146622 +k1,325:22210884,41407143:146621 +k1,325:22973544,41407143:146622 +k1,325:24139251,41407143:146622 +k1,325:26721191,41407143:146622 +k1,325:29632121,41407143:146621 +k1,325:30845014,41407143:146622 +k1,325:32583029,41407143:0 +) +(1,326:6630773,42248631:25952256,513147,134348 +k1,325:9903760,42248631:247190 +k1,325:11342394,42248631:247189 +k1,325:13916767,42248631:247190 +k1,325:15183042,42248631:247190 +k1,325:18106722,42248631:247190 +k1,325:21979363,42248631:247189 +k1,325:22842591,42248631:247190 +k1,325:24108866,42248631:247190 +k1,325:26152398,42248631:247190 +k1,325:27027422,42248631:247189 +k1,325:29607694,42248631:247190 +k1,325:32583029,42248631:0 +) +(1,326:6630773,43090119:25952256,513147,134348 +k1,325:7857607,43090119:207749 +k1,325:9750942,43090119:207749 +k1,325:11720299,43090119:207749 +k1,325:13796479,43090119:207749 +k1,325:15136690,43090119:207749 +k1,325:17533342,43090119:207749 +k1,325:20359910,43090119:207749 +k1,325:22026490,43090119:207749 +k1,325:24764584,43090119:207749 +k1,325:25631625,43090119:207749 +k1,325:28064977,43090119:207749 +k1,325:28628586,43090119:207749 +k1,325:31391584,43090119:207749 +k1,325:32583029,43090119:0 +) +(1,326:6630773,43931607:25952256,513147,7863 +g1,325:8807223,43931607 +k1,326:32583029,43931607:21344420 +g1,326:32583029,43931607 +) +(1,329:7679349,45428455:24903680,513147,134348 +(1,328:7679349,45428455:0,355205,0 +g1,328:7679349,45428455 +g1,328:6368629,45428455 +g1,328:6040949,45428455 +(1,328:6040949,45428455:1310720,355205,0 +k1,328:7351669,45428455:1310720 +(1,328:7351669,45428455:0,355205,0 +k1,328:6953210,45428455:-398459 +) +) +g1,328:7679349,45428455 +) +k1,328:8857388,45428455:280196 +k1,328:10596415,45428455:280196 +k1,328:14423420,45428455:280197 +k1,328:16009749,45428455:280196 +k1,328:18360227,45428455:280196 +k1,328:19588074,45428455:280196 +k1,328:22359293,45428455:280196 +k1,328:25227507,45428455:280197 +k1,328:26159131,45428455:280196 +k1,328:27898158,45428455:280196 +k1,328:31116333,45428455:280196 +k1,328:32583029,45428455:0 +) +] +(1,329:32583029,45706769:0,0,0 +g1,329:32583029,45706769 +) +) +] +(1,329:6630773,47279633:25952256,0,0 +h1,329:6630773,47279633:25952256,0,0 +) +] +h1,329:4262630,4025873:0,0,0 +] +!21456 }23 !11 {24 -[1,345:4262630,47279633:28320399,43253760,0 -(1,345:4262630,4025873:0,0,0 -[1,345:-473657,4025873:25952256,0,0 -(1,345:-473657,-710414:25952256,0,0 -h1,345:-473657,-710414:0,0,0 -(1,345:-473657,-710414:0,0,0 -(1,345:-473657,-710414:0,0,0 -g1,345:-473657,-710414 -(1,345:-473657,-710414:65781,0,65781 -g1,345:-407876,-710414 -[1,345:-407876,-644633:0,0,0 +[1,351:4262630,47279633:28320399,43253760,0 +(1,351:4262630,4025873:0,0,0 +[1,351:-473657,4025873:25952256,0,0 +(1,351:-473657,-710414:25952256,0,0 +h1,351:-473657,-710414:0,0,0 +(1,351:-473657,-710414:0,0,0 +(1,351:-473657,-710414:0,0,0 +g1,351:-473657,-710414 +(1,351:-473657,-710414:65781,0,65781 +g1,351:-407876,-710414 +[1,351:-407876,-644633:0,0,0 ] ) -k1,345:-473657,-710414:-65781 +k1,351:-473657,-710414:-65781 ) ) -k1,345:25478599,-710414:25952256 -g1,345:25478599,-710414 +k1,351:25478599,-710414:25952256 +g1,351:25478599,-710414 ) ] ) -[1,345:6630773,47279633:25952256,43253760,0 -[1,345:6630773,4812305:25952256,786432,0 -(1,345:6630773,4812305:25952256,513147,134348 -(1,345:6630773,4812305:25952256,513147,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,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,345:2537886,2439708:1179648,16384,0 +[1,351:6630773,47279633:25952256,43253760,0 +[1,351:6630773,4812305:25952256,786432,0 +(1,351:6630773,4812305:25952256,513147,134348 +(1,351:6630773,4812305:25952256,513147,134348 +g1,351:3078558,4812305 +[1,351:3078558,4812305:0,0,0 +(1,351:3078558,2439708:0,1703936,0 +k1,351:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,351:2537886,2439708:1179648,16384,0 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,345:3078558,1915420:16384,1179648,0 +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,351:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,345:3078558,4812305:0,0,0 -(1,345:3078558,2439708:0,1703936,0 -g1,345:29030814,2439708 -g1,345:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,345:36151628,1915420:16384,1179648,0 +[1,351:3078558,4812305:0,0,0 +(1,351:3078558,2439708:0,1703936,0 +g1,351:29030814,2439708 +g1,351:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,351:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,345:37855564,2439708:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,351:37855564,2439708:1179648,16384,0 ) ) -k1,345:3078556,2439708:-34777008 +k1,351:3078556,2439708:-34777008 ) ] -[1,345:3078558,4812305:0,0,0 -(1,345:3078558,49800853:0,16384,2228224 -k1,345:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,345:2537886,49800853:1179648,16384,0 +[1,351:3078558,4812305:0,0,0 +(1,351:3078558,49800853:0,16384,2228224 +k1,351:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,351:2537886,49800853:1179648,16384,0 ) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,345:3078558,51504789:16384,1179648,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,351:3078558,51504789:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 ) ] ) ) ) ] -[1,345:3078558,4812305:0,0,0 -(1,345:3078558,49800853:0,16384,2228224 -g1,345:29030814,49800853 -g1,345:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,345:36151628,51504789:16384,1179648,0 +[1,351:3078558,4812305:0,0,0 +(1,351:3078558,49800853:0,16384,2228224 +g1,351:29030814,49800853 +g1,351:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,351:36151628,51504789:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,345:37855564,49800853:1179648,16384,0 +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,351:37855564,49800853:1179648,16384,0 ) ) -k1,345:3078556,49800853:-34777008 +k1,351:3078556,49800853:-34777008 ) ] -g1,345:6630773,4812305 -g1,345:6630773,4812305 -g1,345:9189953,4812305 -g1,345:12564401,4812305 -g1,345:16510323,4812305 -k1,345:31786111,4812305:15275788 -) -) -] -[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,325:7679349,6254097:24903680,513147,126483 -(1,324:7679349,6254097:0,355205,0 -g1,324:7679349,6254097 -g1,324:6368629,6254097 -g1,324:6040949,6254097 -(1,324:6040949,6254097:1310720,355205,0 -k1,324:7351669,6254097:1310720 -(1,324:7351669,6254097:0,355205,0 -k1,324:6953210,6254097:-398459 -) -) -g1,324:7679349,6254097 -) -k1,324:8330995,6254097:173889 -k1,324:9117646,6254097:173889 -k1,324:10057650,6254097:173888 -k1,324:13035169,6254097:173889 -k1,324:15639133,6254097:173889 -k1,324:16168882,6254097:173889 -k1,324:19519956,6254097:173889 -k1,324:20885290,6254097:173889 -k1,324:22917780,6254097:173889 -k1,324:24163837,6254097:173888 -k1,324:29011754,6254097:173889 -k1,324:30681830,6254097:173889 -k1,325:32583029,6254097:0 -) -(1,325:7679349,7095585:24903680,505283,126483 -g1,324:8851788,7095585 -g1,324:10335523,7095585 -g1,324:14120882,7095585 -g1,324:15339196,7095585 -g1,324:18214915,7095585 -g1,324:22069087,7095585 -g1,324:24136092,7095585 -k1,325:32583029,7095585:6008342 -g1,325:32583029,7095585 -) -(1,326:7679349,8399389:24903680,505283,126483 -(1,325:7679349,8399389:0,355205,0 -g1,325:7679349,8399389 -g1,325:6368629,8399389 -g1,325:6040949,8399389 -(1,325:6040949,8399389:1310720,355205,0 -k1,325:7351669,8399389:1310720 -(1,325:7351669,8399389:0,355205,0 -k1,325:6953210,8399389:-398459 -) -) -g1,325:7679349,8399389 -) -g1,325:8625033,8399389 -k1,326:32583028,8399389:21958492 -g1,326:32583028,8399389 -) -(1,327:7679349,9703193:24903680,513147,134348 -(1,326:7679349,9703193:0,355205,0 -g1,326:7679349,9703193 -g1,326:6368629,9703193 -g1,326:6040949,9703193 -(1,326:6040949,9703193:1310720,355205,0 -k1,326:7351669,9703193:1310720 -(1,326:7351669,9703193:0,355205,0 -k1,326:6953210,9703193:-398459 -) -) -g1,326:7679349,9703193 -) -k1,326:11340846,9703193:230687 -k1,326:12222960,9703193:230686 -k1,326:13472732,9703193:230687 -k1,326:15685883,9703193:230687 -k1,326:16678097,9703193:230686 -k1,326:20156748,9703193:230687 -k1,326:22089404,9703193:230686 -k1,326:24204906,9703193:230687 -k1,326:27530203,9703193:230687 -k1,326:29458927,9703193:230686 -k1,326:30860087,9703193:230687 -k1,326:32583029,9703193:0 -) -(1,327:7679349,10544681:24903680,505283,7863 -g1,326:8897663,10544681 -k1,327:32583029,10544681:21253980 -g1,327:32583029,10544681 -) -(1,329:6630773,12172601:25952256,513147,11795 -(1,329:6630773,12172601:2809528,485622,0 -g1,329:6630773,12172601 -g1,329:9440301,12172601 -) -k1,329:32583029,12172601:18321900 -g1,329:32583029,12172601 -) -(1,332:6630773,13407305:25952256,513147,126484 -k1,331:10343388,13407305:307364 -k1,331:15196985,13407305:307364 -$1,331:15404079,13407305 -k1,331:16984807,13407305:0 -k1,331:17379989,13407305:0 -k1,331:17775171,13407305:0 -k1,331:18170353,13407305:0 -k1,331:23307719,13407305:0 -k1,331:23702901,13407305:0 -$1,331:25283629,13407305 -k1,331:25798087,13407305:307364 -k1,331:26636947,13407305:307363 -k1,331:27963396,13407305:307364 -k1,331:29605728,13407305:307364 -k1,332:32583029,13407305:0 -) -(1,332:6630773,14248793:25952256,513147,134348 -k1,331:10545439,14248793:252514 -k1,331:12880244,14248793:252461 -k1,331:15659171,14248793:252514 -k1,331:17047425,14248793:252515 -k1,331:18247590,14248793:252514 -k1,331:19088617,14248793:252514 -k1,331:19968967,14248793:252515 -k1,331:21823181,14248793:252514 -k1,331:23946748,14248793:252514 -k1,331:27259793,14248793:252514 -k1,331:28459959,14248793:252515 -k1,331:31203496,14248793:252514 -k1,332:32583029,14248793:0 -) -(1,332:6630773,15090281:25952256,513147,134348 -k1,331:8729727,15090281:170885 -k1,331:10092057,15090281:170885 -k1,331:11771581,15090281:170885 -k1,331:14704153,15090281:170885 -k1,331:16007500,15090281:170885 -k1,331:16926151,15090281:170885 -k1,331:17863152,15090281:170885 -k1,331:19318543,15090281:170885 -k1,331:20659901,15090281:170885 -k1,331:22361052,15090281:170885 -k1,331:23183365,15090281:170885 -k1,331:24343188,15090281:170885 -k1,331:24991830,15090281:170885 -k1,331:27231687,15090281:170885 -k1,331:27758432,15090281:170885 -k1,331:30867296,15090281:170885 -k1,331:32583029,15090281:0 -) -(1,332:6630773,15931769:25952256,513147,126483 -k1,331:8242260,15931769:230643 -k1,331:9757409,15931769:230643 -k1,331:10446149,15931769:230643 -k1,331:11208289,15931769:230643 -k1,331:13201850,15931769:230643 -k1,331:13788353,15931769:230643 -k1,331:15302191,15931769:230643 -k1,331:18470812,15931769:230642 -k1,331:19179212,15931769:230643 -k1,331:21064639,15931769:230643 -k1,331:21826779,15931769:230643 -k1,331:23749562,15931769:230643 -k1,331:26744514,15931769:230643 -k1,331:28259663,15931769:230643 -k1,331:30207349,15931769:230643 -k1,331:32583029,15931769:0 -) -(1,332:6630773,16773257:25952256,513147,126483 -g1,331:8545735,16773257 -g1,331:10275230,16773257 -g1,331:11804840,16773257 -g1,331:13462900,16773257 -g1,331:16426438,16773257 -g1,331:17157164,16773257 -k1,332:32583029,16773257:12489852 -g1,332:32583029,16773257 -) -(1,334:6630773,17614745:25952256,513147,134348 -h1,333:6630773,17614745:983040,0,0 -k1,333:12319429,17614745:159383 -k1,333:13579817,17614745:159383 -k1,333:14095061,17614745:159384 -k1,333:17714090,17614745:159383 -k1,333:20119392,17614745:159383 -k1,333:22133444,17614745:159383 -k1,333:23102197,17614745:159383 -k1,333:26786763,17614745:159384 -k1,333:28137591,17614745:159383 -k1,333:31391584,17614745:159383 -k1,333:32583029,17614745:0 -) -(1,334:6630773,18456233:25952256,505283,126483 -k1,333:9383191,18456233:164401 -k1,333:10651875,18456233:164402 -k1,333:11564042,18456233:164401 -k1,333:12777020,18456233:164402 -k1,333:14132866,18456233:164401 -k1,333:18211733,18456233:164402 -k1,333:20297650,18456233:164401 -k1,333:21856003,18456233:164402 -k1,333:23039489,18456233:164401 -k1,333:24805591,18456233:164402 -k1,333:27704809,18456233:164401 -k1,333:28860771,18456233:164402 -k1,333:30786780,18456233:164401 -k1,333:31563944,18456233:164402 -k1,333:32583029,18456233:0 -) -(1,334:6630773,19297721:25952256,513147,126483 -k1,333:7869123,19297721:166181 -k1,333:8694595,19297721:166180 -k1,333:11782371,19297721:166181 -k1,333:12426308,19297721:166180 -k1,333:13611574,19297721:166181 -k1,333:16872364,19297721:166180 -k1,333:17721430,19297721:166181 -k1,333:20475628,19297721:166181 -k1,333:21812281,19297721:166180 -k1,333:23593269,19297721:166181 -k1,333:24751009,19297721:166180 -k1,333:27916117,19297721:166181 -k1,333:29595523,19297721:166180 -k1,333:30932177,19297721:166181 -k1,334:32583029,19297721:0 -) -(1,334:6630773,20139209:25952256,505283,134348 -k1,333:9084679,20139209:253862 -k1,333:11699149,20139209:253863 -k1,333:15478193,20139209:253862 -k1,333:16902528,20139209:253862 -k1,333:19501925,20139209:253863 -k1,333:21984666,20139209:253862 -k1,333:23429974,20139209:253863 -k1,333:25723316,20139209:253862 -k1,333:27470744,20139209:253862 -k1,333:28410769,20139209:253863 -k1,333:30881059,20139209:253862 -k1,333:32583029,20139209:0 -) -(1,334:6630773,20980697:25952256,513147,134348 -k1,333:8688548,20980697:172960 -k1,333:11956118,20980697:172960 -k1,333:13320524,20980697:172961 -k1,333:16081501,20980697:172960 -k1,333:16937346,20980697:172960 -k1,333:18563895,20980697:172960 -k1,333:19719896,20980697:172961 -k1,333:21359552,20980697:172960 -k1,333:24100213,20980697:172960 -k1,333:26266123,20980697:172960 -k1,333:29027101,20980697:172961 -k1,333:29882946,20980697:172960 -k1,333:32583029,20980697:0 -) -(1,334:6630773,21822185:25952256,513147,126483 -k1,333:9913829,21822185:188446 -k1,333:11669895,21822185:188445 -k1,333:12877426,21822185:188446 -k1,333:15485461,21822185:188446 -k1,333:17054751,21822185:188446 -k1,333:19548753,21822185:188445 -k1,333:23800431,21822185:188446 -k1,333:25061046,21822185:188446 -k1,333:27176250,21822185:188446 -k1,333:30503214,21822185:188445 -k1,333:31970267,21822185:188446 -k1,333:32583029,21822185:0 -) -(1,334:6630773,22663673:25952256,513147,134348 -k1,333:9643626,22663673:226918 -k1,333:11155051,22663673:226919 -k1,333:12401054,22663673:226918 -k1,333:14061900,22663673:226918 -k1,333:14948110,22663673:226918 -k1,333:18269639,22663673:226919 -k1,333:19688002,22663673:226918 -k1,333:22502937,22663673:226918 -k1,333:23261352,22663673:226918 -k1,333:26061214,22663673:226919 -k1,333:27479577,22663673:226918 -k1,333:30122807,22663673:226918 -k1,333:32583029,22663673:0 -) -(1,334:6630773,23505161:25952256,513147,134348 -k1,333:9111893,23505161:288941 -k1,333:10210204,23505161:288941 -k1,333:13925367,23505161:288941 -k1,333:18014085,23505161:288941 -k1,333:20086260,23505161:288940 -k1,333:22110594,23505161:288941 -k1,333:27119438,23505161:288941 -k1,333:28223647,23505161:288941 -k1,333:31821501,23505161:288941 -k1,333:32583029,23505161:0 -) -(1,334:6630773,24346649:25952256,513147,134348 -k1,333:9880638,24346649:211616 -k1,333:12334895,24346649:211615 -k1,333:15308198,24346649:211616 -k1,333:18567237,24346649:211615 -k1,333:21873463,24346649:211616 -k1,333:23276523,24346649:211615 -k1,333:26076156,24346649:211616 -k1,333:27572277,24346649:211615 -k1,333:28954366,24346649:211616 -k1,333:30432137,24346649:211615 -k1,333:32583029,24346649:0 -) -(1,334:6630773,25188137:25952256,513147,134348 -k1,333:10829307,25188137:235572 -k1,333:12808792,25188137:235572 -k1,333:14214838,25188137:235573 -k1,333:17181295,25188137:235572 -k1,333:19088690,25188137:235572 -k1,333:20515707,25188137:235572 -k1,333:23280313,25188137:235572 -k1,333:24198770,25188137:235572 -k1,333:27667234,25188137:235573 -k1,333:29840050,25188137:235572 -k1,333:31246095,25188137:235572 -k1,333:32583029,25188137:0 -) -(1,334:6630773,26029625:25952256,505283,7863 -k1,334:32583029,26029625:23105372 -g1,334:32583029,26029625 -) -(1,335:6630773,27657545:25952256,505283,134348 -(1,335:6630773,27657545:2809528,485622,11795 -g1,335:6630773,27657545 -g1,335:9440301,27657545 -) -g1,335:12908466,27657545 -k1,335:32583029,27657545:18090558 -g1,335:32583029,27657545 -) -(1,338:6630773,28892249:25952256,513147,134348 -k1,337:8552765,28892249:185288 -k1,337:10947927,28892249:185288 -k1,337:11749254,28892249:185289 -k1,337:12953627,28892249:185288 -k1,337:16883642,28892249:185288 -k1,337:17728222,28892249:185288 -k1,337:18269370,28892249:185288 -k1,337:22517235,28892249:185288 -k1,337:25363941,28892249:185289 -k1,337:26080726,28892249:185288 -k1,337:29373731,28892249:185288 -k1,337:32583029,28892249:0 -) -(1,338:6630773,29733737:25952256,513147,134348 -k1,337:8492159,29733737:163348 -k1,337:9825981,29733737:163349 -k1,337:12045193,29733737:163348 -k1,337:12859970,29733737:163349 -k1,337:15019545,29733737:163348 -k1,337:15538754,29733737:163349 -k1,337:16891580,29733737:163348 -k1,337:17706356,29733737:163348 -k1,337:18888790,29733737:163349 -k1,337:22508507,29733737:163348 -k1,337:23331148,29733737:163349 -k1,337:24626303,29733737:163348 -k1,337:26439849,29733737:163349 -k1,337:27262489,29733737:163348 -k1,337:30358574,29733737:163349 -k1,337:31563944,29733737:163348 -k1,337:32583029,29733737:0 -) -(1,338:6630773,30575225:25952256,513147,134348 -k1,337:9539026,30575225:231763 -k1,337:10422218,30575225:231764 -k1,337:11401747,30575225:231763 -k1,337:13370869,30575225:231763 -k1,337:14621718,30575225:231764 -k1,337:17049592,30575225:231763 -k1,337:19795972,30575225:231764 -k1,337:21046820,30575225:231763 -k1,337:22948440,30575225:231763 -k1,337:25040771,30575225:231764 -k1,337:25923962,30575225:231763 -k1,337:26903491,30575225:231763 -k1,337:28444009,30575225:231764 -k1,337:29327200,30575225:231763 -k1,337:32583029,30575225:0 -) -(1,338:6630773,31416713:25952256,513147,134348 -k1,337:7840786,31416713:190928 -k1,337:10881875,31416713:190928 -k1,337:12264248,31416713:190928 -k1,337:13968402,31416713:190928 -k1,337:17411882,31416713:190928 -k1,337:18621895,31416713:190928 -k1,337:20482680,31416713:190928 -k1,337:22534176,31416713:190929 -k1,337:23376532,31416713:190928 -k1,337:24315226,31416713:190928 -k1,337:25814908,31416713:190928 -k1,337:26657264,31416713:190928 -k1,337:28039637,31416713:190928 -k1,337:28696526,31416713:190928 -k1,337:29906539,31416713:190928 -k1,337:32583029,31416713:0 -) -(1,338:6630773,32258201:25952256,513147,134348 -k1,337:7927381,32258201:195603 -k1,337:9632934,32258201:195603 -k1,337:11883746,32258201:195603 -k1,337:12762235,32258201:195604 -k1,337:14197779,32258201:195603 -k1,337:17328084,32258201:195603 -k1,337:18990383,32258201:195603 -k1,337:19651947,32258201:195603 -k1,337:21018023,32258201:195603 -k1,337:22205186,32258201:195603 -k1,337:24345242,32258201:195603 -k1,337:24896706,32258201:195604 -k1,337:27768799,32258201:195603 -k1,337:30167067,32258201:195603 -k1,337:31124198,32258201:195603 -k1,337:32583029,32258201:0 -) -(1,338:6630773,33099689:25952256,513147,134348 -k1,337:12661289,33099689:224026 -k1,337:13544606,33099689:224025 -k1,337:15099013,33099689:224026 -k1,337:15737857,33099689:224001 -k1,337:18062312,33099689:224026 -k1,337:19305423,33099689:224026 -k1,337:21942484,33099689:224025 -k1,337:23185595,33099689:224026 -k1,337:26244708,33099689:224026 -k1,337:27487819,33099689:224026 -k1,337:29362041,33099689:224025 -k1,337:31298523,33099689:224026 -k1,337:32583029,33099689:0 -) -(1,338:6630773,33941177:25952256,505283,134348 -k1,337:9700479,33941177:220856 -k1,337:11053797,33941177:220856 -k1,337:13587420,33941177:220857 -k1,337:15943439,33941177:220856 -k1,337:17712911,33941177:220856 -k1,337:19392598,33941177:220856 -k1,337:22516044,33941177:220856 -k1,337:23944073,33941177:220856 -k1,337:25862968,33941177:220857 -k1,337:28341539,33941177:220856 -k1,337:29581480,33941177:220856 -k1,337:31298523,33941177:220856 -k1,337:32583029,33941177:0 -) -(1,338:6630773,34782665:25952256,513147,126483 -g1,337:9780433,34782665 -g1,337:10335522,34782665 -g1,337:12377623,34782665 -g1,337:15339195,34782665 -g1,337:17106045,34782665 -g1,337:18853890,34782665 -g1,337:20223592,34782665 -k1,338:32583029,34782665:9346747 -g1,338:32583029,34782665 -) -v1,340:6630773,36024498:0,393216,0 -(1,345:6630773,45116945:25952256,9485663,589824 -g1,345:6630773,45116945 -(1,345:6630773,45116945:25952256,9485663,589824 -(1,345:6630773,45706769:25952256,10075487,0 -[1,345:6630773,45706769:25952256,10075487,0 -(1,345:6630773,45706769:25952256,10049273,0 -r1,345:6656987,45706769:26214,10049273,0 -[1,345:6656987,45706769:25899828,10049273,0 -(1,345:6656987,45116945:25899828,8869625,0 -[1,345:7246811,45116945:24720180,8869625,0 -(1,341:7246811,37409205:24720180,1161885,196608 -(1,340:7246811,37409205:0,1161885,196608 -r1,345:8794447,37409205:1547636,1358493,196608 -k1,340:7246811,37409205:-1547636 -) -(1,340:7246811,37409205:1547636,1161885,196608 -) -k1,340:9087209,37409205:292762 -k1,340:10800793,37409205:292763 -k1,340:11744983,37409205:292762 -k1,340:14506486,37409205:292762 -k1,340:15155109,37409205:292763 -k1,340:19510448,37409205:292762 -k1,340:22464627,37409205:292762 -k1,340:26002733,37409205:292763 -k1,340:26782989,37409205:292668 -k1,340:29133582,37409205:292762 -k1,340:29957842,37409205:292763 -k1,340:30606464,37409205:292762 -k1,341:31966991,37409205:0 -) -(1,341:7246811,38250693:24720180,513147,134348 -k1,340:10572982,38250693:186341 -k1,340:11950767,38250693:186340 -k1,340:12823270,38250693:186341 -k1,340:15134287,38250693:186340 -k1,340:16006790,38250693:186341 -k1,340:18823090,38250693:186340 -k1,340:20659628,38250693:186341 -k1,340:21505261,38250693:186341 -k1,340:24767861,38250693:186340 -k1,340:26450389,38250693:186341 -k1,340:27921235,38250693:186340 -k1,340:30568453,38250693:186341 -k1,340:31966991,38250693:0 -) -(1,341:7246811,39092181:24720180,513147,126483 -k1,340:8147275,39092181:175636 -k1,340:12893393,39092181:175637 -k1,340:13424889,39092181:175636 -k1,340:16450687,39092181:175637 -k1,340:17104080,39092181:175636 -k1,340:20083347,39092181:175637 -k1,340:21957021,39092181:175636 -k1,340:23303131,39092181:175637 -k1,340:25009033,39092181:175636 -k1,340:25836098,39092181:175637 -k1,340:27104219,39092181:175636 -k1,340:28842890,39092181:175637 -k1,340:30874506,39092181:175636 -k1,340:31966991,39092181:0 -) -(1,341:7246811,39933669:24720180,513147,134348 -k1,340:7790386,39933669:187715 -k1,340:9367464,39933669:187715 -k1,340:10489721,39933669:187714 -k1,340:13435846,39933669:187715 -k1,340:14239599,39933669:187715 -k1,340:15861242,39933669:187715 -k1,340:16463788,39933669:187703 -k1,340:17334388,39933669:187715 -k1,340:20254299,39933669:187715 -k1,340:23070663,39933669:187715 -k1,340:24647741,39933669:187715 -k1,340:26845444,39933669:187714 -k1,340:28052244,39933669:187715 -k1,340:30297134,39933669:187715 -k1,340:31966991,39933669:0 -) -(1,341:7246811,40775157:24720180,513147,126483 -k1,340:7946595,40775157:222027 -k1,340:9339094,40775157:222026 -k1,340:10665403,40775157:222027 -k1,340:14143258,40775157:222026 -k1,340:15384370,40775157:222027 -k1,340:18282886,40775157:222026 -k1,340:19880514,40775157:222027 -k1,340:21496491,40775157:222026 -k1,340:23177349,40775157:222027 -k1,340:24729756,40775157:222026 -k1,340:26514817,40775157:222027 -k1,340:28170771,40775157:222026 -k1,340:29563271,40775157:222027 -k1,340:31315563,40775157:222026 -k1,340:31966991,40775157:0 -) -(1,341:7246811,41616645:24720180,513147,134348 -g1,340:9876115,41616645 -g1,340:10431204,41616645 -g1,340:13248596,41616645 -g1,340:15527938,41616645 -g1,340:16386459,41616645 -g1,340:17043785,41616645 -g1,340:18527520,41616645 -g1,340:21187626,41616645 -g1,340:22405940,41616645 -k1,341:31966991,41616645:6710890 -g1,341:31966991,41616645 -) -(1,343:7246811,42458133:24720180,513147,134348 -h1,342:7246811,42458133:983040,0,0 -k1,342:10208001,42458133:203435 -k1,342:13523084,42458133:203434 -k1,342:14745604,42458133:203435 -k1,342:17006869,42458133:203434 -k1,342:18380777,42458133:203435 -k1,342:19716674,42458133:203435 -k1,342:21450374,42458133:203434 -k1,342:22305237,42458133:203435 -k1,342:25113072,42458133:203434 -k1,342:26335592,42458133:203435 -k1,342:28208883,42458133:203434 -k1,342:29603763,42458133:203435 -k1,343:31966991,42458133:0 -) -(1,343:7246811,43299621:24720180,513147,134348 -k1,342:8717288,43299621:172864 -k1,342:10093393,43299621:172864 -k1,342:11621541,43299621:172863 -k1,342:13806360,43299621:172864 -k1,342:15149697,43299621:172864 -k1,342:15973989,43299621:172864 -k1,342:18985872,43299621:172863 -k1,342:20177821,43299621:172864 -k1,342:23200846,43299621:172864 -k1,342:25808373,43299621:172864 -k1,342:28023993,43299621:172863 -k1,342:30589576,43299621:172864 -k1,342:31118300,43299621:172864 -k1,343:31966991,43299621:0 -) -(1,343:7246811,44141109:24720180,513147,134348 -k1,342:8856499,44141109:188212 -k1,342:11196257,44141109:188211 -k1,342:11842566,44141109:188212 -k1,342:12562275,44141109:188212 -k1,342:14150336,44141109:188212 -k1,342:14989975,44141109:188211 -k1,342:17000088,44141109:188212 -k1,342:17646397,44141109:188212 -k1,342:19228560,44141109:188212 -k1,342:20435856,44141109:188211 -k1,342:22376501,44141109:188212 -k1,342:25228752,44141109:188212 -k1,342:26084120,44141109:188212 -k1,342:26687163,44141109:188200 -k1,342:28066820,44141109:188212 -k1,342:29386839,44141109:188212 -k1,342:31966991,44141109:0 -) -(1,343:7246811,44982597:24720180,505283,134348 -g1,342:9184055,44982597 -k1,343:31966992,44982597:21096040 -g1,343:31966992,44982597 -) -] -) -] -r1,345:32583029,45706769:26214,10049273,0 -) -] -) -) -g1,345:32583029,45116945 -) -] -(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 -) -] -h1,345:4262630,4025873:0,0,0 -] -!21887 +g1,351:6630773,4812305 +g1,351:6630773,4812305 +g1,351:9189953,4812305 +g1,351:12564401,4812305 +g1,351:16510323,4812305 +k1,351:31786111,4812305:15275788 +) +) +] +[1,351:6630773,45706769:25952256,40108032,0 +(1,351:6630773,45706769:25952256,40108032,0 +(1,351:6630773,45706769:0,0,0 +g1,351:6630773,45706769 +) +[1,351:6630773,45706769:25952256,40108032,0 +(1,329:7679349,6254097:24903680,505283,126483 +k1,328:9833935,6254097:176709 +k1,328:11202088,6254097:176708 +k1,328:11994835,6254097:176709 +k1,328:13190629,6254097:176709 +k1,328:18367079,6254097:176708 +k1,328:19648725,6254097:176709 +k1,328:22475054,6254097:176708 +k1,328:23936269,6254097:176709 +k1,328:25283451,6254097:176709 +k1,328:28742857,6254097:176708 +k1,328:30122807,6254097:176709 +k1,328:32583029,6254097:0 +) +(1,329:7679349,7095585:24903680,505283,126483 +g1,328:10298823,7095585 +g1,328:12196090,7095585 +g1,328:13565792,7095585 +g1,328:15167491,7095585 +g1,328:16825551,7095585 +k1,329:32583029,7095585:12612405 +g1,329:32583029,7095585 +) +(1,330:7679349,8461361:24903680,513147,126483 +(1,329:7679349,8461361:0,355205,0 +g1,329:7679349,8461361 +g1,329:6368629,8461361 +g1,329:6040949,8461361 +(1,329:6040949,8461361:1310720,355205,0 +k1,329:7351669,8461361:1310720 +(1,329:7351669,8461361:0,355205,0 +k1,329:6953210,8461361:-398459 +) +) +g1,329:7679349,8461361 +) +k1,329:10322535,8461361:258331 +k1,329:10936726,8461361:258331 +k1,329:12725323,8461361:258331 +k1,329:16715929,8461361:258331 +k1,329:17633552,8461361:258331 +k1,329:18910967,8461361:258330 +k1,329:22019459,8461361:258331 +k1,329:23469235,8461361:258331 +k1,329:24493682,8461361:258331 +k1,329:25771098,8461361:258331 +k1,329:28602372,8461361:258331 +k1,329:32583029,8461361:0 +) +(1,330:7679349,9302849:24903680,513147,134348 +k1,329:9008474,9302849:256956 +k1,329:9731390,9302849:256955 +k1,329:10446443,9302849:256956 +k1,329:13560768,9302849:256955 +k1,329:14406237,9302849:256956 +k1,329:15682278,9302849:256956 +k1,329:18446640,9302849:256955 +k1,329:21757574,9302849:256956 +k1,329:24434118,9302849:256955 +k1,329:25882519,9302849:256956 +k1,329:27271281,9302849:256955 +k1,329:30438691,9302849:256956 +k1,329:32583029,9302849:0 +) +(1,330:7679349,10144337:24903680,505283,7863 +g1,329:9070023,10144337 +g1,329:10777891,10144337 +k1,330:32583028,10144337:18967428 +g1,330:32583028,10144337 +) +(1,331:7679349,11510113:24903680,513147,126483 +(1,330:7679349,11510113:0,355205,0 +g1,330:7679349,11510113 +g1,330:6368629,11510113 +g1,330:6040949,11510113 +(1,330:6040949,11510113:1310720,355205,0 +k1,330:7351669,11510113:1310720 +(1,330:7351669,11510113:0,355205,0 +k1,330:6953210,11510113:-398459 +) +) +g1,330:7679349,11510113 +) +k1,330:8330995,11510113:173889 +k1,330:9117646,11510113:173889 +k1,330:10057650,11510113:173888 +k1,330:13035169,11510113:173889 +k1,330:15639133,11510113:173889 +k1,330:16168882,11510113:173889 +k1,330:19519956,11510113:173889 +k1,330:20885290,11510113:173889 +k1,330:22917780,11510113:173889 +k1,330:24163837,11510113:173888 +k1,330:29011754,11510113:173889 +k1,330:30681830,11510113:173889 +k1,331:32583029,11510113:0 +) +(1,331:7679349,12351601:24903680,505283,126483 +g1,330:8851788,12351601 +g1,330:10335523,12351601 +g1,330:14120882,12351601 +g1,330:15339196,12351601 +g1,330:18214915,12351601 +g1,330:22069087,12351601 +g1,330:24136092,12351601 +k1,331:32583029,12351601:6008342 +g1,331:32583029,12351601 +) +(1,332:7679349,13717377:24903680,505283,126483 +(1,331:7679349,13717377:0,355205,0 +g1,331:7679349,13717377 +g1,331:6368629,13717377 +g1,331:6040949,13717377 +(1,331:6040949,13717377:1310720,355205,0 +k1,331:7351669,13717377:1310720 +(1,331:7351669,13717377:0,355205,0 +k1,331:6953210,13717377:-398459 +) +) +g1,331:7679349,13717377 +) +g1,331:8625033,13717377 +k1,332:32583028,13717377:21958492 +g1,332:32583028,13717377 +) +(1,333:7679349,15083153:24903680,513147,134348 +(1,332:7679349,15083153:0,355205,0 +g1,332:7679349,15083153 +g1,332:6368629,15083153 +g1,332:6040949,15083153 +(1,332:6040949,15083153:1310720,355205,0 +k1,332:7351669,15083153:1310720 +(1,332:7351669,15083153:0,355205,0 +k1,332:6953210,15083153:-398459 +) +) +g1,332:7679349,15083153 +) +k1,332:11340846,15083153:230687 +k1,332:12222960,15083153:230686 +k1,332:13472732,15083153:230687 +k1,332:15685883,15083153:230687 +k1,332:16678097,15083153:230686 +k1,332:20156748,15083153:230687 +k1,332:22089404,15083153:230686 +k1,332:24204906,15083153:230687 +k1,332:27530203,15083153:230687 +k1,332:29458927,15083153:230686 +k1,332:30860087,15083153:230687 +k1,332:32583029,15083153:0 +) +(1,333:7679349,15924641:24903680,505283,7863 +g1,332:8897663,15924641 +k1,333:32583029,15924641:21253980 +g1,333:32583029,15924641 +) +(1,335:6630773,17552561:25952256,513147,11795 +(1,335:6630773,17552561:2809528,485622,0 +g1,335:6630773,17552561 +g1,335:9440301,17552561 +) +k1,335:32583029,17552561:18321900 +g1,335:32583029,17552561 +) +(1,338:6630773,18787265:25952256,513147,126484 +k1,337:10343388,18787265:307364 +k1,337:15196985,18787265:307364 +$1,337:15404079,18787265 +k1,337:16984807,18787265:0 +k1,337:17379989,18787265:0 +k1,337:17775171,18787265:0 +k1,337:18170353,18787265:0 +k1,337:23307719,18787265:0 +k1,337:23702901,18787265:0 +$1,337:25283629,18787265 +k1,337:25798087,18787265:307364 +k1,337:26636947,18787265:307363 +k1,337:27963396,18787265:307364 +k1,337:29605728,18787265:307364 +k1,338:32583029,18787265:0 +) +(1,338:6630773,19628753:25952256,513147,134348 +k1,337:10517912,19628753:224987 +k1,337:12825217,19628753:224961 +k1,337:15576617,19628753:224987 +k1,337:16937343,19628753:224987 +k1,337:18109981,19628753:224987 +k1,337:18923481,19628753:224987 +k1,337:19776302,19628753:224986 +k1,337:21602989,19628753:224987 +k1,337:23699029,19628753:224987 +k1,337:26984547,19628753:224987 +k1,337:28157185,19628753:224987 +k1,337:30873195,19628753:224987 +k1,338:32583029,19628753:0 +) +(1,338:6630773,20470241:25952256,513147,134348 +k1,337:8420070,20470241:191529 +k1,337:9803044,20470241:191529 +k1,337:11503211,20470241:191528 +k1,337:14456427,20470241:191529 +k1,337:15780418,20470241:191529 +k1,337:16719713,20470241:191529 +k1,337:17677358,20470241:191529 +k1,337:19153392,20470241:191528 +k1,337:20515394,20470241:191529 +k1,337:22237189,20470241:191529 +k1,337:23080146,20470241:191529 +k1,337:24260613,20470241:191529 +k1,337:24929899,20470241:191529 +k1,337:27190399,20470241:191528 +k1,337:27737788,20470241:191529 +k1,337:30867296,20470241:191529 +k1,337:32583029,20470241:0 +) +(1,338:6630773,21311729:25952256,513147,126483 +k1,337:8242260,21311729:230643 +k1,337:9757409,21311729:230643 +k1,337:10446149,21311729:230643 +k1,337:11208289,21311729:230643 +k1,337:13201850,21311729:230643 +k1,337:13788353,21311729:230643 +k1,337:15302191,21311729:230643 +k1,337:18470812,21311729:230642 +k1,337:19179212,21311729:230643 +k1,337:21064639,21311729:230643 +k1,337:21826779,21311729:230643 +k1,337:23749562,21311729:230643 +k1,337:26744514,21311729:230643 +k1,337:28259663,21311729:230643 +k1,337:30207349,21311729:230643 +k1,337:32583029,21311729:0 +) +(1,338:6630773,22153217:25952256,513147,126483 +g1,337:8545735,22153217 +g1,337:10275230,22153217 +g1,337:11804840,22153217 +g1,337:13462900,22153217 +g1,337:16426438,22153217 +g1,337:17157164,22153217 +k1,338:32583029,22153217:12489852 +g1,338:32583029,22153217 +) +(1,340:6630773,22994705:25952256,513147,134348 +h1,339:6630773,22994705:983040,0,0 +k1,339:12319429,22994705:159383 +k1,339:13579817,22994705:159383 +k1,339:14095061,22994705:159384 +k1,339:17714090,22994705:159383 +k1,339:20119392,22994705:159383 +k1,339:22133444,22994705:159383 +k1,339:23102197,22994705:159383 +k1,339:26786763,22994705:159384 +k1,339:28137591,22994705:159383 +k1,339:31391584,22994705:159383 +k1,339:32583029,22994705:0 +) +(1,340:6630773,23836193:25952256,505283,126483 +k1,339:9383191,23836193:164401 +k1,339:10651875,23836193:164402 +k1,339:11564042,23836193:164401 +k1,339:12777020,23836193:164402 +k1,339:14132866,23836193:164401 +k1,339:18211733,23836193:164402 +k1,339:20297650,23836193:164401 +k1,339:21856003,23836193:164402 +k1,339:23039489,23836193:164401 +k1,339:24805591,23836193:164402 +k1,339:27704809,23836193:164401 +k1,339:28860771,23836193:164402 +k1,339:30786780,23836193:164401 +k1,339:31563944,23836193:164402 +k1,339:32583029,23836193:0 +) +(1,340:6630773,24677681:25952256,513147,126483 +k1,339:7922581,24677681:219639 +k1,339:8801512,24677681:219639 +k1,339:11942747,24677681:219640 +k1,339:12640143,24677681:219639 +k1,339:13878867,24677681:219639 +k1,339:17193116,24677681:219639 +k1,339:18095641,24677681:219640 +k1,339:20903297,24677681:219639 +k1,339:22293409,24677681:219639 +k1,339:24127855,24677681:219639 +k1,339:25339054,24677681:219639 +k1,339:28557621,24677681:219640 +k1,339:30290486,24677681:219639 +k1,339:31680598,24677681:219639 +k1,340:32583029,24677681:0 +) +(1,340:6630773,25519169:25952256,505283,134348 +k1,339:9765062,25519169:185824 +k1,339:12311493,25519169:185824 +k1,339:16022499,25519169:185824 +k1,339:17378796,25519169:185824 +k1,339:19910154,25519169:185824 +k1,339:22324858,25519169:185825 +k1,339:23702127,25519169:185824 +k1,339:25927431,25519169:185824 +k1,339:27606821,25519169:185824 +k1,339:28478807,25519169:185824 +k1,339:30881059,25519169:185824 +k1,339:32583029,25519169:0 +) +(1,340:6630773,26360657:25952256,513147,134348 +k1,339:8688548,26360657:172960 +k1,339:11956118,26360657:172960 +k1,339:13320524,26360657:172961 +k1,339:16081501,26360657:172960 +k1,339:16937346,26360657:172960 +k1,339:18563895,26360657:172960 +k1,339:19719896,26360657:172961 +k1,339:21359552,26360657:172960 +k1,339:24100213,26360657:172960 +k1,339:26266123,26360657:172960 +k1,339:29027101,26360657:172961 +k1,339:29882946,26360657:172960 +k1,339:32583029,26360657:0 +) +(1,340:6630773,27202145:25952256,513147,126483 +k1,339:9993950,27202145:268567 +k1,339:11830137,27202145:268566 +k1,339:13117789,27202145:268567 +k1,339:15805944,27202145:268566 +k1,339:17455355,27202145:268567 +k1,339:20029478,27202145:268566 +k1,339:24361277,27202145:268567 +k1,339:25702012,27202145:268566 +k1,339:27897337,27202145:268567 +k1,339:31304422,27202145:268566 +k1,339:32583029,27202145:0 +) +(1,340:6630773,28043633:25952256,513147,134348 +k1,339:7471499,28043633:227964 +k1,339:10485399,28043633:227965 +k1,339:11997869,28043633:227964 +k1,339:13244918,28043633:227964 +k1,339:14906811,28043633:227965 +k1,339:15794067,28043633:227964 +k1,339:19116641,28043633:227964 +k1,339:20536050,28043633:227964 +k1,339:23352032,28043633:227965 +k1,339:24111493,28043633:227964 +k1,339:26912400,28043633:227964 +k1,339:28331810,28043633:227965 +k1,339:30976086,28043633:227964 +k1,340:32583029,28043633:0 +) +(1,340:6630773,28885121:25952256,513147,134348 +k1,339:7850464,28885121:153420 +k1,339:10196062,28885121:153419 +k1,339:11158852,28885121:153420 +k1,339:14738494,28885121:153420 +k1,339:18691690,28885121:153419 +k1,339:20628345,28885121:153420 +k1,339:22517158,28885121:153420 +k1,339:27390481,28885121:153420 +k1,339:28359168,28885121:153419 +k1,339:31821501,28885121:153420 +k1,339:32583029,28885121:0 +) +(1,340:6630773,29726609:25952256,513147,134348 +k1,339:9880638,29726609:211616 +k1,339:12334895,29726609:211615 +k1,339:15308198,29726609:211616 +k1,339:18567237,29726609:211615 +k1,339:21873463,29726609:211616 +k1,339:23276523,29726609:211615 +k1,339:26076156,29726609:211616 +k1,339:27572277,29726609:211615 +k1,339:28954366,29726609:211616 +k1,339:30432137,29726609:211615 +k1,339:32583029,29726609:0 +) +(1,340:6630773,30568097:25952256,513147,134348 +k1,339:10829307,30568097:235572 +k1,339:12808792,30568097:235572 +k1,339:14214838,30568097:235573 +k1,339:17181295,30568097:235572 +k1,339:19088690,30568097:235572 +k1,339:20515707,30568097:235572 +k1,339:23280313,30568097:235572 +k1,339:24198770,30568097:235572 +k1,339:27667234,30568097:235573 +k1,339:29840050,30568097:235572 +k1,339:31246095,30568097:235572 +k1,339:32583029,30568097:0 +) +(1,340:6630773,31409585:25952256,505283,7863 +k1,340:32583029,31409585:23105372 +g1,340:32583029,31409585 +) +(1,341:6630773,33037505:25952256,505283,134348 +(1,341:6630773,33037505:2809528,485622,11795 +g1,341:6630773,33037505 +g1,341:9440301,33037505 +) +g1,341:12908466,33037505 +k1,341:32583029,33037505:18090558 +g1,341:32583029,33037505 +) +(1,344:6630773,34272209:25952256,513147,134348 +k1,343:8552765,34272209:185288 +k1,343:10947927,34272209:185288 +k1,343:11749254,34272209:185289 +k1,343:12953627,34272209:185288 +k1,343:16883642,34272209:185288 +k1,343:17728222,34272209:185288 +k1,343:18269370,34272209:185288 +k1,343:22517235,34272209:185288 +k1,343:25363941,34272209:185289 +k1,343:26080726,34272209:185288 +k1,343:29373731,34272209:185288 +k1,343:32583029,34272209:0 +) +(1,344:6630773,35113697:25952256,513147,134348 +k1,343:8492159,35113697:163348 +k1,343:9825981,35113697:163349 +k1,343:12045193,35113697:163348 +k1,343:12859970,35113697:163349 +k1,343:15019545,35113697:163348 +k1,343:15538754,35113697:163349 +k1,343:16891580,35113697:163348 +k1,343:17706356,35113697:163348 +k1,343:18888790,35113697:163349 +k1,343:22508507,35113697:163348 +k1,343:23331148,35113697:163349 +k1,343:24626303,35113697:163348 +k1,343:26439849,35113697:163349 +k1,343:27262489,35113697:163348 +k1,343:30358574,35113697:163349 +k1,343:31563944,35113697:163348 +k1,343:32583029,35113697:0 +) +(1,344:6630773,35955185:25952256,513147,134348 +k1,343:9539026,35955185:231763 +k1,343:10422218,35955185:231764 +k1,343:11401747,35955185:231763 +k1,343:13370869,35955185:231763 +k1,343:14621718,35955185:231764 +k1,343:17049592,35955185:231763 +k1,343:19795972,35955185:231764 +k1,343:21046820,35955185:231763 +k1,343:22948440,35955185:231763 +k1,343:25040771,35955185:231764 +k1,343:25923962,35955185:231763 +k1,343:26903491,35955185:231763 +k1,343:28444009,35955185:231764 +k1,343:29327200,35955185:231763 +k1,343:32583029,35955185:0 +) +(1,344:6630773,36796673:25952256,513147,134348 +k1,343:7840786,36796673:190928 +k1,343:10881875,36796673:190928 +k1,343:12264248,36796673:190928 +k1,343:13968402,36796673:190928 +k1,343:17411882,36796673:190928 +k1,343:18621895,36796673:190928 +k1,343:20482680,36796673:190928 +k1,343:22534176,36796673:190929 +k1,343:23376532,36796673:190928 +k1,343:24315226,36796673:190928 +k1,343:25814908,36796673:190928 +k1,343:26657264,36796673:190928 +k1,343:28039637,36796673:190928 +k1,343:28696526,36796673:190928 +k1,343:29906539,36796673:190928 +k1,343:32583029,36796673:0 +) +(1,344:6630773,37638161:25952256,513147,134348 +k1,343:7927381,37638161:195603 +k1,343:9632934,37638161:195603 +k1,343:11883746,37638161:195603 +k1,343:12762235,37638161:195604 +k1,343:14197779,37638161:195603 +k1,343:17328084,37638161:195603 +k1,343:18990383,37638161:195603 +k1,343:19651947,37638161:195603 +k1,343:21018023,37638161:195603 +k1,343:22205186,37638161:195603 +k1,343:24345242,37638161:195603 +k1,343:24896706,37638161:195604 +k1,343:27768799,37638161:195603 +k1,343:30167067,37638161:195603 +k1,343:31124198,37638161:195603 +k1,343:32583029,37638161:0 +) +(1,344:6630773,38479649:25952256,513147,134348 +k1,343:12661289,38479649:224026 +k1,343:13544606,38479649:224025 +k1,343:15099013,38479649:224026 +k1,343:15737857,38479649:224001 +k1,343:18062312,38479649:224026 +k1,343:19305423,38479649:224026 +k1,343:21942484,38479649:224025 +k1,343:23185595,38479649:224026 +k1,343:26244708,38479649:224026 +k1,343:27487819,38479649:224026 +k1,343:29362041,38479649:224025 +k1,343:31298523,38479649:224026 +k1,343:32583029,38479649:0 +) +(1,344:6630773,39321137:25952256,505283,134348 +k1,343:9700479,39321137:220856 +k1,343:11053797,39321137:220856 +k1,343:13587420,39321137:220857 +k1,343:15943439,39321137:220856 +k1,343:17712911,39321137:220856 +k1,343:19392598,39321137:220856 +k1,343:22516044,39321137:220856 +k1,343:23944073,39321137:220856 +k1,343:25862968,39321137:220857 +k1,343:28341539,39321137:220856 +k1,343:29581480,39321137:220856 +k1,343:31298523,39321137:220856 +k1,343:32583029,39321137:0 +) +(1,344:6630773,40162625:25952256,513147,126483 +g1,343:9780433,40162625 +g1,343:10335522,40162625 +g1,343:12377623,40162625 +g1,343:15339195,40162625 +g1,343:17106045,40162625 +g1,343:18853890,40162625 +g1,343:20223592,40162625 +k1,344:32583029,40162625:9346747 +g1,344:32583029,40162625 +) +v1,346:6630773,41528401:0,393216,0 +(1,351:6630773,44722567:25952256,3587382,589824 +g1,351:6630773,44722567 +(1,351:6630773,44722567:25952256,3587382,589824 +(1,351:6630773,45312391:25952256,4177206,0 +[1,351:6630773,45312391:25952256,4177206,0 +(1,351:6630773,45312391:25952256,4150992,0 +r1,351:6656987,45312391:26214,4150992,0 +[1,351:6656987,45312391:25899828,4150992,0 +(1,351:6656987,44722567:25899828,2971344,0 +[1,351:7246811,44722567:24720180,2971344,0 +(1,347:7246811,42913108:24720180,1161885,196608 +(1,346:7246811,42913108:0,1161885,196608 +r1,351:8794447,42913108:1547636,1358493,196608 +k1,346:7246811,42913108:-1547636 +) +(1,346:7246811,42913108:1547636,1161885,196608 +) +k1,346:9087209,42913108:292762 +k1,346:10800793,42913108:292763 +k1,346:11744983,42913108:292762 +k1,346:14506486,42913108:292762 +k1,346:15155109,42913108:292763 +k1,346:19510448,42913108:292762 +k1,346:22464627,42913108:292762 +k1,346:26002733,42913108:292763 +k1,346:26782989,42913108:292668 +k1,346:29133582,42913108:292762 +k1,346:29957842,42913108:292763 +k1,346:30606464,42913108:292762 +k1,347:31966991,42913108:0 +) +(1,347:7246811,43754596:24720180,513147,134348 +k1,346:10572982,43754596:186341 +k1,346:11950767,43754596:186340 +k1,346:12823270,43754596:186341 +k1,346:15134287,43754596:186340 +k1,346:16006790,43754596:186341 +k1,346:18823090,43754596:186340 +k1,346:20659628,43754596:186341 +k1,346:21505261,43754596:186341 +k1,346:24767861,43754596:186340 +k1,346:26450389,43754596:186341 +k1,346:27921235,43754596:186340 +k1,346:30568453,43754596:186341 +k1,346:31966991,43754596:0 +) +(1,347:7246811,44596084:24720180,513147,126483 +k1,346:8147275,44596084:175636 +k1,346:12893393,44596084:175637 +k1,346:13424889,44596084:175636 +k1,346:16450687,44596084:175637 +k1,346:17104080,44596084:175636 +k1,346:20083347,44596084:175637 +k1,346:21957021,44596084:175636 +k1,346:23303131,44596084:175637 +k1,346:25009033,44596084:175636 +k1,346:25836098,44596084:175637 +k1,346:27104219,44596084:175636 +k1,346:28842890,44596084:175637 +k1,346:30874506,44596084:175636 +k1,346:31966991,44596084:0 +) +] +) +] +r1,351:32583029,45312391:26214,4150992,0 +) +] +) +) +g1,351:32583029,44722567 +) +] +(1,351:32583029,45706769:0,0,0 +g1,351:32583029,45706769 +) +) +] +(1,351:6630773,47279633:25952256,0,0 +h1,351:6630773,47279633:25952256,0,0 +) +] +h1,351:4262630,4025873:0,0,0 +] +!20857 }24 !11 {25 -[1,362:4262630,47279633:28320399,43253760,0 -(1,362:4262630,4025873:0,0,0 -[1,362:-473657,4025873:25952256,0,0 -(1,362:-473657,-710414:25952256,0,0 -h1,362:-473657,-710414:0,0,0 -(1,362:-473657,-710414:0,0,0 -(1,362:-473657,-710414:0,0,0 -g1,362:-473657,-710414 -(1,362:-473657,-710414:65781,0,65781 -g1,362:-407876,-710414 -[1,362:-407876,-644633:0,0,0 -] -) -k1,362:-473657,-710414:-65781 -) -) -k1,362:25478599,-710414:25952256 -g1,362:25478599,-710414 -) +[1,365:4262630,47279633:28320399,43253760,0 +(1,365:4262630,4025873:0,0,0 +[1,365:-473657,4025873:25952256,0,0 +(1,365:-473657,-710414:25952256,0,0 +h1,365:-473657,-710414:0,0,0 +(1,365:-473657,-710414:0,0,0 +(1,365:-473657,-710414:0,0,0 +g1,365:-473657,-710414 +(1,365:-473657,-710414:65781,0,65781 +g1,365:-407876,-710414 +[1,365:-407876,-644633:0,0,0 ] ) -[1,362:6630773,47279633:25952256,43253760,0 -[1,362:6630773,4812305:25952256,786432,0 -(1,362:6630773,4812305:25952256,505283,134348 -(1,362:6630773,4812305:25952256,505283,134348 -g1,362:3078558,4812305 -[1,362:3078558,4812305:0,0,0 -(1,362:3078558,2439708:0,1703936,0 -k1,362:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,362:2537886,2439708:1179648,16384,0 +k1,365:-473657,-710414:-65781 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,362:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,365:25478599,-710414:25952256 +g1,365:25478599,-710414 ) ] ) +[1,365:6630773,47279633:25952256,43253760,0 +[1,365:6630773,4812305:25952256,786432,0 +(1,365:6630773,4812305:25952256,505283,134348 +(1,365:6630773,4812305:25952256,505283,134348 +g1,365:3078558,4812305 +[1,365:3078558,4812305:0,0,0 +(1,365:3078558,2439708:0,1703936,0 +k1,365:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,365:2537886,2439708:1179648,16384,0 ) +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,365:3078558,1915420:16384,1179648,0 ) -] -[1,362:3078558,4812305:0,0,0 -(1,362:3078558,2439708:0,1703936,0 -g1,362:29030814,2439708 -g1,362:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,362:36151628,1915420:16384,1179648,0 -) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 -) -] -) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,362:37855564,2439708:1179648,16384,0 -) -) -k1,362:3078556,2439708:-34777008 -) -] -[1,362:3078558,4812305:0,0,0 -(1,362:3078558,49800853:0,16384,2228224 -k1,362:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,362:2537886,49800853:1179648,16384,0 -) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,362:3078558,51504789:16384,1179648,0 -) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) ) ) ] -[1,362:3078558,4812305:0,0,0 -(1,362:3078558,49800853:0,16384,2228224 -g1,362:29030814,49800853 -g1,362:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,362:36151628,51504789:16384,1179648,0 +[1,365:3078558,4812305:0,0,0 +(1,365:3078558,2439708:0,1703936,0 +g1,365:29030814,2439708 +g1,365:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,365:36151628,1915420:16384,1179648,0 ) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,362:37855564,49800853:1179648,16384,0 +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,365:37855564,2439708:1179648,16384,0 ) ) -k1,362:3078556,49800853:-34777008 +k1,365:3078556,2439708:-34777008 ) ] -g1,362:6630773,4812305 -k1,362:22047465,4812305:14619774 -g1,362:22869941,4812305 -g1,362:24054831,4812305 -g1,362:27195316,4812305 -g1,362:28604995,4812305 -g1,362:29789885,4812305 +[1,365:3078558,4812305:0,0,0 +(1,365:3078558,49800853:0,16384,2228224 +k1,365:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,365:2537886,49800853:1179648,16384,0 ) -) -] -[1,362:6630773,45706769:25952256,40108032,0 -(1,362:6630773,45706769:25952256,40108032,0 -(1,362:6630773,45706769:0,0,0 -g1,362:6630773,45706769 -) -[1,362:6630773,45706769:25952256,40108032,0 -v1,345:6630773,6254097:0,393216,0 -(1,345:6630773,8773311:25952256,2912430,616038 -g1,345:6630773,8773311 -(1,345:6630773,8773311:25952256,2912430,616038 -(1,345:6630773,9389349:25952256,3528468,0 -[1,345:6630773,9389349:25952256,3528468,0 -(1,345:6630773,9363135:25952256,3502254,0 -r1,345:6656987,9363135:26214,3502254,0 -[1,345:6656987,9363135:25899828,3502254,0 -(1,345:6656987,8773311:25899828,2322606,0 -[1,345:7246811,8773311:24720180,2322606,0 -(1,345:7246811,6963852:24720180,513147,126483 -h1,344:7246811,6963852:983040,0,0 -k1,344:8669224,6963852:226381 -k1,344:10851883,6963852:226409 -k1,344:12125557,6963852:226409 -k1,344:13636472,6963852:226409 -k1,344:15685436,6963852:226408 -k1,344:17084284,6963852:226409 -k1,344:18376964,6963852:226409 -k1,344:19262664,6963852:226408 -k1,344:21143857,6963852:226409 -k1,344:23125976,6963852:226409 -k1,344:23565349,6963852:226381 -k1,344:26260499,6963852:226409 -k1,344:26842768,6963852:226409 -k1,344:29270530,6963852:226408 -k1,344:29955036,6963852:226409 -k1,344:31966991,6963852:0 -) -(1,345:7246811,7805340:24720180,513147,126483 -k1,344:8436793,7805340:222671 -k1,344:9310892,7805340:222671 -k1,344:11316798,7805340:222671 -k1,344:13436737,7805340:222672 -k1,344:17324181,7805340:222671 -k1,344:18565937,7805340:222671 -k1,344:21465098,7805340:222671 -k1,344:22879214,7805340:222671 -k1,344:24368041,7805340:222671 -k1,344:25609798,7805340:222672 -k1,344:27166782,7805340:222671 -k1,344:28048745,7805340:222671 -k1,344:29290501,7805340:222671 -k1,344:31966991,7805340:0 -) -(1,345:7246811,8646828:24720180,505283,126483 -g1,344:8637485,8646828 -g1,344:9192574,8646828 -g1,344:12004068,8646828 -g1,344:12886182,8646828 -g1,344:13441271,8646828 -g1,344:17739122,8646828 -g1,344:18747721,8646828 -g1,344:19928024,8646828 -k1,345:31966991,8646828:10534916 -g1,345:31966991,8646828 -) -] -) -] -r1,345:32583029,9363135:26214,3502254,0 -) -] -) -) -g1,345:32583029,8773311 -) -h1,345:6630773,9389349:0,0,0 -(1,347:6630773,12196917:25952256,32768,229376 -(1,347:6630773,12196917:0,32768,229376 -(1,347:6630773,12196917:5505024,32768,229376 -r1,347:12135797,12196917:5505024,262144,229376 -) -k1,347:6630773,12196917:-5505024 -) -(1,347:6630773,12196917:25952256,32768,0 -r1,347:32583029,12196917:25952256,32768,0 -) -) -(1,347:6630773,13801245:25952256,606339,151780 -(1,347:6630773,13801245:1974731,573309,14155 -g1,347:6630773,13801245 -g1,347:8605504,13801245 -) -g1,347:10859418,13801245 -g1,347:11772466,13801245 -g1,347:14883591,13801245 -g1,347:15920109,13801245 -g1,347:17557461,13801245 -g1,347:19065051,13801245 -g1,347:23050689,13801245 -g1,347:24065973,13801245 -g1,347:25799269,13801245 -k1,347:32583029,13801245:4398512 -g1,347:32583029,13801245 -) -(1,350:6630773,15035949:25952256,513147,126483 -k1,349:8018476,15035949:191016 -k1,349:9791530,15035949:191015 -k1,349:10514043,15035949:191016 -k1,349:12991609,15035949:191015 -k1,349:14576576,15035949:191016 -k1,349:15786677,15035949:191016 -k1,349:19671956,15035949:191015 -k1,349:21147478,15035949:191016 -k1,349:22508966,15035949:191015 -k1,349:23832444,15035949:191016 -k1,349:25141504,15035949:191016 -k1,349:26934219,15035949:191015 -k1,349:27784527,15035949:191016 -k1,349:28994627,15035949:191015 -k1,349:30681830,15035949:191016 -k1,350:32583029,15035949:0 -) -(1,350:6630773,15877437:25952256,505283,126483 -k1,349:8105660,15877437:171376 -k1,349:9468482,15877437:171377 -k1,349:10546221,15877437:171376 -k1,349:11403760,15877437:171377 -k1,349:13326913,15877437:171376 -k1,349:15200260,15877437:171377 -k1,349:18527850,15877437:171376 -k1,349:19385389,15877437:171377 -k1,349:21855114,15877437:171377 -k1,349:23519400,15877437:171376 -k1,349:24861249,15877437:171376 -k1,349:26024186,15877437:171377 -k1,349:27576406,15877437:171376 -k1,349:28918256,15877437:171377 -k1,349:32583029,15877437:0 -) -(1,350:6630773,16718925:25952256,513147,134348 -k1,349:7848986,16718925:199128 -k1,349:9669476,16718925:199129 -k1,349:12054885,16718925:199128 -k1,349:12913306,16718925:199129 -k1,349:14131519,16718925:199128 -k1,349:14745491,16718925:199129 -k1,349:17786915,16718925:199128 -k1,349:19177489,16718925:199129 -k1,349:20706998,16718925:199128 -k1,349:22357749,16718925:199129 -k1,349:25252373,16718925:199128 -k1,349:26134387,16718925:199129 -k1,349:29493006,16718925:199128 -k1,349:32583029,16718925:0 -) -(1,350:6630773,17560413:25952256,505283,134348 -k1,349:8977336,17560413:246134 -k1,349:10041360,17560413:246135 -k1,349:13705197,17560413:246134 -k1,349:15980326,17560413:246134 -k1,349:17396934,17560413:246135 -k1,349:18634628,17560413:246134 -k1,349:21719783,17560413:246135 -k1,349:22617345,17560413:246134 -k1,349:23955964,17560413:246134 -k1,349:25405340,17560413:246135 -k1,349:27233513,17560413:246134 -k1,349:28165809,17560413:246134 -k1,349:28767804,17560413:246135 -k1,349:30824698,17560413:246134 -k1,349:32583029,17560413:0 -) -(1,350:6630773,18401901:25952256,513147,126483 -g1,349:7777653,18401901 -g1,349:9435713,18401901 -g1,349:13279399,18401901 -g1,349:14137920,18401901 -g1,349:15356234,18401901 -g1,349:17385228,18401901 -g1,349:18251613,18401901 -k1,350:32583029,18401901:13742903 -g1,350:32583029,18401901 -) -(1,352:6630773,19243389:25952256,505283,134348 -h1,351:6630773,19243389:983040,0,0 -k1,351:8187288,19243389:158632 -k1,351:8877457,19243389:158672 -k1,351:9802245,19243389:158672 -k1,351:11245423,19243389:158672 -k1,351:11935591,19243389:158671 -k1,351:14392611,19243389:158672 -k1,351:15202711,19243389:158672 -k1,351:16957840,19243389:158672 -k1,351:19675038,19243389:158672 -k1,351:20599826,19243389:158672 -k1,351:21777583,19243389:158672 -k1,351:24927974,19243389:158672 -k1,351:25702684,19243389:158672 -k1,351:27064597,19243389:158672 -k1,351:28978979,19243389:158672 -k1,351:30209820,19243389:158672 -k1,351:30826589,19243389:158672 -k1,351:31516758,19243389:158672 -k1,351:32583029,19243389:0 -) -(1,352:6630773,20084877:25952256,513147,134348 -k1,351:7203927,20084877:217294 -k1,351:10903804,20084877:217294 -k1,351:12359073,20084877:217294 -k1,351:13235659,20084877:217294 -k1,351:15258470,20084877:217294 -k1,351:16852675,20084877:217294 -k1,351:17282943,20084877:217276 -k1,351:21286907,20084877:217294 -k1,351:22788707,20084877:217294 -k1,351:24176474,20084877:217294 -k1,351:25486253,20084877:217294 -k1,351:26474250,20084877:217294 -k1,351:28600608,20084877:217294 -k1,351:29500787,20084877:217294 -k1,351:30488784,20084877:217294 -k1,351:31966991,20084877:217294 -k1,351:32583029,20084877:0 -) -(1,352:6630773,20926365:25952256,513147,126483 -k1,351:9923432,20926365:171835 -k1,351:12519444,20926365:171835 -k1,351:12519444,20926365:0 -k1,351:12864950,20926365:171836 -k1,351:15460962,20926365:171835 -k1,351:16164294,20926365:171835 -k1,351:17716973,20926365:171835 -k1,351:20565954,20926365:171835 -k1,351:23156069,20926365:171836 -k1,351:27090326,20926365:171835 -k1,351:28683637,20926365:171835 -k1,351:32583029,20926365:0 -) -(1,352:6630773,21767853:25952256,505283,126483 -k1,351:8071528,21767853:249310 -k1,351:11104807,21767853:249310 -k1,351:12820812,21767853:249309 -k1,351:13686160,21767853:249310 -k1,351:16498583,21767853:249310 -k1,351:17939338,21767853:249310 -k1,351:20147518,21767853:249309 -k1,351:23234537,21767853:249310 -k1,351:24680534,21767853:249310 -k1,351:27492957,21767853:249310 -k1,351:30076003,21767853:249309 -k1,351:31773659,21767853:249310 -k1,352:32583029,21767853:0 -) -(1,352:6630773,22609341:25952256,505283,102891 -g1,351:10943696,22609341 -g1,351:13069683,22609341 -g1,351:14460357,22609341 -g1,351:15529905,22609341 -g1,351:16139389,22609341 -g1,351:17530063,22609341 -g1,351:19431262,22609341 -g1,351:21082113,22609341 -k1,352:32583029,22609341:7215517 -g1,352:32583029,22609341 -) -(1,355:6630773,23450829:25952256,513147,134348 -h1,353:6630773,23450829:983040,0,0 -k1,353:8597925,23450829:210132 -k1,353:10917006,23450829:210132 -k1,353:12825176,23450829:210132 -k1,353:15893333,23450829:210132 -k1,353:17988936,23450829:210132 -k1,353:20108132,23450829:210132 -k1,353:20969692,23450829:210132 -k1,353:22445980,23450829:210132 -k1,353:25413212,23450829:210132 -k1,353:29353653,23450829:210132 -k1,353:30755230,23450829:210132 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,365:3078558,51504789:16384,1179648,0 +) +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 +) +] +) +) +) +] +[1,365:3078558,4812305:0,0,0 +(1,365:3078558,49800853:0,16384,2228224 +g1,365:29030814,49800853 +g1,365:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,365:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 +) +] +) +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,365:37855564,49800853:1179648,16384,0 +) +) +k1,365:3078556,49800853:-34777008 +) +] +g1,365:6630773,4812305 +k1,365:21845614,4812305:14417923 +g1,365:22668090,4812305 +g1,365:24054831,4812305 +g1,365:27195316,4812305 +g1,365:28604995,4812305 +g1,365:29789885,4812305 +) +) +] +[1,365:6630773,45706769:25952256,40108032,0 +(1,365:6630773,45706769:25952256,40108032,0 +(1,365:6630773,45706769:0,0,0 +g1,365:6630773,45706769 +) +[1,365:6630773,45706769:25952256,40108032,0 +v1,351:6630773,6254097:0,393216,0 +(1,351:6630773,14663727:25952256,8802846,616038 +g1,351:6630773,14663727 +(1,351:6630773,14663727:25952256,8802846,616038 +(1,351:6630773,15279765:25952256,9418884,0 +[1,351:6630773,15279765:25952256,9418884,0 +(1,351:6630773,15253551:25952256,9392670,0 +r1,351:6656987,15253551:26214,9392670,0 +[1,351:6656987,15253551:25899828,9392670,0 +(1,351:6656987,14663727:25899828,8213022,0 +[1,351:7246811,14663727:24720180,8213022,0 +(1,347:7246811,6963852:24720180,513147,134348 +k1,346:7790386,6963852:187715 +k1,346:9367464,6963852:187715 +k1,346:10489721,6963852:187714 +k1,346:13435846,6963852:187715 +k1,346:14239599,6963852:187715 +k1,346:15861242,6963852:187715 +k1,346:16463788,6963852:187703 +k1,346:17334388,6963852:187715 +k1,346:20254299,6963852:187715 +k1,346:23070663,6963852:187715 +k1,346:24647741,6963852:187715 +k1,346:26845444,6963852:187714 +k1,346:28052244,6963852:187715 +k1,346:30297134,6963852:187715 +k1,346:31966991,6963852:0 +) +(1,347:7246811,7805340:24720180,513147,126483 +k1,346:7946595,7805340:222027 +k1,346:9339094,7805340:222026 +k1,346:10665403,7805340:222027 +k1,346:14143258,7805340:222026 +k1,346:15384370,7805340:222027 +k1,346:18282886,7805340:222026 +k1,346:19880514,7805340:222027 +k1,346:21496491,7805340:222026 +k1,346:23177349,7805340:222027 +k1,346:24729756,7805340:222026 +k1,346:26514817,7805340:222027 +k1,346:28170771,7805340:222026 +k1,346:29563271,7805340:222027 +k1,346:31315563,7805340:222026 +k1,346:31966991,7805340:0 +) +(1,347:7246811,8646828:24720180,513147,134348 +g1,346:9876115,8646828 +g1,346:10431204,8646828 +g1,346:13248596,8646828 +g1,346:15527938,8646828 +g1,346:16386459,8646828 +g1,346:17043785,8646828 +g1,346:18527520,8646828 +g1,346:21187626,8646828 +g1,346:22405940,8646828 +k1,347:31966991,8646828:6710890 +g1,347:31966991,8646828 +) +(1,349:7246811,9488316:24720180,513147,134348 +h1,348:7246811,9488316:983040,0,0 +k1,348:10246175,9488316:241609 +k1,348:13599434,9488316:241610 +k1,348:14860128,9488316:241609 +k1,348:17159568,9488316:241609 +k1,348:18571650,9488316:241609 +k1,348:19945722,9488316:241610 +k1,348:21717597,9488316:241609 +k1,348:22610634,9488316:241609 +k1,348:25456644,9488316:241609 +k1,348:26717339,9488316:241610 +k1,348:28628805,9488316:241609 +k1,348:30061859,9488316:241609 +k1,349:31966991,9488316:0 +) +(1,349:7246811,10329804:24720180,513147,134348 +k1,348:9222340,10329804:219819 +k1,348:10645399,10329804:219818 +k1,348:12220503,10329804:219819 +k1,348:14452276,10329804:219818 +k1,348:15842568,10329804:219819 +k1,348:16713814,10329804:219818 +k1,348:19772653,10329804:219819 +k1,348:21011557,10329804:219819 +k1,348:24081536,10329804:219818 +k1,348:26736018,10329804:219819 +k1,348:28998593,10329804:219818 +k1,348:31611131,10329804:219819 +k1,348:31966991,10329804:0 +) +(1,349:7246811,11171292:24720180,513147,134348 +k1,348:9452469,11171292:148483 +k1,348:11752499,11171292:148483 +k1,348:12359079,11171292:148483 +k1,348:13039059,11171292:148483 +k1,348:14587391,11171292:148483 +k1,348:15387302,11171292:148483 +k1,348:17357686,11171292:148483 +k1,348:17964266,11171292:148483 +k1,348:19506700,11171292:148483 +k1,348:20674268,11171292:148483 +k1,348:22575184,11171292:148483 +k1,348:25387706,11171292:148483 +k1,348:26203345,11171292:148483 +k1,348:26766621,11171292:148433 +k1,348:28106549,11171292:148483 +k1,348:29386839,11171292:148483 +k1,348:31966991,11171292:0 +) +(1,349:7246811,12012780:24720180,505283,134348 +g1,348:9184055,12012780 +k1,349:31966992,12012780:21096040 +g1,349:31966992,12012780 +) +(1,351:7246811,12854268:24720180,513147,126483 +h1,350:7246811,12854268:983040,0,0 +k1,350:8669224,12854268:226381 +k1,350:10851883,12854268:226409 +k1,350:12125557,12854268:226409 +k1,350:13636472,12854268:226409 +k1,350:15685436,12854268:226408 +k1,350:17084284,12854268:226409 +k1,350:18376964,12854268:226409 +k1,350:19262664,12854268:226408 +k1,350:21143857,12854268:226409 +k1,350:23125976,12854268:226409 +k1,350:23565349,12854268:226381 +k1,350:26260499,12854268:226409 +k1,350:26842768,12854268:226409 +k1,350:29270530,12854268:226408 +k1,350:29955036,12854268:226409 +k1,350:31966991,12854268:0 +) +(1,351:7246811,13695756:24720180,513147,126483 +k1,350:8436793,13695756:222671 +k1,350:9310892,13695756:222671 +k1,350:11316798,13695756:222671 +k1,350:13436737,13695756:222672 +k1,350:17324181,13695756:222671 +k1,350:18565937,13695756:222671 +k1,350:21465098,13695756:222671 +k1,350:22879214,13695756:222671 +k1,350:24368041,13695756:222671 +k1,350:25609798,13695756:222672 +k1,350:27166782,13695756:222671 +k1,350:28048745,13695756:222671 +k1,350:29290501,13695756:222671 +k1,350:31966991,13695756:0 +) +(1,351:7246811,14537244:24720180,505283,126483 +g1,350:8637485,14537244 +g1,350:9192574,14537244 +g1,350:12004068,14537244 +g1,350:12886182,14537244 +g1,350:13441271,14537244 +g1,350:17739122,14537244 +g1,350:18747721,14537244 +g1,350:19928024,14537244 +k1,351:31966991,14537244:10534916 +g1,351:31966991,14537244 +) +] +) +] +r1,351:32583029,15253551:26214,9392670,0 +) +] +) +) +g1,351:32583029,14663727 +) +h1,351:6630773,15279765:0,0,0 +(1,353:6630773,18087333:25952256,32768,229376 +(1,353:6630773,18087333:0,32768,229376 +(1,353:6630773,18087333:5505024,32768,229376 +r1,353:12135797,18087333:5505024,262144,229376 +) +k1,353:6630773,18087333:-5505024 +) +(1,353:6630773,18087333:25952256,32768,0 +r1,353:32583029,18087333:25952256,32768,0 +) +) +(1,353:6630773,19691661:25952256,606339,151780 +(1,353:6630773,19691661:1974731,573309,14155 +g1,353:6630773,19691661 +g1,353:8605504,19691661 +) +g1,353:10859418,19691661 +g1,353:11772466,19691661 +g1,353:14883591,19691661 +g1,353:15920109,19691661 +g1,353:17557461,19691661 +g1,353:19065051,19691661 +g1,353:23050689,19691661 +g1,353:24065973,19691661 +g1,353:25799269,19691661 +k1,353:32583029,19691661:4398512 +g1,353:32583029,19691661 +) +(1,356:6630773,20926365:25952256,513147,126483 +k1,355:8018476,20926365:191016 +k1,355:9791530,20926365:191015 +k1,355:10514043,20926365:191016 +k1,355:12991609,20926365:191015 +k1,355:14576576,20926365:191016 +k1,355:15786677,20926365:191016 +k1,355:19671956,20926365:191015 +k1,355:21147478,20926365:191016 +k1,355:22508966,20926365:191015 +k1,355:23832444,20926365:191016 +k1,355:25141504,20926365:191016 +k1,355:26934219,20926365:191015 +k1,355:27784527,20926365:191016 +k1,355:28994627,20926365:191015 +k1,355:30681830,20926365:191016 +k1,356:32583029,20926365:0 +) +(1,356:6630773,21767853:25952256,505283,126483 +k1,355:8105660,21767853:171376 +k1,355:9468482,21767853:171377 +k1,355:10546221,21767853:171376 +k1,355:11403760,21767853:171377 +k1,355:13326913,21767853:171376 +k1,355:15200260,21767853:171377 +k1,355:18527850,21767853:171376 +k1,355:19385389,21767853:171377 +k1,355:21855114,21767853:171377 +k1,355:23519400,21767853:171376 +k1,355:24861249,21767853:171376 +k1,355:26024186,21767853:171377 +k1,355:27576406,21767853:171376 +k1,355:28918256,21767853:171377 +k1,355:32583029,21767853:0 +) +(1,356:6630773,22609341:25952256,513147,134348 +k1,355:7848986,22609341:199128 +k1,355:9669476,22609341:199129 +k1,355:12054885,22609341:199128 +k1,355:12913306,22609341:199129 +k1,355:14131519,22609341:199128 +k1,355:14745491,22609341:199129 +k1,355:17786915,22609341:199128 +k1,355:19177489,22609341:199129 +k1,355:20706998,22609341:199128 +k1,355:22357749,22609341:199129 +k1,355:25252373,22609341:199128 +k1,355:26134387,22609341:199129 +k1,355:29493006,22609341:199128 +k1,355:32583029,22609341:0 +) +(1,356:6630773,23450829:25952256,505283,134348 +k1,355:8977336,23450829:246134 +k1,355:10041360,23450829:246135 +k1,355:13705197,23450829:246134 +k1,355:15980326,23450829:246134 +k1,355:17396934,23450829:246135 +k1,355:18634628,23450829:246134 +k1,355:21719783,23450829:246135 +k1,355:22617345,23450829:246134 +k1,355:23955964,23450829:246134 +k1,355:25405340,23450829:246135 +k1,355:27233513,23450829:246134 +k1,355:28165809,23450829:246134 +k1,355:28767804,23450829:246135 +k1,355:30824698,23450829:246134 k1,355:32583029,23450829:0 ) -(1,355:6630773,24292317:25952256,513147,134348 -k1,353:7926896,24292317:156452 -k1,353:11394883,24292317:156453 -k1,353:12894168,24292317:156452 -k1,353:13821323,24292317:156452 -k1,353:17187073,24292317:156452 -k1,353:18752550,24292317:156453 -k1,354:22115023,24292317:156452 -k1,354:23219126,24292317:156452 -k1,354:24394663,24292317:156452 -k1,354:28683161,24292317:156453 -k1,354:29498905,24292317:156452 -k1,354:32583029,24292317:0 -) -(1,355:6630773,25133805:25952256,505283,134348 -k1,354:7071805,25133805:228040 -k1,354:8392360,25133805:228070 -k1,354:11044606,25133805:228069 -k1,354:14914511,25133805:228069 -k1,354:16184603,25133805:228070 -k1,354:18670387,25133805:228069 -k1,354:20101698,25133805:228070 -k1,354:21911806,25133805:228069 -k1,354:22352838,25133805:228040 -k1,354:24056123,25133805:228070 -k1,354:25797418,25133805:228069 -k1,354:27492183,25133805:228069 -k1,354:30144430,25133805:228070 -k1,354:31563944,25133805:228069 -k1,354:32583029,25133805:0 -) -(1,355:6630773,25975293:25952256,513147,134348 -k1,354:8140402,25975293:283450 -k1,354:10332916,25975293:283450 -k1,354:12785608,25975293:283450 -k1,354:14954529,25975293:283450 -k1,354:16338983,25975293:283449 -k1,354:19148846,25975293:283450 -k1,354:20379947,25975293:283450 -k1,354:21078156,25975293:283366 -k1,354:24042028,25975293:283449 -k1,354:25719429,25975293:283450 -k1,354:28825515,25975293:283450 -k1,354:31635378,25975293:283450 -k1,354:32583029,25975293:0 -) -(1,355:6630773,26816781:25952256,505283,173670 -[1,354:6759879,26816781:341312,473825,0 -(1,354:6759879,26678762:341312,335806,0 -) -] -(1,354:7328145,26990451:370934,473825,0 -) -k1,354:8473763,26816781:252362 -k1,354:10509361,26816781:252363 -k1,354:13348429,26816781:252362 -k1,354:14410161,26816781:252362 -k1,354:15018384,26816781:252363 -k1,354:16841644,26816781:252362 -k1,354:19362207,26816781:252362 -k1,354:20297455,26816781:252363 -k1,354:24730359,26816781:252362 -k1,354:26376672,26816781:252362 -k1,354:28331005,26816781:252363 -k1,354:29972730,26816781:252362 -k1,354:32583029,26816781:0 -) -(1,355:6630773,27658269:25952256,513147,134348 -k1,354:7540019,27658269:226361 -k1,354:11612033,27658269:226361 -k1,354:12995105,27658269:226362 -k1,354:14197297,27658269:226361 -k1,354:17662447,27658269:226361 -k1,354:18548100,27658269:226361 -k1,354:19130321,27658269:226361 -k1,354:21602602,27658269:226362 -k1,354:23683632,27658269:226361 -k1,354:24719363,27658269:226361 -k1,354:26543492,27658269:226361 -k1,354:27996032,27658269:226361 -k1,354:29535736,27658269:226362 -k1,354:31255663,27658269:226361 -k1,354:32168186,27658269:226361 -k1,355:32583029,27658269:0 -) -(1,355:6630773,28499757:25952256,513147,134348 -k1,354:9148900,28499757:183079 -k1,354:9863476,28499757:183079 -k1,354:11331062,28499757:183080 -k1,354:12533226,28499757:183079 -k1,354:14369778,28499757:183079 -k1,354:15866199,28499757:183079 -k1,354:17153560,28499757:183079 -k1,354:18084406,28499757:183080 -k1,354:20261746,28499757:183079 -k1,354:21838776,28499757:183079 -k1,354:24784198,28499757:183079 -k1,354:28039606,28499757:183080 -k1,354:29414130,28499757:183079 -k1,354:31483335,28499757:183079 -k1,355:32583029,28499757:0 -) -(1,355:6630773,29341245:25952256,513147,134348 -k1,354:8726669,29341245:176346 -k1,354:11956994,29341245:176347 -k1,354:14709560,29341245:176346 -k1,354:15572068,29341245:176346 -k1,354:18046763,29341245:176347 -k1,354:18905994,29341245:176346 -k1,354:21317773,29341245:176346 -k1,354:22255648,29341245:176347 -k1,354:23451079,29341245:176346 -k1,354:26389768,29341245:176346 -k1,354:29092528,29341245:176347 -k1,354:31966991,29341245:176346 -k1,354:32583029,29341245:0 -) -(1,355:6630773,30182733:25952256,473825,134348 -g1,354:7185862,30182733 -k1,355:32583029,30182733:22955296 -g1,355:32583029,30182733 -) -(1,357:6630773,31024221:25952256,505283,134348 -h1,356:6630773,31024221:983040,0,0 -k1,356:9567586,31024221:170538 -k1,356:9951088,31024221:170510 -k1,356:12378031,31024221:170538 -k1,356:14283962,31024221:170538 -k1,356:15043013,31024221:170538 -k1,356:17186185,31024221:170538 -k1,356:18529162,31024221:170538 -k1,356:21255604,31024221:170538 -k1,356:22724410,31024221:170538 -k1,356:23107912,31024221:170510 -k1,356:24485623,31024221:170538 -k1,356:26391554,31024221:170538 -k1,356:28264062,31024221:170538 -k1,356:30847636,31024221:170538 -k1,356:32583029,31024221:0 -) -(1,357:6630773,31865709:25952256,505283,134348 -k1,356:7909078,31865709:259220 -k1,356:11222276,31865709:259220 -k1,356:13727415,31865709:259220 -k1,356:15489375,31865709:259219 -k1,356:16104455,31865709:259220 -k1,356:17220231,31865709:259220 -k1,356:19303318,31865709:259220 -k1,356:20753983,31865709:259220 -k1,356:24247405,31865709:259220 -k1,356:25900575,31865709:259219 -k1,356:29481815,31865709:259220 -k1,356:30427197,31865709:259220 -k1,356:31495787,31865709:259220 -k1,356:32583029,31865709:0 -) -(1,357:6630773,32707197:25952256,513147,134348 -k1,356:8027181,32707197:189235 -k1,356:11174056,32707197:189235 -k1,356:12559978,32707197:189235 -k1,356:14124815,32707197:189236 -k1,356:17767797,32707197:189235 -k1,356:19541037,32707197:189235 -k1,356:23236448,32707197:189235 -k1,356:24819634,32707197:189235 -k1,356:25779572,32707197:189235 -k1,356:27877872,32707197:189236 -k1,356:29274280,32707197:189235 -k1,356:30411166,32707197:189235 -k1,356:32583029,32707197:0 -) -(1,357:6630773,33548685:25952256,505283,126483 -k1,356:8649401,33548685:133157 -k1,356:9989731,33548685:133157 -k1,356:12179409,33548685:133158 -k1,356:15096535,33548685:133157 -k1,356:16605293,33548685:133157 -k1,356:18624576,33548685:133157 -k1,356:21568572,33548685:133157 -k1,356:24451620,33548685:133157 -k1,356:26385052,33548685:133158 -k1,356:27499283,33548685:133157 -k1,356:28996244,33548685:133157 -k1,356:32583029,33548685:0 -) -(1,357:6630773,34390173:25952256,513147,134348 -k1,356:7050852,34390173:207087 -k1,356:10528848,34390173:207094 -k1,356:11906416,34390173:207095 -k1,356:12764939,34390173:207095 -k1,356:14064518,34390173:207094 -k1,356:15042316,34390173:207095 -k1,356:16336645,34390173:207087 -k1,356:17491391,34390173:207095 -k1,356:18286998,34390173:207094 -k1,356:20918270,34390173:207095 -k1,356:21656862,34390173:207095 -k1,356:25018204,34390173:207094 -k1,356:26579273,34390173:207095 -k1,356:29460237,34390173:207095 -k1,356:30739500,34390173:207094 -k1,356:31412556,34390173:207095 -k1,356:32583029,34390173:0 -) -(1,357:6630773,35231661:25952256,513147,134348 -k1,356:7651868,35231661:205827 -k1,356:8923965,35231661:205826 -k1,356:10276017,35231661:205827 -k1,356:11113610,35231661:205826 -k1,356:12849703,35231661:205827 -k1,356:13411390,35231661:205827 -k1,356:16379559,35231661:205826 -k1,356:17519929,35231661:205827 -k1,356:18385047,35231661:205826 -k1,356:21370256,35231661:205827 -k1,356:23069649,35231661:205827 -k1,356:23961637,35231661:205826 -k1,356:27673640,35231661:205827 -k1,356:29273417,35231661:205826 -k1,356:31900144,35231661:205827 -k1,356:32583029,35231661:0 -) -(1,357:6630773,36073149:25952256,513147,126483 -k1,356:7770182,36073149:147849 -k1,356:10252423,36073149:147849 -k1,356:12892606,36073149:147849 -k1,356:14434407,36073149:147850 -k1,356:15601341,36073149:147849 -k1,356:17930228,36073149:147849 -k1,356:19338990,36073149:147849 -k1,356:20657312,36073149:147849 -k1,356:22142095,36073149:147849 -k1,356:23838560,36073149:147849 -k1,356:24637837,36073149:147849 -k1,356:25692050,36073149:147850 -k1,356:26858984,36073149:147849 -k1,356:28390298,36073149:147849 -k1,356:29799060,36073149:147849 -k1,356:32583029,36073149:0 -) -(1,357:6630773,36914637:25952256,513147,134349 -g1,356:8397623,36914637 -$1,356:8397623,36914637 -g1,356:9978351,36914637 -g1,356:10373533,36914637 -g1,356:10768715,36914637 -g1,356:11163897,36914637 -g1,356:12744625,36914637 -g1,356:13139807,36914637 -$1,356:14325353,36914637 -k1,357:32583029,36914637:18084006 -g1,357:32583029,36914637 -) -(1,359:6630773,37756125:25952256,513147,126483 -h1,358:6630773,37756125:983040,0,0 -k1,358:9110117,37756125:299617 -k1,358:12401453,37756125:299617 -k1,358:13317108,37756125:299617 -k1,358:14819966,37756125:299617 -k1,358:16701622,37756125:299617 -k1,358:18716972,37756125:299617 -k1,358:20109074,37756125:299617 -k1,358:21067984,37756125:299618 -k1,358:23599102,37756125:299617 -k1,358:25712756,37756125:299617 -k1,358:28796342,37756125:299617 -k1,358:29510701,37756125:299516 -k1,358:32583029,37756125:0 -) -(1,359:6630773,38597613:25952256,513147,134348 -k1,358:10056935,38597613:342038 -k1,358:12284445,38597613:342039 -k1,358:13730765,38597613:342038 -k1,358:14820570,38597613:342039 -k1,358:17900047,38597613:342038 -k1,358:19809707,38597613:342039 -k1,358:22205643,38597613:342038 -k1,358:23819080,38597613:342039 -k1,358:24820410,38597613:342038 -k1,358:26975175,38597613:342039 -k1,358:31297213,38597613:342038 -k1,358:32583029,38597613:0 -) -(1,359:6630773,39439101:25952256,513147,134348 -k1,358:9705613,39439101:290871 -k1,358:12555009,39439101:290870 -k1,358:14899778,39439101:290871 -k1,358:17892697,39439101:290870 -k1,358:19572931,39439101:290871 -k1,358:21128646,39439101:290870 -k1,358:22610962,39439101:290871 -k1,358:24215174,39439101:290870 -k1,358:26903352,39439101:290871 -k1,358:27845650,39439101:290870 -k1,358:29339762,39439101:290871 -k1,358:31386342,39439101:290870 -k1,358:32583029,39439101:0 -) -(1,359:6630773,40280589:25952256,513147,134348 -k1,358:10681552,40280589:244449 -k1,358:13506154,40280589:244450 -k1,358:16452652,40280589:244449 -k1,358:20289786,40280589:244450 -k1,358:24372023,40280589:244449 -k1,358:25807917,40280589:244449 -k1,358:27863782,40280589:244450 -k1,358:29432058,40280589:244449 -k1,358:30335800,40280589:244450 -k1,358:31599334,40280589:244449 -k1,359:32583029,40280589:0 -) -(1,359:6630773,41122077:25952256,513147,134348 -k1,358:8127756,41122077:199370 -k1,358:8986418,41122077:199370 -k1,358:9951903,41122077:199369 -k1,358:11853243,41122077:199370 -k1,358:14963067,41122077:199370 -k1,358:16675663,41122077:199370 -k1,358:17491071,41122077:199370 -k1,358:18709525,41122077:199369 -k1,358:20664605,41122077:199370 -k1,358:24713560,41122077:199370 -k1,358:25722300,41122077:199370 -k1,358:28881275,41122077:199369 -k1,358:29669158,41122077:199370 -k1,358:30950527,41122077:199370 -k1,359:32583029,41122077:0 -) -(1,359:6630773,41963565:25952256,513147,126483 -k1,358:8055248,41963565:246138 -k1,358:11442526,41963565:246137 -k1,358:12880109,41963565:246138 -k1,358:14828217,41963565:246138 -k1,358:16655739,41963565:246138 -k1,358:17893436,41963565:246137 -k1,358:20923543,41963565:246138 -k1,358:23321228,41963565:246138 -k1,358:24195200,41963565:246137 -k1,358:26193115,41963565:246138 -k1,358:28136635,41963565:246138 -k1,358:29401858,41963565:246138 -k1,358:30295444,41963565:246090 -k1,358:31970267,41963565:246138 -k1,358:32583029,41963565:0 -) -(1,359:6630773,42805053:25952256,505283,126483 -k1,358:8335626,42805053:246022 -k1,358:11566158,42805053:246022 -k1,358:12495065,42805053:246022 -k1,358:14813991,42805053:246022 -k1,358:16192475,42805053:246022 -k1,358:18161439,42805053:246022 -k1,358:19737842,42805053:246022 -k1,358:20635293,42805053:246023 -k1,358:22850672,42805053:246022 -k1,358:24909420,42805053:246022 -k1,358:25838327,42805053:246022 -k1,358:27464537,42805053:246022 -k1,358:29047493,42805053:246022 -k1,358:30760211,42805053:246022 -k1,358:31753999,42805053:246022 -k1,359:32583029,42805053:0 -) -(1,359:6630773,43646541:25952256,513147,134348 -k1,358:8968795,43646541:195650 -k1,358:9780483,43646541:195650 -k1,358:10995218,43646541:195650 -k1,358:13456448,43646541:195650 -k1,358:16728358,43646541:195650 -k1,358:18867806,43646541:195650 -k1,358:19691292,43646541:195651 -k1,358:22726617,43646541:195650 -k1,358:23278127,43646541:195650 -k1,358:24742554,43646541:195650 -k1,358:26073943,43646541:195650 -k1,358:29786255,43646541:195650 -k1,358:31000990,43646541:195650 -k1,358:32583029,43646541:0 -) -(1,359:6630773,44488029:25952256,513147,126484 -g1,358:7962464,44488029 -g1,358:8909459,44488029 -g1,358:11892657,44488029 -g1,358:12878318,44488029 -$1,358:12878318,44488029 -g1,358:14459046,44488029 -g1,358:14854228,44488029 -g1,358:15249410,44488029 -g1,358:15644592,44488029 -g1,358:16830138,44488029 -g1,358:17225320,44488029 -(1,358:19991594,44586343:32768,0,0 -) -g1,358:21605090,44488029 -g1,358:22000272,44488029 -$1,358:23581000,44488029 -k1,359:32583029,44488029:8828359 -g1,359:32583029,44488029 -) -] -(1,362:32583029,45706769:0,0,0 -g1,362:32583029,45706769 -) -) -] -(1,362:6630773,47279633:25952256,0,0 -h1,362:6630773,47279633:25952256,0,0 -) -] -h1,362:4262630,4025873:0,0,0 -] -!23258 +(1,356:6630773,24292317:25952256,513147,126483 +g1,355:7777653,24292317 +g1,355:9435713,24292317 +g1,355:13279399,24292317 +g1,355:14137920,24292317 +g1,355:15356234,24292317 +g1,355:17385228,24292317 +g1,355:18251613,24292317 +k1,356:32583029,24292317:13742903 +g1,356:32583029,24292317 +) +(1,358:6630773,25133805:25952256,505283,134348 +h1,357:6630773,25133805:983040,0,0 +k1,357:8187288,25133805:158632 +k1,357:8877457,25133805:158672 +k1,357:9802245,25133805:158672 +k1,357:11245423,25133805:158672 +k1,357:11935591,25133805:158671 +k1,357:14392611,25133805:158672 +k1,357:15202711,25133805:158672 +k1,357:16957840,25133805:158672 +k1,357:19675038,25133805:158672 +k1,357:20599826,25133805:158672 +k1,357:21777583,25133805:158672 +k1,357:24927974,25133805:158672 +k1,357:25702684,25133805:158672 +k1,357:27064597,25133805:158672 +k1,357:28978979,25133805:158672 +k1,357:30209820,25133805:158672 +k1,357:30826589,25133805:158672 +k1,357:31516758,25133805:158672 +k1,357:32583029,25133805:0 +) +(1,358:6630773,25975293:25952256,513147,134348 +k1,357:7203927,25975293:217294 +k1,357:10903804,25975293:217294 +k1,357:12359073,25975293:217294 +k1,357:13235659,25975293:217294 +k1,357:15258470,25975293:217294 +k1,357:16852675,25975293:217294 +k1,357:17282943,25975293:217276 +k1,357:21286907,25975293:217294 +k1,357:22788707,25975293:217294 +k1,357:24176474,25975293:217294 +k1,357:25486253,25975293:217294 +k1,357:26474250,25975293:217294 +k1,357:28600608,25975293:217294 +k1,357:29500787,25975293:217294 +k1,357:30488784,25975293:217294 +k1,357:31966991,25975293:217294 +k1,357:32583029,25975293:0 +) +(1,358:6630773,26816781:25952256,513147,126483 +k1,357:9923432,26816781:171835 +k1,357:12519444,26816781:171835 +k1,357:12519444,26816781:0 +k1,357:12864950,26816781:171836 +k1,357:15460962,26816781:171835 +k1,357:16164294,26816781:171835 +k1,357:17716973,26816781:171835 +k1,357:20565954,26816781:171835 +k1,357:23156069,26816781:171836 +k1,357:27090326,26816781:171835 +k1,357:28683637,26816781:171835 +k1,357:32583029,26816781:0 +) +(1,358:6630773,27658269:25952256,505283,126483 +k1,357:8071528,27658269:249310 +k1,357:11104807,27658269:249310 +k1,357:12820812,27658269:249309 +k1,357:13686160,27658269:249310 +k1,357:16498583,27658269:249310 +k1,357:17939338,27658269:249310 +k1,357:20147518,27658269:249309 +k1,357:23234537,27658269:249310 +k1,357:24680534,27658269:249310 +k1,357:27492957,27658269:249310 +k1,357:30076003,27658269:249309 +k1,357:31773659,27658269:249310 +k1,358:32583029,27658269:0 +) +(1,358:6630773,28499757:25952256,505283,102891 +g1,357:10943696,28499757 +g1,357:13069683,28499757 +g1,357:14460357,28499757 +g1,357:15529905,28499757 +g1,357:16139389,28499757 +g1,357:17530063,28499757 +g1,357:19431262,28499757 +g1,357:21082113,28499757 +k1,358:32583029,28499757:7215517 +g1,358:32583029,28499757 +) +(1,361:6630773,29341245:25952256,513147,134348 +h1,359:6630773,29341245:983040,0,0 +k1,359:8597925,29341245:210132 +k1,359:10917006,29341245:210132 +k1,359:12825176,29341245:210132 +k1,359:15893333,29341245:210132 +k1,359:17988936,29341245:210132 +k1,359:20108132,29341245:210132 +k1,359:20969692,29341245:210132 +k1,359:22445980,29341245:210132 +k1,359:25413212,29341245:210132 +k1,359:29353653,29341245:210132 +k1,359:30755230,29341245:210132 +k1,361:32583029,29341245:0 +) +(1,361:6630773,30182733:25952256,513147,134348 +k1,359:7926896,30182733:156452 +k1,359:11394883,30182733:156453 +k1,359:12894168,30182733:156452 +k1,359:13821323,30182733:156452 +k1,359:17187073,30182733:156452 +k1,359:18752550,30182733:156453 +k1,360:22115023,30182733:156452 +k1,360:23219126,30182733:156452 +k1,360:24394663,30182733:156452 +k1,360:28683161,30182733:156453 +k1,360:29498905,30182733:156452 +k1,360:32583029,30182733:0 +) +(1,361:6630773,31024221:25952256,505283,134348 +k1,360:7071805,31024221:228040 +k1,360:8392360,31024221:228070 +k1,360:11044606,31024221:228069 +k1,360:14914511,31024221:228069 +k1,360:16184603,31024221:228070 +k1,360:18670387,31024221:228069 +k1,360:20101698,31024221:228070 +k1,360:21911806,31024221:228069 +k1,360:22352838,31024221:228040 +k1,360:24056123,31024221:228070 +k1,360:25797418,31024221:228069 +k1,360:27492183,31024221:228069 +k1,360:30144430,31024221:228070 +k1,360:31563944,31024221:228069 +k1,360:32583029,31024221:0 +) +(1,361:6630773,31865709:25952256,513147,134348 +k1,360:8140402,31865709:283450 +k1,360:10332916,31865709:283450 +k1,360:12785608,31865709:283450 +k1,360:14954529,31865709:283450 +k1,360:16338983,31865709:283449 +k1,360:19148846,31865709:283450 +k1,360:20379947,31865709:283450 +k1,360:21078156,31865709:283366 +k1,360:24042028,31865709:283449 +k1,360:25719429,31865709:283450 +k1,360:28825515,31865709:283450 +k1,360:31635378,31865709:283450 +k1,360:32583029,31865709:0 +) +(1,361:6630773,32707197:25952256,505283,173670 +[1,360:6759879,32707197:341312,473825,0 +(1,360:6759879,32569178:341312,335806,0 +) +] +(1,360:7328145,32880867:370934,473825,0 +) +k1,360:8473763,32707197:252362 +k1,360:10509361,32707197:252363 +k1,360:13348429,32707197:252362 +k1,360:14410161,32707197:252362 +k1,360:15018384,32707197:252363 +k1,360:16841644,32707197:252362 +k1,360:19362207,32707197:252362 +k1,360:20297455,32707197:252363 +k1,360:24730359,32707197:252362 +k1,360:26376672,32707197:252362 +k1,360:28331005,32707197:252363 +k1,360:29972730,32707197:252362 +k1,360:32583029,32707197:0 +) +(1,361:6630773,33548685:25952256,513147,134348 +k1,360:7540019,33548685:226361 +k1,360:11612033,33548685:226361 +k1,360:12995105,33548685:226362 +k1,360:14197297,33548685:226361 +k1,360:17662447,33548685:226361 +k1,360:18548100,33548685:226361 +k1,360:19130321,33548685:226361 +k1,360:21602602,33548685:226362 +k1,360:23683632,33548685:226361 +k1,360:24719363,33548685:226361 +k1,360:26543492,33548685:226361 +k1,360:27996032,33548685:226361 +k1,360:29535736,33548685:226362 +k1,360:31255663,33548685:226361 +k1,360:32168186,33548685:226361 +k1,361:32583029,33548685:0 +) +(1,361:6630773,34390173:25952256,513147,134348 +k1,360:9148900,34390173:183079 +k1,360:9863476,34390173:183079 +k1,360:11331062,34390173:183080 +k1,360:12533226,34390173:183079 +k1,360:14369778,34390173:183079 +k1,360:15866199,34390173:183079 +k1,360:17153560,34390173:183079 +k1,360:18084406,34390173:183080 +k1,360:20261746,34390173:183079 +k1,360:21838776,34390173:183079 +k1,360:24784198,34390173:183079 +k1,360:28039606,34390173:183080 +k1,360:29414130,34390173:183079 +k1,360:31483335,34390173:183079 +k1,361:32583029,34390173:0 +) +(1,361:6630773,35231661:25952256,513147,134348 +k1,360:8726669,35231661:176346 +k1,360:11956994,35231661:176347 +k1,360:14709560,35231661:176346 +k1,360:15572068,35231661:176346 +k1,360:18046763,35231661:176347 +k1,360:18905994,35231661:176346 +k1,360:21317773,35231661:176346 +k1,360:22255648,35231661:176347 +k1,360:23451079,35231661:176346 +k1,360:26389768,35231661:176346 +k1,360:29092528,35231661:176347 +k1,360:31966991,35231661:176346 +k1,360:32583029,35231661:0 +) +(1,361:6630773,36073149:25952256,473825,134348 +g1,360:7185862,36073149 +k1,361:32583029,36073149:22955296 +g1,361:32583029,36073149 +) +(1,363:6630773,36914637:25952256,505283,134348 +h1,362:6630773,36914637:983040,0,0 +k1,362:9567586,36914637:170538 +k1,362:9951088,36914637:170510 +k1,362:12378031,36914637:170538 +k1,362:14283962,36914637:170538 +k1,362:15043013,36914637:170538 +k1,362:17186185,36914637:170538 +k1,362:18529162,36914637:170538 +k1,362:21255604,36914637:170538 +k1,362:22724410,36914637:170538 +k1,362:23107912,36914637:170510 +k1,362:24485623,36914637:170538 +k1,362:26391554,36914637:170538 +k1,362:28264062,36914637:170538 +k1,362:30847636,36914637:170538 +k1,362:32583029,36914637:0 +) +(1,363:6630773,37756125:25952256,505283,134348 +k1,362:7909078,37756125:259220 +k1,362:11222276,37756125:259220 +k1,362:13727415,37756125:259220 +k1,362:15489375,37756125:259219 +k1,362:16104455,37756125:259220 +k1,362:17220231,37756125:259220 +k1,362:19303318,37756125:259220 +k1,362:20753983,37756125:259220 +k1,362:24247405,37756125:259220 +k1,362:25900575,37756125:259219 +k1,362:29481815,37756125:259220 +k1,362:30427197,37756125:259220 +k1,362:31495787,37756125:259220 +k1,362:32583029,37756125:0 +) +(1,363:6630773,38597613:25952256,513147,134348 +k1,362:8027181,38597613:189235 +k1,362:11174056,38597613:189235 +k1,362:12559978,38597613:189235 +k1,362:14124815,38597613:189236 +k1,362:17767797,38597613:189235 +k1,362:19541037,38597613:189235 +k1,362:23236448,38597613:189235 +k1,362:24819634,38597613:189235 +k1,362:25779572,38597613:189235 +k1,362:27877872,38597613:189236 +k1,362:29274280,38597613:189235 +k1,362:30411166,38597613:189235 +k1,362:32583029,38597613:0 +) +(1,363:6630773,39439101:25952256,505283,126483 +k1,362:8649401,39439101:133157 +k1,362:9989731,39439101:133157 +k1,362:12179409,39439101:133158 +k1,362:15096535,39439101:133157 +k1,362:16605293,39439101:133157 +k1,362:18624576,39439101:133157 +k1,362:21568572,39439101:133157 +k1,362:24451620,39439101:133157 +k1,362:26385052,39439101:133158 +k1,362:27499283,39439101:133157 +k1,362:28996244,39439101:133157 +k1,362:32583029,39439101:0 +) +(1,363:6630773,40280589:25952256,513147,134348 +k1,362:7050852,40280589:207087 +k1,362:10528848,40280589:207094 +k1,362:11906416,40280589:207095 +k1,362:12764939,40280589:207095 +k1,362:14064518,40280589:207094 +k1,362:15042316,40280589:207095 +k1,362:16336645,40280589:207087 +k1,362:17491391,40280589:207095 +k1,362:18286998,40280589:207094 +k1,362:20918270,40280589:207095 +k1,362:21656862,40280589:207095 +k1,362:25018204,40280589:207094 +k1,362:26579273,40280589:207095 +k1,362:29460237,40280589:207095 +k1,362:30739500,40280589:207094 +k1,362:31412556,40280589:207095 +k1,362:32583029,40280589:0 +) +(1,363:6630773,41122077:25952256,513147,134348 +k1,362:7651868,41122077:205827 +k1,362:8923965,41122077:205826 +k1,362:10276017,41122077:205827 +k1,362:11113610,41122077:205826 +k1,362:12849703,41122077:205827 +k1,362:13411390,41122077:205827 +k1,362:16379559,41122077:205826 +k1,362:17519929,41122077:205827 +k1,362:18385047,41122077:205826 +k1,362:21370256,41122077:205827 +k1,362:23069649,41122077:205827 +k1,362:23961637,41122077:205826 +k1,362:27673640,41122077:205827 +k1,362:29273417,41122077:205826 +k1,362:31900144,41122077:205827 +k1,362:32583029,41122077:0 +) +(1,363:6630773,41963565:25952256,513147,126483 +k1,362:7770182,41963565:147849 +k1,362:10252423,41963565:147849 +k1,362:12892606,41963565:147849 +k1,362:14434407,41963565:147850 +k1,362:15601341,41963565:147849 +k1,362:17930228,41963565:147849 +k1,362:19338990,41963565:147849 +k1,362:20657312,41963565:147849 +k1,362:22142095,41963565:147849 +k1,362:23838560,41963565:147849 +k1,362:24637837,41963565:147849 +k1,362:25692050,41963565:147850 +k1,362:26858984,41963565:147849 +k1,362:28390298,41963565:147849 +k1,362:29799060,41963565:147849 +k1,362:32583029,41963565:0 +) +(1,363:6630773,42805053:25952256,513147,134349 +g1,362:8397623,42805053 +$1,362:8397623,42805053 +g1,362:9978351,42805053 +g1,362:10373533,42805053 +g1,362:10768715,42805053 +g1,362:11163897,42805053 +g1,362:12744625,42805053 +g1,362:13139807,42805053 +$1,362:14325353,42805053 +k1,363:32583029,42805053:18084006 +g1,363:32583029,42805053 +) +(1,365:6630773,43646541:25952256,513147,126483 +h1,364:6630773,43646541:983040,0,0 +k1,364:8955087,43646541:144587 +k1,364:12091392,43646541:144586 +k1,364:12852017,43646541:144587 +k1,364:14199844,43646541:144586 +k1,364:15926470,43646541:144587 +k1,364:17786789,43646541:144586 +k1,364:19023861,43646541:144587 +k1,364:19827739,43646541:144586 +k1,364:22203827,43646541:144587 +k1,364:24162451,43646541:144587 +k1,364:27091006,43646541:144586 +k1,364:27650381,43646541:144532 +k1,364:30867296,43646541:144587 +k1,365:32583029,43646541:0 +) +(1,365:6630773,44488029:25952256,513147,134348 +k1,364:8418923,44488029:206766 +k1,364:10511160,44488029:206766 +k1,364:11822209,44488029:206767 +k1,364:12776741,44488029:206766 +k1,364:15720946,44488029:206766 +k1,364:17495333,44488029:206766 +k1,364:19755997,44488029:206766 +k1,364:21234161,44488029:206766 +k1,364:22100220,44488029:206767 +k1,364:24119712,44488029:206766 +k1,364:28306478,44488029:206766 +k1,364:29799060,44488029:206766 +k1,364:32583029,44488029:0 +) +(1,365:6630773,45329517:25952256,513147,134348 +k1,364:9394973,45329517:205674 +k1,364:11654544,45329517:205673 +k1,364:14562267,45329517:205674 +k1,364:16157304,45329517:205674 +k1,364:17627823,45329517:205674 +k1,364:19024942,45329517:205674 +k1,364:20543957,45329517:205673 +k1,364:23146938,45329517:205674 +k1,364:24004040,45329517:205674 +k1,364:25412954,45329517:205673 +k1,364:27374338,45329517:205674 +k1,364:28776699,45329517:205674 +k1,364:32583029,45329517:0 +) +] +(1,365:32583029,45706769:0,0,0 +g1,365:32583029,45706769 +) +) +] +(1,365:6630773,47279633:25952256,0,0 +h1,365:6630773,47279633:25952256,0,0 +) +] +h1,365:4262630,4025873:0,0,0 +] +!23426 }25 !11 {26 -[1,371:4262630,47279633:28320399,43253760,0 -(1,371:4262630,4025873:0,0,0 -[1,371:-473657,4025873:25952256,0,0 -(1,371:-473657,-710414:25952256,0,0 -h1,371:-473657,-710414:0,0,0 -(1,371:-473657,-710414:0,0,0 -(1,371:-473657,-710414:0,0,0 -g1,371:-473657,-710414 -(1,371:-473657,-710414:65781,0,65781 -g1,371:-407876,-710414 -[1,371:-407876,-644633:0,0,0 -] -) -k1,371:-473657,-710414:-65781 -) -) -k1,371:25478599,-710414:25952256 -g1,371:25478599,-710414 -) +[1,377:4262630,47279633:28320399,43253760,0 +(1,377:4262630,4025873:0,0,0 +[1,377:-473657,4025873:25952256,0,0 +(1,377:-473657,-710414:25952256,0,0 +h1,377:-473657,-710414:0,0,0 +(1,377:-473657,-710414:0,0,0 +(1,377:-473657,-710414:0,0,0 +g1,377:-473657,-710414 +(1,377:-473657,-710414:65781,0,65781 +g1,377:-407876,-710414 +[1,377:-407876,-644633:0,0,0 ] ) -[1,371:6630773,47279633:25952256,43253760,0 -[1,371:6630773,4812305:25952256,786432,0 -(1,371:6630773,4812305:25952256,505283,134348 -(1,371:6630773,4812305:25952256,505283,134348 -g1,371:3078558,4812305 -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,2439708:0,1703936,0 -k1,371:1358238,2439708:-1720320 -(1,99:1358238,2439708:1720320,1703936,0 -(1,99:1358238,2439708:1179648,16384,0 -r1,371:2537886,2439708:1179648,16384,0 +k1,377:-473657,-710414:-65781 ) -g1,99:3062174,2439708 -(1,99:3062174,2439708:16384,1703936,0 -[1,99:3062174,2439708:25952256,1703936,0 -(1,99:3062174,1915420:25952256,1179648,0 -(1,99:3062174,1915420:16384,1179648,0 -r1,371:3078558,1915420:16384,1179648,0 ) -k1,99:29014430,1915420:25935872 -g1,99:29014430,1915420 +k1,377:25478599,-710414:25952256 +g1,377:25478599,-710414 ) ] ) +[1,377:6630773,47279633:25952256,43253760,0 +[1,377:6630773,4812305:25952256,786432,0 +(1,377:6630773,4812305:25952256,505283,134348 +(1,377:6630773,4812305:25952256,505283,134348 +g1,377:3078558,4812305 +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,2439708:0,1703936,0 +k1,377:1358238,2439708:-1720320 +(1,105:1358238,2439708:1720320,1703936,0 +(1,105:1358238,2439708:1179648,16384,0 +r1,377:2537886,2439708:1179648,16384,0 ) +g1,105:3062174,2439708 +(1,105:3062174,2439708:16384,1703936,0 +[1,105:3062174,2439708:25952256,1703936,0 +(1,105:3062174,1915420:25952256,1179648,0 +(1,105:3062174,1915420:16384,1179648,0 +r1,377:3078558,1915420:16384,1179648,0 ) -] -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,2439708:0,1703936,0 -g1,371:29030814,2439708 -g1,371:36135244,2439708 -(1,99:36135244,2439708:1720320,1703936,0 -(1,99:36135244,2439708:16384,1703936,0 -[1,99:36135244,2439708:25952256,1703936,0 -(1,99:36135244,1915420:25952256,1179648,0 -(1,99:36135244,1915420:16384,1179648,0 -r1,371:36151628,1915420:16384,1179648,0 -) -k1,99:62087500,1915420:25935872 -g1,99:62087500,1915420 +k1,105:29014430,1915420:25935872 +g1,105:29014430,1915420 ) ] ) -g1,99:36675916,2439708 -(1,99:36675916,2439708:1179648,16384,0 -r1,371:37855564,2439708:1179648,16384,0 ) ) -k1,371:3078556,2439708:-34777008 -) ] -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,49800853:0,16384,2228224 -k1,371:1358238,49800853:-1720320 -(1,99:1358238,49800853:1720320,16384,2228224 -(1,99:1358238,49800853:1179648,16384,0 -r1,371:2537886,49800853:1179648,16384,0 -) -g1,99:3062174,49800853 -(1,99:3062174,52029077:16384,1703936,0 -[1,99:3062174,52029077:25952256,1703936,0 -(1,99:3062174,51504789:25952256,1179648,0 -(1,99:3062174,51504789:16384,1179648,0 -r1,371:3078558,51504789:16384,1179648,0 +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,2439708:0,1703936,0 +g1,377:29030814,2439708 +g1,377:36135244,2439708 +(1,105:36135244,2439708:1720320,1703936,0 +(1,105:36135244,2439708:16384,1703936,0 +[1,105:36135244,2439708:25952256,1703936,0 +(1,105:36135244,1915420:25952256,1179648,0 +(1,105:36135244,1915420:16384,1179648,0 +r1,377:36151628,1915420:16384,1179648,0 ) -k1,99:29014430,51504789:25935872 -g1,99:29014430,51504789 +k1,105:62087500,1915420:25935872 +g1,105:62087500,1915420 ) ] ) +g1,105:36675916,2439708 +(1,105:36675916,2439708:1179648,16384,0 +r1,377:37855564,2439708:1179648,16384,0 ) ) -] -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,49800853:0,16384,2228224 -g1,371:29030814,49800853 -g1,371:36135244,49800853 -(1,99:36135244,49800853:1720320,16384,2228224 -(1,99:36135244,52029077:16384,1703936,0 -[1,99:36135244,52029077:25952256,1703936,0 -(1,99:36135244,51504789:25952256,1179648,0 -(1,99:36135244,51504789:16384,1179648,0 -r1,371:36151628,51504789:16384,1179648,0 -) -k1,99:62087500,51504789:25935872 -g1,99:62087500,51504789 +k1,377:3078556,2439708:-34777008 ) ] +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,49800853:0,16384,2228224 +k1,377:1358238,49800853:-1720320 +(1,105:1358238,49800853:1720320,16384,2228224 +(1,105:1358238,49800853:1179648,16384,0 +r1,377:2537886,49800853:1179648,16384,0 ) -g1,99:36675916,49800853 -(1,99:36675916,49800853:1179648,16384,0 -r1,371:37855564,49800853:1179648,16384,0 +g1,105:3062174,49800853 +(1,105:3062174,52029077:16384,1703936,0 +[1,105:3062174,52029077:25952256,1703936,0 +(1,105:3062174,51504789:25952256,1179648,0 +(1,105:3062174,51504789:16384,1179648,0 +r1,377:3078558,51504789:16384,1179648,0 ) -) -k1,371:3078556,49800853:-34777008 -) -] -g1,371:6630773,4812305 -g1,371:6630773,4812305 -g1,371:9205682,4812305 -g1,371:11846782,4812305 -k1,371:31786110,4812305:19939328 -) -) -] -[1,371:6630773,45706769:25952256,40108032,0 -(1,371:6630773,45706769:25952256,40108032,0 -(1,371:6630773,45706769:0,0,0 -g1,371:6630773,45706769 -) -[1,371:6630773,45706769:25952256,40108032,0 -(1,360:6630773,6254097:25952256,32768,229376 -(1,360:6630773,6254097:0,32768,229376 -(1,360:6630773,6254097:5505024,32768,229376 -r1,360:12135797,6254097:5505024,262144,229376 -) -k1,360:6630773,6254097:-5505024 -) -(1,360:6630773,6254097:25952256,32768,0 -r1,360:32583029,6254097:25952256,32768,0 -) -) -(1,360:6630773,7858425:25952256,606339,161218 -(1,360:6630773,7858425:1974731,582746,14155 -g1,360:6630773,7858425 -g1,360:8605504,7858425 -) -g1,360:11813360,7858425 -k1,360:32583030,7858425:17773364 -g1,360:32583030,7858425 -) -(1,362:6630773,9093129:25952256,513147,134348 -k1,361:10672004,9093129:247352 -k1,361:11867006,9093129:247351 -k1,361:14389768,9093129:247352 -k1,361:17039669,9093129:247351 -k1,361:18278581,9093129:247352 -k1,361:21916765,9093129:247351 -k1,361:22973487,9093129:247352 -k1,361:24551219,9093129:247351 -k1,361:25969044,9093129:247352 -k1,361:27612967,9093129:247351 -k1,361:28511747,9093129:247352 -k1,361:29851583,9093129:247351 -k1,361:30687448,9093129:247352 -k1,361:31412556,9093129:247351 -k1,361:32583029,9093129:0 -) -(1,362:6630773,9934617:25952256,513147,134348 -k1,361:9510097,9934617:217907 -k1,361:12334371,9934617:217907 -k1,361:15075415,9934617:217908 -k1,361:17054930,9934617:217907 -k1,361:18624845,9934617:217907 -k1,361:20728878,9934617:217907 -k1,361:22699873,9934617:217907 -k1,361:23600665,9934617:217907 -k1,361:25443865,9934617:217908 -k1,361:26832245,9934617:217907 -k1,361:29006402,9934617:217907 -k1,361:31015408,9934617:217907 -k1,361:32583029,9934617:0 -) -(1,362:6630773,10776105:25952256,505283,134348 -k1,361:9500058,10776105:267506 -k1,361:10418992,10776105:267506 -k1,361:12301305,10776105:267506 -k1,361:14071552,10776105:267506 -k1,361:16674106,10776105:267506 -k1,361:19469990,10776105:267505 -k1,361:21252033,10776105:267506 -k1,361:22051036,10776105:267506 -k1,361:24375062,10776105:267506 -k1,361:26155794,10776105:267506 -k1,361:29751218,10776105:267506 -k1,361:32583029,10776105:0 -) -(1,362:6630773,11617593:25952256,513147,126483 -k1,361:7814453,11617593:198019 -k1,361:9503417,11617593:198020 -k1,361:11226458,11617593:198019 -k1,361:14382773,11617593:198020 -k1,361:15772237,11617593:198019 -k1,361:19377474,11617593:198020 -k1,361:21376422,11617593:198019 -k1,361:22678724,11617593:198020 -k1,361:23624509,11617593:198019 -k1,361:28550952,11617593:198020 -k1,361:29226728,11617593:198019 -k1,361:30595221,11617593:198020 -k1,361:31970267,11617593:198019 -k1,361:32583029,11617593:0 -) -(1,362:6630773,12459081:25952256,513147,134348 -k1,361:9065314,12459081:176826 -k1,361:9656960,12459081:176803 -k1,361:11329973,12459081:176826 -k1,361:12791304,12459081:176825 -k1,361:13499627,12459081:176826 -k1,361:15435439,12459081:176826 -k1,361:16263692,12459081:176825 -k1,361:17188284,12459081:176826 -k1,361:19687706,12459081:176826 -k1,361:21055976,12459081:176825 -k1,361:22708017,12459081:176826 -k1,361:24576982,12459081:176825 -k1,361:28065342,12459081:176826 -k1,361:29636119,12459081:176826 -k1,361:30440123,12459081:176825 -k1,361:31900144,12459081:176826 -k1,362:32583029,12459081:0 -) -(1,362:6630773,13300569:25952256,513147,134348 -k1,361:8259044,13300569:187790 -k1,361:10849385,13300569:187791 -k1,361:12224687,13300569:187790 -k1,361:14898259,13300569:187791 -k1,361:15702087,13300569:187790 -k1,361:20289965,13300569:187791 -k1,361:23960338,13300569:187790 -k1,361:25339574,13300569:187791 -k1,361:26843982,13300569:187790 -k1,361:28832702,13300569:187791 -k1,361:30152954,13300569:187790 -k1,361:32583029,13300569:0 -) -(1,362:6630773,14142057:25952256,513147,134348 -k1,361:7204570,14142057:217937 -k1,361:9590438,14142057:217937 -k1,361:16870534,14142057:217936 -k1,361:18515190,14142057:217937 -k1,361:19392419,14142057:217937 -k1,361:23962602,14142057:217937 -k1,361:24866701,14142057:217937 -k1,361:25855341,14142057:217937 -k1,361:28397184,14142057:217936 -k1,361:29806566,14142057:217937 -k1,361:31412556,14142057:217937 -k1,361:32583029,14142057:0 -) -(1,362:6630773,14983545:25952256,513147,126483 -g1,361:9028735,14983545 -g1,361:10247049,14983545 -g1,361:14634684,14983545 -g1,361:16636808,14983545 -g1,361:17495329,14983545 -g1,361:18713643,14983545 -k1,362:32583029,14983545:12026514 -g1,362:32583029,14983545 -) -] -(1,371:32583029,45706769:0,0,0 -g1,371:32583029,45706769 -) -) -] -(1,371:6630773,47279633:25952256,0,0 -h1,371:6630773,47279633:25952256,0,0 -) -] -h1,371:4262630,4025873:0,0,0 -] -!7399 +k1,105:29014430,51504789:25935872 +g1,105:29014430,51504789 +) +] +) +) +) +] +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,49800853:0,16384,2228224 +g1,377:29030814,49800853 +g1,377:36135244,49800853 +(1,105:36135244,49800853:1720320,16384,2228224 +(1,105:36135244,52029077:16384,1703936,0 +[1,105:36135244,52029077:25952256,1703936,0 +(1,105:36135244,51504789:25952256,1179648,0 +(1,105:36135244,51504789:16384,1179648,0 +r1,377:36151628,51504789:16384,1179648,0 +) +k1,105:62087500,51504789:25935872 +g1,105:62087500,51504789 +) +] +) +g1,105:36675916,49800853 +(1,105:36675916,49800853:1179648,16384,0 +r1,377:37855564,49800853:1179648,16384,0 +) +) +k1,377:3078556,49800853:-34777008 +) +] +g1,377:6630773,4812305 +g1,377:6630773,4812305 +g1,377:9205682,4812305 +g1,377:11846782,4812305 +k1,377:31786110,4812305:19939328 +) +) +] +[1,377:6630773,45706769:25952256,40108032,0 +(1,377:6630773,45706769:25952256,40108032,0 +(1,377:6630773,45706769:0,0,0 +g1,377:6630773,45706769 +) +[1,377:6630773,45706769:25952256,40108032,0 +(1,365:6630773,6254097:25952256,513147,134348 +k1,364:9380827,6254097:169902 +k1,364:12252778,6254097:169902 +k1,364:16015364,6254097:169902 +k1,364:20023054,6254097:169902 +k1,364:21384401,6254097:169902 +k1,364:23365718,6254097:169902 +k1,364:24859448,6254097:169903 +k1,364:25688642,6254097:169902 +k1,364:26877629,6254097:169902 +k1,364:29115847,6254097:169902 +k1,364:29945041,6254097:169902 +k1,364:30881059,6254097:169902 +k1,364:32583029,6254097:0 +) +(1,365:6630773,7095585:25952256,505283,134348 +k1,364:9823925,7095585:282698 +k1,364:11619850,7095585:282699 +k1,364:12518586,7095585:282698 +k1,364:13820369,7095585:282698 +k1,364:15858778,7095585:282699 +k1,364:19991061,7095585:282698 +k1,364:21083130,7095585:282699 +k1,364:24325434,7095585:282698 +k1,364:25196645,7095585:282698 +k1,364:26561343,7095585:282699 +k1,364:29441888,7095585:282698 +k1,364:32583029,7095585:0 +) +(1,365:6630773,7937073:25952256,513147,126483 +k1,364:7998162,7937073:175944 +k1,364:9876075,7937073:175943 +k1,364:11633403,7937073:175944 +k1,364:12800907,7937073:175944 +k1,364:15760820,7937073:175944 +k1,364:18088310,7937073:175943 +k1,364:18892089,7937073:175944 +k1,364:20819810,7937073:175944 +k1,364:22693136,7937073:175944 +k1,364:23888164,7937073:175943 +k1,364:24711581,7937073:175921 +k1,364:26316210,7937073:175944 +k1,364:27104915,7937073:175943 +k1,364:28739690,7937073:175944 +k1,364:31900144,7937073:175944 +k1,364:32583029,7937073:0 +) +(1,365:6630773,8778561:25952256,513147,126483 +k1,364:8902775,8778561:199098 +k1,364:10234336,8778561:199099 +k1,364:12156376,8778561:199098 +k1,364:13685855,8778561:199098 +k1,364:14536381,8778561:199098 +k1,364:16704837,8778561:199099 +k1,364:18716661,8778561:199098 +k1,364:19598644,8778561:199098 +k1,364:21177930,8778561:199098 +k1,364:22713963,8778561:199099 +k1,364:24379757,8778561:199098 +k1,364:25326621,8778561:199098 +k1,364:28284129,8778561:199098 +k1,364:29099266,8778561:199099 +k1,364:30317449,8778561:199098 +k1,364:32583029,8778561:0 +) +(1,365:6630773,9620049:25952256,505283,134348 +k1,364:9948256,9620049:241223 +k1,364:12133277,9620049:241223 +k1,364:13002335,9620049:241223 +k1,364:16083232,9620049:241222 +k1,364:16680315,9620049:241223 +k1,364:18190315,9620049:241223 +k1,364:19567277,9620049:241223 +k1,364:23325162,9620049:241223 +k1,364:24585470,9620049:241223 +k1,364:26408731,9620049:241222 +k1,364:27782416,9620049:241223 +k1,364:28771405,9620049:241223 +k1,364:31796597,9620049:241223 +k1,364:32583029,9620049:0 +) +(1,365:6630773,10461537:25952256,513147,126484 +g1,364:8211501,10461537 +g1,364:8606683,10461537 +g1,364:9001865,10461537 +g1,364:9397047,10461537 +g1,364:10582593,10461537 +g1,364:10977775,10461537 +(1,364:13744049,10559851:32768,0,0 +) +g1,364:15357545,10461537 +g1,364:15752727,10461537 +$1,364:17333455,10461537 +k1,365:32583029,10461537:15075904 +g1,365:32583029,10461537 +) +(1,366:6630773,13269105:25952256,32768,229376 +(1,366:6630773,13269105:0,32768,229376 +(1,366:6630773,13269105:5505024,32768,229376 +r1,366:12135797,13269105:5505024,262144,229376 +) +k1,366:6630773,13269105:-5505024 +) +(1,366:6630773,13269105:25952256,32768,0 +r1,366:32583029,13269105:25952256,32768,0 +) +) +(1,366:6630773,14873433:25952256,606339,161218 +(1,366:6630773,14873433:1974731,582746,14155 +g1,366:6630773,14873433 +g1,366:8605504,14873433 +) +g1,366:11813360,14873433 +k1,366:32583030,14873433:17773364 +g1,366:32583030,14873433 +) +(1,368:6630773,16108137:25952256,513147,134348 +k1,367:10781067,16108137:356415 +k1,367:12085133,16108137:356415 +k1,367:14716958,16108137:356415 +k1,367:17475923,16108137:356415 +k1,367:18823898,16108137:356415 +k1,367:22571146,16108137:356415 +k1,367:23736931,16108137:356415 +k1,367:25423726,16108137:356414 +k1,367:26950614,16108137:356415 +k1,367:28703601,16108137:356415 +k1,367:29711444,16108137:356415 +k1,367:31160344,16108137:356415 +k1,367:32105272,16108137:356415 +k1,367:32583029,16108137:0 +) +(1,368:6630773,16949625:25952256,513147,134348 +k1,367:8052249,16949625:251003 +k1,367:10964669,16949625:251003 +k1,367:13822039,16949625:251003 +k1,367:16596177,16949625:251002 +k1,367:18608788,16949625:251003 +k1,367:20211799,16949625:251003 +k1,367:22348928,16949625:251003 +k1,367:24353019,16949625:251003 +k1,367:25286907,16949625:251003 +k1,367:27163201,16949625:251002 +k1,367:28584677,16949625:251003 +k1,367:30791930,16949625:251003 +k1,367:32583029,16949625:0 +) +(1,368:6630773,17791113:25952256,513147,134348 +k1,367:8580826,17791113:382432 +k1,367:11565038,17791113:382433 +k1,367:12598898,17791113:382432 +k1,367:14596137,17791113:382432 +k1,367:16481310,17791113:382432 +k1,367:19198791,17791113:382433 +k1,367:22109602,17791113:382432 +k1,367:24006571,17791113:382432 +k1,367:24920501,17791113:382433 +k1,367:27359453,17791113:382432 +k1,367:29255111,17791113:382432 +k1,367:32583029,17791113:0 +) +(1,368:6630773,18632601:25952256,513147,134348 +(1,367:6630773,18632601:4521329,505283,11795 +) +k1,367:11361937,18632601:209835 +(1,367:11569031,18632601:4521329,505283,11795 +) +k1,367:16507289,18632601:209835 +k1,367:17821406,18632601:209835 +k1,367:18779007,18632601:209835 +k1,367:23717265,18632601:209835 +k1,367:24404857,18632601:209835 +k1,367:25785165,18632601:209835 +k1,367:27172027,18632601:209835 +k1,367:27994625,18632601:209836 +k1,367:30462175,18632601:209835 +k1,367:31086842,18632601:209824 +k1,367:32583029,18632601:0 +) +(1,368:6630773,19474089:25952256,513147,134348 +k1,367:8177423,19474089:262144 +k1,367:8971064,19474089:262144 +k1,367:10992194,19474089:262144 +k1,367:11905766,19474089:262144 +k1,367:12915676,19474089:262144 +k1,367:15500416,19474089:262144 +k1,367:16954005,19474089:262144 +k1,367:18691363,19474089:262143 +k1,367:20645647,19474089:262144 +k1,367:24219325,19474089:262144 +k1,367:25875420,19474089:262144 +k1,367:26764743,19474089:262144 +k1,367:28310082,19474089:262144 +k1,367:29255111,19474089:262144 +k1,367:30957736,19474089:262144 +k1,368:32583029,19474089:0 +) +(1,368:6630773,20315577:25952256,505283,134348 +k1,367:7806770,20315577:185748 +(1,367:7806770,20315577:5049549,505283,134348 +) +k1,367:13042066,20315577:185747 +(1,367:13249160,20315577:5049549,505283,134348 +) +k1,367:18691551,20315577:185748 +k1,367:20009760,20315577:185747 +k1,367:22625583,20315577:185748 +k1,367:23167190,20315577:185747 +k1,367:25520869,20315577:185748 +k1,367:32583029,20315577:0 +) +(1,368:6630773,21157065:25952256,513147,134348 +k1,367:8288670,21157065:231178 +k1,367:9179140,21157065:231178 +k1,367:13762564,21157065:231178 +k1,367:14679904,21157065:231178 +k1,367:15681785,21157065:231178 +k1,367:18236871,21157065:231179 +k1,367:19659494,21157065:231178 +k1,367:21278725,21157065:231178 +k1,367:22680376,21157065:231178 +k1,367:25110287,21157065:231178 +k1,367:26360550,21157065:231178 +k1,367:30780134,21157065:231178 +k1,367:32583029,21157065:0 +) +(1,368:6630773,21998553:25952256,513147,7863 +g1,367:7489294,21998553 +g1,367:8707608,21998553 +k1,368:32583028,21998553:22032548 +g1,368:32583028,21998553 +) +] +(1,377:32583029,45706769:0,0,0 +g1,377:32583029,45706769 +) +) +] +(1,377:6630773,47279633:25952256,0,0 +h1,377:6630773,47279633:25952256,0,0 +) +] +h1,377:4262630,4025873:0,0,0 +] +!10122 }26 -!10 +!11 {27 -[1,371:4262630,47279633:28320399,43253760,0 -(1,371:4262630,4025873:0,0,0 -[1,371:-473657,4025873:25952256,0,0 -(1,371:-473657,-710414:25952256,0,0 -h1,371:-473657,-710414:0,0,0 -(1,371:-473657,-710414:0,0,0 -(1,371:-473657,-710414:0,0,0 -g1,371:-473657,-710414 -(1,371:-473657,-710414:65781,0,65781 -g1,371:-407876,-710414 -[1,371:-407876,-644633:0,0,0 +[1,377:4262630,47279633:28320399,43253760,0 +(1,377:4262630,4025873:0,0,0 +[1,377:-473657,4025873:25952256,0,0 +(1,377:-473657,-710414:25952256,0,0 +h1,377:-473657,-710414:0,0,0 +(1,377:-473657,-710414:0,0,0 +(1,377:-473657,-710414:0,0,0 +g1,377:-473657,-710414 +(1,377:-473657,-710414:65781,0,65781 +g1,377:-407876,-710414 +[1,377:-407876,-644633:0,0,0 ] ) -k1,371:-473657,-710414:-65781 +k1,377:-473657,-710414:-65781 ) ) -k1,371:25478599,-710414:25952256 -g1,371:25478599,-710414 +k1,377:25478599,-710414:25952256 +g1,377:25478599,-710414 ) ] ) -[1,371:6630773,47279633:25952256,43253760,0 -[1,371:6630773,4812305:25952256,786432,0 -(1,371:6630773,4812305:25952256,0,0 -(1,371:6630773,4812305:25952256,0,0 -g1,371:3078558,4812305 -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,2439708:0,1703936,0 -k1,371:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,371:2537886,2439708:1179648,16384,0 +[1,377:6630773,47279633:25952256,43253760,0 +[1,377:6630773,4812305:25952256,786432,0 +(1,377:6630773,4812305:25952256,0,0 +(1,377:6630773,4812305:25952256,0,0 +g1,377:3078558,4812305 +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,2439708:0,1703936,0 +k1,377:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,377:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,371:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,377:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,2439708:0,1703936,0 -g1,371:29030814,2439708 -g1,371:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,371:36151628,1915420:16384,1179648,0 +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,2439708:0,1703936,0 +g1,377:29030814,2439708 +g1,377:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,377:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,371:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,377:37855564,2439708:1179648,16384,0 ) ) -k1,371:3078556,2439708:-34777008 +k1,377:3078556,2439708:-34777008 ) ] -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,49800853:0,16384,2228224 -k1,371:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,371:2537886,49800853:1179648,16384,0 +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,49800853:0,16384,2228224 +k1,377:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,377:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,371:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,377:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,371:3078558,4812305:0,0,0 -(1,371:3078558,49800853:0,16384,2228224 -g1,371:29030814,49800853 -g1,371:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,371:36151628,51504789:16384,1179648,0 +[1,377:3078558,4812305:0,0,0 +(1,377:3078558,49800853:0,16384,2228224 +g1,377:29030814,49800853 +g1,377:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,377:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,371:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,377:37855564,49800853:1179648,16384,0 ) ) -k1,371:3078556,49800853:-34777008 +k1,377:3078556,49800853:-34777008 ) ] -g1,371:6630773,4812305 +g1,377:6630773,4812305 ) ) ] -[1,371:6630773,45706769:0,40108032,0 -(1,371:6630773,45706769:0,40108032,0 -(1,371:6630773,45706769:0,0,0 -g1,371:6630773,45706769 +[1,377:6630773,45706769:0,40108032,0 +(1,377:6630773,45706769:0,40108032,0 +(1,377:6630773,45706769:0,0,0 +g1,377:6630773,45706769 ) -[1,371:6630773,45706769:0,40108032,0 -h1,371:6630773,6254097:0,0,0 +[1,377:6630773,45706769:0,40108032,0 +h1,377:6630773,6254097:0,0,0 ] -(1,371:6630773,45706769:0,0,0 -g1,371:6630773,45706769 +(1,377:6630773,45706769:0,0,0 +g1,377:6630773,45706769 ) ) ] -(1,371:6630773,47279633:25952256,0,0 -h1,371:6630773,47279633:25952256,0,0 +(1,377:6630773,47279633:25952256,0,0 +h1,377:6630773,47279633:25952256,0,0 ) ] -h1,371:4262630,4025873:0,0,0 +h1,377:4262630,4025873:0,0,0 ] !3237 }27 !10 {28 -[1,394:4262630,47279633:28320399,43253760,0 -(1,394:4262630,4025873:0,0,0 -[1,394:-473657,4025873:25952256,0,0 -(1,394:-473657,-710414:25952256,0,0 -h1,394:-473657,-710414:0,0,0 -(1,394:-473657,-710414:0,0,0 -(1,394:-473657,-710414:0,0,0 -g1,394:-473657,-710414 -(1,394:-473657,-710414:65781,0,65781 -g1,394:-407876,-710414 -[1,394:-407876,-644633:0,0,0 +[1,400:4262630,47279633:28320399,43253760,0 +(1,400:4262630,4025873:0,0,0 +[1,400:-473657,4025873:25952256,0,0 +(1,400:-473657,-710414:25952256,0,0 +h1,400:-473657,-710414:0,0,0 +(1,400:-473657,-710414:0,0,0 +(1,400:-473657,-710414:0,0,0 +g1,400:-473657,-710414 +(1,400:-473657,-710414:65781,0,65781 +g1,400:-407876,-710414 +[1,400:-407876,-644633:0,0,0 ] ) -k1,394:-473657,-710414:-65781 +k1,400:-473657,-710414:-65781 ) ) -k1,394:25478599,-710414:25952256 -g1,394:25478599,-710414 +k1,400:25478599,-710414:25952256 +g1,400:25478599,-710414 ) ] ) -[1,394:6630773,47279633:25952256,43253760,0 -[1,394:6630773,4812305:25952256,786432,0 -(1,394:6630773,4812305:25952256,0,0 -(1,394:6630773,4812305:25952256,0,0 -g1,394:3078558,4812305 -[1,394:3078558,4812305:0,0,0 -(1,394:3078558,2439708:0,1703936,0 -k1,394:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,394:2537886,2439708:1179648,16384,0 +[1,400:6630773,47279633:25952256,43253760,0 +[1,400:6630773,4812305:25952256,786432,0 +(1,400:6630773,4812305:25952256,0,0 +(1,400:6630773,4812305:25952256,0,0 +g1,400:3078558,4812305 +[1,400:3078558,4812305:0,0,0 +(1,400:3078558,2439708:0,1703936,0 +k1,400:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,400:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,394:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,400:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,394:3078558,4812305:0,0,0 -(1,394:3078558,2439708:0,1703936,0 -g1,394:29030814,2439708 -g1,394:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,394:36151628,1915420:16384,1179648,0 +[1,400:3078558,4812305:0,0,0 +(1,400:3078558,2439708:0,1703936,0 +g1,400:29030814,2439708 +g1,400:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,400:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,394:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,400:37855564,2439708:1179648,16384,0 ) ) -k1,394:3078556,2439708:-34777008 +k1,400:3078556,2439708:-34777008 ) ] -[1,394:3078558,4812305:0,0,0 -(1,394:3078558,49800853:0,16384,2228224 -k1,394:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,394:2537886,49800853:1179648,16384,0 +[1,400:3078558,4812305:0,0,0 +(1,400:3078558,49800853:0,16384,2228224 +k1,400:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,400:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,394:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,400:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,394:3078558,4812305:0,0,0 -(1,394:3078558,49800853:0,16384,2228224 -g1,394:29030814,49800853 -g1,394:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,394:36151628,51504789:16384,1179648,0 +[1,400:3078558,4812305:0,0,0 +(1,400:3078558,49800853:0,16384,2228224 +g1,400:29030814,49800853 +g1,400:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,400:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,394:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,400:37855564,49800853:1179648,16384,0 ) ) -k1,394:3078556,49800853:-34777008 +k1,400:3078556,49800853:-34777008 ) ] -g1,394:6630773,4812305 +g1,400:6630773,4812305 ) ) ] -[1,394:6630773,45706769:25952256,40108032,0 -(1,394:6630773,45706769:25952256,40108032,0 -(1,394:6630773,45706769:0,0,0 -g1,394:6630773,45706769 +[1,400:6630773,45706769:25952256,40108032,0 +(1,400:6630773,45706769:25952256,40108032,0 +(1,400:6630773,45706769:0,0,0 +g1,400:6630773,45706769 ) -[1,394:6630773,45706769:25952256,40108032,0 -[1,371:6630773,11663733:25952256,6064996,0 -(1,371:6630773,6633157:25952256,1165492,0 -h1,371:6630773,6633157:0,0,0 -k1,371:20096848,6633157:12486181 -k1,371:32583029,6633157:12486181 +[1,400:6630773,45706769:25952256,40108032,0 +[1,377:6630773,11663733:25952256,6064996,0 +(1,377:6630773,6633157:25952256,1165492,0 +h1,377:6630773,6633157:0,0,0 +k1,377:20096848,6633157:12486181 +k1,377:32583029,6633157:12486181 ) -(1,371:6630773,7333093:25952256,32768,229376 -(1,371:6630773,7333093:0,32768,229376 -(1,371:6630773,7333093:5505024,32768,229376 -r1,371:12135797,7333093:5505024,262144,229376 +(1,377:6630773,7333093:25952256,32768,229376 +(1,377:6630773,7333093:0,32768,229376 +(1,377:6630773,7333093:5505024,32768,229376 +r1,377:12135797,7333093:5505024,262144,229376 ) -k1,371:6630773,7333093:-5505024 +k1,377:6630773,7333093:-5505024 ) -(1,371:6630773,7333093:25952256,32768,0 -r1,371:32583029,7333093:25952256,32768,0 +(1,377:6630773,7333093:25952256,32768,0 +r1,377:32583029,7333093:25952256,32768,0 ) ) -(1,371:6630773,9128789:25952256,909509,241827 -h1,371:6630773,9128789:0,0,0 -g1,371:9126908,9128789 -g1,371:10294760,9128789 -g1,371:16260240,9128789 -g1,371:21097977,9128789 -g1,371:23635400,9128789 -k1,371:31324935,9128789:1258094 -k1,371:32583029,9128789:1258094 +(1,377:6630773,9128789:25952256,909509,241827 +h1,377:6630773,9128789:0,0,0 +g1,377:9126908,9128789 +g1,377:10294760,9128789 +g1,377:16260240,9128789 +g1,377:21184091,9128789 +g1,377:23721514,9128789 +k1,377:31367992,9128789:1215037 +k1,377:32583029,9128789:1215037 ) -(1,371:6630773,9828725:25952256,32768,0 -(1,371:6630773,9828725:5505024,32768,0 -r1,371:12135797,9828725:5505024,32768,0 +(1,377:6630773,9828725:25952256,32768,0 +(1,377:6630773,9828725:5505024,32768,0 +r1,377:12135797,9828725:5505024,32768,0 ) -k1,371:22359413,9828725:10223616 -k1,371:32583029,9828725:10223616 -) -] -(1,373:6630773,14556498:25952256,131072,0 -r1,373:32583029,14556498:25952256,131072,0 -g1,373:32583029,14556498 -g1,373:32583029,14556498 -) -(1,375:6630773,15876399:25952256,513147,7863 -k1,375:8596853,15876399:1966080 -k1,374:10012496,15876399:218956 -k1,374:12166729,15876399:218955 -k1,374:13037113,15876399:218956 -k1,374:16699330,15876399:218955 -k1,374:18343694,15876399:218956 -k1,374:19754095,15876399:218956 -k1,374:22173094,15876399:218955 -k1,374:24164799,15876399:218956 -k1,374:24999792,15876399:218955 -k1,374:29055881,15876399:218956 -k1,375:32583029,15876399:1966080 -) -(1,375:6630773,16717887:25952256,505283,126483 -k1,375:8596853,16717887:1966080 -k1,374:11989592,16717887:172955 -k1,374:13353993,16717887:172956 -k1,374:14178376,16717887:172955 -k1,374:17301106,16717887:172955 -k1,374:19694421,16717887:172955 -k1,374:22255509,16717887:172956 -k1,374:23079892,16717887:172955 -k1,374:25033460,16717887:172955 -k1,374:25737912,16717887:172955 -k1,374:28737436,16717887:172956 -k1,374:29596553,16717887:172955 -k1,374:32583029,16717887:1966080 -) -(1,375:6630773,17559375:25952256,513147,7863 -g1,375:8596853,17559375 -g1,374:9482244,17559375 -g1,374:10700558,17559375 -g1,374:13207965,17559375 -g1,374:14066486,17559375 -g1,374:17541860,17559375 -k1,375:30616949,17559375:11295787 -g1,375:32583029,17559375 -) -(1,376:6630773,19187295:25952256,505283,7863 -k1,376:26088411,19187295:19457638 -h1,376:26088411,19187295:0,0,0 -g1,376:28773421,19187295 -g1,376:30616949,19187295 -g1,376:32583029,19187295 -) -(1,377:6630773,20028783:25952256,505283,134348 -k1,377:10735950,20028783:4105177 -h1,376:10735950,20028783:0,0,0 -g1,376:13781408,20028783 -g1,376:17149958,20028783 -g1,376:20806211,20028783 -g1,376:23871329,20028783 -g1,376:25838064,20028783 -g1,376:29023113,20028783 -g1,377:30616949,20028783 -g1,377:32583029,20028783 -) -(1,377:6630773,21263487:25952256,131072,0 -r1,377:32583029,21263487:25952256,131072,0 -g1,377:32583029,21263487 -g1,377:34549109,21263487 -) -(1,381:6630773,24071055:25952256,32768,229376 -(1,381:6630773,24071055:0,32768,229376 -(1,381:6630773,24071055:5505024,32768,229376 -r1,381:12135797,24071055:5505024,262144,229376 -) -k1,381:6630773,24071055:-5505024 -) -(1,381:6630773,24071055:25952256,32768,0 -r1,381:32583029,24071055:25952256,32768,0 -) -) -(1,381:6630773,25675383:25952256,615776,151780 -(1,381:6630773,25675383:1974731,582746,0 -g1,381:6630773,25675383 -g1,381:8605504,25675383 -) -g1,381:10904245,25675383 -g1,381:11961996,25675383 -g1,381:13695292,25675383 -k1,381:32583029,25675383:15886712 -g1,381:32583029,25675383 -) -(1,384:6630773,26910087:25952256,513147,134348 -k1,383:7492375,26910087:233767 -k1,383:8707216,26910087:233767 -k1,383:12527767,26910087:233766 -k1,383:13709185,26910087:233767 -k1,383:15686865,26910087:233767 -k1,383:16986903,26910087:233767 -k1,383:19713004,26910087:233767 -k1,383:21340721,26910087:233766 -k1,383:24650748,26910087:233767 -k1,383:29236761,26910087:233767 -k1,383:32583029,26910087:0 -) -(1,384:6630773,27751575:25952256,513147,134348 -k1,383:7825455,27751575:175597 -k1,383:9336020,27751575:175597 -k1,383:10817750,27751575:175597 -k1,383:12348632,27751575:175597 -k1,383:13140267,27751575:175597 -k1,383:15917642,27751575:175596 -k1,383:17112324,27751575:175597 -k1,383:17702741,27751575:175574 -k1,383:20720634,27751575:175597 -k1,383:21427728,27751575:175597 -k1,383:22254752,27751575:175596 -k1,383:23522834,27751575:175597 -k1,383:24156528,27751575:175597 -k1,383:28259042,27751575:175597 -k1,383:29196167,27751575:175597 -k1,383:31400759,27751575:175597 -k1,384:32583029,27751575:0 -) -(1,384:6630773,28593063:25952256,505283,126483 -k1,383:8032260,28593063:168755 -k1,383:11690807,28593063:168755 -k1,383:12472324,28593063:168755 -k1,383:13660164,28593063:168755 -k1,383:16112849,28593063:168755 -k1,383:16964489,28593063:168755 -k1,383:20292735,28593063:168755 -k1,383:21803667,28593063:168755 -k1,383:23353266,28593063:168755 -k1,383:24654483,28593063:168755 -k1,383:26531762,28593063:168755 -k1,383:27766788,28593063:168755 -k1,383:29311144,28593063:168755 -k1,383:30498984,28593063:168755 -k1,383:32583029,28593063:0 -) -(1,384:6630773,29434551:25952256,513147,134348 -k1,383:8058299,29434551:236081 -k1,383:11196969,29434551:236080 -k1,383:13192692,29434551:236081 -k1,383:14500941,29434551:236080 -k1,383:16022838,29434551:236081 -k1,383:17538837,29434551:236081 -k1,383:18945390,29434551:236080 -k1,383:19537331,29434551:236081 -k1,383:22272300,29434551:236081 -k1,383:23121142,29434551:236080 -k1,383:24376308,29434551:236081 -k1,383:28181479,29434551:236080 -k1,383:29609005,29434551:236081 -k1,383:32583029,29434551:0 -) -(1,384:6630773,30276039:25952256,513147,126483 -g1,383:7489294,30276039 -g1,383:8891764,30276039 -g1,383:12075503,30276039 -g1,383:12926160,30276039 -g1,383:14514752,30276039 -k1,384:32583029,30276039:15340013 -g1,384:32583029,30276039 -) -(1,386:6630773,31117527:25952256,513147,126483 -h1,385:6630773,31117527:983040,0,0 -k1,385:8488198,31117527:246550 -k1,385:9753832,31117527:246549 -k1,385:11306515,31117527:246550 -k1,385:12874925,31117527:246549 -k1,385:13780767,31117527:246550 -k1,385:15046401,31117527:246549 -k1,385:17710574,31117527:246550 -k1,385:18825475,31117527:246549 -k1,385:20204487,31117527:246550 -k1,385:21543521,31117527:246549 -k1,385:22204866,31117527:246502 -k1,385:23102844,31117527:246550 -k1,385:24164661,31117527:246549 -k1,385:27250231,31117527:246550 -k1,385:31298523,31117527:246549 -k1,385:32583029,31117527:0 -) -(1,386:6630773,31959015:25952256,513147,126483 -k1,385:8975083,31959015:163927 -k1,385:9886777,31959015:163928 -k1,385:10775532,31959015:163927 -k1,385:12334065,31959015:163927 -k1,385:13689437,31959015:163927 -k1,385:16345699,31959015:163928 -k1,385:17794132,31959015:163927 -k1,385:19128532,31959015:163927 -k1,385:20424921,31959015:163927 -k1,385:21655120,31959015:163928 -k1,385:23349313,31959015:163927 -k1,385:24164668,31959015:163927 -k1,385:26008938,31959015:163927 -k1,385:27995422,31959015:163928 -k1,385:29178434,31959015:163927 -k1,385:32583029,31959015:0 -) -(1,386:6630773,32800503:25952256,513147,134348 -k1,385:10521951,32800503:160869 -k1,385:12063664,32800503:160869 -k1,385:13619139,32800503:160869 -k1,385:15268331,32800503:160869 -k1,385:16561662,32800503:160869 -k1,385:18002449,32800503:160869 -k1,385:19333791,32800503:160869 -k1,385:19850519,32800503:160868 -k1,385:22211432,32800503:160869 -k1,385:23023729,32800503:160869 -k1,385:24922613,32800503:160869 -k1,385:25892852,32800503:160869 -k1,385:28655500,32800503:160869 -k1,385:30146750,32800503:160869 -k1,385:30959047,32800503:160869 -k1,385:32583029,32800503:0 -) -(1,386:6630773,33641991:25952256,505283,126483 -g1,385:9032012,33641991 -g1,385:12721033,33641991 -g1,385:13533024,33641991 -g1,385:14751338,33641991 -g1,385:18110058,33641991 -k1,386:32583029,33641991:11898061 -g1,386:32583029,33641991 -) -(1,388:6630773,34483479:25952256,513147,134348 -h1,387:6630773,34483479:983040,0,0 -k1,387:9455142,34483479:227833 -k1,387:10299013,34483479:227833 -k1,387:11545931,34483479:227833 -k1,387:14365058,34483479:227833 -k1,387:15763365,34483479:227834 -k1,387:17123660,34483479:227833 -k1,387:20332726,34483479:227833 -k1,387:22090825,34483479:227833 -k1,387:22970086,34483479:227833 -k1,387:24935934,34483479:227833 -k1,387:26813964,34483479:227833 -k1,387:27851167,34483479:227833 -k1,387:29098086,34483479:227834 -k1,387:29740733,34483479:227804 -k1,387:32583029,34483479:0 -) -(1,388:6630773,35324967:25952256,513147,134348 -k1,387:7981514,35324967:159296 -k1,387:8929208,35324967:159296 -k1,387:11991094,35324967:159296 -k1,387:13341835,35324967:159296 -k1,387:14714202,35324967:159296 -k1,387:15682868,35324967:159296 -k1,387:17172545,35324967:159296 -k1,387:20821633,35324967:159296 -k1,387:21972489,35324967:159296 -k1,387:24728321,35324967:159296 -k1,387:25647835,35324967:159296 -k1,387:26826216,35324967:159296 -k1,387:28168437,35324967:159296 -k1,387:28987025,35324967:159296 -k1,387:30165406,35324967:159296 -k1,387:32583029,35324967:0 -) -(1,388:6630773,36166455:25952256,513147,134348 -k1,387:7999001,36166455:197755 -k1,387:9329218,36166455:197755 -k1,387:10274739,36166455:197755 -k1,387:12964828,36166455:197755 -k1,387:14556534,36166455:197755 -k1,387:16355988,36166455:197754 -k1,387:17213035,36166455:197755 -k1,387:18429875,36166455:197755 -k1,387:20387272,36166455:197755 -k1,387:21244319,36166455:197755 -k1,387:23997323,36166455:197755 -k1,387:25708304,36166455:197755 -k1,387:26522097,36166455:197755 -k1,387:27738937,36166455:197755 -k1,387:28351533,36166455:197753 -k1,387:31391584,36166455:197755 -k1,387:32583029,36166455:0 -) -(1,388:6630773,37007943:25952256,505283,126483 -g1,387:8000475,37007943 -g1,387:9332166,37007943 -g1,387:10279161,37007943 -g1,387:11787144,37007943 -g1,387:12637801,37007943 -g1,387:14451837,37007943 -g1,387:16775743,37007943 -g1,387:20698072,37007943 -g1,387:21513339,37007943 -k1,388:32583029,37007943:10481177 -g1,388:32583029,37007943 -) -(1,390:6630773,37849431:25952256,513147,134348 -h1,389:6630773,37849431:983040,0,0 -k1,389:9676935,37849431:186826 -k1,389:10882846,37849431:186826 -k1,389:13660966,37849431:186826 -k1,389:14060772,37849431:186814 -k1,389:15380060,37849431:186826 -k1,389:19452516,37849431:186826 -k1,389:21300024,37849431:186826 -k1,389:22505935,37849431:186826 -k1,389:25997742,37849431:186826 -k1,389:26843860,37849431:186826 -k1,389:28049771,37849431:186826 -k1,389:28651428,37849431:186814 -k1,389:30334441,37849431:186826 -k1,389:31137305,37849431:186826 -k1,390:32583029,37849431:0 -) -(1,390:6630773,38690919:25952256,513147,126483 -k1,389:9881905,38690919:160454 -k1,389:12905627,38690919:160454 -k1,389:13543837,38690919:160453 -k1,389:14874764,38690919:160454 -k1,389:16026778,38690919:160454 -k1,389:17253503,38690919:160454 -k1,389:19906291,38690919:160454 -k1,389:21460696,38690919:160454 -k1,389:22640234,38690919:160453 -k1,389:27124098,38690919:160454 -k1,389:30147820,38690919:160454 -k1,389:31478747,38690919:160454 -k1,389:32583029,38690919:0 -) -(1,390:6630773,39532407:25952256,513147,134348 -g1,389:8694501,39532407 -g1,389:10914205,39532407 -g1,389:11745201,39532407 -g1,389:12630592,39532407 -g1,389:14218529,39532407 -g1,389:15103920,39532407 -g1,389:16473622,39532407 -g1,389:20337624,39532407 -g1,389:21555938,39532407 -g1,389:22170010,39532407 -k1,390:32583029,39532407:8743162 -g1,390:32583029,39532407 -) -] -(1,394:32583029,45706769:0,0,0 -g1,394:32583029,45706769 -) -) -] -(1,394:6630773,47279633:25952256,477757,0 -(1,394:6630773,47279633:25952256,477757,0 -(1,394:6630773,47279633:0,0,0 -v1,394:6630773,47279633:0,0,0 -) -g1,394:6830002,47279633 -k1,394:31786110,47279633:24956108 -) -) -] -h1,394:4262630,4025873:0,0,0 +k1,377:22359413,9828725:10223616 +k1,377:32583029,9828725:10223616 +) +] +(1,379:6630773,14556498:25952256,131072,0 +r1,379:32583029,14556498:25952256,131072,0 +g1,379:32583029,14556498 +g1,379:32583029,14556498 +) +(1,381:6630773,15876399:25952256,513147,7863 +k1,381:8596853,15876399:1966080 +k1,380:10012496,15876399:218956 +k1,380:12166729,15876399:218955 +k1,380:13037113,15876399:218956 +k1,380:16699330,15876399:218955 +k1,380:18343694,15876399:218956 +k1,380:19754095,15876399:218956 +k1,380:22173094,15876399:218955 +k1,380:24164799,15876399:218956 +k1,380:24999792,15876399:218955 +k1,380:29055881,15876399:218956 +k1,381:32583029,15876399:1966080 +) +(1,381:6630773,16717887:25952256,505283,126483 +k1,381:8596853,16717887:1966080 +k1,380:11989592,16717887:172955 +k1,380:13353993,16717887:172956 +k1,380:14178376,16717887:172955 +k1,380:17301106,16717887:172955 +k1,380:19694421,16717887:172955 +k1,380:22255509,16717887:172956 +k1,380:23079892,16717887:172955 +k1,380:25033460,16717887:172955 +k1,380:25737912,16717887:172955 +k1,380:28737436,16717887:172956 +k1,380:29596553,16717887:172955 +k1,380:32583029,16717887:1966080 +) +(1,381:6630773,17559375:25952256,513147,7863 +g1,381:8596853,17559375 +g1,380:9482244,17559375 +g1,380:10700558,17559375 +g1,380:13207965,17559375 +g1,380:14066486,17559375 +g1,380:17541860,17559375 +k1,381:30616949,17559375:11295787 +g1,381:32583029,17559375 +) +(1,382:6630773,19187295:25952256,505283,7863 +k1,382:26088411,19187295:19457638 +h1,382:26088411,19187295:0,0,0 +g1,382:28773421,19187295 +g1,382:30616949,19187295 +g1,382:32583029,19187295 +) +(1,383:6630773,20028783:25952256,505283,134348 +k1,383:10735950,20028783:4105177 +h1,382:10735950,20028783:0,0,0 +g1,382:13781408,20028783 +g1,382:17149958,20028783 +g1,382:20806211,20028783 +g1,382:23871329,20028783 +g1,382:25838064,20028783 +g1,382:29023113,20028783 +g1,383:30616949,20028783 +g1,383:32583029,20028783 +) +(1,383:6630773,21263487:25952256,131072,0 +r1,383:32583029,21263487:25952256,131072,0 +g1,383:32583029,21263487 +g1,383:34549109,21263487 +) +(1,387:6630773,24071055:25952256,32768,229376 +(1,387:6630773,24071055:0,32768,229376 +(1,387:6630773,24071055:5505024,32768,229376 +r1,387:12135797,24071055:5505024,262144,229376 +) +k1,387:6630773,24071055:-5505024 +) +(1,387:6630773,24071055:25952256,32768,0 +r1,387:32583029,24071055:25952256,32768,0 +) +) +(1,387:6630773,25675383:25952256,615776,151780 +(1,387:6630773,25675383:1974731,582746,0 +g1,387:6630773,25675383 +g1,387:8605504,25675383 +) +g1,387:10904245,25675383 +g1,387:11961996,25675383 +g1,387:13695292,25675383 +k1,387:32583029,25675383:15886712 +g1,387:32583029,25675383 +) +(1,390:6630773,26910087:25952256,513147,134348 +k1,389:7492375,26910087:233767 +k1,389:8707216,26910087:233767 +k1,389:12527767,26910087:233766 +k1,389:13709185,26910087:233767 +k1,389:15686865,26910087:233767 +k1,389:16986903,26910087:233767 +k1,389:19713004,26910087:233767 +k1,389:21340721,26910087:233766 +k1,389:24650748,26910087:233767 +k1,389:29236761,26910087:233767 +k1,389:32583029,26910087:0 +) +(1,390:6630773,27751575:25952256,513147,134348 +k1,389:7825455,27751575:175597 +k1,389:9336020,27751575:175597 +k1,389:10817750,27751575:175597 +k1,389:12348632,27751575:175597 +k1,389:13140267,27751575:175597 +k1,389:15917642,27751575:175596 +k1,389:17112324,27751575:175597 +k1,389:17702741,27751575:175574 +k1,389:20720634,27751575:175597 +k1,389:21427728,27751575:175597 +k1,389:22254752,27751575:175596 +k1,389:23522834,27751575:175597 +k1,389:24156528,27751575:175597 +k1,389:28259042,27751575:175597 +k1,389:29196167,27751575:175597 +k1,389:31400759,27751575:175597 +k1,390:32583029,27751575:0 +) +(1,390:6630773,28593063:25952256,505283,126483 +k1,389:8032260,28593063:168755 +k1,389:11690807,28593063:168755 +k1,389:12472324,28593063:168755 +k1,389:13660164,28593063:168755 +k1,389:16112849,28593063:168755 +k1,389:16964489,28593063:168755 +k1,389:20292735,28593063:168755 +k1,389:21803667,28593063:168755 +k1,389:23353266,28593063:168755 +k1,389:24654483,28593063:168755 +k1,389:26531762,28593063:168755 +k1,389:27766788,28593063:168755 +k1,389:29311144,28593063:168755 +k1,389:30498984,28593063:168755 +k1,389:32583029,28593063:0 +) +(1,390:6630773,29434551:25952256,513147,134348 +k1,389:8058299,29434551:236081 +k1,389:11196969,29434551:236080 +k1,389:13192692,29434551:236081 +k1,389:14500941,29434551:236080 +k1,389:16022838,29434551:236081 +k1,389:17538837,29434551:236081 +k1,389:18945390,29434551:236080 +k1,389:19537331,29434551:236081 +k1,389:22272300,29434551:236081 +k1,389:23121142,29434551:236080 +k1,389:24376308,29434551:236081 +k1,389:28181479,29434551:236080 +k1,389:29609005,29434551:236081 +k1,389:32583029,29434551:0 +) +(1,390:6630773,30276039:25952256,513147,126483 +g1,389:7489294,30276039 +g1,389:8891764,30276039 +g1,389:12075503,30276039 +g1,389:12926160,30276039 +g1,389:14514752,30276039 +k1,390:32583029,30276039:15340013 +g1,390:32583029,30276039 +) +(1,392:6630773,31117527:25952256,513147,126483 +h1,391:6630773,31117527:983040,0,0 +k1,391:8488198,31117527:246550 +k1,391:9753832,31117527:246549 +k1,391:11306515,31117527:246550 +k1,391:12874925,31117527:246549 +k1,391:13780767,31117527:246550 +k1,391:15046401,31117527:246549 +k1,391:17710574,31117527:246550 +k1,391:18825475,31117527:246549 +k1,391:20204487,31117527:246550 +k1,391:21543521,31117527:246549 +k1,391:22204866,31117527:246502 +k1,391:23102844,31117527:246550 +k1,391:24164661,31117527:246549 +k1,391:27250231,31117527:246550 +k1,391:31298523,31117527:246549 +k1,391:32583029,31117527:0 +) +(1,392:6630773,31959015:25952256,513147,126483 +k1,391:8975083,31959015:163927 +k1,391:9886777,31959015:163928 +k1,391:10775532,31959015:163927 +k1,391:12334065,31959015:163927 +k1,391:13689437,31959015:163927 +k1,391:16345699,31959015:163928 +k1,391:17794132,31959015:163927 +k1,391:19128532,31959015:163927 +k1,391:20424921,31959015:163927 +k1,391:21655120,31959015:163928 +k1,391:23349313,31959015:163927 +k1,391:24164668,31959015:163927 +k1,391:26008938,31959015:163927 +k1,391:27995422,31959015:163928 +k1,391:29178434,31959015:163927 +k1,391:32583029,31959015:0 +) +(1,392:6630773,32800503:25952256,513147,134348 +k1,391:10521951,32800503:160869 +k1,391:12063664,32800503:160869 +k1,391:13619139,32800503:160869 +k1,391:15268331,32800503:160869 +k1,391:16561662,32800503:160869 +k1,391:18002449,32800503:160869 +k1,391:19333791,32800503:160869 +k1,391:19850519,32800503:160868 +k1,391:22211432,32800503:160869 +k1,391:23023729,32800503:160869 +k1,391:24922613,32800503:160869 +k1,391:25892852,32800503:160869 +k1,391:28655500,32800503:160869 +k1,391:30146750,32800503:160869 +k1,391:30959047,32800503:160869 +k1,391:32583029,32800503:0 +) +(1,392:6630773,33641991:25952256,505283,126483 +g1,391:9032012,33641991 +g1,391:12721033,33641991 +g1,391:13533024,33641991 +g1,391:14751338,33641991 +g1,391:18110058,33641991 +k1,392:32583029,33641991:11898061 +g1,392:32583029,33641991 +) +(1,394:6630773,34483479:25952256,513147,134348 +h1,393:6630773,34483479:983040,0,0 +k1,393:9455142,34483479:227833 +k1,393:10299013,34483479:227833 +k1,393:11545931,34483479:227833 +k1,393:14365058,34483479:227833 +k1,393:15763365,34483479:227834 +k1,393:17123660,34483479:227833 +k1,393:20332726,34483479:227833 +k1,393:22090825,34483479:227833 +k1,393:22970086,34483479:227833 +k1,393:24935934,34483479:227833 +k1,393:26813964,34483479:227833 +k1,393:27851167,34483479:227833 +k1,393:29098086,34483479:227834 +k1,393:29740733,34483479:227804 +k1,393:32583029,34483479:0 +) +(1,394:6630773,35324967:25952256,513147,134348 +k1,393:7981514,35324967:159296 +k1,393:8929208,35324967:159296 +k1,393:11991094,35324967:159296 +k1,393:13341835,35324967:159296 +k1,393:14714202,35324967:159296 +k1,393:15682868,35324967:159296 +k1,393:17172545,35324967:159296 +k1,393:20821633,35324967:159296 +k1,393:21972489,35324967:159296 +k1,393:24728321,35324967:159296 +k1,393:25647835,35324967:159296 +k1,393:26826216,35324967:159296 +k1,393:28168437,35324967:159296 +k1,393:28987025,35324967:159296 +k1,393:30165406,35324967:159296 +k1,393:32583029,35324967:0 +) +(1,394:6630773,36166455:25952256,513147,134348 +k1,393:7999001,36166455:197755 +k1,393:9329218,36166455:197755 +k1,393:10274739,36166455:197755 +k1,393:12964828,36166455:197755 +k1,393:14556534,36166455:197755 +k1,393:16355988,36166455:197754 +k1,393:17213035,36166455:197755 +k1,393:18429875,36166455:197755 +k1,393:20387272,36166455:197755 +k1,393:21244319,36166455:197755 +k1,393:23997323,36166455:197755 +k1,393:25708304,36166455:197755 +k1,393:26522097,36166455:197755 +k1,393:27738937,36166455:197755 +k1,393:28351533,36166455:197753 +k1,393:31391584,36166455:197755 +k1,393:32583029,36166455:0 +) +(1,394:6630773,37007943:25952256,505283,126483 +g1,393:8000475,37007943 +g1,393:9332166,37007943 +g1,393:10279161,37007943 +g1,393:11787144,37007943 +g1,393:12637801,37007943 +g1,393:14451837,37007943 +g1,393:16775743,37007943 +g1,393:20698072,37007943 +g1,393:21513339,37007943 +k1,394:32583029,37007943:10481177 +g1,394:32583029,37007943 +) +(1,396:6630773,37849431:25952256,513147,134348 +h1,395:6630773,37849431:983040,0,0 +k1,395:9647308,37849431:157199 +k1,395:10823591,37849431:157198 +k1,395:13572084,37849431:157199 +k1,395:13942233,37849431:157157 +k1,395:15231893,37849431:157198 +k1,395:19274722,37849431:157199 +k1,395:21092602,37849431:157198 +k1,395:22268886,37849431:157199 +k1,395:25731066,37849431:157199 +k1,395:26547556,37849431:157198 +k1,395:27723840,37849431:157199 +k1,395:28295840,37849431:157157 +k1,395:29949225,37849431:157198 +k1,395:30722462,37849431:157199 +k1,396:32583029,37849431:0 +) +(1,396:6630773,38690919:25952256,513147,126483 +k1,395:9501632,38690919:195024 +k1,395:12559924,38690919:195024 +k1,395:13232705,38690919:195024 +k1,395:14598202,38690919:195024 +k1,395:15784786,38690919:195024 +k1,395:17046081,38690919:195024 +k1,395:19733440,38690919:195025 +k1,395:21322415,38690919:195024 +k1,395:22536524,38690919:195024 +k1,395:27054958,38690919:195024 +k1,395:30113250,38690919:195024 +k1,395:31478747,38690919:195024 +k1,395:32583029,38690919:0 +) +(1,396:6630773,39532407:25952256,513147,134348 +g1,395:8694501,39532407 +g1,395:10914205,39532407 +g1,395:11745201,39532407 +g1,395:12630592,39532407 +g1,395:14218529,39532407 +g1,395:15103920,39532407 +g1,395:16473622,39532407 +g1,395:20337624,39532407 +g1,395:21555938,39532407 +g1,395:22170010,39532407 +k1,396:32583029,39532407:8743162 +g1,396:32583029,39532407 +) +] +(1,400:32583029,45706769:0,0,0 +g1,400:32583029,45706769 +) +) +] +(1,400:6630773,47279633:25952256,477757,0 +(1,400:6630773,47279633:25952256,477757,0 +(1,400:6630773,47279633:0,0,0 +v1,400:6630773,47279633:0,0,0 +) +g1,400:6830002,47279633 +k1,400:31786110,47279633:24956108 +) +) +] +h1,400:4262630,4025873:0,0,0 ] !14349 }28 -Input:134:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:135:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:136:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:137:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:138:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:139:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:140:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:141:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:142:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:130:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:131:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:132:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:133:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:134:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:135:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:136:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:137:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:138:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {29 -[1,416:4262630,47279633:28320399,43253760,0 -(1,416:4262630,4025873:0,0,0 -[1,416:-473657,4025873:25952256,0,0 -(1,416:-473657,-710414:25952256,0,0 -h1,416:-473657,-710414:0,0,0 -(1,416:-473657,-710414:0,0,0 -(1,416:-473657,-710414:0,0,0 -g1,416:-473657,-710414 -(1,416:-473657,-710414:65781,0,65781 -g1,416:-407876,-710414 -[1,416:-407876,-644633:0,0,0 +[1,422:4262630,47279633:28320399,43253760,0 +(1,422:4262630,4025873:0,0,0 +[1,422:-473657,4025873:25952256,0,0 +(1,422:-473657,-710414:25952256,0,0 +h1,422:-473657,-710414:0,0,0 +(1,422:-473657,-710414:0,0,0 +(1,422:-473657,-710414:0,0,0 +g1,422:-473657,-710414 +(1,422:-473657,-710414:65781,0,65781 +g1,422:-407876,-710414 +[1,422:-407876,-644633:0,0,0 ] ) -k1,416:-473657,-710414:-65781 +k1,422:-473657,-710414:-65781 ) ) -k1,416:25478599,-710414:25952256 -g1,416:25478599,-710414 +k1,422:25478599,-710414:25952256 +g1,422:25478599,-710414 ) ] ) -[1,416:6630773,47279633:25952256,43253760,0 -[1,416:6630773,4812305:25952256,786432,0 -(1,416:6630773,4812305:25952256,505283,134348 -(1,416:6630773,4812305:25952256,505283,134348 -g1,416:3078558,4812305 -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,2439708:0,1703936,0 -k1,416:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,416:2537886,2439708:1179648,16384,0 +[1,422:6630773,47279633:25952256,43253760,0 +[1,422:6630773,4812305:25952256,786432,0 +(1,422:6630773,4812305:25952256,505283,134348 +(1,422:6630773,4812305:25952256,505283,134348 +g1,422:3078558,4812305 +[1,422:3078558,4812305:0,0,0 +(1,422:3078558,2439708:0,1703936,0 +k1,422:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,422:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,416:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,422:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,2439708:0,1703936,0 -g1,416:29030814,2439708 -g1,416:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,416:36151628,1915420:16384,1179648,0 +[1,422:3078558,4812305:0,0,0 +(1,422:3078558,2439708:0,1703936,0 +g1,422:29030814,2439708 +g1,422:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,422:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,416:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,422:37855564,2439708:1179648,16384,0 ) ) -k1,416:3078556,2439708:-34777008 +k1,422:3078556,2439708:-34777008 ) ] -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,49800853:0,16384,2228224 -k1,416:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,416:2537886,49800853:1179648,16384,0 +[1,422:3078558,4812305:0,0,0 +(1,422:3078558,49800853:0,16384,2228224 +k1,422:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,422:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,416:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,422:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,416:3078558,4812305:0,0,0 -(1,416:3078558,49800853:0,16384,2228224 -g1,416:29030814,49800853 -g1,416:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,416:36151628,51504789:16384,1179648,0 +[1,422:3078558,4812305:0,0,0 +(1,422:3078558,49800853:0,16384,2228224 +g1,422:29030814,49800853 +g1,422:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,422:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,416:37855564,49800853:1179648,16384,0 -) -) -k1,416:3078556,49800853:-34777008 -) -] -g1,416:6630773,4812305 -k1,416:19562994,4812305:12135303 -g1,416:20949735,4812305 -g1,416:21598541,4812305 -g1,416:24912696,4812305 -g1,416:27600327,4812305 -g1,416:29010006,4812305 -) -) -] -[1,416:6630773,45706769:25952256,40108032,0 -(1,416:6630773,45706769:25952256,40108032,0 -(1,416:6630773,45706769:0,0,0 -g1,416:6630773,45706769 -) -[1,416:6630773,45706769:25952256,40108032,0 -(1,391:6630773,6254097:25952256,32768,229376 -(1,391:6630773,6254097:0,32768,229376 -(1,391:6630773,6254097:5505024,32768,229376 -r1,391:12135797,6254097:5505024,262144,229376 -) -k1,391:6630773,6254097:-5505024 -) -(1,391:6630773,6254097:25952256,32768,0 -r1,391:32583029,6254097:25952256,32768,0 -) -) -(1,391:6630773,7858425:25952256,606339,161218 -(1,391:6630773,7858425:1974731,582746,0 -g1,391:6630773,7858425 -g1,391:8605504,7858425 -) -g1,391:11784262,7858425 -g1,391:13493965,7858425 -g1,391:17548809,7858425 -k1,391:32583029,7858425:11079253 -g1,391:32583029,7858425 -) -(1,394:6630773,9093129:25952256,513147,134348 -k1,393:10027307,9093129:198377 -k1,393:13398282,9093129:198377 -k1,393:15071875,9093129:198378 -k1,393:16937488,9093129:198377 -k1,393:18721836,9093129:198377 -k1,393:20111658,9093129:198377 -k1,393:24098016,9093129:198377 -k1,393:25487839,9093129:198378 -k1,393:28827357,9093129:198377 -k1,393:30017294,9093129:198377 -k1,394:32583029,9093129:0 -) -(1,394:6630773,9934617:25952256,505283,134348 -k1,393:8129833,9934617:151640 -k1,393:10104029,9934617:151640 -k1,393:12366584,9934617:151640 -k1,393:14076015,9934617:151640 -k1,393:15360117,9934617:151640 -k1,393:17135739,9934617:151640 -k1,393:18894323,9934617:151641 -k1,393:22255261,9934617:151640 -k1,393:23479070,9934617:151640 -k1,393:24246748,9934617:151640 -k1,393:27029659,9934617:151640 -k1,393:27832727,9934617:151640 -k1,393:30204727,9934617:151640 -k1,393:32583029,9934617:0 -) -(1,394:6630773,10776105:25952256,505283,134348 -k1,393:7526709,10776105:213051 -k1,393:10635142,10776105:213052 -k1,393:11980655,10776105:213051 -k1,393:13259978,10776105:213052 -k1,393:15270026,10776105:213051 -k1,393:16941909,10776105:213052 -k1,393:20387851,10776105:213051 -k1,393:21792348,10776105:213052 -k1,393:24957141,10776105:213051 -k1,393:28104895,10776105:213052 -k1,393:31394206,10776105:213051 -k1,394:32583029,10776105:0 -) -(1,394:6630773,11617593:25952256,513147,134348 -k1,393:9019460,11617593:191920 -k1,393:10686594,11617593:191919 -k1,393:11234374,11617593:191920 -k1,393:13209529,11617593:191920 -k1,393:15753535,11617593:191919 -k1,393:16879998,11617593:191920 -k1,393:17731210,11617593:191920 -k1,393:19878069,11617593:191920 -k1,393:21512435,11617593:191919 -k1,393:23996149,11617593:191920 -k1,393:27534337,11617593:191920 -k1,393:29219822,11617593:191919 -k1,393:30097904,11617593:191920 -k1,393:32583029,11617593:0 -) -(1,394:6630773,12459081:25952256,513147,134348 -k1,393:7383781,12459081:275251 -k1,393:8829505,12459081:275251 -k1,393:10096316,12459081:275251 -k1,393:11654762,12459081:275251 -k1,393:12581442,12459081:275252 -k1,393:15932953,12459081:275251 -k1,393:20734120,12459081:275251 -k1,393:25664393,12459081:275251 -k1,393:26958729,12459081:275251 -k1,393:29947826,12459081:275251 -k1,393:32583029,12459081:0 -) -(1,394:6630773,13300569:25952256,513147,134348 -g1,393:9906262,13300569 -g1,393:11296936,13300569 -g1,393:13787959,13300569 -g1,393:17159786,13300569 -g1,393:18695949,13300569 -g1,393:19642944,13300569 -k1,394:32583029,13300569:10789193 -g1,394:32583029,13300569 -) -(1,396:6630773,14142057:25952256,513147,95026 -h1,395:6630773,14142057:983040,0,0 -k1,395:9135995,14142057:250784 -k1,395:10491062,14142057:250785 -k1,395:12422189,14142057:250784 -k1,395:13332265,14142057:250784 -k1,395:16340805,14142057:250785 -k1,395:18602234,14142057:250784 -k1,395:20044463,14142057:250784 -k1,395:23136889,14142057:250785 -k1,395:25605411,14142057:250784 -k1,395:27894365,14142057:250784 -k1,395:30031276,14142057:250785 -k1,395:30637920,14142057:250784 -k1,395:32583029,14142057:0 -) -(1,396:6630773,14983545:25952256,513147,126483 -k1,395:7546414,14983545:229479 -k1,395:9745250,14983545:229479 -k1,395:11166174,14983545:229479 -k1,395:12054945,14983545:229479 -k1,395:15361340,14983545:229480 -k1,395:16782264,14983545:229479 -k1,395:20037540,14983545:229479 -k1,395:20953181,14983545:229479 -k1,395:23079927,14983545:229479 -k1,395:23796964,14983545:229449 -k1,395:26951970,14983545:229479 -k1,395:30514610,14983545:229479 -k1,395:31426974,14983545:229479 -k1,396:32583029,14983545:0 -) -(1,396:6630773,15825033:25952256,513147,134348 -k1,395:9316617,15825033:268876 -k1,395:10116991,15825033:268877 -k1,395:11404952,15825033:268876 -k1,395:14978809,15825033:268876 -k1,395:15906978,15825033:268877 -k1,395:16531714,15825033:268876 -k1,395:19092385,15825033:268877 -k1,395:22203557,15825033:268876 -k1,395:25438592,15825033:268876 -k1,395:26363484,15825033:268877 -k1,395:31698293,15825033:268876 -k1,396:32583029,15825033:0 -) -(1,396:6630773,16666521:25952256,505283,126483 -k1,395:9709562,16666521:260741 -k1,395:11166990,16666521:260741 -k1,395:13552408,16666521:260741 -k1,395:16999509,16666521:260741 -(1,395:16999509,16666521:0,435480,115847 -r1,395:18764623,16666521:1765114,551327,115847 -k1,395:16999509,16666521:-1765114 -) -(1,395:16999509,16666521:1765114,435480,115847 -g1,395:17706210,16666521 -g1,395:18409634,16666521 -h1,395:18761346,16666521:0,411205,112570 -) -k1,395:19025364,16666521:260741 -k1,395:20387111,16666521:260742 -k1,395:22302636,16666521:260741 -k1,395:26664620,16666521:260741 -(1,395:26664620,16666521:0,414482,115847 -r1,395:27022886,16666521:358266,530329,115847 -k1,395:26664620,16666521:-358266 -) -(1,395:26664620,16666521:358266,414482,115847 -k1,395:26664620,16666521:3277 -h1,395:27019609,16666521:0,411205,112570 -) -k1,395:27457297,16666521:260741 -k1,395:28073898,16666521:260741 -k1,395:31019649,16666521:260741 -(1,395:31019649,16666521:0,414482,115847 -r1,395:31377915,16666521:358266,530329,115847 -k1,395:31019649,16666521:-358266 -) -(1,395:31019649,16666521:358266,414482,115847 -k1,395:31019649,16666521:3277 -h1,395:31374638,16666521:0,411205,112570 -) -k1,395:31812326,16666521:260741 -k1,395:32583029,16666521:0 -) -(1,396:6630773,17508009:25952256,513147,126483 -k1,395:9551639,17508009:174252 -k1,395:10917335,17508009:174251 -(1,395:10917335,17508009:0,435480,115847 -r1,395:11275601,17508009:358266,551327,115847 -k1,395:10917335,17508009:-358266 -) -(1,395:10917335,17508009:358266,435480,115847 -k1,395:10917335,17508009:3277 -h1,395:11272324,17508009:0,411205,112570 -) -k1,395:11449853,17508009:174252 -k1,395:11979964,17508009:174251 -k1,395:15085641,17508009:174252 -k1,395:16456579,17508009:174251 -k1,395:19817191,17508009:174252 -(1,395:19817191,17508009:0,452978,115847 -r1,395:22285728,17508009:2468537,568825,115847 -k1,395:19817191,17508009:-2468537 -) -(1,395:19817191,17508009:2468537,452978,115847 -k1,395:19817191,17508009:3277 -h1,395:22282451,17508009:0,411205,112570 -) -k1,395:22459980,17508009:174252 -k1,395:23735236,17508009:174251 -k1,395:25081927,17508009:174252 -k1,395:29357421,17508009:174251 -k1,395:29887533,17508009:174252 -k1,396:32583029,17508009:0 -) -(1,396:6630773,18349497:25952256,662897,126483 -(1,395:6630773,18349497:0,452978,115847 -r1,395:8747598,18349497:2116825,568825,115847 -k1,395:6630773,18349497:-2116825 -) -(1,395:6630773,18349497:2116825,452978,115847 -k1,395:6630773,18349497:3277 -h1,395:8744321,18349497:0,411205,112570 -) -k1,395:9010692,18349497:263094 -k1,395:10465231,18349497:263094 -k1,395:11084185,18349497:263094 -k1,395:14528396,18349497:263093 -k1,395:17549245,18349497:263094 -(1,395:17549245,18349497:0,424981,115847 -r1,395:17907511,18349497:358266,540828,115847 -k1,395:17549245,18349497:-358266 -) -(1,395:17549245,18349497:358266,424981,115847 -k1,395:17549245,18349497:3277 -h1,395:17904234,18349497:0,411205,112570 -) -k1,395:18344275,18349497:263094 -k1,395:19560918,18349497:263094 -k1,395:20871277,18349497:263094 -k1,395:22418877,18349497:263094 -k1,395:23633554,18349497:263094 -k1,395:26684549,18349497:263093 -$1,395:26684549,18349497 -(1,395:26684549,18349497:994181,662897,96010 -[1,395:26684549,17739028:595722,26214,706479 -] -[1,395:27280271,18349497:398459,662897,0 -(1,395:27280271,18349497:398459,481690,0 -) -] -) -$1,395:27678730,18349497 -k1,395:27941824,18349497:263094 -k1,395:29073270,18349497:263094 -k1,395:30466204,18349497:263094 -(1,395:30466204,18349497:0,452978,115847 -r1,395:32583029,18349497:2116825,568825,115847 -k1,395:30466204,18349497:-2116825 -) -(1,395:30466204,18349497:2116825,452978,115847 -k1,395:30466204,18349497:3277 -h1,395:32579752,18349497:0,411205,112570 -) -k1,395:32583029,18349497:0 -) -(1,396:6630773,19190985:25952256,505283,134348 -g1,395:8223953,19190985 -(1,395:8223953,19190985:0,424981,115847 -r1,395:8582219,19190985:358266,540828,115847 -k1,395:8223953,19190985:-358266 -) -(1,395:8223953,19190985:358266,424981,115847 -k1,395:8223953,19190985:3277 -h1,395:8578942,19190985:0,411205,112570 -) -g1,395:8781448,19190985 -g1,395:9666839,19190985 -g1,395:10654466,19190985 -k1,396:32583030,19190985:18336536 -g1,396:32583030,19190985 -) -(1,398:6630773,20032473:25952256,505283,126483 -h1,397:6630773,20032473:983040,0,0 -k1,397:8485387,20032473:243739 -k1,397:10182716,20032473:243740 -k1,397:13174380,20032473:243739 -k1,397:14588592,20032473:243739 -k1,397:15964793,20032473:243739 -k1,397:17820063,20032473:243740 -k1,397:19394183,20032473:243739 -k1,397:20289350,20032473:243739 -k1,397:22147896,20032473:243739 -k1,397:25805406,20032473:243740 -k1,397:29739477,20032473:243739 -k1,397:31002301,20032473:243739 -k1,398:32583029,20032473:0 -) -(1,398:6630773,20873961:25952256,513147,134348 -k1,397:8791757,20873961:223740 -k1,397:9674789,20873961:223740 -k1,397:15245610,20873961:223739 -k1,397:19248156,20873961:223740 -k1,397:20663341,20873961:223740 -k1,397:23222129,20873961:223740 -k1,397:24464954,20873961:223740 -k1,397:27993674,20873961:223739 -k1,397:28876706,20873961:223740 -k1,397:31329325,20873961:223740 -k1,397:32583029,20873961:0 -) -(1,398:6630773,21715449:25952256,513147,126483 -k1,397:7943623,21715449:180388 -k1,397:9409826,21715449:180387 -k1,397:11201744,21715449:180388 -k1,397:12712513,21715449:180388 -k1,397:13544329,21715449:180388 -k1,397:15685553,21715449:180387 -k1,397:17149136,21715449:180388 -k1,397:19226791,21715449:180388 -k1,397:23382593,21715449:180388 -k1,397:26588777,21715449:180387 -k1,397:27960610,21715449:180388 -k1,397:31391584,21715449:180388 -k1,397:32583029,21715449:0 -) -(1,398:6630773,22556937:25952256,513147,102891 -g1,397:8113197,22556937 -g1,397:10455453,22556937 -g1,397:14630096,22556937 -k1,398:32583029,22556937:15546451 -g1,398:32583029,22556937 -) -(1,399:6630773,25364505:25952256,32768,229376 -(1,399:6630773,25364505:0,32768,229376 -(1,399:6630773,25364505:5505024,32768,229376 -r1,399:12135797,25364505:5505024,262144,229376 -) -k1,399:6630773,25364505:-5505024 -) -(1,399:6630773,25364505:25952256,32768,0 -r1,399:32583029,25364505:25952256,32768,0 -) -) -(1,399:6630773,26968833:25952256,606339,14155 -(1,399:6630773,26968833:1974731,582746,14155 -g1,399:6630773,26968833 -g1,399:8605504,26968833 -) -g1,399:12231742,26968833 -g1,399:15055033,26968833 -g1,399:16764736,26968833 -k1,399:32583029,26968833:11752439 -g1,399:32583029,26968833 -) -(1,402:6630773,28203537:25952256,505283,134348 -k1,401:8650597,28203537:236589 -k1,401:11473891,28203537:236588 -k1,401:12326518,28203537:236589 -k1,401:12977912,28203537:236551 -k1,401:14608451,28203537:236588 -k1,401:18121185,28203537:236589 -k1,401:22301730,28203537:236588 -k1,401:23557404,28203537:236589 -k1,401:26072679,28203537:236588 -k1,401:30632678,28203537:236589 -k1,402:32583029,28203537:0 -) -(1,402:6630773,29045025:25952256,505283,126483 -k1,401:8685377,29045025:190760 -k1,401:10462108,29045025:190760 -k1,401:11644428,29045025:190760 -k1,401:15101502,29045025:190760 -k1,401:16364431,29045025:190760 -k1,401:20409363,29045025:190760 -k1,401:21704406,29045025:190761 -k1,401:22642932,29045025:190760 -k1,401:24346918,29045025:190760 -k1,401:25189106,29045025:190760 -k1,401:26833455,29045025:190760 -k1,401:28227456,29045025:190760 -k1,401:30331212,29045025:190760 -k1,402:32583029,29045025:0 -) -(1,402:6630773,29886513:25952256,505283,126483 -k1,401:8560574,29886513:159674 -k1,401:9824529,29886513:159673 -k1,401:10731969,29886513:159674 -k1,401:13182782,29886513:159674 -k1,401:14414625,29886513:159674 -k1,401:15190336,29886513:159673 -k1,401:17981281,29886513:159674 -k1,401:18792383,29886513:159674 -k1,401:19971141,29886513:159673 -k1,401:21851790,29886513:159674 -k1,401:24549018,29886513:159674 -k1,401:25324730,29886513:159674 -k1,401:29750797,29886513:159673 -k1,401:30929556,29886513:159674 -k1,401:32583029,29886513:0 -) -(1,402:6630773,30728001:25952256,505283,134348 -g1,401:10538029,30728001 -g1,401:13048713,30728001 -g1,401:13779439,30728001 -g1,401:15491894,30728001 -g1,401:16303885,30728001 -g1,401:17269230,30728001 -g1,401:19808094,30728001 -k1,402:32583029,30728001:10808855 -g1,402:32583029,30728001 -) -v1,404:6630773,31878222:0,393216,0 -(1,405:6630773,39161208:25952256,7676202,616038 -g1,405:6630773,39161208 -(1,405:6630773,39161208:25952256,7676202,616038 -(1,405:6630773,39777246:25952256,8292240,0 -[1,405:6630773,39777246:25952256,8292240,0 -(1,405:6630773,39751032:25952256,8239812,0 -r1,405:6656987,39751032:26214,8239812,0 -[1,405:6656987,39751032:25899828,8239812,0 -(1,405:6656987,39161208:25899828,7060164,0 -[1,405:7246811,39161208:24720180,7060164,0 -(1,405:7246811,33262929:24720180,1161885,196608 -(1,404:7246811,33262929:0,1161885,196608 -r1,405:8794447,33262929:1547636,1358493,196608 -k1,404:7246811,33262929:-1547636 -) -(1,404:7246811,33262929:1547636,1161885,196608 -) -k1,404:9050488,33262929:256041 -k1,404:10771913,33262929:256040 -k1,404:11643992,33262929:256041 -k1,404:15992755,33262929:256040 -k1,404:17440241,33262929:256041 -k1,404:22048527,33262929:256040 -k1,404:25477166,33262929:256041 -k1,404:28452295,33262929:256040 -k1,404:31966991,33262929:0 -) -(1,405:7246811,34104417:24720180,513147,126483 -k1,404:8965165,34104417:157286 -k1,404:12366483,34104417:157286 -k1,404:14409240,34104417:157286 -k1,404:19482382,34104417:157286 -k1,404:20631228,34104417:157286 -k1,404:23849702,34104417:157287 -k1,404:25313121,34104417:157286 -k1,404:26661852,34104417:157286 -k1,404:28704609,34104417:157286 -k1,404:30489154,34104417:157286 -k1,405:31966991,34104417:0 -) -(1,405:7246811,34945905:24720180,505283,126483 -k1,404:8988686,34945905:191293 -k1,404:9831407,34945905:191293 -k1,404:12916770,34945905:191293 -k1,404:16230854,34945905:191293 -k1,404:20069881,34945905:191293 -k1,404:20676010,34945905:191286 -k1,404:23838050,34945905:191293 -k1,404:26649472,34945905:191293 -k1,404:30611051,34945905:191293 -k1,405:31966991,34945905:0 -) -(1,405:7246811,35787393:24720180,513147,134348 -k1,404:9769685,35787393:303825 -k1,404:13150425,35787393:303825 -k1,404:16571142,35787393:303825 -k1,404:17526395,35787393:303825 -k1,404:18849304,35787393:303824 -k1,404:20739100,35787393:303825 -k1,404:21702217,35787393:303825 -k1,404:26272436,35787393:303825 -k1,404:27204096,35787393:303825 -k1,404:28527006,35787393:303825 -k1,404:31966991,35787393:0 -) -(1,405:7246811,36628881:24720180,505283,126483 -k1,404:7852247,36628881:206977 -k1,404:8627421,36628881:206977 -k1,404:9232857,36628881:206977 -k1,404:10008032,36628881:206978 -$1,404:10406491,36628881 -k1,404:10863280,36628881:283119 -k1,404:12165484,36628881:283119 -k1,404:14978294,36628881:283120 -$1,404:14978294,36628881 -k1,404:15583730,36628881:206977 -k1,404:16358904,36628881:206977 -$1,404:16757363,36628881 -k1,404:17040483,36628881:283120 -k1,404:18424607,36628881:283119 -k1,404:22308930,36628881:283120 -k1,404:23979446,36628881:283119 -k1,404:25281651,36628881:283120 -k1,404:28404445,36628881:283119 -k1,404:29879010,36628881:283120 -k1,404:30693626,36628881:283119 -k1,405:31966991,36628881:0 -) -(1,405:7246811,37470369:24720180,513147,134348 -k1,404:9450841,37470369:203216 -k1,404:11133861,37470369:203217 -k1,404:13862835,37470369:203216 -k1,404:14752213,37470369:203216 -k1,404:15974514,37470369:203216 -k1,404:18020603,37470369:203217 -k1,404:18883111,37470369:203216 -k1,404:20105412,37470369:203216 -k1,404:22191477,37470369:203216 -k1,404:26008349,37470369:203217 -k1,404:26783694,37470369:203216 -k1,404:27614745,37470369:203216 -k1,404:31966991,37470369:0 -) -(1,405:7246811,38311857:24720180,505283,134348 -k1,404:10801186,38311857:208107 -k1,404:13211302,38311857:208106 -k1,404:15005380,38311857:208107 -k1,404:16977060,38311857:208106 -k1,404:17836595,38311857:208107 -k1,404:18810817,38311857:208106 -k1,404:22269510,38311857:208107 -k1,404:23944312,38311857:208106 -k1,404:25896332,38311857:208107 -k1,404:28100009,38311857:208106 -k1,404:28994278,38311857:208107 -k1,404:31966991,38311857:0 -) -(1,405:7246811,39153345:24720180,505283,7863 -g1,404:11503374,39153345 -k1,405:31966991,39153345:18279302 -g1,405:31966991,39153345 -) -] -) -] -r1,405:32583029,39751032:26214,8239812,0 -) -] -) -) -g1,405:32583029,39161208 -) -h1,405:6630773,39777246:0,0,0 -(1,408:6630773,40927467:25952256,513147,134348 -h1,407:6630773,40927467:983040,0,0 -k1,407:8295136,40927467:211430 -k1,407:9038063,40927467:211430 -k1,407:12458792,40927467:211431 -k1,407:13321650,40927467:211430 -k1,407:15041063,40927467:211430 -k1,407:15868531,40927467:211430 -k1,407:17736711,40927467:211430 -k1,407:19232647,40927467:211430 -k1,407:20060116,40927467:211431 -k1,407:20686376,40927467:211417 -k1,407:25269714,40927467:211431 -k1,407:28506941,40927467:211430 -k1,407:31540351,40927467:211430 -k1,408:32583029,40927467:0 -) -(1,408:6630773,41768955:25952256,505283,134348 -g1,407:8620446,41768955 -g1,407:10830320,41768955 -g1,407:15061324,41768955 -g1,407:17288237,41768955 -g1,407:18173628,41768955 -g1,407:20110872,41768955 -g1,407:23507603,41768955 -g1,407:24322870,41768955 -k1,408:32583029,41768955:5719328 -g1,408:32583029,41768955 -) -(1,410:6630773,42610443:25952256,513147,126483 -h1,409:6630773,42610443:983040,0,0 -g1,409:9009729,42610443 -g1,409:12513939,42610443 -g1,409:13372460,42610443 -g1,409:14590774,42610443 -g1,409:16437578,42610443 -g1,409:20076792,42610443 -g1,409:20076792,42610443 -g1,409:20276021,42610443 -g1,409:20276021,42610443 -k1,410:32583029,42610443:12307008 -g1,410:32583029,42610443 -) -(1,412:18563541,44262396:2086720,1074017,479774 -(1,412:18563541,44262396:2086720,1074017,479774 -(1,412:18563541,44262396:2086720,1074017,479774 -h1,412:18563541,44262396:78643,0,0 -[1,412:18642184,44262396:1929434,1074017,479774 -(1,412:18642184,43803595:1929434,615216,11796 -g1,412:19186291,43803595 -g1,412:19900136,43803595 -(1,412:20259929,43528314:311689,339935,0 -) -) -(1,412:18642184,44734306:1929434,473825,7864 -k1,412:18789444,44734306:147260 -(1,412:18789444,44734306:946340,473825,7864 -k1,411:18789444,44734306:0 -h1,412:18789444,44734306:0,0,0 -) -g1,412:19845020,44734306 -k1,412:20571618,44734306:147260 -) -] -h1,412:20571618,44262396:78643,0,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,422:37855564,49800853:1179648,16384,0 +) +) +k1,422:3078556,49800853:-34777008 +) +] +g1,422:6630773,4812305 +k1,422:19515153,4812305:12087462 +g1,422:20901894,4812305 +g1,422:21550700,4812305 +g1,422:24864855,4812305 +g1,422:27600327,4812305 +g1,422:29010006,4812305 +) +) +] +[1,422:6630773,45706769:25952256,40108032,0 +(1,422:6630773,45706769:25952256,40108032,0 +(1,422:6630773,45706769:0,0,0 +g1,422:6630773,45706769 +) +[1,422:6630773,45706769:25952256,40108032,0 +(1,397:6630773,6254097:25952256,32768,229376 +(1,397:6630773,6254097:0,32768,229376 +(1,397:6630773,6254097:5505024,32768,229376 +r1,397:12135797,6254097:5505024,262144,229376 +) +k1,397:6630773,6254097:-5505024 +) +(1,397:6630773,6254097:25952256,32768,0 +r1,397:32583029,6254097:25952256,32768,0 +) +) +(1,397:6630773,7858425:25952256,606339,161218 +(1,397:6630773,7858425:1974731,582746,0 +g1,397:6630773,7858425 +g1,397:8605504,7858425 +) +g1,397:11784262,7858425 +g1,397:13493965,7858425 +g1,397:17548809,7858425 +k1,397:32583029,7858425:11079253 +g1,397:32583029,7858425 +) +(1,400:6630773,9093129:25952256,513147,134348 +k1,399:9991590,9093129:162660 +k1,399:13326848,9093129:162660 +k1,399:14964723,9093129:162660 +k1,399:16794619,9093129:162660 +k1,399:18543250,9093129:162660 +k1,399:19897356,9093129:162661 +k1,399:23847997,9093129:162660 +k1,399:25202102,9093129:162660 +k1,399:28505903,9093129:162660 +k1,399:29660123,9093129:162660 +k1,400:32583029,9093129:0 +) +(1,400:6630773,9934617:25952256,505283,134348 +k1,399:7800137,9934617:179115 +k1,399:9801808,9934617:179115 +k1,399:12091837,9934617:179114 +k1,399:13828743,9934617:179115 +k1,399:15140320,9934617:179115 +k1,399:16943417,9934617:179115 +k1,399:18729474,9934617:179114 +k1,399:22117887,9934617:179115 +k1,399:23369171,9934617:179115 +k1,399:24164324,9934617:179115 +k1,399:26974709,9934617:179114 +k1,399:27805252,9934617:179115 +k1,399:30204727,9934617:179115 +k1,399:32583029,9934617:0 +) +(1,400:6630773,10776105:25952256,505283,134348 +k1,399:7526709,10776105:213051 +k1,399:10635142,10776105:213052 +k1,399:11980655,10776105:213051 +k1,399:13259978,10776105:213052 +k1,399:15270026,10776105:213051 +k1,399:16941909,10776105:213052 +k1,399:20387851,10776105:213051 +k1,399:21792348,10776105:213052 +k1,399:24957141,10776105:213051 +k1,399:28104895,10776105:213052 +k1,399:31394206,10776105:213051 +k1,400:32583029,10776105:0 +) +(1,400:6630773,11617593:25952256,513147,134348 +k1,399:9019460,11617593:191920 +k1,399:10686594,11617593:191919 +k1,399:11234374,11617593:191920 +k1,399:13209529,11617593:191920 +k1,399:15753535,11617593:191919 +k1,399:16879998,11617593:191920 +k1,399:17731210,11617593:191920 +k1,399:19878069,11617593:191920 +k1,399:21512435,11617593:191919 +k1,399:23996149,11617593:191920 +k1,399:27534337,11617593:191920 +k1,399:29219822,11617593:191919 +k1,399:30097904,11617593:191920 +k1,399:32583029,11617593:0 +) +(1,400:6630773,12459081:25952256,513147,134348 +k1,399:7383781,12459081:275251 +k1,399:8829505,12459081:275251 +k1,399:10096316,12459081:275251 +k1,399:11654762,12459081:275251 +k1,399:12581442,12459081:275252 +k1,399:15932953,12459081:275251 +k1,399:20734120,12459081:275251 +k1,399:25664393,12459081:275251 +k1,399:26958729,12459081:275251 +k1,399:29947826,12459081:275251 +k1,399:32583029,12459081:0 +) +(1,400:6630773,13300569:25952256,513147,134348 +g1,399:9906262,13300569 +g1,399:11296936,13300569 +g1,399:13787959,13300569 +g1,399:17159786,13300569 +g1,399:18695949,13300569 +g1,399:19642944,13300569 +k1,400:32583029,13300569:10789193 +g1,400:32583029,13300569 +) +(1,402:6630773,14142057:25952256,513147,95026 +h1,401:6630773,14142057:983040,0,0 +k1,401:9135995,14142057:250784 +k1,401:10491062,14142057:250785 +k1,401:12422189,14142057:250784 +k1,401:13332265,14142057:250784 +k1,401:16340805,14142057:250785 +k1,401:18602234,14142057:250784 +k1,401:20044463,14142057:250784 +k1,401:23136889,14142057:250785 +k1,401:25605411,14142057:250784 +k1,401:27894365,14142057:250784 +k1,401:30031276,14142057:250785 +k1,401:30637920,14142057:250784 +k1,401:32583029,14142057:0 +) +(1,402:6630773,14983545:25952256,513147,126483 +k1,401:7499933,14983545:182998 +k1,401:9652288,14983545:182998 +k1,401:11026731,14983545:182998 +k1,401:11869020,14983545:182997 +k1,401:15128933,14983545:182998 +k1,401:16503376,14983545:182998 +k1,401:19712171,14983545:182998 +k1,401:20581331,14983545:182998 +k1,401:22661596,14983545:182998 +k1,401:23332165,14983545:182981 +k1,401:26440690,14983545:182998 +k1,401:29956849,14983545:182998 +k1,401:30822732,14983545:182998 +k1,402:32583029,14983545:0 +) +(1,402:6630773,15825033:25952256,513147,134348 +k1,401:8686161,15825033:242662 +k1,401:9460320,15825033:242662 +k1,401:10722067,15825033:242662 +k1,401:14269710,15825033:242662 +k1,401:15171664,15825033:242662 +k1,401:15770186,15825033:242662 +k1,401:18304642,15825033:242662 +k1,401:21389600,15825033:242662 +k1,401:24598421,15825033:242662 +k1,401:25497098,15825033:242662 +k1,401:30805693,15825033:242662 +k1,402:32583029,15825033:0 +) +(1,402:6630773,16666521:25952256,505283,126483 +k1,401:8786470,16666521:230249 +k1,401:10213405,16666521:230248 +k1,401:12568331,16666521:230249 +k1,401:15984940,16666521:230249 +(1,401:15984940,16666521:0,435480,115847 +r1,401:17750054,16666521:1765114,551327,115847 +k1,401:15984940,16666521:-1765114 +) +(1,401:15984940,16666521:1765114,435480,115847 +g1,401:16691641,16666521 +g1,401:17395065,16666521 +h1,401:17746777,16666521:0,411205,112570 +) +k1,401:17980302,16666521:230248 +k1,401:19311556,16666521:230249 +k1,401:21196589,16666521:230249 +k1,401:25528081,16666521:230249 +(1,401:25528081,16666521:0,414482,115847 +r1,401:25886347,16666521:358266,530329,115847 +k1,401:25528081,16666521:-358266 +) +(1,401:25528081,16666521:358266,414482,115847 +k1,401:25528081,16666521:3277 +h1,401:25883070,16666521:0,411205,112570 +) +k1,401:26290265,16666521:230248 +k1,401:26876374,16666521:230249 +k1,401:29791633,16666521:230249 +(1,401:29791633,16666521:0,414482,115847 +r1,401:30149899,16666521:358266,530329,115847 +k1,401:29791633,16666521:-358266 +) +(1,401:29791633,16666521:358266,414482,115847 +k1,401:29791633,16666521:3277 +h1,401:30146622,16666521:0,411205,112570 +) +k1,401:30553817,16666521:230248 +k1,401:31554769,16666521:230249 +k1,402:32583029,16666521:0 +) +(1,402:6630773,17508009:25952256,513147,126483 +k1,401:8804310,17508009:242191 +k1,401:10237945,17508009:242190 +(1,401:10237945,17508009:0,435480,115847 +r1,401:10596211,17508009:358266,551327,115847 +k1,401:10237945,17508009:-358266 +) +(1,401:10237945,17508009:358266,435480,115847 +k1,401:10237945,17508009:3277 +h1,401:10592934,17508009:0,411205,112570 +) +k1,401:10838402,17508009:242191 +k1,401:11436452,17508009:242190 +k1,401:14610068,17508009:242191 +k1,401:16048946,17508009:242191 +k1,401:19477496,17508009:242190 +(1,401:19477496,17508009:0,452978,115847 +r1,401:21946033,17508009:2468537,568825,115847 +k1,401:19477496,17508009:-2468537 +) +(1,401:19477496,17508009:2468537,452978,115847 +k1,401:19477496,17508009:3277 +h1,401:21942756,17508009:0,411205,112570 +) +k1,401:22188224,17508009:242191 +k1,401:23531419,17508009:242190 +k1,401:24946049,17508009:242191 +k1,401:29289482,17508009:242190 +k1,401:29887533,17508009:242191 +k1,402:32583029,17508009:0 +) +(1,402:6630773,18349497:25952256,662897,126483 +(1,401:6630773,18349497:0,452978,115847 +r1,401:8747598,18349497:2116825,568825,115847 +k1,401:6630773,18349497:-2116825 +) +(1,401:6630773,18349497:2116825,452978,115847 +k1,401:6630773,18349497:3277 +h1,401:8744321,18349497:0,411205,112570 +) +k1,401:9010692,18349497:263094 +k1,401:10465231,18349497:263094 +k1,401:11084185,18349497:263094 +k1,401:14528396,18349497:263093 +k1,401:17549245,18349497:263094 +(1,401:17549245,18349497:0,424981,115847 +r1,401:17907511,18349497:358266,540828,115847 +k1,401:17549245,18349497:-358266 +) +(1,401:17549245,18349497:358266,424981,115847 +k1,401:17549245,18349497:3277 +h1,401:17904234,18349497:0,411205,112570 +) +k1,401:18344275,18349497:263094 +k1,401:19560918,18349497:263094 +k1,401:20871277,18349497:263094 +k1,401:22418877,18349497:263094 +k1,401:23633554,18349497:263094 +k1,401:26684549,18349497:263093 +$1,401:26684549,18349497 +(1,401:26684549,18349497:994181,662897,96010 +[1,401:26684549,17739028:595722,26214,706479 +] +[1,401:27280271,18349497:398459,662897,0 +(1,401:27280271,18349497:398459,481690,0 +) +] +) +$1,401:27678730,18349497 +k1,401:27941824,18349497:263094 +k1,401:29073270,18349497:263094 +k1,401:30466204,18349497:263094 +(1,401:30466204,18349497:0,452978,115847 +r1,401:32583029,18349497:2116825,568825,115847 +k1,401:30466204,18349497:-2116825 +) +(1,401:30466204,18349497:2116825,452978,115847 +k1,401:30466204,18349497:3277 +h1,401:32579752,18349497:0,411205,112570 +) +k1,401:32583029,18349497:0 +) +(1,402:6630773,19190985:25952256,505283,134348 +g1,401:8223953,19190985 +(1,401:8223953,19190985:0,424981,115847 +r1,401:8582219,19190985:358266,540828,115847 +k1,401:8223953,19190985:-358266 +) +(1,401:8223953,19190985:358266,424981,115847 +k1,401:8223953,19190985:3277 +h1,401:8578942,19190985:0,411205,112570 +) +g1,401:8781448,19190985 +g1,401:9666839,19190985 +g1,401:10654466,19190985 +k1,402:32583030,19190985:18336536 +g1,402:32583030,19190985 +) +(1,404:6630773,20032473:25952256,505283,126483 +h1,403:6630773,20032473:983040,0,0 +k1,403:8425968,20032473:184320 +k1,403:10063877,20032473:184320 +k1,403:12996122,20032473:184320 +k1,403:14350915,20032473:184320 +k1,403:15667697,20032473:184320 +k1,403:17463546,20032473:184319 +k1,403:18978247,20032473:184320 +k1,403:19813995,20032473:184320 +k1,403:21613122,20032473:184320 +k1,403:25211212,20032473:184320 +k1,403:29085864,20032473:184320 +k1,403:30289269,20032473:184320 +k1,404:32583029,20032473:0 +) +(1,404:6630773,20873961:25952256,513147,134348 +k1,403:8020256,20873961:165270 +k1,403:8844817,20873961:165269 +k1,403:14357169,20873961:165270 +k1,403:18301245,20873961:165270 +k1,403:19657960,20873961:165270 +k1,403:22158277,20873961:165269 +k1,403:23342632,20873961:165270 +k1,403:26812883,20873961:165270 +k1,403:27637445,20873961:165270 +k1,403:30031593,20873961:165269 +k1,403:31450567,20873961:165270 +k1,403:32583029,20873961:0 +) +(1,404:6630773,21715449:25952256,513147,126483 +k1,403:8084416,21715449:167827 +k1,403:9863772,21715449:167826 +k1,403:11361980,21715449:167827 +k1,403:12181235,21715449:167827 +k1,403:14309898,21715449:167826 +k1,403:15760920,21715449:167827 +k1,403:17826014,21715449:167827 +k1,403:21969254,21715449:167826 +k1,403:25162878,21715449:167827 +k1,403:26522150,21715449:167827 +k1,403:29940562,21715449:167826 +k1,403:31299834,21715449:167827 +k1,403:32583029,21715449:0 +) +(1,404:6630773,22556937:25952256,513147,102891 +g1,403:8973029,22556937 +g1,403:13147672,22556937 +k1,404:32583030,22556937:17028876 +g1,404:32583030,22556937 +) +(1,405:6630773,25364505:25952256,32768,229376 +(1,405:6630773,25364505:0,32768,229376 +(1,405:6630773,25364505:5505024,32768,229376 +r1,405:12135797,25364505:5505024,262144,229376 +) +k1,405:6630773,25364505:-5505024 +) +(1,405:6630773,25364505:25952256,32768,0 +r1,405:32583029,25364505:25952256,32768,0 +) +) +(1,405:6630773,26968833:25952256,606339,14155 +(1,405:6630773,26968833:1974731,582746,14155 +g1,405:6630773,26968833 +g1,405:8605504,26968833 +) +g1,405:12231742,26968833 +g1,405:15055033,26968833 +g1,405:16764736,26968833 +k1,405:32583029,26968833:11752439 +g1,405:32583029,26968833 +) +(1,408:6630773,28203537:25952256,505283,134348 +k1,407:8650597,28203537:236589 +k1,407:11473891,28203537:236588 +k1,407:12326518,28203537:236589 +k1,407:12977912,28203537:236551 +k1,407:14608451,28203537:236588 +k1,407:18121185,28203537:236589 +k1,407:22301730,28203537:236588 +k1,407:23557404,28203537:236589 +k1,407:26072679,28203537:236588 +k1,407:30632678,28203537:236589 +k1,408:32583029,28203537:0 +) +(1,408:6630773,29045025:25952256,505283,126483 +k1,407:8705139,29045025:210522 +k1,407:10501631,29045025:210521 +k1,407:11703713,29045025:210522 +k1,407:15180549,29045025:210522 +k1,407:16463239,29045025:210521 +k1,407:20527933,29045025:210522 +k1,407:21842737,29045025:210522 +k1,407:22801025,29045025:210522 +k1,407:24524772,29045025:210521 +k1,407:25386722,29045025:210522 +k1,407:27050833,29045025:210522 +k1,407:28464595,29045025:210521 +k1,407:30588113,29045025:210522 +k1,408:32583029,29045025:0 +) +(1,408:6630773,29886513:25952256,505283,126483 +k1,407:8937187,29886513:279385 +k1,407:10320854,29886513:279385 +k1,407:11348005,29886513:279385 +k1,407:13918528,29886513:279384 +k1,407:15270082,29886513:279385 +k1,407:16165505,29886513:279385 +k1,407:19076161,29886513:279385 +k1,407:20006974,29886513:279385 +k1,407:21305444,29886513:279385 +k1,407:23305804,29886513:279385 +k1,407:26122742,29886513:279384 +k1,407:27018165,29886513:279385 +k1,407:31563944,29886513:279385 +k1,407:32583029,29886513:0 +) +(1,408:6630773,30728001:25952256,505283,134348 +g1,407:8483475,30728001 +g1,407:12390731,30728001 +g1,407:14901415,30728001 +g1,407:15632141,30728001 +g1,407:17344596,30728001 +g1,407:18156587,30728001 +g1,407:19121932,30728001 +g1,407:21660796,30728001 +k1,408:32583029,30728001:8956153 +g1,408:32583029,30728001 +) +v1,410:6630773,31878222:0,393216,0 +(1,411:6630773,39161208:25952256,7676202,616038 +g1,411:6630773,39161208 +(1,411:6630773,39161208:25952256,7676202,616038 +(1,411:6630773,39777246:25952256,8292240,0 +[1,411:6630773,39777246:25952256,8292240,0 +(1,411:6630773,39751032:25952256,8239812,0 +r1,411:6656987,39751032:26214,8239812,0 +[1,411:6656987,39751032:25899828,8239812,0 +(1,411:6656987,39161208:25899828,7060164,0 +[1,411:7246811,39161208:24720180,7060164,0 +(1,411:7246811,33262929:24720180,1161885,196608 +(1,410:7246811,33262929:0,1161885,196608 +r1,411:8794447,33262929:1547636,1358493,196608 +k1,410:7246811,33262929:-1547636 +) +(1,410:7246811,33262929:1547636,1161885,196608 +) +k1,410:9050488,33262929:256041 +k1,410:10771913,33262929:256040 +k1,410:11643992,33262929:256041 +k1,410:15992755,33262929:256040 +k1,410:17440241,33262929:256041 +k1,410:22048527,33262929:256040 +k1,410:25477166,33262929:256041 +k1,410:28452295,33262929:256040 +k1,410:31966991,33262929:0 +) +(1,411:7246811,34104417:24720180,513147,126483 +k1,410:8965165,34104417:157286 +k1,410:12366483,34104417:157286 +k1,410:14409240,34104417:157286 +k1,410:19482382,34104417:157286 +k1,410:20631228,34104417:157286 +k1,410:23849702,34104417:157287 +k1,410:25313121,34104417:157286 +k1,410:26661852,34104417:157286 +k1,410:28704609,34104417:157286 +k1,410:30489154,34104417:157286 +k1,411:31966991,34104417:0 +) +(1,411:7246811,34945905:24720180,505283,126483 +k1,410:8988686,34945905:191293 +k1,410:9831407,34945905:191293 +k1,410:12916770,34945905:191293 +k1,410:16230854,34945905:191293 +k1,410:20069881,34945905:191293 +k1,410:20676010,34945905:191286 +k1,410:23838050,34945905:191293 +k1,410:26649472,34945905:191293 +k1,410:30611051,34945905:191293 +k1,411:31966991,34945905:0 +) +(1,411:7246811,35787393:24720180,513147,134348 +k1,410:9769685,35787393:303825 +k1,410:13150425,35787393:303825 +k1,410:16571142,35787393:303825 +k1,410:17526395,35787393:303825 +k1,410:18849304,35787393:303824 +k1,410:20739100,35787393:303825 +k1,410:21702217,35787393:303825 +k1,410:26272436,35787393:303825 +k1,410:27204096,35787393:303825 +k1,410:28527006,35787393:303825 +k1,410:31966991,35787393:0 +) +(1,411:7246811,36628881:24720180,505283,126483 +k1,410:7842501,36628881:197231 +k1,410:8607929,36628881:197231 +k1,410:9203618,36628881:197230 +k1,410:9969046,36628881:197231 +$1,410:10367505,36628881 +k1,410:10810963,36628881:269788 +k1,410:12099836,36628881:269788 +k1,410:14899313,36628881:269787 +$1,410:14899313,36628881 +k1,410:15495003,36628881:197231 +k1,410:16260431,36628881:197231 +$1,410:16658890,36628881 +k1,410:16928678,36628881:269788 +k1,410:18299471,36628881:269788 +k1,410:22170461,36628881:269787 +k1,410:23827646,36628881:269788 +k1,410:25116519,36628881:269788 +k1,410:28225982,36628881:269788 +k1,410:29687214,36628881:269787 +k1,410:30488499,36628881:269788 +k1,411:31966991,36628881:0 +) +(1,411:7246811,37470369:24720180,513147,134348 +k1,410:9262807,37470369:220310 +k1,410:10962921,37470369:220311 +k1,410:13708989,37470369:220310 +k1,410:14615461,37470369:220310 +k1,410:15854856,37470369:220310 +k1,410:17918039,37470369:220311 +k1,410:18797641,37470369:220310 +k1,410:20037036,37470369:220310 +k1,410:22140195,37470369:220310 +k1,410:25974161,37470369:220311 +k1,410:26766600,37470369:220310 +k1,410:27614745,37470369:220310 +k1,410:31966991,37470369:0 +) +(1,411:7246811,38311857:24720180,505283,134348 +k1,410:10801186,38311857:208107 +k1,410:13211302,38311857:208106 +k1,410:15005380,38311857:208107 +k1,410:16977060,38311857:208106 +k1,410:17836595,38311857:208107 +k1,410:18810817,38311857:208106 +k1,410:22269510,38311857:208107 +k1,410:23944312,38311857:208106 +k1,410:25896332,38311857:208107 +k1,410:28100009,38311857:208106 +k1,410:28994278,38311857:208107 +k1,410:31966991,38311857:0 +) +(1,411:7246811,39153345:24720180,505283,7863 +g1,410:11503374,39153345 +k1,411:31966991,39153345:18279302 +g1,411:31966991,39153345 +) +] +) +] +r1,411:32583029,39751032:26214,8239812,0 +) +] +) +) +g1,411:32583029,39161208 +) +h1,411:6630773,39777246:0,0,0 +(1,414:6630773,40927467:25952256,513147,134348 +h1,413:6630773,40927467:983040,0,0 +k1,413:8295136,40927467:211430 +k1,413:9038063,40927467:211430 +k1,413:12458792,40927467:211431 +k1,413:13321650,40927467:211430 +k1,413:15041063,40927467:211430 +k1,413:15868531,40927467:211430 +k1,413:17736711,40927467:211430 +k1,413:19232647,40927467:211430 +k1,413:20060116,40927467:211431 +k1,413:20686376,40927467:211417 +k1,413:25269714,40927467:211431 +k1,413:28506941,40927467:211430 +k1,413:31540351,40927467:211430 +k1,414:32583029,40927467:0 +) +(1,414:6630773,41768955:25952256,505283,134348 +g1,413:8620446,41768955 +g1,413:10830320,41768955 +g1,413:15061324,41768955 +g1,413:17288237,41768955 +g1,413:18173628,41768955 +g1,413:20110872,41768955 +g1,413:23507603,41768955 +g1,413:24322870,41768955 +k1,414:32583029,41768955:5719328 +g1,414:32583029,41768955 +) +(1,416:6630773,42610443:25952256,513147,126483 +h1,415:6630773,42610443:983040,0,0 +g1,415:9009729,42610443 +g1,415:12513939,42610443 +g1,415:13372460,42610443 +g1,415:14590774,42610443 +g1,415:16437578,42610443 +g1,415:20076792,42610443 +g1,415:20076792,42610443 +g1,415:20276021,42610443 +g1,415:20276021,42610443 +k1,416:32583029,42610443:12307008 +g1,416:32583029,42610443 +) +(1,418:18563541,44262396:2086720,1074017,479774 +(1,418:18563541,44262396:2086720,1074017,479774 +(1,418:18563541,44262396:2086720,1074017,479774 +h1,418:18563541,44262396:78643,0,0 +[1,418:18642184,44262396:1929434,1074017,479774 +(1,418:18642184,43803595:1929434,615216,11796 +g1,418:19186291,43803595 +g1,418:19900136,43803595 +(1,418:20259929,43528314:311689,339935,0 +) +) +(1,418:18642184,44734306:1929434,473825,7864 +k1,418:18789444,44734306:147260 +(1,418:18789444,44734306:946340,473825,7864 +k1,417:18789444,44734306:0 +h1,418:18789444,44734306:0,0,0 +) +g1,418:19845020,44734306 +k1,418:20571618,44734306:147260 +) +] +h1,418:20571618,44262396:78643,0,0 ) ) ) -(1,414:6630773,45706769:25952256,513147,102891 -g1,413:7535169,45706769 -g1,413:8350436,45706769 -g1,413:9138178,45706769 -g1,413:11623958,45706769 -g1,413:12509349,45706769 -k1,414:32583030,45706769:17584624 -g1,414:32583030,45706769 +(1,420:6630773,45706769:25952256,513147,102891 +g1,419:7535169,45706769 +g1,419:8350436,45706769 +g1,419:9138178,45706769 +g1,419:11623958,45706769 +g1,419:12509349,45706769 +k1,420:32583030,45706769:17584624 +g1,420:32583030,45706769 ) ] -(1,416:32583029,45706769:0,0,0 -g1,416:32583029,45706769 +(1,422:32583029,45706769:0,0,0 +g1,422:32583029,45706769 ) ) ] -(1,416:6630773,47279633:25952256,0,0 -h1,416:6630773,47279633:25952256,0,0 +(1,422:6630773,47279633:25952256,0,0 +h1,422:6630773,47279633:25952256,0,0 ) ] -h1,416:4262630,4025873:0,0,0 +h1,422:4262630,4025873:0,0,0 ] -!21675 +!21702 }29 -Input:143:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:144:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:145:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:146:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:147:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:148:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:149:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:150:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:151:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:152:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!861 +Input:139:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:140:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:141:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:142:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:143:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:144:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:145:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:146:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:147:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:148:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 {30 -[1,481:4262630,47279633:28320399,43253760,0 -(1,481:4262630,4025873:0,0,0 -[1,481:-473657,4025873:25952256,0,0 -(1,481:-473657,-710414:25952256,0,0 -h1,481:-473657,-710414:0,0,0 -(1,481:-473657,-710414:0,0,0 -(1,481:-473657,-710414:0,0,0 -g1,481:-473657,-710414 -(1,481:-473657,-710414:65781,0,65781 -g1,481:-407876,-710414 -[1,481:-407876,-644633:0,0,0 +[1,487:4262630,47279633:28320399,43253760,0 +(1,487:4262630,4025873:0,0,0 +[1,487:-473657,4025873:25952256,0,0 +(1,487:-473657,-710414:25952256,0,0 +h1,487:-473657,-710414:0,0,0 +(1,487:-473657,-710414:0,0,0 +(1,487:-473657,-710414:0,0,0 +g1,487:-473657,-710414 +(1,487:-473657,-710414:65781,0,65781 +g1,487:-407876,-710414 +[1,487:-407876,-644633:0,0,0 ] ) -k1,481:-473657,-710414:-65781 +k1,487:-473657,-710414:-65781 ) ) -k1,481:25478599,-710414:25952256 -g1,481:25478599,-710414 +k1,487:25478599,-710414:25952256 +g1,487:25478599,-710414 ) ] ) -[1,481:6630773,47279633:25952256,43253760,0 -[1,481:6630773,4812305:25952256,786432,0 -(1,481:6630773,4812305:25952256,505283,11795 -(1,481:6630773,4812305:25952256,505283,11795 -g1,481:3078558,4812305 -[1,481:3078558,4812305:0,0,0 -(1,481:3078558,2439708:0,1703936,0 -k1,481:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,481:2537886,2439708:1179648,16384,0 +[1,487:6630773,47279633:25952256,43253760,0 +[1,487:6630773,4812305:25952256,786432,0 +(1,487:6630773,4812305:25952256,505283,11795 +(1,487:6630773,4812305:25952256,505283,11795 +g1,487:3078558,4812305 +[1,487:3078558,4812305:0,0,0 +(1,487:3078558,2439708:0,1703936,0 +k1,487:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,487:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,481:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,487:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,481:3078558,4812305:0,0,0 -(1,481:3078558,2439708:0,1703936,0 -g1,481:29030814,2439708 -g1,481:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,481:36151628,1915420:16384,1179648,0 +[1,487:3078558,4812305:0,0,0 +(1,487:3078558,2439708:0,1703936,0 +g1,487:29030814,2439708 +g1,487:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,487:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,481:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,487:37855564,2439708:1179648,16384,0 ) ) -k1,481:3078556,2439708:-34777008 +k1,487:3078556,2439708:-34777008 ) ] -[1,481:3078558,4812305:0,0,0 -(1,481:3078558,49800853:0,16384,2228224 -k1,481:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,481:2537886,49800853:1179648,16384,0 +[1,487:3078558,4812305:0,0,0 +(1,487:3078558,49800853:0,16384,2228224 +k1,487:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,487:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,481:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,487:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,481:3078558,4812305:0,0,0 -(1,481:3078558,49800853:0,16384,2228224 -g1,481:29030814,49800853 -g1,481:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,481:36151628,51504789:16384,1179648,0 +[1,487:3078558,4812305:0,0,0 +(1,487:3078558,49800853:0,16384,2228224 +g1,487:29030814,49800853 +g1,487:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,487:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,481:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,487:37855564,49800853:1179648,16384,0 ) ) -k1,481:3078556,49800853:-34777008 +k1,487:3078556,49800853:-34777008 ) ] -g1,481:6630773,4812305 -g1,481:6630773,4812305 -g1,481:9516978,4812305 -g1,481:11710468,4812305 -g1,481:13120147,4812305 -g1,481:16560787,4812305 -k1,481:31786111,4812305:15225324 -) -) -] -[1,481:6630773,45706769:25952256,40108032,0 -(1,481:6630773,45706769:25952256,40108032,0 -(1,481:6630773,45706769:0,0,0 -g1,481:6630773,45706769 -) -[1,481:6630773,45706769:25952256,40108032,0 -v1,416:6630773,6254097:0,393216,0 -(1,423:6630773,7269450:25952256,1408569,196608 -g1,423:6630773,7269450 -g1,423:6630773,7269450 -g1,423:6434165,7269450 -(1,423:6434165,7269450:0,1408569,196608 -r1,423:32779637,7269450:26345472,1605177,196608 -k1,423:6434165,7269450:-26345472 -) -(1,423:6434165,7269450:26345472,1408569,196608 -[1,423:6630773,7269450:25952256,1211961,0 -(1,418:6630773,6461715:25952256,404226,101187 -(1,417:6630773,6461715:0,0,0 -g1,417:6630773,6461715 -g1,417:6630773,6461715 -g1,417:6303093,6461715 -(1,417:6303093,6461715:0,0,0 -) -g1,417:6630773,6461715 -) -g1,418:7579211,6461715 -g1,418:8211503,6461715 -g1,418:10740669,6461715 -g1,418:11372961,6461715 -k1,418:11372961,6461715:0 -h1,418:13585981,6461715:0,0,0 -k1,418:32583029,6461715:18997048 -g1,418:32583029,6461715 -) -(1,422:6630773,7193429:25952256,404226,76021 -(1,420:6630773,7193429:0,0,0 -g1,420:6630773,7193429 -g1,420:6630773,7193429 -g1,420:6303093,7193429 -(1,420:6303093,7193429:0,0,0 -) -g1,420:6630773,7193429 -) -g1,422:7579210,7193429 -g1,422:8843793,7193429 -h1,422:12637541,7193429:0,0,0 -k1,422:32583029,7193429:19945488 -g1,422:32583029,7193429 -) -] -) -g1,423:32583029,7269450 -g1,423:6630773,7269450 -g1,423:6630773,7269450 -g1,423:32583029,7269450 -g1,423:32583029,7269450 -) -h1,423:6630773,7466058:0,0,0 -(1,427:6630773,8802694:25952256,513147,126483 -h1,426:6630773,8802694:983040,0,0 -k1,426:8271945,8802694:188239 -k1,426:9564467,8802694:188240 -k1,426:10500472,8802694:188239 -k1,426:12128538,8802694:188240 -k1,426:14172101,8802694:188239 -k1,426:15644847,8802694:188240 -k1,426:20156496,8802694:188239 -k1,426:23432792,8802694:188240 -k1,426:24812476,8802694:188239 -k1,426:28026513,8802694:188240 -k1,426:29206312,8802694:188239 -k1,426:30716413,8802694:188240 -k1,426:31563944,8802694:188239 -k1,427:32583029,8802694:0 -) -(1,427:6630773,9644182:25952256,513147,134348 -k1,426:7268953,9644182:223337 -k1,426:10508280,9644182:223360 -k1,426:12003039,9644182:223361 -k1,426:13888393,9644182:223361 -k1,426:14763182,9644182:223361 -k1,426:18245647,9644182:223360 -k1,426:20167046,9644182:223361 -k1,426:23844810,9644182:223361 -k1,426:26754492,9644182:223361 -k1,426:29818182,9644182:223360 -k1,426:30727705,9644182:223361 -k1,426:32583029,9644182:0 -) -(1,427:6630773,10485670:25952256,513147,134348 -k1,426:8191091,10485670:292852 -k1,426:8898693,10485670:292759 -k1,426:10861402,10485670:292852 -k1,426:11685751,10485670:292852 -k1,426:13263110,10485670:292853 -k1,426:14172000,10485670:292852 -k1,426:17740997,10485670:292852 -k1,426:21804136,10485670:292853 -k1,426:23116073,10485670:292852 -k1,426:24453569,10485670:292852 -k1,426:25405713,10485670:292852 -k1,426:26717651,10485670:292853 -k1,426:29520532,10485670:292852 -k1,426:32583029,10485670:0 -) -(1,427:6630773,11327158:25952256,513147,134348 -k1,426:7238493,11327158:251860 -k1,426:10373282,11327158:251860 -k1,426:11909648,11327158:251860 -k1,426:13945397,11327158:251859 -k1,426:15216342,11327158:251860 -k1,426:17746889,11327158:251860 -k1,426:21599952,11327158:251860 -k1,426:22511104,11327158:251860 -k1,426:26341230,11327158:251860 -k1,426:27220925,11327158:251860 -k1,426:30277725,11327158:251859 -k1,426:31145623,11327158:251860 -k1,426:32168186,11327158:251860 -k1,427:32583029,11327158:0 -) -(1,427:6630773,12168646:25952256,505283,134348 -g1,426:10269987,12168646 -g1,426:11672457,12168646 -g1,426:14754615,12168646 -g1,426:16575860,12168646 -g1,426:17522855,12168646 -g1,426:20619431,12168646 -g1,426:23468281,12168646 -g1,426:25061461,12168646 -g1,426:28487683,12168646 -k1,427:32583029,12168646:67503 -g1,427:32583029,12168646 -) -(1,429:6630773,13010134:25952256,513147,126483 -h1,428:6630773,13010134:983040,0,0 -k1,428:8275373,13010134:183803 -k1,428:9629650,13010134:183804 -k1,428:10805013,13010134:183803 -k1,428:11604854,13010134:183803 -k1,428:13676095,13010134:183804 -k1,428:15682454,13010134:183803 -k1,428:17196638,13010134:183803 -k1,428:20981644,13010134:183803 -k1,428:22751419,13010134:183804 -k1,428:24705349,13010134:183803 -k1,428:26059625,13010134:183803 -k1,428:27347711,13010134:183804 -k1,428:28728857,13010134:183803 -k1,428:32583029,13010134:0 -) -(1,429:6630773,13851622:25952256,513147,126483 -k1,428:7474272,13851622:192071 -k1,428:9382075,13851622:192070 -k1,428:10954990,13851622:192071 -k1,428:12166146,13851622:192071 -k1,428:14097542,13851622:192070 -k1,428:14948905,13851622:192071 -k1,428:19535165,13851622:192071 -k1,428:20258733,13851622:192071 -k1,428:21469888,13851622:192070 -k1,428:22818669,13851622:192071 -k1,428:24181213,13851622:192071 -k1,428:26602818,13851622:192070 -k1,428:30285992,13851622:192071 -k1,429:32583029,13851622:0 -) -(1,429:6630773,14693110:25952256,513147,7863 -g1,428:8600129,14693110 -g1,428:10274573,14693110 -g1,428:11283172,14693110 -k1,429:32583029,14693110:19355404 -g1,429:32583029,14693110 -) -v1,431:6630773,15854436:0,393216,0 -(1,450:6630773,20960564:25952256,5499344,196608 -g1,450:6630773,20960564 -g1,450:6630773,20960564 -g1,450:6434165,20960564 -(1,450:6434165,20960564:0,5499344,196608 -r1,450:32779637,20960564:26345472,5695952,196608 -k1,450:6434165,20960564:-26345472 -) -(1,450:6434165,20960564:26345472,5499344,196608 -[1,450:6630773,20960564:25952256,5302736,0 -(1,433:6630773,16046325:25952256,388497,9436 -(1,432:6630773,16046325:0,0,0 -g1,432:6630773,16046325 -g1,432:6630773,16046325 -g1,432:6303093,16046325 -(1,432:6303093,16046325:0,0,0 -) -g1,432:6630773,16046325 -) -g1,433:7263065,16046325 -g1,433:7895357,16046325 -g1,433:8527649,16046325 -g1,433:9159941,16046325 -h1,433:9476087,16046325:0,0,0 -k1,433:32583029,16046325:23106942 -g1,433:32583029,16046325 -) -(1,437:6630773,16778039:25952256,404226,76021 -(1,435:6630773,16778039:0,0,0 -g1,435:6630773,16778039 -g1,435:6630773,16778039 -g1,435:6303093,16778039 -(1,435:6303093,16778039:0,0,0 -) -g1,435:6630773,16778039 -) -g1,437:7579210,16778039 -g1,437:8843793,16778039 -h1,437:9159939,16778039:0,0,0 -k1,437:32583029,16778039:23423090 -g1,437:32583029,16778039 -) -(1,439:6630773,18099577:25952256,404226,76021 -(1,438:6630773,18099577:0,0,0 -g1,438:6630773,18099577 -g1,438:6630773,18099577 -g1,438:6303093,18099577 -(1,438:6303093,18099577:0,0,0 -) -g1,438:6630773,18099577 -) -g1,439:7263065,18099577 -g1,439:7895357,18099577 -g1,439:8843795,18099577 -g1,439:9476087,18099577 -h1,439:10108379,18099577:0,0,0 -k1,439:32583029,18099577:22474650 -g1,439:32583029,18099577 -) -(1,443:6630773,18831291:25952256,404226,76021 -(1,441:6630773,18831291:0,0,0 -g1,441:6630773,18831291 -g1,441:6630773,18831291 -g1,441:6303093,18831291 -(1,441:6303093,18831291:0,0,0 -) -g1,441:6630773,18831291 -) -g1,443:7579210,18831291 -g1,443:8843793,18831291 -h1,443:9159939,18831291:0,0,0 -k1,443:32583029,18831291:23423090 -g1,443:32583029,18831291 -) -(1,445:6630773,20152829:25952256,404226,76021 -(1,444:6630773,20152829:0,0,0 -g1,444:6630773,20152829 -g1,444:6630773,20152829 -g1,444:6303093,20152829 -(1,444:6303093,20152829:0,0,0 -) -g1,444:6630773,20152829 -) -g1,445:7579211,20152829 -g1,445:8211503,20152829 -g1,445:9159941,20152829 -g1,445:9792233,20152829 -h1,445:10108379,20152829:0,0,0 -k1,445:32583029,20152829:22474650 -g1,445:32583029,20152829 -) -(1,449:6630773,20884543:25952256,404226,76021 -(1,447:6630773,20884543:0,0,0 -g1,447:6630773,20884543 -g1,447:6630773,20884543 -g1,447:6303093,20884543 -(1,447:6303093,20884543:0,0,0 -) -g1,447:6630773,20884543 -) -g1,449:7579210,20884543 -g1,449:8843793,20884543 -h1,449:9159939,20884543:0,0,0 -k1,449:32583029,20884543:23423090 -g1,449:32583029,20884543 -) -] -) -g1,450:32583029,20960564 -g1,450:6630773,20960564 -g1,450:6630773,20960564 -g1,450:32583029,20960564 -g1,450:32583029,20960564 -) -h1,450:6630773,21157172:0,0,0 -(1,454:6630773,22493809:25952256,513147,134348 -h1,453:6630773,22493809:983040,0,0 -k1,453:9006616,22493809:196116 -k1,453:11688514,22493809:196117 -k1,453:12543922,22493809:196116 -k1,453:15307739,22493809:196116 -k1,453:16785085,22493809:196117 -k1,453:18487874,22493809:196116 -k1,453:19875435,22493809:196116 -k1,453:22325335,22493809:196117 -k1,453:24264053,22493809:196116 -k1,453:25966842,22493809:196116 -k1,453:30017131,22493809:196117 -k1,453:31835263,22493809:196116 -k1,453:32583029,22493809:0 -) -(1,454:6630773,23335297:25952256,505283,126483 -k1,453:9803277,23335297:165057 -k1,453:11159779,23335297:165057 -k1,453:12705024,23335297:165057 -k1,453:14492097,23335297:165057 -k1,453:15404920,23335297:165057 -k1,453:17884053,23335297:165057 -k1,453:18773938,23335297:165057 -k1,453:20223502,23335297:165058 -k1,453:21840181,23335297:165057 -k1,453:24799038,23335297:165057 -k1,453:26476666,23335297:165057 -k1,453:27173220,23335297:165057 -k1,453:27694137,23335297:165057 -k1,453:29399290,23335297:165057 -k1,454:32583029,23335297:0 -) -(1,454:6630773,24176785:25952256,505283,126483 -k1,453:8206334,24176785:222898 -k1,453:12042886,24176785:222897 -k1,453:13307806,24176785:222898 -k1,453:16365791,24176785:222898 -k1,453:18278206,24176785:222897 -(1,453:18278206,24176785:0,452978,115847 -r1,453:22153592,24176785:3875386,568825,115847 -k1,453:18278206,24176785:-3875386 -) -(1,453:18278206,24176785:3875386,452978,115847 -g1,453:19336619,24176785 -g1,453:20040043,24176785 -g1,453:21095179,24176785 -g1,453:21798603,24176785 -h1,453:22150315,24176785:0,411205,112570 -) -k1,453:22376490,24176785:222898 -k1,453:23130884,24176785:222897 -k1,453:25067548,24176785:222898 -(1,453:25067548,24176785:0,452978,115847 -r1,453:28942934,24176785:3875386,568825,115847 -k1,453:25067548,24176785:-3875386 -) -(1,453:25067548,24176785:3875386,452978,115847 -g1,453:26125961,24176785 -g1,453:27181097,24176785 -g1,453:27884521,24176785 -g1,453:28587945,24176785 -h1,453:28939657,24176785:0,411205,112570 -) -k1,453:29165832,24176785:222898 -k1,453:29920226,24176785:222897 -k1,453:30498984,24176785:222898 -k1,453:32583029,24176785:0 -) -(1,454:6630773,25018273:25952256,505283,126483 -g1,453:8436945,25018273 -g1,453:9322336,25018273 -(1,453:9322336,25018273:0,435480,115847 -r1,453:10384026,25018273:1061690,551327,115847 -k1,453:9322336,25018273:-1061690 -) -(1,453:9322336,25018273:1061690,435480,115847 -g1,453:10029037,25018273 -h1,453:10380749,25018273:0,411205,112570 -) -g1,453:10583255,25018273 -g1,453:11313981,25018273 -g1,453:15054776,25018273 -g1,453:16445450,25018273 -g1,453:18815231,25018273 -g1,453:19762226,25018273 -k1,454:32583029,25018273:9418174 -g1,454:32583029,25018273 -) -v1,456:6630773,26354909:0,393216,0 -(1,478:6630773,42071119:25952256,16109426,616038 -g1,478:6630773,42071119 -(1,478:6630773,42071119:25952256,16109426,616038 -(1,478:6630773,42687157:25952256,16725464,0 -[1,478:6630773,42687157:25952256,16725464,0 -(1,478:6630773,42660943:25952256,16673036,0 -r1,478:6656987,42660943:26214,16673036,0 -[1,478:6656987,42660943:25899828,16673036,0 -(1,478:6656987,42071119:25899828,15493388,0 -[1,478:7246811,42071119:24720180,15493388,0 -(1,457:7246811,27665105:24720180,1087374,126483 -k1,456:8734861,27665105:278347 -k1,456:10501531,27665105:278347 -k1,456:12953052,27665105:278347 -k1,456:14222959,27665105:278347 -k1,456:15567577,27665105:278347 -k1,456:18095120,27665105:278347 -k1,456:20247798,27665105:278348 -k1,456:21517705,27665105:278347 -k1,456:24787771,27665105:278347 -k1,456:26013769,27665105:278347 -k1,456:27462589,27665105:278347 -k1,456:28392364,27665105:278347 -k1,456:30056797,27665105:278347 -k1,456:30947906,27665105:278347 -k1,456:31966991,27665105:0 -) -(1,457:7246811,28506593:24720180,505283,134348 -k1,456:10624688,28506593:218386 -k1,456:13417984,28506593:218386 -k1,456:14264205,28506593:218386 -k1,456:16815673,28506593:218386 -k1,456:18204532,28506593:218386 -k1,456:20603301,28506593:218386 -k1,456:21887958,28506593:218386 -k1,456:23451143,28506593:218386 -k1,456:25482255,28506593:218386 -k1,456:26386803,28506593:218386 -k1,456:27221227,28506593:218386 -k1,456:29191390,28506593:218386 -k1,456:31280829,28506593:218386 -k1,456:31966991,28506593:0 -) -(1,457:7246811,29348081:24720180,505283,134348 -k1,456:8816160,29348081:175398 -k1,456:10010643,29348081:175398 -k1,456:13702703,29348081:175398 -k1,456:17503553,29348081:175398 -k1,456:19072902,29348081:175398 -k1,456:22565733,29348081:175399 -k1,456:23357169,29348081:175398 -k1,456:24551652,29348081:175398 -k1,456:26223237,29348081:175398 -k1,456:28369303,29348081:175398 -k1,456:30586803,29348081:175398 -k1,456:31966991,29348081:0 -) -(1,457:7246811,30189569:24720180,505283,134348 -k1,456:8894922,30189569:172896 -k1,456:12421951,30189569:172896 -k1,456:13246274,30189569:172895 -k1,456:15127694,30189569:172896 -k1,456:15983475,30189569:172896 -k1,456:20363127,30189569:172896 -k1,456:21789727,30189569:172896 -k1,456:22954183,30189569:172896 -k1,456:25752450,30189569:172895 -k1,456:29616989,30189569:172896 -k1,456:30441313,30189569:172896 -k1,456:31966991,30189569:0 -) -(1,457:7246811,31031057:24720180,513147,126483 -k1,456:8141213,31031057:278364 -k1,456:10121547,31031057:278364 -k1,456:12528521,31031057:278365 -k1,456:14736265,31031057:278364 -k1,456:16297824,31031057:278364 -k1,456:19732402,31031057:278364 -k1,456:20670058,31031057:278364 -k1,456:21967507,31031057:278364 -k1,456:25237591,31031057:278365 -k1,456:26707400,31031057:278364 -k1,456:29398144,31031057:278364 -k1,456:31315563,31031057:278364 -k1,456:31966991,31031057:0 -) -(1,457:7246811,31872545:24720180,505283,126483 -g1,456:9814511,31872545 -g1,456:11344121,31872545 -g1,456:11958193,31872545 -g1,456:14257851,31872545 -g1,456:14257851,31872545 -g1,456:14457080,31872545 -g1,456:14457080,31872545 -g1,456:14656309,31872545 -g1,456:14656309,31872545 -k1,457:31966991,31872545:17310682 -g1,457:31966991,31872545 -) -v1,459:7246811,33063011:0,393216,0 -(1,475:7246811,41350223:24720180,8680428,196608 -g1,475:7246811,41350223 -g1,475:7246811,41350223 -g1,475:7050203,41350223 -(1,475:7050203,41350223:0,8680428,196608 -r1,478:32163599,41350223:25113396,8877036,196608 -k1,475:7050203,41350223:-25113396 -) -(1,475:7050203,41350223:25113396,8680428,196608 -[1,475:7246811,41350223:24720180,8483820,0 -(1,461:7246811,33254900:24720180,388497,0 -(1,460:7246811,33254900:0,0,0 -g1,460:7246811,33254900 -g1,460:7246811,33254900 -g1,460:6919131,33254900 -(1,460:6919131,33254900:0,0,0 -) -g1,460:7246811,33254900 -) -g1,461:7879103,33254900 -g1,461:8511395,33254900 -h1,461:8827541,33254900:0,0,0 -k1,461:31966991,33254900:23139450 -g1,461:31966991,33254900 -) -(1,462:7246811,33921078:24720180,388497,0 -h1,462:7246811,33921078:0,0,0 -g1,462:7879103,33921078 -g1,462:8511395,33921078 -h1,462:8827541,33921078:0,0,0 -k1,462:31966991,33921078:23139450 -g1,462:31966991,33921078 -) -(1,463:7246811,34587256:24720180,404226,76021 -h1,463:7246811,34587256:0,0,0 -g1,463:7879103,34587256 -g1,463:8511395,34587256 -g1,463:9459832,34587256 -g1,463:10092124,34587256 -h1,463:10408270,34587256:0,0,0 -k1,463:31966990,34587256:21558720 -g1,463:31966990,34587256 -) -(1,464:7246811,35253434:24720180,404226,76021 -h1,464:7246811,35253434:0,0,0 -g1,464:8195249,35253434 -g1,464:8827541,35253434 -g1,464:10092124,35253434 -g1,464:10724416,35253434 -h1,464:11040562,35253434:0,0,0 -k1,464:31966990,35253434:20926428 -g1,464:31966990,35253434 -) -(1,465:7246811,35919612:24720180,388497,9436 -h1,465:7246811,35919612:0,0,0 -g1,465:8827540,35919612 -g1,465:9459832,35919612 -h1,465:9775978,35919612:0,0,0 -k1,465:31966990,35919612:22191012 -g1,465:31966990,35919612 -) -(1,466:7246811,36585790:24720180,404226,101187 -h1,466:7246811,36585790:0,0,0 -k1,466:7246811,36585790:0 -h1,466:9459832,36585790:0,0,0 -k1,466:31966992,36585790:22507160 -g1,466:31966992,36585790 -) -(1,467:7246811,37251968:24720180,404226,107478 -h1,467:7246811,37251968:0,0,0 -g1,467:8195248,37251968 -g1,467:8827540,37251968 -g1,467:10724414,37251968 -g1,467:13885871,37251968 -g1,467:15150454,37251968 -g1,467:17047328,37251968 -g1,467:18628057,37251968 -k1,467:18628057,37251968:11010 -h1,467:21168232,37251968:0,0,0 -k1,467:31966991,37251968:10798759 -g1,467:31966991,37251968 -) -(1,468:7246811,37918146:24720180,404226,107478 -h1,468:7246811,37918146:0,0,0 -g1,468:10408268,37918146 -g1,468:12621288,37918146 -g1,468:13253580,37918146 -h1,468:14202017,37918146:0,0,0 -k1,468:31966991,37918146:17764974 -g1,468:31966991,37918146 -) -(1,469:7246811,38584324:24720180,410518,101187 -h1,469:7246811,38584324:0,0,0 -g1,469:9775977,38584324 -g1,469:10408269,38584324 -g1,469:12305143,38584324 -g1,469:13885872,38584324 -g1,469:14834309,38584324 -g1,469:16098892,38584324 -k1,469:16098892,38584324:0 -h1,469:19892640,38584324:0,0,0 -k1,469:31966991,38584324:12074351 -g1,469:31966991,38584324 -) -(1,470:7246811,39250502:24720180,404226,107478 -h1,470:7246811,39250502:0,0,0 -k1,470:7246811,39250502:0 -h1,470:9775977,39250502:0,0,0 -k1,470:31966991,39250502:22191014 -g1,470:31966991,39250502 -) -(1,471:7246811,39916680:24720180,404226,107478 -h1,471:7246811,39916680:0,0,0 -k1,471:7246811,39916680:0 -h1,471:10408268,39916680:0,0,0 -k1,471:31966992,39916680:21558724 -g1,471:31966992,39916680 -) -(1,472:7246811,40582858:24720180,404226,107478 -h1,472:7246811,40582858:0,0,0 -k1,472:7246811,40582858:0 -h1,472:9459832,40582858:0,0,0 -k1,472:31966992,40582858:22507160 -g1,472:31966992,40582858 -) -(1,473:7246811,41249036:24720180,404226,101187 -h1,473:7246811,41249036:0,0,0 -k1,473:7246811,41249036:0 -h1,473:9143686,41249036:0,0,0 -k1,473:31966990,41249036:22823304 -g1,473:31966990,41249036 -) -] -) -g1,475:31966991,41350223 -g1,475:7246811,41350223 -g1,475:7246811,41350223 -g1,475:31966991,41350223 -g1,475:31966991,41350223 -) -h1,475:7246811,41546831:0,0,0 -] -) -] -r1,478:32583029,42660943:26214,16673036,0 -) -] -) -) -g1,478:32583029,42071119 -) -h1,478:6630773,42687157:0,0,0 -(1,481:6630773,44023793:25952256,513147,134348 -h1,480:6630773,44023793:983040,0,0 -k1,480:10840993,44023793:284613 -k1,480:12117167,44023793:284614 -k1,480:13915006,44023793:284613 -k1,480:14851047,44023793:284613 -k1,480:16753090,44023793:284614 -k1,480:19222018,44023793:284613 -k1,480:21151586,44023793:284614 -k1,480:22304551,44023793:284613 -k1,480:24563109,44023793:284613 -k1,480:25203583,44023793:284614 -k1,480:27168539,44023793:284613 -k1,480:28104580,44023793:284613 -k1,480:28745054,44023793:284614 -k1,480:31714677,44023793:284613 -k1,480:32583029,44023793:0 -) -(1,481:6630773,44865281:25952256,513147,134348 -k1,480:7949838,44865281:214783 -k1,480:9257107,44865281:214784 -k1,480:10490975,44865281:214783 -k1,480:12443773,44865281:214783 -k1,480:13317848,44865281:214783 -k1,480:14551717,44865281:214784 -k1,480:17277840,44865281:214783 -k1,480:18108661,44865281:214783 -k1,480:19986092,44865281:214783 -k1,480:20860168,44865281:214784 -k1,480:22094036,44865281:214783 -k1,480:24346989,44865281:214783 -k1,480:26415786,44865281:214783 -k1,480:27827257,44865281:214784 -k1,480:30363325,44865281:214783 -k1,481:32583029,44865281:0 -) -(1,481:6630773,45706769:25952256,505283,134348 -k1,480:8490919,45706769:221091 -k1,480:11458624,45706769:221091 -k1,480:12211212,45706769:221091 -(1,480:12211212,45706769:0,414482,115847 -r1,480:12921190,45706769:709978,530329,115847 -k1,480:12211212,45706769:-709978 -) -(1,480:12211212,45706769:709978,414482,115847 -k1,480:12211212,45706769:3277 -h1,480:12917913,45706769:0,411205,112570 -) -k1,480:13315952,45706769:221092 -k1,480:14164878,45706769:221091 -k1,480:14974482,45706769:221091 -k1,480:15961689,45706769:221091 -k1,480:18424767,45706769:221091 -k1,480:21626435,45706769:221091 -k1,480:24358867,45706769:221092 -k1,480:26821945,45706769:221091 -k1,480:28034596,45706769:221091 -k1,480:29622768,45706769:221091 -k1,480:32583029,45706769:0 -) -] -(1,481:32583029,45706769:0,0,0 -g1,481:32583029,45706769 -) -) +g1,487:6630773,4812305 +g1,487:6630773,4812305 +g1,487:9516978,4812305 +g1,487:11710468,4812305 +g1,487:13120147,4812305 +g1,487:16560787,4812305 +k1,487:31786111,4812305:15225324 +) +) +] +[1,487:6630773,45706769:25952256,40108032,0 +(1,487:6630773,45706769:25952256,40108032,0 +(1,487:6630773,45706769:0,0,0 +g1,487:6630773,45706769 +) +[1,487:6630773,45706769:25952256,40108032,0 +v1,422:6630773,6254097:0,393216,0 +(1,429:6630773,7269450:25952256,1408569,196608 +g1,429:6630773,7269450 +g1,429:6630773,7269450 +g1,429:6434165,7269450 +(1,429:6434165,7269450:0,1408569,196608 +r1,429:32779637,7269450:26345472,1605177,196608 +k1,429:6434165,7269450:-26345472 +) +(1,429:6434165,7269450:26345472,1408569,196608 +[1,429:6630773,7269450:25952256,1211961,0 +(1,424:6630773,6461715:25952256,404226,101187 +(1,423:6630773,6461715:0,0,0 +g1,423:6630773,6461715 +g1,423:6630773,6461715 +g1,423:6303093,6461715 +(1,423:6303093,6461715:0,0,0 +) +g1,423:6630773,6461715 +) +g1,424:7579211,6461715 +g1,424:8211503,6461715 +g1,424:10740669,6461715 +g1,424:11372961,6461715 +k1,424:11372961,6461715:0 +h1,424:13585981,6461715:0,0,0 +k1,424:32583029,6461715:18997048 +g1,424:32583029,6461715 +) +(1,428:6630773,7193429:25952256,404226,76021 +(1,426:6630773,7193429:0,0,0 +g1,426:6630773,7193429 +g1,426:6630773,7193429 +g1,426:6303093,7193429 +(1,426:6303093,7193429:0,0,0 +) +g1,426:6630773,7193429 +) +g1,428:7579210,7193429 +g1,428:8843793,7193429 +h1,428:12637541,7193429:0,0,0 +k1,428:32583029,7193429:19945488 +g1,428:32583029,7193429 +) +] +) +g1,429:32583029,7269450 +g1,429:6630773,7269450 +g1,429:6630773,7269450 +g1,429:32583029,7269450 +g1,429:32583029,7269450 +) +h1,429:6630773,7466058:0,0,0 +(1,433:6630773,8802694:25952256,513147,126483 +h1,432:6630773,8802694:983040,0,0 +k1,432:8271945,8802694:188239 +k1,432:9564467,8802694:188240 +k1,432:10500472,8802694:188239 +k1,432:12128538,8802694:188240 +k1,432:14172101,8802694:188239 +k1,432:15644847,8802694:188240 +k1,432:20156496,8802694:188239 +k1,432:23432792,8802694:188240 +k1,432:24812476,8802694:188239 +k1,432:28026513,8802694:188240 +k1,432:29206312,8802694:188239 +k1,432:30716413,8802694:188240 +k1,432:31563944,8802694:188239 +k1,433:32583029,8802694:0 +) +(1,433:6630773,9644182:25952256,513147,134348 +k1,432:7268953,9644182:223337 +k1,432:10508280,9644182:223360 +k1,432:12003039,9644182:223361 +k1,432:13888393,9644182:223361 +k1,432:14763182,9644182:223361 +k1,432:18245647,9644182:223360 +k1,432:20167046,9644182:223361 +k1,432:23844810,9644182:223361 +k1,432:26754492,9644182:223361 +k1,432:29818182,9644182:223360 +k1,432:30727705,9644182:223361 +k1,432:32583029,9644182:0 +) +(1,433:6630773,10485670:25952256,513147,134348 +k1,432:8191091,10485670:292852 +k1,432:8898693,10485670:292759 +k1,432:10861402,10485670:292852 +k1,432:11685751,10485670:292852 +k1,432:13263110,10485670:292853 +k1,432:14172000,10485670:292852 +k1,432:17740997,10485670:292852 +k1,432:21804136,10485670:292853 +k1,432:23116073,10485670:292852 +k1,432:24453569,10485670:292852 +k1,432:25405713,10485670:292852 +k1,432:26717651,10485670:292853 +k1,432:29520532,10485670:292852 +k1,432:32583029,10485670:0 +) +(1,433:6630773,11327158:25952256,513147,134348 +k1,432:7238493,11327158:251860 +k1,432:10373282,11327158:251860 +k1,432:11909648,11327158:251860 +k1,432:13945397,11327158:251859 +k1,432:15216342,11327158:251860 +k1,432:17746889,11327158:251860 +k1,432:21599952,11327158:251860 +k1,432:22511104,11327158:251860 +k1,432:26341230,11327158:251860 +k1,432:27220925,11327158:251860 +k1,432:30277725,11327158:251859 +k1,432:31145623,11327158:251860 +k1,432:32168186,11327158:251860 +k1,433:32583029,11327158:0 +) +(1,433:6630773,12168646:25952256,505283,134348 +g1,432:10269987,12168646 +g1,432:11672457,12168646 +g1,432:14754615,12168646 +g1,432:16575860,12168646 +g1,432:17522855,12168646 +g1,432:20619431,12168646 +g1,432:23468281,12168646 +g1,432:25061461,12168646 +g1,432:28487683,12168646 +k1,433:32583029,12168646:67503 +g1,433:32583029,12168646 +) +(1,435:6630773,13010134:25952256,513147,126483 +h1,434:6630773,13010134:983040,0,0 +k1,434:8275373,13010134:183803 +k1,434:9629650,13010134:183804 +k1,434:10805013,13010134:183803 +k1,434:11604854,13010134:183803 +k1,434:13676095,13010134:183804 +k1,434:15682454,13010134:183803 +k1,434:17196638,13010134:183803 +k1,434:20981644,13010134:183803 +k1,434:22751419,13010134:183804 +k1,434:24705349,13010134:183803 +k1,434:26059625,13010134:183803 +k1,434:27347711,13010134:183804 +k1,434:28728857,13010134:183803 +k1,434:32583029,13010134:0 +) +(1,435:6630773,13851622:25952256,513147,126483 +k1,434:7494033,13851622:211832 +k1,434:9421599,13851622:211833 +k1,434:11014275,13851622:211832 +k1,434:12245192,13851622:211832 +k1,434:14196351,13851622:211833 +k1,434:15067475,13851622:211832 +k1,434:19673496,13851622:211832 +k1,434:20416825,13851622:211832 +k1,434:21647743,13851622:211833 +k1,434:23016285,13851622:211832 +k1,434:24398590,13851622:211832 +k1,434:26839958,13851622:211833 +k1,434:30542893,13851622:211832 +k1,435:32583029,13851622:0 +) +(1,435:6630773,14693110:25952256,513147,7863 +g1,434:8857031,14693110 +g1,434:10531475,14693110 +g1,434:11540074,14693110 +k1,435:32583029,14693110:19098502 +g1,435:32583029,14693110 +) +v1,437:6630773,15854436:0,393216,0 +(1,456:6630773,20960564:25952256,5499344,196608 +g1,456:6630773,20960564 +g1,456:6630773,20960564 +g1,456:6434165,20960564 +(1,456:6434165,20960564:0,5499344,196608 +r1,456:32779637,20960564:26345472,5695952,196608 +k1,456:6434165,20960564:-26345472 +) +(1,456:6434165,20960564:26345472,5499344,196608 +[1,456:6630773,20960564:25952256,5302736,0 +(1,439:6630773,16046325:25952256,388497,9436 +(1,438:6630773,16046325:0,0,0 +g1,438:6630773,16046325 +g1,438:6630773,16046325 +g1,438:6303093,16046325 +(1,438:6303093,16046325:0,0,0 +) +g1,438:6630773,16046325 +) +g1,439:7263065,16046325 +g1,439:7895357,16046325 +g1,439:8527649,16046325 +g1,439:9159941,16046325 +h1,439:9476087,16046325:0,0,0 +k1,439:32583029,16046325:23106942 +g1,439:32583029,16046325 +) +(1,443:6630773,16778039:25952256,404226,76021 +(1,441:6630773,16778039:0,0,0 +g1,441:6630773,16778039 +g1,441:6630773,16778039 +g1,441:6303093,16778039 +(1,441:6303093,16778039:0,0,0 +) +g1,441:6630773,16778039 +) +g1,443:7579210,16778039 +g1,443:8843793,16778039 +h1,443:9159939,16778039:0,0,0 +k1,443:32583029,16778039:23423090 +g1,443:32583029,16778039 +) +(1,445:6630773,18099577:25952256,404226,76021 +(1,444:6630773,18099577:0,0,0 +g1,444:6630773,18099577 +g1,444:6630773,18099577 +g1,444:6303093,18099577 +(1,444:6303093,18099577:0,0,0 +) +g1,444:6630773,18099577 +) +g1,445:7263065,18099577 +g1,445:7895357,18099577 +g1,445:8843795,18099577 +g1,445:9476087,18099577 +h1,445:10108379,18099577:0,0,0 +k1,445:32583029,18099577:22474650 +g1,445:32583029,18099577 +) +(1,449:6630773,18831291:25952256,404226,76021 +(1,447:6630773,18831291:0,0,0 +g1,447:6630773,18831291 +g1,447:6630773,18831291 +g1,447:6303093,18831291 +(1,447:6303093,18831291:0,0,0 +) +g1,447:6630773,18831291 +) +g1,449:7579210,18831291 +g1,449:8843793,18831291 +h1,449:9159939,18831291:0,0,0 +k1,449:32583029,18831291:23423090 +g1,449:32583029,18831291 +) +(1,451:6630773,20152829:25952256,404226,76021 +(1,450:6630773,20152829:0,0,0 +g1,450:6630773,20152829 +g1,450:6630773,20152829 +g1,450:6303093,20152829 +(1,450:6303093,20152829:0,0,0 +) +g1,450:6630773,20152829 +) +g1,451:7579211,20152829 +g1,451:8211503,20152829 +g1,451:9159941,20152829 +g1,451:9792233,20152829 +h1,451:10108379,20152829:0,0,0 +k1,451:32583029,20152829:22474650 +g1,451:32583029,20152829 +) +(1,455:6630773,20884543:25952256,404226,76021 +(1,453:6630773,20884543:0,0,0 +g1,453:6630773,20884543 +g1,453:6630773,20884543 +g1,453:6303093,20884543 +(1,453:6303093,20884543:0,0,0 +) +g1,453:6630773,20884543 +) +g1,455:7579210,20884543 +g1,455:8843793,20884543 +h1,455:9159939,20884543:0,0,0 +k1,455:32583029,20884543:23423090 +g1,455:32583029,20884543 +) +] +) +g1,456:32583029,20960564 +g1,456:6630773,20960564 +g1,456:6630773,20960564 +g1,456:32583029,20960564 +g1,456:32583029,20960564 +) +h1,456:6630773,21157172:0,0,0 +(1,460:6630773,22493809:25952256,513147,134348 +h1,459:6630773,22493809:983040,0,0 +k1,459:9006616,22493809:196116 +k1,459:11688514,22493809:196117 +k1,459:12543922,22493809:196116 +k1,459:15307739,22493809:196116 +k1,459:16785085,22493809:196117 +k1,459:18487874,22493809:196116 +k1,459:19875435,22493809:196116 +k1,459:22325335,22493809:196117 +k1,459:24264053,22493809:196116 +k1,459:25966842,22493809:196116 +k1,459:30017131,22493809:196117 +k1,459:31835263,22493809:196116 +k1,459:32583029,22493809:0 +) +(1,460:6630773,23335297:25952256,505283,126483 +k1,459:9784927,23335297:146707 +k1,459:11123079,23335297:146707 +k1,459:12649974,23335297:146707 +k1,459:14418697,23335297:146707 +k1,459:15313170,23335297:146707 +k1,459:17773953,23335297:146707 +k1,459:18645488,23335297:146707 +k1,459:20076701,23335297:146707 +k1,459:21675030,23335297:146707 +k1,459:24615537,23335297:146707 +k1,459:26274815,23335297:146707 +k1,459:26953019,23335297:146707 +k1,459:27455586,23335297:146707 +k1,459:29142389,23335297:146707 +k1,460:32583029,23335297:0 +) +(1,460:6630773,24176785:25952256,505283,126483 +k1,459:7972787,24176785:246252 +k1,459:11832695,24176785:246253 +k1,459:13120969,24176785:246252 +k1,459:16202308,24176785:246252 +k1,459:18138078,24176785:246252 +(1,459:18138078,24176785:0,452978,115847 +r1,459:22013464,24176785:3875386,568825,115847 +k1,459:18138078,24176785:-3875386 +) +(1,459:18138078,24176785:3875386,452978,115847 +g1,459:19196491,24176785 +g1,459:19899915,24176785 +g1,459:20955051,24176785 +g1,459:21658475,24176785 +h1,459:22010187,24176785:0,411205,112570 +) +k1,459:22259717,24176785:246253 +k1,459:23037466,24176785:246252 +k1,459:24997484,24176785:246252 +(1,459:24997484,24176785:0,452978,115847 +r1,459:28872870,24176785:3875386,568825,115847 +k1,459:24997484,24176785:-3875386 +) +(1,459:24997484,24176785:3875386,452978,115847 +g1,459:26055897,24176785 +g1,459:27111033,24176785 +g1,459:27814457,24176785 +g1,459:28517881,24176785 +h1,459:28869593,24176785:0,411205,112570 +) +k1,459:29119122,24176785:246252 +k1,459:29896872,24176785:246253 +k1,459:30498984,24176785:246252 +k1,459:32583029,24176785:0 +) +(1,460:6630773,25018273:25952256,505283,126483 +g1,459:8436945,25018273 +g1,459:9322336,25018273 +(1,459:9322336,25018273:0,435480,115847 +r1,459:10384026,25018273:1061690,551327,115847 +k1,459:9322336,25018273:-1061690 +) +(1,459:9322336,25018273:1061690,435480,115847 +g1,459:10029037,25018273 +h1,459:10380749,25018273:0,411205,112570 +) +g1,459:10583255,25018273 +g1,459:11313981,25018273 +g1,459:15054776,25018273 +g1,459:16445450,25018273 +g1,459:18815231,25018273 +g1,459:19762226,25018273 +k1,460:32583029,25018273:9418174 +g1,460:32583029,25018273 +) +v1,462:6630773,26354909:0,393216,0 +(1,484:6630773,42071119:25952256,16109426,616038 +g1,484:6630773,42071119 +(1,484:6630773,42071119:25952256,16109426,616038 +(1,484:6630773,42687157:25952256,16725464,0 +[1,484:6630773,42687157:25952256,16725464,0 +(1,484:6630773,42660943:25952256,16673036,0 +r1,484:6656987,42660943:26214,16673036,0 +[1,484:6656987,42660943:25899828,16673036,0 +(1,484:6656987,42071119:25899828,15493388,0 +[1,484:7246811,42071119:24720180,15493388,0 +(1,463:7246811,27665105:24720180,1087374,126483 +k1,462:8734861,27665105:278347 +k1,462:10501531,27665105:278347 +k1,462:12953052,27665105:278347 +k1,462:14222959,27665105:278347 +k1,462:15567577,27665105:278347 +k1,462:18095120,27665105:278347 +k1,462:20247798,27665105:278348 +k1,462:21517705,27665105:278347 +k1,462:24787771,27665105:278347 +k1,462:26013769,27665105:278347 +k1,462:27462589,27665105:278347 +k1,462:28392364,27665105:278347 +k1,462:30056797,27665105:278347 +k1,462:30947906,27665105:278347 +k1,462:31966991,27665105:0 +) +(1,463:7246811,28506593:24720180,505283,134348 +k1,462:10624688,28506593:218386 +k1,462:13417984,28506593:218386 +k1,462:14264205,28506593:218386 +k1,462:16815673,28506593:218386 +k1,462:18204532,28506593:218386 +k1,462:20603301,28506593:218386 +k1,462:21887958,28506593:218386 +k1,462:23451143,28506593:218386 +k1,462:25482255,28506593:218386 +k1,462:26386803,28506593:218386 +k1,462:27221227,28506593:218386 +k1,462:29191390,28506593:218386 +k1,462:31280829,28506593:218386 +k1,462:31966991,28506593:0 +) +(1,463:7246811,29348081:24720180,505283,134348 +k1,462:8816160,29348081:175398 +k1,462:10010643,29348081:175398 +k1,462:13702703,29348081:175398 +k1,462:17503553,29348081:175398 +k1,462:19072902,29348081:175398 +k1,462:22565733,29348081:175399 +k1,462:23357169,29348081:175398 +k1,462:24551652,29348081:175398 +k1,462:26223237,29348081:175398 +k1,462:28369303,29348081:175398 +k1,462:30586803,29348081:175398 +k1,462:31966991,29348081:0 +) +(1,463:7246811,30189569:24720180,505283,134348 +k1,462:8894922,30189569:172896 +k1,462:12421951,30189569:172896 +k1,462:13246274,30189569:172895 +k1,462:15127694,30189569:172896 +k1,462:15983475,30189569:172896 +k1,462:20363127,30189569:172896 +k1,462:21789727,30189569:172896 +k1,462:22954183,30189569:172896 +k1,462:25752450,30189569:172895 +k1,462:29616989,30189569:172896 +k1,462:30441313,30189569:172896 +k1,462:31966991,30189569:0 +) +(1,463:7246811,31031057:24720180,513147,126483 +k1,462:8141213,31031057:278364 +k1,462:10121547,31031057:278364 +k1,462:12528521,31031057:278365 +k1,462:14736265,31031057:278364 +k1,462:16297824,31031057:278364 +k1,462:19732402,31031057:278364 +k1,462:20670058,31031057:278364 +k1,462:21967507,31031057:278364 +k1,462:25237591,31031057:278365 +k1,462:26707400,31031057:278364 +k1,462:29398144,31031057:278364 +k1,462:31315563,31031057:278364 +k1,462:31966991,31031057:0 +) +(1,463:7246811,31872545:24720180,505283,126483 +g1,462:9814511,31872545 +g1,462:11344121,31872545 +g1,462:11958193,31872545 +g1,462:14257851,31872545 +g1,462:14257851,31872545 +g1,462:14457080,31872545 +g1,462:14457080,31872545 +g1,462:14656309,31872545 +g1,462:14656309,31872545 +k1,463:31966991,31872545:17310682 +g1,463:31966991,31872545 +) +v1,465:7246811,33063011:0,393216,0 +(1,481:7246811,41350223:24720180,8680428,196608 +g1,481:7246811,41350223 +g1,481:7246811,41350223 +g1,481:7050203,41350223 +(1,481:7050203,41350223:0,8680428,196608 +r1,484:32163599,41350223:25113396,8877036,196608 +k1,481:7050203,41350223:-25113396 +) +(1,481:7050203,41350223:25113396,8680428,196608 +[1,481:7246811,41350223:24720180,8483820,0 +(1,467:7246811,33254900:24720180,388497,0 +(1,466:7246811,33254900:0,0,0 +g1,466:7246811,33254900 +g1,466:7246811,33254900 +g1,466:6919131,33254900 +(1,466:6919131,33254900:0,0,0 +) +g1,466:7246811,33254900 +) +g1,467:7879103,33254900 +g1,467:8511395,33254900 +h1,467:8827541,33254900:0,0,0 +k1,467:31966991,33254900:23139450 +g1,467:31966991,33254900 +) +(1,468:7246811,33921078:24720180,388497,0 +h1,468:7246811,33921078:0,0,0 +g1,468:7879103,33921078 +g1,468:8511395,33921078 +h1,468:8827541,33921078:0,0,0 +k1,468:31966991,33921078:23139450 +g1,468:31966991,33921078 +) +(1,469:7246811,34587256:24720180,404226,76021 +h1,469:7246811,34587256:0,0,0 +g1,469:7879103,34587256 +g1,469:8511395,34587256 +g1,469:9459832,34587256 +g1,469:10092124,34587256 +h1,469:10408270,34587256:0,0,0 +k1,469:31966990,34587256:21558720 +g1,469:31966990,34587256 +) +(1,470:7246811,35253434:24720180,404226,76021 +h1,470:7246811,35253434:0,0,0 +g1,470:8195249,35253434 +g1,470:8827541,35253434 +g1,470:10092124,35253434 +g1,470:10724416,35253434 +h1,470:11040562,35253434:0,0,0 +k1,470:31966990,35253434:20926428 +g1,470:31966990,35253434 +) +(1,471:7246811,35919612:24720180,388497,9436 +h1,471:7246811,35919612:0,0,0 +g1,471:8827540,35919612 +g1,471:9459832,35919612 +h1,471:9775978,35919612:0,0,0 +k1,471:31966990,35919612:22191012 +g1,471:31966990,35919612 +) +(1,472:7246811,36585790:24720180,404226,101187 +h1,472:7246811,36585790:0,0,0 +k1,472:7246811,36585790:0 +h1,472:9459832,36585790:0,0,0 +k1,472:31966992,36585790:22507160 +g1,472:31966992,36585790 +) +(1,473:7246811,37251968:24720180,404226,107478 +h1,473:7246811,37251968:0,0,0 +g1,473:8195248,37251968 +g1,473:8827540,37251968 +g1,473:10724414,37251968 +g1,473:13885871,37251968 +g1,473:15150454,37251968 +g1,473:17047328,37251968 +g1,473:18628057,37251968 +k1,473:18628057,37251968:11010 +h1,473:21168232,37251968:0,0,0 +k1,473:31966991,37251968:10798759 +g1,473:31966991,37251968 +) +(1,474:7246811,37918146:24720180,404226,107478 +h1,474:7246811,37918146:0,0,0 +g1,474:10408268,37918146 +g1,474:12621288,37918146 +g1,474:13253580,37918146 +h1,474:14202017,37918146:0,0,0 +k1,474:31966991,37918146:17764974 +g1,474:31966991,37918146 +) +(1,475:7246811,38584324:24720180,410518,101187 +h1,475:7246811,38584324:0,0,0 +g1,475:9775977,38584324 +g1,475:10408269,38584324 +g1,475:12305143,38584324 +g1,475:13885872,38584324 +g1,475:14834309,38584324 +g1,475:16098892,38584324 +k1,475:16098892,38584324:0 +h1,475:19892640,38584324:0,0,0 +k1,475:31966991,38584324:12074351 +g1,475:31966991,38584324 +) +(1,476:7246811,39250502:24720180,404226,107478 +h1,476:7246811,39250502:0,0,0 +k1,476:7246811,39250502:0 +h1,476:9775977,39250502:0,0,0 +k1,476:31966991,39250502:22191014 +g1,476:31966991,39250502 +) +(1,477:7246811,39916680:24720180,404226,107478 +h1,477:7246811,39916680:0,0,0 +k1,477:7246811,39916680:0 +h1,477:10408268,39916680:0,0,0 +k1,477:31966992,39916680:21558724 +g1,477:31966992,39916680 +) +(1,478:7246811,40582858:24720180,404226,107478 +h1,478:7246811,40582858:0,0,0 +k1,478:7246811,40582858:0 +h1,478:9459832,40582858:0,0,0 +k1,478:31966992,40582858:22507160 +g1,478:31966992,40582858 +) +(1,479:7246811,41249036:24720180,404226,101187 +h1,479:7246811,41249036:0,0,0 +k1,479:7246811,41249036:0 +h1,479:9143686,41249036:0,0,0 +k1,479:31966990,41249036:22823304 +g1,479:31966990,41249036 +) +] +) +g1,481:31966991,41350223 +g1,481:7246811,41350223 +g1,481:7246811,41350223 +g1,481:31966991,41350223 +g1,481:31966991,41350223 +) +h1,481:7246811,41546831:0,0,0 +] +) +] +r1,484:32583029,42660943:26214,16673036,0 +) +] +) +) +g1,484:32583029,42071119 +) +h1,484:6630773,42687157:0,0,0 +(1,487:6630773,44023793:25952256,513147,134348 +h1,486:6630773,44023793:983040,0,0 +k1,486:10840993,44023793:284613 +k1,486:12117167,44023793:284614 +k1,486:13915006,44023793:284613 +k1,486:14851047,44023793:284613 +k1,486:16753090,44023793:284614 +k1,486:19222018,44023793:284613 +k1,486:21151586,44023793:284614 +k1,486:22304551,44023793:284613 +k1,486:24563109,44023793:284613 +k1,486:25203583,44023793:284614 +k1,486:27168539,44023793:284613 +k1,486:28104580,44023793:284613 +k1,486:28745054,44023793:284614 +k1,486:31714677,44023793:284613 +k1,486:32583029,44023793:0 +) +(1,487:6630773,44865281:25952256,513147,134348 +k1,486:7949838,44865281:214783 +k1,486:9257107,44865281:214784 +k1,486:10490975,44865281:214783 +k1,486:12443773,44865281:214783 +k1,486:13317848,44865281:214783 +k1,486:14551717,44865281:214784 +k1,486:17277840,44865281:214783 +k1,486:18108661,44865281:214783 +k1,486:19986092,44865281:214783 +k1,486:20860168,44865281:214784 +k1,486:22094036,44865281:214783 +k1,486:24346989,44865281:214783 +k1,486:26415786,44865281:214783 +k1,486:27827257,44865281:214784 +k1,486:30363325,44865281:214783 +k1,487:32583029,44865281:0 +) +(1,487:6630773,45706769:25952256,505283,134348 +k1,486:8490919,45706769:221091 +k1,486:11458624,45706769:221091 +k1,486:12211212,45706769:221091 +(1,486:12211212,45706769:0,414482,115847 +r1,486:12921190,45706769:709978,530329,115847 +k1,486:12211212,45706769:-709978 +) +(1,486:12211212,45706769:709978,414482,115847 +k1,486:12211212,45706769:3277 +h1,486:12917913,45706769:0,411205,112570 +) +k1,486:13315952,45706769:221092 +k1,486:14164878,45706769:221091 +k1,486:14974482,45706769:221091 +k1,486:15961689,45706769:221091 +k1,486:18424767,45706769:221091 +k1,486:21626435,45706769:221091 +k1,486:24358867,45706769:221092 +k1,486:26821945,45706769:221091 +k1,486:28034596,45706769:221091 +k1,486:29622768,45706769:221091 +k1,486:32583029,45706769:0 +) +] +(1,487:32583029,45706769:0,0,0 +g1,487:32583029,45706769 +) +) ] -(1,481:6630773,47279633:25952256,0,0 -h1,481:6630773,47279633:25952256,0,0 -) +(1,487:6630773,47279633:25952256,0,0 +h1,487:6630773,47279633:25952256,0,0 +) ] -h1,481:4262630,4025873:0,0,0 +h1,487:4262630,4025873:0,0,0 ] !22289 }30 -Input:153:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:154:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:155:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:156:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:157:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:158:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:159:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:160:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:161:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:149:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:150:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:151:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:152:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:153:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:154:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:155:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:156:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:157:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {31 -[1,562:4262630,47279633:28320399,43253760,0 -(1,562:4262630,4025873:0,0,0 -[1,562:-473657,4025873:25952256,0,0 -(1,562:-473657,-710414:25952256,0,0 -h1,562:-473657,-710414:0,0,0 -(1,562:-473657,-710414:0,0,0 -(1,562:-473657,-710414:0,0,0 -g1,562:-473657,-710414 -(1,562:-473657,-710414:65781,0,65781 -g1,562:-407876,-710414 -[1,562:-407876,-644633:0,0,0 +[1,568:4262630,47279633:28320399,43253760,0 +(1,568:4262630,4025873:0,0,0 +[1,568:-473657,4025873:25952256,0,0 +(1,568:-473657,-710414:25952256,0,0 +h1,568:-473657,-710414:0,0,0 +(1,568:-473657,-710414:0,0,0 +(1,568:-473657,-710414:0,0,0 +g1,568:-473657,-710414 +(1,568:-473657,-710414:65781,0,65781 +g1,568:-407876,-710414 +[1,568:-407876,-644633:0,0,0 ] ) -k1,562:-473657,-710414:-65781 +k1,568:-473657,-710414:-65781 ) ) -k1,562:25478599,-710414:25952256 -g1,562:25478599,-710414 +k1,568:25478599,-710414:25952256 +g1,568:25478599,-710414 ) ] ) -[1,562:6630773,47279633:25952256,43253760,0 -[1,562:6630773,4812305:25952256,786432,0 -(1,562:6630773,4812305:25952256,505283,134348 -(1,562:6630773,4812305:25952256,505283,134348 -g1,562:3078558,4812305 -[1,562:3078558,4812305:0,0,0 -(1,562:3078558,2439708:0,1703936,0 -k1,562:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,562:2537886,2439708:1179648,16384,0 +[1,568:6630773,47279633:25952256,43253760,0 +[1,568:6630773,4812305:25952256,786432,0 +(1,568:6630773,4812305:25952256,505283,134348 +(1,568:6630773,4812305:25952256,505283,134348 +g1,568:3078558,4812305 +[1,568:3078558,4812305:0,0,0 +(1,568:3078558,2439708:0,1703936,0 +k1,568:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,568:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,562:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,568:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,562:3078558,4812305:0,0,0 -(1,562:3078558,2439708:0,1703936,0 -g1,562:29030814,2439708 -g1,562:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,562:36151628,1915420:16384,1179648,0 +[1,568:3078558,4812305:0,0,0 +(1,568:3078558,2439708:0,1703936,0 +g1,568:29030814,2439708 +g1,568:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,568:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,562:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,568:37855564,2439708:1179648,16384,0 ) ) -k1,562:3078556,2439708:-34777008 +k1,568:3078556,2439708:-34777008 ) ] -[1,562:3078558,4812305:0,0,0 -(1,562:3078558,49800853:0,16384,2228224 -k1,562:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,562:2537886,49800853:1179648,16384,0 +[1,568:3078558,4812305:0,0,0 +(1,568:3078558,49800853:0,16384,2228224 +k1,568:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,568:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,562:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,568:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,562:3078558,4812305:0,0,0 -(1,562:3078558,49800853:0,16384,2228224 -g1,562:29030814,49800853 -g1,562:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,562:36151628,51504789:16384,1179648,0 +[1,568:3078558,4812305:0,0,0 +(1,568:3078558,49800853:0,16384,2228224 +g1,568:29030814,49800853 +g1,568:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,568:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,562:37855564,49800853:1179648,16384,0 -) -) -k1,562:3078556,49800853:-34777008 -) -] -g1,562:6630773,4812305 -k1,562:19562994,4812305:12135303 -g1,562:20949735,4812305 -g1,562:21598541,4812305 -g1,562:24912696,4812305 -g1,562:27600327,4812305 -g1,562:29010006,4812305 -) -) -] -[1,562:6630773,45706769:25952256,40108032,0 -(1,562:6630773,45706769:25952256,40108032,0 -(1,562:6630773,45706769:0,0,0 -g1,562:6630773,45706769 -) -[1,562:6630773,45706769:25952256,40108032,0 -(1,481:6630773,6254097:25952256,513147,134348 -k1,480:9785138,6254097:211798 -(1,480:9785138,6254097:0,414482,115847 -r1,480:10143404,6254097:358266,530329,115847 -k1,480:9785138,6254097:-358266 -) -(1,480:9785138,6254097:358266,414482,115847 -k1,480:9785138,6254097:3277 -h1,480:10140127,6254097:0,411205,112570 -) -k1,480:10355202,6254097:211798 -k1,480:11758446,6254097:211799 -(1,480:11758446,6254097:0,414482,115847 -r1,480:12116712,6254097:358266,530329,115847 -k1,480:11758446,6254097:-358266 -) -(1,480:11758446,6254097:358266,414482,115847 -k1,480:11758446,6254097:3277 -h1,480:12113435,6254097:0,411205,112570 -) -k1,480:12328510,6254097:211798 -k1,480:13531868,6254097:211798 -k1,480:14916105,6254097:211798 -k1,480:17890246,6254097:211798 -k1,480:21117355,6254097:211798 -k1,480:23941419,6254097:211799 -k1,480:26221533,6254097:211798 -k1,480:27537613,6254097:211798 -k1,480:28497177,6254097:211798 -k1,480:30097683,6254097:211798 -k1,480:30925519,6254097:211798 -k1,480:31552148,6254097:211786 -k1,481:32583029,6254097:0 -) -(1,481:6630773,7095585:25952256,505283,134348 -k1,480:8905107,7095585:261068 -k1,480:9624272,7095585:261068 -k1,480:10416837,7095585:261068 -k1,480:11744176,7095585:261068 -k1,480:12361105,7095585:261069 -k1,480:14206178,7095585:261068 -k1,480:15792384,7095585:261068 -k1,480:16704880,7095585:261068 -k1,480:18058433,7095585:261068 -k1,480:19673475,7095585:261068 -k1,480:21323251,7095585:261068 -k1,480:23826306,7095585:261068 -k1,480:25575698,7095585:261069 -k1,480:26049696,7095585:261006 -k1,480:27286595,7095585:261068 -k1,480:29283056,7095585:261068 -k1,480:30898098,7095585:261068 -k1,480:32583029,7095585:0 -) -(1,481:6630773,7937073:25952256,505283,134348 -k1,480:9105060,7937073:232300 -k1,480:12691493,7937073:232300 -k1,480:14208298,7937073:232299 -k1,480:14972095,7937073:232300 -k1,480:17491602,7937073:232300 -k1,480:19009718,7937073:232300 -k1,480:19597877,7937073:232299 -k1,480:21184151,7937073:232300 -k1,480:22593478,7937073:232300 -k1,480:24324586,7937073:232300 -k1,480:27491587,7937073:232299 -k1,480:28339925,7937073:232300 -k1,480:29591310,7937073:232300 -k1,480:32583029,7937073:0 -) -(1,481:6630773,8778561:25952256,505283,126483 -k1,480:7439861,8778561:193050 -k1,480:8836152,8778561:193050 -k1,480:11446826,8778561:193051 -k1,480:13558770,8778561:193050 -k1,480:14770905,8778561:193050 -k1,480:17002125,8778561:193050 -k1,480:19205820,8778561:193050 -k1,480:20874086,8778561:193051 -k1,480:21876506,8778561:193050 -k1,480:25575732,8778561:193050 -k1,480:26420210,8778561:193050 -k1,480:27632346,8778561:193051 -k1,480:29022083,8778561:193050 -k1,480:31218569,8778561:193050 -k1,481:32583029,8778561:0 -) -(1,481:6630773,9620049:25952256,505283,126483 -k1,480:7870277,9620049:266294 -k1,480:10204887,9620049:266294 -k1,480:13898714,9620049:266294 -k1,480:15673647,9620049:266294 -k1,480:18518127,9620049:266294 -k1,480:21036238,9620049:266294 -k1,480:21930368,9620049:266295 -k1,480:23215747,9620049:266294 -k1,480:25452709,9620049:266294 -k1,480:27761105,9620049:266294 -(1,480:27761105,9620049:0,414482,115847 -r1,480:28119371,9620049:358266,530329,115847 -k1,480:27761105,9620049:-358266 -) -(1,480:27761105,9620049:358266,414482,115847 -k1,480:27761105,9620049:3277 -h1,480:28116094,9620049:0,411205,112570 -) -k1,480:28385665,9620049:266294 -k1,480:29843404,9620049:266294 -(1,480:29843404,9620049:0,452978,115847 -r1,480:30201670,9620049:358266,568825,115847 -k1,480:29843404,9620049:-358266 -) -(1,480:29843404,9620049:358266,452978,115847 -k1,480:29843404,9620049:3277 -h1,480:30198393,9620049:0,411205,112570 -) -k1,480:30467964,9620049:266294 -k1,480:31725818,9620049:266294 -k1,481:32583029,9620049:0 -) -(1,481:6630773,10461537:25952256,505283,126483 -k1,480:9458259,10461537:268960 -k1,480:11962651,10461537:268959 -k1,480:14742951,10461537:268960 -k1,480:17253898,10461537:268960 -k1,480:17735779,10461537:268889 -k1,480:19773556,10461537:268960 -k1,480:21517730,10461537:268959 -k1,480:23299916,10461537:268960 -k1,480:25637192,10461537:268960 -k1,480:27052376,10461537:268959 -(1,480:27052376,10461537:0,452978,115847 -r1,480:31631184,10461537:4578808,568825,115847 -k1,480:27052376,10461537:-4578808 -) -(1,480:27052376,10461537:4578808,452978,115847 -k1,480:27052376,10461537:3277 -h1,480:31627907,10461537:0,411205,112570 -) -k1,480:31900144,10461537:268960 -k1,481:32583029,10461537:0 -) -(1,481:6630773,11303025:25952256,513147,126483 -(1,480:6630773,11303025:0,452978,115847 -r1,480:13319851,11303025:6689078,568825,115847 -k1,480:6630773,11303025:-6689078 -) -(1,480:6630773,11303025:6689078,452978,115847 -k1,480:6630773,11303025:3277 -h1,480:13316574,11303025:0,411205,112570 -) -g1,480:13519080,11303025 -g1,480:14184270,11303025 -g1,480:15763687,11303025 -g1,480:17154361,11303025 -g1,480:18863540,11303025 -g1,480:21039990,11303025 -g1,480:21890647,11303025 -g1,480:24298439,11303025 -k1,481:32583029,11303025:4303933 -g1,481:32583029,11303025 -) -v1,483:6630773,12493491:0,393216,0 -(1,511:6630773,21651405:25952256,9551130,196608 -g1,511:6630773,21651405 -g1,511:6630773,21651405 -g1,511:6434165,21651405 -(1,511:6434165,21651405:0,9551130,196608 -r1,511:32779637,21651405:26345472,9747738,196608 -k1,511:6434165,21651405:-26345472 -) -(1,511:6434165,21651405:26345472,9551130,196608 -[1,511:6630773,21651405:25952256,9354522,0 -(1,485:6630773,12685380:25952256,388497,4718 -(1,484:6630773,12685380:0,0,0 -g1,484:6630773,12685380 -g1,484:6630773,12685380 -g1,484:6303093,12685380 -(1,484:6303093,12685380:0,0,0 -) -g1,484:6630773,12685380 -) -g1,485:7263065,12685380 -g1,485:8211503,12685380 -h1,485:8527649,12685380:0,0,0 -k1,485:32583029,12685380:24055380 -g1,485:32583029,12685380 -) -(1,486:6630773,13351558:25952256,388497,4718 -h1,486:6630773,13351558:0,0,0 -g1,486:7263065,13351558 -g1,486:7895357,13351558 -h1,486:8211503,13351558:0,0,0 -k1,486:32583029,13351558:24371526 -g1,486:32583029,13351558 -) -(1,490:6630773,14083272:25952256,404226,76021 -(1,488:6630773,14083272:0,0,0 -g1,488:6630773,14083272 -g1,488:6630773,14083272 -g1,488:6303093,14083272 -(1,488:6303093,14083272:0,0,0 -) -g1,488:6630773,14083272 -) -g1,490:7579210,14083272 -g1,490:8843793,14083272 -h1,490:9159939,14083272:0,0,0 -k1,490:32583029,14083272:23423090 -g1,490:32583029,14083272 -) -(1,492:6630773,15404810:25952256,284164,4718 -(1,491:6630773,15404810:0,0,0 -g1,491:6630773,15404810 -g1,491:6630773,15404810 -g1,491:6303093,15404810 -(1,491:6303093,15404810:0,0,0 -) -g1,491:6630773,15404810 -) -h1,492:6946919,15404810:0,0,0 -k1,492:32583029,15404810:25636110 -g1,492:32583029,15404810 -) -(1,496:6630773,16136524:25952256,404226,76021 -(1,494:6630773,16136524:0,0,0 -g1,494:6630773,16136524 -g1,494:6630773,16136524 -g1,494:6303093,16136524 -(1,494:6303093,16136524:0,0,0 -) -g1,494:6630773,16136524 -) -g1,496:7579210,16136524 -g1,496:8843793,16136524 -h1,496:9159939,16136524:0,0,0 -k1,496:32583029,16136524:23423090 -g1,496:32583029,16136524 -) -(1,498:6630773,17458062:25952256,404226,9436 -(1,497:6630773,17458062:0,0,0 -g1,497:6630773,17458062 -g1,497:6630773,17458062 -g1,497:6303093,17458062 -(1,497:6303093,17458062:0,0,0 -) -g1,497:6630773,17458062 -) -g1,498:7263065,17458062 -g1,498:8211503,17458062 -h1,498:8843794,17458062:0,0,0 -k1,498:32583030,17458062:23739236 -g1,498:32583030,17458062 -) -(1,499:6630773,18124240:25952256,404226,6290 -h1,499:6630773,18124240:0,0,0 -g1,499:7263065,18124240 -g1,499:8211503,18124240 -g1,499:8843795,18124240 -g1,499:9476087,18124240 -h1,499:9792233,18124240:0,0,0 -k1,499:32583029,18124240:22790796 -g1,499:32583029,18124240 -) -(1,500:6630773,18790418:25952256,404226,6290 -h1,500:6630773,18790418:0,0,0 -h1,500:6946919,18790418:0,0,0 -k1,500:32583029,18790418:25636110 -g1,500:32583029,18790418 -) -(1,504:6630773,19522132:25952256,404226,76021 -(1,502:6630773,19522132:0,0,0 -g1,502:6630773,19522132 -g1,502:6630773,19522132 -g1,502:6303093,19522132 -(1,502:6303093,19522132:0,0,0 -) -g1,502:6630773,19522132 -) -g1,504:7579210,19522132 -g1,504:8843793,19522132 -h1,504:9476084,19522132:0,0,0 -k1,504:32583028,19522132:23106944 -g1,504:32583028,19522132 -) -(1,506:6630773,20843670:25952256,388497,9436 -(1,505:6630773,20843670:0,0,0 -g1,505:6630773,20843670 -g1,505:6630773,20843670 -g1,505:6303093,20843670 -(1,505:6303093,20843670:0,0,0 -) -g1,505:6630773,20843670 -) -k1,506:6630773,20843670:0 -g1,506:8211501,20843670 -g1,506:8843793,20843670 -h1,506:9792230,20843670:0,0,0 -k1,506:32583030,20843670:22790800 -g1,506:32583030,20843670 -) -(1,510:6630773,21575384:25952256,404226,76021 -(1,508:6630773,21575384:0,0,0 -g1,508:6630773,21575384 -g1,508:6630773,21575384 -g1,508:6303093,21575384 -(1,508:6303093,21575384:0,0,0 -) -g1,508:6630773,21575384 -) -g1,510:7579210,21575384 -g1,510:8843793,21575384 -h1,510:10108376,21575384:0,0,0 -k1,510:32583028,21575384:22474652 -g1,510:32583028,21575384 -) -] -) -g1,511:32583029,21651405 -g1,511:6630773,21651405 -g1,511:6630773,21651405 -g1,511:32583029,21651405 -g1,511:32583029,21651405 -) -h1,511:6630773,21848013:0,0,0 -(1,515:6630773,23213789:25952256,513147,134348 -h1,514:6630773,23213789:983040,0,0 -k1,514:10441408,23213789:158969 -k1,514:11619461,23213789:158968 -k1,514:13516445,23213789:158969 -k1,514:14334706,23213789:158969 -k1,514:14849534,23213789:158968 -k1,514:17519843,23213789:158969 -k1,514:18309924,23213789:158969 -k1,514:19454554,23213789:158969 -k1,514:20063059,23213789:158928 -k1,514:22505958,23213789:158969 -k1,514:25671063,23213789:158969 -k1,514:27260027,23213789:158968 -k1,514:30114492,23213789:158969 -(1,514:30114492,23213789:0,452978,115847 -r1,514:32583029,23213789:2468537,568825,115847 -k1,514:30114492,23213789:-2468537 -) -(1,514:30114492,23213789:2468537,452978,115847 -k1,514:30114492,23213789:3277 -h1,514:32579752,23213789:0,411205,112570 -) -k1,514:32583029,23213789:0 -) -(1,515:6630773,24055277:25952256,505283,134348 -k1,514:10156862,24055277:240769 -k1,514:11416716,24055277:240769 -k1,514:13695655,24055277:240769 -k1,514:15616767,24055277:240769 -k1,514:16666906,24055277:240769 -k1,514:17926760,24055277:240769 -k1,514:20761445,24055277:240770 -k1,514:22198901,24055277:240769 -k1,514:24093143,24055277:240769 -k1,514:26615220,24055277:240769 -k1,514:27507417,24055277:240769 -k1,514:28879993,24055277:240769 -k1,514:30822732,24055277:240769 -k1,515:32583029,24055277:0 -) -(1,515:6630773,24896765:25952256,513147,126483 -k1,514:8452408,24896765:182580 -k1,514:11057855,24896765:182581 -k1,514:11871547,24896765:182580 -k1,514:13039789,24896765:182581 -k1,514:13671929,24896765:182563 -k1,514:16312110,24896765:182581 -(1,514:16312110,24896765:0,452978,115847 -r1,514:18780647,24896765:2468537,568825,115847 -k1,514:16312110,24896765:-2468537 -) -(1,514:16312110,24896765:2468537,452978,115847 -k1,514:16312110,24896765:3277 -h1,514:18777370,24896765:0,411205,112570 -) -k1,514:18963227,24896765:182580 -k1,514:19677305,24896765:182581 -k1,514:22866021,24896765:182580 -k1,514:24916377,24896765:182580 -k1,514:26492909,24896765:182581 -k1,514:27694574,24896765:182580 -k1,514:29720027,24896765:182581 -k1,514:30561899,24896765:182580 -k1,515:32583029,24896765:0 -) -(1,515:6630773,25738253:25952256,505283,134348 -g1,514:8077152,25738253 -g1,514:9295466,25738253 -g1,514:12681055,25738253 -g1,514:13566446,25738253 -g1,514:14554073,25738253 -k1,515:32583029,25738253:14782958 -g1,515:32583029,25738253 -) -v1,517:6630773,26928719:0,393216,0 -(1,542:6630773,33983766:25952256,7448263,196608 -g1,542:6630773,33983766 -g1,542:6630773,33983766 -g1,542:6434165,33983766 -(1,542:6434165,33983766:0,7448263,196608 -r1,542:32779637,33983766:26345472,7644871,196608 -k1,542:6434165,33983766:-26345472 -) -(1,542:6434165,33983766:26345472,7448263,196608 -[1,542:6630773,33983766:25952256,7251655,0 -(1,519:6630773,27016275:25952256,284164,4718 -(1,518:6630773,27016275:0,0,0 -g1,518:6630773,27016275 -g1,518:6630773,27016275 -g1,518:6303093,27016275 -(1,518:6303093,27016275:0,0,0 -) -g1,518:6630773,27016275 -) -h1,519:6946919,27016275:0,0,0 -k1,519:32583029,27016275:25636110 -g1,519:32583029,27016275 -) -(1,523:6630773,27747989:25952256,404226,76021 -(1,521:6630773,27747989:0,0,0 -g1,521:6630773,27747989 -g1,521:6630773,27747989 -g1,521:6303093,27747989 -(1,521:6303093,27747989:0,0,0 -) -g1,521:6630773,27747989 -) -g1,523:7579210,27747989 -g1,523:8843793,27747989 -h1,523:9159939,27747989:0,0,0 -k1,523:32583029,27747989:23423090 -g1,523:32583029,27747989 -) -(1,525:6630773,29069527:25952256,404226,101187 -(1,524:6630773,29069527:0,0,0 -g1,524:6630773,29069527 -g1,524:6630773,29069527 -g1,524:6303093,29069527 -(1,524:6303093,29069527:0,0,0 -) -g1,524:6630773,29069527 -) -k1,525:6630773,29069527:0 -h1,525:9159938,29069527:0,0,0 -k1,525:32583030,29069527:23423092 -g1,525:32583030,29069527 -) -(1,529:6630773,29801241:25952256,404226,76021 -(1,527:6630773,29801241:0,0,0 -g1,527:6630773,29801241 -g1,527:6630773,29801241 -g1,527:6303093,29801241 -(1,527:6303093,29801241:0,0,0 -) -g1,527:6630773,29801241 -) -g1,529:7579210,29801241 -g1,529:8843793,29801241 -h1,529:9159939,29801241:0,0,0 -k1,529:32583029,29801241:23423090 -g1,529:32583029,29801241 -) -(1,531:6630773,31122779:25952256,388497,4718 -(1,530:6630773,31122779:0,0,0 -g1,530:6630773,31122779 -g1,530:6630773,31122779 -g1,530:6303093,31122779 -(1,530:6303093,31122779:0,0,0 -) -g1,530:6630773,31122779 -) -g1,531:7263065,31122779 -g1,531:7895357,31122779 -h1,531:8211503,31122779:0,0,0 -k1,531:32583029,31122779:24371526 -g1,531:32583029,31122779 -) -(1,535:6630773,31854493:25952256,404226,76021 -(1,533:6630773,31854493:0,0,0 -g1,533:6630773,31854493 -g1,533:6630773,31854493 -g1,533:6303093,31854493 -(1,533:6303093,31854493:0,0,0 -) -g1,533:6630773,31854493 -) -g1,535:7579210,31854493 -g1,535:8843793,31854493 -h1,535:9159939,31854493:0,0,0 -k1,535:32583029,31854493:23423090 -g1,535:32583029,31854493 -) -(1,537:6630773,33176031:25952256,404226,101187 -(1,536:6630773,33176031:0,0,0 -g1,536:6630773,33176031 -g1,536:6630773,33176031 -g1,536:6303093,33176031 -(1,536:6303093,33176031:0,0,0 -) -g1,536:6630773,33176031 -) -k1,537:6630773,33176031:0 -g1,537:9159938,33176031 -g1,537:9792230,33176031 -h1,537:10424522,33176031:0,0,0 -k1,537:32583030,33176031:22158508 -g1,537:32583030,33176031 -) -(1,541:6630773,33907745:25952256,404226,76021 -(1,539:6630773,33907745:0,0,0 -g1,539:6630773,33907745 -g1,539:6630773,33907745 -g1,539:6303093,33907745 -(1,539:6303093,33907745:0,0,0 -) -g1,539:6630773,33907745 -) -g1,541:7579210,33907745 -g1,541:8843793,33907745 -h1,541:9159939,33907745:0,0,0 -k1,541:32583029,33907745:23423090 -g1,541:32583029,33907745 -) -] -) -g1,542:32583029,33983766 -g1,542:6630773,33983766 -g1,542:6630773,33983766 -g1,542:32583029,33983766 -g1,542:32583029,33983766 -) -h1,542:6630773,34180374:0,0,0 -v1,545:6630773,36070438:0,393216,0 -(1,562:6630773,43405398:25952256,7728176,589824 -g1,562:6630773,43405398 -(1,562:6630773,43405398:25952256,7728176,589824 -(1,562:6630773,43995222:25952256,8318000,0 -[1,562:6630773,43995222:25952256,8318000,0 -(1,562:6630773,43995222:25952256,8291786,0 -r1,562:6656987,43995222:26214,8291786,0 -[1,562:6656987,43995222:25899828,8291786,0 -(1,562:6656987,43405398:25899828,7112138,0 -[1,562:7246811,43405398:24720180,7112138,0 -(1,546:7246811,37380634:24720180,1087374,134348 -k1,545:8639904,37380634:183390 -k1,545:10655680,37380634:183389 -k1,545:11830630,37380634:183390 -k1,545:13706160,37380634:183390 -k1,545:17861032,37380634:183390 -k1,545:19532088,37380634:183389 -k1,545:23232140,37380634:183390 -k1,545:24700036,37380634:183390 -k1,545:25874986,37380634:183390 -k1,545:27124646,37380634:183389 -k1,545:28662010,37380634:183390 -k1,545:31966991,37380634:0 -) -(1,546:7246811,38222122:24720180,505283,134348 -k1,545:9108471,38222122:174763 -k1,545:10355402,38222122:174762 -k1,545:11700638,38222122:174763 -k1,545:14055784,38222122:174763 -k1,545:14978312,38222122:174762 -k1,545:17021506,38222122:174763 -k1,545:18480775,38222122:174763 -k1,545:20035725,38222122:174762 -k1,545:21202048,38222122:174763 -k1,545:23090577,38222122:174763 -k1,545:23951501,38222122:174762 -k1,545:25506452,38222122:174763 -k1,545:26813677,38222122:174763 -k1,545:28054710,38222122:174762 -k1,545:30360048,38222122:174763 -k1,545:31966991,38222122:0 -) -(1,546:7246811,39063610:24720180,505283,134348 -k1,545:10710553,39063610:254444 -k1,545:12156441,39063610:254443 -k1,545:13747819,39063610:254444 -k1,545:16623702,39063610:254443 -k1,545:18222289,39063610:254444 -k1,545:19673419,39063610:254443 -k1,545:21529563,39063610:254444 -k1,545:24993305,39063610:254444 -k1,545:26909741,39063610:254443 -k1,545:27695682,39063610:254444 -k1,545:28601553,39063610:254443 -k1,545:30470804,39063610:254444 -k1,545:31966991,39063610:0 -) -(1,546:7246811,39905098:24720180,505283,134348 -k1,545:11460169,39905098:192724 -k1,545:12849580,39905098:192724 -k1,545:17041310,39905098:192723 -k1,545:20879802,39905098:192724 -k1,545:23819140,39905098:192724 -(1,545:23819140,39905098:0,414482,115847 -r1,562:24529118,39905098:709978,530329,115847 -k1,545:23819140,39905098:-709978 -) -(1,545:23819140,39905098:709978,414482,115847 -k1,545:23819140,39905098:3277 -h1,545:24525841,39905098:0,411205,112570 -) -k1,545:24721842,39905098:192724 -k1,545:26106010,39905098:192723 -k1,545:29131855,39905098:192724 -k1,545:30820766,39905098:192724 -k1,546:31966991,39905098:0 -) -(1,546:7246811,40746586:24720180,513147,134348 -(1,545:7246811,40746586:0,435480,115847 -r1,562:9363637,40746586:2116826,551327,115847 -k1,545:7246811,40746586:-2116826 -) -(1,545:7246811,40746586:2116826,435480,115847 -g1,545:7953512,40746586 -g1,545:9008648,40746586 -h1,545:9360360,40746586:0,411205,112570 -) -k1,545:9629962,40746586:266325 -k1,545:10887846,40746586:266324 -k1,545:12694267,40746586:266325 -k1,545:14032761,40746586:266325 -k1,545:15512157,40746586:266325 -k1,545:19083462,40746586:266324 -k1,545:21036684,40746586:266325 -k1,545:22499696,40746586:266325 -k1,545:23858505,40746586:266324 -k1,545:24784122,40746586:266325 -k1,545:26069532,40746586:266325 -k1,545:28393687,40746586:266325 -k1,545:29980561,40746586:266324 -(1,545:30187655,40746586:0,414482,115847 -r1,562:30545921,40746586:358266,530329,115847 -k1,545:30187655,40746586:-358266 -) -(1,545:30187655,40746586:358266,414482,115847 -k1,545:30187655,40746586:3277 -h1,545:30542644,40746586:0,411205,112570 -) -k1,545:31019340,40746586:266325 -k1,545:31966991,40746586:0 -) -(1,546:7246811,41588074:24720180,513147,134348 -k1,545:11057773,41588074:165194 -k1,545:11839005,41588074:165194 -k1,545:13666847,41588074:165194 -k1,545:14499197,41588074:165194 -(1,545:14499197,41588074:0,414482,115847 -r1,562:15209175,41588074:709978,530329,115847 -k1,545:14499197,41588074:-709978 -) -(1,545:14499197,41588074:709978,414482,115847 -k1,545:14499197,41588074:3277 -h1,545:15205898,41588074:0,411205,112570 -) -k1,545:15374369,41588074:165194 -k1,545:18370719,41588074:165195 -k1,545:20076009,41588074:165194 -k1,545:20772700,41588074:165194 -k1,545:24993262,41588074:165194 -k1,545:27990922,41588074:165194 -k1,545:31966991,41588074:0 -) -(1,546:7246811,42429562:24720180,513147,134348 -k1,545:8127396,42429562:194423 -k1,545:8937858,42429562:194424 -k1,545:10151366,42429562:194423 -k1,545:11651923,42429562:194424 -k1,545:15032706,42429562:194423 -k1,545:17095560,42429562:194423 -k1,545:18394266,42429562:194424 -k1,545:19336455,42429562:194423 -k1,545:21044105,42429562:194424 -k1,545:21889956,42429562:194423 -k1,545:23965918,42429562:194423 -k1,545:24811770,42429562:194424 -k1,545:26025278,42429562:194423 -k1,545:28440062,42429562:194424 -k1,545:30682485,42429562:194423 -k1,546:31966991,42429562:0 -) -(1,546:7246811,43271050:24720180,505283,134348 -(1,545:7246811,43271050:0,414482,115847 -r1,562:7605077,43271050:358266,530329,115847 -k1,545:7246811,43271050:-358266 -) -(1,545:7246811,43271050:358266,414482,115847 -k1,545:7246811,43271050:3277 -h1,545:7601800,43271050:0,411205,112570 -) -g1,545:7977976,43271050 -(1,545:7977976,43271050:0,452978,115847 -r1,562:8336242,43271050:358266,568825,115847 -k1,545:7977976,43271050:-358266 -) -(1,545:7977976,43271050:358266,452978,115847 -k1,545:7977976,43271050:3277 -h1,545:8332965,43271050:0,411205,112570 -) -g1,545:8535471,43271050 -g1,545:9926145,43271050 -(1,545:9926145,43271050:0,414482,115847 -r1,562:10284411,43271050:358266,530329,115847 -k1,545:9926145,43271050:-358266 -) -(1,545:9926145,43271050:358266,414482,115847 -k1,545:9926145,43271050:3277 -h1,545:10281134,43271050:0,411205,112570 -) -g1,545:10483640,43271050 -g1,545:11674429,43271050 -g1,545:13611673,43271050 -g1,545:16585696,43271050 -g1,545:17804010,43271050 -g1,545:19656712,43271050 -k1,546:31966991,43271050:10456265 -g1,546:31966991,43271050 -) -] -) -] -r1,562:32583029,43995222:26214,8291786,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,568:37855564,49800853:1179648,16384,0 +) +) +k1,568:3078556,49800853:-34777008 +) +] +g1,568:6630773,4812305 +k1,568:19515153,4812305:12087462 +g1,568:20901894,4812305 +g1,568:21550700,4812305 +g1,568:24864855,4812305 +g1,568:27600327,4812305 +g1,568:29010006,4812305 +) +) +] +[1,568:6630773,45706769:25952256,40108032,0 +(1,568:6630773,45706769:25952256,40108032,0 +(1,568:6630773,45706769:0,0,0 +g1,568:6630773,45706769 +) +[1,568:6630773,45706769:25952256,40108032,0 +(1,487:6630773,6254097:25952256,513147,134348 +k1,486:9802266,6254097:228926 +(1,486:9802266,6254097:0,414482,115847 +r1,486:10160532,6254097:358266,530329,115847 +k1,486:9802266,6254097:-358266 +) +(1,486:9802266,6254097:358266,414482,115847 +k1,486:9802266,6254097:3277 +h1,486:10157255,6254097:0,411205,112570 +) +k1,486:10389458,6254097:228926 +k1,486:11809829,6254097:228926 +(1,486:11809829,6254097:0,414482,115847 +r1,486:12168095,6254097:358266,530329,115847 +k1,486:11809829,6254097:-358266 +) +(1,486:11809829,6254097:358266,414482,115847 +k1,486:11809829,6254097:3277 +h1,486:12164818,6254097:0,411205,112570 +) +k1,486:12397021,6254097:228926 +k1,486:13617507,6254097:228926 +k1,486:15018872,6254097:228926 +k1,486:18010141,6254097:228926 +k1,486:21254378,6254097:228926 +k1,486:24095570,6254097:228927 +k1,486:26392812,6254097:228926 +k1,486:27726020,6254097:228926 +k1,486:28702712,6254097:228926 +k1,486:30320346,6254097:228926 +k1,486:31165310,6254097:228926 +k1,486:31809049,6254097:228896 +k1,487:32583029,6254097:0 +) +(1,487:6630773,7095585:25952256,505283,134348 +k1,486:9146895,7095585:245955 +k1,486:9850948,7095585:245956 +k1,486:10628400,7095585:245955 +k1,486:11940627,7095585:245956 +k1,486:12542442,7095585:245955 +k1,486:14372402,7095585:245955 +k1,486:15943496,7095585:245956 +k1,486:16840879,7095585:245955 +k1,486:18179320,7095585:245956 +k1,486:19779249,7095585:245955 +k1,486:21413912,7095585:245955 +k1,486:23901855,7095585:245956 +k1,486:25636133,7095585:245955 +k1,486:26095034,7095585:245909 +k1,486:27316820,7095585:245955 +k1,486:29298169,7095585:245956 +k1,486:30898098,7095585:245955 +k1,486:32583029,7095585:0 +) +(1,487:6630773,7937073:25952256,505283,134348 +k1,486:9105060,7937073:232300 +k1,486:12691493,7937073:232300 +k1,486:14208298,7937073:232299 +k1,486:14972095,7937073:232300 +k1,486:17491602,7937073:232300 +k1,486:19009718,7937073:232300 +k1,486:19597877,7937073:232299 +k1,486:21184151,7937073:232300 +k1,486:22593478,7937073:232300 +k1,486:24324586,7937073:232300 +k1,486:27491587,7937073:232299 +k1,486:28339925,7937073:232300 +k1,486:29591310,7937073:232300 +k1,486:32583029,7937073:0 +) +(1,487:6630773,8778561:25952256,505283,126483 +k1,486:7439861,8778561:193050 +k1,486:8836152,8778561:193050 +k1,486:11446826,8778561:193051 +k1,486:13558770,8778561:193050 +k1,486:14770905,8778561:193050 +k1,486:17002125,8778561:193050 +k1,486:19205820,8778561:193050 +k1,486:20874086,8778561:193051 +k1,486:21876506,8778561:193050 +k1,486:25575732,8778561:193050 +k1,486:26420210,8778561:193050 +k1,486:27632346,8778561:193051 +k1,486:29022083,8778561:193050 +k1,486:31218569,8778561:193050 +k1,487:32583029,8778561:0 +) +(1,487:6630773,9620049:25952256,505283,126483 +k1,486:7870277,9620049:266294 +k1,486:10204887,9620049:266294 +k1,486:13898714,9620049:266294 +k1,486:15673647,9620049:266294 +k1,486:18518127,9620049:266294 +k1,486:21036238,9620049:266294 +k1,486:21930368,9620049:266295 +k1,486:23215747,9620049:266294 +k1,486:25452709,9620049:266294 +k1,486:27761105,9620049:266294 +(1,486:27761105,9620049:0,414482,115847 +r1,486:28119371,9620049:358266,530329,115847 +k1,486:27761105,9620049:-358266 +) +(1,486:27761105,9620049:358266,414482,115847 +k1,486:27761105,9620049:3277 +h1,486:28116094,9620049:0,411205,112570 +) +k1,486:28385665,9620049:266294 +k1,486:29843404,9620049:266294 +(1,486:29843404,9620049:0,452978,115847 +r1,486:30201670,9620049:358266,568825,115847 +k1,486:29843404,9620049:-358266 +) +(1,486:29843404,9620049:358266,452978,115847 +k1,486:29843404,9620049:3277 +h1,486:30198393,9620049:0,411205,112570 +) +k1,486:30467964,9620049:266294 +k1,486:31725818,9620049:266294 +k1,487:32583029,9620049:0 +) +(1,487:6630773,10461537:25952256,505283,126483 +k1,486:9458259,10461537:268960 +k1,486:11962651,10461537:268959 +k1,486:14742951,10461537:268960 +k1,486:17253898,10461537:268960 +k1,486:17735779,10461537:268889 +k1,486:19773556,10461537:268960 +k1,486:21517730,10461537:268959 +k1,486:23299916,10461537:268960 +k1,486:25637192,10461537:268960 +k1,486:27052376,10461537:268959 +(1,486:27052376,10461537:0,452978,115847 +r1,486:31631184,10461537:4578808,568825,115847 +k1,486:27052376,10461537:-4578808 +) +(1,486:27052376,10461537:4578808,452978,115847 +k1,486:27052376,10461537:3277 +h1,486:31627907,10461537:0,411205,112570 +) +k1,486:31900144,10461537:268960 +k1,487:32583029,10461537:0 +) +(1,487:6630773,11303025:25952256,513147,126483 +(1,486:6630773,11303025:0,452978,115847 +r1,486:13319851,11303025:6689078,568825,115847 +k1,486:6630773,11303025:-6689078 +) +(1,486:6630773,11303025:6689078,452978,115847 +k1,486:6630773,11303025:3277 +h1,486:13316574,11303025:0,411205,112570 +) +g1,486:13519080,11303025 +g1,486:14184270,11303025 +g1,486:15763687,11303025 +g1,486:17154361,11303025 +g1,486:18863540,11303025 +g1,486:21039990,11303025 +g1,486:21890647,11303025 +g1,486:24298439,11303025 +k1,487:32583029,11303025:4303933 +g1,487:32583029,11303025 +) +v1,489:6630773,12493491:0,393216,0 +(1,517:6630773,21651405:25952256,9551130,196608 +g1,517:6630773,21651405 +g1,517:6630773,21651405 +g1,517:6434165,21651405 +(1,517:6434165,21651405:0,9551130,196608 +r1,517:32779637,21651405:26345472,9747738,196608 +k1,517:6434165,21651405:-26345472 +) +(1,517:6434165,21651405:26345472,9551130,196608 +[1,517:6630773,21651405:25952256,9354522,0 +(1,491:6630773,12685380:25952256,388497,4718 +(1,490:6630773,12685380:0,0,0 +g1,490:6630773,12685380 +g1,490:6630773,12685380 +g1,490:6303093,12685380 +(1,490:6303093,12685380:0,0,0 +) +g1,490:6630773,12685380 +) +g1,491:7263065,12685380 +g1,491:8211503,12685380 +h1,491:8527649,12685380:0,0,0 +k1,491:32583029,12685380:24055380 +g1,491:32583029,12685380 +) +(1,492:6630773,13351558:25952256,388497,4718 +h1,492:6630773,13351558:0,0,0 +g1,492:7263065,13351558 +g1,492:7895357,13351558 +h1,492:8211503,13351558:0,0,0 +k1,492:32583029,13351558:24371526 +g1,492:32583029,13351558 +) +(1,496:6630773,14083272:25952256,404226,76021 +(1,494:6630773,14083272:0,0,0 +g1,494:6630773,14083272 +g1,494:6630773,14083272 +g1,494:6303093,14083272 +(1,494:6303093,14083272:0,0,0 +) +g1,494:6630773,14083272 +) +g1,496:7579210,14083272 +g1,496:8843793,14083272 +h1,496:9159939,14083272:0,0,0 +k1,496:32583029,14083272:23423090 +g1,496:32583029,14083272 +) +(1,498:6630773,15404810:25952256,284164,4718 +(1,497:6630773,15404810:0,0,0 +g1,497:6630773,15404810 +g1,497:6630773,15404810 +g1,497:6303093,15404810 +(1,497:6303093,15404810:0,0,0 +) +g1,497:6630773,15404810 +) +h1,498:6946919,15404810:0,0,0 +k1,498:32583029,15404810:25636110 +g1,498:32583029,15404810 +) +(1,502:6630773,16136524:25952256,404226,76021 +(1,500:6630773,16136524:0,0,0 +g1,500:6630773,16136524 +g1,500:6630773,16136524 +g1,500:6303093,16136524 +(1,500:6303093,16136524:0,0,0 +) +g1,500:6630773,16136524 +) +g1,502:7579210,16136524 +g1,502:8843793,16136524 +h1,502:9159939,16136524:0,0,0 +k1,502:32583029,16136524:23423090 +g1,502:32583029,16136524 +) +(1,504:6630773,17458062:25952256,404226,9436 +(1,503:6630773,17458062:0,0,0 +g1,503:6630773,17458062 +g1,503:6630773,17458062 +g1,503:6303093,17458062 +(1,503:6303093,17458062:0,0,0 +) +g1,503:6630773,17458062 +) +g1,504:7263065,17458062 +g1,504:8211503,17458062 +h1,504:8843794,17458062:0,0,0 +k1,504:32583030,17458062:23739236 +g1,504:32583030,17458062 +) +(1,505:6630773,18124240:25952256,404226,6290 +h1,505:6630773,18124240:0,0,0 +g1,505:7263065,18124240 +g1,505:8211503,18124240 +g1,505:8843795,18124240 +g1,505:9476087,18124240 +h1,505:9792233,18124240:0,0,0 +k1,505:32583029,18124240:22790796 +g1,505:32583029,18124240 +) +(1,506:6630773,18790418:25952256,404226,6290 +h1,506:6630773,18790418:0,0,0 +h1,506:6946919,18790418:0,0,0 +k1,506:32583029,18790418:25636110 +g1,506:32583029,18790418 +) +(1,510:6630773,19522132:25952256,404226,76021 +(1,508:6630773,19522132:0,0,0 +g1,508:6630773,19522132 +g1,508:6630773,19522132 +g1,508:6303093,19522132 +(1,508:6303093,19522132:0,0,0 +) +g1,508:6630773,19522132 +) +g1,510:7579210,19522132 +g1,510:8843793,19522132 +h1,510:9476084,19522132:0,0,0 +k1,510:32583028,19522132:23106944 +g1,510:32583028,19522132 +) +(1,512:6630773,20843670:25952256,388497,9436 +(1,511:6630773,20843670:0,0,0 +g1,511:6630773,20843670 +g1,511:6630773,20843670 +g1,511:6303093,20843670 +(1,511:6303093,20843670:0,0,0 +) +g1,511:6630773,20843670 +) +k1,512:6630773,20843670:0 +g1,512:8211501,20843670 +g1,512:8843793,20843670 +h1,512:9792230,20843670:0,0,0 +k1,512:32583030,20843670:22790800 +g1,512:32583030,20843670 +) +(1,516:6630773,21575384:25952256,404226,76021 +(1,514:6630773,21575384:0,0,0 +g1,514:6630773,21575384 +g1,514:6630773,21575384 +g1,514:6303093,21575384 +(1,514:6303093,21575384:0,0,0 +) +g1,514:6630773,21575384 +) +g1,516:7579210,21575384 +g1,516:8843793,21575384 +h1,516:10108376,21575384:0,0,0 +k1,516:32583028,21575384:22474652 +g1,516:32583028,21575384 +) +] +) +g1,517:32583029,21651405 +g1,517:6630773,21651405 +g1,517:6630773,21651405 +g1,517:32583029,21651405 +g1,517:32583029,21651405 +) +h1,517:6630773,21848013:0,0,0 +(1,521:6630773,23213789:25952256,513147,134348 +h1,520:6630773,23213789:983040,0,0 +k1,520:10441408,23213789:158969 +k1,520:11619461,23213789:158968 +k1,520:13516445,23213789:158969 +k1,520:14334706,23213789:158969 +k1,520:14849534,23213789:158968 +k1,520:17519843,23213789:158969 +k1,520:18309924,23213789:158969 +k1,520:19454554,23213789:158969 +k1,520:20063059,23213789:158928 +k1,520:22505958,23213789:158969 +k1,520:25671063,23213789:158969 +k1,520:27260027,23213789:158968 +k1,520:30114492,23213789:158969 +(1,520:30114492,23213789:0,452978,115847 +r1,520:32583029,23213789:2468537,568825,115847 +k1,520:30114492,23213789:-2468537 +) +(1,520:30114492,23213789:2468537,452978,115847 +k1,520:30114492,23213789:3277 +h1,520:32579752,23213789:0,411205,112570 +) +k1,520:32583029,23213789:0 +) +(1,521:6630773,24055277:25952256,505283,134348 +k1,520:10156862,24055277:240769 +k1,520:11416716,24055277:240769 +k1,520:13695655,24055277:240769 +k1,520:15616767,24055277:240769 +k1,520:16666906,24055277:240769 +k1,520:17926760,24055277:240769 +k1,520:20761445,24055277:240770 +k1,520:22198901,24055277:240769 +k1,520:24093143,24055277:240769 +k1,520:26615220,24055277:240769 +k1,520:27507417,24055277:240769 +k1,520:28879993,24055277:240769 +k1,520:30822732,24055277:240769 +k1,521:32583029,24055277:0 +) +(1,521:6630773,24896765:25952256,513147,126483 +k1,520:8505868,24896765:236040 +k1,520:11164775,24896765:236041 +k1,520:12031927,24896765:236040 +k1,520:13253629,24896765:236041 +k1,520:13939210,24896765:236004 +k1,520:16632850,24896765:236040 +(1,520:16632850,24896765:0,452978,115847 +r1,520:19101387,24896765:2468537,568825,115847 +k1,520:16632850,24896765:-2468537 +) +(1,520:16632850,24896765:2468537,452978,115847 +k1,520:16632850,24896765:3277 +h1,520:19098110,24896765:0,411205,112570 +) +k1,520:19337428,24896765:236041 +k1,520:20104965,24896765:236040 +k1,520:23347142,24896765:236041 +k1,520:25450958,24896765:236040 +k1,520:27080950,24896765:236041 +k1,520:28336075,24896765:236040 +k1,520:30414988,24896765:236041 +k1,520:31310320,24896765:236040 +k1,521:32583029,24896765:0 +) +(1,521:6630773,25738253:25952256,505283,134348 +g1,520:8825573,25738253 +g1,520:10043887,25738253 +g1,520:13429476,25738253 +g1,520:14314867,25738253 +g1,520:15302494,25738253 +k1,521:32583029,25738253:14034537 +g1,521:32583029,25738253 +) +v1,523:6630773,26928719:0,393216,0 +(1,548:6630773,33983766:25952256,7448263,196608 +g1,548:6630773,33983766 +g1,548:6630773,33983766 +g1,548:6434165,33983766 +(1,548:6434165,33983766:0,7448263,196608 +r1,548:32779637,33983766:26345472,7644871,196608 +k1,548:6434165,33983766:-26345472 +) +(1,548:6434165,33983766:26345472,7448263,196608 +[1,548:6630773,33983766:25952256,7251655,0 +(1,525:6630773,27016275:25952256,284164,4718 +(1,524:6630773,27016275:0,0,0 +g1,524:6630773,27016275 +g1,524:6630773,27016275 +g1,524:6303093,27016275 +(1,524:6303093,27016275:0,0,0 +) +g1,524:6630773,27016275 +) +h1,525:6946919,27016275:0,0,0 +k1,525:32583029,27016275:25636110 +g1,525:32583029,27016275 +) +(1,529:6630773,27747989:25952256,404226,76021 +(1,527:6630773,27747989:0,0,0 +g1,527:6630773,27747989 +g1,527:6630773,27747989 +g1,527:6303093,27747989 +(1,527:6303093,27747989:0,0,0 +) +g1,527:6630773,27747989 +) +g1,529:7579210,27747989 +g1,529:8843793,27747989 +h1,529:9159939,27747989:0,0,0 +k1,529:32583029,27747989:23423090 +g1,529:32583029,27747989 +) +(1,531:6630773,29069527:25952256,404226,101187 +(1,530:6630773,29069527:0,0,0 +g1,530:6630773,29069527 +g1,530:6630773,29069527 +g1,530:6303093,29069527 +(1,530:6303093,29069527:0,0,0 +) +g1,530:6630773,29069527 +) +k1,531:6630773,29069527:0 +h1,531:9159938,29069527:0,0,0 +k1,531:32583030,29069527:23423092 +g1,531:32583030,29069527 +) +(1,535:6630773,29801241:25952256,404226,76021 +(1,533:6630773,29801241:0,0,0 +g1,533:6630773,29801241 +g1,533:6630773,29801241 +g1,533:6303093,29801241 +(1,533:6303093,29801241:0,0,0 +) +g1,533:6630773,29801241 +) +g1,535:7579210,29801241 +g1,535:8843793,29801241 +h1,535:9159939,29801241:0,0,0 +k1,535:32583029,29801241:23423090 +g1,535:32583029,29801241 +) +(1,537:6630773,31122779:25952256,388497,4718 +(1,536:6630773,31122779:0,0,0 +g1,536:6630773,31122779 +g1,536:6630773,31122779 +g1,536:6303093,31122779 +(1,536:6303093,31122779:0,0,0 +) +g1,536:6630773,31122779 +) +g1,537:7263065,31122779 +g1,537:7895357,31122779 +h1,537:8211503,31122779:0,0,0 +k1,537:32583029,31122779:24371526 +g1,537:32583029,31122779 +) +(1,541:6630773,31854493:25952256,404226,76021 +(1,539:6630773,31854493:0,0,0 +g1,539:6630773,31854493 +g1,539:6630773,31854493 +g1,539:6303093,31854493 +(1,539:6303093,31854493:0,0,0 +) +g1,539:6630773,31854493 +) +g1,541:7579210,31854493 +g1,541:8843793,31854493 +h1,541:9159939,31854493:0,0,0 +k1,541:32583029,31854493:23423090 +g1,541:32583029,31854493 +) +(1,543:6630773,33176031:25952256,404226,101187 +(1,542:6630773,33176031:0,0,0 +g1,542:6630773,33176031 +g1,542:6630773,33176031 +g1,542:6303093,33176031 +(1,542:6303093,33176031:0,0,0 +) +g1,542:6630773,33176031 +) +k1,543:6630773,33176031:0 +g1,543:9159938,33176031 +g1,543:9792230,33176031 +h1,543:10424522,33176031:0,0,0 +k1,543:32583030,33176031:22158508 +g1,543:32583030,33176031 +) +(1,547:6630773,33907745:25952256,404226,76021 +(1,545:6630773,33907745:0,0,0 +g1,545:6630773,33907745 +g1,545:6630773,33907745 +g1,545:6303093,33907745 +(1,545:6303093,33907745:0,0,0 +) +g1,545:6630773,33907745 +) +g1,547:7579210,33907745 +g1,547:8843793,33907745 +h1,547:9159939,33907745:0,0,0 +k1,547:32583029,33907745:23423090 +g1,547:32583029,33907745 +) +] +) +g1,548:32583029,33983766 +g1,548:6630773,33983766 +g1,548:6630773,33983766 +g1,548:32583029,33983766 +g1,548:32583029,33983766 +) +h1,548:6630773,34180374:0,0,0 +v1,551:6630773,36070438:0,393216,0 +(1,568:6630773,43405398:25952256,7728176,589824 +g1,568:6630773,43405398 +(1,568:6630773,43405398:25952256,7728176,589824 +(1,568:6630773,43995222:25952256,8318000,0 +[1,568:6630773,43995222:25952256,8318000,0 +(1,568:6630773,43995222:25952256,8291786,0 +r1,568:6656987,43995222:26214,8291786,0 +[1,568:6656987,43995222:25899828,8291786,0 +(1,568:6656987,43405398:25899828,7112138,0 +[1,568:7246811,43405398:24720180,7112138,0 +(1,552:7246811,37380634:24720180,1087374,134348 +k1,551:8639904,37380634:183390 +k1,551:10655680,37380634:183389 +k1,551:11830630,37380634:183390 +k1,551:13706160,37380634:183390 +k1,551:17861032,37380634:183390 +k1,551:19532088,37380634:183389 +k1,551:23232140,37380634:183390 +k1,551:24700036,37380634:183390 +k1,551:25874986,37380634:183390 +k1,551:27124646,37380634:183389 +k1,551:28662010,37380634:183390 +k1,551:31966991,37380634:0 +) +(1,552:7246811,38222122:24720180,505283,134348 +k1,551:9108471,38222122:174763 +k1,551:10355402,38222122:174762 +k1,551:11700638,38222122:174763 +k1,551:14055784,38222122:174763 +k1,551:14978312,38222122:174762 +k1,551:17021506,38222122:174763 +k1,551:18480775,38222122:174763 +k1,551:20035725,38222122:174762 +k1,551:21202048,38222122:174763 +k1,551:23090577,38222122:174763 +k1,551:23951501,38222122:174762 +k1,551:25506452,38222122:174763 +k1,551:26813677,38222122:174763 +k1,551:28054710,38222122:174762 +k1,551:30360048,38222122:174763 +k1,551:31966991,38222122:0 +) +(1,552:7246811,39063610:24720180,505283,134348 +k1,551:10710553,39063610:254444 +k1,551:12156441,39063610:254443 +k1,551:13747819,39063610:254444 +k1,551:16623702,39063610:254443 +k1,551:18222289,39063610:254444 +k1,551:19673419,39063610:254443 +k1,551:21529563,39063610:254444 +k1,551:24993305,39063610:254444 +k1,551:26909741,39063610:254443 +k1,551:27695682,39063610:254444 +k1,551:28601553,39063610:254443 +k1,551:30470804,39063610:254444 +k1,551:31966991,39063610:0 +) +(1,552:7246811,39905098:24720180,505283,134348 +k1,551:11460169,39905098:192724 +k1,551:12849580,39905098:192724 +k1,551:17041310,39905098:192723 +k1,551:20879802,39905098:192724 +k1,551:23819140,39905098:192724 +(1,551:23819140,39905098:0,414482,115847 +r1,568:24529118,39905098:709978,530329,115847 +k1,551:23819140,39905098:-709978 +) +(1,551:23819140,39905098:709978,414482,115847 +k1,551:23819140,39905098:3277 +h1,551:24525841,39905098:0,411205,112570 +) +k1,551:24721842,39905098:192724 +k1,551:26106010,39905098:192723 +k1,551:29131855,39905098:192724 +k1,551:30820766,39905098:192724 +k1,552:31966991,39905098:0 +) +(1,552:7246811,40746586:24720180,513147,134348 +(1,551:7246811,40746586:0,435480,115847 +r1,568:9363637,40746586:2116826,551327,115847 +k1,551:7246811,40746586:-2116826 +) +(1,551:7246811,40746586:2116826,435480,115847 +g1,551:7953512,40746586 +g1,551:9008648,40746586 +h1,551:9360360,40746586:0,411205,112570 +) +k1,551:9629962,40746586:266325 +k1,551:10887846,40746586:266324 +k1,551:12694267,40746586:266325 +k1,551:14032761,40746586:266325 +k1,551:15512157,40746586:266325 +k1,551:19083462,40746586:266324 +k1,551:21036684,40746586:266325 +k1,551:22499696,40746586:266325 +k1,551:23858505,40746586:266324 +k1,551:24784122,40746586:266325 +k1,551:26069532,40746586:266325 +k1,551:28393687,40746586:266325 +k1,551:29980561,40746586:266324 +(1,551:30187655,40746586:0,414482,115847 +r1,568:30545921,40746586:358266,530329,115847 +k1,551:30187655,40746586:-358266 +) +(1,551:30187655,40746586:358266,414482,115847 +k1,551:30187655,40746586:3277 +h1,551:30542644,40746586:0,411205,112570 +) +k1,551:31019340,40746586:266325 +k1,551:31966991,40746586:0 +) +(1,552:7246811,41588074:24720180,513147,134348 +k1,551:11057773,41588074:165194 +k1,551:11839005,41588074:165194 +k1,551:13666847,41588074:165194 +k1,551:14499197,41588074:165194 +(1,551:14499197,41588074:0,414482,115847 +r1,568:15209175,41588074:709978,530329,115847 +k1,551:14499197,41588074:-709978 +) +(1,551:14499197,41588074:709978,414482,115847 +k1,551:14499197,41588074:3277 +h1,551:15205898,41588074:0,411205,112570 +) +k1,551:15374369,41588074:165194 +k1,551:18370719,41588074:165195 +k1,551:20076009,41588074:165194 +k1,551:20772700,41588074:165194 +k1,551:24993262,41588074:165194 +k1,551:27990922,41588074:165194 +k1,551:31966991,41588074:0 +) +(1,552:7246811,42429562:24720180,513147,134348 +k1,551:8127396,42429562:194423 +k1,551:8937858,42429562:194424 +k1,551:10151366,42429562:194423 +k1,551:11651923,42429562:194424 +k1,551:15032706,42429562:194423 +k1,551:17095560,42429562:194423 +k1,551:18394266,42429562:194424 +k1,551:19336455,42429562:194423 +k1,551:21044105,42429562:194424 +k1,551:21889956,42429562:194423 +k1,551:23965918,42429562:194423 +k1,551:24811770,42429562:194424 +k1,551:26025278,42429562:194423 +k1,551:28440062,42429562:194424 +k1,551:30682485,42429562:194423 +k1,552:31966991,42429562:0 +) +(1,552:7246811,43271050:24720180,505283,134348 +(1,551:7246811,43271050:0,414482,115847 +r1,568:7605077,43271050:358266,530329,115847 +k1,551:7246811,43271050:-358266 +) +(1,551:7246811,43271050:358266,414482,115847 +k1,551:7246811,43271050:3277 +h1,551:7601800,43271050:0,411205,112570 +) +g1,551:7977976,43271050 +(1,551:7977976,43271050:0,452978,115847 +r1,568:8336242,43271050:358266,568825,115847 +k1,551:7977976,43271050:-358266 +) +(1,551:7977976,43271050:358266,452978,115847 +k1,551:7977976,43271050:3277 +h1,551:8332965,43271050:0,411205,112570 +) +g1,551:8535471,43271050 +g1,551:9926145,43271050 +(1,551:9926145,43271050:0,414482,115847 +r1,568:10284411,43271050:358266,530329,115847 +k1,551:9926145,43271050:-358266 +) +(1,551:9926145,43271050:358266,414482,115847 +k1,551:9926145,43271050:3277 +h1,551:10281134,43271050:0,411205,112570 +) +g1,551:10483640,43271050 +g1,551:11674429,43271050 +g1,551:13611673,43271050 +g1,551:16585696,43271050 +g1,551:17804010,43271050 +g1,551:19656712,43271050 +k1,552:31966991,43271050:10456265 +g1,552:31966991,43271050 +) +] +) +] +r1,568:32583029,43995222:26214,8291786,0 ) ] ) ) -g1,562:32583029,43405398 +g1,568:32583029,43405398 ) ] -(1,562:32583029,45706769:0,0,0 -g1,562:32583029,45706769 +(1,568:32583029,45706769:0,0,0 +g1,568:32583029,45706769 ) ) ] -(1,562:6630773,47279633:25952256,0,0 -h1,562:6630773,47279633:25952256,0,0 +(1,568:6630773,47279633:25952256,0,0 +h1,568:6630773,47279633:25952256,0,0 ) ] -h1,562:4262630,4025873:0,0,0 +h1,568:4262630,4025873:0,0,0 ] -!23434 +!23435 }31 -Input:162:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:163:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:164:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:165:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:166:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:167:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:168:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:169:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:170:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:171:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:172:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!946 +Input:158:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:159:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:160:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:161:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:162:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:163:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:164:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:165:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:166:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:167:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:168:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1012 {32 -[1,636:4262630,47279633:28320399,43253760,0 -(1,636:4262630,4025873:0,0,0 -[1,636:-473657,4025873:25952256,0,0 -(1,636:-473657,-710414:25952256,0,0 -h1,636:-473657,-710414:0,0,0 -(1,636:-473657,-710414:0,0,0 -(1,636:-473657,-710414:0,0,0 -g1,636:-473657,-710414 -(1,636:-473657,-710414:65781,0,65781 -g1,636:-407876,-710414 -[1,636:-407876,-644633:0,0,0 +[1,642:4262630,47279633:28320399,43253760,0 +(1,642:4262630,4025873:0,0,0 +[1,642:-473657,4025873:25952256,0,0 +(1,642:-473657,-710414:25952256,0,0 +h1,642:-473657,-710414:0,0,0 +(1,642:-473657,-710414:0,0,0 +(1,642:-473657,-710414:0,0,0 +g1,642:-473657,-710414 +(1,642:-473657,-710414:65781,0,65781 +g1,642:-407876,-710414 +[1,642:-407876,-644633:0,0,0 ] ) -k1,636:-473657,-710414:-65781 +k1,642:-473657,-710414:-65781 ) ) -k1,636:25478599,-710414:25952256 -g1,636:25478599,-710414 +k1,642:25478599,-710414:25952256 +g1,642:25478599,-710414 ) ] ) -[1,636:6630773,47279633:25952256,43253760,0 -[1,636:6630773,4812305:25952256,786432,0 -(1,636:6630773,4812305:25952256,505283,7863 -(1,636:6630773,4812305:25952256,505283,7863 -g1,636:3078558,4812305 -[1,636:3078558,4812305:0,0,0 -(1,636:3078558,2439708:0,1703936,0 -k1,636:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,636:2537886,2439708:1179648,16384,0 +[1,642:6630773,47279633:25952256,43253760,0 +[1,642:6630773,4812305:25952256,786432,0 +(1,642:6630773,4812305:25952256,505283,7863 +(1,642:6630773,4812305:25952256,505283,7863 +g1,642:3078558,4812305 +[1,642:3078558,4812305:0,0,0 +(1,642:3078558,2439708:0,1703936,0 +k1,642:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,642:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,636:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,642:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,636:3078558,4812305:0,0,0 -(1,636:3078558,2439708:0,1703936,0 -g1,636:29030814,2439708 -g1,636:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,636:36151628,1915420:16384,1179648,0 +[1,642:3078558,4812305:0,0,0 +(1,642:3078558,2439708:0,1703936,0 +g1,642:29030814,2439708 +g1,642:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,642:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,636:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,642:37855564,2439708:1179648,16384,0 ) ) -k1,636:3078556,2439708:-34777008 +k1,642:3078556,2439708:-34777008 ) ] -[1,636:3078558,4812305:0,0,0 -(1,636:3078558,49800853:0,16384,2228224 -k1,636:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,636:2537886,49800853:1179648,16384,0 +[1,642:3078558,4812305:0,0,0 +(1,642:3078558,49800853:0,16384,2228224 +k1,642:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,642:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,636:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,642:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,636:3078558,4812305:0,0,0 -(1,636:3078558,49800853:0,16384,2228224 -g1,636:29030814,49800853 -g1,636:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,636:36151628,51504789:16384,1179648,0 +[1,642:3078558,4812305:0,0,0 +(1,642:3078558,49800853:0,16384,2228224 +g1,642:29030814,49800853 +g1,642:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,642:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,636:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,642:37855564,49800853:1179648,16384,0 ) ) -k1,636:3078556,49800853:-34777008 -) -] -g1,636:6630773,4812305 -g1,636:6630773,4812305 -g1,636:9516978,4812305 -g1,636:11710468,4812305 -g1,636:13120147,4812305 -g1,636:16560787,4812305 -k1,636:31786111,4812305:15225324 -) -) -] -[1,636:6630773,45706769:25952256,40108032,0 -(1,636:6630773,45706769:25952256,40108032,0 -(1,636:6630773,45706769:0,0,0 -g1,636:6630773,45706769 +k1,642:3078556,49800853:-34777008 +) +] +g1,642:6630773,4812305 +g1,642:6630773,4812305 +g1,642:9516978,4812305 +g1,642:11710468,4812305 +g1,642:13120147,4812305 +g1,642:16560787,4812305 +k1,642:31786111,4812305:15225324 +) +) +] +[1,642:6630773,45706769:25952256,40108032,0 +(1,642:6630773,45706769:25952256,40108032,0 +(1,642:6630773,45706769:0,0,0 +g1,642:6630773,45706769 ) -[1,636:6630773,45706769:25952256,40108032,0 -v1,562:6630773,6254097:0,393216,0 -(1,562:6630773,12440399:25952256,6579518,616038 -g1,562:6630773,12440399 -(1,562:6630773,12440399:25952256,6579518,616038 -(1,562:6630773,13056437:25952256,7195556,0 -[1,562:6630773,13056437:25952256,7195556,0 -(1,562:6630773,13030223:25952256,7169342,0 -r1,562:6656987,13030223:26214,7169342,0 -[1,562:6656987,13030223:25899828,7169342,0 -(1,562:6656987,12440399:25899828,5989694,0 -[1,562:7246811,12440399:24720180,5989694,0 -v1,548:7246811,6843921:0,393216,0 -(1,559:7246811,11719503:24720180,5268798,196608 -g1,559:7246811,11719503 -g1,559:7246811,11719503 -g1,559:7050203,11719503 -(1,559:7050203,11719503:0,5268798,196608 -r1,562:32163599,11719503:25113396,5465406,196608 -k1,559:7050203,11719503:-25113396 +[1,642:6630773,45706769:25952256,40108032,0 +v1,568:6630773,6254097:0,393216,0 +(1,568:6630773,12440399:25952256,6579518,616038 +g1,568:6630773,12440399 +(1,568:6630773,12440399:25952256,6579518,616038 +(1,568:6630773,13056437:25952256,7195556,0 +[1,568:6630773,13056437:25952256,7195556,0 +(1,568:6630773,13030223:25952256,7169342,0 +r1,568:6656987,13030223:26214,7169342,0 +[1,568:6656987,13030223:25899828,7169342,0 +(1,568:6656987,12440399:25899828,5989694,0 +[1,568:7246811,12440399:24720180,5989694,0 +v1,554:7246811,6843921:0,393216,0 +(1,565:7246811,11719503:24720180,5268798,196608 +g1,565:7246811,11719503 +g1,565:7246811,11719503 +g1,565:7050203,11719503 +(1,565:7050203,11719503:0,5268798,196608 +r1,568:32163599,11719503:25113396,5465406,196608 +k1,565:7050203,11719503:-25113396 ) -(1,559:7050203,11719503:25113396,5268798,196608 -[1,559:7246811,11719503:24720180,5072190,0 -(1,550:7246811,7051539:24720180,404226,9436 -(1,549:7246811,7051539:0,0,0 -g1,549:7246811,7051539 -g1,549:7246811,7051539 -g1,549:6919131,7051539 -(1,549:6919131,7051539:0,0,0 +(1,565:7050203,11719503:25113396,5268798,196608 +[1,565:7246811,11719503:24720180,5072190,0 +(1,556:7246811,7051539:24720180,404226,9436 +(1,555:7246811,7051539:0,0,0 +g1,555:7246811,7051539 +g1,555:7246811,7051539 +g1,555:6919131,7051539 +(1,555:6919131,7051539:0,0,0 ) -g1,549:7246811,7051539 -) -g1,550:7879103,7051539 -g1,550:8827541,7051539 -g1,550:9459833,7051539 -g1,550:10408271,7051539 -g1,550:11040563,7051539 -g1,550:11989001,7051539 -h1,550:12937438,7051539:0,0,0 -k1,550:31966990,7051539:19029552 -g1,550:31966990,7051539 -) -(1,551:7246811,7717717:24720180,284164,4718 -h1,551:7246811,7717717:0,0,0 -h1,551:7562957,7717717:0,0,0 -k1,551:31966991,7717717:24404034 -g1,551:31966991,7717717 -) -(1,552:7246811,8383895:24720180,404226,6290 -h1,552:7246811,8383895:0,0,0 -h1,552:7562957,8383895:0,0,0 -k1,552:31966991,8383895:24404034 -g1,552:31966991,8383895 -) -(1,553:7246811,9050073:24720180,284164,6290 -h1,553:7246811,9050073:0,0,0 -h1,553:7562957,9050073:0,0,0 -k1,553:31966991,9050073:24404034 -g1,553:31966991,9050073 -) -(1,554:7246811,9716251:24720180,388497,4718 -h1,554:7246811,9716251:0,0,0 -g1,554:7879103,9716251 -g1,554:8827541,9716251 -h1,554:9143687,9716251:0,0,0 -k1,554:31966991,9716251:22823304 -g1,554:31966991,9716251 -) -(1,555:7246811,10382429:24720180,284164,4718 -h1,555:7246811,10382429:0,0,0 -h1,555:7562957,10382429:0,0,0 -k1,555:31966991,10382429:24404034 -g1,555:31966991,10382429 -) -(1,556:7246811,11048607:24720180,388497,9436 -h1,556:7246811,11048607:0,0,0 -g1,556:7879103,11048607 -g1,556:8511395,11048607 -h1,556:8827541,11048607:0,0,0 -k1,556:31966991,11048607:23139450 -g1,556:31966991,11048607 -) -(1,557:7246811,11714785:24720180,284164,4718 -h1,557:7246811,11714785:0,0,0 -h1,557:7562957,11714785:0,0,0 -k1,557:31966991,11714785:24404034 -g1,557:31966991,11714785 -) -] -) -g1,559:31966991,11719503 -g1,559:7246811,11719503 -g1,559:7246811,11719503 -g1,559:31966991,11719503 -g1,559:31966991,11719503 -) -h1,559:7246811,11916111:0,0,0 -] -) -] -r1,562:32583029,13030223:26214,7169342,0 -) -] -) -) -g1,562:32583029,12440399 -) -h1,562:6630773,13056437:0,0,0 -v1,565:6630773,14422213:0,393216,0 -(1,636:6630773,41224451:25952256,27195454,589824 -g1,636:6630773,41224451 -(1,636:6630773,41224451:25952256,27195454,589824 -(1,636:6630773,41814275:25952256,27785278,0 -[1,636:6630773,41814275:25952256,27785278,0 -(1,636:6630773,41814275:25952256,27759064,0 -r1,636:6656987,41814275:26214,27759064,0 -[1,636:6656987,41814275:25899828,27759064,0 -(1,636:6656987,41224451:25899828,26579416,0 -[1,636:7246811,41224451:24720180,26579416,0 -(1,566:7246811,15806920:24720180,1161885,196608 -(1,565:7246811,15806920:0,1161885,196608 -r1,636:8794447,15806920:1547636,1358493,196608 -k1,565:7246811,15806920:-1547636 -) -(1,565:7246811,15806920:1547636,1161885,196608 -) -k1,565:9018671,15806920:224224 -k1,565:9870730,15806920:224224 -k1,565:10683467,15806920:224224 -k1,565:11673808,15806920:224225 -k1,565:14714114,15806920:224224 -k1,565:17074812,15806920:224224 -k1,565:17950464,15806920:224224 -k1,565:19957267,15806920:224224 -(1,565:19957267,15806920:0,452978,115847 -r1,636:22425804,15806920:2468537,568825,115847 -k1,565:19957267,15806920:-2468537 -) -(1,565:19957267,15806920:2468537,452978,115847 -k1,565:19957267,15806920:3277 -h1,565:22422527,15806920:0,411205,112570 -) -k1,565:22650028,15806920:224224 -k1,565:23949699,15806920:224225 -k1,565:25306385,15806920:224224 -k1,565:27891871,15806920:224224 -k1,565:29135180,15806920:224224 -k1,565:31966991,15806920:0 -) -(1,566:7246811,16648408:24720180,513147,134348 -k1,565:8124762,16648408:218659 -k1,565:10067018,16648408:218659 -k1,565:11477122,16648408:218659 -k1,565:13202454,16648408:218659 -k1,565:14037150,16648408:218658 -k1,565:16534496,16648408:218659 -h1,565:17505084,16648408:0,0,0 -k1,565:17723743,16648408:218659 -k1,565:18751772,16648408:218659 -k1,565:20468584,16648408:218659 -h1,565:21265502,16648408:0,0,0 -k1,565:21864925,16648408:218659 -k1,565:23037133,16648408:218659 -k1,565:24360074,16648408:218659 -k1,565:26394735,16648408:218658 -k1,565:27079355,16648408:218659 -k1,565:28317099,16648408:218659 -k1,565:30318337,16648408:218659 -k1,565:31196288,16648408:218659 -k1,565:31966991,16648408:0 -) -(1,566:7246811,17489896:24720180,513147,134348 -g1,565:9405566,17489896 -g1,565:10136292,17489896 -(1,565:10136292,17489896:0,452978,115847 -r1,636:12604829,17489896:2468537,568825,115847 -k1,565:10136292,17489896:-2468537 -) -(1,565:10136292,17489896:2468537,452978,115847 -k1,565:10136292,17489896:3277 -h1,565:12601552,17489896:0,411205,112570 -) -g1,565:12804058,17489896 -g1,565:14397238,17489896 -g1,565:17291963,17489896 -(1,565:17291963,17489896:0,452978,115847 -r1,636:21519059,17489896:4227096,568825,115847 -k1,565:17291963,17489896:-4227096 -) -(1,565:17291963,17489896:4227096,452978,115847 -k1,565:17291963,17489896:3277 -h1,565:21515782,17489896:0,411205,112570 -) -k1,566:31966991,17489896:10274262 -g1,566:31966991,17489896 -) -v1,568:7246811,18680362:0,393216,0 -(1,582:7246811,22415145:24720180,4127999,196608 -g1,582:7246811,22415145 -g1,582:7246811,22415145 -g1,582:7050203,22415145 -(1,582:7050203,22415145:0,4127999,196608 -r1,636:32163599,22415145:25113396,4324607,196608 -k1,582:7050203,22415145:-25113396 -) -(1,582:7050203,22415145:25113396,4127999,196608 -[1,582:7246811,22415145:24720180,3931391,0 -(1,570:7246811,18887980:24720180,404226,76021 -(1,569:7246811,18887980:0,0,0 -g1,569:7246811,18887980 -g1,569:7246811,18887980 -g1,569:6919131,18887980 -(1,569:6919131,18887980:0,0,0 -) -g1,569:7246811,18887980 -) -k1,570:7246811,18887980:0 -h1,570:9459832,18887980:0,0,0 -k1,570:31966992,18887980:22507160 -g1,570:31966992,18887980 -) -(1,574:7246811,19619694:24720180,404226,76021 -(1,572:7246811,19619694:0,0,0 -g1,572:7246811,19619694 -g1,572:7246811,19619694 -g1,572:6919131,19619694 -(1,572:6919131,19619694:0,0,0 -) -g1,572:7246811,19619694 -) -g1,574:8195248,19619694 -g1,574:9459831,19619694 -h1,574:12305142,19619694:0,0,0 -k1,574:31966990,19619694:19661848 -g1,574:31966990,19619694 -) -(1,576:7246811,20941232:24720180,388497,4718 -(1,575:7246811,20941232:0,0,0 -g1,575:7246811,20941232 -g1,575:7246811,20941232 -g1,575:6919131,20941232 -(1,575:6919131,20941232:0,0,0 -) -g1,575:7246811,20941232 -) -g1,576:7879103,20941232 -g1,576:8827541,20941232 -h1,576:9143687,20941232:0,0,0 -k1,576:31966991,20941232:22823304 -g1,576:31966991,20941232 -) -(1,577:7246811,21607410:24720180,404226,76021 -h1,577:7246811,21607410:0,0,0 -k1,577:7246811,21607410:0 -h1,577:11356705,21607410:0,0,0 -k1,577:31966991,21607410:20610286 -g1,577:31966991,21607410 -) -(1,581:7246811,22339124:24720180,404226,76021 -(1,579:7246811,22339124:0,0,0 -g1,579:7246811,22339124 -g1,579:7246811,22339124 -g1,579:6919131,22339124 -(1,579:6919131,22339124:0,0,0 -) -g1,579:7246811,22339124 -) -g1,581:8195248,22339124 -g1,581:9459831,22339124 -h1,581:10724414,22339124:0,0,0 -k1,581:31966990,22339124:21242576 -g1,581:31966990,22339124 -) -] -) -g1,582:31966991,22415145 -g1,582:7246811,22415145 -g1,582:7246811,22415145 -g1,582:31966991,22415145 -g1,582:31966991,22415145 -) -h1,582:7246811,22611753:0,0,0 -(1,586:7246811,23977529:24720180,513147,134348 -h1,585:7246811,23977529:983040,0,0 -k1,585:11062972,23977529:304742 -k1,585:14183796,23977529:304742 -k1,585:15592821,23977529:304743 -k1,585:16645329,23977529:304742 -k1,585:18988241,23977529:304742 -k1,585:19909021,23977529:304742 -k1,585:22976107,23977529:304743 -k1,585:25965204,23977529:304742 -k1,585:29204648,23977529:304742 -k1,585:31966991,23977529:0 -) -(1,586:7246811,24819017:24720180,513147,134348 -k1,585:10305522,24819017:271465 -k1,585:11236278,24819017:271464 -k1,585:14584003,24819017:271465 -k1,585:17486738,24819017:271464 -k1,585:18814643,24819017:271465 -k1,585:20940121,24819017:271464 -k1,585:22813286,24819017:271465 -k1,585:26515560,24819017:271464 -k1,585:29959623,24819017:271465 -k1,586:31966991,24819017:0 -) -(1,586:7246811,25660505:24720180,513147,126483 -k1,585:9123542,25660505:237676 -k1,585:11592719,25660505:237676 -k1,585:14592737,25660505:237675 -k1,585:16546801,25660505:237676 -k1,585:17443769,25660505:237676 -k1,585:20671197,25660505:237676 -k1,585:21536707,25660505:237675 -k1,585:23376083,25660505:237676 -k1,585:25311141,25660505:237676 -k1,585:26467632,25660505:237676 -(1,585:26467632,25660505:0,452978,115847 -r1,636:29639592,25660505:3171960,568825,115847 -k1,585:26467632,25660505:-3171960 -) -(1,585:26467632,25660505:3171960,452978,115847 -k1,585:26467632,25660505:3277 -h1,585:29636315,25660505:0,411205,112570 -) -k1,585:29877267,25660505:237675 -k1,585:31219225,25660505:237676 -k1,585:31966991,25660505:0 -) -(1,586:7246811,26501993:24720180,505283,126483 -k1,585:8946764,26501993:186727 -k1,585:12753700,26501993:186727 -k1,585:14224933,26501993:186727 -k1,585:14767521,26501993:186728 -k1,585:17440029,26501993:186727 -k1,585:18158253,26501993:186727 -k1,585:21357670,26501993:186727 -k1,585:24479099,26501993:186727 -k1,585:25281864,26501993:186727 -k1,585:27160732,26501993:186728 -k1,585:29044841,26501993:186727 -k1,585:29689665,26501993:186727 -k1,585:30977397,26501993:186727 -k1,586:31966991,26501993:0 -) -(1,586:7246811,27343481:24720180,505283,134348 -k1,585:10220015,27343481:180715 -k1,585:11052159,27343481:180716 -k1,585:14130221,27343481:180715 -k1,585:16842593,27343481:180716 -k1,585:18307814,27343481:180715 -k1,585:19356881,27343481:180715 -k1,585:20670059,27343481:180716 -k1,585:22468203,27343481:180715 -k1,585:23331804,27343481:180716 -k1,585:25923589,27343481:180715 -k1,585:26913675,27343481:180716 -k1,585:28977239,27343481:180715 -k1,585:31966991,27343481:0 -) -(1,586:7246811,28184969:24720180,505283,134348 -k1,585:8078781,28184969:215932 -k1,585:10180184,28184969:215932 -k1,585:11763196,28184969:215931 -k1,585:12847480,28184969:215932 -k1,585:14167694,28184969:215932 -k1,585:15476111,28184969:215932 -k1,585:17247211,28184969:215931 -(1,585:17247211,28184969:0,452978,122846 -r1,636:19715748,28184969:2468537,575824,122846 -k1,585:17247211,28184969:-2468537 -) -(1,585:17247211,28184969:2468537,452978,122846 -k1,585:17247211,28184969:3277 -h1,585:19712471,28184969:0,411205,112570 -) -k1,585:20105350,28184969:215932 -k1,585:21715233,28184969:215932 -k1,585:24161355,28184969:215932 -k1,585:27465342,28184969:215931 -k1,585:30633671,28184969:215932 -k1,585:31611131,28184969:215932 -k1,585:31966991,28184969:0 -) -(1,586:7246811,29026457:24720180,505283,134348 -g1,585:9743732,29026457 -g1,585:12072226,29026457 -g1,585:13410471,29026457 -g1,585:14295862,29026457 -g1,585:15111129,29026457 -(1,585:15111129,29026457:0,435480,115847 -r1,636:16172818,29026457:1061689,551327,115847 -k1,585:15111129,29026457:-1061689 -) -(1,585:15111129,29026457:1061689,435480,115847 -k1,585:15111129,29026457:3277 -h1,585:16169541,29026457:0,411205,112570 -) -k1,586:31966991,29026457:15620503 -g1,586:31966991,29026457 -) -v1,588:7246811,30216923:0,393216,0 -(1,607:7246811,35338780:24720180,5515073,196608 -g1,607:7246811,35338780 -g1,607:7246811,35338780 -g1,607:7050203,35338780 -(1,607:7050203,35338780:0,5515073,196608 -r1,636:32163599,35338780:25113396,5711681,196608 -k1,607:7050203,35338780:-25113396 -) -(1,607:7050203,35338780:25113396,5515073,196608 -[1,607:7246811,35338780:24720180,5318465,0 -(1,590:7246811,30424541:24720180,404226,76021 -(1,589:7246811,30424541:0,0,0 -g1,589:7246811,30424541 -g1,589:7246811,30424541 -g1,589:6919131,30424541 -(1,589:6919131,30424541:0,0,0 -) -g1,589:7246811,30424541 -) -k1,590:7246811,30424541:0 -h1,590:11672851,30424541:0,0,0 -k1,590:31966991,30424541:20294140 -g1,590:31966991,30424541 -) -(1,594:7246811,31156255:24720180,404226,76021 -(1,592:7246811,31156255:0,0,0 -g1,592:7246811,31156255 -g1,592:7246811,31156255 -g1,592:6919131,31156255 -(1,592:6919131,31156255:0,0,0 -) -g1,592:7246811,31156255 -) -g1,594:8195248,31156255 -g1,594:9459831,31156255 -h1,594:10724414,31156255:0,0,0 -k1,594:31966990,31156255:21242576 -g1,594:31966990,31156255 -) -(1,596:7246811,32477793:24720180,404226,107478 -(1,595:7246811,32477793:0,0,0 -g1,595:7246811,32477793 -g1,595:7246811,32477793 -g1,595:6919131,32477793 -(1,595:6919131,32477793:0,0,0 -) -g1,595:7246811,32477793 -) -k1,596:7246811,32477793:0 -h1,596:11672851,32477793:0,0,0 -k1,596:31966991,32477793:20294140 -g1,596:31966991,32477793 -) -(1,600:7246811,33209507:24720180,404226,76021 -(1,598:7246811,33209507:0,0,0 -g1,598:7246811,33209507 -g1,598:7246811,33209507 -g1,598:6919131,33209507 -(1,598:6919131,33209507:0,0,0 -) -g1,598:7246811,33209507 -) -g1,600:8195248,33209507 -g1,600:9459831,33209507 -h1,600:10724414,33209507:0,0,0 -k1,600:31966990,33209507:21242576 -g1,600:31966990,33209507 -) -(1,602:7246811,34531045:24720180,404226,76021 -(1,601:7246811,34531045:0,0,0 -g1,601:7246811,34531045 -g1,601:7246811,34531045 -g1,601:6919131,34531045 -(1,601:6919131,34531045:0,0,0 -) -g1,601:7246811,34531045 -) -k1,602:7246811,34531045:0 -h1,602:11356705,34531045:0,0,0 -k1,602:31966991,34531045:20610286 -g1,602:31966991,34531045 -) -(1,606:7246811,35262759:24720180,404226,76021 -(1,604:7246811,35262759:0,0,0 -g1,604:7246811,35262759 -g1,604:7246811,35262759 -g1,604:6919131,35262759 -(1,604:6919131,35262759:0,0,0 -) -g1,604:7246811,35262759 -) -g1,606:8195248,35262759 -g1,606:9459831,35262759 -h1,606:11040559,35262759:0,0,0 -k1,606:31966991,35262759:20926432 -g1,606:31966991,35262759 -) -] -) -g1,607:31966991,35338780 -g1,607:7246811,35338780 -g1,607:7246811,35338780 -g1,607:31966991,35338780 -g1,607:31966991,35338780 -) -h1,607:7246811,35535388:0,0,0 -(1,611:7246811,36901164:24720180,505283,102891 -h1,610:7246811,36901164:983040,0,0 -k1,610:9870157,36901164:286988 -k1,610:12973227,36901164:286988 -k1,610:14251776,36901164:286989 -k1,610:14894624,36901164:286988 -k1,610:19505022,36901164:286988 -k1,610:23554432,36901164:286988 -k1,610:25032865,36901164:286988 -k1,610:26135122,36901164:286989 -k1,610:27488381,36901164:286988 -k1,610:29250584,36901164:286988 -k1,610:30308275,36901164:286988 -k1,610:31966991,36901164:0 -) -(1,611:7246811,37742652:24720180,513147,126483 -k1,610:10780447,37742652:228655 -k1,610:11625140,37742652:228655 -k1,610:15434027,37742652:228655 -k1,610:18001662,37742652:228655 -k1,610:18889610,37742652:228656 -k1,610:20471583,37742652:228655 -k1,610:23689990,37742652:228655 -k1,610:27325206,37742652:228655 -k1,610:29171290,37742652:228655 -k1,610:30591390,37742652:228655 -k1,611:31966991,37742652:0 -) -(1,611:7246811,38584140:24720180,513147,134348 -k1,610:8728627,38584140:233355 -k1,610:9771352,38584140:233355 -k1,610:12820789,38584140:233355 -k1,610:14338649,38584140:233354 -k1,610:15563564,38584140:233355 -k1,610:18867936,38584140:233355 -k1,610:19752719,38584140:233355 -k1,610:20341934,38584140:233355 -k1,610:22435201,38584140:233355 -k1,610:23740725,38584140:233355 -k1,610:25624931,38584140:233354 -k1,610:27638899,38584140:233355 -k1,610:28531546,38584140:233355 -k1,610:30775546,38584140:233355 -k1,610:31966991,38584140:0 -) -(1,611:7246811,39425628:24720180,513147,134348 -k1,610:8950806,39425628:228780 -k1,610:9535447,39425628:228781 -k1,610:11415079,39425628:228780 -k1,610:15065494,39425628:228780 -k1,610:16852065,39425628:228780 -k1,610:18072406,39425628:228781 -k1,610:20342632,39425628:228780 -k1,610:22303529,39425628:228780 -k1,610:23422288,39425628:228780 -k1,610:27925327,39425628:228781 -k1,610:31350953,39425628:228780 -k1,611:31966991,39425628:0 -) -(1,611:7246811,40267116:24720180,513147,134348 -k1,610:7971582,40267116:309928 -k1,610:9661809,40267116:310039 -k1,610:10740585,40267116:310039 -k1,610:11812152,40267116:310039 -k1,610:13141277,40267116:310040 -k1,610:15189331,40267116:310039 -k1,610:16166526,40267116:310039 -(1,610:16166526,40267116:0,452978,115847 -r1,636:18283351,40267116:2116825,568825,115847 -k1,610:16166526,40267116:-2116825 -) -(1,610:16166526,40267116:2116825,452978,115847 -k1,610:16166526,40267116:3277 -h1,610:18280074,40267116:0,411205,112570 -) -k1,610:18593390,40267116:310039 -k1,610:20094874,40267116:310039 -k1,610:21509195,40267116:310039 -k1,610:22567001,40267116:310040 -k1,610:25227161,40267116:310039 -k1,610:26931151,40267116:310039 -k1,610:28260275,40267116:310039 -k1,611:31966991,40267116:0 -) -(1,611:7246811,41108604:24720180,452978,115847 -(1,610:7246811,41108604:0,452978,115847 -r1,636:10067060,41108604:2820249,568825,115847 -k1,610:7246811,41108604:-2820249 -) -(1,610:7246811,41108604:2820249,452978,115847 -k1,610:7246811,41108604:3277 -h1,610:10063783,41108604:0,411205,112570 -) -k1,611:31966990,41108604:21726260 -g1,611:31966990,41108604 -) -] -) -] -r1,636:32583029,41814275:26214,27759064,0 -) -] -) -) -g1,636:32583029,41224451 -) -] -(1,636:32583029,45706769:0,0,0 -g1,636:32583029,45706769 -) -) -] -(1,636:6630773,47279633:25952256,0,0 -h1,636:6630773,47279633:25952256,0,0 -) -] -h1,636:4262630,4025873:0,0,0 -] -!20184 +g1,555:7246811,7051539 +) +g1,556:7879103,7051539 +g1,556:8827541,7051539 +g1,556:9459833,7051539 +g1,556:10408271,7051539 +g1,556:11040563,7051539 +g1,556:11989001,7051539 +h1,556:12937438,7051539:0,0,0 +k1,556:31966990,7051539:19029552 +g1,556:31966990,7051539 +) +(1,557:7246811,7717717:24720180,284164,4718 +h1,557:7246811,7717717:0,0,0 +h1,557:7562957,7717717:0,0,0 +k1,557:31966991,7717717:24404034 +g1,557:31966991,7717717 +) +(1,558:7246811,8383895:24720180,404226,6290 +h1,558:7246811,8383895:0,0,0 +h1,558:7562957,8383895:0,0,0 +k1,558:31966991,8383895:24404034 +g1,558:31966991,8383895 +) +(1,559:7246811,9050073:24720180,284164,6290 +h1,559:7246811,9050073:0,0,0 +h1,559:7562957,9050073:0,0,0 +k1,559:31966991,9050073:24404034 +g1,559:31966991,9050073 +) +(1,560:7246811,9716251:24720180,388497,4718 +h1,560:7246811,9716251:0,0,0 +g1,560:7879103,9716251 +g1,560:8827541,9716251 +h1,560:9143687,9716251:0,0,0 +k1,560:31966991,9716251:22823304 +g1,560:31966991,9716251 +) +(1,561:7246811,10382429:24720180,284164,4718 +h1,561:7246811,10382429:0,0,0 +h1,561:7562957,10382429:0,0,0 +k1,561:31966991,10382429:24404034 +g1,561:31966991,10382429 +) +(1,562:7246811,11048607:24720180,388497,9436 +h1,562:7246811,11048607:0,0,0 +g1,562:7879103,11048607 +g1,562:8511395,11048607 +h1,562:8827541,11048607:0,0,0 +k1,562:31966991,11048607:23139450 +g1,562:31966991,11048607 +) +(1,563:7246811,11714785:24720180,284164,4718 +h1,563:7246811,11714785:0,0,0 +h1,563:7562957,11714785:0,0,0 +k1,563:31966991,11714785:24404034 +g1,563:31966991,11714785 +) +] +) +g1,565:31966991,11719503 +g1,565:7246811,11719503 +g1,565:7246811,11719503 +g1,565:31966991,11719503 +g1,565:31966991,11719503 +) +h1,565:7246811,11916111:0,0,0 +] +) +] +r1,568:32583029,13030223:26214,7169342,0 +) +] +) +) +g1,568:32583029,12440399 +) +h1,568:6630773,13056437:0,0,0 +v1,571:6630773,14422213:0,393216,0 +(1,642:6630773,40401464:25952256,26372467,589824 +g1,642:6630773,40401464 +(1,642:6630773,40401464:25952256,26372467,589824 +(1,642:6630773,40991288:25952256,26962291,0 +[1,642:6630773,40991288:25952256,26962291,0 +(1,642:6630773,40991288:25952256,26936077,0 +r1,642:6656987,40991288:26214,26936077,0 +[1,642:6656987,40991288:25899828,26936077,0 +(1,642:6656987,40401464:25899828,25756429,0 +[1,642:7246811,40401464:24720180,25756429,0 +(1,572:7246811,15806920:24720180,1161885,196608 +(1,571:7246811,15806920:0,1161885,196608 +r1,642:8794447,15806920:1547636,1358493,196608 +k1,571:7246811,15806920:-1547636 +) +(1,571:7246811,15806920:1547636,1161885,196608 +) +k1,571:9018671,15806920:224224 +k1,571:9870730,15806920:224224 +k1,571:10683467,15806920:224224 +k1,571:11673808,15806920:224225 +k1,571:14714114,15806920:224224 +k1,571:17074812,15806920:224224 +k1,571:17950464,15806920:224224 +k1,571:19957267,15806920:224224 +(1,571:19957267,15806920:0,452978,115847 +r1,642:22425804,15806920:2468537,568825,115847 +k1,571:19957267,15806920:-2468537 +) +(1,571:19957267,15806920:2468537,452978,115847 +k1,571:19957267,15806920:3277 +h1,571:22422527,15806920:0,411205,112570 +) +k1,571:22650028,15806920:224224 +k1,571:23949699,15806920:224225 +k1,571:25306385,15806920:224224 +k1,571:27891871,15806920:224224 +k1,571:29135180,15806920:224224 +k1,571:31966991,15806920:0 +) +(1,572:7246811,16648408:24720180,513147,134348 +k1,571:8124762,16648408:218659 +k1,571:10067018,16648408:218659 +k1,571:11477122,16648408:218659 +k1,571:13202454,16648408:218659 +k1,571:14037150,16648408:218658 +k1,571:16534496,16648408:218659 +h1,571:17505084,16648408:0,0,0 +k1,571:17723743,16648408:218659 +k1,571:18751772,16648408:218659 +k1,571:20468584,16648408:218659 +h1,571:21265502,16648408:0,0,0 +k1,571:21864925,16648408:218659 +k1,571:23037133,16648408:218659 +k1,571:24360074,16648408:218659 +k1,571:26394735,16648408:218658 +k1,571:27079355,16648408:218659 +k1,571:28317099,16648408:218659 +k1,571:30318337,16648408:218659 +k1,571:31196288,16648408:218659 +k1,571:31966991,16648408:0 +) +(1,572:7246811,17489896:24720180,513147,134348 +g1,571:9405566,17489896 +g1,571:10136292,17489896 +(1,571:10136292,17489896:0,452978,115847 +r1,642:12604829,17489896:2468537,568825,115847 +k1,571:10136292,17489896:-2468537 +) +(1,571:10136292,17489896:2468537,452978,115847 +k1,571:10136292,17489896:3277 +h1,571:12601552,17489896:0,411205,112570 +) +g1,571:12804058,17489896 +g1,571:14397238,17489896 +g1,571:17291963,17489896 +(1,571:17291963,17489896:0,452978,115847 +r1,642:21519059,17489896:4227096,568825,115847 +k1,571:17291963,17489896:-4227096 +) +(1,571:17291963,17489896:4227096,452978,115847 +k1,571:17291963,17489896:3277 +h1,571:21515782,17489896:0,411205,112570 +) +k1,572:31966991,17489896:10274262 +g1,572:31966991,17489896 +) +v1,574:7246811,18680362:0,393216,0 +(1,588:7246811,22415145:24720180,4127999,196608 +g1,588:7246811,22415145 +g1,588:7246811,22415145 +g1,588:7050203,22415145 +(1,588:7050203,22415145:0,4127999,196608 +r1,642:32163599,22415145:25113396,4324607,196608 +k1,588:7050203,22415145:-25113396 +) +(1,588:7050203,22415145:25113396,4127999,196608 +[1,588:7246811,22415145:24720180,3931391,0 +(1,576:7246811,18887980:24720180,404226,76021 +(1,575:7246811,18887980:0,0,0 +g1,575:7246811,18887980 +g1,575:7246811,18887980 +g1,575:6919131,18887980 +(1,575:6919131,18887980:0,0,0 +) +g1,575:7246811,18887980 +) +k1,576:7246811,18887980:0 +h1,576:9459832,18887980:0,0,0 +k1,576:31966992,18887980:22507160 +g1,576:31966992,18887980 +) +(1,580:7246811,19619694:24720180,404226,76021 +(1,578:7246811,19619694:0,0,0 +g1,578:7246811,19619694 +g1,578:7246811,19619694 +g1,578:6919131,19619694 +(1,578:6919131,19619694:0,0,0 +) +g1,578:7246811,19619694 +) +g1,580:8195248,19619694 +g1,580:9459831,19619694 +h1,580:12305142,19619694:0,0,0 +k1,580:31966990,19619694:19661848 +g1,580:31966990,19619694 +) +(1,582:7246811,20941232:24720180,388497,4718 +(1,581:7246811,20941232:0,0,0 +g1,581:7246811,20941232 +g1,581:7246811,20941232 +g1,581:6919131,20941232 +(1,581:6919131,20941232:0,0,0 +) +g1,581:7246811,20941232 +) +g1,582:7879103,20941232 +g1,582:8827541,20941232 +h1,582:9143687,20941232:0,0,0 +k1,582:31966991,20941232:22823304 +g1,582:31966991,20941232 +) +(1,583:7246811,21607410:24720180,404226,76021 +h1,583:7246811,21607410:0,0,0 +k1,583:7246811,21607410:0 +h1,583:11356705,21607410:0,0,0 +k1,583:31966991,21607410:20610286 +g1,583:31966991,21607410 +) +(1,587:7246811,22339124:24720180,404226,76021 +(1,585:7246811,22339124:0,0,0 +g1,585:7246811,22339124 +g1,585:7246811,22339124 +g1,585:6919131,22339124 +(1,585:6919131,22339124:0,0,0 +) +g1,585:7246811,22339124 +) +g1,587:8195248,22339124 +g1,587:9459831,22339124 +h1,587:10724414,22339124:0,0,0 +k1,587:31966990,22339124:21242576 +g1,587:31966990,22339124 +) +] +) +g1,588:31966991,22415145 +g1,588:7246811,22415145 +g1,588:7246811,22415145 +g1,588:31966991,22415145 +g1,588:31966991,22415145 +) +h1,588:7246811,22611753:0,0,0 +(1,592:7246811,23977529:24720180,513147,134348 +h1,591:7246811,23977529:983040,0,0 +k1,591:11062972,23977529:304742 +k1,591:14183796,23977529:304742 +k1,591:15592821,23977529:304743 +k1,591:16645329,23977529:304742 +k1,591:18988241,23977529:304742 +k1,591:19909021,23977529:304742 +k1,591:22976107,23977529:304743 +k1,591:25965204,23977529:304742 +k1,591:29204648,23977529:304742 +k1,591:31966991,23977529:0 +) +(1,592:7246811,24819017:24720180,513147,134348 +k1,591:10305522,24819017:271465 +k1,591:11236278,24819017:271464 +k1,591:14584003,24819017:271465 +k1,591:17486738,24819017:271464 +k1,591:18814643,24819017:271465 +k1,591:20940121,24819017:271464 +k1,591:22813286,24819017:271465 +k1,591:26515560,24819017:271464 +k1,591:29959623,24819017:271465 +k1,592:31966991,24819017:0 +) +(1,592:7246811,25660505:24720180,513147,126483 +k1,591:9123542,25660505:237676 +k1,591:11592719,25660505:237676 +k1,591:14592737,25660505:237675 +k1,591:16546801,25660505:237676 +k1,591:17443769,25660505:237676 +k1,591:20671197,25660505:237676 +k1,591:21536707,25660505:237675 +k1,591:23376083,25660505:237676 +k1,591:25311141,25660505:237676 +k1,591:26467632,25660505:237676 +(1,591:26467632,25660505:0,452978,115847 +r1,642:29639592,25660505:3171960,568825,115847 +k1,591:26467632,25660505:-3171960 +) +(1,591:26467632,25660505:3171960,452978,115847 +k1,591:26467632,25660505:3277 +h1,591:29636315,25660505:0,411205,112570 +) +k1,591:29877267,25660505:237675 +k1,591:31219225,25660505:237676 +k1,591:31966991,25660505:0 +) +(1,592:7246811,26501993:24720180,505283,126483 +k1,591:8946764,26501993:186727 +k1,591:12753700,26501993:186727 +k1,591:14224933,26501993:186727 +k1,591:14767521,26501993:186728 +k1,591:17440029,26501993:186727 +k1,591:18158253,26501993:186727 +k1,591:21357670,26501993:186727 +k1,591:24479099,26501993:186727 +k1,591:25281864,26501993:186727 +k1,591:27160732,26501993:186728 +k1,591:29044841,26501993:186727 +k1,591:29689665,26501993:186727 +k1,591:30977397,26501993:186727 +k1,592:31966991,26501993:0 +) +(1,592:7246811,27343481:24720180,505283,134348 +k1,591:10220015,27343481:180715 +k1,591:11052159,27343481:180716 +k1,591:14130221,27343481:180715 +k1,591:16842593,27343481:180716 +k1,591:18307814,27343481:180715 +k1,591:19356881,27343481:180715 +k1,591:20670059,27343481:180716 +k1,591:22468203,27343481:180715 +k1,591:23331804,27343481:180716 +k1,591:25923589,27343481:180715 +k1,591:26913675,27343481:180716 +k1,591:28977239,27343481:180715 +k1,591:31966991,27343481:0 +) +(1,592:7246811,28184969:24720180,505283,134348 +k1,591:8078781,28184969:215932 +k1,591:10180184,28184969:215932 +k1,591:11763196,28184969:215931 +k1,591:12847480,28184969:215932 +k1,591:14167694,28184969:215932 +k1,591:15476111,28184969:215932 +k1,591:17247211,28184969:215931 +(1,591:17247211,28184969:0,452978,122846 +r1,642:19715748,28184969:2468537,575824,122846 +k1,591:17247211,28184969:-2468537 +) +(1,591:17247211,28184969:2468537,452978,122846 +k1,591:17247211,28184969:3277 +h1,591:19712471,28184969:0,411205,112570 +) +k1,591:20105350,28184969:215932 +k1,591:21715233,28184969:215932 +k1,591:24161355,28184969:215932 +k1,591:27465342,28184969:215931 +k1,591:30633671,28184969:215932 +k1,591:31611131,28184969:215932 +k1,591:31966991,28184969:0 +) +(1,592:7246811,29026457:24720180,505283,134348 +g1,591:9743732,29026457 +g1,591:12072226,29026457 +g1,591:13410471,29026457 +g1,591:14295862,29026457 +g1,591:15111129,29026457 +(1,591:15111129,29026457:0,435480,115847 +r1,642:16172818,29026457:1061689,551327,115847 +k1,591:15111129,29026457:-1061689 +) +(1,591:15111129,29026457:1061689,435480,115847 +k1,591:15111129,29026457:3277 +h1,591:16169541,29026457:0,411205,112570 +) +k1,592:31966991,29026457:15620503 +g1,592:31966991,29026457 +) +v1,594:7246811,30216923:0,393216,0 +(1,613:7246811,35338780:24720180,5515073,196608 +g1,613:7246811,35338780 +g1,613:7246811,35338780 +g1,613:7050203,35338780 +(1,613:7050203,35338780:0,5515073,196608 +r1,642:32163599,35338780:25113396,5711681,196608 +k1,613:7050203,35338780:-25113396 +) +(1,613:7050203,35338780:25113396,5515073,196608 +[1,613:7246811,35338780:24720180,5318465,0 +(1,596:7246811,30424541:24720180,404226,76021 +(1,595:7246811,30424541:0,0,0 +g1,595:7246811,30424541 +g1,595:7246811,30424541 +g1,595:6919131,30424541 +(1,595:6919131,30424541:0,0,0 +) +g1,595:7246811,30424541 +) +k1,596:7246811,30424541:0 +h1,596:11672851,30424541:0,0,0 +k1,596:31966991,30424541:20294140 +g1,596:31966991,30424541 +) +(1,600:7246811,31156255:24720180,404226,76021 +(1,598:7246811,31156255:0,0,0 +g1,598:7246811,31156255 +g1,598:7246811,31156255 +g1,598:6919131,31156255 +(1,598:6919131,31156255:0,0,0 +) +g1,598:7246811,31156255 +) +g1,600:8195248,31156255 +g1,600:9459831,31156255 +h1,600:10724414,31156255:0,0,0 +k1,600:31966990,31156255:21242576 +g1,600:31966990,31156255 +) +(1,602:7246811,32477793:24720180,404226,107478 +(1,601:7246811,32477793:0,0,0 +g1,601:7246811,32477793 +g1,601:7246811,32477793 +g1,601:6919131,32477793 +(1,601:6919131,32477793:0,0,0 +) +g1,601:7246811,32477793 +) +k1,602:7246811,32477793:0 +h1,602:11672851,32477793:0,0,0 +k1,602:31966991,32477793:20294140 +g1,602:31966991,32477793 +) +(1,606:7246811,33209507:24720180,404226,76021 +(1,604:7246811,33209507:0,0,0 +g1,604:7246811,33209507 +g1,604:7246811,33209507 +g1,604:6919131,33209507 +(1,604:6919131,33209507:0,0,0 +) +g1,604:7246811,33209507 +) +g1,606:8195248,33209507 +g1,606:9459831,33209507 +h1,606:10724414,33209507:0,0,0 +k1,606:31966990,33209507:21242576 +g1,606:31966990,33209507 +) +(1,608:7246811,34531045:24720180,404226,76021 +(1,607:7246811,34531045:0,0,0 +g1,607:7246811,34531045 +g1,607:7246811,34531045 +g1,607:6919131,34531045 +(1,607:6919131,34531045:0,0,0 +) +g1,607:7246811,34531045 +) +k1,608:7246811,34531045:0 +h1,608:11356705,34531045:0,0,0 +k1,608:31966991,34531045:20610286 +g1,608:31966991,34531045 +) +(1,612:7246811,35262759:24720180,404226,76021 +(1,610:7246811,35262759:0,0,0 +g1,610:7246811,35262759 +g1,610:7246811,35262759 +g1,610:6919131,35262759 +(1,610:6919131,35262759:0,0,0 +) +g1,610:7246811,35262759 +) +g1,612:8195248,35262759 +g1,612:9459831,35262759 +h1,612:11040559,35262759:0,0,0 +k1,612:31966991,35262759:20926432 +g1,612:31966991,35262759 +) +] +) +g1,613:31966991,35338780 +g1,613:7246811,35338780 +g1,613:7246811,35338780 +g1,613:31966991,35338780 +g1,613:31966991,35338780 +) +h1,613:7246811,35535388:0,0,0 +(1,617:7246811,36901164:24720180,505283,102891 +h1,616:7246811,36901164:983040,0,0 +k1,616:9870157,36901164:286988 +k1,616:12973227,36901164:286988 +k1,616:14251776,36901164:286989 +k1,616:14894624,36901164:286988 +k1,616:19505022,36901164:286988 +k1,616:23554432,36901164:286988 +k1,616:25032865,36901164:286988 +k1,616:26135122,36901164:286989 +k1,616:27488381,36901164:286988 +k1,616:29250584,36901164:286988 +k1,616:30308275,36901164:286988 +k1,616:31966991,36901164:0 +) +(1,617:7246811,37742652:24720180,513147,126483 +k1,616:10751611,37742652:199819 +k1,616:11567469,37742652:199820 +k1,616:15347520,37742652:199819 +k1,616:17886319,37742652:199819 +k1,616:18745431,37742652:199820 +k1,616:20298568,37742652:199819 +k1,616:23488139,37742652:199819 +k1,616:27094519,37742652:199819 +k1,616:28911768,37742652:199820 +k1,616:30303032,37742652:199819 +k1,617:31966991,37742652:0 +) +(1,617:7246811,38584140:24720180,513147,134348 +k1,616:8345587,38584140:138674 +k1,616:9293631,38584140:138674 +k1,616:12248387,38584140:138674 +k1,616:13671568,38584140:138675 +k1,616:14801802,38584140:138674 +k1,616:18011493,38584140:138674 +k1,616:18801595,38584140:138674 +k1,616:19296129,38584140:138674 +k1,616:21294715,38584140:138674 +k1,616:22505558,38584140:138674 +k1,616:24295084,38584140:138674 +k1,616:26214372,38584140:138675 +k1,616:27012338,38584140:138674 +k1,616:29161657,38584140:138674 +k1,616:30491776,38584140:138674 +k1,616:31966991,38584140:0 +) +(1,617:7246811,39425628:24720180,513147,134348 +k1,616:7785736,39425628:183065 +k1,616:9619654,39425628:183066 +k1,616:13224354,39425628:183065 +k1,616:14965210,39425628:183065 +k1,616:16139835,39425628:183065 +k1,616:18364347,39425628:183066 +k1,616:20279529,39425628:183065 +k1,616:21352573,39425628:183065 +k1,616:25809896,39425628:183065 +k1,616:29189808,39425628:183066 +k1,616:29988911,39425628:183065 +k1,616:30586803,39425628:183049 +k1,616:31966991,39425628:0 +) +(1,617:7246811,40267116:24720180,513147,134348 +g1,616:8214777,40267116 +g1,616:9175534,40267116 +g1,616:10393848,40267116 +g1,616:12331092,40267116 +g1,616:13197477,40267116 +(1,616:13197477,40267116:0,452978,115847 +r1,642:15314302,40267116:2116825,568825,115847 +k1,616:13197477,40267116:-2116825 +) +(1,616:13197477,40267116:2116825,452978,115847 +k1,616:13197477,40267116:3277 +h1,616:15311025,40267116:0,411205,112570 +) +g1,616:15513531,40267116 +g1,616:16904205,40267116 +g1,616:18207716,40267116 +g1,616:19154711,40267116 +g1,616:21704061,40267116 +g1,616:23297241,40267116 +g1,616:24515555,40267116 +g1,616:28421500,40267116 +(1,616:28421500,40267116:0,452978,115847 +r1,642:31241749,40267116:2820249,568825,115847 +k1,616:28421500,40267116:-2820249 +) +(1,616:28421500,40267116:2820249,452978,115847 +k1,616:28421500,40267116:3277 +h1,616:31238472,40267116:0,411205,112570 +) +k1,617:31966991,40267116:551572 +g1,617:31966991,40267116 +) +] +) +] +r1,642:32583029,40991288:26214,26936077,0 +) +] +) +) +g1,642:32583029,40401464 +) +] +(1,642:32583029,45706769:0,0,0 +g1,642:32583029,45706769 +) +) +] +(1,642:6630773,47279633:25952256,0,0 +h1,642:6630773,47279633:25952256,0,0 +) +] +h1,642:4262630,4025873:0,0,0 +] +!20052 }32 -Input:173:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:174:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:175:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:176:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:177:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:178:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:179:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:180:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:181:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:182:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!861 +Input:169:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:170:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:171:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:172:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:173:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:174:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:175:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:176:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:177:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:178:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 {33 -[1,691:4262630,47279633:28320399,43253760,0 -(1,691:4262630,4025873:0,0,0 -[1,691:-473657,4025873:25952256,0,0 -(1,691:-473657,-710414:25952256,0,0 -h1,691:-473657,-710414:0,0,0 -(1,691:-473657,-710414:0,0,0 -(1,691:-473657,-710414:0,0,0 -g1,691:-473657,-710414 -(1,691:-473657,-710414:65781,0,65781 -g1,691:-407876,-710414 -[1,691:-407876,-644633:0,0,0 +[1,697:4262630,47279633:28320399,43253760,0 +(1,697:4262630,4025873:0,0,0 +[1,697:-473657,4025873:25952256,0,0 +(1,697:-473657,-710414:25952256,0,0 +h1,697:-473657,-710414:0,0,0 +(1,697:-473657,-710414:0,0,0 +(1,697:-473657,-710414:0,0,0 +g1,697:-473657,-710414 +(1,697:-473657,-710414:65781,0,65781 +g1,697:-407876,-710414 +[1,697:-407876,-644633:0,0,0 ] ) -k1,691:-473657,-710414:-65781 +k1,697:-473657,-710414:-65781 ) ) -k1,691:25478599,-710414:25952256 -g1,691:25478599,-710414 +k1,697:25478599,-710414:25952256 +g1,697:25478599,-710414 ) ] ) -[1,691:6630773,47279633:25952256,43253760,0 -[1,691:6630773,4812305:25952256,786432,0 -(1,691:6630773,4812305:25952256,505283,134348 -(1,691:6630773,4812305:25952256,505283,134348 -g1,691:3078558,4812305 -[1,691:3078558,4812305:0,0,0 -(1,691:3078558,2439708:0,1703936,0 -k1,691:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,691:2537886,2439708:1179648,16384,0 +[1,697:6630773,47279633:25952256,43253760,0 +[1,697:6630773,4812305:25952256,786432,0 +(1,697:6630773,4812305:25952256,505283,134348 +(1,697:6630773,4812305:25952256,505283,134348 +g1,697:3078558,4812305 +[1,697:3078558,4812305:0,0,0 +(1,697:3078558,2439708:0,1703936,0 +k1,697:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,697:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,691:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,697:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,691:3078558,4812305:0,0,0 -(1,691:3078558,2439708:0,1703936,0 -g1,691:29030814,2439708 -g1,691:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,691:36151628,1915420:16384,1179648,0 +[1,697:3078558,4812305:0,0,0 +(1,697:3078558,2439708:0,1703936,0 +g1,697:29030814,2439708 +g1,697:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,697:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,691:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,697:37855564,2439708:1179648,16384,0 ) ) -k1,691:3078556,2439708:-34777008 +k1,697:3078556,2439708:-34777008 ) ] -[1,691:3078558,4812305:0,0,0 -(1,691:3078558,49800853:0,16384,2228224 -k1,691:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,691:2537886,49800853:1179648,16384,0 +[1,697:3078558,4812305:0,0,0 +(1,697:3078558,49800853:0,16384,2228224 +k1,697:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,697:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,691:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,697:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,691:3078558,4812305:0,0,0 -(1,691:3078558,49800853:0,16384,2228224 -g1,691:29030814,49800853 -g1,691:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,691:36151628,51504789:16384,1179648,0 +[1,697:3078558,4812305:0,0,0 +(1,697:3078558,49800853:0,16384,2228224 +g1,697:29030814,49800853 +g1,697:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,697:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,691:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,697:37855564,49800853:1179648,16384,0 ) ) -k1,691:3078556,49800853:-34777008 +k1,697:3078556,49800853:-34777008 ) ] -g1,691:6630773,4812305 -k1,691:19562994,4812305:12135303 -g1,691:20949735,4812305 -g1,691:21598541,4812305 -g1,691:24912696,4812305 -g1,691:27600327,4812305 -g1,691:29010006,4812305 +g1,697:6630773,4812305 +k1,697:19515153,4812305:12087462 +g1,697:20901894,4812305 +g1,697:21550700,4812305 +g1,697:24864855,4812305 +g1,697:27600327,4812305 +g1,697:29010006,4812305 ) ) ] -[1,691:6630773,45706769:25952256,40108032,0 -(1,691:6630773,45706769:25952256,40108032,0 -(1,691:6630773,45706769:0,0,0 -g1,691:6630773,45706769 +[1,697:6630773,45706769:25952256,40108032,0 +(1,697:6630773,45706769:25952256,40108032,0 +(1,697:6630773,45706769:0,0,0 +g1,697:6630773,45706769 ) -[1,691:6630773,45706769:25952256,40108032,0 -v1,636:6630773,6254097:0,393216,0 -(1,636:6630773,16186974:25952256,10326093,616038 -g1,636:6630773,16186974 -(1,636:6630773,16186974:25952256,10326093,616038 -(1,636:6630773,16803012:25952256,10942131,0 -[1,636:6630773,16803012:25952256,10942131,0 -(1,636:6630773,16776798:25952256,10915917,0 -r1,636:6656987,16776798:26214,10915917,0 -[1,636:6656987,16776798:25899828,10915917,0 -(1,636:6656987,16186974:25899828,9736269,0 -[1,636:7246811,16186974:24720180,9736269,0 -v1,613:7246811,6843921:0,393216,0 -(1,632:7246811,11965778:24720180,5515073,196608 -g1,632:7246811,11965778 -g1,632:7246811,11965778 -g1,632:7050203,11965778 -(1,632:7050203,11965778:0,5515073,196608 -r1,636:32163599,11965778:25113396,5711681,196608 -k1,632:7050203,11965778:-25113396 +[1,697:6630773,45706769:25952256,40108032,0 +v1,642:6630773,6254097:0,393216,0 +(1,642:6630773,16186974:25952256,10326093,616038 +g1,642:6630773,16186974 +(1,642:6630773,16186974:25952256,10326093,616038 +(1,642:6630773,16803012:25952256,10942131,0 +[1,642:6630773,16803012:25952256,10942131,0 +(1,642:6630773,16776798:25952256,10915917,0 +r1,642:6656987,16776798:26214,10915917,0 +[1,642:6656987,16776798:25899828,10915917,0 +(1,642:6656987,16186974:25899828,9736269,0 +[1,642:7246811,16186974:24720180,9736269,0 +v1,619:7246811,6843921:0,393216,0 +(1,638:7246811,11965778:24720180,5515073,196608 +g1,638:7246811,11965778 +g1,638:7246811,11965778 +g1,638:7050203,11965778 +(1,638:7050203,11965778:0,5515073,196608 +r1,642:32163599,11965778:25113396,5711681,196608 +k1,638:7050203,11965778:-25113396 ) -(1,632:7050203,11965778:25113396,5515073,196608 -[1,632:7246811,11965778:24720180,5318465,0 -(1,615:7246811,7051539:24720180,404226,76021 -(1,614:7246811,7051539:0,0,0 -g1,614:7246811,7051539 -g1,614:7246811,7051539 -g1,614:6919131,7051539 -(1,614:6919131,7051539:0,0,0 -) -g1,614:7246811,7051539 -) -k1,615:7246811,7051539:0 -h1,615:11356706,7051539:0,0,0 -k1,615:31966990,7051539:20610284 -g1,615:31966990,7051539 -) -(1,619:7246811,7783253:24720180,404226,76021 -(1,617:7246811,7783253:0,0,0 -g1,617:7246811,7783253 -g1,617:7246811,7783253 -g1,617:6919131,7783253 -(1,617:6919131,7783253:0,0,0 -) -g1,617:7246811,7783253 -) -g1,619:8195248,7783253 -g1,619:9459831,7783253 -h1,619:10724414,7783253:0,0,0 -k1,619:31966990,7783253:21242576 -g1,619:31966990,7783253 -) -(1,621:7246811,9104791:24720180,404226,107478 -(1,620:7246811,9104791:0,0,0 -g1,620:7246811,9104791 -g1,620:7246811,9104791 -g1,620:6919131,9104791 -(1,620:6919131,9104791:0,0,0 -) -g1,620:7246811,9104791 -) -k1,621:7246811,9104791:0 -h1,621:11356706,9104791:0,0,0 -k1,621:31966990,9104791:20610284 -g1,621:31966990,9104791 -) -(1,625:7246811,9836505:24720180,404226,76021 -(1,623:7246811,9836505:0,0,0 -g1,623:7246811,9836505 -g1,623:7246811,9836505 -g1,623:6919131,9836505 -(1,623:6919131,9836505:0,0,0 -) -g1,623:7246811,9836505 -) -g1,625:8195248,9836505 -g1,625:9459831,9836505 -h1,625:11040559,9836505:0,0,0 -k1,625:31966991,9836505:20926432 -g1,625:31966991,9836505 -) -(1,627:7246811,11158043:24720180,404226,76021 -(1,626:7246811,11158043:0,0,0 -g1,626:7246811,11158043 -g1,626:7246811,11158043 -g1,626:6919131,11158043 -(1,626:6919131,11158043:0,0,0 -) -g1,626:7246811,11158043 -) -k1,627:7246811,11158043:0 -h1,627:11040560,11158043:0,0,0 -k1,627:31966992,11158043:20926432 -g1,627:31966992,11158043 -) -(1,631:7246811,11889757:24720180,404226,76021 -(1,629:7246811,11889757:0,0,0 -g1,629:7246811,11889757 -g1,629:7246811,11889757 -g1,629:6919131,11889757 -(1,629:6919131,11889757:0,0,0 -) -g1,629:7246811,11889757 -) -g1,631:8195248,11889757 -g1,631:9459831,11889757 -h1,631:10724414,11889757:0,0,0 -k1,631:31966990,11889757:21242576 -g1,631:31966990,11889757 -) -] -) -g1,632:31966991,11965778 -g1,632:7246811,11965778 -g1,632:7246811,11965778 -g1,632:31966991,11965778 -g1,632:31966991,11965778 -) -h1,632:7246811,12162386:0,0,0 -(1,636:7246811,13528162:24720180,513147,134348 -h1,635:7246811,13528162:983040,0,0 -k1,635:9694640,13528162:268102 -k1,635:11700756,13528162:268101 -(1,635:11700756,13528162:0,452978,115847 -r1,636:13817581,13528162:2116825,568825,115847 -k1,635:11700756,13528162:-2116825 -) -(1,635:11700756,13528162:2116825,452978,115847 -k1,635:11700756,13528162:3277 -h1,635:13814304,13528162:0,411205,112570 -) -k1,635:14085683,13528162:268102 -k1,635:17518518,13528162:268101 -k1,635:19354241,13528162:268102 -k1,635:20641428,13528162:268102 -k1,635:21362969,13528162:268032 -k1,635:24647038,13528162:268102 -k1,635:25531177,13528162:268101 -k1,635:27684750,13528162:268102 -k1,635:29607635,13528162:268101 -k1,635:30867297,13528162:268102 -k1,636:31966991,13528162:0 -) -(1,636:7246811,14369650:24720180,513147,126483 -k1,635:9394971,14369650:228610 -k1,635:11339970,14369650:228611 -k1,635:12227872,14369650:228610 -k1,635:14228576,14369650:228610 -k1,635:17414826,14369650:228610 -k1,635:19122585,14369650:228611 -k1,635:20370280,14369650:228610 -k1,635:22336905,14369650:228610 -(1,635:22336905,14369650:0,452978,115847 -r1,636:24453730,14369650:2116825,568825,115847 -k1,635:22336905,14369650:-2116825 -) -(1,635:22336905,14369650:2116825,452978,115847 -k1,635:22336905,14369650:3277 -h1,635:24450453,14369650:0,411205,112570 -) -k1,635:24682340,14369650:228610 -k1,635:26424177,14369650:228611 -k1,635:27304215,14369650:228610 -k1,635:29270840,14369650:228610 -k1,636:31966991,14369650:0 -) -(1,636:7246811,15211138:24720180,513147,134348 -k1,635:10361519,15211138:182627 -k1,635:14877387,15211138:182627 -k1,635:18349920,15211138:182626 -k1,635:21499362,15211138:182627 -k1,635:22701074,15211138:182627 -k1,635:23976186,15211138:182627 -k1,635:24825969,15211138:182627 -(1,635:24825969,15211138:0,414482,115847 -r1,636:25184235,15211138:358266,530329,115847 -k1,635:24825969,15211138:-358266 -) -(1,635:24825969,15211138:358266,414482,115847 -k1,635:24825969,15211138:3277 -h1,635:25180958,15211138:0,411205,112570 -) -k1,635:25366862,15211138:182627 -k1,635:27434303,15211138:182626 -k1,635:29184551,15211138:182627 -k1,635:30386263,15211138:182627 -k1,636:31966991,15211138:0 -) -(1,636:7246811,16052626:24720180,505283,134348 -g1,635:8832126,16052626 -g1,635:9647393,16052626 -g1,635:10473801,16052626 -g1,635:13401294,16052626 -g1,635:15289386,16052626 -g1,635:17718805,16052626 -k1,636:31966991,16052626:10958279 -g1,636:31966991,16052626 -) -] -) -] -r1,636:32583029,16776798:26214,10915917,0 -) -] -) -) -g1,636:32583029,16186974 -) -h1,636:6630773,16803012:0,0,0 -(1,639:6630773,18048043:25952256,505283,134348 -h1,638:6630773,18048043:983040,0,0 -k1,638:10554890,18048043:243615 -k1,638:13640146,18048043:243615 -k1,638:14988043,18048043:243615 -k1,638:17603406,18048043:243615 -k1,638:19497218,18048043:243615 -k1,638:21183280,18048043:243615 -k1,638:22583605,18048043:243615 -k1,638:24681234,18048043:243615 -k1,638:26415138,18048043:243615 -k1,638:28531772,18048043:243615 -k1,638:31591469,18048043:243615 -k1,638:32583029,18048043:0 -) -(1,639:6630773,18889531:25952256,513147,134348 -k1,638:7483783,18889531:236972 -k1,638:8135560,18889531:236934 -(1,638:8135560,18889531:0,414482,115847 -r1,638:10252385,18889531:2116825,530329,115847 -k1,638:8135560,18889531:-2116825 -) -(1,638:8135560,18889531:2116825,414482,115847 -k1,638:8135560,18889531:3277 -h1,638:10249108,18889531:0,411205,112570 -) -k1,638:10489357,18889531:236972 -k1,638:11056630,18889531:236972 -k1,638:11952894,18889531:236972 -k1,638:14203132,18889531:236972 -k1,638:15770485,18889531:236972 -k1,638:16961006,18889531:236972 -k1,638:18330440,18889531:236972 -k1,638:20021001,18889531:236972 -k1,638:21282956,18889531:236972 -k1,638:22816886,18889531:236972 -k1,638:24257099,18889531:236972 -k1,638:25025568,18889531:236972 -k1,638:28645508,18889531:236972 -k1,638:29700369,18889531:236972 -k1,638:31107814,18889531:236972 -k1,638:32583029,18889531:0 -) -(1,639:6630773,19731019:25952256,513147,126483 -k1,638:8262064,19731019:191465 -k1,638:10482525,19731019:191466 -k1,638:11693075,19731019:191465 -k1,638:14057715,19731019:191466 -k1,638:14908472,19731019:191465 -k1,638:18901680,19731019:191465 -k1,638:20597197,19731019:191466 -k1,638:23138783,19731019:191465 -k1,638:26256431,19731019:191465 -k1,638:27841848,19731019:191466 -(1,638:27841848,19731019:0,452978,115847 -r1,638:28903537,19731019:1061689,568825,115847 -k1,638:27841848,19731019:-1061689 -) -(1,638:27841848,19731019:1061689,452978,115847 -k1,638:27841848,19731019:3277 -h1,638:28900260,19731019:0,411205,112570 -) -k1,638:29268672,19731019:191465 -k1,638:30840982,19731019:191466 -k1,638:31563944,19731019:191465 -k1,638:32583029,19731019:0 -) -(1,639:6630773,20572507:25952256,513147,126483 -k1,638:8556483,20572507:176554 -k1,638:9415922,20572507:176554 -k1,638:12206706,20572507:176553 -k1,638:12999298,20572507:176554 -k1,638:14194937,20572507:176554 -k1,638:16349368,20572507:176554 -k1,638:17185214,20572507:176554 -k1,638:18380852,20572507:176553 -k1,638:19863539,20572507:176554 -k1,638:22525874,20572507:176554 -k1,638:23592407,20572507:176554 -k1,638:25470931,20572507:176554 -k1,638:27534921,20572507:176553 -k1,638:30774628,20572507:176554 -k1,638:31563944,20572507:176554 -k1,638:32583029,20572507:0 -) -(1,639:6630773,21413995:25952256,513147,7863 -g1,638:8368787,21413995 -g1,638:9227308,21413995 -g1,638:10445622,21413995 -g1,638:12989074,21413995 -k1,639:32583029,21413995:18251778 -g1,639:32583029,21413995 -) -(1,641:6630773,22255483:25952256,513147,134348 -h1,640:6630773,22255483:983040,0,0 -k1,640:9083621,22255483:198410 -k1,640:10386312,22255483:198409 -k1,640:11677207,22255483:198410 -(1,640:11677207,22255483:0,452978,115847 -r1,640:12738896,22255483:1061689,568825,115847 -k1,640:11677207,22255483:-1061689 -) -(1,640:11677207,22255483:1061689,452978,115847 -k1,640:11677207,22255483:3277 -h1,640:12735619,22255483:0,411205,112570 -) -k1,640:12937306,22255483:198410 -k1,640:17547600,22255483:198410 -k1,640:18397437,22255483:198409 -k1,640:20525227,22255483:198410 -k1,640:21079497,22255483:198410 -k1,640:23255784,22255483:198410 -k1,640:25021814,22255483:198409 -k1,640:26922194,22255483:198410 -k1,640:29602452,22255483:198410 -k1,640:32583029,22255483:0 -) -(1,641:6630773,23096971:25952256,513147,134348 -g1,640:9138180,23096971 -g1,640:9996701,23096971 -g1,640:12209196,23096971 -g1,640:12980554,23096971 -g1,640:14673349,23096971 -g1,640:15558740,23096971 -g1,640:16777054,23096971 -(1,640:16777054,23096971:0,452978,115847 -r1,640:19245591,23096971:2468537,568825,115847 -k1,640:16777054,23096971:-2468537 -) -(1,640:16777054,23096971:2468537,452978,115847 -k1,640:16777054,23096971:3277 -h1,640:19242314,23096971:0,411205,112570 -) -g1,640:19444820,23096971 -g1,640:22732105,23096971 -g1,640:23547372,23096971 -g1,640:24765686,23096971 -g1,640:28481577,23096971 -k1,641:32583029,23096971:2059350 -g1,641:32583029,23096971 -) -v1,643:6630773,24166692:0,393216,0 -(1,672:6630773,34006513:25952256,10233037,196608 -g1,672:6630773,34006513 -g1,672:6630773,34006513 -g1,672:6434165,34006513 -(1,672:6434165,34006513:0,10233037,196608 -r1,672:32779637,34006513:26345472,10429645,196608 -k1,672:6434165,34006513:-26345472 -) -(1,672:6434165,34006513:26345472,10233037,196608 -[1,672:6630773,34006513:25952256,10036429,0 -(1,645:6630773,24374310:25952256,404226,82312 -(1,644:6630773,24374310:0,0,0 -g1,644:6630773,24374310 -g1,644:6630773,24374310 -g1,644:6303093,24374310 -(1,644:6303093,24374310:0,0,0 -) -g1,644:6630773,24374310 -) -g1,645:7263065,24374310 -g1,645:8211503,24374310 -g1,645:9792233,24374310 -g1,645:10740671,24374310 -h1,645:11372963,24374310:0,0,0 -k1,645:32583029,24374310:21210066 -g1,645:32583029,24374310 -) -(1,646:6630773,25040488:25952256,284164,4718 -h1,646:6630773,25040488:0,0,0 -h1,646:6946919,25040488:0,0,0 -k1,646:32583029,25040488:25636110 -g1,646:32583029,25040488 -) -(1,650:6630773,25772202:25952256,404226,76021 -(1,648:6630773,25772202:0,0,0 -g1,648:6630773,25772202 -g1,648:6630773,25772202 -g1,648:6303093,25772202 -(1,648:6303093,25772202:0,0,0 -) -g1,648:6630773,25772202 -) -g1,650:7579210,25772202 -g1,650:8843793,25772202 -g1,650:9476085,25772202 -g1,650:10108377,25772202 -h1,650:10424523,25772202:0,0,0 -k1,650:32583029,25772202:22158506 -g1,650:32583029,25772202 -) -(1,652:6630773,27093740:25952256,404226,82312 -(1,651:6630773,27093740:0,0,0 -g1,651:6630773,27093740 -g1,651:6630773,27093740 -g1,651:6303093,27093740 -(1,651:6303093,27093740:0,0,0 -) -g1,651:6630773,27093740 -) -g1,652:7263065,27093740 -g1,652:8211503,27093740 -g1,652:9792233,27093740 -g1,652:10740671,27093740 -h1,652:11372963,27093740:0,0,0 -k1,652:32583029,27093740:21210066 -g1,652:32583029,27093740 -) -(1,653:6630773,27759918:25952256,404226,6290 -h1,653:6630773,27759918:0,0,0 -h1,653:6946919,27759918:0,0,0 -k1,653:32583029,27759918:25636110 -g1,653:32583029,27759918 -) -(1,657:6630773,28491632:25952256,404226,76021 -(1,655:6630773,28491632:0,0,0 -g1,655:6630773,28491632 -g1,655:6630773,28491632 -g1,655:6303093,28491632 -(1,655:6303093,28491632:0,0,0 -) -g1,655:6630773,28491632 -) -g1,657:7579210,28491632 -g1,657:8843793,28491632 -g1,657:9476085,28491632 -g1,657:10108377,28491632 -h1,657:10424523,28491632:0,0,0 -k1,657:32583029,28491632:22158506 -g1,657:32583029,28491632 -) -(1,659:6630773,29813170:25952256,404226,82312 -(1,658:6630773,29813170:0,0,0 -g1,658:6630773,29813170 -g1,658:6630773,29813170 -g1,658:6303093,29813170 -(1,658:6303093,29813170:0,0,0 -) -g1,658:6630773,29813170 -) -g1,659:7263065,29813170 -g1,659:8211503,29813170 -g1,659:9792232,29813170 -h1,659:10424523,29813170:0,0,0 -k1,659:32583029,29813170:22158506 -g1,659:32583029,29813170 -) -(1,660:6630773,30479348:25952256,284164,6290 -h1,660:6630773,30479348:0,0,0 -h1,660:6946919,30479348:0,0,0 -k1,660:32583029,30479348:25636110 -g1,660:32583029,30479348 -) -(1,664:6630773,31211062:25952256,404226,76021 -(1,662:6630773,31211062:0,0,0 -g1,662:6630773,31211062 -g1,662:6630773,31211062 -g1,662:6303093,31211062 -(1,662:6303093,31211062:0,0,0 -) -g1,662:6630773,31211062 -) -g1,664:7579210,31211062 -g1,664:8843793,31211062 -g1,664:9476085,31211062 -g1,664:10108377,31211062 -g1,664:10740669,31211062 -g1,664:11372961,31211062 -g1,664:12005253,31211062 -h1,664:12321399,31211062:0,0,0 -k1,664:32583029,31211062:20261630 -g1,664:32583029,31211062 -) -(1,666:6630773,32532600:25952256,404226,82312 -(1,665:6630773,32532600:0,0,0 -g1,665:6630773,32532600 -g1,665:6630773,32532600 -g1,665:6303093,32532600 -(1,665:6303093,32532600:0,0,0 -) -g1,665:6630773,32532600 -) -g1,666:7263065,32532600 -g1,666:8211503,32532600 -g1,666:9792232,32532600 -h1,666:10424523,32532600:0,0,0 -k1,666:32583029,32532600:22158506 -g1,666:32583029,32532600 -) -(1,667:6630773,33198778:25952256,404226,6290 -h1,667:6630773,33198778:0,0,0 -h1,667:6946919,33198778:0,0,0 -k1,667:32583029,33198778:25636110 -g1,667:32583029,33198778 -) -(1,671:6630773,33930492:25952256,404226,76021 -(1,669:6630773,33930492:0,0,0 -g1,669:6630773,33930492 -g1,669:6630773,33930492 -g1,669:6303093,33930492 -(1,669:6303093,33930492:0,0,0 -) -g1,669:6630773,33930492 -) -g1,671:7579210,33930492 -g1,671:8843793,33930492 -g1,671:9476085,33930492 -g1,671:10108377,33930492 -g1,671:10740669,33930492 -g1,671:11372961,33930492 -g1,671:12005253,33930492 -h1,671:12321399,33930492:0,0,0 -k1,671:32583029,33930492:20261630 -g1,671:32583029,33930492 -) -] -) -g1,672:32583029,34006513 -g1,672:6630773,34006513 -g1,672:6630773,34006513 -g1,672:32583029,34006513 -g1,672:32583029,34006513 -) -h1,672:6630773,34203121:0,0,0 -(1,676:6630773,35448152:25952256,505283,134348 -h1,675:6630773,35448152:983040,0,0 -k1,675:10201114,35448152:189339 -(1,675:10201114,35448152:0,452978,115847 -r1,675:11262803,35448152:1061689,568825,115847 -k1,675:10201114,35448152:-1061689 -) -(1,675:10201114,35448152:1061689,452978,115847 -k1,675:10201114,35448152:3277 -h1,675:11259526,35448152:0,411205,112570 -) -k1,675:11452142,35448152:189339 -k1,675:14019782,35448152:189338 -k1,675:14895283,35448152:189339 -k1,675:18487251,35448152:189339 -k1,675:19849029,35448152:189339 -k1,675:20721253,35448152:189339 -k1,675:22560789,35448152:189339 -k1,675:25058305,35448152:189338 -k1,675:26439089,35448152:189339 -k1,675:30770303,35448152:189339 -k1,675:32583029,35448152:0 -) -(1,676:6630773,36289640:25952256,513147,126483 -k1,675:7958204,36289640:170721 -k1,675:9642152,36289640:170722 -k1,675:12459217,36289640:170721 -k1,675:14360088,36289640:170721 -k1,675:17835790,36289640:170721 -k1,675:18874864,36289640:170722 -k1,675:20382519,36289640:170721 -k1,675:22083506,36289640:170721 -k1,675:22905656,36289640:170722 -k1,675:24915317,36289640:170721 -k1,675:26242748,36289640:170721 -k1,675:28391346,36289640:170721 -k1,675:29178106,36289640:170722 -k1,675:30367912,36289640:170721 -k1,675:32583029,36289640:0 -) -(1,676:6630773,37131128:25952256,513147,134348 -k1,675:7511764,37131128:221699 -k1,675:10379806,37131128:221698 -k1,675:11643527,37131128:221699 -k1,675:13068466,37131128:221698 -k1,675:16538129,37131128:221699 -(1,675:16538129,37131128:0,452978,115847 -r1,675:17599818,37131128:1061689,568825,115847 -k1,675:16538129,37131128:-1061689 -) -(1,675:16538129,37131128:1061689,452978,115847 -k1,675:16538129,37131128:3277 -h1,675:17596541,37131128:0,411205,112570 -) -k1,675:17821516,37131128:221698 -k1,675:18574712,37131128:221699 -k1,675:19862682,37131128:221699 -k1,675:22061601,37131128:221698 -k1,675:23044828,37131128:221699 -k1,675:25045828,37131128:221698 -k1,675:26538925,37131128:221699 -k1,675:28529440,37131128:221698 -k1,675:29843624,37131128:221699 -k1,675:32583029,37131128:0 -) -(1,676:6630773,37972616:25952256,513147,126483 -k1,675:10051103,37972616:287709 -k1,675:11732763,37972616:287709 -(1,675:11732763,37972616:0,452978,115847 -r1,675:12794452,37972616:1061689,568825,115847 -k1,675:11732763,37972616:-1061689 -) -(1,675:11732763,37972616:1061689,452978,115847 -k1,675:11732763,37972616:3277 -h1,675:12791175,37972616:0,411205,112570 -) -k1,675:13255831,37972616:287709 -k1,675:14615709,37972616:287709 -k1,675:16106659,37972616:287709 -k1,675:16925865,37972616:287709 -k1,675:18279844,37972616:287708 -k1,675:20865901,37972616:287709 -k1,675:21839772,37972616:287709 -k1,675:22542235,37972616:287620 -k1,675:25590320,37972616:287709 -k1,675:26233889,37972616:287709 -k1,675:29217094,37972616:287709 -k1,675:31923737,37972616:287709 -k1,675:32583029,37972616:0 -) -(1,676:6630773,38814104:25952256,505283,134348 -k1,675:9193090,38814104:147971 -k1,675:11146578,38814104:147971 -k1,675:12497789,38814104:147970 -k1,675:15893724,38814104:147971 -k1,675:19004578,38814104:147971 -k1,675:19610646,38814104:147971 -k1,675:20862898,38814104:147970 -k1,675:21758635,38814104:147971 -k1,675:23419832,38814104:147971 -k1,675:24219231,38814104:147971 -k1,675:26806452,38814104:147971 -k1,675:29138737,38814104:147970 -k1,675:29744805,38814104:147971 -k1,675:30424273,38814104:147971 -k1,676:32583029,38814104:0 -) -(1,676:6630773,39655592:25952256,513147,126483 -(1,675:6630773,39655592:0,452978,115847 -r1,675:9451022,39655592:2820249,568825,115847 -k1,675:6630773,39655592:-2820249 -) -(1,675:6630773,39655592:2820249,452978,115847 -k1,675:6630773,39655592:3277 -h1,675:9447745,39655592:0,411205,112570 -) -g1,675:9823921,39655592 -g1,675:11214595,39655592 -g1,675:12175352,39655592 -g1,675:14813831,39655592 -g1,675:15471157,39655592 -g1,675:17822588,39655592 -g1,675:20732386,39655592 -g1,675:22088325,39655592 -g1,675:24265431,39655592 -g1,675:25077422,39655592 -g1,675:26295736,39655592 -g1,675:27677890,39655592 -g1,675:28536411,39655592 -k1,676:32583029,39655592:1400274 -g1,676:32583029,39655592 -) -v1,678:6630773,40725313:0,393216,0 -(1,685:6630773,41740666:25952256,1408569,196608 -g1,685:6630773,41740666 -g1,685:6630773,41740666 -g1,685:6434165,41740666 -(1,685:6434165,41740666:0,1408569,196608 -r1,685:32779637,41740666:26345472,1605177,196608 -k1,685:6434165,41740666:-26345472 -) -(1,685:6434165,41740666:26345472,1408569,196608 -[1,685:6630773,41740666:25952256,1211961,0 -(1,680:6630773,40932931:25952256,404226,101187 -(1,679:6630773,40932931:0,0,0 -g1,679:6630773,40932931 -g1,679:6630773,40932931 -g1,679:6303093,40932931 -(1,679:6303093,40932931:0,0,0 -) -g1,679:6630773,40932931 -) -k1,680:6630773,40932931:0 -g1,680:9792230,40932931 -h1,680:10424521,40932931:0,0,0 -k1,680:32583029,40932931:22158508 -g1,680:32583029,40932931 -) -(1,684:6630773,41664645:25952256,404226,76021 -(1,682:6630773,41664645:0,0,0 -g1,682:6630773,41664645 -g1,682:6630773,41664645 -g1,682:6303093,41664645 -(1,682:6303093,41664645:0,0,0 -) -g1,682:6630773,41664645 -) -g1,684:7579210,41664645 -g1,684:8843793,41664645 -g1,684:9476085,41664645 -g1,684:10108377,41664645 -g1,684:10740669,41664645 -g1,684:11372961,41664645 -g1,684:12005253,41664645 -h1,684:12321399,41664645:0,0,0 -k1,684:32583029,41664645:20261630 -g1,684:32583029,41664645 -) -] -) -g1,685:32583029,41740666 -g1,685:6630773,41740666 -g1,685:6630773,41740666 -g1,685:32583029,41740666 -g1,685:32583029,41740666 -) -h1,685:6630773,41937274:0,0,0 -(1,689:6630773,43182305:25952256,513147,126483 -h1,688:6630773,43182305:983040,0,0 -k1,688:9024246,43182305:213746 -k1,688:11396748,43182305:213746 -k1,688:13465817,43182305:213745 -k1,688:14211060,43182305:213746 -k1,688:15443891,43182305:213746 -k1,688:17311110,43182305:213746 -k1,688:18211017,43182305:213745 -k1,688:19372414,43182305:213746 -(1,688:19372414,43182305:0,452978,115847 -r1,688:21840951,43182305:2468537,568825,115847 -k1,688:19372414,43182305:-2468537 -) -(1,688:19372414,43182305:2468537,452978,115847 -g1,688:21134250,43182305 -h1,688:21837674,43182305:0,411205,112570 -) -k1,688:22228367,43182305:213746 -k1,688:25286376,43182305:213746 -(1,688:25286376,43182305:0,452978,115847 -r1,688:28106625,43182305:2820249,568825,115847 -k1,688:25286376,43182305:-2820249 -) -(1,688:25286376,43182305:2820249,452978,115847 -k1,688:25286376,43182305:3277 -h1,688:28103348,43182305:0,411205,112570 -) -k1,688:28320370,43182305:213745 -k1,688:30912418,43182305:213746 -k1,688:31812326,43182305:213746 -k1,688:32583029,43182305:0 -) -(1,689:6630773,44023793:25952256,513147,134348 -k1,688:9981152,44023793:278051 -k1,688:11029907,44023793:278052 -k1,688:13057114,44023793:278051 -k1,688:15949396,44023793:278051 -k1,688:17740674,44023793:278052 -k1,688:19904196,44023793:278051 -k1,688:20833676,44023793:278052 -k1,688:24092304,44023793:278051 -k1,688:25158753,44023793:278051 -k1,688:27678136,44023793:278052 -k1,688:31202185,44023793:278051 -k1,688:32583029,44023793:0 -) -(1,689:6630773,44865281:25952256,513147,126483 -k1,688:8982659,44865281:178712 -k1,688:9777408,44865281:178711 -k1,688:10726823,44865281:178712 -k1,688:12726779,44865281:178711 -k1,688:15979785,44865281:178712 -k1,688:17856534,44865281:178711 -k1,688:19054331,44865281:178712 -k1,688:20982198,44865281:178711 -k1,688:23179419,44865281:178712 -k1,688:23970892,44865281:178711 -k1,688:25281411,44865281:178712 -k1,688:28074353,44865281:178711 -k1,688:31015408,44865281:178712 -k1,688:32583029,44865281:0 -) -(1,689:6630773,45706769:25952256,513147,7863 -g1,688:7849087,45706769 -g1,688:9231241,45706769 -g1,688:10089762,45706769 -g1,688:11308076,45706769 -k1,689:32583029,45706769:19123406 -g1,689:32583029,45706769 -) -] -(1,691:32583029,45706769:0,0,0 -g1,691:32583029,45706769 -) -) -] -(1,691:6630773,47279633:25952256,0,0 -h1,691:6630773,47279633:25952256,0,0 -) -] -h1,691:4262630,4025873:0,0,0 +(1,638:7050203,11965778:25113396,5515073,196608 +[1,638:7246811,11965778:24720180,5318465,0 +(1,621:7246811,7051539:24720180,404226,76021 +(1,620:7246811,7051539:0,0,0 +g1,620:7246811,7051539 +g1,620:7246811,7051539 +g1,620:6919131,7051539 +(1,620:6919131,7051539:0,0,0 +) +g1,620:7246811,7051539 +) +k1,621:7246811,7051539:0 +h1,621:11356706,7051539:0,0,0 +k1,621:31966990,7051539:20610284 +g1,621:31966990,7051539 +) +(1,625:7246811,7783253:24720180,404226,76021 +(1,623:7246811,7783253:0,0,0 +g1,623:7246811,7783253 +g1,623:7246811,7783253 +g1,623:6919131,7783253 +(1,623:6919131,7783253:0,0,0 +) +g1,623:7246811,7783253 +) +g1,625:8195248,7783253 +g1,625:9459831,7783253 +h1,625:10724414,7783253:0,0,0 +k1,625:31966990,7783253:21242576 +g1,625:31966990,7783253 +) +(1,627:7246811,9104791:24720180,404226,107478 +(1,626:7246811,9104791:0,0,0 +g1,626:7246811,9104791 +g1,626:7246811,9104791 +g1,626:6919131,9104791 +(1,626:6919131,9104791:0,0,0 +) +g1,626:7246811,9104791 +) +k1,627:7246811,9104791:0 +h1,627:11356706,9104791:0,0,0 +k1,627:31966990,9104791:20610284 +g1,627:31966990,9104791 +) +(1,631:7246811,9836505:24720180,404226,76021 +(1,629:7246811,9836505:0,0,0 +g1,629:7246811,9836505 +g1,629:7246811,9836505 +g1,629:6919131,9836505 +(1,629:6919131,9836505:0,0,0 +) +g1,629:7246811,9836505 +) +g1,631:8195248,9836505 +g1,631:9459831,9836505 +h1,631:11040559,9836505:0,0,0 +k1,631:31966991,9836505:20926432 +g1,631:31966991,9836505 +) +(1,633:7246811,11158043:24720180,404226,76021 +(1,632:7246811,11158043:0,0,0 +g1,632:7246811,11158043 +g1,632:7246811,11158043 +g1,632:6919131,11158043 +(1,632:6919131,11158043:0,0,0 +) +g1,632:7246811,11158043 +) +k1,633:7246811,11158043:0 +h1,633:11040560,11158043:0,0,0 +k1,633:31966992,11158043:20926432 +g1,633:31966992,11158043 +) +(1,637:7246811,11889757:24720180,404226,76021 +(1,635:7246811,11889757:0,0,0 +g1,635:7246811,11889757 +g1,635:7246811,11889757 +g1,635:6919131,11889757 +(1,635:6919131,11889757:0,0,0 +) +g1,635:7246811,11889757 +) +g1,637:8195248,11889757 +g1,637:9459831,11889757 +h1,637:10724414,11889757:0,0,0 +k1,637:31966990,11889757:21242576 +g1,637:31966990,11889757 +) +] +) +g1,638:31966991,11965778 +g1,638:7246811,11965778 +g1,638:7246811,11965778 +g1,638:31966991,11965778 +g1,638:31966991,11965778 +) +h1,638:7246811,12162386:0,0,0 +(1,642:7246811,13528162:24720180,513147,134348 +h1,641:7246811,13528162:983040,0,0 +k1,641:9694640,13528162:268102 +k1,641:11700756,13528162:268101 +(1,641:11700756,13528162:0,452978,115847 +r1,642:13817581,13528162:2116825,568825,115847 +k1,641:11700756,13528162:-2116825 +) +(1,641:11700756,13528162:2116825,452978,115847 +k1,641:11700756,13528162:3277 +h1,641:13814304,13528162:0,411205,112570 +) +k1,641:14085683,13528162:268102 +k1,641:17518518,13528162:268101 +k1,641:19354241,13528162:268102 +k1,641:20641428,13528162:268102 +k1,641:21362969,13528162:268032 +k1,641:24647038,13528162:268102 +k1,641:25531177,13528162:268101 +k1,641:27684750,13528162:268102 +k1,641:29607635,13528162:268101 +k1,641:30867297,13528162:268102 +k1,642:31966991,13528162:0 +) +(1,642:7246811,14369650:24720180,513147,126483 +k1,641:9394971,14369650:228610 +k1,641:11339970,14369650:228611 +k1,641:12227872,14369650:228610 +k1,641:14228576,14369650:228610 +k1,641:17414826,14369650:228610 +k1,641:19122585,14369650:228611 +k1,641:20370280,14369650:228610 +k1,641:22336905,14369650:228610 +(1,641:22336905,14369650:0,452978,115847 +r1,642:24453730,14369650:2116825,568825,115847 +k1,641:22336905,14369650:-2116825 +) +(1,641:22336905,14369650:2116825,452978,115847 +k1,641:22336905,14369650:3277 +h1,641:24450453,14369650:0,411205,112570 +) +k1,641:24682340,14369650:228610 +k1,641:26424177,14369650:228611 +k1,641:27304215,14369650:228610 +k1,641:29270840,14369650:228610 +k1,642:31966991,14369650:0 +) +(1,642:7246811,15211138:24720180,513147,134348 +k1,641:10361519,15211138:182627 +k1,641:14877387,15211138:182627 +k1,641:18349920,15211138:182626 +k1,641:21499362,15211138:182627 +k1,641:22701074,15211138:182627 +k1,641:23976186,15211138:182627 +k1,641:24825969,15211138:182627 +(1,641:24825969,15211138:0,414482,115847 +r1,642:25184235,15211138:358266,530329,115847 +k1,641:24825969,15211138:-358266 +) +(1,641:24825969,15211138:358266,414482,115847 +k1,641:24825969,15211138:3277 +h1,641:25180958,15211138:0,411205,112570 +) +k1,641:25366862,15211138:182627 +k1,641:27434303,15211138:182626 +k1,641:29184551,15211138:182627 +k1,641:30386263,15211138:182627 +k1,642:31966991,15211138:0 +) +(1,642:7246811,16052626:24720180,505283,134348 +g1,641:8832126,16052626 +g1,641:9647393,16052626 +g1,641:10473801,16052626 +g1,641:13401294,16052626 +g1,641:15289386,16052626 +g1,641:17718805,16052626 +k1,642:31966991,16052626:10958279 +g1,642:31966991,16052626 +) +] +) +] +r1,642:32583029,16776798:26214,10915917,0 +) +] +) +) +g1,642:32583029,16186974 +) +h1,642:6630773,16803012:0,0,0 +(1,645:6630773,18048043:25952256,505283,134348 +h1,644:6630773,18048043:983040,0,0 +k1,644:10554890,18048043:243615 +k1,644:13640146,18048043:243615 +k1,644:14988043,18048043:243615 +k1,644:17603406,18048043:243615 +k1,644:19497218,18048043:243615 +k1,644:21183280,18048043:243615 +k1,644:22583605,18048043:243615 +k1,644:24681234,18048043:243615 +k1,644:26415138,18048043:243615 +k1,644:28531772,18048043:243615 +k1,644:31591469,18048043:243615 +k1,644:32583029,18048043:0 +) +(1,645:6630773,18889531:25952256,513147,134348 +k1,644:7483783,18889531:236972 +k1,644:8135560,18889531:236934 +(1,644:8135560,18889531:0,414482,115847 +r1,644:10252385,18889531:2116825,530329,115847 +k1,644:8135560,18889531:-2116825 +) +(1,644:8135560,18889531:2116825,414482,115847 +k1,644:8135560,18889531:3277 +h1,644:10249108,18889531:0,411205,112570 +) +k1,644:10489357,18889531:236972 +k1,644:11056630,18889531:236972 +k1,644:11952894,18889531:236972 +k1,644:14203132,18889531:236972 +k1,644:15770485,18889531:236972 +k1,644:16961006,18889531:236972 +k1,644:18330440,18889531:236972 +k1,644:20021001,18889531:236972 +k1,644:21282956,18889531:236972 +k1,644:22816886,18889531:236972 +k1,644:24257099,18889531:236972 +k1,644:25025568,18889531:236972 +k1,644:28645508,18889531:236972 +k1,644:29700369,18889531:236972 +k1,644:31107814,18889531:236972 +k1,644:32583029,18889531:0 +) +(1,645:6630773,19731019:25952256,513147,126483 +k1,644:8262064,19731019:191465 +k1,644:10482525,19731019:191466 +k1,644:11693075,19731019:191465 +k1,644:14057715,19731019:191466 +k1,644:14908472,19731019:191465 +k1,644:18901680,19731019:191465 +k1,644:20597197,19731019:191466 +k1,644:23138783,19731019:191465 +k1,644:26256431,19731019:191465 +k1,644:27841848,19731019:191466 +(1,644:27841848,19731019:0,452978,115847 +r1,644:28903537,19731019:1061689,568825,115847 +k1,644:27841848,19731019:-1061689 +) +(1,644:27841848,19731019:1061689,452978,115847 +k1,644:27841848,19731019:3277 +h1,644:28900260,19731019:0,411205,112570 +) +k1,644:29268672,19731019:191465 +k1,644:30840982,19731019:191466 +k1,644:31563944,19731019:191465 +k1,644:32583029,19731019:0 +) +(1,645:6630773,20572507:25952256,513147,126483 +k1,644:8556483,20572507:176554 +k1,644:9415922,20572507:176554 +k1,644:12206706,20572507:176553 +k1,644:12999298,20572507:176554 +k1,644:14194937,20572507:176554 +k1,644:16349368,20572507:176554 +k1,644:17185214,20572507:176554 +k1,644:18380852,20572507:176553 +k1,644:19863539,20572507:176554 +k1,644:22525874,20572507:176554 +k1,644:23592407,20572507:176554 +k1,644:25470931,20572507:176554 +k1,644:27534921,20572507:176553 +k1,644:30774628,20572507:176554 +k1,644:31563944,20572507:176554 +k1,644:32583029,20572507:0 +) +(1,645:6630773,21413995:25952256,513147,7863 +g1,644:8368787,21413995 +g1,644:9227308,21413995 +g1,644:10445622,21413995 +g1,644:12989074,21413995 +k1,645:32583029,21413995:18251778 +g1,645:32583029,21413995 +) +(1,647:6630773,22255483:25952256,513147,134348 +h1,646:6630773,22255483:983040,0,0 +k1,646:9083621,22255483:198410 +k1,646:10386312,22255483:198409 +k1,646:11677207,22255483:198410 +(1,646:11677207,22255483:0,452978,115847 +r1,646:12738896,22255483:1061689,568825,115847 +k1,646:11677207,22255483:-1061689 +) +(1,646:11677207,22255483:1061689,452978,115847 +k1,646:11677207,22255483:3277 +h1,646:12735619,22255483:0,411205,112570 +) +k1,646:12937306,22255483:198410 +k1,646:17547600,22255483:198410 +k1,646:18397437,22255483:198409 +k1,646:20525227,22255483:198410 +k1,646:21079497,22255483:198410 +k1,646:23255784,22255483:198410 +k1,646:25021814,22255483:198409 +k1,646:26922194,22255483:198410 +k1,646:29602452,22255483:198410 +k1,646:32583029,22255483:0 +) +(1,647:6630773,23096971:25952256,513147,134348 +g1,646:9138180,23096971 +g1,646:9996701,23096971 +g1,646:12209196,23096971 +g1,646:12980554,23096971 +g1,646:14673349,23096971 +g1,646:15558740,23096971 +g1,646:16777054,23096971 +(1,646:16777054,23096971:0,452978,115847 +r1,646:19245591,23096971:2468537,568825,115847 +k1,646:16777054,23096971:-2468537 +) +(1,646:16777054,23096971:2468537,452978,115847 +k1,646:16777054,23096971:3277 +h1,646:19242314,23096971:0,411205,112570 +) +g1,646:19444820,23096971 +g1,646:22732105,23096971 +g1,646:23547372,23096971 +g1,646:24765686,23096971 +g1,646:28481577,23096971 +k1,647:32583029,23096971:2059350 +g1,647:32583029,23096971 +) +v1,649:6630773,24166692:0,393216,0 +(1,678:6630773,34006513:25952256,10233037,196608 +g1,678:6630773,34006513 +g1,678:6630773,34006513 +g1,678:6434165,34006513 +(1,678:6434165,34006513:0,10233037,196608 +r1,678:32779637,34006513:26345472,10429645,196608 +k1,678:6434165,34006513:-26345472 +) +(1,678:6434165,34006513:26345472,10233037,196608 +[1,678:6630773,34006513:25952256,10036429,0 +(1,651:6630773,24374310:25952256,404226,82312 +(1,650:6630773,24374310:0,0,0 +g1,650:6630773,24374310 +g1,650:6630773,24374310 +g1,650:6303093,24374310 +(1,650:6303093,24374310:0,0,0 +) +g1,650:6630773,24374310 +) +g1,651:7263065,24374310 +g1,651:8211503,24374310 +g1,651:9792233,24374310 +g1,651:10740671,24374310 +h1,651:11372963,24374310:0,0,0 +k1,651:32583029,24374310:21210066 +g1,651:32583029,24374310 +) +(1,652:6630773,25040488:25952256,284164,4718 +h1,652:6630773,25040488:0,0,0 +h1,652:6946919,25040488:0,0,0 +k1,652:32583029,25040488:25636110 +g1,652:32583029,25040488 +) +(1,656:6630773,25772202:25952256,404226,76021 +(1,654:6630773,25772202:0,0,0 +g1,654:6630773,25772202 +g1,654:6630773,25772202 +g1,654:6303093,25772202 +(1,654:6303093,25772202:0,0,0 +) +g1,654:6630773,25772202 +) +g1,656:7579210,25772202 +g1,656:8843793,25772202 +g1,656:9476085,25772202 +g1,656:10108377,25772202 +h1,656:10424523,25772202:0,0,0 +k1,656:32583029,25772202:22158506 +g1,656:32583029,25772202 +) +(1,658:6630773,27093740:25952256,404226,82312 +(1,657:6630773,27093740:0,0,0 +g1,657:6630773,27093740 +g1,657:6630773,27093740 +g1,657:6303093,27093740 +(1,657:6303093,27093740:0,0,0 +) +g1,657:6630773,27093740 +) +g1,658:7263065,27093740 +g1,658:8211503,27093740 +g1,658:9792233,27093740 +g1,658:10740671,27093740 +h1,658:11372963,27093740:0,0,0 +k1,658:32583029,27093740:21210066 +g1,658:32583029,27093740 +) +(1,659:6630773,27759918:25952256,404226,6290 +h1,659:6630773,27759918:0,0,0 +h1,659:6946919,27759918:0,0,0 +k1,659:32583029,27759918:25636110 +g1,659:32583029,27759918 +) +(1,663:6630773,28491632:25952256,404226,76021 +(1,661:6630773,28491632:0,0,0 +g1,661:6630773,28491632 +g1,661:6630773,28491632 +g1,661:6303093,28491632 +(1,661:6303093,28491632:0,0,0 +) +g1,661:6630773,28491632 +) +g1,663:7579210,28491632 +g1,663:8843793,28491632 +g1,663:9476085,28491632 +g1,663:10108377,28491632 +h1,663:10424523,28491632:0,0,0 +k1,663:32583029,28491632:22158506 +g1,663:32583029,28491632 +) +(1,665:6630773,29813170:25952256,404226,82312 +(1,664:6630773,29813170:0,0,0 +g1,664:6630773,29813170 +g1,664:6630773,29813170 +g1,664:6303093,29813170 +(1,664:6303093,29813170:0,0,0 +) +g1,664:6630773,29813170 +) +g1,665:7263065,29813170 +g1,665:8211503,29813170 +g1,665:9792232,29813170 +h1,665:10424523,29813170:0,0,0 +k1,665:32583029,29813170:22158506 +g1,665:32583029,29813170 +) +(1,666:6630773,30479348:25952256,284164,6290 +h1,666:6630773,30479348:0,0,0 +h1,666:6946919,30479348:0,0,0 +k1,666:32583029,30479348:25636110 +g1,666:32583029,30479348 +) +(1,670:6630773,31211062:25952256,404226,76021 +(1,668:6630773,31211062:0,0,0 +g1,668:6630773,31211062 +g1,668:6630773,31211062 +g1,668:6303093,31211062 +(1,668:6303093,31211062:0,0,0 +) +g1,668:6630773,31211062 +) +g1,670:7579210,31211062 +g1,670:8843793,31211062 +g1,670:9476085,31211062 +g1,670:10108377,31211062 +g1,670:10740669,31211062 +g1,670:11372961,31211062 +g1,670:12005253,31211062 +h1,670:12321399,31211062:0,0,0 +k1,670:32583029,31211062:20261630 +g1,670:32583029,31211062 +) +(1,672:6630773,32532600:25952256,404226,82312 +(1,671:6630773,32532600:0,0,0 +g1,671:6630773,32532600 +g1,671:6630773,32532600 +g1,671:6303093,32532600 +(1,671:6303093,32532600:0,0,0 +) +g1,671:6630773,32532600 +) +g1,672:7263065,32532600 +g1,672:8211503,32532600 +g1,672:9792232,32532600 +h1,672:10424523,32532600:0,0,0 +k1,672:32583029,32532600:22158506 +g1,672:32583029,32532600 +) +(1,673:6630773,33198778:25952256,404226,6290 +h1,673:6630773,33198778:0,0,0 +h1,673:6946919,33198778:0,0,0 +k1,673:32583029,33198778:25636110 +g1,673:32583029,33198778 +) +(1,677:6630773,33930492:25952256,404226,76021 +(1,675:6630773,33930492:0,0,0 +g1,675:6630773,33930492 +g1,675:6630773,33930492 +g1,675:6303093,33930492 +(1,675:6303093,33930492:0,0,0 +) +g1,675:6630773,33930492 +) +g1,677:7579210,33930492 +g1,677:8843793,33930492 +g1,677:9476085,33930492 +g1,677:10108377,33930492 +g1,677:10740669,33930492 +g1,677:11372961,33930492 +g1,677:12005253,33930492 +h1,677:12321399,33930492:0,0,0 +k1,677:32583029,33930492:20261630 +g1,677:32583029,33930492 +) +] +) +g1,678:32583029,34006513 +g1,678:6630773,34006513 +g1,678:6630773,34006513 +g1,678:32583029,34006513 +g1,678:32583029,34006513 +) +h1,678:6630773,34203121:0,0,0 +(1,682:6630773,35448152:25952256,505283,134348 +h1,681:6630773,35448152:983040,0,0 +k1,681:10201114,35448152:189339 +(1,681:10201114,35448152:0,452978,115847 +r1,681:11262803,35448152:1061689,568825,115847 +k1,681:10201114,35448152:-1061689 +) +(1,681:10201114,35448152:1061689,452978,115847 +k1,681:10201114,35448152:3277 +h1,681:11259526,35448152:0,411205,112570 +) +k1,681:11452142,35448152:189339 +k1,681:14019782,35448152:189338 +k1,681:14895283,35448152:189339 +k1,681:18487251,35448152:189339 +k1,681:19849029,35448152:189339 +k1,681:20721253,35448152:189339 +k1,681:22560789,35448152:189339 +k1,681:25058305,35448152:189338 +k1,681:26439089,35448152:189339 +k1,681:30770303,35448152:189339 +k1,681:32583029,35448152:0 +) +(1,682:6630773,36289640:25952256,513147,126483 +k1,681:7958204,36289640:170721 +k1,681:9642152,36289640:170722 +k1,681:12459217,36289640:170721 +k1,681:14360088,36289640:170721 +k1,681:17835790,36289640:170721 +k1,681:18874864,36289640:170722 +k1,681:20382519,36289640:170721 +k1,681:22083506,36289640:170721 +k1,681:22905656,36289640:170722 +k1,681:24915317,36289640:170721 +k1,681:26242748,36289640:170721 +k1,681:28391346,36289640:170721 +k1,681:29178106,36289640:170722 +k1,681:30367912,36289640:170721 +k1,681:32583029,36289640:0 +) +(1,682:6630773,37131128:25952256,513147,134348 +k1,681:7511764,37131128:221699 +k1,681:10379806,37131128:221698 +k1,681:11643527,37131128:221699 +k1,681:13068466,37131128:221698 +k1,681:16538129,37131128:221699 +(1,681:16538129,37131128:0,452978,115847 +r1,681:17599818,37131128:1061689,568825,115847 +k1,681:16538129,37131128:-1061689 +) +(1,681:16538129,37131128:1061689,452978,115847 +k1,681:16538129,37131128:3277 +h1,681:17596541,37131128:0,411205,112570 +) +k1,681:17821516,37131128:221698 +k1,681:18574712,37131128:221699 +k1,681:19862682,37131128:221699 +k1,681:22061601,37131128:221698 +k1,681:23044828,37131128:221699 +k1,681:25045828,37131128:221698 +k1,681:26538925,37131128:221699 +k1,681:28529440,37131128:221698 +k1,681:29843624,37131128:221699 +k1,681:32583029,37131128:0 +) +(1,682:6630773,37972616:25952256,513147,126483 +k1,681:10051103,37972616:287709 +k1,681:11732763,37972616:287709 +(1,681:11732763,37972616:0,452978,115847 +r1,681:12794452,37972616:1061689,568825,115847 +k1,681:11732763,37972616:-1061689 +) +(1,681:11732763,37972616:1061689,452978,115847 +k1,681:11732763,37972616:3277 +h1,681:12791175,37972616:0,411205,112570 +) +k1,681:13255831,37972616:287709 +k1,681:14615709,37972616:287709 +k1,681:16106659,37972616:287709 +k1,681:16925865,37972616:287709 +k1,681:18279844,37972616:287708 +k1,681:20865901,37972616:287709 +k1,681:21839772,37972616:287709 +k1,681:22542235,37972616:287620 +k1,681:25590320,37972616:287709 +k1,681:26233889,37972616:287709 +k1,681:29217094,37972616:287709 +k1,681:31923737,37972616:287709 +k1,681:32583029,37972616:0 +) +(1,682:6630773,38814104:25952256,505283,134348 +k1,681:9193090,38814104:147971 +k1,681:11146578,38814104:147971 +k1,681:12497789,38814104:147970 +k1,681:15893724,38814104:147971 +k1,681:19004578,38814104:147971 +k1,681:19610646,38814104:147971 +k1,681:20862898,38814104:147970 +k1,681:21758635,38814104:147971 +k1,681:23419832,38814104:147971 +k1,681:24219231,38814104:147971 +k1,681:26806452,38814104:147971 +k1,681:29138737,38814104:147970 +k1,681:29744805,38814104:147971 +k1,681:30424273,38814104:147971 +k1,682:32583029,38814104:0 +) +(1,682:6630773,39655592:25952256,513147,126483 +(1,681:6630773,39655592:0,452978,115847 +r1,681:9451022,39655592:2820249,568825,115847 +k1,681:6630773,39655592:-2820249 +) +(1,681:6630773,39655592:2820249,452978,115847 +k1,681:6630773,39655592:3277 +h1,681:9447745,39655592:0,411205,112570 +) +g1,681:9823921,39655592 +g1,681:11214595,39655592 +g1,681:12175352,39655592 +g1,681:14813831,39655592 +g1,681:15471157,39655592 +g1,681:17822588,39655592 +g1,681:20732386,39655592 +g1,681:22088325,39655592 +g1,681:24265431,39655592 +g1,681:25077422,39655592 +g1,681:26295736,39655592 +g1,681:27677890,39655592 +g1,681:28536411,39655592 +k1,682:32583029,39655592:1400274 +g1,682:32583029,39655592 +) +v1,684:6630773,40725313:0,393216,0 +(1,691:6630773,41740666:25952256,1408569,196608 +g1,691:6630773,41740666 +g1,691:6630773,41740666 +g1,691:6434165,41740666 +(1,691:6434165,41740666:0,1408569,196608 +r1,691:32779637,41740666:26345472,1605177,196608 +k1,691:6434165,41740666:-26345472 +) +(1,691:6434165,41740666:26345472,1408569,196608 +[1,691:6630773,41740666:25952256,1211961,0 +(1,686:6630773,40932931:25952256,404226,101187 +(1,685:6630773,40932931:0,0,0 +g1,685:6630773,40932931 +g1,685:6630773,40932931 +g1,685:6303093,40932931 +(1,685:6303093,40932931:0,0,0 +) +g1,685:6630773,40932931 +) +k1,686:6630773,40932931:0 +g1,686:9792230,40932931 +h1,686:10424521,40932931:0,0,0 +k1,686:32583029,40932931:22158508 +g1,686:32583029,40932931 +) +(1,690:6630773,41664645:25952256,404226,76021 +(1,688:6630773,41664645:0,0,0 +g1,688:6630773,41664645 +g1,688:6630773,41664645 +g1,688:6303093,41664645 +(1,688:6303093,41664645:0,0,0 +) +g1,688:6630773,41664645 +) +g1,690:7579210,41664645 +g1,690:8843793,41664645 +g1,690:9476085,41664645 +g1,690:10108377,41664645 +g1,690:10740669,41664645 +g1,690:11372961,41664645 +g1,690:12005253,41664645 +h1,690:12321399,41664645:0,0,0 +k1,690:32583029,41664645:20261630 +g1,690:32583029,41664645 +) +] +) +g1,691:32583029,41740666 +g1,691:6630773,41740666 +g1,691:6630773,41740666 +g1,691:32583029,41740666 +g1,691:32583029,41740666 +) +h1,691:6630773,41937274:0,0,0 +(1,695:6630773,43182305:25952256,513147,126483 +h1,694:6630773,43182305:983040,0,0 +k1,694:9024246,43182305:213746 +k1,694:11396748,43182305:213746 +k1,694:13465817,43182305:213745 +k1,694:14211060,43182305:213746 +k1,694:15443891,43182305:213746 +k1,694:17311110,43182305:213746 +k1,694:18211017,43182305:213745 +k1,694:19372414,43182305:213746 +(1,694:19372414,43182305:0,452978,115847 +r1,694:21840951,43182305:2468537,568825,115847 +k1,694:19372414,43182305:-2468537 +) +(1,694:19372414,43182305:2468537,452978,115847 +g1,694:21134250,43182305 +h1,694:21837674,43182305:0,411205,112570 +) +k1,694:22228367,43182305:213746 +k1,694:25286376,43182305:213746 +(1,694:25286376,43182305:0,452978,115847 +r1,694:28106625,43182305:2820249,568825,115847 +k1,694:25286376,43182305:-2820249 +) +(1,694:25286376,43182305:2820249,452978,115847 +k1,694:25286376,43182305:3277 +h1,694:28103348,43182305:0,411205,112570 +) +k1,694:28320370,43182305:213745 +k1,694:30912418,43182305:213746 +k1,694:31812326,43182305:213746 +k1,694:32583029,43182305:0 +) +(1,695:6630773,44023793:25952256,513147,134348 +k1,694:9981152,44023793:278051 +k1,694:11029907,44023793:278052 +k1,694:13057114,44023793:278051 +k1,694:15949396,44023793:278051 +k1,694:17740674,44023793:278052 +k1,694:19904196,44023793:278051 +k1,694:20833676,44023793:278052 +k1,694:24092304,44023793:278051 +k1,694:25158753,44023793:278051 +k1,694:27678136,44023793:278052 +k1,694:31202185,44023793:278051 +k1,694:32583029,44023793:0 +) +(1,695:6630773,44865281:25952256,513147,126483 +k1,694:8982659,44865281:178712 +k1,694:9777408,44865281:178711 +k1,694:10726823,44865281:178712 +k1,694:12726779,44865281:178711 +k1,694:15979785,44865281:178712 +k1,694:17856534,44865281:178711 +k1,694:19054331,44865281:178712 +k1,694:20982198,44865281:178711 +k1,694:23179419,44865281:178712 +k1,694:23970892,44865281:178711 +k1,694:25281411,44865281:178712 +k1,694:28074353,44865281:178711 +k1,694:31015408,44865281:178712 +k1,694:32583029,44865281:0 +) +(1,695:6630773,45706769:25952256,513147,7863 +g1,694:7849087,45706769 +g1,694:9231241,45706769 +g1,694:10089762,45706769 +g1,694:11308076,45706769 +k1,695:32583029,45706769:19123406 +g1,695:32583029,45706769 +) +] +(1,697:32583029,45706769:0,0,0 +g1,697:32583029,45706769 +) +) +] +(1,697:6630773,47279633:25952256,0,0 +h1,697:6630773,47279633:25952256,0,0 +) +] +h1,697:4262630,4025873:0,0,0 ] !24935 }33 -Input:183:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:184:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:185:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:186:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:187:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:188:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:189:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:190:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:191:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:179:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:180:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:181:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:182:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:183:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:184:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {34 -[1,787:4262630,47279633:28320399,43253760,0 -(1,787:4262630,4025873:0,0,0 -[1,787:-473657,4025873:25952256,0,0 -(1,787:-473657,-710414:25952256,0,0 -h1,787:-473657,-710414:0,0,0 -(1,787:-473657,-710414:0,0,0 -(1,787:-473657,-710414:0,0,0 -g1,787:-473657,-710414 -(1,787:-473657,-710414:65781,0,65781 -g1,787:-407876,-710414 -[1,787:-407876,-644633:0,0,0 +[1,793:4262630,47279633:28320399,43253760,0 +(1,793:4262630,4025873:0,0,0 +[1,793:-473657,4025873:25952256,0,0 +(1,793:-473657,-710414:25952256,0,0 +h1,793:-473657,-710414:0,0,0 +(1,793:-473657,-710414:0,0,0 +(1,793:-473657,-710414:0,0,0 +g1,793:-473657,-710414 +(1,793:-473657,-710414:65781,0,65781 +g1,793:-407876,-710414 +[1,793:-407876,-644633:0,0,0 ] ) -k1,787:-473657,-710414:-65781 +k1,793:-473657,-710414:-65781 ) ) -k1,787:25478599,-710414:25952256 -g1,787:25478599,-710414 +k1,793:25478599,-710414:25952256 +g1,793:25478599,-710414 ) ] ) -[1,787:6630773,47279633:25952256,43253760,0 -[1,787:6630773,4812305:25952256,786432,0 -(1,787:6630773,4812305:25952256,505283,11795 -(1,787:6630773,4812305:25952256,505283,11795 -g1,787:3078558,4812305 -[1,787:3078558,4812305:0,0,0 -(1,787:3078558,2439708:0,1703936,0 -k1,787:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,787:2537886,2439708:1179648,16384,0 +[1,793:6630773,47279633:25952256,43253760,0 +[1,793:6630773,4812305:25952256,786432,0 +(1,793:6630773,4812305:25952256,505283,11795 +(1,793:6630773,4812305:25952256,505283,11795 +g1,793:3078558,4812305 +[1,793:3078558,4812305:0,0,0 +(1,793:3078558,2439708:0,1703936,0 +k1,793:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,793:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,787:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,793:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,787:3078558,4812305:0,0,0 -(1,787:3078558,2439708:0,1703936,0 -g1,787:29030814,2439708 -g1,787:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,787:36151628,1915420:16384,1179648,0 +[1,793:3078558,4812305:0,0,0 +(1,793:3078558,2439708:0,1703936,0 +g1,793:29030814,2439708 +g1,793:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,793:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,787:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,793:37855564,2439708:1179648,16384,0 ) ) -k1,787:3078556,2439708:-34777008 +k1,793:3078556,2439708:-34777008 ) ] -[1,787:3078558,4812305:0,0,0 -(1,787:3078558,49800853:0,16384,2228224 -k1,787:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,787:2537886,49800853:1179648,16384,0 +[1,793:3078558,4812305:0,0,0 +(1,793:3078558,49800853:0,16384,2228224 +k1,793:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,793:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,787:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,793:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,787:3078558,4812305:0,0,0 -(1,787:3078558,49800853:0,16384,2228224 -g1,787:29030814,49800853 -g1,787:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,787:36151628,51504789:16384,1179648,0 +[1,793:3078558,4812305:0,0,0 +(1,793:3078558,49800853:0,16384,2228224 +g1,793:29030814,49800853 +g1,793:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,793:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,787:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,793:37855564,49800853:1179648,16384,0 ) ) -k1,787:3078556,49800853:-34777008 +k1,793:3078556,49800853:-34777008 ) ] -g1,787:6630773,4812305 -g1,787:6630773,4812305 -g1,787:9516978,4812305 -g1,787:11710468,4812305 -g1,787:13120147,4812305 -g1,787:16560787,4812305 -k1,787:31786111,4812305:15225324 +g1,793:6630773,4812305 +g1,793:6630773,4812305 +g1,793:9516978,4812305 +g1,793:11710468,4812305 +g1,793:13120147,4812305 +g1,793:16560787,4812305 +k1,793:31786111,4812305:15225324 ) ) ] -[1,787:6630773,45706769:25952256,40108032,0 -(1,787:6630773,45706769:25952256,40108032,0 -(1,787:6630773,45706769:0,0,0 -g1,787:6630773,45706769 +[1,793:6630773,45706769:25952256,40108032,0 +(1,793:6630773,45706769:25952256,40108032,0 +(1,793:6630773,45706769:0,0,0 +g1,793:6630773,45706769 ) -[1,787:6630773,45706769:25952256,40108032,0 -v1,691:6630773,6254097:0,393216,0 -(1,698:6630773,7275742:25952256,1414861,196608 -g1,698:6630773,7275742 -g1,698:6630773,7275742 -g1,698:6434165,7275742 -(1,698:6434165,7275742:0,1414861,196608 -r1,698:32779637,7275742:26345472,1611469,196608 -k1,698:6434165,7275742:-26345472 -) -(1,698:6434165,7275742:26345472,1414861,196608 -[1,698:6630773,7275742:25952256,1218253,0 -(1,693:6630773,6468007:25952256,410518,101187 -(1,692:6630773,6468007:0,0,0 -g1,692:6630773,6468007 -g1,692:6630773,6468007 -g1,692:6303093,6468007 -(1,692:6303093,6468007:0,0,0 -) -g1,692:6630773,6468007 -) -k1,693:6630773,6468007:0 -g1,693:9792230,6468007 -g1,693:12005250,6468007 -g1,693:12637542,6468007 -g1,693:13585980,6468007 -g1,693:15482854,6468007 -g1,693:16115146,6468007 -h1,693:17063583,6468007:0,0,0 -k1,693:32583029,6468007:15519446 -g1,693:32583029,6468007 -) -(1,697:6630773,7199721:25952256,404226,76021 -(1,695:6630773,7199721:0,0,0 -g1,695:6630773,7199721 -g1,695:6630773,7199721 -g1,695:6303093,7199721 -(1,695:6303093,7199721:0,0,0 -) -g1,695:6630773,7199721 -) -g1,697:7579210,7199721 -g1,697:8843793,7199721 -g1,697:9476085,7199721 -g1,697:10108377,7199721 -g1,697:10740669,7199721 -g1,697:11372961,7199721 -g1,697:12005253,7199721 -h1,697:12321399,7199721:0,0,0 -k1,697:32583029,7199721:20261630 -g1,697:32583029,7199721 -) -] -) -g1,698:32583029,7275742 -g1,698:6630773,7275742 -g1,698:6630773,7275742 -g1,698:32583029,7275742 -g1,698:32583029,7275742 -) -h1,698:6630773,7472350:0,0,0 -(1,702:6630773,8838126:25952256,505283,115847 -h1,701:6630773,8838126:983040,0,0 -g1,701:9278427,8838126 -(1,701:9278427,8838126:0,452978,115847 -r1,701:10340116,8838126:1061689,568825,115847 -k1,701:9278427,8838126:-1061689 -) -(1,701:9278427,8838126:1061689,452978,115847 -k1,701:9278427,8838126:3277 -h1,701:10336839,8838126:0,411205,112570 -) -g1,701:10539345,8838126 -g1,701:11930019,8838126 -(1,701:11930019,8838126:0,452978,115847 -r1,701:14750268,8838126:2820249,568825,115847 -k1,701:11930019,8838126:-2820249 -) -(1,701:11930019,8838126:2820249,452978,115847 -k1,701:11930019,8838126:3277 -h1,701:14746991,8838126:0,411205,112570 -) -g1,701:14949497,8838126 -g1,701:16253008,8838126 -g1,701:17738053,8838126 -g1,701:18685048,8838126 -g1,701:20397503,8838126 -g1,701:21990683,8838126 -k1,702:32583029,8838126:9094848 -g1,702:32583029,8838126 -) -v1,704:6630773,10203902:0,393216,0 -(1,721:6630773,20811349:25952256,11000663,616038 -g1,721:6630773,20811349 -(1,721:6630773,20811349:25952256,11000663,616038 -(1,721:6630773,21427387:25952256,11616701,0 -[1,721:6630773,21427387:25952256,11616701,0 -(1,721:6630773,21401173:25952256,11564273,0 -r1,721:6656987,21401173:26214,11564273,0 -[1,721:6656987,21401173:25899828,11564273,0 -(1,721:6656987,20811349:25899828,10384625,0 -[1,721:7246811,20811349:24720180,10384625,0 -(1,705:7246811,11514098:24720180,1087374,134348 -k1,704:8614916,11514098:158402 -k1,704:10044715,11514098:158401 -k1,704:11307399,11514098:158402 -k1,704:13395180,11514098:158401 -k1,704:16823829,11514098:158402 -k1,704:18717623,11514098:158401 -k1,704:21571521,11514098:158402 -(1,704:21571521,11514098:0,452978,115847 -r1,721:23336634,11514098:1765113,568825,115847 -k1,704:21571521,11514098:-1765113 -) -(1,704:21571521,11514098:1765113,452978,115847 -k1,704:21571521,11514098:3277 -h1,704:23333357,11514098:0,411205,112570 -) -k1,704:23495035,11514098:158401 -k1,704:24336322,11514098:158402 -k1,704:25513808,11514098:158401 -k1,704:28418824,11514098:158402 -(1,704:28418824,11514098:0,414482,115847 -r1,721:28777090,11514098:358266,530329,115847 -k1,704:28418824,11514098:-358266 -) -(1,704:28418824,11514098:358266,414482,115847 -k1,704:28418824,11514098:3277 -h1,704:28773813,11514098:0,411205,112570 -) -k1,704:29109161,11514098:158401 -k1,704:29950448,11514098:158402 -k1,704:31966991,11514098:0 -) -(1,705:7246811,12355586:24720180,513147,134348 -k1,704:9551001,12355586:293545 -k1,704:11579939,12355586:293545 -k1,704:14568980,12355586:293545 -(1,704:14568980,12355586:0,452978,115847 -r1,721:16334093,12355586:1765113,568825,115847 -k1,704:14568980,12355586:-1765113 -) -(1,704:14568980,12355586:1765113,452978,115847 -k1,704:14568980,12355586:3277 -h1,704:16330816,12355586:0,411205,112570 -) -k1,704:16801308,12355586:293545 -k1,704:17722688,12355586:293545 -k1,704:19219473,12355586:293544 -k1,704:21053769,12355586:293545 -k1,704:21560212,12355586:293451 -k1,704:23466598,12355586:293545 -k1,704:24411570,12355586:293544 -k1,704:25724200,12355586:293545 -k1,704:28065745,12355586:293545 -k1,704:29010718,12355586:293545 -k1,704:30900720,12355586:293545 -k1,704:31966991,12355586:0 -) -(1,705:7246811,13197074:24720180,513147,134348 -k1,704:8545483,13197074:279587 -k1,704:10411040,13197074:279586 -k1,704:11452155,13197074:279587 -k1,704:14254877,13197074:279586 -k1,704:16231191,13197074:279587 -k1,704:17702223,13197074:279587 -k1,704:20314235,13197074:279586 -k1,704:21924203,13197074:279587 -k1,704:25369179,13197074:279587 -k1,704:27042716,13197074:279586 -k1,704:28341388,13197074:279587 -k1,704:30009027,13197074:279586 -k1,704:30947906,13197074:279587 -k1,704:31966991,13197074:0 -) -(1,705:7246811,14038562:24720180,505283,134348 -g1,704:12445782,14038562 -g1,704:15428980,14038562 -g1,704:18186735,14038562 -(1,704:18186735,14038562:0,452978,115847 -r1,721:21358695,14038562:3171960,568825,115847 -k1,704:18186735,14038562:-3171960 -) -(1,704:18186735,14038562:3171960,452978,115847 -k1,704:18186735,14038562:3277 -h1,704:21355418,14038562:0,411205,112570 -) -g1,704:21557924,14038562 -g1,704:22948598,14038562 -(1,704:22948598,14038562:0,452978,115847 -r1,721:26120558,14038562:3171960,568825,115847 -k1,704:22948598,14038562:-3171960 -) -(1,704:22948598,14038562:3171960,452978,115847 -k1,704:22948598,14038562:3277 -h1,704:26117281,14038562:0,411205,112570 -) -k1,705:31966991,14038562:5672763 -g1,705:31966991,14038562 -) -v1,707:7246811,15229028:0,393216,0 -(1,718:7246811,20090453:24720180,5254641,196608 -g1,718:7246811,20090453 -g1,718:7246811,20090453 -g1,718:7050203,20090453 -(1,718:7050203,20090453:0,5254641,196608 -r1,721:32163599,20090453:25113396,5451249,196608 -k1,718:7050203,20090453:-25113396 -) -(1,718:7050203,20090453:25113396,5254641,196608 -[1,718:7246811,20090453:24720180,5058033,0 -(1,709:7246811,15420917:24720180,388497,9436 -(1,708:7246811,15420917:0,0,0 -g1,708:7246811,15420917 -g1,708:7246811,15420917 -g1,708:6919131,15420917 -(1,708:6919131,15420917:0,0,0 -) -g1,708:7246811,15420917 -) -g1,709:7879103,15420917 -g1,709:8827541,15420917 -k1,709:8827541,15420917:0 -h1,709:10092125,15420917:0,0,0 -k1,709:31966991,15420917:21874866 -g1,709:31966991,15420917 -) -(1,710:7246811,16087095:24720180,284164,4718 -h1,710:7246811,16087095:0,0,0 -h1,710:7562957,16087095:0,0,0 -k1,710:31966991,16087095:24404034 -g1,710:31966991,16087095 -) -(1,711:7246811,16753273:24720180,404226,9436 -h1,711:7246811,16753273:0,0,0 -g1,711:7879103,16753273 -g1,711:8827541,16753273 -k1,711:8827541,16753273:0 -h1,711:10092125,16753273:0,0,0 -k1,711:31966991,16753273:21874866 -g1,711:31966991,16753273 -) -(1,712:7246811,17419451:24720180,404226,6290 -h1,712:7246811,17419451:0,0,0 -h1,712:7562957,17419451:0,0,0 -k1,712:31966991,17419451:24404034 -g1,712:31966991,17419451 -) -(1,713:7246811,18085629:24720180,410518,101187 -h1,713:7246811,18085629:0,0,0 -g1,713:7879103,18085629 -g1,713:8827541,18085629 -g1,713:11672853,18085629 -g1,713:12305145,18085629 -g1,713:13569729,18085629 -g1,713:14518166,18085629 -g1,713:15150458,18085629 -g1,713:16098896,18085629 -g1,713:17047333,18085629 -g1,713:17679625,18085629 -h1,713:18944208,18085629:0,0,0 -k1,713:31966991,18085629:13022783 -g1,713:31966991,18085629 -) -(1,714:7246811,18751807:24720180,284164,6290 -h1,714:7246811,18751807:0,0,0 -h1,714:7562957,18751807:0,0,0 -k1,714:31966991,18751807:24404034 -g1,714:31966991,18751807 -) -(1,715:7246811,19417985:24720180,404226,101187 -h1,715:7246811,19417985:0,0,0 -g1,715:7879103,19417985 -g1,715:8827541,19417985 -g1,715:11356708,19417985 -h1,715:11989000,19417985:0,0,0 -k1,715:31966992,19417985:19977992 -g1,715:31966992,19417985 -) -(1,716:7246811,20084163:24720180,404226,6290 -h1,716:7246811,20084163:0,0,0 -h1,716:7562957,20084163:0,0,0 -k1,716:31966991,20084163:24404034 -g1,716:31966991,20084163 -) -] -) -g1,718:31966991,20090453 -g1,718:7246811,20090453 -g1,718:7246811,20090453 -g1,718:31966991,20090453 -g1,718:31966991,20090453 -) -h1,718:7246811,20287061:0,0,0 -] -) -] -r1,721:32583029,21401173:26214,11564273,0 -) -] -) -) -g1,721:32583029,20811349 -) -h1,721:6630773,21427387:0,0,0 -(1,724:6630773,22793163:25952256,513147,134348 -h1,723:6630773,22793163:983040,0,0 -k1,723:9440433,22793163:191497 -k1,723:12986063,22793163:191497 -k1,723:14462065,22793163:191496 -k1,723:16699596,22793163:191497 -k1,723:17305928,22793163:191489 -k1,723:20259768,22793163:191497 -k1,723:22018886,22793163:191497 -k1,723:23812082,22793163:191496 -k1,723:25705549,22793163:191497 -k1,723:30249292,22793163:191497 -k1,724:32583029,22793163:0 -) -(1,724:6630773,23634651:25952256,513147,134348 -k1,723:8057295,23634651:200999 -k1,723:11595387,23634651:200999 -k1,723:15246200,23634651:200998 -k1,723:18638802,23634651:200999 -k1,723:20031246,23634651:200999 -k1,723:23258042,23634651:200999 -k1,723:24743547,23634651:200999 -k1,723:25936105,23634651:200998 -k1,723:29474197,23634651:200999 -k1,723:31896867,23634651:200999 -k1,723:32583029,23634651:0 -) -(1,724:6630773,24476139:25952256,513147,134348 -k1,723:10381289,24476139:174216 -k1,723:12863684,24476139:174217 -k1,723:13697192,24476139:174216 -k1,723:16667830,24476139:174217 -k1,723:19028982,24476139:174216 -k1,723:19819237,24476139:174217 -k1,723:21878924,24476139:174216 -k1,723:23420222,24476139:174217 -k1,723:24613523,24476139:174216 -k1,723:26630612,24476139:174217 -k1,723:29583555,24476139:174216 -k1,723:30289269,24476139:174217 -k1,724:32583029,24476139:0 -) -(1,724:6630773,25317627:25952256,513147,134348 -k1,723:8053997,25317627:199011 -k1,723:8904436,25317627:199011 -k1,723:11221570,25317627:199010 -k1,723:13792329,25317627:199011 -k1,723:15010425,25317627:199011 -k1,723:16862909,25317627:199011 -k1,723:19757416,25317627:199011 -k1,723:20639312,25317627:199011 -k1,723:23584936,25317627:199010 -k1,723:27543092,25317627:199011 -k1,723:28393531,25317627:199011 -k1,723:30044164,25317627:199011 -k1,723:32583029,25317627:0 -) -(1,724:6630773,26159115:25952256,513147,7863 -g1,723:7489294,26159115 -g1,723:8707608,26159115 -k1,724:32583029,26159115:21723874 -g1,724:32583029,26159115 -) -v1,726:6630773,27349581:0,393216,0 -(1,751:6630773,34530982:25952256,7574617,196608 -g1,751:6630773,34530982 -g1,751:6630773,34530982 -g1,751:6434165,34530982 -(1,751:6434165,34530982:0,7574617,196608 -r1,751:32779637,34530982:26345472,7771225,196608 -k1,751:6434165,34530982:-26345472 -) -(1,751:6434165,34530982:26345472,7574617,196608 -[1,751:6630773,34530982:25952256,7378009,0 -(1,728:6630773,27563491:25952256,410518,101187 -(1,727:6630773,27563491:0,0,0 -g1,727:6630773,27563491 -g1,727:6630773,27563491 -g1,727:6303093,27563491 -(1,727:6303093,27563491:0,0,0 -) -g1,727:6630773,27563491 -) -g1,728:7263065,27563491 -g1,728:7895357,27563491 -g1,728:8527649,27563491 -g1,728:9159941,27563491 -g1,728:10108378,27563491 -g1,728:11372961,27563491 -g1,728:12637544,27563491 -g1,728:13585981,27563491 -g1,728:15799001,27563491 -g1,728:16431293,27563491 -g1,728:18960459,27563491 -k1,728:18960459,27563491:1573 -h1,728:20542760,27563491:0,0,0 -k1,728:32583029,27563491:12040269 -g1,728:32583029,27563491 -) -(1,732:6630773,28295205:25952256,404226,76021 -(1,730:6630773,28295205:0,0,0 -g1,730:6630773,28295205 -g1,730:6630773,28295205 -g1,730:6303093,28295205 -(1,730:6303093,28295205:0,0,0 -) -g1,730:6630773,28295205 -) -g1,732:7579210,28295205 -g1,732:8843793,28295205 -g1,732:9476085,28295205 -g1,732:10108377,28295205 -h1,732:10424523,28295205:0,0,0 -k1,732:32583029,28295205:22158506 -g1,732:32583029,28295205 -) -(1,734:6630773,29616743:25952256,404226,76021 -(1,733:6630773,29616743:0,0,0 -g1,733:6630773,29616743 -g1,733:6630773,29616743 -g1,733:6303093,29616743 -(1,733:6303093,29616743:0,0,0 -) -g1,733:6630773,29616743 -) -g1,734:7579210,29616743 -g1,734:8211502,29616743 -g1,734:9159940,29616743 -g1,734:9792232,29616743 -h1,734:10108378,29616743:0,0,0 -k1,734:32583030,29616743:22474652 -g1,734:32583030,29616743 -) -(1,738:6630773,30348457:25952256,404226,76021 -(1,736:6630773,30348457:0,0,0 -g1,736:6630773,30348457 -g1,736:6630773,30348457 -g1,736:6303093,30348457 -(1,736:6303093,30348457:0,0,0 -) -g1,736:6630773,30348457 -) -g1,738:7579210,30348457 -g1,738:8843793,30348457 -g1,738:9476085,30348457 -g1,738:10108377,30348457 -h1,738:10424523,30348457:0,0,0 -k1,738:32583029,30348457:22158506 -g1,738:32583029,30348457 -) -(1,740:6630773,31669995:25952256,404226,6290 -(1,739:6630773,31669995:0,0,0 -g1,739:6630773,31669995 -g1,739:6630773,31669995 -g1,739:6303093,31669995 -(1,739:6303093,31669995:0,0,0 -) -g1,739:6630773,31669995 -) -g1,740:7263065,31669995 -g1,740:7895357,31669995 -h1,740:8211503,31669995:0,0,0 -k1,740:32583029,31669995:24371526 -g1,740:32583029,31669995 -) -(1,744:6630773,32401709:25952256,404226,76021 -(1,742:6630773,32401709:0,0,0 -g1,742:6630773,32401709 -g1,742:6630773,32401709 -g1,742:6303093,32401709 -(1,742:6303093,32401709:0,0,0 -) -g1,742:6630773,32401709 -) -g1,744:7579210,32401709 -g1,744:8843793,32401709 -g1,744:9476085,32401709 -g1,744:10108377,32401709 -h1,744:10424523,32401709:0,0,0 -k1,744:32583029,32401709:22158506 -g1,744:32583029,32401709 -) -(1,746:6630773,33723247:25952256,284164,4718 -(1,745:6630773,33723247:0,0,0 -g1,745:6630773,33723247 -g1,745:6630773,33723247 -g1,745:6303093,33723247 -(1,745:6303093,33723247:0,0,0 -) -g1,745:6630773,33723247 -) -g1,746:7263065,33723247 -g1,746:7895357,33723247 -h1,746:8211503,33723247:0,0,0 -k1,746:32583029,33723247:24371526 -g1,746:32583029,33723247 -) -(1,750:6630773,34454961:25952256,404226,76021 -(1,748:6630773,34454961:0,0,0 -g1,748:6630773,34454961 -g1,748:6630773,34454961 -g1,748:6303093,34454961 -(1,748:6303093,34454961:0,0,0 -) -g1,748:6630773,34454961 -) -g1,750:7579210,34454961 -g1,750:8843793,34454961 -g1,750:9476085,34454961 -g1,750:10108377,34454961 -h1,750:10424523,34454961:0,0,0 -k1,750:32583029,34454961:22158506 -g1,750:32583029,34454961 -) -] -) -g1,751:32583029,34530982 -g1,751:6630773,34530982 -g1,751:6630773,34530982 -g1,751:32583029,34530982 -g1,751:32583029,34530982 -) -h1,751:6630773,34727590:0,0,0 -(1,755:6630773,36093366:25952256,513147,126483 -h1,754:6630773,36093366:983040,0,0 -k1,754:8633052,36093366:201350 -k1,754:9292498,36093366:201349 -k1,754:10598130,36093366:201350 -k1,754:11547246,36093366:201350 -k1,754:13188421,36093366:201349 -k1,754:14005809,36093366:201350 -k1,754:15226244,36093366:201350 -k1,754:16733726,36093366:201349 -k1,754:18103583,36093366:201350 -k1,754:20333927,36093366:201349 -k1,754:23007950,36093366:201350 -k1,754:26595545,36093366:201350 -k1,754:27464050,36093366:201349 -k1,754:28253913,36093366:201350 -k1,754:28986760,36093366:201350 -k1,754:30736725,36093366:201349 -k1,754:31469572,36093366:201350 -k1,755:32583029,36093366:0 -) -(1,755:6630773,36934854:25952256,513147,134348 -k1,754:9202234,36934854:166945 -k1,754:11236955,36934854:166945 -k1,754:14863546,36934854:166945 -k1,754:15689782,36934854:166944 -k1,754:19433027,36934854:166945 -k1,754:20286134,36934854:166945 -k1,754:22430956,36934854:166945 -(1,754:22430956,36934854:0,414482,115847 -r1,754:22789222,36934854:358266,530329,115847 -k1,754:22430956,36934854:-358266 -) -(1,754:22430956,36934854:358266,414482,115847 -k1,754:22430956,36934854:3277 -h1,754:22785945,36934854:0,411205,112570 -) -k1,754:22956167,36934854:166945 -k1,754:23654609,36934854:166945 -k1,754:24480846,36934854:166945 -k1,754:26661056,36934854:166944 -k1,754:27400130,36934854:166945 -k1,754:28639244,36934854:166945 -k1,754:29825274,36934854:166945 -k1,754:32583029,36934854:0 -) -(1,755:6630773,37776342:25952256,513147,134348 -k1,754:7281589,37776342:252357 -k1,754:8065443,37776342:252357 -k1,754:8673661,37776342:252358 -k1,754:10903895,37776342:252357 -k1,754:11815544,37776342:252357 -k1,754:14081167,37776342:252357 -k1,754:14905653,37776342:252357 -k1,754:16361252,37776342:252358 -k1,754:18298540,37776342:252357 -k1,754:21308652,37776342:252357 -k1,754:23538886,37776342:252357 -k1,754:24322740,37776342:252357 -k1,754:27669053,37776342:252358 -k1,754:28682938,37776342:252357 -k1,754:31794631,37776342:252357 -k1,754:32583029,37776342:0 -) -(1,755:6630773,38617830:25952256,513147,134348 -k1,754:8752917,38617830:268130 -k1,754:10288512,38617830:268129 -k1,754:10912502,38617830:268130 -k1,754:13158508,38617830:268129 -k1,754:14085930,38617830:268130 -k1,754:15250593,38617830:268130 -k1,754:18730641,38617830:268129 -k1,754:19354631,38617830:268130 -k1,754:21600637,38617830:268129 -k1,754:22528059,38617830:268130 -k1,754:23815274,38617830:268130 -k1,754:25736876,38617830:268129 -k1,754:28018272,38617830:268130 -k1,754:28972563,38617830:268129 -k1,754:30259778,38617830:268130 -k1,754:32583029,38617830:0 -) -(1,755:6630773,39459318:25952256,505283,115847 -g1,754:8807879,39459318 -g1,754:9623146,39459318 -g1,754:10841460,39459318 -g1,754:14400720,39459318 -(1,754:14400720,39459318:0,414482,115847 -r1,754:14758986,39459318:358266,530329,115847 -k1,754:14400720,39459318:-358266 -) -(1,754:14400720,39459318:358266,414482,115847 -k1,754:14400720,39459318:3277 -h1,754:14755709,39459318:0,411205,112570 -) -k1,755:32583028,39459318:17650372 -g1,755:32583028,39459318 -) -(1,757:6630773,40300806:25952256,505283,134348 -h1,756:6630773,40300806:983040,0,0 -k1,756:9590260,40300806:317075 -k1,756:11288179,40300806:317075 -k1,756:12775727,40300806:317075 -k1,756:16757575,40300806:317075 -k1,756:18623266,40300806:317075 -k1,756:22742084,40300806:317075 -k1,756:24050719,40300806:317075 -k1,756:26363365,40300806:317075 -k1,756:28343088,40300806:317075 -k1,756:29276201,40300806:317075 -k1,756:30612361,40300806:317075 -k1,756:32583029,40300806:0 -) -(1,757:6630773,41142294:25952256,505283,102891 -g1,756:8858997,41142294 -g1,756:10249671,41142294 -g1,756:11734716,41142294 -g1,756:12953030,41142294 -g1,756:14308969,41142294 -k1,757:32583029,41142294:16231958 -g1,757:32583029,41142294 -) -v1,759:6630773,42332760:0,393216,0 -(1,787:6630773,45259808:25952256,3320264,196608 -g1,787:6630773,45259808 -g1,787:6630773,45259808 -g1,787:6434165,45259808 -(1,787:6434165,45259808:0,3320264,196608 -r1,787:32779637,45259808:26345472,3516872,196608 -k1,787:6434165,45259808:-26345472 -) -(1,787:6434165,45259808:26345472,3320264,196608 -[1,787:6630773,45259808:25952256,3123656,0 -(1,761:6630773,42540378:25952256,404226,101187 -(1,760:6630773,42540378:0,0,0 -g1,760:6630773,42540378 -g1,760:6630773,42540378 -g1,760:6303093,42540378 -(1,760:6303093,42540378:0,0,0 -) -g1,760:6630773,42540378 -) -g1,761:7263065,42540378 -g1,761:8211503,42540378 -g1,761:10424524,42540378 -h1,761:11056816,42540378:0,0,0 -k1,761:32583028,42540378:21526212 -g1,761:32583028,42540378 -) -(1,762:6630773,43206556:25952256,284164,4718 -h1,762:6630773,43206556:0,0,0 -h1,762:6946919,43206556:0,0,0 -k1,762:32583029,43206556:25636110 -g1,762:32583029,43206556 -) -(1,766:6630773,43938270:25952256,404226,76021 -(1,764:6630773,43938270:0,0,0 -g1,764:6630773,43938270 -g1,764:6630773,43938270 -g1,764:6303093,43938270 -(1,764:6303093,43938270:0,0,0 -) -g1,764:6630773,43938270 -) -g1,766:7579210,43938270 -g1,766:8843793,43938270 -g1,766:9476085,43938270 -g1,766:10108377,43938270 -g1,766:10740669,43938270 -g1,766:11372961,43938270 -g1,766:12005253,43938270 -h1,766:12321399,43938270:0,0,0 -k1,766:32583029,43938270:20261630 -g1,766:32583029,43938270 -) -(1,768:6630773,45259808:25952256,388497,4718 -(1,767:6630773,45259808:0,0,0 -g1,767:6630773,45259808 -g1,767:6630773,45259808 -g1,767:6303093,45259808 -(1,767:6303093,45259808:0,0,0 -) -g1,767:6630773,45259808 -) -g1,768:7263065,45259808 -g1,768:7895357,45259808 -h1,768:8843795,45259808:0,0,0 -k1,768:32583029,45259808:23739234 -g1,768:32583029,45259808 -) -] -) -g1,787:32583029,45259808 -g1,787:6630773,45259808 -g1,787:6630773,45259808 -g1,787:32583029,45259808 -g1,787:32583029,45259808 -) -] -(1,787:32583029,45706769:0,0,0 -g1,787:32583029,45706769 -) -) -] -(1,787:6630773,47279633:25952256,0,0 -h1,787:6630773,47279633:25952256,0,0 -) -] -h1,787:4262630,4025873:0,0,0 -] -!22856 +[1,793:6630773,45706769:25952256,40108032,0 +v1,697:6630773,6254097:0,393216,0 +(1,704:6630773,7275742:25952256,1414861,196608 +g1,704:6630773,7275742 +g1,704:6630773,7275742 +g1,704:6434165,7275742 +(1,704:6434165,7275742:0,1414861,196608 +r1,704:32779637,7275742:26345472,1611469,196608 +k1,704:6434165,7275742:-26345472 +) +(1,704:6434165,7275742:26345472,1414861,196608 +[1,704:6630773,7275742:25952256,1218253,0 +(1,699:6630773,6468007:25952256,410518,101187 +(1,698:6630773,6468007:0,0,0 +g1,698:6630773,6468007 +g1,698:6630773,6468007 +g1,698:6303093,6468007 +(1,698:6303093,6468007:0,0,0 +) +g1,698:6630773,6468007 +) +k1,699:6630773,6468007:0 +g1,699:9792230,6468007 +g1,699:12005250,6468007 +g1,699:12637542,6468007 +g1,699:13585980,6468007 +g1,699:15482854,6468007 +g1,699:16115146,6468007 +h1,699:17063583,6468007:0,0,0 +k1,699:32583029,6468007:15519446 +g1,699:32583029,6468007 +) +(1,703:6630773,7199721:25952256,404226,76021 +(1,701:6630773,7199721:0,0,0 +g1,701:6630773,7199721 +g1,701:6630773,7199721 +g1,701:6303093,7199721 +(1,701:6303093,7199721:0,0,0 +) +g1,701:6630773,7199721 +) +g1,703:7579210,7199721 +g1,703:8843793,7199721 +g1,703:9476085,7199721 +g1,703:10108377,7199721 +g1,703:10740669,7199721 +g1,703:11372961,7199721 +g1,703:12005253,7199721 +h1,703:12321399,7199721:0,0,0 +k1,703:32583029,7199721:20261630 +g1,703:32583029,7199721 +) +] +) +g1,704:32583029,7275742 +g1,704:6630773,7275742 +g1,704:6630773,7275742 +g1,704:32583029,7275742 +g1,704:32583029,7275742 +) +h1,704:6630773,7472350:0,0,0 +(1,708:6630773,8838126:25952256,505283,115847 +h1,707:6630773,8838126:983040,0,0 +g1,707:9278427,8838126 +(1,707:9278427,8838126:0,452978,115847 +r1,707:10340116,8838126:1061689,568825,115847 +k1,707:9278427,8838126:-1061689 +) +(1,707:9278427,8838126:1061689,452978,115847 +k1,707:9278427,8838126:3277 +h1,707:10336839,8838126:0,411205,112570 +) +g1,707:10539345,8838126 +g1,707:11930019,8838126 +(1,707:11930019,8838126:0,452978,115847 +r1,707:14750268,8838126:2820249,568825,115847 +k1,707:11930019,8838126:-2820249 +) +(1,707:11930019,8838126:2820249,452978,115847 +k1,707:11930019,8838126:3277 +h1,707:14746991,8838126:0,411205,112570 +) +g1,707:14949497,8838126 +g1,707:16253008,8838126 +g1,707:17738053,8838126 +g1,707:18685048,8838126 +g1,707:20397503,8838126 +g1,707:21990683,8838126 +k1,708:32583029,8838126:9094848 +g1,708:32583029,8838126 +) +v1,710:6630773,10203902:0,393216,0 +(1,727:6630773,20811349:25952256,11000663,616038 +g1,727:6630773,20811349 +(1,727:6630773,20811349:25952256,11000663,616038 +(1,727:6630773,21427387:25952256,11616701,0 +[1,727:6630773,21427387:25952256,11616701,0 +(1,727:6630773,21401173:25952256,11564273,0 +r1,727:6656987,21401173:26214,11564273,0 +[1,727:6656987,21401173:25899828,11564273,0 +(1,727:6656987,20811349:25899828,10384625,0 +[1,727:7246811,20811349:24720180,10384625,0 +(1,711:7246811,11514098:24720180,1087374,134348 +k1,710:8614916,11514098:158402 +k1,710:10044715,11514098:158401 +k1,710:11307399,11514098:158402 +k1,710:13395180,11514098:158401 +k1,710:16823829,11514098:158402 +k1,710:18717623,11514098:158401 +k1,710:21571521,11514098:158402 +(1,710:21571521,11514098:0,452978,115847 +r1,727:23336634,11514098:1765113,568825,115847 +k1,710:21571521,11514098:-1765113 +) +(1,710:21571521,11514098:1765113,452978,115847 +k1,710:21571521,11514098:3277 +h1,710:23333357,11514098:0,411205,112570 +) +k1,710:23495035,11514098:158401 +k1,710:24336322,11514098:158402 +k1,710:25513808,11514098:158401 +k1,710:28418824,11514098:158402 +(1,710:28418824,11514098:0,414482,115847 +r1,727:28777090,11514098:358266,530329,115847 +k1,710:28418824,11514098:-358266 +) +(1,710:28418824,11514098:358266,414482,115847 +k1,710:28418824,11514098:3277 +h1,710:28773813,11514098:0,411205,112570 +) +k1,710:29109161,11514098:158401 +k1,710:29950448,11514098:158402 +k1,710:31966991,11514098:0 +) +(1,711:7246811,12355586:24720180,513147,134348 +k1,710:9551001,12355586:293545 +k1,710:11579939,12355586:293545 +k1,710:14568980,12355586:293545 +(1,710:14568980,12355586:0,452978,115847 +r1,727:16334093,12355586:1765113,568825,115847 +k1,710:14568980,12355586:-1765113 +) +(1,710:14568980,12355586:1765113,452978,115847 +k1,710:14568980,12355586:3277 +h1,710:16330816,12355586:0,411205,112570 +) +k1,710:16801308,12355586:293545 +k1,710:17722688,12355586:293545 +k1,710:19219473,12355586:293544 +k1,710:21053769,12355586:293545 +k1,710:21560212,12355586:293451 +k1,710:23466598,12355586:293545 +k1,710:24411570,12355586:293544 +k1,710:25724200,12355586:293545 +k1,710:28065745,12355586:293545 +k1,710:29010718,12355586:293545 +k1,710:30900720,12355586:293545 +k1,710:31966991,12355586:0 +) +(1,711:7246811,13197074:24720180,513147,134348 +k1,710:8545483,13197074:279587 +k1,710:10411040,13197074:279586 +k1,710:11452155,13197074:279587 +k1,710:14254877,13197074:279586 +k1,710:16231191,13197074:279587 +k1,710:17702223,13197074:279587 +k1,710:20314235,13197074:279586 +k1,710:21924203,13197074:279587 +k1,710:25369179,13197074:279587 +k1,710:27042716,13197074:279586 +k1,710:28341388,13197074:279587 +k1,710:30009027,13197074:279586 +k1,710:30947906,13197074:279587 +k1,710:31966991,13197074:0 +) +(1,711:7246811,14038562:24720180,505283,134348 +g1,710:12445782,14038562 +g1,710:15428980,14038562 +g1,710:18186735,14038562 +(1,710:18186735,14038562:0,452978,115847 +r1,727:21358695,14038562:3171960,568825,115847 +k1,710:18186735,14038562:-3171960 +) +(1,710:18186735,14038562:3171960,452978,115847 +k1,710:18186735,14038562:3277 +h1,710:21355418,14038562:0,411205,112570 +) +g1,710:21557924,14038562 +g1,710:22948598,14038562 +(1,710:22948598,14038562:0,452978,115847 +r1,727:26120558,14038562:3171960,568825,115847 +k1,710:22948598,14038562:-3171960 +) +(1,710:22948598,14038562:3171960,452978,115847 +k1,710:22948598,14038562:3277 +h1,710:26117281,14038562:0,411205,112570 +) +k1,711:31966991,14038562:5672763 +g1,711:31966991,14038562 +) +v1,713:7246811,15229028:0,393216,0 +(1,724:7246811,20090453:24720180,5254641,196608 +g1,724:7246811,20090453 +g1,724:7246811,20090453 +g1,724:7050203,20090453 +(1,724:7050203,20090453:0,5254641,196608 +r1,727:32163599,20090453:25113396,5451249,196608 +k1,724:7050203,20090453:-25113396 +) +(1,724:7050203,20090453:25113396,5254641,196608 +[1,724:7246811,20090453:24720180,5058033,0 +(1,715:7246811,15420917:24720180,388497,9436 +(1,714:7246811,15420917:0,0,0 +g1,714:7246811,15420917 +g1,714:7246811,15420917 +g1,714:6919131,15420917 +(1,714:6919131,15420917:0,0,0 +) +g1,714:7246811,15420917 +) +g1,715:7879103,15420917 +g1,715:8827541,15420917 +k1,715:8827541,15420917:0 +h1,715:10092125,15420917:0,0,0 +k1,715:31966991,15420917:21874866 +g1,715:31966991,15420917 +) +(1,716:7246811,16087095:24720180,284164,4718 +h1,716:7246811,16087095:0,0,0 +h1,716:7562957,16087095:0,0,0 +k1,716:31966991,16087095:24404034 +g1,716:31966991,16087095 +) +(1,717:7246811,16753273:24720180,404226,9436 +h1,717:7246811,16753273:0,0,0 +g1,717:7879103,16753273 +g1,717:8827541,16753273 +k1,717:8827541,16753273:0 +h1,717:10092125,16753273:0,0,0 +k1,717:31966991,16753273:21874866 +g1,717:31966991,16753273 +) +(1,718:7246811,17419451:24720180,404226,6290 +h1,718:7246811,17419451:0,0,0 +h1,718:7562957,17419451:0,0,0 +k1,718:31966991,17419451:24404034 +g1,718:31966991,17419451 +) +(1,719:7246811,18085629:24720180,410518,101187 +h1,719:7246811,18085629:0,0,0 +g1,719:7879103,18085629 +g1,719:8827541,18085629 +g1,719:11672853,18085629 +g1,719:12305145,18085629 +g1,719:13569729,18085629 +g1,719:14518166,18085629 +g1,719:15150458,18085629 +g1,719:16098896,18085629 +g1,719:17047333,18085629 +g1,719:17679625,18085629 +h1,719:18944208,18085629:0,0,0 +k1,719:31966991,18085629:13022783 +g1,719:31966991,18085629 +) +(1,720:7246811,18751807:24720180,284164,6290 +h1,720:7246811,18751807:0,0,0 +h1,720:7562957,18751807:0,0,0 +k1,720:31966991,18751807:24404034 +g1,720:31966991,18751807 +) +(1,721:7246811,19417985:24720180,404226,101187 +h1,721:7246811,19417985:0,0,0 +g1,721:7879103,19417985 +g1,721:8827541,19417985 +g1,721:11356708,19417985 +h1,721:11989000,19417985:0,0,0 +k1,721:31966992,19417985:19977992 +g1,721:31966992,19417985 +) +(1,722:7246811,20084163:24720180,404226,6290 +h1,722:7246811,20084163:0,0,0 +h1,722:7562957,20084163:0,0,0 +k1,722:31966991,20084163:24404034 +g1,722:31966991,20084163 +) +] +) +g1,724:31966991,20090453 +g1,724:7246811,20090453 +g1,724:7246811,20090453 +g1,724:31966991,20090453 +g1,724:31966991,20090453 +) +h1,724:7246811,20287061:0,0,0 +] +) +] +r1,727:32583029,21401173:26214,11564273,0 +) +] +) +) +g1,727:32583029,20811349 +) +h1,727:6630773,21427387:0,0,0 +(1,730:6630773,22793163:25952256,513147,134348 +h1,729:6630773,22793163:983040,0,0 +k1,729:9554934,22793163:305998 +k1,729:13215065,22793163:305998 +k1,729:14805569,22793163:305998 +k1,729:17157602,22793163:305999 +k1,729:17878335,22793163:305890 +k1,729:20946677,22793163:305999 +k1,729:22820296,22793163:305998 +k1,729:24727994,22793163:305998 +k1,729:26735962,22793163:305998 +k1,729:31394206,22793163:305998 +k1,730:32583029,22793163:0 +) +(1,730:6630773,23634651:25952256,513147,134348 +k1,729:9173570,23634651:172360 +k1,729:12683022,23634651:172359 +k1,729:16305197,23634651:172360 +k1,729:19669159,23634651:172359 +k1,729:21032964,23634651:172360 +k1,729:24231120,23634651:172359 +k1,729:25687986,23634651:172360 +k1,729:26851905,23634651:172359 +k1,729:30361358,23634651:172360 +k1,729:32583029,23634651:0 +) +(1,730:6630773,24476139:25952256,513147,134348 +k1,729:7452342,24476139:135407 +k1,729:11164050,24476139:135408 +k1,729:13607635,24476139:135407 +k1,729:14402335,24476139:135408 +k1,729:17334163,24476139:135407 +k1,729:19656506,24476139:135407 +k1,729:20407952,24476139:135408 +k1,729:22428830,24476139:135407 +k1,729:23931318,24476139:135407 +k1,729:25085811,24476139:135408 +k1,729:27064090,24476139:135407 +k1,729:29978225,24476139:135408 +k1,729:30645129,24476139:135407 +k1,730:32583029,24476139:0 +) +(1,730:6630773,25317627:25952256,513147,134348 +k1,729:8380202,25317627:169356 +k1,729:9200986,25317627:169356 +k1,729:11488465,25317627:169355 +k1,729:14029569,25317627:169356 +k1,729:15218010,25317627:169356 +k1,729:17040839,25317627:169356 +k1,729:19905691,25317627:169356 +k1,729:20757932,25317627:169356 +k1,729:23673901,25317627:169355 +k1,729:27602402,25317627:169356 +k1,729:28423186,25317627:169356 +k1,729:30044164,25317627:169356 +k1,729:32583029,25317627:0 +) +(1,730:6630773,26159115:25952256,513147,7863 +g1,729:7489294,26159115 +g1,729:8707608,26159115 +k1,730:32583029,26159115:21723874 +g1,730:32583029,26159115 +) +v1,732:6630773,27349581:0,393216,0 +(1,757:6630773,34530982:25952256,7574617,196608 +g1,757:6630773,34530982 +g1,757:6630773,34530982 +g1,757:6434165,34530982 +(1,757:6434165,34530982:0,7574617,196608 +r1,757:32779637,34530982:26345472,7771225,196608 +k1,757:6434165,34530982:-26345472 +) +(1,757:6434165,34530982:26345472,7574617,196608 +[1,757:6630773,34530982:25952256,7378009,0 +(1,734:6630773,27563491:25952256,410518,101187 +(1,733:6630773,27563491:0,0,0 +g1,733:6630773,27563491 +g1,733:6630773,27563491 +g1,733:6303093,27563491 +(1,733:6303093,27563491:0,0,0 +) +g1,733:6630773,27563491 +) +g1,734:7263065,27563491 +g1,734:7895357,27563491 +g1,734:8527649,27563491 +g1,734:9159941,27563491 +g1,734:10108378,27563491 +g1,734:11372961,27563491 +g1,734:12637544,27563491 +g1,734:13585981,27563491 +g1,734:15799001,27563491 +g1,734:16431293,27563491 +g1,734:18960459,27563491 +k1,734:18960459,27563491:1573 +h1,734:20542760,27563491:0,0,0 +k1,734:32583029,27563491:12040269 +g1,734:32583029,27563491 +) +(1,738:6630773,28295205:25952256,404226,76021 +(1,736:6630773,28295205:0,0,0 +g1,736:6630773,28295205 +g1,736:6630773,28295205 +g1,736:6303093,28295205 +(1,736:6303093,28295205:0,0,0 +) +g1,736:6630773,28295205 +) +g1,738:7579210,28295205 +g1,738:8843793,28295205 +g1,738:9476085,28295205 +g1,738:10108377,28295205 +h1,738:10424523,28295205:0,0,0 +k1,738:32583029,28295205:22158506 +g1,738:32583029,28295205 +) +(1,740:6630773,29616743:25952256,404226,76021 +(1,739:6630773,29616743:0,0,0 +g1,739:6630773,29616743 +g1,739:6630773,29616743 +g1,739:6303093,29616743 +(1,739:6303093,29616743:0,0,0 +) +g1,739:6630773,29616743 +) +g1,740:7579210,29616743 +g1,740:8211502,29616743 +g1,740:9159940,29616743 +g1,740:9792232,29616743 +h1,740:10108378,29616743:0,0,0 +k1,740:32583030,29616743:22474652 +g1,740:32583030,29616743 +) +(1,744:6630773,30348457:25952256,404226,76021 +(1,742:6630773,30348457:0,0,0 +g1,742:6630773,30348457 +g1,742:6630773,30348457 +g1,742:6303093,30348457 +(1,742:6303093,30348457:0,0,0 +) +g1,742:6630773,30348457 +) +g1,744:7579210,30348457 +g1,744:8843793,30348457 +g1,744:9476085,30348457 +g1,744:10108377,30348457 +h1,744:10424523,30348457:0,0,0 +k1,744:32583029,30348457:22158506 +g1,744:32583029,30348457 +) +(1,746:6630773,31669995:25952256,404226,6290 +(1,745:6630773,31669995:0,0,0 +g1,745:6630773,31669995 +g1,745:6630773,31669995 +g1,745:6303093,31669995 +(1,745:6303093,31669995:0,0,0 +) +g1,745:6630773,31669995 +) +g1,746:7263065,31669995 +g1,746:7895357,31669995 +h1,746:8211503,31669995:0,0,0 +k1,746:32583029,31669995:24371526 +g1,746:32583029,31669995 +) +(1,750:6630773,32401709:25952256,404226,76021 +(1,748:6630773,32401709:0,0,0 +g1,748:6630773,32401709 +g1,748:6630773,32401709 +g1,748:6303093,32401709 +(1,748:6303093,32401709:0,0,0 +) +g1,748:6630773,32401709 +) +g1,750:7579210,32401709 +g1,750:8843793,32401709 +g1,750:9476085,32401709 +g1,750:10108377,32401709 +h1,750:10424523,32401709:0,0,0 +k1,750:32583029,32401709:22158506 +g1,750:32583029,32401709 +) +(1,752:6630773,33723247:25952256,284164,4718 +(1,751:6630773,33723247:0,0,0 +g1,751:6630773,33723247 +g1,751:6630773,33723247 +g1,751:6303093,33723247 +(1,751:6303093,33723247:0,0,0 +) +g1,751:6630773,33723247 +) +g1,752:7263065,33723247 +g1,752:7895357,33723247 +h1,752:8211503,33723247:0,0,0 +k1,752:32583029,33723247:24371526 +g1,752:32583029,33723247 +) +(1,756:6630773,34454961:25952256,404226,76021 +(1,754:6630773,34454961:0,0,0 +g1,754:6630773,34454961 +g1,754:6630773,34454961 +g1,754:6303093,34454961 +(1,754:6303093,34454961:0,0,0 +) +g1,754:6630773,34454961 +) +g1,756:7579210,34454961 +g1,756:8843793,34454961 +g1,756:9476085,34454961 +g1,756:10108377,34454961 +h1,756:10424523,34454961:0,0,0 +k1,756:32583029,34454961:22158506 +g1,756:32583029,34454961 +) +] +) +g1,757:32583029,34530982 +g1,757:6630773,34530982 +g1,757:6630773,34530982 +g1,757:32583029,34530982 +g1,757:32583029,34530982 +) +h1,757:6630773,34727590:0,0,0 +(1,761:6630773,36093366:25952256,513147,126483 +h1,760:6630773,36093366:983040,0,0 +k1,760:8633052,36093366:201350 +k1,760:9292498,36093366:201349 +k1,760:10598130,36093366:201350 +k1,760:11547246,36093366:201350 +k1,760:13188421,36093366:201349 +k1,760:14005809,36093366:201350 +k1,760:15226244,36093366:201350 +k1,760:16733726,36093366:201349 +k1,760:18103583,36093366:201350 +k1,760:20333927,36093366:201349 +k1,760:23007950,36093366:201350 +k1,760:26595545,36093366:201350 +k1,760:27464050,36093366:201349 +k1,760:28253913,36093366:201350 +k1,760:28986760,36093366:201350 +k1,760:30736725,36093366:201349 +k1,760:31469572,36093366:201350 +k1,761:32583029,36093366:0 +) +(1,761:6630773,36934854:25952256,513147,134348 +k1,760:9202234,36934854:166945 +k1,760:11236955,36934854:166945 +k1,760:14863546,36934854:166945 +k1,760:15689782,36934854:166944 +k1,760:19433027,36934854:166945 +k1,760:20286134,36934854:166945 +k1,760:22430956,36934854:166945 +(1,760:22430956,36934854:0,414482,115847 +r1,760:22789222,36934854:358266,530329,115847 +k1,760:22430956,36934854:-358266 +) +(1,760:22430956,36934854:358266,414482,115847 +k1,760:22430956,36934854:3277 +h1,760:22785945,36934854:0,411205,112570 +) +k1,760:22956167,36934854:166945 +k1,760:23654609,36934854:166945 +k1,760:24480846,36934854:166945 +k1,760:26661056,36934854:166944 +k1,760:27400130,36934854:166945 +k1,760:28639244,36934854:166945 +k1,760:29825274,36934854:166945 +k1,760:32583029,36934854:0 +) +(1,761:6630773,37776342:25952256,513147,134348 +k1,760:7281589,37776342:252357 +k1,760:8065443,37776342:252357 +k1,760:8673661,37776342:252358 +k1,760:10903895,37776342:252357 +k1,760:11815544,37776342:252357 +k1,760:14081167,37776342:252357 +k1,760:14905653,37776342:252357 +k1,760:16361252,37776342:252358 +k1,760:18298540,37776342:252357 +k1,760:21308652,37776342:252357 +k1,760:23538886,37776342:252357 +k1,760:24322740,37776342:252357 +k1,760:27669053,37776342:252358 +k1,760:28682938,37776342:252357 +k1,760:31794631,37776342:252357 +k1,760:32583029,37776342:0 +) +(1,761:6630773,38617830:25952256,513147,134348 +k1,760:8752917,38617830:268130 +k1,760:10288512,38617830:268129 +k1,760:10912502,38617830:268130 +k1,760:13158508,38617830:268129 +k1,760:14085930,38617830:268130 +k1,760:15250593,38617830:268130 +k1,760:18730641,38617830:268129 +k1,760:19354631,38617830:268130 +k1,760:21600637,38617830:268129 +k1,760:22528059,38617830:268130 +k1,760:23815274,38617830:268130 +k1,760:25736876,38617830:268129 +k1,760:28018272,38617830:268130 +k1,760:28972563,38617830:268129 +k1,760:30259778,38617830:268130 +k1,760:32583029,38617830:0 +) +(1,761:6630773,39459318:25952256,505283,115847 +g1,760:8807879,39459318 +g1,760:9623146,39459318 +g1,760:10841460,39459318 +g1,760:14400720,39459318 +(1,760:14400720,39459318:0,414482,115847 +r1,760:14758986,39459318:358266,530329,115847 +k1,760:14400720,39459318:-358266 +) +(1,760:14400720,39459318:358266,414482,115847 +k1,760:14400720,39459318:3277 +h1,760:14755709,39459318:0,411205,112570 +) +k1,761:32583028,39459318:17650372 +g1,761:32583028,39459318 +) +(1,763:6630773,40300806:25952256,505283,134348 +h1,762:6630773,40300806:983040,0,0 +k1,762:9590260,40300806:317075 +k1,762:11288179,40300806:317075 +k1,762:12775727,40300806:317075 +k1,762:16757575,40300806:317075 +k1,762:18623266,40300806:317075 +k1,762:22742084,40300806:317075 +k1,762:24050719,40300806:317075 +k1,762:26363365,40300806:317075 +k1,762:28343088,40300806:317075 +k1,762:29276201,40300806:317075 +k1,762:30612361,40300806:317075 +k1,762:32583029,40300806:0 +) +(1,763:6630773,41142294:25952256,505283,102891 +g1,762:8858997,41142294 +g1,762:10249671,41142294 +g1,762:11734716,41142294 +g1,762:12953030,41142294 +g1,762:14308969,41142294 +k1,763:32583029,41142294:16231958 +g1,763:32583029,41142294 +) +v1,765:6630773,42332760:0,393216,0 +(1,793:6630773,45259808:25952256,3320264,196608 +g1,793:6630773,45259808 +g1,793:6630773,45259808 +g1,793:6434165,45259808 +(1,793:6434165,45259808:0,3320264,196608 +r1,793:32779637,45259808:26345472,3516872,196608 +k1,793:6434165,45259808:-26345472 +) +(1,793:6434165,45259808:26345472,3320264,196608 +[1,793:6630773,45259808:25952256,3123656,0 +(1,767:6630773,42540378:25952256,404226,101187 +(1,766:6630773,42540378:0,0,0 +g1,766:6630773,42540378 +g1,766:6630773,42540378 +g1,766:6303093,42540378 +(1,766:6303093,42540378:0,0,0 +) +g1,766:6630773,42540378 +) +g1,767:7263065,42540378 +g1,767:8211503,42540378 +g1,767:10424524,42540378 +h1,767:11056816,42540378:0,0,0 +k1,767:32583028,42540378:21526212 +g1,767:32583028,42540378 +) +(1,768:6630773,43206556:25952256,284164,4718 +h1,768:6630773,43206556:0,0,0 +h1,768:6946919,43206556:0,0,0 +k1,768:32583029,43206556:25636110 +g1,768:32583029,43206556 +) +(1,772:6630773,43938270:25952256,404226,76021 +(1,770:6630773,43938270:0,0,0 +g1,770:6630773,43938270 +g1,770:6630773,43938270 +g1,770:6303093,43938270 +(1,770:6303093,43938270:0,0,0 +) +g1,770:6630773,43938270 +) +g1,772:7579210,43938270 +g1,772:8843793,43938270 +g1,772:9476085,43938270 +g1,772:10108377,43938270 +g1,772:10740669,43938270 +g1,772:11372961,43938270 +g1,772:12005253,43938270 +h1,772:12321399,43938270:0,0,0 +k1,772:32583029,43938270:20261630 +g1,772:32583029,43938270 +) +(1,774:6630773,45259808:25952256,388497,4718 +(1,773:6630773,45259808:0,0,0 +g1,773:6630773,45259808 +g1,773:6630773,45259808 +g1,773:6303093,45259808 +(1,773:6303093,45259808:0,0,0 +) +g1,773:6630773,45259808 +) +g1,774:7263065,45259808 +g1,774:7895357,45259808 +h1,774:8843795,45259808:0,0,0 +k1,774:32583029,45259808:23739234 +g1,774:32583029,45259808 +) +] +) +g1,793:32583029,45259808 +g1,793:6630773,45259808 +g1,793:6630773,45259808 +g1,793:32583029,45259808 +g1,793:32583029,45259808 +) +] +(1,793:32583029,45706769:0,0,0 +g1,793:32583029,45706769 +) +) +] +(1,793:6630773,47279633:25952256,0,0 +h1,793:6630773,47279633:25952256,0,0 +) +] +h1,793:4262630,4025873:0,0,0 +] +!22855 }34 -Input:192:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:193:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:194:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:195:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:196:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {35 -[1,854:4262630,47279633:28320399,43253760,0 -(1,854:4262630,4025873:0,0,0 -[1,854:-473657,4025873:25952256,0,0 -(1,854:-473657,-710414:25952256,0,0 -h1,854:-473657,-710414:0,0,0 -(1,854:-473657,-710414:0,0,0 -(1,854:-473657,-710414:0,0,0 -g1,854:-473657,-710414 -(1,854:-473657,-710414:65781,0,65781 -g1,854:-407876,-710414 -[1,854:-407876,-644633:0,0,0 +[1,860:4262630,47279633:28320399,43253760,0 +(1,860:4262630,4025873:0,0,0 +[1,860:-473657,4025873:25952256,0,0 +(1,860:-473657,-710414:25952256,0,0 +h1,860:-473657,-710414:0,0,0 +(1,860:-473657,-710414:0,0,0 +(1,860:-473657,-710414:0,0,0 +g1,860:-473657,-710414 +(1,860:-473657,-710414:65781,0,65781 +g1,860:-407876,-710414 +[1,860:-407876,-644633:0,0,0 ] ) -k1,854:-473657,-710414:-65781 +k1,860:-473657,-710414:-65781 ) ) -k1,854:25478599,-710414:25952256 -g1,854:25478599,-710414 +k1,860:25478599,-710414:25952256 +g1,860:25478599,-710414 ) ] ) -[1,854:6630773,47279633:25952256,43253760,0 -[1,854:6630773,4812305:25952256,786432,0 -(1,854:6630773,4812305:25952256,505283,134348 -(1,854:6630773,4812305:25952256,505283,134348 -g1,854:3078558,4812305 -[1,854:3078558,4812305:0,0,0 -(1,854:3078558,2439708:0,1703936,0 -k1,854:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,854:2537886,2439708:1179648,16384,0 +[1,860:6630773,47279633:25952256,43253760,0 +[1,860:6630773,4812305:25952256,786432,0 +(1,860:6630773,4812305:25952256,505283,134348 +(1,860:6630773,4812305:25952256,505283,134348 +g1,860:3078558,4812305 +[1,860:3078558,4812305:0,0,0 +(1,860:3078558,2439708:0,1703936,0 +k1,860:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,860:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,854:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,860:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,854:3078558,4812305:0,0,0 -(1,854:3078558,2439708:0,1703936,0 -g1,854:29030814,2439708 -g1,854:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,854:36151628,1915420:16384,1179648,0 +[1,860:3078558,4812305:0,0,0 +(1,860:3078558,2439708:0,1703936,0 +g1,860:29030814,2439708 +g1,860:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,860:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,854:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,860:37855564,2439708:1179648,16384,0 ) ) -k1,854:3078556,2439708:-34777008 +k1,860:3078556,2439708:-34777008 ) ] -[1,854:3078558,4812305:0,0,0 -(1,854:3078558,49800853:0,16384,2228224 -k1,854:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,854:2537886,49800853:1179648,16384,0 +[1,860:3078558,4812305:0,0,0 +(1,860:3078558,49800853:0,16384,2228224 +k1,860:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,860:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,854:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,860:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,854:3078558,4812305:0,0,0 -(1,854:3078558,49800853:0,16384,2228224 -g1,854:29030814,49800853 -g1,854:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,854:36151628,51504789:16384,1179648,0 +[1,860:3078558,4812305:0,0,0 +(1,860:3078558,49800853:0,16384,2228224 +g1,860:29030814,49800853 +g1,860:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,860:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,854:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,860:37855564,49800853:1179648,16384,0 ) ) -k1,854:3078556,49800853:-34777008 +k1,860:3078556,49800853:-34777008 ) ] -g1,854:6630773,4812305 -k1,854:19562994,4812305:12135303 -g1,854:20949735,4812305 -g1,854:21598541,4812305 -g1,854:24912696,4812305 -g1,854:27600327,4812305 -g1,854:29010006,4812305 -) -) -] -[1,854:6630773,45706769:25952256,40108032,0 -(1,854:6630773,45706769:25952256,40108032,0 -(1,854:6630773,45706769:0,0,0 -g1,854:6630773,45706769 +g1,860:6630773,4812305 +k1,860:19515153,4812305:12087462 +g1,860:20901894,4812305 +g1,860:21550700,4812305 +g1,860:24864855,4812305 +g1,860:27600327,4812305 +g1,860:29010006,4812305 +) +) +] +[1,860:6630773,45706769:25952256,40108032,0 +(1,860:6630773,45706769:25952256,40108032,0 +(1,860:6630773,45706769:0,0,0 +g1,860:6630773,45706769 ) -[1,854:6630773,45706769:25952256,40108032,0 -v1,787:6630773,6254097:0,393216,0 -(1,787:6630773,12566420:25952256,6705539,196608 -g1,787:6630773,12566420 -g1,787:6630773,12566420 -g1,787:6434165,12566420 -(1,787:6434165,12566420:0,6705539,196608 -r1,787:32779637,12566420:26345472,6902147,196608 -k1,787:6434165,12566420:-26345472 -) -(1,787:6434165,12566420:26345472,6705539,196608 -[1,787:6630773,12566420:25952256,6508931,0 -(1,772:6630773,6461715:25952256,404226,76021 -(1,770:6630773,6461715:0,0,0 -g1,770:6630773,6461715 -g1,770:6630773,6461715 -g1,770:6303093,6461715 -(1,770:6303093,6461715:0,0,0 -) -g1,770:6630773,6461715 -) -g1,772:7579210,6461715 -g1,772:8843793,6461715 -g1,772:9476085,6461715 -g1,772:10108377,6461715 -g1,772:10740669,6461715 -g1,772:11372961,6461715 -g1,772:12005253,6461715 -h1,772:12321399,6461715:0,0,0 -k1,772:32583029,6461715:20261630 -g1,772:32583029,6461715 -) -(1,774:6630773,7783253:25952256,388497,9436 -(1,773:6630773,7783253:0,0,0 -g1,773:6630773,7783253 -g1,773:6630773,7783253 -g1,773:6303093,7783253 -(1,773:6303093,7783253:0,0,0 -) -g1,773:6630773,7783253 -) -g1,774:7263065,7783253 -g1,774:7895357,7783253 -h1,774:8843795,7783253:0,0,0 -k1,774:32583029,7783253:23739234 -g1,774:32583029,7783253 -) -(1,778:6630773,8514967:25952256,404226,76021 -(1,776:6630773,8514967:0,0,0 -g1,776:6630773,8514967 -g1,776:6630773,8514967 -g1,776:6303093,8514967 -(1,776:6303093,8514967:0,0,0 -) -g1,776:6630773,8514967 -) -g1,778:7579210,8514967 -g1,778:8843793,8514967 -g1,778:9476085,8514967 -g1,778:10108377,8514967 -g1,778:10740669,8514967 -g1,778:11372961,8514967 -g1,778:12005253,8514967 -h1,778:12321399,8514967:0,0,0 -k1,778:32583029,8514967:20261630 -g1,778:32583029,8514967 -) -(1,780:6630773,9836505:25952256,388497,4718 -(1,779:6630773,9836505:0,0,0 -g1,779:6630773,9836505 -g1,779:6630773,9836505 -g1,779:6303093,9836505 -(1,779:6303093,9836505:0,0,0 -) -g1,779:6630773,9836505 -) -g1,780:7263065,9836505 -g1,780:7895357,9836505 -h1,780:8843795,9836505:0,0,0 -k1,780:32583029,9836505:23739234 -g1,780:32583029,9836505 -) -(1,784:6630773,11158043:25952256,410518,107478 -k1,784:7644326,11158043:381262 -k1,784:10238608,11158043:381262 -k1,784:11252162,11158043:381263 -k1,784:11949570,11158043:381262 -k1,784:12646978,11158043:381262 -k1,784:14292823,11158043:381262 -k1,784:16570959,11158043:381262 -k1,784:18849096,11158043:381263 -k1,784:21127232,11158043:381262 -k1,784:22140785,11158043:381262 -k1,784:23470484,11158043:381262 -k1,784:24167892,11158043:381262 -k1,784:27078320,11158043:381263 -k1,784:28091873,11158043:381262 -k1,784:30686155,11158043:381262 -k1,784:32583029,11158043:0 -) -(1,784:6630773,11824221:25952256,404226,107478 -k1,784:32583029,11824221:24055382 -g1,784:32583029,11824221 -) -(1,786:6630773,12490399:25952256,404226,76021 -(1,784:6630773,12490399:0,0,0 -g1,784:6630773,12490399 -g1,784:6630773,12490399 -g1,784:6303093,12490399 -(1,784:6303093,12490399:0,0,0 -) -g1,784:6630773,12490399 -) -g1,786:7579210,12490399 -g1,786:8843793,12490399 -g1,786:9476085,12490399 -g1,786:10108377,12490399 -g1,786:10740669,12490399 -g1,786:11372961,12490399 -g1,786:12005253,12490399 -h1,786:12321399,12490399:0,0,0 -k1,786:32583029,12490399:20261630 -g1,786:32583029,12490399 -) -] -) -g1,787:32583029,12566420 -g1,787:6630773,12566420 -g1,787:6630773,12566420 -g1,787:32583029,12566420 -g1,787:32583029,12566420 -) -h1,787:6630773,12763028:0,0,0 -v1,791:6630773,14653092:0,393216,0 -(1,851:6630773,42709705:25952256,28449829,616038 -g1,851:6630773,42709705 -(1,851:6630773,42709705:25952256,28449829,616038 -(1,851:6630773,43325743:25952256,29065867,0 -[1,851:6630773,43325743:25952256,29065867,0 -(1,851:6630773,43299529:25952256,29013439,0 -r1,851:6656987,43299529:26214,29013439,0 -[1,851:6656987,43299529:25899828,29013439,0 -(1,851:6656987,42709705:25899828,27833791,0 -[1,851:7246811,42709705:24720180,27833791,0 -(1,792:7246811,16037799:24720180,1161885,196608 -(1,791:7246811,16037799:0,1161885,196608 -r1,851:8794447,16037799:1547636,1358493,196608 -k1,791:7246811,16037799:-1547636 -) -(1,791:7246811,16037799:1547636,1161885,196608 -) -k1,791:9001284,16037799:206837 -k1,791:9695701,16037799:206829 -k1,791:11879758,16037799:206836 -k1,791:13748588,16037799:206837 -k1,791:14606852,16037799:206836 -k1,791:16710301,16037799:206837 -k1,791:17272998,16037799:206837 -k1,791:19457711,16037799:206836 -k1,791:20768830,16037799:206837 -k1,791:22450882,16037799:206837 -k1,791:24670984,16037799:206836 -k1,791:26471657,16037799:206837 -k1,791:29087596,16037799:206836 -k1,791:29953725,16037799:206837 -k1,791:31966991,16037799:0 -) -(1,792:7246811,16879287:24720180,513147,134348 -k1,791:8825923,16879287:158947 -k1,791:10321803,16879287:158946 -k1,791:12125704,16879287:158947 -k1,791:12897412,16879287:158946 -k1,791:14362492,16879287:158947 -k1,791:16098890,16879287:158946 -k1,791:17882475,16879287:158947 -k1,791:20520648,16879287:158946 -k1,791:21751764,16879287:158947 -k1,791:22526748,16879287:158946 -k1,791:23896800,16879287:158947 -k1,791:25435934,16879287:158946 -k1,791:26586441,16879287:158947 -k1,791:28099361,16879287:158946 -k1,791:30409200,16879287:158947 -k1,791:31966991,16879287:0 -) -(1,792:7246811,17720775:24720180,513147,134348 -k1,791:9211984,17720775:283519 -k1,791:10514588,17720775:283519 -k1,791:13599770,17720775:283518 -k1,791:14542581,17720775:283519 -k1,791:15935625,17720775:283519 -k1,791:18227822,17720775:283519 -k1,791:19194225,17720775:283518 -k1,791:22249262,17720775:283519 -k1,791:23184209,17720775:283519 -k1,791:24583151,17720775:283519 -k1,791:26564051,17720775:283518 -k1,791:27533732,17720775:283519 -k1,791:30095938,17720775:283519 -k1,791:31966991,17720775:0 -) -(1,792:7246811,18562263:24720180,513147,134348 -k1,791:9346772,18562263:214490 -k1,791:10177300,18562263:214490 -k1,791:11410875,18562263:214490 -k1,791:14155055,18562263:214490 -k1,791:15028837,18562263:214490 -k1,791:17551505,18562263:214490 -k1,791:18425287,18562263:214490 -k1,791:20653042,18562263:214489 -k1,791:22287697,18562263:214490 -k1,791:24458437,18562263:214490 -k1,791:26964721,18562263:214490 -k1,791:27830639,18562263:214490 -k1,791:28792895,18562263:214490 -k1,791:31280829,18562263:214490 -k1,791:31966991,18562263:0 -) -(1,792:7246811,19403751:24720180,513147,126483 -k1,791:9723403,19403751:282447 -k1,791:11876902,19403751:282446 -k1,791:12372257,19403751:282363 -k1,791:15323984,19403751:282446 -k1,791:17004314,19403751:282447 -k1,791:17642621,19403751:282447 -k1,791:19902288,19403751:282446 -k1,791:23053901,19403751:282447 -(1,791:23053901,19403751:0,452978,122846 -r1,851:25874150,19403751:2820249,575824,122846 -k1,791:23053901,19403751:-2820249 -) -(1,791:23053901,19403751:2820249,452978,122846 -k1,791:23053901,19403751:3277 -h1,791:25870873,19403751:0,411205,112570 -) -k1,791:26156596,19403751:282446 -k1,791:28324514,19403751:282447 -k1,791:30947906,19403751:282446 -k1,791:31966991,19403751:0 -) -(1,792:7246811,20245239:24720180,513147,134348 -g1,791:9459306,20245239 -g1,791:10317827,20245239 -g1,791:10872916,20245239 -g1,791:13050022,20245239 -g1,791:13932136,20245239 -k1,792:31966992,20245239:16867660 -g1,792:31966992,20245239 -) -v1,794:7246811,21435705:0,393216,0 -(1,808:7246811,25170488:24720180,4127999,196608 -g1,808:7246811,25170488 -g1,808:7246811,25170488 -g1,808:7050203,25170488 -(1,808:7050203,25170488:0,4127999,196608 -r1,851:32163599,25170488:25113396,4324607,196608 -k1,808:7050203,25170488:-25113396 -) -(1,808:7050203,25170488:25113396,4127999,196608 -[1,808:7246811,25170488:24720180,3931391,0 -(1,796:7246811,21643323:24720180,404226,76021 -(1,795:7246811,21643323:0,0,0 -g1,795:7246811,21643323 -g1,795:7246811,21643323 -g1,795:6919131,21643323 -(1,795:6919131,21643323:0,0,0 -) -g1,795:7246811,21643323 -) -g1,796:7879103,21643323 -g1,796:8827541,21643323 -k1,796:8827541,21643323:0 -h1,796:11988999,21643323:0,0,0 -k1,796:31966991,21643323:19977992 -g1,796:31966991,21643323 -) -(1,797:7246811,22309501:24720180,277873,0 -h1,797:7246811,22309501:0,0,0 -h1,797:7562957,22309501:0,0,0 -k1,797:31966991,22309501:24404034 -g1,797:31966991,22309501 -) -(1,801:7246811,23041215:24720180,404226,76021 -(1,799:7246811,23041215:0,0,0 -g1,799:7246811,23041215 -g1,799:7246811,23041215 -g1,799:6919131,23041215 -(1,799:6919131,23041215:0,0,0 -) -g1,799:7246811,23041215 -) -g1,801:8195248,23041215 -h1,801:11356705,23041215:0,0,0 -k1,801:31966991,23041215:20610286 -g1,801:31966991,23041215 -) -(1,803:7246811,24362753:24720180,404226,107478 -(1,802:7246811,24362753:0,0,0 -g1,802:7246811,24362753 -g1,802:7246811,24362753 -g1,802:6919131,24362753 -(1,802:6919131,24362753:0,0,0 -) -g1,802:7246811,24362753 -) -k1,803:7246811,24362753:0 -h1,803:10092122,24362753:0,0,0 -k1,803:31966990,24362753:21874868 -g1,803:31966990,24362753 -) -(1,807:7246811,25094467:24720180,404226,76021 -(1,805:7246811,25094467:0,0,0 -g1,805:7246811,25094467 -g1,805:7246811,25094467 -g1,805:6919131,25094467 -(1,805:6919131,25094467:0,0,0 -) -g1,805:7246811,25094467 -) -g1,807:8195248,25094467 -g1,807:9459831,25094467 -h1,807:9775977,25094467:0,0,0 -k1,807:31966991,25094467:22191014 -g1,807:31966991,25094467 -) -] -) -g1,808:31966991,25170488 -g1,808:7246811,25170488 -g1,808:7246811,25170488 -g1,808:31966991,25170488 -g1,808:31966991,25170488 -) -h1,808:7246811,25367096:0,0,0 -(1,812:7246811,26732872:24720180,513147,134348 -h1,811:7246811,26732872:983040,0,0 -k1,811:10894544,26732872:255590 -k1,811:12341580,26732872:255591 -k1,811:13920997,26732872:255590 -k1,811:14835880,26732872:255591 -k1,811:17104736,26732872:255590 -k1,811:18954163,26732872:255591 -k1,811:21432734,26732872:255590 -k1,811:22304363,26732872:255591 -k1,811:24161653,26732872:255590 -k1,811:26288297,26732872:255591 -k1,811:27230049,26732872:255590 -k1,811:31966991,26732872:0 -) -(1,812:7246811,27574360:24720180,505283,126483 -g1,811:8826228,27574360 -g1,811:10129739,27574360 -g1,811:11076734,27574360 -g1,811:15508278,27574360 -g1,811:16393669,27574360 -g1,811:18668423,27574360 -k1,812:31966991,27574360:11727015 -g1,812:31966991,27574360 -) -v1,814:7246811,28764826:0,393216,0 -(1,827:7246811,31833431:24720180,3461821,196608 -g1,827:7246811,31833431 -g1,827:7246811,31833431 -g1,827:7050203,31833431 -(1,827:7050203,31833431:0,3461821,196608 -r1,851:32163599,31833431:25113396,3658429,196608 -k1,827:7050203,31833431:-25113396 -) -(1,827:7050203,31833431:25113396,3461821,196608 -[1,827:7246811,31833431:24720180,3265213,0 -(1,816:7246811,28972444:24720180,404226,107478 -(1,815:7246811,28972444:0,0,0 -g1,815:7246811,28972444 -g1,815:7246811,28972444 -g1,815:6919131,28972444 -(1,815:6919131,28972444:0,0,0 -) -g1,815:7246811,28972444 -) -k1,816:7246811,28972444:0 -g1,816:11040560,28972444 -g1,816:14834310,28972444 -h1,816:15782747,28972444:0,0,0 -k1,816:31966991,28972444:16184244 -g1,816:31966991,28972444 -) -(1,820:7246811,29704158:24720180,404226,76021 -(1,818:7246811,29704158:0,0,0 -g1,818:7246811,29704158 -g1,818:7246811,29704158 -g1,818:6919131,29704158 -(1,818:6919131,29704158:0,0,0 -) -g1,818:7246811,29704158 -) -g1,820:8195248,29704158 -g1,820:9459831,29704158 -h1,820:9775977,29704158:0,0,0 -k1,820:31966991,29704158:22191014 -g1,820:31966991,29704158 -) -(1,822:7246811,31025696:24720180,404226,107478 -(1,821:7246811,31025696:0,0,0 -g1,821:7246811,31025696 -g1,821:7246811,31025696 -g1,821:6919131,31025696 -(1,821:6919131,31025696:0,0,0 -) -g1,821:7246811,31025696 -) -k1,822:7246811,31025696:0 -g1,822:11040560,31025696 -h1,822:11988997,31025696:0,0,0 -k1,822:31966991,31025696:19977994 -g1,822:31966991,31025696 -) -(1,826:7246811,31757410:24720180,404226,76021 -(1,824:7246811,31757410:0,0,0 -g1,824:7246811,31757410 -g1,824:7246811,31757410 -g1,824:6919131,31757410 -(1,824:6919131,31757410:0,0,0 -) -g1,824:7246811,31757410 -) -g1,826:8195248,31757410 -g1,826:9459831,31757410 -h1,826:9775977,31757410:0,0,0 -k1,826:31966991,31757410:22191014 -g1,826:31966991,31757410 -) -] -) -g1,827:31966991,31833431 -g1,827:7246811,31833431 -g1,827:7246811,31833431 -g1,827:31966991,31833431 -g1,827:31966991,31833431 -) -h1,827:7246811,32030039:0,0,0 -(1,831:7246811,33395815:24720180,513147,126483 -h1,830:7246811,33395815:983040,0,0 -k1,830:10113891,33395815:188624 -k1,830:13501984,33395815:188625 -k1,830:15184174,33395815:188624 -k1,830:16058960,33395815:188624 -k1,830:17166400,33395815:188625 -k1,830:19332901,33395815:188624 -k1,830:22547323,33395815:188625 -k1,830:23927392,33395815:188624 -k1,830:27366602,33395815:188624 -k1,830:28687689,33395815:188625 -k1,830:30924313,33395815:188624 -k1,831:31966991,33395815:0 -) -(1,831:7246811,34237303:24720180,513147,134348 -k1,830:9277823,34237303:240568 -k1,830:11826568,34237303:240567 -k1,830:12726428,34237303:240568 -k1,830:14980261,34237303:240567 -k1,830:16640994,34237303:240568 -k1,830:17567723,34237303:240567 -k1,830:19348387,34237303:240568 -k1,830:21471148,34237303:240567 -k1,830:24712610,34237303:240568 -k1,830:26238993,34237303:240567 -k1,830:26835421,34237303:240568 -k1,830:29053865,34237303:240567 -k1,830:29953725,34237303:240568 -k1,830:31966991,34237303:0 -) -(1,831:7246811,35078791:24720180,505283,134348 -k1,830:9009125,35078791:168478 -k1,830:11444493,35078791:168478 -k1,830:13883794,35078791:168478 -k1,830:14408132,35078791:168478 -k1,830:17146932,35078791:168478 -k1,830:18413138,35078791:168478 -k1,830:19352318,35078791:168477 -k1,830:21127739,35078791:168478 -k1,830:24175214,35078791:168478 -k1,830:24971527,35078791:168478 -k1,830:26841975,35078791:168478 -k1,830:29139062,35078791:168478 -k1,830:30921036,35078791:168478 -k1,830:31966991,35078791:0 -) -(1,831:7246811,35920279:24720180,505283,126483 -g1,830:8987447,35920279 -g1,830:12511973,35920279 -g1,830:13327240,35920279 -k1,831:31966991,35920279:18051238 -g1,831:31966991,35920279 -) -v1,833:7246811,37110745:0,393216,0 -(1,846:7246811,40179350:24720180,3461821,196608 -g1,846:7246811,40179350 -g1,846:7246811,40179350 -g1,846:7050203,40179350 -(1,846:7050203,40179350:0,3461821,196608 -r1,851:32163599,40179350:25113396,3658429,196608 -k1,846:7050203,40179350:-25113396 -) -(1,846:7050203,40179350:25113396,3461821,196608 -[1,846:7246811,40179350:24720180,3265213,0 -(1,835:7246811,37318363:24720180,404226,107478 -(1,834:7246811,37318363:0,0,0 -g1,834:7246811,37318363 -g1,834:7246811,37318363 -g1,834:6919131,37318363 -(1,834:6919131,37318363:0,0,0 -) -g1,834:7246811,37318363 -) -k1,835:7246811,37318363:0 -k1,835:7246811,37318363:0 -h1,835:11988997,37318363:0,0,0 -k1,835:31966991,37318363:19977994 -g1,835:31966991,37318363 -) -(1,839:7246811,38050077:24720180,404226,76021 -(1,837:7246811,38050077:0,0,0 -g1,837:7246811,38050077 -g1,837:7246811,38050077 -g1,837:6919131,38050077 -(1,837:6919131,38050077:0,0,0 -) -g1,837:7246811,38050077 -) -g1,839:8195248,38050077 -h1,839:11356705,38050077:0,0,0 -k1,839:31966991,38050077:20610286 -g1,839:31966991,38050077 -) -(1,841:7246811,39371615:24720180,404226,76021 -(1,840:7246811,39371615:0,0,0 -g1,840:7246811,39371615 -g1,840:7246811,39371615 -g1,840:6919131,39371615 -(1,840:6919131,39371615:0,0,0 -) -g1,840:7246811,39371615 -) -g1,841:7879103,39371615 -g1,841:8511395,39371615 -k1,841:8511395,39371615:0 -h1,841:11672853,39371615:0,0,0 -k1,841:31966991,39371615:20294138 -g1,841:31966991,39371615 -) -(1,845:7246811,40103329:24720180,404226,76021 -(1,843:7246811,40103329:0,0,0 -g1,843:7246811,40103329 -g1,843:7246811,40103329 -g1,843:6919131,40103329 -(1,843:6919131,40103329:0,0,0 -) -g1,843:7246811,40103329 -) -g1,845:8195248,40103329 -h1,845:11356705,40103329:0,0,0 -k1,845:31966991,40103329:20610286 -g1,845:31966991,40103329 -) -] -) -g1,846:31966991,40179350 -g1,846:7246811,40179350 -g1,846:7246811,40179350 -g1,846:31966991,40179350 -g1,846:31966991,40179350 -) -h1,846:7246811,40375958:0,0,0 -(1,850:7246811,41741734:24720180,513147,134348 -h1,849:7246811,41741734:983040,0,0 -k1,849:9949113,41741734:228973 -k1,849:11876123,41741734:228972 -k1,849:12764388,41741734:228973 -k1,849:15006627,41741734:228973 -k1,849:16829435,41741734:228972 -k1,849:19366586,41741734:228973 -k1,849:20410827,41741734:228973 -k1,849:22115015,41741734:228973 -k1,849:22995415,41741734:228972 -k1,849:25360862,41741734:228973 -k1,849:26241263,41741734:228973 -k1,849:26826095,41741734:228972 -k1,849:28610237,41741734:228973 -k1,849:31966991,41741734:0 -) -(1,850:7246811,42583222:24720180,513147,126483 -g1,849:8393691,42583222 -g1,849:9612005,42583222 -k1,850:31966991,42583222:19107022 -g1,850:31966991,42583222 -) -] -) -] -r1,851:32583029,43299529:26214,29013439,0 -) -] -) -) -g1,851:32583029,42709705 -) -h1,851:6630773,43325743:0,0,0 -(1,854:6630773,44691519:25952256,513147,126483 -h1,853:6630773,44691519:983040,0,0 -k1,853:8279639,44691519:195933 -k1,853:9007069,44691519:195933 -k1,853:11832962,44691519:195933 -k1,853:12680323,44691519:195933 -k1,853:15214581,44691519:195933 -k1,853:18252155,44691519:195933 -k1,853:20015709,44691519:195933 -k1,853:21230727,44691519:195933 -k1,853:24810939,44691519:195933 -k1,853:26400823,44691519:195933 -(1,853:26400823,44691519:0,452978,115847 -r1,853:27814224,44691519:1413401,568825,115847 -k1,853:26400823,44691519:-1413401 -) -(1,853:26400823,44691519:1413401,452978,115847 -k1,853:26400823,44691519:3277 -h1,853:27810947,44691519:0,411205,112570 +[1,860:6630773,45706769:25952256,40108032,0 +v1,793:6630773,6254097:0,393216,0 +(1,793:6630773,12566420:25952256,6705539,196608 +g1,793:6630773,12566420 +g1,793:6630773,12566420 +g1,793:6434165,12566420 +(1,793:6434165,12566420:0,6705539,196608 +r1,793:32779637,12566420:26345472,6902147,196608 +k1,793:6434165,12566420:-26345472 +) +(1,793:6434165,12566420:26345472,6705539,196608 +[1,793:6630773,12566420:25952256,6508931,0 +(1,778:6630773,6461715:25952256,404226,76021 +(1,776:6630773,6461715:0,0,0 +g1,776:6630773,6461715 +g1,776:6630773,6461715 +g1,776:6303093,6461715 +(1,776:6303093,6461715:0,0,0 +) +g1,776:6630773,6461715 +) +g1,778:7579210,6461715 +g1,778:8843793,6461715 +g1,778:9476085,6461715 +g1,778:10108377,6461715 +g1,778:10740669,6461715 +g1,778:11372961,6461715 +g1,778:12005253,6461715 +h1,778:12321399,6461715:0,0,0 +k1,778:32583029,6461715:20261630 +g1,778:32583029,6461715 +) +(1,780:6630773,7783253:25952256,388497,9436 +(1,779:6630773,7783253:0,0,0 +g1,779:6630773,7783253 +g1,779:6630773,7783253 +g1,779:6303093,7783253 +(1,779:6303093,7783253:0,0,0 +) +g1,779:6630773,7783253 +) +g1,780:7263065,7783253 +g1,780:7895357,7783253 +h1,780:8843795,7783253:0,0,0 +k1,780:32583029,7783253:23739234 +g1,780:32583029,7783253 +) +(1,784:6630773,8514967:25952256,404226,76021 +(1,782:6630773,8514967:0,0,0 +g1,782:6630773,8514967 +g1,782:6630773,8514967 +g1,782:6303093,8514967 +(1,782:6303093,8514967:0,0,0 +) +g1,782:6630773,8514967 +) +g1,784:7579210,8514967 +g1,784:8843793,8514967 +g1,784:9476085,8514967 +g1,784:10108377,8514967 +g1,784:10740669,8514967 +g1,784:11372961,8514967 +g1,784:12005253,8514967 +h1,784:12321399,8514967:0,0,0 +k1,784:32583029,8514967:20261630 +g1,784:32583029,8514967 +) +(1,786:6630773,9836505:25952256,388497,4718 +(1,785:6630773,9836505:0,0,0 +g1,785:6630773,9836505 +g1,785:6630773,9836505 +g1,785:6303093,9836505 +(1,785:6303093,9836505:0,0,0 +) +g1,785:6630773,9836505 +) +g1,786:7263065,9836505 +g1,786:7895357,9836505 +h1,786:8843795,9836505:0,0,0 +k1,786:32583029,9836505:23739234 +g1,786:32583029,9836505 +) +(1,790:6630773,11158043:25952256,410518,107478 +k1,790:7644326,11158043:381262 +k1,790:10238608,11158043:381262 +k1,790:11252162,11158043:381263 +k1,790:11949570,11158043:381262 +k1,790:12646978,11158043:381262 +k1,790:14292823,11158043:381262 +k1,790:16570959,11158043:381262 +k1,790:18849096,11158043:381263 +k1,790:21127232,11158043:381262 +k1,790:22140785,11158043:381262 +k1,790:23470484,11158043:381262 +k1,790:24167892,11158043:381262 +k1,790:27078320,11158043:381263 +k1,790:28091873,11158043:381262 +k1,790:30686155,11158043:381262 +k1,790:32583029,11158043:0 +) +(1,790:6630773,11824221:25952256,404226,107478 +k1,790:32583029,11824221:24055382 +g1,790:32583029,11824221 +) +(1,792:6630773,12490399:25952256,404226,76021 +(1,790:6630773,12490399:0,0,0 +g1,790:6630773,12490399 +g1,790:6630773,12490399 +g1,790:6303093,12490399 +(1,790:6303093,12490399:0,0,0 +) +g1,790:6630773,12490399 +) +g1,792:7579210,12490399 +g1,792:8843793,12490399 +g1,792:9476085,12490399 +g1,792:10108377,12490399 +g1,792:10740669,12490399 +g1,792:11372961,12490399 +g1,792:12005253,12490399 +h1,792:12321399,12490399:0,0,0 +k1,792:32583029,12490399:20261630 +g1,792:32583029,12490399 +) +] +) +g1,793:32583029,12566420 +g1,793:6630773,12566420 +g1,793:6630773,12566420 +g1,793:32583029,12566420 +g1,793:32583029,12566420 +) +h1,793:6630773,12763028:0,0,0 +v1,797:6630773,14653092:0,393216,0 +(1,857:6630773,42709705:25952256,28449829,616038 +g1,857:6630773,42709705 +(1,857:6630773,42709705:25952256,28449829,616038 +(1,857:6630773,43325743:25952256,29065867,0 +[1,857:6630773,43325743:25952256,29065867,0 +(1,857:6630773,43299529:25952256,29013439,0 +r1,857:6656987,43299529:26214,29013439,0 +[1,857:6656987,43299529:25899828,29013439,0 +(1,857:6656987,42709705:25899828,27833791,0 +[1,857:7246811,42709705:24720180,27833791,0 +(1,798:7246811,16037799:24720180,1161885,196608 +(1,797:7246811,16037799:0,1161885,196608 +r1,857:8794447,16037799:1547636,1358493,196608 +k1,797:7246811,16037799:-1547636 +) +(1,797:7246811,16037799:1547636,1161885,196608 +) +k1,797:9001284,16037799:206837 +k1,797:9695701,16037799:206829 +k1,797:11879758,16037799:206836 +k1,797:13748588,16037799:206837 +k1,797:14606852,16037799:206836 +k1,797:16710301,16037799:206837 +k1,797:17272998,16037799:206837 +k1,797:19457711,16037799:206836 +k1,797:20768830,16037799:206837 +k1,797:22450882,16037799:206837 +k1,797:24670984,16037799:206836 +k1,797:26471657,16037799:206837 +k1,797:29087596,16037799:206836 +k1,797:29953725,16037799:206837 +k1,797:31966991,16037799:0 +) +(1,798:7246811,16879287:24720180,513147,134348 +k1,797:8825923,16879287:158947 +k1,797:10321803,16879287:158946 +k1,797:12125704,16879287:158947 +k1,797:12897412,16879287:158946 +k1,797:14362492,16879287:158947 +k1,797:16098890,16879287:158946 +k1,797:17882475,16879287:158947 +k1,797:20520648,16879287:158946 +k1,797:21751764,16879287:158947 +k1,797:22526748,16879287:158946 +k1,797:23896800,16879287:158947 +k1,797:25435934,16879287:158946 +k1,797:26586441,16879287:158947 +k1,797:28099361,16879287:158946 +k1,797:30409200,16879287:158947 +k1,797:31966991,16879287:0 +) +(1,798:7246811,17720775:24720180,513147,134348 +k1,797:9211984,17720775:283519 +k1,797:10514588,17720775:283519 +k1,797:13599770,17720775:283518 +k1,797:14542581,17720775:283519 +k1,797:15935625,17720775:283519 +k1,797:18227822,17720775:283519 +k1,797:19194225,17720775:283518 +k1,797:22249262,17720775:283519 +k1,797:23184209,17720775:283519 +k1,797:24583151,17720775:283519 +k1,797:26564051,17720775:283518 +k1,797:27533732,17720775:283519 +k1,797:30095938,17720775:283519 +k1,797:31966991,17720775:0 +) +(1,798:7246811,18562263:24720180,513147,134348 +k1,797:9346772,18562263:214490 +k1,797:10177300,18562263:214490 +k1,797:11410875,18562263:214490 +k1,797:14155055,18562263:214490 +k1,797:15028837,18562263:214490 +k1,797:17551505,18562263:214490 +k1,797:18425287,18562263:214490 +k1,797:20653042,18562263:214489 +k1,797:22287697,18562263:214490 +k1,797:24458437,18562263:214490 +k1,797:26964721,18562263:214490 +k1,797:27830639,18562263:214490 +k1,797:28792895,18562263:214490 +k1,797:31280829,18562263:214490 +k1,797:31966991,18562263:0 +) +(1,798:7246811,19403751:24720180,513147,126483 +k1,797:9723403,19403751:282447 +k1,797:11876902,19403751:282446 +k1,797:12372257,19403751:282363 +k1,797:15323984,19403751:282446 +k1,797:17004314,19403751:282447 +k1,797:17642621,19403751:282447 +k1,797:19902288,19403751:282446 +k1,797:23053901,19403751:282447 +(1,797:23053901,19403751:0,452978,122846 +r1,857:25874150,19403751:2820249,575824,122846 +k1,797:23053901,19403751:-2820249 +) +(1,797:23053901,19403751:2820249,452978,122846 +k1,797:23053901,19403751:3277 +h1,797:25870873,19403751:0,411205,112570 +) +k1,797:26156596,19403751:282446 +k1,797:28324514,19403751:282447 +k1,797:30947906,19403751:282446 +k1,797:31966991,19403751:0 +) +(1,798:7246811,20245239:24720180,513147,134348 +g1,797:9459306,20245239 +g1,797:10317827,20245239 +g1,797:10872916,20245239 +g1,797:13050022,20245239 +g1,797:13932136,20245239 +k1,798:31966992,20245239:16867660 +g1,798:31966992,20245239 +) +v1,800:7246811,21435705:0,393216,0 +(1,814:7246811,25170488:24720180,4127999,196608 +g1,814:7246811,25170488 +g1,814:7246811,25170488 +g1,814:7050203,25170488 +(1,814:7050203,25170488:0,4127999,196608 +r1,857:32163599,25170488:25113396,4324607,196608 +k1,814:7050203,25170488:-25113396 +) +(1,814:7050203,25170488:25113396,4127999,196608 +[1,814:7246811,25170488:24720180,3931391,0 +(1,802:7246811,21643323:24720180,404226,76021 +(1,801:7246811,21643323:0,0,0 +g1,801:7246811,21643323 +g1,801:7246811,21643323 +g1,801:6919131,21643323 +(1,801:6919131,21643323:0,0,0 +) +g1,801:7246811,21643323 +) +g1,802:7879103,21643323 +g1,802:8827541,21643323 +k1,802:8827541,21643323:0 +h1,802:11988999,21643323:0,0,0 +k1,802:31966991,21643323:19977992 +g1,802:31966991,21643323 +) +(1,803:7246811,22309501:24720180,277873,0 +h1,803:7246811,22309501:0,0,0 +h1,803:7562957,22309501:0,0,0 +k1,803:31966991,22309501:24404034 +g1,803:31966991,22309501 +) +(1,807:7246811,23041215:24720180,404226,76021 +(1,805:7246811,23041215:0,0,0 +g1,805:7246811,23041215 +g1,805:7246811,23041215 +g1,805:6919131,23041215 +(1,805:6919131,23041215:0,0,0 +) +g1,805:7246811,23041215 +) +g1,807:8195248,23041215 +h1,807:11356705,23041215:0,0,0 +k1,807:31966991,23041215:20610286 +g1,807:31966991,23041215 +) +(1,809:7246811,24362753:24720180,404226,107478 +(1,808:7246811,24362753:0,0,0 +g1,808:7246811,24362753 +g1,808:7246811,24362753 +g1,808:6919131,24362753 +(1,808:6919131,24362753:0,0,0 +) +g1,808:7246811,24362753 +) +k1,809:7246811,24362753:0 +h1,809:10092122,24362753:0,0,0 +k1,809:31966990,24362753:21874868 +g1,809:31966990,24362753 +) +(1,813:7246811,25094467:24720180,404226,76021 +(1,811:7246811,25094467:0,0,0 +g1,811:7246811,25094467 +g1,811:7246811,25094467 +g1,811:6919131,25094467 +(1,811:6919131,25094467:0,0,0 +) +g1,811:7246811,25094467 +) +g1,813:8195248,25094467 +g1,813:9459831,25094467 +h1,813:9775977,25094467:0,0,0 +k1,813:31966991,25094467:22191014 +g1,813:31966991,25094467 +) +] +) +g1,814:31966991,25170488 +g1,814:7246811,25170488 +g1,814:7246811,25170488 +g1,814:31966991,25170488 +g1,814:31966991,25170488 +) +h1,814:7246811,25367096:0,0,0 +(1,818:7246811,26732872:24720180,513147,134348 +h1,817:7246811,26732872:983040,0,0 +k1,817:10894544,26732872:255590 +k1,817:12341580,26732872:255591 +k1,817:13920997,26732872:255590 +k1,817:14835880,26732872:255591 +k1,817:17104736,26732872:255590 +k1,817:18954163,26732872:255591 +k1,817:21432734,26732872:255590 +k1,817:22304363,26732872:255591 +k1,817:24161653,26732872:255590 +k1,817:26288297,26732872:255591 +k1,817:27230049,26732872:255590 +k1,817:31966991,26732872:0 +) +(1,818:7246811,27574360:24720180,505283,126483 +g1,817:8826228,27574360 +g1,817:10129739,27574360 +g1,817:11076734,27574360 +g1,817:15508278,27574360 +g1,817:16393669,27574360 +g1,817:18668423,27574360 +k1,818:31966991,27574360:11727015 +g1,818:31966991,27574360 +) +v1,820:7246811,28764826:0,393216,0 +(1,833:7246811,31833431:24720180,3461821,196608 +g1,833:7246811,31833431 +g1,833:7246811,31833431 +g1,833:7050203,31833431 +(1,833:7050203,31833431:0,3461821,196608 +r1,857:32163599,31833431:25113396,3658429,196608 +k1,833:7050203,31833431:-25113396 +) +(1,833:7050203,31833431:25113396,3461821,196608 +[1,833:7246811,31833431:24720180,3265213,0 +(1,822:7246811,28972444:24720180,404226,107478 +(1,821:7246811,28972444:0,0,0 +g1,821:7246811,28972444 +g1,821:7246811,28972444 +g1,821:6919131,28972444 +(1,821:6919131,28972444:0,0,0 +) +g1,821:7246811,28972444 +) +k1,822:7246811,28972444:0 +g1,822:11040560,28972444 +g1,822:14834310,28972444 +h1,822:15782747,28972444:0,0,0 +k1,822:31966991,28972444:16184244 +g1,822:31966991,28972444 +) +(1,826:7246811,29704158:24720180,404226,76021 +(1,824:7246811,29704158:0,0,0 +g1,824:7246811,29704158 +g1,824:7246811,29704158 +g1,824:6919131,29704158 +(1,824:6919131,29704158:0,0,0 +) +g1,824:7246811,29704158 +) +g1,826:8195248,29704158 +g1,826:9459831,29704158 +h1,826:9775977,29704158:0,0,0 +k1,826:31966991,29704158:22191014 +g1,826:31966991,29704158 +) +(1,828:7246811,31025696:24720180,404226,107478 +(1,827:7246811,31025696:0,0,0 +g1,827:7246811,31025696 +g1,827:7246811,31025696 +g1,827:6919131,31025696 +(1,827:6919131,31025696:0,0,0 +) +g1,827:7246811,31025696 +) +k1,828:7246811,31025696:0 +g1,828:11040560,31025696 +h1,828:11988997,31025696:0,0,0 +k1,828:31966991,31025696:19977994 +g1,828:31966991,31025696 +) +(1,832:7246811,31757410:24720180,404226,76021 +(1,830:7246811,31757410:0,0,0 +g1,830:7246811,31757410 +g1,830:7246811,31757410 +g1,830:6919131,31757410 +(1,830:6919131,31757410:0,0,0 +) +g1,830:7246811,31757410 +) +g1,832:8195248,31757410 +g1,832:9459831,31757410 +h1,832:9775977,31757410:0,0,0 +k1,832:31966991,31757410:22191014 +g1,832:31966991,31757410 +) +] +) +g1,833:31966991,31833431 +g1,833:7246811,31833431 +g1,833:7246811,31833431 +g1,833:31966991,31833431 +g1,833:31966991,31833431 +) +h1,833:7246811,32030039:0,0,0 +(1,837:7246811,33395815:24720180,513147,126483 +h1,836:7246811,33395815:983040,0,0 +k1,836:10113891,33395815:188624 +k1,836:13501984,33395815:188625 +k1,836:15184174,33395815:188624 +k1,836:16058960,33395815:188624 +k1,836:17166400,33395815:188625 +k1,836:19332901,33395815:188624 +k1,836:22547323,33395815:188625 +k1,836:23927392,33395815:188624 +k1,836:27366602,33395815:188624 +k1,836:28687689,33395815:188625 +k1,836:30924313,33395815:188624 +k1,837:31966991,33395815:0 +) +(1,837:7246811,34237303:24720180,513147,134348 +k1,836:9277823,34237303:240568 +k1,836:11826568,34237303:240567 +k1,836:12726428,34237303:240568 +k1,836:14980261,34237303:240567 +k1,836:16640994,34237303:240568 +k1,836:17567723,34237303:240567 +k1,836:19348387,34237303:240568 +k1,836:21471148,34237303:240567 +k1,836:24712610,34237303:240568 +k1,836:26238993,34237303:240567 +k1,836:26835421,34237303:240568 +k1,836:29053865,34237303:240567 +k1,836:29953725,34237303:240568 +k1,836:31966991,34237303:0 +) +(1,837:7246811,35078791:24720180,505283,134348 +k1,836:9009125,35078791:168478 +k1,836:11444493,35078791:168478 +k1,836:13883794,35078791:168478 +k1,836:14408132,35078791:168478 +k1,836:17146932,35078791:168478 +k1,836:18413138,35078791:168478 +k1,836:19352318,35078791:168477 +k1,836:21127739,35078791:168478 +k1,836:24175214,35078791:168478 +k1,836:24971527,35078791:168478 +k1,836:26841975,35078791:168478 +k1,836:29139062,35078791:168478 +k1,836:30921036,35078791:168478 +k1,836:31966991,35078791:0 +) +(1,837:7246811,35920279:24720180,505283,126483 +g1,836:8987447,35920279 +g1,836:12511973,35920279 +g1,836:13327240,35920279 +k1,837:31966991,35920279:18051238 +g1,837:31966991,35920279 +) +v1,839:7246811,37110745:0,393216,0 +(1,852:7246811,40179350:24720180,3461821,196608 +g1,852:7246811,40179350 +g1,852:7246811,40179350 +g1,852:7050203,40179350 +(1,852:7050203,40179350:0,3461821,196608 +r1,857:32163599,40179350:25113396,3658429,196608 +k1,852:7050203,40179350:-25113396 +) +(1,852:7050203,40179350:25113396,3461821,196608 +[1,852:7246811,40179350:24720180,3265213,0 +(1,841:7246811,37318363:24720180,404226,107478 +(1,840:7246811,37318363:0,0,0 +g1,840:7246811,37318363 +g1,840:7246811,37318363 +g1,840:6919131,37318363 +(1,840:6919131,37318363:0,0,0 +) +g1,840:7246811,37318363 +) +k1,841:7246811,37318363:0 +k1,841:7246811,37318363:0 +h1,841:11988997,37318363:0,0,0 +k1,841:31966991,37318363:19977994 +g1,841:31966991,37318363 +) +(1,845:7246811,38050077:24720180,404226,76021 +(1,843:7246811,38050077:0,0,0 +g1,843:7246811,38050077 +g1,843:7246811,38050077 +g1,843:6919131,38050077 +(1,843:6919131,38050077:0,0,0 +) +g1,843:7246811,38050077 +) +g1,845:8195248,38050077 +h1,845:11356705,38050077:0,0,0 +k1,845:31966991,38050077:20610286 +g1,845:31966991,38050077 +) +(1,847:7246811,39371615:24720180,404226,76021 +(1,846:7246811,39371615:0,0,0 +g1,846:7246811,39371615 +g1,846:7246811,39371615 +g1,846:6919131,39371615 +(1,846:6919131,39371615:0,0,0 +) +g1,846:7246811,39371615 +) +g1,847:7879103,39371615 +g1,847:8511395,39371615 +k1,847:8511395,39371615:0 +h1,847:11672853,39371615:0,0,0 +k1,847:31966991,39371615:20294138 +g1,847:31966991,39371615 +) +(1,851:7246811,40103329:24720180,404226,76021 +(1,849:7246811,40103329:0,0,0 +g1,849:7246811,40103329 +g1,849:7246811,40103329 +g1,849:6919131,40103329 +(1,849:6919131,40103329:0,0,0 +) +g1,849:7246811,40103329 +) +g1,851:8195248,40103329 +h1,851:11356705,40103329:0,0,0 +k1,851:31966991,40103329:20610286 +g1,851:31966991,40103329 +) +] +) +g1,852:31966991,40179350 +g1,852:7246811,40179350 +g1,852:7246811,40179350 +g1,852:31966991,40179350 +g1,852:31966991,40179350 +) +h1,852:7246811,40375958:0,0,0 +(1,856:7246811,41741734:24720180,513147,134348 +h1,855:7246811,41741734:983040,0,0 +k1,855:9949113,41741734:228973 +k1,855:11876123,41741734:228972 +k1,855:12764388,41741734:228973 +k1,855:15006627,41741734:228973 +k1,855:16829435,41741734:228972 +k1,855:19366586,41741734:228973 +k1,855:20410827,41741734:228973 +k1,855:22115015,41741734:228973 +k1,855:22995415,41741734:228972 +k1,855:25360862,41741734:228973 +k1,855:26241263,41741734:228973 +k1,855:26826095,41741734:228972 +k1,855:28610237,41741734:228973 +k1,855:31966991,41741734:0 +) +(1,856:7246811,42583222:24720180,513147,126483 +g1,855:8393691,42583222 +g1,855:9612005,42583222 +k1,856:31966991,42583222:19107022 +g1,856:31966991,42583222 +) +] +) +] +r1,857:32583029,43299529:26214,29013439,0 +) +] +) +) +g1,857:32583029,42709705 +) +h1,857:6630773,43325743:0,0,0 +(1,860:6630773,44691519:25952256,513147,126483 +h1,859:6630773,44691519:983040,0,0 +k1,859:8279639,44691519:195933 +k1,859:9007069,44691519:195933 +k1,859:11832962,44691519:195933 +k1,859:12680323,44691519:195933 +k1,859:15214581,44691519:195933 +k1,859:18252155,44691519:195933 +k1,859:20015709,44691519:195933 +k1,859:21230727,44691519:195933 +k1,859:24810939,44691519:195933 +k1,859:26400823,44691519:195933 +(1,859:26400823,44691519:0,452978,115847 +r1,859:27814224,44691519:1413401,568825,115847 +k1,859:26400823,44691519:-1413401 +) +(1,859:26400823,44691519:1413401,452978,115847 +k1,859:26400823,44691519:3277 +h1,859:27810947,44691519:0,411205,112570 ) -k1,853:28183827,44691519:195933 -k1,853:31169628,44691519:195933 -(1,853:31169628,44691519:0,452978,115847 -r1,853:32583029,44691519:1413401,568825,115847 -k1,853:31169628,44691519:-1413401 -) -(1,853:31169628,44691519:1413401,452978,115847 -k1,853:31169628,44691519:3277 -h1,853:32579752,44691519:0,411205,112570 -) -k1,853:32583029,44691519:0 +k1,859:28183827,44691519:195933 +k1,859:31169628,44691519:195933 +(1,859:31169628,44691519:0,452978,115847 +r1,859:32583029,44691519:1413401,568825,115847 +k1,859:31169628,44691519:-1413401 +) +(1,859:31169628,44691519:1413401,452978,115847 +k1,859:31169628,44691519:3277 +h1,859:32579752,44691519:0,411205,112570 +) +k1,859:32583029,44691519:0 ) -(1,854:6630773,45533007:25952256,513147,134348 -k1,853:9214156,45533007:242437 -k1,853:9812452,45533007:242436 -k1,853:11004504,45533007:242436 -k1,853:11906233,45533007:242437 -k1,853:12914786,45533007:242437 -k1,853:15447050,45533007:242436 -k1,853:17732244,45533007:242437 -k1,853:18590718,45533007:242436 -k1,853:19852240,45533007:242437 -k1,853:22438899,45533007:242436 -k1,853:26912340,45533007:242437 -k1,853:27837661,45533007:242436 -k1,853:28841626,45533007:242437 -k1,853:32227169,45533007:242436 -k1,854:32583029,45533007:0 +(1,860:6630773,45533007:25952256,513147,134348 +k1,859:9214156,45533007:242437 +k1,859:9812452,45533007:242436 +k1,859:11004504,45533007:242436 +k1,859:11906233,45533007:242437 +k1,859:12914786,45533007:242437 +k1,859:15447050,45533007:242436 +k1,859:17732244,45533007:242437 +k1,859:18590718,45533007:242436 +k1,859:19852240,45533007:242437 +k1,859:22438899,45533007:242436 +k1,859:26912340,45533007:242437 +k1,859:27837661,45533007:242436 +k1,859:28841626,45533007:242437 +k1,859:32227169,45533007:242436 +k1,860:32583029,45533007:0 ) ] -(1,854:32583029,45706769:0,0,0 -g1,854:32583029,45706769 +(1,860:32583029,45706769:0,0,0 +g1,860:32583029,45706769 ) ) ] -(1,854:6630773,47279633:25952256,0,0 -h1,854:6630773,47279633:25952256,0,0 +(1,860:6630773,47279633:25952256,0,0 +h1,860:6630773,47279633:25952256,0,0 ) ] -h1,854:4262630,4025873:0,0,0 +h1,860:4262630,4025873:0,0,0 ] !20814 }35 -Input:197:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:198:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:199:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:200:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:201:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:202:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:203:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:204:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!691 +Input:193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 {36 -[1,945:4262630,47279633:28320399,43253760,0 -(1,945:4262630,4025873:0,0,0 -[1,945:-473657,4025873:25952256,0,0 -(1,945:-473657,-710414:25952256,0,0 -h1,945:-473657,-710414:0,0,0 -(1,945:-473657,-710414:0,0,0 -(1,945:-473657,-710414:0,0,0 -g1,945:-473657,-710414 -(1,945:-473657,-710414:65781,0,65781 -g1,945:-407876,-710414 -[1,945:-407876,-644633:0,0,0 +[1,951:4262630,47279633:28320399,43253760,0 +(1,951:4262630,4025873:0,0,0 +[1,951:-473657,4025873:25952256,0,0 +(1,951:-473657,-710414:25952256,0,0 +h1,951:-473657,-710414:0,0,0 +(1,951:-473657,-710414:0,0,0 +(1,951:-473657,-710414:0,0,0 +g1,951:-473657,-710414 +(1,951:-473657,-710414:65781,0,65781 +g1,951:-407876,-710414 +[1,951:-407876,-644633:0,0,0 ] ) -k1,945:-473657,-710414:-65781 +k1,951:-473657,-710414:-65781 ) ) -k1,945:25478599,-710414:25952256 -g1,945:25478599,-710414 +k1,951:25478599,-710414:25952256 +g1,951:25478599,-710414 ) ] ) -[1,945:6630773,47279633:25952256,43253760,0 -[1,945:6630773,4812305:25952256,786432,0 -(1,945:6630773,4812305:25952256,505283,11795 -(1,945:6630773,4812305:25952256,505283,11795 -g1,945:3078558,4812305 -[1,945:3078558,4812305:0,0,0 -(1,945:3078558,2439708:0,1703936,0 -k1,945:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,945:2537886,2439708:1179648,16384,0 +[1,951:6630773,47279633:25952256,43253760,0 +[1,951:6630773,4812305:25952256,786432,0 +(1,951:6630773,4812305:25952256,505283,11795 +(1,951:6630773,4812305:25952256,505283,11795 +g1,951:3078558,4812305 +[1,951:3078558,4812305:0,0,0 +(1,951:3078558,2439708:0,1703936,0 +k1,951:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,951:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,945:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,951:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,945:3078558,4812305:0,0,0 -(1,945:3078558,2439708:0,1703936,0 -g1,945:29030814,2439708 -g1,945:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,945:36151628,1915420:16384,1179648,0 +[1,951:3078558,4812305:0,0,0 +(1,951:3078558,2439708:0,1703936,0 +g1,951:29030814,2439708 +g1,951:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,951:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,945:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,951:37855564,2439708:1179648,16384,0 ) ) -k1,945:3078556,2439708:-34777008 +k1,951:3078556,2439708:-34777008 ) ] -[1,945:3078558,4812305:0,0,0 -(1,945:3078558,49800853:0,16384,2228224 -k1,945:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,945:2537886,49800853:1179648,16384,0 +[1,951:3078558,4812305:0,0,0 +(1,951:3078558,49800853:0,16384,2228224 +k1,951:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,951:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,945:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,951:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,945:3078558,4812305:0,0,0 -(1,945:3078558,49800853:0,16384,2228224 -g1,945:29030814,49800853 -g1,945:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,945:36151628,51504789:16384,1179648,0 +[1,951:3078558,4812305:0,0,0 +(1,951:3078558,49800853:0,16384,2228224 +g1,951:29030814,49800853 +g1,951:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,951:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,945:37855564,49800853:1179648,16384,0 -) -) -k1,945:3078556,49800853:-34777008 -) -] -g1,945:6630773,4812305 -g1,945:6630773,4812305 -g1,945:9516978,4812305 -g1,945:11710468,4812305 -g1,945:13120147,4812305 -g1,945:16560787,4812305 -k1,945:31786111,4812305:15225324 -) -) -] -[1,945:6630773,45706769:25952256,40108032,0 -(1,945:6630773,45706769:25952256,40108032,0 -(1,945:6630773,45706769:0,0,0 -g1,945:6630773,45706769 -) -[1,945:6630773,45706769:25952256,40108032,0 -(1,854:6630773,6254097:25952256,505283,134348 -(1,853:6630773,6254097:0,414482,115847 -r1,853:9099310,6254097:2468537,530329,115847 -k1,853:6630773,6254097:-2468537 -) -(1,853:6630773,6254097:2468537,414482,115847 -k1,853:6630773,6254097:3277 -h1,853:9096033,6254097:0,411205,112570 -) -k1,853:9273911,6254097:174601 -k1,853:12694510,6254097:174601 -k1,853:14244713,6254097:174602 -k1,853:15438399,6254097:174601 -k1,853:17902828,6254097:174601 -k1,853:19471380,6254097:174601 -k1,853:21714297,6254097:174601 -k1,853:24860300,6254097:174601 -k1,853:26053987,6254097:174602 -(1,853:26053987,6254097:0,414482,115847 -r1,853:28522524,6254097:2468537,530329,115847 -k1,853:26053987,6254097:-2468537 -) -(1,853:26053987,6254097:2468537,414482,115847 -k1,853:26053987,6254097:3277 -h1,853:28519247,6254097:0,411205,112570 -) -k1,853:28870795,6254097:174601 -k1,853:30242083,6254097:174601 -k1,853:32583029,6254097:0 -) -(1,854:6630773,7095585:25952256,505283,134348 -k1,853:7322178,7095585:159908 -k1,853:9176847,7095585:159908 -k1,853:10022916,7095585:159907 -k1,853:10538684,7095585:159908 -k1,853:12972691,7095585:159908 -k1,853:16746254,7095585:159908 -k1,853:18300113,7095585:159908 -h1,853:18300113,7095585:0,0,0 -k1,853:19250385,7095585:159908 -k1,853:22426259,7095585:159907 -k1,853:25973068,7095585:159908 -k1,853:29104378,7095585:159908 -k1,853:32583029,7095585:0 -) -(1,854:6630773,7937073:25952256,513147,134348 -h1,853:6630773,7937073:0,0,0 -k1,853:7319909,7937073:293954 -k1,853:8805308,7937073:293954 -h1,853:8805308,7937073:0,0,0 -k1,853:9668114,7937073:293954 -k1,853:13136632,7937073:293954 -k1,853:14449671,7937073:293954 -k1,853:17646215,7937073:293954 -k1,853:18599462,7937073:293955 -k1,853:19912501,7937073:293954 -k1,853:21944470,7937073:293954 -k1,853:23933840,7937073:293954 -k1,853:25419239,7937073:293954 -k1,853:27069788,7937073:293954 -k1,853:31541007,7937073:293954 -k1,853:32583029,7937073:0 -) -(1,854:6630773,8778561:25952256,513147,134348 -k1,853:9607855,8778561:141995 -h1,853:9607855,8778561:0,0,0 -k1,853:11725759,8778561:141994 -k1,853:14526550,8778561:141995 -k1,853:16044145,8778561:141994 -k1,853:17205225,8778561:141995 -k1,853:19220238,8778561:141994 -k1,853:22336912,8778561:141995 -k1,853:23216187,8778561:141995 -k1,853:25047699,8778561:141994 -h1,853:25047699,8778561:0,0,0 -k1,853:26770422,8778561:141995 -k1,853:29571212,8778561:141994 -k1,853:30845014,8778561:141995 -k1,853:32583029,8778561:0 -) -(1,854:6630773,9620049:25952256,513147,134348 -k1,853:9284092,9620049:174747 -k1,853:10852790,9620049:174747 -k1,853:11938487,9620049:174747 -k1,853:12741068,9620049:174746 -k1,853:15547086,9620049:174747 -h1,853:15547086,9620049:0,0,0 -k1,853:18883290,9620049:174747 -k1,853:21716833,9620049:174747 -k1,853:23358276,9620049:174747 -k1,853:24270303,9620049:174747 -k1,853:25636495,9620049:174747 -k1,853:26519685,9620049:174746 -k1,853:27766601,9620049:174747 -k1,853:30212171,9620049:174747 -k1,853:31485301,9620049:174747 -k1,853:32583029,9620049:0 -) -(1,854:6630773,10461537:25952256,513147,134348 -k1,853:8071963,10461537:169136 -k1,853:9432543,10461537:169135 -h1,853:9432543,10461537:0,0,0 -k1,853:12763135,10461537:169136 -k1,853:15591066,10461537:169135 -k1,853:16892009,10461537:169136 -k1,853:18799159,10461537:169135 -k1,853:21446867,10461537:169136 -k1,853:23009953,10461537:169135 -k1,853:23534949,10461537:169136 -k1,853:26827530,10461537:169135 -k1,853:28720888,10461537:169106 -k1,853:30765663,10461537:169135 -k1,853:31412556,10461537:169136 -k1,853:32583029,10461537:0 -) -(1,854:6630773,11303025:25952256,505283,134348 -k1,853:7861489,11303025:239156 -k1,853:9836038,11303025:239156 -k1,853:12673041,11303025:239156 -k1,853:13678312,11303025:239155 -k1,853:16207296,11303025:239156 -k1,853:17438012,11303025:239156 -k1,853:19438776,11303025:239156 -k1,853:20293970,11303025:239156 -k1,853:21552211,11303025:239156 -k1,853:25872293,11303025:239155 -k1,853:27823905,11303025:239156 -k1,853:29254506,11303025:239156 -k1,853:30512747,11303025:239156 -k1,853:32583029,11303025:0 -) -(1,854:6630773,12144513:25952256,513147,134348 -g1,853:7989989,12144513 -g1,853:8848510,12144513 -g1,853:10066824,12144513 -g1,853:12009966,12144513 -g1,853:13313477,12144513 -g1,853:14260472,12144513 -g1,853:15972927,12144513 -g1,853:16823584,12144513 -g1,853:18288969,12144513 -g1,853:18844058,12144513 -g1,853:20738048,12144513 -k1,854:32583029,12144513:9711784 -g1,854:32583029,12144513 -) -v1,856:6630773,13125263:0,393216,0 -(1,870:6630773,16866338:25952256,4134291,196608 -g1,870:6630773,16866338 -g1,870:6630773,16866338 -g1,870:6434165,16866338 -(1,870:6434165,16866338:0,4134291,196608 -r1,870:32779637,16866338:26345472,4330899,196608 -k1,870:6434165,16866338:-26345472 -) -(1,870:6434165,16866338:26345472,4134291,196608 -[1,870:6630773,16866338:25952256,3937683,0 -(1,858:6630773,13339173:25952256,410518,101187 -(1,857:6630773,13339173:0,0,0 -g1,857:6630773,13339173 -g1,857:6630773,13339173 -g1,857:6303093,13339173 -(1,857:6303093,13339173:0,0,0 -) -g1,857:6630773,13339173 -) -k1,858:6630773,13339173:0 -h1,858:12005250,13339173:0,0,0 -k1,858:32583030,13339173:20577780 -g1,858:32583030,13339173 -) -(1,862:6630773,14070887:25952256,404226,76021 -(1,860:6630773,14070887:0,0,0 -g1,860:6630773,14070887 -g1,860:6630773,14070887 -g1,860:6303093,14070887 -(1,860:6303093,14070887:0,0,0 -) -g1,860:6630773,14070887 -) -g1,862:7579210,14070887 -g1,862:8843793,14070887 -h1,862:9792230,14070887:0,0,0 -k1,862:32583030,14070887:22790800 -g1,862:32583030,14070887 -) -(1,864:6630773,15392425:25952256,404226,76021 -(1,863:6630773,15392425:0,0,0 -g1,863:6630773,15392425 -g1,863:6630773,15392425 -g1,863:6303093,15392425 -(1,863:6303093,15392425:0,0,0 -) -g1,863:6630773,15392425 -) -k1,864:6630773,15392425:0 -h1,864:8211501,15392425:0,0,0 -k1,864:32583029,15392425:24371528 -g1,864:32583029,15392425 -) -(1,865:6630773,16058603:25952256,410518,101187 -h1,865:6630773,16058603:0,0,0 -k1,865:6630773,16058603:0 -h1,865:12005250,16058603:0,0,0 -k1,865:32583030,16058603:20577780 -g1,865:32583030,16058603 -) -(1,869:6630773,16790317:25952256,404226,76021 -(1,867:6630773,16790317:0,0,0 -g1,867:6630773,16790317 -g1,867:6630773,16790317 -g1,867:6303093,16790317 -(1,867:6303093,16790317:0,0,0 -) -g1,867:6630773,16790317 -) -g1,869:7579210,16790317 -h1,869:11372958,16790317:0,0,0 -k1,869:32583030,16790317:21210072 -g1,869:32583030,16790317 -) -] -) -g1,870:32583029,16866338 -g1,870:6630773,16866338 -g1,870:6630773,16866338 -g1,870:32583029,16866338 -g1,870:32583029,16866338 -) -h1,870:6630773,17062946:0,0,0 -(1,874:6630773,18219006:25952256,513147,134348 -h1,873:6630773,18219006:983040,0,0 -k1,873:9595125,18219006:148925 -k1,873:10735610,18219006:148925 -k1,873:12576675,18219006:148925 -k1,873:14919745,18219006:148925 -k1,873:17079315,18219006:148925 -k1,873:20012209,18219006:148925 -k1,873:21108785,18219006:148925 -k1,873:24247462,18219006:148925 -(1,873:24247462,18219006:0,414482,115847 -r1,873:24957440,18219006:709978,530329,115847 -k1,873:24247462,18219006:-709978 -) -(1,873:24247462,18219006:709978,414482,115847 -k1,873:24247462,18219006:3277 -h1,873:24954163,18219006:0,411205,112570 -) -k1,873:25106365,18219006:148925 -k1,873:27983554,18219006:148925 -k1,873:29498905,18219006:148925 -k1,873:32583029,18219006:0 -) -(1,874:6630773,19060494:25952256,513147,134348 -k1,873:7317741,19060494:155471 -k1,873:8986438,19060494:155471 -k1,873:10089560,19060494:155471 -k1,873:12717049,19060494:155471 -k1,873:15056835,19060494:155471 -k1,873:19135946,19060494:155471 -k1,873:20395698,19060494:155470 -k1,873:21836985,19060494:155471 -k1,873:23527965,19060494:155471 -k1,873:24702521,19060494:155471 -k1,873:27833327,19060494:155471 -k1,873:29999443,19060494:155471 -(1,873:29999443,19060494:0,414482,115847 -r1,873:31061132,19060494:1061689,530329,115847 -k1,873:29999443,19060494:-1061689 -) -(1,873:29999443,19060494:1061689,414482,115847 -k1,873:29999443,19060494:3277 -h1,873:31057855,19060494:0,411205,112570 -) -k1,873:31216603,19060494:155471 -k1,873:32583029,19060494:0 -) -(1,874:6630773,19901982:25952256,513147,134348 -k1,873:7134889,19901982:148256 -k1,873:10242751,19901982:148256 -(1,873:10242751,19901982:0,459977,115847 -r1,873:11304440,19901982:1061689,575824,115847 -k1,873:10242751,19901982:-1061689 -) -(1,873:10242751,19901982:1061689,459977,115847 -k1,873:10242751,19901982:3277 -h1,873:11301163,19901982:0,411205,112570 -) -k1,873:11452696,19901982:148256 -k1,873:12792397,19901982:148256 -(1,873:12792397,19901982:0,459977,115847 -r1,873:14205798,19901982:1413401,575824,115847 -k1,873:12792397,19901982:-1413401 -) -(1,873:12792397,19901982:1413401,459977,115847 -k1,873:12792397,19901982:3277 -h1,873:14202521,19901982:0,411205,112570 -) -k1,873:14354054,19901982:148256 -k1,873:15449961,19901982:148256 -$1,873:15449961,19901982 -$1,873:16124982,19901982 -k1,873:16273238,19901982:148256 -k1,873:17612939,19901982:148256 -$1,873:17612939,19901982 -$1,873:18856157,19901982 -k1,873:19178083,19901982:148256 -k1,873:20144228,19901982:148256 -k1,873:21462957,19901982:148256 -k1,873:22743675,19901982:148256 -k1,873:23916914,19901982:148256 -k1,873:26107272,19901982:148256 -k1,873:30057271,19901982:148256 -k1,873:32583029,19901982:0 -) -(1,874:6630773,20743470:25952256,505283,134348 -k1,873:8502884,20743470:175384 -k1,873:10688913,20743470:175384 -k1,873:11679565,20743470:175384 -k1,873:12942847,20743470:175384 -k1,873:15248806,20743470:175384 -k1,873:17361434,20743470:175384 -k1,873:18219702,20743470:175383 -k1,873:21469380,20743470:175384 -k1,873:22330926,20743470:175384 -k1,873:23886498,20743470:175384 -k1,873:25053442,20743470:175384 -k1,873:29632190,20743470:175384 -k1,873:31521340,20743470:175384 -(1,873:31521340,20743470:0,459977,115847 -r1,873:32583029,20743470:1061689,575824,115847 -k1,873:31521340,20743470:-1061689 -) -(1,873:31521340,20743470:1061689,459977,115847 -k1,873:31521340,20743470:3277 -h1,873:32579752,20743470:0,411205,112570 -) -k1,873:32583029,20743470:0 -) -(1,874:6630773,21584958:25952256,513147,126483 -g1,873:8021447,21584958 -(1,873:8021447,21584958:0,459977,115847 -r1,873:9434848,21584958:1413401,575824,115847 -k1,873:8021447,21584958:-1413401 -) -(1,873:8021447,21584958:1413401,459977,115847 -k1,873:8021447,21584958:3277 -h1,873:9431571,21584958:0,411205,112570 -) -g1,873:9634077,21584958 -g1,873:10824866,21584958 -g1,873:12309911,21584958 -g1,873:14049236,21584958 -g1,873:17429583,21584958 -g1,873:19639457,21584958 -g1,873:20786337,21584958 -g1,873:22694090,21584958 -g1,873:24084764,21584958 -k1,874:32583029,21584958:5236538 -g1,874:32583029,21584958 -) -v1,876:6630773,22565708:0,393216,0 -(1,915:6630773,35103655:25952256,12931163,196608 -g1,915:6630773,35103655 -g1,915:6630773,35103655 -g1,915:6434165,35103655 -(1,915:6434165,35103655:0,12931163,196608 -r1,915:32779637,35103655:26345472,13127771,196608 -k1,915:6434165,35103655:-26345472 -) -(1,915:6434165,35103655:26345472,12931163,196608 -[1,915:6630773,35103655:25952256,12734555,0 -(1,878:6630773,22697304:25952256,328204,4718 -(1,877:6630773,22697304:0,0,0 -g1,877:6630773,22697304 -g1,877:6630773,22697304 -g1,877:6303093,22697304 -(1,877:6303093,22697304:0,0,0 -) -g1,877:6630773,22697304 -) -g1,878:7263065,22697304 -g1,878:8211503,22697304 -h1,878:8843794,22697304:0,0,0 -k1,878:32583030,22697304:23739236 -g1,878:32583030,22697304 -) -(1,879:6630773,23363482:25952256,284164,4718 -h1,879:6630773,23363482:0,0,0 -h1,879:6946919,23363482:0,0,0 -k1,879:32583029,23363482:25636110 -g1,879:32583029,23363482 -) -(1,883:6630773,24095196:25952256,404226,76021 -(1,881:6630773,24095196:0,0,0 -g1,881:6630773,24095196 -g1,881:6630773,24095196 -g1,881:6303093,24095196 -(1,881:6303093,24095196:0,0,0 -) -g1,881:6630773,24095196 -) -g1,883:7579210,24095196 -g1,883:8843793,24095196 -h1,883:9476084,24095196:0,0,0 -k1,883:32583028,24095196:23106944 -g1,883:32583028,24095196 -) -(1,885:6630773,25416734:25952256,404226,76021 -(1,884:6630773,25416734:0,0,0 -g1,884:6630773,25416734 -g1,884:6630773,25416734 -g1,884:6303093,25416734 -(1,884:6303093,25416734:0,0,0 -) -g1,884:6630773,25416734 -) -k1,885:6630773,25416734:0 -g1,885:7579211,25416734 -g1,885:8211503,25416734 -h1,885:8527649,25416734:0,0,0 -k1,885:32583029,25416734:24055380 -g1,885:32583029,25416734 -) -(1,889:6630773,26148448:25952256,410518,76021 -(1,887:6630773,26148448:0,0,0 -g1,887:6630773,26148448 -g1,887:6630773,26148448 -g1,887:6303093,26148448 -(1,887:6303093,26148448:0,0,0 -) -g1,887:6630773,26148448 -) -g1,889:7579210,26148448 -g1,889:8843793,26148448 -k1,889:8843793,26148448:0 -h1,889:10108376,26148448:0,0,0 -k1,889:32583028,26148448:22474652 -g1,889:32583028,26148448 -) -(1,891:6630773,27469986:25952256,404226,76021 -(1,890:6630773,27469986:0,0,0 -g1,890:6630773,27469986 -g1,890:6630773,27469986 -g1,890:6303093,27469986 -(1,890:6303093,27469986:0,0,0 -) -g1,890:6630773,27469986 -) -g1,891:7263065,27469986 -g1,891:7895357,27469986 -h1,891:8211503,27469986:0,0,0 -k1,891:32583029,27469986:24371526 -g1,891:32583029,27469986 -) -(1,895:6630773,28201700:25952256,410518,76021 -(1,893:6630773,28201700:0,0,0 -g1,893:6630773,28201700 -g1,893:6630773,28201700 -g1,893:6303093,28201700 -(1,893:6303093,28201700:0,0,0 -) -g1,893:6630773,28201700 -) -g1,895:7579210,28201700 -g1,895:8843793,28201700 -h1,895:9792230,28201700:0,0,0 -k1,895:32583030,28201700:22790800 -g1,895:32583030,28201700 -) -(1,897:6630773,29523238:25952256,410518,76021 -(1,896:6630773,29523238:0,0,0 -g1,896:6630773,29523238 -g1,896:6630773,29523238 -g1,896:6303093,29523238 -(1,896:6303093,29523238:0,0,0 -) -g1,896:6630773,29523238 -) -g1,897:7895356,29523238 -g1,897:8527648,29523238 -h1,897:9476085,29523238:0,0,0 -k1,897:32583029,29523238:23106944 -g1,897:32583029,29523238 -) -(1,901:6630773,30254952:25952256,404226,76021 -(1,899:6630773,30254952:0,0,0 -g1,899:6630773,30254952 -g1,899:6630773,30254952 -g1,899:6303093,30254952 -(1,899:6303093,30254952:0,0,0 -) -g1,899:6630773,30254952 -) -g1,901:7579210,30254952 -g1,901:8843793,30254952 -h1,901:9792230,30254952:0,0,0 -k1,901:32583030,30254952:22790800 -g1,901:32583030,30254952 -) -(1,903:6630773,31576490:25952256,410518,0 -(1,902:6630773,31576490:0,0,0 -g1,902:6630773,31576490 -g1,902:6630773,31576490 -g1,902:6303093,31576490 -(1,902:6303093,31576490:0,0,0 -) -g1,902:6630773,31576490 -) -g1,903:7895356,31576490 -g1,903:8527648,31576490 -h1,903:8843794,31576490:0,0,0 -k1,903:32583030,31576490:23739236 -g1,903:32583030,31576490 -) -(1,907:6630773,32308204:25952256,410518,76021 -(1,905:6630773,32308204:0,0,0 -g1,905:6630773,32308204 -g1,905:6630773,32308204 -g1,905:6303093,32308204 -(1,905:6303093,32308204:0,0,0 -) -g1,905:6630773,32308204 -) -g1,907:7579210,32308204 -g1,907:8843793,32308204 -h1,907:9792230,32308204:0,0,0 -k1,907:32583030,32308204:22790800 -g1,907:32583030,32308204 -) -(1,909:6630773,33629742:25952256,410518,6290 -(1,908:6630773,33629742:0,0,0 -g1,908:6630773,33629742 -g1,908:6630773,33629742 -g1,908:6303093,33629742 -(1,908:6303093,33629742:0,0,0 -) -g1,908:6630773,33629742 -) -g1,909:7263065,33629742 -g1,909:8211503,33629742 -k1,909:8211503,33629742:0 -h1,909:9476086,33629742:0,0,0 -k1,909:32583030,33629742:23106944 -g1,909:32583030,33629742 -) -(1,910:6630773,34295920:25952256,404226,6290 -h1,910:6630773,34295920:0,0,0 -g1,910:7263065,34295920 -g1,910:7895357,34295920 -k1,910:7895357,34295920:0 -h1,910:8527649,34295920:0,0,0 -k1,910:32583029,34295920:24055380 -g1,910:32583029,34295920 -) -(1,914:6630773,35027634:25952256,410518,76021 -(1,912:6630773,35027634:0,0,0 -g1,912:6630773,35027634 -g1,912:6630773,35027634 -g1,912:6303093,35027634 -(1,912:6303093,35027634:0,0,0 -) -g1,912:6630773,35027634 -) -g1,914:7579210,35027634 -g1,914:8843793,35027634 -h1,914:9792230,35027634:0,0,0 -k1,914:32583030,35027634:22790800 -g1,914:32583030,35027634 -) -] -) -g1,915:32583029,35103655 -g1,915:6630773,35103655 -g1,915:6630773,35103655 -g1,915:32583029,35103655 -g1,915:32583029,35103655 -) -h1,915:6630773,35300263:0,0,0 -(1,919:6630773,36456323:25952256,513147,126483 -h1,918:6630773,36456323:983040,0,0 -k1,918:8904908,36456323:147492 -k1,918:11836369,36456323:147492 -(1,918:12043463,36456323:0,414482,115847 -r1,918:12753441,36456323:709978,530329,115847 -k1,918:12043463,36456323:-709978 -) -(1,918:12043463,36456323:709978,414482,115847 -k1,918:12043463,36456323:3277 -h1,918:12750164,36456323:0,411205,112570 -) -k1,918:13108027,36456323:147492 -k1,918:15266164,36456323:147492 -k1,918:16405216,36456323:147492 -k1,918:17906681,36456323:147491 -k1,918:21263471,36456323:147492 -k1,918:22027001,36456323:147492 -k1,918:23193578,36456323:147492 -k1,918:25895663,36456323:147492 -k1,918:26702447,36456323:147492 -k1,918:31019995,36456323:147492 -k1,918:32583029,36456323:0 -) -(1,919:6630773,37297811:25952256,513147,134348 -k1,918:7502759,37297811:185824 -k1,918:10993565,37297811:185825 -k1,918:12871529,37297811:185824 -k1,918:17129105,37297811:185824 -k1,918:18306489,37297811:185824 -k1,918:20964332,37297811:185825 -k1,918:22717777,37297811:185824 -k1,918:23674304,37297811:185824 -k1,918:26961947,37297811:185824 -k1,918:30073299,37297811:185825 -k1,918:31648486,37297811:185824 -k1,918:32583029,37297811:0 -) -(1,919:6630773,38139299:25952256,513147,134348 -k1,918:8052703,38139299:239005 -k1,918:8943135,38139299:239004 -k1,918:12776790,38139299:239005 -k1,918:15129986,38139299:239005 -k1,918:16388075,38139299:239004 -k1,918:18736029,38139299:239005 -k1,918:19634326,38139299:239005 -k1,918:20644034,38139299:239005 -k1,918:24665776,38139299:239004 -k1,918:25374674,38139299:239005 -k1,918:26145176,38139299:239005 -k1,918:29593478,38139299:239004 -k1,918:30483911,38139299:239005 -k1,919:32583029,38139299:0 -) -(1,919:6630773,38980787:25952256,513147,134348 -k1,918:8669961,38980787:260541 -k1,918:10260884,38980787:260542 -k1,918:11172854,38980787:260542 -k1,918:14255375,38980787:260541 -(1,918:14255375,38980787:0,414482,115847 -r1,918:14965353,38980787:709978,530329,115847 -k1,918:14255375,38980787:-709978 -) -(1,918:14255375,38980787:709978,414482,115847 -k1,918:14255375,38980787:3277 -h1,918:14962076,38980787:0,411205,112570 -) -k1,918:15903537,38980787:260542 -k1,918:17721869,38980787:260541 -k1,918:18973970,38980787:260541 -k1,918:21359189,38980787:260542 -k1,918:25683618,38980787:260542 -k1,918:26891810,38980787:260541 -k1,918:30506485,38980787:260542 -k1,918:32051532,38980787:260541 -k1,918:32583029,38980787:0 -) -(1,919:6630773,39822275:25952256,505283,102891 -g1,918:10617328,39822275 -g1,918:11432595,39822275 -g1,918:13333794,39822275 -g1,918:15661632,39822275 -k1,919:32583029,39822275:13832686 -g1,919:32583029,39822275 -) -v1,921:6630773,40803025:0,393216,0 -(1,941:6630773,45510161:25952256,5100352,196608 -g1,941:6630773,45510161 -g1,941:6630773,45510161 -g1,941:6434165,45510161 -(1,941:6434165,45510161:0,5100352,196608 -r1,941:32779637,45510161:26345472,5296960,196608 -k1,941:6434165,45510161:-26345472 -) -(1,941:6434165,45510161:26345472,5100352,196608 -[1,941:6630773,45510161:25952256,4903744,0 -(1,923:6630773,40934621:25952256,328204,0 -(1,922:6630773,40934621:0,0,0 -g1,922:6630773,40934621 -g1,922:6630773,40934621 -g1,922:6303093,40934621 -(1,922:6303093,40934621:0,0,0 -) -g1,922:6630773,40934621 -) -g1,923:7263065,40934621 -g1,923:8211503,40934621 -h1,923:8843794,40934621:0,0,0 -k1,923:32583030,40934621:23739236 -g1,923:32583030,40934621 -) -(1,924:6630773,41600799:25952256,328204,0 -h1,924:6630773,41600799:0,0,0 -h1,924:6946919,41600799:0,0,0 -k1,924:32583029,41600799:25636110 -g1,924:32583029,41600799 -) -(1,928:6630773,42131538:25952256,404226,76021 -(1,926:6630773,42131538:0,0,0 -g1,926:6630773,42131538 -g1,926:6630773,42131538 -g1,926:6303093,42131538 -(1,926:6303093,42131538:0,0,0 -) -g1,926:6630773,42131538 -) -g1,928:7579210,42131538 -g1,928:8843793,42131538 -h1,928:9476084,42131538:0,0,0 -k1,928:32583028,42131538:23106944 -g1,928:32583028,42131538 -) -(1,930:6630773,43252100:25952256,388497,0 -(1,929:6630773,43252100:0,0,0 -g1,929:6630773,43252100 -g1,929:6630773,43252100 -g1,929:6303093,43252100 -(1,929:6303093,43252100:0,0,0 -) -g1,929:6630773,43252100 -) -g1,930:7263065,43252100 -g1,930:7895357,43252100 -h1,930:8211503,43252100:0,0,0 -k1,930:32583029,43252100:24371526 -g1,930:32583029,43252100 -) -(1,934:6630773,43782839:25952256,404226,76021 -(1,932:6630773,43782839:0,0,0 -g1,932:6630773,43782839 -g1,932:6630773,43782839 -g1,932:6303093,43782839 -(1,932:6303093,43782839:0,0,0 -) -g1,932:6630773,43782839 -) -g1,934:7579210,43782839 -g1,934:8843793,43782839 -h1,934:9476084,43782839:0,0,0 -k1,934:32583028,43782839:23106944 -g1,934:32583028,43782839 -) -(1,936:6630773,44903401:25952256,410518,0 -(1,935:6630773,44903401:0,0,0 -g1,935:6630773,44903401 -g1,935:6630773,44903401 -g1,935:6303093,44903401 -(1,935:6303093,44903401:0,0,0 -) -g1,935:6630773,44903401 -) -g1,936:7263065,44903401 -g1,936:7895357,44903401 -h1,936:8843794,44903401:0,0,0 -k1,936:32583030,44903401:23739236 -g1,936:32583030,44903401 -) -(1,940:6630773,45434140:25952256,404226,76021 -(1,938:6630773,45434140:0,0,0 -g1,938:6630773,45434140 -g1,938:6630773,45434140 -g1,938:6303093,45434140 -(1,938:6303093,45434140:0,0,0 -) -g1,938:6630773,45434140 -) -g1,940:7579210,45434140 -g1,940:8843793,45434140 -h1,940:9476084,45434140:0,0,0 -k1,940:32583028,45434140:23106944 -g1,940:32583028,45434140 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,951:37855564,49800853:1179648,16384,0 +) +) +k1,951:3078556,49800853:-34777008 +) +] +g1,951:6630773,4812305 +g1,951:6630773,4812305 +g1,951:9516978,4812305 +g1,951:11710468,4812305 +g1,951:13120147,4812305 +g1,951:16560787,4812305 +k1,951:31786111,4812305:15225324 +) +) +] +[1,951:6630773,45706769:25952256,40108032,0 +(1,951:6630773,45706769:25952256,40108032,0 +(1,951:6630773,45706769:0,0,0 +g1,951:6630773,45706769 +) +[1,951:6630773,45706769:25952256,40108032,0 +(1,860:6630773,6254097:25952256,505283,134348 +(1,859:6630773,6254097:0,414482,115847 +r1,859:9099310,6254097:2468537,530329,115847 +k1,859:6630773,6254097:-2468537 +) +(1,859:6630773,6254097:2468537,414482,115847 +k1,859:6630773,6254097:3277 +h1,859:9096033,6254097:0,411205,112570 +) +k1,859:9273911,6254097:174601 +k1,859:12694510,6254097:174601 +k1,859:14244713,6254097:174602 +k1,859:15438399,6254097:174601 +k1,859:17902828,6254097:174601 +k1,859:19471380,6254097:174601 +k1,859:21714297,6254097:174601 +k1,859:24860300,6254097:174601 +k1,859:26053987,6254097:174602 +(1,859:26053987,6254097:0,414482,115847 +r1,859:28522524,6254097:2468537,530329,115847 +k1,859:26053987,6254097:-2468537 +) +(1,859:26053987,6254097:2468537,414482,115847 +k1,859:26053987,6254097:3277 +h1,859:28519247,6254097:0,411205,112570 +) +k1,859:28870795,6254097:174601 +k1,859:30242083,6254097:174601 +k1,859:32583029,6254097:0 +) +(1,860:6630773,7095585:25952256,505283,134348 +k1,859:7322178,7095585:159908 +k1,859:9176847,7095585:159908 +k1,859:10022916,7095585:159907 +k1,859:10538684,7095585:159908 +k1,859:12972691,7095585:159908 +k1,859:16746254,7095585:159908 +k1,859:18300113,7095585:159908 +h1,859:18300113,7095585:0,0,0 +k1,859:19250385,7095585:159908 +k1,859:22426259,7095585:159907 +k1,859:25973068,7095585:159908 +k1,859:29104378,7095585:159908 +k1,859:32583029,7095585:0 +) +(1,860:6630773,7937073:25952256,513147,134348 +h1,859:6630773,7937073:0,0,0 +k1,859:7319909,7937073:293954 +k1,859:8805308,7937073:293954 +h1,859:8805308,7937073:0,0,0 +k1,859:9668114,7937073:293954 +k1,859:13136632,7937073:293954 +k1,859:14449671,7937073:293954 +k1,859:17646215,7937073:293954 +k1,859:18599462,7937073:293955 +k1,859:19912501,7937073:293954 +k1,859:21944470,7937073:293954 +k1,859:23933840,7937073:293954 +k1,859:25419239,7937073:293954 +k1,859:27069788,7937073:293954 +k1,859:31541007,7937073:293954 +k1,859:32583029,7937073:0 +) +(1,860:6630773,8778561:25952256,513147,134348 +k1,859:9607855,8778561:141995 +h1,859:9607855,8778561:0,0,0 +k1,859:11725759,8778561:141994 +k1,859:14526550,8778561:141995 +k1,859:16044145,8778561:141994 +k1,859:17205225,8778561:141995 +k1,859:19220238,8778561:141994 +k1,859:22336912,8778561:141995 +k1,859:23216187,8778561:141995 +k1,859:25047699,8778561:141994 +h1,859:25047699,8778561:0,0,0 +k1,859:26770422,8778561:141995 +k1,859:29571212,8778561:141994 +k1,859:30845014,8778561:141995 +k1,859:32583029,8778561:0 +) +(1,860:6630773,9620049:25952256,513147,134348 +k1,859:9284092,9620049:174747 +k1,859:10852790,9620049:174747 +k1,859:11938487,9620049:174747 +k1,859:12741068,9620049:174746 +k1,859:15547086,9620049:174747 +h1,859:15547086,9620049:0,0,0 +k1,859:18883290,9620049:174747 +k1,859:21716833,9620049:174747 +k1,859:23358276,9620049:174747 +k1,859:24270303,9620049:174747 +k1,859:25636495,9620049:174747 +k1,859:26519685,9620049:174746 +k1,859:27766601,9620049:174747 +k1,859:30212171,9620049:174747 +k1,859:31485301,9620049:174747 +k1,859:32583029,9620049:0 +) +(1,860:6630773,10461537:25952256,513147,134348 +k1,859:8071963,10461537:169136 +k1,859:9432543,10461537:169135 +h1,859:9432543,10461537:0,0,0 +k1,859:12763135,10461537:169136 +k1,859:15591066,10461537:169135 +k1,859:16892009,10461537:169136 +k1,859:18799159,10461537:169135 +k1,859:21446867,10461537:169136 +k1,859:23009953,10461537:169135 +k1,859:23534949,10461537:169136 +k1,859:26827530,10461537:169135 +k1,859:28720888,10461537:169106 +k1,859:30765663,10461537:169135 +k1,859:31412556,10461537:169136 +k1,859:32583029,10461537:0 +) +(1,860:6630773,11303025:25952256,505283,134348 +k1,859:7861489,11303025:239156 +k1,859:9836038,11303025:239156 +k1,859:12673041,11303025:239156 +k1,859:13678312,11303025:239155 +k1,859:16207296,11303025:239156 +k1,859:17438012,11303025:239156 +k1,859:19438776,11303025:239156 +k1,859:20293970,11303025:239156 +k1,859:21552211,11303025:239156 +k1,859:25872293,11303025:239155 +k1,859:27823905,11303025:239156 +k1,859:29254506,11303025:239156 +k1,859:30512747,11303025:239156 +k1,859:32583029,11303025:0 +) +(1,860:6630773,12144513:25952256,513147,134348 +g1,859:7989989,12144513 +g1,859:8848510,12144513 +g1,859:10066824,12144513 +g1,859:12009966,12144513 +g1,859:13313477,12144513 +g1,859:14260472,12144513 +g1,859:15972927,12144513 +g1,859:16823584,12144513 +g1,859:18288969,12144513 +g1,859:18844058,12144513 +g1,859:20738048,12144513 +k1,860:32583029,12144513:9711784 +g1,860:32583029,12144513 +) +v1,862:6630773,13125263:0,393216,0 +(1,876:6630773,16866338:25952256,4134291,196608 +g1,876:6630773,16866338 +g1,876:6630773,16866338 +g1,876:6434165,16866338 +(1,876:6434165,16866338:0,4134291,196608 +r1,876:32779637,16866338:26345472,4330899,196608 +k1,876:6434165,16866338:-26345472 +) +(1,876:6434165,16866338:26345472,4134291,196608 +[1,876:6630773,16866338:25952256,3937683,0 +(1,864:6630773,13339173:25952256,410518,101187 +(1,863:6630773,13339173:0,0,0 +g1,863:6630773,13339173 +g1,863:6630773,13339173 +g1,863:6303093,13339173 +(1,863:6303093,13339173:0,0,0 +) +g1,863:6630773,13339173 +) +k1,864:6630773,13339173:0 +h1,864:12005250,13339173:0,0,0 +k1,864:32583030,13339173:20577780 +g1,864:32583030,13339173 +) +(1,868:6630773,14070887:25952256,404226,76021 +(1,866:6630773,14070887:0,0,0 +g1,866:6630773,14070887 +g1,866:6630773,14070887 +g1,866:6303093,14070887 +(1,866:6303093,14070887:0,0,0 +) +g1,866:6630773,14070887 +) +g1,868:7579210,14070887 +g1,868:8843793,14070887 +h1,868:9792230,14070887:0,0,0 +k1,868:32583030,14070887:22790800 +g1,868:32583030,14070887 +) +(1,870:6630773,15392425:25952256,404226,76021 +(1,869:6630773,15392425:0,0,0 +g1,869:6630773,15392425 +g1,869:6630773,15392425 +g1,869:6303093,15392425 +(1,869:6303093,15392425:0,0,0 +) +g1,869:6630773,15392425 +) +k1,870:6630773,15392425:0 +h1,870:8211501,15392425:0,0,0 +k1,870:32583029,15392425:24371528 +g1,870:32583029,15392425 +) +(1,871:6630773,16058603:25952256,410518,101187 +h1,871:6630773,16058603:0,0,0 +k1,871:6630773,16058603:0 +h1,871:12005250,16058603:0,0,0 +k1,871:32583030,16058603:20577780 +g1,871:32583030,16058603 +) +(1,875:6630773,16790317:25952256,404226,76021 +(1,873:6630773,16790317:0,0,0 +g1,873:6630773,16790317 +g1,873:6630773,16790317 +g1,873:6303093,16790317 +(1,873:6303093,16790317:0,0,0 +) +g1,873:6630773,16790317 +) +g1,875:7579210,16790317 +h1,875:11372958,16790317:0,0,0 +k1,875:32583030,16790317:21210072 +g1,875:32583030,16790317 +) +] +) +g1,876:32583029,16866338 +g1,876:6630773,16866338 +g1,876:6630773,16866338 +g1,876:32583029,16866338 +g1,876:32583029,16866338 +) +h1,876:6630773,17062946:0,0,0 +(1,880:6630773,18219006:25952256,513147,134348 +h1,879:6630773,18219006:983040,0,0 +k1,879:9595125,18219006:148925 +k1,879:10735610,18219006:148925 +k1,879:12576675,18219006:148925 +k1,879:14919745,18219006:148925 +k1,879:17079315,18219006:148925 +k1,879:20012209,18219006:148925 +k1,879:21108785,18219006:148925 +k1,879:24247462,18219006:148925 +(1,879:24247462,18219006:0,414482,115847 +r1,879:24957440,18219006:709978,530329,115847 +k1,879:24247462,18219006:-709978 +) +(1,879:24247462,18219006:709978,414482,115847 +k1,879:24247462,18219006:3277 +h1,879:24954163,18219006:0,411205,112570 +) +k1,879:25106365,18219006:148925 +k1,879:27983554,18219006:148925 +k1,879:29498905,18219006:148925 +k1,879:32583029,18219006:0 +) +(1,880:6630773,19060494:25952256,513147,134348 +k1,879:7317741,19060494:155471 +k1,879:8986438,19060494:155471 +k1,879:10089560,19060494:155471 +k1,879:12717049,19060494:155471 +k1,879:15056835,19060494:155471 +k1,879:19135946,19060494:155471 +k1,879:20395698,19060494:155470 +k1,879:21836985,19060494:155471 +k1,879:23527965,19060494:155471 +k1,879:24702521,19060494:155471 +k1,879:27833327,19060494:155471 +k1,879:29999443,19060494:155471 +(1,879:29999443,19060494:0,414482,115847 +r1,879:31061132,19060494:1061689,530329,115847 +k1,879:29999443,19060494:-1061689 +) +(1,879:29999443,19060494:1061689,414482,115847 +k1,879:29999443,19060494:3277 +h1,879:31057855,19060494:0,411205,112570 +) +k1,879:31216603,19060494:155471 +k1,879:32583029,19060494:0 +) +(1,880:6630773,19901982:25952256,513147,134348 +k1,879:7134889,19901982:148256 +k1,879:10242751,19901982:148256 +(1,879:10242751,19901982:0,459977,115847 +r1,879:11304440,19901982:1061689,575824,115847 +k1,879:10242751,19901982:-1061689 +) +(1,879:10242751,19901982:1061689,459977,115847 +k1,879:10242751,19901982:3277 +h1,879:11301163,19901982:0,411205,112570 +) +k1,879:11452696,19901982:148256 +k1,879:12792397,19901982:148256 +(1,879:12792397,19901982:0,459977,115847 +r1,879:14205798,19901982:1413401,575824,115847 +k1,879:12792397,19901982:-1413401 +) +(1,879:12792397,19901982:1413401,459977,115847 +k1,879:12792397,19901982:3277 +h1,879:14202521,19901982:0,411205,112570 +) +k1,879:14354054,19901982:148256 +k1,879:15449961,19901982:148256 +$1,879:15449961,19901982 +$1,879:16124982,19901982 +k1,879:16273238,19901982:148256 +k1,879:17612939,19901982:148256 +$1,879:17612939,19901982 +$1,879:18856157,19901982 +k1,879:19178083,19901982:148256 +k1,879:20144228,19901982:148256 +k1,879:21462957,19901982:148256 +k1,879:22743675,19901982:148256 +k1,879:23916914,19901982:148256 +k1,879:26107272,19901982:148256 +k1,879:30057271,19901982:148256 +k1,879:32583029,19901982:0 +) +(1,880:6630773,20743470:25952256,505283,134348 +k1,879:8502884,20743470:175384 +k1,879:10688913,20743470:175384 +k1,879:11679565,20743470:175384 +k1,879:12942847,20743470:175384 +k1,879:15248806,20743470:175384 +k1,879:17361434,20743470:175384 +k1,879:18219702,20743470:175383 +k1,879:21469380,20743470:175384 +k1,879:22330926,20743470:175384 +k1,879:23886498,20743470:175384 +k1,879:25053442,20743470:175384 +k1,879:29632190,20743470:175384 +k1,879:31521340,20743470:175384 +(1,879:31521340,20743470:0,459977,115847 +r1,879:32583029,20743470:1061689,575824,115847 +k1,879:31521340,20743470:-1061689 +) +(1,879:31521340,20743470:1061689,459977,115847 +k1,879:31521340,20743470:3277 +h1,879:32579752,20743470:0,411205,112570 +) +k1,879:32583029,20743470:0 +) +(1,880:6630773,21584958:25952256,513147,126483 +g1,879:8021447,21584958 +(1,879:8021447,21584958:0,459977,115847 +r1,879:9434848,21584958:1413401,575824,115847 +k1,879:8021447,21584958:-1413401 +) +(1,879:8021447,21584958:1413401,459977,115847 +k1,879:8021447,21584958:3277 +h1,879:9431571,21584958:0,411205,112570 +) +g1,879:9634077,21584958 +g1,879:10824866,21584958 +g1,879:12309911,21584958 +g1,879:14049236,21584958 +g1,879:17429583,21584958 +g1,879:19639457,21584958 +g1,879:20786337,21584958 +g1,879:22694090,21584958 +g1,879:24084764,21584958 +k1,880:32583029,21584958:5236538 +g1,880:32583029,21584958 +) +v1,882:6630773,22565708:0,393216,0 +(1,921:6630773,35103655:25952256,12931163,196608 +g1,921:6630773,35103655 +g1,921:6630773,35103655 +g1,921:6434165,35103655 +(1,921:6434165,35103655:0,12931163,196608 +r1,921:32779637,35103655:26345472,13127771,196608 +k1,921:6434165,35103655:-26345472 +) +(1,921:6434165,35103655:26345472,12931163,196608 +[1,921:6630773,35103655:25952256,12734555,0 +(1,884:6630773,22697304:25952256,328204,4718 +(1,883:6630773,22697304:0,0,0 +g1,883:6630773,22697304 +g1,883:6630773,22697304 +g1,883:6303093,22697304 +(1,883:6303093,22697304:0,0,0 +) +g1,883:6630773,22697304 +) +g1,884:7263065,22697304 +g1,884:8211503,22697304 +h1,884:8843794,22697304:0,0,0 +k1,884:32583030,22697304:23739236 +g1,884:32583030,22697304 +) +(1,885:6630773,23363482:25952256,284164,4718 +h1,885:6630773,23363482:0,0,0 +h1,885:6946919,23363482:0,0,0 +k1,885:32583029,23363482:25636110 +g1,885:32583029,23363482 +) +(1,889:6630773,24095196:25952256,404226,76021 +(1,887:6630773,24095196:0,0,0 +g1,887:6630773,24095196 +g1,887:6630773,24095196 +g1,887:6303093,24095196 +(1,887:6303093,24095196:0,0,0 +) +g1,887:6630773,24095196 +) +g1,889:7579210,24095196 +g1,889:8843793,24095196 +h1,889:9476084,24095196:0,0,0 +k1,889:32583028,24095196:23106944 +g1,889:32583028,24095196 +) +(1,891:6630773,25416734:25952256,404226,76021 +(1,890:6630773,25416734:0,0,0 +g1,890:6630773,25416734 +g1,890:6630773,25416734 +g1,890:6303093,25416734 +(1,890:6303093,25416734:0,0,0 +) +g1,890:6630773,25416734 +) +k1,891:6630773,25416734:0 +g1,891:7579211,25416734 +g1,891:8211503,25416734 +h1,891:8527649,25416734:0,0,0 +k1,891:32583029,25416734:24055380 +g1,891:32583029,25416734 +) +(1,895:6630773,26148448:25952256,410518,76021 +(1,893:6630773,26148448:0,0,0 +g1,893:6630773,26148448 +g1,893:6630773,26148448 +g1,893:6303093,26148448 +(1,893:6303093,26148448:0,0,0 +) +g1,893:6630773,26148448 +) +g1,895:7579210,26148448 +g1,895:8843793,26148448 +k1,895:8843793,26148448:0 +h1,895:10108376,26148448:0,0,0 +k1,895:32583028,26148448:22474652 +g1,895:32583028,26148448 +) +(1,897:6630773,27469986:25952256,404226,76021 +(1,896:6630773,27469986:0,0,0 +g1,896:6630773,27469986 +g1,896:6630773,27469986 +g1,896:6303093,27469986 +(1,896:6303093,27469986:0,0,0 +) +g1,896:6630773,27469986 +) +g1,897:7263065,27469986 +g1,897:7895357,27469986 +h1,897:8211503,27469986:0,0,0 +k1,897:32583029,27469986:24371526 +g1,897:32583029,27469986 +) +(1,901:6630773,28201700:25952256,410518,76021 +(1,899:6630773,28201700:0,0,0 +g1,899:6630773,28201700 +g1,899:6630773,28201700 +g1,899:6303093,28201700 +(1,899:6303093,28201700:0,0,0 +) +g1,899:6630773,28201700 +) +g1,901:7579210,28201700 +g1,901:8843793,28201700 +h1,901:9792230,28201700:0,0,0 +k1,901:32583030,28201700:22790800 +g1,901:32583030,28201700 +) +(1,903:6630773,29523238:25952256,410518,76021 +(1,902:6630773,29523238:0,0,0 +g1,902:6630773,29523238 +g1,902:6630773,29523238 +g1,902:6303093,29523238 +(1,902:6303093,29523238:0,0,0 +) +g1,902:6630773,29523238 +) +g1,903:7895356,29523238 +g1,903:8527648,29523238 +h1,903:9476085,29523238:0,0,0 +k1,903:32583029,29523238:23106944 +g1,903:32583029,29523238 +) +(1,907:6630773,30254952:25952256,404226,76021 +(1,905:6630773,30254952:0,0,0 +g1,905:6630773,30254952 +g1,905:6630773,30254952 +g1,905:6303093,30254952 +(1,905:6303093,30254952:0,0,0 +) +g1,905:6630773,30254952 +) +g1,907:7579210,30254952 +g1,907:8843793,30254952 +h1,907:9792230,30254952:0,0,0 +k1,907:32583030,30254952:22790800 +g1,907:32583030,30254952 +) +(1,909:6630773,31576490:25952256,410518,0 +(1,908:6630773,31576490:0,0,0 +g1,908:6630773,31576490 +g1,908:6630773,31576490 +g1,908:6303093,31576490 +(1,908:6303093,31576490:0,0,0 +) +g1,908:6630773,31576490 +) +g1,909:7895356,31576490 +g1,909:8527648,31576490 +h1,909:8843794,31576490:0,0,0 +k1,909:32583030,31576490:23739236 +g1,909:32583030,31576490 +) +(1,913:6630773,32308204:25952256,410518,76021 +(1,911:6630773,32308204:0,0,0 +g1,911:6630773,32308204 +g1,911:6630773,32308204 +g1,911:6303093,32308204 +(1,911:6303093,32308204:0,0,0 +) +g1,911:6630773,32308204 +) +g1,913:7579210,32308204 +g1,913:8843793,32308204 +h1,913:9792230,32308204:0,0,0 +k1,913:32583030,32308204:22790800 +g1,913:32583030,32308204 +) +(1,915:6630773,33629742:25952256,410518,6290 +(1,914:6630773,33629742:0,0,0 +g1,914:6630773,33629742 +g1,914:6630773,33629742 +g1,914:6303093,33629742 +(1,914:6303093,33629742:0,0,0 +) +g1,914:6630773,33629742 +) +g1,915:7263065,33629742 +g1,915:8211503,33629742 +k1,915:8211503,33629742:0 +h1,915:9476086,33629742:0,0,0 +k1,915:32583030,33629742:23106944 +g1,915:32583030,33629742 +) +(1,916:6630773,34295920:25952256,404226,6290 +h1,916:6630773,34295920:0,0,0 +g1,916:7263065,34295920 +g1,916:7895357,34295920 +k1,916:7895357,34295920:0 +h1,916:8527649,34295920:0,0,0 +k1,916:32583029,34295920:24055380 +g1,916:32583029,34295920 +) +(1,920:6630773,35027634:25952256,410518,76021 +(1,918:6630773,35027634:0,0,0 +g1,918:6630773,35027634 +g1,918:6630773,35027634 +g1,918:6303093,35027634 +(1,918:6303093,35027634:0,0,0 +) +g1,918:6630773,35027634 +) +g1,920:7579210,35027634 +g1,920:8843793,35027634 +h1,920:9792230,35027634:0,0,0 +k1,920:32583030,35027634:22790800 +g1,920:32583030,35027634 +) +] +) +g1,921:32583029,35103655 +g1,921:6630773,35103655 +g1,921:6630773,35103655 +g1,921:32583029,35103655 +g1,921:32583029,35103655 +) +h1,921:6630773,35300263:0,0,0 +(1,925:6630773,36456323:25952256,513147,126483 +h1,924:6630773,36456323:983040,0,0 +k1,924:8904908,36456323:147492 +k1,924:11836369,36456323:147492 +(1,924:12043463,36456323:0,414482,115847 +r1,924:12753441,36456323:709978,530329,115847 +k1,924:12043463,36456323:-709978 +) +(1,924:12043463,36456323:709978,414482,115847 +k1,924:12043463,36456323:3277 +h1,924:12750164,36456323:0,411205,112570 +) +k1,924:13108027,36456323:147492 +k1,924:15266164,36456323:147492 +k1,924:16405216,36456323:147492 +k1,924:17906681,36456323:147491 +k1,924:21263471,36456323:147492 +k1,924:22027001,36456323:147492 +k1,924:23193578,36456323:147492 +k1,924:25895663,36456323:147492 +k1,924:26702447,36456323:147492 +k1,924:31019995,36456323:147492 +k1,924:32583029,36456323:0 +) +(1,925:6630773,37297811:25952256,513147,134348 +k1,924:7502759,37297811:185824 +k1,924:10993565,37297811:185825 +k1,924:12871529,37297811:185824 +k1,924:17129105,37297811:185824 +k1,924:18306489,37297811:185824 +k1,924:20964332,37297811:185825 +k1,924:22717777,37297811:185824 +k1,924:23674304,37297811:185824 +k1,924:26961947,37297811:185824 +k1,924:30073299,37297811:185825 +k1,924:31648486,37297811:185824 +k1,924:32583029,37297811:0 +) +(1,925:6630773,38139299:25952256,513147,134348 +k1,924:8052703,38139299:239005 +k1,924:8943135,38139299:239004 +k1,924:12776790,38139299:239005 +k1,924:15129986,38139299:239005 +k1,924:16388075,38139299:239004 +k1,924:18736029,38139299:239005 +k1,924:19634326,38139299:239005 +k1,924:20644034,38139299:239005 +k1,924:24665776,38139299:239004 +k1,924:25374674,38139299:239005 +k1,924:26145176,38139299:239005 +k1,924:29593478,38139299:239004 +k1,924:30483911,38139299:239005 +k1,925:32583029,38139299:0 +) +(1,925:6630773,38980787:25952256,513147,134348 +k1,924:8669961,38980787:260541 +k1,924:10260884,38980787:260542 +k1,924:11172854,38980787:260542 +k1,924:14255375,38980787:260541 +(1,924:14255375,38980787:0,414482,115847 +r1,924:14965353,38980787:709978,530329,115847 +k1,924:14255375,38980787:-709978 +) +(1,924:14255375,38980787:709978,414482,115847 +k1,924:14255375,38980787:3277 +h1,924:14962076,38980787:0,411205,112570 +) +k1,924:15903537,38980787:260542 +k1,924:17721869,38980787:260541 +k1,924:18973970,38980787:260541 +k1,924:21359189,38980787:260542 +k1,924:25683618,38980787:260542 +k1,924:26891810,38980787:260541 +k1,924:30506485,38980787:260542 +k1,924:32051532,38980787:260541 +k1,924:32583029,38980787:0 +) +(1,925:6630773,39822275:25952256,505283,102891 +g1,924:10617328,39822275 +g1,924:11432595,39822275 +g1,924:13333794,39822275 +g1,924:15661632,39822275 +k1,925:32583029,39822275:13832686 +g1,925:32583029,39822275 +) +v1,927:6630773,40803025:0,393216,0 +(1,947:6630773,45510161:25952256,5100352,196608 +g1,947:6630773,45510161 +g1,947:6630773,45510161 +g1,947:6434165,45510161 +(1,947:6434165,45510161:0,5100352,196608 +r1,947:32779637,45510161:26345472,5296960,196608 +k1,947:6434165,45510161:-26345472 +) +(1,947:6434165,45510161:26345472,5100352,196608 +[1,947:6630773,45510161:25952256,4903744,0 +(1,929:6630773,40934621:25952256,328204,0 +(1,928:6630773,40934621:0,0,0 +g1,928:6630773,40934621 +g1,928:6630773,40934621 +g1,928:6303093,40934621 +(1,928:6303093,40934621:0,0,0 +) +g1,928:6630773,40934621 +) +g1,929:7263065,40934621 +g1,929:8211503,40934621 +h1,929:8843794,40934621:0,0,0 +k1,929:32583030,40934621:23739236 +g1,929:32583030,40934621 +) +(1,930:6630773,41600799:25952256,328204,0 +h1,930:6630773,41600799:0,0,0 +h1,930:6946919,41600799:0,0,0 +k1,930:32583029,41600799:25636110 +g1,930:32583029,41600799 +) +(1,934:6630773,42131538:25952256,404226,76021 +(1,932:6630773,42131538:0,0,0 +g1,932:6630773,42131538 +g1,932:6630773,42131538 +g1,932:6303093,42131538 +(1,932:6303093,42131538:0,0,0 +) +g1,932:6630773,42131538 +) +g1,934:7579210,42131538 +g1,934:8843793,42131538 +h1,934:9476084,42131538:0,0,0 +k1,934:32583028,42131538:23106944 +g1,934:32583028,42131538 +) +(1,936:6630773,43252100:25952256,388497,0 +(1,935:6630773,43252100:0,0,0 +g1,935:6630773,43252100 +g1,935:6630773,43252100 +g1,935:6303093,43252100 +(1,935:6303093,43252100:0,0,0 +) +g1,935:6630773,43252100 +) +g1,936:7263065,43252100 +g1,936:7895357,43252100 +h1,936:8211503,43252100:0,0,0 +k1,936:32583029,43252100:24371526 +g1,936:32583029,43252100 +) +(1,940:6630773,43782839:25952256,404226,76021 +(1,938:6630773,43782839:0,0,0 +g1,938:6630773,43782839 +g1,938:6630773,43782839 +g1,938:6303093,43782839 +(1,938:6303093,43782839:0,0,0 +) +g1,938:6630773,43782839 +) +g1,940:7579210,43782839 +g1,940:8843793,43782839 +h1,940:9476084,43782839:0,0,0 +k1,940:32583028,43782839:23106944 +g1,940:32583028,43782839 +) +(1,942:6630773,44903401:25952256,410518,0 +(1,941:6630773,44903401:0,0,0 +g1,941:6630773,44903401 +g1,941:6630773,44903401 +g1,941:6303093,44903401 +(1,941:6303093,44903401:0,0,0 +) +g1,941:6630773,44903401 +) +g1,942:7263065,44903401 +g1,942:7895357,44903401 +h1,942:8843794,44903401:0,0,0 +k1,942:32583030,44903401:23739236 +g1,942:32583030,44903401 +) +(1,946:6630773,45434140:25952256,404226,76021 +(1,944:6630773,45434140:0,0,0 +g1,944:6630773,45434140 +g1,944:6630773,45434140 +g1,944:6303093,45434140 +(1,944:6303093,45434140:0,0,0 +) +g1,944:6630773,45434140 +) +g1,946:7579210,45434140 +g1,946:8843793,45434140 +h1,946:9476084,45434140:0,0,0 +k1,946:32583028,45434140:23106944 +g1,946:32583028,45434140 ) ] ) -g1,941:32583029,45510161 -g1,941:6630773,45510161 -g1,941:6630773,45510161 -g1,941:32583029,45510161 -g1,941:32583029,45510161 +g1,947:32583029,45510161 +g1,947:6630773,45510161 +g1,947:6630773,45510161 +g1,947:32583029,45510161 +g1,947:32583029,45510161 ) -h1,941:6630773,45706769:0,0,0 +h1,947:6630773,45706769:0,0,0 ] -(1,945:32583029,45706769:0,0,0 -g1,945:32583029,45706769 +(1,951:32583029,45706769:0,0,0 +g1,951:32583029,45706769 ) ) ] -(1,945:6630773,47279633:25952256,0,0 -h1,945:6630773,47279633:25952256,0,0 +(1,951:6630773,47279633:25952256,0,0 +h1,951:6630773,47279633:25952256,0,0 ) ] -h1,945:4262630,4025873:0,0,0 +h1,951:4262630,4025873:0,0,0 ] !24107 }36 -Input:205:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:206:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:207:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:208:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:209:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:210:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:211:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:212:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:213:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:214:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:215:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:216:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:217:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:218:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:219:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:220:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:221:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1456 +Input:201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1558 {37 -[1,1027:4262630,47279633:28320399,43253760,0 -(1,1027:4262630,4025873:0,0,0 -[1,1027:-473657,4025873:25952256,0,0 -(1,1027:-473657,-710414:25952256,0,0 -h1,1027:-473657,-710414:0,0,0 -(1,1027:-473657,-710414:0,0,0 -(1,1027:-473657,-710414:0,0,0 -g1,1027:-473657,-710414 -(1,1027:-473657,-710414:65781,0,65781 -g1,1027:-407876,-710414 -[1,1027:-407876,-644633:0,0,0 +[1,1033:4262630,47279633:28320399,43253760,0 +(1,1033:4262630,4025873:0,0,0 +[1,1033:-473657,4025873:25952256,0,0 +(1,1033:-473657,-710414:25952256,0,0 +h1,1033:-473657,-710414:0,0,0 +(1,1033:-473657,-710414:0,0,0 +(1,1033:-473657,-710414:0,0,0 +g1,1033:-473657,-710414 +(1,1033:-473657,-710414:65781,0,65781 +g1,1033:-407876,-710414 +[1,1033:-407876,-644633:0,0,0 ] ) -k1,1027:-473657,-710414:-65781 +k1,1033:-473657,-710414:-65781 ) ) -k1,1027:25478599,-710414:25952256 -g1,1027:25478599,-710414 +k1,1033:25478599,-710414:25952256 +g1,1033:25478599,-710414 ) ] ) -[1,1027:6630773,47279633:25952256,43253760,0 -[1,1027:6630773,4812305:25952256,786432,0 -(1,1027:6630773,4812305:25952256,505283,134348 -(1,1027:6630773,4812305:25952256,505283,134348 -g1,1027:3078558,4812305 -[1,1027:3078558,4812305:0,0,0 -(1,1027:3078558,2439708:0,1703936,0 -k1,1027:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1027:2537886,2439708:1179648,16384,0 +[1,1033:6630773,47279633:25952256,43253760,0 +[1,1033:6630773,4812305:25952256,786432,0 +(1,1033:6630773,4812305:25952256,505283,134348 +(1,1033:6630773,4812305:25952256,505283,134348 +g1,1033:3078558,4812305 +[1,1033:3078558,4812305:0,0,0 +(1,1033:3078558,2439708:0,1703936,0 +k1,1033:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1033:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1027:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1033:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1027:3078558,4812305:0,0,0 -(1,1027:3078558,2439708:0,1703936,0 -g1,1027:29030814,2439708 -g1,1027:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1027:36151628,1915420:16384,1179648,0 +[1,1033:3078558,4812305:0,0,0 +(1,1033:3078558,2439708:0,1703936,0 +g1,1033:29030814,2439708 +g1,1033:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1033:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1027:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1033:37855564,2439708:1179648,16384,0 ) ) -k1,1027:3078556,2439708:-34777008 +k1,1033:3078556,2439708:-34777008 ) ] -[1,1027:3078558,4812305:0,0,0 -(1,1027:3078558,49800853:0,16384,2228224 -k1,1027:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1027:2537886,49800853:1179648,16384,0 +[1,1033:3078558,4812305:0,0,0 +(1,1033:3078558,49800853:0,16384,2228224 +k1,1033:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1033:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1027:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1033:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1027:3078558,4812305:0,0,0 -(1,1027:3078558,49800853:0,16384,2228224 -g1,1027:29030814,49800853 -g1,1027:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1027:36151628,51504789:16384,1179648,0 +[1,1033:3078558,4812305:0,0,0 +(1,1033:3078558,49800853:0,16384,2228224 +g1,1033:29030814,49800853 +g1,1033:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1033:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1027:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1033:37855564,49800853:1179648,16384,0 ) ) -k1,1027:3078556,49800853:-34777008 -) -] -g1,1027:6630773,4812305 -k1,1027:19562994,4812305:12135303 -g1,1027:20949735,4812305 -g1,1027:21598541,4812305 -g1,1027:24912696,4812305 -g1,1027:27600327,4812305 -g1,1027:29010006,4812305 -) -) -] -[1,1027:6630773,45706769:25952256,40108032,0 -(1,1027:6630773,45706769:25952256,40108032,0 -(1,1027:6630773,45706769:0,0,0 -g1,1027:6630773,45706769 -) -[1,1027:6630773,45706769:25952256,40108032,0 -v1,945:6630773,6254097:0,393216,0 -(1,959:6630773,17225139:25952256,11364258,616038 -g1,959:6630773,17225139 -(1,959:6630773,17225139:25952256,11364258,616038 -(1,959:6630773,17841177:25952256,11980296,0 -[1,959:6630773,17841177:25952256,11980296,0 -(1,959:6630773,17814963:25952256,11927868,0 -r1,959:6656987,17814963:26214,11927868,0 -[1,959:6656987,17814963:25899828,11927868,0 -(1,959:6656987,17225139:25899828,10748220,0 -[1,959:7246811,17225139:24720180,10748220,0 -(1,946:7246811,7564293:24720180,1087374,134348 -k1,945:8691501,7564293:234987 -k1,945:10784065,7564293:241172 -k1,945:11684529,7564293:241172 -k1,945:13066026,7564293:241171 -k1,945:15766109,7564293:241172 -k1,945:16684268,7564293:241172 -k1,945:19011450,7564293:241171 -k1,945:20884468,7564293:241172 -k1,945:22345920,7564293:241172 -k1,945:24389331,7564293:241171 -(1,945:24389331,7564293:0,414482,115847 -r1,959:25099309,7564293:709978,530329,115847 -k1,945:24389331,7564293:-709978 -) -(1,945:24389331,7564293:709978,414482,115847 -k1,945:24389331,7564293:3277 -h1,945:25096032,7564293:0,411205,112570 -) -k1,945:26008662,7564293:234988 -k1,945:27903021,7564293:234987 -k1,945:29518853,7564293:234988 -k1,945:30924313,7564293:234987 -k1,946:31966991,7564293:0 -) -(1,946:7246811,8405781:24720180,513147,134348 -k1,945:10348236,8405781:266338 -k1,945:11633660,8405781:266339 -k1,945:13408637,8405781:266338 -k1,945:15874363,8405781:266338 -k1,945:17159787,8405781:266339 -k1,945:20188468,8405781:266338 -k1,945:23214527,8405781:266338 -k1,945:24140157,8405781:266338 -k1,945:27432293,8405781:266339 -k1,945:28890076,8405781:266338 -k1,945:31966991,8405781:0 -) -(1,946:7246811,9247269:24720180,505283,126483 -k1,945:8888594,9247269:247832 -k1,945:11460988,9247269:247832 -k1,945:12360247,9247269:247831 -(1,945:12360247,9247269:0,414482,115847 -r1,959:13070225,9247269:709978,530329,115847 -k1,945:12360247,9247269:-709978 -) -(1,945:12360247,9247269:709978,414482,115847 -k1,945:12360247,9247269:3277 -h1,945:13066948,9247269:0,411205,112570 -) -k1,945:13318057,9247269:247832 -k1,945:14757334,9247269:247832 -(1,945:14757334,9247269:0,452978,115847 -r1,959:17929294,9247269:3171960,568825,115847 -k1,945:14757334,9247269:-3171960 -) -(1,945:14757334,9247269:3171960,452978,115847 -k1,945:14757334,9247269:3277 -h1,945:17926017,9247269:0,411205,112570 -) -k1,945:18177126,9247269:247832 -k1,945:19107842,9247269:247831 -k1,945:20144072,9247269:247832 -k1,945:23696885,9247269:247832 -(1,945:23696885,9247269:0,452978,115847 -r1,959:27220557,9247269:3523672,568825,115847 -k1,945:23696885,9247269:-3523672 -) -(1,945:23696885,9247269:3523672,452978,115847 -k1,945:23696885,9247269:3277 -h1,945:27217280,9247269:0,411205,112570 -) -k1,945:27642059,9247269:247832 -k1,945:29523703,9247269:247831 -k1,945:30586803,9247269:247832 -k1,945:31966991,9247269:0 -) -(1,946:7246811,10088757:24720180,513147,134348 -g1,945:10814591,10088757 -g1,945:12395974,10088757 -(1,945:12395974,10088757:0,414482,115847 -r1,959:13105952,10088757:709978,530329,115847 -k1,945:12395974,10088757:-709978 -) -(1,945:12395974,10088757:709978,414482,115847 -k1,945:12395974,10088757:3277 -h1,945:13102675,10088757:0,411205,112570 -) -g1,945:13305181,10088757 -g1,945:13834711,10088757 -g1,945:15025500,10088757 -g1,945:16291000,10088757 -g1,945:19105116,10088757 -g1,945:20993863,10088757 -g1,945:23501270,10088757 -g1,945:24359791,10088757 -g1,945:26572286,10088757 -g1,945:28191680,10088757 -k1,946:31966991,10088757:2456727 -g1,946:31966991,10088757 -) -v1,948:7246811,11279223:0,393216,0 -(1,953:7246811,12162455:24720180,1276448,196608 -g1,953:7246811,12162455 -g1,953:7246811,12162455 -g1,953:7050203,12162455 -(1,953:7050203,12162455:0,1276448,196608 -r1,959:32163599,12162455:25113396,1473056,196608 -k1,953:7050203,12162455:-25113396 -) -(1,953:7050203,12162455:25113396,1276448,196608 -[1,953:7246811,12162455:24720180,1079840,0 -(1,950:7246811,11486841:24720180,404226,76021 -(1,949:7246811,11486841:0,0,0 -g1,949:7246811,11486841 -g1,949:7246811,11486841 -g1,949:6919131,11486841 -(1,949:6919131,11486841:0,0,0 -) -g1,949:7246811,11486841 -) -g1,950:8511394,11486841 -g1,950:9143686,11486841 -k1,950:9143686,11486841:0 -h1,950:11988997,11486841:0,0,0 -k1,950:31966991,11486841:19977994 -g1,950:31966991,11486841 -) -(1,951:7246811,12153019:24720180,388497,9436 -h1,951:7246811,12153019:0,0,0 -g1,951:8511394,12153019 -g1,951:9143686,12153019 -h1,951:9775977,12153019:0,0,0 -k1,951:31966991,12153019:22191014 -g1,951:31966991,12153019 -) -] -) -g1,953:31966991,12162455 -g1,953:7246811,12162455 -g1,953:7246811,12162455 -g1,953:31966991,12162455 -g1,953:31966991,12162455 -) -h1,953:7246811,12359063:0,0,0 -(1,958:7246811,13724839:24720180,505283,134348 -h1,956:7246811,13724839:983040,0,0 -k1,956:10267723,13724839:176650 -k1,957:12915081,13724839:176651 -(1,957:12915081,13724839:0,414482,115847 -r1,959:13625059,13724839:709978,530329,115847 -k1,957:12915081,13724839:-709978 -) -(1,957:12915081,13724839:709978,414482,115847 -k1,957:12915081,13724839:3277 -h1,957:13621782,13724839:0,411205,112570 -) -k1,957:13801709,13724839:176650 -k1,957:14509857,13724839:176651 -k1,957:16199733,13724839:176650 -k1,957:17027812,13724839:176651 -k1,957:19086001,13724839:176650 -k1,957:19618511,13724839:176650 -k1,957:21475505,13724839:176651 -k1,957:22936661,13724839:176650 -k1,957:24620640,13724839:176651 -k1,957:26284302,13724839:176650 -k1,957:27143838,13724839:176651 -k1,957:28827816,13724839:176650 -k1,957:31966991,13724839:0 -) -(1,958:7246811,14566327:24720180,513147,134348 -k1,957:8581238,14566327:262258 -k1,957:9374994,14566327:262259 -k1,957:13250907,14566327:262258 -k1,957:16042855,14566327:262258 -k1,957:16964406,14566327:262259 -k1,957:18918804,14566327:262258 -k1,957:22018771,14566327:262258 -k1,957:22768555,14566327:262196 -k1,957:25008690,14566327:262258 -k1,957:25930240,14566327:262258 -k1,957:28205765,14566327:262259 -k1,957:30061859,14566327:262258 -k1,958:31966991,14566327:0 -) -(1,958:7246811,15407815:24720180,513147,126483 -k1,957:9178515,15407815:252016 -k1,957:10239900,15407815:252015 -k1,957:12676231,15407815:252016 -k1,957:14000416,15407815:252016 -k1,957:16262420,15407815:252015 -k1,957:17533521,15407815:252016 -k1,957:20064223,15407815:252015 -k1,957:24514475,15407815:252016 -k1,957:25394326,15407815:252016 -k1,957:28940836,15407815:252015 -k1,957:29658813,15407815:252016 -k1,957:31966991,15407815:0 -) -(1,958:7246811,16249303:24720180,513147,134348 -k1,957:8460491,16249303:222120 -k1,957:11521631,16249303:222120 -k1,957:12395180,16249303:222121 -k1,957:14092515,16249303:222120 -k1,957:14670495,16249303:222120 -k1,957:17090693,16249303:222120 -k1,957:19499750,16249303:222121 -k1,957:20404755,16249303:222120 -k1,957:21092836,16249303:222120 -k1,957:23064112,16249303:222120 -k1,957:26230765,16249303:222120 -k1,957:28197454,16249303:222121 -k1,957:28775434,16249303:222120 -k1,957:30975431,16249303:222120 -k1,957:31966991,16249303:0 -) -(1,958:7246811,17090791:24720180,513147,134348 -g1,957:11232710,17090791 -g1,957:12865867,17090791 -g1,957:14800489,17090791 -(1,957:14800489,17090791:0,414482,115847 -r1,959:15510467,17090791:709978,530329,115847 -k1,957:14800489,17090791:-709978 -) -(1,957:14800489,17090791:709978,414482,115847 -k1,957:14800489,17090791:3277 -h1,957:15507190,17090791:0,411205,112570 -) -g1,957:15709696,17090791 -g1,957:16440422,17090791 -g1,957:16995511,17090791 -k1,958:31966991,17090791:13175794 -g1,958:31966991,17090791 -) -] -) -] -r1,959:32583029,17814963:26214,11927868,0 -) -] -) -) -g1,959:32583029,17225139 -) -h1,959:6630773,17841177:0,0,0 -(1,962:6630773,18997237:25952256,513147,134348 -h1,961:6630773,18997237:983040,0,0 -k1,961:9092775,18997237:215428 -k1,961:12556167,18997237:215428 -k1,961:14238291,18997237:215428 -k1,961:15975465,18997237:215428 -k1,961:16850185,18997237:215428 -k1,961:19786012,18997237:215428 -k1,961:22921723,18997237:215427 -k1,961:24293861,18997237:215428 -k1,961:25192174,18997237:215428 -k1,961:27057799,18997237:215428 -(1,961:27057799,18997237:0,414482,115847 -r1,961:27767777,18997237:709978,530329,115847 -k1,961:27057799,18997237:-709978 -) -(1,961:27057799,18997237:709978,414482,115847 -k1,961:27057799,18997237:3277 -h1,961:27764500,18997237:0,411205,112570 -) -k1,961:28487177,18997237:215428 -k1,961:30713250,18997237:215428 -k1,961:31699381,18997237:215428 -(1,961:31699381,18997237:0,414482,115847 -r1,961:32409359,18997237:709978,530329,115847 -k1,961:31699381,18997237:-709978 -) -(1,961:31699381,18997237:709978,414482,115847 -k1,961:31699381,18997237:3277 -h1,961:32406082,18997237:0,411205,112570 -) -k1,961:32583029,18997237:0 -) -(1,962:6630773,19838725:25952256,513147,126483 -k1,961:7467362,19838725:208754 -k1,961:9378086,19838725:208754 -k1,961:11715449,19838725:208754 -k1,961:13622241,19838725:208754 -k1,961:14987705,19838725:208754 -k1,961:16904983,19838725:208754 -k1,961:17765165,19838725:208754 -k1,961:18329779,19838725:208754 -k1,961:22009975,19838725:208754 -k1,961:22750226,19838725:208754 -k1,961:26100121,19838725:208754 -k1,961:27327960,19838725:208754 -k1,961:29379586,19838725:208754 -k1,961:30247632,19838725:208754 -k1,961:31475471,19838725:208754 -k1,962:32583029,19838725:0 -) -(1,962:6630773,20680213:25952256,513147,134348 -k1,961:9424321,20680213:216672 -k1,961:10172490,20680213:216672 -k1,961:13530303,20680213:216672 -k1,961:15127818,20680213:216671 -k1,961:17412806,20680213:216672 -k1,961:18913984,20680213:216672 -k1,961:19486516,20680213:216672 -k1,961:21897333,20680213:216672 -k1,961:24809501,20680213:216672 -k1,961:25557669,20680213:216671 -k1,961:28072689,20680213:216672 -k1,961:29237012,20680213:216672 -k1,961:31635378,20680213:216672 -k1,961:32583029,20680213:0 -) -(1,962:6630773,21521701:25952256,513147,126483 -g1,961:7849087,21521701 -g1,961:10878161,21521701 -g1,961:11744546,21521701 -(1,961:11744546,21521701:0,414482,115847 -r1,961:12454524,21521701:709978,530329,115847 -k1,961:11744546,21521701:-709978 -) -(1,961:11744546,21521701:709978,414482,115847 -k1,961:11744546,21521701:3277 -h1,961:12451247,21521701:0,411205,112570 -) -g1,961:12653753,21521701 -k1,962:32583028,21521701:17744960 -g1,962:32583028,21521701 -) -v1,964:6630773,22502451:0,393216,0 -(1,971:6630773,23517804:25952256,1408569,196608 -g1,971:6630773,23517804 -g1,971:6630773,23517804 -g1,971:6434165,23517804 -(1,971:6434165,23517804:0,1408569,196608 -r1,971:32779637,23517804:26345472,1605177,196608 -k1,971:6434165,23517804:-26345472 -) -(1,971:6434165,23517804:26345472,1408569,196608 -[1,971:6630773,23517804:25952256,1211961,0 -(1,966:6630773,22710069:25952256,404226,82312 -(1,965:6630773,22710069:0,0,0 -g1,965:6630773,22710069 -g1,965:6630773,22710069 -g1,965:6303093,22710069 -(1,965:6303093,22710069:0,0,0 -) -g1,965:6630773,22710069 -) -k1,966:6630773,22710069:0 -g1,966:10424522,22710069 -h1,966:11372959,22710069:0,0,0 -k1,966:32583029,22710069:21210070 -g1,966:32583029,22710069 -) -(1,970:6630773,23441783:25952256,404226,76021 -(1,968:6630773,23441783:0,0,0 -g1,968:6630773,23441783 -g1,968:6630773,23441783 -g1,968:6303093,23441783 -(1,968:6303093,23441783:0,0,0 -) -g1,968:6630773,23441783 -) -g1,970:7579210,23441783 -g1,970:8843793,23441783 -g1,970:9159939,23441783 -g1,970:10740668,23441783 -h1,970:12321396,23441783:0,0,0 -k1,970:32583028,23441783:20261632 -g1,970:32583028,23441783 -) -] -) -g1,971:32583029,23517804 -g1,971:6630773,23517804 -g1,971:6630773,23517804 -g1,971:32583029,23517804 -g1,971:32583029,23517804 -) -h1,971:6630773,23714412:0,0,0 -(1,975:6630773,24870472:25952256,505283,126483 -h1,974:6630773,24870472:983040,0,0 -k1,974:8500155,24870472:258507 -k1,974:9777747,24870472:258507 -k1,974:12697671,24870472:258507 -k1,974:14985173,24870472:258507 -k1,974:16112032,24870472:258507 -k1,974:17474821,24870472:258507 -k1,974:19019145,24870472:258508 -k1,974:20302635,24870472:258507 -k1,974:21845648,24870472:258507 -(1,974:21845648,24870472:0,452978,115847 -r1,974:24314185,24870472:2468537,568825,115847 -k1,974:21845648,24870472:-2468537 -) -(1,974:21845648,24870472:2468537,452978,115847 -k1,974:21845648,24870472:3277 -h1,974:24310908,24870472:0,411205,112570 -) -k1,974:24572692,24870472:258507 -k1,974:25362696,24870472:258507 -k1,974:29131967,24870472:258507 -k1,974:30581919,24870472:258507 -k1,974:32124932,24870472:258507 -k1,974:32583029,24870472:0 -) -(1,975:6630773,25711960:25952256,513147,134348 -k1,974:9146498,25711960:234417 -k1,974:10400000,25711960:234417 -k1,974:11825862,25711960:234417 -k1,974:12711708,25711960:234418 -k1,974:14397747,25711960:234417 -k1,974:15291456,25711960:234417 -k1,974:16544958,25711960:234417 -k1,974:17951814,25711960:234417 -k1,974:21055397,25711960:234417 -k1,974:21949107,25711960:234418 -k1,974:23202609,25711960:234417 -k1,974:25414903,25711960:234417 -k1,974:29582135,25711960:234417 -k1,974:32583029,25711960:0 -) -(1,975:6630773,26553448:25952256,513147,134348 -g1,974:7849087,26553448 -g1,974:9891188,26553448 -g1,974:10776579,26553448 -g1,974:11331668,26553448 -g1,974:13600524,26553448 -g1,974:15777630,26553448 -g1,974:16636151,26553448 -g1,974:18848646,26553448 -k1,975:32583029,26553448:12388273 -g1,975:32583029,26553448 -) -(1,977:6630773,27394936:25952256,513147,134348 -h1,976:6630773,27394936:983040,0,0 -k1,976:9176565,27394936:291354 -k1,976:11129913,27394936:291355 -k1,976:12072695,27394936:291354 -k1,976:13111815,27394936:291354 -k1,976:15271601,27394936:291355 -k1,976:16222247,27394936:291354 -k1,976:17505162,27394936:291355 -k1,976:18815601,27394936:291354 -k1,976:23520149,27394936:291354 -k1,976:24470796,27394936:291355 -k1,976:25781235,27394936:291354 -k1,976:27283694,27394936:291354 -k1,976:28859555,27394936:291355 -k1,976:31966991,27394936:291354 -k1,976:32583029,27394936:0 -) -(1,977:6630773,28236424:25952256,513147,134348 -k1,976:10222503,28236424:185169 -k1,976:11399231,28236424:185168 -k1,976:13747088,28236424:185169 -k1,976:16061522,28236424:185169 -k1,976:18284861,28236424:185169 -k1,976:19863980,28236424:185168 -k1,976:21700001,28236424:185169 -k1,976:24817251,28236424:185169 -k1,976:27212294,28236424:185169 -k1,976:29351746,28236424:185168 -k1,976:30556000,28236424:185169 -k1,977:32583029,28236424:0 -) -(1,977:6630773,29077912:25952256,513147,126483 -k1,976:9055009,29077912:213707 -k1,976:11651605,29077912:213707 -k1,976:13432933,29077912:213707 -k1,976:14665725,29077912:213707 -k1,976:19202842,29077912:213707 -k1,976:22498706,29077912:213706 -k1,976:23371705,29077912:213707 -k1,976:24938730,29077912:213707 -k1,976:27968519,29077912:213707 -k1,976:29173786,29077912:213707 -k1,976:30453764,29077912:213707 -k1,976:32583029,29077912:0 -) -(1,977:6630773,29919400:25952256,513147,134348 -g1,976:9497317,29919400 -g1,976:10746433,29919400 -g1,976:11964747,29919400 -g1,976:13323963,29919400 -g1,976:14332562,29919400 -g1,976:16029944,29919400 -h1,976:16826862,29919400:0,0,0 -g1,976:17026091,29919400 -g1,976:18172971,29919400 -g1,976:19142903,29919400 -g1,976:22031730,29919400 -k1,977:32583029,29919400:6645353 -g1,977:32583029,29919400 -) -v1,979:6630773,30900150:0,393216,0 -(1,986:6630773,31899774:25952256,1392840,196608 -g1,986:6630773,31899774 -g1,986:6630773,31899774 -g1,986:6434165,31899774 -(1,986:6434165,31899774:0,1392840,196608 -r1,986:32779637,31899774:26345472,1589448,196608 -k1,986:6434165,31899774:-26345472 -) -(1,986:6434165,31899774:26345472,1392840,196608 -[1,986:6630773,31899774:25952256,1196232,0 -(1,981:6630773,31092039:25952256,388497,9436 -(1,980:6630773,31092039:0,0,0 -g1,980:6630773,31092039 -g1,980:6630773,31092039 -g1,980:6303093,31092039 -(1,980:6303093,31092039:0,0,0 -) -g1,980:6630773,31092039 -) -g1,981:7263065,31092039 -g1,981:7895357,31092039 -k1,981:7895357,31092039:0 -h1,981:9476085,31092039:0,0,0 -k1,981:32583029,31092039:23106944 -g1,981:32583029,31092039 -) -(1,985:6630773,31823753:25952256,404226,76021 -(1,983:6630773,31823753:0,0,0 -g1,983:6630773,31823753 -g1,983:6630773,31823753 -g1,983:6303093,31823753 -(1,983:6303093,31823753:0,0,0 -) -g1,983:6630773,31823753 -) -g1,985:7579210,31823753 -g1,985:8843793,31823753 -h1,985:9159939,31823753:0,0,0 -k1,985:32583029,31823753:23423090 -g1,985:32583029,31823753 -) -] -) -g1,986:32583029,31899774 -g1,986:6630773,31899774 -g1,986:6630773,31899774 -g1,986:32583029,31899774 -g1,986:32583029,31899774 -) -h1,986:6630773,32096382:0,0,0 -(1,990:6630773,33252442:25952256,505283,134348 -h1,989:6630773,33252442:983040,0,0 -k1,989:9772290,33252442:375242 -k1,989:13550816,33252442:375241 -(1,989:13550816,33252442:0,452978,122846 -r1,989:16019353,33252442:2468537,575824,122846 -k1,989:13550816,33252442:-2468537 -) -(1,989:13550816,33252442:2468537,452978,122846 -k1,989:13550816,33252442:3277 -h1,989:16016076,33252442:0,411205,112570 -) -k1,989:16394595,33252442:375242 -k1,989:16394595,33252442:0 -k1,989:16769837,33252442:375242 -k1,989:19155724,33252442:375242 -k1,989:21227692,33252442:375241 -k1,989:24609726,33252442:375242 -k1,989:25800236,33252442:375242 -k1,989:27241749,33252442:375242 -k1,989:29291435,33252442:375241 -k1,989:30352839,33252442:375242 -k1,989:32583029,33252442:0 -) -(1,990:6630773,34093930:25952256,513147,134348 -k1,989:10077202,34093930:170284 -k1,989:10778984,34093930:170285 -k1,989:12015539,34093930:170284 -k1,989:14733208,34093930:170285 -k1,989:15665020,34093930:170284 -k1,989:17095561,34093930:170284 -k1,989:17925138,34093930:170285 -k1,989:21027503,34093930:170284 -k1,989:21813826,34093930:170285 -k1,989:25785853,34093930:170284 -k1,989:29027155,34093930:170285 -k1,989:29848867,34093930:170284 -k1,989:32583029,34093930:0 -) -(1,990:6630773,34935418:25952256,513147,134348 -k1,989:9419330,34935418:260178 -k1,989:10338800,34935418:260178 -k1,989:11618062,34935418:260177 -k1,989:13116215,34935418:260178 -k1,989:15936885,34935418:260178 -k1,989:17188623,34935418:260178 -k1,989:19486970,34935418:260177 -k1,989:20363186,34935418:260178 -k1,989:21642449,34935418:260178 -k1,989:24533898,34935418:260178 -k1,989:25453367,34935418:260177 -k1,989:29293777,34935418:260178 -k1,989:31563944,34935418:260178 -k1,989:32583029,34935418:0 -) -(1,990:6630773,35776906:25952256,513147,134348 -k1,989:11207152,35776906:226099 -k1,989:13387535,35776906:226099 -k1,989:14993822,35776906:226099 -k1,989:16211481,35776906:226099 -k1,989:18475750,35776906:226099 -k1,989:21100467,35776906:226099 -k1,989:22597964,35776906:226099 -k1,989:23928345,35776906:226099 -k1,989:25834787,35776906:226099 -k1,989:26720178,35776906:226099 -k1,989:30022537,35776906:226099 -k1,989:32583029,35776906:0 -) -(1,990:6630773,36618394:25952256,513147,134348 -g1,989:7516164,36618394 -g1,989:8071253,36618394 -g1,989:10350595,36618394 -g1,989:11209116,36618394 -g1,989:13291194,36618394 -g1,989:16306505,36618394 -g1,989:19576751,36618394 -g1,989:20427408,36618394 -g1,989:20982497,36618394 -g1,989:23379804,36618394 -g1,989:25359646,36618394 -g1,989:26218167,36618394 -k1,990:32583029,36618394:4180547 -g1,990:32583029,36618394 -) -v1,992:6630773,37599144:0,393216,0 -(1,1023:6630773,45510161:25952256,8304233,196608 -g1,1023:6630773,45510161 -g1,1023:6630773,45510161 -g1,1023:6434165,45510161 -(1,1023:6434165,45510161:0,8304233,196608 -r1,1023:32779637,45510161:26345472,8500841,196608 -k1,1023:6434165,45510161:-26345472 -) -(1,1023:6434165,45510161:26345472,8304233,196608 -[1,1023:6630773,45510161:25952256,8107625,0 -(1,994:6630773,37791033:25952256,388497,9436 -(1,993:6630773,37791033:0,0,0 -g1,993:6630773,37791033 -g1,993:6630773,37791033 -g1,993:6303093,37791033 -(1,993:6303093,37791033:0,0,0 -) -g1,993:6630773,37791033 -) -g1,994:7579210,37791033 -g1,994:8211502,37791033 -h1,994:8843793,37791033:0,0,0 -k1,994:32583029,37791033:23739236 -g1,994:32583029,37791033 -) -(1,998:6630773,38378123:25952256,404226,76021 -(1,996:6630773,38378123:0,0,0 -g1,996:6630773,38378123 -g1,996:6630773,38378123 -g1,996:6303093,38378123 -(1,996:6303093,38378123:0,0,0 -) -g1,996:6630773,38378123 -) -g1,998:7579210,38378123 -g1,998:8843793,38378123 -h1,998:9159939,38378123:0,0,0 -k1,998:32583029,38378123:23423090 -g1,998:32583029,38378123 -) -(1,1000:6630773,39555037:25952256,388497,9436 -(1,999:6630773,39555037:0,0,0 -g1,999:6630773,39555037 -g1,999:6630773,39555037 -g1,999:6303093,39555037 -(1,999:6303093,39555037:0,0,0 -) -g1,999:6630773,39555037 -) -g1,1000:7579210,39555037 -g1,1000:8211502,39555037 -h1,1000:8843793,39555037:0,0,0 -k1,1000:32583029,39555037:23739236 -g1,1000:32583029,39555037 -) -(1,1004:6630773,40142127:25952256,404226,76021 -(1,1002:6630773,40142127:0,0,0 -g1,1002:6630773,40142127 -g1,1002:6630773,40142127 -g1,1002:6303093,40142127 -(1,1002:6303093,40142127:0,0,0 -) -g1,1002:6630773,40142127 -) -g1,1004:7579210,40142127 -g1,1004:8843793,40142127 -h1,1004:9159939,40142127:0,0,0 -k1,1004:32583029,40142127:23423090 -g1,1004:32583029,40142127 -) -(1,1006:6630773,41319041:25952256,404226,76021 -(1,1005:6630773,41319041:0,0,0 -g1,1005:6630773,41319041 -g1,1005:6630773,41319041 -g1,1005:6303093,41319041 -(1,1005:6303093,41319041:0,0,0 -) -g1,1005:6630773,41319041 -) -g1,1006:7579210,41319041 -g1,1006:8843793,41319041 -h1,1006:9476084,41319041:0,0,0 -k1,1006:32583028,41319041:23106944 -g1,1006:32583028,41319041 -) -(1,1010:6630773,41906132:25952256,404226,76021 -(1,1008:6630773,41906132:0,0,0 -g1,1008:6630773,41906132 -g1,1008:6630773,41906132 -g1,1008:6303093,41906132 -(1,1008:6303093,41906132:0,0,0 -) -g1,1008:6630773,41906132 -) -g1,1010:7579210,41906132 -g1,1010:8843793,41906132 -h1,1010:9159939,41906132:0,0,0 -k1,1010:32583029,41906132:23423090 -g1,1010:32583029,41906132 -) -(1,1012:6630773,43083046:25952256,388497,9436 -(1,1011:6630773,43083046:0,0,0 -g1,1011:6630773,43083046 -g1,1011:6630773,43083046 -g1,1011:6303093,43083046 -(1,1011:6303093,43083046:0,0,0 -) -g1,1011:6630773,43083046 -) -g1,1012:7579210,43083046 -g1,1012:8527647,43083046 -h1,1012:9159938,43083046:0,0,0 -k1,1012:32583030,43083046:23423092 -g1,1012:32583030,43083046 -) -(1,1016:6630773,43670136:25952256,404226,76021 -(1,1014:6630773,43670136:0,0,0 -g1,1014:6630773,43670136 -g1,1014:6630773,43670136 -g1,1014:6303093,43670136 -(1,1014:6303093,43670136:0,0,0 -) -g1,1014:6630773,43670136 -) -g1,1016:7579210,43670136 -g1,1016:8843793,43670136 -h1,1016:9159939,43670136:0,0,0 -k1,1016:32583029,43670136:23423090 -g1,1016:32583029,43670136 -) -(1,1018:6630773,44847050:25952256,404226,76021 -(1,1017:6630773,44847050:0,0,0 -g1,1017:6630773,44847050 -g1,1017:6630773,44847050 -g1,1017:6303093,44847050 -(1,1017:6303093,44847050:0,0,0 -) -g1,1017:6630773,44847050 -) -g1,1018:7579210,44847050 -g1,1018:8211502,44847050 -h1,1018:8843793,44847050:0,0,0 -k1,1018:32583029,44847050:23739236 -g1,1018:32583029,44847050 +k1,1033:3078556,49800853:-34777008 +) +] +g1,1033:6630773,4812305 +k1,1033:19515153,4812305:12087462 +g1,1033:20901894,4812305 +g1,1033:21550700,4812305 +g1,1033:24864855,4812305 +g1,1033:27600327,4812305 +g1,1033:29010006,4812305 +) +) +] +[1,1033:6630773,45706769:25952256,40108032,0 +(1,1033:6630773,45706769:25952256,40108032,0 +(1,1033:6630773,45706769:0,0,0 +g1,1033:6630773,45706769 +) +[1,1033:6630773,45706769:25952256,40108032,0 +v1,951:6630773,6254097:0,393216,0 +(1,965:6630773,17225139:25952256,11364258,616038 +g1,965:6630773,17225139 +(1,965:6630773,17225139:25952256,11364258,616038 +(1,965:6630773,17841177:25952256,11980296,0 +[1,965:6630773,17841177:25952256,11980296,0 +(1,965:6630773,17814963:25952256,11927868,0 +r1,965:6656987,17814963:26214,11927868,0 +[1,965:6656987,17814963:25899828,11927868,0 +(1,965:6656987,17225139:25899828,10748220,0 +[1,965:7246811,17225139:24720180,10748220,0 +(1,952:7246811,7564293:24720180,1087374,134348 +k1,951:8691501,7564293:234987 +k1,951:10784065,7564293:241172 +k1,951:11684529,7564293:241172 +k1,951:13066026,7564293:241171 +k1,951:15766109,7564293:241172 +k1,951:16684268,7564293:241172 +k1,951:19011450,7564293:241171 +k1,951:20884468,7564293:241172 +k1,951:22345920,7564293:241172 +k1,951:24389331,7564293:241171 +(1,951:24389331,7564293:0,414482,115847 +r1,965:25099309,7564293:709978,530329,115847 +k1,951:24389331,7564293:-709978 +) +(1,951:24389331,7564293:709978,414482,115847 +k1,951:24389331,7564293:3277 +h1,951:25096032,7564293:0,411205,112570 +) +k1,951:26008662,7564293:234988 +k1,951:27903021,7564293:234987 +k1,951:29518853,7564293:234988 +k1,951:30924313,7564293:234987 +k1,952:31966991,7564293:0 +) +(1,952:7246811,8405781:24720180,513147,134348 +k1,951:10348236,8405781:266338 +k1,951:11633660,8405781:266339 +k1,951:13408637,8405781:266338 +k1,951:15874363,8405781:266338 +k1,951:17159787,8405781:266339 +k1,951:20188468,8405781:266338 +k1,951:23214527,8405781:266338 +k1,951:24140157,8405781:266338 +k1,951:27432293,8405781:266339 +k1,951:28890076,8405781:266338 +k1,951:31966991,8405781:0 +) +(1,952:7246811,9247269:24720180,505283,126483 +k1,951:8888594,9247269:247832 +k1,951:11460988,9247269:247832 +k1,951:12360247,9247269:247831 +(1,951:12360247,9247269:0,414482,115847 +r1,965:13070225,9247269:709978,530329,115847 +k1,951:12360247,9247269:-709978 +) +(1,951:12360247,9247269:709978,414482,115847 +k1,951:12360247,9247269:3277 +h1,951:13066948,9247269:0,411205,112570 +) +k1,951:13318057,9247269:247832 +k1,951:14757334,9247269:247832 +(1,951:14757334,9247269:0,452978,115847 +r1,965:17929294,9247269:3171960,568825,115847 +k1,951:14757334,9247269:-3171960 +) +(1,951:14757334,9247269:3171960,452978,115847 +k1,951:14757334,9247269:3277 +h1,951:17926017,9247269:0,411205,112570 +) +k1,951:18177126,9247269:247832 +k1,951:19107842,9247269:247831 +k1,951:20144072,9247269:247832 +k1,951:23696885,9247269:247832 +(1,951:23696885,9247269:0,452978,115847 +r1,965:27220557,9247269:3523672,568825,115847 +k1,951:23696885,9247269:-3523672 +) +(1,951:23696885,9247269:3523672,452978,115847 +k1,951:23696885,9247269:3277 +h1,951:27217280,9247269:0,411205,112570 +) +k1,951:27642059,9247269:247832 +k1,951:29523703,9247269:247831 +k1,951:30586803,9247269:247832 +k1,951:31966991,9247269:0 +) +(1,952:7246811,10088757:24720180,513147,134348 +g1,951:10814591,10088757 +g1,951:12395974,10088757 +(1,951:12395974,10088757:0,414482,115847 +r1,965:13105952,10088757:709978,530329,115847 +k1,951:12395974,10088757:-709978 +) +(1,951:12395974,10088757:709978,414482,115847 +k1,951:12395974,10088757:3277 +h1,951:13102675,10088757:0,411205,112570 +) +g1,951:13305181,10088757 +g1,951:13834711,10088757 +g1,951:15025500,10088757 +g1,951:16291000,10088757 +g1,951:19105116,10088757 +g1,951:20993863,10088757 +g1,951:23501270,10088757 +g1,951:24359791,10088757 +g1,951:26572286,10088757 +g1,951:28191680,10088757 +k1,952:31966991,10088757:2456727 +g1,952:31966991,10088757 +) +v1,954:7246811,11279223:0,393216,0 +(1,959:7246811,12162455:24720180,1276448,196608 +g1,959:7246811,12162455 +g1,959:7246811,12162455 +g1,959:7050203,12162455 +(1,959:7050203,12162455:0,1276448,196608 +r1,965:32163599,12162455:25113396,1473056,196608 +k1,959:7050203,12162455:-25113396 +) +(1,959:7050203,12162455:25113396,1276448,196608 +[1,959:7246811,12162455:24720180,1079840,0 +(1,956:7246811,11486841:24720180,404226,76021 +(1,955:7246811,11486841:0,0,0 +g1,955:7246811,11486841 +g1,955:7246811,11486841 +g1,955:6919131,11486841 +(1,955:6919131,11486841:0,0,0 +) +g1,955:7246811,11486841 +) +g1,956:8511394,11486841 +g1,956:9143686,11486841 +k1,956:9143686,11486841:0 +h1,956:11988997,11486841:0,0,0 +k1,956:31966991,11486841:19977994 +g1,956:31966991,11486841 +) +(1,957:7246811,12153019:24720180,388497,9436 +h1,957:7246811,12153019:0,0,0 +g1,957:8511394,12153019 +g1,957:9143686,12153019 +h1,957:9775977,12153019:0,0,0 +k1,957:31966991,12153019:22191014 +g1,957:31966991,12153019 +) +] +) +g1,959:31966991,12162455 +g1,959:7246811,12162455 +g1,959:7246811,12162455 +g1,959:31966991,12162455 +g1,959:31966991,12162455 +) +h1,959:7246811,12359063:0,0,0 +(1,964:7246811,13724839:24720180,505283,134348 +h1,962:7246811,13724839:983040,0,0 +k1,962:10267723,13724839:176650 +k1,963:12915081,13724839:176651 +(1,963:12915081,13724839:0,414482,115847 +r1,965:13625059,13724839:709978,530329,115847 +k1,963:12915081,13724839:-709978 +) +(1,963:12915081,13724839:709978,414482,115847 +k1,963:12915081,13724839:3277 +h1,963:13621782,13724839:0,411205,112570 +) +k1,963:13801709,13724839:176650 +k1,963:14509857,13724839:176651 +k1,963:16199733,13724839:176650 +k1,963:17027812,13724839:176651 +k1,963:19086001,13724839:176650 +k1,963:19618511,13724839:176650 +k1,963:21475505,13724839:176651 +k1,963:22936661,13724839:176650 +k1,963:24620640,13724839:176651 +k1,963:26284302,13724839:176650 +k1,963:27143838,13724839:176651 +k1,963:28827816,13724839:176650 +k1,963:31966991,13724839:0 +) +(1,964:7246811,14566327:24720180,513147,134348 +k1,963:8581238,14566327:262258 +k1,963:9374994,14566327:262259 +k1,963:13250907,14566327:262258 +k1,963:16042855,14566327:262258 +k1,963:16964406,14566327:262259 +k1,963:18918804,14566327:262258 +k1,963:22018771,14566327:262258 +k1,963:22768555,14566327:262196 +k1,963:25008690,14566327:262258 +k1,963:25930240,14566327:262258 +k1,963:28205765,14566327:262259 +k1,963:30061859,14566327:262258 +k1,964:31966991,14566327:0 +) +(1,964:7246811,15407815:24720180,513147,126483 +k1,963:9178515,15407815:252016 +k1,963:10239900,15407815:252015 +k1,963:12676231,15407815:252016 +k1,963:14000416,15407815:252016 +k1,963:16262420,15407815:252015 +k1,963:17533521,15407815:252016 +k1,963:20064223,15407815:252015 +k1,963:24514475,15407815:252016 +k1,963:25394326,15407815:252016 +k1,963:28940836,15407815:252015 +k1,963:29658813,15407815:252016 +k1,963:31966991,15407815:0 +) +(1,964:7246811,16249303:24720180,513147,134348 +k1,963:8460491,16249303:222120 +k1,963:11521631,16249303:222120 +k1,963:12395180,16249303:222121 +k1,963:14092515,16249303:222120 +k1,963:14670495,16249303:222120 +k1,963:17090693,16249303:222120 +k1,963:19499750,16249303:222121 +k1,963:20404755,16249303:222120 +k1,963:21092836,16249303:222120 +k1,963:23064112,16249303:222120 +k1,963:26230765,16249303:222120 +k1,963:28197454,16249303:222121 +k1,963:28775434,16249303:222120 +k1,963:30975431,16249303:222120 +k1,963:31966991,16249303:0 +) +(1,964:7246811,17090791:24720180,513147,134348 +g1,963:11232710,17090791 +g1,963:12865867,17090791 +g1,963:14800489,17090791 +(1,963:14800489,17090791:0,414482,115847 +r1,965:15510467,17090791:709978,530329,115847 +k1,963:14800489,17090791:-709978 +) +(1,963:14800489,17090791:709978,414482,115847 +k1,963:14800489,17090791:3277 +h1,963:15507190,17090791:0,411205,112570 +) +g1,963:15709696,17090791 +g1,963:16440422,17090791 +g1,963:16995511,17090791 +k1,964:31966991,17090791:13175794 +g1,964:31966991,17090791 +) +] +) +] +r1,965:32583029,17814963:26214,11927868,0 +) +] +) +) +g1,965:32583029,17225139 +) +h1,965:6630773,17841177:0,0,0 +(1,968:6630773,18997237:25952256,513147,134348 +h1,967:6630773,18997237:983040,0,0 +k1,967:9092775,18997237:215428 +k1,967:12556167,18997237:215428 +k1,967:14238291,18997237:215428 +k1,967:15975465,18997237:215428 +k1,967:16850185,18997237:215428 +k1,967:19786012,18997237:215428 +k1,967:22921723,18997237:215427 +k1,967:24293861,18997237:215428 +k1,967:25192174,18997237:215428 +k1,967:27057799,18997237:215428 +(1,967:27057799,18997237:0,414482,115847 +r1,967:27767777,18997237:709978,530329,115847 +k1,967:27057799,18997237:-709978 +) +(1,967:27057799,18997237:709978,414482,115847 +k1,967:27057799,18997237:3277 +h1,967:27764500,18997237:0,411205,112570 +) +k1,967:28487177,18997237:215428 +k1,967:30713250,18997237:215428 +k1,967:31699381,18997237:215428 +(1,967:31699381,18997237:0,414482,115847 +r1,967:32409359,18997237:709978,530329,115847 +k1,967:31699381,18997237:-709978 +) +(1,967:31699381,18997237:709978,414482,115847 +k1,967:31699381,18997237:3277 +h1,967:32406082,18997237:0,411205,112570 +) +k1,967:32583029,18997237:0 +) +(1,968:6630773,19838725:25952256,513147,126483 +k1,967:7467362,19838725:208754 +k1,967:9378086,19838725:208754 +k1,967:11715449,19838725:208754 +k1,967:13622241,19838725:208754 +k1,967:14987705,19838725:208754 +k1,967:16904983,19838725:208754 +k1,967:17765165,19838725:208754 +k1,967:18329779,19838725:208754 +k1,967:22009975,19838725:208754 +k1,967:22750226,19838725:208754 +k1,967:26100121,19838725:208754 +k1,967:27327960,19838725:208754 +k1,967:29379586,19838725:208754 +k1,967:30247632,19838725:208754 +k1,967:31475471,19838725:208754 +k1,968:32583029,19838725:0 +) +(1,968:6630773,20680213:25952256,513147,134348 +k1,967:9424321,20680213:216672 +k1,967:10172490,20680213:216672 +k1,967:13530303,20680213:216672 +k1,967:15127818,20680213:216671 +k1,967:17412806,20680213:216672 +k1,967:18913984,20680213:216672 +k1,967:19486516,20680213:216672 +k1,967:21897333,20680213:216672 +k1,967:24809501,20680213:216672 +k1,967:25557669,20680213:216671 +k1,967:28072689,20680213:216672 +k1,967:29237012,20680213:216672 +k1,967:31635378,20680213:216672 +k1,967:32583029,20680213:0 +) +(1,968:6630773,21521701:25952256,513147,126483 +g1,967:7849087,21521701 +g1,967:10878161,21521701 +g1,967:11744546,21521701 +(1,967:11744546,21521701:0,414482,115847 +r1,967:12454524,21521701:709978,530329,115847 +k1,967:11744546,21521701:-709978 +) +(1,967:11744546,21521701:709978,414482,115847 +k1,967:11744546,21521701:3277 +h1,967:12451247,21521701:0,411205,112570 +) +g1,967:12653753,21521701 +k1,968:32583028,21521701:17744960 +g1,968:32583028,21521701 +) +v1,970:6630773,22502451:0,393216,0 +(1,977:6630773,23517804:25952256,1408569,196608 +g1,977:6630773,23517804 +g1,977:6630773,23517804 +g1,977:6434165,23517804 +(1,977:6434165,23517804:0,1408569,196608 +r1,977:32779637,23517804:26345472,1605177,196608 +k1,977:6434165,23517804:-26345472 +) +(1,977:6434165,23517804:26345472,1408569,196608 +[1,977:6630773,23517804:25952256,1211961,0 +(1,972:6630773,22710069:25952256,404226,82312 +(1,971:6630773,22710069:0,0,0 +g1,971:6630773,22710069 +g1,971:6630773,22710069 +g1,971:6303093,22710069 +(1,971:6303093,22710069:0,0,0 +) +g1,971:6630773,22710069 +) +k1,972:6630773,22710069:0 +g1,972:10424522,22710069 +h1,972:11372959,22710069:0,0,0 +k1,972:32583029,22710069:21210070 +g1,972:32583029,22710069 +) +(1,976:6630773,23441783:25952256,404226,76021 +(1,974:6630773,23441783:0,0,0 +g1,974:6630773,23441783 +g1,974:6630773,23441783 +g1,974:6303093,23441783 +(1,974:6303093,23441783:0,0,0 +) +g1,974:6630773,23441783 +) +g1,976:7579210,23441783 +g1,976:8843793,23441783 +g1,976:9159939,23441783 +g1,976:10740668,23441783 +h1,976:12321396,23441783:0,0,0 +k1,976:32583028,23441783:20261632 +g1,976:32583028,23441783 +) +] +) +g1,977:32583029,23517804 +g1,977:6630773,23517804 +g1,977:6630773,23517804 +g1,977:32583029,23517804 +g1,977:32583029,23517804 +) +h1,977:6630773,23714412:0,0,0 +(1,981:6630773,24870472:25952256,505283,126483 +h1,980:6630773,24870472:983040,0,0 +k1,980:8500155,24870472:258507 +k1,980:9777747,24870472:258507 +k1,980:12697671,24870472:258507 +k1,980:14985173,24870472:258507 +k1,980:16112032,24870472:258507 +k1,980:17474821,24870472:258507 +k1,980:19019145,24870472:258508 +k1,980:20302635,24870472:258507 +k1,980:21845648,24870472:258507 +(1,980:21845648,24870472:0,452978,115847 +r1,980:24314185,24870472:2468537,568825,115847 +k1,980:21845648,24870472:-2468537 +) +(1,980:21845648,24870472:2468537,452978,115847 +k1,980:21845648,24870472:3277 +h1,980:24310908,24870472:0,411205,112570 +) +k1,980:24572692,24870472:258507 +k1,980:25362696,24870472:258507 +k1,980:29131967,24870472:258507 +k1,980:30581919,24870472:258507 +k1,980:32124932,24870472:258507 +k1,980:32583029,24870472:0 +) +(1,981:6630773,25711960:25952256,513147,134348 +k1,980:9146498,25711960:234417 +k1,980:10400000,25711960:234417 +k1,980:11825862,25711960:234417 +k1,980:12711708,25711960:234418 +k1,980:14397747,25711960:234417 +k1,980:15291456,25711960:234417 +k1,980:16544958,25711960:234417 +k1,980:17951814,25711960:234417 +k1,980:21055397,25711960:234417 +k1,980:21949107,25711960:234418 +k1,980:23202609,25711960:234417 +k1,980:25414903,25711960:234417 +k1,980:29582135,25711960:234417 +k1,980:32583029,25711960:0 +) +(1,981:6630773,26553448:25952256,513147,134348 +g1,980:7849087,26553448 +g1,980:9891188,26553448 +g1,980:10776579,26553448 +g1,980:11331668,26553448 +g1,980:13600524,26553448 +g1,980:15777630,26553448 +g1,980:16636151,26553448 +g1,980:18848646,26553448 +k1,981:32583029,26553448:12388273 +g1,981:32583029,26553448 +) +(1,983:6630773,27394936:25952256,513147,134348 +h1,982:6630773,27394936:983040,0,0 +k1,982:9176565,27394936:291354 +k1,982:11129913,27394936:291355 +k1,982:12072695,27394936:291354 +k1,982:13111815,27394936:291354 +k1,982:15271601,27394936:291355 +k1,982:16222247,27394936:291354 +k1,982:17505162,27394936:291355 +k1,982:18815601,27394936:291354 +k1,982:23520149,27394936:291354 +k1,982:24470796,27394936:291355 +k1,982:25781235,27394936:291354 +k1,982:27283694,27394936:291354 +k1,982:28859555,27394936:291355 +k1,982:31966991,27394936:291354 +k1,982:32583029,27394936:0 +) +(1,983:6630773,28236424:25952256,513147,134348 +k1,982:10222503,28236424:185169 +k1,982:11399231,28236424:185168 +k1,982:13747088,28236424:185169 +k1,982:16061522,28236424:185169 +k1,982:18284861,28236424:185169 +k1,982:19863980,28236424:185168 +k1,982:21700001,28236424:185169 +k1,982:24817251,28236424:185169 +k1,982:27212294,28236424:185169 +k1,982:29351746,28236424:185168 +k1,982:30556000,28236424:185169 +k1,983:32583029,28236424:0 +) +(1,983:6630773,29077912:25952256,513147,126483 +k1,982:9055009,29077912:213707 +k1,982:11651605,29077912:213707 +k1,982:13432933,29077912:213707 +k1,982:14665725,29077912:213707 +k1,982:19202842,29077912:213707 +k1,982:22498706,29077912:213706 +k1,982:23371705,29077912:213707 +k1,982:24938730,29077912:213707 +k1,982:27968519,29077912:213707 +k1,982:29173786,29077912:213707 +k1,982:30453764,29077912:213707 +k1,982:32583029,29077912:0 +) +(1,983:6630773,29919400:25952256,513147,134348 +g1,982:9497317,29919400 +g1,982:10746433,29919400 +g1,982:11964747,29919400 +g1,982:13323963,29919400 +g1,982:14332562,29919400 +g1,982:16029944,29919400 +h1,982:16826862,29919400:0,0,0 +g1,982:17026091,29919400 +g1,982:18172971,29919400 +g1,982:19142903,29919400 +g1,982:22031730,29919400 +k1,983:32583029,29919400:6645353 +g1,983:32583029,29919400 +) +v1,985:6630773,30900150:0,393216,0 +(1,992:6630773,31899774:25952256,1392840,196608 +g1,992:6630773,31899774 +g1,992:6630773,31899774 +g1,992:6434165,31899774 +(1,992:6434165,31899774:0,1392840,196608 +r1,992:32779637,31899774:26345472,1589448,196608 +k1,992:6434165,31899774:-26345472 +) +(1,992:6434165,31899774:26345472,1392840,196608 +[1,992:6630773,31899774:25952256,1196232,0 +(1,987:6630773,31092039:25952256,388497,9436 +(1,986:6630773,31092039:0,0,0 +g1,986:6630773,31092039 +g1,986:6630773,31092039 +g1,986:6303093,31092039 +(1,986:6303093,31092039:0,0,0 +) +g1,986:6630773,31092039 +) +g1,987:7263065,31092039 +g1,987:7895357,31092039 +k1,987:7895357,31092039:0 +h1,987:9476085,31092039:0,0,0 +k1,987:32583029,31092039:23106944 +g1,987:32583029,31092039 +) +(1,991:6630773,31823753:25952256,404226,76021 +(1,989:6630773,31823753:0,0,0 +g1,989:6630773,31823753 +g1,989:6630773,31823753 +g1,989:6303093,31823753 +(1,989:6303093,31823753:0,0,0 +) +g1,989:6630773,31823753 +) +g1,991:7579210,31823753 +g1,991:8843793,31823753 +h1,991:9159939,31823753:0,0,0 +k1,991:32583029,31823753:23423090 +g1,991:32583029,31823753 +) +] +) +g1,992:32583029,31899774 +g1,992:6630773,31899774 +g1,992:6630773,31899774 +g1,992:32583029,31899774 +g1,992:32583029,31899774 +) +h1,992:6630773,32096382:0,0,0 +(1,996:6630773,33252442:25952256,505283,134348 +h1,995:6630773,33252442:983040,0,0 +k1,995:9596840,33252442:199792 +k1,995:13199918,33252442:199793 +(1,995:13199918,33252442:0,452978,122846 +r1,995:15668455,33252442:2468537,575824,122846 +k1,995:13199918,33252442:-2468537 +) +(1,995:13199918,33252442:2468537,452978,122846 +k1,995:13199918,33252442:3277 +h1,995:15665178,33252442:0,411205,112570 +) +k1,995:15868247,33252442:199792 +k1,995:15868247,33252442:0 +k1,995:16068040,33252442:199793 +k1,995:18278477,33252442:199792 +k1,995:20174997,33252442:199793 +k1,995:23381581,33252442:199792 +k1,995:24396641,33252442:199792 +k1,995:25662705,33252442:199793 +k1,995:27536942,33252442:199792 +k1,995:28422897,33252442:199793 +k1,995:30852879,33252442:199792 +k1,996:32583029,33252442:0 +) +(1,996:6630773,34093930:25952256,513147,134348 +k1,995:8686473,34093930:296714 +k1,995:9514685,34093930:296715 +k1,995:10877670,34093930:296714 +k1,995:13721768,34093930:296714 +k1,995:14780011,34093930:296715 +k1,995:16336982,34093930:296714 +k1,995:17292988,34093930:296714 +k1,995:20521784,34093930:296715 +k1,995:21434536,34093930:296714 +k1,995:25532993,34093930:296714 +k1,995:28900725,34093930:296715 +k1,995:29848867,34093930:296714 +k1,995:32583029,34093930:0 +) +(1,996:6630773,34935418:25952256,513147,134348 +k1,995:9419330,34935418:260178 +k1,995:10338800,34935418:260178 +k1,995:11618062,34935418:260177 +k1,995:13116215,34935418:260178 +k1,995:15936885,34935418:260178 +k1,995:17188623,34935418:260178 +k1,995:19486970,34935418:260177 +k1,995:20363186,34935418:260178 +k1,995:21642449,34935418:260178 +k1,995:24533898,34935418:260178 +k1,995:25453367,34935418:260177 +k1,995:29293777,34935418:260178 +k1,995:31563944,34935418:260178 +k1,995:32583029,34935418:0 +) +(1,996:6630773,35776906:25952256,513147,134348 +k1,995:11207152,35776906:226099 +k1,995:13387535,35776906:226099 +k1,995:14993822,35776906:226099 +k1,995:16211481,35776906:226099 +k1,995:18475750,35776906:226099 +k1,995:21100467,35776906:226099 +k1,995:22597964,35776906:226099 +k1,995:23928345,35776906:226099 +k1,995:25834787,35776906:226099 +k1,995:26720178,35776906:226099 +k1,995:30022537,35776906:226099 +k1,995:32583029,35776906:0 +) +(1,996:6630773,36618394:25952256,513147,134348 +g1,995:7516164,36618394 +g1,995:8071253,36618394 +g1,995:10350595,36618394 +g1,995:11209116,36618394 +g1,995:13291194,36618394 +g1,995:16306505,36618394 +g1,995:19576751,36618394 +g1,995:20427408,36618394 +g1,995:20982497,36618394 +g1,995:23379804,36618394 +g1,995:25359646,36618394 +g1,995:26218167,36618394 +k1,996:32583029,36618394:4180547 +g1,996:32583029,36618394 +) +v1,998:6630773,37599144:0,393216,0 +(1,1029:6630773,45510161:25952256,8304233,196608 +g1,1029:6630773,45510161 +g1,1029:6630773,45510161 +g1,1029:6434165,45510161 +(1,1029:6434165,45510161:0,8304233,196608 +r1,1029:32779637,45510161:26345472,8500841,196608 +k1,1029:6434165,45510161:-26345472 +) +(1,1029:6434165,45510161:26345472,8304233,196608 +[1,1029:6630773,45510161:25952256,8107625,0 +(1,1000:6630773,37791033:25952256,388497,9436 +(1,999:6630773,37791033:0,0,0 +g1,999:6630773,37791033 +g1,999:6630773,37791033 +g1,999:6303093,37791033 +(1,999:6303093,37791033:0,0,0 +) +g1,999:6630773,37791033 +) +g1,1000:7579210,37791033 +g1,1000:8211502,37791033 +h1,1000:8843793,37791033:0,0,0 +k1,1000:32583029,37791033:23739236 +g1,1000:32583029,37791033 +) +(1,1004:6630773,38378123:25952256,404226,76021 +(1,1002:6630773,38378123:0,0,0 +g1,1002:6630773,38378123 +g1,1002:6630773,38378123 +g1,1002:6303093,38378123 +(1,1002:6303093,38378123:0,0,0 +) +g1,1002:6630773,38378123 +) +g1,1004:7579210,38378123 +g1,1004:8843793,38378123 +h1,1004:9159939,38378123:0,0,0 +k1,1004:32583029,38378123:23423090 +g1,1004:32583029,38378123 +) +(1,1006:6630773,39555037:25952256,388497,9436 +(1,1005:6630773,39555037:0,0,0 +g1,1005:6630773,39555037 +g1,1005:6630773,39555037 +g1,1005:6303093,39555037 +(1,1005:6303093,39555037:0,0,0 +) +g1,1005:6630773,39555037 +) +g1,1006:7579210,39555037 +g1,1006:8211502,39555037 +h1,1006:8843793,39555037:0,0,0 +k1,1006:32583029,39555037:23739236 +g1,1006:32583029,39555037 +) +(1,1010:6630773,40142127:25952256,404226,76021 +(1,1008:6630773,40142127:0,0,0 +g1,1008:6630773,40142127 +g1,1008:6630773,40142127 +g1,1008:6303093,40142127 +(1,1008:6303093,40142127:0,0,0 +) +g1,1008:6630773,40142127 +) +g1,1010:7579210,40142127 +g1,1010:8843793,40142127 +h1,1010:9159939,40142127:0,0,0 +k1,1010:32583029,40142127:23423090 +g1,1010:32583029,40142127 +) +(1,1012:6630773,41319041:25952256,404226,76021 +(1,1011:6630773,41319041:0,0,0 +g1,1011:6630773,41319041 +g1,1011:6630773,41319041 +g1,1011:6303093,41319041 +(1,1011:6303093,41319041:0,0,0 +) +g1,1011:6630773,41319041 +) +g1,1012:7579210,41319041 +g1,1012:8843793,41319041 +h1,1012:9476084,41319041:0,0,0 +k1,1012:32583028,41319041:23106944 +g1,1012:32583028,41319041 +) +(1,1016:6630773,41906132:25952256,404226,76021 +(1,1014:6630773,41906132:0,0,0 +g1,1014:6630773,41906132 +g1,1014:6630773,41906132 +g1,1014:6303093,41906132 +(1,1014:6303093,41906132:0,0,0 +) +g1,1014:6630773,41906132 +) +g1,1016:7579210,41906132 +g1,1016:8843793,41906132 +h1,1016:9159939,41906132:0,0,0 +k1,1016:32583029,41906132:23423090 +g1,1016:32583029,41906132 +) +(1,1018:6630773,43083046:25952256,388497,9436 +(1,1017:6630773,43083046:0,0,0 +g1,1017:6630773,43083046 +g1,1017:6630773,43083046 +g1,1017:6303093,43083046 +(1,1017:6303093,43083046:0,0,0 +) +g1,1017:6630773,43083046 +) +g1,1018:7579210,43083046 +g1,1018:8527647,43083046 +h1,1018:9159938,43083046:0,0,0 +k1,1018:32583030,43083046:23423092 +g1,1018:32583030,43083046 +) +(1,1022:6630773,43670136:25952256,404226,76021 +(1,1020:6630773,43670136:0,0,0 +g1,1020:6630773,43670136 +g1,1020:6630773,43670136 +g1,1020:6303093,43670136 +(1,1020:6303093,43670136:0,0,0 +) +g1,1020:6630773,43670136 +) +g1,1022:7579210,43670136 +g1,1022:8843793,43670136 +h1,1022:9159939,43670136:0,0,0 +k1,1022:32583029,43670136:23423090 +g1,1022:32583029,43670136 +) +(1,1024:6630773,44847050:25952256,404226,76021 +(1,1023:6630773,44847050:0,0,0 +g1,1023:6630773,44847050 +g1,1023:6630773,44847050 +g1,1023:6303093,44847050 +(1,1023:6303093,44847050:0,0,0 +) +g1,1023:6630773,44847050 +) +g1,1024:7579210,44847050 +g1,1024:8211502,44847050 +h1,1024:8843793,44847050:0,0,0 +k1,1024:32583029,44847050:23739236 +g1,1024:32583029,44847050 ) -(1,1022:6630773,45434140:25952256,404226,76021 -(1,1020:6630773,45434140:0,0,0 -g1,1020:6630773,45434140 -g1,1020:6630773,45434140 -g1,1020:6303093,45434140 -(1,1020:6303093,45434140:0,0,0 +(1,1028:6630773,45434140:25952256,404226,76021 +(1,1026:6630773,45434140:0,0,0 +g1,1026:6630773,45434140 +g1,1026:6630773,45434140 +g1,1026:6303093,45434140 +(1,1026:6303093,45434140:0,0,0 ) -g1,1020:6630773,45434140 +g1,1026:6630773,45434140 ) -g1,1022:7579210,45434140 -g1,1022:8843793,45434140 -h1,1022:11689104,45434140:0,0,0 -k1,1022:32583028,45434140:20893924 -g1,1022:32583028,45434140 +g1,1028:7579210,45434140 +g1,1028:8843793,45434140 +h1,1028:11689104,45434140:0,0,0 +k1,1028:32583028,45434140:20893924 +g1,1028:32583028,45434140 ) ] ) -g1,1023:32583029,45510161 -g1,1023:6630773,45510161 -g1,1023:6630773,45510161 -g1,1023:32583029,45510161 -g1,1023:32583029,45510161 +g1,1029:32583029,45510161 +g1,1029:6630773,45510161 +g1,1029:6630773,45510161 +g1,1029:32583029,45510161 +g1,1029:32583029,45510161 ) -h1,1023:6630773,45706769:0,0,0 +h1,1029:6630773,45706769:0,0,0 ] -(1,1027:32583029,45706769:0,0,0 -g1,1027:32583029,45706769 +(1,1033:32583029,45706769:0,0,0 +g1,1033:32583029,45706769 ) ) ] -(1,1027:6630773,47279633:25952256,0,0 -h1,1027:6630773,47279633:25952256,0,0 +(1,1033:6630773,47279633:25952256,0,0 +h1,1033:6630773,47279633:25952256,0,0 ) ] -h1,1027:4262630,4025873:0,0,0 +h1,1033:4262630,4025873:0,0,0 ] -!25816 +!25870 }37 -Input:222:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:223:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:224:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:225:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:226:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:227:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:228:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:229:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:230:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {38 -[1,1145:4262630,47279633:28320399,43253760,0 -(1,1145:4262630,4025873:0,0,0 -[1,1145:-473657,4025873:25952256,0,0 -(1,1145:-473657,-710414:25952256,0,0 -h1,1145:-473657,-710414:0,0,0 -(1,1145:-473657,-710414:0,0,0 -(1,1145:-473657,-710414:0,0,0 -g1,1145:-473657,-710414 -(1,1145:-473657,-710414:65781,0,65781 -g1,1145:-407876,-710414 -[1,1145:-407876,-644633:0,0,0 +[1,1151:4262630,47279633:28320399,43253760,0 +(1,1151:4262630,4025873:0,0,0 +[1,1151:-473657,4025873:25952256,0,0 +(1,1151:-473657,-710414:25952256,0,0 +h1,1151:-473657,-710414:0,0,0 +(1,1151:-473657,-710414:0,0,0 +(1,1151:-473657,-710414:0,0,0 +g1,1151:-473657,-710414 +(1,1151:-473657,-710414:65781,0,65781 +g1,1151:-407876,-710414 +[1,1151:-407876,-644633:0,0,0 ] ) -k1,1145:-473657,-710414:-65781 +k1,1151:-473657,-710414:-65781 ) ) -k1,1145:25478599,-710414:25952256 -g1,1145:25478599,-710414 +k1,1151:25478599,-710414:25952256 +g1,1151:25478599,-710414 ) ] ) -[1,1145:6630773,47279633:25952256,43253760,0 -[1,1145:6630773,4812305:25952256,786432,0 -(1,1145:6630773,4812305:25952256,505283,7863 -(1,1145:6630773,4812305:25952256,505283,7863 -g1,1145:3078558,4812305 -[1,1145:3078558,4812305:0,0,0 -(1,1145:3078558,2439708:0,1703936,0 -k1,1145:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1145:2537886,2439708:1179648,16384,0 +[1,1151:6630773,47279633:25952256,43253760,0 +[1,1151:6630773,4812305:25952256,786432,0 +(1,1151:6630773,4812305:25952256,505283,7863 +(1,1151:6630773,4812305:25952256,505283,7863 +g1,1151:3078558,4812305 +[1,1151:3078558,4812305:0,0,0 +(1,1151:3078558,2439708:0,1703936,0 +k1,1151:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1151:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1145:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1151:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1145:3078558,4812305:0,0,0 -(1,1145:3078558,2439708:0,1703936,0 -g1,1145:29030814,2439708 -g1,1145:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1145:36151628,1915420:16384,1179648,0 +[1,1151:3078558,4812305:0,0,0 +(1,1151:3078558,2439708:0,1703936,0 +g1,1151:29030814,2439708 +g1,1151:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1151:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1145:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1151:37855564,2439708:1179648,16384,0 ) ) -k1,1145:3078556,2439708:-34777008 +k1,1151:3078556,2439708:-34777008 ) ] -[1,1145:3078558,4812305:0,0,0 -(1,1145:3078558,49800853:0,16384,2228224 -k1,1145:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1145:2537886,49800853:1179648,16384,0 +[1,1151:3078558,4812305:0,0,0 +(1,1151:3078558,49800853:0,16384,2228224 +k1,1151:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1151:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1145:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1151:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1145:3078558,4812305:0,0,0 -(1,1145:3078558,49800853:0,16384,2228224 -g1,1145:29030814,49800853 -g1,1145:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1145:36151628,51504789:16384,1179648,0 +[1,1151:3078558,4812305:0,0,0 +(1,1151:3078558,49800853:0,16384,2228224 +g1,1151:29030814,49800853 +g1,1151:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1151:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1145:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1151:37855564,49800853:1179648,16384,0 ) ) -k1,1145:3078556,49800853:-34777008 +k1,1151:3078556,49800853:-34777008 ) ] -g1,1145:6630773,4812305 -g1,1145:6630773,4812305 -g1,1145:9516978,4812305 -g1,1145:11710468,4812305 -g1,1145:13120147,4812305 -g1,1145:16560787,4812305 -k1,1145:31786111,4812305:15225324 -) -) -] -[1,1145:6630773,45706769:25952256,40108032,0 -(1,1145:6630773,45706769:25952256,40108032,0 -(1,1145:6630773,45706769:0,0,0 -g1,1145:6630773,45706769 -) -[1,1145:6630773,45706769:25952256,40108032,0 -(1,1027:6630773,6254097:25952256,505283,134348 -h1,1026:6630773,6254097:983040,0,0 -k1,1026:8954024,6254097:143524 -k1,1026:10245739,6254097:143524 -k1,1026:13575622,6254097:143523 -k1,1026:14335184,6254097:143524 -k1,1026:15497793,6254097:143524 -k1,1026:18302734,6254097:143524 -k1,1026:22383006,6254097:143524 -k1,1026:24555525,6254097:143524 -k1,1026:26434441,6254097:143523 -k1,1026:27597050,6254097:143524 -k1,1026:30061859,6254097:143524 -k1,1026:32583029,6254097:0 -) -(1,1027:6630773,7095585:25952256,513147,134348 -k1,1026:9608466,7095585:231079 -k1,1026:11705354,7095585:231078 -k1,1026:12292293,7095585:231079 -k1,1026:16856612,7095585:231078 -(1,1026:16856612,7095585:0,452978,115847 -r1,1026:18973437,7095585:2116825,568825,115847 -k1,1026:16856612,7095585:-2116825 -) -(1,1026:16856612,7095585:2116825,452978,115847 -k1,1026:16856612,7095585:3277 -h1,1026:18970160,7095585:0,411205,112570 -) -k1,1026:19204516,7095585:231079 -k1,1026:21452138,7095585:231079 -k1,1026:23372734,7095585:231078 -k1,1026:24622898,7095585:231079 -k1,1026:27084166,7095585:231078 -k1,1026:29836415,7095585:231079 -k1,1027:32583029,7095585:0 -) -(1,1027:6630773,7937073:25952256,513147,134348 -(1,1026:6630773,7937073:0,452978,115847 -r1,1026:7692462,7937073:1061689,568825,115847 -k1,1026:6630773,7937073:-1061689 -) -(1,1026:6630773,7937073:1061689,452978,115847 -k1,1026:6630773,7937073:3277 -h1,1026:7689185,7937073:0,411205,112570 -) -k1,1026:7924256,7937073:231794 -k1,1026:10021860,7937073:231794 -k1,1026:11024357,7937073:231794 -(1,1026:11024357,7937073:0,452978,122846 -r1,1026:13492894,7937073:2468537,575824,122846 -k1,1026:11024357,7937073:-2468537 -) -(1,1026:11024357,7937073:2468537,452978,122846 -k1,1026:11024357,7937073:3277 -h1,1026:13489617,7937073:0,411205,112570 -) -k1,1026:13724687,7937073:231793 -k1,1026:15973024,7937073:231794 -k1,1026:17396263,7937073:231794 -(1,1026:17396263,7937073:0,435480,115847 -r1,1026:18106241,7937073:709978,551327,115847 -k1,1026:17396263,7937073:-709978 -) -(1,1026:17396263,7937073:709978,435480,115847 -k1,1026:17396263,7937073:3277 -h1,1026:18102964,7937073:0,411205,112570 -) -k1,1026:18338035,7937073:231794 -k1,1026:20910775,7937073:231794 -k1,1026:22161654,7937073:231794 -k1,1026:25677456,7937073:231793 -k1,1026:27476871,7937073:231794 -k1,1026:28727750,7937073:231794 -k1,1026:31189734,7937073:231794 -k1,1027:32583029,7937073:0 -) -(1,1027:6630773,8778561:25952256,513147,134348 -k1,1026:8290145,8778561:144835 -k1,1026:8912736,8778561:144834 -k1,1026:9743733,8778561:144835 -k1,1026:10244427,8778561:144834 -k1,1026:12232134,8778561:144835 -k1,1026:13036261,8778561:144835 -k1,1026:13951798,8778561:144834 -k1,1026:17170927,8778561:144835 -k1,1026:18334846,8778561:144834 -k1,1026:20322553,8778561:144835 -k1,1026:21828571,8778561:144835 -k1,1026:24339255,8778561:144834 -k1,1026:25503175,8778561:144835 -k1,1026:27428622,8778561:144834 -k1,1026:28232749,8778561:144835 -k1,1026:32583029,8778561:0 -) -(1,1027:6630773,9620049:25952256,505283,115847 -g1,1026:9014317,9620049 -g1,1026:10232631,9620049 -g1,1026:13210587,9620049 -g1,1026:15090159,9620049 -g1,1026:15820885,9620049 -(1,1026:15820885,9620049:0,414482,115847 -r1,1026:16530863,9620049:709978,530329,115847 -k1,1026:15820885,9620049:-709978 -) -(1,1026:15820885,9620049:709978,414482,115847 -k1,1026:15820885,9620049:3277 -h1,1026:16527586,9620049:0,411205,112570 -) -k1,1027:32583029,9620049:15878496 -g1,1027:32583029,9620049 -) -v1,1029:6630773,10724936:0,393216,0 -(1,1038:6630773,12980562:25952256,2648842,196608 -g1,1038:6630773,12980562 -g1,1038:6630773,12980562 -g1,1038:6434165,12980562 -(1,1038:6434165,12980562:0,2648842,196608 -r1,1038:32779637,12980562:26345472,2845450,196608 -k1,1038:6434165,12980562:-26345472 -) -(1,1038:6434165,12980562:26345472,2648842,196608 -[1,1038:6630773,12980562:25952256,2452234,0 -(1,1031:6630773,10916825:25952256,388497,9436 -(1,1030:6630773,10916825:0,0,0 -g1,1030:6630773,10916825 -g1,1030:6630773,10916825 -g1,1030:6303093,10916825 -(1,1030:6303093,10916825:0,0,0 -) -g1,1030:6630773,10916825 -) -g1,1031:9476084,10916825 -g1,1031:10108376,10916825 -h1,1031:12637541,10916825:0,0,0 -k1,1031:32583029,10916825:19945488 -g1,1031:32583029,10916825 -) -(1,1035:6630773,12238363:25952256,410518,107478 -g1,1035:7579210,12238363 -g1,1035:10108376,12238363 -g1,1035:11056813,12238363 -g1,1035:13902124,12238363 -g1,1035:14534416,12238363 -g1,1035:17695873,12238363 -g1,1035:18960456,12238363 -g1,1035:21805767,12238363 -g1,1035:22754204,12238363 -g1,1035:25283370,12238363 -k1,1035:32583029,12238363:4770494 -g1,1035:32583029,12238363 -) -(1,1037:6630773,12904541:25952256,404226,76021 -(1,1035:6630773,12904541:0,0,0 -g1,1035:6630773,12904541 -g1,1035:6630773,12904541 -g1,1035:6303093,12904541 -(1,1035:6303093,12904541:0,0,0 -) -g1,1035:6630773,12904541 -) -g1,1037:7579210,12904541 -g1,1037:8843793,12904541 -h1,1037:9476084,12904541:0,0,0 -k1,1037:32583028,12904541:23106944 -g1,1037:32583028,12904541 -) -] -) -g1,1038:32583029,12980562 -g1,1038:6630773,12980562 -g1,1038:6630773,12980562 -g1,1038:32583029,12980562 -g1,1038:32583029,12980562 -) -h1,1038:6630773,13177170:0,0,0 -(1,1042:6630773,14457368:25952256,505283,134348 -h1,1041:6630773,14457368:983040,0,0 -k1,1041:9283736,14457368:204538 -k1,1041:12001579,14457368:204537 -k1,1041:13397562,14457368:204538 -k1,1041:16162591,14457368:204537 -k1,1041:17358689,14457368:204538 -k1,1041:21062194,14457368:204538 -k1,1041:24060531,14457368:204537 -k1,1041:24892904,14457368:204538 -k1,1041:26699141,14457368:204537 -k1,1041:30234219,14457368:204538 -k1,1042:32583029,14457368:0 -) -(1,1042:6630773,15298856:25952256,513147,126483 -k1,1041:8130471,15298856:158831 -k1,1041:8820799,15298856:158831 -k1,1041:12169267,15298856:158831 -k1,1041:13519543,15298856:158831 -k1,1041:14546726,15298856:158831 -k1,1041:15520825,15298856:158831 -k1,1041:16745927,15298856:158831 -k1,1041:18435024,15298856:158831 -k1,1041:19245283,15298856:158831 -k1,1041:21257472,15298856:158831 -k1,1041:23238859,15298856:158831 -k1,1041:24416775,15298856:158831 -k1,1041:28092268,15298856:158831 -k1,1041:30886302,15298856:158831 -k1,1041:32583029,15298856:0 -) -(1,1042:6630773,16140344:25952256,513147,126483 -k1,1041:7967506,16140344:164294 -k1,1041:9848187,16140344:164293 -k1,1041:10671773,16140344:164294 -k1,1041:13456195,16140344:164293 -k1,1041:15804804,16140344:164294 -k1,1041:17165784,16140344:164293 -k1,1041:18714198,16140344:164294 -k1,1041:20849159,16140344:164293 -k1,1041:23004437,16140344:164294 -k1,1041:25947457,16140344:164293 -k1,1041:28122396,16140344:164294 -k1,1041:29571195,16140344:164293 -k1,1041:30727049,16140344:164294 -k1,1042:32583029,16140344:0 -) -(1,1042:6630773,16981832:25952256,505283,122846 -(1,1041:6630773,16981832:0,414482,115847 -r1,1041:8044174,16981832:1413401,530329,115847 -k1,1041:6630773,16981832:-1413401 -) -(1,1041:6630773,16981832:1413401,414482,115847 -k1,1041:6630773,16981832:3277 -h1,1041:8040897,16981832:0,411205,112570 -) -g1,1041:8243403,16981832 -g1,1041:9125517,16981832 -(1,1041:9125517,16981832:0,414482,115847 -r1,1041:10890630,16981832:1765113,530329,115847 -k1,1041:9125517,16981832:-1765113 -) -(1,1041:9125517,16981832:1765113,414482,115847 -k1,1041:9125517,16981832:3277 -h1,1041:10887353,16981832:0,411205,112570 -) -g1,1041:11263529,16981832 -g1,1041:13337088,16981832 -g1,1041:14527877,16981832 -(1,1041:14527877,16981832:0,452978,122846 -r1,1041:16996414,16981832:2468537,575824,122846 -k1,1041:14527877,16981832:-2468537 -) -(1,1041:14527877,16981832:2468537,452978,122846 -k1,1041:14527877,16981832:3277 -h1,1041:16993137,16981832:0,411205,112570 -) -g1,1041:17195643,16981832 -g1,1041:19405517,16981832 -g1,1041:20889252,16981832 -g1,1041:22220943,16981832 -g1,1041:23167938,16981832 -g1,1041:26496511,16981832 -g1,1041:27311778,16981832 -g1,1041:28530092,16981832 -g1,1041:30113441,16981832 -k1,1042:32583029,16981832:17231 -g1,1042:32583029,16981832 -) -v1,1044:6630773,18086719:0,393216,0 -(1,1075:6630773,27315080:25952256,9621577,196608 -g1,1075:6630773,27315080 -g1,1075:6630773,27315080 -g1,1075:6434165,27315080 -(1,1075:6434165,27315080:0,9621577,196608 -r1,1075:32779637,27315080:26345472,9818185,196608 -k1,1075:6434165,27315080:-26345472 -) -(1,1075:6434165,27315080:26345472,9621577,196608 -[1,1075:6630773,27315080:25952256,9424969,0 -(1,1046:6630773,18294337:25952256,404226,76021 -(1,1045:6630773,18294337:0,0,0 -g1,1045:6630773,18294337 -g1,1045:6630773,18294337 -g1,1045:6303093,18294337 -(1,1045:6303093,18294337:0,0,0 -) -g1,1045:6630773,18294337 -) -k1,1046:6630773,18294337:0 -h1,1046:11056813,18294337:0,0,0 -k1,1046:32583029,18294337:21526216 -g1,1046:32583029,18294337 -) -(1,1050:6630773,19026051:25952256,404226,76021 -(1,1048:6630773,19026051:0,0,0 -g1,1048:6630773,19026051 -g1,1048:6630773,19026051 -g1,1048:6303093,19026051 -(1,1048:6303093,19026051:0,0,0 -) -g1,1048:6630773,19026051 -) -g1,1050:7579210,19026051 -g1,1050:8843793,19026051 -h1,1050:10108376,19026051:0,0,0 -k1,1050:32583028,19026051:22474652 -g1,1050:32583028,19026051 -) -(1,1052:6630773,20347589:25952256,404226,107478 -(1,1051:6630773,20347589:0,0,0 -g1,1051:6630773,20347589 -g1,1051:6630773,20347589 -g1,1051:6303093,20347589 -(1,1051:6303093,20347589:0,0,0 -) -g1,1051:6630773,20347589 -) -k1,1052:6630773,20347589:0 -h1,1052:11056813,20347589:0,0,0 -k1,1052:32583029,20347589:21526216 -g1,1052:32583029,20347589 -) -(1,1056:6630773,21079303:25952256,404226,76021 -(1,1054:6630773,21079303:0,0,0 -g1,1054:6630773,21079303 -g1,1054:6630773,21079303 -g1,1054:6303093,21079303 -(1,1054:6303093,21079303:0,0,0 -) -g1,1054:6630773,21079303 -) -g1,1056:7579210,21079303 -g1,1056:8843793,21079303 -h1,1056:10108376,21079303:0,0,0 -k1,1056:32583028,21079303:22474652 -g1,1056:32583028,21079303 -) -(1,1058:6630773,22400841:25952256,404226,76021 -(1,1057:6630773,22400841:0,0,0 -g1,1057:6630773,22400841 -g1,1057:6630773,22400841 -g1,1057:6303093,22400841 -(1,1057:6303093,22400841:0,0,0 -) -g1,1057:6630773,22400841 -) -k1,1058:6630773,22400841:0 -h1,1058:10740667,22400841:0,0,0 -k1,1058:32583029,22400841:21842362 -g1,1058:32583029,22400841 -) -(1,1062:6630773,23132555:25952256,404226,76021 -(1,1060:6630773,23132555:0,0,0 -g1,1060:6630773,23132555 -g1,1060:6630773,23132555 -g1,1060:6303093,23132555 -(1,1060:6303093,23132555:0,0,0 -) -g1,1060:6630773,23132555 -) -g1,1062:7579210,23132555 -g1,1062:8843793,23132555 -h1,1062:10424521,23132555:0,0,0 -k1,1062:32583029,23132555:22158508 -g1,1062:32583029,23132555 -) -(1,1064:6630773,24454093:25952256,404226,76021 -(1,1063:6630773,24454093:0,0,0 -g1,1063:6630773,24454093 -g1,1063:6630773,24454093 -g1,1063:6303093,24454093 -(1,1063:6303093,24454093:0,0,0 -) -g1,1063:6630773,24454093 -) -k1,1064:6630773,24454093:0 -g1,1064:10740667,24454093 -g1,1064:11372959,24454093 -h1,1064:12321396,24454093:0,0,0 -k1,1064:32583028,24454093:20261632 -g1,1064:32583028,24454093 -) -(1,1068:6630773,25185807:25952256,404226,76021 -(1,1066:6630773,25185807:0,0,0 -g1,1066:6630773,25185807 -g1,1066:6630773,25185807 -g1,1066:6303093,25185807 -(1,1066:6303093,25185807:0,0,0 -) -g1,1066:6630773,25185807 -) -g1,1068:7579210,25185807 -g1,1068:8843793,25185807 -h1,1068:10108376,25185807:0,0,0 -k1,1068:32583028,25185807:22474652 -g1,1068:32583028,25185807 -) -(1,1070:6630773,26507345:25952256,404226,76021 -(1,1069:6630773,26507345:0,0,0 -g1,1069:6630773,26507345 -g1,1069:6630773,26507345 -g1,1069:6303093,26507345 -(1,1069:6303093,26507345:0,0,0 -) -g1,1069:6630773,26507345 -) -k1,1070:6630773,26507345:0 -g1,1070:11056813,26507345 -g1,1070:11689105,26507345 -h1,1070:12637542,26507345:0,0,0 -k1,1070:32583030,26507345:19945488 -g1,1070:32583030,26507345 -) -(1,1074:6630773,27239059:25952256,404226,76021 -(1,1072:6630773,27239059:0,0,0 -g1,1072:6630773,27239059 -g1,1072:6630773,27239059 -g1,1072:6303093,27239059 -(1,1072:6303093,27239059:0,0,0 -) -g1,1072:6630773,27239059 -) -g1,1074:7579210,27239059 -g1,1074:8843793,27239059 -h1,1074:10108376,27239059:0,0,0 -k1,1074:32583028,27239059:22474652 -g1,1074:32583028,27239059 -) -] -) -g1,1075:32583029,27315080 -g1,1075:6630773,27315080 -g1,1075:6630773,27315080 -g1,1075:32583029,27315080 -g1,1075:32583029,27315080 -) -h1,1075:6630773,27511688:0,0,0 -v1,1079:6630773,29230595:0,393216,0 -(1,1089:6630773,35199240:25952256,6361861,616038 -g1,1089:6630773,35199240 -(1,1089:6630773,35199240:25952256,6361861,616038 -(1,1089:6630773,35815278:25952256,6977899,0 -[1,1089:6630773,35815278:25952256,6977899,0 -(1,1089:6630773,35789064:25952256,6925471,0 -r1,1089:6656987,35789064:26214,6925471,0 -[1,1089:6656987,35789064:25899828,6925471,0 -(1,1089:6656987,35199240:25899828,5745823,0 -[1,1089:7246811,35199240:24720180,5745823,0 -(1,1080:7246811,30737399:24720180,1283982,196608 -(1,1079:7246811,30737399:0,1283982,196608 -r1,1089:9812056,30737399:2565245,1480590,196608 -k1,1079:7246811,30737399:-2565245 -) -(1,1079:7246811,30737399:2565245,1283982,196608 -) -k1,1079:10070431,30737399:258375 -k1,1079:12137601,30737399:258376 -k1,1079:13415061,30737399:258375 -k1,1079:16829651,30737399:258376 -k1,1079:17747318,30737399:258375 -k1,1079:19024779,30737399:258376 -k1,1079:22037632,30737399:258375 -k1,1079:24957425,30737399:258376 -k1,1079:27291325,30737399:258375 -k1,1079:29591803,30737399:258376 -k1,1079:31041623,30737399:258375 -k1,1080:31966991,30737399:0 -) -(1,1080:7246811,31578887:24720180,513147,126483 -k1,1079:9063771,31578887:219192 -k1,1079:10579920,31578887:219191 -k1,1079:11818197,31578887:219192 -k1,1079:13209827,31578887:219191 -k1,1079:16945681,31578887:219192 -k1,1079:19175518,31578887:219192 -k1,1079:22157052,31578887:219191 -k1,1079:24560559,31578887:219192 -k1,1079:26331644,31578887:219192 -k1,1079:26949294,31578887:219191 -k1,1079:27699983,31578887:219192 -k1,1079:28275034,31578887:219191 -(1,1079:28275034,31578887:0,452978,115847 -r1,1089:30391859,31578887:2116825,568825,115847 -k1,1079:28275034,31578887:-2116825 -) -(1,1079:28275034,31578887:2116825,452978,115847 -k1,1079:28275034,31578887:3277 -h1,1079:30388582,31578887:0,411205,112570 -) -k1,1079:30611051,31578887:219192 -k1,1080:31966991,31578887:0 -) -(1,1080:7246811,32420375:24720180,505283,126483 -g1,1079:9234518,32420375 -g1,1079:10687451,32420375 -g1,1079:11990962,32420375 -g1,1079:13282676,32420375 -(1,1079:13282676,32420375:0,452978,122846 -r1,1089:17509772,32420375:4227096,575824,122846 -k1,1079:13282676,32420375:-4227096 -) -(1,1079:13282676,32420375:4227096,452978,122846 -k1,1079:13282676,32420375:3277 -h1,1079:17506495,32420375:0,411205,112570 -) -g1,1079:17709001,32420375 -g1,1079:19099675,32420375 -(1,1079:19099675,32420375:0,452978,115847 -r1,1089:22975059,32420375:3875384,568825,115847 -k1,1079:19099675,32420375:-3875384 -) -(1,1079:19099675,32420375:3875384,452978,115847 -k1,1079:19099675,32420375:3277 -h1,1079:22971782,32420375:0,411205,112570 -) -g1,1079:23174288,32420375 -g1,1079:23989555,32420375 -g1,1079:25647615,32420375 -k1,1080:31966991,32420375:2170947 -g1,1080:31966991,32420375 -) -v1,1082:7246811,33610841:0,393216,0 -(1,1087:7246811,34478344:24720180,1260719,196608 -g1,1087:7246811,34478344 -g1,1087:7246811,34478344 -g1,1087:7050203,34478344 -(1,1087:7050203,34478344:0,1260719,196608 -r1,1089:32163599,34478344:25113396,1457327,196608 -k1,1087:7050203,34478344:-25113396 -) -(1,1087:7050203,34478344:25113396,1260719,196608 -[1,1087:7246811,34478344:24720180,1064111,0 -(1,1084:7246811,33802730:24720180,388497,9436 -(1,1083:7246811,33802730:0,0,0 -g1,1083:7246811,33802730 -g1,1083:7246811,33802730 -g1,1083:6919131,33802730 -(1,1083:6919131,33802730:0,0,0 -) -g1,1083:7246811,33802730 -) -g1,1084:7879103,33802730 -g1,1084:8511395,33802730 -g1,1084:11356706,33802730 -g1,1084:11988998,33802730 -h1,1084:14518163,33802730:0,0,0 -k1,1084:31966991,33802730:17448828 -g1,1084:31966991,33802730 -) -(1,1085:7246811,34468908:24720180,388497,9436 -h1,1085:7246811,34468908:0,0,0 -g1,1085:10092122,34468908 -g1,1085:10724414,34468908 -g1,1085:13569725,34468908 -g1,1085:14202017,34468908 -h1,1085:14518163,34468908:0,0,0 -k1,1085:31966991,34468908:17448828 -g1,1085:31966991,34468908 -) -] -) -g1,1087:31966991,34478344 -g1,1087:7246811,34478344 -g1,1087:7246811,34478344 -g1,1087:31966991,34478344 -g1,1087:31966991,34478344 -) -h1,1087:7246811,34674952:0,0,0 -] -) -] -r1,1089:32583029,35789064:26214,6925471,0 -) -] -) -) -g1,1089:32583029,35199240 -) -h1,1089:6630773,35815278:0,0,0 -(1,1092:6630773,37095476:25952256,513147,134348 -h1,1091:6630773,37095476:983040,0,0 -k1,1091:9360948,37095476:281750 -k1,1091:11340736,37095476:281750 -k1,1091:14907807,37095476:281751 -k1,1091:18005639,37095476:281750 -k1,1091:18970274,37095476:281750 -k1,1091:19938186,37095476:281750 -k1,1091:21541797,37095476:281750 -k1,1091:22482839,37095476:281750 -k1,1091:27332449,37095476:281751 -k1,1091:28482551,37095476:281750 -k1,1091:30101235,37095476:281750 -k1,1091:31931601,37095476:281750 -k1,1091:32583029,37095476:0 -) -(1,1092:6630773,37936964:25952256,513147,134348 -k1,1091:9576364,37936964:174729 -k1,1091:10770178,37936964:174729 -k1,1091:13430688,37936964:174729 -k1,1091:14264709,37936964:174729 -k1,1091:17752938,37936964:174729 -k1,1091:19712212,37936964:174729 -k1,1091:20569826,37936964:174729 -k1,1091:21763640,37936964:174729 -k1,1091:24424150,37936964:174729 -k1,1091:25258171,37936964:174729 -k1,1091:27217445,37936964:174729 -k1,1091:28905400,37936964:174729 -k1,1091:30099214,37936964:174729 -k1,1091:32583029,37936964:0 -) -(1,1092:6630773,38778452:25952256,513147,134348 -k1,1091:9368633,38778452:271740 -k1,1091:10386828,38778452:271740 -k1,1091:12527000,38778452:271741 -k1,1091:14083246,38778452:271740 -k1,1091:14971024,38778452:271740 -k1,1091:16261849,38778452:271740 -k1,1091:19525309,38778452:271741 -k1,1091:21839151,38778452:271740 -k1,1091:23577587,38778452:271740 -k1,1091:24315288,38778452:271740 -k1,1091:27159316,38778452:271740 -k1,1091:27962554,38778452:271741 -k1,1091:29972309,38778452:271740 -k1,1091:31821501,38778452:271740 -k1,1091:32583029,38778452:0 -) -(1,1092:6630773,39619940:25952256,513147,126483 -k1,1091:9295247,39619940:225224 -k1,1091:11217198,39619940:225224 -k1,1091:14468218,39619940:225223 -k1,1091:16704087,39619940:225224 -(1,1091:16704087,39619940:0,452978,115847 -r1,1091:19172624,39619940:2468537,568825,115847 -k1,1091:16704087,39619940:-2468537 -) -(1,1091:16704087,39619940:2468537,452978,115847 -k1,1091:16704087,39619940:3277 -h1,1091:19169347,39619940:0,411205,112570 -) -k1,1091:19397848,39619940:225224 -k1,1091:21633717,39619940:225224 -k1,1091:23143447,39619940:225224 -k1,1091:24360231,39619940:225224 -k1,1091:27347797,39619940:225223 -k1,1091:29140642,39619940:225224 -k1,1091:30874505,39619940:225224 -k1,1091:32583029,39619940:0 -) -(1,1092:6630773,40461428:25952256,505283,126483 -k1,1091:8060230,40461428:238012 -k1,1091:9402524,40461428:238012 -k1,1091:10388302,40461428:238012 -k1,1091:12664484,40461428:238012 -k1,1091:14093941,40461428:238012 -k1,1091:15845179,40461428:238012 -k1,1091:16699230,40461428:238013 -k1,1091:21505101,40461428:238012 -k1,1091:24532981,40461428:238012 -(1,1091:24532981,40461428:0,452978,115847 -r1,1091:27001518,40461428:2468537,568825,115847 -k1,1091:24532981,40461428:-2468537 -) -(1,1091:24532981,40461428:2468537,452978,115847 -k1,1091:24532981,40461428:3277 -h1,1091:26998241,40461428:0,411205,112570 -) -k1,1091:27239530,40461428:238012 -k1,1091:28009039,40461428:238012 -k1,1091:29760277,40461428:238012 -k1,1091:30649717,40461428:238012 -k1,1091:32583029,40461428:0 -) -(1,1092:6630773,41302916:25952256,513147,126483 -k1,1091:9608477,41302916:161622 -k1,1091:10421526,41302916:161621 -k1,1091:10939008,41302916:161622 -k1,1091:13298708,41302916:161622 -k1,1091:15946110,41302916:161621 -k1,1091:16767024,41302916:161622 -k1,1091:19412461,41302916:161622 -k1,1091:21567033,41302916:161622 -k1,1091:23241880,41302916:161621 -k1,1091:24086387,41302916:161622 -k1,1091:26290766,41302916:161622 -k1,1091:27471472,41302916:161621 -k1,1091:30116909,41302916:161622 -k1,1091:32583029,41302916:0 -) -(1,1092:6630773,42144404:25952256,513147,134348 -g1,1091:8519520,42144404 -(1,1091:8519520,42144404:0,459977,122846 -r1,1091:11339769,42144404:2820249,582823,122846 -k1,1091:8519520,42144404:-2820249 -) -(1,1091:8519520,42144404:2820249,459977,122846 -k1,1091:8519520,42144404:3277 -h1,1091:11336492,42144404:0,411205,112570 -) -g1,1091:11538998,42144404 -g1,1091:14001841,42144404 -g1,1091:14852498,42144404 -g1,1091:16070812,42144404 -g1,1091:19427566,42144404 -g1,1091:22112576,42144404 -g1,1091:22971097,42144404 -g1,1091:26483826,42144404 -k1,1092:32583029,42144404:4140987 -g1,1092:32583029,42144404 -) -v1,1094:6630773,43249291:0,393216,0 -(1,1145:6630773,45510161:25952256,2654086,196608 -g1,1145:6630773,45510161 -g1,1145:6630773,45510161 -g1,1145:6434165,45510161 -(1,1145:6434165,45510161:0,2654086,196608 -r1,1145:32779637,45510161:26345472,2850694,196608 -k1,1145:6434165,45510161:-26345472 -) -(1,1145:6434165,45510161:26345472,2654086,196608 -[1,1145:6630773,45510161:25952256,2457478,0 -(1,1096:6630773,43456909:25952256,404226,107478 -(1,1095:6630773,43456909:0,0,0 -g1,1095:6630773,43456909 -g1,1095:6630773,43456909 -g1,1095:6303093,43456909 -(1,1095:6303093,43456909:0,0,0 -) -g1,1095:6630773,43456909 -) -k1,1096:6630773,43456909:0 -g1,1096:12005250,43456909 -g1,1096:14218270,43456909 -g1,1096:14850562,43456909 -h1,1096:15482854,43456909:0,0,0 -k1,1096:32583030,43456909:17100176 -g1,1096:32583030,43456909 -) -(1,1100:6630773,44188623:25952256,404226,76021 -(1,1098:6630773,44188623:0,0,0 -g1,1098:6630773,44188623 -g1,1098:6630773,44188623 -g1,1098:6303093,44188623 -(1,1098:6303093,44188623:0,0,0 -) -g1,1098:6630773,44188623 -) -g1,1100:7579210,44188623 -g1,1100:8843793,44188623 -h1,1100:10424521,44188623:0,0,0 -k1,1100:32583029,44188623:22158508 -g1,1100:32583029,44188623 -) -(1,1102:6630773,45510161:25952256,410518,107478 -(1,1101:6630773,45510161:0,0,0 -g1,1101:6630773,45510161 -g1,1101:6630773,45510161 -g1,1101:6303093,45510161 -(1,1101:6303093,45510161:0,0,0 -) -g1,1101:6630773,45510161 -) -k1,1102:6630773,45510161:0 -g1,1102:12321396,45510161 -g1,1102:14534416,45510161 -g1,1102:15166708,45510161 -h1,1102:15799000,45510161:0,0,0 -k1,1102:32583028,45510161:16784028 -g1,1102:32583028,45510161 -) -] -) -g1,1145:32583029,45510161 -g1,1145:6630773,45510161 -g1,1145:6630773,45510161 -g1,1145:32583029,45510161 -g1,1145:32583029,45510161 -) -] -(1,1145:32583029,45706769:0,0,0 -g1,1145:32583029,45706769 -) -) -] -(1,1145:6630773,47279633:25952256,0,0 -h1,1145:6630773,47279633:25952256,0,0 -) -] -h1,1145:4262630,4025873:0,0,0 +g1,1151:6630773,4812305 +g1,1151:6630773,4812305 +g1,1151:9516978,4812305 +g1,1151:11710468,4812305 +g1,1151:13120147,4812305 +g1,1151:16560787,4812305 +k1,1151:31786111,4812305:15225324 +) +) +] +[1,1151:6630773,45706769:25952256,40108032,0 +(1,1151:6630773,45706769:25952256,40108032,0 +(1,1151:6630773,45706769:0,0,0 +g1,1151:6630773,45706769 +) +[1,1151:6630773,45706769:25952256,40108032,0 +(1,1033:6630773,6254097:25952256,505283,134348 +h1,1032:6630773,6254097:983040,0,0 +k1,1032:8954024,6254097:143524 +k1,1032:10245739,6254097:143524 +k1,1032:13575622,6254097:143523 +k1,1032:14335184,6254097:143524 +k1,1032:15497793,6254097:143524 +k1,1032:18302734,6254097:143524 +k1,1032:22383006,6254097:143524 +k1,1032:24555525,6254097:143524 +k1,1032:26434441,6254097:143523 +k1,1032:27597050,6254097:143524 +k1,1032:30061859,6254097:143524 +k1,1032:32583029,6254097:0 +) +(1,1033:6630773,7095585:25952256,513147,134348 +k1,1032:9608466,7095585:231079 +k1,1032:11705354,7095585:231078 +k1,1032:12292293,7095585:231079 +k1,1032:16856612,7095585:231078 +(1,1032:16856612,7095585:0,452978,115847 +r1,1032:18973437,7095585:2116825,568825,115847 +k1,1032:16856612,7095585:-2116825 +) +(1,1032:16856612,7095585:2116825,452978,115847 +k1,1032:16856612,7095585:3277 +h1,1032:18970160,7095585:0,411205,112570 +) +k1,1032:19204516,7095585:231079 +k1,1032:21452138,7095585:231079 +k1,1032:23372734,7095585:231078 +k1,1032:24622898,7095585:231079 +k1,1032:27084166,7095585:231078 +k1,1032:29836415,7095585:231079 +k1,1033:32583029,7095585:0 +) +(1,1033:6630773,7937073:25952256,513147,134348 +(1,1032:6630773,7937073:0,452978,115847 +r1,1032:7692462,7937073:1061689,568825,115847 +k1,1032:6630773,7937073:-1061689 +) +(1,1032:6630773,7937073:1061689,452978,115847 +k1,1032:6630773,7937073:3277 +h1,1032:7689185,7937073:0,411205,112570 +) +k1,1032:7924256,7937073:231794 +k1,1032:10021860,7937073:231794 +k1,1032:11024357,7937073:231794 +(1,1032:11024357,7937073:0,452978,122846 +r1,1032:13492894,7937073:2468537,575824,122846 +k1,1032:11024357,7937073:-2468537 +) +(1,1032:11024357,7937073:2468537,452978,122846 +k1,1032:11024357,7937073:3277 +h1,1032:13489617,7937073:0,411205,112570 +) +k1,1032:13724687,7937073:231793 +k1,1032:15973024,7937073:231794 +k1,1032:17396263,7937073:231794 +(1,1032:17396263,7937073:0,435480,115847 +r1,1032:18106241,7937073:709978,551327,115847 +k1,1032:17396263,7937073:-709978 +) +(1,1032:17396263,7937073:709978,435480,115847 +k1,1032:17396263,7937073:3277 +h1,1032:18102964,7937073:0,411205,112570 +) +k1,1032:18338035,7937073:231794 +k1,1032:20910775,7937073:231794 +k1,1032:22161654,7937073:231794 +k1,1032:25677456,7937073:231793 +k1,1032:27476871,7937073:231794 +k1,1032:28727750,7937073:231794 +k1,1032:31189734,7937073:231794 +k1,1033:32583029,7937073:0 +) +(1,1033:6630773,8778561:25952256,513147,134348 +k1,1032:8290145,8778561:144835 +k1,1032:8912736,8778561:144834 +k1,1032:9743733,8778561:144835 +k1,1032:10244427,8778561:144834 +k1,1032:12232134,8778561:144835 +k1,1032:13036261,8778561:144835 +k1,1032:13951798,8778561:144834 +k1,1032:17170927,8778561:144835 +k1,1032:18334846,8778561:144834 +k1,1032:20322553,8778561:144835 +k1,1032:21828571,8778561:144835 +k1,1032:24339255,8778561:144834 +k1,1032:25503175,8778561:144835 +k1,1032:27428622,8778561:144834 +k1,1032:28232749,8778561:144835 +k1,1032:32583029,8778561:0 +) +(1,1033:6630773,9620049:25952256,505283,115847 +g1,1032:9014317,9620049 +g1,1032:10232631,9620049 +g1,1032:13210587,9620049 +g1,1032:15090159,9620049 +g1,1032:15820885,9620049 +(1,1032:15820885,9620049:0,414482,115847 +r1,1032:16530863,9620049:709978,530329,115847 +k1,1032:15820885,9620049:-709978 +) +(1,1032:15820885,9620049:709978,414482,115847 +k1,1032:15820885,9620049:3277 +h1,1032:16527586,9620049:0,411205,112570 +) +k1,1033:32583029,9620049:15878496 +g1,1033:32583029,9620049 +) +v1,1035:6630773,10724936:0,393216,0 +(1,1044:6630773,12980562:25952256,2648842,196608 +g1,1044:6630773,12980562 +g1,1044:6630773,12980562 +g1,1044:6434165,12980562 +(1,1044:6434165,12980562:0,2648842,196608 +r1,1044:32779637,12980562:26345472,2845450,196608 +k1,1044:6434165,12980562:-26345472 +) +(1,1044:6434165,12980562:26345472,2648842,196608 +[1,1044:6630773,12980562:25952256,2452234,0 +(1,1037:6630773,10916825:25952256,388497,9436 +(1,1036:6630773,10916825:0,0,0 +g1,1036:6630773,10916825 +g1,1036:6630773,10916825 +g1,1036:6303093,10916825 +(1,1036:6303093,10916825:0,0,0 +) +g1,1036:6630773,10916825 +) +g1,1037:9476084,10916825 +g1,1037:10108376,10916825 +h1,1037:12637541,10916825:0,0,0 +k1,1037:32583029,10916825:19945488 +g1,1037:32583029,10916825 +) +(1,1041:6630773,12238363:25952256,410518,107478 +g1,1041:7579210,12238363 +g1,1041:10108376,12238363 +g1,1041:11056813,12238363 +g1,1041:13902124,12238363 +g1,1041:14534416,12238363 +g1,1041:17695873,12238363 +g1,1041:18960456,12238363 +g1,1041:21805767,12238363 +g1,1041:22754204,12238363 +g1,1041:25283370,12238363 +k1,1041:32583029,12238363:4770494 +g1,1041:32583029,12238363 +) +(1,1043:6630773,12904541:25952256,404226,76021 +(1,1041:6630773,12904541:0,0,0 +g1,1041:6630773,12904541 +g1,1041:6630773,12904541 +g1,1041:6303093,12904541 +(1,1041:6303093,12904541:0,0,0 +) +g1,1041:6630773,12904541 +) +g1,1043:7579210,12904541 +g1,1043:8843793,12904541 +h1,1043:9476084,12904541:0,0,0 +k1,1043:32583028,12904541:23106944 +g1,1043:32583028,12904541 +) +] +) +g1,1044:32583029,12980562 +g1,1044:6630773,12980562 +g1,1044:6630773,12980562 +g1,1044:32583029,12980562 +g1,1044:32583029,12980562 +) +h1,1044:6630773,13177170:0,0,0 +(1,1048:6630773,14457368:25952256,505283,134348 +h1,1047:6630773,14457368:983040,0,0 +k1,1047:9283736,14457368:204538 +k1,1047:12001579,14457368:204537 +k1,1047:13397562,14457368:204538 +k1,1047:16162591,14457368:204537 +k1,1047:17358689,14457368:204538 +k1,1047:21062194,14457368:204538 +k1,1047:24060531,14457368:204537 +k1,1047:24892904,14457368:204538 +k1,1047:26699141,14457368:204537 +k1,1047:30234219,14457368:204538 +k1,1048:32583029,14457368:0 +) +(1,1048:6630773,15298856:25952256,513147,126483 +k1,1047:8130471,15298856:158831 +k1,1047:8820799,15298856:158831 +k1,1047:12169267,15298856:158831 +k1,1047:13519543,15298856:158831 +k1,1047:14546726,15298856:158831 +k1,1047:15520825,15298856:158831 +k1,1047:16745927,15298856:158831 +k1,1047:18435024,15298856:158831 +k1,1047:19245283,15298856:158831 +k1,1047:21257472,15298856:158831 +k1,1047:23238859,15298856:158831 +k1,1047:24416775,15298856:158831 +k1,1047:28092268,15298856:158831 +k1,1047:30886302,15298856:158831 +k1,1047:32583029,15298856:0 +) +(1,1048:6630773,16140344:25952256,513147,126483 +k1,1047:7967506,16140344:164294 +k1,1047:9848187,16140344:164293 +k1,1047:10671773,16140344:164294 +k1,1047:13456195,16140344:164293 +k1,1047:15804804,16140344:164294 +k1,1047:17165784,16140344:164293 +k1,1047:18714198,16140344:164294 +k1,1047:20849159,16140344:164293 +k1,1047:23004437,16140344:164294 +k1,1047:25947457,16140344:164293 +k1,1047:28122396,16140344:164294 +k1,1047:29571195,16140344:164293 +k1,1047:30727049,16140344:164294 +k1,1048:32583029,16140344:0 +) +(1,1048:6630773,16981832:25952256,505283,122846 +(1,1047:6630773,16981832:0,414482,115847 +r1,1047:8044174,16981832:1413401,530329,115847 +k1,1047:6630773,16981832:-1413401 +) +(1,1047:6630773,16981832:1413401,414482,115847 +k1,1047:6630773,16981832:3277 +h1,1047:8040897,16981832:0,411205,112570 +) +g1,1047:8243403,16981832 +g1,1047:9125517,16981832 +(1,1047:9125517,16981832:0,414482,115847 +r1,1047:10890630,16981832:1765113,530329,115847 +k1,1047:9125517,16981832:-1765113 +) +(1,1047:9125517,16981832:1765113,414482,115847 +k1,1047:9125517,16981832:3277 +h1,1047:10887353,16981832:0,411205,112570 +) +g1,1047:11263529,16981832 +g1,1047:13337088,16981832 +g1,1047:14527877,16981832 +(1,1047:14527877,16981832:0,452978,122846 +r1,1047:16996414,16981832:2468537,575824,122846 +k1,1047:14527877,16981832:-2468537 +) +(1,1047:14527877,16981832:2468537,452978,122846 +k1,1047:14527877,16981832:3277 +h1,1047:16993137,16981832:0,411205,112570 +) +g1,1047:17195643,16981832 +g1,1047:19405517,16981832 +g1,1047:20889252,16981832 +g1,1047:22220943,16981832 +g1,1047:23167938,16981832 +g1,1047:26496511,16981832 +g1,1047:27311778,16981832 +g1,1047:28530092,16981832 +g1,1047:30113441,16981832 +k1,1048:32583029,16981832:17231 +g1,1048:32583029,16981832 +) +v1,1050:6630773,18086719:0,393216,0 +(1,1081:6630773,27315080:25952256,9621577,196608 +g1,1081:6630773,27315080 +g1,1081:6630773,27315080 +g1,1081:6434165,27315080 +(1,1081:6434165,27315080:0,9621577,196608 +r1,1081:32779637,27315080:26345472,9818185,196608 +k1,1081:6434165,27315080:-26345472 +) +(1,1081:6434165,27315080:26345472,9621577,196608 +[1,1081:6630773,27315080:25952256,9424969,0 +(1,1052:6630773,18294337:25952256,404226,76021 +(1,1051:6630773,18294337:0,0,0 +g1,1051:6630773,18294337 +g1,1051:6630773,18294337 +g1,1051:6303093,18294337 +(1,1051:6303093,18294337:0,0,0 +) +g1,1051:6630773,18294337 +) +k1,1052:6630773,18294337:0 +h1,1052:11056813,18294337:0,0,0 +k1,1052:32583029,18294337:21526216 +g1,1052:32583029,18294337 +) +(1,1056:6630773,19026051:25952256,404226,76021 +(1,1054:6630773,19026051:0,0,0 +g1,1054:6630773,19026051 +g1,1054:6630773,19026051 +g1,1054:6303093,19026051 +(1,1054:6303093,19026051:0,0,0 +) +g1,1054:6630773,19026051 +) +g1,1056:7579210,19026051 +g1,1056:8843793,19026051 +h1,1056:10108376,19026051:0,0,0 +k1,1056:32583028,19026051:22474652 +g1,1056:32583028,19026051 +) +(1,1058:6630773,20347589:25952256,404226,107478 +(1,1057:6630773,20347589:0,0,0 +g1,1057:6630773,20347589 +g1,1057:6630773,20347589 +g1,1057:6303093,20347589 +(1,1057:6303093,20347589:0,0,0 +) +g1,1057:6630773,20347589 +) +k1,1058:6630773,20347589:0 +h1,1058:11056813,20347589:0,0,0 +k1,1058:32583029,20347589:21526216 +g1,1058:32583029,20347589 +) +(1,1062:6630773,21079303:25952256,404226,76021 +(1,1060:6630773,21079303:0,0,0 +g1,1060:6630773,21079303 +g1,1060:6630773,21079303 +g1,1060:6303093,21079303 +(1,1060:6303093,21079303:0,0,0 +) +g1,1060:6630773,21079303 +) +g1,1062:7579210,21079303 +g1,1062:8843793,21079303 +h1,1062:10108376,21079303:0,0,0 +k1,1062:32583028,21079303:22474652 +g1,1062:32583028,21079303 +) +(1,1064:6630773,22400841:25952256,404226,76021 +(1,1063:6630773,22400841:0,0,0 +g1,1063:6630773,22400841 +g1,1063:6630773,22400841 +g1,1063:6303093,22400841 +(1,1063:6303093,22400841:0,0,0 +) +g1,1063:6630773,22400841 +) +k1,1064:6630773,22400841:0 +h1,1064:10740667,22400841:0,0,0 +k1,1064:32583029,22400841:21842362 +g1,1064:32583029,22400841 +) +(1,1068:6630773,23132555:25952256,404226,76021 +(1,1066:6630773,23132555:0,0,0 +g1,1066:6630773,23132555 +g1,1066:6630773,23132555 +g1,1066:6303093,23132555 +(1,1066:6303093,23132555:0,0,0 +) +g1,1066:6630773,23132555 +) +g1,1068:7579210,23132555 +g1,1068:8843793,23132555 +h1,1068:10424521,23132555:0,0,0 +k1,1068:32583029,23132555:22158508 +g1,1068:32583029,23132555 +) +(1,1070:6630773,24454093:25952256,404226,76021 +(1,1069:6630773,24454093:0,0,0 +g1,1069:6630773,24454093 +g1,1069:6630773,24454093 +g1,1069:6303093,24454093 +(1,1069:6303093,24454093:0,0,0 +) +g1,1069:6630773,24454093 +) +k1,1070:6630773,24454093:0 +g1,1070:10740667,24454093 +g1,1070:11372959,24454093 +h1,1070:12321396,24454093:0,0,0 +k1,1070:32583028,24454093:20261632 +g1,1070:32583028,24454093 +) +(1,1074:6630773,25185807:25952256,404226,76021 +(1,1072:6630773,25185807:0,0,0 +g1,1072:6630773,25185807 +g1,1072:6630773,25185807 +g1,1072:6303093,25185807 +(1,1072:6303093,25185807:0,0,0 +) +g1,1072:6630773,25185807 +) +g1,1074:7579210,25185807 +g1,1074:8843793,25185807 +h1,1074:10108376,25185807:0,0,0 +k1,1074:32583028,25185807:22474652 +g1,1074:32583028,25185807 +) +(1,1076:6630773,26507345:25952256,404226,76021 +(1,1075:6630773,26507345:0,0,0 +g1,1075:6630773,26507345 +g1,1075:6630773,26507345 +g1,1075:6303093,26507345 +(1,1075:6303093,26507345:0,0,0 +) +g1,1075:6630773,26507345 +) +k1,1076:6630773,26507345:0 +g1,1076:11056813,26507345 +g1,1076:11689105,26507345 +h1,1076:12637542,26507345:0,0,0 +k1,1076:32583030,26507345:19945488 +g1,1076:32583030,26507345 +) +(1,1080:6630773,27239059:25952256,404226,76021 +(1,1078:6630773,27239059:0,0,0 +g1,1078:6630773,27239059 +g1,1078:6630773,27239059 +g1,1078:6303093,27239059 +(1,1078:6303093,27239059:0,0,0 +) +g1,1078:6630773,27239059 +) +g1,1080:7579210,27239059 +g1,1080:8843793,27239059 +h1,1080:10108376,27239059:0,0,0 +k1,1080:32583028,27239059:22474652 +g1,1080:32583028,27239059 +) +] +) +g1,1081:32583029,27315080 +g1,1081:6630773,27315080 +g1,1081:6630773,27315080 +g1,1081:32583029,27315080 +g1,1081:32583029,27315080 +) +h1,1081:6630773,27511688:0,0,0 +v1,1085:6630773,29230595:0,393216,0 +(1,1095:6630773,35199240:25952256,6361861,616038 +g1,1095:6630773,35199240 +(1,1095:6630773,35199240:25952256,6361861,616038 +(1,1095:6630773,35815278:25952256,6977899,0 +[1,1095:6630773,35815278:25952256,6977899,0 +(1,1095:6630773,35789064:25952256,6925471,0 +r1,1095:6656987,35789064:26214,6925471,0 +[1,1095:6656987,35789064:25899828,6925471,0 +(1,1095:6656987,35199240:25899828,5745823,0 +[1,1095:7246811,35199240:24720180,5745823,0 +(1,1086:7246811,30737399:24720180,1283982,196608 +(1,1085:7246811,30737399:0,1283982,196608 +r1,1095:9812056,30737399:2565245,1480590,196608 +k1,1085:7246811,30737399:-2565245 +) +(1,1085:7246811,30737399:2565245,1283982,196608 +) +k1,1085:10070431,30737399:258375 +k1,1085:12137601,30737399:258376 +k1,1085:13415061,30737399:258375 +k1,1085:16829651,30737399:258376 +k1,1085:17747318,30737399:258375 +k1,1085:19024779,30737399:258376 +k1,1085:22037632,30737399:258375 +k1,1085:24957425,30737399:258376 +k1,1085:27291325,30737399:258375 +k1,1085:29591803,30737399:258376 +k1,1085:31041623,30737399:258375 +k1,1086:31966991,30737399:0 +) +(1,1086:7246811,31578887:24720180,513147,126483 +k1,1085:9063771,31578887:219192 +k1,1085:10579920,31578887:219191 +k1,1085:11818197,31578887:219192 +k1,1085:13209827,31578887:219191 +k1,1085:16945681,31578887:219192 +k1,1085:19175518,31578887:219192 +k1,1085:22157052,31578887:219191 +k1,1085:24560559,31578887:219192 +k1,1085:26331644,31578887:219192 +k1,1085:26949294,31578887:219191 +k1,1085:27699983,31578887:219192 +k1,1085:28275034,31578887:219191 +(1,1085:28275034,31578887:0,452978,115847 +r1,1095:30391859,31578887:2116825,568825,115847 +k1,1085:28275034,31578887:-2116825 +) +(1,1085:28275034,31578887:2116825,452978,115847 +k1,1085:28275034,31578887:3277 +h1,1085:30388582,31578887:0,411205,112570 +) +k1,1085:30611051,31578887:219192 +k1,1086:31966991,31578887:0 +) +(1,1086:7246811,32420375:24720180,505283,126483 +g1,1085:9234518,32420375 +g1,1085:10687451,32420375 +g1,1085:11990962,32420375 +g1,1085:13282676,32420375 +(1,1085:13282676,32420375:0,452978,122846 +r1,1095:17509772,32420375:4227096,575824,122846 +k1,1085:13282676,32420375:-4227096 +) +(1,1085:13282676,32420375:4227096,452978,122846 +k1,1085:13282676,32420375:3277 +h1,1085:17506495,32420375:0,411205,112570 +) +g1,1085:17709001,32420375 +g1,1085:19099675,32420375 +(1,1085:19099675,32420375:0,452978,115847 +r1,1095:22975059,32420375:3875384,568825,115847 +k1,1085:19099675,32420375:-3875384 +) +(1,1085:19099675,32420375:3875384,452978,115847 +k1,1085:19099675,32420375:3277 +h1,1085:22971782,32420375:0,411205,112570 +) +g1,1085:23174288,32420375 +g1,1085:23989555,32420375 +g1,1085:25647615,32420375 +k1,1086:31966991,32420375:2170947 +g1,1086:31966991,32420375 +) +v1,1088:7246811,33610841:0,393216,0 +(1,1093:7246811,34478344:24720180,1260719,196608 +g1,1093:7246811,34478344 +g1,1093:7246811,34478344 +g1,1093:7050203,34478344 +(1,1093:7050203,34478344:0,1260719,196608 +r1,1095:32163599,34478344:25113396,1457327,196608 +k1,1093:7050203,34478344:-25113396 +) +(1,1093:7050203,34478344:25113396,1260719,196608 +[1,1093:7246811,34478344:24720180,1064111,0 +(1,1090:7246811,33802730:24720180,388497,9436 +(1,1089:7246811,33802730:0,0,0 +g1,1089:7246811,33802730 +g1,1089:7246811,33802730 +g1,1089:6919131,33802730 +(1,1089:6919131,33802730:0,0,0 +) +g1,1089:7246811,33802730 +) +g1,1090:7879103,33802730 +g1,1090:8511395,33802730 +g1,1090:11356706,33802730 +g1,1090:11988998,33802730 +h1,1090:14518163,33802730:0,0,0 +k1,1090:31966991,33802730:17448828 +g1,1090:31966991,33802730 +) +(1,1091:7246811,34468908:24720180,388497,9436 +h1,1091:7246811,34468908:0,0,0 +g1,1091:10092122,34468908 +g1,1091:10724414,34468908 +g1,1091:13569725,34468908 +g1,1091:14202017,34468908 +h1,1091:14518163,34468908:0,0,0 +k1,1091:31966991,34468908:17448828 +g1,1091:31966991,34468908 +) +] +) +g1,1093:31966991,34478344 +g1,1093:7246811,34478344 +g1,1093:7246811,34478344 +g1,1093:31966991,34478344 +g1,1093:31966991,34478344 +) +h1,1093:7246811,34674952:0,0,0 +] +) +] +r1,1095:32583029,35789064:26214,6925471,0 +) +] +) +) +g1,1095:32583029,35199240 +) +h1,1095:6630773,35815278:0,0,0 +(1,1098:6630773,37095476:25952256,513147,134348 +h1,1097:6630773,37095476:983040,0,0 +k1,1097:9360948,37095476:281750 +k1,1097:11340736,37095476:281750 +k1,1097:14907807,37095476:281751 +k1,1097:18005639,37095476:281750 +k1,1097:18970274,37095476:281750 +k1,1097:19938186,37095476:281750 +k1,1097:21541797,37095476:281750 +k1,1097:22482839,37095476:281750 +k1,1097:27332449,37095476:281751 +k1,1097:28482551,37095476:281750 +k1,1097:30101235,37095476:281750 +k1,1097:31931601,37095476:281750 +k1,1097:32583029,37095476:0 +) +(1,1098:6630773,37936964:25952256,513147,134348 +k1,1097:9576364,37936964:174729 +k1,1097:10770178,37936964:174729 +k1,1097:13430688,37936964:174729 +k1,1097:14264709,37936964:174729 +k1,1097:17752938,37936964:174729 +k1,1097:19712212,37936964:174729 +k1,1097:20569826,37936964:174729 +k1,1097:21763640,37936964:174729 +k1,1097:24424150,37936964:174729 +k1,1097:25258171,37936964:174729 +k1,1097:27217445,37936964:174729 +k1,1097:28905400,37936964:174729 +k1,1097:30099214,37936964:174729 +k1,1097:32583029,37936964:0 +) +(1,1098:6630773,38778452:25952256,513147,134348 +k1,1097:9368633,38778452:271740 +k1,1097:10386828,38778452:271740 +k1,1097:12527000,38778452:271741 +k1,1097:14083246,38778452:271740 +k1,1097:14971024,38778452:271740 +k1,1097:16261849,38778452:271740 +k1,1097:19525309,38778452:271741 +k1,1097:21839151,38778452:271740 +k1,1097:23577587,38778452:271740 +k1,1097:24315288,38778452:271740 +k1,1097:27159316,38778452:271740 +k1,1097:27962554,38778452:271741 +k1,1097:29972309,38778452:271740 +k1,1097:31821501,38778452:271740 +k1,1097:32583029,38778452:0 +) +(1,1098:6630773,39619940:25952256,513147,126483 +k1,1097:9295247,39619940:225224 +k1,1097:11217198,39619940:225224 +k1,1097:14468218,39619940:225223 +k1,1097:16704087,39619940:225224 +(1,1097:16704087,39619940:0,452978,115847 +r1,1097:19172624,39619940:2468537,568825,115847 +k1,1097:16704087,39619940:-2468537 +) +(1,1097:16704087,39619940:2468537,452978,115847 +k1,1097:16704087,39619940:3277 +h1,1097:19169347,39619940:0,411205,112570 +) +k1,1097:19397848,39619940:225224 +k1,1097:21633717,39619940:225224 +k1,1097:23143447,39619940:225224 +k1,1097:24360231,39619940:225224 +k1,1097:27347797,39619940:225223 +k1,1097:29140642,39619940:225224 +k1,1097:30874505,39619940:225224 +k1,1097:32583029,39619940:0 +) +(1,1098:6630773,40461428:25952256,505283,126483 +k1,1097:8060230,40461428:238012 +k1,1097:9402524,40461428:238012 +k1,1097:10388302,40461428:238012 +k1,1097:12664484,40461428:238012 +k1,1097:14093941,40461428:238012 +k1,1097:15845179,40461428:238012 +k1,1097:16699230,40461428:238013 +k1,1097:21505101,40461428:238012 +k1,1097:24532981,40461428:238012 +(1,1097:24532981,40461428:0,452978,115847 +r1,1097:27001518,40461428:2468537,568825,115847 +k1,1097:24532981,40461428:-2468537 +) +(1,1097:24532981,40461428:2468537,452978,115847 +k1,1097:24532981,40461428:3277 +h1,1097:26998241,40461428:0,411205,112570 +) +k1,1097:27239530,40461428:238012 +k1,1097:28009039,40461428:238012 +k1,1097:29760277,40461428:238012 +k1,1097:30649717,40461428:238012 +k1,1097:32583029,40461428:0 +) +(1,1098:6630773,41302916:25952256,513147,126483 +k1,1097:9608477,41302916:161622 +k1,1097:10421526,41302916:161621 +k1,1097:10939008,41302916:161622 +k1,1097:13298708,41302916:161622 +k1,1097:15946110,41302916:161621 +k1,1097:16767024,41302916:161622 +k1,1097:19412461,41302916:161622 +k1,1097:21567033,41302916:161622 +k1,1097:23241880,41302916:161621 +k1,1097:24086387,41302916:161622 +k1,1097:26290766,41302916:161622 +k1,1097:27471472,41302916:161621 +k1,1097:30116909,41302916:161622 +k1,1097:32583029,41302916:0 +) +(1,1098:6630773,42144404:25952256,513147,134348 +g1,1097:8519520,42144404 +(1,1097:8519520,42144404:0,459977,122846 +r1,1097:11339769,42144404:2820249,582823,122846 +k1,1097:8519520,42144404:-2820249 +) +(1,1097:8519520,42144404:2820249,459977,122846 +k1,1097:8519520,42144404:3277 +h1,1097:11336492,42144404:0,411205,112570 +) +g1,1097:11538998,42144404 +g1,1097:14001841,42144404 +g1,1097:14852498,42144404 +g1,1097:16070812,42144404 +g1,1097:19427566,42144404 +g1,1097:22112576,42144404 +g1,1097:22971097,42144404 +g1,1097:26483826,42144404 +k1,1098:32583029,42144404:4140987 +g1,1098:32583029,42144404 +) +v1,1100:6630773,43249291:0,393216,0 +(1,1151:6630773,45510161:25952256,2654086,196608 +g1,1151:6630773,45510161 +g1,1151:6630773,45510161 +g1,1151:6434165,45510161 +(1,1151:6434165,45510161:0,2654086,196608 +r1,1151:32779637,45510161:26345472,2850694,196608 +k1,1151:6434165,45510161:-26345472 +) +(1,1151:6434165,45510161:26345472,2654086,196608 +[1,1151:6630773,45510161:25952256,2457478,0 +(1,1102:6630773,43456909:25952256,404226,107478 +(1,1101:6630773,43456909:0,0,0 +g1,1101:6630773,43456909 +g1,1101:6630773,43456909 +g1,1101:6303093,43456909 +(1,1101:6303093,43456909:0,0,0 +) +g1,1101:6630773,43456909 +) +k1,1102:6630773,43456909:0 +g1,1102:12005250,43456909 +g1,1102:14218270,43456909 +g1,1102:14850562,43456909 +h1,1102:15482854,43456909:0,0,0 +k1,1102:32583030,43456909:17100176 +g1,1102:32583030,43456909 +) +(1,1106:6630773,44188623:25952256,404226,76021 +(1,1104:6630773,44188623:0,0,0 +g1,1104:6630773,44188623 +g1,1104:6630773,44188623 +g1,1104:6303093,44188623 +(1,1104:6303093,44188623:0,0,0 +) +g1,1104:6630773,44188623 +) +g1,1106:7579210,44188623 +g1,1106:8843793,44188623 +h1,1106:10424521,44188623:0,0,0 +k1,1106:32583029,44188623:22158508 +g1,1106:32583029,44188623 +) +(1,1108:6630773,45510161:25952256,410518,107478 +(1,1107:6630773,45510161:0,0,0 +g1,1107:6630773,45510161 +g1,1107:6630773,45510161 +g1,1107:6303093,45510161 +(1,1107:6303093,45510161:0,0,0 +) +g1,1107:6630773,45510161 +) +k1,1108:6630773,45510161:0 +g1,1108:12321396,45510161 +g1,1108:14534416,45510161 +g1,1108:15166708,45510161 +h1,1108:15799000,45510161:0,0,0 +k1,1108:32583028,45510161:16784028 +g1,1108:32583028,45510161 +) +] +) +g1,1151:32583029,45510161 +g1,1151:6630773,45510161 +g1,1151:6630773,45510161 +g1,1151:32583029,45510161 +g1,1151:32583029,45510161 +) +] +(1,1151:32583029,45706769:0,0,0 +g1,1151:32583029,45706769 +) +) +] +(1,1151:6630773,47279633:25952256,0,0 +h1,1151:6630773,47279633:25952256,0,0 +) +] +h1,1151:4262630,4025873:0,0,0 ] !25068 }38 -Input:231:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:232:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:233:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:234:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:235:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:236:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:237:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:238:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:239:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:240:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:241:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:242:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:243:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:244:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:245:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:246:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:247:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:248:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:249:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1626 +Input:227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1740 {39 -[1,1185:4262630,47279633:28320399,43253760,0 -(1,1185:4262630,4025873:0,0,0 -[1,1185:-473657,4025873:25952256,0,0 -(1,1185:-473657,-710414:25952256,0,0 -h1,1185:-473657,-710414:0,0,0 -(1,1185:-473657,-710414:0,0,0 -(1,1185:-473657,-710414:0,0,0 -g1,1185:-473657,-710414 -(1,1185:-473657,-710414:65781,0,65781 -g1,1185:-407876,-710414 -[1,1185:-407876,-644633:0,0,0 +[1,1191:4262630,47279633:28320399,43253760,0 +(1,1191:4262630,4025873:0,0,0 +[1,1191:-473657,4025873:25952256,0,0 +(1,1191:-473657,-710414:25952256,0,0 +h1,1191:-473657,-710414:0,0,0 +(1,1191:-473657,-710414:0,0,0 +(1,1191:-473657,-710414:0,0,0 +g1,1191:-473657,-710414 +(1,1191:-473657,-710414:65781,0,65781 +g1,1191:-407876,-710414 +[1,1191:-407876,-644633:0,0,0 ] ) -k1,1185:-473657,-710414:-65781 +k1,1191:-473657,-710414:-65781 ) ) -k1,1185:25478599,-710414:25952256 -g1,1185:25478599,-710414 +k1,1191:25478599,-710414:25952256 +g1,1191:25478599,-710414 ) ] ) -[1,1185:6630773,47279633:25952256,43253760,0 -[1,1185:6630773,4812305:25952256,786432,0 -(1,1185:6630773,4812305:25952256,505283,134348 -(1,1185:6630773,4812305:25952256,505283,134348 -g1,1185:3078558,4812305 -[1,1185:3078558,4812305:0,0,0 -(1,1185:3078558,2439708:0,1703936,0 -k1,1185:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1185:2537886,2439708:1179648,16384,0 +[1,1191:6630773,47279633:25952256,43253760,0 +[1,1191:6630773,4812305:25952256,786432,0 +(1,1191:6630773,4812305:25952256,505283,134348 +(1,1191:6630773,4812305:25952256,505283,134348 +g1,1191:3078558,4812305 +[1,1191:3078558,4812305:0,0,0 +(1,1191:3078558,2439708:0,1703936,0 +k1,1191:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1191:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1185:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1191:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1185:3078558,4812305:0,0,0 -(1,1185:3078558,2439708:0,1703936,0 -g1,1185:29030814,2439708 -g1,1185:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1185:36151628,1915420:16384,1179648,0 +[1,1191:3078558,4812305:0,0,0 +(1,1191:3078558,2439708:0,1703936,0 +g1,1191:29030814,2439708 +g1,1191:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1191:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1185:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1191:37855564,2439708:1179648,16384,0 ) ) -k1,1185:3078556,2439708:-34777008 +k1,1191:3078556,2439708:-34777008 ) ] -[1,1185:3078558,4812305:0,0,0 -(1,1185:3078558,49800853:0,16384,2228224 -k1,1185:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1185:2537886,49800853:1179648,16384,0 +[1,1191:3078558,4812305:0,0,0 +(1,1191:3078558,49800853:0,16384,2228224 +k1,1191:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1191:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1185:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1191:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1185:3078558,4812305:0,0,0 -(1,1185:3078558,49800853:0,16384,2228224 -g1,1185:29030814,49800853 -g1,1185:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1185:36151628,51504789:16384,1179648,0 +[1,1191:3078558,4812305:0,0,0 +(1,1191:3078558,49800853:0,16384,2228224 +g1,1191:29030814,49800853 +g1,1191:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1191:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1185:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1191:37855564,49800853:1179648,16384,0 ) ) -k1,1185:3078556,49800853:-34777008 +k1,1191:3078556,49800853:-34777008 ) ] -g1,1185:6630773,4812305 -k1,1185:19562994,4812305:12135303 -g1,1185:20949735,4812305 -g1,1185:21598541,4812305 -g1,1185:24912696,4812305 -g1,1185:27600327,4812305 -g1,1185:29010006,4812305 +g1,1191:6630773,4812305 +k1,1191:19515153,4812305:12087462 +g1,1191:20901894,4812305 +g1,1191:21550700,4812305 +g1,1191:24864855,4812305 +g1,1191:27600327,4812305 +g1,1191:29010006,4812305 ) ) ] -[1,1185:6630773,45706769:25952256,40108032,0 -(1,1185:6630773,45706769:25952256,40108032,0 -(1,1185:6630773,45706769:0,0,0 -g1,1185:6630773,45706769 +[1,1191:6630773,45706769:25952256,40108032,0 +(1,1191:6630773,45706769:25952256,40108032,0 +(1,1191:6630773,45706769:0,0,0 +g1,1191:6630773,45706769 ) -[1,1185:6630773,45706769:25952256,40108032,0 -v1,1145:6630773,6254097:0,393216,0 -(1,1145:6630773,20189604:25952256,14328723,196608 -g1,1145:6630773,20189604 -g1,1145:6630773,20189604 -g1,1145:6434165,20189604 -(1,1145:6434165,20189604:0,14328723,196608 -r1,1145:32779637,20189604:26345472,14525331,196608 -k1,1145:6434165,20189604:-26345472 +[1,1191:6630773,45706769:25952256,40108032,0 +v1,1151:6630773,6254097:0,393216,0 +(1,1151:6630773,20189604:25952256,14328723,196608 +g1,1151:6630773,20189604 +g1,1151:6630773,20189604 +g1,1151:6434165,20189604 +(1,1151:6434165,20189604:0,14328723,196608 +r1,1151:32779637,20189604:26345472,14525331,196608 +k1,1151:6434165,20189604:-26345472 ) -(1,1145:6434165,20189604:26345472,14328723,196608 -[1,1145:6630773,20189604:25952256,14132115,0 -(1,1106:6630773,6461715:25952256,404226,76021 -(1,1104:6630773,6461715:0,0,0 -g1,1104:6630773,6461715 -g1,1104:6630773,6461715 -g1,1104:6303093,6461715 -(1,1104:6303093,6461715:0,0,0 -) -g1,1104:6630773,6461715 -) -g1,1106:7579210,6461715 -g1,1106:8843793,6461715 -h1,1106:10740667,6461715:0,0,0 -k1,1106:32583029,6461715:21842362 -g1,1106:32583029,6461715 -) -(1,1108:6630773,7783253:25952256,404226,107478 -(1,1107:6630773,7783253:0,0,0 -g1,1107:6630773,7783253 -g1,1107:6630773,7783253 -g1,1107:6303093,7783253 -(1,1107:6303093,7783253:0,0,0 -) -g1,1107:6630773,7783253 -) -k1,1108:6630773,7783253:0 -g1,1108:12005250,7783253 -g1,1108:14218270,7783253 -g1,1108:14850562,7783253 -h1,1108:15482854,7783253:0,0,0 -k1,1108:32583030,7783253:17100176 -g1,1108:32583030,7783253 -) -(1,1112:6630773,8514967:25952256,404226,76021 -(1,1110:6630773,8514967:0,0,0 -g1,1110:6630773,8514967 -g1,1110:6630773,8514967 -g1,1110:6303093,8514967 -(1,1110:6303093,8514967:0,0,0 -) -g1,1110:6630773,8514967 -) -g1,1112:7579210,8514967 -g1,1112:8843793,8514967 -h1,1112:11372958,8514967:0,0,0 -k1,1112:32583030,8514967:21210072 -g1,1112:32583030,8514967 -) -(1,1114:6630773,9836505:25952256,410518,107478 -(1,1113:6630773,9836505:0,0,0 -g1,1113:6630773,9836505 -g1,1113:6630773,9836505 -g1,1113:6303093,9836505 -(1,1113:6303093,9836505:0,0,0 -) -g1,1113:6630773,9836505 -) -k1,1114:6630773,9836505:0 -g1,1114:12321396,9836505 -g1,1114:14534416,9836505 -g1,1114:15166708,9836505 -h1,1114:15799000,9836505:0,0,0 -k1,1114:32583028,9836505:16784028 -g1,1114:32583028,9836505 -) -(1,1118:6630773,10568219:25952256,404226,76021 -(1,1116:6630773,10568219:0,0,0 -g1,1116:6630773,10568219 -g1,1116:6630773,10568219 -g1,1116:6303093,10568219 -(1,1116:6303093,10568219:0,0,0 -) -g1,1116:6630773,10568219 -) -g1,1118:7579210,10568219 -g1,1118:8843793,10568219 -h1,1118:10108376,10568219:0,0,0 -k1,1118:32583028,10568219:22474652 -g1,1118:32583028,10568219 -) -(1,1120:6630773,11889757:25952256,404226,107478 -(1,1119:6630773,11889757:0,0,0 -g1,1119:6630773,11889757 -g1,1119:6630773,11889757 -g1,1119:6303093,11889757 -(1,1119:6303093,11889757:0,0,0 -) -g1,1119:6630773,11889757 -) -k1,1120:6630773,11889757:0 -g1,1120:12005250,11889757 -g1,1120:14218270,11889757 -g1,1120:14850562,11889757 -k1,1120:14850562,11889757:0 -h1,1120:15799000,11889757:0,0,0 -k1,1120:32583028,11889757:16784028 -g1,1120:32583028,11889757 -) -(1,1124:6630773,12621471:25952256,404226,76021 -(1,1122:6630773,12621471:0,0,0 -g1,1122:6630773,12621471 -g1,1122:6630773,12621471 -g1,1122:6303093,12621471 -(1,1122:6303093,12621471:0,0,0 -) -g1,1122:6630773,12621471 -) -g1,1124:7579210,12621471 -g1,1124:8843793,12621471 -h1,1124:10108376,12621471:0,0,0 -k1,1124:32583028,12621471:22474652 -g1,1124:32583028,12621471 -) -(1,1126:6630773,13943009:25952256,388497,9436 -(1,1125:6630773,13943009:0,0,0 -g1,1125:6630773,13943009 -g1,1125:6630773,13943009 -g1,1125:6303093,13943009 -(1,1125:6303093,13943009:0,0,0 -) -g1,1125:6630773,13943009 -) -g1,1126:7263065,13943009 -g1,1126:8211503,13943009 -h1,1126:10424523,13943009:0,0,0 -k1,1126:32583029,13943009:22158506 -g1,1126:32583029,13943009 -) -(1,1127:6630773,14609187:25952256,404226,107478 -h1,1127:6630773,14609187:0,0,0 -g1,1127:7263065,14609187 -g1,1127:8211503,14609187 -g1,1127:11056814,14609187 -g1,1127:13269834,14609187 -g1,1127:13902126,14609187 -h1,1127:14534418,14609187:0,0,0 -k1,1127:32583030,14609187:18048612 -g1,1127:32583030,14609187 -) -(1,1128:6630773,15275365:25952256,404226,6290 -h1,1128:6630773,15275365:0,0,0 -g1,1128:7263065,15275365 -g1,1128:8211502,15275365 -h1,1128:8527648,15275365:0,0,0 -k1,1128:32583028,15275365:24055380 -g1,1128:32583028,15275365 -) -(1,1132:6630773,16007079:25952256,404226,76021 -(1,1130:6630773,16007079:0,0,0 -g1,1130:6630773,16007079 -g1,1130:6630773,16007079 -g1,1130:6303093,16007079 -(1,1130:6303093,16007079:0,0,0 -) -g1,1130:6630773,16007079 -) -g1,1132:7579210,16007079 -g1,1132:8843793,16007079 -h1,1132:10424521,16007079:0,0,0 -k1,1132:32583029,16007079:22158508 -g1,1132:32583029,16007079 -) -(1,1134:6630773,17328617:25952256,404226,6290 -(1,1133:6630773,17328617:0,0,0 -g1,1133:6630773,17328617 -g1,1133:6630773,17328617 -g1,1133:6303093,17328617 -(1,1133:6303093,17328617:0,0,0 -) -g1,1133:6630773,17328617 -) -g1,1134:7263065,17328617 -g1,1134:7895357,17328617 -h1,1134:8211503,17328617:0,0,0 -k1,1134:32583029,17328617:24371526 -g1,1134:32583029,17328617 -) -(1,1138:6630773,18060331:25952256,404226,76021 -(1,1136:6630773,18060331:0,0,0 -g1,1136:6630773,18060331 -g1,1136:6630773,18060331 -g1,1136:6303093,18060331 -(1,1136:6303093,18060331:0,0,0 -) -g1,1136:6630773,18060331 -) -g1,1138:7579210,18060331 -g1,1138:8843793,18060331 -h1,1138:11056813,18060331:0,0,0 -k1,1138:32583029,18060331:21526216 -g1,1138:32583029,18060331 -) -(1,1140:6630773,19381869:25952256,404226,6290 -(1,1139:6630773,19381869:0,0,0 -g1,1139:6630773,19381869 -g1,1139:6630773,19381869 -g1,1139:6303093,19381869 -(1,1139:6303093,19381869:0,0,0 -) -g1,1139:6630773,19381869 -) -h1,1140:6946919,19381869:0,0,0 -k1,1140:32583029,19381869:25636110 -g1,1140:32583029,19381869 -) -(1,1144:6630773,20113583:25952256,404226,76021 -(1,1142:6630773,20113583:0,0,0 -g1,1142:6630773,20113583 -g1,1142:6630773,20113583 -g1,1142:6303093,20113583 -(1,1142:6303093,20113583:0,0,0 -) -g1,1142:6630773,20113583 -) -g1,1144:7579210,20113583 -g1,1144:8843793,20113583 -h1,1144:10108376,20113583:0,0,0 -k1,1144:32583028,20113583:22474652 -g1,1144:32583028,20113583 -) -] -) -g1,1145:32583029,20189604 -g1,1145:6630773,20189604 -g1,1145:6630773,20189604 -g1,1145:32583029,20189604 -g1,1145:32583029,20189604 -) -h1,1145:6630773,20386212:0,0,0 -v1,1149:6630773,22276276:0,393216,0 -(1,1167:6630773,30323926:25952256,8440866,616038 -g1,1167:6630773,30323926 -(1,1167:6630773,30323926:25952256,8440866,616038 -(1,1167:6630773,30939964:25952256,9056904,0 -[1,1167:6630773,30939964:25952256,9056904,0 -(1,1167:6630773,30913750:25952256,9004476,0 -r1,1167:6656987,30913750:26214,9004476,0 -[1,1167:6656987,30913750:25899828,9004476,0 -(1,1167:6656987,30323926:25899828,7824828,0 -[1,1167:7246811,30323926:24720180,7824828,0 -(1,1150:7246811,23660983:24720180,1161885,196608 -(1,1149:7246811,23660983:0,1161885,196608 -r1,1167:8794447,23660983:1547636,1358493,196608 -k1,1149:7246811,23660983:-1547636 -) -(1,1149:7246811,23660983:1547636,1161885,196608 -) -k1,1149:8962903,23660983:168456 -k1,1149:10868063,23660983:168456 -(1,1149:10868063,23660983:0,452978,122846 -r1,1167:12984888,23660983:2116825,575824,122846 -k1,1149:10868063,23660983:-2116825 -) -(1,1149:10868063,23660983:2116825,452978,122846 -k1,1149:10868063,23660983:3277 -h1,1149:12981611,23660983:0,411205,112570 -) -k1,1149:13327014,23660983:168456 -k1,1149:14514555,23660983:168456 -k1,1149:16924342,23660983:168456 -k1,1149:20373529,23660983:168455 -k1,1149:21201277,23660983:168456 -k1,1149:23066460,23660983:168456 -k1,1149:26434384,23660983:168456 -k1,1149:27621925,23660983:168456 -k1,1149:30862709,23660983:168456 -k1,1149:31966991,23660983:0 -) -(1,1150:7246811,24502471:24720180,513147,126483 -k1,1149:8744964,24502471:212337 -k1,1149:9705066,24502471:212336 -k1,1149:12122690,24502471:212337 -k1,1149:13096554,24502471:212336 -k1,1149:16096793,24502471:212337 -k1,1149:19243831,24502471:212336 -k1,1149:20952355,24502471:212337 -k1,1149:21696188,24502471:212336 -k1,1149:24195732,24502471:212337 -k1,1149:26278466,24502471:212336 -k1,1149:27142231,24502471:212337 -k1,1149:31019340,24502471:212336 -k1,1149:31966991,24502471:0 -) -(1,1150:7246811,25343959:24720180,505283,126483 -g1,1149:9996701,25343959 -g1,1149:11893968,25343959 -g1,1149:15373929,25343959 -g1,1149:17641474,25343959 -g1,1149:18832263,25343959 -g1,1149:20775405,25343959 -k1,1150:31966991,25343959:8686800 -g1,1150:31966991,25343959 -) -v1,1152:7246811,26534425:0,393216,0 -(1,1165:7246811,29603030:24720180,3461821,196608 -g1,1165:7246811,29603030 -g1,1165:7246811,29603030 -g1,1165:7050203,29603030 -(1,1165:7050203,29603030:0,3461821,196608 -r1,1167:32163599,29603030:25113396,3658429,196608 -k1,1165:7050203,29603030:-25113396 -) -(1,1165:7050203,29603030:25113396,3461821,196608 -[1,1165:7246811,29603030:24720180,3265213,0 -(1,1154:7246811,26742043:24720180,404226,107478 -(1,1153:7246811,26742043:0,0,0 -g1,1153:7246811,26742043 -g1,1153:7246811,26742043 -g1,1153:6919131,26742043 -(1,1153:6919131,26742043:0,0,0 -) -g1,1153:7246811,26742043 -) -k1,1154:7246811,26742043:0 -g1,1154:12621288,26742043 -g1,1154:14834308,26742043 -g1,1154:15466600,26742043 -h1,1154:16098892,26742043:0,0,0 -k1,1154:31966991,26742043:15868099 -g1,1154:31966991,26742043 -) -(1,1158:7246811,27473757:24720180,404226,76021 -(1,1156:7246811,27473757:0,0,0 -g1,1156:7246811,27473757 -g1,1156:7246811,27473757 -g1,1156:6919131,27473757 -(1,1156:6919131,27473757:0,0,0 -) -g1,1156:7246811,27473757 -) -g1,1158:8195248,27473757 -g1,1158:9459831,27473757 -h1,1158:11040559,27473757:0,0,0 -k1,1158:31966991,27473757:20926432 -g1,1158:31966991,27473757 -) -(1,1160:7246811,28795295:24720180,404226,82312 -(1,1159:7246811,28795295:0,0,0 -g1,1159:7246811,28795295 -g1,1159:7246811,28795295 -g1,1159:6919131,28795295 -(1,1159:6919131,28795295:0,0,0 -) -g1,1159:7246811,28795295 -) -k1,1160:7246811,28795295:0 -g1,1160:12621288,28795295 -h1,1160:13253580,28795295:0,0,0 -k1,1160:31966992,28795295:18713412 -g1,1160:31966992,28795295 -) -(1,1164:7246811,29527009:24720180,404226,76021 -(1,1162:7246811,29527009:0,0,0 -g1,1162:7246811,29527009 -g1,1162:7246811,29527009 -g1,1162:6919131,29527009 -(1,1162:6919131,29527009:0,0,0 -) -g1,1162:7246811,29527009 -) -g1,1164:8195248,29527009 -g1,1164:9459831,29527009 -h1,1164:11040559,29527009:0,0,0 -k1,1164:31966991,29527009:20926432 -g1,1164:31966991,29527009 -) -] -) -g1,1165:31966991,29603030 -g1,1165:7246811,29603030 -g1,1165:7246811,29603030 -g1,1165:31966991,29603030 -g1,1165:31966991,29603030 -) -h1,1165:7246811,29799638:0,0,0 -] -) -] -r1,1167:32583029,30913750:26214,9004476,0 -) -] -) -) -g1,1167:32583029,30323926 -) -h1,1167:6630773,30939964:0,0,0 -(1,1170:6630773,32305740:25952256,513147,126483 -h1,1169:6630773,32305740:983040,0,0 -k1,1169:10986183,32305740:252201 -(1,1169:10986183,32305740:0,452978,115847 -r1,1169:13454720,32305740:2468537,568825,115847 -k1,1169:10986183,32305740:-2468537 -) -(1,1169:10986183,32305740:2468537,452978,115847 -k1,1169:10986183,32305740:3277 -h1,1169:13451443,32305740:0,411205,112570 -) -k1,1169:13706921,32305740:252201 -k1,1169:15150567,32305740:252201 -(1,1169:15150567,32305740:0,452978,122846 -r1,1169:18322527,32305740:3171960,575824,122846 -k1,1169:15150567,32305740:-3171960 -) -(1,1169:15150567,32305740:3171960,452978,122846 -k1,1169:15150567,32305740:3277 -h1,1169:18319250,32305740:0,411205,112570 -) -k1,1169:18574728,32305740:252201 -k1,1169:20837575,32305740:252202 -k1,1169:22108861,32305740:252201 -k1,1169:26869284,32305740:252201 -k1,1169:28443346,32305740:252201 -k1,1169:29354839,32305740:252201 -k1,1169:29962900,32305740:252201 -k1,1169:32583029,32305740:0 -) -(1,1170:6630773,33147228:25952256,513147,134348 -k1,1169:8500796,33147228:189680 -k1,1169:9376638,33147228:189680 -k1,1169:9922178,33147228:189680 -k1,1169:11395052,33147228:189679 -k1,1169:14204861,33147228:189680 -k1,1169:16248555,33147228:189680 -k1,1169:17996026,33147228:189680 -k1,1169:19928964,33147228:189680 -k1,1169:20734682,33147228:189680 -k1,1169:22254743,33147228:189680 -k1,1169:23824610,33147228:189679 -k1,1169:26173046,33147228:189680 -k1,1169:29017589,33147228:189680 -k1,1169:31391584,33147228:189680 -k1,1169:32583029,33147228:0 -) -(1,1170:6630773,33988716:25952256,513147,7863 -g1,1169:9100825,33988716 -g1,1169:9959346,33988716 -g1,1169:11797630,33988716 -g1,1169:14260473,33988716 -g1,1169:15478787,33988716 -g1,1169:18456743,33988716 -g1,1169:20336315,33988716 -g1,1169:21186972,33988716 -g1,1169:22405286,33988716 -g1,1169:24945461,33988716 -g1,1169:27027539,33988716 -k1,1170:32583029,33988716:2896039 -g1,1170:32583029,33988716 -) -v1,1172:6630773,35354492:0,393216,0 -(1,1178:6630773,43937251:25952256,8975975,616038 -g1,1178:6630773,43937251 -(1,1178:6630773,43937251:25952256,8975975,616038 -(1,1178:6630773,44553289:25952256,9592013,0 -[1,1178:6630773,44553289:25952256,9592013,0 -(1,1178:6630773,44527075:25952256,9539585,0 -r1,1178:6656987,44527075:26214,9539585,0 -[1,1178:6656987,44527075:25899828,9539585,0 -(1,1178:6656987,43937251:25899828,8359937,0 -[1,1178:7246811,43937251:24720180,8359937,0 -(1,1173:7246811,36664688:24720180,1087374,115847 -k1,1172:8663834,36664688:207320 -k1,1172:10504967,36664688:207320 -k1,1172:12205197,36664688:207320 -k1,1172:14092860,36664688:207320 -k1,1172:17632031,36664688:207321 -k1,1172:19904390,36664688:207320 -k1,1172:22901578,36664688:207320 -(1,1172:22901578,36664688:0,452978,115847 -r1,1178:25370115,36664688:2468537,568825,115847 -k1,1172:22901578,36664688:-2468537 -) -(1,1172:22901578,36664688:2468537,452978,115847 -k1,1172:22901578,36664688:3277 -h1,1172:25366838,36664688:0,411205,112570 -) -k1,1172:25577435,36664688:207320 -k1,1172:28783682,36664688:207320 -k1,1172:29346862,36664688:207320 -k1,1172:31966991,36664688:0 -) -(1,1173:7246811,37506176:24720180,505283,122846 -g1,1172:9300054,37506176 -g1,1172:10571452,37506176 -g1,1172:11228778,37506176 -g1,1172:12920917,37506176 -g1,1172:14186417,37506176 -g1,1172:16396291,37506176 -g1,1172:17366223,37506176 -(1,1172:17366223,37506176:0,452978,122846 -r1,1178:19834760,37506176:2468537,575824,122846 -k1,1172:17366223,37506176:-2468537 -) -(1,1172:17366223,37506176:2468537,452978,122846 -k1,1172:17366223,37506176:3277 -h1,1172:19831483,37506176:0,411205,112570 -) -k1,1173:31966991,37506176:11958561 -g1,1173:31966991,37506176 -) -(1,1175:8295387,38871952:23671604,513147,126483 -(1,1174:8295387,38871952:0,355205,0 -g1,1174:8295387,38871952 -g1,1174:6984667,38871952 -g1,1174:6656987,38871952 -(1,1174:6656987,38871952:1310720,355205,0 -k1,1174:7967707,38871952:1310720 -(1,1174:7967707,38871952:0,355205,0 -k1,1174:7569248,38871952:-398459 -) -) -g1,1174:8295387,38871952 -) -k1,1174:10835698,38871952:148247 -k1,1174:12314327,38871952:148248 -(1,1174:12314327,38871952:0,452978,115847 -r1,1178:14782864,38871952:2468537,568825,115847 -k1,1174:12314327,38871952:-2468537 -) -(1,1174:12314327,38871952:2468537,452978,115847 -k1,1174:12314327,38871952:3277 -h1,1174:14779587,38871952:0,411205,112570 -) -k1,1174:14931111,38871952:148247 -k1,1174:16270803,38871952:148247 -(1,1174:16270803,38871952:0,452978,122846 -r1,1178:19442763,38871952:3171960,575824,122846 -k1,1174:16270803,38871952:-3171960 -) -(1,1174:16270803,38871952:3171960,452978,122846 -k1,1174:16270803,38871952:3277 -h1,1174:19439486,38871952:0,411205,112570 -) -k1,1174:19591011,38871952:148248 -k1,1174:21656186,38871952:148247 -k1,1174:23173481,38871952:148248 -k1,1174:24960783,38871952:148247 -k1,1174:26575726,38871952:148247 -k1,1174:28117925,38871952:148248 -k1,1174:30775546,38871952:148247 -k1,1174:31966991,38871952:0 -) -(1,1175:8295387,39713440:23671604,505283,134348 -g1,1174:11149479,39713440 -k1,1175:31966990,39713440:18633196 -g1,1175:31966990,39713440 -) -(1,1176:8295387,41079216:23671604,513147,126483 -(1,1175:8295387,41079216:0,355205,0 -g1,1175:8295387,41079216 -g1,1175:6984667,41079216 -g1,1175:6656987,41079216 -(1,1175:6656987,41079216:1310720,355205,0 -k1,1175:7967707,41079216:1310720 -(1,1175:7967707,41079216:0,355205,0 -k1,1175:7569248,41079216:-398459 -) -) -g1,1175:8295387,41079216 -) -k1,1175:11813923,41079216:196516 -k1,1175:13159284,41079216:196515 -k1,1175:16051296,41079216:196516 -(1,1175:16051296,41079216:0,452978,115847 -r1,1178:17816409,41079216:1765113,568825,115847 -k1,1175:16051296,41079216:-1765113 -) -(1,1175:16051296,41079216:1765113,452978,115847 -k1,1175:16051296,41079216:3277 -h1,1175:17813132,41079216:0,411205,112570 -) -k1,1175:18012924,41079216:196515 -k1,1175:19400885,41079216:196516 -k1,1175:22674315,41079216:196515 -(1,1175:22674315,41079216:0,414482,115847 -r1,1178:23032581,41079216:358266,530329,115847 -k1,1175:22674315,41079216:-358266 -) -(1,1175:22674315,41079216:358266,414482,115847 -k1,1175:22674315,41079216:3277 -h1,1175:23029304,41079216:0,411205,112570 -) -k1,1175:23229097,41079216:196516 -k1,1175:24617058,41079216:196516 -(1,1175:24617058,41079216:0,414482,115847 -r1,1178:24975324,41079216:358266,530329,115847 -k1,1175:24617058,41079216:-358266 -) -(1,1175:24617058,41079216:358266,414482,115847 -k1,1175:24617058,41079216:3277 -h1,1175:24972047,41079216:0,411205,112570 +(1,1151:6434165,20189604:26345472,14328723,196608 +[1,1151:6630773,20189604:25952256,14132115,0 +(1,1112:6630773,6461715:25952256,404226,76021 +(1,1110:6630773,6461715:0,0,0 +g1,1110:6630773,6461715 +g1,1110:6630773,6461715 +g1,1110:6303093,6461715 +(1,1110:6303093,6461715:0,0,0 +) +g1,1110:6630773,6461715 +) +g1,1112:7579210,6461715 +g1,1112:8843793,6461715 +h1,1112:10740667,6461715:0,0,0 +k1,1112:32583029,6461715:21842362 +g1,1112:32583029,6461715 +) +(1,1114:6630773,7783253:25952256,404226,107478 +(1,1113:6630773,7783253:0,0,0 +g1,1113:6630773,7783253 +g1,1113:6630773,7783253 +g1,1113:6303093,7783253 +(1,1113:6303093,7783253:0,0,0 +) +g1,1113:6630773,7783253 +) +k1,1114:6630773,7783253:0 +g1,1114:12005250,7783253 +g1,1114:14218270,7783253 +g1,1114:14850562,7783253 +h1,1114:15482854,7783253:0,0,0 +k1,1114:32583030,7783253:17100176 +g1,1114:32583030,7783253 +) +(1,1118:6630773,8514967:25952256,404226,76021 +(1,1116:6630773,8514967:0,0,0 +g1,1116:6630773,8514967 +g1,1116:6630773,8514967 +g1,1116:6303093,8514967 +(1,1116:6303093,8514967:0,0,0 +) +g1,1116:6630773,8514967 +) +g1,1118:7579210,8514967 +g1,1118:8843793,8514967 +h1,1118:11372958,8514967:0,0,0 +k1,1118:32583030,8514967:21210072 +g1,1118:32583030,8514967 +) +(1,1120:6630773,9836505:25952256,410518,107478 +(1,1119:6630773,9836505:0,0,0 +g1,1119:6630773,9836505 +g1,1119:6630773,9836505 +g1,1119:6303093,9836505 +(1,1119:6303093,9836505:0,0,0 +) +g1,1119:6630773,9836505 +) +k1,1120:6630773,9836505:0 +g1,1120:12321396,9836505 +g1,1120:14534416,9836505 +g1,1120:15166708,9836505 +h1,1120:15799000,9836505:0,0,0 +k1,1120:32583028,9836505:16784028 +g1,1120:32583028,9836505 +) +(1,1124:6630773,10568219:25952256,404226,76021 +(1,1122:6630773,10568219:0,0,0 +g1,1122:6630773,10568219 +g1,1122:6630773,10568219 +g1,1122:6303093,10568219 +(1,1122:6303093,10568219:0,0,0 +) +g1,1122:6630773,10568219 +) +g1,1124:7579210,10568219 +g1,1124:8843793,10568219 +h1,1124:10108376,10568219:0,0,0 +k1,1124:32583028,10568219:22474652 +g1,1124:32583028,10568219 +) +(1,1126:6630773,11889757:25952256,404226,107478 +(1,1125:6630773,11889757:0,0,0 +g1,1125:6630773,11889757 +g1,1125:6630773,11889757 +g1,1125:6303093,11889757 +(1,1125:6303093,11889757:0,0,0 +) +g1,1125:6630773,11889757 +) +k1,1126:6630773,11889757:0 +g1,1126:12005250,11889757 +g1,1126:14218270,11889757 +g1,1126:14850562,11889757 +k1,1126:14850562,11889757:0 +h1,1126:15799000,11889757:0,0,0 +k1,1126:32583028,11889757:16784028 +g1,1126:32583028,11889757 +) +(1,1130:6630773,12621471:25952256,404226,76021 +(1,1128:6630773,12621471:0,0,0 +g1,1128:6630773,12621471 +g1,1128:6630773,12621471 +g1,1128:6303093,12621471 +(1,1128:6303093,12621471:0,0,0 +) +g1,1128:6630773,12621471 +) +g1,1130:7579210,12621471 +g1,1130:8843793,12621471 +h1,1130:10108376,12621471:0,0,0 +k1,1130:32583028,12621471:22474652 +g1,1130:32583028,12621471 +) +(1,1132:6630773,13943009:25952256,388497,9436 +(1,1131:6630773,13943009:0,0,0 +g1,1131:6630773,13943009 +g1,1131:6630773,13943009 +g1,1131:6303093,13943009 +(1,1131:6303093,13943009:0,0,0 +) +g1,1131:6630773,13943009 +) +g1,1132:7263065,13943009 +g1,1132:8211503,13943009 +h1,1132:10424523,13943009:0,0,0 +k1,1132:32583029,13943009:22158506 +g1,1132:32583029,13943009 +) +(1,1133:6630773,14609187:25952256,404226,107478 +h1,1133:6630773,14609187:0,0,0 +g1,1133:7263065,14609187 +g1,1133:8211503,14609187 +g1,1133:11056814,14609187 +g1,1133:13269834,14609187 +g1,1133:13902126,14609187 +h1,1133:14534418,14609187:0,0,0 +k1,1133:32583030,14609187:18048612 +g1,1133:32583030,14609187 +) +(1,1134:6630773,15275365:25952256,404226,6290 +h1,1134:6630773,15275365:0,0,0 +g1,1134:7263065,15275365 +g1,1134:8211502,15275365 +h1,1134:8527648,15275365:0,0,0 +k1,1134:32583028,15275365:24055380 +g1,1134:32583028,15275365 +) +(1,1138:6630773,16007079:25952256,404226,76021 +(1,1136:6630773,16007079:0,0,0 +g1,1136:6630773,16007079 +g1,1136:6630773,16007079 +g1,1136:6303093,16007079 +(1,1136:6303093,16007079:0,0,0 +) +g1,1136:6630773,16007079 +) +g1,1138:7579210,16007079 +g1,1138:8843793,16007079 +h1,1138:10424521,16007079:0,0,0 +k1,1138:32583029,16007079:22158508 +g1,1138:32583029,16007079 +) +(1,1140:6630773,17328617:25952256,404226,6290 +(1,1139:6630773,17328617:0,0,0 +g1,1139:6630773,17328617 +g1,1139:6630773,17328617 +g1,1139:6303093,17328617 +(1,1139:6303093,17328617:0,0,0 +) +g1,1139:6630773,17328617 +) +g1,1140:7263065,17328617 +g1,1140:7895357,17328617 +h1,1140:8211503,17328617:0,0,0 +k1,1140:32583029,17328617:24371526 +g1,1140:32583029,17328617 +) +(1,1144:6630773,18060331:25952256,404226,76021 +(1,1142:6630773,18060331:0,0,0 +g1,1142:6630773,18060331 +g1,1142:6630773,18060331 +g1,1142:6303093,18060331 +(1,1142:6303093,18060331:0,0,0 +) +g1,1142:6630773,18060331 +) +g1,1144:7579210,18060331 +g1,1144:8843793,18060331 +h1,1144:11056813,18060331:0,0,0 +k1,1144:32583029,18060331:21526216 +g1,1144:32583029,18060331 +) +(1,1146:6630773,19381869:25952256,404226,6290 +(1,1145:6630773,19381869:0,0,0 +g1,1145:6630773,19381869 +g1,1145:6630773,19381869 +g1,1145:6303093,19381869 +(1,1145:6303093,19381869:0,0,0 +) +g1,1145:6630773,19381869 +) +h1,1146:6946919,19381869:0,0,0 +k1,1146:32583029,19381869:25636110 +g1,1146:32583029,19381869 +) +(1,1150:6630773,20113583:25952256,404226,76021 +(1,1148:6630773,20113583:0,0,0 +g1,1148:6630773,20113583 +g1,1148:6630773,20113583 +g1,1148:6303093,20113583 +(1,1148:6303093,20113583:0,0,0 +) +g1,1148:6630773,20113583 +) +g1,1150:7579210,20113583 +g1,1150:8843793,20113583 +h1,1150:10108376,20113583:0,0,0 +k1,1150:32583028,20113583:22474652 +g1,1150:32583028,20113583 +) +] +) +g1,1151:32583029,20189604 +g1,1151:6630773,20189604 +g1,1151:6630773,20189604 +g1,1151:32583029,20189604 +g1,1151:32583029,20189604 +) +h1,1151:6630773,20386212:0,0,0 +v1,1155:6630773,22276276:0,393216,0 +(1,1173:6630773,30323926:25952256,8440866,616038 +g1,1173:6630773,30323926 +(1,1173:6630773,30323926:25952256,8440866,616038 +(1,1173:6630773,30939964:25952256,9056904,0 +[1,1173:6630773,30939964:25952256,9056904,0 +(1,1173:6630773,30913750:25952256,9004476,0 +r1,1173:6656987,30913750:26214,9004476,0 +[1,1173:6656987,30913750:25899828,9004476,0 +(1,1173:6656987,30323926:25899828,7824828,0 +[1,1173:7246811,30323926:24720180,7824828,0 +(1,1156:7246811,23660983:24720180,1161885,196608 +(1,1155:7246811,23660983:0,1161885,196608 +r1,1173:8794447,23660983:1547636,1358493,196608 +k1,1155:7246811,23660983:-1547636 +) +(1,1155:7246811,23660983:1547636,1161885,196608 +) +k1,1155:8962903,23660983:168456 +k1,1155:10868063,23660983:168456 +(1,1155:10868063,23660983:0,452978,122846 +r1,1173:12984888,23660983:2116825,575824,122846 +k1,1155:10868063,23660983:-2116825 +) +(1,1155:10868063,23660983:2116825,452978,122846 +k1,1155:10868063,23660983:3277 +h1,1155:12981611,23660983:0,411205,112570 +) +k1,1155:13327014,23660983:168456 +k1,1155:14514555,23660983:168456 +k1,1155:16924342,23660983:168456 +k1,1155:20373529,23660983:168455 +k1,1155:21201277,23660983:168456 +k1,1155:23066460,23660983:168456 +k1,1155:26434384,23660983:168456 +k1,1155:27621925,23660983:168456 +k1,1155:30862709,23660983:168456 +k1,1155:31966991,23660983:0 +) +(1,1156:7246811,24502471:24720180,513147,126483 +k1,1155:8744964,24502471:212337 +k1,1155:9705066,24502471:212336 +k1,1155:12122690,24502471:212337 +k1,1155:13096554,24502471:212336 +k1,1155:16096793,24502471:212337 +k1,1155:19243831,24502471:212336 +k1,1155:20952355,24502471:212337 +k1,1155:21696188,24502471:212336 +k1,1155:24195732,24502471:212337 +k1,1155:26278466,24502471:212336 +k1,1155:27142231,24502471:212337 +k1,1155:31019340,24502471:212336 +k1,1155:31966991,24502471:0 +) +(1,1156:7246811,25343959:24720180,505283,126483 +g1,1155:9996701,25343959 +g1,1155:11893968,25343959 +g1,1155:15373929,25343959 +g1,1155:17641474,25343959 +g1,1155:18832263,25343959 +g1,1155:20775405,25343959 +k1,1156:31966991,25343959:8686800 +g1,1156:31966991,25343959 +) +v1,1158:7246811,26534425:0,393216,0 +(1,1171:7246811,29603030:24720180,3461821,196608 +g1,1171:7246811,29603030 +g1,1171:7246811,29603030 +g1,1171:7050203,29603030 +(1,1171:7050203,29603030:0,3461821,196608 +r1,1173:32163599,29603030:25113396,3658429,196608 +k1,1171:7050203,29603030:-25113396 +) +(1,1171:7050203,29603030:25113396,3461821,196608 +[1,1171:7246811,29603030:24720180,3265213,0 +(1,1160:7246811,26742043:24720180,404226,107478 +(1,1159:7246811,26742043:0,0,0 +g1,1159:7246811,26742043 +g1,1159:7246811,26742043 +g1,1159:6919131,26742043 +(1,1159:6919131,26742043:0,0,0 +) +g1,1159:7246811,26742043 +) +k1,1160:7246811,26742043:0 +g1,1160:12621288,26742043 +g1,1160:14834308,26742043 +g1,1160:15466600,26742043 +h1,1160:16098892,26742043:0,0,0 +k1,1160:31966991,26742043:15868099 +g1,1160:31966991,26742043 +) +(1,1164:7246811,27473757:24720180,404226,76021 +(1,1162:7246811,27473757:0,0,0 +g1,1162:7246811,27473757 +g1,1162:7246811,27473757 +g1,1162:6919131,27473757 +(1,1162:6919131,27473757:0,0,0 +) +g1,1162:7246811,27473757 +) +g1,1164:8195248,27473757 +g1,1164:9459831,27473757 +h1,1164:11040559,27473757:0,0,0 +k1,1164:31966991,27473757:20926432 +g1,1164:31966991,27473757 +) +(1,1166:7246811,28795295:24720180,404226,82312 +(1,1165:7246811,28795295:0,0,0 +g1,1165:7246811,28795295 +g1,1165:7246811,28795295 +g1,1165:6919131,28795295 +(1,1165:6919131,28795295:0,0,0 +) +g1,1165:7246811,28795295 +) +k1,1166:7246811,28795295:0 +g1,1166:12621288,28795295 +h1,1166:13253580,28795295:0,0,0 +k1,1166:31966992,28795295:18713412 +g1,1166:31966992,28795295 +) +(1,1170:7246811,29527009:24720180,404226,76021 +(1,1168:7246811,29527009:0,0,0 +g1,1168:7246811,29527009 +g1,1168:7246811,29527009 +g1,1168:6919131,29527009 +(1,1168:6919131,29527009:0,0,0 +) +g1,1168:7246811,29527009 +) +g1,1170:8195248,29527009 +g1,1170:9459831,29527009 +h1,1170:11040559,29527009:0,0,0 +k1,1170:31966991,29527009:20926432 +g1,1170:31966991,29527009 +) +] +) +g1,1171:31966991,29603030 +g1,1171:7246811,29603030 +g1,1171:7246811,29603030 +g1,1171:31966991,29603030 +g1,1171:31966991,29603030 +) +h1,1171:7246811,29799638:0,0,0 +] +) +] +r1,1173:32583029,30913750:26214,9004476,0 +) +] +) +) +g1,1173:32583029,30323926 +) +h1,1173:6630773,30939964:0,0,0 +(1,1176:6630773,32305740:25952256,513147,126483 +h1,1175:6630773,32305740:983040,0,0 +k1,1175:10986183,32305740:252201 +(1,1175:10986183,32305740:0,452978,115847 +r1,1175:13454720,32305740:2468537,568825,115847 +k1,1175:10986183,32305740:-2468537 +) +(1,1175:10986183,32305740:2468537,452978,115847 +k1,1175:10986183,32305740:3277 +h1,1175:13451443,32305740:0,411205,112570 +) +k1,1175:13706921,32305740:252201 +k1,1175:15150567,32305740:252201 +(1,1175:15150567,32305740:0,452978,122846 +r1,1175:18322527,32305740:3171960,575824,122846 +k1,1175:15150567,32305740:-3171960 +) +(1,1175:15150567,32305740:3171960,452978,122846 +k1,1175:15150567,32305740:3277 +h1,1175:18319250,32305740:0,411205,112570 +) +k1,1175:18574728,32305740:252201 +k1,1175:20837575,32305740:252202 +k1,1175:22108861,32305740:252201 +k1,1175:26869284,32305740:252201 +k1,1175:28443346,32305740:252201 +k1,1175:29354839,32305740:252201 +k1,1175:29962900,32305740:252201 +k1,1175:32583029,32305740:0 +) +(1,1176:6630773,33147228:25952256,513147,134348 +k1,1175:8500796,33147228:189680 +k1,1175:9376638,33147228:189680 +k1,1175:9922178,33147228:189680 +k1,1175:11395052,33147228:189679 +k1,1175:14204861,33147228:189680 +k1,1175:16248555,33147228:189680 +k1,1175:17996026,33147228:189680 +k1,1175:19928964,33147228:189680 +k1,1175:20734682,33147228:189680 +k1,1175:22254743,33147228:189680 +k1,1175:23824610,33147228:189679 +k1,1175:26173046,33147228:189680 +k1,1175:29017589,33147228:189680 +k1,1175:31391584,33147228:189680 +k1,1175:32583029,33147228:0 +) +(1,1176:6630773,33988716:25952256,513147,7863 +g1,1175:9100825,33988716 +g1,1175:9959346,33988716 +g1,1175:11797630,33988716 +g1,1175:14260473,33988716 +g1,1175:15478787,33988716 +g1,1175:18456743,33988716 +g1,1175:20336315,33988716 +g1,1175:21186972,33988716 +g1,1175:22405286,33988716 +g1,1175:24945461,33988716 +g1,1175:27027539,33988716 +k1,1176:32583029,33988716:2896039 +g1,1176:32583029,33988716 +) +v1,1178:6630773,35354492:0,393216,0 +(1,1184:6630773,43937251:25952256,8975975,616038 +g1,1184:6630773,43937251 +(1,1184:6630773,43937251:25952256,8975975,616038 +(1,1184:6630773,44553289:25952256,9592013,0 +[1,1184:6630773,44553289:25952256,9592013,0 +(1,1184:6630773,44527075:25952256,9539585,0 +r1,1184:6656987,44527075:26214,9539585,0 +[1,1184:6656987,44527075:25899828,9539585,0 +(1,1184:6656987,43937251:25899828,8359937,0 +[1,1184:7246811,43937251:24720180,8359937,0 +(1,1179:7246811,36664688:24720180,1087374,115847 +k1,1178:8663834,36664688:207320 +k1,1178:10504967,36664688:207320 +k1,1178:12205197,36664688:207320 +k1,1178:14092860,36664688:207320 +k1,1178:17632031,36664688:207321 +k1,1178:19904390,36664688:207320 +k1,1178:22901578,36664688:207320 +(1,1178:22901578,36664688:0,452978,115847 +r1,1184:25370115,36664688:2468537,568825,115847 +k1,1178:22901578,36664688:-2468537 +) +(1,1178:22901578,36664688:2468537,452978,115847 +k1,1178:22901578,36664688:3277 +h1,1178:25366838,36664688:0,411205,112570 +) +k1,1178:25577435,36664688:207320 +k1,1178:28783682,36664688:207320 +k1,1178:29346862,36664688:207320 +k1,1178:31966991,36664688:0 +) +(1,1179:7246811,37506176:24720180,505283,122846 +g1,1178:9300054,37506176 +g1,1178:10571452,37506176 +g1,1178:11228778,37506176 +g1,1178:12920917,37506176 +g1,1178:14186417,37506176 +g1,1178:16396291,37506176 +g1,1178:17366223,37506176 +(1,1178:17366223,37506176:0,452978,122846 +r1,1184:19834760,37506176:2468537,575824,122846 +k1,1178:17366223,37506176:-2468537 +) +(1,1178:17366223,37506176:2468537,452978,122846 +k1,1178:17366223,37506176:3277 +h1,1178:19831483,37506176:0,411205,112570 +) +k1,1179:31966991,37506176:11958561 +g1,1179:31966991,37506176 +) +(1,1181:8295387,38871952:23671604,513147,126483 +(1,1180:8295387,38871952:0,355205,0 +g1,1180:8295387,38871952 +g1,1180:6984667,38871952 +g1,1180:6656987,38871952 +(1,1180:6656987,38871952:1310720,355205,0 +k1,1180:7967707,38871952:1310720 +(1,1180:7967707,38871952:0,355205,0 +k1,1180:7569248,38871952:-398459 +) +) +g1,1180:8295387,38871952 +) +k1,1180:10835698,38871952:148247 +k1,1180:12314327,38871952:148248 +(1,1180:12314327,38871952:0,452978,115847 +r1,1184:14782864,38871952:2468537,568825,115847 +k1,1180:12314327,38871952:-2468537 +) +(1,1180:12314327,38871952:2468537,452978,115847 +k1,1180:12314327,38871952:3277 +h1,1180:14779587,38871952:0,411205,112570 +) +k1,1180:14931111,38871952:148247 +k1,1180:16270803,38871952:148247 +(1,1180:16270803,38871952:0,452978,122846 +r1,1184:19442763,38871952:3171960,575824,122846 +k1,1180:16270803,38871952:-3171960 +) +(1,1180:16270803,38871952:3171960,452978,122846 +k1,1180:16270803,38871952:3277 +h1,1180:19439486,38871952:0,411205,112570 +) +k1,1180:19591011,38871952:148248 +k1,1180:21656186,38871952:148247 +k1,1180:23173481,38871952:148248 +k1,1180:24960783,38871952:148247 +k1,1180:26575726,38871952:148247 +k1,1180:28117925,38871952:148248 +k1,1180:30775546,38871952:148247 +k1,1180:31966991,38871952:0 +) +(1,1181:8295387,39713440:23671604,505283,134348 +g1,1180:11149479,39713440 +k1,1181:31966990,39713440:18633196 +g1,1181:31966990,39713440 +) +(1,1182:8295387,41079216:23671604,513147,126483 +(1,1181:8295387,41079216:0,355205,0 +g1,1181:8295387,41079216 +g1,1181:6984667,41079216 +g1,1181:6656987,41079216 +(1,1181:6656987,41079216:1310720,355205,0 +k1,1181:7967707,41079216:1310720 +(1,1181:7967707,41079216:0,355205,0 +k1,1181:7569248,41079216:-398459 +) +) +g1,1181:8295387,41079216 +) +k1,1181:11813923,41079216:196516 +k1,1181:13159284,41079216:196515 +k1,1181:16051296,41079216:196516 +(1,1181:16051296,41079216:0,452978,115847 +r1,1184:17816409,41079216:1765113,568825,115847 +k1,1181:16051296,41079216:-1765113 +) +(1,1181:16051296,41079216:1765113,452978,115847 +k1,1181:16051296,41079216:3277 +h1,1181:17813132,41079216:0,411205,112570 +) +k1,1181:18012924,41079216:196515 +k1,1181:19400885,41079216:196516 +k1,1181:22674315,41079216:196515 +(1,1181:22674315,41079216:0,414482,115847 +r1,1184:23032581,41079216:358266,530329,115847 +k1,1181:22674315,41079216:-358266 +) +(1,1181:22674315,41079216:358266,414482,115847 +k1,1181:22674315,41079216:3277 +h1,1181:23029304,41079216:0,411205,112570 +) +k1,1181:23229097,41079216:196516 +k1,1181:24617058,41079216:196516 +(1,1181:24617058,41079216:0,414482,115847 +r1,1184:24975324,41079216:358266,530329,115847 +k1,1181:24617058,41079216:-358266 +) +(1,1181:24617058,41079216:358266,414482,115847 +k1,1181:24617058,41079216:3277 +h1,1181:24972047,41079216:0,411205,112570 ) -k1,1175:25171839,41079216:196515 -k1,1175:26019783,41079216:196516 -k1,1175:29472127,41079216:196515 -k1,1175:30687728,41079216:196516 -k1,1176:31966991,41079216:0 +k1,1181:25171839,41079216:196515 +k1,1181:26019783,41079216:196516 +k1,1181:29472127,41079216:196515 +k1,1181:30687728,41079216:196516 +k1,1182:31966991,41079216:0 ) -(1,1176:8295387,41920704:23671604,513147,126483 -g1,1175:9587101,41920704 -g1,1175:10453486,41920704 -(1,1175:10453486,41920704:0,452978,115847 -r1,1178:12922023,41920704:2468537,568825,115847 -k1,1175:10453486,41920704:-2468537 +(1,1182:8295387,41920704:23671604,513147,126483 +g1,1181:9587101,41920704 +g1,1181:10453486,41920704 +(1,1181:10453486,41920704:0,452978,115847 +r1,1184:12922023,41920704:2468537,568825,115847 +k1,1181:10453486,41920704:-2468537 ) -(1,1175:10453486,41920704:2468537,452978,115847 -k1,1175:10453486,41920704:3277 -h1,1175:12918746,41920704:0,411205,112570 +(1,1181:10453486,41920704:2468537,452978,115847 +k1,1181:10453486,41920704:3277 +h1,1181:12918746,41920704:0,411205,112570 ) -g1,1175:13121252,41920704 -g1,1175:14511926,41920704 -(1,1175:14511926,41920704:0,452978,122846 -r1,1178:17683886,41920704:3171960,575824,122846 -k1,1175:14511926,41920704:-3171960 +g1,1181:13121252,41920704 +g1,1181:14511926,41920704 +(1,1181:14511926,41920704:0,452978,122846 +r1,1184:17683886,41920704:3171960,575824,122846 +k1,1181:14511926,41920704:-3171960 ) -(1,1175:14511926,41920704:3171960,452978,122846 -k1,1175:14511926,41920704:3277 -h1,1175:17680609,41920704:0,411205,112570 +(1,1181:14511926,41920704:3171960,452978,122846 +k1,1181:14511926,41920704:3277 +h1,1181:17680609,41920704:0,411205,112570 ) -g1,1175:17883115,41920704 -g1,1175:19029995,41920704 -g1,1175:20248309,41920704 -g1,1175:23209881,41920704 -k1,1176:31966991,41920704:6544615 -g1,1176:31966991,41920704 +g1,1181:17883115,41920704 +g1,1181:19029995,41920704 +g1,1181:20248309,41920704 +g1,1181:23209881,41920704 +k1,1182:31966991,41920704:6544615 +g1,1182:31966991,41920704 ) -(1,1177:8295387,43286480:23671604,513147,126483 -(1,1176:8295387,43286480:0,355205,0 -g1,1176:8295387,43286480 -g1,1176:6984667,43286480 -g1,1176:6656987,43286480 -(1,1176:6656987,43286480:1310720,355205,0 -k1,1176:7967707,43286480:1310720 -(1,1176:7967707,43286480:0,355205,0 -k1,1176:7569248,43286480:-398459 +(1,1183:8295387,43286480:23671604,513147,126483 +(1,1182:8295387,43286480:0,355205,0 +g1,1182:8295387,43286480 +g1,1182:6984667,43286480 +g1,1182:6656987,43286480 +(1,1182:6656987,43286480:1310720,355205,0 +k1,1182:7967707,43286480:1310720 +(1,1182:7967707,43286480:0,355205,0 +k1,1182:7569248,43286480:-398459 ) ) -g1,1176:8295387,43286480 +g1,1182:8295387,43286480 ) -g1,1176:9720795,43286480 -(1,1176:9720795,43286480:0,452978,115847 -r1,1178:12189332,43286480:2468537,568825,115847 -k1,1176:9720795,43286480:-2468537 +g1,1182:9720795,43286480 +(1,1182:9720795,43286480:0,452978,115847 +r1,1184:12189332,43286480:2468537,568825,115847 +k1,1182:9720795,43286480:-2468537 ) -(1,1176:9720795,43286480:2468537,452978,115847 -k1,1176:9720795,43286480:3277 -h1,1176:12186055,43286480:0,411205,112570 +(1,1182:9720795,43286480:2468537,452978,115847 +k1,1182:9720795,43286480:3277 +h1,1182:12186055,43286480:0,411205,112570 ) -g1,1176:12388561,43286480 -g1,1176:13779235,43286480 -(1,1176:13779235,43286480:0,452978,122846 -r1,1178:16951195,43286480:3171960,575824,122846 -k1,1176:13779235,43286480:-3171960 +g1,1182:12388561,43286480 +g1,1182:13779235,43286480 +(1,1182:13779235,43286480:0,452978,122846 +r1,1184:16951195,43286480:3171960,575824,122846 +k1,1182:13779235,43286480:-3171960 ) -(1,1176:13779235,43286480:3171960,452978,122846 -k1,1176:13779235,43286480:3277 -h1,1176:16947918,43286480:0,411205,112570 +(1,1182:13779235,43286480:3171960,452978,122846 +k1,1182:13779235,43286480:3277 +h1,1182:16947918,43286480:0,411205,112570 ) -g1,1176:17150424,43286480 -g1,1176:18097419,43286480 -g1,1176:21795615,43286480 -g1,1176:23380930,43286480 -g1,1176:27056844,43286480 -g1,1176:30281870,43286480 -g1,1176:31097137,43286480 -k1,1177:31966991,43286480:127986 -g1,1177:31966991,43286480 +g1,1182:17150424,43286480 +g1,1182:18097419,43286480 +g1,1182:21795615,43286480 +g1,1182:23380930,43286480 +g1,1182:27056844,43286480 +g1,1182:30281870,43286480 +g1,1182:31097137,43286480 +k1,1183:31966991,43286480:127986 +g1,1183:31966991,43286480 ) ] ) ] -r1,1178:32583029,44527075:26214,9539585,0 +r1,1184:32583029,44527075:26214,9539585,0 ) ] ) ) -g1,1178:32583029,43937251 +g1,1184:32583029,43937251 ) -h1,1178:6630773,44553289:0,0,0 +h1,1184:6630773,44553289:0,0,0 ] -(1,1185:32583029,45706769:0,0,0 -g1,1185:32583029,45706769 +(1,1191:32583029,45706769:0,0,0 +g1,1191:32583029,45706769 ) ) ] -(1,1185:6630773,47279633:25952256,0,0 -h1,1185:6630773,47279633:25952256,0,0 +(1,1191:6630773,47279633:25952256,0,0 +h1,1191:6630773,47279633:25952256,0,0 ) ] -h1,1185:4262630,4025873:0,0,0 +h1,1191:4262630,4025873:0,0,0 ] !21991 }39 -Input:250:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:251:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:252:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:253:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:254:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {40 -[1,1275:4262630,47279633:28320399,43253760,0 -(1,1275:4262630,4025873:0,0,0 -[1,1275:-473657,4025873:25952256,0,0 -(1,1275:-473657,-710414:25952256,0,0 -h1,1275:-473657,-710414:0,0,0 -(1,1275:-473657,-710414:0,0,0 -(1,1275:-473657,-710414:0,0,0 -g1,1275:-473657,-710414 -(1,1275:-473657,-710414:65781,0,65781 -g1,1275:-407876,-710414 -[1,1275:-407876,-644633:0,0,0 +[1,1281:4262630,47279633:28320399,43253760,0 +(1,1281:4262630,4025873:0,0,0 +[1,1281:-473657,4025873:25952256,0,0 +(1,1281:-473657,-710414:25952256,0,0 +h1,1281:-473657,-710414:0,0,0 +(1,1281:-473657,-710414:0,0,0 +(1,1281:-473657,-710414:0,0,0 +g1,1281:-473657,-710414 +(1,1281:-473657,-710414:65781,0,65781 +g1,1281:-407876,-710414 +[1,1281:-407876,-644633:0,0,0 ] ) -k1,1275:-473657,-710414:-65781 +k1,1281:-473657,-710414:-65781 ) ) -k1,1275:25478599,-710414:25952256 -g1,1275:25478599,-710414 +k1,1281:25478599,-710414:25952256 +g1,1281:25478599,-710414 ) ] ) -[1,1275:6630773,47279633:25952256,43253760,0 -[1,1275:6630773,4812305:25952256,786432,0 -(1,1275:6630773,4812305:25952256,505283,134348 -(1,1275:6630773,4812305:25952256,505283,134348 -g1,1275:3078558,4812305 -[1,1275:3078558,4812305:0,0,0 -(1,1275:3078558,2439708:0,1703936,0 -k1,1275:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1275:2537886,2439708:1179648,16384,0 +[1,1281:6630773,47279633:25952256,43253760,0 +[1,1281:6630773,4812305:25952256,786432,0 +(1,1281:6630773,4812305:25952256,505283,134348 +(1,1281:6630773,4812305:25952256,505283,134348 +g1,1281:3078558,4812305 +[1,1281:3078558,4812305:0,0,0 +(1,1281:3078558,2439708:0,1703936,0 +k1,1281:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1281:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1275:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1281:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1275:3078558,4812305:0,0,0 -(1,1275:3078558,2439708:0,1703936,0 -g1,1275:29030814,2439708 -g1,1275:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1275:36151628,1915420:16384,1179648,0 +[1,1281:3078558,4812305:0,0,0 +(1,1281:3078558,2439708:0,1703936,0 +g1,1281:29030814,2439708 +g1,1281:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1281:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1275:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1281:37855564,2439708:1179648,16384,0 ) ) -k1,1275:3078556,2439708:-34777008 +k1,1281:3078556,2439708:-34777008 ) ] -[1,1275:3078558,4812305:0,0,0 -(1,1275:3078558,49800853:0,16384,2228224 -k1,1275:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1275:2537886,49800853:1179648,16384,0 +[1,1281:3078558,4812305:0,0,0 +(1,1281:3078558,49800853:0,16384,2228224 +k1,1281:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1281:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1275:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1281:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1275:3078558,4812305:0,0,0 -(1,1275:3078558,49800853:0,16384,2228224 -g1,1275:29030814,49800853 -g1,1275:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1275:36151628,51504789:16384,1179648,0 +[1,1281:3078558,4812305:0,0,0 +(1,1281:3078558,49800853:0,16384,2228224 +g1,1281:29030814,49800853 +g1,1281:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1281:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1275:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1281:37855564,49800853:1179648,16384,0 ) ) -k1,1275:3078556,49800853:-34777008 +k1,1281:3078556,49800853:-34777008 ) ] -g1,1275:6630773,4812305 -g1,1275:6630773,4812305 -g1,1275:9062814,4812305 -g1,1275:11256304,4812305 -g1,1275:12665983,4812305 -g1,1275:15337230,4812305 -g1,1275:17955393,4812305 -k1,1275:31786111,4812305:13830718 +g1,1281:6630773,4812305 +g1,1281:6630773,4812305 +g1,1281:9062814,4812305 +g1,1281:11256304,4812305 +g1,1281:12665983,4812305 +g1,1281:15337230,4812305 +g1,1281:17955393,4812305 +k1,1281:31786111,4812305:13830718 ) ) ] -[1,1275:6630773,45706769:25952256,40108032,0 -(1,1275:6630773,45706769:25952256,40108032,0 -(1,1275:6630773,45706769:0,0,0 -g1,1275:6630773,45706769 +[1,1281:6630773,45706769:25952256,40108032,0 +(1,1281:6630773,45706769:25952256,40108032,0 +(1,1281:6630773,45706769:0,0,0 +g1,1281:6630773,45706769 ) -[1,1275:6630773,45706769:25952256,40108032,0 -(1,1182:6630773,6254097:25952256,32768,229376 -(1,1182:6630773,6254097:0,32768,229376 -(1,1182:6630773,6254097:5505024,32768,229376 -r1,1182:12135797,6254097:5505024,262144,229376 -) -k1,1182:6630773,6254097:-5505024 -) -(1,1182:6630773,6254097:25952256,32768,0 -r1,1182:32583029,6254097:25952256,32768,0 -) -) -(1,1182:6630773,7858425:25952256,606339,161218 -(1,1182:6630773,7858425:1974731,582746,0 -g1,1182:6630773,7858425 -g1,1182:8605504,7858425 -) -g1,1182:11640345,7858425 -g1,1182:14463636,7858425 -g1,1182:16173339,7858425 -g1,1182:19540841,7858425 -k1,1182:32583029,7858425:10132389 -g1,1182:32583029,7858425 -) -(1,1185:6630773,9093129:25952256,505283,126483 -k1,1184:8420360,9093129:155774 -k1,1184:9192172,9093129:155774 -k1,1184:13384308,9093129:155774 -k1,1184:14531642,9093129:155774 -k1,1184:16974623,9093129:155774 -k1,1184:18998173,9093129:155774 -k1,1184:21665288,9093129:155775 -k1,1184:24005377,9093129:155774 -k1,1184:25152711,9093129:155774 -k1,1184:27176261,9093129:155774 -(1,1184:27176261,9093129:0,452978,122846 -r1,1184:29644798,9093129:2468537,575824,122846 -k1,1184:27176261,9093129:-2468537 -) -(1,1184:27176261,9093129:2468537,452978,122846 -k1,1184:27176261,9093129:3277 -h1,1184:29641521,9093129:0,411205,112570 -) -k1,1184:29800572,9093129:155774 -k1,1184:31966991,9093129:155774 -k1,1185:32583029,9093129:0 -) -(1,1185:6630773,9934617:25952256,505283,126483 -k1,1184:7422126,9934617:202840 -k1,1184:9182756,9934617:202839 -k1,1184:10489878,9934617:202840 -k1,1184:12167932,9934617:202839 -k1,1184:13746373,9934617:202840 -k1,1184:15121651,9934617:202839 -k1,1184:17335136,9934617:202840 -(1,1184:17335136,9934617:0,414482,115847 -r1,1184:18748537,9934617:1413401,530329,115847 -k1,1184:17335136,9934617:-1413401 -) -(1,1184:17335136,9934617:1413401,414482,115847 -k1,1184:17335136,9934617:3277 -h1,1184:18745260,9934617:0,411205,112570 -) -k1,1184:18951376,9934617:202839 -k1,1184:20345661,9934617:202840 -(1,1184:20345661,9934617:0,414482,115847 -r1,1184:22110774,9934617:1765113,530329,115847 -k1,1184:20345661,9934617:-1765113 -) -(1,1184:20345661,9934617:1765113,414482,115847 -k1,1184:20345661,9934617:3277 -h1,1184:22107497,9934617:0,411205,112570 -) -k1,1184:22487283,9934617:202839 -k1,1184:23306161,9934617:202840 -k1,1184:26175005,9934617:202839 -k1,1184:27029273,9934617:202840 -(1,1184:27029273,9934617:0,414482,115847 -r1,1184:27739251,9934617:709978,530329,115847 -k1,1184:27029273,9934617:-709978 -) -(1,1184:27029273,9934617:709978,414482,115847 -k1,1184:27029273,9934617:3277 -h1,1184:27735974,9934617:0,411205,112570 -) -k1,1184:27942090,9934617:202839 -k1,1184:29418295,9934617:202840 -k1,1184:32583029,9934617:0 -) -(1,1185:6630773,10776105:25952256,505283,126483 -k1,1184:8368584,10776105:180020 -k1,1184:9540165,10776105:180021 -k1,1184:12028363,10776105:180020 -k1,1184:12894545,10776105:180020 -k1,1184:13840681,10776105:180020 -k1,1184:15722672,10776105:180021 -k1,1184:18064725,10776105:180020 -k1,1184:19961133,10776105:180020 -k1,1184:20757191,10776105:180020 -k1,1184:21352035,10776105:180001 -k1,1184:22500678,10776105:180021 -k1,1184:24840110,10776105:180020 -k1,1184:25888482,10776105:180020 -k1,1184:27806517,10776105:180020 -k1,1184:29271044,10776105:180021 -k1,1184:30902686,10776105:180020 -k1,1184:32583029,10776105:0 -) -(1,1185:6630773,11617593:25952256,513147,134348 -k1,1184:7417806,11617593:255536 -k1,1184:8739612,11617593:255535 -k1,1184:12256875,11617593:255536 -k1,1184:13171702,11617593:255535 -k1,1184:16060475,11617593:255536 -k1,1184:18148398,11617593:255536 -k1,1184:19395493,11617593:255535 -k1,1184:20936845,11617593:255536 -k1,1184:23262007,11617593:255535 -k1,1184:26594458,11617593:255536 -k1,1184:28134499,11617593:255535 -k1,1184:30071689,11617593:255536 -k1,1184:32583029,11617593:0 -) -(1,1185:6630773,12459081:25952256,513147,134348 -g1,1184:9330856,12459081 -g1,1184:10157920,12459081 -g1,1184:11376234,12459081 -g1,1184:13546131,12459081 -g1,1184:15613791,12459081 -g1,1184:16681372,12459081 -g1,1184:19291671,12459081 -g1,1184:20300270,12459081 -(1,1184:20300270,12459081:0,452978,122846 -r1,1184:22768807,12459081:2468537,575824,122846 -k1,1184:20300270,12459081:-2468537 -) -(1,1184:20300270,12459081:2468537,452978,122846 -k1,1184:20300270,12459081:3277 -h1,1184:22765530,12459081:0,411205,112570 -) -g1,1184:22968036,12459081 -g1,1184:25475443,12459081 -g1,1184:26333964,12459081 -g1,1184:28546459,12459081 -k1,1185:32583029,12459081:2706189 -g1,1185:32583029,12459081 -) -v1,1187:6630773,13439831:0,393216,0 -(1,1226:6630773,25977778:25952256,12931163,196608 -g1,1226:6630773,25977778 -g1,1226:6630773,25977778 -g1,1226:6434165,25977778 -(1,1226:6434165,25977778:0,12931163,196608 -r1,1226:32779637,25977778:26345472,13127771,196608 -k1,1226:6434165,25977778:-26345472 -) -(1,1226:6434165,25977778:26345472,12931163,196608 -[1,1226:6630773,25977778:25952256,12734555,0 -(1,1189:6630773,13571427:25952256,328204,7863 -(1,1188:6630773,13571427:0,0,0 -g1,1188:6630773,13571427 -g1,1188:6630773,13571427 -g1,1188:6303093,13571427 -(1,1188:6303093,13571427:0,0,0 -) -g1,1188:6630773,13571427 -) -g1,1189:7263065,13571427 -g1,1189:8211503,13571427 -h1,1189:9476086,13571427:0,0,0 -k1,1189:32583030,13571427:23106944 -g1,1189:32583030,13571427 -) -(1,1190:6630773,14237605:25952256,404226,7863 -h1,1190:6630773,14237605:0,0,0 -g1,1190:7263065,14237605 -g1,1190:8211503,14237605 -h1,1190:9792231,14237605:0,0,0 -k1,1190:32583029,14237605:22790798 -g1,1190:32583029,14237605 -) -(1,1191:6630773,14903783:25952256,404226,76021 -h1,1191:6630773,14903783:0,0,0 -k1,1191:6630773,14903783:0 -h1,1191:8843793,14903783:0,0,0 -k1,1191:32583029,14903783:23739236 -g1,1191:32583029,14903783 -) -(1,1195:6630773,15635497:25952256,404226,107478 -(1,1193:6630773,15635497:0,0,0 -g1,1193:6630773,15635497 -g1,1193:6630773,15635497 -g1,1193:6303093,15635497 -(1,1193:6303093,15635497:0,0,0 -) -g1,1193:6630773,15635497 -) -g1,1195:7579210,15635497 -g1,1195:8843793,15635497 -h1,1195:11689104,15635497:0,0,0 -k1,1195:32583028,15635497:20893924 -g1,1195:32583028,15635497 -) -(1,1197:6630773,16957035:25952256,284164,4718 -(1,1196:6630773,16957035:0,0,0 -g1,1196:6630773,16957035 -g1,1196:6630773,16957035 -g1,1196:6303093,16957035 -(1,1196:6303093,16957035:0,0,0 -) -g1,1196:6630773,16957035 -) -h1,1197:6946919,16957035:0,0,0 -k1,1197:32583029,16957035:25636110 -g1,1197:32583029,16957035 -) -(1,1201:6630773,17688749:25952256,404226,76021 -(1,1199:6630773,17688749:0,0,0 -g1,1199:6630773,17688749 -g1,1199:6630773,17688749 -g1,1199:6303093,17688749 -(1,1199:6303093,17688749:0,0,0 -) -g1,1199:6630773,17688749 -) -g1,1201:7579210,17688749 -g1,1201:8843793,17688749 -h1,1201:10108376,17688749:0,0,0 -k1,1201:32583028,17688749:22474652 -g1,1201:32583028,17688749 -) -(1,1203:6630773,19010287:25952256,404226,107478 -(1,1202:6630773,19010287:0,0,0 -g1,1202:6630773,19010287 -g1,1202:6630773,19010287 -g1,1202:6303093,19010287 -(1,1202:6303093,19010287:0,0,0 -) -g1,1202:6630773,19010287 -) -g1,1203:7579211,19010287 -g1,1203:8211503,19010287 -k1,1203:8211503,19010287:0 -h1,1203:10740668,19010287:0,0,0 -k1,1203:32583028,19010287:21842360 -g1,1203:32583028,19010287 -) -(1,1207:6630773,19742001:25952256,404226,76021 -(1,1205:6630773,19742001:0,0,0 -g1,1205:6630773,19742001 -g1,1205:6630773,19742001 -g1,1205:6303093,19742001 -(1,1205:6303093,19742001:0,0,0 -) -g1,1205:6630773,19742001 -) -g1,1207:7579210,19742001 -g1,1207:8843793,19742001 -h1,1207:10424521,19742001:0,0,0 -k1,1207:32583029,19742001:22158508 -g1,1207:32583029,19742001 -) -(1,1209:6630773,21063539:25952256,404226,107478 -(1,1208:6630773,21063539:0,0,0 -g1,1208:6630773,21063539 -g1,1208:6630773,21063539 -g1,1208:6303093,21063539 -(1,1208:6303093,21063539:0,0,0 -) -g1,1208:6630773,21063539 -) -g1,1209:7263065,21063539 -g1,1209:8211502,21063539 -g1,1209:8843794,21063539 -g1,1209:9476086,21063539 -g1,1209:12005252,21063539 -k1,1209:12005252,21063539:35127 -h1,1209:12988816,21063539:0,0,0 -k1,1209:32583028,21063539:19594212 -g1,1209:32583028,21063539 -) -(1,1213:6630773,21795253:25952256,404226,76021 -(1,1211:6630773,21795253:0,0,0 -g1,1211:6630773,21795253 -g1,1211:6630773,21795253 -g1,1211:6303093,21795253 -(1,1211:6303093,21795253:0,0,0 -) -g1,1211:6630773,21795253 -) -g1,1213:7579210,21795253 -g1,1213:8843793,21795253 -h1,1213:10424521,21795253:0,0,0 -k1,1213:32583029,21795253:22158508 -g1,1213:32583029,21795253 -) -(1,1215:6630773,23116791:25952256,404226,107478 -(1,1214:6630773,23116791:0,0,0 -g1,1214:6630773,23116791 -g1,1214:6630773,23116791 -g1,1214:6303093,23116791 -(1,1214:6303093,23116791:0,0,0 -) -g1,1214:6630773,23116791 -) -g1,1215:7263065,23116791 -g1,1215:8211502,23116791 -g1,1215:8843794,23116791 -g1,1215:9476086,23116791 -g1,1215:12005252,23116791 -k1,1215:12005252,23116791:1573 -h1,1215:12639116,23116791:0,0,0 -k1,1215:32583028,23116791:19943912 -g1,1215:32583028,23116791 -) -(1,1219:6630773,23848505:25952256,404226,76021 -(1,1217:6630773,23848505:0,0,0 -g1,1217:6630773,23848505 -g1,1217:6630773,23848505 -g1,1217:6303093,23848505 -(1,1217:6303093,23848505:0,0,0 -) -g1,1217:6630773,23848505 -) -g1,1219:7579210,23848505 -g1,1219:8843793,23848505 -h1,1219:10108376,23848505:0,0,0 -k1,1219:32583028,23848505:22474652 -g1,1219:32583028,23848505 -) -(1,1221:6630773,25170043:25952256,404226,82312 -(1,1220:6630773,25170043:0,0,0 -g1,1220:6630773,25170043 -g1,1220:6630773,25170043 -g1,1220:6303093,25170043 -(1,1220:6303093,25170043:0,0,0 -) -g1,1220:6630773,25170043 -) -k1,1221:6630773,25170043:0 -g1,1221:8843793,25170043 -g1,1221:9792230,25170043 -g1,1221:10424522,25170043 -g1,1221:13585979,25170043 -k1,1221:13585979,25170043:1573 -h1,1221:14219843,25170043:0,0,0 -k1,1221:32583029,25170043:18363186 -g1,1221:32583029,25170043 -) -(1,1225:6630773,25901757:25952256,404226,76021 -(1,1223:6630773,25901757:0,0,0 -g1,1223:6630773,25901757 -g1,1223:6630773,25901757 -g1,1223:6303093,25901757 -(1,1223:6303093,25901757:0,0,0 -) -g1,1223:6630773,25901757 -) -g1,1225:7579210,25901757 -g1,1225:8843793,25901757 -h1,1225:10108376,25901757:0,0,0 -k1,1225:32583028,25901757:22474652 -g1,1225:32583028,25901757 -) -] -) -g1,1226:32583029,25977778 -g1,1226:6630773,25977778 -g1,1226:6630773,25977778 -g1,1226:32583029,25977778 -g1,1226:32583029,25977778 -) -h1,1226:6630773,26174386:0,0,0 -(1,1231:6630773,27330446:25952256,505283,134348 -h1,1230:6630773,27330446:983040,0,0 -k1,1230:8658719,27330446:227017 -k1,1230:10279686,27330446:227016 -k1,1230:13782848,27330446:227017 -k1,1230:17260450,27330446:227016 -k1,1230:21679805,27330446:227017 -k1,1230:22438319,27330446:227017 -k1,1230:25449304,27330446:227016 -k1,1230:27070272,27330446:227017 -k1,1230:28910784,27330446:227016 -k1,1230:31207428,27330446:227017 -k1,1231:32583029,27330446:0 -) -(1,1231:6630773,28171934:25952256,513147,134348 -k1,1230:8952854,28171934:234104 -k1,1230:10383645,28171934:234104 -k1,1230:14074773,28171934:234104 -k1,1230:14968169,28171934:234104 -k1,1230:16374712,28171934:234104 -k1,1230:18368458,28171934:234104 -k1,1230:19261854,28171934:234104 -k1,1230:21565585,28171934:234104 -k1,1230:24876604,28171934:234104 -k1,1230:25642205,28171934:234104 -k1,1230:27033019,28171934:234104 -k1,1230:27926415,28171934:234104 -k1,1230:29179604,28171934:234104 -k1,1230:31015408,28171934:234104 -k1,1231:32583029,28171934:0 -) -(1,1231:6630773,29013422:25952256,513147,134348 -k1,1230:9458762,29013422:182956 -k1,1230:12016743,29013422:182956 -k1,1230:12858991,29013422:182956 -k1,1230:14061032,29013422:182956 -k1,1230:14658814,29013422:182939 -k1,1230:17684066,29013422:182956 -k1,1230:18814673,29013422:182956 -k1,1230:22290158,29013422:182956 -k1,1230:24024351,29013422:182956 -k1,1230:24866599,29013422:182956 -k1,1230:28954845,29013422:182956 -k1,1230:31207428,29013422:182956 -k1,1231:32583029,29013422:0 -) -(1,1231:6630773,29854910:25952256,513147,126483 -k1,1230:8730904,29854910:185824 -k1,1230:11139709,29854910:185824 -k1,1230:14827778,29854910:185825 -k1,1230:16106087,29854910:185824 -k1,1230:18493921,29854910:185824 -k1,1230:20763790,29854910:185824 -k1,1230:22141059,29854910:185824 -k1,1230:23419368,29854910:185824 -k1,1230:25807203,29854910:185825 -k1,1230:28808454,29854910:185824 -k1,1230:30190965,29854910:185824 -k1,1231:32583029,29854910:0 -) -(1,1231:6630773,30696398:25952256,505283,134348 -k1,1230:7976207,30696398:187413 -k1,1230:11240534,30696398:187412 -k1,1230:12903162,30696398:187413 -k1,1230:18151265,30696398:187413 -k1,1230:20406993,30696398:187412 -(1,1230:20406993,30696398:0,435480,115847 -r1,1230:20765259,30696398:358266,551327,115847 -k1,1230:20406993,30696398:-358266 -) -(1,1230:20406993,30696398:358266,435480,115847 -k1,1230:20406993,30696398:3277 -h1,1230:20761982,30696398:0,411205,112570 -) -k1,1230:20952672,30696398:187413 -k1,1230:22331529,30696398:187412 -(1,1230:22331529,30696398:0,452978,115847 -r1,1230:22689795,30696398:358266,568825,115847 -k1,1230:22331529,30696398:-358266 -) -(1,1230:22331529,30696398:358266,452978,115847 -k1,1230:22331529,30696398:3277 -h1,1230:22686518,30696398:0,411205,112570 -) -k1,1230:23050878,30696398:187413 -k1,1230:24927809,30696398:187413 -k1,1230:26134306,30696398:187412 -k1,1230:31096017,30696398:187413 -k1,1230:32583029,30696398:0 -) -(1,1231:6630773,31537886:25952256,513147,134348 -k1,1230:8304830,31537886:198842 -k1,1230:13874347,31537886:198842 -k1,1230:16141506,31537886:198843 -(1,1230:16141506,31537886:0,435480,115847 -r1,1230:16851484,31537886:709978,551327,115847 -k1,1230:16141506,31537886:-709978 -) -(1,1230:16141506,31537886:709978,435480,115847 -k1,1230:16141506,31537886:3277 -h1,1230:16848207,31537886:0,411205,112570 -) -k1,1230:17050326,31537886:198842 -k1,1230:18440613,31537886:198842 -(1,1230:18440613,31537886:0,452978,115847 -r1,1230:19150591,31537886:709978,568825,115847 -k1,1230:18440613,31537886:-709978 -) -(1,1230:18440613,31537886:709978,452978,115847 -k1,1230:18440613,31537886:3277 -h1,1230:19147314,31537886:0,411205,112570 -) -k1,1230:19523103,31537886:198842 -k1,1230:21554333,31537886:198843 -k1,1230:22284672,31537886:198842 -k1,1230:23859115,31537886:198842 -k1,1230:25214667,31537886:198842 -k1,1230:27747247,31537886:198843 -k1,1230:28605381,31537886:198842 -k1,1230:29823308,31537886:198842 -k1,1230:32583029,31537886:0 -) -(1,1231:6630773,32379374:25952256,505283,134348 -k1,1230:9535824,32379374:158437 -(1,1230:9535824,32379374:0,424981,115847 -r1,1230:9894090,32379374:358266,540828,115847 -k1,1230:9535824,32379374:-358266 -) -(1,1230:9535824,32379374:358266,424981,115847 -k1,1230:9535824,32379374:3277 -h1,1230:9890813,32379374:0,411205,112570 -) -k1,1230:10052526,32379374:158436 -k1,1230:11495469,32379374:158437 -k1,1230:12185402,32379374:158436 -k1,1230:15854603,32379374:158437 -k1,1230:16640875,32379374:158437 -k1,1230:18665121,32379374:158436 -k1,1230:19895727,32379374:158437 -k1,1230:21120434,32379374:158436 -k1,1230:22044987,32379374:158437 -k1,1230:24074477,32379374:158437 -k1,1230:24588773,32379374:158436 -k1,1230:27317532,32379374:158437 -k1,1230:28608430,32379374:158436 -k1,1230:31298523,32379374:158437 -k1,1230:32583029,32379374:0 -) -(1,1231:6630773,33220862:25952256,505283,126483 -g1,1230:8484786,33220862 -g1,1230:9215512,33220862 -g1,1230:9770601,33220862 -g1,1230:12599790,33220862 -k1,1231:32583029,33220862:17133078 -g1,1231:32583029,33220862 -) -v1,1233:6630773,34201612:0,393216,0 -(1,1272:6630773,45510161:25952256,11701765,196608 -g1,1272:6630773,45510161 -g1,1272:6630773,45510161 -g1,1272:6434165,45510161 -(1,1272:6434165,45510161:0,11701765,196608 -r1,1272:32779637,45510161:26345472,11898373,196608 -k1,1272:6434165,45510161:-26345472 -) -(1,1272:6434165,45510161:26345472,11701765,196608 -[1,1272:6630773,45510161:25952256,11505157,0 -(1,1235:6630773,34409230:25952256,404226,82312 -(1,1234:6630773,34409230:0,0,0 -g1,1234:6630773,34409230 -g1,1234:6630773,34409230 -g1,1234:6303093,34409230 -(1,1234:6303093,34409230:0,0,0 -) -g1,1234:6630773,34409230 -) -g1,1235:7263065,34409230 -g1,1235:8211503,34409230 -k1,1235:8211503,34409230:0 -h1,1235:12321398,34409230:0,0,0 -k1,1235:32583030,34409230:20261632 -g1,1235:32583030,34409230 -) -(1,1236:6630773,35075408:25952256,404226,82312 -h1,1236:6630773,35075408:0,0,0 -g1,1236:7263065,35075408 -g1,1236:8211503,35075408 -k1,1236:8211503,35075408:0 -h1,1236:12005253,35075408:0,0,0 -k1,1236:32583029,35075408:20577776 -g1,1236:32583029,35075408 -) -(1,1237:6630773,35741586:25952256,284164,4718 -h1,1237:6630773,35741586:0,0,0 -h1,1237:6946919,35741586:0,0,0 -k1,1237:32583029,35741586:25636110 -g1,1237:32583029,35741586 -) -(1,1241:6630773,36354625:25952256,404226,76021 -(1,1239:6630773,36354625:0,0,0 -g1,1239:6630773,36354625 -g1,1239:6630773,36354625 -g1,1239:6303093,36354625 -(1,1239:6303093,36354625:0,0,0 -) -g1,1239:6630773,36354625 -) -g1,1241:7579210,36354625 -g1,1241:8843793,36354625 -g1,1241:9159939,36354625 -g1,1241:10740668,36354625 -h1,1241:12321396,36354625:0,0,0 -k1,1241:32583028,36354625:20261632 -g1,1241:32583028,36354625 -) -(1,1243:6630773,37557489:25952256,404226,6290 -(1,1242:6630773,37557489:0,0,0 -g1,1242:6630773,37557489 -g1,1242:6630773,37557489 -g1,1242:6303093,37557489 -(1,1242:6303093,37557489:0,0,0 -) -g1,1242:6630773,37557489 -) -h1,1243:6946919,37557489:0,0,0 -k1,1243:32583029,37557489:25636110 -g1,1243:32583029,37557489 -) -(1,1247:6630773,38170528:25952256,404226,76021 -(1,1245:6630773,38170528:0,0,0 -g1,1245:6630773,38170528 -g1,1245:6630773,38170528 -g1,1245:6303093,38170528 -(1,1245:6303093,38170528:0,0,0 -) -g1,1245:6630773,38170528 -) -g1,1247:7579210,38170528 -g1,1247:8843793,38170528 -g1,1247:10424522,38170528 -h1,1247:11689105,38170528:0,0,0 -k1,1247:32583029,38170528:20893924 -g1,1247:32583029,38170528 -) -(1,1249:6630773,39373392:25952256,404226,9436 -(1,1248:6630773,39373392:0,0,0 -g1,1248:6630773,39373392 -g1,1248:6630773,39373392 -g1,1248:6303093,39373392 -(1,1248:6303093,39373392:0,0,0 -) -g1,1248:6630773,39373392 -) -g1,1249:7263065,39373392 -g1,1249:7895357,39373392 -g1,1249:8527649,39373392 -g1,1249:9159941,39373392 -g1,1249:12637544,39373392 -k1,1249:12637544,39373392:35127 -h1,1249:13621108,39373392:0,0,0 -k1,1249:32583028,39373392:18961920 -g1,1249:32583028,39373392 -) -(1,1253:6630773,39986431:25952256,404226,76021 -(1,1251:6630773,39986431:0,0,0 -g1,1251:6630773,39986431 -g1,1251:6630773,39986431 -g1,1251:6303093,39986431 -(1,1251:6303093,39986431:0,0,0 -) -g1,1251:6630773,39986431 -) -g1,1253:7579210,39986431 -g1,1253:8843793,39986431 -g1,1253:9159939,39986431 -g1,1253:10740668,39986431 -h1,1253:12321396,39986431:0,0,0 -k1,1253:32583028,39986431:20261632 -g1,1253:32583028,39986431 -) -(1,1255:6630773,41189295:25952256,404226,76021 -(1,1254:6630773,41189295:0,0,0 -g1,1254:6630773,41189295 -g1,1254:6630773,41189295 -g1,1254:6303093,41189295 -(1,1254:6303093,41189295:0,0,0 -) -g1,1254:6630773,41189295 -) -g1,1255:7263065,41189295 -g1,1255:7895357,41189295 -g1,1255:8527649,41189295 -g1,1255:9159941,41189295 -g1,1255:12637544,41189295 -k1,1255:12637544,41189295:1573 -h1,1255:13271408,41189295:0,0,0 -k1,1255:32583028,41189295:19311620 -g1,1255:32583028,41189295 -) -(1,1259:6630773,41802334:25952256,404226,76021 -(1,1257:6630773,41802334:0,0,0 -g1,1257:6630773,41802334 -g1,1257:6630773,41802334 -g1,1257:6303093,41802334 -(1,1257:6303093,41802334:0,0,0 -) -g1,1257:6630773,41802334 -) -g1,1259:7579210,41802334 -g1,1259:8843793,41802334 -g1,1259:10424522,41802334 -h1,1259:11689105,41802334:0,0,0 -k1,1259:32583029,41802334:20893924 -g1,1259:32583029,41802334 -) -(1,1261:6630773,43005198:25952256,404226,9436 -(1,1260:6630773,43005198:0,0,0 -g1,1260:6630773,43005198 -g1,1260:6630773,43005198 -g1,1260:6303093,43005198 -(1,1260:6303093,43005198:0,0,0 -) -g1,1260:6630773,43005198 -) -g1,1261:7263065,43005198 -g1,1261:8211502,43005198 -g1,1261:8843794,43005198 -g1,1261:9476086,43005198 -g1,1261:10740669,43005198 -k1,1261:10740669,43005198:39846 -h1,1261:13941972,43005198:0,0,0 -k1,1261:32583028,43005198:18641056 -g1,1261:32583028,43005198 -) -(1,1265:6630773,43618237:25952256,404226,76021 -(1,1263:6630773,43618237:0,0,0 -g1,1263:6630773,43618237 -g1,1263:6630773,43618237 -g1,1263:6303093,43618237 -(1,1263:6303093,43618237:0,0,0 -) -g1,1263:6630773,43618237 -) -g1,1265:7579210,43618237 -g1,1265:8843793,43618237 -h1,1265:10108376,43618237:0,0,0 -k1,1265:32583028,43618237:22474652 -g1,1265:32583028,43618237 -) -(1,1267:6630773,44821101:25952256,404226,76021 -(1,1266:6630773,44821101:0,0,0 -g1,1266:6630773,44821101 -g1,1266:6630773,44821101 -g1,1266:6303093,44821101 -(1,1266:6303093,44821101:0,0,0 -) -g1,1266:6630773,44821101 -) -g1,1267:7263065,44821101 -g1,1267:8211502,44821101 -g1,1267:8843794,44821101 -g1,1267:9476086,44821101 -g1,1267:10740669,44821101 -k1,1267:10740669,44821101:39846 -h1,1267:13941972,44821101:0,0,0 -k1,1267:32583028,44821101:18641056 -g1,1267:32583028,44821101 -) -(1,1271:6630773,45434140:25952256,404226,76021 -(1,1269:6630773,45434140:0,0,0 -g1,1269:6630773,45434140 -g1,1269:6630773,45434140 -g1,1269:6303093,45434140 -(1,1269:6303093,45434140:0,0,0 -) -g1,1269:6630773,45434140 -) -g1,1271:7579210,45434140 -g1,1271:8843793,45434140 -h1,1271:10108376,45434140:0,0,0 -k1,1271:32583028,45434140:22474652 -g1,1271:32583028,45434140 -) -] -) -g1,1272:32583029,45510161 -g1,1272:6630773,45510161 -g1,1272:6630773,45510161 -g1,1272:32583029,45510161 -g1,1272:32583029,45510161 -) -h1,1272:6630773,45706769:0,0,0 -] -(1,1275:32583029,45706769:0,0,0 -g1,1275:32583029,45706769 +[1,1281:6630773,45706769:25952256,40108032,0 +(1,1188:6630773,6254097:25952256,32768,229376 +(1,1188:6630773,6254097:0,32768,229376 +(1,1188:6630773,6254097:5505024,32768,229376 +r1,1188:12135797,6254097:5505024,262144,229376 +) +k1,1188:6630773,6254097:-5505024 +) +(1,1188:6630773,6254097:25952256,32768,0 +r1,1188:32583029,6254097:25952256,32768,0 +) +) +(1,1188:6630773,7858425:25952256,606339,161218 +(1,1188:6630773,7858425:1974731,582746,0 +g1,1188:6630773,7858425 +g1,1188:8605504,7858425 +) +g1,1188:11640345,7858425 +g1,1188:14463636,7858425 +g1,1188:16173339,7858425 +g1,1188:19540841,7858425 +k1,1188:32583029,7858425:10132389 +g1,1188:32583029,7858425 +) +(1,1191:6630773,9093129:25952256,505283,126483 +k1,1190:8420360,9093129:155774 +k1,1190:9192172,9093129:155774 +k1,1190:13384308,9093129:155774 +k1,1190:14531642,9093129:155774 +k1,1190:16974623,9093129:155774 +k1,1190:18998173,9093129:155774 +k1,1190:21665288,9093129:155775 +k1,1190:24005377,9093129:155774 +k1,1190:25152711,9093129:155774 +k1,1190:27176261,9093129:155774 +(1,1190:27176261,9093129:0,452978,122846 +r1,1190:29644798,9093129:2468537,575824,122846 +k1,1190:27176261,9093129:-2468537 +) +(1,1190:27176261,9093129:2468537,452978,122846 +k1,1190:27176261,9093129:3277 +h1,1190:29641521,9093129:0,411205,112570 +) +k1,1190:29800572,9093129:155774 +k1,1190:31966991,9093129:155774 +k1,1191:32583029,9093129:0 +) +(1,1191:6630773,9934617:25952256,505283,126483 +k1,1190:7422126,9934617:202840 +k1,1190:9182756,9934617:202839 +k1,1190:10489878,9934617:202840 +k1,1190:12167932,9934617:202839 +k1,1190:13746373,9934617:202840 +k1,1190:15121651,9934617:202839 +k1,1190:17335136,9934617:202840 +(1,1190:17335136,9934617:0,414482,115847 +r1,1190:18748537,9934617:1413401,530329,115847 +k1,1190:17335136,9934617:-1413401 +) +(1,1190:17335136,9934617:1413401,414482,115847 +k1,1190:17335136,9934617:3277 +h1,1190:18745260,9934617:0,411205,112570 +) +k1,1190:18951376,9934617:202839 +k1,1190:20345661,9934617:202840 +(1,1190:20345661,9934617:0,414482,115847 +r1,1190:22110774,9934617:1765113,530329,115847 +k1,1190:20345661,9934617:-1765113 +) +(1,1190:20345661,9934617:1765113,414482,115847 +k1,1190:20345661,9934617:3277 +h1,1190:22107497,9934617:0,411205,112570 +) +k1,1190:22487283,9934617:202839 +k1,1190:23306161,9934617:202840 +k1,1190:26175005,9934617:202839 +k1,1190:27029273,9934617:202840 +(1,1190:27029273,9934617:0,414482,115847 +r1,1190:27739251,9934617:709978,530329,115847 +k1,1190:27029273,9934617:-709978 +) +(1,1190:27029273,9934617:709978,414482,115847 +k1,1190:27029273,9934617:3277 +h1,1190:27735974,9934617:0,411205,112570 +) +k1,1190:27942090,9934617:202839 +k1,1190:29418295,9934617:202840 +k1,1190:32583029,9934617:0 +) +(1,1191:6630773,10776105:25952256,505283,126483 +k1,1190:8368584,10776105:180020 +k1,1190:9540165,10776105:180021 +k1,1190:12028363,10776105:180020 +k1,1190:12894545,10776105:180020 +k1,1190:13840681,10776105:180020 +k1,1190:15722672,10776105:180021 +k1,1190:18064725,10776105:180020 +k1,1190:19961133,10776105:180020 +k1,1190:20757191,10776105:180020 +k1,1190:21352035,10776105:180001 +k1,1190:22500678,10776105:180021 +k1,1190:24840110,10776105:180020 +k1,1190:25888482,10776105:180020 +k1,1190:27806517,10776105:180020 +k1,1190:29271044,10776105:180021 +k1,1190:30902686,10776105:180020 +k1,1190:32583029,10776105:0 +) +(1,1191:6630773,11617593:25952256,513147,134348 +k1,1190:7417806,11617593:255536 +k1,1190:8739612,11617593:255535 +k1,1190:12256875,11617593:255536 +k1,1190:13171702,11617593:255535 +k1,1190:16060475,11617593:255536 +k1,1190:18148398,11617593:255536 +k1,1190:19395493,11617593:255535 +k1,1190:20936845,11617593:255536 +k1,1190:23262007,11617593:255535 +k1,1190:26594458,11617593:255536 +k1,1190:28134499,11617593:255535 +k1,1190:30071689,11617593:255536 +k1,1190:32583029,11617593:0 +) +(1,1191:6630773,12459081:25952256,513147,134348 +g1,1190:9330856,12459081 +g1,1190:10157920,12459081 +g1,1190:11376234,12459081 +g1,1190:13546131,12459081 +g1,1190:15613791,12459081 +g1,1190:16681372,12459081 +g1,1190:19291671,12459081 +g1,1190:20300270,12459081 +(1,1190:20300270,12459081:0,452978,122846 +r1,1190:22768807,12459081:2468537,575824,122846 +k1,1190:20300270,12459081:-2468537 +) +(1,1190:20300270,12459081:2468537,452978,122846 +k1,1190:20300270,12459081:3277 +h1,1190:22765530,12459081:0,411205,112570 +) +g1,1190:22968036,12459081 +g1,1190:25475443,12459081 +g1,1190:26333964,12459081 +g1,1190:28546459,12459081 +k1,1191:32583029,12459081:2706189 +g1,1191:32583029,12459081 +) +v1,1193:6630773,13439831:0,393216,0 +(1,1232:6630773,25977778:25952256,12931163,196608 +g1,1232:6630773,25977778 +g1,1232:6630773,25977778 +g1,1232:6434165,25977778 +(1,1232:6434165,25977778:0,12931163,196608 +r1,1232:32779637,25977778:26345472,13127771,196608 +k1,1232:6434165,25977778:-26345472 +) +(1,1232:6434165,25977778:26345472,12931163,196608 +[1,1232:6630773,25977778:25952256,12734555,0 +(1,1195:6630773,13571427:25952256,328204,7863 +(1,1194:6630773,13571427:0,0,0 +g1,1194:6630773,13571427 +g1,1194:6630773,13571427 +g1,1194:6303093,13571427 +(1,1194:6303093,13571427:0,0,0 +) +g1,1194:6630773,13571427 +) +g1,1195:7263065,13571427 +g1,1195:8211503,13571427 +h1,1195:9476086,13571427:0,0,0 +k1,1195:32583030,13571427:23106944 +g1,1195:32583030,13571427 +) +(1,1196:6630773,14237605:25952256,404226,7863 +h1,1196:6630773,14237605:0,0,0 +g1,1196:7263065,14237605 +g1,1196:8211503,14237605 +h1,1196:9792231,14237605:0,0,0 +k1,1196:32583029,14237605:22790798 +g1,1196:32583029,14237605 +) +(1,1197:6630773,14903783:25952256,404226,76021 +h1,1197:6630773,14903783:0,0,0 +k1,1197:6630773,14903783:0 +h1,1197:8843793,14903783:0,0,0 +k1,1197:32583029,14903783:23739236 +g1,1197:32583029,14903783 +) +(1,1201:6630773,15635497:25952256,404226,107478 +(1,1199:6630773,15635497:0,0,0 +g1,1199:6630773,15635497 +g1,1199:6630773,15635497 +g1,1199:6303093,15635497 +(1,1199:6303093,15635497:0,0,0 +) +g1,1199:6630773,15635497 +) +g1,1201:7579210,15635497 +g1,1201:8843793,15635497 +h1,1201:11689104,15635497:0,0,0 +k1,1201:32583028,15635497:20893924 +g1,1201:32583028,15635497 +) +(1,1203:6630773,16957035:25952256,284164,4718 +(1,1202:6630773,16957035:0,0,0 +g1,1202:6630773,16957035 +g1,1202:6630773,16957035 +g1,1202:6303093,16957035 +(1,1202:6303093,16957035:0,0,0 +) +g1,1202:6630773,16957035 +) +h1,1203:6946919,16957035:0,0,0 +k1,1203:32583029,16957035:25636110 +g1,1203:32583029,16957035 +) +(1,1207:6630773,17688749:25952256,404226,76021 +(1,1205:6630773,17688749:0,0,0 +g1,1205:6630773,17688749 +g1,1205:6630773,17688749 +g1,1205:6303093,17688749 +(1,1205:6303093,17688749:0,0,0 +) +g1,1205:6630773,17688749 +) +g1,1207:7579210,17688749 +g1,1207:8843793,17688749 +h1,1207:10108376,17688749:0,0,0 +k1,1207:32583028,17688749:22474652 +g1,1207:32583028,17688749 +) +(1,1209:6630773,19010287:25952256,404226,107478 +(1,1208:6630773,19010287:0,0,0 +g1,1208:6630773,19010287 +g1,1208:6630773,19010287 +g1,1208:6303093,19010287 +(1,1208:6303093,19010287:0,0,0 +) +g1,1208:6630773,19010287 +) +g1,1209:7579211,19010287 +g1,1209:8211503,19010287 +k1,1209:8211503,19010287:0 +h1,1209:10740668,19010287:0,0,0 +k1,1209:32583028,19010287:21842360 +g1,1209:32583028,19010287 +) +(1,1213:6630773,19742001:25952256,404226,76021 +(1,1211:6630773,19742001:0,0,0 +g1,1211:6630773,19742001 +g1,1211:6630773,19742001 +g1,1211:6303093,19742001 +(1,1211:6303093,19742001:0,0,0 +) +g1,1211:6630773,19742001 +) +g1,1213:7579210,19742001 +g1,1213:8843793,19742001 +h1,1213:10424521,19742001:0,0,0 +k1,1213:32583029,19742001:22158508 +g1,1213:32583029,19742001 +) +(1,1215:6630773,21063539:25952256,404226,107478 +(1,1214:6630773,21063539:0,0,0 +g1,1214:6630773,21063539 +g1,1214:6630773,21063539 +g1,1214:6303093,21063539 +(1,1214:6303093,21063539:0,0,0 +) +g1,1214:6630773,21063539 +) +g1,1215:7263065,21063539 +g1,1215:8211502,21063539 +g1,1215:8843794,21063539 +g1,1215:9476086,21063539 +g1,1215:12005252,21063539 +k1,1215:12005252,21063539:35127 +h1,1215:12988816,21063539:0,0,0 +k1,1215:32583028,21063539:19594212 +g1,1215:32583028,21063539 +) +(1,1219:6630773,21795253:25952256,404226,76021 +(1,1217:6630773,21795253:0,0,0 +g1,1217:6630773,21795253 +g1,1217:6630773,21795253 +g1,1217:6303093,21795253 +(1,1217:6303093,21795253:0,0,0 +) +g1,1217:6630773,21795253 +) +g1,1219:7579210,21795253 +g1,1219:8843793,21795253 +h1,1219:10424521,21795253:0,0,0 +k1,1219:32583029,21795253:22158508 +g1,1219:32583029,21795253 +) +(1,1221:6630773,23116791:25952256,404226,107478 +(1,1220:6630773,23116791:0,0,0 +g1,1220:6630773,23116791 +g1,1220:6630773,23116791 +g1,1220:6303093,23116791 +(1,1220:6303093,23116791:0,0,0 +) +g1,1220:6630773,23116791 +) +g1,1221:7263065,23116791 +g1,1221:8211502,23116791 +g1,1221:8843794,23116791 +g1,1221:9476086,23116791 +g1,1221:12005252,23116791 +k1,1221:12005252,23116791:1573 +h1,1221:12639116,23116791:0,0,0 +k1,1221:32583028,23116791:19943912 +g1,1221:32583028,23116791 +) +(1,1225:6630773,23848505:25952256,404226,76021 +(1,1223:6630773,23848505:0,0,0 +g1,1223:6630773,23848505 +g1,1223:6630773,23848505 +g1,1223:6303093,23848505 +(1,1223:6303093,23848505:0,0,0 +) +g1,1223:6630773,23848505 +) +g1,1225:7579210,23848505 +g1,1225:8843793,23848505 +h1,1225:10108376,23848505:0,0,0 +k1,1225:32583028,23848505:22474652 +g1,1225:32583028,23848505 +) +(1,1227:6630773,25170043:25952256,404226,82312 +(1,1226:6630773,25170043:0,0,0 +g1,1226:6630773,25170043 +g1,1226:6630773,25170043 +g1,1226:6303093,25170043 +(1,1226:6303093,25170043:0,0,0 +) +g1,1226:6630773,25170043 +) +k1,1227:6630773,25170043:0 +g1,1227:8843793,25170043 +g1,1227:9792230,25170043 +g1,1227:10424522,25170043 +g1,1227:13585979,25170043 +k1,1227:13585979,25170043:1573 +h1,1227:14219843,25170043:0,0,0 +k1,1227:32583029,25170043:18363186 +g1,1227:32583029,25170043 +) +(1,1231:6630773,25901757:25952256,404226,76021 +(1,1229:6630773,25901757:0,0,0 +g1,1229:6630773,25901757 +g1,1229:6630773,25901757 +g1,1229:6303093,25901757 +(1,1229:6303093,25901757:0,0,0 +) +g1,1229:6630773,25901757 +) +g1,1231:7579210,25901757 +g1,1231:8843793,25901757 +h1,1231:10108376,25901757:0,0,0 +k1,1231:32583028,25901757:22474652 +g1,1231:32583028,25901757 +) +] +) +g1,1232:32583029,25977778 +g1,1232:6630773,25977778 +g1,1232:6630773,25977778 +g1,1232:32583029,25977778 +g1,1232:32583029,25977778 +) +h1,1232:6630773,26174386:0,0,0 +(1,1237:6630773,27330446:25952256,505283,134348 +h1,1236:6630773,27330446:983040,0,0 +k1,1236:8629883,27330446:198181 +k1,1236:10222015,27330446:198181 +k1,1236:13696340,27330446:198180 +k1,1236:17145107,27330446:198181 +k1,1236:21535626,27330446:198181 +k1,1236:22265304,27330446:198181 +k1,1236:25247454,27330446:198181 +k1,1236:26839585,27330446:198180 +k1,1236:28651262,27330446:198181 +k1,1236:30919070,27330446:198181 +k1,1237:32583029,27330446:0 +) +(1,1237:6630773,28171934:25952256,513147,134348 +k1,1236:8617029,28171934:186637 +k1,1236:10000353,28171934:186637 +k1,1236:13644014,28171934:186637 +k1,1236:14489944,28171934:186638 +k1,1236:15849020,28171934:186637 +k1,1236:17795299,28171934:186637 +k1,1236:18641228,28171934:186637 +k1,1236:20897492,28171934:186637 +k1,1236:24161044,28171934:186637 +k1,1236:24879178,28171934:186637 +k1,1236:26222526,28171934:186638 +k1,1236:27068455,28171934:186637 +k1,1236:28274177,28171934:186637 +k1,1236:30062514,28171934:186637 +k1,1237:32583029,28171934:0 +) +(1,1237:6630773,29013422:25952256,513147,134348 +k1,1236:8531591,29013422:208678 +k1,1236:11115294,29013422:208678 +k1,1236:11983265,29013422:208679 +k1,1236:13211028,29013422:208678 +k1,1236:13834540,29013422:208669 +k1,1236:16885514,29013422:208678 +k1,1236:18041843,29013422:208678 +k1,1236:21543050,29013422:208678 +k1,1236:23302965,29013422:208678 +k1,1236:24170936,29013422:208679 +k1,1236:28284904,29013422:208678 +k1,1236:30563209,29013422:208678 +k1,1237:32583029,29013422:0 +) +(1,1237:6630773,29854910:25952256,513147,126483 +k1,1236:8059339,29854910:158478 +k1,1236:10440798,29854910:158478 +k1,1236:14101519,29854910:158477 +k1,1236:15352482,29854910:158478 +k1,1236:17712970,29854910:158478 +k1,1236:19955493,29854910:158478 +k1,1236:21305416,29854910:158478 +k1,1236:22556379,29854910:158478 +k1,1236:24916866,29854910:158477 +k1,1236:27890771,29854910:158478 +k1,1236:29245936,29854910:158478 +k1,1236:32583029,29854910:0 +) +(1,1237:6630773,30696398:25952256,505283,134348 +k1,1236:9866265,30696398:158577 +k1,1236:11500057,30696398:158577 +k1,1236:16719323,30696398:158576 +k1,1236:18946216,30696398:158577 +(1,1236:18946216,30696398:0,435480,115847 +r1,1236:19304482,30696398:358266,551327,115847 +k1,1236:18946216,30696398:-358266 +) +(1,1236:18946216,30696398:358266,435480,115847 +k1,1236:18946216,30696398:3277 +h1,1236:19301205,30696398:0,411205,112570 +) +k1,1236:19463059,30696398:158577 +k1,1236:20813081,30696398:158577 +(1,1236:20813081,30696398:0,452978,115847 +r1,1236:21171347,30696398:358266,568825,115847 +k1,1236:20813081,30696398:-358266 +) +(1,1236:20813081,30696398:358266,452978,115847 +k1,1236:20813081,30696398:3277 +h1,1236:21168070,30696398:0,411205,112570 +) +k1,1236:21503594,30696398:158577 +k1,1236:23351689,30696398:158577 +k1,1236:24529350,30696398:158576 +k1,1236:29462225,30696398:158577 +k1,1236:31107814,30696398:158577 +k1,1236:32583029,30696398:0 +) +(1,1237:6630773,31537886:25952256,513147,134348 +k1,1236:12234671,31537886:233223 +k1,1236:14536211,31537886:233224 +(1,1236:14536211,31537886:0,435480,115847 +r1,1236:15246189,31537886:709978,551327,115847 +k1,1236:14536211,31537886:-709978 +) +(1,1236:14536211,31537886:709978,435480,115847 +k1,1236:14536211,31537886:3277 +h1,1236:15242912,31537886:0,411205,112570 +) +k1,1236:15479412,31537886:233223 +k1,1236:16904081,31537886:233224 +(1,1236:16904081,31537886:0,452978,115847 +r1,1236:17614059,31537886:709978,568825,115847 +k1,1236:16904081,31537886:-709978 +) +(1,1236:16904081,31537886:709978,452978,115847 +k1,1236:16904081,31537886:3277 +h1,1236:17610782,31537886:0,411205,112570 +) +k1,1236:18020952,31537886:233223 +k1,1236:20086562,31537886:233223 +k1,1236:20851283,31537886:233224 +k1,1236:22460107,31537886:233223 +k1,1236:23850040,31537886:233223 +k1,1236:26417001,31537886:233224 +k1,1236:27309516,31537886:233223 +k1,1236:28561825,31537886:233224 +k1,1236:31554769,31537886:233223 +k1,1237:32583029,31537886:0 +) +(1,1237:6630773,32379374:25952256,505283,134348 +k1,1236:8774907,32379374:212788 +(1,1236:8774907,32379374:0,424981,115847 +r1,1236:9133173,32379374:358266,540828,115847 +k1,1236:8774907,32379374:-358266 +) +(1,1236:8774907,32379374:358266,424981,115847 +k1,1236:8774907,32379374:3277 +h1,1236:9129896,32379374:0,411205,112570 +) +k1,1236:9345961,32379374:212788 +k1,1236:10843254,32379374:212787 +k1,1236:11587539,32379374:212788 +k1,1236:15311091,32379374:212788 +k1,1236:16151714,32379374:212788 +k1,1236:18230312,32379374:212788 +k1,1236:19515268,32379374:212787 +k1,1236:20794327,32379374:212788 +k1,1236:21773231,32379374:212788 +k1,1236:23857072,32379374:212788 +k1,1236:24425720,32379374:212788 +k1,1236:27208829,32379374:212787 +k1,1236:28554079,32379374:212788 +k1,1236:31298523,32379374:212788 +k1,1236:32583029,32379374:0 +) +(1,1237:6630773,33220862:25952256,505283,126483 +g1,1236:8484786,33220862 +g1,1236:9215512,33220862 +g1,1236:9770601,33220862 +g1,1236:12599790,33220862 +k1,1237:32583029,33220862:17133078 +g1,1237:32583029,33220862 +) +v1,1239:6630773,34201612:0,393216,0 +(1,1278:6630773,45510161:25952256,11701765,196608 +g1,1278:6630773,45510161 +g1,1278:6630773,45510161 +g1,1278:6434165,45510161 +(1,1278:6434165,45510161:0,11701765,196608 +r1,1278:32779637,45510161:26345472,11898373,196608 +k1,1278:6434165,45510161:-26345472 +) +(1,1278:6434165,45510161:26345472,11701765,196608 +[1,1278:6630773,45510161:25952256,11505157,0 +(1,1241:6630773,34409230:25952256,404226,82312 +(1,1240:6630773,34409230:0,0,0 +g1,1240:6630773,34409230 +g1,1240:6630773,34409230 +g1,1240:6303093,34409230 +(1,1240:6303093,34409230:0,0,0 +) +g1,1240:6630773,34409230 +) +g1,1241:7263065,34409230 +g1,1241:8211503,34409230 +k1,1241:8211503,34409230:0 +h1,1241:12321398,34409230:0,0,0 +k1,1241:32583030,34409230:20261632 +g1,1241:32583030,34409230 +) +(1,1242:6630773,35075408:25952256,404226,82312 +h1,1242:6630773,35075408:0,0,0 +g1,1242:7263065,35075408 +g1,1242:8211503,35075408 +k1,1242:8211503,35075408:0 +h1,1242:12005253,35075408:0,0,0 +k1,1242:32583029,35075408:20577776 +g1,1242:32583029,35075408 +) +(1,1243:6630773,35741586:25952256,284164,4718 +h1,1243:6630773,35741586:0,0,0 +h1,1243:6946919,35741586:0,0,0 +k1,1243:32583029,35741586:25636110 +g1,1243:32583029,35741586 +) +(1,1247:6630773,36354625:25952256,404226,76021 +(1,1245:6630773,36354625:0,0,0 +g1,1245:6630773,36354625 +g1,1245:6630773,36354625 +g1,1245:6303093,36354625 +(1,1245:6303093,36354625:0,0,0 +) +g1,1245:6630773,36354625 +) +g1,1247:7579210,36354625 +g1,1247:8843793,36354625 +g1,1247:9159939,36354625 +g1,1247:10740668,36354625 +h1,1247:12321396,36354625:0,0,0 +k1,1247:32583028,36354625:20261632 +g1,1247:32583028,36354625 +) +(1,1249:6630773,37557489:25952256,404226,6290 +(1,1248:6630773,37557489:0,0,0 +g1,1248:6630773,37557489 +g1,1248:6630773,37557489 +g1,1248:6303093,37557489 +(1,1248:6303093,37557489:0,0,0 +) +g1,1248:6630773,37557489 +) +h1,1249:6946919,37557489:0,0,0 +k1,1249:32583029,37557489:25636110 +g1,1249:32583029,37557489 +) +(1,1253:6630773,38170528:25952256,404226,76021 +(1,1251:6630773,38170528:0,0,0 +g1,1251:6630773,38170528 +g1,1251:6630773,38170528 +g1,1251:6303093,38170528 +(1,1251:6303093,38170528:0,0,0 +) +g1,1251:6630773,38170528 +) +g1,1253:7579210,38170528 +g1,1253:8843793,38170528 +g1,1253:10424522,38170528 +h1,1253:11689105,38170528:0,0,0 +k1,1253:32583029,38170528:20893924 +g1,1253:32583029,38170528 +) +(1,1255:6630773,39373392:25952256,404226,9436 +(1,1254:6630773,39373392:0,0,0 +g1,1254:6630773,39373392 +g1,1254:6630773,39373392 +g1,1254:6303093,39373392 +(1,1254:6303093,39373392:0,0,0 +) +g1,1254:6630773,39373392 +) +g1,1255:7263065,39373392 +g1,1255:7895357,39373392 +g1,1255:8527649,39373392 +g1,1255:9159941,39373392 +g1,1255:12637544,39373392 +k1,1255:12637544,39373392:35127 +h1,1255:13621108,39373392:0,0,0 +k1,1255:32583028,39373392:18961920 +g1,1255:32583028,39373392 +) +(1,1259:6630773,39986431:25952256,404226,76021 +(1,1257:6630773,39986431:0,0,0 +g1,1257:6630773,39986431 +g1,1257:6630773,39986431 +g1,1257:6303093,39986431 +(1,1257:6303093,39986431:0,0,0 +) +g1,1257:6630773,39986431 +) +g1,1259:7579210,39986431 +g1,1259:8843793,39986431 +g1,1259:9159939,39986431 +g1,1259:10740668,39986431 +h1,1259:12321396,39986431:0,0,0 +k1,1259:32583028,39986431:20261632 +g1,1259:32583028,39986431 +) +(1,1261:6630773,41189295:25952256,404226,76021 +(1,1260:6630773,41189295:0,0,0 +g1,1260:6630773,41189295 +g1,1260:6630773,41189295 +g1,1260:6303093,41189295 +(1,1260:6303093,41189295:0,0,0 +) +g1,1260:6630773,41189295 +) +g1,1261:7263065,41189295 +g1,1261:7895357,41189295 +g1,1261:8527649,41189295 +g1,1261:9159941,41189295 +g1,1261:12637544,41189295 +k1,1261:12637544,41189295:1573 +h1,1261:13271408,41189295:0,0,0 +k1,1261:32583028,41189295:19311620 +g1,1261:32583028,41189295 +) +(1,1265:6630773,41802334:25952256,404226,76021 +(1,1263:6630773,41802334:0,0,0 +g1,1263:6630773,41802334 +g1,1263:6630773,41802334 +g1,1263:6303093,41802334 +(1,1263:6303093,41802334:0,0,0 +) +g1,1263:6630773,41802334 +) +g1,1265:7579210,41802334 +g1,1265:8843793,41802334 +g1,1265:10424522,41802334 +h1,1265:11689105,41802334:0,0,0 +k1,1265:32583029,41802334:20893924 +g1,1265:32583029,41802334 +) +(1,1267:6630773,43005198:25952256,404226,9436 +(1,1266:6630773,43005198:0,0,0 +g1,1266:6630773,43005198 +g1,1266:6630773,43005198 +g1,1266:6303093,43005198 +(1,1266:6303093,43005198:0,0,0 +) +g1,1266:6630773,43005198 +) +g1,1267:7263065,43005198 +g1,1267:8211502,43005198 +g1,1267:8843794,43005198 +g1,1267:9476086,43005198 +g1,1267:10740669,43005198 +k1,1267:10740669,43005198:39846 +h1,1267:13941972,43005198:0,0,0 +k1,1267:32583028,43005198:18641056 +g1,1267:32583028,43005198 +) +(1,1271:6630773,43618237:25952256,404226,76021 +(1,1269:6630773,43618237:0,0,0 +g1,1269:6630773,43618237 +g1,1269:6630773,43618237 +g1,1269:6303093,43618237 +(1,1269:6303093,43618237:0,0,0 +) +g1,1269:6630773,43618237 +) +g1,1271:7579210,43618237 +g1,1271:8843793,43618237 +h1,1271:10108376,43618237:0,0,0 +k1,1271:32583028,43618237:22474652 +g1,1271:32583028,43618237 +) +(1,1273:6630773,44821101:25952256,404226,76021 +(1,1272:6630773,44821101:0,0,0 +g1,1272:6630773,44821101 +g1,1272:6630773,44821101 +g1,1272:6303093,44821101 +(1,1272:6303093,44821101:0,0,0 +) +g1,1272:6630773,44821101 +) +g1,1273:7263065,44821101 +g1,1273:8211502,44821101 +g1,1273:8843794,44821101 +g1,1273:9476086,44821101 +g1,1273:10740669,44821101 +k1,1273:10740669,44821101:39846 +h1,1273:13941972,44821101:0,0,0 +k1,1273:32583028,44821101:18641056 +g1,1273:32583028,44821101 +) +(1,1277:6630773,45434140:25952256,404226,76021 +(1,1275:6630773,45434140:0,0,0 +g1,1275:6630773,45434140 +g1,1275:6630773,45434140 +g1,1275:6303093,45434140 +(1,1275:6303093,45434140:0,0,0 +) +g1,1275:6630773,45434140 +) +g1,1277:7579210,45434140 +g1,1277:8843793,45434140 +h1,1277:10108376,45434140:0,0,0 +k1,1277:32583028,45434140:22474652 +g1,1277:32583028,45434140 +) +] +) +g1,1278:32583029,45510161 +g1,1278:6630773,45510161 +g1,1278:6630773,45510161 +g1,1278:32583029,45510161 +g1,1278:32583029,45510161 +) +h1,1278:6630773,45706769:0,0,0 +] +(1,1281:32583029,45706769:0,0,0 +g1,1281:32583029,45706769 ) ) ] -(1,1275:6630773,47279633:25952256,0,0 -h1,1275:6630773,47279633:25952256,0,0 -) +(1,1281:6630773,47279633:25952256,0,0 +h1,1281:6630773,47279633:25952256,0,0 +) ] -h1,1275:4262630,4025873:0,0,0 +h1,1281:4262630,4025873:0,0,0 ] !24071 }40 -Input:255:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:256:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:257:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:258:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:259:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:260:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:261:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:262:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!691 +Input:251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!739 {41 -[1,1375:4262630,47279633:28320399,43253760,0 -(1,1375:4262630,4025873:0,0,0 -[1,1375:-473657,4025873:25952256,0,0 -(1,1375:-473657,-710414:25952256,0,0 -h1,1375:-473657,-710414:0,0,0 -(1,1375:-473657,-710414:0,0,0 -(1,1375:-473657,-710414:0,0,0 -g1,1375:-473657,-710414 -(1,1375:-473657,-710414:65781,0,65781 -g1,1375:-407876,-710414 -[1,1375:-407876,-644633:0,0,0 +[1,1381:4262630,47279633:28320399,43253760,0 +(1,1381:4262630,4025873:0,0,0 +[1,1381:-473657,4025873:25952256,0,0 +(1,1381:-473657,-710414:25952256,0,0 +h1,1381:-473657,-710414:0,0,0 +(1,1381:-473657,-710414:0,0,0 +(1,1381:-473657,-710414:0,0,0 +g1,1381:-473657,-710414 +(1,1381:-473657,-710414:65781,0,65781 +g1,1381:-407876,-710414 +[1,1381:-407876,-644633:0,0,0 ] ) -k1,1375:-473657,-710414:-65781 +k1,1381:-473657,-710414:-65781 ) ) -k1,1375:25478599,-710414:25952256 -g1,1375:25478599,-710414 +k1,1381:25478599,-710414:25952256 +g1,1381:25478599,-710414 ) ] ) -[1,1375:6630773,47279633:25952256,43253760,0 -[1,1375:6630773,4812305:25952256,786432,0 -(1,1375:6630773,4812305:25952256,505283,134348 -(1,1375:6630773,4812305:25952256,505283,134348 -g1,1375:3078558,4812305 -[1,1375:3078558,4812305:0,0,0 -(1,1375:3078558,2439708:0,1703936,0 -k1,1375:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1375:2537886,2439708:1179648,16384,0 +[1,1381:6630773,47279633:25952256,43253760,0 +[1,1381:6630773,4812305:25952256,786432,0 +(1,1381:6630773,4812305:25952256,505283,134348 +(1,1381:6630773,4812305:25952256,505283,134348 +g1,1381:3078558,4812305 +[1,1381:3078558,4812305:0,0,0 +(1,1381:3078558,2439708:0,1703936,0 +k1,1381:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1381:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1375:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1381:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1375:3078558,4812305:0,0,0 -(1,1375:3078558,2439708:0,1703936,0 -g1,1375:29030814,2439708 -g1,1375:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1375:36151628,1915420:16384,1179648,0 +[1,1381:3078558,4812305:0,0,0 +(1,1381:3078558,2439708:0,1703936,0 +g1,1381:29030814,2439708 +g1,1381:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1381:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1375:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1381:37855564,2439708:1179648,16384,0 ) ) -k1,1375:3078556,2439708:-34777008 +k1,1381:3078556,2439708:-34777008 ) ] -[1,1375:3078558,4812305:0,0,0 -(1,1375:3078558,49800853:0,16384,2228224 -k1,1375:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1375:2537886,49800853:1179648,16384,0 +[1,1381:3078558,4812305:0,0,0 +(1,1381:3078558,49800853:0,16384,2228224 +k1,1381:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1381:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1375:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1381:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1375:3078558,4812305:0,0,0 -(1,1375:3078558,49800853:0,16384,2228224 -g1,1375:29030814,49800853 -g1,1375:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1375:36151628,51504789:16384,1179648,0 +[1,1381:3078558,4812305:0,0,0 +(1,1381:3078558,49800853:0,16384,2228224 +g1,1381:29030814,49800853 +g1,1381:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1381:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1375:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1381:37855564,49800853:1179648,16384,0 ) ) -k1,1375:3078556,49800853:-34777008 +k1,1381:3078556,49800853:-34777008 ) ] -g1,1375:6630773,4812305 -k1,1375:19562994,4812305:12135303 -g1,1375:20949735,4812305 -g1,1375:21598541,4812305 -g1,1375:24912696,4812305 -g1,1375:27600327,4812305 -g1,1375:29010006,4812305 -) -) -] -[1,1375:6630773,45706769:25952256,40108032,0 -(1,1375:6630773,45706769:25952256,40108032,0 -(1,1375:6630773,45706769:0,0,0 -g1,1375:6630773,45706769 +g1,1381:6630773,4812305 +k1,1381:19515153,4812305:12087462 +g1,1381:20901894,4812305 +g1,1381:21550700,4812305 +g1,1381:24864855,4812305 +g1,1381:27600327,4812305 +g1,1381:29010006,4812305 +) +) +] +[1,1381:6630773,45706769:25952256,40108032,0 +(1,1381:6630773,45706769:25952256,40108032,0 +(1,1381:6630773,45706769:0,0,0 +g1,1381:6630773,45706769 ) -[1,1375:6630773,45706769:25952256,40108032,0 -(1,1276:6630773,6254097:25952256,505283,134348 -h1,1275:6630773,6254097:983040,0,0 -k1,1275:10890029,6254097:156047 -(1,1275:10890029,6254097:0,452978,115847 -r1,1275:12655142,6254097:1765113,568825,115847 -k1,1275:10890029,6254097:-1765113 +[1,1381:6630773,45706769:25952256,40108032,0 +(1,1282:6630773,6254097:25952256,505283,134348 +h1,1281:6630773,6254097:983040,0,0 +k1,1281:10890029,6254097:156047 +(1,1281:10890029,6254097:0,452978,115847 +r1,1281:12655142,6254097:1765113,568825,115847 +k1,1281:10890029,6254097:-1765113 ) -(1,1275:10890029,6254097:1765113,452978,115847 -k1,1275:10890029,6254097:3277 -h1,1275:12651865,6254097:0,411205,112570 -) -k1,1275:12811188,6254097:156046 -k1,1275:14158680,6254097:156047 -(1,1275:14158680,6254097:0,452978,115847 -r1,1275:15923793,6254097:1765113,568825,115847 -k1,1275:14158680,6254097:-1765113 -) -(1,1275:14158680,6254097:1765113,452978,115847 -k1,1275:14158680,6254097:3277 -h1,1275:15920516,6254097:0,411205,112570 -) -k1,1275:16079840,6254097:156047 -k1,1275:17588549,6254097:156046 -k1,1275:19164761,6254097:156047 -k1,1275:20003693,6254097:156047 -k1,1275:21809936,6254097:156046 -k1,1275:24035610,6254097:156047 -k1,1275:26499835,6254097:156047 -k1,1275:27342043,6254097:156046 -k1,1275:29006729,6254097:156047 -k1,1275:32583029,6254097:0 -) -(1,1276:6630773,7095585:25952256,505283,134348 -k1,1275:8050884,7095585:228666 -k1,1275:10290195,7095585:228666 -k1,1275:10874721,7095585:228666 -k1,1275:12976406,7095585:228666 -k1,1275:15274699,7095585:228666 -k1,1275:17183708,7095585:228666 -k1,1275:22223371,7095585:228665 -k1,1275:23471122,7095585:228666 -k1,1275:25769415,7095585:228666 -k1,1275:28008726,7095585:228666 -k1,1275:28853430,7095585:228666 -k1,1275:30101181,7095585:228666 -k1,1275:32583029,7095585:0 -) -(1,1276:6630773,7937073:25952256,513147,134348 -k1,1275:9635043,7937073:214402 -(1,1275:9635043,7937073:0,452978,115847 -r1,1275:11400156,7937073:1765113,568825,115847 -k1,1275:9635043,7937073:-1765113 -) -(1,1275:9635043,7937073:1765113,452978,115847 -k1,1275:9635043,7937073:3277 -h1,1275:11396879,7937073:0,411205,112570 -) -k1,1275:11614558,7937073:214402 -k1,1275:14169906,7937073:214402 -(1,1275:14169906,7937073:0,414482,115847 -r1,1275:15583307,7937073:1413401,530329,115847 -k1,1275:14169906,7937073:-1413401 -) -(1,1275:14169906,7937073:1413401,414482,115847 -k1,1275:14169906,7937073:3277 -h1,1275:15580030,7937073:0,411205,112570 -) -k1,1275:15797709,7937073:214402 -k1,1275:17387712,7937073:214402 -k1,1275:18068075,7937073:214402 -k1,1275:19048593,7937073:214402 -k1,1275:21273640,7937073:214402 -k1,1275:22104080,7937073:214402 -k1,1275:23337567,7937073:214402 -k1,1275:25860147,7937073:214402 -k1,1275:28279836,7937073:214402 -k1,1275:29180400,7937073:214402 -k1,1275:32583029,7937073:0 -) -(1,1276:6630773,8778561:25952256,505283,115847 -g1,1275:7821562,8778561 -(1,1275:7821562,8778561:0,414482,115847 -r1,1275:9234963,8778561:1413401,530329,115847 -k1,1275:7821562,8778561:-1413401 -) -(1,1275:7821562,8778561:1413401,414482,115847 -k1,1275:7821562,8778561:3277 -h1,1275:9231686,8778561:0,411205,112570 -) -g1,1275:9607862,8778561 -g1,1275:10998536,8778561 -(1,1275:10998536,8778561:0,452978,115847 -r1,1275:12763649,8778561:1765113,568825,115847 -k1,1275:10998536,8778561:-1765113 -) -(1,1275:10998536,8778561:1765113,452978,115847 -k1,1275:10998536,8778561:3277 -h1,1275:12760372,8778561:0,411205,112570 -) -g1,1275:12962878,8778561 -g1,1275:15503053,8778561 -(1,1275:15503053,8778561:0,414482,115847 -r1,1275:16916454,8778561:1413401,530329,115847 -k1,1275:15503053,8778561:-1413401 -) -(1,1275:15503053,8778561:1413401,414482,115847 -k1,1275:15503053,8778561:3277 -h1,1275:16913177,8778561:0,411205,112570 -) -g1,1275:17115683,8778561 -g1,1275:19357669,8778561 -g1,1275:20323014,8778561 -g1,1275:22532888,8778561 -g1,1275:23348155,8778561 -g1,1275:24566469,8778561 -g1,1275:27073876,8778561 -g1,1275:28264665,8778561 -(1,1275:28264665,8778561:0,414482,115847 -r1,1275:30029778,8778561:1765113,530329,115847 -k1,1275:28264665,8778561:-1765113 -) -(1,1275:28264665,8778561:1765113,414482,115847 -k1,1275:28264665,8778561:3277 -h1,1275:30026501,8778561:0,411205,112570 -) -k1,1276:32583029,8778561:2379581 -g1,1276:32583029,8778561 -) -v1,1278:6630773,9969027:0,393216,0 -(1,1303:6630773,17144136:25952256,7568325,196608 -g1,1303:6630773,17144136 -g1,1303:6630773,17144136 -g1,1303:6434165,17144136 -(1,1303:6434165,17144136:0,7568325,196608 -r1,1303:32779637,17144136:26345472,7764933,196608 -k1,1303:6434165,17144136:-26345472 -) -(1,1303:6434165,17144136:26345472,7568325,196608 -[1,1303:6630773,17144136:25952256,7371717,0 -(1,1280:6630773,10176645:25952256,404226,101187 -(1,1279:6630773,10176645:0,0,0 -g1,1279:6630773,10176645 -g1,1279:6630773,10176645 -g1,1279:6303093,10176645 -(1,1279:6303093,10176645:0,0,0 -) -g1,1279:6630773,10176645 -) -k1,1280:6630773,10176645:0 -h1,1280:8527647,10176645:0,0,0 -k1,1280:32583029,10176645:24055382 -g1,1280:32583029,10176645 -) -(1,1284:6630773,10908359:25952256,404226,76021 -(1,1282:6630773,10908359:0,0,0 -g1,1282:6630773,10908359 -g1,1282:6630773,10908359 -g1,1282:6303093,10908359 -(1,1282:6303093,10908359:0,0,0 -) -g1,1282:6630773,10908359 -) -g1,1284:7579210,10908359 -g1,1284:8843793,10908359 -h1,1284:10108376,10908359:0,0,0 -k1,1284:32583028,10908359:22474652 -g1,1284:32583028,10908359 -) -(1,1286:6630773,12229897:25952256,404226,76021 -(1,1285:6630773,12229897:0,0,0 -g1,1285:6630773,12229897 -g1,1285:6630773,12229897 -g1,1285:6303093,12229897 -(1,1285:6303093,12229897:0,0,0 -) -g1,1285:6630773,12229897 -) -k1,1286:6630773,12229897:0 -h1,1286:8527647,12229897:0,0,0 -k1,1286:32583029,12229897:24055382 -g1,1286:32583029,12229897 -) -(1,1290:6630773,12961611:25952256,404226,76021 -(1,1288:6630773,12961611:0,0,0 -g1,1288:6630773,12961611 -g1,1288:6630773,12961611 -g1,1288:6303093,12961611 -(1,1288:6303093,12961611:0,0,0 -) -g1,1288:6630773,12961611 -) -g1,1290:7579210,12961611 -g1,1290:8843793,12961611 -h1,1290:10424521,12961611:0,0,0 -k1,1290:32583029,12961611:22158508 -g1,1290:32583029,12961611 -) -(1,1292:6630773,14283149:25952256,404226,101187 -(1,1291:6630773,14283149:0,0,0 -g1,1291:6630773,14283149 -g1,1291:6630773,14283149 -g1,1291:6303093,14283149 -(1,1291:6303093,14283149:0,0,0 -) -g1,1291:6630773,14283149 -) -k1,1292:6630773,14283149:0 -g1,1292:8527647,14283149 -g1,1292:9159939,14283149 -h1,1292:9792230,14283149:0,0,0 -k1,1292:32583030,14283149:22790800 -g1,1292:32583030,14283149 -) -(1,1296:6630773,15014863:25952256,404226,76021 -(1,1294:6630773,15014863:0,0,0 -g1,1294:6630773,15014863 -g1,1294:6630773,15014863 -g1,1294:6303093,15014863 -(1,1294:6303093,15014863:0,0,0 -) -g1,1294:6630773,15014863 -) -g1,1296:7579210,15014863 -g1,1296:8843793,15014863 -h1,1296:10108376,15014863:0,0,0 -k1,1296:32583028,15014863:22474652 -g1,1296:32583028,15014863 -) -(1,1298:6630773,16336401:25952256,404226,76021 -(1,1297:6630773,16336401:0,0,0 -g1,1297:6630773,16336401 -g1,1297:6630773,16336401 -g1,1297:6303093,16336401 -(1,1297:6303093,16336401:0,0,0 -) -g1,1297:6630773,16336401 -) -k1,1298:6630773,16336401:0 -g1,1298:8527647,16336401 -g1,1298:9159939,16336401 -h1,1298:9792230,16336401:0,0,0 -k1,1298:32583030,16336401:22790800 -g1,1298:32583030,16336401 -) -(1,1302:6630773,17068115:25952256,404226,76021 -(1,1300:6630773,17068115:0,0,0 -g1,1300:6630773,17068115 -g1,1300:6630773,17068115 -g1,1300:6303093,17068115 -(1,1300:6303093,17068115:0,0,0 -) -g1,1300:6630773,17068115 -) -g1,1302:7579210,17068115 -g1,1302:8843793,17068115 -h1,1302:10424521,17068115:0,0,0 -k1,1302:32583029,17068115:22158508 -g1,1302:32583029,17068115 -) -] -) -g1,1303:32583029,17144136 -g1,1303:6630773,17144136 -g1,1303:6630773,17144136 -g1,1303:32583029,17144136 -g1,1303:32583029,17144136 -) -h1,1303:6630773,17340744:0,0,0 -(1,1307:6630773,18706520:25952256,505283,134348 -h1,1306:6630773,18706520:983040,0,0 -k1,1306:10468740,18706520:250526 -k1,1306:13928564,18706520:250526 -k1,1306:15841083,18706520:250526 -k1,1306:16743037,18706520:250526 -k1,1306:18716505,18706520:250526 -k1,1306:20789588,18706520:250527 -k1,1306:23109741,18706520:250526 -k1,1306:26437182,18706520:250526 -k1,1306:27219205,18706520:250526 -k1,1306:28754237,18706520:250526 -k1,1306:30384951,18706520:250526 -k1,1307:32583029,18706520:0 -) -(1,1307:6630773,19548008:25952256,513147,126483 -k1,1306:8113940,19548008:177690 -k1,1306:11768970,19548008:177690 -k1,1306:12424417,19548008:177690 -k1,1306:13621192,19548008:177690 -k1,1306:15641754,19548008:177690 -k1,1306:16350941,19548008:177690 -k1,1306:18666415,19548008:177690 -k1,1306:20411725,19548008:177689 -k1,1306:21608500,19548008:177690 -k1,1306:23092323,19548008:177690 -k1,1306:24591874,19548008:177690 -k1,1306:25428856,19548008:177690 -k1,1306:26625631,19548008:177690 -k1,1306:30163352,19548008:177690 -k1,1306:31360127,19548008:177690 -k1,1306:32583029,19548008:0 -) -(1,1307:6630773,20389496:25952256,513147,126483 -k1,1306:7449922,20389496:159857 -k1,1306:8628865,20389496:159858 -k1,1306:11975082,20389496:159857 -k1,1306:12666436,20389496:159857 -k1,1306:13892565,20389496:159858 -k1,1306:17287279,20389496:159857 -k1,1306:18531102,20389496:159857 -k1,1306:19342387,20389496:159857 -k1,1306:23167018,20389496:159858 -k1,1306:24875491,20389496:159857 -k1,1306:27740019,20389496:159857 -k1,1306:29597915,20389496:159858 -k1,1306:30928245,20389496:159857 -k1,1306:32583029,20389496:0 -) -(1,1307:6630773,21230984:25952256,513147,134348 -k1,1306:7852781,21230984:202923 -k1,1306:11031039,21230984:202923 -k1,1306:14897425,21230984:202923 -k1,1306:18028497,21230984:202923 -k1,1306:21535090,21230984:202923 -k1,1306:22269509,21230984:202922 -k1,1306:24623324,21230984:202923 -k1,1306:25512409,21230984:202923 -k1,1306:26734417,21230984:202923 -k1,1306:28243473,21230984:202923 -k1,1306:31478747,21230984:202923 -k1,1306:32583029,21230984:0 -) -(1,1307:6630773,22072472:25952256,513147,134348 -k1,1306:7534655,22072472:156116 -k1,1306:9203997,22072472:156116 -k1,1306:10046275,22072472:156116 -k1,1306:10558251,22072472:156116 -k1,1306:12568381,22072472:156116 -k1,1306:16013094,22072472:156116 -k1,1306:16525069,22072472:156115 -k1,1306:18134774,22072472:156116 -k1,1306:21323241,22072472:156116 -k1,1306:23046978,22072472:156116 -k1,1306:24941109,22072472:156116 -k1,1306:28158412,22072472:156116 -k1,1306:30012566,22072472:156116 -k1,1306:30626779,22072472:156116 -k1,1306:32583029,22072472:0 -) -(1,1307:6630773,22913960:25952256,473825,134348 -g1,1306:8960577,22913960 -g1,1306:9930509,22913960 -k1,1307:32583030,22913960:20871908 -g1,1307:32583030,22913960 -) -v1,1309:6630773,24104426:0,393216,0 -(1,1346:6630773,35386039:25952256,11674829,196608 -g1,1346:6630773,35386039 -g1,1346:6630773,35386039 -g1,1346:6434165,35386039 -(1,1346:6434165,35386039:0,11674829,196608 -r1,1346:32779637,35386039:26345472,11871437,196608 -k1,1346:6434165,35386039:-26345472 -) -(1,1346:6434165,35386039:26345472,11674829,196608 -[1,1346:6630773,35386039:25952256,11478221,0 -(1,1311:6630773,24312044:25952256,404226,76021 -(1,1310:6630773,24312044:0,0,0 -g1,1310:6630773,24312044 -g1,1310:6630773,24312044 -g1,1310:6303093,24312044 -(1,1310:6303093,24312044:0,0,0 -) -g1,1310:6630773,24312044 -) -g1,1311:8211502,24312044 -g1,1311:9159939,24312044 -h1,1311:9792230,24312044:0,0,0 -k1,1311:32583030,24312044:22790800 -g1,1311:32583030,24312044 -) -(1,1315:6630773,25043758:25952256,404226,76021 -(1,1313:6630773,25043758:0,0,0 -g1,1313:6630773,25043758 -g1,1313:6630773,25043758 -g1,1313:6303093,25043758 -(1,1313:6303093,25043758:0,0,0 -) -g1,1313:6630773,25043758 -) -g1,1315:7579210,25043758 -g1,1315:8843793,25043758 -h1,1315:10108376,25043758:0,0,0 -k1,1315:32583028,25043758:22474652 -g1,1315:32583028,25043758 -) -(1,1317:6630773,26365296:25952256,404226,76021 -(1,1316:6630773,26365296:0,0,0 -g1,1316:6630773,26365296 -g1,1316:6630773,26365296 -g1,1316:6303093,26365296 -(1,1316:6303093,26365296:0,0,0 -) -g1,1316:6630773,26365296 -) -g1,1317:8527647,26365296 -g1,1317:9476084,26365296 -h1,1317:10108375,26365296:0,0,0 -k1,1317:32583029,26365296:22474654 -g1,1317:32583029,26365296 -) -(1,1321:6630773,27097010:25952256,404226,76021 -(1,1319:6630773,27097010:0,0,0 -g1,1319:6630773,27097010 -g1,1319:6630773,27097010 -g1,1319:6303093,27097010 -(1,1319:6303093,27097010:0,0,0 -) -g1,1319:6630773,27097010 -) -g1,1321:7579210,27097010 -g1,1321:8843793,27097010 -h1,1321:9476084,27097010:0,0,0 -k1,1321:32583028,27097010:23106944 -g1,1321:32583028,27097010 -) -(1,1323:6630773,28418548:25952256,388497,9436 -(1,1322:6630773,28418548:0,0,0 -g1,1322:6630773,28418548 -g1,1322:6630773,28418548 -g1,1322:6303093,28418548 -(1,1322:6303093,28418548:0,0,0 -) -g1,1322:6630773,28418548 -) -g1,1323:8211502,28418548 -g1,1323:9159939,28418548 -h1,1323:9792230,28418548:0,0,0 -k1,1323:32583030,28418548:22790800 -g1,1323:32583030,28418548 -) -(1,1327:6630773,29150262:25952256,404226,76021 -(1,1325:6630773,29150262:0,0,0 -g1,1325:6630773,29150262 -g1,1325:6630773,29150262 -g1,1325:6303093,29150262 -(1,1325:6303093,29150262:0,0,0 -) -g1,1325:6630773,29150262 -) -g1,1327:7579210,29150262 -g1,1327:8843793,29150262 -h1,1327:9476084,29150262:0,0,0 -k1,1327:32583028,29150262:23106944 -g1,1327:32583028,29150262 -) -(1,1329:6630773,30471800:25952256,388497,9436 -(1,1328:6630773,30471800:0,0,0 -g1,1328:6630773,30471800 -g1,1328:6630773,30471800 -g1,1328:6303093,30471800 -(1,1328:6303093,30471800:0,0,0 -) -g1,1328:6630773,30471800 -) -g1,1329:8527647,30471800 -g1,1329:9476084,30471800 -h1,1329:10108375,30471800:0,0,0 -k1,1329:32583029,30471800:22474654 -g1,1329:32583029,30471800 -) -(1,1333:6630773,31203514:25952256,404226,76021 -(1,1331:6630773,31203514:0,0,0 -g1,1331:6630773,31203514 -g1,1331:6630773,31203514 -g1,1331:6303093,31203514 -(1,1331:6303093,31203514:0,0,0 -) -g1,1331:6630773,31203514 -) -g1,1333:7579210,31203514 -g1,1333:8843793,31203514 -h1,1333:10424521,31203514:0,0,0 -k1,1333:32583029,31203514:22158508 -g1,1333:32583029,31203514 -) -(1,1335:6630773,32525052:25952256,388497,9436 -(1,1334:6630773,32525052:0,0,0 -g1,1334:6630773,32525052 -g1,1334:6630773,32525052 -g1,1334:6303093,32525052 -(1,1334:6303093,32525052:0,0,0 -) -g1,1334:6630773,32525052 -) -g1,1335:8211502,32525052 -g1,1335:9159939,32525052 -g1,1335:11056813,32525052 -g1,1335:12005250,32525052 -h1,1335:12637541,32525052:0,0,0 -k1,1335:32583029,32525052:19945488 -g1,1335:32583029,32525052 -) -(1,1339:6630773,33256766:25952256,404226,76021 -(1,1337:6630773,33256766:0,0,0 -g1,1337:6630773,33256766 -g1,1337:6630773,33256766 -g1,1337:6303093,33256766 -(1,1337:6303093,33256766:0,0,0 -) -g1,1337:6630773,33256766 -) -g1,1339:7579210,33256766 -g1,1339:8843793,33256766 -h1,1339:10424521,33256766:0,0,0 -k1,1339:32583029,33256766:22158508 -g1,1339:32583029,33256766 -) -(1,1341:6630773,34578304:25952256,388497,9436 -(1,1340:6630773,34578304:0,0,0 -g1,1340:6630773,34578304 -g1,1340:6630773,34578304 -g1,1340:6303093,34578304 -(1,1340:6303093,34578304:0,0,0 -) -g1,1340:6630773,34578304 -) -g1,1341:8211502,34578304 -g1,1341:9159939,34578304 -g1,1341:10740668,34578304 -g1,1341:11689105,34578304 -h1,1341:12321396,34578304:0,0,0 -k1,1341:32583028,34578304:20261632 -g1,1341:32583028,34578304 -) -(1,1345:6630773,35310018:25952256,404226,76021 -(1,1343:6630773,35310018:0,0,0 -g1,1343:6630773,35310018 -g1,1343:6630773,35310018 -g1,1343:6303093,35310018 -(1,1343:6303093,35310018:0,0,0 -) -g1,1343:6630773,35310018 -) -g1,1345:7579210,35310018 -g1,1345:8843793,35310018 -h1,1345:9476084,35310018:0,0,0 -k1,1345:32583028,35310018:23106944 -g1,1345:32583028,35310018 -) -] -) -g1,1346:32583029,35386039 -g1,1346:6630773,35386039 -g1,1346:6630773,35386039 -g1,1346:32583029,35386039 -g1,1346:32583029,35386039 -) -h1,1346:6630773,35582647:0,0,0 -(1,1350:6630773,36948423:25952256,513147,134348 -h1,1349:6630773,36948423:983040,0,0 -k1,1349:9687611,36948423:290563 -k1,1349:11713566,36948423:290562 -k1,1349:13023214,36948423:290563 -k1,1349:16650870,36948423:290563 -k1,1349:20018348,36948423:290563 -k1,1349:21118280,36948423:290562 -k1,1349:23717021,36948423:290563 -k1,1349:24666876,36948423:290563 -k1,1349:26970705,36948423:290563 -k1,1349:29519638,36948423:290562 -k1,1349:31252648,36948423:290563 -k1,1349:32583029,36948423:0 -) -(1,1350:6630773,37789911:25952256,513147,126483 -g1,1349:10080588,37789911 -g1,1349:13583487,37789911 -g1,1349:14981370,37789911 -g1,1349:17461907,37789911 -g1,1349:18608787,37789911 -g1,1349:19827101,37789911 -g1,1349:21869202,37789911 -g1,1349:24860265,37789911 -g1,1349:25672256,37789911 -g1,1349:27323107,37789911 -g1,1349:29271492,37789911 -k1,1350:32583029,37789911:523635 -g1,1350:32583029,37789911 -) -v1,1352:6630773,38980377:0,393216,0 -(1,1371:6630773,44102234:25952256,5515073,196608 -g1,1371:6630773,44102234 -g1,1371:6630773,44102234 -g1,1371:6434165,44102234 -(1,1371:6434165,44102234:0,5515073,196608 -r1,1371:32779637,44102234:26345472,5711681,196608 -k1,1371:6434165,44102234:-26345472 -) -(1,1371:6434165,44102234:26345472,5515073,196608 -[1,1371:6630773,44102234:25952256,5318465,0 -(1,1354:6630773,39187995:25952256,404226,9436 -(1,1353:6630773,39187995:0,0,0 -g1,1353:6630773,39187995 -g1,1353:6630773,39187995 -g1,1353:6303093,39187995 -(1,1353:6303093,39187995:0,0,0 -) -g1,1353:6630773,39187995 -) -g1,1354:7263065,39187995 -g1,1354:7895357,39187995 -g1,1354:8527649,39187995 -g1,1354:9159941,39187995 -h1,1354:9792232,39187995:0,0,0 -k1,1354:32583028,39187995:22790796 -g1,1354:32583028,39187995 -) -(1,1358:6630773,39919709:25952256,404226,76021 -(1,1356:6630773,39919709:0,0,0 -g1,1356:6630773,39919709 -g1,1356:6630773,39919709 -g1,1356:6303093,39919709 -(1,1356:6303093,39919709:0,0,0 -) -g1,1356:6630773,39919709 -) -g1,1358:7579210,39919709 -g1,1358:8843793,39919709 -g1,1358:9159939,39919709 -g1,1358:9476085,39919709 -g1,1358:9792231,39919709 -g1,1358:10740668,39919709 -h1,1358:12321396,39919709:0,0,0 -k1,1358:32583028,39919709:20261632 -g1,1358:32583028,39919709 -) -(1,1360:6630773,41241247:25952256,404226,82312 -(1,1359:6630773,41241247:0,0,0 -g1,1359:6630773,41241247 -g1,1359:6630773,41241247 -g1,1359:6303093,41241247 -(1,1359:6303093,41241247:0,0,0 -) -g1,1359:6630773,41241247 -) -g1,1360:7263065,41241247 -g1,1360:7895357,41241247 -g1,1360:8527649,41241247 -g1,1360:9159941,41241247 -g1,1360:11056816,41241247 -h1,1360:12005253,41241247:0,0,0 -k1,1360:32583029,41241247:20577776 -g1,1360:32583029,41241247 -) -(1,1364:6630773,41972961:25952256,404226,76021 -(1,1362:6630773,41972961:0,0,0 -g1,1362:6630773,41972961 -g1,1362:6630773,41972961 -g1,1362:6303093,41972961 -(1,1362:6303093,41972961:0,0,0 -) -g1,1362:6630773,41972961 -) -g1,1364:7579210,41972961 -g1,1364:8843793,41972961 -g1,1364:9159939,41972961 -g1,1364:9476085,41972961 -g1,1364:9792231,41972961 -g1,1364:10740668,41972961 -h1,1364:12321396,41972961:0,0,0 -k1,1364:32583028,41972961:20261632 -g1,1364:32583028,41972961 -) -(1,1366:6630773,43294499:25952256,404226,82312 -(1,1365:6630773,43294499:0,0,0 -g1,1365:6630773,43294499 -g1,1365:6630773,43294499 -g1,1365:6303093,43294499 -(1,1365:6303093,43294499:0,0,0 -) -g1,1365:6630773,43294499 -) -g1,1366:7263065,43294499 -g1,1366:7895357,43294499 -g1,1366:8527649,43294499 -g1,1366:9159941,43294499 -g1,1366:11056816,43294499 -h1,1366:12005253,43294499:0,0,0 -k1,1366:32583029,43294499:20577776 -g1,1366:32583029,43294499 -) -(1,1370:6630773,44026213:25952256,404226,76021 -(1,1368:6630773,44026213:0,0,0 -g1,1368:6630773,44026213 -g1,1368:6630773,44026213 -g1,1368:6303093,44026213 -(1,1368:6303093,44026213:0,0,0 -) -g1,1368:6630773,44026213 -) -g1,1370:7579210,44026213 -g1,1370:8843793,44026213 -g1,1370:10424522,44026213 -h1,1370:11689105,44026213:0,0,0 -k1,1370:32583029,44026213:20893924 -g1,1370:32583029,44026213 -) -] -) -g1,1371:32583029,44102234 -g1,1371:6630773,44102234 -g1,1371:6630773,44102234 -g1,1371:32583029,44102234 -g1,1371:32583029,44102234 -) -h1,1371:6630773,44298842:0,0,0 -] -(1,1375:32583029,45706769:0,0,0 -g1,1375:32583029,45706769 -) -) -] -(1,1375:6630773,47279633:25952256,0,0 -h1,1375:6630773,47279633:25952256,0,0 -) -] -h1,1375:4262630,4025873:0,0,0 +(1,1281:10890029,6254097:1765113,452978,115847 +k1,1281:10890029,6254097:3277 +h1,1281:12651865,6254097:0,411205,112570 +) +k1,1281:12811188,6254097:156046 +k1,1281:14158680,6254097:156047 +(1,1281:14158680,6254097:0,452978,115847 +r1,1281:15923793,6254097:1765113,568825,115847 +k1,1281:14158680,6254097:-1765113 +) +(1,1281:14158680,6254097:1765113,452978,115847 +k1,1281:14158680,6254097:3277 +h1,1281:15920516,6254097:0,411205,112570 +) +k1,1281:16079840,6254097:156047 +k1,1281:17588549,6254097:156046 +k1,1281:19164761,6254097:156047 +k1,1281:20003693,6254097:156047 +k1,1281:21809936,6254097:156046 +k1,1281:24035610,6254097:156047 +k1,1281:26499835,6254097:156047 +k1,1281:27342043,6254097:156046 +k1,1281:29006729,6254097:156047 +k1,1281:32583029,6254097:0 +) +(1,1282:6630773,7095585:25952256,505283,134348 +k1,1281:8050884,7095585:228666 +k1,1281:10290195,7095585:228666 +k1,1281:10874721,7095585:228666 +k1,1281:12976406,7095585:228666 +k1,1281:15274699,7095585:228666 +k1,1281:17183708,7095585:228666 +k1,1281:22223371,7095585:228665 +k1,1281:23471122,7095585:228666 +k1,1281:25769415,7095585:228666 +k1,1281:28008726,7095585:228666 +k1,1281:28853430,7095585:228666 +k1,1281:30101181,7095585:228666 +k1,1281:32583029,7095585:0 +) +(1,1282:6630773,7937073:25952256,513147,134348 +k1,1281:9635043,7937073:214402 +(1,1281:9635043,7937073:0,452978,115847 +r1,1281:11400156,7937073:1765113,568825,115847 +k1,1281:9635043,7937073:-1765113 +) +(1,1281:9635043,7937073:1765113,452978,115847 +k1,1281:9635043,7937073:3277 +h1,1281:11396879,7937073:0,411205,112570 +) +k1,1281:11614558,7937073:214402 +k1,1281:14169906,7937073:214402 +(1,1281:14169906,7937073:0,414482,115847 +r1,1281:15583307,7937073:1413401,530329,115847 +k1,1281:14169906,7937073:-1413401 +) +(1,1281:14169906,7937073:1413401,414482,115847 +k1,1281:14169906,7937073:3277 +h1,1281:15580030,7937073:0,411205,112570 +) +k1,1281:15797709,7937073:214402 +k1,1281:17387712,7937073:214402 +k1,1281:18068075,7937073:214402 +k1,1281:19048593,7937073:214402 +k1,1281:21273640,7937073:214402 +k1,1281:22104080,7937073:214402 +k1,1281:23337567,7937073:214402 +k1,1281:25860147,7937073:214402 +k1,1281:28279836,7937073:214402 +k1,1281:29180400,7937073:214402 +k1,1281:32583029,7937073:0 +) +(1,1282:6630773,8778561:25952256,505283,115847 +g1,1281:7821562,8778561 +(1,1281:7821562,8778561:0,414482,115847 +r1,1281:9234963,8778561:1413401,530329,115847 +k1,1281:7821562,8778561:-1413401 +) +(1,1281:7821562,8778561:1413401,414482,115847 +k1,1281:7821562,8778561:3277 +h1,1281:9231686,8778561:0,411205,112570 +) +g1,1281:9607862,8778561 +g1,1281:10998536,8778561 +(1,1281:10998536,8778561:0,452978,115847 +r1,1281:12763649,8778561:1765113,568825,115847 +k1,1281:10998536,8778561:-1765113 +) +(1,1281:10998536,8778561:1765113,452978,115847 +k1,1281:10998536,8778561:3277 +h1,1281:12760372,8778561:0,411205,112570 +) +g1,1281:12962878,8778561 +g1,1281:15503053,8778561 +(1,1281:15503053,8778561:0,414482,115847 +r1,1281:16916454,8778561:1413401,530329,115847 +k1,1281:15503053,8778561:-1413401 +) +(1,1281:15503053,8778561:1413401,414482,115847 +k1,1281:15503053,8778561:3277 +h1,1281:16913177,8778561:0,411205,112570 +) +g1,1281:17115683,8778561 +g1,1281:19357669,8778561 +g1,1281:20323014,8778561 +g1,1281:22532888,8778561 +g1,1281:23348155,8778561 +g1,1281:24566469,8778561 +g1,1281:27073876,8778561 +g1,1281:28264665,8778561 +(1,1281:28264665,8778561:0,414482,115847 +r1,1281:30029778,8778561:1765113,530329,115847 +k1,1281:28264665,8778561:-1765113 +) +(1,1281:28264665,8778561:1765113,414482,115847 +k1,1281:28264665,8778561:3277 +h1,1281:30026501,8778561:0,411205,112570 +) +k1,1282:32583029,8778561:2379581 +g1,1282:32583029,8778561 +) +v1,1284:6630773,9969027:0,393216,0 +(1,1309:6630773,17144136:25952256,7568325,196608 +g1,1309:6630773,17144136 +g1,1309:6630773,17144136 +g1,1309:6434165,17144136 +(1,1309:6434165,17144136:0,7568325,196608 +r1,1309:32779637,17144136:26345472,7764933,196608 +k1,1309:6434165,17144136:-26345472 +) +(1,1309:6434165,17144136:26345472,7568325,196608 +[1,1309:6630773,17144136:25952256,7371717,0 +(1,1286:6630773,10176645:25952256,404226,101187 +(1,1285:6630773,10176645:0,0,0 +g1,1285:6630773,10176645 +g1,1285:6630773,10176645 +g1,1285:6303093,10176645 +(1,1285:6303093,10176645:0,0,0 +) +g1,1285:6630773,10176645 +) +k1,1286:6630773,10176645:0 +h1,1286:8527647,10176645:0,0,0 +k1,1286:32583029,10176645:24055382 +g1,1286:32583029,10176645 +) +(1,1290:6630773,10908359:25952256,404226,76021 +(1,1288:6630773,10908359:0,0,0 +g1,1288:6630773,10908359 +g1,1288:6630773,10908359 +g1,1288:6303093,10908359 +(1,1288:6303093,10908359:0,0,0 +) +g1,1288:6630773,10908359 +) +g1,1290:7579210,10908359 +g1,1290:8843793,10908359 +h1,1290:10108376,10908359:0,0,0 +k1,1290:32583028,10908359:22474652 +g1,1290:32583028,10908359 +) +(1,1292:6630773,12229897:25952256,404226,76021 +(1,1291:6630773,12229897:0,0,0 +g1,1291:6630773,12229897 +g1,1291:6630773,12229897 +g1,1291:6303093,12229897 +(1,1291:6303093,12229897:0,0,0 +) +g1,1291:6630773,12229897 +) +k1,1292:6630773,12229897:0 +h1,1292:8527647,12229897:0,0,0 +k1,1292:32583029,12229897:24055382 +g1,1292:32583029,12229897 +) +(1,1296:6630773,12961611:25952256,404226,76021 +(1,1294:6630773,12961611:0,0,0 +g1,1294:6630773,12961611 +g1,1294:6630773,12961611 +g1,1294:6303093,12961611 +(1,1294:6303093,12961611:0,0,0 +) +g1,1294:6630773,12961611 +) +g1,1296:7579210,12961611 +g1,1296:8843793,12961611 +h1,1296:10424521,12961611:0,0,0 +k1,1296:32583029,12961611:22158508 +g1,1296:32583029,12961611 +) +(1,1298:6630773,14283149:25952256,404226,101187 +(1,1297:6630773,14283149:0,0,0 +g1,1297:6630773,14283149 +g1,1297:6630773,14283149 +g1,1297:6303093,14283149 +(1,1297:6303093,14283149:0,0,0 +) +g1,1297:6630773,14283149 +) +k1,1298:6630773,14283149:0 +g1,1298:8527647,14283149 +g1,1298:9159939,14283149 +h1,1298:9792230,14283149:0,0,0 +k1,1298:32583030,14283149:22790800 +g1,1298:32583030,14283149 +) +(1,1302:6630773,15014863:25952256,404226,76021 +(1,1300:6630773,15014863:0,0,0 +g1,1300:6630773,15014863 +g1,1300:6630773,15014863 +g1,1300:6303093,15014863 +(1,1300:6303093,15014863:0,0,0 +) +g1,1300:6630773,15014863 +) +g1,1302:7579210,15014863 +g1,1302:8843793,15014863 +h1,1302:10108376,15014863:0,0,0 +k1,1302:32583028,15014863:22474652 +g1,1302:32583028,15014863 +) +(1,1304:6630773,16336401:25952256,404226,76021 +(1,1303:6630773,16336401:0,0,0 +g1,1303:6630773,16336401 +g1,1303:6630773,16336401 +g1,1303:6303093,16336401 +(1,1303:6303093,16336401:0,0,0 +) +g1,1303:6630773,16336401 +) +k1,1304:6630773,16336401:0 +g1,1304:8527647,16336401 +g1,1304:9159939,16336401 +h1,1304:9792230,16336401:0,0,0 +k1,1304:32583030,16336401:22790800 +g1,1304:32583030,16336401 +) +(1,1308:6630773,17068115:25952256,404226,76021 +(1,1306:6630773,17068115:0,0,0 +g1,1306:6630773,17068115 +g1,1306:6630773,17068115 +g1,1306:6303093,17068115 +(1,1306:6303093,17068115:0,0,0 +) +g1,1306:6630773,17068115 +) +g1,1308:7579210,17068115 +g1,1308:8843793,17068115 +h1,1308:10424521,17068115:0,0,0 +k1,1308:32583029,17068115:22158508 +g1,1308:32583029,17068115 +) +] +) +g1,1309:32583029,17144136 +g1,1309:6630773,17144136 +g1,1309:6630773,17144136 +g1,1309:32583029,17144136 +g1,1309:32583029,17144136 +) +h1,1309:6630773,17340744:0,0,0 +(1,1313:6630773,18706520:25952256,505283,134348 +h1,1312:6630773,18706520:983040,0,0 +k1,1312:10468740,18706520:250526 +k1,1312:13928564,18706520:250526 +k1,1312:15841083,18706520:250526 +k1,1312:16743037,18706520:250526 +k1,1312:18716505,18706520:250526 +k1,1312:20789588,18706520:250527 +k1,1312:23109741,18706520:250526 +k1,1312:26437182,18706520:250526 +k1,1312:27219205,18706520:250526 +k1,1312:28754237,18706520:250526 +k1,1312:30384951,18706520:250526 +k1,1313:32583029,18706520:0 +) +(1,1313:6630773,19548008:25952256,513147,126483 +k1,1312:8113940,19548008:177690 +k1,1312:11768970,19548008:177690 +k1,1312:12424417,19548008:177690 +k1,1312:13621192,19548008:177690 +k1,1312:15641754,19548008:177690 +k1,1312:16350941,19548008:177690 +k1,1312:18666415,19548008:177690 +k1,1312:20411725,19548008:177689 +k1,1312:21608500,19548008:177690 +k1,1312:23092323,19548008:177690 +k1,1312:24591874,19548008:177690 +k1,1312:25428856,19548008:177690 +k1,1312:26625631,19548008:177690 +k1,1312:30163352,19548008:177690 +k1,1312:31360127,19548008:177690 +k1,1312:32583029,19548008:0 +) +(1,1313:6630773,20389496:25952256,513147,126483 +k1,1312:7449922,20389496:159857 +k1,1312:8628865,20389496:159858 +k1,1312:11975082,20389496:159857 +k1,1312:12666436,20389496:159857 +k1,1312:13892565,20389496:159858 +k1,1312:17287279,20389496:159857 +k1,1312:18531102,20389496:159857 +k1,1312:19342387,20389496:159857 +k1,1312:23167018,20389496:159858 +k1,1312:24875491,20389496:159857 +k1,1312:27740019,20389496:159857 +k1,1312:29597915,20389496:159858 +k1,1312:30928245,20389496:159857 +k1,1312:32583029,20389496:0 +) +(1,1313:6630773,21230984:25952256,513147,134348 +k1,1312:7852781,21230984:202923 +k1,1312:11031039,21230984:202923 +k1,1312:14897425,21230984:202923 +k1,1312:18028497,21230984:202923 +k1,1312:21535090,21230984:202923 +k1,1312:22269509,21230984:202922 +k1,1312:24623324,21230984:202923 +k1,1312:25512409,21230984:202923 +k1,1312:26734417,21230984:202923 +k1,1312:28243473,21230984:202923 +k1,1312:31478747,21230984:202923 +k1,1312:32583029,21230984:0 +) +(1,1313:6630773,22072472:25952256,513147,134348 +k1,1312:7534655,22072472:156116 +k1,1312:9203997,22072472:156116 +k1,1312:10046275,22072472:156116 +k1,1312:10558251,22072472:156116 +k1,1312:12568381,22072472:156116 +k1,1312:16013094,22072472:156116 +k1,1312:16525069,22072472:156115 +k1,1312:18134774,22072472:156116 +k1,1312:21323241,22072472:156116 +k1,1312:23046978,22072472:156116 +k1,1312:24941109,22072472:156116 +k1,1312:28158412,22072472:156116 +k1,1312:30012566,22072472:156116 +k1,1312:30626779,22072472:156116 +k1,1312:32583029,22072472:0 +) +(1,1313:6630773,22913960:25952256,473825,134348 +g1,1312:8960577,22913960 +g1,1312:9930509,22913960 +k1,1313:32583030,22913960:20871908 +g1,1313:32583030,22913960 +) +v1,1315:6630773,24104426:0,393216,0 +(1,1352:6630773,35386039:25952256,11674829,196608 +g1,1352:6630773,35386039 +g1,1352:6630773,35386039 +g1,1352:6434165,35386039 +(1,1352:6434165,35386039:0,11674829,196608 +r1,1352:32779637,35386039:26345472,11871437,196608 +k1,1352:6434165,35386039:-26345472 +) +(1,1352:6434165,35386039:26345472,11674829,196608 +[1,1352:6630773,35386039:25952256,11478221,0 +(1,1317:6630773,24312044:25952256,404226,76021 +(1,1316:6630773,24312044:0,0,0 +g1,1316:6630773,24312044 +g1,1316:6630773,24312044 +g1,1316:6303093,24312044 +(1,1316:6303093,24312044:0,0,0 +) +g1,1316:6630773,24312044 +) +g1,1317:8211502,24312044 +g1,1317:9159939,24312044 +h1,1317:9792230,24312044:0,0,0 +k1,1317:32583030,24312044:22790800 +g1,1317:32583030,24312044 +) +(1,1321:6630773,25043758:25952256,404226,76021 +(1,1319:6630773,25043758:0,0,0 +g1,1319:6630773,25043758 +g1,1319:6630773,25043758 +g1,1319:6303093,25043758 +(1,1319:6303093,25043758:0,0,0 +) +g1,1319:6630773,25043758 +) +g1,1321:7579210,25043758 +g1,1321:8843793,25043758 +h1,1321:10108376,25043758:0,0,0 +k1,1321:32583028,25043758:22474652 +g1,1321:32583028,25043758 +) +(1,1323:6630773,26365296:25952256,404226,76021 +(1,1322:6630773,26365296:0,0,0 +g1,1322:6630773,26365296 +g1,1322:6630773,26365296 +g1,1322:6303093,26365296 +(1,1322:6303093,26365296:0,0,0 +) +g1,1322:6630773,26365296 +) +g1,1323:8527647,26365296 +g1,1323:9476084,26365296 +h1,1323:10108375,26365296:0,0,0 +k1,1323:32583029,26365296:22474654 +g1,1323:32583029,26365296 +) +(1,1327:6630773,27097010:25952256,404226,76021 +(1,1325:6630773,27097010:0,0,0 +g1,1325:6630773,27097010 +g1,1325:6630773,27097010 +g1,1325:6303093,27097010 +(1,1325:6303093,27097010:0,0,0 +) +g1,1325:6630773,27097010 +) +g1,1327:7579210,27097010 +g1,1327:8843793,27097010 +h1,1327:9476084,27097010:0,0,0 +k1,1327:32583028,27097010:23106944 +g1,1327:32583028,27097010 +) +(1,1329:6630773,28418548:25952256,388497,9436 +(1,1328:6630773,28418548:0,0,0 +g1,1328:6630773,28418548 +g1,1328:6630773,28418548 +g1,1328:6303093,28418548 +(1,1328:6303093,28418548:0,0,0 +) +g1,1328:6630773,28418548 +) +g1,1329:8211502,28418548 +g1,1329:9159939,28418548 +h1,1329:9792230,28418548:0,0,0 +k1,1329:32583030,28418548:22790800 +g1,1329:32583030,28418548 +) +(1,1333:6630773,29150262:25952256,404226,76021 +(1,1331:6630773,29150262:0,0,0 +g1,1331:6630773,29150262 +g1,1331:6630773,29150262 +g1,1331:6303093,29150262 +(1,1331:6303093,29150262:0,0,0 +) +g1,1331:6630773,29150262 +) +g1,1333:7579210,29150262 +g1,1333:8843793,29150262 +h1,1333:9476084,29150262:0,0,0 +k1,1333:32583028,29150262:23106944 +g1,1333:32583028,29150262 +) +(1,1335:6630773,30471800:25952256,388497,9436 +(1,1334:6630773,30471800:0,0,0 +g1,1334:6630773,30471800 +g1,1334:6630773,30471800 +g1,1334:6303093,30471800 +(1,1334:6303093,30471800:0,0,0 +) +g1,1334:6630773,30471800 +) +g1,1335:8527647,30471800 +g1,1335:9476084,30471800 +h1,1335:10108375,30471800:0,0,0 +k1,1335:32583029,30471800:22474654 +g1,1335:32583029,30471800 +) +(1,1339:6630773,31203514:25952256,404226,76021 +(1,1337:6630773,31203514:0,0,0 +g1,1337:6630773,31203514 +g1,1337:6630773,31203514 +g1,1337:6303093,31203514 +(1,1337:6303093,31203514:0,0,0 +) +g1,1337:6630773,31203514 +) +g1,1339:7579210,31203514 +g1,1339:8843793,31203514 +h1,1339:10424521,31203514:0,0,0 +k1,1339:32583029,31203514:22158508 +g1,1339:32583029,31203514 +) +(1,1341:6630773,32525052:25952256,388497,9436 +(1,1340:6630773,32525052:0,0,0 +g1,1340:6630773,32525052 +g1,1340:6630773,32525052 +g1,1340:6303093,32525052 +(1,1340:6303093,32525052:0,0,0 +) +g1,1340:6630773,32525052 +) +g1,1341:8211502,32525052 +g1,1341:9159939,32525052 +g1,1341:11056813,32525052 +g1,1341:12005250,32525052 +h1,1341:12637541,32525052:0,0,0 +k1,1341:32583029,32525052:19945488 +g1,1341:32583029,32525052 +) +(1,1345:6630773,33256766:25952256,404226,76021 +(1,1343:6630773,33256766:0,0,0 +g1,1343:6630773,33256766 +g1,1343:6630773,33256766 +g1,1343:6303093,33256766 +(1,1343:6303093,33256766:0,0,0 +) +g1,1343:6630773,33256766 +) +g1,1345:7579210,33256766 +g1,1345:8843793,33256766 +h1,1345:10424521,33256766:0,0,0 +k1,1345:32583029,33256766:22158508 +g1,1345:32583029,33256766 +) +(1,1347:6630773,34578304:25952256,388497,9436 +(1,1346:6630773,34578304:0,0,0 +g1,1346:6630773,34578304 +g1,1346:6630773,34578304 +g1,1346:6303093,34578304 +(1,1346:6303093,34578304:0,0,0 +) +g1,1346:6630773,34578304 +) +g1,1347:8211502,34578304 +g1,1347:9159939,34578304 +g1,1347:10740668,34578304 +g1,1347:11689105,34578304 +h1,1347:12321396,34578304:0,0,0 +k1,1347:32583028,34578304:20261632 +g1,1347:32583028,34578304 +) +(1,1351:6630773,35310018:25952256,404226,76021 +(1,1349:6630773,35310018:0,0,0 +g1,1349:6630773,35310018 +g1,1349:6630773,35310018 +g1,1349:6303093,35310018 +(1,1349:6303093,35310018:0,0,0 +) +g1,1349:6630773,35310018 +) +g1,1351:7579210,35310018 +g1,1351:8843793,35310018 +h1,1351:9476084,35310018:0,0,0 +k1,1351:32583028,35310018:23106944 +g1,1351:32583028,35310018 +) +] +) +g1,1352:32583029,35386039 +g1,1352:6630773,35386039 +g1,1352:6630773,35386039 +g1,1352:32583029,35386039 +g1,1352:32583029,35386039 +) +h1,1352:6630773,35582647:0,0,0 +(1,1356:6630773,36948423:25952256,513147,134348 +h1,1355:6630773,36948423:983040,0,0 +k1,1355:9687611,36948423:290563 +k1,1355:11713566,36948423:290562 +k1,1355:13023214,36948423:290563 +k1,1355:16650870,36948423:290563 +k1,1355:20018348,36948423:290563 +k1,1355:21118280,36948423:290562 +k1,1355:23717021,36948423:290563 +k1,1355:24666876,36948423:290563 +k1,1355:26970705,36948423:290563 +k1,1355:29519638,36948423:290562 +k1,1355:31252648,36948423:290563 +k1,1355:32583029,36948423:0 +) +(1,1356:6630773,37789911:25952256,513147,126483 +g1,1355:10080588,37789911 +g1,1355:13583487,37789911 +g1,1355:14981370,37789911 +g1,1355:17461907,37789911 +g1,1355:18608787,37789911 +g1,1355:19827101,37789911 +g1,1355:21869202,37789911 +g1,1355:24860265,37789911 +g1,1355:25672256,37789911 +g1,1355:27323107,37789911 +g1,1355:29271492,37789911 +k1,1356:32583029,37789911:523635 +g1,1356:32583029,37789911 +) +v1,1358:6630773,38980377:0,393216,0 +(1,1377:6630773,44102234:25952256,5515073,196608 +g1,1377:6630773,44102234 +g1,1377:6630773,44102234 +g1,1377:6434165,44102234 +(1,1377:6434165,44102234:0,5515073,196608 +r1,1377:32779637,44102234:26345472,5711681,196608 +k1,1377:6434165,44102234:-26345472 +) +(1,1377:6434165,44102234:26345472,5515073,196608 +[1,1377:6630773,44102234:25952256,5318465,0 +(1,1360:6630773,39187995:25952256,404226,9436 +(1,1359:6630773,39187995:0,0,0 +g1,1359:6630773,39187995 +g1,1359:6630773,39187995 +g1,1359:6303093,39187995 +(1,1359:6303093,39187995:0,0,0 +) +g1,1359:6630773,39187995 +) +g1,1360:7263065,39187995 +g1,1360:7895357,39187995 +g1,1360:8527649,39187995 +g1,1360:9159941,39187995 +h1,1360:9792232,39187995:0,0,0 +k1,1360:32583028,39187995:22790796 +g1,1360:32583028,39187995 +) +(1,1364:6630773,39919709:25952256,404226,76021 +(1,1362:6630773,39919709:0,0,0 +g1,1362:6630773,39919709 +g1,1362:6630773,39919709 +g1,1362:6303093,39919709 +(1,1362:6303093,39919709:0,0,0 +) +g1,1362:6630773,39919709 +) +g1,1364:7579210,39919709 +g1,1364:8843793,39919709 +g1,1364:9159939,39919709 +g1,1364:9476085,39919709 +g1,1364:9792231,39919709 +g1,1364:10740668,39919709 +h1,1364:12321396,39919709:0,0,0 +k1,1364:32583028,39919709:20261632 +g1,1364:32583028,39919709 +) +(1,1366:6630773,41241247:25952256,404226,82312 +(1,1365:6630773,41241247:0,0,0 +g1,1365:6630773,41241247 +g1,1365:6630773,41241247 +g1,1365:6303093,41241247 +(1,1365:6303093,41241247:0,0,0 +) +g1,1365:6630773,41241247 +) +g1,1366:7263065,41241247 +g1,1366:7895357,41241247 +g1,1366:8527649,41241247 +g1,1366:9159941,41241247 +g1,1366:11056816,41241247 +h1,1366:12005253,41241247:0,0,0 +k1,1366:32583029,41241247:20577776 +g1,1366:32583029,41241247 +) +(1,1370:6630773,41972961:25952256,404226,76021 +(1,1368:6630773,41972961:0,0,0 +g1,1368:6630773,41972961 +g1,1368:6630773,41972961 +g1,1368:6303093,41972961 +(1,1368:6303093,41972961:0,0,0 +) +g1,1368:6630773,41972961 +) +g1,1370:7579210,41972961 +g1,1370:8843793,41972961 +g1,1370:9159939,41972961 +g1,1370:9476085,41972961 +g1,1370:9792231,41972961 +g1,1370:10740668,41972961 +h1,1370:12321396,41972961:0,0,0 +k1,1370:32583028,41972961:20261632 +g1,1370:32583028,41972961 +) +(1,1372:6630773,43294499:25952256,404226,82312 +(1,1371:6630773,43294499:0,0,0 +g1,1371:6630773,43294499 +g1,1371:6630773,43294499 +g1,1371:6303093,43294499 +(1,1371:6303093,43294499:0,0,0 +) +g1,1371:6630773,43294499 +) +g1,1372:7263065,43294499 +g1,1372:7895357,43294499 +g1,1372:8527649,43294499 +g1,1372:9159941,43294499 +g1,1372:11056816,43294499 +h1,1372:12005253,43294499:0,0,0 +k1,1372:32583029,43294499:20577776 +g1,1372:32583029,43294499 +) +(1,1376:6630773,44026213:25952256,404226,76021 +(1,1374:6630773,44026213:0,0,0 +g1,1374:6630773,44026213 +g1,1374:6630773,44026213 +g1,1374:6303093,44026213 +(1,1374:6303093,44026213:0,0,0 +) +g1,1374:6630773,44026213 +) +g1,1376:7579210,44026213 +g1,1376:8843793,44026213 +g1,1376:10424522,44026213 +h1,1376:11689105,44026213:0,0,0 +k1,1376:32583029,44026213:20893924 +g1,1376:32583029,44026213 +) +] +) +g1,1377:32583029,44102234 +g1,1377:6630773,44102234 +g1,1377:6630773,44102234 +g1,1377:32583029,44102234 +g1,1377:32583029,44102234 +) +h1,1377:6630773,44298842:0,0,0 +] +(1,1381:32583029,45706769:0,0,0 +g1,1381:32583029,45706769 +) +) +] +(1,1381:6630773,47279633:25952256,0,0 +h1,1381:6630773,47279633:25952256,0,0 +) +] +h1,1381:4262630,4025873:0,0,0 ] !22328 }41 -Input:263:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:264:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:265:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:266:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:267:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {42 -[1,1444:4262630,47279633:28320399,43253760,0 -(1,1444:4262630,4025873:0,0,0 -[1,1444:-473657,4025873:25952256,0,0 -(1,1444:-473657,-710414:25952256,0,0 -h1,1444:-473657,-710414:0,0,0 -(1,1444:-473657,-710414:0,0,0 -(1,1444:-473657,-710414:0,0,0 -g1,1444:-473657,-710414 -(1,1444:-473657,-710414:65781,0,65781 -g1,1444:-407876,-710414 -[1,1444:-407876,-644633:0,0,0 +[1,1450:4262630,47279633:28320399,43253760,0 +(1,1450:4262630,4025873:0,0,0 +[1,1450:-473657,4025873:25952256,0,0 +(1,1450:-473657,-710414:25952256,0,0 +h1,1450:-473657,-710414:0,0,0 +(1,1450:-473657,-710414:0,0,0 +(1,1450:-473657,-710414:0,0,0 +g1,1450:-473657,-710414 +(1,1450:-473657,-710414:65781,0,65781 +g1,1450:-407876,-710414 +[1,1450:-407876,-644633:0,0,0 ] ) -k1,1444:-473657,-710414:-65781 +k1,1450:-473657,-710414:-65781 ) ) -k1,1444:25478599,-710414:25952256 -g1,1444:25478599,-710414 +k1,1450:25478599,-710414:25952256 +g1,1450:25478599,-710414 ) ] ) -[1,1444:6630773,47279633:25952256,43253760,0 -[1,1444:6630773,4812305:25952256,786432,0 -(1,1444:6630773,4812305:25952256,505283,126483 -(1,1444:6630773,4812305:25952256,505283,126483 -g1,1444:3078558,4812305 -[1,1444:3078558,4812305:0,0,0 -(1,1444:3078558,2439708:0,1703936,0 -k1,1444:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1444:2537886,2439708:1179648,16384,0 +[1,1450:6630773,47279633:25952256,43253760,0 +[1,1450:6630773,4812305:25952256,786432,0 +(1,1450:6630773,4812305:25952256,505283,126483 +(1,1450:6630773,4812305:25952256,505283,126483 +g1,1450:3078558,4812305 +[1,1450:3078558,4812305:0,0,0 +(1,1450:3078558,2439708:0,1703936,0 +k1,1450:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1450:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1444:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1450:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1444:3078558,4812305:0,0,0 -(1,1444:3078558,2439708:0,1703936,0 -g1,1444:29030814,2439708 -g1,1444:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1444:36151628,1915420:16384,1179648,0 +[1,1450:3078558,4812305:0,0,0 +(1,1450:3078558,2439708:0,1703936,0 +g1,1450:29030814,2439708 +g1,1450:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1450:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1444:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1450:37855564,2439708:1179648,16384,0 ) ) -k1,1444:3078556,2439708:-34777008 +k1,1450:3078556,2439708:-34777008 ) ] -[1,1444:3078558,4812305:0,0,0 -(1,1444:3078558,49800853:0,16384,2228224 -k1,1444:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1444:2537886,49800853:1179648,16384,0 +[1,1450:3078558,4812305:0,0,0 +(1,1450:3078558,49800853:0,16384,2228224 +k1,1450:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1450:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1444:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1450:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) -) -) +) +) ] -[1,1444:3078558,4812305:0,0,0 -(1,1444:3078558,49800853:0,16384,2228224 -g1,1444:29030814,49800853 -g1,1444:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1444:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1444:37855564,49800853:1179648,16384,0 -) -) -k1,1444:3078556,49800853:-34777008 -) -] -g1,1444:6630773,4812305 -g1,1444:6630773,4812305 -g1,1444:10646819,4812305 -g1,1444:13853495,4812305 -g1,1444:15263174,4812305 -g1,1444:18764762,4812305 -k1,1444:31786111,4812305:13021349 -) -) -] -[1,1444:6630773,45706769:25952256,40108032,0 -(1,1444:6630773,45706769:25952256,40108032,0 -(1,1444:6630773,45706769:0,0,0 -g1,1444:6630773,45706769 -) -[1,1444:6630773,45706769:25952256,40108032,0 -v1,1375:6630773,6254097:0,393216,0 -(1,1387:6630773,17829845:25952256,11968964,616038 -g1,1387:6630773,17829845 -(1,1387:6630773,17829845:25952256,11968964,616038 -(1,1387:6630773,18445883:25952256,12585002,0 -[1,1387:6630773,18445883:25952256,12585002,0 -(1,1387:6630773,18419669:25952256,12532574,0 -r1,1387:6656987,18419669:26214,12532574,0 -[1,1387:6656987,18419669:25899828,12532574,0 -(1,1387:6656987,17829845:25899828,11352926,0 -[1,1387:7246811,17829845:24720180,11352926,0 -(1,1376:7246811,7564293:24720180,1087374,134348 -k1,1375:8656969,7564293:200455 -k1,1375:10710783,7564293:200456 -k1,1375:11720608,7564293:200455 -k1,1375:12940149,7564293:200456 -k1,1375:16750327,7564293:200455 -k1,1375:17610075,7564293:200456 -k1,1375:21270176,7564293:200455 -k1,1375:24644540,7564293:200455 -k1,1375:25654366,7564293:200456 -k1,1375:27352974,7564293:200455 -h1,1375:28149892,7564293:0,0,0 -k1,1375:28350348,7564293:200456 -k1,1375:29498454,7564293:200455 -(1,1375:29498454,7564293:0,452978,115847 -r1,1387:31966991,7564293:2468537,568825,115847 -k1,1375:29498454,7564293:-2468537 -) -(1,1375:29498454,7564293:2468537,452978,115847 -k1,1375:29498454,7564293:3277 -h1,1375:31963714,7564293:0,411205,112570 -) -k1,1375:31966991,7564293:0 -) -(1,1376:7246811,8405781:24720180,505283,134348 -k1,1375:10789032,8405781:291635 -k1,1375:13449138,8405781:291635 -k1,1375:15071154,8405781:291635 -k1,1375:18822436,8405781:291636 -k1,1375:21040829,8405781:291635 -k1,1375:22726415,8405781:291635 -k1,1375:26355143,8405781:291635 -k1,1375:28716405,8405781:291635 -k1,1375:31966991,8405781:0 -) -(1,1376:7246811,9247269:24720180,513147,134348 -k1,1375:9535745,9247269:237657 -k1,1375:11843030,9247269:237658 -k1,1375:14388865,9247269:237657 -k1,1375:15285814,9247269:237657 -k1,1375:18285815,9247269:237658 -k1,1375:20867039,9247269:237657 -k1,1375:24292368,9247269:237658 -k1,1375:26543291,9247269:237657 -k1,1375:28144752,9247269:237657 -k1,1375:29573855,9247269:237658 -k1,1375:31205463,9247269:237657 -k1,1375:31966991,9247269:0 -) -(1,1376:7246811,10088757:24720180,505283,134348 -k1,1375:9721748,10088757:217222 -k1,1375:12170471,10088757:217222 -k1,1375:13883880,10088757:217222 -k1,1375:17617764,10088757:217222 -k1,1375:19228937,10088757:217222 -k1,1375:22850754,10088757:217222 -k1,1375:23877346,10088757:217222 -k1,1375:25907294,10088757:217222 -k1,1375:26953546,10088757:217222 -k1,1375:28149221,10088757:217222 -k1,1375:29536916,10088757:217222 -k1,1375:31966991,10088757:0 -) -(1,1376:7246811,10930245:24720180,505283,134348 -k1,1375:8678117,10930245:274596 -k1,1375:11614130,10930245:274596 -k1,1375:12420223,10930245:274596 -k1,1375:14389579,10930245:274595 -k1,1375:16706277,10930245:274596 -k1,1375:19416846,10930245:274596 -k1,1375:20894683,10930245:274596 -k1,1375:24004366,10930245:274596 -k1,1375:25470407,10930245:274596 -k1,1375:27178930,10930245:274595 -k1,1375:29382906,10930245:274596 -k1,1375:30848947,10930245:274596 -k1,1375:31966991,10930245:0 -) -(1,1376:7246811,11771733:24720180,505283,134348 -k1,1375:8893348,11771733:187706 -k1,1375:10585105,11771733:187706 -k1,1375:13131451,11771733:187705 -k1,1375:14700001,11771733:187706 -k1,1375:16172213,11771733:187706 -k1,1375:17530392,11771733:187706 -k1,1375:21382871,11771733:187706 -k1,1375:22867535,11771733:187706 -k1,1375:24074325,11771733:187705 -k1,1375:26272676,11771733:187706 -k1,1375:29239109,11771733:187706 -k1,1375:30418375,11771733:187706 -k1,1375:31966991,11771733:0 -) -(1,1376:7246811,12613221:24720180,505283,126483 -k1,1375:8897390,12613221:270391 -k1,1375:10333010,12613221:270390 -k1,1375:14249824,12613221:270391 -k1,1375:15690687,12613221:270390 -k1,1375:17093540,12613221:270391 -k1,1375:18894197,12613221:270391 -k1,1375:19816015,12613221:270390 -k1,1375:22090497,12613221:270391 -k1,1375:24592388,12613221:270390 -k1,1375:27854498,12613221:270391 -k1,1375:28807773,12613221:270390 -k1,1375:30269609,12613221:270391 -k1,1375:31966991,12613221:0 -) -(1,1376:7246811,13454709:24720180,513147,134348 -k1,1375:8149480,13454709:251241 -k1,1375:10038465,13454709:251240 -k1,1375:11355977,13454709:251241 -k1,1375:12274374,13454709:251241 -k1,1375:12940405,13454709:251188 -k1,1375:13962349,13454709:251241 -k1,1375:18868612,13454709:251241 -k1,1375:19779145,13454709:251241 -k1,1375:21360766,13454709:251240 -k1,1375:21967867,13454709:251241 -k1,1375:24417186,13454709:251241 -k1,1375:26943837,13454709:251241 -k1,1375:27854369,13454709:251240 -k1,1375:29124695,13454709:251241 -k1,1375:31966991,13454709:0 -) -(1,1376:7246811,14296197:24720180,513147,134348 -g1,1375:9546469,14296197 -g1,1375:10470526,14296197 -g1,1375:11485023,14296197 -g1,1375:12750523,14296197 -g1,1375:14229670,14296197 -g1,1375:15264483,14296197 -g1,1375:17195173,14296197 -g1,1375:18585847,14296197 -g1,1375:20500809,14296197 -g1,1375:21792523,14296197 -g1,1375:22651044,14296197 -g1,1375:24309104,14296197 -k1,1376:31966991,14296197:3693614 -g1,1376:31966991,14296197 -) -v1,1378:7246811,15486663:0,393216,0 -(1,1384:7246811,17108949:24720180,2015502,196608 -g1,1384:7246811,17108949 -g1,1384:7246811,17108949 -g1,1384:7050203,17108949 -(1,1384:7050203,17108949:0,2015502,196608 -r1,1387:32163599,17108949:25113396,2212110,196608 -k1,1384:7050203,17108949:-25113396 -) -(1,1384:7050203,17108949:25113396,2015502,196608 -[1,1384:7246811,17108949:24720180,1818894,0 -(1,1380:7246811,15694281:24720180,404226,82312 -(1,1379:7246811,15694281:0,0,0 -g1,1379:7246811,15694281 -g1,1379:7246811,15694281 -g1,1379:6919131,15694281 -(1,1379:6919131,15694281:0,0,0 -) -g1,1379:7246811,15694281 -) -g1,1380:7879103,15694281 -g1,1380:8827541,15694281 -g1,1380:11356708,15694281 -g1,1380:13569728,15694281 -g1,1380:15466603,15694281 -h1,1380:16415040,15694281:0,0,0 -k1,1380:31966991,15694281:15551951 -g1,1380:31966991,15694281 -) -(1,1381:7246811,16360459:24720180,388497,9436 -h1,1381:7246811,16360459:0,0,0 -g1,1381:7879103,16360459 -g1,1381:8511395,16360459 -h1,1381:10092123,16360459:0,0,0 -k1,1381:31966991,16360459:21874868 -g1,1381:31966991,16360459 -) -(1,1382:7246811,17026637:24720180,404226,82312 -h1,1382:7246811,17026637:0,0,0 -g1,1382:7879103,17026637 -g1,1382:8511395,17026637 -g1,1382:11040562,17026637 -h1,1382:12937436,17026637:0,0,0 -k1,1382:31966992,17026637:19029556 -g1,1382:31966992,17026637 -) -] -) -g1,1384:31966991,17108949 -g1,1384:7246811,17108949 -g1,1384:7246811,17108949 -g1,1384:31966991,17108949 -g1,1384:31966991,17108949 -) -h1,1384:7246811,17305557:0,0,0 -] -) -] -r1,1387:32583029,18419669:26214,12532574,0 -) -] -) -) -g1,1387:32583029,17829845 -) -h1,1387:6630773,18445883:0,0,0 -(1,1389:6630773,21777739:25952256,32768,229376 -(1,1389:6630773,21777739:0,32768,229376 -(1,1389:6630773,21777739:5505024,32768,229376 -r1,1389:12135797,21777739:5505024,262144,229376 -) -k1,1389:6630773,21777739:-5505024 -) -(1,1389:6630773,21777739:25952256,32768,0 -r1,1389:32583029,21777739:25952256,32768,0 -) -) -(1,1389:6630773,23382067:25952256,606339,151780 -(1,1389:6630773,23382067:1974731,582746,14155 -g1,1389:6630773,23382067 -g1,1389:8605504,23382067 -) -g1,1389:13636310,23382067 -g1,1389:17688794,23382067 -g1,1389:19398497,23382067 -k1,1389:32583029,23382067:8970829 -g1,1389:32583029,23382067 -) -(1,1392:6630773,24616771:25952256,513147,126483 -g1,1391:10705801,24616771 -g1,1391:13981945,24616771 -g1,1391:16191819,24616771 -g1,1391:18699226,24616771 -g1,1391:19565611,24616771 -(1,1391:19565611,24616771:0,452978,122846 -r1,1391:22034148,24616771:2468537,575824,122846 -k1,1391:19565611,24616771:-2468537 -) -(1,1391:19565611,24616771:2468537,452978,122846 -k1,1391:19565611,24616771:3277 -h1,1391:22030871,24616771:0,411205,112570 -) -g1,1391:22233377,24616771 -g1,1391:24443251,24616771 -g1,1391:25328642,24616771 -k1,1392:32583029,24616771:4907543 -g1,1392:32583029,24616771 -) -v1,1394:6630773,25807237:0,393216,0 -(1,1438:6630773,39792551:25952256,14378530,196608 -g1,1438:6630773,39792551 -g1,1438:6630773,39792551 -g1,1438:6434165,39792551 -(1,1438:6434165,39792551:0,14378530,196608 -r1,1438:32779637,39792551:26345472,14575138,196608 -k1,1438:6434165,39792551:-26345472 -) -(1,1438:6434165,39792551:26345472,14378530,196608 -[1,1438:6630773,39792551:25952256,14181922,0 -(1,1396:6630773,25999126:25952256,388497,9436 -(1,1395:6630773,25999126:0,0,0 -g1,1395:6630773,25999126 -g1,1395:6630773,25999126 -g1,1395:6303093,25999126 -(1,1395:6303093,25999126:0,0,0 -) -g1,1395:6630773,25999126 -) -g1,1396:7895356,25999126 -g1,1396:8527648,25999126 -h1,1396:9476085,25999126:0,0,0 -k1,1396:32583029,25999126:23106944 -g1,1396:32583029,25999126 -) -(1,1400:6630773,26730840:25952256,404226,76021 -(1,1398:6630773,26730840:0,0,0 -g1,1398:6630773,26730840 -g1,1398:6630773,26730840 -g1,1398:6303093,26730840 -(1,1398:6303093,26730840:0,0,0 -) -g1,1398:6630773,26730840 -) -g1,1400:7579210,26730840 -g1,1400:8843793,26730840 -h1,1400:10108376,26730840:0,0,0 -k1,1400:32583028,26730840:22474652 -g1,1400:32583028,26730840 -) -(1,1402:6630773,28052378:25952256,388497,9436 -(1,1401:6630773,28052378:0,0,0 -g1,1401:6630773,28052378 -g1,1401:6630773,28052378 -g1,1401:6303093,28052378 -(1,1401:6303093,28052378:0,0,0 -) -g1,1401:6630773,28052378 -) -g1,1402:7895356,28052378 -g1,1402:8843793,28052378 -h1,1402:9792230,28052378:0,0,0 -k1,1402:32583030,28052378:22790800 -g1,1402:32583030,28052378 -) -(1,1406:6630773,28784092:25952256,404226,76021 -(1,1404:6630773,28784092:0,0,0 -g1,1404:6630773,28784092 -g1,1404:6630773,28784092 -g1,1404:6303093,28784092 -(1,1404:6303093,28784092:0,0,0 -) -g1,1404:6630773,28784092 -) -g1,1406:7579210,28784092 -g1,1406:8843793,28784092 -h1,1406:10108376,28784092:0,0,0 -k1,1406:32583028,28784092:22474652 -g1,1406:32583028,28784092 -) -(1,1408:6630773,30105630:25952256,404226,101187 -(1,1407:6630773,30105630:0,0,0 -g1,1407:6630773,30105630 -g1,1407:6630773,30105630 -g1,1407:6303093,30105630 -(1,1407:6303093,30105630:0,0,0 -) -g1,1407:6630773,30105630 -) -g1,1408:7895356,30105630 -g1,1408:8843793,30105630 -g1,1408:10108376,30105630 -g1,1408:10740668,30105630 -g1,1408:11689105,30105630 -g1,1408:13585979,30105630 -g1,1408:15166708,30105630 -g1,1408:16747437,30105630 -g1,1408:17695874,30105630 -g1,1408:18960457,30105630 -g1,1408:20225040,30105630 -g1,1408:20857332,30105630 -k1,1408:20857332,30105630:0 -h1,1408:23070352,30105630:0,0,0 -k1,1408:32583029,30105630:9512677 -g1,1408:32583029,30105630 -) -(1,1412:6630773,30837344:25952256,404226,76021 -(1,1410:6630773,30837344:0,0,0 -g1,1410:6630773,30837344 -g1,1410:6630773,30837344 -g1,1410:6303093,30837344 -(1,1410:6303093,30837344:0,0,0 -) -g1,1410:6630773,30837344 -) -g1,1412:7579210,30837344 -g1,1412:8843793,30837344 -h1,1412:10424521,30837344:0,0,0 -k1,1412:32583029,30837344:22158508 -g1,1412:32583029,30837344 -) -(1,1414:6630773,32158882:25952256,388497,9436 -(1,1413:6630773,32158882:0,0,0 -g1,1413:6630773,32158882 -g1,1413:6630773,32158882 -g1,1413:6303093,32158882 -(1,1413:6303093,32158882:0,0,0 -) -g1,1413:6630773,32158882 -) -g1,1414:7895356,32158882 -g1,1414:8843793,32158882 -h1,1414:9792230,32158882:0,0,0 -k1,1414:32583030,32158882:22790800 -g1,1414:32583030,32158882 -) -(1,1418:6630773,32890596:25952256,404226,76021 -(1,1416:6630773,32890596:0,0,0 -g1,1416:6630773,32890596 -g1,1416:6630773,32890596 -g1,1416:6303093,32890596 -(1,1416:6303093,32890596:0,0,0 -) -g1,1416:6630773,32890596 -) -g1,1418:7579210,32890596 -g1,1418:8843793,32890596 -h1,1418:10108376,32890596:0,0,0 -k1,1418:32583028,32890596:22474652 -g1,1418:32583028,32890596 -) -(1,1420:6630773,34212134:25952256,388497,9436 -(1,1419:6630773,34212134:0,0,0 -g1,1419:6630773,34212134 -g1,1419:6630773,34212134 -g1,1419:6303093,34212134 -(1,1419:6303093,34212134:0,0,0 -) -g1,1419:6630773,34212134 -) -g1,1420:7895356,34212134 -g1,1420:8843793,34212134 -h1,1420:9792230,34212134:0,0,0 -k1,1420:32583030,34212134:22790800 -g1,1420:32583030,34212134 -) -(1,1424:6630773,34943848:25952256,404226,76021 -(1,1422:6630773,34943848:0,0,0 -g1,1422:6630773,34943848 -g1,1422:6630773,34943848 -g1,1422:6303093,34943848 -(1,1422:6303093,34943848:0,0,0 -) -g1,1422:6630773,34943848 -) -g1,1424:7579210,34943848 -g1,1424:8843793,34943848 -h1,1424:10424521,34943848:0,0,0 -k1,1424:32583029,34943848:22158508 -g1,1424:32583029,34943848 -) -(1,1426:6630773,36265386:25952256,388497,9436 -(1,1425:6630773,36265386:0,0,0 -g1,1425:6630773,36265386 -g1,1425:6630773,36265386 -g1,1425:6303093,36265386 -(1,1425:6303093,36265386:0,0,0 -) -g1,1425:6630773,36265386 -) -g1,1426:7895356,36265386 -g1,1426:8527648,36265386 -h1,1426:9476085,36265386:0,0,0 -k1,1426:32583029,36265386:23106944 -g1,1426:32583029,36265386 -) -(1,1430:6630773,36997100:25952256,404226,76021 -(1,1428:6630773,36997100:0,0,0 -g1,1428:6630773,36997100 -g1,1428:6630773,36997100 -g1,1428:6303093,36997100 -(1,1428:6303093,36997100:0,0,0 -) -g1,1428:6630773,36997100 -) -g1,1430:7579210,36997100 -g1,1430:8843793,36997100 -h1,1430:10424521,36997100:0,0,0 -k1,1430:32583029,36997100:22158508 -g1,1430:32583029,36997100 -) -(1,1432:6630773,38318638:25952256,388497,9436 -(1,1431:6630773,38318638:0,0,0 -g1,1431:6630773,38318638 -g1,1431:6630773,38318638 -g1,1431:6303093,38318638 -(1,1431:6303093,38318638:0,0,0 -) -g1,1431:6630773,38318638 -) -g1,1432:7263065,38318638 -g1,1432:8211503,38318638 -h1,1432:8843794,38318638:0,0,0 -k1,1432:32583030,38318638:23739236 -g1,1432:32583030,38318638 -) -(1,1433:6630773,38984816:25952256,388497,9436 -h1,1433:6630773,38984816:0,0,0 -g1,1433:7263065,38984816 -g1,1433:7895357,38984816 -g1,1433:9159940,38984816 -g1,1433:10108377,38984816 -g1,1433:10740669,38984816 -g1,1433:11372961,38984816 -h1,1433:12005252,38984816:0,0,0 -k1,1433:32583028,38984816:20577776 -g1,1433:32583028,38984816 -) -(1,1437:6630773,39716530:25952256,404226,76021 -(1,1435:6630773,39716530:0,0,0 -g1,1435:6630773,39716530 -g1,1435:6630773,39716530 -g1,1435:6303093,39716530 -(1,1435:6303093,39716530:0,0,0 -) -g1,1435:6630773,39716530 -) -g1,1437:7579210,39716530 -g1,1437:8843793,39716530 -h1,1437:10108376,39716530:0,0,0 -k1,1437:32583028,39716530:22474652 -g1,1437:32583028,39716530 -) -] -) -g1,1438:32583029,39792551 -g1,1438:6630773,39792551 -g1,1438:6630773,39792551 -g1,1438:32583029,39792551 -g1,1438:32583029,39792551 -) -h1,1438:6630773,39989159:0,0,0 -(1,1442:6630773,41354935:25952256,513147,134348 -h1,1441:6630773,41354935:983040,0,0 -k1,1441:9770553,41354935:282410 -k1,1441:13129877,41354935:282409 -k1,1441:14516569,41354935:282410 -k1,1441:15546745,41354935:282410 -k1,1441:17342380,41354935:282409 -k1,1441:18434160,41354935:282410 -k1,1441:21024748,41354935:282410 -k1,1441:21966450,41354935:282410 -k1,1441:23380666,41354935:282409 -k1,1441:25850012,41354935:282410 -k1,1441:29133316,41354935:282410 -k1,1441:30101887,41354935:282409 -k1,1441:30740157,41354935:282410 -k1,1441:32583029,41354935:0 -) -(1,1442:6630773,42196423:25952256,505283,134348 -k1,1441:7268906,42196423:282273 -k1,1441:9620806,42196423:282273 -k1,1441:11880956,42196423:282273 -k1,1441:12849391,42196423:282273 -k1,1441:14520372,42196423:282273 -k1,1441:15488807,42196423:282273 -k1,1441:16790165,42196423:282273 -k1,1441:19395688,42196423:282272 -k1,1441:22494043,42196423:282273 -k1,1441:23404151,42196423:282273 -k1,1441:25388394,42196423:282273 -k1,1441:27799276,42196423:282273 -k1,1441:29461737,42196423:282273 -k1,1441:31966991,42196423:282273 -k1,1441:32583029,42196423:0 -) -(1,1442:6630773,43037911:25952256,505283,134348 -k1,1441:7875193,43037911:225335 -k1,1441:9754000,43037911:225334 -k1,1441:11217310,43037911:225335 -k1,1441:12128806,43037911:225334 -k1,1441:13373226,43037911:225335 -k1,1441:16874705,43037911:225334 -k1,1441:20176955,43037911:225335 -k1,1441:23492312,43037911:225334 -k1,1441:24527017,43037911:225335 -k1,1441:26250504,43037911:225334 -h1,1441:27047422,43037911:0,0,0 -k1,1441:27446427,43037911:225335 -k1,1441:29180400,43037911:225334 -k1,1441:32583029,43037911:0 -) -(1,1442:6630773,43879399:25952256,513147,126483 -k1,1441:7836062,43879399:213729 -k1,1441:10686960,43879399:213729 -k1,1441:12598727,43879399:213729 -k1,1441:15284474,43879399:213729 -k1,1441:17050096,43879399:213729 -k1,1441:17729786,43879399:213729 -k1,1441:19113988,43879399:213729 -k1,1441:20142986,43879399:213730 -k1,1441:21422986,43879399:213729 -k1,1441:23359657,43879399:213729 -k1,1441:25122002,43879399:213729 -k1,1441:25987159,43879399:213729 -k1,1441:28271826,43879399:213729 -k1,1441:29171717,43879399:213729 -k1,1441:29741306,43879399:213729 -k1,1441:31635378,43879399:213729 -k1,1441:32583029,43879399:0 -) -(1,1442:6630773,44720887:25952256,513147,126483 -k1,1441:7904463,44720887:254605 -k1,1441:10136946,44720887:254606 -k1,1441:13170278,44720887:254605 -k1,1441:14186411,44720887:254605 -(1,1441:14186411,44720887:0,435480,115847 -r1,1441:15599812,44720887:1413401,551327,115847 -k1,1441:14186411,44720887:-1413401 -) -(1,1441:14186411,44720887:1413401,435480,115847 -k1,1441:14186411,44720887:3277 -h1,1441:15596535,44720887:0,411205,112570 -) -k1,1441:16028087,44720887:254605 -k1,1441:18695073,44720887:254606 -k1,1441:19968763,44720887:254605 -k1,1441:23409728,44720887:254605 -(1,1441:23409728,44720887:0,452978,115847 -r1,1441:26229977,44720887:2820249,568825,115847 -k1,1441:23409728,44720887:-2820249 -) -(1,1441:23409728,44720887:2820249,452978,115847 -k1,1441:23409728,44720887:3277 -h1,1441:26226700,44720887:0,411205,112570 -) -k1,1441:26484582,44720887:254605 -k1,1441:28252414,44720887:254606 -k1,1441:29526104,44720887:254605 -k1,1441:31086842,44720887:254605 -k1,1441:32583029,44720887:0 -) -(1,1442:6630773,45562375:25952256,505283,134348 -g1,1441:10016362,45562375 -g1,1441:12257693,45562375 -g1,1441:13313478,45562375 -g1,1441:17639509,45562375 -(1,1441:17639509,45562375:0,435480,115847 -r1,1441:19052910,45562375:1413401,551327,115847 -k1,1441:17639509,45562375:-1413401 -) -(1,1441:17639509,45562375:1413401,435480,115847 -k1,1441:17639509,45562375:3277 -h1,1441:19049633,45562375:0,411205,112570 -) -g1,1441:19252139,45562375 -g1,1441:21911590,45562375 -g1,1441:24144401,45562375 -g1,1441:25362715,45562375 -g1,1441:27404816,45562375 -g1,1441:28255473,45562375 -g1,1441:28810562,45562375 -k1,1442:32583029,45562375:1087457 -g1,1442:32583029,45562375 -) -] -(1,1444:32583029,45706769:0,0,0 -g1,1444:32583029,45706769 -) -) -] -(1,1444:6630773,47279633:25952256,0,0 -h1,1444:6630773,47279633:25952256,0,0 -) -] -h1,1444:4262630,4025873:0,0,0 +[1,1450:3078558,4812305:0,0,0 +(1,1450:3078558,49800853:0,16384,2228224 +g1,1450:29030814,49800853 +g1,1450:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1450:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1450:37855564,49800853:1179648,16384,0 +) +) +k1,1450:3078556,49800853:-34777008 +) +] +g1,1450:6630773,4812305 +g1,1450:6630773,4812305 +g1,1450:10646819,4812305 +g1,1450:13853495,4812305 +g1,1450:15263174,4812305 +g1,1450:18764762,4812305 +k1,1450:31786111,4812305:13021349 +) +) +] +[1,1450:6630773,45706769:25952256,40108032,0 +(1,1450:6630773,45706769:25952256,40108032,0 +(1,1450:6630773,45706769:0,0,0 +g1,1450:6630773,45706769 +) +[1,1450:6630773,45706769:25952256,40108032,0 +v1,1381:6630773,6254097:0,393216,0 +(1,1393:6630773,17829845:25952256,11968964,616038 +g1,1393:6630773,17829845 +(1,1393:6630773,17829845:25952256,11968964,616038 +(1,1393:6630773,18445883:25952256,12585002,0 +[1,1393:6630773,18445883:25952256,12585002,0 +(1,1393:6630773,18419669:25952256,12532574,0 +r1,1393:6656987,18419669:26214,12532574,0 +[1,1393:6656987,18419669:25899828,12532574,0 +(1,1393:6656987,17829845:25899828,11352926,0 +[1,1393:7246811,17829845:24720180,11352926,0 +(1,1382:7246811,7564293:24720180,1087374,134348 +k1,1381:8656969,7564293:200455 +k1,1381:10710783,7564293:200456 +k1,1381:11720608,7564293:200455 +k1,1381:12940149,7564293:200456 +k1,1381:16750327,7564293:200455 +k1,1381:17610075,7564293:200456 +k1,1381:21270176,7564293:200455 +k1,1381:24644540,7564293:200455 +k1,1381:25654366,7564293:200456 +k1,1381:27352974,7564293:200455 +h1,1381:28149892,7564293:0,0,0 +k1,1381:28350348,7564293:200456 +k1,1381:29498454,7564293:200455 +(1,1381:29498454,7564293:0,452978,115847 +r1,1393:31966991,7564293:2468537,568825,115847 +k1,1381:29498454,7564293:-2468537 +) +(1,1381:29498454,7564293:2468537,452978,115847 +k1,1381:29498454,7564293:3277 +h1,1381:31963714,7564293:0,411205,112570 +) +k1,1381:31966991,7564293:0 +) +(1,1382:7246811,8405781:24720180,505283,134348 +k1,1381:10789032,8405781:291635 +k1,1381:13449138,8405781:291635 +k1,1381:15071154,8405781:291635 +k1,1381:18822436,8405781:291636 +k1,1381:21040829,8405781:291635 +k1,1381:22726415,8405781:291635 +k1,1381:26355143,8405781:291635 +k1,1381:28716405,8405781:291635 +k1,1381:31966991,8405781:0 +) +(1,1382:7246811,9247269:24720180,513147,134348 +k1,1381:9535745,9247269:237657 +k1,1381:11843030,9247269:237658 +k1,1381:14388865,9247269:237657 +k1,1381:15285814,9247269:237657 +k1,1381:18285815,9247269:237658 +k1,1381:20867039,9247269:237657 +k1,1381:24292368,9247269:237658 +k1,1381:26543291,9247269:237657 +k1,1381:28144752,9247269:237657 +k1,1381:29573855,9247269:237658 +k1,1381:31205463,9247269:237657 +k1,1381:31966991,9247269:0 +) +(1,1382:7246811,10088757:24720180,505283,134348 +k1,1381:9721748,10088757:217222 +k1,1381:12170471,10088757:217222 +k1,1381:13883880,10088757:217222 +k1,1381:17617764,10088757:217222 +k1,1381:19228937,10088757:217222 +k1,1381:22850754,10088757:217222 +k1,1381:23877346,10088757:217222 +k1,1381:25907294,10088757:217222 +k1,1381:26953546,10088757:217222 +k1,1381:28149221,10088757:217222 +k1,1381:29536916,10088757:217222 +k1,1381:31966991,10088757:0 +) +(1,1382:7246811,10930245:24720180,505283,134348 +k1,1381:8678117,10930245:274596 +k1,1381:11614130,10930245:274596 +k1,1381:12420223,10930245:274596 +k1,1381:14389579,10930245:274595 +k1,1381:16706277,10930245:274596 +k1,1381:19416846,10930245:274596 +k1,1381:20894683,10930245:274596 +k1,1381:24004366,10930245:274596 +k1,1381:25470407,10930245:274596 +k1,1381:27178930,10930245:274595 +k1,1381:29382906,10930245:274596 +k1,1381:30848947,10930245:274596 +k1,1381:31966991,10930245:0 +) +(1,1382:7246811,11771733:24720180,505283,134348 +k1,1381:8893348,11771733:187706 +k1,1381:10585105,11771733:187706 +k1,1381:13131451,11771733:187705 +k1,1381:14700001,11771733:187706 +k1,1381:16172213,11771733:187706 +k1,1381:17530392,11771733:187706 +k1,1381:21382871,11771733:187706 +k1,1381:22867535,11771733:187706 +k1,1381:24074325,11771733:187705 +k1,1381:26272676,11771733:187706 +k1,1381:29239109,11771733:187706 +k1,1381:30418375,11771733:187706 +k1,1381:31966991,11771733:0 +) +(1,1382:7246811,12613221:24720180,505283,126483 +k1,1381:8897390,12613221:270391 +k1,1381:10333010,12613221:270390 +k1,1381:14249824,12613221:270391 +k1,1381:15690687,12613221:270390 +k1,1381:17093540,12613221:270391 +k1,1381:18894197,12613221:270391 +k1,1381:19816015,12613221:270390 +k1,1381:22090497,12613221:270391 +k1,1381:24592388,12613221:270390 +k1,1381:27854498,12613221:270391 +k1,1381:28807773,12613221:270390 +k1,1381:30269609,12613221:270391 +k1,1381:31966991,12613221:0 +) +(1,1382:7246811,13454709:24720180,513147,134348 +k1,1381:8149480,13454709:251241 +k1,1381:10038465,13454709:251240 +k1,1381:11355977,13454709:251241 +k1,1381:12274374,13454709:251241 +k1,1381:12940405,13454709:251188 +k1,1381:13962349,13454709:251241 +k1,1381:18868612,13454709:251241 +k1,1381:19779145,13454709:251241 +k1,1381:21360766,13454709:251240 +k1,1381:21967867,13454709:251241 +k1,1381:24417186,13454709:251241 +k1,1381:26943837,13454709:251241 +k1,1381:27854369,13454709:251240 +k1,1381:29124695,13454709:251241 +k1,1381:31966991,13454709:0 +) +(1,1382:7246811,14296197:24720180,513147,134348 +g1,1381:9546469,14296197 +g1,1381:10470526,14296197 +g1,1381:11485023,14296197 +g1,1381:12750523,14296197 +g1,1381:14229670,14296197 +g1,1381:15264483,14296197 +g1,1381:17195173,14296197 +g1,1381:18585847,14296197 +g1,1381:20500809,14296197 +g1,1381:21792523,14296197 +g1,1381:22651044,14296197 +g1,1381:24309104,14296197 +k1,1382:31966991,14296197:3693614 +g1,1382:31966991,14296197 +) +v1,1384:7246811,15486663:0,393216,0 +(1,1390:7246811,17108949:24720180,2015502,196608 +g1,1390:7246811,17108949 +g1,1390:7246811,17108949 +g1,1390:7050203,17108949 +(1,1390:7050203,17108949:0,2015502,196608 +r1,1393:32163599,17108949:25113396,2212110,196608 +k1,1390:7050203,17108949:-25113396 +) +(1,1390:7050203,17108949:25113396,2015502,196608 +[1,1390:7246811,17108949:24720180,1818894,0 +(1,1386:7246811,15694281:24720180,404226,82312 +(1,1385:7246811,15694281:0,0,0 +g1,1385:7246811,15694281 +g1,1385:7246811,15694281 +g1,1385:6919131,15694281 +(1,1385:6919131,15694281:0,0,0 +) +g1,1385:7246811,15694281 +) +g1,1386:7879103,15694281 +g1,1386:8827541,15694281 +g1,1386:11356708,15694281 +g1,1386:13569728,15694281 +g1,1386:15466603,15694281 +h1,1386:16415040,15694281:0,0,0 +k1,1386:31966991,15694281:15551951 +g1,1386:31966991,15694281 +) +(1,1387:7246811,16360459:24720180,388497,9436 +h1,1387:7246811,16360459:0,0,0 +g1,1387:7879103,16360459 +g1,1387:8511395,16360459 +h1,1387:10092123,16360459:0,0,0 +k1,1387:31966991,16360459:21874868 +g1,1387:31966991,16360459 +) +(1,1388:7246811,17026637:24720180,404226,82312 +h1,1388:7246811,17026637:0,0,0 +g1,1388:7879103,17026637 +g1,1388:8511395,17026637 +g1,1388:11040562,17026637 +h1,1388:12937436,17026637:0,0,0 +k1,1388:31966992,17026637:19029556 +g1,1388:31966992,17026637 +) +] +) +g1,1390:31966991,17108949 +g1,1390:7246811,17108949 +g1,1390:7246811,17108949 +g1,1390:31966991,17108949 +g1,1390:31966991,17108949 +) +h1,1390:7246811,17305557:0,0,0 +] +) +] +r1,1393:32583029,18419669:26214,12532574,0 +) +] +) +) +g1,1393:32583029,17829845 +) +h1,1393:6630773,18445883:0,0,0 +(1,1395:6630773,21777739:25952256,32768,229376 +(1,1395:6630773,21777739:0,32768,229376 +(1,1395:6630773,21777739:5505024,32768,229376 +r1,1395:12135797,21777739:5505024,262144,229376 +) +k1,1395:6630773,21777739:-5505024 +) +(1,1395:6630773,21777739:25952256,32768,0 +r1,1395:32583029,21777739:25952256,32768,0 +) +) +(1,1395:6630773,23382067:25952256,606339,151780 +(1,1395:6630773,23382067:1974731,582746,14155 +g1,1395:6630773,23382067 +g1,1395:8605504,23382067 +) +g1,1395:13636310,23382067 +g1,1395:17688794,23382067 +g1,1395:19398497,23382067 +k1,1395:32583029,23382067:8970829 +g1,1395:32583029,23382067 +) +(1,1398:6630773,24616771:25952256,513147,126483 +g1,1397:10705801,24616771 +g1,1397:13981945,24616771 +g1,1397:16191819,24616771 +g1,1397:18699226,24616771 +g1,1397:19565611,24616771 +(1,1397:19565611,24616771:0,452978,122846 +r1,1397:22034148,24616771:2468537,575824,122846 +k1,1397:19565611,24616771:-2468537 +) +(1,1397:19565611,24616771:2468537,452978,122846 +k1,1397:19565611,24616771:3277 +h1,1397:22030871,24616771:0,411205,112570 +) +g1,1397:22233377,24616771 +g1,1397:24443251,24616771 +g1,1397:25328642,24616771 +k1,1398:32583029,24616771:4907543 +g1,1398:32583029,24616771 +) +v1,1400:6630773,25807237:0,393216,0 +(1,1444:6630773,39792551:25952256,14378530,196608 +g1,1444:6630773,39792551 +g1,1444:6630773,39792551 +g1,1444:6434165,39792551 +(1,1444:6434165,39792551:0,14378530,196608 +r1,1444:32779637,39792551:26345472,14575138,196608 +k1,1444:6434165,39792551:-26345472 +) +(1,1444:6434165,39792551:26345472,14378530,196608 +[1,1444:6630773,39792551:25952256,14181922,0 +(1,1402:6630773,25999126:25952256,388497,9436 +(1,1401:6630773,25999126:0,0,0 +g1,1401:6630773,25999126 +g1,1401:6630773,25999126 +g1,1401:6303093,25999126 +(1,1401:6303093,25999126:0,0,0 +) +g1,1401:6630773,25999126 +) +g1,1402:7895356,25999126 +g1,1402:8527648,25999126 +h1,1402:9476085,25999126:0,0,0 +k1,1402:32583029,25999126:23106944 +g1,1402:32583029,25999126 +) +(1,1406:6630773,26730840:25952256,404226,76021 +(1,1404:6630773,26730840:0,0,0 +g1,1404:6630773,26730840 +g1,1404:6630773,26730840 +g1,1404:6303093,26730840 +(1,1404:6303093,26730840:0,0,0 +) +g1,1404:6630773,26730840 +) +g1,1406:7579210,26730840 +g1,1406:8843793,26730840 +h1,1406:10108376,26730840:0,0,0 +k1,1406:32583028,26730840:22474652 +g1,1406:32583028,26730840 +) +(1,1408:6630773,28052378:25952256,388497,9436 +(1,1407:6630773,28052378:0,0,0 +g1,1407:6630773,28052378 +g1,1407:6630773,28052378 +g1,1407:6303093,28052378 +(1,1407:6303093,28052378:0,0,0 +) +g1,1407:6630773,28052378 +) +g1,1408:7895356,28052378 +g1,1408:8843793,28052378 +h1,1408:9792230,28052378:0,0,0 +k1,1408:32583030,28052378:22790800 +g1,1408:32583030,28052378 +) +(1,1412:6630773,28784092:25952256,404226,76021 +(1,1410:6630773,28784092:0,0,0 +g1,1410:6630773,28784092 +g1,1410:6630773,28784092 +g1,1410:6303093,28784092 +(1,1410:6303093,28784092:0,0,0 +) +g1,1410:6630773,28784092 +) +g1,1412:7579210,28784092 +g1,1412:8843793,28784092 +h1,1412:10108376,28784092:0,0,0 +k1,1412:32583028,28784092:22474652 +g1,1412:32583028,28784092 +) +(1,1414:6630773,30105630:25952256,404226,101187 +(1,1413:6630773,30105630:0,0,0 +g1,1413:6630773,30105630 +g1,1413:6630773,30105630 +g1,1413:6303093,30105630 +(1,1413:6303093,30105630:0,0,0 +) +g1,1413:6630773,30105630 +) +g1,1414:7895356,30105630 +g1,1414:8843793,30105630 +g1,1414:10108376,30105630 +g1,1414:10740668,30105630 +g1,1414:11689105,30105630 +g1,1414:13585979,30105630 +g1,1414:15166708,30105630 +g1,1414:16747437,30105630 +g1,1414:17695874,30105630 +g1,1414:18960457,30105630 +g1,1414:20225040,30105630 +g1,1414:20857332,30105630 +k1,1414:20857332,30105630:0 +h1,1414:23070352,30105630:0,0,0 +k1,1414:32583029,30105630:9512677 +g1,1414:32583029,30105630 +) +(1,1418:6630773,30837344:25952256,404226,76021 +(1,1416:6630773,30837344:0,0,0 +g1,1416:6630773,30837344 +g1,1416:6630773,30837344 +g1,1416:6303093,30837344 +(1,1416:6303093,30837344:0,0,0 +) +g1,1416:6630773,30837344 +) +g1,1418:7579210,30837344 +g1,1418:8843793,30837344 +h1,1418:10424521,30837344:0,0,0 +k1,1418:32583029,30837344:22158508 +g1,1418:32583029,30837344 +) +(1,1420:6630773,32158882:25952256,388497,9436 +(1,1419:6630773,32158882:0,0,0 +g1,1419:6630773,32158882 +g1,1419:6630773,32158882 +g1,1419:6303093,32158882 +(1,1419:6303093,32158882:0,0,0 +) +g1,1419:6630773,32158882 +) +g1,1420:7895356,32158882 +g1,1420:8843793,32158882 +h1,1420:9792230,32158882:0,0,0 +k1,1420:32583030,32158882:22790800 +g1,1420:32583030,32158882 +) +(1,1424:6630773,32890596:25952256,404226,76021 +(1,1422:6630773,32890596:0,0,0 +g1,1422:6630773,32890596 +g1,1422:6630773,32890596 +g1,1422:6303093,32890596 +(1,1422:6303093,32890596:0,0,0 +) +g1,1422:6630773,32890596 +) +g1,1424:7579210,32890596 +g1,1424:8843793,32890596 +h1,1424:10108376,32890596:0,0,0 +k1,1424:32583028,32890596:22474652 +g1,1424:32583028,32890596 +) +(1,1426:6630773,34212134:25952256,388497,9436 +(1,1425:6630773,34212134:0,0,0 +g1,1425:6630773,34212134 +g1,1425:6630773,34212134 +g1,1425:6303093,34212134 +(1,1425:6303093,34212134:0,0,0 +) +g1,1425:6630773,34212134 +) +g1,1426:7895356,34212134 +g1,1426:8843793,34212134 +h1,1426:9792230,34212134:0,0,0 +k1,1426:32583030,34212134:22790800 +g1,1426:32583030,34212134 +) +(1,1430:6630773,34943848:25952256,404226,76021 +(1,1428:6630773,34943848:0,0,0 +g1,1428:6630773,34943848 +g1,1428:6630773,34943848 +g1,1428:6303093,34943848 +(1,1428:6303093,34943848:0,0,0 +) +g1,1428:6630773,34943848 +) +g1,1430:7579210,34943848 +g1,1430:8843793,34943848 +h1,1430:10424521,34943848:0,0,0 +k1,1430:32583029,34943848:22158508 +g1,1430:32583029,34943848 +) +(1,1432:6630773,36265386:25952256,388497,9436 +(1,1431:6630773,36265386:0,0,0 +g1,1431:6630773,36265386 +g1,1431:6630773,36265386 +g1,1431:6303093,36265386 +(1,1431:6303093,36265386:0,0,0 +) +g1,1431:6630773,36265386 +) +g1,1432:7895356,36265386 +g1,1432:8527648,36265386 +h1,1432:9476085,36265386:0,0,0 +k1,1432:32583029,36265386:23106944 +g1,1432:32583029,36265386 +) +(1,1436:6630773,36997100:25952256,404226,76021 +(1,1434:6630773,36997100:0,0,0 +g1,1434:6630773,36997100 +g1,1434:6630773,36997100 +g1,1434:6303093,36997100 +(1,1434:6303093,36997100:0,0,0 +) +g1,1434:6630773,36997100 +) +g1,1436:7579210,36997100 +g1,1436:8843793,36997100 +h1,1436:10424521,36997100:0,0,0 +k1,1436:32583029,36997100:22158508 +g1,1436:32583029,36997100 +) +(1,1438:6630773,38318638:25952256,388497,9436 +(1,1437:6630773,38318638:0,0,0 +g1,1437:6630773,38318638 +g1,1437:6630773,38318638 +g1,1437:6303093,38318638 +(1,1437:6303093,38318638:0,0,0 +) +g1,1437:6630773,38318638 +) +g1,1438:7263065,38318638 +g1,1438:8211503,38318638 +h1,1438:8843794,38318638:0,0,0 +k1,1438:32583030,38318638:23739236 +g1,1438:32583030,38318638 +) +(1,1439:6630773,38984816:25952256,388497,9436 +h1,1439:6630773,38984816:0,0,0 +g1,1439:7263065,38984816 +g1,1439:7895357,38984816 +g1,1439:9159940,38984816 +g1,1439:10108377,38984816 +g1,1439:10740669,38984816 +g1,1439:11372961,38984816 +h1,1439:12005252,38984816:0,0,0 +k1,1439:32583028,38984816:20577776 +g1,1439:32583028,38984816 +) +(1,1443:6630773,39716530:25952256,404226,76021 +(1,1441:6630773,39716530:0,0,0 +g1,1441:6630773,39716530 +g1,1441:6630773,39716530 +g1,1441:6303093,39716530 +(1,1441:6303093,39716530:0,0,0 +) +g1,1441:6630773,39716530 +) +g1,1443:7579210,39716530 +g1,1443:8843793,39716530 +h1,1443:10108376,39716530:0,0,0 +k1,1443:32583028,39716530:22474652 +g1,1443:32583028,39716530 +) +] +) +g1,1444:32583029,39792551 +g1,1444:6630773,39792551 +g1,1444:6630773,39792551 +g1,1444:32583029,39792551 +g1,1444:32583029,39792551 +) +h1,1444:6630773,39989159:0,0,0 +(1,1448:6630773,41354935:25952256,513147,134348 +h1,1447:6630773,41354935:983040,0,0 +k1,1447:9770553,41354935:282410 +k1,1447:13129877,41354935:282409 +k1,1447:14516569,41354935:282410 +k1,1447:15546745,41354935:282410 +k1,1447:17342380,41354935:282409 +k1,1447:18434160,41354935:282410 +k1,1447:21024748,41354935:282410 +k1,1447:21966450,41354935:282410 +k1,1447:23380666,41354935:282409 +k1,1447:25850012,41354935:282410 +k1,1447:29133316,41354935:282410 +k1,1447:30101887,41354935:282409 +k1,1447:30740157,41354935:282410 +k1,1447:32583029,41354935:0 +) +(1,1448:6630773,42196423:25952256,505283,134348 +k1,1447:7268906,42196423:282273 +k1,1447:9620806,42196423:282273 +k1,1447:11880956,42196423:282273 +k1,1447:12849391,42196423:282273 +k1,1447:14520372,42196423:282273 +k1,1447:15488807,42196423:282273 +k1,1447:16790165,42196423:282273 +k1,1447:19395688,42196423:282272 +k1,1447:22494043,42196423:282273 +k1,1447:23404151,42196423:282273 +k1,1447:25388394,42196423:282273 +k1,1447:27799276,42196423:282273 +k1,1447:29461737,42196423:282273 +k1,1447:31966991,42196423:282273 +k1,1447:32583029,42196423:0 +) +(1,1448:6630773,43037911:25952256,505283,134348 +k1,1447:7875193,43037911:225335 +k1,1447:9754000,43037911:225334 +k1,1447:11217310,43037911:225335 +k1,1447:12128806,43037911:225334 +k1,1447:13373226,43037911:225335 +k1,1447:16874705,43037911:225334 +k1,1447:20176955,43037911:225335 +k1,1447:23492312,43037911:225334 +k1,1447:24527017,43037911:225335 +k1,1447:26250504,43037911:225334 +h1,1447:27047422,43037911:0,0,0 +k1,1447:27446427,43037911:225335 +k1,1447:29180400,43037911:225334 +k1,1447:32583029,43037911:0 +) +(1,1448:6630773,43879399:25952256,513147,126483 +k1,1447:7836062,43879399:213729 +k1,1447:10686960,43879399:213729 +k1,1447:12598727,43879399:213729 +k1,1447:15284474,43879399:213729 +k1,1447:17050096,43879399:213729 +k1,1447:17729786,43879399:213729 +k1,1447:19113988,43879399:213729 +k1,1447:20142986,43879399:213730 +k1,1447:21422986,43879399:213729 +k1,1447:23359657,43879399:213729 +k1,1447:25122002,43879399:213729 +k1,1447:25987159,43879399:213729 +k1,1447:28271826,43879399:213729 +k1,1447:29171717,43879399:213729 +k1,1447:29741306,43879399:213729 +k1,1447:31635378,43879399:213729 +k1,1447:32583029,43879399:0 +) +(1,1448:6630773,44720887:25952256,513147,126483 +k1,1447:7904463,44720887:254605 +k1,1447:10136946,44720887:254606 +k1,1447:13170278,44720887:254605 +k1,1447:14186411,44720887:254605 +(1,1447:14186411,44720887:0,435480,115847 +r1,1447:15599812,44720887:1413401,551327,115847 +k1,1447:14186411,44720887:-1413401 +) +(1,1447:14186411,44720887:1413401,435480,115847 +k1,1447:14186411,44720887:3277 +h1,1447:15596535,44720887:0,411205,112570 +) +k1,1447:16028087,44720887:254605 +k1,1447:18695073,44720887:254606 +k1,1447:19968763,44720887:254605 +k1,1447:23409728,44720887:254605 +(1,1447:23409728,44720887:0,452978,115847 +r1,1447:26229977,44720887:2820249,568825,115847 +k1,1447:23409728,44720887:-2820249 +) +(1,1447:23409728,44720887:2820249,452978,115847 +k1,1447:23409728,44720887:3277 +h1,1447:26226700,44720887:0,411205,112570 +) +k1,1447:26484582,44720887:254605 +k1,1447:28252414,44720887:254606 +k1,1447:29526104,44720887:254605 +k1,1447:31086842,44720887:254605 +k1,1447:32583029,44720887:0 +) +(1,1448:6630773,45562375:25952256,505283,134348 +g1,1447:10016362,45562375 +g1,1447:12257693,45562375 +g1,1447:13313478,45562375 +g1,1447:17639509,45562375 +(1,1447:17639509,45562375:0,435480,115847 +r1,1447:19052910,45562375:1413401,551327,115847 +k1,1447:17639509,45562375:-1413401 +) +(1,1447:17639509,45562375:1413401,435480,115847 +k1,1447:17639509,45562375:3277 +h1,1447:19049633,45562375:0,411205,112570 +) +g1,1447:19252139,45562375 +g1,1447:21911590,45562375 +g1,1447:24144401,45562375 +g1,1447:25362715,45562375 +g1,1447:27404816,45562375 +g1,1447:28255473,45562375 +g1,1447:28810562,45562375 +k1,1448:32583029,45562375:1087457 +g1,1448:32583029,45562375 +) +] +(1,1450:32583029,45706769:0,0,0 +g1,1450:32583029,45706769 +) +) +] +(1,1450:6630773,47279633:25952256,0,0 +h1,1450:6630773,47279633:25952256,0,0 +) +] +h1,1450:4262630,4025873:0,0,0 ] !20954 }42 -Input:268:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:269:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:270:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:271:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!351 +Input:264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!375 {43 -[1,1589:4262630,47279633:28320399,43253760,0 -(1,1589:4262630,4025873:0,0,0 -[1,1589:-473657,4025873:25952256,0,0 -(1,1589:-473657,-710414:25952256,0,0 -h1,1589:-473657,-710414:0,0,0 -(1,1589:-473657,-710414:0,0,0 -(1,1589:-473657,-710414:0,0,0 -g1,1589:-473657,-710414 -(1,1589:-473657,-710414:65781,0,65781 -g1,1589:-407876,-710414 -[1,1589:-407876,-644633:0,0,0 +[1,1595:4262630,47279633:28320399,43253760,0 +(1,1595:4262630,4025873:0,0,0 +[1,1595:-473657,4025873:25952256,0,0 +(1,1595:-473657,-710414:25952256,0,0 +h1,1595:-473657,-710414:0,0,0 +(1,1595:-473657,-710414:0,0,0 +(1,1595:-473657,-710414:0,0,0 +g1,1595:-473657,-710414 +(1,1595:-473657,-710414:65781,0,65781 +g1,1595:-407876,-710414 +[1,1595:-407876,-644633:0,0,0 ] ) -k1,1589:-473657,-710414:-65781 +k1,1595:-473657,-710414:-65781 ) ) -k1,1589:25478599,-710414:25952256 -g1,1589:25478599,-710414 +k1,1595:25478599,-710414:25952256 +g1,1595:25478599,-710414 ) ] ) -[1,1589:6630773,47279633:25952256,43253760,0 -[1,1589:6630773,4812305:25952256,786432,0 -(1,1589:6630773,4812305:25952256,505283,134348 -(1,1589:6630773,4812305:25952256,505283,134348 -g1,1589:3078558,4812305 -[1,1589:3078558,4812305:0,0,0 -(1,1589:3078558,2439708:0,1703936,0 -k1,1589:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1589:2537886,2439708:1179648,16384,0 +[1,1595:6630773,47279633:25952256,43253760,0 +[1,1595:6630773,4812305:25952256,786432,0 +(1,1595:6630773,4812305:25952256,505283,134348 +(1,1595:6630773,4812305:25952256,505283,134348 +g1,1595:3078558,4812305 +[1,1595:3078558,4812305:0,0,0 +(1,1595:3078558,2439708:0,1703936,0 +k1,1595:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1595:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1589:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1595:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1589:3078558,4812305:0,0,0 -(1,1589:3078558,2439708:0,1703936,0 -g1,1589:29030814,2439708 -g1,1589:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1589:36151628,1915420:16384,1179648,0 +[1,1595:3078558,4812305:0,0,0 +(1,1595:3078558,2439708:0,1703936,0 +g1,1595:29030814,2439708 +g1,1595:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1595:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1589:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1595:37855564,2439708:1179648,16384,0 ) ) -k1,1589:3078556,2439708:-34777008 +k1,1595:3078556,2439708:-34777008 ) ] -[1,1589:3078558,4812305:0,0,0 -(1,1589:3078558,49800853:0,16384,2228224 -k1,1589:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1589:2537886,49800853:1179648,16384,0 +[1,1595:3078558,4812305:0,0,0 +(1,1595:3078558,49800853:0,16384,2228224 +k1,1595:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1595:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1589:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1595:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1589:3078558,4812305:0,0,0 -(1,1589:3078558,49800853:0,16384,2228224 -g1,1589:29030814,49800853 -g1,1589:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1589:36151628,51504789:16384,1179648,0 +[1,1595:3078558,4812305:0,0,0 +(1,1595:3078558,49800853:0,16384,2228224 +g1,1595:29030814,49800853 +g1,1595:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1595:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1589:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1595:37855564,49800853:1179648,16384,0 ) ) -k1,1589:3078556,49800853:-34777008 +k1,1595:3078556,49800853:-34777008 ) ] -g1,1589:6630773,4812305 -k1,1589:19562994,4812305:12135303 -g1,1589:20949735,4812305 -g1,1589:21598541,4812305 -g1,1589:24912696,4812305 -g1,1589:27600327,4812305 -g1,1589:29010006,4812305 -) -) -] -[1,1589:6630773,45706769:25952256,40108032,0 -(1,1589:6630773,45706769:25952256,40108032,0 -(1,1589:6630773,45706769:0,0,0 -g1,1589:6630773,45706769 -) -[1,1589:6630773,45706769:25952256,40108032,0 -v1,1444:6630773,6254097:0,393216,0 -(1,1495:6630773,22958841:25952256,17097960,196608 -g1,1495:6630773,22958841 -g1,1495:6630773,22958841 -g1,1495:6434165,22958841 -(1,1495:6434165,22958841:0,17097960,196608 -r1,1495:32779637,22958841:26345472,17294568,196608 -k1,1495:6434165,22958841:-26345472 -) -(1,1495:6434165,22958841:26345472,17097960,196608 -[1,1495:6630773,22958841:25952256,16901352,0 -(1,1446:6630773,6445986:25952256,388497,9436 -(1,1445:6630773,6445986:0,0,0 -g1,1445:6630773,6445986 -g1,1445:6630773,6445986 -g1,1445:6303093,6445986 -(1,1445:6303093,6445986:0,0,0 -) -g1,1445:6630773,6445986 -) -g1,1446:7263065,6445986 -g1,1446:8211503,6445986 -h1,1446:9476086,6445986:0,0,0 -k1,1446:32583030,6445986:23106944 -g1,1446:32583030,6445986 -) -(1,1447:6630773,7112164:25952256,379060,9436 -h1,1447:6630773,7112164:0,0,0 -g1,1447:7263065,7112164 -g1,1447:7895357,7112164 -h1,1447:8211503,7112164:0,0,0 -k1,1447:32583029,7112164:24371526 -g1,1447:32583029,7112164 -) -(1,1451:6630773,7843878:25952256,404226,76021 -(1,1449:6630773,7843878:0,0,0 -g1,1449:6630773,7843878 -g1,1449:6630773,7843878 -g1,1449:6303093,7843878 -(1,1449:6303093,7843878:0,0,0 -) -g1,1449:6630773,7843878 -) -g1,1451:7579210,7843878 -g1,1451:7895356,7843878 -g1,1451:9159939,7843878 -g1,1451:11056813,7843878 -g1,1451:12953687,7843878 -g1,1451:14850561,7843878 -g1,1451:16747435,7843878 -g1,1451:18644309,7843878 -g1,1451:18960455,7843878 -g1,1451:20541184,7843878 -g1,1451:20857330,7843878 -g1,1451:22438059,7843878 -g1,1451:22754205,7843878 -g1,1451:24334934,7843878 -g1,1451:24651080,7843878 -g1,1451:26231809,7843878 -g1,1451:26547955,7843878 -h1,1451:27812538,7843878:0,0,0 -k1,1451:32583029,7843878:4770491 -g1,1451:32583029,7843878 -) -(1,1453:6630773,9165416:25952256,379060,9436 -(1,1452:6630773,9165416:0,0,0 -g1,1452:6630773,9165416 -g1,1452:6630773,9165416 -g1,1452:6303093,9165416 -(1,1452:6303093,9165416:0,0,0 -) -g1,1452:6630773,9165416 -) -g1,1453:7263065,9165416 -g1,1453:7895357,9165416 -h1,1453:8211503,9165416:0,0,0 -k1,1453:32583029,9165416:24371526 -g1,1453:32583029,9165416 -) -(1,1457:6630773,9897130:25952256,404226,76021 -(1,1455:6630773,9897130:0,0,0 -g1,1455:6630773,9897130 -g1,1455:6630773,9897130 -g1,1455:6303093,9897130 -(1,1455:6303093,9897130:0,0,0 -) -g1,1455:6630773,9897130 -) -g1,1457:7579210,9897130 -g1,1457:7895356,9897130 -g1,1457:9159939,9897130 -g1,1457:9476085,9897130 -g1,1457:11056814,9897130 -g1,1457:11372960,9897130 -g1,1457:12953689,9897130 -g1,1457:13269835,9897130 -g1,1457:14850564,9897130 -g1,1457:15166710,9897130 -g1,1457:16747439,9897130 -g1,1457:18644313,9897130 -g1,1457:20541187,9897130 -g1,1457:22438061,9897130 -g1,1457:24334935,9897130 -g1,1457:26231809,9897130 -h1,1457:27812537,9897130:0,0,0 -k1,1457:32583029,9897130:4770492 -g1,1457:32583029,9897130 -) -(1,1459:6630773,11218668:25952256,379060,9436 -(1,1458:6630773,11218668:0,0,0 -g1,1458:6630773,11218668 -g1,1458:6630773,11218668 -g1,1458:6303093,11218668 -(1,1458:6303093,11218668:0,0,0 -) -g1,1458:6630773,11218668 -) -g1,1459:7263065,11218668 -g1,1459:8211502,11218668 -h1,1459:8527648,11218668:0,0,0 -k1,1459:32583028,11218668:24055380 -g1,1459:32583028,11218668 -) -(1,1463:6630773,11950382:25952256,404226,76021 -(1,1461:6630773,11950382:0,0,0 -g1,1461:6630773,11950382 -g1,1461:6630773,11950382 -g1,1461:6303093,11950382 -(1,1461:6303093,11950382:0,0,0 -) -g1,1461:6630773,11950382 -) -g1,1463:7579210,11950382 -g1,1463:7895356,11950382 -g1,1463:9159939,11950382 -g1,1463:11056813,11950382 -g1,1463:12953687,11950382 -g1,1463:14850561,11950382 -g1,1463:16747435,11950382 -g1,1463:17063581,11950382 -g1,1463:18644310,11950382 -g1,1463:20541184,11950382 -g1,1463:22438058,11950382 -g1,1463:24334932,11950382 -g1,1463:26231806,11950382 -h1,1463:27812534,11950382:0,0,0 -k1,1463:32583029,11950382:4770495 -g1,1463:32583029,11950382 -) -(1,1465:6630773,13271920:25952256,404226,76021 -(1,1464:6630773,13271920:0,0,0 -g1,1464:6630773,13271920 -g1,1464:6630773,13271920 -g1,1464:6303093,13271920 -(1,1464:6303093,13271920:0,0,0 -) -g1,1464:6630773,13271920 -) -k1,1465:6630773,13271920:0 -g1,1465:8527647,13271920 -g1,1465:9159939,13271920 -h1,1465:9792231,13271920:0,0,0 -k1,1465:32583029,13271920:22790798 -g1,1465:32583029,13271920 -) -(1,1469:6630773,14003634:25952256,404226,76021 -(1,1467:6630773,14003634:0,0,0 -g1,1467:6630773,14003634 -g1,1467:6630773,14003634 -g1,1467:6303093,14003634 -(1,1467:6303093,14003634:0,0,0 -) -g1,1467:6630773,14003634 -) -g1,1469:7579210,14003634 -g1,1469:8843793,14003634 -h1,1469:10424521,14003634:0,0,0 -k1,1469:32583029,14003634:22158508 -g1,1469:32583029,14003634 -) -(1,1471:6630773,15325172:25952256,404226,101187 -(1,1470:6630773,15325172:0,0,0 -g1,1470:6630773,15325172 -g1,1470:6630773,15325172 -g1,1470:6303093,15325172 -(1,1470:6303093,15325172:0,0,0 -) -g1,1470:6630773,15325172 -) -k1,1471:6630773,15325172:0 -g1,1471:8527647,15325172 -g1,1471:9159939,15325172 -h1,1471:9792231,15325172:0,0,0 -k1,1471:32583029,15325172:22790798 -g1,1471:32583029,15325172 -) -(1,1475:6630773,16056886:25952256,404226,76021 -(1,1473:6630773,16056886:0,0,0 -g1,1473:6630773,16056886 -g1,1473:6630773,16056886 -g1,1473:6303093,16056886 -(1,1473:6303093,16056886:0,0,0 -) -g1,1473:6630773,16056886 -) -g1,1475:7579210,16056886 -g1,1475:8843793,16056886 -h1,1475:10108376,16056886:0,0,0 -k1,1475:32583028,16056886:22474652 -g1,1475:32583028,16056886 -) -(1,1477:6630773,17378424:25952256,404226,9436 -(1,1476:6630773,17378424:0,0,0 -g1,1476:6630773,17378424 -g1,1476:6630773,17378424 -g1,1476:6303093,17378424 -(1,1476:6303093,17378424:0,0,0 -) -g1,1476:6630773,17378424 -) -g1,1477:7263065,17378424 -g1,1477:8211503,17378424 -g1,1477:8843795,17378424 -g1,1477:9476087,17378424 -h1,1477:9792233,17378424:0,0,0 -k1,1477:32583029,17378424:22790796 -g1,1477:32583029,17378424 -) -(1,1478:6630773,18044602:25952256,404226,6290 -h1,1478:6630773,18044602:0,0,0 -h1,1478:6946919,18044602:0,0,0 -k1,1478:32583029,18044602:25636110 -g1,1478:32583029,18044602 -) -(1,1482:6630773,18776316:25952256,404226,76021 -(1,1480:6630773,18776316:0,0,0 -g1,1480:6630773,18776316 -g1,1480:6630773,18776316 -g1,1480:6303093,18776316 -(1,1480:6303093,18776316:0,0,0 -) -g1,1480:6630773,18776316 -) -g1,1482:7579210,18776316 -g1,1482:7895356,18776316 -g1,1482:9159939,18776316 -g1,1482:11056813,18776316 -g1,1482:12953687,18776316 -g1,1482:14850561,18776316 -g1,1482:16747435,18776316 -g1,1482:18644309,18776316 -g1,1482:18960455,18776316 -g1,1482:20541184,18776316 -g1,1482:20857330,18776316 -g1,1482:22438059,18776316 -g1,1482:22754205,18776316 -g1,1482:24334934,18776316 -g1,1482:24651080,18776316 -g1,1482:26231809,18776316 -g1,1482:26547955,18776316 -h1,1482:27812538,18776316:0,0,0 -k1,1482:32583029,18776316:4770491 -g1,1482:32583029,18776316 -) -(1,1484:6630773,20097854:25952256,404226,101187 -(1,1483:6630773,20097854:0,0,0 -g1,1483:6630773,20097854 -g1,1483:6630773,20097854 -g1,1483:6303093,20097854 -(1,1483:6303093,20097854:0,0,0 -) -g1,1483:6630773,20097854 -) -k1,1484:6630773,20097854:0 -h1,1484:8527647,20097854:0,0,0 -k1,1484:32583029,20097854:24055382 -g1,1484:32583029,20097854 -) -(1,1488:6630773,20829568:25952256,404226,76021 -(1,1486:6630773,20829568:0,0,0 -g1,1486:6630773,20829568 -g1,1486:6630773,20829568 -g1,1486:6303093,20829568 -(1,1486:6303093,20829568:0,0,0 -) -g1,1486:6630773,20829568 -) -g1,1488:7579210,20829568 -g1,1488:8843793,20829568 -h1,1488:10108376,20829568:0,0,0 -k1,1488:32583028,20829568:22474652 -g1,1488:32583028,20829568 -) -(1,1490:6630773,22151106:25952256,404226,76021 -(1,1489:6630773,22151106:0,0,0 -g1,1489:6630773,22151106 -g1,1489:6630773,22151106 -g1,1489:6303093,22151106 -(1,1489:6303093,22151106:0,0,0 -) -g1,1489:6630773,22151106 -) -k1,1490:6630773,22151106:0 -h1,1490:8527647,22151106:0,0,0 -k1,1490:32583029,22151106:24055382 -g1,1490:32583029,22151106 -) -(1,1494:6630773,22882820:25952256,404226,76021 -(1,1492:6630773,22882820:0,0,0 -g1,1492:6630773,22882820 -g1,1492:6630773,22882820 -g1,1492:6303093,22882820 -(1,1492:6303093,22882820:0,0,0 -) -g1,1492:6630773,22882820 -) -g1,1494:7579210,22882820 -g1,1494:8843793,22882820 -h1,1494:10424521,22882820:0,0,0 -k1,1494:32583029,22882820:22158508 -g1,1494:32583029,22882820 -) -] -) -g1,1495:32583029,22958841 -g1,1495:6630773,22958841 -g1,1495:6630773,22958841 -g1,1495:32583029,22958841 -g1,1495:32583029,22958841 -) -h1,1495:6630773,23155449:0,0,0 -(1,1499:6630773,24493737:25952256,505283,126483 -h1,1498:6630773,24493737:983040,0,0 -k1,1498:11384456,24493737:214660 -k1,1498:13185087,24493737:214660 -k1,1498:14685564,24493737:214661 -k1,1498:16663798,24493737:214660 -k1,1498:17529886,24493737:214660 -k1,1498:21498448,24493737:214660 -k1,1498:24790023,24493737:214660 -k1,1498:26196128,24493737:214660 -k1,1498:27790977,24493737:214661 -k1,1498:29109919,24493737:214660 -k1,1498:30072345,24493737:214660 -k1,1499:32583029,24493737:0 -) -(1,1499:6630773,25335225:25952256,513147,126483 -g1,1498:8012927,25335225 -g1,1498:8973684,25335225 -g1,1498:11241229,25335225 -g1,1498:12099750,25335225 -k1,1499:32583029,25335225:16455436 -g1,1499:32583029,25335225 -) -v1,1501:6630773,26498202:0,393216,0 -(1,1514:6630773,29551078:25952256,3446092,196608 -g1,1514:6630773,29551078 -g1,1514:6630773,29551078 -g1,1514:6434165,29551078 -(1,1514:6434165,29551078:0,3446092,196608 -r1,1514:32779637,29551078:26345472,3642700,196608 -k1,1514:6434165,29551078:-26345472 -) -(1,1514:6434165,29551078:26345472,3446092,196608 -[1,1514:6630773,29551078:25952256,3249484,0 -(1,1503:6630773,26690091:25952256,388497,9436 -(1,1502:6630773,26690091:0,0,0 -g1,1502:6630773,26690091 -g1,1502:6630773,26690091 -g1,1502:6303093,26690091 -(1,1502:6303093,26690091:0,0,0 -) -g1,1502:6630773,26690091 -) -g1,1503:7263065,26690091 -g1,1503:7895357,26690091 -g1,1503:8527649,26690091 -g1,1503:9159941,26690091 -h1,1503:9476087,26690091:0,0,0 -k1,1503:32583029,26690091:23106942 -g1,1503:32583029,26690091 -) -(1,1507:6630773,27421805:25952256,404226,76021 -(1,1505:6630773,27421805:0,0,0 -g1,1505:6630773,27421805 -g1,1505:6630773,27421805 -g1,1505:6303093,27421805 -(1,1505:6303093,27421805:0,0,0 -) -g1,1505:6630773,27421805 -) -g1,1507:7579210,27421805 -g1,1507:7895356,27421805 -g1,1507:9159939,27421805 -g1,1507:11056813,27421805 -g1,1507:12953687,27421805 -g1,1507:14850561,27421805 -g1,1507:16747435,27421805 -g1,1507:18644309,27421805 -g1,1507:18960455,27421805 -g1,1507:20541184,27421805 -g1,1507:20857330,27421805 -g1,1507:22438059,27421805 -g1,1507:22754205,27421805 -g1,1507:24334934,27421805 -g1,1507:24651080,27421805 -g1,1507:26231809,27421805 -g1,1507:26547955,27421805 -h1,1507:27812538,27421805:0,0,0 -k1,1507:32583029,27421805:4770491 -g1,1507:32583029,27421805 -) -(1,1509:6630773,28743343:25952256,404226,76021 -(1,1508:6630773,28743343:0,0,0 -g1,1508:6630773,28743343 -g1,1508:6630773,28743343 -g1,1508:6303093,28743343 -(1,1508:6303093,28743343:0,0,0 -) -g1,1508:6630773,28743343 -) -g1,1509:7579210,28743343 -g1,1509:8211502,28743343 -g1,1509:9159940,28743343 -g1,1509:9792232,28743343 -h1,1509:10108378,28743343:0,0,0 -k1,1509:32583030,28743343:22474652 -g1,1509:32583030,28743343 -) -(1,1513:6630773,29475057:25952256,404226,76021 -(1,1511:6630773,29475057:0,0,0 -g1,1511:6630773,29475057 -g1,1511:6630773,29475057 -g1,1511:6303093,29475057 -(1,1511:6303093,29475057:0,0,0 -) -g1,1511:6630773,29475057 -) -g1,1513:7579210,29475057 -g1,1513:7895356,29475057 -g1,1513:9159939,29475057 -g1,1513:9792231,29475057 -g1,1513:10424523,29475057 -g1,1513:11056815,29475057 -g1,1513:11689107,29475057 -g1,1513:12321399,29475057 -g1,1513:12953691,29475057 -g1,1513:13585983,29475057 -g1,1513:14218275,29475057 -g1,1513:14850567,29475057 -h1,1513:15166713,29475057:0,0,0 -k1,1513:32583029,29475057:17416316 -g1,1513:32583029,29475057 -) -] -) -g1,1514:32583029,29551078 -g1,1514:6630773,29551078 -g1,1514:6630773,29551078 -g1,1514:32583029,29551078 -g1,1514:32583029,29551078 -) -h1,1514:6630773,29747686:0,0,0 -v1,1518:6630773,31582774:0,393216,0 -(1,1528:6630773,39104372:25952256,7914814,616038 -g1,1528:6630773,39104372 -(1,1528:6630773,39104372:25952256,7914814,616038 -(1,1528:6630773,39720410:25952256,8530852,0 -[1,1528:6630773,39720410:25952256,8530852,0 -(1,1528:6630773,39694196:25952256,8478424,0 -r1,1528:6656987,39694196:26214,8478424,0 -[1,1528:6656987,39694196:25899828,8478424,0 -(1,1528:6656987,39104372:25899828,7298776,0 -[1,1528:7246811,39104372:24720180,7298776,0 -(1,1519:7246811,32892970:24720180,1087374,134348 -k1,1518:8666510,32892970:209996 -k1,1518:10025352,32892970:209996 -k1,1518:11254433,32892970:209996 -k1,1518:14650789,32892970:209996 -k1,1518:16729216,32892970:209996 -k1,1518:17625375,32892970:209997 -k1,1518:18191231,32892970:209996 -k1,1518:20879799,32892970:209996 -k1,1518:22778002,32892970:209996 -k1,1518:23604036,32892970:209996 -k1,1518:26825411,32892970:209996 -k1,1518:28365788,32892970:209996 -k1,1518:31966991,32892970:0 -) -(1,1519:7246811,33734458:24720180,513147,134348 -k1,1518:9398655,33734458:225086 -k1,1518:11321780,33734458:225087 -k1,1518:13616493,33734458:225086 -k1,1518:15033024,33734458:225086 -k1,1518:18534256,33734458:225087 -k1,1518:21836257,33734458:225086 -k1,1518:23052904,33734458:225087 -k1,1518:24599851,33734458:225086 -k1,1518:25484229,33734458:225086 -k1,1518:26728401,33734458:225087 -k1,1518:28606960,33734458:225086 -k1,1518:31966991,33734458:0 -) -(1,1519:7246811,34575946:24720180,513147,134348 -k1,1518:8812823,34575946:191067 -k1,1518:10397841,34575946:191067 -k1,1518:11607993,34575946:191067 -k1,1518:14460477,34575946:191067 -k1,1518:15413072,34575946:191067 -k1,1518:17791732,34575946:191068 -k1,1518:21836971,34575946:191067 -k1,1518:22640800,34575946:191067 -k1,1518:25594210,34575946:191067 -k1,1518:28729810,34575946:191067 -k1,1518:30112322,34575946:191067 -k1,1518:31966991,34575946:0 -) -(1,1519:7246811,35417434:24720180,513147,126483 -k1,1518:8199650,35417434:143469 -k1,1518:9362204,35417434:143469 -k1,1518:12284400,35417434:143469 -k1,1518:14612184,35417434:143469 -k1,1518:16352110,35417434:143469 -k1,1518:17561850,35417434:143469 -k1,1518:18724405,35417434:143470 -k1,1518:21133454,35417434:143469 -k1,1518:23016249,35417434:143469 -k1,1518:23819010,35417434:143469 -k1,1518:26709093,35417434:143469 -k1,1518:30453765,35417434:143469 -k1,1518:31966991,35417434:0 -) -(1,1519:7246811,36258922:24720180,513147,134348 -g1,1518:8393691,36258922 -g1,1518:9612005,36258922 -g1,1518:13114904,36258922 -g1,1518:13973425,36258922 -g1,1518:15191739,36258922 -g1,1518:18052385,36258922 -g1,1518:19946375,36258922 -k1,1519:31966991,36258922:9978514 -g1,1519:31966991,36258922 -) -v1,1521:7246811,37449388:0,393216,0 -(1,1526:7246811,38383476:24720180,1327304,196608 -g1,1526:7246811,38383476 -g1,1526:7246811,38383476 -g1,1526:7050203,38383476 -(1,1526:7050203,38383476:0,1327304,196608 -r1,1528:32163599,38383476:25113396,1523912,196608 -k1,1526:7050203,38383476:-25113396 -) -(1,1526:7050203,38383476:25113396,1327304,196608 -[1,1526:7246811,38383476:24720180,1130696,0 -(1,1523:7246811,37641277:24720180,388497,9436 -(1,1522:7246811,37641277:0,0,0 -g1,1522:7246811,37641277 -g1,1522:7246811,37641277 -g1,1522:6919131,37641277 -(1,1522:6919131,37641277:0,0,0 -) -g1,1522:7246811,37641277 -) -g1,1523:7879103,37641277 -g1,1523:8827541,37641277 -h1,1523:10092124,37641277:0,0,0 -k1,1523:31966992,37641277:21874868 -g1,1523:31966992,37641277 -) -(1,1524:7246811,38307455:24720180,404226,76021 -h1,1524:7246811,38307455:0,0,0 -g1,1524:7879103,38307455 -g1,1524:8511395,38307455 -g1,1524:9143687,38307455 -g1,1524:9775979,38307455 -g1,1524:10408271,38307455 -g1,1524:11040563,38307455 -g1,1524:11672855,38307455 -g1,1524:12305147,38307455 -h1,1524:12621293,38307455:0,0,0 -k1,1524:31966991,38307455:19345698 -g1,1524:31966991,38307455 -) -] -) -g1,1526:31966991,38383476 -g1,1526:7246811,38383476 -g1,1526:7246811,38383476 -g1,1526:31966991,38383476 -g1,1526:31966991,38383476 -) -h1,1526:7246811,38580084:0,0,0 -] -) -] -r1,1528:32583029,39694196:26214,8478424,0 -) -] -) -) -g1,1528:32583029,39104372 -) -h1,1528:6630773,39720410:0,0,0 -(1,1531:6630773,41058697:25952256,513147,134348 -h1,1530:6630773,41058697:983040,0,0 -k1,1530:9821671,41058697:200490 -k1,1530:10769926,41058697:200489 -k1,1530:12838847,41058697:200490 -k1,1530:13698629,41058697:200490 -k1,1530:17102518,41058697:200489 -k1,1530:21080503,41058697:200490 -k1,1530:21758750,41058697:200490 -k1,1530:22978325,41058697:200490 -k1,1530:25021686,41058697:200489 -k1,1530:26715086,41058697:200490 -k1,1530:27981847,41058697:200490 -k1,1530:30554084,41058697:200489 -k1,1530:31563944,41058697:200490 -k1,1530:32583029,41058697:0 -) -(1,1531:6630773,41900185:25952256,513147,134348 -k1,1530:9309213,41900185:206422 -k1,1530:11369649,41900185:206422 -k1,1530:13010000,41900185:206423 -k1,1530:14235507,41900185:206422 -k1,1530:16458472,41900185:206422 -(1,1530:16458472,41900185:0,414482,115847 -r1,1530:17871873,41900185:1413401,530329,115847 -k1,1530:16458472,41900185:-1413401 -) -(1,1530:16458472,41900185:1413401,414482,115847 -k1,1530:16458472,41900185:3277 -h1,1530:17868596,41900185:0,411205,112570 -) -k1,1530:18078295,41900185:206422 -k1,1530:18967602,41900185:206422 -(1,1530:18967602,41900185:0,414482,115847 -r1,1530:20732715,41900185:1765113,530329,115847 -k1,1530:18967602,41900185:-1765113 -) -(1,1530:18967602,41900185:1765113,414482,115847 -k1,1530:18967602,41900185:3277 -h1,1530:20729438,41900185:0,411205,112570 -) -k1,1530:20939138,41900185:206423 -k1,1530:21677057,41900185:206422 -k1,1530:24835876,41900185:206422 -k1,1530:25520055,41900185:206422 -k1,1530:26745562,41900185:206422 -k1,1530:29781830,41900185:206423 -k1,1530:30647544,41900185:206422 -k1,1530:31873051,41900185:206422 -(1,1530:31873051,41900185:0,414482,115847 -r1,1530:32583029,41900185:709978,530329,115847 -k1,1530:31873051,41900185:-709978 -) -(1,1530:31873051,41900185:709978,414482,115847 -k1,1530:31873051,41900185:3277 -h1,1530:32579752,41900185:0,411205,112570 -) -k1,1530:32583029,41900185:0 -) -(1,1531:6630773,42741673:25952256,505283,115847 -g1,1530:8876036,42741673 -g1,1530:10094350,42741673 -g1,1530:11476504,42741673 -g1,1530:13518605,42741673 -g1,1530:16858975,42741673 -g1,1530:18492132,42741673 -(1,1530:18492132,42741673:0,414482,115847 -r1,1530:19202110,42741673:709978,530329,115847 -k1,1530:18492132,42741673:-709978 -) -(1,1530:18492132,42741673:709978,414482,115847 -k1,1530:18492132,42741673:3277 -h1,1530:19198833,42741673:0,411205,112570 -) -g1,1530:19401339,42741673 -g1,1530:20132065,42741673 -k1,1531:32583029,42741673:9498567 -g1,1531:32583029,42741673 -) -v1,1533:6630773,43904651:0,393216,0 -(1,1589:6630773,45510161:25952256,1998726,196608 -g1,1589:6630773,45510161 -g1,1589:6630773,45510161 -g1,1589:6434165,45510161 -(1,1589:6434165,45510161:0,1998726,196608 -r1,1589:32779637,45510161:26345472,2195334,196608 -k1,1589:6434165,45510161:-26345472 -) -(1,1589:6434165,45510161:26345472,1998726,196608 -[1,1589:6630773,45510161:25952256,1802118,0 -(1,1535:6630773,44112269:25952256,404226,82312 -(1,1534:6630773,44112269:0,0,0 -g1,1534:6630773,44112269 -g1,1534:6630773,44112269 -g1,1534:6303093,44112269 -(1,1534:6303093,44112269:0,0,0 -) -g1,1534:6630773,44112269 -) -g1,1535:7263065,44112269 -g1,1535:8211503,44112269 -g1,1535:9792232,44112269 -h1,1535:10740669,44112269:0,0,0 -k1,1535:32583029,44112269:21842360 -g1,1535:32583029,44112269 -) -(1,1536:6630773,44778447:25952256,379060,9436 -h1,1536:6630773,44778447:0,0,0 -g1,1536:7263065,44778447 -g1,1536:7895357,44778447 -h1,1536:8211503,44778447:0,0,0 -k1,1536:32583029,44778447:24371526 -g1,1536:32583029,44778447 -) -(1,1540:6630773,45510161:25952256,404226,76021 -(1,1538:6630773,45510161:0,0,0 -g1,1538:6630773,45510161 -g1,1538:6630773,45510161 -g1,1538:6303093,45510161 -(1,1538:6303093,45510161:0,0,0 -) -g1,1538:6630773,45510161 -) -g1,1540:7579210,45510161 -g1,1540:7895356,45510161 -g1,1540:9159939,45510161 -g1,1540:11056813,45510161 -g1,1540:12953687,45510161 -g1,1540:14850561,45510161 -g1,1540:16747435,45510161 -g1,1540:18644309,45510161 -g1,1540:18960455,45510161 -g1,1540:20541184,45510161 -g1,1540:20857330,45510161 -g1,1540:22438059,45510161 -g1,1540:22754205,45510161 -g1,1540:24334934,45510161 -g1,1540:24651080,45510161 -g1,1540:26231809,45510161 -g1,1540:26547955,45510161 -g1,1540:28128684,45510161 -g1,1540:28444830,45510161 -g1,1540:28760976,45510161 -g1,1540:29077122,45510161 -h1,1540:29709413,45510161:0,0,0 -k1,1540:32583029,45510161:2873616 -g1,1540:32583029,45510161 -) -] -) -g1,1589:32583029,45510161 -g1,1589:6630773,45510161 -g1,1589:6630773,45510161 -g1,1589:32583029,45510161 -g1,1589:32583029,45510161 -) -] -(1,1589:32583029,45706769:0,0,0 -g1,1589:32583029,45706769 -) -) -] -(1,1589:6630773,47279633:25952256,0,0 -h1,1589:6630773,47279633:25952256,0,0 -) -] -h1,1589:4262630,4025873:0,0,0 +g1,1595:6630773,4812305 +k1,1595:19515153,4812305:12087462 +g1,1595:20901894,4812305 +g1,1595:21550700,4812305 +g1,1595:24864855,4812305 +g1,1595:27600327,4812305 +g1,1595:29010006,4812305 +) +) +] +[1,1595:6630773,45706769:25952256,40108032,0 +(1,1595:6630773,45706769:25952256,40108032,0 +(1,1595:6630773,45706769:0,0,0 +g1,1595:6630773,45706769 +) +[1,1595:6630773,45706769:25952256,40108032,0 +v1,1450:6630773,6254097:0,393216,0 +(1,1501:6630773,22958841:25952256,17097960,196608 +g1,1501:6630773,22958841 +g1,1501:6630773,22958841 +g1,1501:6434165,22958841 +(1,1501:6434165,22958841:0,17097960,196608 +r1,1501:32779637,22958841:26345472,17294568,196608 +k1,1501:6434165,22958841:-26345472 +) +(1,1501:6434165,22958841:26345472,17097960,196608 +[1,1501:6630773,22958841:25952256,16901352,0 +(1,1452:6630773,6445986:25952256,388497,9436 +(1,1451:6630773,6445986:0,0,0 +g1,1451:6630773,6445986 +g1,1451:6630773,6445986 +g1,1451:6303093,6445986 +(1,1451:6303093,6445986:0,0,0 +) +g1,1451:6630773,6445986 +) +g1,1452:7263065,6445986 +g1,1452:8211503,6445986 +h1,1452:9476086,6445986:0,0,0 +k1,1452:32583030,6445986:23106944 +g1,1452:32583030,6445986 +) +(1,1453:6630773,7112164:25952256,379060,9436 +h1,1453:6630773,7112164:0,0,0 +g1,1453:7263065,7112164 +g1,1453:7895357,7112164 +h1,1453:8211503,7112164:0,0,0 +k1,1453:32583029,7112164:24371526 +g1,1453:32583029,7112164 +) +(1,1457:6630773,7843878:25952256,404226,76021 +(1,1455:6630773,7843878:0,0,0 +g1,1455:6630773,7843878 +g1,1455:6630773,7843878 +g1,1455:6303093,7843878 +(1,1455:6303093,7843878:0,0,0 +) +g1,1455:6630773,7843878 +) +g1,1457:7579210,7843878 +g1,1457:7895356,7843878 +g1,1457:9159939,7843878 +g1,1457:11056813,7843878 +g1,1457:12953687,7843878 +g1,1457:14850561,7843878 +g1,1457:16747435,7843878 +g1,1457:18644309,7843878 +g1,1457:18960455,7843878 +g1,1457:20541184,7843878 +g1,1457:20857330,7843878 +g1,1457:22438059,7843878 +g1,1457:22754205,7843878 +g1,1457:24334934,7843878 +g1,1457:24651080,7843878 +g1,1457:26231809,7843878 +g1,1457:26547955,7843878 +h1,1457:27812538,7843878:0,0,0 +k1,1457:32583029,7843878:4770491 +g1,1457:32583029,7843878 +) +(1,1459:6630773,9165416:25952256,379060,9436 +(1,1458:6630773,9165416:0,0,0 +g1,1458:6630773,9165416 +g1,1458:6630773,9165416 +g1,1458:6303093,9165416 +(1,1458:6303093,9165416:0,0,0 +) +g1,1458:6630773,9165416 +) +g1,1459:7263065,9165416 +g1,1459:7895357,9165416 +h1,1459:8211503,9165416:0,0,0 +k1,1459:32583029,9165416:24371526 +g1,1459:32583029,9165416 +) +(1,1463:6630773,9897130:25952256,404226,76021 +(1,1461:6630773,9897130:0,0,0 +g1,1461:6630773,9897130 +g1,1461:6630773,9897130 +g1,1461:6303093,9897130 +(1,1461:6303093,9897130:0,0,0 +) +g1,1461:6630773,9897130 +) +g1,1463:7579210,9897130 +g1,1463:7895356,9897130 +g1,1463:9159939,9897130 +g1,1463:9476085,9897130 +g1,1463:11056814,9897130 +g1,1463:11372960,9897130 +g1,1463:12953689,9897130 +g1,1463:13269835,9897130 +g1,1463:14850564,9897130 +g1,1463:15166710,9897130 +g1,1463:16747439,9897130 +g1,1463:18644313,9897130 +g1,1463:20541187,9897130 +g1,1463:22438061,9897130 +g1,1463:24334935,9897130 +g1,1463:26231809,9897130 +h1,1463:27812537,9897130:0,0,0 +k1,1463:32583029,9897130:4770492 +g1,1463:32583029,9897130 +) +(1,1465:6630773,11218668:25952256,379060,9436 +(1,1464:6630773,11218668:0,0,0 +g1,1464:6630773,11218668 +g1,1464:6630773,11218668 +g1,1464:6303093,11218668 +(1,1464:6303093,11218668:0,0,0 +) +g1,1464:6630773,11218668 +) +g1,1465:7263065,11218668 +g1,1465:8211502,11218668 +h1,1465:8527648,11218668:0,0,0 +k1,1465:32583028,11218668:24055380 +g1,1465:32583028,11218668 +) +(1,1469:6630773,11950382:25952256,404226,76021 +(1,1467:6630773,11950382:0,0,0 +g1,1467:6630773,11950382 +g1,1467:6630773,11950382 +g1,1467:6303093,11950382 +(1,1467:6303093,11950382:0,0,0 +) +g1,1467:6630773,11950382 +) +g1,1469:7579210,11950382 +g1,1469:7895356,11950382 +g1,1469:9159939,11950382 +g1,1469:11056813,11950382 +g1,1469:12953687,11950382 +g1,1469:14850561,11950382 +g1,1469:16747435,11950382 +g1,1469:17063581,11950382 +g1,1469:18644310,11950382 +g1,1469:20541184,11950382 +g1,1469:22438058,11950382 +g1,1469:24334932,11950382 +g1,1469:26231806,11950382 +h1,1469:27812534,11950382:0,0,0 +k1,1469:32583029,11950382:4770495 +g1,1469:32583029,11950382 +) +(1,1471:6630773,13271920:25952256,404226,76021 +(1,1470:6630773,13271920:0,0,0 +g1,1470:6630773,13271920 +g1,1470:6630773,13271920 +g1,1470:6303093,13271920 +(1,1470:6303093,13271920:0,0,0 +) +g1,1470:6630773,13271920 +) +k1,1471:6630773,13271920:0 +g1,1471:8527647,13271920 +g1,1471:9159939,13271920 +h1,1471:9792231,13271920:0,0,0 +k1,1471:32583029,13271920:22790798 +g1,1471:32583029,13271920 +) +(1,1475:6630773,14003634:25952256,404226,76021 +(1,1473:6630773,14003634:0,0,0 +g1,1473:6630773,14003634 +g1,1473:6630773,14003634 +g1,1473:6303093,14003634 +(1,1473:6303093,14003634:0,0,0 +) +g1,1473:6630773,14003634 +) +g1,1475:7579210,14003634 +g1,1475:8843793,14003634 +h1,1475:10424521,14003634:0,0,0 +k1,1475:32583029,14003634:22158508 +g1,1475:32583029,14003634 +) +(1,1477:6630773,15325172:25952256,404226,101187 +(1,1476:6630773,15325172:0,0,0 +g1,1476:6630773,15325172 +g1,1476:6630773,15325172 +g1,1476:6303093,15325172 +(1,1476:6303093,15325172:0,0,0 +) +g1,1476:6630773,15325172 +) +k1,1477:6630773,15325172:0 +g1,1477:8527647,15325172 +g1,1477:9159939,15325172 +h1,1477:9792231,15325172:0,0,0 +k1,1477:32583029,15325172:22790798 +g1,1477:32583029,15325172 +) +(1,1481:6630773,16056886:25952256,404226,76021 +(1,1479:6630773,16056886:0,0,0 +g1,1479:6630773,16056886 +g1,1479:6630773,16056886 +g1,1479:6303093,16056886 +(1,1479:6303093,16056886:0,0,0 +) +g1,1479:6630773,16056886 +) +g1,1481:7579210,16056886 +g1,1481:8843793,16056886 +h1,1481:10108376,16056886:0,0,0 +k1,1481:32583028,16056886:22474652 +g1,1481:32583028,16056886 +) +(1,1483:6630773,17378424:25952256,404226,9436 +(1,1482:6630773,17378424:0,0,0 +g1,1482:6630773,17378424 +g1,1482:6630773,17378424 +g1,1482:6303093,17378424 +(1,1482:6303093,17378424:0,0,0 +) +g1,1482:6630773,17378424 +) +g1,1483:7263065,17378424 +g1,1483:8211503,17378424 +g1,1483:8843795,17378424 +g1,1483:9476087,17378424 +h1,1483:9792233,17378424:0,0,0 +k1,1483:32583029,17378424:22790796 +g1,1483:32583029,17378424 +) +(1,1484:6630773,18044602:25952256,404226,6290 +h1,1484:6630773,18044602:0,0,0 +h1,1484:6946919,18044602:0,0,0 +k1,1484:32583029,18044602:25636110 +g1,1484:32583029,18044602 +) +(1,1488:6630773,18776316:25952256,404226,76021 +(1,1486:6630773,18776316:0,0,0 +g1,1486:6630773,18776316 +g1,1486:6630773,18776316 +g1,1486:6303093,18776316 +(1,1486:6303093,18776316:0,0,0 +) +g1,1486:6630773,18776316 +) +g1,1488:7579210,18776316 +g1,1488:7895356,18776316 +g1,1488:9159939,18776316 +g1,1488:11056813,18776316 +g1,1488:12953687,18776316 +g1,1488:14850561,18776316 +g1,1488:16747435,18776316 +g1,1488:18644309,18776316 +g1,1488:18960455,18776316 +g1,1488:20541184,18776316 +g1,1488:20857330,18776316 +g1,1488:22438059,18776316 +g1,1488:22754205,18776316 +g1,1488:24334934,18776316 +g1,1488:24651080,18776316 +g1,1488:26231809,18776316 +g1,1488:26547955,18776316 +h1,1488:27812538,18776316:0,0,0 +k1,1488:32583029,18776316:4770491 +g1,1488:32583029,18776316 +) +(1,1490:6630773,20097854:25952256,404226,101187 +(1,1489:6630773,20097854:0,0,0 +g1,1489:6630773,20097854 +g1,1489:6630773,20097854 +g1,1489:6303093,20097854 +(1,1489:6303093,20097854:0,0,0 +) +g1,1489:6630773,20097854 +) +k1,1490:6630773,20097854:0 +h1,1490:8527647,20097854:0,0,0 +k1,1490:32583029,20097854:24055382 +g1,1490:32583029,20097854 +) +(1,1494:6630773,20829568:25952256,404226,76021 +(1,1492:6630773,20829568:0,0,0 +g1,1492:6630773,20829568 +g1,1492:6630773,20829568 +g1,1492:6303093,20829568 +(1,1492:6303093,20829568:0,0,0 +) +g1,1492:6630773,20829568 +) +g1,1494:7579210,20829568 +g1,1494:8843793,20829568 +h1,1494:10108376,20829568:0,0,0 +k1,1494:32583028,20829568:22474652 +g1,1494:32583028,20829568 +) +(1,1496:6630773,22151106:25952256,404226,76021 +(1,1495:6630773,22151106:0,0,0 +g1,1495:6630773,22151106 +g1,1495:6630773,22151106 +g1,1495:6303093,22151106 +(1,1495:6303093,22151106:0,0,0 +) +g1,1495:6630773,22151106 +) +k1,1496:6630773,22151106:0 +h1,1496:8527647,22151106:0,0,0 +k1,1496:32583029,22151106:24055382 +g1,1496:32583029,22151106 +) +(1,1500:6630773,22882820:25952256,404226,76021 +(1,1498:6630773,22882820:0,0,0 +g1,1498:6630773,22882820 +g1,1498:6630773,22882820 +g1,1498:6303093,22882820 +(1,1498:6303093,22882820:0,0,0 +) +g1,1498:6630773,22882820 +) +g1,1500:7579210,22882820 +g1,1500:8843793,22882820 +h1,1500:10424521,22882820:0,0,0 +k1,1500:32583029,22882820:22158508 +g1,1500:32583029,22882820 +) +] +) +g1,1501:32583029,22958841 +g1,1501:6630773,22958841 +g1,1501:6630773,22958841 +g1,1501:32583029,22958841 +g1,1501:32583029,22958841 +) +h1,1501:6630773,23155449:0,0,0 +(1,1505:6630773,24493737:25952256,505283,126483 +h1,1504:6630773,24493737:983040,0,0 +k1,1504:11384456,24493737:214660 +k1,1504:13185087,24493737:214660 +k1,1504:14685564,24493737:214661 +k1,1504:16663798,24493737:214660 +k1,1504:17529886,24493737:214660 +k1,1504:21498448,24493737:214660 +k1,1504:24790023,24493737:214660 +k1,1504:26196128,24493737:214660 +k1,1504:27790977,24493737:214661 +k1,1504:29109919,24493737:214660 +k1,1504:30072345,24493737:214660 +k1,1505:32583029,24493737:0 +) +(1,1505:6630773,25335225:25952256,513147,126483 +g1,1504:8012927,25335225 +g1,1504:8973684,25335225 +g1,1504:11241229,25335225 +g1,1504:12099750,25335225 +k1,1505:32583029,25335225:16455436 +g1,1505:32583029,25335225 +) +v1,1507:6630773,26498202:0,393216,0 +(1,1520:6630773,29551078:25952256,3446092,196608 +g1,1520:6630773,29551078 +g1,1520:6630773,29551078 +g1,1520:6434165,29551078 +(1,1520:6434165,29551078:0,3446092,196608 +r1,1520:32779637,29551078:26345472,3642700,196608 +k1,1520:6434165,29551078:-26345472 +) +(1,1520:6434165,29551078:26345472,3446092,196608 +[1,1520:6630773,29551078:25952256,3249484,0 +(1,1509:6630773,26690091:25952256,388497,9436 +(1,1508:6630773,26690091:0,0,0 +g1,1508:6630773,26690091 +g1,1508:6630773,26690091 +g1,1508:6303093,26690091 +(1,1508:6303093,26690091:0,0,0 +) +g1,1508:6630773,26690091 +) +g1,1509:7263065,26690091 +g1,1509:7895357,26690091 +g1,1509:8527649,26690091 +g1,1509:9159941,26690091 +h1,1509:9476087,26690091:0,0,0 +k1,1509:32583029,26690091:23106942 +g1,1509:32583029,26690091 +) +(1,1513:6630773,27421805:25952256,404226,76021 +(1,1511:6630773,27421805:0,0,0 +g1,1511:6630773,27421805 +g1,1511:6630773,27421805 +g1,1511:6303093,27421805 +(1,1511:6303093,27421805:0,0,0 +) +g1,1511:6630773,27421805 +) +g1,1513:7579210,27421805 +g1,1513:7895356,27421805 +g1,1513:9159939,27421805 +g1,1513:11056813,27421805 +g1,1513:12953687,27421805 +g1,1513:14850561,27421805 +g1,1513:16747435,27421805 +g1,1513:18644309,27421805 +g1,1513:18960455,27421805 +g1,1513:20541184,27421805 +g1,1513:20857330,27421805 +g1,1513:22438059,27421805 +g1,1513:22754205,27421805 +g1,1513:24334934,27421805 +g1,1513:24651080,27421805 +g1,1513:26231809,27421805 +g1,1513:26547955,27421805 +h1,1513:27812538,27421805:0,0,0 +k1,1513:32583029,27421805:4770491 +g1,1513:32583029,27421805 +) +(1,1515:6630773,28743343:25952256,404226,76021 +(1,1514:6630773,28743343:0,0,0 +g1,1514:6630773,28743343 +g1,1514:6630773,28743343 +g1,1514:6303093,28743343 +(1,1514:6303093,28743343:0,0,0 +) +g1,1514:6630773,28743343 +) +g1,1515:7579210,28743343 +g1,1515:8211502,28743343 +g1,1515:9159940,28743343 +g1,1515:9792232,28743343 +h1,1515:10108378,28743343:0,0,0 +k1,1515:32583030,28743343:22474652 +g1,1515:32583030,28743343 +) +(1,1519:6630773,29475057:25952256,404226,76021 +(1,1517:6630773,29475057:0,0,0 +g1,1517:6630773,29475057 +g1,1517:6630773,29475057 +g1,1517:6303093,29475057 +(1,1517:6303093,29475057:0,0,0 +) +g1,1517:6630773,29475057 +) +g1,1519:7579210,29475057 +g1,1519:7895356,29475057 +g1,1519:9159939,29475057 +g1,1519:9792231,29475057 +g1,1519:10424523,29475057 +g1,1519:11056815,29475057 +g1,1519:11689107,29475057 +g1,1519:12321399,29475057 +g1,1519:12953691,29475057 +g1,1519:13585983,29475057 +g1,1519:14218275,29475057 +g1,1519:14850567,29475057 +h1,1519:15166713,29475057:0,0,0 +k1,1519:32583029,29475057:17416316 +g1,1519:32583029,29475057 +) +] +) +g1,1520:32583029,29551078 +g1,1520:6630773,29551078 +g1,1520:6630773,29551078 +g1,1520:32583029,29551078 +g1,1520:32583029,29551078 +) +h1,1520:6630773,29747686:0,0,0 +v1,1524:6630773,31582774:0,393216,0 +(1,1534:6630773,39104372:25952256,7914814,616038 +g1,1534:6630773,39104372 +(1,1534:6630773,39104372:25952256,7914814,616038 +(1,1534:6630773,39720410:25952256,8530852,0 +[1,1534:6630773,39720410:25952256,8530852,0 +(1,1534:6630773,39694196:25952256,8478424,0 +r1,1534:6656987,39694196:26214,8478424,0 +[1,1534:6656987,39694196:25899828,8478424,0 +(1,1534:6656987,39104372:25899828,7298776,0 +[1,1534:7246811,39104372:24720180,7298776,0 +(1,1525:7246811,32892970:24720180,1087374,134348 +k1,1524:8666510,32892970:209996 +k1,1524:10025352,32892970:209996 +k1,1524:11254433,32892970:209996 +k1,1524:14650789,32892970:209996 +k1,1524:16729216,32892970:209996 +k1,1524:17625375,32892970:209997 +k1,1524:18191231,32892970:209996 +k1,1524:20879799,32892970:209996 +k1,1524:22778002,32892970:209996 +k1,1524:23604036,32892970:209996 +k1,1524:26825411,32892970:209996 +k1,1524:28365788,32892970:209996 +k1,1524:31966991,32892970:0 +) +(1,1525:7246811,33734458:24720180,513147,134348 +k1,1524:9398655,33734458:225086 +k1,1524:11321780,33734458:225087 +k1,1524:13616493,33734458:225086 +k1,1524:15033024,33734458:225086 +k1,1524:18534256,33734458:225087 +k1,1524:21836257,33734458:225086 +k1,1524:23052904,33734458:225087 +k1,1524:24599851,33734458:225086 +k1,1524:25484229,33734458:225086 +k1,1524:26728401,33734458:225087 +k1,1524:28606960,33734458:225086 +k1,1524:31966991,33734458:0 +) +(1,1525:7246811,34575946:24720180,513147,134348 +k1,1524:8812823,34575946:191067 +k1,1524:10397841,34575946:191067 +k1,1524:11607993,34575946:191067 +k1,1524:14460477,34575946:191067 +k1,1524:15413072,34575946:191067 +k1,1524:17791732,34575946:191068 +k1,1524:21836971,34575946:191067 +k1,1524:22640800,34575946:191067 +k1,1524:25594210,34575946:191067 +k1,1524:28729810,34575946:191067 +k1,1524:30112322,34575946:191067 +k1,1524:31966991,34575946:0 +) +(1,1525:7246811,35417434:24720180,513147,126483 +k1,1524:8199650,35417434:143469 +k1,1524:9362204,35417434:143469 +k1,1524:12284400,35417434:143469 +k1,1524:14612184,35417434:143469 +k1,1524:16352110,35417434:143469 +k1,1524:17561850,35417434:143469 +k1,1524:18724405,35417434:143470 +k1,1524:21133454,35417434:143469 +k1,1524:23016249,35417434:143469 +k1,1524:23819010,35417434:143469 +k1,1524:26709093,35417434:143469 +k1,1524:30453765,35417434:143469 +k1,1524:31966991,35417434:0 +) +(1,1525:7246811,36258922:24720180,513147,134348 +g1,1524:8393691,36258922 +g1,1524:9612005,36258922 +g1,1524:13114904,36258922 +g1,1524:13973425,36258922 +g1,1524:15191739,36258922 +g1,1524:18052385,36258922 +g1,1524:19946375,36258922 +k1,1525:31966991,36258922:9978514 +g1,1525:31966991,36258922 +) +v1,1527:7246811,37449388:0,393216,0 +(1,1532:7246811,38383476:24720180,1327304,196608 +g1,1532:7246811,38383476 +g1,1532:7246811,38383476 +g1,1532:7050203,38383476 +(1,1532:7050203,38383476:0,1327304,196608 +r1,1534:32163599,38383476:25113396,1523912,196608 +k1,1532:7050203,38383476:-25113396 +) +(1,1532:7050203,38383476:25113396,1327304,196608 +[1,1532:7246811,38383476:24720180,1130696,0 +(1,1529:7246811,37641277:24720180,388497,9436 +(1,1528:7246811,37641277:0,0,0 +g1,1528:7246811,37641277 +g1,1528:7246811,37641277 +g1,1528:6919131,37641277 +(1,1528:6919131,37641277:0,0,0 +) +g1,1528:7246811,37641277 +) +g1,1529:7879103,37641277 +g1,1529:8827541,37641277 +h1,1529:10092124,37641277:0,0,0 +k1,1529:31966992,37641277:21874868 +g1,1529:31966992,37641277 +) +(1,1530:7246811,38307455:24720180,404226,76021 +h1,1530:7246811,38307455:0,0,0 +g1,1530:7879103,38307455 +g1,1530:8511395,38307455 +g1,1530:9143687,38307455 +g1,1530:9775979,38307455 +g1,1530:10408271,38307455 +g1,1530:11040563,38307455 +g1,1530:11672855,38307455 +g1,1530:12305147,38307455 +h1,1530:12621293,38307455:0,0,0 +k1,1530:31966991,38307455:19345698 +g1,1530:31966991,38307455 +) +] +) +g1,1532:31966991,38383476 +g1,1532:7246811,38383476 +g1,1532:7246811,38383476 +g1,1532:31966991,38383476 +g1,1532:31966991,38383476 +) +h1,1532:7246811,38580084:0,0,0 +] +) +] +r1,1534:32583029,39694196:26214,8478424,0 +) +] +) +) +g1,1534:32583029,39104372 +) +h1,1534:6630773,39720410:0,0,0 +(1,1537:6630773,41058697:25952256,513147,134348 +h1,1536:6630773,41058697:983040,0,0 +k1,1536:9821671,41058697:200490 +k1,1536:10769926,41058697:200489 +k1,1536:12838847,41058697:200490 +k1,1536:13698629,41058697:200490 +k1,1536:17102518,41058697:200489 +k1,1536:21080503,41058697:200490 +k1,1536:21758750,41058697:200490 +k1,1536:22978325,41058697:200490 +k1,1536:25021686,41058697:200489 +k1,1536:26715086,41058697:200490 +k1,1536:27981847,41058697:200490 +k1,1536:30554084,41058697:200489 +k1,1536:31563944,41058697:200490 +k1,1536:32583029,41058697:0 +) +(1,1537:6630773,41900185:25952256,513147,134348 +k1,1536:9309213,41900185:206422 +k1,1536:11369649,41900185:206422 +k1,1536:13010000,41900185:206423 +k1,1536:14235507,41900185:206422 +k1,1536:16458472,41900185:206422 +(1,1536:16458472,41900185:0,414482,115847 +r1,1536:17871873,41900185:1413401,530329,115847 +k1,1536:16458472,41900185:-1413401 +) +(1,1536:16458472,41900185:1413401,414482,115847 +k1,1536:16458472,41900185:3277 +h1,1536:17868596,41900185:0,411205,112570 +) +k1,1536:18078295,41900185:206422 +k1,1536:18967602,41900185:206422 +(1,1536:18967602,41900185:0,414482,115847 +r1,1536:20732715,41900185:1765113,530329,115847 +k1,1536:18967602,41900185:-1765113 +) +(1,1536:18967602,41900185:1765113,414482,115847 +k1,1536:18967602,41900185:3277 +h1,1536:20729438,41900185:0,411205,112570 +) +k1,1536:20939138,41900185:206423 +k1,1536:21677057,41900185:206422 +k1,1536:24835876,41900185:206422 +k1,1536:25520055,41900185:206422 +k1,1536:26745562,41900185:206422 +k1,1536:29781830,41900185:206423 +k1,1536:30647544,41900185:206422 +k1,1536:31873051,41900185:206422 +(1,1536:31873051,41900185:0,414482,115847 +r1,1536:32583029,41900185:709978,530329,115847 +k1,1536:31873051,41900185:-709978 +) +(1,1536:31873051,41900185:709978,414482,115847 +k1,1536:31873051,41900185:3277 +h1,1536:32579752,41900185:0,411205,112570 +) +k1,1536:32583029,41900185:0 +) +(1,1537:6630773,42741673:25952256,505283,115847 +g1,1536:8876036,42741673 +g1,1536:10094350,42741673 +g1,1536:11476504,42741673 +g1,1536:13518605,42741673 +g1,1536:16858975,42741673 +g1,1536:18492132,42741673 +(1,1536:18492132,42741673:0,414482,115847 +r1,1536:19202110,42741673:709978,530329,115847 +k1,1536:18492132,42741673:-709978 +) +(1,1536:18492132,42741673:709978,414482,115847 +k1,1536:18492132,42741673:3277 +h1,1536:19198833,42741673:0,411205,112570 +) +g1,1536:19401339,42741673 +g1,1536:20132065,42741673 +k1,1537:32583029,42741673:9498567 +g1,1537:32583029,42741673 +) +v1,1539:6630773,43904651:0,393216,0 +(1,1595:6630773,45510161:25952256,1998726,196608 +g1,1595:6630773,45510161 +g1,1595:6630773,45510161 +g1,1595:6434165,45510161 +(1,1595:6434165,45510161:0,1998726,196608 +r1,1595:32779637,45510161:26345472,2195334,196608 +k1,1595:6434165,45510161:-26345472 +) +(1,1595:6434165,45510161:26345472,1998726,196608 +[1,1595:6630773,45510161:25952256,1802118,0 +(1,1541:6630773,44112269:25952256,404226,82312 +(1,1540:6630773,44112269:0,0,0 +g1,1540:6630773,44112269 +g1,1540:6630773,44112269 +g1,1540:6303093,44112269 +(1,1540:6303093,44112269:0,0,0 +) +g1,1540:6630773,44112269 +) +g1,1541:7263065,44112269 +g1,1541:8211503,44112269 +g1,1541:9792232,44112269 +h1,1541:10740669,44112269:0,0,0 +k1,1541:32583029,44112269:21842360 +g1,1541:32583029,44112269 +) +(1,1542:6630773,44778447:25952256,379060,9436 +h1,1542:6630773,44778447:0,0,0 +g1,1542:7263065,44778447 +g1,1542:7895357,44778447 +h1,1542:8211503,44778447:0,0,0 +k1,1542:32583029,44778447:24371526 +g1,1542:32583029,44778447 +) +(1,1546:6630773,45510161:25952256,404226,76021 +(1,1544:6630773,45510161:0,0,0 +g1,1544:6630773,45510161 +g1,1544:6630773,45510161 +g1,1544:6303093,45510161 +(1,1544:6303093,45510161:0,0,0 +) +g1,1544:6630773,45510161 +) +g1,1546:7579210,45510161 +g1,1546:7895356,45510161 +g1,1546:9159939,45510161 +g1,1546:11056813,45510161 +g1,1546:12953687,45510161 +g1,1546:14850561,45510161 +g1,1546:16747435,45510161 +g1,1546:18644309,45510161 +g1,1546:18960455,45510161 +g1,1546:20541184,45510161 +g1,1546:20857330,45510161 +g1,1546:22438059,45510161 +g1,1546:22754205,45510161 +g1,1546:24334934,45510161 +g1,1546:24651080,45510161 +g1,1546:26231809,45510161 +g1,1546:26547955,45510161 +g1,1546:28128684,45510161 +g1,1546:28444830,45510161 +g1,1546:28760976,45510161 +g1,1546:29077122,45510161 +h1,1546:29709413,45510161:0,0,0 +k1,1546:32583029,45510161:2873616 +g1,1546:32583029,45510161 +) +] +) +g1,1595:32583029,45510161 +g1,1595:6630773,45510161 +g1,1595:6630773,45510161 +g1,1595:32583029,45510161 +g1,1595:32583029,45510161 +) +] +(1,1595:32583029,45706769:0,0,0 +g1,1595:32583029,45706769 +) +) +] +(1,1595:6630773,47279633:25952256,0,0 +h1,1595:6630773,47279633:25952256,0,0 +) +] +h1,1595:4262630,4025873:0,0,0 ] !23305 }43 -Input:272:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:273:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:274:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:275:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:276:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:277:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:278:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:279:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:280:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:281:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:282:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:283:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:284:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:285:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:286:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:287:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:288:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:289:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:290:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1626 +Input:268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1740 {44 -[1,1809:4262630,47279633:28320399,43253760,0 -(1,1809:4262630,4025873:0,0,0 -[1,1809:-473657,4025873:25952256,0,0 -(1,1809:-473657,-710414:25952256,0,0 -h1,1809:-473657,-710414:0,0,0 -(1,1809:-473657,-710414:0,0,0 -(1,1809:-473657,-710414:0,0,0 -g1,1809:-473657,-710414 -(1,1809:-473657,-710414:65781,0,65781 -g1,1809:-407876,-710414 -[1,1809:-407876,-644633:0,0,0 +[1,1815:4262630,47279633:28320399,43253760,0 +(1,1815:4262630,4025873:0,0,0 +[1,1815:-473657,4025873:25952256,0,0 +(1,1815:-473657,-710414:25952256,0,0 +h1,1815:-473657,-710414:0,0,0 +(1,1815:-473657,-710414:0,0,0 +(1,1815:-473657,-710414:0,0,0 +g1,1815:-473657,-710414 +(1,1815:-473657,-710414:65781,0,65781 +g1,1815:-407876,-710414 +[1,1815:-407876,-644633:0,0,0 ] ) -k1,1809:-473657,-710414:-65781 +k1,1815:-473657,-710414:-65781 ) ) -k1,1809:25478599,-710414:25952256 -g1,1809:25478599,-710414 +k1,1815:25478599,-710414:25952256 +g1,1815:25478599,-710414 ) ] ) -[1,1809:6630773,47279633:25952256,43253760,0 -[1,1809:6630773,4812305:25952256,786432,0 -(1,1809:6630773,4812305:25952256,505283,126483 -(1,1809:6630773,4812305:25952256,505283,126483 -g1,1809:3078558,4812305 -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,2439708:0,1703936,0 -k1,1809:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1809: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,126483 +(1,1815:6630773,4812305:25952256,505283,126483 +g1,1815:3078558,4812305 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,2439708:0,1703936,0 +k1,1815:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1815:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1809:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1815:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,2439708:0,1703936,0 -g1,1809:29030814,2439708 -g1,1809:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1809: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,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1815:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1809:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1815:37855564,2439708:1179648,16384,0 ) ) -k1,1809:3078556,2439708:-34777008 +k1,1815:3078556,2439708:-34777008 ) ] -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,49800853:0,16384,2228224 -k1,1809:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1809: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,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1815:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1809:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1815:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,49800853:0,16384,2228224 -g1,1809:29030814,49800853 -g1,1809:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1809:36151628,51504789:16384,1179648,0 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,49800853:0,16384,2228224 +g1,1815:29030814,49800853 +g1,1815:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1815:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1809:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1815:37855564,49800853:1179648,16384,0 ) ) -k1,1809:3078556,49800853:-34777008 +k1,1815:3078556,49800853:-34777008 ) ] -g1,1809:6630773,4812305 -g1,1809:6630773,4812305 -g1,1809:10646819,4812305 -g1,1809:13853495,4812305 -g1,1809:15263174,4812305 -g1,1809:18764762,4812305 -k1,1809:31786111,4812305:13021349 +g1,1815:6630773,4812305 +g1,1815:6630773,4812305 +g1,1815:10646819,4812305 +g1,1815:13853495,4812305 +g1,1815:15263174,4812305 +g1,1815:18764762,4812305 +k1,1815:31786111,4812305:13021349 ) ) ] -[1,1809:6630773,45706769:25952256,40108032,0 -(1,1809:6630773,45706769:25952256,40108032,0 -(1,1809:6630773,45706769:0,0,0 -g1,1809:6630773,45706769 +[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 ) -[1,1809:6630773,45706769:25952256,40108032,0 -v1,1589:6630773,6254097:0,393216,0 -(1,1589:6630773,21642214:25952256,15781333,196608 -g1,1589:6630773,21642214 -g1,1589:6630773,21642214 -g1,1589:6434165,21642214 -(1,1589:6434165,21642214:0,15781333,196608 -r1,1589:32779637,21642214:26345472,15977941,196608 -k1,1589:6434165,21642214:-26345472 +[1,1815:6630773,45706769:25952256,40108032,0 +v1,1595:6630773,6254097:0,393216,0 +(1,1595:6630773,21642214:25952256,15781333,196608 +g1,1595:6630773,21642214 +g1,1595:6630773,21642214 +g1,1595:6434165,21642214 +(1,1595:6434165,21642214:0,15781333,196608 +r1,1595:32779637,21642214:26345472,15977941,196608 +k1,1595:6434165,21642214:-26345472 ) -(1,1589:6434165,21642214:26345472,15781333,196608 -[1,1589:6630773,21642214:25952256,15584725,0 -(1,1542:6630773,6461715:25952256,404226,76021 -(1,1541:6630773,6461715:0,0,0 -g1,1541:6630773,6461715 -g1,1541:6630773,6461715 -g1,1541:6303093,6461715 -(1,1541:6303093,6461715:0,0,0 -) -g1,1541:6630773,6461715 +(1,1595:6434165,21642214:26345472,15781333,196608 +[1,1595:6630773,21642214:25952256,15584725,0 +(1,1548:6630773,6461715:25952256,404226,76021 +(1,1547:6630773,6461715:0,0,0 +g1,1547:6630773,6461715 +g1,1547:6630773,6461715 +g1,1547:6303093,6461715 +(1,1547:6303093,6461715:0,0,0 +) +g1,1547:6630773,6461715 ) -k1,1542:6630773,6461715:0 -g1,1542:8527647,6461715 -g1,1542:9159939,6461715 -h1,1542:9792231,6461715:0,0,0 -k1,1542:32583029,6461715:22790798 -g1,1542:32583029,6461715 +k1,1548:6630773,6461715:0 +g1,1548:8527647,6461715 +g1,1548:9159939,6461715 +h1,1548:9792231,6461715:0,0,0 +k1,1548:32583029,6461715:22790798 +g1,1548:32583029,6461715 ) -(1,1546:6630773,7193429:25952256,404226,76021 -(1,1544:6630773,7193429:0,0,0 -g1,1544:6630773,7193429 -g1,1544:6630773,7193429 -g1,1544:6303093,7193429 -(1,1544:6303093,7193429:0,0,0 -) -g1,1544:6630773,7193429 -) -g1,1546:7579210,7193429 -g1,1546:8843793,7193429 -h1,1546:10424521,7193429:0,0,0 -k1,1546:32583029,7193429:22158508 -g1,1546:32583029,7193429 -) -(1,1548:6630773,8514967:25952256,404226,101187 -(1,1547:6630773,8514967:0,0,0 -g1,1547:6630773,8514967 -g1,1547:6630773,8514967 -g1,1547:6303093,8514967 -(1,1547:6303093,8514967:0,0,0 -) -g1,1547:6630773,8514967 -) -k1,1548:6630773,8514967:0 -g1,1548:8527647,8514967 -g1,1548:9159939,8514967 -h1,1548:9792231,8514967:0,0,0 -k1,1548:32583029,8514967:22790798 -g1,1548:32583029,8514967 -) -(1,1552:6630773,9246681:25952256,404226,76021 -(1,1550:6630773,9246681:0,0,0 -g1,1550:6630773,9246681 -g1,1550:6630773,9246681 -g1,1550:6303093,9246681 -(1,1550:6303093,9246681:0,0,0 -) -g1,1550:6630773,9246681 -) -g1,1552:7579210,9246681 -g1,1552:8843793,9246681 -h1,1552:10108376,9246681:0,0,0 -k1,1552:32583028,9246681:22474652 -g1,1552:32583028,9246681 -) -(1,1554:6630773,10568219:25952256,404226,76021 -(1,1553:6630773,10568219:0,0,0 -g1,1553:6630773,10568219 -g1,1553:6630773,10568219 -g1,1553:6303093,10568219 -(1,1553:6303093,10568219:0,0,0 -) -g1,1553:6630773,10568219 -) -k1,1554:6630773,10568219:0 -g1,1554:8527647,10568219 -g1,1554:9159939,10568219 -h1,1554:10108376,10568219:0,0,0 -k1,1554:32583028,10568219:22474652 -g1,1554:32583028,10568219 -) -(1,1558:6630773,11299933:25952256,404226,76021 -(1,1556:6630773,11299933:0,0,0 -g1,1556:6630773,11299933 -g1,1556:6630773,11299933 -g1,1556:6303093,11299933 -(1,1556:6303093,11299933:0,0,0 -) -g1,1556:6630773,11299933 -) -g1,1558:7579210,11299933 -g1,1558:8843793,11299933 -h1,1558:9476084,11299933:0,0,0 -k1,1558:32583028,11299933:23106944 -g1,1558:32583028,11299933 -) -(1,1560:6630773,12621471:25952256,404226,101187 -(1,1559:6630773,12621471:0,0,0 -g1,1559:6630773,12621471 -g1,1559:6630773,12621471 -g1,1559:6303093,12621471 -(1,1559:6303093,12621471:0,0,0 -) -g1,1559:6630773,12621471 -) -k1,1560:6630773,12621471:0 -g1,1560:8527647,12621471 -g1,1560:9159939,12621471 -h1,1560:10108376,12621471:0,0,0 -k1,1560:32583028,12621471:22474652 -g1,1560:32583028,12621471 -) -(1,1564:6630773,13353185:25952256,404226,76021 -(1,1562:6630773,13353185:0,0,0 -g1,1562:6630773,13353185 -g1,1562:6630773,13353185 -g1,1562:6303093,13353185 -(1,1562:6303093,13353185:0,0,0 -) -g1,1562:6630773,13353185 -) -g1,1564:7579210,13353185 -g1,1564:8843793,13353185 -h1,1564:9476084,13353185:0,0,0 -k1,1564:32583028,13353185:23106944 -g1,1564:32583028,13353185 -) -(1,1566:6630773,14674723:25952256,404226,76021 -(1,1565:6630773,14674723:0,0,0 -g1,1565:6630773,14674723 -g1,1565:6630773,14674723 -g1,1565:6303093,14674723 -(1,1565:6303093,14674723:0,0,0 -) -g1,1565:6630773,14674723 -) -k1,1566:6630773,14674723:0 -h1,1566:9159938,14674723:0,0,0 -k1,1566:32583030,14674723:23423092 -g1,1566:32583030,14674723 -) -(1,1570:6630773,15406437:25952256,404226,76021 -(1,1568:6630773,15406437:0,0,0 -g1,1568:6630773,15406437 -g1,1568:6630773,15406437 -g1,1568:6303093,15406437 -(1,1568:6303093,15406437:0,0,0 -) -g1,1568:6630773,15406437 -) -g1,1570:7579210,15406437 -g1,1570:7895356,15406437 -g1,1570:9159939,15406437 -g1,1570:11056813,15406437 -g1,1570:12953687,15406437 -g1,1570:14850561,15406437 -g1,1570:16747435,15406437 -g1,1570:18644309,15406437 -g1,1570:20541183,15406437 -g1,1570:22438057,15406437 -g1,1570:24334931,15406437 -g1,1570:26231805,15406437 -h1,1570:27812533,15406437:0,0,0 -k1,1570:32583029,15406437:4770496 -g1,1570:32583029,15406437 -) -(1,1572:6630773,16727975:25952256,404226,76021 -(1,1571:6630773,16727975:0,0,0 -g1,1571:6630773,16727975 -g1,1571:6630773,16727975 -g1,1571:6303093,16727975 -(1,1571:6303093,16727975:0,0,0 -) -g1,1571:6630773,16727975 -) -k1,1572:6630773,16727975:0 -h1,1572:9159938,16727975:0,0,0 -k1,1572:32583030,16727975:23423092 -g1,1572:32583030,16727975 -) -(1,1576:6630773,17459689:25952256,404226,76021 -(1,1574:6630773,17459689:0,0,0 -g1,1574:6630773,17459689 -g1,1574:6630773,17459689 -g1,1574:6303093,17459689 -(1,1574:6303093,17459689:0,0,0 -) -g1,1574:6630773,17459689 -) -g1,1576:7579210,17459689 -g1,1576:7895356,17459689 -g1,1576:9159939,17459689 -g1,1576:11056813,17459689 -g1,1576:12953687,17459689 -g1,1576:14850561,17459689 -g1,1576:16747435,17459689 -g1,1576:18644309,17459689 -g1,1576:20541183,17459689 -g1,1576:22438057,17459689 -g1,1576:24334931,17459689 -g1,1576:26231805,17459689 -g1,1576:28128679,17459689 -g1,1576:28444825,17459689 -h1,1576:29709408,17459689:0,0,0 -k1,1576:32583029,17459689:2873621 -g1,1576:32583029,17459689 -) -(1,1578:6630773,18781227:25952256,404226,101187 -(1,1577:6630773,18781227:0,0,0 -g1,1577:6630773,18781227 -g1,1577:6630773,18781227 -g1,1577:6303093,18781227 -(1,1577:6303093,18781227:0,0,0 -) -g1,1577:6630773,18781227 -) -k1,1578:6630773,18781227:0 -k1,1578:6630773,18781227:0 -h1,1578:10740667,18781227:0,0,0 -k1,1578:32583029,18781227:21842362 -g1,1578:32583029,18781227 -) -(1,1582:6630773,19512941:25952256,404226,76021 -(1,1580:6630773,19512941:0,0,0 -g1,1580:6630773,19512941 -g1,1580:6630773,19512941 -g1,1580:6303093,19512941 -(1,1580:6303093,19512941:0,0,0 -) -g1,1580:6630773,19512941 -) -g1,1582:7579210,19512941 -g1,1582:8843793,19512941 -h1,1582:10108376,19512941:0,0,0 -k1,1582:32583028,19512941:22474652 -g1,1582:32583028,19512941 -) -(1,1584:6630773,20834479:25952256,404226,76021 -(1,1583:6630773,20834479:0,0,0 -g1,1583:6630773,20834479 -g1,1583:6630773,20834479 -g1,1583:6303093,20834479 -(1,1583:6303093,20834479:0,0,0 -) -g1,1583:6630773,20834479 -) -k1,1584:6630773,20834479:0 -k1,1584:6630773,20834479:0 -h1,1584:10740667,20834479:0,0,0 -k1,1584:32583029,20834479:21842362 -g1,1584:32583029,20834479 -) -(1,1588:6630773,21566193:25952256,404226,76021 -(1,1586:6630773,21566193:0,0,0 -g1,1586:6630773,21566193 -g1,1586:6630773,21566193 -g1,1586:6303093,21566193 -(1,1586:6303093,21566193:0,0,0 -) -g1,1586:6630773,21566193 -) -g1,1588:7579210,21566193 -g1,1588:8843793,21566193 -h1,1588:10424521,21566193:0,0,0 -k1,1588:32583029,21566193:22158508 -g1,1588:32583029,21566193 -) -] -) -g1,1589:32583029,21642214 -g1,1589:6630773,21642214 -g1,1589:6630773,21642214 -g1,1589:32583029,21642214 -g1,1589:32583029,21642214 -) -h1,1589:6630773,21838822:0,0,0 -(1,1593:6630773,23204598:25952256,513147,126483 -h1,1592:6630773,23204598:983040,0,0 -k1,1592:9061385,23204598:250885 -k1,1592:12071991,23204598:250885 -k1,1592:12982168,23204598:250885 -k1,1592:14984830,23204598:250885 -k1,1592:15895007,23204598:250885 -k1,1592:18711627,23204598:250885 -k1,1592:21988308,23204598:250884 -k1,1592:23937231,23204598:250885 -(1,1592:23937231,23204598:0,414482,115847 -r1,1592:24647209,23204598:709978,530329,115847 -k1,1592:23937231,23204598:-709978 -) -(1,1592:23937231,23204598:709978,414482,115847 -k1,1592:23937231,23204598:3277 -h1,1592:24643932,23204598:0,411205,112570 -) -k1,1592:25228395,23204598:250885 -k1,1592:26470840,23204598:250885 -k1,1592:29127552,23204598:250885 -k1,1592:29994475,23204598:250885 -k1,1592:31753999,23204598:250885 -k1,1593:32583029,23204598:0 -) -(1,1593:6630773,24046086:25952256,513147,134348 -k1,1592:7938051,24046086:214793 -k1,1592:11555472,24046086:214792 -k1,1592:12874547,24046086:214793 -k1,1592:13837106,24046086:214793 -k1,1592:17060656,24046086:214792 -(1,1592:17060656,24046086:0,414482,115847 -r1,1592:18474057,24046086:1413401,530329,115847 -k1,1592:17060656,24046086:-1413401 -) -(1,1592:17060656,24046086:1413401,414482,115847 -k1,1592:17060656,24046086:3277 -h1,1592:18470780,24046086:0,411205,112570 -) -k1,1592:18688850,24046086:214793 -k1,1592:21108930,24046086:214793 -k1,1592:22009884,24046086:214792 -k1,1592:22995380,24046086:214793 -k1,1592:26282501,24046086:214793 -k1,1592:27148721,24046086:214792 -k1,1592:30644246,24046086:214793 -(1,1592:30644246,24046086:0,414482,115847 -r1,1592:32409359,24046086:1765113,530329,115847 -k1,1592:30644246,24046086:-1765113 -) -(1,1592:30644246,24046086:1765113,414482,115847 -k1,1592:30644246,24046086:3277 -h1,1592:32406082,24046086:0,411205,112570 -) -k1,1592:32583029,24046086:0 -) -(1,1593:6630773,24887574:25952256,513147,134348 -g1,1592:9003176,24887574 -g1,1592:9818443,24887574 -(1,1592:9818443,24887574:0,414482,115847 -r1,1592:10528421,24887574:709978,530329,115847 -k1,1592:9818443,24887574:-709978 -) -(1,1592:9818443,24887574:709978,414482,115847 -k1,1592:9818443,24887574:3277 -h1,1592:10525144,24887574:0,411205,112570 -) -g1,1592:10727650,24887574 -g1,1592:12937524,24887574 -g1,1592:14874768,24887574 -g1,1592:17846169,24887574 -g1,1592:19613019,24887574 -g1,1592:20831333,24887574 -g1,1592:22739086,24887574 -g1,1592:25074133,24887574 -g1,1592:26292447,24887574 -g1,1592:29187172,24887574 -g1,1592:29917898,24887574 -k1,1593:32583029,24887574:119713 -g1,1593:32583029,24887574 -) -v1,1595:6630773,26078040:0,393216,0 -(1,1620:6630773,33253149:25952256,7568325,196608 -g1,1620:6630773,33253149 -g1,1620:6630773,33253149 -g1,1620:6434165,33253149 -(1,1620:6434165,33253149:0,7568325,196608 -r1,1620:32779637,33253149:26345472,7764933,196608 -k1,1620:6434165,33253149:-26345472 -) -(1,1620:6434165,33253149:26345472,7568325,196608 -[1,1620:6630773,33253149:25952256,7371717,0 -(1,1597:6630773,26285658:25952256,404226,76021 -(1,1596:6630773,26285658:0,0,0 -g1,1596:6630773,26285658 -g1,1596:6630773,26285658 -g1,1596:6303093,26285658 -(1,1596:6303093,26285658:0,0,0 -) -g1,1596:6630773,26285658 -) -k1,1597:6630773,26285658:0 -g1,1597:8527647,26285658 -g1,1597:9159939,26285658 -h1,1597:10108376,26285658:0,0,0 -k1,1597:32583028,26285658:22474652 -g1,1597:32583028,26285658 -) -(1,1601:6630773,27017372:25952256,404226,76021 -(1,1599:6630773,27017372:0,0,0 -g1,1599:6630773,27017372 -g1,1599:6630773,27017372 -g1,1599:6303093,27017372 -(1,1599:6303093,27017372:0,0,0 -) -g1,1599:6630773,27017372 -) -g1,1601:7579210,27017372 -g1,1601:8843793,27017372 -h1,1601:9476084,27017372:0,0,0 -k1,1601:32583028,27017372:23106944 -g1,1601:32583028,27017372 -) -(1,1603:6630773,28338910:25952256,404226,101187 -(1,1602:6630773,28338910:0,0,0 -g1,1602:6630773,28338910 -g1,1602:6630773,28338910 -g1,1602:6303093,28338910 -(1,1602:6303093,28338910:0,0,0 -) -g1,1602:6630773,28338910 -) -k1,1603:6630773,28338910:0 -g1,1603:8527647,28338910 -g1,1603:9159939,28338910 -h1,1603:10108376,28338910:0,0,0 -k1,1603:32583028,28338910:22474652 -g1,1603:32583028,28338910 -) -(1,1607:6630773,29070624:25952256,404226,76021 -(1,1605:6630773,29070624:0,0,0 -g1,1605:6630773,29070624 -g1,1605:6630773,29070624 -g1,1605:6303093,29070624 -(1,1605:6303093,29070624:0,0,0 -) -g1,1605:6630773,29070624 -) -g1,1607:7579210,29070624 -g1,1607:8843793,29070624 -h1,1607:9476084,29070624:0,0,0 -k1,1607:32583028,29070624:23106944 -g1,1607:32583028,29070624 -) -(1,1609:6630773,30392162:25952256,404226,82312 -(1,1608:6630773,30392162:0,0,0 -g1,1608:6630773,30392162 -g1,1608:6630773,30392162 -g1,1608:6303093,30392162 -(1,1608:6303093,30392162:0,0,0 -) -g1,1608:6630773,30392162 -) -k1,1609:6630773,30392162:0 -g1,1609:8527647,30392162 -g1,1609:9159939,30392162 -g1,1609:10424522,30392162 -h1,1609:13902125,30392162:0,0,0 -k1,1609:32583029,30392162:18680904 -g1,1609:32583029,30392162 -) -(1,1613:6630773,31123876:25952256,404226,76021 -(1,1611:6630773,31123876:0,0,0 -g1,1611:6630773,31123876 -g1,1611:6630773,31123876 -g1,1611:6303093,31123876 -(1,1611:6303093,31123876:0,0,0 -) -g1,1611:6630773,31123876 -) -g1,1613:7579210,31123876 -g1,1613:8843793,31123876 -h1,1613:10108376,31123876:0,0,0 -k1,1613:32583028,31123876:22474652 -g1,1613:32583028,31123876 -) -(1,1615:6630773,32445414:25952256,404226,101187 -(1,1614:6630773,32445414:0,0,0 -g1,1614:6630773,32445414 -g1,1614:6630773,32445414 -g1,1614:6303093,32445414 -(1,1614:6303093,32445414:0,0,0 -) -g1,1614:6630773,32445414 -) -k1,1615:6630773,32445414:0 -g1,1615:8527647,32445414 -g1,1615:9159939,32445414 -g1,1615:10424522,32445414 -h1,1615:13902125,32445414:0,0,0 -k1,1615:32583029,32445414:18680904 -g1,1615:32583029,32445414 -) -(1,1619:6630773,33177128:25952256,404226,76021 -(1,1617:6630773,33177128:0,0,0 -g1,1617:6630773,33177128 -g1,1617:6630773,33177128 -g1,1617:6303093,33177128 -(1,1617:6303093,33177128:0,0,0 -) -g1,1617:6630773,33177128 -) -g1,1619:7579210,33177128 -g1,1619:8843793,33177128 -h1,1619:10424521,33177128:0,0,0 -k1,1619:32583029,33177128:22158508 -g1,1619:32583029,33177128 -) -] -) -g1,1620:32583029,33253149 -g1,1620:6630773,33253149 -g1,1620:6630773,33253149 -g1,1620:32583029,33253149 -g1,1620:32583029,33253149 -) -h1,1620:6630773,33449757:0,0,0 -v1,1624:6630773,35339821:0,393216,0 -(1,1809:6630773,44424403:25952256,9477798,589824 -g1,1809:6630773,44424403 -(1,1809:6630773,44424403:25952256,9477798,589824 -(1,1809:6630773,45014227:25952256,10067622,0 -[1,1809:6630773,45014227:25952256,10067622,0 -(1,1809:6630773,45014227:25952256,10041408,0 -r1,1809:6656987,45014227:26214,10041408,0 -[1,1809:6656987,45014227:25899828,10041408,0 -(1,1809:6656987,44424403:25899828,8861760,0 -[1,1809:7246811,44424403:24720180,8861760,0 -(1,1629:7246811,36724528:24720180,1161885,196608 -(1,1624:7246811,36724528:0,1161885,196608 -r1,1809:8794447,36724528:1547636,1358493,196608 -k1,1624:7246811,36724528:-1547636 -) -(1,1624:7246811,36724528:1547636,1161885,196608 -) -k1,1624:9041149,36724528:246702 -k1,1624:9041149,36724528:0 -k1,1624:9287851,36724528:246702 -k1,1625:9287851,36724528:0 -k1,1625:9534554,36724528:246703 -k1,1626:9534554,36724528:0 -k1,1626:9781256,36724528:246702 -k1,1627:9781256,36724528:0 -k1,1628:11516281,36724528:246702 -k1,1628:11975927,36724528:246654 -k1,1628:13502548,36724528:246703 -k1,1628:15441390,36724528:246702 -k1,1628:18679811,36724528:246702 -k1,1628:19874164,36724528:246702 -k1,1628:22006337,36724528:246702 -k1,1628:23272125,36724528:246703 -k1,1628:25169679,36724528:246702 -k1,1628:28664345,36724528:246702 -k1,1628:29570339,36724528:246702 -k1,1629:31966991,36724528:0 -) -(1,1629:7246811,37566016:24720180,513147,126483 -k1,1628:8371766,37566016:232355 -k1,1628:11291752,37566016:232355 -k1,1628:13469871,37566016:232355 -k1,1628:14388388,37566016:232355 -k1,1628:17801861,37566016:232355 -k1,1628:18685644,37566016:232355 -k1,1628:20271317,37566016:232355 -k1,1628:23319754,37566016:232355 -k1,1628:24238271,37566016:232355 -k1,1628:26852204,37566016:232355 -k1,1628:27700597,37566016:232355 -k1,1628:31966991,37566016:0 -) -(1,1629:7246811,38407504:24720180,505283,134348 -k1,1628:8632898,38407504:281805 -k1,1628:10696626,38407504:281804 -k1,1628:13285298,38407504:281805 -k1,1628:16747565,38407504:281805 -k1,1628:17657204,38407504:281804 -k1,1628:18527522,38407504:281805 -k1,1628:21625409,38407504:281805 -k1,1628:23191719,38407504:281804 -k1,1628:24465084,38407504:281805 -k1,1628:25813160,38407504:281805 -k1,1628:28655456,38407504:281804 -k1,1628:29928821,38407504:281805 -k1,1628:31966991,38407504:0 -) -(1,1629:7246811,39248992:24720180,513147,134348 -k1,1628:8134059,39248992:201086 -k1,1628:13450885,39248992:201086 -k1,1628:15534821,39248992:201087 -k1,1628:16363742,39248992:201086 -k1,1628:19230833,39248992:201086 -k1,1628:20083347,39248992:201086 -k1,1628:22402557,39248992:201086 -k1,1628:24418335,39248992:201086 -k1,1628:25270850,39248992:201087 -k1,1628:26491021,39248992:201086 -k1,1628:28850208,39248992:201086 -k1,1628:30242739,39248992:201086 -k1,1629:31966991,39248992:0 -) -(1,1629:7246811,40090480:24720180,513147,126483 -k1,1628:8593979,40090480:207497 -k1,1628:11617558,40090480:207497 -k1,1628:13109561,40090480:207497 -k1,1628:14421340,40090480:207497 -k1,1628:15376603,40090480:207497 -k1,1628:19567378,40090480:207497 -k1,1628:20793960,40090480:207497 -k1,1628:23933538,40090480:207497 -k1,1628:24800327,40090480:207497 -k1,1628:26779918,40090480:207497 -k1,1628:27518912,40090480:207497 -k1,1628:29978881,40090480:207497 -k1,1628:30947906,40090480:207497 -k1,1628:31966991,40090480:0 -) -(1,1629:7246811,40931968:24720180,513147,134348 -k1,1628:9944690,40931968:212098 -k1,1628:10816080,40931968:212098 -k1,1628:14341679,40931968:212099 -k1,1628:16338322,40931968:212098 -k1,1628:17834926,40931968:212098 -k1,1628:19151306,40931968:212098 -k1,1628:20111170,40931968:212098 -k1,1628:22535108,40931968:212098 -k1,1628:25634068,40931968:212099 -k1,1628:26377663,40931968:212098 -k1,1628:28876968,40931968:212098 -k1,1628:31966991,40931968:0 -) -(1,1629:7246811,41773456:24720180,513147,134348 -k1,1628:8268618,41773456:260279 -k1,1628:11443282,41773456:260278 -$1,1628:11650376,41773456 -$1,1628:12012135,41773456 -k1,1628:12653178,41773456:260279 -k1,1628:16645077,41773456:260279 -k1,1628:18105319,41773456:260278 -k1,1628:20747176,41773456:260279 -k1,1628:21693617,41773456:260279 -k1,1628:22972981,41773456:260279 -k1,1628:25391360,41773456:260278 -k1,1628:27331982,41773456:260279 -k1,1628:28251553,41773456:260279 -$1,1628:28251553,41773456 -$1,1628:28613312,41773456 -k1,1628:28873590,41773456:260278 -k1,1628:30081520,41773456:260279 -k1,1628:31966991,41773456:0 -) -(1,1629:7246811,42614944:24720180,513147,126483 -k1,1628:7802390,42614944:157120 -k1,1628:8527707,42614944:157120 -k1,1628:9100206,42614944:210740 -k1,1628:9879143,42614944:210740 -$1,1628:10277602,42614944 -k1,1628:10666193,42614944:214921 -k1,1628:12077801,42614944:214921 -k1,1628:13943574,42614944:214921 -k1,1628:17406460,42614944:214922 -k1,1628:18280673,42614944:214921 -k1,1628:20267688,42614944:214921 -k1,1628:21586891,42614944:214921 -k1,1628:23130882,42614944:214921 -k1,1628:23997232,42614944:214922 -k1,1628:27880858,42614944:214921 -k1,1628:30268953,42614944:214921 -k1,1628:31966991,42614944:0 -) -(1,1629:7246811,43456432:24720180,513147,134348 -k1,1628:9602721,43456432:174216 -k1,1628:10724589,43456432:174217 -k1,1628:13619204,43456432:174216 -k1,1628:14421256,43456432:174217 -k1,1628:15614557,43456432:174216 -k1,1628:18030105,43456432:174217 -k1,1628:20865738,43456432:174216 -k1,1628:23082057,43456432:174217 -k1,1628:24275358,43456432:174216 -k1,1628:26292447,43456432:174217 -k1,1628:27125955,43456432:174216 -k1,1628:28319257,43456432:174217 -k1,1628:31966991,43456432:0 -) -(1,1629:7246811,44297920:24720180,513147,126483 -g1,1628:7977537,44297920 -g1,1628:9375420,44297920 -g1,1628:11799596,44297920 -g1,1628:12397284,44297920 -g1,1628:13779438,44297920 -g1,1628:14630095,44297920 -g1,1628:18395793,44297920 -k1,1629:31966991,44297920:10149563 -g1,1629:31966991,44297920 -) -] -) -] -r1,1809:32583029,45014227:26214,10041408,0 -) -] -) -) -g1,1809:32583029,44424403 -) -] -(1,1809:32583029,45706769:0,0,0 -g1,1809:32583029,45706769 -) -) -] -(1,1809:6630773,47279633:25952256,0,0 -h1,1809:6630773,47279633:25952256,0,0 -) -] -h1,1809:4262630,4025873:0,0,0 -] -!22059 +(1,1552:6630773,7193429:25952256,404226,76021 +(1,1550:6630773,7193429:0,0,0 +g1,1550:6630773,7193429 +g1,1550:6630773,7193429 +g1,1550:6303093,7193429 +(1,1550:6303093,7193429:0,0,0 +) +g1,1550:6630773,7193429 +) +g1,1552:7579210,7193429 +g1,1552:8843793,7193429 +h1,1552:10424521,7193429:0,0,0 +k1,1552:32583029,7193429:22158508 +g1,1552:32583029,7193429 +) +(1,1554:6630773,8514967:25952256,404226,101187 +(1,1553:6630773,8514967:0,0,0 +g1,1553:6630773,8514967 +g1,1553:6630773,8514967 +g1,1553:6303093,8514967 +(1,1553:6303093,8514967:0,0,0 +) +g1,1553:6630773,8514967 +) +k1,1554:6630773,8514967:0 +g1,1554:8527647,8514967 +g1,1554:9159939,8514967 +h1,1554:9792231,8514967:0,0,0 +k1,1554:32583029,8514967:22790798 +g1,1554:32583029,8514967 +) +(1,1558:6630773,9246681:25952256,404226,76021 +(1,1556:6630773,9246681:0,0,0 +g1,1556:6630773,9246681 +g1,1556:6630773,9246681 +g1,1556:6303093,9246681 +(1,1556:6303093,9246681:0,0,0 +) +g1,1556:6630773,9246681 +) +g1,1558:7579210,9246681 +g1,1558:8843793,9246681 +h1,1558:10108376,9246681:0,0,0 +k1,1558:32583028,9246681:22474652 +g1,1558:32583028,9246681 +) +(1,1560:6630773,10568219:25952256,404226,76021 +(1,1559:6630773,10568219:0,0,0 +g1,1559:6630773,10568219 +g1,1559:6630773,10568219 +g1,1559:6303093,10568219 +(1,1559:6303093,10568219:0,0,0 +) +g1,1559:6630773,10568219 +) +k1,1560:6630773,10568219:0 +g1,1560:8527647,10568219 +g1,1560:9159939,10568219 +h1,1560:10108376,10568219:0,0,0 +k1,1560:32583028,10568219:22474652 +g1,1560:32583028,10568219 +) +(1,1564:6630773,11299933:25952256,404226,76021 +(1,1562:6630773,11299933:0,0,0 +g1,1562:6630773,11299933 +g1,1562:6630773,11299933 +g1,1562:6303093,11299933 +(1,1562:6303093,11299933:0,0,0 +) +g1,1562:6630773,11299933 +) +g1,1564:7579210,11299933 +g1,1564:8843793,11299933 +h1,1564:9476084,11299933:0,0,0 +k1,1564:32583028,11299933:23106944 +g1,1564:32583028,11299933 +) +(1,1566:6630773,12621471:25952256,404226,101187 +(1,1565:6630773,12621471:0,0,0 +g1,1565:6630773,12621471 +g1,1565:6630773,12621471 +g1,1565:6303093,12621471 +(1,1565:6303093,12621471:0,0,0 +) +g1,1565:6630773,12621471 +) +k1,1566:6630773,12621471:0 +g1,1566:8527647,12621471 +g1,1566:9159939,12621471 +h1,1566:10108376,12621471:0,0,0 +k1,1566:32583028,12621471:22474652 +g1,1566:32583028,12621471 +) +(1,1570:6630773,13353185:25952256,404226,76021 +(1,1568:6630773,13353185:0,0,0 +g1,1568:6630773,13353185 +g1,1568:6630773,13353185 +g1,1568:6303093,13353185 +(1,1568:6303093,13353185:0,0,0 +) +g1,1568:6630773,13353185 +) +g1,1570:7579210,13353185 +g1,1570:8843793,13353185 +h1,1570:9476084,13353185:0,0,0 +k1,1570:32583028,13353185:23106944 +g1,1570:32583028,13353185 +) +(1,1572:6630773,14674723:25952256,404226,76021 +(1,1571:6630773,14674723:0,0,0 +g1,1571:6630773,14674723 +g1,1571:6630773,14674723 +g1,1571:6303093,14674723 +(1,1571:6303093,14674723:0,0,0 +) +g1,1571:6630773,14674723 +) +k1,1572:6630773,14674723:0 +h1,1572:9159938,14674723:0,0,0 +k1,1572:32583030,14674723:23423092 +g1,1572:32583030,14674723 +) +(1,1576:6630773,15406437:25952256,404226,76021 +(1,1574:6630773,15406437:0,0,0 +g1,1574:6630773,15406437 +g1,1574:6630773,15406437 +g1,1574:6303093,15406437 +(1,1574:6303093,15406437:0,0,0 +) +g1,1574:6630773,15406437 +) +g1,1576:7579210,15406437 +g1,1576:7895356,15406437 +g1,1576:9159939,15406437 +g1,1576:11056813,15406437 +g1,1576:12953687,15406437 +g1,1576:14850561,15406437 +g1,1576:16747435,15406437 +g1,1576:18644309,15406437 +g1,1576:20541183,15406437 +g1,1576:22438057,15406437 +g1,1576:24334931,15406437 +g1,1576:26231805,15406437 +h1,1576:27812533,15406437:0,0,0 +k1,1576:32583029,15406437:4770496 +g1,1576:32583029,15406437 +) +(1,1578:6630773,16727975:25952256,404226,76021 +(1,1577:6630773,16727975:0,0,0 +g1,1577:6630773,16727975 +g1,1577:6630773,16727975 +g1,1577:6303093,16727975 +(1,1577:6303093,16727975:0,0,0 +) +g1,1577:6630773,16727975 +) +k1,1578:6630773,16727975:0 +h1,1578:9159938,16727975:0,0,0 +k1,1578:32583030,16727975:23423092 +g1,1578:32583030,16727975 +) +(1,1582:6630773,17459689:25952256,404226,76021 +(1,1580:6630773,17459689:0,0,0 +g1,1580:6630773,17459689 +g1,1580:6630773,17459689 +g1,1580:6303093,17459689 +(1,1580:6303093,17459689:0,0,0 +) +g1,1580:6630773,17459689 +) +g1,1582:7579210,17459689 +g1,1582:7895356,17459689 +g1,1582:9159939,17459689 +g1,1582:11056813,17459689 +g1,1582:12953687,17459689 +g1,1582:14850561,17459689 +g1,1582:16747435,17459689 +g1,1582:18644309,17459689 +g1,1582:20541183,17459689 +g1,1582:22438057,17459689 +g1,1582:24334931,17459689 +g1,1582:26231805,17459689 +g1,1582:28128679,17459689 +g1,1582:28444825,17459689 +h1,1582:29709408,17459689:0,0,0 +k1,1582:32583029,17459689:2873621 +g1,1582:32583029,17459689 +) +(1,1584:6630773,18781227:25952256,404226,101187 +(1,1583:6630773,18781227:0,0,0 +g1,1583:6630773,18781227 +g1,1583:6630773,18781227 +g1,1583:6303093,18781227 +(1,1583:6303093,18781227:0,0,0 +) +g1,1583:6630773,18781227 +) +k1,1584:6630773,18781227:0 +k1,1584:6630773,18781227:0 +h1,1584:10740667,18781227:0,0,0 +k1,1584:32583029,18781227:21842362 +g1,1584:32583029,18781227 +) +(1,1588:6630773,19512941:25952256,404226,76021 +(1,1586:6630773,19512941:0,0,0 +g1,1586:6630773,19512941 +g1,1586:6630773,19512941 +g1,1586:6303093,19512941 +(1,1586:6303093,19512941:0,0,0 +) +g1,1586:6630773,19512941 +) +g1,1588:7579210,19512941 +g1,1588:8843793,19512941 +h1,1588:10108376,19512941:0,0,0 +k1,1588:32583028,19512941:22474652 +g1,1588:32583028,19512941 +) +(1,1590:6630773,20834479:25952256,404226,76021 +(1,1589:6630773,20834479:0,0,0 +g1,1589:6630773,20834479 +g1,1589:6630773,20834479 +g1,1589:6303093,20834479 +(1,1589:6303093,20834479:0,0,0 +) +g1,1589:6630773,20834479 +) +k1,1590:6630773,20834479:0 +k1,1590:6630773,20834479:0 +h1,1590:10740667,20834479:0,0,0 +k1,1590:32583029,20834479:21842362 +g1,1590:32583029,20834479 +) +(1,1594:6630773,21566193:25952256,404226,76021 +(1,1592:6630773,21566193:0,0,0 +g1,1592:6630773,21566193 +g1,1592:6630773,21566193 +g1,1592:6303093,21566193 +(1,1592:6303093,21566193:0,0,0 +) +g1,1592:6630773,21566193 +) +g1,1594:7579210,21566193 +g1,1594:8843793,21566193 +h1,1594:10424521,21566193:0,0,0 +k1,1594:32583029,21566193:22158508 +g1,1594:32583029,21566193 +) +] +) +g1,1595:32583029,21642214 +g1,1595:6630773,21642214 +g1,1595:6630773,21642214 +g1,1595:32583029,21642214 +g1,1595:32583029,21642214 +) +h1,1595:6630773,21838822:0,0,0 +(1,1599:6630773,23204598:25952256,513147,126483 +h1,1598:6630773,23204598:983040,0,0 +k1,1598:9061385,23204598:250885 +k1,1598:12071991,23204598:250885 +k1,1598:12982168,23204598:250885 +k1,1598:14984830,23204598:250885 +k1,1598:15895007,23204598:250885 +k1,1598:18711627,23204598:250885 +k1,1598:21988308,23204598:250884 +k1,1598:23937231,23204598:250885 +(1,1598:23937231,23204598:0,414482,115847 +r1,1598:24647209,23204598:709978,530329,115847 +k1,1598:23937231,23204598:-709978 +) +(1,1598:23937231,23204598:709978,414482,115847 +k1,1598:23937231,23204598:3277 +h1,1598:24643932,23204598:0,411205,112570 +) +k1,1598:25228395,23204598:250885 +k1,1598:26470840,23204598:250885 +k1,1598:29127552,23204598:250885 +k1,1598:29994475,23204598:250885 +k1,1598:31753999,23204598:250885 +k1,1599:32583029,23204598:0 +) +(1,1599:6630773,24046086:25952256,513147,134348 +k1,1598:7938051,24046086:214793 +k1,1598:11555472,24046086:214792 +k1,1598:12874547,24046086:214793 +k1,1598:13837106,24046086:214793 +k1,1598:17060656,24046086:214792 +(1,1598:17060656,24046086:0,414482,115847 +r1,1598:18474057,24046086:1413401,530329,115847 +k1,1598:17060656,24046086:-1413401 +) +(1,1598:17060656,24046086:1413401,414482,115847 +k1,1598:17060656,24046086:3277 +h1,1598:18470780,24046086:0,411205,112570 +) +k1,1598:18688850,24046086:214793 +k1,1598:21108930,24046086:214793 +k1,1598:22009884,24046086:214792 +k1,1598:22995380,24046086:214793 +k1,1598:26282501,24046086:214793 +k1,1598:27148721,24046086:214792 +k1,1598:30644246,24046086:214793 +(1,1598:30644246,24046086:0,414482,115847 +r1,1598:32409359,24046086:1765113,530329,115847 +k1,1598:30644246,24046086:-1765113 +) +(1,1598:30644246,24046086:1765113,414482,115847 +k1,1598:30644246,24046086:3277 +h1,1598:32406082,24046086:0,411205,112570 +) +k1,1598:32583029,24046086:0 +) +(1,1599:6630773,24887574:25952256,513147,134348 +g1,1598:9003176,24887574 +g1,1598:9818443,24887574 +(1,1598:9818443,24887574:0,414482,115847 +r1,1598:10528421,24887574:709978,530329,115847 +k1,1598:9818443,24887574:-709978 +) +(1,1598:9818443,24887574:709978,414482,115847 +k1,1598:9818443,24887574:3277 +h1,1598:10525144,24887574:0,411205,112570 +) +g1,1598:10727650,24887574 +g1,1598:12937524,24887574 +g1,1598:14874768,24887574 +g1,1598:17846169,24887574 +g1,1598:19613019,24887574 +g1,1598:20831333,24887574 +g1,1598:22739086,24887574 +g1,1598:25074133,24887574 +g1,1598:26292447,24887574 +g1,1598:29187172,24887574 +g1,1598:29917898,24887574 +k1,1599:32583029,24887574:119713 +g1,1599:32583029,24887574 +) +v1,1601:6630773,26078040:0,393216,0 +(1,1626:6630773,33253149:25952256,7568325,196608 +g1,1626:6630773,33253149 +g1,1626:6630773,33253149 +g1,1626:6434165,33253149 +(1,1626:6434165,33253149:0,7568325,196608 +r1,1626:32779637,33253149:26345472,7764933,196608 +k1,1626:6434165,33253149:-26345472 +) +(1,1626:6434165,33253149:26345472,7568325,196608 +[1,1626:6630773,33253149:25952256,7371717,0 +(1,1603:6630773,26285658:25952256,404226,76021 +(1,1602:6630773,26285658:0,0,0 +g1,1602:6630773,26285658 +g1,1602:6630773,26285658 +g1,1602:6303093,26285658 +(1,1602:6303093,26285658:0,0,0 +) +g1,1602:6630773,26285658 +) +k1,1603:6630773,26285658:0 +g1,1603:8527647,26285658 +g1,1603:9159939,26285658 +h1,1603:10108376,26285658:0,0,0 +k1,1603:32583028,26285658:22474652 +g1,1603:32583028,26285658 +) +(1,1607:6630773,27017372:25952256,404226,76021 +(1,1605:6630773,27017372:0,0,0 +g1,1605:6630773,27017372 +g1,1605:6630773,27017372 +g1,1605:6303093,27017372 +(1,1605:6303093,27017372:0,0,0 +) +g1,1605:6630773,27017372 +) +g1,1607:7579210,27017372 +g1,1607:8843793,27017372 +h1,1607:9476084,27017372:0,0,0 +k1,1607:32583028,27017372:23106944 +g1,1607:32583028,27017372 +) +(1,1609:6630773,28338910:25952256,404226,101187 +(1,1608:6630773,28338910:0,0,0 +g1,1608:6630773,28338910 +g1,1608:6630773,28338910 +g1,1608:6303093,28338910 +(1,1608:6303093,28338910:0,0,0 +) +g1,1608:6630773,28338910 +) +k1,1609:6630773,28338910:0 +g1,1609:8527647,28338910 +g1,1609:9159939,28338910 +h1,1609:10108376,28338910:0,0,0 +k1,1609:32583028,28338910:22474652 +g1,1609:32583028,28338910 +) +(1,1613:6630773,29070624:25952256,404226,76021 +(1,1611:6630773,29070624:0,0,0 +g1,1611:6630773,29070624 +g1,1611:6630773,29070624 +g1,1611:6303093,29070624 +(1,1611:6303093,29070624:0,0,0 +) +g1,1611:6630773,29070624 +) +g1,1613:7579210,29070624 +g1,1613:8843793,29070624 +h1,1613:9476084,29070624:0,0,0 +k1,1613:32583028,29070624:23106944 +g1,1613:32583028,29070624 +) +(1,1615:6630773,30392162:25952256,404226,82312 +(1,1614:6630773,30392162:0,0,0 +g1,1614:6630773,30392162 +g1,1614:6630773,30392162 +g1,1614:6303093,30392162 +(1,1614:6303093,30392162:0,0,0 +) +g1,1614:6630773,30392162 +) +k1,1615:6630773,30392162:0 +g1,1615:8527647,30392162 +g1,1615:9159939,30392162 +g1,1615:10424522,30392162 +h1,1615:13902125,30392162:0,0,0 +k1,1615:32583029,30392162:18680904 +g1,1615:32583029,30392162 +) +(1,1619:6630773,31123876:25952256,404226,76021 +(1,1617:6630773,31123876:0,0,0 +g1,1617:6630773,31123876 +g1,1617:6630773,31123876 +g1,1617:6303093,31123876 +(1,1617:6303093,31123876:0,0,0 +) +g1,1617:6630773,31123876 +) +g1,1619:7579210,31123876 +g1,1619:8843793,31123876 +h1,1619:10108376,31123876:0,0,0 +k1,1619:32583028,31123876:22474652 +g1,1619:32583028,31123876 +) +(1,1621:6630773,32445414:25952256,404226,101187 +(1,1620:6630773,32445414:0,0,0 +g1,1620:6630773,32445414 +g1,1620:6630773,32445414 +g1,1620:6303093,32445414 +(1,1620:6303093,32445414:0,0,0 +) +g1,1620:6630773,32445414 +) +k1,1621:6630773,32445414:0 +g1,1621:8527647,32445414 +g1,1621:9159939,32445414 +g1,1621:10424522,32445414 +h1,1621:13902125,32445414:0,0,0 +k1,1621:32583029,32445414:18680904 +g1,1621:32583029,32445414 +) +(1,1625:6630773,33177128:25952256,404226,76021 +(1,1623:6630773,33177128:0,0,0 +g1,1623:6630773,33177128 +g1,1623:6630773,33177128 +g1,1623:6303093,33177128 +(1,1623:6303093,33177128:0,0,0 +) +g1,1623:6630773,33177128 +) +g1,1625:7579210,33177128 +g1,1625:8843793,33177128 +h1,1625:10424521,33177128:0,0,0 +k1,1625:32583029,33177128:22158508 +g1,1625:32583029,33177128 +) +] +) +g1,1626:32583029,33253149 +g1,1626:6630773,33253149 +g1,1626:6630773,33253149 +g1,1626:32583029,33253149 +g1,1626:32583029,33253149 +) +h1,1626:6630773,33449757:0,0,0 +v1,1630:6630773,35339821:0,393216,0 +(1,1815:6630773,44424403:25952256,9477798,589824 +g1,1815:6630773,44424403 +(1,1815:6630773,44424403:25952256,9477798,589824 +(1,1815:6630773,45014227:25952256,10067622,0 +[1,1815:6630773,45014227:25952256,10067622,0 +(1,1815:6630773,45014227:25952256,10041408,0 +r1,1815:6656987,45014227:26214,10041408,0 +[1,1815:6656987,45014227:25899828,10041408,0 +(1,1815:6656987,44424403:25899828,8861760,0 +[1,1815:7246811,44424403:24720180,8861760,0 +(1,1635:7246811,36724528:24720180,1161885,196608 +(1,1630:7246811,36724528:0,1161885,196608 +r1,1815:8794447,36724528:1547636,1358493,196608 +k1,1630:7246811,36724528:-1547636 +) +(1,1630:7246811,36724528:1547636,1161885,196608 +) +k1,1630:9096859,36724528:302412 +k1,1630:9096859,36724528:0 +k1,1630:9399270,36724528:302411 +k1,1631:9399270,36724528:0 +k1,1631:9701682,36724528:302412 +k1,1632:9701682,36724528:0 +k1,1632:10004093,36724528:302411 +k1,1633:10004093,36724528:0 +k1,1634:11794828,36724528:302412 +k1,1634:12310127,36724528:302307 +k1,1634:13892457,36724528:302412 +k1,1634:15887009,36724528:302412 +k1,1634:19181139,36724528:302411 +k1,1634:20431202,36724528:302412 +k1,1634:22619084,36724528:302411 +k1,1634:23940581,36724528:302412 +k1,1634:25893844,36724528:302411 +k1,1634:29444220,36724528:302412 +k1,1634:30405923,36724528:302411 +k1,1635:31966991,36724528:0 +) +(1,1635:7246811,37566016:24720180,513147,126483 +k1,1634:9131388,37566016:156393 +k1,1634:11975412,37566016:156393 +k1,1634:14077568,37566016:156392 +k1,1634:14920123,37566016:156393 +k1,1634:18257634,37566016:156393 +k1,1634:19065455,37566016:156393 +k1,1634:20575166,37566016:156393 +k1,1634:23547641,37566016:156393 +k1,1634:24390195,37566016:156392 +k1,1634:26928166,37566016:156393 +k1,1634:27700597,37566016:156393 +k1,1634:31966991,37566016:0 +) +(1,1635:7246811,38407504:24720180,505283,134348 +k1,1634:8558439,38407504:207346 +k1,1634:10547708,38407504:207345 +k1,1634:13061921,38407504:207346 +k1,1634:16449729,38407504:207346 +k1,1634:17284909,38407504:207345 +k1,1634:18080768,38407504:207346 +k1,1634:21104196,38407504:207346 +k1,1634:22596048,38407504:207346 +k1,1634:23794953,38407504:207345 +k1,1634:25068570,38407504:207346 +k1,1634:27836408,38407504:207346 +k1,1634:29035313,38407504:207345 +k1,1634:31280829,38407504:207346 +k1,1634:31966991,38407504:0 +) +(1,1635:7246811,39248992:24720180,513147,134348 +k1,1634:12625648,39248992:263097 +k1,1634:14771594,39248992:263097 +k1,1634:15662526,39248992:263097 +k1,1634:18591628,39248992:263097 +k1,1634:19506153,39248992:263097 +k1,1634:21887375,39248992:263098 +k1,1634:23965164,39248992:263097 +k1,1634:24879689,39248992:263097 +k1,1634:26161871,39248992:263097 +k1,1634:28583069,39248992:263097 +k1,1634:30037611,39248992:263097 +k1,1635:31966991,39248992:0 +) +(1,1635:7246811,40090480:24720180,513147,126483 +k1,1634:8404630,40090480:223276 +k1,1634:11443988,40090480:223276 +k1,1634:12951770,40090480:223276 +k1,1634:14279328,40090480:223276 +k1,1634:15250370,40090480:223276 +k1,1634:19456924,40090480:223276 +k1,1634:20699286,40090480:223277 +k1,1634:23854643,40090480:223276 +k1,1634:24737211,40090480:223276 +k1,1634:26732581,40090480:223276 +k1,1634:27487354,40090480:223276 +k1,1634:29963102,40090480:223276 +k1,1634:30947906,40090480:223276 +k1,1634:31966991,40090480:0 +) +(1,1635:7246811,40931968:24720180,513147,134348 +k1,1634:9944690,40931968:212098 +k1,1634:10816080,40931968:212098 +k1,1634:14341679,40931968:212099 +k1,1634:16338322,40931968:212098 +k1,1634:17834926,40931968:212098 +k1,1634:19151306,40931968:212098 +k1,1634:20111170,40931968:212098 +k1,1634:22535108,40931968:212098 +k1,1634:25634068,40931968:212099 +k1,1634:26377663,40931968:212098 +k1,1634:28876968,40931968:212098 +k1,1634:31966991,40931968:0 +) +(1,1635:7246811,41773456:24720180,513147,134348 +k1,1634:8268618,41773456:260279 +k1,1634:11443282,41773456:260278 +$1,1634:11650376,41773456 +$1,1634:12012135,41773456 +k1,1634:12653178,41773456:260279 +k1,1634:16645077,41773456:260279 +k1,1634:18105319,41773456:260278 +k1,1634:20747176,41773456:260279 +k1,1634:21693617,41773456:260279 +k1,1634:22972981,41773456:260279 +k1,1634:25391360,41773456:260278 +k1,1634:27331982,41773456:260279 +k1,1634:28251553,41773456:260279 +$1,1634:28251553,41773456 +$1,1634:28613312,41773456 +k1,1634:28873590,41773456:260278 +k1,1634:30081520,41773456:260279 +k1,1634:31966991,41773456:0 +) +(1,1635:7246811,42614944:24720180,513147,126483 +k1,1634:7802390,42614944:157120 +k1,1634:8527707,42614944:157120 +k1,1634:9100206,42614944:210740 +k1,1634:9879143,42614944:210740 +$1,1634:10277602,42614944 +k1,1634:10666193,42614944:214921 +k1,1634:12077801,42614944:214921 +k1,1634:13943574,42614944:214921 +k1,1634:17406460,42614944:214922 +k1,1634:18280673,42614944:214921 +k1,1634:20267688,42614944:214921 +k1,1634:21586891,42614944:214921 +k1,1634:23130882,42614944:214921 +k1,1634:23997232,42614944:214922 +k1,1634:27880858,42614944:214921 +k1,1634:30268953,42614944:214921 +k1,1634:31966991,42614944:0 +) +(1,1635:7246811,43456432:24720180,513147,134348 +k1,1634:9602721,43456432:174216 +k1,1634:10724589,43456432:174217 +k1,1634:13619204,43456432:174216 +k1,1634:14421256,43456432:174217 +k1,1634:15614557,43456432:174216 +k1,1634:18030105,43456432:174217 +k1,1634:20865738,43456432:174216 +k1,1634:23082057,43456432:174217 +k1,1634:24275358,43456432:174216 +k1,1634:26292447,43456432:174217 +k1,1634:27125955,43456432:174216 +k1,1634:28319257,43456432:174217 +k1,1634:31966991,43456432:0 +) +(1,1635:7246811,44297920:24720180,513147,126483 +g1,1634:7977537,44297920 +g1,1634:9375420,44297920 +g1,1634:11799596,44297920 +g1,1634:12397284,44297920 +g1,1634:13779438,44297920 +g1,1634:14630095,44297920 +g1,1634:18395793,44297920 +k1,1635:31966991,44297920:10149563 +g1,1635:31966991,44297920 +) +] +) +] +r1,1815:32583029,45014227:26214,10041408,0 +) +] +) +) +g1,1815:32583029,44424403 +) +] +(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 +) +] +h1,1815:4262630,4025873:0,0,0 +] +!22062 }44 !11 {45 -[1,1809:4262630,47279633:28320399,43253760,0 -(1,1809:4262630,4025873:0,0,0 -[1,1809:-473657,4025873:25952256,0,0 -(1,1809:-473657,-710414:25952256,0,0 -h1,1809:-473657,-710414:0,0,0 -(1,1809:-473657,-710414:0,0,0 -(1,1809:-473657,-710414:0,0,0 -g1,1809:-473657,-710414 -(1,1809:-473657,-710414:65781,0,65781 -g1,1809:-407876,-710414 -[1,1809:-407876,-644633:0,0,0 +[1,1815:4262630,47279633:28320399,43253760,0 +(1,1815:4262630,4025873:0,0,0 +[1,1815:-473657,4025873:25952256,0,0 +(1,1815:-473657,-710414:25952256,0,0 +h1,1815:-473657,-710414:0,0,0 +(1,1815:-473657,-710414:0,0,0 +(1,1815:-473657,-710414:0,0,0 +g1,1815:-473657,-710414 +(1,1815:-473657,-710414:65781,0,65781 +g1,1815:-407876,-710414 +[1,1815:-407876,-644633:0,0,0 ] ) -k1,1809:-473657,-710414:-65781 +k1,1815:-473657,-710414:-65781 ) ) -k1,1809:25478599,-710414:25952256 -g1,1809:25478599,-710414 +k1,1815:25478599,-710414:25952256 +g1,1815:25478599,-710414 ) ] ) -[1,1809:6630773,47279633:25952256,43253760,0 -[1,1809:6630773,4812305:25952256,786432,0 -(1,1809:6630773,4812305:25952256,505283,134348 -(1,1809:6630773,4812305:25952256,505283,134348 -g1,1809:3078558,4812305 -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,2439708:0,1703936,0 -k1,1809:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1809: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,134348 +(1,1815:6630773,4812305:25952256,505283,134348 +g1,1815:3078558,4812305 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,2439708:0,1703936,0 +k1,1815:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1815:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1809:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1815:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,2439708:0,1703936,0 -g1,1809:29030814,2439708 -g1,1809:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1809: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,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1815:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1809:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1815:37855564,2439708:1179648,16384,0 ) ) -k1,1809:3078556,2439708:-34777008 +k1,1815:3078556,2439708:-34777008 ) ] -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,49800853:0,16384,2228224 -k1,1809:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1809: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,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1815:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1809:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1815:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1809:3078558,4812305:0,0,0 -(1,1809:3078558,49800853:0,16384,2228224 -g1,1809:29030814,49800853 -g1,1809:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1809:36151628,51504789:16384,1179648,0 +[1,1815:3078558,4812305:0,0,0 +(1,1815:3078558,49800853:0,16384,2228224 +g1,1815:29030814,49800853 +g1,1815:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1815:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1809:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1815:37855564,49800853:1179648,16384,0 ) ) -k1,1809:3078556,49800853:-34777008 +k1,1815:3078556,49800853:-34777008 ) ] -g1,1809:6630773,4812305 -k1,1809:19562994,4812305:12135303 -g1,1809:20949735,4812305 -g1,1809:21598541,4812305 -g1,1809:24912696,4812305 -g1,1809:27600327,4812305 -g1,1809:29010006,4812305 +g1,1815:6630773,4812305 +k1,1815:19515153,4812305:12087462 +g1,1815:20901894,4812305 +g1,1815:21550700,4812305 +g1,1815:24864855,4812305 +g1,1815:27600327,4812305 +g1,1815:29010006,4812305 ) ) ] -[1,1809:6630773,45706769:25952256,40108032,0 -(1,1809:6630773,45706769:25952256,40108032,0 -(1,1809:6630773,45706769:0,0,0 -g1,1809:6630773,45706769 +[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 ) -[1,1809:6630773,45706769:25952256,40108032,0 -v1,1809:6630773,6254097:0,393216,0 -(1,1809:6630773,45116945:25952256,39256064,589824 -g1,1809:6630773,45116945 -(1,1809:6630773,45116945:25952256,39256064,589824 -(1,1809:6630773,45706769:25952256,39845888,0 -[1,1809:6630773,45706769:25952256,39845888,0 -(1,1809:6630773,45706769:25952256,39845888,0 -r1,1809:6656987,45706769:26214,39845888,0 -[1,1809:6656987,45706769:25899828,39845888,0 -(1,1809:6656987,45116945:25899828,38666240,0 -[1,1809:7246811,45116945:24720180,38666240,0 -v1,1631:7246811,6843921:0,393216,0 -(1,1644:7246811,9896797:24720180,3446092,196608 -g1,1644:7246811,9896797 -g1,1644:7246811,9896797 -g1,1644:7050203,9896797 -(1,1644:7050203,9896797:0,3446092,196608 -r1,1809:32163599,9896797:25113396,3642700,196608 -k1,1644:7050203,9896797:-25113396 -) -(1,1644:7050203,9896797:25113396,3446092,196608 -[1,1644:7246811,9896797:24720180,3249484,0 -(1,1633:7246811,7035810:24720180,388497,9436 -(1,1632:7246811,7035810:0,0,0 -g1,1632:7246811,7035810 -g1,1632:7246811,7035810 -g1,1632:6919131,7035810 -(1,1632:6919131,7035810:0,0,0 -) -g1,1632:7246811,7035810 -) -g1,1633:7879103,7035810 -g1,1633:8511395,7035810 -k1,1633:8511395,7035810:0 -h1,1633:10092123,7035810:0,0,0 -k1,1633:31966991,7035810:21874868 -g1,1633:31966991,7035810 -) -(1,1637:7246811,7767524:24720180,404226,76021 -(1,1635:7246811,7767524:0,0,0 -g1,1635:7246811,7767524 -g1,1635:7246811,7767524 -g1,1635:6919131,7767524 -(1,1635:6919131,7767524:0,0,0 -) -g1,1635:7246811,7767524 -) -g1,1637:8195248,7767524 -g1,1637:9459831,7767524 -k1,1637:9459831,7767524:0 -h1,1637:11356705,7767524:0,0,0 -k1,1637:31966991,7767524:20610286 -g1,1637:31966991,7767524 -) -(1,1639:7246811,9089062:24720180,388497,9436 -(1,1638:7246811,9089062:0,0,0 -g1,1638:7246811,9089062 -g1,1638:7246811,9089062 -g1,1638:6919131,9089062 -(1,1638:6919131,9089062:0,0,0 -) -g1,1638:7246811,9089062 -) -g1,1639:7879103,9089062 -g1,1639:8511395,9089062 -k1,1639:8511395,9089062:0 -h1,1639:10092123,9089062:0,0,0 -k1,1639:31966991,9089062:21874868 -g1,1639:31966991,9089062 -) -(1,1643:7246811,9820776:24720180,404226,76021 -(1,1641:7246811,9820776:0,0,0 -g1,1641:7246811,9820776 -g1,1641:7246811,9820776 -g1,1641:6919131,9820776 -(1,1641:6919131,9820776:0,0,0 -) -g1,1641:7246811,9820776 -) -g1,1643:8195248,9820776 -g1,1643:9459831,9820776 -h1,1643:9775977,9820776:0,0,0 -k1,1643:31966991,9820776:22191014 -g1,1643:31966991,9820776 -) -] -) -g1,1644:31966991,9896797 -g1,1644:7246811,9896797 -g1,1644:7246811,9896797 -g1,1644:31966991,9896797 -g1,1644:31966991,9896797 -) -h1,1644:7246811,10093405:0,0,0 -(1,1648:7246811,11416629:24720180,513147,126483 -h1,1647:7246811,11416629:983040,0,0 -k1,1647:9604040,11416629:177502 -k1,1647:12855180,11416629:177501 -k1,1647:13691974,11416629:177502 -k1,1647:15641570,11416629:177502 -k1,1647:17104887,11416629:177501 -k1,1647:19391993,11416629:177502 -k1,1647:21091241,11416629:177502 -k1,1647:21928035,11416629:177502 -k1,1647:24825935,11416629:177501 -k1,1647:26888908,11416629:177502 -k1,1647:27597907,11416629:177502 -k1,1647:29425605,11416629:177501 -k1,1647:31315563,11416629:177502 -k1,1647:31966991,11416629:0 -) -(1,1648:7246811,12258117:24720180,505283,126483 -g1,1647:9288912,12258117 -g1,1647:10104179,12258117 -g1,1647:12240652,12258117 -g1,1647:13833832,12258117 -g1,1647:17242359,12258117 -k1,1648:31966991,12258117:10137767 -g1,1648:31966991,12258117 -) -v1,1650:7246811,13406031:0,393216,0 -(1,1669:7246811,18512159:24720180,5499344,196608 -g1,1669:7246811,18512159 -g1,1669:7246811,18512159 -g1,1669:7050203,18512159 -(1,1669:7050203,18512159:0,5499344,196608 -r1,1809:32163599,18512159:25113396,5695952,196608 -k1,1669:7050203,18512159:-25113396 -) -(1,1669:7050203,18512159:25113396,5499344,196608 -[1,1669:7246811,18512159:24720180,5302736,0 -(1,1652:7246811,13597920:24720180,388497,9436 -(1,1651:7246811,13597920:0,0,0 -g1,1651:7246811,13597920 -g1,1651:7246811,13597920 -g1,1651:6919131,13597920 -(1,1651:6919131,13597920:0,0,0 -) -g1,1651:7246811,13597920 -) -g1,1652:8827540,13597920 -g1,1652:9775977,13597920 -g1,1652:10408269,13597920 -g1,1652:11040561,13597920 -h1,1652:12305144,13597920:0,0,0 -k1,1652:31966992,13597920:19661848 -g1,1652:31966992,13597920 -) -(1,1656:7246811,14329634:24720180,404226,76021 -(1,1654:7246811,14329634:0,0,0 -g1,1654:7246811,14329634 -g1,1654:7246811,14329634 -g1,1654:6919131,14329634 -(1,1654:6919131,14329634:0,0,0 -) -g1,1654:7246811,14329634 -) -g1,1656:8195248,14329634 -g1,1656:9459831,14329634 -h1,1656:10724414,14329634:0,0,0 -k1,1656:31966990,14329634:21242576 -g1,1656:31966990,14329634 -) -(1,1658:7246811,15651172:24720180,388497,9436 -(1,1657:7246811,15651172:0,0,0 -g1,1657:7246811,15651172 -g1,1657:7246811,15651172 -g1,1657:6919131,15651172 -(1,1657:6919131,15651172:0,0,0 -) -g1,1657:7246811,15651172 -) -g1,1658:7879103,15651172 -g1,1658:8827540,15651172 -g1,1658:9459832,15651172 -g1,1658:10092124,15651172 -k1,1658:10092124,15651172:0 -h1,1658:11672852,15651172:0,0,0 -k1,1658:31966992,15651172:20294140 -g1,1658:31966992,15651172 -) -(1,1662:7246811,16382886:24720180,404226,76021 -(1,1660:7246811,16382886:0,0,0 -g1,1660:7246811,16382886 -g1,1660:7246811,16382886 -g1,1660:6919131,16382886 -(1,1660:6919131,16382886:0,0,0 -) -g1,1660:7246811,16382886 -) -g1,1662:8195248,16382886 -g1,1662:9459831,16382886 -h1,1662:10724414,16382886:0,0,0 -k1,1662:31966990,16382886:21242576 -g1,1662:31966990,16382886 -) -(1,1664:7246811,17704424:24720180,388497,9436 -(1,1663:7246811,17704424:0,0,0 -g1,1663:7246811,17704424 -g1,1663:7246811,17704424 -g1,1663:6919131,17704424 -(1,1663:6919131,17704424:0,0,0 -) -g1,1663:7246811,17704424 -) -g1,1664:7879103,17704424 -g1,1664:8827540,17704424 -k1,1664:8827540,17704424:0 -h1,1664:10408268,17704424:0,0,0 -k1,1664:31966992,17704424:21558724 -g1,1664:31966992,17704424 -) -(1,1668:7246811,18436138:24720180,404226,76021 -(1,1666:7246811,18436138:0,0,0 -g1,1666:7246811,18436138 -g1,1666:7246811,18436138 -g1,1666:6919131,18436138 -(1,1666:6919131,18436138:0,0,0 -) -g1,1666:7246811,18436138 -) -g1,1668:8195248,18436138 -g1,1668:9459831,18436138 -h1,1668:11040559,18436138:0,0,0 -k1,1668:31966991,18436138:20926432 -g1,1668:31966991,18436138 -) -] -) -g1,1669:31966991,18512159 -g1,1669:7246811,18512159 -g1,1669:7246811,18512159 -g1,1669:31966991,18512159 -g1,1669:31966991,18512159 -) -h1,1669:7246811,18708767:0,0,0 -(1,1673:7246811,20031991:24720180,513147,126483 -h1,1672:7246811,20031991:983040,0,0 -k1,1672:9253032,20031991:205292 -k1,1672:9873161,20031991:205286 -k1,1672:11182735,20031991:205292 -k1,1672:12506071,20031991:205292 -k1,1672:13520733,20031991:205292 -k1,1672:16488368,20031991:205292 -k1,1672:18410048,20031991:205292 -k1,1672:19274632,20031991:205292 -k1,1672:22556184,20031991:205292 -k1,1672:25927520,20031991:205292 -k1,1672:27151897,20031991:205292 -k1,1672:29279360,20031991:205292 -k1,1672:31966991,20031991:0 -) -(1,1673:7246811,20873479:24720180,513147,134348 -k1,1672:9244752,20873479:183249 -k1,1672:10375651,20873479:183248 -k1,1672:12819237,20873479:183249 -k1,1672:15818568,20873479:183249 -k1,1672:16617854,20873479:183248 -k1,1672:19432374,20873479:183249 -k1,1672:20952557,20873479:183249 -k1,1672:22498300,20873479:183249 -k1,1672:26043545,20873479:183248 -k1,1672:27036164,20873479:183249 -k1,1672:28238498,20873479:183249 -k1,1672:29807832,20873479:183248 -k1,1672:30650373,20873479:183249 -k1,1673:31966991,20873479:0 -) -(1,1673:7246811,21714967:24720180,505283,134348 -k1,1672:9463184,21714967:191966 -k1,1672:10846596,21714967:191967 -k1,1672:12505258,21714967:191966 -k1,1672:15508064,21714967:191967 -k1,1672:17213256,21714967:191966 -k1,1672:18056651,21714967:191967 -k1,1672:19890949,21714967:191966 -k1,1672:21102000,21714967:191966 -k1,1672:21708803,21714967:191960 -k1,1672:24642795,21714967:191966 -k1,1672:28382226,21714967:191967 -k1,1672:31508894,21714967:191966 -k1,1672:31966991,21714967:0 -) -(1,1673:7246811,22556455:24720180,513147,126483 -k1,1672:7935425,22556455:157117 -k1,1672:10722502,22556455:157117 -k1,1672:11531047,22556455:157117 -k1,1672:13711916,22556455:157117 -k1,1672:15565760,22556455:157117 -k1,1672:17733522,22556455:157117 -k1,1672:18503401,22556455:157117 -k1,1672:19778562,22556455:157117 -k1,1672:21361087,22556455:157117 -k1,1672:23085825,22556455:157117 -k1,1672:24262027,22556455:157117 -k1,1672:26930484,22556455:157117 -(1,1672:26930484,22556455:0,452978,115847 -r1,1809:29750733,22556455:2820249,568825,115847 -k1,1672:26930484,22556455:-2820249 -) -(1,1672:26930484,22556455:2820249,452978,115847 -k1,1672:26930484,22556455:3277 -h1,1672:29747456,22556455:0,411205,112570 -) -k1,1672:30081520,22556455:157117 -k1,1672:31966991,22556455:0 -) -(1,1673:7246811,23397943:24720180,513147,134348 -k1,1672:7994256,23397943:215948 -k1,1672:9532066,23397943:215949 -k1,1672:10407306,23397943:215948 -k1,1672:11642339,23397943:215948 -k1,1672:12273114,23397943:215932 -k1,1672:15505029,23397943:215948 -k1,1672:17682470,23397943:215948 -k1,1672:18923402,23397943:215949 -k1,1672:20158435,23397943:215948 -k1,1672:21762436,23397943:215948 -k1,1672:23476538,23397943:215949 -k1,1672:24640137,23397943:215948 -(1,1672:24640137,23397943:0,452978,115847 -r1,1809:27460386,23397943:2820249,568825,115847 -k1,1672:24640137,23397943:-2820249 -) -(1,1672:24640137,23397943:2820249,452978,115847 -k1,1672:24640137,23397943:3277 -h1,1672:27457109,23397943:0,411205,112570 -) -k1,1672:27676334,23397943:215948 -k1,1672:28839934,23397943:215949 -k1,1672:29411742,23397943:215948 -k1,1672:31966991,23397943:0 -) -(1,1673:7246811,24239431:24720180,513147,126483 -g1,1672:8637485,24239431 -g1,1672:12130553,24239431 -g1,1672:15939505,24239431 -g1,1672:16798026,24239431 -g1,1672:18016340,24239431 -g1,1672:20999538,24239431 -g1,1672:24460494,24239431 -g1,1672:24460494,24239431 -g1,1672:24659723,24239431 -g1,1672:24659723,24239431 -g1,1672:24858952,24239431 -g1,1672:24858952,24239431 -k1,1673:31966991,24239431:7108039 -g1,1673:31966991,24239431 -) -v1,1675:7246811,25387346:0,393216,0 -(1,1700:7246811,32568747:24720180,7574617,196608 -g1,1700:7246811,32568747 -g1,1700:7246811,32568747 -g1,1700:7050203,32568747 -(1,1700:7050203,32568747:0,7574617,196608 -r1,1809:32163599,32568747:25113396,7771225,196608 -k1,1700:7050203,32568747:-25113396 -) -(1,1700:7050203,32568747:25113396,7574617,196608 -[1,1700:7246811,32568747:24720180,7378009,0 -(1,1677:7246811,25601256:24720180,410518,101187 -(1,1676:7246811,25601256:0,0,0 -g1,1676:7246811,25601256 -g1,1676:7246811,25601256 -g1,1676:6919131,25601256 -(1,1676:6919131,25601256:0,0,0 -) -g1,1676:7246811,25601256 -) -h1,1677:13253579,25601256:0,0,0 -k1,1677:31966991,25601256:18713412 -g1,1677:31966991,25601256 -) -(1,1681:7246811,26332970:24720180,404226,76021 -(1,1679:7246811,26332970:0,0,0 -g1,1679:7246811,26332970 -g1,1679:7246811,26332970 -g1,1679:6919131,26332970 -(1,1679:6919131,26332970:0,0,0 -) -g1,1679:7246811,26332970 -) -g1,1681:8195248,26332970 -g1,1681:9459831,26332970 -k1,1681:9459831,26332970:0 -h1,1681:13253579,26332970:0,0,0 -k1,1681:31966991,26332970:18713412 -g1,1681:31966991,26332970 -) -(1,1683:7246811,27654508:24720180,410518,107478 -(1,1682:7246811,27654508:0,0,0 -g1,1682:7246811,27654508 -g1,1682:7246811,27654508 -g1,1682:6919131,27654508 -(1,1682:6919131,27654508:0,0,0 -) -g1,1682:7246811,27654508 -) -h1,1683:14518162,27654508:0,0,0 -k1,1683:31966990,27654508:17448828 -g1,1683:31966990,27654508 -) -(1,1687:7246811,28386222:24720180,404226,76021 -(1,1685:7246811,28386222:0,0,0 -g1,1685:7246811,28386222 -g1,1685:7246811,28386222 -g1,1685:6919131,28386222 -(1,1685:6919131,28386222:0,0,0 -) -g1,1685:7246811,28386222 -) -g1,1687:8195248,28386222 -g1,1687:9459831,28386222 -k1,1687:9459831,28386222:0 -h1,1687:13253579,28386222:0,0,0 -k1,1687:31966991,28386222:18713412 -g1,1687:31966991,28386222 -) -(1,1689:7246811,29707760:24720180,410518,31456 -(1,1688:7246811,29707760:0,0,0 -g1,1688:7246811,29707760 -g1,1688:7246811,29707760 -g1,1688:6919131,29707760 -(1,1688:6919131,29707760:0,0,0 -) -g1,1688:7246811,29707760 -) -h1,1689:13253579,29707760:0,0,0 -k1,1689:31966991,29707760:18713412 -g1,1689:31966991,29707760 -) -(1,1693:7246811,30439474:24720180,404226,76021 -(1,1691:7246811,30439474:0,0,0 -g1,1691:7246811,30439474 -g1,1691:7246811,30439474 -g1,1691:6919131,30439474 -(1,1691:6919131,30439474:0,0,0 -) -g1,1691:7246811,30439474 -) -g1,1693:8195248,30439474 -g1,1693:9459831,30439474 -h1,1693:10724414,30439474:0,0,0 -k1,1693:31966990,30439474:21242576 -g1,1693:31966990,30439474 -) -(1,1695:7246811,31761012:24720180,410518,31456 -(1,1694:7246811,31761012:0,0,0 -g1,1694:7246811,31761012 -g1,1694:7246811,31761012 -g1,1694:6919131,31761012 -(1,1694:6919131,31761012:0,0,0 -) -g1,1694:7246811,31761012 -) -h1,1695:13253579,31761012:0,0,0 -k1,1695:31966991,31761012:18713412 -g1,1695:31966991,31761012 -) -(1,1699:7246811,32492726:24720180,404226,76021 -(1,1697:7246811,32492726:0,0,0 -g1,1697:7246811,32492726 -g1,1697:7246811,32492726 -g1,1697:6919131,32492726 -(1,1697:6919131,32492726:0,0,0 -) -g1,1697:7246811,32492726 -) -g1,1699:8195248,32492726 -g1,1699:9459831,32492726 -k1,1699:9459831,32492726:0 -h1,1699:11040559,32492726:0,0,0 -k1,1699:31966991,32492726:20926432 -g1,1699:31966991,32492726 -) -] -) -g1,1700:31966991,32568747 -g1,1700:7246811,32568747 -g1,1700:7246811,32568747 -g1,1700:31966991,32568747 -g1,1700:31966991,32568747 -) -h1,1700:7246811,32765355:0,0,0 -(1,1704:7246811,34088579:24720180,513147,126483 -h1,1703:7246811,34088579:983040,0,0 -k1,1703:9616592,34088579:190054 -k1,1703:10954838,34088579:190055 -k1,1703:12317331,34088579:190054 -k1,1703:14518031,34088579:190055 -k1,1703:16244249,34088579:190054 -k1,1703:17085732,34088579:190055 -k1,1703:18294871,34088579:190054 -k1,1703:21776799,34088579:190055 -k1,1703:22626145,34088579:190054 -k1,1703:23786788,34088579:190055 -k1,1703:25928504,34088579:190054 -k1,1703:27561006,34088579:190055 -k1,1703:28770145,34088579:190054 -k1,1703:31966991,34088579:0 -) -(1,1704:7246811,34930067:24720180,513147,134348 -k1,1703:8630225,34930067:191969 -k1,1703:11914183,34930067:191969 -k1,1703:13374929,34930067:191969 -k1,1703:14226190,34930067:191969 -k1,1703:17234241,34930067:191969 -k1,1703:18710716,34930067:191969 -k1,1703:20006968,34930067:191970 -k1,1703:20946703,34930067:191969 -k1,1703:23718169,34930067:191969 -k1,1703:24596300,34930067:191969 -k1,1703:27078097,34930067:191969 -k1,1703:27929358,34930067:191969 -k1,1703:29676496,34930067:191969 -(1,1703:29676496,34930067:0,452978,115847 -r1,1809:31793321,34930067:2116825,568825,115847 -k1,1703:29676496,34930067:-2116825 -) -(1,1703:29676496,34930067:2116825,452978,115847 -k1,1703:29676496,34930067:3277 -h1,1703:31790044,34930067:0,411205,112570 -) -k1,1703:31966991,34930067:0 -) -(1,1704:7246811,35771555:24720180,505283,115847 -k1,1703:9592915,35771555:234534 -k1,1703:12193298,35771555:234533 -k1,1703:14124559,35771555:234534 -k1,1703:16173785,35771555:234534 -k1,1703:17399878,35771555:234533 -k1,1703:19672582,35771555:234534 -k1,1703:20593278,35771555:234534 -(1,1703:20593278,35771555:0,459977,115847 -r1,1809:22006679,35771555:1413401,575824,115847 -k1,1703:20593278,35771555:-1413401 -) -(1,1703:20593278,35771555:1413401,459977,115847 -k1,1703:20593278,35771555:3277 -h1,1703:22003402,35771555:0,411205,112570 -) -k1,1703:22241213,35771555:234534 -k1,1703:23158631,35771555:234533 -(1,1703:23158631,35771555:0,459977,115847 -r1,1809:24220320,35771555:1061689,575824,115847 -k1,1703:23158631,35771555:-1061689 -) -(1,1703:23158631,35771555:1061689,459977,115847 -k1,1703:23158631,35771555:3277 -h1,1703:24217043,35771555:0,411205,112570 -) -k1,1703:24454854,35771555:234534 -k1,1703:25880833,35771555:234534 -k1,1703:27770150,35771555:234533 -k1,1703:31280829,35771555:234534 -k1,1703:31966991,35771555:0 -) -(1,1704:7246811,36613043:24720180,513147,134348 -g1,1703:9712930,36613043 -g1,1703:11922804,36613043 -g1,1703:15238925,36613043 -g1,1703:16457239,36613043 -g1,1703:20979878,36613043 -k1,1704:31966991,36613043:9227471 -g1,1704:31966991,36613043 -) -v1,1706:7246811,37760957:0,393216,0 -(1,1731:7246811,44920337:24720180,7552596,196608 -g1,1731:7246811,44920337 -g1,1731:7246811,44920337 -g1,1731:7050203,44920337 -(1,1731:7050203,44920337:0,7552596,196608 -r1,1809:32163599,44920337:25113396,7749204,196608 -k1,1731:7050203,44920337:-25113396 -) -(1,1731:7050203,44920337:25113396,7552596,196608 -[1,1731:7246811,44920337:24720180,7355988,0 -(1,1708:7246811,37952846:24720180,388497,9436 -(1,1707:7246811,37952846:0,0,0 -g1,1707:7246811,37952846 -g1,1707:7246811,37952846 -g1,1707:6919131,37952846 -(1,1707:6919131,37952846:0,0,0 -) -g1,1707:7246811,37952846 -) -h1,1708:9143685,37952846:0,0,0 -k1,1708:31966991,37952846:22823306 -g1,1708:31966991,37952846 -) -(1,1712:7246811,38684560:24720180,410518,76021 -(1,1710:7246811,38684560:0,0,0 -g1,1710:7246811,38684560 -g1,1710:7246811,38684560 -g1,1710:6919131,38684560 -(1,1710:6919131,38684560:0,0,0 -) -g1,1710:7246811,38684560 -) -g1,1712:8195248,38684560 -g1,1712:9459831,38684560 -h1,1712:10408268,38684560:0,0,0 -k1,1712:31966992,38684560:21558724 -g1,1712:31966992,38684560 -) -(1,1714:7246811,40006098:24720180,388497,9436 -(1,1713:7246811,40006098:0,0,0 -g1,1713:7246811,40006098 -g1,1713:7246811,40006098 -g1,1713:6919131,40006098 -(1,1713:6919131,40006098:0,0,0 -) -g1,1713:7246811,40006098 -) -k1,1714:7246811,40006098:0 -h1,1714:9459830,40006098:0,0,0 -k1,1714:31966990,40006098:22507160 -g1,1714:31966990,40006098 -) -(1,1718:7246811,40737812:24720180,404226,76021 -(1,1716:7246811,40737812:0,0,0 -g1,1716:7246811,40737812 -g1,1716:7246811,40737812 -g1,1716:6919131,40737812 -(1,1716:6919131,40737812:0,0,0 -) -g1,1716:7246811,40737812 -) -g1,1718:8195248,40737812 -g1,1718:9459831,40737812 -h1,1718:9775977,40737812:0,0,0 -k1,1718:31966991,40737812:22191014 -g1,1718:31966991,40737812 +[1,1815:6630773,45706769:25952256,40108032,0 +v1,1815:6630773,6254097:0,393216,0 +(1,1815:6630773,45116945:25952256,39256064,589824 +g1,1815:6630773,45116945 +(1,1815:6630773,45116945:25952256,39256064,589824 +(1,1815:6630773,45706769:25952256,39845888,0 +[1,1815:6630773,45706769:25952256,39845888,0 +(1,1815:6630773,45706769:25952256,39845888,0 +r1,1815:6656987,45706769:26214,39845888,0 +[1,1815:6656987,45706769:25899828,39845888,0 +(1,1815:6656987,45116945:25899828,38666240,0 +[1,1815:7246811,45116945:24720180,38666240,0 +v1,1637:7246811,6843921:0,393216,0 +(1,1650:7246811,9896797:24720180,3446092,196608 +g1,1650:7246811,9896797 +g1,1650:7246811,9896797 +g1,1650:7050203,9896797 +(1,1650:7050203,9896797:0,3446092,196608 +r1,1815:32163599,9896797:25113396,3642700,196608 +k1,1650:7050203,9896797:-25113396 +) +(1,1650:7050203,9896797:25113396,3446092,196608 +[1,1650:7246811,9896797:24720180,3249484,0 +(1,1639:7246811,7035810:24720180,388497,9436 +(1,1638:7246811,7035810:0,0,0 +g1,1638:7246811,7035810 +g1,1638:7246811,7035810 +g1,1638:6919131,7035810 +(1,1638:6919131,7035810:0,0,0 +) +g1,1638:7246811,7035810 +) +g1,1639:7879103,7035810 +g1,1639:8511395,7035810 +k1,1639:8511395,7035810:0 +h1,1639:10092123,7035810:0,0,0 +k1,1639:31966991,7035810:21874868 +g1,1639:31966991,7035810 +) +(1,1643:7246811,7767524:24720180,404226,76021 +(1,1641:7246811,7767524:0,0,0 +g1,1641:7246811,7767524 +g1,1641:7246811,7767524 +g1,1641:6919131,7767524 +(1,1641:6919131,7767524:0,0,0 +) +g1,1641:7246811,7767524 +) +g1,1643:8195248,7767524 +g1,1643:9459831,7767524 +k1,1643:9459831,7767524:0 +h1,1643:11356705,7767524:0,0,0 +k1,1643:31966991,7767524:20610286 +g1,1643:31966991,7767524 +) +(1,1645:7246811,9089062:24720180,388497,9436 +(1,1644:7246811,9089062:0,0,0 +g1,1644:7246811,9089062 +g1,1644:7246811,9089062 +g1,1644:6919131,9089062 +(1,1644:6919131,9089062:0,0,0 +) +g1,1644:7246811,9089062 +) +g1,1645:7879103,9089062 +g1,1645:8511395,9089062 +k1,1645:8511395,9089062:0 +h1,1645:10092123,9089062:0,0,0 +k1,1645:31966991,9089062:21874868 +g1,1645:31966991,9089062 +) +(1,1649:7246811,9820776:24720180,404226,76021 +(1,1647:7246811,9820776:0,0,0 +g1,1647:7246811,9820776 +g1,1647:7246811,9820776 +g1,1647:6919131,9820776 +(1,1647:6919131,9820776:0,0,0 +) +g1,1647:7246811,9820776 +) +g1,1649:8195248,9820776 +g1,1649:9459831,9820776 +h1,1649:9775977,9820776:0,0,0 +k1,1649:31966991,9820776:22191014 +g1,1649:31966991,9820776 +) +] +) +g1,1650:31966991,9896797 +g1,1650:7246811,9896797 +g1,1650:7246811,9896797 +g1,1650:31966991,9896797 +g1,1650:31966991,9896797 +) +h1,1650:7246811,10093405:0,0,0 +(1,1654:7246811,11416629:24720180,513147,126483 +h1,1653:7246811,11416629:983040,0,0 +k1,1653:9604040,11416629:177502 +k1,1653:12855180,11416629:177501 +k1,1653:13691974,11416629:177502 +k1,1653:15641570,11416629:177502 +k1,1653:17104887,11416629:177501 +k1,1653:19391993,11416629:177502 +k1,1653:21091241,11416629:177502 +k1,1653:21928035,11416629:177502 +k1,1653:24825935,11416629:177501 +k1,1653:26888908,11416629:177502 +k1,1653:27597907,11416629:177502 +k1,1653:29425605,11416629:177501 +k1,1653:31315563,11416629:177502 +k1,1653:31966991,11416629:0 +) +(1,1654:7246811,12258117:24720180,505283,126483 +g1,1653:9288912,12258117 +g1,1653:10104179,12258117 +g1,1653:12240652,12258117 +g1,1653:13833832,12258117 +g1,1653:17242359,12258117 +k1,1654:31966991,12258117:10137767 +g1,1654:31966991,12258117 +) +v1,1656:7246811,13406031:0,393216,0 +(1,1675:7246811,18512159:24720180,5499344,196608 +g1,1675:7246811,18512159 +g1,1675:7246811,18512159 +g1,1675:7050203,18512159 +(1,1675:7050203,18512159:0,5499344,196608 +r1,1815:32163599,18512159:25113396,5695952,196608 +k1,1675:7050203,18512159:-25113396 +) +(1,1675:7050203,18512159:25113396,5499344,196608 +[1,1675:7246811,18512159:24720180,5302736,0 +(1,1658:7246811,13597920:24720180,388497,9436 +(1,1657:7246811,13597920:0,0,0 +g1,1657:7246811,13597920 +g1,1657:7246811,13597920 +g1,1657:6919131,13597920 +(1,1657:6919131,13597920:0,0,0 +) +g1,1657:7246811,13597920 +) +g1,1658:8827540,13597920 +g1,1658:9775977,13597920 +g1,1658:10408269,13597920 +g1,1658:11040561,13597920 +h1,1658:12305144,13597920:0,0,0 +k1,1658:31966992,13597920:19661848 +g1,1658:31966992,13597920 +) +(1,1662:7246811,14329634:24720180,404226,76021 +(1,1660:7246811,14329634:0,0,0 +g1,1660:7246811,14329634 +g1,1660:7246811,14329634 +g1,1660:6919131,14329634 +(1,1660:6919131,14329634:0,0,0 +) +g1,1660:7246811,14329634 +) +g1,1662:8195248,14329634 +g1,1662:9459831,14329634 +h1,1662:10724414,14329634:0,0,0 +k1,1662:31966990,14329634:21242576 +g1,1662:31966990,14329634 +) +(1,1664:7246811,15651172:24720180,388497,9436 +(1,1663:7246811,15651172:0,0,0 +g1,1663:7246811,15651172 +g1,1663:7246811,15651172 +g1,1663:6919131,15651172 +(1,1663:6919131,15651172:0,0,0 +) +g1,1663:7246811,15651172 +) +g1,1664:7879103,15651172 +g1,1664:8827540,15651172 +g1,1664:9459832,15651172 +g1,1664:10092124,15651172 +k1,1664:10092124,15651172:0 +h1,1664:11672852,15651172:0,0,0 +k1,1664:31966992,15651172:20294140 +g1,1664:31966992,15651172 +) +(1,1668:7246811,16382886:24720180,404226,76021 +(1,1666:7246811,16382886:0,0,0 +g1,1666:7246811,16382886 +g1,1666:7246811,16382886 +g1,1666:6919131,16382886 +(1,1666:6919131,16382886:0,0,0 +) +g1,1666:7246811,16382886 +) +g1,1668:8195248,16382886 +g1,1668:9459831,16382886 +h1,1668:10724414,16382886:0,0,0 +k1,1668:31966990,16382886:21242576 +g1,1668:31966990,16382886 +) +(1,1670:7246811,17704424:24720180,388497,9436 +(1,1669:7246811,17704424:0,0,0 +g1,1669:7246811,17704424 +g1,1669:7246811,17704424 +g1,1669:6919131,17704424 +(1,1669:6919131,17704424:0,0,0 +) +g1,1669:7246811,17704424 +) +g1,1670:7879103,17704424 +g1,1670:8827540,17704424 +k1,1670:8827540,17704424:0 +h1,1670:10408268,17704424:0,0,0 +k1,1670:31966992,17704424:21558724 +g1,1670:31966992,17704424 +) +(1,1674:7246811,18436138:24720180,404226,76021 +(1,1672:7246811,18436138:0,0,0 +g1,1672:7246811,18436138 +g1,1672:7246811,18436138 +g1,1672:6919131,18436138 +(1,1672:6919131,18436138:0,0,0 +) +g1,1672:7246811,18436138 +) +g1,1674:8195248,18436138 +g1,1674:9459831,18436138 +h1,1674:11040559,18436138:0,0,0 +k1,1674:31966991,18436138:20926432 +g1,1674:31966991,18436138 +) +] +) +g1,1675:31966991,18512159 +g1,1675:7246811,18512159 +g1,1675:7246811,18512159 +g1,1675:31966991,18512159 +g1,1675:31966991,18512159 +) +h1,1675:7246811,18708767:0,0,0 +(1,1679:7246811,20031991:24720180,513147,126483 +h1,1678:7246811,20031991:983040,0,0 +k1,1678:9253032,20031991:205292 +k1,1678:9873161,20031991:205286 +k1,1678:11182735,20031991:205292 +k1,1678:12506071,20031991:205292 +k1,1678:13520733,20031991:205292 +k1,1678:16488368,20031991:205292 +k1,1678:18410048,20031991:205292 +k1,1678:19274632,20031991:205292 +k1,1678:22556184,20031991:205292 +k1,1678:25927520,20031991:205292 +k1,1678:27151897,20031991:205292 +k1,1678:29279360,20031991:205292 +k1,1678:31966991,20031991:0 +) +(1,1679:7246811,20873479:24720180,513147,134348 +k1,1678:9244752,20873479:183249 +k1,1678:10375651,20873479:183248 +k1,1678:12819237,20873479:183249 +k1,1678:15818568,20873479:183249 +k1,1678:16617854,20873479:183248 +k1,1678:19432374,20873479:183249 +k1,1678:20952557,20873479:183249 +k1,1678:22498300,20873479:183249 +k1,1678:26043545,20873479:183248 +k1,1678:27036164,20873479:183249 +k1,1678:28238498,20873479:183249 +k1,1678:29807832,20873479:183248 +k1,1678:30650373,20873479:183249 +k1,1679:31966991,20873479:0 +) +(1,1679:7246811,21714967:24720180,505283,134348 +k1,1678:9463184,21714967:191966 +k1,1678:10846596,21714967:191967 +k1,1678:12505258,21714967:191966 +k1,1678:15508064,21714967:191967 +k1,1678:17213256,21714967:191966 +k1,1678:18056651,21714967:191967 +k1,1678:19890949,21714967:191966 +k1,1678:21102000,21714967:191966 +k1,1678:21708803,21714967:191960 +k1,1678:24642795,21714967:191966 +k1,1678:28382226,21714967:191967 +k1,1678:31508894,21714967:191966 +k1,1678:31966991,21714967:0 +) +(1,1679:7246811,22556455:24720180,513147,126483 +k1,1678:7935425,22556455:157117 +k1,1678:10722502,22556455:157117 +k1,1678:11531047,22556455:157117 +k1,1678:13711916,22556455:157117 +k1,1678:15565760,22556455:157117 +k1,1678:17733522,22556455:157117 +k1,1678:18503401,22556455:157117 +k1,1678:19778562,22556455:157117 +k1,1678:21361087,22556455:157117 +k1,1678:23085825,22556455:157117 +k1,1678:24262027,22556455:157117 +k1,1678:26930484,22556455:157117 +(1,1678:26930484,22556455:0,452978,115847 +r1,1815:29750733,22556455:2820249,568825,115847 +k1,1678:26930484,22556455:-2820249 +) +(1,1678:26930484,22556455:2820249,452978,115847 +k1,1678:26930484,22556455:3277 +h1,1678:29747456,22556455:0,411205,112570 +) +k1,1678:30081520,22556455:157117 +k1,1678:31966991,22556455:0 +) +(1,1679:7246811,23397943:24720180,513147,134348 +k1,1678:7994256,23397943:215948 +k1,1678:9532066,23397943:215949 +k1,1678:10407306,23397943:215948 +k1,1678:11642339,23397943:215948 +k1,1678:12273114,23397943:215932 +k1,1678:15505029,23397943:215948 +k1,1678:17682470,23397943:215948 +k1,1678:18923402,23397943:215949 +k1,1678:20158435,23397943:215948 +k1,1678:21762436,23397943:215948 +k1,1678:23476538,23397943:215949 +k1,1678:24640137,23397943:215948 +(1,1678:24640137,23397943:0,452978,115847 +r1,1815:27460386,23397943:2820249,568825,115847 +k1,1678:24640137,23397943:-2820249 +) +(1,1678:24640137,23397943:2820249,452978,115847 +k1,1678:24640137,23397943:3277 +h1,1678:27457109,23397943:0,411205,112570 +) +k1,1678:27676334,23397943:215948 +k1,1678:28839934,23397943:215949 +k1,1678:29411742,23397943:215948 +k1,1678:31966991,23397943:0 +) +(1,1679:7246811,24239431:24720180,513147,126483 +g1,1678:8637485,24239431 +g1,1678:12130553,24239431 +g1,1678:15939505,24239431 +g1,1678:16798026,24239431 +g1,1678:18016340,24239431 +g1,1678:20999538,24239431 +g1,1678:24460494,24239431 +g1,1678:24460494,24239431 +g1,1678:24659723,24239431 +g1,1678:24659723,24239431 +g1,1678:24858952,24239431 +g1,1678:24858952,24239431 +k1,1679:31966991,24239431:7108039 +g1,1679:31966991,24239431 +) +v1,1681:7246811,25387346:0,393216,0 +(1,1706:7246811,32568747:24720180,7574617,196608 +g1,1706:7246811,32568747 +g1,1706:7246811,32568747 +g1,1706:7050203,32568747 +(1,1706:7050203,32568747:0,7574617,196608 +r1,1815:32163599,32568747:25113396,7771225,196608 +k1,1706:7050203,32568747:-25113396 +) +(1,1706:7050203,32568747:25113396,7574617,196608 +[1,1706:7246811,32568747:24720180,7378009,0 +(1,1683:7246811,25601256:24720180,410518,101187 +(1,1682:7246811,25601256:0,0,0 +g1,1682:7246811,25601256 +g1,1682:7246811,25601256 +g1,1682:6919131,25601256 +(1,1682:6919131,25601256:0,0,0 +) +g1,1682:7246811,25601256 +) +h1,1683:13253579,25601256:0,0,0 +k1,1683:31966991,25601256:18713412 +g1,1683:31966991,25601256 +) +(1,1687:7246811,26332970:24720180,404226,76021 +(1,1685:7246811,26332970:0,0,0 +g1,1685:7246811,26332970 +g1,1685:7246811,26332970 +g1,1685:6919131,26332970 +(1,1685:6919131,26332970:0,0,0 +) +g1,1685:7246811,26332970 +) +g1,1687:8195248,26332970 +g1,1687:9459831,26332970 +k1,1687:9459831,26332970:0 +h1,1687:13253579,26332970:0,0,0 +k1,1687:31966991,26332970:18713412 +g1,1687:31966991,26332970 +) +(1,1689:7246811,27654508:24720180,410518,107478 +(1,1688:7246811,27654508:0,0,0 +g1,1688:7246811,27654508 +g1,1688:7246811,27654508 +g1,1688:6919131,27654508 +(1,1688:6919131,27654508:0,0,0 +) +g1,1688:7246811,27654508 +) +h1,1689:14518162,27654508:0,0,0 +k1,1689:31966990,27654508:17448828 +g1,1689:31966990,27654508 +) +(1,1693:7246811,28386222:24720180,404226,76021 +(1,1691:7246811,28386222:0,0,0 +g1,1691:7246811,28386222 +g1,1691:7246811,28386222 +g1,1691:6919131,28386222 +(1,1691:6919131,28386222:0,0,0 +) +g1,1691:7246811,28386222 +) +g1,1693:8195248,28386222 +g1,1693:9459831,28386222 +k1,1693:9459831,28386222:0 +h1,1693:13253579,28386222:0,0,0 +k1,1693:31966991,28386222:18713412 +g1,1693:31966991,28386222 +) +(1,1695:7246811,29707760:24720180,410518,31456 +(1,1694:7246811,29707760:0,0,0 +g1,1694:7246811,29707760 +g1,1694:7246811,29707760 +g1,1694:6919131,29707760 +(1,1694:6919131,29707760:0,0,0 +) +g1,1694:7246811,29707760 +) +h1,1695:13253579,29707760:0,0,0 +k1,1695:31966991,29707760:18713412 +g1,1695:31966991,29707760 +) +(1,1699:7246811,30439474:24720180,404226,76021 +(1,1697:7246811,30439474:0,0,0 +g1,1697:7246811,30439474 +g1,1697:7246811,30439474 +g1,1697:6919131,30439474 +(1,1697:6919131,30439474:0,0,0 +) +g1,1697:7246811,30439474 +) +g1,1699:8195248,30439474 +g1,1699:9459831,30439474 +h1,1699:10724414,30439474:0,0,0 +k1,1699:31966990,30439474:21242576 +g1,1699:31966990,30439474 +) +(1,1701:7246811,31761012:24720180,410518,31456 +(1,1700:7246811,31761012:0,0,0 +g1,1700:7246811,31761012 +g1,1700:7246811,31761012 +g1,1700:6919131,31761012 +(1,1700:6919131,31761012:0,0,0 +) +g1,1700:7246811,31761012 +) +h1,1701:13253579,31761012:0,0,0 +k1,1701:31966991,31761012:18713412 +g1,1701:31966991,31761012 +) +(1,1705:7246811,32492726:24720180,404226,76021 +(1,1703:7246811,32492726:0,0,0 +g1,1703:7246811,32492726 +g1,1703:7246811,32492726 +g1,1703:6919131,32492726 +(1,1703:6919131,32492726:0,0,0 +) +g1,1703:7246811,32492726 +) +g1,1705:8195248,32492726 +g1,1705:9459831,32492726 +k1,1705:9459831,32492726:0 +h1,1705:11040559,32492726:0,0,0 +k1,1705:31966991,32492726:20926432 +g1,1705:31966991,32492726 +) +] +) +g1,1706:31966991,32568747 +g1,1706:7246811,32568747 +g1,1706:7246811,32568747 +g1,1706:31966991,32568747 +g1,1706:31966991,32568747 +) +h1,1706:7246811,32765355:0,0,0 +(1,1710:7246811,34088579:24720180,513147,126483 +h1,1709:7246811,34088579:983040,0,0 +k1,1709:9616592,34088579:190054 +k1,1709:10954838,34088579:190055 +k1,1709:12317331,34088579:190054 +k1,1709:14518031,34088579:190055 +k1,1709:16244249,34088579:190054 +k1,1709:17085732,34088579:190055 +k1,1709:18294871,34088579:190054 +k1,1709:21776799,34088579:190055 +k1,1709:22626145,34088579:190054 +k1,1709:23786788,34088579:190055 +k1,1709:25928504,34088579:190054 +k1,1709:27561006,34088579:190055 +k1,1709:28770145,34088579:190054 +k1,1709:31966991,34088579:0 +) +(1,1710:7246811,34930067:24720180,513147,134348 +k1,1709:8630225,34930067:191969 +k1,1709:11914183,34930067:191969 +k1,1709:13374929,34930067:191969 +k1,1709:14226190,34930067:191969 +k1,1709:17234241,34930067:191969 +k1,1709:18710716,34930067:191969 +k1,1709:20006968,34930067:191970 +k1,1709:20946703,34930067:191969 +k1,1709:23718169,34930067:191969 +k1,1709:24596300,34930067:191969 +k1,1709:27078097,34930067:191969 +k1,1709:27929358,34930067:191969 +k1,1709:29676496,34930067:191969 +(1,1709:29676496,34930067:0,452978,115847 +r1,1815:31793321,34930067:2116825,568825,115847 +k1,1709:29676496,34930067:-2116825 +) +(1,1709:29676496,34930067:2116825,452978,115847 +k1,1709:29676496,34930067:3277 +h1,1709:31790044,34930067:0,411205,112570 +) +k1,1709:31966991,34930067:0 +) +(1,1710:7246811,35771555:24720180,505283,115847 +k1,1709:9592915,35771555:234534 +k1,1709:12193298,35771555:234533 +k1,1709:14124559,35771555:234534 +k1,1709:16173785,35771555:234534 +k1,1709:17399878,35771555:234533 +k1,1709:19672582,35771555:234534 +k1,1709:20593278,35771555:234534 +(1,1709:20593278,35771555:0,459977,115847 +r1,1815:22006679,35771555:1413401,575824,115847 +k1,1709:20593278,35771555:-1413401 +) +(1,1709:20593278,35771555:1413401,459977,115847 +k1,1709:20593278,35771555:3277 +h1,1709:22003402,35771555:0,411205,112570 +) +k1,1709:22241213,35771555:234534 +k1,1709:23158631,35771555:234533 +(1,1709:23158631,35771555:0,459977,115847 +r1,1815:24220320,35771555:1061689,575824,115847 +k1,1709:23158631,35771555:-1061689 +) +(1,1709:23158631,35771555:1061689,459977,115847 +k1,1709:23158631,35771555:3277 +h1,1709:24217043,35771555:0,411205,112570 +) +k1,1709:24454854,35771555:234534 +k1,1709:25880833,35771555:234534 +k1,1709:27770150,35771555:234533 +k1,1709:31280829,35771555:234534 +k1,1709:31966991,35771555:0 +) +(1,1710:7246811,36613043:24720180,513147,134348 +g1,1709:9712930,36613043 +g1,1709:11922804,36613043 +g1,1709:15238925,36613043 +g1,1709:16457239,36613043 +g1,1709:20979878,36613043 +k1,1710:31966991,36613043:9227471 +g1,1710:31966991,36613043 +) +v1,1712:7246811,37760957:0,393216,0 +(1,1737:7246811,44920337:24720180,7552596,196608 +g1,1737:7246811,44920337 +g1,1737:7246811,44920337 +g1,1737:7050203,44920337 +(1,1737:7050203,44920337:0,7552596,196608 +r1,1815:32163599,44920337:25113396,7749204,196608 +k1,1737:7050203,44920337:-25113396 +) +(1,1737:7050203,44920337:25113396,7552596,196608 +[1,1737:7246811,44920337:24720180,7355988,0 +(1,1714:7246811,37952846:24720180,388497,9436 +(1,1713:7246811,37952846:0,0,0 +g1,1713:7246811,37952846 +g1,1713:7246811,37952846 +g1,1713:6919131,37952846 +(1,1713:6919131,37952846:0,0,0 +) +g1,1713:7246811,37952846 +) +h1,1714:9143685,37952846:0,0,0 +k1,1714:31966991,37952846:22823306 +g1,1714:31966991,37952846 +) +(1,1718:7246811,38684560:24720180,410518,76021 +(1,1716:7246811,38684560:0,0,0 +g1,1716:7246811,38684560 +g1,1716:7246811,38684560 +g1,1716:6919131,38684560 +(1,1716:6919131,38684560:0,0,0 +) +g1,1716:7246811,38684560 +) +g1,1718:8195248,38684560 +g1,1718:9459831,38684560 +h1,1718:10408268,38684560:0,0,0 +k1,1718:31966992,38684560:21558724 +g1,1718:31966992,38684560 +) +(1,1720:7246811,40006098:24720180,388497,9436 +(1,1719:7246811,40006098:0,0,0 +g1,1719:7246811,40006098 +g1,1719:7246811,40006098 +g1,1719:6919131,40006098 +(1,1719:6919131,40006098:0,0,0 +) +g1,1719:7246811,40006098 +) +k1,1720:7246811,40006098:0 +h1,1720:9459830,40006098:0,0,0 +k1,1720:31966990,40006098:22507160 +g1,1720:31966990,40006098 +) +(1,1724:7246811,40737812:24720180,404226,76021 +(1,1722:7246811,40737812:0,0,0 +g1,1722:7246811,40737812 +g1,1722:7246811,40737812 +g1,1722:6919131,40737812 +(1,1722:6919131,40737812:0,0,0 +) +g1,1722:7246811,40737812 +) +g1,1724:8195248,40737812 +g1,1724:9459831,40737812 +h1,1724:9775977,40737812:0,0,0 +k1,1724:31966991,40737812:22191014 +g1,1724:31966991,40737812 ) -(1,1720:7246811,42059350:24720180,410518,0 -(1,1719:7246811,42059350:0,0,0 -g1,1719:7246811,42059350 -g1,1719:7246811,42059350 -g1,1719:6919131,42059350 -(1,1719:6919131,42059350:0,0,0 +(1,1726:7246811,42059350:24720180,410518,0 +(1,1725:7246811,42059350:0,0,0 +g1,1725:7246811,42059350 +g1,1725:7246811,42059350 +g1,1725:6919131,42059350 +(1,1725:6919131,42059350:0,0,0 ) -g1,1719:7246811,42059350 +g1,1725:7246811,42059350 ) -g1,1720:8511394,42059350 -g1,1720:9143686,42059350 -h1,1720:9459832,42059350:0,0,0 -k1,1720:31966992,42059350:22507160 -g1,1720:31966992,42059350 +g1,1726:8511394,42059350 +g1,1726:9143686,42059350 +h1,1726:9459832,42059350:0,0,0 +k1,1726:31966992,42059350:22507160 +g1,1726:31966992,42059350 ) -(1,1724:7246811,42791064:24720180,410518,76021 -(1,1722:7246811,42791064:0,0,0 -g1,1722:7246811,42791064 -g1,1722:7246811,42791064 -g1,1722:6919131,42791064 -(1,1722:6919131,42791064:0,0,0 +(1,1730:7246811,42791064:24720180,410518,76021 +(1,1728:7246811,42791064:0,0,0 +g1,1728:7246811,42791064 +g1,1728:7246811,42791064 +g1,1728:6919131,42791064 +(1,1728:6919131,42791064:0,0,0 ) -g1,1722:7246811,42791064 +g1,1728:7246811,42791064 ) -g1,1724:8195248,42791064 -g1,1724:9459831,42791064 -h1,1724:10408268,42791064:0,0,0 -k1,1724:31966992,42791064:21558724 -g1,1724:31966992,42791064 +g1,1730:8195248,42791064 +g1,1730:9459831,42791064 +h1,1730:10408268,42791064:0,0,0 +k1,1730:31966992,42791064:21558724 +g1,1730:31966992,42791064 ) -(1,1726:7246811,44112602:24720180,410518,0 -(1,1725:7246811,44112602:0,0,0 -g1,1725:7246811,44112602 -g1,1725:7246811,44112602 -g1,1725:6919131,44112602 -(1,1725:6919131,44112602:0,0,0 +(1,1732:7246811,44112602:24720180,410518,0 +(1,1731:7246811,44112602:0,0,0 +g1,1731:7246811,44112602 +g1,1731:7246811,44112602 +g1,1731:6919131,44112602 +(1,1731:6919131,44112602:0,0,0 ) -g1,1725:7246811,44112602 +g1,1731:7246811,44112602 ) -k1,1726:7246811,44112602:0 -g1,1726:8827540,44112602 -g1,1726:9459832,44112602 -h1,1726:9775978,44112602:0,0,0 -k1,1726:31966990,44112602:22191012 -g1,1726:31966990,44112602 +k1,1732:7246811,44112602:0 +g1,1732:8827540,44112602 +g1,1732:9459832,44112602 +h1,1732:9775978,44112602:0,0,0 +k1,1732:31966990,44112602:22191012 +g1,1732:31966990,44112602 ) -(1,1730:7246811,44844316:24720180,410518,76021 -(1,1728:7246811,44844316:0,0,0 -g1,1728:7246811,44844316 -g1,1728:7246811,44844316 -g1,1728:6919131,44844316 -(1,1728:6919131,44844316:0,0,0 +(1,1736:7246811,44844316:24720180,410518,76021 +(1,1734:7246811,44844316:0,0,0 +g1,1734:7246811,44844316 +g1,1734:7246811,44844316 +g1,1734:6919131,44844316 +(1,1734:6919131,44844316:0,0,0 ) -g1,1728:7246811,44844316 +g1,1734:7246811,44844316 ) -g1,1730:8195248,44844316 -g1,1730:9459831,44844316 -k1,1730:9459831,44844316:0 -h1,1730:10724414,44844316:0,0,0 -k1,1730:31966990,44844316:21242576 -g1,1730:31966990,44844316 +g1,1736:8195248,44844316 +g1,1736:9459831,44844316 +k1,1736:9459831,44844316:0 +h1,1736:10724414,44844316:0,0,0 +k1,1736:31966990,44844316:21242576 +g1,1736:31966990,44844316 ) ] ) -g1,1731:31966991,44920337 -g1,1731:7246811,44920337 -g1,1731:7246811,44920337 -g1,1731:31966991,44920337 -g1,1731:31966991,44920337 +g1,1737:31966991,44920337 +g1,1737:7246811,44920337 +g1,1737:7246811,44920337 +g1,1737:31966991,44920337 +g1,1737:31966991,44920337 ) -h1,1731:7246811,45116945:0,0,0 +h1,1737:7246811,45116945:0,0,0 ] ) ] -r1,1809:32583029,45706769:26214,39845888,0 +r1,1815:32583029,45706769:26214,39845888,0 ) ] ) ) -g1,1809:32583029,45116945 +g1,1815:32583029,45116945 ) ] -(1,1809:32583029,45706769:0,0,0 -g1,1809:32583029,45706769 +(1,1815:32583029,45706769:0,0,0 +g1,1815:32583029,45706769 ) ) ] -(1,1809:6630773,47279633:25952256,0,0 -h1,1809:6630773,47279633:25952256,0,0 +(1,1815:6630773,47279633:25952256,0,0 +h1,1815:6630773,47279633:25952256,0,0 ) ] -h1,1809:4262630,4025873:0,0,0 +h1,1815:4262630,4025873:0,0,0 ] !22343 }45 -Input:291:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!96 +Input:287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!102 {46 -[1,1873:4262630,47279633:28320399,43253760,0 -(1,1873:4262630,4025873:0,0,0 -[1,1873:-473657,4025873:25952256,0,0 -(1,1873:-473657,-710414:25952256,0,0 -h1,1873:-473657,-710414:0,0,0 -(1,1873:-473657,-710414:0,0,0 -(1,1873:-473657,-710414:0,0,0 -g1,1873:-473657,-710414 -(1,1873:-473657,-710414:65781,0,65781 -g1,1873:-407876,-710414 -[1,1873:-407876,-644633:0,0,0 +[1,1879:4262630,47279633:28320399,43253760,0 +(1,1879:4262630,4025873:0,0,0 +[1,1879:-473657,4025873:25952256,0,0 +(1,1879:-473657,-710414:25952256,0,0 +h1,1879:-473657,-710414:0,0,0 +(1,1879:-473657,-710414:0,0,0 +(1,1879:-473657,-710414:0,0,0 +g1,1879:-473657,-710414 +(1,1879:-473657,-710414:65781,0,65781 +g1,1879:-407876,-710414 +[1,1879:-407876,-644633:0,0,0 ] ) -k1,1873:-473657,-710414:-65781 +k1,1879:-473657,-710414:-65781 ) ) -k1,1873:25478599,-710414:25952256 -g1,1873:25478599,-710414 +k1,1879:25478599,-710414:25952256 +g1,1879:25478599,-710414 ) ] ) -[1,1873:6630773,47279633:25952256,43253760,0 -[1,1873:6630773,4812305:25952256,786432,0 -(1,1873:6630773,4812305:25952256,505283,126483 -(1,1873:6630773,4812305:25952256,505283,126483 -g1,1873:3078558,4812305 -[1,1873:3078558,4812305:0,0,0 -(1,1873:3078558,2439708:0,1703936,0 -k1,1873:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1873:2537886,2439708:1179648,16384,0 +[1,1879:6630773,47279633:25952256,43253760,0 +[1,1879:6630773,4812305:25952256,786432,0 +(1,1879:6630773,4812305:25952256,505283,126483 +(1,1879:6630773,4812305:25952256,505283,126483 +g1,1879:3078558,4812305 +[1,1879:3078558,4812305:0,0,0 +(1,1879:3078558,2439708:0,1703936,0 +k1,1879:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1879:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1873:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1879:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1873:3078558,4812305:0,0,0 -(1,1873:3078558,2439708:0,1703936,0 -g1,1873:29030814,2439708 -g1,1873:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1873:36151628,1915420:16384,1179648,0 +[1,1879:3078558,4812305:0,0,0 +(1,1879:3078558,2439708:0,1703936,0 +g1,1879:29030814,2439708 +g1,1879:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1879:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1873:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1879:37855564,2439708:1179648,16384,0 ) ) -k1,1873:3078556,2439708:-34777008 +k1,1879:3078556,2439708:-34777008 ) ] -[1,1873:3078558,4812305:0,0,0 -(1,1873:3078558,49800853:0,16384,2228224 -k1,1873:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1873:2537886,49800853:1179648,16384,0 +[1,1879:3078558,4812305:0,0,0 +(1,1879:3078558,49800853:0,16384,2228224 +k1,1879:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1879:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1873:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1879:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,1873:3078558,4812305:0,0,0 -(1,1873:3078558,49800853:0,16384,2228224 -g1,1873:29030814,49800853 -g1,1873:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1873:36151628,51504789:16384,1179648,0 +[1,1879:3078558,4812305:0,0,0 +(1,1879:3078558,49800853:0,16384,2228224 +g1,1879:29030814,49800853 +g1,1879:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1879:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1873:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1879:37855564,49800853:1179648,16384,0 ) ) -k1,1873:3078556,49800853:-34777008 +k1,1879:3078556,49800853:-34777008 ) ] -g1,1873:6630773,4812305 -g1,1873:6630773,4812305 -g1,1873:10646819,4812305 -g1,1873:13853495,4812305 -g1,1873:15263174,4812305 -g1,1873:18764762,4812305 -k1,1873:31786111,4812305:13021349 -) -) -] -[1,1873:6630773,45706769:25952256,40108032,0 -(1,1873:6630773,45706769:25952256,40108032,0 -(1,1873:6630773,45706769:0,0,0 -g1,1873:6630773,45706769 +g1,1879:6630773,4812305 +g1,1879:6630773,4812305 +g1,1879:10646819,4812305 +g1,1879:13853495,4812305 +g1,1879:15263174,4812305 +g1,1879:18764762,4812305 +k1,1879:31786111,4812305:13021349 +) +) +] +[1,1879:6630773,45706769:25952256,40108032,0 +(1,1879:6630773,45706769:25952256,40108032,0 +(1,1879:6630773,45706769:0,0,0 +g1,1879:6630773,45706769 ) -[1,1873:6630773,45706769:25952256,40108032,0 -v1,1809:6630773,6254097:0,393216,0 -(1,1809:6630773,37326489:25952256,31465608,616038 -g1,1809:6630773,37326489 -(1,1809:6630773,37326489:25952256,31465608,616038 -(1,1809:6630773,37942527:25952256,32081646,0 -[1,1809:6630773,37942527:25952256,32081646,0 -(1,1809:6630773,37916313:25952256,32055432,0 -r1,1809:6656987,37916313:26214,32055432,0 -[1,1809:6656987,37916313:25899828,32055432,0 -(1,1809:6656987,37326489:25899828,30875784,0 -[1,1809:7246811,37326489:24720180,30875784,0 -(1,1735:7246811,6963852:24720180,513147,126483 -h1,1734:7246811,6963852:983040,0,0 -k1,1734:9228638,6963852:180898 -(1,1734:9228638,6963852:0,452978,122846 -r1,1809:11697175,6963852:2468537,575824,122846 -k1,1734:9228638,6963852:-2468537 -) -(1,1734:9228638,6963852:2468537,452978,122846 -k1,1734:9228638,6963852:3277 -h1,1734:11693898,6963852:0,411205,112570 -) -k1,1734:11878073,6963852:180898 -k1,1734:14069616,6963852:180898 -k1,1734:15242074,6963852:180898 -k1,1734:17461142,6963852:180898 -k1,1734:18258077,6963852:180897 -k1,1734:21126606,6963852:180898 -k1,1734:23938775,6963852:180898 -k1,1734:26579895,6963852:180898 -k1,1734:28021050,6963852:180898 -k1,1734:28861240,6963852:180898 -k1,1734:31966991,6963852:0 -) -(1,1735:7246811,7805340:24720180,513147,126483 -g1,1734:9760116,7805340 -g1,1734:10490842,7805340 -g1,1734:11756342,7805340 -g1,1734:14337149,7805340 -g1,1734:15484029,7805340 -(1,1734:15484029,7805340:0,452978,122846 -r1,1809:17952566,7805340:2468537,575824,122846 -k1,1734:15484029,7805340:-2468537 -) -(1,1734:15484029,7805340:2468537,452978,122846 -k1,1734:15484029,7805340:3277 -h1,1734:17949289,7805340:0,411205,112570 -) -g1,1734:18151795,7805340 -k1,1735:31966991,7805340:11630881 -g1,1735:31966991,7805340 -) -v1,1737:7246811,8995806:0,393216,0 -(1,1750:7246811,12070703:24720180,3468113,196608 -g1,1750:7246811,12070703 -g1,1750:7246811,12070703 -g1,1750:7050203,12070703 -(1,1750:7050203,12070703:0,3468113,196608 -r1,1809:32163599,12070703:25113396,3664721,196608 -k1,1750:7050203,12070703:-25113396 -) -(1,1750:7050203,12070703:25113396,3468113,196608 -[1,1750:7246811,12070703:24720180,3271505,0 -(1,1739:7246811,9209716:24720180,410518,107478 -(1,1738:7246811,9209716:0,0,0 -g1,1738:7246811,9209716 -g1,1738:7246811,9209716 -g1,1738:6919131,9209716 -(1,1738:6919131,9209716:0,0,0 -) -g1,1738:7246811,9209716 -) -h1,1739:13569724,9209716:0,0,0 -k1,1739:31966992,9209716:18397268 -g1,1739:31966992,9209716 -) -(1,1743:7246811,9941430:24720180,404226,76021 -(1,1741:7246811,9941430:0,0,0 -g1,1741:7246811,9941430 -g1,1741:7246811,9941430 -g1,1741:6919131,9941430 -(1,1741:6919131,9941430:0,0,0 -) -g1,1741:7246811,9941430 -) -g1,1743:8195248,9941430 -g1,1743:9459831,9941430 -h1,1743:12621288,9941430:0,0,0 -k1,1743:31966992,9941430:19345704 -g1,1743:31966992,9941430 -) -(1,1745:7246811,11262968:24720180,388497,9436 -(1,1744:7246811,11262968:0,0,0 -g1,1744:7246811,11262968 -g1,1744:7246811,11262968 -g1,1744:6919131,11262968 -(1,1744:6919131,11262968:0,0,0 -) -g1,1744:7246811,11262968 -) -h1,1745:10724413,11262968:0,0,0 -k1,1745:31966991,11262968:21242578 -g1,1745:31966991,11262968 -) -(1,1749:7246811,11994682:24720180,404226,76021 -(1,1747:7246811,11994682:0,0,0 -g1,1747:7246811,11994682 -g1,1747:7246811,11994682 -g1,1747:6919131,11994682 -(1,1747:6919131,11994682:0,0,0 -) -g1,1747:7246811,11994682 -) -g1,1749:8195248,11994682 -g1,1749:9459831,11994682 -h1,1749:12621288,11994682:0,0,0 -k1,1749:31966992,11994682:19345704 -g1,1749:31966992,11994682 -) -] -) -g1,1750:31966991,12070703 -g1,1750:7246811,12070703 -g1,1750:7246811,12070703 -g1,1750:31966991,12070703 -g1,1750:31966991,12070703 -) -h1,1750:7246811,12267311:0,0,0 -(1,1754:7246811,13633087:24720180,505283,126483 -h1,1753:7246811,13633087:983040,0,0 -k1,1753:9003830,13633087:146144 -k1,1753:10893888,13633087:146145 -k1,1753:14556694,13633087:146144 -k1,1753:15318876,13633087:146144 -k1,1753:16484106,13633087:146145 -k1,1753:18600918,13633087:146144 -k1,1753:20615493,13633087:146144 -k1,1753:22680531,13633087:146144 -k1,1753:23439438,13633087:146145 -k1,1753:25081114,13633087:146144 -k1,1753:26383968,13633087:146144 -k1,1753:29172525,13633087:146145 -k1,1753:29850166,13633087:146144 -(1,1753:29850166,13633087:0,452978,115847 -r1,1809:31966991,13633087:2116825,568825,115847 -k1,1753:29850166,13633087:-2116825 -) -(1,1753:29850166,13633087:2116825,452978,115847 -k1,1753:29850166,13633087:3277 -h1,1753:31963714,13633087:0,411205,112570 -) -k1,1753:31966991,13633087:0 -) -(1,1754:7246811,14474575:24720180,513147,126483 -k1,1753:8512401,14474575:246505 -(1,1753:8512401,14474575:0,452978,122846 -r1,1809:10980938,14474575:2468537,575824,122846 -k1,1753:8512401,14474575:-2468537 -) -(1,1753:8512401,14474575:2468537,452978,122846 -k1,1753:8512401,14474575:3277 -h1,1753:10977661,14474575:0,411205,112570 -) -k1,1753:11227443,14474575:246505 -k1,1753:14446661,14474575:246505 -k1,1753:15684725,14474575:246504 -k1,1753:18996348,14474575:246505 -k1,1753:19894281,14474575:246505 -(1,1753:19894281,14474575:0,452978,115847 -r1,1809:22011106,14474575:2116825,568825,115847 -k1,1753:19894281,14474575:-2116825 -) -(1,1753:19894281,14474575:2116825,452978,115847 -k1,1753:19894281,14474575:3277 -h1,1753:22007829,14474575:0,411205,112570 -) -k1,1753:22257611,14474575:246505 -k1,1753:24546873,14474575:246505 -k1,1753:29030936,14474575:246505 -k1,1753:29764981,14474575:246457 -k1,1753:31966991,14474575:0 -) -(1,1754:7246811,15316063:24720180,505283,134348 -k1,1753:10917765,15316063:285364 -k1,1753:12696039,15316063:285364 -k1,1753:14047675,15316063:285365 -k1,1753:15685702,15316063:285364 -k1,1753:17633714,15316063:285364 -k1,1753:19617116,15316063:285364 -k1,1753:23307075,15316063:285364 -k1,1753:24584000,15316063:285365 -k1,1753:27028775,15316063:285364 -(1,1753:27028775,15316063:0,452978,122846 -r1,1809:29497312,15316063:2468537,575824,122846 -k1,1753:27028775,15316063:-2468537 -) -(1,1753:27028775,15316063:2468537,452978,122846 -k1,1753:27028775,15316063:3277 -h1,1753:29494035,15316063:0,411205,112570 -) -k1,1753:29782676,15316063:285364 -k1,1753:31966991,15316063:0 -) -(1,1754:7246811,16157551:24720180,513147,134348 -k1,1753:10298822,16157551:218890 -k1,1753:11133750,16157551:218890 -k1,1753:14259818,16157551:218891 -k1,1753:17206972,16157551:218890 -k1,1753:20241944,16157551:218890 -k1,1753:21745340,16157551:218890 -k1,1753:22955790,16157551:218890 -k1,1753:24220635,16157551:218890 -k1,1753:25415357,16157551:218891 -k1,1753:26285675,16157551:218890 -k1,1753:27252331,16157551:218890 -k1,1753:31280829,16157551:218890 -k1,1754:31966991,16157551:0 -) -(1,1754:7246811,16999039:24720180,505283,122846 -(1,1753:7246811,16999039:0,452978,122846 -r1,1809:9715348,16999039:2468537,575824,122846 -k1,1753:7246811,16999039:-2468537 -) -(1,1753:7246811,16999039:2468537,452978,122846 -k1,1753:7246811,16999039:3277 -h1,1753:9712071,16999039:0,411205,112570 -) -g1,1753:9914577,16999039 -k1,1754:31966992,16999039:19868100 -g1,1754:31966992,16999039 -) -v1,1756:7246811,18189505:0,393216,0 -(1,1785:7246811,27860889:24720180,10064600,196608 -g1,1785:7246811,27860889 -g1,1785:7246811,27860889 -g1,1785:7050203,27860889 -(1,1785:7050203,27860889:0,10064600,196608 -r1,1809:32163599,27860889:25113396,10261208,196608 -k1,1785:7050203,27860889:-25113396 -) -(1,1785:7050203,27860889:25113396,10064600,196608 -[1,1785:7246811,27860889:24720180,9867992,0 -(1,1758:7246811,18381394:24720180,388497,9436 -(1,1757:7246811,18381394:0,0,0 -g1,1757:7246811,18381394 -g1,1757:7246811,18381394 -g1,1757:6919131,18381394 -(1,1757:6919131,18381394:0,0,0 -) -g1,1757:7246811,18381394 -) -g1,1758:11040559,18381394 -g1,1758:11672851,18381394 -h1,1758:12621288,18381394:0,0,0 -k1,1758:31966992,18381394:19345704 -g1,1758:31966992,18381394 -) -(1,1762:7246811,19702932:24720180,410518,107478 -g1,1762:8195248,19702932 -g1,1762:10724414,19702932 -g1,1762:11672851,19702932 -g1,1762:15466599,19702932 -g1,1762:16098891,19702932 -g1,1762:17679620,19702932 -g1,1762:18944203,19702932 -g1,1762:21789514,19702932 -g1,1762:22737951,19702932 -g1,1762:25267117,19702932 -k1,1762:31966991,19702932:4170709 -g1,1762:31966991,19702932 -) -(1,1764:7246811,20369110:24720180,404226,76021 -(1,1762:7246811,20369110:0,0,0 -g1,1762:7246811,20369110 -g1,1762:7246811,20369110 -g1,1762:6919131,20369110 -(1,1762:6919131,20369110:0,0,0 -) -g1,1762:7246811,20369110 -) -g1,1764:8195248,20369110 -g1,1764:9459831,20369110 -h1,1764:10092122,20369110:0,0,0 -k1,1764:31966990,20369110:21874868 -g1,1764:31966990,20369110 -) -(1,1766:7246811,21690648:24720180,388497,9436 -(1,1765:7246811,21690648:0,0,0 -g1,1765:7246811,21690648 -g1,1765:7246811,21690648 -g1,1765:6919131,21690648 -(1,1765:6919131,21690648:0,0,0 -) -g1,1765:7246811,21690648 -) -g1,1766:11040559,21690648 -g1,1766:11672851,21690648 -h1,1766:12305142,21690648:0,0,0 -k1,1766:31966990,21690648:19661848 -g1,1766:31966990,21690648 -) -(1,1770:7246811,22422362:24720180,404226,76021 -(1,1768:7246811,22422362:0,0,0 -g1,1768:7246811,22422362 -g1,1768:7246811,22422362 -g1,1768:6919131,22422362 -(1,1768:6919131,22422362:0,0,0 -) -g1,1768:7246811,22422362 -) -g1,1770:8195248,22422362 -g1,1770:9459831,22422362 -h1,1770:12621288,22422362:0,0,0 -k1,1770:31966992,22422362:19345704 -g1,1770:31966992,22422362 -) -(1,1772:7246811,23743900:24720180,388497,9436 -(1,1771:7246811,23743900:0,0,0 -g1,1771:7246811,23743900 -g1,1771:7246811,23743900 -g1,1771:6919131,23743900 -(1,1771:6919131,23743900:0,0,0 -) -g1,1771:7246811,23743900 -) -g1,1772:11040559,23743900 -g1,1772:11672851,23743900 -h1,1772:15150453,23743900:0,0,0 -k1,1772:31966991,23743900:16816538 -g1,1772:31966991,23743900 -) -(1,1776:7246811,25065438:24720180,410518,107478 -g1,1776:8195248,25065438 -g1,1776:10724414,25065438 -g1,1776:11672851,25065438 -g1,1776:15466599,25065438 -g1,1776:16098891,25065438 -g1,1776:20208785,25065438 -g1,1776:21473368,25065438 -g1,1776:24318679,25065438 -g1,1776:25267116,25065438 -g1,1776:27796282,25065438 -k1,1776:31966991,25065438:1641544 -g1,1776:31966991,25065438 -) -(1,1778:7246811,25731616:24720180,404226,76021 -(1,1776:7246811,25731616:0,0,0 -g1,1776:7246811,25731616 -g1,1776:7246811,25731616 -g1,1776:6919131,25731616 -(1,1776:6919131,25731616:0,0,0 -) -g1,1776:7246811,25731616 -) -g1,1778:8195248,25731616 -g1,1778:9459831,25731616 -h1,1778:10092122,25731616:0,0,0 -k1,1778:31966990,25731616:21874868 -g1,1778:31966990,25731616 -) -(1,1780:7246811,27053154:24720180,388497,9436 -(1,1779:7246811,27053154:0,0,0 -g1,1779:7246811,27053154 -g1,1779:7246811,27053154 -g1,1779:6919131,27053154 -(1,1779:6919131,27053154:0,0,0 -) -g1,1779:7246811,27053154 -) -g1,1780:11040559,27053154 -g1,1780:11672851,27053154 -h1,1780:14834308,27053154:0,0,0 -k1,1780:31966992,27053154:17132684 -g1,1780:31966992,27053154 -) -(1,1784:7246811,27784868:24720180,404226,76021 -(1,1782:7246811,27784868:0,0,0 -g1,1782:7246811,27784868 -g1,1782:7246811,27784868 -g1,1782:6919131,27784868 -(1,1782:6919131,27784868:0,0,0 -) -g1,1782:7246811,27784868 -) -g1,1784:8195248,27784868 -g1,1784:9459831,27784868 -h1,1784:13253579,27784868:0,0,0 -k1,1784:31966991,27784868:18713412 -g1,1784:31966991,27784868 -) -] -) -g1,1785:31966991,27860889 -g1,1785:7246811,27860889 -g1,1785:7246811,27860889 -g1,1785:31966991,27860889 -g1,1785:31966991,27860889 -) -h1,1785:7246811,28057497:0,0,0 -(1,1789:7246811,29423273:24720180,513147,126483 -h1,1788:7246811,29423273:983040,0,0 -k1,1788:9380791,29423273:197391 -k1,1788:10603164,29423273:197390 -k1,1788:12184675,29423273:197391 -k1,1788:13666571,29423273:197390 -k1,1788:14883047,29423273:197391 -k1,1788:19866531,29423273:197390 -k1,1788:22810536,29423273:197391 -(1,1788:22810536,29423273:0,424981,115847 -r1,1809:23168802,29423273:358266,540828,115847 -k1,1788:22810536,29423273:-358266 -) -(1,1788:22810536,29423273:358266,424981,115847 -k1,1788:22810536,29423273:3277 -h1,1788:23165525,29423273:0,411205,112570 -) -k1,1788:23366193,29423273:197391 -k1,1788:25522454,29423273:197390 -k1,1788:26738930,29423273:197391 -k1,1788:30321910,29423273:197390 -k1,1788:31178593,29423273:197391 -k1,1788:31966991,29423273:0 -) -(1,1789:7246811,30264761:24720180,513147,134348 -k1,1788:10866036,30264761:216596 -k1,1788:11734059,30264761:216595 -(1,1788:11734059,30264761:0,452978,115847 -r1,1809:13850884,30264761:2116825,568825,115847 -k1,1788:11734059,30264761:-2116825 -) -(1,1788:11734059,30264761:2116825,452978,115847 -k1,1788:11734059,30264761:3277 -h1,1788:13847607,30264761:0,411205,112570 -) -k1,1788:14241150,30264761:216596 -k1,1788:17290866,30264761:216595 -k1,1788:18123500,30264761:216596 -k1,1788:19149465,30264761:216595 -k1,1788:22277169,30264761:216595 -k1,1788:23121600,30264761:216596 -k1,1788:26143137,30264761:216596 -k1,1788:27045894,30264761:216595 -k1,1788:28702316,30264761:216596 -k1,1788:30947906,30264761:216595 -k1,1788:31966991,30264761:0 -) -(1,1789:7246811,31106249:24720180,513147,134348 -g1,1788:11928047,31106249 -g1,1788:14873890,31106249 -(1,1788:14873890,31106249:0,414482,115847 -r1,1809:15232156,31106249:358266,530329,115847 -k1,1788:14873890,31106249:-358266 -) -(1,1788:14873890,31106249:358266,414482,115847 -k1,1788:14873890,31106249:3277 -h1,1788:15228879,31106249:0,411205,112570 -) -g1,1788:15431385,31106249 -g1,1788:18371985,31106249 -g1,1788:19380584,31106249 -g1,1788:22140305,31106249 -g1,1788:25172655,31106249 -g1,1788:25987922,31106249 -k1,1789:31966991,31106249:3067960 -g1,1789:31966991,31106249 -) -v1,1791:7246811,32296715:0,393216,0 -(1,1806:7246811,36605593:24720180,4702094,196608 -g1,1806:7246811,36605593 -g1,1806:7246811,36605593 -g1,1806:7050203,36605593 -(1,1806:7050203,36605593:0,4702094,196608 -r1,1809:32163599,36605593:25113396,4898702,196608 -k1,1806:7050203,36605593:-25113396 -) -(1,1806:7050203,36605593:25113396,4702094,196608 -[1,1806:7246811,36605593:24720180,4505486,0 -(1,1793:7246811,32488604:24720180,388497,9436 -(1,1792:7246811,32488604:0,0,0 -g1,1792:7246811,32488604 -g1,1792:7246811,32488604 -g1,1792:6919131,32488604 -(1,1792:6919131,32488604:0,0,0 -) -g1,1792:7246811,32488604 -) -g1,1793:11040559,32488604 -g1,1793:11672851,32488604 -h1,1793:15150453,32488604:0,0,0 -k1,1793:31966991,32488604:16816538 -g1,1793:31966991,32488604 -) -(1,1797:7246811,33810142:24720180,410518,107478 -g1,1797:8195248,33810142 -g1,1797:10724414,33810142 -g1,1797:11672851,33810142 -g1,1797:15466599,33810142 -g1,1797:16098891,33810142 -g1,1797:20208785,33810142 -g1,1797:21473368,33810142 -g1,1797:24318679,33810142 -g1,1797:25267116,33810142 -g1,1797:27796282,33810142 -k1,1797:31966991,33810142:1641544 -g1,1797:31966991,33810142 -) -(1,1799:7246811,34476320:24720180,404226,76021 -(1,1797:7246811,34476320:0,0,0 -g1,1797:7246811,34476320 -g1,1797:7246811,34476320 -g1,1797:6919131,34476320 -(1,1797:6919131,34476320:0,0,0 -) -g1,1797:7246811,34476320 -) -g1,1799:8195248,34476320 -g1,1799:9459831,34476320 -h1,1799:10092122,34476320:0,0,0 -k1,1799:31966990,34476320:21874868 -g1,1799:31966990,34476320 -) -(1,1801:7246811,35797858:24720180,388497,9436 -(1,1800:7246811,35797858:0,0,0 -g1,1800:7246811,35797858 -g1,1800:7246811,35797858 -g1,1800:6919131,35797858 -(1,1800:6919131,35797858:0,0,0 -) -g1,1800:7246811,35797858 -) -h1,1801:11672850,35797858:0,0,0 -k1,1801:31966990,35797858:20294140 -g1,1801:31966990,35797858 -) -(1,1805:7246811,36529572:24720180,404226,76021 -(1,1803:7246811,36529572:0,0,0 -g1,1803:7246811,36529572 -g1,1803:7246811,36529572 -g1,1803:6919131,36529572 -(1,1803:6919131,36529572:0,0,0 -) -g1,1803:7246811,36529572 -) -g1,1805:8195248,36529572 -g1,1805:9459831,36529572 -h1,1805:13253579,36529572:0,0,0 -k1,1805:31966991,36529572:18713412 -g1,1805:31966991,36529572 -) -] -) -g1,1806:31966991,36605593 -g1,1806:7246811,36605593 -g1,1806:7246811,36605593 -g1,1806:31966991,36605593 -g1,1806:31966991,36605593 -) -h1,1806:7246811,36802201:0,0,0 -] -) -] -r1,1809:32583029,37916313:26214,32055432,0 -) -] -) -) -g1,1809:32583029,37326489 -) -h1,1809:6630773,37942527:0,0,0 -v1,1812:6630773,39308303:0,393216,0 -(1,1873:6630773,44958449:25952256,6043362,589824 -g1,1873:6630773,44958449 -(1,1873:6630773,44958449:25952256,6043362,589824 -(1,1873:6630773,45548273:25952256,6633186,0 -[1,1873:6630773,45548273:25952256,6633186,0 -(1,1873:6630773,45548273:25952256,6606972,0 -r1,1873:6656987,45548273:26214,6606972,0 -[1,1873:6656987,45548273:25899828,6606972,0 -(1,1873:6656987,44958449:25899828,5427324,0 -[1,1873:7246811,44958449:24720180,5427324,0 -(1,1813:7246811,40616661:24720180,1085536,298548 -(1,1812:7246811,40616661:0,1085536,298548 -r1,1873:8753226,40616661:1506415,1384084,298548 -k1,1812:7246811,40616661:-1506415 -) -(1,1812:7246811,40616661:1506415,1085536,298548 -) -k1,1812:8960462,40616661:207236 -k1,1812:8960462,40616661:0 -k1,1812:9795534,40616661:207237 -k1,1812:11754547,40616661:207236 -k1,1812:15292323,40616661:207236 -k1,1812:17197597,40616661:207236 -k1,1812:19662549,40616661:207237 -k1,1812:22942113,40616661:207236 -k1,1812:24306059,40616661:207236 -k1,1812:26693678,40616661:207236 -k1,1812:28630410,40616661:207237 -k1,1812:31019340,40616661:207236 -k1,1812:31966991,40616661:0 -) -(1,1813:7246811,41458149:24720180,513147,134348 -k1,1812:10040909,41458149:247369 -k1,1812:10947569,41458149:247368 -k1,1812:13626979,41458149:247369 -k1,1812:15562555,41458149:247369 -k1,1812:18626005,41458149:247368 -k1,1812:21580666,41458149:247369 -k1,1812:23316357,41458149:247368 -k1,1812:24432078,41458149:247369 -k1,1812:26340129,41458149:247369 -k1,1812:27917878,41458149:247368 -k1,1812:28816675,41458149:247369 -k1,1812:31966991,41458149:0 -) -(1,1813:7246811,42299637:24720180,505283,134348 -k1,1812:9603617,42299637:198050 -k1,1812:12725228,42299637:198050 -k1,1812:15034193,42299637:198050 -k1,1812:16050132,42299637:198050 -k1,1812:17267266,42299637:198049 -k1,1812:20126733,42299637:198050 -k1,1812:22489437,42299637:198050 -k1,1812:25611048,42299637:198050 -k1,1812:27746342,42299637:198050 -k1,1812:29281326,42299637:198050 -k1,1813:31966991,42299637:0 -) -(1,1813:7246811,43141125:24720180,513147,134348 -k1,1812:8724430,43141125:138718 -k1,1812:10054593,43141125:138718 -k1,1812:10809348,43141125:138717 -k1,1812:13485620,43141125:138718 -h1,1812:13485620,43141125:0,0,0 -k1,1812:21132798,43141125:138718 -k1,1812:21803013,43141125:138718 -k1,1812:23008002,43141125:138718 -k1,1812:25275985,43141125:138718 -k1,1812:25770562,43141125:138717 -k1,1812:27493285,43141125:138718 -k1,1812:29312346,43141125:138718 -k1,1812:30102492,43141125:138718 -k1,1812:31966991,43141125:0 -) -(1,1813:7246811,43982613:24720180,513147,134348 -k1,1812:8566303,43982613:227007 -k1,1812:9409347,43982613:227006 -k1,1812:11158100,43982613:227007 -k1,1812:12332758,43982613:227007 -k1,1812:14753909,43982613:227006 -k1,1812:16172361,43982613:227007 -k1,1812:16755228,43982613:227007 -k1,1812:18841491,43982613:227007 -k1,1812:20748840,43982613:227006 -k1,1812:22312781,43982613:227007 -k1,1812:23287554,43982613:227007 -k1,1812:25986578,43982613:227006 -k1,1812:29337031,43982613:227007 -k1,1812:31966991,43982613:0 -) -(1,1813:7246811,44824101:24720180,513147,134348 -k1,1812:10567520,44824101:203817 -k1,1812:11422765,44824101:203817 -k1,1812:12645667,44824101:203817 -k1,1812:14358122,44824101:203816 -k1,1812:15221231,44824101:203817 -k1,1812:16444133,44824101:203817 -k1,1812:20623364,44824101:203817 -k1,1812:21285278,44824101:203817 -k1,1812:22020592,44824101:203817 -k1,1812:23559377,44824101:203817 -k1,1812:24414621,44824101:203816 -k1,1812:25809883,44824101:203817 -k1,1812:26961351,44824101:203817 -k1,1812:31019340,44824101:203817 -k1,1812:31966991,44824101:0 -) -] -) -] -r1,1873:32583029,45548273:26214,6606972,0 -) -] -) -) -g1,1873:32583029,44958449 -) -] -(1,1873:32583029,45706769:0,0,0 -g1,1873:32583029,45706769 -) -) -] -(1,1873:6630773,47279633:25952256,0,0 -h1,1873:6630773,47279633:25952256,0,0 -) -] -h1,1873:4262630,4025873:0,0,0 -] -!22406 +[1,1879:6630773,45706769:25952256,40108032,0 +v1,1815:6630773,6254097:0,393216,0 +(1,1815:6630773,37326489:25952256,31465608,616038 +g1,1815:6630773,37326489 +(1,1815:6630773,37326489:25952256,31465608,616038 +(1,1815:6630773,37942527:25952256,32081646,0 +[1,1815:6630773,37942527:25952256,32081646,0 +(1,1815:6630773,37916313:25952256,32055432,0 +r1,1815:6656987,37916313:26214,32055432,0 +[1,1815:6656987,37916313:25899828,32055432,0 +(1,1815:6656987,37326489:25899828,30875784,0 +[1,1815:7246811,37326489:24720180,30875784,0 +(1,1741:7246811,6963852:24720180,513147,126483 +h1,1740:7246811,6963852:983040,0,0 +k1,1740:9228638,6963852:180898 +(1,1740:9228638,6963852:0,452978,122846 +r1,1815:11697175,6963852:2468537,575824,122846 +k1,1740:9228638,6963852:-2468537 +) +(1,1740:9228638,6963852:2468537,452978,122846 +k1,1740:9228638,6963852:3277 +h1,1740:11693898,6963852:0,411205,112570 +) +k1,1740:11878073,6963852:180898 +k1,1740:14069616,6963852:180898 +k1,1740:15242074,6963852:180898 +k1,1740:17461142,6963852:180898 +k1,1740:18258077,6963852:180897 +k1,1740:21126606,6963852:180898 +k1,1740:23938775,6963852:180898 +k1,1740:26579895,6963852:180898 +k1,1740:28021050,6963852:180898 +k1,1740:28861240,6963852:180898 +k1,1740:31966991,6963852:0 +) +(1,1741:7246811,7805340:24720180,513147,126483 +g1,1740:9760116,7805340 +g1,1740:10490842,7805340 +g1,1740:11756342,7805340 +g1,1740:14337149,7805340 +g1,1740:15484029,7805340 +(1,1740:15484029,7805340:0,452978,122846 +r1,1815:17952566,7805340:2468537,575824,122846 +k1,1740:15484029,7805340:-2468537 +) +(1,1740:15484029,7805340:2468537,452978,122846 +k1,1740:15484029,7805340:3277 +h1,1740:17949289,7805340:0,411205,112570 +) +g1,1740:18151795,7805340 +k1,1741:31966991,7805340:11630881 +g1,1741:31966991,7805340 +) +v1,1743:7246811,8995806:0,393216,0 +(1,1756:7246811,12070703:24720180,3468113,196608 +g1,1756:7246811,12070703 +g1,1756:7246811,12070703 +g1,1756:7050203,12070703 +(1,1756:7050203,12070703:0,3468113,196608 +r1,1815:32163599,12070703:25113396,3664721,196608 +k1,1756:7050203,12070703:-25113396 +) +(1,1756:7050203,12070703:25113396,3468113,196608 +[1,1756:7246811,12070703:24720180,3271505,0 +(1,1745:7246811,9209716:24720180,410518,107478 +(1,1744:7246811,9209716:0,0,0 +g1,1744:7246811,9209716 +g1,1744:7246811,9209716 +g1,1744:6919131,9209716 +(1,1744:6919131,9209716:0,0,0 +) +g1,1744:7246811,9209716 +) +h1,1745:13569724,9209716:0,0,0 +k1,1745:31966992,9209716:18397268 +g1,1745:31966992,9209716 +) +(1,1749:7246811,9941430:24720180,404226,76021 +(1,1747:7246811,9941430:0,0,0 +g1,1747:7246811,9941430 +g1,1747:7246811,9941430 +g1,1747:6919131,9941430 +(1,1747:6919131,9941430:0,0,0 +) +g1,1747:7246811,9941430 +) +g1,1749:8195248,9941430 +g1,1749:9459831,9941430 +h1,1749:12621288,9941430:0,0,0 +k1,1749:31966992,9941430:19345704 +g1,1749:31966992,9941430 +) +(1,1751:7246811,11262968:24720180,388497,9436 +(1,1750:7246811,11262968:0,0,0 +g1,1750:7246811,11262968 +g1,1750:7246811,11262968 +g1,1750:6919131,11262968 +(1,1750:6919131,11262968:0,0,0 +) +g1,1750:7246811,11262968 +) +h1,1751:10724413,11262968:0,0,0 +k1,1751:31966991,11262968:21242578 +g1,1751:31966991,11262968 +) +(1,1755:7246811,11994682:24720180,404226,76021 +(1,1753:7246811,11994682:0,0,0 +g1,1753:7246811,11994682 +g1,1753:7246811,11994682 +g1,1753:6919131,11994682 +(1,1753:6919131,11994682:0,0,0 +) +g1,1753:7246811,11994682 +) +g1,1755:8195248,11994682 +g1,1755:9459831,11994682 +h1,1755:12621288,11994682:0,0,0 +k1,1755:31966992,11994682:19345704 +g1,1755:31966992,11994682 +) +] +) +g1,1756:31966991,12070703 +g1,1756:7246811,12070703 +g1,1756:7246811,12070703 +g1,1756:31966991,12070703 +g1,1756:31966991,12070703 +) +h1,1756:7246811,12267311:0,0,0 +(1,1760:7246811,13633087:24720180,505283,126483 +h1,1759:7246811,13633087:983040,0,0 +k1,1759:9003830,13633087:146144 +k1,1759:10893888,13633087:146145 +k1,1759:14556694,13633087:146144 +k1,1759:15318876,13633087:146144 +k1,1759:16484106,13633087:146145 +k1,1759:18600918,13633087:146144 +k1,1759:20615493,13633087:146144 +k1,1759:22680531,13633087:146144 +k1,1759:23439438,13633087:146145 +k1,1759:25081114,13633087:146144 +k1,1759:26383968,13633087:146144 +k1,1759:29172525,13633087:146145 +k1,1759:29850166,13633087:146144 +(1,1759:29850166,13633087:0,452978,115847 +r1,1815:31966991,13633087:2116825,568825,115847 +k1,1759:29850166,13633087:-2116825 +) +(1,1759:29850166,13633087:2116825,452978,115847 +k1,1759:29850166,13633087:3277 +h1,1759:31963714,13633087:0,411205,112570 +) +k1,1759:31966991,13633087:0 +) +(1,1760:7246811,14474575:24720180,513147,126483 +k1,1759:8512401,14474575:246505 +(1,1759:8512401,14474575:0,452978,122846 +r1,1815:10980938,14474575:2468537,575824,122846 +k1,1759:8512401,14474575:-2468537 +) +(1,1759:8512401,14474575:2468537,452978,122846 +k1,1759:8512401,14474575:3277 +h1,1759:10977661,14474575:0,411205,112570 +) +k1,1759:11227443,14474575:246505 +k1,1759:14446661,14474575:246505 +k1,1759:15684725,14474575:246504 +k1,1759:18996348,14474575:246505 +k1,1759:19894281,14474575:246505 +(1,1759:19894281,14474575:0,452978,115847 +r1,1815:22011106,14474575:2116825,568825,115847 +k1,1759:19894281,14474575:-2116825 +) +(1,1759:19894281,14474575:2116825,452978,115847 +k1,1759:19894281,14474575:3277 +h1,1759:22007829,14474575:0,411205,112570 +) +k1,1759:22257611,14474575:246505 +k1,1759:24546873,14474575:246505 +k1,1759:29030936,14474575:246505 +k1,1759:29764981,14474575:246457 +k1,1759:31966991,14474575:0 +) +(1,1760:7246811,15316063:24720180,505283,134348 +k1,1759:10917765,15316063:285364 +k1,1759:12696039,15316063:285364 +k1,1759:14047675,15316063:285365 +k1,1759:15685702,15316063:285364 +k1,1759:17633714,15316063:285364 +k1,1759:19617116,15316063:285364 +k1,1759:23307075,15316063:285364 +k1,1759:24584000,15316063:285365 +k1,1759:27028775,15316063:285364 +(1,1759:27028775,15316063:0,452978,122846 +r1,1815:29497312,15316063:2468537,575824,122846 +k1,1759:27028775,15316063:-2468537 +) +(1,1759:27028775,15316063:2468537,452978,122846 +k1,1759:27028775,15316063:3277 +h1,1759:29494035,15316063:0,411205,112570 +) +k1,1759:29782676,15316063:285364 +k1,1759:31966991,15316063:0 +) +(1,1760:7246811,16157551:24720180,513147,134348 +k1,1759:10298822,16157551:218890 +k1,1759:11133750,16157551:218890 +k1,1759:14259818,16157551:218891 +k1,1759:17206972,16157551:218890 +k1,1759:20241944,16157551:218890 +k1,1759:21745340,16157551:218890 +k1,1759:22955790,16157551:218890 +k1,1759:24220635,16157551:218890 +k1,1759:25415357,16157551:218891 +k1,1759:26285675,16157551:218890 +k1,1759:27252331,16157551:218890 +k1,1759:31280829,16157551:218890 +k1,1760:31966991,16157551:0 +) +(1,1760:7246811,16999039:24720180,505283,122846 +(1,1759:7246811,16999039:0,452978,122846 +r1,1815:9715348,16999039:2468537,575824,122846 +k1,1759:7246811,16999039:-2468537 +) +(1,1759:7246811,16999039:2468537,452978,122846 +k1,1759:7246811,16999039:3277 +h1,1759:9712071,16999039:0,411205,112570 +) +g1,1759:9914577,16999039 +k1,1760:31966992,16999039:19868100 +g1,1760:31966992,16999039 +) +v1,1762:7246811,18189505:0,393216,0 +(1,1791:7246811,27860889:24720180,10064600,196608 +g1,1791:7246811,27860889 +g1,1791:7246811,27860889 +g1,1791:7050203,27860889 +(1,1791:7050203,27860889:0,10064600,196608 +r1,1815:32163599,27860889:25113396,10261208,196608 +k1,1791:7050203,27860889:-25113396 +) +(1,1791:7050203,27860889:25113396,10064600,196608 +[1,1791:7246811,27860889:24720180,9867992,0 +(1,1764:7246811,18381394:24720180,388497,9436 +(1,1763:7246811,18381394:0,0,0 +g1,1763:7246811,18381394 +g1,1763:7246811,18381394 +g1,1763:6919131,18381394 +(1,1763:6919131,18381394:0,0,0 +) +g1,1763:7246811,18381394 +) +g1,1764:11040559,18381394 +g1,1764:11672851,18381394 +h1,1764:12621288,18381394:0,0,0 +k1,1764:31966992,18381394:19345704 +g1,1764:31966992,18381394 +) +(1,1768:7246811,19702932:24720180,410518,107478 +g1,1768:8195248,19702932 +g1,1768:10724414,19702932 +g1,1768:11672851,19702932 +g1,1768:15466599,19702932 +g1,1768:16098891,19702932 +g1,1768:17679620,19702932 +g1,1768:18944203,19702932 +g1,1768:21789514,19702932 +g1,1768:22737951,19702932 +g1,1768:25267117,19702932 +k1,1768:31966991,19702932:4170709 +g1,1768:31966991,19702932 +) +(1,1770:7246811,20369110:24720180,404226,76021 +(1,1768:7246811,20369110:0,0,0 +g1,1768:7246811,20369110 +g1,1768:7246811,20369110 +g1,1768:6919131,20369110 +(1,1768:6919131,20369110:0,0,0 +) +g1,1768:7246811,20369110 +) +g1,1770:8195248,20369110 +g1,1770:9459831,20369110 +h1,1770:10092122,20369110:0,0,0 +k1,1770:31966990,20369110:21874868 +g1,1770:31966990,20369110 +) +(1,1772:7246811,21690648:24720180,388497,9436 +(1,1771:7246811,21690648:0,0,0 +g1,1771:7246811,21690648 +g1,1771:7246811,21690648 +g1,1771:6919131,21690648 +(1,1771:6919131,21690648:0,0,0 +) +g1,1771:7246811,21690648 +) +g1,1772:11040559,21690648 +g1,1772:11672851,21690648 +h1,1772:12305142,21690648:0,0,0 +k1,1772:31966990,21690648:19661848 +g1,1772:31966990,21690648 +) +(1,1776:7246811,22422362:24720180,404226,76021 +(1,1774:7246811,22422362:0,0,0 +g1,1774:7246811,22422362 +g1,1774:7246811,22422362 +g1,1774:6919131,22422362 +(1,1774:6919131,22422362:0,0,0 +) +g1,1774:7246811,22422362 +) +g1,1776:8195248,22422362 +g1,1776:9459831,22422362 +h1,1776:12621288,22422362:0,0,0 +k1,1776:31966992,22422362:19345704 +g1,1776:31966992,22422362 +) +(1,1778:7246811,23743900:24720180,388497,9436 +(1,1777:7246811,23743900:0,0,0 +g1,1777:7246811,23743900 +g1,1777:7246811,23743900 +g1,1777:6919131,23743900 +(1,1777:6919131,23743900:0,0,0 +) +g1,1777:7246811,23743900 +) +g1,1778:11040559,23743900 +g1,1778:11672851,23743900 +h1,1778:15150453,23743900:0,0,0 +k1,1778:31966991,23743900:16816538 +g1,1778:31966991,23743900 +) +(1,1782:7246811,25065438:24720180,410518,107478 +g1,1782:8195248,25065438 +g1,1782:10724414,25065438 +g1,1782:11672851,25065438 +g1,1782:15466599,25065438 +g1,1782:16098891,25065438 +g1,1782:20208785,25065438 +g1,1782:21473368,25065438 +g1,1782:24318679,25065438 +g1,1782:25267116,25065438 +g1,1782:27796282,25065438 +k1,1782:31966991,25065438:1641544 +g1,1782:31966991,25065438 +) +(1,1784:7246811,25731616:24720180,404226,76021 +(1,1782:7246811,25731616:0,0,0 +g1,1782:7246811,25731616 +g1,1782:7246811,25731616 +g1,1782:6919131,25731616 +(1,1782:6919131,25731616:0,0,0 +) +g1,1782:7246811,25731616 +) +g1,1784:8195248,25731616 +g1,1784:9459831,25731616 +h1,1784:10092122,25731616:0,0,0 +k1,1784:31966990,25731616:21874868 +g1,1784:31966990,25731616 +) +(1,1786:7246811,27053154:24720180,388497,9436 +(1,1785:7246811,27053154:0,0,0 +g1,1785:7246811,27053154 +g1,1785:7246811,27053154 +g1,1785:6919131,27053154 +(1,1785:6919131,27053154:0,0,0 +) +g1,1785:7246811,27053154 +) +g1,1786:11040559,27053154 +g1,1786:11672851,27053154 +h1,1786:14834308,27053154:0,0,0 +k1,1786:31966992,27053154:17132684 +g1,1786:31966992,27053154 +) +(1,1790:7246811,27784868:24720180,404226,76021 +(1,1788:7246811,27784868:0,0,0 +g1,1788:7246811,27784868 +g1,1788:7246811,27784868 +g1,1788:6919131,27784868 +(1,1788:6919131,27784868:0,0,0 +) +g1,1788:7246811,27784868 +) +g1,1790:8195248,27784868 +g1,1790:9459831,27784868 +h1,1790:13253579,27784868:0,0,0 +k1,1790:31966991,27784868:18713412 +g1,1790:31966991,27784868 +) +] +) +g1,1791:31966991,27860889 +g1,1791:7246811,27860889 +g1,1791:7246811,27860889 +g1,1791:31966991,27860889 +g1,1791:31966991,27860889 +) +h1,1791:7246811,28057497:0,0,0 +(1,1795:7246811,29423273:24720180,513147,126483 +h1,1794:7246811,29423273:983040,0,0 +k1,1794:9380791,29423273:197391 +k1,1794:10603164,29423273:197390 +k1,1794:12184675,29423273:197391 +k1,1794:13666571,29423273:197390 +k1,1794:14883047,29423273:197391 +k1,1794:19866531,29423273:197390 +k1,1794:22810536,29423273:197391 +(1,1794:22810536,29423273:0,424981,115847 +r1,1815:23168802,29423273:358266,540828,115847 +k1,1794:22810536,29423273:-358266 +) +(1,1794:22810536,29423273:358266,424981,115847 +k1,1794:22810536,29423273:3277 +h1,1794:23165525,29423273:0,411205,112570 +) +k1,1794:23366193,29423273:197391 +k1,1794:25522454,29423273:197390 +k1,1794:26738930,29423273:197391 +k1,1794:30321910,29423273:197390 +k1,1794:31178593,29423273:197391 +k1,1794:31966991,29423273:0 +) +(1,1795:7246811,30264761:24720180,513147,134348 +k1,1794:10866036,30264761:216596 +k1,1794:11734059,30264761:216595 +(1,1794:11734059,30264761:0,452978,115847 +r1,1815:13850884,30264761:2116825,568825,115847 +k1,1794:11734059,30264761:-2116825 +) +(1,1794:11734059,30264761:2116825,452978,115847 +k1,1794:11734059,30264761:3277 +h1,1794:13847607,30264761:0,411205,112570 +) +k1,1794:14241150,30264761:216596 +k1,1794:17290866,30264761:216595 +k1,1794:18123500,30264761:216596 +k1,1794:19149465,30264761:216595 +k1,1794:22277169,30264761:216595 +k1,1794:23121600,30264761:216596 +k1,1794:26143137,30264761:216596 +k1,1794:27045894,30264761:216595 +k1,1794:28702316,30264761:216596 +k1,1794:30947906,30264761:216595 +k1,1794:31966991,30264761:0 +) +(1,1795:7246811,31106249:24720180,513147,134348 +g1,1794:11928047,31106249 +g1,1794:14873890,31106249 +(1,1794:14873890,31106249:0,414482,115847 +r1,1815:15232156,31106249:358266,530329,115847 +k1,1794:14873890,31106249:-358266 +) +(1,1794:14873890,31106249:358266,414482,115847 +k1,1794:14873890,31106249:3277 +h1,1794:15228879,31106249:0,411205,112570 +) +g1,1794:15431385,31106249 +g1,1794:18371985,31106249 +g1,1794:19380584,31106249 +g1,1794:22140305,31106249 +g1,1794:25172655,31106249 +g1,1794:25987922,31106249 +k1,1795:31966991,31106249:3067960 +g1,1795:31966991,31106249 +) +v1,1797:7246811,32296715:0,393216,0 +(1,1812:7246811,36605593:24720180,4702094,196608 +g1,1812:7246811,36605593 +g1,1812:7246811,36605593 +g1,1812:7050203,36605593 +(1,1812:7050203,36605593:0,4702094,196608 +r1,1815:32163599,36605593:25113396,4898702,196608 +k1,1812:7050203,36605593:-25113396 +) +(1,1812:7050203,36605593:25113396,4702094,196608 +[1,1812:7246811,36605593:24720180,4505486,0 +(1,1799:7246811,32488604:24720180,388497,9436 +(1,1798:7246811,32488604:0,0,0 +g1,1798:7246811,32488604 +g1,1798:7246811,32488604 +g1,1798:6919131,32488604 +(1,1798:6919131,32488604:0,0,0 +) +g1,1798:7246811,32488604 +) +g1,1799:11040559,32488604 +g1,1799:11672851,32488604 +h1,1799:15150453,32488604:0,0,0 +k1,1799:31966991,32488604:16816538 +g1,1799:31966991,32488604 +) +(1,1803:7246811,33810142:24720180,410518,107478 +g1,1803:8195248,33810142 +g1,1803:10724414,33810142 +g1,1803:11672851,33810142 +g1,1803:15466599,33810142 +g1,1803:16098891,33810142 +g1,1803:20208785,33810142 +g1,1803:21473368,33810142 +g1,1803:24318679,33810142 +g1,1803:25267116,33810142 +g1,1803:27796282,33810142 +k1,1803:31966991,33810142:1641544 +g1,1803:31966991,33810142 +) +(1,1805:7246811,34476320:24720180,404226,76021 +(1,1803:7246811,34476320:0,0,0 +g1,1803:7246811,34476320 +g1,1803:7246811,34476320 +g1,1803:6919131,34476320 +(1,1803:6919131,34476320:0,0,0 +) +g1,1803:7246811,34476320 +) +g1,1805:8195248,34476320 +g1,1805:9459831,34476320 +h1,1805:10092122,34476320:0,0,0 +k1,1805:31966990,34476320:21874868 +g1,1805:31966990,34476320 +) +(1,1807:7246811,35797858:24720180,388497,9436 +(1,1806:7246811,35797858:0,0,0 +g1,1806:7246811,35797858 +g1,1806:7246811,35797858 +g1,1806:6919131,35797858 +(1,1806:6919131,35797858:0,0,0 +) +g1,1806:7246811,35797858 +) +h1,1807:11672850,35797858:0,0,0 +k1,1807:31966990,35797858:20294140 +g1,1807:31966990,35797858 +) +(1,1811:7246811,36529572:24720180,404226,76021 +(1,1809:7246811,36529572:0,0,0 +g1,1809:7246811,36529572 +g1,1809:7246811,36529572 +g1,1809:6919131,36529572 +(1,1809:6919131,36529572:0,0,0 +) +g1,1809:7246811,36529572 +) +g1,1811:8195248,36529572 +g1,1811:9459831,36529572 +h1,1811:13253579,36529572:0,0,0 +k1,1811:31966991,36529572:18713412 +g1,1811:31966991,36529572 +) +] +) +g1,1812:31966991,36605593 +g1,1812:7246811,36605593 +g1,1812:7246811,36605593 +g1,1812:31966991,36605593 +g1,1812:31966991,36605593 +) +h1,1812:7246811,36802201:0,0,0 +] +) +] +r1,1815:32583029,37916313:26214,32055432,0 +) +] +) +) +g1,1815:32583029,37326489 +) +h1,1815:6630773,37942527:0,0,0 +v1,1818:6630773,39308303:0,393216,0 +(1,1879:6630773,44958449:25952256,6043362,589824 +g1,1879:6630773,44958449 +(1,1879:6630773,44958449:25952256,6043362,589824 +(1,1879:6630773,45548273:25952256,6633186,0 +[1,1879:6630773,45548273:25952256,6633186,0 +(1,1879:6630773,45548273:25952256,6606972,0 +r1,1879:6656987,45548273:26214,6606972,0 +[1,1879:6656987,45548273:25899828,6606972,0 +(1,1879:6656987,44958449:25899828,5427324,0 +[1,1879:7246811,44958449:24720180,5427324,0 +(1,1819:7246811,40616661:24720180,1085536,298548 +(1,1818:7246811,40616661:0,1085536,298548 +r1,1879:8753226,40616661:1506415,1384084,298548 +k1,1818:7246811,40616661:-1506415 +) +(1,1818:7246811,40616661:1506415,1085536,298548 +) +k1,1818:8960462,40616661:207236 +k1,1818:8960462,40616661:0 +k1,1818:9795534,40616661:207237 +k1,1818:11754547,40616661:207236 +k1,1818:15292323,40616661:207236 +k1,1818:17197597,40616661:207236 +k1,1818:19662549,40616661:207237 +k1,1818:22942113,40616661:207236 +k1,1818:24306059,40616661:207236 +k1,1818:26693678,40616661:207236 +k1,1818:28630410,40616661:207237 +k1,1818:31019340,40616661:207236 +k1,1818:31966991,40616661:0 +) +(1,1819:7246811,41458149:24720180,513147,134348 +k1,1818:10040909,41458149:247369 +k1,1818:10947569,41458149:247368 +k1,1818:13626979,41458149:247369 +k1,1818:15562555,41458149:247369 +k1,1818:18626005,41458149:247368 +k1,1818:21580666,41458149:247369 +k1,1818:23316357,41458149:247368 +k1,1818:24432078,41458149:247369 +k1,1818:26340129,41458149:247369 +k1,1818:27917878,41458149:247368 +k1,1818:28816675,41458149:247369 +k1,1818:31966991,41458149:0 +) +(1,1819:7246811,42299637:24720180,505283,134348 +k1,1818:9603617,42299637:198050 +k1,1818:12725228,42299637:198050 +k1,1818:15034193,42299637:198050 +k1,1818:16050132,42299637:198050 +k1,1818:17267266,42299637:198049 +k1,1818:20126733,42299637:198050 +k1,1818:22489437,42299637:198050 +k1,1818:25611048,42299637:198050 +k1,1818:27746342,42299637:198050 +k1,1818:29281326,42299637:198050 +k1,1819:31966991,42299637:0 +) +(1,1819:7246811,43141125:24720180,513147,134348 +k1,1818:8724430,43141125:138718 +k1,1818:10054593,43141125:138718 +k1,1818:10809348,43141125:138717 +k1,1818:13485620,43141125:138718 +h1,1818:13485620,43141125:0,0,0 +k1,1818:21132798,43141125:138718 +k1,1818:21803013,43141125:138718 +k1,1818:23008002,43141125:138718 +k1,1818:25275985,43141125:138718 +k1,1818:25770562,43141125:138717 +k1,1818:27493285,43141125:138718 +k1,1818:29312346,43141125:138718 +k1,1818:30102492,43141125:138718 +k1,1818:31966991,43141125:0 +) +(1,1819:7246811,43982613:24720180,513147,134348 +k1,1818:8566303,43982613:227007 +k1,1818:9409347,43982613:227006 +k1,1818:11158100,43982613:227007 +k1,1818:12332758,43982613:227007 +k1,1818:14753909,43982613:227006 +k1,1818:16172361,43982613:227007 +k1,1818:16755228,43982613:227007 +k1,1818:18841491,43982613:227007 +k1,1818:20748840,43982613:227006 +k1,1818:22312781,43982613:227007 +k1,1818:23287554,43982613:227007 +k1,1818:25986578,43982613:227006 +k1,1818:29337031,43982613:227007 +k1,1818:31966991,43982613:0 +) +(1,1819:7246811,44824101:24720180,513147,134348 +k1,1818:10567520,44824101:203817 +k1,1818:11422765,44824101:203817 +k1,1818:12645667,44824101:203817 +k1,1818:14358122,44824101:203816 +k1,1818:15221231,44824101:203817 +k1,1818:16444133,44824101:203817 +k1,1818:20623364,44824101:203817 +k1,1818:21285278,44824101:203817 +k1,1818:22020592,44824101:203817 +k1,1818:23559377,44824101:203817 +k1,1818:24414621,44824101:203816 +k1,1818:25809883,44824101:203817 +k1,1818:26961351,44824101:203817 +k1,1818:31019340,44824101:203817 +k1,1818:31966991,44824101:0 +) +] +) +] +r1,1879:32583029,45548273:26214,6606972,0 +) +] +) +) +g1,1879:32583029,44958449 +) +] +(1,1879:32583029,45706769:0,0,0 +g1,1879:32583029,45706769 +) +) +] +(1,1879:6630773,47279633:25952256,0,0 +h1,1879:6630773,47279633:25952256,0,0 +) +] +h1,1879:4262630,4025873:0,0,0 +] +!22407 }46 !11 {47 -[1,1925:4262630,47279633:28320399,43253760,0 -(1,1925:4262630,4025873:0,0,0 -[1,1925:-473657,4025873:25952256,0,0 -(1,1925:-473657,-710414:25952256,0,0 -h1,1925:-473657,-710414:0,0,0 -(1,1925:-473657,-710414:0,0,0 -(1,1925:-473657,-710414:0,0,0 -g1,1925:-473657,-710414 -(1,1925:-473657,-710414:65781,0,65781 -g1,1925:-407876,-710414 -[1,1925:-407876,-644633:0,0,0 +[1,1931:4262630,47279633:28320399,43253760,0 +(1,1931:4262630,4025873:0,0,0 +[1,1931:-473657,4025873:25952256,0,0 +(1,1931:-473657,-710414:25952256,0,0 +h1,1931:-473657,-710414:0,0,0 +(1,1931:-473657,-710414:0,0,0 +(1,1931:-473657,-710414:0,0,0 +g1,1931:-473657,-710414 +(1,1931:-473657,-710414:65781,0,65781 +g1,1931:-407876,-710414 +[1,1931:-407876,-644633:0,0,0 ] ) -k1,1925:-473657,-710414:-65781 +k1,1931:-473657,-710414:-65781 ) ) -k1,1925:25478599,-710414:25952256 -g1,1925:25478599,-710414 +k1,1931:25478599,-710414:25952256 +g1,1931:25478599,-710414 ) ] ) -[1,1925:6630773,47279633:25952256,43253760,0 -[1,1925:6630773,4812305:25952256,786432,0 -(1,1925:6630773,4812305:25952256,505283,134348 -(1,1925:6630773,4812305:25952256,505283,134348 -g1,1925:3078558,4812305 -[1,1925:3078558,4812305:0,0,0 -(1,1925:3078558,2439708:0,1703936,0 -k1,1925:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,1925:2537886,2439708:1179648,16384,0 +[1,1931:6630773,47279633:25952256,43253760,0 +[1,1931:6630773,4812305:25952256,786432,0 +(1,1931:6630773,4812305:25952256,505283,134348 +(1,1931:6630773,4812305:25952256,505283,134348 +g1,1931:3078558,4812305 +[1,1931:3078558,4812305:0,0,0 +(1,1931:3078558,2439708:0,1703936,0 +k1,1931:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,1931:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,1925:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,1931:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,1925:3078558,4812305:0,0,0 -(1,1925:3078558,2439708:0,1703936,0 -g1,1925:29030814,2439708 -g1,1925:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,1925:36151628,1915420:16384,1179648,0 +[1,1931:3078558,4812305:0,0,0 +(1,1931:3078558,2439708:0,1703936,0 +g1,1931:29030814,2439708 +g1,1931:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,1931:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,1925:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,1931:37855564,2439708:1179648,16384,0 ) ) -k1,1925:3078556,2439708:-34777008 +k1,1931:3078556,2439708:-34777008 ) ] -[1,1925:3078558,4812305:0,0,0 -(1,1925:3078558,49800853:0,16384,2228224 -k1,1925:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,1925:2537886,49800853:1179648,16384,0 +[1,1931:3078558,4812305:0,0,0 +(1,1931:3078558,49800853:0,16384,2228224 +k1,1931:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,1931:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,1925:3078558,51504789:16384,1179648,0 -) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 -) -] -) -) -) -] -[1,1925:3078558,4812305:0,0,0 -(1,1925:3078558,49800853:0,16384,2228224 -g1,1925:29030814,49800853 -g1,1925:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,1925:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,1925:37855564,49800853:1179648,16384,0 -) -) -k1,1925:3078556,49800853:-34777008 -) -] -g1,1925:6630773,4812305 -k1,1925:19562994,4812305:12135303 -g1,1925:20949735,4812305 -g1,1925:21598541,4812305 -g1,1925:24912696,4812305 -g1,1925:27600327,4812305 -g1,1925:29010006,4812305 -) -) -] -[1,1925:6630773,45706769:25952256,40108032,0 -(1,1925:6630773,45706769:25952256,40108032,0 -(1,1925:6630773,45706769:0,0,0 -g1,1925:6630773,45706769 -) -[1,1925:6630773,45706769:25952256,40108032,0 -v1,1873:6630773,6254097:0,393216,0 -(1,1873:6630773,28502746:25952256,22641865,616038 -g1,1873:6630773,28502746 -(1,1873:6630773,28502746:25952256,22641865,616038 -(1,1873:6630773,29118784:25952256,23257903,0 -[1,1873:6630773,29118784:25952256,23257903,0 -(1,1873:6630773,29092570:25952256,23231689,0 -r1,1873:6656987,29092570:26214,23231689,0 -[1,1873:6656987,29092570:25899828,23231689,0 -(1,1873:6656987,28502746:25899828,22052041,0 -[1,1873:7246811,28502746:24720180,22052041,0 -(1,1813:7246811,6963852:24720180,513147,134348 -k1,1812:10103151,6963852:194923 -k1,1812:12033466,6963852:194922 -h1,1812:12033466,6963852:0,0,0 -k1,1812:12815288,6963852:386640 -k1,1812:13992292,6963852:386640 -k1,1812:15372761,6963852:194923 -k1,1812:17894867,6963852:194923 -k1,1812:18749081,6963852:194922 -h1,1812:18749081,6963852:0,0,0 -k1,1812:19530903,6963852:386640 -k1,1812:20707907,6963852:386640 -k1,1812:22262046,6963852:194923 -k1,1812:22934726,6963852:194923 -k1,1812:24332889,6963852:194922 -k1,1812:25059309,6963852:194923 -k1,1812:26320503,6963852:194923 -k1,1812:29319055,6963852:194922 -k1,1812:30947906,6963852:194923 -k1,1812:31966991,6963852:0 -) -(1,1813:7246811,7805340:24720180,505283,134348 -k1,1812:8941386,7805340:172829 -k1,1812:11294597,7805340:172828 -k1,1812:12215192,7805340:172829 -k1,1812:13965472,7805340:172828 -k1,1812:17079557,7805340:172829 -k1,1812:18774131,7805340:172828 -k1,1812:20093185,7805340:172829 -h1,1812:20093185,7805340:0,0,0 -k1,1812:20831181,7805340:342814 -k1,1812:21964360,7805340:342815 -k1,1812:23322735,7805340:172829 -k1,1812:24889514,7805340:172828 -h1,1812:24889514,7805340:0,0,0 -k1,1812:27208239,7805340:342815 -k1,1812:27946236,7805340:342815 -k1,1812:29869778,7805340:342814 -k1,1812:30607775,7805340:342815 -k1,1812:31966991,7805340:0 -) -(1,1813:7246811,8646828:24720180,505283,126483 -k1,1812:10242620,8646828:205941 -(1,1812:10242620,8646828:0,452978,115847 -r1,1873:12007733,8646828:1765113,568825,115847 -k1,1812:10242620,8646828:-1765113 -) -(1,1812:10242620,8646828:1765113,452978,115847 -k1,1812:10242620,8646828:3277 -h1,1812:12004456,8646828:0,411205,112570 -) -k1,1812:12213674,8646828:205941 -k1,1812:14760561,8646828:205941 -k1,1812:15985587,8646828:205941 -k1,1812:18896854,8646828:205941 -k1,1812:20956808,8646828:205940 -k1,1812:21778787,8646828:205941 -k1,1812:24397764,8646828:205941 -k1,1812:26732314,8646828:205941 -k1,1812:28984289,8646828:205941 -k1,1812:29956346,8646828:205941 -k1,1812:31966991,8646828:0 -) -(1,1813:7246811,9488316:24720180,513147,134348 -k1,1812:9991896,9488316:235711 -k1,1812:10910493,9488316:235712 -k1,1812:12740040,9488316:235711 -k1,1812:13737279,9488316:235711 -k1,1812:16856574,9488316:235711 -k1,1812:18111371,9488316:235712 -k1,1812:19667632,9488316:235711 -k1,1812:20562635,9488316:235711 -k1,1812:23453209,9488316:235711 -k1,1812:25873236,9488316:235712 -k1,1812:26791832,9488316:235711 -k1,1812:27643581,9488316:235711 -k1,1812:31966991,9488316:0 -) -(1,1813:7246811,10329804:24720180,505283,95027 -g1,1812:10135638,10329804 -$1,1812:10135638,10329804 -g1,1812:11309257,10329804 -g1,1812:12059514,10329804 -g1,1812:12449611,10329804 -g1,1812:13163456,10329804 -$1,1812:13910566,10329804 -k1,1813:31966992,10329804:17882756 -g1,1813:31966992,10329804 -) -v1,1815:7246811,11520270:0,393216,0 -(1,1828:7246811,14588875:24720180,3461821,196608 -g1,1828:7246811,14588875 -g1,1828:7246811,14588875 -g1,1828:7050203,14588875 -(1,1828:7050203,14588875:0,3461821,196608 -r1,1873:32163599,14588875:25113396,3658429,196608 -k1,1828:7050203,14588875:-25113396 -) -(1,1828:7050203,14588875:25113396,3461821,196608 -[1,1828:7246811,14588875:24720180,3265213,0 -(1,1817:7246811,11727888:24720180,404226,101187 -(1,1816:7246811,11727888:0,0,0 -g1,1816:7246811,11727888 -g1,1816:7246811,11727888 -g1,1816:6919131,11727888 -(1,1816:6919131,11727888:0,0,0 -) -g1,1816:7246811,11727888 -) -g1,1817:7879103,11727888 -g1,1817:8827540,11727888 -g1,1817:10092123,11727888 -g1,1817:10724415,11727888 -g1,1817:11988998,11727888 -g1,1817:13253581,11727888 -g1,1817:15466601,11727888 -k1,1817:15466601,11727888:18350 -h1,1817:16749534,11727888:0,0,0 -k1,1817:31966991,11727888:15217457 -g1,1817:31966991,11727888 -) -(1,1821:7246811,12459602:24720180,404226,76021 -(1,1819:7246811,12459602:0,0,0 -g1,1819:7246811,12459602 -g1,1819:7246811,12459602 -g1,1819:6919131,12459602 -(1,1819:6919131,12459602:0,0,0 -) -g1,1819:7246811,12459602 -) -g1,1821:8195248,12459602 -g1,1821:8511394,12459602 -g1,1821:9775977,12459602 -g1,1821:11672851,12459602 -g1,1821:13569725,12459602 -g1,1821:15466599,12459602 -g1,1821:17363473,12459602 -g1,1821:19260347,12459602 -g1,1821:21157221,12459602 -g1,1821:23054095,12459602 -g1,1821:24950969,12459602 -g1,1821:26847843,12459602 -h1,1821:28428571,12459602:0,0,0 -k1,1821:31966991,12459602:3538420 -g1,1821:31966991,12459602 -) -(1,1823:7246811,13781140:24720180,410518,101187 -(1,1822:7246811,13781140:0,0,0 -g1,1822:7246811,13781140 -g1,1822:7246811,13781140 -g1,1822:6919131,13781140 -(1,1822:6919131,13781140:0,0,0 -) -g1,1822:7246811,13781140 -) -k1,1823:7246811,13781140:0 -g1,1823:9459831,13781140 -g1,1823:10092123,13781140 -g1,1823:11988997,13781140 -g1,1823:12621289,13781140 -g1,1823:13569726,13781140 -k1,1823:13569726,13781140:23593 -h1,1823:15174047,13781140:0,0,0 -k1,1823:31966991,13781140:16792944 -g1,1823:31966991,13781140 -) -(1,1827:7246811,14512854:24720180,404226,76021 -(1,1825:7246811,14512854:0,0,0 -g1,1825:7246811,14512854 -g1,1825:7246811,14512854 -g1,1825:6919131,14512854 -(1,1825:6919131,14512854:0,0,0 -) -g1,1825:7246811,14512854 -) -g1,1827:8195248,14512854 -g1,1827:8511394,14512854 -g1,1827:9775977,14512854 -g1,1827:11672851,14512854 -g1,1827:13569725,14512854 -g1,1827:15466599,14512854 -g1,1827:17363473,14512854 -g1,1827:19260347,14512854 -g1,1827:21157221,14512854 -g1,1827:23054095,14512854 -g1,1827:24950969,14512854 -g1,1827:26847843,14512854 -h1,1827:28428571,14512854:0,0,0 -k1,1827:31966991,14512854:3538420 -g1,1827:31966991,14512854 -) -] -) -g1,1828:31966991,14588875 -g1,1828:7246811,14588875 -g1,1828:7246811,14588875 -g1,1828:31966991,14588875 -g1,1828:31966991,14588875 -) -h1,1828:7246811,14785483:0,0,0 -v1,1832:7246811,16500237:0,393216,0 -(1,1869:7246811,27781850:24720180,11674829,196608 -g1,1869:7246811,27781850 -g1,1869:7246811,27781850 -g1,1869:7050203,27781850 -(1,1869:7050203,27781850:0,11674829,196608 -r1,1873:32163599,27781850:25113396,11871437,196608 -k1,1869:7050203,27781850:-25113396 -) -(1,1869:7050203,27781850:25113396,11674829,196608 -[1,1869:7246811,27781850:24720180,11478221,0 -(1,1834:7246811,16707855:24720180,404226,107478 -(1,1833:7246811,16707855:0,0,0 -g1,1833:7246811,16707855 -g1,1833:7246811,16707855 -g1,1833:6919131,16707855 -(1,1833:6919131,16707855:0,0,0 -) -g1,1833:7246811,16707855 -) -k1,1834:7246811,16707855:0 -g1,1834:9775977,16707855 -g1,1834:10724414,16707855 -g1,1834:11988997,16707855 -g1,1834:12621289,16707855 -g1,1834:14518163,16707855 -g1,1834:15466600,16707855 -g1,1834:18311912,16707855 -g1,1834:19576495,16707855 -k1,1834:19576495,16707855:0 -h1,1834:22105660,16707855:0,0,0 -k1,1834:31966991,16707855:9861331 -g1,1834:31966991,16707855 -) -(1,1838:7246811,17439569:24720180,404226,76021 -(1,1836:7246811,17439569:0,0,0 -g1,1836:7246811,17439569 -g1,1836:7246811,17439569 -g1,1836:6919131,17439569 -(1,1836:6919131,17439569:0,0,0 -) -g1,1836:7246811,17439569 -) -g1,1838:8195248,17439569 -g1,1838:9459831,17439569 -h1,1838:11040559,17439569:0,0,0 -k1,1838:31966991,17439569:20926432 -g1,1838:31966991,17439569 -) -(1,1840:7246811,18761107:24720180,404226,101187 -(1,1839:7246811,18761107:0,0,0 -g1,1839:7246811,18761107 -g1,1839:7246811,18761107 -g1,1839:6919131,18761107 -(1,1839:6919131,18761107:0,0,0 -) -g1,1839:7246811,18761107 -) -k1,1840:7246811,18761107:0 -g1,1840:9143686,18761107 -g1,1840:9775978,18761107 -g1,1840:11040561,18761107 -g1,1840:11988998,18761107 -h1,1840:12937435,18761107:0,0,0 -k1,1840:31966991,18761107:19029556 -g1,1840:31966991,18761107 -) -(1,1844:7246811,19492821:24720180,404226,76021 -(1,1842:7246811,19492821:0,0,0 -g1,1842:7246811,19492821 -g1,1842:7246811,19492821 -g1,1842:6919131,19492821 -(1,1842:6919131,19492821:0,0,0 -) -g1,1842:7246811,19492821 -) -g1,1844:8195248,19492821 -g1,1844:9459831,19492821 -h1,1844:11040559,19492821:0,0,0 -k1,1844:31966991,19492821:20926432 -g1,1844:31966991,19492821 -) -(1,1846:7246811,20814359:24720180,404226,101187 -(1,1845:7246811,20814359:0,0,0 -g1,1845:7246811,20814359 -g1,1845:7246811,20814359 -g1,1845:6919131,20814359 -(1,1845:6919131,20814359:0,0,0 -) -g1,1845:7246811,20814359 -) -k1,1846:7246811,20814359:0 -g1,1846:11356705,20814359 -g1,1846:11988997,20814359 -k1,1846:11988997,20814359:0 -h1,1846:13569725,20814359:0,0,0 -k1,1846:31966991,20814359:18397266 -g1,1846:31966991,20814359 -) -(1,1850:7246811,21546073:24720180,404226,76021 -(1,1848:7246811,21546073:0,0,0 -g1,1848:7246811,21546073 -g1,1848:7246811,21546073 -g1,1848:6919131,21546073 -(1,1848:6919131,21546073:0,0,0 -) -g1,1848:7246811,21546073 -) -g1,1850:8195248,21546073 -g1,1850:9459831,21546073 -h1,1850:10724414,21546073:0,0,0 -k1,1850:31966990,21546073:21242576 -g1,1850:31966990,21546073 -) -(1,1852:7246811,22867611:24720180,404226,101187 -(1,1851:7246811,22867611:0,0,0 -g1,1851:7246811,22867611 -g1,1851:7246811,22867611 -g1,1851:6919131,22867611 -(1,1851:6919131,22867611:0,0,0 -) -g1,1851:7246811,22867611 -) -k1,1852:7246811,22867611:0 -g1,1852:10408269,22867611 -g1,1852:11040561,22867611 -g1,1852:12621290,22867611 -g1,1852:13253582,22867611 -k1,1852:13253582,22867611:0 -h1,1852:14834310,22867611:0,0,0 -k1,1852:31966990,22867611:17132680 -g1,1852:31966990,22867611 -) -(1,1856:7246811,23599325:24720180,404226,76021 -(1,1854:7246811,23599325:0,0,0 -g1,1854:7246811,23599325 -g1,1854:7246811,23599325 -g1,1854:6919131,23599325 -(1,1854:6919131,23599325:0,0,0 -) -g1,1854:7246811,23599325 -) -g1,1856:8195248,23599325 -g1,1856:9459831,23599325 -h1,1856:10724414,23599325:0,0,0 -k1,1856:31966990,23599325:21242576 -g1,1856:31966990,23599325 -) -(1,1858:7246811,24920863:24720180,404226,101187 -(1,1857:7246811,24920863:0,0,0 -g1,1857:7246811,24920863 -g1,1857:7246811,24920863 -g1,1857:6919131,24920863 -(1,1857:6919131,24920863:0,0,0 -) -g1,1857:7246811,24920863 -) -k1,1858:7246811,24920863:0 -h1,1858:9459831,24920863:0,0,0 -k1,1858:31966991,24920863:22507160 -g1,1858:31966991,24920863 -) -(1,1862:7246811,25652577:24720180,404226,76021 -(1,1860:7246811,25652577:0,0,0 -g1,1860:7246811,25652577 -g1,1860:7246811,25652577 -g1,1860:6919131,25652577 -(1,1860:6919131,25652577:0,0,0 -) -g1,1860:7246811,25652577 -) -g1,1862:8195248,25652577 -g1,1862:9459831,25652577 -k1,1862:9459831,25652577:0 -h1,1862:13253579,25652577:0,0,0 -k1,1862:31966991,25652577:18713412 -g1,1862:31966991,25652577 -) -(1,1864:7246811,26974115:24720180,404226,101187 -(1,1863:7246811,26974115:0,0,0 -g1,1863:7246811,26974115 -g1,1863:7246811,26974115 -g1,1863:6919131,26974115 -(1,1863:6919131,26974115:0,0,0 -) -g1,1863:7246811,26974115 -) -k1,1864:7246811,26974115:0 -g1,1864:9143686,26974115 -g1,1864:9775978,26974115 -h1,1864:10724415,26974115:0,0,0 -k1,1864:31966991,26974115:21242576 -g1,1864:31966991,26974115 -) -(1,1868:7246811,27705829:24720180,404226,76021 -(1,1866:7246811,27705829:0,0,0 -g1,1866:7246811,27705829 -g1,1866:7246811,27705829 -g1,1866:6919131,27705829 -(1,1866:6919131,27705829:0,0,0 -) -g1,1866:7246811,27705829 -) -g1,1868:8195248,27705829 -g1,1868:9459831,27705829 -k1,1868:9459831,27705829:0 -h1,1868:13569725,27705829:0,0,0 -k1,1868:31966991,27705829:18397266 -g1,1868:31966991,27705829 -) -] -) -g1,1869:31966991,27781850 -g1,1869:7246811,27781850 -g1,1869:7246811,27781850 -g1,1869:31966991,27781850 -g1,1869:31966991,27781850 -) -h1,1869:7246811,27978458:0,0,0 -] -) -] -r1,1873:32583029,29092570:26214,23231689,0 -) -] -) -) -g1,1873:32583029,28502746 -) -h1,1873:6630773,29118784:0,0,0 -(1,1878:6630773,32450640:25952256,32768,229376 -(1,1878:6630773,32450640:0,32768,229376 -(1,1878:6630773,32450640:5505024,32768,229376 -r1,1878:12135797,32450640:5505024,262144,229376 -) -k1,1878:6630773,32450640:-5505024 -) -(1,1878:6630773,32450640:25952256,32768,0 -r1,1878:32583029,32450640:25952256,32768,0 -) -) -(1,1878:6630773,34054968:25952256,606339,151780 -(1,1878:6630773,34054968:1974731,582746,14155 -g1,1878:6630773,34054968 -g1,1878:8605504,34054968 -) -g1,1878:10448114,34054968 -g1,1878:12157817,34054968 -g1,1878:13563171,34054968 -k1,1878:32583029,34054968:14806155 -g1,1878:32583029,34054968 -) -(1,1882:6630773,35289672:25952256,513147,134348 -k1,1881:8077963,35289672:250503 -k1,1881:8743257,35289672:250451 -k1,1881:11836056,35289672:250503 -k1,1881:14943273,35289672:250503 -k1,1881:16128319,35289672:250503 -k1,1881:19783416,35289672:250502 -k1,1881:20843289,35289672:250503 -k1,1881:23575640,35289672:250503 -k1,1881:25383934,35289672:250503 -k1,1881:26738719,35289672:250503 -k1,1881:27736987,35289672:250502 -k1,1881:29964711,35289672:250503 -k1,1881:30831252,35289672:250503 -k1,1881:32583029,35289672:0 -) -(1,1882:6630773,36131160:25952256,513147,134348 -k1,1881:9628980,36131160:235864 -k1,1881:12564272,36131160:235864 -k1,1881:14498173,36131160:235863 -k1,1881:18969629,36131160:235864 -k1,1881:20396938,36131160:235864 -k1,1881:24036087,36131160:235864 -k1,1881:26580129,36131160:235864 -k1,1881:27475284,36131160:235863 -k1,1881:29895463,36131160:235864 -k1,1881:30759162,36131160:235864 -k1,1882:32583029,36131160:0 -) -(1,1882:6630773,36972648:25952256,513147,134348 -k1,1881:9883793,36972648:207562 -k1,1881:10549452,36972648:207562 -k1,1881:11288511,36972648:207562 -k1,1881:13390718,36972648:207561 -k1,1881:14545931,36972648:207562 -k1,1881:17588580,36972648:207562 -k1,1881:18447570,36972648:207562 -k1,1881:20130347,36972648:207562 -k1,1881:23312588,36972648:207562 -k1,1881:25828328,36972648:207562 -k1,1881:26695181,36972648:207561 -k1,1881:28386478,36972648:207562 -k1,1881:30084984,36972648:207562 -k1,1881:31246095,36972648:207562 -k1,1881:32583029,36972648:0 -) -(1,1882:6630773,37814136:25952256,513147,126483 -k1,1881:8348864,37814136:242876 -k1,1881:8947601,37814136:242877 -k1,1881:11168354,37814136:242876 -k1,1881:12358882,37814136:242877 -k1,1881:14053380,37814136:242876 -k1,1881:14955548,37814136:242876 -k1,1881:15554285,37814136:242877 -k1,1881:16731704,37814136:242876 -k1,1881:17633873,37814136:242877 -k1,1881:20639092,37814136:242876 -k1,1881:23665282,37814136:242876 -k1,1881:25099604,37814136:242877 -k1,1881:26872746,37814136:242876 -k1,1881:27767051,37814136:242877 -k1,1881:30770303,37814136:242876 -k1,1881:32583029,37814136:0 -) -(1,1882:6630773,38655624:25952256,505283,134348 -g1,1881:9764704,38655624 -g1,1881:10832285,38655624 -g1,1881:12519837,38655624 -g1,1881:13480594,38655624 -g1,1881:15415216,38655624 -g1,1881:15970305,38655624 -g1,1881:17819731,38655624 -g1,1881:21007402,38655624 -g1,1881:24041718,38655624 -g1,1881:27079967,38655624 -k1,1882:32583029,38655624:2357989 -g1,1882:32583029,38655624 -) -v1,1884:6630773,39846090:0,393216,0 -(1,1925:6630773,45509678:25952256,6056804,196608 -g1,1925:6630773,45509678 -g1,1925:6630773,45509678 -g1,1925:6434165,45509678 -(1,1925:6434165,45509678:0,6056804,196608 -r1,1925:32779637,45509678:26345472,6253412,196608 -k1,1925:6434165,45509678:-26345472 -) -(1,1925:6434165,45509678:26345472,6056804,196608 -[1,1925:6630773,45509678:25952256,5860196,0 -(1,1886:6630773,40060000:25952256,410518,107478 -(1,1885:6630773,40060000:0,0,0 -g1,1885:6630773,40060000 -g1,1885:6630773,40060000 -g1,1885:6303093,40060000 -(1,1885:6303093,40060000:0,0,0 -) -g1,1885:6630773,40060000 -) -g1,1886:8843793,40060000 -g1,1886:9792231,40060000 -g1,1886:13269835,40060000 -g1,1886:15799001,40060000 -g1,1886:18960458,40060000 -g1,1886:21805770,40060000 -h1,1886:25599518,40060000:0,0,0 -k1,1886:32583029,40060000:6983511 -g1,1886:32583029,40060000 -) -(1,1887:6630773,40726178:25952256,404226,101187 -h1,1887:6630773,40726178:0,0,0 -g1,1887:8843793,40726178 -g1,1887:9792231,40726178 -g1,1887:13269835,40726178 -g1,1887:15799001,40726178 -g1,1887:18328167,40726178 -h1,1887:21489624,40726178:0,0,0 -k1,1887:32583029,40726178:11093405 -g1,1887:32583029,40726178 -) -(1,1888:6630773,41392356:25952256,404226,101187 -h1,1888:6630773,41392356:0,0,0 -g1,1888:8527647,41392356 -g1,1888:9476085,41392356 -g1,1888:12637543,41392356 -g1,1888:15799000,41392356 -h1,1888:18644311,41392356:0,0,0 -k1,1888:32583029,41392356:13938718 -g1,1888:32583029,41392356 -) -(1,1889:6630773,42058534:25952256,404226,107478 -h1,1889:6630773,42058534:0,0,0 -g1,1889:9476084,42058534 -g1,1889:10424522,42058534 -g1,1889:13902126,42058534 -g1,1889:17063583,42058534 -g1,1889:19908895,42058534 -g1,1889:23070352,42058534 -h1,1889:25915663,42058534:0,0,0 -k1,1889:32583029,42058534:6667366 -g1,1889:32583029,42058534 -) -(1,1890:6630773,42724712:25952256,410518,107478 -h1,1890:6630773,42724712:0,0,0 -g1,1890:12321396,42724712 -h1,1890:15166707,42724712:0,0,0 -k1,1890:32583029,42724712:17416322 -g1,1890:32583029,42724712 -) -(1,1894:6630773,43456426:25952256,404226,107478 -(1,1892:6630773,43456426:0,0,0 -g1,1892:6630773,43456426 -g1,1892:6630773,43456426 -g1,1892:6303093,43456426 -(1,1892:6303093,43456426:0,0,0 -) -g1,1892:6630773,43456426 -) -g1,1894:7579210,43456426 -g1,1894:8843793,43456426 -g1,1894:11372959,43456426 -g1,1894:11689105,43456426 -h1,1894:14218270,43456426:0,0,0 -k1,1894:32583030,43456426:18364760 -g1,1894:32583030,43456426 -) -(1,1896:6630773,44777964:25952256,404226,107478 -(1,1895:6630773,44777964:0,0,0 -g1,1895:6630773,44777964 -g1,1895:6630773,44777964 -g1,1895:6303093,44777964 -(1,1895:6303093,44777964:0,0,0 -) -g1,1895:6630773,44777964 -) -k1,1896:6630773,44777964:0 -g1,1896:12321396,44777964 -h1,1896:15166707,44777964:0,0,0 -k1,1896:32583029,44777964:17416322 -g1,1896:32583029,44777964 -) -(1,1900:6630773,45509678:25952256,404226,76021 -(1,1898:6630773,45509678:0,0,0 -g1,1898:6630773,45509678 -g1,1898:6630773,45509678 -g1,1898:6303093,45509678 -(1,1898:6303093,45509678:0,0,0 -) -g1,1898:6630773,45509678 -) -g1,1900:7579210,45509678 -g1,1900:8843793,45509678 -h1,1900:11056813,45509678:0,0,0 -k1,1900:32583029,45509678:21526216 -g1,1900:32583029,45509678 -) -] -) -g1,1925:32583029,45509678 -g1,1925:6630773,45509678 -g1,1925:6630773,45509678 -g1,1925:32583029,45509678 -g1,1925:32583029,45509678 -) -] -(1,1925:32583029,45706769:0,0,0 -g1,1925:32583029,45706769 -) -) -] -(1,1925:6630773,47279633:25952256,0,0 -h1,1925:6630773,47279633:25952256,0,0 -) -] -h1,1925:4262630,4025873:0,0,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,1931:3078558,51504789:16384,1179648,0 +) +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 +) +] +) +) +) +] +[1,1931:3078558,4812305:0,0,0 +(1,1931:3078558,49800853:0,16384,2228224 +g1,1931:29030814,49800853 +g1,1931:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,1931:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,1931:37855564,49800853:1179648,16384,0 +) +) +k1,1931:3078556,49800853:-34777008 +) +] +g1,1931:6630773,4812305 +k1,1931:19515153,4812305:12087462 +g1,1931:20901894,4812305 +g1,1931:21550700,4812305 +g1,1931:24864855,4812305 +g1,1931:27600327,4812305 +g1,1931:29010006,4812305 +) +) +] +[1,1931:6630773,45706769:25952256,40108032,0 +(1,1931:6630773,45706769:25952256,40108032,0 +(1,1931:6630773,45706769:0,0,0 +g1,1931:6630773,45706769 +) +[1,1931:6630773,45706769:25952256,40108032,0 +v1,1879:6630773,6254097:0,393216,0 +(1,1879:6630773,28502746:25952256,22641865,616038 +g1,1879:6630773,28502746 +(1,1879:6630773,28502746:25952256,22641865,616038 +(1,1879:6630773,29118784:25952256,23257903,0 +[1,1879:6630773,29118784:25952256,23257903,0 +(1,1879:6630773,29092570:25952256,23231689,0 +r1,1879:6656987,29092570:26214,23231689,0 +[1,1879:6656987,29092570:25899828,23231689,0 +(1,1879:6656987,28502746:25899828,22052041,0 +[1,1879:7246811,28502746:24720180,22052041,0 +(1,1819:7246811,6963852:24720180,513147,134348 +k1,1818:10103151,6963852:194923 +k1,1818:12033466,6963852:194922 +h1,1818:12033466,6963852:0,0,0 +k1,1818:12815288,6963852:386640 +k1,1818:13992292,6963852:386640 +k1,1818:15372761,6963852:194923 +k1,1818:17894867,6963852:194923 +k1,1818:18749081,6963852:194922 +h1,1818:18749081,6963852:0,0,0 +k1,1818:19530903,6963852:386640 +k1,1818:20707907,6963852:386640 +k1,1818:22262046,6963852:194923 +k1,1818:22934726,6963852:194923 +k1,1818:24332889,6963852:194922 +k1,1818:25059309,6963852:194923 +k1,1818:26320503,6963852:194923 +k1,1818:29319055,6963852:194922 +k1,1818:30947906,6963852:194923 +k1,1818:31966991,6963852:0 +) +(1,1819:7246811,7805340:24720180,505283,134348 +k1,1818:8941386,7805340:172829 +k1,1818:11294597,7805340:172828 +k1,1818:12215192,7805340:172829 +k1,1818:13965472,7805340:172828 +k1,1818:17079557,7805340:172829 +k1,1818:18774131,7805340:172828 +k1,1818:20093185,7805340:172829 +h1,1818:20093185,7805340:0,0,0 +k1,1818:20831181,7805340:342814 +k1,1818:21964360,7805340:342815 +k1,1818:23322735,7805340:172829 +k1,1818:24889514,7805340:172828 +h1,1818:24889514,7805340:0,0,0 +k1,1818:27208239,7805340:342815 +k1,1818:27946236,7805340:342815 +k1,1818:29869778,7805340:342814 +k1,1818:30607775,7805340:342815 +k1,1818:31966991,7805340:0 +) +(1,1819:7246811,8646828:24720180,505283,126483 +k1,1818:10242620,8646828:205941 +(1,1818:10242620,8646828:0,452978,115847 +r1,1879:12007733,8646828:1765113,568825,115847 +k1,1818:10242620,8646828:-1765113 +) +(1,1818:10242620,8646828:1765113,452978,115847 +k1,1818:10242620,8646828:3277 +h1,1818:12004456,8646828:0,411205,112570 +) +k1,1818:12213674,8646828:205941 +k1,1818:14760561,8646828:205941 +k1,1818:15985587,8646828:205941 +k1,1818:18896854,8646828:205941 +k1,1818:20956808,8646828:205940 +k1,1818:21778787,8646828:205941 +k1,1818:24397764,8646828:205941 +k1,1818:26732314,8646828:205941 +k1,1818:28984289,8646828:205941 +k1,1818:29956346,8646828:205941 +k1,1818:31966991,8646828:0 +) +(1,1819:7246811,9488316:24720180,513147,134348 +k1,1818:9991896,9488316:235711 +k1,1818:10910493,9488316:235712 +k1,1818:12740040,9488316:235711 +k1,1818:13737279,9488316:235711 +k1,1818:16856574,9488316:235711 +k1,1818:18111371,9488316:235712 +k1,1818:19667632,9488316:235711 +k1,1818:20562635,9488316:235711 +k1,1818:23453209,9488316:235711 +k1,1818:25873236,9488316:235712 +k1,1818:26791832,9488316:235711 +k1,1818:27643581,9488316:235711 +k1,1818:31966991,9488316:0 +) +(1,1819:7246811,10329804:24720180,505283,95027 +g1,1818:10135638,10329804 +$1,1818:10135638,10329804 +g1,1818:11309257,10329804 +g1,1818:12059514,10329804 +g1,1818:12449611,10329804 +g1,1818:13163456,10329804 +$1,1818:13910566,10329804 +k1,1819:31966992,10329804:17882756 +g1,1819:31966992,10329804 +) +v1,1821:7246811,11520270:0,393216,0 +(1,1834:7246811,14588875:24720180,3461821,196608 +g1,1834:7246811,14588875 +g1,1834:7246811,14588875 +g1,1834:7050203,14588875 +(1,1834:7050203,14588875:0,3461821,196608 +r1,1879:32163599,14588875:25113396,3658429,196608 +k1,1834:7050203,14588875:-25113396 +) +(1,1834:7050203,14588875:25113396,3461821,196608 +[1,1834:7246811,14588875:24720180,3265213,0 +(1,1823:7246811,11727888:24720180,404226,101187 +(1,1822:7246811,11727888:0,0,0 +g1,1822:7246811,11727888 +g1,1822:7246811,11727888 +g1,1822:6919131,11727888 +(1,1822:6919131,11727888:0,0,0 +) +g1,1822:7246811,11727888 +) +g1,1823:7879103,11727888 +g1,1823:8827540,11727888 +g1,1823:10092123,11727888 +g1,1823:10724415,11727888 +g1,1823:11988998,11727888 +g1,1823:13253581,11727888 +g1,1823:15466601,11727888 +k1,1823:15466601,11727888:18350 +h1,1823:16749534,11727888:0,0,0 +k1,1823:31966991,11727888:15217457 +g1,1823:31966991,11727888 +) +(1,1827:7246811,12459602:24720180,404226,76021 +(1,1825:7246811,12459602:0,0,0 +g1,1825:7246811,12459602 +g1,1825:7246811,12459602 +g1,1825:6919131,12459602 +(1,1825:6919131,12459602:0,0,0 +) +g1,1825:7246811,12459602 +) +g1,1827:8195248,12459602 +g1,1827:8511394,12459602 +g1,1827:9775977,12459602 +g1,1827:11672851,12459602 +g1,1827:13569725,12459602 +g1,1827:15466599,12459602 +g1,1827:17363473,12459602 +g1,1827:19260347,12459602 +g1,1827:21157221,12459602 +g1,1827:23054095,12459602 +g1,1827:24950969,12459602 +g1,1827:26847843,12459602 +h1,1827:28428571,12459602:0,0,0 +k1,1827:31966991,12459602:3538420 +g1,1827:31966991,12459602 +) +(1,1829:7246811,13781140:24720180,410518,101187 +(1,1828:7246811,13781140:0,0,0 +g1,1828:7246811,13781140 +g1,1828:7246811,13781140 +g1,1828:6919131,13781140 +(1,1828:6919131,13781140:0,0,0 +) +g1,1828:7246811,13781140 +) +k1,1829:7246811,13781140:0 +g1,1829:9459831,13781140 +g1,1829:10092123,13781140 +g1,1829:11988997,13781140 +g1,1829:12621289,13781140 +g1,1829:13569726,13781140 +k1,1829:13569726,13781140:23593 +h1,1829:15174047,13781140:0,0,0 +k1,1829:31966991,13781140:16792944 +g1,1829:31966991,13781140 +) +(1,1833:7246811,14512854:24720180,404226,76021 +(1,1831:7246811,14512854:0,0,0 +g1,1831:7246811,14512854 +g1,1831:7246811,14512854 +g1,1831:6919131,14512854 +(1,1831:6919131,14512854:0,0,0 +) +g1,1831:7246811,14512854 +) +g1,1833:8195248,14512854 +g1,1833:8511394,14512854 +g1,1833:9775977,14512854 +g1,1833:11672851,14512854 +g1,1833:13569725,14512854 +g1,1833:15466599,14512854 +g1,1833:17363473,14512854 +g1,1833:19260347,14512854 +g1,1833:21157221,14512854 +g1,1833:23054095,14512854 +g1,1833:24950969,14512854 +g1,1833:26847843,14512854 +h1,1833:28428571,14512854:0,0,0 +k1,1833:31966991,14512854:3538420 +g1,1833:31966991,14512854 +) +] +) +g1,1834:31966991,14588875 +g1,1834:7246811,14588875 +g1,1834:7246811,14588875 +g1,1834:31966991,14588875 +g1,1834:31966991,14588875 +) +h1,1834:7246811,14785483:0,0,0 +v1,1838:7246811,16500237:0,393216,0 +(1,1875:7246811,27781850:24720180,11674829,196608 +g1,1875:7246811,27781850 +g1,1875:7246811,27781850 +g1,1875:7050203,27781850 +(1,1875:7050203,27781850:0,11674829,196608 +r1,1879:32163599,27781850:25113396,11871437,196608 +k1,1875:7050203,27781850:-25113396 +) +(1,1875:7050203,27781850:25113396,11674829,196608 +[1,1875:7246811,27781850:24720180,11478221,0 +(1,1840:7246811,16707855:24720180,404226,107478 +(1,1839:7246811,16707855:0,0,0 +g1,1839:7246811,16707855 +g1,1839:7246811,16707855 +g1,1839:6919131,16707855 +(1,1839:6919131,16707855:0,0,0 +) +g1,1839:7246811,16707855 +) +k1,1840:7246811,16707855:0 +g1,1840:9775977,16707855 +g1,1840:10724414,16707855 +g1,1840:11988997,16707855 +g1,1840:12621289,16707855 +g1,1840:14518163,16707855 +g1,1840:15466600,16707855 +g1,1840:18311912,16707855 +g1,1840:19576495,16707855 +k1,1840:19576495,16707855:0 +h1,1840:22105660,16707855:0,0,0 +k1,1840:31966991,16707855:9861331 +g1,1840:31966991,16707855 +) +(1,1844:7246811,17439569:24720180,404226,76021 +(1,1842:7246811,17439569:0,0,0 +g1,1842:7246811,17439569 +g1,1842:7246811,17439569 +g1,1842:6919131,17439569 +(1,1842:6919131,17439569:0,0,0 +) +g1,1842:7246811,17439569 +) +g1,1844:8195248,17439569 +g1,1844:9459831,17439569 +h1,1844:11040559,17439569:0,0,0 +k1,1844:31966991,17439569:20926432 +g1,1844:31966991,17439569 +) +(1,1846:7246811,18761107:24720180,404226,101187 +(1,1845:7246811,18761107:0,0,0 +g1,1845:7246811,18761107 +g1,1845:7246811,18761107 +g1,1845:6919131,18761107 +(1,1845:6919131,18761107:0,0,0 +) +g1,1845:7246811,18761107 +) +k1,1846:7246811,18761107:0 +g1,1846:9143686,18761107 +g1,1846:9775978,18761107 +g1,1846:11040561,18761107 +g1,1846:11988998,18761107 +h1,1846:12937435,18761107:0,0,0 +k1,1846:31966991,18761107:19029556 +g1,1846:31966991,18761107 +) +(1,1850:7246811,19492821:24720180,404226,76021 +(1,1848:7246811,19492821:0,0,0 +g1,1848:7246811,19492821 +g1,1848:7246811,19492821 +g1,1848:6919131,19492821 +(1,1848:6919131,19492821:0,0,0 +) +g1,1848:7246811,19492821 +) +g1,1850:8195248,19492821 +g1,1850:9459831,19492821 +h1,1850:11040559,19492821:0,0,0 +k1,1850:31966991,19492821:20926432 +g1,1850:31966991,19492821 +) +(1,1852:7246811,20814359:24720180,404226,101187 +(1,1851:7246811,20814359:0,0,0 +g1,1851:7246811,20814359 +g1,1851:7246811,20814359 +g1,1851:6919131,20814359 +(1,1851:6919131,20814359:0,0,0 +) +g1,1851:7246811,20814359 +) +k1,1852:7246811,20814359:0 +g1,1852:11356705,20814359 +g1,1852:11988997,20814359 +k1,1852:11988997,20814359:0 +h1,1852:13569725,20814359:0,0,0 +k1,1852:31966991,20814359:18397266 +g1,1852:31966991,20814359 +) +(1,1856:7246811,21546073:24720180,404226,76021 +(1,1854:7246811,21546073:0,0,0 +g1,1854:7246811,21546073 +g1,1854:7246811,21546073 +g1,1854:6919131,21546073 +(1,1854:6919131,21546073:0,0,0 +) +g1,1854:7246811,21546073 +) +g1,1856:8195248,21546073 +g1,1856:9459831,21546073 +h1,1856:10724414,21546073:0,0,0 +k1,1856:31966990,21546073:21242576 +g1,1856:31966990,21546073 +) +(1,1858:7246811,22867611:24720180,404226,101187 +(1,1857:7246811,22867611:0,0,0 +g1,1857:7246811,22867611 +g1,1857:7246811,22867611 +g1,1857:6919131,22867611 +(1,1857:6919131,22867611:0,0,0 +) +g1,1857:7246811,22867611 +) +k1,1858:7246811,22867611:0 +g1,1858:10408269,22867611 +g1,1858:11040561,22867611 +g1,1858:12621290,22867611 +g1,1858:13253582,22867611 +k1,1858:13253582,22867611:0 +h1,1858:14834310,22867611:0,0,0 +k1,1858:31966990,22867611:17132680 +g1,1858:31966990,22867611 +) +(1,1862:7246811,23599325:24720180,404226,76021 +(1,1860:7246811,23599325:0,0,0 +g1,1860:7246811,23599325 +g1,1860:7246811,23599325 +g1,1860:6919131,23599325 +(1,1860:6919131,23599325:0,0,0 +) +g1,1860:7246811,23599325 +) +g1,1862:8195248,23599325 +g1,1862:9459831,23599325 +h1,1862:10724414,23599325:0,0,0 +k1,1862:31966990,23599325:21242576 +g1,1862:31966990,23599325 +) +(1,1864:7246811,24920863:24720180,404226,101187 +(1,1863:7246811,24920863:0,0,0 +g1,1863:7246811,24920863 +g1,1863:7246811,24920863 +g1,1863:6919131,24920863 +(1,1863:6919131,24920863:0,0,0 +) +g1,1863:7246811,24920863 +) +k1,1864:7246811,24920863:0 +h1,1864:9459831,24920863:0,0,0 +k1,1864:31966991,24920863:22507160 +g1,1864:31966991,24920863 +) +(1,1868:7246811,25652577:24720180,404226,76021 +(1,1866:7246811,25652577:0,0,0 +g1,1866:7246811,25652577 +g1,1866:7246811,25652577 +g1,1866:6919131,25652577 +(1,1866:6919131,25652577:0,0,0 +) +g1,1866:7246811,25652577 +) +g1,1868:8195248,25652577 +g1,1868:9459831,25652577 +k1,1868:9459831,25652577:0 +h1,1868:13253579,25652577:0,0,0 +k1,1868:31966991,25652577:18713412 +g1,1868:31966991,25652577 +) +(1,1870:7246811,26974115:24720180,404226,101187 +(1,1869:7246811,26974115:0,0,0 +g1,1869:7246811,26974115 +g1,1869:7246811,26974115 +g1,1869:6919131,26974115 +(1,1869:6919131,26974115:0,0,0 +) +g1,1869:7246811,26974115 +) +k1,1870:7246811,26974115:0 +g1,1870:9143686,26974115 +g1,1870:9775978,26974115 +h1,1870:10724415,26974115:0,0,0 +k1,1870:31966991,26974115:21242576 +g1,1870:31966991,26974115 +) +(1,1874:7246811,27705829:24720180,404226,76021 +(1,1872:7246811,27705829:0,0,0 +g1,1872:7246811,27705829 +g1,1872:7246811,27705829 +g1,1872:6919131,27705829 +(1,1872:6919131,27705829:0,0,0 +) +g1,1872:7246811,27705829 +) +g1,1874:8195248,27705829 +g1,1874:9459831,27705829 +k1,1874:9459831,27705829:0 +h1,1874:13569725,27705829:0,0,0 +k1,1874:31966991,27705829:18397266 +g1,1874:31966991,27705829 +) +] +) +g1,1875:31966991,27781850 +g1,1875:7246811,27781850 +g1,1875:7246811,27781850 +g1,1875:31966991,27781850 +g1,1875:31966991,27781850 +) +h1,1875:7246811,27978458:0,0,0 +] +) +] +r1,1879:32583029,29092570:26214,23231689,0 +) +] +) +) +g1,1879:32583029,28502746 +) +h1,1879:6630773,29118784:0,0,0 +(1,1884:6630773,32450640:25952256,32768,229376 +(1,1884:6630773,32450640:0,32768,229376 +(1,1884:6630773,32450640:5505024,32768,229376 +r1,1884:12135797,32450640:5505024,262144,229376 +) +k1,1884:6630773,32450640:-5505024 +) +(1,1884:6630773,32450640:25952256,32768,0 +r1,1884:32583029,32450640:25952256,32768,0 +) +) +(1,1884:6630773,34054968:25952256,606339,151780 +(1,1884:6630773,34054968:1974731,582746,14155 +g1,1884:6630773,34054968 +g1,1884:8605504,34054968 +) +g1,1884:10448114,34054968 +g1,1884:12157817,34054968 +g1,1884:13563171,34054968 +k1,1884:32583029,34054968:14806155 +g1,1884:32583029,34054968 +) +(1,1888:6630773,35289672:25952256,513147,134348 +k1,1887:8077963,35289672:250503 +k1,1887:8743257,35289672:250451 +k1,1887:11836056,35289672:250503 +k1,1887:14943273,35289672:250503 +k1,1887:16128319,35289672:250503 +k1,1887:19783416,35289672:250502 +k1,1887:20843289,35289672:250503 +k1,1887:23575640,35289672:250503 +k1,1887:25383934,35289672:250503 +k1,1887:26738719,35289672:250503 +k1,1887:27736987,35289672:250502 +k1,1887:29964711,35289672:250503 +k1,1887:30831252,35289672:250503 +k1,1887:32583029,35289672:0 +) +(1,1888:6630773,36131160:25952256,513147,134348 +k1,1887:9628980,36131160:235864 +k1,1887:12564272,36131160:235864 +k1,1887:14498173,36131160:235863 +k1,1887:18969629,36131160:235864 +k1,1887:20396938,36131160:235864 +k1,1887:24036087,36131160:235864 +k1,1887:26580129,36131160:235864 +k1,1887:27475284,36131160:235863 +k1,1887:29895463,36131160:235864 +k1,1887:30759162,36131160:235864 +k1,1888:32583029,36131160:0 +) +(1,1888:6630773,36972648:25952256,513147,134348 +k1,1887:9883793,36972648:207562 +k1,1887:10549452,36972648:207562 +k1,1887:11288511,36972648:207562 +k1,1887:13390718,36972648:207561 +k1,1887:14545931,36972648:207562 +k1,1887:17588580,36972648:207562 +k1,1887:18447570,36972648:207562 +k1,1887:20130347,36972648:207562 +k1,1887:23312588,36972648:207562 +k1,1887:25828328,36972648:207562 +k1,1887:26695181,36972648:207561 +k1,1887:28386478,36972648:207562 +k1,1887:30084984,36972648:207562 +k1,1887:31246095,36972648:207562 +k1,1887:32583029,36972648:0 +) +(1,1888:6630773,37814136:25952256,513147,126483 +k1,1887:8348864,37814136:242876 +k1,1887:8947601,37814136:242877 +k1,1887:11168354,37814136:242876 +k1,1887:12358882,37814136:242877 +k1,1887:14053380,37814136:242876 +k1,1887:14955548,37814136:242876 +k1,1887:15554285,37814136:242877 +k1,1887:16731704,37814136:242876 +k1,1887:17633873,37814136:242877 +k1,1887:20639092,37814136:242876 +k1,1887:23665282,37814136:242876 +k1,1887:25099604,37814136:242877 +k1,1887:26872746,37814136:242876 +k1,1887:27767051,37814136:242877 +k1,1887:30770303,37814136:242876 +k1,1887:32583029,37814136:0 +) +(1,1888:6630773,38655624:25952256,505283,134348 +g1,1887:9764704,38655624 +g1,1887:10832285,38655624 +g1,1887:12519837,38655624 +g1,1887:13480594,38655624 +g1,1887:15415216,38655624 +g1,1887:15970305,38655624 +g1,1887:17819731,38655624 +g1,1887:21007402,38655624 +g1,1887:24041718,38655624 +g1,1887:27079967,38655624 +k1,1888:32583029,38655624:2357989 +g1,1888:32583029,38655624 +) +v1,1890:6630773,39846090:0,393216,0 +(1,1931:6630773,45509678:25952256,6056804,196608 +g1,1931:6630773,45509678 +g1,1931:6630773,45509678 +g1,1931:6434165,45509678 +(1,1931:6434165,45509678:0,6056804,196608 +r1,1931:32779637,45509678:26345472,6253412,196608 +k1,1931:6434165,45509678:-26345472 +) +(1,1931:6434165,45509678:26345472,6056804,196608 +[1,1931:6630773,45509678:25952256,5860196,0 +(1,1892:6630773,40060000:25952256,410518,107478 +(1,1891:6630773,40060000:0,0,0 +g1,1891:6630773,40060000 +g1,1891:6630773,40060000 +g1,1891:6303093,40060000 +(1,1891:6303093,40060000:0,0,0 +) +g1,1891:6630773,40060000 +) +g1,1892:8843793,40060000 +g1,1892:9792231,40060000 +g1,1892:13269835,40060000 +g1,1892:15799001,40060000 +g1,1892:18960458,40060000 +g1,1892:21805770,40060000 +h1,1892:25599518,40060000:0,0,0 +k1,1892:32583029,40060000:6983511 +g1,1892:32583029,40060000 +) +(1,1893:6630773,40726178:25952256,404226,101187 +h1,1893:6630773,40726178:0,0,0 +g1,1893:8843793,40726178 +g1,1893:9792231,40726178 +g1,1893:13269835,40726178 +g1,1893:15799001,40726178 +g1,1893:18328167,40726178 +h1,1893:21489624,40726178:0,0,0 +k1,1893:32583029,40726178:11093405 +g1,1893:32583029,40726178 +) +(1,1894:6630773,41392356:25952256,404226,101187 +h1,1894:6630773,41392356:0,0,0 +g1,1894:8527647,41392356 +g1,1894:9476085,41392356 +g1,1894:12637543,41392356 +g1,1894:15799000,41392356 +h1,1894:18644311,41392356:0,0,0 +k1,1894:32583029,41392356:13938718 +g1,1894:32583029,41392356 +) +(1,1895:6630773,42058534:25952256,404226,107478 +h1,1895:6630773,42058534:0,0,0 +g1,1895:9476084,42058534 +g1,1895:10424522,42058534 +g1,1895:13902126,42058534 +g1,1895:17063583,42058534 +g1,1895:19908895,42058534 +g1,1895:23070352,42058534 +h1,1895:25915663,42058534:0,0,0 +k1,1895:32583029,42058534:6667366 +g1,1895:32583029,42058534 +) +(1,1896:6630773,42724712:25952256,410518,107478 +h1,1896:6630773,42724712:0,0,0 +g1,1896:12321396,42724712 +h1,1896:15166707,42724712:0,0,0 +k1,1896:32583029,42724712:17416322 +g1,1896:32583029,42724712 +) +(1,1900:6630773,43456426:25952256,404226,107478 +(1,1898:6630773,43456426:0,0,0 +g1,1898:6630773,43456426 +g1,1898:6630773,43456426 +g1,1898:6303093,43456426 +(1,1898:6303093,43456426:0,0,0 +) +g1,1898:6630773,43456426 +) +g1,1900:7579210,43456426 +g1,1900:8843793,43456426 +g1,1900:11372959,43456426 +g1,1900:11689105,43456426 +h1,1900:14218270,43456426:0,0,0 +k1,1900:32583030,43456426:18364760 +g1,1900:32583030,43456426 +) +(1,1902:6630773,44777964:25952256,404226,107478 +(1,1901:6630773,44777964:0,0,0 +g1,1901:6630773,44777964 +g1,1901:6630773,44777964 +g1,1901:6303093,44777964 +(1,1901:6303093,44777964:0,0,0 +) +g1,1901:6630773,44777964 +) +k1,1902:6630773,44777964:0 +g1,1902:12321396,44777964 +h1,1902:15166707,44777964:0,0,0 +k1,1902:32583029,44777964:17416322 +g1,1902:32583029,44777964 +) +(1,1906:6630773,45509678:25952256,404226,76021 +(1,1904:6630773,45509678:0,0,0 +g1,1904:6630773,45509678 +g1,1904:6630773,45509678 +g1,1904:6303093,45509678 +(1,1904:6303093,45509678:0,0,0 +) +g1,1904:6630773,45509678 +) +g1,1906:7579210,45509678 +g1,1906:8843793,45509678 +h1,1906:11056813,45509678:0,0,0 +k1,1906:32583029,45509678:21526216 +g1,1906:32583029,45509678 +) +] +) +g1,1931:32583029,45509678 +g1,1931:6630773,45509678 +g1,1931:6630773,45509678 +g1,1931:32583029,45509678 +g1,1931:32583029,45509678 +) +] +(1,1931:32583029,45706769:0,0,0 +g1,1931:32583029,45706769 +) +) +] +(1,1931:6630773,47279633:25952256,0,0 +h1,1931:6630773,47279633:25952256,0,0 +) +] +h1,1931:4262630,4025873:0,0,0 ] !21107 }47 -Input:292:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:293:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:294:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:295:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:296:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:297:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:298:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:299:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:300:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {48 -[1,2007:4262630,47279633:28320399,43253760,0 -(1,2007:4262630,4025873:0,0,0 -[1,2007:-473657,4025873:25952256,0,0 -(1,2007:-473657,-710414:25952256,0,0 -h1,2007:-473657,-710414:0,0,0 -(1,2007:-473657,-710414:0,0,0 -(1,2007:-473657,-710414:0,0,0 -g1,2007:-473657,-710414 -(1,2007:-473657,-710414:65781,0,65781 -g1,2007:-407876,-710414 -[1,2007:-407876,-644633:0,0,0 +[1,2013:4262630,47279633:28320399,43253760,0 +(1,2013:4262630,4025873:0,0,0 +[1,2013:-473657,4025873:25952256,0,0 +(1,2013:-473657,-710414:25952256,0,0 +h1,2013:-473657,-710414:0,0,0 +(1,2013:-473657,-710414:0,0,0 +(1,2013:-473657,-710414:0,0,0 +g1,2013:-473657,-710414 +(1,2013:-473657,-710414:65781,0,65781 +g1,2013:-407876,-710414 +[1,2013:-407876,-644633:0,0,0 ] ) -k1,2007:-473657,-710414:-65781 +k1,2013:-473657,-710414:-65781 ) ) -k1,2007:25478599,-710414:25952256 -g1,2007:25478599,-710414 +k1,2013:25478599,-710414:25952256 +g1,2013:25478599,-710414 ) ] ) -[1,2007:6630773,47279633:25952256,43253760,0 -[1,2007:6630773,4812305:25952256,786432,0 -(1,2007:6630773,4812305:25952256,505283,126483 -(1,2007:6630773,4812305:25952256,505283,126483 -g1,2007:3078558,4812305 -[1,2007:3078558,4812305:0,0,0 -(1,2007:3078558,2439708:0,1703936,0 -k1,2007:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2007:2537886,2439708:1179648,16384,0 +[1,2013:6630773,47279633:25952256,43253760,0 +[1,2013:6630773,4812305:25952256,786432,0 +(1,2013:6630773,4812305:25952256,505283,126483 +(1,2013:6630773,4812305:25952256,505283,126483 +g1,2013:3078558,4812305 +[1,2013:3078558,4812305:0,0,0 +(1,2013:3078558,2439708:0,1703936,0 +k1,2013:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2013:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2007:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2013:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2007:3078558,4812305:0,0,0 -(1,2007:3078558,2439708:0,1703936,0 -g1,2007:29030814,2439708 -g1,2007:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2007:36151628,1915420:16384,1179648,0 +[1,2013:3078558,4812305:0,0,0 +(1,2013:3078558,2439708:0,1703936,0 +g1,2013:29030814,2439708 +g1,2013:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2013:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2007:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2013:37855564,2439708:1179648,16384,0 ) ) -k1,2007:3078556,2439708:-34777008 +k1,2013:3078556,2439708:-34777008 ) ] -[1,2007:3078558,4812305:0,0,0 -(1,2007:3078558,49800853:0,16384,2228224 -k1,2007:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2007:2537886,49800853:1179648,16384,0 +[1,2013:3078558,4812305:0,0,0 +(1,2013:3078558,49800853:0,16384,2228224 +k1,2013:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2013:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2007:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2013:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2007:3078558,4812305:0,0,0 -(1,2007:3078558,49800853:0,16384,2228224 -g1,2007:29030814,49800853 -g1,2007:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2007:36151628,51504789:16384,1179648,0 +[1,2013:3078558,4812305:0,0,0 +(1,2013:3078558,49800853:0,16384,2228224 +g1,2013:29030814,49800853 +g1,2013:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2013:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2007:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2013:37855564,49800853:1179648,16384,0 ) ) -k1,2007:3078556,49800853:-34777008 +k1,2013:3078556,49800853:-34777008 ) ] -g1,2007:6630773,4812305 -g1,2007:6630773,4812305 -g1,2007:8050282,4812305 -g1,2007:9459961,4812305 -g1,2007:10519678,4812305 -g1,2007:14021266,4812305 -k1,2007:31786110,4812305:17764844 +g1,2013:6630773,4812305 +g1,2013:6630773,4812305 +g1,2013:8050282,4812305 +g1,2013:9459961,4812305 +g1,2013:10519678,4812305 +g1,2013:14021266,4812305 +k1,2013:31786110,4812305:17764844 ) ) ] -[1,2007:6630773,45706769:25952256,40108032,0 -(1,2007:6630773,45706769:25952256,40108032,0 -(1,2007:6630773,45706769:0,0,0 -g1,2007:6630773,45706769 +[1,2013:6630773,45706769:25952256,40108032,0 +(1,2013:6630773,45706769:25952256,40108032,0 +(1,2013:6630773,45706769:0,0,0 +g1,2013:6630773,45706769 ) -[1,2007:6630773,45706769:25952256,40108032,0 -v1,1925:6630773,6254097:0,393216,0 -(1,1925:6630773,13429206:25952256,7568325,196608 -g1,1925:6630773,13429206 -g1,1925:6630773,13429206 -g1,1925:6434165,13429206 -(1,1925:6434165,13429206:0,7568325,196608 -r1,1925:32779637,13429206:26345472,7764933,196608 -k1,1925:6434165,13429206:-26345472 +[1,2013:6630773,45706769:25952256,40108032,0 +v1,1931:6630773,6254097:0,393216,0 +(1,1931:6630773,13429206:25952256,7568325,196608 +g1,1931:6630773,13429206 +g1,1931:6630773,13429206 +g1,1931:6434165,13429206 +(1,1931:6434165,13429206:0,7568325,196608 +r1,1931:32779637,13429206:26345472,7764933,196608 +k1,1931:6434165,13429206:-26345472 ) -(1,1925:6434165,13429206:26345472,7568325,196608 -[1,1925:6630773,13429206:25952256,7371717,0 -(1,1902:6630773,6461715:25952256,404226,107478 -(1,1901:6630773,6461715:0,0,0 -g1,1901:6630773,6461715 -g1,1901:6630773,6461715 -g1,1901:6303093,6461715 -(1,1901:6303093,6461715:0,0,0 +(1,1931:6434165,13429206:26345472,7568325,196608 +[1,1931:6630773,13429206:25952256,7371717,0 +(1,1908:6630773,6461715:25952256,404226,107478 +(1,1907:6630773,6461715:0,0,0 +g1,1907:6630773,6461715 +g1,1907:6630773,6461715 +g1,1907:6303093,6461715 +(1,1907:6303093,6461715:0,0,0 ) -g1,1901:6630773,6461715 +g1,1907:6630773,6461715 ) -k1,1902:6630773,6461715:0 -g1,1902:12005250,6461715 -h1,1902:14850561,6461715:0,0,0 -k1,1902:32583029,6461715:17732468 -g1,1902:32583029,6461715 +k1,1908:6630773,6461715:0 +g1,1908:12005250,6461715 +h1,1908:14850561,6461715:0,0,0 +k1,1908:32583029,6461715:17732468 +g1,1908:32583029,6461715 ) -(1,1906:6630773,7193429:25952256,404226,76021 -(1,1904:6630773,7193429:0,0,0 -g1,1904:6630773,7193429 -g1,1904:6630773,7193429 -g1,1904:6303093,7193429 -(1,1904:6303093,7193429:0,0,0 -) -g1,1904:6630773,7193429 -) -g1,1906:7579210,7193429 -g1,1906:8843793,7193429 -g1,1906:11689104,7193429 -h1,1906:14218269,7193429:0,0,0 -k1,1906:32583029,7193429:18364760 -g1,1906:32583029,7193429 -) -(1,1908:6630773,8514967:25952256,404226,101187 -(1,1907:6630773,8514967:0,0,0 -g1,1907:6630773,8514967 -g1,1907:6630773,8514967 -g1,1907:6303093,8514967 -(1,1907:6303093,8514967:0,0,0 -) -g1,1907:6630773,8514967 -) -g1,1908:9159939,8514967 -g1,1908:10740668,8514967 -h1,1908:12321396,8514967:0,0,0 -k1,1908:32583028,8514967:20261632 -g1,1908:32583028,8514967 -) -(1,1912:6630773,9246681:25952256,404226,76021 -(1,1910:6630773,9246681:0,0,0 -g1,1910:6630773,9246681 -g1,1910:6630773,9246681 -g1,1910:6303093,9246681 -(1,1910:6303093,9246681:0,0,0 -) -g1,1910:6630773,9246681 -) -g1,1912:7579210,9246681 -g1,1912:8843793,9246681 -h1,1912:10424521,9246681:0,0,0 -k1,1912:32583029,9246681:22158508 -g1,1912:32583029,9246681 -) -(1,1914:6630773,10568219:25952256,410518,9436 -(1,1913:6630773,10568219:0,0,0 -g1,1913:6630773,10568219 -g1,1913:6630773,10568219 -g1,1913:6303093,10568219 -(1,1913:6303093,10568219:0,0,0 -) -g1,1913:6630773,10568219 -) -g1,1914:9159939,10568219 -g1,1914:10740668,10568219 -h1,1914:12637542,10568219:0,0,0 -k1,1914:32583030,10568219:19945488 -g1,1914:32583030,10568219 -) -(1,1918:6630773,11299933:25952256,404226,76021 -(1,1916:6630773,11299933:0,0,0 -g1,1916:6630773,11299933 -g1,1916:6630773,11299933 -g1,1916:6303093,11299933 -(1,1916:6303093,11299933:0,0,0 -) -g1,1916:6630773,11299933 -) -g1,1918:7579210,11299933 -g1,1918:8843793,11299933 -h1,1918:10108376,11299933:0,0,0 -k1,1918:32583028,11299933:22474652 -g1,1918:32583028,11299933 -) -(1,1920:6630773,12621471:25952256,410518,107478 -(1,1919:6630773,12621471:0,0,0 -g1,1919:6630773,12621471 -g1,1919:6630773,12621471 -g1,1919:6303093,12621471 -(1,1919:6303093,12621471:0,0,0 -) -g1,1919:6630773,12621471 -) -k1,1920:6630773,12621471:0 -g1,1920:13585979,12621471 -g1,1920:16115145,12621471 -h1,1920:18960456,12621471:0,0,0 -k1,1920:32583029,12621471:13622573 -g1,1920:32583029,12621471 -) -(1,1924:6630773,13353185:25952256,404226,76021 -(1,1922:6630773,13353185:0,0,0 -g1,1922:6630773,13353185 -g1,1922:6630773,13353185 -g1,1922:6303093,13353185 -(1,1922:6303093,13353185:0,0,0 -) -g1,1922:6630773,13353185 -) -g1,1924:7579210,13353185 -g1,1924:8843793,13353185 -g1,1924:11056813,13353185 -g1,1924:11372959,13353185 -g1,1924:11689105,13353185 -g1,1924:12005251,13353185 -g1,1924:14218271,13353185 -g1,1924:14534417,13353185 -g1,1924:14850563,13353185 -g1,1924:15166709,13353185 -g1,1924:18328166,13353185 -h1,1924:20225040,13353185:0,0,0 -k1,1924:32583029,13353185:12357989 -g1,1924:32583029,13353185 -) -] -) -g1,1925:32583029,13429206 -g1,1925:6630773,13429206 -g1,1925:6630773,13429206 -g1,1925:32583029,13429206 -g1,1925:32583029,13429206 -) -h1,1925:6630773,13625814:0,0,0 -(1,1929:6630773,14991590:25952256,505283,126483 -h1,1928:6630773,14991590:983040,0,0 -g1,1928:8766591,14991590 -g1,1928:11743891,14991590 -g1,1928:13327240,14991590 -g1,1928:14920420,14991590 -g1,1928:17697835,14991590 -g1,1928:21157480,14991590 -k1,1929:32583029,14991590:8260160 -g1,1929:32583029,14991590 -) -v1,1931:6630773,16182056:0,393216,0 -(1,1935:6630773,16490861:25952256,702021,196608 -g1,1935:6630773,16490861 -g1,1935:6630773,16490861 -g1,1935:6434165,16490861 -(1,1935:6434165,16490861:0,702021,196608 -r1,1935:32779637,16490861:26345472,898629,196608 -k1,1935:6434165,16490861:-26345472 -) -(1,1935:6434165,16490861:26345472,702021,196608 -[1,1935:6630773,16490861:25952256,505413,0 -(1,1933:6630773,16389674:25952256,404226,101187 -(1,1932:6630773,16389674:0,0,0 -g1,1932:6630773,16389674 -g1,1932:6630773,16389674 -g1,1932:6303093,16389674 -(1,1932:6303093,16389674:0,0,0 -) -g1,1932:6630773,16389674 -) -g1,1933:8843793,16389674 -g1,1933:9792231,16389674 -g1,1933:12005252,16389674 -g1,1933:13585981,16389674 -g1,1933:15166710,16389674 -h1,1933:16431293,16389674:0,0,0 -k1,1933:32583029,16389674:16151736 -g1,1933:32583029,16389674 -) -] -) -g1,1935:32583029,16490861 -g1,1935:6630773,16490861 -g1,1935:6630773,16490861 -g1,1935:32583029,16490861 -g1,1935:32583029,16490861 -) -h1,1935:6630773,16687469:0,0,0 -(1,1939:6630773,18053245:25952256,513147,134348 -h1,1938:6630773,18053245:983040,0,0 -k1,1938:8633527,18053245:190684 -k1,1938:10015655,18053245:190683 -k1,1938:10672300,18053245:190684 -k1,1938:11218844,18053245:190684 -k1,1938:13104288,18053245:190683 -k1,1938:14975315,18053245:190684 -k1,1938:17632774,18053245:190684 -k1,1938:18474885,18053245:190683 -k1,1938:19021429,18053245:190684 -k1,1938:20320326,18053245:190683 -k1,1938:21379362,18053245:190684 -k1,1938:22662531,18053245:190684 -k1,1938:25599828,18053245:190683 -(1,1938:25599828,18053245:0,452978,115847 -r1,1938:27013229,18053245:1413401,568825,115847 -k1,1938:25599828,18053245:-1413401 -) -(1,1938:25599828,18053245:1413401,452978,115847 -k1,1938:25599828,18053245:3277 -h1,1938:27009952,18053245:0,411205,112570 -) -k1,1938:27377583,18053245:190684 -k1,1938:28196102,18053245:190684 -k1,1938:29405870,18053245:190683 -k1,1938:31923737,18053245:190684 -k1,1938:32583029,18053245:0 -) -(1,1939:6630773,18894733:25952256,505283,102891 -k1,1938:8095227,18894733:199609 -k1,1938:11158105,18894733:199610 -k1,1938:12560955,18894733:199609 -k1,1938:13292062,18894733:199610 -k1,1938:15778222,18894733:199609 -$1,1938:15778222,18894733 -k1,1938:16423662,18894733:182756 -k1,1938:17192309,18894733:182755 -$1,1938:17710043,18894733 -k1,1938:18083322,18894733:199609 -k1,1938:20201826,18894733:199610 -$1,1938:20201826,18894733 -$1,1938:20719560,18894733 -k1,1938:20919169,18894733:199609 -k1,1938:21650276,18894733:199610 -k1,1938:22205745,18894733:199609 -k1,1938:23339898,18894733:199610 -k1,1938:24730952,18894733:199609 -$1,1938:24730952,18894733 -$1,1938:25193636,18894733 -k1,1938:25393246,18894733:199610 -k1,1938:25948715,18894733:199609 -k1,1938:28945402,18894733:199610 -k1,1938:30341698,18894733:199609 -k1,1938:32583029,18894733:0 -) -(1,1939:6630773,19736221:25952256,513147,126483 -k1,1938:10096633,19736221:279500 -k1,1938:12367117,19736221:279500 -k1,1938:13931124,19736221:279501 -k1,1938:15229709,19736221:279500 -(1,1938:15229709,19736221:0,452978,115847 -r1,1938:16643110,19736221:1413401,568825,115847 -k1,1938:15229709,19736221:-1413401 -) -(1,1938:15229709,19736221:1413401,452978,115847 -k1,1938:15229709,19736221:3277 -h1,1938:16639833,19736221:0,411205,112570 -) -k1,1938:16922610,19736221:279500 -k1,1938:19948724,19736221:279500 -k1,1938:20759721,19736221:279500 -k1,1938:24376315,19736221:279501 -k1,1938:25465185,19736221:279500 -k1,1938:26533083,19736221:279500 -k1,1938:31218569,19736221:279500 -k1,1938:32583029,19736221:0 -) -(1,1939:6630773,20577709:25952256,505283,134348 -g1,1938:9646084,20577709 -g1,1938:12846207,20577709 -g1,1938:13401296,20577709 -g1,1938:15670152,20577709 -k1,1939:32583029,20577709:14761330 -g1,1939:32583029,20577709 -) -v1,1941:6630773,21768175:0,393216,0 -(1,1954:6630773,24836780:25952256,3461821,196608 -g1,1954:6630773,24836780 -g1,1954:6630773,24836780 -g1,1954:6434165,24836780 -(1,1954:6434165,24836780:0,3461821,196608 -r1,1954:32779637,24836780:26345472,3658429,196608 -k1,1954:6434165,24836780:-26345472 -) -(1,1954:6434165,24836780:26345472,3461821,196608 -[1,1954:6630773,24836780:25952256,3265213,0 -(1,1943:6630773,21975793:25952256,404226,101187 -(1,1942:6630773,21975793:0,0,0 -g1,1942:6630773,21975793 -g1,1942:6630773,21975793 -g1,1942:6303093,21975793 -(1,1942:6303093,21975793:0,0,0 -) -g1,1942:6630773,21975793 -) -g1,1943:7895356,21975793 -g1,1943:9476085,21975793 -h1,1943:11372959,21975793:0,0,0 -k1,1943:32583029,21975793:21210070 -g1,1943:32583029,21975793 -) -(1,1947:6630773,22707507:25952256,404226,76021 -(1,1945:6630773,22707507:0,0,0 -g1,1945:6630773,22707507 -g1,1945:6630773,22707507 -g1,1945:6303093,22707507 -(1,1945:6303093,22707507:0,0,0 -) -g1,1945:6630773,22707507 -) -g1,1947:7579210,22707507 -g1,1947:8843793,22707507 -h1,1947:10108376,22707507:0,0,0 -k1,1947:32583028,22707507:22474652 -g1,1947:32583028,22707507 -) -(1,1949:6630773,24029045:25952256,404226,101187 -(1,1948:6630773,24029045:0,0,0 -g1,1948:6630773,24029045 -g1,1948:6630773,24029045 -g1,1948:6303093,24029045 -(1,1948:6303093,24029045:0,0,0 -) -g1,1948:6630773,24029045 -) -k1,1949:6630773,24029045:0 -g1,1949:8843794,24029045 -g1,1949:10424523,24029045 -g1,1949:12005252,24029045 -g1,1949:13585981,24029045 -h1,1949:15482855,24029045:0,0,0 -k1,1949:32583029,24029045:17100174 -g1,1949:32583029,24029045 -) -(1,1953:6630773,24760759:25952256,404226,76021 -(1,1951:6630773,24760759:0,0,0 -g1,1951:6630773,24760759 -g1,1951:6630773,24760759 -g1,1951:6303093,24760759 -(1,1951:6303093,24760759:0,0,0 -) -g1,1951:6630773,24760759 -) -g1,1953:7579210,24760759 -g1,1953:8843793,24760759 -g1,1953:9159939,24760759 -g1,1953:10740668,24760759 -g1,1953:11056814,24760759 -g1,1953:12637543,24760759 -h1,1953:14218271,24760759:0,0,0 -k1,1953:32583029,24760759:18364758 -g1,1953:32583029,24760759 -) -] -) -g1,1954:32583029,24836780 -g1,1954:6630773,24836780 -g1,1954:6630773,24836780 -g1,1954:32583029,24836780 -g1,1954:32583029,24836780 -) -h1,1954:6630773,25033388:0,0,0 -(1,1958:6630773,26399164:25952256,513147,134348 -h1,1957:6630773,26399164:983040,0,0 -k1,1957:9056809,26399164:246309 -k1,1957:12062838,26399164:246308 -k1,1957:12968439,26399164:246309 -k1,1957:16125201,26399164:246308 -k1,1957:16903007,26399164:246309 -$1,1957:16903007,26399164 -k1,1957:17633796,26399164:268105 -k1,1957:18487793,26399164:268105 -$1,1957:19005527,26399164 -k1,1957:19425506,26399164:246309 -k1,1957:20863259,26399164:246308 -k1,1957:23026496,26399164:246309 -k1,1957:23888842,26399164:246308 -k1,1957:24549946,26399164:246261 -k1,1957:25557783,26399164:246309 -k1,1957:28557914,26399164:246308 -k1,1957:29823308,26399164:246309 -k1,1957:32583029,26399164:0 -) -(1,1958:6630773,27240652:25952256,513147,126483 -g1,1957:9576616,27240652 -(1,1957:9576616,27240652:0,424981,115847 -r1,1957:9934882,27240652:358266,540828,115847 -k1,1957:9576616,27240652:-358266 -) -(1,1957:9576616,27240652:358266,424981,115847 -k1,1957:9576616,27240652:3277 -h1,1957:9931605,27240652:0,411205,112570 -) -g1,1957:10134111,27240652 -g1,1957:10984768,27240652 -g1,1957:12203082,27240652 -g1,1957:14245183,27240652 -g1,1957:15103704,27240652 -g1,1957:16322018,27240652 -g1,1957:17712692,27240652 -g1,1957:19489373,27240652 -g1,1957:21082553,27240652 -(1,1957:21082553,27240652:0,452978,115847 -r1,1957:22495954,27240652:1413401,568825,115847 -k1,1957:21082553,27240652:-1413401 -) -(1,1957:21082553,27240652:1413401,452978,115847 -k1,1957:21082553,27240652:3277 -h1,1957:22492677,27240652:0,411205,112570 -) -k1,1958:32583029,27240652:9913405 -g1,1958:32583029,27240652 -) -v1,1960:6630773,28431118:0,393216,0 -(1,1973:6630773,31499723:25952256,3461821,196608 -g1,1973:6630773,31499723 -g1,1973:6630773,31499723 -g1,1973:6434165,31499723 -(1,1973:6434165,31499723:0,3461821,196608 -r1,1973:32779637,31499723:26345472,3658429,196608 -k1,1973:6434165,31499723:-26345472 -) -(1,1973:6434165,31499723:26345472,3461821,196608 -[1,1973:6630773,31499723:25952256,3265213,0 -(1,1962:6630773,28638736:25952256,404226,101187 -(1,1961:6630773,28638736:0,0,0 -g1,1961:6630773,28638736 -g1,1961:6630773,28638736 -g1,1961:6303093,28638736 -(1,1961:6303093,28638736:0,0,0 -) -g1,1961:6630773,28638736 -) -g1,1962:8211502,28638736 -g1,1962:9792231,28638736 -h1,1962:11689105,28638736:0,0,0 -k1,1962:32583029,28638736:20893924 -g1,1962:32583029,28638736 -) -(1,1966:6630773,29370450:25952256,404226,76021 -(1,1964:6630773,29370450:0,0,0 -g1,1964:6630773,29370450 -g1,1964:6630773,29370450 -g1,1964:6303093,29370450 -(1,1964:6303093,29370450:0,0,0 -) -g1,1964:6630773,29370450 -) -g1,1966:7579210,29370450 -g1,1966:8843793,29370450 -h1,1966:10424521,29370450:0,0,0 -k1,1966:32583029,29370450:22158508 -g1,1966:32583029,29370450 -) -(1,1968:6630773,30691988:25952256,404226,101187 -(1,1967:6630773,30691988:0,0,0 -g1,1967:6630773,30691988 -g1,1967:6630773,30691988 -g1,1967:6303093,30691988 -(1,1967:6303093,30691988:0,0,0 -) -g1,1967:6630773,30691988 -) -k1,1968:6630773,30691988:0 -g1,1968:9159940,30691988 -g1,1968:10740669,30691988 -g1,1968:12321398,30691988 -g1,1968:13902127,30691988 -h1,1968:15799001,30691988:0,0,0 -k1,1968:32583029,30691988:16784028 -g1,1968:32583029,30691988 -) -(1,1972:6630773,31423702:25952256,404226,76021 -(1,1970:6630773,31423702:0,0,0 -g1,1970:6630773,31423702 -g1,1970:6630773,31423702 -g1,1970:6303093,31423702 -(1,1970:6303093,31423702:0,0,0 -) -g1,1970:6630773,31423702 -) -g1,1972:7579210,31423702 -g1,1972:8843793,31423702 -g1,1972:10740667,31423702 -g1,1972:12637541,31423702 -g1,1972:12953687,31423702 -h1,1972:14218270,31423702:0,0,0 -k1,1972:32583030,31423702:18364760 -g1,1972:32583030,31423702 -) -] -) -g1,1973:32583029,31499723 -g1,1973:6630773,31499723 -g1,1973:6630773,31499723 -g1,1973:32583029,31499723 -g1,1973:32583029,31499723 -) -h1,1973:6630773,31696331:0,0,0 -(1,1977:6630773,33062107:25952256,513147,134348 -h1,1976:6630773,33062107:983040,0,0 -k1,1976:10737209,33062107:160513 -k1,1976:13808175,33062107:160512 -k1,1976:14500185,33062107:160513 -k1,1976:15016558,33062107:160513 -k1,1976:16111613,33062107:160512 -k1,1976:19520090,33062107:160513 -k1,1976:20138700,33062107:160513 -k1,1976:20830710,33062107:160513 -k1,1976:22277038,33062107:160512 -k1,1976:23791525,33062107:160513 -k1,1976:25929259,33062107:160513 -k1,1976:27037422,33062107:160512 -k1,1976:28217020,33062107:160513 -k1,1976:32583029,33062107:0 -) -(1,1977:6630773,33903595:25952256,513147,134348 -k1,1976:7457704,33903595:159775 -(1,1976:7457704,33903595:0,459977,115847 -r1,1976:10629664,33903595:3171960,575824,115847 -k1,1976:7457704,33903595:-3171960 -) -(1,1976:7457704,33903595:3171960,459977,115847 -k1,1976:7457704,33903595:3277 -h1,1976:10626387,33903595:0,411205,112570 -) -k1,1976:10789439,33903595:159775 -k1,1976:14465876,33903595:159775 -k1,1976:15387179,33903595:159775 -k1,1976:18488209,33903595:159774 -k1,1976:21319231,33903595:159775 -k1,1976:23000752,33903595:159775 -k1,1976:24108178,33903595:159775 -k1,1976:27654854,33903595:159775 -k1,1976:30572384,33903595:159775 -k1,1976:32583029,33903595:0 -) -(1,1977:6630773,34745083:25952256,513147,126483 -g1,1976:7489294,34745083 -g1,1976:8707608,34745083 -g1,1976:10560310,34745083 -(1,1976:10560310,34745083:0,452978,115847 -r1,1976:11973711,34745083:1413401,568825,115847 -k1,1976:10560310,34745083:-1413401 -) -(1,1976:10560310,34745083:1413401,452978,115847 -k1,1976:10560310,34745083:3277 -h1,1976:11970434,34745083:0,411205,112570 -) -g1,1976:12172940,34745083 -g1,1976:14860571,34745083 -g1,1976:15821328,34745083 -g1,1976:18691804,34745083 -(1,1976:18691804,34745083:0,452978,115847 -r1,1976:19050070,34745083:358266,568825,115847 -k1,1976:18691804,34745083:-358266 -) -(1,1976:18691804,34745083:358266,452978,115847 -k1,1976:18691804,34745083:3277 -h1,1976:19046793,34745083:0,411205,112570 -) -g1,1976:19249299,34745083 -k1,1977:32583029,34745083:10083144 -g1,1977:32583029,34745083 -) -v1,1979:6630773,36110859:0,393216,0 -(1,1989:6630773,40282234:25952256,4564591,616038 -g1,1989:6630773,40282234 -(1,1989:6630773,40282234:25952256,4564591,616038 -(1,1989:6630773,40898272:25952256,5180629,0 -[1,1989:6630773,40898272:25952256,5180629,0 -(1,1989:6630773,40872058:25952256,5128201,0 -r1,1989:6656987,40872058:26214,5128201,0 -[1,1989:6656987,40872058:25899828,5128201,0 -(1,1989:6656987,40282234:25899828,3948553,0 -[1,1989:7246811,40282234:24720180,3948553,0 -(1,1980:7246811,37421055:24720180,1087374,134348 -g1,1979:8655743,37421055 -g1,1979:10003818,37421055 -g1,1979:12949661,37421055 -(1,1979:12949661,37421055:0,452978,115847 -r1,1989:14363062,37421055:1413401,568825,115847 -k1,1979:12949661,37421055:-1413401 -) -(1,1979:12949661,37421055:1413401,452978,115847 -k1,1979:12949661,37421055:3277 -h1,1979:14359785,37421055:0,411205,112570 -) -g1,1979:14562291,37421055 -g1,1979:15412948,37421055 -g1,1979:18216578,37421055 -g1,1979:19434892,37421055 -g1,1979:22609456,37421055 -k1,1980:31966991,37421055:5429962 -g1,1980:31966991,37421055 -) -v1,1982:7246811,38611521:0,393216,0 -(1,1987:7246811,39561338:24720180,1343033,196608 -g1,1987:7246811,39561338 -g1,1987:7246811,39561338 -g1,1987:7050203,39561338 -(1,1987:7050203,39561338:0,1343033,196608 -r1,1989:32163599,39561338:25113396,1539641,196608 -k1,1987:7050203,39561338:-25113396 -) -(1,1987:7050203,39561338:25113396,1343033,196608 -[1,1987:7246811,39561338:24720180,1146425,0 -(1,1984:7246811,38819139:24720180,404226,82312 -(1,1983:7246811,38819139:0,0,0 -g1,1983:7246811,38819139 -g1,1983:7246811,38819139 -g1,1983:6919131,38819139 -(1,1983:6919131,38819139:0,0,0 -) -g1,1983:7246811,38819139 -) -g1,1984:7879103,38819139 -g1,1984:8827541,38819139 -g1,1984:11040562,38819139 -g1,1984:12621291,38819139 -h1,1984:13885874,38819139:0,0,0 -k1,1984:31966990,38819139:18081116 -g1,1984:31966990,38819139 -) -(1,1985:7246811,39485317:24720180,404226,76021 -h1,1985:7246811,39485317:0,0,0 -g1,1985:7879103,39485317 -g1,1985:8827540,39485317 -g1,1985:10092123,39485317 -g1,1985:10724415,39485317 -g1,1985:11356707,39485317 -g1,1985:12305144,39485317 -g1,1985:13569727,39485317 -g1,1985:14202019,39485317 -g1,1985:14834311,39485317 -g1,1985:15782748,39485317 -g1,1985:17047331,39485317 -g1,1985:17679623,39485317 -g1,1985:18311915,39485317 -g1,1985:19260352,39485317 -h1,1985:20208789,39485317:0,0,0 -k1,1985:31966991,39485317:11758202 -g1,1985:31966991,39485317 -) -] -) -g1,1987:31966991,39561338 -g1,1987:7246811,39561338 -g1,1987:7246811,39561338 -g1,1987:31966991,39561338 -g1,1987:31966991,39561338 -) -h1,1987:7246811,39757946:0,0,0 -] -) -] -r1,1989:32583029,40872058:26214,5128201,0 -) -] -) -) -g1,1989:32583029,40282234 -) -h1,1989:6630773,40898272:0,0,0 -(1,1992:6630773,42264048:25952256,513147,126483 -h1,1991:6630773,42264048:983040,0,0 -k1,1991:9382158,42264048:289197 -(1,1991:9382158,42264048:0,452978,115847 -r1,1991:12202407,42264048:2820249,568825,115847 -k1,1991:9382158,42264048:-2820249 -) -(1,1991:9382158,42264048:2820249,452978,115847 -k1,1991:9382158,42264048:3277 -h1,1991:12199130,42264048:0,411205,112570 -) -k1,1991:12491605,42264048:289198 -k1,1991:13649154,42264048:289197 -k1,1991:16331071,42264048:289198 -k1,1991:16976128,42264048:289197 -k1,1991:19243202,42264048:289197 -k1,1991:20191692,42264048:289198 -k1,1991:23124611,42264048:289197 -k1,1991:26198434,42264048:289198 -k1,1991:28498276,42264048:289197 -k1,1991:30054939,42264048:289197 -k1,1991:30699997,42264048:289198 -k1,1991:31923737,42264048:289197 -k1,1991:32583029,42264048:0 -) -(1,1992:6630773,43105536:25952256,513147,134348 -k1,1991:9026687,43105536:198492 -k1,1991:11409494,43105536:198492 -k1,1991:12235822,43105536:198493 -k1,1991:13453399,43105536:198492 -k1,1991:15979074,43105536:198492 -k1,1991:16836858,43105536:198492 -k1,1991:18473865,43105536:198492 -k1,1991:19028217,43105536:198492 -k1,1991:21424788,43105536:198493 -k1,1991:23582806,43105536:198492 -k1,1991:26248073,43105536:198492 -k1,1991:27129450,43105536:198492 -k1,1991:28394213,43105536:198492 -k1,1991:29244134,43105536:198493 -k1,1991:29798486,43105536:198492 -k1,1991:31105192,43105536:198492 -k1,1992:32583029,43105536:0 -) -(1,1992:6630773,43947024:25952256,513147,134348 -g1,1991:10085831,43947024 -g1,1991:10901098,43947024 -g1,1991:11456187,43947024 -g1,1991:12763630,43947024 -g1,1991:15634106,43947024 -g1,1991:17861019,43947024 -g1,1991:18719540,43947024 -g1,1991:19937854,43947024 -g1,1991:21790556,43947024 -g1,1991:23949311,43947024 -g1,1991:24831425,43947024 -g1,1991:26710997,43947024 -g1,1991:27901786,43947024 -k1,1992:32583029,43947024:566237 -g1,1992:32583029,43947024 -) -v1,1994:6630773,45137490:0,393216,0 -] -(1,2007:32583029,45706769:0,0,0 -g1,2007:32583029,45706769 -) -) -] -(1,2007:6630773,47279633:25952256,0,0 -h1,2007:6630773,47279633:25952256,0,0 -) -] -h1,2007:4262630,4025873:0,0,0 +(1,1912:6630773,7193429:25952256,404226,76021 +(1,1910:6630773,7193429:0,0,0 +g1,1910:6630773,7193429 +g1,1910:6630773,7193429 +g1,1910:6303093,7193429 +(1,1910:6303093,7193429:0,0,0 +) +g1,1910:6630773,7193429 +) +g1,1912:7579210,7193429 +g1,1912:8843793,7193429 +g1,1912:11689104,7193429 +h1,1912:14218269,7193429:0,0,0 +k1,1912:32583029,7193429:18364760 +g1,1912:32583029,7193429 +) +(1,1914:6630773,8514967:25952256,404226,101187 +(1,1913:6630773,8514967:0,0,0 +g1,1913:6630773,8514967 +g1,1913:6630773,8514967 +g1,1913:6303093,8514967 +(1,1913:6303093,8514967:0,0,0 +) +g1,1913:6630773,8514967 +) +g1,1914:9159939,8514967 +g1,1914:10740668,8514967 +h1,1914:12321396,8514967:0,0,0 +k1,1914:32583028,8514967:20261632 +g1,1914:32583028,8514967 +) +(1,1918:6630773,9246681:25952256,404226,76021 +(1,1916:6630773,9246681:0,0,0 +g1,1916:6630773,9246681 +g1,1916:6630773,9246681 +g1,1916:6303093,9246681 +(1,1916:6303093,9246681:0,0,0 +) +g1,1916:6630773,9246681 +) +g1,1918:7579210,9246681 +g1,1918:8843793,9246681 +h1,1918:10424521,9246681:0,0,0 +k1,1918:32583029,9246681:22158508 +g1,1918:32583029,9246681 +) +(1,1920:6630773,10568219:25952256,410518,9436 +(1,1919:6630773,10568219:0,0,0 +g1,1919:6630773,10568219 +g1,1919:6630773,10568219 +g1,1919:6303093,10568219 +(1,1919:6303093,10568219:0,0,0 +) +g1,1919:6630773,10568219 +) +g1,1920:9159939,10568219 +g1,1920:10740668,10568219 +h1,1920:12637542,10568219:0,0,0 +k1,1920:32583030,10568219:19945488 +g1,1920:32583030,10568219 +) +(1,1924:6630773,11299933:25952256,404226,76021 +(1,1922:6630773,11299933:0,0,0 +g1,1922:6630773,11299933 +g1,1922:6630773,11299933 +g1,1922:6303093,11299933 +(1,1922:6303093,11299933:0,0,0 +) +g1,1922:6630773,11299933 +) +g1,1924:7579210,11299933 +g1,1924:8843793,11299933 +h1,1924:10108376,11299933:0,0,0 +k1,1924:32583028,11299933:22474652 +g1,1924:32583028,11299933 +) +(1,1926:6630773,12621471:25952256,410518,107478 +(1,1925:6630773,12621471:0,0,0 +g1,1925:6630773,12621471 +g1,1925:6630773,12621471 +g1,1925:6303093,12621471 +(1,1925:6303093,12621471:0,0,0 +) +g1,1925:6630773,12621471 +) +k1,1926:6630773,12621471:0 +g1,1926:13585979,12621471 +g1,1926:16115145,12621471 +h1,1926:18960456,12621471:0,0,0 +k1,1926:32583029,12621471:13622573 +g1,1926:32583029,12621471 +) +(1,1930:6630773,13353185:25952256,404226,76021 +(1,1928:6630773,13353185:0,0,0 +g1,1928:6630773,13353185 +g1,1928:6630773,13353185 +g1,1928:6303093,13353185 +(1,1928:6303093,13353185:0,0,0 +) +g1,1928:6630773,13353185 +) +g1,1930:7579210,13353185 +g1,1930:8843793,13353185 +g1,1930:11056813,13353185 +g1,1930:11372959,13353185 +g1,1930:11689105,13353185 +g1,1930:12005251,13353185 +g1,1930:14218271,13353185 +g1,1930:14534417,13353185 +g1,1930:14850563,13353185 +g1,1930:15166709,13353185 +g1,1930:18328166,13353185 +h1,1930:20225040,13353185:0,0,0 +k1,1930:32583029,13353185:12357989 +g1,1930:32583029,13353185 +) +] +) +g1,1931:32583029,13429206 +g1,1931:6630773,13429206 +g1,1931:6630773,13429206 +g1,1931:32583029,13429206 +g1,1931:32583029,13429206 +) +h1,1931:6630773,13625814:0,0,0 +(1,1935:6630773,14991590:25952256,505283,126483 +h1,1934:6630773,14991590:983040,0,0 +g1,1934:8766591,14991590 +g1,1934:11743891,14991590 +g1,1934:13327240,14991590 +g1,1934:14920420,14991590 +g1,1934:17697835,14991590 +g1,1934:21157480,14991590 +k1,1935:32583029,14991590:8260160 +g1,1935:32583029,14991590 +) +v1,1937:6630773,16182056:0,393216,0 +(1,1941:6630773,16490861:25952256,702021,196608 +g1,1941:6630773,16490861 +g1,1941:6630773,16490861 +g1,1941:6434165,16490861 +(1,1941:6434165,16490861:0,702021,196608 +r1,1941:32779637,16490861:26345472,898629,196608 +k1,1941:6434165,16490861:-26345472 +) +(1,1941:6434165,16490861:26345472,702021,196608 +[1,1941:6630773,16490861:25952256,505413,0 +(1,1939:6630773,16389674:25952256,404226,101187 +(1,1938:6630773,16389674:0,0,0 +g1,1938:6630773,16389674 +g1,1938:6630773,16389674 +g1,1938:6303093,16389674 +(1,1938:6303093,16389674:0,0,0 +) +g1,1938:6630773,16389674 +) +g1,1939:8843793,16389674 +g1,1939:9792231,16389674 +g1,1939:12005252,16389674 +g1,1939:13585981,16389674 +g1,1939:15166710,16389674 +h1,1939:16431293,16389674:0,0,0 +k1,1939:32583029,16389674:16151736 +g1,1939:32583029,16389674 +) +] +) +g1,1941:32583029,16490861 +g1,1941:6630773,16490861 +g1,1941:6630773,16490861 +g1,1941:32583029,16490861 +g1,1941:32583029,16490861 +) +h1,1941:6630773,16687469:0,0,0 +(1,1945:6630773,18053245:25952256,513147,134348 +h1,1944:6630773,18053245:983040,0,0 +k1,1944:8633527,18053245:190684 +k1,1944:10015655,18053245:190683 +k1,1944:10672300,18053245:190684 +k1,1944:11218844,18053245:190684 +k1,1944:13104288,18053245:190683 +k1,1944:14975315,18053245:190684 +k1,1944:17632774,18053245:190684 +k1,1944:18474885,18053245:190683 +k1,1944:19021429,18053245:190684 +k1,1944:20320326,18053245:190683 +k1,1944:21379362,18053245:190684 +k1,1944:22662531,18053245:190684 +k1,1944:25599828,18053245:190683 +(1,1944:25599828,18053245:0,452978,115847 +r1,1944:27013229,18053245:1413401,568825,115847 +k1,1944:25599828,18053245:-1413401 +) +(1,1944:25599828,18053245:1413401,452978,115847 +k1,1944:25599828,18053245:3277 +h1,1944:27009952,18053245:0,411205,112570 +) +k1,1944:27377583,18053245:190684 +k1,1944:28196102,18053245:190684 +k1,1944:29405870,18053245:190683 +k1,1944:31923737,18053245:190684 +k1,1944:32583029,18053245:0 +) +(1,1945:6630773,18894733:25952256,505283,102891 +k1,1944:8095227,18894733:199609 +k1,1944:11158105,18894733:199610 +k1,1944:12560955,18894733:199609 +k1,1944:13292062,18894733:199610 +k1,1944:15778222,18894733:199609 +$1,1944:15778222,18894733 +k1,1944:16423662,18894733:182756 +k1,1944:17192309,18894733:182755 +$1,1944:17710043,18894733 +k1,1944:18083322,18894733:199609 +k1,1944:20201826,18894733:199610 +$1,1944:20201826,18894733 +$1,1944:20719560,18894733 +k1,1944:20919169,18894733:199609 +k1,1944:21650276,18894733:199610 +k1,1944:22205745,18894733:199609 +k1,1944:23339898,18894733:199610 +k1,1944:24730952,18894733:199609 +$1,1944:24730952,18894733 +$1,1944:25193636,18894733 +k1,1944:25393246,18894733:199610 +k1,1944:25948715,18894733:199609 +k1,1944:28945402,18894733:199610 +k1,1944:30341698,18894733:199609 +k1,1944:32583029,18894733:0 +) +(1,1945:6630773,19736221:25952256,513147,126483 +k1,1944:10096633,19736221:279500 +k1,1944:12367117,19736221:279500 +k1,1944:13931124,19736221:279501 +k1,1944:15229709,19736221:279500 +(1,1944:15229709,19736221:0,452978,115847 +r1,1944:16643110,19736221:1413401,568825,115847 +k1,1944:15229709,19736221:-1413401 +) +(1,1944:15229709,19736221:1413401,452978,115847 +k1,1944:15229709,19736221:3277 +h1,1944:16639833,19736221:0,411205,112570 +) +k1,1944:16922610,19736221:279500 +k1,1944:19948724,19736221:279500 +k1,1944:20759721,19736221:279500 +k1,1944:24376315,19736221:279501 +k1,1944:25465185,19736221:279500 +k1,1944:26533083,19736221:279500 +k1,1944:31218569,19736221:279500 +k1,1944:32583029,19736221:0 +) +(1,1945:6630773,20577709:25952256,505283,134348 +g1,1944:9646084,20577709 +g1,1944:12846207,20577709 +g1,1944:13401296,20577709 +g1,1944:15670152,20577709 +k1,1945:32583029,20577709:14761330 +g1,1945:32583029,20577709 +) +v1,1947:6630773,21768175:0,393216,0 +(1,1960:6630773,24836780:25952256,3461821,196608 +g1,1960:6630773,24836780 +g1,1960:6630773,24836780 +g1,1960:6434165,24836780 +(1,1960:6434165,24836780:0,3461821,196608 +r1,1960:32779637,24836780:26345472,3658429,196608 +k1,1960:6434165,24836780:-26345472 +) +(1,1960:6434165,24836780:26345472,3461821,196608 +[1,1960:6630773,24836780:25952256,3265213,0 +(1,1949:6630773,21975793:25952256,404226,101187 +(1,1948:6630773,21975793:0,0,0 +g1,1948:6630773,21975793 +g1,1948:6630773,21975793 +g1,1948:6303093,21975793 +(1,1948:6303093,21975793:0,0,0 +) +g1,1948:6630773,21975793 +) +g1,1949:7895356,21975793 +g1,1949:9476085,21975793 +h1,1949:11372959,21975793:0,0,0 +k1,1949:32583029,21975793:21210070 +g1,1949:32583029,21975793 +) +(1,1953:6630773,22707507:25952256,404226,76021 +(1,1951:6630773,22707507:0,0,0 +g1,1951:6630773,22707507 +g1,1951:6630773,22707507 +g1,1951:6303093,22707507 +(1,1951:6303093,22707507:0,0,0 +) +g1,1951:6630773,22707507 +) +g1,1953:7579210,22707507 +g1,1953:8843793,22707507 +h1,1953:10108376,22707507:0,0,0 +k1,1953:32583028,22707507:22474652 +g1,1953:32583028,22707507 +) +(1,1955:6630773,24029045:25952256,404226,101187 +(1,1954:6630773,24029045:0,0,0 +g1,1954:6630773,24029045 +g1,1954:6630773,24029045 +g1,1954:6303093,24029045 +(1,1954:6303093,24029045:0,0,0 +) +g1,1954:6630773,24029045 +) +k1,1955:6630773,24029045:0 +g1,1955:8843794,24029045 +g1,1955:10424523,24029045 +g1,1955:12005252,24029045 +g1,1955:13585981,24029045 +h1,1955:15482855,24029045:0,0,0 +k1,1955:32583029,24029045:17100174 +g1,1955:32583029,24029045 +) +(1,1959:6630773,24760759:25952256,404226,76021 +(1,1957:6630773,24760759:0,0,0 +g1,1957:6630773,24760759 +g1,1957:6630773,24760759 +g1,1957:6303093,24760759 +(1,1957:6303093,24760759:0,0,0 +) +g1,1957:6630773,24760759 +) +g1,1959:7579210,24760759 +g1,1959:8843793,24760759 +g1,1959:9159939,24760759 +g1,1959:10740668,24760759 +g1,1959:11056814,24760759 +g1,1959:12637543,24760759 +h1,1959:14218271,24760759:0,0,0 +k1,1959:32583029,24760759:18364758 +g1,1959:32583029,24760759 +) +] +) +g1,1960:32583029,24836780 +g1,1960:6630773,24836780 +g1,1960:6630773,24836780 +g1,1960:32583029,24836780 +g1,1960:32583029,24836780 +) +h1,1960:6630773,25033388:0,0,0 +(1,1964:6630773,26399164:25952256,513147,134348 +h1,1963:6630773,26399164:983040,0,0 +k1,1963:9056809,26399164:246309 +k1,1963:12062838,26399164:246308 +k1,1963:12968439,26399164:246309 +k1,1963:16125201,26399164:246308 +k1,1963:16903007,26399164:246309 +$1,1963:16903007,26399164 +k1,1963:17633796,26399164:268105 +k1,1963:18487793,26399164:268105 +$1,1963:19005527,26399164 +k1,1963:19425506,26399164:246309 +k1,1963:20863259,26399164:246308 +k1,1963:23026496,26399164:246309 +k1,1963:23888842,26399164:246308 +k1,1963:24549946,26399164:246261 +k1,1963:25557783,26399164:246309 +k1,1963:28557914,26399164:246308 +k1,1963:29823308,26399164:246309 +k1,1963:32583029,26399164:0 +) +(1,1964:6630773,27240652:25952256,513147,126483 +g1,1963:9576616,27240652 +(1,1963:9576616,27240652:0,424981,115847 +r1,1963:9934882,27240652:358266,540828,115847 +k1,1963:9576616,27240652:-358266 +) +(1,1963:9576616,27240652:358266,424981,115847 +k1,1963:9576616,27240652:3277 +h1,1963:9931605,27240652:0,411205,112570 +) +g1,1963:10134111,27240652 +g1,1963:10984768,27240652 +g1,1963:12203082,27240652 +g1,1963:14245183,27240652 +g1,1963:15103704,27240652 +g1,1963:16322018,27240652 +g1,1963:17712692,27240652 +g1,1963:19489373,27240652 +g1,1963:21082553,27240652 +(1,1963:21082553,27240652:0,452978,115847 +r1,1963:22495954,27240652:1413401,568825,115847 +k1,1963:21082553,27240652:-1413401 +) +(1,1963:21082553,27240652:1413401,452978,115847 +k1,1963:21082553,27240652:3277 +h1,1963:22492677,27240652:0,411205,112570 +) +k1,1964:32583029,27240652:9913405 +g1,1964:32583029,27240652 +) +v1,1966:6630773,28431118:0,393216,0 +(1,1979:6630773,31499723:25952256,3461821,196608 +g1,1979:6630773,31499723 +g1,1979:6630773,31499723 +g1,1979:6434165,31499723 +(1,1979:6434165,31499723:0,3461821,196608 +r1,1979:32779637,31499723:26345472,3658429,196608 +k1,1979:6434165,31499723:-26345472 +) +(1,1979:6434165,31499723:26345472,3461821,196608 +[1,1979:6630773,31499723:25952256,3265213,0 +(1,1968:6630773,28638736:25952256,404226,101187 +(1,1967:6630773,28638736:0,0,0 +g1,1967:6630773,28638736 +g1,1967:6630773,28638736 +g1,1967:6303093,28638736 +(1,1967:6303093,28638736:0,0,0 +) +g1,1967:6630773,28638736 +) +g1,1968:8211502,28638736 +g1,1968:9792231,28638736 +h1,1968:11689105,28638736:0,0,0 +k1,1968:32583029,28638736:20893924 +g1,1968:32583029,28638736 +) +(1,1972:6630773,29370450:25952256,404226,76021 +(1,1970:6630773,29370450:0,0,0 +g1,1970:6630773,29370450 +g1,1970:6630773,29370450 +g1,1970:6303093,29370450 +(1,1970:6303093,29370450:0,0,0 +) +g1,1970:6630773,29370450 +) +g1,1972:7579210,29370450 +g1,1972:8843793,29370450 +h1,1972:10424521,29370450:0,0,0 +k1,1972:32583029,29370450:22158508 +g1,1972:32583029,29370450 +) +(1,1974:6630773,30691988:25952256,404226,101187 +(1,1973:6630773,30691988:0,0,0 +g1,1973:6630773,30691988 +g1,1973:6630773,30691988 +g1,1973:6303093,30691988 +(1,1973:6303093,30691988:0,0,0 +) +g1,1973:6630773,30691988 +) +k1,1974:6630773,30691988:0 +g1,1974:9159940,30691988 +g1,1974:10740669,30691988 +g1,1974:12321398,30691988 +g1,1974:13902127,30691988 +h1,1974:15799001,30691988:0,0,0 +k1,1974:32583029,30691988:16784028 +g1,1974:32583029,30691988 +) +(1,1978:6630773,31423702:25952256,404226,76021 +(1,1976:6630773,31423702:0,0,0 +g1,1976:6630773,31423702 +g1,1976:6630773,31423702 +g1,1976:6303093,31423702 +(1,1976:6303093,31423702:0,0,0 +) +g1,1976:6630773,31423702 +) +g1,1978:7579210,31423702 +g1,1978:8843793,31423702 +g1,1978:10740667,31423702 +g1,1978:12637541,31423702 +g1,1978:12953687,31423702 +h1,1978:14218270,31423702:0,0,0 +k1,1978:32583030,31423702:18364760 +g1,1978:32583030,31423702 +) +] +) +g1,1979:32583029,31499723 +g1,1979:6630773,31499723 +g1,1979:6630773,31499723 +g1,1979:32583029,31499723 +g1,1979:32583029,31499723 +) +h1,1979:6630773,31696331:0,0,0 +(1,1983:6630773,33062107:25952256,513147,134348 +h1,1982:6630773,33062107:983040,0,0 +k1,1982:10737209,33062107:160513 +k1,1982:13808175,33062107:160512 +k1,1982:14500185,33062107:160513 +k1,1982:15016558,33062107:160513 +k1,1982:16111613,33062107:160512 +k1,1982:19520090,33062107:160513 +k1,1982:20138700,33062107:160513 +k1,1982:20830710,33062107:160513 +k1,1982:22277038,33062107:160512 +k1,1982:23791525,33062107:160513 +k1,1982:25929259,33062107:160513 +k1,1982:27037422,33062107:160512 +k1,1982:28217020,33062107:160513 +k1,1982:32583029,33062107:0 +) +(1,1983:6630773,33903595:25952256,513147,134348 +k1,1982:7457704,33903595:159775 +(1,1982:7457704,33903595:0,459977,115847 +r1,1982:10629664,33903595:3171960,575824,115847 +k1,1982:7457704,33903595:-3171960 +) +(1,1982:7457704,33903595:3171960,459977,115847 +k1,1982:7457704,33903595:3277 +h1,1982:10626387,33903595:0,411205,112570 +) +k1,1982:10789439,33903595:159775 +k1,1982:14465876,33903595:159775 +k1,1982:15387179,33903595:159775 +k1,1982:18488209,33903595:159774 +k1,1982:21319231,33903595:159775 +k1,1982:23000752,33903595:159775 +k1,1982:24108178,33903595:159775 +k1,1982:27654854,33903595:159775 +k1,1982:30572384,33903595:159775 +k1,1982:32583029,33903595:0 +) +(1,1983:6630773,34745083:25952256,513147,126483 +g1,1982:7489294,34745083 +g1,1982:8707608,34745083 +g1,1982:10560310,34745083 +(1,1982:10560310,34745083:0,452978,115847 +r1,1982:11973711,34745083:1413401,568825,115847 +k1,1982:10560310,34745083:-1413401 +) +(1,1982:10560310,34745083:1413401,452978,115847 +k1,1982:10560310,34745083:3277 +h1,1982:11970434,34745083:0,411205,112570 +) +g1,1982:12172940,34745083 +g1,1982:14860571,34745083 +g1,1982:15821328,34745083 +g1,1982:18691804,34745083 +(1,1982:18691804,34745083:0,452978,115847 +r1,1982:19050070,34745083:358266,568825,115847 +k1,1982:18691804,34745083:-358266 +) +(1,1982:18691804,34745083:358266,452978,115847 +k1,1982:18691804,34745083:3277 +h1,1982:19046793,34745083:0,411205,112570 +) +g1,1982:19249299,34745083 +k1,1983:32583029,34745083:10083144 +g1,1983:32583029,34745083 +) +v1,1985:6630773,36110859:0,393216,0 +(1,1995:6630773,40282234:25952256,4564591,616038 +g1,1995:6630773,40282234 +(1,1995:6630773,40282234:25952256,4564591,616038 +(1,1995:6630773,40898272:25952256,5180629,0 +[1,1995:6630773,40898272:25952256,5180629,0 +(1,1995:6630773,40872058:25952256,5128201,0 +r1,1995:6656987,40872058:26214,5128201,0 +[1,1995:6656987,40872058:25899828,5128201,0 +(1,1995:6656987,40282234:25899828,3948553,0 +[1,1995:7246811,40282234:24720180,3948553,0 +(1,1986:7246811,37421055:24720180,1087374,134348 +g1,1985:8655743,37421055 +g1,1985:10003818,37421055 +g1,1985:12949661,37421055 +(1,1985:12949661,37421055:0,452978,115847 +r1,1995:14363062,37421055:1413401,568825,115847 +k1,1985:12949661,37421055:-1413401 +) +(1,1985:12949661,37421055:1413401,452978,115847 +k1,1985:12949661,37421055:3277 +h1,1985:14359785,37421055:0,411205,112570 +) +g1,1985:14562291,37421055 +g1,1985:15412948,37421055 +g1,1985:18216578,37421055 +g1,1985:19434892,37421055 +g1,1985:22609456,37421055 +k1,1986:31966991,37421055:5429962 +g1,1986:31966991,37421055 +) +v1,1988:7246811,38611521:0,393216,0 +(1,1993:7246811,39561338:24720180,1343033,196608 +g1,1993:7246811,39561338 +g1,1993:7246811,39561338 +g1,1993:7050203,39561338 +(1,1993:7050203,39561338:0,1343033,196608 +r1,1995:32163599,39561338:25113396,1539641,196608 +k1,1993:7050203,39561338:-25113396 +) +(1,1993:7050203,39561338:25113396,1343033,196608 +[1,1993:7246811,39561338:24720180,1146425,0 +(1,1990:7246811,38819139:24720180,404226,82312 +(1,1989:7246811,38819139:0,0,0 +g1,1989:7246811,38819139 +g1,1989:7246811,38819139 +g1,1989:6919131,38819139 +(1,1989:6919131,38819139:0,0,0 +) +g1,1989:7246811,38819139 +) +g1,1990:7879103,38819139 +g1,1990:8827541,38819139 +g1,1990:11040562,38819139 +g1,1990:12621291,38819139 +h1,1990:13885874,38819139:0,0,0 +k1,1990:31966990,38819139:18081116 +g1,1990:31966990,38819139 +) +(1,1991:7246811,39485317:24720180,404226,76021 +h1,1991:7246811,39485317:0,0,0 +g1,1991:7879103,39485317 +g1,1991:8827540,39485317 +g1,1991:10092123,39485317 +g1,1991:10724415,39485317 +g1,1991:11356707,39485317 +g1,1991:12305144,39485317 +g1,1991:13569727,39485317 +g1,1991:14202019,39485317 +g1,1991:14834311,39485317 +g1,1991:15782748,39485317 +g1,1991:17047331,39485317 +g1,1991:17679623,39485317 +g1,1991:18311915,39485317 +g1,1991:19260352,39485317 +h1,1991:20208789,39485317:0,0,0 +k1,1991:31966991,39485317:11758202 +g1,1991:31966991,39485317 +) +] +) +g1,1993:31966991,39561338 +g1,1993:7246811,39561338 +g1,1993:7246811,39561338 +g1,1993:31966991,39561338 +g1,1993:31966991,39561338 +) +h1,1993:7246811,39757946:0,0,0 +] +) +] +r1,1995:32583029,40872058:26214,5128201,0 +) +] +) +) +g1,1995:32583029,40282234 +) +h1,1995:6630773,40898272:0,0,0 +(1,1998:6630773,42264048:25952256,513147,126483 +h1,1997:6630773,42264048:983040,0,0 +k1,1997:9382158,42264048:289197 +(1,1997:9382158,42264048:0,452978,115847 +r1,1997:12202407,42264048:2820249,568825,115847 +k1,1997:9382158,42264048:-2820249 +) +(1,1997:9382158,42264048:2820249,452978,115847 +k1,1997:9382158,42264048:3277 +h1,1997:12199130,42264048:0,411205,112570 +) +k1,1997:12491605,42264048:289198 +k1,1997:13649154,42264048:289197 +k1,1997:16331071,42264048:289198 +k1,1997:16976128,42264048:289197 +k1,1997:19243202,42264048:289197 +k1,1997:20191692,42264048:289198 +k1,1997:23124611,42264048:289197 +k1,1997:26198434,42264048:289198 +k1,1997:28498276,42264048:289197 +k1,1997:30054939,42264048:289197 +k1,1997:30699997,42264048:289198 +k1,1997:31923737,42264048:289197 +k1,1997:32583029,42264048:0 +) +(1,1998:6630773,43105536:25952256,513147,134348 +k1,1997:9026687,43105536:198492 +k1,1997:11409494,43105536:198492 +k1,1997:12235822,43105536:198493 +k1,1997:13453399,43105536:198492 +k1,1997:15979074,43105536:198492 +k1,1997:16836858,43105536:198492 +k1,1997:18473865,43105536:198492 +k1,1997:19028217,43105536:198492 +k1,1997:21424788,43105536:198493 +k1,1997:23582806,43105536:198492 +k1,1997:26248073,43105536:198492 +k1,1997:27129450,43105536:198492 +k1,1997:28394213,43105536:198492 +k1,1997:29244134,43105536:198493 +k1,1997:29798486,43105536:198492 +k1,1997:31105192,43105536:198492 +k1,1998:32583029,43105536:0 +) +(1,1998:6630773,43947024:25952256,513147,134348 +g1,1997:10085831,43947024 +g1,1997:10901098,43947024 +g1,1997:11456187,43947024 +g1,1997:12763630,43947024 +g1,1997:15634106,43947024 +g1,1997:17861019,43947024 +g1,1997:18719540,43947024 +g1,1997:19937854,43947024 +g1,1997:21790556,43947024 +g1,1997:23949311,43947024 +g1,1997:24831425,43947024 +g1,1997:26710997,43947024 +g1,1997:27901786,43947024 +k1,1998:32583029,43947024:566237 +g1,1998:32583029,43947024 +) +v1,2000:6630773,45137490:0,393216,0 +] +(1,2013:32583029,45706769:0,0,0 +g1,2013:32583029,45706769 +) +) +] +(1,2013:6630773,47279633:25952256,0,0 +h1,2013:6630773,47279633:25952256,0,0 +) +] +h1,2013:4262630,4025873:0,0,0 ] !23403 }48 -Input:301:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:302:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:303:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:304:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:305:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:306:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!557 {49 -[1,2128:4262630,47279633:28320399,43253760,0 -(1,2128:4262630,4025873:0,0,0 -[1,2128:-473657,4025873:25952256,0,0 -(1,2128:-473657,-710414:25952256,0,0 -h1,2128:-473657,-710414:0,0,0 -(1,2128:-473657,-710414:0,0,0 -(1,2128:-473657,-710414:0,0,0 -g1,2128:-473657,-710414 -(1,2128:-473657,-710414:65781,0,65781 -g1,2128:-407876,-710414 -[1,2128:-407876,-644633:0,0,0 +[1,2134:4262630,47279633:28320399,43253760,0 +(1,2134:4262630,4025873:0,0,0 +[1,2134:-473657,4025873:25952256,0,0 +(1,2134:-473657,-710414:25952256,0,0 +h1,2134:-473657,-710414:0,0,0 +(1,2134:-473657,-710414:0,0,0 +(1,2134:-473657,-710414:0,0,0 +g1,2134:-473657,-710414 +(1,2134:-473657,-710414:65781,0,65781 +g1,2134:-407876,-710414 +[1,2134:-407876,-644633:0,0,0 ] ) -k1,2128:-473657,-710414:-65781 +k1,2134:-473657,-710414:-65781 ) ) -k1,2128:25478599,-710414:25952256 -g1,2128:25478599,-710414 +k1,2134:25478599,-710414:25952256 +g1,2134:25478599,-710414 ) ] ) -[1,2128:6630773,47279633:25952256,43253760,0 -[1,2128:6630773,4812305:25952256,786432,0 -(1,2128:6630773,4812305:25952256,505283,134348 -(1,2128:6630773,4812305:25952256,505283,134348 -g1,2128:3078558,4812305 -[1,2128:3078558,4812305:0,0,0 -(1,2128:3078558,2439708:0,1703936,0 -k1,2128:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2128:2537886,2439708:1179648,16384,0 +[1,2134:6630773,47279633:25952256,43253760,0 +[1,2134:6630773,4812305:25952256,786432,0 +(1,2134:6630773,4812305:25952256,505283,134348 +(1,2134:6630773,4812305:25952256,505283,134348 +g1,2134:3078558,4812305 +[1,2134:3078558,4812305:0,0,0 +(1,2134:3078558,2439708:0,1703936,0 +k1,2134:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2134:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2128:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2134:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2128:3078558,4812305:0,0,0 -(1,2128:3078558,2439708:0,1703936,0 -g1,2128:29030814,2439708 -g1,2128:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2128:36151628,1915420:16384,1179648,0 +[1,2134:3078558,4812305:0,0,0 +(1,2134:3078558,2439708:0,1703936,0 +g1,2134:29030814,2439708 +g1,2134:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2134:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2128:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2134:37855564,2439708:1179648,16384,0 ) ) -k1,2128:3078556,2439708:-34777008 +k1,2134:3078556,2439708:-34777008 ) ] -[1,2128:3078558,4812305:0,0,0 -(1,2128:3078558,49800853:0,16384,2228224 -k1,2128:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2128:2537886,49800853:1179648,16384,0 +[1,2134:3078558,4812305:0,0,0 +(1,2134:3078558,49800853:0,16384,2228224 +k1,2134:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2134:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2128:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2134:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2128:3078558,4812305:0,0,0 -(1,2128:3078558,49800853:0,16384,2228224 -g1,2128:29030814,49800853 -g1,2128:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2128:36151628,51504789:16384,1179648,0 +[1,2134:3078558,4812305:0,0,0 +(1,2134:3078558,49800853:0,16384,2228224 +g1,2134:29030814,49800853 +g1,2134:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2134:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2128:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2134:37855564,49800853:1179648,16384,0 ) ) -k1,2128:3078556,49800853:-34777008 +k1,2134:3078556,49800853:-34777008 ) ] -g1,2128:6630773,4812305 -k1,2128:19562994,4812305:12135303 -g1,2128:20949735,4812305 -g1,2128:21598541,4812305 -g1,2128:24912696,4812305 -g1,2128:27600327,4812305 -g1,2128:29010006,4812305 +g1,2134:6630773,4812305 +k1,2134:19515153,4812305:12087462 +g1,2134:20901894,4812305 +g1,2134:21550700,4812305 +g1,2134:24864855,4812305 +g1,2134:27600327,4812305 +g1,2134:29010006,4812305 ) ) ] -[1,2128:6630773,45706769:25952256,40108032,0 -(1,2128:6630773,45706769:25952256,40108032,0 -(1,2128:6630773,45706769:0,0,0 -g1,2128:6630773,45706769 +[1,2134:6630773,45706769:25952256,40108032,0 +(1,2134:6630773,45706769:25952256,40108032,0 +(1,2134:6630773,45706769:0,0,0 +g1,2134:6630773,45706769 ) -[1,2128:6630773,45706769:25952256,40108032,0 -v1,2007:6630773,6254097:0,393216,0 -(1,2007:6630773,9322702:25952256,3461821,196608 -g1,2007:6630773,9322702 -g1,2007:6630773,9322702 -g1,2007:6434165,9322702 -(1,2007:6434165,9322702:0,3461821,196608 -r1,2007:32779637,9322702:26345472,3658429,196608 -k1,2007:6434165,9322702:-26345472 +[1,2134:6630773,45706769:25952256,40108032,0 +v1,2013:6630773,6254097:0,393216,0 +(1,2013:6630773,9322702:25952256,3461821,196608 +g1,2013:6630773,9322702 +g1,2013:6630773,9322702 +g1,2013:6434165,9322702 +(1,2013:6434165,9322702:0,3461821,196608 +r1,2013:32779637,9322702:26345472,3658429,196608 +k1,2013:6434165,9322702:-26345472 ) -(1,2007:6434165,9322702:26345472,3461821,196608 -[1,2007:6630773,9322702:25952256,3265213,0 -(1,1996:6630773,6461715:25952256,404226,101187 -(1,1995:6630773,6461715:0,0,0 -g1,1995:6630773,6461715 -g1,1995:6630773,6461715 -g1,1995:6303093,6461715 -(1,1995:6303093,6461715:0,0,0 -) -g1,1995:6630773,6461715 -) -k1,1996:6630773,6461715:0 -h1,1996:11056812,6461715:0,0,0 -k1,1996:32583028,6461715:21526216 -g1,1996:32583028,6461715 -) -(1,2000:6630773,7193429:25952256,404226,76021 -(1,1998:6630773,7193429:0,0,0 -g1,1998:6630773,7193429 -g1,1998:6630773,7193429 -g1,1998:6303093,7193429 -(1,1998:6303093,7193429:0,0,0 -) -g1,1998:6630773,7193429 -) -g1,2000:7579210,7193429 -g1,2000:8843793,7193429 -g1,2000:10108376,7193429 -g1,2000:11372959,7193429 -h1,2000:12321396,7193429:0,0,0 -k1,2000:32583028,7193429:20261632 -g1,2000:32583028,7193429 -) -(1,2002:6630773,8514967:25952256,404226,101187 -(1,2001:6630773,8514967:0,0,0 -g1,2001:6630773,8514967 -g1,2001:6630773,8514967 -g1,2001:6303093,8514967 -(1,2001:6303093,8514967:0,0,0 -) -g1,2001:6630773,8514967 -) -k1,2002:6630773,8514967:0 -g1,2002:8843794,8514967 -g1,2002:10424523,8514967 -g1,2002:12005252,8514967 -g1,2002:13585981,8514967 -k1,2002:13585981,8514967:0 -h1,2002:18012020,8514967:0,0,0 -k1,2002:32583029,8514967:14571009 -g1,2002:32583029,8514967 -) -(1,2006:6630773,9246681:25952256,404226,76021 -(1,2004:6630773,9246681:0,0,0 -g1,2004:6630773,9246681 -g1,2004:6630773,9246681 -g1,2004:6303093,9246681 -(1,2004:6303093,9246681:0,0,0 -) -g1,2004:6630773,9246681 -) -g1,2006:7579210,9246681 -g1,2006:8843793,9246681 -g1,2006:9159939,9246681 -g1,2006:10740668,9246681 -g1,2006:11056814,9246681 -g1,2006:12637543,9246681 -h1,2006:14218271,9246681:0,0,0 -k1,2006:32583029,9246681:18364758 -g1,2006:32583029,9246681 -) -] -) -g1,2007:32583029,9322702 -g1,2007:6630773,9322702 -g1,2007:6630773,9322702 -g1,2007:32583029,9322702 -g1,2007:32583029,9322702 -) -h1,2007:6630773,9519310:0,0,0 -(1,2011:6630773,10885086:25952256,513147,134348 -h1,2010:6630773,10885086:983040,0,0 -k1,2010:8490292,10885086:248644 -k1,2010:9758020,10885086:248643 -k1,2010:12696262,10885086:248644 -k1,2010:14458131,10885086:248643 -k1,2010:15322813,10885086:248644 -k1,2010:17898640,10885086:248644 -k1,2010:18806575,10885086:248643 -k1,2010:20493734,10885086:248644 -k1,2010:21761462,10885086:248643 -k1,2010:22944649,10885086:248644 -k1,2010:25033544,10885086:248644 -k1,2010:28028801,10885086:248643 -k1,2010:28808942,10885086:248644 -$1,2010:28808942,10885086 -$1,2010:29377139,10885086 -k1,2010:29625782,10885086:248643 -k1,2010:31563944,10885086:248644 -k1,2010:32583029,10885086:0 -) -(1,2011:6630773,11726574:25952256,513147,134348 -k1,2010:10573497,11726574:155398 -k1,2010:13475508,11726574:155397 -k1,2010:14162403,11726574:155398 -$1,2010:14162403,11726574 -$1,2010:14730600,11726574 -k1,2010:15059668,11726574:155398 -k1,2010:15692822,11726574:155397 -k1,2010:16716572,11726574:155398 -k1,2010:18347185,11726574:155398 -k1,2010:19767427,11726574:155397 -$1,2010:19767427,11726574 -$1,2010:20285161,11726574 -k1,2010:20440559,11726574:155398 -k1,2010:21787402,11726574:155398 -$1,2010:21787402,11726574 -$1,2010:22235668,11726574 -k1,2010:22564735,11726574:155397 -k1,2010:24228772,11726574:155398 -k1,2010:26224421,11726574:155398 -k1,2010:26911315,11726574:155397 -k1,2010:28761474,11726574:155398 -k1,2010:29678399,11726574:155397 -$1,2010:29678399,11726574 -k1,2010:30245651,11726574:49518 -k1,2010:30863365,11726574:49517 -$1,2010:31311631,11726574 -k1,2010:32583029,11726574:0 -) -(1,2011:6630773,12568062:25952256,505283,126483 -k1,2010:7807978,12568062:158120 -k1,2010:9350218,12568062:158120 -k1,2010:11163123,12568062:158121 -k1,2010:14486632,12568062:158120 -(1,2010:14486632,12568062:0,452978,115847 -r1,2010:20120575,12568062:5633943,568825,115847 -k1,2010:14486632,12568062:-5633943 -) -(1,2010:14486632,12568062:5633943,452978,115847 -g1,2010:16951892,12568062 -g1,2010:18710451,12568062 -h1,2010:20117298,12568062:0,411205,112570 -) -k1,2010:20278695,12568062:158120 -k1,2010:20968312,12568062:158120 -k1,2010:21482293,12568062:158121 -k1,2010:24571838,12568062:158120 -k1,2010:26419476,12568062:158120 -(1,2010:26419476,12568062:0,414482,115847 -r1,2010:28536301,12568062:2116825,530329,115847 -k1,2010:26419476,12568062:-2116825 -) -(1,2010:26419476,12568062:2116825,414482,115847 -k1,2010:26419476,12568062:3277 -h1,2010:28533024,12568062:0,411205,112570 -) -k1,2010:28694421,12568062:158120 -k1,2010:29384039,12568062:158121 -k1,2010:29898019,12568062:158120 -k1,2011:32583029,12568062:0 -k1,2011:32583029,12568062:0 -) -v1,2013:6630773,13758528:0,393216,0 -(1,2020:6630773,14773881:25952256,1408569,196608 -g1,2020:6630773,14773881 -g1,2020:6630773,14773881 -g1,2020:6434165,14773881 -(1,2020:6434165,14773881:0,1408569,196608 -r1,2020:32779637,14773881:26345472,1605177,196608 -k1,2020:6434165,14773881:-26345472 -) -(1,2020:6434165,14773881:26345472,1408569,196608 -[1,2020:6630773,14773881:25952256,1211961,0 -(1,2015:6630773,13966146:25952256,404226,101187 -(1,2014:6630773,13966146:0,0,0 -g1,2014:6630773,13966146 -g1,2014:6630773,13966146 -g1,2014:6303093,13966146 -(1,2014:6303093,13966146:0,0,0 -) -g1,2014:6630773,13966146 -) -k1,2015:6630773,13966146:0 -g1,2015:10740668,13966146 -g1,2015:12321397,13966146 -g1,2015:14218272,13966146 -h1,2015:16431292,13966146:0,0,0 -k1,2015:32583029,13966146:16151737 -g1,2015:32583029,13966146 -) -(1,2019:6630773,14697860:25952256,404226,76021 -(1,2017:6630773,14697860:0,0,0 -g1,2017:6630773,14697860 -g1,2017:6630773,14697860 -g1,2017:6303093,14697860 -(1,2017:6303093,14697860:0,0,0 -) -g1,2017:6630773,14697860 -) -g1,2019:7579210,14697860 -g1,2019:8843793,14697860 -g1,2019:10108376,14697860 -g1,2019:11372959,14697860 -g1,2019:12637542,14697860 -h1,2019:13585979,14697860:0,0,0 -k1,2019:32583029,14697860:18997050 -g1,2019:32583029,14697860 -) -] -) -g1,2020:32583029,14773881 -g1,2020:6630773,14773881 -g1,2020:6630773,14773881 -g1,2020:32583029,14773881 -g1,2020:32583029,14773881 -) -h1,2020:6630773,14970489:0,0,0 -(1,2024:6630773,16336265:25952256,513147,134348 -h1,2023:6630773,16336265:983040,0,0 -g1,2023:8290799,16336265 -g1,2023:9358380,16336265 -g1,2023:11032824,16336265 -g1,2023:12496898,16336265 -$1,2023:12496898,16336265 -$1,2023:13014632,16336265 -g1,2023:13213861,16336265 -g1,2023:14604535,16336265 -$1,2023:14604535,16336265 -$1,2023:15052801,16336265 -g1,2023:15425700,16336265 -g1,2023:17133568,16336265 -g1,2023:21120123,16336265 -g1,2023:21850849,16336265 -g1,2023:23744839,16336265 -g1,2023:24705596,16336265 -$1,2023:24705596,16336265 -g1,2023:25368978,16336265 -g1,2023:26082823,16336265 -$1,2023:26531089,16336265 -k1,2024:32583029,16336265:5878270 -g1,2024:32583029,16336265 -) -v1,2026:6630773,17526731:0,393216,0 -(1,2033:6630773,18542084:25952256,1408569,196608 -g1,2033:6630773,18542084 -g1,2033:6630773,18542084 -g1,2033:6434165,18542084 -(1,2033:6434165,18542084:0,1408569,196608 -r1,2033:32779637,18542084:26345472,1605177,196608 -k1,2033:6434165,18542084:-26345472 -) -(1,2033:6434165,18542084:26345472,1408569,196608 -[1,2033:6630773,18542084:25952256,1211961,0 -(1,2028:6630773,17734349:25952256,404226,101187 -(1,2027:6630773,17734349:0,0,0 -g1,2027:6630773,17734349 -g1,2027:6630773,17734349 -g1,2027:6303093,17734349 -(1,2027:6303093,17734349:0,0,0 -) -g1,2027:6630773,17734349 -) -k1,2028:6630773,17734349:0 -g1,2028:12005251,17734349 -g1,2028:13585980,17734349 -g1,2028:15482855,17734349 -h1,2028:17695875,17734349:0,0,0 -k1,2028:32583029,17734349:14887154 -g1,2028:32583029,17734349 -) -(1,2032:6630773,18466063:25952256,404226,76021 -(1,2030:6630773,18466063:0,0,0 -g1,2030:6630773,18466063 -g1,2030:6630773,18466063 -g1,2030:6303093,18466063 -(1,2030:6303093,18466063:0,0,0 -) -g1,2030:6630773,18466063 -) -g1,2032:7579210,18466063 -g1,2032:8843793,18466063 -h1,2032:9792230,18466063:0,0,0 -k1,2032:32583030,18466063:22790800 -g1,2032:32583030,18466063 -) -] -) -g1,2033:32583029,18542084 -g1,2033:6630773,18542084 -g1,2033:6630773,18542084 -g1,2033:32583029,18542084 -g1,2033:32583029,18542084 -) -h1,2033:6630773,18738692:0,0,0 -v1,2037:6630773,20628756:0,393216,0 -(1,2051:6630773,33199215:25952256,12963675,616038 -g1,2051:6630773,33199215 -(1,2051:6630773,33199215:25952256,12963675,616038 -(1,2051:6630773,33815253:25952256,13579713,0 -[1,2051:6630773,33815253:25952256,13579713,0 -(1,2051:6630773,33789039:25952256,13527285,0 -r1,2051:6656987,33789039:26214,13527285,0 -[1,2051:6656987,33789039:25899828,13527285,0 -(1,2051:6656987,33199215:25899828,12347637,0 -[1,2051:7246811,33199215:24720180,12347637,0 -(1,2038:7246811,21938952:24720180,1087374,126483 -k1,2037:8598733,21938952:142219 -k1,2037:10374766,21938952:142220 -k1,2037:11332253,21938952:142219 -k1,2037:12644946,21938952:142220 -k1,2037:14858103,21938952:142219 -k1,2037:15651751,21938952:142220 -k1,2037:16541736,21938952:142219 -k1,2037:17703041,21938952:142220 -k1,2037:21031620,21938952:142219 -k1,2037:23809043,21938952:142220 -k1,2037:24970347,21938952:142219 -k1,2037:27123212,21938952:142220 -k1,2037:30044158,21938952:142219 -k1,2037:30947906,21938952:142220 -k1,2037:31966991,21938952:0 -) -(1,2038:7246811,22780440:24720180,513147,134348 -k1,2037:9129601,22780440:228006 -k1,2037:12874268,22780440:228005 -k1,2037:13718312,22780440:228006 -k1,2037:14965403,22780440:228006 -k1,2037:16689596,22780440:228006 -k1,2037:18888269,22780440:228005 -k1,2037:21311731,22780440:228006 -k1,2037:23581183,22780440:228006 -k1,2037:26332325,22780440:228006 -k1,2037:28373056,22780440:228005 -k1,2037:30215869,22780440:228006 -k1,2037:31966991,22780440:0 -) -(1,2038:7246811,23621928:24720180,505283,126483 -k1,2037:8863987,23621928:158345 -k1,2037:13046898,23621928:158345 -k1,2037:15027799,23621928:158345 -k1,2037:16205230,23621928:158346 -k1,2037:18043918,23621928:158345 -k1,2037:19653885,23621928:158345 -k1,2037:20968940,23621928:158345 -k1,2037:22259747,23621928:158345 -k1,2037:24602407,23621928:158345 -k1,2037:26251042,23621928:158346 -k1,2037:27843315,23621928:158345 -k1,2037:29119704,23621928:158345 -k1,2037:30297134,23621928:158345 -k1,2037:31966991,23621928:0 -) -(1,2038:7246811,24463416:24720180,513147,126483 -k1,2037:12014496,24463416:182786 -k1,2037:12856574,24463416:182786 -k1,2037:15629998,24463416:182786 -k1,2037:17271615,24463416:182786 -k1,2037:21064124,24463416:182786 -k1,2037:22750961,24463416:182786 -k1,2037:25176389,24463416:182786 -k1,2037:26042060,24463416:182786 -k1,2037:27464787,24463416:182786 -k1,2037:29262380,24463416:182786 -k1,2037:31196288,24463416:182786 -k1,2037:31966991,24463416:0 -) -(1,2038:7246811,25304904:24720180,513147,126483 -g1,2037:11178315,25304904 -g1,2037:12036836,25304904 -g1,2037:13784681,25304904 -g1,2037:15435532,25304904 -g1,2037:19325093,25304904 -g1,2037:22598616,25304904 -k1,2038:31966991,25304904:8663208 -g1,2038:31966991,25304904 -) -v1,2040:7246811,26495370:0,393216,0 -(1,2046:7246811,28136531:24720180,2034377,196608 -g1,2046:7246811,28136531 -g1,2046:7246811,28136531 -g1,2046:7050203,28136531 -(1,2046:7050203,28136531:0,2034377,196608 -r1,2051:32163599,28136531:25113396,2230985,196608 -k1,2046:7050203,28136531:-25113396 -) -(1,2046:7050203,28136531:25113396,2034377,196608 -[1,2046:7246811,28136531:24720180,1837769,0 -(1,2042:7246811,26702988:24720180,404226,101187 -(1,2041:7246811,26702988:0,0,0 -g1,2041:7246811,26702988 -g1,2041:7246811,26702988 -g1,2041:6919131,26702988 -(1,2041:6919131,26702988:0,0,0 -) -g1,2041:7246811,26702988 -) -k1,2042:7246811,26702988:0 -g1,2042:11356706,26702988 -g1,2042:12937435,26702988 -g1,2042:14834310,26702988 -h1,2042:17047330,26702988:0,0,0 -k1,2042:31966991,26702988:14919661 -g1,2042:31966991,26702988 -) -(1,2043:7246811,27369166:24720180,404226,101187 -h1,2043:7246811,27369166:0,0,0 -g1,2043:10092124,27369166 -g1,2043:11672853,27369166 -g1,2043:13569728,27369166 -h1,2043:15782748,27369166:0,0,0 -k1,2043:31966991,27369166:16184243 -g1,2043:31966991,27369166 -) -(1,2044:7246811,28035344:24720180,404226,101187 -h1,2044:7246811,28035344:0,0,0 -g1,2044:9459832,28035344 -g1,2044:11040561,28035344 -g1,2044:12621290,28035344 -h1,2044:14834310,28035344:0,0,0 -k1,2044:31966990,28035344:17132680 -g1,2044:31966990,28035344 -) -] -) -g1,2046:31966991,28136531 -g1,2046:7246811,28136531 -g1,2046:7246811,28136531 -g1,2046:31966991,28136531 -g1,2046:31966991,28136531 -) -h1,2046:7246811,28333139:0,0,0 -(1,2050:7246811,29698915:24720180,513147,134348 -h1,2049:7246811,29698915:983040,0,0 -k1,2049:9030860,29698915:173174 -k1,2049:10223119,29698915:173174 -k1,2049:12723476,29698915:173174 -k1,2049:13555943,29698915:173175 -k1,2049:14993962,29698915:173174 -k1,2049:17856734,29698915:173174 -$1,2049:17856734,29698915 -k1,2049:18556528,29698915:182060 -k1,2049:19306785,29698915:182060 -$1,2049:19755051,29698915 -k1,2049:20101895,29698915:173174 -k1,2049:22193963,29698915:173174 -$1,2049:22193963,29698915 -$1,2049:22711697,29698915 -k1,2049:22884871,29698915:173174 -k1,2049:24249490,29698915:173174 -$1,2049:24249490,29698915 -$1,2049:24697756,29698915 -k1,2049:24870931,29698915:173175 -k1,2049:26035665,29698915:173174 -k1,2049:27647354,29698915:173174 -k1,2049:30682485,29698915:173174 -k1,2049:31966991,29698915:0 -) -(1,2050:7246811,30540403:24720180,505283,126483 -$1,2049:7764545,30540403 -k1,2049:7944746,30540403:180201 -k1,2049:8656444,30540403:180201 -k1,2049:9192505,30540403:180201 -k1,2049:11452819,30540403:180201 -k1,2049:12315905,30540403:180201 -k1,2049:14223635,30540403:180201 -k1,2049:15055264,30540403:180201 -$1,2049:15055264,30540403 -$1,2049:15503530,30540403 -k1,2049:15857401,30540403:180201 -k1,2049:17079623,30540403:180200 -k1,2049:17615684,30540403:180201 -k1,2049:19103328,30540403:180201 -k1,2049:21537312,30540403:180201 -k1,2049:22736598,30540403:180201 -k1,2049:25606397,30540403:180201 -k1,2049:26318095,30540403:180201 -$1,2049:26318095,30540403 -k1,2049:27017889,30540403:182060 -k1,2049:27768146,30540403:182060 -$1,2049:28216412,30540403 -k1,2049:28570283,30540403:180201 -k1,2049:29947171,30540403:180201 -k1,2050:31966991,30540403:0 -) -(1,2050:7246811,31381891:24720180,513147,126483 -k1,2049:8722737,31381891:205838 -k1,2049:10322525,31381891:205837 -k1,2049:11547448,31381891:205838 -k1,2049:14059497,31381891:205837 -k1,2049:17124015,31381891:205838 -k1,2049:18321413,31381891:205838 -$1,2049:18321413,31381891 -$1,2049:18889610,31381891 -k1,2049:19095447,31381891:205837 -k1,2049:20492730,31381891:205838 -$1,2049:20492730,31381891 -$1,2049:21060927,31381891 -k1,2049:21440434,31381891:205837 -k1,2049:25091500,31381891:205838 -k1,2049:26994064,31381891:205837 -k1,2049:28562396,31381891:205838 -k1,2049:31966991,31381891:0 -) -(1,2050:7246811,32223379:24720180,513147,126483 -k1,2049:8127322,32223379:264473 -k1,2049:9754289,32223379:264473 -k1,2049:10433539,32223379:264407 -k1,2049:14388344,32223379:264473 -k1,2049:15844262,32223379:264473 -k1,2049:17300180,32223379:264473 -k1,2049:19203708,32223379:264473 -k1,2049:20277551,32223379:264473 -k1,2049:21806869,32223379:264473 -k1,2049:26088044,32223379:264473 -k1,2049:27114045,32223379:264473 -k1,2049:27793295,32223379:264407 -k1,2049:30573040,32223379:264473 -k1,2049:31966991,32223379:0 -) -(1,2050:7246811,33064867:24720180,513147,134348 -g1,2049:10208383,33064867 -g1,2049:13377048,33064867 -g1,2049:15735688,33064867 -g1,2049:16869460,33064867 -k1,2050:31966991,33064867:11970153 -g1,2050:31966991,33064867 -) -] -) -] -r1,2051:32583029,33789039:26214,13527285,0 -) -] -) -) -g1,2051:32583029,33199215 -) -h1,2051:6630773,33815253:0,0,0 -v1,2054:6630773,35181029:0,393216,0 -(1,2128:6630773,40899659:25952256,6111846,589824 -g1,2128:6630773,40899659 -(1,2128:6630773,40899659:25952256,6111846,589824 -(1,2128:6630773,41489483:25952256,6701670,0 -[1,2128:6630773,41489483:25952256,6701670,0 -(1,2128:6630773,41489483:25952256,6675456,0 -r1,2128:6656987,41489483:26214,6675456,0 -[1,2128:6656987,41489483:25899828,6675456,0 -(1,2128:6656987,40899659:25899828,5495808,0 -[1,2128:7246811,40899659:24720180,5495808,0 -(1,2055:7246811,36565736:24720180,1161885,196608 -(1,2054:7246811,36565736:0,1161885,196608 -r1,2128:8794447,36565736:1547636,1358493,196608 -k1,2054:7246811,36565736:-1547636 -) -(1,2054:7246811,36565736:1547636,1161885,196608 -) -k1,2054:9000677,36565736:206230 -k1,2054:10104749,36565736:206229 -k1,2054:11245522,36565736:206230 -k1,2054:13778935,36565736:206230 -k1,2054:16976883,36565736:206229 -k1,2054:19038437,36565736:206230 -k1,2054:20337151,36565736:206229 -k1,2054:23518060,36565736:206230 -k1,2054:26032468,36565736:206230 -k1,2054:27430142,36565736:206229 -k1,2054:30611051,36565736:206230 -k1,2055:31966991,36565736:0 -) -(1,2055:7246811,37407224:24720180,513147,134348 -k1,2054:9629599,37407224:264009 -k1,2054:11274452,37407224:264009 -k1,2054:12069958,37407224:264009 -k1,2054:13562768,37407224:264010 -k1,2054:14845862,37407224:264009 -k1,2054:16711571,37407224:264009 -k1,2054:19714330,37407224:264009 -k1,2054:21070824,37407224:264009 -k1,2054:22875584,37407224:264009 -k1,2054:24429343,37407224:264010 -k1,2054:28097947,37407224:264009 -k1,2054:29353516,37407224:264009 -k1,2054:31157621,37407224:264009 -k1,2054:31966991,37407224:0 -) -(1,2055:7246811,38248712:24720180,513147,134348 -k1,2054:9813577,38248712:258588 -k1,2054:10731456,38248712:258587 -k1,2054:12121851,38248712:258588 -k1,2054:14542472,38248712:258588 -k1,2054:16529900,38248712:258588 -k1,2054:19769064,38248712:258587 -(1,2054:19769064,38248712:0,452978,122846 -r1,2128:22237601,38248712:2468537,575824,122846 -k1,2054:19769064,38248712:-2468537 -) -(1,2054:19769064,38248712:2468537,452978,122846 -k1,2054:19769064,38248712:3277 -h1,2054:22234324,38248712:0,411205,112570 -) -k1,2054:22669859,38248712:258588 -k1,2054:24119892,38248712:258588 -k1,2054:27587123,38248712:258588 -k1,2054:29856355,38248712:258587 -k1,2054:31219225,38248712:258588 -k1,2054:31966991,38248712:0 -) -(1,2055:7246811,39090200:24720180,513147,126483 -k1,2054:8787008,39090200:218336 -k1,2054:9664636,39090200:218336 -k1,2054:13573303,39090200:218335 -k1,2054:14419474,39090200:218336 -k1,2054:15656895,39090200:218336 -k1,2054:18116562,39090200:218336 -k1,2054:19526342,39090200:218335 -k1,2054:21326717,39090200:218336 -k1,2054:25061715,39090200:218336 -k1,2054:25896089,39090200:218336 -k1,2054:27133509,39090200:218335 -k1,2054:28735965,39090200:218336 -k1,2054:31098639,39090200:218336 -k1,2054:31966991,39090200:0 -) -(1,2055:7246811,39931688:24720180,513147,126483 -k1,2054:9047562,39931688:270485 -k1,2054:9969475,39931688:270485 -k1,2054:11332444,39931688:270484 -k1,2054:14829922,39931688:270485 -k1,2054:18954579,39931688:270485 -k1,2054:19876492,39931688:270485 -k1,2054:21600566,39931688:270485 -k1,2054:22890136,39931688:270485 -k1,2054:25426200,39931688:270484 -k1,2054:27436011,39931688:270485 -k1,2054:28365788,39931688:270485 -k1,2054:31966991,39931688:0 -) -(1,2055:7246811,40773176:24720180,505283,126483 -g1,2054:10081243,40773176 -g1,2054:13556617,40773176 -g1,2054:14947291,40773176 -g1,2054:16081063,40773176 -k1,2055:31966991,40773176:12635342 -g1,2055:31966991,40773176 -) -] -) -] -r1,2128:32583029,41489483:26214,6675456,0 -) -] -) -) -g1,2128:32583029,40899659 -) -] -(1,2128:32583029,45706769:0,0,0 -g1,2128:32583029,45706769 -) -) -] -(1,2128:6630773,47279633:25952256,0,0 -h1,2128:6630773,47279633:25952256,0,0 -) -] -h1,2128:4262630,4025873:0,0,0 +(1,2013:6434165,9322702:26345472,3461821,196608 +[1,2013:6630773,9322702:25952256,3265213,0 +(1,2002:6630773,6461715:25952256,404226,101187 +(1,2001:6630773,6461715:0,0,0 +g1,2001:6630773,6461715 +g1,2001:6630773,6461715 +g1,2001:6303093,6461715 +(1,2001:6303093,6461715:0,0,0 +) +g1,2001:6630773,6461715 +) +k1,2002:6630773,6461715:0 +h1,2002:11056812,6461715:0,0,0 +k1,2002:32583028,6461715:21526216 +g1,2002:32583028,6461715 +) +(1,2006:6630773,7193429:25952256,404226,76021 +(1,2004:6630773,7193429:0,0,0 +g1,2004:6630773,7193429 +g1,2004:6630773,7193429 +g1,2004:6303093,7193429 +(1,2004:6303093,7193429:0,0,0 +) +g1,2004:6630773,7193429 +) +g1,2006:7579210,7193429 +g1,2006:8843793,7193429 +g1,2006:10108376,7193429 +g1,2006:11372959,7193429 +h1,2006:12321396,7193429:0,0,0 +k1,2006:32583028,7193429:20261632 +g1,2006:32583028,7193429 +) +(1,2008:6630773,8514967:25952256,404226,101187 +(1,2007:6630773,8514967:0,0,0 +g1,2007:6630773,8514967 +g1,2007:6630773,8514967 +g1,2007:6303093,8514967 +(1,2007:6303093,8514967:0,0,0 +) +g1,2007:6630773,8514967 +) +k1,2008:6630773,8514967:0 +g1,2008:8843794,8514967 +g1,2008:10424523,8514967 +g1,2008:12005252,8514967 +g1,2008:13585981,8514967 +k1,2008:13585981,8514967:0 +h1,2008:18012020,8514967:0,0,0 +k1,2008:32583029,8514967:14571009 +g1,2008:32583029,8514967 +) +(1,2012:6630773,9246681:25952256,404226,76021 +(1,2010:6630773,9246681:0,0,0 +g1,2010:6630773,9246681 +g1,2010:6630773,9246681 +g1,2010:6303093,9246681 +(1,2010:6303093,9246681:0,0,0 +) +g1,2010:6630773,9246681 +) +g1,2012:7579210,9246681 +g1,2012:8843793,9246681 +g1,2012:9159939,9246681 +g1,2012:10740668,9246681 +g1,2012:11056814,9246681 +g1,2012:12637543,9246681 +h1,2012:14218271,9246681:0,0,0 +k1,2012:32583029,9246681:18364758 +g1,2012:32583029,9246681 +) +] +) +g1,2013:32583029,9322702 +g1,2013:6630773,9322702 +g1,2013:6630773,9322702 +g1,2013:32583029,9322702 +g1,2013:32583029,9322702 +) +h1,2013:6630773,9519310:0,0,0 +(1,2017:6630773,10885086:25952256,513147,134348 +h1,2016:6630773,10885086:983040,0,0 +k1,2016:8490292,10885086:248644 +k1,2016:9758020,10885086:248643 +k1,2016:12696262,10885086:248644 +k1,2016:14458131,10885086:248643 +k1,2016:15322813,10885086:248644 +k1,2016:17898640,10885086:248644 +k1,2016:18806575,10885086:248643 +k1,2016:20493734,10885086:248644 +k1,2016:21761462,10885086:248643 +k1,2016:22944649,10885086:248644 +k1,2016:25033544,10885086:248644 +k1,2016:28028801,10885086:248643 +k1,2016:28808942,10885086:248644 +$1,2016:28808942,10885086 +$1,2016:29377139,10885086 +k1,2016:29625782,10885086:248643 +k1,2016:31563944,10885086:248644 +k1,2016:32583029,10885086:0 +) +(1,2017:6630773,11726574:25952256,513147,134348 +k1,2016:10573497,11726574:155398 +k1,2016:13475508,11726574:155397 +k1,2016:14162403,11726574:155398 +$1,2016:14162403,11726574 +$1,2016:14730600,11726574 +k1,2016:15059668,11726574:155398 +k1,2016:15692822,11726574:155397 +k1,2016:16716572,11726574:155398 +k1,2016:18347185,11726574:155398 +k1,2016:19767427,11726574:155397 +$1,2016:19767427,11726574 +$1,2016:20285161,11726574 +k1,2016:20440559,11726574:155398 +k1,2016:21787402,11726574:155398 +$1,2016:21787402,11726574 +$1,2016:22235668,11726574 +k1,2016:22564735,11726574:155397 +k1,2016:24228772,11726574:155398 +k1,2016:26224421,11726574:155398 +k1,2016:26911315,11726574:155397 +k1,2016:28761474,11726574:155398 +k1,2016:29678399,11726574:155397 +$1,2016:29678399,11726574 +k1,2016:30245651,11726574:49518 +k1,2016:30863365,11726574:49517 +$1,2016:31311631,11726574 +k1,2016:32583029,11726574:0 +) +(1,2017:6630773,12568062:25952256,505283,126483 +k1,2016:7807978,12568062:158120 +k1,2016:9350218,12568062:158120 +k1,2016:11163123,12568062:158121 +k1,2016:14486632,12568062:158120 +(1,2016:14486632,12568062:0,452978,115847 +r1,2016:20120575,12568062:5633943,568825,115847 +k1,2016:14486632,12568062:-5633943 +) +(1,2016:14486632,12568062:5633943,452978,115847 +g1,2016:16951892,12568062 +g1,2016:18710451,12568062 +h1,2016:20117298,12568062:0,411205,112570 +) +k1,2016:20278695,12568062:158120 +k1,2016:20968312,12568062:158120 +k1,2016:21482293,12568062:158121 +k1,2016:24571838,12568062:158120 +k1,2016:26419476,12568062:158120 +(1,2016:26419476,12568062:0,414482,115847 +r1,2016:28536301,12568062:2116825,530329,115847 +k1,2016:26419476,12568062:-2116825 +) +(1,2016:26419476,12568062:2116825,414482,115847 +k1,2016:26419476,12568062:3277 +h1,2016:28533024,12568062:0,411205,112570 +) +k1,2016:28694421,12568062:158120 +k1,2016:29384039,12568062:158121 +k1,2016:29898019,12568062:158120 +k1,2017:32583029,12568062:0 +k1,2017:32583029,12568062:0 +) +v1,2019:6630773,13758528:0,393216,0 +(1,2026:6630773,14773881:25952256,1408569,196608 +g1,2026:6630773,14773881 +g1,2026:6630773,14773881 +g1,2026:6434165,14773881 +(1,2026:6434165,14773881:0,1408569,196608 +r1,2026:32779637,14773881:26345472,1605177,196608 +k1,2026:6434165,14773881:-26345472 +) +(1,2026:6434165,14773881:26345472,1408569,196608 +[1,2026:6630773,14773881:25952256,1211961,0 +(1,2021:6630773,13966146:25952256,404226,101187 +(1,2020:6630773,13966146:0,0,0 +g1,2020:6630773,13966146 +g1,2020:6630773,13966146 +g1,2020:6303093,13966146 +(1,2020:6303093,13966146:0,0,0 +) +g1,2020:6630773,13966146 +) +k1,2021:6630773,13966146:0 +g1,2021:10740668,13966146 +g1,2021:12321397,13966146 +g1,2021:14218272,13966146 +h1,2021:16431292,13966146:0,0,0 +k1,2021:32583029,13966146:16151737 +g1,2021:32583029,13966146 +) +(1,2025:6630773,14697860:25952256,404226,76021 +(1,2023:6630773,14697860:0,0,0 +g1,2023:6630773,14697860 +g1,2023:6630773,14697860 +g1,2023:6303093,14697860 +(1,2023:6303093,14697860:0,0,0 +) +g1,2023:6630773,14697860 +) +g1,2025:7579210,14697860 +g1,2025:8843793,14697860 +g1,2025:10108376,14697860 +g1,2025:11372959,14697860 +g1,2025:12637542,14697860 +h1,2025:13585979,14697860:0,0,0 +k1,2025:32583029,14697860:18997050 +g1,2025:32583029,14697860 +) +] +) +g1,2026:32583029,14773881 +g1,2026:6630773,14773881 +g1,2026:6630773,14773881 +g1,2026:32583029,14773881 +g1,2026:32583029,14773881 +) +h1,2026:6630773,14970489:0,0,0 +(1,2030:6630773,16336265:25952256,513147,134348 +h1,2029:6630773,16336265:983040,0,0 +g1,2029:8290799,16336265 +g1,2029:9358380,16336265 +g1,2029:11032824,16336265 +g1,2029:12496898,16336265 +$1,2029:12496898,16336265 +$1,2029:13014632,16336265 +g1,2029:13213861,16336265 +g1,2029:14604535,16336265 +$1,2029:14604535,16336265 +$1,2029:15052801,16336265 +g1,2029:15425700,16336265 +g1,2029:17133568,16336265 +g1,2029:21120123,16336265 +g1,2029:21850849,16336265 +g1,2029:23744839,16336265 +g1,2029:24705596,16336265 +$1,2029:24705596,16336265 +g1,2029:25368978,16336265 +g1,2029:26082823,16336265 +$1,2029:26531089,16336265 +k1,2030:32583029,16336265:5878270 +g1,2030:32583029,16336265 +) +v1,2032:6630773,17526731:0,393216,0 +(1,2039:6630773,18542084:25952256,1408569,196608 +g1,2039:6630773,18542084 +g1,2039:6630773,18542084 +g1,2039:6434165,18542084 +(1,2039:6434165,18542084:0,1408569,196608 +r1,2039:32779637,18542084:26345472,1605177,196608 +k1,2039:6434165,18542084:-26345472 +) +(1,2039:6434165,18542084:26345472,1408569,196608 +[1,2039:6630773,18542084:25952256,1211961,0 +(1,2034:6630773,17734349:25952256,404226,101187 +(1,2033:6630773,17734349:0,0,0 +g1,2033:6630773,17734349 +g1,2033:6630773,17734349 +g1,2033:6303093,17734349 +(1,2033:6303093,17734349:0,0,0 +) +g1,2033:6630773,17734349 +) +k1,2034:6630773,17734349:0 +g1,2034:12005251,17734349 +g1,2034:13585980,17734349 +g1,2034:15482855,17734349 +h1,2034:17695875,17734349:0,0,0 +k1,2034:32583029,17734349:14887154 +g1,2034:32583029,17734349 +) +(1,2038:6630773,18466063:25952256,404226,76021 +(1,2036:6630773,18466063:0,0,0 +g1,2036:6630773,18466063 +g1,2036:6630773,18466063 +g1,2036:6303093,18466063 +(1,2036:6303093,18466063:0,0,0 +) +g1,2036:6630773,18466063 +) +g1,2038:7579210,18466063 +g1,2038:8843793,18466063 +h1,2038:9792230,18466063:0,0,0 +k1,2038:32583030,18466063:22790800 +g1,2038:32583030,18466063 +) +] +) +g1,2039:32583029,18542084 +g1,2039:6630773,18542084 +g1,2039:6630773,18542084 +g1,2039:32583029,18542084 +g1,2039:32583029,18542084 +) +h1,2039:6630773,18738692:0,0,0 +v1,2043:6630773,20628756:0,393216,0 +(1,2057:6630773,33199215:25952256,12963675,616038 +g1,2057:6630773,33199215 +(1,2057:6630773,33199215:25952256,12963675,616038 +(1,2057:6630773,33815253:25952256,13579713,0 +[1,2057:6630773,33815253:25952256,13579713,0 +(1,2057:6630773,33789039:25952256,13527285,0 +r1,2057:6656987,33789039:26214,13527285,0 +[1,2057:6656987,33789039:25899828,13527285,0 +(1,2057:6656987,33199215:25899828,12347637,0 +[1,2057:7246811,33199215:24720180,12347637,0 +(1,2044:7246811,21938952:24720180,1087374,126483 +k1,2043:8598733,21938952:142219 +k1,2043:10374766,21938952:142220 +k1,2043:11332253,21938952:142219 +k1,2043:12644946,21938952:142220 +k1,2043:14858103,21938952:142219 +k1,2043:15651751,21938952:142220 +k1,2043:16541736,21938952:142219 +k1,2043:17703041,21938952:142220 +k1,2043:21031620,21938952:142219 +k1,2043:23809043,21938952:142220 +k1,2043:24970347,21938952:142219 +k1,2043:27123212,21938952:142220 +k1,2043:30044158,21938952:142219 +k1,2043:30947906,21938952:142220 +k1,2043:31966991,21938952:0 +) +(1,2044:7246811,22780440:24720180,513147,134348 +k1,2043:9129601,22780440:228006 +k1,2043:12874268,22780440:228005 +k1,2043:13718312,22780440:228006 +k1,2043:14965403,22780440:228006 +k1,2043:16689596,22780440:228006 +k1,2043:18888269,22780440:228005 +k1,2043:21311731,22780440:228006 +k1,2043:23581183,22780440:228006 +k1,2043:26332325,22780440:228006 +k1,2043:28373056,22780440:228005 +k1,2043:30215869,22780440:228006 +k1,2043:31966991,22780440:0 +) +(1,2044:7246811,23621928:24720180,505283,126483 +k1,2043:8863987,23621928:158345 +k1,2043:13046898,23621928:158345 +k1,2043:15027799,23621928:158345 +k1,2043:16205230,23621928:158346 +k1,2043:18043918,23621928:158345 +k1,2043:19653885,23621928:158345 +k1,2043:20968940,23621928:158345 +k1,2043:22259747,23621928:158345 +k1,2043:24602407,23621928:158345 +k1,2043:26251042,23621928:158346 +k1,2043:27843315,23621928:158345 +k1,2043:29119704,23621928:158345 +k1,2043:30297134,23621928:158345 +k1,2043:31966991,23621928:0 +) +(1,2044:7246811,24463416:24720180,513147,126483 +k1,2043:12014496,24463416:182786 +k1,2043:12856574,24463416:182786 +k1,2043:15629998,24463416:182786 +k1,2043:17271615,24463416:182786 +k1,2043:21064124,24463416:182786 +k1,2043:22750961,24463416:182786 +k1,2043:25176389,24463416:182786 +k1,2043:26042060,24463416:182786 +k1,2043:27464787,24463416:182786 +k1,2043:29262380,24463416:182786 +k1,2043:31196288,24463416:182786 +k1,2043:31966991,24463416:0 +) +(1,2044:7246811,25304904:24720180,513147,126483 +g1,2043:11178315,25304904 +g1,2043:12036836,25304904 +g1,2043:13784681,25304904 +g1,2043:15435532,25304904 +g1,2043:19325093,25304904 +g1,2043:22598616,25304904 +k1,2044:31966991,25304904:8663208 +g1,2044:31966991,25304904 +) +v1,2046:7246811,26495370:0,393216,0 +(1,2052:7246811,28136531:24720180,2034377,196608 +g1,2052:7246811,28136531 +g1,2052:7246811,28136531 +g1,2052:7050203,28136531 +(1,2052:7050203,28136531:0,2034377,196608 +r1,2057:32163599,28136531:25113396,2230985,196608 +k1,2052:7050203,28136531:-25113396 +) +(1,2052:7050203,28136531:25113396,2034377,196608 +[1,2052:7246811,28136531:24720180,1837769,0 +(1,2048:7246811,26702988:24720180,404226,101187 +(1,2047:7246811,26702988:0,0,0 +g1,2047:7246811,26702988 +g1,2047:7246811,26702988 +g1,2047:6919131,26702988 +(1,2047:6919131,26702988:0,0,0 +) +g1,2047:7246811,26702988 +) +k1,2048:7246811,26702988:0 +g1,2048:11356706,26702988 +g1,2048:12937435,26702988 +g1,2048:14834310,26702988 +h1,2048:17047330,26702988:0,0,0 +k1,2048:31966991,26702988:14919661 +g1,2048:31966991,26702988 +) +(1,2049:7246811,27369166:24720180,404226,101187 +h1,2049:7246811,27369166:0,0,0 +g1,2049:10092124,27369166 +g1,2049:11672853,27369166 +g1,2049:13569728,27369166 +h1,2049:15782748,27369166:0,0,0 +k1,2049:31966991,27369166:16184243 +g1,2049:31966991,27369166 +) +(1,2050:7246811,28035344:24720180,404226,101187 +h1,2050:7246811,28035344:0,0,0 +g1,2050:9459832,28035344 +g1,2050:11040561,28035344 +g1,2050:12621290,28035344 +h1,2050:14834310,28035344:0,0,0 +k1,2050:31966990,28035344:17132680 +g1,2050:31966990,28035344 +) +] +) +g1,2052:31966991,28136531 +g1,2052:7246811,28136531 +g1,2052:7246811,28136531 +g1,2052:31966991,28136531 +g1,2052:31966991,28136531 +) +h1,2052:7246811,28333139:0,0,0 +(1,2056:7246811,29698915:24720180,513147,134348 +h1,2055:7246811,29698915:983040,0,0 +k1,2055:9030860,29698915:173174 +k1,2055:10223119,29698915:173174 +k1,2055:12723476,29698915:173174 +k1,2055:13555943,29698915:173175 +k1,2055:14993962,29698915:173174 +k1,2055:17856734,29698915:173174 +$1,2055:17856734,29698915 +k1,2055:18556528,29698915:182060 +k1,2055:19306785,29698915:182060 +$1,2055:19755051,29698915 +k1,2055:20101895,29698915:173174 +k1,2055:22193963,29698915:173174 +$1,2055:22193963,29698915 +$1,2055:22711697,29698915 +k1,2055:22884871,29698915:173174 +k1,2055:24249490,29698915:173174 +$1,2055:24249490,29698915 +$1,2055:24697756,29698915 +k1,2055:24870931,29698915:173175 +k1,2055:26035665,29698915:173174 +k1,2055:27647354,29698915:173174 +k1,2055:30682485,29698915:173174 +k1,2055:31966991,29698915:0 +) +(1,2056:7246811,30540403:24720180,505283,126483 +$1,2055:7764545,30540403 +k1,2055:7944746,30540403:180201 +k1,2055:8656444,30540403:180201 +k1,2055:9192505,30540403:180201 +k1,2055:11452819,30540403:180201 +k1,2055:12315905,30540403:180201 +k1,2055:14223635,30540403:180201 +k1,2055:15055264,30540403:180201 +$1,2055:15055264,30540403 +$1,2055:15503530,30540403 +k1,2055:15857401,30540403:180201 +k1,2055:17079623,30540403:180200 +k1,2055:17615684,30540403:180201 +k1,2055:19103328,30540403:180201 +k1,2055:21537312,30540403:180201 +k1,2055:22736598,30540403:180201 +k1,2055:25606397,30540403:180201 +k1,2055:26318095,30540403:180201 +$1,2055:26318095,30540403 +k1,2055:27017889,30540403:182060 +k1,2055:27768146,30540403:182060 +$1,2055:28216412,30540403 +k1,2055:28570283,30540403:180201 +k1,2055:29947171,30540403:180201 +k1,2056:31966991,30540403:0 +) +(1,2056:7246811,31381891:24720180,513147,126483 +k1,2055:8722737,31381891:205838 +k1,2055:10322525,31381891:205837 +k1,2055:11547448,31381891:205838 +k1,2055:14059497,31381891:205837 +k1,2055:17124015,31381891:205838 +k1,2055:18321413,31381891:205838 +$1,2055:18321413,31381891 +$1,2055:18889610,31381891 +k1,2055:19095447,31381891:205837 +k1,2055:20492730,31381891:205838 +$1,2055:20492730,31381891 +$1,2055:21060927,31381891 +k1,2055:21440434,31381891:205837 +k1,2055:25091500,31381891:205838 +k1,2055:26994064,31381891:205837 +k1,2055:28562396,31381891:205838 +k1,2055:31966991,31381891:0 +) +(1,2056:7246811,32223379:24720180,513147,126483 +k1,2055:8127322,32223379:264473 +k1,2055:9754289,32223379:264473 +k1,2055:10433539,32223379:264407 +k1,2055:14388344,32223379:264473 +k1,2055:15844262,32223379:264473 +k1,2055:17300180,32223379:264473 +k1,2055:19203708,32223379:264473 +k1,2055:20277551,32223379:264473 +k1,2055:21806869,32223379:264473 +k1,2055:26088044,32223379:264473 +k1,2055:27114045,32223379:264473 +k1,2055:27793295,32223379:264407 +k1,2055:30573040,32223379:264473 +k1,2055:31966991,32223379:0 +) +(1,2056:7246811,33064867:24720180,513147,134348 +g1,2055:10208383,33064867 +g1,2055:13377048,33064867 +g1,2055:15735688,33064867 +g1,2055:16869460,33064867 +k1,2056:31966991,33064867:11970153 +g1,2056:31966991,33064867 +) +] +) +] +r1,2057:32583029,33789039:26214,13527285,0 +) +] +) +) +g1,2057:32583029,33199215 +) +h1,2057:6630773,33815253:0,0,0 +v1,2060:6630773,35181029:0,393216,0 +(1,2134:6630773,40899659:25952256,6111846,589824 +g1,2134:6630773,40899659 +(1,2134:6630773,40899659:25952256,6111846,589824 +(1,2134:6630773,41489483:25952256,6701670,0 +[1,2134:6630773,41489483:25952256,6701670,0 +(1,2134:6630773,41489483:25952256,6675456,0 +r1,2134:6656987,41489483:26214,6675456,0 +[1,2134:6656987,41489483:25899828,6675456,0 +(1,2134:6656987,40899659:25899828,5495808,0 +[1,2134:7246811,40899659:24720180,5495808,0 +(1,2061:7246811,36565736:24720180,1161885,196608 +(1,2060:7246811,36565736:0,1161885,196608 +r1,2134:8794447,36565736:1547636,1358493,196608 +k1,2060:7246811,36565736:-1547636 +) +(1,2060:7246811,36565736:1547636,1161885,196608 +) +k1,2060:9000677,36565736:206230 +k1,2060:10104749,36565736:206229 +k1,2060:11245522,36565736:206230 +k1,2060:13778935,36565736:206230 +k1,2060:16976883,36565736:206229 +k1,2060:19038437,36565736:206230 +k1,2060:20337151,36565736:206229 +k1,2060:23518060,36565736:206230 +k1,2060:26032468,36565736:206230 +k1,2060:27430142,36565736:206229 +k1,2060:30611051,36565736:206230 +k1,2061:31966991,36565736:0 +) +(1,2061:7246811,37407224:24720180,513147,134348 +k1,2060:9629599,37407224:264009 +k1,2060:11274452,37407224:264009 +k1,2060:12069958,37407224:264009 +k1,2060:13562768,37407224:264010 +k1,2060:14845862,37407224:264009 +k1,2060:16711571,37407224:264009 +k1,2060:19714330,37407224:264009 +k1,2060:21070824,37407224:264009 +k1,2060:22875584,37407224:264009 +k1,2060:24429343,37407224:264010 +k1,2060:28097947,37407224:264009 +k1,2060:29353516,37407224:264009 +k1,2060:31157621,37407224:264009 +k1,2060:31966991,37407224:0 +) +(1,2061:7246811,38248712:24720180,513147,134348 +k1,2060:9813577,38248712:258588 +k1,2060:10731456,38248712:258587 +k1,2060:12121851,38248712:258588 +k1,2060:14542472,38248712:258588 +k1,2060:16529900,38248712:258588 +k1,2060:19769064,38248712:258587 +(1,2060:19769064,38248712:0,452978,122846 +r1,2134:22237601,38248712:2468537,575824,122846 +k1,2060:19769064,38248712:-2468537 +) +(1,2060:19769064,38248712:2468537,452978,122846 +k1,2060:19769064,38248712:3277 +h1,2060:22234324,38248712:0,411205,112570 +) +k1,2060:22669859,38248712:258588 +k1,2060:24119892,38248712:258588 +k1,2060:27587123,38248712:258588 +k1,2060:29856355,38248712:258587 +k1,2060:31219225,38248712:258588 +k1,2060:31966991,38248712:0 +) +(1,2061:7246811,39090200:24720180,513147,126483 +k1,2060:8787008,39090200:218336 +k1,2060:9664636,39090200:218336 +k1,2060:13573303,39090200:218335 +k1,2060:14419474,39090200:218336 +k1,2060:15656895,39090200:218336 +k1,2060:18116562,39090200:218336 +k1,2060:19526342,39090200:218335 +k1,2060:21326717,39090200:218336 +k1,2060:25061715,39090200:218336 +k1,2060:25896089,39090200:218336 +k1,2060:27133509,39090200:218335 +k1,2060:28735965,39090200:218336 +k1,2060:31098639,39090200:218336 +k1,2060:31966991,39090200:0 +) +(1,2061:7246811,39931688:24720180,513147,126483 +k1,2060:9047562,39931688:270485 +k1,2060:9969475,39931688:270485 +k1,2060:11332444,39931688:270484 +k1,2060:14829922,39931688:270485 +k1,2060:18954579,39931688:270485 +k1,2060:19876492,39931688:270485 +k1,2060:21600566,39931688:270485 +k1,2060:22890136,39931688:270485 +k1,2060:25426200,39931688:270484 +k1,2060:27436011,39931688:270485 +k1,2060:28365788,39931688:270485 +k1,2060:31966991,39931688:0 +) +(1,2061:7246811,40773176:24720180,505283,126483 +g1,2060:10081243,40773176 +g1,2060:13556617,40773176 +g1,2060:14947291,40773176 +g1,2060:16081063,40773176 +k1,2061:31966991,40773176:12635342 +g1,2061:31966991,40773176 +) +] +) +] +r1,2134:32583029,41489483:26214,6675456,0 +) +] +) +) +g1,2134:32583029,40899659 +) +] +(1,2134:32583029,45706769:0,0,0 +g1,2134:32583029,45706769 +) +) +] +(1,2134:6630773,47279633:25952256,0,0 +h1,2134:6630773,47279633:25952256,0,0 +) +] +h1,2134:4262630,4025873:0,0,0 ] !22241 }49 -Input:307:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:308:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:309:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:310:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!351 +Input:303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!375 {50 -[1,2158:4262630,47279633:28320399,43253760,0 -(1,2158:4262630,4025873:0,0,0 -[1,2158:-473657,4025873:25952256,0,0 -(1,2158:-473657,-710414:25952256,0,0 -h1,2158:-473657,-710414:0,0,0 -(1,2158:-473657,-710414:0,0,0 -(1,2158:-473657,-710414:0,0,0 -g1,2158:-473657,-710414 -(1,2158:-473657,-710414:65781,0,65781 -g1,2158:-407876,-710414 -[1,2158:-407876,-644633:0,0,0 +[1,2164:4262630,47279633:28320399,43253760,0 +(1,2164:4262630,4025873:0,0,0 +[1,2164:-473657,4025873:25952256,0,0 +(1,2164:-473657,-710414:25952256,0,0 +h1,2164:-473657,-710414:0,0,0 +(1,2164:-473657,-710414:0,0,0 +(1,2164:-473657,-710414:0,0,0 +g1,2164:-473657,-710414 +(1,2164:-473657,-710414:65781,0,65781 +g1,2164:-407876,-710414 +[1,2164:-407876,-644633:0,0,0 ] ) -k1,2158:-473657,-710414:-65781 +k1,2164:-473657,-710414:-65781 ) ) -k1,2158:25478599,-710414:25952256 -g1,2158:25478599,-710414 +k1,2164:25478599,-710414:25952256 +g1,2164:25478599,-710414 ) ] ) -[1,2158:6630773,47279633:25952256,43253760,0 -[1,2158:6630773,4812305:25952256,786432,0 -(1,2158:6630773,4812305:25952256,505283,11795 -(1,2158:6630773,4812305:25952256,505283,11795 -g1,2158:3078558,4812305 -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,2439708:0,1703936,0 -k1,2158:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2158:2537886,2439708:1179648,16384,0 +[1,2164:6630773,47279633:25952256,43253760,0 +[1,2164:6630773,4812305:25952256,786432,0 +(1,2164:6630773,4812305:25952256,505283,11795 +(1,2164:6630773,4812305:25952256,505283,11795 +g1,2164:3078558,4812305 +[1,2164:3078558,4812305:0,0,0 +(1,2164:3078558,2439708:0,1703936,0 +k1,2164:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2164:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2158:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2164:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,2439708:0,1703936,0 -g1,2158:29030814,2439708 -g1,2158:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2158:36151628,1915420:16384,1179648,0 +[1,2164:3078558,4812305:0,0,0 +(1,2164:3078558,2439708:0,1703936,0 +g1,2164:29030814,2439708 +g1,2164:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2164:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2158:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2164:37855564,2439708:1179648,16384,0 ) ) -k1,2158:3078556,2439708:-34777008 +k1,2164:3078556,2439708:-34777008 ) ] -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,49800853:0,16384,2228224 -k1,2158:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2158:2537886,49800853:1179648,16384,0 +[1,2164:3078558,4812305:0,0,0 +(1,2164:3078558,49800853:0,16384,2228224 +k1,2164:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2164:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2158:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2164:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2158:3078558,4812305:0,0,0 -(1,2158:3078558,49800853:0,16384,2228224 -g1,2158:29030814,49800853 -g1,2158:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2158:36151628,51504789:16384,1179648,0 +[1,2164:3078558,4812305:0,0,0 +(1,2164:3078558,49800853:0,16384,2228224 +g1,2164:29030814,49800853 +g1,2164:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2164:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2158:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2164:37855564,49800853:1179648,16384,0 ) ) -k1,2158:3078556,49800853:-34777008 +k1,2164:3078556,49800853:-34777008 ) ] -g1,2158:6630773,4812305 -g1,2158:6630773,4812305 -g1,2158:10015707,4812305 -g1,2158:12209197,4812305 -k1,2158:31786111,4812305:19576914 +g1,2164:6630773,4812305 +g1,2164:6630773,4812305 +g1,2164:10015707,4812305 +g1,2164:12209197,4812305 +k1,2164:31786111,4812305:19576914 ) ) ] -[1,2158:6630773,45706769:25952256,40108032,0 -(1,2158:6630773,45706769:25952256,40108032,0 -(1,2158:6630773,45706769:0,0,0 -g1,2158:6630773,45706769 +[1,2164:6630773,45706769:25952256,40108032,0 +(1,2164:6630773,45706769:25952256,40108032,0 +(1,2164:6630773,45706769:0,0,0 +g1,2164:6630773,45706769 ) -[1,2158:6630773,45706769:25952256,40108032,0 -v1,2128:6630773,6254097:0,393216,0 -(1,2128:6630773,33178172:25952256,27317291,616038 -g1,2128:6630773,33178172 -(1,2128:6630773,33178172:25952256,27317291,616038 -(1,2128:6630773,33794210:25952256,27933329,0 -[1,2128:6630773,33794210:25952256,27933329,0 -(1,2128:6630773,33767996:25952256,27907115,0 -r1,2128:6656987,33767996:26214,27907115,0 -[1,2128:6656987,33767996:25899828,27907115,0 -(1,2128:6656987,33178172:25899828,26727467,0 -[1,2128:7246811,33178172:24720180,26727467,0 -v1,2057:7246811,6843921:0,393216,0 -(1,2076:7246811,11965778:24720180,5515073,196608 -g1,2076:7246811,11965778 -g1,2076:7246811,11965778 -g1,2076:7050203,11965778 -(1,2076:7050203,11965778:0,5515073,196608 -r1,2128:32163599,11965778:25113396,5711681,196608 -k1,2076:7050203,11965778:-25113396 -) -(1,2076:7050203,11965778:25113396,5515073,196608 -[1,2076:7246811,11965778:24720180,5318465,0 -(1,2059:7246811,7051539:24720180,404226,9436 -(1,2058:7246811,7051539:0,0,0 -g1,2058:7246811,7051539 -g1,2058:7246811,7051539 -g1,2058:6919131,7051539 -(1,2058:6919131,7051539:0,0,0 -) -g1,2058:7246811,7051539 -) -g1,2059:8195248,7051539 -g1,2059:9775977,7051539 -h1,2059:11356705,7051539:0,0,0 -k1,2059:31966991,7051539:20610286 -g1,2059:31966991,7051539 -) -(1,2063:7246811,7783253:24720180,404226,76021 -(1,2061:7246811,7783253:0,0,0 -g1,2061:7246811,7783253 -g1,2061:7246811,7783253 -g1,2061:6919131,7783253 -(1,2061:6919131,7783253:0,0,0 -) -g1,2061:7246811,7783253 -) -g1,2063:8195248,7783253 -g1,2063:9459831,7783253 -h1,2063:11040559,7783253:0,0,0 -k1,2063:31966991,7783253:20926432 -g1,2063:31966991,7783253 -) -(1,2065:7246811,9104791:24720180,404226,76021 -(1,2064:7246811,9104791:0,0,0 -g1,2064:7246811,9104791 -g1,2064:7246811,9104791 -g1,2064:6919131,9104791 -(1,2064:6919131,9104791:0,0,0 -) -g1,2064:7246811,9104791 -) -g1,2065:8195248,9104791 -g1,2065:9775977,9104791 -g1,2065:12621288,9104791 -g1,2065:13253580,9104791 -h1,2065:15782745,9104791:0,0,0 -k1,2065:31966991,9104791:16184246 -g1,2065:31966991,9104791 -) -(1,2069:7246811,9836505:24720180,404226,76021 -(1,2067:7246811,9836505:0,0,0 -g1,2067:7246811,9836505 -g1,2067:7246811,9836505 -g1,2067:6919131,9836505 -(1,2067:6919131,9836505:0,0,0 -) -g1,2067:7246811,9836505 -) -g1,2069:8195248,9836505 -g1,2069:9459831,9836505 -h1,2069:10724414,9836505:0,0,0 -k1,2069:31966990,9836505:21242576 -g1,2069:31966990,9836505 -) -(1,2071:7246811,11158043:24720180,404226,82312 -(1,2070:7246811,11158043:0,0,0 -g1,2070:7246811,11158043 -g1,2070:7246811,11158043 -g1,2070:6919131,11158043 -(1,2070:6919131,11158043:0,0,0 -) -g1,2070:7246811,11158043 -) -k1,2071:7246811,11158043:0 -g1,2071:9143686,11158043 -g1,2071:10724415,11158043 -g1,2071:12305144,11158043 -g1,2071:15150455,11158043 -g1,2071:15782747,11158043 -h1,2071:18311912,11158043:0,0,0 -k1,2071:31966991,11158043:13655079 -g1,2071:31966991,11158043 -) -(1,2075:7246811,11889757:24720180,404226,76021 -(1,2073:7246811,11889757:0,0,0 -g1,2073:7246811,11889757 -g1,2073:7246811,11889757 -g1,2073:6919131,11889757 -(1,2073:6919131,11889757:0,0,0 -) -g1,2073:7246811,11889757 -) -g1,2075:8195248,11889757 -g1,2075:9459831,11889757 -g1,2075:11356705,11889757 -g1,2075:11672851,11889757 -h1,2075:12937434,11889757:0,0,0 -k1,2075:31966990,11889757:19029556 -g1,2075:31966990,11889757 -) -] -) -g1,2076:31966991,11965778 -g1,2076:7246811,11965778 -g1,2076:7246811,11965778 -g1,2076:31966991,11965778 -g1,2076:31966991,11965778 -) -h1,2076:7246811,12162386:0,0,0 -(1,2080:7246811,13528162:24720180,513147,134348 -h1,2079:7246811,13528162:983040,0,0 -k1,2079:10396941,13528162:178728 -k1,2079:11747452,13528162:178727 -k1,2079:12917740,13528162:178728 -k1,2079:13867170,13528162:178727 -k1,2079:17255196,13528162:178728 -k1,2079:21031195,13528162:178728 -k1,2079:21869214,13528162:178727 -k1,2079:23067027,13528162:178728 -k1,2079:25572937,13528162:178727 -k1,2079:26410957,13528162:178728 -k1,2079:28028200,13528162:178728 -k1,2079:28822965,13528162:178727 -k1,2079:29416515,13528162:178707 -k1,2079:30975431,13528162:178728 -k1,2079:31966991,13528162:0 -) -(1,2080:7246811,14369650:24720180,513147,134348 -k1,2079:11270886,14369650:214467 -k1,2079:12171514,14369650:214466 -k1,2079:14694159,14369650:214467 -k1,2079:15567918,14369650:214467 -k1,2079:17202549,14369650:214466 -k1,2079:19603952,14369650:214467 -k1,2079:22227522,14369650:214467 -k1,2079:23633433,14369650:214466 -k1,2079:25171727,14369650:214467 -k1,2079:26045486,14369650:214467 -k1,2079:27680117,14369650:214466 -k1,2079:30081520,14369650:214467 -k1,2079:31966991,14369650:0 -) -(1,2080:7246811,15211138:24720180,513147,134348 -k1,2079:8500669,15211138:234773 -k1,2079:9150249,15211138:234737 -k1,2079:12227318,15211138:234773 -k1,2079:13913058,15211138:234773 -k1,2079:17178216,15211138:234773 -k1,2079:18517271,15211138:234773 -k1,2079:19499810,15211138:234773 -k1,2079:21247809,15211138:234773 -k1,2079:22134009,15211138:234772 -k1,2079:25227462,15211138:234773 -k1,2079:28731171,15211138:234773 -k1,2079:30251760,15211138:234773 -k1,2079:31102571,15211138:234773 -k1,2080:31966991,15211138:0 -) -(1,2080:7246811,16052626:24720180,505283,134348 -k1,2079:8497101,16052626:199748 -k1,2079:11569947,16052626:199748 -k1,2079:13644025,16052626:199748 -k1,2079:16151951,16052626:199748 -k1,2079:17166967,16052626:199748 -k1,2079:19503189,16052626:199748 -k1,2079:20354364,16052626:199747 -k1,2079:20909972,16052626:199748 -k1,2079:22664889,16052626:199748 -k1,2079:24358203,16052626:199748 -k1,2079:25244113,16052626:199748 -(1,2079:25244113,16052626:0,452978,115847 -r1,2128:27712650,16052626:2468537,568825,115847 -k1,2079:25244113,16052626:-2468537 -) -(1,2079:25244113,16052626:2468537,452978,115847 -k1,2079:25244113,16052626:3277 -h1,2079:27709373,16052626:0,411205,112570 -) -k1,2079:27912398,16052626:199748 -k1,2079:28795031,16052626:199748 -(1,2079:28795031,16052626:0,452978,115847 -r1,2128:31966991,16052626:3171960,568825,115847 -k1,2079:28795031,16052626:-3171960 -) -(1,2079:28795031,16052626:3171960,452978,115847 -k1,2079:28795031,16052626:3277 -h1,2079:31963714,16052626:0,411205,112570 -) -k1,2079:31966991,16052626:0 -) -(1,2080:7246811,16894114:24720180,513147,126483 -k1,2079:8604827,16894114:166571 -k1,2079:10393413,16894114:166570 -k1,2079:11307750,16894114:166571 -k1,2079:15009988,16894114:166571 -k1,2079:16570509,16894114:166570 -k1,2079:18439050,16894114:166571 -k1,2079:21578334,16894114:166571 -k1,2079:22360942,16894114:166570 -k1,2079:23298216,16894114:166571 -k1,2079:27078442,16894114:166571 -k1,2079:28005230,16894114:166570 -k1,2079:30611051,16894114:166571 -k1,2080:31966991,16894114:0 -) -(1,2080:7246811,17735602:24720180,513147,126483 -g1,2079:10340110,17735602 -g1,2079:11486990,17735602 -g1,2079:14168067,17735602 -g1,2079:17391127,17735602 -g1,2079:19596413,17735602 -k1,2080:31966991,17735602:9888730 -g1,2080:31966991,17735602 -) -v1,2082:7246811,18926068:0,393216,0 -(1,2089:7246811,19941421:24720180,1408569,196608 -g1,2089:7246811,19941421 -g1,2089:7246811,19941421 -g1,2089:7050203,19941421 -(1,2089:7050203,19941421:0,1408569,196608 -r1,2128:32163599,19941421:25113396,1605177,196608 -k1,2089:7050203,19941421:-25113396 -) -(1,2089:7050203,19941421:25113396,1408569,196608 -[1,2089:7246811,19941421:24720180,1211961,0 -(1,2084:7246811,19133686:24720180,404226,107478 -(1,2083:7246811,19133686:0,0,0 -g1,2083:7246811,19133686 -g1,2083:7246811,19133686 -g1,2083:6919131,19133686 -(1,2083:6919131,19133686:0,0,0 -) -g1,2083:7246811,19133686 -) -k1,2084:7246811,19133686:0 -k1,2084:7246811,19133686:0 -h1,2084:12621288,19133686:0,0,0 -k1,2084:31966992,19133686:19345704 -g1,2084:31966992,19133686 -) -(1,2088:7246811,19865400:24720180,404226,76021 -(1,2086:7246811,19865400:0,0,0 -g1,2086:7246811,19865400 -g1,2086:7246811,19865400 -g1,2086:6919131,19865400 -(1,2086:6919131,19865400:0,0,0 -) -g1,2086:7246811,19865400 -) -g1,2088:8195248,19865400 -g1,2088:9459831,19865400 -h1,2088:9775977,19865400:0,0,0 -k1,2088:31966991,19865400:22191014 -g1,2088:31966991,19865400 -) -] -) -g1,2089:31966991,19941421 -g1,2089:7246811,19941421 -g1,2089:7246811,19941421 -g1,2089:31966991,19941421 -g1,2089:31966991,19941421 -) -h1,2089:7246811,20138029:0,0,0 -v1,2093:7246811,21852783:0,393216,0 -(1,2106:7246811,24952845:24720180,3493278,196608 -g1,2106:7246811,24952845 -g1,2106:7246811,24952845 -g1,2106:7050203,24952845 -(1,2106:7050203,24952845:0,3493278,196608 -r1,2128:32163599,24952845:25113396,3689886,196608 -k1,2106:7050203,24952845:-25113396 -) -(1,2106:7050203,24952845:25113396,3493278,196608 -[1,2106:7246811,24952845:24720180,3296670,0 -(1,2095:7246811,22060401:24720180,404226,107478 -(1,2094:7246811,22060401:0,0,0 -g1,2094:7246811,22060401 -g1,2094:7246811,22060401 -g1,2094:6919131,22060401 -(1,2094:6919131,22060401:0,0,0 -) -g1,2094:7246811,22060401 -) -g1,2095:8195248,22060401 -g1,2095:9775977,22060401 -k1,2095:9775977,22060401:0 -h1,2095:12621288,22060401:0,0,0 -k1,2095:31966992,22060401:19345704 -g1,2095:31966992,22060401 -) -(1,2099:7246811,22792115:24720180,404226,76021 -(1,2097:7246811,22792115:0,0,0 -g1,2097:7246811,22792115 -g1,2097:7246811,22792115 -g1,2097:6919131,22792115 -(1,2097:6919131,22792115:0,0,0 -) -g1,2097:7246811,22792115 -) -g1,2099:8195248,22792115 -g1,2099:9459831,22792115 -h1,2099:11040559,22792115:0,0,0 -k1,2099:31966991,22792115:20926432 -g1,2099:31966991,22792115 -) -(1,2101:7246811,24113653:24720180,410518,107478 -(1,2100:7246811,24113653:0,0,0 -g1,2100:7246811,24113653 -g1,2100:7246811,24113653 -g1,2100:6919131,24113653 -(1,2100:6919131,24113653:0,0,0 -) -g1,2100:7246811,24113653 -) -k1,2101:7246811,24113653:0 -g1,2101:11988997,24113653 -g1,2101:16098891,24113653 -k1,2101:16098891,24113653:0 -h1,2101:19576494,24113653:0,0,0 -k1,2101:31966991,24113653:12390497 -g1,2101:31966991,24113653 -) -(1,2105:7246811,24845367:24720180,404226,107478 -(1,2103:7246811,24845367:0,0,0 -g1,2103:7246811,24845367 -g1,2103:7246811,24845367 -g1,2103:6919131,24845367 -(1,2103:6919131,24845367:0,0,0 -) -g1,2103:7246811,24845367 -) -g1,2105:8195248,24845367 -h1,2105:11356705,24845367:0,0,0 -k1,2105:31966991,24845367:20610286 -g1,2105:31966991,24845367 -) -] -) -g1,2106:31966991,24952845 -g1,2106:7246811,24952845 -g1,2106:7246811,24952845 -g1,2106:31966991,24952845 -g1,2106:31966991,24952845 -) -h1,2106:7246811,25149453:0,0,0 -(1,2110:7246811,26515229:24720180,513147,134348 -h1,2109:7246811,26515229:983040,0,0 -k1,2109:11394212,26515229:201478 -k1,2109:12530233,26515229:201478 -k1,2109:15808627,26515229:201479 -k1,2109:17001665,26515229:201478 -k1,2109:19584721,26515229:201478 -k1,2109:20733850,26515229:201478 -(1,2109:20733850,26515229:0,452978,115847 -r1,2128:23202387,26515229:2468537,568825,115847 -k1,2109:20733850,26515229:-2468537 -) -(1,2109:20733850,26515229:2468537,452978,115847 -k1,2109:20733850,26515229:3277 -h1,2109:23199110,26515229:0,411205,112570 -) -k1,2109:23403865,26515229:201478 -k1,2109:26087192,26515229:201479 -k1,2109:29212231,26515229:201478 -k1,2109:31350953,26515229:201478 -k1,2109:31966991,26515229:0 -) -(1,2110:7246811,27356717:24720180,513147,134348 -k1,2109:9569961,27356717:203716 -k1,2109:10877959,27356717:203716 -k1,2109:12924548,27356717:203717 -k1,2109:13744302,27356717:203716 -k1,2109:17616723,27356717:203716 -k1,2109:19993613,27356717:203716 -k1,2109:21429407,27356717:203717 -k1,2109:23911810,27356717:203716 -h1,2109:24882398,27356717:0,0,0 -k1,2109:25086114,27356717:203716 -k1,2109:26099200,27356717:203716 -k1,2109:27801070,27356717:203717 -h1,2109:28597988,27356717:0,0,0 -k1,2109:29182468,27356717:203716 -k1,2109:30582871,27356717:203716 -k1,2109:31966991,27356717:0 -) -(1,2110:7246811,28198205:24720180,505283,126483 -g1,2109:8618479,28198205 -g1,2109:11809427,28198205 -g1,2109:12997594,28198205 -g1,2109:16041086,28198205 -g1,2109:18250960,28198205 -g1,2109:19469274,28198205 -g1,2109:21911145,28198205 -k1,2110:31966991,28198205:7294159 -g1,2110:31966991,28198205 -) -v1,2112:7246811,29388671:0,393216,0 -(1,2125:7246811,32457276:24720180,3461821,196608 -g1,2125:7246811,32457276 -g1,2125:7246811,32457276 -g1,2125:7050203,32457276 -(1,2125:7050203,32457276:0,3461821,196608 -r1,2128:32163599,32457276:25113396,3658429,196608 -k1,2125:7050203,32457276:-25113396 -) -(1,2125:7050203,32457276:25113396,3461821,196608 -[1,2125:7246811,32457276:24720180,3265213,0 -(1,2114:7246811,29596289:24720180,404226,76021 -(1,2113:7246811,29596289:0,0,0 -g1,2113:7246811,29596289 -g1,2113:7246811,29596289 -g1,2113:6919131,29596289 -(1,2113:6919131,29596289:0,0,0 -) -g1,2113:7246811,29596289 -) -g1,2114:7879103,29596289 -g1,2114:9459832,29596289 -h1,2114:11672854,29596289:0,0,0 -k1,2114:31966990,29596289:20294136 -g1,2114:31966990,29596289 -) -(1,2118:7246811,30328003:24720180,404226,76021 -(1,2116:7246811,30328003:0,0,0 -g1,2116:7246811,30328003 -g1,2116:7246811,30328003 -g1,2116:6919131,30328003 -(1,2116:6919131,30328003:0,0,0 -) -g1,2116:7246811,30328003 -) -g1,2118:8195248,30328003 -g1,2118:9459831,30328003 -h1,2118:10724414,30328003:0,0,0 -k1,2118:31966990,30328003:21242576 -g1,2118:31966990,30328003 -) -(1,2120:7246811,31649541:24720180,404226,82312 -(1,2119:7246811,31649541:0,0,0 -g1,2119:7246811,31649541 -g1,2119:7246811,31649541 -g1,2119:6919131,31649541 -(1,2119:6919131,31649541:0,0,0 -) -g1,2119:7246811,31649541 -) -k1,2120:7246811,31649541:0 -g1,2120:8827541,31649541 -g1,2120:9775979,31649541 -g1,2120:11356708,31649541 -h1,2120:13885875,31649541:0,0,0 -k1,2120:31966991,31649541:18081116 -g1,2120:31966991,31649541 -) -(1,2124:7246811,32381255:24720180,404226,76021 -(1,2122:7246811,32381255:0,0,0 -g1,2122:7246811,32381255 -g1,2122:7246811,32381255 -g1,2122:6919131,32381255 -(1,2122:6919131,32381255:0,0,0 -) -g1,2122:7246811,32381255 -) -g1,2124:8195248,32381255 -g1,2124:9459831,32381255 -g1,2124:9775977,32381255 -g1,2124:11356706,32381255 -h1,2124:12937434,32381255:0,0,0 -k1,2124:31966990,32381255:19029556 -g1,2124:31966990,32381255 -) -] -) -g1,2125:31966991,32457276 -g1,2125:7246811,32457276 -g1,2125:7246811,32457276 -g1,2125:31966991,32457276 -g1,2125:31966991,32457276 -) -h1,2125:7246811,32653884:0,0,0 -] -) -] -r1,2128:32583029,33767996:26214,27907115,0 -) -] -) -) -g1,2128:32583029,33178172 -) -h1,2128:6630773,33794210:0,0,0 -(1,2132:6630773,37126066:25952256,32768,229376 -(1,2132:6630773,37126066:0,32768,229376 -(1,2132:6630773,37126066:5505024,32768,229376 -r1,2132:12135797,37126066:5505024,262144,229376 -) -k1,2132:6630773,37126066:-5505024 -) -(1,2132:6630773,37126066:25952256,32768,0 -r1,2132:32583029,37126066:25952256,32768,0 -) -) -(1,2132:6630773,38730394:25952256,606339,14155 -(1,2132:6630773,38730394:1974731,582746,0 -g1,2132:6630773,38730394 -g1,2132:8605504,38730394 -) -g1,2132:12698883,38730394 -k1,2132:32583029,38730394:17306222 -g1,2132:32583029,38730394 -) -(1,2135:6630773,39965098:25952256,505283,126483 -k1,2134:9993127,39965098:265778 -k1,2134:13100546,39965098:265778 -k1,2134:14470606,39965098:265778 -k1,2134:15484150,39965098:265778 -k1,2134:17263154,39965098:265778 -k1,2134:18180361,39965098:265779 -k1,2134:20063568,39965098:265778 -k1,2134:21461153,39965098:265778 -k1,2134:24875281,39965098:265778 -k1,2134:28237635,39965098:265778 -k1,2134:31591469,39965098:265778 -k1,2134:32583029,39965098:0 -) -(1,2135:6630773,40806586:25952256,513147,134348 -k1,2134:9148666,40806586:231342 -k1,2134:10141536,40806586:231342 -k1,2134:13388845,40806586:231342 -k1,2134:16925168,40806586:231342 -k1,2134:17772548,40806586:231342 -k1,2134:20325831,40806586:231342 -k1,2134:22389560,40806586:231342 -k1,2134:23612462,40806586:231342 -k1,2134:25498588,40806586:231342 -k1,2134:27446318,40806586:231342 -k1,2134:28336952,40806586:231342 -k1,2134:30716564,40806586:231342 -k1,2134:31563944,40806586:231342 -k1,2134:32583029,40806586:0 -) -(1,2135:6630773,41648074:25952256,513147,134348 -k1,2134:8605371,41648074:250346 -k1,2134:11830448,41648074:250398 -k1,2134:13189059,41648074:250397 -k1,2134:15622461,41648074:250398 -k1,2134:18021128,41648074:250397 -(1,2134:18021128,41648074:0,452978,115847 -r1,2134:18379394,41648074:358266,568825,115847 -k1,2134:18021128,41648074:-358266 -) -(1,2134:18021128,41648074:358266,452978,115847 -k1,2134:18021128,41648074:3277 -h1,2134:18376117,41648074:0,411205,112570 -) -k1,2134:18803462,41648074:250398 -k1,2134:20926878,41648074:250397 -k1,2134:23325546,41648074:250398 -(1,2134:23325546,41648074:0,452978,115847 -r1,2134:23683812,41648074:358266,568825,115847 -k1,2134:23325546,41648074:-358266 -) -(1,2134:23325546,41648074:358266,452978,115847 -k1,2134:23325546,41648074:3277 -h1,2134:23680535,41648074:0,411205,112570 -) -k1,2134:24107879,41648074:250397 -k1,2134:25549722,41648074:250398 -k1,2134:27282543,41648074:250397 -k1,2134:29047478,41648074:250398 -(1,2134:29047478,41648074:0,459977,115847 -r1,2134:29405744,41648074:358266,575824,115847 -k1,2134:29047478,41648074:-358266 -) -(1,2134:29047478,41648074:358266,459977,115847 -k1,2134:29047478,41648074:3277 -h1,2134:29402467,41648074:0,411205,112570 -) -k1,2134:29829811,41648074:250397 -k1,2134:31276896,41648074:250398 -k1,2134:32583029,41648074:0 -) -(1,2135:6630773,42489562:25952256,513147,126483 -g1,2134:8002441,42489562 -g1,2134:9918058,42489562 -g1,2134:10776579,42489562 -g1,2134:13124078,42489562 -g1,2134:14427589,42489562 -g1,2134:15374584,42489562 -g1,2134:17087039,42489562 -g1,2134:17972430,42489562 -g1,2134:21390132,42489562 -g1,2134:22256517,42489562 -(1,2134:22256517,42489562:0,452978,115847 -r1,2134:25428477,42489562:3171960,568825,115847 -k1,2134:22256517,42489562:-3171960 -) -(1,2134:22256517,42489562:3171960,452978,115847 -k1,2134:22256517,42489562:3277 -h1,2134:25425200,42489562:0,411205,112570 -) -g1,2134:25627706,42489562 -k1,2135:32583029,42489562:3693596 -g1,2135:32583029,42489562 -) -v1,2137:6630773,43680028:0,393216,0 -(1,2158:6630773,45285538:25952256,1998726,196608 -g1,2158:6630773,45285538 -g1,2158:6630773,45285538 -g1,2158:6434165,45285538 -(1,2158:6434165,45285538:0,1998726,196608 -r1,2158:32779637,45285538:26345472,2195334,196608 -k1,2158:6434165,45285538:-26345472 -) -(1,2158:6434165,45285538:26345472,1998726,196608 -[1,2158:6630773,45285538:25952256,1802118,0 -(1,2139:6630773,43887646:25952256,404226,4718 -(1,2138:6630773,43887646:0,0,0 -g1,2138:6630773,43887646 -g1,2138:6630773,43887646 -g1,2138:6303093,43887646 -(1,2138:6303093,43887646:0,0,0 -) -g1,2138:6630773,43887646 -) -g1,2139:7263065,43887646 -g1,2139:8211503,43887646 -h1,2139:9159940,43887646:0,0,0 -k1,2139:32583028,43887646:23423088 -g1,2139:32583028,43887646 -) -(1,2140:6630773,44553824:25952256,284164,4718 -h1,2140:6630773,44553824:0,0,0 -h1,2140:6946919,44553824:0,0,0 -k1,2140:32583029,44553824:25636110 -g1,2140:32583029,44553824 -) -(1,2144:6630773,45285538:25952256,404226,76021 -(1,2142:6630773,45285538:0,0,0 -g1,2142:6630773,45285538 -g1,2142:6630773,45285538 -g1,2142:6303093,45285538 -(1,2142:6303093,45285538:0,0,0 -) -g1,2142:6630773,45285538 -) -g1,2144:7579210,45285538 -g1,2144:8843793,45285538 -h1,2144:9792230,45285538:0,0,0 -k1,2144:32583030,45285538:22790800 -g1,2144:32583030,45285538 -) -] -) -g1,2158:32583029,45285538 -g1,2158:6630773,45285538 -g1,2158:6630773,45285538 -g1,2158:32583029,45285538 -g1,2158:32583029,45285538 -) -] -(1,2158:32583029,45706769:0,0,0 -g1,2158:32583029,45706769 -) -) -] -(1,2158:6630773,47279633:25952256,0,0 -h1,2158:6630773,47279633:25952256,0,0 -) -] -h1,2158:4262630,4025873:0,0,0 -] -!21881 +[1,2164:6630773,45706769:25952256,40108032,0 +v1,2134:6630773,6254097:0,393216,0 +(1,2134:6630773,33178172:25952256,27317291,616038 +g1,2134:6630773,33178172 +(1,2134:6630773,33178172:25952256,27317291,616038 +(1,2134:6630773,33794210:25952256,27933329,0 +[1,2134:6630773,33794210:25952256,27933329,0 +(1,2134:6630773,33767996:25952256,27907115,0 +r1,2134:6656987,33767996:26214,27907115,0 +[1,2134:6656987,33767996:25899828,27907115,0 +(1,2134:6656987,33178172:25899828,26727467,0 +[1,2134:7246811,33178172:24720180,26727467,0 +v1,2063:7246811,6843921:0,393216,0 +(1,2082:7246811,11965778:24720180,5515073,196608 +g1,2082:7246811,11965778 +g1,2082:7246811,11965778 +g1,2082:7050203,11965778 +(1,2082:7050203,11965778:0,5515073,196608 +r1,2134:32163599,11965778:25113396,5711681,196608 +k1,2082:7050203,11965778:-25113396 +) +(1,2082:7050203,11965778:25113396,5515073,196608 +[1,2082:7246811,11965778:24720180,5318465,0 +(1,2065:7246811,7051539:24720180,404226,9436 +(1,2064:7246811,7051539:0,0,0 +g1,2064:7246811,7051539 +g1,2064:7246811,7051539 +g1,2064:6919131,7051539 +(1,2064:6919131,7051539:0,0,0 +) +g1,2064:7246811,7051539 +) +g1,2065:8195248,7051539 +g1,2065:9775977,7051539 +h1,2065:11356705,7051539:0,0,0 +k1,2065:31966991,7051539:20610286 +g1,2065:31966991,7051539 +) +(1,2069:7246811,7783253:24720180,404226,76021 +(1,2067:7246811,7783253:0,0,0 +g1,2067:7246811,7783253 +g1,2067:7246811,7783253 +g1,2067:6919131,7783253 +(1,2067:6919131,7783253:0,0,0 +) +g1,2067:7246811,7783253 +) +g1,2069:8195248,7783253 +g1,2069:9459831,7783253 +h1,2069:11040559,7783253:0,0,0 +k1,2069:31966991,7783253:20926432 +g1,2069:31966991,7783253 +) +(1,2071:7246811,9104791:24720180,404226,76021 +(1,2070:7246811,9104791:0,0,0 +g1,2070:7246811,9104791 +g1,2070:7246811,9104791 +g1,2070:6919131,9104791 +(1,2070:6919131,9104791:0,0,0 +) +g1,2070:7246811,9104791 +) +g1,2071:8195248,9104791 +g1,2071:9775977,9104791 +g1,2071:12621288,9104791 +g1,2071:13253580,9104791 +h1,2071:15782745,9104791:0,0,0 +k1,2071:31966991,9104791:16184246 +g1,2071:31966991,9104791 +) +(1,2075:7246811,9836505:24720180,404226,76021 +(1,2073:7246811,9836505:0,0,0 +g1,2073:7246811,9836505 +g1,2073:7246811,9836505 +g1,2073:6919131,9836505 +(1,2073:6919131,9836505:0,0,0 +) +g1,2073:7246811,9836505 +) +g1,2075:8195248,9836505 +g1,2075:9459831,9836505 +h1,2075:10724414,9836505:0,0,0 +k1,2075:31966990,9836505:21242576 +g1,2075:31966990,9836505 +) +(1,2077:7246811,11158043:24720180,404226,82312 +(1,2076:7246811,11158043:0,0,0 +g1,2076:7246811,11158043 +g1,2076:7246811,11158043 +g1,2076:6919131,11158043 +(1,2076:6919131,11158043:0,0,0 +) +g1,2076:7246811,11158043 +) +k1,2077:7246811,11158043:0 +g1,2077:9143686,11158043 +g1,2077:10724415,11158043 +g1,2077:12305144,11158043 +g1,2077:15150455,11158043 +g1,2077:15782747,11158043 +h1,2077:18311912,11158043:0,0,0 +k1,2077:31966991,11158043:13655079 +g1,2077:31966991,11158043 +) +(1,2081:7246811,11889757:24720180,404226,76021 +(1,2079:7246811,11889757:0,0,0 +g1,2079:7246811,11889757 +g1,2079:7246811,11889757 +g1,2079:6919131,11889757 +(1,2079:6919131,11889757:0,0,0 +) +g1,2079:7246811,11889757 +) +g1,2081:8195248,11889757 +g1,2081:9459831,11889757 +g1,2081:11356705,11889757 +g1,2081:11672851,11889757 +h1,2081:12937434,11889757:0,0,0 +k1,2081:31966990,11889757:19029556 +g1,2081:31966990,11889757 +) +] +) +g1,2082:31966991,11965778 +g1,2082:7246811,11965778 +g1,2082:7246811,11965778 +g1,2082:31966991,11965778 +g1,2082:31966991,11965778 +) +h1,2082:7246811,12162386:0,0,0 +(1,2086:7246811,13528162:24720180,513147,134348 +h1,2085:7246811,13528162:983040,0,0 +k1,2085:10396941,13528162:178728 +k1,2085:11747452,13528162:178727 +k1,2085:12917740,13528162:178728 +k1,2085:13867170,13528162:178727 +k1,2085:17255196,13528162:178728 +k1,2085:21031195,13528162:178728 +k1,2085:21869214,13528162:178727 +k1,2085:23067027,13528162:178728 +k1,2085:25572937,13528162:178727 +k1,2085:26410957,13528162:178728 +k1,2085:28028200,13528162:178728 +k1,2085:28822965,13528162:178727 +k1,2085:29416515,13528162:178707 +k1,2085:30975431,13528162:178728 +k1,2085:31966991,13528162:0 +) +(1,2086:7246811,14369650:24720180,513147,134348 +k1,2085:11270886,14369650:214467 +k1,2085:12171514,14369650:214466 +k1,2085:14694159,14369650:214467 +k1,2085:15567918,14369650:214467 +k1,2085:17202549,14369650:214466 +k1,2085:19603952,14369650:214467 +k1,2085:22227522,14369650:214467 +k1,2085:23633433,14369650:214466 +k1,2085:25171727,14369650:214467 +k1,2085:26045486,14369650:214467 +k1,2085:27680117,14369650:214466 +k1,2085:30081520,14369650:214467 +k1,2085:31966991,14369650:0 +) +(1,2086:7246811,15211138:24720180,513147,134348 +k1,2085:8436241,15211138:170345 +k1,2085:9021401,15211138:170317 +k1,2085:12034043,15211138:170346 +k1,2085:13655355,15211138:170345 +k1,2085:16856085,15211138:170345 +k1,2085:18130713,15211138:170346 +k1,2085:19048824,15211138:170345 +k1,2085:20732396,15211138:170346 +k1,2085:21554169,15211138:170345 +k1,2085:24583195,15211138:170346 +k1,2085:28022476,15211138:170345 +k1,2085:29478638,15211138:170346 +k1,2085:30265021,15211138:170345 +k1,2085:31966991,15211138:0 +) +(1,2086:7246811,16052626:24720180,505283,134348 +k1,2085:10308818,16052626:188909 +k1,2085:12372057,16052626:188909 +k1,2085:14869145,16052626:188910 +k1,2085:15873322,16052626:188909 +k1,2085:18198705,16052626:188909 +k1,2085:19039042,16052626:188909 +k1,2085:19583812,16052626:188910 +k1,2085:21327890,16052626:188909 +k1,2085:23010365,16052626:188909 +k1,2085:23885436,16052626:188909 +(1,2085:23885436,16052626:0,452978,115847 +r1,2134:26353973,16052626:2468537,568825,115847 +k1,2085:23885436,16052626:-2468537 +) +(1,2085:23885436,16052626:2468537,452978,115847 +k1,2085:23885436,16052626:3277 +h1,2085:26350696,16052626:0,411205,112570 +) +k1,2085:26542883,16052626:188910 +k1,2085:27414677,16052626:188909 +(1,2085:27414677,16052626:0,452978,115847 +r1,2134:30586637,16052626:3171960,568825,115847 +k1,2085:27414677,16052626:-3171960 +) +(1,2085:27414677,16052626:3171960,452978,115847 +k1,2085:27414677,16052626:3277 +h1,2085:30583360,16052626:0,411205,112570 +) +k1,2085:30775546,16052626:188909 +k1,2085:31966991,16052626:0 +) +(1,2086:7246811,16894114:24720180,513147,126483 +k1,2085:9011219,16894114:142392 +k1,2085:9901377,16894114:142392 +k1,2085:13579436,16894114:142392 +k1,2085:15115779,16894114:142392 +k1,2085:16960141,16894114:142392 +k1,2085:20075245,16894114:142391 +k1,2085:20833675,16894114:142392 +k1,2085:21746770,16894114:142392 +k1,2085:25502817,16894114:142392 +k1,2085:26405427,16894114:142392 +k1,2085:28987069,16894114:142392 +k1,2086:31966991,16894114:0 +) +(1,2086:7246811,17735602:24720180,513147,126483 +g1,2085:8716128,17735602 +g1,2085:9863008,17735602 +g1,2085:12544085,17735602 +g1,2085:15767145,17735602 +g1,2085:17972431,17735602 +k1,2086:31966991,17735602:11512712 +g1,2086:31966991,17735602 +) +v1,2088:7246811,18926068:0,393216,0 +(1,2095:7246811,19941421:24720180,1408569,196608 +g1,2095:7246811,19941421 +g1,2095:7246811,19941421 +g1,2095:7050203,19941421 +(1,2095:7050203,19941421:0,1408569,196608 +r1,2134:32163599,19941421:25113396,1605177,196608 +k1,2095:7050203,19941421:-25113396 +) +(1,2095:7050203,19941421:25113396,1408569,196608 +[1,2095:7246811,19941421:24720180,1211961,0 +(1,2090:7246811,19133686:24720180,404226,107478 +(1,2089:7246811,19133686:0,0,0 +g1,2089:7246811,19133686 +g1,2089:7246811,19133686 +g1,2089:6919131,19133686 +(1,2089:6919131,19133686:0,0,0 +) +g1,2089:7246811,19133686 +) +k1,2090:7246811,19133686:0 +k1,2090:7246811,19133686:0 +h1,2090:12621288,19133686:0,0,0 +k1,2090:31966992,19133686:19345704 +g1,2090:31966992,19133686 +) +(1,2094:7246811,19865400:24720180,404226,76021 +(1,2092:7246811,19865400:0,0,0 +g1,2092:7246811,19865400 +g1,2092:7246811,19865400 +g1,2092:6919131,19865400 +(1,2092:6919131,19865400:0,0,0 +) +g1,2092:7246811,19865400 +) +g1,2094:8195248,19865400 +g1,2094:9459831,19865400 +h1,2094:9775977,19865400:0,0,0 +k1,2094:31966991,19865400:22191014 +g1,2094:31966991,19865400 +) +] +) +g1,2095:31966991,19941421 +g1,2095:7246811,19941421 +g1,2095:7246811,19941421 +g1,2095:31966991,19941421 +g1,2095:31966991,19941421 +) +h1,2095:7246811,20138029:0,0,0 +v1,2099:7246811,21852783:0,393216,0 +(1,2112:7246811,24952845:24720180,3493278,196608 +g1,2112:7246811,24952845 +g1,2112:7246811,24952845 +g1,2112:7050203,24952845 +(1,2112:7050203,24952845:0,3493278,196608 +r1,2134:32163599,24952845:25113396,3689886,196608 +k1,2112:7050203,24952845:-25113396 +) +(1,2112:7050203,24952845:25113396,3493278,196608 +[1,2112:7246811,24952845:24720180,3296670,0 +(1,2101:7246811,22060401:24720180,404226,107478 +(1,2100:7246811,22060401:0,0,0 +g1,2100:7246811,22060401 +g1,2100:7246811,22060401 +g1,2100:6919131,22060401 +(1,2100:6919131,22060401:0,0,0 +) +g1,2100:7246811,22060401 +) +g1,2101:8195248,22060401 +g1,2101:9775977,22060401 +k1,2101:9775977,22060401:0 +h1,2101:12621288,22060401:0,0,0 +k1,2101:31966992,22060401:19345704 +g1,2101:31966992,22060401 +) +(1,2105:7246811,22792115:24720180,404226,76021 +(1,2103:7246811,22792115:0,0,0 +g1,2103:7246811,22792115 +g1,2103:7246811,22792115 +g1,2103:6919131,22792115 +(1,2103:6919131,22792115:0,0,0 +) +g1,2103:7246811,22792115 +) +g1,2105:8195248,22792115 +g1,2105:9459831,22792115 +h1,2105:11040559,22792115:0,0,0 +k1,2105:31966991,22792115:20926432 +g1,2105:31966991,22792115 +) +(1,2107:7246811,24113653:24720180,410518,107478 +(1,2106:7246811,24113653:0,0,0 +g1,2106:7246811,24113653 +g1,2106:7246811,24113653 +g1,2106:6919131,24113653 +(1,2106:6919131,24113653:0,0,0 +) +g1,2106:7246811,24113653 +) +k1,2107:7246811,24113653:0 +g1,2107:11988997,24113653 +g1,2107:16098891,24113653 +k1,2107:16098891,24113653:0 +h1,2107:19576494,24113653:0,0,0 +k1,2107:31966991,24113653:12390497 +g1,2107:31966991,24113653 +) +(1,2111:7246811,24845367:24720180,404226,107478 +(1,2109:7246811,24845367:0,0,0 +g1,2109:7246811,24845367 +g1,2109:7246811,24845367 +g1,2109:6919131,24845367 +(1,2109:6919131,24845367:0,0,0 +) +g1,2109:7246811,24845367 +) +g1,2111:8195248,24845367 +h1,2111:11356705,24845367:0,0,0 +k1,2111:31966991,24845367:20610286 +g1,2111:31966991,24845367 +) +] +) +g1,2112:31966991,24952845 +g1,2112:7246811,24952845 +g1,2112:7246811,24952845 +g1,2112:31966991,24952845 +g1,2112:31966991,24952845 +) +h1,2112:7246811,25149453:0,0,0 +(1,2116:7246811,26515229:24720180,513147,134348 +h1,2115:7246811,26515229:983040,0,0 +k1,2115:11394212,26515229:201478 +k1,2115:12530233,26515229:201478 +k1,2115:15808627,26515229:201479 +k1,2115:17001665,26515229:201478 +k1,2115:19584721,26515229:201478 +k1,2115:20733850,26515229:201478 +(1,2115:20733850,26515229:0,452978,115847 +r1,2134:23202387,26515229:2468537,568825,115847 +k1,2115:20733850,26515229:-2468537 +) +(1,2115:20733850,26515229:2468537,452978,115847 +k1,2115:20733850,26515229:3277 +h1,2115:23199110,26515229:0,411205,112570 +) +k1,2115:23403865,26515229:201478 +k1,2115:26087192,26515229:201479 +k1,2115:29212231,26515229:201478 +k1,2115:31350953,26515229:201478 +k1,2115:31966991,26515229:0 +) +(1,2116:7246811,27356717:24720180,513147,134348 +k1,2115:9569961,27356717:203716 +k1,2115:10877959,27356717:203716 +k1,2115:12924548,27356717:203717 +k1,2115:13744302,27356717:203716 +k1,2115:17616723,27356717:203716 +k1,2115:19993613,27356717:203716 +k1,2115:21429407,27356717:203717 +k1,2115:23911810,27356717:203716 +h1,2115:24882398,27356717:0,0,0 +k1,2115:25086114,27356717:203716 +k1,2115:26099200,27356717:203716 +k1,2115:27801070,27356717:203717 +h1,2115:28597988,27356717:0,0,0 +k1,2115:29182468,27356717:203716 +k1,2115:30582871,27356717:203716 +k1,2115:31966991,27356717:0 +) +(1,2116:7246811,28198205:24720180,505283,126483 +g1,2115:8618479,28198205 +g1,2115:11809427,28198205 +g1,2115:12997594,28198205 +g1,2115:16041086,28198205 +g1,2115:18250960,28198205 +g1,2115:19469274,28198205 +g1,2115:21911145,28198205 +k1,2116:31966991,28198205:7294159 +g1,2116:31966991,28198205 +) +v1,2118:7246811,29388671:0,393216,0 +(1,2131:7246811,32457276:24720180,3461821,196608 +g1,2131:7246811,32457276 +g1,2131:7246811,32457276 +g1,2131:7050203,32457276 +(1,2131:7050203,32457276:0,3461821,196608 +r1,2134:32163599,32457276:25113396,3658429,196608 +k1,2131:7050203,32457276:-25113396 +) +(1,2131:7050203,32457276:25113396,3461821,196608 +[1,2131:7246811,32457276:24720180,3265213,0 +(1,2120:7246811,29596289:24720180,404226,76021 +(1,2119:7246811,29596289:0,0,0 +g1,2119:7246811,29596289 +g1,2119:7246811,29596289 +g1,2119:6919131,29596289 +(1,2119:6919131,29596289:0,0,0 +) +g1,2119:7246811,29596289 +) +g1,2120:7879103,29596289 +g1,2120:9459832,29596289 +h1,2120:11672854,29596289:0,0,0 +k1,2120:31966990,29596289:20294136 +g1,2120:31966990,29596289 +) +(1,2124:7246811,30328003:24720180,404226,76021 +(1,2122:7246811,30328003:0,0,0 +g1,2122:7246811,30328003 +g1,2122:7246811,30328003 +g1,2122:6919131,30328003 +(1,2122:6919131,30328003:0,0,0 +) +g1,2122:7246811,30328003 +) +g1,2124:8195248,30328003 +g1,2124:9459831,30328003 +h1,2124:10724414,30328003:0,0,0 +k1,2124:31966990,30328003:21242576 +g1,2124:31966990,30328003 +) +(1,2126:7246811,31649541:24720180,404226,82312 +(1,2125:7246811,31649541:0,0,0 +g1,2125:7246811,31649541 +g1,2125:7246811,31649541 +g1,2125:6919131,31649541 +(1,2125:6919131,31649541:0,0,0 +) +g1,2125:7246811,31649541 +) +k1,2126:7246811,31649541:0 +g1,2126:8827541,31649541 +g1,2126:9775979,31649541 +g1,2126:11356708,31649541 +h1,2126:13885875,31649541:0,0,0 +k1,2126:31966991,31649541:18081116 +g1,2126:31966991,31649541 +) +(1,2130:7246811,32381255:24720180,404226,76021 +(1,2128:7246811,32381255:0,0,0 +g1,2128:7246811,32381255 +g1,2128:7246811,32381255 +g1,2128:6919131,32381255 +(1,2128:6919131,32381255:0,0,0 +) +g1,2128:7246811,32381255 +) +g1,2130:8195248,32381255 +g1,2130:9459831,32381255 +g1,2130:9775977,32381255 +g1,2130:11356706,32381255 +h1,2130:12937434,32381255:0,0,0 +k1,2130:31966990,32381255:19029556 +g1,2130:31966990,32381255 +) +] +) +g1,2131:31966991,32457276 +g1,2131:7246811,32457276 +g1,2131:7246811,32457276 +g1,2131:31966991,32457276 +g1,2131:31966991,32457276 +) +h1,2131:7246811,32653884:0,0,0 +] +) +] +r1,2134:32583029,33767996:26214,27907115,0 +) +] +) +) +g1,2134:32583029,33178172 +) +h1,2134:6630773,33794210:0,0,0 +(1,2138:6630773,37126066:25952256,32768,229376 +(1,2138:6630773,37126066:0,32768,229376 +(1,2138:6630773,37126066:5505024,32768,229376 +r1,2138:12135797,37126066:5505024,262144,229376 +) +k1,2138:6630773,37126066:-5505024 +) +(1,2138:6630773,37126066:25952256,32768,0 +r1,2138:32583029,37126066:25952256,32768,0 +) +) +(1,2138:6630773,38730394:25952256,606339,14155 +(1,2138:6630773,38730394:1974731,582746,0 +g1,2138:6630773,38730394 +g1,2138:8605504,38730394 +) +g1,2138:12698883,38730394 +k1,2138:32583029,38730394:17306222 +g1,2138:32583029,38730394 +) +(1,2141:6630773,39965098:25952256,505283,126483 +k1,2140:9993127,39965098:265778 +k1,2140:13100546,39965098:265778 +k1,2140:14470606,39965098:265778 +k1,2140:15484150,39965098:265778 +k1,2140:17263154,39965098:265778 +k1,2140:18180361,39965098:265779 +k1,2140:20063568,39965098:265778 +k1,2140:21461153,39965098:265778 +k1,2140:24875281,39965098:265778 +k1,2140:28237635,39965098:265778 +k1,2140:31591469,39965098:265778 +k1,2140:32583029,39965098:0 +) +(1,2141:6630773,40806586:25952256,513147,134348 +k1,2140:9148666,40806586:231342 +k1,2140:10141536,40806586:231342 +k1,2140:13388845,40806586:231342 +k1,2140:16925168,40806586:231342 +k1,2140:17772548,40806586:231342 +k1,2140:20325831,40806586:231342 +k1,2140:22389560,40806586:231342 +k1,2140:23612462,40806586:231342 +k1,2140:25498588,40806586:231342 +k1,2140:27446318,40806586:231342 +k1,2140:28336952,40806586:231342 +k1,2140:30716564,40806586:231342 +k1,2140:31563944,40806586:231342 +k1,2140:32583029,40806586:0 +) +(1,2141:6630773,41648074:25952256,513147,134348 +k1,2140:8605371,41648074:250346 +k1,2140:11830448,41648074:250398 +k1,2140:13189059,41648074:250397 +k1,2140:15622461,41648074:250398 +k1,2140:18021128,41648074:250397 +(1,2140:18021128,41648074:0,452978,115847 +r1,2140:18379394,41648074:358266,568825,115847 +k1,2140:18021128,41648074:-358266 +) +(1,2140:18021128,41648074:358266,452978,115847 +k1,2140:18021128,41648074:3277 +h1,2140:18376117,41648074:0,411205,112570 +) +k1,2140:18803462,41648074:250398 +k1,2140:20926878,41648074:250397 +k1,2140:23325546,41648074:250398 +(1,2140:23325546,41648074:0,452978,115847 +r1,2140:23683812,41648074:358266,568825,115847 +k1,2140:23325546,41648074:-358266 +) +(1,2140:23325546,41648074:358266,452978,115847 +k1,2140:23325546,41648074:3277 +h1,2140:23680535,41648074:0,411205,112570 +) +k1,2140:24107879,41648074:250397 +k1,2140:25549722,41648074:250398 +k1,2140:27282543,41648074:250397 +k1,2140:29047478,41648074:250398 +(1,2140:29047478,41648074:0,459977,115847 +r1,2140:29405744,41648074:358266,575824,115847 +k1,2140:29047478,41648074:-358266 +) +(1,2140:29047478,41648074:358266,459977,115847 +k1,2140:29047478,41648074:3277 +h1,2140:29402467,41648074:0,411205,112570 +) +k1,2140:29829811,41648074:250397 +k1,2140:31276896,41648074:250398 +k1,2140:32583029,41648074:0 +) +(1,2141:6630773,42489562:25952256,513147,126483 +g1,2140:8002441,42489562 +g1,2140:9918058,42489562 +g1,2140:10776579,42489562 +g1,2140:13124078,42489562 +g1,2140:14427589,42489562 +g1,2140:15374584,42489562 +g1,2140:17087039,42489562 +g1,2140:17972430,42489562 +g1,2140:21390132,42489562 +g1,2140:22256517,42489562 +(1,2140:22256517,42489562:0,452978,115847 +r1,2140:25428477,42489562:3171960,568825,115847 +k1,2140:22256517,42489562:-3171960 +) +(1,2140:22256517,42489562:3171960,452978,115847 +k1,2140:22256517,42489562:3277 +h1,2140:25425200,42489562:0,411205,112570 +) +g1,2140:25627706,42489562 +k1,2141:32583029,42489562:3693596 +g1,2141:32583029,42489562 +) +v1,2143:6630773,43680028:0,393216,0 +(1,2164:6630773,45285538:25952256,1998726,196608 +g1,2164:6630773,45285538 +g1,2164:6630773,45285538 +g1,2164:6434165,45285538 +(1,2164:6434165,45285538:0,1998726,196608 +r1,2164:32779637,45285538:26345472,2195334,196608 +k1,2164:6434165,45285538:-26345472 +) +(1,2164:6434165,45285538:26345472,1998726,196608 +[1,2164:6630773,45285538:25952256,1802118,0 +(1,2145:6630773,43887646:25952256,404226,4718 +(1,2144:6630773,43887646:0,0,0 +g1,2144:6630773,43887646 +g1,2144:6630773,43887646 +g1,2144:6303093,43887646 +(1,2144:6303093,43887646:0,0,0 +) +g1,2144:6630773,43887646 +) +g1,2145:7263065,43887646 +g1,2145:8211503,43887646 +h1,2145:9159940,43887646:0,0,0 +k1,2145:32583028,43887646:23423088 +g1,2145:32583028,43887646 +) +(1,2146:6630773,44553824:25952256,284164,4718 +h1,2146:6630773,44553824:0,0,0 +h1,2146:6946919,44553824:0,0,0 +k1,2146:32583029,44553824:25636110 +g1,2146:32583029,44553824 +) +(1,2150:6630773,45285538:25952256,404226,76021 +(1,2148:6630773,45285538:0,0,0 +g1,2148:6630773,45285538 +g1,2148:6630773,45285538 +g1,2148:6303093,45285538 +(1,2148:6303093,45285538:0,0,0 +) +g1,2148:6630773,45285538 +) +g1,2150:7579210,45285538 +g1,2150:8843793,45285538 +h1,2150:9792230,45285538:0,0,0 +k1,2150:32583030,45285538:22790800 +g1,2150:32583030,45285538 +) +] +) +g1,2164:32583029,45285538 +g1,2164:6630773,45285538 +g1,2164:6630773,45285538 +g1,2164:32583029,45285538 +g1,2164:32583029,45285538 +) +] +(1,2164:32583029,45706769:0,0,0 +g1,2164:32583029,45706769 +) +) +] +(1,2164:6630773,47279633:25952256,0,0 +h1,2164:6630773,47279633:25952256,0,0 +) +] +h1,2164:4262630,4025873:0,0,0 +] +!21847 }50 -Input:311:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:312:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:313:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:314:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:315:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:316:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:317:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:318:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:319:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {51 -[1,2225:4262630,47279633:28320399,43253760,0 -(1,2225:4262630,4025873:0,0,0 -[1,2225:-473657,4025873:25952256,0,0 -(1,2225:-473657,-710414:25952256,0,0 -h1,2225:-473657,-710414:0,0,0 -(1,2225:-473657,-710414:0,0,0 -(1,2225:-473657,-710414:0,0,0 -g1,2225:-473657,-710414 -(1,2225:-473657,-710414:65781,0,65781 -g1,2225:-407876,-710414 -[1,2225:-407876,-644633:0,0,0 +[1,2231:4262630,47279633:28320399,43253760,0 +(1,2231:4262630,4025873:0,0,0 +[1,2231:-473657,4025873:25952256,0,0 +(1,2231:-473657,-710414:25952256,0,0 +h1,2231:-473657,-710414:0,0,0 +(1,2231:-473657,-710414:0,0,0 +(1,2231:-473657,-710414:0,0,0 +g1,2231:-473657,-710414 +(1,2231:-473657,-710414:65781,0,65781 +g1,2231:-407876,-710414 +[1,2231:-407876,-644633:0,0,0 ] ) -k1,2225:-473657,-710414:-65781 +k1,2231:-473657,-710414:-65781 ) ) -k1,2225:25478599,-710414:25952256 -g1,2225:25478599,-710414 +k1,2231:25478599,-710414:25952256 +g1,2231:25478599,-710414 ) ] ) -[1,2225:6630773,47279633:25952256,43253760,0 -[1,2225:6630773,4812305:25952256,786432,0 -(1,2225:6630773,4812305:25952256,505283,134348 -(1,2225:6630773,4812305:25952256,505283,134348 -g1,2225:3078558,4812305 -[1,2225:3078558,4812305:0,0,0 -(1,2225:3078558,2439708:0,1703936,0 -k1,2225:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2225:2537886,2439708:1179648,16384,0 +[1,2231:6630773,47279633:25952256,43253760,0 +[1,2231:6630773,4812305:25952256,786432,0 +(1,2231:6630773,4812305:25952256,505283,134348 +(1,2231:6630773,4812305:25952256,505283,134348 +g1,2231:3078558,4812305 +[1,2231:3078558,4812305:0,0,0 +(1,2231:3078558,2439708:0,1703936,0 +k1,2231:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2231:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2225:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2231:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2225:3078558,4812305:0,0,0 -(1,2225:3078558,2439708:0,1703936,0 -g1,2225:29030814,2439708 -g1,2225:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2225:36151628,1915420:16384,1179648,0 +[1,2231:3078558,4812305:0,0,0 +(1,2231:3078558,2439708:0,1703936,0 +g1,2231:29030814,2439708 +g1,2231:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2231:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2225:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2231:37855564,2439708:1179648,16384,0 ) ) -k1,2225:3078556,2439708:-34777008 +k1,2231:3078556,2439708:-34777008 ) ] -[1,2225:3078558,4812305:0,0,0 -(1,2225:3078558,49800853:0,16384,2228224 -k1,2225:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2225:2537886,49800853:1179648,16384,0 +[1,2231:3078558,4812305:0,0,0 +(1,2231:3078558,49800853:0,16384,2228224 +k1,2231:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2231:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2225:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2231:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2225:3078558,4812305:0,0,0 -(1,2225:3078558,49800853:0,16384,2228224 -g1,2225:29030814,49800853 -g1,2225:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2225:36151628,51504789:16384,1179648,0 +[1,2231:3078558,4812305:0,0,0 +(1,2231:3078558,49800853:0,16384,2228224 +g1,2231:29030814,49800853 +g1,2231:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2231:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2225:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2231:37855564,49800853:1179648,16384,0 ) ) -k1,2225:3078556,49800853:-34777008 +k1,2231:3078556,49800853:-34777008 ) ] -g1,2225:6630773,4812305 -k1,2225:19562994,4812305:12135303 -g1,2225:20949735,4812305 -g1,2225:21598541,4812305 -g1,2225:24912696,4812305 -g1,2225:27600327,4812305 -g1,2225:29010006,4812305 +g1,2231:6630773,4812305 +k1,2231:19515153,4812305:12087462 +g1,2231:20901894,4812305 +g1,2231:21550700,4812305 +g1,2231:24864855,4812305 +g1,2231:27600327,4812305 +g1,2231:29010006,4812305 ) ) ] -[1,2225:6630773,45706769:25952256,40108032,0 -(1,2225:6630773,45706769:25952256,40108032,0 -(1,2225:6630773,45706769:0,0,0 -g1,2225:6630773,45706769 +[1,2231:6630773,45706769:25952256,40108032,0 +(1,2231:6630773,45706769:25952256,40108032,0 +(1,2231:6630773,45706769:0,0,0 +g1,2231:6630773,45706769 ) -[1,2225:6630773,45706769:25952256,40108032,0 -v1,2158:6630773,6254097:0,393216,0 -(1,2158:6630773,9988880:25952256,4127999,196608 -g1,2158:6630773,9988880 -g1,2158:6630773,9988880 -g1,2158:6434165,9988880 -(1,2158:6434165,9988880:0,4127999,196608 -r1,2158:32779637,9988880:26345472,4324607,196608 -k1,2158:6434165,9988880:-26345472 +[1,2231:6630773,45706769:25952256,40108032,0 +v1,2164:6630773,6254097:0,393216,0 +(1,2164:6630773,9988880:25952256,4127999,196608 +g1,2164:6630773,9988880 +g1,2164:6630773,9988880 +g1,2164:6434165,9988880 +(1,2164:6434165,9988880:0,4127999,196608 +r1,2164:32779637,9988880:26345472,4324607,196608 +k1,2164:6434165,9988880:-26345472 ) -(1,2158:6434165,9988880:26345472,4127999,196608 -[1,2158:6630773,9988880:25952256,3931391,0 -(1,2146:6630773,6461715:25952256,404226,6290 -(1,2145:6630773,6461715:0,0,0 -g1,2145:6630773,6461715 -g1,2145:6630773,6461715 -g1,2145:6303093,6461715 -(1,2145:6303093,6461715:0,0,0 -) -g1,2145:6630773,6461715 -) -g1,2146:7263065,6461715 -g1,2146:8211503,6461715 -h1,2146:9159941,6461715:0,0,0 -k1,2146:32583029,6461715:23423088 -g1,2146:32583029,6461715 -) -(1,2147:6630773,7127893:25952256,404226,6290 -h1,2147:6630773,7127893:0,0,0 -h1,2147:6946919,7127893:0,0,0 -k1,2147:32583029,7127893:25636110 -g1,2147:32583029,7127893 -) -(1,2151:6630773,7859607:25952256,404226,76021 -(1,2149:6630773,7859607:0,0,0 -g1,2149:6630773,7859607 -g1,2149:6630773,7859607 -g1,2149:6303093,7859607 -(1,2149:6303093,7859607:0,0,0 -) -g1,2149:6630773,7859607 -) -g1,2151:7579210,7859607 -g1,2151:8843793,7859607 -h1,2151:9792230,7859607:0,0,0 -k1,2151:32583030,7859607:22790800 -g1,2151:32583030,7859607 -) -(1,2153:6630773,9181145:25952256,404226,6290 -(1,2152:6630773,9181145:0,0,0 -g1,2152:6630773,9181145 -g1,2152:6630773,9181145 -g1,2152:6303093,9181145 -(1,2152:6303093,9181145:0,0,0 -) -g1,2152:6630773,9181145 -) -g1,2153:7263065,9181145 -g1,2153:8211502,9181145 -h1,2153:8527648,9181145:0,0,0 -k1,2153:32583028,9181145:24055380 -g1,2153:32583028,9181145 -) -(1,2157:6630773,9912859:25952256,404226,76021 -(1,2155:6630773,9912859:0,0,0 -g1,2155:6630773,9912859 -g1,2155:6630773,9912859 -g1,2155:6303093,9912859 -(1,2155:6303093,9912859:0,0,0 -) -g1,2155:6630773,9912859 -) -g1,2157:7579210,9912859 -g1,2157:8843793,9912859 -h1,2157:10108376,9912859:0,0,0 -k1,2157:32583028,9912859:22474652 -g1,2157:32583028,9912859 -) -] -) -g1,2158:32583029,9988880 -g1,2158:6630773,9988880 -g1,2158:6630773,9988880 -g1,2158:32583029,9988880 -g1,2158:32583029,9988880 -) -h1,2158:6630773,10185488:0,0,0 -v1,2162:6630773,11656120:0,393216,0 -(1,2163:6630773,19907079:25952256,8644175,616038 -g1,2163:6630773,19907079 -(1,2163:6630773,19907079:25952256,8644175,616038 -(1,2163:6630773,20523117:25952256,9260213,0 -[1,2163:6630773,20523117:25952256,9260213,0 -(1,2163:6630773,20496903:25952256,9207785,0 -r1,2163:6656987,20496903:26214,9207785,0 -[1,2163:6656987,20496903:25899828,9207785,0 -(1,2163:6656987,19907079:25899828,8028137,0 -[1,2163:7246811,19907079:24720180,8028137,0 -(1,2163:7246811,13040827:24720180,1161885,196608 -(1,2162:7246811,13040827:0,1161885,196608 -r1,2163:8794447,13040827:1547636,1358493,196608 -k1,2162:7246811,13040827:-1547636 -) -(1,2162:7246811,13040827:1547636,1161885,196608 -) -k1,2162:8964632,13040827:170185 -k1,2162:9762652,13040827:170185 -k1,2162:11684613,13040827:170184 -k1,2162:14931058,13040827:170185 -k1,2162:18447511,13040827:170185 -k1,2162:20925874,13040827:170185 -k1,2162:21755351,13040827:170185 -k1,2162:25230517,13040827:170185 -k1,2162:26392261,13040827:170184 -k1,2162:28978103,13040827:170185 -k1,2162:30715909,13040827:170185 -k1,2163:31966991,13040827:0 -) -(1,2163:7246811,13882315:24720180,513147,134348 -k1,2162:8772430,13882315:255531 -k1,2162:9687253,13882315:255531 -k1,2162:12917462,13882315:255530 -k1,2162:15542775,13882315:255531 -k1,2162:16426141,13882315:255531 -k1,2162:18378399,13882315:255531 -k1,2162:21980198,13882315:255531 -k1,2162:25210408,13882315:255531 -k1,2162:27774116,13882315:255530 -k1,2162:29647076,13882315:255531 -k1,2162:30515369,13882315:255531 -k1,2162:31966991,13882315:0 -) -(1,2163:7246811,14723803:24720180,513147,134348 -k1,2162:9261567,14723803:265600 -k1,2162:12141397,14723803:265599 -k1,2162:12762857,14723803:265600 -k1,2162:14901475,14723803:265599 -k1,2162:18315425,14723803:265600 -k1,2162:20270542,14723803:265599 -k1,2162:22844320,14723803:265600 -k1,2162:23769211,14723803:265599 -k1,2162:27009490,14723803:265600 -k1,2162:29471200,14723803:265599 -k1,2162:31354229,14723803:265600 -k1,2162:31966991,14723803:0 -) -(1,2163:7246811,15565291:24720180,513147,134348 -k1,2162:8899137,15565291:200704 -k1,2162:10848997,15565291:200704 -k1,2162:13663932,15565291:200704 -k1,2162:16060747,15565291:200704 -k1,2162:16920743,15565291:200704 -k1,2162:20426428,15565291:200704 -k1,2162:21286424,15565291:200704 -k1,2162:23829385,15565291:200704 -k1,2162:26547327,15565291:200704 -k1,2162:28241597,15565291:200704 -k1,2162:29128463,15565291:200704 -k1,2162:31284106,15565291:200704 -k1,2162:31966991,15565291:0 -) -(1,2163:7246811,16406779:24720180,513147,126483 -k1,2162:10802405,16406779:259133 -k1,2162:11539296,16406779:259134 -k1,2162:12968902,16406779:259133 -k1,2162:14219596,16406779:259134 -k1,2162:16971063,16406779:259133 -k1,2162:18624147,16406779:259133 -k1,2162:19336730,16406779:259074 -k1,2162:20278748,16406779:259133 -k1,2162:21994747,16406779:259134 -k1,2162:23424353,16406779:259133 -k1,2162:25213752,16406779:259133 -k1,2162:26124314,16406779:259134 -k1,2162:27891430,16406779:259133 -k1,2162:28766602,16406779:259134 -k1,2162:30682485,16406779:259133 -k1,2163:31966991,16406779:0 -) -(1,2163:7246811,17248267:24720180,505283,126483 -k1,2162:8481271,17248267:276979 -(1,2162:8481271,17248267:0,452978,115847 -r1,2163:9894672,17248267:1413401,568825,115847 -k1,2162:8481271,17248267:-1413401 -) -(1,2162:8481271,17248267:1413401,452978,115847 -k1,2162:8481271,17248267:3277 -h1,2162:9891395,17248267:0,411205,112570 -) -k1,2162:10171650,17248267:276978 -k1,2162:11640074,17248267:276979 -k1,2162:12835867,17248267:276978 -(1,2162:12835867,17248267:0,452978,115847 -r1,2163:16007827,17248267:3171960,568825,115847 -k1,2162:12835867,17248267:-3171960 -) -(1,2162:12835867,17248267:3171960,452978,115847 -k1,2162:12835867,17248267:3277 -h1,2162:16004550,17248267:0,411205,112570 -) -k1,2162:16284806,17248267:276979 -k1,2162:17553345,17248267:276979 -k1,2162:18896594,17248267:276978 -k1,2162:22478554,17248267:276979 -k1,2162:23946978,17248267:276979 -k1,2162:25508462,17248267:276978 -k1,2162:26401479,17248267:276979 -k1,2162:27266970,17248267:276978 -(1,2162:27266970,17248267:0,452978,115847 -r1,2163:30438930,17248267:3171960,568825,115847 -k1,2162:27266970,17248267:-3171960 -) -(1,2162:27266970,17248267:3171960,452978,115847 -k1,2162:27266970,17248267:3277 -h1,2162:30435653,17248267:0,411205,112570 -) -k1,2162:30715909,17248267:276979 -k1,2163:31966991,17248267:0 -) -(1,2163:7246811,18089755:24720180,513147,134348 -k1,2162:8706147,18089755:189248 -k1,2162:9886955,18089755:189248 -k1,2162:12384380,18089755:189247 -k1,2162:13232920,18089755:189248 -k1,2162:16396847,18089755:189248 -k1,2162:18955877,18089755:189248 -k1,2162:19772959,18089755:189247 -k1,2162:22593478,18089755:189248 -k1,2162:23434154,18089755:189248 -k1,2162:25320129,18089755:189248 -k1,2162:27211346,18089755:189247 -k1,2162:30746862,18089755:189248 -k1,2162:31552148,18089755:189248 -k1,2163:31966991,18089755:0 -) -(1,2163:7246811,18931243:24720180,513147,126483 -k1,2162:9097250,18931243:195655 -k1,2162:9824401,18931243:195654 -k1,2162:10829426,18931243:195655 -k1,2162:14463100,18931243:195655 -k1,2162:16213923,18931243:195654 -k1,2162:17357229,18931243:195655 -k1,2162:19861061,18931243:195654 -k1,2162:20716008,18931243:195655 -k1,2162:24104577,18931243:195655 -k1,2162:27605212,18931243:195654 -k1,2162:28992312,18931243:195655 -k1,2162:31966991,18931243:0 -) -(1,2163:7246811,19772731:24720180,513147,134348 -g1,2162:10534096,19772731 -g1,2162:13527125,19772731 -g1,2162:14342392,19772731 -g1,2162:16724625,19772731 -g1,2162:17606739,19772731 -g1,2162:19678987,19772731 -g1,2162:22026486,19772731 -g1,2162:23217275,19772731 -g1,2162:24482775,19772731 -k1,2163:31966991,19772731:4548203 -g1,2163:31966991,19772731 -) -] -) -] -r1,2163:32583029,20496903:26214,9207785,0 -) -] -) -) -g1,2163:32583029,19907079 -) -h1,2163:6630773,20523117:0,0,0 -(1,2167:6630773,21503867:25952256,513147,134348 -h1,2165:6630773,21503867:983040,0,0 -k1,2165:12356653,21503867:166461 -k1,2165:15497794,21503867:166462 -k1,2165:17972433,21503867:166461 -k1,2165:18798187,21503867:166462 -k1,2165:20977914,21503867:166461 -k1,2165:22301086,21503867:166462 -k1,2165:23960457,21503867:166461 -k1,2165:25193190,21503867:166462 -k1,2165:26895160,21503867:166461 -k1,2165:27417482,21503867:166462 -k1,2165:29608350,21503867:166461 -k1,2165:32583029,21503867:0 -) -(1,2167:6630773,22170045:25952256,505283,134348 -g1,2165:8869482,22170045 -g1,2165:9526808,22170045 -g1,2165:11591847,22170045 -g1,2165:14118259,22170045 -g1,2165:14673348,22170045 -g1,2165:16896984,22170045 -g1,2165:19247760,22170045 -k1,2167:32583029,22170045:13335269 -g1,2167:32583029,22170045 -) -v1,2167:6630773,23150795:0,393216,0 -(1,2178:6630773,26862317:25952256,4104738,196608 -g1,2178:6630773,26862317 -g1,2178:6630773,26862317 -g1,2178:6434165,26862317 -(1,2178:6434165,26862317:0,4104738,196608 -r1,2178:32779637,26862317:26345472,4301346,196608 -k1,2178:6434165,26862317:-26345472 -) -(1,2178:6434165,26862317:26345472,4104738,196608 -[1,2178:6630773,26862317:25952256,3908130,0 -(1,2169:6630773,23358413:25952256,404226,4718 -(1,2168:6630773,23358413:0,0,0 -g1,2168:6630773,23358413 -g1,2168:6630773,23358413 -g1,2168:6303093,23358413 -(1,2168:6303093,23358413:0,0,0 -) -g1,2168:6630773,23358413 -) -g1,2169:7263065,23358413 -g1,2169:8211503,23358413 -h1,2169:9159941,23358413:0,0,0 -k1,2169:32583029,23358413:23423088 -g1,2169:32583029,23358413 -) -(1,2170:6630773,24024591:25952256,410518,107478 -h1,2170:6630773,24024591:0,0,0 -g1,2170:7263065,24024591 -g1,2170:8211503,24024591 -h1,2170:10740668,24024591:0,0,0 -k1,2170:32583028,24024591:21842360 -g1,2170:32583028,24024591 -) -(1,2171:6630773,24690769:25952256,404226,9436 -h1,2171:6630773,24690769:0,0,0 -g1,2171:7263065,24690769 -g1,2171:8211503,24690769 -h1,2171:9792231,24690769:0,0,0 -k1,2171:32583029,24690769:22790798 -g1,2171:32583029,24690769 -) -(1,2172:6630773,25356947:25952256,404226,82312 -h1,2172:6630773,25356947:0,0,0 -g1,2172:7263065,25356947 -g1,2172:8211503,25356947 -g1,2172:9792232,25356947 -g1,2172:10740670,25356947 -h1,2172:11372961,25356947:0,0,0 -k1,2172:32583029,25356947:21210068 -g1,2172:32583029,25356947 -) -(1,2173:6630773,26023125:25952256,404226,6290 -h1,2173:6630773,26023125:0,0,0 -h1,2173:6946919,26023125:0,0,0 -k1,2173:32583029,26023125:25636110 -g1,2173:32583029,26023125 -) -(1,2177:6630773,26754839:25952256,410518,107478 -(1,2175:6630773,26754839:0,0,0 -g1,2175:6630773,26754839 -g1,2175:6630773,26754839 -g1,2175:6303093,26754839 -(1,2175:6303093,26754839:0,0,0 -) -g1,2175:6630773,26754839 -) -g1,2177:7579210,26754839 -g1,2177:8843793,26754839 -g1,2177:10108376,26754839 -g1,2177:10424522,26754839 -g1,2177:10740668,26754839 -g1,2177:11056814,26754839 -g1,2177:11372960,26754839 -g1,2177:11689106,26754839 -g1,2177:14534417,26754839 -h1,2177:16115145,26754839:0,0,0 -k1,2177:32583029,26754839:16467884 -g1,2177:32583029,26754839 -) -] -) -g1,2178:32583029,26862317 -g1,2178:6630773,26862317 -g1,2178:6630773,26862317 -g1,2178:32583029,26862317 -g1,2178:32583029,26862317 -) -h1,2178:6630773,27058925:0,0,0 -(1,2182:6630773,28214985:25952256,513147,134348 -h1,2181:6630773,28214985:983040,0,0 -k1,2181:10042160,28214985:219784 -k1,2181:11434383,28214985:219784 -k1,2181:14416509,28214985:219783 -k1,2181:17854766,28214985:219784 -k1,2181:20858519,28214985:219784 -k1,2181:23124337,28214985:219784 -k1,2181:23802218,28214985:219784 -k1,2181:26651962,28214985:219784 -k1,2181:27523173,28214985:219783 -k1,2181:29958074,28214985:219784 -k1,2181:31196943,28214985:219784 -k1,2181:32583029,28214985:0 -) -(1,2182:6630773,29056473:25952256,513147,134348 -g1,2181:7489294,29056473 -g1,2181:9836793,29056473 -g1,2181:11549248,29056473 -g1,2181:12434639,29056473 -g1,2181:15852341,29056473 -g1,2181:16776398,29056473 -g1,2181:18260133,29056473 -g1,2181:20161332,29056473 -g1,2181:22508831,29056473 -g1,2181:23812342,29056473 -g1,2181:24759337,29056473 -g1,2181:27716976,29056473 -g1,2181:28532243,29056473 -g1,2181:29087332,29056473 -k1,2182:32583029,29056473:1456217 -g1,2182:32583029,29056473 -) -v1,2184:6630773,30037223:0,393216,0 -(1,2199:6630773,34438184:25952256,4794177,196608 -g1,2199:6630773,34438184 -g1,2199:6630773,34438184 -g1,2199:6434165,34438184 -(1,2199:6434165,34438184:0,4794177,196608 -r1,2199:32779637,34438184:26345472,4990785,196608 -k1,2199:6434165,34438184:-26345472 -) -(1,2199:6434165,34438184:26345472,4794177,196608 -[1,2199:6630773,34438184:25952256,4597569,0 -(1,2186:6630773,30244841:25952256,404226,6290 -(1,2185:6630773,30244841:0,0,0 -g1,2185:6630773,30244841 -g1,2185:6630773,30244841 -g1,2185:6303093,30244841 -(1,2185:6303093,30244841:0,0,0 -) -g1,2185:6630773,30244841 -) -g1,2186:7263065,30244841 -g1,2186:8211503,30244841 -g1,2186:9476086,30244841 -g1,2186:11056815,30244841 -g1,2186:13585981,30244841 -g1,2186:15166710,30244841 -g1,2186:16115147,30244841 -g1,2186:17695876,30244841 -h1,2186:18644313,30244841:0,0,0 -k1,2186:32583029,30244841:13938716 -g1,2186:32583029,30244841 -) -(1,2187:6630773,30911019:25952256,284164,4718 -h1,2187:6630773,30911019:0,0,0 -h1,2187:6946919,30911019:0,0,0 -k1,2187:32583029,30911019:25636110 -g1,2187:32583029,30911019 -) -(1,2191:6630773,31642733:25952256,404226,76021 -(1,2189:6630773,31642733:0,0,0 -g1,2189:6630773,31642733 -g1,2189:6630773,31642733 -g1,2189:6303093,31642733 -(1,2189:6303093,31642733:0,0,0 -) -g1,2189:6630773,31642733 -) -g1,2191:7579210,31642733 -g1,2191:8843793,31642733 -g1,2191:10108376,31642733 -g1,2191:11689105,31642733 -g1,2191:14218271,31642733 -g1,2191:15799000,31642733 -g1,2191:16747437,31642733 -g1,2191:18328166,31642733 -h1,2191:19276603,31642733:0,0,0 -k1,2191:32583029,31642733:13306426 -g1,2191:32583029,31642733 -) -(1,2193:6630773,32964271:25952256,404226,6290 -(1,2192:6630773,32964271:0,0,0 -g1,2192:6630773,32964271 -g1,2192:6630773,32964271 -g1,2192:6303093,32964271 -(1,2192:6303093,32964271:0,0,0 -) -g1,2192:6630773,32964271 -) -g1,2193:7263065,32964271 -g1,2193:8211503,32964271 -g1,2193:9476086,32964271 -g1,2193:11056815,32964271 -g1,2193:13585981,32964271 -g1,2193:15166710,32964271 -g1,2193:16115147,32964271 -g1,2193:17695876,32964271 -h1,2193:18644313,32964271:0,0,0 -k1,2193:32583029,32964271:13938716 -g1,2193:32583029,32964271 -) -(1,2194:6630773,33630449:25952256,404226,6290 -h1,2194:6630773,33630449:0,0,0 -h1,2194:6946919,33630449:0,0,0 -k1,2194:32583029,33630449:25636110 -g1,2194:32583029,33630449 -) -(1,2198:6630773,34362163:25952256,404226,76021 -(1,2196:6630773,34362163:0,0,0 -g1,2196:6630773,34362163 -g1,2196:6630773,34362163 -g1,2196:6303093,34362163 -(1,2196:6303093,34362163:0,0,0 -) -g1,2196:6630773,34362163 -) -g1,2198:7579210,34362163 -g1,2198:8843793,34362163 -g1,2198:10108376,34362163 -g1,2198:11689105,34362163 -g1,2198:14850562,34362163 -g1,2198:16431291,34362163 -g1,2198:17379728,34362163 -g1,2198:18960457,34362163 -h1,2198:19908894,34362163:0,0,0 -k1,2198:32583029,34362163:12674135 -g1,2198:32583029,34362163 -) -] -) -g1,2199:32583029,34438184 -g1,2199:6630773,34438184 -g1,2199:6630773,34438184 -g1,2199:32583029,34438184 -g1,2199:32583029,34438184 -) -h1,2199:6630773,34634792:0,0,0 -(1,2203:6630773,35790852:25952256,513147,134348 -h1,2202:6630773,35790852:983040,0,0 -k1,2202:9011415,35790852:200915 -k1,2202:10914299,35790852:200914 -k1,2202:13263484,35790852:200915 -k1,2202:14455959,35790852:200915 -k1,2202:15723144,35790852:200914 -k1,2202:17245920,35790852:200915 -k1,2202:18106126,35790852:200914 -k1,2202:19326126,35790852:200915 -k1,2202:21566521,35790852:200915 -k1,2202:23147623,35790852:200914 -k1,2202:24340098,35790852:200915 -k1,2202:28359796,35790852:200915 -k1,2202:30073936,35790852:200914 -k1,2202:30926279,35790852:200915 -k1,2202:32583029,35790852:0 -) -(1,2203:6630773,36632340:25952256,505283,126483 -k1,2202:7930976,36632340:281118 -k1,2202:11954200,36632340:281118 -k1,2202:13053207,36632340:281118 -k1,2202:14504798,36632340:281118 -k1,2202:15890198,36632340:281118 -k1,2202:17196299,36632340:281118 -k1,2202:19175455,36632340:281118 -(1,2202:19175455,36632340:0,452978,115847 -r1,2202:19533721,36632340:358266,568825,115847 -k1,2202:19175455,36632340:-358266 -) -(1,2202:19175455,36632340:358266,452978,115847 -k1,2202:19175455,36632340:3277 -h1,2202:19530444,36632340:0,411205,112570 -) -k1,2202:19814838,36632340:281117 -k1,2202:20627453,36632340:281118 -k1,2202:23258692,36632340:281118 -k1,2202:25733955,36632340:281118 -k1,2202:29320054,36632340:281118 -k1,2202:30705454,36632340:281118 -k1,2202:31734338,36632340:281118 -k1,2203:32583029,36632340:0 -) -(1,2203:6630773,37473828:25952256,513147,134348 -k1,2202:10033512,37473828:228830 -k1,2202:11997734,37473828:228829 -k1,2202:14661882,37473828:228830 -k1,2202:18634784,37473828:228830 -k1,2202:20696000,37473828:228829 -k1,2202:21916390,37473828:228830 -k1,2202:24376721,37473828:228830 -k1,2202:25264842,37473828:228829 -k1,2202:27306398,37473828:228830 -k1,2202:28726673,37473828:228830 -k1,2202:30353385,37473828:228829 -k1,2202:31450567,37473828:228830 -k1,2202:32583029,37473828:0 -) -(1,2203:6630773,38315316:25952256,513147,134348 -k1,2202:8465985,38315316:174530 -k1,2202:9869316,38315316:174531 -k1,2202:11580010,38315316:174530 -k1,2202:13037736,38315316:174531 -k1,2202:14380773,38315316:174530 -h1,2202:14587867,38315316:0,0,0 -k1,2202:15759856,38315316:174531 -k1,2202:17125831,38315316:174530 -k1,2202:18313548,38315316:174530 -h1,2202:18520642,38315316:0,0,0 -k1,2202:19866301,38315316:174531 -h1,2202:19866301,38315316:0,0,0 -k1,2202:20831195,38315316:174530 -k1,2202:22024811,38315316:174531 -k1,2202:24334504,38315316:174530 -k1,2202:26005222,38315316:174531 -k1,2202:27127403,38315316:174530 -k1,2202:27657794,38315316:174531 -k1,2202:30926279,38315316:174530 -k1,2202:32583029,38315316:0 -) -(1,2203:6630773,39156804:25952256,513147,134348 -k1,2202:8823648,39156804:182886 -k1,2202:9362395,39156804:182887 -k1,2202:11411091,39156804:182886 -k1,2202:12785423,39156804:182887 -h1,2202:12785423,39156804:0,0,0 -k1,2202:13758673,39156804:182886 -k1,2202:14960645,39156804:182887 -k1,2202:17278694,39156804:182886 -k1,2202:18957767,39156804:182886 -k1,2202:20088305,39156804:182887 -k1,2202:20627051,39156804:182886 -k1,2202:22682957,39156804:182887 -k1,2202:25984701,39156804:182886 -h1,2202:25984701,39156804:0,0,0 -k1,2202:26736440,39156804:182887 -k1,2202:27872875,39156804:182886 -k1,2202:29341578,39156804:182887 -k1,2202:31185146,39156804:182886 -k1,2202:32583029,39156804:0 -) -(1,2203:6630773,39998292:25952256,513147,134348 -k1,2202:7928303,39998292:278445 -k1,2202:10969092,39998292:278446 -k1,2202:14007258,39998292:278445 -k1,2202:14952859,39998292:278445 -(1,2202:14952859,39998292:0,452978,115847 -r1,2202:17421396,39998292:2468537,568825,115847 -k1,2202:14952859,39998292:-2468537 -) -(1,2202:14952859,39998292:2468537,452978,115847 -k1,2202:14952859,39998292:3277 -h1,2202:17418119,39998292:0,411205,112570 -) -k1,2202:17699842,39998292:278446 -k1,2202:19169732,39998292:278445 -(1,2202:19169732,39998292:0,452978,115847 -r1,2202:20934845,39998292:1765113,568825,115847 -k1,2202:19169732,39998292:-1765113 -) -(1,2202:19169732,39998292:1765113,452978,115847 -k1,2202:19169732,39998292:3277 -h1,2202:20931568,39998292:0,411205,112570 -) -k1,2202:21386961,39998292:278446 -k1,2202:23059357,39998292:278445 -(1,2202:23059357,39998292:0,452978,115847 -r1,2202:24824470,39998292:1765113,568825,115847 -k1,2202:23059357,39998292:-1765113 -) -(1,2202:23059357,39998292:1765113,452978,115847 -k1,2202:23059357,39998292:3277 -h1,2202:24821193,39998292:0,411205,112570 -) -k1,2202:25102915,39998292:278445 -k1,2202:29150336,39998292:278446 -k1,2202:30447866,39998292:278445 -k1,2202:32583029,39998292:0 -) -(1,2203:6630773,40839780:25952256,505283,134348 -g1,2202:10100249,40839780 -g1,2202:11490923,40839780 -(1,2202:11490923,40839780:0,452978,115847 -r1,2202:13959460,40839780:2468537,568825,115847 -k1,2202:11490923,40839780:-2468537 -) -(1,2202:11490923,40839780:2468537,452978,115847 -k1,2202:11490923,40839780:3277 -h1,2202:13956183,40839780:0,411205,112570 -) -g1,2202:14158689,40839780 -g1,2202:17643238,40839780 -g1,2202:19481522,40839780 -g1,2202:20366913,40839780 -k1,2203:32583029,40839780:9619580 -g1,2203:32583029,40839780 -) -v1,2205:6630773,41820530:0,393216,0 -(1,2220:6630773,45510161:25952256,4082847,196608 -g1,2220:6630773,45510161 -g1,2220:6630773,45510161 -g1,2220:6434165,45510161 -(1,2220:6434165,45510161:0,4082847,196608 -r1,2220:32779637,45510161:26345472,4279455,196608 -k1,2220:6434165,45510161:-26345472 -) -(1,2220:6434165,45510161:26345472,4082847,196608 -[1,2220:6630773,45510161:25952256,3886239,0 -(1,2207:6630773,42034440:25952256,410518,101187 -(1,2206:6630773,42034440:0,0,0 -g1,2206:6630773,42034440 -g1,2206:6630773,42034440 -g1,2206:6303093,42034440 -(1,2206:6303093,42034440:0,0,0 -) -g1,2206:6630773,42034440 -) -g1,2207:7263065,42034440 -g1,2207:8211503,42034440 -h1,2207:15798999,42034440:0,0,0 -k1,2207:32583029,42034440:16784030 -g1,2207:32583029,42034440 -) -(1,2208:6630773,42700618:25952256,404226,101187 -h1,2208:6630773,42700618:0,0,0 -k1,2208:6630773,42700618:0 -h1,2208:9159938,42700618:0,0,0 -k1,2208:32583030,42700618:23423092 -g1,2208:32583030,42700618 -) -(1,2212:6630773,43184736:25952256,410518,101187 -(1,2210:6630773,43184736:0,0,0 -g1,2210:6630773,43184736 -g1,2210:6630773,43184736 -g1,2210:6303093,43184736 -(1,2210:6303093,43184736:0,0,0 -) -g1,2210:6630773,43184736 -) -g1,2212:7579210,43184736 -g1,2212:8843793,43184736 -h1,2212:16431289,43184736:0,0,0 -k1,2212:32583029,43184736:16151740 -g1,2212:32583029,43184736 -) -(1,2214:6630773,44258678:25952256,404226,76021 -(1,2213:6630773,44258678:0,0,0 -g1,2213:6630773,44258678 -g1,2213:6630773,44258678 -g1,2213:6303093,44258678 -(1,2213:6303093,44258678:0,0,0 -) -g1,2213:6630773,44258678 -) -k1,2214:6630773,44258678:0 -h1,2214:8527647,44258678:0,0,0 -k1,2214:32583029,44258678:24055382 -g1,2214:32583029,44258678 -) -(1,2219:6630773,44742796:25952256,404226,6290 -(1,2216:6630773,44742796:0,0,0 -g1,2216:6630773,44742796 -g1,2216:6630773,44742796 -g1,2216:6303093,44742796 -(1,2216:6303093,44742796:0,0,0 -) -g1,2216:6630773,44742796 -) -g1,2219:7579210,44742796 -h1,2219:8527647,44742796:0,0,0 -k1,2219:32583029,44742796:24055382 -g1,2219:32583029,44742796 -) -(1,2219:6630773,45408974:25952256,410518,101187 -h1,2219:6630773,45408974:0,0,0 -g1,2219:7579210,45408974 -g1,2219:8843793,45408974 -g1,2219:11056813,45408974 -h1,2219:11372959,45408974:0,0,0 -k1,2219:32583029,45408974:21210070 -g1,2219:32583029,45408974 -) -] -) -g1,2220:32583029,45510161 -g1,2220:6630773,45510161 -g1,2220:6630773,45510161 -g1,2220:32583029,45510161 -g1,2220:32583029,45510161 -) -h1,2220:6630773,45706769:0,0,0 -] -(1,2225:32583029,45706769:0,0,0 -g1,2225:32583029,45706769 -) -) -] -(1,2225:6630773,47279633:25952256,0,0 -h1,2225:6630773,47279633:25952256,0,0 -) -] -h1,2225:4262630,4025873:0,0,0 +(1,2164:6434165,9988880:26345472,4127999,196608 +[1,2164:6630773,9988880:25952256,3931391,0 +(1,2152:6630773,6461715:25952256,404226,6290 +(1,2151:6630773,6461715:0,0,0 +g1,2151:6630773,6461715 +g1,2151:6630773,6461715 +g1,2151:6303093,6461715 +(1,2151:6303093,6461715:0,0,0 +) +g1,2151:6630773,6461715 +) +g1,2152:7263065,6461715 +g1,2152:8211503,6461715 +h1,2152:9159941,6461715:0,0,0 +k1,2152:32583029,6461715:23423088 +g1,2152:32583029,6461715 +) +(1,2153:6630773,7127893:25952256,404226,6290 +h1,2153:6630773,7127893:0,0,0 +h1,2153:6946919,7127893:0,0,0 +k1,2153:32583029,7127893:25636110 +g1,2153:32583029,7127893 +) +(1,2157:6630773,7859607:25952256,404226,76021 +(1,2155:6630773,7859607:0,0,0 +g1,2155:6630773,7859607 +g1,2155:6630773,7859607 +g1,2155:6303093,7859607 +(1,2155:6303093,7859607:0,0,0 +) +g1,2155:6630773,7859607 +) +g1,2157:7579210,7859607 +g1,2157:8843793,7859607 +h1,2157:9792230,7859607:0,0,0 +k1,2157:32583030,7859607:22790800 +g1,2157:32583030,7859607 +) +(1,2159:6630773,9181145:25952256,404226,6290 +(1,2158:6630773,9181145:0,0,0 +g1,2158:6630773,9181145 +g1,2158:6630773,9181145 +g1,2158:6303093,9181145 +(1,2158:6303093,9181145:0,0,0 +) +g1,2158:6630773,9181145 +) +g1,2159:7263065,9181145 +g1,2159:8211502,9181145 +h1,2159:8527648,9181145:0,0,0 +k1,2159:32583028,9181145:24055380 +g1,2159:32583028,9181145 +) +(1,2163:6630773,9912859:25952256,404226,76021 +(1,2161:6630773,9912859:0,0,0 +g1,2161:6630773,9912859 +g1,2161:6630773,9912859 +g1,2161:6303093,9912859 +(1,2161:6303093,9912859:0,0,0 +) +g1,2161:6630773,9912859 +) +g1,2163:7579210,9912859 +g1,2163:8843793,9912859 +h1,2163:10108376,9912859:0,0,0 +k1,2163:32583028,9912859:22474652 +g1,2163:32583028,9912859 +) +] +) +g1,2164:32583029,9988880 +g1,2164:6630773,9988880 +g1,2164:6630773,9988880 +g1,2164:32583029,9988880 +g1,2164:32583029,9988880 +) +h1,2164:6630773,10185488:0,0,0 +v1,2168:6630773,11656120:0,393216,0 +(1,2169:6630773,19907079:25952256,8644175,616038 +g1,2169:6630773,19907079 +(1,2169:6630773,19907079:25952256,8644175,616038 +(1,2169:6630773,20523117:25952256,9260213,0 +[1,2169:6630773,20523117:25952256,9260213,0 +(1,2169:6630773,20496903:25952256,9207785,0 +r1,2169:6656987,20496903:26214,9207785,0 +[1,2169:6656987,20496903:25899828,9207785,0 +(1,2169:6656987,19907079:25899828,8028137,0 +[1,2169:7246811,19907079:24720180,8028137,0 +(1,2169:7246811,13040827:24720180,1161885,196608 +(1,2168:7246811,13040827:0,1161885,196608 +r1,2169:8794447,13040827:1547636,1358493,196608 +k1,2168:7246811,13040827:-1547636 +) +(1,2168:7246811,13040827:1547636,1161885,196608 +) +k1,2168:8964632,13040827:170185 +k1,2168:9762652,13040827:170185 +k1,2168:11684613,13040827:170184 +k1,2168:14931058,13040827:170185 +k1,2168:18447511,13040827:170185 +k1,2168:20925874,13040827:170185 +k1,2168:21755351,13040827:170185 +k1,2168:25230517,13040827:170185 +k1,2168:26392261,13040827:170184 +k1,2168:28978103,13040827:170185 +k1,2168:30715909,13040827:170185 +k1,2169:31966991,13040827:0 +) +(1,2169:7246811,13882315:24720180,513147,134348 +k1,2168:8772430,13882315:255531 +k1,2168:9687253,13882315:255531 +k1,2168:12917462,13882315:255530 +k1,2168:15542775,13882315:255531 +k1,2168:16426141,13882315:255531 +k1,2168:18378399,13882315:255531 +k1,2168:21980198,13882315:255531 +k1,2168:25210408,13882315:255531 +k1,2168:27774116,13882315:255530 +k1,2168:29647076,13882315:255531 +k1,2168:30515369,13882315:255531 +k1,2168:31966991,13882315:0 +) +(1,2169:7246811,14723803:24720180,513147,134348 +k1,2168:9261567,14723803:265600 +k1,2168:12141397,14723803:265599 +k1,2168:12762857,14723803:265600 +k1,2168:14901475,14723803:265599 +k1,2168:18315425,14723803:265600 +k1,2168:20270542,14723803:265599 +k1,2168:22844320,14723803:265600 +k1,2168:23769211,14723803:265599 +k1,2168:27009490,14723803:265600 +k1,2168:29471200,14723803:265599 +k1,2168:31354229,14723803:265600 +k1,2168:31966991,14723803:0 +) +(1,2169:7246811,15565291:24720180,513147,134348 +k1,2168:8899137,15565291:200704 +k1,2168:10848997,15565291:200704 +k1,2168:13663932,15565291:200704 +k1,2168:16060747,15565291:200704 +k1,2168:16920743,15565291:200704 +k1,2168:20426428,15565291:200704 +k1,2168:21286424,15565291:200704 +k1,2168:23829385,15565291:200704 +k1,2168:26547327,15565291:200704 +k1,2168:28241597,15565291:200704 +k1,2168:29128463,15565291:200704 +k1,2168:31284106,15565291:200704 +k1,2168:31966991,15565291:0 +) +(1,2169:7246811,16406779:24720180,513147,126483 +k1,2168:10802405,16406779:259133 +k1,2168:11539296,16406779:259134 +k1,2168:12968902,16406779:259133 +k1,2168:14219596,16406779:259134 +k1,2168:16971063,16406779:259133 +k1,2168:18624147,16406779:259133 +k1,2168:19336730,16406779:259074 +k1,2168:20278748,16406779:259133 +k1,2168:21994747,16406779:259134 +k1,2168:23424353,16406779:259133 +k1,2168:25213752,16406779:259133 +k1,2168:26124314,16406779:259134 +k1,2168:27891430,16406779:259133 +k1,2168:28766602,16406779:259134 +k1,2168:30682485,16406779:259133 +k1,2169:31966991,16406779:0 +) +(1,2169:7246811,17248267:24720180,505283,126483 +k1,2168:8481271,17248267:276979 +(1,2168:8481271,17248267:0,452978,115847 +r1,2169:9894672,17248267:1413401,568825,115847 +k1,2168:8481271,17248267:-1413401 +) +(1,2168:8481271,17248267:1413401,452978,115847 +k1,2168:8481271,17248267:3277 +h1,2168:9891395,17248267:0,411205,112570 +) +k1,2168:10171650,17248267:276978 +k1,2168:11640074,17248267:276979 +k1,2168:12835867,17248267:276978 +(1,2168:12835867,17248267:0,452978,115847 +r1,2169:16007827,17248267:3171960,568825,115847 +k1,2168:12835867,17248267:-3171960 +) +(1,2168:12835867,17248267:3171960,452978,115847 +k1,2168:12835867,17248267:3277 +h1,2168:16004550,17248267:0,411205,112570 +) +k1,2168:16284806,17248267:276979 +k1,2168:17553345,17248267:276979 +k1,2168:18896594,17248267:276978 +k1,2168:22478554,17248267:276979 +k1,2168:23946978,17248267:276979 +k1,2168:25508462,17248267:276978 +k1,2168:26401479,17248267:276979 +k1,2168:27266970,17248267:276978 +(1,2168:27266970,17248267:0,452978,115847 +r1,2169:30438930,17248267:3171960,568825,115847 +k1,2168:27266970,17248267:-3171960 +) +(1,2168:27266970,17248267:3171960,452978,115847 +k1,2168:27266970,17248267:3277 +h1,2168:30435653,17248267:0,411205,112570 +) +k1,2168:30715909,17248267:276979 +k1,2169:31966991,17248267:0 +) +(1,2169:7246811,18089755:24720180,513147,134348 +k1,2168:8706147,18089755:189248 +k1,2168:9886955,18089755:189248 +k1,2168:12384380,18089755:189247 +k1,2168:13232920,18089755:189248 +k1,2168:16396847,18089755:189248 +k1,2168:18955877,18089755:189248 +k1,2168:19772959,18089755:189247 +k1,2168:22593478,18089755:189248 +k1,2168:23434154,18089755:189248 +k1,2168:25320129,18089755:189248 +k1,2168:27211346,18089755:189247 +k1,2168:30746862,18089755:189248 +k1,2168:31552148,18089755:189248 +k1,2169:31966991,18089755:0 +) +(1,2169:7246811,18931243:24720180,513147,126483 +k1,2168:9097250,18931243:195655 +k1,2168:9824401,18931243:195654 +k1,2168:10829426,18931243:195655 +k1,2168:14463100,18931243:195655 +k1,2168:16213923,18931243:195654 +k1,2168:17357229,18931243:195655 +k1,2168:19861061,18931243:195654 +k1,2168:20716008,18931243:195655 +k1,2168:24104577,18931243:195655 +k1,2168:27605212,18931243:195654 +k1,2168:28992312,18931243:195655 +k1,2168:31966991,18931243:0 +) +(1,2169:7246811,19772731:24720180,513147,134348 +g1,2168:10534096,19772731 +g1,2168:13527125,19772731 +g1,2168:14342392,19772731 +g1,2168:16724625,19772731 +g1,2168:17606739,19772731 +g1,2168:19678987,19772731 +g1,2168:22026486,19772731 +g1,2168:23217275,19772731 +g1,2168:24482775,19772731 +k1,2169:31966991,19772731:4548203 +g1,2169:31966991,19772731 +) +] +) +] +r1,2169:32583029,20496903:26214,9207785,0 +) +] +) +) +g1,2169:32583029,19907079 +) +h1,2169:6630773,20523117:0,0,0 +(1,2173:6630773,21503867:25952256,513147,134348 +h1,2171:6630773,21503867:983040,0,0 +k1,2171:12356653,21503867:166461 +k1,2171:15497794,21503867:166462 +k1,2171:17972433,21503867:166461 +k1,2171:18798187,21503867:166462 +k1,2171:20977914,21503867:166461 +k1,2171:22301086,21503867:166462 +k1,2171:23960457,21503867:166461 +k1,2171:25193190,21503867:166462 +k1,2171:26895160,21503867:166461 +k1,2171:27417482,21503867:166462 +k1,2171:29608350,21503867:166461 +k1,2171:32583029,21503867:0 +) +(1,2173:6630773,22170045:25952256,505283,134348 +g1,2171:8869482,22170045 +g1,2171:9526808,22170045 +g1,2171:11591847,22170045 +g1,2171:14118259,22170045 +g1,2171:14673348,22170045 +g1,2171:16896984,22170045 +g1,2171:19247760,22170045 +k1,2173:32583029,22170045:13335269 +g1,2173:32583029,22170045 +) +v1,2173:6630773,23150795:0,393216,0 +(1,2184:6630773,26862317:25952256,4104738,196608 +g1,2184:6630773,26862317 +g1,2184:6630773,26862317 +g1,2184:6434165,26862317 +(1,2184:6434165,26862317:0,4104738,196608 +r1,2184:32779637,26862317:26345472,4301346,196608 +k1,2184:6434165,26862317:-26345472 +) +(1,2184:6434165,26862317:26345472,4104738,196608 +[1,2184:6630773,26862317:25952256,3908130,0 +(1,2175:6630773,23358413:25952256,404226,4718 +(1,2174:6630773,23358413:0,0,0 +g1,2174:6630773,23358413 +g1,2174:6630773,23358413 +g1,2174:6303093,23358413 +(1,2174:6303093,23358413:0,0,0 +) +g1,2174:6630773,23358413 +) +g1,2175:7263065,23358413 +g1,2175:8211503,23358413 +h1,2175:9159941,23358413:0,0,0 +k1,2175:32583029,23358413:23423088 +g1,2175:32583029,23358413 +) +(1,2176:6630773,24024591:25952256,410518,107478 +h1,2176:6630773,24024591:0,0,0 +g1,2176:7263065,24024591 +g1,2176:8211503,24024591 +h1,2176:10740668,24024591:0,0,0 +k1,2176:32583028,24024591:21842360 +g1,2176:32583028,24024591 +) +(1,2177:6630773,24690769:25952256,404226,9436 +h1,2177:6630773,24690769:0,0,0 +g1,2177:7263065,24690769 +g1,2177:8211503,24690769 +h1,2177:9792231,24690769:0,0,0 +k1,2177:32583029,24690769:22790798 +g1,2177:32583029,24690769 +) +(1,2178:6630773,25356947:25952256,404226,82312 +h1,2178:6630773,25356947:0,0,0 +g1,2178:7263065,25356947 +g1,2178:8211503,25356947 +g1,2178:9792232,25356947 +g1,2178:10740670,25356947 +h1,2178:11372961,25356947:0,0,0 +k1,2178:32583029,25356947:21210068 +g1,2178:32583029,25356947 +) +(1,2179:6630773,26023125:25952256,404226,6290 +h1,2179:6630773,26023125:0,0,0 +h1,2179:6946919,26023125:0,0,0 +k1,2179:32583029,26023125:25636110 +g1,2179:32583029,26023125 +) +(1,2183:6630773,26754839:25952256,410518,107478 +(1,2181:6630773,26754839:0,0,0 +g1,2181:6630773,26754839 +g1,2181:6630773,26754839 +g1,2181:6303093,26754839 +(1,2181:6303093,26754839:0,0,0 +) +g1,2181:6630773,26754839 +) +g1,2183:7579210,26754839 +g1,2183:8843793,26754839 +g1,2183:10108376,26754839 +g1,2183:10424522,26754839 +g1,2183:10740668,26754839 +g1,2183:11056814,26754839 +g1,2183:11372960,26754839 +g1,2183:11689106,26754839 +g1,2183:14534417,26754839 +h1,2183:16115145,26754839:0,0,0 +k1,2183:32583029,26754839:16467884 +g1,2183:32583029,26754839 +) +] +) +g1,2184:32583029,26862317 +g1,2184:6630773,26862317 +g1,2184:6630773,26862317 +g1,2184:32583029,26862317 +g1,2184:32583029,26862317 +) +h1,2184:6630773,27058925:0,0,0 +(1,2188:6630773,28214985:25952256,513147,134348 +h1,2187:6630773,28214985:983040,0,0 +k1,2187:10042160,28214985:219784 +k1,2187:11434383,28214985:219784 +k1,2187:14416509,28214985:219783 +k1,2187:17854766,28214985:219784 +k1,2187:20858519,28214985:219784 +k1,2187:23124337,28214985:219784 +k1,2187:23802218,28214985:219784 +k1,2187:26651962,28214985:219784 +k1,2187:27523173,28214985:219783 +k1,2187:29958074,28214985:219784 +k1,2187:31196943,28214985:219784 +k1,2187:32583029,28214985:0 +) +(1,2188:6630773,29056473:25952256,513147,134348 +g1,2187:7489294,29056473 +g1,2187:9836793,29056473 +g1,2187:11549248,29056473 +g1,2187:12434639,29056473 +g1,2187:15852341,29056473 +g1,2187:16776398,29056473 +g1,2187:18260133,29056473 +g1,2187:20161332,29056473 +g1,2187:22508831,29056473 +g1,2187:23812342,29056473 +g1,2187:24759337,29056473 +g1,2187:27716976,29056473 +g1,2187:28532243,29056473 +g1,2187:29087332,29056473 +k1,2188:32583029,29056473:1456217 +g1,2188:32583029,29056473 +) +v1,2190:6630773,30037223:0,393216,0 +(1,2205:6630773,34438184:25952256,4794177,196608 +g1,2205:6630773,34438184 +g1,2205:6630773,34438184 +g1,2205:6434165,34438184 +(1,2205:6434165,34438184:0,4794177,196608 +r1,2205:32779637,34438184:26345472,4990785,196608 +k1,2205:6434165,34438184:-26345472 +) +(1,2205:6434165,34438184:26345472,4794177,196608 +[1,2205:6630773,34438184:25952256,4597569,0 +(1,2192:6630773,30244841:25952256,404226,6290 +(1,2191:6630773,30244841:0,0,0 +g1,2191:6630773,30244841 +g1,2191:6630773,30244841 +g1,2191:6303093,30244841 +(1,2191:6303093,30244841:0,0,0 +) +g1,2191:6630773,30244841 +) +g1,2192:7263065,30244841 +g1,2192:8211503,30244841 +g1,2192:9476086,30244841 +g1,2192:11056815,30244841 +g1,2192:13585981,30244841 +g1,2192:15166710,30244841 +g1,2192:16115147,30244841 +g1,2192:17695876,30244841 +h1,2192:18644313,30244841:0,0,0 +k1,2192:32583029,30244841:13938716 +g1,2192:32583029,30244841 +) +(1,2193:6630773,30911019:25952256,284164,4718 +h1,2193:6630773,30911019:0,0,0 +h1,2193:6946919,30911019:0,0,0 +k1,2193:32583029,30911019:25636110 +g1,2193:32583029,30911019 +) +(1,2197:6630773,31642733:25952256,404226,76021 +(1,2195:6630773,31642733:0,0,0 +g1,2195:6630773,31642733 +g1,2195:6630773,31642733 +g1,2195:6303093,31642733 +(1,2195:6303093,31642733:0,0,0 +) +g1,2195:6630773,31642733 +) +g1,2197:7579210,31642733 +g1,2197:8843793,31642733 +g1,2197:10108376,31642733 +g1,2197:11689105,31642733 +g1,2197:14218271,31642733 +g1,2197:15799000,31642733 +g1,2197:16747437,31642733 +g1,2197:18328166,31642733 +h1,2197:19276603,31642733:0,0,0 +k1,2197:32583029,31642733:13306426 +g1,2197:32583029,31642733 +) +(1,2199:6630773,32964271:25952256,404226,6290 +(1,2198:6630773,32964271:0,0,0 +g1,2198:6630773,32964271 +g1,2198:6630773,32964271 +g1,2198:6303093,32964271 +(1,2198:6303093,32964271:0,0,0 +) +g1,2198:6630773,32964271 +) +g1,2199:7263065,32964271 +g1,2199:8211503,32964271 +g1,2199:9476086,32964271 +g1,2199:11056815,32964271 +g1,2199:13585981,32964271 +g1,2199:15166710,32964271 +g1,2199:16115147,32964271 +g1,2199:17695876,32964271 +h1,2199:18644313,32964271:0,0,0 +k1,2199:32583029,32964271:13938716 +g1,2199:32583029,32964271 +) +(1,2200:6630773,33630449:25952256,404226,6290 +h1,2200:6630773,33630449:0,0,0 +h1,2200:6946919,33630449:0,0,0 +k1,2200:32583029,33630449:25636110 +g1,2200:32583029,33630449 +) +(1,2204:6630773,34362163:25952256,404226,76021 +(1,2202:6630773,34362163:0,0,0 +g1,2202:6630773,34362163 +g1,2202:6630773,34362163 +g1,2202:6303093,34362163 +(1,2202:6303093,34362163:0,0,0 +) +g1,2202:6630773,34362163 +) +g1,2204:7579210,34362163 +g1,2204:8843793,34362163 +g1,2204:10108376,34362163 +g1,2204:11689105,34362163 +g1,2204:14850562,34362163 +g1,2204:16431291,34362163 +g1,2204:17379728,34362163 +g1,2204:18960457,34362163 +h1,2204:19908894,34362163:0,0,0 +k1,2204:32583029,34362163:12674135 +g1,2204:32583029,34362163 +) +] +) +g1,2205:32583029,34438184 +g1,2205:6630773,34438184 +g1,2205:6630773,34438184 +g1,2205:32583029,34438184 +g1,2205:32583029,34438184 +) +h1,2205:6630773,34634792:0,0,0 +(1,2209:6630773,35790852:25952256,513147,134348 +h1,2208:6630773,35790852:983040,0,0 +k1,2208:9011415,35790852:200915 +k1,2208:10914299,35790852:200914 +k1,2208:13263484,35790852:200915 +k1,2208:14455959,35790852:200915 +k1,2208:15723144,35790852:200914 +k1,2208:17245920,35790852:200915 +k1,2208:18106126,35790852:200914 +k1,2208:19326126,35790852:200915 +k1,2208:21566521,35790852:200915 +k1,2208:23147623,35790852:200914 +k1,2208:24340098,35790852:200915 +k1,2208:28359796,35790852:200915 +k1,2208:30073936,35790852:200914 +k1,2208:30926279,35790852:200915 +k1,2208:32583029,35790852:0 +) +(1,2209:6630773,36632340:25952256,505283,126483 +k1,2208:7900923,36632340:251065 +k1,2208:11894094,36632340:251065 +k1,2208:12963048,36632340:251065 +k1,2208:14384586,36632340:251065 +k1,2208:15739933,36632340:251065 +k1,2208:17015981,36632340:251065 +k1,2208:18965084,36632340:251065 +(1,2208:18965084,36632340:0,452978,115847 +r1,2208:19323350,36632340:358266,568825,115847 +k1,2208:18965084,36632340:-358266 +) +(1,2208:18965084,36632340:358266,452978,115847 +k1,2208:18965084,36632340:3277 +h1,2208:19320073,36632340:0,411205,112570 +) +k1,2208:19574415,36632340:251065 +k1,2208:20356977,36632340:251065 +k1,2208:22958163,36632340:251065 +k1,2208:25403373,36632340:251065 +k1,2208:28959419,36632340:251065 +k1,2208:30314766,36632340:251065 +k1,2208:31313597,36632340:251065 +k1,2209:32583029,36632340:0 +) +(1,2209:6630773,37473828:25952256,513147,134348 +k1,2208:9647832,37473828:263892 +k1,2208:11647116,37473828:263891 +k1,2208:14346326,37473828:263892 +k1,2208:18354289,37473828:263891 +k1,2208:20450568,37473828:263892 +k1,2208:21706019,37473828:263891 +k1,2208:24201412,37473828:263892 +k1,2208:25124595,37473828:263891 +k1,2208:27201213,37473828:263892 +k1,2208:28656549,37473828:263891 +k1,2208:30318324,37473828:263892 +k1,2208:31450567,37473828:263891 +k1,2208:32583029,37473828:0 +) +(1,2209:6630773,38315316:25952256,513147,134348 +k1,2208:8465985,38315316:174530 +k1,2208:9869316,38315316:174531 +k1,2208:11580010,38315316:174530 +k1,2208:13037736,38315316:174531 +k1,2208:14380773,38315316:174530 +h1,2208:14587867,38315316:0,0,0 +k1,2208:15759856,38315316:174531 +k1,2208:17125831,38315316:174530 +k1,2208:18313548,38315316:174530 +h1,2208:18520642,38315316:0,0,0 +k1,2208:19866301,38315316:174531 +h1,2208:19866301,38315316:0,0,0 +k1,2208:20831195,38315316:174530 +k1,2208:22024811,38315316:174531 +k1,2208:24334504,38315316:174530 +k1,2208:26005222,38315316:174531 +k1,2208:27127403,38315316:174530 +k1,2208:27657794,38315316:174531 +k1,2208:30926279,38315316:174530 +k1,2208:32583029,38315316:0 +) +(1,2209:6630773,39156804:25952256,513147,134348 +k1,2208:8823648,39156804:182886 +k1,2208:9362395,39156804:182887 +k1,2208:11411091,39156804:182886 +k1,2208:12785423,39156804:182887 +h1,2208:12785423,39156804:0,0,0 +k1,2208:13758673,39156804:182886 +k1,2208:14960645,39156804:182887 +k1,2208:17278694,39156804:182886 +k1,2208:18957767,39156804:182886 +k1,2208:20088305,39156804:182887 +k1,2208:20627051,39156804:182886 +k1,2208:22682957,39156804:182887 +k1,2208:25984701,39156804:182886 +h1,2208:25984701,39156804:0,0,0 +k1,2208:26736440,39156804:182887 +k1,2208:27872875,39156804:182886 +k1,2208:29341578,39156804:182887 +k1,2208:31185146,39156804:182886 +k1,2208:32583029,39156804:0 +) +(1,2209:6630773,39998292:25952256,513147,134348 +k1,2208:7928303,39998292:278445 +k1,2208:10969092,39998292:278446 +k1,2208:14007258,39998292:278445 +k1,2208:14952859,39998292:278445 +(1,2208:14952859,39998292:0,452978,115847 +r1,2208:17421396,39998292:2468537,568825,115847 +k1,2208:14952859,39998292:-2468537 +) +(1,2208:14952859,39998292:2468537,452978,115847 +k1,2208:14952859,39998292:3277 +h1,2208:17418119,39998292:0,411205,112570 +) +k1,2208:17699842,39998292:278446 +k1,2208:19169732,39998292:278445 +(1,2208:19169732,39998292:0,452978,115847 +r1,2208:20934845,39998292:1765113,568825,115847 +k1,2208:19169732,39998292:-1765113 +) +(1,2208:19169732,39998292:1765113,452978,115847 +k1,2208:19169732,39998292:3277 +h1,2208:20931568,39998292:0,411205,112570 +) +k1,2208:21386961,39998292:278446 +k1,2208:23059357,39998292:278445 +(1,2208:23059357,39998292:0,452978,115847 +r1,2208:24824470,39998292:1765113,568825,115847 +k1,2208:23059357,39998292:-1765113 +) +(1,2208:23059357,39998292:1765113,452978,115847 +k1,2208:23059357,39998292:3277 +h1,2208:24821193,39998292:0,411205,112570 +) +k1,2208:25102915,39998292:278445 +k1,2208:29150336,39998292:278446 +k1,2208:30447866,39998292:278445 +k1,2208:32583029,39998292:0 +) +(1,2209:6630773,40839780:25952256,505283,134348 +g1,2208:10100249,40839780 +g1,2208:11490923,40839780 +(1,2208:11490923,40839780:0,452978,115847 +r1,2208:13959460,40839780:2468537,568825,115847 +k1,2208:11490923,40839780:-2468537 +) +(1,2208:11490923,40839780:2468537,452978,115847 +k1,2208:11490923,40839780:3277 +h1,2208:13956183,40839780:0,411205,112570 +) +g1,2208:14158689,40839780 +g1,2208:17643238,40839780 +g1,2208:19481522,40839780 +g1,2208:20366913,40839780 +k1,2209:32583029,40839780:9619580 +g1,2209:32583029,40839780 +) +v1,2211:6630773,41820530:0,393216,0 +(1,2226:6630773,45510161:25952256,4082847,196608 +g1,2226:6630773,45510161 +g1,2226:6630773,45510161 +g1,2226:6434165,45510161 +(1,2226:6434165,45510161:0,4082847,196608 +r1,2226:32779637,45510161:26345472,4279455,196608 +k1,2226:6434165,45510161:-26345472 +) +(1,2226:6434165,45510161:26345472,4082847,196608 +[1,2226:6630773,45510161:25952256,3886239,0 +(1,2213:6630773,42034440:25952256,410518,101187 +(1,2212:6630773,42034440:0,0,0 +g1,2212:6630773,42034440 +g1,2212:6630773,42034440 +g1,2212:6303093,42034440 +(1,2212:6303093,42034440:0,0,0 +) +g1,2212:6630773,42034440 +) +g1,2213:7263065,42034440 +g1,2213:8211503,42034440 +h1,2213:15798999,42034440:0,0,0 +k1,2213:32583029,42034440:16784030 +g1,2213:32583029,42034440 +) +(1,2214:6630773,42700618:25952256,404226,101187 +h1,2214:6630773,42700618:0,0,0 +k1,2214:6630773,42700618:0 +h1,2214:9159938,42700618:0,0,0 +k1,2214:32583030,42700618:23423092 +g1,2214:32583030,42700618 +) +(1,2218:6630773,43184736:25952256,410518,101187 +(1,2216:6630773,43184736:0,0,0 +g1,2216:6630773,43184736 +g1,2216:6630773,43184736 +g1,2216:6303093,43184736 +(1,2216:6303093,43184736:0,0,0 +) +g1,2216:6630773,43184736 +) +g1,2218:7579210,43184736 +g1,2218:8843793,43184736 +h1,2218:16431289,43184736:0,0,0 +k1,2218:32583029,43184736:16151740 +g1,2218:32583029,43184736 +) +(1,2220:6630773,44258678:25952256,404226,76021 +(1,2219:6630773,44258678:0,0,0 +g1,2219:6630773,44258678 +g1,2219:6630773,44258678 +g1,2219:6303093,44258678 +(1,2219:6303093,44258678:0,0,0 +) +g1,2219:6630773,44258678 +) +k1,2220:6630773,44258678:0 +h1,2220:8527647,44258678:0,0,0 +k1,2220:32583029,44258678:24055382 +g1,2220:32583029,44258678 +) +(1,2225:6630773,44742796:25952256,404226,6290 +(1,2222:6630773,44742796:0,0,0 +g1,2222:6630773,44742796 +g1,2222:6630773,44742796 +g1,2222:6303093,44742796 +(1,2222:6303093,44742796:0,0,0 +) +g1,2222:6630773,44742796 +) +g1,2225:7579210,44742796 +h1,2225:8527647,44742796:0,0,0 +k1,2225:32583029,44742796:24055382 +g1,2225:32583029,44742796 +) +(1,2225:6630773,45408974:25952256,410518,101187 +h1,2225:6630773,45408974:0,0,0 +g1,2225:7579210,45408974 +g1,2225:8843793,45408974 +g1,2225:11056813,45408974 +h1,2225:11372959,45408974:0,0,0 +k1,2225:32583029,45408974:21210070 +g1,2225:32583029,45408974 +) +] +) +g1,2226:32583029,45510161 +g1,2226:6630773,45510161 +g1,2226:6630773,45510161 +g1,2226:32583029,45510161 +g1,2226:32583029,45510161 +) +h1,2226:6630773,45706769:0,0,0 +] +(1,2231:32583029,45706769:0,0,0 +g1,2231:32583029,45706769 +) +) +] +(1,2231:6630773,47279633:25952256,0,0 +h1,2231:6630773,47279633:25952256,0,0 +) +] +h1,2231:4262630,4025873:0,0,0 ] -!25481 +!25480 }51 -Input:320:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:321:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:322:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:323:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:324:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:325:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:326:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:327:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:328:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:329:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:330:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!946 +Input:316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1012 {52 -[1,2288:4262630,47279633:28320399,43253760,0 -(1,2288:4262630,4025873:0,0,0 -[1,2288:-473657,4025873:25952256,0,0 -(1,2288:-473657,-710414:25952256,0,0 -h1,2288:-473657,-710414:0,0,0 -(1,2288:-473657,-710414:0,0,0 -(1,2288:-473657,-710414:0,0,0 -g1,2288:-473657,-710414 -(1,2288:-473657,-710414:65781,0,65781 -g1,2288:-407876,-710414 -[1,2288:-407876,-644633:0,0,0 +[1,2294:4262630,47279633:28320399,43253760,0 +(1,2294:4262630,4025873:0,0,0 +[1,2294:-473657,4025873:25952256,0,0 +(1,2294:-473657,-710414:25952256,0,0 +h1,2294:-473657,-710414:0,0,0 +(1,2294:-473657,-710414:0,0,0 +(1,2294:-473657,-710414:0,0,0 +g1,2294:-473657,-710414 +(1,2294:-473657,-710414:65781,0,65781 +g1,2294:-407876,-710414 +[1,2294:-407876,-644633:0,0,0 ] ) -k1,2288:-473657,-710414:-65781 +k1,2294:-473657,-710414:-65781 ) ) -k1,2288:25478599,-710414:25952256 -g1,2288:25478599,-710414 +k1,2294:25478599,-710414:25952256 +g1,2294:25478599,-710414 ) ] ) -[1,2288:6630773,47279633:25952256,43253760,0 -[1,2288:6630773,4812305:25952256,786432,0 -(1,2288:6630773,4812305:25952256,513147,134348 -(1,2288:6630773,4812305:25952256,513147,134348 -g1,2288:3078558,4812305 -[1,2288:3078558,4812305:0,0,0 -(1,2288:3078558,2439708:0,1703936,0 -k1,2288:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2288:2537886,2439708:1179648,16384,0 +[1,2294:6630773,47279633:25952256,43253760,0 +[1,2294:6630773,4812305:25952256,786432,0 +(1,2294:6630773,4812305:25952256,513147,134348 +(1,2294:6630773,4812305:25952256,513147,134348 +g1,2294:3078558,4812305 +[1,2294:3078558,4812305:0,0,0 +(1,2294:3078558,2439708:0,1703936,0 +k1,2294:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2294:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2288:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2294:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2288:3078558,4812305:0,0,0 -(1,2288:3078558,2439708:0,1703936,0 -g1,2288:29030814,2439708 -g1,2288:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2288:36151628,1915420:16384,1179648,0 +[1,2294:3078558,4812305:0,0,0 +(1,2294:3078558,2439708:0,1703936,0 +g1,2294:29030814,2439708 +g1,2294:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2294:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2288:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2294:37855564,2439708:1179648,16384,0 ) ) -k1,2288:3078556,2439708:-34777008 +k1,2294:3078556,2439708:-34777008 ) ] -[1,2288:3078558,4812305:0,0,0 -(1,2288:3078558,49800853:0,16384,2228224 -k1,2288:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2288:2537886,49800853:1179648,16384,0 +[1,2294:3078558,4812305:0,0,0 +(1,2294:3078558,49800853:0,16384,2228224 +k1,2294:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2294:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2288:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2294:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) -) -] -[1,2288:3078558,4812305:0,0,0 -(1,2288:3078558,49800853:0,16384,2228224 -g1,2288:29030814,49800853 -g1,2288:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2288:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +) +] +[1,2294:3078558,4812305:0,0,0 +(1,2294:3078558,49800853:0,16384,2228224 +g1,2294:29030814,49800853 +g1,2294:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2294:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2288:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2294:37855564,49800853:1179648,16384,0 ) ) -k1,2288:3078556,49800853:-34777008 -) -] -g1,2288:6630773,4812305 -g1,2288:6630773,4812305 -g1,2288:8017514,4812305 -g1,2288:10287681,4812305 -g1,2288:11697360,4812305 -g1,2288:13727665,4812305 -g1,2288:14542932,4812305 -g1,2288:16904194,4812305 -k1,2288:31786111,4812305:14881917 -) -) -] -[1,2288:6630773,45706769:25952256,40108032,0 -(1,2288:6630773,45706769:25952256,40108032,0 -(1,2288:6630773,45706769:0,0,0 -g1,2288:6630773,45706769 -) -[1,2288:6630773,45706769:25952256,40108032,0 -(1,2225:6630773,6254097:25952256,505283,134348 -h1,2223:6630773,6254097:983040,0,0 -k1,2223:9005275,6254097:194775 -k1,2223:11283441,6254097:194776 -k1,2223:13213610,6254097:194775 -k1,2223:15004843,6254097:194776 -k1,2223:16575219,6254097:194775 -k1,2223:17386033,6254097:194776 -k1,2223:19272948,6254097:194775 -k1,2223:22340822,6254097:194776 -k1,2223:23221759,6254097:194775 -k1,2223:25114573,6254097:194776 -k1,2223:27044741,6254097:194775 -(1,2223:27044741,6254097:0,452978,115847 -r1,2223:28809854,6254097:1765113,568825,115847 -k1,2223:27044741,6254097:-1765113 -) -(1,2223:27044741,6254097:1765113,452978,115847 -k1,2223:27044741,6254097:3277 -h1,2223:28806577,6254097:0,411205,112570 -) -k1,2223:29004630,6254097:194776 -k1,2223:29850833,6254097:194775 -k1,2223:32583029,6254097:0 -) -(1,2225:6630773,7095585:25952256,505283,134348 -k1,2223:7818941,7095585:169083 -k1,2223:10320450,7095585:169083 -k1,2223:11531555,7095585:169083 -k1,2223:14535725,7095585:169083 -k1,2223:15723893,7095585:169083 -k1,2223:18557670,7095585:169083 -k1,2223:20861915,7095585:169082 -h1,2223:21069009,7095585:0,0,0 -k1,2223:22235550,7095585:169083 -k1,2223:23508915,7095585:169083 -k1,2223:24425764,7095585:169083 -k1,2223:27919488,7095585:169083 -k1,2223:28704609,7095585:169083 -k1,2223:31069803,7095585:169083 -k1,2223:32583029,7095585:0 -) -(1,2225:6630773,7937073:25952256,513147,126483 -g1,2223:7777653,7937073 -g1,2223:11129819,7937073 -g1,2223:12596514,7937073 -g1,2223:13478628,7937073 -g1,2223:15191739,7937073 -g1,2223:16007006,7937073 -g1,2223:16562095,7937073 -g1,2223:18038621,7937073 -g1,2223:18889278,7937073 -g1,2223:20502774,7937073 -g1,2223:22341058,7937073 -g1,2223:23927684,7937073 -g1,2223:25299352,7937073 -g1,2223:26181466,7937073 -g1,2223:28030892,7937073 -g1,2223:29902600,7937073 -k1,2225:32583029,7937073:2680429 -g1,2225:32583029,7937073 -) -(1,2226:6630773,10744641:25952256,32768,229376 -(1,2226:6630773,10744641:0,32768,229376 -(1,2226:6630773,10744641:5505024,32768,229376 -r1,2226:12135797,10744641:5505024,262144,229376 -) -k1,2226:6630773,10744641:-5505024 -) -(1,2226:6630773,10744641:25952256,32768,0 -r1,2226:32583029,10744641:25952256,32768,0 -) -) -(1,2226:6630773,12348969:25952256,615776,161218 -(1,2226:6630773,12348969:1974731,582746,14155 -g1,2226:6630773,12348969 -g1,2226:8605504,12348969 -) -g1,2226:10368685,12348969 -g1,2226:13231298,12348969 -g1,2226:14941001,12348969 -g1,2226:17545664,12348969 -g1,2226:18603415,12348969 -k1,2226:32583029,12348969:11126439 -g1,2226:32583029,12348969 -) -(1,2229:6630773,13583673:25952256,513147,126483 -k1,2228:9766999,13583673:193659 -k1,2228:11435873,13583673:193659 -k1,2228:11985391,13583673:193658 -k1,2228:13902647,13583673:193659 -k1,2228:15380812,13583673:193659 -k1,2228:18276520,13583673:193659 -k1,2228:19279548,13583673:193658 -k1,2228:21021823,13583673:193659 -k1,2228:21746979,13583673:193659 -k1,2228:23978808,13583673:193659 -k1,2228:24788505,13583673:193659 -k1,2228:26794889,13583673:193658 -k1,2228:28059406,13583673:193659 -k1,2228:31015408,13583673:193659 -k1,2228:32583029,13583673:0 -) -(1,2229:6630773,14425161:25952256,513147,134348 -k1,2228:8593576,14425161:260833 -k1,2228:12200677,14425161:260833 -k1,2228:16107279,14425161:260834 -k1,2228:17019540,14425161:260833 -k1,2228:17636233,14425161:260833 -k1,2228:20408406,14425161:260833 -k1,2228:21328532,14425161:260834 -k1,2228:21945225,14425161:260833 -k1,2228:24968401,14425161:260833 -k1,2228:27011813,14425161:260833 -k1,2228:27804144,14425161:260834 -k1,2228:30514713,14425161:260833 -k1,2228:31966991,14425161:260833 -k1,2228:32583029,14425161:0 -) -(1,2229:6630773,15266649:25952256,505283,134348 -k1,2228:8494012,15266649:261539 -k1,2228:10452933,15266649:261539 -k1,2228:11502870,15266649:261539 -k1,2228:13546988,15266649:261539 -k1,2228:16379504,15266649:261539 -k1,2228:19321466,15266649:261539 -k1,2228:20976957,15266649:261540 -k1,2228:22026894,15266649:261539 -k1,2228:25211339,15266649:261539 -k1,2228:28407580,15266649:261539 -k1,2228:30323903,15266649:261539 -k1,2228:31116939,15266649:261539 -k1,2228:31734338,15266649:261539 -k1,2229:32583029,15266649:0 -) -(1,2229:6630773,16108137:25952256,513147,126483 -k1,2228:9507235,16108137:198661 -k1,2228:10990403,16108137:198662 -k1,2228:11955180,16108137:198661 -k1,2228:15023008,16108137:198662 -k1,2228:15837707,16108137:198661 -k1,2228:16392229,16108137:198662 -k1,2228:18742437,16108137:198661 -k1,2228:20590640,16108137:198662 -k1,2228:21472186,16108137:198661 -k1,2228:23931840,16108137:198662 -k1,2228:25752517,16108137:198661 -k1,2228:26698945,16108137:198662 -k1,2228:27556898,16108137:198661 -k1,2228:28774645,16108137:198662 -k1,2228:30626779,16108137:198661 -k1,2228:32583029,16108137:0 -) -(1,2229:6630773,16949625:25952256,513147,134348 -k1,2228:8579299,16949625:173811 -k1,2228:9956350,16949625:173810 -k1,2228:10661658,16949625:173811 -k1,2228:11901740,16949625:173811 -k1,2228:14788085,16949625:173810 -k1,2228:15909547,16949625:173811 -k1,2228:17580855,16949625:173810 -k1,2228:19640137,16949625:173811 -k1,2228:20918230,16949625:173811 -k1,2228:21839806,16949625:173810 -k1,2228:26512664,16949625:173811 -k1,2228:27314310,16949625:173811 -k1,2228:30025674,16949625:173810 -k1,2228:31402726,16949625:173811 -k1,2229:32583029,16949625:0 -) -(1,2229:6630773,17791113:25952256,513147,134348 -k1,2228:7927396,17791113:195618 -k1,2228:9407520,17791113:195618 -k1,2228:10471490,17791113:195618 -k1,2228:11771390,17791113:195618 -k1,2228:13973720,17791113:195618 -k1,2228:14940041,17791113:195618 -k1,2228:17268856,17791113:195618 -k1,2228:18958040,17791113:195618 -k1,2228:19839820,17791113:195618 -k1,2228:20391298,17791113:195618 -k1,2228:22738463,17791113:195618 -k1,2228:24328032,17791113:195618 -k1,2228:24879510,17791113:195618 -k1,2228:27837471,17791113:195618 -(1,2228:27837471,17791113:0,452978,115847 -r1,2228:29250872,17791113:1413401,568825,115847 -k1,2228:27837471,17791113:-1413401 -) -(1,2228:27837471,17791113:1413401,452978,115847 -k1,2228:27837471,17791113:3277 -h1,2228:29247595,17791113:0,411205,112570 -) -k1,2228:29446490,17791113:195618 -k1,2228:30293536,17791113:195618 -k1,2228:30845014,17791113:195618 -k1,2228:32583029,17791113:0 -) -(1,2229:6630773,18632601:25952256,513147,134348 -k1,2228:9154783,18632601:189618 -k1,2228:9960438,18632601:189617 -k1,2228:11416212,18632601:189618 -k1,2228:12677998,18632601:189617 -k1,2228:13735968,18632601:189618 -k1,2228:16096138,18632601:189618 -k1,2228:17378240,18632601:189617 -k1,2228:20307263,18632601:189618 -k1,2228:21148308,18632601:189617 -k1,2228:23344638,18632601:189618 -k1,2228:24304959,18632601:189618 -k1,2228:26454102,18632601:189617 -k1,2228:27303012,18632601:189618 -k1,2228:27848489,18632601:189617 -k1,2228:30800450,18632601:189618 -k1,2228:32583029,18632601:0 -) -(1,2229:6630773,19474089:25952256,513147,134348 -k1,2228:7476624,19474089:194423 -k1,2228:10863962,19474089:194424 -k1,2228:14012093,19474089:194423 -k1,2228:14865808,19474089:194423 -k1,2228:15416092,19474089:194424 -k1,2228:17762062,19474089:194423 -k1,2228:20043807,19474089:194423 -k1,2228:20921116,19474089:194424 -k1,2228:22938751,19474089:194423 -k1,2228:26253343,19474089:194423 -k1,2228:27841718,19474089:194424 -k1,2228:30104457,19474089:194423 -k1,2228:32583029,19474089:0 -) -(1,2229:6630773,20315577:25952256,505283,134348 -k1,2228:8241068,20315577:216344 -(1,2228:8241068,20315577:0,452978,115847 -r1,2228:9302757,20315577:1061689,568825,115847 -k1,2228:8241068,20315577:-1061689 -) -(1,2228:8241068,20315577:1061689,452978,115847 -k1,2228:8241068,20315577:3277 -h1,2228:9299480,20315577:0,411205,112570 -) -k1,2228:9519101,20315577:216344 -k1,2228:10727005,20315577:216344 -k1,2228:12465094,20315577:216343 -k1,2228:15682332,20315577:216344 -k1,2228:16254536,20315577:216344 -k1,2228:18540507,20315577:216344 -k1,2228:20610865,20315577:216344 -(1,2228:20610865,20315577:0,414482,115847 -r1,2228:22024266,20315577:1413401,530329,115847 -k1,2228:20610865,20315577:-1413401 -) -(1,2228:20610865,20315577:1413401,414482,115847 -k1,2228:20610865,20315577:3277 -h1,2228:22020989,20315577:0,411205,112570 -) -k1,2228:22414280,20315577:216344 -(1,2228:22414280,20315577:0,414482,115847 -r1,2228:24179393,20315577:1765113,530329,115847 -k1,2228:22414280,20315577:-1765113 -) -(1,2228:22414280,20315577:1765113,414482,115847 -k1,2228:22414280,20315577:3277 -h1,2228:24176116,20315577:0,411205,112570 -) -k1,2228:24395737,20315577:216344 -k1,2228:25294965,20315577:216343 -(1,2228:25294965,20315577:0,414482,115847 -r1,2228:26004943,20315577:709978,530329,115847 -k1,2228:25294965,20315577:-709978 -) -(1,2228:25294965,20315577:709978,414482,115847 -k1,2228:25294965,20315577:3277 -h1,2228:26001666,20315577:0,411205,112570 -) -k1,2228:26394957,20315577:216344 -k1,2228:29401169,20315577:216344 -(1,2228:29401169,20315577:0,452978,115847 -r1,2228:31517994,20315577:2116825,568825,115847 -k1,2228:29401169,20315577:-2116825 -) -(1,2228:29401169,20315577:2116825,452978,115847 -k1,2228:29401169,20315577:3277 -h1,2228:31514717,20315577:0,411205,112570 -) -k1,2228:31734338,20315577:216344 -k1,2229:32583029,20315577:0 -) -(1,2229:6630773,21157065:25952256,513147,134348 -k1,2228:8494132,21157065:158112 -k1,2228:9671329,21157065:158112 -k1,2228:11612021,21157065:158113 -k1,2228:12429425,21157065:158112 -k1,2228:13358240,21157065:158112 -k1,2228:15649549,21157065:158112 -k1,2228:16493823,21157065:158112 -k1,2228:17007796,21157065:158113 -k1,2228:20140587,21157065:158112 -k1,2228:22164509,21157065:158112 -k1,2228:23514066,21157065:158112 -(1,2228:23514066,21157065:0,459977,115847 -r1,2228:26334315,21157065:2820249,575824,115847 -k1,2228:23514066,21157065:-2820249 -) -(1,2228:23514066,21157065:2820249,459977,115847 -k1,2228:23514066,21157065:3277 -h1,2228:26331038,21157065:0,411205,112570 -) -k1,2228:26492428,21157065:158113 -k1,2228:28991486,21157065:158112 -k1,2228:30098559,21157065:158112 -k1,2228:32583029,21157065:0 -) -(1,2229:6630773,21998553:25952256,505283,134348 -g1,2228:8216088,21998553 -g1,2228:9098202,21998553 -g1,2228:11644931,21998553 -g1,2228:13800410,21998553 -g1,2228:13800410,21998553 -g1,2228:13999639,21998553 -g1,2228:13999639,21998553 -k1,2229:32583029,21998553:18583390 -g1,2229:32583029,21998553 -) -v1,2231:6630773,23189019:0,393216,0 -(1,2282:6630773,39893763:25952256,17097960,196608 -g1,2282:6630773,39893763 -g1,2282:6630773,39893763 -g1,2282:6434165,39893763 -(1,2282:6434165,39893763:0,17097960,196608 -r1,2282:32779637,39893763:26345472,17294568,196608 -k1,2282:6434165,39893763:-26345472 -) -(1,2282:6434165,39893763:26345472,17097960,196608 -[1,2282:6630773,39893763:25952256,16901352,0 -(1,2233:6630773,23380908:25952256,388497,101187 -(1,2232:6630773,23380908:0,0,0 -g1,2232:6630773,23380908 -g1,2232:6630773,23380908 -g1,2232:6303093,23380908 -(1,2232:6303093,23380908:0,0,0 -) -g1,2232:6630773,23380908 -) -g1,2233:8843793,23380908 -g1,2233:9792231,23380908 -h1,2233:10740669,23380908:0,0,0 -k1,2233:32583029,23380908:21842360 -g1,2233:32583029,23380908 -) -(1,2234:6630773,24047086:25952256,410518,107478 -h1,2234:6630773,24047086:0,0,0 -g1,2234:10740667,24047086 -g1,2234:11372959,24047086 -g1,2234:12321396,24047086 -g1,2234:16115144,24047086 -g1,2234:17063581,24047086 -g1,2234:19592747,24047086 -g1,2234:20541184,24047086 -k1,2234:20541184,24047086:1573 -h1,2234:22439631,24047086:0,0,0 -k1,2234:32583029,24047086:10143398 -g1,2234:32583029,24047086 -) -(1,2238:6630773,24778800:25952256,404226,76021 -(1,2236:6630773,24778800:0,0,0 -g1,2236:6630773,24778800 -g1,2236:6630773,24778800 -g1,2236:6303093,24778800 -(1,2236:6303093,24778800:0,0,0 -) -g1,2236:6630773,24778800 -) -g1,2238:7579210,24778800 -g1,2238:8843793,24778800 -h1,2238:11689104,24778800:0,0,0 -k1,2238:32583028,24778800:20893924 -g1,2238:32583028,24778800 -) -(1,2240:6630773,26100338:25952256,410518,101187 -(1,2239:6630773,26100338:0,0,0 -g1,2239:6630773,26100338 -g1,2239:6630773,26100338 -g1,2239:6303093,26100338 -(1,2239:6303093,26100338:0,0,0 -) -g1,2239:6630773,26100338 -) -k1,2240:6630773,26100338:0 -h1,2240:11056812,26100338:0,0,0 -k1,2240:32583028,26100338:21526216 -g1,2240:32583028,26100338 -) -(1,2244:6630773,26832052:25952256,404226,107478 -(1,2242:6630773,26832052:0,0,0 -g1,2242:6630773,26832052 -g1,2242:6630773,26832052 -g1,2242:6303093,26832052 -(1,2242:6303093,26832052:0,0,0 -) -g1,2242:6630773,26832052 -) -g1,2244:7579210,26832052 -g1,2244:8843793,26832052 -h1,2244:11689104,26832052:0,0,0 -k1,2244:32583028,26832052:20893924 -g1,2244:32583028,26832052 -) -(1,2246:6630773,28153590:25952256,410518,107478 -(1,2245:6630773,28153590:0,0,0 -g1,2245:6630773,28153590 -g1,2245:6630773,28153590 -g1,2245:6303093,28153590 -(1,2245:6303093,28153590:0,0,0 -) -g1,2245:6630773,28153590 -) -k1,2246:6630773,28153590:0 -g1,2246:12637541,28153590 -g1,2246:13269833,28153590 -g1,2246:14218270,28153590 -g1,2246:18012018,28153590 -g1,2246:18960455,28153590 -g1,2246:21489621,28153590 -g1,2246:22438058,28153590 -k1,2246:22438058,28153590:1573 -h1,2246:24336505,28153590:0,0,0 -k1,2246:32583029,28153590:8246524 -g1,2246:32583029,28153590 -) -(1,2250:6630773,28885304:25952256,404226,76021 -(1,2248:6630773,28885304:0,0,0 -g1,2248:6630773,28885304 -g1,2248:6630773,28885304 -g1,2248:6303093,28885304 -(1,2248:6303093,28885304:0,0,0 -) -g1,2248:6630773,28885304 -) -g1,2250:7579210,28885304 -g1,2250:8843793,28885304 -h1,2250:10108376,28885304:0,0,0 -k1,2250:32583028,28885304:22474652 -g1,2250:32583028,28885304 -) -(1,2252:6630773,30206842:25952256,404226,101187 -(1,2251:6630773,30206842:0,0,0 -g1,2251:6630773,30206842 -g1,2251:6630773,30206842 -g1,2251:6303093,30206842 -(1,2251:6303093,30206842:0,0,0 -) -g1,2251:6630773,30206842 -) -k1,2252:6630773,30206842:0 -h1,2252:12005249,30206842:0,0,0 -k1,2252:32583029,30206842:20577780 -g1,2252:32583029,30206842 -) -(1,2256:6630773,30938556:25952256,404226,76021 -(1,2254:6630773,30938556:0,0,0 -g1,2254:6630773,30938556 -g1,2254:6630773,30938556 -g1,2254:6303093,30938556 -(1,2254:6303093,30938556:0,0,0 -) -g1,2254:6630773,30938556 -) -g1,2256:7579210,30938556 -g1,2256:8843793,30938556 -h1,2256:10424521,30938556:0,0,0 -k1,2256:32583029,30938556:22158508 -g1,2256:32583029,30938556 -) -(1,2258:6630773,32260094:25952256,404226,107478 -(1,2257:6630773,32260094:0,0,0 -g1,2257:6630773,32260094 -g1,2257:6630773,32260094 -g1,2257:6303093,32260094 -(1,2257:6303093,32260094:0,0,0 -) -g1,2257:6630773,32260094 -) -k1,2258:6630773,32260094:0 -h1,2258:12321395,32260094:0,0,0 -k1,2258:32583029,32260094:20261634 -g1,2258:32583029,32260094 -) -(1,2262:6630773,32991808:25952256,404226,76021 -(1,2260:6630773,32991808:0,0,0 -g1,2260:6630773,32991808 -g1,2260:6630773,32991808 -g1,2260:6303093,32991808 -(1,2260:6303093,32991808:0,0,0 -) -g1,2260:6630773,32991808 -) -g1,2262:7579210,32991808 -g1,2262:8843793,32991808 -h1,2262:10108376,32991808:0,0,0 -k1,2262:32583028,32991808:22474652 -g1,2262:32583028,32991808 -) -(1,2264:6630773,34313346:25952256,404226,107478 -(1,2263:6630773,34313346:0,0,0 -g1,2263:6630773,34313346 -g1,2263:6630773,34313346 -g1,2263:6303093,34313346 -(1,2263:6303093,34313346:0,0,0 -) -g1,2263:6630773,34313346 -) -k1,2264:6630773,34313346:0 -h1,2264:12321395,34313346:0,0,0 -k1,2264:32583029,34313346:20261634 -g1,2264:32583029,34313346 -) -(1,2268:6630773,35045060:25952256,404226,76021 -(1,2266:6630773,35045060:0,0,0 -g1,2266:6630773,35045060 -g1,2266:6630773,35045060 -g1,2266:6303093,35045060 -(1,2266:6303093,35045060:0,0,0 -) -g1,2266:6630773,35045060 -) -g1,2268:7579210,35045060 -g1,2268:8843793,35045060 -h1,2268:10424521,35045060:0,0,0 -k1,2268:32583029,35045060:22158508 -g1,2268:32583029,35045060 -) -(1,2270:6630773,36366598:25952256,404226,101187 -(1,2269:6630773,36366598:0,0,0 -g1,2269:6630773,36366598 -g1,2269:6630773,36366598 -g1,2269:6303093,36366598 -(1,2269:6303093,36366598:0,0,0 -) -g1,2269:6630773,36366598 -) -k1,2270:6630773,36366598:0 -h1,2270:12953686,36366598:0,0,0 -k1,2270:32583030,36366598:19629344 -g1,2270:32583030,36366598 -) -(1,2274:6630773,37098312:25952256,404226,76021 -(1,2272:6630773,37098312:0,0,0 -g1,2272:6630773,37098312 -g1,2272:6630773,37098312 -g1,2272:6303093,37098312 -(1,2272:6303093,37098312:0,0,0 -) -g1,2272:6630773,37098312 -) -g1,2274:7579210,37098312 -g1,2274:8843793,37098312 -h1,2274:10424521,37098312:0,0,0 -k1,2274:32583029,37098312:22158508 -g1,2274:32583029,37098312 -) -(1,2276:6630773,38419850:25952256,404226,101187 -(1,2275:6630773,38419850:0,0,0 -g1,2275:6630773,38419850 -g1,2275:6630773,38419850 -g1,2275:6303093,38419850 -(1,2275:6303093,38419850:0,0,0 -) -g1,2275:6630773,38419850 -) -g1,2276:8843793,38419850 -g1,2276:9792231,38419850 -h1,2276:11372959,38419850:0,0,0 -k1,2276:32583029,38419850:21210070 -g1,2276:32583029,38419850 -) -(1,2277:6630773,39086028:25952256,404226,101187 -h1,2277:6630773,39086028:0,0,0 -k1,2277:6630773,39086028:0 -h1,2277:10424521,39086028:0,0,0 -k1,2277:32583029,39086028:22158508 -g1,2277:32583029,39086028 -) -(1,2281:6630773,39817742:25952256,404226,76021 -(1,2279:6630773,39817742:0,0,0 -g1,2279:6630773,39817742 -g1,2279:6630773,39817742 -g1,2279:6303093,39817742 -(1,2279:6303093,39817742:0,0,0 -) -g1,2279:6630773,39817742 -) -g1,2281:7579210,39817742 -g1,2281:8843793,39817742 -h1,2281:12321395,39817742:0,0,0 -k1,2281:32583029,39817742:20261634 -g1,2281:32583029,39817742 -) -] -) -g1,2282:32583029,39893763 -g1,2282:6630773,39893763 -g1,2282:6630773,39893763 -g1,2282:32583029,39893763 -g1,2282:32583029,39893763 -) -h1,2282:6630773,40090371:0,0,0 -(1,2286:6630773,41456147:25952256,513147,126483 -h1,2285:6630773,41456147:983040,0,0 -k1,2285:9600264,41456147:211736 -k1,2285:11535597,41456147:211736 -k1,2285:12278830,41456147:211736 -k1,2285:12846425,41456147:211735 -k1,2285:17129257,41456147:211736 -k1,2285:20292735,41456147:211736 -k1,2285:21695916,41456147:211736 -k1,2285:24160124,41456147:211736 -k1,2285:25023288,41456147:211736 -k1,2285:26978936,41456147:211735 -k1,2285:29303553,41456147:211736 -k1,2285:31896867,41456147:211736 -k1,2285:32583029,41456147:0 -) -(1,2286:6630773,42297635:25952256,513147,134348 -k1,2285:8210588,42297635:257954 -k1,2285:9127833,42297635:257953 -k1,2285:10404872,42297635:257954 -k1,2285:11077609,42297635:257894 -k1,2285:14351530,42297635:257954 -k1,2285:15628568,42297635:257953 -k1,2285:18388031,42297635:257954 -k1,2285:19305276,42297635:257953 -k1,2285:21220635,42297635:257954 -k1,2285:22010085,42297635:257953 -k1,2285:25030382,42297635:257954 -k1,2285:25904373,42297635:257953 -k1,2285:27446833,42297635:257954 -k1,2285:28987982,42297635:257954 -k1,2285:31478747,42297635:257953 -k1,2285:32583029,42297635:0 -) -(1,2286:6630773,43139123:25952256,513147,134348 -k1,2285:7636193,43139123:257654 -k1,2285:10275425,43139123:257654 -k1,2285:11149118,43139123:257655 -k1,2285:12787616,43139123:257654 -k1,2285:14715127,43139123:257654 -k1,2285:15600616,43139123:257654 -k1,2285:19152765,43139123:257654 -k1,2285:22172763,43139123:257655 -k1,2285:22845201,43139123:257595 -k1,2285:25392683,43139123:257654 -k1,2285:26309629,43139123:257654 -k1,2285:26923144,43139123:257655 -k1,2285:28875559,43139123:257654 -k1,2285:31089463,43139123:257654 -k1,2285:32583029,43139123:0 -) -(1,2286:6630773,43980611:25952256,513147,134348 -k1,2285:7608568,43980611:291633 -(1,2285:7608568,43980611:0,452978,115847 -r1,2285:10077105,43980611:2468537,568825,115847 -k1,2285:7608568,43980611:-2468537 -) -(1,2285:7608568,43980611:2468537,452978,115847 -k1,2285:7608568,43980611:3277 -h1,2285:10073828,43980611:0,411205,112570 -) -k1,2285:10542408,43980611:291633 -k1,2285:11938323,43980611:291633 -k1,2285:14366430,43980611:291633 -k1,2285:15309491,43980611:291633 -k1,2285:18363467,43980611:291633 -(1,2285:18363467,43980611:0,452978,115847 -r1,2285:20128580,43980611:1765113,568825,115847 -k1,2285:18363467,43980611:-1765113 -) -(1,2285:18363467,43980611:1765113,452978,115847 -k1,2285:18363467,43980611:3277 -h1,2285:20125303,43980611:0,411205,112570 -) -k1,2285:21271526,43980611:291633 -k1,2285:22759846,43980611:291633 -k1,2285:24143964,43980611:291633 -k1,2285:25094889,43980611:291633 -k1,2285:27619334,43980611:291633 -k1,2285:28858618,43980611:291633 -k1,2285:32583029,43980611:0 -) -(1,2286:6630773,44822099:25952256,513147,134348 -k1,2285:9918932,44822099:262362 -k1,2285:10712792,44822099:262363 -k1,2285:14104498,44822099:262362 -k1,2285:14982899,44822099:262363 -k1,2285:17523948,44822099:262362 -h1,2285:18494536,44822099:0,0,0 -k1,2285:18756899,44822099:262363 -k1,2285:19828631,44822099:262362 -k1,2285:21589146,44822099:262362 -h1,2285:22784523,44822099:0,0,0 -k1,2285:23220556,44822099:262363 -k1,2285:24098956,44822099:262362 -k1,2285:26825473,44822099:262363 -k1,2285:27739263,44822099:262362 -k1,2285:32583029,44822099:0 -) -(1,2286:6630773,45663587:25952256,513147,134348 -k1,2285:11246442,45663587:263423 -k1,2285:12125902,45663587:263422 -k1,2285:12977838,45663587:263423 -k1,2285:15639222,45663587:263422 -(1,2285:15639222,45663587:0,452978,115847 -r1,2285:18107759,45663587:2468537,568825,115847 -k1,2285:15639222,45663587:-2468537 -) -(1,2285:15639222,45663587:2468537,452978,115847 -k1,2285:15639222,45663587:3277 -h1,2285:18104482,45663587:0,411205,112570 -) -k1,2285:18371182,45663587:263423 -k1,2285:19166101,45663587:263422 -k1,2285:20942750,45663587:263423 -k1,2285:21857600,45663587:263422 -k1,2285:23937026,45663587:263423 -k1,2285:25219533,45663587:263422 -k1,2285:27038125,45663587:263423 -k1,2285:27960839,45663587:263422 -k1,2285:28994965,45663587:263423 -k1,2285:31391584,45663587:263422 -k1,2285:32583029,45663587:0 -) -] -(1,2288:32583029,45706769:0,0,0 -g1,2288:32583029,45706769 -) -) -] -(1,2288:6630773,47279633:25952256,0,0 -h1,2288:6630773,47279633:25952256,0,0 -) -] -h1,2288:4262630,4025873:0,0,0 -] -!24274 +k1,2294:3078556,49800853:-34777008 +) +] +g1,2294:6630773,4812305 +g1,2294:6630773,4812305 +g1,2294:8017514,4812305 +g1,2294:10287681,4812305 +g1,2294:11697360,4812305 +g1,2294:13727665,4812305 +g1,2294:14542932,4812305 +g1,2294:16904194,4812305 +k1,2294:31786111,4812305:14881917 +) +) +] +[1,2294:6630773,45706769:25952256,40108032,0 +(1,2294:6630773,45706769:25952256,40108032,0 +(1,2294:6630773,45706769:0,0,0 +g1,2294:6630773,45706769 +) +[1,2294:6630773,45706769:25952256,40108032,0 +(1,2231:6630773,6254097:25952256,505283,134348 +h1,2229:6630773,6254097:983040,0,0 +k1,2229:9005275,6254097:194775 +k1,2229:11283441,6254097:194776 +k1,2229:13213610,6254097:194775 +k1,2229:15004843,6254097:194776 +k1,2229:16575219,6254097:194775 +k1,2229:17386033,6254097:194776 +k1,2229:19272948,6254097:194775 +k1,2229:22340822,6254097:194776 +k1,2229:23221759,6254097:194775 +k1,2229:25114573,6254097:194776 +k1,2229:27044741,6254097:194775 +(1,2229:27044741,6254097:0,452978,115847 +r1,2229:28809854,6254097:1765113,568825,115847 +k1,2229:27044741,6254097:-1765113 +) +(1,2229:27044741,6254097:1765113,452978,115847 +k1,2229:27044741,6254097:3277 +h1,2229:28806577,6254097:0,411205,112570 +) +k1,2229:29004630,6254097:194776 +k1,2229:29850833,6254097:194775 +k1,2229:32583029,6254097:0 +) +(1,2231:6630773,7095585:25952256,505283,134348 +k1,2229:7818941,7095585:169083 +k1,2229:10320450,7095585:169083 +k1,2229:11531555,7095585:169083 +k1,2229:14535725,7095585:169083 +k1,2229:15723893,7095585:169083 +k1,2229:18557670,7095585:169083 +k1,2229:20861915,7095585:169082 +h1,2229:21069009,7095585:0,0,0 +k1,2229:22235550,7095585:169083 +k1,2229:23508915,7095585:169083 +k1,2229:24425764,7095585:169083 +k1,2229:27919488,7095585:169083 +k1,2229:28704609,7095585:169083 +k1,2229:31069803,7095585:169083 +k1,2229:32583029,7095585:0 +) +(1,2231:6630773,7937073:25952256,513147,126483 +g1,2229:7777653,7937073 +g1,2229:11129819,7937073 +g1,2229:12596514,7937073 +g1,2229:13478628,7937073 +g1,2229:15191739,7937073 +g1,2229:16007006,7937073 +g1,2229:16562095,7937073 +g1,2229:18038621,7937073 +g1,2229:18889278,7937073 +g1,2229:20502774,7937073 +g1,2229:22341058,7937073 +g1,2229:23927684,7937073 +g1,2229:25299352,7937073 +g1,2229:26181466,7937073 +g1,2229:28030892,7937073 +g1,2229:29902600,7937073 +k1,2231:32583029,7937073:2680429 +g1,2231:32583029,7937073 +) +(1,2232:6630773,10744641:25952256,32768,229376 +(1,2232:6630773,10744641:0,32768,229376 +(1,2232:6630773,10744641:5505024,32768,229376 +r1,2232:12135797,10744641:5505024,262144,229376 +) +k1,2232:6630773,10744641:-5505024 +) +(1,2232:6630773,10744641:25952256,32768,0 +r1,2232:32583029,10744641:25952256,32768,0 +) +) +(1,2232:6630773,12348969:25952256,615776,161218 +(1,2232:6630773,12348969:1974731,582746,14155 +g1,2232:6630773,12348969 +g1,2232:8605504,12348969 +) +g1,2232:10368685,12348969 +g1,2232:13231298,12348969 +g1,2232:14941001,12348969 +g1,2232:17545664,12348969 +g1,2232:18603415,12348969 +k1,2232:32583029,12348969:11126439 +g1,2232:32583029,12348969 +) +(1,2235:6630773,13583673:25952256,513147,126483 +k1,2234:9766999,13583673:193659 +k1,2234:11435873,13583673:193659 +k1,2234:11985391,13583673:193658 +k1,2234:13902647,13583673:193659 +k1,2234:15380812,13583673:193659 +k1,2234:18276520,13583673:193659 +k1,2234:19279548,13583673:193658 +k1,2234:21021823,13583673:193659 +k1,2234:21746979,13583673:193659 +k1,2234:23978808,13583673:193659 +k1,2234:24788505,13583673:193659 +k1,2234:26794889,13583673:193658 +k1,2234:28059406,13583673:193659 +k1,2234:31015408,13583673:193659 +k1,2234:32583029,13583673:0 +) +(1,2235:6630773,14425161:25952256,513147,134348 +k1,2234:8593576,14425161:260833 +k1,2234:12200677,14425161:260833 +k1,2234:16107279,14425161:260834 +k1,2234:17019540,14425161:260833 +k1,2234:17636233,14425161:260833 +k1,2234:20408406,14425161:260833 +k1,2234:21328532,14425161:260834 +k1,2234:21945225,14425161:260833 +k1,2234:24968401,14425161:260833 +k1,2234:27011813,14425161:260833 +k1,2234:27804144,14425161:260834 +k1,2234:30514713,14425161:260833 +k1,2234:31966991,14425161:260833 +k1,2234:32583029,14425161:0 +) +(1,2235:6630773,15266649:25952256,505283,134348 +k1,2234:8494012,15266649:261539 +k1,2234:10452933,15266649:261539 +k1,2234:11502870,15266649:261539 +k1,2234:13546988,15266649:261539 +k1,2234:16379504,15266649:261539 +k1,2234:19321466,15266649:261539 +k1,2234:20976957,15266649:261540 +k1,2234:22026894,15266649:261539 +k1,2234:25211339,15266649:261539 +k1,2234:28407580,15266649:261539 +k1,2234:30323903,15266649:261539 +k1,2234:31116939,15266649:261539 +k1,2234:31734338,15266649:261539 +k1,2235:32583029,15266649:0 +) +(1,2235:6630773,16108137:25952256,513147,126483 +k1,2234:9507235,16108137:198661 +k1,2234:10990403,16108137:198662 +k1,2234:11955180,16108137:198661 +k1,2234:15023008,16108137:198662 +k1,2234:15837707,16108137:198661 +k1,2234:16392229,16108137:198662 +k1,2234:18742437,16108137:198661 +k1,2234:20590640,16108137:198662 +k1,2234:21472186,16108137:198661 +k1,2234:23931840,16108137:198662 +k1,2234:25752517,16108137:198661 +k1,2234:26698945,16108137:198662 +k1,2234:27556898,16108137:198661 +k1,2234:28774645,16108137:198662 +k1,2234:30626779,16108137:198661 +k1,2234:32583029,16108137:0 +) +(1,2235:6630773,16949625:25952256,513147,134348 +k1,2234:8683461,16949625:277973 +k1,2234:10164675,16949625:277973 +k1,2234:10974146,16949625:277974 +k1,2234:12318390,16949625:277973 +k1,2234:15308898,16949625:277973 +k1,2234:16534522,16949625:277973 +k1,2234:18309994,16949625:277974 +k1,2234:20473438,16949625:277973 +k1,2234:21855693,16949625:277973 +k1,2234:22881432,16949625:277973 +k1,2234:27658453,16949625:277974 +k1,2234:28564261,16949625:277973 +k1,2234:31379788,16949625:277973 +k1,2234:32583029,16949625:0 +) +(1,2235:6630773,17791113:25952256,513147,134348 +k1,2234:8955102,17791113:256013 +k1,2234:10495621,17791113:256013 +k1,2234:11619986,17791113:256013 +k1,2234:12980282,17791113:256014 +k1,2234:15243007,17791113:256013 +k1,2234:16269723,17791113:256013 +k1,2234:18658933,17791113:256013 +k1,2234:20408512,17791113:256013 +k1,2234:21350687,17791113:256013 +k1,2234:21962560,17791113:256013 +k1,2234:24370120,17791113:256013 +k1,2234:26020085,17791113:256014 +k1,2234:26631958,17791113:256013 +k1,2234:29650314,17791113:256013 +(1,2234:29650314,17791113:0,452978,115847 +r1,2234:31063715,17791113:1413401,568825,115847 +k1,2234:29650314,17791113:-1413401 +) +(1,2234:29650314,17791113:1413401,452978,115847 +k1,2234:29650314,17791113:3277 +h1,2234:31060438,17791113:0,411205,112570 +) +k1,2234:31319728,17791113:256013 +k1,2234:32227169,17791113:256013 +k1,2234:32583029,17791113:0 +) +(1,2235:6630773,18632601:25952256,513147,134348 +k1,2234:8561377,18632601:192589 +k1,2234:11088357,18632601:192588 +k1,2234:11896984,18632601:192589 +k1,2234:13355728,18632601:192588 +k1,2234:14620486,18632601:192589 +k1,2234:15681426,18632601:192588 +k1,2234:18044567,18632601:192589 +k1,2234:19329640,18632601:192588 +k1,2234:22261634,18632601:192589 +k1,2234:23105650,18632601:192588 +k1,2234:25304951,18632601:192589 +k1,2234:26268242,18632601:192588 +k1,2234:28420357,18632601:192589 +k1,2234:29272237,18632601:192588 +k1,2234:29820686,18632601:192589 +k1,2234:32583029,18632601:0 +) +(1,2235:6630773,19474089:25952256,513147,126483 +k1,2234:8665775,19474089:252423 +k1,2234:9569626,19474089:252423 +k1,2234:13014962,19474089:252422 +k1,2234:16221093,19474089:252423 +k1,2234:17132808,19474089:252423 +k1,2234:17741091,19474089:252423 +k1,2234:20145060,19474089:252422 +k1,2234:22484805,19474089:252423 +k1,2234:23420113,19474089:252423 +k1,2234:25495748,19474089:252423 +k1,2234:28868339,19474089:252422 +k1,2234:30514713,19474089:252423 +k1,2234:32583029,19474089:0 +) +(1,2235:6630773,20315577:25952256,505283,134348 +k1,2234:9379788,20315577:270443 +k1,2234:11044182,20315577:270443 +(1,2234:11044182,20315577:0,452978,115847 +r1,2234:12105871,20315577:1061689,568825,115847 +k1,2234:11044182,20315577:-1061689 +) +(1,2234:11044182,20315577:1061689,452978,115847 +k1,2234:11044182,20315577:3277 +h1,2234:12102594,20315577:0,411205,112570 +) +k1,2234:12376314,20315577:270443 +k1,2234:13638317,20315577:270443 +k1,2234:15430506,20315577:270443 +k1,2234:18701843,20315577:270443 +k1,2234:19328145,20315577:270442 +k1,2234:21668215,20315577:270443 +k1,2234:23792672,20315577:270443 +(1,2234:23792672,20315577:0,414482,115847 +r1,2234:25206073,20315577:1413401,530329,115847 +k1,2234:23792672,20315577:-1413401 +) +(1,2234:23792672,20315577:1413401,414482,115847 +k1,2234:23792672,20315577:3277 +h1,2234:25202796,20315577:0,411205,112570 +) +k1,2234:25650186,20315577:270443 +(1,2234:25650186,20315577:0,414482,115847 +r1,2234:27415299,20315577:1765113,530329,115847 +k1,2234:25650186,20315577:-1765113 +) +(1,2234:25650186,20315577:1765113,414482,115847 +k1,2234:25650186,20315577:3277 +h1,2234:27412022,20315577:0,411205,112570 +) +k1,2234:27685742,20315577:270443 +k1,2234:28639070,20315577:270443 +(1,2234:28639070,20315577:0,414482,115847 +r1,2234:29349048,20315577:709978,530329,115847 +k1,2234:28639070,20315577:-709978 +) +(1,2234:28639070,20315577:709978,414482,115847 +k1,2234:28639070,20315577:3277 +h1,2234:29345771,20315577:0,411205,112570 +) +k1,2234:29793161,20315577:270443 +k1,2235:32583029,20315577:0 +) +(1,2235:6630773,21157065:25952256,513147,134348 +(1,2234:6630773,21157065:0,452978,115847 +r1,2234:8747598,21157065:2116825,568825,115847 +k1,2234:6630773,21157065:-2116825 +) +(1,2234:6630773,21157065:2116825,452978,115847 +k1,2234:6630773,21157065:3277 +h1,2234:8744321,21157065:0,411205,112570 +) +k1,2234:8970250,21157065:222652 +k1,2234:11533848,21157065:222652 +k1,2234:12775585,21157065:222652 +k1,2234:14780817,21157065:222653 +k1,2234:15662761,21157065:222652 +k1,2234:16656116,21157065:222652 +k1,2234:19011965,21157065:222652 +k1,2234:19920779,21157065:222652 +k1,2234:20499291,21157065:222652 +k1,2234:23696623,21157065:222653 +k1,2234:25785085,21157065:222652 +k1,2234:27199182,21157065:222652 +(1,2234:27199182,21157065:0,459977,115847 +r1,2234:30019431,21157065:2820249,575824,115847 +k1,2234:27199182,21157065:-2820249 +) +(1,2234:27199182,21157065:2820249,459977,115847 +k1,2234:27199182,21157065:3277 +h1,2234:30016154,21157065:0,411205,112570 +) +k1,2234:30242083,21157065:222652 +k1,2234:32583029,21157065:0 +) +(1,2235:6630773,21998553:25952256,505283,134348 +g1,2234:7778963,21998553 +g1,2234:10462662,21998553 +g1,2234:12047977,21998553 +g1,2234:12930091,21998553 +g1,2234:15476820,21998553 +g1,2234:17632299,21998553 +g1,2234:17632299,21998553 +g1,2234:17831528,21998553 +g1,2234:17831528,21998553 +k1,2235:32583029,21998553:14751501 +g1,2235:32583029,21998553 +) +v1,2237:6630773,23189019:0,393216,0 +(1,2288:6630773,39893763:25952256,17097960,196608 +g1,2288:6630773,39893763 +g1,2288:6630773,39893763 +g1,2288:6434165,39893763 +(1,2288:6434165,39893763:0,17097960,196608 +r1,2288:32779637,39893763:26345472,17294568,196608 +k1,2288:6434165,39893763:-26345472 +) +(1,2288:6434165,39893763:26345472,17097960,196608 +[1,2288:6630773,39893763:25952256,16901352,0 +(1,2239:6630773,23380908:25952256,388497,101187 +(1,2238:6630773,23380908:0,0,0 +g1,2238:6630773,23380908 +g1,2238:6630773,23380908 +g1,2238:6303093,23380908 +(1,2238:6303093,23380908:0,0,0 +) +g1,2238:6630773,23380908 +) +g1,2239:8843793,23380908 +g1,2239:9792231,23380908 +h1,2239:10740669,23380908:0,0,0 +k1,2239:32583029,23380908:21842360 +g1,2239:32583029,23380908 +) +(1,2240:6630773,24047086:25952256,410518,107478 +h1,2240:6630773,24047086:0,0,0 +g1,2240:10740667,24047086 +g1,2240:11372959,24047086 +g1,2240:12321396,24047086 +g1,2240:16115144,24047086 +g1,2240:17063581,24047086 +g1,2240:19592747,24047086 +g1,2240:20541184,24047086 +k1,2240:20541184,24047086:1573 +h1,2240:22439631,24047086:0,0,0 +k1,2240:32583029,24047086:10143398 +g1,2240:32583029,24047086 +) +(1,2244:6630773,24778800:25952256,404226,76021 +(1,2242:6630773,24778800:0,0,0 +g1,2242:6630773,24778800 +g1,2242:6630773,24778800 +g1,2242:6303093,24778800 +(1,2242:6303093,24778800:0,0,0 +) +g1,2242:6630773,24778800 +) +g1,2244:7579210,24778800 +g1,2244:8843793,24778800 +h1,2244:11689104,24778800:0,0,0 +k1,2244:32583028,24778800:20893924 +g1,2244:32583028,24778800 +) +(1,2246:6630773,26100338:25952256,410518,101187 +(1,2245:6630773,26100338:0,0,0 +g1,2245:6630773,26100338 +g1,2245:6630773,26100338 +g1,2245:6303093,26100338 +(1,2245:6303093,26100338:0,0,0 +) +g1,2245:6630773,26100338 +) +k1,2246:6630773,26100338:0 +h1,2246:11056812,26100338:0,0,0 +k1,2246:32583028,26100338:21526216 +g1,2246:32583028,26100338 +) +(1,2250:6630773,26832052:25952256,404226,107478 +(1,2248:6630773,26832052:0,0,0 +g1,2248:6630773,26832052 +g1,2248:6630773,26832052 +g1,2248:6303093,26832052 +(1,2248:6303093,26832052:0,0,0 +) +g1,2248:6630773,26832052 +) +g1,2250:7579210,26832052 +g1,2250:8843793,26832052 +h1,2250:11689104,26832052:0,0,0 +k1,2250:32583028,26832052:20893924 +g1,2250:32583028,26832052 +) +(1,2252:6630773,28153590:25952256,410518,107478 +(1,2251:6630773,28153590:0,0,0 +g1,2251:6630773,28153590 +g1,2251:6630773,28153590 +g1,2251:6303093,28153590 +(1,2251:6303093,28153590:0,0,0 +) +g1,2251:6630773,28153590 +) +k1,2252:6630773,28153590:0 +g1,2252:12637541,28153590 +g1,2252:13269833,28153590 +g1,2252:14218270,28153590 +g1,2252:18012018,28153590 +g1,2252:18960455,28153590 +g1,2252:21489621,28153590 +g1,2252:22438058,28153590 +k1,2252:22438058,28153590:1573 +h1,2252:24336505,28153590:0,0,0 +k1,2252:32583029,28153590:8246524 +g1,2252:32583029,28153590 +) +(1,2256:6630773,28885304:25952256,404226,76021 +(1,2254:6630773,28885304:0,0,0 +g1,2254:6630773,28885304 +g1,2254:6630773,28885304 +g1,2254:6303093,28885304 +(1,2254:6303093,28885304:0,0,0 +) +g1,2254:6630773,28885304 +) +g1,2256:7579210,28885304 +g1,2256:8843793,28885304 +h1,2256:10108376,28885304:0,0,0 +k1,2256:32583028,28885304:22474652 +g1,2256:32583028,28885304 +) +(1,2258:6630773,30206842:25952256,404226,101187 +(1,2257:6630773,30206842:0,0,0 +g1,2257:6630773,30206842 +g1,2257:6630773,30206842 +g1,2257:6303093,30206842 +(1,2257:6303093,30206842:0,0,0 +) +g1,2257:6630773,30206842 +) +k1,2258:6630773,30206842:0 +h1,2258:12005249,30206842:0,0,0 +k1,2258:32583029,30206842:20577780 +g1,2258:32583029,30206842 +) +(1,2262:6630773,30938556:25952256,404226,76021 +(1,2260:6630773,30938556:0,0,0 +g1,2260:6630773,30938556 +g1,2260:6630773,30938556 +g1,2260:6303093,30938556 +(1,2260:6303093,30938556:0,0,0 +) +g1,2260:6630773,30938556 +) +g1,2262:7579210,30938556 +g1,2262:8843793,30938556 +h1,2262:10424521,30938556:0,0,0 +k1,2262:32583029,30938556:22158508 +g1,2262:32583029,30938556 +) +(1,2264:6630773,32260094:25952256,404226,107478 +(1,2263:6630773,32260094:0,0,0 +g1,2263:6630773,32260094 +g1,2263:6630773,32260094 +g1,2263:6303093,32260094 +(1,2263:6303093,32260094:0,0,0 +) +g1,2263:6630773,32260094 +) +k1,2264:6630773,32260094:0 +h1,2264:12321395,32260094:0,0,0 +k1,2264:32583029,32260094:20261634 +g1,2264:32583029,32260094 +) +(1,2268:6630773,32991808:25952256,404226,76021 +(1,2266:6630773,32991808:0,0,0 +g1,2266:6630773,32991808 +g1,2266:6630773,32991808 +g1,2266:6303093,32991808 +(1,2266:6303093,32991808:0,0,0 +) +g1,2266:6630773,32991808 +) +g1,2268:7579210,32991808 +g1,2268:8843793,32991808 +h1,2268:10108376,32991808:0,0,0 +k1,2268:32583028,32991808:22474652 +g1,2268:32583028,32991808 +) +(1,2270:6630773,34313346:25952256,404226,107478 +(1,2269:6630773,34313346:0,0,0 +g1,2269:6630773,34313346 +g1,2269:6630773,34313346 +g1,2269:6303093,34313346 +(1,2269:6303093,34313346:0,0,0 +) +g1,2269:6630773,34313346 +) +k1,2270:6630773,34313346:0 +h1,2270:12321395,34313346:0,0,0 +k1,2270:32583029,34313346:20261634 +g1,2270:32583029,34313346 +) +(1,2274:6630773,35045060:25952256,404226,76021 +(1,2272:6630773,35045060:0,0,0 +g1,2272:6630773,35045060 +g1,2272:6630773,35045060 +g1,2272:6303093,35045060 +(1,2272:6303093,35045060:0,0,0 +) +g1,2272:6630773,35045060 +) +g1,2274:7579210,35045060 +g1,2274:8843793,35045060 +h1,2274:10424521,35045060:0,0,0 +k1,2274:32583029,35045060:22158508 +g1,2274:32583029,35045060 +) +(1,2276:6630773,36366598:25952256,404226,101187 +(1,2275:6630773,36366598:0,0,0 +g1,2275:6630773,36366598 +g1,2275:6630773,36366598 +g1,2275:6303093,36366598 +(1,2275:6303093,36366598:0,0,0 +) +g1,2275:6630773,36366598 +) +k1,2276:6630773,36366598:0 +h1,2276:12953686,36366598:0,0,0 +k1,2276:32583030,36366598:19629344 +g1,2276:32583030,36366598 +) +(1,2280:6630773,37098312:25952256,404226,76021 +(1,2278:6630773,37098312:0,0,0 +g1,2278:6630773,37098312 +g1,2278:6630773,37098312 +g1,2278:6303093,37098312 +(1,2278:6303093,37098312:0,0,0 +) +g1,2278:6630773,37098312 +) +g1,2280:7579210,37098312 +g1,2280:8843793,37098312 +h1,2280:10424521,37098312:0,0,0 +k1,2280:32583029,37098312:22158508 +g1,2280:32583029,37098312 +) +(1,2282:6630773,38419850:25952256,404226,101187 +(1,2281:6630773,38419850:0,0,0 +g1,2281:6630773,38419850 +g1,2281:6630773,38419850 +g1,2281:6303093,38419850 +(1,2281:6303093,38419850:0,0,0 +) +g1,2281:6630773,38419850 +) +g1,2282:8843793,38419850 +g1,2282:9792231,38419850 +h1,2282:11372959,38419850:0,0,0 +k1,2282:32583029,38419850:21210070 +g1,2282:32583029,38419850 +) +(1,2283:6630773,39086028:25952256,404226,101187 +h1,2283:6630773,39086028:0,0,0 +k1,2283:6630773,39086028:0 +h1,2283:10424521,39086028:0,0,0 +k1,2283:32583029,39086028:22158508 +g1,2283:32583029,39086028 +) +(1,2287:6630773,39817742:25952256,404226,76021 +(1,2285:6630773,39817742:0,0,0 +g1,2285:6630773,39817742 +g1,2285:6630773,39817742 +g1,2285:6303093,39817742 +(1,2285:6303093,39817742:0,0,0 +) +g1,2285:6630773,39817742 +) +g1,2287:7579210,39817742 +g1,2287:8843793,39817742 +h1,2287:12321395,39817742:0,0,0 +k1,2287:32583029,39817742:20261634 +g1,2287:32583029,39817742 +) +] +) +g1,2288:32583029,39893763 +g1,2288:6630773,39893763 +g1,2288:6630773,39893763 +g1,2288:32583029,39893763 +g1,2288:32583029,39893763 +) +h1,2288:6630773,40090371:0,0,0 +(1,2292:6630773,41456147:25952256,513147,126483 +h1,2291:6630773,41456147:983040,0,0 +k1,2291:9600264,41456147:211736 +k1,2291:11535597,41456147:211736 +k1,2291:12278830,41456147:211736 +k1,2291:12846425,41456147:211735 +k1,2291:17129257,41456147:211736 +k1,2291:20292735,41456147:211736 +k1,2291:21695916,41456147:211736 +k1,2291:24160124,41456147:211736 +k1,2291:25023288,41456147:211736 +k1,2291:26978936,41456147:211735 +k1,2291:29303553,41456147:211736 +k1,2291:31896867,41456147:211736 +k1,2291:32583029,41456147:0 +) +(1,2292:6630773,42297635:25952256,513147,134348 +k1,2291:8210588,42297635:257954 +k1,2291:9127833,42297635:257953 +k1,2291:10404872,42297635:257954 +k1,2291:11077609,42297635:257894 +k1,2291:14351530,42297635:257954 +k1,2291:15628568,42297635:257953 +k1,2291:18388031,42297635:257954 +k1,2291:19305276,42297635:257953 +k1,2291:21220635,42297635:257954 +k1,2291:22010085,42297635:257953 +k1,2291:25030382,42297635:257954 +k1,2291:25904373,42297635:257953 +k1,2291:27446833,42297635:257954 +k1,2291:28987982,42297635:257954 +k1,2291:31478747,42297635:257953 +k1,2291:32583029,42297635:0 +) +(1,2292:6630773,43139123:25952256,513147,134348 +k1,2291:7636193,43139123:257654 +k1,2291:10275425,43139123:257654 +k1,2291:11149118,43139123:257655 +k1,2291:12787616,43139123:257654 +k1,2291:14715127,43139123:257654 +k1,2291:15600616,43139123:257654 +k1,2291:19152765,43139123:257654 +k1,2291:22172763,43139123:257655 +k1,2291:22845201,43139123:257595 +k1,2291:25392683,43139123:257654 +k1,2291:26309629,43139123:257654 +k1,2291:26923144,43139123:257655 +k1,2291:28875559,43139123:257654 +k1,2291:31089463,43139123:257654 +k1,2291:32583029,43139123:0 +) +(1,2292:6630773,43980611:25952256,513147,134348 +k1,2291:7608568,43980611:291633 +(1,2291:7608568,43980611:0,452978,115847 +r1,2291:10077105,43980611:2468537,568825,115847 +k1,2291:7608568,43980611:-2468537 +) +(1,2291:7608568,43980611:2468537,452978,115847 +k1,2291:7608568,43980611:3277 +h1,2291:10073828,43980611:0,411205,112570 +) +k1,2291:10542408,43980611:291633 +k1,2291:11938323,43980611:291633 +k1,2291:14366430,43980611:291633 +k1,2291:15309491,43980611:291633 +k1,2291:18363467,43980611:291633 +(1,2291:18363467,43980611:0,452978,115847 +r1,2291:20128580,43980611:1765113,568825,115847 +k1,2291:18363467,43980611:-1765113 +) +(1,2291:18363467,43980611:1765113,452978,115847 +k1,2291:18363467,43980611:3277 +h1,2291:20125303,43980611:0,411205,112570 +) +k1,2291:21271526,43980611:291633 +k1,2291:22759846,43980611:291633 +k1,2291:24143964,43980611:291633 +k1,2291:25094889,43980611:291633 +k1,2291:27619334,43980611:291633 +k1,2291:28858618,43980611:291633 +k1,2291:32583029,43980611:0 +) +(1,2292:6630773,44822099:25952256,513147,134348 +k1,2291:9918932,44822099:262362 +k1,2291:10712792,44822099:262363 +k1,2291:14104498,44822099:262362 +k1,2291:14982899,44822099:262363 +k1,2291:17523948,44822099:262362 +h1,2291:18494536,44822099:0,0,0 +k1,2291:18756899,44822099:262363 +k1,2291:19828631,44822099:262362 +k1,2291:21589146,44822099:262362 +h1,2291:22784523,44822099:0,0,0 +k1,2291:23220556,44822099:262363 +k1,2291:24098956,44822099:262362 +k1,2291:26825473,44822099:262363 +k1,2291:27739263,44822099:262362 +k1,2291:32583029,44822099:0 +) +(1,2292:6630773,45663587:25952256,513147,134348 +k1,2291:11246442,45663587:263423 +k1,2291:12125902,45663587:263422 +k1,2291:12977838,45663587:263423 +k1,2291:15639222,45663587:263422 +(1,2291:15639222,45663587:0,452978,115847 +r1,2291:18107759,45663587:2468537,568825,115847 +k1,2291:15639222,45663587:-2468537 +) +(1,2291:15639222,45663587:2468537,452978,115847 +k1,2291:15639222,45663587:3277 +h1,2291:18104482,45663587:0,411205,112570 +) +k1,2291:18371182,45663587:263423 +k1,2291:19166101,45663587:263422 +k1,2291:20942750,45663587:263423 +k1,2291:21857600,45663587:263422 +k1,2291:23937026,45663587:263423 +k1,2291:25219533,45663587:263422 +k1,2291:27038125,45663587:263423 +k1,2291:27960839,45663587:263422 +k1,2291:28994965,45663587:263423 +k1,2291:31391584,45663587:263422 +k1,2291:32583029,45663587:0 +) +] +(1,2294:32583029,45706769:0,0,0 +g1,2294:32583029,45706769 +) +) +] +(1,2294:6630773,47279633:25952256,0,0 +h1,2294:6630773,47279633:25952256,0,0 +) +] +h1,2294:4262630,4025873:0,0,0 +] +!24200 }52 -Input:331:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:332:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:333:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:334:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:335:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:336:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:337:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!606 +Input:327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {53 -[1,2389:4262630,47279633:28320399,43253760,0 -(1,2389:4262630,4025873:0,0,0 -[1,2389:-473657,4025873:25952256,0,0 -(1,2389:-473657,-710414:25952256,0,0 -h1,2389:-473657,-710414:0,0,0 -(1,2389:-473657,-710414:0,0,0 -(1,2389:-473657,-710414:0,0,0 -g1,2389:-473657,-710414 -(1,2389:-473657,-710414:65781,0,65781 -g1,2389:-407876,-710414 -[1,2389:-407876,-644633:0,0,0 +[1,2395:4262630,47279633:28320399,43253760,0 +(1,2395:4262630,4025873:0,0,0 +[1,2395:-473657,4025873:25952256,0,0 +(1,2395:-473657,-710414:25952256,0,0 +h1,2395:-473657,-710414:0,0,0 +(1,2395:-473657,-710414:0,0,0 +(1,2395:-473657,-710414:0,0,0 +g1,2395:-473657,-710414 +(1,2395:-473657,-710414:65781,0,65781 +g1,2395:-407876,-710414 +[1,2395:-407876,-644633:0,0,0 ] ) -k1,2389:-473657,-710414:-65781 +k1,2395:-473657,-710414:-65781 ) ) -k1,2389:25478599,-710414:25952256 -g1,2389:25478599,-710414 +k1,2395:25478599,-710414:25952256 +g1,2395:25478599,-710414 ) ] ) -[1,2389:6630773,47279633:25952256,43253760,0 -[1,2389:6630773,4812305:25952256,786432,0 -(1,2389:6630773,4812305:25952256,505283,134348 -(1,2389:6630773,4812305:25952256,505283,134348 -g1,2389:3078558,4812305 -[1,2389:3078558,4812305:0,0,0 -(1,2389:3078558,2439708:0,1703936,0 -k1,2389:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2389:2537886,2439708:1179648,16384,0 +[1,2395:6630773,47279633:25952256,43253760,0 +[1,2395:6630773,4812305:25952256,786432,0 +(1,2395:6630773,4812305:25952256,505283,134348 +(1,2395:6630773,4812305:25952256,505283,134348 +g1,2395:3078558,4812305 +[1,2395:3078558,4812305:0,0,0 +(1,2395:3078558,2439708:0,1703936,0 +k1,2395:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2395:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2389:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2395:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2389:3078558,4812305:0,0,0 -(1,2389:3078558,2439708:0,1703936,0 -g1,2389:29030814,2439708 -g1,2389:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2389:36151628,1915420:16384,1179648,0 +[1,2395:3078558,4812305:0,0,0 +(1,2395:3078558,2439708:0,1703936,0 +g1,2395:29030814,2439708 +g1,2395:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2395:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2389:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2395:37855564,2439708:1179648,16384,0 ) ) -k1,2389:3078556,2439708:-34777008 +k1,2395:3078556,2439708:-34777008 ) ] -[1,2389:3078558,4812305:0,0,0 -(1,2389:3078558,49800853:0,16384,2228224 -k1,2389:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2389:2537886,49800853:1179648,16384,0 +[1,2395:3078558,4812305:0,0,0 +(1,2395:3078558,49800853:0,16384,2228224 +k1,2395:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2395:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2389:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2395:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2389:3078558,4812305:0,0,0 -(1,2389:3078558,49800853:0,16384,2228224 -g1,2389:29030814,49800853 -g1,2389:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2389:36151628,51504789:16384,1179648,0 +[1,2395:3078558,4812305:0,0,0 +(1,2395:3078558,49800853:0,16384,2228224 +g1,2395:29030814,49800853 +g1,2395:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2395:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2389:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2395:37855564,49800853:1179648,16384,0 ) ) -k1,2389:3078556,49800853:-34777008 +k1,2395:3078556,49800853:-34777008 ) ] -g1,2389:6630773,4812305 -k1,2389:19562994,4812305:12135303 -g1,2389:20949735,4812305 -g1,2389:21598541,4812305 -g1,2389:24912696,4812305 -g1,2389:27600327,4812305 -g1,2389:29010006,4812305 +g1,2395:6630773,4812305 +k1,2395:19515153,4812305:12087462 +g1,2395:20901894,4812305 +g1,2395:21550700,4812305 +g1,2395:24864855,4812305 +g1,2395:27600327,4812305 +g1,2395:29010006,4812305 ) ) ] -[1,2389:6630773,45706769:25952256,40108032,0 -(1,2389:6630773,45706769:25952256,40108032,0 -(1,2389:6630773,45706769:0,0,0 -g1,2389:6630773,45706769 +[1,2395:6630773,45706769:25952256,40108032,0 +(1,2395:6630773,45706769:25952256,40108032,0 +(1,2395:6630773,45706769:0,0,0 +g1,2395:6630773,45706769 ) -[1,2389:6630773,45706769:25952256,40108032,0 -(1,2286:6630773,6254097:25952256,513147,134348 -k1,2285:9332748,6254097:247652 -(1,2285:9332748,6254097:0,452978,115847 -r1,2285:12856420,6254097:3523672,568825,115847 -k1,2285:9332748,6254097:-3523672 +[1,2395:6630773,45706769:25952256,40108032,0 +(1,2292:6630773,6254097:25952256,513147,134348 +k1,2291:9332748,6254097:247652 +(1,2291:9332748,6254097:0,452978,115847 +r1,2291:12856420,6254097:3523672,568825,115847 +k1,2291:9332748,6254097:-3523672 ) -(1,2285:9332748,6254097:3523672,452978,115847 -k1,2285:9332748,6254097:3277 -h1,2285:12853143,6254097:0,411205,112570 +(1,2291:9332748,6254097:3523672,452978,115847 +k1,2291:9332748,6254097:3277 +h1,2291:12853143,6254097:0,411205,112570 ) -k1,2285:13104072,6254097:247652 -k1,2285:13883221,6254097:247652 -k1,2285:15644099,6254097:247652 -k1,2285:16543179,6254097:247652 -k1,2285:17982276,6254097:247652 -k1,2285:18695889,6254097:247652 -k1,2285:19714244,6254097:247652 -k1,2285:21921422,6254097:247652 -k1,2285:24635849,6254097:247652 -k1,2285:25534929,6254097:247652 -k1,2285:26138441,6254097:247652 -k1,2285:28783400,6254097:247652 -k1,2285:30586221,6254097:247652 -k1,2285:31516758,6254097:247652 -k1,2285:32583029,6254097:0 -) -(1,2286:6630773,7095585:25952256,505283,134348 -g1,2285:10017673,7095585 -g1,2285:12901257,7095585 -g1,2285:15506968,7095585 -g1,2285:16357625,7095585 -g1,2285:17304620,7095585 -g1,2285:18957438,7095585 -k1,2286:32583029,7095585:10154804 -g1,2286:32583029,7095585 -) -v1,2288:6630773,8185039:0,393216,0 -(1,2307:6630773,13306896:25952256,5515073,196608 -g1,2307:6630773,13306896 -g1,2307:6630773,13306896 -g1,2307:6434165,13306896 -(1,2307:6434165,13306896:0,5515073,196608 -r1,2307:32779637,13306896:26345472,5711681,196608 -k1,2307:6434165,13306896:-26345472 -) -(1,2307:6434165,13306896:26345472,5515073,196608 -[1,2307:6630773,13306896:25952256,5318465,0 -(1,2290:6630773,8392657:25952256,404226,101187 -(1,2289:6630773,8392657:0,0,0 -g1,2289:6630773,8392657 -g1,2289:6630773,8392657 -g1,2289:6303093,8392657 -(1,2289:6303093,8392657:0,0,0 -) -g1,2289:6630773,8392657 -) -k1,2290:6630773,8392657:0 -h1,2290:10740666,8392657:0,0,0 -k1,2290:32583030,8392657:21842364 -g1,2290:32583030,8392657 -) -(1,2294:6630773,9124371:25952256,404226,76021 -(1,2292:6630773,9124371:0,0,0 -g1,2292:6630773,9124371 -g1,2292:6630773,9124371 -g1,2292:6303093,9124371 -(1,2292:6303093,9124371:0,0,0 -) -g1,2292:6630773,9124371 -) -g1,2294:7579210,9124371 -g1,2294:8843793,9124371 -h1,2294:12321395,9124371:0,0,0 -k1,2294:32583029,9124371:20261634 -g1,2294:32583029,9124371 -) -(1,2296:6630773,10445909:25952256,404226,101187 -(1,2295:6630773,10445909:0,0,0 -g1,2295:6630773,10445909 -g1,2295:6630773,10445909 -g1,2295:6303093,10445909 -(1,2295:6303093,10445909:0,0,0 -) -g1,2295:6630773,10445909 -) -k1,2296:6630773,10445909:0 -g1,2296:12005250,10445909 -h1,2296:15798998,10445909:0,0,0 -k1,2296:32583030,10445909:16784032 -g1,2296:32583030,10445909 -) -(1,2300:6630773,11177623:25952256,404226,76021 -(1,2298:6630773,11177623:0,0,0 -g1,2298:6630773,11177623 -g1,2298:6630773,11177623 -g1,2298:6303093,11177623 -(1,2298:6303093,11177623:0,0,0 -) -g1,2298:6630773,11177623 -) -g1,2300:7579210,11177623 -g1,2300:8843793,11177623 -h1,2300:10108376,11177623:0,0,0 -k1,2300:32583028,11177623:22474652 -g1,2300:32583028,11177623 -) -(1,2302:6630773,12499161:25952256,404226,101187 -(1,2301:6630773,12499161:0,0,0 -g1,2301:6630773,12499161 -g1,2301:6630773,12499161 -g1,2301:6303093,12499161 -(1,2301:6303093,12499161:0,0,0 -) -g1,2301:6630773,12499161 -) -k1,2302:6630773,12499161:0 -g1,2302:12005250,12499161 -h1,2302:15166707,12499161:0,0,0 -k1,2302:32583029,12499161:17416322 -g1,2302:32583029,12499161 -) -(1,2306:6630773,13230875:25952256,404226,76021 -(1,2304:6630773,13230875:0,0,0 -g1,2304:6630773,13230875 -g1,2304:6630773,13230875 -g1,2304:6303093,13230875 -(1,2304:6303093,13230875:0,0,0 -) -g1,2304:6630773,13230875 -) -g1,2306:7579210,13230875 -g1,2306:8843793,13230875 -h1,2306:10424521,13230875:0,0,0 -k1,2306:32583029,13230875:22158508 -g1,2306:32583029,13230875 -) -] -) -g1,2307:32583029,13306896 -g1,2307:6630773,13306896 -g1,2307:6630773,13306896 -g1,2307:32583029,13306896 -g1,2307:32583029,13306896 -) -h1,2307:6630773,13503504:0,0,0 -(1,2310:6630773,16734348:25952256,32768,229376 -(1,2310:6630773,16734348:0,32768,229376 -(1,2310:6630773,16734348:5505024,32768,229376 -r1,2310:12135797,16734348:5505024,262144,229376 -) -k1,2310:6630773,16734348:-5505024 -) -(1,2310:6630773,16734348:25952256,32768,0 -r1,2310:32583029,16734348:25952256,32768,0 -) -) -(1,2310:6630773,18338676:25952256,606339,151780 -(1,2310:6630773,18338676:1974731,582746,14155 -g1,2310:6630773,18338676 -g1,2310:8605504,18338676 -) -g1,2310:11298248,18338676 -k1,2310:32583029,18338676:16458448 -g1,2310:32583029,18338676 -) -(1,2313:6630773,19573380:25952256,505283,134348 -k1,2312:8046529,19573380:219069 -k1,2312:12625708,19573380:219069 -k1,2312:14230863,19573380:219069 -k1,2312:18256918,19573380:219069 -k1,2312:19467547,19573380:219069 -k1,2312:21430529,19573380:219069 -k1,2312:23871269,19573380:219069 -k1,2312:24741766,19573380:219069 -k1,2312:27030462,19573380:219069 -k1,2312:29433846,19573380:219069 -k1,2312:30550758,19573380:219069 -k1,2312:32583029,19573380:0 -) -(1,2313:6630773,20414868:25952256,513147,134348 -k1,2312:7873391,20414868:251058 -k1,2312:8810610,20414868:251057 -k1,2312:10218378,20414868:251058 -k1,2312:12425685,20414868:251057 -k1,2312:14921351,20414868:251058 -k1,2312:15932626,20414868:251057 -k1,2312:19887123,20414868:251058 -k1,2312:23163977,20414868:251057 -k1,2312:24928261,20414868:251058 -k1,2312:25830746,20414868:251057 -k1,2312:28474523,20414868:251058 -k1,2312:31015408,20414868:251057 -k1,2312:32583029,20414868:0 -) -(1,2313:6630773,21256356:25952256,609711,134348 -g1,2312:7986712,21256356 -g1,2312:9968520,21256356 -g1,2312:10819177,21256356 -g1,2312:11374266,21256356 -g1,2312:14335838,21256356 -g1,2312:15691777,21256356 -g1,2312:17366221,21256356 -g1,2312:19633766,21256356 -g1,2312:22311567,21256356 -g1,2312:23904747,21256356 -(1,2312:23904747,21256356:0,414482,115847 -r1,2312:24966436,21256356:1061689,530329,115847 -k1,2312:23904747,21256356:-1061689 -) -(1,2312:23904747,21256356:1061689,414482,115847 -k1,2312:23904747,21256356:3277 -h1,2312:24963159,21256356:0,411205,112570 -) -(1,2312:24966436,21256356:311689,609711,0 -$1,2312:24966436,21256356 -(1,2312:24966436,20981075:311689,334430,0 -) -$1,2312:25278125,21256356 -) -g1,2312:25651024,21256356 -g1,2312:25651024,21256356 -g1,2312:25850253,21256356 -g1,2312:25850253,21256356 -k1,2313:32583029,21256356:6732776 -g1,2313:32583029,21256356 -) -v1,2315:6630773,22345810:0,393216,0 -(1,2340:6630773,29520919:25952256,7568325,196608 -g1,2340:6630773,29520919 -g1,2340:6630773,29520919 -g1,2340:6434165,29520919 -(1,2340:6434165,29520919:0,7568325,196608 -r1,2340:32779637,29520919:26345472,7764933,196608 -k1,2340:6434165,29520919:-26345472 -) -(1,2340:6434165,29520919:26345472,7568325,196608 -[1,2340:6630773,29520919:25952256,7371717,0 -(1,2317:6630773,22553428:25952256,404226,76021 -(1,2316:6630773,22553428:0,0,0 -g1,2316:6630773,22553428 -g1,2316:6630773,22553428 -g1,2316:6303093,22553428 -(1,2316:6303093,22553428:0,0,0 -) -g1,2316:6630773,22553428 -) -k1,2317:6630773,22553428:0 -h1,2317:11372959,22553428:0,0,0 -k1,2317:32583029,22553428:21210070 -g1,2317:32583029,22553428 -) -(1,2321:6630773,23285142:25952256,404226,76021 -(1,2319:6630773,23285142:0,0,0 -g1,2319:6630773,23285142 -g1,2319:6630773,23285142 -g1,2319:6303093,23285142 -(1,2319:6303093,23285142:0,0,0 -) -g1,2319:6630773,23285142 -) -g1,2321:7579210,23285142 -g1,2321:8843793,23285142 -h1,2321:9792230,23285142:0,0,0 -k1,2321:32583030,23285142:22790800 -g1,2321:32583030,23285142 -) -(1,2323:6630773,24606680:25952256,404226,76021 -(1,2322:6630773,24606680:0,0,0 -g1,2322:6630773,24606680 -g1,2322:6630773,24606680 -g1,2322:6303093,24606680 -(1,2322:6303093,24606680:0,0,0 -) -g1,2322:6630773,24606680 -) -k1,2323:6630773,24606680:0 -h1,2323:11372959,24606680:0,0,0 -k1,2323:32583029,24606680:21210070 -g1,2323:32583029,24606680 -) -(1,2327:6630773,25338394:25952256,404226,76021 -(1,2325:6630773,25338394:0,0,0 -g1,2325:6630773,25338394 -g1,2325:6630773,25338394 -g1,2325:6303093,25338394 -(1,2325:6303093,25338394:0,0,0 -) -g1,2325:6630773,25338394 -) -g1,2327:7579210,25338394 -g1,2327:8843793,25338394 -h1,2327:9159939,25338394:0,0,0 -k1,2327:32583029,25338394:23423090 -g1,2327:32583029,25338394 -) -(1,2329:6630773,26659932:25952256,404226,107478 -(1,2328:6630773,26659932:0,0,0 -g1,2328:6630773,26659932 -g1,2328:6630773,26659932 -g1,2328:6303093,26659932 -(1,2328:6303093,26659932:0,0,0 -) -g1,2328:6630773,26659932 -) -k1,2329:6630773,26659932:0 -h1,2329:12321396,26659932:0,0,0 -k1,2329:32583028,26659932:20261632 -g1,2329:32583028,26659932 -) -(1,2333:6630773,27391646:25952256,404226,76021 -(1,2331:6630773,27391646:0,0,0 -g1,2331:6630773,27391646 -g1,2331:6630773,27391646 -g1,2331:6303093,27391646 -(1,2331:6303093,27391646:0,0,0 -) -g1,2331:6630773,27391646 -) -g1,2333:7579210,27391646 -g1,2333:8843793,27391646 -h1,2333:10108376,27391646:0,0,0 -k1,2333:32583028,27391646:22474652 -g1,2333:32583028,27391646 -) -(1,2335:6630773,28713184:25952256,404226,107478 -(1,2334:6630773,28713184:0,0,0 -g1,2334:6630773,28713184 -g1,2334:6630773,28713184 -g1,2334:6303093,28713184 -(1,2334:6303093,28713184:0,0,0 -) -g1,2334:6630773,28713184 -) -k1,2335:6630773,28713184:0 -h1,2335:11689105,28713184:0,0,0 -k1,2335:32583029,28713184:20893924 -g1,2335:32583029,28713184 -) -(1,2339:6630773,29444898:25952256,404226,76021 -(1,2337:6630773,29444898:0,0,0 -g1,2337:6630773,29444898 -g1,2337:6630773,29444898 -g1,2337:6303093,29444898 -(1,2337:6303093,29444898:0,0,0 -) -g1,2337:6630773,29444898 -) -g1,2339:7579210,29444898 -g1,2339:8843793,29444898 -h1,2339:9476084,29444898:0,0,0 -k1,2339:32583028,29444898:23106944 -g1,2339:32583028,29444898 -) -] -) -g1,2340:32583029,29520919 -g1,2340:6630773,29520919 -g1,2340:6630773,29520919 -g1,2340:32583029,29520919 -g1,2340:32583029,29520919 -) -h1,2340:6630773,29717527:0,0,0 -(1,2344:6630773,30982291:25952256,505283,134348 -h1,2343:6630773,30982291:983040,0,0 -g1,2343:11411624,30982291 -g1,2343:13293818,30982291 -g1,2343:15155695,30982291 -g1,2343:19671781,30982291 -g1,2343:20487048,30982291 -g1,2343:23962422,30982291 -g1,2343:25353096,30982291 -g1,2343:27621952,30982291 -k1,2344:32583029,30982291:1017120 -g1,2344:32583029,30982291 -) -v1,2346:6630773,32071745:0,393216,0 -(1,2365:6630773,37177873:25952256,5499344,196608 -g1,2365:6630773,37177873 -g1,2365:6630773,37177873 -g1,2365:6434165,37177873 -(1,2365:6434165,37177873:0,5499344,196608 -r1,2365:32779637,37177873:26345472,5695952,196608 -k1,2365:6434165,37177873:-26345472 -) -(1,2365:6434165,37177873:26345472,5499344,196608 -[1,2365:6630773,37177873:25952256,5302736,0 -(1,2348:6630773,32263634:25952256,388497,9436 -(1,2347:6630773,32263634:0,0,0 -g1,2347:6630773,32263634 -g1,2347:6630773,32263634 -g1,2347:6303093,32263634 -(1,2347:6303093,32263634:0,0,0 -) -g1,2347:6630773,32263634 -) -g1,2348:8211502,32263634 -g1,2348:8843794,32263634 -h1,2348:9476085,32263634:0,0,0 -k1,2348:32583029,32263634:23106944 -g1,2348:32583029,32263634 -) -(1,2352:6630773,32995348:25952256,404226,76021 -(1,2350:6630773,32995348:0,0,0 -g1,2350:6630773,32995348 -g1,2350:6630773,32995348 -g1,2350:6303093,32995348 -(1,2350:6303093,32995348:0,0,0 -) -g1,2350:6630773,32995348 -) -g1,2352:7579210,32995348 -g1,2352:8843793,32995348 -h1,2352:9476084,32995348:0,0,0 -k1,2352:32583028,32995348:23106944 -g1,2352:32583028,32995348 -) -(1,2354:6630773,34316886:25952256,404226,76021 -(1,2353:6630773,34316886:0,0,0 -g1,2353:6630773,34316886 -g1,2353:6630773,34316886 -g1,2353:6303093,34316886 -(1,2353:6303093,34316886:0,0,0 -) -g1,2353:6630773,34316886 -) -g1,2354:7263065,34316886 -g1,2354:8211502,34316886 -h1,2354:8527648,34316886:0,0,0 -k1,2354:32583028,34316886:24055380 -g1,2354:32583028,34316886 -) -(1,2358:6630773,35048600:25952256,404226,76021 -(1,2356:6630773,35048600:0,0,0 -g1,2356:6630773,35048600 -g1,2356:6630773,35048600 -g1,2356:6303093,35048600 -(1,2356:6303093,35048600:0,0,0 -) -g1,2356:6630773,35048600 -) -g1,2358:7579210,35048600 -g1,2358:8843793,35048600 -h1,2358:10108376,35048600:0,0,0 -k1,2358:32583028,35048600:22474652 -g1,2358:32583028,35048600 -) -(1,2360:6630773,36370138:25952256,404226,76021 -(1,2359:6630773,36370138:0,0,0 -g1,2359:6630773,36370138 -g1,2359:6630773,36370138 -g1,2359:6303093,36370138 -(1,2359:6303093,36370138:0,0,0 -) -g1,2359:6630773,36370138 -) -g1,2360:8527647,36370138 -g1,2360:9159939,36370138 -k1,2360:9159939,36370138:0 -h1,2360:10424523,36370138:0,0,0 -k1,2360:32583029,36370138:22158506 -g1,2360:32583029,36370138 -) -(1,2364:6630773,37101852:25952256,404226,76021 -(1,2362:6630773,37101852:0,0,0 -g1,2362:6630773,37101852 -g1,2362:6630773,37101852 -g1,2362:6303093,37101852 -(1,2362:6303093,37101852:0,0,0 -) -g1,2362:6630773,37101852 -) -g1,2364:7579210,37101852 -g1,2364:8843793,37101852 -g1,2364:9159939,37101852 -g1,2364:10740668,37101852 -g1,2364:11056814,37101852 -g1,2364:12637543,37101852 -g1,2364:14534417,37101852 -g1,2364:14850563,37101852 -g1,2364:16431292,37101852 -g1,2364:16747438,37101852 -h1,2364:18012021,37101852:0,0,0 -k1,2364:32583029,37101852:14571008 -g1,2364:32583029,37101852 -) -] -) -g1,2365:32583029,37177873 -g1,2365:6630773,37177873 -g1,2365:6630773,37177873 -g1,2365:32583029,37177873 -g1,2365:32583029,37177873 -) -h1,2365:6630773,37374481:0,0,0 -v1,2369:6630773,39062520:0,393216,0 -(1,2389:6630773,43861514:25952256,5192210,589824 -g1,2389:6630773,43861514 -(1,2389:6630773,43861514:25952256,5192210,589824 -(1,2389:6630773,44451338:25952256,5782034,0 -[1,2389:6630773,44451338:25952256,5782034,0 -(1,2389:6630773,44451338:25952256,5755820,0 -r1,2389:6656987,44451338:26214,5755820,0 -[1,2389:6656987,44451338:25899828,5755820,0 -(1,2389:6656987,43861514:25899828,4576172,0 -[1,2389:7246811,43861514:24720180,4576172,0 -(1,2370:7246811,40372716:24720180,1087374,134348 -k1,2369:8762218,40372716:305704 -k1,2369:10900309,40372716:305704 -k1,2369:11737510,40372716:305704 -k1,2369:13735354,40372716:305704 -k1,2369:17015082,40372716:305704 -k1,2369:17936824,40372716:305704 -k1,2369:19261613,40372716:305704 -k1,2369:23044002,40372716:305704 -k1,2369:24917327,40372716:305704 -k1,2369:28197710,40372716:305704 -k1,2369:30699525,40372716:305704 -k1,2370:31966991,40372716:0 -) -(1,2370:7246811,41214204:24720180,505283,126483 -(1,2369:7246811,41214204:0,452978,115847 -r1,2389:9715348,41214204:2468537,568825,115847 -k1,2369:7246811,41214204:-2468537 -) -(1,2369:7246811,41214204:2468537,452978,115847 -k1,2369:7246811,41214204:3277 -h1,2369:9712071,41214204:0,411205,112570 -) -k1,2369:9987121,41214204:271773 -k1,2369:11450339,41214204:271773 -(1,2369:11450339,41214204:0,452978,122846 -r1,2389:13918876,41214204:2468537,575824,122846 -k1,2369:11450339,41214204:-2468537 -) -(1,2369:11450339,41214204:2468537,452978,122846 -k1,2369:11450339,41214204:3277 -h1,2369:13915599,41214204:0,411205,112570 -) -k1,2369:14190650,41214204:271774 -k1,2369:16646738,41214204:271773 -k1,2369:18067357,41214204:271773 -k1,2369:19358215,41214204:271773 -k1,2369:22621707,41214204:271773 -k1,2369:24761911,41214204:271773 -k1,2369:26404698,41214204:271774 -k1,2369:28135302,41214204:271773 -k1,2369:29737456,41214204:271773 -k1,2370:31966991,41214204:0 -) -(1,2370:7246811,42055692:24720180,513147,134348 -k1,2369:8598012,42055692:211530 -k1,2369:9460970,42055692:211530 -k1,2369:10650953,42055692:211530 -k1,2369:11633186,42055692:211530 -k1,2369:13169854,42055692:211530 -k1,2369:14040676,42055692:211530 -k1,2369:15800822,42055692:211530 -k1,2369:18208463,42055692:211530 -k1,2369:19411553,42055692:211530 -k1,2369:22979837,42055692:211530 -k1,2369:24382812,42055692:211530 -k1,2369:27403215,42055692:211530 -k1,2369:30775546,42055692:211530 -k1,2369:31966991,42055692:0 -) -(1,2370:7246811,42897180:24720180,505283,126483 -k1,2369:9380517,42897180:248235 -k1,2369:10620311,42897180:248234 -k1,2369:12108487,42897180:248235 -k1,2369:13254564,42897180:248234 -k1,2369:14788615,42897180:248235 -k1,2369:16174554,42897180:248234 -k1,2369:19322102,42897180:248235 -k1,2369:20183098,42897180:248234 -k1,2369:21450418,42897180:248235 -k1,2369:25175337,42897180:248234 -k1,2369:28058775,42897180:248235 -(1,2369:28058775,42897180:0,452978,115847 -r1,2389:30527312,42897180:2468537,568825,115847 -k1,2369:28058775,42897180:-2468537 -) -(1,2369:28058775,42897180:2468537,452978,115847 -k1,2369:28058775,42897180:3277 -h1,2369:30524035,42897180:0,411205,112570 -) -k1,2369:30775546,42897180:248234 -k1,2370:31966991,42897180:0 -) -(1,2370:7246811,43738668:24720180,505283,122846 -(1,2369:7246811,43738668:0,452978,122846 -r1,2389:9715348,43738668:2468537,575824,122846 -k1,2369:7246811,43738668:-2468537 -) -(1,2369:7246811,43738668:2468537,452978,122846 -k1,2369:7246811,43738668:3277 -h1,2369:9712071,43738668:0,411205,112570 -) -g1,2369:9914577,43738668 -g1,2369:12298121,43738668 -g1,2369:12298121,43738668 -g1,2369:12497350,43738668 -g1,2369:12497350,43738668 -k1,2370:31966990,43738668:19469640 -g1,2370:31966990,43738668 -) -] -) -] -r1,2389:32583029,44451338:26214,5755820,0 -) -] -) -) -g1,2389:32583029,43861514 -) -(1,2312:6630773,45706769:25952256,506878,199855 -(1,2312:6630773,45706769:943720,506878,0 -k1,2312:7302650,45706769:671877 -(1,2312:7302650,45706769:271843,506878,0 -$1,2312:7302650,45706769 -(1,2312:7302650,45486545:271843,286654,0 -) -$1,2312:7574493,45706769 -) -) -(1,2312:7574493,45706769:0,435814,0 -r1,2312:7574493,45706769:0,435814,0 -) -g1,2312:9409502,45706769 -g1,2312:10327006,45706769 -g1,2312:11840102,45706769 -g1,2312:14327849,45706769 -g1,2312:14980064,45706769 -g1,2312:15954716,45706769 -g1,2312:18680489,45706769 -g1,2312:19867478,45706769 -g1,2312:20900850,45706769 -g1,2312:22714887,45706769 -g1,2312:24857128,45706769 -g1,2312:26131673,45706769 -(1,2312:26131673,45706769:0,332241,93333 -r1,2312:26982335,45706769:850662,425574,93333 -k1,2312:26131673,45706769:-850662 -) -(1,2312:26131673,45706769:850662,332241,93333 -k1,2312:26131673,45706769:3277 -h1,2312:26979058,45706769:0,328964,90056 +k1,2291:13104072,6254097:247652 +k1,2291:13883221,6254097:247652 +k1,2291:15644099,6254097:247652 +k1,2291:16543179,6254097:247652 +k1,2291:17982276,6254097:247652 +k1,2291:18695889,6254097:247652 +k1,2291:19714244,6254097:247652 +k1,2291:21921422,6254097:247652 +k1,2291:24635849,6254097:247652 +k1,2291:25534929,6254097:247652 +k1,2291:26138441,6254097:247652 +k1,2291:28783400,6254097:247652 +k1,2291:30586221,6254097:247652 +k1,2291:31516758,6254097:247652 +k1,2291:32583029,6254097:0 +) +(1,2292:6630773,7095585:25952256,505283,134348 +g1,2291:10017673,7095585 +g1,2291:12901257,7095585 +g1,2291:15506968,7095585 +g1,2291:16357625,7095585 +g1,2291:17304620,7095585 +g1,2291:18957438,7095585 +k1,2292:32583029,7095585:10154804 +g1,2292:32583029,7095585 +) +v1,2294:6630773,8200630:0,393216,0 +(1,2313:6630773,13322487:25952256,5515073,196608 +g1,2313:6630773,13322487 +g1,2313:6630773,13322487 +g1,2313:6434165,13322487 +(1,2313:6434165,13322487:0,5515073,196608 +r1,2313:32779637,13322487:26345472,5711681,196608 +k1,2313:6434165,13322487:-26345472 +) +(1,2313:6434165,13322487:26345472,5515073,196608 +[1,2313:6630773,13322487:25952256,5318465,0 +(1,2296:6630773,8408248:25952256,404226,101187 +(1,2295:6630773,8408248:0,0,0 +g1,2295:6630773,8408248 +g1,2295:6630773,8408248 +g1,2295:6303093,8408248 +(1,2295:6303093,8408248:0,0,0 +) +g1,2295:6630773,8408248 +) +k1,2296:6630773,8408248:0 +h1,2296:10740666,8408248:0,0,0 +k1,2296:32583030,8408248:21842364 +g1,2296:32583030,8408248 +) +(1,2300:6630773,9139962:25952256,404226,76021 +(1,2298:6630773,9139962:0,0,0 +g1,2298:6630773,9139962 +g1,2298:6630773,9139962 +g1,2298:6303093,9139962 +(1,2298:6303093,9139962:0,0,0 +) +g1,2298:6630773,9139962 +) +g1,2300:7579210,9139962 +g1,2300:8843793,9139962 +h1,2300:12321395,9139962:0,0,0 +k1,2300:32583029,9139962:20261634 +g1,2300:32583029,9139962 +) +(1,2302:6630773,10461500:25952256,404226,101187 +(1,2301:6630773,10461500:0,0,0 +g1,2301:6630773,10461500 +g1,2301:6630773,10461500 +g1,2301:6303093,10461500 +(1,2301:6303093,10461500:0,0,0 +) +g1,2301:6630773,10461500 +) +k1,2302:6630773,10461500:0 +g1,2302:12005250,10461500 +h1,2302:15798998,10461500:0,0,0 +k1,2302:32583030,10461500:16784032 +g1,2302:32583030,10461500 +) +(1,2306:6630773,11193214:25952256,404226,76021 +(1,2304:6630773,11193214:0,0,0 +g1,2304:6630773,11193214 +g1,2304:6630773,11193214 +g1,2304:6303093,11193214 +(1,2304:6303093,11193214:0,0,0 +) +g1,2304:6630773,11193214 +) +g1,2306:7579210,11193214 +g1,2306:8843793,11193214 +h1,2306:10108376,11193214:0,0,0 +k1,2306:32583028,11193214:22474652 +g1,2306:32583028,11193214 +) +(1,2308:6630773,12514752:25952256,404226,101187 +(1,2307:6630773,12514752:0,0,0 +g1,2307:6630773,12514752 +g1,2307:6630773,12514752 +g1,2307:6303093,12514752 +(1,2307:6303093,12514752:0,0,0 +) +g1,2307:6630773,12514752 +) +k1,2308:6630773,12514752:0 +g1,2308:12005250,12514752 +h1,2308:15166707,12514752:0,0,0 +k1,2308:32583029,12514752:17416322 +g1,2308:32583029,12514752 +) +(1,2312:6630773,13246466:25952256,404226,76021 +(1,2310:6630773,13246466:0,0,0 +g1,2310:6630773,13246466 +g1,2310:6630773,13246466 +g1,2310:6303093,13246466 +(1,2310:6303093,13246466:0,0,0 +) +g1,2310:6630773,13246466 +) +g1,2312:7579210,13246466 +g1,2312:8843793,13246466 +h1,2312:10424521,13246466:0,0,0 +k1,2312:32583029,13246466:22158508 +g1,2312:32583029,13246466 +) +] +) +g1,2313:32583029,13322487 +g1,2313:6630773,13322487 +g1,2313:6630773,13322487 +g1,2313:32583029,13322487 +g1,2313:32583029,13322487 +) +h1,2313:6630773,13519095:0,0,0 +(1,2316:6630773,16765530:25952256,32768,229376 +(1,2316:6630773,16765530:0,32768,229376 +(1,2316:6630773,16765530:5505024,32768,229376 +r1,2316:12135797,16765530:5505024,262144,229376 +) +k1,2316:6630773,16765530:-5505024 +) +(1,2316:6630773,16765530:25952256,32768,0 +r1,2316:32583029,16765530:25952256,32768,0 +) +) +(1,2316:6630773,18369858:25952256,606339,151780 +(1,2316:6630773,18369858:1974731,582746,14155 +g1,2316:6630773,18369858 +g1,2316:8605504,18369858 +) +g1,2316:11298248,18369858 +k1,2316:32583029,18369858:16458448 +g1,2316:32583029,18369858 +) +(1,2319:6630773,19604562:25952256,505283,134348 +k1,2318:8046529,19604562:219069 +k1,2318:12625708,19604562:219069 +k1,2318:14230863,19604562:219069 +k1,2318:18256918,19604562:219069 +k1,2318:19467547,19604562:219069 +k1,2318:21430529,19604562:219069 +k1,2318:23871269,19604562:219069 +k1,2318:24741766,19604562:219069 +k1,2318:27030462,19604562:219069 +k1,2318:29433846,19604562:219069 +k1,2318:30550758,19604562:219069 +k1,2318:32583029,19604562:0 +) +(1,2319:6630773,20446050:25952256,513147,134348 +k1,2318:7873391,20446050:251058 +k1,2318:8810610,20446050:251057 +k1,2318:10218378,20446050:251058 +k1,2318:12425685,20446050:251057 +k1,2318:14921351,20446050:251058 +k1,2318:15932626,20446050:251057 +k1,2318:19887123,20446050:251058 +k1,2318:23163977,20446050:251057 +k1,2318:24928261,20446050:251058 +k1,2318:25830746,20446050:251057 +k1,2318:28474523,20446050:251058 +k1,2318:31015408,20446050:251057 +k1,2318:32583029,20446050:0 +) +(1,2319:6630773,21287538:25952256,609711,134348 +g1,2318:7986712,21287538 +g1,2318:9968520,21287538 +g1,2318:10819177,21287538 +g1,2318:11374266,21287538 +g1,2318:14335838,21287538 +g1,2318:15691777,21287538 +g1,2318:17366221,21287538 +g1,2318:19633766,21287538 +g1,2318:22311567,21287538 +g1,2318:23904747,21287538 +(1,2318:23904747,21287538:0,414482,115847 +r1,2318:24966436,21287538:1061689,530329,115847 +k1,2318:23904747,21287538:-1061689 +) +(1,2318:23904747,21287538:1061689,414482,115847 +k1,2318:23904747,21287538:3277 +h1,2318:24963159,21287538:0,411205,112570 +) +(1,2318:24966436,21287538:311689,609711,0 +$1,2318:24966436,21287538 +(1,2318:24966436,21012257:311689,334430,0 +) +$1,2318:25278125,21287538 +) +g1,2318:25651024,21287538 +g1,2318:25651024,21287538 +g1,2318:25850253,21287538 +g1,2318:25850253,21287538 +k1,2319:32583029,21287538:6732776 +g1,2319:32583029,21287538 +) +v1,2321:6630773,22392583:0,393216,0 +(1,2346:6630773,29567692:25952256,7568325,196608 +g1,2346:6630773,29567692 +g1,2346:6630773,29567692 +g1,2346:6434165,29567692 +(1,2346:6434165,29567692:0,7568325,196608 +r1,2346:32779637,29567692:26345472,7764933,196608 +k1,2346:6434165,29567692:-26345472 +) +(1,2346:6434165,29567692:26345472,7568325,196608 +[1,2346:6630773,29567692:25952256,7371717,0 +(1,2323:6630773,22600201:25952256,404226,76021 +(1,2322:6630773,22600201:0,0,0 +g1,2322:6630773,22600201 +g1,2322:6630773,22600201 +g1,2322:6303093,22600201 +(1,2322:6303093,22600201:0,0,0 +) +g1,2322:6630773,22600201 +) +k1,2323:6630773,22600201:0 +h1,2323:11372959,22600201:0,0,0 +k1,2323:32583029,22600201:21210070 +g1,2323:32583029,22600201 +) +(1,2327:6630773,23331915:25952256,404226,76021 +(1,2325:6630773,23331915:0,0,0 +g1,2325:6630773,23331915 +g1,2325:6630773,23331915 +g1,2325:6303093,23331915 +(1,2325:6303093,23331915:0,0,0 +) +g1,2325:6630773,23331915 +) +g1,2327:7579210,23331915 +g1,2327:8843793,23331915 +h1,2327:9792230,23331915:0,0,0 +k1,2327:32583030,23331915:22790800 +g1,2327:32583030,23331915 +) +(1,2329:6630773,24653453:25952256,404226,76021 +(1,2328:6630773,24653453:0,0,0 +g1,2328:6630773,24653453 +g1,2328:6630773,24653453 +g1,2328:6303093,24653453 +(1,2328:6303093,24653453:0,0,0 +) +g1,2328:6630773,24653453 +) +k1,2329:6630773,24653453:0 +h1,2329:11372959,24653453:0,0,0 +k1,2329:32583029,24653453:21210070 +g1,2329:32583029,24653453 +) +(1,2333:6630773,25385167:25952256,404226,76021 +(1,2331:6630773,25385167:0,0,0 +g1,2331:6630773,25385167 +g1,2331:6630773,25385167 +g1,2331:6303093,25385167 +(1,2331:6303093,25385167:0,0,0 +) +g1,2331:6630773,25385167 +) +g1,2333:7579210,25385167 +g1,2333:8843793,25385167 +h1,2333:9159939,25385167:0,0,0 +k1,2333:32583029,25385167:23423090 +g1,2333:32583029,25385167 +) +(1,2335:6630773,26706705:25952256,404226,107478 +(1,2334:6630773,26706705:0,0,0 +g1,2334:6630773,26706705 +g1,2334:6630773,26706705 +g1,2334:6303093,26706705 +(1,2334:6303093,26706705:0,0,0 +) +g1,2334:6630773,26706705 +) +k1,2335:6630773,26706705:0 +h1,2335:12321396,26706705:0,0,0 +k1,2335:32583028,26706705:20261632 +g1,2335:32583028,26706705 +) +(1,2339:6630773,27438419:25952256,404226,76021 +(1,2337:6630773,27438419:0,0,0 +g1,2337:6630773,27438419 +g1,2337:6630773,27438419 +g1,2337:6303093,27438419 +(1,2337:6303093,27438419:0,0,0 +) +g1,2337:6630773,27438419 +) +g1,2339:7579210,27438419 +g1,2339:8843793,27438419 +h1,2339:10108376,27438419:0,0,0 +k1,2339:32583028,27438419:22474652 +g1,2339:32583028,27438419 +) +(1,2341:6630773,28759957:25952256,404226,107478 +(1,2340:6630773,28759957:0,0,0 +g1,2340:6630773,28759957 +g1,2340:6630773,28759957 +g1,2340:6303093,28759957 +(1,2340:6303093,28759957:0,0,0 +) +g1,2340:6630773,28759957 +) +k1,2341:6630773,28759957:0 +h1,2341:11689105,28759957:0,0,0 +k1,2341:32583029,28759957:20893924 +g1,2341:32583029,28759957 +) +(1,2345:6630773,29491671:25952256,404226,76021 +(1,2343:6630773,29491671:0,0,0 +g1,2343:6630773,29491671 +g1,2343:6630773,29491671 +g1,2343:6303093,29491671 +(1,2343:6303093,29491671:0,0,0 +) +g1,2343:6630773,29491671 +) +g1,2345:7579210,29491671 +g1,2345:8843793,29491671 +h1,2345:9476084,29491671:0,0,0 +k1,2345:32583028,29491671:23106944 +g1,2345:32583028,29491671 +) +] +) +g1,2346:32583029,29567692 +g1,2346:6630773,29567692 +g1,2346:6630773,29567692 +g1,2346:32583029,29567692 +g1,2346:32583029,29567692 +) +h1,2346:6630773,29764300:0,0,0 +(1,2350:6630773,31044654:25952256,505283,134348 +h1,2349:6630773,31044654:983040,0,0 +g1,2349:11411624,31044654 +g1,2349:13293818,31044654 +g1,2349:15155695,31044654 +g1,2349:19671781,31044654 +g1,2349:20487048,31044654 +g1,2349:23962422,31044654 +g1,2349:25353096,31044654 +g1,2349:27621952,31044654 +k1,2350:32583029,31044654:1017120 +g1,2350:32583029,31044654 +) +v1,2352:6630773,32149699:0,393216,0 +(1,2371:6630773,37255827:25952256,5499344,196608 +g1,2371:6630773,37255827 +g1,2371:6630773,37255827 +g1,2371:6434165,37255827 +(1,2371:6434165,37255827:0,5499344,196608 +r1,2371:32779637,37255827:26345472,5695952,196608 +k1,2371:6434165,37255827:-26345472 +) +(1,2371:6434165,37255827:26345472,5499344,196608 +[1,2371:6630773,37255827:25952256,5302736,0 +(1,2354:6630773,32341588:25952256,388497,9436 +(1,2353:6630773,32341588:0,0,0 +g1,2353:6630773,32341588 +g1,2353:6630773,32341588 +g1,2353:6303093,32341588 +(1,2353:6303093,32341588:0,0,0 +) +g1,2353:6630773,32341588 +) +g1,2354:8211502,32341588 +g1,2354:8843794,32341588 +h1,2354:9476085,32341588:0,0,0 +k1,2354:32583029,32341588:23106944 +g1,2354:32583029,32341588 +) +(1,2358:6630773,33073302:25952256,404226,76021 +(1,2356:6630773,33073302:0,0,0 +g1,2356:6630773,33073302 +g1,2356:6630773,33073302 +g1,2356:6303093,33073302 +(1,2356:6303093,33073302:0,0,0 +) +g1,2356:6630773,33073302 +) +g1,2358:7579210,33073302 +g1,2358:8843793,33073302 +h1,2358:9476084,33073302:0,0,0 +k1,2358:32583028,33073302:23106944 +g1,2358:32583028,33073302 +) +(1,2360:6630773,34394840:25952256,404226,76021 +(1,2359:6630773,34394840:0,0,0 +g1,2359:6630773,34394840 +g1,2359:6630773,34394840 +g1,2359:6303093,34394840 +(1,2359:6303093,34394840:0,0,0 +) +g1,2359:6630773,34394840 +) +g1,2360:7263065,34394840 +g1,2360:8211502,34394840 +h1,2360:8527648,34394840:0,0,0 +k1,2360:32583028,34394840:24055380 +g1,2360:32583028,34394840 +) +(1,2364:6630773,35126554:25952256,404226,76021 +(1,2362:6630773,35126554:0,0,0 +g1,2362:6630773,35126554 +g1,2362:6630773,35126554 +g1,2362:6303093,35126554 +(1,2362:6303093,35126554:0,0,0 +) +g1,2362:6630773,35126554 +) +g1,2364:7579210,35126554 +g1,2364:8843793,35126554 +h1,2364:10108376,35126554:0,0,0 +k1,2364:32583028,35126554:22474652 +g1,2364:32583028,35126554 +) +(1,2366:6630773,36448092:25952256,404226,76021 +(1,2365:6630773,36448092:0,0,0 +g1,2365:6630773,36448092 +g1,2365:6630773,36448092 +g1,2365:6303093,36448092 +(1,2365:6303093,36448092:0,0,0 +) +g1,2365:6630773,36448092 +) +g1,2366:8527647,36448092 +g1,2366:9159939,36448092 +k1,2366:9159939,36448092:0 +h1,2366:10424523,36448092:0,0,0 +k1,2366:32583029,36448092:22158506 +g1,2366:32583029,36448092 +) +(1,2370:6630773,37179806:25952256,404226,76021 +(1,2368:6630773,37179806:0,0,0 +g1,2368:6630773,37179806 +g1,2368:6630773,37179806 +g1,2368:6303093,37179806 +(1,2368:6303093,37179806:0,0,0 +) +g1,2368:6630773,37179806 +) +g1,2370:7579210,37179806 +g1,2370:8843793,37179806 +g1,2370:9159939,37179806 +g1,2370:10740668,37179806 +g1,2370:11056814,37179806 +g1,2370:12637543,37179806 +g1,2370:14534417,37179806 +g1,2370:14850563,37179806 +g1,2370:16431292,37179806 +g1,2370:16747438,37179806 +h1,2370:18012021,37179806:0,0,0 +k1,2370:32583029,37179806:14571008 +g1,2370:32583029,37179806 +) +] +) +g1,2371:32583029,37255827 +g1,2371:6630773,37255827 +g1,2371:6630773,37255827 +g1,2371:32583029,37255827 +g1,2371:32583029,37255827 +) +h1,2371:6630773,37452435:0,0,0 +v1,2375:6630773,39171657:0,393216,0 +(1,2395:6630773,43855668:25952256,5077227,589824 +g1,2395:6630773,43855668 +(1,2395:6630773,43855668:25952256,5077227,589824 +(1,2395:6630773,44445492:25952256,5667051,0 +[1,2395:6630773,44445492:25952256,5667051,0 +(1,2395:6630773,44445492:25952256,5640837,0 +r1,2395:6656987,44445492:26214,5640837,0 +[1,2395:6656987,44445492:25899828,5640837,0 +(1,2395:6656987,43855668:25899828,4461189,0 +[1,2395:7246811,43855668:24720180,4461189,0 +(1,2376:7246811,40481853:24720180,1087374,134348 +k1,2375:8762218,40481853:305704 +k1,2375:10900309,40481853:305704 +k1,2375:11737510,40481853:305704 +k1,2375:13735354,40481853:305704 +k1,2375:17015082,40481853:305704 +k1,2375:17936824,40481853:305704 +k1,2375:19261613,40481853:305704 +k1,2375:23044002,40481853:305704 +k1,2375:24917327,40481853:305704 +k1,2375:28197710,40481853:305704 +k1,2375:30699525,40481853:305704 +k1,2376:31966991,40481853:0 +) +(1,2376:7246811,41323341:24720180,505283,126483 +(1,2375:7246811,41323341:0,452978,115847 +r1,2395:9715348,41323341:2468537,568825,115847 +k1,2375:7246811,41323341:-2468537 +) +(1,2375:7246811,41323341:2468537,452978,115847 +k1,2375:7246811,41323341:3277 +h1,2375:9712071,41323341:0,411205,112570 +) +k1,2375:9902878,41323341:187530 +k1,2375:11281852,41323341:187529 +(1,2375:11281852,41323341:0,452978,122846 +r1,2395:13750389,41323341:2468537,575824,122846 +k1,2375:11281852,41323341:-2468537 +) +(1,2375:11281852,41323341:2468537,452978,122846 +k1,2375:11281852,41323341:3277 +h1,2375:13747112,41323341:0,411205,112570 +) +k1,2375:13937919,41323341:187530 +k1,2375:16309764,41323341:187530 +k1,2375:17646139,41323341:187529 +k1,2375:18852754,41323341:187530 +k1,2375:22032002,41323341:187529 +k1,2375:24087963,41323341:187530 +k1,2375:25646506,41323341:187530 +k1,2375:27292866,41323341:187529 +k1,2375:28810777,41323341:187530 +k1,2375:31966991,41323341:0 +) +(1,2376:7246811,42164829:24720180,513147,134348 +k1,2375:8052400,42164829:154161 +k1,2375:9185014,42164829:154161 +k1,2375:10109877,42164829:154160 +k1,2375:11589176,42164829:154161 +k1,2375:12402629,42164829:154161 +k1,2375:14105406,42164829:154161 +k1,2375:16455677,42164829:154160 +k1,2375:17601398,42164829:154161 +k1,2375:21112313,42164829:154161 +k1,2375:22457919,42164829:154161 +k1,2375:25420952,42164829:154160 +k1,2375:28735914,42164829:154161 +k1,2375:30081520,42164829:154161 +k1,2375:31966991,42164829:0 +) +(1,2376:7246811,43006317:24720180,505283,126483 +k1,2375:8438017,43006317:199646 +k1,2375:9877603,43006317:199645 +k1,2375:10975092,43006317:199646 +k1,2375:12460554,43006317:199646 +k1,2375:13797904,43006317:199645 +k1,2375:16896863,43006317:199646 +k1,2375:17709271,43006317:199646 +k1,2375:18928001,43006317:199645 +k1,2375:22604332,43006317:199646 +k1,2375:25439181,43006317:199646 +(1,2375:25439181,43006317:0,452978,115847 +r1,2395:27907718,43006317:2468537,568825,115847 +k1,2375:25439181,43006317:-2468537 +) +(1,2375:25439181,43006317:2468537,452978,115847 +k1,2375:25439181,43006317:3277 +h1,2375:27904441,43006317:0,411205,112570 +) +k1,2375:28107363,43006317:199645 +k1,2375:29498454,43006317:199646 +(1,2375:29498454,43006317:0,452978,122846 +r1,2395:31966991,43006317:2468537,575824,122846 +k1,2375:29498454,43006317:-2468537 +) +(1,2375:29498454,43006317:2468537,452978,122846 +k1,2375:29498454,43006317:3277 +h1,2375:31963714,43006317:0,411205,112570 +) +k1,2375:31966991,43006317:0 +) +(1,2376:7246811,43847805:24720180,505283,7863 +g1,2375:9630355,43847805 +g1,2375:9630355,43847805 +g1,2375:9829584,43847805 +g1,2375:9829584,43847805 +k1,2376:31966992,43847805:22137408 +g1,2376:31966992,43847805 +) +] +) +] +r1,2395:32583029,44445492:26214,5640837,0 +) +] +) +) +g1,2395:32583029,43855668 +) +(1,2318:6630773,45706769:25952256,506878,199855 +(1,2318:6630773,45706769:943720,506878,0 +k1,2318:7302650,45706769:671877 +(1,2318:7302650,45706769:271843,506878,0 +$1,2318:7302650,45706769 +(1,2318:7302650,45486545:271843,286654,0 +) +$1,2318:7574493,45706769 +) +) +(1,2318:7574493,45706769:0,435814,0 +r1,2318:7574493,45706769:0,435814,0 +) +g1,2318:9409502,45706769 +g1,2318:10327006,45706769 +g1,2318:11840102,45706769 +g1,2318:14327849,45706769 +g1,2318:14980064,45706769 +g1,2318:15954716,45706769 +g1,2318:18680489,45706769 +g1,2318:19867478,45706769 +g1,2318:20900850,45706769 +g1,2318:22714887,45706769 +g1,2318:24857128,45706769 +g1,2318:26131673,45706769 +(1,2318:26131673,45706769:0,332241,93333 +r1,2318:26982335,45706769:850662,425574,93333 +k1,2318:26131673,45706769:-850662 +) +(1,2318:26131673,45706769:850662,332241,93333 +k1,2318:26131673,45706769:3277 +h1,2318:26979058,45706769:0,328964,90056 ) -g1,2312:27141719,45706769 -g1,2312:29162850,45706769 -g1,2312:29855959,45706769 -(1,2312:29855959,45706769:0,332241,93333 -r1,2312:30706621,45706769:850662,425574,93333 -k1,2312:29855959,45706769:-850662 +g1,2318:27141719,45706769 +g1,2318:29162850,45706769 +g1,2318:29855959,45706769 +(1,2318:29855959,45706769:0,332241,93333 +r1,2318:30706621,45706769:850662,425574,93333 +k1,2318:29855959,45706769:-850662 ) -(1,2312:29855959,45706769:850662,332241,93333 -k1,2312:29855959,45706769:3277 -h1,2312:30703344,45706769:0,328964,90056 +(1,2318:29855959,45706769:850662,332241,93333 +k1,2318:29855959,45706769:3277 +h1,2318:30703344,45706769:0,328964,90056 ) -r1,2312:30845557,45706769:0,199855,199855 -k1,2312:32583029,45706769:1737472 -g1,2312:32583029,45706769 +r1,2318:30845557,45706769:0,199855,199855 +k1,2318:32583029,45706769:1737472 +g1,2318:32583029,45706769 ) ] -(1,2389:32583029,45706769:0,0,0 -g1,2389:32583029,45706769 +(1,2395:32583029,45706769:0,0,0 +g1,2395:32583029,45706769 ) ) ] -(1,2389:6630773,47279633:25952256,0,0 -h1,2389:6630773,47279633:25952256,0,0 +(1,2395:6630773,47279633:25952256,0,0 +h1,2395:6630773,47279633:25952256,0,0 ) ] -h1,2389:4262630,4025873:0,0,0 +h1,2395:4262630,4025873:0,0,0 ] -!21036 +!21010 }53 -Input:338:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:339:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:340:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:341:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:342:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:343:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:344:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:345:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:346:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:347:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:348:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:349:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:350:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:351:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1201 +Input:334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1285 {54 -[1,2436:4262630,47279633:28320399,43253760,0 -(1,2436:4262630,4025873:0,0,0 -[1,2436:-473657,4025873:25952256,0,0 -(1,2436:-473657,-710414:25952256,0,0 -h1,2436:-473657,-710414:0,0,0 -(1,2436:-473657,-710414:0,0,0 -(1,2436:-473657,-710414:0,0,0 -g1,2436:-473657,-710414 -(1,2436:-473657,-710414:65781,0,65781 -g1,2436:-407876,-710414 -[1,2436:-407876,-644633:0,0,0 +[1,2442:4262630,47279633:28320399,43253760,0 +(1,2442:4262630,4025873:0,0,0 +[1,2442:-473657,4025873:25952256,0,0 +(1,2442:-473657,-710414:25952256,0,0 +h1,2442:-473657,-710414:0,0,0 +(1,2442:-473657,-710414:0,0,0 +(1,2442:-473657,-710414:0,0,0 +g1,2442:-473657,-710414 +(1,2442:-473657,-710414:65781,0,65781 +g1,2442:-407876,-710414 +[1,2442:-407876,-644633:0,0,0 ] ) -k1,2436:-473657,-710414:-65781 +k1,2442:-473657,-710414:-65781 ) ) -k1,2436:25478599,-710414:25952256 -g1,2436:25478599,-710414 +k1,2442:25478599,-710414:25952256 +g1,2442:25478599,-710414 ) ] ) -[1,2436:6630773,47279633:25952256,43253760,0 -[1,2436:6630773,4812305:25952256,786432,0 -(1,2436:6630773,4812305:25952256,505283,126483 -(1,2436:6630773,4812305:25952256,505283,126483 -g1,2436:3078558,4812305 -[1,2436:3078558,4812305:0,0,0 -(1,2436:3078558,2439708:0,1703936,0 -k1,2436:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2436:2537886,2439708:1179648,16384,0 +[1,2442:6630773,47279633:25952256,43253760,0 +[1,2442:6630773,4812305:25952256,786432,0 +(1,2442:6630773,4812305:25952256,505283,126483 +(1,2442:6630773,4812305:25952256,505283,126483 +g1,2442:3078558,4812305 +[1,2442:3078558,4812305:0,0,0 +(1,2442:3078558,2439708:0,1703936,0 +k1,2442:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2442:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2436:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2442:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2436:3078558,4812305:0,0,0 -(1,2436:3078558,2439708:0,1703936,0 -g1,2436:29030814,2439708 -g1,2436:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2436:36151628,1915420:16384,1179648,0 +[1,2442:3078558,4812305:0,0,0 +(1,2442:3078558,2439708:0,1703936,0 +g1,2442:29030814,2439708 +g1,2442:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2442:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2436:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2442:37855564,2439708:1179648,16384,0 ) ) -k1,2436:3078556,2439708:-34777008 +k1,2442:3078556,2439708:-34777008 ) ] -[1,2436:3078558,4812305:0,0,0 -(1,2436:3078558,49800853:0,16384,2228224 -k1,2436:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2436:2537886,49800853:1179648,16384,0 +[1,2442:3078558,4812305:0,0,0 +(1,2442:3078558,49800853:0,16384,2228224 +k1,2442:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2442:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2436:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2442:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2436:3078558,4812305:0,0,0 -(1,2436:3078558,49800853:0,16384,2228224 -g1,2436:29030814,49800853 -g1,2436:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2436:36151628,51504789:16384,1179648,0 +[1,2442:3078558,4812305:0,0,0 +(1,2442:3078558,49800853:0,16384,2228224 +g1,2442:29030814,49800853 +g1,2442:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2442:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2436:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2442:37855564,49800853:1179648,16384,0 ) ) -k1,2436:3078556,49800853:-34777008 +k1,2442:3078556,49800853:-34777008 ) ] -g1,2436:6630773,4812305 -g1,2436:6630773,4812305 -g1,2436:8715473,4812305 -g1,2436:12574232,4812305 -k1,2436:31786112,4812305:19211880 -) -) -] -[1,2436:6630773,45706769:25952256,40108032,0 -(1,2436:6630773,45706769:25952256,40108032,0 -(1,2436:6630773,45706769:0,0,0 -g1,2436:6630773,45706769 -) -[1,2436:6630773,45706769:25952256,40108032,0 -v1,2389:6630773,6254097:0,393216,0 -(1,2389:6630773,14541693:25952256,8680812,616038 -g1,2389:6630773,14541693 -(1,2389:6630773,14541693:25952256,8680812,616038 -(1,2389:6630773,15157731:25952256,9296850,0 -[1,2389:6630773,15157731:25952256,9296850,0 -(1,2389:6630773,15131517:25952256,9270636,0 -r1,2389:6656987,15131517:26214,9270636,0 -[1,2389:6656987,15131517:25899828,9270636,0 -(1,2389:6656987,14541693:25899828,8090988,0 -[1,2389:7246811,14541693:24720180,8090988,0 -v1,2372:7246811,6843921:0,393216,0 -(1,2386:7246811,13820797:24720180,7370092,196608 -g1,2386:7246811,13820797 -g1,2386:7246811,13820797 -g1,2386:7050203,13820797 -(1,2386:7050203,13820797:0,7370092,196608 -r1,2389:32163599,13820797:25113396,7566700,196608 -k1,2386:7050203,13820797:-25113396 -) -(1,2386:7050203,13820797:25113396,7370092,196608 -[1,2386:7246811,13820797:24720180,7173484,0 -(1,2374:7246811,7051539:24720180,404226,76021 -(1,2373:7246811,7051539:0,0,0 -g1,2373:7246811,7051539 -g1,2373:7246811,7051539 -g1,2373:6919131,7051539 -(1,2373:6919131,7051539:0,0,0 +g1,2442:6630773,4812305 +g1,2442:6630773,4812305 +g1,2442:8715473,4812305 +g1,2442:12574232,4812305 +k1,2442:31786112,4812305:19211880 +) +) +] +[1,2442:6630773,45706769:25952256,40108032,0 +(1,2442:6630773,45706769:25952256,40108032,0 +(1,2442:6630773,45706769:0,0,0 +g1,2442:6630773,45706769 +) +[1,2442:6630773,45706769:25952256,40108032,0 +v1,2395:6630773,6254097:0,393216,0 +(1,2395:6630773,14541693:25952256,8680812,616038 +g1,2395:6630773,14541693 +(1,2395:6630773,14541693:25952256,8680812,616038 +(1,2395:6630773,15157731:25952256,9296850,0 +[1,2395:6630773,15157731:25952256,9296850,0 +(1,2395:6630773,15131517:25952256,9270636,0 +r1,2395:6656987,15131517:26214,9270636,0 +[1,2395:6656987,15131517:25899828,9270636,0 +(1,2395:6656987,14541693:25899828,8090988,0 +[1,2395:7246811,14541693:24720180,8090988,0 +v1,2378:7246811,6843921:0,393216,0 +(1,2392:7246811,13820797:24720180,7370092,196608 +g1,2392:7246811,13820797 +g1,2392:7246811,13820797 +g1,2392:7050203,13820797 +(1,2392:7050203,13820797:0,7370092,196608 +r1,2395:32163599,13820797:25113396,7566700,196608 +k1,2392:7050203,13820797:-25113396 +) +(1,2392:7050203,13820797:25113396,7370092,196608 +[1,2392:7246811,13820797:24720180,7173484,0 +(1,2380:7246811,7051539:24720180,404226,76021 +(1,2379:7246811,7051539:0,0,0 +g1,2379:7246811,7051539 +g1,2379:7246811,7051539 +g1,2379:6919131,7051539 +(1,2379:6919131,7051539:0,0,0 ) -g1,2373:7246811,7051539 +g1,2379:7246811,7051539 ) -k1,2374:7246811,7051539:0 -h1,2374:13569725,7051539:0,0,0 -k1,2374:31966991,7051539:18397266 -g1,2374:31966991,7051539 -) -(1,2375:7246811,7717717:24720180,404226,76021 -h1,2375:7246811,7717717:0,0,0 -k1,2375:7246811,7717717:0 -h1,2375:12937434,7717717:0,0,0 -k1,2375:31966990,7717717:19029556 -g1,2375:31966990,7717717 -) -(1,2376:7246811,8383895:24720180,404226,76021 -h1,2376:7246811,8383895:0,0,0 -k1,2376:7246811,8383895:0 -h1,2376:11988997,8383895:0,0,0 -k1,2376:31966991,8383895:19977994 -g1,2376:31966991,8383895 -) -(1,2377:7246811,9050073:24720180,404226,76021 -h1,2377:7246811,9050073:0,0,0 -k1,2377:7246811,9050073:0 -h1,2377:12305143,9050073:0,0,0 -k1,2377:31966991,9050073:19661848 -g1,2377:31966991,9050073 -) -(1,2378:7246811,9716251:24720180,404226,76021 -h1,2378:7246811,9716251:0,0,0 -k1,2378:7246811,9716251:0 -h1,2378:12621288,9716251:0,0,0 -k1,2378:31966992,9716251:19345704 -g1,2378:31966992,9716251 -) -(1,2379:7246811,10382429:24720180,404226,107478 -h1,2379:7246811,10382429:0,0,0 -k1,2379:7246811,10382429:0 -h1,2379:11988997,10382429:0,0,0 -k1,2379:31966991,10382429:19977994 -g1,2379:31966991,10382429 -) -(1,2380:7246811,11048607:24720180,404226,107478 -h1,2380:7246811,11048607:0,0,0 -k1,2380:7246811,11048607:0 -h1,2380:11988997,11048607:0,0,0 -k1,2380:31966991,11048607:19977994 -g1,2380:31966991,11048607 -) -(1,2381:7246811,11714785:24720180,404226,107478 -h1,2381:7246811,11714785:0,0,0 -k1,2381:7246811,11714785:0 -h1,2381:12937434,11714785:0,0,0 -k1,2381:31966990,11714785:19029556 -g1,2381:31966990,11714785 -) -(1,2382:7246811,12380963:24720180,404226,107478 -h1,2382:7246811,12380963:0,0,0 -k1,2382:7246811,12380963:0 -h1,2382:11988997,12380963:0,0,0 -k1,2382:31966991,12380963:19977994 -g1,2382:31966991,12380963 -) -(1,2383:7246811,13047141:24720180,404226,107478 -h1,2383:7246811,13047141:0,0,0 -k1,2383:7246811,13047141:0 -h1,2383:11356706,13047141:0,0,0 -k1,2383:31966990,13047141:20610284 -g1,2383:31966990,13047141 -) -(1,2384:7246811,13713319:24720180,404226,107478 -h1,2384:7246811,13713319:0,0,0 -k1,2384:7246811,13713319:0 -h1,2384:11672852,13713319:0,0,0 -k1,2384:31966992,13713319:20294140 -g1,2384:31966992,13713319 -) -] -) -g1,2386:31966991,13820797 -g1,2386:7246811,13820797 -g1,2386:7246811,13820797 -g1,2386:31966991,13820797 -g1,2386:31966991,13820797 -) -h1,2386:7246811,14017405:0,0,0 -] -) -] -r1,2389:32583029,15131517:26214,9270636,0 -) -] -) -) -g1,2389:32583029,14541693 -) -h1,2389:6630773,15157731:0,0,0 -v1,2392:6630773,16304488:0,393216,0 -(1,2393:6630773,19432008:25952256,3520736,616038 -g1,2393:6630773,19432008 -(1,2393:6630773,19432008:25952256,3520736,616038 -(1,2393:6630773,20048046:25952256,4136774,0 -[1,2393:6630773,20048046:25952256,4136774,0 -(1,2393:6630773,20021832:25952256,4084346,0 -r1,2393:6656987,20021832:26214,4084346,0 -[1,2393:6656987,20021832:25899828,4084346,0 -(1,2393:6656987,19432008:25899828,2904698,0 -[1,2393:7246811,19432008:24720180,2904698,0 -(1,2393:7246811,17614684:24720180,1087374,126483 -k1,2392:8666650,17614684:210136 -k1,2392:11759058,17614684:210135 -k1,2392:12988279,17614684:210136 -k1,2392:15209059,17614684:210135 -k1,2392:18197922,17614684:210136 -k1,2392:19169585,17614684:210135 -(1,2392:19169585,17614684:0,452978,115847 -r1,2393:21638122,17614684:2468537,568825,115847 -k1,2392:19169585,17614684:-2468537 -) -(1,2392:19169585,17614684:2468537,452978,115847 -k1,2392:19169585,17614684:3277 -h1,2392:21634845,17614684:0,411205,112570 -) -k1,2392:21848258,17614684:210136 -k1,2392:23249838,17614684:210135 -(1,2392:23249838,17614684:0,452978,122846 -r1,2393:27476934,17614684:4227096,575824,122846 -k1,2392:23249838,17614684:-4227096 -) -(1,2392:23249838,17614684:4227096,452978,122846 -k1,2392:23249838,17614684:3277 -h1,2392:27473657,17614684:0,411205,112570 -) -k1,2392:27687070,17614684:210136 -k1,2392:29595243,17614684:210135 -k1,2392:31966991,17614684:0 -) -(1,2393:7246811,18456172:24720180,513147,134348 -k1,2392:8064122,18456172:165883 -k1,2392:8585866,18456172:165884 -k1,2392:11183790,18456172:165883 -k1,2392:13037880,18456172:165883 -k1,2392:15863215,18456172:165884 -k1,2392:17522664,18456172:165883 -k1,2392:18374709,18456172:165883 -(1,2392:18374709,18456172:0,435480,115847 -r1,2393:20139822,18456172:1765113,551327,115847 -k1,2392:18374709,18456172:-1765113 -) -(1,2392:18374709,18456172:1765113,435480,115847 -k1,2392:18374709,18456172:3277 -h1,2392:20136545,18456172:0,411205,112570 -) -k1,2392:20479376,18456172:165884 -k1,2392:22589057,18456172:165883 -k1,2392:23702592,18456172:165884 -k1,2392:24887560,18456172:165883 -k1,2392:27600172,18456172:165883 -k1,2392:28425348,18456172:165884 -k1,2392:30775546,18456172:165883 -k1,2392:31966991,18456172:0 -) -(1,2393:7246811,19297660:24720180,513147,134348 -g1,2392:8393691,19297660 -g1,2392:9612005,19297660 -g1,2392:11317907,19297660 -g1,2392:12176428,19297660 -g1,2392:13394742,19297660 -g1,2392:16372698,19297660 -k1,2393:31966991,19297660:13130795 -g1,2393:31966991,19297660 -) -] -) -] -r1,2393:32583029,20021832:26214,4084346,0 -) -] -) -) -g1,2393:32583029,19432008 -) -h1,2393:6630773,20048046:0,0,0 -v1,2396:6630773,21194804:0,393216,0 -(1,2428:6630773,34687606:25952256,13886018,616038 -g1,2428:6630773,34687606 -(1,2428:6630773,34687606:25952256,13886018,616038 -(1,2428:6630773,35303644:25952256,14502056,0 -[1,2428:6630773,35303644:25952256,14502056,0 -(1,2428:6630773,35277430:25952256,14449628,0 -r1,2428:6656987,35277430:26214,14449628,0 -[1,2428:6656987,35277430:25899828,14449628,0 -(1,2428:6656987,34687606:25899828,13269980,0 -[1,2428:7246811,34687606:24720180,13269980,0 -(1,2397:7246811,22579511:24720180,1161885,196608 -(1,2396:7246811,22579511:0,1161885,196608 -r1,2428:8794447,22579511:1547636,1358493,196608 -k1,2396:7246811,22579511:-1547636 -) -(1,2396:7246811,22579511:1547636,1161885,196608 -) -k1,2396:8984351,22579511:189904 -k1,2396:10966008,22579511:189903 -k1,2396:15136569,22579511:189904 -k1,2396:16345558,22579511:189904 -k1,2396:19721821,22579511:189903 -k1,2396:22546928,22579511:189904 -k1,2396:23755916,22579511:189903 -k1,2396:25959086,22579511:189904 -k1,2396:26808282,22579511:189904 -k1,2396:27354045,22579511:189903 -(1,2396:27354045,22579511:0,452978,115847 -r1,2428:30526005,22579511:3171960,568825,115847 -k1,2396:27354045,22579511:-3171960 -) -(1,2396:27354045,22579511:3171960,452978,115847 -k1,2396:27354045,22579511:3277 -h1,2396:30522728,22579511:0,411205,112570 -) -k1,2396:30715909,22579511:189904 -k1,2397:31966991,22579511:0 -) -(1,2397:7246811,23420999:24720180,513147,134348 -k1,2396:8434681,23420999:248084 -k1,2396:9874209,23420999:248083 -k1,2396:11141378,23420999:248084 -k1,2396:13875242,23420999:248083 -k1,2396:14782618,23420999:248084 -k1,2396:18335682,23420999:248083 -k1,2396:22067660,23420999:248084 -k1,2396:23767365,23420999:248083 -k1,2396:26638855,23420999:248084 -k1,2396:29353058,23420999:248083 -k1,2396:31611131,23420999:248084 -k1,2396:31966991,23420999:0 -) -(1,2397:7246811,24262487:24720180,505283,7863 -g1,2396:9423917,24262487 -g1,2396:10154643,24262487 -g1,2396:13020532,24262487 -g1,2396:13020532,24262487 -k1,2397:31966992,24262487:18946460 -g1,2397:31966992,24262487 -) -v1,2399:7246811,25452953:0,393216,0 -(1,2426:7246811,33966710:24720180,8906973,196608 -g1,2426:7246811,33966710 -g1,2426:7246811,33966710 -g1,2426:7050203,33966710 -(1,2426:7050203,33966710:0,8906973,196608 -r1,2428:32163599,33966710:25113396,9103581,196608 -k1,2426:7050203,33966710:-25113396 -) -(1,2426:7050203,33966710:25113396,8906973,196608 -[1,2426:7246811,33966710:24720180,8710365,0 -(1,2401:7246811,25666863:24720180,410518,82312 -(1,2400:7246811,25666863:0,0,0 -g1,2400:7246811,25666863 -g1,2400:7246811,25666863 -g1,2400:6919131,25666863 -(1,2400:6919131,25666863:0,0,0 -) -g1,2400:7246811,25666863 -) -g1,2401:7879103,25666863 -g1,2401:8827541,25666863 -g1,2401:11040562,25666863 -g1,2401:12621291,25666863 -h1,2401:13885874,25666863:0,0,0 -k1,2401:31966990,25666863:18081116 -g1,2401:31966990,25666863 -) -(1,2402:7246811,26333041:24720180,410518,107478 -h1,2402:7246811,26333041:0,0,0 -k1,2402:7246811,26333041:0 -h1,2402:10092122,26333041:0,0,0 -k1,2402:31966990,26333041:21874868 -g1,2402:31966990,26333041 -) -(1,2406:7246811,27064755:24720180,404226,76021 -(1,2404:7246811,27064755:0,0,0 -g1,2404:7246811,27064755 -g1,2404:7246811,27064755 -g1,2404:6919131,27064755 -(1,2404:6919131,27064755:0,0,0 -) -g1,2404:7246811,27064755 -) -g1,2406:8195248,27064755 -g1,2406:9459831,27064755 -h1,2406:9775977,27064755:0,0,0 -k1,2406:31966991,27064755:22191014 -g1,2406:31966991,27064755 -) -(1,2408:7246811,28386293:24720180,404226,107478 -(1,2407:7246811,28386293:0,0,0 -g1,2407:7246811,28386293 -g1,2407:7246811,28386293 -g1,2407:6919131,28386293 -(1,2407:6919131,28386293:0,0,0 -) -g1,2407:7246811,28386293 -) -g1,2408:7879103,28386293 -g1,2408:8827541,28386293 -h1,2408:10408269,28386293:0,0,0 -k1,2408:31966991,28386293:21558722 -g1,2408:31966991,28386293 -) -(1,2409:7246811,29052471:24720180,404226,107478 -h1,2409:7246811,29052471:0,0,0 -k1,2409:7246811,29052471:0 -h1,2409:10092122,29052471:0,0,0 -k1,2409:31966990,29052471:21874868 -g1,2409:31966990,29052471 -) -(1,2413:7246811,29784185:24720180,404226,76021 -(1,2411:7246811,29784185:0,0,0 -g1,2411:7246811,29784185 -g1,2411:7246811,29784185 -g1,2411:6919131,29784185 -(1,2411:6919131,29784185:0,0,0 -) -g1,2411:7246811,29784185 -) -g1,2413:8195248,29784185 -g1,2413:9459831,29784185 -h1,2413:9775977,29784185:0,0,0 -k1,2413:31966991,29784185:22191014 -g1,2413:31966991,29784185 -) -(1,2415:7246811,31105723:24720180,410518,76021 -(1,2414:7246811,31105723:0,0,0 -g1,2414:7246811,31105723 -g1,2414:7246811,31105723 -g1,2414:6919131,31105723 -(1,2414:6919131,31105723:0,0,0 -) -g1,2414:7246811,31105723 -) -k1,2415:7246811,31105723:0 -h1,2415:11356705,31105723:0,0,0 -k1,2415:31966991,31105723:20610286 -g1,2415:31966991,31105723 -) -(1,2419:7246811,31837437:24720180,404226,76021 -(1,2417:7246811,31837437:0,0,0 -g1,2417:7246811,31837437 -g1,2417:7246811,31837437 -g1,2417:6919131,31837437 -(1,2417:6919131,31837437:0,0,0 -) -g1,2417:7246811,31837437 -) -g1,2419:8195248,31837437 -g1,2419:9459831,31837437 -g1,2419:10092123,31837437 -g1,2419:10724415,31837437 -h1,2419:11040561,31837437:0,0,0 -k1,2419:31966991,31837437:20926430 -g1,2419:31966991,31837437 -) -(1,2421:7246811,33158975:24720180,404226,107478 -(1,2420:7246811,33158975:0,0,0 -g1,2420:7246811,33158975 -g1,2420:7246811,33158975 -g1,2420:6919131,33158975 -(1,2420:6919131,33158975:0,0,0 -) -g1,2420:7246811,33158975 -) -k1,2421:7246811,33158975:0 -h1,2421:11356705,33158975:0,0,0 -k1,2421:31966991,33158975:20610286 -g1,2421:31966991,33158975 -) -(1,2425:7246811,33890689:24720180,404226,76021 -(1,2423:7246811,33890689:0,0,0 -g1,2423:7246811,33890689 -g1,2423:7246811,33890689 -g1,2423:6919131,33890689 -(1,2423:6919131,33890689:0,0,0 -) -g1,2423:7246811,33890689 -) -g1,2425:8195248,33890689 -g1,2425:9459831,33890689 -h1,2425:10408268,33890689:0,0,0 -k1,2425:31966992,33890689:21558724 -g1,2425:31966992,33890689 -) -] -) -g1,2426:31966991,33966710 -g1,2426:7246811,33966710 -g1,2426:7246811,33966710 -g1,2426:31966991,33966710 -g1,2426:31966991,33966710 -) -h1,2426:7246811,34163318:0,0,0 -] -) -] -r1,2428:32583029,35277430:26214,14449628,0 -) -] -) -) -g1,2428:32583029,34687606 -) -h1,2428:6630773,35303644:0,0,0 -(1,2432:6630773,36450401:25952256,513147,11795 -h1,2431:6630773,36450401:983040,0,0 -k1,2431:9651863,36450401:221392 -k1,2431:12899053,36450401:221393 -k1,2431:15693388,36450401:221392 -k1,2431:16566208,36450401:221392 -k1,2431:17806686,36450401:221393 -k1,2431:22105073,36450401:221392 -k1,2431:22985758,36450401:221393 -k1,2431:26023232,36450401:221392 -k1,2431:27436069,36450401:221392 -k1,2431:29359432,36450401:221393 -k1,2431:31591469,36450401:221392 -k1,2432:32583029,36450401:0 -) -(1,2432:6630773,37291889:25952256,513147,134348 -(1,2431:6630773,37291889:0,459977,115847 -r1,2431:9451022,37291889:2820249,575824,115847 -k1,2431:6630773,37291889:-2820249 -) -(1,2431:6630773,37291889:2820249,459977,115847 -k1,2431:6630773,37291889:3277 -h1,2431:9447745,37291889:0,411205,112570 -) -k1,2431:9805675,37291889:180983 -k1,2431:11178104,37291889:180984 -(1,2431:11178104,37291889:0,459977,115847 -r1,2431:14350064,37291889:3171960,575824,115847 -k1,2431:11178104,37291889:-3171960 -) -(1,2431:11178104,37291889:3171960,459977,115847 -k1,2431:11178104,37291889:3277 -h1,2431:14346787,37291889:0,411205,112570 -) -k1,2431:14704717,37291889:180983 -k1,2431:16760031,37291889:180984 -k1,2431:18113453,37291889:180983 -k1,2431:21320233,37291889:180983 -k1,2431:23511862,37291889:180984 -(1,2431:23511862,37291889:0,452978,115847 -r1,2431:26683822,37291889:3171960,568825,115847 -k1,2431:23511862,37291889:-3171960 -) -(1,2431:23511862,37291889:3171960,452978,115847 -k1,2431:23511862,37291889:3277 -h1,2431:26680545,37291889:0,411205,112570 -) -k1,2431:26864805,37291889:180983 -k1,2431:29415571,37291889:180984 -k1,2431:31923737,37291889:180983 -k1,2432:32583029,37291889:0 -) -(1,2432:6630773,38133377:25952256,513147,134348 -(1,2431:6630773,38133377:0,452978,115847 -r1,2431:9099310,38133377:2468537,568825,115847 -k1,2431:6630773,38133377:-2468537 -) -(1,2431:6630773,38133377:2468537,452978,115847 -k1,2431:6630773,38133377:3277 -h1,2431:9096033,38133377:0,411205,112570 -) -k1,2431:9370241,38133377:270931 -k1,2431:10324058,38133377:270932 -k1,2431:12296959,38133377:270931 -k1,2431:14752206,38133377:270932 -k1,2431:16214582,38133377:270931 -k1,2431:17477073,38133377:270931 -k1,2431:19725226,38133377:270932 -k1,2431:20943808,38133377:270931 -k1,2431:23787027,38133377:270931 -k1,2431:26390385,38133377:270932 -k1,2431:27932714,38133377:270931 -k1,2431:29972463,38133377:270932 -k1,2431:31923737,38133377:270931 -k1,2431:32583029,38133377:0 -) -(1,2432:6630773,38974865:25952256,513147,134348 -k1,2431:8561391,38974865:233891 -k1,2431:11821078,38974865:233890 -k1,2431:12741131,38974865:233891 -k1,2431:15981158,38974865:233891 -k1,2431:19691733,38974865:233890 -k1,2431:22951421,38974865:233891 -k1,2431:26186206,38974865:233891 -k1,2431:29799132,38974865:233890 -k1,2431:31224468,38974865:233891 -k1,2432:32583029,38974865:0 -) -(1,2432:6630773,39816353:25952256,505283,134348 -k1,2431:8402342,39816353:273416 -k1,2431:11808379,39816353:273416 -k1,2431:13273240,39816353:273416 -k1,2431:16938144,39816353:273416 -k1,2431:20186239,39816353:273416 -k1,2431:22829437,39816353:273416 -k1,2431:26037555,39816353:273416 -k1,2431:27691159,39816353:273416 -k1,2431:28956135,39816353:273416 -k1,2431:31516758,39816353:273416 -k1,2431:32583029,39816353:0 -) -(1,2432:6630773,40657841:25952256,513147,126483 -k1,2431:10422850,40657841:293110 -k1,2431:12994647,40657841:293110 -k1,2431:16764441,40657841:293109 -k1,2431:20257019,40657841:293110 -k1,2431:21236291,40657841:293110 -k1,2431:22909589,40657841:293110 -k1,2431:24194258,40657841:293109 -k1,2431:25841342,40657841:293110 -k1,2431:27980601,40657841:293110 -k1,2431:29786937,40657841:293110 -k1,2431:30696084,40657841:293109 -k1,2431:31345054,40657841:293110 -k1,2431:32583029,40657841:0 -) -(1,2432:6630773,41499329:25952256,513147,134348 -k1,2431:8120266,41499329:204987 -k1,2431:11382508,41499329:204987 -k1,2431:12606580,41499329:204987 -k1,2431:15246885,41499329:204987 -k1,2431:18383953,41499329:204987 -k1,2431:19248232,41499329:204987 -k1,2431:20472305,41499329:204988 -k1,2431:22385816,41499329:204987 -k1,2431:24775118,41499329:204987 -k1,2431:25933654,41499329:204987 -k1,2431:27799323,41499329:204987 -k1,2431:29402193,41499329:204987 -k1,2431:30626265,41499329:204987 -k1,2431:31923737,41499329:204987 -k1,2432:32583029,41499329:0 -) -(1,2432:6630773,42340817:25952256,505283,126483 -(1,2431:6630773,42340817:0,459977,115847 -r1,2431:9451022,42340817:2820249,575824,115847 -k1,2431:6630773,42340817:-2820249 -) -(1,2431:6630773,42340817:2820249,459977,115847 -k1,2431:6630773,42340817:3277 -h1,2431:9447745,42340817:0,411205,112570 -) -k1,2431:9621311,42340817:170289 -k1,2431:10983045,42340817:170289 -(1,2431:10983045,42340817:0,459977,115847 -r1,2431:14155005,42340817:3171960,575824,115847 -k1,2431:10983045,42340817:-3171960 -) -(1,2431:10983045,42340817:3171960,459977,115847 -k1,2431:10983045,42340817:3277 -h1,2431:14151728,42340817:0,411205,112570 -) -k1,2431:14325294,42340817:170289 -k1,2431:15889534,42340817:170289 -(1,2431:15889534,42340817:0,452978,115847 -r1,2431:18358071,42340817:2468537,568825,115847 -k1,2431:15889534,42340817:-2468537 -) -(1,2431:15889534,42340817:2468537,452978,115847 -k1,2431:15889534,42340817:3277 -h1,2431:18354794,42340817:0,411205,112570 -) -k1,2431:18528360,42340817:170289 -k1,2431:20882964,42340817:170289 -k1,2431:22125421,42340817:170288 -k1,2431:23675898,42340817:170289 -k1,2431:24950469,42340817:170289 -k1,2431:26406574,42340817:170289 -k1,2431:27324629,42340817:170289 -k1,2431:29008144,42340817:170289 -k1,2431:30572384,42340817:170289 -k1,2431:32583029,42340817:0 -) -(1,2432:6630773,43182305:25952256,513147,7863 -g1,2431:7489294,43182305 -g1,2431:9390493,43182305 -k1,2432:32583028,43182305:20905984 -g1,2432:32583028,43182305 -) -(1,2434:6630773,44023793:25952256,513147,134348 -h1,2433:6630773,44023793:983040,0,0 -k1,2433:9586983,44023793:189935 -k1,2433:11512312,44023793:189936 -(1,2433:11512312,44023793:0,459977,115847 -r1,2433:14332561,44023793:2820249,575824,115847 -k1,2433:11512312,44023793:-2820249 -) -(1,2433:11512312,44023793:2820249,459977,115847 -k1,2433:11512312,44023793:3277 -h1,2433:14329284,44023793:0,411205,112570 -) -k1,2433:14696166,44023793:189935 -k1,2433:15905187,44023793:189936 -k1,2433:18275505,44023793:189935 -k1,2433:19978667,44023793:189936 -k1,2433:20820030,44023793:189935 -k1,2433:23305037,44023793:189936 -k1,2433:26311054,44023793:189935 -k1,2433:27032487,44023793:189936 -k1,2433:28156965,44023793:189935 -k1,2433:29108429,44023793:189936 -k1,2433:31725818,44023793:189935 -k1,2434:32583029,44023793:0 -) -(1,2434:6630773,44865281:25952256,513147,134348 -k1,2433:9588946,44865281:199763 -k1,2433:10440136,44865281:199762 -k1,2433:12871400,44865281:199763 -k1,2433:15833506,44865281:199763 -k1,2433:19817973,44865281:199763 -k1,2433:20835624,44865281:199762 -(1,2433:20835624,44865281:0,452978,115847 -r1,2433:23304161,44865281:2468537,568825,115847 -k1,2433:20835624,44865281:-2468537 -) -(1,2433:20835624,44865281:2468537,452978,115847 -k1,2433:20835624,44865281:3277 -h1,2433:23300884,44865281:0,411205,112570 -) -k1,2433:23503924,44865281:199763 -k1,2433:25133683,44865281:199763 -(1,2433:25133683,44865281:0,459977,115847 -r1,2433:27953932,44865281:2820249,575824,115847 -k1,2433:25133683,44865281:-2820249 -) -(1,2433:25133683,44865281:2820249,459977,115847 -k1,2433:25133683,44865281:3277 -h1,2433:27950655,44865281:0,411205,112570 -) -k1,2433:28153695,44865281:199763 -k1,2433:29004885,44865281:199762 -k1,2433:30920381,44865281:199763 -k1,2434:32583029,44865281:0 -) -(1,2434:6630773,45706769:25952256,505283,126483 -g1,2433:8196428,45706769 -g1,2433:10314551,45706769 -g1,2433:10971877,45706769 -g1,2433:13549408,45706769 -g1,2433:14767722,45706769 -g1,2433:16620424,45706769 -k1,2434:32583029,45706769:13375899 -g1,2434:32583029,45706769 -) -] -(1,2436:32583029,45706769:0,0,0 -g1,2436:32583029,45706769 -) -) -] -(1,2436:6630773,47279633:25952256,0,0 -h1,2436:6630773,47279633:25952256,0,0 -) -] -h1,2436:4262630,4025873:0,0,0 +k1,2380:7246811,7051539:0 +h1,2380:13569725,7051539:0,0,0 +k1,2380:31966991,7051539:18397266 +g1,2380:31966991,7051539 +) +(1,2381:7246811,7717717:24720180,404226,76021 +h1,2381:7246811,7717717:0,0,0 +k1,2381:7246811,7717717:0 +h1,2381:12937434,7717717:0,0,0 +k1,2381:31966990,7717717:19029556 +g1,2381:31966990,7717717 +) +(1,2382:7246811,8383895:24720180,404226,76021 +h1,2382:7246811,8383895:0,0,0 +k1,2382:7246811,8383895:0 +h1,2382:11988997,8383895:0,0,0 +k1,2382:31966991,8383895:19977994 +g1,2382:31966991,8383895 +) +(1,2383:7246811,9050073:24720180,404226,76021 +h1,2383:7246811,9050073:0,0,0 +k1,2383:7246811,9050073:0 +h1,2383:12305143,9050073:0,0,0 +k1,2383:31966991,9050073:19661848 +g1,2383:31966991,9050073 +) +(1,2384:7246811,9716251:24720180,404226,76021 +h1,2384:7246811,9716251:0,0,0 +k1,2384:7246811,9716251:0 +h1,2384:12621288,9716251:0,0,0 +k1,2384:31966992,9716251:19345704 +g1,2384:31966992,9716251 +) +(1,2385:7246811,10382429:24720180,404226,107478 +h1,2385:7246811,10382429:0,0,0 +k1,2385:7246811,10382429:0 +h1,2385:11988997,10382429:0,0,0 +k1,2385:31966991,10382429:19977994 +g1,2385:31966991,10382429 +) +(1,2386:7246811,11048607:24720180,404226,107478 +h1,2386:7246811,11048607:0,0,0 +k1,2386:7246811,11048607:0 +h1,2386:11988997,11048607:0,0,0 +k1,2386:31966991,11048607:19977994 +g1,2386:31966991,11048607 +) +(1,2387:7246811,11714785:24720180,404226,107478 +h1,2387:7246811,11714785:0,0,0 +k1,2387:7246811,11714785:0 +h1,2387:12937434,11714785:0,0,0 +k1,2387:31966990,11714785:19029556 +g1,2387:31966990,11714785 +) +(1,2388:7246811,12380963:24720180,404226,107478 +h1,2388:7246811,12380963:0,0,0 +k1,2388:7246811,12380963:0 +h1,2388:11988997,12380963:0,0,0 +k1,2388:31966991,12380963:19977994 +g1,2388:31966991,12380963 +) +(1,2389:7246811,13047141:24720180,404226,107478 +h1,2389:7246811,13047141:0,0,0 +k1,2389:7246811,13047141:0 +h1,2389:11356706,13047141:0,0,0 +k1,2389:31966990,13047141:20610284 +g1,2389:31966990,13047141 +) +(1,2390:7246811,13713319:24720180,404226,107478 +h1,2390:7246811,13713319:0,0,0 +k1,2390:7246811,13713319:0 +h1,2390:11672852,13713319:0,0,0 +k1,2390:31966992,13713319:20294140 +g1,2390:31966992,13713319 +) +] +) +g1,2392:31966991,13820797 +g1,2392:7246811,13820797 +g1,2392:7246811,13820797 +g1,2392:31966991,13820797 +g1,2392:31966991,13820797 +) +h1,2392:7246811,14017405:0,0,0 +] +) +] +r1,2395:32583029,15131517:26214,9270636,0 +) +] +) +) +g1,2395:32583029,14541693 +) +h1,2395:6630773,15157731:0,0,0 +v1,2398:6630773,16304488:0,393216,0 +(1,2399:6630773,19432008:25952256,3520736,616038 +g1,2399:6630773,19432008 +(1,2399:6630773,19432008:25952256,3520736,616038 +(1,2399:6630773,20048046:25952256,4136774,0 +[1,2399:6630773,20048046:25952256,4136774,0 +(1,2399:6630773,20021832:25952256,4084346,0 +r1,2399:6656987,20021832:26214,4084346,0 +[1,2399:6656987,20021832:25899828,4084346,0 +(1,2399:6656987,19432008:25899828,2904698,0 +[1,2399:7246811,19432008:24720180,2904698,0 +(1,2399:7246811,17614684:24720180,1087374,126483 +k1,2398:8666650,17614684:210136 +k1,2398:11759058,17614684:210135 +k1,2398:12988279,17614684:210136 +k1,2398:15209059,17614684:210135 +k1,2398:18197922,17614684:210136 +k1,2398:19169585,17614684:210135 +(1,2398:19169585,17614684:0,452978,115847 +r1,2399:21638122,17614684:2468537,568825,115847 +k1,2398:19169585,17614684:-2468537 +) +(1,2398:19169585,17614684:2468537,452978,115847 +k1,2398:19169585,17614684:3277 +h1,2398:21634845,17614684:0,411205,112570 +) +k1,2398:21848258,17614684:210136 +k1,2398:23249838,17614684:210135 +(1,2398:23249838,17614684:0,452978,122846 +r1,2399:27476934,17614684:4227096,575824,122846 +k1,2398:23249838,17614684:-4227096 +) +(1,2398:23249838,17614684:4227096,452978,122846 +k1,2398:23249838,17614684:3277 +h1,2398:27473657,17614684:0,411205,112570 +) +k1,2398:27687070,17614684:210136 +k1,2398:29595243,17614684:210135 +k1,2398:31966991,17614684:0 +) +(1,2399:7246811,18456172:24720180,513147,134348 +k1,2398:8064122,18456172:165883 +k1,2398:8585866,18456172:165884 +k1,2398:11183790,18456172:165883 +k1,2398:13037880,18456172:165883 +k1,2398:15863215,18456172:165884 +k1,2398:17522664,18456172:165883 +k1,2398:18374709,18456172:165883 +(1,2398:18374709,18456172:0,435480,115847 +r1,2399:20139822,18456172:1765113,551327,115847 +k1,2398:18374709,18456172:-1765113 +) +(1,2398:18374709,18456172:1765113,435480,115847 +k1,2398:18374709,18456172:3277 +h1,2398:20136545,18456172:0,411205,112570 +) +k1,2398:20479376,18456172:165884 +k1,2398:22589057,18456172:165883 +k1,2398:23702592,18456172:165884 +k1,2398:24887560,18456172:165883 +k1,2398:27600172,18456172:165883 +k1,2398:28425348,18456172:165884 +k1,2398:30775546,18456172:165883 +k1,2398:31966991,18456172:0 +) +(1,2399:7246811,19297660:24720180,513147,134348 +g1,2398:8393691,19297660 +g1,2398:9612005,19297660 +g1,2398:11317907,19297660 +g1,2398:12176428,19297660 +g1,2398:13394742,19297660 +g1,2398:16372698,19297660 +k1,2399:31966991,19297660:13130795 +g1,2399:31966991,19297660 +) +] +) +] +r1,2399:32583029,20021832:26214,4084346,0 +) +] +) +) +g1,2399:32583029,19432008 +) +h1,2399:6630773,20048046:0,0,0 +v1,2402:6630773,21194804:0,393216,0 +(1,2434:6630773,34687606:25952256,13886018,616038 +g1,2434:6630773,34687606 +(1,2434:6630773,34687606:25952256,13886018,616038 +(1,2434:6630773,35303644:25952256,14502056,0 +[1,2434:6630773,35303644:25952256,14502056,0 +(1,2434:6630773,35277430:25952256,14449628,0 +r1,2434:6656987,35277430:26214,14449628,0 +[1,2434:6656987,35277430:25899828,14449628,0 +(1,2434:6656987,34687606:25899828,13269980,0 +[1,2434:7246811,34687606:24720180,13269980,0 +(1,2403:7246811,22579511:24720180,1161885,196608 +(1,2402:7246811,22579511:0,1161885,196608 +r1,2434:8794447,22579511:1547636,1358493,196608 +k1,2402:7246811,22579511:-1547636 +) +(1,2402:7246811,22579511:1547636,1161885,196608 +) +k1,2402:8984351,22579511:189904 +k1,2402:10966008,22579511:189903 +k1,2402:15136569,22579511:189904 +k1,2402:16345558,22579511:189904 +k1,2402:19721821,22579511:189903 +k1,2402:22546928,22579511:189904 +k1,2402:23755916,22579511:189903 +k1,2402:25959086,22579511:189904 +k1,2402:26808282,22579511:189904 +k1,2402:27354045,22579511:189903 +(1,2402:27354045,22579511:0,452978,115847 +r1,2434:30526005,22579511:3171960,568825,115847 +k1,2402:27354045,22579511:-3171960 +) +(1,2402:27354045,22579511:3171960,452978,115847 +k1,2402:27354045,22579511:3277 +h1,2402:30522728,22579511:0,411205,112570 +) +k1,2402:30715909,22579511:189904 +k1,2403:31966991,22579511:0 +) +(1,2403:7246811,23420999:24720180,513147,134348 +k1,2402:8434681,23420999:248084 +k1,2402:9874209,23420999:248083 +k1,2402:11141378,23420999:248084 +k1,2402:13875242,23420999:248083 +k1,2402:14782618,23420999:248084 +k1,2402:18335682,23420999:248083 +k1,2402:22067660,23420999:248084 +k1,2402:23767365,23420999:248083 +k1,2402:26638855,23420999:248084 +k1,2402:29353058,23420999:248083 +k1,2402:31611131,23420999:248084 +k1,2402:31966991,23420999:0 +) +(1,2403:7246811,24262487:24720180,505283,7863 +g1,2402:9423917,24262487 +g1,2402:10154643,24262487 +g1,2402:13020532,24262487 +g1,2402:13020532,24262487 +k1,2403:31966992,24262487:18946460 +g1,2403:31966992,24262487 +) +v1,2405:7246811,25452953:0,393216,0 +(1,2432:7246811,33966710:24720180,8906973,196608 +g1,2432:7246811,33966710 +g1,2432:7246811,33966710 +g1,2432:7050203,33966710 +(1,2432:7050203,33966710:0,8906973,196608 +r1,2434:32163599,33966710:25113396,9103581,196608 +k1,2432:7050203,33966710:-25113396 +) +(1,2432:7050203,33966710:25113396,8906973,196608 +[1,2432:7246811,33966710:24720180,8710365,0 +(1,2407:7246811,25666863:24720180,410518,82312 +(1,2406:7246811,25666863:0,0,0 +g1,2406:7246811,25666863 +g1,2406:7246811,25666863 +g1,2406:6919131,25666863 +(1,2406:6919131,25666863:0,0,0 +) +g1,2406:7246811,25666863 +) +g1,2407:7879103,25666863 +g1,2407:8827541,25666863 +g1,2407:11040562,25666863 +g1,2407:12621291,25666863 +h1,2407:13885874,25666863:0,0,0 +k1,2407:31966990,25666863:18081116 +g1,2407:31966990,25666863 +) +(1,2408:7246811,26333041:24720180,410518,107478 +h1,2408:7246811,26333041:0,0,0 +k1,2408:7246811,26333041:0 +h1,2408:10092122,26333041:0,0,0 +k1,2408:31966990,26333041:21874868 +g1,2408:31966990,26333041 +) +(1,2412:7246811,27064755:24720180,404226,76021 +(1,2410:7246811,27064755:0,0,0 +g1,2410:7246811,27064755 +g1,2410:7246811,27064755 +g1,2410:6919131,27064755 +(1,2410:6919131,27064755:0,0,0 +) +g1,2410:7246811,27064755 +) +g1,2412:8195248,27064755 +g1,2412:9459831,27064755 +h1,2412:9775977,27064755:0,0,0 +k1,2412:31966991,27064755:22191014 +g1,2412:31966991,27064755 +) +(1,2414:7246811,28386293:24720180,404226,107478 +(1,2413:7246811,28386293:0,0,0 +g1,2413:7246811,28386293 +g1,2413:7246811,28386293 +g1,2413:6919131,28386293 +(1,2413:6919131,28386293:0,0,0 +) +g1,2413:7246811,28386293 +) +g1,2414:7879103,28386293 +g1,2414:8827541,28386293 +h1,2414:10408269,28386293:0,0,0 +k1,2414:31966991,28386293:21558722 +g1,2414:31966991,28386293 +) +(1,2415:7246811,29052471:24720180,404226,107478 +h1,2415:7246811,29052471:0,0,0 +k1,2415:7246811,29052471:0 +h1,2415:10092122,29052471:0,0,0 +k1,2415:31966990,29052471:21874868 +g1,2415:31966990,29052471 +) +(1,2419:7246811,29784185:24720180,404226,76021 +(1,2417:7246811,29784185:0,0,0 +g1,2417:7246811,29784185 +g1,2417:7246811,29784185 +g1,2417:6919131,29784185 +(1,2417:6919131,29784185:0,0,0 +) +g1,2417:7246811,29784185 +) +g1,2419:8195248,29784185 +g1,2419:9459831,29784185 +h1,2419:9775977,29784185:0,0,0 +k1,2419:31966991,29784185:22191014 +g1,2419:31966991,29784185 +) +(1,2421:7246811,31105723:24720180,410518,76021 +(1,2420:7246811,31105723:0,0,0 +g1,2420:7246811,31105723 +g1,2420:7246811,31105723 +g1,2420:6919131,31105723 +(1,2420:6919131,31105723:0,0,0 +) +g1,2420:7246811,31105723 +) +k1,2421:7246811,31105723:0 +h1,2421:11356705,31105723:0,0,0 +k1,2421:31966991,31105723:20610286 +g1,2421:31966991,31105723 +) +(1,2425:7246811,31837437:24720180,404226,76021 +(1,2423:7246811,31837437:0,0,0 +g1,2423:7246811,31837437 +g1,2423:7246811,31837437 +g1,2423:6919131,31837437 +(1,2423:6919131,31837437:0,0,0 +) +g1,2423:7246811,31837437 +) +g1,2425:8195248,31837437 +g1,2425:9459831,31837437 +g1,2425:10092123,31837437 +g1,2425:10724415,31837437 +h1,2425:11040561,31837437:0,0,0 +k1,2425:31966991,31837437:20926430 +g1,2425:31966991,31837437 +) +(1,2427:7246811,33158975:24720180,404226,107478 +(1,2426:7246811,33158975:0,0,0 +g1,2426:7246811,33158975 +g1,2426:7246811,33158975 +g1,2426:6919131,33158975 +(1,2426:6919131,33158975:0,0,0 +) +g1,2426:7246811,33158975 +) +k1,2427:7246811,33158975:0 +h1,2427:11356705,33158975:0,0,0 +k1,2427:31966991,33158975:20610286 +g1,2427:31966991,33158975 +) +(1,2431:7246811,33890689:24720180,404226,76021 +(1,2429:7246811,33890689:0,0,0 +g1,2429:7246811,33890689 +g1,2429:7246811,33890689 +g1,2429:6919131,33890689 +(1,2429:6919131,33890689:0,0,0 +) +g1,2429:7246811,33890689 +) +g1,2431:8195248,33890689 +g1,2431:9459831,33890689 +h1,2431:10408268,33890689:0,0,0 +k1,2431:31966992,33890689:21558724 +g1,2431:31966992,33890689 +) +] +) +g1,2432:31966991,33966710 +g1,2432:7246811,33966710 +g1,2432:7246811,33966710 +g1,2432:31966991,33966710 +g1,2432:31966991,33966710 +) +h1,2432:7246811,34163318:0,0,0 +] +) +] +r1,2434:32583029,35277430:26214,14449628,0 +) +] +) +) +g1,2434:32583029,34687606 +) +h1,2434:6630773,35303644:0,0,0 +(1,2438:6630773,36450401:25952256,513147,11795 +h1,2437:6630773,36450401:983040,0,0 +k1,2437:9651863,36450401:221392 +k1,2437:12899053,36450401:221393 +k1,2437:15693388,36450401:221392 +k1,2437:16566208,36450401:221392 +k1,2437:17806686,36450401:221393 +k1,2437:22105073,36450401:221392 +k1,2437:22985758,36450401:221393 +k1,2437:26023232,36450401:221392 +k1,2437:27436069,36450401:221392 +k1,2437:29359432,36450401:221393 +k1,2437:31591469,36450401:221392 +k1,2438:32583029,36450401:0 +) +(1,2438:6630773,37291889:25952256,513147,134348 +(1,2437:6630773,37291889:0,459977,115847 +r1,2437:9451022,37291889:2820249,575824,115847 +k1,2437:6630773,37291889:-2820249 +) +(1,2437:6630773,37291889:2820249,459977,115847 +k1,2437:6630773,37291889:3277 +h1,2437:9447745,37291889:0,411205,112570 +) +k1,2437:9805675,37291889:180983 +k1,2437:11178104,37291889:180984 +(1,2437:11178104,37291889:0,459977,115847 +r1,2437:14350064,37291889:3171960,575824,115847 +k1,2437:11178104,37291889:-3171960 +) +(1,2437:11178104,37291889:3171960,459977,115847 +k1,2437:11178104,37291889:3277 +h1,2437:14346787,37291889:0,411205,112570 +) +k1,2437:14704717,37291889:180983 +k1,2437:16760031,37291889:180984 +k1,2437:18113453,37291889:180983 +k1,2437:21320233,37291889:180983 +k1,2437:23511862,37291889:180984 +(1,2437:23511862,37291889:0,452978,115847 +r1,2437:26683822,37291889:3171960,568825,115847 +k1,2437:23511862,37291889:-3171960 +) +(1,2437:23511862,37291889:3171960,452978,115847 +k1,2437:23511862,37291889:3277 +h1,2437:26680545,37291889:0,411205,112570 +) +k1,2437:26864805,37291889:180983 +k1,2437:29415571,37291889:180984 +k1,2437:31923737,37291889:180983 +k1,2438:32583029,37291889:0 +) +(1,2438:6630773,38133377:25952256,513147,134348 +(1,2437:6630773,38133377:0,452978,115847 +r1,2437:9099310,38133377:2468537,568825,115847 +k1,2437:6630773,38133377:-2468537 +) +(1,2437:6630773,38133377:2468537,452978,115847 +k1,2437:6630773,38133377:3277 +h1,2437:9096033,38133377:0,411205,112570 +) +k1,2437:9370241,38133377:270931 +k1,2437:10324058,38133377:270932 +k1,2437:12296959,38133377:270931 +k1,2437:14752206,38133377:270932 +k1,2437:16214582,38133377:270931 +k1,2437:17477073,38133377:270931 +k1,2437:19725226,38133377:270932 +k1,2437:20943808,38133377:270931 +k1,2437:23787027,38133377:270931 +k1,2437:26390385,38133377:270932 +k1,2437:27932714,38133377:270931 +k1,2437:29972463,38133377:270932 +k1,2437:31923737,38133377:270931 +k1,2437:32583029,38133377:0 +) +(1,2438:6630773,38974865:25952256,513147,134348 +k1,2437:8561391,38974865:233891 +k1,2437:11821078,38974865:233890 +k1,2437:12741131,38974865:233891 +k1,2437:15981158,38974865:233891 +k1,2437:19691733,38974865:233890 +k1,2437:22951421,38974865:233891 +k1,2437:26186206,38974865:233891 +k1,2437:29799132,38974865:233890 +k1,2437:31224468,38974865:233891 +k1,2438:32583029,38974865:0 +) +(1,2438:6630773,39816353:25952256,505283,134348 +k1,2437:8402342,39816353:273416 +k1,2437:11808379,39816353:273416 +k1,2437:13273240,39816353:273416 +k1,2437:16938144,39816353:273416 +k1,2437:20186239,39816353:273416 +k1,2437:22829437,39816353:273416 +k1,2437:26037555,39816353:273416 +k1,2437:27691159,39816353:273416 +k1,2437:28956135,39816353:273416 +k1,2437:31516758,39816353:273416 +k1,2437:32583029,39816353:0 +) +(1,2438:6630773,40657841:25952256,513147,126483 +k1,2437:10422850,40657841:293110 +k1,2437:12994647,40657841:293110 +k1,2437:16764441,40657841:293109 +k1,2437:20257019,40657841:293110 +k1,2437:21236291,40657841:293110 +k1,2437:22909589,40657841:293110 +k1,2437:24194258,40657841:293109 +k1,2437:25841342,40657841:293110 +k1,2437:27980601,40657841:293110 +k1,2437:29786937,40657841:293110 +k1,2437:30696084,40657841:293109 +k1,2437:31345054,40657841:293110 +k1,2437:32583029,40657841:0 +) +(1,2438:6630773,41499329:25952256,513147,134348 +k1,2437:8120266,41499329:204987 +k1,2437:11382508,41499329:204987 +k1,2437:12606580,41499329:204987 +k1,2437:15246885,41499329:204987 +k1,2437:18383953,41499329:204987 +k1,2437:19248232,41499329:204987 +k1,2437:20472305,41499329:204988 +k1,2437:22385816,41499329:204987 +k1,2437:24775118,41499329:204987 +k1,2437:25933654,41499329:204987 +k1,2437:27799323,41499329:204987 +k1,2437:29402193,41499329:204987 +k1,2437:30626265,41499329:204987 +k1,2437:31923737,41499329:204987 +k1,2438:32583029,41499329:0 +) +(1,2438:6630773,42340817:25952256,505283,126483 +(1,2437:6630773,42340817:0,459977,115847 +r1,2437:9451022,42340817:2820249,575824,115847 +k1,2437:6630773,42340817:-2820249 +) +(1,2437:6630773,42340817:2820249,459977,115847 +k1,2437:6630773,42340817:3277 +h1,2437:9447745,42340817:0,411205,112570 +) +k1,2437:9621311,42340817:170289 +k1,2437:10983045,42340817:170289 +(1,2437:10983045,42340817:0,459977,115847 +r1,2437:14155005,42340817:3171960,575824,115847 +k1,2437:10983045,42340817:-3171960 +) +(1,2437:10983045,42340817:3171960,459977,115847 +k1,2437:10983045,42340817:3277 +h1,2437:14151728,42340817:0,411205,112570 +) +k1,2437:14325294,42340817:170289 +k1,2437:15889534,42340817:170289 +(1,2437:15889534,42340817:0,452978,115847 +r1,2437:18358071,42340817:2468537,568825,115847 +k1,2437:15889534,42340817:-2468537 +) +(1,2437:15889534,42340817:2468537,452978,115847 +k1,2437:15889534,42340817:3277 +h1,2437:18354794,42340817:0,411205,112570 +) +k1,2437:18528360,42340817:170289 +k1,2437:20882964,42340817:170289 +k1,2437:22125421,42340817:170288 +k1,2437:23675898,42340817:170289 +k1,2437:24950469,42340817:170289 +k1,2437:26406574,42340817:170289 +k1,2437:27324629,42340817:170289 +k1,2437:29008144,42340817:170289 +k1,2437:30572384,42340817:170289 +k1,2437:32583029,42340817:0 +) +(1,2438:6630773,43182305:25952256,513147,7863 +g1,2437:7489294,43182305 +g1,2437:9390493,43182305 +k1,2438:32583028,43182305:20905984 +g1,2438:32583028,43182305 +) +(1,2440:6630773,44023793:25952256,513147,134348 +h1,2439:6630773,44023793:983040,0,0 +k1,2439:9586983,44023793:189935 +k1,2439:11512312,44023793:189936 +(1,2439:11512312,44023793:0,459977,115847 +r1,2439:14332561,44023793:2820249,575824,115847 +k1,2439:11512312,44023793:-2820249 +) +(1,2439:11512312,44023793:2820249,459977,115847 +k1,2439:11512312,44023793:3277 +h1,2439:14329284,44023793:0,411205,112570 +) +k1,2439:14696166,44023793:189935 +k1,2439:15905187,44023793:189936 +k1,2439:18275505,44023793:189935 +k1,2439:19978667,44023793:189936 +k1,2439:20820030,44023793:189935 +k1,2439:23305037,44023793:189936 +k1,2439:26311054,44023793:189935 +k1,2439:27032487,44023793:189936 +k1,2439:28156965,44023793:189935 +k1,2439:29108429,44023793:189936 +k1,2439:31725818,44023793:189935 +k1,2440:32583029,44023793:0 +) +(1,2440:6630773,44865281:25952256,513147,134348 +k1,2439:9588946,44865281:199763 +k1,2439:10440136,44865281:199762 +k1,2439:12871400,44865281:199763 +k1,2439:15833506,44865281:199763 +k1,2439:19817973,44865281:199763 +k1,2439:20835624,44865281:199762 +(1,2439:20835624,44865281:0,452978,115847 +r1,2439:23304161,44865281:2468537,568825,115847 +k1,2439:20835624,44865281:-2468537 +) +(1,2439:20835624,44865281:2468537,452978,115847 +k1,2439:20835624,44865281:3277 +h1,2439:23300884,44865281:0,411205,112570 +) +k1,2439:23503924,44865281:199763 +k1,2439:25133683,44865281:199763 +(1,2439:25133683,44865281:0,459977,115847 +r1,2439:27953932,44865281:2820249,575824,115847 +k1,2439:25133683,44865281:-2820249 +) +(1,2439:25133683,44865281:2820249,459977,115847 +k1,2439:25133683,44865281:3277 +h1,2439:27950655,44865281:0,411205,112570 +) +k1,2439:28153695,44865281:199763 +k1,2439:29004885,44865281:199762 +k1,2439:30920381,44865281:199763 +k1,2440:32583029,44865281:0 +) +(1,2440:6630773,45706769:25952256,505283,126483 +g1,2439:8196428,45706769 +g1,2439:10314551,45706769 +g1,2439:10971877,45706769 +g1,2439:13549408,45706769 +g1,2439:14767722,45706769 +g1,2439:16620424,45706769 +k1,2440:32583029,45706769:13375899 +g1,2440:32583029,45706769 +) +] +(1,2442:32583029,45706769:0,0,0 +g1,2442:32583029,45706769 +) +) +] +(1,2442:6630773,47279633:25952256,0,0 +h1,2442:6630773,47279633:25952256,0,0 +) +] +h1,2442:4262630,4025873:0,0,0 ] !22939 }54 -Input:352:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:353:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:354:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:355:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:356:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:357:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:358:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:359:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:360:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:361:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:362:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:363:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:364:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:365:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:366:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:367:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:368:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1456 +Input:348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1558 {55 -[1,2513:4262630,47279633:28320399,43253760,0 -(1,2513:4262630,4025873:0,0,0 -[1,2513:-473657,4025873:25952256,0,0 -(1,2513:-473657,-710414:25952256,0,0 -h1,2513:-473657,-710414:0,0,0 -(1,2513:-473657,-710414:0,0,0 -(1,2513:-473657,-710414:0,0,0 -g1,2513:-473657,-710414 -(1,2513:-473657,-710414:65781,0,65781 -g1,2513:-407876,-710414 -[1,2513:-407876,-644633:0,0,0 +[1,2519:4262630,47279633:28320399,43253760,0 +(1,2519:4262630,4025873:0,0,0 +[1,2519:-473657,4025873:25952256,0,0 +(1,2519:-473657,-710414:25952256,0,0 +h1,2519:-473657,-710414:0,0,0 +(1,2519:-473657,-710414:0,0,0 +(1,2519:-473657,-710414:0,0,0 +g1,2519:-473657,-710414 +(1,2519:-473657,-710414:65781,0,65781 +g1,2519:-407876,-710414 +[1,2519:-407876,-644633:0,0,0 ] ) -k1,2513:-473657,-710414:-65781 +k1,2519:-473657,-710414:-65781 ) ) -k1,2513:25478599,-710414:25952256 -g1,2513:25478599,-710414 +k1,2519:25478599,-710414:25952256 +g1,2519:25478599,-710414 ) ] ) -[1,2513:6630773,47279633:25952256,43253760,0 -[1,2513:6630773,4812305:25952256,786432,0 -(1,2513:6630773,4812305:25952256,505283,134348 -(1,2513:6630773,4812305:25952256,505283,134348 -g1,2513:3078558,4812305 -[1,2513:3078558,4812305:0,0,0 -(1,2513:3078558,2439708:0,1703936,0 -k1,2513:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2513:2537886,2439708:1179648,16384,0 +[1,2519:6630773,47279633:25952256,43253760,0 +[1,2519:6630773,4812305:25952256,786432,0 +(1,2519:6630773,4812305:25952256,505283,134348 +(1,2519:6630773,4812305:25952256,505283,134348 +g1,2519:3078558,4812305 +[1,2519:3078558,4812305:0,0,0 +(1,2519:3078558,2439708:0,1703936,0 +k1,2519:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2519:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2513:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2519:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2513:3078558,4812305:0,0,0 -(1,2513:3078558,2439708:0,1703936,0 -g1,2513:29030814,2439708 -g1,2513:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2513:36151628,1915420:16384,1179648,0 +[1,2519:3078558,4812305:0,0,0 +(1,2519:3078558,2439708:0,1703936,0 +g1,2519:29030814,2439708 +g1,2519:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2519:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2513:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2519:37855564,2439708:1179648,16384,0 ) ) -k1,2513:3078556,2439708:-34777008 +k1,2519:3078556,2439708:-34777008 ) ] -[1,2513:3078558,4812305:0,0,0 -(1,2513:3078558,49800853:0,16384,2228224 -k1,2513:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2513:2537886,49800853:1179648,16384,0 +[1,2519:3078558,4812305:0,0,0 +(1,2519:3078558,49800853:0,16384,2228224 +k1,2519:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2519:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2513:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2519:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2513:3078558,4812305:0,0,0 -(1,2513:3078558,49800853:0,16384,2228224 -g1,2513:29030814,49800853 -g1,2513:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2513:36151628,51504789:16384,1179648,0 +[1,2519:3078558,4812305:0,0,0 +(1,2519:3078558,49800853:0,16384,2228224 +g1,2519:29030814,49800853 +g1,2519:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2519:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2513:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2519:37855564,49800853:1179648,16384,0 ) ) -k1,2513:3078556,49800853:-34777008 +k1,2519:3078556,49800853:-34777008 ) ] -g1,2513:6630773,4812305 -k1,2513:19562994,4812305:12135303 -g1,2513:20949735,4812305 -g1,2513:21598541,4812305 -g1,2513:24912696,4812305 -g1,2513:27600327,4812305 -g1,2513:29010006,4812305 +g1,2519:6630773,4812305 +k1,2519:19515153,4812305:12087462 +g1,2519:20901894,4812305 +g1,2519:21550700,4812305 +g1,2519:24864855,4812305 +g1,2519:27600327,4812305 +g1,2519:29010006,4812305 ) ) ] -[1,2513:6630773,45706769:25952256,40108032,0 -(1,2513:6630773,45706769:25952256,40108032,0 -(1,2513:6630773,45706769:0,0,0 -g1,2513:6630773,45706769 +[1,2519:6630773,45706769:25952256,40108032,0 +(1,2519:6630773,45706769:25952256,40108032,0 +(1,2519:6630773,45706769:0,0,0 +g1,2519:6630773,45706769 ) -[1,2513:6630773,45706769:25952256,40108032,0 -v1,2436:6630773,6254097:0,393216,0 -(1,2480:6630773,20255140:25952256,14394259,196608 -g1,2480:6630773,20255140 -g1,2480:6630773,20255140 -g1,2480:6434165,20255140 -(1,2480:6434165,20255140:0,14394259,196608 -r1,2480:32779637,20255140:26345472,14590867,196608 -k1,2480:6434165,20255140:-26345472 +[1,2519:6630773,45706769:25952256,40108032,0 +v1,2442:6630773,6254097:0,393216,0 +(1,2486:6630773,20255140:25952256,14394259,196608 +g1,2486:6630773,20255140 +g1,2486:6630773,20255140 +g1,2486:6434165,20255140 +(1,2486:6434165,20255140:0,14394259,196608 +r1,2486:32779637,20255140:26345472,14590867,196608 +k1,2486:6434165,20255140:-26345472 ) -(1,2480:6434165,20255140:26345472,14394259,196608 -[1,2480:6630773,20255140:25952256,14197651,0 -(1,2438:6630773,6461715:25952256,404226,82312 -(1,2437:6630773,6461715:0,0,0 -g1,2437:6630773,6461715 -g1,2437:6630773,6461715 -g1,2437:6303093,6461715 -(1,2437:6303093,6461715:0,0,0 -) -g1,2437:6630773,6461715 -) -g1,2438:7263065,6461715 -g1,2438:7895357,6461715 -g1,2438:12637543,6461715 -h1,2438:13902126,6461715:0,0,0 -k1,2438:32583030,6461715:18680904 -g1,2438:32583030,6461715 -) -(1,2439:6630773,7127893:25952256,410518,107478 -h1,2439:6630773,7127893:0,0,0 -g1,2439:9792230,7127893 -g1,2439:10424522,7127893 -g1,2439:12321396,7127893 -k1,2439:12321396,7127893:0 -h1,2439:14850561,7127893:0,0,0 -k1,2439:32583029,7127893:17732468 -g1,2439:32583029,7127893 -) -(1,2443:6630773,7859607:25952256,404226,76021 -(1,2441:6630773,7859607:0,0,0 -g1,2441:6630773,7859607 -g1,2441:6630773,7859607 -g1,2441:6303093,7859607 -(1,2441:6303093,7859607:0,0,0 -) -g1,2441:6630773,7859607 -) -g1,2443:7579210,7859607 -g1,2443:8843793,7859607 -g1,2443:12321396,7859607 -g1,2443:12953688,7859607 -g1,2443:13269834,7859607 -h1,2443:15482854,7859607:0,0,0 -k1,2443:32583030,7859607:17100176 -g1,2443:32583030,7859607 -) -(1,2445:6630773,9181145:25952256,410518,107478 -(1,2444:6630773,9181145:0,0,0 -g1,2444:6630773,9181145 -g1,2444:6630773,9181145 -g1,2444:6303093,9181145 -(1,2444:6303093,9181145:0,0,0 -) -g1,2444:6630773,9181145 -) -k1,2445:6630773,9181145:0 -g1,2445:10740667,9181145 -g1,2445:11372959,9181145 -g1,2445:13269833,9181145 -k1,2445:13269833,9181145:0 -h1,2445:15798998,9181145:0,0,0 -k1,2445:32583030,9181145:16784032 -g1,2445:32583030,9181145 -) -(1,2449:6630773,9912859:25952256,404226,76021 -(1,2447:6630773,9912859:0,0,0 -g1,2447:6630773,9912859 -g1,2447:6630773,9912859 -g1,2447:6303093,9912859 -(1,2447:6303093,9912859:0,0,0 -) -g1,2447:6630773,9912859 -) -g1,2449:7579210,9912859 -g1,2449:8843793,9912859 -h1,2449:12005250,9912859:0,0,0 -k1,2449:32583030,9912859:20577780 -g1,2449:32583030,9912859 -) -(1,2451:6630773,11234397:25952256,410518,107478 -(1,2450:6630773,11234397:0,0,0 -g1,2450:6630773,11234397 -g1,2450:6630773,11234397 -g1,2450:6303093,11234397 -(1,2450:6303093,11234397:0,0,0 -) -g1,2450:6630773,11234397 -) -k1,2451:6630773,11234397:0 -g1,2451:10740667,11234397 -g1,2451:11372959,11234397 -g1,2451:13269833,11234397 -k1,2451:13269833,11234397:0 -h1,2451:15798998,11234397:0,0,0 -k1,2451:32583030,11234397:16784032 -g1,2451:32583030,11234397 -) -(1,2455:6630773,11966111:25952256,404226,76021 -(1,2453:6630773,11966111:0,0,0 -g1,2453:6630773,11966111 -g1,2453:6630773,11966111 -g1,2453:6303093,11966111 -(1,2453:6303093,11966111:0,0,0 -) -g1,2453:6630773,11966111 -) -g1,2455:7579210,11966111 -g1,2455:8843793,11966111 -h1,2455:9792230,11966111:0,0,0 -k1,2455:32583030,11966111:22790800 -g1,2455:32583030,11966111 -) -(1,2457:6630773,13287649:25952256,410518,107478 -(1,2456:6630773,13287649:0,0,0 -g1,2456:6630773,13287649 -g1,2456:6630773,13287649 -g1,2456:6303093,13287649 -(1,2456:6303093,13287649:0,0,0 -) -g1,2456:6630773,13287649 -) -k1,2457:6630773,13287649:0 -g1,2457:9792230,13287649 -g1,2457:12005250,13287649 -g1,2457:12637542,13287649 -g1,2457:13585980,13287649 -g1,2457:15799000,13287649 -g1,2457:16431292,13287649 -h1,2457:17063584,13287649:0,0,0 -k1,2457:32583029,13287649:15519445 -g1,2457:32583029,13287649 -) -(1,2461:6630773,14019363:25952256,404226,76021 -(1,2459:6630773,14019363:0,0,0 -g1,2459:6630773,14019363 -g1,2459:6630773,14019363 -g1,2459:6303093,14019363 -(1,2459:6303093,14019363:0,0,0 -) -g1,2459:6630773,14019363 -) -g1,2461:7579210,14019363 -g1,2461:8843793,14019363 -g1,2461:11372959,14019363 -g1,2461:12005251,14019363 -g1,2461:12321397,14019363 -h1,2461:13585980,14019363:0,0,0 -k1,2461:32583028,14019363:18997048 -g1,2461:32583028,14019363 -) -(1,2463:6630773,15340901:25952256,410518,107478 -(1,2462:6630773,15340901:0,0,0 -g1,2462:6630773,15340901 -g1,2462:6630773,15340901 -g1,2462:6303093,15340901 -(1,2462:6303093,15340901:0,0,0 -) -g1,2462:6630773,15340901 -) -k1,2463:6630773,15340901:0 -g1,2463:10740668,15340901 -g1,2463:12953688,15340901 -g1,2463:13585980,15340901 -g1,2463:14534418,15340901 -g1,2463:16747438,15340901 -g1,2463:17379730,15340901 -h1,2463:18012022,15340901:0,0,0 -k1,2463:32583029,15340901:14571007 -g1,2463:32583029,15340901 -) -(1,2467:6630773,16072615:25952256,404226,76021 -(1,2465:6630773,16072615:0,0,0 -g1,2465:6630773,16072615 -g1,2465:6630773,16072615 -g1,2465:6303093,16072615 -(1,2465:6303093,16072615:0,0,0 -) -g1,2465:6630773,16072615 -) -g1,2467:7579210,16072615 -g1,2467:8843793,16072615 -h1,2467:11056813,16072615:0,0,0 -k1,2467:32583029,16072615:21526216 -g1,2467:32583029,16072615 -) -(1,2469:6630773,17394153:25952256,410518,107478 -(1,2468:6630773,17394153:0,0,0 -g1,2468:6630773,17394153 -g1,2468:6630773,17394153 -g1,2468:6303093,17394153 -(1,2468:6303093,17394153:0,0,0 -) -g1,2468:6630773,17394153 -) -k1,2469:6630773,17394153:0 -g1,2469:10740668,17394153 -g1,2469:12953688,17394153 -g1,2469:13585980,17394153 -g1,2469:14534418,17394153 -g1,2469:16747438,17394153 -g1,2469:17379730,17394153 -h1,2469:18012022,17394153:0,0,0 -k1,2469:32583029,17394153:14571007 -g1,2469:32583029,17394153 -) -(1,2473:6630773,18125867:25952256,404226,76021 -(1,2471:6630773,18125867:0,0,0 -g1,2471:6630773,18125867 -g1,2471:6630773,18125867 -g1,2471:6303093,18125867 -(1,2471:6303093,18125867:0,0,0 -) -g1,2471:6630773,18125867 -) -g1,2473:7579210,18125867 -g1,2473:8843793,18125867 -h1,2473:10424521,18125867:0,0,0 -k1,2473:32583029,18125867:22158508 -g1,2473:32583029,18125867 -) -(1,2475:6630773,19447405:25952256,410518,107478 -(1,2474:6630773,19447405:0,0,0 -g1,2474:6630773,19447405 -g1,2474:6630773,19447405 -g1,2474:6303093,19447405 -(1,2474:6303093,19447405:0,0,0 -) -g1,2474:6630773,19447405 -) -k1,2475:6630773,19447405:0 -g1,2475:9792230,19447405 -g1,2475:12005250,19447405 -g1,2475:12637542,19447405 -g1,2475:13585980,19447405 -g1,2475:17063583,19447405 -g1,2475:17695875,19447405 -h1,2475:19276604,19447405:0,0,0 -k1,2475:32583029,19447405:13306425 -g1,2475:32583029,19447405 -) -(1,2479:6630773,20179119:25952256,404226,76021 -(1,2477:6630773,20179119:0,0,0 -g1,2477:6630773,20179119 -g1,2477:6630773,20179119 -g1,2477:6303093,20179119 -(1,2477:6303093,20179119:0,0,0 -) -g1,2477:6630773,20179119 -) -g1,2479:7579210,20179119 -g1,2479:8843793,20179119 -g1,2479:12321396,20179119 -h1,2479:15482853,20179119:0,0,0 -k1,2479:32583029,20179119:17100176 -g1,2479:32583029,20179119 -) -] -) -g1,2480:32583029,20255140 -g1,2480:6630773,20255140 -g1,2480:6630773,20255140 -g1,2480:32583029,20255140 -g1,2480:32583029,20255140 -) -h1,2480:6630773,20451748:0,0,0 -(1,2484:6630773,21648998:25952256,513147,115847 -h1,2483:6630773,21648998:983040,0,0 -k1,2483:10659018,21648998:255337 -(1,2483:10659018,21648998:0,459977,115847 -r1,2483:13830978,21648998:3171960,575824,115847 -k1,2483:10659018,21648998:-3171960 -) -(1,2483:10659018,21648998:3171960,459977,115847 -k1,2483:10659018,21648998:3277 -h1,2483:13827701,21648998:0,411205,112570 -) -k1,2483:14086315,21648998:255337 -k1,2483:14873149,21648998:255337 -k1,2483:17330496,21648998:255337 -k1,2483:18237261,21648998:255337 -k1,2483:19450079,21648998:255337 -k1,2483:22400911,21648998:255336 -k1,2483:23315540,21648998:255337 -k1,2483:24589962,21648998:255337 -k1,2483:26498772,21648998:255337 -k1,2483:28665794,21648998:255337 -k1,2483:30117818,21648998:255337 -k1,2483:31753999,21648998:255337 -k1,2484:32583029,21648998:0 -) -(1,2484:6630773,22490486:25952256,513147,126483 -k1,2483:9079651,22490486:254733 -k1,2483:9865882,22490486:254734 -k1,2483:12072277,22490486:254733 -k1,2483:15051342,22490486:254733 -k1,2483:16378245,22490486:254734 -k1,2483:17986952,22490486:254733 -k1,2483:21272070,22490486:254733 -k1,2483:23017092,22490486:254733 -k1,2483:24428536,22490486:254734 -k1,2483:26625101,22490486:254733 -k1,2483:27898919,22490486:254733 -k1,2483:30411368,22490486:254734 -k1,2483:31563944,22490486:254733 -k1,2483:32583029,22490486:0 -) -(1,2484:6630773,23331974:25952256,513147,134348 -k1,2483:10254366,23331974:196060 -k1,2483:10981924,23331974:196061 -k1,2483:14009795,23331974:196060 -k1,2483:15941249,23331974:196061 -k1,2483:16493169,23331974:196060 -(1,2483:16493169,23331974:0,452978,115847 -r1,2483:19665129,23331974:3171960,568825,115847 -k1,2483:16493169,23331974:-3171960 -) -(1,2483:16493169,23331974:3171960,452978,115847 -k1,2483:16493169,23331974:3277 -h1,2483:19661852,23331974:0,411205,112570 -) -k1,2483:19861189,23331974:196060 -k1,2483:21923060,23331974:196061 -k1,2483:22805282,23331974:196060 -k1,2483:25985197,23331974:196061 -k1,2483:26809092,23331974:196060 -k1,2483:28208394,23331974:196061 -k1,2483:31388308,23331974:196060 -k1,2484:32583029,23331974:0 -) -(1,2484:6630773,24173462:25952256,513147,134348 -k1,2483:9994080,24173462:281149 -k1,2483:11222881,24173462:281150 -k1,2483:12893393,24173462:281149 -k1,2483:14365988,24173462:281150 -k1,2483:15666222,24173462:281149 -k1,2483:19374904,24173462:281149 -k1,2483:23493842,24173462:281150 -k1,2483:24766551,24173462:281149 -k1,2483:28372342,24173462:281150 -k1,2483:30388884,24173462:281149 -k1,2483:32583029,24173462:0 -) -(1,2484:6630773,25014950:25952256,505283,126483 -k1,2483:8836816,25014950:205884 -k1,2483:10917030,25014950:205884 -k1,2483:12949402,25014950:205884 -k1,2483:14643608,25014950:205883 -k1,2483:16243443,25014950:205884 -k1,2483:16805187,25014950:205884 -k1,2483:19420174,25014950:205884 -k1,2483:22774408,25014950:205884 -k1,2483:23933841,25014950:205884 -k1,2483:25800406,25014950:205883 -k1,2483:26622328,25014950:205884 -k1,2483:27847297,25014950:205884 -k1,2483:30714598,25014950:205884 -k1,2483:32583029,25014950:0 -) -(1,2484:6630773,25856438:25952256,513147,134348 -k1,2483:7877077,25856438:227219 -k1,2483:9196782,25856438:227220 -k1,2483:10083293,25856438:227219 -k1,2483:12002652,25856438:227219 -k1,2483:12889164,25856438:227220 -k1,2483:14986781,25856438:227219 -(1,2483:14986781,25856438:0,459977,115847 -r1,2483:15345047,25856438:358266,575824,115847 -k1,2483:14986781,25856438:-358266 -) -(1,2483:14986781,25856438:358266,459977,115847 -k1,2483:14986781,25856438:3277 -h1,2483:15341770,25856438:0,411205,112570 -) -k1,2483:15572266,25856438:227219 -k1,2483:16330983,25856438:227220 -k1,2483:18071428,25856438:227219 -k1,2483:19246298,25856438:227219 -(1,2483:19246298,25856438:0,452978,115847 -r1,2483:21714835,25856438:2468537,568825,115847 -k1,2483:19246298,25856438:-2468537 -) -(1,2483:19246298,25856438:2468537,452978,115847 -k1,2483:19246298,25856438:3277 -h1,2483:21711558,25856438:0,411205,112570 -) -k1,2483:21942055,25856438:227220 -k1,2483:24179919,25856438:227219 -k1,2483:25058566,25856438:227219 -k1,2483:26033552,25856438:227220 -k1,2483:29466137,25856438:227219 -k1,2483:32583029,25856438:0 -) -(1,2484:6630773,26697926:25952256,513147,134348 -k1,2483:7461701,26697926:179500 -k1,2483:7997061,26697926:179500 -k1,2483:10040406,26697926:179501 -k1,2483:12381939,26697926:179500 -k1,2483:14250957,26697926:179500 -(1,2483:14250957,26697926:0,414482,122846 -r1,2483:14609223,26697926:358266,537328,122846 -k1,2483:14250957,26697926:-358266 -) -(1,2483:14250957,26697926:358266,414482,122846 -k1,2483:14250957,26697926:3277 -h1,2483:14605946,26697926:0,411205,112570 -) -k1,2483:14788723,26697926:179500 -k1,2483:15499720,26697926:179500 -k1,2483:17192446,26697926:179500 -k1,2483:19069985,26697926:179501 -k1,2483:20117837,26697926:179500 -k1,2483:21231880,26697926:179500 -k1,2483:22430465,26697926:179500 -k1,2483:25095746,26697926:179500 -k1,2483:25934539,26697926:179501 -k1,2483:29427539,26697926:179500 -k1,2483:31391584,26697926:179500 -k1,2484:32583029,26697926:0 -) -(1,2484:6630773,27539414:25952256,513147,126483 -(1,2483:6630773,27539414:0,414482,115847 -r1,2483:6989039,27539414:358266,530329,115847 -k1,2483:6630773,27539414:-358266 -) -(1,2483:6630773,27539414:358266,414482,115847 -k1,2483:6630773,27539414:3277 -h1,2483:6985762,27539414:0,411205,112570 -) -g1,2483:7188268,27539414 -g1,2483:8335148,27539414 -g1,2483:12258133,27539414 -g1,2483:13140247,27539414 -g1,2483:16079537,27539414 -k1,2484:32583029,27539414:13640224 -g1,2484:32583029,27539414 -) -v1,2486:6630773,28561354:0,393216,0 -(1,2506:6630773,34349389:25952256,6181251,196608 -g1,2506:6630773,34349389 -g1,2506:6630773,34349389 -g1,2506:6434165,34349389 -(1,2506:6434165,34349389:0,6181251,196608 -r1,2506:32779637,34349389:26345472,6377859,196608 -k1,2506:6434165,34349389:-26345472 -) -(1,2506:6434165,34349389:26345472,6181251,196608 -[1,2506:6630773,34349389:25952256,5984643,0 -(1,2488:6630773,28768972:25952256,404226,82312 -(1,2487:6630773,28768972:0,0,0 -g1,2487:6630773,28768972 -g1,2487:6630773,28768972 -g1,2487:6303093,28768972 -(1,2487:6303093,28768972:0,0,0 -) -g1,2487:6630773,28768972 -) -g1,2488:7263065,28768972 -g1,2488:7895357,28768972 -g1,2488:12637543,28768972 -h1,2488:13902126,28768972:0,0,0 -k1,2488:32583030,28768972:18680904 -g1,2488:32583030,28768972 -) -(1,2489:6630773,29435150:25952256,410518,101187 -h1,2489:6630773,29435150:0,0,0 -g1,2489:10740668,29435150 -g1,2489:13269834,29435150 -g1,2489:14850563,29435150 -g1,2489:16747437,29435150 -g1,2489:18012020,29435150 -g1,2489:20225040,29435150 -g1,2489:22121915,29435150 -h1,2489:23702643,29435150:0,0,0 -k1,2489:32583029,29435150:8880386 -g1,2489:32583029,29435150 -) -(1,2493:6630773,30166864:25952256,404226,76021 -(1,2491:6630773,30166864:0,0,0 -g1,2491:6630773,30166864 -g1,2491:6630773,30166864 -g1,2491:6303093,30166864 -(1,2491:6303093,30166864:0,0,0 -) -g1,2491:6630773,30166864 -) -g1,2493:7579210,30166864 -g1,2493:8843793,30166864 -g1,2493:10424522,30166864 -g1,2493:12953688,30166864 -g1,2493:14534417,30166864 -g1,2493:16747437,30166864 -g1,2493:18012020,30166864 -h1,2493:18644311,30166864:0,0,0 -k1,2493:32583029,30166864:13938718 -g1,2493:32583029,30166864 -) -(1,2495:6630773,31488402:25952256,410518,107478 -(1,2494:6630773,31488402:0,0,0 -g1,2494:6630773,31488402 -g1,2494:6630773,31488402 -g1,2494:6303093,31488402 -(1,2494:6303093,31488402:0,0,0 -) -g1,2494:6630773,31488402 -) -k1,2495:6630773,31488402:0 -g1,2495:10740668,31488402 -g1,2495:13269834,31488402 -g1,2495:14850563,31488402 -g1,2495:16431292,31488402 -g1,2495:17695875,31488402 -g1,2495:19908895,31488402 -g1,2495:21805770,31488402 -h1,2495:23386498,31488402:0,0,0 -k1,2495:32583029,31488402:9196531 -g1,2495:32583029,31488402 -) -(1,2499:6630773,32220116:25952256,404226,76021 -(1,2497:6630773,32220116:0,0,0 -g1,2497:6630773,32220116 -g1,2497:6630773,32220116 -g1,2497:6303093,32220116 -(1,2497:6303093,32220116:0,0,0 -) -g1,2497:6630773,32220116 -) -g1,2499:7579210,32220116 -g1,2499:8843793,32220116 -g1,2499:10424522,32220116 -g1,2499:12953688,32220116 -g1,2499:14534417,32220116 -g1,2499:16431291,32220116 -g1,2499:17695874,32220116 -h1,2499:18328165,32220116:0,0,0 -k1,2499:32583029,32220116:14254864 -g1,2499:32583029,32220116 -) -(1,2501:6630773,33541654:25952256,410518,101187 -(1,2500:6630773,33541654:0,0,0 -g1,2500:6630773,33541654 -g1,2500:6630773,33541654 -g1,2500:6303093,33541654 -(1,2500:6303093,33541654:0,0,0 -) -g1,2500:6630773,33541654 -) -k1,2501:6630773,33541654:0 -g1,2501:10740668,33541654 -g1,2501:13269834,33541654 -g1,2501:14850563,33541654 -g1,2501:16747437,33541654 -g1,2501:18012020,33541654 -g1,2501:20225040,33541654 -g1,2501:22121915,33541654 -h1,2501:23702643,33541654:0,0,0 -k1,2501:32583029,33541654:8880386 -g1,2501:32583029,33541654 -) -(1,2505:6630773,34273368:25952256,404226,76021 -(1,2503:6630773,34273368:0,0,0 -g1,2503:6630773,34273368 -g1,2503:6630773,34273368 -g1,2503:6303093,34273368 -(1,2503:6303093,34273368:0,0,0 -) -g1,2503:6630773,34273368 -) -g1,2505:7579210,34273368 -g1,2505:8843793,34273368 -g1,2505:10424522,34273368 -g1,2505:12953688,34273368 -g1,2505:14534417,34273368 -g1,2505:17379728,34273368 -g1,2505:18644311,34273368 -h1,2505:20541185,34273368:0,0,0 -k1,2505:32583029,34273368:12041844 -g1,2505:32583029,34273368 -) -] -) -g1,2506:32583029,34349389 -g1,2506:6630773,34349389 -g1,2506:6630773,34349389 -g1,2506:32583029,34349389 -g1,2506:32583029,34349389 -) -h1,2506:6630773,34545997:0,0,0 -(1,2510:6630773,35743247:25952256,505283,126483 -h1,2509:6630773,35743247:983040,0,0 -k1,2509:8529716,35743247:288068 -k1,2509:9836869,35743247:288068 -k1,2509:12935121,35743247:288068 -(1,2509:12935121,35743247:0,459977,115847 -r1,2509:24548165,35743247:11613044,575824,115847 -k1,2509:12935121,35743247:-11613044 -) -(1,2509:12935121,35743247:11613044,459977,115847 -g1,2509:14696957,35743247 -g1,2509:17510652,35743247 -g1,2509:19269211,35743247 -g1,2509:21379482,35743247 -g1,2509:22786329,35743247 -h1,2509:24544888,35743247:0,411205,112570 -) -k1,2509:25009904,35743247:288069 -k1,2509:26952756,35743247:288068 -k1,2509:28232384,35743247:288068 -k1,2509:29692891,35743247:288068 -k1,2510:32583029,35743247:0 -) -(1,2510:6630773,36584735:25952256,513147,126483 -k1,2509:8264271,36584735:246756 -k1,2509:9458678,36584735:246756 -(1,2509:9458678,36584735:0,452978,115847 -r1,2509:11927215,36584735:2468537,568825,115847 -k1,2509:9458678,36584735:-2468537 -) -(1,2509:9458678,36584735:2468537,452978,115847 -k1,2509:9458678,36584735:3277 -h1,2509:11923938,36584735:0,411205,112570 -) -k1,2509:12173972,36584735:246757 -k1,2509:14605043,36584735:246756 -(1,2509:14605043,36584735:0,459977,115847 -r1,2509:16370156,36584735:1765113,575824,115847 -k1,2509:14605043,36584735:-1765113 -) -(1,2509:14605043,36584735:1765113,459977,115847 -k1,2509:14605043,36584735:3277 -h1,2509:16366879,36584735:0,411205,112570 -) -k1,2509:16616912,36584735:246756 -k1,2509:18055113,36584735:246756 -(1,2509:18055113,36584735:0,459977,115847 -r1,2509:19468514,36584735:1413401,575824,115847 -k1,2509:18055113,36584735:-1413401 -) -(1,2509:18055113,36584735:1413401,459977,115847 -k1,2509:18055113,36584735:3277 -h1,2509:19465237,36584735:0,411205,112570 -) -k1,2509:19888941,36584735:246757 -k1,2509:20860525,36584735:246756 -k1,2509:21723319,36584735:246756 -k1,2509:24636080,36584735:246756 -k1,2509:25534264,36584735:246756 -k1,2509:26800106,36584735:246757 -k1,2509:30030716,36584735:246756 -k1,2509:31145824,36584735:246756 -k1,2509:32583029,36584735:0 -) -(1,2510:6630773,37426223:25952256,513147,126483 -k1,2509:8072430,37426223:269218 -k1,2509:10352293,37426223:269218 -k1,2509:13593569,37426223:269218 -k1,2509:15430409,37426223:269219 -k1,2509:16718712,37426223:269218 -k1,2509:18294063,37426223:269218 -k1,2509:19735720,37426223:269218 -k1,2509:22949471,37426223:269218 -k1,2509:23877981,37426223:269218 -k1,2509:26125077,37426223:269219 -(1,2509:26125077,37426223:0,414482,115847 -r1,2509:26483343,37426223:358266,530329,115847 -k1,2509:26125077,37426223:-358266 -) -(1,2509:26125077,37426223:358266,414482,115847 -k1,2509:26125077,37426223:3277 -h1,2509:26480066,37426223:0,411205,112570 -) -k1,2509:26926231,37426223:269218 -k1,2509:29069779,37426223:269218 -k1,2509:31107814,37426223:269218 -k1,2509:32583029,37426223:0 -) -(1,2510:6630773,38267711:25952256,513147,134348 -k1,2509:8320565,38267711:179842 -k1,2509:9672845,38267711:179841 -k1,2509:12615030,38267711:179842 -k1,2509:15103049,38267711:179841 -k1,2509:15942183,38267711:179842 -k1,2509:18135291,38267711:179842 -k1,2509:19645513,38267711:179841 -k1,2509:20508240,38267711:179842 -k1,2509:22154777,38267711:179841 -k1,2509:24954748,38267711:179842 -k1,2509:28396316,38267711:179841 -k1,2509:29772845,38267711:179842 -k1,2509:32583029,38267711:0 -) -(1,2510:6630773,39109199:25952256,513147,126483 -k1,2509:8426720,39109199:190315 -k1,2509:10109946,39109199:190316 -k1,2509:11366532,39109199:190315 -k1,2509:13087113,39109199:190315 -k1,2509:13928857,39109199:190316 -k1,2509:14866938,39109199:190315 -k1,2509:15413113,39109199:190315 -(1,2509:15413113,39109199:0,452978,115847 -r1,2509:18585073,39109199:3171960,568825,115847 -k1,2509:15413113,39109199:-3171960 -) -(1,2509:15413113,39109199:3171960,452978,115847 -k1,2509:15413113,39109199:3277 -h1,2509:18581796,39109199:0,411205,112570 -) -k1,2509:18775389,39109199:190316 -k1,2509:21723459,39109199:190315 -k1,2509:22599936,39109199:190315 -k1,2509:23406290,39109199:190316 -k1,2509:25293332,39109199:190315 -k1,2509:28649036,39109199:190315 -k1,2509:29525514,39109199:190316 -k1,2509:30071689,39109199:190315 -k1,2509:32583029,39109199:0 -) -(1,2510:6630773,39950687:25952256,505283,134348 -g1,2509:7934284,39950687 -g1,2509:8881279,39950687 -g1,2509:10366324,39950687 -g1,2509:12770840,39950687 -g1,2509:13656231,39950687 -k1,2510:32583029,39950687:15680800 -g1,2510:32583029,39950687 -) -v1,2512:6630773,41147937:0,393216,0 -(1,2513:6630773,45116945:25952256,4362224,589824 -g1,2513:6630773,45116945 -(1,2513:6630773,45116945:25952256,4362224,589824 -(1,2513:6630773,45706769:25952256,4952048,0 -[1,2513:6630773,45706769:25952256,4952048,0 -(1,2513:6630773,45706769:25952256,4925834,0 -r1,2513:6656987,45706769:26214,4925834,0 -[1,2513:6656987,45706769:25899828,4925834,0 -(1,2513:6656987,45116945:25899828,3746186,0 -[1,2513:7246811,45116945:24720180,3746186,0 -(1,2513:7246811,42458133:24720180,1087374,126483 -k1,2512:8692885,42458133:236371 -k1,2512:11719124,42458133:236371 -(1,2512:11719124,42458133:0,459977,115847 -r1,2513:14539373,42458133:2820249,575824,115847 -k1,2512:11719124,42458133:-2820249 -) -(1,2512:11719124,42458133:2820249,459977,115847 -k1,2512:11719124,42458133:3277 -h1,2512:14536096,42458133:0,411205,112570 -) -k1,2512:14775744,42458133:236371 -k1,2512:16349048,42458133:236370 -k1,2512:17333185,42458133:236371 -k1,2512:19439954,42458133:236371 -k1,2512:20327753,42458133:236371 -k1,2512:21830280,42458133:236371 -k1,2512:22682689,42458133:236371 -k1,2512:24611199,42458133:236370 -k1,2512:26718623,42458133:236371 -k1,2512:28027163,42458133:236371 -(1,2512:28027163,42458133:0,459977,115847 -r1,2513:31199123,42458133:3171960,575824,115847 -k1,2512:28027163,42458133:-3171960 -) -(1,2512:28027163,42458133:3171960,459977,115847 -k1,2512:28027163,42458133:3277 -h1,2512:31195846,42458133:0,411205,112570 -) -k1,2512:31435494,42458133:236371 -k1,2512:31966991,42458133:0 -) -(1,2513:7246811,43299621:24720180,513147,134348 -k1,2512:9059842,43299621:162834 -k1,2512:11523646,43299621:162835 -k1,2512:12877925,43299621:162834 -k1,2512:16071145,43299621:162835 -k1,2512:18155495,43299621:162834 -k1,2512:19712281,43299621:162835 -k1,2512:23288230,43299621:162834 -k1,2512:24067103,43299621:162835 -k1,2512:25249022,43299621:162834 -k1,2512:26504342,43299621:162835 -k1,2512:27326468,43299621:162834 -k1,2512:28508388,43299621:162835 -k1,2512:29124695,43299621:162798 -k1,2512:31966991,43299621:0 -) -(1,2513:7246811,44141109:24720180,513147,134348 -k1,2512:8546716,44141109:167443 -k1,2512:11048551,44141109:167443 -k1,2512:12938936,44141109:167443 -k1,2512:14928935,44141109:167443 -(1,2512:14928935,44141109:0,459977,115847 -r1,2513:18100895,44141109:3171960,575824,115847 -k1,2512:14928935,44141109:-3171960 -) -(1,2512:14928935,44141109:3171960,459977,115847 -k1,2512:14928935,44141109:3277 -h1,2512:18097618,44141109:0,411205,112570 -) -k1,2512:18268338,44141109:167443 -k1,2512:19627226,44141109:167443 -k1,2512:20583067,44141109:167443 -k1,2512:21842995,44141109:167443 -k1,2512:22669730,44141109:167443 -k1,2512:25977658,44141109:167443 -k1,2512:27092752,44141109:167443 -k1,2512:30687728,44141109:167443 -k1,2513:31966991,44141109:0 -) -(1,2513:7246811,44982597:24720180,513147,134348 -k1,2512:8696337,44982597:183370 -k1,2512:10369995,44982597:183369 -k1,2512:11019326,44982597:183370 -k1,2512:12373168,44982597:183369 -k1,2512:13548098,44982597:183370 -k1,2512:16223802,44982597:183370 -k1,2512:17801122,44982597:183369 -k1,2512:18611671,44982597:183370 -k1,2512:20181782,44982597:183369 -k1,2512:21200736,44982597:183370 -k1,2512:22403191,44982597:183370 -k1,2512:23974613,44982597:183369 -k1,2512:25986437,44982597:183370 -k1,2512:27117457,44982597:183369 -k1,2512:28767523,44982597:183370 -k1,2512:31966991,44982597:0 -) -] -) -] -r1,2513:32583029,45706769:26214,4925834,0 -) -] -) -) -g1,2513:32583029,45116945 -) -] -(1,2513:32583029,45706769:0,0,0 -g1,2513:32583029,45706769 -) -) -] -(1,2513:6630773,47279633:25952256,0,0 -h1,2513:6630773,47279633:25952256,0,0 -) -] -h1,2513:4262630,4025873:0,0,0 -] -!26892 +(1,2486:6434165,20255140:26345472,14394259,196608 +[1,2486:6630773,20255140:25952256,14197651,0 +(1,2444:6630773,6461715:25952256,404226,82312 +(1,2443:6630773,6461715:0,0,0 +g1,2443:6630773,6461715 +g1,2443:6630773,6461715 +g1,2443:6303093,6461715 +(1,2443:6303093,6461715:0,0,0 +) +g1,2443:6630773,6461715 +) +g1,2444:7263065,6461715 +g1,2444:7895357,6461715 +g1,2444:12637543,6461715 +h1,2444:13902126,6461715:0,0,0 +k1,2444:32583030,6461715:18680904 +g1,2444:32583030,6461715 +) +(1,2445:6630773,7127893:25952256,410518,107478 +h1,2445:6630773,7127893:0,0,0 +g1,2445:9792230,7127893 +g1,2445:10424522,7127893 +g1,2445:12321396,7127893 +k1,2445:12321396,7127893:0 +h1,2445:14850561,7127893:0,0,0 +k1,2445:32583029,7127893:17732468 +g1,2445:32583029,7127893 +) +(1,2449:6630773,7859607:25952256,404226,76021 +(1,2447:6630773,7859607:0,0,0 +g1,2447:6630773,7859607 +g1,2447:6630773,7859607 +g1,2447:6303093,7859607 +(1,2447:6303093,7859607:0,0,0 +) +g1,2447:6630773,7859607 +) +g1,2449:7579210,7859607 +g1,2449:8843793,7859607 +g1,2449:12321396,7859607 +g1,2449:12953688,7859607 +g1,2449:13269834,7859607 +h1,2449:15482854,7859607:0,0,0 +k1,2449:32583030,7859607:17100176 +g1,2449:32583030,7859607 +) +(1,2451:6630773,9181145:25952256,410518,107478 +(1,2450:6630773,9181145:0,0,0 +g1,2450:6630773,9181145 +g1,2450:6630773,9181145 +g1,2450:6303093,9181145 +(1,2450:6303093,9181145:0,0,0 +) +g1,2450:6630773,9181145 +) +k1,2451:6630773,9181145:0 +g1,2451:10740667,9181145 +g1,2451:11372959,9181145 +g1,2451:13269833,9181145 +k1,2451:13269833,9181145:0 +h1,2451:15798998,9181145:0,0,0 +k1,2451:32583030,9181145:16784032 +g1,2451:32583030,9181145 +) +(1,2455:6630773,9912859:25952256,404226,76021 +(1,2453:6630773,9912859:0,0,0 +g1,2453:6630773,9912859 +g1,2453:6630773,9912859 +g1,2453:6303093,9912859 +(1,2453:6303093,9912859:0,0,0 +) +g1,2453:6630773,9912859 +) +g1,2455:7579210,9912859 +g1,2455:8843793,9912859 +h1,2455:12005250,9912859:0,0,0 +k1,2455:32583030,9912859:20577780 +g1,2455:32583030,9912859 +) +(1,2457:6630773,11234397:25952256,410518,107478 +(1,2456:6630773,11234397:0,0,0 +g1,2456:6630773,11234397 +g1,2456:6630773,11234397 +g1,2456:6303093,11234397 +(1,2456:6303093,11234397:0,0,0 +) +g1,2456:6630773,11234397 +) +k1,2457:6630773,11234397:0 +g1,2457:10740667,11234397 +g1,2457:11372959,11234397 +g1,2457:13269833,11234397 +k1,2457:13269833,11234397:0 +h1,2457:15798998,11234397:0,0,0 +k1,2457:32583030,11234397:16784032 +g1,2457:32583030,11234397 +) +(1,2461:6630773,11966111:25952256,404226,76021 +(1,2459:6630773,11966111:0,0,0 +g1,2459:6630773,11966111 +g1,2459:6630773,11966111 +g1,2459:6303093,11966111 +(1,2459:6303093,11966111:0,0,0 +) +g1,2459:6630773,11966111 +) +g1,2461:7579210,11966111 +g1,2461:8843793,11966111 +h1,2461:9792230,11966111:0,0,0 +k1,2461:32583030,11966111:22790800 +g1,2461:32583030,11966111 +) +(1,2463:6630773,13287649:25952256,410518,107478 +(1,2462:6630773,13287649:0,0,0 +g1,2462:6630773,13287649 +g1,2462:6630773,13287649 +g1,2462:6303093,13287649 +(1,2462:6303093,13287649:0,0,0 +) +g1,2462:6630773,13287649 +) +k1,2463:6630773,13287649:0 +g1,2463:9792230,13287649 +g1,2463:12005250,13287649 +g1,2463:12637542,13287649 +g1,2463:13585980,13287649 +g1,2463:15799000,13287649 +g1,2463:16431292,13287649 +h1,2463:17063584,13287649:0,0,0 +k1,2463:32583029,13287649:15519445 +g1,2463:32583029,13287649 +) +(1,2467:6630773,14019363:25952256,404226,76021 +(1,2465:6630773,14019363:0,0,0 +g1,2465:6630773,14019363 +g1,2465:6630773,14019363 +g1,2465:6303093,14019363 +(1,2465:6303093,14019363:0,0,0 +) +g1,2465:6630773,14019363 +) +g1,2467:7579210,14019363 +g1,2467:8843793,14019363 +g1,2467:11372959,14019363 +g1,2467:12005251,14019363 +g1,2467:12321397,14019363 +h1,2467:13585980,14019363:0,0,0 +k1,2467:32583028,14019363:18997048 +g1,2467:32583028,14019363 +) +(1,2469:6630773,15340901:25952256,410518,107478 +(1,2468:6630773,15340901:0,0,0 +g1,2468:6630773,15340901 +g1,2468:6630773,15340901 +g1,2468:6303093,15340901 +(1,2468:6303093,15340901:0,0,0 +) +g1,2468:6630773,15340901 +) +k1,2469:6630773,15340901:0 +g1,2469:10740668,15340901 +g1,2469:12953688,15340901 +g1,2469:13585980,15340901 +g1,2469:14534418,15340901 +g1,2469:16747438,15340901 +g1,2469:17379730,15340901 +h1,2469:18012022,15340901:0,0,0 +k1,2469:32583029,15340901:14571007 +g1,2469:32583029,15340901 +) +(1,2473:6630773,16072615:25952256,404226,76021 +(1,2471:6630773,16072615:0,0,0 +g1,2471:6630773,16072615 +g1,2471:6630773,16072615 +g1,2471:6303093,16072615 +(1,2471:6303093,16072615:0,0,0 +) +g1,2471:6630773,16072615 +) +g1,2473:7579210,16072615 +g1,2473:8843793,16072615 +h1,2473:11056813,16072615:0,0,0 +k1,2473:32583029,16072615:21526216 +g1,2473:32583029,16072615 +) +(1,2475:6630773,17394153:25952256,410518,107478 +(1,2474:6630773,17394153:0,0,0 +g1,2474:6630773,17394153 +g1,2474:6630773,17394153 +g1,2474:6303093,17394153 +(1,2474:6303093,17394153:0,0,0 +) +g1,2474:6630773,17394153 +) +k1,2475:6630773,17394153:0 +g1,2475:10740668,17394153 +g1,2475:12953688,17394153 +g1,2475:13585980,17394153 +g1,2475:14534418,17394153 +g1,2475:16747438,17394153 +g1,2475:17379730,17394153 +h1,2475:18012022,17394153:0,0,0 +k1,2475:32583029,17394153:14571007 +g1,2475:32583029,17394153 +) +(1,2479:6630773,18125867:25952256,404226,76021 +(1,2477:6630773,18125867:0,0,0 +g1,2477:6630773,18125867 +g1,2477:6630773,18125867 +g1,2477:6303093,18125867 +(1,2477:6303093,18125867:0,0,0 +) +g1,2477:6630773,18125867 +) +g1,2479:7579210,18125867 +g1,2479:8843793,18125867 +h1,2479:10424521,18125867:0,0,0 +k1,2479:32583029,18125867:22158508 +g1,2479:32583029,18125867 +) +(1,2481:6630773,19447405:25952256,410518,107478 +(1,2480:6630773,19447405:0,0,0 +g1,2480:6630773,19447405 +g1,2480:6630773,19447405 +g1,2480:6303093,19447405 +(1,2480:6303093,19447405:0,0,0 +) +g1,2480:6630773,19447405 +) +k1,2481:6630773,19447405:0 +g1,2481:9792230,19447405 +g1,2481:12005250,19447405 +g1,2481:12637542,19447405 +g1,2481:13585980,19447405 +g1,2481:17063583,19447405 +g1,2481:17695875,19447405 +h1,2481:19276604,19447405:0,0,0 +k1,2481:32583029,19447405:13306425 +g1,2481:32583029,19447405 +) +(1,2485:6630773,20179119:25952256,404226,76021 +(1,2483:6630773,20179119:0,0,0 +g1,2483:6630773,20179119 +g1,2483:6630773,20179119 +g1,2483:6303093,20179119 +(1,2483:6303093,20179119:0,0,0 +) +g1,2483:6630773,20179119 +) +g1,2485:7579210,20179119 +g1,2485:8843793,20179119 +g1,2485:12321396,20179119 +h1,2485:15482853,20179119:0,0,0 +k1,2485:32583029,20179119:17100176 +g1,2485:32583029,20179119 +) +] +) +g1,2486:32583029,20255140 +g1,2486:6630773,20255140 +g1,2486:6630773,20255140 +g1,2486:32583029,20255140 +g1,2486:32583029,20255140 +) +h1,2486:6630773,20451748:0,0,0 +(1,2490:6630773,21648998:25952256,513147,115847 +h1,2489:6630773,21648998:983040,0,0 +k1,2489:10659018,21648998:255337 +(1,2489:10659018,21648998:0,459977,115847 +r1,2489:13830978,21648998:3171960,575824,115847 +k1,2489:10659018,21648998:-3171960 +) +(1,2489:10659018,21648998:3171960,459977,115847 +k1,2489:10659018,21648998:3277 +h1,2489:13827701,21648998:0,411205,112570 +) +k1,2489:14086315,21648998:255337 +k1,2489:14873149,21648998:255337 +k1,2489:17330496,21648998:255337 +k1,2489:18237261,21648998:255337 +k1,2489:19450079,21648998:255337 +k1,2489:22400911,21648998:255336 +k1,2489:23315540,21648998:255337 +k1,2489:24589962,21648998:255337 +k1,2489:26498772,21648998:255337 +k1,2489:28665794,21648998:255337 +k1,2489:30117818,21648998:255337 +k1,2489:31753999,21648998:255337 +k1,2490:32583029,21648998:0 +) +(1,2490:6630773,22490486:25952256,513147,126483 +k1,2489:9079651,22490486:254733 +k1,2489:9865882,22490486:254734 +k1,2489:12072277,22490486:254733 +k1,2489:15051342,22490486:254733 +k1,2489:16378245,22490486:254734 +k1,2489:17986952,22490486:254733 +k1,2489:21272070,22490486:254733 +k1,2489:23017092,22490486:254733 +k1,2489:24428536,22490486:254734 +k1,2489:26625101,22490486:254733 +k1,2489:27898919,22490486:254733 +k1,2489:30411368,22490486:254734 +k1,2489:31563944,22490486:254733 +k1,2489:32583029,22490486:0 +) +(1,2490:6630773,23331974:25952256,513147,134348 +k1,2489:10197623,23331974:139317 +k1,2489:10868437,23331974:139317 +k1,2489:13839565,23331974:139317 +k1,2489:15714276,23331974:139318 +k1,2489:16209453,23331974:139317 +(1,2489:16209453,23331974:0,452978,115847 +r1,2489:19381413,23331974:3171960,568825,115847 +k1,2489:16209453,23331974:-3171960 +) +(1,2489:16209453,23331974:3171960,452978,115847 +k1,2489:16209453,23331974:3277 +h1,2489:19378136,23331974:0,411205,112570 +) +k1,2489:19520730,23331974:139317 +k1,2489:21525857,23331974:139317 +k1,2489:22351336,23331974:139317 +k1,2489:25474507,23331974:139317 +k1,2489:26241660,23331974:139318 +k1,2489:27584218,23331974:139317 +k1,2489:30707389,23331974:139317 +k1,2490:32583029,23331974:0 +) +(1,2490:6630773,24173462:25952256,513147,134348 +k1,2489:9167671,24173462:135659 +k1,2489:10250982,24173462:135660 +k1,2489:11776004,24173462:135659 +k1,2489:13103109,24173462:135660 +k1,2489:14257853,24173462:135659 +k1,2489:17821046,24173462:135660 +k1,2489:21794493,24173462:135659 +k1,2489:22921713,24173462:135660 +k1,2489:26382013,24173462:135659 +k1,2489:28253066,24173462:135660 +k1,2489:30582870,24173462:135659 +k1,2489:32583029,24173462:0 +) +(1,2490:6630773,25014950:25952256,505283,126483 +k1,2489:8688323,25014950:183220 +k1,2489:10698031,25014950:183220 +k1,2489:12369574,25014950:183220 +k1,2489:13946745,25014950:183220 +k1,2489:14485825,25014950:183220 +k1,2489:17078148,25014950:183220 +k1,2489:20409717,25014950:183219 +k1,2489:21546486,25014950:183220 +k1,2489:23390388,25014950:183220 +k1,2489:24189646,25014950:183220 +k1,2489:25391951,25014950:183220 +k1,2489:28236588,25014950:183220 +k1,2489:30288239,25014950:183220 +k1,2489:31490544,25014950:183220 +k1,2489:32583029,25014950:0 +) +(1,2490:6630773,25856438:25952256,513147,134348 +k1,2489:7455610,25856438:165545 +k1,2489:9313296,25856438:165546 +k1,2489:10138133,25856438:165545 +k1,2489:12174077,25856438:165546 +(1,2489:12174077,25856438:0,459977,115847 +r1,2489:12532343,25856438:358266,575824,115847 +k1,2489:12174077,25856438:-358266 +) +(1,2489:12174077,25856438:358266,459977,115847 +k1,2489:12174077,25856438:3277 +h1,2489:12529066,25856438:0,411205,112570 +) +k1,2489:12697888,25856438:165545 +k1,2489:13394931,25856438:165546 +k1,2489:15073702,25856438:165545 +k1,2489:16186899,25856438:165546 +(1,2489:16186899,25856438:0,452978,115847 +r1,2489:18655436,25856438:2468537,568825,115847 +k1,2489:16186899,25856438:-2468537 +) +(1,2489:16186899,25856438:2468537,452978,115847 +k1,2489:16186899,25856438:3277 +h1,2489:18652159,25856438:0,411205,112570 +) +k1,2489:18820981,25856438:165545 +k1,2489:20997172,25856438:165546 +k1,2489:21814145,25856438:165545 +k1,2489:22727457,25856438:165546 +k1,2489:26098368,25856438:165545 +k1,2489:29380806,25856438:165546 +k1,2489:30197779,25856438:165545 +k1,2489:30719185,25856438:165546 +k1,2489:32583029,25856438:0 +) +(1,2490:6630773,26697926:25952256,513147,134348 +k1,2489:9012297,26697926:219491 +k1,2489:10921305,26697926:219490 +(1,2489:10921305,26697926:0,414482,122846 +r1,2489:11279571,26697926:358266,537328,122846 +k1,2489:10921305,26697926:-358266 +) +(1,2489:10921305,26697926:358266,414482,122846 +k1,2489:10921305,26697926:3277 +h1,2489:11276294,26697926:0,411205,112570 +) +k1,2489:11499062,26697926:219491 +k1,2489:12250050,26697926:219491 +k1,2489:13982766,26697926:219490 +k1,2489:15900295,26697926:219491 +k1,2489:16988137,26697926:219490 +k1,2489:18142171,26697926:219491 +k1,2489:19380747,26697926:219491 +k1,2489:22086018,26697926:219490 +k1,2489:22964801,26697926:219491 +k1,2489:26497792,26697926:219491 +k1,2489:28501827,26697926:219490 +k1,2489:29912763,26697926:219491 +(1,2489:29912763,26697926:0,414482,115847 +r1,2489:30271029,26697926:358266,530329,115847 +k1,2489:29912763,26697926:-358266 +) +(1,2489:29912763,26697926:358266,414482,115847 +k1,2489:29912763,26697926:3277 +h1,2489:30267752,26697926:0,411205,112570 +) +k1,2489:30490519,26697926:219490 +k1,2489:31657661,26697926:219491 +k1,2490:32583029,26697926:0 +) +(1,2490:6630773,27539414:25952256,513147,126483 +g1,2489:9841381,27539414 +g1,2489:10723495,27539414 +g1,2489:13662785,27539414 +k1,2490:32583029,27539414:16056976 +g1,2490:32583029,27539414 +) +v1,2492:6630773,28561354:0,393216,0 +(1,2512:6630773,34349389:25952256,6181251,196608 +g1,2512:6630773,34349389 +g1,2512:6630773,34349389 +g1,2512:6434165,34349389 +(1,2512:6434165,34349389:0,6181251,196608 +r1,2512:32779637,34349389:26345472,6377859,196608 +k1,2512:6434165,34349389:-26345472 +) +(1,2512:6434165,34349389:26345472,6181251,196608 +[1,2512:6630773,34349389:25952256,5984643,0 +(1,2494:6630773,28768972:25952256,404226,82312 +(1,2493:6630773,28768972:0,0,0 +g1,2493:6630773,28768972 +g1,2493:6630773,28768972 +g1,2493:6303093,28768972 +(1,2493:6303093,28768972:0,0,0 +) +g1,2493:6630773,28768972 +) +g1,2494:7263065,28768972 +g1,2494:7895357,28768972 +g1,2494:12637543,28768972 +h1,2494:13902126,28768972:0,0,0 +k1,2494:32583030,28768972:18680904 +g1,2494:32583030,28768972 +) +(1,2495:6630773,29435150:25952256,410518,101187 +h1,2495:6630773,29435150:0,0,0 +g1,2495:10740668,29435150 +g1,2495:13269834,29435150 +g1,2495:14850563,29435150 +g1,2495:16747437,29435150 +g1,2495:18012020,29435150 +g1,2495:20225040,29435150 +g1,2495:22121915,29435150 +h1,2495:23702643,29435150:0,0,0 +k1,2495:32583029,29435150:8880386 +g1,2495:32583029,29435150 +) +(1,2499:6630773,30166864:25952256,404226,76021 +(1,2497:6630773,30166864:0,0,0 +g1,2497:6630773,30166864 +g1,2497:6630773,30166864 +g1,2497:6303093,30166864 +(1,2497:6303093,30166864:0,0,0 +) +g1,2497:6630773,30166864 +) +g1,2499:7579210,30166864 +g1,2499:8843793,30166864 +g1,2499:10424522,30166864 +g1,2499:12953688,30166864 +g1,2499:14534417,30166864 +g1,2499:16747437,30166864 +g1,2499:18012020,30166864 +h1,2499:18644311,30166864:0,0,0 +k1,2499:32583029,30166864:13938718 +g1,2499:32583029,30166864 +) +(1,2501:6630773,31488402:25952256,410518,107478 +(1,2500:6630773,31488402:0,0,0 +g1,2500:6630773,31488402 +g1,2500:6630773,31488402 +g1,2500:6303093,31488402 +(1,2500:6303093,31488402:0,0,0 +) +g1,2500:6630773,31488402 +) +k1,2501:6630773,31488402:0 +g1,2501:10740668,31488402 +g1,2501:13269834,31488402 +g1,2501:14850563,31488402 +g1,2501:16431292,31488402 +g1,2501:17695875,31488402 +g1,2501:19908895,31488402 +g1,2501:21805770,31488402 +h1,2501:23386498,31488402:0,0,0 +k1,2501:32583029,31488402:9196531 +g1,2501:32583029,31488402 +) +(1,2505:6630773,32220116:25952256,404226,76021 +(1,2503:6630773,32220116:0,0,0 +g1,2503:6630773,32220116 +g1,2503:6630773,32220116 +g1,2503:6303093,32220116 +(1,2503:6303093,32220116:0,0,0 +) +g1,2503:6630773,32220116 +) +g1,2505:7579210,32220116 +g1,2505:8843793,32220116 +g1,2505:10424522,32220116 +g1,2505:12953688,32220116 +g1,2505:14534417,32220116 +g1,2505:16431291,32220116 +g1,2505:17695874,32220116 +h1,2505:18328165,32220116:0,0,0 +k1,2505:32583029,32220116:14254864 +g1,2505:32583029,32220116 +) +(1,2507:6630773,33541654:25952256,410518,101187 +(1,2506:6630773,33541654:0,0,0 +g1,2506:6630773,33541654 +g1,2506:6630773,33541654 +g1,2506:6303093,33541654 +(1,2506:6303093,33541654:0,0,0 +) +g1,2506:6630773,33541654 +) +k1,2507:6630773,33541654:0 +g1,2507:10740668,33541654 +g1,2507:13269834,33541654 +g1,2507:14850563,33541654 +g1,2507:16747437,33541654 +g1,2507:18012020,33541654 +g1,2507:20225040,33541654 +g1,2507:22121915,33541654 +h1,2507:23702643,33541654:0,0,0 +k1,2507:32583029,33541654:8880386 +g1,2507:32583029,33541654 +) +(1,2511:6630773,34273368:25952256,404226,76021 +(1,2509:6630773,34273368:0,0,0 +g1,2509:6630773,34273368 +g1,2509:6630773,34273368 +g1,2509:6303093,34273368 +(1,2509:6303093,34273368:0,0,0 +) +g1,2509:6630773,34273368 +) +g1,2511:7579210,34273368 +g1,2511:8843793,34273368 +g1,2511:10424522,34273368 +g1,2511:12953688,34273368 +g1,2511:14534417,34273368 +g1,2511:17379728,34273368 +g1,2511:18644311,34273368 +h1,2511:20541185,34273368:0,0,0 +k1,2511:32583029,34273368:12041844 +g1,2511:32583029,34273368 +) +] +) +g1,2512:32583029,34349389 +g1,2512:6630773,34349389 +g1,2512:6630773,34349389 +g1,2512:32583029,34349389 +g1,2512:32583029,34349389 +) +h1,2512:6630773,34545997:0,0,0 +(1,2516:6630773,35743247:25952256,505283,126483 +h1,2515:6630773,35743247:983040,0,0 +k1,2515:8469610,35743247:227962 +k1,2515:9716658,35743247:227963 +k1,2515:12754804,35743247:227962 +(1,2515:12754804,35743247:0,459977,115847 +r1,2515:24367848,35743247:11613044,575824,115847 +k1,2515:12754804,35743247:-11613044 +) +(1,2515:12754804,35743247:11613044,459977,115847 +g1,2515:14516640,35743247 +g1,2515:17330335,35743247 +g1,2515:19088894,35743247 +g1,2515:21199165,35743247 +g1,2515:22606012,35743247 +h1,2515:24364571,35743247:0,411205,112570 +) +k1,2515:24769480,35743247:227962 +k1,2515:26652226,35743247:227962 +k1,2515:27871749,35743247:227963 +k1,2515:29272150,35743247:227962 +k1,2516:32583029,35743247:0 +) +(1,2516:6630773,36584735:25952256,513147,126483 +k1,2515:7776967,36584735:180193 +k1,2515:8904810,36584735:180192 +(1,2515:8904810,36584735:0,452978,115847 +r1,2515:11373347,36584735:2468537,568825,115847 +k1,2515:8904810,36584735:-2468537 +) +(1,2515:8904810,36584735:2468537,452978,115847 +k1,2515:8904810,36584735:3277 +h1,2515:11370070,36584735:0,411205,112570 +) +k1,2515:11553540,36584735:180193 +k1,2515:13918047,36584735:180192 +(1,2515:13918047,36584735:0,459977,115847 +r1,2515:15683160,36584735:1765113,575824,115847 +k1,2515:13918047,36584735:-1765113 +) +(1,2515:13918047,36584735:1765113,459977,115847 +k1,2515:13918047,36584735:3277 +h1,2515:15679883,36584735:0,411205,112570 +) +k1,2515:15863353,36584735:180193 +k1,2515:17234991,36584735:180193 +(1,2515:17234991,36584735:0,459977,115847 +r1,2515:18648392,36584735:1413401,575824,115847 +k1,2515:17234991,36584735:-1413401 +) +(1,2515:17234991,36584735:1413401,459977,115847 +k1,2515:17234991,36584735:3277 +h1,2515:18645115,36584735:0,411205,112570 +) +k1,2515:19002254,36584735:180192 +k1,2515:19907275,36584735:180193 +k1,2515:20703505,36584735:180192 +k1,2515:23549703,36584735:180193 +k1,2515:24381324,36584735:180193 +k1,2515:25580601,36584735:180192 +k1,2515:28744648,36584735:180193 +k1,2515:29793192,36584735:180192 +k1,2515:31410590,36584735:180193 +k1,2515:32583029,36584735:0 +) +(1,2516:6630773,37426223:25952256,513147,126483 +k1,2515:8884674,37426223:243256 +k1,2515:12099988,37426223:243256 +k1,2515:13910864,37426223:243255 +k1,2515:15173205,37426223:243256 +k1,2515:16722594,37426223:243256 +k1,2515:18138289,37426223:243256 +k1,2515:21326077,37426223:243255 +k1,2515:22228625,37426223:243256 +k1,2515:24449758,37426223:243256 +(1,2515:24449758,37426223:0,414482,115847 +r1,2515:24808024,37426223:358266,530329,115847 +k1,2515:24449758,37426223:-358266 +) +(1,2515:24449758,37426223:358266,414482,115847 +k1,2515:24449758,37426223:3277 +h1,2515:24804747,37426223:0,411205,112570 +) +k1,2515:25224950,37426223:243256 +k1,2515:27342535,37426223:243255 +k1,2515:29354608,37426223:243256 +k1,2515:31073079,37426223:243256 +k1,2515:32583029,37426223:0 +) +(1,2516:6630773,38267711:25952256,513147,134348 +k1,2515:7975080,38267711:171868 +k1,2515:10909291,38267711:171868 +k1,2515:13389337,38267711:171868 +k1,2515:14220497,38267711:171868 +k1,2515:16405631,38267711:171868 +k1,2515:17907880,38267711:171868 +k1,2515:18762634,38267711:171869 +k1,2515:20401198,38267711:171868 +k1,2515:23193195,38267711:171868 +k1,2515:26626790,38267711:171868 +k1,2515:27995345,38267711:171868 +k1,2515:30977397,38267711:171868 +k1,2515:32583029,38267711:0 +) +(1,2516:6630773,39109199:25952256,505283,126483 +k1,2515:8347422,39109199:223739 +k1,2515:9637431,39109199:223738 +k1,2515:11391436,39109199:223739 +k1,2515:12266603,39109199:223739 +k1,2515:13238107,39109199:223738 +k1,2515:13817706,39109199:223739 +(1,2515:13817706,39109199:0,452978,115847 +r1,2515:16989666,39109199:3171960,568825,115847 +k1,2515:13817706,39109199:-3171960 +) +(1,2515:13817706,39109199:3171960,452978,115847 +k1,2515:13817706,39109199:3277 +h1,2515:16986389,39109199:0,411205,112570 +) +k1,2515:17213405,39109199:223739 +k1,2515:20194898,39109199:223738 +k1,2515:21104799,39109199:223739 +k1,2515:21944576,39109199:223739 +k1,2515:23865041,39109199:223738 +k1,2515:27254169,39109199:223739 +k1,2515:28164070,39109199:223739 +k1,2515:28743668,39109199:223738 +k1,2515:31478747,39109199:223739 +k1,2515:32583029,39109199:0 +) +(1,2516:6630773,39950687:25952256,505283,134348 +g1,2515:7577768,39950687 +g1,2515:9062813,39950687 +g1,2515:11467329,39950687 +g1,2515:12352720,39950687 +k1,2516:32583030,39950687:16984312 +g1,2516:32583030,39950687 +) +v1,2518:6630773,41147937:0,393216,0 +(1,2519:6630773,45116945:25952256,4362224,589824 +g1,2519:6630773,45116945 +(1,2519:6630773,45116945:25952256,4362224,589824 +(1,2519:6630773,45706769:25952256,4952048,0 +[1,2519:6630773,45706769:25952256,4952048,0 +(1,2519:6630773,45706769:25952256,4925834,0 +r1,2519:6656987,45706769:26214,4925834,0 +[1,2519:6656987,45706769:25899828,4925834,0 +(1,2519:6656987,45116945:25899828,3746186,0 +[1,2519:7246811,45116945:24720180,3746186,0 +(1,2519:7246811,42458133:24720180,1087374,126483 +k1,2518:8692885,42458133:236371 +k1,2518:11719124,42458133:236371 +(1,2518:11719124,42458133:0,459977,115847 +r1,2519:14539373,42458133:2820249,575824,115847 +k1,2518:11719124,42458133:-2820249 +) +(1,2518:11719124,42458133:2820249,459977,115847 +k1,2518:11719124,42458133:3277 +h1,2518:14536096,42458133:0,411205,112570 +) +k1,2518:14775744,42458133:236371 +k1,2518:16349048,42458133:236370 +k1,2518:17333185,42458133:236371 +k1,2518:19439954,42458133:236371 +k1,2518:20327753,42458133:236371 +k1,2518:21830280,42458133:236371 +k1,2518:22682689,42458133:236371 +k1,2518:24611199,42458133:236370 +k1,2518:26718623,42458133:236371 +k1,2518:28027163,42458133:236371 +(1,2518:28027163,42458133:0,459977,115847 +r1,2519:31199123,42458133:3171960,575824,115847 +k1,2518:28027163,42458133:-3171960 +) +(1,2518:28027163,42458133:3171960,459977,115847 +k1,2518:28027163,42458133:3277 +h1,2518:31195846,42458133:0,411205,112570 +) +k1,2518:31435494,42458133:236371 +k1,2518:31966991,42458133:0 +) +(1,2519:7246811,43299621:24720180,513147,134348 +k1,2518:9059842,43299621:162834 +k1,2518:11523646,43299621:162835 +k1,2518:12877925,43299621:162834 +k1,2518:16071145,43299621:162835 +k1,2518:18155495,43299621:162834 +k1,2518:19712281,43299621:162835 +k1,2518:23288230,43299621:162834 +k1,2518:24067103,43299621:162835 +k1,2518:25249022,43299621:162834 +k1,2518:26504342,43299621:162835 +k1,2518:27326468,43299621:162834 +k1,2518:28508388,43299621:162835 +k1,2518:29124695,43299621:162798 +k1,2518:31966991,43299621:0 +) +(1,2519:7246811,44141109:24720180,513147,134348 +k1,2518:8546716,44141109:167443 +k1,2518:11048551,44141109:167443 +k1,2518:12938936,44141109:167443 +k1,2518:14928935,44141109:167443 +(1,2518:14928935,44141109:0,459977,115847 +r1,2519:18100895,44141109:3171960,575824,115847 +k1,2518:14928935,44141109:-3171960 +) +(1,2518:14928935,44141109:3171960,459977,115847 +k1,2518:14928935,44141109:3277 +h1,2518:18097618,44141109:0,411205,112570 +) +k1,2518:18268338,44141109:167443 +k1,2518:19627226,44141109:167443 +k1,2518:20583067,44141109:167443 +k1,2518:21842995,44141109:167443 +k1,2518:22669730,44141109:167443 +k1,2518:25977658,44141109:167443 +k1,2518:27092752,44141109:167443 +k1,2518:30687728,44141109:167443 +k1,2519:31966991,44141109:0 +) +(1,2519:7246811,44982597:24720180,513147,134348 +k1,2518:8696337,44982597:183370 +k1,2518:10369995,44982597:183369 +k1,2518:11019326,44982597:183370 +k1,2518:12373168,44982597:183369 +k1,2518:13548098,44982597:183370 +k1,2518:16223802,44982597:183370 +k1,2518:17801122,44982597:183369 +k1,2518:18611671,44982597:183370 +k1,2518:20181782,44982597:183369 +k1,2518:21200736,44982597:183370 +k1,2518:22403191,44982597:183370 +k1,2518:23974613,44982597:183369 +k1,2518:25986437,44982597:183370 +k1,2518:27117457,44982597:183369 +k1,2518:28767523,44982597:183370 +k1,2518:31966991,44982597:0 +) +] +) +] +r1,2519:32583029,45706769:26214,4925834,0 +) +] +) +) +g1,2519:32583029,45116945 +) +] +(1,2519:32583029,45706769:0,0,0 +g1,2519:32583029,45706769 +) +) +] +(1,2519:6630773,47279633:25952256,0,0 +h1,2519:6630773,47279633:25952256,0,0 +) +] +h1,2519:4262630,4025873:0,0,0 +] +!26954 }55 -Input:369:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:370:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:371:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:372:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:373:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:374:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:375:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:376:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:377:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:378:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:379:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!946 +Input:365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1012 {56 -[1,2575:4262630,47279633:28320399,43253760,0 -(1,2575:4262630,4025873:0,0,0 -[1,2575:-473657,4025873:25952256,0,0 -(1,2575:-473657,-710414:25952256,0,0 -h1,2575:-473657,-710414:0,0,0 -(1,2575:-473657,-710414:0,0,0 -(1,2575:-473657,-710414:0,0,0 -g1,2575:-473657,-710414 -(1,2575:-473657,-710414:65781,0,65781 -g1,2575:-407876,-710414 -[1,2575:-407876,-644633:0,0,0 +[1,2581:4262630,47279633:28320399,43253760,0 +(1,2581:4262630,4025873:0,0,0 +[1,2581:-473657,4025873:25952256,0,0 +(1,2581:-473657,-710414:25952256,0,0 +h1,2581:-473657,-710414:0,0,0 +(1,2581:-473657,-710414:0,0,0 +(1,2581:-473657,-710414:0,0,0 +g1,2581:-473657,-710414 +(1,2581:-473657,-710414:65781,0,65781 +g1,2581:-407876,-710414 +[1,2581:-407876,-644633:0,0,0 ] ) -k1,2575:-473657,-710414:-65781 +k1,2581:-473657,-710414:-65781 ) ) -k1,2575:25478599,-710414:25952256 -g1,2575:25478599,-710414 +k1,2581:25478599,-710414:25952256 +g1,2581:25478599,-710414 ) ] ) -[1,2575:6630773,47279633:25952256,43253760,0 -[1,2575:6630773,4812305:25952256,786432,0 -(1,2575:6630773,4812305:25952256,505283,126483 -(1,2575:6630773,4812305:25952256,505283,126483 -g1,2575:3078558,4812305 -[1,2575:3078558,4812305:0,0,0 -(1,2575:3078558,2439708:0,1703936,0 -k1,2575:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2575:2537886,2439708:1179648,16384,0 +[1,2581:6630773,47279633:25952256,43253760,0 +[1,2581:6630773,4812305:25952256,786432,0 +(1,2581:6630773,4812305:25952256,505283,126483 +(1,2581:6630773,4812305:25952256,505283,126483 +g1,2581:3078558,4812305 +[1,2581:3078558,4812305:0,0,0 +(1,2581:3078558,2439708:0,1703936,0 +k1,2581:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2581:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2575:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2581:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2575:3078558,4812305:0,0,0 -(1,2575:3078558,2439708:0,1703936,0 -g1,2575:29030814,2439708 -g1,2575:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2575:36151628,1915420:16384,1179648,0 +[1,2581:3078558,4812305:0,0,0 +(1,2581:3078558,2439708:0,1703936,0 +g1,2581:29030814,2439708 +g1,2581:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2581:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2575:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2581:37855564,2439708:1179648,16384,0 ) ) -k1,2575:3078556,2439708:-34777008 +k1,2581:3078556,2439708:-34777008 ) ] -[1,2575:3078558,4812305:0,0,0 -(1,2575:3078558,49800853:0,16384,2228224 -k1,2575:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2575:2537886,49800853:1179648,16384,0 +[1,2581:3078558,4812305:0,0,0 +(1,2581:3078558,49800853:0,16384,2228224 +k1,2581:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2581:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2575:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2581:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2575:3078558,4812305:0,0,0 -(1,2575:3078558,49800853:0,16384,2228224 -g1,2575:29030814,49800853 -g1,2575:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2575:36151628,51504789:16384,1179648,0 +[1,2581:3078558,4812305:0,0,0 +(1,2581:3078558,49800853:0,16384,2228224 +g1,2581:29030814,49800853 +g1,2581:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2581:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2575:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2581:37855564,49800853:1179648,16384,0 ) ) -k1,2575:3078556,49800853:-34777008 +k1,2581:3078556,49800853:-34777008 ) ] -g1,2575:6630773,4812305 -g1,2575:6630773,4812305 -g1,2575:8826229,4812305 -g1,2575:13247287,4812305 -k1,2575:31786111,4812305:18538824 +g1,2581:6630773,4812305 +g1,2581:6630773,4812305 +g1,2581:8826229,4812305 +g1,2581:13247287,4812305 +k1,2581:31786111,4812305:18538824 ) ) ] -[1,2575:6630773,45706769:25952256,40108032,0 -(1,2575:6630773,45706769:25952256,40108032,0 -(1,2575:6630773,45706769:0,0,0 -g1,2575:6630773,45706769 +[1,2581:6630773,45706769:25952256,40108032,0 +(1,2581:6630773,45706769:25952256,40108032,0 +(1,2581:6630773,45706769:0,0,0 +g1,2581:6630773,45706769 ) -[1,2575:6630773,45706769:25952256,40108032,0 -v1,2513:6630773,6254097:0,393216,0 -(1,2513:6630773,8769674:25952256,2908793,616038 -g1,2513:6630773,8769674 -(1,2513:6630773,8769674:25952256,2908793,616038 -(1,2513:6630773,9385712:25952256,3524831,0 -[1,2513:6630773,9385712:25952256,3524831,0 -(1,2513:6630773,9359498:25952256,3498617,0 -r1,2513:6656987,9359498:26214,3498617,0 -[1,2513:6656987,9359498:25899828,3498617,0 -(1,2513:6656987,8769674:25899828,2318969,0 -[1,2513:7246811,8769674:24720180,2318969,0 -(1,2513:7246811,6963852:24720180,513147,134348 -k1,2512:8671615,6963852:233359 -k1,2512:11616197,6963852:233358 -k1,2512:12611084,6963852:233359 -k1,2512:14741054,6963852:233358 -k1,2512:15625841,6963852:233359 -k1,2512:17788580,6963852:233359 -k1,2512:19041023,6963852:233358 -k1,2512:20927855,6963852:233359 -k1,2512:24366580,6963852:233359 -k1,2512:26758694,6963852:233358 -k1,2512:27753581,6963852:233359 -k1,2512:30055255,6963852:233358 -k1,2512:30947906,6963852:233359 -k1,2512:31966991,6963852:0 -) -(1,2513:7246811,7805340:24720180,513147,126483 -k1,2512:8626797,7805340:207547 -k1,2512:12033813,7805340:207548 -k1,2512:13139203,7805340:207547 -k1,2512:14632567,7805340:207548 -k1,2512:16182947,7805340:207547 -k1,2512:17784446,7805340:207548 -k1,2512:19688720,7805340:207547 -k1,2512:22922065,7805340:207548 -k1,2512:24523563,7805340:207547 -k1,2512:26433081,7805340:207548 -k1,2512:28357016,7805340:207547 -k1,2512:29223856,7805340:207548 -k1,2512:30820766,7805340:207547 -k1,2513:31966991,7805340:0 -) -(1,2513:7246811,8646828:24720180,505283,122846 -(1,2512:7246811,8646828:0,452978,122846 -r1,2513:9715348,8646828:2468537,575824,122846 -k1,2512:7246811,8646828:-2468537 -) -(1,2512:7246811,8646828:2468537,452978,122846 -k1,2512:7246811,8646828:3277 -h1,2512:9712071,8646828:0,411205,112570 -) -g1,2512:9914577,8646828 -g1,2512:11305251,8646828 -(1,2512:11305251,8646828:0,452978,115847 -r1,2513:14477211,8646828:3171960,568825,115847 -k1,2512:11305251,8646828:-3171960 -) -(1,2512:11305251,8646828:3171960,452978,115847 -k1,2512:11305251,8646828:3277 -h1,2512:14473934,8646828:0,411205,112570 -) -k1,2513:31966991,8646828:17316110 -g1,2513:31966991,8646828 -) -] -) -] -r1,2513:32583029,9359498:26214,3498617,0 -) -] -) -) -g1,2513:32583029,8769674 -) -h1,2513:6630773,9385712:0,0,0 -v1,2516:6630773,10751488:0,393216,0 -(1,2564:6630773,30200684:25952256,19842412,616038 -g1,2564:6630773,30200684 -(1,2564:6630773,30200684:25952256,19842412,616038 -(1,2564:6630773,30816722:25952256,20458450,0 -[1,2564:6630773,30816722:25952256,20458450,0 -(1,2564:6630773,30790508:25952256,20406022,0 -r1,2564:6656987,30790508:26214,20406022,0 -[1,2564:6656987,30790508:25899828,20406022,0 -(1,2564:6656987,30200684:25899828,19226374,0 -[1,2564:7246811,30200684:24720180,19226374,0 -(1,2517:7246811,12136195:24720180,1161885,196608 -(1,2516:7246811,12136195:0,1161885,196608 -r1,2564:8794447,12136195:1547636,1358493,196608 -k1,2516:7246811,12136195:-1547636 -) -(1,2516:7246811,12136195:1547636,1161885,196608 -) -k1,2516:8983760,12136195:189313 -k1,2516:10126621,12136195:189312 -k1,2516:11791149,12136195:189313 -k1,2516:13835786,12136195:189313 -k1,2516:17115122,12136195:189313 -(1,2516:17115122,12136195:0,414482,115847 -r1,2564:17825100,12136195:709978,530329,115847 -k1,2516:17115122,12136195:-709978 -) -(1,2516:17115122,12136195:709978,414482,115847 -k1,2516:17115122,12136195:3277 -h1,2516:17821823,12136195:0,411205,112570 -) -k1,2516:18014412,12136195:189312 -k1,2516:18889887,12136195:189313 -k1,2516:19435060,12136195:189313 -k1,2516:21497391,12136195:189312 -k1,2516:23367047,12136195:189313 -k1,2516:26219743,12136195:189313 -k1,2516:28695607,12136195:189313 -k1,2516:29957088,12136195:189312 -k1,2516:30762439,12136195:189313 -k1,2517:31966991,12136195:0 -) -(1,2517:7246811,12977683:24720180,513147,126483 -k1,2516:8463829,12977683:192690 -(1,2516:8463829,12977683:0,414482,115847 -r1,2564:9173807,12977683:709978,530329,115847 -k1,2516:8463829,12977683:-709978 -) -(1,2516:8463829,12977683:709978,414482,115847 -k1,2516:8463829,12977683:3277 -h1,2516:9170530,12977683:0,411205,112570 -) -k1,2516:9366497,12977683:192690 -k1,2516:9889487,12977683:192689 -k1,2516:11777593,12977683:192690 -k1,2516:12586321,12977683:192690 -k1,2516:15121268,12977683:192690 -k1,2516:17648350,12977683:192690 -(1,2516:17648350,12977683:0,452978,115847 -r1,2564:20468599,12977683:2820249,568825,115847 -k1,2516:17648350,12977683:-2820249 -) -(1,2516:17648350,12977683:2820249,452978,115847 -k1,2516:17648350,12977683:3277 -h1,2516:20465322,12977683:0,411205,112570 -) -k1,2516:20834959,12977683:192690 -(1,2516:20834959,12977683:0,452978,115847 -r1,2564:25413767,12977683:4578808,568825,115847 -k1,2516:20834959,12977683:-4578808 -) -(1,2516:20834959,12977683:4578808,452978,115847 -k1,2516:20834959,12977683:3277 -h1,2516:25410490,12977683:0,411205,112570 -) -k1,2516:25780126,12977683:192689 -k1,2516:27084307,12977683:192690 -k1,2516:28468442,12977683:192690 -(1,2516:28468442,12977683:0,414482,115847 -r1,2564:29178420,12977683:709978,530329,115847 -k1,2516:28468442,12977683:-709978 -) -(1,2516:28468442,12977683:709978,414482,115847 -k1,2516:28468442,12977683:3277 -h1,2516:29175143,12977683:0,411205,112570 -) -k1,2516:29371110,12977683:192690 -k1,2516:31966991,12977683:0 -) -(1,2517:7246811,13819171:24720180,513147,126483 -k1,2516:8124497,13819171:226258 -k1,2516:9121458,13819171:226258 -(1,2516:9121458,13819171:0,414482,115847 -r1,2564:9831436,13819171:709978,530329,115847 -k1,2516:9121458,13819171:-709978 -) -(1,2516:9121458,13819171:709978,414482,115847 -k1,2516:9121458,13819171:3277 -h1,2516:9828159,13819171:0,411205,112570 -) -k1,2516:10057694,13819171:226258 -k1,2516:10943243,13819171:226257 -k1,2516:12724670,13819171:226258 -(1,2516:12724670,13819171:0,452978,122846 -r1,2564:15193207,13819171:2468537,575824,122846 -k1,2516:12724670,13819171:-2468537 -) -(1,2516:12724670,13819171:2468537,452978,122846 -k1,2516:12724670,13819171:3277 -h1,2516:15189930,13819171:0,411205,112570 -) -k1,2516:15593135,13819171:226258 -(1,2516:15593135,13819171:0,414482,115847 -r1,2564:16303113,13819171:709978,530329,115847 -k1,2516:15593135,13819171:-709978 -) -(1,2516:15593135,13819171:709978,414482,115847 -k1,2516:15593135,13819171:3277 -h1,2516:16299836,13819171:0,411205,112570 -) -k1,2516:16529371,13819171:226258 -k1,2516:17287126,13819171:226258 -k1,2516:20358302,13819171:226258 -k1,2516:23745361,13819171:226258 -k1,2516:24780989,13819171:226258 -k1,2516:26026331,13819171:226257 -k1,2516:27048196,13819171:226258 -k1,2516:27925882,13819171:226258 -k1,2516:29854110,13819171:226258 -k1,2516:31966991,13819171:0 -) -(1,2517:7246811,14660659:24720180,505283,134348 -g1,2516:9144078,14660659 -g1,2516:11815325,14660659 -g1,2516:12739382,14660659 -g1,2516:13554649,14660659 -g1,2516:16086960,14660659 -(1,2516:16086960,14660659:0,414482,115847 -r1,2564:16796938,14660659:709978,530329,115847 -k1,2516:16086960,14660659:-709978 -) -(1,2516:16086960,14660659:709978,414482,115847 -k1,2516:16086960,14660659:3277 -h1,2516:16793661,14660659:0,411205,112570 -) -g1,2516:16996167,14660659 -g1,2516:17726893,14660659 -g1,2516:18692238,14660659 -g1,2516:19759819,14660659 -g1,2516:21489314,14660659 -g1,2516:22339971,14660659 -k1,2517:31966991,14660659:8360864 -g1,2517:31966991,14660659 -) -v1,2519:7246811,15851125:0,393216,0 -(1,2552:7246811,26443299:24720180,10985390,196608 -g1,2552:7246811,26443299 -g1,2552:7246811,26443299 -g1,2552:7050203,26443299 -(1,2552:7050203,26443299:0,10985390,196608 -r1,2564:32163599,26443299:25113396,11181998,196608 -k1,2552:7050203,26443299:-25113396 -) -(1,2552:7050203,26443299:25113396,10985390,196608 -[1,2552:7246811,26443299:24720180,10788782,0 -(1,2521:7246811,16058743:24720180,404226,82312 -(1,2520:7246811,16058743:0,0,0 -g1,2520:7246811,16058743 -g1,2520:7246811,16058743 -g1,2520:6919131,16058743 -(1,2520:6919131,16058743:0,0,0 -) -g1,2520:7246811,16058743 -) -g1,2521:7879103,16058743 -g1,2521:8827541,16058743 -g1,2521:10408271,16058743 -h1,2521:11356708,16058743:0,0,0 -k1,2521:31966992,16058743:20610284 -g1,2521:31966992,16058743 -) -(1,2522:7246811,16724921:24720180,404226,76021 -h1,2522:7246811,16724921:0,0,0 -k1,2522:7246811,16724921:0 -h1,2522:12305142,16724921:0,0,0 -k1,2522:31966990,16724921:19661848 -g1,2522:31966990,16724921 -) -(1,2526:7246811,17456635:24720180,404226,76021 -(1,2524:7246811,17456635:0,0,0 -g1,2524:7246811,17456635 -g1,2524:7246811,17456635 -g1,2524:6919131,17456635 -(1,2524:6919131,17456635:0,0,0 -) -g1,2524:7246811,17456635 -) -g1,2526:8195248,17456635 -g1,2526:9459831,17456635 -h1,2526:10724414,17456635:0,0,0 -k1,2526:31966990,17456635:21242576 -g1,2526:31966990,17456635 -) -(1,2528:7246811,18778173:24720180,404226,76021 -(1,2527:7246811,18778173:0,0,0 -g1,2527:7246811,18778173 -g1,2527:7246811,18778173 -g1,2527:6919131,18778173 -(1,2527:6919131,18778173:0,0,0 -) -g1,2527:7246811,18778173 -) -k1,2528:7246811,18778173:0 -h1,2528:11672851,18778173:0,0,0 -k1,2528:31966991,18778173:20294140 -g1,2528:31966991,18778173 -) -(1,2532:7246811,19509887:24720180,404226,76021 -(1,2530:7246811,19509887:0,0,0 -g1,2530:7246811,19509887 -g1,2530:7246811,19509887 -g1,2530:6919131,19509887 -(1,2530:6919131,19509887:0,0,0 -) -g1,2530:7246811,19509887 -) -g1,2532:8195248,19509887 -g1,2532:9459831,19509887 -h1,2532:11040559,19509887:0,0,0 -k1,2532:31966991,19509887:20926432 -g1,2532:31966991,19509887 -) -(1,2534:7246811,20831425:24720180,404226,82312 -(1,2533:7246811,20831425:0,0,0 -g1,2533:7246811,20831425 -g1,2533:7246811,20831425 -g1,2533:6919131,20831425 -(1,2533:6919131,20831425:0,0,0 -) -g1,2533:7246811,20831425 -) -g1,2534:7879103,20831425 -g1,2534:8827541,20831425 -g1,2534:11672853,20831425 -h1,2534:12621290,20831425:0,0,0 -k1,2534:31966990,20831425:19345700 -g1,2534:31966990,20831425 -) -(1,2535:7246811,21497603:24720180,404226,76021 -h1,2535:7246811,21497603:0,0,0 -k1,2535:7246811,21497603:0 -h1,2535:12937433,21497603:0,0,0 -k1,2535:31966991,21497603:19029558 -g1,2535:31966991,21497603 -) -(1,2539:7246811,22229317:24720180,404226,76021 -(1,2537:7246811,22229317:0,0,0 -g1,2537:7246811,22229317 -g1,2537:7246811,22229317 -g1,2537:6919131,22229317 -(1,2537:6919131,22229317:0,0,0 -) -g1,2537:7246811,22229317 -) -g1,2539:8195248,22229317 -g1,2539:9459831,22229317 -h1,2539:10724414,22229317:0,0,0 -k1,2539:31966990,22229317:21242576 -g1,2539:31966990,22229317 -) -(1,2541:7246811,23550855:24720180,404226,76021 -(1,2540:7246811,23550855:0,0,0 -g1,2540:7246811,23550855 -g1,2540:7246811,23550855 -g1,2540:6919131,23550855 -(1,2540:6919131,23550855:0,0,0 -) -g1,2540:7246811,23550855 -) -k1,2541:7246811,23550855:0 -h1,2541:12305142,23550855:0,0,0 -k1,2541:31966990,23550855:19661848 -g1,2541:31966990,23550855 -) -(1,2545:7246811,24282569:24720180,404226,76021 -(1,2543:7246811,24282569:0,0,0 -g1,2543:7246811,24282569 -g1,2543:7246811,24282569 -g1,2543:6919131,24282569 -(1,2543:6919131,24282569:0,0,0 -) -g1,2543:7246811,24282569 -) -g1,2545:8195248,24282569 -g1,2545:9459831,24282569 -h1,2545:11040559,24282569:0,0,0 -k1,2545:31966991,24282569:20926432 -g1,2545:31966991,24282569 -) -(1,2547:7246811,25604107:24720180,404226,76021 -(1,2546:7246811,25604107:0,0,0 -g1,2546:7246811,25604107 -g1,2546:7246811,25604107 -g1,2546:6919131,25604107 -(1,2546:6919131,25604107:0,0,0 -) -g1,2546:7246811,25604107 -) -k1,2547:7246811,25604107:0 -h1,2547:10092122,25604107:0,0,0 -k1,2547:31966990,25604107:21874868 -g1,2547:31966990,25604107 -) -(1,2551:7246811,26335821:24720180,404226,107478 -(1,2549:7246811,26335821:0,0,0 -g1,2549:7246811,26335821 -g1,2549:7246811,26335821 -g1,2549:6919131,26335821 -(1,2549:6919131,26335821:0,0,0 -) -g1,2549:7246811,26335821 -) -g1,2551:8195248,26335821 -g1,2551:9459831,26335821 -h1,2551:12305142,26335821:0,0,0 -k1,2551:31966990,26335821:19661848 -g1,2551:31966990,26335821 -) -] -) -g1,2552:31966991,26443299 -g1,2552:7246811,26443299 -g1,2552:7246811,26443299 -g1,2552:31966991,26443299 -g1,2552:31966991,26443299 -) -h1,2552:7246811,26639907:0,0,0 -(1,2556:7246811,28005683:24720180,505283,126483 -h1,2555:7246811,28005683:983040,0,0 -g1,2555:9919369,28005683 -g1,2555:11137683,28005683 -g1,2555:14523272,28005683 -g1,2555:16590932,28005683 -g1,2555:18716919,28005683 -k1,2556:31966991,28005683:8779861 -g1,2556:31966991,28005683 -) -v1,2558:7246811,29196149:0,393216,0 -(1,2562:7246811,29479788:24720180,676855,196608 -g1,2562:7246811,29479788 -g1,2562:7246811,29479788 -g1,2562:7050203,29479788 -(1,2562:7050203,29479788:0,676855,196608 -r1,2564:32163599,29479788:25113396,873463,196608 -k1,2562:7050203,29479788:-25113396 -) -(1,2562:7050203,29479788:25113396,676855,196608 -[1,2562:7246811,29479788:24720180,480247,0 -(1,2560:7246811,29403767:24720180,404226,76021 -(1,2559:7246811,29403767:0,0,0 -g1,2559:7246811,29403767 -g1,2559:7246811,29403767 -g1,2559:6919131,29403767 -(1,2559:6919131,29403767:0,0,0 -) -g1,2559:7246811,29403767 -) -g1,2560:8827540,29403767 -g1,2560:9775978,29403767 -h1,2560:11040561,29403767:0,0,0 -k1,2560:31966991,29403767:20926430 -g1,2560:31966991,29403767 -) -] -) -g1,2562:31966991,29479788 -g1,2562:7246811,29479788 -g1,2562:7246811,29479788 -g1,2562:31966991,29479788 -g1,2562:31966991,29479788 -) -h1,2562:7246811,29676396:0,0,0 -] -) -] -r1,2564:32583029,30790508:26214,20406022,0 -) -] -) -) -g1,2564:32583029,30200684 -) -h1,2564:6630773,30816722:0,0,0 -(1,2568:6630773,34148578:25952256,32768,229376 -(1,2568:6630773,34148578:0,32768,229376 -(1,2568:6630773,34148578:5505024,32768,229376 -r1,2568:12135797,34148578:5505024,262144,229376 -) -k1,2568:6630773,34148578:-5505024 -) -(1,2568:6630773,34148578:25952256,32768,0 -r1,2568:32583029,34148578:25952256,32768,0 -) -) -(1,2568:6630773,35752906:25952256,606339,151780 -(1,2568:6630773,35752906:2464678,582746,14155 -g1,2568:6630773,35752906 -g1,2568:9095451,35752906 -) -g1,2568:11954918,35752906 -k1,2568:32583029,35752906:15379464 -g1,2568:32583029,35752906 -) -(1,2571:6630773,36987610:25952256,513147,126483 -k1,2570:7335753,36987610:227223 -k1,2570:8733448,36987610:227222 -k1,2570:10435886,36987610:227223 -k1,2570:12075410,36987610:227223 -k1,2570:14336214,36987610:227222 -k1,2570:17172425,36987610:227223 -k1,2570:18058940,36987610:227223 -k1,2570:19489403,36987610:227222 -k1,2570:22307920,36987610:227223 -k1,2570:23705615,36987610:227222 -k1,2570:26267230,36987610:227223 -k1,2570:28217395,36987610:227223 -k1,2570:29774998,36987610:227222 -k1,2570:30653649,36987610:227223 -k1,2570:32583029,36987610:0 -) -(1,2571:6630773,37829098:25952256,505283,126483 -k1,2570:7199625,37829098:212992 -k1,2570:9564164,37829098:212992 -k1,2570:10695971,37829098:212992 -k1,2570:13217140,37829098:212991 -k1,2570:14421692,37829098:212992 -k1,2570:17939665,37829098:212992 -k1,2570:18804085,37829098:212992 -k1,2570:20565693,37829098:212992 -k1,2570:22734935,37829098:212992 -k1,2570:23695692,37829098:212991 -k1,2570:26195235,37829098:212992 -k1,2570:27024265,37829098:212992 -k1,2570:31560667,37829098:212992 -k1,2571:32583029,37829098:0 -) -(1,2571:6630773,38670586:25952256,505283,126483 -k1,2570:8757529,38670586:246528 -k1,2570:9690219,38670586:246528 -$1,2570:9690219,38670586 -(1,2570:10163390,38768900:1131020,334430,5505 -) -k1,2570:11562916,38670586:268506 -k1,2570:12399619,38670586:268506 -(1,2570:12862303,38768900:311689,334430,0 -) -k1,2570:13472627,38670586:109236 -(1,2570:13935311,38768900:311689,339935,0 -) -k1,2570:14545635,38670586:109236 -k1,2570:15310231,38670586:109236 -k1,2570:15608866,38670586:109236 -(1,2570:16071550,38768900:233243,346358,5505 -) -k1,2570:16603428,38670586:109236 -k1,2570:17368024,38670586:109236 -k1,2570:17666659,38670586:109236 -(1,2570:18129343,38768900:393347,248644,5505 -) -$1,2570:18522690,38670586 -k1,2570:18942888,38670586:246528 -k1,2570:20569604,38670586:246528 -k1,2570:21807692,38670586:246528 -k1,2570:23120490,38670586:246527 -k1,2570:24386103,38670586:246528 -k1,2570:27937612,38670586:246528 -k1,2570:28835568,38670586:246528 -k1,2570:30101181,38670586:246528 -k1,2570:32583029,38670586:0 -) -(1,2571:6630773,39512074:25952256,658636,126483 -k1,2570:9584528,39512074:176339 -k1,2570:10376904,39512074:176338 -k1,2570:13073758,39512074:176339 -k1,2570:15135568,39512074:176339 -k1,2570:16303466,39512074:176338 -k1,2570:20150476,39512074:176339 -k1,2570:21720765,39512074:176338 -k1,2570:22667807,39512074:176339 -k1,2570:24692261,39512074:176339 -k1,2570:25554761,39512074:176338 -k1,2570:26501803,39512074:176339 -k1,2570:29494224,39512074:176339 -k1,2570:31164128,39512074:176338 -k1,2570:32026629,39512074:176339 -$1,2570:32026629,39512074 -[1,2570:32026629,39512074:382730,658636,0 -(1,2570:32026629,39385590:0,532152,0 -(1,2570:32026629,39385590:382730,532152,0 -k1,2570:32093475,39385590:-129762 -) -) -(1,2570:32026629,39512074:382730,473825,0 -) -] -$1,2570:32409359,39512074 -k1,2571:32583029,39512074:0 -k1,2571:32583029,39512074:0 -) -(1,2573:6630773,40353562:25952256,505283,134348 -h1,2572:6630773,40353562:983040,0,0 -k1,2572:8422003,40353562:180355 -k1,2572:9805599,40353562:180355 -k1,2572:12264641,40353562:180355 -k1,2572:13313348,40353562:180355 -k1,2572:14485263,40353562:180355 -k1,2572:16424604,40353562:180355 -k1,2572:17256387,40353562:180355 -k1,2572:18461724,40353562:180354 -k1,2572:19972460,40353562:180355 -k1,2572:20804243,40353562:180355 -k1,2572:23188574,40353562:180355 -k1,2572:24051814,40353562:180355 -k1,2572:26839847,40353562:180355 -k1,2572:29492220,40353562:180355 -k1,2572:30864020,40353562:180355 -k1,2572:32583029,40353562:0 -) -(1,2573:6630773,41195050:25952256,513147,134348 -k1,2572:9665211,41195050:165272 -k1,2572:11324048,41195050:165271 -k1,2572:12175482,41195050:165272 -$1,2572:12175482,41195050 -(1,2572:12638166,41293364:311689,339935,0 -) -$1,2572:12949855,41195050 -k1,2572:13115127,41195050:165272 -k1,2572:14848019,41195050:165271 -k1,2572:15369151,41195050:165272 -k1,2572:17685970,41195050:165272 -k1,2572:20744001,41195050:165272 -k1,2572:21900832,41195050:165271 -k1,2572:25038162,41195050:165272 -k1,2572:26938827,41195050:165272 -k1,2572:27874801,41195050:165271 -k1,2572:29789229,41195050:165272 -k1,2572:32583029,41195050:0 -) -(1,2573:6630773,42036538:25952256,505283,134348 -k1,2572:7474876,42036538:228065 -k1,2572:9575960,42036538:228065 -k1,2572:11945087,42036538:228066 -k1,2572:15052149,42036538:228065 -k1,2572:16476901,42036538:228065 -k1,2572:18454123,42036538:228066 -k1,2572:21544145,42036538:228065 -k1,2572:22791295,42036538:228065 -k1,2572:25633591,42036538:228065 -k1,2572:26477695,42036538:228066 -k1,2572:27724845,42036538:228065 -k1,2572:30104457,42036538:228065 -k1,2572:32583029,42036538:0 -) -(1,2573:6630773,42878026:25952256,513147,134348 -k1,2572:8400359,42878026:201965 -k1,2572:9932706,42878026:201966 -k1,2572:13110006,42878026:201965 -k1,2572:14331057,42878026:201966 -k1,2572:16253997,42878026:201965 -k1,2572:20779373,42878026:201966 -k1,2572:23945531,42878026:201965 -k1,2572:25781309,42878026:201965 -k1,2572:26599313,42878026:201966 -k1,2572:28779155,42878026:201965 -k1,2572:30937371,42878026:201966 -k1,2572:31887102,42878026:201965 -$1,2572:31887102,42878026 -(1,2572:32349786,42976340:233243,346358,5505 -) -$1,2572:32583029,42878026 -k1,2573:32583029,42878026:0 -) -(1,2573:6630773,43719514:25952256,513147,126483 -k1,2572:7778494,43719514:200070 -k1,2572:8334424,43719514:200070 -k1,2572:10512371,43719514:200070 -$1,2572:10512371,43719514 -(1,2572:10975055,43817828:1131020,334430,5505 -) -$1,2572:12106075,43719514 -k1,2572:12479815,43719514:200070 -k1,2572:13295923,43719514:200070 -k1,2572:13910835,43719514:200069 -k1,2572:14642402,43719514:200070 -k1,2572:18652080,43719514:200070 -k1,2572:19538312,43719514:200070 -(1,2572:19538312,43719514:0,452978,115847 -r1,2572:20951713,43719514:1413401,568825,115847 -k1,2572:19538312,43719514:-1413401 -) -(1,2572:19538312,43719514:1413401,452978,115847 -k1,2572:19538312,43719514:3277 -h1,2572:20948436,43719514:0,411205,112570 -) -k1,2572:21151783,43719514:200070 -k1,2572:22543298,43719514:200070 -k1,2572:23762453,43719514:200070 -k1,2572:25845372,43719514:200070 -k1,2572:28023319,43719514:200070 -k1,2572:28909551,43719514:200070 -k1,2572:31143203,43719514:200070 -k1,2572:32583029,43719514:0 -) -(1,2573:6630773,44561002:25952256,414482,115847 -g1,2572:7516164,44561002 -(1,2572:7516164,44561002:0,414482,115847 -r1,2572:7874430,44561002:358266,530329,115847 -k1,2572:7516164,44561002:-358266 -) -(1,2572:7516164,44561002:358266,414482,115847 -k1,2572:7516164,44561002:3277 -h1,2572:7871153,44561002:0,411205,112570 -) -k1,2573:32583028,44561002:24534928 -g1,2573:32583028,44561002 -) -] -(1,2575:32583029,45706769:0,0,0 -g1,2575:32583029,45706769 -) -) -] -(1,2575:6630773,47279633:25952256,0,0 -h1,2575:6630773,47279633:25952256,0,0 -) -] -h1,2575:4262630,4025873:0,0,0 -] -!23229 +[1,2581:6630773,45706769:25952256,40108032,0 +v1,2519:6630773,6254097:0,393216,0 +(1,2519:6630773,8769674:25952256,2908793,616038 +g1,2519:6630773,8769674 +(1,2519:6630773,8769674:25952256,2908793,616038 +(1,2519:6630773,9385712:25952256,3524831,0 +[1,2519:6630773,9385712:25952256,3524831,0 +(1,2519:6630773,9359498:25952256,3498617,0 +r1,2519:6656987,9359498:26214,3498617,0 +[1,2519:6656987,9359498:25899828,3498617,0 +(1,2519:6656987,8769674:25899828,2318969,0 +[1,2519:7246811,8769674:24720180,2318969,0 +(1,2519:7246811,6963852:24720180,513147,134348 +k1,2518:8671615,6963852:233359 +k1,2518:11616197,6963852:233358 +k1,2518:12611084,6963852:233359 +k1,2518:14741054,6963852:233358 +k1,2518:15625841,6963852:233359 +k1,2518:17788580,6963852:233359 +k1,2518:19041023,6963852:233358 +k1,2518:20927855,6963852:233359 +k1,2518:24366580,6963852:233359 +k1,2518:26758694,6963852:233358 +k1,2518:27753581,6963852:233359 +k1,2518:30055255,6963852:233358 +k1,2518:30947906,6963852:233359 +k1,2518:31966991,6963852:0 +) +(1,2519:7246811,7805340:24720180,513147,126483 +k1,2518:8626797,7805340:207547 +k1,2518:12033813,7805340:207548 +k1,2518:13139203,7805340:207547 +k1,2518:14632567,7805340:207548 +k1,2518:16182947,7805340:207547 +k1,2518:17784446,7805340:207548 +k1,2518:19688720,7805340:207547 +k1,2518:22922065,7805340:207548 +k1,2518:24523563,7805340:207547 +k1,2518:26433081,7805340:207548 +k1,2518:28357016,7805340:207547 +k1,2518:29223856,7805340:207548 +k1,2518:30820766,7805340:207547 +k1,2519:31966991,7805340:0 +) +(1,2519:7246811,8646828:24720180,505283,122846 +(1,2518:7246811,8646828:0,452978,122846 +r1,2519:9715348,8646828:2468537,575824,122846 +k1,2518:7246811,8646828:-2468537 +) +(1,2518:7246811,8646828:2468537,452978,122846 +k1,2518:7246811,8646828:3277 +h1,2518:9712071,8646828:0,411205,112570 +) +g1,2518:9914577,8646828 +g1,2518:11305251,8646828 +(1,2518:11305251,8646828:0,452978,115847 +r1,2519:14477211,8646828:3171960,568825,115847 +k1,2518:11305251,8646828:-3171960 +) +(1,2518:11305251,8646828:3171960,452978,115847 +k1,2518:11305251,8646828:3277 +h1,2518:14473934,8646828:0,411205,112570 +) +k1,2519:31966991,8646828:17316110 +g1,2519:31966991,8646828 +) +] +) +] +r1,2519:32583029,9359498:26214,3498617,0 +) +] +) +) +g1,2519:32583029,8769674 +) +h1,2519:6630773,9385712:0,0,0 +v1,2522:6630773,10751488:0,393216,0 +(1,2570:6630773,30200684:25952256,19842412,616038 +g1,2570:6630773,30200684 +(1,2570:6630773,30200684:25952256,19842412,616038 +(1,2570:6630773,30816722:25952256,20458450,0 +[1,2570:6630773,30816722:25952256,20458450,0 +(1,2570:6630773,30790508:25952256,20406022,0 +r1,2570:6656987,30790508:26214,20406022,0 +[1,2570:6656987,30790508:25899828,20406022,0 +(1,2570:6656987,30200684:25899828,19226374,0 +[1,2570:7246811,30200684:24720180,19226374,0 +(1,2523:7246811,12136195:24720180,1161885,196608 +(1,2522:7246811,12136195:0,1161885,196608 +r1,2570:8794447,12136195:1547636,1358493,196608 +k1,2522:7246811,12136195:-1547636 +) +(1,2522:7246811,12136195:1547636,1161885,196608 +) +k1,2522:8969108,12136195:174661 +k1,2522:10097318,12136195:174661 +k1,2522:11747193,12136195:174660 +k1,2522:13777178,12136195:174661 +k1,2522:17041862,12136195:174661 +(1,2522:17041862,12136195:0,414482,115847 +r1,2570:17751840,12136195:709978,530329,115847 +k1,2522:17041862,12136195:-709978 +) +(1,2522:17041862,12136195:709978,414482,115847 +k1,2522:17041862,12136195:3277 +h1,2522:17748563,12136195:0,411205,112570 +) +k1,2522:17926501,12136195:174661 +k1,2522:18787323,12136195:174660 +k1,2522:19317844,12136195:174661 +k1,2522:21365524,12136195:174661 +k1,2522:23220528,12136195:174661 +k1,2522:26058572,12136195:174661 +k1,2522:28519783,12136195:174660 +k1,2522:29766613,12136195:174661 +k1,2522:30557312,12136195:174661 +k1,2523:31966991,12136195:0 +) +(1,2523:7246811,12977683:24720180,513147,126483 +k1,2522:8275795,12977683:209784 +(1,2522:8275795,12977683:0,414482,115847 +r1,2570:8985773,12977683:709978,530329,115847 +k1,2522:8275795,12977683:-709978 +) +(1,2522:8275795,12977683:709978,414482,115847 +k1,2522:8275795,12977683:3277 +h1,2522:8982496,12977683:0,411205,112570 +) +k1,2522:9195557,12977683:209784 +k1,2522:9735642,12977683:209784 +k1,2522:11640841,12977683:209783 +k1,2522:12466663,12977683:209784 +k1,2522:15018704,12977683:209784 +k1,2522:17562880,12977683:209784 +(1,2522:17562880,12977683:0,452978,115847 +r1,2570:20383129,12977683:2820249,568825,115847 +k1,2522:17562880,12977683:-2820249 +) +(1,2522:17562880,12977683:2820249,452978,115847 +k1,2522:17562880,12977683:3277 +h1,2522:20379852,12977683:0,411205,112570 +) +k1,2522:20766583,12977683:209784 +(1,2522:20766583,12977683:0,452978,115847 +r1,2570:25345391,12977683:4578808,568825,115847 +k1,2522:20766583,12977683:-4578808 +) +(1,2522:20766583,12977683:4578808,452978,115847 +k1,2522:20766583,12977683:3277 +h1,2522:25342114,12977683:0,411205,112570 +) +k1,2522:25728845,12977683:209784 +k1,2522:27050119,12977683:209783 +k1,2522:28451348,12977683:209784 +(1,2522:28451348,12977683:0,414482,115847 +r1,2570:29161326,12977683:709978,530329,115847 +k1,2522:28451348,12977683:-709978 +) +(1,2522:28451348,12977683:709978,414482,115847 +k1,2522:28451348,12977683:3277 +h1,2522:29158049,12977683:0,411205,112570 +) +k1,2522:29371110,12977683:209784 +k1,2522:31966991,12977683:0 +) +(1,2523:7246811,13819171:24720180,513147,126483 +k1,2522:8124497,13819171:226258 +k1,2522:9121458,13819171:226258 +(1,2522:9121458,13819171:0,414482,115847 +r1,2570:9831436,13819171:709978,530329,115847 +k1,2522:9121458,13819171:-709978 +) +(1,2522:9121458,13819171:709978,414482,115847 +k1,2522:9121458,13819171:3277 +h1,2522:9828159,13819171:0,411205,112570 +) +k1,2522:10057694,13819171:226258 +k1,2522:10943243,13819171:226257 +k1,2522:12724670,13819171:226258 +(1,2522:12724670,13819171:0,452978,122846 +r1,2570:15193207,13819171:2468537,575824,122846 +k1,2522:12724670,13819171:-2468537 +) +(1,2522:12724670,13819171:2468537,452978,122846 +k1,2522:12724670,13819171:3277 +h1,2522:15189930,13819171:0,411205,112570 +) +k1,2522:15593135,13819171:226258 +(1,2522:15593135,13819171:0,414482,115847 +r1,2570:16303113,13819171:709978,530329,115847 +k1,2522:15593135,13819171:-709978 +) +(1,2522:15593135,13819171:709978,414482,115847 +k1,2522:15593135,13819171:3277 +h1,2522:16299836,13819171:0,411205,112570 +) +k1,2522:16529371,13819171:226258 +k1,2522:17287126,13819171:226258 +k1,2522:20358302,13819171:226258 +k1,2522:23745361,13819171:226258 +k1,2522:24780989,13819171:226258 +k1,2522:26026331,13819171:226257 +k1,2522:27048196,13819171:226258 +k1,2522:27925882,13819171:226258 +k1,2522:29854110,13819171:226258 +k1,2522:31966991,13819171:0 +) +(1,2523:7246811,14660659:24720180,505283,134348 +g1,2522:9144078,14660659 +g1,2522:11815325,14660659 +g1,2522:12739382,14660659 +g1,2522:13554649,14660659 +g1,2522:16086960,14660659 +(1,2522:16086960,14660659:0,414482,115847 +r1,2570:16796938,14660659:709978,530329,115847 +k1,2522:16086960,14660659:-709978 +) +(1,2522:16086960,14660659:709978,414482,115847 +k1,2522:16086960,14660659:3277 +h1,2522:16793661,14660659:0,411205,112570 +) +g1,2522:16996167,14660659 +g1,2522:17726893,14660659 +g1,2522:18692238,14660659 +g1,2522:19759819,14660659 +g1,2522:21489314,14660659 +g1,2522:22339971,14660659 +k1,2523:31966991,14660659:8360864 +g1,2523:31966991,14660659 +) +v1,2525:7246811,15851125:0,393216,0 +(1,2558:7246811,26443299:24720180,10985390,196608 +g1,2558:7246811,26443299 +g1,2558:7246811,26443299 +g1,2558:7050203,26443299 +(1,2558:7050203,26443299:0,10985390,196608 +r1,2570:32163599,26443299:25113396,11181998,196608 +k1,2558:7050203,26443299:-25113396 +) +(1,2558:7050203,26443299:25113396,10985390,196608 +[1,2558:7246811,26443299:24720180,10788782,0 +(1,2527:7246811,16058743:24720180,404226,82312 +(1,2526:7246811,16058743:0,0,0 +g1,2526:7246811,16058743 +g1,2526:7246811,16058743 +g1,2526:6919131,16058743 +(1,2526:6919131,16058743:0,0,0 +) +g1,2526:7246811,16058743 +) +g1,2527:7879103,16058743 +g1,2527:8827541,16058743 +g1,2527:10408271,16058743 +h1,2527:11356708,16058743:0,0,0 +k1,2527:31966992,16058743:20610284 +g1,2527:31966992,16058743 +) +(1,2528:7246811,16724921:24720180,404226,76021 +h1,2528:7246811,16724921:0,0,0 +k1,2528:7246811,16724921:0 +h1,2528:12305142,16724921:0,0,0 +k1,2528:31966990,16724921:19661848 +g1,2528:31966990,16724921 +) +(1,2532:7246811,17456635:24720180,404226,76021 +(1,2530:7246811,17456635:0,0,0 +g1,2530:7246811,17456635 +g1,2530:7246811,17456635 +g1,2530:6919131,17456635 +(1,2530:6919131,17456635:0,0,0 +) +g1,2530:7246811,17456635 +) +g1,2532:8195248,17456635 +g1,2532:9459831,17456635 +h1,2532:10724414,17456635:0,0,0 +k1,2532:31966990,17456635:21242576 +g1,2532:31966990,17456635 +) +(1,2534:7246811,18778173:24720180,404226,76021 +(1,2533:7246811,18778173:0,0,0 +g1,2533:7246811,18778173 +g1,2533:7246811,18778173 +g1,2533:6919131,18778173 +(1,2533:6919131,18778173:0,0,0 +) +g1,2533:7246811,18778173 +) +k1,2534:7246811,18778173:0 +h1,2534:11672851,18778173:0,0,0 +k1,2534:31966991,18778173:20294140 +g1,2534:31966991,18778173 +) +(1,2538:7246811,19509887:24720180,404226,76021 +(1,2536:7246811,19509887:0,0,0 +g1,2536:7246811,19509887 +g1,2536:7246811,19509887 +g1,2536:6919131,19509887 +(1,2536:6919131,19509887:0,0,0 +) +g1,2536:7246811,19509887 +) +g1,2538:8195248,19509887 +g1,2538:9459831,19509887 +h1,2538:11040559,19509887:0,0,0 +k1,2538:31966991,19509887:20926432 +g1,2538:31966991,19509887 +) +(1,2540:7246811,20831425:24720180,404226,82312 +(1,2539:7246811,20831425:0,0,0 +g1,2539:7246811,20831425 +g1,2539:7246811,20831425 +g1,2539:6919131,20831425 +(1,2539:6919131,20831425:0,0,0 +) +g1,2539:7246811,20831425 +) +g1,2540:7879103,20831425 +g1,2540:8827541,20831425 +g1,2540:11672853,20831425 +h1,2540:12621290,20831425:0,0,0 +k1,2540:31966990,20831425:19345700 +g1,2540:31966990,20831425 +) +(1,2541:7246811,21497603:24720180,404226,76021 +h1,2541:7246811,21497603:0,0,0 +k1,2541:7246811,21497603:0 +h1,2541:12937433,21497603:0,0,0 +k1,2541:31966991,21497603:19029558 +g1,2541:31966991,21497603 +) +(1,2545:7246811,22229317:24720180,404226,76021 +(1,2543:7246811,22229317:0,0,0 +g1,2543:7246811,22229317 +g1,2543:7246811,22229317 +g1,2543:6919131,22229317 +(1,2543:6919131,22229317:0,0,0 +) +g1,2543:7246811,22229317 +) +g1,2545:8195248,22229317 +g1,2545:9459831,22229317 +h1,2545:10724414,22229317:0,0,0 +k1,2545:31966990,22229317:21242576 +g1,2545:31966990,22229317 +) +(1,2547:7246811,23550855:24720180,404226,76021 +(1,2546:7246811,23550855:0,0,0 +g1,2546:7246811,23550855 +g1,2546:7246811,23550855 +g1,2546:6919131,23550855 +(1,2546:6919131,23550855:0,0,0 +) +g1,2546:7246811,23550855 +) +k1,2547:7246811,23550855:0 +h1,2547:12305142,23550855:0,0,0 +k1,2547:31966990,23550855:19661848 +g1,2547:31966990,23550855 +) +(1,2551:7246811,24282569:24720180,404226,76021 +(1,2549:7246811,24282569:0,0,0 +g1,2549:7246811,24282569 +g1,2549:7246811,24282569 +g1,2549:6919131,24282569 +(1,2549:6919131,24282569:0,0,0 +) +g1,2549:7246811,24282569 +) +g1,2551:8195248,24282569 +g1,2551:9459831,24282569 +h1,2551:11040559,24282569:0,0,0 +k1,2551:31966991,24282569:20926432 +g1,2551:31966991,24282569 +) +(1,2553:7246811,25604107:24720180,404226,76021 +(1,2552:7246811,25604107:0,0,0 +g1,2552:7246811,25604107 +g1,2552:7246811,25604107 +g1,2552:6919131,25604107 +(1,2552:6919131,25604107:0,0,0 +) +g1,2552:7246811,25604107 +) +k1,2553:7246811,25604107:0 +h1,2553:10092122,25604107:0,0,0 +k1,2553:31966990,25604107:21874868 +g1,2553:31966990,25604107 +) +(1,2557:7246811,26335821:24720180,404226,107478 +(1,2555:7246811,26335821:0,0,0 +g1,2555:7246811,26335821 +g1,2555:7246811,26335821 +g1,2555:6919131,26335821 +(1,2555:6919131,26335821:0,0,0 +) +g1,2555:7246811,26335821 +) +g1,2557:8195248,26335821 +g1,2557:9459831,26335821 +h1,2557:12305142,26335821:0,0,0 +k1,2557:31966990,26335821:19661848 +g1,2557:31966990,26335821 +) +] +) +g1,2558:31966991,26443299 +g1,2558:7246811,26443299 +g1,2558:7246811,26443299 +g1,2558:31966991,26443299 +g1,2558:31966991,26443299 +) +h1,2558:7246811,26639907:0,0,0 +(1,2562:7246811,28005683:24720180,505283,126483 +h1,2561:7246811,28005683:983040,0,0 +g1,2561:9919369,28005683 +g1,2561:11137683,28005683 +g1,2561:14523272,28005683 +g1,2561:16590932,28005683 +g1,2561:18716919,28005683 +k1,2562:31966991,28005683:8779861 +g1,2562:31966991,28005683 +) +v1,2564:7246811,29196149:0,393216,0 +(1,2568:7246811,29479788:24720180,676855,196608 +g1,2568:7246811,29479788 +g1,2568:7246811,29479788 +g1,2568:7050203,29479788 +(1,2568:7050203,29479788:0,676855,196608 +r1,2570:32163599,29479788:25113396,873463,196608 +k1,2568:7050203,29479788:-25113396 +) +(1,2568:7050203,29479788:25113396,676855,196608 +[1,2568:7246811,29479788:24720180,480247,0 +(1,2566:7246811,29403767:24720180,404226,76021 +(1,2565:7246811,29403767:0,0,0 +g1,2565:7246811,29403767 +g1,2565:7246811,29403767 +g1,2565:6919131,29403767 +(1,2565:6919131,29403767:0,0,0 +) +g1,2565:7246811,29403767 +) +g1,2566:8827540,29403767 +g1,2566:9775978,29403767 +h1,2566:11040561,29403767:0,0,0 +k1,2566:31966991,29403767:20926430 +g1,2566:31966991,29403767 +) +] +) +g1,2568:31966991,29479788 +g1,2568:7246811,29479788 +g1,2568:7246811,29479788 +g1,2568:31966991,29479788 +g1,2568:31966991,29479788 +) +h1,2568:7246811,29676396:0,0,0 +] +) +] +r1,2570:32583029,30790508:26214,20406022,0 +) +] +) +) +g1,2570:32583029,30200684 +) +h1,2570:6630773,30816722:0,0,0 +(1,2574:6630773,34148578:25952256,32768,229376 +(1,2574:6630773,34148578:0,32768,229376 +(1,2574:6630773,34148578:5505024,32768,229376 +r1,2574:12135797,34148578:5505024,262144,229376 +) +k1,2574:6630773,34148578:-5505024 +) +(1,2574:6630773,34148578:25952256,32768,0 +r1,2574:32583029,34148578:25952256,32768,0 +) +) +(1,2574:6630773,35752906:25952256,606339,151780 +(1,2574:6630773,35752906:2464678,582746,14155 +g1,2574:6630773,35752906 +g1,2574:9095451,35752906 +) +g1,2574:11954918,35752906 +k1,2574:32583029,35752906:15379464 +g1,2574:32583029,35752906 +) +(1,2577:6630773,36987610:25952256,513147,126483 +k1,2576:7335753,36987610:227223 +k1,2576:8733448,36987610:227222 +k1,2576:10435886,36987610:227223 +k1,2576:12075410,36987610:227223 +k1,2576:14336214,36987610:227222 +k1,2576:17172425,36987610:227223 +k1,2576:18058940,36987610:227223 +k1,2576:19489403,36987610:227222 +k1,2576:22307920,36987610:227223 +k1,2576:23705615,36987610:227222 +k1,2576:26267230,36987610:227223 +k1,2576:28217395,36987610:227223 +k1,2576:29774998,36987610:227222 +k1,2576:30653649,36987610:227223 +k1,2576:32583029,36987610:0 +) +(1,2577:6630773,37829098:25952256,505283,126483 +k1,2576:7199625,37829098:212992 +k1,2576:9564164,37829098:212992 +k1,2576:10695971,37829098:212992 +k1,2576:13217140,37829098:212991 +k1,2576:14421692,37829098:212992 +k1,2576:17939665,37829098:212992 +k1,2576:18804085,37829098:212992 +k1,2576:20565693,37829098:212992 +k1,2576:22734935,37829098:212992 +k1,2576:23695692,37829098:212991 +k1,2576:26195235,37829098:212992 +k1,2576:27024265,37829098:212992 +k1,2576:31560667,37829098:212992 +k1,2577:32583029,37829098:0 +) +(1,2577:6630773,38670586:25952256,505283,126483 +k1,2576:8757529,38670586:246528 +k1,2576:9690219,38670586:246528 +$1,2576:9690219,38670586 +(1,2576:10163390,38768900:1131020,334430,5505 +) +k1,2576:11562916,38670586:268506 +k1,2576:12399619,38670586:268506 +(1,2576:12862303,38768900:311689,334430,0 +) +k1,2576:13472627,38670586:109236 +(1,2576:13935311,38768900:311689,339935,0 +) +k1,2576:14545635,38670586:109236 +k1,2576:15310231,38670586:109236 +k1,2576:15608866,38670586:109236 +(1,2576:16071550,38768900:233243,346358,5505 +) +k1,2576:16603428,38670586:109236 +k1,2576:17368024,38670586:109236 +k1,2576:17666659,38670586:109236 +(1,2576:18129343,38768900:393347,248644,5505 +) +$1,2576:18522690,38670586 +k1,2576:18942888,38670586:246528 +k1,2576:20569604,38670586:246528 +k1,2576:21807692,38670586:246528 +k1,2576:23120490,38670586:246527 +k1,2576:24386103,38670586:246528 +k1,2576:27937612,38670586:246528 +k1,2576:28835568,38670586:246528 +k1,2576:30101181,38670586:246528 +k1,2576:32583029,38670586:0 +) +(1,2577:6630773,39512074:25952256,658636,126483 +k1,2576:9586213,39512074:178024 +k1,2576:10380275,39512074:178024 +k1,2576:13078814,39512074:178024 +k1,2576:15142308,39512074:178023 +k1,2576:16311892,39512074:178024 +k1,2576:20160587,39512074:178024 +k1,2576:21732562,39512074:178024 +k1,2576:22681289,39512074:178024 +k1,2576:24707428,39512074:178024 +k1,2576:25571614,39512074:178024 +k1,2576:26520340,39512074:178023 +k1,2576:29514446,39512074:178024 +k1,2576:31186036,39512074:178024 +k1,2576:32050222,39512074:178024 +$1,2576:32050222,39512074 +[1,2576:32050222,39512074:359137,658636,0 +(1,2576:32050222,39385590:0,532152,0 +(1,2576:32050222,39385590:359137,532152,0 +k1,2576:32093475,39385590:-153355 +) +) +(1,2576:32050222,39512074:359137,473825,0 +) +] +$1,2576:32409359,39512074 +k1,2577:32583029,39512074:0 +k1,2577:32583029,39512074:0 +) +(1,2579:6630773,40353562:25952256,505283,134348 +h1,2578:6630773,40353562:983040,0,0 +k1,2578:8422003,40353562:180355 +k1,2578:9805599,40353562:180355 +k1,2578:12264641,40353562:180355 +k1,2578:13313348,40353562:180355 +k1,2578:14485263,40353562:180355 +k1,2578:16424604,40353562:180355 +k1,2578:17256387,40353562:180355 +k1,2578:18461724,40353562:180354 +k1,2578:19972460,40353562:180355 +k1,2578:20804243,40353562:180355 +k1,2578:23188574,40353562:180355 +k1,2578:24051814,40353562:180355 +k1,2578:26839847,40353562:180355 +k1,2578:29492220,40353562:180355 +k1,2578:30864020,40353562:180355 +k1,2578:32583029,40353562:0 +) +(1,2579:6630773,41195050:25952256,513147,134348 +k1,2578:9665211,41195050:165272 +k1,2578:11324048,41195050:165271 +k1,2578:12175482,41195050:165272 +$1,2578:12175482,41195050 +(1,2578:12638166,41293364:311689,339935,0 +) +$1,2578:12949855,41195050 +k1,2578:13115127,41195050:165272 +k1,2578:14848019,41195050:165271 +k1,2578:15369151,41195050:165272 +k1,2578:17685970,41195050:165272 +k1,2578:20744001,41195050:165272 +k1,2578:21900832,41195050:165271 +k1,2578:25038162,41195050:165272 +k1,2578:26938827,41195050:165272 +k1,2578:27874801,41195050:165271 +k1,2578:29789229,41195050:165272 +k1,2578:32583029,41195050:0 +) +(1,2579:6630773,42036538:25952256,505283,134348 +k1,2578:7474876,42036538:228065 +k1,2578:9575960,42036538:228065 +k1,2578:11945087,42036538:228066 +k1,2578:15052149,42036538:228065 +k1,2578:16476901,42036538:228065 +k1,2578:18454123,42036538:228066 +k1,2578:21544145,42036538:228065 +k1,2578:22791295,42036538:228065 +k1,2578:25633591,42036538:228065 +k1,2578:26477695,42036538:228066 +k1,2578:27724845,42036538:228065 +k1,2578:30104457,42036538:228065 +k1,2578:32583029,42036538:0 +) +(1,2579:6630773,42878026:25952256,513147,134348 +k1,2578:8400359,42878026:201965 +k1,2578:9932706,42878026:201966 +k1,2578:13110006,42878026:201965 +k1,2578:14331057,42878026:201966 +k1,2578:16253997,42878026:201965 +k1,2578:20779373,42878026:201966 +k1,2578:23945531,42878026:201965 +k1,2578:25781309,42878026:201965 +k1,2578:26599313,42878026:201966 +k1,2578:28779155,42878026:201965 +k1,2578:30937371,42878026:201966 +k1,2578:31887102,42878026:201965 +$1,2578:31887102,42878026 +(1,2578:32349786,42976340:233243,346358,5505 +) +$1,2578:32583029,42878026 +k1,2579:32583029,42878026:0 +) +(1,2579:6630773,43719514:25952256,513147,126483 +k1,2578:7778494,43719514:200070 +k1,2578:8334424,43719514:200070 +k1,2578:10512371,43719514:200070 +$1,2578:10512371,43719514 +(1,2578:10975055,43817828:1131020,334430,5505 +) +$1,2578:12106075,43719514 +k1,2578:12479815,43719514:200070 +k1,2578:13295923,43719514:200070 +k1,2578:13910835,43719514:200069 +k1,2578:14642402,43719514:200070 +k1,2578:18652080,43719514:200070 +k1,2578:19538312,43719514:200070 +(1,2578:19538312,43719514:0,452978,115847 +r1,2578:20951713,43719514:1413401,568825,115847 +k1,2578:19538312,43719514:-1413401 +) +(1,2578:19538312,43719514:1413401,452978,115847 +k1,2578:19538312,43719514:3277 +h1,2578:20948436,43719514:0,411205,112570 +) +k1,2578:21151783,43719514:200070 +k1,2578:22543298,43719514:200070 +k1,2578:23762453,43719514:200070 +k1,2578:25845372,43719514:200070 +k1,2578:28023319,43719514:200070 +k1,2578:28909551,43719514:200070 +k1,2578:31143203,43719514:200070 +k1,2578:32583029,43719514:0 +) +(1,2579:6630773,44561002:25952256,414482,115847 +g1,2578:7516164,44561002 +(1,2578:7516164,44561002:0,414482,115847 +r1,2578:7874430,44561002:358266,530329,115847 +k1,2578:7516164,44561002:-358266 +) +(1,2578:7516164,44561002:358266,414482,115847 +k1,2578:7516164,44561002:3277 +h1,2578:7871153,44561002:0,411205,112570 +) +k1,2579:32583028,44561002:24534928 +g1,2579:32583028,44561002 +) +] +(1,2581:32583029,45706769:0,0,0 +g1,2581:32583029,45706769 +) +) +] +(1,2581:6630773,47279633:25952256,0,0 +h1,2581:6630773,47279633:25952256,0,0 +) +] +h1,2581:4262630,4025873:0,0,0 +] +!23230 }56 -Input:380:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:381:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:382:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:383:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:384:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:385:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!557 {57 -[1,2641:4262630,47279633:28320399,43253760,0 -(1,2641:4262630,4025873:0,0,0 -[1,2641:-473657,4025873:25952256,0,0 -(1,2641:-473657,-710414:25952256,0,0 -h1,2641:-473657,-710414:0,0,0 -(1,2641:-473657,-710414:0,0,0 -(1,2641:-473657,-710414:0,0,0 -g1,2641:-473657,-710414 -(1,2641:-473657,-710414:65781,0,65781 -g1,2641:-407876,-710414 -[1,2641:-407876,-644633:0,0,0 +[1,2647:4262630,47279633:28320399,43253760,0 +(1,2647:4262630,4025873:0,0,0 +[1,2647:-473657,4025873:25952256,0,0 +(1,2647:-473657,-710414:25952256,0,0 +h1,2647:-473657,-710414:0,0,0 +(1,2647:-473657,-710414:0,0,0 +(1,2647:-473657,-710414:0,0,0 +g1,2647:-473657,-710414 +(1,2647:-473657,-710414:65781,0,65781 +g1,2647:-407876,-710414 +[1,2647:-407876,-644633:0,0,0 ] ) -k1,2641:-473657,-710414:-65781 +k1,2647:-473657,-710414:-65781 ) ) -k1,2641:25478599,-710414:25952256 -g1,2641:25478599,-710414 +k1,2647:25478599,-710414:25952256 +g1,2647:25478599,-710414 ) ] ) -[1,2641:6630773,47279633:25952256,43253760,0 -[1,2641:6630773,4812305:25952256,786432,0 -(1,2641:6630773,4812305:25952256,505283,134348 -(1,2641:6630773,4812305:25952256,505283,134348 -g1,2641:3078558,4812305 -[1,2641:3078558,4812305:0,0,0 -(1,2641:3078558,2439708:0,1703936,0 -k1,2641:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2641:2537886,2439708:1179648,16384,0 +[1,2647:6630773,47279633:25952256,43253760,0 +[1,2647:6630773,4812305:25952256,786432,0 +(1,2647:6630773,4812305:25952256,505283,134348 +(1,2647:6630773,4812305:25952256,505283,134348 +g1,2647:3078558,4812305 +[1,2647:3078558,4812305:0,0,0 +(1,2647:3078558,2439708:0,1703936,0 +k1,2647:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2647:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2641:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2647:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2641:3078558,4812305:0,0,0 -(1,2641:3078558,2439708:0,1703936,0 -g1,2641:29030814,2439708 -g1,2641:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2641:36151628,1915420:16384,1179648,0 +[1,2647:3078558,4812305:0,0,0 +(1,2647:3078558,2439708:0,1703936,0 +g1,2647:29030814,2439708 +g1,2647:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2647:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2641:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2647:37855564,2439708:1179648,16384,0 ) ) -k1,2641:3078556,2439708:-34777008 +k1,2647:3078556,2439708:-34777008 ) ] -[1,2641:3078558,4812305:0,0,0 -(1,2641:3078558,49800853:0,16384,2228224 -k1,2641:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2641:2537886,49800853:1179648,16384,0 +[1,2647:3078558,4812305:0,0,0 +(1,2647:3078558,49800853:0,16384,2228224 +k1,2647:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2647:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2641:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2647:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2641:3078558,4812305:0,0,0 -(1,2641:3078558,49800853:0,16384,2228224 -g1,2641:29030814,49800853 -g1,2641:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2641:36151628,51504789:16384,1179648,0 +[1,2647:3078558,4812305:0,0,0 +(1,2647:3078558,49800853:0,16384,2228224 +g1,2647:29030814,49800853 +g1,2647:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2647:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2641:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2647:37855564,49800853:1179648,16384,0 ) ) -k1,2641:3078556,49800853:-34777008 +k1,2647:3078556,49800853:-34777008 ) ] -g1,2641:6630773,4812305 -k1,2641:19562994,4812305:12135303 -g1,2641:20949735,4812305 -g1,2641:21598541,4812305 -g1,2641:24912696,4812305 -g1,2641:27600327,4812305 -g1,2641:29010006,4812305 +g1,2647:6630773,4812305 +k1,2647:19515153,4812305:12087462 +g1,2647:20901894,4812305 +g1,2647:21550700,4812305 +g1,2647:24864855,4812305 +g1,2647:27600327,4812305 +g1,2647:29010006,4812305 ) ) ] -[1,2641:6630773,45706769:25952256,40108032,0 -(1,2641:6630773,45706769:25952256,40108032,0 -(1,2641:6630773,45706769:0,0,0 -g1,2641:6630773,45706769 +[1,2647:6630773,45706769:25952256,40108032,0 +(1,2647:6630773,45706769:25952256,40108032,0 +(1,2647:6630773,45706769:0,0,0 +g1,2647:6630773,45706769 ) -[1,2641:6630773,45706769:25952256,40108032,0 -v1,2575:6630773,6254097:0,393216,0 -(1,2589:6630773,9988880:25952256,4127999,196608 -g1,2589:6630773,9988880 -g1,2589:6630773,9988880 -g1,2589:6434165,9988880 -(1,2589:6434165,9988880:0,4127999,196608 -r1,2589:32779637,9988880:26345472,4324607,196608 -k1,2589:6434165,9988880:-26345472 +[1,2647:6630773,45706769:25952256,40108032,0 +v1,2581:6630773,6254097:0,393216,0 +(1,2595:6630773,9988880:25952256,4127999,196608 +g1,2595:6630773,9988880 +g1,2595:6630773,9988880 +g1,2595:6434165,9988880 +(1,2595:6434165,9988880:0,4127999,196608 +r1,2595:32779637,9988880:26345472,4324607,196608 +k1,2595:6434165,9988880:-26345472 ) -(1,2589:6434165,9988880:26345472,4127999,196608 -[1,2589:6630773,9988880:25952256,3931391,0 -(1,2577:6630773,6461715:25952256,404226,76021 -(1,2576:6630773,6461715:0,0,0 -g1,2576:6630773,6461715 -g1,2576:6630773,6461715 -g1,2576:6303093,6461715 -(1,2576:6303093,6461715:0,0,0 -) -g1,2576:6630773,6461715 -) -g1,2577:7263065,6461715 -g1,2577:8211503,6461715 -h1,2577:12321397,6461715:0,0,0 -k1,2577:32583029,6461715:20261632 -g1,2577:32583029,6461715 -) -(1,2578:6630773,7127893:25952256,284164,4718 -h1,2578:6630773,7127893:0,0,0 -h1,2578:6946919,7127893:0,0,0 -k1,2578:32583029,7127893:25636110 -g1,2578:32583029,7127893 -) -(1,2582:6630773,7859607:25952256,410518,107478 -(1,2580:6630773,7859607:0,0,0 -g1,2580:6630773,7859607 -g1,2580:6630773,7859607 -g1,2580:6303093,7859607 -(1,2580:6303093,7859607:0,0,0 -) -g1,2580:6630773,7859607 -) -g1,2582:7579210,7859607 -g1,2582:7895356,7859607 -g1,2582:9159939,7859607 -g1,2582:10424522,7859607 -g1,2582:11689105,7859607 -g1,2582:12953688,7859607 -g1,2582:14218271,7859607 -g1,2582:15482854,7859607 -g1,2582:16747437,7859607 -g1,2582:18012020,7859607 -g1,2582:19276603,7859607 -g1,2582:20541186,7859607 -h1,2582:21489623,7859607:0,0,0 -k1,2582:32583029,7859607:11093406 -g1,2582:32583029,7859607 -) -(1,2584:6630773,9181145:25952256,404226,76021 -(1,2583:6630773,9181145:0,0,0 -g1,2583:6630773,9181145 -g1,2583:6630773,9181145 -g1,2583:6303093,9181145 -(1,2583:6303093,9181145:0,0,0 -) -g1,2583:6630773,9181145 -) -h1,2584:7895356,9181145:0,0,0 -k1,2584:32583028,9181145:24687672 -g1,2584:32583028,9181145 -) -(1,2588:6630773,9912859:25952256,404226,76021 -(1,2586:6630773,9912859:0,0,0 -g1,2586:6630773,9912859 -g1,2586:6630773,9912859 -g1,2586:6303093,9912859 -(1,2586:6303093,9912859:0,0,0 -) -g1,2586:6630773,9912859 -) -g1,2588:7579210,9912859 -g1,2588:8843793,9912859 -h1,2588:9792230,9912859:0,0,0 -k1,2588:32583030,9912859:22790800 -g1,2588:32583030,9912859 -) -] -) -g1,2589:32583029,9988880 -g1,2589:6630773,9988880 -g1,2589:6630773,9988880 -g1,2589:32583029,9988880 -g1,2589:32583029,9988880 -) -h1,2589:6630773,10185488:0,0,0 -v1,2593:6630773,11930611:0,393216,0 -(1,2594:6630773,15132642:25952256,3595247,616038 -g1,2594:6630773,15132642 -(1,2594:6630773,15132642:25952256,3595247,616038 -(1,2594:6630773,15748680:25952256,4211285,0 -[1,2594:6630773,15748680:25952256,4211285,0 -(1,2594:6630773,15722466:25952256,4158857,0 -r1,2594:6656987,15722466:26214,4158857,0 -[1,2594:6656987,15722466:25899828,4158857,0 -(1,2594:6656987,15132642:25899828,2979209,0 -[1,2594:7246811,15132642:24720180,2979209,0 -(1,2594:7246811,13315318:24720180,1161885,196608 -(1,2593:7246811,13315318:0,1161885,196608 -r1,2594:8794447,13315318:1547636,1358493,196608 -k1,2593:7246811,13315318:-1547636 -) -(1,2593:7246811,13315318:1547636,1161885,196608 -) -k1,2593:8946277,13315318:151830 -k1,2593:10554973,13315318:151831 -k1,2593:13464558,13315318:151830 -k1,2593:15924567,13315318:151831 -k1,2593:17067957,13315318:151830 -k1,2593:20003757,13315318:151831 -k1,2593:20771625,13315318:151830 -k1,2593:21511969,13315318:151831 -(1,2593:21511969,13315318:0,452978,115847 -r1,2594:23980506,13315318:2468537,568825,115847 -k1,2593:21511969,13315318:-2468537 -) -(1,2593:21511969,13315318:2468537,452978,115847 -k1,2593:21511969,13315318:3277 -h1,2593:23977229,13315318:0,411205,112570 -) -k1,2593:24306006,13315318:151830 -(1,2593:24306006,13315318:0,414482,115847 -r1,2594:26774543,13315318:2468537,530329,115847 -k1,2593:24306006,13315318:-2468537 -) -(1,2593:24306006,13315318:2468537,414482,115847 -k1,2593:24306006,13315318:3277 -h1,2593:26771266,13315318:0,411205,112570 -) -k1,2593:27100044,13315318:151831 -(1,2593:27100044,13315318:0,452978,115847 -r1,2594:30623716,13315318:3523672,568825,115847 -k1,2593:27100044,13315318:-3523672 -) -(1,2593:27100044,13315318:3523672,452978,115847 -k1,2593:27100044,13315318:3277 -h1,2593:30620439,13315318:0,411205,112570 -) -k1,2593:30775546,13315318:151830 -k1,2594:31966991,13315318:0 -) -(1,2594:7246811,14156806:24720180,513147,126483 -(1,2593:7246811,14156806:0,452978,115847 -r1,2594:10418771,14156806:3171960,568825,115847 -k1,2593:7246811,14156806:-3171960 -) -(1,2593:7246811,14156806:3171960,452978,115847 -k1,2593:7246811,14156806:3277 -h1,2593:10415494,14156806:0,411205,112570 -) -k1,2593:10799113,14156806:206672 -k1,2593:11665078,14156806:206673 -k1,2593:13757221,14156806:206672 -k1,2593:14832246,14156806:206673 -k1,2593:16552144,14156806:206672 -(1,2593:16552144,14156806:0,452978,115847 -r1,2594:19020681,14156806:2468537,568825,115847 -k1,2593:16552144,14156806:-2468537 -) -(1,2593:16552144,14156806:2468537,452978,115847 -k1,2593:16552144,14156806:3277 -h1,2593:19017404,14156806:0,411205,112570 -) -k1,2593:19227354,14156806:206673 -k1,2593:20050064,14156806:206672 -k1,2593:21275821,14156806:206672 -k1,2593:24143911,14156806:206673 -k1,2593:26379578,14156806:206672 -k1,2593:28460581,14156806:206673 -k1,2593:30975431,14156806:206672 -k1,2593:31966991,14156806:0 -) -(1,2594:7246811,14998294:24720180,513147,134348 -g1,2593:9575305,14998294 -g1,2593:10722185,14998294 -g1,2593:13406539,14998294 -g1,2593:17325591,14998294 -g1,2593:18184112,14998294 -g1,2593:19402426,14998294 -k1,2594:31966991,14998294:10549333 -g1,2594:31966991,14998294 -) -] -) -] -r1,2594:32583029,15722466:26214,4158857,0 -) -] -) -) -g1,2594:32583029,15132642 -) -h1,2594:6630773,15748680:0,0,0 -v1,2597:6630773,17041986:0,393216,0 -(1,2598:6630773,21009156:25952256,4360386,616038 -g1,2598:6630773,21009156 -(1,2598:6630773,21009156:25952256,4360386,616038 -(1,2598:6630773,21625194:25952256,4976424,0 -[1,2598:6630773,21625194:25952256,4976424,0 -(1,2598:6630773,21598980:25952256,4923996,0 -r1,2598:6656987,21598980:26214,4923996,0 -[1,2598:6656987,21598980:25899828,4923996,0 -(1,2598:6656987,21009156:25899828,3744348,0 -[1,2598:7246811,21009156:24720180,3744348,0 -(1,2598:7246811,18350344:24720180,1085536,298548 -(1,2597:7246811,18350344:0,1085536,298548 -r1,2598:8753226,18350344:1506415,1384084,298548 -k1,2597:7246811,18350344:-1506415 -) -(1,2597:7246811,18350344:1506415,1085536,298548 -) -k1,2597:9003486,18350344:250260 -k1,2597:9881581,18350344:250260 -k1,2597:10720353,18350344:250259 -k1,2597:13397411,18350344:250260 -k1,2597:15776936,18350344:250260 -k1,2597:17515519,18350344:250260 -k1,2597:19333399,18350344:250259 -k1,2597:20914040,18350344:250260 -k1,2597:22853818,18350344:250260 -k1,2597:23720116,18350344:250260 -k1,2597:25662515,18350344:250259 -k1,2597:27614745,18350344:250260 -k1,2597:31966991,18350344:0 -) -(1,2598:7246811,19191832:24720180,513147,134348 -k1,2597:10675097,19191832:255688 -k1,2597:12424351,19191832:255688 -k1,2597:13366201,19191832:255688 -k1,2597:14075341,19191832:255631 -k1,2597:15522474,19191832:255688 -k1,2597:17235027,19191832:255688 -k1,2597:19917513,19191832:255688 -k1,2597:21661524,19191832:255688 -k1,2597:23484833,19191832:255688 -k1,2597:25334357,19191832:255688 -k1,2597:26059938,19191832:255688 -k1,2597:26847123,19191832:255688 -k1,2597:30312109,19191832:255688 -k1,2597:31219225,19191832:255688 -k1,2597:31966991,19191832:0 -) -(1,2598:7246811,20033320:24720180,513147,134348 -k1,2597:9287304,20033320:172062 -k1,2597:10118658,20033320:172062 -k1,2597:11493961,20033320:172062 -k1,2597:15026054,20033320:172062 -k1,2597:15884278,20033320:172062 -k1,2597:17808116,20033320:172061 -k1,2597:22044065,20033320:172062 -k1,2597:25657422,20033320:172062 -k1,2597:26821044,20033320:172062 -k1,2597:28533202,20033320:172062 -k1,2597:30080865,20033320:172062 -k1,2597:31966991,20033320:0 -) -(1,2598:7246811,20874808:24720180,505283,134348 -g1,2597:7801900,20874808 -g1,2597:9695890,20874808 -g1,2597:12634524,20874808 -k1,2598:31966991,20874808:15629028 -g1,2598:31966991,20874808 -) -] -) -] -r1,2598:32583029,21598980:26214,4923996,0 -) -] -) -) -g1,2598:32583029,21009156 -) -h1,2598:6630773,21625194:0,0,0 -(1,2601:6630773,22918499:25952256,513147,134348 -h1,2600:6630773,22918499:983040,0,0 -k1,2600:8234521,22918499:150815 -k1,2600:8916832,22918499:150814 -k1,2600:11697607,22918499:150815 -k1,2600:12499850,22918499:150815 -k1,2600:14854641,22918499:150815 -k1,2600:15361315,22918499:150814 -k1,2600:17592243,22918499:150815 -k1,2600:18402350,22918499:150815 -k1,2600:19572250,22918499:150815 -k1,2600:22592230,22918499:150814 -k1,2600:23402337,22918499:150815 -k1,2600:23909012,22918499:150815 -k1,2600:26037704,22918499:150815 -k1,2600:26804556,22918499:150814 -k1,2600:27311231,22918499:150815 -k1,2600:29335065,22918499:150815 -k1,2600:32583029,22918499:0 -) -(1,2601:6630773,23759987:25952256,513147,134348 -k1,2600:8634208,23759987:268042 -k1,2600:9258110,23759987:268042 -k1,2600:11504030,23759987:268043 -k1,2600:12431364,23759987:268042 -k1,2600:15299875,23759987:268042 -k1,2600:16764604,23759987:268042 -k1,2600:19977180,23759987:268043 -k1,2600:20904514,23759987:268042 -k1,2600:22191641,23759987:268042 -k1,2600:25431741,23759987:268042 -k1,2600:28568950,23759987:268043 -k1,2600:29453030,23759987:268042 -k1,2600:30740157,23759987:268042 -k1,2600:32583029,23759987:0 -) -(1,2601:6630773,24601475:25952256,513147,134348 -k1,2600:10098635,24601475:181887 -k1,2600:12468115,24601475:181888 -k1,2600:13641562,24601475:181887 -k1,2600:17488223,24601475:181888 -k1,2600:18431638,24601475:181887 -k1,2600:19632611,24601475:181888 -k1,2600:22544073,24601475:181887 -k1,2600:23385253,24601475:181888 -k1,2600:24586225,24601475:181887 -k1,2600:27721821,24601475:181888 -k1,2600:28563000,24601475:181887 -k1,2600:29763973,24601475:181888 -k1,2600:31923737,24601475:181887 -k1,2600:32583029,24601475:0 -) -(1,2601:6630773,25442963:25952256,505283,126483 -g1,2600:11782558,25442963 -g1,2600:12633215,25442963 -g1,2600:16865530,25442963 -g1,2600:18507206,25442963 -g1,2600:19357863,25442963 -k1,2601:32583029,25442963:10741351 -g1,2601:32583029,25442963 -) -v1,2603:6630773,26560959:0,393216,0 -(1,2616:6630773,29661021:25952256,3493278,196608 -g1,2616:6630773,29661021 -g1,2616:6630773,29661021 -g1,2616:6434165,29661021 -(1,2616:6434165,29661021:0,3493278,196608 -r1,2616:32779637,29661021:26345472,3689886,196608 -k1,2616:6434165,29661021:-26345472 -) -(1,2616:6434165,29661021:26345472,3493278,196608 -[1,2616:6630773,29661021:25952256,3296670,0 -(1,2605:6630773,26768577:25952256,404226,82312 -(1,2604:6630773,26768577:0,0,0 -g1,2604:6630773,26768577 -g1,2604:6630773,26768577 -g1,2604:6303093,26768577 -(1,2604:6303093,26768577:0,0,0 -) -g1,2604:6630773,26768577 -) -k1,2605:6630773,26768577:0 -k1,2605:6630773,26768577:0 -h1,2605:9476085,26768577:0,0,0 -k1,2605:32583029,26768577:23106944 -g1,2605:32583029,26768577 -) -(1,2609:6630773,27500291:25952256,404226,76021 -(1,2607:6630773,27500291:0,0,0 -g1,2607:6630773,27500291 -g1,2607:6630773,27500291 -g1,2607:6303093,27500291 -(1,2607:6303093,27500291:0,0,0 -) -g1,2607:6630773,27500291 -) -g1,2609:7579210,27500291 -g1,2609:8843793,27500291 -g1,2609:10108376,27500291 -h1,2609:11056813,27500291:0,0,0 -k1,2609:32583029,27500291:21526216 -g1,2609:32583029,27500291 -) -(1,2611:6630773,28821829:25952256,404226,76021 -(1,2610:6630773,28821829:0,0,0 -g1,2610:6630773,28821829 -g1,2610:6630773,28821829 -g1,2610:6303093,28821829 -(1,2610:6303093,28821829:0,0,0 -) -g1,2610:6630773,28821829 -) -h1,2611:8843793,28821829:0,0,0 -k1,2611:32583029,28821829:23739236 -g1,2611:32583029,28821829 -) -(1,2615:6630773,29553543:25952256,410518,107478 -(1,2613:6630773,29553543:0,0,0 -g1,2613:6630773,29553543 -g1,2613:6630773,29553543 -g1,2613:6303093,29553543 -(1,2613:6303093,29553543:0,0,0 -) -g1,2613:6630773,29553543 -) -g1,2615:7579210,29553543 -g1,2615:7895356,29553543 -g1,2615:9159939,29553543 -g1,2615:10424522,29553543 -g1,2615:11689105,29553543 -g1,2615:12953688,29553543 -g1,2615:14218271,29553543 -g1,2615:15482854,29553543 -g1,2615:16747437,29553543 -g1,2615:18012020,29553543 -g1,2615:19276603,29553543 -g1,2615:20541186,29553543 -h1,2615:21489623,29553543:0,0,0 -k1,2615:32583029,29553543:11093406 -g1,2615:32583029,29553543 -) -] -) -g1,2616:32583029,29661021 -g1,2616:6630773,29661021 -g1,2616:6630773,29661021 -g1,2616:32583029,29661021 -g1,2616:32583029,29661021 -) -h1,2616:6630773,29857629:0,0,0 -v1,2620:6630773,31602752:0,393216,0 -(1,2636:6630773,43797425:25952256,12587889,616038 -g1,2636:6630773,43797425 -(1,2636:6630773,43797425:25952256,12587889,616038 -(1,2636:6630773,44413463:25952256,13203927,0 -[1,2636:6630773,44413463:25952256,13203927,0 -(1,2636:6630773,44387249:25952256,13151499,0 -r1,2636:6656987,44387249:26214,13151499,0 -[1,2636:6656987,44387249:25899828,13151499,0 -(1,2636:6656987,43797425:25899828,11971851,0 -[1,2636:7246811,43797425:24720180,11971851,0 -(1,2621:7246811,32912948:24720180,1087374,134348 -k1,2620:8725359,32912948:268845 -k1,2620:10190890,32912948:268844 -k1,2620:12473001,32912948:268845 -k1,2620:13401137,32912948:268844 -k1,2620:14689067,32912948:268845 -k1,2620:17697316,32912948:268844 -k1,2620:19944038,32912948:268845 -k1,2620:20744380,32912948:268845 -k1,2620:22079495,32912948:268844 -k1,2620:25419357,32912948:268845 -k1,2620:26449729,32912948:268844 -k1,2620:27737659,32912948:268845 -k1,2620:30019769,32912948:268844 -k1,2620:30947906,32912948:268845 -k1,2620:31966991,32912948:0 -) -(1,2621:7246811,33754436:24720180,505283,126483 -k1,2620:9932622,33754436:168573 -k1,2620:12252742,33754436:168573 -k1,2620:15356017,33754436:168573 -k1,2620:16900191,33754436:168573 -k1,2620:20249882,33754436:168573 -k1,2620:22845253,33754436:168573 -k1,2620:24298332,33754436:168573 -k1,2620:26448058,33754436:168573 -k1,2620:29561164,33754436:168573 -k1,2620:31966991,33754436:0 -) -(1,2621:7246811,34595924:24720180,505283,134348 -k1,2620:8097249,34595924:234400 -k1,2620:9350735,34595924:234401 -k1,2620:12102373,34595924:234400 -k1,2620:14314650,34595924:234400 -k1,2620:15653332,34595924:234400 -k1,2620:18091709,34595924:234401 -k1,2620:20510424,34595924:234400 -k1,2620:22666340,34595924:234400 -k1,2620:24911385,34595924:234400 -k1,2620:25761824,34595924:234401 -k1,2620:27015309,34595924:234400 -k1,2620:29989114,34595924:234400 -k1,2620:31966991,34595924:0 -) -(1,2621:7246811,35437412:24720180,505283,134348 -k1,2620:10134562,35437412:209295 -k1,2620:10995284,35437412:209294 -k1,2620:14149112,35437412:209295 -k1,2620:15642913,35437412:209295 -k1,2620:16843767,35437412:209294 -k1,2620:18119333,35437412:209295 -k1,2620:20734455,35437412:209295 -k1,2620:21559788,35437412:209295 -k1,2620:22788167,35437412:209294 -k1,2620:25514700,35437412:209295 -k1,2620:27875542,35437412:209295 -k1,2620:29927708,35437412:209294 -k1,2620:30753041,35437412:209295 -(1,2620:30753041,35437412:0,414482,115847 -r1,2636:31463019,35437412:709978,530329,115847 -k1,2620:30753041,35437412:-709978 -) -(1,2620:30753041,35437412:709978,414482,115847 -k1,2620:30753041,35437412:3277 -h1,2620:31459742,35437412:0,411205,112570 -) -k1,2620:31966991,35437412:0 -) -(1,2621:7246811,36278900:24720180,513147,134348 -k1,2620:8845141,36278900:217486 -k1,2620:9594124,36278900:217486 -k1,2620:11682008,36278900:217486 -k1,2620:12550922,36278900:217486 -k1,2620:14379938,36278900:217486 -k1,2620:15358952,36278900:217486 -k1,2620:17935733,36278900:217485 -k1,2620:19547170,36278900:217486 -k1,2620:20353169,36278900:217486 -k1,2620:22013102,36278900:217486 -k1,2620:23798209,36278900:217486 -k1,2620:28251942,36278900:217486 -k1,2620:29767041,36278900:217486 -k1,2620:31378478,36278900:217486 -k1,2620:31966991,36278900:0 -) -(1,2621:7246811,37120388:24720180,513147,134348 -g1,2620:9181433,37120388 -g1,2620:10399747,37120388 -g1,2620:13574311,37120388 -g1,2620:16765259,37120388 -g1,2620:17650650,37120388 -g1,2620:18205739,37120388 -g1,2620:20883540,37120388 -k1,2621:31966991,37120388:9221573 -g1,2621:31966991,37120388 -) -v1,2623:7246811,38310854:0,393216,0 -(1,2631:7246811,41259205:24720180,3341567,196608 -g1,2631:7246811,41259205 -g1,2631:7246811,41259205 -g1,2631:7050203,41259205 -(1,2631:7050203,41259205:0,3341567,196608 -r1,2636:32163599,41259205:25113396,3538175,196608 -k1,2631:7050203,41259205:-25113396 -) -(1,2631:7050203,41259205:25113396,3341567,196608 -[1,2631:7246811,41259205:24720180,3144959,0 -(1,2625:7246811,38518472:24720180,404226,107478 -(1,2624:7246811,38518472:0,0,0 -g1,2624:7246811,38518472 -g1,2624:7246811,38518472 -g1,2624:6919131,38518472 -(1,2624:6919131,38518472:0,0,0 -) -g1,2624:7246811,38518472 -) -k1,2625:7246811,38518472:0 -h1,2625:10092122,38518472:0,0,0 -k1,2625:31966990,38518472:21874868 -g1,2625:31966990,38518472 -) -(1,2626:7246811,39184650:24720180,404226,82312 -h1,2626:7246811,39184650:0,0,0 -k1,2626:7246811,39184650:0 -h1,2626:11356707,39184650:0,0,0 -k1,2626:31966991,39184650:20610284 -g1,2626:31966991,39184650 -) -(1,2627:7246811,39850828:24720180,404226,82312 -h1,2627:7246811,39850828:0,0,0 -g1,2627:10408269,39850828 -h1,2627:12305143,39850828:0,0,0 -k1,2627:31966991,39850828:19661848 -g1,2627:31966991,39850828 -) -(1,2628:7246811,40517006:24720180,404226,82312 -h1,2628:7246811,40517006:0,0,0 -k1,2628:7246811,40517006:0 -h1,2628:10408268,40517006:0,0,0 -k1,2628:31966992,40517006:21558724 -g1,2628:31966992,40517006 -) -(1,2629:7246811,41183184:24720180,404226,76021 -h1,2629:7246811,41183184:0,0,0 -h1,2629:8827539,41183184:0,0,0 -k1,2629:31966991,41183184:23139452 -g1,2629:31966991,41183184 -) -] -) -g1,2631:31966991,41259205 -g1,2631:7246811,41259205 -g1,2631:7246811,41259205 -g1,2631:31966991,41259205 -g1,2631:31966991,41259205 -) -h1,2631:7246811,41455813:0,0,0 -(1,2635:7246811,42821589:24720180,513147,126483 -h1,2634:7246811,42821589:983040,0,0 -k1,2634:9986309,42821589:190803 -k1,2634:11347586,42821589:190804 -k1,2634:13052926,42821589:190803 -k1,2634:14935869,42821589:190803 -k1,2634:15785965,42821589:190804 -k1,2634:17435599,42821589:190803 -k1,2634:18956783,42821589:190803 -k1,2634:22466330,42821589:190804 -k1,2634:23134890,42821589:190803 -k1,2634:24391965,42821589:190804 -k1,2634:25721784,42821589:190803 -k1,2634:26727855,42821589:190803 -k1,2634:28312610,42821589:190804 -k1,2634:29897364,42821589:190803 -k1,2635:31966991,42821589:0 -) -(1,2635:7246811,43663077:24720180,513147,134348 -g1,2634:8816398,43663077 -g1,2634:12171841,43663077 -g1,2634:13030362,43663077 -g1,2634:14688422,43663077 -g1,2634:16218032,43663077 -g1,2634:18460018,43663077 -k1,2635:31966991,43663077:9912323 -g1,2635:31966991,43663077 -) -] -) -] -r1,2636:32583029,44387249:26214,13151499,0 -) -] -) -) -g1,2636:32583029,43797425 -) -h1,2636:6630773,44413463:0,0,0 -(1,2639:6630773,45706769:25952256,505283,134348 -h1,2638:6630773,45706769:983040,0,0 -k1,2638:10574134,45706769:228125 -k1,2638:13229057,45706769:228125 -k1,2638:14932396,45706769:228124 -k1,2638:15516381,45706769:228125 -k1,2638:17938651,45706769:228125 -k1,2638:21068710,45706769:228125 -k1,2638:22677023,45706769:228125 -k1,2638:25436804,45706769:228125 -k1,2638:26684013,45706769:228124 -k1,2638:29856671,45706769:228125 -k1,2638:30697558,45706769:228125 -k1,2638:32583029,45706769:0 +(1,2595:6434165,9988880:26345472,4127999,196608 +[1,2595:6630773,9988880:25952256,3931391,0 +(1,2583:6630773,6461715:25952256,404226,76021 +(1,2582:6630773,6461715:0,0,0 +g1,2582:6630773,6461715 +g1,2582:6630773,6461715 +g1,2582:6303093,6461715 +(1,2582:6303093,6461715:0,0,0 +) +g1,2582:6630773,6461715 +) +g1,2583:7263065,6461715 +g1,2583:8211503,6461715 +h1,2583:12321397,6461715:0,0,0 +k1,2583:32583029,6461715:20261632 +g1,2583:32583029,6461715 +) +(1,2584:6630773,7127893:25952256,284164,4718 +h1,2584:6630773,7127893:0,0,0 +h1,2584:6946919,7127893:0,0,0 +k1,2584:32583029,7127893:25636110 +g1,2584:32583029,7127893 +) +(1,2588:6630773,7859607:25952256,410518,107478 +(1,2586:6630773,7859607:0,0,0 +g1,2586:6630773,7859607 +g1,2586:6630773,7859607 +g1,2586:6303093,7859607 +(1,2586:6303093,7859607:0,0,0 +) +g1,2586:6630773,7859607 +) +g1,2588:7579210,7859607 +g1,2588:7895356,7859607 +g1,2588:9159939,7859607 +g1,2588:10424522,7859607 +g1,2588:11689105,7859607 +g1,2588:12953688,7859607 +g1,2588:14218271,7859607 +g1,2588:15482854,7859607 +g1,2588:16747437,7859607 +g1,2588:18012020,7859607 +g1,2588:19276603,7859607 +g1,2588:20541186,7859607 +h1,2588:21489623,7859607:0,0,0 +k1,2588:32583029,7859607:11093406 +g1,2588:32583029,7859607 +) +(1,2590:6630773,9181145:25952256,404226,76021 +(1,2589:6630773,9181145:0,0,0 +g1,2589:6630773,9181145 +g1,2589:6630773,9181145 +g1,2589:6303093,9181145 +(1,2589:6303093,9181145:0,0,0 +) +g1,2589:6630773,9181145 +) +h1,2590:7895356,9181145:0,0,0 +k1,2590:32583028,9181145:24687672 +g1,2590:32583028,9181145 +) +(1,2594:6630773,9912859:25952256,404226,76021 +(1,2592:6630773,9912859:0,0,0 +g1,2592:6630773,9912859 +g1,2592:6630773,9912859 +g1,2592:6303093,9912859 +(1,2592:6303093,9912859:0,0,0 +) +g1,2592:6630773,9912859 +) +g1,2594:7579210,9912859 +g1,2594:8843793,9912859 +h1,2594:9792230,9912859:0,0,0 +k1,2594:32583030,9912859:22790800 +g1,2594:32583030,9912859 +) +] +) +g1,2595:32583029,9988880 +g1,2595:6630773,9988880 +g1,2595:6630773,9988880 +g1,2595:32583029,9988880 +g1,2595:32583029,9988880 +) +h1,2595:6630773,10185488:0,0,0 +v1,2599:6630773,11930611:0,393216,0 +(1,2600:6630773,15132642:25952256,3595247,616038 +g1,2600:6630773,15132642 +(1,2600:6630773,15132642:25952256,3595247,616038 +(1,2600:6630773,15748680:25952256,4211285,0 +[1,2600:6630773,15748680:25952256,4211285,0 +(1,2600:6630773,15722466:25952256,4158857,0 +r1,2600:6656987,15722466:26214,4158857,0 +[1,2600:6656987,15722466:25899828,4158857,0 +(1,2600:6656987,15132642:25899828,2979209,0 +[1,2600:7246811,15132642:24720180,2979209,0 +(1,2600:7246811,13315318:24720180,1161885,196608 +(1,2599:7246811,13315318:0,1161885,196608 +r1,2600:8794447,13315318:1547636,1358493,196608 +k1,2599:7246811,13315318:-1547636 +) +(1,2599:7246811,13315318:1547636,1161885,196608 +) +k1,2599:8946277,13315318:151830 +k1,2599:10554973,13315318:151831 +k1,2599:13464558,13315318:151830 +k1,2599:15924567,13315318:151831 +k1,2599:17067957,13315318:151830 +k1,2599:20003757,13315318:151831 +k1,2599:20771625,13315318:151830 +k1,2599:21511969,13315318:151831 +(1,2599:21511969,13315318:0,452978,115847 +r1,2600:23980506,13315318:2468537,568825,115847 +k1,2599:21511969,13315318:-2468537 +) +(1,2599:21511969,13315318:2468537,452978,115847 +k1,2599:21511969,13315318:3277 +h1,2599:23977229,13315318:0,411205,112570 +) +k1,2599:24306006,13315318:151830 +(1,2599:24306006,13315318:0,414482,115847 +r1,2600:26774543,13315318:2468537,530329,115847 +k1,2599:24306006,13315318:-2468537 +) +(1,2599:24306006,13315318:2468537,414482,115847 +k1,2599:24306006,13315318:3277 +h1,2599:26771266,13315318:0,411205,112570 +) +k1,2599:27100044,13315318:151831 +(1,2599:27100044,13315318:0,452978,115847 +r1,2600:30623716,13315318:3523672,568825,115847 +k1,2599:27100044,13315318:-3523672 +) +(1,2599:27100044,13315318:3523672,452978,115847 +k1,2599:27100044,13315318:3277 +h1,2599:30620439,13315318:0,411205,112570 +) +k1,2599:30775546,13315318:151830 +k1,2600:31966991,13315318:0 +) +(1,2600:7246811,14156806:24720180,513147,126483 +(1,2599:7246811,14156806:0,452978,115847 +r1,2600:10418771,14156806:3171960,568825,115847 +k1,2599:7246811,14156806:-3171960 +) +(1,2599:7246811,14156806:3171960,452978,115847 +k1,2599:7246811,14156806:3277 +h1,2599:10415494,14156806:0,411205,112570 +) +k1,2599:10799113,14156806:206672 +k1,2599:11665078,14156806:206673 +k1,2599:13757221,14156806:206672 +k1,2599:14832246,14156806:206673 +k1,2599:16552144,14156806:206672 +(1,2599:16552144,14156806:0,452978,115847 +r1,2600:19020681,14156806:2468537,568825,115847 +k1,2599:16552144,14156806:-2468537 +) +(1,2599:16552144,14156806:2468537,452978,115847 +k1,2599:16552144,14156806:3277 +h1,2599:19017404,14156806:0,411205,112570 +) +k1,2599:19227354,14156806:206673 +k1,2599:20050064,14156806:206672 +k1,2599:21275821,14156806:206672 +k1,2599:24143911,14156806:206673 +k1,2599:26379578,14156806:206672 +k1,2599:28460581,14156806:206673 +k1,2599:30975431,14156806:206672 +k1,2599:31966991,14156806:0 +) +(1,2600:7246811,14998294:24720180,513147,134348 +g1,2599:9575305,14998294 +g1,2599:10722185,14998294 +g1,2599:13406539,14998294 +g1,2599:17325591,14998294 +g1,2599:18184112,14998294 +g1,2599:19402426,14998294 +k1,2600:31966991,14998294:10549333 +g1,2600:31966991,14998294 +) +] +) +] +r1,2600:32583029,15722466:26214,4158857,0 +) +] +) +) +g1,2600:32583029,15132642 +) +h1,2600:6630773,15748680:0,0,0 +v1,2603:6630773,17041986:0,393216,0 +(1,2604:6630773,21009156:25952256,4360386,616038 +g1,2604:6630773,21009156 +(1,2604:6630773,21009156:25952256,4360386,616038 +(1,2604:6630773,21625194:25952256,4976424,0 +[1,2604:6630773,21625194:25952256,4976424,0 +(1,2604:6630773,21598980:25952256,4923996,0 +r1,2604:6656987,21598980:26214,4923996,0 +[1,2604:6656987,21598980:25899828,4923996,0 +(1,2604:6656987,21009156:25899828,3744348,0 +[1,2604:7246811,21009156:24720180,3744348,0 +(1,2604:7246811,18350344:24720180,1085536,298548 +(1,2603:7246811,18350344:0,1085536,298548 +r1,2604:8753226,18350344:1506415,1384084,298548 +k1,2603:7246811,18350344:-1506415 +) +(1,2603:7246811,18350344:1506415,1085536,298548 +) +k1,2603:9003486,18350344:250260 +k1,2603:9881581,18350344:250260 +k1,2603:10720353,18350344:250259 +k1,2603:13397411,18350344:250260 +k1,2603:15776936,18350344:250260 +k1,2603:17515519,18350344:250260 +k1,2603:19333399,18350344:250259 +k1,2603:20914040,18350344:250260 +k1,2603:22853818,18350344:250260 +k1,2603:23720116,18350344:250260 +k1,2603:25662515,18350344:250259 +k1,2603:27614745,18350344:250260 +k1,2603:31966991,18350344:0 +) +(1,2604:7246811,19191832:24720180,513147,134348 +k1,2603:10675097,19191832:255688 +k1,2603:12424351,19191832:255688 +k1,2603:13366201,19191832:255688 +k1,2603:14075341,19191832:255631 +k1,2603:15522474,19191832:255688 +k1,2603:17235027,19191832:255688 +k1,2603:19917513,19191832:255688 +k1,2603:21661524,19191832:255688 +k1,2603:23484833,19191832:255688 +k1,2603:25334357,19191832:255688 +k1,2603:26059938,19191832:255688 +k1,2603:26847123,19191832:255688 +k1,2603:30312109,19191832:255688 +k1,2603:31219225,19191832:255688 +k1,2603:31966991,19191832:0 +) +(1,2604:7246811,20033320:24720180,513147,134348 +k1,2603:9287304,20033320:172062 +k1,2603:10118658,20033320:172062 +k1,2603:11493961,20033320:172062 +k1,2603:15026054,20033320:172062 +k1,2603:15884278,20033320:172062 +k1,2603:17808116,20033320:172061 +k1,2603:22044065,20033320:172062 +k1,2603:25657422,20033320:172062 +k1,2603:26821044,20033320:172062 +k1,2603:28533202,20033320:172062 +k1,2603:30080865,20033320:172062 +k1,2603:31966991,20033320:0 +) +(1,2604:7246811,20874808:24720180,505283,134348 +g1,2603:7801900,20874808 +g1,2603:9695890,20874808 +g1,2603:12634524,20874808 +k1,2604:31966991,20874808:15629028 +g1,2604:31966991,20874808 +) +] +) +] +r1,2604:32583029,21598980:26214,4923996,0 +) +] +) +) +g1,2604:32583029,21009156 +) +h1,2604:6630773,21625194:0,0,0 +(1,2607:6630773,22918499:25952256,513147,134348 +h1,2606:6630773,22918499:983040,0,0 +k1,2606:8234521,22918499:150815 +k1,2606:8916832,22918499:150814 +k1,2606:11697607,22918499:150815 +k1,2606:12499850,22918499:150815 +k1,2606:14854641,22918499:150815 +k1,2606:15361315,22918499:150814 +k1,2606:17592243,22918499:150815 +k1,2606:18402350,22918499:150815 +k1,2606:19572250,22918499:150815 +k1,2606:22592230,22918499:150814 +k1,2606:23402337,22918499:150815 +k1,2606:23909012,22918499:150815 +k1,2606:26037704,22918499:150815 +k1,2606:26804556,22918499:150814 +k1,2606:27311231,22918499:150815 +k1,2606:29335065,22918499:150815 +k1,2606:32583029,22918499:0 +) +(1,2607:6630773,23759987:25952256,513147,134348 +k1,2606:8634208,23759987:268042 +k1,2606:9258110,23759987:268042 +k1,2606:11504030,23759987:268043 +k1,2606:12431364,23759987:268042 +k1,2606:15299875,23759987:268042 +k1,2606:16764604,23759987:268042 +k1,2606:19977180,23759987:268043 +k1,2606:20904514,23759987:268042 +k1,2606:22191641,23759987:268042 +k1,2606:25431741,23759987:268042 +k1,2606:28568950,23759987:268043 +k1,2606:29453030,23759987:268042 +k1,2606:30740157,23759987:268042 +k1,2606:32583029,23759987:0 +) +(1,2607:6630773,24601475:25952256,513147,134348 +k1,2606:10098635,24601475:181887 +k1,2606:12468115,24601475:181888 +k1,2606:13641562,24601475:181887 +k1,2606:17488223,24601475:181888 +k1,2606:18431638,24601475:181887 +k1,2606:19632611,24601475:181888 +k1,2606:22544073,24601475:181887 +k1,2606:23385253,24601475:181888 +k1,2606:24586225,24601475:181887 +k1,2606:27721821,24601475:181888 +k1,2606:28563000,24601475:181887 +k1,2606:29763973,24601475:181888 +k1,2606:31923737,24601475:181887 +k1,2606:32583029,24601475:0 +) +(1,2607:6630773,25442963:25952256,505283,126483 +g1,2606:11782558,25442963 +g1,2606:12633215,25442963 +g1,2606:16865530,25442963 +g1,2606:18507206,25442963 +g1,2606:19357863,25442963 +k1,2607:32583029,25442963:10741351 +g1,2607:32583029,25442963 +) +v1,2609:6630773,26560959:0,393216,0 +(1,2622:6630773,29661021:25952256,3493278,196608 +g1,2622:6630773,29661021 +g1,2622:6630773,29661021 +g1,2622:6434165,29661021 +(1,2622:6434165,29661021:0,3493278,196608 +r1,2622:32779637,29661021:26345472,3689886,196608 +k1,2622:6434165,29661021:-26345472 +) +(1,2622:6434165,29661021:26345472,3493278,196608 +[1,2622:6630773,29661021:25952256,3296670,0 +(1,2611:6630773,26768577:25952256,404226,82312 +(1,2610:6630773,26768577:0,0,0 +g1,2610:6630773,26768577 +g1,2610:6630773,26768577 +g1,2610:6303093,26768577 +(1,2610:6303093,26768577:0,0,0 +) +g1,2610:6630773,26768577 +) +k1,2611:6630773,26768577:0 +k1,2611:6630773,26768577:0 +h1,2611:9476085,26768577:0,0,0 +k1,2611:32583029,26768577:23106944 +g1,2611:32583029,26768577 +) +(1,2615:6630773,27500291:25952256,404226,76021 +(1,2613:6630773,27500291:0,0,0 +g1,2613:6630773,27500291 +g1,2613:6630773,27500291 +g1,2613:6303093,27500291 +(1,2613:6303093,27500291:0,0,0 +) +g1,2613:6630773,27500291 +) +g1,2615:7579210,27500291 +g1,2615:8843793,27500291 +g1,2615:10108376,27500291 +h1,2615:11056813,27500291:0,0,0 +k1,2615:32583029,27500291:21526216 +g1,2615:32583029,27500291 +) +(1,2617:6630773,28821829:25952256,404226,76021 +(1,2616:6630773,28821829:0,0,0 +g1,2616:6630773,28821829 +g1,2616:6630773,28821829 +g1,2616:6303093,28821829 +(1,2616:6303093,28821829:0,0,0 +) +g1,2616:6630773,28821829 +) +h1,2617:8843793,28821829:0,0,0 +k1,2617:32583029,28821829:23739236 +g1,2617:32583029,28821829 +) +(1,2621:6630773,29553543:25952256,410518,107478 +(1,2619:6630773,29553543:0,0,0 +g1,2619:6630773,29553543 +g1,2619:6630773,29553543 +g1,2619:6303093,29553543 +(1,2619:6303093,29553543:0,0,0 +) +g1,2619:6630773,29553543 +) +g1,2621:7579210,29553543 +g1,2621:7895356,29553543 +g1,2621:9159939,29553543 +g1,2621:10424522,29553543 +g1,2621:11689105,29553543 +g1,2621:12953688,29553543 +g1,2621:14218271,29553543 +g1,2621:15482854,29553543 +g1,2621:16747437,29553543 +g1,2621:18012020,29553543 +g1,2621:19276603,29553543 +g1,2621:20541186,29553543 +h1,2621:21489623,29553543:0,0,0 +k1,2621:32583029,29553543:11093406 +g1,2621:32583029,29553543 +) +] +) +g1,2622:32583029,29661021 +g1,2622:6630773,29661021 +g1,2622:6630773,29661021 +g1,2622:32583029,29661021 +g1,2622:32583029,29661021 +) +h1,2622:6630773,29857629:0,0,0 +v1,2626:6630773,31602752:0,393216,0 +(1,2642:6630773,43797425:25952256,12587889,616038 +g1,2642:6630773,43797425 +(1,2642:6630773,43797425:25952256,12587889,616038 +(1,2642:6630773,44413463:25952256,13203927,0 +[1,2642:6630773,44413463:25952256,13203927,0 +(1,2642:6630773,44387249:25952256,13151499,0 +r1,2642:6656987,44387249:26214,13151499,0 +[1,2642:6656987,44387249:25899828,13151499,0 +(1,2642:6656987,43797425:25899828,11971851,0 +[1,2642:7246811,43797425:24720180,11971851,0 +(1,2627:7246811,32912948:24720180,1087374,134348 +k1,2626:8725359,32912948:268845 +k1,2626:10190890,32912948:268844 +k1,2626:12473001,32912948:268845 +k1,2626:13401137,32912948:268844 +k1,2626:14689067,32912948:268845 +k1,2626:17697316,32912948:268844 +k1,2626:19944038,32912948:268845 +k1,2626:20744380,32912948:268845 +k1,2626:22079495,32912948:268844 +k1,2626:25419357,32912948:268845 +k1,2626:26449729,32912948:268844 +k1,2626:27737659,32912948:268845 +k1,2626:30019769,32912948:268844 +k1,2626:30947906,32912948:268845 +k1,2626:31966991,32912948:0 +) +(1,2627:7246811,33754436:24720180,505283,126483 +k1,2626:9932622,33754436:168573 +k1,2626:12252742,33754436:168573 +k1,2626:15356017,33754436:168573 +k1,2626:16900191,33754436:168573 +k1,2626:20249882,33754436:168573 +k1,2626:22845253,33754436:168573 +k1,2626:24298332,33754436:168573 +k1,2626:26448058,33754436:168573 +k1,2626:29561164,33754436:168573 +k1,2626:31966991,33754436:0 +) +(1,2627:7246811,34595924:24720180,505283,134348 +k1,2626:8097249,34595924:234400 +k1,2626:9350735,34595924:234401 +k1,2626:12102373,34595924:234400 +k1,2626:14314650,34595924:234400 +k1,2626:15653332,34595924:234400 +k1,2626:18091709,34595924:234401 +k1,2626:20510424,34595924:234400 +k1,2626:22666340,34595924:234400 +k1,2626:24911385,34595924:234400 +k1,2626:25761824,34595924:234401 +k1,2626:27015309,34595924:234400 +k1,2626:29989114,34595924:234400 +k1,2626:31966991,34595924:0 +) +(1,2627:7246811,35437412:24720180,505283,134348 +k1,2626:10134562,35437412:209295 +k1,2626:10995284,35437412:209294 +k1,2626:14149112,35437412:209295 +k1,2626:15642913,35437412:209295 +k1,2626:16843767,35437412:209294 +k1,2626:18119333,35437412:209295 +k1,2626:20734455,35437412:209295 +k1,2626:21559788,35437412:209295 +k1,2626:22788167,35437412:209294 +k1,2626:25514700,35437412:209295 +k1,2626:27875542,35437412:209295 +k1,2626:29927708,35437412:209294 +k1,2626:30753041,35437412:209295 +(1,2626:30753041,35437412:0,414482,115847 +r1,2642:31463019,35437412:709978,530329,115847 +k1,2626:30753041,35437412:-709978 +) +(1,2626:30753041,35437412:709978,414482,115847 +k1,2626:30753041,35437412:3277 +h1,2626:31459742,35437412:0,411205,112570 +) +k1,2626:31966991,35437412:0 +) +(1,2627:7246811,36278900:24720180,513147,134348 +k1,2626:8845141,36278900:217486 +k1,2626:9594124,36278900:217486 +k1,2626:11682008,36278900:217486 +k1,2626:12550922,36278900:217486 +k1,2626:14379938,36278900:217486 +k1,2626:15358952,36278900:217486 +k1,2626:17935733,36278900:217485 +k1,2626:19547170,36278900:217486 +k1,2626:20353169,36278900:217486 +k1,2626:22013102,36278900:217486 +k1,2626:23798209,36278900:217486 +k1,2626:28251942,36278900:217486 +k1,2626:29767041,36278900:217486 +k1,2626:31378478,36278900:217486 +k1,2626:31966991,36278900:0 +) +(1,2627:7246811,37120388:24720180,513147,134348 +g1,2626:9181433,37120388 +g1,2626:10399747,37120388 +g1,2626:13574311,37120388 +g1,2626:16765259,37120388 +g1,2626:17650650,37120388 +g1,2626:18205739,37120388 +g1,2626:20883540,37120388 +k1,2627:31966991,37120388:9221573 +g1,2627:31966991,37120388 +) +v1,2629:7246811,38310854:0,393216,0 +(1,2637:7246811,41259205:24720180,3341567,196608 +g1,2637:7246811,41259205 +g1,2637:7246811,41259205 +g1,2637:7050203,41259205 +(1,2637:7050203,41259205:0,3341567,196608 +r1,2642:32163599,41259205:25113396,3538175,196608 +k1,2637:7050203,41259205:-25113396 +) +(1,2637:7050203,41259205:25113396,3341567,196608 +[1,2637:7246811,41259205:24720180,3144959,0 +(1,2631:7246811,38518472:24720180,404226,107478 +(1,2630:7246811,38518472:0,0,0 +g1,2630:7246811,38518472 +g1,2630:7246811,38518472 +g1,2630:6919131,38518472 +(1,2630:6919131,38518472:0,0,0 +) +g1,2630:7246811,38518472 +) +k1,2631:7246811,38518472:0 +h1,2631:10092122,38518472:0,0,0 +k1,2631:31966990,38518472:21874868 +g1,2631:31966990,38518472 +) +(1,2632:7246811,39184650:24720180,404226,82312 +h1,2632:7246811,39184650:0,0,0 +k1,2632:7246811,39184650:0 +h1,2632:11356707,39184650:0,0,0 +k1,2632:31966991,39184650:20610284 +g1,2632:31966991,39184650 +) +(1,2633:7246811,39850828:24720180,404226,82312 +h1,2633:7246811,39850828:0,0,0 +g1,2633:10408269,39850828 +h1,2633:12305143,39850828:0,0,0 +k1,2633:31966991,39850828:19661848 +g1,2633:31966991,39850828 +) +(1,2634:7246811,40517006:24720180,404226,82312 +h1,2634:7246811,40517006:0,0,0 +k1,2634:7246811,40517006:0 +h1,2634:10408268,40517006:0,0,0 +k1,2634:31966992,40517006:21558724 +g1,2634:31966992,40517006 +) +(1,2635:7246811,41183184:24720180,404226,76021 +h1,2635:7246811,41183184:0,0,0 +h1,2635:8827539,41183184:0,0,0 +k1,2635:31966991,41183184:23139452 +g1,2635:31966991,41183184 +) +] +) +g1,2637:31966991,41259205 +g1,2637:7246811,41259205 +g1,2637:7246811,41259205 +g1,2637:31966991,41259205 +g1,2637:31966991,41259205 +) +h1,2637:7246811,41455813:0,0,0 +(1,2641:7246811,42821589:24720180,513147,126483 +h1,2640:7246811,42821589:983040,0,0 +k1,2640:10019031,42821589:223525 +k1,2640:11413028,42821589:223524 +k1,2640:13151090,42821589:223525 +k1,2640:15066754,42821589:223524 +k1,2640:15949571,42821589:223525 +k1,2640:17631926,42821589:223524 +k1,2640:19185832,42821589:223525 +k1,2640:22728100,42821589:223525 +k1,2640:23429381,42821589:223524 +k1,2640:24719177,42821589:223525 +k1,2640:26081717,42821589:223524 +k1,2640:27120510,42821589:223525 +k1,2640:28737985,42821589:223524 +k1,2640:30355461,42821589:223525 +k1,2641:31966991,42821589:0 +) +(1,2641:7246811,43663077:24720180,513147,134348 +g1,2640:9274494,43663077 +g1,2640:12629937,43663077 +g1,2640:13488458,43663077 +g1,2640:15146518,43663077 +g1,2640:16676128,43663077 +g1,2640:18918114,43663077 +k1,2641:31966991,43663077:9454227 +g1,2641:31966991,43663077 +) +] +) +] +r1,2642:32583029,44387249:26214,13151499,0 +) +] +) +) +g1,2642:32583029,43797425 +) +h1,2642:6630773,44413463:0,0,0 +(1,2645:6630773,45706769:25952256,505283,134348 +h1,2644:6630773,45706769:983040,0,0 +k1,2644:10574134,45706769:228125 +k1,2644:13229057,45706769:228125 +k1,2644:14932396,45706769:228124 +k1,2644:15516381,45706769:228125 +k1,2644:17938651,45706769:228125 +k1,2644:21068710,45706769:228125 +k1,2644:22677023,45706769:228125 +k1,2644:25436804,45706769:228125 +k1,2644:26684013,45706769:228124 +k1,2644:29856671,45706769:228125 +k1,2644:30697558,45706769:228125 +k1,2644:32583029,45706769:0 ) ] -(1,2641:32583029,45706769:0,0,0 -g1,2641:32583029,45706769 +(1,2647:32583029,45706769:0,0,0 +g1,2647:32583029,45706769 ) ) -] -(1,2641:6630773,47279633:25952256,0,0 -h1,2641:6630773,47279633:25952256,0,0 +] +(1,2647:6630773,47279633:25952256,0,0 +h1,2647:6630773,47279633:25952256,0,0 ) ] -h1,2641:4262630,4025873:0,0,0 +h1,2647:4262630,4025873:0,0,0 ] -!21963 +!21964 }57 -Input:386:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:387:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:388:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!266 +Input:382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!284 {58 -[1,2724:4262630,47279633:28320399,43253760,0 -(1,2724:4262630,4025873:0,0,0 -[1,2724:-473657,4025873:25952256,0,0 -(1,2724:-473657,-710414:25952256,0,0 -h1,2724:-473657,-710414:0,0,0 -(1,2724:-473657,-710414:0,0,0 -(1,2724:-473657,-710414:0,0,0 -g1,2724:-473657,-710414 -(1,2724:-473657,-710414:65781,0,65781 -g1,2724:-407876,-710414 -[1,2724:-407876,-644633:0,0,0 +[1,2730:4262630,47279633:28320399,43253760,0 +(1,2730:4262630,4025873:0,0,0 +[1,2730:-473657,4025873:25952256,0,0 +(1,2730:-473657,-710414:25952256,0,0 +h1,2730:-473657,-710414:0,0,0 +(1,2730:-473657,-710414:0,0,0 +(1,2730:-473657,-710414:0,0,0 +g1,2730:-473657,-710414 +(1,2730:-473657,-710414:65781,0,65781 +g1,2730:-407876,-710414 +[1,2730:-407876,-644633:0,0,0 ] ) -k1,2724:-473657,-710414:-65781 +k1,2730:-473657,-710414:-65781 ) ) -k1,2724:25478599,-710414:25952256 -g1,2724:25478599,-710414 +k1,2730:25478599,-710414:25952256 +g1,2730:25478599,-710414 ) ] ) -[1,2724:6630773,47279633:25952256,43253760,0 -[1,2724:6630773,4812305:25952256,786432,0 -(1,2724:6630773,4812305:25952256,505283,126483 -(1,2724:6630773,4812305:25952256,505283,126483 -g1,2724:3078558,4812305 -[1,2724:3078558,4812305:0,0,0 -(1,2724:3078558,2439708:0,1703936,0 -k1,2724:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2724:2537886,2439708:1179648,16384,0 +[1,2730:6630773,47279633:25952256,43253760,0 +[1,2730:6630773,4812305:25952256,786432,0 +(1,2730:6630773,4812305:25952256,505283,126483 +(1,2730:6630773,4812305:25952256,505283,126483 +g1,2730:3078558,4812305 +[1,2730:3078558,4812305:0,0,0 +(1,2730:3078558,2439708:0,1703936,0 +k1,2730:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2730:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2724:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2730:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2724:3078558,4812305:0,0,0 -(1,2724:3078558,2439708:0,1703936,0 -g1,2724:29030814,2439708 -g1,2724:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2724:36151628,1915420:16384,1179648,0 +[1,2730:3078558,4812305:0,0,0 +(1,2730:3078558,2439708:0,1703936,0 +g1,2730:29030814,2439708 +g1,2730:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2730:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2724:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2730:37855564,2439708:1179648,16384,0 ) ) -k1,2724:3078556,2439708:-34777008 +k1,2730:3078556,2439708:-34777008 ) ] -[1,2724:3078558,4812305:0,0,0 -(1,2724:3078558,49800853:0,16384,2228224 -k1,2724:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2724:2537886,49800853:1179648,16384,0 +[1,2730:3078558,4812305:0,0,0 +(1,2730:3078558,49800853:0,16384,2228224 +k1,2730:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2730:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2724:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2730:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2724:3078558,4812305:0,0,0 -(1,2724:3078558,49800853:0,16384,2228224 -g1,2724:29030814,49800853 -g1,2724:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2724:36151628,51504789:16384,1179648,0 +[1,2730:3078558,4812305:0,0,0 +(1,2730:3078558,49800853:0,16384,2228224 +g1,2730:29030814,49800853 +g1,2730:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2730:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2724:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2730:37855564,49800853:1179648,16384,0 ) ) -k1,2724:3078556,49800853:-34777008 +k1,2730:3078556,49800853:-34777008 ) ] -g1,2724:6630773,4812305 -g1,2724:6630773,4812305 -g1,2724:8826229,4812305 -g1,2724:13247287,4812305 -k1,2724:31786111,4812305:18538824 -) -) -] -[1,2724:6630773,45706769:25952256,40108032,0 -(1,2724:6630773,45706769:25952256,40108032,0 -(1,2724:6630773,45706769:0,0,0 -g1,2724:6630773,45706769 +g1,2730:6630773,4812305 +g1,2730:6630773,4812305 +g1,2730:8826229,4812305 +g1,2730:13247287,4812305 +k1,2730:31786111,4812305:18538824 +) +) +] +[1,2730:6630773,45706769:25952256,40108032,0 +(1,2730:6630773,45706769:25952256,40108032,0 +(1,2730:6630773,45706769:0,0,0 +g1,2730:6630773,45706769 ) -[1,2724:6630773,45706769:25952256,40108032,0 -(1,2639:6630773,6254097:25952256,505283,134348 -k1,2638:8854223,6254097:212805 -k1,2638:11247410,6254097:212804 -k1,2638:12207981,6254097:212805 -k1,2638:15449204,6254097:212804 -k1,2638:16408464,6254097:212805 -k1,2638:18489699,6254097:212804 -k1,2638:19987010,6254097:212805 -k1,2638:20657912,6254097:212805 -k1,2638:21402213,6254097:212804 -k1,2638:23538499,6254097:212805 -k1,2638:24402731,6254097:212804 -k1,2638:25801738,6254097:212805 -k1,2638:28523916,6254097:212804 -k1,2638:29928166,6254097:212805 -k1,2638:32583029,6254097:0 -) -(1,2639:6630773,7095585:25952256,505283,134348 -g1,2638:8840647,7095585 -g1,2638:9655914,7095585 -g1,2638:10874228,7095585 -g1,2638:12726930,7095585 -g1,2638:15665564,7095585 -k1,2639:32583029,7095585:13669501 -g1,2639:32583029,7095585 -) -v1,2641:6630773,8076335:0,393216,0 -(1,2660:6630773,13229649:25952256,5546530,196608 -g1,2660:6630773,13229649 -g1,2660:6630773,13229649 -g1,2660:6434165,13229649 -(1,2660:6434165,13229649:0,5546530,196608 -r1,2660:32779637,13229649:26345472,5743138,196608 -k1,2660:6434165,13229649:-26345472 -) -(1,2660:6434165,13229649:26345472,5546530,196608 -[1,2660:6630773,13229649:25952256,5349922,0 -(1,2643:6630773,8283953:25952256,404226,76021 -(1,2642:6630773,8283953:0,0,0 -g1,2642:6630773,8283953 -g1,2642:6630773,8283953 -g1,2642:6303093,8283953 -(1,2642:6303093,8283953:0,0,0 -) -g1,2642:6630773,8283953 -) -k1,2643:6630773,8283953:0 -h1,2643:8211502,8283953:0,0,0 -k1,2643:32583030,8283953:24371528 -g1,2643:32583030,8283953 -) -(1,2647:6630773,9015667:25952256,410518,107478 -(1,2645:6630773,9015667:0,0,0 -g1,2645:6630773,9015667 -g1,2645:6630773,9015667 -g1,2645:6303093,9015667 -(1,2645:6303093,9015667:0,0,0 -) -g1,2645:6630773,9015667 -) -g1,2647:7579210,9015667 -g1,2647:8843793,9015667 -g1,2647:10108376,9015667 -g1,2647:11372959,9015667 -g1,2647:12637542,9015667 -g1,2647:13902125,9015667 -g1,2647:15166708,9015667 -g1,2647:16431291,9015667 -g1,2647:17695874,9015667 -g1,2647:18960457,9015667 -h1,2647:19908894,9015667:0,0,0 -k1,2647:32583029,9015667:12674135 -g1,2647:32583029,9015667 -) -(1,2649:6630773,10337205:25952256,404226,82312 -(1,2648:6630773,10337205:0,0,0 -g1,2648:6630773,10337205 -g1,2648:6630773,10337205 -g1,2648:6303093,10337205 -(1,2648:6303093,10337205:0,0,0 -) -g1,2648:6630773,10337205 -) -k1,2649:6630773,10337205:0 -k1,2649:6630773,10337205:0 -h1,2649:9792231,10337205:0,0,0 -k1,2649:32583029,10337205:22790798 -g1,2649:32583029,10337205 -) -(1,2653:6630773,11068919:25952256,410518,107478 -(1,2651:6630773,11068919:0,0,0 -g1,2651:6630773,11068919 -g1,2651:6630773,11068919 -g1,2651:6303093,11068919 -(1,2651:6303093,11068919:0,0,0 -) -g1,2651:6630773,11068919 -) -g1,2653:7579210,11068919 -g1,2653:8843793,11068919 -g1,2653:10108376,11068919 -g1,2653:11372959,11068919 -g1,2653:12637542,11068919 -g1,2653:13902125,11068919 -g1,2653:15166708,11068919 -g1,2653:16431291,11068919 -g1,2653:17695874,11068919 -h1,2653:18644311,11068919:0,0,0 -k1,2653:32583029,11068919:13938718 -g1,2653:32583029,11068919 -) -(1,2655:6630773,12390457:25952256,404226,76021 -(1,2654:6630773,12390457:0,0,0 -g1,2654:6630773,12390457 -g1,2654:6630773,12390457 -g1,2654:6303093,12390457 -(1,2654:6303093,12390457:0,0,0 -) -g1,2654:6630773,12390457 -) -k1,2655:6630773,12390457:0 -k1,2655:6630773,12390457:0 -h1,2655:9159940,12390457:0,0,0 -k1,2655:32583028,12390457:23423088 -g1,2655:32583028,12390457 -) -(1,2659:6630773,13122171:25952256,410518,107478 -(1,2657:6630773,13122171:0,0,0 -g1,2657:6630773,13122171 -g1,2657:6630773,13122171 -g1,2657:6303093,13122171 -(1,2657:6303093,13122171:0,0,0 -) -g1,2657:6630773,13122171 -) -g1,2659:7579210,13122171 -g1,2659:8843793,13122171 -g1,2659:10108376,13122171 -g1,2659:11372959,13122171 -g1,2659:12637542,13122171 -g1,2659:13902125,13122171 -g1,2659:15166708,13122171 -g1,2659:16431291,13122171 -g1,2659:17695874,13122171 -h1,2659:18644311,13122171:0,0,0 -k1,2659:32583029,13122171:13938718 -g1,2659:32583029,13122171 -) -] -) -g1,2660:32583029,13229649 -g1,2660:6630773,13229649 -g1,2660:6630773,13229649 -g1,2660:32583029,13229649 -g1,2660:32583029,13229649 -) -h1,2660:6630773,13426257:0,0,0 -v1,2664:6630773,14896889:0,393216,0 -(1,2679:6630773,27650981:25952256,13147308,616038 -g1,2679:6630773,27650981 -(1,2679:6630773,27650981:25952256,13147308,616038 -(1,2679:6630773,28267019:25952256,13763346,0 -[1,2679:6630773,28267019:25952256,13763346,0 -(1,2679:6630773,28240805:25952256,13710918,0 -r1,2679:6656987,28240805:26214,13710918,0 -[1,2679:6656987,28240805:25899828,13710918,0 -(1,2679:6656987,27650981:25899828,12531270,0 -[1,2679:7246811,27650981:24720180,12531270,0 -(1,2665:7246811,16403693:24720180,1283982,196608 -(1,2664:7246811,16403693:0,1283982,196608 -r1,2679:9812056,16403693:2565245,1480590,196608 -k1,2664:7246811,16403693:-2565245 -) -(1,2664:7246811,16403693:2565245,1283982,196608 -) -k1,2664:9974332,16403693:162276 -k1,2664:12466413,16403693:162276 -k1,2664:14196309,16403693:162275 -k1,2664:17097990,16403693:162276 -k1,2664:18654217,16403693:162276 -k1,2664:21010638,16403693:162276 -k1,2664:23183559,16403693:162276 -k1,2664:24537280,16403693:162276 -k1,2664:26119720,16403693:162275 -k1,2664:27618930,16403693:162276 -k1,2664:28528972,16403693:162276 -k1,2664:31966991,16403693:0 -) -(1,2665:7246811,17245181:24720180,513147,126483 -k1,2664:8481728,17245181:150951 -k1,2664:9284107,17245181:150951 -k1,2664:11077391,17245181:150952 -k1,2664:11584202,17245181:150951 -k1,2664:12990823,17245181:150951 -k1,2664:14709395,17245181:150951 -k1,2664:15879431,17245181:150951 -k1,2664:19022102,17245181:150952 -k1,2664:21215155,17245181:150951 -k1,2664:21721966,17245181:150951 -k1,2664:23128587,17245181:150951 -k1,2664:24564044,17245181:150951 -k1,2664:25847458,17245181:150952 -k1,2664:27386462,17245181:150951 -k1,2664:28707886,17245181:150951 -k1,2664:31966991,17245181:0 -) -(1,2665:7246811,18086669:24720180,513147,134348 -k1,2664:9077172,18086669:281745 -k1,2664:10010345,18086669:281745 -k1,2664:12363029,18086669:281746 -k1,2664:14028894,18086669:281745 -k1,2664:15736047,18086669:281745 -k1,2664:17188265,18086669:281745 -k1,2664:18461570,18086669:281745 -k1,2664:22273740,18086669:281746 -k1,2664:23949436,18086669:281745 -k1,2664:26433191,18086669:281745 -k1,2664:30231598,18086669:281745 -k1,2664:31966991,18086669:0 -) -(1,2665:7246811,18928157:24720180,513147,134348 -k1,2664:11450707,18928157:296640 -k1,2664:13632818,18928157:296640 -k1,2664:14921017,18928157:296639 -k1,2664:17411802,18928157:296640 -k1,2664:19719087,18928157:296640 -k1,2664:22342910,18928157:296640 -k1,2664:23298842,18928157:296640 -k1,2664:26155974,18928157:296640 -k1,2664:28311869,18928157:296639 -k1,2664:29291394,18928157:296640 -k1,2664:31315563,18928157:296640 -k1,2664:31966991,18928157:0 -) -(1,2665:7246811,19769645:24720180,505283,126483 -k1,2664:10545893,19769645:283771 -k1,2664:11361161,19769645:283771 -k1,2664:13357388,19769645:283771 -k1,2664:14292586,19769645:283770 -k1,2664:16950726,19769645:283771 -k1,2664:19404394,19769645:283771 -k1,2664:20371050,19769645:283771 -k1,2664:22108410,19769645:283771 -k1,2664:23078343,19769645:283771 -k1,2664:25058841,19769645:283771 -k1,2664:27536756,19769645:283770 -k1,2664:29831172,19769645:283771 -k1,2664:31219225,19769645:283771 -k1,2664:31966991,19769645:0 -) -(1,2665:7246811,20611133:24720180,513147,134348 -k1,2664:10302524,20611133:276986 -k1,2664:11341038,20611133:276986 -k1,2664:14380367,20611133:276986 -k1,2664:15072118,20611133:276908 -k1,2664:19119390,20611133:276986 -k1,2664:22758373,20611133:276986 -k1,2664:23844729,20611133:276986 -k1,2664:25140800,20611133:276986 -k1,2664:27098129,20611133:276986 -k1,2664:28034407,20611133:276986 -k1,2664:31284106,20611133:276986 -k1,2664:31966991,20611133:0 -) -(1,2665:7246811,21452621:24720180,513147,134348 -g1,2664:10141536,21452621 -g1,2664:13917065,21452621 -g1,2664:15808434,21452621 -g1,2664:16666955,21452621 -g1,2664:18505239,21452621 -g1,2664:21794491,21452621 -g1,2664:24027302,21452621 -g1,2664:24842569,21452621 -g1,2664:26245039,21452621 -k1,2665:31966991,21452621:3130658 -g1,2665:31966991,21452621 -) -v1,2667:7246811,22643087:0,393216,0 -(1,2677:7246811,26930085:24720180,4680214,196608 -g1,2677:7246811,26930085 -g1,2677:7246811,26930085 -g1,2677:7050203,26930085 -(1,2677:7050203,26930085:0,4680214,196608 -r1,2679:32163599,26930085:25113396,4876822,196608 -k1,2677:7050203,26930085:-25113396 -) -(1,2677:7050203,26930085:25113396,4680214,196608 -[1,2677:7246811,26930085:24720180,4483606,0 -(1,2669:7246811,22850705:24720180,404226,76021 -(1,2668:7246811,22850705:0,0,0 -g1,2668:7246811,22850705 -g1,2668:7246811,22850705 -g1,2668:6919131,22850705 -(1,2668:6919131,22850705:0,0,0 -) -g1,2668:7246811,22850705 -) -g1,2669:8195248,22850705 -h1,2669:8511394,22850705:0,0,0 -k1,2669:31966990,22850705:23455596 -g1,2669:31966990,22850705 -) -(1,2670:7246811,23516883:24720180,404226,76021 -h1,2670:7246811,23516883:0,0,0 -h1,2670:8511394,23516883:0,0,0 -k1,2670:31966990,23516883:23455596 -g1,2670:31966990,23516883 -) -(1,2671:7246811,24183061:24720180,404226,76021 -h1,2671:7246811,24183061:0,0,0 -k1,2671:7246811,24183061:0 -h1,2671:11356705,24183061:0,0,0 -k1,2671:31966991,24183061:20610286 -g1,2671:31966991,24183061 -) -(1,2672:7246811,24849239:24720180,404226,76021 -h1,2672:7246811,24849239:0,0,0 -h1,2672:8827539,24849239:0,0,0 -k1,2672:31966991,24849239:23139452 -g1,2672:31966991,24849239 -) -(1,2673:7246811,25515417:24720180,404226,82312 -h1,2673:7246811,25515417:0,0,0 -g1,2673:9459832,25515417 -h1,2673:10724414,25515417:0,0,0 -k1,2673:31966990,25515417:21242576 -g1,2673:31966990,25515417 -) -(1,2674:7246811,26181595:24720180,404226,76021 -h1,2674:7246811,26181595:0,0,0 -k1,2674:7246811,26181595:0 -h1,2674:9459831,26181595:0,0,0 -k1,2674:31966991,26181595:22507160 -g1,2674:31966991,26181595 -) -(1,2675:7246811,26847773:24720180,404226,82312 -h1,2675:7246811,26847773:0,0,0 -g1,2675:9459832,26847773 -k1,2675:9459832,26847773:0 -h1,2675:11356706,26847773:0,0,0 -k1,2675:31966990,26847773:20610284 -g1,2675:31966990,26847773 -) -] -) -g1,2677:31966991,26930085 -g1,2677:7246811,26930085 -g1,2677:7246811,26930085 -g1,2677:31966991,26930085 -g1,2677:31966991,26930085 -) -h1,2677:7246811,27126693:0,0,0 -] -) -] -r1,2679:32583029,28240805:26214,13710918,0 -) -] -) -) -g1,2679:32583029,27650981 -) -h1,2679:6630773,28267019:0,0,0 -(1,2682:6630773,29423079:25952256,513147,134348 -h1,2681:6630773,29423079:983040,0,0 -k1,2681:10433626,29423079:215412 -k1,2681:11887013,29423079:215412 -k1,2681:12761716,29423079:215411 -k1,2681:15890203,29423079:215412 -k1,2681:17991086,29423079:215412 -k1,2681:18737995,29423079:215412 -k1,2681:20307380,29423079:215411 -k1,2681:22663853,29423079:215412 -k1,2681:23951434,29423079:215412 -k1,2681:25233117,29423079:215412 -k1,2681:28232497,29423079:215411 -k1,2681:29063947,29423079:215412 -k1,2681:30881059,29423079:215412 -k1,2681:32583029,29423079:0 -) -(1,2682:6630773,30264567:25952256,513147,134348 -k1,2681:11189375,30264567:206356 -k1,2681:14742000,30264567:206357 -k1,2681:15479853,30264567:206356 -k1,2681:18425614,30264567:206356 -k1,2681:20025922,30264567:206357 -k1,2681:20588138,30264567:206356 -k1,2681:22772372,30264567:206357 -k1,2681:23645884,30264567:206356 -(1,2681:23645884,30264567:0,452978,122846 -r1,2681:26114421,30264567:2468537,575824,122846 -k1,2681:23645884,30264567:-2468537 -) -(1,2681:23645884,30264567:2468537,452978,122846 -k1,2681:23645884,30264567:3277 -h1,2681:26111144,30264567:0,411205,112570 -) -k1,2681:26320777,30264567:206356 -k1,2681:28711449,30264567:206357 -k1,2681:30114492,30264567:206356 -(1,2681:30114492,30264567:0,452978,122846 -r1,2681:32583029,30264567:2468537,575824,122846 -k1,2681:30114492,30264567:-2468537 -) -(1,2681:30114492,30264567:2468537,452978,122846 -k1,2681:30114492,30264567:3277 -h1,2681:32579752,30264567:0,411205,112570 -) -k1,2681:32583029,30264567:0 -) -(1,2682:6630773,31106055:25952256,513147,134348 -k1,2681:8856797,31106055:248147 -k1,2681:10618170,31106055:248147 -k1,2681:11813969,31106055:248148 -k1,2681:14801521,31106055:248147 -k1,2681:15581165,31106055:248147 -k1,2681:18116519,31106055:248147 -k1,2681:19023959,31106055:248148 -k1,2681:20291191,31106055:248147 -k1,2681:22192811,31106055:248147 -k1,2681:24454224,31106055:248147 -k1,2681:25388533,31106055:248147 -k1,2681:26655766,31106055:248148 -k1,2681:28881790,31106055:248147 -k1,2681:30697558,31106055:248147 -k1,2681:32583029,31106055:0 -) -(1,2682:6630773,31947543:25952256,513147,134348 -k1,2681:9729113,31947543:229174 -k1,2681:10949847,31947543:229174 -k1,2681:12938008,31947543:229175 -k1,2681:13818610,31947543:229174 -k1,2681:14795550,31947543:229174 -k1,2681:17787067,31947543:229174 -k1,2681:20950944,31947543:229175 -k1,2681:22383359,31947543:229174 -k1,2681:23144030,31947543:229174 -k1,2681:24439475,31947543:229174 -k1,2681:25024510,31947543:229175 -k1,2681:29358204,31947543:229174 -k1,2681:32117068,31947543:229174 -k1,2681:32583029,31947543:0 -) -(1,2682:6630773,32789031:25952256,513147,126483 -k1,2681:7828786,32789031:178928 -(1,2681:7828786,32789031:0,452978,122846 -r1,2681:10297323,32789031:2468537,575824,122846 -k1,2681:7828786,32789031:-2468537 -) -(1,2681:7828786,32789031:2468537,452978,122846 -k1,2681:7828786,32789031:3277 -h1,2681:10294046,32789031:0,411205,112570 -) -k1,2681:10476250,32789031:178927 -k1,2681:12633055,32789031:178928 -k1,2681:13471275,32789031:178928 -k1,2681:16077001,32789031:178928 -k1,2681:16787425,32789031:178927 -k1,2681:19286983,32789031:178928 -k1,2681:20908358,32789031:178928 -k1,2681:22106370,32789031:178927 -k1,2681:24802536,32789031:178928 -k1,2681:27133011,32789031:178928 -k1,2681:27770036,32789031:178928 -k1,2681:28480460,32789031:178927 -k1,2681:31896867,32789031:178928 -k1,2681:32583029,32789031:0 -) -(1,2682:6630773,33630519:25952256,505283,126483 -g1,2681:9959346,33630519 -g1,2681:12013899,33630519 -g1,2681:12829166,33630519 -g1,2681:15492549,33630519 -g1,2681:16343206,33630519 -g1,2681:18244405,33630519 -k1,2682:32583029,33630519:11088038 -g1,2682:32583029,33630519 -) -v1,2684:6630773,34611269:0,393216,0 -(1,2721:6630773,45510161:25952256,11292108,196608 -g1,2721:6630773,45510161 -g1,2721:6630773,45510161 -g1,2721:6434165,45510161 -(1,2721:6434165,45510161:0,11292108,196608 -r1,2721:32779637,45510161:26345472,11488716,196608 -k1,2721:6434165,45510161:-26345472 -) -(1,2721:6434165,45510161:26345472,11292108,196608 -[1,2721:6630773,45510161:25952256,11095500,0 -(1,2686:6630773,34818887:25952256,404226,76021 -(1,2685:6630773,34818887:0,0,0 -g1,2685:6630773,34818887 -g1,2685:6630773,34818887 -g1,2685:6303093,34818887 -(1,2685:6303093,34818887:0,0,0 -) -g1,2685:6630773,34818887 -) -h1,2686:8843793,34818887:0,0,0 -k1,2686:32583029,34818887:23739236 -g1,2686:32583029,34818887 -) -(1,2690:6630773,35512948:25952256,410518,107478 -(1,2688:6630773,35512948:0,0,0 -g1,2688:6630773,35512948 -g1,2688:6630773,35512948 -g1,2688:6303093,35512948 -(1,2688:6303093,35512948:0,0,0 -) -g1,2688:6630773,35512948 -) -g1,2690:7579210,35512948 -g1,2690:7895356,35512948 -g1,2690:9159939,35512948 -g1,2690:10424522,35512948 -g1,2690:11689105,35512948 -g1,2690:12953688,35512948 -g1,2690:14218271,35512948 -g1,2690:15482854,35512948 -g1,2690:16747437,35512948 -g1,2690:18012020,35512948 -g1,2690:19276603,35512948 -g1,2690:20541186,35512948 -h1,2690:21489623,35512948:0,0,0 -k1,2690:32583029,35512948:11093406 -g1,2690:32583029,35512948 -) -(1,2692:6630773,36796834:25952256,404226,76021 -(1,2691:6630773,36796834:0,0,0 -g1,2691:6630773,36796834 -g1,2691:6630773,36796834 -g1,2691:6303093,36796834 -(1,2691:6303093,36796834:0,0,0 -) -g1,2691:6630773,36796834 -) -h1,2692:9159938,36796834:0,0,0 -k1,2692:32583030,36796834:23423092 -g1,2692:32583030,36796834 -) -(1,2696:6630773,37490895:25952256,404226,76021 -(1,2694:6630773,37490895:0,0,0 -g1,2694:6630773,37490895 -g1,2694:6630773,37490895 -g1,2694:6303093,37490895 -(1,2694:6303093,37490895:0,0,0 -) -g1,2694:6630773,37490895 -) -g1,2696:7579210,37490895 -h1,2696:11372958,37490895:0,0,0 -k1,2696:32583030,37490895:21210072 -g1,2696:32583030,37490895 -) -(1,2698:6630773,38774781:25952256,404226,82312 -(1,2697:6630773,38774781:0,0,0 -g1,2697:6630773,38774781 -g1,2697:6630773,38774781 -g1,2697:6303093,38774781 -(1,2697:6303093,38774781:0,0,0 -) -g1,2697:6630773,38774781 -) -k1,2698:6630773,38774781:0 -g1,2698:9792231,38774781 -h1,2698:12005250,38774781:0,0,0 -k1,2698:32583030,38774781:20577780 -g1,2698:32583030,38774781 -) -(1,2702:6630773,39468842:25952256,404226,107478 -(1,2700:6630773,39468842:0,0,0 -g1,2700:6630773,39468842 -g1,2700:6630773,39468842 -g1,2700:6303093,39468842 -(1,2700:6303093,39468842:0,0,0 -) -g1,2700:6630773,39468842 -) -g1,2702:7579210,39468842 -g1,2702:8843793,39468842 -g1,2702:10108376,39468842 -g1,2702:11372959,39468842 -g1,2702:12637542,39468842 -g1,2702:13902125,39468842 -h1,2702:14850562,39468842:0,0,0 -k1,2702:32583030,39468842:17732468 -g1,2702:32583030,39468842 -) -(1,2704:6630773,40752728:25952256,404226,82312 -(1,2703:6630773,40752728:0,0,0 -g1,2703:6630773,40752728 -g1,2703:6630773,40752728 -g1,2703:6303093,40752728 -(1,2703:6303093,40752728:0,0,0 -) -g1,2703:6630773,40752728 -) -k1,2704:6630773,40752728:0 -g1,2704:10108376,40752728 -h1,2704:12005250,40752728:0,0,0 -k1,2704:32583030,40752728:20577780 -g1,2704:32583030,40752728 -) -(1,2708:6630773,41446789:25952256,410518,107478 -(1,2706:6630773,41446789:0,0,0 -g1,2706:6630773,41446789 -g1,2706:6630773,41446789 -g1,2706:6303093,41446789 -(1,2706:6303093,41446789:0,0,0 -) -g1,2706:6630773,41446789 -) -g1,2708:7579210,41446789 -g1,2708:8843793,41446789 -g1,2708:10108376,41446789 -g1,2708:11372959,41446789 -g1,2708:12637542,41446789 -g1,2708:13902125,41446789 -h1,2708:14850562,41446789:0,0,0 -k1,2708:32583030,41446789:17732468 -g1,2708:32583030,41446789 -) -(1,2710:6630773,42730675:25952256,404226,6290 -(1,2709:6630773,42730675:0,0,0 -g1,2709:6630773,42730675 -g1,2709:6630773,42730675 -g1,2709:6303093,42730675 -(1,2709:6303093,42730675:0,0,0 -) -g1,2709:6630773,42730675 -) -g1,2710:7263065,42730675 -g1,2710:7895357,42730675 -h1,2710:8843794,42730675:0,0,0 -k1,2710:32583030,42730675:23739236 -g1,2710:32583030,42730675 -) -(1,2714:6630773,43424736:25952256,404226,76021 -(1,2712:6630773,43424736:0,0,0 -g1,2712:6630773,43424736 -g1,2712:6630773,43424736 -g1,2712:6303093,43424736 -(1,2712:6303093,43424736:0,0,0 -) -g1,2712:6630773,43424736 -) -g1,2714:7579210,43424736 -g1,2714:7895356,43424736 -g1,2714:9159939,43424736 -g1,2714:11056813,43424736 -g1,2714:12953687,43424736 -g1,2714:14850561,43424736 -g1,2714:15166707,43424736 -g1,2714:16747436,43424736 -g1,2714:17063582,43424736 -g1,2714:18644311,43424736 -g1,2714:18960457,43424736 -g1,2714:20541186,43424736 -g1,2714:20857332,43424736 -g1,2714:22438061,43424736 -g1,2714:22754207,43424736 -g1,2714:24334936,43424736 -g1,2714:24651082,43424736 -g1,2714:26231811,43424736 -g1,2714:26547957,43424736 -h1,2714:27812540,43424736:0,0,0 -k1,2714:32583029,43424736:4770489 -g1,2714:32583029,43424736 -) -(1,2716:6630773,44708622:25952256,404226,76021 -(1,2715:6630773,44708622:0,0,0 -g1,2715:6630773,44708622 -g1,2715:6630773,44708622 -g1,2715:6303093,44708622 -(1,2715:6303093,44708622:0,0,0 -) -g1,2715:6630773,44708622 -) -g1,2716:7895356,44708622 -g1,2716:8527648,44708622 -h1,2716:9792231,44708622:0,0,0 -k1,2716:32583029,44708622:22790798 -g1,2716:32583029,44708622 -) -(1,2720:6630773,45402683:25952256,410518,107478 -(1,2718:6630773,45402683:0,0,0 -g1,2718:6630773,45402683 -g1,2718:6630773,45402683 -g1,2718:6303093,45402683 -(1,2718:6303093,45402683:0,0,0 -) -g1,2718:6630773,45402683 -) -g1,2720:7579210,45402683 -g1,2720:8843793,45402683 -g1,2720:10108376,45402683 -g1,2720:11372959,45402683 -g1,2720:12637542,45402683 -g1,2720:13902125,45402683 -g1,2720:15166708,45402683 -g1,2720:16431291,45402683 -h1,2720:17379728,45402683:0,0,0 -k1,2720:32583029,45402683:15203301 -g1,2720:32583029,45402683 -) -] -) -g1,2721:32583029,45510161 -g1,2721:6630773,45510161 -g1,2721:6630773,45510161 -g1,2721:32583029,45510161 -g1,2721:32583029,45510161 -) -h1,2721:6630773,45706769:0,0,0 -] -(1,2724:32583029,45706769:0,0,0 -g1,2724:32583029,45706769 -) -) -] -(1,2724:6630773,47279633:25952256,0,0 -h1,2724:6630773,47279633:25952256,0,0 -) -] -h1,2724:4262630,4025873:0,0,0 +[1,2730:6630773,45706769:25952256,40108032,0 +(1,2645:6630773,6254097:25952256,505283,134348 +k1,2644:8854223,6254097:212805 +k1,2644:11247410,6254097:212804 +k1,2644:12207981,6254097:212805 +k1,2644:15449204,6254097:212804 +k1,2644:16408464,6254097:212805 +k1,2644:18489699,6254097:212804 +k1,2644:19987010,6254097:212805 +k1,2644:20657912,6254097:212805 +k1,2644:21402213,6254097:212804 +k1,2644:23538499,6254097:212805 +k1,2644:24402731,6254097:212804 +k1,2644:25801738,6254097:212805 +k1,2644:28523916,6254097:212804 +k1,2644:29928166,6254097:212805 +k1,2644:32583029,6254097:0 +) +(1,2645:6630773,7095585:25952256,505283,134348 +g1,2644:8840647,7095585 +g1,2644:9655914,7095585 +g1,2644:10874228,7095585 +g1,2644:12726930,7095585 +g1,2644:15665564,7095585 +k1,2645:32583029,7095585:13669501 +g1,2645:32583029,7095585 +) +v1,2647:6630773,8076335:0,393216,0 +(1,2666:6630773,13229649:25952256,5546530,196608 +g1,2666:6630773,13229649 +g1,2666:6630773,13229649 +g1,2666:6434165,13229649 +(1,2666:6434165,13229649:0,5546530,196608 +r1,2666:32779637,13229649:26345472,5743138,196608 +k1,2666:6434165,13229649:-26345472 +) +(1,2666:6434165,13229649:26345472,5546530,196608 +[1,2666:6630773,13229649:25952256,5349922,0 +(1,2649:6630773,8283953:25952256,404226,76021 +(1,2648:6630773,8283953:0,0,0 +g1,2648:6630773,8283953 +g1,2648:6630773,8283953 +g1,2648:6303093,8283953 +(1,2648:6303093,8283953:0,0,0 +) +g1,2648:6630773,8283953 +) +k1,2649:6630773,8283953:0 +h1,2649:8211502,8283953:0,0,0 +k1,2649:32583030,8283953:24371528 +g1,2649:32583030,8283953 +) +(1,2653:6630773,9015667:25952256,410518,107478 +(1,2651:6630773,9015667:0,0,0 +g1,2651:6630773,9015667 +g1,2651:6630773,9015667 +g1,2651:6303093,9015667 +(1,2651:6303093,9015667:0,0,0 +) +g1,2651:6630773,9015667 +) +g1,2653:7579210,9015667 +g1,2653:8843793,9015667 +g1,2653:10108376,9015667 +g1,2653:11372959,9015667 +g1,2653:12637542,9015667 +g1,2653:13902125,9015667 +g1,2653:15166708,9015667 +g1,2653:16431291,9015667 +g1,2653:17695874,9015667 +g1,2653:18960457,9015667 +h1,2653:19908894,9015667:0,0,0 +k1,2653:32583029,9015667:12674135 +g1,2653:32583029,9015667 +) +(1,2655:6630773,10337205:25952256,404226,82312 +(1,2654:6630773,10337205:0,0,0 +g1,2654:6630773,10337205 +g1,2654:6630773,10337205 +g1,2654:6303093,10337205 +(1,2654:6303093,10337205:0,0,0 +) +g1,2654:6630773,10337205 +) +k1,2655:6630773,10337205:0 +k1,2655:6630773,10337205:0 +h1,2655:9792231,10337205:0,0,0 +k1,2655:32583029,10337205:22790798 +g1,2655:32583029,10337205 +) +(1,2659:6630773,11068919:25952256,410518,107478 +(1,2657:6630773,11068919:0,0,0 +g1,2657:6630773,11068919 +g1,2657:6630773,11068919 +g1,2657:6303093,11068919 +(1,2657:6303093,11068919:0,0,0 +) +g1,2657:6630773,11068919 +) +g1,2659:7579210,11068919 +g1,2659:8843793,11068919 +g1,2659:10108376,11068919 +g1,2659:11372959,11068919 +g1,2659:12637542,11068919 +g1,2659:13902125,11068919 +g1,2659:15166708,11068919 +g1,2659:16431291,11068919 +g1,2659:17695874,11068919 +h1,2659:18644311,11068919:0,0,0 +k1,2659:32583029,11068919:13938718 +g1,2659:32583029,11068919 +) +(1,2661:6630773,12390457:25952256,404226,76021 +(1,2660:6630773,12390457:0,0,0 +g1,2660:6630773,12390457 +g1,2660:6630773,12390457 +g1,2660:6303093,12390457 +(1,2660:6303093,12390457:0,0,0 +) +g1,2660:6630773,12390457 +) +k1,2661:6630773,12390457:0 +k1,2661:6630773,12390457:0 +h1,2661:9159940,12390457:0,0,0 +k1,2661:32583028,12390457:23423088 +g1,2661:32583028,12390457 +) +(1,2665:6630773,13122171:25952256,410518,107478 +(1,2663:6630773,13122171:0,0,0 +g1,2663:6630773,13122171 +g1,2663:6630773,13122171 +g1,2663:6303093,13122171 +(1,2663:6303093,13122171:0,0,0 +) +g1,2663:6630773,13122171 +) +g1,2665:7579210,13122171 +g1,2665:8843793,13122171 +g1,2665:10108376,13122171 +g1,2665:11372959,13122171 +g1,2665:12637542,13122171 +g1,2665:13902125,13122171 +g1,2665:15166708,13122171 +g1,2665:16431291,13122171 +g1,2665:17695874,13122171 +h1,2665:18644311,13122171:0,0,0 +k1,2665:32583029,13122171:13938718 +g1,2665:32583029,13122171 +) +] +) +g1,2666:32583029,13229649 +g1,2666:6630773,13229649 +g1,2666:6630773,13229649 +g1,2666:32583029,13229649 +g1,2666:32583029,13229649 +) +h1,2666:6630773,13426257:0,0,0 +v1,2670:6630773,14896889:0,393216,0 +(1,2685:6630773,27650981:25952256,13147308,616038 +g1,2685:6630773,27650981 +(1,2685:6630773,27650981:25952256,13147308,616038 +(1,2685:6630773,28267019:25952256,13763346,0 +[1,2685:6630773,28267019:25952256,13763346,0 +(1,2685:6630773,28240805:25952256,13710918,0 +r1,2685:6656987,28240805:26214,13710918,0 +[1,2685:6656987,28240805:25899828,13710918,0 +(1,2685:6656987,27650981:25899828,12531270,0 +[1,2685:7246811,27650981:24720180,12531270,0 +(1,2671:7246811,16403693:24720180,1283982,196608 +(1,2670:7246811,16403693:0,1283982,196608 +r1,2685:9812056,16403693:2565245,1480590,196608 +k1,2670:7246811,16403693:-2565245 +) +(1,2670:7246811,16403693:2565245,1283982,196608 +) +k1,2670:9974332,16403693:162276 +k1,2670:12466413,16403693:162276 +k1,2670:14196309,16403693:162275 +k1,2670:17097990,16403693:162276 +k1,2670:18654217,16403693:162276 +k1,2670:21010638,16403693:162276 +k1,2670:23183559,16403693:162276 +k1,2670:24537280,16403693:162276 +k1,2670:26119720,16403693:162275 +k1,2670:27618930,16403693:162276 +k1,2670:28528972,16403693:162276 +k1,2670:31966991,16403693:0 +) +(1,2671:7246811,17245181:24720180,513147,126483 +k1,2670:8481728,17245181:150951 +k1,2670:9284107,17245181:150951 +k1,2670:11077391,17245181:150952 +k1,2670:11584202,17245181:150951 +k1,2670:12990823,17245181:150951 +k1,2670:14709395,17245181:150951 +k1,2670:15879431,17245181:150951 +k1,2670:19022102,17245181:150952 +k1,2670:21215155,17245181:150951 +k1,2670:21721966,17245181:150951 +k1,2670:23128587,17245181:150951 +k1,2670:24564044,17245181:150951 +k1,2670:25847458,17245181:150952 +k1,2670:27386462,17245181:150951 +k1,2670:28707886,17245181:150951 +k1,2670:31966991,17245181:0 +) +(1,2671:7246811,18086669:24720180,513147,134348 +k1,2670:9077172,18086669:281745 +k1,2670:10010345,18086669:281745 +k1,2670:12363029,18086669:281746 +k1,2670:14028894,18086669:281745 +k1,2670:15736047,18086669:281745 +k1,2670:17188265,18086669:281745 +k1,2670:18461570,18086669:281745 +k1,2670:22273740,18086669:281746 +k1,2670:23949436,18086669:281745 +k1,2670:26433191,18086669:281745 +k1,2670:30231598,18086669:281745 +k1,2670:31966991,18086669:0 +) +(1,2671:7246811,18928157:24720180,513147,134348 +k1,2670:11450707,18928157:296640 +k1,2670:13632818,18928157:296640 +k1,2670:14921017,18928157:296639 +k1,2670:17411802,18928157:296640 +k1,2670:19719087,18928157:296640 +k1,2670:22342910,18928157:296640 +k1,2670:23298842,18928157:296640 +k1,2670:26155974,18928157:296640 +k1,2670:28311869,18928157:296639 +k1,2670:29291394,18928157:296640 +k1,2670:31315563,18928157:296640 +k1,2670:31966991,18928157:0 +) +(1,2671:7246811,19769645:24720180,505283,126483 +k1,2670:10545893,19769645:283771 +k1,2670:11361161,19769645:283771 +k1,2670:13357388,19769645:283771 +k1,2670:14292586,19769645:283770 +k1,2670:16950726,19769645:283771 +k1,2670:19404394,19769645:283771 +k1,2670:20371050,19769645:283771 +k1,2670:22108410,19769645:283771 +k1,2670:23078343,19769645:283771 +k1,2670:25058841,19769645:283771 +k1,2670:27536756,19769645:283770 +k1,2670:29831172,19769645:283771 +k1,2670:31219225,19769645:283771 +k1,2670:31966991,19769645:0 +) +(1,2671:7246811,20611133:24720180,513147,134348 +k1,2670:10302524,20611133:276986 +k1,2670:11341038,20611133:276986 +k1,2670:14380367,20611133:276986 +k1,2670:15072118,20611133:276908 +k1,2670:19119390,20611133:276986 +k1,2670:22758373,20611133:276986 +k1,2670:23844729,20611133:276986 +k1,2670:25140800,20611133:276986 +k1,2670:27098129,20611133:276986 +k1,2670:28034407,20611133:276986 +k1,2670:31284106,20611133:276986 +k1,2670:31966991,20611133:0 +) +(1,2671:7246811,21452621:24720180,513147,134348 +g1,2670:10141536,21452621 +g1,2670:13917065,21452621 +g1,2670:15808434,21452621 +g1,2670:16666955,21452621 +g1,2670:18505239,21452621 +g1,2670:21794491,21452621 +g1,2670:24027302,21452621 +g1,2670:24842569,21452621 +g1,2670:26245039,21452621 +k1,2671:31966991,21452621:3130658 +g1,2671:31966991,21452621 +) +v1,2673:7246811,22643087:0,393216,0 +(1,2683:7246811,26930085:24720180,4680214,196608 +g1,2683:7246811,26930085 +g1,2683:7246811,26930085 +g1,2683:7050203,26930085 +(1,2683:7050203,26930085:0,4680214,196608 +r1,2685:32163599,26930085:25113396,4876822,196608 +k1,2683:7050203,26930085:-25113396 +) +(1,2683:7050203,26930085:25113396,4680214,196608 +[1,2683:7246811,26930085:24720180,4483606,0 +(1,2675:7246811,22850705:24720180,404226,76021 +(1,2674:7246811,22850705:0,0,0 +g1,2674:7246811,22850705 +g1,2674:7246811,22850705 +g1,2674:6919131,22850705 +(1,2674:6919131,22850705:0,0,0 +) +g1,2674:7246811,22850705 +) +g1,2675:8195248,22850705 +h1,2675:8511394,22850705:0,0,0 +k1,2675:31966990,22850705:23455596 +g1,2675:31966990,22850705 +) +(1,2676:7246811,23516883:24720180,404226,76021 +h1,2676:7246811,23516883:0,0,0 +h1,2676:8511394,23516883:0,0,0 +k1,2676:31966990,23516883:23455596 +g1,2676:31966990,23516883 +) +(1,2677:7246811,24183061:24720180,404226,76021 +h1,2677:7246811,24183061:0,0,0 +k1,2677:7246811,24183061:0 +h1,2677:11356705,24183061:0,0,0 +k1,2677:31966991,24183061:20610286 +g1,2677:31966991,24183061 +) +(1,2678:7246811,24849239:24720180,404226,76021 +h1,2678:7246811,24849239:0,0,0 +h1,2678:8827539,24849239:0,0,0 +k1,2678:31966991,24849239:23139452 +g1,2678:31966991,24849239 +) +(1,2679:7246811,25515417:24720180,404226,82312 +h1,2679:7246811,25515417:0,0,0 +g1,2679:9459832,25515417 +h1,2679:10724414,25515417:0,0,0 +k1,2679:31966990,25515417:21242576 +g1,2679:31966990,25515417 +) +(1,2680:7246811,26181595:24720180,404226,76021 +h1,2680:7246811,26181595:0,0,0 +k1,2680:7246811,26181595:0 +h1,2680:9459831,26181595:0,0,0 +k1,2680:31966991,26181595:22507160 +g1,2680:31966991,26181595 +) +(1,2681:7246811,26847773:24720180,404226,82312 +h1,2681:7246811,26847773:0,0,0 +g1,2681:9459832,26847773 +k1,2681:9459832,26847773:0 +h1,2681:11356706,26847773:0,0,0 +k1,2681:31966990,26847773:20610284 +g1,2681:31966990,26847773 +) +] +) +g1,2683:31966991,26930085 +g1,2683:7246811,26930085 +g1,2683:7246811,26930085 +g1,2683:31966991,26930085 +g1,2683:31966991,26930085 +) +h1,2683:7246811,27126693:0,0,0 +] +) +] +r1,2685:32583029,28240805:26214,13710918,0 +) +] +) +) +g1,2685:32583029,27650981 +) +h1,2685:6630773,28267019:0,0,0 +(1,2688:6630773,29423079:25952256,513147,134348 +h1,2687:6630773,29423079:983040,0,0 +k1,2687:10433626,29423079:215412 +k1,2687:11887013,29423079:215412 +k1,2687:12761716,29423079:215411 +k1,2687:15890203,29423079:215412 +k1,2687:17991086,29423079:215412 +k1,2687:18737995,29423079:215412 +k1,2687:20307380,29423079:215411 +k1,2687:22663853,29423079:215412 +k1,2687:23951434,29423079:215412 +k1,2687:25233117,29423079:215412 +k1,2687:28232497,29423079:215411 +k1,2687:29063947,29423079:215412 +k1,2687:30881059,29423079:215412 +k1,2687:32583029,29423079:0 +) +(1,2688:6630773,30264567:25952256,513147,134348 +k1,2687:11189375,30264567:206356 +k1,2687:14742000,30264567:206357 +k1,2687:15479853,30264567:206356 +k1,2687:18425614,30264567:206356 +k1,2687:20025922,30264567:206357 +k1,2687:20588138,30264567:206356 +k1,2687:22772372,30264567:206357 +k1,2687:23645884,30264567:206356 +(1,2687:23645884,30264567:0,452978,122846 +r1,2687:26114421,30264567:2468537,575824,122846 +k1,2687:23645884,30264567:-2468537 +) +(1,2687:23645884,30264567:2468537,452978,122846 +k1,2687:23645884,30264567:3277 +h1,2687:26111144,30264567:0,411205,112570 +) +k1,2687:26320777,30264567:206356 +k1,2687:28711449,30264567:206357 +k1,2687:30114492,30264567:206356 +(1,2687:30114492,30264567:0,452978,122846 +r1,2687:32583029,30264567:2468537,575824,122846 +k1,2687:30114492,30264567:-2468537 +) +(1,2687:30114492,30264567:2468537,452978,122846 +k1,2687:30114492,30264567:3277 +h1,2687:32579752,30264567:0,411205,112570 +) +k1,2687:32583029,30264567:0 +) +(1,2688:6630773,31106055:25952256,513147,134348 +k1,2687:8856797,31106055:248147 +k1,2687:10618170,31106055:248147 +k1,2687:11813969,31106055:248148 +k1,2687:14801521,31106055:248147 +k1,2687:15581165,31106055:248147 +k1,2687:18116519,31106055:248147 +k1,2687:19023959,31106055:248148 +k1,2687:20291191,31106055:248147 +k1,2687:22192811,31106055:248147 +k1,2687:24454224,31106055:248147 +k1,2687:25388533,31106055:248147 +k1,2687:26655766,31106055:248148 +k1,2687:28881790,31106055:248147 +k1,2687:30697558,31106055:248147 +k1,2687:32583029,31106055:0 +) +(1,2688:6630773,31947543:25952256,513147,134348 +k1,2687:9729113,31947543:229174 +k1,2687:10949847,31947543:229174 +k1,2687:12938008,31947543:229175 +k1,2687:13818610,31947543:229174 +k1,2687:14795550,31947543:229174 +k1,2687:17787067,31947543:229174 +k1,2687:20950944,31947543:229175 +k1,2687:22383359,31947543:229174 +k1,2687:23144030,31947543:229174 +k1,2687:24439475,31947543:229174 +k1,2687:25024510,31947543:229175 +k1,2687:29358204,31947543:229174 +k1,2687:32117068,31947543:229174 +k1,2687:32583029,31947543:0 +) +(1,2688:6630773,32789031:25952256,513147,126483 +k1,2687:7828786,32789031:178928 +(1,2687:7828786,32789031:0,452978,122846 +r1,2687:10297323,32789031:2468537,575824,122846 +k1,2687:7828786,32789031:-2468537 +) +(1,2687:7828786,32789031:2468537,452978,122846 +k1,2687:7828786,32789031:3277 +h1,2687:10294046,32789031:0,411205,112570 +) +k1,2687:10476250,32789031:178927 +k1,2687:12633055,32789031:178928 +k1,2687:13471275,32789031:178928 +k1,2687:16077001,32789031:178928 +k1,2687:16787425,32789031:178927 +k1,2687:19286983,32789031:178928 +k1,2687:20908358,32789031:178928 +k1,2687:22106370,32789031:178927 +k1,2687:24802536,32789031:178928 +k1,2687:27133011,32789031:178928 +k1,2687:27770036,32789031:178928 +k1,2687:28480460,32789031:178927 +k1,2687:31896867,32789031:178928 +k1,2687:32583029,32789031:0 +) +(1,2688:6630773,33630519:25952256,505283,126483 +g1,2687:9959346,33630519 +g1,2687:12013899,33630519 +g1,2687:12829166,33630519 +g1,2687:15492549,33630519 +g1,2687:16343206,33630519 +g1,2687:18244405,33630519 +k1,2688:32583029,33630519:11088038 +g1,2688:32583029,33630519 +) +v1,2690:6630773,34611269:0,393216,0 +(1,2727:6630773,45510161:25952256,11292108,196608 +g1,2727:6630773,45510161 +g1,2727:6630773,45510161 +g1,2727:6434165,45510161 +(1,2727:6434165,45510161:0,11292108,196608 +r1,2727:32779637,45510161:26345472,11488716,196608 +k1,2727:6434165,45510161:-26345472 +) +(1,2727:6434165,45510161:26345472,11292108,196608 +[1,2727:6630773,45510161:25952256,11095500,0 +(1,2692:6630773,34818887:25952256,404226,76021 +(1,2691:6630773,34818887:0,0,0 +g1,2691:6630773,34818887 +g1,2691:6630773,34818887 +g1,2691:6303093,34818887 +(1,2691:6303093,34818887:0,0,0 +) +g1,2691:6630773,34818887 +) +h1,2692:8843793,34818887:0,0,0 +k1,2692:32583029,34818887:23739236 +g1,2692:32583029,34818887 +) +(1,2696:6630773,35512948:25952256,410518,107478 +(1,2694:6630773,35512948:0,0,0 +g1,2694:6630773,35512948 +g1,2694:6630773,35512948 +g1,2694:6303093,35512948 +(1,2694:6303093,35512948:0,0,0 +) +g1,2694:6630773,35512948 +) +g1,2696:7579210,35512948 +g1,2696:7895356,35512948 +g1,2696:9159939,35512948 +g1,2696:10424522,35512948 +g1,2696:11689105,35512948 +g1,2696:12953688,35512948 +g1,2696:14218271,35512948 +g1,2696:15482854,35512948 +g1,2696:16747437,35512948 +g1,2696:18012020,35512948 +g1,2696:19276603,35512948 +g1,2696:20541186,35512948 +h1,2696:21489623,35512948:0,0,0 +k1,2696:32583029,35512948:11093406 +g1,2696:32583029,35512948 +) +(1,2698:6630773,36796834:25952256,404226,76021 +(1,2697:6630773,36796834:0,0,0 +g1,2697:6630773,36796834 +g1,2697:6630773,36796834 +g1,2697:6303093,36796834 +(1,2697:6303093,36796834:0,0,0 +) +g1,2697:6630773,36796834 +) +h1,2698:9159938,36796834:0,0,0 +k1,2698:32583030,36796834:23423092 +g1,2698:32583030,36796834 +) +(1,2702:6630773,37490895:25952256,404226,76021 +(1,2700:6630773,37490895:0,0,0 +g1,2700:6630773,37490895 +g1,2700:6630773,37490895 +g1,2700:6303093,37490895 +(1,2700:6303093,37490895:0,0,0 +) +g1,2700:6630773,37490895 +) +g1,2702:7579210,37490895 +h1,2702:11372958,37490895:0,0,0 +k1,2702:32583030,37490895:21210072 +g1,2702:32583030,37490895 +) +(1,2704:6630773,38774781:25952256,404226,82312 +(1,2703:6630773,38774781:0,0,0 +g1,2703:6630773,38774781 +g1,2703:6630773,38774781 +g1,2703:6303093,38774781 +(1,2703:6303093,38774781:0,0,0 +) +g1,2703:6630773,38774781 +) +k1,2704:6630773,38774781:0 +g1,2704:9792231,38774781 +h1,2704:12005250,38774781:0,0,0 +k1,2704:32583030,38774781:20577780 +g1,2704:32583030,38774781 +) +(1,2708:6630773,39468842:25952256,404226,107478 +(1,2706:6630773,39468842:0,0,0 +g1,2706:6630773,39468842 +g1,2706:6630773,39468842 +g1,2706:6303093,39468842 +(1,2706:6303093,39468842:0,0,0 +) +g1,2706:6630773,39468842 +) +g1,2708:7579210,39468842 +g1,2708:8843793,39468842 +g1,2708:10108376,39468842 +g1,2708:11372959,39468842 +g1,2708:12637542,39468842 +g1,2708:13902125,39468842 +h1,2708:14850562,39468842:0,0,0 +k1,2708:32583030,39468842:17732468 +g1,2708:32583030,39468842 +) +(1,2710:6630773,40752728:25952256,404226,82312 +(1,2709:6630773,40752728:0,0,0 +g1,2709:6630773,40752728 +g1,2709:6630773,40752728 +g1,2709:6303093,40752728 +(1,2709:6303093,40752728:0,0,0 +) +g1,2709:6630773,40752728 +) +k1,2710:6630773,40752728:0 +g1,2710:10108376,40752728 +h1,2710:12005250,40752728:0,0,0 +k1,2710:32583030,40752728:20577780 +g1,2710:32583030,40752728 +) +(1,2714:6630773,41446789:25952256,410518,107478 +(1,2712:6630773,41446789:0,0,0 +g1,2712:6630773,41446789 +g1,2712:6630773,41446789 +g1,2712:6303093,41446789 +(1,2712:6303093,41446789:0,0,0 +) +g1,2712:6630773,41446789 +) +g1,2714:7579210,41446789 +g1,2714:8843793,41446789 +g1,2714:10108376,41446789 +g1,2714:11372959,41446789 +g1,2714:12637542,41446789 +g1,2714:13902125,41446789 +h1,2714:14850562,41446789:0,0,0 +k1,2714:32583030,41446789:17732468 +g1,2714:32583030,41446789 +) +(1,2716:6630773,42730675:25952256,404226,6290 +(1,2715:6630773,42730675:0,0,0 +g1,2715:6630773,42730675 +g1,2715:6630773,42730675 +g1,2715:6303093,42730675 +(1,2715:6303093,42730675:0,0,0 +) +g1,2715:6630773,42730675 +) +g1,2716:7263065,42730675 +g1,2716:7895357,42730675 +h1,2716:8843794,42730675:0,0,0 +k1,2716:32583030,42730675:23739236 +g1,2716:32583030,42730675 +) +(1,2720:6630773,43424736:25952256,404226,76021 +(1,2718:6630773,43424736:0,0,0 +g1,2718:6630773,43424736 +g1,2718:6630773,43424736 +g1,2718:6303093,43424736 +(1,2718:6303093,43424736:0,0,0 +) +g1,2718:6630773,43424736 +) +g1,2720:7579210,43424736 +g1,2720:7895356,43424736 +g1,2720:9159939,43424736 +g1,2720:11056813,43424736 +g1,2720:12953687,43424736 +g1,2720:14850561,43424736 +g1,2720:15166707,43424736 +g1,2720:16747436,43424736 +g1,2720:17063582,43424736 +g1,2720:18644311,43424736 +g1,2720:18960457,43424736 +g1,2720:20541186,43424736 +g1,2720:20857332,43424736 +g1,2720:22438061,43424736 +g1,2720:22754207,43424736 +g1,2720:24334936,43424736 +g1,2720:24651082,43424736 +g1,2720:26231811,43424736 +g1,2720:26547957,43424736 +h1,2720:27812540,43424736:0,0,0 +k1,2720:32583029,43424736:4770489 +g1,2720:32583029,43424736 +) +(1,2722:6630773,44708622:25952256,404226,76021 +(1,2721:6630773,44708622:0,0,0 +g1,2721:6630773,44708622 +g1,2721:6630773,44708622 +g1,2721:6303093,44708622 +(1,2721:6303093,44708622:0,0,0 +) +g1,2721:6630773,44708622 +) +g1,2722:7895356,44708622 +g1,2722:8527648,44708622 +h1,2722:9792231,44708622:0,0,0 +k1,2722:32583029,44708622:22790798 +g1,2722:32583029,44708622 +) +(1,2726:6630773,45402683:25952256,410518,107478 +(1,2724:6630773,45402683:0,0,0 +g1,2724:6630773,45402683 +g1,2724:6630773,45402683 +g1,2724:6303093,45402683 +(1,2724:6303093,45402683:0,0,0 +) +g1,2724:6630773,45402683 +) +g1,2726:7579210,45402683 +g1,2726:8843793,45402683 +g1,2726:10108376,45402683 +g1,2726:11372959,45402683 +g1,2726:12637542,45402683 +g1,2726:13902125,45402683 +g1,2726:15166708,45402683 +g1,2726:16431291,45402683 +h1,2726:17379728,45402683:0,0,0 +k1,2726:32583029,45402683:15203301 +g1,2726:32583029,45402683 +) +] +) +g1,2727:32583029,45510161 +g1,2727:6630773,45510161 +g1,2727:6630773,45510161 +g1,2727:32583029,45510161 +g1,2727:32583029,45510161 +) +h1,2727:6630773,45706769:0,0,0 +] +(1,2730:32583029,45706769:0,0,0 +g1,2730:32583029,45706769 +) +) +] +(1,2730:6630773,47279633:25952256,0,0 +h1,2730:6630773,47279633:25952256,0,0 +) +] +h1,2730:4262630,4025873:0,0,0 ] !22752 }58 -Input:389:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:390:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:391:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:392:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!351 +Input:385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!375 {59 -[1,2808:4262630,47279633:28320399,43253760,0 -(1,2808:4262630,4025873:0,0,0 -[1,2808:-473657,4025873:25952256,0,0 -(1,2808:-473657,-710414:25952256,0,0 -h1,2808:-473657,-710414:0,0,0 -(1,2808:-473657,-710414:0,0,0 -(1,2808:-473657,-710414:0,0,0 -g1,2808:-473657,-710414 -(1,2808:-473657,-710414:65781,0,65781 -g1,2808:-407876,-710414 -[1,2808:-407876,-644633:0,0,0 +[1,2814:4262630,47279633:28320399,43253760,0 +(1,2814:4262630,4025873:0,0,0 +[1,2814:-473657,4025873:25952256,0,0 +(1,2814:-473657,-710414:25952256,0,0 +h1,2814:-473657,-710414:0,0,0 +(1,2814:-473657,-710414:0,0,0 +(1,2814:-473657,-710414:0,0,0 +g1,2814:-473657,-710414 +(1,2814:-473657,-710414:65781,0,65781 +g1,2814:-407876,-710414 +[1,2814:-407876,-644633:0,0,0 ] ) -k1,2808:-473657,-710414:-65781 +k1,2814:-473657,-710414:-65781 ) ) -k1,2808:25478599,-710414:25952256 -g1,2808:25478599,-710414 +k1,2814:25478599,-710414:25952256 +g1,2814:25478599,-710414 ) ] ) -[1,2808:6630773,47279633:25952256,43253760,0 -[1,2808:6630773,4812305:25952256,786432,0 -(1,2808:6630773,4812305:25952256,505283,134348 -(1,2808:6630773,4812305:25952256,505283,134348 -g1,2808:3078558,4812305 -[1,2808:3078558,4812305:0,0,0 -(1,2808:3078558,2439708:0,1703936,0 -k1,2808:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2808:2537886,2439708:1179648,16384,0 +[1,2814:6630773,47279633:25952256,43253760,0 +[1,2814:6630773,4812305:25952256,786432,0 +(1,2814:6630773,4812305:25952256,505283,134348 +(1,2814:6630773,4812305:25952256,505283,134348 +g1,2814:3078558,4812305 +[1,2814:3078558,4812305:0,0,0 +(1,2814:3078558,2439708:0,1703936,0 +k1,2814:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2814:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2808:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2814:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2808:3078558,4812305:0,0,0 -(1,2808:3078558,2439708:0,1703936,0 -g1,2808:29030814,2439708 -g1,2808:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2808:36151628,1915420:16384,1179648,0 +[1,2814:3078558,4812305:0,0,0 +(1,2814:3078558,2439708:0,1703936,0 +g1,2814:29030814,2439708 +g1,2814:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2814:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2808:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2814:37855564,2439708:1179648,16384,0 ) ) -k1,2808:3078556,2439708:-34777008 +k1,2814:3078556,2439708:-34777008 ) ] -[1,2808:3078558,4812305:0,0,0 -(1,2808:3078558,49800853:0,16384,2228224 -k1,2808:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2808:2537886,49800853:1179648,16384,0 +[1,2814:3078558,4812305:0,0,0 +(1,2814:3078558,49800853:0,16384,2228224 +k1,2814:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2814:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2808:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2814:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2808:3078558,4812305:0,0,0 -(1,2808:3078558,49800853:0,16384,2228224 -g1,2808:29030814,49800853 -g1,2808:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2808:36151628,51504789:16384,1179648,0 +[1,2814:3078558,4812305:0,0,0 +(1,2814:3078558,49800853:0,16384,2228224 +g1,2814:29030814,49800853 +g1,2814:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2814:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2808:37855564,49800853:1179648,16384,0 -) -) -k1,2808:3078556,49800853:-34777008 -) -] -g1,2808:6630773,4812305 -k1,2808:19562994,4812305:12135303 -g1,2808:20949735,4812305 -g1,2808:21598541,4812305 -g1,2808:24912696,4812305 -g1,2808:27600327,4812305 -g1,2808:29010006,4812305 -) -) -] -[1,2808:6630773,45706769:25952256,40108032,0 -(1,2808:6630773,45706769:25952256,40108032,0 -(1,2808:6630773,45706769:0,0,0 -g1,2808:6630773,45706769 -) -[1,2808:6630773,45706769:25952256,40108032,0 -(1,2725:6630773,6254097:25952256,513147,134348 -h1,2724:6630773,6254097:983040,0,0 -k1,2724:10585753,6254097:220739 -k1,2724:12200443,6254097:220739 -k1,2724:14490809,6254097:220739 -k1,2724:17019726,6254097:220739 -k1,2724:17771962,6254097:220739 -k1,2724:19346675,6254097:220739 -k1,2724:22872395,6254097:220739 -k1,2724:24606360,6254097:220739 -k1,2724:25443137,6254097:220739 -k1,2724:26078698,6254097:220718 -k1,2724:28829127,6254097:220739 -k1,2724:32583029,6254097:0 -) -(1,2725:6630773,7095585:25952256,505283,126483 -k1,2724:9908425,7095585:200737 -k1,2724:11100721,7095585:200736 -k1,2724:14812222,7095585:200737 -k1,2724:18888757,7095585:200736 -k1,2724:22340080,7095585:200737 -k1,2724:24238855,7095585:200737 -k1,2724:26811339,7095585:200736 -k1,2724:27663504,7095585:200737 -k1,2724:28220100,7095585:200736 -k1,2724:30572384,7095585:200737 -k1,2724:32583029,7095585:0 -) -(1,2725:6630773,7937073:25952256,513147,122846 -k1,2724:7213095,7937073:226462 -(1,2724:7213095,7937073:0,452978,122846 -r1,2724:9681632,7937073:2468537,575824,122846 -k1,2724:7213095,7937073:-2468537 -) -(1,2724:7213095,7937073:2468537,452978,122846 -k1,2724:7213095,7937073:3277 -h1,2724:9678355,7937073:0,411205,112570 -) -k1,2724:9908094,7937073:226462 -k1,2724:12286104,7937073:226463 -k1,2724:12868426,7937073:226462 -k1,2724:15072765,7937073:226462 -k1,2724:16583733,7937073:226462 -k1,2724:17914477,7937073:226462 -k1,2724:18888706,7937073:226463 -k1,2724:20628394,7937073:226462 -k1,2724:21506284,7937073:226462 -k1,2724:23936722,7937073:226462 -k1,2724:25182269,7937073:226462 -k1,2724:28277898,7937073:226463 -k1,2724:29452011,7937073:226462 -k1,2724:31563944,7937073:226462 -k1,2724:32583029,7937073:0 -) -(1,2725:6630773,8778561:25952256,513147,126483 -g1,2724:8672874,8778561 -g1,2724:9531395,8778561 -g1,2724:10749709,8778561 -g1,2724:14702840,8778561 -g1,2724:16093514,8778561 -g1,2724:17499916,8778561 -(1,2724:17499916,8778561:0,414482,115847 -r1,2724:18913317,8778561:1413401,530329,115847 -k1,2724:17499916,8778561:-1413401 -) -(1,2724:17499916,8778561:1413401,414482,115847 -k1,2724:17499916,8778561:3277 -h1,2724:18910040,8778561:0,411205,112570 -) -k1,2725:32583029,8778561:13496042 -g1,2725:32583029,8778561 -) -v1,2727:6630773,10101319:0,393216,0 -(1,2756:6630773,28838681:25952256,19130578,616038 -g1,2756:6630773,28838681 -(1,2756:6630773,28838681:25952256,19130578,616038 -(1,2756:6630773,29454719:25952256,19746616,0 -[1,2756:6630773,29454719:25952256,19746616,0 -(1,2756:6630773,29428505:25952256,19694188,0 -r1,2756:6656987,29428505:26214,19694188,0 -[1,2756:6656987,29428505:25899828,19694188,0 -(1,2756:6656987,28838681:25899828,18514540,0 -[1,2756:7246811,28838681:24720180,18514540,0 -(1,2728:7246811,11411515:24720180,1087374,134348 -k1,2727:8660994,11411515:204480 -k1,2727:10062161,11411515:204480 -k1,2727:13258360,11411515:204480 -k1,2727:14078878,11411515:204480 -k1,2727:15486599,11411515:204480 -k1,2727:16917258,11411515:204480 -k1,2727:18281724,11411515:204479 -k1,2727:22519290,11411515:204480 -k1,2727:25950763,11411515:204480 -k1,2727:27578030,11411515:204480 -k1,2727:28441802,11411515:204480 -k1,2727:30715909,11411515:204480 -k1,2728:31966991,11411515:0 -) -(1,2728:7246811,12253003:24720180,505283,134348 -k1,2727:8917815,12253003:227246 -k1,2727:9750614,12253003:227246 -k1,2727:10996945,12253003:227246 -k1,2727:13293818,12253003:227246 -k1,2727:15498941,12253003:227246 -k1,2727:18504914,12253003:227246 -k1,2727:19493688,12253003:227246 -k1,2727:20076794,12253003:227246 -k1,2727:23641133,12253003:227246 -k1,2727:27622281,12253003:227246 -k1,2727:28953809,12253003:227246 -k1,2727:29928821,12253003:227246 -k1,2727:31966991,12253003:0 -) -(1,2728:7246811,13094491:24720180,513147,134348 -k1,2727:8108937,13094491:246088 -k1,2727:8710884,13094491:246087 -k1,2727:11641982,13094491:246088 -k1,2727:13079515,13094491:246088 -k1,2727:14344688,13094491:246088 -k1,2727:17102115,13094491:246087 -k1,2727:18861429,13094491:246088 -k1,2727:19793679,13094491:246088 -k1,2727:20395626,13094491:246087 -k1,2727:23745499,13094491:246088 -k1,2727:24939238,13094491:246088 -k1,2727:28379551,13094491:246088 -k1,2727:28981498,13094491:246087 -k1,2727:31307699,13094491:246088 -k1,2727:31966991,13094491:0 -) -(1,2728:7246811,13935979:24720180,513147,102891 -g1,2727:9456685,13935979 -g1,2727:11223535,13935979 -g1,2727:12441849,13935979 -g1,2727:14294551,13935979 -g1,2727:16645327,13935979 -g1,2727:17527441,13935979 -g1,2727:19294291,13935979 -g1,2727:19849380,13935979 -g1,2727:22810952,13935979 -k1,2728:31966991,13935979:7004492 -g1,2728:31966991,13935979 -) -v1,2730:7246811,15126445:0,393216,0 -(1,2739:7246811,18740974:24720180,4007745,196608 -g1,2739:7246811,18740974 -g1,2739:7246811,18740974 -g1,2739:7050203,18740974 -(1,2739:7050203,18740974:0,4007745,196608 -r1,2756:32163599,18740974:25113396,4204353,196608 -k1,2739:7050203,18740974:-25113396 -) -(1,2739:7050203,18740974:25113396,4007745,196608 -[1,2739:7246811,18740974:24720180,3811137,0 -(1,2732:7246811,15334063:24720180,404226,76021 -(1,2731:7246811,15334063:0,0,0 -g1,2731:7246811,15334063 -g1,2731:7246811,15334063 -g1,2731:6919131,15334063 -(1,2731:6919131,15334063:0,0,0 -) -g1,2731:7246811,15334063 -) -g1,2732:7879103,15334063 -g1,2732:8827541,15334063 -h1,2732:12937435,15334063:0,0,0 -k1,2732:31966991,15334063:19029556 -g1,2732:31966991,15334063 -) -(1,2733:7246811,16000241:24720180,404226,9436 -h1,2733:7246811,16000241:0,0,0 -g1,2733:7879103,16000241 -g1,2733:8827541,16000241 -h1,2733:10092124,16000241:0,0,0 -k1,2733:31966992,16000241:21874868 -g1,2733:31966992,16000241 -) -(1,2734:7246811,16666419:24720180,404226,6290 -h1,2734:7246811,16666419:0,0,0 -g1,2734:10092122,16666419 -g1,2734:11040560,16666419 -g1,2734:11672852,16666419 -g1,2734:12305144,16666419 -h1,2734:13253581,16666419:0,0,0 -k1,2734:31966991,16666419:18713410 -g1,2734:31966991,16666419 -) -(1,2735:7246811,17332597:24720180,404226,6290 -h1,2735:7246811,17332597:0,0,0 -h1,2735:9775976,17332597:0,0,0 -k1,2735:31966992,17332597:22191016 -g1,2735:31966992,17332597 -) -(1,2736:7246811,17998775:24720180,404226,76021 -h1,2736:7246811,17998775:0,0,0 -h1,2736:10724413,17998775:0,0,0 -k1,2736:31966991,17998775:21242578 -g1,2736:31966991,17998775 -) -(1,2737:7246811,18664953:24720180,404226,76021 -h1,2737:7246811,18664953:0,0,0 -h1,2737:10724413,18664953:0,0,0 -k1,2737:31966991,18664953:21242578 -g1,2737:31966991,18664953 -) -] -) -g1,2739:31966991,18740974 -g1,2739:7246811,18740974 -g1,2739:7246811,18740974 -g1,2739:31966991,18740974 -g1,2739:31966991,18740974 -) -h1,2739:7246811,18937582:0,0,0 -(1,2743:7246811,20303358:24720180,513147,134348 -h1,2742:7246811,20303358:983040,0,0 -k1,2742:11847200,20303358:358899 -k1,2742:14632897,20303358:358899 -k1,2742:16096078,20303358:358899 -k1,2742:17202743,20303358:358899 -k1,2742:20353476,20303358:358899 -k1,2742:22279996,20303358:358899 -k1,2742:22994755,20303358:358899 -k1,2742:25423281,20303358:358899 -k1,2742:27760057,20303358:358899 -k1,2742:28880484,20303358:358899 -k1,2742:31307699,20303358:358899 -k1,2742:31966991,20303358:0 -) -(1,2743:7246811,21144846:24720180,513147,115847 -g1,2742:10141536,21144846 -(1,2742:10141536,21144846:0,452978,115847 -r1,2756:12610073,21144846:2468537,568825,115847 -k1,2742:10141536,21144846:-2468537 -) -(1,2742:10141536,21144846:2468537,452978,115847 -k1,2742:10141536,21144846:3277 -h1,2742:12606796,21144846:0,411205,112570 -) -k1,2743:31966991,21144846:19183248 -g1,2743:31966991,21144846 -) -v1,2745:7246811,22335312:0,393216,0 -(1,2752:7246811,24617485:24720180,2675389,196608 -g1,2752:7246811,24617485 -g1,2752:7246811,24617485 -g1,2752:7050203,24617485 -(1,2752:7050203,24617485:0,2675389,196608 -r1,2756:32163599,24617485:25113396,2871997,196608 -k1,2752:7050203,24617485:-25113396 -) -(1,2752:7050203,24617485:25113396,2675389,196608 -[1,2752:7246811,24617485:24720180,2478781,0 -(1,2747:7246811,22542930:24720180,404226,76021 -(1,2746:7246811,22542930:0,0,0 -g1,2746:7246811,22542930 -g1,2746:7246811,22542930 -g1,2746:6919131,22542930 -(1,2746:6919131,22542930:0,0,0 -) -g1,2746:7246811,22542930 -) -g1,2747:9775977,22542930 -g1,2747:10724415,22542930 -g1,2747:13253580,22542930 -g1,2747:13885872,22542930 -h1,2747:15150455,22542930:0,0,0 -k1,2747:31966991,22542930:16816536 -g1,2747:31966991,22542930 -) -(1,2748:7246811,23209108:24720180,404226,6290 -h1,2748:7246811,23209108:0,0,0 -h1,2748:9459831,23209108:0,0,0 -k1,2748:31966991,23209108:22507160 -g1,2748:31966991,23209108 -) -(1,2749:7246811,23875286:24720180,404226,76021 -h1,2749:7246811,23875286:0,0,0 -h1,2749:10408268,23875286:0,0,0 -k1,2749:31966992,23875286:21558724 -g1,2749:31966992,23875286 -) -(1,2750:7246811,24541464:24720180,404226,76021 -h1,2750:7246811,24541464:0,0,0 -h1,2750:10408268,24541464:0,0,0 -k1,2750:31966992,24541464:21558724 -g1,2750:31966992,24541464 -) -] -) -g1,2752:31966991,24617485 -g1,2752:7246811,24617485 -g1,2752:7246811,24617485 -g1,2752:31966991,24617485 -g1,2752:31966991,24617485 -) -h1,2752:7246811,24814093:0,0,0 -(1,2756:7246811,26179869:24720180,505283,126483 -h1,2755:7246811,26179869:983040,0,0 -k1,2755:10165916,26179869:276693 -k1,2755:11823452,26179869:276692 -k1,2755:12751573,26179869:276693 -k1,2755:16693039,26179869:276693 -k1,2755:17988817,26179869:276693 -k1,2755:21257228,26179869:276692 -k1,2755:23562916,26179869:276693 -k1,2755:25713939,26179869:276693 -k1,2755:29344764,26179869:276692 -k1,2755:30613017,26179869:276693 -k1,2755:31966991,26179869:0 -) -(1,2756:7246811,27021357:24720180,513147,126483 -k1,2755:9460620,27021357:157289 -k1,2755:11131136,27021357:157290 -k1,2755:11904463,27021357:157289 -k1,2755:12476554,27021357:157248 -k1,2755:15163533,27021357:157289 -k1,2755:16701010,27021357:157289 -k1,2755:18539954,27021357:157290 -k1,2755:19644894,27021357:157289 -k1,2755:22157547,27021357:157289 -k1,2755:23811024,27021357:157290 -k1,2755:25252819,27021357:157289 -k1,2755:25941605,27021357:157289 -k1,2755:27493501,27021357:157290 -k1,2755:28302218,27021357:157289 -k1,2755:31966991,27021357:0 -) -(1,2756:7246811,27862845:24720180,513147,134348 -k1,2755:8894890,27862845:157790 -k1,2755:10223154,27862845:157791 -k1,2755:11372504,27862845:157790 -k1,2755:14022629,27862845:157791 -k1,2755:15574370,27862845:157790 -k1,2755:16751245,27862845:157790 -k1,2755:19648441,27862845:157791 -k1,2755:21565873,27862845:157790 -k1,2755:24658365,27862845:157790 -k1,2755:25282117,27862845:157791 -k1,2755:26610380,27862845:157790 -k1,2755:27583439,27862845:157791 -k1,2755:28807500,27862845:157790 -k1,2755:31966991,27862845:0 -) -(1,2756:7246811,28704333:24720180,513147,134348 -g1,2755:9142767,28704333 -g1,2755:11101638,28704333 -g1,2755:13052644,28704333 -g1,2755:13911165,28704333 -g1,2755:15807121,28704333 -g1,2755:17576593,28704333 -g1,2755:21292484,28704333 -g1,2755:22624175,28704333 -g1,2755:23571170,28704333 -g1,2755:27960116,28704333 -g1,2755:28810773,28704333 -k1,2756:31966991,28704333:1812075 -g1,2756:31966991,28704333 -) -] -) -] -r1,2756:32583029,29428505:26214,19694188,0 -) -] -) -) -g1,2756:32583029,28838681 -) -h1,2756:6630773,29454719:0,0,0 -(1,2759:6630773,30777478:25952256,513147,134348 -h1,2758:6630773,30777478:983040,0,0 -k1,2758:10563538,30777478:198524 -k1,2758:11866343,30777478:198523 -k1,2758:12812633,30777478:198524 -k1,2758:14524382,30777478:198523 -k1,2758:15532276,30777478:198524 -k1,2758:17586779,30777478:198523 -k1,2758:19084882,30777478:198524 -k1,2758:19942697,30777478:198523 -k1,2758:20911924,30777478:198524 -k1,2758:24756215,30777478:198523 -k1,2758:28568394,30777478:198524 -k1,2758:29394752,30777478:198523 -k1,2758:30612361,30777478:198524 -k1,2758:32583029,30777478:0 -) -(1,2759:6630773,31618966:25952256,513147,134348 -k1,2758:8876087,31618966:203212 -k1,2758:9947651,31618966:203212 -k1,2758:11243348,31618966:203212 -k1,2758:12465644,31618966:203211 -k1,2758:15883397,31618966:203212 -k1,2758:18833223,31618966:203212 -k1,2758:19845805,31618966:203212 -k1,2758:21068102,31618966:203212 -k1,2758:24164729,31618966:203212 -k1,2758:25667519,31618966:203211 -k1,2758:26530023,31618966:203212 -k1,2758:27752320,31618966:203212 -k1,2758:31931601,31618966:203212 -k1,2758:32583029,31618966:0 -) -(1,2759:6630773,32460454:25952256,505283,126483 -k1,2758:9065990,32460454:136869 -k1,2758:11213504,32460454:136869 -k1,2758:12725975,32460454:136870 -k1,2758:13475606,32460454:136869 -k1,2758:16201147,32460454:136869 -k1,2758:19282549,32460454:136869 -k1,2758:20035457,32460454:136870 -k1,2758:21191411,32460454:136869 -k1,2758:23479827,32460454:136869 -k1,2758:24997540,32460454:136869 -k1,2758:26471344,32460454:136870 -k1,2758:27994955,32460454:136869 -k1,2758:30083486,32460454:136869 -k1,2758:32583029,32460454:0 -) -(1,2759:6630773,33301942:25952256,513147,134348 -k1,2758:7494407,33301942:250872 -k1,2758:9051411,33301942:250871 -k1,2758:11053405,33301942:250872 -k1,2758:12376446,33301942:250872 -k1,2758:13085414,33301942:250871 -k1,2758:13867783,33301942:250872 -k1,2758:15347455,33301942:250872 -k1,2758:15954186,33301942:250871 -k1,2758:18329735,33301942:250872 -k1,2758:21652935,33301942:250872 -k1,2758:22563098,33301942:250871 -k1,2758:23833055,33301942:250872 -k1,2758:25592566,33301942:250872 -k1,2758:26502729,33301942:250871 -k1,2758:29493006,33301942:250872 -k1,2758:32583029,33301942:0 -) -(1,2759:6630773,34143430:25952256,513147,126483 -k1,2758:8838244,34143430:178476 -k1,2758:9486613,34143430:178476 -k1,2758:11765518,34143430:178476 -k1,2758:14473684,34143430:178476 -k1,2758:15671245,34143430:178476 -k1,2758:16970387,34143430:178476 -k1,2758:20750065,34143430:178475 -k1,2758:21587833,34143430:178476 -k1,2758:22785394,34143430:178476 -(1,2758:22785394,34143430:0,414482,115847 -r1,2758:23495372,34143430:709978,530329,115847 -k1,2758:22785394,34143430:-709978 -) -(1,2758:22785394,34143430:709978,414482,115847 -k1,2758:22785394,34143430:3277 -h1,2758:23492095,34143430:0,411205,112570 -) -k1,2758:23673848,34143430:178476 -k1,2758:26772608,34143430:178476 -k1,2758:29124258,34143430:178476 -k1,2758:29918772,34143430:178476 -k1,2758:31563944,34143430:178476 -k1,2758:32583029,34143430:0 -) -(1,2759:6630773,34984918:25952256,513147,134348 -k1,2758:9694472,34984918:170284 -k1,2758:11164335,34984918:170284 -k1,2758:12526064,34984918:170284 -k1,2758:13715433,34984918:170284 -k1,2758:17240505,34984918:170284 -k1,2758:18710368,34984918:170284 -k1,2758:19532081,34984918:170285 -k1,2758:20450131,34984918:170284 -k1,2758:23681602,34984918:170284 -k1,2758:25894643,34984918:170284 -k1,2758:27084012,34984918:170284 -k1,2758:30900064,34984918:170284 -k1,2758:32583029,34984918:0 -) -(1,2759:6630773,35826406:25952256,513147,134348 -k1,2758:8632523,35826406:165431 -k1,2758:9626985,35826406:165432 -k1,2758:11508150,35826406:165432 -k1,2758:12692666,35826406:165431 -k1,2758:15429074,35826406:165431 -k1,2758:16245934,35826406:165432 -k1,2758:17430451,35826406:165432 -k1,2758:19904060,35826406:165431 -k1,2758:21939889,35826406:165431 -k1,2758:22756749,35826406:165432 -k1,2758:25080937,35826406:165432 -k1,2758:26114720,35826406:165431 -k1,2758:27372637,35826406:165432 -k1,2758:30274851,35826406:165431 -k1,2758:32583029,35826406:0 -) -(1,2759:6630773,36667894:25952256,513147,126483 -g1,2758:8223953,36667894 -g1,2758:11185525,36667894 -g1,2758:13453070,36667894 -g1,2758:14599950,36667894 -g1,2758:16250801,36667894 -g1,2758:17109322,36667894 -g1,2758:19005278,36667894 -k1,2759:32583029,36667894:10412362 -g1,2759:32583029,36667894 -) -v1,2761:6630773,37815342:0,393216,0 -(1,2808:6630773,45510161:25952256,8088035,196608 -g1,2808:6630773,45510161 -g1,2808:6630773,45510161 -g1,2808:6434165,45510161 -(1,2808:6434165,45510161:0,8088035,196608 -r1,2808:32779637,45510161:26345472,8284643,196608 -k1,2808:6434165,45510161:-26345472 -) -(1,2808:6434165,45510161:26345472,8088035,196608 -[1,2808:6630773,45510161:25952256,7891427,0 -(1,2763:6630773,38007231:25952256,388497,9436 -(1,2762:6630773,38007231:0,0,0 -g1,2762:6630773,38007231 -g1,2762:6630773,38007231 -g1,2762:6303093,38007231 -(1,2762:6303093,38007231:0,0,0 -) -g1,2762:6630773,38007231 -) -g1,2763:7263065,38007231 -g1,2763:8211503,38007231 -h1,2763:9476086,38007231:0,0,0 -k1,2763:32583030,38007231:23106944 -g1,2763:32583030,38007231 -) -(1,2764:6630773,38673409:25952256,284164,4718 -h1,2764:6630773,38673409:0,0,0 -h1,2764:6946919,38673409:0,0,0 -k1,2764:32583029,38673409:25636110 -g1,2764:32583029,38673409 -) -(1,2768:6630773,39405123:25952256,404226,76021 -(1,2766:6630773,39405123:0,0,0 -g1,2766:6630773,39405123 -g1,2766:6630773,39405123 -g1,2766:6303093,39405123 -(1,2766:6303093,39405123:0,0,0 -) -g1,2766:6630773,39405123 -) -g1,2768:7579210,39405123 -g1,2768:7895356,39405123 -g1,2768:9159939,39405123 -g1,2768:9476085,39405123 -g1,2768:10108377,39405123 -g1,2768:10424523,39405123 -g1,2768:11056815,39405123 -g1,2768:11372961,39405123 -g1,2768:12005253,39405123 -g1,2768:12321399,39405123 -g1,2768:12953691,39405123 -g1,2768:13269837,39405123 -g1,2768:13902129,39405123 -g1,2768:14218275,39405123 -g1,2768:14850567,39405123 -g1,2768:15166713,39405123 -g1,2768:15799005,39405123 -g1,2768:16115151,39405123 -g1,2768:16747443,39405123 -g1,2768:17063589,39405123 -g1,2768:17695881,39405123 -h1,2768:18328172,39405123:0,0,0 -k1,2768:32583029,39405123:14254857 -g1,2768:32583029,39405123 -) -(1,2770:6630773,40726661:25952256,404226,76021 -(1,2769:6630773,40726661:0,0,0 -g1,2769:6630773,40726661 -g1,2769:6630773,40726661 -g1,2769:6303093,40726661 -(1,2769:6303093,40726661:0,0,0 -) -g1,2769:6630773,40726661 -) -g1,2770:8211502,40726661 -g1,2770:9159940,40726661 -h1,2770:9792231,40726661:0,0,0 -k1,2770:32583029,40726661:22790798 -g1,2770:32583029,40726661 -) -(1,2771:6630773,41392839:25952256,284164,4718 -h1,2771:6630773,41392839:0,0,0 -h1,2771:6946919,41392839:0,0,0 -k1,2771:32583029,41392839:25636110 -g1,2771:32583029,41392839 -) -(1,2775:6630773,42124553:25952256,404226,76021 -(1,2773:6630773,42124553:0,0,0 -g1,2773:6630773,42124553 -g1,2773:6630773,42124553 -g1,2773:6303093,42124553 -(1,2773:6303093,42124553:0,0,0 -) -g1,2773:6630773,42124553 -) -g1,2775:7579210,42124553 -g1,2775:7895356,42124553 -g1,2775:9159939,42124553 -g1,2775:10108376,42124553 -g1,2775:10424522,42124553 -g1,2775:11056814,42124553 -g1,2775:11372960,42124553 -g1,2775:12005252,42124553 -g1,2775:12321398,42124553 -g1,2775:12953690,42124553 -g1,2775:13269836,42124553 -g1,2775:13902128,42124553 -g1,2775:14218274,42124553 -g1,2775:14850566,42124553 -g1,2775:15166712,42124553 -g1,2775:15799004,42124553 -g1,2775:16115150,42124553 -g1,2775:16747442,42124553 -g1,2775:17063588,42124553 -g1,2775:17695880,42124553 -h1,2775:18328171,42124553:0,0,0 -k1,2775:32583029,42124553:14254858 -g1,2775:32583029,42124553 -) -(1,2777:6630773,43446091:25952256,404226,9436 -(1,2776:6630773,43446091:0,0,0 -g1,2776:6630773,43446091 -g1,2776:6630773,43446091 -g1,2776:6303093,43446091 -(1,2776:6303093,43446091:0,0,0 -) -g1,2776:6630773,43446091 -) -g1,2777:7263065,43446091 -g1,2777:8211503,43446091 -h1,2777:9476086,43446091:0,0,0 -k1,2777:32583030,43446091:23106944 -g1,2777:32583030,43446091 -) -(1,2778:6630773,44112269:25952256,404226,107478 -h1,2778:6630773,44112269:0,0,0 -g1,2778:9792231,44112269 -g1,2778:10740669,44112269 -g1,2778:12005252,44112269 -g1,2778:12637544,44112269 -k1,2778:12637544,44112269:11010 -h1,2778:15493865,44112269:0,0,0 -k1,2778:32583029,44112269:17089164 -g1,2778:32583029,44112269 -) -(1,2779:6630773,44778447:25952256,404226,6290 -h1,2779:6630773,44778447:0,0,0 -h1,2779:6946919,44778447:0,0,0 -k1,2779:32583029,44778447:25636110 -g1,2779:32583029,44778447 -) -(1,2783:6630773,45510161:25952256,404226,76021 -(1,2781:6630773,45510161:0,0,0 -g1,2781:6630773,45510161 -g1,2781:6630773,45510161 -g1,2781:6303093,45510161 -(1,2781:6303093,45510161:0,0,0 -) -g1,2781:6630773,45510161 -) -g1,2783:7579210,45510161 -g1,2783:7895356,45510161 -g1,2783:9159939,45510161 -g1,2783:9476085,45510161 -g1,2783:9792231,45510161 -g1,2783:10424523,45510161 -g1,2783:11689106,45510161 -g1,2783:12005252,45510161 -g1,2783:12321398,45510161 -g1,2783:12953690,45510161 -g1,2783:14218273,45510161 -g1,2783:14534419,45510161 -g1,2783:14850565,45510161 -g1,2783:15482857,45510161 -g1,2783:15799003,45510161 -g1,2783:16115149,45510161 -g1,2783:16747441,45510161 -g1,2783:17063587,45510161 -g1,2783:17379733,45510161 -g1,2783:18012025,45510161 -g1,2783:18328171,45510161 -g1,2783:18644317,45510161 -g1,2783:19276609,45510161 -g1,2783:19592755,45510161 -g1,2783:19908901,45510161 -g1,2783:20541193,45510161 -g1,2783:20857339,45510161 -h1,2783:21489630,45510161:0,0,0 -k1,2783:32583029,45510161:11093399 -g1,2783:32583029,45510161 -) -] -) -g1,2808:32583029,45510161 -g1,2808:6630773,45510161 -g1,2808:6630773,45510161 -g1,2808:32583029,45510161 -g1,2808:32583029,45510161 -) -] -(1,2808:32583029,45706769:0,0,0 -g1,2808:32583029,45706769 -) -) -] -(1,2808:6630773,47279633:25952256,0,0 -h1,2808:6630773,47279633:25952256,0,0 -) -] -h1,2808:4262630,4025873:0,0,0 -] -!23474 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2814:37855564,49800853:1179648,16384,0 +) +) +k1,2814:3078556,49800853:-34777008 +) +] +g1,2814:6630773,4812305 +k1,2814:19515153,4812305:12087462 +g1,2814:20901894,4812305 +g1,2814:21550700,4812305 +g1,2814:24864855,4812305 +g1,2814:27600327,4812305 +g1,2814:29010006,4812305 +) +) +] +[1,2814:6630773,45706769:25952256,40108032,0 +(1,2814:6630773,45706769:25952256,40108032,0 +(1,2814:6630773,45706769:0,0,0 +g1,2814:6630773,45706769 +) +[1,2814:6630773,45706769:25952256,40108032,0 +(1,2731:6630773,6254097:25952256,513147,134348 +h1,2730:6630773,6254097:983040,0,0 +k1,2730:10585753,6254097:220739 +k1,2730:12200443,6254097:220739 +k1,2730:14490809,6254097:220739 +k1,2730:17019726,6254097:220739 +k1,2730:17771962,6254097:220739 +k1,2730:19346675,6254097:220739 +k1,2730:22872395,6254097:220739 +k1,2730:24606360,6254097:220739 +k1,2730:25443137,6254097:220739 +k1,2730:26078698,6254097:220718 +k1,2730:28829127,6254097:220739 +k1,2730:32583029,6254097:0 +) +(1,2731:6630773,7095585:25952256,505283,126483 +k1,2730:9908425,7095585:200737 +k1,2730:11100721,7095585:200736 +k1,2730:14812222,7095585:200737 +k1,2730:18888757,7095585:200736 +k1,2730:22340080,7095585:200737 +k1,2730:24238855,7095585:200737 +k1,2730:26811339,7095585:200736 +k1,2730:27663504,7095585:200737 +k1,2730:28220100,7095585:200736 +k1,2730:30572384,7095585:200737 +k1,2730:32583029,7095585:0 +) +(1,2731:6630773,7937073:25952256,513147,122846 +k1,2730:7213095,7937073:226462 +(1,2730:7213095,7937073:0,452978,122846 +r1,2730:9681632,7937073:2468537,575824,122846 +k1,2730:7213095,7937073:-2468537 +) +(1,2730:7213095,7937073:2468537,452978,122846 +k1,2730:7213095,7937073:3277 +h1,2730:9678355,7937073:0,411205,112570 +) +k1,2730:9908094,7937073:226462 +k1,2730:12286104,7937073:226463 +k1,2730:12868426,7937073:226462 +k1,2730:15072765,7937073:226462 +k1,2730:16583733,7937073:226462 +k1,2730:17914477,7937073:226462 +k1,2730:18888706,7937073:226463 +k1,2730:20628394,7937073:226462 +k1,2730:21506284,7937073:226462 +k1,2730:23936722,7937073:226462 +k1,2730:25182269,7937073:226462 +k1,2730:28277898,7937073:226463 +k1,2730:29452011,7937073:226462 +k1,2730:31563944,7937073:226462 +k1,2730:32583029,7937073:0 +) +(1,2731:6630773,8778561:25952256,513147,126483 +g1,2730:8672874,8778561 +g1,2730:9531395,8778561 +g1,2730:10749709,8778561 +g1,2730:14702840,8778561 +g1,2730:16093514,8778561 +g1,2730:17499916,8778561 +(1,2730:17499916,8778561:0,414482,115847 +r1,2730:18913317,8778561:1413401,530329,115847 +k1,2730:17499916,8778561:-1413401 +) +(1,2730:17499916,8778561:1413401,414482,115847 +k1,2730:17499916,8778561:3277 +h1,2730:18910040,8778561:0,411205,112570 +) +k1,2731:32583029,8778561:13496042 +g1,2731:32583029,8778561 +) +v1,2733:6630773,10101319:0,393216,0 +(1,2762:6630773,28838681:25952256,19130578,616038 +g1,2762:6630773,28838681 +(1,2762:6630773,28838681:25952256,19130578,616038 +(1,2762:6630773,29454719:25952256,19746616,0 +[1,2762:6630773,29454719:25952256,19746616,0 +(1,2762:6630773,29428505:25952256,19694188,0 +r1,2762:6656987,29428505:26214,19694188,0 +[1,2762:6656987,29428505:25899828,19694188,0 +(1,2762:6656987,28838681:25899828,18514540,0 +[1,2762:7246811,28838681:24720180,18514540,0 +(1,2734:7246811,11411515:24720180,1087374,134348 +k1,2733:8660994,11411515:204480 +k1,2733:10062161,11411515:204480 +k1,2733:13258360,11411515:204480 +k1,2733:14078878,11411515:204480 +k1,2733:15486599,11411515:204480 +k1,2733:16917258,11411515:204480 +k1,2733:18281724,11411515:204479 +k1,2733:22519290,11411515:204480 +k1,2733:25950763,11411515:204480 +k1,2733:27578030,11411515:204480 +k1,2733:28441802,11411515:204480 +k1,2733:30715909,11411515:204480 +k1,2734:31966991,11411515:0 +) +(1,2734:7246811,12253003:24720180,505283,134348 +k1,2733:8917815,12253003:227246 +k1,2733:9750614,12253003:227246 +k1,2733:10996945,12253003:227246 +k1,2733:13293818,12253003:227246 +k1,2733:15498941,12253003:227246 +k1,2733:18504914,12253003:227246 +k1,2733:19493688,12253003:227246 +k1,2733:20076794,12253003:227246 +k1,2733:23641133,12253003:227246 +k1,2733:27622281,12253003:227246 +k1,2733:28953809,12253003:227246 +k1,2733:29928821,12253003:227246 +k1,2733:31966991,12253003:0 +) +(1,2734:7246811,13094491:24720180,513147,134348 +k1,2733:8108937,13094491:246088 +k1,2733:8710884,13094491:246087 +k1,2733:11641982,13094491:246088 +k1,2733:13079515,13094491:246088 +k1,2733:14344688,13094491:246088 +k1,2733:17102115,13094491:246087 +k1,2733:18861429,13094491:246088 +k1,2733:19793679,13094491:246088 +k1,2733:20395626,13094491:246087 +k1,2733:23745499,13094491:246088 +k1,2733:24939238,13094491:246088 +k1,2733:28379551,13094491:246088 +k1,2733:28981498,13094491:246087 +k1,2733:31307699,13094491:246088 +k1,2733:31966991,13094491:0 +) +(1,2734:7246811,13935979:24720180,513147,102891 +g1,2733:9456685,13935979 +g1,2733:11223535,13935979 +g1,2733:12441849,13935979 +g1,2733:14294551,13935979 +g1,2733:16645327,13935979 +g1,2733:17527441,13935979 +g1,2733:19294291,13935979 +g1,2733:19849380,13935979 +g1,2733:22810952,13935979 +k1,2734:31966991,13935979:7004492 +g1,2734:31966991,13935979 +) +v1,2736:7246811,15126445:0,393216,0 +(1,2745:7246811,18740974:24720180,4007745,196608 +g1,2745:7246811,18740974 +g1,2745:7246811,18740974 +g1,2745:7050203,18740974 +(1,2745:7050203,18740974:0,4007745,196608 +r1,2762:32163599,18740974:25113396,4204353,196608 +k1,2745:7050203,18740974:-25113396 +) +(1,2745:7050203,18740974:25113396,4007745,196608 +[1,2745:7246811,18740974:24720180,3811137,0 +(1,2738:7246811,15334063:24720180,404226,76021 +(1,2737:7246811,15334063:0,0,0 +g1,2737:7246811,15334063 +g1,2737:7246811,15334063 +g1,2737:6919131,15334063 +(1,2737:6919131,15334063:0,0,0 +) +g1,2737:7246811,15334063 +) +g1,2738:7879103,15334063 +g1,2738:8827541,15334063 +h1,2738:12937435,15334063:0,0,0 +k1,2738:31966991,15334063:19029556 +g1,2738:31966991,15334063 +) +(1,2739:7246811,16000241:24720180,404226,9436 +h1,2739:7246811,16000241:0,0,0 +g1,2739:7879103,16000241 +g1,2739:8827541,16000241 +h1,2739:10092124,16000241:0,0,0 +k1,2739:31966992,16000241:21874868 +g1,2739:31966992,16000241 +) +(1,2740:7246811,16666419:24720180,404226,6290 +h1,2740:7246811,16666419:0,0,0 +g1,2740:10092122,16666419 +g1,2740:11040560,16666419 +g1,2740:11672852,16666419 +g1,2740:12305144,16666419 +h1,2740:13253581,16666419:0,0,0 +k1,2740:31966991,16666419:18713410 +g1,2740:31966991,16666419 +) +(1,2741:7246811,17332597:24720180,404226,6290 +h1,2741:7246811,17332597:0,0,0 +h1,2741:9775976,17332597:0,0,0 +k1,2741:31966992,17332597:22191016 +g1,2741:31966992,17332597 +) +(1,2742:7246811,17998775:24720180,404226,76021 +h1,2742:7246811,17998775:0,0,0 +h1,2742:10724413,17998775:0,0,0 +k1,2742:31966991,17998775:21242578 +g1,2742:31966991,17998775 +) +(1,2743:7246811,18664953:24720180,404226,76021 +h1,2743:7246811,18664953:0,0,0 +h1,2743:10724413,18664953:0,0,0 +k1,2743:31966991,18664953:21242578 +g1,2743:31966991,18664953 +) +] +) +g1,2745:31966991,18740974 +g1,2745:7246811,18740974 +g1,2745:7246811,18740974 +g1,2745:31966991,18740974 +g1,2745:31966991,18740974 +) +h1,2745:7246811,18937582:0,0,0 +(1,2749:7246811,20303358:24720180,513147,134348 +h1,2748:7246811,20303358:983040,0,0 +k1,2748:11680540,20303358:192239 +k1,2748:14299577,20303358:192239 +k1,2748:15596098,20303358:192239 +k1,2748:16536103,20303358:192239 +k1,2748:19520176,20303358:192239 +k1,2748:21280035,20303358:192238 +k1,2748:21828134,20303358:192239 +k1,2748:24090000,20303358:192239 +k1,2748:26260116,20303358:192239 +k1,2748:27213883,20303358:192239 +k1,2748:29474438,20303358:192239 +k1,2748:30325969,20303358:192239 +k1,2749:31966991,20303358:0 +) +(1,2749:7246811,21144846:24720180,473825,115847 +g1,2748:8713506,21144846 +(1,2748:8713506,21144846:0,452978,115847 +r1,2762:11182043,21144846:2468537,568825,115847 +k1,2748:8713506,21144846:-2468537 +) +(1,2748:8713506,21144846:2468537,452978,115847 +k1,2748:8713506,21144846:3277 +h1,2748:11178766,21144846:0,411205,112570 +) +k1,2749:31966991,21144846:20611278 +g1,2749:31966991,21144846 +) +v1,2751:7246811,22335312:0,393216,0 +(1,2758:7246811,24617485:24720180,2675389,196608 +g1,2758:7246811,24617485 +g1,2758:7246811,24617485 +g1,2758:7050203,24617485 +(1,2758:7050203,24617485:0,2675389,196608 +r1,2762:32163599,24617485:25113396,2871997,196608 +k1,2758:7050203,24617485:-25113396 +) +(1,2758:7050203,24617485:25113396,2675389,196608 +[1,2758:7246811,24617485:24720180,2478781,0 +(1,2753:7246811,22542930:24720180,404226,76021 +(1,2752:7246811,22542930:0,0,0 +g1,2752:7246811,22542930 +g1,2752:7246811,22542930 +g1,2752:6919131,22542930 +(1,2752:6919131,22542930:0,0,0 +) +g1,2752:7246811,22542930 +) +g1,2753:9775977,22542930 +g1,2753:10724415,22542930 +g1,2753:13253580,22542930 +g1,2753:13885872,22542930 +h1,2753:15150455,22542930:0,0,0 +k1,2753:31966991,22542930:16816536 +g1,2753:31966991,22542930 +) +(1,2754:7246811,23209108:24720180,404226,6290 +h1,2754:7246811,23209108:0,0,0 +h1,2754:9459831,23209108:0,0,0 +k1,2754:31966991,23209108:22507160 +g1,2754:31966991,23209108 +) +(1,2755:7246811,23875286:24720180,404226,76021 +h1,2755:7246811,23875286:0,0,0 +h1,2755:10408268,23875286:0,0,0 +k1,2755:31966992,23875286:21558724 +g1,2755:31966992,23875286 +) +(1,2756:7246811,24541464:24720180,404226,76021 +h1,2756:7246811,24541464:0,0,0 +h1,2756:10408268,24541464:0,0,0 +k1,2756:31966992,24541464:21558724 +g1,2756:31966992,24541464 +) +] +) +g1,2758:31966991,24617485 +g1,2758:7246811,24617485 +g1,2758:7246811,24617485 +g1,2758:31966991,24617485 +g1,2758:31966991,24617485 +) +h1,2758:7246811,24814093:0,0,0 +(1,2762:7246811,26179869:24720180,505283,126483 +h1,2761:7246811,26179869:983040,0,0 +k1,2761:10165916,26179869:276693 +k1,2761:11823452,26179869:276692 +k1,2761:12751573,26179869:276693 +k1,2761:16693039,26179869:276693 +k1,2761:17988817,26179869:276693 +k1,2761:21257228,26179869:276692 +k1,2761:23562916,26179869:276693 +k1,2761:25713939,26179869:276693 +k1,2761:29344764,26179869:276692 +k1,2761:30613017,26179869:276693 +k1,2761:31966991,26179869:0 +) +(1,2762:7246811,27021357:24720180,513147,126483 +k1,2761:9460620,27021357:157289 +k1,2761:11131136,27021357:157290 +k1,2761:11904463,27021357:157289 +k1,2761:12476554,27021357:157248 +k1,2761:15163533,27021357:157289 +k1,2761:16701010,27021357:157289 +k1,2761:18539954,27021357:157290 +k1,2761:19644894,27021357:157289 +k1,2761:22157547,27021357:157289 +k1,2761:23811024,27021357:157290 +k1,2761:25252819,27021357:157289 +k1,2761:25941605,27021357:157289 +k1,2761:27493501,27021357:157290 +k1,2761:28302218,27021357:157289 +k1,2761:31966991,27021357:0 +) +(1,2762:7246811,27862845:24720180,513147,134348 +k1,2761:8894890,27862845:157790 +k1,2761:10223154,27862845:157791 +k1,2761:11372504,27862845:157790 +k1,2761:14022629,27862845:157791 +k1,2761:15574370,27862845:157790 +k1,2761:16751245,27862845:157790 +k1,2761:19648441,27862845:157791 +k1,2761:21565873,27862845:157790 +k1,2761:24658365,27862845:157790 +k1,2761:25282117,27862845:157791 +k1,2761:26610380,27862845:157790 +k1,2761:27583439,27862845:157791 +k1,2761:28807500,27862845:157790 +k1,2761:31966991,27862845:0 +) +(1,2762:7246811,28704333:24720180,513147,134348 +g1,2761:9142767,28704333 +g1,2761:11101638,28704333 +g1,2761:13052644,28704333 +g1,2761:13911165,28704333 +g1,2761:15807121,28704333 +g1,2761:17576593,28704333 +g1,2761:21292484,28704333 +g1,2761:22624175,28704333 +g1,2761:23571170,28704333 +g1,2761:27960116,28704333 +g1,2761:28810773,28704333 +k1,2762:31966991,28704333:1812075 +g1,2762:31966991,28704333 +) +] +) +] +r1,2762:32583029,29428505:26214,19694188,0 +) +] +) +) +g1,2762:32583029,28838681 +) +h1,2762:6630773,29454719:0,0,0 +(1,2765:6630773,30777478:25952256,513147,134348 +h1,2764:6630773,30777478:983040,0,0 +k1,2764:10563538,30777478:198524 +k1,2764:11866343,30777478:198523 +k1,2764:12812633,30777478:198524 +k1,2764:14524382,30777478:198523 +k1,2764:15532276,30777478:198524 +k1,2764:17586779,30777478:198523 +k1,2764:19084882,30777478:198524 +k1,2764:19942697,30777478:198523 +k1,2764:20911924,30777478:198524 +k1,2764:24756215,30777478:198523 +k1,2764:28568394,30777478:198524 +k1,2764:29394752,30777478:198523 +k1,2764:30612361,30777478:198524 +k1,2764:32583029,30777478:0 +) +(1,2765:6630773,31618966:25952256,513147,134348 +k1,2764:8947307,31618966:274432 +k1,2764:10090091,31618966:274432 +k1,2764:11457008,31618966:274432 +k1,2764:12750524,31618966:274431 +k1,2764:16239497,31618966:274432 +k1,2764:19260543,31618966:274432 +k1,2764:20344345,31618966:274432 +k1,2764:21637862,31618966:274432 +k1,2764:24805709,31618966:274432 +k1,2764:26379719,31618966:274431 +k1,2764:27313443,31618966:274432 +k1,2764:28606960,31618966:274432 +k1,2764:32583029,31618966:0 +) +(1,2765:6630773,32460454:25952256,505283,126483 +k1,2764:7561233,32460454:279032 +k1,2764:10138613,32460454:279032 +k1,2764:12428290,32460454:279032 +k1,2764:14082923,32460454:279032 +k1,2764:14974717,32460454:279032 +k1,2764:17842421,32460454:279032 +k1,2764:21065985,32460454:279031 +k1,2764:21961055,32460454:279032 +k1,2764:23259172,32460454:279032 +k1,2764:25689751,32460454:279032 +k1,2764:27349627,32460454:279032 +k1,2764:28965593,32460454:279032 +k1,2764:30631367,32460454:279032 +k1,2764:32583029,32460454:0 +) +(1,2765:6630773,33301942:25952256,513147,134348 +k1,2764:9420553,33301942:290237 +k1,2764:10323552,33301942:290237 +k1,2764:11919922,33301942:290237 +k1,2764:13961281,33301942:290237 +k1,2764:15323687,33301942:290237 +k1,2764:16072021,33301942:290237 +k1,2764:16893755,33301942:290237 +k1,2764:18412792,33301942:290237 +k1,2764:19058889,33301942:290237 +k1,2764:21473803,33301942:290237 +k1,2764:24836368,33301942:290237 +k1,2764:25785897,33301942:290237 +k1,2764:27095219,33301942:290237 +k1,2764:28894095,33301942:290237 +k1,2764:29843624,33301942:290237 +k1,2764:32583029,33301942:0 +) +(1,2765:6630773,34143430:25952256,513147,126483 +k1,2764:9944473,34143430:223677 +k1,2764:12197146,34143430:223678 +k1,2764:12890716,34143430:223677 +k1,2764:15214823,34143430:223678 +k1,2764:17968190,34143430:223677 +k1,2764:19210953,34143430:223678 +k1,2764:20555296,34143430:223677 +k1,2764:24380176,34143430:223677 +k1,2764:25263146,34143430:223678 +k1,2764:26505908,34143430:223677 +(1,2764:26505908,34143430:0,414482,115847 +r1,2764:27215886,34143430:709978,530329,115847 +k1,2764:26505908,34143430:-709978 +) +(1,2764:26505908,34143430:709978,414482,115847 +k1,2764:26505908,34143430:3277 +h1,2764:27212609,34143430:0,411205,112570 +) +k1,2764:27439564,34143430:223678 +k1,2764:30409855,34143430:223677 +k1,2764:32583029,34143430:0 +) +(1,2765:6630773,34984918:25952256,513147,134348 +k1,2764:7437621,34984918:190810 +k1,2764:9095128,34984918:190811 +k1,2764:10305023,34984918:190810 +k1,2764:13389249,34984918:190811 +k1,2764:14879638,34984918:190810 +k1,2764:16261893,34984918:190810 +k1,2764:17471789,34984918:190811 +k1,2764:21017387,34984918:190810 +k1,2764:22507776,34984918:190810 +k1,2764:24436602,34984918:190811 +k1,2764:26078379,34984918:190810 +k1,2764:29330377,34984918:190811 +k1,2764:31563944,34984918:190810 +k1,2764:32583029,34984918:0 +) +(1,2765:6630773,35826406:25952256,513147,134348 +k1,2764:10516907,35826406:240366 +k1,2764:12440237,35826406:240365 +k1,2764:14516922,35826406:240366 +k1,2764:15586318,35826406:240366 +k1,2764:17542416,35826406:240365 +k1,2764:18801867,35826406:240366 +k1,2764:21613210,35826406:240366 +k1,2764:22505004,35826406:240366 +k1,2764:23764454,35826406:240365 +k1,2764:26312998,35826406:240366 +k1,2764:28423762,35826406:240366 +k1,2764:29315555,35826406:240365 +k1,2764:31714677,35826406:240366 +k1,2764:32583029,35826406:0 +) +(1,2765:6630773,36667894:25952256,513147,126483 +g1,2764:7922487,36667894 +g1,2764:10858499,36667894 +g1,2764:13365906,36667894 +g1,2764:14959086,36667894 +g1,2764:17920658,36667894 +g1,2764:20188203,36667894 +g1,2764:21335083,36667894 +g1,2764:22985934,36667894 +g1,2764:23844455,36667894 +g1,2764:25740411,36667894 +k1,2765:32583029,36667894:3677229 +g1,2765:32583029,36667894 +) +v1,2767:6630773,37815342:0,393216,0 +(1,2814:6630773,45510161:25952256,8088035,196608 +g1,2814:6630773,45510161 +g1,2814:6630773,45510161 +g1,2814:6434165,45510161 +(1,2814:6434165,45510161:0,8088035,196608 +r1,2814:32779637,45510161:26345472,8284643,196608 +k1,2814:6434165,45510161:-26345472 +) +(1,2814:6434165,45510161:26345472,8088035,196608 +[1,2814:6630773,45510161:25952256,7891427,0 +(1,2769:6630773,38007231:25952256,388497,9436 +(1,2768:6630773,38007231:0,0,0 +g1,2768:6630773,38007231 +g1,2768:6630773,38007231 +g1,2768:6303093,38007231 +(1,2768:6303093,38007231:0,0,0 +) +g1,2768:6630773,38007231 +) +g1,2769:7263065,38007231 +g1,2769:8211503,38007231 +h1,2769:9476086,38007231:0,0,0 +k1,2769:32583030,38007231:23106944 +g1,2769:32583030,38007231 +) +(1,2770:6630773,38673409:25952256,284164,4718 +h1,2770:6630773,38673409:0,0,0 +h1,2770:6946919,38673409:0,0,0 +k1,2770:32583029,38673409:25636110 +g1,2770:32583029,38673409 +) +(1,2774:6630773,39405123:25952256,404226,76021 +(1,2772:6630773,39405123:0,0,0 +g1,2772:6630773,39405123 +g1,2772:6630773,39405123 +g1,2772:6303093,39405123 +(1,2772:6303093,39405123:0,0,0 +) +g1,2772:6630773,39405123 +) +g1,2774:7579210,39405123 +g1,2774:7895356,39405123 +g1,2774:9159939,39405123 +g1,2774:9476085,39405123 +g1,2774:10108377,39405123 +g1,2774:10424523,39405123 +g1,2774:11056815,39405123 +g1,2774:11372961,39405123 +g1,2774:12005253,39405123 +g1,2774:12321399,39405123 +g1,2774:12953691,39405123 +g1,2774:13269837,39405123 +g1,2774:13902129,39405123 +g1,2774:14218275,39405123 +g1,2774:14850567,39405123 +g1,2774:15166713,39405123 +g1,2774:15799005,39405123 +g1,2774:16115151,39405123 +g1,2774:16747443,39405123 +g1,2774:17063589,39405123 +g1,2774:17695881,39405123 +h1,2774:18328172,39405123:0,0,0 +k1,2774:32583029,39405123:14254857 +g1,2774:32583029,39405123 +) +(1,2776:6630773,40726661:25952256,404226,76021 +(1,2775:6630773,40726661:0,0,0 +g1,2775:6630773,40726661 +g1,2775:6630773,40726661 +g1,2775:6303093,40726661 +(1,2775:6303093,40726661:0,0,0 +) +g1,2775:6630773,40726661 +) +g1,2776:8211502,40726661 +g1,2776:9159940,40726661 +h1,2776:9792231,40726661:0,0,0 +k1,2776:32583029,40726661:22790798 +g1,2776:32583029,40726661 +) +(1,2777:6630773,41392839:25952256,284164,4718 +h1,2777:6630773,41392839:0,0,0 +h1,2777:6946919,41392839:0,0,0 +k1,2777:32583029,41392839:25636110 +g1,2777:32583029,41392839 +) +(1,2781:6630773,42124553:25952256,404226,76021 +(1,2779:6630773,42124553:0,0,0 +g1,2779:6630773,42124553 +g1,2779:6630773,42124553 +g1,2779:6303093,42124553 +(1,2779:6303093,42124553:0,0,0 +) +g1,2779:6630773,42124553 +) +g1,2781:7579210,42124553 +g1,2781:7895356,42124553 +g1,2781:9159939,42124553 +g1,2781:10108376,42124553 +g1,2781:10424522,42124553 +g1,2781:11056814,42124553 +g1,2781:11372960,42124553 +g1,2781:12005252,42124553 +g1,2781:12321398,42124553 +g1,2781:12953690,42124553 +g1,2781:13269836,42124553 +g1,2781:13902128,42124553 +g1,2781:14218274,42124553 +g1,2781:14850566,42124553 +g1,2781:15166712,42124553 +g1,2781:15799004,42124553 +g1,2781:16115150,42124553 +g1,2781:16747442,42124553 +g1,2781:17063588,42124553 +g1,2781:17695880,42124553 +h1,2781:18328171,42124553:0,0,0 +k1,2781:32583029,42124553:14254858 +g1,2781:32583029,42124553 +) +(1,2783:6630773,43446091:25952256,404226,9436 +(1,2782:6630773,43446091:0,0,0 +g1,2782:6630773,43446091 +g1,2782:6630773,43446091 +g1,2782:6303093,43446091 +(1,2782:6303093,43446091:0,0,0 +) +g1,2782:6630773,43446091 +) +g1,2783:7263065,43446091 +g1,2783:8211503,43446091 +h1,2783:9476086,43446091:0,0,0 +k1,2783:32583030,43446091:23106944 +g1,2783:32583030,43446091 +) +(1,2784:6630773,44112269:25952256,404226,107478 +h1,2784:6630773,44112269:0,0,0 +g1,2784:9792231,44112269 +g1,2784:10740669,44112269 +g1,2784:12005252,44112269 +g1,2784:12637544,44112269 +k1,2784:12637544,44112269:11010 +h1,2784:15493865,44112269:0,0,0 +k1,2784:32583029,44112269:17089164 +g1,2784:32583029,44112269 +) +(1,2785:6630773,44778447:25952256,404226,6290 +h1,2785:6630773,44778447:0,0,0 +h1,2785:6946919,44778447:0,0,0 +k1,2785:32583029,44778447:25636110 +g1,2785:32583029,44778447 +) +(1,2789:6630773,45510161:25952256,404226,76021 +(1,2787:6630773,45510161:0,0,0 +g1,2787:6630773,45510161 +g1,2787:6630773,45510161 +g1,2787:6303093,45510161 +(1,2787:6303093,45510161:0,0,0 +) +g1,2787:6630773,45510161 +) +g1,2789:7579210,45510161 +g1,2789:7895356,45510161 +g1,2789:9159939,45510161 +g1,2789:9476085,45510161 +g1,2789:9792231,45510161 +g1,2789:10424523,45510161 +g1,2789:11689106,45510161 +g1,2789:12005252,45510161 +g1,2789:12321398,45510161 +g1,2789:12953690,45510161 +g1,2789:14218273,45510161 +g1,2789:14534419,45510161 +g1,2789:14850565,45510161 +g1,2789:15482857,45510161 +g1,2789:15799003,45510161 +g1,2789:16115149,45510161 +g1,2789:16747441,45510161 +g1,2789:17063587,45510161 +g1,2789:17379733,45510161 +g1,2789:18012025,45510161 +g1,2789:18328171,45510161 +g1,2789:18644317,45510161 +g1,2789:19276609,45510161 +g1,2789:19592755,45510161 +g1,2789:19908901,45510161 +g1,2789:20541193,45510161 +g1,2789:20857339,45510161 +h1,2789:21489630,45510161:0,0,0 +k1,2789:32583029,45510161:11093399 +g1,2789:32583029,45510161 +) +] +) +g1,2814:32583029,45510161 +g1,2814:6630773,45510161 +g1,2814:6630773,45510161 +g1,2814:32583029,45510161 +g1,2814:32583029,45510161 +) +] +(1,2814:32583029,45706769:0,0,0 +g1,2814:32583029,45706769 +) +) +] +(1,2814:6630773,47279633:25952256,0,0 +h1,2814:6630773,47279633:25952256,0,0 +) +] +h1,2814:4262630,4025873:0,0,0 +] +!23484 }59 -Input:393:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:394:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:395:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:396:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:397:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:398:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:399:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:400:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:401:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {60 -[1,2913:4262630,47279633:28320399,43253760,0 -(1,2913:4262630,4025873:0,0,0 -[1,2913:-473657,4025873:25952256,0,0 -(1,2913:-473657,-710414:25952256,0,0 -h1,2913:-473657,-710414:0,0,0 -(1,2913:-473657,-710414:0,0,0 -(1,2913:-473657,-710414:0,0,0 -g1,2913:-473657,-710414 -(1,2913:-473657,-710414:65781,0,65781 -g1,2913:-407876,-710414 -[1,2913:-407876,-644633:0,0,0 +[1,2919:4262630,47279633:28320399,43253760,0 +(1,2919:4262630,4025873:0,0,0 +[1,2919:-473657,4025873:25952256,0,0 +(1,2919:-473657,-710414:25952256,0,0 +h1,2919:-473657,-710414:0,0,0 +(1,2919:-473657,-710414:0,0,0 +(1,2919:-473657,-710414:0,0,0 +g1,2919:-473657,-710414 +(1,2919:-473657,-710414:65781,0,65781 +g1,2919:-407876,-710414 +[1,2919:-407876,-644633:0,0,0 ] ) -k1,2913:-473657,-710414:-65781 +k1,2919:-473657,-710414:-65781 ) ) -k1,2913:25478599,-710414:25952256 -g1,2913:25478599,-710414 +k1,2919:25478599,-710414:25952256 +g1,2919:25478599,-710414 ) ] ) -[1,2913:6630773,47279633:25952256,43253760,0 -[1,2913:6630773,4812305:25952256,786432,0 -(1,2913:6630773,4812305:25952256,505283,126483 -(1,2913:6630773,4812305:25952256,505283,126483 -g1,2913:3078558,4812305 -[1,2913:3078558,4812305:0,0,0 -(1,2913:3078558,2439708:0,1703936,0 -k1,2913:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2913:2537886,2439708:1179648,16384,0 +[1,2919:6630773,47279633:25952256,43253760,0 +[1,2919:6630773,4812305:25952256,786432,0 +(1,2919:6630773,4812305:25952256,505283,126483 +(1,2919:6630773,4812305:25952256,505283,126483 +g1,2919:3078558,4812305 +[1,2919:3078558,4812305:0,0,0 +(1,2919:3078558,2439708:0,1703936,0 +k1,2919:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2919:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2913:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2919:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2913:3078558,4812305:0,0,0 -(1,2913:3078558,2439708:0,1703936,0 -g1,2913:29030814,2439708 -g1,2913:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2913:36151628,1915420:16384,1179648,0 +[1,2919:3078558,4812305:0,0,0 +(1,2919:3078558,2439708:0,1703936,0 +g1,2919:29030814,2439708 +g1,2919:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2919:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2913:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2919:37855564,2439708:1179648,16384,0 ) ) -k1,2913:3078556,2439708:-34777008 +k1,2919:3078556,2439708:-34777008 ) ] -[1,2913:3078558,4812305:0,0,0 -(1,2913:3078558,49800853:0,16384,2228224 -k1,2913:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2913:2537886,49800853:1179648,16384,0 +[1,2919:3078558,4812305:0,0,0 +(1,2919:3078558,49800853:0,16384,2228224 +k1,2919:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2919:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2913:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2919:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2913:3078558,4812305:0,0,0 -(1,2913:3078558,49800853:0,16384,2228224 -g1,2913:29030814,49800853 -g1,2913:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2913:36151628,51504789:16384,1179648,0 +[1,2919:3078558,4812305:0,0,0 +(1,2919:3078558,49800853:0,16384,2228224 +g1,2919:29030814,49800853 +g1,2919:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2919:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2913:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2919:37855564,49800853:1179648,16384,0 ) ) -k1,2913:3078556,49800853:-34777008 -) -] -g1,2913:6630773,4812305 -g1,2913:6630773,4812305 -g1,2913:8826229,4812305 -g1,2913:13247287,4812305 -k1,2913:31786111,4812305:18538824 -) -) -] -[1,2913:6630773,45706769:25952256,40108032,0 -(1,2913:6630773,45706769:25952256,40108032,0 -(1,2913:6630773,45706769:0,0,0 -g1,2913:6630773,45706769 -) -[1,2913:6630773,45706769:25952256,40108032,0 -v1,2808:6630773,6254097:0,393216,0 -(1,2808:6630773,15357293:25952256,9496412,196608 -g1,2808:6630773,15357293 -g1,2808:6630773,15357293 -g1,2808:6434165,15357293 -(1,2808:6434165,15357293:0,9496412,196608 -r1,2808:32779637,15357293:26345472,9693020,196608 -k1,2808:6434165,15357293:-26345472 -) -(1,2808:6434165,15357293:26345472,9496412,196608 -[1,2808:6630773,15357293:25952256,9299804,0 -(1,2785:6630773,6445986:25952256,388497,9436 -(1,2784:6630773,6445986:0,0,0 -g1,2784:6630773,6445986 -g1,2784:6630773,6445986 -g1,2784:6303093,6445986 -(1,2784:6303093,6445986:0,0,0 -) -g1,2784:6630773,6445986 -) -g1,2785:7263065,6445986 -g1,2785:8211503,6445986 -h1,2785:9476086,6445986:0,0,0 -k1,2785:32583030,6445986:23106944 -g1,2785:32583030,6445986 -) -(1,2786:6630773,7112164:25952256,404226,82312 -h1,2786:6630773,7112164:0,0,0 -g1,2786:9792231,7112164 -g1,2786:10740669,7112164 -g1,2786:12953690,7112164 -h1,2786:13902127,7112164:0,0,0 -k1,2786:32583029,7112164:18680902 -g1,2786:32583029,7112164 -) -(1,2787:6630773,7778342:25952256,284164,6290 -h1,2787:6630773,7778342:0,0,0 -h1,2787:6946919,7778342:0,0,0 -k1,2787:32583029,7778342:25636110 -g1,2787:32583029,7778342 -) -(1,2791:6630773,8510056:25952256,404226,76021 -(1,2789:6630773,8510056:0,0,0 -g1,2789:6630773,8510056 -g1,2789:6630773,8510056 -g1,2789:6303093,8510056 -(1,2789:6303093,8510056:0,0,0 -) -g1,2789:6630773,8510056 -) -g1,2791:7579210,8510056 -g1,2791:7895356,8510056 -g1,2791:9159939,8510056 -g1,2791:9476085,8510056 -g1,2791:9792231,8510056 -g1,2791:10424523,8510056 -g1,2791:11689106,8510056 -g1,2791:12005252,8510056 -g1,2791:12321398,8510056 -g1,2791:12953690,8510056 -g1,2791:13269836,8510056 -g1,2791:14218273,8510056 -g1,2791:14534419,8510056 -g1,2791:14850565,8510056 -g1,2791:15482857,8510056 -g1,2791:15799003,8510056 -g1,2791:16115149,8510056 -g1,2791:16747441,8510056 -g1,2791:17063587,8510056 -g1,2791:17379733,8510056 -g1,2791:18012025,8510056 -g1,2791:18328171,8510056 -g1,2791:18644317,8510056 -g1,2791:19276609,8510056 -g1,2791:19592755,8510056 -g1,2791:19908901,8510056 -g1,2791:20541193,8510056 -g1,2791:20857339,8510056 -h1,2791:21489630,8510056:0,0,0 -k1,2791:32583029,8510056:11093399 -g1,2791:32583029,8510056 -) -(1,2793:6630773,9831594:25952256,404226,9436 -(1,2792:6630773,9831594:0,0,0 -g1,2792:6630773,9831594 -g1,2792:6630773,9831594 -g1,2792:6303093,9831594 -(1,2792:6303093,9831594:0,0,0 -) -g1,2792:6630773,9831594 -) -g1,2793:7263065,9831594 -g1,2793:8211503,9831594 -h1,2793:9476086,9831594:0,0,0 -k1,2793:32583030,9831594:23106944 -g1,2793:32583030,9831594 -) -(1,2794:6630773,10497772:25952256,404226,107478 -h1,2794:6630773,10497772:0,0,0 -g1,2794:9159939,10497772 -g1,2794:10108377,10497772 -g1,2794:10740669,10497772 -g1,2794:11372961,10497772 -k1,2794:11372961,10497772:11010 -h1,2794:14229282,10497772:0,0,0 -k1,2794:32583030,10497772:18353748 -g1,2794:32583030,10497772 -) -(1,2795:6630773,11163950:25952256,404226,6290 -h1,2795:6630773,11163950:0,0,0 -h1,2795:6946919,11163950:0,0,0 -k1,2795:32583029,11163950:25636110 -g1,2795:32583029,11163950 -) -(1,2799:6630773,11895664:25952256,404226,76021 -(1,2797:6630773,11895664:0,0,0 -g1,2797:6630773,11895664 -g1,2797:6630773,11895664 -g1,2797:6303093,11895664 -(1,2797:6303093,11895664:0,0,0 -) -g1,2797:6630773,11895664 -) -g1,2799:7579210,11895664 -g1,2799:7895356,11895664 -g1,2799:9159939,11895664 -g1,2799:9792231,11895664 -g1,2799:10424523,11895664 -g1,2799:11056815,11895664 -g1,2799:11689107,11895664 -g1,2799:12321399,11895664 -g1,2799:12953691,11895664 -g1,2799:13585983,11895664 -g1,2799:14218275,11895664 -g1,2799:14850567,11895664 -h1,2799:15166713,11895664:0,0,0 -k1,2799:32583029,11895664:17416316 -g1,2799:32583029,11895664 -) -(1,2801:6630773,13217202:25952256,388497,9436 -(1,2800:6630773,13217202:0,0,0 -g1,2800:6630773,13217202 -g1,2800:6630773,13217202 -g1,2800:6303093,13217202 -(1,2800:6303093,13217202:0,0,0 -) -g1,2800:6630773,13217202 -) -g1,2801:7263065,13217202 -g1,2801:8211503,13217202 -h1,2801:9476086,13217202:0,0,0 -k1,2801:32583030,13217202:23106944 -g1,2801:32583030,13217202 -) -(1,2802:6630773,13883380:25952256,404226,107478 -h1,2802:6630773,13883380:0,0,0 -g1,2802:7263065,13883380 -g1,2802:8211503,13883380 -g1,2802:8843795,13883380 -g1,2802:9159941,13883380 -g1,2802:9792233,13883380 -g1,2802:10740670,13883380 -k1,2802:10740670,13883380:11010 -h1,2802:13596991,13883380:0,0,0 -k1,2802:32583029,13883380:18986038 -g1,2802:32583029,13883380 -) -(1,2803:6630773,14549558:25952256,284164,6290 -h1,2803:6630773,14549558:0,0,0 -h1,2803:6946919,14549558:0,0,0 -k1,2803:32583029,14549558:25636110 -g1,2803:32583029,14549558 -) -(1,2807:6630773,15281272:25952256,404226,76021 -(1,2805:6630773,15281272:0,0,0 -g1,2805:6630773,15281272 -g1,2805:6630773,15281272 -g1,2805:6303093,15281272 -(1,2805:6303093,15281272:0,0,0 -) -g1,2805:6630773,15281272 -) -g1,2807:7579210,15281272 -g1,2807:8843793,15281272 -h1,2807:9159939,15281272:0,0,0 -k1,2807:32583029,15281272:23423090 -g1,2807:32583029,15281272 -) -] -) -g1,2808:32583029,15357293 -g1,2808:6630773,15357293 -g1,2808:6630773,15357293 -g1,2808:32583029,15357293 -g1,2808:32583029,15357293 -) -h1,2808:6630773,15553901:0,0,0 -(1,2812:6630773,16919677:25952256,513147,134348 -h1,2811:6630773,16919677:983040,0,0 -k1,2811:8856376,16919677:289014 -k1,2811:10249671,16919677:289013 -k1,2811:11824501,16919677:289014 -k1,2811:13206000,16919677:289014 -k1,2811:17461907,16919677:289013 -k1,2811:18560291,16919677:289014 -k1,2811:20316001,16919677:289014 -k1,2811:22234894,16919677:289013 -k1,2811:23183200,16919677:289014 -k1,2811:24491299,16919677:289014 -k1,2811:28426080,16919677:289013 -k1,2811:31635378,16919677:289014 -k1,2811:32583029,16919677:0 -) -(1,2812:6630773,17761165:25952256,505283,126483 -g1,2811:9665089,17761165 -g1,2811:10515746,17761165 -g1,2811:12342889,17761165 -g1,2811:13714557,17761165 -k1,2812:32583029,17761165:15825635 -g1,2812:32583029,17761165 -) -v1,2814:6630773,18951631:0,393216,0 -(1,2823:6630773,21330797:25952256,2772382,196608 -g1,2823:6630773,21330797 -g1,2823:6630773,21330797 -g1,2823:6434165,21330797 -(1,2823:6434165,21330797:0,2772382,196608 -r1,2823:32779637,21330797:26345472,2968990,196608 -k1,2823:6434165,21330797:-26345472 -) -(1,2823:6434165,21330797:26345472,2772382,196608 -[1,2823:6630773,21330797:25952256,2575774,0 -(1,2816:6630773,19159249:25952256,404226,76021 -(1,2815:6630773,19159249:0,0,0 -g1,2815:6630773,19159249 -g1,2815:6630773,19159249 -g1,2815:6303093,19159249 -(1,2815:6303093,19159249:0,0,0 -) -g1,2815:6630773,19159249 -) -g1,2816:7263065,19159249 -g1,2816:8211503,19159249 -h1,2816:12321397,19159249:0,0,0 -k1,2816:32583029,19159249:20261632 -g1,2816:32583029,19159249 -) -(1,2817:6630773,19825427:25952256,404226,76021 -h1,2817:6630773,19825427:0,0,0 -g1,2817:8843794,19825427 -g1,2817:9792232,19825427 -h1,2817:11689107,19825427:0,0,0 -k1,2817:32583029,19825427:20893922 -g1,2817:32583029,19825427 -) -(1,2818:6630773,20491605:25952256,284164,4718 -h1,2818:6630773,20491605:0,0,0 -h1,2818:6946919,20491605:0,0,0 -k1,2818:32583029,20491605:25636110 -g1,2818:32583029,20491605 -) -(1,2822:6630773,21223319:25952256,410518,107478 -(1,2820:6630773,21223319:0,0,0 -g1,2820:6630773,21223319 -g1,2820:6630773,21223319 -g1,2820:6303093,21223319 -(1,2820:6303093,21223319:0,0,0 -) -g1,2820:6630773,21223319 -) -g1,2822:7579210,21223319 -g1,2822:7895356,21223319 -g1,2822:9159939,21223319 -g1,2822:10424522,21223319 -g1,2822:11689105,21223319 -g1,2822:12953688,21223319 -g1,2822:14218271,21223319 -g1,2822:15482854,21223319 -g1,2822:16747437,21223319 -g1,2822:18012020,21223319 -g1,2822:19276603,21223319 -g1,2822:20541186,21223319 -h1,2822:21489623,21223319:0,0,0 -k1,2822:32583029,21223319:11093406 -g1,2822:32583029,21223319 -) -] -) -g1,2823:32583029,21330797 -g1,2823:6630773,21330797 -g1,2823:6630773,21330797 -g1,2823:32583029,21330797 -g1,2823:32583029,21330797 -) -h1,2823:6630773,21527405:0,0,0 -v1,2827:6630773,23417469:0,393216,0 -(1,2842:6630773,34067121:25952256,11042868,616038 -g1,2842:6630773,34067121 -(1,2842:6630773,34067121:25952256,11042868,616038 -(1,2842:6630773,34683159:25952256,11658906,0 -[1,2842:6630773,34683159:25952256,11658906,0 -(1,2842:6630773,34656945:25952256,11606478,0 -r1,2842:6656987,34656945:26214,11606478,0 -[1,2842:6656987,34656945:25899828,11606478,0 -(1,2842:6656987,34067121:25899828,10426830,0 -[1,2842:7246811,34067121:24720180,10426830,0 -(1,2828:7246811,24727665:24720180,1087374,134348 -k1,2827:8661977,24727665:205463 -k1,2827:9765283,24727665:205463 -k1,2827:11313579,24727665:205463 -k1,2827:12912993,24727665:205463 -k1,2827:16425403,24727665:205463 -k1,2827:17282294,24727665:205463 -k1,2827:18946588,24727665:205463 -k1,2827:21319327,24727665:205463 -k1,2827:24117394,24727665:205463 -k1,2827:26085775,24727665:205463 -k1,2827:29050959,24727665:205463 -k1,2827:30586803,24727665:205463 -k1,2827:31966991,24727665:0 -) -(1,2828:7246811,25569153:24720180,513147,134348 -k1,2827:9058308,25569153:215040 -k1,2827:10464793,25569153:215040 -k1,2827:12010214,25569153:215040 -k1,2827:13605442,25569153:215040 -k1,2827:14924764,25569153:215040 -k1,2827:15887570,25569153:215040 -k1,2827:17789507,25569153:215040 -k1,2827:19137009,25569153:215040 -k1,2827:20099814,25569153:215039 -k1,2827:21668828,25569153:215040 -k1,2827:23861089,25569153:215040 -k1,2827:24692167,25569153:215040 -k1,2827:27701007,25569153:215040 -k1,2827:29086520,25569153:215040 -k1,2827:30116828,25569153:215040 -k1,2827:30947906,25569153:215040 -k1,2827:31966991,25569153:0 -) -(1,2828:7246811,26410641:24720180,513147,126483 -k1,2827:9385906,26410641:152043 -k1,2827:10931901,26410641:152044 -k1,2827:11672457,26410641:152043 -k1,2827:13314790,26410641:152044 -k1,2827:14485918,26410641:152043 -k1,2827:17652618,26410641:152044 -k1,2827:20466078,26410641:152043 -k1,2827:22486553,26410641:152044 -k1,2827:24953983,26410641:152043 -k1,2827:26125112,26410641:152044 -k1,2827:27930629,26410641:152044 -k1,2827:30207349,26410641:152043 -k1,2827:31966991,26410641:0 -) -(1,2828:7246811,27252129:24720180,513147,134348 -k1,2827:8633178,27252129:157567 -k1,2827:10574635,27252129:157567 -k1,2827:11190300,27252129:157568 -k1,2827:12206389,27252129:157567 -k1,2827:13125484,27252129:157567 -k1,2827:14315243,27252129:157567 -k1,2827:16024703,27252129:157567 -k1,2827:17201356,27252129:157568 -k1,2827:19600254,27252129:157567 -k1,2827:22944181,27252129:157567 -k1,2827:23717786,27252129:157567 -k1,2827:24894439,27252129:157568 -k1,2827:27022674,27252129:157567 -k1,2827:29222343,27252129:157567 -k1,2828:31966991,27252129:0 -) -(1,2828:7246811,28093617:24720180,513147,134348 -(1,2827:7246811,28093617:0,414482,115847 -r1,2842:7605077,28093617:358266,530329,115847 -k1,2827:7246811,28093617:-358266 -) -(1,2827:7246811,28093617:358266,414482,115847 -k1,2827:7246811,28093617:3277 -h1,2827:7601800,28093617:0,411205,112570 -) -k1,2827:8065626,28093617:286879 -k1,2827:9251004,28093617:286879 -k1,2827:11235922,28093617:286880 -k1,2827:14296940,28093617:286879 -k1,2827:17740033,28093617:286879 -k1,2827:18686204,28093617:286879 -k1,2827:20176325,28093617:286880 -k1,2827:23124621,28093617:286879 -k1,2827:24581973,28093617:286879 -k1,2827:26001314,28093617:286879 -k1,2827:27818460,28093617:286880 -k1,2827:28756767,28093617:286879 -k1,2827:31608725,28093617:286879 -(1,2827:31608725,28093617:0,414482,115847 -r1,2842:31966991,28093617:358266,530329,115847 -k1,2827:31608725,28093617:-358266 -) -(1,2827:31608725,28093617:358266,414482,115847 -k1,2827:31608725,28093617:3277 -h1,2827:31963714,28093617:0,411205,112570 -) -k1,2827:31966991,28093617:0 -) -(1,2828:7246811,28935105:24720180,513147,134348 -k1,2827:8235346,28935105:227007 -k1,2827:11517641,28935105:227007 -k1,2827:12763732,28935105:227006 -k1,2827:14296872,28935105:227007 -k1,2827:17883910,28935105:227007 -k1,2827:19562539,28935105:227007 -k1,2827:21214953,28935105:227006 -k1,2827:22612433,28935105:227007 -k1,2827:23957484,28935105:227007 -k1,2827:24540351,28935105:227007 -k1,2827:27593269,28935105:227006 -k1,2827:28479568,28935105:227007 -k1,2827:29725660,28935105:227007 -k1,2827:31966991,28935105:0 -) -(1,2828:7246811,29776593:24720180,426639,7863 -k1,2828:31966990,29776593:21360148 -g1,2828:31966990,29776593 -) -v1,2830:7246811,30967059:0,393216,0 -(1,2839:7246811,33346225:24720180,2772382,196608 -g1,2839:7246811,33346225 -g1,2839:7246811,33346225 -g1,2839:7050203,33346225 -(1,2839:7050203,33346225:0,2772382,196608 -r1,2842:32163599,33346225:25113396,2968990,196608 -k1,2839:7050203,33346225:-25113396 -) -(1,2839:7050203,33346225:25113396,2772382,196608 -[1,2839:7246811,33346225:24720180,2575774,0 -(1,2832:7246811,31174677:24720180,404226,76021 -(1,2831:7246811,31174677:0,0,0 -g1,2831:7246811,31174677 -g1,2831:7246811,31174677 -g1,2831:6919131,31174677 -(1,2831:6919131,31174677:0,0,0 -) -g1,2831:7246811,31174677 -) -g1,2832:7879103,31174677 -g1,2832:8827541,31174677 -h1,2832:12937435,31174677:0,0,0 -k1,2832:31966991,31174677:19029556 -g1,2832:31966991,31174677 -) -(1,2833:7246811,31840855:24720180,404226,82312 -h1,2833:7246811,31840855:0,0,0 -g1,2833:9459832,31840855 -g1,2833:10408270,31840855 -k1,2833:10408270,31840855:0 -h1,2833:15466601,31840855:0,0,0 -k1,2833:31966991,31840855:16500390 -g1,2833:31966991,31840855 -) -(1,2834:7246811,32507033:24720180,284164,4718 -h1,2834:7246811,32507033:0,0,0 -h1,2834:7562957,32507033:0,0,0 -k1,2834:31966991,32507033:24404034 -g1,2834:31966991,32507033 -) -(1,2838:7246811,33238747:24720180,410518,107478 -(1,2836:7246811,33238747:0,0,0 -g1,2836:7246811,33238747 -g1,2836:7246811,33238747 -g1,2836:6919131,33238747 -(1,2836:6919131,33238747:0,0,0 -) -g1,2836:7246811,33238747 -) -g1,2838:8195248,33238747 -g1,2838:8511394,33238747 -g1,2838:9775977,33238747 -g1,2838:11040560,33238747 -g1,2838:12305143,33238747 -g1,2838:13569726,33238747 -g1,2838:14834309,33238747 -g1,2838:16098892,33238747 -g1,2838:17363475,33238747 -g1,2838:18628058,33238747 -g1,2838:19892641,33238747 -g1,2838:21157224,33238747 -h1,2838:22105661,33238747:0,0,0 -k1,2838:31966991,33238747:9861330 -g1,2838:31966991,33238747 -) -] -) -g1,2839:31966991,33346225 -g1,2839:7246811,33346225 -g1,2839:7246811,33346225 -g1,2839:31966991,33346225 -g1,2839:31966991,33346225 -) -h1,2839:7246811,33542833:0,0,0 -] -) -] -r1,2842:32583029,34656945:26214,11606478,0 -) -] -) -) -g1,2842:32583029,34067121 -) -h1,2842:6630773,34683159:0,0,0 -v1,2844:6630773,36048935:0,393216,0 -(1,2913:6630773,41767565:25952256,6111846,589824 -g1,2913:6630773,41767565 -(1,2913:6630773,41767565:25952256,6111846,589824 -(1,2913:6630773,42357389:25952256,6701670,0 -[1,2913:6630773,42357389:25952256,6701670,0 -(1,2913:6630773,42357389:25952256,6675456,0 -r1,2913:6656987,42357389:26214,6675456,0 -[1,2913:6656987,42357389:25899828,6675456,0 -(1,2913:6656987,41767565:25899828,5495808,0 -[1,2913:7246811,41767565:24720180,5495808,0 -(1,2846:7246811,37433642:24720180,1161885,196608 -(1,2844:7246811,37433642:0,1161885,196608 -r1,2913:8794447,37433642:1547636,1358493,196608 -k1,2844:7246811,37433642:-1547636 -) -(1,2844:7246811,37433642:1547636,1161885,196608 -) -k1,2844:8931171,37433642:136724 -k1,2844:8931171,37433642:0 -k1,2845:8931171,37433642:0 -k1,2845:9695730,37433642:136724 -k1,2845:10420967,37433642:136724 -k1,2845:13297096,37433642:136724 -k1,2845:14827771,37433642:136724 -k1,2845:18139714,37433642:136724 -k1,2845:20703237,37433642:136725 -k1,2845:21944243,37433642:136724 -k1,2845:22828733,37433642:136724 -k1,2845:24542909,37433642:136724 -k1,2845:26073584,37433642:136724 -(1,2845:26073584,37433642:0,452978,122846 -r1,2913:28542121,37433642:2468537,575824,122846 -k1,2845:26073584,37433642:-2468537 -) -(1,2845:26073584,37433642:2468537,452978,122846 -k1,2845:26073584,37433642:3277 -h1,2845:28538844,37433642:0,411205,112570 -) -k1,2845:28678845,37433642:136724 -k1,2845:29498454,37433642:136724 -(1,2845:29498454,37433642:0,452978,115847 -r1,2913:31966991,37433642:2468537,568825,115847 -k1,2845:29498454,37433642:-2468537 -) -(1,2845:29498454,37433642:2468537,452978,115847 -k1,2845:29498454,37433642:3277 -h1,2845:31963714,37433642:0,411205,112570 -) -k1,2845:31966991,37433642:0 -) -(1,2846:7246811,38275130:24720180,513147,134348 -k1,2845:9638547,38275130:207421 -k1,2845:12543431,38275130:207422 -k1,2845:14761497,38275130:207421 -k1,2845:16073200,38275130:207421 -k1,2845:17028387,38275130:207421 -k1,2845:19181573,38275130:207422 -k1,2845:20461163,38275130:207421 -k1,2845:21616235,38275130:207421 -k1,2845:24736731,38275130:207421 -k1,2845:26319754,38275130:207422 -k1,2845:28757365,38275130:207421 -k1,2845:30975431,38275130:207421 -k1,2845:31966991,38275130:0 -) -(1,2846:7246811,39116618:24720180,513147,134348 -k1,2845:11331776,39116618:298295 -k1,2845:16150744,39116618:298294 -(1,2845:16150744,39116618:0,452978,115847 -r1,2913:18267569,39116618:2116825,568825,115847 -k1,2845:16150744,39116618:-2116825 -) -(1,2845:16150744,39116618:2116825,452978,115847 -k1,2845:16150744,39116618:3277 -h1,2845:18264292,39116618:0,411205,112570 +k1,2919:3078556,49800853:-34777008 +) +] +g1,2919:6630773,4812305 +g1,2919:6630773,4812305 +g1,2919:8826229,4812305 +g1,2919:13247287,4812305 +k1,2919:31786111,4812305:18538824 +) +) +] +[1,2919:6630773,45706769:25952256,40108032,0 +(1,2919:6630773,45706769:25952256,40108032,0 +(1,2919:6630773,45706769:0,0,0 +g1,2919:6630773,45706769 +) +[1,2919:6630773,45706769:25952256,40108032,0 +v1,2814:6630773,6254097:0,393216,0 +(1,2814:6630773,15357293:25952256,9496412,196608 +g1,2814:6630773,15357293 +g1,2814:6630773,15357293 +g1,2814:6434165,15357293 +(1,2814:6434165,15357293:0,9496412,196608 +r1,2814:32779637,15357293:26345472,9693020,196608 +k1,2814:6434165,15357293:-26345472 +) +(1,2814:6434165,15357293:26345472,9496412,196608 +[1,2814:6630773,15357293:25952256,9299804,0 +(1,2791:6630773,6445986:25952256,388497,9436 +(1,2790:6630773,6445986:0,0,0 +g1,2790:6630773,6445986 +g1,2790:6630773,6445986 +g1,2790:6303093,6445986 +(1,2790:6303093,6445986:0,0,0 +) +g1,2790:6630773,6445986 +) +g1,2791:7263065,6445986 +g1,2791:8211503,6445986 +h1,2791:9476086,6445986:0,0,0 +k1,2791:32583030,6445986:23106944 +g1,2791:32583030,6445986 +) +(1,2792:6630773,7112164:25952256,404226,82312 +h1,2792:6630773,7112164:0,0,0 +g1,2792:9792231,7112164 +g1,2792:10740669,7112164 +g1,2792:12953690,7112164 +h1,2792:13902127,7112164:0,0,0 +k1,2792:32583029,7112164:18680902 +g1,2792:32583029,7112164 +) +(1,2793:6630773,7778342:25952256,284164,6290 +h1,2793:6630773,7778342:0,0,0 +h1,2793:6946919,7778342:0,0,0 +k1,2793:32583029,7778342:25636110 +g1,2793:32583029,7778342 +) +(1,2797:6630773,8510056:25952256,404226,76021 +(1,2795:6630773,8510056:0,0,0 +g1,2795:6630773,8510056 +g1,2795:6630773,8510056 +g1,2795:6303093,8510056 +(1,2795:6303093,8510056:0,0,0 +) +g1,2795:6630773,8510056 +) +g1,2797:7579210,8510056 +g1,2797:7895356,8510056 +g1,2797:9159939,8510056 +g1,2797:9476085,8510056 +g1,2797:9792231,8510056 +g1,2797:10424523,8510056 +g1,2797:11689106,8510056 +g1,2797:12005252,8510056 +g1,2797:12321398,8510056 +g1,2797:12953690,8510056 +g1,2797:13269836,8510056 +g1,2797:14218273,8510056 +g1,2797:14534419,8510056 +g1,2797:14850565,8510056 +g1,2797:15482857,8510056 +g1,2797:15799003,8510056 +g1,2797:16115149,8510056 +g1,2797:16747441,8510056 +g1,2797:17063587,8510056 +g1,2797:17379733,8510056 +g1,2797:18012025,8510056 +g1,2797:18328171,8510056 +g1,2797:18644317,8510056 +g1,2797:19276609,8510056 +g1,2797:19592755,8510056 +g1,2797:19908901,8510056 +g1,2797:20541193,8510056 +g1,2797:20857339,8510056 +h1,2797:21489630,8510056:0,0,0 +k1,2797:32583029,8510056:11093399 +g1,2797:32583029,8510056 +) +(1,2799:6630773,9831594:25952256,404226,9436 +(1,2798:6630773,9831594:0,0,0 +g1,2798:6630773,9831594 +g1,2798:6630773,9831594 +g1,2798:6303093,9831594 +(1,2798:6303093,9831594:0,0,0 +) +g1,2798:6630773,9831594 +) +g1,2799:7263065,9831594 +g1,2799:8211503,9831594 +h1,2799:9476086,9831594:0,0,0 +k1,2799:32583030,9831594:23106944 +g1,2799:32583030,9831594 +) +(1,2800:6630773,10497772:25952256,404226,107478 +h1,2800:6630773,10497772:0,0,0 +g1,2800:9159939,10497772 +g1,2800:10108377,10497772 +g1,2800:10740669,10497772 +g1,2800:11372961,10497772 +k1,2800:11372961,10497772:11010 +h1,2800:14229282,10497772:0,0,0 +k1,2800:32583030,10497772:18353748 +g1,2800:32583030,10497772 +) +(1,2801:6630773,11163950:25952256,404226,6290 +h1,2801:6630773,11163950:0,0,0 +h1,2801:6946919,11163950:0,0,0 +k1,2801:32583029,11163950:25636110 +g1,2801:32583029,11163950 +) +(1,2805:6630773,11895664:25952256,404226,76021 +(1,2803:6630773,11895664:0,0,0 +g1,2803:6630773,11895664 +g1,2803:6630773,11895664 +g1,2803:6303093,11895664 +(1,2803:6303093,11895664:0,0,0 +) +g1,2803:6630773,11895664 +) +g1,2805:7579210,11895664 +g1,2805:7895356,11895664 +g1,2805:9159939,11895664 +g1,2805:9792231,11895664 +g1,2805:10424523,11895664 +g1,2805:11056815,11895664 +g1,2805:11689107,11895664 +g1,2805:12321399,11895664 +g1,2805:12953691,11895664 +g1,2805:13585983,11895664 +g1,2805:14218275,11895664 +g1,2805:14850567,11895664 +h1,2805:15166713,11895664:0,0,0 +k1,2805:32583029,11895664:17416316 +g1,2805:32583029,11895664 +) +(1,2807:6630773,13217202:25952256,388497,9436 +(1,2806:6630773,13217202:0,0,0 +g1,2806:6630773,13217202 +g1,2806:6630773,13217202 +g1,2806:6303093,13217202 +(1,2806:6303093,13217202:0,0,0 +) +g1,2806:6630773,13217202 +) +g1,2807:7263065,13217202 +g1,2807:8211503,13217202 +h1,2807:9476086,13217202:0,0,0 +k1,2807:32583030,13217202:23106944 +g1,2807:32583030,13217202 +) +(1,2808:6630773,13883380:25952256,404226,107478 +h1,2808:6630773,13883380:0,0,0 +g1,2808:7263065,13883380 +g1,2808:8211503,13883380 +g1,2808:8843795,13883380 +g1,2808:9159941,13883380 +g1,2808:9792233,13883380 +g1,2808:10740670,13883380 +k1,2808:10740670,13883380:11010 +h1,2808:13596991,13883380:0,0,0 +k1,2808:32583029,13883380:18986038 +g1,2808:32583029,13883380 +) +(1,2809:6630773,14549558:25952256,284164,6290 +h1,2809:6630773,14549558:0,0,0 +h1,2809:6946919,14549558:0,0,0 +k1,2809:32583029,14549558:25636110 +g1,2809:32583029,14549558 +) +(1,2813:6630773,15281272:25952256,404226,76021 +(1,2811:6630773,15281272:0,0,0 +g1,2811:6630773,15281272 +g1,2811:6630773,15281272 +g1,2811:6303093,15281272 +(1,2811:6303093,15281272:0,0,0 +) +g1,2811:6630773,15281272 +) +g1,2813:7579210,15281272 +g1,2813:8843793,15281272 +h1,2813:9159939,15281272:0,0,0 +k1,2813:32583029,15281272:23423090 +g1,2813:32583029,15281272 +) +] +) +g1,2814:32583029,15357293 +g1,2814:6630773,15357293 +g1,2814:6630773,15357293 +g1,2814:32583029,15357293 +g1,2814:32583029,15357293 +) +h1,2814:6630773,15553901:0,0,0 +(1,2818:6630773,16919677:25952256,513147,134348 +h1,2817:6630773,16919677:983040,0,0 +k1,2817:8856376,16919677:289014 +k1,2817:10249671,16919677:289013 +k1,2817:11824501,16919677:289014 +k1,2817:13206000,16919677:289014 +k1,2817:17461907,16919677:289013 +k1,2817:18560291,16919677:289014 +k1,2817:20316001,16919677:289014 +k1,2817:22234894,16919677:289013 +k1,2817:23183200,16919677:289014 +k1,2817:24491299,16919677:289014 +k1,2817:28426080,16919677:289013 +k1,2817:31635378,16919677:289014 +k1,2817:32583029,16919677:0 +) +(1,2818:6630773,17761165:25952256,505283,126483 +g1,2817:9665089,17761165 +g1,2817:10515746,17761165 +g1,2817:12342889,17761165 +g1,2817:13714557,17761165 +k1,2818:32583029,17761165:15825635 +g1,2818:32583029,17761165 +) +v1,2820:6630773,18951631:0,393216,0 +(1,2829:6630773,21330797:25952256,2772382,196608 +g1,2829:6630773,21330797 +g1,2829:6630773,21330797 +g1,2829:6434165,21330797 +(1,2829:6434165,21330797:0,2772382,196608 +r1,2829:32779637,21330797:26345472,2968990,196608 +k1,2829:6434165,21330797:-26345472 +) +(1,2829:6434165,21330797:26345472,2772382,196608 +[1,2829:6630773,21330797:25952256,2575774,0 +(1,2822:6630773,19159249:25952256,404226,76021 +(1,2821:6630773,19159249:0,0,0 +g1,2821:6630773,19159249 +g1,2821:6630773,19159249 +g1,2821:6303093,19159249 +(1,2821:6303093,19159249:0,0,0 +) +g1,2821:6630773,19159249 +) +g1,2822:7263065,19159249 +g1,2822:8211503,19159249 +h1,2822:12321397,19159249:0,0,0 +k1,2822:32583029,19159249:20261632 +g1,2822:32583029,19159249 +) +(1,2823:6630773,19825427:25952256,404226,76021 +h1,2823:6630773,19825427:0,0,0 +g1,2823:8843794,19825427 +g1,2823:9792232,19825427 +h1,2823:11689107,19825427:0,0,0 +k1,2823:32583029,19825427:20893922 +g1,2823:32583029,19825427 +) +(1,2824:6630773,20491605:25952256,284164,4718 +h1,2824:6630773,20491605:0,0,0 +h1,2824:6946919,20491605:0,0,0 +k1,2824:32583029,20491605:25636110 +g1,2824:32583029,20491605 +) +(1,2828:6630773,21223319:25952256,410518,107478 +(1,2826:6630773,21223319:0,0,0 +g1,2826:6630773,21223319 +g1,2826:6630773,21223319 +g1,2826:6303093,21223319 +(1,2826:6303093,21223319:0,0,0 +) +g1,2826:6630773,21223319 +) +g1,2828:7579210,21223319 +g1,2828:7895356,21223319 +g1,2828:9159939,21223319 +g1,2828:10424522,21223319 +g1,2828:11689105,21223319 +g1,2828:12953688,21223319 +g1,2828:14218271,21223319 +g1,2828:15482854,21223319 +g1,2828:16747437,21223319 +g1,2828:18012020,21223319 +g1,2828:19276603,21223319 +g1,2828:20541186,21223319 +h1,2828:21489623,21223319:0,0,0 +k1,2828:32583029,21223319:11093406 +g1,2828:32583029,21223319 +) +] +) +g1,2829:32583029,21330797 +g1,2829:6630773,21330797 +g1,2829:6630773,21330797 +g1,2829:32583029,21330797 +g1,2829:32583029,21330797 +) +h1,2829:6630773,21527405:0,0,0 +v1,2833:6630773,23417469:0,393216,0 +(1,2848:6630773,34067121:25952256,11042868,616038 +g1,2848:6630773,34067121 +(1,2848:6630773,34067121:25952256,11042868,616038 +(1,2848:6630773,34683159:25952256,11658906,0 +[1,2848:6630773,34683159:25952256,11658906,0 +(1,2848:6630773,34656945:25952256,11606478,0 +r1,2848:6656987,34656945:26214,11606478,0 +[1,2848:6656987,34656945:25899828,11606478,0 +(1,2848:6656987,34067121:25899828,10426830,0 +[1,2848:7246811,34067121:24720180,10426830,0 +(1,2834:7246811,24727665:24720180,1087374,134348 +k1,2833:8661977,24727665:205463 +k1,2833:9765283,24727665:205463 +k1,2833:11313579,24727665:205463 +k1,2833:12912993,24727665:205463 +k1,2833:16425403,24727665:205463 +k1,2833:17282294,24727665:205463 +k1,2833:18946588,24727665:205463 +k1,2833:21319327,24727665:205463 +k1,2833:24117394,24727665:205463 +k1,2833:26085775,24727665:205463 +k1,2833:29050959,24727665:205463 +k1,2833:30586803,24727665:205463 +k1,2833:31966991,24727665:0 +) +(1,2834:7246811,25569153:24720180,513147,134348 +k1,2833:9058308,25569153:215040 +k1,2833:10464793,25569153:215040 +k1,2833:12010214,25569153:215040 +k1,2833:13605442,25569153:215040 +k1,2833:14924764,25569153:215040 +k1,2833:15887570,25569153:215040 +k1,2833:17789507,25569153:215040 +k1,2833:19137009,25569153:215040 +k1,2833:20099814,25569153:215039 +k1,2833:21668828,25569153:215040 +k1,2833:23861089,25569153:215040 +k1,2833:24692167,25569153:215040 +k1,2833:27701007,25569153:215040 +k1,2833:29086520,25569153:215040 +k1,2833:30116828,25569153:215040 +k1,2833:30947906,25569153:215040 +k1,2833:31966991,25569153:0 +) +(1,2834:7246811,26410641:24720180,513147,126483 +k1,2833:9385906,26410641:152043 +k1,2833:10931901,26410641:152044 +k1,2833:11672457,26410641:152043 +k1,2833:13314790,26410641:152044 +k1,2833:14485918,26410641:152043 +k1,2833:17652618,26410641:152044 +k1,2833:20466078,26410641:152043 +k1,2833:22486553,26410641:152044 +k1,2833:24953983,26410641:152043 +k1,2833:26125112,26410641:152044 +k1,2833:27930629,26410641:152044 +k1,2833:30207349,26410641:152043 +k1,2833:31966991,26410641:0 +) +(1,2834:7246811,27252129:24720180,513147,134348 +k1,2833:8633178,27252129:157567 +k1,2833:10574635,27252129:157567 +k1,2833:11190300,27252129:157568 +k1,2833:12206389,27252129:157567 +k1,2833:13125484,27252129:157567 +k1,2833:14315243,27252129:157567 +k1,2833:16024703,27252129:157567 +k1,2833:17201356,27252129:157568 +k1,2833:19600254,27252129:157567 +k1,2833:22944181,27252129:157567 +k1,2833:23717786,27252129:157567 +k1,2833:24894439,27252129:157568 +k1,2833:27022674,27252129:157567 +k1,2833:29222343,27252129:157567 +k1,2834:31966991,27252129:0 +) +(1,2834:7246811,28093617:24720180,513147,134348 +(1,2833:7246811,28093617:0,414482,115847 +r1,2848:7605077,28093617:358266,530329,115847 +k1,2833:7246811,28093617:-358266 +) +(1,2833:7246811,28093617:358266,414482,115847 +k1,2833:7246811,28093617:3277 +h1,2833:7601800,28093617:0,411205,112570 +) +k1,2833:8065626,28093617:286879 +k1,2833:9251004,28093617:286879 +k1,2833:11235922,28093617:286880 +k1,2833:14296940,28093617:286879 +k1,2833:17740033,28093617:286879 +k1,2833:18686204,28093617:286879 +k1,2833:20176325,28093617:286880 +k1,2833:23124621,28093617:286879 +k1,2833:24581973,28093617:286879 +k1,2833:26001314,28093617:286879 +k1,2833:27818460,28093617:286880 +k1,2833:28756767,28093617:286879 +k1,2833:31608725,28093617:286879 +(1,2833:31608725,28093617:0,414482,115847 +r1,2848:31966991,28093617:358266,530329,115847 +k1,2833:31608725,28093617:-358266 +) +(1,2833:31608725,28093617:358266,414482,115847 +k1,2833:31608725,28093617:3277 +h1,2833:31963714,28093617:0,411205,112570 +) +k1,2833:31966991,28093617:0 +) +(1,2834:7246811,28935105:24720180,513147,134348 +k1,2833:8235346,28935105:227007 +k1,2833:11517641,28935105:227007 +k1,2833:12763732,28935105:227006 +k1,2833:14296872,28935105:227007 +k1,2833:17883910,28935105:227007 +k1,2833:19562539,28935105:227007 +k1,2833:21214953,28935105:227006 +k1,2833:22612433,28935105:227007 +k1,2833:23957484,28935105:227007 +k1,2833:24540351,28935105:227007 +k1,2833:27593269,28935105:227006 +k1,2833:28479568,28935105:227007 +k1,2833:29725660,28935105:227007 +k1,2833:31966991,28935105:0 +) +(1,2834:7246811,29776593:24720180,426639,7863 +k1,2834:31966990,29776593:21360148 +g1,2834:31966990,29776593 +) +v1,2836:7246811,30967059:0,393216,0 +(1,2845:7246811,33346225:24720180,2772382,196608 +g1,2845:7246811,33346225 +g1,2845:7246811,33346225 +g1,2845:7050203,33346225 +(1,2845:7050203,33346225:0,2772382,196608 +r1,2848:32163599,33346225:25113396,2968990,196608 +k1,2845:7050203,33346225:-25113396 +) +(1,2845:7050203,33346225:25113396,2772382,196608 +[1,2845:7246811,33346225:24720180,2575774,0 +(1,2838:7246811,31174677:24720180,404226,76021 +(1,2837:7246811,31174677:0,0,0 +g1,2837:7246811,31174677 +g1,2837:7246811,31174677 +g1,2837:6919131,31174677 +(1,2837:6919131,31174677:0,0,0 +) +g1,2837:7246811,31174677 +) +g1,2838:7879103,31174677 +g1,2838:8827541,31174677 +h1,2838:12937435,31174677:0,0,0 +k1,2838:31966991,31174677:19029556 +g1,2838:31966991,31174677 +) +(1,2839:7246811,31840855:24720180,404226,82312 +h1,2839:7246811,31840855:0,0,0 +g1,2839:9459832,31840855 +g1,2839:10408270,31840855 +k1,2839:10408270,31840855:0 +h1,2839:15466601,31840855:0,0,0 +k1,2839:31966991,31840855:16500390 +g1,2839:31966991,31840855 +) +(1,2840:7246811,32507033:24720180,284164,4718 +h1,2840:7246811,32507033:0,0,0 +h1,2840:7562957,32507033:0,0,0 +k1,2840:31966991,32507033:24404034 +g1,2840:31966991,32507033 +) +(1,2844:7246811,33238747:24720180,410518,107478 +(1,2842:7246811,33238747:0,0,0 +g1,2842:7246811,33238747 +g1,2842:7246811,33238747 +g1,2842:6919131,33238747 +(1,2842:6919131,33238747:0,0,0 +) +g1,2842:7246811,33238747 +) +g1,2844:8195248,33238747 +g1,2844:8511394,33238747 +g1,2844:9775977,33238747 +g1,2844:11040560,33238747 +g1,2844:12305143,33238747 +g1,2844:13569726,33238747 +g1,2844:14834309,33238747 +g1,2844:16098892,33238747 +g1,2844:17363475,33238747 +g1,2844:18628058,33238747 +g1,2844:19892641,33238747 +g1,2844:21157224,33238747 +h1,2844:22105661,33238747:0,0,0 +k1,2844:31966991,33238747:9861330 +g1,2844:31966991,33238747 +) +] +) +g1,2845:31966991,33346225 +g1,2845:7246811,33346225 +g1,2845:7246811,33346225 +g1,2845:31966991,33346225 +g1,2845:31966991,33346225 +) +h1,2845:7246811,33542833:0,0,0 +] +) +] +r1,2848:32583029,34656945:26214,11606478,0 +) +] +) +) +g1,2848:32583029,34067121 +) +h1,2848:6630773,34683159:0,0,0 +v1,2850:6630773,36048935:0,393216,0 +(1,2919:6630773,41767565:25952256,6111846,589824 +g1,2919:6630773,41767565 +(1,2919:6630773,41767565:25952256,6111846,589824 +(1,2919:6630773,42357389:25952256,6701670,0 +[1,2919:6630773,42357389:25952256,6701670,0 +(1,2919:6630773,42357389:25952256,6675456,0 +r1,2919:6656987,42357389:26214,6675456,0 +[1,2919:6656987,42357389:25899828,6675456,0 +(1,2919:6656987,41767565:25899828,5495808,0 +[1,2919:7246811,41767565:24720180,5495808,0 +(1,2852:7246811,37433642:24720180,1161885,196608 +(1,2850:7246811,37433642:0,1161885,196608 +r1,2919:8794447,37433642:1547636,1358493,196608 +k1,2850:7246811,37433642:-1547636 +) +(1,2850:7246811,37433642:1547636,1161885,196608 +) +k1,2850:8931171,37433642:136724 +k1,2850:8931171,37433642:0 +k1,2851:8931171,37433642:0 +k1,2851:9695730,37433642:136724 +k1,2851:10420967,37433642:136724 +k1,2851:13297096,37433642:136724 +k1,2851:14827771,37433642:136724 +k1,2851:18139714,37433642:136724 +k1,2851:20703237,37433642:136725 +k1,2851:21944243,37433642:136724 +k1,2851:22828733,37433642:136724 +k1,2851:24542909,37433642:136724 +k1,2851:26073584,37433642:136724 +(1,2851:26073584,37433642:0,452978,122846 +r1,2919:28542121,37433642:2468537,575824,122846 +k1,2851:26073584,37433642:-2468537 +) +(1,2851:26073584,37433642:2468537,452978,122846 +k1,2851:26073584,37433642:3277 +h1,2851:28538844,37433642:0,411205,112570 +) +k1,2851:28678845,37433642:136724 +k1,2851:29498454,37433642:136724 +(1,2851:29498454,37433642:0,452978,115847 +r1,2919:31966991,37433642:2468537,568825,115847 +k1,2851:29498454,37433642:-2468537 +) +(1,2851:29498454,37433642:2468537,452978,115847 +k1,2851:29498454,37433642:3277 +h1,2851:31963714,37433642:0,411205,112570 +) +k1,2851:31966991,37433642:0 +) +(1,2852:7246811,38275130:24720180,513147,134348 +k1,2851:9638547,38275130:207421 +k1,2851:12543431,38275130:207422 +k1,2851:14761497,38275130:207421 +k1,2851:16073200,38275130:207421 +k1,2851:17028387,38275130:207421 +k1,2851:19181573,38275130:207422 +k1,2851:20461163,38275130:207421 +k1,2851:21616235,38275130:207421 +k1,2851:24736731,38275130:207421 +k1,2851:26319754,38275130:207422 +k1,2851:28757365,38275130:207421 +k1,2851:30975431,38275130:207421 +k1,2851:31966991,38275130:0 +) +(1,2852:7246811,39116618:24720180,513147,134348 +k1,2851:11331776,39116618:298295 +k1,2851:16150744,39116618:298294 +(1,2851:16150744,39116618:0,452978,115847 +r1,2919:18267569,39116618:2116825,568825,115847 +k1,2851:16150744,39116618:-2116825 +) +(1,2851:16150744,39116618:2116825,452978,115847 +k1,2851:16150744,39116618:3277 +h1,2851:18264292,39116618:0,411205,112570 ) -k1,2845:18565864,39116618:298295 -k1,2845:20874804,39116618:298295 -k1,2845:22164658,39116618:298294 -k1,2845:25623754,39116618:298295 -k1,2845:27189514,39116618:298294 -(1,2845:27189514,39116618:0,452978,122846 -r1,2913:29658051,39116618:2468537,575824,122846 -k1,2845:27189514,39116618:-2468537 -) -(1,2845:27189514,39116618:2468537,452978,122846 -k1,2845:27189514,39116618:3277 -h1,2845:29654774,39116618:0,411205,112570 -) -k1,2845:29956346,39116618:298295 -k1,2845:31966991,39116618:0 -) -(1,2846:7246811,39958106:24720180,505283,126483 -k1,2845:9127039,39958106:182190 -k1,2845:10822455,39958106:182190 -k1,2845:11690807,39958106:182190 -k1,2845:14473466,39958106:182190 -k1,2845:15852343,39958106:182190 -k1,2845:19511218,39958106:182190 -k1,2845:20224905,39958106:182190 -k1,2845:21984547,39958106:182190 -k1,2845:25012966,39958106:182190 -k1,2845:26267325,39958106:182190 -k1,2845:26907612,39958106:182190 -k1,2845:28582712,39958106:182190 -k1,2845:30215869,39958106:182190 -k1,2845:31966991,39958106:0 -) -(1,2846:7246811,40799594:24720180,505283,134348 -k1,2845:11812921,40799594:171921 -k1,2845:14507324,40799594:171922 -k1,2845:16462480,40799594:171921 -k1,2845:19221107,40799594:171921 -k1,2845:20202398,40799594:171921 -k1,2845:21350151,40799594:171922 -k1,2845:22911435,40799594:171921 -k1,2845:24521871,40799594:171921 -k1,2845:27591140,40799594:171922 -k1,2845:29498454,40799594:171921 -(1,2845:29498454,40799594:0,452978,122846 -r1,2913:31966991,40799594:2468537,575824,122846 -k1,2845:29498454,40799594:-2468537 -) -(1,2845:29498454,40799594:2468537,452978,122846 -k1,2845:29498454,40799594:3277 -h1,2845:31963714,40799594:0,411205,112570 -) -k1,2845:31966991,40799594:0 -) -(1,2846:7246811,41641082:24720180,513147,126483 -g1,2845:9456685,41641082 -g1,2845:10760196,41641082 -g1,2845:13588729,41641082 -k1,2846:31966991,41641082:14128908 -g1,2846:31966991,41641082 +k1,2851:18565864,39116618:298295 +k1,2851:20874804,39116618:298295 +k1,2851:22164658,39116618:298294 +k1,2851:25623754,39116618:298295 +k1,2851:27189514,39116618:298294 +(1,2851:27189514,39116618:0,452978,122846 +r1,2919:29658051,39116618:2468537,575824,122846 +k1,2851:27189514,39116618:-2468537 +) +(1,2851:27189514,39116618:2468537,452978,122846 +k1,2851:27189514,39116618:3277 +h1,2851:29654774,39116618:0,411205,112570 +) +k1,2851:29956346,39116618:298295 +k1,2851:31966991,39116618:0 +) +(1,2852:7246811,39958106:24720180,505283,126483 +k1,2851:9127039,39958106:182190 +k1,2851:10822455,39958106:182190 +k1,2851:11690807,39958106:182190 +k1,2851:14473466,39958106:182190 +k1,2851:15852343,39958106:182190 +k1,2851:19511218,39958106:182190 +k1,2851:20224905,39958106:182190 +k1,2851:21984547,39958106:182190 +k1,2851:25012966,39958106:182190 +k1,2851:26267325,39958106:182190 +k1,2851:26907612,39958106:182190 +k1,2851:28582712,39958106:182190 +k1,2851:30215869,39958106:182190 +k1,2851:31966991,39958106:0 +) +(1,2852:7246811,40799594:24720180,505283,134348 +k1,2851:11812921,40799594:171921 +k1,2851:14507324,40799594:171922 +k1,2851:16462480,40799594:171921 +k1,2851:19221107,40799594:171921 +k1,2851:20202398,40799594:171921 +k1,2851:21350151,40799594:171922 +k1,2851:22911435,40799594:171921 +k1,2851:24521871,40799594:171921 +k1,2851:27591140,40799594:171922 +k1,2851:29498454,40799594:171921 +(1,2851:29498454,40799594:0,452978,122846 +r1,2919:31966991,40799594:2468537,575824,122846 +k1,2851:29498454,40799594:-2468537 +) +(1,2851:29498454,40799594:2468537,452978,122846 +k1,2851:29498454,40799594:3277 +h1,2851:31963714,40799594:0,411205,112570 +) +k1,2851:31966991,40799594:0 +) +(1,2852:7246811,41641082:24720180,513147,126483 +g1,2851:9456685,41641082 +g1,2851:10760196,41641082 +g1,2851:13588729,41641082 +k1,2852:31966991,41641082:14128908 +g1,2852:31966991,41641082 ) ] ) -] -r1,2913:32583029,42357389:26214,6675456,0 +] +r1,2919:32583029,42357389:26214,6675456,0 ) ] ) ) -g1,2913:32583029,41767565 +g1,2919:32583029,41767565 ) ] -(1,2913:32583029,45706769:0,0,0 -g1,2913:32583029,45706769 -) +(1,2919:32583029,45706769:0,0,0 +g1,2919:32583029,45706769 +) ) ] -(1,2913:6630773,47279633:25952256,0,0 -h1,2913:6630773,47279633:25952256,0,0 +(1,2919:6630773,47279633:25952256,0,0 +h1,2919:6630773,47279633:25952256,0,0 ) ] -h1,2913:4262630,4025873:0,0,0 +h1,2919:4262630,4025873:0,0,0 ] !21708 }60 -Input:402:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:403:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {61 -[1,2958:4262630,47279633:28320399,43253760,0 -(1,2958:4262630,4025873:0,0,0 -[1,2958:-473657,4025873:25952256,0,0 -(1,2958:-473657,-710414:25952256,0,0 -h1,2958:-473657,-710414:0,0,0 -(1,2958:-473657,-710414:0,0,0 -(1,2958:-473657,-710414:0,0,0 -g1,2958:-473657,-710414 -(1,2958:-473657,-710414:65781,0,65781 -g1,2958:-407876,-710414 -[1,2958:-407876,-644633:0,0,0 +[1,2964:4262630,47279633:28320399,43253760,0 +(1,2964:4262630,4025873:0,0,0 +[1,2964:-473657,4025873:25952256,0,0 +(1,2964:-473657,-710414:25952256,0,0 +h1,2964:-473657,-710414:0,0,0 +(1,2964:-473657,-710414:0,0,0 +(1,2964:-473657,-710414:0,0,0 +g1,2964:-473657,-710414 +(1,2964:-473657,-710414:65781,0,65781 +g1,2964:-407876,-710414 +[1,2964:-407876,-644633:0,0,0 ] ) -k1,2958:-473657,-710414:-65781 +k1,2964:-473657,-710414:-65781 ) ) -k1,2958:25478599,-710414:25952256 -g1,2958:25478599,-710414 +k1,2964:25478599,-710414:25952256 +g1,2964:25478599,-710414 ) ] ) -[1,2958:6630773,47279633:25952256,43253760,0 -[1,2958:6630773,4812305:25952256,786432,0 -(1,2958:6630773,4812305:25952256,505283,134348 -(1,2958:6630773,4812305:25952256,505283,134348 -g1,2958:3078558,4812305 -[1,2958:3078558,4812305:0,0,0 -(1,2958:3078558,2439708:0,1703936,0 -k1,2958:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,2958:2537886,2439708:1179648,16384,0 +[1,2964:6630773,47279633:25952256,43253760,0 +[1,2964:6630773,4812305:25952256,786432,0 +(1,2964:6630773,4812305:25952256,505283,134348 +(1,2964:6630773,4812305:25952256,505283,134348 +g1,2964:3078558,4812305 +[1,2964:3078558,4812305:0,0,0 +(1,2964:3078558,2439708:0,1703936,0 +k1,2964:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,2964:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,2958:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,2964:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,2958:3078558,4812305:0,0,0 -(1,2958:3078558,2439708:0,1703936,0 -g1,2958:29030814,2439708 -g1,2958:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,2958:36151628,1915420:16384,1179648,0 +[1,2964:3078558,4812305:0,0,0 +(1,2964:3078558,2439708:0,1703936,0 +g1,2964:29030814,2439708 +g1,2964:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,2964:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,2958:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,2964:37855564,2439708:1179648,16384,0 ) ) -k1,2958:3078556,2439708:-34777008 +k1,2964:3078556,2439708:-34777008 ) ] -[1,2958:3078558,4812305:0,0,0 -(1,2958:3078558,49800853:0,16384,2228224 -k1,2958:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,2958:2537886,49800853:1179648,16384,0 +[1,2964:3078558,4812305:0,0,0 +(1,2964:3078558,49800853:0,16384,2228224 +k1,2964:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,2964:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,2958:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,2964:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,2958:3078558,4812305:0,0,0 -(1,2958:3078558,49800853:0,16384,2228224 -g1,2958:29030814,49800853 -g1,2958:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,2958:36151628,51504789:16384,1179648,0 +[1,2964:3078558,4812305:0,0,0 +(1,2964:3078558,49800853:0,16384,2228224 +g1,2964:29030814,49800853 +g1,2964:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,2964:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,2958:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,2964:37855564,49800853:1179648,16384,0 ) ) -k1,2958:3078556,49800853:-34777008 +k1,2964:3078556,49800853:-34777008 ) ] -g1,2958:6630773,4812305 -k1,2958:19562994,4812305:12135303 -g1,2958:20949735,4812305 -g1,2958:21598541,4812305 -g1,2958:24912696,4812305 -g1,2958:27600327,4812305 -g1,2958:29010006,4812305 +g1,2964:6630773,4812305 +k1,2964:19515153,4812305:12087462 +g1,2964:20901894,4812305 +g1,2964:21550700,4812305 +g1,2964:24864855,4812305 +g1,2964:27600327,4812305 +g1,2964:29010006,4812305 ) ) ] -[1,2958:6630773,45706769:25952256,40108032,0 -(1,2958:6630773,45706769:25952256,40108032,0 -(1,2958:6630773,45706769:0,0,0 -g1,2958:6630773,45706769 +[1,2964:6630773,45706769:25952256,40108032,0 +(1,2964:6630773,45706769:25952256,40108032,0 +(1,2964:6630773,45706769:0,0,0 +g1,2964:6630773,45706769 ) -[1,2958:6630773,45706769:25952256,40108032,0 -v1,2913:6630773,6254097:0,393216,0 -(1,2913:6630773,32017140:25952256,26156259,616038 -g1,2913:6630773,32017140 -(1,2913:6630773,32017140:25952256,26156259,616038 -(1,2913:6630773,32633178:25952256,26772297,0 -[1,2913:6630773,32633178:25952256,26772297,0 -(1,2913:6630773,32606964:25952256,26746083,0 -r1,2913:6656987,32606964:26214,26746083,0 -[1,2913:6656987,32606964:25899828,26746083,0 -(1,2913:6656987,32017140:25899828,25566435,0 -[1,2913:7246811,32017140:24720180,25566435,0 -v1,2848:7246811,6843921:0,393216,0 -(1,2874:7246811,14685208:24720180,8234503,196608 -g1,2874:7246811,14685208 -g1,2874:7246811,14685208 -g1,2874:7050203,14685208 -(1,2874:7050203,14685208:0,8234503,196608 -r1,2913:32163599,14685208:25113396,8431111,196608 -k1,2874:7050203,14685208:-25113396 -) -(1,2874:7050203,14685208:25113396,8234503,196608 -[1,2874:7246811,14685208:24720180,8037895,0 -(1,2850:7246811,7051539:24720180,404226,76021 -(1,2849:7246811,7051539:0,0,0 -g1,2849:7246811,7051539 -g1,2849:7246811,7051539 -g1,2849:6919131,7051539 -(1,2849:6919131,7051539:0,0,0 -) -g1,2849:7246811,7051539 -) -g1,2850:7879103,7051539 -g1,2850:8827541,7051539 -h1,2850:12937435,7051539:0,0,0 -k1,2850:31966991,7051539:19029556 -g1,2850:31966991,7051539 -) -(1,2851:7246811,7717717:24720180,404226,76021 -h1,2851:7246811,7717717:0,0,0 -h1,2851:8511394,7717717:0,0,0 -k1,2851:31966990,7717717:23455596 -g1,2851:31966990,7717717 -) -(1,2855:7246811,8449431:24720180,404226,76021 -(1,2853:7246811,8449431:0,0,0 -g1,2853:7246811,8449431 -g1,2853:7246811,8449431 -g1,2853:6919131,8449431 -(1,2853:6919131,8449431:0,0,0 -) -g1,2853:7246811,8449431 -) -g1,2855:8195248,8449431 -g1,2855:9459831,8449431 -h1,2855:10408268,8449431:0,0,0 -k1,2855:31966992,8449431:21558724 -g1,2855:31966992,8449431 -) -(1,2857:7246811,9770969:24720180,404226,76021 -(1,2856:7246811,9770969:0,0,0 -g1,2856:7246811,9770969 -g1,2856:7246811,9770969 -g1,2856:6919131,9770969 -(1,2856:6919131,9770969:0,0,0 -) -g1,2856:7246811,9770969 -) -h1,2857:9143685,9770969:0,0,0 -k1,2857:31966991,9770969:22823306 -g1,2857:31966991,9770969 -) -(1,2861:7246811,10502683:24720180,404226,76021 -(1,2859:7246811,10502683:0,0,0 -g1,2859:7246811,10502683 -g1,2859:7246811,10502683 -g1,2859:6919131,10502683 -(1,2859:6919131,10502683:0,0,0 -) -g1,2859:7246811,10502683 -) -g1,2861:8195248,10502683 -g1,2861:9459831,10502683 -h1,2861:10408268,10502683:0,0,0 -k1,2861:31966992,10502683:21558724 -g1,2861:31966992,10502683 -) -(1,2863:7246811,11824221:24720180,404226,101187 -(1,2862:7246811,11824221:0,0,0 -g1,2862:7246811,11824221 -g1,2862:7246811,11824221 -g1,2862:6919131,11824221 -(1,2862:6919131,11824221:0,0,0 -) -g1,2862:7246811,11824221 -) -g1,2863:10408268,11824221 -g1,2863:11040560,11824221 -k1,2863:11040560,11824221:0 -h1,2863:14202017,11824221:0,0,0 -k1,2863:31966991,11824221:17764974 -g1,2863:31966991,11824221 -) -(1,2867:7246811,12555935:24720180,404226,76021 -(1,2865:7246811,12555935:0,0,0 -g1,2865:7246811,12555935 -g1,2865:7246811,12555935 -g1,2865:6919131,12555935 -(1,2865:6919131,12555935:0,0,0 -) -g1,2865:7246811,12555935 -) -g1,2867:8195248,12555935 -g1,2867:9459831,12555935 -h1,2867:10408268,12555935:0,0,0 -k1,2867:31966992,12555935:21558724 -g1,2867:31966992,12555935 -) -(1,2869:7246811,13877473:24720180,404226,76021 -(1,2868:7246811,13877473:0,0,0 -g1,2868:7246811,13877473 -g1,2868:7246811,13877473 -g1,2868:6919131,13877473 -(1,2868:6919131,13877473:0,0,0 -) -g1,2868:7246811,13877473 -) -h1,2869:8511394,13877473:0,0,0 -k1,2869:31966990,13877473:23455596 -g1,2869:31966990,13877473 -) -(1,2873:7246811,14609187:24720180,404226,76021 -(1,2871:7246811,14609187:0,0,0 -g1,2871:7246811,14609187 -g1,2871:7246811,14609187 -g1,2871:6919131,14609187 -(1,2871:6919131,14609187:0,0,0 -) -g1,2871:7246811,14609187 -) -g1,2873:8195248,14609187 -g1,2873:9459831,14609187 -h1,2873:10408268,14609187:0,0,0 -k1,2873:31966992,14609187:21558724 -g1,2873:31966992,14609187 -) -] -) -g1,2874:31966991,14685208 -g1,2874:7246811,14685208 -g1,2874:7246811,14685208 -g1,2874:31966991,14685208 -g1,2874:31966991,14685208 -) -h1,2874:7246811,14881816:0,0,0 -(1,2878:7246811,16247592:24720180,513147,126483 -h1,2877:7246811,16247592:983040,0,0 -k1,2877:10131651,16247592:239807 -k1,2877:11574699,16247592:239807 -k1,2877:15597244,16247592:239807 -k1,2877:16705403,16247592:239807 -k1,2877:18049492,16247592:239807 -k1,2877:19900830,16247592:239808 -k1,2877:21425143,16247592:239807 -k1,2877:22130911,16247592:239807 -k1,2877:24880092,16247592:239807 -k1,2877:27546697,16247592:239807 -k1,2877:28778064,16247592:239807 -k1,2877:30084142,16247592:239807 -k1,2877:31966991,16247592:0 -) -(1,2878:7246811,17089080:24720180,505283,134348 -g1,2877:10435792,17089080 -g1,2877:12015209,17089080 -g1,2877:13205998,17089080 -g1,2877:16494594,17089080 -g1,2877:17345251,17089080 -g1,2877:18563565,17089080 -g1,2877:20146914,17089080 -g1,2877:22698230,17089080 -k1,2878:31966991,17089080:6864900 -g1,2878:31966991,17089080 -) -v1,2880:7246811,18279546:0,393216,0 -(1,2906:7246811,26120833:24720180,8234503,196608 -g1,2906:7246811,26120833 -g1,2906:7246811,26120833 -g1,2906:7050203,26120833 -(1,2906:7050203,26120833:0,8234503,196608 -r1,2913:32163599,26120833:25113396,8431111,196608 -k1,2906:7050203,26120833:-25113396 -) -(1,2906:7050203,26120833:25113396,8234503,196608 -[1,2906:7246811,26120833:24720180,8037895,0 -(1,2882:7246811,18487164:24720180,404226,76021 -(1,2881:7246811,18487164:0,0,0 -g1,2881:7246811,18487164 -g1,2881:7246811,18487164 -g1,2881:6919131,18487164 -(1,2881:6919131,18487164:0,0,0 -) -g1,2881:7246811,18487164 -) -g1,2882:7879103,18487164 -g1,2882:8827541,18487164 -h1,2882:12937435,18487164:0,0,0 -k1,2882:31966991,18487164:19029556 -g1,2882:31966991,18487164 -) -(1,2883:7246811,19153342:24720180,404226,76021 -h1,2883:7246811,19153342:0,0,0 -k1,2883:7246811,19153342:0 -h1,2883:8827540,19153342:0,0,0 -k1,2883:31966992,19153342:23139452 -g1,2883:31966992,19153342 -) -(1,2887:7246811,19885056:24720180,404226,76021 -(1,2885:7246811,19885056:0,0,0 -g1,2885:7246811,19885056 -g1,2885:7246811,19885056 -g1,2885:6919131,19885056 -(1,2885:6919131,19885056:0,0,0 -) -g1,2885:7246811,19885056 -) -g1,2887:8195248,19885056 -g1,2887:9459831,19885056 -g1,2887:10724414,19885056 -g1,2887:11988997,19885056 -g1,2887:13253580,19885056 -g1,2887:14518163,19885056 -g1,2887:15782746,19885056 -g1,2887:17047329,19885056 -g1,2887:18311912,19885056 -g1,2887:19576495,19885056 -h1,2887:20524932,19885056:0,0,0 -k1,2887:31966991,19885056:11442059 -g1,2887:31966991,19885056 -) -(1,2889:7246811,21206594:24720180,404226,76021 -(1,2888:7246811,21206594:0,0,0 -g1,2888:7246811,21206594 -g1,2888:7246811,21206594 -g1,2888:6919131,21206594 -(1,2888:6919131,21206594:0,0,0 -) -g1,2888:7246811,21206594 -) -k1,2889:7246811,21206594:0 -h1,2889:9459831,21206594:0,0,0 -k1,2889:31966991,21206594:22507160 -g1,2889:31966991,21206594 -) -(1,2893:7246811,21938308:24720180,404226,76021 -(1,2891:7246811,21938308:0,0,0 -g1,2891:7246811,21938308 -g1,2891:7246811,21938308 -g1,2891:6919131,21938308 -(1,2891:6919131,21938308:0,0,0 -) -g1,2891:7246811,21938308 -) -g1,2893:8195248,21938308 -g1,2893:9459831,21938308 -g1,2893:10724414,21938308 -g1,2893:11988997,21938308 -g1,2893:13253580,21938308 -g1,2893:14518163,21938308 -g1,2893:15782746,21938308 -g1,2893:17047329,21938308 -g1,2893:18311912,21938308 -g1,2893:19576495,21938308 -h1,2893:20524932,21938308:0,0,0 -k1,2893:31966991,21938308:11442059 -g1,2893:31966991,21938308 -) -(1,2895:7246811,23259846:24720180,404226,76021 -(1,2894:7246811,23259846:0,0,0 -g1,2894:7246811,23259846 -g1,2894:7246811,23259846 -g1,2894:6919131,23259846 -(1,2894:6919131,23259846:0,0,0 -) -g1,2894:7246811,23259846 -) -k1,2895:7246811,23259846:0 -h1,2895:10408268,23259846:0,0,0 -k1,2895:31966992,23259846:21558724 -g1,2895:31966992,23259846 -) -(1,2899:7246811,23991560:24720180,404226,76021 -(1,2897:7246811,23991560:0,0,0 -g1,2897:7246811,23991560 -g1,2897:7246811,23991560 -g1,2897:6919131,23991560 -(1,2897:6919131,23991560:0,0,0 -) -g1,2897:7246811,23991560 -) -g1,2899:8195248,23991560 -g1,2899:9459831,23991560 -g1,2899:10724414,23991560 -g1,2899:11988997,23991560 -g1,2899:13253580,23991560 -g1,2899:14518163,23991560 -g1,2899:15782746,23991560 -g1,2899:17047329,23991560 -g1,2899:18311912,23991560 -g1,2899:19576495,23991560 -h1,2899:20524932,23991560:0,0,0 -k1,2899:31966991,23991560:11442059 -g1,2899:31966991,23991560 -) -(1,2901:7246811,25313098:24720180,404226,76021 -(1,2900:7246811,25313098:0,0,0 -g1,2900:7246811,25313098 -g1,2900:7246811,25313098 -g1,2900:6919131,25313098 -(1,2900:6919131,25313098:0,0,0 -) -g1,2900:7246811,25313098 -) -k1,2901:7246811,25313098:0 -h1,2901:8827540,25313098:0,0,0 -k1,2901:31966992,25313098:23139452 -g1,2901:31966992,25313098 -) -(1,2905:7246811,26044812:24720180,404226,76021 -(1,2903:7246811,26044812:0,0,0 -g1,2903:7246811,26044812 -g1,2903:7246811,26044812 -g1,2903:6919131,26044812 -(1,2903:6919131,26044812:0,0,0 -) -g1,2903:7246811,26044812 -) -g1,2905:8195248,26044812 -g1,2905:9459831,26044812 -g1,2905:10724414,26044812 -g1,2905:11988997,26044812 -g1,2905:13253580,26044812 -g1,2905:14518163,26044812 -g1,2905:15782746,26044812 -g1,2905:17047329,26044812 -g1,2905:18311912,26044812 -g1,2905:19576495,26044812 -h1,2905:20524932,26044812:0,0,0 -k1,2905:31966991,26044812:11442059 -g1,2905:31966991,26044812 -) -] -) -g1,2906:31966991,26120833 -g1,2906:7246811,26120833 -g1,2906:7246811,26120833 -g1,2906:31966991,26120833 -g1,2906:31966991,26120833 -) -h1,2906:7246811,26317441:0,0,0 -(1,2910:7246811,27683217:24720180,513147,134348 -h1,2909:7246811,27683217:983040,0,0 -k1,2909:10119527,27683217:227683 -k1,2909:11550451,27683217:227683 -k1,2909:15560872,27683217:227683 -k1,2909:16656907,27683217:227683 -k1,2909:17988872,27683217:227683 -k1,2909:19828085,27683217:227683 -k1,2909:21340274,27683217:227683 -k1,2909:22033918,27683217:227683 -k1,2909:24916464,27683217:227683 -k1,2909:27570945,27683217:227683 -k1,2909:28790188,27683217:227683 -k1,2909:30084142,27683217:227683 -k1,2909:31966991,27683217:0 -) -(1,2910:7246811,28524705:24720180,505283,134348 -k1,2909:10460369,28524705:223806 -k1,2909:12064362,28524705:223805 -k1,2909:13279728,28524705:223806 -k1,2909:16592900,28524705:223805 -k1,2909:17468134,28524705:223806 -k1,2909:18711024,28524705:223805 -k1,2909:20318950,28524705:223806 -k1,2909:22402011,28524705:223805 -k1,2909:24045982,28524705:223806 -k1,2909:27131744,28524705:223805 -k1,2909:29759411,28524705:223806 -k1,2909:30611051,28524705:223805 -k1,2910:31966991,28524705:0 -) -(1,2910:7246811,29366193:24720180,513147,134348 -k1,2909:9928722,29366193:213825 -(1,2909:9928722,29366193:0,452978,115847 -r1,2913:12045547,29366193:2116825,568825,115847 -k1,2909:9928722,29366193:-2116825 -) -(1,2909:9928722,29366193:2116825,452978,115847 -k1,2909:9928722,29366193:3277 -h1,2909:12042270,29366193:0,411205,112570 -) -k1,2909:12259372,29366193:213825 -k1,2909:14222353,29366193:213825 -k1,2909:16446823,29366193:213825 -k1,2909:18883629,29366193:213825 -k1,2909:19783616,29366193:213825 -k1,2909:20463402,29366193:213825 -k1,2909:22057415,29366193:213825 -k1,2909:24190134,29366193:213825 -k1,2909:27322277,29366193:213825 -k1,2909:29271495,29366193:213825 -k1,2910:31966991,29366193:0 -) -(1,2910:7246811,30207681:24720180,452978,115847 -(1,2909:7246811,30207681:0,452978,115847 -r1,2913:9715348,30207681:2468537,568825,115847 -k1,2909:7246811,30207681:-2468537 -) -(1,2909:7246811,30207681:2468537,452978,115847 -k1,2909:7246811,30207681:3277 -h1,2909:9712071,30207681:0,411205,112570 -) -k1,2910:31966990,30207681:22077972 -g1,2910:31966990,30207681 -) -(1,2912:7246811,31049169:24720180,513147,134348 -h1,2911:7246811,31049169:983040,0,0 -k1,2911:9838013,31049169:227318 -k1,2911:12726749,31049169:227319 -k1,2911:14239883,31049169:227318 -k1,2911:16458185,31049169:227318 -k1,2911:18015885,31049169:227319 -k1,2911:19399913,31049169:227318 -k1,2911:20731513,31049169:227318 -k1,2911:22596576,31049169:227318 -k1,2911:23890166,31049169:227319 -k1,2911:24784640,31049169:227318 -k1,2911:25426773,31049169:227290 -k1,2911:26442489,31049169:227318 -k1,2911:28255779,31049169:227319 -k1,2911:31041623,31049169:227318 -k1,2912:31966991,31049169:0 -) -(1,2912:7246811,31890657:24720180,473825,126483 -k1,2912:31966992,31890657:20026492 -g1,2912:31966992,31890657 -) -] -) -] -r1,2913:32583029,32606964:26214,26746083,0 -) -] -) -) -g1,2913:32583029,32017140 -) -h1,2913:6630773,32633178:0,0,0 -(1,2916:6630773,33998954:25952256,513147,134348 -h1,2915:6630773,33998954:983040,0,0 -k1,2915:8244983,33998954:143582 -k1,2915:11127371,33998954:143638 -k1,2915:14345303,33998954:143638 -k1,2915:15298310,33998954:143637 -k1,2915:17750126,33998954:143638 -k1,2915:18425260,33998954:143637 -k1,2915:20829235,33998954:143638 -k1,2915:22611928,33998954:143638 -k1,2915:24023031,33998954:143637 -k1,2915:24937372,33998954:143638 -k1,2915:28342736,33998954:143637 -k1,2915:29169259,33998954:143638 -k1,2915:32583029,33998954:0 -) -(1,2916:6630773,34840442:25952256,505283,126483 -g1,2915:8742998,34840442 -g1,2915:10138914,34840442 -g1,2915:11939843,34840442 -g1,2915:13987187,34840442 -g1,2915:17170926,34840442 -g1,2915:17901652,34840442 -g1,2915:18752309,34840442 -g1,2915:20044023,34840442 -(1,2915:20044023,34840442:0,452978,115847 -r1,2915:22160848,34840442:2116825,568825,115847 -k1,2915:20044023,34840442:-2116825 -) -(1,2915:20044023,34840442:2116825,452978,115847 -k1,2915:20044023,34840442:3277 -h1,2915:22157571,34840442:0,411205,112570 -) -k1,2916:32583029,34840442:10248511 -g1,2916:32583029,34840442 -) -v1,2918:6630773,36030908:0,393216,0 -(1,2932:6630773,39765691:25952256,4127999,196608 -g1,2932:6630773,39765691 -g1,2932:6630773,39765691 -g1,2932:6434165,39765691 -(1,2932:6434165,39765691:0,4127999,196608 -r1,2932:32779637,39765691:26345472,4324607,196608 -k1,2932:6434165,39765691:-26345472 -) -(1,2932:6434165,39765691:26345472,4127999,196608 -[1,2932:6630773,39765691:25952256,3931391,0 -(1,2920:6630773,36238526:25952256,404226,101187 -(1,2919:6630773,36238526:0,0,0 -g1,2919:6630773,36238526 -g1,2919:6630773,36238526 -g1,2919:6303093,36238526 -(1,2919:6303093,36238526:0,0,0 -) -g1,2919:6630773,36238526 -) -g1,2920:9792230,36238526 -g1,2920:10740668,36238526 -g1,2920:12637543,36238526 -g1,2920:13585981,36238526 -g1,2920:14850564,36238526 -g1,2920:15799002,36238526 -h1,2920:16431294,36238526:0,0,0 -k1,2920:32583029,36238526:16151735 -g1,2920:32583029,36238526 -) -(1,2921:6630773,36904704:25952256,404226,101187 -h1,2921:6630773,36904704:0,0,0 -k1,2921:6630773,36904704:0 -h1,2921:11372958,36904704:0,0,0 -k1,2921:32583030,36904704:21210072 -g1,2921:32583030,36904704 -) -(1,2925:6630773,37636418:25952256,404226,76021 -(1,2923:6630773,37636418:0,0,0 -g1,2923:6630773,37636418 -g1,2923:6630773,37636418 -g1,2923:6303093,37636418 -(1,2923:6303093,37636418:0,0,0 -) -g1,2923:6630773,37636418 -) -g1,2925:7579210,37636418 -g1,2925:8843793,37636418 -g1,2925:9159939,37636418 -g1,2925:9792231,37636418 -g1,2925:10108377,37636418 -g1,2925:10740669,37636418 -g1,2925:11056815,37636418 -g1,2925:11689107,37636418 -g1,2925:12637544,37636418 -h1,2925:13269835,37636418:0,0,0 -k1,2925:32583029,37636418:19313194 -g1,2925:32583029,37636418 -) -(1,2927:6630773,38957956:25952256,404226,107478 -(1,2926:6630773,38957956:0,0,0 -g1,2926:6630773,38957956 -g1,2926:6630773,38957956 -g1,2926:6303093,38957956 -(1,2926:6303093,38957956:0,0,0 -) -g1,2926:6630773,38957956 -) -k1,2927:6630773,38957956:0 -g1,2927:11689105,38957956 -g1,2927:15166708,38957956 -g1,2927:15799000,38957956 -h1,2927:17379729,38957956:0,0,0 -k1,2927:32583029,38957956:15203300 -g1,2927:32583029,38957956 -) -(1,2931:6630773,39689670:25952256,404226,76021 -(1,2929:6630773,39689670:0,0,0 -g1,2929:6630773,39689670 -g1,2929:6630773,39689670 -g1,2929:6303093,39689670 -(1,2929:6303093,39689670:0,0,0 -) -g1,2929:6630773,39689670 -) -g1,2931:7579210,39689670 -g1,2931:8843793,39689670 -g1,2931:9792230,39689670 -g1,2931:10740667,39689670 -g1,2931:11056813,39689670 -g1,2931:11689105,39689670 -g1,2931:12005251,39689670 -g1,2931:12637543,39689670 -g1,2931:12953689,39689670 -h1,2931:13269835,39689670:0,0,0 -k1,2931:32583029,39689670:19313194 -g1,2931:32583029,39689670 -) -] -) -g1,2932:32583029,39765691 -g1,2932:6630773,39765691 -g1,2932:6630773,39765691 -g1,2932:32583029,39765691 -g1,2932:32583029,39765691 -) -h1,2932:6630773,39962299:0,0,0 -(1,2936:6630773,41328075:25952256,513147,134348 -h1,2935:6630773,41328075:983040,0,0 -k1,2935:8743186,41328075:226942 -k1,2935:11434281,41328075:226941 -k1,2935:12899198,41328075:226942 -k1,2935:13785432,41328075:226942 -k1,2935:16272711,41328075:226942 -k1,2935:16855512,41328075:226941 -k1,2935:19234001,41328075:226942 -k1,2935:22104665,41328075:226942 -k1,2935:24186275,41328075:226941 -k1,2935:25222587,41328075:226942 -k1,2935:25805389,41328075:226942 -k1,2935:28794674,41328075:226942 -k1,2935:31173162,41328075:226941 -k1,2935:31931601,41328075:226942 -k1,2935:32583029,41328075:0 -) -(1,2936:6630773,42169563:25952256,513147,134348 -k1,2935:9601284,42169563:238315 -k1,2935:11233549,42169563:238314 -(1,2935:11233549,42169563:0,452978,115847 -r1,2935:13702086,42169563:2468537,568825,115847 -k1,2935:11233549,42169563:-2468537 -) -(1,2935:11233549,42169563:2468537,452978,115847 -k1,2935:11233549,42169563:3277 -h1,2935:13698809,42169563:0,411205,112570 -) -k1,2935:13940401,42169563:238315 -k1,2935:14534575,42169563:238314 -k1,2935:16750767,42169563:238315 -k1,2935:17648373,42169563:238314 -k1,2935:21067806,42169563:238315 -k1,2935:23732918,42169563:238314 -k1,2935:25255739,42169563:238315 -k1,2935:26598335,42169563:238314 -k1,2935:27584416,42169563:238315 -k1,2935:29335956,42169563:238314 -k1,2935:30225699,42169563:238315 -k1,2935:32583029,42169563:0 -) -(1,2936:6630773,43011051:25952256,505283,134348 -g1,2935:7849087,43011051 -k1,2936:32583028,43011051:21830696 -g1,2936:32583028,43011051 -) -v1,2938:6630773,44201517:0,393216,0 -(1,2958:6630773,45140849:25952256,1332548,196608 -g1,2958:6630773,45140849 -g1,2958:6630773,45140849 -g1,2958:6434165,45140849 -(1,2958:6434165,45140849:0,1332548,196608 -r1,2958:32779637,45140849:26345472,1529156,196608 -k1,2958:6434165,45140849:-26345472 -) -(1,2958:6434165,45140849:26345472,1332548,196608 -[1,2958:6630773,45140849:25952256,1135940,0 -(1,2940:6630773,44409135:25952256,404226,101187 -(1,2939:6630773,44409135:0,0,0 -g1,2939:6630773,44409135 -g1,2939:6630773,44409135 -g1,2939:6303093,44409135 -(1,2939:6303093,44409135:0,0,0 -) -g1,2939:6630773,44409135 -) -k1,2940:6630773,44409135:0 -h1,2940:11689103,44409135:0,0,0 -k1,2940:32583029,44409135:20893926 -g1,2940:32583029,44409135 -) -(1,2944:6630773,45140849:25952256,404226,76021 -(1,2942:6630773,45140849:0,0,0 -g1,2942:6630773,45140849 -g1,2942:6630773,45140849 -g1,2942:6303093,45140849 -(1,2942:6303093,45140849:0,0,0 -) -g1,2942:6630773,45140849 -) -g1,2944:7579210,45140849 -g1,2944:8843793,45140849 -g1,2944:9476085,45140849 -g1,2944:10108377,45140849 -g1,2944:10740669,45140849 -g1,2944:11372961,45140849 -h1,2944:11689107,45140849:0,0,0 -k1,2944:32583029,45140849:20893922 -g1,2944:32583029,45140849 -) -] -) -g1,2958:32583029,45140849 -g1,2958:6630773,45140849 -g1,2958:6630773,45140849 -g1,2958:32583029,45140849 -g1,2958:32583029,45140849 -) -] -(1,2958:32583029,45706769:0,0,0 -g1,2958:32583029,45706769 -) -) -] -(1,2958:6630773,47279633:25952256,0,0 -h1,2958:6630773,47279633:25952256,0,0 -) -] -h1,2958:4262630,4025873:0,0,0 +[1,2964:6630773,45706769:25952256,40108032,0 +v1,2919:6630773,6254097:0,393216,0 +(1,2919:6630773,32017140:25952256,26156259,616038 +g1,2919:6630773,32017140 +(1,2919:6630773,32017140:25952256,26156259,616038 +(1,2919:6630773,32633178:25952256,26772297,0 +[1,2919:6630773,32633178:25952256,26772297,0 +(1,2919:6630773,32606964:25952256,26746083,0 +r1,2919:6656987,32606964:26214,26746083,0 +[1,2919:6656987,32606964:25899828,26746083,0 +(1,2919:6656987,32017140:25899828,25566435,0 +[1,2919:7246811,32017140:24720180,25566435,0 +v1,2854:7246811,6843921:0,393216,0 +(1,2880:7246811,14685208:24720180,8234503,196608 +g1,2880:7246811,14685208 +g1,2880:7246811,14685208 +g1,2880:7050203,14685208 +(1,2880:7050203,14685208:0,8234503,196608 +r1,2919:32163599,14685208:25113396,8431111,196608 +k1,2880:7050203,14685208:-25113396 +) +(1,2880:7050203,14685208:25113396,8234503,196608 +[1,2880:7246811,14685208:24720180,8037895,0 +(1,2856:7246811,7051539:24720180,404226,76021 +(1,2855:7246811,7051539:0,0,0 +g1,2855:7246811,7051539 +g1,2855:7246811,7051539 +g1,2855:6919131,7051539 +(1,2855:6919131,7051539:0,0,0 +) +g1,2855:7246811,7051539 +) +g1,2856:7879103,7051539 +g1,2856:8827541,7051539 +h1,2856:12937435,7051539:0,0,0 +k1,2856:31966991,7051539:19029556 +g1,2856:31966991,7051539 +) +(1,2857:7246811,7717717:24720180,404226,76021 +h1,2857:7246811,7717717:0,0,0 +h1,2857:8511394,7717717:0,0,0 +k1,2857:31966990,7717717:23455596 +g1,2857:31966990,7717717 +) +(1,2861:7246811,8449431:24720180,404226,76021 +(1,2859:7246811,8449431:0,0,0 +g1,2859:7246811,8449431 +g1,2859:7246811,8449431 +g1,2859:6919131,8449431 +(1,2859:6919131,8449431:0,0,0 +) +g1,2859:7246811,8449431 +) +g1,2861:8195248,8449431 +g1,2861:9459831,8449431 +h1,2861:10408268,8449431:0,0,0 +k1,2861:31966992,8449431:21558724 +g1,2861:31966992,8449431 +) +(1,2863:7246811,9770969:24720180,404226,76021 +(1,2862:7246811,9770969:0,0,0 +g1,2862:7246811,9770969 +g1,2862:7246811,9770969 +g1,2862:6919131,9770969 +(1,2862:6919131,9770969:0,0,0 +) +g1,2862:7246811,9770969 +) +h1,2863:9143685,9770969:0,0,0 +k1,2863:31966991,9770969:22823306 +g1,2863:31966991,9770969 +) +(1,2867:7246811,10502683:24720180,404226,76021 +(1,2865:7246811,10502683:0,0,0 +g1,2865:7246811,10502683 +g1,2865:7246811,10502683 +g1,2865:6919131,10502683 +(1,2865:6919131,10502683:0,0,0 +) +g1,2865:7246811,10502683 +) +g1,2867:8195248,10502683 +g1,2867:9459831,10502683 +h1,2867:10408268,10502683:0,0,0 +k1,2867:31966992,10502683:21558724 +g1,2867:31966992,10502683 +) +(1,2869:7246811,11824221:24720180,404226,101187 +(1,2868:7246811,11824221:0,0,0 +g1,2868:7246811,11824221 +g1,2868:7246811,11824221 +g1,2868:6919131,11824221 +(1,2868:6919131,11824221:0,0,0 +) +g1,2868:7246811,11824221 +) +g1,2869:10408268,11824221 +g1,2869:11040560,11824221 +k1,2869:11040560,11824221:0 +h1,2869:14202017,11824221:0,0,0 +k1,2869:31966991,11824221:17764974 +g1,2869:31966991,11824221 +) +(1,2873:7246811,12555935:24720180,404226,76021 +(1,2871:7246811,12555935:0,0,0 +g1,2871:7246811,12555935 +g1,2871:7246811,12555935 +g1,2871:6919131,12555935 +(1,2871:6919131,12555935:0,0,0 +) +g1,2871:7246811,12555935 +) +g1,2873:8195248,12555935 +g1,2873:9459831,12555935 +h1,2873:10408268,12555935:0,0,0 +k1,2873:31966992,12555935:21558724 +g1,2873:31966992,12555935 +) +(1,2875:7246811,13877473:24720180,404226,76021 +(1,2874:7246811,13877473:0,0,0 +g1,2874:7246811,13877473 +g1,2874:7246811,13877473 +g1,2874:6919131,13877473 +(1,2874:6919131,13877473:0,0,0 +) +g1,2874:7246811,13877473 +) +h1,2875:8511394,13877473:0,0,0 +k1,2875:31966990,13877473:23455596 +g1,2875:31966990,13877473 +) +(1,2879:7246811,14609187:24720180,404226,76021 +(1,2877:7246811,14609187:0,0,0 +g1,2877:7246811,14609187 +g1,2877:7246811,14609187 +g1,2877:6919131,14609187 +(1,2877:6919131,14609187:0,0,0 +) +g1,2877:7246811,14609187 +) +g1,2879:8195248,14609187 +g1,2879:9459831,14609187 +h1,2879:10408268,14609187:0,0,0 +k1,2879:31966992,14609187:21558724 +g1,2879:31966992,14609187 +) +] +) +g1,2880:31966991,14685208 +g1,2880:7246811,14685208 +g1,2880:7246811,14685208 +g1,2880:31966991,14685208 +g1,2880:31966991,14685208 +) +h1,2880:7246811,14881816:0,0,0 +(1,2884:7246811,16247592:24720180,513147,126483 +h1,2883:7246811,16247592:983040,0,0 +k1,2883:10131651,16247592:239807 +k1,2883:11574699,16247592:239807 +k1,2883:15597244,16247592:239807 +k1,2883:16705403,16247592:239807 +k1,2883:18049492,16247592:239807 +k1,2883:19900830,16247592:239808 +k1,2883:21425143,16247592:239807 +k1,2883:22130911,16247592:239807 +k1,2883:24880092,16247592:239807 +k1,2883:27546697,16247592:239807 +k1,2883:28778064,16247592:239807 +k1,2883:30084142,16247592:239807 +k1,2883:31966991,16247592:0 +) +(1,2884:7246811,17089080:24720180,505283,134348 +g1,2883:10435792,17089080 +g1,2883:12015209,17089080 +g1,2883:13205998,17089080 +g1,2883:16494594,17089080 +g1,2883:17345251,17089080 +g1,2883:18563565,17089080 +g1,2883:20146914,17089080 +g1,2883:22698230,17089080 +k1,2884:31966991,17089080:6864900 +g1,2884:31966991,17089080 +) +v1,2886:7246811,18279546:0,393216,0 +(1,2912:7246811,26120833:24720180,8234503,196608 +g1,2912:7246811,26120833 +g1,2912:7246811,26120833 +g1,2912:7050203,26120833 +(1,2912:7050203,26120833:0,8234503,196608 +r1,2919:32163599,26120833:25113396,8431111,196608 +k1,2912:7050203,26120833:-25113396 +) +(1,2912:7050203,26120833:25113396,8234503,196608 +[1,2912:7246811,26120833:24720180,8037895,0 +(1,2888:7246811,18487164:24720180,404226,76021 +(1,2887:7246811,18487164:0,0,0 +g1,2887:7246811,18487164 +g1,2887:7246811,18487164 +g1,2887:6919131,18487164 +(1,2887:6919131,18487164:0,0,0 +) +g1,2887:7246811,18487164 +) +g1,2888:7879103,18487164 +g1,2888:8827541,18487164 +h1,2888:12937435,18487164:0,0,0 +k1,2888:31966991,18487164:19029556 +g1,2888:31966991,18487164 +) +(1,2889:7246811,19153342:24720180,404226,76021 +h1,2889:7246811,19153342:0,0,0 +k1,2889:7246811,19153342:0 +h1,2889:8827540,19153342:0,0,0 +k1,2889:31966992,19153342:23139452 +g1,2889:31966992,19153342 +) +(1,2893:7246811,19885056:24720180,404226,76021 +(1,2891:7246811,19885056:0,0,0 +g1,2891:7246811,19885056 +g1,2891:7246811,19885056 +g1,2891:6919131,19885056 +(1,2891:6919131,19885056:0,0,0 +) +g1,2891:7246811,19885056 +) +g1,2893:8195248,19885056 +g1,2893:9459831,19885056 +g1,2893:10724414,19885056 +g1,2893:11988997,19885056 +g1,2893:13253580,19885056 +g1,2893:14518163,19885056 +g1,2893:15782746,19885056 +g1,2893:17047329,19885056 +g1,2893:18311912,19885056 +g1,2893:19576495,19885056 +h1,2893:20524932,19885056:0,0,0 +k1,2893:31966991,19885056:11442059 +g1,2893:31966991,19885056 +) +(1,2895:7246811,21206594:24720180,404226,76021 +(1,2894:7246811,21206594:0,0,0 +g1,2894:7246811,21206594 +g1,2894:7246811,21206594 +g1,2894:6919131,21206594 +(1,2894:6919131,21206594:0,0,0 +) +g1,2894:7246811,21206594 +) +k1,2895:7246811,21206594:0 +h1,2895:9459831,21206594:0,0,0 +k1,2895:31966991,21206594:22507160 +g1,2895:31966991,21206594 +) +(1,2899:7246811,21938308:24720180,404226,76021 +(1,2897:7246811,21938308:0,0,0 +g1,2897:7246811,21938308 +g1,2897:7246811,21938308 +g1,2897:6919131,21938308 +(1,2897:6919131,21938308:0,0,0 +) +g1,2897:7246811,21938308 +) +g1,2899:8195248,21938308 +g1,2899:9459831,21938308 +g1,2899:10724414,21938308 +g1,2899:11988997,21938308 +g1,2899:13253580,21938308 +g1,2899:14518163,21938308 +g1,2899:15782746,21938308 +g1,2899:17047329,21938308 +g1,2899:18311912,21938308 +g1,2899:19576495,21938308 +h1,2899:20524932,21938308:0,0,0 +k1,2899:31966991,21938308:11442059 +g1,2899:31966991,21938308 +) +(1,2901:7246811,23259846:24720180,404226,76021 +(1,2900:7246811,23259846:0,0,0 +g1,2900:7246811,23259846 +g1,2900:7246811,23259846 +g1,2900:6919131,23259846 +(1,2900:6919131,23259846:0,0,0 +) +g1,2900:7246811,23259846 +) +k1,2901:7246811,23259846:0 +h1,2901:10408268,23259846:0,0,0 +k1,2901:31966992,23259846:21558724 +g1,2901:31966992,23259846 +) +(1,2905:7246811,23991560:24720180,404226,76021 +(1,2903:7246811,23991560:0,0,0 +g1,2903:7246811,23991560 +g1,2903:7246811,23991560 +g1,2903:6919131,23991560 +(1,2903:6919131,23991560:0,0,0 +) +g1,2903:7246811,23991560 +) +g1,2905:8195248,23991560 +g1,2905:9459831,23991560 +g1,2905:10724414,23991560 +g1,2905:11988997,23991560 +g1,2905:13253580,23991560 +g1,2905:14518163,23991560 +g1,2905:15782746,23991560 +g1,2905:17047329,23991560 +g1,2905:18311912,23991560 +g1,2905:19576495,23991560 +h1,2905:20524932,23991560:0,0,0 +k1,2905:31966991,23991560:11442059 +g1,2905:31966991,23991560 +) +(1,2907:7246811,25313098:24720180,404226,76021 +(1,2906:7246811,25313098:0,0,0 +g1,2906:7246811,25313098 +g1,2906:7246811,25313098 +g1,2906:6919131,25313098 +(1,2906:6919131,25313098:0,0,0 +) +g1,2906:7246811,25313098 +) +k1,2907:7246811,25313098:0 +h1,2907:8827540,25313098:0,0,0 +k1,2907:31966992,25313098:23139452 +g1,2907:31966992,25313098 +) +(1,2911:7246811,26044812:24720180,404226,76021 +(1,2909:7246811,26044812:0,0,0 +g1,2909:7246811,26044812 +g1,2909:7246811,26044812 +g1,2909:6919131,26044812 +(1,2909:6919131,26044812:0,0,0 +) +g1,2909:7246811,26044812 +) +g1,2911:8195248,26044812 +g1,2911:9459831,26044812 +g1,2911:10724414,26044812 +g1,2911:11988997,26044812 +g1,2911:13253580,26044812 +g1,2911:14518163,26044812 +g1,2911:15782746,26044812 +g1,2911:17047329,26044812 +g1,2911:18311912,26044812 +g1,2911:19576495,26044812 +h1,2911:20524932,26044812:0,0,0 +k1,2911:31966991,26044812:11442059 +g1,2911:31966991,26044812 +) +] +) +g1,2912:31966991,26120833 +g1,2912:7246811,26120833 +g1,2912:7246811,26120833 +g1,2912:31966991,26120833 +g1,2912:31966991,26120833 +) +h1,2912:7246811,26317441:0,0,0 +(1,2916:7246811,27683217:24720180,513147,134348 +h1,2915:7246811,27683217:983040,0,0 +k1,2915:10119527,27683217:227683 +k1,2915:11550451,27683217:227683 +k1,2915:15560872,27683217:227683 +k1,2915:16656907,27683217:227683 +k1,2915:17988872,27683217:227683 +k1,2915:19828085,27683217:227683 +k1,2915:21340274,27683217:227683 +k1,2915:22033918,27683217:227683 +k1,2915:24916464,27683217:227683 +k1,2915:27570945,27683217:227683 +k1,2915:28790188,27683217:227683 +k1,2915:30084142,27683217:227683 +k1,2915:31966991,27683217:0 +) +(1,2916:7246811,28524705:24720180,505283,134348 +k1,2915:10460369,28524705:223806 +k1,2915:12064362,28524705:223805 +k1,2915:13279728,28524705:223806 +k1,2915:16592900,28524705:223805 +k1,2915:17468134,28524705:223806 +k1,2915:18711024,28524705:223805 +k1,2915:20318950,28524705:223806 +k1,2915:22402011,28524705:223805 +k1,2915:24045982,28524705:223806 +k1,2915:27131744,28524705:223805 +k1,2915:29759411,28524705:223806 +k1,2915:30611051,28524705:223805 +k1,2916:31966991,28524705:0 +) +(1,2916:7246811,29366193:24720180,513147,134348 +k1,2915:9928722,29366193:213825 +(1,2915:9928722,29366193:0,452978,115847 +r1,2919:12045547,29366193:2116825,568825,115847 +k1,2915:9928722,29366193:-2116825 +) +(1,2915:9928722,29366193:2116825,452978,115847 +k1,2915:9928722,29366193:3277 +h1,2915:12042270,29366193:0,411205,112570 +) +k1,2915:12259372,29366193:213825 +k1,2915:14222353,29366193:213825 +k1,2915:16446823,29366193:213825 +k1,2915:18883629,29366193:213825 +k1,2915:19783616,29366193:213825 +k1,2915:20463402,29366193:213825 +k1,2915:22057415,29366193:213825 +k1,2915:24190134,29366193:213825 +k1,2915:27322277,29366193:213825 +k1,2915:29271495,29366193:213825 +k1,2916:31966991,29366193:0 +) +(1,2916:7246811,30207681:24720180,452978,115847 +(1,2915:7246811,30207681:0,452978,115847 +r1,2919:9715348,30207681:2468537,568825,115847 +k1,2915:7246811,30207681:-2468537 +) +(1,2915:7246811,30207681:2468537,452978,115847 +k1,2915:7246811,30207681:3277 +h1,2915:9712071,30207681:0,411205,112570 +) +k1,2916:31966990,30207681:22077972 +g1,2916:31966990,30207681 +) +(1,2918:7246811,31049169:24720180,513147,134348 +h1,2917:7246811,31049169:983040,0,0 +k1,2917:9838013,31049169:227318 +k1,2917:12726749,31049169:227319 +k1,2917:14239883,31049169:227318 +k1,2917:16458185,31049169:227318 +k1,2917:18015885,31049169:227319 +k1,2917:19399913,31049169:227318 +k1,2917:20731513,31049169:227318 +k1,2917:22596576,31049169:227318 +k1,2917:23890166,31049169:227319 +k1,2917:24784640,31049169:227318 +k1,2917:25426773,31049169:227290 +k1,2917:26442489,31049169:227318 +k1,2917:28255779,31049169:227319 +k1,2917:31041623,31049169:227318 +k1,2918:31966991,31049169:0 +) +(1,2918:7246811,31890657:24720180,473825,126483 +k1,2918:31966992,31890657:20026492 +g1,2918:31966992,31890657 +) +] +) +] +r1,2919:32583029,32606964:26214,26746083,0 +) +] +) +) +g1,2919:32583029,32017140 +) +h1,2919:6630773,32633178:0,0,0 +(1,2922:6630773,33998954:25952256,513147,134348 +h1,2921:6630773,33998954:983040,0,0 +k1,2921:8244983,33998954:143582 +k1,2921:11127371,33998954:143638 +k1,2921:14345303,33998954:143638 +k1,2921:15298310,33998954:143637 +k1,2921:17750126,33998954:143638 +k1,2921:18425260,33998954:143637 +k1,2921:20829235,33998954:143638 +k1,2921:22611928,33998954:143638 +k1,2921:24023031,33998954:143637 +k1,2921:24937372,33998954:143638 +k1,2921:28342736,33998954:143637 +k1,2921:29169259,33998954:143638 +k1,2921:32583029,33998954:0 +) +(1,2922:6630773,34840442:25952256,505283,126483 +g1,2921:8742998,34840442 +g1,2921:10138914,34840442 +g1,2921:11939843,34840442 +g1,2921:13987187,34840442 +g1,2921:17170926,34840442 +g1,2921:17901652,34840442 +g1,2921:18752309,34840442 +g1,2921:20044023,34840442 +(1,2921:20044023,34840442:0,452978,115847 +r1,2921:22160848,34840442:2116825,568825,115847 +k1,2921:20044023,34840442:-2116825 +) +(1,2921:20044023,34840442:2116825,452978,115847 +k1,2921:20044023,34840442:3277 +h1,2921:22157571,34840442:0,411205,112570 +) +k1,2922:32583029,34840442:10248511 +g1,2922:32583029,34840442 +) +v1,2924:6630773,36030908:0,393216,0 +(1,2938:6630773,39765691:25952256,4127999,196608 +g1,2938:6630773,39765691 +g1,2938:6630773,39765691 +g1,2938:6434165,39765691 +(1,2938:6434165,39765691:0,4127999,196608 +r1,2938:32779637,39765691:26345472,4324607,196608 +k1,2938:6434165,39765691:-26345472 +) +(1,2938:6434165,39765691:26345472,4127999,196608 +[1,2938:6630773,39765691:25952256,3931391,0 +(1,2926:6630773,36238526:25952256,404226,101187 +(1,2925:6630773,36238526:0,0,0 +g1,2925:6630773,36238526 +g1,2925:6630773,36238526 +g1,2925:6303093,36238526 +(1,2925:6303093,36238526:0,0,0 +) +g1,2925:6630773,36238526 +) +g1,2926:9792230,36238526 +g1,2926:10740668,36238526 +g1,2926:12637543,36238526 +g1,2926:13585981,36238526 +g1,2926:14850564,36238526 +g1,2926:15799002,36238526 +h1,2926:16431294,36238526:0,0,0 +k1,2926:32583029,36238526:16151735 +g1,2926:32583029,36238526 +) +(1,2927:6630773,36904704:25952256,404226,101187 +h1,2927:6630773,36904704:0,0,0 +k1,2927:6630773,36904704:0 +h1,2927:11372958,36904704:0,0,0 +k1,2927:32583030,36904704:21210072 +g1,2927:32583030,36904704 +) +(1,2931:6630773,37636418:25952256,404226,76021 +(1,2929:6630773,37636418:0,0,0 +g1,2929:6630773,37636418 +g1,2929:6630773,37636418 +g1,2929:6303093,37636418 +(1,2929:6303093,37636418:0,0,0 +) +g1,2929:6630773,37636418 +) +g1,2931:7579210,37636418 +g1,2931:8843793,37636418 +g1,2931:9159939,37636418 +g1,2931:9792231,37636418 +g1,2931:10108377,37636418 +g1,2931:10740669,37636418 +g1,2931:11056815,37636418 +g1,2931:11689107,37636418 +g1,2931:12637544,37636418 +h1,2931:13269835,37636418:0,0,0 +k1,2931:32583029,37636418:19313194 +g1,2931:32583029,37636418 +) +(1,2933:6630773,38957956:25952256,404226,107478 +(1,2932:6630773,38957956:0,0,0 +g1,2932:6630773,38957956 +g1,2932:6630773,38957956 +g1,2932:6303093,38957956 +(1,2932:6303093,38957956:0,0,0 +) +g1,2932:6630773,38957956 +) +k1,2933:6630773,38957956:0 +g1,2933:11689105,38957956 +g1,2933:15166708,38957956 +g1,2933:15799000,38957956 +h1,2933:17379729,38957956:0,0,0 +k1,2933:32583029,38957956:15203300 +g1,2933:32583029,38957956 +) +(1,2937:6630773,39689670:25952256,404226,76021 +(1,2935:6630773,39689670:0,0,0 +g1,2935:6630773,39689670 +g1,2935:6630773,39689670 +g1,2935:6303093,39689670 +(1,2935:6303093,39689670:0,0,0 +) +g1,2935:6630773,39689670 +) +g1,2937:7579210,39689670 +g1,2937:8843793,39689670 +g1,2937:9792230,39689670 +g1,2937:10740667,39689670 +g1,2937:11056813,39689670 +g1,2937:11689105,39689670 +g1,2937:12005251,39689670 +g1,2937:12637543,39689670 +g1,2937:12953689,39689670 +h1,2937:13269835,39689670:0,0,0 +k1,2937:32583029,39689670:19313194 +g1,2937:32583029,39689670 +) +] +) +g1,2938:32583029,39765691 +g1,2938:6630773,39765691 +g1,2938:6630773,39765691 +g1,2938:32583029,39765691 +g1,2938:32583029,39765691 +) +h1,2938:6630773,39962299:0,0,0 +(1,2942:6630773,41328075:25952256,513147,134348 +h1,2941:6630773,41328075:983040,0,0 +k1,2941:8743186,41328075:226942 +k1,2941:11434281,41328075:226941 +k1,2941:12899198,41328075:226942 +k1,2941:13785432,41328075:226942 +k1,2941:16272711,41328075:226942 +k1,2941:16855512,41328075:226941 +k1,2941:19234001,41328075:226942 +k1,2941:22104665,41328075:226942 +k1,2941:24186275,41328075:226941 +k1,2941:25222587,41328075:226942 +k1,2941:25805389,41328075:226942 +k1,2941:28794674,41328075:226942 +k1,2941:31173162,41328075:226941 +k1,2941:31931601,41328075:226942 +k1,2941:32583029,41328075:0 +) +(1,2942:6630773,42169563:25952256,513147,134348 +k1,2941:9601284,42169563:238315 +k1,2941:11233549,42169563:238314 +(1,2941:11233549,42169563:0,452978,115847 +r1,2941:13702086,42169563:2468537,568825,115847 +k1,2941:11233549,42169563:-2468537 +) +(1,2941:11233549,42169563:2468537,452978,115847 +k1,2941:11233549,42169563:3277 +h1,2941:13698809,42169563:0,411205,112570 +) +k1,2941:13940401,42169563:238315 +k1,2941:14534575,42169563:238314 +k1,2941:16750767,42169563:238315 +k1,2941:17648373,42169563:238314 +k1,2941:21067806,42169563:238315 +k1,2941:23732918,42169563:238314 +k1,2941:25255739,42169563:238315 +k1,2941:26598335,42169563:238314 +k1,2941:27584416,42169563:238315 +k1,2941:29335956,42169563:238314 +k1,2941:30225699,42169563:238315 +k1,2941:32583029,42169563:0 +) +(1,2942:6630773,43011051:25952256,505283,134348 +g1,2941:7849087,43011051 +k1,2942:32583028,43011051:21830696 +g1,2942:32583028,43011051 +) +v1,2944:6630773,44201517:0,393216,0 +(1,2964:6630773,45140849:25952256,1332548,196608 +g1,2964:6630773,45140849 +g1,2964:6630773,45140849 +g1,2964:6434165,45140849 +(1,2964:6434165,45140849:0,1332548,196608 +r1,2964:32779637,45140849:26345472,1529156,196608 +k1,2964:6434165,45140849:-26345472 +) +(1,2964:6434165,45140849:26345472,1332548,196608 +[1,2964:6630773,45140849:25952256,1135940,0 +(1,2946:6630773,44409135:25952256,404226,101187 +(1,2945:6630773,44409135:0,0,0 +g1,2945:6630773,44409135 +g1,2945:6630773,44409135 +g1,2945:6303093,44409135 +(1,2945:6303093,44409135:0,0,0 +) +g1,2945:6630773,44409135 +) +k1,2946:6630773,44409135:0 +h1,2946:11689103,44409135:0,0,0 +k1,2946:32583029,44409135:20893926 +g1,2946:32583029,44409135 +) +(1,2950:6630773,45140849:25952256,404226,76021 +(1,2948:6630773,45140849:0,0,0 +g1,2948:6630773,45140849 +g1,2948:6630773,45140849 +g1,2948:6303093,45140849 +(1,2948:6303093,45140849:0,0,0 +) +g1,2948:6630773,45140849 +) +g1,2950:7579210,45140849 +g1,2950:8843793,45140849 +g1,2950:9476085,45140849 +g1,2950:10108377,45140849 +g1,2950:10740669,45140849 +g1,2950:11372961,45140849 +h1,2950:11689107,45140849:0,0,0 +k1,2950:32583029,45140849:20893922 +g1,2950:32583029,45140849 +) +] +) +g1,2964:32583029,45140849 +g1,2964:6630773,45140849 +g1,2964:6630773,45140849 +g1,2964:32583029,45140849 +g1,2964:32583029,45140849 +) +] +(1,2964:32583029,45706769:0,0,0 +g1,2964:32583029,45706769 +) +) +] +(1,2964:6630773,47279633:25952256,0,0 +h1,2964:6630773,47279633:25952256,0,0 +) +] +h1,2964:4262630,4025873:0,0,0 ] !21995 }61 -Input:404:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:405:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:406:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:407:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:408:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:409:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:410:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:411:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:412:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:413:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:414:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:415:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:416:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 +Input:400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1194 {62 -[1,3026:4262630,47279633:28320399,43253760,0 -(1,3026:4262630,4025873:0,0,0 -[1,3026:-473657,4025873:25952256,0,0 -(1,3026:-473657,-710414:25952256,0,0 -h1,3026:-473657,-710414:0,0,0 -(1,3026:-473657,-710414:0,0,0 -(1,3026:-473657,-710414:0,0,0 -g1,3026:-473657,-710414 -(1,3026:-473657,-710414:65781,0,65781 -g1,3026:-407876,-710414 -[1,3026:-407876,-644633:0,0,0 +[1,3032:4262630,47279633:28320399,43253760,0 +(1,3032:4262630,4025873:0,0,0 +[1,3032:-473657,4025873:25952256,0,0 +(1,3032:-473657,-710414:25952256,0,0 +h1,3032:-473657,-710414:0,0,0 +(1,3032:-473657,-710414:0,0,0 +(1,3032:-473657,-710414:0,0,0 +g1,3032:-473657,-710414 +(1,3032:-473657,-710414:65781,0,65781 +g1,3032:-407876,-710414 +[1,3032:-407876,-644633:0,0,0 ] ) -k1,3026:-473657,-710414:-65781 +k1,3032:-473657,-710414:-65781 ) ) -k1,3026:25478599,-710414:25952256 -g1,3026:25478599,-710414 +k1,3032:25478599,-710414:25952256 +g1,3032:25478599,-710414 ) ] ) -[1,3026:6630773,47279633:25952256,43253760,0 -[1,3026:6630773,4812305:25952256,786432,0 -(1,3026:6630773,4812305:25952256,505283,126483 -(1,3026:6630773,4812305:25952256,505283,126483 -g1,3026:3078558,4812305 -[1,3026:3078558,4812305:0,0,0 -(1,3026:3078558,2439708:0,1703936,0 -k1,3026:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3026:2537886,2439708:1179648,16384,0 +[1,3032:6630773,47279633:25952256,43253760,0 +[1,3032:6630773,4812305:25952256,786432,0 +(1,3032:6630773,4812305:25952256,505283,126483 +(1,3032:6630773,4812305:25952256,505283,126483 +g1,3032:3078558,4812305 +[1,3032:3078558,4812305:0,0,0 +(1,3032:3078558,2439708:0,1703936,0 +k1,3032:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3032:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3026:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3032:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3026:3078558,4812305:0,0,0 -(1,3026:3078558,2439708:0,1703936,0 -g1,3026:29030814,2439708 -g1,3026:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3026:36151628,1915420:16384,1179648,0 +[1,3032:3078558,4812305:0,0,0 +(1,3032:3078558,2439708:0,1703936,0 +g1,3032:29030814,2439708 +g1,3032:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3032:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3026:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3032:37855564,2439708:1179648,16384,0 ) ) -k1,3026:3078556,2439708:-34777008 +k1,3032:3078556,2439708:-34777008 ) ] -[1,3026:3078558,4812305:0,0,0 -(1,3026:3078558,49800853:0,16384,2228224 -k1,3026:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3026:2537886,49800853:1179648,16384,0 +[1,3032:3078558,4812305:0,0,0 +(1,3032:3078558,49800853:0,16384,2228224 +k1,3032:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3032:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3026:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3032:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3026:3078558,4812305:0,0,0 -(1,3026:3078558,49800853:0,16384,2228224 -g1,3026:29030814,49800853 -g1,3026:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3026:36151628,51504789:16384,1179648,0 +[1,3032:3078558,4812305:0,0,0 +(1,3032:3078558,49800853:0,16384,2228224 +g1,3032:29030814,49800853 +g1,3032:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3032:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3026:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3032:37855564,49800853:1179648,16384,0 ) ) -k1,3026:3078556,49800853:-34777008 +k1,3032:3078556,49800853:-34777008 ) ] -g1,3026:6630773,4812305 -g1,3026:6630773,4812305 -g1,3026:9472414,4812305 -g1,3026:10882093,4812305 -g1,3026:16529985,4812305 -g1,3026:18796220,4812305 -k1,3026:31786111,4812305:12989891 -) +g1,3032:6630773,4812305 +g1,3032:6630773,4812305 +g1,3032:9472414,4812305 +g1,3032:10882093,4812305 +g1,3032:16529985,4812305 +g1,3032:18796220,4812305 +k1,3032:31786111,4812305:12989891 +) ) ] -[1,3026:6630773,45706769:25952256,40108032,0 -(1,3026:6630773,45706769:25952256,40108032,0 -(1,3026:6630773,45706769:0,0,0 -g1,3026:6630773,45706769 +[1,3032:6630773,45706769:25952256,40108032,0 +(1,3032:6630773,45706769:25952256,40108032,0 +(1,3032:6630773,45706769:0,0,0 +g1,3032:6630773,45706769 ) -[1,3026:6630773,45706769:25952256,40108032,0 -v1,2958:6630773,6254097:0,393216,0 -(1,2958:6630773,10014046:25952256,4153165,196608 -g1,2958:6630773,10014046 -g1,2958:6630773,10014046 -g1,2958:6434165,10014046 -(1,2958:6434165,10014046:0,4153165,196608 -r1,2958:32779637,10014046:26345472,4349773,196608 -k1,2958:6434165,10014046:-26345472 +[1,3032:6630773,45706769:25952256,40108032,0 +v1,2964:6630773,6254097:0,393216,0 +(1,2964:6630773,10014046:25952256,4153165,196608 +g1,2964:6630773,10014046 +g1,2964:6630773,10014046 +g1,2964:6434165,10014046 +(1,2964:6434165,10014046:0,4153165,196608 +r1,2964:32779637,10014046:26345472,4349773,196608 +k1,2964:6434165,10014046:-26345472 ) -(1,2958:6434165,10014046:26345472,4153165,196608 -[1,2958:6630773,10014046:25952256,3956557,0 -(1,2946:6630773,6461715:25952256,404226,101187 -(1,2945:6630773,6461715:0,0,0 -g1,2945:6630773,6461715 -g1,2945:6630773,6461715 -g1,2945:6303093,6461715 -(1,2945:6303093,6461715:0,0,0 -) -g1,2945:6630773,6461715 -) -k1,2946:6630773,6461715:0 -h1,2946:15166706,6461715:0,0,0 -k1,2946:32583030,6461715:17416324 -g1,2946:32583030,6461715 -) -(1,2950:6630773,7193429:25952256,404226,76021 -(1,2948:6630773,7193429:0,0,0 -g1,2948:6630773,7193429 -g1,2948:6630773,7193429 -g1,2948:6303093,7193429 -(1,2948:6303093,7193429:0,0,0 -) -g1,2948:6630773,7193429 -) -g1,2950:7579210,7193429 -g1,2950:8843793,7193429 -g1,2950:9159939,7193429 -g1,2950:9792231,7193429 -g1,2950:10108377,7193429 -g1,2950:10740669,7193429 -g1,2950:11056815,7193429 -g1,2950:11689107,7193429 -g1,2950:12637544,7193429 -h1,2950:13269835,7193429:0,0,0 -k1,2950:32583029,7193429:19313194 -g1,2950:32583029,7193429 -) -(1,2952:6630773,8514967:25952256,404226,101187 -(1,2951:6630773,8514967:0,0,0 -g1,2951:6630773,8514967 -g1,2951:6630773,8514967 -g1,2951:6303093,8514967 -(1,2951:6303093,8514967:0,0,0 -) -g1,2951:6630773,8514967 -) -g1,2952:11372959,8514967 -g1,2952:12321397,8514967 -g1,2952:14850564,8514967 -g1,2952:16747439,8514967 -g1,2952:18328168,8514967 -g1,2952:20225043,8514967 -h1,2952:21489626,8514967:0,0,0 -k1,2952:32583029,8514967:11093403 -g1,2952:32583029,8514967 -) -(1,2953:6630773,9181145:25952256,404226,101187 -h1,2953:6630773,9181145:0,0,0 -k1,2953:6630773,9181145:0 -h1,2953:16747434,9181145:0,0,0 -k1,2953:32583029,9181145:15835595 -g1,2953:32583029,9181145 -) -(1,2957:6630773,9912859:25952256,404226,101187 -(1,2955:6630773,9912859:0,0,0 -g1,2955:6630773,9912859 -g1,2955:6630773,9912859 -g1,2955:6303093,9912859 -(1,2955:6303093,9912859:0,0,0 -) -g1,2955:6630773,9912859 -) -g1,2957:7579210,9912859 -g1,2957:8843793,9912859 -g1,2957:10424522,9912859 -g1,2957:12005251,9912859 -g1,2957:13269834,9912859 -g1,2957:13585980,9912859 -g1,2957:15166709,9912859 -h1,2957:16115146,9912859:0,0,0 -k1,2957:32583029,9912859:16467883 -g1,2957:32583029,9912859 -) -] -) -g1,2958:32583029,10014046 -g1,2958:6630773,10014046 -g1,2958:6630773,10014046 -g1,2958:32583029,10014046 -g1,2958:32583029,10014046 -) -h1,2958:6630773,10210654:0,0,0 -v1,2962:6630773,12041383:0,393216,0 -(1,2991:6630773,29347687:25952256,17699520,616038 -g1,2991:6630773,29347687 -(1,2991:6630773,29347687:25952256,17699520,616038 -(1,2991:6630773,29963725:25952256,18315558,0 -[1,2991:6630773,29963725:25952256,18315558,0 -(1,2991:6630773,29937511:25952256,18263130,0 -r1,2991:6656987,29937511:26214,18263130,0 -[1,2991:6656987,29937511:25899828,18263130,0 -(1,2991:6656987,29347687:25899828,17083482,0 -[1,2991:7246811,29347687:24720180,17083482,0 -(1,2963:7246811,13426090:24720180,1161885,196608 -(1,2962:7246811,13426090:0,1161885,196608 -r1,2991:8794447,13426090:1547636,1358493,196608 -k1,2962:7246811,13426090:-1547636 -) -(1,2962:7246811,13426090:1547636,1161885,196608 -) -k1,2962:8928543,13426090:134096 -k1,2962:9550162,13426090:134031 -k1,2962:12360747,13426090:134095 -k1,2962:14476652,13426090:134096 -k1,2962:15262176,13426090:134096 -k1,2962:17656608,13426090:134095 -k1,2962:19075210,13426090:134096 -k1,2962:20077658,13426090:134096 -k1,2962:21548687,13426090:134095 -k1,2962:22984328,13426090:134096 -k1,2962:23649921,13426090:134096 -k1,2962:26588958,13426090:134096 -k1,2962:28053434,13426090:134095 -k1,2962:29939307,13426090:134096 -k1,2962:31966991,13426090:0 -) -(1,2963:7246811,14267578:24720180,513147,126483 -k1,2962:8182196,14267578:276093 -k1,2962:9909911,14267578:276093 -k1,2962:11866347,14267578:276093 -k1,2962:13134000,14267578:276093 -k1,2962:15815920,14267578:276093 -k1,2962:16708051,14267578:276093 -k1,2962:17340004,14267578:276093 -k1,2962:19767644,14267578:276093 -k1,2962:20997286,14267578:276093 -k1,2962:22803645,14267578:276093 -k1,2962:23731166,14267578:276093 -k1,2962:25099744,14267578:276093 -k1,2962:26548276,14267578:276093 -k1,2962:29850166,14267578:276093 -(1,2962:29850166,14267578:0,452978,115847 -r1,2991:31966991,14267578:2116825,568825,115847 -k1,2962:29850166,14267578:-2116825 -) -(1,2962:29850166,14267578:2116825,452978,115847 -k1,2962:29850166,14267578:3277 -h1,2962:31963714,14267578:0,411205,112570 -) -k1,2962:31966991,14267578:0 -) -(1,2963:7246811,15109066:24720180,513147,134348 -k1,2962:8622770,15109066:184514 -(1,2962:8622770,15109066:0,452978,115847 -r1,2991:10387883,15109066:1765113,568825,115847 -k1,2962:8622770,15109066:-1765113 -) -(1,2962:8622770,15109066:1765113,452978,115847 -k1,2962:8622770,15109066:3277 -h1,2962:10384606,15109066:0,411205,112570 -) -k1,2962:10572398,15109066:184515 -k1,2962:10572398,15109066:0 -k1,2962:10930582,15109066:184514 -k1,2962:12311784,15109066:184515 -k1,2962:14737629,15109066:184514 -k1,2962:15581436,15109066:184515 -k1,2962:17462677,15109066:184514 -k1,2962:20672989,15109066:184515 -k1,2962:23975706,15109066:184514 -k1,2962:25294649,15109066:184515 -k1,2962:27463593,15109066:184514 -k1,2962:28334270,15109066:184515 -k1,2962:30032010,15109066:184514 -k1,2962:30832563,15109066:184515 -k1,2962:31966991,15109066:0 -) -(1,2963:7246811,15950554:24720180,513147,134348 -k1,2962:9374628,15950554:144698 -k1,2962:12364243,15950554:144698 -k1,2962:13456592,15950554:144698 -k1,2962:15486761,15950554:144698 -k1,2962:16468354,15950554:144698 -k1,2962:17144549,15950554:144698 -k1,2962:18059951,15950554:144699 -k1,2962:22352423,15950554:144698 -k1,2962:22984655,15950554:144644 -k1,2962:24265092,15950554:144698 -k1,2962:24941287,15950554:144698 -k1,2962:25441845,15950554:144698 -k1,2962:27431381,15950554:144698 -k1,2962:28235371,15950554:144698 -k1,2962:31966991,15950554:0 -) -(1,2963:7246811,16792042:24720180,513147,134348 -k1,2962:10134748,16792042:151154 -k1,2962:12470217,16792042:151154 -k1,2962:13439260,16792042:151154 -k1,2962:14609500,16792042:151155 -k1,2962:17625888,16792042:151154 -k1,2962:18308539,16792042:151154 -k1,2962:19111121,16792042:151154 -k1,2962:21076967,16792042:151154 -k1,2962:22247206,16792042:151154 -k1,2962:24884141,16792042:151154 -k1,2962:25694588,16792042:151155 -k1,2962:27873426,16792042:151154 -k1,2962:28683872,16792042:151154 -k1,2962:30286648,16792042:151154 -k1,2962:31966991,16792042:0 -) -(1,2963:7246811,17633530:24720180,513147,126483 -g1,2962:10025537,17633530 -g1,2962:11093118,17633530 -g1,2962:12822613,17633530 -g1,2962:14327975,17633530 -g1,2962:15178632,17633530 -g1,2962:16647949,17633530 -g1,2962:17866263,17633530 -k1,2963:31966991,17633530:11949181 -g1,2963:31966991,17633530 -) -v1,2965:7246811,18823996:0,393216,0 -(1,2987:7246811,25975844:24720180,7545064,196608 -g1,2987:7246811,25975844 -g1,2987:7246811,25975844 -g1,2987:7050203,25975844 -(1,2987:7050203,25975844:0,7545064,196608 -r1,2991:32163599,25975844:25113396,7741672,196608 -k1,2987:7050203,25975844:-25113396 -) -(1,2987:7050203,25975844:25113396,7545064,196608 -[1,2987:7246811,25975844:24720180,7348456,0 -(1,2967:7246811,19031614:24720180,404226,101187 -(1,2966:7246811,19031614:0,0,0 -g1,2966:7246811,19031614 -g1,2966:7246811,19031614 -g1,2966:6919131,19031614 -(1,2966:6919131,19031614:0,0,0 -) -g1,2966:7246811,19031614 -) -g1,2967:10724414,19031614 -g1,2967:11672852,19031614 -k1,2967:11672852,19031614:0 -h1,2967:21789517,19031614:0,0,0 -k1,2967:31966991,19031614:10177474 -g1,2967:31966991,19031614 -) -(1,2968:7246811,19697792:24720180,404226,101187 -h1,2968:7246811,19697792:0,0,0 -h1,2968:10408268,19697792:0,0,0 -k1,2968:31966992,19697792:21558724 -g1,2968:31966992,19697792 -) -(1,2972:7246811,20429506:24720180,404226,107478 -(1,2970:7246811,20429506:0,0,0 -g1,2970:7246811,20429506 -g1,2970:7246811,20429506 -g1,2970:6919131,20429506 -(1,2970:6919131,20429506:0,0,0 -) -g1,2970:7246811,20429506 -) -g1,2972:8195248,20429506 -g1,2972:9459831,20429506 -g1,2972:10724414,20429506 -g1,2972:11988997,20429506 -g1,2972:13253580,20429506 -g1,2972:14518163,20429506 -g1,2972:15782746,20429506 -g1,2972:17047329,20429506 -g1,2972:18311912,20429506 -g1,2972:19576495,20429506 -h1,2972:20524932,20429506:0,0,0 -k1,2972:31966991,20429506:11442059 -g1,2972:31966991,20429506 -) -(1,2974:7246811,21751044:24720180,404226,101187 -(1,2973:7246811,21751044:0,0,0 -g1,2973:7246811,21751044 -g1,2973:7246811,21751044 -g1,2973:6919131,21751044 -(1,2973:6919131,21751044:0,0,0 -) -g1,2973:7246811,21751044 -) -k1,2974:7246811,21751044:0 -h1,2974:12305142,21751044:0,0,0 -k1,2974:31966990,21751044:19661848 -g1,2974:31966990,21751044 -) -(1,2978:7246811,22482758:24720180,404226,107478 -(1,2976:7246811,22482758:0,0,0 -g1,2976:7246811,22482758 -g1,2976:7246811,22482758 -g1,2976:6919131,22482758 -(1,2976:6919131,22482758:0,0,0 -) -g1,2976:7246811,22482758 -) -g1,2978:8195248,22482758 -g1,2978:9459831,22482758 -g1,2978:10724414,22482758 -g1,2978:11988997,22482758 -g1,2978:13253580,22482758 -g1,2978:14518163,22482758 -g1,2978:15782746,22482758 -g1,2978:17047329,22482758 -g1,2978:18311912,22482758 -g1,2978:19576495,22482758 -h1,2978:20524932,22482758:0,0,0 -k1,2978:31966991,22482758:11442059 -g1,2978:31966991,22482758 -) -(1,2980:7246811,23804296:24720180,404226,101187 -(1,2979:7246811,23804296:0,0,0 -g1,2979:7246811,23804296 -g1,2979:7246811,23804296 -g1,2979:6919131,23804296 -(1,2979:6919131,23804296:0,0,0 -) -g1,2979:7246811,23804296 -) -k1,2980:7246811,23804296:0 -k1,2980:7246811,23804296:0 -h1,2980:13885871,23804296:0,0,0 -k1,2980:31966991,23804296:18081120 -g1,2980:31966991,23804296 -) -(1,2986:7246811,24536010:24720180,404226,107478 -(1,2982:7246811,24536010:0,0,0 -g1,2982:7246811,24536010 -g1,2982:7246811,24536010 -g1,2982:6919131,24536010 -(1,2982:6919131,24536010:0,0,0 -) -g1,2982:7246811,24536010 -) -g1,2986:8195248,24536010 -g1,2986:9459831,24536010 -g1,2986:11672851,24536010 -h1,2986:14202016,24536010:0,0,0 -k1,2986:31966992,24536010:17764976 -g1,2986:31966992,24536010 -) -(1,2986:7246811,25202188:24720180,404226,107478 -h1,2986:7246811,25202188:0,0,0 -g1,2986:8195248,25202188 -g1,2986:8511394,25202188 -g1,2986:8827540,25202188 -g1,2986:11672851,25202188 -g1,2986:12937434,25202188 -g1,2986:14834308,25202188 -g1,2986:15466600,25202188 -g1,2986:16098892,25202188 -g1,2986:16731184,25202188 -g1,2986:17363476,25202188 -g1,2986:17995768,25202188 -h1,2986:18311914,25202188:0,0,0 -k1,2986:31966991,25202188:13655077 -g1,2986:31966991,25202188 -) -(1,2986:7246811,25868366:24720180,404226,107478 -h1,2986:7246811,25868366:0,0,0 -g1,2986:8195248,25868366 -g1,2986:8511394,25868366 -g1,2986:8827540,25868366 -g1,2986:11040560,25868366 -g1,2986:11672852,25868366 -g1,2986:12937435,25868366 -g1,2986:14834309,25868366 -g1,2986:16098892,25868366 -g1,2986:17363475,25868366 -g1,2986:18628058,25868366 -g1,2986:19892641,25868366 -g1,2986:21157224,25868366 -h1,2986:22105661,25868366:0,0,0 -k1,2986:31966991,25868366:9861330 -g1,2986:31966991,25868366 -) -] -) -g1,2987:31966991,25975844 -g1,2987:7246811,25975844 -g1,2987:7246811,25975844 -g1,2987:31966991,25975844 -g1,2987:31966991,25975844 -) -h1,2987:7246811,26172452:0,0,0 -(1,2991:7246811,27538228:24720180,513147,126483 -h1,2990:7246811,27538228:983040,0,0 -k1,2990:9597915,27538228:171377 -k1,2990:12010622,27538228:171376 -k1,2990:13373444,27538228:171377 -k1,2990:15126859,27538228:171376 -k1,2990:18814898,27538228:171377 -k1,2990:19977834,27538228:171376 -k1,2990:21524812,27538228:171377 -k1,2990:22347617,27538228:171377 -k1,2990:26552079,27538228:171376 -k1,2990:27742541,27538228:171377 -k1,2990:29684700,27538228:171376 -k1,2990:30515369,27538228:171377 -k1,2990:31966991,27538228:0 -) -(1,2991:7246811,28379716:24720180,513147,126483 -k1,2990:8974995,28379716:199229 -k1,2990:10370912,28379716:199230 -k1,2990:11718332,28379716:199229 -k1,2990:15103921,28379716:199229 -k1,2990:16725938,28379716:199230 -k1,2990:19042635,28379716:199229 -k1,2990:21937360,28379716:199229 -k1,2990:23566586,28379716:199230 -k1,2990:24417243,28379716:199229 -k1,2990:27404374,28379716:199229 -k1,2990:28622689,28379716:199230 -k1,2990:31307699,28379716:199229 -k1,2990:31966991,28379716:0 -) -(1,2991:7246811,29221204:24720180,513147,126483 -g1,2990:9473724,29221204 -g1,2990:10332245,29221204 -g1,2990:11983096,29221204 -g1,2990:13862668,29221204 -g1,2990:14677935,29221204 -g1,2990:15896249,29221204 -k1,2991:31966991,29221204:13919195 -g1,2991:31966991,29221204 -) -] -) -] -r1,2991:32583029,29937511:26214,18263130,0 -) -] -) -) -g1,2991:32583029,29347687 -) -h1,2991:6630773,29963725:0,0,0 -(1,2997:6630773,33265914:25952256,32768,229376 -(1,2997:6630773,33265914:0,32768,229376 -(1,2997:6630773,33265914:5505024,32768,229376 -r1,2997:12135797,33265914:5505024,262144,229376 -) -k1,2997:6630773,33265914:-5505024 -) -(1,2997:6630773,33265914:25952256,32768,0 -r1,2997:32583029,33265914:25952256,32768,0 -) -) -(1,2997:6630773,34870242:25952256,606339,151780 -(1,2997:6630773,34870242:2464678,582746,0 -g1,2997:6630773,34870242 -g1,2997:9095451,34870242 -) -g1,2997:12693378,34870242 -g1,2997:14403081,34870242 -g1,2997:21585565,34870242 -k1,2997:32583029,34870242:8469871 -g1,2997:32583029,34870242 -) -(1,3001:6630773,36104946:25952256,505283,134348 -k1,3000:9243740,36104946:203864 -k1,3000:10922818,36104946:203863 -k1,3000:11482542,36104946:203864 -k1,3000:13559425,36104946:203864 -k1,3000:17281917,36104946:203864 -k1,3000:18850895,36104946:203863 -k1,3000:19740921,36104946:203864 -k1,3000:20813137,36104946:203864 -k1,3000:22224173,36104946:203863 -k1,3000:24457032,36104946:203864 -k1,3000:25529248,36104946:203864 -k1,3000:26837394,36104946:203864 -k1,3000:28857260,36104946:203863 -k1,3000:30569763,36104946:203864 -k1,3000:32583029,36104946:0 -) -(1,3001:6630773,36946434:25952256,505283,126483 -k1,3000:8241150,36946434:216426 -k1,3000:10911899,36946434:216426 -(1,3000:10911899,36946434:0,452978,122846 -r1,3000:13732148,36946434:2820249,575824,122846 -k1,3000:10911899,36946434:-2820249 -) -(1,3000:10911899,36946434:2820249,452978,122846 -k1,3000:10911899,36946434:3277 -h1,3000:13728871,36946434:0,411205,112570 -) -k1,3000:14122244,36946434:216426 -k1,3000:17015816,36946434:216426 -k1,3000:18707457,36946434:216426 -k1,3000:20096323,36946434:216427 -k1,3000:24161678,36946434:216426 -k1,3000:26263575,36946434:216426 -k1,3000:27584283,36946434:216426 -k1,3000:28548475,36946434:216426 -k1,3000:31189078,36946434:216426 -k1,3001:32583029,36946434:0 -) -(1,3001:6630773,37787922:25952256,513147,126483 -(1,3000:6630773,37787922:0,452978,115847 -r1,3000:8395886,37787922:1765113,568825,115847 -k1,3000:6630773,37787922:-1765113 -) -(1,3000:6630773,37787922:1765113,452978,115847 -k1,3000:6630773,37787922:3277 -h1,3000:8392609,37787922:0,411205,112570 -) -k1,3000:8736189,37787922:166633 -(1,3000:8736189,37787922:0,452978,115847 -r1,3000:10853014,37787922:2116825,568825,115847 -k1,3000:8736189,37787922:-2116825 -) -(1,3000:8736189,37787922:2116825,452978,115847 -k1,3000:8736189,37787922:3277 -h1,3000:10849737,37787922:0,411205,112570 -) -k1,3000:11019647,37787922:166633 -k1,3000:12377725,37787922:166633 -(1,3000:12377725,37787922:0,452978,115847 -r1,3000:14494550,37787922:2116825,568825,115847 -k1,3000:12377725,37787922:-2116825 -) -(1,3000:12377725,37787922:2116825,452978,115847 -k1,3000:12377725,37787922:3277 -h1,3000:14491273,37787922:0,411205,112570 -) -k1,3000:14834853,37787922:166633 -k1,3000:15416296,37787922:166600 -k1,3000:17562772,37787922:166633 -k1,3000:18833687,37787922:166633 -k1,3000:20475535,37787922:166633 -k1,3000:21773975,37787922:166633 -k1,3000:24426388,37787922:166632 -k1,3000:25252313,37787922:166633 -k1,3000:29267875,37787922:166633 -k1,3000:30901204,37787922:166633 -k1,3000:31423697,37787922:166633 -k1,3001:32583029,37787922:0 -) -(1,3001:6630773,38629410:25952256,505283,134348 -k1,3000:7725837,38629410:168385 -k1,3000:11412850,38629410:168385 -k1,3000:13466705,38629410:168384 -k1,3000:14739372,38629410:168385 -k1,3000:15655523,38629410:168385 -k1,3000:18248085,38629410:168385 -k1,3000:19810421,38629410:168385 -k1,3000:22433129,38629410:168385 -(1,3000:22433129,38629410:0,452978,115847 -r1,3000:24198242,38629410:1765113,568825,115847 -k1,3000:22433129,38629410:-1765113 -) -(1,3000:22433129,38629410:1765113,452978,115847 -k1,3000:22433129,38629410:3277 -h1,3000:24194965,38629410:0,411205,112570 -) -k1,3000:24540296,38629410:168384 -k1,3000:25526570,38629410:168385 -k1,3000:28533975,38629410:168385 -(1,3000:28533975,38629410:0,452978,115847 -r1,3000:32409359,38629410:3875384,568825,115847 -k1,3000:28533975,38629410:-3875384 -) -(1,3000:28533975,38629410:3875384,452978,115847 -k1,3000:28533975,38629410:3277 -h1,3000:32406082,38629410:0,411205,112570 -) -k1,3001:32583029,38629410:0 -) -(1,3001:6630773,39470898:25952256,505283,126483 -(1,3000:6630773,39470898:0,452978,115847 -r1,3000:10506157,39470898:3875384,568825,115847 -k1,3000:6630773,39470898:-3875384 -) -(1,3000:6630773,39470898:3875384,452978,115847 -k1,3000:6630773,39470898:3277 -h1,3000:10502880,39470898:0,411205,112570 -) -g1,3000:10705386,39470898 -g1,3000:12096060,39470898 -(1,3000:12096060,39470898:0,452978,115847 -r1,3000:15619732,39470898:3523672,568825,115847 -k1,3000:12096060,39470898:-3523672 -) -(1,3000:12096060,39470898:3523672,452978,115847 -k1,3000:12096060,39470898:3277 -h1,3000:15616455,39470898:0,411205,112570 -) -g1,3000:15818961,39470898 -g1,3000:17122472,39470898 -g1,3000:18069467,39470898 -g1,3000:19781922,39470898 -g1,3000:20632579,39470898 -g1,3000:22647811,39470898 -g1,3000:23866125,39470898 -k1,3001:32583029,39470898:6988064 -g1,3001:32583029,39470898 -) -(1,3003:6630773,40312386:25952256,505283,134348 -h1,3002:6630773,40312386:983040,0,0 -k1,3002:8832084,40312386:264722 -k1,3002:10201088,40312386:264722 -k1,3002:12395191,40312386:264723 -k1,3002:13015773,40312386:264722 -k1,3002:14563690,40312386:264722 -k1,3002:16915734,40312386:264722 -k1,3002:18915849,40312386:264722 -k1,3002:20199656,40312386:264722 -(1,3002:20199656,40312386:0,452978,115847 -r1,3002:23019905,40312386:2820249,568825,115847 -k1,3002:20199656,40312386:-2820249 -) -(1,3002:20199656,40312386:2820249,452978,115847 -k1,3002:20199656,40312386:3277 -h1,3002:23016628,40312386:0,411205,112570 -) -k1,3002:23284628,40312386:264723 -k1,3002:24232235,40312386:264722 -(1,3002:24232235,40312386:0,452978,115847 -r1,3002:28107619,40312386:3875384,568825,115847 -k1,3002:24232235,40312386:-3875384 -) -(1,3002:24232235,40312386:3875384,452978,115847 -k1,3002:24232235,40312386:3277 -h1,3002:28104342,40312386:0,411205,112570 -) -k1,3002:28372341,40312386:264722 -k1,3002:32583029,40312386:0 -) -(1,3003:6630773,41153874:25952256,513147,134348 -k1,3002:8071097,41153874:243637 -k1,3002:9620866,41153874:243636 -k1,3002:12936831,41153874:243637 -k1,3002:13847624,41153874:243637 -(1,3002:13847624,41153874:0,452978,115847 -r1,3002:16667873,41153874:2820249,568825,115847 -k1,3002:13847624,41153874:-2820249 -) -(1,3002:13847624,41153874:2820249,452978,115847 -k1,3002:13847624,41153874:3277 -h1,3002:16664596,41153874:0,411205,112570 -) -k1,3002:16911510,41153874:243637 -k1,3002:17686643,41153874:243636 -k1,3002:18286140,41153874:243637 -k1,3002:20681324,41153874:243637 -k1,3002:21552795,41153874:243636 -k1,3002:22815517,41153874:243637 -k1,3002:24712627,41153874:243637 -k1,3002:26194239,41153874:243637 -k1,3002:27124037,41153874:243636 -k1,3002:29849522,41153874:243637 -k1,3002:32583029,41153874:0 -) -(1,3003:6630773,41995362:25952256,513147,134348 -g1,3002:7821562,41995362 -g1,3002:12641735,41995362 -g1,3002:13607080,41995362 -g1,3002:16675475,41995362 -g1,3002:17866264,41995362 -g1,3002:18724785,41995362 -g1,3002:19943099,41995362 -g1,3002:21795801,41995362 -k1,3003:32583029,41995362:9227471 -g1,3003:32583029,41995362 -) -v1,3005:6630773,43156161:0,393216,0 -(1,3026:6630773,45510161:25952256,2747216,196608 -g1,3026:6630773,45510161 -g1,3026:6630773,45510161 -g1,3026:6434165,45510161 -(1,3026:6434165,45510161:0,2747216,196608 -r1,3026:32779637,45510161:26345472,2943824,196608 -k1,3026:6434165,45510161:-26345472 -) -(1,3026:6434165,45510161:26345472,2747216,196608 -[1,3026:6630773,45510161:25952256,2550608,0 -(1,3007:6630773,43363779:25952256,404226,82312 -(1,3006:6630773,43363779:0,0,0 -g1,3006:6630773,43363779 -g1,3006:6630773,43363779 -g1,3006:6303093,43363779 -(1,3006:6303093,43363779:0,0,0 -) -g1,3006:6630773,43363779 -) -k1,3007:6630773,43363779:0 -g1,3007:10740668,43363779 -g1,3007:12321397,43363779 -g1,3007:12953689,43363779 -h1,3007:13585981,43363779:0,0,0 -k1,3007:32583029,43363779:18997048 -g1,3007:32583029,43363779 -) -(1,3016:6630773,44095493:25952256,404226,82312 -(1,3009:6630773,44095493:0,0,0 -g1,3009:6630773,44095493 -g1,3009:6630773,44095493 -g1,3009:6303093,44095493 -(1,3009:6303093,44095493:0,0,0 -) -g1,3009:6630773,44095493 -) -g1,3016:7579210,44095493 -g1,3016:7895356,44095493 -g1,3016:8211502,44095493 -g1,3016:8527648,44095493 -g1,3016:8843794,44095493 -g1,3016:9159940,44095493 -g1,3016:10740669,44095493 -g1,3016:12321398,44095493 -k1,3016:12321398,44095493:0 -h1,3016:13585981,44095493:0,0,0 -k1,3016:32583029,44095493:18997048 -g1,3016:32583029,44095493 -) -(1,3016:6630773,44761671:25952256,404226,82312 -h1,3016:6630773,44761671:0,0,0 -g1,3016:7579210,44761671 -g1,3016:9159938,44761671 -g1,3016:9476084,44761671 -g1,3016:9792230,44761671 -g1,3016:10108376,44761671 -g1,3016:10740668,44761671 -g1,3016:11056814,44761671 -g1,3016:11372960,44761671 -g1,3016:11689106,44761671 -g1,3016:12321398,44761671 -g1,3016:12637544,44761671 -g1,3016:12953690,44761671 -h1,3016:13585981,44761671:0,0,0 -k1,3016:32583029,44761671:18997048 -g1,3016:32583029,44761671 -) -(1,3016:6630773,45427849:25952256,404226,82312 -h1,3016:6630773,45427849:0,0,0 -g1,3016:7579210,45427849 -g1,3016:9159938,45427849 -g1,3016:9476084,45427849 -g1,3016:9792230,45427849 -g1,3016:10108376,45427849 -g1,3016:10740668,45427849 -g1,3016:11056814,45427849 -g1,3016:11372960,45427849 -g1,3016:11689106,45427849 -g1,3016:12321398,45427849 -g1,3016:12637544,45427849 -g1,3016:12953690,45427849 -h1,3016:13585981,45427849:0,0,0 -k1,3016:32583029,45427849:18997048 -g1,3016:32583029,45427849 -) -] -) -g1,3026:32583029,45510161 -g1,3026:6630773,45510161 -g1,3026:6630773,45510161 -g1,3026:32583029,45510161 -g1,3026:32583029,45510161 -) -] -(1,3026:32583029,45706769:0,0,0 -g1,3026:32583029,45706769 -) -) -] -(1,3026:6630773,47279633:25952256,0,0 -h1,3026:6630773,47279633:25952256,0,0 -) -] -h1,3026:4262630,4025873:0,0,0 +(1,2964:6434165,10014046:26345472,4153165,196608 +[1,2964:6630773,10014046:25952256,3956557,0 +(1,2952:6630773,6461715:25952256,404226,101187 +(1,2951:6630773,6461715:0,0,0 +g1,2951:6630773,6461715 +g1,2951:6630773,6461715 +g1,2951:6303093,6461715 +(1,2951:6303093,6461715:0,0,0 +) +g1,2951:6630773,6461715 +) +k1,2952:6630773,6461715:0 +h1,2952:15166706,6461715:0,0,0 +k1,2952:32583030,6461715:17416324 +g1,2952:32583030,6461715 +) +(1,2956:6630773,7193429:25952256,404226,76021 +(1,2954:6630773,7193429:0,0,0 +g1,2954:6630773,7193429 +g1,2954:6630773,7193429 +g1,2954:6303093,7193429 +(1,2954:6303093,7193429:0,0,0 +) +g1,2954:6630773,7193429 +) +g1,2956:7579210,7193429 +g1,2956:8843793,7193429 +g1,2956:9159939,7193429 +g1,2956:9792231,7193429 +g1,2956:10108377,7193429 +g1,2956:10740669,7193429 +g1,2956:11056815,7193429 +g1,2956:11689107,7193429 +g1,2956:12637544,7193429 +h1,2956:13269835,7193429:0,0,0 +k1,2956:32583029,7193429:19313194 +g1,2956:32583029,7193429 +) +(1,2958:6630773,8514967:25952256,404226,101187 +(1,2957:6630773,8514967:0,0,0 +g1,2957:6630773,8514967 +g1,2957:6630773,8514967 +g1,2957:6303093,8514967 +(1,2957:6303093,8514967:0,0,0 +) +g1,2957:6630773,8514967 +) +g1,2958:11372959,8514967 +g1,2958:12321397,8514967 +g1,2958:14850564,8514967 +g1,2958:16747439,8514967 +g1,2958:18328168,8514967 +g1,2958:20225043,8514967 +h1,2958:21489626,8514967:0,0,0 +k1,2958:32583029,8514967:11093403 +g1,2958:32583029,8514967 +) +(1,2959:6630773,9181145:25952256,404226,101187 +h1,2959:6630773,9181145:0,0,0 +k1,2959:6630773,9181145:0 +h1,2959:16747434,9181145:0,0,0 +k1,2959:32583029,9181145:15835595 +g1,2959:32583029,9181145 +) +(1,2963:6630773,9912859:25952256,404226,101187 +(1,2961:6630773,9912859:0,0,0 +g1,2961:6630773,9912859 +g1,2961:6630773,9912859 +g1,2961:6303093,9912859 +(1,2961:6303093,9912859:0,0,0 +) +g1,2961:6630773,9912859 +) +g1,2963:7579210,9912859 +g1,2963:8843793,9912859 +g1,2963:10424522,9912859 +g1,2963:12005251,9912859 +g1,2963:13269834,9912859 +g1,2963:13585980,9912859 +g1,2963:15166709,9912859 +h1,2963:16115146,9912859:0,0,0 +k1,2963:32583029,9912859:16467883 +g1,2963:32583029,9912859 +) +] +) +g1,2964:32583029,10014046 +g1,2964:6630773,10014046 +g1,2964:6630773,10014046 +g1,2964:32583029,10014046 +g1,2964:32583029,10014046 +) +h1,2964:6630773,10210654:0,0,0 +v1,2968:6630773,12041383:0,393216,0 +(1,2997:6630773,29347687:25952256,17699520,616038 +g1,2997:6630773,29347687 +(1,2997:6630773,29347687:25952256,17699520,616038 +(1,2997:6630773,29963725:25952256,18315558,0 +[1,2997:6630773,29963725:25952256,18315558,0 +(1,2997:6630773,29937511:25952256,18263130,0 +r1,2997:6656987,29937511:26214,18263130,0 +[1,2997:6656987,29937511:25899828,18263130,0 +(1,2997:6656987,29347687:25899828,17083482,0 +[1,2997:7246811,29347687:24720180,17083482,0 +(1,2969:7246811,13426090:24720180,1161885,196608 +(1,2968:7246811,13426090:0,1161885,196608 +r1,2997:8794447,13426090:1547636,1358493,196608 +k1,2968:7246811,13426090:-1547636 +) +(1,2968:7246811,13426090:1547636,1161885,196608 +) +k1,2968:8928543,13426090:134096 +k1,2968:9550162,13426090:134031 +k1,2968:12360747,13426090:134095 +k1,2968:14476652,13426090:134096 +k1,2968:15262176,13426090:134096 +k1,2968:17656608,13426090:134095 +k1,2968:19075210,13426090:134096 +k1,2968:20077658,13426090:134096 +k1,2968:21548687,13426090:134095 +k1,2968:22984328,13426090:134096 +k1,2968:23649921,13426090:134096 +k1,2968:26588958,13426090:134096 +k1,2968:28053434,13426090:134095 +k1,2968:29939307,13426090:134096 +k1,2968:31966991,13426090:0 +) +(1,2969:7246811,14267578:24720180,513147,126483 +k1,2968:8182196,14267578:276093 +k1,2968:9909911,14267578:276093 +k1,2968:11866347,14267578:276093 +k1,2968:13134000,14267578:276093 +k1,2968:15815920,14267578:276093 +k1,2968:16708051,14267578:276093 +k1,2968:17340004,14267578:276093 +k1,2968:19767644,14267578:276093 +k1,2968:20997286,14267578:276093 +k1,2968:22803645,14267578:276093 +k1,2968:23731166,14267578:276093 +k1,2968:25099744,14267578:276093 +k1,2968:26548276,14267578:276093 +k1,2968:29850166,14267578:276093 +(1,2968:29850166,14267578:0,452978,115847 +r1,2997:31966991,14267578:2116825,568825,115847 +k1,2968:29850166,14267578:-2116825 +) +(1,2968:29850166,14267578:2116825,452978,115847 +k1,2968:29850166,14267578:3277 +h1,2968:31963714,14267578:0,411205,112570 +) +k1,2968:31966991,14267578:0 +) +(1,2969:7246811,15109066:24720180,513147,134348 +k1,2968:8622770,15109066:184514 +(1,2968:8622770,15109066:0,452978,115847 +r1,2997:10387883,15109066:1765113,568825,115847 +k1,2968:8622770,15109066:-1765113 +) +(1,2968:8622770,15109066:1765113,452978,115847 +k1,2968:8622770,15109066:3277 +h1,2968:10384606,15109066:0,411205,112570 +) +k1,2968:10572398,15109066:184515 +k1,2968:10572398,15109066:0 +k1,2968:10930582,15109066:184514 +k1,2968:12311784,15109066:184515 +k1,2968:14737629,15109066:184514 +k1,2968:15581436,15109066:184515 +k1,2968:17462677,15109066:184514 +k1,2968:20672989,15109066:184515 +k1,2968:23975706,15109066:184514 +k1,2968:25294649,15109066:184515 +k1,2968:27463593,15109066:184514 +k1,2968:28334270,15109066:184515 +k1,2968:30032010,15109066:184514 +k1,2968:30832563,15109066:184515 +k1,2968:31966991,15109066:0 +) +(1,2969:7246811,15950554:24720180,513147,134348 +k1,2968:9374628,15950554:144698 +k1,2968:12364243,15950554:144698 +k1,2968:13456592,15950554:144698 +k1,2968:15486761,15950554:144698 +k1,2968:16468354,15950554:144698 +k1,2968:17144549,15950554:144698 +k1,2968:18059951,15950554:144699 +k1,2968:22352423,15950554:144698 +k1,2968:22984655,15950554:144644 +k1,2968:24265092,15950554:144698 +k1,2968:24941287,15950554:144698 +k1,2968:25441845,15950554:144698 +k1,2968:27431381,15950554:144698 +k1,2968:28235371,15950554:144698 +k1,2968:31966991,15950554:0 +) +(1,2969:7246811,16792042:24720180,513147,134348 +k1,2968:10134748,16792042:151154 +k1,2968:12470217,16792042:151154 +k1,2968:13439260,16792042:151154 +k1,2968:14609500,16792042:151155 +k1,2968:17625888,16792042:151154 +k1,2968:18308539,16792042:151154 +k1,2968:19111121,16792042:151154 +k1,2968:21076967,16792042:151154 +k1,2968:22247206,16792042:151154 +k1,2968:24884141,16792042:151154 +k1,2968:25694588,16792042:151155 +k1,2968:27873426,16792042:151154 +k1,2968:28683872,16792042:151154 +k1,2968:30286648,16792042:151154 +k1,2968:31966991,16792042:0 +) +(1,2969:7246811,17633530:24720180,513147,126483 +g1,2968:10025537,17633530 +g1,2968:11093118,17633530 +g1,2968:12822613,17633530 +g1,2968:14327975,17633530 +g1,2968:15178632,17633530 +g1,2968:16647949,17633530 +g1,2968:17866263,17633530 +k1,2969:31966991,17633530:11949181 +g1,2969:31966991,17633530 +) +v1,2971:7246811,18823996:0,393216,0 +(1,2993:7246811,25975844:24720180,7545064,196608 +g1,2993:7246811,25975844 +g1,2993:7246811,25975844 +g1,2993:7050203,25975844 +(1,2993:7050203,25975844:0,7545064,196608 +r1,2997:32163599,25975844:25113396,7741672,196608 +k1,2993:7050203,25975844:-25113396 +) +(1,2993:7050203,25975844:25113396,7545064,196608 +[1,2993:7246811,25975844:24720180,7348456,0 +(1,2973:7246811,19031614:24720180,404226,101187 +(1,2972:7246811,19031614:0,0,0 +g1,2972:7246811,19031614 +g1,2972:7246811,19031614 +g1,2972:6919131,19031614 +(1,2972:6919131,19031614:0,0,0 +) +g1,2972:7246811,19031614 +) +g1,2973:10724414,19031614 +g1,2973:11672852,19031614 +k1,2973:11672852,19031614:0 +h1,2973:21789517,19031614:0,0,0 +k1,2973:31966991,19031614:10177474 +g1,2973:31966991,19031614 +) +(1,2974:7246811,19697792:24720180,404226,101187 +h1,2974:7246811,19697792:0,0,0 +h1,2974:10408268,19697792:0,0,0 +k1,2974:31966992,19697792:21558724 +g1,2974:31966992,19697792 +) +(1,2978:7246811,20429506:24720180,404226,107478 +(1,2976:7246811,20429506:0,0,0 +g1,2976:7246811,20429506 +g1,2976:7246811,20429506 +g1,2976:6919131,20429506 +(1,2976:6919131,20429506:0,0,0 +) +g1,2976:7246811,20429506 +) +g1,2978:8195248,20429506 +g1,2978:9459831,20429506 +g1,2978:10724414,20429506 +g1,2978:11988997,20429506 +g1,2978:13253580,20429506 +g1,2978:14518163,20429506 +g1,2978:15782746,20429506 +g1,2978:17047329,20429506 +g1,2978:18311912,20429506 +g1,2978:19576495,20429506 +h1,2978:20524932,20429506:0,0,0 +k1,2978:31966991,20429506:11442059 +g1,2978:31966991,20429506 +) +(1,2980:7246811,21751044:24720180,404226,101187 +(1,2979:7246811,21751044:0,0,0 +g1,2979:7246811,21751044 +g1,2979:7246811,21751044 +g1,2979:6919131,21751044 +(1,2979:6919131,21751044:0,0,0 +) +g1,2979:7246811,21751044 +) +k1,2980:7246811,21751044:0 +h1,2980:12305142,21751044:0,0,0 +k1,2980:31966990,21751044:19661848 +g1,2980:31966990,21751044 +) +(1,2984:7246811,22482758:24720180,404226,107478 +(1,2982:7246811,22482758:0,0,0 +g1,2982:7246811,22482758 +g1,2982:7246811,22482758 +g1,2982:6919131,22482758 +(1,2982:6919131,22482758:0,0,0 +) +g1,2982:7246811,22482758 +) +g1,2984:8195248,22482758 +g1,2984:9459831,22482758 +g1,2984:10724414,22482758 +g1,2984:11988997,22482758 +g1,2984:13253580,22482758 +g1,2984:14518163,22482758 +g1,2984:15782746,22482758 +g1,2984:17047329,22482758 +g1,2984:18311912,22482758 +g1,2984:19576495,22482758 +h1,2984:20524932,22482758:0,0,0 +k1,2984:31966991,22482758:11442059 +g1,2984:31966991,22482758 +) +(1,2986:7246811,23804296:24720180,404226,101187 +(1,2985:7246811,23804296:0,0,0 +g1,2985:7246811,23804296 +g1,2985:7246811,23804296 +g1,2985:6919131,23804296 +(1,2985:6919131,23804296:0,0,0 +) +g1,2985:7246811,23804296 +) +k1,2986:7246811,23804296:0 +k1,2986:7246811,23804296:0 +h1,2986:13885871,23804296:0,0,0 +k1,2986:31966991,23804296:18081120 +g1,2986:31966991,23804296 +) +(1,2992:7246811,24536010:24720180,404226,107478 +(1,2988:7246811,24536010:0,0,0 +g1,2988:7246811,24536010 +g1,2988:7246811,24536010 +g1,2988:6919131,24536010 +(1,2988:6919131,24536010:0,0,0 +) +g1,2988:7246811,24536010 +) +g1,2992:8195248,24536010 +g1,2992:9459831,24536010 +g1,2992:11672851,24536010 +h1,2992:14202016,24536010:0,0,0 +k1,2992:31966992,24536010:17764976 +g1,2992:31966992,24536010 +) +(1,2992:7246811,25202188:24720180,404226,107478 +h1,2992:7246811,25202188:0,0,0 +g1,2992:8195248,25202188 +g1,2992:8511394,25202188 +g1,2992:8827540,25202188 +g1,2992:11672851,25202188 +g1,2992:12937434,25202188 +g1,2992:14834308,25202188 +g1,2992:15466600,25202188 +g1,2992:16098892,25202188 +g1,2992:16731184,25202188 +g1,2992:17363476,25202188 +g1,2992:17995768,25202188 +h1,2992:18311914,25202188:0,0,0 +k1,2992:31966991,25202188:13655077 +g1,2992:31966991,25202188 +) +(1,2992:7246811,25868366:24720180,404226,107478 +h1,2992:7246811,25868366:0,0,0 +g1,2992:8195248,25868366 +g1,2992:8511394,25868366 +g1,2992:8827540,25868366 +g1,2992:11040560,25868366 +g1,2992:11672852,25868366 +g1,2992:12937435,25868366 +g1,2992:14834309,25868366 +g1,2992:16098892,25868366 +g1,2992:17363475,25868366 +g1,2992:18628058,25868366 +g1,2992:19892641,25868366 +g1,2992:21157224,25868366 +h1,2992:22105661,25868366:0,0,0 +k1,2992:31966991,25868366:9861330 +g1,2992:31966991,25868366 +) +] +) +g1,2993:31966991,25975844 +g1,2993:7246811,25975844 +g1,2993:7246811,25975844 +g1,2993:31966991,25975844 +g1,2993:31966991,25975844 +) +h1,2993:7246811,26172452:0,0,0 +(1,2997:7246811,27538228:24720180,513147,126483 +h1,2996:7246811,27538228:983040,0,0 +k1,2996:9597915,27538228:171377 +k1,2996:12010622,27538228:171376 +k1,2996:13373444,27538228:171377 +k1,2996:15126859,27538228:171376 +k1,2996:18814898,27538228:171377 +k1,2996:19977834,27538228:171376 +k1,2996:21524812,27538228:171377 +k1,2996:22347617,27538228:171377 +k1,2996:26552079,27538228:171376 +k1,2996:27742541,27538228:171377 +k1,2996:29684700,27538228:171376 +k1,2996:30515369,27538228:171377 +k1,2996:31966991,27538228:0 +) +(1,2997:7246811,28379716:24720180,513147,126483 +k1,2996:8974995,28379716:199229 +k1,2996:10370912,28379716:199230 +k1,2996:11718332,28379716:199229 +k1,2996:15103921,28379716:199229 +k1,2996:16725938,28379716:199230 +k1,2996:19042635,28379716:199229 +k1,2996:21937360,28379716:199229 +k1,2996:23566586,28379716:199230 +k1,2996:24417243,28379716:199229 +k1,2996:27404374,28379716:199229 +k1,2996:28622689,28379716:199230 +k1,2996:31307699,28379716:199229 +k1,2996:31966991,28379716:0 +) +(1,2997:7246811,29221204:24720180,513147,126483 +g1,2996:9473724,29221204 +g1,2996:10332245,29221204 +g1,2996:11983096,29221204 +g1,2996:13862668,29221204 +g1,2996:14677935,29221204 +g1,2996:15896249,29221204 +k1,2997:31966991,29221204:13919195 +g1,2997:31966991,29221204 +) +] +) +] +r1,2997:32583029,29937511:26214,18263130,0 +) +] +) +) +g1,2997:32583029,29347687 +) +h1,2997:6630773,29963725:0,0,0 +(1,3003:6630773,33265914:25952256,32768,229376 +(1,3003:6630773,33265914:0,32768,229376 +(1,3003:6630773,33265914:5505024,32768,229376 +r1,3003:12135797,33265914:5505024,262144,229376 +) +k1,3003:6630773,33265914:-5505024 +) +(1,3003:6630773,33265914:25952256,32768,0 +r1,3003:32583029,33265914:25952256,32768,0 +) +) +(1,3003:6630773,34870242:25952256,606339,151780 +(1,3003:6630773,34870242:2464678,582746,0 +g1,3003:6630773,34870242 +g1,3003:9095451,34870242 +) +g1,3003:12693378,34870242 +g1,3003:14403081,34870242 +g1,3003:21585565,34870242 +k1,3003:32583029,34870242:8469871 +g1,3003:32583029,34870242 +) +(1,3007:6630773,36104946:25952256,505283,134348 +k1,3006:9243740,36104946:203864 +k1,3006:10922818,36104946:203863 +k1,3006:11482542,36104946:203864 +k1,3006:13559425,36104946:203864 +k1,3006:17281917,36104946:203864 +k1,3006:18850895,36104946:203863 +k1,3006:19740921,36104946:203864 +k1,3006:20813137,36104946:203864 +k1,3006:22224173,36104946:203863 +k1,3006:24457032,36104946:203864 +k1,3006:25529248,36104946:203864 +k1,3006:26837394,36104946:203864 +k1,3006:28857260,36104946:203863 +k1,3006:30569763,36104946:203864 +k1,3006:32583029,36104946:0 +) +(1,3007:6630773,36946434:25952256,505283,126483 +k1,3006:8241150,36946434:216426 +k1,3006:10911899,36946434:216426 +(1,3006:10911899,36946434:0,452978,122846 +r1,3006:13732148,36946434:2820249,575824,122846 +k1,3006:10911899,36946434:-2820249 +) +(1,3006:10911899,36946434:2820249,452978,122846 +k1,3006:10911899,36946434:3277 +h1,3006:13728871,36946434:0,411205,112570 +) +k1,3006:14122244,36946434:216426 +k1,3006:17015816,36946434:216426 +k1,3006:18707457,36946434:216426 +k1,3006:20096323,36946434:216427 +k1,3006:24161678,36946434:216426 +k1,3006:26263575,36946434:216426 +k1,3006:27584283,36946434:216426 +k1,3006:28548475,36946434:216426 +k1,3006:31189078,36946434:216426 +k1,3007:32583029,36946434:0 +) +(1,3007:6630773,37787922:25952256,513147,126483 +(1,3006:6630773,37787922:0,452978,115847 +r1,3006:8395886,37787922:1765113,568825,115847 +k1,3006:6630773,37787922:-1765113 +) +(1,3006:6630773,37787922:1765113,452978,115847 +k1,3006:6630773,37787922:3277 +h1,3006:8392609,37787922:0,411205,112570 +) +k1,3006:8736189,37787922:166633 +(1,3006:8736189,37787922:0,452978,115847 +r1,3006:10853014,37787922:2116825,568825,115847 +k1,3006:8736189,37787922:-2116825 +) +(1,3006:8736189,37787922:2116825,452978,115847 +k1,3006:8736189,37787922:3277 +h1,3006:10849737,37787922:0,411205,112570 +) +k1,3006:11019647,37787922:166633 +k1,3006:12377725,37787922:166633 +(1,3006:12377725,37787922:0,452978,115847 +r1,3006:14494550,37787922:2116825,568825,115847 +k1,3006:12377725,37787922:-2116825 +) +(1,3006:12377725,37787922:2116825,452978,115847 +k1,3006:12377725,37787922:3277 +h1,3006:14491273,37787922:0,411205,112570 +) +k1,3006:14834853,37787922:166633 +k1,3006:15416296,37787922:166600 +k1,3006:17562772,37787922:166633 +k1,3006:18833687,37787922:166633 +k1,3006:20475535,37787922:166633 +k1,3006:21773975,37787922:166633 +k1,3006:24426388,37787922:166632 +k1,3006:25252313,37787922:166633 +k1,3006:29267875,37787922:166633 +k1,3006:30901204,37787922:166633 +k1,3006:31423697,37787922:166633 +k1,3007:32583029,37787922:0 +) +(1,3007:6630773,38629410:25952256,505283,134348 +k1,3006:7725837,38629410:168385 +k1,3006:11412850,38629410:168385 +k1,3006:13466705,38629410:168384 +k1,3006:14739372,38629410:168385 +k1,3006:15655523,38629410:168385 +k1,3006:18248085,38629410:168385 +k1,3006:19810421,38629410:168385 +k1,3006:22433129,38629410:168385 +(1,3006:22433129,38629410:0,452978,115847 +r1,3006:24198242,38629410:1765113,568825,115847 +k1,3006:22433129,38629410:-1765113 +) +(1,3006:22433129,38629410:1765113,452978,115847 +k1,3006:22433129,38629410:3277 +h1,3006:24194965,38629410:0,411205,112570 +) +k1,3006:24540296,38629410:168384 +k1,3006:25526570,38629410:168385 +k1,3006:28533975,38629410:168385 +(1,3006:28533975,38629410:0,452978,115847 +r1,3006:32409359,38629410:3875384,568825,115847 +k1,3006:28533975,38629410:-3875384 +) +(1,3006:28533975,38629410:3875384,452978,115847 +k1,3006:28533975,38629410:3277 +h1,3006:32406082,38629410:0,411205,112570 +) +k1,3007:32583029,38629410:0 +) +(1,3007:6630773,39470898:25952256,505283,126483 +(1,3006:6630773,39470898:0,452978,115847 +r1,3006:10506157,39470898:3875384,568825,115847 +k1,3006:6630773,39470898:-3875384 +) +(1,3006:6630773,39470898:3875384,452978,115847 +k1,3006:6630773,39470898:3277 +h1,3006:10502880,39470898:0,411205,112570 +) +g1,3006:10705386,39470898 +g1,3006:12096060,39470898 +(1,3006:12096060,39470898:0,452978,115847 +r1,3006:15619732,39470898:3523672,568825,115847 +k1,3006:12096060,39470898:-3523672 +) +(1,3006:12096060,39470898:3523672,452978,115847 +k1,3006:12096060,39470898:3277 +h1,3006:15616455,39470898:0,411205,112570 +) +g1,3006:15818961,39470898 +g1,3006:17122472,39470898 +g1,3006:18069467,39470898 +g1,3006:19781922,39470898 +g1,3006:20632579,39470898 +g1,3006:22647811,39470898 +g1,3006:23866125,39470898 +k1,3007:32583029,39470898:6988064 +g1,3007:32583029,39470898 +) +(1,3009:6630773,40312386:25952256,505283,134348 +h1,3008:6630773,40312386:983040,0,0 +k1,3008:8832084,40312386:264722 +k1,3008:10201088,40312386:264722 +k1,3008:12395191,40312386:264723 +k1,3008:13015773,40312386:264722 +k1,3008:14563690,40312386:264722 +k1,3008:16915734,40312386:264722 +k1,3008:18915849,40312386:264722 +k1,3008:20199656,40312386:264722 +(1,3008:20199656,40312386:0,452978,115847 +r1,3008:23019905,40312386:2820249,568825,115847 +k1,3008:20199656,40312386:-2820249 +) +(1,3008:20199656,40312386:2820249,452978,115847 +k1,3008:20199656,40312386:3277 +h1,3008:23016628,40312386:0,411205,112570 +) +k1,3008:23284628,40312386:264723 +k1,3008:24232235,40312386:264722 +(1,3008:24232235,40312386:0,452978,115847 +r1,3008:28107619,40312386:3875384,568825,115847 +k1,3008:24232235,40312386:-3875384 +) +(1,3008:24232235,40312386:3875384,452978,115847 +k1,3008:24232235,40312386:3277 +h1,3008:28104342,40312386:0,411205,112570 +) +k1,3008:28372341,40312386:264722 +k1,3008:32583029,40312386:0 +) +(1,3009:6630773,41153874:25952256,513147,134348 +k1,3008:8071097,41153874:243637 +k1,3008:9620866,41153874:243636 +k1,3008:12936831,41153874:243637 +k1,3008:13847624,41153874:243637 +(1,3008:13847624,41153874:0,452978,115847 +r1,3008:16667873,41153874:2820249,568825,115847 +k1,3008:13847624,41153874:-2820249 +) +(1,3008:13847624,41153874:2820249,452978,115847 +k1,3008:13847624,41153874:3277 +h1,3008:16664596,41153874:0,411205,112570 +) +k1,3008:16911510,41153874:243637 +k1,3008:17686643,41153874:243636 +k1,3008:18286140,41153874:243637 +k1,3008:20681324,41153874:243637 +k1,3008:21552795,41153874:243636 +k1,3008:22815517,41153874:243637 +k1,3008:24712627,41153874:243637 +k1,3008:26194239,41153874:243637 +k1,3008:27124037,41153874:243636 +k1,3008:29849522,41153874:243637 +k1,3008:32583029,41153874:0 +) +(1,3009:6630773,41995362:25952256,513147,134348 +g1,3008:7821562,41995362 +g1,3008:12641735,41995362 +g1,3008:13607080,41995362 +g1,3008:16675475,41995362 +g1,3008:17866264,41995362 +g1,3008:18724785,41995362 +g1,3008:19943099,41995362 +g1,3008:21795801,41995362 +k1,3009:32583029,41995362:9227471 +g1,3009:32583029,41995362 +) +v1,3011:6630773,43156161:0,393216,0 +(1,3032:6630773,45510161:25952256,2747216,196608 +g1,3032:6630773,45510161 +g1,3032:6630773,45510161 +g1,3032:6434165,45510161 +(1,3032:6434165,45510161:0,2747216,196608 +r1,3032:32779637,45510161:26345472,2943824,196608 +k1,3032:6434165,45510161:-26345472 +) +(1,3032:6434165,45510161:26345472,2747216,196608 +[1,3032:6630773,45510161:25952256,2550608,0 +(1,3013:6630773,43363779:25952256,404226,82312 +(1,3012:6630773,43363779:0,0,0 +g1,3012:6630773,43363779 +g1,3012:6630773,43363779 +g1,3012:6303093,43363779 +(1,3012:6303093,43363779:0,0,0 +) +g1,3012:6630773,43363779 +) +k1,3013:6630773,43363779:0 +g1,3013:10740668,43363779 +g1,3013:12321397,43363779 +g1,3013:12953689,43363779 +h1,3013:13585981,43363779:0,0,0 +k1,3013:32583029,43363779:18997048 +g1,3013:32583029,43363779 +) +(1,3022:6630773,44095493:25952256,404226,82312 +(1,3015:6630773,44095493:0,0,0 +g1,3015:6630773,44095493 +g1,3015:6630773,44095493 +g1,3015:6303093,44095493 +(1,3015:6303093,44095493:0,0,0 +) +g1,3015:6630773,44095493 +) +g1,3022:7579210,44095493 +g1,3022:7895356,44095493 +g1,3022:8211502,44095493 +g1,3022:8527648,44095493 +g1,3022:8843794,44095493 +g1,3022:9159940,44095493 +g1,3022:10740669,44095493 +g1,3022:12321398,44095493 +k1,3022:12321398,44095493:0 +h1,3022:13585981,44095493:0,0,0 +k1,3022:32583029,44095493:18997048 +g1,3022:32583029,44095493 +) +(1,3022:6630773,44761671:25952256,404226,82312 +h1,3022:6630773,44761671:0,0,0 +g1,3022:7579210,44761671 +g1,3022:9159938,44761671 +g1,3022:9476084,44761671 +g1,3022:9792230,44761671 +g1,3022:10108376,44761671 +g1,3022:10740668,44761671 +g1,3022:11056814,44761671 +g1,3022:11372960,44761671 +g1,3022:11689106,44761671 +g1,3022:12321398,44761671 +g1,3022:12637544,44761671 +g1,3022:12953690,44761671 +h1,3022:13585981,44761671:0,0,0 +k1,3022:32583029,44761671:18997048 +g1,3022:32583029,44761671 +) +(1,3022:6630773,45427849:25952256,404226,82312 +h1,3022:6630773,45427849:0,0,0 +g1,3022:7579210,45427849 +g1,3022:9159938,45427849 +g1,3022:9476084,45427849 +g1,3022:9792230,45427849 +g1,3022:10108376,45427849 +g1,3022:10740668,45427849 +g1,3022:11056814,45427849 +g1,3022:11372960,45427849 +g1,3022:11689106,45427849 +g1,3022:12321398,45427849 +g1,3022:12637544,45427849 +g1,3022:12953690,45427849 +h1,3022:13585981,45427849:0,0,0 +k1,3022:32583029,45427849:18997048 +g1,3022:32583029,45427849 +) +] +) +g1,3032:32583029,45510161 +g1,3032:6630773,45510161 +g1,3032:6630773,45510161 +g1,3032:32583029,45510161 +g1,3032:32583029,45510161 +) +] +(1,3032:32583029,45706769:0,0,0 +g1,3032:32583029,45706769 +) +) +] +(1,3032:6630773,47279633:25952256,0,0 +h1,3032:6630773,47279633:25952256,0,0 +) +] +h1,3032:4262630,4025873:0,0,0 ] !25150 }62 -Input:417:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:418:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {63 -[1,3086:4262630,47279633:28320399,43253760,0 -(1,3086:4262630,4025873:0,0,0 -[1,3086:-473657,4025873:25952256,0,0 -(1,3086:-473657,-710414:25952256,0,0 -h1,3086:-473657,-710414:0,0,0 -(1,3086:-473657,-710414:0,0,0 -(1,3086:-473657,-710414:0,0,0 -g1,3086:-473657,-710414 -(1,3086:-473657,-710414:65781,0,65781 -g1,3086:-407876,-710414 -[1,3086:-407876,-644633:0,0,0 +[1,3092:4262630,47279633:28320399,43253760,0 +(1,3092:4262630,4025873:0,0,0 +[1,3092:-473657,4025873:25952256,0,0 +(1,3092:-473657,-710414:25952256,0,0 +h1,3092:-473657,-710414:0,0,0 +(1,3092:-473657,-710414:0,0,0 +(1,3092:-473657,-710414:0,0,0 +g1,3092:-473657,-710414 +(1,3092:-473657,-710414:65781,0,65781 +g1,3092:-407876,-710414 +[1,3092:-407876,-644633:0,0,0 ] ) -k1,3086:-473657,-710414:-65781 +k1,3092:-473657,-710414:-65781 ) ) -k1,3086:25478599,-710414:25952256 -g1,3086:25478599,-710414 +k1,3092:25478599,-710414:25952256 +g1,3092:25478599,-710414 ) ] ) -[1,3086:6630773,47279633:25952256,43253760,0 -[1,3086:6630773,4812305:25952256,786432,0 -(1,3086:6630773,4812305:25952256,505283,134348 -(1,3086:6630773,4812305:25952256,505283,134348 -g1,3086:3078558,4812305 -[1,3086:3078558,4812305:0,0,0 -(1,3086:3078558,2439708:0,1703936,0 -k1,3086:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3086:2537886,2439708:1179648,16384,0 +[1,3092:6630773,47279633:25952256,43253760,0 +[1,3092:6630773,4812305:25952256,786432,0 +(1,3092:6630773,4812305:25952256,505283,134348 +(1,3092:6630773,4812305:25952256,505283,134348 +g1,3092:3078558,4812305 +[1,3092:3078558,4812305:0,0,0 +(1,3092:3078558,2439708:0,1703936,0 +k1,3092:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3092:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3086:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3092:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3086:3078558,4812305:0,0,0 -(1,3086:3078558,2439708:0,1703936,0 -g1,3086:29030814,2439708 -g1,3086:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3086:36151628,1915420:16384,1179648,0 +[1,3092:3078558,4812305:0,0,0 +(1,3092:3078558,2439708:0,1703936,0 +g1,3092:29030814,2439708 +g1,3092:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3092:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3086:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3092:37855564,2439708:1179648,16384,0 ) ) -k1,3086:3078556,2439708:-34777008 +k1,3092:3078556,2439708:-34777008 ) ] -[1,3086:3078558,4812305:0,0,0 -(1,3086:3078558,49800853:0,16384,2228224 -k1,3086:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3086:2537886,49800853:1179648,16384,0 +[1,3092:3078558,4812305:0,0,0 +(1,3092:3078558,49800853:0,16384,2228224 +k1,3092:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3092:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3086:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3092:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 -) -] -) -) -) -] -[1,3086:3078558,4812305:0,0,0 -(1,3086:3078558,49800853:0,16384,2228224 -g1,3086:29030814,49800853 -g1,3086:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3086:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3086:37855564,49800853:1179648,16384,0 -) -) -k1,3086:3078556,49800853:-34777008 -) -] -g1,3086:6630773,4812305 -k1,3086:19562994,4812305:12135303 -g1,3086:20949735,4812305 -g1,3086:21598541,4812305 -g1,3086:24912696,4812305 -g1,3086:27600327,4812305 -g1,3086:29010006,4812305 -) -) -] -[1,3086:6630773,45706769:25952256,40108032,0 -(1,3086:6630773,45706769:25952256,40108032,0 -(1,3086:6630773,45706769:0,0,0 -g1,3086:6630773,45706769 -) -[1,3086:6630773,45706769:25952256,40108032,0 -v1,3026:6630773,6254097:0,393216,0 -(1,3026:6630773,11928169:25952256,6067288,196608 -g1,3026:6630773,11928169 -g1,3026:6630773,11928169 -g1,3026:6434165,11928169 -(1,3026:6434165,11928169:0,6067288,196608 -r1,3026:32779637,11928169:26345472,6263896,196608 -k1,3026:6434165,11928169:-26345472 -) -(1,3026:6434165,11928169:26345472,6067288,196608 -[1,3026:6630773,11928169:25952256,5870680,0 -(1,3016:6630773,6461715:25952256,404226,82312 -h1,3016:6630773,6461715:0,0,0 -g1,3016:7579210,6461715 -g1,3016:9159938,6461715 -g1,3016:9476084,6461715 -g1,3016:9792230,6461715 -g1,3016:10108376,6461715 -g1,3016:10740668,6461715 -g1,3016:11056814,6461715 -g1,3016:11372960,6461715 -g1,3016:11689106,6461715 -g1,3016:12321398,6461715 -g1,3016:12637544,6461715 -g1,3016:12953690,6461715 -h1,3016:13585981,6461715:0,0,0 -k1,3016:32583029,6461715:18997048 -g1,3016:32583029,6461715 -) -(1,3016:6630773,7127893:25952256,404226,82312 -h1,3016:6630773,7127893:0,0,0 -g1,3016:7579210,7127893 -g1,3016:9159938,7127893 -g1,3016:9476084,7127893 -g1,3016:9792230,7127893 -g1,3016:10108376,7127893 -g1,3016:10740668,7127893 -g1,3016:11056814,7127893 -g1,3016:11372960,7127893 -g1,3016:11689106,7127893 -g1,3016:12321398,7127893 -g1,3016:12637544,7127893 -g1,3016:12953690,7127893 -h1,3016:13585981,7127893:0,0,0 -k1,3016:32583029,7127893:18997048 -g1,3016:32583029,7127893 -) -(1,3016:6630773,7794071:25952256,404226,82312 -h1,3016:6630773,7794071:0,0,0 -g1,3016:7579210,7794071 -g1,3016:9159938,7794071 -g1,3016:9476084,7794071 -g1,3016:9792230,7794071 -g1,3016:10108376,7794071 -g1,3016:10740668,7794071 -g1,3016:11056814,7794071 -g1,3016:11372960,7794071 -g1,3016:12321397,7794071 -g1,3016:12637543,7794071 -g1,3016:12953689,7794071 -h1,3016:13585980,7794071:0,0,0 -k1,3016:32583028,7794071:18997048 -g1,3016:32583028,7794071 -) -(1,3018:6630773,9115609:25952256,404226,82312 -(1,3017:6630773,9115609:0,0,0 -g1,3017:6630773,9115609 -g1,3017:6630773,9115609 -g1,3017:6303093,9115609 -(1,3017:6303093,9115609:0,0,0 -) -g1,3017:6630773,9115609 -) -k1,3018:6630773,9115609:0 -g1,3018:10740668,9115609 -g1,3018:12321397,9115609 -g1,3018:12953689,9115609 -h1,3018:13585981,9115609:0,0,0 -k1,3018:32583029,9115609:18997048 -g1,3018:32583029,9115609 -) -(1,3025:6630773,9847323:25952256,404226,82312 -(1,3020:6630773,9847323:0,0,0 -g1,3020:6630773,9847323 -g1,3020:6630773,9847323 -g1,3020:6303093,9847323 -(1,3020:6303093,9847323:0,0,0 -) -g1,3020:6630773,9847323 -) -g1,3025:7579210,9847323 -g1,3025:7895356,9847323 -g1,3025:8211502,9847323 -g1,3025:8527648,9847323 -g1,3025:8843794,9847323 -g1,3025:9159940,9847323 -g1,3025:10740669,9847323 -g1,3025:12321398,9847323 -g1,3025:13902127,9847323 -g1,3025:15482856,9847323 -k1,3025:15482856,9847323:0 -h1,3025:16747439,9847323:0,0,0 -k1,3025:32583029,9847323:15835590 -g1,3025:32583029,9847323 -) -(1,3025:6630773,10513501:25952256,404226,82312 -h1,3025:6630773,10513501:0,0,0 -g1,3025:7579210,10513501 -g1,3025:9159938,10513501 -g1,3025:9476084,10513501 -g1,3025:9792230,10513501 -g1,3025:10108376,10513501 -g1,3025:10740668,10513501 -g1,3025:11056814,10513501 -g1,3025:11372960,10513501 -g1,3025:11689106,10513501 -g1,3025:12321398,10513501 -g1,3025:12637544,10513501 -g1,3025:12953690,10513501 -g1,3025:13269836,10513501 -g1,3025:13902128,10513501 -g1,3025:14218274,10513501 -g1,3025:14534420,10513501 -g1,3025:15482857,10513501 -g1,3025:15799003,10513501 -g1,3025:16115149,10513501 -h1,3025:16747440,10513501:0,0,0 -k1,3025:32583029,10513501:15835589 -g1,3025:32583029,10513501 -) -(1,3025:6630773,11179679:25952256,404226,82312 -h1,3025:6630773,11179679:0,0,0 -g1,3025:7579210,11179679 -g1,3025:9159938,11179679 -g1,3025:9476084,11179679 -g1,3025:9792230,11179679 -g1,3025:10108376,11179679 -g1,3025:10740668,11179679 -g1,3025:11056814,11179679 -g1,3025:11372960,11179679 -g1,3025:11689106,11179679 -g1,3025:12321398,11179679 -g1,3025:12637544,11179679 -g1,3025:12953690,11179679 -g1,3025:13269836,11179679 -g1,3025:13902128,11179679 -g1,3025:14218274,11179679 -g1,3025:14534420,11179679 -g1,3025:15482857,11179679 -g1,3025:15799003,11179679 -g1,3025:16115149,11179679 -h1,3025:16747440,11179679:0,0,0 -k1,3025:32583029,11179679:15835589 -g1,3025:32583029,11179679 -) -(1,3025:6630773,11845857:25952256,404226,82312 -h1,3025:6630773,11845857:0,0,0 -g1,3025:7579210,11845857 -g1,3025:9159938,11845857 -g1,3025:9476084,11845857 -g1,3025:9792230,11845857 -g1,3025:10108376,11845857 -g1,3025:10740668,11845857 -g1,3025:11056814,11845857 -g1,3025:11372960,11845857 -g1,3025:11689106,11845857 -g1,3025:12321398,11845857 -g1,3025:12637544,11845857 -g1,3025:12953690,11845857 -g1,3025:13269836,11845857 -g1,3025:13902128,11845857 -g1,3025:14218274,11845857 -g1,3025:14534420,11845857 -g1,3025:15482857,11845857 -g1,3025:15799003,11845857 -g1,3025:16115149,11845857 -h1,3025:16747440,11845857:0,0,0 -k1,3025:32583029,11845857:15835589 -g1,3025:32583029,11845857 -) -] -) -g1,3026:32583029,11928169 -g1,3026:6630773,11928169 -g1,3026:6630773,11928169 -g1,3026:32583029,11928169 -g1,3026:32583029,11928169 -) -h1,3026:6630773,12124777:0,0,0 -(1,3030:6630773,13460620:25952256,513147,102891 -h1,3029:6630773,13460620:983040,0,0 -k1,3029:9625332,13460620:228284 -k1,3029:10209475,13460620:228283 -k1,3029:12415636,13460620:228284 -k1,3029:13175417,13460620:228284 -k1,3029:16564501,13460620:228283 -k1,3029:17444213,13460620:228284 -k1,3029:18028357,13460620:228284 -k1,3029:20517632,13460620:228283 -k1,3029:21664731,13460620:228284 -k1,3029:24158595,13460620:228284 -k1,3029:24918375,13460620:228283 -k1,3029:25798087,13460620:228284 -k1,3029:28480694,13460620:228284 -k1,3029:29728062,13460620:228283 -k1,3029:31966991,13460620:228284 -k1,3029:32583029,13460620:0 -) -(1,3030:6630773,14302108:25952256,513147,134348 -k1,3029:7813143,14302108:163285 -k1,3029:9954306,14302108:163286 -k1,3029:10769019,14302108:163285 -k1,3029:11951389,14302108:163285 -k1,3029:14201997,14302108:163286 -k1,3029:16843854,14302108:163285 -k1,3029:18574760,14302108:163285 -k1,3029:19757130,14302108:163285 -k1,3029:22596251,14302108:163286 -k1,3029:25316095,14302108:163285 -k1,3029:26670825,14302108:163285 -k1,3029:28844100,14302108:163286 -k1,3029:30026470,14302108:163285 -k1,3029:32583029,14302108:0 -) -(1,3030:6630773,15143596:25952256,513147,126483 -k1,3029:8566332,15143596:184437 -k1,3029:10318390,15143596:184437 -k1,3029:11521912,15143596:184437 -k1,3029:12952188,15143596:184437 -k1,3029:14741602,15143596:184437 -k1,3029:15945124,15143596:184437 -k1,3029:17435693,15143596:184436 -k1,3029:20003019,15143596:184437 -k1,3029:20718953,15143596:184437 -k1,3029:22685969,15143596:184437 -k1,3029:23889491,15143596:184437 -k1,3029:26519076,15143596:184437 -k1,3029:29811886,15143596:184437 -k1,3029:31563944,15143596:184437 -k1,3029:32583029,15143596:0 -) -(1,3030:6630773,15985084:25952256,513147,134348 -k1,3029:7938175,15985084:235233 -k1,3029:8832700,15985084:235233 -k1,3029:10087018,15985084:235233 -k1,3029:11706372,15985084:235234 -k1,3029:14498164,15985084:235233 -k1,3029:15419559,15985084:235233 -k1,3029:16759074,15985084:235233 -k1,3029:17742073,15985084:235233 -k1,3029:19417132,15985084:235233 -k1,3029:21681360,15985084:235233 -k1,3029:23297437,15985084:235233 -k1,3029:25271997,15985084:235234 -k1,3029:26611512,15985084:235233 -k1,3029:27594511,15985084:235233 -k1,3029:30491161,15985084:235233 -k1,3029:31412556,15985084:235233 -k1,3029:32583029,15985084:0 -) -(1,3030:6630773,16826572:25952256,505283,134348 -g1,3029:7962464,16826572 -g1,3029:10834907,16826572 -g1,3029:11650174,16826572 -g1,3029:12868488,16826572 -g1,3029:16718072,16826572 -k1,3030:32583029,16826572:13822855 -g1,3030:32583029,16826572 -) -v1,3032:6630773,18162415:0,393216,0 -(1,3062:6630773,33662463:25952256,15893264,616038 -g1,3062:6630773,33662463 -(1,3062:6630773,33662463:25952256,15893264,616038 -(1,3062:6630773,34278501:25952256,16509302,0 -[1,3062:6630773,34278501:25952256,16509302,0 -(1,3062:6630773,34252287:25952256,16456874,0 -r1,3062:6656987,34252287:26214,16456874,0 -[1,3062:6656987,34252287:25899828,16456874,0 -(1,3062:6656987,33662463:25899828,15277226,0 -[1,3062:7246811,33662463:24720180,15277226,0 -(1,3033:7246811,19472611:24720180,1087374,134348 -k1,3032:8699127,19472611:242613 -k1,3032:10885538,19472611:242613 -k1,3032:11744189,19472611:242613 -k1,3032:13005887,19472611:242613 -k1,3032:14636553,19472611:242613 -k1,3032:16377319,19472611:242613 -k1,3032:17567583,19472611:242613 -k1,3032:18829280,19472611:242612 -(1,3032:18829280,19472611:0,452978,115847 -r1,3062:20946105,19472611:2116825,568825,115847 -k1,3032:18829280,19472611:-2116825 -) -(1,3032:18829280,19472611:2116825,452978,115847 -k1,3032:18829280,19472611:3277 -h1,3032:20942828,19472611:0,411205,112570 -) -k1,3032:21188718,19472611:242613 -k1,3032:25138047,19472611:242613 -k1,3032:26711041,19472611:242613 -k1,3032:27605082,19472611:242613 -k1,3032:28940180,19472611:242613 -k1,3032:30201878,19472611:242613 -(1,3032:30201878,19472611:0,452978,115847 -r1,3062:31966991,19472611:1765113,568825,115847 -k1,3032:30201878,19472611:-1765113 -) -(1,3032:30201878,19472611:1765113,452978,115847 -k1,3032:30201878,19472611:3277 -h1,3032:31963714,19472611:0,411205,112570 -) -k1,3032:31966991,19472611:0 -) -(1,3033:7246811,20314099:24720180,513147,126483 -k1,3032:10779302,20314099:251759 -k1,3032:11682489,20314099:251759 -k1,3032:13387837,20314099:251759 -k1,3032:14658681,20314099:251759 -k1,3032:17176020,20314099:251759 -k1,3032:19167105,20314099:251759 -k1,3032:20034901,20314099:251758 -k1,3032:22172131,20314099:251759 -k1,3032:23442975,20314099:251759 -k1,3032:26563900,20314099:251759 -k1,3032:27474951,20314099:251759 -k1,3032:28745795,20314099:251759 -k1,3032:30975431,20314099:251759 -k1,3032:31966991,20314099:0 -) -(1,3033:7246811,21155587:24720180,513147,7863 -g1,3032:10321104,21155587 -g1,3032:11171761,21155587 -g1,3032:14084181,21155587 -g1,3032:15474855,21155587 -g1,3032:17208282,21155587 -g1,3032:18066803,21155587 -g1,3032:19285117,21155587 -g1,3032:20767541,21155587 -k1,3033:31966991,21155587:8938458 -g1,3033:31966991,21155587 -) -v1,3035:7246811,22346053:0,393216,0 -(1,3039:7246811,22654858:24720180,702021,196608 -g1,3039:7246811,22654858 -g1,3039:7246811,22654858 -g1,3039:7050203,22654858 -(1,3039:7050203,22654858:0,702021,196608 -r1,3062:32163599,22654858:25113396,898629,196608 -k1,3039:7050203,22654858:-25113396 -) -(1,3039:7050203,22654858:25113396,702021,196608 -[1,3039:7246811,22654858:24720180,505413,0 -(1,3037:7246811,22553671:24720180,404226,101187 -(1,3036:7246811,22553671:0,0,0 -g1,3036:7246811,22553671 -g1,3036:7246811,22553671 -g1,3036:6919131,22553671 -(1,3036:6919131,22553671:0,0,0 -) -g1,3036:7246811,22553671 -) -k1,3037:7246811,22553671:0 -h1,3037:11040559,22553671:0,0,0 -k1,3037:31966991,22553671:20926432 -g1,3037:31966991,22553671 -) -] -) -g1,3039:31966991,22654858 -g1,3039:7246811,22654858 -g1,3039:7246811,22654858 -g1,3039:31966991,22654858 -g1,3039:31966991,22654858 -) -h1,3039:7246811,22851466:0,0,0 -(1,3043:7246811,24217242:24720180,513147,134348 -h1,3042:7246811,24217242:983040,0,0 -k1,3042:10180354,24217242:175788 -k1,3042:11526614,24217242:175787 -k1,3042:12693962,24217242:175788 -k1,3042:15246740,24217242:175787 -k1,3042:16035290,24217242:175788 -k1,3042:17230163,24217242:175788 -k1,3042:18794003,24217242:175787 -k1,3042:20641614,24217242:175788 -k1,3042:22103218,24217242:175788 -k1,3042:25009890,24217242:175787 -k1,3042:26204763,24217242:175788 -k1,3042:28646130,24217242:175787 -k1,3042:31307699,24217242:175788 -k1,3042:31966991,24217242:0 -) -(1,3043:7246811,25058730:24720180,505283,7863 -g1,3042:10159231,25058730 -g1,3042:11549905,25058730 -k1,3043:31966991,25058730:18709218 -g1,3043:31966991,25058730 -) -v1,3045:7246811,26249196:0,393216,0 -(1,3049:7246811,26532835:24720180,676855,196608 -g1,3049:7246811,26532835 -g1,3049:7246811,26532835 -g1,3049:7050203,26532835 -(1,3049:7050203,26532835:0,676855,196608 -r1,3062:32163599,26532835:25113396,873463,196608 -k1,3049:7050203,26532835:-25113396 -) -(1,3049:7050203,26532835:25113396,676855,196608 -[1,3049:7246811,26532835:24720180,480247,0 -(1,3047:7246811,26456814:24720180,404226,76021 -(1,3046:7246811,26456814:0,0,0 -g1,3046:7246811,26456814 -g1,3046:7246811,26456814 -g1,3046:6919131,26456814 -(1,3046:6919131,26456814:0,0,0 -) -g1,3046:7246811,26456814 -) -k1,3047:7246811,26456814:0 -h1,3047:11040560,26456814:0,0,0 -k1,3047:31966992,26456814:20926432 -g1,3047:31966992,26456814 -) -] -) -g1,3049:31966991,26532835 -g1,3049:7246811,26532835 -g1,3049:7246811,26532835 -g1,3049:31966991,26532835 -g1,3049:31966991,26532835 -) -h1,3049:7246811,26729443:0,0,0 -(1,3053:7246811,28095219:24720180,513147,134348 -h1,3052:7246811,28095219:983040,0,0 -k1,3052:9828425,28095219:275402 -k1,3052:10755256,28095219:275403 -k1,3052:12518981,28095219:275402 -k1,3052:15019987,28095219:275403 -k1,3052:15651249,28095219:275402 -k1,3052:17696778,28095219:275402 -k1,3052:18631473,28095219:275403 -k1,3052:20237256,28095219:275402 -k1,3052:21164086,28095219:275402 -k1,3052:24261469,28095219:275403 -k1,3052:26143814,28095219:275402 -k1,3052:27610662,28095219:275403 -k1,3052:30456386,28095219:275402 -k1,3053:31966991,28095219:0 -) -(1,3053:7246811,28936707:24720180,505283,134348 -k1,3052:9415998,28936707:257502 -k1,3052:10791544,28936707:257502 -k1,3052:12068131,28936707:257502 -k1,3052:13821819,28936707:257501 -k1,3052:15947752,28936707:257502 -k1,3052:17396699,28936707:257502 -k1,3052:19369934,28936707:257502 -k1,3052:21008280,28936707:257502 -k1,3052:22436255,28936707:257502 -k1,3052:26358529,28936707:257501 -k1,3052:28501502,28936707:257502 -k1,3052:31435494,28936707:257502 -k1,3052:31966991,28936707:0 -) -(1,3053:7246811,29778195:24720180,513147,134348 -k1,3052:9251951,29778195:267125 -k1,3052:12457054,29778195:267124 -k1,3052:14765625,29778195:267125 -k1,3052:18088038,29778195:267125 -k1,3052:19374248,29778195:267125 -k1,3052:23001403,29778195:267124 -k1,3052:25698603,29778195:267125 -k1,3052:26423825,29778195:267125 -k1,3052:27882394,29778195:267124 -k1,3052:30418375,29778195:267125 -k1,3052:31966991,29778195:0 -) -(1,3053:7246811,30619683:24720180,513147,126483 -k1,3052:8486812,30619683:220916 -k1,3052:11486455,30619683:220916 -k1,3052:13387714,30619683:220916 -k1,3052:14741092,30619683:220916 -k1,3052:15883444,30619683:220916 -k1,3052:19839256,30619683:220915 -k1,3052:22820548,30619683:220916 -k1,3052:24500295,30619683:220916 -k1,3052:28174303,30619683:220916 -k1,3052:29046647,30619683:220916 -k1,3052:30286648,30619683:220916 -k1,3052:31966991,30619683:0 -) -(1,3053:7246811,31461171:24720180,505283,126483 -g1,3052:9934442,31461171 -k1,3053:31966991,31461171:19080152 -g1,3053:31966991,31461171 -) -v1,3055:7246811,32651637:0,393216,0 -(1,3059:7246811,32941567:24720180,683146,196608 -g1,3059:7246811,32941567 -g1,3059:7246811,32941567 -g1,3059:7050203,32941567 -(1,3059:7050203,32941567:0,683146,196608 -r1,3062:32163599,32941567:25113396,879754,196608 -k1,3059:7050203,32941567:-25113396 -) -(1,3059:7050203,32941567:25113396,683146,196608 -[1,3059:7246811,32941567:24720180,486538,0 -(1,3057:7246811,32859255:24720180,404226,82312 -(1,3056:7246811,32859255:0,0,0 -g1,3056:7246811,32859255 -g1,3056:7246811,32859255 -g1,3056:6919131,32859255 -(1,3056:6919131,32859255:0,0,0 -) -g1,3056:7246811,32859255 -) -k1,3057:7246811,32859255:0 -g1,3057:11356706,32859255 -g1,3057:12937435,32859255 -g1,3057:13569727,32859255 -h1,3057:14202019,32859255:0,0,0 -k1,3057:31966991,32859255:17764972 -g1,3057:31966991,32859255 -) -] -) -g1,3059:31966991,32941567 -g1,3059:7246811,32941567 -g1,3059:7246811,32941567 -g1,3059:31966991,32941567 -g1,3059:31966991,32941567 -) -h1,3059:7246811,33138175:0,0,0 -] -) -] -r1,3062:32583029,34252287:26214,16456874,0 -) -] -) -) -g1,3062:32583029,33662463 -) -h1,3062:6630773,34278501:0,0,0 -(1,3065:6630773,35614344:25952256,513147,134348 -h1,3064:6630773,35614344:983040,0,0 -k1,3064:11781575,35614344:175964 -k1,3064:12616831,35614344:175964 -k1,3064:15526302,35614344:175964 -k1,3064:16893711,35614344:175964 -k1,3064:19049518,35614344:175964 -k1,3064:19756979,35614344:175964 -k1,3064:23213675,35614344:175964 -k1,3064:24783590,35614344:175964 -k1,3064:26244060,35614344:175964 -k1,3064:27933250,35614344:175964 -k1,3064:29056865,35614344:175964 -k1,3064:31714677,35614344:175964 -k1,3064:32583029,35614344:0 -) -(1,3065:6630773,36455832:25952256,513147,134348 -k1,3064:8169278,36455832:162904 -k1,3064:9862447,36455832:162903 -k1,3064:10676779,36455832:162904 -k1,3064:12992541,36455832:162904 -k1,3064:13926147,36455832:162903 -k1,3064:16828456,36455832:162904 -k1,3064:19142906,36455832:162903 -k1,3064:19988695,36455832:162904 -k1,3064:21764440,36455832:162904 -k1,3064:22283203,36455832:162903 -k1,3064:24214924,36455832:162904 -k1,3064:26339321,36455832:162904 -k1,3064:27449875,36455832:162903 -k1,3064:29064401,36455832:162904 -k1,3064:32583029,36455832:0 -) -(1,3065:6630773,37297320:25952256,513147,134348 -k1,3064:7334848,37297320:216487 -k1,3064:9638674,37297320:216504 -k1,3064:10956183,37297320:216504 -k1,3064:12345125,37297320:216503 -k1,3064:16410558,37297320:216504 -k1,3064:17351890,37297320:216504 -k1,3064:18219822,37297320:216504 -k1,3064:20467287,37297320:216504 -k1,3064:21815598,37297320:216504 -k1,3064:24570967,37297320:216504 -k1,3064:25470356,37297320:216504 -k1,3064:27579540,37297320:216504 -k1,3064:28455336,37297320:216504 -k1,3064:31714677,37297320:216504 -k1,3064:32583029,37297320:0 -) -(1,3065:6630773,38138808:25952256,505283,126483 -k1,3064:8000929,38138808:277671 -k1,3064:9451039,38138808:277671 -k1,3064:12151576,38138808:277671 -k1,3064:13625934,38138808:277671 -k1,3064:15279206,38138808:277671 -k1,3064:19688922,38138808:277671 -k1,3064:20498090,38138808:277671 -k1,3064:22060266,38138808:277670 -k1,3064:23992721,38138808:277671 -k1,3064:25261952,38138808:277671 -k1,3064:26712062,38138808:277671 -k1,3064:29619693,38138808:277671 -k1,3064:31966991,38138808:277671 -k1,3064:32583029,38138808:0 -) -(1,3065:6630773,38980296:25952256,513147,126483 -k1,3064:8827590,38980296:137676 -k1,3064:9581304,38980296:137676 -k1,3064:12725772,38980296:137676 -k1,3064:15290246,38980296:137676 -k1,3064:17196739,38980296:137676 -k1,3064:18082181,38980296:137676 -k1,3064:21154558,38980296:137675 -k1,3064:21920069,38980296:137676 -k1,3064:22646258,38980296:137676 -k1,3064:25210732,38980296:137676 -k1,3064:26296059,38980296:137676 -k1,3064:29167242,38980296:137676 -k1,3064:30296478,38980296:137676 -k1,3064:32583029,38980296:0 -) -(1,3065:6630773,39821784:25952256,513147,126483 -k1,3064:8285042,39821784:150218 -k1,3064:10215217,39821784:150217 -k1,3064:10993270,39821784:150218 -k1,3064:13556524,39821784:150218 -k1,3064:15835351,39821784:150218 -k1,3064:17004653,39821784:150217 -k1,3064:18461004,39821784:150218 -k1,3064:20360378,39821784:150218 -k1,3064:22190938,39821784:150217 -k1,3064:24492048,39821784:150218 -k1,3064:26350134,39821784:150218 -k1,3064:27691797,39821784:150218 -k1,3064:28861099,39821784:150217 -k1,3064:31252648,39821784:150218 -k1,3064:32583029,39821784:0 -) -(1,3065:6630773,40663272:25952256,505283,7863 -k1,3065:32583030,40663272:23065396 -g1,3065:32583030,40663272 -) -v1,3067:6630773,41823805:0,393216,0 -(1,3086:6630773,45510161:25952256,4079572,196608 -g1,3086:6630773,45510161 -g1,3086:6630773,45510161 -g1,3086:6434165,45510161 -(1,3086:6434165,45510161:0,4079572,196608 -r1,3086:32779637,45510161:26345472,4276180,196608 -k1,3086:6434165,45510161:-26345472 -) -(1,3086:6434165,45510161:26345472,4079572,196608 -[1,3086:6630773,45510161:25952256,3882964,0 -(1,3069:6630773,42031423:25952256,404226,82312 -(1,3068:6630773,42031423:0,0,0 -g1,3068:6630773,42031423 -g1,3068:6630773,42031423 -g1,3068:6303093,42031423 -(1,3068:6303093,42031423:0,0,0 -) -g1,3068:6630773,42031423 -) -g1,3069:7263065,42031423 -g1,3069:8211503,42031423 -g1,3069:12321398,42031423 -g1,3069:13902127,42031423 -g1,3069:14534419,42031423 -h1,3069:15166711,42031423:0,0,0 -k1,3069:32583029,42031423:17416318 -g1,3069:32583029,42031423 -) -(1,3070:6630773,42697601:25952256,328204,0 -h1,3070:6630773,42697601:0,0,0 -h1,3070:6946919,42697601:0,0,0 -k1,3070:32583029,42697601:25636110 -g1,3070:32583029,42697601 -) -(1,3079:6630773,43429315:25952256,404226,82312 -(1,3072:6630773,43429315:0,0,0 -g1,3072:6630773,43429315 -g1,3072:6630773,43429315 -g1,3072:6303093,43429315 -(1,3072:6303093,43429315:0,0,0 -) -g1,3072:6630773,43429315 -) -g1,3079:7579210,43429315 -g1,3079:7895356,43429315 -g1,3079:8211502,43429315 -g1,3079:8527648,43429315 -g1,3079:8843794,43429315 -g1,3079:9159940,43429315 -g1,3079:10740669,43429315 -g1,3079:12321398,43429315 -g1,3079:13902127,43429315 -k1,3079:13902127,43429315:0 -h1,3079:15166710,43429315:0,0,0 -k1,3079:32583030,43429315:17416320 -g1,3079:32583030,43429315 -) -(1,3079:6630773,44095493:25952256,404226,82312 -h1,3079:6630773,44095493:0,0,0 -g1,3079:7579210,44095493 -g1,3079:9159938,44095493 -g1,3079:9476084,44095493 -g1,3079:9792230,44095493 -g1,3079:10108376,44095493 -g1,3079:10740668,44095493 -g1,3079:11056814,44095493 -g1,3079:11372960,44095493 -g1,3079:11689106,44095493 -g1,3079:12321398,44095493 -g1,3079:12637544,44095493 -g1,3079:12953690,44095493 -g1,3079:13902127,44095493 -g1,3079:14218273,44095493 -g1,3079:14534419,44095493 -h1,3079:15166710,44095493:0,0,0 -k1,3079:32583030,44095493:17416320 -g1,3079:32583030,44095493 -) -(1,3079:6630773,44761671:25952256,404226,82312 -h1,3079:6630773,44761671:0,0,0 -g1,3079:7579210,44761671 -g1,3079:9159938,44761671 -g1,3079:9476084,44761671 -g1,3079:9792230,44761671 -g1,3079:10108376,44761671 -g1,3079:10740668,44761671 -g1,3079:11056814,44761671 -g1,3079:11372960,44761671 -g1,3079:11689106,44761671 -g1,3079:12321398,44761671 -g1,3079:12637544,44761671 -g1,3079:12953690,44761671 -g1,3079:13902127,44761671 -g1,3079:14218273,44761671 -g1,3079:14534419,44761671 -h1,3079:15166710,44761671:0,0,0 -k1,3079:32583030,44761671:17416320 -g1,3079:32583030,44761671 -) -(1,3079:6630773,45427849:25952256,404226,82312 -h1,3079:6630773,45427849:0,0,0 -g1,3079:7579210,45427849 -g1,3079:9159938,45427849 -g1,3079:9476084,45427849 -g1,3079:9792230,45427849 -g1,3079:10108376,45427849 -g1,3079:10740668,45427849 -g1,3079:11056814,45427849 -g1,3079:11372960,45427849 -g1,3079:11689106,45427849 -g1,3079:12321398,45427849 -g1,3079:12637544,45427849 -g1,3079:12953690,45427849 -g1,3079:13902127,45427849 -g1,3079:14218273,45427849 -g1,3079:14534419,45427849 -h1,3079:15166710,45427849:0,0,0 -k1,3079:32583030,45427849:17416320 -g1,3079:32583030,45427849 -) -] -) -g1,3086:32583029,45510161 -g1,3086:6630773,45510161 -g1,3086:6630773,45510161 -g1,3086:32583029,45510161 -g1,3086:32583029,45510161 -) -] -(1,3086:32583029,45706769:0,0,0 -g1,3086:32583029,45706769 -) -) -] -(1,3086:6630773,47279633:25952256,0,0 -h1,3086:6630773,47279633:25952256,0,0 -) -] -h1,3086:4262630,4025873:0,0,0 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 +) +] +) +) +) +] +[1,3092:3078558,4812305:0,0,0 +(1,3092:3078558,49800853:0,16384,2228224 +g1,3092:29030814,49800853 +g1,3092:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3092:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3092:37855564,49800853:1179648,16384,0 +) +) +k1,3092:3078556,49800853:-34777008 +) +] +g1,3092:6630773,4812305 +k1,3092:19515153,4812305:12087462 +g1,3092:20901894,4812305 +g1,3092:21550700,4812305 +g1,3092:24864855,4812305 +g1,3092:27600327,4812305 +g1,3092:29010006,4812305 +) +) +] +[1,3092:6630773,45706769:25952256,40108032,0 +(1,3092:6630773,45706769:25952256,40108032,0 +(1,3092:6630773,45706769:0,0,0 +g1,3092:6630773,45706769 +) +[1,3092:6630773,45706769:25952256,40108032,0 +v1,3032:6630773,6254097:0,393216,0 +(1,3032:6630773,11928169:25952256,6067288,196608 +g1,3032:6630773,11928169 +g1,3032:6630773,11928169 +g1,3032:6434165,11928169 +(1,3032:6434165,11928169:0,6067288,196608 +r1,3032:32779637,11928169:26345472,6263896,196608 +k1,3032:6434165,11928169:-26345472 +) +(1,3032:6434165,11928169:26345472,6067288,196608 +[1,3032:6630773,11928169:25952256,5870680,0 +(1,3022:6630773,6461715:25952256,404226,82312 +h1,3022:6630773,6461715:0,0,0 +g1,3022:7579210,6461715 +g1,3022:9159938,6461715 +g1,3022:9476084,6461715 +g1,3022:9792230,6461715 +g1,3022:10108376,6461715 +g1,3022:10740668,6461715 +g1,3022:11056814,6461715 +g1,3022:11372960,6461715 +g1,3022:11689106,6461715 +g1,3022:12321398,6461715 +g1,3022:12637544,6461715 +g1,3022:12953690,6461715 +h1,3022:13585981,6461715:0,0,0 +k1,3022:32583029,6461715:18997048 +g1,3022:32583029,6461715 +) +(1,3022:6630773,7127893:25952256,404226,82312 +h1,3022:6630773,7127893:0,0,0 +g1,3022:7579210,7127893 +g1,3022:9159938,7127893 +g1,3022:9476084,7127893 +g1,3022:9792230,7127893 +g1,3022:10108376,7127893 +g1,3022:10740668,7127893 +g1,3022:11056814,7127893 +g1,3022:11372960,7127893 +g1,3022:11689106,7127893 +g1,3022:12321398,7127893 +g1,3022:12637544,7127893 +g1,3022:12953690,7127893 +h1,3022:13585981,7127893:0,0,0 +k1,3022:32583029,7127893:18997048 +g1,3022:32583029,7127893 +) +(1,3022:6630773,7794071:25952256,404226,82312 +h1,3022:6630773,7794071:0,0,0 +g1,3022:7579210,7794071 +g1,3022:9159938,7794071 +g1,3022:9476084,7794071 +g1,3022:9792230,7794071 +g1,3022:10108376,7794071 +g1,3022:10740668,7794071 +g1,3022:11056814,7794071 +g1,3022:11372960,7794071 +g1,3022:12321397,7794071 +g1,3022:12637543,7794071 +g1,3022:12953689,7794071 +h1,3022:13585980,7794071:0,0,0 +k1,3022:32583028,7794071:18997048 +g1,3022:32583028,7794071 +) +(1,3024:6630773,9115609:25952256,404226,82312 +(1,3023:6630773,9115609:0,0,0 +g1,3023:6630773,9115609 +g1,3023:6630773,9115609 +g1,3023:6303093,9115609 +(1,3023:6303093,9115609:0,0,0 +) +g1,3023:6630773,9115609 +) +k1,3024:6630773,9115609:0 +g1,3024:10740668,9115609 +g1,3024:12321397,9115609 +g1,3024:12953689,9115609 +h1,3024:13585981,9115609:0,0,0 +k1,3024:32583029,9115609:18997048 +g1,3024:32583029,9115609 +) +(1,3031:6630773,9847323:25952256,404226,82312 +(1,3026:6630773,9847323:0,0,0 +g1,3026:6630773,9847323 +g1,3026:6630773,9847323 +g1,3026:6303093,9847323 +(1,3026:6303093,9847323:0,0,0 +) +g1,3026:6630773,9847323 +) +g1,3031:7579210,9847323 +g1,3031:7895356,9847323 +g1,3031:8211502,9847323 +g1,3031:8527648,9847323 +g1,3031:8843794,9847323 +g1,3031:9159940,9847323 +g1,3031:10740669,9847323 +g1,3031:12321398,9847323 +g1,3031:13902127,9847323 +g1,3031:15482856,9847323 +k1,3031:15482856,9847323:0 +h1,3031:16747439,9847323:0,0,0 +k1,3031:32583029,9847323:15835590 +g1,3031:32583029,9847323 +) +(1,3031:6630773,10513501:25952256,404226,82312 +h1,3031:6630773,10513501:0,0,0 +g1,3031:7579210,10513501 +g1,3031:9159938,10513501 +g1,3031:9476084,10513501 +g1,3031:9792230,10513501 +g1,3031:10108376,10513501 +g1,3031:10740668,10513501 +g1,3031:11056814,10513501 +g1,3031:11372960,10513501 +g1,3031:11689106,10513501 +g1,3031:12321398,10513501 +g1,3031:12637544,10513501 +g1,3031:12953690,10513501 +g1,3031:13269836,10513501 +g1,3031:13902128,10513501 +g1,3031:14218274,10513501 +g1,3031:14534420,10513501 +g1,3031:15482857,10513501 +g1,3031:15799003,10513501 +g1,3031:16115149,10513501 +h1,3031:16747440,10513501:0,0,0 +k1,3031:32583029,10513501:15835589 +g1,3031:32583029,10513501 +) +(1,3031:6630773,11179679:25952256,404226,82312 +h1,3031:6630773,11179679:0,0,0 +g1,3031:7579210,11179679 +g1,3031:9159938,11179679 +g1,3031:9476084,11179679 +g1,3031:9792230,11179679 +g1,3031:10108376,11179679 +g1,3031:10740668,11179679 +g1,3031:11056814,11179679 +g1,3031:11372960,11179679 +g1,3031:11689106,11179679 +g1,3031:12321398,11179679 +g1,3031:12637544,11179679 +g1,3031:12953690,11179679 +g1,3031:13269836,11179679 +g1,3031:13902128,11179679 +g1,3031:14218274,11179679 +g1,3031:14534420,11179679 +g1,3031:15482857,11179679 +g1,3031:15799003,11179679 +g1,3031:16115149,11179679 +h1,3031:16747440,11179679:0,0,0 +k1,3031:32583029,11179679:15835589 +g1,3031:32583029,11179679 +) +(1,3031:6630773,11845857:25952256,404226,82312 +h1,3031:6630773,11845857:0,0,0 +g1,3031:7579210,11845857 +g1,3031:9159938,11845857 +g1,3031:9476084,11845857 +g1,3031:9792230,11845857 +g1,3031:10108376,11845857 +g1,3031:10740668,11845857 +g1,3031:11056814,11845857 +g1,3031:11372960,11845857 +g1,3031:11689106,11845857 +g1,3031:12321398,11845857 +g1,3031:12637544,11845857 +g1,3031:12953690,11845857 +g1,3031:13269836,11845857 +g1,3031:13902128,11845857 +g1,3031:14218274,11845857 +g1,3031:14534420,11845857 +g1,3031:15482857,11845857 +g1,3031:15799003,11845857 +g1,3031:16115149,11845857 +h1,3031:16747440,11845857:0,0,0 +k1,3031:32583029,11845857:15835589 +g1,3031:32583029,11845857 +) +] +) +g1,3032:32583029,11928169 +g1,3032:6630773,11928169 +g1,3032:6630773,11928169 +g1,3032:32583029,11928169 +g1,3032:32583029,11928169 +) +h1,3032:6630773,12124777:0,0,0 +(1,3036:6630773,13460620:25952256,513147,102891 +h1,3035:6630773,13460620:983040,0,0 +k1,3035:9625332,13460620:228284 +k1,3035:10209475,13460620:228283 +k1,3035:12415636,13460620:228284 +k1,3035:13175417,13460620:228284 +k1,3035:16564501,13460620:228283 +k1,3035:17444213,13460620:228284 +k1,3035:18028357,13460620:228284 +k1,3035:20517632,13460620:228283 +k1,3035:21664731,13460620:228284 +k1,3035:24158595,13460620:228284 +k1,3035:24918375,13460620:228283 +k1,3035:25798087,13460620:228284 +k1,3035:28480694,13460620:228284 +k1,3035:29728062,13460620:228283 +k1,3035:31966991,13460620:228284 +k1,3035:32583029,13460620:0 +) +(1,3036:6630773,14302108:25952256,513147,134348 +k1,3035:7813143,14302108:163285 +k1,3035:9954306,14302108:163286 +k1,3035:10769019,14302108:163285 +k1,3035:11951389,14302108:163285 +k1,3035:14201997,14302108:163286 +k1,3035:16843854,14302108:163285 +k1,3035:18574760,14302108:163285 +k1,3035:19757130,14302108:163285 +k1,3035:22596251,14302108:163286 +k1,3035:25316095,14302108:163285 +k1,3035:26670825,14302108:163285 +k1,3035:28844100,14302108:163286 +k1,3035:30026470,14302108:163285 +k1,3035:32583029,14302108:0 +) +(1,3036:6630773,15143596:25952256,513147,126483 +k1,3035:8566332,15143596:184437 +k1,3035:10318390,15143596:184437 +k1,3035:11521912,15143596:184437 +k1,3035:12952188,15143596:184437 +k1,3035:14741602,15143596:184437 +k1,3035:15945124,15143596:184437 +k1,3035:17435693,15143596:184436 +k1,3035:20003019,15143596:184437 +k1,3035:20718953,15143596:184437 +k1,3035:22685969,15143596:184437 +k1,3035:23889491,15143596:184437 +k1,3035:26519076,15143596:184437 +k1,3035:29811886,15143596:184437 +k1,3035:31563944,15143596:184437 +k1,3035:32583029,15143596:0 +) +(1,3036:6630773,15985084:25952256,513147,134348 +k1,3035:7938175,15985084:235233 +k1,3035:8832700,15985084:235233 +k1,3035:10087018,15985084:235233 +k1,3035:11706372,15985084:235234 +k1,3035:14498164,15985084:235233 +k1,3035:15419559,15985084:235233 +k1,3035:16759074,15985084:235233 +k1,3035:17742073,15985084:235233 +k1,3035:19417132,15985084:235233 +k1,3035:21681360,15985084:235233 +k1,3035:23297437,15985084:235233 +k1,3035:25271997,15985084:235234 +k1,3035:26611512,15985084:235233 +k1,3035:27594511,15985084:235233 +k1,3035:30491161,15985084:235233 +k1,3035:31412556,15985084:235233 +k1,3035:32583029,15985084:0 +) +(1,3036:6630773,16826572:25952256,505283,134348 +g1,3035:7962464,16826572 +g1,3035:10834907,16826572 +g1,3035:11650174,16826572 +g1,3035:12868488,16826572 +g1,3035:16718072,16826572 +k1,3036:32583029,16826572:13822855 +g1,3036:32583029,16826572 +) +v1,3038:6630773,18162415:0,393216,0 +(1,3068:6630773,33662463:25952256,15893264,616038 +g1,3068:6630773,33662463 +(1,3068:6630773,33662463:25952256,15893264,616038 +(1,3068:6630773,34278501:25952256,16509302,0 +[1,3068:6630773,34278501:25952256,16509302,0 +(1,3068:6630773,34252287:25952256,16456874,0 +r1,3068:6656987,34252287:26214,16456874,0 +[1,3068:6656987,34252287:25899828,16456874,0 +(1,3068:6656987,33662463:25899828,15277226,0 +[1,3068:7246811,33662463:24720180,15277226,0 +(1,3039:7246811,19472611:24720180,1087374,134348 +k1,3038:8699127,19472611:242613 +k1,3038:10885538,19472611:242613 +k1,3038:11744189,19472611:242613 +k1,3038:13005887,19472611:242613 +k1,3038:14636553,19472611:242613 +k1,3038:16377319,19472611:242613 +k1,3038:17567583,19472611:242613 +k1,3038:18829280,19472611:242612 +(1,3038:18829280,19472611:0,452978,115847 +r1,3068:20946105,19472611:2116825,568825,115847 +k1,3038:18829280,19472611:-2116825 +) +(1,3038:18829280,19472611:2116825,452978,115847 +k1,3038:18829280,19472611:3277 +h1,3038:20942828,19472611:0,411205,112570 +) +k1,3038:21188718,19472611:242613 +k1,3038:25138047,19472611:242613 +k1,3038:26711041,19472611:242613 +k1,3038:27605082,19472611:242613 +k1,3038:28940180,19472611:242613 +k1,3038:30201878,19472611:242613 +(1,3038:30201878,19472611:0,452978,115847 +r1,3068:31966991,19472611:1765113,568825,115847 +k1,3038:30201878,19472611:-1765113 +) +(1,3038:30201878,19472611:1765113,452978,115847 +k1,3038:30201878,19472611:3277 +h1,3038:31963714,19472611:0,411205,112570 +) +k1,3038:31966991,19472611:0 +) +(1,3039:7246811,20314099:24720180,513147,126483 +k1,3038:10779302,20314099:251759 +k1,3038:11682489,20314099:251759 +k1,3038:13387837,20314099:251759 +k1,3038:14658681,20314099:251759 +k1,3038:17176020,20314099:251759 +k1,3038:19167105,20314099:251759 +k1,3038:20034901,20314099:251758 +k1,3038:22172131,20314099:251759 +k1,3038:23442975,20314099:251759 +k1,3038:26563900,20314099:251759 +k1,3038:27474951,20314099:251759 +k1,3038:28745795,20314099:251759 +k1,3038:30975431,20314099:251759 +k1,3038:31966991,20314099:0 +) +(1,3039:7246811,21155587:24720180,513147,7863 +g1,3038:10321104,21155587 +g1,3038:11171761,21155587 +g1,3038:14084181,21155587 +g1,3038:15474855,21155587 +g1,3038:17208282,21155587 +g1,3038:18066803,21155587 +g1,3038:19285117,21155587 +g1,3038:20767541,21155587 +k1,3039:31966991,21155587:8938458 +g1,3039:31966991,21155587 +) +v1,3041:7246811,22346053:0,393216,0 +(1,3045:7246811,22654858:24720180,702021,196608 +g1,3045:7246811,22654858 +g1,3045:7246811,22654858 +g1,3045:7050203,22654858 +(1,3045:7050203,22654858:0,702021,196608 +r1,3068:32163599,22654858:25113396,898629,196608 +k1,3045:7050203,22654858:-25113396 +) +(1,3045:7050203,22654858:25113396,702021,196608 +[1,3045:7246811,22654858:24720180,505413,0 +(1,3043:7246811,22553671:24720180,404226,101187 +(1,3042:7246811,22553671:0,0,0 +g1,3042:7246811,22553671 +g1,3042:7246811,22553671 +g1,3042:6919131,22553671 +(1,3042:6919131,22553671:0,0,0 +) +g1,3042:7246811,22553671 +) +k1,3043:7246811,22553671:0 +h1,3043:11040559,22553671:0,0,0 +k1,3043:31966991,22553671:20926432 +g1,3043:31966991,22553671 +) +] +) +g1,3045:31966991,22654858 +g1,3045:7246811,22654858 +g1,3045:7246811,22654858 +g1,3045:31966991,22654858 +g1,3045:31966991,22654858 +) +h1,3045:7246811,22851466:0,0,0 +(1,3049:7246811,24217242:24720180,513147,134348 +h1,3048:7246811,24217242:983040,0,0 +k1,3048:10180354,24217242:175788 +k1,3048:11526614,24217242:175787 +k1,3048:12693962,24217242:175788 +k1,3048:15246740,24217242:175787 +k1,3048:16035290,24217242:175788 +k1,3048:17230163,24217242:175788 +k1,3048:18794003,24217242:175787 +k1,3048:20641614,24217242:175788 +k1,3048:22103218,24217242:175788 +k1,3048:25009890,24217242:175787 +k1,3048:26204763,24217242:175788 +k1,3048:28646130,24217242:175787 +k1,3048:31307699,24217242:175788 +k1,3048:31966991,24217242:0 +) +(1,3049:7246811,25058730:24720180,505283,7863 +g1,3048:10159231,25058730 +g1,3048:11549905,25058730 +k1,3049:31966991,25058730:18709218 +g1,3049:31966991,25058730 +) +v1,3051:7246811,26249196:0,393216,0 +(1,3055:7246811,26532835:24720180,676855,196608 +g1,3055:7246811,26532835 +g1,3055:7246811,26532835 +g1,3055:7050203,26532835 +(1,3055:7050203,26532835:0,676855,196608 +r1,3068:32163599,26532835:25113396,873463,196608 +k1,3055:7050203,26532835:-25113396 +) +(1,3055:7050203,26532835:25113396,676855,196608 +[1,3055:7246811,26532835:24720180,480247,0 +(1,3053:7246811,26456814:24720180,404226,76021 +(1,3052:7246811,26456814:0,0,0 +g1,3052:7246811,26456814 +g1,3052:7246811,26456814 +g1,3052:6919131,26456814 +(1,3052:6919131,26456814:0,0,0 +) +g1,3052:7246811,26456814 +) +k1,3053:7246811,26456814:0 +h1,3053:11040560,26456814:0,0,0 +k1,3053:31966992,26456814:20926432 +g1,3053:31966992,26456814 +) +] +) +g1,3055:31966991,26532835 +g1,3055:7246811,26532835 +g1,3055:7246811,26532835 +g1,3055:31966991,26532835 +g1,3055:31966991,26532835 +) +h1,3055:7246811,26729443:0,0,0 +(1,3059:7246811,28095219:24720180,513147,134348 +h1,3058:7246811,28095219:983040,0,0 +k1,3058:9828425,28095219:275402 +k1,3058:10755256,28095219:275403 +k1,3058:12518981,28095219:275402 +k1,3058:15019987,28095219:275403 +k1,3058:15651249,28095219:275402 +k1,3058:17696778,28095219:275402 +k1,3058:18631473,28095219:275403 +k1,3058:20237256,28095219:275402 +k1,3058:21164086,28095219:275402 +k1,3058:24261469,28095219:275403 +k1,3058:26143814,28095219:275402 +k1,3058:27610662,28095219:275403 +k1,3058:30456386,28095219:275402 +k1,3059:31966991,28095219:0 +) +(1,3059:7246811,28936707:24720180,505283,134348 +k1,3058:9415998,28936707:257502 +k1,3058:10791544,28936707:257502 +k1,3058:12068131,28936707:257502 +k1,3058:13821819,28936707:257501 +k1,3058:15947752,28936707:257502 +k1,3058:17396699,28936707:257502 +k1,3058:19369934,28936707:257502 +k1,3058:21008280,28936707:257502 +k1,3058:22436255,28936707:257502 +k1,3058:26358529,28936707:257501 +k1,3058:28501502,28936707:257502 +k1,3058:31435494,28936707:257502 +k1,3058:31966991,28936707:0 +) +(1,3059:7246811,29778195:24720180,513147,134348 +k1,3058:9251951,29778195:267125 +k1,3058:12457054,29778195:267124 +k1,3058:14765625,29778195:267125 +k1,3058:18088038,29778195:267125 +k1,3058:19374248,29778195:267125 +k1,3058:23001403,29778195:267124 +k1,3058:25698603,29778195:267125 +k1,3058:26423825,29778195:267125 +k1,3058:27882394,29778195:267124 +k1,3058:30418375,29778195:267125 +k1,3058:31966991,29778195:0 +) +(1,3059:7246811,30619683:24720180,513147,126483 +k1,3058:8486812,30619683:220916 +k1,3058:11486455,30619683:220916 +k1,3058:13387714,30619683:220916 +k1,3058:14741092,30619683:220916 +k1,3058:15883444,30619683:220916 +k1,3058:19839256,30619683:220915 +k1,3058:22820548,30619683:220916 +k1,3058:24500295,30619683:220916 +k1,3058:28174303,30619683:220916 +k1,3058:29046647,30619683:220916 +k1,3058:30286648,30619683:220916 +k1,3058:31966991,30619683:0 +) +(1,3059:7246811,31461171:24720180,505283,126483 +g1,3058:9934442,31461171 +k1,3059:31966991,31461171:19080152 +g1,3059:31966991,31461171 +) +v1,3061:7246811,32651637:0,393216,0 +(1,3065:7246811,32941567:24720180,683146,196608 +g1,3065:7246811,32941567 +g1,3065:7246811,32941567 +g1,3065:7050203,32941567 +(1,3065:7050203,32941567:0,683146,196608 +r1,3068:32163599,32941567:25113396,879754,196608 +k1,3065:7050203,32941567:-25113396 +) +(1,3065:7050203,32941567:25113396,683146,196608 +[1,3065:7246811,32941567:24720180,486538,0 +(1,3063:7246811,32859255:24720180,404226,82312 +(1,3062:7246811,32859255:0,0,0 +g1,3062:7246811,32859255 +g1,3062:7246811,32859255 +g1,3062:6919131,32859255 +(1,3062:6919131,32859255:0,0,0 +) +g1,3062:7246811,32859255 +) +k1,3063:7246811,32859255:0 +g1,3063:11356706,32859255 +g1,3063:12937435,32859255 +g1,3063:13569727,32859255 +h1,3063:14202019,32859255:0,0,0 +k1,3063:31966991,32859255:17764972 +g1,3063:31966991,32859255 +) +] +) +g1,3065:31966991,32941567 +g1,3065:7246811,32941567 +g1,3065:7246811,32941567 +g1,3065:31966991,32941567 +g1,3065:31966991,32941567 +) +h1,3065:7246811,33138175:0,0,0 +] +) +] +r1,3068:32583029,34252287:26214,16456874,0 +) +] +) +) +g1,3068:32583029,33662463 +) +h1,3068:6630773,34278501:0,0,0 +(1,3071:6630773,35614344:25952256,513147,134348 +h1,3070:6630773,35614344:983040,0,0 +k1,3070:11781575,35614344:175964 +k1,3070:12616831,35614344:175964 +k1,3070:15526302,35614344:175964 +k1,3070:16893711,35614344:175964 +k1,3070:19049518,35614344:175964 +k1,3070:19756979,35614344:175964 +k1,3070:23213675,35614344:175964 +k1,3070:24783590,35614344:175964 +k1,3070:26244060,35614344:175964 +k1,3070:27933250,35614344:175964 +k1,3070:29056865,35614344:175964 +k1,3070:31714677,35614344:175964 +k1,3070:32583029,35614344:0 +) +(1,3071:6630773,36455832:25952256,513147,134348 +k1,3070:8169278,36455832:162904 +k1,3070:9862447,36455832:162903 +k1,3070:10676779,36455832:162904 +k1,3070:12992541,36455832:162904 +k1,3070:13926147,36455832:162903 +k1,3070:16828456,36455832:162904 +k1,3070:19142906,36455832:162903 +k1,3070:19988695,36455832:162904 +k1,3070:21764440,36455832:162904 +k1,3070:22283203,36455832:162903 +k1,3070:24214924,36455832:162904 +k1,3070:26339321,36455832:162904 +k1,3070:27449875,36455832:162903 +k1,3070:29064401,36455832:162904 +k1,3070:32583029,36455832:0 +) +(1,3071:6630773,37297320:25952256,513147,134348 +k1,3070:7334848,37297320:216487 +k1,3070:9638674,37297320:216504 +k1,3070:10956183,37297320:216504 +k1,3070:12345125,37297320:216503 +k1,3070:16410558,37297320:216504 +k1,3070:17351890,37297320:216504 +k1,3070:18219822,37297320:216504 +k1,3070:20467287,37297320:216504 +k1,3070:21815598,37297320:216504 +k1,3070:24570967,37297320:216504 +k1,3070:25470356,37297320:216504 +k1,3070:27579540,37297320:216504 +k1,3070:28455336,37297320:216504 +k1,3070:31714677,37297320:216504 +k1,3070:32583029,37297320:0 +) +(1,3071:6630773,38138808:25952256,505283,126483 +k1,3070:8000929,38138808:277671 +k1,3070:9451039,38138808:277671 +k1,3070:12151576,38138808:277671 +k1,3070:13625934,38138808:277671 +k1,3070:15279206,38138808:277671 +k1,3070:19688922,38138808:277671 +k1,3070:20498090,38138808:277671 +k1,3070:22060266,38138808:277670 +k1,3070:23992721,38138808:277671 +k1,3070:25261952,38138808:277671 +k1,3070:26712062,38138808:277671 +k1,3070:29619693,38138808:277671 +k1,3070:31966991,38138808:277671 +k1,3070:32583029,38138808:0 +) +(1,3071:6630773,38980296:25952256,513147,126483 +k1,3070:8827590,38980296:137676 +k1,3070:9581304,38980296:137676 +k1,3070:12725772,38980296:137676 +k1,3070:15290246,38980296:137676 +k1,3070:17196739,38980296:137676 +k1,3070:18082181,38980296:137676 +k1,3070:21154558,38980296:137675 +k1,3070:21920069,38980296:137676 +k1,3070:22646258,38980296:137676 +k1,3070:25210732,38980296:137676 +k1,3070:26296059,38980296:137676 +k1,3070:29167242,38980296:137676 +k1,3070:30296478,38980296:137676 +k1,3070:32583029,38980296:0 +) +(1,3071:6630773,39821784:25952256,513147,126483 +k1,3070:8285042,39821784:150218 +k1,3070:10215217,39821784:150217 +k1,3070:10993270,39821784:150218 +k1,3070:13556524,39821784:150218 +k1,3070:15835351,39821784:150218 +k1,3070:17004653,39821784:150217 +k1,3070:18461004,39821784:150218 +k1,3070:20360378,39821784:150218 +k1,3070:22190938,39821784:150217 +k1,3070:24492048,39821784:150218 +k1,3070:26350134,39821784:150218 +k1,3070:27691797,39821784:150218 +k1,3070:28861099,39821784:150217 +k1,3070:31252648,39821784:150218 +k1,3070:32583029,39821784:0 +) +(1,3071:6630773,40663272:25952256,505283,7863 +k1,3071:32583030,40663272:23065396 +g1,3071:32583030,40663272 +) +v1,3073:6630773,41823805:0,393216,0 +(1,3092:6630773,45510161:25952256,4079572,196608 +g1,3092:6630773,45510161 +g1,3092:6630773,45510161 +g1,3092:6434165,45510161 +(1,3092:6434165,45510161:0,4079572,196608 +r1,3092:32779637,45510161:26345472,4276180,196608 +k1,3092:6434165,45510161:-26345472 +) +(1,3092:6434165,45510161:26345472,4079572,196608 +[1,3092:6630773,45510161:25952256,3882964,0 +(1,3075:6630773,42031423:25952256,404226,82312 +(1,3074:6630773,42031423:0,0,0 +g1,3074:6630773,42031423 +g1,3074:6630773,42031423 +g1,3074:6303093,42031423 +(1,3074:6303093,42031423:0,0,0 +) +g1,3074:6630773,42031423 +) +g1,3075:7263065,42031423 +g1,3075:8211503,42031423 +g1,3075:12321398,42031423 +g1,3075:13902127,42031423 +g1,3075:14534419,42031423 +h1,3075:15166711,42031423:0,0,0 +k1,3075:32583029,42031423:17416318 +g1,3075:32583029,42031423 +) +(1,3076:6630773,42697601:25952256,328204,0 +h1,3076:6630773,42697601:0,0,0 +h1,3076:6946919,42697601:0,0,0 +k1,3076:32583029,42697601:25636110 +g1,3076:32583029,42697601 +) +(1,3085:6630773,43429315:25952256,404226,82312 +(1,3078:6630773,43429315:0,0,0 +g1,3078:6630773,43429315 +g1,3078:6630773,43429315 +g1,3078:6303093,43429315 +(1,3078:6303093,43429315:0,0,0 +) +g1,3078:6630773,43429315 +) +g1,3085:7579210,43429315 +g1,3085:7895356,43429315 +g1,3085:8211502,43429315 +g1,3085:8527648,43429315 +g1,3085:8843794,43429315 +g1,3085:9159940,43429315 +g1,3085:10740669,43429315 +g1,3085:12321398,43429315 +g1,3085:13902127,43429315 +k1,3085:13902127,43429315:0 +h1,3085:15166710,43429315:0,0,0 +k1,3085:32583030,43429315:17416320 +g1,3085:32583030,43429315 +) +(1,3085:6630773,44095493:25952256,404226,82312 +h1,3085:6630773,44095493:0,0,0 +g1,3085:7579210,44095493 +g1,3085:9159938,44095493 +g1,3085:9476084,44095493 +g1,3085:9792230,44095493 +g1,3085:10108376,44095493 +g1,3085:10740668,44095493 +g1,3085:11056814,44095493 +g1,3085:11372960,44095493 +g1,3085:11689106,44095493 +g1,3085:12321398,44095493 +g1,3085:12637544,44095493 +g1,3085:12953690,44095493 +g1,3085:13902127,44095493 +g1,3085:14218273,44095493 +g1,3085:14534419,44095493 +h1,3085:15166710,44095493:0,0,0 +k1,3085:32583030,44095493:17416320 +g1,3085:32583030,44095493 +) +(1,3085:6630773,44761671:25952256,404226,82312 +h1,3085:6630773,44761671:0,0,0 +g1,3085:7579210,44761671 +g1,3085:9159938,44761671 +g1,3085:9476084,44761671 +g1,3085:9792230,44761671 +g1,3085:10108376,44761671 +g1,3085:10740668,44761671 +g1,3085:11056814,44761671 +g1,3085:11372960,44761671 +g1,3085:11689106,44761671 +g1,3085:12321398,44761671 +g1,3085:12637544,44761671 +g1,3085:12953690,44761671 +g1,3085:13902127,44761671 +g1,3085:14218273,44761671 +g1,3085:14534419,44761671 +h1,3085:15166710,44761671:0,0,0 +k1,3085:32583030,44761671:17416320 +g1,3085:32583030,44761671 +) +(1,3085:6630773,45427849:25952256,404226,82312 +h1,3085:6630773,45427849:0,0,0 +g1,3085:7579210,45427849 +g1,3085:9159938,45427849 +g1,3085:9476084,45427849 +g1,3085:9792230,45427849 +g1,3085:10108376,45427849 +g1,3085:10740668,45427849 +g1,3085:11056814,45427849 +g1,3085:11372960,45427849 +g1,3085:11689106,45427849 +g1,3085:12321398,45427849 +g1,3085:12637544,45427849 +g1,3085:12953690,45427849 +g1,3085:13902127,45427849 +g1,3085:14218273,45427849 +g1,3085:14534419,45427849 +h1,3085:15166710,45427849:0,0,0 +k1,3085:32583030,45427849:17416320 +g1,3085:32583030,45427849 +) +] +) +g1,3092:32583029,45510161 +g1,3092:6630773,45510161 +g1,3092:6630773,45510161 +g1,3092:32583029,45510161 +g1,3092:32583029,45510161 +) +] +(1,3092:32583029,45706769:0,0,0 +g1,3092:32583029,45706769 +) +) +] +(1,3092:6630773,47279633:25952256,0,0 +h1,3092:6630773,47279633:25952256,0,0 +) +] +h1,3092:4262630,4025873:0,0,0 ] !25300 }63 -Input:419:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:420:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {64 -[1,3188:4262630,47279633:28320399,43253760,0 -(1,3188:4262630,4025873:0,0,0 -[1,3188:-473657,4025873:25952256,0,0 -(1,3188:-473657,-710414:25952256,0,0 -h1,3188:-473657,-710414:0,0,0 -(1,3188:-473657,-710414:0,0,0 -(1,3188:-473657,-710414:0,0,0 -g1,3188:-473657,-710414 -(1,3188:-473657,-710414:65781,0,65781 -g1,3188:-407876,-710414 -[1,3188:-407876,-644633:0,0,0 +[1,3194:4262630,47279633:28320399,43253760,0 +(1,3194:4262630,4025873:0,0,0 +[1,3194:-473657,4025873:25952256,0,0 +(1,3194:-473657,-710414:25952256,0,0 +h1,3194:-473657,-710414:0,0,0 +(1,3194:-473657,-710414:0,0,0 +(1,3194:-473657,-710414:0,0,0 +g1,3194:-473657,-710414 +(1,3194:-473657,-710414:65781,0,65781 +g1,3194:-407876,-710414 +[1,3194:-407876,-644633:0,0,0 ] ) -k1,3188:-473657,-710414:-65781 +k1,3194:-473657,-710414:-65781 ) ) -k1,3188:25478599,-710414:25952256 -g1,3188:25478599,-710414 +k1,3194:25478599,-710414:25952256 +g1,3194:25478599,-710414 ) ] ) -[1,3188:6630773,47279633:25952256,43253760,0 -[1,3188:6630773,4812305:25952256,786432,0 -(1,3188:6630773,4812305:25952256,505283,126483 -(1,3188:6630773,4812305:25952256,505283,126483 -g1,3188:3078558,4812305 -[1,3188:3078558,4812305:0,0,0 -(1,3188:3078558,2439708:0,1703936,0 -k1,3188:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3188:2537886,2439708:1179648,16384,0 +[1,3194:6630773,47279633:25952256,43253760,0 +[1,3194:6630773,4812305:25952256,786432,0 +(1,3194:6630773,4812305:25952256,505283,126483 +(1,3194:6630773,4812305:25952256,505283,126483 +g1,3194:3078558,4812305 +[1,3194:3078558,4812305:0,0,0 +(1,3194:3078558,2439708:0,1703936,0 +k1,3194:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3194:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3188:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3194:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3188:3078558,4812305:0,0,0 -(1,3188:3078558,2439708:0,1703936,0 -g1,3188:29030814,2439708 -g1,3188:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3188:36151628,1915420:16384,1179648,0 +[1,3194:3078558,4812305:0,0,0 +(1,3194:3078558,2439708:0,1703936,0 +g1,3194:29030814,2439708 +g1,3194:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3194:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3188:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3194:37855564,2439708:1179648,16384,0 ) ) -k1,3188:3078556,2439708:-34777008 +k1,3194:3078556,2439708:-34777008 ) ] -[1,3188:3078558,4812305:0,0,0 -(1,3188:3078558,49800853:0,16384,2228224 -k1,3188:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3188:2537886,49800853:1179648,16384,0 +[1,3194:3078558,4812305:0,0,0 +(1,3194:3078558,49800853:0,16384,2228224 +k1,3194:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3194:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3188:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3194:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 -) -] -) -) -) -] -[1,3188:3078558,4812305:0,0,0 -(1,3188:3078558,49800853:0,16384,2228224 -g1,3188:29030814,49800853 -g1,3188:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3188:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 +) +] +) +) +) +] +[1,3194:3078558,4812305:0,0,0 +(1,3194:3078558,49800853:0,16384,2228224 +g1,3194:29030814,49800853 +g1,3194:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3194:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3188:37855564,49800853:1179648,16384,0 -) -) -k1,3188:3078556,49800853:-34777008 -) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3194:37855564,49800853:1179648,16384,0 +) +) +k1,3194:3078556,49800853:-34777008 +) ] -g1,3188:6630773,4812305 -g1,3188:6630773,4812305 -g1,3188:9472414,4812305 -g1,3188:10882093,4812305 -g1,3188:16529985,4812305 -g1,3188:18796220,4812305 -k1,3188:31786111,4812305:12989891 -) -) -] -[1,3188:6630773,45706769:25952256,40108032,0 -(1,3188:6630773,45706769:25952256,40108032,0 -(1,3188:6630773,45706769:0,0,0 -g1,3188:6630773,45706769 -) -[1,3188:6630773,45706769:25952256,40108032,0 -v1,3086:6630773,6254097:0,393216,0 -(1,3086:6630773,9257166:25952256,3396285,196608 -g1,3086:6630773,9257166 -g1,3086:6630773,9257166 -g1,3086:6434165,9257166 -(1,3086:6434165,9257166:0,3396285,196608 -r1,3086:32779637,9257166:26345472,3592893,196608 -k1,3086:6434165,9257166:-26345472 -) -(1,3086:6434165,9257166:26345472,3396285,196608 -[1,3086:6630773,9257166:25952256,3199677,0 -(1,3079:6630773,6461715:25952256,404226,82312 -h1,3079:6630773,6461715:0,0,0 -g1,3079:7579210,6461715 -g1,3079:9159938,6461715 -g1,3079:9476084,6461715 -g1,3079:9792230,6461715 -g1,3079:10108376,6461715 -g1,3079:10740668,6461715 -g1,3079:11056814,6461715 -g1,3079:11372960,6461715 -g1,3079:11689106,6461715 -g1,3079:12321398,6461715 -g1,3079:12637544,6461715 -g1,3079:12953690,6461715 -g1,3079:13902127,6461715 -g1,3079:14218273,6461715 -g1,3079:14534419,6461715 -h1,3079:15166710,6461715:0,0,0 -k1,3079:32583030,6461715:17416320 -g1,3079:32583030,6461715 -) -(1,3079:6630773,7127893:25952256,404226,82312 -h1,3079:6630773,7127893:0,0,0 -g1,3079:7579210,7127893 -g1,3079:9159938,7127893 -g1,3079:9476084,7127893 -g1,3079:9792230,7127893 -g1,3079:10108376,7127893 -g1,3079:10740668,7127893 -g1,3079:11056814,7127893 -g1,3079:11372960,7127893 -g1,3079:12321397,7127893 -g1,3079:12637543,7127893 -g1,3079:12953689,7127893 -g1,3079:13902126,7127893 -g1,3079:14218272,7127893 -g1,3079:14534418,7127893 -h1,3079:15166709,7127893:0,0,0 -k1,3079:32583029,7127893:17416320 -g1,3079:32583029,7127893 -) -(1,3081:6630773,8449431:25952256,404226,82312 -(1,3080:6630773,8449431:0,0,0 -g1,3080:6630773,8449431 -g1,3080:6630773,8449431 -g1,3080:6303093,8449431 -(1,3080:6303093,8449431:0,0,0 -) -g1,3080:6630773,8449431 -) -k1,3081:6630773,8449431:0 -g1,3081:8211502,8449431 -h1,3081:8843794,8449431:0,0,0 -k1,3081:32583030,8449431:23739236 -g1,3081:32583030,8449431 -) -(1,3085:6630773,9181145:25952256,404226,76021 -(1,3083:6630773,9181145:0,0,0 -g1,3083:6630773,9181145 -g1,3083:6630773,9181145 -g1,3083:6303093,9181145 -(1,3083:6303093,9181145:0,0,0 -) -g1,3083:6630773,9181145 -) -g1,3085:7579210,9181145 -g1,3085:8843793,9181145 -h1,3085:9159939,9181145:0,0,0 -k1,3085:32583029,9181145:23423090 -g1,3085:32583029,9181145 -) -] -) -g1,3086:32583029,9257166 -g1,3086:6630773,9257166 -g1,3086:6630773,9257166 -g1,3086:32583029,9257166 -g1,3086:32583029,9257166 -) -h1,3086:6630773,9453774:0,0,0 -(1,3090:6630773,10819550:25952256,513147,134348 -h1,3089:6630773,10819550:983040,0,0 -k1,3089:10337545,10819550:274652 -k1,3089:13218564,10819550:274652 -k1,3089:14152508,10819550:274652 -k1,3089:15757541,10819550:274652 -k1,3089:18771598,10819550:274652 -k1,3089:19705542,10819550:274652 -k1,3089:22288372,10819550:274652 -k1,3089:24489782,10819550:274652 -k1,3089:25380473,10819550:274653 -k1,3089:26069892,10819550:274576 -k1,3089:27576621,10819550:274652 -k1,3089:30129960,10819550:274652 -h1,3089:31499007,10819550:0,0,0 -k1,3089:31773659,10819550:274652 -k1,3089:32583029,10819550:0 -) -(1,3090:6630773,11661038:25952256,505283,134348 -g1,3089:8328155,11661038 -h1,3089:9125073,11661038:0,0,0 -g1,3089:9705066,11661038 -g1,3089:10857844,11661038 -g1,3089:12189535,11661038 -g1,3089:13719145,11661038 -g1,3089:15681948,11661038 -g1,3089:16900262,11661038 -g1,3089:18752964,11661038 -g1,3089:20538164,11661038 -g1,3089:21353431,11661038 -g1,3089:22725099,11661038 -k1,3090:32583029,11661038:6009001 -g1,3090:32583029,11661038 -) -v1,3092:6630773,12851504:0,393216,0 -(1,3137:6630773,31412648:25952256,18954360,196608 -g1,3137:6630773,31412648 -g1,3137:6630773,31412648 -g1,3137:6434165,31412648 -(1,3137:6434165,31412648:0,18954360,196608 -r1,3137:32779637,31412648:26345472,19150968,196608 -k1,3137:6434165,31412648:-26345472 -) -(1,3137:6434165,31412648:26345472,18954360,196608 -[1,3137:6630773,31412648:25952256,18757752,0 -(1,3094:6630773,13059122:25952256,404226,82312 -(1,3093:6630773,13059122:0,0,0 -g1,3093:6630773,13059122 -g1,3093:6630773,13059122 -g1,3093:6303093,13059122 -(1,3093:6303093,13059122:0,0,0 -) -g1,3093:6630773,13059122 -) -k1,3094:6630773,13059122:0 -g1,3094:8211502,13059122 -h1,3094:8527648,13059122:0,0,0 -k1,3094:32583028,13059122:24055380 -g1,3094:32583028,13059122 -) -(1,3098:6630773,13790836:25952256,404226,76021 -(1,3096:6630773,13790836:0,0,0 -g1,3096:6630773,13790836 -g1,3096:6630773,13790836 -g1,3096:6303093,13790836 -(1,3096:6303093,13790836:0,0,0 -) -g1,3096:6630773,13790836 -) -g1,3098:7579210,13790836 -g1,3098:8843793,13790836 -g1,3098:9159939,13790836 -g1,3098:9792231,13790836 -g1,3098:10108377,13790836 -g1,3098:10740669,13790836 -g1,3098:11689106,13790836 -h1,3098:12321397,13790836:0,0,0 -k1,3098:32583029,13790836:20261632 -g1,3098:32583029,13790836 -) -(1,3100:6630773,15112374:25952256,404226,82312 -(1,3099:6630773,15112374:0,0,0 -g1,3099:6630773,15112374 -g1,3099:6630773,15112374 -g1,3099:6303093,15112374 -(1,3099:6303093,15112374:0,0,0 -) -g1,3099:6630773,15112374 -) -g1,3100:7579210,15112374 -g1,3100:8211502,15112374 -h1,3100:8843794,15112374:0,0,0 -k1,3100:32583030,15112374:23739236 -g1,3100:32583030,15112374 -) -(1,3104:6630773,15844088:25952256,404226,76021 -(1,3102:6630773,15844088:0,0,0 -g1,3102:6630773,15844088 -g1,3102:6630773,15844088 -g1,3102:6303093,15844088 -(1,3102:6303093,15844088:0,0,0 -) -g1,3102:6630773,15844088 -) -g1,3104:7579210,15844088 -g1,3104:8843793,15844088 -g1,3104:9476085,15844088 -g1,3104:10108377,15844088 -g1,3104:10740669,15844088 -g1,3104:11372961,15844088 -h1,3104:11689107,15844088:0,0,0 -k1,3104:32583029,15844088:20893922 -g1,3104:32583029,15844088 -) -(1,3106:6630773,17165626:25952256,404226,82312 -(1,3105:6630773,17165626:0,0,0 -g1,3105:6630773,17165626 -g1,3105:6630773,17165626 -g1,3105:6303093,17165626 -(1,3105:6303093,17165626:0,0,0 -) -g1,3105:6630773,17165626 -) -k1,3106:6630773,17165626:0 -g1,3106:8843794,17165626 -k1,3106:8843794,17165626:0 -h1,3106:11056815,17165626:0,0,0 -k1,3106:32583029,17165626:21526214 -g1,3106:32583029,17165626 -) -(1,3112:6630773,17897340:25952256,404226,82312 -(1,3108:6630773,17897340:0,0,0 -g1,3108:6630773,17897340 -g1,3108:6630773,17897340 -g1,3108:6303093,17897340 -(1,3108:6303093,17897340:0,0,0 -) -g1,3108:6630773,17897340 -) -g1,3112:7579210,17897340 -g1,3112:7895356,17897340 -g1,3112:8211502,17897340 -g1,3112:8527648,17897340 -g1,3112:8843794,17897340 -g1,3112:9159940,17897340 -g1,3112:10740669,17897340 -k1,3112:10740669,17897340:0 -h1,3112:12005252,17897340:0,0,0 -k1,3112:32583028,17897340:20577776 -g1,3112:32583028,17897340 -) -(1,3112:6630773,18563518:25952256,404226,82312 -h1,3112:6630773,18563518:0,0,0 -g1,3112:7579210,18563518 -g1,3112:9159938,18563518 -g1,3112:9476084,18563518 -g1,3112:9792230,18563518 -g1,3112:10108376,18563518 -g1,3112:10740668,18563518 -g1,3112:11056814,18563518 -g1,3112:11372960,18563518 -h1,3112:12005251,18563518:0,0,0 -k1,3112:32583029,18563518:20577778 -g1,3112:32583029,18563518 -) -(1,3112:6630773,19229696:25952256,404226,82312 -h1,3112:6630773,19229696:0,0,0 -g1,3112:7579210,19229696 -g1,3112:9159938,19229696 -g1,3112:9476084,19229696 -g1,3112:9792230,19229696 -g1,3112:10108376,19229696 -g1,3112:10740668,19229696 -g1,3112:11056814,19229696 -g1,3112:11372960,19229696 -h1,3112:12005251,19229696:0,0,0 -k1,3112:32583029,19229696:20577778 -g1,3112:32583029,19229696 -) -(1,3114:6630773,20551234:25952256,404226,82312 -(1,3113:6630773,20551234:0,0,0 -g1,3113:6630773,20551234 -g1,3113:6630773,20551234 -g1,3113:6303093,20551234 -(1,3113:6303093,20551234:0,0,0 -) -g1,3113:6630773,20551234 -) -k1,3114:6630773,20551234:0 -g1,3114:8211502,20551234 -g1,3114:9159940,20551234 -g1,3114:10108378,20551234 -h1,3114:10740669,20551234:0,0,0 -k1,3114:32583029,20551234:21842360 -g1,3114:32583029,20551234 -) -(1,3115:6630773,21217412:25952256,328204,0 -h1,3115:6630773,21217412:0,0,0 -h1,3115:6946919,21217412:0,0,0 -k1,3115:32583029,21217412:25636110 -g1,3115:32583029,21217412 -) -(1,3124:6630773,21949126:25952256,404226,82312 -(1,3117:6630773,21949126:0,0,0 -g1,3117:6630773,21949126 -g1,3117:6630773,21949126 -g1,3117:6303093,21949126 -(1,3117:6303093,21949126:0,0,0 -) -g1,3117:6630773,21949126 -) -g1,3124:7579210,21949126 -g1,3124:7895356,21949126 -g1,3124:8211502,21949126 -g1,3124:8527648,21949126 -g1,3124:8843794,21949126 -g1,3124:9159940,21949126 -g1,3124:10740669,21949126 -g1,3124:12321398,21949126 -g1,3124:13902127,21949126 -k1,3124:13902127,21949126:0 -h1,3124:15166710,21949126:0,0,0 -k1,3124:32583030,21949126:17416320 -g1,3124:32583030,21949126 -) -(1,3124:6630773,22615304:25952256,404226,82312 -h1,3124:6630773,22615304:0,0,0 -g1,3124:7579210,22615304 -g1,3124:9159938,22615304 -g1,3124:9476084,22615304 -g1,3124:9792230,22615304 -g1,3124:10108376,22615304 -g1,3124:10740668,22615304 -g1,3124:11056814,22615304 -g1,3124:11372960,22615304 -g1,3124:11689106,22615304 -g1,3124:12321398,22615304 -g1,3124:12637544,22615304 -g1,3124:12953690,22615304 -g1,3124:13902127,22615304 -g1,3124:14218273,22615304 -g1,3124:14534419,22615304 -h1,3124:15166710,22615304:0,0,0 -k1,3124:32583030,22615304:17416320 -g1,3124:32583030,22615304 -) -(1,3124:6630773,23281482:25952256,404226,82312 -h1,3124:6630773,23281482:0,0,0 -g1,3124:7579210,23281482 -g1,3124:9159938,23281482 -g1,3124:9476084,23281482 -g1,3124:9792230,23281482 -g1,3124:10108376,23281482 -g1,3124:10740668,23281482 -g1,3124:11056814,23281482 -g1,3124:11372960,23281482 -g1,3124:11689106,23281482 -g1,3124:12321398,23281482 -g1,3124:12637544,23281482 -g1,3124:12953690,23281482 -g1,3124:13902127,23281482 -g1,3124:14218273,23281482 -g1,3124:14534419,23281482 -h1,3124:15166710,23281482:0,0,0 -k1,3124:32583030,23281482:17416320 -g1,3124:32583030,23281482 -) -(1,3124:6630773,23947660:25952256,404226,82312 -h1,3124:6630773,23947660:0,0,0 -g1,3124:7579210,23947660 -g1,3124:9159938,23947660 -g1,3124:9476084,23947660 -g1,3124:9792230,23947660 -g1,3124:10108376,23947660 -g1,3124:10740668,23947660 -g1,3124:11056814,23947660 -g1,3124:11372960,23947660 -g1,3124:11689106,23947660 -g1,3124:12321398,23947660 -g1,3124:12637544,23947660 -g1,3124:12953690,23947660 -g1,3124:13902127,23947660 -g1,3124:14218273,23947660 -g1,3124:14534419,23947660 -h1,3124:15166710,23947660:0,0,0 -k1,3124:32583030,23947660:17416320 -g1,3124:32583030,23947660 -) -(1,3124:6630773,24613838:25952256,404226,82312 -h1,3124:6630773,24613838:0,0,0 -g1,3124:7579210,24613838 -g1,3124:9159938,24613838 -g1,3124:9476084,24613838 -g1,3124:9792230,24613838 -g1,3124:10108376,24613838 -g1,3124:10740668,24613838 -g1,3124:11056814,24613838 -g1,3124:11372960,24613838 -g1,3124:11689106,24613838 -g1,3124:12321398,24613838 -g1,3124:12637544,24613838 -g1,3124:12953690,24613838 -g1,3124:13902127,24613838 -g1,3124:14218273,24613838 -g1,3124:14534419,24613838 -h1,3124:15166710,24613838:0,0,0 -k1,3124:32583030,24613838:17416320 -g1,3124:32583030,24613838 -) -(1,3124:6630773,25280016:25952256,404226,82312 -h1,3124:6630773,25280016:0,0,0 -g1,3124:7579210,25280016 -g1,3124:9159938,25280016 -g1,3124:9476084,25280016 -g1,3124:9792230,25280016 -g1,3124:10108376,25280016 -g1,3124:10740668,25280016 -g1,3124:11056814,25280016 -g1,3124:11372960,25280016 -g1,3124:12321397,25280016 -g1,3124:12637543,25280016 -g1,3124:12953689,25280016 -g1,3124:13902126,25280016 -g1,3124:14218272,25280016 -g1,3124:14534418,25280016 -h1,3124:15166709,25280016:0,0,0 -k1,3124:32583029,25280016:17416320 -g1,3124:32583029,25280016 -) -(1,3126:6630773,26601554:25952256,404226,82312 -(1,3125:6630773,26601554:0,0,0 -g1,3125:6630773,26601554 -g1,3125:6630773,26601554 -g1,3125:6303093,26601554 -(1,3125:6303093,26601554:0,0,0 -) -g1,3125:6630773,26601554 -) -k1,3126:6630773,26601554:0 -g1,3126:8843794,26601554 -g1,3126:10424524,26601554 -g1,3126:11372962,26601554 -g1,3126:13585983,26601554 -h1,3126:14850567,26601554:0,0,0 -k1,3126:32583029,26601554:17732462 -g1,3126:32583029,26601554 -) -(1,3127:6630773,27267732:25952256,328204,0 -h1,3127:6630773,27267732:0,0,0 -h1,3127:6946919,27267732:0,0,0 -k1,3127:32583029,27267732:25636110 -g1,3127:32583029,27267732 -) -(1,3136:6630773,27999446:25952256,404226,82312 -(1,3129:6630773,27999446:0,0,0 -g1,3129:6630773,27999446 -g1,3129:6630773,27999446 -g1,3129:6303093,27999446 -(1,3129:6303093,27999446:0,0,0 -) -g1,3129:6630773,27999446 -) -g1,3136:7579210,27999446 -g1,3136:7895356,27999446 -g1,3136:8211502,27999446 -g1,3136:8527648,27999446 -g1,3136:8843794,27999446 -g1,3136:9159940,27999446 -g1,3136:10740669,27999446 -g1,3136:12321398,27999446 -g1,3136:13902127,27999446 -k1,3136:13902127,27999446:0 -h1,3136:15166710,27999446:0,0,0 -k1,3136:32583030,27999446:17416320 -g1,3136:32583030,27999446 -) -(1,3136:6630773,28665624:25952256,404226,82312 -h1,3136:6630773,28665624:0,0,0 -g1,3136:7579210,28665624 -g1,3136:9159938,28665624 -g1,3136:9476084,28665624 -g1,3136:9792230,28665624 -g1,3136:10108376,28665624 -g1,3136:10740668,28665624 -g1,3136:11056814,28665624 -g1,3136:11372960,28665624 -g1,3136:11689106,28665624 -g1,3136:12321398,28665624 -g1,3136:12637544,28665624 -g1,3136:12953690,28665624 -g1,3136:13902127,28665624 -g1,3136:14218273,28665624 -g1,3136:14534419,28665624 -h1,3136:15166710,28665624:0,0,0 -k1,3136:32583030,28665624:17416320 -g1,3136:32583030,28665624 -) -(1,3136:6630773,29331802:25952256,404226,82312 -h1,3136:6630773,29331802:0,0,0 -g1,3136:7579210,29331802 -g1,3136:9159938,29331802 -g1,3136:9476084,29331802 -g1,3136:9792230,29331802 -g1,3136:10108376,29331802 -g1,3136:10740668,29331802 -g1,3136:11056814,29331802 -g1,3136:11372960,29331802 -g1,3136:11689106,29331802 -g1,3136:12321398,29331802 -g1,3136:12637544,29331802 -g1,3136:12953690,29331802 -g1,3136:13902127,29331802 -g1,3136:14218273,29331802 -g1,3136:14534419,29331802 -h1,3136:15166710,29331802:0,0,0 -k1,3136:32583030,29331802:17416320 -g1,3136:32583030,29331802 -) -(1,3136:6630773,29997980:25952256,404226,82312 -h1,3136:6630773,29997980:0,0,0 -g1,3136:7579210,29997980 -g1,3136:9159938,29997980 -g1,3136:9476084,29997980 -g1,3136:9792230,29997980 -g1,3136:10108376,29997980 -g1,3136:10740668,29997980 -g1,3136:11056814,29997980 -g1,3136:11372960,29997980 -g1,3136:11689106,29997980 -g1,3136:12321398,29997980 -g1,3136:12637544,29997980 -g1,3136:12953690,29997980 -g1,3136:13902127,29997980 -g1,3136:14218273,29997980 -g1,3136:14534419,29997980 -h1,3136:15166710,29997980:0,0,0 -k1,3136:32583030,29997980:17416320 -g1,3136:32583030,29997980 -) -(1,3136:6630773,30664158:25952256,404226,82312 -h1,3136:6630773,30664158:0,0,0 -g1,3136:7579210,30664158 -g1,3136:9159938,30664158 -g1,3136:9476084,30664158 -g1,3136:9792230,30664158 -g1,3136:10108376,30664158 -g1,3136:10740668,30664158 -g1,3136:11056814,30664158 -g1,3136:11372960,30664158 -g1,3136:11689106,30664158 -g1,3136:12321398,30664158 -g1,3136:12637544,30664158 -g1,3136:12953690,30664158 -g1,3136:13902127,30664158 -g1,3136:14218273,30664158 -g1,3136:14534419,30664158 -h1,3136:15166710,30664158:0,0,0 -k1,3136:32583030,30664158:17416320 -g1,3136:32583030,30664158 -) -(1,3136:6630773,31330336:25952256,404226,82312 -h1,3136:6630773,31330336:0,0,0 -g1,3136:7579210,31330336 -g1,3136:9159938,31330336 -g1,3136:9476084,31330336 -g1,3136:9792230,31330336 -g1,3136:10108376,31330336 -g1,3136:10740668,31330336 -g1,3136:11056814,31330336 -g1,3136:11372960,31330336 -g1,3136:12321397,31330336 -g1,3136:12637543,31330336 -g1,3136:12953689,31330336 -g1,3136:13902126,31330336 -g1,3136:14218272,31330336 -g1,3136:14534418,31330336 -h1,3136:15166709,31330336:0,0,0 -k1,3136:32583029,31330336:17416320 -g1,3136:32583029,31330336 -) -] -) -g1,3137:32583029,31412648 -g1,3137:6630773,31412648 -g1,3137:6630773,31412648 -g1,3137:32583029,31412648 -g1,3137:32583029,31412648 -) -h1,3137:6630773,31609256:0,0,0 -v1,3141:6630773,33499320:0,393216,0 -(1,3188:6630773,40076009:25952256,6969905,589824 -g1,3188:6630773,40076009 -(1,3188:6630773,40076009:25952256,6969905,589824 -(1,3188:6630773,40665833:25952256,7559729,0 -[1,3188:6630773,40665833:25952256,7559729,0 -(1,3188:6630773,40665833:25952256,7533515,0 -r1,3188:6656987,40665833:26214,7533515,0 -[1,3188:6656987,40665833:25899828,7533515,0 -(1,3188:6656987,40076009:25899828,6353867,0 -[1,3188:7246811,40076009:24720180,6353867,0 -(1,3142:7246811,34884027:24720180,1161885,196608 -(1,3141:7246811,34884027:0,1161885,196608 -r1,3188:8794447,34884027:1547636,1358493,196608 -k1,3141:7246811,34884027:-1547636 -) -(1,3141:7246811,34884027:1547636,1161885,196608 -) -k1,3141:8985791,34884027:191344 -k1,3141:9804970,34884027:191344 -k1,3141:10584826,34884027:191343 -k1,3141:11132030,34884027:191344 -(1,3141:11132030,34884027:0,452978,115847 -r1,3188:13248855,34884027:2116825,568825,115847 -k1,3141:11132030,34884027:-2116825 -) -(1,3141:11132030,34884027:2116825,452978,115847 -k1,3141:11132030,34884027:3277 -h1,3141:13245578,34884027:0,411205,112570 -) -k1,3141:13440199,34884027:191344 -k1,3141:14735825,34884027:191344 -k1,3141:16402384,34884027:191344 -k1,3141:16949587,34884027:191343 -k1,3141:19013950,34884027:191344 -k1,3141:20582861,34884027:191344 -k1,3141:21130065,34884027:191344 -k1,3141:23194428,34884027:191344 -k1,3141:25942331,34884027:191344 -k1,3141:26489534,34884027:191343 -k1,3141:28553897,34884027:191344 -k1,3141:31284106,34884027:191344 -k1,3141:31966991,34884027:0 -) -(1,3142:7246811,35725515:24720180,513147,134348 -k1,3141:8227380,35725515:171199 -k1,3141:11441417,35725515:171200 -k1,3141:14547318,35725515:171199 -k1,3141:15334555,35725515:171199 -k1,3141:16271871,35725515:171200 -k1,3141:18314123,35725515:171199 -k1,3141:18841182,35725515:171199 -(1,3141:18841182,35725515:0,452978,115847 -r1,3188:20958007,35725515:2116825,568825,115847 -k1,3141:18841182,35725515:-2116825 -) -(1,3141:18841182,35725515:2116825,452978,115847 -k1,3141:18841182,35725515:3277 -h1,3141:20954730,35725515:0,411205,112570 -) -k1,3141:21129206,35725515:171199 -k1,3141:22432868,35725515:171200 -k1,3141:24079282,35725515:171199 -k1,3141:27779595,35725515:171199 -k1,3141:28610087,35725515:171200 -k1,3141:30794552,35725515:171199 -k1,3141:31966991,35725515:0 -) -(1,3142:7246811,36567003:24720180,513147,7863 -g1,3141:9827618,36567003 -g1,3141:11218292,36567003 -g1,3141:13455691,36567003 -g1,3141:14341082,36567003 -g1,3141:15311014,36567003 -k1,3142:31966991,36567003:13703580 -g1,3142:31966991,36567003 -) -v1,3144:7246811,37757469:0,393216,0 -(1,3152:7246811,39355113:24720180,1990860,196608 -g1,3152:7246811,39355113 -g1,3152:7246811,39355113 -g1,3152:7050203,39355113 -(1,3152:7050203,39355113:0,1990860,196608 -r1,3188:32163599,39355113:25113396,2187468,196608 -k1,3152:7050203,39355113:-25113396 -) -(1,3152:7050203,39355113:25113396,1990860,196608 -[1,3152:7246811,39355113:24720180,1794252,0 -(1,3146:7246811,37949358:24720180,388497,101187 -(1,3145:7246811,37949358:0,0,0 -g1,3145:7246811,37949358 -g1,3145:7246811,37949358 -g1,3145:6919131,37949358 -(1,3145:6919131,37949358:0,0,0 -) -g1,3145:7246811,37949358 -) -g1,3146:10408268,37949358 -g1,3146:11356706,37949358 -h1,3146:12305144,37949358:0,0,0 -k1,3146:31966992,37949358:19661848 -g1,3146:31966992,37949358 -) -(1,3147:7246811,38615536:24720180,404226,101187 -h1,3147:7246811,38615536:0,0,0 -k1,3147:7246811,38615536:0 -h1,3147:11672850,38615536:0,0,0 -k1,3147:31966990,38615536:20294140 -g1,3147:31966990,38615536 -) -(1,3151:7246811,39347250:24720180,379060,7863 -(1,3149:7246811,39347250:0,0,0 -g1,3149:7246811,39347250 -g1,3149:7246811,39347250 -g1,3149:6919131,39347250 -(1,3149:6919131,39347250:0,0,0 +g1,3194:6630773,4812305 +g1,3194:6630773,4812305 +g1,3194:9472414,4812305 +g1,3194:10882093,4812305 +g1,3194:16529985,4812305 +g1,3194:18796220,4812305 +k1,3194:31786111,4812305:12989891 +) +) +] +[1,3194:6630773,45706769:25952256,40108032,0 +(1,3194:6630773,45706769:25952256,40108032,0 +(1,3194:6630773,45706769:0,0,0 +g1,3194:6630773,45706769 +) +[1,3194:6630773,45706769:25952256,40108032,0 +v1,3092:6630773,6254097:0,393216,0 +(1,3092:6630773,9257166:25952256,3396285,196608 +g1,3092:6630773,9257166 +g1,3092:6630773,9257166 +g1,3092:6434165,9257166 +(1,3092:6434165,9257166:0,3396285,196608 +r1,3092:32779637,9257166:26345472,3592893,196608 +k1,3092:6434165,9257166:-26345472 +) +(1,3092:6434165,9257166:26345472,3396285,196608 +[1,3092:6630773,9257166:25952256,3199677,0 +(1,3085:6630773,6461715:25952256,404226,82312 +h1,3085:6630773,6461715:0,0,0 +g1,3085:7579210,6461715 +g1,3085:9159938,6461715 +g1,3085:9476084,6461715 +g1,3085:9792230,6461715 +g1,3085:10108376,6461715 +g1,3085:10740668,6461715 +g1,3085:11056814,6461715 +g1,3085:11372960,6461715 +g1,3085:11689106,6461715 +g1,3085:12321398,6461715 +g1,3085:12637544,6461715 +g1,3085:12953690,6461715 +g1,3085:13902127,6461715 +g1,3085:14218273,6461715 +g1,3085:14534419,6461715 +h1,3085:15166710,6461715:0,0,0 +k1,3085:32583030,6461715:17416320 +g1,3085:32583030,6461715 +) +(1,3085:6630773,7127893:25952256,404226,82312 +h1,3085:6630773,7127893:0,0,0 +g1,3085:7579210,7127893 +g1,3085:9159938,7127893 +g1,3085:9476084,7127893 +g1,3085:9792230,7127893 +g1,3085:10108376,7127893 +g1,3085:10740668,7127893 +g1,3085:11056814,7127893 +g1,3085:11372960,7127893 +g1,3085:12321397,7127893 +g1,3085:12637543,7127893 +g1,3085:12953689,7127893 +g1,3085:13902126,7127893 +g1,3085:14218272,7127893 +g1,3085:14534418,7127893 +h1,3085:15166709,7127893:0,0,0 +k1,3085:32583029,7127893:17416320 +g1,3085:32583029,7127893 +) +(1,3087:6630773,8449431:25952256,404226,82312 +(1,3086:6630773,8449431:0,0,0 +g1,3086:6630773,8449431 +g1,3086:6630773,8449431 +g1,3086:6303093,8449431 +(1,3086:6303093,8449431:0,0,0 +) +g1,3086:6630773,8449431 +) +k1,3087:6630773,8449431:0 +g1,3087:8211502,8449431 +h1,3087:8843794,8449431:0,0,0 +k1,3087:32583030,8449431:23739236 +g1,3087:32583030,8449431 +) +(1,3091:6630773,9181145:25952256,404226,76021 +(1,3089:6630773,9181145:0,0,0 +g1,3089:6630773,9181145 +g1,3089:6630773,9181145 +g1,3089:6303093,9181145 +(1,3089:6303093,9181145:0,0,0 +) +g1,3089:6630773,9181145 +) +g1,3091:7579210,9181145 +g1,3091:8843793,9181145 +h1,3091:9159939,9181145:0,0,0 +k1,3091:32583029,9181145:23423090 +g1,3091:32583029,9181145 +) +] +) +g1,3092:32583029,9257166 +g1,3092:6630773,9257166 +g1,3092:6630773,9257166 +g1,3092:32583029,9257166 +g1,3092:32583029,9257166 +) +h1,3092:6630773,9453774:0,0,0 +(1,3096:6630773,10819550:25952256,513147,134348 +h1,3095:6630773,10819550:983040,0,0 +k1,3095:10337545,10819550:274652 +k1,3095:13218564,10819550:274652 +k1,3095:14152508,10819550:274652 +k1,3095:15757541,10819550:274652 +k1,3095:18771598,10819550:274652 +k1,3095:19705542,10819550:274652 +k1,3095:22288372,10819550:274652 +k1,3095:24489782,10819550:274652 +k1,3095:25380473,10819550:274653 +k1,3095:26069892,10819550:274576 +k1,3095:27576621,10819550:274652 +k1,3095:30129960,10819550:274652 +h1,3095:31499007,10819550:0,0,0 +k1,3095:31773659,10819550:274652 +k1,3095:32583029,10819550:0 +) +(1,3096:6630773,11661038:25952256,505283,134348 +g1,3095:8328155,11661038 +h1,3095:9125073,11661038:0,0,0 +g1,3095:9705066,11661038 +g1,3095:10857844,11661038 +g1,3095:12189535,11661038 +g1,3095:13719145,11661038 +g1,3095:15681948,11661038 +g1,3095:16900262,11661038 +g1,3095:18752964,11661038 +g1,3095:20538164,11661038 +g1,3095:21353431,11661038 +g1,3095:22725099,11661038 +k1,3096:32583029,11661038:6009001 +g1,3096:32583029,11661038 +) +v1,3098:6630773,12851504:0,393216,0 +(1,3143:6630773,31412648:25952256,18954360,196608 +g1,3143:6630773,31412648 +g1,3143:6630773,31412648 +g1,3143:6434165,31412648 +(1,3143:6434165,31412648:0,18954360,196608 +r1,3143:32779637,31412648:26345472,19150968,196608 +k1,3143:6434165,31412648:-26345472 +) +(1,3143:6434165,31412648:26345472,18954360,196608 +[1,3143:6630773,31412648:25952256,18757752,0 +(1,3100:6630773,13059122:25952256,404226,82312 +(1,3099:6630773,13059122:0,0,0 +g1,3099:6630773,13059122 +g1,3099:6630773,13059122 +g1,3099:6303093,13059122 +(1,3099:6303093,13059122:0,0,0 +) +g1,3099:6630773,13059122 +) +k1,3100:6630773,13059122:0 +g1,3100:8211502,13059122 +h1,3100:8527648,13059122:0,0,0 +k1,3100:32583028,13059122:24055380 +g1,3100:32583028,13059122 +) +(1,3104:6630773,13790836:25952256,404226,76021 +(1,3102:6630773,13790836:0,0,0 +g1,3102:6630773,13790836 +g1,3102:6630773,13790836 +g1,3102:6303093,13790836 +(1,3102:6303093,13790836:0,0,0 +) +g1,3102:6630773,13790836 +) +g1,3104:7579210,13790836 +g1,3104:8843793,13790836 +g1,3104:9159939,13790836 +g1,3104:9792231,13790836 +g1,3104:10108377,13790836 +g1,3104:10740669,13790836 +g1,3104:11689106,13790836 +h1,3104:12321397,13790836:0,0,0 +k1,3104:32583029,13790836:20261632 +g1,3104:32583029,13790836 +) +(1,3106:6630773,15112374:25952256,404226,82312 +(1,3105:6630773,15112374:0,0,0 +g1,3105:6630773,15112374 +g1,3105:6630773,15112374 +g1,3105:6303093,15112374 +(1,3105:6303093,15112374:0,0,0 +) +g1,3105:6630773,15112374 +) +g1,3106:7579210,15112374 +g1,3106:8211502,15112374 +h1,3106:8843794,15112374:0,0,0 +k1,3106:32583030,15112374:23739236 +g1,3106:32583030,15112374 +) +(1,3110:6630773,15844088:25952256,404226,76021 +(1,3108:6630773,15844088:0,0,0 +g1,3108:6630773,15844088 +g1,3108:6630773,15844088 +g1,3108:6303093,15844088 +(1,3108:6303093,15844088:0,0,0 +) +g1,3108:6630773,15844088 +) +g1,3110:7579210,15844088 +g1,3110:8843793,15844088 +g1,3110:9476085,15844088 +g1,3110:10108377,15844088 +g1,3110:10740669,15844088 +g1,3110:11372961,15844088 +h1,3110:11689107,15844088:0,0,0 +k1,3110:32583029,15844088:20893922 +g1,3110:32583029,15844088 +) +(1,3112:6630773,17165626:25952256,404226,82312 +(1,3111:6630773,17165626:0,0,0 +g1,3111:6630773,17165626 +g1,3111:6630773,17165626 +g1,3111:6303093,17165626 +(1,3111:6303093,17165626:0,0,0 +) +g1,3111:6630773,17165626 +) +k1,3112:6630773,17165626:0 +g1,3112:8843794,17165626 +k1,3112:8843794,17165626:0 +h1,3112:11056815,17165626:0,0,0 +k1,3112:32583029,17165626:21526214 +g1,3112:32583029,17165626 +) +(1,3118:6630773,17897340:25952256,404226,82312 +(1,3114:6630773,17897340:0,0,0 +g1,3114:6630773,17897340 +g1,3114:6630773,17897340 +g1,3114:6303093,17897340 +(1,3114:6303093,17897340:0,0,0 +) +g1,3114:6630773,17897340 +) +g1,3118:7579210,17897340 +g1,3118:7895356,17897340 +g1,3118:8211502,17897340 +g1,3118:8527648,17897340 +g1,3118:8843794,17897340 +g1,3118:9159940,17897340 +g1,3118:10740669,17897340 +k1,3118:10740669,17897340:0 +h1,3118:12005252,17897340:0,0,0 +k1,3118:32583028,17897340:20577776 +g1,3118:32583028,17897340 +) +(1,3118:6630773,18563518:25952256,404226,82312 +h1,3118:6630773,18563518:0,0,0 +g1,3118:7579210,18563518 +g1,3118:9159938,18563518 +g1,3118:9476084,18563518 +g1,3118:9792230,18563518 +g1,3118:10108376,18563518 +g1,3118:10740668,18563518 +g1,3118:11056814,18563518 +g1,3118:11372960,18563518 +h1,3118:12005251,18563518:0,0,0 +k1,3118:32583029,18563518:20577778 +g1,3118:32583029,18563518 +) +(1,3118:6630773,19229696:25952256,404226,82312 +h1,3118:6630773,19229696:0,0,0 +g1,3118:7579210,19229696 +g1,3118:9159938,19229696 +g1,3118:9476084,19229696 +g1,3118:9792230,19229696 +g1,3118:10108376,19229696 +g1,3118:10740668,19229696 +g1,3118:11056814,19229696 +g1,3118:11372960,19229696 +h1,3118:12005251,19229696:0,0,0 +k1,3118:32583029,19229696:20577778 +g1,3118:32583029,19229696 +) +(1,3120:6630773,20551234:25952256,404226,82312 +(1,3119:6630773,20551234:0,0,0 +g1,3119:6630773,20551234 +g1,3119:6630773,20551234 +g1,3119:6303093,20551234 +(1,3119:6303093,20551234:0,0,0 +) +g1,3119:6630773,20551234 +) +k1,3120:6630773,20551234:0 +g1,3120:8211502,20551234 +g1,3120:9159940,20551234 +g1,3120:10108378,20551234 +h1,3120:10740669,20551234:0,0,0 +k1,3120:32583029,20551234:21842360 +g1,3120:32583029,20551234 +) +(1,3121:6630773,21217412:25952256,328204,0 +h1,3121:6630773,21217412:0,0,0 +h1,3121:6946919,21217412:0,0,0 +k1,3121:32583029,21217412:25636110 +g1,3121:32583029,21217412 +) +(1,3130:6630773,21949126:25952256,404226,82312 +(1,3123:6630773,21949126:0,0,0 +g1,3123:6630773,21949126 +g1,3123:6630773,21949126 +g1,3123:6303093,21949126 +(1,3123:6303093,21949126:0,0,0 +) +g1,3123:6630773,21949126 +) +g1,3130:7579210,21949126 +g1,3130:7895356,21949126 +g1,3130:8211502,21949126 +g1,3130:8527648,21949126 +g1,3130:8843794,21949126 +g1,3130:9159940,21949126 +g1,3130:10740669,21949126 +g1,3130:12321398,21949126 +g1,3130:13902127,21949126 +k1,3130:13902127,21949126:0 +h1,3130:15166710,21949126:0,0,0 +k1,3130:32583030,21949126:17416320 +g1,3130:32583030,21949126 +) +(1,3130:6630773,22615304:25952256,404226,82312 +h1,3130:6630773,22615304:0,0,0 +g1,3130:7579210,22615304 +g1,3130:9159938,22615304 +g1,3130:9476084,22615304 +g1,3130:9792230,22615304 +g1,3130:10108376,22615304 +g1,3130:10740668,22615304 +g1,3130:11056814,22615304 +g1,3130:11372960,22615304 +g1,3130:11689106,22615304 +g1,3130:12321398,22615304 +g1,3130:12637544,22615304 +g1,3130:12953690,22615304 +g1,3130:13902127,22615304 +g1,3130:14218273,22615304 +g1,3130:14534419,22615304 +h1,3130:15166710,22615304:0,0,0 +k1,3130:32583030,22615304:17416320 +g1,3130:32583030,22615304 +) +(1,3130:6630773,23281482:25952256,404226,82312 +h1,3130:6630773,23281482:0,0,0 +g1,3130:7579210,23281482 +g1,3130:9159938,23281482 +g1,3130:9476084,23281482 +g1,3130:9792230,23281482 +g1,3130:10108376,23281482 +g1,3130:10740668,23281482 +g1,3130:11056814,23281482 +g1,3130:11372960,23281482 +g1,3130:11689106,23281482 +g1,3130:12321398,23281482 +g1,3130:12637544,23281482 +g1,3130:12953690,23281482 +g1,3130:13902127,23281482 +g1,3130:14218273,23281482 +g1,3130:14534419,23281482 +h1,3130:15166710,23281482:0,0,0 +k1,3130:32583030,23281482:17416320 +g1,3130:32583030,23281482 +) +(1,3130:6630773,23947660:25952256,404226,82312 +h1,3130:6630773,23947660:0,0,0 +g1,3130:7579210,23947660 +g1,3130:9159938,23947660 +g1,3130:9476084,23947660 +g1,3130:9792230,23947660 +g1,3130:10108376,23947660 +g1,3130:10740668,23947660 +g1,3130:11056814,23947660 +g1,3130:11372960,23947660 +g1,3130:11689106,23947660 +g1,3130:12321398,23947660 +g1,3130:12637544,23947660 +g1,3130:12953690,23947660 +g1,3130:13902127,23947660 +g1,3130:14218273,23947660 +g1,3130:14534419,23947660 +h1,3130:15166710,23947660:0,0,0 +k1,3130:32583030,23947660:17416320 +g1,3130:32583030,23947660 +) +(1,3130:6630773,24613838:25952256,404226,82312 +h1,3130:6630773,24613838:0,0,0 +g1,3130:7579210,24613838 +g1,3130:9159938,24613838 +g1,3130:9476084,24613838 +g1,3130:9792230,24613838 +g1,3130:10108376,24613838 +g1,3130:10740668,24613838 +g1,3130:11056814,24613838 +g1,3130:11372960,24613838 +g1,3130:11689106,24613838 +g1,3130:12321398,24613838 +g1,3130:12637544,24613838 +g1,3130:12953690,24613838 +g1,3130:13902127,24613838 +g1,3130:14218273,24613838 +g1,3130:14534419,24613838 +h1,3130:15166710,24613838:0,0,0 +k1,3130:32583030,24613838:17416320 +g1,3130:32583030,24613838 +) +(1,3130:6630773,25280016:25952256,404226,82312 +h1,3130:6630773,25280016:0,0,0 +g1,3130:7579210,25280016 +g1,3130:9159938,25280016 +g1,3130:9476084,25280016 +g1,3130:9792230,25280016 +g1,3130:10108376,25280016 +g1,3130:10740668,25280016 +g1,3130:11056814,25280016 +g1,3130:11372960,25280016 +g1,3130:12321397,25280016 +g1,3130:12637543,25280016 +g1,3130:12953689,25280016 +g1,3130:13902126,25280016 +g1,3130:14218272,25280016 +g1,3130:14534418,25280016 +h1,3130:15166709,25280016:0,0,0 +k1,3130:32583029,25280016:17416320 +g1,3130:32583029,25280016 +) +(1,3132:6630773,26601554:25952256,404226,82312 +(1,3131:6630773,26601554:0,0,0 +g1,3131:6630773,26601554 +g1,3131:6630773,26601554 +g1,3131:6303093,26601554 +(1,3131:6303093,26601554:0,0,0 +) +g1,3131:6630773,26601554 +) +k1,3132:6630773,26601554:0 +g1,3132:8843794,26601554 +g1,3132:10424524,26601554 +g1,3132:11372962,26601554 +g1,3132:13585983,26601554 +h1,3132:14850567,26601554:0,0,0 +k1,3132:32583029,26601554:17732462 +g1,3132:32583029,26601554 +) +(1,3133:6630773,27267732:25952256,328204,0 +h1,3133:6630773,27267732:0,0,0 +h1,3133:6946919,27267732:0,0,0 +k1,3133:32583029,27267732:25636110 +g1,3133:32583029,27267732 +) +(1,3142:6630773,27999446:25952256,404226,82312 +(1,3135:6630773,27999446:0,0,0 +g1,3135:6630773,27999446 +g1,3135:6630773,27999446 +g1,3135:6303093,27999446 +(1,3135:6303093,27999446:0,0,0 +) +g1,3135:6630773,27999446 +) +g1,3142:7579210,27999446 +g1,3142:7895356,27999446 +g1,3142:8211502,27999446 +g1,3142:8527648,27999446 +g1,3142:8843794,27999446 +g1,3142:9159940,27999446 +g1,3142:10740669,27999446 +g1,3142:12321398,27999446 +g1,3142:13902127,27999446 +k1,3142:13902127,27999446:0 +h1,3142:15166710,27999446:0,0,0 +k1,3142:32583030,27999446:17416320 +g1,3142:32583030,27999446 +) +(1,3142:6630773,28665624:25952256,404226,82312 +h1,3142:6630773,28665624:0,0,0 +g1,3142:7579210,28665624 +g1,3142:9159938,28665624 +g1,3142:9476084,28665624 +g1,3142:9792230,28665624 +g1,3142:10108376,28665624 +g1,3142:10740668,28665624 +g1,3142:11056814,28665624 +g1,3142:11372960,28665624 +g1,3142:11689106,28665624 +g1,3142:12321398,28665624 +g1,3142:12637544,28665624 +g1,3142:12953690,28665624 +g1,3142:13902127,28665624 +g1,3142:14218273,28665624 +g1,3142:14534419,28665624 +h1,3142:15166710,28665624:0,0,0 +k1,3142:32583030,28665624:17416320 +g1,3142:32583030,28665624 +) +(1,3142:6630773,29331802:25952256,404226,82312 +h1,3142:6630773,29331802:0,0,0 +g1,3142:7579210,29331802 +g1,3142:9159938,29331802 +g1,3142:9476084,29331802 +g1,3142:9792230,29331802 +g1,3142:10108376,29331802 +g1,3142:10740668,29331802 +g1,3142:11056814,29331802 +g1,3142:11372960,29331802 +g1,3142:11689106,29331802 +g1,3142:12321398,29331802 +g1,3142:12637544,29331802 +g1,3142:12953690,29331802 +g1,3142:13902127,29331802 +g1,3142:14218273,29331802 +g1,3142:14534419,29331802 +h1,3142:15166710,29331802:0,0,0 +k1,3142:32583030,29331802:17416320 +g1,3142:32583030,29331802 +) +(1,3142:6630773,29997980:25952256,404226,82312 +h1,3142:6630773,29997980:0,0,0 +g1,3142:7579210,29997980 +g1,3142:9159938,29997980 +g1,3142:9476084,29997980 +g1,3142:9792230,29997980 +g1,3142:10108376,29997980 +g1,3142:10740668,29997980 +g1,3142:11056814,29997980 +g1,3142:11372960,29997980 +g1,3142:11689106,29997980 +g1,3142:12321398,29997980 +g1,3142:12637544,29997980 +g1,3142:12953690,29997980 +g1,3142:13902127,29997980 +g1,3142:14218273,29997980 +g1,3142:14534419,29997980 +h1,3142:15166710,29997980:0,0,0 +k1,3142:32583030,29997980:17416320 +g1,3142:32583030,29997980 +) +(1,3142:6630773,30664158:25952256,404226,82312 +h1,3142:6630773,30664158:0,0,0 +g1,3142:7579210,30664158 +g1,3142:9159938,30664158 +g1,3142:9476084,30664158 +g1,3142:9792230,30664158 +g1,3142:10108376,30664158 +g1,3142:10740668,30664158 +g1,3142:11056814,30664158 +g1,3142:11372960,30664158 +g1,3142:11689106,30664158 +g1,3142:12321398,30664158 +g1,3142:12637544,30664158 +g1,3142:12953690,30664158 +g1,3142:13902127,30664158 +g1,3142:14218273,30664158 +g1,3142:14534419,30664158 +h1,3142:15166710,30664158:0,0,0 +k1,3142:32583030,30664158:17416320 +g1,3142:32583030,30664158 +) +(1,3142:6630773,31330336:25952256,404226,82312 +h1,3142:6630773,31330336:0,0,0 +g1,3142:7579210,31330336 +g1,3142:9159938,31330336 +g1,3142:9476084,31330336 +g1,3142:9792230,31330336 +g1,3142:10108376,31330336 +g1,3142:10740668,31330336 +g1,3142:11056814,31330336 +g1,3142:11372960,31330336 +g1,3142:12321397,31330336 +g1,3142:12637543,31330336 +g1,3142:12953689,31330336 +g1,3142:13902126,31330336 +g1,3142:14218272,31330336 +g1,3142:14534418,31330336 +h1,3142:15166709,31330336:0,0,0 +k1,3142:32583029,31330336:17416320 +g1,3142:32583029,31330336 +) +] +) +g1,3143:32583029,31412648 +g1,3143:6630773,31412648 +g1,3143:6630773,31412648 +g1,3143:32583029,31412648 +g1,3143:32583029,31412648 +) +h1,3143:6630773,31609256:0,0,0 +v1,3147:6630773,33499320:0,393216,0 +(1,3194:6630773,40076009:25952256,6969905,589824 +g1,3194:6630773,40076009 +(1,3194:6630773,40076009:25952256,6969905,589824 +(1,3194:6630773,40665833:25952256,7559729,0 +[1,3194:6630773,40665833:25952256,7559729,0 +(1,3194:6630773,40665833:25952256,7533515,0 +r1,3194:6656987,40665833:26214,7533515,0 +[1,3194:6656987,40665833:25899828,7533515,0 +(1,3194:6656987,40076009:25899828,6353867,0 +[1,3194:7246811,40076009:24720180,6353867,0 +(1,3148:7246811,34884027:24720180,1161885,196608 +(1,3147:7246811,34884027:0,1161885,196608 +r1,3194:8794447,34884027:1547636,1358493,196608 +k1,3147:7246811,34884027:-1547636 +) +(1,3147:7246811,34884027:1547636,1161885,196608 +) +k1,3147:8985791,34884027:191344 +k1,3147:9804970,34884027:191344 +k1,3147:10584826,34884027:191343 +k1,3147:11132030,34884027:191344 +(1,3147:11132030,34884027:0,452978,115847 +r1,3194:13248855,34884027:2116825,568825,115847 +k1,3147:11132030,34884027:-2116825 +) +(1,3147:11132030,34884027:2116825,452978,115847 +k1,3147:11132030,34884027:3277 +h1,3147:13245578,34884027:0,411205,112570 +) +k1,3147:13440199,34884027:191344 +k1,3147:14735825,34884027:191344 +k1,3147:16402384,34884027:191344 +k1,3147:16949587,34884027:191343 +k1,3147:19013950,34884027:191344 +k1,3147:20582861,34884027:191344 +k1,3147:21130065,34884027:191344 +k1,3147:23194428,34884027:191344 +k1,3147:25942331,34884027:191344 +k1,3147:26489534,34884027:191343 +k1,3147:28553897,34884027:191344 +k1,3147:31284106,34884027:191344 +k1,3147:31966991,34884027:0 +) +(1,3148:7246811,35725515:24720180,513147,134348 +k1,3147:8227380,35725515:171199 +k1,3147:11441417,35725515:171200 +k1,3147:14547318,35725515:171199 +k1,3147:15334555,35725515:171199 +k1,3147:16271871,35725515:171200 +k1,3147:18314123,35725515:171199 +k1,3147:18841182,35725515:171199 +(1,3147:18841182,35725515:0,452978,115847 +r1,3194:20958007,35725515:2116825,568825,115847 +k1,3147:18841182,35725515:-2116825 +) +(1,3147:18841182,35725515:2116825,452978,115847 +k1,3147:18841182,35725515:3277 +h1,3147:20954730,35725515:0,411205,112570 +) +k1,3147:21129206,35725515:171199 +k1,3147:22432868,35725515:171200 +k1,3147:24079282,35725515:171199 +k1,3147:27779595,35725515:171199 +k1,3147:28610087,35725515:171200 +k1,3147:30794552,35725515:171199 +k1,3147:31966991,35725515:0 +) +(1,3148:7246811,36567003:24720180,513147,7863 +g1,3147:9827618,36567003 +g1,3147:11218292,36567003 +g1,3147:13455691,36567003 +g1,3147:14341082,36567003 +g1,3147:15311014,36567003 +k1,3148:31966991,36567003:13703580 +g1,3148:31966991,36567003 +) +v1,3150:7246811,37757469:0,393216,0 +(1,3158:7246811,39355113:24720180,1990860,196608 +g1,3158:7246811,39355113 +g1,3158:7246811,39355113 +g1,3158:7050203,39355113 +(1,3158:7050203,39355113:0,1990860,196608 +r1,3194:32163599,39355113:25113396,2187468,196608 +k1,3158:7050203,39355113:-25113396 +) +(1,3158:7050203,39355113:25113396,1990860,196608 +[1,3158:7246811,39355113:24720180,1794252,0 +(1,3152:7246811,37949358:24720180,388497,101187 +(1,3151:7246811,37949358:0,0,0 +g1,3151:7246811,37949358 +g1,3151:7246811,37949358 +g1,3151:6919131,37949358 +(1,3151:6919131,37949358:0,0,0 +) +g1,3151:7246811,37949358 +) +g1,3152:10408268,37949358 +g1,3152:11356706,37949358 +h1,3152:12305144,37949358:0,0,0 +k1,3152:31966992,37949358:19661848 +g1,3152:31966992,37949358 +) +(1,3153:7246811,38615536:24720180,404226,101187 +h1,3153:7246811,38615536:0,0,0 +k1,3153:7246811,38615536:0 +h1,3153:11672850,38615536:0,0,0 +k1,3153:31966990,38615536:20294140 +g1,3153:31966990,38615536 +) +(1,3157:7246811,39347250:24720180,379060,7863 +(1,3155:7246811,39347250:0,0,0 +g1,3155:7246811,39347250 +g1,3155:7246811,39347250 +g1,3155:6919131,39347250 +(1,3155:6919131,39347250:0,0,0 ) -g1,3149:7246811,39347250 -) -g1,3151:8195248,39347250 -h1,3151:9459831,39347250:0,0,0 -k1,3151:31966991,39347250:22507160 -g1,3151:31966991,39347250 +g1,3155:7246811,39347250 +) +g1,3157:8195248,39347250 +h1,3157:9459831,39347250:0,0,0 +k1,3157:31966991,39347250:22507160 +g1,3157:31966991,39347250 ) ] ) -g1,3152:31966991,39355113 -g1,3152:7246811,39355113 -g1,3152:7246811,39355113 -g1,3152:31966991,39355113 -g1,3152:31966991,39355113 +g1,3158:31966991,39355113 +g1,3158:7246811,39355113 +g1,3158:7246811,39355113 +g1,3158:31966991,39355113 +g1,3158:31966991,39355113 ) -h1,3152:7246811,39551721:0,0,0 +h1,3158:7246811,39551721:0,0,0 ] ) ] -r1,3188:32583029,40665833:26214,7533515,0 +r1,3194:32583029,40665833:26214,7533515,0 ) ] ) ) -g1,3188:32583029,40076009 +g1,3194:32583029,40076009 ) ] -(1,3188:32583029,45706769:0,0,0 -g1,3188:32583029,45706769 +(1,3194:32583029,45706769:0,0,0 +g1,3194:32583029,45706769 ) ) ] -(1,3188:6630773,47279633:25952256,0,0 -h1,3188:6630773,47279633:25952256,0,0 +(1,3194:6630773,47279633:25952256,0,0 +h1,3194:6630773,47279633:25952256,0,0 ) ] -h1,3188:4262630,4025873:0,0,0 +h1,3194:4262630,4025873:0,0,0 ] !22471 }64 -Input:421:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:422:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:423:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:424:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!351 +Input:417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!375 {65 -[1,3263:4262630,47279633:28320399,43253760,0 -(1,3263:4262630,4025873:0,0,0 -[1,3263:-473657,4025873:25952256,0,0 -(1,3263:-473657,-710414:25952256,0,0 -h1,3263:-473657,-710414:0,0,0 -(1,3263:-473657,-710414:0,0,0 -(1,3263:-473657,-710414:0,0,0 -g1,3263:-473657,-710414 -(1,3263:-473657,-710414:65781,0,65781 -g1,3263:-407876,-710414 -[1,3263:-407876,-644633:0,0,0 +[1,3269:4262630,47279633:28320399,43253760,0 +(1,3269:4262630,4025873:0,0,0 +[1,3269:-473657,4025873:25952256,0,0 +(1,3269:-473657,-710414:25952256,0,0 +h1,3269:-473657,-710414:0,0,0 +(1,3269:-473657,-710414:0,0,0 +(1,3269:-473657,-710414:0,0,0 +g1,3269:-473657,-710414 +(1,3269:-473657,-710414:65781,0,65781 +g1,3269:-407876,-710414 +[1,3269:-407876,-644633:0,0,0 ] ) -k1,3263:-473657,-710414:-65781 +k1,3269:-473657,-710414:-65781 ) ) -k1,3263:25478599,-710414:25952256 -g1,3263:25478599,-710414 +k1,3269:25478599,-710414:25952256 +g1,3269:25478599,-710414 ) ] ) -[1,3263:6630773,47279633:25952256,43253760,0 -[1,3263:6630773,4812305:25952256,786432,0 -(1,3263:6630773,4812305:25952256,505283,134348 -(1,3263:6630773,4812305:25952256,505283,134348 -g1,3263:3078558,4812305 -[1,3263:3078558,4812305:0,0,0 -(1,3263:3078558,2439708:0,1703936,0 -k1,3263:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3263:2537886,2439708:1179648,16384,0 +[1,3269:6630773,47279633:25952256,43253760,0 +[1,3269:6630773,4812305:25952256,786432,0 +(1,3269:6630773,4812305:25952256,505283,134348 +(1,3269:6630773,4812305:25952256,505283,134348 +g1,3269:3078558,4812305 +[1,3269:3078558,4812305:0,0,0 +(1,3269:3078558,2439708:0,1703936,0 +k1,3269:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3269:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3263:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3269:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3263:3078558,4812305:0,0,0 -(1,3263:3078558,2439708:0,1703936,0 -g1,3263:29030814,2439708 -g1,3263:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3263:36151628,1915420:16384,1179648,0 +[1,3269:3078558,4812305:0,0,0 +(1,3269:3078558,2439708:0,1703936,0 +g1,3269:29030814,2439708 +g1,3269:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3269:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3263:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3269:37855564,2439708:1179648,16384,0 ) ) -k1,3263:3078556,2439708:-34777008 +k1,3269:3078556,2439708:-34777008 ) ] -[1,3263:3078558,4812305:0,0,0 -(1,3263:3078558,49800853:0,16384,2228224 -k1,3263:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3263:2537886,49800853:1179648,16384,0 +[1,3269:3078558,4812305:0,0,0 +(1,3269:3078558,49800853:0,16384,2228224 +k1,3269:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3269:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3263:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3269:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3263:3078558,4812305:0,0,0 -(1,3263:3078558,49800853:0,16384,2228224 -g1,3263:29030814,49800853 -g1,3263:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3263:36151628,51504789:16384,1179648,0 +[1,3269:3078558,4812305:0,0,0 +(1,3269:3078558,49800853:0,16384,2228224 +g1,3269:29030814,49800853 +g1,3269:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3269:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3263:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3269:37855564,49800853:1179648,16384,0 ) ) -k1,3263:3078556,49800853:-34777008 +k1,3269:3078556,49800853:-34777008 ) ] -g1,3263:6630773,4812305 -k1,3263:19562994,4812305:12135303 -g1,3263:20949735,4812305 -g1,3263:21598541,4812305 -g1,3263:24912696,4812305 -g1,3263:27600327,4812305 -g1,3263:29010006,4812305 -) -) -] -[1,3263:6630773,45706769:25952256,40108032,0 -(1,3263:6630773,45706769:25952256,40108032,0 -(1,3263:6630773,45706769:0,0,0 -g1,3263:6630773,45706769 +g1,3269:6630773,4812305 +k1,3269:19515153,4812305:12087462 +g1,3269:20901894,4812305 +g1,3269:21550700,4812305 +g1,3269:24864855,4812305 +g1,3269:27600327,4812305 +g1,3269:29010006,4812305 +) +) +] +[1,3269:6630773,45706769:25952256,40108032,0 +(1,3269:6630773,45706769:25952256,40108032,0 +(1,3269:6630773,45706769:0,0,0 +g1,3269:6630773,45706769 ) -[1,3263:6630773,45706769:25952256,40108032,0 -v1,3188:6630773,6254097:0,393216,0 -(1,3188:6630773,17404638:25952256,11543757,616038 -g1,3188:6630773,17404638 -(1,3188:6630773,17404638:25952256,11543757,616038 -(1,3188:6630773,18020676:25952256,12159795,0 -[1,3188:6630773,18020676:25952256,12159795,0 -(1,3188:6630773,17994462:25952256,12133581,0 -r1,3188:6656987,17994462:26214,12133581,0 -[1,3188:6656987,17994462:25899828,12133581,0 -(1,3188:6656987,17404638:25899828,10953933,0 -[1,3188:7246811,17404638:24720180,10953933,0 -v1,3156:7246811,6843921:0,393216,0 -(1,3185:7246811,16683742:24720180,10233037,196608 -g1,3185:7246811,16683742 -g1,3185:7246811,16683742 -g1,3185:7050203,16683742 -(1,3185:7050203,16683742:0,10233037,196608 -r1,3188:32163599,16683742:25113396,10429645,196608 -k1,3185:7050203,16683742:-25113396 -) -(1,3185:7050203,16683742:25113396,10233037,196608 -[1,3185:7246811,16683742:24720180,10036429,0 -(1,3158:7246811,7051539:24720180,404226,82312 -(1,3157:7246811,7051539:0,0,0 -g1,3157:7246811,7051539 -g1,3157:7246811,7051539 -g1,3157:6919131,7051539 -(1,3157:6919131,7051539:0,0,0 -) -g1,3157:7246811,7051539 -) -g1,3158:11988997,7051539 -g1,3158:12937435,7051539 -g1,3158:16731185,7051539 -g1,3158:18311914,7051539 -g1,3158:18944206,7051539 -h1,3158:19576498,7051539:0,0,0 -k1,3158:31966991,7051539:12390493 -g1,3158:31966991,7051539 -) -(1,3159:7246811,7717717:24720180,404226,76021 -h1,3159:7246811,7717717:0,0,0 -k1,3159:7246811,7717717:0 -h1,3159:13253579,7717717:0,0,0 -k1,3159:31966991,7717717:18713412 -g1,3159:31966991,7717717 -) -(1,3163:7246811,8449431:24720180,404226,76021 -(1,3161:7246811,8449431:0,0,0 -g1,3161:7246811,8449431 -g1,3161:7246811,8449431 -g1,3161:6919131,8449431 -(1,3161:6919131,8449431:0,0,0 -) -g1,3161:7246811,8449431 -) -g1,3163:8195248,8449431 -g1,3163:9459831,8449431 -g1,3163:10092123,8449431 -h1,3163:10408269,8449431:0,0,0 -k1,3163:31966991,8449431:21558722 -g1,3163:31966991,8449431 -) -(1,3165:7246811,9770969:24720180,404226,82312 -(1,3164:7246811,9770969:0,0,0 -g1,3164:7246811,9770969 -g1,3164:7246811,9770969 -g1,3164:6919131,9770969 -(1,3164:6919131,9770969:0,0,0 -) -g1,3164:7246811,9770969 -) -g1,3165:11988997,9770969 -g1,3165:12937435,9770969 -g1,3165:16731185,9770969 -g1,3165:18311914,9770969 -g1,3165:18944206,9770969 -h1,3165:19576498,9770969:0,0,0 -k1,3165:31966991,9770969:12390493 -g1,3165:31966991,9770969 -) -(1,3166:7246811,10437147:24720180,404226,76021 -h1,3166:7246811,10437147:0,0,0 -k1,3166:7246811,10437147:0 -h1,3166:13253579,10437147:0,0,0 -k1,3166:31966991,10437147:18713412 -g1,3166:31966991,10437147 -) -(1,3170:7246811,11168861:24720180,404226,76021 -(1,3168:7246811,11168861:0,0,0 -g1,3168:7246811,11168861 -g1,3168:7246811,11168861 -g1,3168:6919131,11168861 -(1,3168:6919131,11168861:0,0,0 -) -g1,3168:7246811,11168861 -) -g1,3170:8195248,11168861 -g1,3170:9459831,11168861 -g1,3170:10092123,11168861 -h1,3170:10408269,11168861:0,0,0 -k1,3170:31966991,11168861:21558722 -g1,3170:31966991,11168861 -) -(1,3172:7246811,12490399:24720180,404226,82312 -(1,3171:7246811,12490399:0,0,0 -g1,3171:7246811,12490399 -g1,3171:7246811,12490399 -g1,3171:6919131,12490399 -(1,3171:6919131,12490399:0,0,0 -) -g1,3171:7246811,12490399 -) -g1,3172:12305142,12490399 -g1,3172:13253580,12490399 -g1,3172:16415038,12490399 -g1,3172:17995767,12490399 -g1,3172:18628059,12490399 -h1,3172:19260351,12490399:0,0,0 -k1,3172:31966991,12490399:12706640 -g1,3172:31966991,12490399 -) -(1,3173:7246811,13156577:24720180,404226,76021 -h1,3173:7246811,13156577:0,0,0 -k1,3173:7246811,13156577:0 -h1,3173:13569725,13156577:0,0,0 -k1,3173:31966991,13156577:18397266 -g1,3173:31966991,13156577 -) -(1,3177:7246811,13888291:24720180,404226,76021 -(1,3175:7246811,13888291:0,0,0 -g1,3175:7246811,13888291 -g1,3175:7246811,13888291 -g1,3175:6919131,13888291 -(1,3175:6919131,13888291:0,0,0 -) -g1,3175:7246811,13888291 -) -g1,3177:8195248,13888291 -g1,3177:9459831,13888291 -g1,3177:10092123,13888291 -h1,3177:10408269,13888291:0,0,0 -k1,3177:31966991,13888291:21558722 -g1,3177:31966991,13888291 -) -(1,3179:7246811,15209829:24720180,404226,82312 -(1,3178:7246811,15209829:0,0,0 -g1,3178:7246811,15209829 -g1,3178:7246811,15209829 -g1,3178:6919131,15209829 -(1,3178:6919131,15209829:0,0,0 -) -g1,3178:7246811,15209829 -) -g1,3179:11988997,15209829 -g1,3179:12937435,15209829 -g1,3179:18628058,15209829 -g1,3179:20208787,15209829 -g1,3179:20841079,15209829 -h1,3179:21473371,15209829:0,0,0 -k1,3179:31966991,15209829:10493620 -g1,3179:31966991,15209829 -) -(1,3180:7246811,15876007:24720180,404226,76021 -h1,3180:7246811,15876007:0,0,0 -k1,3180:7246811,15876007:0 -h1,3180:13253579,15876007:0,0,0 -k1,3180:31966991,15876007:18713412 -g1,3180:31966991,15876007 -) -(1,3184:7246811,16607721:24720180,404226,76021 -(1,3182:7246811,16607721:0,0,0 -g1,3182:7246811,16607721 -g1,3182:7246811,16607721 -g1,3182:6919131,16607721 -(1,3182:6919131,16607721:0,0,0 -) -g1,3182:7246811,16607721 -) -g1,3184:8195248,16607721 -g1,3184:9459831,16607721 -g1,3184:10092123,16607721 -h1,3184:10408269,16607721:0,0,0 -k1,3184:31966991,16607721:21558722 -g1,3184:31966991,16607721 -) -] -) -g1,3185:31966991,16683742 -g1,3185:7246811,16683742 -g1,3185:7246811,16683742 -g1,3185:31966991,16683742 -g1,3185:31966991,16683742 -) -h1,3185:7246811,16880350:0,0,0 -] -) -] -r1,3188:32583029,17994462:26214,12133581,0 -) -] -) -) -g1,3188:32583029,17404638 -) -h1,3188:6630773,18020676:0,0,0 -(1,3191:6630773,19386452:25952256,505283,126483 -h1,3190:6630773,19386452:983040,0,0 -k1,3190:9929910,19386452:204527 -k1,3190:11125997,19386452:204527 -k1,3190:13532534,19386452:204527 -k1,3190:14388488,19386452:204526 -k1,3190:17500192,19386452:204527 -k1,3190:18776888,19386452:204527 -k1,3190:20085697,19386452:204527 -k1,3190:21765439,19386452:204527 -k1,3190:23620163,19386452:204527 -k1,3190:25267136,19386452:204526 -k1,3190:26644102,19386452:204527 -k1,3190:30697558,19386452:204527 -k1,3190:32583029,19386452:0 -) -(1,3191:6630773,20227940:25952256,513147,134348 -g1,3190:7821562,20227940 -g1,3190:10852602,20227940 -g1,3190:12445782,20227940 -g1,3190:13664096,20227940 -(1,3190:13664096,20227940:0,452978,115847 -r1,3190:14725785,20227940:1061689,568825,115847 -k1,3190:13664096,20227940:-1061689 -) -(1,3190:13664096,20227940:1061689,452978,115847 -k1,3190:13664096,20227940:3277 -h1,3190:14722508,20227940:0,411205,112570 -) -g1,3190:14925014,20227940 -g1,3190:18196571,20227940 -g1,3190:19047228,20227940 -g1,3190:20265542,20227940 -(1,3190:20265542,20227940:0,452978,115847 -r1,3190:22734079,20227940:2468537,568825,115847 -k1,3190:20265542,20227940:-2468537 -) -(1,3190:20265542,20227940:2468537,452978,115847 -k1,3190:20265542,20227940:3277 -h1,3190:22730802,20227940:0,411205,112570 -) -g1,3190:22933308,20227940 -k1,3191:32583029,20227940:5769334 -g1,3191:32583029,20227940 -) -v1,3193:6630773,21418406:0,393216,0 -(1,3226:6630773,37810571:25952256,16785381,196608 -g1,3226:6630773,37810571 -g1,3226:6630773,37810571 -g1,3226:6434165,37810571 -(1,3226:6434165,37810571:0,16785381,196608 -r1,3226:32779637,37810571:26345472,16981989,196608 -k1,3226:6434165,37810571:-26345472 -) -(1,3226:6434165,37810571:26345472,16785381,196608 -[1,3226:6630773,37810571:25952256,16588773,0 -(1,3195:6630773,21626024:25952256,404226,101187 -(1,3194:6630773,21626024:0,0,0 -g1,3194:6630773,21626024 -g1,3194:6630773,21626024 -g1,3194:6303093,21626024 -(1,3194:6303093,21626024:0,0,0 -) -g1,3194:6630773,21626024 -) -g1,3195:7263065,21626024 -g1,3195:8211503,21626024 -g1,3195:12005252,21626024 -g1,3195:13269835,21626024 -g1,3195:13902127,21626024 -g1,3195:15482857,21626024 -g1,3195:16431295,21626024 -h1,3195:17379732,21626024:0,0,0 -k1,3195:32583029,21626024:15203297 -g1,3195:32583029,21626024 -) -(1,3196:6630773,22292202:25952256,328204,0 -h1,3196:6630773,22292202:0,0,0 -h1,3196:6946919,22292202:0,0,0 -k1,3196:32583029,22292202:25636110 -g1,3196:32583029,22292202 -) -(1,3219:6630773,23023916:25952256,388497,82312 -(1,3198:6630773,23023916:0,0,0 -g1,3198:6630773,23023916 -g1,3198:6630773,23023916 -g1,3198:6303093,23023916 -(1,3198:6303093,23023916:0,0,0 -) -g1,3198:6630773,23023916 -) -g1,3219:7579210,23023916 -g1,3219:8211502,23023916 -g1,3219:8843794,23023916 -h1,3219:9159940,23023916:0,0,0 -k1,3219:32583028,23023916:23423088 -g1,3219:32583028,23023916 -) -(1,3219:6630773,23690094:25952256,379060,0 -h1,3219:6630773,23690094:0,0,0 -h1,3219:7263064,23690094:0,0,0 -k1,3219:32583028,23690094:25319964 -g1,3219:32583028,23690094 -) -(1,3219:6630773,24356272:25952256,404226,82312 -h1,3219:6630773,24356272:0,0,0 -g1,3219:7579210,24356272 -g1,3219:7895356,24356272 -g1,3219:8211502,24356272 -g1,3219:8527648,24356272 -g1,3219:8843794,24356272 -g1,3219:9159940,24356272 -g1,3219:10740669,24356272 -g1,3219:12321398,24356272 -k1,3219:12321398,24356272:0 -h1,3219:13585981,24356272:0,0,0 -k1,3219:32583029,24356272:18997048 -g1,3219:32583029,24356272 -) -(1,3219:6630773,25022450:25952256,404226,82312 -h1,3219:6630773,25022450:0,0,0 -g1,3219:7579210,25022450 -g1,3219:9159938,25022450 -g1,3219:9476084,25022450 -g1,3219:9792230,25022450 -g1,3219:10108376,25022450 -g1,3219:10740668,25022450 -g1,3219:11056814,25022450 -g1,3219:11372960,25022450 -g1,3219:11689106,25022450 -g1,3219:12321398,25022450 -g1,3219:12637544,25022450 -g1,3219:12953690,25022450 -g1,3219:13269836,25022450 -h1,3219:13585982,25022450:0,0,0 -k1,3219:32583030,25022450:18997048 -g1,3219:32583030,25022450 -) -(1,3219:6630773,25688628:25952256,404226,82312 -h1,3219:6630773,25688628:0,0,0 -g1,3219:7579210,25688628 -g1,3219:9159938,25688628 -g1,3219:9476084,25688628 -g1,3219:9792230,25688628 -g1,3219:10108376,25688628 -g1,3219:10740668,25688628 -g1,3219:11056814,25688628 -g1,3219:11372960,25688628 -g1,3219:11689106,25688628 -g1,3219:12321398,25688628 -g1,3219:12637544,25688628 -g1,3219:12953690,25688628 -g1,3219:13269836,25688628 -h1,3219:13585982,25688628:0,0,0 -k1,3219:32583030,25688628:18997048 -g1,3219:32583030,25688628 -) -(1,3219:6630773,26354806:25952256,404226,82312 -h1,3219:6630773,26354806:0,0,0 -g1,3219:7579210,26354806 -g1,3219:9159938,26354806 -g1,3219:9476084,26354806 -g1,3219:9792230,26354806 -g1,3219:10108376,26354806 -g1,3219:10740668,26354806 -g1,3219:11056814,26354806 -g1,3219:11372960,26354806 -g1,3219:11689106,26354806 -g1,3219:12321398,26354806 -g1,3219:12637544,26354806 -g1,3219:12953690,26354806 -g1,3219:13269836,26354806 -h1,3219:13585982,26354806:0,0,0 -k1,3219:32583030,26354806:18997048 -g1,3219:32583030,26354806 -) -(1,3219:6630773,27020984:25952256,379060,0 -h1,3219:6630773,27020984:0,0,0 -h1,3219:7263064,27020984:0,0,0 -k1,3219:32583028,27020984:25319964 -g1,3219:32583028,27020984 -) -(1,3219:6630773,27687162:25952256,388497,82312 -h1,3219:6630773,27687162:0,0,0 -g1,3219:7579210,27687162 -g1,3219:8211502,27687162 -g1,3219:8843794,27687162 -h1,3219:9159940,27687162:0,0,0 -k1,3219:32583028,27687162:23423088 -g1,3219:32583028,27687162 -) -(1,3219:6630773,28353340:25952256,379060,0 -h1,3219:6630773,28353340:0,0,0 -h1,3219:7263064,28353340:0,0,0 -k1,3219:32583028,28353340:25319964 -g1,3219:32583028,28353340 -) -(1,3219:6630773,29019518:25952256,404226,82312 -h1,3219:6630773,29019518:0,0,0 -g1,3219:7579210,29019518 -g1,3219:7895356,29019518 -g1,3219:8211502,29019518 -g1,3219:8527648,29019518 -g1,3219:8843794,29019518 -g1,3219:9159940,29019518 -g1,3219:10740669,29019518 -g1,3219:12321398,29019518 -k1,3219:12321398,29019518:0 -h1,3219:13585981,29019518:0,0,0 -k1,3219:32583029,29019518:18997048 -g1,3219:32583029,29019518 -) -(1,3219:6630773,29685696:25952256,404226,82312 -h1,3219:6630773,29685696:0,0,0 -g1,3219:7579210,29685696 -g1,3219:9159938,29685696 -g1,3219:9476084,29685696 -g1,3219:9792230,29685696 -g1,3219:10740667,29685696 -g1,3219:11056813,29685696 -g1,3219:11372959,29685696 -g1,3219:12321396,29685696 -g1,3219:12637542,29685696 -g1,3219:12953688,29685696 -h1,3219:13585979,29685696:0,0,0 -k1,3219:32583029,29685696:18997050 -g1,3219:32583029,29685696 -) -(1,3219:6630773,30351874:25952256,404226,82312 -h1,3219:6630773,30351874:0,0,0 -g1,3219:7579210,30351874 -g1,3219:9159938,30351874 -g1,3219:9476084,30351874 -g1,3219:9792230,30351874 -g1,3219:10740667,30351874 -g1,3219:11056813,30351874 -g1,3219:11372959,30351874 -g1,3219:12321396,30351874 -g1,3219:12637542,30351874 -g1,3219:12953688,30351874 -h1,3219:13585979,30351874:0,0,0 -k1,3219:32583029,30351874:18997050 -g1,3219:32583029,30351874 -) -(1,3219:6630773,31018052:25952256,404226,82312 -h1,3219:6630773,31018052:0,0,0 -g1,3219:7579210,31018052 -g1,3219:9159938,31018052 -g1,3219:9476084,31018052 -g1,3219:9792230,31018052 -g1,3219:10740667,31018052 -g1,3219:11056813,31018052 -g1,3219:11372959,31018052 -g1,3219:12321396,31018052 -g1,3219:12637542,31018052 -g1,3219:12953688,31018052 -h1,3219:13585979,31018052:0,0,0 -k1,3219:32583029,31018052:18997050 -g1,3219:32583029,31018052 -) -(1,3219:6630773,31684230:25952256,379060,0 -h1,3219:6630773,31684230:0,0,0 -h1,3219:7263064,31684230:0,0,0 -k1,3219:32583028,31684230:25319964 -g1,3219:32583028,31684230 -) -(1,3219:6630773,32350408:25952256,388497,82312 -h1,3219:6630773,32350408:0,0,0 -g1,3219:7579210,32350408 -g1,3219:8211502,32350408 -g1,3219:8843794,32350408 -h1,3219:9159940,32350408:0,0,0 -k1,3219:32583028,32350408:23423088 -g1,3219:32583028,32350408 -) -(1,3219:6630773,33016586:25952256,379060,0 -h1,3219:6630773,33016586:0,0,0 -h1,3219:7263064,33016586:0,0,0 -k1,3219:32583028,33016586:25319964 -g1,3219:32583028,33016586 -) -(1,3219:6630773,33682764:25952256,404226,82312 -h1,3219:6630773,33682764:0,0,0 -g1,3219:7579210,33682764 -g1,3219:7895356,33682764 -g1,3219:8211502,33682764 -g1,3219:8527648,33682764 -g1,3219:8843794,33682764 -g1,3219:9159940,33682764 -g1,3219:10740669,33682764 -g1,3219:12321398,33682764 -k1,3219:12321398,33682764:0 -h1,3219:13585981,33682764:0,0,0 -k1,3219:32583029,33682764:18997048 -g1,3219:32583029,33682764 -) -(1,3219:6630773,34348942:25952256,404226,82312 -h1,3219:6630773,34348942:0,0,0 -g1,3219:7579210,34348942 -g1,3219:9159938,34348942 -g1,3219:9476084,34348942 -g1,3219:9792230,34348942 -g1,3219:10740667,34348942 -g1,3219:11056813,34348942 -g1,3219:11372959,34348942 -g1,3219:12321396,34348942 -g1,3219:12637542,34348942 -g1,3219:12953688,34348942 -h1,3219:13585979,34348942:0,0,0 -k1,3219:32583029,34348942:18997050 -g1,3219:32583029,34348942 -) -(1,3219:6630773,35015120:25952256,404226,82312 -h1,3219:6630773,35015120:0,0,0 -g1,3219:7579210,35015120 -g1,3219:9159938,35015120 -g1,3219:9476084,35015120 -g1,3219:9792230,35015120 -g1,3219:10740667,35015120 -g1,3219:11056813,35015120 -g1,3219:11372959,35015120 -g1,3219:12321396,35015120 -g1,3219:12637542,35015120 -g1,3219:12953688,35015120 -h1,3219:13585979,35015120:0,0,0 -k1,3219:32583029,35015120:18997050 -g1,3219:32583029,35015120 -) -(1,3219:6630773,35681298:25952256,404226,82312 -h1,3219:6630773,35681298:0,0,0 -g1,3219:7579210,35681298 -g1,3219:9159938,35681298 -g1,3219:9476084,35681298 -g1,3219:9792230,35681298 -g1,3219:10740667,35681298 -g1,3219:11056813,35681298 -g1,3219:11372959,35681298 -g1,3219:12321396,35681298 -g1,3219:12637542,35681298 -g1,3219:12953688,35681298 -h1,3219:13585979,35681298:0,0,0 -k1,3219:32583029,35681298:18997050 -g1,3219:32583029,35681298 -) -(1,3221:6630773,37002836:25952256,404226,82312 -(1,3220:6630773,37002836:0,0,0 -g1,3220:6630773,37002836 -g1,3220:6630773,37002836 -g1,3220:6303093,37002836 -(1,3220:6303093,37002836:0,0,0 -) -g1,3220:6630773,37002836 -) -k1,3221:6630773,37002836:0 -g1,3221:8211502,37002836 -g1,3221:9159940,37002836 -h1,3221:9792232,37002836:0,0,0 -k1,3221:32583028,37002836:22790796 -g1,3221:32583028,37002836 -) -(1,3225:6630773,37734550:25952256,404226,76021 -(1,3223:6630773,37734550:0,0,0 -g1,3223:6630773,37734550 -g1,3223:6630773,37734550 -g1,3223:6303093,37734550 -(1,3223:6303093,37734550:0,0,0 -) -g1,3223:6630773,37734550 -) -g1,3225:7579210,37734550 -g1,3225:8843793,37734550 -h1,3225:9476084,37734550:0,0,0 -k1,3225:32583028,37734550:23106944 -g1,3225:32583028,37734550 -) -] -) -g1,3226:32583029,37810571 -g1,3226:6630773,37810571 -g1,3226:6630773,37810571 -g1,3226:32583029,37810571 -g1,3226:32583029,37810571 -) -h1,3226:6630773,38007179:0,0,0 -(1,3230:6630773,39372955:25952256,513147,134348 -h1,3229:6630773,39372955:983040,0,0 -k1,3229:8535530,39372955:293882 -k1,3229:9848497,39372955:293882 -k1,3229:12113047,39372955:293882 -k1,3229:14435924,39372955:293882 -k1,3229:15748891,39372955:293882 -k1,3229:18056039,39372955:293882 -k1,3229:19009213,39372955:293882 -k1,3229:20322179,39372955:293881 -k1,3229:23377093,39372955:293882 -k1,3229:25648852,39372955:293882 -k1,3229:26474231,39372955:293882 -k1,3229:27787198,39372955:293882 -k1,3229:30610770,39372955:293882 -k1,3229:31563944,39372955:293882 -k1,3229:32583029,39372955:0 -) -(1,3230:6630773,40214443:25952256,505283,102891 -g1,3229:10678931,40214443 -$1,3229:10678931,40214443 -g1,3229:11657909,40214443 -g1,3229:12408166,40214443 -g1,3229:12952273,40214443 -g1,3229:13666118,40214443 -g1,3229:14210225,40214443 -g1,3229:14924070,40214443 -$1,3229:15322529,40214443 -k1,3230:32583029,40214443:17086830 -g1,3230:32583029,40214443 -) -v1,3232:6630773,41580219:0,393216,0 -(1,3263:6630773,43866251:25952256,2679248,589824 -g1,3263:6630773,43866251 -(1,3263:6630773,43866251:25952256,2679248,589824 -(1,3263:6630773,44456075:25952256,3269072,0 -[1,3263:6630773,44456075:25952256,3269072,0 -(1,3263:6630773,44456075:25952256,3242858,0 -r1,3263:6656987,44456075:26214,3242858,0 -[1,3263:6656987,44456075:25899828,3242858,0 -(1,3263:6656987,43866251:25899828,2063210,0 -[1,3263:7246811,43866251:24720180,2063210,0 -(1,3233:7246811,42890415:24720180,1087374,134348 -k1,3232:8750072,42890415:293558 -k1,3232:10464451,42890415:293558 -k1,3232:11573277,42890415:293558 -k1,3232:13037307,42890415:293557 -k1,3232:14423350,42890415:293558 -k1,3232:17143706,42890415:293558 -k1,3232:18088692,42890415:293558 -k1,3232:20586226,42890415:293558 -k1,3232:21898869,42890415:293558 -k1,3232:24433757,42890415:293557 -k1,3232:27266180,42890415:293558 -k1,3232:28219030,42890415:293558 -k1,3232:29531673,42890415:293558 -k1,3232:31966991,42890415:0 -) -(1,3233:7246811,43731903:24720180,513147,134348 -g1,3232:9597587,43731903 -g1,3232:10412854,43731903 -g1,3232:12063705,43731903 -g1,3232:12922226,43731903 -g1,3232:14140540,43731903 -g1,3232:17315104,43731903 -g1,3232:20247840,43731903 -g1,3232:21638514,43731903 -k1,3233:31966991,43731903:8021610 -g1,3233:31966991,43731903 -) -] -) -] -r1,3263:32583029,44456075:26214,3242858,0 -) -] -) -) -g1,3263:32583029,43866251 -) -] -(1,3263:32583029,45706769:0,0,0 -g1,3263:32583029,45706769 -) -) -] -(1,3263:6630773,47279633:25952256,0,0 -h1,3263:6630773,47279633:25952256,0,0 -) -] -h1,3263:4262630,4025873:0,0,0 +[1,3269:6630773,45706769:25952256,40108032,0 +v1,3194:6630773,6254097:0,393216,0 +(1,3194:6630773,17404638:25952256,11543757,616038 +g1,3194:6630773,17404638 +(1,3194:6630773,17404638:25952256,11543757,616038 +(1,3194:6630773,18020676:25952256,12159795,0 +[1,3194:6630773,18020676:25952256,12159795,0 +(1,3194:6630773,17994462:25952256,12133581,0 +r1,3194:6656987,17994462:26214,12133581,0 +[1,3194:6656987,17994462:25899828,12133581,0 +(1,3194:6656987,17404638:25899828,10953933,0 +[1,3194:7246811,17404638:24720180,10953933,0 +v1,3162:7246811,6843921:0,393216,0 +(1,3191:7246811,16683742:24720180,10233037,196608 +g1,3191:7246811,16683742 +g1,3191:7246811,16683742 +g1,3191:7050203,16683742 +(1,3191:7050203,16683742:0,10233037,196608 +r1,3194:32163599,16683742:25113396,10429645,196608 +k1,3191:7050203,16683742:-25113396 +) +(1,3191:7050203,16683742:25113396,10233037,196608 +[1,3191:7246811,16683742:24720180,10036429,0 +(1,3164:7246811,7051539:24720180,404226,82312 +(1,3163:7246811,7051539:0,0,0 +g1,3163:7246811,7051539 +g1,3163:7246811,7051539 +g1,3163:6919131,7051539 +(1,3163:6919131,7051539:0,0,0 +) +g1,3163:7246811,7051539 +) +g1,3164:11988997,7051539 +g1,3164:12937435,7051539 +g1,3164:16731185,7051539 +g1,3164:18311914,7051539 +g1,3164:18944206,7051539 +h1,3164:19576498,7051539:0,0,0 +k1,3164:31966991,7051539:12390493 +g1,3164:31966991,7051539 +) +(1,3165:7246811,7717717:24720180,404226,76021 +h1,3165:7246811,7717717:0,0,0 +k1,3165:7246811,7717717:0 +h1,3165:13253579,7717717:0,0,0 +k1,3165:31966991,7717717:18713412 +g1,3165:31966991,7717717 +) +(1,3169:7246811,8449431:24720180,404226,76021 +(1,3167:7246811,8449431:0,0,0 +g1,3167:7246811,8449431 +g1,3167:7246811,8449431 +g1,3167:6919131,8449431 +(1,3167:6919131,8449431:0,0,0 +) +g1,3167:7246811,8449431 +) +g1,3169:8195248,8449431 +g1,3169:9459831,8449431 +g1,3169:10092123,8449431 +h1,3169:10408269,8449431:0,0,0 +k1,3169:31966991,8449431:21558722 +g1,3169:31966991,8449431 +) +(1,3171:7246811,9770969:24720180,404226,82312 +(1,3170:7246811,9770969:0,0,0 +g1,3170:7246811,9770969 +g1,3170:7246811,9770969 +g1,3170:6919131,9770969 +(1,3170:6919131,9770969:0,0,0 +) +g1,3170:7246811,9770969 +) +g1,3171:11988997,9770969 +g1,3171:12937435,9770969 +g1,3171:16731185,9770969 +g1,3171:18311914,9770969 +g1,3171:18944206,9770969 +h1,3171:19576498,9770969:0,0,0 +k1,3171:31966991,9770969:12390493 +g1,3171:31966991,9770969 +) +(1,3172:7246811,10437147:24720180,404226,76021 +h1,3172:7246811,10437147:0,0,0 +k1,3172:7246811,10437147:0 +h1,3172:13253579,10437147:0,0,0 +k1,3172:31966991,10437147:18713412 +g1,3172:31966991,10437147 +) +(1,3176:7246811,11168861:24720180,404226,76021 +(1,3174:7246811,11168861:0,0,0 +g1,3174:7246811,11168861 +g1,3174:7246811,11168861 +g1,3174:6919131,11168861 +(1,3174:6919131,11168861:0,0,0 +) +g1,3174:7246811,11168861 +) +g1,3176:8195248,11168861 +g1,3176:9459831,11168861 +g1,3176:10092123,11168861 +h1,3176:10408269,11168861:0,0,0 +k1,3176:31966991,11168861:21558722 +g1,3176:31966991,11168861 +) +(1,3178:7246811,12490399:24720180,404226,82312 +(1,3177:7246811,12490399:0,0,0 +g1,3177:7246811,12490399 +g1,3177:7246811,12490399 +g1,3177:6919131,12490399 +(1,3177:6919131,12490399:0,0,0 +) +g1,3177:7246811,12490399 +) +g1,3178:12305142,12490399 +g1,3178:13253580,12490399 +g1,3178:16415038,12490399 +g1,3178:17995767,12490399 +g1,3178:18628059,12490399 +h1,3178:19260351,12490399:0,0,0 +k1,3178:31966991,12490399:12706640 +g1,3178:31966991,12490399 +) +(1,3179:7246811,13156577:24720180,404226,76021 +h1,3179:7246811,13156577:0,0,0 +k1,3179:7246811,13156577:0 +h1,3179:13569725,13156577:0,0,0 +k1,3179:31966991,13156577:18397266 +g1,3179:31966991,13156577 +) +(1,3183:7246811,13888291:24720180,404226,76021 +(1,3181:7246811,13888291:0,0,0 +g1,3181:7246811,13888291 +g1,3181:7246811,13888291 +g1,3181:6919131,13888291 +(1,3181:6919131,13888291:0,0,0 +) +g1,3181:7246811,13888291 +) +g1,3183:8195248,13888291 +g1,3183:9459831,13888291 +g1,3183:10092123,13888291 +h1,3183:10408269,13888291:0,0,0 +k1,3183:31966991,13888291:21558722 +g1,3183:31966991,13888291 +) +(1,3185:7246811,15209829:24720180,404226,82312 +(1,3184:7246811,15209829:0,0,0 +g1,3184:7246811,15209829 +g1,3184:7246811,15209829 +g1,3184:6919131,15209829 +(1,3184:6919131,15209829:0,0,0 +) +g1,3184:7246811,15209829 +) +g1,3185:11988997,15209829 +g1,3185:12937435,15209829 +g1,3185:18628058,15209829 +g1,3185:20208787,15209829 +g1,3185:20841079,15209829 +h1,3185:21473371,15209829:0,0,0 +k1,3185:31966991,15209829:10493620 +g1,3185:31966991,15209829 +) +(1,3186:7246811,15876007:24720180,404226,76021 +h1,3186:7246811,15876007:0,0,0 +k1,3186:7246811,15876007:0 +h1,3186:13253579,15876007:0,0,0 +k1,3186:31966991,15876007:18713412 +g1,3186:31966991,15876007 +) +(1,3190:7246811,16607721:24720180,404226,76021 +(1,3188:7246811,16607721:0,0,0 +g1,3188:7246811,16607721 +g1,3188:7246811,16607721 +g1,3188:6919131,16607721 +(1,3188:6919131,16607721:0,0,0 +) +g1,3188:7246811,16607721 +) +g1,3190:8195248,16607721 +g1,3190:9459831,16607721 +g1,3190:10092123,16607721 +h1,3190:10408269,16607721:0,0,0 +k1,3190:31966991,16607721:21558722 +g1,3190:31966991,16607721 +) +] +) +g1,3191:31966991,16683742 +g1,3191:7246811,16683742 +g1,3191:7246811,16683742 +g1,3191:31966991,16683742 +g1,3191:31966991,16683742 +) +h1,3191:7246811,16880350:0,0,0 +] +) +] +r1,3194:32583029,17994462:26214,12133581,0 +) +] +) +) +g1,3194:32583029,17404638 +) +h1,3194:6630773,18020676:0,0,0 +(1,3197:6630773,19386452:25952256,505283,126483 +h1,3196:6630773,19386452:983040,0,0 +k1,3196:9929910,19386452:204527 +k1,3196:11125997,19386452:204527 +k1,3196:13532534,19386452:204527 +k1,3196:14388488,19386452:204526 +k1,3196:17500192,19386452:204527 +k1,3196:18776888,19386452:204527 +k1,3196:20085697,19386452:204527 +k1,3196:21765439,19386452:204527 +k1,3196:23620163,19386452:204527 +k1,3196:25267136,19386452:204526 +k1,3196:26644102,19386452:204527 +k1,3196:30697558,19386452:204527 +k1,3196:32583029,19386452:0 +) +(1,3197:6630773,20227940:25952256,513147,134348 +g1,3196:7821562,20227940 +g1,3196:10852602,20227940 +g1,3196:12445782,20227940 +g1,3196:13664096,20227940 +(1,3196:13664096,20227940:0,452978,115847 +r1,3196:14725785,20227940:1061689,568825,115847 +k1,3196:13664096,20227940:-1061689 +) +(1,3196:13664096,20227940:1061689,452978,115847 +k1,3196:13664096,20227940:3277 +h1,3196:14722508,20227940:0,411205,112570 +) +g1,3196:14925014,20227940 +g1,3196:18196571,20227940 +g1,3196:19047228,20227940 +g1,3196:20265542,20227940 +(1,3196:20265542,20227940:0,452978,115847 +r1,3196:22734079,20227940:2468537,568825,115847 +k1,3196:20265542,20227940:-2468537 +) +(1,3196:20265542,20227940:2468537,452978,115847 +k1,3196:20265542,20227940:3277 +h1,3196:22730802,20227940:0,411205,112570 +) +g1,3196:22933308,20227940 +k1,3197:32583029,20227940:5769334 +g1,3197:32583029,20227940 +) +v1,3199:6630773,21418406:0,393216,0 +(1,3232:6630773,37810571:25952256,16785381,196608 +g1,3232:6630773,37810571 +g1,3232:6630773,37810571 +g1,3232:6434165,37810571 +(1,3232:6434165,37810571:0,16785381,196608 +r1,3232:32779637,37810571:26345472,16981989,196608 +k1,3232:6434165,37810571:-26345472 +) +(1,3232:6434165,37810571:26345472,16785381,196608 +[1,3232:6630773,37810571:25952256,16588773,0 +(1,3201:6630773,21626024:25952256,404226,101187 +(1,3200:6630773,21626024:0,0,0 +g1,3200:6630773,21626024 +g1,3200:6630773,21626024 +g1,3200:6303093,21626024 +(1,3200:6303093,21626024:0,0,0 +) +g1,3200:6630773,21626024 +) +g1,3201:7263065,21626024 +g1,3201:8211503,21626024 +g1,3201:12005252,21626024 +g1,3201:13269835,21626024 +g1,3201:13902127,21626024 +g1,3201:15482857,21626024 +g1,3201:16431295,21626024 +h1,3201:17379732,21626024:0,0,0 +k1,3201:32583029,21626024:15203297 +g1,3201:32583029,21626024 +) +(1,3202:6630773,22292202:25952256,328204,0 +h1,3202:6630773,22292202:0,0,0 +h1,3202:6946919,22292202:0,0,0 +k1,3202:32583029,22292202:25636110 +g1,3202:32583029,22292202 +) +(1,3225:6630773,23023916:25952256,388497,82312 +(1,3204:6630773,23023916:0,0,0 +g1,3204:6630773,23023916 +g1,3204:6630773,23023916 +g1,3204:6303093,23023916 +(1,3204:6303093,23023916:0,0,0 +) +g1,3204:6630773,23023916 +) +g1,3225:7579210,23023916 +g1,3225:8211502,23023916 +g1,3225:8843794,23023916 +h1,3225:9159940,23023916:0,0,0 +k1,3225:32583028,23023916:23423088 +g1,3225:32583028,23023916 +) +(1,3225:6630773,23690094:25952256,379060,0 +h1,3225:6630773,23690094:0,0,0 +h1,3225:7263064,23690094:0,0,0 +k1,3225:32583028,23690094:25319964 +g1,3225:32583028,23690094 +) +(1,3225:6630773,24356272:25952256,404226,82312 +h1,3225:6630773,24356272:0,0,0 +g1,3225:7579210,24356272 +g1,3225:7895356,24356272 +g1,3225:8211502,24356272 +g1,3225:8527648,24356272 +g1,3225:8843794,24356272 +g1,3225:9159940,24356272 +g1,3225:10740669,24356272 +g1,3225:12321398,24356272 +k1,3225:12321398,24356272:0 +h1,3225:13585981,24356272:0,0,0 +k1,3225:32583029,24356272:18997048 +g1,3225:32583029,24356272 +) +(1,3225:6630773,25022450:25952256,404226,82312 +h1,3225:6630773,25022450:0,0,0 +g1,3225:7579210,25022450 +g1,3225:9159938,25022450 +g1,3225:9476084,25022450 +g1,3225:9792230,25022450 +g1,3225:10108376,25022450 +g1,3225:10740668,25022450 +g1,3225:11056814,25022450 +g1,3225:11372960,25022450 +g1,3225:11689106,25022450 +g1,3225:12321398,25022450 +g1,3225:12637544,25022450 +g1,3225:12953690,25022450 +g1,3225:13269836,25022450 +h1,3225:13585982,25022450:0,0,0 +k1,3225:32583030,25022450:18997048 +g1,3225:32583030,25022450 +) +(1,3225:6630773,25688628:25952256,404226,82312 +h1,3225:6630773,25688628:0,0,0 +g1,3225:7579210,25688628 +g1,3225:9159938,25688628 +g1,3225:9476084,25688628 +g1,3225:9792230,25688628 +g1,3225:10108376,25688628 +g1,3225:10740668,25688628 +g1,3225:11056814,25688628 +g1,3225:11372960,25688628 +g1,3225:11689106,25688628 +g1,3225:12321398,25688628 +g1,3225:12637544,25688628 +g1,3225:12953690,25688628 +g1,3225:13269836,25688628 +h1,3225:13585982,25688628:0,0,0 +k1,3225:32583030,25688628:18997048 +g1,3225:32583030,25688628 +) +(1,3225:6630773,26354806:25952256,404226,82312 +h1,3225:6630773,26354806:0,0,0 +g1,3225:7579210,26354806 +g1,3225:9159938,26354806 +g1,3225:9476084,26354806 +g1,3225:9792230,26354806 +g1,3225:10108376,26354806 +g1,3225:10740668,26354806 +g1,3225:11056814,26354806 +g1,3225:11372960,26354806 +g1,3225:11689106,26354806 +g1,3225:12321398,26354806 +g1,3225:12637544,26354806 +g1,3225:12953690,26354806 +g1,3225:13269836,26354806 +h1,3225:13585982,26354806:0,0,0 +k1,3225:32583030,26354806:18997048 +g1,3225:32583030,26354806 +) +(1,3225:6630773,27020984:25952256,379060,0 +h1,3225:6630773,27020984:0,0,0 +h1,3225:7263064,27020984:0,0,0 +k1,3225:32583028,27020984:25319964 +g1,3225:32583028,27020984 +) +(1,3225:6630773,27687162:25952256,388497,82312 +h1,3225:6630773,27687162:0,0,0 +g1,3225:7579210,27687162 +g1,3225:8211502,27687162 +g1,3225:8843794,27687162 +h1,3225:9159940,27687162:0,0,0 +k1,3225:32583028,27687162:23423088 +g1,3225:32583028,27687162 +) +(1,3225:6630773,28353340:25952256,379060,0 +h1,3225:6630773,28353340:0,0,0 +h1,3225:7263064,28353340:0,0,0 +k1,3225:32583028,28353340:25319964 +g1,3225:32583028,28353340 +) +(1,3225:6630773,29019518:25952256,404226,82312 +h1,3225:6630773,29019518:0,0,0 +g1,3225:7579210,29019518 +g1,3225:7895356,29019518 +g1,3225:8211502,29019518 +g1,3225:8527648,29019518 +g1,3225:8843794,29019518 +g1,3225:9159940,29019518 +g1,3225:10740669,29019518 +g1,3225:12321398,29019518 +k1,3225:12321398,29019518:0 +h1,3225:13585981,29019518:0,0,0 +k1,3225:32583029,29019518:18997048 +g1,3225:32583029,29019518 +) +(1,3225:6630773,29685696:25952256,404226,82312 +h1,3225:6630773,29685696:0,0,0 +g1,3225:7579210,29685696 +g1,3225:9159938,29685696 +g1,3225:9476084,29685696 +g1,3225:9792230,29685696 +g1,3225:10740667,29685696 +g1,3225:11056813,29685696 +g1,3225:11372959,29685696 +g1,3225:12321396,29685696 +g1,3225:12637542,29685696 +g1,3225:12953688,29685696 +h1,3225:13585979,29685696:0,0,0 +k1,3225:32583029,29685696:18997050 +g1,3225:32583029,29685696 +) +(1,3225:6630773,30351874:25952256,404226,82312 +h1,3225:6630773,30351874:0,0,0 +g1,3225:7579210,30351874 +g1,3225:9159938,30351874 +g1,3225:9476084,30351874 +g1,3225:9792230,30351874 +g1,3225:10740667,30351874 +g1,3225:11056813,30351874 +g1,3225:11372959,30351874 +g1,3225:12321396,30351874 +g1,3225:12637542,30351874 +g1,3225:12953688,30351874 +h1,3225:13585979,30351874:0,0,0 +k1,3225:32583029,30351874:18997050 +g1,3225:32583029,30351874 +) +(1,3225:6630773,31018052:25952256,404226,82312 +h1,3225:6630773,31018052:0,0,0 +g1,3225:7579210,31018052 +g1,3225:9159938,31018052 +g1,3225:9476084,31018052 +g1,3225:9792230,31018052 +g1,3225:10740667,31018052 +g1,3225:11056813,31018052 +g1,3225:11372959,31018052 +g1,3225:12321396,31018052 +g1,3225:12637542,31018052 +g1,3225:12953688,31018052 +h1,3225:13585979,31018052:0,0,0 +k1,3225:32583029,31018052:18997050 +g1,3225:32583029,31018052 +) +(1,3225:6630773,31684230:25952256,379060,0 +h1,3225:6630773,31684230:0,0,0 +h1,3225:7263064,31684230:0,0,0 +k1,3225:32583028,31684230:25319964 +g1,3225:32583028,31684230 +) +(1,3225:6630773,32350408:25952256,388497,82312 +h1,3225:6630773,32350408:0,0,0 +g1,3225:7579210,32350408 +g1,3225:8211502,32350408 +g1,3225:8843794,32350408 +h1,3225:9159940,32350408:0,0,0 +k1,3225:32583028,32350408:23423088 +g1,3225:32583028,32350408 +) +(1,3225:6630773,33016586:25952256,379060,0 +h1,3225:6630773,33016586:0,0,0 +h1,3225:7263064,33016586:0,0,0 +k1,3225:32583028,33016586:25319964 +g1,3225:32583028,33016586 +) +(1,3225:6630773,33682764:25952256,404226,82312 +h1,3225:6630773,33682764:0,0,0 +g1,3225:7579210,33682764 +g1,3225:7895356,33682764 +g1,3225:8211502,33682764 +g1,3225:8527648,33682764 +g1,3225:8843794,33682764 +g1,3225:9159940,33682764 +g1,3225:10740669,33682764 +g1,3225:12321398,33682764 +k1,3225:12321398,33682764:0 +h1,3225:13585981,33682764:0,0,0 +k1,3225:32583029,33682764:18997048 +g1,3225:32583029,33682764 +) +(1,3225:6630773,34348942:25952256,404226,82312 +h1,3225:6630773,34348942:0,0,0 +g1,3225:7579210,34348942 +g1,3225:9159938,34348942 +g1,3225:9476084,34348942 +g1,3225:9792230,34348942 +g1,3225:10740667,34348942 +g1,3225:11056813,34348942 +g1,3225:11372959,34348942 +g1,3225:12321396,34348942 +g1,3225:12637542,34348942 +g1,3225:12953688,34348942 +h1,3225:13585979,34348942:0,0,0 +k1,3225:32583029,34348942:18997050 +g1,3225:32583029,34348942 +) +(1,3225:6630773,35015120:25952256,404226,82312 +h1,3225:6630773,35015120:0,0,0 +g1,3225:7579210,35015120 +g1,3225:9159938,35015120 +g1,3225:9476084,35015120 +g1,3225:9792230,35015120 +g1,3225:10740667,35015120 +g1,3225:11056813,35015120 +g1,3225:11372959,35015120 +g1,3225:12321396,35015120 +g1,3225:12637542,35015120 +g1,3225:12953688,35015120 +h1,3225:13585979,35015120:0,0,0 +k1,3225:32583029,35015120:18997050 +g1,3225:32583029,35015120 +) +(1,3225:6630773,35681298:25952256,404226,82312 +h1,3225:6630773,35681298:0,0,0 +g1,3225:7579210,35681298 +g1,3225:9159938,35681298 +g1,3225:9476084,35681298 +g1,3225:9792230,35681298 +g1,3225:10740667,35681298 +g1,3225:11056813,35681298 +g1,3225:11372959,35681298 +g1,3225:12321396,35681298 +g1,3225:12637542,35681298 +g1,3225:12953688,35681298 +h1,3225:13585979,35681298:0,0,0 +k1,3225:32583029,35681298:18997050 +g1,3225:32583029,35681298 +) +(1,3227:6630773,37002836:25952256,404226,82312 +(1,3226:6630773,37002836:0,0,0 +g1,3226:6630773,37002836 +g1,3226:6630773,37002836 +g1,3226:6303093,37002836 +(1,3226:6303093,37002836:0,0,0 +) +g1,3226:6630773,37002836 +) +k1,3227:6630773,37002836:0 +g1,3227:8211502,37002836 +g1,3227:9159940,37002836 +h1,3227:9792232,37002836:0,0,0 +k1,3227:32583028,37002836:22790796 +g1,3227:32583028,37002836 +) +(1,3231:6630773,37734550:25952256,404226,76021 +(1,3229:6630773,37734550:0,0,0 +g1,3229:6630773,37734550 +g1,3229:6630773,37734550 +g1,3229:6303093,37734550 +(1,3229:6303093,37734550:0,0,0 +) +g1,3229:6630773,37734550 +) +g1,3231:7579210,37734550 +g1,3231:8843793,37734550 +h1,3231:9476084,37734550:0,0,0 +k1,3231:32583028,37734550:23106944 +g1,3231:32583028,37734550 +) +] +) +g1,3232:32583029,37810571 +g1,3232:6630773,37810571 +g1,3232:6630773,37810571 +g1,3232:32583029,37810571 +g1,3232:32583029,37810571 +) +h1,3232:6630773,38007179:0,0,0 +(1,3236:6630773,39372955:25952256,513147,134348 +h1,3235:6630773,39372955:983040,0,0 +k1,3235:8535530,39372955:293882 +k1,3235:9848497,39372955:293882 +k1,3235:12113047,39372955:293882 +k1,3235:14435924,39372955:293882 +k1,3235:15748891,39372955:293882 +k1,3235:18056039,39372955:293882 +k1,3235:19009213,39372955:293882 +k1,3235:20322179,39372955:293881 +k1,3235:23377093,39372955:293882 +k1,3235:25648852,39372955:293882 +k1,3235:26474231,39372955:293882 +k1,3235:27787198,39372955:293882 +k1,3235:30610770,39372955:293882 +k1,3235:31563944,39372955:293882 +k1,3235:32583029,39372955:0 +) +(1,3236:6630773,40214443:25952256,505283,102891 +g1,3235:10678931,40214443 +$1,3235:10678931,40214443 +g1,3235:11657909,40214443 +g1,3235:12408166,40214443 +g1,3235:12952273,40214443 +g1,3235:13666118,40214443 +g1,3235:14210225,40214443 +g1,3235:14924070,40214443 +$1,3235:15322529,40214443 +k1,3236:32583029,40214443:17086830 +g1,3236:32583029,40214443 +) +v1,3238:6630773,41580219:0,393216,0 +(1,3269:6630773,43866251:25952256,2679248,589824 +g1,3269:6630773,43866251 +(1,3269:6630773,43866251:25952256,2679248,589824 +(1,3269:6630773,44456075:25952256,3269072,0 +[1,3269:6630773,44456075:25952256,3269072,0 +(1,3269:6630773,44456075:25952256,3242858,0 +r1,3269:6656987,44456075:26214,3242858,0 +[1,3269:6656987,44456075:25899828,3242858,0 +(1,3269:6656987,43866251:25899828,2063210,0 +[1,3269:7246811,43866251:24720180,2063210,0 +(1,3239:7246811,42890415:24720180,1087374,134348 +k1,3238:8750072,42890415:293558 +k1,3238:10464451,42890415:293558 +k1,3238:11573277,42890415:293558 +k1,3238:13037307,42890415:293557 +k1,3238:14423350,42890415:293558 +k1,3238:17143706,42890415:293558 +k1,3238:18088692,42890415:293558 +k1,3238:20586226,42890415:293558 +k1,3238:21898869,42890415:293558 +k1,3238:24433757,42890415:293557 +k1,3238:27266180,42890415:293558 +k1,3238:28219030,42890415:293558 +k1,3238:29531673,42890415:293558 +k1,3238:31966991,42890415:0 +) +(1,3239:7246811,43731903:24720180,513147,134348 +g1,3238:9597587,43731903 +g1,3238:10412854,43731903 +g1,3238:12063705,43731903 +g1,3238:12922226,43731903 +g1,3238:14140540,43731903 +g1,3238:17315104,43731903 +g1,3238:20247840,43731903 +g1,3238:21638514,43731903 +k1,3239:31966991,43731903:8021610 +g1,3239:31966991,43731903 +) +] +) +] +r1,3269:32583029,44456075:26214,3242858,0 +) +] +) +) +g1,3269:32583029,43866251 +) +] +(1,3269:32583029,45706769:0,0,0 +g1,3269:32583029,45706769 +) +) +] +(1,3269:6630773,47279633:25952256,0,0 +h1,3269:6630773,47279633:25952256,0,0 +) +] +h1,3269:4262630,4025873:0,0,0 ] !21256 }65 -Input:425:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:426:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {66 -[1,3331:4262630,47279633:28320399,43253760,0 -(1,3331:4262630,4025873:0,0,0 -[1,3331:-473657,4025873:25952256,0,0 -(1,3331:-473657,-710414:25952256,0,0 -h1,3331:-473657,-710414:0,0,0 -(1,3331:-473657,-710414:0,0,0 -(1,3331:-473657,-710414:0,0,0 -g1,3331:-473657,-710414 -(1,3331:-473657,-710414:65781,0,65781 -g1,3331:-407876,-710414 -[1,3331:-407876,-644633:0,0,0 +[1,3337:4262630,47279633:28320399,43253760,0 +(1,3337:4262630,4025873:0,0,0 +[1,3337:-473657,4025873:25952256,0,0 +(1,3337:-473657,-710414:25952256,0,0 +h1,3337:-473657,-710414:0,0,0 +(1,3337:-473657,-710414:0,0,0 +(1,3337:-473657,-710414:0,0,0 +g1,3337:-473657,-710414 +(1,3337:-473657,-710414:65781,0,65781 +g1,3337:-407876,-710414 +[1,3337:-407876,-644633:0,0,0 ] ) -k1,3331:-473657,-710414:-65781 +k1,3337:-473657,-710414:-65781 ) ) -k1,3331:25478599,-710414:25952256 -g1,3331:25478599,-710414 +k1,3337:25478599,-710414:25952256 +g1,3337:25478599,-710414 ) ] ) -[1,3331:6630773,47279633:25952256,43253760,0 -[1,3331:6630773,4812305:25952256,786432,0 -(1,3331:6630773,4812305:25952256,505283,126483 -(1,3331:6630773,4812305:25952256,505283,126483 -g1,3331:3078558,4812305 -[1,3331:3078558,4812305:0,0,0 -(1,3331:3078558,2439708:0,1703936,0 -k1,3331:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3331:2537886,2439708:1179648,16384,0 +[1,3337:6630773,47279633:25952256,43253760,0 +[1,3337:6630773,4812305:25952256,786432,0 +(1,3337:6630773,4812305:25952256,505283,126483 +(1,3337:6630773,4812305:25952256,505283,126483 +g1,3337:3078558,4812305 +[1,3337:3078558,4812305:0,0,0 +(1,3337:3078558,2439708:0,1703936,0 +k1,3337:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3337:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3331:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3337:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3331:3078558,4812305:0,0,0 -(1,3331:3078558,2439708:0,1703936,0 -g1,3331:29030814,2439708 -g1,3331:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3331:36151628,1915420:16384,1179648,0 +[1,3337:3078558,4812305:0,0,0 +(1,3337:3078558,2439708:0,1703936,0 +g1,3337:29030814,2439708 +g1,3337:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3337:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3331:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3337:37855564,2439708:1179648,16384,0 ) ) -k1,3331:3078556,2439708:-34777008 +k1,3337:3078556,2439708:-34777008 ) ] -[1,3331:3078558,4812305:0,0,0 -(1,3331:3078558,49800853:0,16384,2228224 -k1,3331:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3331:2537886,49800853:1179648,16384,0 +[1,3337:3078558,4812305:0,0,0 +(1,3337:3078558,49800853:0,16384,2228224 +k1,3337:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3337:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3331:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3337:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3331:3078558,4812305:0,0,0 -(1,3331:3078558,49800853:0,16384,2228224 -g1,3331:29030814,49800853 -g1,3331:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3331:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +[1,3337:3078558,4812305:0,0,0 +(1,3337:3078558,49800853:0,16384,2228224 +g1,3337:29030814,49800853 +g1,3337:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3337:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3331:37855564,49800853:1179648,16384,0 -) -) -k1,3331:3078556,49800853:-34777008 -) -] -g1,3331:6630773,4812305 -g1,3331:6630773,4812305 -g1,3331:9472414,4812305 -g1,3331:10882093,4812305 -g1,3331:16529985,4812305 -g1,3331:18796220,4812305 -k1,3331:31786111,4812305:12989891 -) -) -] -[1,3331:6630773,45706769:25952256,40108032,0 -(1,3331:6630773,45706769:25952256,40108032,0 -(1,3331:6630773,45706769:0,0,0 -g1,3331:6630773,45706769 -) -[1,3331:6630773,45706769:25952256,40108032,0 -v1,3263:6630773,6254097:0,393216,0 -(1,3263:6630773,21080636:25952256,15219755,616038 -g1,3263:6630773,21080636 -(1,3263:6630773,21080636:25952256,15219755,616038 -(1,3263:6630773,21696674:25952256,15835793,0 -[1,3263:6630773,21696674:25952256,15835793,0 -(1,3263:6630773,21670460:25952256,15809579,0 -r1,3263:6656987,21670460:26214,15809579,0 -[1,3263:6656987,21670460:25899828,15809579,0 -(1,3263:6656987,21080636:25899828,14629931,0 -[1,3263:7246811,21080636:24720180,14629931,0 -v1,3235:7246811,6843921:0,393216,0 -(1,3243:7246811,9801709:24720180,3351004,196608 -g1,3243:7246811,9801709 -g1,3243:7246811,9801709 -g1,3243:7050203,9801709 -(1,3243:7050203,9801709:0,3351004,196608 -r1,3263:32163599,9801709:25113396,3547612,196608 -k1,3243:7050203,9801709:-25113396 -) -(1,3243:7050203,9801709:25113396,3351004,196608 -[1,3243:7246811,9801709:24720180,3154396,0 -(1,3237:7246811,7035810:24720180,388497,9436 -(1,3236:7246811,7035810:0,0,0 -g1,3236:7246811,7035810 -g1,3236:7246811,7035810 -g1,3236:6919131,7035810 -(1,3236:6919131,7035810:0,0,0 -) -g1,3236:7246811,7035810 -) -g1,3237:7879103,7035810 -g1,3237:8827541,7035810 -h1,3237:10092124,7035810:0,0,0 -k1,3237:31966992,7035810:21874868 -g1,3237:31966992,7035810 -) -(1,3238:7246811,7701988:24720180,404226,82312 -h1,3238:7246811,7701988:0,0,0 -g1,3238:8511394,7701988 -g1,3238:9459832,7701988 -g1,3238:12621289,7701988 -g1,3238:14202018,7701988 -g1,3238:14834310,7701988 -h1,3238:15466602,7701988:0,0,0 -k1,3238:31966991,7701988:16500389 -g1,3238:31966991,7701988 -) -(1,3239:7246811,8368166:24720180,404226,101187 -h1,3239:7246811,8368166:0,0,0 -g1,3239:8827540,8368166 -g1,3239:9775978,8368166 -g1,3239:12937435,8368166 -g1,3239:14518164,8368166 -g1,3239:15150456,8368166 -g1,3239:16098894,8368166 -g1,3239:17995768,8368166 -g1,3239:18628060,8368166 -h1,3239:20208789,8368166:0,0,0 -k1,3239:31966991,8368166:11758202 -g1,3239:31966991,8368166 -) -(1,3240:7246811,9034344:24720180,404226,82312 -h1,3240:7246811,9034344:0,0,0 -g1,3240:8511394,9034344 -g1,3240:9459832,9034344 -g1,3240:12621289,9034344 -g1,3240:14202018,9034344 -g1,3240:14834310,9034344 -h1,3240:15466602,9034344:0,0,0 -k1,3240:31966991,9034344:16500389 -g1,3240:31966991,9034344 -) -(1,3241:7246811,9700522:24720180,404226,101187 -h1,3241:7246811,9700522:0,0,0 -g1,3241:8827540,9700522 -g1,3241:9775978,9700522 -g1,3241:12937435,9700522 -g1,3241:14518164,9700522 -g1,3241:15150456,9700522 -g1,3241:16098894,9700522 -g1,3241:17995768,9700522 -g1,3241:18628060,9700522 -h1,3241:20208789,9700522:0,0,0 -k1,3241:31966991,9700522:11758202 -g1,3241:31966991,9700522 -) -] -) -g1,3243:31966991,9801709 -g1,3243:7246811,9801709 -g1,3243:7246811,9801709 -g1,3243:31966991,9801709 -g1,3243:31966991,9801709 -) -h1,3243:7246811,9998317:0,0,0 -v1,3247:7246811,11713071:0,393216,0 -(1,3254:7246811,14004681:24720180,2684826,196608 -g1,3254:7246811,14004681 -g1,3254:7246811,14004681 -g1,3254:7050203,14004681 -(1,3254:7050203,14004681:0,2684826,196608 -r1,3263:32163599,14004681:25113396,2881434,196608 -k1,3254:7050203,14004681:-25113396 -) -(1,3254:7050203,14004681:25113396,2684826,196608 -[1,3254:7246811,14004681:24720180,2488218,0 -(1,3249:7246811,11904960:24720180,388497,9436 -(1,3248:7246811,11904960:0,0,0 -g1,3248:7246811,11904960 -g1,3248:7246811,11904960 -g1,3248:6919131,11904960 -(1,3248:6919131,11904960:0,0,0 -) -g1,3248:7246811,11904960 -) -g1,3249:7879103,11904960 -g1,3249:8827541,11904960 -h1,3249:10092124,11904960:0,0,0 -k1,3249:31966992,11904960:21874868 -g1,3249:31966992,11904960 -) -(1,3250:7246811,12571138:24720180,404226,101187 -h1,3250:7246811,12571138:0,0,0 -g1,3250:8511394,12571138 -g1,3250:9459832,12571138 -g1,3250:12305143,12571138 -g1,3250:13569726,12571138 -g1,3250:14202018,12571138 -g1,3250:15782748,12571138 -h1,3250:16731185,12571138:0,0,0 -k1,3250:31966991,12571138:15235806 -g1,3250:31966991,12571138 -) -(1,3251:7246811,13237316:24720180,404226,101187 -h1,3251:7246811,13237316:0,0,0 -g1,3251:8511394,13237316 -g1,3251:9459832,13237316 -g1,3251:12305143,13237316 -g1,3251:13569726,13237316 -g1,3251:14202018,13237316 -g1,3251:15782748,13237316 -g1,3251:17047332,13237316 -g1,3251:19892643,13237316 -g1,3251:20524935,13237316 -g1,3251:24002539,13237316 -g1,3251:26531706,13237316 -h1,3251:28744726,13237316:0,0,0 -k1,3251:31966991,13237316:3222265 -g1,3251:31966991,13237316 -) -(1,3252:7246811,13903494:24720180,404226,101187 -h1,3252:7246811,13903494:0,0,0 -g1,3252:8511394,13903494 -g1,3252:9459832,13903494 -g1,3252:12305143,13903494 -g1,3252:13569726,13903494 -g1,3252:14202018,13903494 -g1,3252:15782748,13903494 -h1,3252:16731185,13903494:0,0,0 -k1,3252:31966991,13903494:15235806 -g1,3252:31966991,13903494 -) -] -) -g1,3254:31966991,14004681 -g1,3254:7246811,14004681 -g1,3254:7246811,14004681 -g1,3254:31966991,14004681 -g1,3254:31966991,14004681 -) -h1,3254:7246811,14201289:0,0,0 -(1,3259:7246811,15567065:24720180,505283,134348 -h1,3257:7246811,15567065:983040,0,0 -k1,3257:9205086,15567065:228780 -k1,3257:11302297,15567065:228780 -k1,3257:12815584,15567065:228781 -k1,3257:15352542,15567065:228780 -k1,3257:16772767,15567065:228780 -k1,3257:22277195,15567065:228780 -k1,3257:24485818,15567065:228780 -k1,3257:25706158,15567065:228780 -k1,3257:27001210,15567065:228781 -k1,3257:28249075,15567065:228780 -k1,3257:30131328,15567065:228780 -k1,3257:31966991,15567065:0 -) -(1,3259:7246811,16408553:24720180,505283,126483 -g1,3257:9135558,16408553 -g1,3257:14626164,16408553 -g1,3257:16805236,16408553 -g1,3257:17996025,16408553 -k1,3259:31966991,16408553:11063789 -g1,3259:31966991,16408553 -) -(1,3260:9389838,17774329:21790721,513147,126483 -(1,3259:9389838,17774329:0,477757,0 -g1,3259:9389838,17774329 -g1,3259:8079118,17774329 -g1,3259:8079118,17774329 -(1,3259:8079118,17774329:1310720,477757,0 -(1,3259:8079118,17774329:1048576,477757,0 -g1,3259:8341262,17774329 -(1,3259:8341262,17774329:572129,477757,0 -g1,3259:8341262,17774329 -) -) -) -g1,3259:9389838,17774329 -) -k1,3259:10682994,17774329:144310 -k1,3259:11846389,17774329:144310 -k1,3259:14753042,17774329:144310 -k1,3259:18934370,17774329:144310 -k1,3259:20270125,17774329:144310 -k1,3259:22230439,17774329:144311 -k1,3259:25159374,17774329:144310 -k1,3259:25955112,17774329:144310 -k1,3259:28467893,17774329:144310 -k1,3259:29989114,17774329:144310 -k1,3259:31180559,17774329:0 -) -(1,3260:9389838,18615817:21790721,473825,126483 -g1,3259:10377465,18615817 -k1,3260:31180559,18615817:16216229 -g1,3260:31180559,18615817 -) -(1,3261:9389838,19719449:21790721,505283,134348 -(1,3260:9389838,19719449:0,485622,0 -g1,3260:9389838,19719449 -g1,3260:8079118,19719449 -g1,3260:8079118,19719449 -(1,3260:8079118,19719449:1310720,485622,0 -(1,3260:8079118,19719449:1048576,485622,0 -g1,3260:8341262,19719449 -(1,3260:8341262,19719449:572129,485622,0 -g1,3260:8341262,19719449 -) -) -) -g1,3260:9389838,19719449 -) -k1,3260:12146234,19719449:241780 -k1,3260:12743875,19719449:241781 -k1,3260:15072977,19719449:241780 -k1,3260:16582224,19719449:241781 -k1,3260:17179864,19719449:241780 -k1,3260:19399521,19719449:241780 -k1,3260:21376695,19719449:241781 -(1,3260:21376695,19719449:0,452978,115847 -r1,3263:24196944,19719449:2820249,568825,115847 -k1,3260:21376695,19719449:-2820249 -) -(1,3260:21376695,19719449:2820249,452978,115847 -k1,3260:21376695,19719449:3277 -h1,3260:24193667,19719449:0,411205,112570 -) -k1,3260:24438724,19719449:241780 -k1,3260:25871950,19719449:241781 -(1,3260:25871950,19719449:0,452978,115847 -r1,3263:29747334,19719449:3875384,568825,115847 -k1,3260:25871950,19719449:-3875384 -) -(1,3260:25871950,19719449:3875384,452978,115847 -k1,3260:25871950,19719449:3277 -h1,3260:29744057,19719449:0,411205,112570 -) -k1,3260:29989114,19719449:241780 -k1,3260:31180559,19719449:0 -) -(1,3261:9389838,20560937:21790721,505283,126483 -g1,3260:12349443,20560937 -g1,3260:13567757,20560937 -g1,3260:16545713,20560937 -k1,3261:31180559,20560937:12450531 -g1,3261:31180559,20560937 -) -] -) -] -r1,3263:32583029,21670460:26214,15809579,0 -) -] -) -) -g1,3263:32583029,21080636 -) -h1,3263:6630773,21696674:0,0,0 -(1,3266:6630773,23018884:25952256,513147,126483 -h1,3265:6630773,23018884:983040,0,0 -k1,3265:10939261,23018884:133845 -k1,3265:12020756,23018884:133844 -k1,3265:14888108,23018884:133845 -k1,3265:16013513,23018884:133845 -k1,3265:18931326,23018884:133844 -k1,3265:19681209,23018884:133845 -k1,3265:20403567,23018884:133845 -k1,3265:21223574,23018884:133845 -k1,3265:24090925,23018884:133844 -k1,3265:25216330,23018884:133845 -k1,3265:26863401,23018884:133845 -k1,3265:27613283,23018884:133844 -k1,3265:29498905,23018884:133845 -k1,3265:32583029,23018884:0 -) -(1,3266:6630773,23860372:25952256,505283,134348 -k1,3265:10452341,23860372:206602 -k1,3265:11612491,23860372:206601 -k1,3265:12951555,23860372:206602 -k1,3265:14224428,23860372:206602 -k1,3265:17100310,23860372:206601 -k1,3265:18945967,23860372:206602 -k1,3265:19918685,23860372:206602 -k1,3265:21696839,23860372:206601 -k1,3265:23279042,23860372:206602 -(1,3265:23279042,23860372:0,452978,115847 -r1,3265:24340731,23860372:1061689,568825,115847 -k1,3265:23279042,23860372:-1061689 -) -(1,3265:23279042,23860372:1061689,452978,115847 -k1,3265:23279042,23860372:3277 -h1,3265:24337454,23860372:0,411205,112570 -) -k1,3265:24547333,23860372:206602 -k1,3265:25945379,23860372:206601 -k1,3265:27844121,23860372:206602 -k1,3265:32583029,23860372:0 -) -(1,3266:6630773,24701860:25952256,513147,134348 -k1,3265:7521538,24701860:231473 -k1,3265:11029155,24701860:231472 -k1,3265:14511214,24701860:231473 -k1,3265:17532554,24701860:231472 -(1,3265:17532554,24701860:0,452978,115847 -r1,3265:18594243,24701860:1061689,568825,115847 -k1,3265:17532554,24701860:-1061689 -) -(1,3265:17532554,24701860:1061689,452978,115847 -k1,3265:17532554,24701860:3277 -h1,3265:18590966,24701860:0,411205,112570 -) -k1,3265:18825716,24701860:231473 -k1,3265:22526664,24701860:231472 -k1,3265:23113997,24701860:231473 -k1,3265:25606461,24701860:231472 -k1,3265:26599462,24701860:231473 -k1,3265:29869838,24701860:231472 -k1,3265:32583029,24701860:0 -) -(1,3266:6630773,25543348:25952256,505283,7863 -g1,3265:8021447,25543348 -k1,3266:32583029,25543348:22853714 -g1,3266:32583029,25543348 -) -v1,3268:6630773,26690248:0,393216,0 -(1,3291:6630773,36426924:25952256,10129892,196608 -g1,3291:6630773,36426924 -g1,3291:6630773,36426924 -g1,3291:6434165,36426924 -(1,3291:6434165,36426924:0,10129892,196608 -r1,3291:32779637,36426924:26345472,10326500,196608 -k1,3291:6434165,36426924:-26345472 -) -(1,3291:6434165,36426924:26345472,10129892,196608 -[1,3291:6630773,36426924:25952256,9933284,0 -(1,3270:6630773,26897866:25952256,404226,82312 -(1,3269:6630773,26897866:0,0,0 -g1,3269:6630773,26897866 -g1,3269:6630773,26897866 -g1,3269:6303093,26897866 -(1,3269:6303093,26897866:0,0,0 -) -g1,3269:6630773,26897866 -) -g1,3270:7263065,26897866 -g1,3270:8211503,26897866 -g1,3270:12321398,26897866 -g1,3270:13902127,26897866 -g1,3270:14534419,26897866 -h1,3270:15166711,26897866:0,0,0 -k1,3270:32583029,26897866:17416318 -g1,3270:32583029,26897866 -) -(1,3271:6630773,27564044:25952256,328204,0 -h1,3271:6630773,27564044:0,0,0 -h1,3271:6946919,27564044:0,0,0 -k1,3271:32583029,27564044:25636110 -g1,3271:32583029,27564044 -) -(1,3280:6630773,28295758:25952256,404226,82312 -(1,3273:6630773,28295758:0,0,0 -g1,3273:6630773,28295758 -g1,3273:6630773,28295758 -g1,3273:6303093,28295758 -(1,3273:6303093,28295758:0,0,0 -) -g1,3273:6630773,28295758 -) -g1,3280:7579210,28295758 -g1,3280:7895356,28295758 -g1,3280:8211502,28295758 -g1,3280:8527648,28295758 -g1,3280:8843794,28295758 -g1,3280:9159940,28295758 -g1,3280:10740669,28295758 -g1,3280:12321398,28295758 -g1,3280:13902127,28295758 -k1,3280:13902127,28295758:0 -h1,3280:15166710,28295758:0,0,0 -k1,3280:32583030,28295758:17416320 -g1,3280:32583030,28295758 -) -(1,3280:6630773,28961936:25952256,404226,82312 -h1,3280:6630773,28961936:0,0,0 -g1,3280:7579210,28961936 -g1,3280:9159938,28961936 -g1,3280:9476084,28961936 -g1,3280:9792230,28961936 -g1,3280:10108376,28961936 -g1,3280:10740668,28961936 -g1,3280:11056814,28961936 -g1,3280:11372960,28961936 -g1,3280:11689106,28961936 -g1,3280:12321398,28961936 -g1,3280:12637544,28961936 -g1,3280:12953690,28961936 -g1,3280:13902127,28961936 -g1,3280:14218273,28961936 -g1,3280:14534419,28961936 -h1,3280:15166710,28961936:0,0,0 -k1,3280:32583030,28961936:17416320 -g1,3280:32583030,28961936 -) -(1,3280:6630773,29628114:25952256,404226,82312 -h1,3280:6630773,29628114:0,0,0 -g1,3280:7579210,29628114 -g1,3280:9159938,29628114 -g1,3280:9476084,29628114 -g1,3280:9792230,29628114 -g1,3280:10108376,29628114 -g1,3280:10740668,29628114 -g1,3280:11056814,29628114 -g1,3280:11372960,29628114 -g1,3280:11689106,29628114 -g1,3280:12321398,29628114 -g1,3280:12637544,29628114 -g1,3280:12953690,29628114 -g1,3280:13902127,29628114 -g1,3280:14218273,29628114 -g1,3280:14534419,29628114 -h1,3280:15166710,29628114:0,0,0 -k1,3280:32583030,29628114:17416320 -g1,3280:32583030,29628114 -) -(1,3280:6630773,30294292:25952256,404226,82312 -h1,3280:6630773,30294292:0,0,0 -g1,3280:7579210,30294292 -g1,3280:9159938,30294292 -g1,3280:9476084,30294292 -g1,3280:9792230,30294292 -g1,3280:10108376,30294292 -g1,3280:10740668,30294292 -g1,3280:11056814,30294292 -g1,3280:11372960,30294292 -g1,3280:11689106,30294292 -g1,3280:12321398,30294292 -g1,3280:12637544,30294292 -g1,3280:12953690,30294292 -g1,3280:13902127,30294292 -g1,3280:14218273,30294292 -g1,3280:14534419,30294292 -h1,3280:15166710,30294292:0,0,0 -k1,3280:32583030,30294292:17416320 -g1,3280:32583030,30294292 -) -(1,3280:6630773,30960470:25952256,404226,82312 -h1,3280:6630773,30960470:0,0,0 -g1,3280:7579210,30960470 -g1,3280:9159938,30960470 -g1,3280:9476084,30960470 -g1,3280:9792230,30960470 -g1,3280:10108376,30960470 -g1,3280:10740668,30960470 -g1,3280:11056814,30960470 -g1,3280:11372960,30960470 -g1,3280:11689106,30960470 -g1,3280:12321398,30960470 -g1,3280:12637544,30960470 -g1,3280:12953690,30960470 -g1,3280:13902127,30960470 -g1,3280:14218273,30960470 -g1,3280:14534419,30960470 -h1,3280:15166710,30960470:0,0,0 -k1,3280:32583030,30960470:17416320 -g1,3280:32583030,30960470 -) -(1,3280:6630773,31626648:25952256,404226,82312 -h1,3280:6630773,31626648:0,0,0 -g1,3280:7579210,31626648 -g1,3280:9159938,31626648 -g1,3280:9476084,31626648 -g1,3280:9792230,31626648 -g1,3280:10108376,31626648 -g1,3280:10740668,31626648 -g1,3280:11056814,31626648 -g1,3280:11372960,31626648 -g1,3280:12321397,31626648 -g1,3280:12637543,31626648 -g1,3280:12953689,31626648 -g1,3280:13902126,31626648 -g1,3280:14218272,31626648 -g1,3280:14534418,31626648 -h1,3280:15166709,31626648:0,0,0 -k1,3280:32583029,31626648:17416320 -g1,3280:32583029,31626648 -) -(1,3282:6630773,32948186:25952256,404226,76021 -(1,3281:6630773,32948186:0,0,0 -g1,3281:6630773,32948186 -g1,3281:6630773,32948186 -g1,3281:6303093,32948186 -(1,3281:6303093,32948186:0,0,0 -) -g1,3281:6630773,32948186 -) -k1,3282:6630773,32948186:0 -h1,3282:7895356,32948186:0,0,0 -k1,3282:32583028,32948186:24687672 -g1,3282:32583028,32948186 -) -(1,3290:6630773,33679900:25952256,404226,82312 -(1,3284:6630773,33679900:0,0,0 -g1,3284:6630773,33679900 -g1,3284:6630773,33679900 -g1,3284:6303093,33679900 -(1,3284:6303093,33679900:0,0,0 -) -g1,3284:6630773,33679900 -) -g1,3290:7579210,33679900 -g1,3290:7895356,33679900 -g1,3290:8211502,33679900 -g1,3290:8527648,33679900 -g1,3290:8843794,33679900 -g1,3290:9159940,33679900 -g1,3290:10740669,33679900 -g1,3290:12321398,33679900 -g1,3290:13902127,33679900 -g1,3290:15482856,33679900 -k1,3290:15482856,33679900:0 -h1,3290:16747439,33679900:0,0,0 -k1,3290:32583029,33679900:15835590 -g1,3290:32583029,33679900 -) -(1,3290:6630773,34346078:25952256,404226,82312 -h1,3290:6630773,34346078:0,0,0 -g1,3290:7579210,34346078 -g1,3290:9159938,34346078 -g1,3290:9476084,34346078 -g1,3290:9792230,34346078 -g1,3290:10108376,34346078 -g1,3290:10740668,34346078 -g1,3290:11056814,34346078 -g1,3290:11372960,34346078 -g1,3290:11689106,34346078 -g1,3290:12321398,34346078 -g1,3290:12637544,34346078 -g1,3290:12953690,34346078 -g1,3290:13269836,34346078 -g1,3290:13902128,34346078 -g1,3290:14218274,34346078 -g1,3290:14534420,34346078 -g1,3290:14850566,34346078 -g1,3290:15482858,34346078 -g1,3290:15799004,34346078 -g1,3290:16115150,34346078 -g1,3290:16431296,34346078 -h1,3290:16747442,34346078:0,0,0 -k1,3290:32583029,34346078:15835587 -g1,3290:32583029,34346078 -) -(1,3290:6630773,35012256:25952256,404226,82312 -h1,3290:6630773,35012256:0,0,0 -g1,3290:7579210,35012256 -g1,3290:9159938,35012256 -g1,3290:9476084,35012256 -g1,3290:9792230,35012256 -g1,3290:10108376,35012256 -g1,3290:10740668,35012256 -g1,3290:11056814,35012256 -g1,3290:11372960,35012256 -g1,3290:11689106,35012256 -g1,3290:12321398,35012256 -g1,3290:12637544,35012256 -g1,3290:12953690,35012256 -g1,3290:13269836,35012256 -g1,3290:13902128,35012256 -g1,3290:14218274,35012256 -g1,3290:14534420,35012256 -g1,3290:14850566,35012256 -g1,3290:15482858,35012256 -g1,3290:15799004,35012256 -g1,3290:16115150,35012256 -h1,3290:16747441,35012256:0,0,0 -k1,3290:32583029,35012256:15835588 -g1,3290:32583029,35012256 -) -(1,3290:6630773,35678434:25952256,404226,82312 -h1,3290:6630773,35678434:0,0,0 -g1,3290:7579210,35678434 -g1,3290:9159938,35678434 -g1,3290:9476084,35678434 -g1,3290:9792230,35678434 -g1,3290:10740667,35678434 -g1,3290:11056813,35678434 -g1,3290:11372959,35678434 -g1,3290:12321396,35678434 -g1,3290:12637542,35678434 -g1,3290:12953688,35678434 -g1,3290:13902125,35678434 -g1,3290:14218271,35678434 -g1,3290:14534417,35678434 -g1,3290:15482854,35678434 -g1,3290:15799000,35678434 -g1,3290:16115146,35678434 -h1,3290:16747437,35678434:0,0,0 -k1,3290:32583029,35678434:15835592 -g1,3290:32583029,35678434 -) -(1,3290:6630773,36344612:25952256,404226,82312 -h1,3290:6630773,36344612:0,0,0 -g1,3290:7579210,36344612 -g1,3290:9159938,36344612 -g1,3290:9476084,36344612 -g1,3290:9792230,36344612 -g1,3290:10740667,36344612 -g1,3290:11056813,36344612 -g1,3290:11372959,36344612 -g1,3290:12321396,36344612 -g1,3290:12637542,36344612 -g1,3290:12953688,36344612 -g1,3290:13902125,36344612 -g1,3290:14218271,36344612 -g1,3290:14534417,36344612 -g1,3290:15482854,36344612 -g1,3290:15799000,36344612 -g1,3290:16115146,36344612 -h1,3290:16747437,36344612:0,0,0 -k1,3290:32583029,36344612:15835592 -g1,3290:32583029,36344612 -) -] -) -g1,3291:32583029,36426924 -g1,3291:6630773,36426924 -g1,3291:6630773,36426924 -g1,3291:32583029,36426924 -g1,3291:32583029,36426924 -) -h1,3291:6630773,36623532:0,0,0 -(1,3295:6630773,37945742:25952256,505283,134348 -h1,3294:6630773,37945742:983040,0,0 -k1,3294:8633553,37945742:201851 -k1,3294:10229355,37945742:201851 -k1,3294:12913053,37945742:201850 -k1,3294:15974240,37945742:201851 -k1,3294:18457399,37945742:201851 -k1,3294:19310678,37945742:201851 -k1,3294:22788674,37945742:201851 -k1,3294:26067440,37945742:201851 -k1,3294:27967328,37945742:201850 -k1,3294:30540927,37945742:201851 -k1,3294:31394206,37945742:201851 -k1,3295:32583029,37945742:0 -) -(1,3295:6630773,38787230:25952256,473825,7863 -k1,3295:32583029,38787230:24020910 -g1,3295:32583029,38787230 -) -v1,3297:6630773,39934130:0,393216,0 -(1,3331:6630773,45510161:25952256,5969247,196608 -g1,3331:6630773,45510161 -g1,3331:6630773,45510161 -g1,3331:6434165,45510161 -(1,3331:6434165,45510161:0,5969247,196608 -r1,3331:32779637,45510161:26345472,6165855,196608 -k1,3331:6434165,45510161:-26345472 -) -(1,3331:6434165,45510161:26345472,5969247,196608 -[1,3331:6630773,45510161:25952256,5772639,0 -(1,3299:6630773,40126019:25952256,388497,0 -(1,3298:6630773,40126019:0,0,0 -g1,3298:6630773,40126019 -g1,3298:6630773,40126019 -g1,3298:6303093,40126019 -(1,3298:6303093,40126019:0,0,0 -) -g1,3298:6630773,40126019 -) -g1,3299:7263065,40126019 -g1,3299:7895357,40126019 -h1,3299:8211503,40126019:0,0,0 -k1,3299:32583029,40126019:24371526 -g1,3299:32583029,40126019 -) -(1,3308:6630773,40857733:25952256,404226,82312 -(1,3301:6630773,40857733:0,0,0 -g1,3301:6630773,40857733 -g1,3301:6630773,40857733 -g1,3301:6303093,40857733 -(1,3301:6303093,40857733:0,0,0 -) -g1,3301:6630773,40857733 -) -g1,3308:7579210,40857733 -g1,3308:7895356,40857733 -g1,3308:8211502,40857733 -g1,3308:8527648,40857733 -g1,3308:8843794,40857733 -g1,3308:9159940,40857733 -g1,3308:10740669,40857733 -g1,3308:12321398,40857733 -g1,3308:13902127,40857733 -k1,3308:13902127,40857733:0 -h1,3308:15166710,40857733:0,0,0 -k1,3308:32583030,40857733:17416320 -g1,3308:32583030,40857733 -) -(1,3308:6630773,41523911:25952256,404226,82312 -h1,3308:6630773,41523911:0,0,0 -g1,3308:7579210,41523911 -g1,3308:9159938,41523911 -g1,3308:9476084,41523911 -g1,3308:9792230,41523911 -g1,3308:10108376,41523911 -g1,3308:10740668,41523911 -g1,3308:11056814,41523911 -g1,3308:11372960,41523911 -g1,3308:11689106,41523911 -g1,3308:12321398,41523911 -g1,3308:12637544,41523911 -g1,3308:12953690,41523911 -g1,3308:13902127,41523911 -g1,3308:14218273,41523911 -g1,3308:14534419,41523911 -h1,3308:15166710,41523911:0,0,0 -k1,3308:32583030,41523911:17416320 -g1,3308:32583030,41523911 -) -(1,3308:6630773,42190089:25952256,404226,82312 -h1,3308:6630773,42190089:0,0,0 -g1,3308:7579210,42190089 -g1,3308:9159938,42190089 -g1,3308:9476084,42190089 -g1,3308:9792230,42190089 -g1,3308:10108376,42190089 -g1,3308:10740668,42190089 -g1,3308:11056814,42190089 -g1,3308:11372960,42190089 -g1,3308:11689106,42190089 -g1,3308:12321398,42190089 -g1,3308:12637544,42190089 -g1,3308:12953690,42190089 -g1,3308:13902127,42190089 -g1,3308:14218273,42190089 -g1,3308:14534419,42190089 -h1,3308:15166710,42190089:0,0,0 -k1,3308:32583030,42190089:17416320 -g1,3308:32583030,42190089 -) -(1,3308:6630773,42856267:25952256,404226,82312 -h1,3308:6630773,42856267:0,0,0 -g1,3308:7579210,42856267 -g1,3308:9159938,42856267 -g1,3308:9476084,42856267 -g1,3308:9792230,42856267 -g1,3308:10108376,42856267 -g1,3308:10740668,42856267 -g1,3308:11056814,42856267 -g1,3308:11372960,42856267 -g1,3308:12321397,42856267 -g1,3308:12637543,42856267 -g1,3308:12953689,42856267 -g1,3308:13902126,42856267 -g1,3308:14218272,42856267 -g1,3308:14534418,42856267 -h1,3308:15166709,42856267:0,0,0 -k1,3308:32583029,42856267:17416320 -g1,3308:32583029,42856267 -) -(1,3308:6630773,43522445:25952256,404226,82312 -h1,3308:6630773,43522445:0,0,0 -g1,3308:7579210,43522445 -g1,3308:9159938,43522445 -g1,3308:9476084,43522445 -g1,3308:9792230,43522445 -g1,3308:10108376,43522445 -g1,3308:10740668,43522445 -g1,3308:11056814,43522445 -g1,3308:11372960,43522445 -g1,3308:12321397,43522445 -g1,3308:12637543,43522445 -g1,3308:12953689,43522445 -g1,3308:13902126,43522445 -g1,3308:14218272,43522445 -g1,3308:14534418,43522445 -h1,3308:15166709,43522445:0,0,0 -k1,3308:32583029,43522445:17416320 -g1,3308:32583029,43522445 -) -(1,3308:6630773,44188623:25952256,404226,82312 -h1,3308:6630773,44188623:0,0,0 -g1,3308:7579210,44188623 -g1,3308:9159938,44188623 -g1,3308:9476084,44188623 -g1,3308:9792230,44188623 -g1,3308:10108376,44188623 -g1,3308:10740668,44188623 -g1,3308:11056814,44188623 -g1,3308:11372960,44188623 -g1,3308:12321397,44188623 -g1,3308:12637543,44188623 -g1,3308:12953689,44188623 -g1,3308:13902126,44188623 -g1,3308:14218272,44188623 -g1,3308:14534418,44188623 -h1,3308:15166709,44188623:0,0,0 -k1,3308:32583029,44188623:17416320 -g1,3308:32583029,44188623 -) -(1,3310:6630773,45510161:25952256,388497,9436 -(1,3309:6630773,45510161:0,0,0 -g1,3309:6630773,45510161 -g1,3309:6630773,45510161 -g1,3309:6303093,45510161 -(1,3309:6303093,45510161:0,0,0 -) -g1,3309:6630773,45510161 -) -g1,3310:7263065,45510161 -g1,3310:7895357,45510161 -h1,3310:8843795,45510161:0,0,0 -k1,3310:32583029,45510161:23739234 -g1,3310:32583029,45510161 -) -] -) -g1,3331:32583029,45510161 -g1,3331:6630773,45510161 -g1,3331:6630773,45510161 -g1,3331:32583029,45510161 -g1,3331:32583029,45510161 -) -] -(1,3331:32583029,45706769:0,0,0 -g1,3331:32583029,45706769 -) -) -] -(1,3331:6630773,47279633:25952256,0,0 -h1,3331:6630773,47279633:25952256,0,0 -) -] -h1,3331:4262630,4025873:0,0,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3337:37855564,49800853:1179648,16384,0 +) +) +k1,3337:3078556,49800853:-34777008 +) +] +g1,3337:6630773,4812305 +g1,3337:6630773,4812305 +g1,3337:9472414,4812305 +g1,3337:10882093,4812305 +g1,3337:16529985,4812305 +g1,3337:18796220,4812305 +k1,3337:31786111,4812305:12989891 +) +) +] +[1,3337:6630773,45706769:25952256,40108032,0 +(1,3337:6630773,45706769:25952256,40108032,0 +(1,3337:6630773,45706769:0,0,0 +g1,3337:6630773,45706769 +) +[1,3337:6630773,45706769:25952256,40108032,0 +v1,3269:6630773,6254097:0,393216,0 +(1,3269:6630773,21080636:25952256,15219755,616038 +g1,3269:6630773,21080636 +(1,3269:6630773,21080636:25952256,15219755,616038 +(1,3269:6630773,21696674:25952256,15835793,0 +[1,3269:6630773,21696674:25952256,15835793,0 +(1,3269:6630773,21670460:25952256,15809579,0 +r1,3269:6656987,21670460:26214,15809579,0 +[1,3269:6656987,21670460:25899828,15809579,0 +(1,3269:6656987,21080636:25899828,14629931,0 +[1,3269:7246811,21080636:24720180,14629931,0 +v1,3241:7246811,6843921:0,393216,0 +(1,3249:7246811,9801709:24720180,3351004,196608 +g1,3249:7246811,9801709 +g1,3249:7246811,9801709 +g1,3249:7050203,9801709 +(1,3249:7050203,9801709:0,3351004,196608 +r1,3269:32163599,9801709:25113396,3547612,196608 +k1,3249:7050203,9801709:-25113396 +) +(1,3249:7050203,9801709:25113396,3351004,196608 +[1,3249:7246811,9801709:24720180,3154396,0 +(1,3243:7246811,7035810:24720180,388497,9436 +(1,3242:7246811,7035810:0,0,0 +g1,3242:7246811,7035810 +g1,3242:7246811,7035810 +g1,3242:6919131,7035810 +(1,3242:6919131,7035810:0,0,0 +) +g1,3242:7246811,7035810 +) +g1,3243:7879103,7035810 +g1,3243:8827541,7035810 +h1,3243:10092124,7035810:0,0,0 +k1,3243:31966992,7035810:21874868 +g1,3243:31966992,7035810 +) +(1,3244:7246811,7701988:24720180,404226,82312 +h1,3244:7246811,7701988:0,0,0 +g1,3244:8511394,7701988 +g1,3244:9459832,7701988 +g1,3244:12621289,7701988 +g1,3244:14202018,7701988 +g1,3244:14834310,7701988 +h1,3244:15466602,7701988:0,0,0 +k1,3244:31966991,7701988:16500389 +g1,3244:31966991,7701988 +) +(1,3245:7246811,8368166:24720180,404226,101187 +h1,3245:7246811,8368166:0,0,0 +g1,3245:8827540,8368166 +g1,3245:9775978,8368166 +g1,3245:12937435,8368166 +g1,3245:14518164,8368166 +g1,3245:15150456,8368166 +g1,3245:16098894,8368166 +g1,3245:17995768,8368166 +g1,3245:18628060,8368166 +h1,3245:20208789,8368166:0,0,0 +k1,3245:31966991,8368166:11758202 +g1,3245:31966991,8368166 +) +(1,3246:7246811,9034344:24720180,404226,82312 +h1,3246:7246811,9034344:0,0,0 +g1,3246:8511394,9034344 +g1,3246:9459832,9034344 +g1,3246:12621289,9034344 +g1,3246:14202018,9034344 +g1,3246:14834310,9034344 +h1,3246:15466602,9034344:0,0,0 +k1,3246:31966991,9034344:16500389 +g1,3246:31966991,9034344 +) +(1,3247:7246811,9700522:24720180,404226,101187 +h1,3247:7246811,9700522:0,0,0 +g1,3247:8827540,9700522 +g1,3247:9775978,9700522 +g1,3247:12937435,9700522 +g1,3247:14518164,9700522 +g1,3247:15150456,9700522 +g1,3247:16098894,9700522 +g1,3247:17995768,9700522 +g1,3247:18628060,9700522 +h1,3247:20208789,9700522:0,0,0 +k1,3247:31966991,9700522:11758202 +g1,3247:31966991,9700522 +) +] +) +g1,3249:31966991,9801709 +g1,3249:7246811,9801709 +g1,3249:7246811,9801709 +g1,3249:31966991,9801709 +g1,3249:31966991,9801709 +) +h1,3249:7246811,9998317:0,0,0 +v1,3253:7246811,11713071:0,393216,0 +(1,3260:7246811,14004681:24720180,2684826,196608 +g1,3260:7246811,14004681 +g1,3260:7246811,14004681 +g1,3260:7050203,14004681 +(1,3260:7050203,14004681:0,2684826,196608 +r1,3269:32163599,14004681:25113396,2881434,196608 +k1,3260:7050203,14004681:-25113396 +) +(1,3260:7050203,14004681:25113396,2684826,196608 +[1,3260:7246811,14004681:24720180,2488218,0 +(1,3255:7246811,11904960:24720180,388497,9436 +(1,3254:7246811,11904960:0,0,0 +g1,3254:7246811,11904960 +g1,3254:7246811,11904960 +g1,3254:6919131,11904960 +(1,3254:6919131,11904960:0,0,0 +) +g1,3254:7246811,11904960 +) +g1,3255:7879103,11904960 +g1,3255:8827541,11904960 +h1,3255:10092124,11904960:0,0,0 +k1,3255:31966992,11904960:21874868 +g1,3255:31966992,11904960 +) +(1,3256:7246811,12571138:24720180,404226,101187 +h1,3256:7246811,12571138:0,0,0 +g1,3256:8511394,12571138 +g1,3256:9459832,12571138 +g1,3256:12305143,12571138 +g1,3256:13569726,12571138 +g1,3256:14202018,12571138 +g1,3256:15782748,12571138 +h1,3256:16731185,12571138:0,0,0 +k1,3256:31966991,12571138:15235806 +g1,3256:31966991,12571138 +) +(1,3257:7246811,13237316:24720180,404226,101187 +h1,3257:7246811,13237316:0,0,0 +g1,3257:8511394,13237316 +g1,3257:9459832,13237316 +g1,3257:12305143,13237316 +g1,3257:13569726,13237316 +g1,3257:14202018,13237316 +g1,3257:15782748,13237316 +g1,3257:17047332,13237316 +g1,3257:19892643,13237316 +g1,3257:20524935,13237316 +g1,3257:24002539,13237316 +g1,3257:26531706,13237316 +h1,3257:28744726,13237316:0,0,0 +k1,3257:31966991,13237316:3222265 +g1,3257:31966991,13237316 +) +(1,3258:7246811,13903494:24720180,404226,101187 +h1,3258:7246811,13903494:0,0,0 +g1,3258:8511394,13903494 +g1,3258:9459832,13903494 +g1,3258:12305143,13903494 +g1,3258:13569726,13903494 +g1,3258:14202018,13903494 +g1,3258:15782748,13903494 +h1,3258:16731185,13903494:0,0,0 +k1,3258:31966991,13903494:15235806 +g1,3258:31966991,13903494 +) +] +) +g1,3260:31966991,14004681 +g1,3260:7246811,14004681 +g1,3260:7246811,14004681 +g1,3260:31966991,14004681 +g1,3260:31966991,14004681 +) +h1,3260:7246811,14201289:0,0,0 +(1,3265:7246811,15567065:24720180,505283,134348 +h1,3263:7246811,15567065:983040,0,0 +k1,3263:9205086,15567065:228780 +k1,3263:11302297,15567065:228780 +k1,3263:12815584,15567065:228781 +k1,3263:15352542,15567065:228780 +k1,3263:16772767,15567065:228780 +k1,3263:22277195,15567065:228780 +k1,3263:24485818,15567065:228780 +k1,3263:25706158,15567065:228780 +k1,3263:27001210,15567065:228781 +k1,3263:28249075,15567065:228780 +k1,3263:30131328,15567065:228780 +k1,3263:31966991,15567065:0 +) +(1,3265:7246811,16408553:24720180,505283,126483 +g1,3263:9135558,16408553 +g1,3263:14626164,16408553 +g1,3263:16805236,16408553 +g1,3263:17996025,16408553 +k1,3265:31966991,16408553:11063789 +g1,3265:31966991,16408553 +) +(1,3266:9389838,17774329:21790721,513147,126483 +(1,3265:9389838,17774329:0,477757,0 +g1,3265:9389838,17774329 +g1,3265:8079118,17774329 +g1,3265:8079118,17774329 +(1,3265:8079118,17774329:1310720,477757,0 +(1,3265:8079118,17774329:1048576,477757,0 +g1,3265:8341262,17774329 +(1,3265:8341262,17774329:572129,477757,0 +g1,3265:8341262,17774329 +) +) +) +g1,3265:9389838,17774329 +) +k1,3265:10682994,17774329:144310 +k1,3265:11846389,17774329:144310 +k1,3265:14753042,17774329:144310 +k1,3265:18934370,17774329:144310 +k1,3265:20270125,17774329:144310 +k1,3265:22230439,17774329:144311 +k1,3265:25159374,17774329:144310 +k1,3265:25955112,17774329:144310 +k1,3265:28467893,17774329:144310 +k1,3265:29989114,17774329:144310 +k1,3265:31180559,17774329:0 +) +(1,3266:9389838,18615817:21790721,473825,126483 +g1,3265:10377465,18615817 +k1,3266:31180559,18615817:16216229 +g1,3266:31180559,18615817 +) +(1,3267:9389838,19719449:21790721,505283,134348 +(1,3266:9389838,19719449:0,485622,0 +g1,3266:9389838,19719449 +g1,3266:8079118,19719449 +g1,3266:8079118,19719449 +(1,3266:8079118,19719449:1310720,485622,0 +(1,3266:8079118,19719449:1048576,485622,0 +g1,3266:8341262,19719449 +(1,3266:8341262,19719449:572129,485622,0 +g1,3266:8341262,19719449 +) +) +) +g1,3266:9389838,19719449 +) +k1,3266:12146234,19719449:241780 +k1,3266:12743875,19719449:241781 +k1,3266:15072977,19719449:241780 +k1,3266:16582224,19719449:241781 +k1,3266:17179864,19719449:241780 +k1,3266:19399521,19719449:241780 +k1,3266:21376695,19719449:241781 +(1,3266:21376695,19719449:0,452978,115847 +r1,3269:24196944,19719449:2820249,568825,115847 +k1,3266:21376695,19719449:-2820249 +) +(1,3266:21376695,19719449:2820249,452978,115847 +k1,3266:21376695,19719449:3277 +h1,3266:24193667,19719449:0,411205,112570 +) +k1,3266:24438724,19719449:241780 +k1,3266:25871950,19719449:241781 +(1,3266:25871950,19719449:0,452978,115847 +r1,3269:29747334,19719449:3875384,568825,115847 +k1,3266:25871950,19719449:-3875384 +) +(1,3266:25871950,19719449:3875384,452978,115847 +k1,3266:25871950,19719449:3277 +h1,3266:29744057,19719449:0,411205,112570 +) +k1,3266:29989114,19719449:241780 +k1,3266:31180559,19719449:0 +) +(1,3267:9389838,20560937:21790721,505283,126483 +g1,3266:12349443,20560937 +g1,3266:13567757,20560937 +g1,3266:16545713,20560937 +k1,3267:31180559,20560937:12450531 +g1,3267:31180559,20560937 +) +] +) +] +r1,3269:32583029,21670460:26214,15809579,0 +) +] +) +) +g1,3269:32583029,21080636 +) +h1,3269:6630773,21696674:0,0,0 +(1,3272:6630773,23018884:25952256,513147,126483 +h1,3271:6630773,23018884:983040,0,0 +k1,3271:10939261,23018884:133845 +k1,3271:12020756,23018884:133844 +k1,3271:14888108,23018884:133845 +k1,3271:16013513,23018884:133845 +k1,3271:18931326,23018884:133844 +k1,3271:19681209,23018884:133845 +k1,3271:20403567,23018884:133845 +k1,3271:21223574,23018884:133845 +k1,3271:24090925,23018884:133844 +k1,3271:25216330,23018884:133845 +k1,3271:26863401,23018884:133845 +k1,3271:27613283,23018884:133844 +k1,3271:29498905,23018884:133845 +k1,3271:32583029,23018884:0 +) +(1,3272:6630773,23860372:25952256,505283,134348 +k1,3271:10452341,23860372:206602 +k1,3271:11612491,23860372:206601 +k1,3271:12951555,23860372:206602 +k1,3271:14224428,23860372:206602 +k1,3271:17100310,23860372:206601 +k1,3271:18945967,23860372:206602 +k1,3271:19918685,23860372:206602 +k1,3271:21696839,23860372:206601 +k1,3271:23279042,23860372:206602 +(1,3271:23279042,23860372:0,452978,115847 +r1,3271:24340731,23860372:1061689,568825,115847 +k1,3271:23279042,23860372:-1061689 +) +(1,3271:23279042,23860372:1061689,452978,115847 +k1,3271:23279042,23860372:3277 +h1,3271:24337454,23860372:0,411205,112570 +) +k1,3271:24547333,23860372:206602 +k1,3271:25945379,23860372:206601 +k1,3271:27844121,23860372:206602 +k1,3271:32583029,23860372:0 +) +(1,3272:6630773,24701860:25952256,513147,134348 +k1,3271:7521538,24701860:231473 +k1,3271:11029155,24701860:231472 +k1,3271:14511214,24701860:231473 +k1,3271:17532554,24701860:231472 +(1,3271:17532554,24701860:0,452978,115847 +r1,3271:18594243,24701860:1061689,568825,115847 +k1,3271:17532554,24701860:-1061689 +) +(1,3271:17532554,24701860:1061689,452978,115847 +k1,3271:17532554,24701860:3277 +h1,3271:18590966,24701860:0,411205,112570 +) +k1,3271:18825716,24701860:231473 +k1,3271:22526664,24701860:231472 +k1,3271:23113997,24701860:231473 +k1,3271:25606461,24701860:231472 +k1,3271:26599462,24701860:231473 +k1,3271:29869838,24701860:231472 +k1,3271:32583029,24701860:0 +) +(1,3272:6630773,25543348:25952256,505283,7863 +g1,3271:8021447,25543348 +k1,3272:32583029,25543348:22853714 +g1,3272:32583029,25543348 +) +v1,3274:6630773,26690248:0,393216,0 +(1,3297:6630773,36426924:25952256,10129892,196608 +g1,3297:6630773,36426924 +g1,3297:6630773,36426924 +g1,3297:6434165,36426924 +(1,3297:6434165,36426924:0,10129892,196608 +r1,3297:32779637,36426924:26345472,10326500,196608 +k1,3297:6434165,36426924:-26345472 +) +(1,3297:6434165,36426924:26345472,10129892,196608 +[1,3297:6630773,36426924:25952256,9933284,0 +(1,3276:6630773,26897866:25952256,404226,82312 +(1,3275:6630773,26897866:0,0,0 +g1,3275:6630773,26897866 +g1,3275:6630773,26897866 +g1,3275:6303093,26897866 +(1,3275:6303093,26897866:0,0,0 +) +g1,3275:6630773,26897866 +) +g1,3276:7263065,26897866 +g1,3276:8211503,26897866 +g1,3276:12321398,26897866 +g1,3276:13902127,26897866 +g1,3276:14534419,26897866 +h1,3276:15166711,26897866:0,0,0 +k1,3276:32583029,26897866:17416318 +g1,3276:32583029,26897866 +) +(1,3277:6630773,27564044:25952256,328204,0 +h1,3277:6630773,27564044:0,0,0 +h1,3277:6946919,27564044:0,0,0 +k1,3277:32583029,27564044:25636110 +g1,3277:32583029,27564044 +) +(1,3286:6630773,28295758:25952256,404226,82312 +(1,3279:6630773,28295758:0,0,0 +g1,3279:6630773,28295758 +g1,3279:6630773,28295758 +g1,3279:6303093,28295758 +(1,3279:6303093,28295758:0,0,0 +) +g1,3279:6630773,28295758 +) +g1,3286:7579210,28295758 +g1,3286:7895356,28295758 +g1,3286:8211502,28295758 +g1,3286:8527648,28295758 +g1,3286:8843794,28295758 +g1,3286:9159940,28295758 +g1,3286:10740669,28295758 +g1,3286:12321398,28295758 +g1,3286:13902127,28295758 +k1,3286:13902127,28295758:0 +h1,3286:15166710,28295758:0,0,0 +k1,3286:32583030,28295758:17416320 +g1,3286:32583030,28295758 +) +(1,3286:6630773,28961936:25952256,404226,82312 +h1,3286:6630773,28961936:0,0,0 +g1,3286:7579210,28961936 +g1,3286:9159938,28961936 +g1,3286:9476084,28961936 +g1,3286:9792230,28961936 +g1,3286:10108376,28961936 +g1,3286:10740668,28961936 +g1,3286:11056814,28961936 +g1,3286:11372960,28961936 +g1,3286:11689106,28961936 +g1,3286:12321398,28961936 +g1,3286:12637544,28961936 +g1,3286:12953690,28961936 +g1,3286:13902127,28961936 +g1,3286:14218273,28961936 +g1,3286:14534419,28961936 +h1,3286:15166710,28961936:0,0,0 +k1,3286:32583030,28961936:17416320 +g1,3286:32583030,28961936 +) +(1,3286:6630773,29628114:25952256,404226,82312 +h1,3286:6630773,29628114:0,0,0 +g1,3286:7579210,29628114 +g1,3286:9159938,29628114 +g1,3286:9476084,29628114 +g1,3286:9792230,29628114 +g1,3286:10108376,29628114 +g1,3286:10740668,29628114 +g1,3286:11056814,29628114 +g1,3286:11372960,29628114 +g1,3286:11689106,29628114 +g1,3286:12321398,29628114 +g1,3286:12637544,29628114 +g1,3286:12953690,29628114 +g1,3286:13902127,29628114 +g1,3286:14218273,29628114 +g1,3286:14534419,29628114 +h1,3286:15166710,29628114:0,0,0 +k1,3286:32583030,29628114:17416320 +g1,3286:32583030,29628114 +) +(1,3286:6630773,30294292:25952256,404226,82312 +h1,3286:6630773,30294292:0,0,0 +g1,3286:7579210,30294292 +g1,3286:9159938,30294292 +g1,3286:9476084,30294292 +g1,3286:9792230,30294292 +g1,3286:10108376,30294292 +g1,3286:10740668,30294292 +g1,3286:11056814,30294292 +g1,3286:11372960,30294292 +g1,3286:11689106,30294292 +g1,3286:12321398,30294292 +g1,3286:12637544,30294292 +g1,3286:12953690,30294292 +g1,3286:13902127,30294292 +g1,3286:14218273,30294292 +g1,3286:14534419,30294292 +h1,3286:15166710,30294292:0,0,0 +k1,3286:32583030,30294292:17416320 +g1,3286:32583030,30294292 +) +(1,3286:6630773,30960470:25952256,404226,82312 +h1,3286:6630773,30960470:0,0,0 +g1,3286:7579210,30960470 +g1,3286:9159938,30960470 +g1,3286:9476084,30960470 +g1,3286:9792230,30960470 +g1,3286:10108376,30960470 +g1,3286:10740668,30960470 +g1,3286:11056814,30960470 +g1,3286:11372960,30960470 +g1,3286:11689106,30960470 +g1,3286:12321398,30960470 +g1,3286:12637544,30960470 +g1,3286:12953690,30960470 +g1,3286:13902127,30960470 +g1,3286:14218273,30960470 +g1,3286:14534419,30960470 +h1,3286:15166710,30960470:0,0,0 +k1,3286:32583030,30960470:17416320 +g1,3286:32583030,30960470 +) +(1,3286:6630773,31626648:25952256,404226,82312 +h1,3286:6630773,31626648:0,0,0 +g1,3286:7579210,31626648 +g1,3286:9159938,31626648 +g1,3286:9476084,31626648 +g1,3286:9792230,31626648 +g1,3286:10108376,31626648 +g1,3286:10740668,31626648 +g1,3286:11056814,31626648 +g1,3286:11372960,31626648 +g1,3286:12321397,31626648 +g1,3286:12637543,31626648 +g1,3286:12953689,31626648 +g1,3286:13902126,31626648 +g1,3286:14218272,31626648 +g1,3286:14534418,31626648 +h1,3286:15166709,31626648:0,0,0 +k1,3286:32583029,31626648:17416320 +g1,3286:32583029,31626648 +) +(1,3288:6630773,32948186:25952256,404226,76021 +(1,3287:6630773,32948186:0,0,0 +g1,3287:6630773,32948186 +g1,3287:6630773,32948186 +g1,3287:6303093,32948186 +(1,3287:6303093,32948186:0,0,0 +) +g1,3287:6630773,32948186 +) +k1,3288:6630773,32948186:0 +h1,3288:7895356,32948186:0,0,0 +k1,3288:32583028,32948186:24687672 +g1,3288:32583028,32948186 +) +(1,3296:6630773,33679900:25952256,404226,82312 +(1,3290:6630773,33679900:0,0,0 +g1,3290:6630773,33679900 +g1,3290:6630773,33679900 +g1,3290:6303093,33679900 +(1,3290:6303093,33679900:0,0,0 +) +g1,3290:6630773,33679900 +) +g1,3296:7579210,33679900 +g1,3296:7895356,33679900 +g1,3296:8211502,33679900 +g1,3296:8527648,33679900 +g1,3296:8843794,33679900 +g1,3296:9159940,33679900 +g1,3296:10740669,33679900 +g1,3296:12321398,33679900 +g1,3296:13902127,33679900 +g1,3296:15482856,33679900 +k1,3296:15482856,33679900:0 +h1,3296:16747439,33679900:0,0,0 +k1,3296:32583029,33679900:15835590 +g1,3296:32583029,33679900 +) +(1,3296:6630773,34346078:25952256,404226,82312 +h1,3296:6630773,34346078:0,0,0 +g1,3296:7579210,34346078 +g1,3296:9159938,34346078 +g1,3296:9476084,34346078 +g1,3296:9792230,34346078 +g1,3296:10108376,34346078 +g1,3296:10740668,34346078 +g1,3296:11056814,34346078 +g1,3296:11372960,34346078 +g1,3296:11689106,34346078 +g1,3296:12321398,34346078 +g1,3296:12637544,34346078 +g1,3296:12953690,34346078 +g1,3296:13269836,34346078 +g1,3296:13902128,34346078 +g1,3296:14218274,34346078 +g1,3296:14534420,34346078 +g1,3296:14850566,34346078 +g1,3296:15482858,34346078 +g1,3296:15799004,34346078 +g1,3296:16115150,34346078 +g1,3296:16431296,34346078 +h1,3296:16747442,34346078:0,0,0 +k1,3296:32583029,34346078:15835587 +g1,3296:32583029,34346078 +) +(1,3296:6630773,35012256:25952256,404226,82312 +h1,3296:6630773,35012256:0,0,0 +g1,3296:7579210,35012256 +g1,3296:9159938,35012256 +g1,3296:9476084,35012256 +g1,3296:9792230,35012256 +g1,3296:10108376,35012256 +g1,3296:10740668,35012256 +g1,3296:11056814,35012256 +g1,3296:11372960,35012256 +g1,3296:11689106,35012256 +g1,3296:12321398,35012256 +g1,3296:12637544,35012256 +g1,3296:12953690,35012256 +g1,3296:13269836,35012256 +g1,3296:13902128,35012256 +g1,3296:14218274,35012256 +g1,3296:14534420,35012256 +g1,3296:14850566,35012256 +g1,3296:15482858,35012256 +g1,3296:15799004,35012256 +g1,3296:16115150,35012256 +h1,3296:16747441,35012256:0,0,0 +k1,3296:32583029,35012256:15835588 +g1,3296:32583029,35012256 +) +(1,3296:6630773,35678434:25952256,404226,82312 +h1,3296:6630773,35678434:0,0,0 +g1,3296:7579210,35678434 +g1,3296:9159938,35678434 +g1,3296:9476084,35678434 +g1,3296:9792230,35678434 +g1,3296:10740667,35678434 +g1,3296:11056813,35678434 +g1,3296:11372959,35678434 +g1,3296:12321396,35678434 +g1,3296:12637542,35678434 +g1,3296:12953688,35678434 +g1,3296:13902125,35678434 +g1,3296:14218271,35678434 +g1,3296:14534417,35678434 +g1,3296:15482854,35678434 +g1,3296:15799000,35678434 +g1,3296:16115146,35678434 +h1,3296:16747437,35678434:0,0,0 +k1,3296:32583029,35678434:15835592 +g1,3296:32583029,35678434 +) +(1,3296:6630773,36344612:25952256,404226,82312 +h1,3296:6630773,36344612:0,0,0 +g1,3296:7579210,36344612 +g1,3296:9159938,36344612 +g1,3296:9476084,36344612 +g1,3296:9792230,36344612 +g1,3296:10740667,36344612 +g1,3296:11056813,36344612 +g1,3296:11372959,36344612 +g1,3296:12321396,36344612 +g1,3296:12637542,36344612 +g1,3296:12953688,36344612 +g1,3296:13902125,36344612 +g1,3296:14218271,36344612 +g1,3296:14534417,36344612 +g1,3296:15482854,36344612 +g1,3296:15799000,36344612 +g1,3296:16115146,36344612 +h1,3296:16747437,36344612:0,0,0 +k1,3296:32583029,36344612:15835592 +g1,3296:32583029,36344612 +) +] +) +g1,3297:32583029,36426924 +g1,3297:6630773,36426924 +g1,3297:6630773,36426924 +g1,3297:32583029,36426924 +g1,3297:32583029,36426924 +) +h1,3297:6630773,36623532:0,0,0 +(1,3301:6630773,37945742:25952256,505283,134348 +h1,3300:6630773,37945742:983040,0,0 +k1,3300:8633553,37945742:201851 +k1,3300:10229355,37945742:201851 +k1,3300:12913053,37945742:201850 +k1,3300:15974240,37945742:201851 +k1,3300:18457399,37945742:201851 +k1,3300:19310678,37945742:201851 +k1,3300:22788674,37945742:201851 +k1,3300:26067440,37945742:201851 +k1,3300:27967328,37945742:201850 +k1,3300:30540927,37945742:201851 +k1,3300:31394206,37945742:201851 +k1,3301:32583029,37945742:0 +) +(1,3301:6630773,38787230:25952256,473825,7863 +k1,3301:32583029,38787230:24020910 +g1,3301:32583029,38787230 +) +v1,3303:6630773,39934130:0,393216,0 +(1,3337:6630773,45510161:25952256,5969247,196608 +g1,3337:6630773,45510161 +g1,3337:6630773,45510161 +g1,3337:6434165,45510161 +(1,3337:6434165,45510161:0,5969247,196608 +r1,3337:32779637,45510161:26345472,6165855,196608 +k1,3337:6434165,45510161:-26345472 +) +(1,3337:6434165,45510161:26345472,5969247,196608 +[1,3337:6630773,45510161:25952256,5772639,0 +(1,3305:6630773,40126019:25952256,388497,0 +(1,3304:6630773,40126019:0,0,0 +g1,3304:6630773,40126019 +g1,3304:6630773,40126019 +g1,3304:6303093,40126019 +(1,3304:6303093,40126019:0,0,0 +) +g1,3304:6630773,40126019 +) +g1,3305:7263065,40126019 +g1,3305:7895357,40126019 +h1,3305:8211503,40126019:0,0,0 +k1,3305:32583029,40126019:24371526 +g1,3305:32583029,40126019 +) +(1,3314:6630773,40857733:25952256,404226,82312 +(1,3307:6630773,40857733:0,0,0 +g1,3307:6630773,40857733 +g1,3307:6630773,40857733 +g1,3307:6303093,40857733 +(1,3307:6303093,40857733:0,0,0 +) +g1,3307:6630773,40857733 +) +g1,3314:7579210,40857733 +g1,3314:7895356,40857733 +g1,3314:8211502,40857733 +g1,3314:8527648,40857733 +g1,3314:8843794,40857733 +g1,3314:9159940,40857733 +g1,3314:10740669,40857733 +g1,3314:12321398,40857733 +g1,3314:13902127,40857733 +k1,3314:13902127,40857733:0 +h1,3314:15166710,40857733:0,0,0 +k1,3314:32583030,40857733:17416320 +g1,3314:32583030,40857733 +) +(1,3314:6630773,41523911:25952256,404226,82312 +h1,3314:6630773,41523911:0,0,0 +g1,3314:7579210,41523911 +g1,3314:9159938,41523911 +g1,3314:9476084,41523911 +g1,3314:9792230,41523911 +g1,3314:10108376,41523911 +g1,3314:10740668,41523911 +g1,3314:11056814,41523911 +g1,3314:11372960,41523911 +g1,3314:11689106,41523911 +g1,3314:12321398,41523911 +g1,3314:12637544,41523911 +g1,3314:12953690,41523911 +g1,3314:13902127,41523911 +g1,3314:14218273,41523911 +g1,3314:14534419,41523911 +h1,3314:15166710,41523911:0,0,0 +k1,3314:32583030,41523911:17416320 +g1,3314:32583030,41523911 +) +(1,3314:6630773,42190089:25952256,404226,82312 +h1,3314:6630773,42190089:0,0,0 +g1,3314:7579210,42190089 +g1,3314:9159938,42190089 +g1,3314:9476084,42190089 +g1,3314:9792230,42190089 +g1,3314:10108376,42190089 +g1,3314:10740668,42190089 +g1,3314:11056814,42190089 +g1,3314:11372960,42190089 +g1,3314:11689106,42190089 +g1,3314:12321398,42190089 +g1,3314:12637544,42190089 +g1,3314:12953690,42190089 +g1,3314:13902127,42190089 +g1,3314:14218273,42190089 +g1,3314:14534419,42190089 +h1,3314:15166710,42190089:0,0,0 +k1,3314:32583030,42190089:17416320 +g1,3314:32583030,42190089 +) +(1,3314:6630773,42856267:25952256,404226,82312 +h1,3314:6630773,42856267:0,0,0 +g1,3314:7579210,42856267 +g1,3314:9159938,42856267 +g1,3314:9476084,42856267 +g1,3314:9792230,42856267 +g1,3314:10108376,42856267 +g1,3314:10740668,42856267 +g1,3314:11056814,42856267 +g1,3314:11372960,42856267 +g1,3314:12321397,42856267 +g1,3314:12637543,42856267 +g1,3314:12953689,42856267 +g1,3314:13902126,42856267 +g1,3314:14218272,42856267 +g1,3314:14534418,42856267 +h1,3314:15166709,42856267:0,0,0 +k1,3314:32583029,42856267:17416320 +g1,3314:32583029,42856267 +) +(1,3314:6630773,43522445:25952256,404226,82312 +h1,3314:6630773,43522445:0,0,0 +g1,3314:7579210,43522445 +g1,3314:9159938,43522445 +g1,3314:9476084,43522445 +g1,3314:9792230,43522445 +g1,3314:10108376,43522445 +g1,3314:10740668,43522445 +g1,3314:11056814,43522445 +g1,3314:11372960,43522445 +g1,3314:12321397,43522445 +g1,3314:12637543,43522445 +g1,3314:12953689,43522445 +g1,3314:13902126,43522445 +g1,3314:14218272,43522445 +g1,3314:14534418,43522445 +h1,3314:15166709,43522445:0,0,0 +k1,3314:32583029,43522445:17416320 +g1,3314:32583029,43522445 +) +(1,3314:6630773,44188623:25952256,404226,82312 +h1,3314:6630773,44188623:0,0,0 +g1,3314:7579210,44188623 +g1,3314:9159938,44188623 +g1,3314:9476084,44188623 +g1,3314:9792230,44188623 +g1,3314:10108376,44188623 +g1,3314:10740668,44188623 +g1,3314:11056814,44188623 +g1,3314:11372960,44188623 +g1,3314:12321397,44188623 +g1,3314:12637543,44188623 +g1,3314:12953689,44188623 +g1,3314:13902126,44188623 +g1,3314:14218272,44188623 +g1,3314:14534418,44188623 +h1,3314:15166709,44188623:0,0,0 +k1,3314:32583029,44188623:17416320 +g1,3314:32583029,44188623 +) +(1,3316:6630773,45510161:25952256,388497,9436 +(1,3315:6630773,45510161:0,0,0 +g1,3315:6630773,45510161 +g1,3315:6630773,45510161 +g1,3315:6303093,45510161 +(1,3315:6303093,45510161:0,0,0 +) +g1,3315:6630773,45510161 +) +g1,3316:7263065,45510161 +g1,3316:7895357,45510161 +h1,3316:8843795,45510161:0,0,0 +k1,3316:32583029,45510161:23739234 +g1,3316:32583029,45510161 +) +] +) +g1,3337:32583029,45510161 +g1,3337:6630773,45510161 +g1,3337:6630773,45510161 +g1,3337:32583029,45510161 +g1,3337:32583029,45510161 +) +] +(1,3337:32583029,45706769:0,0,0 +g1,3337:32583029,45706769 +) +) +] +(1,3337:6630773,47279633:25952256,0,0 +h1,3337:6630773,47279633:25952256,0,0 +) +] +h1,3337:4262630,4025873:0,0,0 ] !26365 }66 -Input:427:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:428:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:429:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:430:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:431:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:432:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!557 {67 -[1,3392:4262630,47279633:28320399,43253760,0 -(1,3392:4262630,4025873:0,0,0 -[1,3392:-473657,4025873:25952256,0,0 -(1,3392:-473657,-710414:25952256,0,0 -h1,3392:-473657,-710414:0,0,0 -(1,3392:-473657,-710414:0,0,0 -(1,3392:-473657,-710414:0,0,0 -g1,3392:-473657,-710414 -(1,3392:-473657,-710414:65781,0,65781 -g1,3392:-407876,-710414 -[1,3392:-407876,-644633:0,0,0 +[1,3398:4262630,47279633:28320399,43253760,0 +(1,3398:4262630,4025873:0,0,0 +[1,3398:-473657,4025873:25952256,0,0 +(1,3398:-473657,-710414:25952256,0,0 +h1,3398:-473657,-710414:0,0,0 +(1,3398:-473657,-710414:0,0,0 +(1,3398:-473657,-710414:0,0,0 +g1,3398:-473657,-710414 +(1,3398:-473657,-710414:65781,0,65781 +g1,3398:-407876,-710414 +[1,3398:-407876,-644633:0,0,0 ] ) -k1,3392:-473657,-710414:-65781 +k1,3398:-473657,-710414:-65781 ) ) -k1,3392:25478599,-710414:25952256 -g1,3392:25478599,-710414 +k1,3398:25478599,-710414:25952256 +g1,3398:25478599,-710414 ) ] ) -[1,3392:6630773,47279633:25952256,43253760,0 -[1,3392:6630773,4812305:25952256,786432,0 -(1,3392:6630773,4812305:25952256,505283,134348 -(1,3392:6630773,4812305:25952256,505283,134348 -g1,3392:3078558,4812305 -[1,3392:3078558,4812305:0,0,0 -(1,3392:3078558,2439708:0,1703936,0 -k1,3392:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3392:2537886,2439708:1179648,16384,0 +[1,3398:6630773,47279633:25952256,43253760,0 +[1,3398:6630773,4812305:25952256,786432,0 +(1,3398:6630773,4812305:25952256,505283,134348 +(1,3398:6630773,4812305:25952256,505283,134348 +g1,3398:3078558,4812305 +[1,3398:3078558,4812305:0,0,0 +(1,3398:3078558,2439708:0,1703936,0 +k1,3398:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3398:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3392:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3398:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3392:3078558,4812305:0,0,0 -(1,3392:3078558,2439708:0,1703936,0 -g1,3392:29030814,2439708 -g1,3392:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3392:36151628,1915420:16384,1179648,0 +[1,3398:3078558,4812305:0,0,0 +(1,3398:3078558,2439708:0,1703936,0 +g1,3398:29030814,2439708 +g1,3398:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3398:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3392:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3398:37855564,2439708:1179648,16384,0 ) ) -k1,3392:3078556,2439708:-34777008 +k1,3398:3078556,2439708:-34777008 ) ] -[1,3392:3078558,4812305:0,0,0 -(1,3392:3078558,49800853:0,16384,2228224 -k1,3392:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3392:2537886,49800853:1179648,16384,0 +[1,3398:3078558,4812305:0,0,0 +(1,3398:3078558,49800853:0,16384,2228224 +k1,3398:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3398:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3392:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3398:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3392:3078558,4812305:0,0,0 -(1,3392:3078558,49800853:0,16384,2228224 -g1,3392:29030814,49800853 -g1,3392:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3392:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3392:37855564,49800853:1179648,16384,0 -) -) -k1,3392:3078556,49800853:-34777008 -) -] -g1,3392:6630773,4812305 -k1,3392:19562994,4812305:12135303 -g1,3392:20949735,4812305 -g1,3392:21598541,4812305 -g1,3392:24912696,4812305 -g1,3392:27600327,4812305 -g1,3392:29010006,4812305 -) -) -] -[1,3392:6630773,45706769:25952256,40108032,0 -(1,3392:6630773,45706769:25952256,40108032,0 -(1,3392:6630773,45706769:0,0,0 -g1,3392:6630773,45706769 -) -[1,3392:6630773,45706769:25952256,40108032,0 -v1,3331:6630773,6254097:0,393216,0 -(1,3331:6630773,15259059:25952256,9398178,196608 -g1,3331:6630773,15259059 -g1,3331:6630773,15259059 -g1,3331:6434165,15259059 -(1,3331:6434165,15259059:0,9398178,196608 -r1,3331:32779637,15259059:26345472,9594786,196608 -k1,3331:6434165,15259059:-26345472 -) -(1,3331:6434165,15259059:26345472,9398178,196608 -[1,3331:6630773,15259059:25952256,9201570,0 -(1,3319:6630773,6461715:25952256,404226,82312 -(1,3312:6630773,6461715:0,0,0 -g1,3312:6630773,6461715 -g1,3312:6630773,6461715 -g1,3312:6303093,6461715 -(1,3312:6303093,6461715:0,0,0 -) -g1,3312:6630773,6461715 -) -g1,3319:7579210,6461715 -g1,3319:7895356,6461715 -g1,3319:8211502,6461715 -g1,3319:8527648,6461715 -g1,3319:8843794,6461715 -g1,3319:9159940,6461715 -g1,3319:10740669,6461715 -g1,3319:12321398,6461715 -g1,3319:13902127,6461715 -k1,3319:13902127,6461715:0 -h1,3319:15166710,6461715:0,0,0 -k1,3319:32583030,6461715:17416320 -g1,3319:32583030,6461715 -) -(1,3319:6630773,7127893:25952256,404226,82312 -h1,3319:6630773,7127893:0,0,0 -g1,3319:7579210,7127893 -g1,3319:9159938,7127893 -g1,3319:9476084,7127893 -g1,3319:9792230,7127893 -g1,3319:10108376,7127893 -g1,3319:10740668,7127893 -g1,3319:11056814,7127893 -g1,3319:11372960,7127893 -g1,3319:11689106,7127893 -g1,3319:12321398,7127893 -g1,3319:12637544,7127893 -g1,3319:12953690,7127893 -g1,3319:13269836,7127893 -g1,3319:13902128,7127893 -g1,3319:14218274,7127893 -g1,3319:14534420,7127893 -h1,3319:15166711,7127893:0,0,0 -k1,3319:32583029,7127893:17416318 -g1,3319:32583029,7127893 -) -(1,3319:6630773,7794071:25952256,404226,82312 -h1,3319:6630773,7794071:0,0,0 -g1,3319:7579210,7794071 -g1,3319:9159938,7794071 -g1,3319:9476084,7794071 -g1,3319:9792230,7794071 -g1,3319:10108376,7794071 -g1,3319:10740668,7794071 -g1,3319:11056814,7794071 -g1,3319:11372960,7794071 -g1,3319:11689106,7794071 -g1,3319:12321398,7794071 -g1,3319:12637544,7794071 -g1,3319:12953690,7794071 -g1,3319:13902127,7794071 -g1,3319:14218273,7794071 -g1,3319:14534419,7794071 -g1,3319:14850565,7794071 -h1,3319:15166711,7794071:0,0,0 -k1,3319:32583029,7794071:17416318 -g1,3319:32583029,7794071 -) -(1,3319:6630773,8460249:25952256,404226,82312 -h1,3319:6630773,8460249:0,0,0 -g1,3319:7579210,8460249 -g1,3319:9159938,8460249 -g1,3319:9476084,8460249 -g1,3319:9792230,8460249 -g1,3319:10108376,8460249 -g1,3319:10740668,8460249 -g1,3319:11056814,8460249 -g1,3319:11372960,8460249 -g1,3319:11689106,8460249 -g1,3319:12321398,8460249 -g1,3319:12637544,8460249 -g1,3319:12953690,8460249 -g1,3319:13269836,8460249 -g1,3319:13902128,8460249 -g1,3319:14218274,8460249 -g1,3319:14534420,8460249 -h1,3319:15166711,8460249:0,0,0 -k1,3319:32583029,8460249:17416318 -g1,3319:32583029,8460249 -) -(1,3319:6630773,9126427:25952256,404226,82312 -h1,3319:6630773,9126427:0,0,0 -g1,3319:7579210,9126427 -g1,3319:9159938,9126427 -g1,3319:9476084,9126427 -g1,3319:9792230,9126427 -g1,3319:10108376,9126427 -g1,3319:10740668,9126427 -g1,3319:11056814,9126427 -g1,3319:11372960,9126427 -g1,3319:11689106,9126427 -g1,3319:12321398,9126427 -g1,3319:12637544,9126427 -g1,3319:12953690,9126427 -g1,3319:13902127,9126427 -g1,3319:14218273,9126427 -g1,3319:14534419,9126427 -g1,3319:14850565,9126427 -h1,3319:15166711,9126427:0,0,0 -k1,3319:32583029,9126427:17416318 -g1,3319:32583029,9126427 -) -(1,3319:6630773,9792605:25952256,404226,82312 -h1,3319:6630773,9792605:0,0,0 -g1,3319:7579210,9792605 -g1,3319:9159938,9792605 -g1,3319:9476084,9792605 -g1,3319:9792230,9792605 -g1,3319:10108376,9792605 -g1,3319:10740668,9792605 -g1,3319:11056814,9792605 -g1,3319:11372960,9792605 -g1,3319:12321397,9792605 -g1,3319:12637543,9792605 -g1,3319:12953689,9792605 -g1,3319:13269835,9792605 -g1,3319:13902127,9792605 -g1,3319:14218273,9792605 -g1,3319:14534419,9792605 -h1,3319:15166710,9792605:0,0,0 -k1,3319:32583030,9792605:17416320 -g1,3319:32583030,9792605 -) -(1,3321:6630773,11114143:25952256,388497,9436 -(1,3320:6630773,11114143:0,0,0 -g1,3320:6630773,11114143 -g1,3320:6630773,11114143 -g1,3320:6303093,11114143 -(1,3320:6303093,11114143:0,0,0 -) -g1,3320:6630773,11114143 -) -g1,3321:7263065,11114143 -g1,3321:7895357,11114143 -h1,3321:8843795,11114143:0,0,0 -k1,3321:32583029,11114143:23739234 -g1,3321:32583029,11114143 -) -(1,3330:6630773,11845857:25952256,404226,82312 -(1,3323:6630773,11845857:0,0,0 -g1,3323:6630773,11845857 -g1,3323:6630773,11845857 -g1,3323:6303093,11845857 -(1,3323:6303093,11845857:0,0,0 -) -g1,3323:6630773,11845857 -) -g1,3330:7579210,11845857 -g1,3330:7895356,11845857 -g1,3330:8211502,11845857 -g1,3330:8527648,11845857 -g1,3330:8843794,11845857 -g1,3330:9159940,11845857 -g1,3330:10740669,11845857 -g1,3330:12321398,11845857 -g1,3330:13902127,11845857 -k1,3330:13902127,11845857:0 -h1,3330:15166710,11845857:0,0,0 -k1,3330:32583030,11845857:17416320 -g1,3330:32583030,11845857 -) -(1,3330:6630773,12512035:25952256,404226,82312 -h1,3330:6630773,12512035:0,0,0 -g1,3330:7579210,12512035 -g1,3330:9159938,12512035 -g1,3330:9476084,12512035 -g1,3330:9792230,12512035 -g1,3330:10108376,12512035 -g1,3330:10740668,12512035 -g1,3330:11056814,12512035 -g1,3330:11372960,12512035 -g1,3330:11689106,12512035 -g1,3330:12321398,12512035 -g1,3330:12637544,12512035 -g1,3330:12953690,12512035 -g1,3330:13902127,12512035 -g1,3330:14218273,12512035 -g1,3330:14534419,12512035 -g1,3330:14850565,12512035 -h1,3330:15166711,12512035:0,0,0 -k1,3330:32583029,12512035:17416318 -g1,3330:32583029,12512035 -) -(1,3330:6630773,13178213:25952256,404226,82312 -h1,3330:6630773,13178213:0,0,0 -g1,3330:7579210,13178213 -g1,3330:9159938,13178213 -g1,3330:9476084,13178213 -g1,3330:9792230,13178213 -g1,3330:10108376,13178213 -g1,3330:10740668,13178213 -g1,3330:11056814,13178213 -g1,3330:11372960,13178213 -g1,3330:11689106,13178213 -g1,3330:12321398,13178213 -g1,3330:12637544,13178213 -g1,3330:12953690,13178213 -g1,3330:13269836,13178213 -g1,3330:13902128,13178213 -g1,3330:14218274,13178213 -g1,3330:14534420,13178213 -h1,3330:15166711,13178213:0,0,0 -k1,3330:32583029,13178213:17416318 -g1,3330:32583029,13178213 -) -(1,3330:6630773,13844391:25952256,404226,82312 -h1,3330:6630773,13844391:0,0,0 -g1,3330:7579210,13844391 -g1,3330:9159938,13844391 -g1,3330:9476084,13844391 -g1,3330:9792230,13844391 -g1,3330:10108376,13844391 -g1,3330:10740668,13844391 -g1,3330:11056814,13844391 -g1,3330:11372960,13844391 -g1,3330:11689106,13844391 -g1,3330:12321398,13844391 -g1,3330:12637544,13844391 -g1,3330:12953690,13844391 -g1,3330:13902127,13844391 -g1,3330:14218273,13844391 -g1,3330:14534419,13844391 -g1,3330:14850565,13844391 -h1,3330:15166711,13844391:0,0,0 -k1,3330:32583029,13844391:17416318 -g1,3330:32583029,13844391 -) -(1,3330:6630773,14510569:25952256,404226,82312 -h1,3330:6630773,14510569:0,0,0 -g1,3330:7579210,14510569 -g1,3330:9159938,14510569 -g1,3330:9476084,14510569 -g1,3330:9792230,14510569 -g1,3330:10108376,14510569 -g1,3330:10740668,14510569 -g1,3330:11056814,14510569 -g1,3330:11372960,14510569 -g1,3330:11689106,14510569 -g1,3330:12321398,14510569 -g1,3330:12637544,14510569 -g1,3330:12953690,14510569 -g1,3330:13269836,14510569 -g1,3330:13902128,14510569 -g1,3330:14218274,14510569 -g1,3330:14534420,14510569 -h1,3330:15166711,14510569:0,0,0 -k1,3330:32583029,14510569:17416318 -g1,3330:32583029,14510569 -) -(1,3330:6630773,15176747:25952256,404226,82312 -h1,3330:6630773,15176747:0,0,0 -g1,3330:7579210,15176747 -g1,3330:9159938,15176747 -g1,3330:9476084,15176747 -g1,3330:9792230,15176747 -g1,3330:10108376,15176747 -g1,3330:10740668,15176747 -g1,3330:11056814,15176747 -g1,3330:11372960,15176747 -g1,3330:11689106,15176747 -g1,3330:12321398,15176747 -g1,3330:12637544,15176747 -g1,3330:12953690,15176747 -g1,3330:13902127,15176747 -g1,3330:14218273,15176747 -g1,3330:14534419,15176747 -g1,3330:14850565,15176747 -h1,3330:15166711,15176747:0,0,0 -k1,3330:32583029,15176747:17416318 -g1,3330:32583029,15176747 -) -] -) -g1,3331:32583029,15259059 -g1,3331:6630773,15259059 -g1,3331:6630773,15259059 -g1,3331:32583029,15259059 -g1,3331:32583029,15259059 -) -h1,3331:6630773,15455667:0,0,0 -(1,3335:6630773,16821443:25952256,505283,126483 -h1,3334:6630773,16821443:983040,0,0 -k1,3334:8467767,16821443:226119 -k1,3334:9712970,16821443:226118 -k1,3334:12930808,16821443:226119 -k1,3334:15012251,16821443:226119 -k1,3334:16632321,16821443:226119 -k1,3334:17877524,16821443:226118 -k1,3334:19824618,16821443:226119 -k1,3334:24532744,16821443:226119 -k1,3334:27505477,16821443:226119 -(1,3334:27505477,16821443:0,414482,115847 -r1,3334:27863743,16821443:358266,530329,115847 -k1,3334:27505477,16821443:-358266 -) -(1,3334:27505477,16821443:358266,414482,115847 -k1,3334:27505477,16821443:3277 -h1,3334:27860466,16821443:0,411205,112570 -) -k1,3334:28263531,16821443:226118 -k1,3334:29508735,16821443:226119 -k1,3334:32583029,16821443:0 -) -(1,3335:6630773,17662931:25952256,505283,126483 -k1,3334:9978769,17662931:257973 -k1,3334:10768240,17662931:257974 -k1,3334:12092484,17662931:257973 -k1,3334:12706317,17662931:257973 -k1,3334:15051613,17662931:257974 -k1,3334:18012946,17662931:257973 -k1,3334:19343089,17662931:257974 -k1,3334:22101916,17662931:257973 -k1,3334:23378974,17662931:257973 -k1,3334:26496939,17662931:257974 -k1,3334:29390115,17662931:257973 -k1,3334:32583029,17662931:0 -) -(1,3335:6630773,18504419:25952256,513147,126483 -k1,3334:9694402,18504419:194463 -k1,3334:10548157,18504419:194463 -k1,3334:11761705,18504419:194463 -k1,3334:14043490,18504419:194463 -k1,3334:15429398,18504419:194463 -k1,3334:18105710,18504419:194464 -k1,3334:20331134,18504419:194463 -k1,3334:25007604,18504419:194463 -k1,3334:25733564,18504419:194463 -k1,3334:28880424,18504419:194463 -k1,3334:29836415,18504419:194463 -k1,3335:32583029,18504419:0 -) -(1,3335:6630773,19345907:25952256,435480,115847 -(1,3334:6630773,19345907:0,435480,115847 -r1,3334:7692462,19345907:1061689,551327,115847 -k1,3334:6630773,19345907:-1061689 -) -(1,3334:6630773,19345907:1061689,435480,115847 -k1,3334:6630773,19345907:3277 -h1,3334:7689185,19345907:0,411205,112570 -) -k1,3335:32583028,19345907:24716896 -g1,3335:32583028,19345907 -) -v1,3337:6630773,20536373:0,393216,0 -(1,3359:6630773,29606871:25952256,9463714,196608 -g1,3359:6630773,29606871 -g1,3359:6630773,29606871 -g1,3359:6434165,29606871 -(1,3359:6434165,29606871:0,9463714,196608 -r1,3359:32779637,29606871:26345472,9660322,196608 -k1,3359:6434165,29606871:-26345472 -) -(1,3359:6434165,29606871:26345472,9463714,196608 -[1,3359:6630773,29606871:25952256,9267106,0 -(1,3339:6630773,20743991:25952256,404226,82312 -(1,3338:6630773,20743991:0,0,0 -g1,3338:6630773,20743991 -g1,3338:6630773,20743991 -g1,3338:6303093,20743991 -(1,3338:6303093,20743991:0,0,0 -) -g1,3338:6630773,20743991 -) -g1,3339:7263065,20743991 -g1,3339:8211503,20743991 -g1,3339:12321398,20743991 -g1,3339:13902127,20743991 -g1,3339:14534419,20743991 -h1,3339:15166711,20743991:0,0,0 -k1,3339:32583029,20743991:17416318 -g1,3339:32583029,20743991 -) -(1,3340:6630773,21410169:25952256,328204,0 -h1,3340:6630773,21410169:0,0,0 -g1,3340:7263065,21410169 -g1,3340:7895357,21410169 -h1,3340:8211503,21410169:0,0,0 -k1,3340:32583029,21410169:24371526 -g1,3340:32583029,21410169 -) -(1,3348:6630773,22141883:25952256,404226,82312 -(1,3342:6630773,22141883:0,0,0 -g1,3342:6630773,22141883 -g1,3342:6630773,22141883 -g1,3342:6303093,22141883 -(1,3342:6303093,22141883:0,0,0 -) -g1,3342:6630773,22141883 -) -g1,3348:7579210,22141883 -g1,3348:7895356,22141883 -g1,3348:8211502,22141883 -g1,3348:8527648,22141883 -g1,3348:8843794,22141883 -g1,3348:9159940,22141883 -g1,3348:10740669,22141883 -g1,3348:12321398,22141883 -g1,3348:13902127,22141883 -k1,3348:13902127,22141883:0 -h1,3348:15166710,22141883:0,0,0 -k1,3348:32583030,22141883:17416320 -g1,3348:32583030,22141883 -) -(1,3348:6630773,22808061:25952256,404226,82312 -h1,3348:6630773,22808061:0,0,0 -g1,3348:7579210,22808061 -g1,3348:9159938,22808061 -g1,3348:9476084,22808061 -g1,3348:9792230,22808061 -g1,3348:10108376,22808061 -g1,3348:10740668,22808061 -g1,3348:11056814,22808061 -g1,3348:11372960,22808061 -g1,3348:12321397,22808061 -g1,3348:12637543,22808061 -g1,3348:12953689,22808061 -g1,3348:13902126,22808061 -g1,3348:14218272,22808061 -h1,3348:15166709,22808061:0,0,0 -k1,3348:32583029,22808061:17416320 -g1,3348:32583029,22808061 -) -(1,3348:6630773,23474239:25952256,404226,82312 -h1,3348:6630773,23474239:0,0,0 -g1,3348:7579210,23474239 -g1,3348:9159938,23474239 -g1,3348:9476084,23474239 -g1,3348:9792230,23474239 -g1,3348:10108376,23474239 -g1,3348:10740668,23474239 -g1,3348:11056814,23474239 -g1,3348:11372960,23474239 -g1,3348:12321397,23474239 -g1,3348:12637543,23474239 -g1,3348:13902126,23474239 -g1,3348:14218272,23474239 -h1,3348:15166709,23474239:0,0,0 -k1,3348:32583029,23474239:17416320 -g1,3348:32583029,23474239 -) -(1,3348:6630773,24140417:25952256,404226,82312 -h1,3348:6630773,24140417:0,0,0 -g1,3348:7579210,24140417 -g1,3348:9159938,24140417 -g1,3348:9476084,24140417 -g1,3348:9792230,24140417 -g1,3348:10108376,24140417 -g1,3348:10740668,24140417 -g1,3348:11056814,24140417 -g1,3348:11372960,24140417 -g1,3348:12321397,24140417 -g1,3348:12637543,24140417 -g1,3348:13902126,24140417 -g1,3348:14218272,24140417 -h1,3348:15166709,24140417:0,0,0 -k1,3348:32583029,24140417:17416320 -g1,3348:32583029,24140417 -) -(1,3348:6630773,24806595:25952256,404226,82312 -h1,3348:6630773,24806595:0,0,0 -g1,3348:7579210,24806595 -g1,3348:9159938,24806595 -g1,3348:9476084,24806595 -g1,3348:9792230,24806595 -g1,3348:10740667,24806595 -g1,3348:11056813,24806595 -g1,3348:11372959,24806595 -g1,3348:12321396,24806595 -g1,3348:12637542,24806595 -g1,3348:13902125,24806595 -g1,3348:14218271,24806595 -h1,3348:15166708,24806595:0,0,0 -k1,3348:32583028,24806595:17416320 -g1,3348:32583028,24806595 -) -(1,3350:6630773,26128133:25952256,388497,9436 -(1,3349:6630773,26128133:0,0,0 -g1,3349:6630773,26128133 -g1,3349:6630773,26128133 -g1,3349:6303093,26128133 -(1,3349:6303093,26128133:0,0,0 -) -g1,3349:6630773,26128133 -) -g1,3350:7263065,26128133 -g1,3350:8527648,26128133 -h1,3350:8843794,26128133:0,0,0 -k1,3350:32583030,26128133:23739236 -g1,3350:32583030,26128133 -) -(1,3358:6630773,26859847:25952256,404226,82312 -(1,3352:6630773,26859847:0,0,0 -g1,3352:6630773,26859847 -g1,3352:6630773,26859847 -g1,3352:6303093,26859847 -(1,3352:6303093,26859847:0,0,0 -) -g1,3352:6630773,26859847 -) -g1,3358:7579210,26859847 -g1,3358:7895356,26859847 -g1,3358:8211502,26859847 -g1,3358:8527648,26859847 -g1,3358:8843794,26859847 -g1,3358:9159940,26859847 -g1,3358:10740669,26859847 -g1,3358:12321398,26859847 -g1,3358:13902127,26859847 -k1,3358:13902127,26859847:0 -h1,3358:15166710,26859847:0,0,0 -k1,3358:32583030,26859847:17416320 -g1,3358:32583030,26859847 -) -(1,3358:6630773,27526025:25952256,404226,82312 -h1,3358:6630773,27526025:0,0,0 -g1,3358:7579210,27526025 -g1,3358:9159938,27526025 -g1,3358:9476084,27526025 -g1,3358:9792230,27526025 -g1,3358:10740667,27526025 -g1,3358:11056813,27526025 -g1,3358:12321396,27526025 -g1,3358:12637542,27526025 -g1,3358:13902125,27526025 -g1,3358:14218271,27526025 -h1,3358:15166708,27526025:0,0,0 -k1,3358:32583028,27526025:17416320 -g1,3358:32583028,27526025 -) -(1,3358:6630773,28192203:25952256,404226,82312 -h1,3358:6630773,28192203:0,0,0 -g1,3358:7579210,28192203 -g1,3358:9159938,28192203 -g1,3358:9476084,28192203 -g1,3358:10740667,28192203 -g1,3358:11056813,28192203 -g1,3358:12321396,28192203 -g1,3358:12637542,28192203 -g1,3358:13902125,28192203 -g1,3358:14218271,28192203 -h1,3358:15166708,28192203:0,0,0 -k1,3358:32583028,28192203:17416320 -g1,3358:32583028,28192203 -) -(1,3358:6630773,28858381:25952256,404226,82312 -h1,3358:6630773,28858381:0,0,0 -g1,3358:7579210,28858381 -g1,3358:9159938,28858381 -g1,3358:9476084,28858381 -g1,3358:10740667,28858381 -g1,3358:11056813,28858381 -g1,3358:12321396,28858381 -g1,3358:12637542,28858381 -g1,3358:13902125,28858381 -g1,3358:14218271,28858381 -h1,3358:15166708,28858381:0,0,0 -k1,3358:32583028,28858381:17416320 -g1,3358:32583028,28858381 -) -(1,3358:6630773,29524559:25952256,404226,82312 -h1,3358:6630773,29524559:0,0,0 -g1,3358:7579210,29524559 -g1,3358:9159938,29524559 -g1,3358:9476084,29524559 -g1,3358:10740667,29524559 -g1,3358:11056813,29524559 -g1,3358:12321396,29524559 -g1,3358:12637542,29524559 -g1,3358:13902125,29524559 -g1,3358:14218271,29524559 -h1,3358:15166708,29524559:0,0,0 -k1,3358:32583028,29524559:17416320 -g1,3358:32583028,29524559 -) -] -) -g1,3359:32583029,29606871 -g1,3359:6630773,29606871 -g1,3359:6630773,29606871 -g1,3359:32583029,29606871 -g1,3359:32583029,29606871 -) -h1,3359:6630773,29803479:0,0,0 -(1,3363:6630773,31169255:25952256,513147,134348 -h1,3362:6630773,31169255:983040,0,0 -k1,3362:10046755,31169255:616284 -k1,3362:13739954,31169255:616284 -k1,3362:15547683,31169255:616284 -k1,3362:19189764,31169255:616284 -k1,3362:20753699,31169255:616284 -k1,3362:23457305,31169255:616284 -k1,3362:26400772,31169255:616284 -k1,3362:28163281,31169255:616284 -k1,3362:32583029,31169255:0 -) -(1,3363:6630773,32010743:25952256,505283,134348 -(1,3362:6837867,32010743:0,452978,115847 -r1,3362:10713251,32010743:3875384,568825,115847 -k1,3362:6837867,32010743:-3875384 -) -(1,3362:6837867,32010743:3875384,452978,115847 -k1,3362:6837867,32010743:3277 -h1,3362:10709974,32010743:0,411205,112570 -) -k1,3362:11351284,32010743:257269 -k1,3362:14802778,32010743:257269 -k1,3362:15742932,32010743:257269 -k1,3362:18941457,32010743:257269 -k1,3362:20217811,32010743:257269 -k1,3362:23197445,32010743:257268 -(1,3362:23404539,32010743:0,452978,122846 -r1,3362:25521364,32010743:2116825,575824,122846 -k1,3362:23404539,32010743:-2116825 -) -(1,3362:23404539,32010743:2116825,452978,122846 -k1,3362:23404539,32010743:3277 -h1,3362:25518087,32010743:0,411205,112570 -) -k1,3362:25985727,32010743:257269 -k1,3362:27234556,32010743:257269 -k1,3362:30275794,32010743:257269 -k1,3362:31149101,32010743:257269 -k1,3363:32583029,32010743:0 -) -(1,3363:6630773,32852231:25952256,513147,134348 -k1,3362:7501173,32852231:281887 -k1,3362:10821964,32852231:281887 -k1,3362:14084428,32852231:281887 -k1,3362:18504257,32852231:281887 -k1,3362:21216218,32852231:281886 -k1,3362:24725098,32852231:281887 -k1,3362:28032782,32852231:281887 -k1,3362:29506114,32852231:281887 -k1,3362:32583029,32852231:0 -) -(1,3363:6630773,33693719:25952256,513147,7863 -g1,3362:7777653,33693719 -k1,3363:32583030,33693719:21898200 -g1,3363:32583030,33693719 -) -(1,3368:6630773,36501287:25952256,32768,229376 -(1,3368:6630773,36501287:0,32768,229376 -(1,3368:6630773,36501287:5505024,32768,229376 -r1,3368:12135797,36501287:5505024,262144,229376 -) -k1,3368:6630773,36501287:-5505024 -) -(1,3368:6630773,36501287:25952256,32768,0 -r1,3368:32583029,36501287:25952256,32768,0 -) -) -(1,3368:6630773,38105615:25952256,582746,9436 -(1,3368:6630773,38105615:2464678,582746,0 -g1,3368:6630773,38105615 -g1,3368:9095451,38105615 -) -k1,3368:32583028,38105615:20599012 -g1,3368:32583028,38105615 -) -(1,3372:6630773,39340319:25952256,513147,134348 -k1,3371:9136810,39340319:187373 -k1,3371:10315743,39340319:187373 -k1,3371:12016342,39340319:187373 -k1,3371:12855143,39340319:187373 -k1,3371:15574172,39340319:187373 -k1,3371:19164831,39340319:187374 -k1,3371:20953904,39340319:187373 -k1,3371:24446258,39340319:187373 -k1,3371:25652716,39340319:187373 -k1,3371:28064381,39340319:187373 -k1,3371:31563944,39340319:187373 -k1,3371:32583029,39340319:0 -) -(1,3372:6630773,40181807:25952256,505283,134348 -k1,3371:10300487,40181807:194995 -k1,3371:11111520,40181807:194995 -k1,3371:12077217,40181807:194994 -k1,3371:16054950,40181807:194995 -k1,3371:16932830,40181807:194995 -k1,3371:20357439,40181807:194995 -k1,3371:21168471,40181807:194994 -k1,3371:21719326,40181807:194995 -k1,3371:24187110,40181807:194995 -k1,3371:25939896,40181807:194995 -k1,3371:27239172,40181807:194994 -k1,3371:28181933,40181807:194995 -k1,3371:30727049,40181807:194995 -k1,3371:32583029,40181807:0 -) -(1,3372:6630773,41023295:25952256,513147,126483 -k1,3371:8354727,41023295:156333 -k1,3371:11692178,41023295:156333 -k1,3371:12531396,41023295:156333 -k1,3371:15662408,41023295:156333 -k1,3371:18300589,41023295:156333 -k1,3371:19653610,41023295:156334 -k1,3371:22572286,41023295:156333 -k1,3371:25358579,41023295:156333 -k1,3371:27525557,41023295:156333 -k1,3371:28673450,41023295:156333 -k1,3371:30697559,41023295:156333 -k1,3371:32583029,41023295:0 -) -(1,3372:6630773,41864783:25952256,513147,134348 -k1,3371:9133933,41864783:147141 -k1,3371:11505367,41864783:147142 -k1,3371:14002629,41864783:147141 -k1,3371:15543722,41864783:147142 -(1,3371:15543722,41864783:0,459977,115847 -r1,3371:18363971,41864783:2820249,575824,115847 -k1,3371:15543722,41864783:-2820249 -) -(1,3371:15543722,41864783:2820249,459977,115847 -k1,3371:15543722,41864783:3277 -h1,3371:18360694,41864783:0,411205,112570 -) -k1,3371:18511112,41864783:147141 -k1,3371:19649814,41864783:147142 -k1,3371:23134048,41864783:147141 -k1,3371:23964074,41864783:147141 -k1,3371:27731425,41864783:147142 -k1,3371:28293358,41864783:147090 -k1,3371:29726315,41864783:147141 -k1,3371:32583029,41864783:0 -) -(1,3372:6630773,42706271:25952256,513147,115847 -g1,3371:9337409,42706271 -g1,3371:11760930,42706271 -g1,3371:13244665,42706271 -g1,3371:14548176,42706271 -g1,3371:15495171,42706271 -g1,3371:18044521,42706271 -g1,3371:19637701,42706271 -g1,3371:22532426,42706271 -(1,3371:22532426,42706271:0,452978,115847 -r1,3371:25704386,42706271:3171960,568825,115847 -k1,3371:22532426,42706271:-3171960 -) -(1,3371:22532426,42706271:3171960,452978,115847 -k1,3371:22532426,42706271:3277 -h1,3371:25701109,42706271:0,411205,112570 -) -k1,3372:32583029,42706271:6704973 -g1,3372:32583029,42706271 -) -v1,3374:6630773,43896737:0,393216,0 -(1,3392:6630773,45436711:25952256,1933190,196608 -g1,3392:6630773,45436711 -g1,3392:6630773,45436711 -g1,3392:6434165,45436711 -(1,3392:6434165,45436711:0,1933190,196608 -r1,3392:32779637,45436711:26345472,2129798,196608 -k1,3392:6434165,45436711:-26345472 -) -(1,3392:6434165,45436711:26345472,1933190,196608 -[1,3392:6630773,45436711:25952256,1736582,0 -(1,3376:6630773,44104355:25952256,404226,101187 -(1,3375:6630773,44104355:0,0,0 -g1,3375:6630773,44104355 -g1,3375:6630773,44104355 -g1,3375:6303093,44104355 -(1,3375:6303093,44104355:0,0,0 -) -g1,3375:6630773,44104355 -) -g1,3376:9792230,44104355 -g1,3376:10740668,44104355 -g1,3376:14850563,44104355 -g1,3376:18328166,44104355 -g1,3376:21805769,44104355 -g1,3376:25283372,44104355 -g1,3376:28760975,44104355 -h1,3376:31922432,44104355:0,0,0 -k1,3376:32583029,44104355:660597 -g1,3376:32583029,44104355 -) -(1,3377:6630773,44770533:25952256,410518,101187 -h1,3377:6630773,44770533:0,0,0 -g1,3377:9792230,44770533 -g1,3377:10740668,44770533 -k1,3377:10740668,44770533:0 -h1,3377:16115144,44770533:0,0,0 -k1,3377:32583029,44770533:16467885 -g1,3377:32583029,44770533 -) -(1,3378:6630773,45436711:25952256,410518,101187 -h1,3378:6630773,45436711:0,0,0 -h1,3378:9476084,45436711:0,0,0 -k1,3378:32583028,45436711:23106944 -g1,3378:32583028,45436711 -) -] -) -g1,3392:32583029,45436711 -g1,3392:6630773,45436711 -g1,3392:6630773,45436711 -g1,3392:32583029,45436711 -g1,3392:32583029,45436711 -) -] -(1,3392:32583029,45706769:0,0,0 -g1,3392:32583029,45706769 -) -) -] -(1,3392:6630773,47279633:25952256,0,0 -h1,3392:6630773,47279633:25952256,0,0 -) -] -h1,3392:4262630,4025873:0,0,0 +[1,3398:3078558,4812305:0,0,0 +(1,3398:3078558,49800853:0,16384,2228224 +g1,3398:29030814,49800853 +g1,3398:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3398:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3398:37855564,49800853:1179648,16384,0 +) +) +k1,3398:3078556,49800853:-34777008 +) +] +g1,3398:6630773,4812305 +k1,3398:19515153,4812305:12087462 +g1,3398:20901894,4812305 +g1,3398:21550700,4812305 +g1,3398:24864855,4812305 +g1,3398:27600327,4812305 +g1,3398:29010006,4812305 +) +) +] +[1,3398:6630773,45706769:25952256,40108032,0 +(1,3398:6630773,45706769:25952256,40108032,0 +(1,3398:6630773,45706769:0,0,0 +g1,3398:6630773,45706769 +) +[1,3398:6630773,45706769:25952256,40108032,0 +v1,3337:6630773,6254097:0,393216,0 +(1,3337:6630773,15259059:25952256,9398178,196608 +g1,3337:6630773,15259059 +g1,3337:6630773,15259059 +g1,3337:6434165,15259059 +(1,3337:6434165,15259059:0,9398178,196608 +r1,3337:32779637,15259059:26345472,9594786,196608 +k1,3337:6434165,15259059:-26345472 +) +(1,3337:6434165,15259059:26345472,9398178,196608 +[1,3337:6630773,15259059:25952256,9201570,0 +(1,3325:6630773,6461715:25952256,404226,82312 +(1,3318:6630773,6461715:0,0,0 +g1,3318:6630773,6461715 +g1,3318:6630773,6461715 +g1,3318:6303093,6461715 +(1,3318:6303093,6461715:0,0,0 +) +g1,3318:6630773,6461715 +) +g1,3325:7579210,6461715 +g1,3325:7895356,6461715 +g1,3325:8211502,6461715 +g1,3325:8527648,6461715 +g1,3325:8843794,6461715 +g1,3325:9159940,6461715 +g1,3325:10740669,6461715 +g1,3325:12321398,6461715 +g1,3325:13902127,6461715 +k1,3325:13902127,6461715:0 +h1,3325:15166710,6461715:0,0,0 +k1,3325:32583030,6461715:17416320 +g1,3325:32583030,6461715 +) +(1,3325:6630773,7127893:25952256,404226,82312 +h1,3325:6630773,7127893:0,0,0 +g1,3325:7579210,7127893 +g1,3325:9159938,7127893 +g1,3325:9476084,7127893 +g1,3325:9792230,7127893 +g1,3325:10108376,7127893 +g1,3325:10740668,7127893 +g1,3325:11056814,7127893 +g1,3325:11372960,7127893 +g1,3325:11689106,7127893 +g1,3325:12321398,7127893 +g1,3325:12637544,7127893 +g1,3325:12953690,7127893 +g1,3325:13269836,7127893 +g1,3325:13902128,7127893 +g1,3325:14218274,7127893 +g1,3325:14534420,7127893 +h1,3325:15166711,7127893:0,0,0 +k1,3325:32583029,7127893:17416318 +g1,3325:32583029,7127893 +) +(1,3325:6630773,7794071:25952256,404226,82312 +h1,3325:6630773,7794071:0,0,0 +g1,3325:7579210,7794071 +g1,3325:9159938,7794071 +g1,3325:9476084,7794071 +g1,3325:9792230,7794071 +g1,3325:10108376,7794071 +g1,3325:10740668,7794071 +g1,3325:11056814,7794071 +g1,3325:11372960,7794071 +g1,3325:11689106,7794071 +g1,3325:12321398,7794071 +g1,3325:12637544,7794071 +g1,3325:12953690,7794071 +g1,3325:13902127,7794071 +g1,3325:14218273,7794071 +g1,3325:14534419,7794071 +g1,3325:14850565,7794071 +h1,3325:15166711,7794071:0,0,0 +k1,3325:32583029,7794071:17416318 +g1,3325:32583029,7794071 +) +(1,3325:6630773,8460249:25952256,404226,82312 +h1,3325:6630773,8460249:0,0,0 +g1,3325:7579210,8460249 +g1,3325:9159938,8460249 +g1,3325:9476084,8460249 +g1,3325:9792230,8460249 +g1,3325:10108376,8460249 +g1,3325:10740668,8460249 +g1,3325:11056814,8460249 +g1,3325:11372960,8460249 +g1,3325:11689106,8460249 +g1,3325:12321398,8460249 +g1,3325:12637544,8460249 +g1,3325:12953690,8460249 +g1,3325:13269836,8460249 +g1,3325:13902128,8460249 +g1,3325:14218274,8460249 +g1,3325:14534420,8460249 +h1,3325:15166711,8460249:0,0,0 +k1,3325:32583029,8460249:17416318 +g1,3325:32583029,8460249 +) +(1,3325:6630773,9126427:25952256,404226,82312 +h1,3325:6630773,9126427:0,0,0 +g1,3325:7579210,9126427 +g1,3325:9159938,9126427 +g1,3325:9476084,9126427 +g1,3325:9792230,9126427 +g1,3325:10108376,9126427 +g1,3325:10740668,9126427 +g1,3325:11056814,9126427 +g1,3325:11372960,9126427 +g1,3325:11689106,9126427 +g1,3325:12321398,9126427 +g1,3325:12637544,9126427 +g1,3325:12953690,9126427 +g1,3325:13902127,9126427 +g1,3325:14218273,9126427 +g1,3325:14534419,9126427 +g1,3325:14850565,9126427 +h1,3325:15166711,9126427:0,0,0 +k1,3325:32583029,9126427:17416318 +g1,3325:32583029,9126427 +) +(1,3325:6630773,9792605:25952256,404226,82312 +h1,3325:6630773,9792605:0,0,0 +g1,3325:7579210,9792605 +g1,3325:9159938,9792605 +g1,3325:9476084,9792605 +g1,3325:9792230,9792605 +g1,3325:10108376,9792605 +g1,3325:10740668,9792605 +g1,3325:11056814,9792605 +g1,3325:11372960,9792605 +g1,3325:12321397,9792605 +g1,3325:12637543,9792605 +g1,3325:12953689,9792605 +g1,3325:13269835,9792605 +g1,3325:13902127,9792605 +g1,3325:14218273,9792605 +g1,3325:14534419,9792605 +h1,3325:15166710,9792605:0,0,0 +k1,3325:32583030,9792605:17416320 +g1,3325:32583030,9792605 +) +(1,3327:6630773,11114143:25952256,388497,9436 +(1,3326:6630773,11114143:0,0,0 +g1,3326:6630773,11114143 +g1,3326:6630773,11114143 +g1,3326:6303093,11114143 +(1,3326:6303093,11114143:0,0,0 +) +g1,3326:6630773,11114143 +) +g1,3327:7263065,11114143 +g1,3327:7895357,11114143 +h1,3327:8843795,11114143:0,0,0 +k1,3327:32583029,11114143:23739234 +g1,3327:32583029,11114143 +) +(1,3336:6630773,11845857:25952256,404226,82312 +(1,3329:6630773,11845857:0,0,0 +g1,3329:6630773,11845857 +g1,3329:6630773,11845857 +g1,3329:6303093,11845857 +(1,3329:6303093,11845857:0,0,0 +) +g1,3329:6630773,11845857 +) +g1,3336:7579210,11845857 +g1,3336:7895356,11845857 +g1,3336:8211502,11845857 +g1,3336:8527648,11845857 +g1,3336:8843794,11845857 +g1,3336:9159940,11845857 +g1,3336:10740669,11845857 +g1,3336:12321398,11845857 +g1,3336:13902127,11845857 +k1,3336:13902127,11845857:0 +h1,3336:15166710,11845857:0,0,0 +k1,3336:32583030,11845857:17416320 +g1,3336:32583030,11845857 +) +(1,3336:6630773,12512035:25952256,404226,82312 +h1,3336:6630773,12512035:0,0,0 +g1,3336:7579210,12512035 +g1,3336:9159938,12512035 +g1,3336:9476084,12512035 +g1,3336:9792230,12512035 +g1,3336:10108376,12512035 +g1,3336:10740668,12512035 +g1,3336:11056814,12512035 +g1,3336:11372960,12512035 +g1,3336:11689106,12512035 +g1,3336:12321398,12512035 +g1,3336:12637544,12512035 +g1,3336:12953690,12512035 +g1,3336:13902127,12512035 +g1,3336:14218273,12512035 +g1,3336:14534419,12512035 +g1,3336:14850565,12512035 +h1,3336:15166711,12512035:0,0,0 +k1,3336:32583029,12512035:17416318 +g1,3336:32583029,12512035 +) +(1,3336:6630773,13178213:25952256,404226,82312 +h1,3336:6630773,13178213:0,0,0 +g1,3336:7579210,13178213 +g1,3336:9159938,13178213 +g1,3336:9476084,13178213 +g1,3336:9792230,13178213 +g1,3336:10108376,13178213 +g1,3336:10740668,13178213 +g1,3336:11056814,13178213 +g1,3336:11372960,13178213 +g1,3336:11689106,13178213 +g1,3336:12321398,13178213 +g1,3336:12637544,13178213 +g1,3336:12953690,13178213 +g1,3336:13269836,13178213 +g1,3336:13902128,13178213 +g1,3336:14218274,13178213 +g1,3336:14534420,13178213 +h1,3336:15166711,13178213:0,0,0 +k1,3336:32583029,13178213:17416318 +g1,3336:32583029,13178213 +) +(1,3336:6630773,13844391:25952256,404226,82312 +h1,3336:6630773,13844391:0,0,0 +g1,3336:7579210,13844391 +g1,3336:9159938,13844391 +g1,3336:9476084,13844391 +g1,3336:9792230,13844391 +g1,3336:10108376,13844391 +g1,3336:10740668,13844391 +g1,3336:11056814,13844391 +g1,3336:11372960,13844391 +g1,3336:11689106,13844391 +g1,3336:12321398,13844391 +g1,3336:12637544,13844391 +g1,3336:12953690,13844391 +g1,3336:13902127,13844391 +g1,3336:14218273,13844391 +g1,3336:14534419,13844391 +g1,3336:14850565,13844391 +h1,3336:15166711,13844391:0,0,0 +k1,3336:32583029,13844391:17416318 +g1,3336:32583029,13844391 +) +(1,3336:6630773,14510569:25952256,404226,82312 +h1,3336:6630773,14510569:0,0,0 +g1,3336:7579210,14510569 +g1,3336:9159938,14510569 +g1,3336:9476084,14510569 +g1,3336:9792230,14510569 +g1,3336:10108376,14510569 +g1,3336:10740668,14510569 +g1,3336:11056814,14510569 +g1,3336:11372960,14510569 +g1,3336:11689106,14510569 +g1,3336:12321398,14510569 +g1,3336:12637544,14510569 +g1,3336:12953690,14510569 +g1,3336:13269836,14510569 +g1,3336:13902128,14510569 +g1,3336:14218274,14510569 +g1,3336:14534420,14510569 +h1,3336:15166711,14510569:0,0,0 +k1,3336:32583029,14510569:17416318 +g1,3336:32583029,14510569 +) +(1,3336:6630773,15176747:25952256,404226,82312 +h1,3336:6630773,15176747:0,0,0 +g1,3336:7579210,15176747 +g1,3336:9159938,15176747 +g1,3336:9476084,15176747 +g1,3336:9792230,15176747 +g1,3336:10108376,15176747 +g1,3336:10740668,15176747 +g1,3336:11056814,15176747 +g1,3336:11372960,15176747 +g1,3336:11689106,15176747 +g1,3336:12321398,15176747 +g1,3336:12637544,15176747 +g1,3336:12953690,15176747 +g1,3336:13902127,15176747 +g1,3336:14218273,15176747 +g1,3336:14534419,15176747 +g1,3336:14850565,15176747 +h1,3336:15166711,15176747:0,0,0 +k1,3336:32583029,15176747:17416318 +g1,3336:32583029,15176747 +) +] +) +g1,3337:32583029,15259059 +g1,3337:6630773,15259059 +g1,3337:6630773,15259059 +g1,3337:32583029,15259059 +g1,3337:32583029,15259059 +) +h1,3337:6630773,15455667:0,0,0 +(1,3341:6630773,16821443:25952256,505283,126483 +h1,3340:6630773,16821443:983040,0,0 +k1,3340:8467767,16821443:226119 +k1,3340:9712970,16821443:226118 +k1,3340:12930808,16821443:226119 +k1,3340:15012251,16821443:226119 +k1,3340:16632321,16821443:226119 +k1,3340:17877524,16821443:226118 +k1,3340:19824618,16821443:226119 +k1,3340:24532744,16821443:226119 +k1,3340:27505477,16821443:226119 +(1,3340:27505477,16821443:0,414482,115847 +r1,3340:27863743,16821443:358266,530329,115847 +k1,3340:27505477,16821443:-358266 +) +(1,3340:27505477,16821443:358266,414482,115847 +k1,3340:27505477,16821443:3277 +h1,3340:27860466,16821443:0,411205,112570 +) +k1,3340:28263531,16821443:226118 +k1,3340:29508735,16821443:226119 +k1,3340:32583029,16821443:0 +) +(1,3341:6630773,17662931:25952256,505283,126483 +k1,3340:9978769,17662931:257973 +k1,3340:10768240,17662931:257974 +k1,3340:12092484,17662931:257973 +k1,3340:12706317,17662931:257973 +k1,3340:15051613,17662931:257974 +k1,3340:18012946,17662931:257973 +k1,3340:19343089,17662931:257974 +k1,3340:22101916,17662931:257973 +k1,3340:23378974,17662931:257973 +k1,3340:26496939,17662931:257974 +k1,3340:29390115,17662931:257973 +k1,3340:32583029,17662931:0 +) +(1,3341:6630773,18504419:25952256,513147,126483 +k1,3340:9694402,18504419:194463 +k1,3340:10548157,18504419:194463 +k1,3340:11761705,18504419:194463 +k1,3340:14043490,18504419:194463 +k1,3340:15429398,18504419:194463 +k1,3340:18105710,18504419:194464 +k1,3340:20331134,18504419:194463 +k1,3340:25007604,18504419:194463 +k1,3340:25733564,18504419:194463 +k1,3340:28880424,18504419:194463 +k1,3340:29836415,18504419:194463 +k1,3341:32583029,18504419:0 +) +(1,3341:6630773,19345907:25952256,435480,115847 +(1,3340:6630773,19345907:0,435480,115847 +r1,3340:7692462,19345907:1061689,551327,115847 +k1,3340:6630773,19345907:-1061689 +) +(1,3340:6630773,19345907:1061689,435480,115847 +k1,3340:6630773,19345907:3277 +h1,3340:7689185,19345907:0,411205,112570 +) +k1,3341:32583028,19345907:24716896 +g1,3341:32583028,19345907 +) +v1,3343:6630773,20536373:0,393216,0 +(1,3365:6630773,29606871:25952256,9463714,196608 +g1,3365:6630773,29606871 +g1,3365:6630773,29606871 +g1,3365:6434165,29606871 +(1,3365:6434165,29606871:0,9463714,196608 +r1,3365:32779637,29606871:26345472,9660322,196608 +k1,3365:6434165,29606871:-26345472 +) +(1,3365:6434165,29606871:26345472,9463714,196608 +[1,3365:6630773,29606871:25952256,9267106,0 +(1,3345:6630773,20743991:25952256,404226,82312 +(1,3344:6630773,20743991:0,0,0 +g1,3344:6630773,20743991 +g1,3344:6630773,20743991 +g1,3344:6303093,20743991 +(1,3344:6303093,20743991:0,0,0 +) +g1,3344:6630773,20743991 +) +g1,3345:7263065,20743991 +g1,3345:8211503,20743991 +g1,3345:12321398,20743991 +g1,3345:13902127,20743991 +g1,3345:14534419,20743991 +h1,3345:15166711,20743991:0,0,0 +k1,3345:32583029,20743991:17416318 +g1,3345:32583029,20743991 +) +(1,3346:6630773,21410169:25952256,328204,0 +h1,3346:6630773,21410169:0,0,0 +g1,3346:7263065,21410169 +g1,3346:7895357,21410169 +h1,3346:8211503,21410169:0,0,0 +k1,3346:32583029,21410169:24371526 +g1,3346:32583029,21410169 +) +(1,3354:6630773,22141883:25952256,404226,82312 +(1,3348:6630773,22141883:0,0,0 +g1,3348:6630773,22141883 +g1,3348:6630773,22141883 +g1,3348:6303093,22141883 +(1,3348:6303093,22141883:0,0,0 +) +g1,3348:6630773,22141883 +) +g1,3354:7579210,22141883 +g1,3354:7895356,22141883 +g1,3354:8211502,22141883 +g1,3354:8527648,22141883 +g1,3354:8843794,22141883 +g1,3354:9159940,22141883 +g1,3354:10740669,22141883 +g1,3354:12321398,22141883 +g1,3354:13902127,22141883 +k1,3354:13902127,22141883:0 +h1,3354:15166710,22141883:0,0,0 +k1,3354:32583030,22141883:17416320 +g1,3354:32583030,22141883 +) +(1,3354:6630773,22808061:25952256,404226,82312 +h1,3354:6630773,22808061:0,0,0 +g1,3354:7579210,22808061 +g1,3354:9159938,22808061 +g1,3354:9476084,22808061 +g1,3354:9792230,22808061 +g1,3354:10108376,22808061 +g1,3354:10740668,22808061 +g1,3354:11056814,22808061 +g1,3354:11372960,22808061 +g1,3354:12321397,22808061 +g1,3354:12637543,22808061 +g1,3354:12953689,22808061 +g1,3354:13902126,22808061 +g1,3354:14218272,22808061 +h1,3354:15166709,22808061:0,0,0 +k1,3354:32583029,22808061:17416320 +g1,3354:32583029,22808061 +) +(1,3354:6630773,23474239:25952256,404226,82312 +h1,3354:6630773,23474239:0,0,0 +g1,3354:7579210,23474239 +g1,3354:9159938,23474239 +g1,3354:9476084,23474239 +g1,3354:9792230,23474239 +g1,3354:10108376,23474239 +g1,3354:10740668,23474239 +g1,3354:11056814,23474239 +g1,3354:11372960,23474239 +g1,3354:12321397,23474239 +g1,3354:12637543,23474239 +g1,3354:13902126,23474239 +g1,3354:14218272,23474239 +h1,3354:15166709,23474239:0,0,0 +k1,3354:32583029,23474239:17416320 +g1,3354:32583029,23474239 +) +(1,3354:6630773,24140417:25952256,404226,82312 +h1,3354:6630773,24140417:0,0,0 +g1,3354:7579210,24140417 +g1,3354:9159938,24140417 +g1,3354:9476084,24140417 +g1,3354:9792230,24140417 +g1,3354:10108376,24140417 +g1,3354:10740668,24140417 +g1,3354:11056814,24140417 +g1,3354:11372960,24140417 +g1,3354:12321397,24140417 +g1,3354:12637543,24140417 +g1,3354:13902126,24140417 +g1,3354:14218272,24140417 +h1,3354:15166709,24140417:0,0,0 +k1,3354:32583029,24140417:17416320 +g1,3354:32583029,24140417 +) +(1,3354:6630773,24806595:25952256,404226,82312 +h1,3354:6630773,24806595:0,0,0 +g1,3354:7579210,24806595 +g1,3354:9159938,24806595 +g1,3354:9476084,24806595 +g1,3354:9792230,24806595 +g1,3354:10740667,24806595 +g1,3354:11056813,24806595 +g1,3354:11372959,24806595 +g1,3354:12321396,24806595 +g1,3354:12637542,24806595 +g1,3354:13902125,24806595 +g1,3354:14218271,24806595 +h1,3354:15166708,24806595:0,0,0 +k1,3354:32583028,24806595:17416320 +g1,3354:32583028,24806595 +) +(1,3356:6630773,26128133:25952256,388497,9436 +(1,3355:6630773,26128133:0,0,0 +g1,3355:6630773,26128133 +g1,3355:6630773,26128133 +g1,3355:6303093,26128133 +(1,3355:6303093,26128133:0,0,0 +) +g1,3355:6630773,26128133 +) +g1,3356:7263065,26128133 +g1,3356:8527648,26128133 +h1,3356:8843794,26128133:0,0,0 +k1,3356:32583030,26128133:23739236 +g1,3356:32583030,26128133 +) +(1,3364:6630773,26859847:25952256,404226,82312 +(1,3358:6630773,26859847:0,0,0 +g1,3358:6630773,26859847 +g1,3358:6630773,26859847 +g1,3358:6303093,26859847 +(1,3358:6303093,26859847:0,0,0 +) +g1,3358:6630773,26859847 +) +g1,3364:7579210,26859847 +g1,3364:7895356,26859847 +g1,3364:8211502,26859847 +g1,3364:8527648,26859847 +g1,3364:8843794,26859847 +g1,3364:9159940,26859847 +g1,3364:10740669,26859847 +g1,3364:12321398,26859847 +g1,3364:13902127,26859847 +k1,3364:13902127,26859847:0 +h1,3364:15166710,26859847:0,0,0 +k1,3364:32583030,26859847:17416320 +g1,3364:32583030,26859847 +) +(1,3364:6630773,27526025:25952256,404226,82312 +h1,3364:6630773,27526025:0,0,0 +g1,3364:7579210,27526025 +g1,3364:9159938,27526025 +g1,3364:9476084,27526025 +g1,3364:9792230,27526025 +g1,3364:10740667,27526025 +g1,3364:11056813,27526025 +g1,3364:12321396,27526025 +g1,3364:12637542,27526025 +g1,3364:13902125,27526025 +g1,3364:14218271,27526025 +h1,3364:15166708,27526025:0,0,0 +k1,3364:32583028,27526025:17416320 +g1,3364:32583028,27526025 +) +(1,3364:6630773,28192203:25952256,404226,82312 +h1,3364:6630773,28192203:0,0,0 +g1,3364:7579210,28192203 +g1,3364:9159938,28192203 +g1,3364:9476084,28192203 +g1,3364:10740667,28192203 +g1,3364:11056813,28192203 +g1,3364:12321396,28192203 +g1,3364:12637542,28192203 +g1,3364:13902125,28192203 +g1,3364:14218271,28192203 +h1,3364:15166708,28192203:0,0,0 +k1,3364:32583028,28192203:17416320 +g1,3364:32583028,28192203 +) +(1,3364:6630773,28858381:25952256,404226,82312 +h1,3364:6630773,28858381:0,0,0 +g1,3364:7579210,28858381 +g1,3364:9159938,28858381 +g1,3364:9476084,28858381 +g1,3364:10740667,28858381 +g1,3364:11056813,28858381 +g1,3364:12321396,28858381 +g1,3364:12637542,28858381 +g1,3364:13902125,28858381 +g1,3364:14218271,28858381 +h1,3364:15166708,28858381:0,0,0 +k1,3364:32583028,28858381:17416320 +g1,3364:32583028,28858381 +) +(1,3364:6630773,29524559:25952256,404226,82312 +h1,3364:6630773,29524559:0,0,0 +g1,3364:7579210,29524559 +g1,3364:9159938,29524559 +g1,3364:9476084,29524559 +g1,3364:10740667,29524559 +g1,3364:11056813,29524559 +g1,3364:12321396,29524559 +g1,3364:12637542,29524559 +g1,3364:13902125,29524559 +g1,3364:14218271,29524559 +h1,3364:15166708,29524559:0,0,0 +k1,3364:32583028,29524559:17416320 +g1,3364:32583028,29524559 +) +] +) +g1,3365:32583029,29606871 +g1,3365:6630773,29606871 +g1,3365:6630773,29606871 +g1,3365:32583029,29606871 +g1,3365:32583029,29606871 +) +h1,3365:6630773,29803479:0,0,0 +(1,3369:6630773,31169255:25952256,513147,134348 +h1,3368:6630773,31169255:983040,0,0 +k1,3368:10046755,31169255:616284 +k1,3368:13739954,31169255:616284 +k1,3368:15547683,31169255:616284 +k1,3368:19189764,31169255:616284 +k1,3368:20753699,31169255:616284 +k1,3368:23457305,31169255:616284 +k1,3368:26400772,31169255:616284 +k1,3368:28163281,31169255:616284 +k1,3368:32583029,31169255:0 +) +(1,3369:6630773,32010743:25952256,505283,134348 +(1,3368:6837867,32010743:0,452978,115847 +r1,3368:10713251,32010743:3875384,568825,115847 +k1,3368:6837867,32010743:-3875384 +) +(1,3368:6837867,32010743:3875384,452978,115847 +k1,3368:6837867,32010743:3277 +h1,3368:10709974,32010743:0,411205,112570 +) +k1,3368:11351284,32010743:257269 +k1,3368:14802778,32010743:257269 +k1,3368:15742932,32010743:257269 +k1,3368:18941457,32010743:257269 +k1,3368:20217811,32010743:257269 +k1,3368:23197445,32010743:257268 +(1,3368:23404539,32010743:0,452978,122846 +r1,3368:25521364,32010743:2116825,575824,122846 +k1,3368:23404539,32010743:-2116825 +) +(1,3368:23404539,32010743:2116825,452978,122846 +k1,3368:23404539,32010743:3277 +h1,3368:25518087,32010743:0,411205,112570 +) +k1,3368:25985727,32010743:257269 +k1,3368:27234556,32010743:257269 +k1,3368:30275794,32010743:257269 +k1,3368:31149101,32010743:257269 +k1,3369:32583029,32010743:0 +) +(1,3369:6630773,32852231:25952256,513147,134348 +k1,3368:7501173,32852231:281887 +k1,3368:10821964,32852231:281887 +k1,3368:14084428,32852231:281887 +k1,3368:18504257,32852231:281887 +k1,3368:21216218,32852231:281886 +k1,3368:24725098,32852231:281887 +k1,3368:28032782,32852231:281887 +k1,3368:29506114,32852231:281887 +k1,3368:32583029,32852231:0 +) +(1,3369:6630773,33693719:25952256,513147,7863 +g1,3368:7777653,33693719 +k1,3369:32583030,33693719:21898200 +g1,3369:32583030,33693719 +) +(1,3374:6630773,36501287:25952256,32768,229376 +(1,3374:6630773,36501287:0,32768,229376 +(1,3374:6630773,36501287:5505024,32768,229376 +r1,3374:12135797,36501287:5505024,262144,229376 +) +k1,3374:6630773,36501287:-5505024 +) +(1,3374:6630773,36501287:25952256,32768,0 +r1,3374:32583029,36501287:25952256,32768,0 +) +) +(1,3374:6630773,38105615:25952256,582746,9436 +(1,3374:6630773,38105615:2464678,582746,0 +g1,3374:6630773,38105615 +g1,3374:9095451,38105615 +) +k1,3374:32583028,38105615:20599012 +g1,3374:32583028,38105615 +) +(1,3378:6630773,39340319:25952256,513147,134348 +k1,3377:9136810,39340319:187373 +k1,3377:10315743,39340319:187373 +k1,3377:12016342,39340319:187373 +k1,3377:12855143,39340319:187373 +k1,3377:15574172,39340319:187373 +k1,3377:19164831,39340319:187374 +k1,3377:20953904,39340319:187373 +k1,3377:24446258,39340319:187373 +k1,3377:25652716,39340319:187373 +k1,3377:28064381,39340319:187373 +k1,3377:31563944,39340319:187373 +k1,3377:32583029,39340319:0 +) +(1,3378:6630773,40181807:25952256,505283,134348 +k1,3377:10300487,40181807:194995 +k1,3377:11111520,40181807:194995 +k1,3377:12077217,40181807:194994 +k1,3377:16054950,40181807:194995 +k1,3377:16932830,40181807:194995 +k1,3377:20357439,40181807:194995 +k1,3377:21168471,40181807:194994 +k1,3377:21719326,40181807:194995 +k1,3377:24187110,40181807:194995 +k1,3377:25939896,40181807:194995 +k1,3377:27239172,40181807:194994 +k1,3377:28181933,40181807:194995 +k1,3377:30727049,40181807:194995 +k1,3377:32583029,40181807:0 +) +(1,3378:6630773,41023295:25952256,513147,126483 +k1,3377:8354727,41023295:156333 +k1,3377:11692178,41023295:156333 +k1,3377:12531396,41023295:156333 +k1,3377:15662408,41023295:156333 +k1,3377:18300589,41023295:156333 +k1,3377:19653610,41023295:156334 +k1,3377:22572286,41023295:156333 +k1,3377:25358579,41023295:156333 +k1,3377:27525557,41023295:156333 +k1,3377:28673450,41023295:156333 +k1,3377:30697559,41023295:156333 +k1,3377:32583029,41023295:0 +) +(1,3378:6630773,41864783:25952256,513147,134348 +k1,3377:9133933,41864783:147141 +k1,3377:11505367,41864783:147142 +k1,3377:14002629,41864783:147141 +k1,3377:15543722,41864783:147142 +(1,3377:15543722,41864783:0,459977,115847 +r1,3377:18363971,41864783:2820249,575824,115847 +k1,3377:15543722,41864783:-2820249 +) +(1,3377:15543722,41864783:2820249,459977,115847 +k1,3377:15543722,41864783:3277 +h1,3377:18360694,41864783:0,411205,112570 +) +k1,3377:18511112,41864783:147141 +k1,3377:19649814,41864783:147142 +k1,3377:23134048,41864783:147141 +k1,3377:23964074,41864783:147141 +k1,3377:27731425,41864783:147142 +k1,3377:28293358,41864783:147090 +k1,3377:29726315,41864783:147141 +k1,3377:32583029,41864783:0 +) +(1,3378:6630773,42706271:25952256,513147,115847 +g1,3377:9337409,42706271 +g1,3377:11760930,42706271 +g1,3377:13244665,42706271 +g1,3377:14548176,42706271 +g1,3377:15495171,42706271 +g1,3377:18044521,42706271 +g1,3377:19637701,42706271 +g1,3377:22532426,42706271 +(1,3377:22532426,42706271:0,452978,115847 +r1,3377:25704386,42706271:3171960,568825,115847 +k1,3377:22532426,42706271:-3171960 +) +(1,3377:22532426,42706271:3171960,452978,115847 +k1,3377:22532426,42706271:3277 +h1,3377:25701109,42706271:0,411205,112570 +) +k1,3378:32583029,42706271:6704973 +g1,3378:32583029,42706271 +) +v1,3380:6630773,43896737:0,393216,0 +(1,3398:6630773,45436711:25952256,1933190,196608 +g1,3398:6630773,45436711 +g1,3398:6630773,45436711 +g1,3398:6434165,45436711 +(1,3398:6434165,45436711:0,1933190,196608 +r1,3398:32779637,45436711:26345472,2129798,196608 +k1,3398:6434165,45436711:-26345472 +) +(1,3398:6434165,45436711:26345472,1933190,196608 +[1,3398:6630773,45436711:25952256,1736582,0 +(1,3382:6630773,44104355:25952256,404226,101187 +(1,3381:6630773,44104355:0,0,0 +g1,3381:6630773,44104355 +g1,3381:6630773,44104355 +g1,3381:6303093,44104355 +(1,3381:6303093,44104355:0,0,0 +) +g1,3381:6630773,44104355 +) +g1,3382:9792230,44104355 +g1,3382:10740668,44104355 +g1,3382:14850563,44104355 +g1,3382:18328166,44104355 +g1,3382:21805769,44104355 +g1,3382:25283372,44104355 +g1,3382:28760975,44104355 +h1,3382:31922432,44104355:0,0,0 +k1,3382:32583029,44104355:660597 +g1,3382:32583029,44104355 +) +(1,3383:6630773,44770533:25952256,410518,101187 +h1,3383:6630773,44770533:0,0,0 +g1,3383:9792230,44770533 +g1,3383:10740668,44770533 +k1,3383:10740668,44770533:0 +h1,3383:16115144,44770533:0,0,0 +k1,3383:32583029,44770533:16467885 +g1,3383:32583029,44770533 +) +(1,3384:6630773,45436711:25952256,410518,101187 +h1,3384:6630773,45436711:0,0,0 +h1,3384:9476084,45436711:0,0,0 +k1,3384:32583028,45436711:23106944 +g1,3384:32583028,45436711 +) +] +) +g1,3398:32583029,45436711 +g1,3398:6630773,45436711 +g1,3398:6630773,45436711 +g1,3398:32583029,45436711 +g1,3398:32583029,45436711 +) +] +(1,3398:32583029,45706769:0,0,0 +g1,3398:32583029,45706769 +) +) +] +(1,3398:6630773,47279633:25952256,0,0 +h1,3398:6630773,47279633:25952256,0,0 +) +] +h1,3398:4262630,4025873:0,0,0 ] !25744 }67 -Input:433:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:434:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:435:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:436:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:437:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:438:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:439:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:440:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:441:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:442:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:443:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:444:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:445:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 +Input:429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1194 {68 -[1,3458:4262630,47279633:28320399,43253760,0 -(1,3458:4262630,4025873:0,0,0 -[1,3458:-473657,4025873:25952256,0,0 -(1,3458:-473657,-710414:25952256,0,0 -h1,3458:-473657,-710414:0,0,0 -(1,3458:-473657,-710414:0,0,0 -(1,3458:-473657,-710414:0,0,0 -g1,3458:-473657,-710414 -(1,3458:-473657,-710414:65781,0,65781 -g1,3458:-407876,-710414 -[1,3458:-407876,-644633:0,0,0 +[1,3464:4262630,47279633:28320399,43253760,0 +(1,3464:4262630,4025873:0,0,0 +[1,3464:-473657,4025873:25952256,0,0 +(1,3464:-473657,-710414:25952256,0,0 +h1,3464:-473657,-710414:0,0,0 +(1,3464:-473657,-710414:0,0,0 +(1,3464:-473657,-710414:0,0,0 +g1,3464:-473657,-710414 +(1,3464:-473657,-710414:65781,0,65781 +g1,3464:-407876,-710414 +[1,3464:-407876,-644633:0,0,0 ] ) -k1,3458:-473657,-710414:-65781 +k1,3464:-473657,-710414:-65781 ) ) -k1,3458:25478599,-710414:25952256 -g1,3458:25478599,-710414 +k1,3464:25478599,-710414:25952256 +g1,3464:25478599,-710414 ) ] ) -[1,3458:6630773,47279633:25952256,43253760,0 -[1,3458:6630773,4812305:25952256,786432,0 -(1,3458:6630773,4812305:25952256,473825,11795 -(1,3458:6630773,4812305:25952256,473825,11795 -g1,3458:3078558,4812305 -[1,3458:3078558,4812305:0,0,0 -(1,3458:3078558,2439708:0,1703936,0 -k1,3458:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3458:2537886,2439708:1179648,16384,0 +[1,3464:6630773,47279633:25952256,43253760,0 +[1,3464:6630773,4812305:25952256,786432,0 +(1,3464:6630773,4812305:25952256,473825,11795 +(1,3464:6630773,4812305:25952256,473825,11795 +g1,3464:3078558,4812305 +[1,3464:3078558,4812305:0,0,0 +(1,3464:3078558,2439708:0,1703936,0 +k1,3464:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3464:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3458:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3464:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3458:3078558,4812305:0,0,0 -(1,3458:3078558,2439708:0,1703936,0 -g1,3458:29030814,2439708 -g1,3458:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3458:36151628,1915420:16384,1179648,0 +[1,3464:3078558,4812305:0,0,0 +(1,3464:3078558,2439708:0,1703936,0 +g1,3464:29030814,2439708 +g1,3464:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3464:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3458:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3464:37855564,2439708:1179648,16384,0 ) ) -k1,3458:3078556,2439708:-34777008 +k1,3464:3078556,2439708:-34777008 ) ] -[1,3458:3078558,4812305:0,0,0 -(1,3458:3078558,49800853:0,16384,2228224 -k1,3458:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3458:2537886,49800853:1179648,16384,0 +[1,3464:3078558,4812305:0,0,0 +(1,3464:3078558,49800853:0,16384,2228224 +k1,3464:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3464:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3458:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3464:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3458:3078558,4812305:0,0,0 -(1,3458:3078558,49800853:0,16384,2228224 -g1,3458:29030814,49800853 -g1,3458:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3458:36151628,51504789:16384,1179648,0 +[1,3464:3078558,4812305:0,0,0 +(1,3464:3078558,49800853:0,16384,2228224 +g1,3464:29030814,49800853 +g1,3464:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3464:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3458:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3464:37855564,49800853:1179648,16384,0 ) ) -k1,3458:3078556,49800853:-34777008 +k1,3464:3078556,49800853:-34777008 ) ] -g1,3458:6630773,4812305 -g1,3458:6630773,4812305 -g1,3458:9104757,4812305 -k1,3458:31786111,4812305:22681354 -) -) -] -[1,3458:6630773,45706769:25952256,40108032,0 -(1,3458:6630773,45706769:25952256,40108032,0 -(1,3458:6630773,45706769:0,0,0 -g1,3458:6630773,45706769 +g1,3464:6630773,4812305 +g1,3464:6630773,4812305 +g1,3464:9104757,4812305 +k1,3464:31786111,4812305:22681354 +) +) +] +[1,3464:6630773,45706769:25952256,40108032,0 +(1,3464:6630773,45706769:25952256,40108032,0 +(1,3464:6630773,45706769:0,0,0 +g1,3464:6630773,45706769 ) -[1,3458:6630773,45706769:25952256,40108032,0 -v1,3392:6630773,6254097:0,393216,0 -(1,3392:6630773,10519791:25952256,4658910,196608 -g1,3392:6630773,10519791 -g1,3392:6630773,10519791 -g1,3392:6434165,10519791 -(1,3392:6434165,10519791:0,4658910,196608 -r1,3392:32779637,10519791:26345472,4855518,196608 -k1,3392:6434165,10519791:-26345472 +[1,3464:6630773,45706769:25952256,40108032,0 +v1,3398:6630773,6254097:0,393216,0 +(1,3398:6630773,10519791:25952256,4658910,196608 +g1,3398:6630773,10519791 +g1,3398:6630773,10519791 +g1,3398:6434165,10519791 +(1,3398:6434165,10519791:0,4658910,196608 +r1,3398:32779637,10519791:26345472,4855518,196608 +k1,3398:6434165,10519791:-26345472 ) -(1,3392:6434165,10519791:26345472,4658910,196608 -[1,3392:6630773,10519791:25952256,4462302,0 -(1,3383:6630773,6461715:25952256,404226,76021 -(1,3380:6630773,6461715:0,0,0 -g1,3380:6630773,6461715 -g1,3380:6630773,6461715 -g1,3380:6303093,6461715 -(1,3380:6303093,6461715:0,0,0 -) -g1,3380:6630773,6461715 -) -g1,3383:7579210,6461715 -g1,3383:8843793,6461715 -g1,3383:11372959,6461715 -g1,3383:13902125,6461715 -g1,3383:16431291,6461715 -g1,3383:18960457,6461715 -g1,3383:21489623,6461715 -h1,3383:23702643,6461715:0,0,0 -k1,3383:32583029,6461715:8880386 -g1,3383:32583029,6461715 -) -(1,3383:6630773,7127893:25952256,404226,6290 -h1,3383:6630773,7127893:0,0,0 -g1,3383:7579210,7127893 -g1,3383:10108376,7127893 -g1,3383:12637542,7127893 -h1,3383:14850562,7127893:0,0,0 -k1,3383:32583030,7127893:17732468 -g1,3383:32583030,7127893 -) -(1,3385:6630773,8449431:25952256,410518,101187 -(1,3384:6630773,8449431:0,0,0 -g1,3384:6630773,8449431 -g1,3384:6630773,8449431 -g1,3384:6303093,8449431 -(1,3384:6303093,8449431:0,0,0 -) -g1,3384:6630773,8449431 -) -g1,3385:9792230,8449431 -g1,3385:10740668,8449431 -g1,3385:13585980,8449431 -g1,3385:14218272,8449431 -g1,3385:17695875,8449431 -g1,3385:19908895,8449431 -g1,3385:20541187,8449431 -g1,3385:24651082,8449431 -h1,3385:28128684,8449431:0,0,0 -k1,3385:32583029,8449431:4454345 -g1,3385:32583029,8449431 -) -(1,3386:6630773,9115609:25952256,410518,101187 -h1,3386:6630773,9115609:0,0,0 -h1,3386:9476084,9115609:0,0,0 -k1,3386:32583028,9115609:23106944 -g1,3386:32583028,9115609 -) -(1,3391:6630773,9847323:25952256,404226,76021 -(1,3388:6630773,9847323:0,0,0 -g1,3388:6630773,9847323 -g1,3388:6630773,9847323 -g1,3388:6303093,9847323 -(1,3388:6303093,9847323:0,0,0 -) -g1,3388:6630773,9847323 -) -g1,3391:7579210,9847323 -g1,3391:8843793,9847323 -g1,3391:11372959,9847323 -g1,3391:13902125,9847323 -g1,3391:16431291,9847323 -g1,3391:18960457,9847323 -g1,3391:21489623,9847323 -h1,3391:23702643,9847323:0,0,0 -k1,3391:32583029,9847323:8880386 -g1,3391:32583029,9847323 -) -(1,3391:6630773,10513501:25952256,404226,6290 -h1,3391:6630773,10513501:0,0,0 -g1,3391:7579210,10513501 -g1,3391:10108376,10513501 -g1,3391:12637542,10513501 -h1,3391:14850562,10513501:0,0,0 -k1,3391:32583030,10513501:17732468 -g1,3391:32583030,10513501 -) -] -) -g1,3392:32583029,10519791 -g1,3392:6630773,10519791 -g1,3392:6630773,10519791 -g1,3392:32583029,10519791 -g1,3392:32583029,10519791 -) -h1,3392:6630773,10716399:0,0,0 -(1,3396:6630773,12082175:25952256,513147,95026 -h1,3395:6630773,12082175:983040,0,0 -k1,3395:9016545,12082175:206045 -k1,3395:11066773,12082175:206045 -k1,3395:14355632,12082175:206045 -k1,3395:15220970,12082175:206046 -k1,3395:16446100,12082175:206045 -k1,3395:18444555,12082175:206045 -k1,3395:19754882,12082175:206045 -k1,3395:20708693,12082175:206045 -k1,3395:21849281,12082175:206045 -k1,3395:23753364,12082175:206045 -k1,3395:24978494,12082175:206045 -k1,3395:27078530,12082175:206046 -k1,3395:27816072,12082175:206045 -k1,3395:30545908,12082175:206045 -k1,3395:31379788,12082175:206045 -k1,3395:32583029,12082175:0 -) -(1,3396:6630773,12923663:25952256,505283,134348 -k1,3395:8352737,12923663:181213 -k1,3395:10231988,12923663:181213 -k1,3395:12503144,12923663:181213 -(1,3395:12503144,12923663:0,459977,115847 -r1,3395:15323393,12923663:2820249,575824,115847 -k1,3395:12503144,12923663:-2820249 -) -(1,3395:12503144,12923663:2820249,459977,115847 -k1,3395:12503144,12923663:3277 -h1,3395:15320116,12923663:0,411205,112570 -) -k1,3395:15678276,12923663:181213 -k1,3395:19470523,12923663:181213 -(1,3395:19470523,12923663:0,452978,115847 -r1,3395:21587348,12923663:2116825,568825,115847 -k1,3395:19470523,12923663:-2116825 -) -(1,3395:19470523,12923663:2116825,452978,115847 -k1,3395:19470523,12923663:3277 -h1,3395:21584071,12923663:0,411205,112570 -) -k1,3395:21768562,12923663:181214 -k1,3395:23141220,12923663:181213 -(1,3395:23141220,12923663:0,452978,115847 -r1,3395:25258045,12923663:2116825,568825,115847 -k1,3395:23141220,12923663:-2116825 -) -(1,3395:23141220,12923663:2116825,452978,115847 -k1,3395:23141220,12923663:3277 -h1,3395:25254768,12923663:0,411205,112570 -) -k1,3395:25439258,12923663:181213 -k1,3395:27800854,12923663:181213 -k1,3395:29448763,12923663:181213 -k1,3395:30377742,12923663:181213 -k1,3395:32583029,12923663:0 -) -(1,3396:6630773,13765151:25952256,505283,134348 -k1,3395:7197706,13765151:211073 -k1,3395:9386655,13765151:211072 -k1,3395:10283890,13765151:211073 -k1,3395:13740961,13765151:211073 -k1,3395:15345985,13765151:211073 -k1,3395:17349467,13765151:211072 -k1,3395:18751985,13765151:211073 -k1,3395:21934460,13765151:211073 -k1,3395:23989715,13765151:211072 -k1,3395:24816826,13765151:211073 -k1,3395:26046984,13765151:211073 -k1,3395:27911530,13765151:211073 -k1,3395:30736833,13765151:211072 -k1,3395:31563944,13765151:211073 -k1,3395:32583029,13765151:0 -) -(1,3396:6630773,14606639:25952256,513147,134348 -k1,3395:8074202,14606639:270990 -k1,3395:10827040,14606639:270990 -k1,3395:12294718,14606639:270991 -k1,3395:15638036,14606639:270990 -k1,3395:18114313,14606639:270990 -k1,3395:19036731,14606639:270990 -(1,3395:19036731,14606639:0,452978,115847 -r1,3395:21153556,14606639:2116825,568825,115847 -k1,3395:19036731,14606639:-2116825 -) -(1,3395:19036731,14606639:2116825,452978,115847 -k1,3395:19036731,14606639:3277 -h1,3395:21150279,14606639:0,411205,112570 -) -k1,3395:21424546,14606639:270990 -k1,3395:25269870,14606639:270990 -k1,3395:26559946,14606639:270991 -k1,3395:28570262,14606639:270990 -k1,3395:29500544,14606639:270990 -k1,3395:30790619,14606639:270990 -k1,3395:32583029,14606639:0 -) -(1,3396:6630773,15448127:25952256,505283,134348 -k1,3395:8676431,15448127:190989 -k1,3395:9676791,15448127:190990 -k1,3395:11376419,15448127:190989 -k1,3395:12587805,15448127:190990 -k1,3395:14847110,15448127:190989 -k1,3395:15720985,15448127:190990 -k1,3395:18096289,15448127:190989 -k1,3395:19478724,15448127:190990 -k1,3395:20688798,15448127:190989 -k1,3395:23952116,15448127:190990 -k1,3395:26348392,15448127:190989 -k1,3395:27190810,15448127:190990 -(1,3395:27190810,15448127:0,452978,115847 -r1,3395:29307635,15448127:2116825,568825,115847 -k1,3395:27190810,15448127:-2116825 -) -(1,3395:27190810,15448127:2116825,452978,115847 -k1,3395:27190810,15448127:3277 -h1,3395:29304358,15448127:0,411205,112570 -) -k1,3395:29498624,15448127:190989 -k1,3395:31299834,15448127:190990 -k1,3395:32583029,15448127:0 -) -(1,3396:6630773,16289615:25952256,505283,7863 -g1,3395:8898318,16289615 -g1,3395:9748975,16289615 -g1,3395:10967289,16289615 -k1,3396:32583029,16289615:19649660 -g1,3396:32583029,16289615 -) -v1,3398:6630773,17480081:0,393216,0 -(1,3408:6630773,20424237:25952256,3337372,196608 -g1,3408:6630773,20424237 -g1,3408:6630773,20424237 -g1,3408:6434165,20424237 -(1,3408:6434165,20424237:0,3337372,196608 -r1,3408:32779637,20424237:26345472,3533980,196608 -k1,3408:6434165,20424237:-26345472 -) -(1,3408:6434165,20424237:26345472,3337372,196608 -[1,3408:6630773,20424237:25952256,3140764,0 -(1,3400:6630773,17687699:25952256,404226,101187 -(1,3399:6630773,17687699:0,0,0 -g1,3399:6630773,17687699 -g1,3399:6630773,17687699 -g1,3399:6303093,17687699 -(1,3399:6303093,17687699:0,0,0 -) -g1,3399:6630773,17687699 -) -g1,3400:9792230,17687699 -g1,3400:10740668,17687699 -g1,3400:12321398,17687699 -g1,3400:13269836,17687699 -g1,3400:14218274,17687699 -g1,3400:15166712,17687699 -g1,3400:16115150,17687699 -h1,3400:16747442,17687699:0,0,0 -k1,3400:32583029,17687699:15835587 -g1,3400:32583029,17687699 -) -(1,3401:6630773,18353877:25952256,410518,101187 -h1,3401:6630773,18353877:0,0,0 -k1,3401:9689207,18353877:213123 -k1,3401:10534621,18353877:213122 -k1,3401:13276910,18353877:213123 -k1,3401:13806178,18353877:213122 -k1,3401:17180758,18353877:213123 -k1,3401:19290754,18353877:213122 -k1,3401:19820023,18353877:213123 -k1,3401:21297730,18353877:213123 -k1,3401:22459290,18353877:213122 -k1,3401:24569287,18353877:213123 -k1,3401:25098555,18353877:213122 -k1,3401:29105427,18353877:213123 -h1,3401:32583029,18353877:0,0,0 -k1,3401:32583029,18353877:0 -k1,3401:32583029,18353877:0 -) -(1,3402:6630773,19020055:25952256,410518,101187 -h1,3402:6630773,19020055:0,0,0 -h1,3402:9476084,19020055:0,0,0 -k1,3402:32583028,19020055:23106944 -g1,3402:32583028,19020055 -) -(1,3407:6630773,19751769:25952256,404226,76021 -(1,3404:6630773,19751769:0,0,0 -g1,3404:6630773,19751769 -g1,3404:6630773,19751769 -g1,3404:6303093,19751769 -(1,3404:6303093,19751769:0,0,0 -) -g1,3404:6630773,19751769 -) -g1,3407:7579210,19751769 -g1,3407:8843793,19751769 -g1,3407:11372959,19751769 -g1,3407:13902125,19751769 -g1,3407:16431291,19751769 -g1,3407:18960457,19751769 -g1,3407:21489623,19751769 -h1,3407:23702643,19751769:0,0,0 -k1,3407:32583029,19751769:8880386 -g1,3407:32583029,19751769 -) -(1,3407:6630773,20417947:25952256,404226,6290 -h1,3407:6630773,20417947:0,0,0 -g1,3407:7579210,20417947 -g1,3407:10108376,20417947 -g1,3407:12637542,20417947 -h1,3407:14850562,20417947:0,0,0 -k1,3407:32583030,20417947:17732468 -g1,3407:32583030,20417947 -) -] -) -g1,3408:32583029,20424237 -g1,3408:6630773,20424237 -g1,3408:6630773,20424237 -g1,3408:32583029,20424237 -g1,3408:32583029,20424237 -) -h1,3408:6630773,20620845:0,0,0 -(1,3412:6630773,21986621:25952256,513147,134348 -h1,3411:6630773,21986621:983040,0,0 -k1,3411:8341514,21986621:257808 -k1,3411:9130820,21986621:257809 -k1,3411:11517893,21986621:257808 -k1,3411:15041361,21986621:257809 -k1,3411:15950597,21986621:257808 -k1,3411:17300891,21986621:257809 -k1,3411:21171699,21986621:257808 -k1,3411:23273691,21986621:257809 -k1,3411:24479150,21986621:257808 -k1,3411:26703039,21986621:257809 -k1,3411:29792002,21986621:257808 -k1,3411:30507908,21986621:257809 -k1,3411:31297213,21986621:257808 -k1,3411:32583029,21986621:0 -) -(1,3412:6630773,22828109:25952256,505283,126483 -g1,3411:9459962,22828109 -g1,3411:10310619,22828109 -g1,3411:11602333,22828109 -k1,3412:32583029,22828109:17990944 -g1,3412:32583029,22828109 -) -(1,3414:6630773,23669597:25952256,505283,126483 -h1,3413:6630773,23669597:983040,0,0 -k1,3413:8455904,23669597:214256 -k1,3413:9689245,23669597:214256 -k1,3413:12895220,23669597:214256 -k1,3413:14964799,23669597:214255 -k1,3413:16047407,23669597:214256 -k1,3413:18466950,23669597:214256 -k1,3413:19037066,23669597:214256 -k1,3413:21871451,23669597:214256 -k1,3413:24063584,23669597:214256 -k1,3413:24960725,23669597:214256 -k1,3413:25530840,23669597:214255 -k1,3413:28719775,23669597:214256 -k1,3413:30911908,23669597:214256 -k1,3413:31812326,23669597:214256 -k1,3413:32583029,23669597:0 -) -(1,3414:6630773,24511085:25952256,513147,134348 -k1,3413:9879250,24511085:176149 -k1,3413:11003050,24511085:176149 -k1,3413:14459931,24511085:176149 -(1,3413:14459931,24511085:0,414482,115847 -r1,3413:14818197,24511085:358266,530329,115847 -k1,3413:14459931,24511085:-358266 -) -(1,3413:14459931,24511085:358266,414482,115847 -k1,3413:14459931,24511085:3277 -h1,3413:14814920,24511085:0,411205,112570 -) -k1,3413:14994347,24511085:176150 -k1,3413:15829788,24511085:176149 -k1,3413:18701433,24511085:176149 -(1,3413:18701433,24511085:0,459977,115847 -r1,3413:21521682,24511085:2820249,575824,115847 -k1,3413:18701433,24511085:-2820249 -) -(1,3413:18701433,24511085:2820249,459977,115847 -k1,3413:18701433,24511085:3277 -h1,3413:21518405,24511085:0,411205,112570 -) -k1,3413:21871501,24511085:176149 -k1,3413:22517543,24511085:176149 -k1,3413:23225189,24511085:176149 -k1,3413:24687154,24511085:176149 -k1,3413:27493264,24511085:176150 -k1,3413:28320841,24511085:176149 -k1,3413:29934195,24511085:176149 -k1,3413:30466204,24511085:176149 -(1,3413:30466204,24511085:0,459977,115847 -r1,3413:32583029,24511085:2116825,575824,115847 -k1,3413:30466204,24511085:-2116825 -) -(1,3413:30466204,24511085:2116825,459977,115847 -k1,3413:30466204,24511085:3277 -h1,3413:32579752,24511085:0,411205,112570 -) -k1,3413:32583029,24511085:0 -) -(1,3414:6630773,25352573:25952256,513147,134348 -k1,3413:7567626,25352573:250691 -k1,3413:8589019,25352573:250690 -k1,3413:11912038,25352573:250691 -k1,3413:13110379,25352573:250690 -k1,3413:16641802,25352573:250691 -(1,3413:16641802,25352573:0,414482,115847 -r1,3413:17000068,25352573:358266,530329,115847 -k1,3413:16641802,25352573:-358266 -) -(1,3413:16641802,25352573:358266,414482,115847 -k1,3413:16641802,25352573:3277 -h1,3413:16996791,25352573:0,411205,112570 -) -k1,3413:17424428,25352573:250690 -k1,3413:18628668,25352573:250691 -k1,3413:19971844,25352573:250691 -k1,3413:22961939,25352573:250690 -k1,3413:24606581,25352573:250691 -k1,3413:25213131,25352573:250690 -k1,3413:26655267,25352573:250691 -k1,3413:29906851,25352573:250690 -k1,3413:30513402,25352573:250691 -k1,3413:32583029,25352573:0 -) -(1,3414:6630773,26194061:25952256,513147,115847 -k1,3413:8842737,26194061:234087 -k1,3413:9728252,26194061:234087 -k1,3413:12166315,26194061:234087 -k1,3413:13166518,26194061:234087 -k1,3413:16792748,26194061:234087 -k1,3413:17980384,26194061:234087 -k1,3413:19306956,26194061:234087 -k1,3413:22236539,26194061:234087 -(1,3413:22236539,26194061:0,452978,115847 -r1,3413:25056788,26194061:2820249,568825,115847 -k1,3413:22236539,26194061:-2820249 -) -(1,3413:22236539,26194061:2820249,452978,115847 -k1,3413:22236539,26194061:3277 -h1,3413:25053511,26194061:0,411205,112570 -) -k1,3413:25290875,26194061:234087 -k1,3413:26176390,26194061:234087 -k1,3413:27797219,26194061:234087 -k1,3413:28644068,26194061:234087 -k1,3413:29897240,26194061:234087 -k1,3413:31923737,26194061:234087 -k1,3413:32583029,26194061:0 -) -(1,3414:6630773,27035549:25952256,513147,7863 -g1,3413:7849087,27035549 -k1,3414:32583029,27035549:22335980 -g1,3414:32583029,27035549 -) -v1,3416:6630773,28226015:0,393216,0 -(1,3439:6630773,35949145:25952256,8116346,196608 -g1,3439:6630773,35949145 -g1,3439:6630773,35949145 -g1,3439:6434165,35949145 -(1,3439:6434165,35949145:0,8116346,196608 -r1,3439:32779637,35949145:26345472,8312954,196608 -k1,3439:6434165,35949145:-26345472 -) -(1,3439:6434165,35949145:26345472,8116346,196608 -[1,3439:6630773,35949145:25952256,7919738,0 -(1,3418:6630773,28439925:25952256,410518,101187 -(1,3417:6630773,28439925:0,0,0 -g1,3417:6630773,28439925 -g1,3417:6630773,28439925 -g1,3417:6303093,28439925 -(1,3417:6303093,28439925:0,0,0 -) -g1,3417:6630773,28439925 -) -k1,3418:6630773,28439925:0 -h1,3418:12005249,28439925:0,0,0 -k1,3418:32583029,28439925:20577780 -g1,3418:32583029,28439925 -) -(1,3422:6630773,29171639:25952256,404226,76021 -(1,3420:6630773,29171639:0,0,0 -g1,3420:6630773,29171639 -g1,3420:6630773,29171639 -g1,3420:6303093,29171639 -(1,3420:6303093,29171639:0,0,0 -) -g1,3420:6630773,29171639 -) -g1,3422:7579210,29171639 -g1,3422:8843793,29171639 -g1,3422:12005250,29171639 -h1,3422:14850561,29171639:0,0,0 -k1,3422:32583029,29171639:17732468 -g1,3422:32583029,29171639 -) -(1,3424:6630773,30493177:25952256,410518,101187 -(1,3423:6630773,30493177:0,0,0 -g1,3423:6630773,30493177 -g1,3423:6630773,30493177 -g1,3423:6303093,30493177 -(1,3423:6303093,30493177:0,0,0 -) -g1,3423:6630773,30493177 -) -g1,3424:11372959,30493177 -g1,3424:12321397,30493177 -g1,3424:18644311,30493177 -g1,3424:19592748,30493177 -h1,3424:22754205,30493177:0,0,0 -k1,3424:32583029,30493177:9828824 -g1,3424:32583029,30493177 -) -(1,3425:6630773,31159355:25952256,410518,6290 -h1,3425:6630773,31159355:0,0,0 -h1,3425:11056813,31159355:0,0,0 -k1,3425:32583029,31159355:21526216 -g1,3425:32583029,31159355 -) -(1,3430:6630773,31891069:25952256,404226,76021 -(1,3427:6630773,31891069:0,0,0 -g1,3427:6630773,31891069 -g1,3427:6630773,31891069 -g1,3427:6303093,31891069 -(1,3427:6303093,31891069:0,0,0 -) -g1,3427:6630773,31891069 -) -g1,3430:7579210,31891069 -g1,3430:8843793,31891069 -g1,3430:11372959,31891069 -g1,3430:13902125,31891069 -h1,3430:16115145,31891069:0,0,0 -k1,3430:32583029,31891069:16467884 -g1,3430:32583029,31891069 -) -(1,3430:6630773,32557247:25952256,404226,6290 -h1,3430:6630773,32557247:0,0,0 -g1,3430:7579210,32557247 -g1,3430:10108376,32557247 -g1,3430:12637542,32557247 -h1,3430:14850562,32557247:0,0,0 -k1,3430:32583030,32557247:17732468 -g1,3430:32583030,32557247 -) -(1,3432:6630773,33878785:25952256,410518,76021 -(1,3431:6630773,33878785:0,0,0 -g1,3431:6630773,33878785 -g1,3431:6630773,33878785 -g1,3431:6303093,33878785 -(1,3431:6303093,33878785:0,0,0 -) -g1,3431:6630773,33878785 -) -g1,3432:11372959,33878785 -g1,3432:12321397,33878785 -k1,3432:12321397,33878785:0 -h1,3432:19276602,33878785:0,0,0 -k1,3432:32583029,33878785:13306427 -g1,3432:32583029,33878785 -) -(1,3433:6630773,34544963:25952256,410518,6290 -h1,3433:6630773,34544963:0,0,0 -h1,3433:11056813,34544963:0,0,0 -k1,3433:32583029,34544963:21526216 -g1,3433:32583029,34544963 -) -(1,3438:6630773,35276677:25952256,404226,76021 -(1,3435:6630773,35276677:0,0,0 -g1,3435:6630773,35276677 -g1,3435:6630773,35276677 -g1,3435:6303093,35276677 -(1,3435:6303093,35276677:0,0,0 -) -g1,3435:6630773,35276677 -) -g1,3438:7579210,35276677 -g1,3438:8843793,35276677 -g1,3438:11372959,35276677 -g1,3438:13902125,35276677 -h1,3438:16115145,35276677:0,0,0 -k1,3438:32583029,35276677:16467884 -g1,3438:32583029,35276677 -) -(1,3438:6630773,35942855:25952256,404226,6290 -h1,3438:6630773,35942855:0,0,0 -g1,3438:7579210,35942855 -g1,3438:10108376,35942855 -h1,3438:12321396,35942855:0,0,0 -k1,3438:32583028,35942855:20261632 -g1,3438:32583028,35942855 -) -] -) -g1,3439:32583029,35949145 -g1,3439:6630773,35949145 -g1,3439:6630773,35949145 -g1,3439:32583029,35949145 -g1,3439:32583029,35949145 -) -h1,3439:6630773,36145753:0,0,0 -(1,3443:6630773,37511529:25952256,513147,134348 -h1,3442:6630773,37511529:983040,0,0 -k1,3442:8334658,37511529:250952 -k1,3442:9689893,37511529:250953 -k1,3442:10688611,37511529:250952 -k1,3442:12379390,37511529:250953 -k1,3442:14485666,37511529:250952 -k1,3442:16021124,37511529:250952 -k1,3442:19599340,37511529:250953 -k1,3442:21343202,37511529:250952 -k1,3442:22660425,37511529:250952 -k1,3442:24435745,37511529:250953 -k1,3442:27029609,37511529:250952 -k1,3442:29174552,37511529:250953 -k1,3442:31391584,37511529:250952 -k1,3442:32583029,37511529:0 -) -(1,3443:6630773,38353017:25952256,513147,126483 -g1,3442:8114508,38353017 -(1,3442:8114508,38353017:0,459977,115847 -r1,3442:10934757,38353017:2820249,575824,115847 -k1,3442:8114508,38353017:-2820249 -) -(1,3442:8114508,38353017:2820249,459977,115847 -k1,3442:8114508,38353017:3277 -h1,3442:10931480,38353017:0,411205,112570 -) -g1,3442:11133986,38353017 -g1,3442:12437497,38353017 -g1,3442:13384492,38353017 -g1,3442:15096947,38353017 -g1,3442:15947604,38353017 -g1,3442:19044180,38353017 -g1,3442:20767776,38353017 -g1,3442:21986090,38353017 -g1,3442:24528231,38353017 -g1,3442:26621450,38353017 -k1,3443:32583029,38353017:3995499 -g1,3443:32583029,38353017 -) -v1,3445:6630773,39718793:0,393216,0 -(1,3458:6630773,44603800:25952256,5278223,589824 -g1,3458:6630773,44603800 -(1,3458:6630773,44603800:25952256,5278223,589824 -(1,3458:6630773,45193624:25952256,5868047,0 -[1,3458:6630773,45193624:25952256,5868047,0 -(1,3458:6630773,45193624:25952256,5841833,0 -r1,3458:6656987,45193624:26214,5841833,0 -[1,3458:6656987,45193624:25899828,5841833,0 -(1,3458:6656987,44603800:25899828,4662185,0 -[1,3458:7246811,44603800:24720180,4662185,0 -(1,3446:7246811,41103500:24720180,1161885,196608 -(1,3445:7246811,41103500:0,1161885,196608 -r1,3458:8794447,41103500:1547636,1358493,196608 -k1,3445:7246811,41103500:-1547636 -) -(1,3445:7246811,41103500:1547636,1161885,196608 -) -k1,3445:8959415,41103500:164968 -k1,3445:10907618,41103500:164968 -k1,3445:12091670,41103500:164967 -k1,3445:14597584,41103500:164968 -k1,3445:15421844,41103500:164968 -k1,3445:17379222,41103500:164968 -k1,3445:18075687,41103500:164968 -k1,3445:20688424,41103500:164967 -k1,3445:21311489,41103500:164968 -k1,3445:22007954,41103500:164968 -k1,3445:24802882,41103500:164968 -k1,3445:25619278,41103500:164968 -k1,3445:26876730,41103500:164967 -k1,3445:29737194,41103500:164968 -(1,3445:29737194,41103500:0,452978,122846 -r1,3458:31150595,41103500:1413401,575824,122846 -k1,3445:29737194,41103500:-1413401 -) -(1,3445:29737194,41103500:1413401,452978,122846 -k1,3445:29737194,41103500:3277 -h1,3445:31147318,41103500:0,411205,112570 -) -k1,3445:31315563,41103500:164968 -k1,3445:31966991,41103500:0 -) -(1,3446:7246811,41944988:24720180,513147,134348 -k1,3445:10193180,41944988:180750 -k1,3445:12108667,41944988:180749 -k1,3445:12905455,41944988:180750 -k1,3445:13442064,41944988:180749 -k1,3445:15690475,41944988:180750 -k1,3445:19276475,41944988:180749 -k1,3445:19915322,41944988:180750 -k1,3445:20627568,41944988:180749 -k1,3445:22458515,41944988:180750 -k1,3445:24360240,41944988:180750 -k1,3445:25192417,41944988:180749 -k1,3445:26785468,41944988:180750 -k1,3445:28355580,41944988:180749 -k1,3445:29803796,41944988:180750 -k1,3445:30399370,41944988:180731 -k1,3445:31966991,41944988:0 -) -(1,3446:7246811,42786476:24720180,513147,134348 -k1,3445:8748951,42786476:188798 -k1,3445:9553788,42786476:188799 -k1,3445:11628057,42786476:188798 -k1,3445:12835941,42786476:188799 -k1,3445:16169156,42786476:188798 -k1,3445:18184442,42786476:188798 -k1,3445:19364801,42786476:188799 -k1,3445:21887991,42786476:188798 -k1,3445:24860759,42786476:188799 -k1,3445:25735719,42786476:188798 -k1,3445:28899197,42786476:188799 -k1,3445:31284106,42786476:188798 -k1,3445:31966991,42786476:0 -) -(1,3446:7246811,43627964:24720180,513147,122846 -k1,3445:10097542,43627964:230602 -k1,3445:12512459,43627964:230602 -k1,3445:15587324,43627964:230602 -k1,3445:17515964,43627964:230602 -k1,3445:18614918,43627964:230602 -k1,3445:20375786,43627964:230602 -k1,3445:21257817,43627964:230603 -k1,3445:23417799,43627964:230602 -k1,3445:24004261,43627964:230602 -k1,3445:26128853,43627964:230602 -k1,3445:28369444,43627964:230602 -k1,3445:29218706,43627964:230602 -(1,3445:29218706,43627964:0,452978,122846 -r1,3458:30632107,43627964:1413401,575824,122846 -k1,3445:29218706,43627964:-1413401 -) -(1,3445:29218706,43627964:1413401,452978,122846 -k1,3445:29218706,43627964:3277 -h1,3445:30628830,43627964:0,411205,112570 -) -k1,3445:30862709,43627964:230602 -k1,3445:31966991,43627964:0 -) -(1,3446:7246811,44469452:24720180,473825,134348 -g1,3445:8836714,44469452 -g1,3445:10728083,44469452 -k1,3446:31966992,44469452:19036244 -g1,3446:31966992,44469452 -) -] -) -] -r1,3458:32583029,45193624:26214,5841833,0 -) -] -) -) -g1,3458:32583029,44603800 -) -] -(1,3458:32583029,45706769:0,0,0 -g1,3458:32583029,45706769 -) -) -] -(1,3458:6630773,47279633:25952256,0,0 -h1,3458:6630773,47279633:25952256,0,0 -) -] -h1,3458:4262630,4025873:0,0,0 +(1,3398:6434165,10519791:26345472,4658910,196608 +[1,3398:6630773,10519791:25952256,4462302,0 +(1,3389:6630773,6461715:25952256,404226,76021 +(1,3386:6630773,6461715:0,0,0 +g1,3386:6630773,6461715 +g1,3386:6630773,6461715 +g1,3386:6303093,6461715 +(1,3386:6303093,6461715:0,0,0 +) +g1,3386:6630773,6461715 +) +g1,3389:7579210,6461715 +g1,3389:8843793,6461715 +g1,3389:11372959,6461715 +g1,3389:13902125,6461715 +g1,3389:16431291,6461715 +g1,3389:18960457,6461715 +g1,3389:21489623,6461715 +h1,3389:23702643,6461715:0,0,0 +k1,3389:32583029,6461715:8880386 +g1,3389:32583029,6461715 +) +(1,3389:6630773,7127893:25952256,404226,6290 +h1,3389:6630773,7127893:0,0,0 +g1,3389:7579210,7127893 +g1,3389:10108376,7127893 +g1,3389:12637542,7127893 +h1,3389:14850562,7127893:0,0,0 +k1,3389:32583030,7127893:17732468 +g1,3389:32583030,7127893 +) +(1,3391:6630773,8449431:25952256,410518,101187 +(1,3390:6630773,8449431:0,0,0 +g1,3390:6630773,8449431 +g1,3390:6630773,8449431 +g1,3390:6303093,8449431 +(1,3390:6303093,8449431:0,0,0 +) +g1,3390:6630773,8449431 +) +g1,3391:9792230,8449431 +g1,3391:10740668,8449431 +g1,3391:13585980,8449431 +g1,3391:14218272,8449431 +g1,3391:17695875,8449431 +g1,3391:19908895,8449431 +g1,3391:20541187,8449431 +g1,3391:24651082,8449431 +h1,3391:28128684,8449431:0,0,0 +k1,3391:32583029,8449431:4454345 +g1,3391:32583029,8449431 +) +(1,3392:6630773,9115609:25952256,410518,101187 +h1,3392:6630773,9115609:0,0,0 +h1,3392:9476084,9115609:0,0,0 +k1,3392:32583028,9115609:23106944 +g1,3392:32583028,9115609 +) +(1,3397:6630773,9847323:25952256,404226,76021 +(1,3394:6630773,9847323:0,0,0 +g1,3394:6630773,9847323 +g1,3394:6630773,9847323 +g1,3394:6303093,9847323 +(1,3394:6303093,9847323:0,0,0 +) +g1,3394:6630773,9847323 +) +g1,3397:7579210,9847323 +g1,3397:8843793,9847323 +g1,3397:11372959,9847323 +g1,3397:13902125,9847323 +g1,3397:16431291,9847323 +g1,3397:18960457,9847323 +g1,3397:21489623,9847323 +h1,3397:23702643,9847323:0,0,0 +k1,3397:32583029,9847323:8880386 +g1,3397:32583029,9847323 +) +(1,3397:6630773,10513501:25952256,404226,6290 +h1,3397:6630773,10513501:0,0,0 +g1,3397:7579210,10513501 +g1,3397:10108376,10513501 +g1,3397:12637542,10513501 +h1,3397:14850562,10513501:0,0,0 +k1,3397:32583030,10513501:17732468 +g1,3397:32583030,10513501 +) +] +) +g1,3398:32583029,10519791 +g1,3398:6630773,10519791 +g1,3398:6630773,10519791 +g1,3398:32583029,10519791 +g1,3398:32583029,10519791 +) +h1,3398:6630773,10716399:0,0,0 +(1,3402:6630773,12082175:25952256,513147,95026 +h1,3401:6630773,12082175:983040,0,0 +k1,3401:9016545,12082175:206045 +k1,3401:11066773,12082175:206045 +k1,3401:14355632,12082175:206045 +k1,3401:15220970,12082175:206046 +k1,3401:16446100,12082175:206045 +k1,3401:18444555,12082175:206045 +k1,3401:19754882,12082175:206045 +k1,3401:20708693,12082175:206045 +k1,3401:21849281,12082175:206045 +k1,3401:23753364,12082175:206045 +k1,3401:24978494,12082175:206045 +k1,3401:27078530,12082175:206046 +k1,3401:27816072,12082175:206045 +k1,3401:30545908,12082175:206045 +k1,3401:31379788,12082175:206045 +k1,3401:32583029,12082175:0 +) +(1,3402:6630773,12923663:25952256,505283,134348 +k1,3401:8352737,12923663:181213 +k1,3401:10231988,12923663:181213 +k1,3401:12503144,12923663:181213 +(1,3401:12503144,12923663:0,459977,115847 +r1,3401:15323393,12923663:2820249,575824,115847 +k1,3401:12503144,12923663:-2820249 +) +(1,3401:12503144,12923663:2820249,459977,115847 +k1,3401:12503144,12923663:3277 +h1,3401:15320116,12923663:0,411205,112570 +) +k1,3401:15678276,12923663:181213 +k1,3401:19470523,12923663:181213 +(1,3401:19470523,12923663:0,452978,115847 +r1,3401:21587348,12923663:2116825,568825,115847 +k1,3401:19470523,12923663:-2116825 +) +(1,3401:19470523,12923663:2116825,452978,115847 +k1,3401:19470523,12923663:3277 +h1,3401:21584071,12923663:0,411205,112570 +) +k1,3401:21768562,12923663:181214 +k1,3401:23141220,12923663:181213 +(1,3401:23141220,12923663:0,452978,115847 +r1,3401:25258045,12923663:2116825,568825,115847 +k1,3401:23141220,12923663:-2116825 +) +(1,3401:23141220,12923663:2116825,452978,115847 +k1,3401:23141220,12923663:3277 +h1,3401:25254768,12923663:0,411205,112570 +) +k1,3401:25439258,12923663:181213 +k1,3401:27800854,12923663:181213 +k1,3401:29448763,12923663:181213 +k1,3401:30377742,12923663:181213 +k1,3401:32583029,12923663:0 +) +(1,3402:6630773,13765151:25952256,505283,134348 +k1,3401:7197706,13765151:211073 +k1,3401:9386655,13765151:211072 +k1,3401:10283890,13765151:211073 +k1,3401:13740961,13765151:211073 +k1,3401:15345985,13765151:211073 +k1,3401:17349467,13765151:211072 +k1,3401:18751985,13765151:211073 +k1,3401:21934460,13765151:211073 +k1,3401:23989715,13765151:211072 +k1,3401:24816826,13765151:211073 +k1,3401:26046984,13765151:211073 +k1,3401:27911530,13765151:211073 +k1,3401:30736833,13765151:211072 +k1,3401:31563944,13765151:211073 +k1,3401:32583029,13765151:0 +) +(1,3402:6630773,14606639:25952256,513147,134348 +k1,3401:8074202,14606639:270990 +k1,3401:10827040,14606639:270990 +k1,3401:12294718,14606639:270991 +k1,3401:15638036,14606639:270990 +k1,3401:18114313,14606639:270990 +k1,3401:19036731,14606639:270990 +(1,3401:19036731,14606639:0,452978,115847 +r1,3401:21153556,14606639:2116825,568825,115847 +k1,3401:19036731,14606639:-2116825 +) +(1,3401:19036731,14606639:2116825,452978,115847 +k1,3401:19036731,14606639:3277 +h1,3401:21150279,14606639:0,411205,112570 +) +k1,3401:21424546,14606639:270990 +k1,3401:25269870,14606639:270990 +k1,3401:26559946,14606639:270991 +k1,3401:28570262,14606639:270990 +k1,3401:29500544,14606639:270990 +k1,3401:30790619,14606639:270990 +k1,3401:32583029,14606639:0 +) +(1,3402:6630773,15448127:25952256,505283,134348 +k1,3401:8676431,15448127:190989 +k1,3401:9676791,15448127:190990 +k1,3401:11376419,15448127:190989 +k1,3401:12587805,15448127:190990 +k1,3401:14847110,15448127:190989 +k1,3401:15720985,15448127:190990 +k1,3401:18096289,15448127:190989 +k1,3401:19478724,15448127:190990 +k1,3401:20688798,15448127:190989 +k1,3401:23952116,15448127:190990 +k1,3401:26348392,15448127:190989 +k1,3401:27190810,15448127:190990 +(1,3401:27190810,15448127:0,452978,115847 +r1,3401:29307635,15448127:2116825,568825,115847 +k1,3401:27190810,15448127:-2116825 +) +(1,3401:27190810,15448127:2116825,452978,115847 +k1,3401:27190810,15448127:3277 +h1,3401:29304358,15448127:0,411205,112570 +) +k1,3401:29498624,15448127:190989 +k1,3401:31299834,15448127:190990 +k1,3401:32583029,15448127:0 +) +(1,3402:6630773,16289615:25952256,505283,7863 +g1,3401:8898318,16289615 +g1,3401:9748975,16289615 +g1,3401:10967289,16289615 +k1,3402:32583029,16289615:19649660 +g1,3402:32583029,16289615 +) +v1,3404:6630773,17480081:0,393216,0 +(1,3414:6630773,20424237:25952256,3337372,196608 +g1,3414:6630773,20424237 +g1,3414:6630773,20424237 +g1,3414:6434165,20424237 +(1,3414:6434165,20424237:0,3337372,196608 +r1,3414:32779637,20424237:26345472,3533980,196608 +k1,3414:6434165,20424237:-26345472 +) +(1,3414:6434165,20424237:26345472,3337372,196608 +[1,3414:6630773,20424237:25952256,3140764,0 +(1,3406:6630773,17687699:25952256,404226,101187 +(1,3405:6630773,17687699:0,0,0 +g1,3405:6630773,17687699 +g1,3405:6630773,17687699 +g1,3405:6303093,17687699 +(1,3405:6303093,17687699:0,0,0 +) +g1,3405:6630773,17687699 +) +g1,3406:9792230,17687699 +g1,3406:10740668,17687699 +g1,3406:12321398,17687699 +g1,3406:13269836,17687699 +g1,3406:14218274,17687699 +g1,3406:15166712,17687699 +g1,3406:16115150,17687699 +h1,3406:16747442,17687699:0,0,0 +k1,3406:32583029,17687699:15835587 +g1,3406:32583029,17687699 +) +(1,3407:6630773,18353877:25952256,410518,101187 +h1,3407:6630773,18353877:0,0,0 +k1,3407:9689207,18353877:213123 +k1,3407:10534621,18353877:213122 +k1,3407:13276910,18353877:213123 +k1,3407:13806178,18353877:213122 +k1,3407:17180758,18353877:213123 +k1,3407:19290754,18353877:213122 +k1,3407:19820023,18353877:213123 +k1,3407:21297730,18353877:213123 +k1,3407:22459290,18353877:213122 +k1,3407:24569287,18353877:213123 +k1,3407:25098555,18353877:213122 +k1,3407:29105427,18353877:213123 +h1,3407:32583029,18353877:0,0,0 +k1,3407:32583029,18353877:0 +k1,3407:32583029,18353877:0 +) +(1,3408:6630773,19020055:25952256,410518,101187 +h1,3408:6630773,19020055:0,0,0 +h1,3408:9476084,19020055:0,0,0 +k1,3408:32583028,19020055:23106944 +g1,3408:32583028,19020055 +) +(1,3413:6630773,19751769:25952256,404226,76021 +(1,3410:6630773,19751769:0,0,0 +g1,3410:6630773,19751769 +g1,3410:6630773,19751769 +g1,3410:6303093,19751769 +(1,3410:6303093,19751769:0,0,0 +) +g1,3410:6630773,19751769 +) +g1,3413:7579210,19751769 +g1,3413:8843793,19751769 +g1,3413:11372959,19751769 +g1,3413:13902125,19751769 +g1,3413:16431291,19751769 +g1,3413:18960457,19751769 +g1,3413:21489623,19751769 +h1,3413:23702643,19751769:0,0,0 +k1,3413:32583029,19751769:8880386 +g1,3413:32583029,19751769 +) +(1,3413:6630773,20417947:25952256,404226,6290 +h1,3413:6630773,20417947:0,0,0 +g1,3413:7579210,20417947 +g1,3413:10108376,20417947 +g1,3413:12637542,20417947 +h1,3413:14850562,20417947:0,0,0 +k1,3413:32583030,20417947:17732468 +g1,3413:32583030,20417947 +) +] +) +g1,3414:32583029,20424237 +g1,3414:6630773,20424237 +g1,3414:6630773,20424237 +g1,3414:32583029,20424237 +g1,3414:32583029,20424237 +) +h1,3414:6630773,20620845:0,0,0 +(1,3418:6630773,21986621:25952256,513147,134348 +h1,3417:6630773,21986621:983040,0,0 +k1,3417:8341514,21986621:257808 +k1,3417:9130820,21986621:257809 +k1,3417:11517893,21986621:257808 +k1,3417:15041361,21986621:257809 +k1,3417:15950597,21986621:257808 +k1,3417:17300891,21986621:257809 +k1,3417:21171699,21986621:257808 +k1,3417:23273691,21986621:257809 +k1,3417:24479150,21986621:257808 +k1,3417:26703039,21986621:257809 +k1,3417:29792002,21986621:257808 +k1,3417:30507908,21986621:257809 +k1,3417:31297213,21986621:257808 +k1,3417:32583029,21986621:0 +) +(1,3418:6630773,22828109:25952256,505283,126483 +g1,3417:9459962,22828109 +g1,3417:10310619,22828109 +g1,3417:11602333,22828109 +k1,3418:32583029,22828109:17990944 +g1,3418:32583029,22828109 +) +(1,3420:6630773,23669597:25952256,505283,126483 +h1,3419:6630773,23669597:983040,0,0 +k1,3419:8455904,23669597:214256 +k1,3419:9689245,23669597:214256 +k1,3419:12895220,23669597:214256 +k1,3419:14964799,23669597:214255 +k1,3419:16047407,23669597:214256 +k1,3419:18466950,23669597:214256 +k1,3419:19037066,23669597:214256 +k1,3419:21871451,23669597:214256 +k1,3419:24063584,23669597:214256 +k1,3419:24960725,23669597:214256 +k1,3419:25530840,23669597:214255 +k1,3419:28719775,23669597:214256 +k1,3419:30911908,23669597:214256 +k1,3419:31812326,23669597:214256 +k1,3419:32583029,23669597:0 +) +(1,3420:6630773,24511085:25952256,513147,134348 +k1,3419:9879250,24511085:176149 +k1,3419:11003050,24511085:176149 +k1,3419:14459931,24511085:176149 +(1,3419:14459931,24511085:0,414482,115847 +r1,3419:14818197,24511085:358266,530329,115847 +k1,3419:14459931,24511085:-358266 +) +(1,3419:14459931,24511085:358266,414482,115847 +k1,3419:14459931,24511085:3277 +h1,3419:14814920,24511085:0,411205,112570 +) +k1,3419:14994347,24511085:176150 +k1,3419:15829788,24511085:176149 +k1,3419:18701433,24511085:176149 +(1,3419:18701433,24511085:0,459977,115847 +r1,3419:21521682,24511085:2820249,575824,115847 +k1,3419:18701433,24511085:-2820249 +) +(1,3419:18701433,24511085:2820249,459977,115847 +k1,3419:18701433,24511085:3277 +h1,3419:21518405,24511085:0,411205,112570 +) +k1,3419:21871501,24511085:176149 +k1,3419:22517543,24511085:176149 +k1,3419:23225189,24511085:176149 +k1,3419:24687154,24511085:176149 +k1,3419:27493264,24511085:176150 +k1,3419:28320841,24511085:176149 +k1,3419:29934195,24511085:176149 +k1,3419:30466204,24511085:176149 +(1,3419:30466204,24511085:0,459977,115847 +r1,3419:32583029,24511085:2116825,575824,115847 +k1,3419:30466204,24511085:-2116825 +) +(1,3419:30466204,24511085:2116825,459977,115847 +k1,3419:30466204,24511085:3277 +h1,3419:32579752,24511085:0,411205,112570 +) +k1,3419:32583029,24511085:0 +) +(1,3420:6630773,25352573:25952256,513147,134348 +k1,3419:7567626,25352573:250691 +k1,3419:8589019,25352573:250690 +k1,3419:11912038,25352573:250691 +k1,3419:13110379,25352573:250690 +k1,3419:16641802,25352573:250691 +(1,3419:16641802,25352573:0,414482,115847 +r1,3419:17000068,25352573:358266,530329,115847 +k1,3419:16641802,25352573:-358266 +) +(1,3419:16641802,25352573:358266,414482,115847 +k1,3419:16641802,25352573:3277 +h1,3419:16996791,25352573:0,411205,112570 +) +k1,3419:17424428,25352573:250690 +k1,3419:18628668,25352573:250691 +k1,3419:19971844,25352573:250691 +k1,3419:22961939,25352573:250690 +k1,3419:24606581,25352573:250691 +k1,3419:25213131,25352573:250690 +k1,3419:26655267,25352573:250691 +k1,3419:29906851,25352573:250690 +k1,3419:30513402,25352573:250691 +k1,3419:32583029,25352573:0 +) +(1,3420:6630773,26194061:25952256,513147,115847 +k1,3419:8842737,26194061:234087 +k1,3419:9728252,26194061:234087 +k1,3419:12166315,26194061:234087 +k1,3419:13166518,26194061:234087 +k1,3419:16792748,26194061:234087 +k1,3419:17980384,26194061:234087 +k1,3419:19306956,26194061:234087 +k1,3419:22236539,26194061:234087 +(1,3419:22236539,26194061:0,452978,115847 +r1,3419:25056788,26194061:2820249,568825,115847 +k1,3419:22236539,26194061:-2820249 +) +(1,3419:22236539,26194061:2820249,452978,115847 +k1,3419:22236539,26194061:3277 +h1,3419:25053511,26194061:0,411205,112570 +) +k1,3419:25290875,26194061:234087 +k1,3419:26176390,26194061:234087 +k1,3419:27797219,26194061:234087 +k1,3419:28644068,26194061:234087 +k1,3419:29897240,26194061:234087 +k1,3419:31923737,26194061:234087 +k1,3419:32583029,26194061:0 +) +(1,3420:6630773,27035549:25952256,513147,7863 +g1,3419:7849087,27035549 +k1,3420:32583029,27035549:22335980 +g1,3420:32583029,27035549 +) +v1,3422:6630773,28226015:0,393216,0 +(1,3445:6630773,35949145:25952256,8116346,196608 +g1,3445:6630773,35949145 +g1,3445:6630773,35949145 +g1,3445:6434165,35949145 +(1,3445:6434165,35949145:0,8116346,196608 +r1,3445:32779637,35949145:26345472,8312954,196608 +k1,3445:6434165,35949145:-26345472 +) +(1,3445:6434165,35949145:26345472,8116346,196608 +[1,3445:6630773,35949145:25952256,7919738,0 +(1,3424:6630773,28439925:25952256,410518,101187 +(1,3423:6630773,28439925:0,0,0 +g1,3423:6630773,28439925 +g1,3423:6630773,28439925 +g1,3423:6303093,28439925 +(1,3423:6303093,28439925:0,0,0 +) +g1,3423:6630773,28439925 +) +k1,3424:6630773,28439925:0 +h1,3424:12005249,28439925:0,0,0 +k1,3424:32583029,28439925:20577780 +g1,3424:32583029,28439925 +) +(1,3428:6630773,29171639:25952256,404226,76021 +(1,3426:6630773,29171639:0,0,0 +g1,3426:6630773,29171639 +g1,3426:6630773,29171639 +g1,3426:6303093,29171639 +(1,3426:6303093,29171639:0,0,0 +) +g1,3426:6630773,29171639 +) +g1,3428:7579210,29171639 +g1,3428:8843793,29171639 +g1,3428:12005250,29171639 +h1,3428:14850561,29171639:0,0,0 +k1,3428:32583029,29171639:17732468 +g1,3428:32583029,29171639 +) +(1,3430:6630773,30493177:25952256,410518,101187 +(1,3429:6630773,30493177:0,0,0 +g1,3429:6630773,30493177 +g1,3429:6630773,30493177 +g1,3429:6303093,30493177 +(1,3429:6303093,30493177:0,0,0 +) +g1,3429:6630773,30493177 +) +g1,3430:11372959,30493177 +g1,3430:12321397,30493177 +g1,3430:18644311,30493177 +g1,3430:19592748,30493177 +h1,3430:22754205,30493177:0,0,0 +k1,3430:32583029,30493177:9828824 +g1,3430:32583029,30493177 +) +(1,3431:6630773,31159355:25952256,410518,6290 +h1,3431:6630773,31159355:0,0,0 +h1,3431:11056813,31159355:0,0,0 +k1,3431:32583029,31159355:21526216 +g1,3431:32583029,31159355 +) +(1,3436:6630773,31891069:25952256,404226,76021 +(1,3433:6630773,31891069:0,0,0 +g1,3433:6630773,31891069 +g1,3433:6630773,31891069 +g1,3433:6303093,31891069 +(1,3433:6303093,31891069:0,0,0 +) +g1,3433:6630773,31891069 +) +g1,3436:7579210,31891069 +g1,3436:8843793,31891069 +g1,3436:11372959,31891069 +g1,3436:13902125,31891069 +h1,3436:16115145,31891069:0,0,0 +k1,3436:32583029,31891069:16467884 +g1,3436:32583029,31891069 +) +(1,3436:6630773,32557247:25952256,404226,6290 +h1,3436:6630773,32557247:0,0,0 +g1,3436:7579210,32557247 +g1,3436:10108376,32557247 +g1,3436:12637542,32557247 +h1,3436:14850562,32557247:0,0,0 +k1,3436:32583030,32557247:17732468 +g1,3436:32583030,32557247 +) +(1,3438:6630773,33878785:25952256,410518,76021 +(1,3437:6630773,33878785:0,0,0 +g1,3437:6630773,33878785 +g1,3437:6630773,33878785 +g1,3437:6303093,33878785 +(1,3437:6303093,33878785:0,0,0 +) +g1,3437:6630773,33878785 +) +g1,3438:11372959,33878785 +g1,3438:12321397,33878785 +k1,3438:12321397,33878785:0 +h1,3438:19276602,33878785:0,0,0 +k1,3438:32583029,33878785:13306427 +g1,3438:32583029,33878785 +) +(1,3439:6630773,34544963:25952256,410518,6290 +h1,3439:6630773,34544963:0,0,0 +h1,3439:11056813,34544963:0,0,0 +k1,3439:32583029,34544963:21526216 +g1,3439:32583029,34544963 +) +(1,3444:6630773,35276677:25952256,404226,76021 +(1,3441:6630773,35276677:0,0,0 +g1,3441:6630773,35276677 +g1,3441:6630773,35276677 +g1,3441:6303093,35276677 +(1,3441:6303093,35276677:0,0,0 +) +g1,3441:6630773,35276677 +) +g1,3444:7579210,35276677 +g1,3444:8843793,35276677 +g1,3444:11372959,35276677 +g1,3444:13902125,35276677 +h1,3444:16115145,35276677:0,0,0 +k1,3444:32583029,35276677:16467884 +g1,3444:32583029,35276677 +) +(1,3444:6630773,35942855:25952256,404226,6290 +h1,3444:6630773,35942855:0,0,0 +g1,3444:7579210,35942855 +g1,3444:10108376,35942855 +h1,3444:12321396,35942855:0,0,0 +k1,3444:32583028,35942855:20261632 +g1,3444:32583028,35942855 +) +] +) +g1,3445:32583029,35949145 +g1,3445:6630773,35949145 +g1,3445:6630773,35949145 +g1,3445:32583029,35949145 +g1,3445:32583029,35949145 +) +h1,3445:6630773,36145753:0,0,0 +(1,3449:6630773,37511529:25952256,513147,134348 +h1,3448:6630773,37511529:983040,0,0 +k1,3448:8334658,37511529:250952 +k1,3448:9689893,37511529:250953 +k1,3448:10688611,37511529:250952 +k1,3448:12379390,37511529:250953 +k1,3448:14485666,37511529:250952 +k1,3448:16021124,37511529:250952 +k1,3448:19599340,37511529:250953 +k1,3448:21343202,37511529:250952 +k1,3448:22660425,37511529:250952 +k1,3448:24435745,37511529:250953 +k1,3448:27029609,37511529:250952 +k1,3448:29174552,37511529:250953 +k1,3448:31391584,37511529:250952 +k1,3448:32583029,37511529:0 +) +(1,3449:6630773,38353017:25952256,513147,126483 +g1,3448:8114508,38353017 +(1,3448:8114508,38353017:0,459977,115847 +r1,3448:10934757,38353017:2820249,575824,115847 +k1,3448:8114508,38353017:-2820249 +) +(1,3448:8114508,38353017:2820249,459977,115847 +k1,3448:8114508,38353017:3277 +h1,3448:10931480,38353017:0,411205,112570 +) +g1,3448:11133986,38353017 +g1,3448:12437497,38353017 +g1,3448:13384492,38353017 +g1,3448:15096947,38353017 +g1,3448:15947604,38353017 +g1,3448:19044180,38353017 +g1,3448:20767776,38353017 +g1,3448:21986090,38353017 +g1,3448:24528231,38353017 +g1,3448:26621450,38353017 +k1,3449:32583029,38353017:3995499 +g1,3449:32583029,38353017 +) +v1,3451:6630773,39718793:0,393216,0 +(1,3464:6630773,44603800:25952256,5278223,589824 +g1,3464:6630773,44603800 +(1,3464:6630773,44603800:25952256,5278223,589824 +(1,3464:6630773,45193624:25952256,5868047,0 +[1,3464:6630773,45193624:25952256,5868047,0 +(1,3464:6630773,45193624:25952256,5841833,0 +r1,3464:6656987,45193624:26214,5841833,0 +[1,3464:6656987,45193624:25899828,5841833,0 +(1,3464:6656987,44603800:25899828,4662185,0 +[1,3464:7246811,44603800:24720180,4662185,0 +(1,3452:7246811,41103500:24720180,1161885,196608 +(1,3451:7246811,41103500:0,1161885,196608 +r1,3464:8794447,41103500:1547636,1358493,196608 +k1,3451:7246811,41103500:-1547636 +) +(1,3451:7246811,41103500:1547636,1161885,196608 +) +k1,3451:8959415,41103500:164968 +k1,3451:10907618,41103500:164968 +k1,3451:12091670,41103500:164967 +k1,3451:14597584,41103500:164968 +k1,3451:15421844,41103500:164968 +k1,3451:17379222,41103500:164968 +k1,3451:18075687,41103500:164968 +k1,3451:20688424,41103500:164967 +k1,3451:21311489,41103500:164968 +k1,3451:22007954,41103500:164968 +k1,3451:24802882,41103500:164968 +k1,3451:25619278,41103500:164968 +k1,3451:26876730,41103500:164967 +k1,3451:29737194,41103500:164968 +(1,3451:29737194,41103500:0,452978,122846 +r1,3464:31150595,41103500:1413401,575824,122846 +k1,3451:29737194,41103500:-1413401 +) +(1,3451:29737194,41103500:1413401,452978,122846 +k1,3451:29737194,41103500:3277 +h1,3451:31147318,41103500:0,411205,112570 +) +k1,3451:31315563,41103500:164968 +k1,3451:31966991,41103500:0 +) +(1,3452:7246811,41944988:24720180,513147,134348 +k1,3451:10193180,41944988:180750 +k1,3451:12108667,41944988:180749 +k1,3451:12905455,41944988:180750 +k1,3451:13442064,41944988:180749 +k1,3451:15690475,41944988:180750 +k1,3451:19276475,41944988:180749 +k1,3451:19915322,41944988:180750 +k1,3451:20627568,41944988:180749 +k1,3451:22458515,41944988:180750 +k1,3451:24360240,41944988:180750 +k1,3451:25192417,41944988:180749 +k1,3451:26785468,41944988:180750 +k1,3451:28355580,41944988:180749 +k1,3451:29803796,41944988:180750 +k1,3451:30399370,41944988:180731 +k1,3451:31966991,41944988:0 +) +(1,3452:7246811,42786476:24720180,513147,134348 +k1,3451:8748951,42786476:188798 +k1,3451:9553788,42786476:188799 +k1,3451:11628057,42786476:188798 +k1,3451:12835941,42786476:188799 +k1,3451:16169156,42786476:188798 +k1,3451:18184442,42786476:188798 +k1,3451:19364801,42786476:188799 +k1,3451:21887991,42786476:188798 +k1,3451:24860759,42786476:188799 +k1,3451:25735719,42786476:188798 +k1,3451:28899197,42786476:188799 +k1,3451:31284106,42786476:188798 +k1,3451:31966991,42786476:0 +) +(1,3452:7246811,43627964:24720180,513147,122846 +k1,3451:10097542,43627964:230602 +k1,3451:12512459,43627964:230602 +k1,3451:15587324,43627964:230602 +k1,3451:17515964,43627964:230602 +k1,3451:18614918,43627964:230602 +k1,3451:20375786,43627964:230602 +k1,3451:21257817,43627964:230603 +k1,3451:23417799,43627964:230602 +k1,3451:24004261,43627964:230602 +k1,3451:26128853,43627964:230602 +k1,3451:28369444,43627964:230602 +k1,3451:29218706,43627964:230602 +(1,3451:29218706,43627964:0,452978,122846 +r1,3464:30632107,43627964:1413401,575824,122846 +k1,3451:29218706,43627964:-1413401 +) +(1,3451:29218706,43627964:1413401,452978,122846 +k1,3451:29218706,43627964:3277 +h1,3451:30628830,43627964:0,411205,112570 +) +k1,3451:30862709,43627964:230602 +k1,3451:31966991,43627964:0 +) +(1,3452:7246811,44469452:24720180,473825,134348 +g1,3451:8836714,44469452 +g1,3451:10728083,44469452 +k1,3452:31966992,44469452:19036244 +g1,3452:31966992,44469452 +) +] +) +] +r1,3464:32583029,45193624:26214,5841833,0 +) +] +) +) +g1,3464:32583029,44603800 +) +] +(1,3464:32583029,45706769:0,0,0 +g1,3464:32583029,45706769 +) +) +] +(1,3464:6630773,47279633:25952256,0,0 +h1,3464:6630773,47279633:25952256,0,0 +) +] +h1,3464:4262630,4025873:0,0,0 ] !25261 }68 -Input:446:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:447:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:448:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:449:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:450:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:451:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!557 {69 -[1,3520:4262630,47279633:28320399,43253760,0 -(1,3520:4262630,4025873:0,0,0 -[1,3520:-473657,4025873:25952256,0,0 -(1,3520:-473657,-710414:25952256,0,0 -h1,3520:-473657,-710414:0,0,0 -(1,3520:-473657,-710414:0,0,0 -(1,3520:-473657,-710414:0,0,0 -g1,3520:-473657,-710414 -(1,3520:-473657,-710414:65781,0,65781 -g1,3520:-407876,-710414 -[1,3520:-407876,-644633:0,0,0 +[1,3526:4262630,47279633:28320399,43253760,0 +(1,3526:4262630,4025873:0,0,0 +[1,3526:-473657,4025873:25952256,0,0 +(1,3526:-473657,-710414:25952256,0,0 +h1,3526:-473657,-710414:0,0,0 +(1,3526:-473657,-710414:0,0,0 +(1,3526:-473657,-710414:0,0,0 +g1,3526:-473657,-710414 +(1,3526:-473657,-710414:65781,0,65781 +g1,3526:-407876,-710414 +[1,3526:-407876,-644633:0,0,0 ] ) -k1,3520:-473657,-710414:-65781 +k1,3526:-473657,-710414:-65781 ) ) -k1,3520:25478599,-710414:25952256 -g1,3520:25478599,-710414 +k1,3526:25478599,-710414:25952256 +g1,3526:25478599,-710414 ) ] ) -[1,3520:6630773,47279633:25952256,43253760,0 -[1,3520:6630773,4812305:25952256,786432,0 -(1,3520:6630773,4812305:25952256,505283,134348 -(1,3520:6630773,4812305:25952256,505283,134348 -g1,3520:3078558,4812305 -[1,3520:3078558,4812305:0,0,0 -(1,3520:3078558,2439708:0,1703936,0 -k1,3520:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3520:2537886,2439708:1179648,16384,0 +[1,3526:6630773,47279633:25952256,43253760,0 +[1,3526:6630773,4812305:25952256,786432,0 +(1,3526:6630773,4812305:25952256,505283,134348 +(1,3526:6630773,4812305:25952256,505283,134348 +g1,3526:3078558,4812305 +[1,3526:3078558,4812305:0,0,0 +(1,3526:3078558,2439708:0,1703936,0 +k1,3526:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3526:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3520:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3526:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3520:3078558,4812305:0,0,0 -(1,3520:3078558,2439708:0,1703936,0 -g1,3520:29030814,2439708 -g1,3520:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3520:36151628,1915420:16384,1179648,0 +[1,3526:3078558,4812305:0,0,0 +(1,3526:3078558,2439708:0,1703936,0 +g1,3526:29030814,2439708 +g1,3526:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3526:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3520:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3526:37855564,2439708:1179648,16384,0 ) ) -k1,3520:3078556,2439708:-34777008 +k1,3526:3078556,2439708:-34777008 ) ] -[1,3520:3078558,4812305:0,0,0 -(1,3520:3078558,49800853:0,16384,2228224 -k1,3520:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3520:2537886,49800853:1179648,16384,0 +[1,3526:3078558,4812305:0,0,0 +(1,3526:3078558,49800853:0,16384,2228224 +k1,3526:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3526:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3520:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3526:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3520:3078558,4812305:0,0,0 -(1,3520:3078558,49800853:0,16384,2228224 -g1,3520:29030814,49800853 -g1,3520:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3520:36151628,51504789:16384,1179648,0 +[1,3526:3078558,4812305:0,0,0 +(1,3526:3078558,49800853:0,16384,2228224 +g1,3526:29030814,49800853 +g1,3526:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3526:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3520:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3526:37855564,49800853:1179648,16384,0 ) ) -k1,3520:3078556,49800853:-34777008 +k1,3526:3078556,49800853:-34777008 ) ] -g1,3520:6630773,4812305 -k1,3520:19562994,4812305:12135303 -g1,3520:20949735,4812305 -g1,3520:21598541,4812305 -g1,3520:24912696,4812305 -g1,3520:27600327,4812305 -g1,3520:29010006,4812305 +g1,3526:6630773,4812305 +k1,3526:19515153,4812305:12087462 +g1,3526:20901894,4812305 +g1,3526:21550700,4812305 +g1,3526:24864855,4812305 +g1,3526:27600327,4812305 +g1,3526:29010006,4812305 ) ) ] -[1,3520:6630773,45706769:25952256,40108032,0 -(1,3520:6630773,45706769:25952256,40108032,0 -(1,3520:6630773,45706769:0,0,0 -g1,3520:6630773,45706769 +[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,3520:6630773,45706769:25952256,40108032,0 -v1,3458:6630773,6254097:0,393216,0 -(1,3458:6630773,9176617:25952256,3315736,616038 -g1,3458:6630773,9176617 -(1,3458:6630773,9176617:25952256,3315736,616038 -(1,3458:6630773,9792655:25952256,3931774,0 -[1,3458:6630773,9792655:25952256,3931774,0 -(1,3458:6630773,9766441:25952256,3905560,0 -r1,3458:6656987,9766441:26214,3905560,0 -[1,3458:6656987,9766441:25899828,3905560,0 -(1,3458:6656987,9176617:25899828,2725912,0 -[1,3458:7246811,9176617:24720180,2725912,0 -v1,3448:7246811,6843921:0,393216,0 -(1,3456:7246811,8455721:24720180,2005016,196608 -g1,3456:7246811,8455721 -g1,3456:7246811,8455721 -g1,3456:7050203,8455721 -(1,3456:7050203,8455721:0,2005016,196608 -r1,3458:32163599,8455721:25113396,2201624,196608 -k1,3456:7050203,8455721:-25113396 -) -(1,3456:7050203,8455721:25113396,2005016,196608 -[1,3456:7246811,8455721:24720180,1808408,0 -(1,3450:7246811,7051539:24720180,404226,107478 -(1,3449:7246811,7051539:0,0,0 -g1,3449:7246811,7051539 -g1,3449:7246811,7051539 -g1,3449:6919131,7051539 -(1,3449:6919131,7051539:0,0,0 -) -g1,3449:7246811,7051539 -) -k1,3450:7246811,7051539:0 -g1,3450:9143686,7051539 -g1,3450:10092124,7051539 -g1,3450:12305144,7051539 -g1,3450:12937436,7051539 -g1,3450:15150457,7051539 -h1,3450:16731185,7051539:0,0,0 -k1,3450:31966991,7051539:15235806 -g1,3450:31966991,7051539 -) -(1,3455:7246811,7783253:24720180,404226,76021 -(1,3452:7246811,7783253:0,0,0 -g1,3452:7246811,7783253 -g1,3452:7246811,7783253 -g1,3452:6919131,7783253 -(1,3452:6919131,7783253:0,0,0 -) -g1,3452:7246811,7783253 -) -g1,3455:8195248,7783253 -g1,3455:8511394,7783253 -g1,3455:9775977,7783253 -g1,3455:10408269,7783253 -g1,3455:11040561,7783253 -g1,3455:11672853,7783253 -g1,3455:12305145,7783253 -g1,3455:12937437,7783253 -g1,3455:13569729,7783253 -g1,3455:14202021,7783253 -g1,3455:14834313,7783253 -g1,3455:15466605,7783253 -h1,3455:15782751,7783253:0,0,0 -k1,3455:31966991,7783253:16184240 -g1,3455:31966991,7783253 -) -(1,3455:7246811,8449431:24720180,404226,6290 -h1,3455:7246811,8449431:0,0,0 -g1,3455:8195248,8449431 -g1,3455:10724414,8449431 -g1,3455:11356706,8449431 -h1,3455:11672852,8449431:0,0,0 -k1,3455:31966992,8449431:20294140 -g1,3455:31966992,8449431 -) -] -) -g1,3456:31966991,8455721 -g1,3456:7246811,8455721 -g1,3456:7246811,8455721 -g1,3456:31966991,8455721 -g1,3456:31966991,8455721 -) -h1,3456:7246811,8652329:0,0,0 -] -) -] -r1,3458:32583029,9766441:26214,3905560,0 -) -] -) -) -g1,3458:32583029,9176617 -) -h1,3458:6630773,9792655:0,0,0 -(1,3461:6630773,11076024:25952256,513147,134348 -h1,3460:6630773,11076024:983040,0,0 -k1,3460:11279897,11076024:161219 -k1,3460:13665407,11076024:161218 -k1,3460:15094092,11076024:161219 -k1,3460:18071392,11076024:161218 -k1,3460:18764108,11076024:161219 -k1,3460:19991598,11076024:161219 -k1,3460:22978073,11076024:161218 -k1,3460:24605988,11076024:161219 -k1,3460:25383245,11076024:161219 -k1,3460:26563548,11076024:161218 -k1,3460:28091848,11076024:161219 -k1,3460:30171960,11076024:161218 -k1,3460:30689039,11076024:161219 -k1,3460:32583029,11076024:0 -) -(1,3461:6630773,11917512:25952256,513147,115847 -g1,3460:8037175,11917512 -g1,3460:10586525,11917512 -g1,3460:12353375,11917512 -g1,3460:12908464,11917512 -(1,3460:12908464,11917512:0,452978,115847 -r1,3460:15377001,11917512:2468537,568825,115847 -k1,3460:12908464,11917512:-2468537 -) -(1,3460:12908464,11917512:2468537,452978,115847 -k1,3460:12908464,11917512:3277 -h1,3460:15373724,11917512:0,411205,112570 -) -g1,3460:15576230,11917512 -k1,3461:32583029,11917512:14855252 -g1,3461:32583029,11917512 -) -v1,3463:6630773,13025572:0,393216,0 -(1,3491:6630773,22199215:25952256,9566859,196608 -g1,3491:6630773,22199215 -g1,3491:6630773,22199215 -g1,3491:6434165,22199215 -(1,3491:6434165,22199215:0,9566859,196608 -r1,3491:32779637,22199215:26345472,9763467,196608 -k1,3491:6434165,22199215:-26345472 -) -(1,3491:6434165,22199215:26345472,9566859,196608 -[1,3491:6630773,22199215:25952256,9370251,0 -(1,3465:6630773,13233190:25952256,404226,101187 -(1,3464:6630773,13233190:0,0,0 -g1,3464:6630773,13233190 -g1,3464:6630773,13233190 -g1,3464:6303093,13233190 -(1,3464:6303093,13233190:0,0,0 -) -g1,3464:6630773,13233190 -) -g1,3465:10108376,13233190 -g1,3465:11056814,13233190 -g1,3465:13902127,13233190 -h1,3465:14534419,13233190:0,0,0 -k1,3465:32583029,13233190:18048610 -g1,3465:32583029,13233190 -) -(1,3466:6630773,13899368:25952256,388497,101187 -h1,3466:6630773,13899368:0,0,0 -h1,3466:9792230,13899368:0,0,0 -k1,3466:32583030,13899368:22790800 -g1,3466:32583030,13899368 -) -(1,3470:6630773,14631082:25952256,404226,76021 -(1,3468:6630773,14631082:0,0,0 -g1,3468:6630773,14631082 -g1,3468:6630773,14631082 -g1,3468:6303093,14631082 -(1,3468:6303093,14631082:0,0,0 -) -g1,3468:6630773,14631082 -) -g1,3470:7579210,14631082 -g1,3470:7895356,14631082 -g1,3470:9159939,14631082 -g1,3470:9792231,14631082 -g1,3470:10424523,14631082 -g1,3470:11056815,14631082 -g1,3470:11689107,14631082 -g1,3470:12321399,14631082 -g1,3470:12953691,14631082 -g1,3470:13585983,14631082 -g1,3470:14218275,14631082 -g1,3470:14850567,14631082 -g1,3470:15482859,14631082 -g1,3470:16115151,14631082 -h1,3470:16431297,14631082:0,0,0 -k1,3470:32583029,14631082:16151732 -g1,3470:32583029,14631082 -) -(1,3472:6630773,15952620:25952256,410518,101187 -(1,3471:6630773,15952620:0,0,0 -g1,3471:6630773,15952620 -g1,3471:6630773,15952620 -g1,3471:6303093,15952620 -(1,3471:6303093,15952620:0,0,0 -) -g1,3471:6630773,15952620 -) -g1,3472:10108376,15952620 -g1,3472:11056814,15952620 -k1,3472:11056814,15952620:0 -h1,3472:16747436,15952620:0,0,0 -k1,3472:32583029,15952620:15835593 -g1,3472:32583029,15952620 -) -(1,3473:6630773,16618798:25952256,410518,101187 -h1,3473:6630773,16618798:0,0,0 -h1,3473:9792230,16618798:0,0,0 -k1,3473:32583030,16618798:22790800 -g1,3473:32583030,16618798 -) -(1,3478:6630773,17350512:25952256,404226,76021 -(1,3475:6630773,17350512:0,0,0 -g1,3475:6630773,17350512 -g1,3475:6630773,17350512 -g1,3475:6303093,17350512 -(1,3475:6303093,17350512:0,0,0 -) -g1,3475:6630773,17350512 -) -g1,3478:7579210,17350512 -g1,3478:7895356,17350512 -g1,3478:9159939,17350512 -g1,3478:9792231,17350512 -g1,3478:10424523,17350512 -g1,3478:11056815,17350512 -g1,3478:11689107,17350512 -g1,3478:12321399,17350512 -g1,3478:12953691,17350512 -g1,3478:13585983,17350512 -g1,3478:14218275,17350512 -g1,3478:14850567,17350512 -g1,3478:15482859,17350512 -g1,3478:16115151,17350512 -h1,3478:16431297,17350512:0,0,0 -k1,3478:32583029,17350512:16151732 -g1,3478:32583029,17350512 -) -(1,3478:6630773,18016690:25952256,404226,9436 -h1,3478:6630773,18016690:0,0,0 -g1,3478:7579210,18016690 -g1,3478:10108376,18016690 -g1,3478:10740668,18016690 -g1,3478:11372960,18016690 -h1,3478:11689106,18016690:0,0,0 -k1,3478:32583030,18016690:20893924 -g1,3478:32583030,18016690 -) -(1,3480:6630773,19338228:25952256,410518,101187 -(1,3479:6630773,19338228:0,0,0 -g1,3479:6630773,19338228 -g1,3479:6630773,19338228 -g1,3479:6303093,19338228 -(1,3479:6303093,19338228:0,0,0 -) -g1,3479:6630773,19338228 -) -k1,3480:6630773,19338228:0 -h1,3480:13585978,19338228:0,0,0 -k1,3480:32583030,19338228:18997052 -g1,3480:32583030,19338228 -) -(1,3484:6630773,20069942:25952256,404226,76021 -(1,3482:6630773,20069942:0,0,0 -g1,3482:6630773,20069942 -g1,3482:6630773,20069942 -g1,3482:6303093,20069942 -(1,3482:6303093,20069942:0,0,0 -) -g1,3482:6630773,20069942 -) -g1,3484:7579210,20069942 -g1,3484:7895356,20069942 -g1,3484:9159939,20069942 -g1,3484:9792231,20069942 -g1,3484:10424523,20069942 -g1,3484:11056815,20069942 -g1,3484:11689107,20069942 -g1,3484:12321399,20069942 -g1,3484:12953691,20069942 -g1,3484:13585983,20069942 -g1,3484:14218275,20069942 -g1,3484:14850567,20069942 -g1,3484:15482859,20069942 -g1,3484:16115151,20069942 -h1,3484:16431297,20069942:0,0,0 -k1,3484:32583029,20069942:16151732 -g1,3484:32583029,20069942 -) -(1,3486:6630773,21391480:25952256,410518,101187 -(1,3485:6630773,21391480:0,0,0 -g1,3485:6630773,21391480 -g1,3485:6630773,21391480 -g1,3485:6303093,21391480 -(1,3485:6303093,21391480:0,0,0 -) -g1,3485:6630773,21391480 -) -k1,3486:6630773,21391480:0 -k1,3486:6630773,21391480:0 -h1,3486:18012018,21391480:0,0,0 -k1,3486:32583029,21391480:14571011 -g1,3486:32583029,21391480 -) -(1,3490:6630773,22123194:25952256,404226,76021 -(1,3488:6630773,22123194:0,0,0 -g1,3488:6630773,22123194 -g1,3488:6630773,22123194 -g1,3488:6303093,22123194 -(1,3488:6303093,22123194:0,0,0 -) -g1,3488:6630773,22123194 -) -g1,3490:7579210,22123194 -g1,3490:7895356,22123194 -g1,3490:9159939,22123194 -g1,3490:9792231,22123194 -g1,3490:10424523,22123194 -g1,3490:11056815,22123194 -g1,3490:11689107,22123194 -g1,3490:12321399,22123194 -g1,3490:12953691,22123194 -g1,3490:13585983,22123194 -g1,3490:14218275,22123194 -g1,3490:14850567,22123194 -g1,3490:15482859,22123194 -g1,3490:16115151,22123194 -h1,3490:16431297,22123194:0,0,0 -k1,3490:32583029,22123194:16151732 -g1,3490:32583029,22123194 -) -] -) -g1,3491:32583029,22199215 -g1,3491:6630773,22199215 -g1,3491:6630773,22199215 -g1,3491:32583029,22199215 -g1,3491:32583029,22199215 -) -h1,3491:6630773,22395823:0,0,0 -v1,3495:6630773,24121073:0,393216,0 -(1,3513:6630773,35540967:25952256,11813110,616038 -g1,3513:6630773,35540967 -(1,3513:6630773,35540967:25952256,11813110,616038 -(1,3513:6630773,36157005:25952256,12429148,0 -[1,3513:6630773,36157005:25952256,12429148,0 -(1,3513:6630773,36130791:25952256,12376720,0 -r1,3513:6656987,36130791:26214,12376720,0 -[1,3513:6656987,36130791:25899828,12376720,0 -(1,3513:6656987,35540967:25899828,11197072,0 -[1,3513:7246811,35540967:24720180,11197072,0 -(1,3496:7246811,25505780:24720180,1161885,196608 -(1,3495:7246811,25505780:0,1161885,196608 -r1,3513:8794447,25505780:1547636,1358493,196608 -k1,3495:7246811,25505780:-1547636 -) -(1,3495:7246811,25505780:1547636,1161885,196608 -) -k1,3495:8988289,25505780:193842 -k1,3495:10670312,25505780:198943 -k1,3495:11425656,25505780:198943 -k1,3495:11988980,25505780:198944 -k1,3495:14448915,25505780:198943 -k1,3495:18326394,25505780:198943 -k1,3495:21239325,25505780:193842 -k1,3495:24669335,25505780:193842 -k1,3495:26757167,25505780:193842 -k1,3495:28743419,25505780:193842 -k1,3495:29928821,25505780:193842 -k1,3495:31966991,25505780:0 -) -(1,3496:7246811,26347268:24720180,513147,134348 -k1,3495:8208701,26347268:275728 -k1,3495:11007564,26347268:275727 -k1,3495:13843784,26347268:275728 -k1,3495:16598084,26347268:275728 -k1,3495:18441432,26347268:275727 -k1,3495:20047541,26347268:275728 -k1,3495:21514713,26347268:275727 -k1,3495:23534354,26347268:275728 -k1,3495:24801642,26347268:275728 -k1,3495:26096454,26347268:275727 -k1,3495:29188264,26347268:275728 -k1,3495:31966991,26347268:0 -) -(1,3496:7246811,27188756:24720180,513147,126483 -k1,3495:8253694,27188756:245355 -(1,3495:8253694,27188756:0,452978,115847 -r1,3513:12480790,27188756:4227096,568825,115847 -k1,3495:8253694,27188756:-4227096 -) -(1,3495:8253694,27188756:4227096,452978,115847 -k1,3495:8253694,27188756:3277 -h1,3495:12477513,27188756:0,411205,112570 -) -k1,3495:12726145,27188756:245355 -k1,3495:14669538,27188756:245355 -k1,3495:17286641,27188756:245355 -k1,3495:18183424,27188756:245355 -k1,3495:18784639,27188756:245355 -k1,3495:21097654,27188756:245354 -k1,3495:22539696,27188756:245355 -k1,3495:24629234,27188756:245355 -k1,3495:25533881,27188756:245355 -k1,3495:26798321,27188756:245355 -k1,3495:28937666,27188756:245355 -k1,3495:30975431,27188756:245355 -k1,3495:31966991,27188756:0 -) -(1,3496:7246811,28030244:24720180,505283,134348 -k1,3495:9628628,28030244:252552 -k1,3495:11919349,28030244:252551 -k1,3495:12858063,28030244:252552 -k1,3495:16085294,28030244:252552 -k1,3495:18707628,28030244:252552 -k1,3495:20426875,28030244:252551 -k1,3495:22377465,28030244:252552 -k1,3495:24326744,28030244:252552 -k1,3495:27884277,28030244:252552 -k1,3495:29128388,28030244:252551 -k1,3495:31339156,28030244:252552 -k1,3495:31966991,28030244:0 -) -(1,3496:7246811,28871732:24720180,513147,115847 -k1,3495:10127963,28871732:249881 -k1,3495:11029271,28871732:249880 -(1,3495:11029271,28871732:0,452978,115847 -r1,3513:15256367,28871732:4227096,568825,115847 -k1,3495:11029271,28871732:-4227096 -) -(1,3495:11029271,28871732:4227096,452978,115847 -k1,3495:11029271,28871732:3277 -h1,3495:15253090,28871732:0,411205,112570 -) -k1,3495:15679918,28871732:249881 -(1,3495:15679918,28871732:0,452978,115847 -r1,3513:20610438,28871732:4930520,568825,115847 -k1,3495:15679918,28871732:-4930520 -) -(1,3495:15679918,28871732:4930520,452978,115847 -k1,3495:15679918,28871732:3277 -h1,3495:20607161,28871732:0,411205,112570 -) -k1,3495:20860318,28871732:249880 -k1,3495:23451145,28871732:249881 -k1,3495:24720110,28871732:249880 -k1,3495:27944670,28871732:249881 -k1,3495:30038733,28871732:249880 -k1,3495:30947906,28871732:249881 -k1,3495:31966991,28871732:0 -) -(1,3496:7246811,29713220:24720180,513147,134348 -k1,3495:9412418,29713220:199527 -k1,3495:10089703,29713220:199528 -k1,3495:11985957,29713220:199527 -k1,3495:15160164,29713220:199528 -k1,3495:17555802,29713220:199527 -k1,3495:20796856,29713220:199528 -k1,3495:23986135,29713220:199527 -k1,3495:25565851,29713220:199528 -k1,3495:26869660,29713220:199527 -k1,3495:27816954,29713220:199528 -k1,3495:31350953,29713220:199527 -k1,3495:31966991,29713220:0 -) -(1,3496:7246811,30554708:24720180,505283,134348 -g1,3495:7801900,30554708 -g1,3495:10242460,30554708 -g1,3495:11970644,30554708 -g1,3495:13905266,30554708 -(1,3495:13905266,30554708:0,452978,115847 -r1,3513:18132362,30554708:4227096,568825,115847 -k1,3495:13905266,30554708:-4227096 -) -(1,3495:13905266,30554708:4227096,452978,115847 -k1,3495:13905266,30554708:3277 -h1,3495:18129085,30554708:0,411205,112570 -) -g1,3495:18331591,30554708 -g1,3495:19798286,30554708 -g1,3495:21016600,30554708 -g1,3495:23651147,30554708 -g1,3495:26470505,30554708 -k1,3496:31966991,30554708:3312171 -g1,3496:31966991,30554708 -) -v1,3498:7246811,31745174:0,393216,0 -(1,3511:7246811,34820071:24720180,3468113,196608 -g1,3511:7246811,34820071 -g1,3511:7246811,34820071 -g1,3511:7050203,34820071 -(1,3511:7050203,34820071:0,3468113,196608 -r1,3513:32163599,34820071:25113396,3664721,196608 -k1,3511:7050203,34820071:-25113396 -) -(1,3511:7050203,34820071:25113396,3468113,196608 -[1,3511:7246811,34820071:24720180,3271505,0 -(1,3500:7246811,31959084:24720180,410518,101187 -(1,3499:7246811,31959084:0,0,0 -g1,3499:7246811,31959084 -g1,3499:7246811,31959084 -g1,3499:6919131,31959084 -(1,3499:6919131,31959084:0,0,0 -) -g1,3499:7246811,31959084 -) -k1,3500:7246811,31959084:0 -h1,3500:12621287,31959084:0,0,0 -k1,3500:31966991,31959084:19345704 -g1,3500:31966991,31959084 -) -(1,3504:7246811,32690798:24720180,410518,76021 -(1,3502:7246811,32690798:0,0,0 -g1,3502:7246811,32690798 -g1,3502:7246811,32690798 -g1,3502:6919131,32690798 -(1,3502:6919131,32690798:0,0,0 -) -g1,3502:7246811,32690798 -) -g1,3504:8195248,32690798 -g1,3504:9459831,32690798 -h1,3504:11988996,32690798:0,0,0 -k1,3504:31966992,32690798:19977996 -g1,3504:31966992,32690798 -) -(1,3506:7246811,34012336:24720180,410518,101187 -(1,3505:7246811,34012336:0,0,0 -g1,3505:7246811,34012336 -g1,3505:7246811,34012336 -g1,3505:6919131,34012336 -(1,3505:6919131,34012336:0,0,0 -) -g1,3505:7246811,34012336 -) -k1,3506:7246811,34012336:0 -h1,3506:12305142,34012336:0,0,0 -k1,3506:31966990,34012336:19661848 -g1,3506:31966990,34012336 -) -(1,3510:7246811,34744050:24720180,404226,76021 -(1,3508:7246811,34744050:0,0,0 -g1,3508:7246811,34744050 -g1,3508:7246811,34744050 -g1,3508:6919131,34744050 -(1,3508:6919131,34744050:0,0,0 -) -g1,3508:7246811,34744050 -) -g1,3510:8195248,34744050 -g1,3510:9459831,34744050 -h1,3510:12305142,34744050:0,0,0 -k1,3510:31966990,34744050:19661848 -g1,3510:31966990,34744050 -) -] -) -g1,3511:31966991,34820071 -g1,3511:7246811,34820071 -g1,3511:7246811,34820071 -g1,3511:31966991,34820071 -g1,3511:31966991,34820071 -) -h1,3511:7246811,35016679:0,0,0 -] -) -] -r1,3513:32583029,36130791:26214,12376720,0 -) -] -) -) -g1,3513:32583029,35540967 -) -h1,3513:6630773,36157005:0,0,0 -v1,3516:6630773,37440375:0,393216,0 -(1,3517:6630773,41282898:25952256,4235739,616038 -g1,3517:6630773,41282898 -(1,3517:6630773,41282898:25952256,4235739,616038 -(1,3517:6630773,41898936:25952256,4851777,0 -[1,3517:6630773,41898936:25952256,4851777,0 -(1,3517:6630773,41872722:25952256,4799349,0 -r1,3517:6656987,41872722:26214,4799349,0 -[1,3517:6656987,41872722:25899828,4799349,0 -(1,3517:6656987,41282898:25899828,3619701,0 -[1,3517:7246811,41282898:24720180,3619701,0 -(1,3517:7246811,38750571:24720180,1087374,11795 -k1,3516:8657062,38750571:200548 -k1,3516:10908887,38750571:200548 -k1,3516:11465295,38750571:200548 -k1,3516:13559832,38750571:200547 -k1,3516:15154331,38750571:200548 -k1,3516:17147289,38750571:200548 -k1,3516:19629801,38750571:200548 -k1,3516:21224300,38750571:200548 -k1,3516:23553457,38750571:200548 -k1,3516:25805281,38750571:200547 -k1,3516:28478502,38750571:200548 -k1,3516:30573040,38750571:200548 -k1,3516:31966991,38750571:0 -) -(1,3517:7246811,39592059:24720180,513147,126483 -k1,3516:8444700,39592059:178804 -k1,3516:10415914,39592059:178804 -k1,3516:12876682,39592059:178804 -k1,3516:14449437,39592059:178804 -k1,3516:15647326,39592059:178804 -k1,3516:17479603,39592059:178804 -k1,3516:19787016,39592059:178804 -k1,3516:21037989,39592059:178804 -k1,3516:23724200,39592059:178804 -k1,3516:27405248,39592059:178804 -k1,3516:29229006,39592059:178804 -k1,3516:30611051,39592059:178804 -k1,3517:31966991,39592059:0 -) -(1,3517:7246811,40433547:24720180,513147,134348 -k1,3516:8700338,40433547:203755 -k1,3516:10370789,40433547:203755 -k1,3516:12798837,40433547:203756 -k1,3516:13654020,40433547:203755 -k1,3516:16477904,40433547:203755 -k1,3516:18989837,40433547:203755 -k1,3516:20928985,40433547:203755 -(1,3516:20928985,40433547:0,452978,115847 -r1,3517:25156081,40433547:4227096,568825,115847 -k1,3516:20928985,40433547:-4227096 -) -(1,3516:20928985,40433547:4227096,452978,115847 -k1,3516:20928985,40433547:3277 -h1,3516:25152804,40433547:0,411205,112570 -) -k1,3516:25533506,40433547:203755 -k1,3516:28070999,40433547:203756 -k1,3516:29571712,40433547:203755 -k1,3516:30794552,40433547:203755 -k1,3516:31966991,40433547:0 -) -(1,3517:7246811,41275035:24720180,513147,7863 -g1,3516:10066169,41275035 -g1,3516:12573576,41275035 -g1,3516:14516063,41275035 -g1,3516:15398177,41275035 -g1,3516:16663677,41275035 -g1,3516:18430527,41275035 -g1,3516:20081378,41275035 -k1,3517:31966991,41275035:10009973 -g1,3517:31966991,41275035 -) -] -) -] -r1,3517:32583029,41872722:26214,4799349,0 -) -] -) -) -g1,3517:32583029,41282898 -) -h1,3517:6630773,41898936:0,0,0 -(1,3520:6630773,43182305:25952256,513147,126483 -h1,3519:6630773,43182305:983040,0,0 -k1,3519:10081244,43182305:148767 -k1,3519:11221570,43182305:148766 -k1,3519:12724311,43182305:148767 -k1,3519:16082375,43182305:148766 -k1,3519:16847180,43182305:148767 -k1,3519:17584460,43182305:148767 -k1,3519:18361061,43182305:148766 -k1,3519:21141099,43182305:148767 -k1,3519:21941294,43182305:148767 -k1,3519:23792030,43182305:148766 -k1,3519:27024921,43182305:148767 -k1,3519:29932753,43182305:148766 -k1,3519:30697558,43182305:148767 -k1,3519:32583029,43182305:0 -) -(1,3520:6630773,44023793:25952256,513147,134348 -k1,3519:7858686,44023793:208828 -k1,3519:9302869,44023793:208829 -k1,3519:10170989,44023793:208828 -k1,3519:10735678,44023793:208829 -k1,3519:13455846,44023793:208828 -k1,3519:14196172,44023793:208829 -k1,3519:15339543,44023793:208828 -k1,3519:17246410,44023793:208829 -k1,3519:20058983,44023793:208828 -k1,3519:20623672,44023793:208829 -k1,3519:22820207,44023793:208828 -k1,3519:23680464,44023793:208829 -k1,3519:24637058,44023793:208828 -k1,3519:26558343,44023793:208829 -k1,3519:27450056,44023793:208828 -k1,3519:29356923,44023793:208829 -k1,3519:31747445,44023793:208828 -k1,3519:32583029,44023793:0 -) -(1,3520:6630773,44865281:25952256,513147,134348 -k1,3519:7211379,44865281:224746 -k1,3519:8801241,44865281:224747 -k1,3519:9642025,44865281:224746 -k1,3519:10455285,44865281:224747 -k1,3519:12998039,44865281:224746 -k1,3519:14214346,44865281:224747 -k1,3519:17270903,44865281:224746 -k1,3519:19720597,44865281:224747 -k1,3519:20561381,44865281:224746 -k1,3519:21805212,44865281:224746 -k1,3519:23683432,44865281:224747 -k1,3519:25146153,44865281:224746 -k1,3519:26318551,44865281:224747 -k1,3519:28977935,44865281:224721 -k1,3519:30394126,44865281:224746 -k1,3520:32583029,44865281:0 -) -(1,3520:6630773,45706769:25952256,513147,126483 -k1,3519:8169908,45706769:198268 -k1,3519:11096440,45706769:198268 -k1,3519:12761405,45706769:198269 -k1,3519:13645835,45706769:198268 -k1,3519:15682388,45706769:198268 -k1,3519:18255680,45706769:198268 -k1,3519:19650635,45706769:198268 -k1,3519:21234990,45706769:198269 -k1,3519:22092550,45706769:198268 -k1,3519:24278525,45706769:198268 -k1,3519:25761299,45706769:198268 -k1,3519:26491064,45706769:198268 -k1,3519:28401789,45706769:198269 -k1,3519:29131554,45706769:198268 -k1,3519:31821501,45706769:198268 -k1,3519:32583029,45706769:0 -) -] -(1,3520:32583029,45706769:0,0,0 -g1,3520:32583029,45706769 -) -) -] -(1,3520:6630773,47279633:25952256,0,0 -h1,3520:6630773,47279633:25952256,0,0 -) -] -h1,3520:4262630,4025873:0,0,0 +[1,3526:6630773,45706769:25952256,40108032,0 +v1,3464:6630773,6254097:0,393216,0 +(1,3464:6630773,9176617:25952256,3315736,616038 +g1,3464:6630773,9176617 +(1,3464:6630773,9176617:25952256,3315736,616038 +(1,3464:6630773,9792655:25952256,3931774,0 +[1,3464:6630773,9792655:25952256,3931774,0 +(1,3464:6630773,9766441:25952256,3905560,0 +r1,3464:6656987,9766441:26214,3905560,0 +[1,3464:6656987,9766441:25899828,3905560,0 +(1,3464:6656987,9176617:25899828,2725912,0 +[1,3464:7246811,9176617:24720180,2725912,0 +v1,3454:7246811,6843921:0,393216,0 +(1,3462:7246811,8455721:24720180,2005016,196608 +g1,3462:7246811,8455721 +g1,3462:7246811,8455721 +g1,3462:7050203,8455721 +(1,3462:7050203,8455721:0,2005016,196608 +r1,3464:32163599,8455721:25113396,2201624,196608 +k1,3462:7050203,8455721:-25113396 +) +(1,3462:7050203,8455721:25113396,2005016,196608 +[1,3462:7246811,8455721:24720180,1808408,0 +(1,3456:7246811,7051539:24720180,404226,107478 +(1,3455:7246811,7051539:0,0,0 +g1,3455:7246811,7051539 +g1,3455:7246811,7051539 +g1,3455:6919131,7051539 +(1,3455:6919131,7051539:0,0,0 +) +g1,3455:7246811,7051539 +) +k1,3456:7246811,7051539:0 +g1,3456:9143686,7051539 +g1,3456:10092124,7051539 +g1,3456:12305144,7051539 +g1,3456:12937436,7051539 +g1,3456:15150457,7051539 +h1,3456:16731185,7051539:0,0,0 +k1,3456:31966991,7051539:15235806 +g1,3456:31966991,7051539 +) +(1,3461:7246811,7783253:24720180,404226,76021 +(1,3458:7246811,7783253:0,0,0 +g1,3458:7246811,7783253 +g1,3458:7246811,7783253 +g1,3458:6919131,7783253 +(1,3458:6919131,7783253:0,0,0 +) +g1,3458:7246811,7783253 +) +g1,3461:8195248,7783253 +g1,3461:8511394,7783253 +g1,3461:9775977,7783253 +g1,3461:10408269,7783253 +g1,3461:11040561,7783253 +g1,3461:11672853,7783253 +g1,3461:12305145,7783253 +g1,3461:12937437,7783253 +g1,3461:13569729,7783253 +g1,3461:14202021,7783253 +g1,3461:14834313,7783253 +g1,3461:15466605,7783253 +h1,3461:15782751,7783253:0,0,0 +k1,3461:31966991,7783253:16184240 +g1,3461:31966991,7783253 +) +(1,3461:7246811,8449431:24720180,404226,6290 +h1,3461:7246811,8449431:0,0,0 +g1,3461:8195248,8449431 +g1,3461:10724414,8449431 +g1,3461:11356706,8449431 +h1,3461:11672852,8449431:0,0,0 +k1,3461:31966992,8449431:20294140 +g1,3461:31966992,8449431 +) +] +) +g1,3462:31966991,8455721 +g1,3462:7246811,8455721 +g1,3462:7246811,8455721 +g1,3462:31966991,8455721 +g1,3462:31966991,8455721 +) +h1,3462:7246811,8652329:0,0,0 +] +) +] +r1,3464:32583029,9766441:26214,3905560,0 +) +] +) +) +g1,3464:32583029,9176617 +) +h1,3464:6630773,9792655:0,0,0 +(1,3467:6630773,11076024:25952256,513147,134348 +h1,3466:6630773,11076024:983040,0,0 +k1,3466:11279897,11076024:161219 +k1,3466:13665407,11076024:161218 +k1,3466:15094092,11076024:161219 +k1,3466:18071392,11076024:161218 +k1,3466:18764108,11076024:161219 +k1,3466:19991598,11076024:161219 +k1,3466:22978073,11076024:161218 +k1,3466:24605988,11076024:161219 +k1,3466:25383245,11076024:161219 +k1,3466:26563548,11076024:161218 +k1,3466:28091848,11076024:161219 +k1,3466:30171960,11076024:161218 +k1,3466:30689039,11076024:161219 +k1,3466:32583029,11076024:0 +) +(1,3467:6630773,11917512:25952256,513147,115847 +g1,3466:8037175,11917512 +g1,3466:10586525,11917512 +g1,3466:12353375,11917512 +g1,3466:12908464,11917512 +(1,3466:12908464,11917512:0,452978,115847 +r1,3466:15377001,11917512:2468537,568825,115847 +k1,3466:12908464,11917512:-2468537 +) +(1,3466:12908464,11917512:2468537,452978,115847 +k1,3466:12908464,11917512:3277 +h1,3466:15373724,11917512:0,411205,112570 +) +g1,3466:15576230,11917512 +k1,3467:32583029,11917512:14855252 +g1,3467:32583029,11917512 +) +v1,3469:6630773,13025572:0,393216,0 +(1,3497:6630773,22199215:25952256,9566859,196608 +g1,3497:6630773,22199215 +g1,3497:6630773,22199215 +g1,3497:6434165,22199215 +(1,3497:6434165,22199215:0,9566859,196608 +r1,3497:32779637,22199215:26345472,9763467,196608 +k1,3497:6434165,22199215:-26345472 +) +(1,3497:6434165,22199215:26345472,9566859,196608 +[1,3497:6630773,22199215:25952256,9370251,0 +(1,3471:6630773,13233190:25952256,404226,101187 +(1,3470:6630773,13233190:0,0,0 +g1,3470:6630773,13233190 +g1,3470:6630773,13233190 +g1,3470:6303093,13233190 +(1,3470:6303093,13233190:0,0,0 +) +g1,3470:6630773,13233190 +) +g1,3471:10108376,13233190 +g1,3471:11056814,13233190 +g1,3471:13902127,13233190 +h1,3471:14534419,13233190:0,0,0 +k1,3471:32583029,13233190:18048610 +g1,3471:32583029,13233190 +) +(1,3472:6630773,13899368:25952256,388497,101187 +h1,3472:6630773,13899368:0,0,0 +h1,3472:9792230,13899368:0,0,0 +k1,3472:32583030,13899368:22790800 +g1,3472:32583030,13899368 +) +(1,3476:6630773,14631082:25952256,404226,76021 +(1,3474:6630773,14631082:0,0,0 +g1,3474:6630773,14631082 +g1,3474:6630773,14631082 +g1,3474:6303093,14631082 +(1,3474:6303093,14631082:0,0,0 +) +g1,3474:6630773,14631082 +) +g1,3476:7579210,14631082 +g1,3476:7895356,14631082 +g1,3476:9159939,14631082 +g1,3476:9792231,14631082 +g1,3476:10424523,14631082 +g1,3476:11056815,14631082 +g1,3476:11689107,14631082 +g1,3476:12321399,14631082 +g1,3476:12953691,14631082 +g1,3476:13585983,14631082 +g1,3476:14218275,14631082 +g1,3476:14850567,14631082 +g1,3476:15482859,14631082 +g1,3476:16115151,14631082 +h1,3476:16431297,14631082:0,0,0 +k1,3476:32583029,14631082:16151732 +g1,3476:32583029,14631082 +) +(1,3478:6630773,15952620:25952256,410518,101187 +(1,3477:6630773,15952620:0,0,0 +g1,3477:6630773,15952620 +g1,3477:6630773,15952620 +g1,3477:6303093,15952620 +(1,3477:6303093,15952620:0,0,0 +) +g1,3477:6630773,15952620 +) +g1,3478:10108376,15952620 +g1,3478:11056814,15952620 +k1,3478:11056814,15952620:0 +h1,3478:16747436,15952620:0,0,0 +k1,3478:32583029,15952620:15835593 +g1,3478:32583029,15952620 +) +(1,3479:6630773,16618798:25952256,410518,101187 +h1,3479:6630773,16618798:0,0,0 +h1,3479:9792230,16618798:0,0,0 +k1,3479:32583030,16618798:22790800 +g1,3479:32583030,16618798 +) +(1,3484:6630773,17350512:25952256,404226,76021 +(1,3481:6630773,17350512:0,0,0 +g1,3481:6630773,17350512 +g1,3481:6630773,17350512 +g1,3481:6303093,17350512 +(1,3481:6303093,17350512:0,0,0 +) +g1,3481:6630773,17350512 +) +g1,3484:7579210,17350512 +g1,3484:7895356,17350512 +g1,3484:9159939,17350512 +g1,3484:9792231,17350512 +g1,3484:10424523,17350512 +g1,3484:11056815,17350512 +g1,3484:11689107,17350512 +g1,3484:12321399,17350512 +g1,3484:12953691,17350512 +g1,3484:13585983,17350512 +g1,3484:14218275,17350512 +g1,3484:14850567,17350512 +g1,3484:15482859,17350512 +g1,3484:16115151,17350512 +h1,3484:16431297,17350512:0,0,0 +k1,3484:32583029,17350512:16151732 +g1,3484:32583029,17350512 +) +(1,3484:6630773,18016690:25952256,404226,9436 +h1,3484:6630773,18016690:0,0,0 +g1,3484:7579210,18016690 +g1,3484:10108376,18016690 +g1,3484:10740668,18016690 +g1,3484:11372960,18016690 +h1,3484:11689106,18016690:0,0,0 +k1,3484:32583030,18016690:20893924 +g1,3484:32583030,18016690 +) +(1,3486:6630773,19338228:25952256,410518,101187 +(1,3485:6630773,19338228:0,0,0 +g1,3485:6630773,19338228 +g1,3485:6630773,19338228 +g1,3485:6303093,19338228 +(1,3485:6303093,19338228:0,0,0 +) +g1,3485:6630773,19338228 +) +k1,3486:6630773,19338228:0 +h1,3486:13585978,19338228:0,0,0 +k1,3486:32583030,19338228:18997052 +g1,3486:32583030,19338228 +) +(1,3490:6630773,20069942:25952256,404226,76021 +(1,3488:6630773,20069942:0,0,0 +g1,3488:6630773,20069942 +g1,3488:6630773,20069942 +g1,3488:6303093,20069942 +(1,3488:6303093,20069942:0,0,0 +) +g1,3488:6630773,20069942 +) +g1,3490:7579210,20069942 +g1,3490:7895356,20069942 +g1,3490:9159939,20069942 +g1,3490:9792231,20069942 +g1,3490:10424523,20069942 +g1,3490:11056815,20069942 +g1,3490:11689107,20069942 +g1,3490:12321399,20069942 +g1,3490:12953691,20069942 +g1,3490:13585983,20069942 +g1,3490:14218275,20069942 +g1,3490:14850567,20069942 +g1,3490:15482859,20069942 +g1,3490:16115151,20069942 +h1,3490:16431297,20069942:0,0,0 +k1,3490:32583029,20069942:16151732 +g1,3490:32583029,20069942 +) +(1,3492:6630773,21391480:25952256,410518,101187 +(1,3491:6630773,21391480:0,0,0 +g1,3491:6630773,21391480 +g1,3491:6630773,21391480 +g1,3491:6303093,21391480 +(1,3491:6303093,21391480:0,0,0 +) +g1,3491:6630773,21391480 +) +k1,3492:6630773,21391480:0 +k1,3492:6630773,21391480:0 +h1,3492:18012018,21391480:0,0,0 +k1,3492:32583029,21391480:14571011 +g1,3492:32583029,21391480 +) +(1,3496:6630773,22123194:25952256,404226,76021 +(1,3494:6630773,22123194:0,0,0 +g1,3494:6630773,22123194 +g1,3494:6630773,22123194 +g1,3494:6303093,22123194 +(1,3494:6303093,22123194:0,0,0 +) +g1,3494:6630773,22123194 +) +g1,3496:7579210,22123194 +g1,3496:7895356,22123194 +g1,3496:9159939,22123194 +g1,3496:9792231,22123194 +g1,3496:10424523,22123194 +g1,3496:11056815,22123194 +g1,3496:11689107,22123194 +g1,3496:12321399,22123194 +g1,3496:12953691,22123194 +g1,3496:13585983,22123194 +g1,3496:14218275,22123194 +g1,3496:14850567,22123194 +g1,3496:15482859,22123194 +g1,3496:16115151,22123194 +h1,3496:16431297,22123194:0,0,0 +k1,3496:32583029,22123194:16151732 +g1,3496:32583029,22123194 +) +] +) +g1,3497:32583029,22199215 +g1,3497:6630773,22199215 +g1,3497:6630773,22199215 +g1,3497:32583029,22199215 +g1,3497:32583029,22199215 +) +h1,3497:6630773,22395823:0,0,0 +v1,3501:6630773,24121073:0,393216,0 +(1,3519:6630773,35540967:25952256,11813110,616038 +g1,3519:6630773,35540967 +(1,3519:6630773,35540967:25952256,11813110,616038 +(1,3519:6630773,36157005:25952256,12429148,0 +[1,3519:6630773,36157005:25952256,12429148,0 +(1,3519:6630773,36130791:25952256,12376720,0 +r1,3519:6656987,36130791:26214,12376720,0 +[1,3519:6656987,36130791:25899828,12376720,0 +(1,3519:6656987,35540967:25899828,11197072,0 +[1,3519:7246811,35540967:24720180,11197072,0 +(1,3502:7246811,25505780:24720180,1161885,196608 +(1,3501:7246811,25505780:0,1161885,196608 +r1,3519:8794447,25505780:1547636,1358493,196608 +k1,3501:7246811,25505780:-1547636 +) +(1,3501:7246811,25505780:1547636,1161885,196608 +) +k1,3501:8988289,25505780:193842 +k1,3501:10670312,25505780:198943 +k1,3501:11425656,25505780:198943 +k1,3501:11988980,25505780:198944 +k1,3501:14448915,25505780:198943 +k1,3501:18326394,25505780:198943 +k1,3501:21239325,25505780:193842 +k1,3501:24669335,25505780:193842 +k1,3501:26757167,25505780:193842 +k1,3501:28743419,25505780:193842 +k1,3501:29928821,25505780:193842 +k1,3501:31966991,25505780:0 +) +(1,3502:7246811,26347268:24720180,513147,134348 +k1,3501:8208701,26347268:275728 +k1,3501:11007564,26347268:275727 +k1,3501:13843784,26347268:275728 +k1,3501:16598084,26347268:275728 +k1,3501:18441432,26347268:275727 +k1,3501:20047541,26347268:275728 +k1,3501:21514713,26347268:275727 +k1,3501:23534354,26347268:275728 +k1,3501:24801642,26347268:275728 +k1,3501:26096454,26347268:275727 +k1,3501:29188264,26347268:275728 +k1,3501:31966991,26347268:0 +) +(1,3502:7246811,27188756:24720180,513147,126483 +k1,3501:8253694,27188756:245355 +(1,3501:8253694,27188756:0,452978,115847 +r1,3519:12480790,27188756:4227096,568825,115847 +k1,3501:8253694,27188756:-4227096 +) +(1,3501:8253694,27188756:4227096,452978,115847 +k1,3501:8253694,27188756:3277 +h1,3501:12477513,27188756:0,411205,112570 +) +k1,3501:12726145,27188756:245355 +k1,3501:14669538,27188756:245355 +k1,3501:17286641,27188756:245355 +k1,3501:18183424,27188756:245355 +k1,3501:18784639,27188756:245355 +k1,3501:21097654,27188756:245354 +k1,3501:22539696,27188756:245355 +k1,3501:24629234,27188756:245355 +k1,3501:25533881,27188756:245355 +k1,3501:26798321,27188756:245355 +k1,3501:28937666,27188756:245355 +k1,3501:30975431,27188756:245355 +k1,3501:31966991,27188756:0 +) +(1,3502:7246811,28030244:24720180,505283,134348 +k1,3501:9628628,28030244:252552 +k1,3501:11919349,28030244:252551 +k1,3501:12858063,28030244:252552 +k1,3501:16085294,28030244:252552 +k1,3501:18707628,28030244:252552 +k1,3501:20426875,28030244:252551 +k1,3501:22377465,28030244:252552 +k1,3501:24326744,28030244:252552 +k1,3501:27884277,28030244:252552 +k1,3501:29128388,28030244:252551 +k1,3501:31339156,28030244:252552 +k1,3501:31966991,28030244:0 +) +(1,3502:7246811,28871732:24720180,513147,115847 +k1,3501:10127963,28871732:249881 +k1,3501:11029271,28871732:249880 +(1,3501:11029271,28871732:0,452978,115847 +r1,3519:15256367,28871732:4227096,568825,115847 +k1,3501:11029271,28871732:-4227096 +) +(1,3501:11029271,28871732:4227096,452978,115847 +k1,3501:11029271,28871732:3277 +h1,3501:15253090,28871732:0,411205,112570 +) +k1,3501:15679918,28871732:249881 +(1,3501:15679918,28871732:0,452978,115847 +r1,3519:20610438,28871732:4930520,568825,115847 +k1,3501:15679918,28871732:-4930520 +) +(1,3501:15679918,28871732:4930520,452978,115847 +k1,3501:15679918,28871732:3277 +h1,3501:20607161,28871732:0,411205,112570 +) +k1,3501:20860318,28871732:249880 +k1,3501:23451145,28871732:249881 +k1,3501:24720110,28871732:249880 +k1,3501:27944670,28871732:249881 +k1,3501:30038733,28871732:249880 +k1,3501:30947906,28871732:249881 +k1,3501:31966991,28871732:0 +) +(1,3502:7246811,29713220:24720180,513147,134348 +k1,3501:9412418,29713220:199527 +k1,3501:10089703,29713220:199528 +k1,3501:11985957,29713220:199527 +k1,3501:15160164,29713220:199528 +k1,3501:17555802,29713220:199527 +k1,3501:20796856,29713220:199528 +k1,3501:23986135,29713220:199527 +k1,3501:25565851,29713220:199528 +k1,3501:26869660,29713220:199527 +k1,3501:27816954,29713220:199528 +k1,3501:31350953,29713220:199527 +k1,3501:31966991,29713220:0 +) +(1,3502:7246811,30554708:24720180,505283,134348 +g1,3501:7801900,30554708 +g1,3501:10242460,30554708 +g1,3501:11970644,30554708 +g1,3501:13905266,30554708 +(1,3501:13905266,30554708:0,452978,115847 +r1,3519:18132362,30554708:4227096,568825,115847 +k1,3501:13905266,30554708:-4227096 +) +(1,3501:13905266,30554708:4227096,452978,115847 +k1,3501:13905266,30554708:3277 +h1,3501:18129085,30554708:0,411205,112570 +) +g1,3501:18331591,30554708 +g1,3501:19798286,30554708 +g1,3501:21016600,30554708 +g1,3501:23651147,30554708 +g1,3501:26470505,30554708 +k1,3502:31966991,30554708:3312171 +g1,3502:31966991,30554708 +) +v1,3504:7246811,31745174:0,393216,0 +(1,3517:7246811,34820071:24720180,3468113,196608 +g1,3517:7246811,34820071 +g1,3517:7246811,34820071 +g1,3517:7050203,34820071 +(1,3517:7050203,34820071:0,3468113,196608 +r1,3519:32163599,34820071:25113396,3664721,196608 +k1,3517:7050203,34820071:-25113396 +) +(1,3517:7050203,34820071:25113396,3468113,196608 +[1,3517:7246811,34820071:24720180,3271505,0 +(1,3506:7246811,31959084:24720180,410518,101187 +(1,3505:7246811,31959084:0,0,0 +g1,3505:7246811,31959084 +g1,3505:7246811,31959084 +g1,3505:6919131,31959084 +(1,3505:6919131,31959084:0,0,0 +) +g1,3505:7246811,31959084 +) +k1,3506:7246811,31959084:0 +h1,3506:12621287,31959084:0,0,0 +k1,3506:31966991,31959084:19345704 +g1,3506:31966991,31959084 +) +(1,3510:7246811,32690798:24720180,410518,76021 +(1,3508:7246811,32690798:0,0,0 +g1,3508:7246811,32690798 +g1,3508:7246811,32690798 +g1,3508:6919131,32690798 +(1,3508:6919131,32690798:0,0,0 +) +g1,3508:7246811,32690798 +) +g1,3510:8195248,32690798 +g1,3510:9459831,32690798 +h1,3510:11988996,32690798:0,0,0 +k1,3510:31966992,32690798:19977996 +g1,3510:31966992,32690798 +) +(1,3512:7246811,34012336:24720180,410518,101187 +(1,3511:7246811,34012336:0,0,0 +g1,3511:7246811,34012336 +g1,3511:7246811,34012336 +g1,3511:6919131,34012336 +(1,3511:6919131,34012336:0,0,0 +) +g1,3511:7246811,34012336 +) +k1,3512:7246811,34012336:0 +h1,3512:12305142,34012336:0,0,0 +k1,3512:31966990,34012336:19661848 +g1,3512:31966990,34012336 +) +(1,3516:7246811,34744050:24720180,404226,76021 +(1,3514:7246811,34744050:0,0,0 +g1,3514:7246811,34744050 +g1,3514:7246811,34744050 +g1,3514:6919131,34744050 +(1,3514:6919131,34744050:0,0,0 +) +g1,3514:7246811,34744050 +) +g1,3516:8195248,34744050 +g1,3516:9459831,34744050 +h1,3516:12305142,34744050:0,0,0 +k1,3516:31966990,34744050:19661848 +g1,3516:31966990,34744050 +) +] +) +g1,3517:31966991,34820071 +g1,3517:7246811,34820071 +g1,3517:7246811,34820071 +g1,3517:31966991,34820071 +g1,3517:31966991,34820071 +) +h1,3517:7246811,35016679:0,0,0 +] +) +] +r1,3519:32583029,36130791:26214,12376720,0 +) +] +) +) +g1,3519:32583029,35540967 +) +h1,3519:6630773,36157005:0,0,0 +v1,3522:6630773,37440375:0,393216,0 +(1,3523:6630773,41282898:25952256,4235739,616038 +g1,3523:6630773,41282898 +(1,3523:6630773,41282898:25952256,4235739,616038 +(1,3523:6630773,41898936:25952256,4851777,0 +[1,3523:6630773,41898936:25952256,4851777,0 +(1,3523:6630773,41872722:25952256,4799349,0 +r1,3523:6656987,41872722:26214,4799349,0 +[1,3523:6656987,41872722:25899828,4799349,0 +(1,3523:6656987,41282898:25899828,3619701,0 +[1,3523:7246811,41282898:24720180,3619701,0 +(1,3523:7246811,38750571:24720180,1087374,11795 +k1,3522:8657062,38750571:200548 +k1,3522:10908887,38750571:200548 +k1,3522:11465295,38750571:200548 +k1,3522:13559832,38750571:200547 +k1,3522:15154331,38750571:200548 +k1,3522:17147289,38750571:200548 +k1,3522:19629801,38750571:200548 +k1,3522:21224300,38750571:200548 +k1,3522:23553457,38750571:200548 +k1,3522:25805281,38750571:200547 +k1,3522:28478502,38750571:200548 +k1,3522:30573040,38750571:200548 +k1,3522:31966991,38750571:0 +) +(1,3523:7246811,39592059:24720180,513147,126483 +k1,3522:8444700,39592059:178804 +k1,3522:10415914,39592059:178804 +k1,3522:12876682,39592059:178804 +k1,3522:14449437,39592059:178804 +k1,3522:15647326,39592059:178804 +k1,3522:17479603,39592059:178804 +k1,3522:19787016,39592059:178804 +k1,3522:21037989,39592059:178804 +k1,3522:23724200,39592059:178804 +k1,3522:27405248,39592059:178804 +k1,3522:29229006,39592059:178804 +k1,3522:30611051,39592059:178804 +k1,3523:31966991,39592059:0 +) +(1,3523:7246811,40433547:24720180,513147,134348 +k1,3522:8700338,40433547:203755 +k1,3522:10370789,40433547:203755 +k1,3522:12798837,40433547:203756 +k1,3522:13654020,40433547:203755 +k1,3522:16477904,40433547:203755 +k1,3522:18989837,40433547:203755 +k1,3522:20928985,40433547:203755 +(1,3522:20928985,40433547:0,452978,115847 +r1,3523:25156081,40433547:4227096,568825,115847 +k1,3522:20928985,40433547:-4227096 +) +(1,3522:20928985,40433547:4227096,452978,115847 +k1,3522:20928985,40433547:3277 +h1,3522:25152804,40433547:0,411205,112570 +) +k1,3522:25533506,40433547:203755 +k1,3522:28070999,40433547:203756 +k1,3522:29571712,40433547:203755 +k1,3522:30794552,40433547:203755 +k1,3522:31966991,40433547:0 +) +(1,3523:7246811,41275035:24720180,513147,7863 +g1,3522:10066169,41275035 +g1,3522:12573576,41275035 +g1,3522:14516063,41275035 +g1,3522:15398177,41275035 +g1,3522:16663677,41275035 +g1,3522:18430527,41275035 +g1,3522:20081378,41275035 +k1,3523:31966991,41275035:10009973 +g1,3523:31966991,41275035 +) +] +) +] +r1,3523:32583029,41872722:26214,4799349,0 +) +] +) +) +g1,3523:32583029,41282898 +) +h1,3523:6630773,41898936:0,0,0 +(1,3526:6630773,43182305:25952256,513147,126483 +h1,3525:6630773,43182305:983040,0,0 +k1,3525:10081244,43182305:148767 +k1,3525:11221570,43182305:148766 +k1,3525:12724311,43182305:148767 +k1,3525:16082375,43182305:148766 +k1,3525:16847180,43182305:148767 +k1,3525:17584460,43182305:148767 +k1,3525:18361061,43182305:148766 +k1,3525:21141099,43182305:148767 +k1,3525:21941294,43182305:148767 +k1,3525:23792030,43182305:148766 +k1,3525:27024921,43182305:148767 +k1,3525:29932753,43182305:148766 +k1,3525:30697558,43182305:148767 +k1,3525:32583029,43182305:0 +) +(1,3526:6630773,44023793:25952256,513147,134348 +k1,3525:7858686,44023793:208828 +k1,3525:9302869,44023793:208829 +k1,3525:10170989,44023793:208828 +k1,3525:10735678,44023793:208829 +k1,3525:13455846,44023793:208828 +k1,3525:14196172,44023793:208829 +k1,3525:15339543,44023793:208828 +k1,3525:17246410,44023793:208829 +k1,3525:20058983,44023793:208828 +k1,3525:20623672,44023793:208829 +k1,3525:22820207,44023793:208828 +k1,3525:23680464,44023793:208829 +k1,3525:24637058,44023793:208828 +k1,3525:26558343,44023793:208829 +k1,3525:27450056,44023793:208828 +k1,3525:29356923,44023793:208829 +k1,3525:31747445,44023793:208828 +k1,3525:32583029,44023793:0 +) +(1,3526:6630773,44865281:25952256,513147,134348 +k1,3525:7211379,44865281:224746 +k1,3525:8801241,44865281:224747 +k1,3525:9642025,44865281:224746 +k1,3525:10455285,44865281:224747 +k1,3525:12998039,44865281:224746 +k1,3525:14214346,44865281:224747 +k1,3525:17270903,44865281:224746 +k1,3525:19720597,44865281:224747 +k1,3525:20561381,44865281:224746 +k1,3525:21805212,44865281:224746 +k1,3525:23683432,44865281:224747 +k1,3525:25146153,44865281:224746 +k1,3525:26318551,44865281:224747 +k1,3525:28977935,44865281:224721 +k1,3525:30394126,44865281:224746 +k1,3526:32583029,44865281:0 +) +(1,3526:6630773,45706769:25952256,513147,126483 +k1,3525:8169908,45706769:198268 +k1,3525:11096440,45706769:198268 +k1,3525:12761405,45706769:198269 +k1,3525:13645835,45706769:198268 +k1,3525:15682388,45706769:198268 +k1,3525:18255680,45706769:198268 +k1,3525:19650635,45706769:198268 +k1,3525:21234990,45706769:198269 +k1,3525:22092550,45706769:198268 +k1,3525:24278525,45706769:198268 +k1,3525:25761299,45706769:198268 +k1,3525:26491064,45706769:198268 +k1,3525:28401789,45706769:198269 +k1,3525:29131554,45706769:198268 +k1,3525:31821501,45706769:198268 +k1,3525:32583029,45706769:0 +) +] +(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 +) +] +h1,3526:4262630,4025873:0,0,0 ] !23703 }69 -Input:452:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:453:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:454:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:455:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:456:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:457:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:458:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!606 +Input:448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {70 -[1,3598:4262630,47279633:28320399,43253760,0 -(1,3598:4262630,4025873:0,0,0 -[1,3598:-473657,4025873:25952256,0,0 -(1,3598:-473657,-710414:25952256,0,0 -h1,3598:-473657,-710414:0,0,0 -(1,3598:-473657,-710414:0,0,0 -(1,3598:-473657,-710414:0,0,0 -g1,3598:-473657,-710414 -(1,3598:-473657,-710414:65781,0,65781 -g1,3598:-407876,-710414 -[1,3598:-407876,-644633:0,0,0 +[1,3604:4262630,47279633:28320399,43253760,0 +(1,3604:4262630,4025873:0,0,0 +[1,3604:-473657,4025873:25952256,0,0 +(1,3604:-473657,-710414:25952256,0,0 +h1,3604:-473657,-710414:0,0,0 +(1,3604:-473657,-710414:0,0,0 +(1,3604:-473657,-710414:0,0,0 +g1,3604:-473657,-710414 +(1,3604:-473657,-710414:65781,0,65781 +g1,3604:-407876,-710414 +[1,3604:-407876,-644633:0,0,0 ] ) -k1,3598:-473657,-710414:-65781 +k1,3604:-473657,-710414:-65781 ) ) -k1,3598:25478599,-710414:25952256 -g1,3598:25478599,-710414 +k1,3604:25478599,-710414:25952256 +g1,3604:25478599,-710414 ) ] ) -[1,3598:6630773,47279633:25952256,43253760,0 -[1,3598:6630773,4812305:25952256,786432,0 -(1,3598:6630773,4812305:25952256,485622,11795 -(1,3598:6630773,4812305:25952256,485622,11795 -g1,3598:3078558,4812305 -[1,3598:3078558,4812305:0,0,0 -(1,3598:3078558,2439708:0,1703936,0 -k1,3598:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3598:2537886,2439708:1179648,16384,0 +[1,3604:6630773,47279633:25952256,43253760,0 +[1,3604:6630773,4812305:25952256,786432,0 +(1,3604:6630773,4812305:25952256,485622,11795 +(1,3604:6630773,4812305:25952256,485622,11795 +g1,3604:3078558,4812305 +[1,3604:3078558,4812305:0,0,0 +(1,3604:3078558,2439708:0,1703936,0 +k1,3604:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3604:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3598:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3604:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3598:3078558,4812305:0,0,0 -(1,3598:3078558,2439708:0,1703936,0 -g1,3598:29030814,2439708 -g1,3598:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3598:36151628,1915420:16384,1179648,0 +[1,3604:3078558,4812305:0,0,0 +(1,3604:3078558,2439708:0,1703936,0 +g1,3604:29030814,2439708 +g1,3604:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3604:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3598:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3604:37855564,2439708:1179648,16384,0 ) ) -k1,3598:3078556,2439708:-34777008 +k1,3604:3078556,2439708:-34777008 ) ] -[1,3598:3078558,4812305:0,0,0 -(1,3598:3078558,49800853:0,16384,2228224 -k1,3598:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3598:2537886,49800853:1179648,16384,0 +[1,3604:3078558,4812305:0,0,0 +(1,3604:3078558,49800853:0,16384,2228224 +k1,3604:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3604:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3598:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3604:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 -) -] -) -) -) -] -[1,3598:3078558,4812305:0,0,0 -(1,3598:3078558,49800853:0,16384,2228224 -g1,3598:29030814,49800853 -g1,3598:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3598:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3598:37855564,49800853:1179648,16384,0 -) -) -k1,3598:3078556,49800853:-34777008 -) -] -g1,3598:6630773,4812305 -g1,3598:6630773,4812305 -g1,3598:9104757,4812305 -k1,3598:31786111,4812305:22681354 -) -) -] -[1,3598:6630773,45706769:25952256,40108032,0 -(1,3598:6630773,45706769:25952256,40108032,0 -(1,3598:6630773,45706769:0,0,0 -g1,3598:6630773,45706769 -) -[1,3598:6630773,45706769:25952256,40108032,0 -(1,3520:6630773,6254097:25952256,513147,134348 -k1,3519:9369854,6254097:148443 -k1,3519:10537382,6254097:148443 -k1,3519:14451525,6254097:148444 -k1,3519:17111308,6254097:148443 -k1,3519:17791248,6254097:148443 -k1,3519:18295551,6254097:148443 -k1,3519:20337984,6254097:148443 -k1,3519:22616348,6254097:148444 -k1,3519:25406496,6254097:148392 -k1,3519:26237825,6254097:148444 -k1,3519:26742128,6254097:148443 -k1,3519:30071689,6254097:148443 -k1,3519:32583029,6254097:0 -) -(1,3520:6630773,7095585:25952256,513147,134348 -k1,3519:8972593,7095585:211900 -k1,3519:12882033,7095585:211899 -k1,3519:14474777,7095585:211900 -k1,3519:16732711,7095585:211900 -k1,3519:17300470,7095585:211899 -k1,3519:18368926,7095585:211900 -k1,3519:19240118,7095585:211900 -k1,3519:21395815,7095585:211899 -k1,3519:24137405,7095585:211900 -k1,3519:24965343,7095585:211900 -k1,3519:26778942,7095585:211899 -k1,3519:28861895,7095585:211900 -k1,3519:32583029,7095585:0 -) -(1,3520:6630773,7937073:25952256,513147,134348 -k1,3519:7583666,7937073:182190 -k1,3519:11531555,7937073:182190 -k1,3519:14225085,7937073:182190 -k1,3519:15093437,7937073:182190 -k1,3519:18722165,7937073:182190 -k1,3519:19587240,7937073:182190 -k1,3519:21009372,7937073:182191 -k1,3519:23893611,7937073:182190 -k1,3519:24885171,7937073:182190 -k1,3519:26086446,7937073:182190 -k1,3519:28357268,7937073:182190 -k1,3519:29198750,7937073:182190 -k1,3519:30400025,7937073:182190 -k1,3520:32583029,7937073:0 -) -(1,3520:6630773,8778561:25952256,513147,126483 -k1,3519:8480941,8778561:211113 -k1,3519:9374940,8778561:211114 -k1,3519:11858842,8778561:211113 -k1,3519:13261400,8778561:211113 -k1,3519:14088551,8778561:211113 -k1,3519:16001635,8778561:211114 -k1,3519:18341357,8778561:211113 -k1,3519:19083967,8778561:211113 -k1,3519:19650940,8778561:211113 -k1,3519:22640125,8778561:211114 -k1,3519:23510530,8778561:211113 -k1,3519:24740728,8778561:211113 -k1,3519:26341204,8778561:211113 -k1,3519:27743763,8778561:211114 -k1,3519:28973961,8778561:211113 -k1,3519:32583029,8778561:0 -) -(1,3520:6630773,9620049:25952256,513147,134348 -g1,3519:7512887,9620049 -g1,3519:9811234,9620049 -g1,3519:11294969,9620049 -g1,3519:12928781,9620049 -g1,3519:15002340,9620049 -g1,3519:15852997,9620049 -g1,3519:17864952,9620049 -g1,3519:20015843,9620049 -g1,3519:21657519,9620049 -g1,3519:22516040,9620049 -g1,3519:23734354,9620049 -g1,3519:25322946,9620049 -k1,3520:32583029,9620049:4531819 -g1,3520:32583029,9620049 -) -(1,3522:6630773,10461537:25952256,513147,126483 -h1,3521:6630773,10461537:983040,0,0 -k1,3521:9060987,10461537:250487 -k1,3521:11050800,10461537:250487 -k1,3521:11960579,10461537:250487 -k1,3521:13230152,10461537:250488 -k1,3521:15273049,10461537:250487 -k1,3521:16139574,10461537:250487 -k1,3521:16745921,10461537:250487 -(1,3521:16745921,10461537:0,459977,115847 -r1,3521:18862746,10461537:2116825,575824,115847 -k1,3521:16745921,10461537:-2116825 -) -(1,3521:16745921,10461537:2116825,459977,115847 -k1,3521:16745921,10461537:3277 -h1,3521:18859469,10461537:0,411205,112570 -) -k1,3521:19113233,10461537:250487 -k1,3521:20856630,10461537:250487 -k1,3521:22173388,10461537:250487 -k1,3521:24203178,10461537:250488 -k1,3521:26578342,10461537:250487 -k1,3521:30630572,10461537:250487 -k1,3521:31563944,10461537:250487 -k1,3521:32583029,10461537:0 -) -(1,3522:6630773,11303025:25952256,513147,126483 -k1,3521:8832783,11303025:191365 -k1,3521:11500098,11303025:191365 -k1,3521:12763632,11303025:191365 -k1,3521:13413094,11303025:191365 -k1,3521:15097369,11303025:191365 -k1,3521:17068036,11303025:191365 -k1,3521:18589782,11303025:191365 -k1,3521:19800232,11303025:191365 -k1,3521:22150353,11303025:191365 -k1,3521:22873215,11303025:191365 -k1,3521:25588371,11303025:191365 -k1,3521:26798821,11303025:191365 -k1,3521:28729512,11303025:191365 -k1,3521:29580169,11303025:191365 -k1,3521:30790619,11303025:191365 -k1,3521:32583029,11303025:0 -) -(1,3522:6630773,12144513:25952256,513147,134348 -k1,3521:7500435,12144513:253624 -k1,3521:8773145,12144513:253625 -k1,3521:10929279,12144513:253624 -k1,3521:11842195,12144513:253624 -k1,3521:13877089,12144513:253625 -k1,3521:15322158,12144513:253624 -k1,3521:16191821,12144513:253625 -k1,3521:18137585,12144513:253624 -k1,3521:20088591,12144513:253624 -k1,3521:21361301,12144513:253625 -k1,3521:24576497,12144513:253624 -k1,3521:25446159,12144513:253624 -k1,3521:29437302,12144513:253625 -k1,3521:31386342,12144513:253624 -k1,3521:32583029,12144513:0 -) -(1,3522:6630773,12986001:25952256,513147,134348 -k1,3521:9104304,12986001:207951 -k1,3521:12041829,12986001:207950 -k1,3521:12781277,12986001:207951 -k1,3521:17015760,12986001:207951 -k1,3521:18415155,12986001:207950 -k1,3521:19154603,12986001:207951 -k1,3521:22972932,12986001:207951 -k1,3521:23793645,12986001:207951 -k1,3521:25020680,12986001:207950 -k1,3521:26654039,12986001:207951 -k1,3521:27217850,12986001:207951 -k1,3521:29319790,12986001:207950 -k1,3521:30059238,12986001:207951 -k1,3521:32583029,12986001:0 -) -(1,3522:6630773,13827489:25952256,513147,134348 -k1,3521:11369190,13827489:217743 -k1,3521:13538595,13827489:217743 -k1,3521:17061319,13827489:217743 -k1,3521:18298147,13827489:217743 -k1,3521:20781470,13827489:217743 -k1,3521:23728789,13827489:217744 -k1,3521:24605824,13827489:217743 -k1,3521:26615977,13827489:217743 -k1,3521:27365217,13827489:217743 -k1,3521:28649231,13827489:217743 -k1,3521:29886059,13827489:217743 -k1,3521:31260512,13827489:217743 -k1,3522:32583029,13827489:0 -) -(1,3522:6630773,14668977:25952256,505283,126483 -k1,3521:8255137,14668977:261870 -k1,3521:9334896,14668977:261870 -k1,3521:11672291,14668977:261870 -k1,3521:13963155,14668977:261869 -k1,3521:17505757,14668977:261870 -(1,3521:17505757,14668977:0,452978,115847 -r1,3521:19622582,14668977:2116825,568825,115847 -k1,3521:17505757,14668977:-2116825 -) -(1,3521:17505757,14668977:2116825,452978,115847 -k1,3521:17505757,14668977:3277 -h1,3521:19619305,14668977:0,411205,112570 -) -k1,3521:19884452,14668977:261870 -k1,3521:20762360,14668977:261870 -k1,3521:22043315,14668977:261870 -k1,3521:26011901,14668977:261870 -k1,3521:28319804,14668977:261869 -k1,3521:29039771,14668977:261870 -k1,3521:31931601,14668977:261870 -k1,3521:32583029,14668977:0 -) -(1,3522:6630773,15510465:25952256,513147,134348 -k1,3521:7761310,15510465:195994 -k1,3521:8976388,15510465:195993 -k1,3521:10911708,15510465:195994 -k1,3521:11766993,15510465:195993 -k1,3521:12982072,15510465:195994 -k1,3521:15144145,15510465:195993 -k1,3521:15810032,15510465:195994 -k1,3521:16537522,15510465:195993 -k1,3521:18019332,15510465:195994 -k1,3521:20845286,15510465:195994 -k1,3521:21692707,15510465:195993 -k1,3521:24129377,15510465:195994 -k1,3521:25344455,15510465:195993 -k1,3521:28270024,15510465:195994 -k1,3521:29125309,15510465:195993 -k1,3521:30092006,15510465:195994 -k1,3521:32583029,15510465:0 -) -(1,3522:6630773,16351953:25952256,513147,7863 -k1,3522:32583030,16351953:23884596 -g1,3522:32583030,16351953 -) -v1,3524:6630773,17642222:0,393216,0 -(1,3598:6630773,45116945:25952256,27867939,589824 -g1,3598:6630773,45116945 -(1,3598:6630773,45116945:25952256,27867939,589824 -(1,3598:6630773,45706769:25952256,28457763,0 -[1,3598:6630773,45706769:25952256,28457763,0 -(1,3598:6630773,45706769:25952256,28431549,0 -r1,3598:6656987,45706769:26214,28431549,0 -[1,3598:6656987,45706769:25899828,28431549,0 -(1,3598:6656987,45116945:25899828,27251901,0 -[1,3598:7246811,45116945:24720180,27251901,0 -(1,3525:7246811,19026929:24720180,1161885,196608 -(1,3524:7246811,19026929:0,1161885,196608 -r1,3598:8794447,19026929:1547636,1358493,196608 -k1,3524:7246811,19026929:-1547636 -) -(1,3524:7246811,19026929:1547636,1161885,196608 -) -k1,3524:9106265,19026929:311818 -k1,3524:12727337,19026929:320024 -k1,3524:15000989,19026929:320024 -k1,3524:17423066,19026929:311818 -k1,3524:18931571,19026929:311818 -k1,3524:20845088,19026929:311817 -k1,3524:23005021,19026929:311818 -k1,3524:24554814,19026929:311818 -k1,3524:25398129,19026929:311818 -k1,3524:27445339,19026929:311817 -(1,3524:27445339,19026929:0,452978,115847 -r1,3598:30969011,19026929:3523672,568825,115847 -k1,3524:27445339,19026929:-3523672 -) -(1,3524:27445339,19026929:3523672,452978,115847 -k1,3524:27445339,19026929:3277 -h1,3524:30965734,19026929:0,411205,112570 -) -k1,3524:31280829,19026929:311818 -k1,3524:31966991,19026929:0 -) -(1,3525:7246811,19868417:24720180,513147,126483 -k1,3524:9606038,19868417:283702 -k1,3524:11931843,19868417:283703 -k1,3524:13287714,19868417:283702 -k1,3524:14029514,19868417:283703 -k1,3524:14844713,19868417:283702 -k1,3524:16414232,19868417:283703 -k1,3524:19327894,19868417:283702 -k1,3524:20263025,19868417:283703 -k1,3524:21639212,19868417:283702 -(1,3524:21639212,19868417:0,459977,115847 -r1,3598:24459461,19868417:2820249,575824,115847 -k1,3524:21639212,19868417:-2820249 -) -(1,3524:21639212,19868417:2820249,459977,115847 -k1,3524:21639212,19868417:3277 -h1,3524:24456184,19868417:0,411205,112570 -) -k1,3524:24916834,19868417:283703 -k1,3524:26397223,19868417:283702 -k1,3524:29867286,19868417:283703 -k1,3524:30682485,19868417:283702 -k1,3525:31966991,19868417:0 -) -(1,3525:7246811,20709905:24720180,505283,134348 -(1,3524:7246811,20709905:0,459977,115847 -r1,3598:10067060,20709905:2820249,575824,115847 -k1,3524:7246811,20709905:-2820249 -) -(1,3524:7246811,20709905:2820249,459977,115847 -k1,3524:7246811,20709905:3277 -h1,3524:10063783,20709905:0,411205,112570 -) -k1,3524:10301304,20709905:234244 -k1,3524:12390217,20709905:234244 -k1,3524:13643547,20709905:234245 -k1,3524:16220703,20709905:234244 -k1,3524:18247357,20709905:234244 -k1,3524:19673046,20709905:234244 -(1,3524:19673046,20709905:0,452978,115847 -r1,3598:22493295,20709905:2820249,568825,115847 -k1,3524:19673046,20709905:-2820249 -) -(1,3524:19673046,20709905:2820249,452978,115847 -k1,3524:19673046,20709905:3277 -h1,3524:22490018,20709905:0,411205,112570 -) -k1,3524:22727539,20709905:234244 -k1,3524:24337385,20709905:234245 -k1,3524:27275644,20709905:234244 -k1,3524:30000911,20709905:234244 -k1,3524:31966991,20709905:0 -) -(1,3525:7246811,21551393:24720180,513147,134348 -k1,3524:8209685,21551393:196758 -k1,3524:9065735,21551393:196758 -k1,3524:10901548,21551393:196758 -k1,3524:11859834,21551393:196758 -k1,3524:14844494,21551393:196758 -k1,3524:18211228,21551393:196758 -k1,3524:19276337,21551393:196757 -k1,3524:20870978,21551393:196758 -k1,3524:22160221,21551393:196758 -(1,3524:22160221,21551393:0,452978,115847 -r1,3598:25332181,21551393:3171960,568825,115847 -k1,3524:22160221,21551393:-3171960 -) -(1,3524:22160221,21551393:3171960,452978,115847 -k1,3524:22160221,21551393:3277 -h1,3524:25328904,21551393:0,411205,112570 -) -k1,3524:25528939,21551393:196758 -k1,3524:27921808,21551393:196758 -k1,3524:29403072,21551393:196758 -k1,3524:30591390,21551393:196758 -k1,3524:31966991,21551393:0 -) -(1,3525:7246811,22392881:24720180,505283,134348 -k1,3524:8586647,22392881:183126 -k1,3524:11744453,22392881:183127 -k1,3524:13489957,22392881:183126 -k1,3524:15697491,22392881:183127 -k1,3524:18076728,22392881:183126 -k1,3524:19364137,22392881:183127 -k1,3524:20295029,22392881:183126 -k1,3524:21412698,22392881:183126 -k1,3524:22281987,22392881:183127 -k1,3524:24309296,22392881:183126 -k1,3524:25108461,22392881:183127 -k1,3524:27516534,22392881:183126 -k1,3524:28718746,22392881:183127 -k1,3524:30555345,22392881:183126 -k1,3525:31966991,22392881:0 -k1,3525:31966991,22392881:0 -) -v1,3527:7246811,23583347:0,393216,0 -(1,3544:7246811,29253225:24720180,6063094,196608 -g1,3544:7246811,29253225 -g1,3544:7246811,29253225 -g1,3544:7050203,29253225 -(1,3544:7050203,29253225:0,6063094,196608 -r1,3598:32163599,29253225:25113396,6259702,196608 -k1,3544:7050203,29253225:-25113396 -) -(1,3544:7050203,29253225:25113396,6063094,196608 -[1,3544:7246811,29253225:24720180,5866486,0 -(1,3529:7246811,23797257:24720180,410518,107478 -(1,3528:7246811,23797257:0,0,0 -g1,3528:7246811,23797257 -g1,3528:7246811,23797257 -g1,3528:6919131,23797257 -(1,3528:6919131,23797257:0,0,0 -) -g1,3528:7246811,23797257 -) -g1,3529:10724414,23797257 -g1,3529:11672852,23797257 -g1,3529:13569727,23797257 -g1,3529:14518165,23797257 -g1,3529:16731185,23797257 -g1,3529:17363477,23797257 -g1,3529:19576498,23797257 -g1,3529:21157227,23797257 -g1,3529:22737956,23797257 -h1,3529:24318684,23797257:0,0,0 -k1,3529:31966991,23797257:7648307 -g1,3529:31966991,23797257 -) -(1,3530:7246811,24463435:24720180,410518,101187 -h1,3530:7246811,24463435:0,0,0 -h1,3530:10408268,24463435:0,0,0 -k1,3530:31966992,24463435:21558724 -g1,3530:31966992,24463435 -) -(1,3535:7246811,25195149:24720180,404226,76021 -(1,3532:7246811,25195149:0,0,0 -g1,3532:7246811,25195149 -g1,3532:7246811,25195149 -g1,3532:6919131,25195149 -(1,3532:6919131,25195149:0,0,0 -) -g1,3532:7246811,25195149 -) -g1,3535:8195248,25195149 -g1,3535:8511394,25195149 -g1,3535:9775977,25195149 -g1,3535:10408269,25195149 -g1,3535:11040561,25195149 -g1,3535:11672853,25195149 -g1,3535:12305145,25195149 -g1,3535:12937437,25195149 -g1,3535:13569729,25195149 -g1,3535:14202021,25195149 -g1,3535:14834313,25195149 -g1,3535:15466605,25195149 -g1,3535:16098897,25195149 -g1,3535:16731189,25195149 -h1,3535:17047335,25195149:0,0,0 -k1,3535:31966991,25195149:14919656 -g1,3535:31966991,25195149 -) -(1,3535:7246811,25861327:24720180,404226,6290 -h1,3535:7246811,25861327:0,0,0 -g1,3535:8195248,25861327 -g1,3535:10724414,25861327 -g1,3535:11356706,25861327 -g1,3535:11988998,25861327 -g1,3535:12621290,25861327 -h1,3535:12937436,25861327:0,0,0 -k1,3535:31966992,25861327:19029556 -g1,3535:31966992,25861327 -) -(1,3537:7246811,27182865:24720180,410518,101187 -(1,3536:7246811,27182865:0,0,0 -g1,3536:7246811,27182865 -g1,3536:7246811,27182865 -g1,3536:6919131,27182865 -(1,3536:6919131,27182865:0,0,0 -) -g1,3536:7246811,27182865 -) -k1,3537:7246811,27182865:0 -g1,3537:13253579,27182865 -g1,3537:14202017,27182865 -g1,3537:16415038,27182865 -g1,3537:17995767,27182865 -g1,3537:19576496,27182865 -h1,3537:20841079,27182865:0,0,0 -k1,3537:31966991,27182865:11125912 -g1,3537:31966991,27182865 -) -(1,3538:7246811,27849043:24720180,410518,101187 -h1,3538:7246811,27849043:0,0,0 -h1,3538:10408268,27849043:0,0,0 -k1,3538:31966992,27849043:21558724 -g1,3538:31966992,27849043 -) -(1,3543:7246811,28580757:24720180,404226,76021 -(1,3540:7246811,28580757:0,0,0 -g1,3540:7246811,28580757 -g1,3540:7246811,28580757 -g1,3540:6919131,28580757 -(1,3540:6919131,28580757:0,0,0 -) -g1,3540:7246811,28580757 -) -g1,3543:8195248,28580757 -g1,3543:8511394,28580757 -g1,3543:9775977,28580757 -g1,3543:10408269,28580757 -g1,3543:11040561,28580757 -g1,3543:11672853,28580757 -g1,3543:12305145,28580757 -g1,3543:12937437,28580757 -g1,3543:13569729,28580757 -g1,3543:14202021,28580757 -g1,3543:14834313,28580757 -g1,3543:15466605,28580757 -g1,3543:16098897,28580757 -g1,3543:16731189,28580757 -h1,3543:17047335,28580757:0,0,0 -k1,3543:31966991,28580757:14919656 -g1,3543:31966991,28580757 -) -(1,3543:7246811,29246935:24720180,404226,6290 -h1,3543:7246811,29246935:0,0,0 -g1,3543:8195248,29246935 -g1,3543:10724414,29246935 -g1,3543:11356706,29246935 -g1,3543:11988998,29246935 -g1,3543:12621290,29246935 -h1,3543:12937436,29246935:0,0,0 -k1,3543:31966992,29246935:19029556 -g1,3543:31966992,29246935 -) -] -) -g1,3544:31966991,29253225 -g1,3544:7246811,29253225 -g1,3544:7246811,29253225 -g1,3544:31966991,29253225 -g1,3544:31966991,29253225 -) -h1,3544:7246811,29449833:0,0,0 -(1,3548:7246811,30815609:24720180,513147,134348 -h1,3547:7246811,30815609:983040,0,0 -k1,3547:9294156,30815609:266732 -k1,3547:11211084,30815609:266731 -k1,3547:13342315,30815609:266732 -k1,3547:14370574,30815609:266731 -k1,3547:17608708,30815609:266732 -k1,3547:21668663,30815609:266731 -k1,3547:23674721,30815609:266732 -k1,3547:24557490,30815609:266731 -k1,3547:25843307,30815609:266732 -k1,3547:27103564,30815609:266731 -k1,3547:28029588,30815609:266732 -k1,3547:31966991,30815609:0 -) -(1,3548:7246811,31657097:24720180,505283,7863 -g1,3547:9456685,31657097 -g1,3547:10187411,31657097 -k1,3548:31966991,31657097:18543412 -g1,3548:31966991,31657097 -) -v1,3550:7246811,32847563:0,393216,0 -(1,3567:7246811,38517441:24720180,6063094,196608 -g1,3567:7246811,38517441 -g1,3567:7246811,38517441 -g1,3567:7050203,38517441 -(1,3567:7050203,38517441:0,6063094,196608 -r1,3598:32163599,38517441:25113396,6259702,196608 -k1,3567:7050203,38517441:-25113396 -) -(1,3567:7050203,38517441:25113396,6063094,196608 -[1,3567:7246811,38517441:24720180,5866486,0 -(1,3552:7246811,33061473:24720180,410518,107478 -(1,3551:7246811,33061473:0,0,0 -g1,3551:7246811,33061473 -g1,3551:7246811,33061473 -g1,3551:6919131,33061473 -(1,3551:6919131,33061473:0,0,0 -) -g1,3551:7246811,33061473 -) -g1,3552:10724414,33061473 -g1,3552:11672852,33061473 -g1,3552:13569727,33061473 -g1,3552:14518165,33061473 -g1,3552:16731185,33061473 -g1,3552:17363477,33061473 -g1,3552:19576498,33061473 -g1,3552:21157227,33061473 -g1,3552:22737956,33061473 -h1,3552:24318684,33061473:0,0,0 -k1,3552:31966991,33061473:7648307 -g1,3552:31966991,33061473 -) -(1,3553:7246811,33727651:24720180,410518,101187 -h1,3553:7246811,33727651:0,0,0 -h1,3553:10408268,33727651:0,0,0 -k1,3553:31966992,33727651:21558724 -g1,3553:31966992,33727651 -) -(1,3558:7246811,34459365:24720180,404226,76021 -(1,3555:7246811,34459365:0,0,0 -g1,3555:7246811,34459365 -g1,3555:7246811,34459365 -g1,3555:6919131,34459365 -(1,3555:6919131,34459365:0,0,0 -) -g1,3555:7246811,34459365 -) -g1,3558:8195248,34459365 -g1,3558:8511394,34459365 -g1,3558:9775977,34459365 -g1,3558:10408269,34459365 -g1,3558:11040561,34459365 -g1,3558:11672853,34459365 -g1,3558:12305145,34459365 -g1,3558:12937437,34459365 -g1,3558:13569729,34459365 -g1,3558:14202021,34459365 -g1,3558:14834313,34459365 -g1,3558:15466605,34459365 -g1,3558:16098897,34459365 -g1,3558:16731189,34459365 -h1,3558:17047335,34459365:0,0,0 -k1,3558:31966991,34459365:14919656 -g1,3558:31966991,34459365 -) -(1,3558:7246811,35125543:24720180,404226,6290 -h1,3558:7246811,35125543:0,0,0 -g1,3558:8195248,35125543 -g1,3558:10724414,35125543 -g1,3558:11356706,35125543 -g1,3558:11988998,35125543 -g1,3558:12621290,35125543 -h1,3558:12937436,35125543:0,0,0 -k1,3558:31966992,35125543:19029556 -g1,3558:31966992,35125543 -) -(1,3560:7246811,36447081:24720180,410518,101187 -(1,3559:7246811,36447081:0,0,0 -g1,3559:7246811,36447081 -g1,3559:7246811,36447081 -g1,3559:6919131,36447081 -(1,3559:6919131,36447081:0,0,0 -) -g1,3559:7246811,36447081 -) -k1,3560:7246811,36447081:0 -g1,3560:13253579,36447081 -g1,3560:14202017,36447081 -g1,3560:17047329,36447081 -g1,3560:17679621,36447081 -g1,3560:19260350,36447081 -g1,3560:20524933,36447081 -g1,3560:21157225,36447081 -g1,3560:22737954,36447081 -g1,3560:24002537,36447081 -g1,3560:24634829,36447081 -g1,3560:26215558,36447081 -g1,3560:27480141,36447081 -g1,3560:28112433,36447081 -h1,3560:29377016,36447081:0,0,0 -k1,3560:31966991,36447081:2589975 -g1,3560:31966991,36447081 -) -(1,3561:7246811,37113259:24720180,410518,101187 -h1,3561:7246811,37113259:0,0,0 -h1,3561:10408268,37113259:0,0,0 -k1,3561:31966992,37113259:21558724 -g1,3561:31966992,37113259 -) -(1,3566:7246811,37844973:24720180,404226,76021 -(1,3563:7246811,37844973:0,0,0 -g1,3563:7246811,37844973 -g1,3563:7246811,37844973 -g1,3563:6919131,37844973 -(1,3563:6919131,37844973:0,0,0 -) -g1,3563:7246811,37844973 -) -g1,3566:8195248,37844973 -g1,3566:8511394,37844973 -g1,3566:9775977,37844973 -g1,3566:10408269,37844973 -g1,3566:11040561,37844973 -g1,3566:11672853,37844973 -g1,3566:12305145,37844973 -g1,3566:12937437,37844973 -g1,3566:13569729,37844973 -g1,3566:14202021,37844973 -g1,3566:14834313,37844973 -g1,3566:15466605,37844973 -g1,3566:16098897,37844973 -g1,3566:16731189,37844973 -h1,3566:17047335,37844973:0,0,0 -k1,3566:31966991,37844973:14919656 -g1,3566:31966991,37844973 -) -(1,3566:7246811,38511151:24720180,404226,6290 -h1,3566:7246811,38511151:0,0,0 -g1,3566:8195248,38511151 -g1,3566:10724414,38511151 -g1,3566:11356706,38511151 -g1,3566:11988998,38511151 -g1,3566:12621290,38511151 -h1,3566:12937436,38511151:0,0,0 -k1,3566:31966992,38511151:19029556 -g1,3566:31966992,38511151 -) -] -) -g1,3567:31966991,38517441 -g1,3567:7246811,38517441 -g1,3567:7246811,38517441 -g1,3567:31966991,38517441 -g1,3567:31966991,38517441 -) -h1,3567:7246811,38714049:0,0,0 -(1,3571:7246811,40079825:24720180,513147,134348 -h1,3570:7246811,40079825:983040,0,0 -k1,3570:9249233,40079825:221809 -k1,3570:13424175,40079825:221810 -k1,3570:14407512,40079825:221809 -k1,3570:17243553,40079825:221810 -k1,3570:18656807,40079825:221809 -k1,3570:21819873,40079825:221810 -k1,3570:23060767,40079825:221809 -k1,3570:25126760,40079825:221810 -k1,3570:26007861,40079825:221809 -k1,3570:27605272,40079825:221810 -k1,3570:29519221,40079825:221809 -k1,3571:31966991,40079825:0 -) -(1,3571:7246811,40921313:24720180,513147,102891 -g1,3570:8515588,40921313 -g1,3570:10666479,40921313 -k1,3571:31966991,40921313:18998888 -g1,3571:31966991,40921313 -) -v1,3573:7246811,42111779:0,393216,0 -(1,3582:7246811,44396049:24720180,2677486,196608 -g1,3582:7246811,44396049 -g1,3582:7246811,44396049 -g1,3582:7050203,44396049 -(1,3582:7050203,44396049:0,2677486,196608 -r1,3598:32163599,44396049:25113396,2874094,196608 -k1,3582:7050203,44396049:-25113396 -) -(1,3582:7050203,44396049:25113396,2677486,196608 -[1,3582:7246811,44396049:24720180,2480878,0 -(1,3575:7246811,42325689:24720180,410518,107478 -(1,3574:7246811,42325689:0,0,0 -g1,3574:7246811,42325689 -g1,3574:7246811,42325689 -g1,3574:6919131,42325689 -(1,3574:6919131,42325689:0,0,0 -) -g1,3574:7246811,42325689 -) -g1,3575:10724414,42325689 -g1,3575:11672852,42325689 -g1,3575:13569727,42325689 -g1,3575:14518165,42325689 -g1,3575:16731185,42325689 -g1,3575:17363477,42325689 -g1,3575:19576498,42325689 -g1,3575:21157227,42325689 -g1,3575:22737956,42325689 -h1,3575:24318684,42325689:0,0,0 -k1,3575:31966991,42325689:7648307 -g1,3575:31966991,42325689 -) -(1,3576:7246811,42991867:24720180,410518,101187 -h1,3576:7246811,42991867:0,0,0 -h1,3576:10408268,42991867:0,0,0 -k1,3576:31966992,42991867:21558724 -g1,3576:31966992,42991867 -) -(1,3581:7246811,43723581:24720180,404226,76021 -(1,3578:7246811,43723581:0,0,0 -g1,3578:7246811,43723581 -g1,3578:7246811,43723581 -g1,3578:6919131,43723581 -(1,3578:6919131,43723581:0,0,0 -) -g1,3578:7246811,43723581 -) -g1,3581:8195248,43723581 -g1,3581:8511394,43723581 -g1,3581:9775977,43723581 -g1,3581:10408269,43723581 -g1,3581:11040561,43723581 -g1,3581:11672853,43723581 -g1,3581:12305145,43723581 -g1,3581:12937437,43723581 -g1,3581:13569729,43723581 -g1,3581:14202021,43723581 -g1,3581:14834313,43723581 -g1,3581:15466605,43723581 -g1,3581:16098897,43723581 -g1,3581:16731189,43723581 -h1,3581:17047335,43723581:0,0,0 -k1,3581:31966991,43723581:14919656 -g1,3581:31966991,43723581 -) -(1,3581:7246811,44389759:24720180,404226,6290 -h1,3581:7246811,44389759:0,0,0 -g1,3581:8195248,44389759 -g1,3581:10724414,44389759 -g1,3581:11356706,44389759 -g1,3581:11988998,44389759 -g1,3581:12621290,44389759 -h1,3581:12937436,44389759:0,0,0 -k1,3581:31966992,44389759:19029556 -g1,3581:31966992,44389759 -) -] -) -g1,3582:31966991,44396049 -g1,3582:7246811,44396049 -g1,3582:7246811,44396049 -g1,3582:31966991,44396049 -g1,3582:31966991,44396049 -) -h1,3582:7246811,44592657:0,0,0 -] -) -] -r1,3598:32583029,45706769:26214,28431549,0 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 +) +] +) +) +) +] +[1,3604:3078558,4812305:0,0,0 +(1,3604:3078558,49800853:0,16384,2228224 +g1,3604:29030814,49800853 +g1,3604:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3604:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3604:37855564,49800853:1179648,16384,0 +) +) +k1,3604:3078556,49800853:-34777008 +) +] +g1,3604:6630773,4812305 +g1,3604:6630773,4812305 +g1,3604:9104757,4812305 +k1,3604:31786111,4812305:22681354 +) +) +] +[1,3604:6630773,45706769:25952256,40108032,0 +(1,3604:6630773,45706769:25952256,40108032,0 +(1,3604:6630773,45706769:0,0,0 +g1,3604:6630773,45706769 +) +[1,3604:6630773,45706769:25952256,40108032,0 +(1,3526:6630773,6254097:25952256,513147,134348 +k1,3525:9369854,6254097:148443 +k1,3525:10537382,6254097:148443 +k1,3525:14451525,6254097:148444 +k1,3525:17111308,6254097:148443 +k1,3525:17791248,6254097:148443 +k1,3525:18295551,6254097:148443 +k1,3525:20337984,6254097:148443 +k1,3525:22616348,6254097:148444 +k1,3525:25406496,6254097:148392 +k1,3525:26237825,6254097:148444 +k1,3525:26742128,6254097:148443 +k1,3525:30071689,6254097:148443 +k1,3525:32583029,6254097:0 +) +(1,3526:6630773,7095585:25952256,513147,134348 +k1,3525:8972593,7095585:211900 +k1,3525:12882033,7095585:211899 +k1,3525:14474777,7095585:211900 +k1,3525:16732711,7095585:211900 +k1,3525:17300470,7095585:211899 +k1,3525:18368926,7095585:211900 +k1,3525:19240118,7095585:211900 +k1,3525:21395815,7095585:211899 +k1,3525:24137405,7095585:211900 +k1,3525:24965343,7095585:211900 +k1,3525:26778942,7095585:211899 +k1,3525:28861895,7095585:211900 +k1,3525:32583029,7095585:0 +) +(1,3526:6630773,7937073:25952256,513147,134348 +k1,3525:7599143,7937073:197667 +k1,3525:11562508,7937073:197666 +k1,3525:14271515,7937073:197667 +k1,3525:15155343,7937073:197666 +k1,3525:18799548,7937073:197667 +k1,3525:19680100,7937073:197667 +k1,3525:21117707,7937073:197666 +k1,3525:24017423,7937073:197667 +k1,3525:25024460,7937073:197667 +k1,3525:26241211,7937073:197666 +k1,3525:28527510,7937073:197667 +k1,3525:29384468,7937073:197666 +k1,3525:30601220,7937073:197667 +k1,3526:32583029,7937073:0 +) +(1,3526:6630773,8778561:25952256,513147,126483 +k1,3525:8668724,8778561:197700 +k1,3525:9549309,8778561:197700 +k1,3525:12019799,8778561:197701 +k1,3525:13408944,8778561:197700 +k1,3525:14222682,8778561:197700 +k1,3525:16122352,8778561:197700 +k1,3525:18448661,8778561:197700 +k1,3525:19177859,8778561:197701 +k1,3525:19731419,8778561:197700 +k1,3525:22707190,8778561:197700 +k1,3525:23564182,8778561:197700 +k1,3525:24780967,8778561:197700 +k1,3525:26368031,8778561:197701 +k1,3525:27757176,8778561:197700 +k1,3525:28973961,8778561:197700 +k1,3525:32583029,8778561:0 +) +(1,3526:6630773,9620049:25952256,513147,134348 +g1,3525:7512887,9620049 +g1,3525:9811234,9620049 +g1,3525:11294969,9620049 +g1,3525:12928781,9620049 +g1,3525:15002340,9620049 +g1,3525:15852997,9620049 +g1,3525:17864952,9620049 +g1,3525:20015843,9620049 +g1,3525:21657519,9620049 +g1,3525:22516040,9620049 +g1,3525:23734354,9620049 +g1,3525:25322946,9620049 +k1,3526:32583029,9620049:4531819 +g1,3526:32583029,9620049 +) +(1,3528:6630773,10461537:25952256,513147,126483 +h1,3527:6630773,10461537:983040,0,0 +k1,3527:9060987,10461537:250487 +k1,3527:11050800,10461537:250487 +k1,3527:11960579,10461537:250487 +k1,3527:13230152,10461537:250488 +k1,3527:15273049,10461537:250487 +k1,3527:16139574,10461537:250487 +k1,3527:16745921,10461537:250487 +(1,3527:16745921,10461537:0,459977,115847 +r1,3527:18862746,10461537:2116825,575824,115847 +k1,3527:16745921,10461537:-2116825 +) +(1,3527:16745921,10461537:2116825,459977,115847 +k1,3527:16745921,10461537:3277 +h1,3527:18859469,10461537:0,411205,112570 +) +k1,3527:19113233,10461537:250487 +k1,3527:20856630,10461537:250487 +k1,3527:22173388,10461537:250487 +k1,3527:24203178,10461537:250488 +k1,3527:26578342,10461537:250487 +k1,3527:30630572,10461537:250487 +k1,3527:31563944,10461537:250487 +k1,3527:32583029,10461537:0 +) +(1,3528:6630773,11303025:25952256,513147,126483 +k1,3527:8877435,11303025:236017 +k1,3527:11589402,11303025:236017 +k1,3527:12897588,11303025:236017 +k1,3527:13591701,11303025:236016 +k1,3527:15320628,11303025:236017 +k1,3527:17335947,11303025:236017 +k1,3527:18902345,11303025:236017 +k1,3527:20157447,11303025:236017 +k1,3527:22552220,11303025:236017 +k1,3527:23319734,11303025:236017 +k1,3527:26079542,11303025:236017 +k1,3527:27334643,11303025:236016 +k1,3527:29309986,11303025:236017 +k1,3527:30205295,11303025:236017 +k1,3527:31460397,11303025:236017 +k1,3528:32583029,11303025:0 +) +(1,3528:6630773,12144513:25952256,513147,134348 +k1,3527:7789590,12144513:276047 +k1,3527:8681675,12144513:276047 +k1,3527:9976807,12144513:276047 +k1,3527:12155364,12144513:276047 +k1,3527:13090703,12144513:276047 +k1,3527:15148019,12144513:276047 +k1,3527:16615511,12144513:276047 +k1,3527:17507596,12144513:276047 +k1,3527:19475783,12144513:276047 +k1,3527:21449212,12144513:276047 +k1,3527:22744344,12144513:276047 +k1,3527:25981963,12144513:276047 +k1,3527:26874048,12144513:276047 +k1,3527:30887613,12144513:276047 +k1,3527:32583029,12144513:0 +) +(1,3528:6630773,12986001:25952256,513147,134348 +k1,3527:8030902,12986001:203442 +k1,3527:10499925,12986001:203443 +k1,3527:13432942,12986001:203442 +k1,3527:14167881,12986001:203442 +k1,3527:18397856,12986001:203443 +k1,3527:19792743,12986001:203442 +k1,3527:20527683,12986001:203443 +k1,3527:24341503,12986001:203442 +k1,3527:25157707,12986001:203442 +k1,3527:26380235,12986001:203443 +k1,3527:28009085,12986001:203442 +k1,3527:28568387,12986001:203442 +k1,3527:30665820,12986001:203443 +k1,3527:31400759,12986001:203442 +k1,3528:32583029,12986001:0 +) +(1,3528:6630773,13827489:25952256,513147,134348 +k1,3527:8383697,13827489:198410 +k1,3527:13102781,13827489:198410 +k1,3527:15252853,13827489:198410 +k1,3527:18756244,13827489:198410 +k1,3527:19973739,13827489:198410 +k1,3527:22437729,13827489:198410 +k1,3527:25365714,13827489:198410 +k1,3527:26223416,13827489:198410 +k1,3527:28214236,13827489:198410 +k1,3527:28944143,13827489:198410 +k1,3527:30208824,13827489:198410 +k1,3527:31426319,13827489:198410 +k1,3527:32583029,13827489:0 +) +(1,3528:6630773,14668977:25952256,505283,126483 +k1,3527:9272200,14668977:169409 +k1,3527:10259499,14668977:169410 +k1,3527:12504433,14668977:169409 +k1,3527:14702838,14668977:169410 +k1,3527:18152979,14668977:169409 +(1,3527:18152979,14668977:0,452978,115847 +r1,3527:20269804,14668977:2116825,568825,115847 +k1,3527:18152979,14668977:-2116825 +) +(1,3527:18152979,14668977:2116825,452978,115847 +k1,3527:18152979,14668977:3277 +h1,3527:20266527,14668977:0,411205,112570 +) +k1,3527:20439214,14668977:169410 +k1,3527:21224661,14668977:169409 +k1,3527:22413156,14668977:169410 +k1,3527:26289281,14668977:169409 +k1,3527:28504725,14668977:169410 +k1,3527:29132231,14668977:169409 +k1,3527:31931601,14668977:169410 +k1,3527:32583029,14668977:0 +) +(1,3528:6630773,15510465:25952256,513147,134348 +k1,3527:7761310,15510465:195994 +k1,3527:8976388,15510465:195993 +k1,3527:10911708,15510465:195994 +k1,3527:11766993,15510465:195993 +k1,3527:12982072,15510465:195994 +k1,3527:15144145,15510465:195993 +k1,3527:15810032,15510465:195994 +k1,3527:16537522,15510465:195993 +k1,3527:18019332,15510465:195994 +k1,3527:20845286,15510465:195994 +k1,3527:21692707,15510465:195993 +k1,3527:24129377,15510465:195994 +k1,3527:25344455,15510465:195993 +k1,3527:28270024,15510465:195994 +k1,3527:29125309,15510465:195993 +k1,3527:30092006,15510465:195994 +k1,3527:32583029,15510465:0 +) +(1,3528:6630773,16351953:25952256,513147,7863 +k1,3528:32583030,16351953:23884596 +g1,3528:32583030,16351953 +) +v1,3530:6630773,17642222:0,393216,0 +(1,3604:6630773,45116945:25952256,27867939,589824 +g1,3604:6630773,45116945 +(1,3604:6630773,45116945:25952256,27867939,589824 +(1,3604:6630773,45706769:25952256,28457763,0 +[1,3604:6630773,45706769:25952256,28457763,0 +(1,3604:6630773,45706769:25952256,28431549,0 +r1,3604:6656987,45706769:26214,28431549,0 +[1,3604:6656987,45706769:25899828,28431549,0 +(1,3604:6656987,45116945:25899828,27251901,0 +[1,3604:7246811,45116945:24720180,27251901,0 +(1,3531:7246811,19026929:24720180,1161885,196608 +(1,3530:7246811,19026929:0,1161885,196608 +r1,3604:8794447,19026929:1547636,1358493,196608 +k1,3530:7246811,19026929:-1547636 +) +(1,3530:7246811,19026929:1547636,1161885,196608 +) +k1,3530:9106265,19026929:311818 +k1,3530:12727337,19026929:320024 +k1,3530:15000989,19026929:320024 +k1,3530:17423066,19026929:311818 +k1,3530:18931571,19026929:311818 +k1,3530:20845088,19026929:311817 +k1,3530:23005021,19026929:311818 +k1,3530:24554814,19026929:311818 +k1,3530:25398129,19026929:311818 +k1,3530:27445339,19026929:311817 +(1,3530:27445339,19026929:0,452978,115847 +r1,3604:30969011,19026929:3523672,568825,115847 +k1,3530:27445339,19026929:-3523672 +) +(1,3530:27445339,19026929:3523672,452978,115847 +k1,3530:27445339,19026929:3277 +h1,3530:30965734,19026929:0,411205,112570 +) +k1,3530:31280829,19026929:311818 +k1,3530:31966991,19026929:0 +) +(1,3531:7246811,19868417:24720180,513147,126483 +k1,3530:9606038,19868417:283702 +k1,3530:11931843,19868417:283703 +k1,3530:13287714,19868417:283702 +k1,3530:14029514,19868417:283703 +k1,3530:14844713,19868417:283702 +k1,3530:16414232,19868417:283703 +k1,3530:19327894,19868417:283702 +k1,3530:20263025,19868417:283703 +k1,3530:21639212,19868417:283702 +(1,3530:21639212,19868417:0,459977,115847 +r1,3604:24459461,19868417:2820249,575824,115847 +k1,3530:21639212,19868417:-2820249 +) +(1,3530:21639212,19868417:2820249,459977,115847 +k1,3530:21639212,19868417:3277 +h1,3530:24456184,19868417:0,411205,112570 +) +k1,3530:24916834,19868417:283703 +k1,3530:26397223,19868417:283702 +k1,3530:29867286,19868417:283703 +k1,3530:30682485,19868417:283702 +k1,3531:31966991,19868417:0 +) +(1,3531:7246811,20709905:24720180,505283,134348 +(1,3530:7246811,20709905:0,459977,115847 +r1,3604:10067060,20709905:2820249,575824,115847 +k1,3530:7246811,20709905:-2820249 +) +(1,3530:7246811,20709905:2820249,459977,115847 +k1,3530:7246811,20709905:3277 +h1,3530:10063783,20709905:0,411205,112570 +) +k1,3530:10301304,20709905:234244 +k1,3530:12390217,20709905:234244 +k1,3530:13643547,20709905:234245 +k1,3530:16220703,20709905:234244 +k1,3530:18247357,20709905:234244 +k1,3530:19673046,20709905:234244 +(1,3530:19673046,20709905:0,452978,115847 +r1,3604:22493295,20709905:2820249,568825,115847 +k1,3530:19673046,20709905:-2820249 +) +(1,3530:19673046,20709905:2820249,452978,115847 +k1,3530:19673046,20709905:3277 +h1,3530:22490018,20709905:0,411205,112570 +) +k1,3530:22727539,20709905:234244 +k1,3530:24337385,20709905:234245 +k1,3530:27275644,20709905:234244 +k1,3530:30000911,20709905:234244 +k1,3530:31966991,20709905:0 +) +(1,3531:7246811,21551393:24720180,513147,134348 +k1,3530:8209685,21551393:196758 +k1,3530:9065735,21551393:196758 +k1,3530:10901548,21551393:196758 +k1,3530:11859834,21551393:196758 +k1,3530:14844494,21551393:196758 +k1,3530:18211228,21551393:196758 +k1,3530:19276337,21551393:196757 +k1,3530:20870978,21551393:196758 +k1,3530:22160221,21551393:196758 +(1,3530:22160221,21551393:0,452978,115847 +r1,3604:25332181,21551393:3171960,568825,115847 +k1,3530:22160221,21551393:-3171960 +) +(1,3530:22160221,21551393:3171960,452978,115847 +k1,3530:22160221,21551393:3277 +h1,3530:25328904,21551393:0,411205,112570 +) +k1,3530:25528939,21551393:196758 +k1,3530:27921808,21551393:196758 +k1,3530:29403072,21551393:196758 +k1,3530:30591390,21551393:196758 +k1,3530:31966991,21551393:0 +) +(1,3531:7246811,22392881:24720180,505283,134348 +k1,3530:8586647,22392881:183126 +k1,3530:11744453,22392881:183127 +k1,3530:13489957,22392881:183126 +k1,3530:15697491,22392881:183127 +k1,3530:18076728,22392881:183126 +k1,3530:19364137,22392881:183127 +k1,3530:20295029,22392881:183126 +k1,3530:21412698,22392881:183126 +k1,3530:22281987,22392881:183127 +k1,3530:24309296,22392881:183126 +k1,3530:25108461,22392881:183127 +k1,3530:27516534,22392881:183126 +k1,3530:28718746,22392881:183127 +k1,3530:30555345,22392881:183126 +k1,3531:31966991,22392881:0 +k1,3531:31966991,22392881:0 +) +v1,3533:7246811,23583347:0,393216,0 +(1,3550:7246811,29253225:24720180,6063094,196608 +g1,3550:7246811,29253225 +g1,3550:7246811,29253225 +g1,3550:7050203,29253225 +(1,3550:7050203,29253225:0,6063094,196608 +r1,3604:32163599,29253225:25113396,6259702,196608 +k1,3550:7050203,29253225:-25113396 +) +(1,3550:7050203,29253225:25113396,6063094,196608 +[1,3550:7246811,29253225:24720180,5866486,0 +(1,3535:7246811,23797257:24720180,410518,107478 +(1,3534:7246811,23797257:0,0,0 +g1,3534:7246811,23797257 +g1,3534:7246811,23797257 +g1,3534:6919131,23797257 +(1,3534:6919131,23797257:0,0,0 +) +g1,3534:7246811,23797257 +) +g1,3535:10724414,23797257 +g1,3535:11672852,23797257 +g1,3535:13569727,23797257 +g1,3535:14518165,23797257 +g1,3535:16731185,23797257 +g1,3535:17363477,23797257 +g1,3535:19576498,23797257 +g1,3535:21157227,23797257 +g1,3535:22737956,23797257 +h1,3535:24318684,23797257:0,0,0 +k1,3535:31966991,23797257:7648307 +g1,3535:31966991,23797257 +) +(1,3536:7246811,24463435:24720180,410518,101187 +h1,3536:7246811,24463435:0,0,0 +h1,3536:10408268,24463435:0,0,0 +k1,3536:31966992,24463435:21558724 +g1,3536:31966992,24463435 +) +(1,3541:7246811,25195149:24720180,404226,76021 +(1,3538:7246811,25195149:0,0,0 +g1,3538:7246811,25195149 +g1,3538:7246811,25195149 +g1,3538:6919131,25195149 +(1,3538:6919131,25195149:0,0,0 +) +g1,3538:7246811,25195149 +) +g1,3541:8195248,25195149 +g1,3541:8511394,25195149 +g1,3541:9775977,25195149 +g1,3541:10408269,25195149 +g1,3541:11040561,25195149 +g1,3541:11672853,25195149 +g1,3541:12305145,25195149 +g1,3541:12937437,25195149 +g1,3541:13569729,25195149 +g1,3541:14202021,25195149 +g1,3541:14834313,25195149 +g1,3541:15466605,25195149 +g1,3541:16098897,25195149 +g1,3541:16731189,25195149 +h1,3541:17047335,25195149:0,0,0 +k1,3541:31966991,25195149:14919656 +g1,3541:31966991,25195149 +) +(1,3541:7246811,25861327:24720180,404226,6290 +h1,3541:7246811,25861327:0,0,0 +g1,3541:8195248,25861327 +g1,3541:10724414,25861327 +g1,3541:11356706,25861327 +g1,3541:11988998,25861327 +g1,3541:12621290,25861327 +h1,3541:12937436,25861327:0,0,0 +k1,3541:31966992,25861327:19029556 +g1,3541:31966992,25861327 +) +(1,3543:7246811,27182865:24720180,410518,101187 +(1,3542:7246811,27182865:0,0,0 +g1,3542:7246811,27182865 +g1,3542:7246811,27182865 +g1,3542:6919131,27182865 +(1,3542:6919131,27182865:0,0,0 +) +g1,3542:7246811,27182865 +) +k1,3543:7246811,27182865:0 +g1,3543:13253579,27182865 +g1,3543:14202017,27182865 +g1,3543:16415038,27182865 +g1,3543:17995767,27182865 +g1,3543:19576496,27182865 +h1,3543:20841079,27182865:0,0,0 +k1,3543:31966991,27182865:11125912 +g1,3543:31966991,27182865 +) +(1,3544:7246811,27849043:24720180,410518,101187 +h1,3544:7246811,27849043:0,0,0 +h1,3544:10408268,27849043:0,0,0 +k1,3544:31966992,27849043:21558724 +g1,3544:31966992,27849043 +) +(1,3549:7246811,28580757:24720180,404226,76021 +(1,3546:7246811,28580757:0,0,0 +g1,3546:7246811,28580757 +g1,3546:7246811,28580757 +g1,3546:6919131,28580757 +(1,3546:6919131,28580757:0,0,0 +) +g1,3546:7246811,28580757 +) +g1,3549:8195248,28580757 +g1,3549:8511394,28580757 +g1,3549:9775977,28580757 +g1,3549:10408269,28580757 +g1,3549:11040561,28580757 +g1,3549:11672853,28580757 +g1,3549:12305145,28580757 +g1,3549:12937437,28580757 +g1,3549:13569729,28580757 +g1,3549:14202021,28580757 +g1,3549:14834313,28580757 +g1,3549:15466605,28580757 +g1,3549:16098897,28580757 +g1,3549:16731189,28580757 +h1,3549:17047335,28580757:0,0,0 +k1,3549:31966991,28580757:14919656 +g1,3549:31966991,28580757 +) +(1,3549:7246811,29246935:24720180,404226,6290 +h1,3549:7246811,29246935:0,0,0 +g1,3549:8195248,29246935 +g1,3549:10724414,29246935 +g1,3549:11356706,29246935 +g1,3549:11988998,29246935 +g1,3549:12621290,29246935 +h1,3549:12937436,29246935:0,0,0 +k1,3549:31966992,29246935:19029556 +g1,3549:31966992,29246935 +) +] +) +g1,3550:31966991,29253225 +g1,3550:7246811,29253225 +g1,3550:7246811,29253225 +g1,3550:31966991,29253225 +g1,3550:31966991,29253225 +) +h1,3550:7246811,29449833:0,0,0 +(1,3554:7246811,30815609:24720180,513147,134348 +h1,3553:7246811,30815609:983040,0,0 +k1,3553:9294156,30815609:266732 +k1,3553:11211084,30815609:266731 +k1,3553:13342315,30815609:266732 +k1,3553:14370574,30815609:266731 +k1,3553:17608708,30815609:266732 +k1,3553:21668663,30815609:266731 +k1,3553:23674721,30815609:266732 +k1,3553:24557490,30815609:266731 +k1,3553:25843307,30815609:266732 +k1,3553:27103564,30815609:266731 +k1,3553:28029588,30815609:266732 +k1,3553:31966991,30815609:0 +) +(1,3554:7246811,31657097:24720180,505283,7863 +g1,3553:9456685,31657097 +g1,3553:10187411,31657097 +k1,3554:31966991,31657097:18543412 +g1,3554:31966991,31657097 +) +v1,3556:7246811,32847563:0,393216,0 +(1,3573:7246811,38517441:24720180,6063094,196608 +g1,3573:7246811,38517441 +g1,3573:7246811,38517441 +g1,3573:7050203,38517441 +(1,3573:7050203,38517441:0,6063094,196608 +r1,3604:32163599,38517441:25113396,6259702,196608 +k1,3573:7050203,38517441:-25113396 +) +(1,3573:7050203,38517441:25113396,6063094,196608 +[1,3573:7246811,38517441:24720180,5866486,0 +(1,3558:7246811,33061473:24720180,410518,107478 +(1,3557:7246811,33061473:0,0,0 +g1,3557:7246811,33061473 +g1,3557:7246811,33061473 +g1,3557:6919131,33061473 +(1,3557:6919131,33061473:0,0,0 +) +g1,3557:7246811,33061473 +) +g1,3558:10724414,33061473 +g1,3558:11672852,33061473 +g1,3558:13569727,33061473 +g1,3558:14518165,33061473 +g1,3558:16731185,33061473 +g1,3558:17363477,33061473 +g1,3558:19576498,33061473 +g1,3558:21157227,33061473 +g1,3558:22737956,33061473 +h1,3558:24318684,33061473:0,0,0 +k1,3558:31966991,33061473:7648307 +g1,3558:31966991,33061473 +) +(1,3559:7246811,33727651:24720180,410518,101187 +h1,3559:7246811,33727651:0,0,0 +h1,3559:10408268,33727651:0,0,0 +k1,3559:31966992,33727651:21558724 +g1,3559:31966992,33727651 +) +(1,3564:7246811,34459365:24720180,404226,76021 +(1,3561:7246811,34459365:0,0,0 +g1,3561:7246811,34459365 +g1,3561:7246811,34459365 +g1,3561:6919131,34459365 +(1,3561:6919131,34459365:0,0,0 +) +g1,3561:7246811,34459365 +) +g1,3564:8195248,34459365 +g1,3564:8511394,34459365 +g1,3564:9775977,34459365 +g1,3564:10408269,34459365 +g1,3564:11040561,34459365 +g1,3564:11672853,34459365 +g1,3564:12305145,34459365 +g1,3564:12937437,34459365 +g1,3564:13569729,34459365 +g1,3564:14202021,34459365 +g1,3564:14834313,34459365 +g1,3564:15466605,34459365 +g1,3564:16098897,34459365 +g1,3564:16731189,34459365 +h1,3564:17047335,34459365:0,0,0 +k1,3564:31966991,34459365:14919656 +g1,3564:31966991,34459365 +) +(1,3564:7246811,35125543:24720180,404226,6290 +h1,3564:7246811,35125543:0,0,0 +g1,3564:8195248,35125543 +g1,3564:10724414,35125543 +g1,3564:11356706,35125543 +g1,3564:11988998,35125543 +g1,3564:12621290,35125543 +h1,3564:12937436,35125543:0,0,0 +k1,3564:31966992,35125543:19029556 +g1,3564:31966992,35125543 +) +(1,3566:7246811,36447081:24720180,410518,101187 +(1,3565:7246811,36447081:0,0,0 +g1,3565:7246811,36447081 +g1,3565:7246811,36447081 +g1,3565:6919131,36447081 +(1,3565:6919131,36447081:0,0,0 +) +g1,3565:7246811,36447081 +) +k1,3566:7246811,36447081:0 +g1,3566:13253579,36447081 +g1,3566:14202017,36447081 +g1,3566:17047329,36447081 +g1,3566:17679621,36447081 +g1,3566:19260350,36447081 +g1,3566:20524933,36447081 +g1,3566:21157225,36447081 +g1,3566:22737954,36447081 +g1,3566:24002537,36447081 +g1,3566:24634829,36447081 +g1,3566:26215558,36447081 +g1,3566:27480141,36447081 +g1,3566:28112433,36447081 +h1,3566:29377016,36447081:0,0,0 +k1,3566:31966991,36447081:2589975 +g1,3566:31966991,36447081 +) +(1,3567:7246811,37113259:24720180,410518,101187 +h1,3567:7246811,37113259:0,0,0 +h1,3567:10408268,37113259:0,0,0 +k1,3567:31966992,37113259:21558724 +g1,3567:31966992,37113259 +) +(1,3572:7246811,37844973:24720180,404226,76021 +(1,3569:7246811,37844973:0,0,0 +g1,3569:7246811,37844973 +g1,3569:7246811,37844973 +g1,3569:6919131,37844973 +(1,3569:6919131,37844973:0,0,0 +) +g1,3569:7246811,37844973 +) +g1,3572:8195248,37844973 +g1,3572:8511394,37844973 +g1,3572:9775977,37844973 +g1,3572:10408269,37844973 +g1,3572:11040561,37844973 +g1,3572:11672853,37844973 +g1,3572:12305145,37844973 +g1,3572:12937437,37844973 +g1,3572:13569729,37844973 +g1,3572:14202021,37844973 +g1,3572:14834313,37844973 +g1,3572:15466605,37844973 +g1,3572:16098897,37844973 +g1,3572:16731189,37844973 +h1,3572:17047335,37844973:0,0,0 +k1,3572:31966991,37844973:14919656 +g1,3572:31966991,37844973 +) +(1,3572:7246811,38511151:24720180,404226,6290 +h1,3572:7246811,38511151:0,0,0 +g1,3572:8195248,38511151 +g1,3572:10724414,38511151 +g1,3572:11356706,38511151 +g1,3572:11988998,38511151 +g1,3572:12621290,38511151 +h1,3572:12937436,38511151:0,0,0 +k1,3572:31966992,38511151:19029556 +g1,3572:31966992,38511151 +) +] +) +g1,3573:31966991,38517441 +g1,3573:7246811,38517441 +g1,3573:7246811,38517441 +g1,3573:31966991,38517441 +g1,3573:31966991,38517441 +) +h1,3573:7246811,38714049:0,0,0 +(1,3577:7246811,40079825:24720180,513147,134348 +h1,3576:7246811,40079825:983040,0,0 +k1,3576:9249233,40079825:221809 +k1,3576:13424175,40079825:221810 +k1,3576:14407512,40079825:221809 +k1,3576:17243553,40079825:221810 +k1,3576:18656807,40079825:221809 +k1,3576:21819873,40079825:221810 +k1,3576:23060767,40079825:221809 +k1,3576:25126760,40079825:221810 +k1,3576:26007861,40079825:221809 +k1,3576:27605272,40079825:221810 +k1,3576:29519221,40079825:221809 +k1,3577:31966991,40079825:0 +) +(1,3577:7246811,40921313:24720180,513147,102891 +g1,3576:8515588,40921313 +g1,3576:10666479,40921313 +k1,3577:31966991,40921313:18998888 +g1,3577:31966991,40921313 +) +v1,3579:7246811,42111779:0,393216,0 +(1,3588:7246811,44396049:24720180,2677486,196608 +g1,3588:7246811,44396049 +g1,3588:7246811,44396049 +g1,3588:7050203,44396049 +(1,3588:7050203,44396049:0,2677486,196608 +r1,3604:32163599,44396049:25113396,2874094,196608 +k1,3588:7050203,44396049:-25113396 +) +(1,3588:7050203,44396049:25113396,2677486,196608 +[1,3588:7246811,44396049:24720180,2480878,0 +(1,3581:7246811,42325689:24720180,410518,107478 +(1,3580:7246811,42325689:0,0,0 +g1,3580:7246811,42325689 +g1,3580:7246811,42325689 +g1,3580:6919131,42325689 +(1,3580:6919131,42325689:0,0,0 +) +g1,3580:7246811,42325689 +) +g1,3581:10724414,42325689 +g1,3581:11672852,42325689 +g1,3581:13569727,42325689 +g1,3581:14518165,42325689 +g1,3581:16731185,42325689 +g1,3581:17363477,42325689 +g1,3581:19576498,42325689 +g1,3581:21157227,42325689 +g1,3581:22737956,42325689 +h1,3581:24318684,42325689:0,0,0 +k1,3581:31966991,42325689:7648307 +g1,3581:31966991,42325689 +) +(1,3582:7246811,42991867:24720180,410518,101187 +h1,3582:7246811,42991867:0,0,0 +h1,3582:10408268,42991867:0,0,0 +k1,3582:31966992,42991867:21558724 +g1,3582:31966992,42991867 +) +(1,3587:7246811,43723581:24720180,404226,76021 +(1,3584:7246811,43723581:0,0,0 +g1,3584:7246811,43723581 +g1,3584:7246811,43723581 +g1,3584:6919131,43723581 +(1,3584:6919131,43723581:0,0,0 +) +g1,3584:7246811,43723581 +) +g1,3587:8195248,43723581 +g1,3587:8511394,43723581 +g1,3587:9775977,43723581 +g1,3587:10408269,43723581 +g1,3587:11040561,43723581 +g1,3587:11672853,43723581 +g1,3587:12305145,43723581 +g1,3587:12937437,43723581 +g1,3587:13569729,43723581 +g1,3587:14202021,43723581 +g1,3587:14834313,43723581 +g1,3587:15466605,43723581 +g1,3587:16098897,43723581 +g1,3587:16731189,43723581 +h1,3587:17047335,43723581:0,0,0 +k1,3587:31966991,43723581:14919656 +g1,3587:31966991,43723581 +) +(1,3587:7246811,44389759:24720180,404226,6290 +h1,3587:7246811,44389759:0,0,0 +g1,3587:8195248,44389759 +g1,3587:10724414,44389759 +g1,3587:11356706,44389759 +g1,3587:11988998,44389759 +g1,3587:12621290,44389759 +h1,3587:12937436,44389759:0,0,0 +k1,3587:31966992,44389759:19029556 +g1,3587:31966992,44389759 +) +] +) +g1,3588:31966991,44396049 +g1,3588:7246811,44396049 +g1,3588:7246811,44396049 +g1,3588:31966991,44396049 +g1,3588:31966991,44396049 +) +h1,3588:7246811,44592657:0,0,0 +] +) +] +r1,3604:32583029,45706769:26214,28431549,0 ) ] ) ) -g1,3598:32583029,45116945 +g1,3604:32583029,45116945 ) ] -(1,3598:32583029,45706769:0,0,0 -g1,3598:32583029,45706769 +(1,3604:32583029,45706769:0,0,0 +g1,3604:32583029,45706769 ) ) ] -(1,3598:6630773,47279633:25952256,0,0 -h1,3598:6630773,47279633:25952256,0,0 +(1,3604:6630773,47279633:25952256,0,0 +h1,3604:6630773,47279633:25952256,0,0 ) ] -h1,3598:4262630,4025873:0,0,0 +h1,3604:4262630,4025873:0,0,0 ] -!25911 +!25943 }70 -Input:459:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:460:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:461:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:462:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:463:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:464:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:465:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!606 +Input:455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {71 -[1,3705:4262630,47279633:28320399,43253760,0 -(1,3705:4262630,4025873:0,0,0 -[1,3705:-473657,4025873:25952256,0,0 -(1,3705:-473657,-710414:25952256,0,0 -h1,3705:-473657,-710414:0,0,0 -(1,3705:-473657,-710414:0,0,0 -(1,3705:-473657,-710414:0,0,0 -g1,3705:-473657,-710414 -(1,3705:-473657,-710414:65781,0,65781 -g1,3705:-407876,-710414 -[1,3705:-407876,-644633:0,0,0 +[1,3711:4262630,47279633:28320399,43253760,0 +(1,3711:4262630,4025873:0,0,0 +[1,3711:-473657,4025873:25952256,0,0 +(1,3711:-473657,-710414:25952256,0,0 +h1,3711:-473657,-710414:0,0,0 +(1,3711:-473657,-710414:0,0,0 +(1,3711:-473657,-710414:0,0,0 +g1,3711:-473657,-710414 +(1,3711:-473657,-710414:65781,0,65781 +g1,3711:-407876,-710414 +[1,3711:-407876,-644633:0,0,0 ] ) -k1,3705:-473657,-710414:-65781 +k1,3711:-473657,-710414:-65781 ) ) -k1,3705:25478599,-710414:25952256 -g1,3705:25478599,-710414 +k1,3711:25478599,-710414:25952256 +g1,3711:25478599,-710414 ) ] ) -[1,3705:6630773,47279633:25952256,43253760,0 -[1,3705:6630773,4812305:25952256,786432,0 -(1,3705:6630773,4812305:25952256,505283,134348 -(1,3705:6630773,4812305:25952256,505283,134348 -g1,3705:3078558,4812305 -[1,3705:3078558,4812305:0,0,0 -(1,3705:3078558,2439708:0,1703936,0 -k1,3705:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3705:2537886,2439708:1179648,16384,0 +[1,3711:6630773,47279633:25952256,43253760,0 +[1,3711:6630773,4812305:25952256,786432,0 +(1,3711:6630773,4812305:25952256,505283,134348 +(1,3711:6630773,4812305:25952256,505283,134348 +g1,3711:3078558,4812305 +[1,3711:3078558,4812305:0,0,0 +(1,3711:3078558,2439708:0,1703936,0 +k1,3711:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3711:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3705:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3711:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377: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,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3705:36151628,1915420:16384,1179648,0 +[1,3711:3078558,4812305:0,0,0 +(1,3711:3078558,2439708:0,1703936,0 +g1,3711:29030814,2439708 +g1,3711:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3711:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3705:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3711:37855564,2439708:1179648,16384,0 ) ) -k1,3705:3078556,2439708:-34777008 +k1,3711:3078556,2439708:-34777008 ) ] -[1,3705:3078558,4812305:0,0,0 -(1,3705:3078558,49800853:0,16384,2228224 -k1,3705:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3705:2537886,49800853:1179648,16384,0 +[1,3711:3078558,4812305:0,0,0 +(1,3711:3078558,49800853:0,16384,2228224 +k1,3711:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3711:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3705:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3711:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377: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,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3705:36151628,51504789:16384,1179648,0 +[1,3711:3078558,4812305:0,0,0 +(1,3711:3078558,49800853:0,16384,2228224 +g1,3711:29030814,49800853 +g1,3711:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3711:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3705:37855564,49800853:1179648,16384,0 -) -) -k1,3705:3078556,49800853:-34777008 -) -] -g1,3705:6630773,4812305 -k1,3705:19562994,4812305:12135303 -g1,3705:20949735,4812305 -g1,3705:21598541,4812305 -g1,3705:24912696,4812305 -g1,3705:27600327,4812305 -g1,3705:29010006,4812305 -) -) -] -[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 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3711:37855564,49800853:1179648,16384,0 +) +) +k1,3711:3078556,49800853:-34777008 +) +] +g1,3711:6630773,4812305 +k1,3711:19515153,4812305:12087462 +g1,3711:20901894,4812305 +g1,3711:21550700,4812305 +g1,3711:24864855,4812305 +g1,3711:27600327,4812305 +g1,3711:29010006,4812305 +) +) +] +[1,3711:6630773,45706769:25952256,40108032,0 +(1,3711:6630773,45706769:25952256,40108032,0 +(1,3711:6630773,45706769:0,0,0 +g1,3711:6630773,45706769 ) -[1,3705:6630773,45706769:25952256,40108032,0 -v1,3598:6630773,6254097:0,393216,0 -(1,3598:6630773,9849087:25952256,3988206,616038 -g1,3598:6630773,9849087 -(1,3598:6630773,9849087:25952256,3988206,616038 -(1,3598:6630773,10465125:25952256,4604244,0 -[1,3598:6630773,10465125:25952256,4604244,0 -(1,3598:6630773,10438911:25952256,4578030,0 -r1,3598:6656987,10438911:26214,4578030,0 -[1,3598:6656987,10438911:25899828,4578030,0 -(1,3598:6656987,9849087:25899828,3398382,0 -[1,3598:7246811,9849087:24720180,3398382,0 -v1,3586:7246811,6843921:0,393216,0 -(1,3595:7246811,9128191:24720180,2677486,196608 -g1,3595:7246811,9128191 -g1,3595:7246811,9128191 -g1,3595:7050203,9128191 -(1,3595:7050203,9128191:0,2677486,196608 -r1,3598:32163599,9128191:25113396,2874094,196608 -k1,3595:7050203,9128191:-25113396 -) -(1,3595:7050203,9128191:25113396,2677486,196608 -[1,3595:7246811,9128191:24720180,2480878,0 -(1,3588:7246811,7057831:24720180,410518,101187 -(1,3587:7246811,7057831:0,0,0 -g1,3587:7246811,7057831 -g1,3587:7246811,7057831 -g1,3587:6919131,7057831 -(1,3587:6919131,7057831:0,0,0 -) -g1,3587:7246811,7057831 -) -k1,3588:7246811,7057831:0 -g1,3588:14834309,7057831 -g1,3588:16098892,7057831 -g1,3588:17047330,7057831 -g1,3588:19260351,7057831 -h1,3588:20524934,7057831:0,0,0 -k1,3588:31966991,7057831:11442057 -g1,3588:31966991,7057831 -) -(1,3589:7246811,7724009:24720180,410518,101187 -h1,3589:7246811,7724009:0,0,0 -h1,3589:10408268,7724009:0,0,0 -k1,3589:31966992,7724009:21558724 -g1,3589:31966992,7724009 -) -(1,3594:7246811,8455723:24720180,404226,76021 -(1,3591:7246811,8455723:0,0,0 -g1,3591:7246811,8455723 -g1,3591:7246811,8455723 -g1,3591:6919131,8455723 -(1,3591:6919131,8455723:0,0,0 -) -g1,3591:7246811,8455723 -) -g1,3594:8195248,8455723 -g1,3594:8511394,8455723 -g1,3594:9775977,8455723 -g1,3594:10408269,8455723 -g1,3594:11040561,8455723 -g1,3594:11672853,8455723 -g1,3594:12305145,8455723 -g1,3594:12937437,8455723 -g1,3594:13569729,8455723 -g1,3594:14202021,8455723 -g1,3594:14834313,8455723 -g1,3594:15466605,8455723 -g1,3594:16098897,8455723 -g1,3594:16731189,8455723 -h1,3594:17047335,8455723:0,0,0 -k1,3594:31966991,8455723:14919656 -g1,3594:31966991,8455723 -) -(1,3594:7246811,9121901:24720180,404226,6290 -h1,3594:7246811,9121901:0,0,0 -g1,3594:8195248,9121901 -g1,3594:10724414,9121901 -g1,3594:11356706,9121901 -g1,3594:11988998,9121901 -g1,3594:12621290,9121901 -h1,3594:12937436,9121901:0,0,0 -k1,3594:31966992,9121901:19029556 -g1,3594:31966992,9121901 -) -] -) -g1,3595:31966991,9128191 -g1,3595:7246811,9128191 -g1,3595:7246811,9128191 -g1,3595:31966991,9128191 -g1,3595:31966991,9128191 -) -h1,3595:7246811,9324799:0,0,0 -] -) -] -r1,3598:32583029,10438911:26214,4578030,0 -) -] -) -) -g1,3598:32583029,9849087 -) -h1,3598:6630773,10465125:0,0,0 -v1,3601:6630773,11703845:0,393216,0 -(1,3624:6630773,22179031:25952256,10868402,616038 -g1,3624:6630773,22179031 -(1,3624:6630773,22179031:25952256,10868402,616038 -(1,3624:6630773,22795069:25952256,11484440,0 -[1,3624:6630773,22795069:25952256,11484440,0 -(1,3624:6630773,22768855:25952256,11432012,0 -r1,3624:6656987,22768855:26214,11432012,0 -[1,3624:6656987,22768855:25899828,11432012,0 -(1,3624:6656987,22179031:25899828,10252364,0 -[1,3624:7246811,22179031:24720180,10252364,0 -(1,3602:7246811,13088552:24720180,1161885,196608 -(1,3601:7246811,13088552:0,1161885,196608 -r1,3624:8794447,13088552:1547636,1358493,196608 -k1,3601:7246811,13088552:-1547636 -) -(1,3601:7246811,13088552:1547636,1161885,196608 -) -k1,3601:8951598,13088552:157151 -k1,3601:11803137,13088552:161286 -k1,3601:13918051,13088552:161286 -k1,3601:16185461,13088552:157151 -k1,3601:17296161,13088552:157151 -k1,3601:18545796,13088552:157150 -(1,3601:18545796,13088552:0,459977,115847 -r1,3624:21366045,13088552:2820249,575824,115847 -k1,3601:18545796,13088552:-2820249 -) -(1,3601:18545796,13088552:2820249,459977,115847 -k1,3601:18545796,13088552:3277 -h1,3601:21362768,13088552:0,411205,112570 -) -k1,3601:21523196,13088552:157151 -k1,3601:22366509,13088552:157151 -k1,3601:24599185,13088552:157151 -k1,3601:26798437,13088552:157150 -k1,3601:29137282,13088552:157151 -k1,3601:30313518,13088552:157151 -k1,3601:31966991,13088552:0 -) -(1,3602:7246811,13930040:24720180,513147,134348 -g1,3601:8959922,13930040 -g1,3601:10106802,13930040 -g1,3601:11325116,13930040 -g1,3601:13316755,13930040 -g1,3601:14384336,13930040 -g1,3601:16132181,13930040 -g1,3601:16982838,13930040 -k1,3602:31966991,13930040:12833261 -g1,3602:31966991,13930040 -) -v1,3604:7246811,15120506:0,393216,0 -(1,3622:7246811,21458135:24720180,6730845,196608 -g1,3622:7246811,21458135 -g1,3622:7246811,21458135 -g1,3622:7050203,21458135 -(1,3622:7050203,21458135:0,6730845,196608 -r1,3624:32163599,21458135:25113396,6927453,196608 -k1,3622:7050203,21458135:-25113396 -) -(1,3622:7050203,21458135:25113396,6730845,196608 -[1,3622:7246811,21458135:24720180,6534237,0 -(1,3606:7246811,15334416:24720180,410518,107478 -(1,3605:7246811,15334416:0,0,0 -g1,3605:7246811,15334416 -g1,3605:7246811,15334416 -g1,3605:6919131,15334416 -(1,3605:6919131,15334416:0,0,0 -) -g1,3605:7246811,15334416 -) -g1,3606:10724414,15334416 -g1,3606:11672852,15334416 -g1,3606:13569727,15334416 -g1,3606:14518165,15334416 -g1,3606:16731185,15334416 -g1,3606:17363477,15334416 -g1,3606:19576498,15334416 -g1,3606:21157227,15334416 -g1,3606:22737956,15334416 -h1,3606:24318684,15334416:0,0,0 -k1,3606:31966991,15334416:7648307 -g1,3606:31966991,15334416 -) -(1,3607:7246811,16000594:24720180,410518,101187 -h1,3607:7246811,16000594:0,0,0 -h1,3607:10408268,16000594:0,0,0 -k1,3607:31966992,16000594:21558724 -g1,3607:31966992,16000594 -) -(1,3612:7246811,16732308:24720180,404226,76021 -(1,3609:7246811,16732308:0,0,0 -g1,3609:7246811,16732308 -g1,3609:7246811,16732308 -g1,3609:6919131,16732308 -(1,3609:6919131,16732308:0,0,0 -) -g1,3609:7246811,16732308 -) -g1,3612:8195248,16732308 -g1,3612:8511394,16732308 -g1,3612:9775977,16732308 -g1,3612:10408269,16732308 -g1,3612:11040561,16732308 -g1,3612:11672853,16732308 -g1,3612:12305145,16732308 -g1,3612:12937437,16732308 -g1,3612:13569729,16732308 -g1,3612:14202021,16732308 -g1,3612:14834313,16732308 -g1,3612:15466605,16732308 -g1,3612:16098897,16732308 -g1,3612:16731189,16732308 -h1,3612:17047335,16732308:0,0,0 -k1,3612:31966991,16732308:14919656 -g1,3612:31966991,16732308 -) -(1,3612:7246811,17398486:24720180,404226,6290 -h1,3612:7246811,17398486:0,0,0 -g1,3612:8195248,17398486 -g1,3612:10724414,17398486 -g1,3612:11356706,17398486 -g1,3612:11988998,17398486 -g1,3612:12621290,17398486 -h1,3612:12937436,17398486:0,0,0 -k1,3612:31966992,17398486:19029556 -g1,3612:31966992,17398486 -) -(1,3614:7246811,18720024:24720180,410518,101187 -(1,3613:7246811,18720024:0,0,0 -g1,3613:7246811,18720024 -g1,3613:7246811,18720024 -g1,3613:6919131,18720024 -(1,3613:6919131,18720024:0,0,0 -) -g1,3613:7246811,18720024 -) -k1,3614:7246811,18720024:0 -k1,3614:7246811,18720024:0 -h1,3614:12937433,18720024:0,0,0 -k1,3614:31966991,18720024:19029558 -g1,3614:31966991,18720024 -) -(1,3615:7246811,19386202:24720180,404226,82312 -h1,3615:7246811,19386202:0,0,0 -g1,3615:7562957,19386202 -g1,3615:7879103,19386202 -g1,3615:8195249,19386202 -g1,3615:8511395,19386202 -g1,3615:8827541,19386202 -g1,3615:9143687,19386202 -g1,3615:9459833,19386202 -g1,3615:11672853,19386202 -g1,3615:12305145,19386202 -g1,3615:14518166,19386202 -g1,3615:16098895,19386202 -g1,3615:17679624,19386202 -k1,3615:17679624,19386202:0 -h1,3615:19260353,19386202:0,0,0 -k1,3615:31966991,19386202:12706638 -g1,3615:31966991,19386202 -) -(1,3616:7246811,20052380:24720180,404226,82312 -h1,3616:7246811,20052380:0,0,0 -g1,3616:7562957,20052380 -g1,3616:7879103,20052380 -g1,3616:8195249,20052380 -g1,3616:8511395,20052380 -g1,3616:8827541,20052380 -g1,3616:9143687,20052380 -g1,3616:9459833,20052380 -g1,3616:11672853,20052380 -g1,3616:12305145,20052380 -g1,3616:14518166,20052380 -g1,3616:16098895,20052380 -g1,3616:17679624,20052380 -h1,3616:19260352,20052380:0,0,0 -k1,3616:31966991,20052380:12706639 -g1,3616:31966991,20052380 -) -(1,3621:7246811,20784094:24720180,404226,76021 -(1,3618:7246811,20784094:0,0,0 -g1,3618:7246811,20784094 -g1,3618:7246811,20784094 -g1,3618:6919131,20784094 -(1,3618:6919131,20784094:0,0,0 -) -g1,3618:7246811,20784094 -) -g1,3621:8195248,20784094 -g1,3621:8511394,20784094 -g1,3621:9775977,20784094 -g1,3621:10408269,20784094 -g1,3621:11040561,20784094 -g1,3621:11672853,20784094 -g1,3621:12305145,20784094 -g1,3621:12937437,20784094 -g1,3621:13569729,20784094 -g1,3621:14202021,20784094 -g1,3621:14834313,20784094 -g1,3621:15466605,20784094 -g1,3621:16098897,20784094 -g1,3621:16731189,20784094 -h1,3621:17047335,20784094:0,0,0 -k1,3621:31966991,20784094:14919656 -g1,3621:31966991,20784094 -) -(1,3621:7246811,21450272:24720180,404226,7863 -h1,3621:7246811,21450272:0,0,0 -g1,3621:8195248,21450272 -g1,3621:10724414,21450272 -g1,3621:11356706,21450272 -g1,3621:11988998,21450272 -h1,3621:12305144,21450272:0,0,0 -k1,3621:31966992,21450272:19661848 -g1,3621:31966992,21450272 -) -] -) -g1,3622:31966991,21458135 -g1,3622:7246811,21458135 -g1,3622:7246811,21458135 -g1,3622:31966991,21458135 -g1,3622:31966991,21458135 -) -h1,3622:7246811,21654743:0,0,0 -] -) -] -r1,3624:32583029,22768855:26214,11432012,0 -) -] -) -) -g1,3624:32583029,22179031 -) -h1,3624:6630773,22795069:0,0,0 -v1,3627:6630773,24033790:0,393216,0 -(1,3705:6630773,45116945:25952256,21476371,589824 -g1,3705:6630773,45116945 -(1,3705:6630773,45116945:25952256,21476371,589824 -(1,3705:6630773,45706769:25952256,22066195,0 -[1,3705:6630773,45706769:25952256,22066195,0 -(1,3705:6630773,45706769:25952256,22039981,0 -r1,3705:6656987,45706769:26214,22039981,0 -[1,3705:6656987,45706769:25899828,22039981,0 -(1,3705:6656987,45116945:25899828,20860333,0 -[1,3705:7246811,45116945:24720180,20860333,0 -(1,3628:7246811,25418497:24720180,1161885,196608 -(1,3627:7246811,25418497:0,1161885,196608 -r1,3705:8794447,25418497:1547636,1358493,196608 -k1,3627:7246811,25418497:-1547636 -) -(1,3627:7246811,25418497:1547636,1161885,196608 -) -k1,3627:8997894,25418497:203447 -k1,3627:12886543,25418497:208802 -k1,3627:15048972,25418497:208801 -k1,3627:17362678,25418497:203447 -k1,3627:18762813,25418497:203448 -k1,3627:21678140,25418497:203447 -k1,3627:24866098,25418497:203448 -k1,3627:25601042,25418497:203447 -k1,3627:26455917,25418497:203447 -k1,3627:27751850,25418497:203448 -(1,3627:27751850,25418497:0,459977,115847 -r1,3705:30572099,25418497:2820249,575824,115847 -k1,3627:27751850,25418497:-2820249 -) -(1,3627:27751850,25418497:2820249,459977,115847 -k1,3627:27751850,25418497:3277 -h1,3627:30568822,25418497:0,411205,112570 -) -k1,3627:30775546,25418497:203447 -k1,3627:31966991,25418497:0 -) -(1,3628:7246811,26259985:24720180,513147,134348 -k1,3627:8250494,26259985:215285 -(1,3627:8250494,26259985:0,452978,115847 -r1,3705:10367319,26259985:2116825,568825,115847 -k1,3627:8250494,26259985:-2116825 -) -(1,3627:8250494,26259985:2116825,452978,115847 -k1,3627:8250494,26259985:3277 -h1,3627:10364042,26259985:0,411205,112570 -) -k1,3627:10582603,26259985:215284 -k1,3627:14252291,26259985:215285 -k1,3627:15664263,26259985:215285 -k1,3627:17255149,26259985:215285 -k1,3627:21602478,26259985:215284 -k1,3627:22349260,26259985:215285 -k1,3627:23849051,26259985:215285 -k1,3627:25083421,26259985:215285 -k1,3627:27367022,26259985:215285 -k1,3627:28241598,26259985:215284 -k1,3627:29475968,26259985:215285 -k1,3627:31966991,26259985:0 -) -(1,3628:7246811,27101473:24720180,505283,134348 -k1,3627:9278100,27101473:238879 -k1,3627:10708423,27101473:238878 -k1,3627:12691215,27101473:238879 -k1,3627:15135380,27101473:238878 -k1,3627:16060421,27101473:238879 -k1,3627:17070002,27101473:238878 -k1,3627:20381209,27101473:238879 -k1,3627:22150353,27101473:238878 -k1,3627:23040660,27101473:238879 -k1,3627:25434362,27101473:238878 -k1,3627:26864686,27101473:238879 -k1,3627:29132559,27101473:238878 -k1,3627:31966991,27101473:0 -) -(1,3628:7246811,27942961:24720180,513147,134348 -k1,3627:8536056,27942961:184963 -k1,3627:10502942,27942961:184962 -k1,3627:12381355,27942961:184963 -k1,3627:13395348,27942961:184963 -k1,3627:15309805,27942961:184962 -k1,3627:16513853,27942961:184963 -k1,3627:20384561,27942961:184963 -k1,3627:22098479,27942961:184963 -k1,3627:22899479,27942961:184962 -k1,3627:23850558,27942961:184963 -k1,3627:27027240,27942961:184963 -k1,3627:29283140,27942961:184962 -k1,3627:30487188,27942961:184963 -k1,3627:31966991,27942961:0 -) -(1,3628:7246811,28784449:24720180,513147,115847 -g1,3627:8314392,28784449 -g1,3627:9606106,28784449 -(1,3627:9606106,28784449:0,452978,115847 -r1,3705:12426355,28784449:2820249,568825,115847 -k1,3627:9606106,28784449:-2820249 -) -(1,3627:9606106,28784449:2820249,452978,115847 -k1,3627:9606106,28784449:3277 -h1,3627:12423078,28784449:0,411205,112570 -) -g1,3627:12625584,28784449 -g1,3627:13476241,28784449 -g1,3627:16109477,28784449 -g1,3627:17327791,28784449 -g1,3627:19595336,28784449 -g1,3627:20453857,28784449 -g1,3627:21672171,28784449 -g1,3627:23663810,28784449 -g1,3627:25430660,28784449 -g1,3627:26648974,28784449 -g1,3627:28742193,28784449 -k1,3628:31966991,28784449:1445496 -g1,3628:31966991,28784449 -) -v1,3630:7246811,29974915:0,393216,0 -(1,3651:7246811,36435420:24720180,6853721,196608 -g1,3651:7246811,36435420 -g1,3651:7246811,36435420 -g1,3651:7050203,36435420 -(1,3651:7050203,36435420:0,6853721,196608 -r1,3705:32163599,36435420:25113396,7050329,196608 -k1,3651:7050203,36435420:-25113396 -) -(1,3651:7050203,36435420:25113396,6853721,196608 -[1,3651:7246811,36435420:24720180,6657113,0 -(1,3632:7246811,30188825:24720180,410518,101187 -(1,3631:7246811,30188825:0,0,0 -g1,3631:7246811,30188825 -g1,3631:7246811,30188825 -g1,3631:6919131,30188825 -(1,3631:6919131,30188825:0,0,0 -) -g1,3631:7246811,30188825 -) -k1,3632:7246811,30188825:0 -h1,3632:12937433,30188825:0,0,0 -k1,3632:31966991,30188825:19029558 -g1,3632:31966991,30188825 -) -(1,3636:7246811,30920539:24720180,404226,76021 -(1,3634:7246811,30920539:0,0,0 -g1,3634:7246811,30920539 -g1,3634:7246811,30920539 -g1,3634:6919131,30920539 -(1,3634:6919131,30920539:0,0,0 -) -g1,3634:7246811,30920539 -) -g1,3636:8195248,30920539 -g1,3636:9459831,30920539 -g1,3636:10724414,30920539 -g1,3636:11988997,30920539 -h1,3636:12937434,30920539:0,0,0 -k1,3636:31966990,30920539:19029556 -g1,3636:31966990,30920539 -) -(1,3638:7246811,32242077:24720180,410518,101187 -(1,3637:7246811,32242077:0,0,0 -g1,3637:7246811,32242077 -g1,3637:7246811,32242077 -g1,3637:6919131,32242077 -(1,3637:6919131,32242077:0,0,0 -) -g1,3637:7246811,32242077 -) -g1,3638:10724414,32242077 -g1,3638:11672852,32242077 -g1,3638:17679620,32242077 -g1,3638:19892640,32242077 -g1,3638:20524932,32242077 -g1,3638:22737953,32242077 -g1,3638:24318682,32242077 -h1,3638:25899410,32242077:0,0,0 -k1,3638:31966991,32242077:6067581 -g1,3638:31966991,32242077 -) -(1,3639:7246811,32908255:24720180,410518,101187 -h1,3639:7246811,32908255:0,0,0 -k1,3639:7246811,32908255:0 -h1,3639:12937433,32908255:0,0,0 -k1,3639:31966991,32908255:19029558 -g1,3639:31966991,32908255 -) -(1,3643:7246811,33639969:24720180,404226,76021 -(1,3641:7246811,33639969:0,0,0 -g1,3641:7246811,33639969 -g1,3641:7246811,33639969 -g1,3641:6919131,33639969 -(1,3641:6919131,33639969:0,0,0 -) -g1,3641:7246811,33639969 -) -g1,3643:8195248,33639969 -g1,3643:9459831,33639969 -g1,3643:10724414,33639969 -g1,3643:11988997,33639969 -h1,3643:12937434,33639969:0,0,0 -k1,3643:31966990,33639969:19029556 -g1,3643:31966990,33639969 -) -(1,3645:7246811,34961507:24720180,410518,101187 -(1,3644:7246811,34961507:0,0,0 -g1,3644:7246811,34961507 -g1,3644:7246811,34961507 -g1,3644:6919131,34961507 -(1,3644:6919131,34961507:0,0,0 -) -g1,3644:7246811,34961507 -) -g1,3645:10724414,34961507 -g1,3645:11672852,34961507 -g1,3645:17679620,34961507 -g1,3645:19892640,34961507 -g1,3645:20524932,34961507 -k1,3645:20524932,34961507:0 -h1,3645:28112429,34961507:0,0,0 -k1,3645:31966991,34961507:3854562 -g1,3645:31966991,34961507 -) -(1,3646:7246811,35627685:24720180,410518,101187 -h1,3646:7246811,35627685:0,0,0 -k1,3646:7246811,35627685:0 -h1,3646:12937433,35627685:0,0,0 -k1,3646:31966991,35627685:19029558 -g1,3646:31966991,35627685 -) -(1,3650:7246811,36359399:24720180,404226,76021 -(1,3648:7246811,36359399:0,0,0 -g1,3648:7246811,36359399 -g1,3648:7246811,36359399 -g1,3648:6919131,36359399 -(1,3648:6919131,36359399:0,0,0 -) -g1,3648:7246811,36359399 -) -g1,3650:8195248,36359399 -g1,3650:9459831,36359399 -g1,3650:10724414,36359399 -g1,3650:11988997,36359399 -h1,3650:12937434,36359399:0,0,0 -k1,3650:31966990,36359399:19029556 -g1,3650:31966990,36359399 -) -] -) -g1,3651:31966991,36435420 -g1,3651:7246811,36435420 -g1,3651:7246811,36435420 -g1,3651:31966991,36435420 -g1,3651:31966991,36435420 -) -h1,3651:7246811,36632028:0,0,0 -v1,3655:7246811,38346782:0,393216,0 -(1,3671:7246811,43420213:24720180,5466647,196608 -g1,3671:7246811,43420213 -g1,3671:7246811,43420213 -g1,3671:7050203,43420213 -(1,3671:7050203,43420213:0,5466647,196608 -r1,3705:32163599,43420213:25113396,5663255,196608 -k1,3671:7050203,43420213:-25113396 -) -(1,3671:7050203,43420213:25113396,5466647,196608 -[1,3671:7246811,43420213:24720180,5270039,0 -(1,3657:7246811,38560692:24720180,410518,101187 -(1,3656:7246811,38560692:0,0,0 -g1,3656:7246811,38560692 -g1,3656:7246811,38560692 -g1,3656:6919131,38560692 -(1,3656:6919131,38560692:0,0,0 -) -g1,3656:7246811,38560692 -) -g1,3657:10724414,38560692 -g1,3657:11672852,38560692 -k1,3657:11672852,38560692:0 -h1,3657:17363474,38560692:0,0,0 -k1,3657:31966991,38560692:14603517 -g1,3657:31966991,38560692 -) -(1,3658:7246811,39226870:24720180,410518,107478 -h1,3658:7246811,39226870:0,0,0 -g1,3658:7562957,39226870 -g1,3658:7879103,39226870 -g1,3658:8195249,39226870 -g1,3658:8511395,39226870 -g1,3658:8827541,39226870 -g1,3658:9143687,39226870 -g1,3658:9459833,39226870 -g1,3658:9775979,39226870 -g1,3658:10092125,39226870 -g1,3658:10408271,39226870 -g1,3658:10724417,39226870 -g1,3658:11040563,39226870 -g1,3658:11356709,39226870 -g1,3658:11672855,39226870 -g1,3658:11989001,39226870 -g1,3658:12305147,39226870 -g1,3658:12621293,39226870 -g1,3658:12937439,39226870 -g1,3658:13253585,39226870 -g1,3658:13569731,39226870 -g1,3658:13885877,39226870 -g1,3658:16098897,39226870 -g1,3658:16731189,39226870 -g1,3658:24634832,39226870 -g1,3658:28112435,39226870 -g1,3658:28744727,39226870 -h1,3658:30641601,39226870:0,0,0 -k1,3658:31966991,39226870:1325390 -g1,3658:31966991,39226870 -) -(1,3659:7246811,39893048:24720180,410518,101187 -h1,3659:7246811,39893048:0,0,0 -k1,3659:7246811,39893048:0 -h1,3659:12937433,39893048:0,0,0 -k1,3659:31966991,39893048:19029558 -g1,3659:31966991,39893048 -) -(1,3663:7246811,40624762:24720180,404226,76021 -(1,3661:7246811,40624762:0,0,0 -g1,3661:7246811,40624762 -g1,3661:7246811,40624762 -g1,3661:6919131,40624762 -(1,3661:6919131,40624762:0,0,0 -) -g1,3661:7246811,40624762 -) -g1,3663:8195248,40624762 -g1,3663:9459831,40624762 -g1,3663:10724414,40624762 -g1,3663:11988997,40624762 -h1,3663:12937434,40624762:0,0,0 -k1,3663:31966990,40624762:19029556 -g1,3663:31966990,40624762 -) -(1,3665:7246811,41946300:24720180,410518,101187 -(1,3664:7246811,41946300:0,0,0 -g1,3664:7246811,41946300 -g1,3664:7246811,41946300 -g1,3664:6919131,41946300 -(1,3664:6919131,41946300:0,0,0 -) -g1,3664:7246811,41946300 -) -g1,3665:10724414,41946300 -g1,3665:11672852,41946300 -g1,3665:17679620,41946300 -g1,3665:19892640,41946300 -g1,3665:20524932,41946300 -g1,3665:28112430,41946300 -g1,3665:29060868,41946300 -h1,3665:30325451,41946300:0,0,0 -k1,3665:31966991,41946300:1641540 -g1,3665:31966991,41946300 -) -(1,3666:7246811,42612478:24720180,410518,101187 -h1,3666:7246811,42612478:0,0,0 -k1,3666:7246811,42612478:0 -h1,3666:12937433,42612478:0,0,0 -k1,3666:31966991,42612478:19029558 -g1,3666:31966991,42612478 -) -(1,3670:7246811,43344192:24720180,404226,76021 -(1,3668:7246811,43344192:0,0,0 -g1,3668:7246811,43344192 -g1,3668:7246811,43344192 -g1,3668:6919131,43344192 -(1,3668:6919131,43344192:0,0,0 -) -g1,3668:7246811,43344192 -) -g1,3670:8195248,43344192 -g1,3670:9459831,43344192 -g1,3670:10724414,43344192 -g1,3670:11988997,43344192 -h1,3670:12937434,43344192:0,0,0 -k1,3670:31966990,43344192:19029556 -g1,3670:31966990,43344192 -) -] -) -g1,3671:31966991,43420213 -g1,3671:7246811,43420213 -g1,3671:7246811,43420213 -g1,3671:31966991,43420213 -g1,3671:31966991,43420213 -) -h1,3671:7246811,43616821:0,0,0 -(1,3675:7246811,44982597:24720180,513147,134348 -h1,3674:7246811,44982597:983040,0,0 -k1,3674:11932417,44982597:180661 -k1,3674:13132163,44982597:180661 -k1,3674:15105234,44982597:180661 -k1,3674:15945187,44982597:180661 -k1,3674:16481708,44982597:180661 -k1,3674:18556358,44982597:180660 -k1,3674:20591688,44982597:180661 -k1,3674:21581719,44982597:180661 -k1,3674:24752788,44982597:180661 -k1,3674:28117188,44982597:180661 -k1,3674:29865470,44982597:180661 -k1,3674:31435494,44982597:180661 -k1,3674:31966991,44982597:0 +[1,3711:6630773,45706769:25952256,40108032,0 +v1,3604:6630773,6254097:0,393216,0 +(1,3604:6630773,9849087:25952256,3988206,616038 +g1,3604:6630773,9849087 +(1,3604:6630773,9849087:25952256,3988206,616038 +(1,3604:6630773,10465125:25952256,4604244,0 +[1,3604:6630773,10465125:25952256,4604244,0 +(1,3604:6630773,10438911:25952256,4578030,0 +r1,3604:6656987,10438911:26214,4578030,0 +[1,3604:6656987,10438911:25899828,4578030,0 +(1,3604:6656987,9849087:25899828,3398382,0 +[1,3604:7246811,9849087:24720180,3398382,0 +v1,3592:7246811,6843921:0,393216,0 +(1,3601:7246811,9128191:24720180,2677486,196608 +g1,3601:7246811,9128191 +g1,3601:7246811,9128191 +g1,3601:7050203,9128191 +(1,3601:7050203,9128191:0,2677486,196608 +r1,3604:32163599,9128191:25113396,2874094,196608 +k1,3601:7050203,9128191:-25113396 +) +(1,3601:7050203,9128191:25113396,2677486,196608 +[1,3601:7246811,9128191:24720180,2480878,0 +(1,3594:7246811,7057831:24720180,410518,101187 +(1,3593:7246811,7057831:0,0,0 +g1,3593:7246811,7057831 +g1,3593:7246811,7057831 +g1,3593:6919131,7057831 +(1,3593:6919131,7057831:0,0,0 +) +g1,3593:7246811,7057831 +) +k1,3594:7246811,7057831:0 +g1,3594:14834309,7057831 +g1,3594:16098892,7057831 +g1,3594:17047330,7057831 +g1,3594:19260351,7057831 +h1,3594:20524934,7057831:0,0,0 +k1,3594:31966991,7057831:11442057 +g1,3594:31966991,7057831 +) +(1,3595:7246811,7724009:24720180,410518,101187 +h1,3595:7246811,7724009:0,0,0 +h1,3595:10408268,7724009:0,0,0 +k1,3595:31966992,7724009:21558724 +g1,3595:31966992,7724009 +) +(1,3600:7246811,8455723:24720180,404226,76021 +(1,3597:7246811,8455723:0,0,0 +g1,3597:7246811,8455723 +g1,3597:7246811,8455723 +g1,3597:6919131,8455723 +(1,3597:6919131,8455723:0,0,0 +) +g1,3597:7246811,8455723 +) +g1,3600:8195248,8455723 +g1,3600:8511394,8455723 +g1,3600:9775977,8455723 +g1,3600:10408269,8455723 +g1,3600:11040561,8455723 +g1,3600:11672853,8455723 +g1,3600:12305145,8455723 +g1,3600:12937437,8455723 +g1,3600:13569729,8455723 +g1,3600:14202021,8455723 +g1,3600:14834313,8455723 +g1,3600:15466605,8455723 +g1,3600:16098897,8455723 +g1,3600:16731189,8455723 +h1,3600:17047335,8455723:0,0,0 +k1,3600:31966991,8455723:14919656 +g1,3600:31966991,8455723 +) +(1,3600:7246811,9121901:24720180,404226,6290 +h1,3600:7246811,9121901:0,0,0 +g1,3600:8195248,9121901 +g1,3600:10724414,9121901 +g1,3600:11356706,9121901 +g1,3600:11988998,9121901 +g1,3600:12621290,9121901 +h1,3600:12937436,9121901:0,0,0 +k1,3600:31966992,9121901:19029556 +g1,3600:31966992,9121901 +) +] +) +g1,3601:31966991,9128191 +g1,3601:7246811,9128191 +g1,3601:7246811,9128191 +g1,3601:31966991,9128191 +g1,3601:31966991,9128191 +) +h1,3601:7246811,9324799:0,0,0 +] +) +] +r1,3604:32583029,10438911:26214,4578030,0 +) +] +) +) +g1,3604:32583029,9849087 +) +h1,3604:6630773,10465125:0,0,0 +v1,3607:6630773,11703845:0,393216,0 +(1,3630:6630773,22179031:25952256,10868402,616038 +g1,3630:6630773,22179031 +(1,3630:6630773,22179031:25952256,10868402,616038 +(1,3630:6630773,22795069:25952256,11484440,0 +[1,3630:6630773,22795069:25952256,11484440,0 +(1,3630:6630773,22768855:25952256,11432012,0 +r1,3630:6656987,22768855:26214,11432012,0 +[1,3630:6656987,22768855:25899828,11432012,0 +(1,3630:6656987,22179031:25899828,10252364,0 +[1,3630:7246811,22179031:24720180,10252364,0 +(1,3608:7246811,13088552:24720180,1161885,196608 +(1,3607:7246811,13088552:0,1161885,196608 +r1,3630:8794447,13088552:1547636,1358493,196608 +k1,3607:7246811,13088552:-1547636 +) +(1,3607:7246811,13088552:1547636,1161885,196608 +) +k1,3607:8951598,13088552:157151 +k1,3607:11803137,13088552:161286 +k1,3607:13918051,13088552:161286 +k1,3607:16185461,13088552:157151 +k1,3607:17296161,13088552:157151 +k1,3607:18545796,13088552:157150 +(1,3607:18545796,13088552:0,459977,115847 +r1,3630:21366045,13088552:2820249,575824,115847 +k1,3607:18545796,13088552:-2820249 +) +(1,3607:18545796,13088552:2820249,459977,115847 +k1,3607:18545796,13088552:3277 +h1,3607:21362768,13088552:0,411205,112570 +) +k1,3607:21523196,13088552:157151 +k1,3607:22366509,13088552:157151 +k1,3607:24599185,13088552:157151 +k1,3607:26798437,13088552:157150 +k1,3607:29137282,13088552:157151 +k1,3607:30313518,13088552:157151 +k1,3607:31966991,13088552:0 +) +(1,3608:7246811,13930040:24720180,513147,134348 +g1,3607:8959922,13930040 +g1,3607:10106802,13930040 +g1,3607:11325116,13930040 +g1,3607:13316755,13930040 +g1,3607:14384336,13930040 +g1,3607:16132181,13930040 +g1,3607:16982838,13930040 +k1,3608:31966991,13930040:12833261 +g1,3608:31966991,13930040 +) +v1,3610:7246811,15120506:0,393216,0 +(1,3628:7246811,21458135:24720180,6730845,196608 +g1,3628:7246811,21458135 +g1,3628:7246811,21458135 +g1,3628:7050203,21458135 +(1,3628:7050203,21458135:0,6730845,196608 +r1,3630:32163599,21458135:25113396,6927453,196608 +k1,3628:7050203,21458135:-25113396 +) +(1,3628:7050203,21458135:25113396,6730845,196608 +[1,3628:7246811,21458135:24720180,6534237,0 +(1,3612:7246811,15334416:24720180,410518,107478 +(1,3611:7246811,15334416:0,0,0 +g1,3611:7246811,15334416 +g1,3611:7246811,15334416 +g1,3611:6919131,15334416 +(1,3611:6919131,15334416:0,0,0 +) +g1,3611:7246811,15334416 +) +g1,3612:10724414,15334416 +g1,3612:11672852,15334416 +g1,3612:13569727,15334416 +g1,3612:14518165,15334416 +g1,3612:16731185,15334416 +g1,3612:17363477,15334416 +g1,3612:19576498,15334416 +g1,3612:21157227,15334416 +g1,3612:22737956,15334416 +h1,3612:24318684,15334416:0,0,0 +k1,3612:31966991,15334416:7648307 +g1,3612:31966991,15334416 +) +(1,3613:7246811,16000594:24720180,410518,101187 +h1,3613:7246811,16000594:0,0,0 +h1,3613:10408268,16000594:0,0,0 +k1,3613:31966992,16000594:21558724 +g1,3613:31966992,16000594 +) +(1,3618:7246811,16732308:24720180,404226,76021 +(1,3615:7246811,16732308:0,0,0 +g1,3615:7246811,16732308 +g1,3615:7246811,16732308 +g1,3615:6919131,16732308 +(1,3615:6919131,16732308:0,0,0 +) +g1,3615:7246811,16732308 +) +g1,3618:8195248,16732308 +g1,3618:8511394,16732308 +g1,3618:9775977,16732308 +g1,3618:10408269,16732308 +g1,3618:11040561,16732308 +g1,3618:11672853,16732308 +g1,3618:12305145,16732308 +g1,3618:12937437,16732308 +g1,3618:13569729,16732308 +g1,3618:14202021,16732308 +g1,3618:14834313,16732308 +g1,3618:15466605,16732308 +g1,3618:16098897,16732308 +g1,3618:16731189,16732308 +h1,3618:17047335,16732308:0,0,0 +k1,3618:31966991,16732308:14919656 +g1,3618:31966991,16732308 +) +(1,3618:7246811,17398486:24720180,404226,6290 +h1,3618:7246811,17398486:0,0,0 +g1,3618:8195248,17398486 +g1,3618:10724414,17398486 +g1,3618:11356706,17398486 +g1,3618:11988998,17398486 +g1,3618:12621290,17398486 +h1,3618:12937436,17398486:0,0,0 +k1,3618:31966992,17398486:19029556 +g1,3618:31966992,17398486 +) +(1,3620:7246811,18720024:24720180,410518,101187 +(1,3619:7246811,18720024:0,0,0 +g1,3619:7246811,18720024 +g1,3619:7246811,18720024 +g1,3619:6919131,18720024 +(1,3619:6919131,18720024:0,0,0 +) +g1,3619:7246811,18720024 +) +k1,3620:7246811,18720024:0 +k1,3620:7246811,18720024:0 +h1,3620:12937433,18720024:0,0,0 +k1,3620:31966991,18720024:19029558 +g1,3620:31966991,18720024 +) +(1,3621:7246811,19386202:24720180,404226,82312 +h1,3621:7246811,19386202:0,0,0 +g1,3621:7562957,19386202 +g1,3621:7879103,19386202 +g1,3621:8195249,19386202 +g1,3621:8511395,19386202 +g1,3621:8827541,19386202 +g1,3621:9143687,19386202 +g1,3621:9459833,19386202 +g1,3621:11672853,19386202 +g1,3621:12305145,19386202 +g1,3621:14518166,19386202 +g1,3621:16098895,19386202 +g1,3621:17679624,19386202 +k1,3621:17679624,19386202:0 +h1,3621:19260353,19386202:0,0,0 +k1,3621:31966991,19386202:12706638 +g1,3621:31966991,19386202 +) +(1,3622:7246811,20052380:24720180,404226,82312 +h1,3622:7246811,20052380:0,0,0 +g1,3622:7562957,20052380 +g1,3622:7879103,20052380 +g1,3622:8195249,20052380 +g1,3622:8511395,20052380 +g1,3622:8827541,20052380 +g1,3622:9143687,20052380 +g1,3622:9459833,20052380 +g1,3622:11672853,20052380 +g1,3622:12305145,20052380 +g1,3622:14518166,20052380 +g1,3622:16098895,20052380 +g1,3622:17679624,20052380 +h1,3622:19260352,20052380:0,0,0 +k1,3622:31966991,20052380:12706639 +g1,3622:31966991,20052380 +) +(1,3627:7246811,20784094:24720180,404226,76021 +(1,3624:7246811,20784094:0,0,0 +g1,3624:7246811,20784094 +g1,3624:7246811,20784094 +g1,3624:6919131,20784094 +(1,3624:6919131,20784094:0,0,0 +) +g1,3624:7246811,20784094 +) +g1,3627:8195248,20784094 +g1,3627:8511394,20784094 +g1,3627:9775977,20784094 +g1,3627:10408269,20784094 +g1,3627:11040561,20784094 +g1,3627:11672853,20784094 +g1,3627:12305145,20784094 +g1,3627:12937437,20784094 +g1,3627:13569729,20784094 +g1,3627:14202021,20784094 +g1,3627:14834313,20784094 +g1,3627:15466605,20784094 +g1,3627:16098897,20784094 +g1,3627:16731189,20784094 +h1,3627:17047335,20784094:0,0,0 +k1,3627:31966991,20784094:14919656 +g1,3627:31966991,20784094 +) +(1,3627:7246811,21450272:24720180,404226,7863 +h1,3627:7246811,21450272:0,0,0 +g1,3627:8195248,21450272 +g1,3627:10724414,21450272 +g1,3627:11356706,21450272 +g1,3627:11988998,21450272 +h1,3627:12305144,21450272:0,0,0 +k1,3627:31966992,21450272:19661848 +g1,3627:31966992,21450272 +) +] +) +g1,3628:31966991,21458135 +g1,3628:7246811,21458135 +g1,3628:7246811,21458135 +g1,3628:31966991,21458135 +g1,3628:31966991,21458135 +) +h1,3628:7246811,21654743:0,0,0 +] +) +] +r1,3630:32583029,22768855:26214,11432012,0 +) +] +) +) +g1,3630:32583029,22179031 +) +h1,3630:6630773,22795069:0,0,0 +v1,3633:6630773,24033790:0,393216,0 +(1,3711:6630773,45116945:25952256,21476371,589824 +g1,3711:6630773,45116945 +(1,3711:6630773,45116945:25952256,21476371,589824 +(1,3711:6630773,45706769:25952256,22066195,0 +[1,3711:6630773,45706769:25952256,22066195,0 +(1,3711:6630773,45706769:25952256,22039981,0 +r1,3711:6656987,45706769:26214,22039981,0 +[1,3711:6656987,45706769:25899828,22039981,0 +(1,3711:6656987,45116945:25899828,20860333,0 +[1,3711:7246811,45116945:24720180,20860333,0 +(1,3634:7246811,25418497:24720180,1161885,196608 +(1,3633:7246811,25418497:0,1161885,196608 +r1,3711:8794447,25418497:1547636,1358493,196608 +k1,3633:7246811,25418497:-1547636 +) +(1,3633:7246811,25418497:1547636,1161885,196608 +) +k1,3633:8997894,25418497:203447 +k1,3633:12886543,25418497:208802 +k1,3633:15048972,25418497:208801 +k1,3633:17362678,25418497:203447 +k1,3633:18762813,25418497:203448 +k1,3633:21678140,25418497:203447 +k1,3633:24866098,25418497:203448 +k1,3633:25601042,25418497:203447 +k1,3633:26455917,25418497:203447 +k1,3633:27751850,25418497:203448 +(1,3633:27751850,25418497:0,459977,115847 +r1,3711:30572099,25418497:2820249,575824,115847 +k1,3633:27751850,25418497:-2820249 +) +(1,3633:27751850,25418497:2820249,459977,115847 +k1,3633:27751850,25418497:3277 +h1,3633:30568822,25418497:0,411205,112570 +) +k1,3633:30775546,25418497:203447 +k1,3633:31966991,25418497:0 +) +(1,3634:7246811,26259985:24720180,513147,134348 +k1,3633:8250494,26259985:215285 +(1,3633:8250494,26259985:0,452978,115847 +r1,3711:10367319,26259985:2116825,568825,115847 +k1,3633:8250494,26259985:-2116825 +) +(1,3633:8250494,26259985:2116825,452978,115847 +k1,3633:8250494,26259985:3277 +h1,3633:10364042,26259985:0,411205,112570 +) +k1,3633:10582603,26259985:215284 +k1,3633:14252291,26259985:215285 +k1,3633:15664263,26259985:215285 +k1,3633:17255149,26259985:215285 +k1,3633:21602478,26259985:215284 +k1,3633:22349260,26259985:215285 +k1,3633:23849051,26259985:215285 +k1,3633:25083421,26259985:215285 +k1,3633:27367022,26259985:215285 +k1,3633:28241598,26259985:215284 +k1,3633:29475968,26259985:215285 +k1,3633:31966991,26259985:0 +) +(1,3634:7246811,27101473:24720180,505283,134348 +k1,3633:9278100,27101473:238879 +k1,3633:10708423,27101473:238878 +k1,3633:12691215,27101473:238879 +k1,3633:15135380,27101473:238878 +k1,3633:16060421,27101473:238879 +k1,3633:17070002,27101473:238878 +k1,3633:20381209,27101473:238879 +k1,3633:22150353,27101473:238878 +k1,3633:23040660,27101473:238879 +k1,3633:25434362,27101473:238878 +k1,3633:26864686,27101473:238879 +k1,3633:29132559,27101473:238878 +k1,3633:31966991,27101473:0 +) +(1,3634:7246811,27942961:24720180,513147,134348 +k1,3633:8536056,27942961:184963 +k1,3633:10502942,27942961:184962 +k1,3633:12381355,27942961:184963 +k1,3633:13395348,27942961:184963 +k1,3633:15309805,27942961:184962 +k1,3633:16513853,27942961:184963 +k1,3633:20384561,27942961:184963 +k1,3633:22098479,27942961:184963 +k1,3633:22899479,27942961:184962 +k1,3633:23850558,27942961:184963 +k1,3633:27027240,27942961:184963 +k1,3633:29283140,27942961:184962 +k1,3633:30487188,27942961:184963 +k1,3633:31966991,27942961:0 +) +(1,3634:7246811,28784449:24720180,513147,115847 +g1,3633:8314392,28784449 +g1,3633:9606106,28784449 +(1,3633:9606106,28784449:0,452978,115847 +r1,3711:12426355,28784449:2820249,568825,115847 +k1,3633:9606106,28784449:-2820249 +) +(1,3633:9606106,28784449:2820249,452978,115847 +k1,3633:9606106,28784449:3277 +h1,3633:12423078,28784449:0,411205,112570 +) +g1,3633:12625584,28784449 +g1,3633:13476241,28784449 +g1,3633:16109477,28784449 +g1,3633:17327791,28784449 +g1,3633:19595336,28784449 +g1,3633:20453857,28784449 +g1,3633:21672171,28784449 +g1,3633:23663810,28784449 +g1,3633:25430660,28784449 +g1,3633:26648974,28784449 +g1,3633:28742193,28784449 +k1,3634:31966991,28784449:1445496 +g1,3634:31966991,28784449 +) +v1,3636:7246811,29974915:0,393216,0 +(1,3657:7246811,36435420:24720180,6853721,196608 +g1,3657:7246811,36435420 +g1,3657:7246811,36435420 +g1,3657:7050203,36435420 +(1,3657:7050203,36435420:0,6853721,196608 +r1,3711:32163599,36435420:25113396,7050329,196608 +k1,3657:7050203,36435420:-25113396 +) +(1,3657:7050203,36435420:25113396,6853721,196608 +[1,3657:7246811,36435420:24720180,6657113,0 +(1,3638:7246811,30188825:24720180,410518,101187 +(1,3637:7246811,30188825:0,0,0 +g1,3637:7246811,30188825 +g1,3637:7246811,30188825 +g1,3637:6919131,30188825 +(1,3637:6919131,30188825:0,0,0 +) +g1,3637:7246811,30188825 +) +k1,3638:7246811,30188825:0 +h1,3638:12937433,30188825:0,0,0 +k1,3638:31966991,30188825:19029558 +g1,3638:31966991,30188825 +) +(1,3642:7246811,30920539:24720180,404226,76021 +(1,3640:7246811,30920539:0,0,0 +g1,3640:7246811,30920539 +g1,3640:7246811,30920539 +g1,3640:6919131,30920539 +(1,3640:6919131,30920539:0,0,0 +) +g1,3640:7246811,30920539 +) +g1,3642:8195248,30920539 +g1,3642:9459831,30920539 +g1,3642:10724414,30920539 +g1,3642:11988997,30920539 +h1,3642:12937434,30920539:0,0,0 +k1,3642:31966990,30920539:19029556 +g1,3642:31966990,30920539 +) +(1,3644:7246811,32242077:24720180,410518,101187 +(1,3643:7246811,32242077:0,0,0 +g1,3643:7246811,32242077 +g1,3643:7246811,32242077 +g1,3643:6919131,32242077 +(1,3643:6919131,32242077:0,0,0 +) +g1,3643:7246811,32242077 +) +g1,3644:10724414,32242077 +g1,3644:11672852,32242077 +g1,3644:17679620,32242077 +g1,3644:19892640,32242077 +g1,3644:20524932,32242077 +g1,3644:22737953,32242077 +g1,3644:24318682,32242077 +h1,3644:25899410,32242077:0,0,0 +k1,3644:31966991,32242077:6067581 +g1,3644:31966991,32242077 +) +(1,3645:7246811,32908255:24720180,410518,101187 +h1,3645:7246811,32908255:0,0,0 +k1,3645:7246811,32908255:0 +h1,3645:12937433,32908255:0,0,0 +k1,3645:31966991,32908255:19029558 +g1,3645:31966991,32908255 +) +(1,3649:7246811,33639969:24720180,404226,76021 +(1,3647:7246811,33639969:0,0,0 +g1,3647:7246811,33639969 +g1,3647:7246811,33639969 +g1,3647:6919131,33639969 +(1,3647:6919131,33639969:0,0,0 +) +g1,3647:7246811,33639969 +) +g1,3649:8195248,33639969 +g1,3649:9459831,33639969 +g1,3649:10724414,33639969 +g1,3649:11988997,33639969 +h1,3649:12937434,33639969:0,0,0 +k1,3649:31966990,33639969:19029556 +g1,3649:31966990,33639969 +) +(1,3651:7246811,34961507:24720180,410518,101187 +(1,3650:7246811,34961507:0,0,0 +g1,3650:7246811,34961507 +g1,3650:7246811,34961507 +g1,3650:6919131,34961507 +(1,3650:6919131,34961507:0,0,0 +) +g1,3650:7246811,34961507 +) +g1,3651:10724414,34961507 +g1,3651:11672852,34961507 +g1,3651:17679620,34961507 +g1,3651:19892640,34961507 +g1,3651:20524932,34961507 +k1,3651:20524932,34961507:0 +h1,3651:28112429,34961507:0,0,0 +k1,3651:31966991,34961507:3854562 +g1,3651:31966991,34961507 +) +(1,3652:7246811,35627685:24720180,410518,101187 +h1,3652:7246811,35627685:0,0,0 +k1,3652:7246811,35627685:0 +h1,3652:12937433,35627685:0,0,0 +k1,3652:31966991,35627685:19029558 +g1,3652:31966991,35627685 +) +(1,3656:7246811,36359399:24720180,404226,76021 +(1,3654:7246811,36359399:0,0,0 +g1,3654:7246811,36359399 +g1,3654:7246811,36359399 +g1,3654:6919131,36359399 +(1,3654:6919131,36359399:0,0,0 +) +g1,3654:7246811,36359399 +) +g1,3656:8195248,36359399 +g1,3656:9459831,36359399 +g1,3656:10724414,36359399 +g1,3656:11988997,36359399 +h1,3656:12937434,36359399:0,0,0 +k1,3656:31966990,36359399:19029556 +g1,3656:31966990,36359399 +) +] +) +g1,3657:31966991,36435420 +g1,3657:7246811,36435420 +g1,3657:7246811,36435420 +g1,3657:31966991,36435420 +g1,3657:31966991,36435420 +) +h1,3657:7246811,36632028:0,0,0 +v1,3661:7246811,38346782:0,393216,0 +(1,3677:7246811,43420213:24720180,5466647,196608 +g1,3677:7246811,43420213 +g1,3677:7246811,43420213 +g1,3677:7050203,43420213 +(1,3677:7050203,43420213:0,5466647,196608 +r1,3711:32163599,43420213:25113396,5663255,196608 +k1,3677:7050203,43420213:-25113396 +) +(1,3677:7050203,43420213:25113396,5466647,196608 +[1,3677:7246811,43420213:24720180,5270039,0 +(1,3663:7246811,38560692:24720180,410518,101187 +(1,3662:7246811,38560692:0,0,0 +g1,3662:7246811,38560692 +g1,3662:7246811,38560692 +g1,3662:6919131,38560692 +(1,3662:6919131,38560692:0,0,0 +) +g1,3662:7246811,38560692 +) +g1,3663:10724414,38560692 +g1,3663:11672852,38560692 +k1,3663:11672852,38560692:0 +h1,3663:17363474,38560692:0,0,0 +k1,3663:31966991,38560692:14603517 +g1,3663:31966991,38560692 +) +(1,3664:7246811,39226870:24720180,410518,107478 +h1,3664:7246811,39226870:0,0,0 +g1,3664:7562957,39226870 +g1,3664:7879103,39226870 +g1,3664:8195249,39226870 +g1,3664:8511395,39226870 +g1,3664:8827541,39226870 +g1,3664:9143687,39226870 +g1,3664:9459833,39226870 +g1,3664:9775979,39226870 +g1,3664:10092125,39226870 +g1,3664:10408271,39226870 +g1,3664:10724417,39226870 +g1,3664:11040563,39226870 +g1,3664:11356709,39226870 +g1,3664:11672855,39226870 +g1,3664:11989001,39226870 +g1,3664:12305147,39226870 +g1,3664:12621293,39226870 +g1,3664:12937439,39226870 +g1,3664:13253585,39226870 +g1,3664:13569731,39226870 +g1,3664:13885877,39226870 +g1,3664:16098897,39226870 +g1,3664:16731189,39226870 +g1,3664:24634832,39226870 +g1,3664:28112435,39226870 +g1,3664:28744727,39226870 +h1,3664:30641601,39226870:0,0,0 +k1,3664:31966991,39226870:1325390 +g1,3664:31966991,39226870 +) +(1,3665:7246811,39893048:24720180,410518,101187 +h1,3665:7246811,39893048:0,0,0 +k1,3665:7246811,39893048:0 +h1,3665:12937433,39893048:0,0,0 +k1,3665:31966991,39893048:19029558 +g1,3665:31966991,39893048 +) +(1,3669:7246811,40624762:24720180,404226,76021 +(1,3667:7246811,40624762:0,0,0 +g1,3667:7246811,40624762 +g1,3667:7246811,40624762 +g1,3667:6919131,40624762 +(1,3667:6919131,40624762:0,0,0 +) +g1,3667:7246811,40624762 +) +g1,3669:8195248,40624762 +g1,3669:9459831,40624762 +g1,3669:10724414,40624762 +g1,3669:11988997,40624762 +h1,3669:12937434,40624762:0,0,0 +k1,3669:31966990,40624762:19029556 +g1,3669:31966990,40624762 +) +(1,3671:7246811,41946300:24720180,410518,101187 +(1,3670:7246811,41946300:0,0,0 +g1,3670:7246811,41946300 +g1,3670:7246811,41946300 +g1,3670:6919131,41946300 +(1,3670:6919131,41946300:0,0,0 +) +g1,3670:7246811,41946300 +) +g1,3671:10724414,41946300 +g1,3671:11672852,41946300 +g1,3671:17679620,41946300 +g1,3671:19892640,41946300 +g1,3671:20524932,41946300 +g1,3671:28112430,41946300 +g1,3671:29060868,41946300 +h1,3671:30325451,41946300:0,0,0 +k1,3671:31966991,41946300:1641540 +g1,3671:31966991,41946300 +) +(1,3672:7246811,42612478:24720180,410518,101187 +h1,3672:7246811,42612478:0,0,0 +k1,3672:7246811,42612478:0 +h1,3672:12937433,42612478:0,0,0 +k1,3672:31966991,42612478:19029558 +g1,3672:31966991,42612478 +) +(1,3676:7246811,43344192:24720180,404226,76021 +(1,3674:7246811,43344192:0,0,0 +g1,3674:7246811,43344192 +g1,3674:7246811,43344192 +g1,3674:6919131,43344192 +(1,3674:6919131,43344192:0,0,0 +) +g1,3674:7246811,43344192 +) +g1,3676:8195248,43344192 +g1,3676:9459831,43344192 +g1,3676:10724414,43344192 +g1,3676:11988997,43344192 +h1,3676:12937434,43344192:0,0,0 +k1,3676:31966990,43344192:19029556 +g1,3676:31966990,43344192 +) +] +) +g1,3677:31966991,43420213 +g1,3677:7246811,43420213 +g1,3677:7246811,43420213 +g1,3677:31966991,43420213 +g1,3677:31966991,43420213 +) +h1,3677:7246811,43616821:0,0,0 +(1,3681:7246811,44982597:24720180,513147,134348 +h1,3680:7246811,44982597:983040,0,0 +k1,3680:11932417,44982597:180661 +k1,3680:13132163,44982597:180661 +k1,3680:15105234,44982597:180661 +k1,3680:15945187,44982597:180661 +k1,3680:16481708,44982597:180661 +k1,3680:18556358,44982597:180660 +k1,3680:20591688,44982597:180661 +k1,3680:21581719,44982597:180661 +k1,3680:24752788,44982597:180661 +k1,3680:28117188,44982597:180661 +k1,3680:29865470,44982597:180661 +k1,3680:31435494,44982597:180661 +k1,3680:31966991,44982597:0 ) ] ) ] -r1,3705:32583029,45706769:26214,22039981,0 +r1,3711:32583029,45706769:26214,22039981,0 ) ] ) ) -g1,3705:32583029,45116945 +g1,3711:32583029,45116945 ) ] -(1,3705:32583029,45706769:0,0,0 -g1,3705:32583029,45706769 +(1,3711:32583029,45706769:0,0,0 +g1,3711:32583029,45706769 ) ) ] -(1,3705:6630773,47279633:25952256,0,0 -h1,3705:6630773,47279633:25952256,0,0 +(1,3711:6630773,47279633:25952256,0,0 +h1,3711:6630773,47279633:25952256,0,0 ) ] -h1,3705:4262630,4025873:0,0,0 +h1,3711:4262630,4025873:0,0,0 ] !23688 }71 -Input:466:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:467:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:468:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!266 +Input:462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!284 {72 -[1,3747:4262630,47279633:28320399,43253760,0 -(1,3747:4262630,4025873:0,0,0 -[1,3747:-473657,4025873:25952256,0,0 -(1,3747:-473657,-710414:25952256,0,0 -h1,3747:-473657,-710414:0,0,0 -(1,3747:-473657,-710414:0,0,0 -(1,3747:-473657,-710414:0,0,0 -g1,3747:-473657,-710414 -(1,3747:-473657,-710414:65781,0,65781 -g1,3747:-407876,-710414 -[1,3747:-407876,-644633:0,0,0 +[1,3753:4262630,47279633:28320399,43253760,0 +(1,3753:4262630,4025873:0,0,0 +[1,3753:-473657,4025873:25952256,0,0 +(1,3753:-473657,-710414:25952256,0,0 +h1,3753:-473657,-710414:0,0,0 +(1,3753:-473657,-710414:0,0,0 +(1,3753:-473657,-710414:0,0,0 +g1,3753:-473657,-710414 +(1,3753:-473657,-710414:65781,0,65781 +g1,3753:-407876,-710414 +[1,3753:-407876,-644633:0,0,0 ] ) -k1,3747:-473657,-710414:-65781 +k1,3753:-473657,-710414:-65781 ) ) -k1,3747:25478599,-710414:25952256 -g1,3747:25478599,-710414 +k1,3753:25478599,-710414:25952256 +g1,3753:25478599,-710414 ) ] ) -[1,3747:6630773,47279633:25952256,43253760,0 -[1,3747:6630773,4812305:25952256,786432,0 -(1,3747:6630773,4812305:25952256,485622,11795 -(1,3747:6630773,4812305:25952256,485622,11795 -g1,3747:3078558,4812305 -[1,3747:3078558,4812305:0,0,0 -(1,3747:3078558,2439708:0,1703936,0 -k1,3747:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3747:2537886,2439708:1179648,16384,0 +[1,3753:6630773,47279633:25952256,43253760,0 +[1,3753:6630773,4812305:25952256,786432,0 +(1,3753:6630773,4812305:25952256,485622,11795 +(1,3753:6630773,4812305:25952256,485622,11795 +g1,3753:3078558,4812305 +[1,3753:3078558,4812305:0,0,0 +(1,3753:3078558,2439708:0,1703936,0 +k1,3753:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3753:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3747:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3753:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3747:3078558,4812305:0,0,0 -(1,3747:3078558,2439708:0,1703936,0 -g1,3747:29030814,2439708 -g1,3747:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3747:36151628,1915420:16384,1179648,0 +[1,3753:3078558,4812305:0,0,0 +(1,3753:3078558,2439708:0,1703936,0 +g1,3753:29030814,2439708 +g1,3753:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3753:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3747:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3753:37855564,2439708:1179648,16384,0 ) ) -k1,3747:3078556,2439708:-34777008 +k1,3753:3078556,2439708:-34777008 ) ] -[1,3747:3078558,4812305:0,0,0 -(1,3747:3078558,49800853:0,16384,2228224 -k1,3747:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3747:2537886,49800853:1179648,16384,0 +[1,3753:3078558,4812305:0,0,0 +(1,3753:3078558,49800853:0,16384,2228224 +k1,3753:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3753:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3747:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3753:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3747:3078558,4812305:0,0,0 -(1,3747:3078558,49800853:0,16384,2228224 -g1,3747:29030814,49800853 -g1,3747:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3747:36151628,51504789:16384,1179648,0 +[1,3753:3078558,4812305:0,0,0 +(1,3753:3078558,49800853:0,16384,2228224 +g1,3753:29030814,49800853 +g1,3753:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3753:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3747:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3753:37855564,49800853:1179648,16384,0 ) ) -k1,3747:3078556,49800853:-34777008 -) -] -g1,3747:6630773,4812305 -g1,3747:6630773,4812305 -g1,3747:9104757,4812305 -k1,3747:31786111,4812305:22681354 -) -) -] -[1,3747:6630773,45706769:25952256,40108032,0 -(1,3747:6630773,45706769:25952256,40108032,0 -(1,3747:6630773,45706769:0,0,0 -g1,3747:6630773,45706769 -) -[1,3747:6630773,45706769:25952256,40108032,0 -v1,3705:6630773,6254097:0,393216,0 -(1,3705:6630773,20991362:25952256,15130481,616038 -g1,3705:6630773,20991362 -(1,3705:6630773,20991362:25952256,15130481,616038 -(1,3705:6630773,21607400:25952256,15746519,0 -[1,3705:6630773,21607400:25952256,15746519,0 -(1,3705:6630773,21581186:25952256,15720305,0 -r1,3705:6656987,21581186:26214,15720305,0 -[1,3705:6656987,21581186:25899828,15720305,0 -(1,3705:6656987,20991362:25899828,14540657,0 -[1,3705:7246811,20991362:24720180,14540657,0 -(1,3675:7246811,6963852:24720180,513147,134348 -k1,3674:8833972,6963852:233187 -k1,3674:11218052,6963852:233188 -k1,3674:14558956,6963852:233187 -k1,3674:16490181,6963852:233187 -k1,3674:19421486,6963852:233188 -k1,3674:22444541,6963852:233187 -(1,3674:22444541,6963852:0,452978,115847 -r1,3705:25616501,6963852:3171960,568825,115847 -k1,3674:22444541,6963852:-3171960 -) -(1,3674:22444541,6963852:3171960,452978,115847 -k1,3674:22444541,6963852:3277 -h1,3674:25613224,6963852:0,411205,112570 -) -k1,3674:25849689,6963852:233188 -k1,3674:27187158,6963852:233187 -k1,3674:28168111,6963852:233187 -k1,3674:29914525,6963852:233188 -k1,3674:30763750,6963852:233187 -k1,3674:31966991,6963852:0 -) -(1,3675:7246811,7805340:24720180,513147,134348 -k1,3674:9030163,7805340:242601 -k1,3674:9742658,7805340:242602 -k1,3674:12581140,7805340:242601 -k1,3674:13475169,7805340:242601 -k1,3674:15453163,7805340:242601 -(1,3674:15453163,7805340:0,452978,115847 -r1,3705:17569988,7805340:2116825,568825,115847 -k1,3674:15453163,7805340:-2116825 -) -(1,3674:15453163,7805340:2116825,452978,115847 -k1,3674:15453163,7805340:3277 -h1,3674:17566711,7805340:0,411205,112570 -) -k1,3674:17812590,7805340:242602 -k1,3674:19002842,7805340:242601 -k1,3674:22927256,7805340:242601 -k1,3674:24242026,7805340:242601 -k1,3674:26186598,7805340:242602 -k1,3674:28941194,7805340:242601 -k1,3674:31966991,7805340:0 -) -(1,3675:7246811,8646828:24720180,505283,126483 -g1,3674:8550322,8646828 -g1,3674:9497317,8646828 -g1,3674:12457578,8646828 -g1,3674:13272845,8646828 -g1,3674:14260472,8646828 -k1,3675:31966991,8646828:15870200 -g1,3675:31966991,8646828 -) -v1,3677:7246811,9837294:0,393216,0 -(1,3700:7246811,17630155:24720180,8186077,196608 -g1,3700:7246811,17630155 -g1,3700:7246811,17630155 -g1,3700:7050203,17630155 -(1,3700:7050203,17630155:0,8186077,196608 -r1,3705:32163599,17630155:25113396,8382685,196608 -k1,3700:7050203,17630155:-25113396 -) -(1,3700:7050203,17630155:25113396,8186077,196608 -[1,3700:7246811,17630155:24720180,7989469,0 -(1,3679:7246811,10051204:24720180,410518,107478 -(1,3678:7246811,10051204:0,0,0 -g1,3678:7246811,10051204 -g1,3678:7246811,10051204 -g1,3678:6919131,10051204 -(1,3678:6919131,10051204:0,0,0 -) -g1,3678:7246811,10051204 -) -g1,3679:10724414,10051204 -g1,3679:11672852,10051204 -g1,3679:13569727,10051204 -g1,3679:14518165,10051204 -g1,3679:16731185,10051204 -g1,3679:17363477,10051204 -g1,3679:19576498,10051204 -h1,3679:21157226,10051204:0,0,0 -k1,3679:31966991,10051204:10809765 -g1,3679:31966991,10051204 -) -(1,3680:7246811,10717382:24720180,404226,101187 -h1,3680:7246811,10717382:0,0,0 -g1,3680:10724414,10717382 -g1,3680:11672852,10717382 -g1,3680:13885873,10717382 -g1,3680:15466602,10717382 -g1,3680:17047331,10717382 -g1,3680:18628060,10717382 -g1,3680:20208789,10717382 -g1,3680:21789518,10717382 -g1,3680:23370247,10717382 -g1,3680:24950976,10717382 -g1,3680:26531705,10717382 -h1,3680:27796288,10717382:0,0,0 -k1,3680:31966991,10717382:4170703 -g1,3680:31966991,10717382 -) -(1,3681:7246811,11383560:24720180,410518,101187 -h1,3681:7246811,11383560:0,0,0 -k1,3681:7246811,11383560:0 -h1,3681:12937433,11383560:0,0,0 -k1,3681:31966991,11383560:19029558 -g1,3681:31966991,11383560 -) -(1,3685:7246811,12115274:24720180,404226,76021 -(1,3683:7246811,12115274:0,0,0 -g1,3683:7246811,12115274 -g1,3683:7246811,12115274 -g1,3683:6919131,12115274 -(1,3683:6919131,12115274:0,0,0 -) -g1,3683:7246811,12115274 -) -g1,3685:8195248,12115274 -g1,3685:9459831,12115274 -g1,3685:10724414,12115274 -h1,3685:11672851,12115274:0,0,0 -k1,3685:31966991,12115274:20294140 -g1,3685:31966991,12115274 -) -(1,3687:7246811,13436812:24720180,410518,101187 -(1,3686:7246811,13436812:0,0,0 -g1,3686:7246811,13436812 -g1,3686:7246811,13436812 -g1,3686:6919131,13436812 -(1,3686:6919131,13436812:0,0,0 -) -g1,3686:7246811,13436812 -) -g1,3687:11672851,13436812 -g1,3687:12621289,13436812 -g1,3687:18944203,13436812 -h1,3687:22421805,13436812:0,0,0 -k1,3687:31966991,13436812:9545186 -g1,3687:31966991,13436812 -) -(1,3688:7246811,14102990:24720180,410518,101187 -h1,3688:7246811,14102990:0,0,0 -k1,3688:7246811,14102990:0 -h1,3688:13885870,14102990:0,0,0 -k1,3688:31966990,14102990:18081120 -g1,3688:31966990,14102990 -) -(1,3692:7246811,14834704:24720180,404226,76021 -(1,3690:7246811,14834704:0,0,0 -g1,3690:7246811,14834704 -g1,3690:7246811,14834704 -g1,3690:6919131,14834704 -(1,3690:6919131,14834704:0,0,0 -) -g1,3690:7246811,14834704 -) -g1,3692:8195248,14834704 -g1,3692:9459831,14834704 -g1,3692:10724414,14834704 -h1,3692:11672851,14834704:0,0,0 -k1,3692:31966991,14834704:20294140 -g1,3692:31966991,14834704 -) -(1,3694:7246811,16156242:24720180,410518,101187 -(1,3693:7246811,16156242:0,0,0 -g1,3693:7246811,16156242 -g1,3693:7246811,16156242 -g1,3693:6919131,16156242 -(1,3693:6919131,16156242:0,0,0 -) -g1,3693:7246811,16156242 -) -g1,3694:11672851,16156242 -g1,3694:12621289,16156242 -g1,3694:18944203,16156242 -g1,3694:23054097,16156242 -g1,3694:23686389,16156242 -g1,3694:24318681,16156242 -g1,3694:26531701,16156242 -k1,3694:26531701,16156242:18350 -h1,3694:28130779,16156242:0,0,0 -k1,3694:31966991,16156242:3836212 -g1,3694:31966991,16156242 -) -(1,3695:7246811,16822420:24720180,410518,101187 -h1,3695:7246811,16822420:0,0,0 -k1,3695:7246811,16822420:0 -h1,3695:13885870,16822420:0,0,0 -k1,3695:31966990,16822420:18081120 -g1,3695:31966990,16822420 -) -(1,3699:7246811,17554134:24720180,404226,76021 -(1,3697:7246811,17554134:0,0,0 -g1,3697:7246811,17554134 -g1,3697:7246811,17554134 -g1,3697:6919131,17554134 -(1,3697:6919131,17554134:0,0,0 -) -g1,3697:7246811,17554134 -) -g1,3699:8195248,17554134 -g1,3699:9459831,17554134 -g1,3699:10724414,17554134 -h1,3699:11672851,17554134:0,0,0 -k1,3699:31966991,17554134:20294140 -g1,3699:31966991,17554134 -) -] -) -g1,3700:31966991,17630155 -g1,3700:7246811,17630155 -g1,3700:7246811,17630155 -g1,3700:31966991,17630155 -g1,3700:31966991,17630155 -) -h1,3700:7246811,17826763:0,0,0 -(1,3704:7246811,19192539:24720180,505283,134348 -h1,3703:7246811,19192539:983040,0,0 -k1,3703:9085275,19192539:227589 -k1,3703:10331948,19192539:227588 -k1,3703:11707728,19192539:227589 -k1,3703:15295348,19192539:227589 -k1,3703:17258329,19192539:227588 -k1,3703:18505003,19192539:227589 -k1,3703:20567599,19192539:227588 -k1,3703:23554909,19192539:227589 -k1,3703:26702782,19192539:227589 -k1,3703:28815841,19192539:227588 -k1,3703:29574927,19192539:227589 -k1,3704:31966991,19192539:0 -) -(1,3704:7246811,20034027:24720180,513147,134348 -k1,3703:8781150,20034027:202647 -k1,3703:10995751,20034027:202646 -k1,3703:11943542,20034027:202647 -k1,3703:12797617,20034027:202647 -k1,3703:14801192,20034027:202646 -k1,3703:17310051,20034027:202647 -k1,3703:18531783,20034027:202647 -k1,3703:21464004,20034027:202646 -k1,3703:22325943,20034027:202647 -k1,3703:23547674,20034027:202646 -k1,3703:25716401,20034027:202647 -k1,3703:27608566,20034027:202647 -k1,3703:29009866,20034027:202646 -k1,3703:30947906,20034027:202647 -k1,3703:31966991,20034027:0 -) -(1,3704:7246811,20875515:24720180,513147,115847 -g1,3703:9711620,20875515 -g1,3703:12780015,20875515 -(1,3703:12780015,20875515:0,452978,115847 -r1,3705:14896840,20875515:2116825,568825,115847 -k1,3703:12780015,20875515:-2116825 -) -(1,3703:12780015,20875515:2116825,452978,115847 -k1,3703:12780015,20875515:3277 -h1,3703:14893563,20875515:0,411205,112570 -) -g1,3703:15269739,20875515 -g1,3703:16120396,20875515 -g1,3703:19887405,20875515 -g1,3703:21105719,20875515 -k1,3704:31966991,20875515:9298238 -g1,3704:31966991,20875515 -) -] -) -] -r1,3705:32583029,21581186:26214,15720305,0 -) -] -) -) -g1,3705:32583029,20991362 -) -h1,3705:6630773,21607400:0,0,0 -v1,3707:6630773,22973176:0,393216,0 -(1,3739:6630773,42465647:25952256,19885687,616038 -g1,3739:6630773,42465647 -(1,3739:6630773,42465647:25952256,19885687,616038 -(1,3739:6630773,43081685:25952256,20501725,0 -[1,3739:6630773,43081685:25952256,20501725,0 -(1,3739:6630773,43055471:25952256,20449297,0 -r1,3739:6656987,43055471:26214,20449297,0 -[1,3739:6656987,43055471:25899828,20449297,0 -(1,3739:6656987,42465647:25899828,19269649,0 -[1,3739:7246811,42465647:24720180,19269649,0 -(1,3709:7246811,24479980:24720180,1283982,196608 -(1,3707:7246811,24479980:0,1283982,196608 -r1,3739:9812056,24479980:2565245,1480590,196608 -k1,3707:7246811,24479980:-2565245 -) -(1,3707:7246811,24479980:2565245,1283982,196608 -) -k1,3707:9962062,24479980:150006 -k1,3707:9962062,24479980:0 -k1,3708:13795863,24479980:153954 -k1,3708:15903445,24479980:153954 -k1,3708:18375392,24479980:150006 -k1,3708:18995292,24479980:150007 -k1,3708:19676795,24479980:150006 -k1,3708:22456761,24479980:150006 -k1,3708:23258196,24479980:150007 -k1,3708:25833034,24479980:150006 -k1,3708:27002125,24479980:150006 -k1,3708:29162777,24479980:150007 -k1,3708:31350953,24479980:150006 -k1,3708:31966991,24479980:0 -) -(1,3709:7246811,25321468:24720180,513147,134348 -k1,3708:7793763,25321468:191092 -k1,3708:9878845,25321468:191092 -k1,3708:11925917,25321468:191092 -k1,3708:16536102,25321468:191092 -k1,3708:19844086,25321468:191092 -k1,3708:20686606,25321468:191092 -k1,3708:21896784,25321468:191093 -k1,3708:23932059,25321468:191092 -k1,3708:24782443,25321468:191092 -k1,3708:25992620,25321468:191092 -k1,3708:27976122,25321468:191092 -k1,3708:28850099,25321468:191092 -k1,3708:31966991,25321468:0 -) -(1,3709:7246811,26162956:24720180,513147,7863 -g1,3708:8097468,26162956 -g1,3708:9315782,26162956 -g1,3708:11254337,26162956 -g1,3708:12112858,26162956 -g1,3708:13331172,26162956 -k1,3709:31966991,26162956:16669739 -g1,3709:31966991,26162956 -) -v1,3711:7246811,27353422:0,393216,0 -(1,3723:7246811,33004234:24720180,6044028,196608 -g1,3723:7246811,33004234 -g1,3723:7246811,33004234 -g1,3723:7050203,33004234 -(1,3723:7050203,33004234:0,6044028,196608 -r1,3739:32163599,33004234:25113396,6240636,196608 -k1,3723:7050203,33004234:-25113396 -) -(1,3723:7050203,33004234:25113396,6044028,196608 -[1,3723:7246811,33004234:24720180,5847420,0 -(1,3713:7246811,27567332:24720180,410518,107478 -(1,3712:7246811,27567332:0,0,0 -g1,3712:7246811,27567332 -g1,3712:7246811,27567332 -g1,3712:6919131,27567332 -(1,3712:6919131,27567332:0,0,0 -) -g1,3712:7246811,27567332 -) -g1,3713:7879103,27567332 -g1,3713:9459832,27567332 -g1,3713:11356706,27567332 -g1,3713:13253580,27567332 -g1,3713:14202017,27567332 -k1,3713:14202017,27567332:0 -h1,3713:16098891,27567332:0,0,0 -k1,3713:31966991,27567332:15868100 -g1,3713:31966991,27567332 -) -(1,3714:7246811,28233510:24720180,410518,107478 -h1,3714:7246811,28233510:0,0,0 -g1,3714:10724414,28233510 -g1,3714:11672852,28233510 -g1,3714:13569727,28233510 -g1,3714:14518165,28233510 -g1,3714:16731185,28233510 -g1,3714:17363477,28233510 -g1,3714:19576498,28233510 -g1,3714:21157227,28233510 -g1,3714:22737956,28233510 -h1,3714:24318684,28233510:0,0,0 -k1,3714:31966991,28233510:7648307 -g1,3714:31966991,28233510 -) -(1,3715:7246811,28899688:24720180,410518,101187 -h1,3715:7246811,28899688:0,0,0 -h1,3715:10408268,28899688:0,0,0 -k1,3715:31966992,28899688:21558724 -g1,3715:31966992,28899688 -) -(1,3716:7246811,29565866:24720180,410518,107478 -h1,3716:7246811,29565866:0,0,0 -k1,3716:7246811,29565866:0 -h1,3716:14202016,29565866:0,0,0 -k1,3716:31966992,29565866:17764976 -g1,3716:31966992,29565866 -) -(1,3717:7246811,30232044:24720180,410518,101187 -h1,3717:7246811,30232044:0,0,0 -g1,3717:7879103,30232044 -g1,3717:10724414,30232044 -g1,3717:12937434,30232044 -g1,3717:15150454,30232044 -k1,3717:15150454,30232044:41419 -h1,3717:19617913,30232044:0,0,0 -k1,3717:31966991,30232044:12349078 -g1,3717:31966991,30232044 -) -(1,3718:7246811,30898222:24720180,410518,101187 -h1,3718:7246811,30898222:0,0,0 -g1,3718:10724414,30898222 -g1,3718:11672852,30898222 -g1,3718:17363476,30898222 -g1,3718:18944205,30898222 -g1,3718:20524934,30898222 -g1,3718:22421809,30898222 -k1,3718:22421809,30898222:0 -h1,3718:25583267,30898222:0,0,0 -k1,3718:31966991,30898222:6383724 -g1,3718:31966991,30898222 -) -(1,3719:7246811,31564400:24720180,410518,101187 -h1,3719:7246811,31564400:0,0,0 -h1,3719:10408268,31564400:0,0,0 -k1,3719:31966992,31564400:21558724 -g1,3719:31966992,31564400 -) -(1,3720:7246811,32230578:24720180,410518,107478 -h1,3720:7246811,32230578:0,0,0 -k1,3720:7246811,32230578:0 -h1,3720:14202016,32230578:0,0,0 -k1,3720:31966992,32230578:17764976 -g1,3720:31966992,32230578 -) -(1,3721:7246811,32896756:24720180,410518,107478 -h1,3721:7246811,32896756:0,0,0 -k1,3721:7246811,32896756:0 -h1,3721:20524930,32896756:0,0,0 -k1,3721:31966991,32896756:11442061 -g1,3721:31966991,32896756 -) -] -) -g1,3723:31966991,33004234 -g1,3723:7246811,33004234 -g1,3723:7246811,33004234 -g1,3723:31966991,33004234 -g1,3723:31966991,33004234 -) -h1,3723:7246811,33200842:0,0,0 -(1,3727:7246811,34566618:24720180,513147,134348 -h1,3726:7246811,34566618:983040,0,0 -k1,3726:9459634,34566618:276234 -k1,3726:10760852,34566618:276235 -k1,3726:12892410,34566618:276234 -k1,3726:14453150,34566618:276234 -k1,3726:15748469,34566618:276234 -k1,3726:18254894,34566618:276235 -k1,3726:20541773,34566618:276234 -k1,3726:21579535,34566618:276234 -k1,3726:23741241,34566618:276235 -k1,3726:25809885,34566618:276234 -k1,3726:26702157,34566618:276234 -k1,3726:27334251,34566618:276234 -k1,3726:29504476,34566618:276235 -k1,3726:30772270,34566618:276234 -k1,3727:31966991,34566618:0 -) -(1,3727:7246811,35408106:24720180,513147,134348 -k1,3726:8695693,35408106:218771 -k1,3726:9906024,35408106:218771 -k1,3726:13429776,35408106:218771 -k1,3726:14299975,35408106:218771 -k1,3726:16767942,35408106:218771 -k1,3726:17669597,35408106:218770 -k1,3726:21795624,35408106:218771 -k1,3726:25636570,35408106:218771 -k1,3726:26874426,35408106:218771 -k1,3726:29071074,35408106:218771 -k1,3726:29949137,35408106:218771 -k1,3726:31966991,35408106:0 -) -(1,3727:7246811,36249594:24720180,505283,134348 -k1,3726:10271231,36249594:234552 -(1,3726:10271231,36249594:0,452978,115847 -r1,3739:12388056,36249594:2116825,568825,115847 -k1,3726:10271231,36249594:-2116825 -) -(1,3726:10271231,36249594:2116825,452978,115847 -k1,3726:10271231,36249594:3277 -h1,3726:12384779,36249594:0,411205,112570 -) -k1,3726:12622608,36249594:234552 -k1,3726:15598531,36249594:234552 -k1,3726:16642453,36249594:234552 -k1,3726:17896090,36249594:234552 -k1,3726:20314957,36249594:234552 -k1,3726:23992115,36249594:234552 -k1,3726:26787159,36249594:234552 -k1,3726:28213156,36249594:234552 -k1,3726:30048097,36249594:234552 -k1,3727:31966991,36249594:0 -) -(1,3727:7246811,37091082:24720180,513147,134348 -k1,3726:8834997,37091082:177196 -k1,3726:9663620,37091082:177195 -k1,3726:10859901,37091082:177196 -k1,3726:12776423,37091082:177196 -k1,3726:13612911,37091082:177196 -k1,3726:14809191,37091082:177195 -k1,3726:16778797,37091082:177196 -k1,3726:18645511,37091082:177196 -(1,3726:18645511,37091082:0,452978,115847 -r1,3739:21114048,37091082:2468537,568825,115847 -k1,3726:18645511,37091082:-2468537 -) -(1,3726:18645511,37091082:2468537,452978,115847 -k1,3726:18645511,37091082:3277 -h1,3726:21110771,37091082:0,411205,112570 -) -k1,3726:21291243,37091082:177195 -k1,3726:24209810,37091082:177196 -k1,3726:25196376,37091082:177196 -k1,3726:26392657,37091082:177196 -k1,3726:28754167,37091082:177195 -k1,3726:30775546,37091082:177196 -k1,3726:31966991,37091082:0 -) -(1,3727:7246811,37932570:24720180,513147,134348 -g1,3726:9786986,37932570 -g1,3726:10342075,37932570 -g1,3726:12519181,37932570 -g1,3726:13377702,37932570 -g1,3726:15826127,37932570 -g1,3726:17309862,37932570 -g1,3726:19933923,37932570 -g1,3726:21152237,37932570 -g1,3726:23362111,37932570 -k1,3727:31966991,37932570:4012117 -g1,3727:31966991,37932570 -) -v1,3729:7246811,39123036:0,393216,0 -(1,3735:7246811,40776780:24720180,2046960,196608 -g1,3735:7246811,40776780 -g1,3735:7246811,40776780 -g1,3735:7050203,40776780 -(1,3735:7050203,40776780:0,2046960,196608 -r1,3739:32163599,40776780:25113396,2243568,196608 -k1,3735:7050203,40776780:-25113396 -) -(1,3735:7050203,40776780:25113396,2046960,196608 -[1,3735:7246811,40776780:24720180,1850352,0 -(1,3731:7246811,39336946:24720180,410518,101187 -(1,3730:7246811,39336946:0,0,0 -g1,3730:7246811,39336946 -g1,3730:7246811,39336946 -g1,3730:6919131,39336946 -(1,3730:6919131,39336946:0,0,0 -) -g1,3730:7246811,39336946 -) -k1,3731:7246811,39336946:0 -h1,3731:12305142,39336946:0,0,0 -k1,3731:31966990,39336946:19661848 -g1,3731:31966990,39336946 -) -(1,3732:7246811,40003124:24720180,410518,101187 -h1,3732:7246811,40003124:0,0,0 -k1,3732:7246811,40003124:0 -h1,3732:16415035,40003124:0,0,0 -k1,3732:31966991,40003124:15551956 -g1,3732:31966991,40003124 -) -(1,3733:7246811,40669302:24720180,410518,107478 -h1,3733:7246811,40669302:0,0,0 -k1,3733:7246811,40669302:0 -h1,3733:20208784,40669302:0,0,0 -k1,3733:31966991,40669302:11758207 -g1,3733:31966991,40669302 -) -] -) -g1,3735:31966991,40776780 -g1,3735:7246811,40776780 -g1,3735:7246811,40776780 -g1,3735:31966991,40776780 -g1,3735:31966991,40776780 -) -h1,3735:7246811,40973388:0,0,0 -(1,3739:7246811,42339164:24720180,513147,126483 -h1,3738:7246811,42339164:983040,0,0 -g1,3738:9703755,42339164 -g1,3738:10922069,42339164 -g1,3738:14113017,42339164 -g1,3738:14928284,42339164 -g1,3738:16146598,42339164 -g1,3738:18316495,42339164 -g1,3738:20371048,42339164 -g1,3738:21761722,42339164 -g1,3738:23557408,42339164 -g1,3738:24822908,42339164 -g1,3738:26319095,42339164 -g1,3738:27537409,42339164 -g1,3738:29909812,42339164 -k1,3739:31966991,42339164:140251 -g1,3739:31966991,42339164 -) -] -) -] -r1,3739:32583029,43055471:26214,20449297,0 -) +k1,3753:3078556,49800853:-34777008 +) +] +g1,3753:6630773,4812305 +g1,3753:6630773,4812305 +g1,3753:9104757,4812305 +k1,3753:31786111,4812305:22681354 +) +) +] +[1,3753:6630773,45706769:25952256,40108032,0 +(1,3753:6630773,45706769:25952256,40108032,0 +(1,3753:6630773,45706769:0,0,0 +g1,3753:6630773,45706769 +) +[1,3753:6630773,45706769:25952256,40108032,0 +v1,3711:6630773,6254097:0,393216,0 +(1,3711:6630773,20991362:25952256,15130481,616038 +g1,3711:6630773,20991362 +(1,3711:6630773,20991362:25952256,15130481,616038 +(1,3711:6630773,21607400:25952256,15746519,0 +[1,3711:6630773,21607400:25952256,15746519,0 +(1,3711:6630773,21581186:25952256,15720305,0 +r1,3711:6656987,21581186:26214,15720305,0 +[1,3711:6656987,21581186:25899828,15720305,0 +(1,3711:6656987,20991362:25899828,14540657,0 +[1,3711:7246811,20991362:24720180,14540657,0 +(1,3681:7246811,6963852:24720180,513147,134348 +k1,3680:8833972,6963852:233187 +k1,3680:11218052,6963852:233188 +k1,3680:14558956,6963852:233187 +k1,3680:16490181,6963852:233187 +k1,3680:19421486,6963852:233188 +k1,3680:22444541,6963852:233187 +(1,3680:22444541,6963852:0,452978,115847 +r1,3711:25616501,6963852:3171960,568825,115847 +k1,3680:22444541,6963852:-3171960 +) +(1,3680:22444541,6963852:3171960,452978,115847 +k1,3680:22444541,6963852:3277 +h1,3680:25613224,6963852:0,411205,112570 +) +k1,3680:25849689,6963852:233188 +k1,3680:27187158,6963852:233187 +k1,3680:28168111,6963852:233187 +k1,3680:29914525,6963852:233188 +k1,3680:30763750,6963852:233187 +k1,3680:31966991,6963852:0 +) +(1,3681:7246811,7805340:24720180,513147,134348 +k1,3680:9030163,7805340:242601 +k1,3680:9742658,7805340:242602 +k1,3680:12581140,7805340:242601 +k1,3680:13475169,7805340:242601 +k1,3680:15453163,7805340:242601 +(1,3680:15453163,7805340:0,452978,115847 +r1,3711:17569988,7805340:2116825,568825,115847 +k1,3680:15453163,7805340:-2116825 +) +(1,3680:15453163,7805340:2116825,452978,115847 +k1,3680:15453163,7805340:3277 +h1,3680:17566711,7805340:0,411205,112570 +) +k1,3680:17812590,7805340:242602 +k1,3680:19002842,7805340:242601 +k1,3680:22927256,7805340:242601 +k1,3680:24242026,7805340:242601 +k1,3680:26186598,7805340:242602 +k1,3680:28941194,7805340:242601 +k1,3680:31966991,7805340:0 +) +(1,3681:7246811,8646828:24720180,505283,126483 +g1,3680:8550322,8646828 +g1,3680:9497317,8646828 +g1,3680:12457578,8646828 +g1,3680:13272845,8646828 +g1,3680:14260472,8646828 +k1,3681:31966991,8646828:15870200 +g1,3681:31966991,8646828 +) +v1,3683:7246811,9837294:0,393216,0 +(1,3706:7246811,17630155:24720180,8186077,196608 +g1,3706:7246811,17630155 +g1,3706:7246811,17630155 +g1,3706:7050203,17630155 +(1,3706:7050203,17630155:0,8186077,196608 +r1,3711:32163599,17630155:25113396,8382685,196608 +k1,3706:7050203,17630155:-25113396 +) +(1,3706:7050203,17630155:25113396,8186077,196608 +[1,3706:7246811,17630155:24720180,7989469,0 +(1,3685:7246811,10051204:24720180,410518,107478 +(1,3684:7246811,10051204:0,0,0 +g1,3684:7246811,10051204 +g1,3684:7246811,10051204 +g1,3684:6919131,10051204 +(1,3684:6919131,10051204:0,0,0 +) +g1,3684:7246811,10051204 +) +g1,3685:10724414,10051204 +g1,3685:11672852,10051204 +g1,3685:13569727,10051204 +g1,3685:14518165,10051204 +g1,3685:16731185,10051204 +g1,3685:17363477,10051204 +g1,3685:19576498,10051204 +h1,3685:21157226,10051204:0,0,0 +k1,3685:31966991,10051204:10809765 +g1,3685:31966991,10051204 +) +(1,3686:7246811,10717382:24720180,404226,101187 +h1,3686:7246811,10717382:0,0,0 +g1,3686:10724414,10717382 +g1,3686:11672852,10717382 +g1,3686:13885873,10717382 +g1,3686:15466602,10717382 +g1,3686:17047331,10717382 +g1,3686:18628060,10717382 +g1,3686:20208789,10717382 +g1,3686:21789518,10717382 +g1,3686:23370247,10717382 +g1,3686:24950976,10717382 +g1,3686:26531705,10717382 +h1,3686:27796288,10717382:0,0,0 +k1,3686:31966991,10717382:4170703 +g1,3686:31966991,10717382 +) +(1,3687:7246811,11383560:24720180,410518,101187 +h1,3687:7246811,11383560:0,0,0 +k1,3687:7246811,11383560:0 +h1,3687:12937433,11383560:0,0,0 +k1,3687:31966991,11383560:19029558 +g1,3687:31966991,11383560 +) +(1,3691:7246811,12115274:24720180,404226,76021 +(1,3689:7246811,12115274:0,0,0 +g1,3689:7246811,12115274 +g1,3689:7246811,12115274 +g1,3689:6919131,12115274 +(1,3689:6919131,12115274:0,0,0 +) +g1,3689:7246811,12115274 +) +g1,3691:8195248,12115274 +g1,3691:9459831,12115274 +g1,3691:10724414,12115274 +h1,3691:11672851,12115274:0,0,0 +k1,3691:31966991,12115274:20294140 +g1,3691:31966991,12115274 +) +(1,3693:7246811,13436812:24720180,410518,101187 +(1,3692:7246811,13436812:0,0,0 +g1,3692:7246811,13436812 +g1,3692:7246811,13436812 +g1,3692:6919131,13436812 +(1,3692:6919131,13436812:0,0,0 +) +g1,3692:7246811,13436812 +) +g1,3693:11672851,13436812 +g1,3693:12621289,13436812 +g1,3693:18944203,13436812 +h1,3693:22421805,13436812:0,0,0 +k1,3693:31966991,13436812:9545186 +g1,3693:31966991,13436812 +) +(1,3694:7246811,14102990:24720180,410518,101187 +h1,3694:7246811,14102990:0,0,0 +k1,3694:7246811,14102990:0 +h1,3694:13885870,14102990:0,0,0 +k1,3694:31966990,14102990:18081120 +g1,3694:31966990,14102990 +) +(1,3698:7246811,14834704:24720180,404226,76021 +(1,3696:7246811,14834704:0,0,0 +g1,3696:7246811,14834704 +g1,3696:7246811,14834704 +g1,3696:6919131,14834704 +(1,3696:6919131,14834704:0,0,0 +) +g1,3696:7246811,14834704 +) +g1,3698:8195248,14834704 +g1,3698:9459831,14834704 +g1,3698:10724414,14834704 +h1,3698:11672851,14834704:0,0,0 +k1,3698:31966991,14834704:20294140 +g1,3698:31966991,14834704 +) +(1,3700:7246811,16156242:24720180,410518,101187 +(1,3699:7246811,16156242:0,0,0 +g1,3699:7246811,16156242 +g1,3699:7246811,16156242 +g1,3699:6919131,16156242 +(1,3699:6919131,16156242:0,0,0 +) +g1,3699:7246811,16156242 +) +g1,3700:11672851,16156242 +g1,3700:12621289,16156242 +g1,3700:18944203,16156242 +g1,3700:23054097,16156242 +g1,3700:23686389,16156242 +g1,3700:24318681,16156242 +g1,3700:26531701,16156242 +k1,3700:26531701,16156242:18350 +h1,3700:28130779,16156242:0,0,0 +k1,3700:31966991,16156242:3836212 +g1,3700:31966991,16156242 +) +(1,3701:7246811,16822420:24720180,410518,101187 +h1,3701:7246811,16822420:0,0,0 +k1,3701:7246811,16822420:0 +h1,3701:13885870,16822420:0,0,0 +k1,3701:31966990,16822420:18081120 +g1,3701:31966990,16822420 +) +(1,3705:7246811,17554134:24720180,404226,76021 +(1,3703:7246811,17554134:0,0,0 +g1,3703:7246811,17554134 +g1,3703:7246811,17554134 +g1,3703:6919131,17554134 +(1,3703:6919131,17554134:0,0,0 +) +g1,3703:7246811,17554134 +) +g1,3705:8195248,17554134 +g1,3705:9459831,17554134 +g1,3705:10724414,17554134 +h1,3705:11672851,17554134:0,0,0 +k1,3705:31966991,17554134:20294140 +g1,3705:31966991,17554134 +) +] +) +g1,3706:31966991,17630155 +g1,3706:7246811,17630155 +g1,3706:7246811,17630155 +g1,3706:31966991,17630155 +g1,3706:31966991,17630155 +) +h1,3706:7246811,17826763:0,0,0 +(1,3710:7246811,19192539:24720180,505283,134348 +h1,3709:7246811,19192539:983040,0,0 +k1,3709:9103565,19192539:245879 +k1,3709:10368529,19192539:245879 +k1,3709:11762599,19192539:245879 +k1,3709:15368509,19192539:245879 +k1,3709:17349781,19192539:245879 +k1,3709:18614746,19192539:245880 +k1,3709:20695633,19192539:245879 +k1,3709:23701233,19192539:245879 +k1,3709:26867396,19192539:245879 +k1,3709:28998746,19192539:245879 +k1,3709:29776122,19192539:245879 +k1,3710:31966991,19192539:0 +) +(1,3710:7246811,20034027:24720180,513147,134348 +k1,3709:8967974,20034027:188276 +k1,3709:11168204,20034027:188275 +k1,3709:12101624,20034027:188276 +k1,3709:12941327,20034027:188275 +k1,3709:14930532,20034027:188276 +k1,3709:17425019,20034027:188275 +k1,3709:18632380,20034027:188276 +k1,3709:21550231,20034027:188276 +k1,3709:22397798,20034027:188275 +k1,3709:23605159,20034027:188276 +k1,3709:25759514,20034027:188275 +k1,3709:27637308,20034027:188276 +k1,3709:29024237,20034027:188275 +k1,3709:30947906,20034027:188276 +k1,3709:31966991,20034027:0 +) +(1,3710:7246811,20875515:24720180,513147,115847 +g1,3709:9711620,20875515 +g1,3709:12780015,20875515 +(1,3709:12780015,20875515:0,452978,115847 +r1,3711:14896840,20875515:2116825,568825,115847 +k1,3709:12780015,20875515:-2116825 +) +(1,3709:12780015,20875515:2116825,452978,115847 +k1,3709:12780015,20875515:3277 +h1,3709:14893563,20875515:0,411205,112570 +) +g1,3709:15269739,20875515 +g1,3709:16120396,20875515 +g1,3709:19887405,20875515 +g1,3709:21105719,20875515 +k1,3710:31966991,20875515:9298238 +g1,3710:31966991,20875515 +) +] +) +] +r1,3711:32583029,21581186:26214,15720305,0 +) +] +) +) +g1,3711:32583029,20991362 +) +h1,3711:6630773,21607400:0,0,0 +v1,3713:6630773,22973176:0,393216,0 +(1,3745:6630773,42465647:25952256,19885687,616038 +g1,3745:6630773,42465647 +(1,3745:6630773,42465647:25952256,19885687,616038 +(1,3745:6630773,43081685:25952256,20501725,0 +[1,3745:6630773,43081685:25952256,20501725,0 +(1,3745:6630773,43055471:25952256,20449297,0 +r1,3745:6656987,43055471:26214,20449297,0 +[1,3745:6656987,43055471:25899828,20449297,0 +(1,3745:6656987,42465647:25899828,19269649,0 +[1,3745:7246811,42465647:24720180,19269649,0 +(1,3715:7246811,24479980:24720180,1283982,196608 +(1,3713:7246811,24479980:0,1283982,196608 +r1,3745:9812056,24479980:2565245,1480590,196608 +k1,3713:7246811,24479980:-2565245 +) +(1,3713:7246811,24479980:2565245,1283982,196608 +) +k1,3713:9962062,24479980:150006 +k1,3713:9962062,24479980:0 +k1,3714:13795863,24479980:153954 +k1,3714:15903445,24479980:153954 +k1,3714:18375392,24479980:150006 +k1,3714:18995292,24479980:150007 +k1,3714:19676795,24479980:150006 +k1,3714:22456761,24479980:150006 +k1,3714:23258196,24479980:150007 +k1,3714:25833034,24479980:150006 +k1,3714:27002125,24479980:150006 +k1,3714:29162777,24479980:150007 +k1,3714:31350953,24479980:150006 +k1,3714:31966991,24479980:0 +) +(1,3715:7246811,25321468:24720180,513147,134348 +k1,3714:7793763,25321468:191092 +k1,3714:9878845,25321468:191092 +k1,3714:11925917,25321468:191092 +k1,3714:16536102,25321468:191092 +k1,3714:19844086,25321468:191092 +k1,3714:20686606,25321468:191092 +k1,3714:21896784,25321468:191093 +k1,3714:23932059,25321468:191092 +k1,3714:24782443,25321468:191092 +k1,3714:25992620,25321468:191092 +k1,3714:27976122,25321468:191092 +k1,3714:28850099,25321468:191092 +k1,3714:31966991,25321468:0 +) +(1,3715:7246811,26162956:24720180,513147,7863 +g1,3714:8097468,26162956 +g1,3714:9315782,26162956 +g1,3714:11254337,26162956 +g1,3714:12112858,26162956 +g1,3714:13331172,26162956 +k1,3715:31966991,26162956:16669739 +g1,3715:31966991,26162956 +) +v1,3717:7246811,27353422:0,393216,0 +(1,3729:7246811,33004234:24720180,6044028,196608 +g1,3729:7246811,33004234 +g1,3729:7246811,33004234 +g1,3729:7050203,33004234 +(1,3729:7050203,33004234:0,6044028,196608 +r1,3745:32163599,33004234:25113396,6240636,196608 +k1,3729:7050203,33004234:-25113396 +) +(1,3729:7050203,33004234:25113396,6044028,196608 +[1,3729:7246811,33004234:24720180,5847420,0 +(1,3719:7246811,27567332:24720180,410518,107478 +(1,3718:7246811,27567332:0,0,0 +g1,3718:7246811,27567332 +g1,3718:7246811,27567332 +g1,3718:6919131,27567332 +(1,3718:6919131,27567332:0,0,0 +) +g1,3718:7246811,27567332 +) +g1,3719:7879103,27567332 +g1,3719:9459832,27567332 +g1,3719:11356706,27567332 +g1,3719:13253580,27567332 +g1,3719:14202017,27567332 +k1,3719:14202017,27567332:0 +h1,3719:16098891,27567332:0,0,0 +k1,3719:31966991,27567332:15868100 +g1,3719:31966991,27567332 +) +(1,3720:7246811,28233510:24720180,410518,107478 +h1,3720:7246811,28233510:0,0,0 +g1,3720:10724414,28233510 +g1,3720:11672852,28233510 +g1,3720:13569727,28233510 +g1,3720:14518165,28233510 +g1,3720:16731185,28233510 +g1,3720:17363477,28233510 +g1,3720:19576498,28233510 +g1,3720:21157227,28233510 +g1,3720:22737956,28233510 +h1,3720:24318684,28233510:0,0,0 +k1,3720:31966991,28233510:7648307 +g1,3720:31966991,28233510 +) +(1,3721:7246811,28899688:24720180,410518,101187 +h1,3721:7246811,28899688:0,0,0 +h1,3721:10408268,28899688:0,0,0 +k1,3721:31966992,28899688:21558724 +g1,3721:31966992,28899688 +) +(1,3722:7246811,29565866:24720180,410518,107478 +h1,3722:7246811,29565866:0,0,0 +k1,3722:7246811,29565866:0 +h1,3722:14202016,29565866:0,0,0 +k1,3722:31966992,29565866:17764976 +g1,3722:31966992,29565866 +) +(1,3723:7246811,30232044:24720180,410518,101187 +h1,3723:7246811,30232044:0,0,0 +g1,3723:7879103,30232044 +g1,3723:10724414,30232044 +g1,3723:12937434,30232044 +g1,3723:15150454,30232044 +k1,3723:15150454,30232044:41419 +h1,3723:19617913,30232044:0,0,0 +k1,3723:31966991,30232044:12349078 +g1,3723:31966991,30232044 +) +(1,3724:7246811,30898222:24720180,410518,101187 +h1,3724:7246811,30898222:0,0,0 +g1,3724:10724414,30898222 +g1,3724:11672852,30898222 +g1,3724:17363476,30898222 +g1,3724:18944205,30898222 +g1,3724:20524934,30898222 +g1,3724:22421809,30898222 +k1,3724:22421809,30898222:0 +h1,3724:25583267,30898222:0,0,0 +k1,3724:31966991,30898222:6383724 +g1,3724:31966991,30898222 +) +(1,3725:7246811,31564400:24720180,410518,101187 +h1,3725:7246811,31564400:0,0,0 +h1,3725:10408268,31564400:0,0,0 +k1,3725:31966992,31564400:21558724 +g1,3725:31966992,31564400 +) +(1,3726:7246811,32230578:24720180,410518,107478 +h1,3726:7246811,32230578:0,0,0 +k1,3726:7246811,32230578:0 +h1,3726:14202016,32230578:0,0,0 +k1,3726:31966992,32230578:17764976 +g1,3726:31966992,32230578 +) +(1,3727:7246811,32896756:24720180,410518,107478 +h1,3727:7246811,32896756:0,0,0 +k1,3727:7246811,32896756:0 +h1,3727:20524930,32896756:0,0,0 +k1,3727:31966991,32896756:11442061 +g1,3727:31966991,32896756 +) +] +) +g1,3729:31966991,33004234 +g1,3729:7246811,33004234 +g1,3729:7246811,33004234 +g1,3729:31966991,33004234 +g1,3729:31966991,33004234 +) +h1,3729:7246811,33200842:0,0,0 +(1,3733:7246811,34566618:24720180,513147,134348 +h1,3732:7246811,34566618:983040,0,0 +k1,3732:9386983,34566618:203583 +k1,3732:10615549,34566618:203583 +k1,3732:12674456,34566618:203583 +k1,3732:14162545,34566618:203583 +k1,3732:15385213,34566618:203583 +k1,3732:17818986,34566618:203583 +k1,3732:20033214,34566618:203583 +k1,3732:20998324,34566618:203582 +k1,3732:23087378,34566618:203583 +k1,3732:25083371,34566618:203583 +k1,3732:25902992,34566618:203583 +k1,3732:26462435,34566618:203583 +k1,3732:28560008,34566618:203583 +k1,3732:29755151,34566618:203583 +k1,3732:31966991,34566618:0 +) +(1,3733:7246811,35408106:24720180,513147,134348 +k1,3732:8411207,35408106:172836 +k1,3732:11889024,35408106:172836 +k1,3732:12713289,35408106:172837 +k1,3732:15135321,35408106:172836 +k1,3732:15991042,35408106:172836 +k1,3732:20071134,35408106:172836 +k1,3732:23866145,35408106:172836 +k1,3732:25058066,35408106:172836 +k1,3732:27208780,35408106:172837 +k1,3732:28040908,35408106:172836 +k1,3732:30231598,35408106:172836 +k1,3733:31966991,35408106:0 +) +(1,3733:7246811,36249594:24720180,505283,134348 +k1,3732:8697777,36249594:183500 +(1,3732:8697777,36249594:0,452978,115847 +r1,3745:10814602,36249594:2116825,568825,115847 +k1,3732:8697777,36249594:-2116825 +) +(1,3732:8697777,36249594:2116825,452978,115847 +k1,3732:8697777,36249594:3277 +h1,3732:10811325,36249594:0,411205,112570 +) +k1,3732:10998101,36249594:183499 +k1,3732:13922972,36249594:183500 +k1,3732:14915842,36249594:183500 +k1,3732:16118426,36249594:183499 +k1,3732:18486241,36249594:183500 +k1,3732:22112346,36249594:183499 +k1,3732:24856338,36249594:183500 +k1,3732:26231283,36249594:183500 +k1,3732:28015171,36249594:183499 +k1,3732:31315563,36249594:183500 +k1,3732:31966991,36249594:0 +) +(1,3733:7246811,37091082:24720180,513147,126483 +k1,3732:8435297,37091082:169401 +k1,3732:10344024,37091082:169401 +k1,3732:11172717,37091082:169401 +k1,3732:12361203,37091082:169401 +k1,3732:14323014,37091082:169401 +k1,3732:16181933,37091082:169401 +(1,3732:16181933,37091082:0,452978,115847 +r1,3745:18650470,37091082:2468537,568825,115847 +k1,3732:16181933,37091082:-2468537 +) +(1,3732:16181933,37091082:2468537,452978,115847 +k1,3732:16181933,37091082:3277 +h1,3732:18647193,37091082:0,411205,112570 +) +k1,3732:18819870,37091082:169400 +k1,3732:21730642,37091082:169401 +k1,3732:22709413,37091082:169401 +k1,3732:23897899,37091082:169401 +k1,3732:26251615,37091082:169401 +k1,3732:28265199,37091082:169401 +k1,3732:29626045,37091082:169401 +k1,3732:31966991,37091082:0 +) +(1,3733:7246811,37932570:24720180,513147,134348 +g1,3732:7801900,37932570 +g1,3732:9979006,37932570 +g1,3732:10837527,37932570 +g1,3732:13285952,37932570 +g1,3732:14769687,37932570 +g1,3732:17393748,37932570 +g1,3732:18612062,37932570 +g1,3732:20821936,37932570 +k1,3733:31966991,37932570:6552292 +g1,3733:31966991,37932570 +) +v1,3735:7246811,39123036:0,393216,0 +(1,3741:7246811,40776780:24720180,2046960,196608 +g1,3741:7246811,40776780 +g1,3741:7246811,40776780 +g1,3741:7050203,40776780 +(1,3741:7050203,40776780:0,2046960,196608 +r1,3745:32163599,40776780:25113396,2243568,196608 +k1,3741:7050203,40776780:-25113396 +) +(1,3741:7050203,40776780:25113396,2046960,196608 +[1,3741:7246811,40776780:24720180,1850352,0 +(1,3737:7246811,39336946:24720180,410518,101187 +(1,3736:7246811,39336946:0,0,0 +g1,3736:7246811,39336946 +g1,3736:7246811,39336946 +g1,3736:6919131,39336946 +(1,3736:6919131,39336946:0,0,0 +) +g1,3736:7246811,39336946 +) +k1,3737:7246811,39336946:0 +h1,3737:12305142,39336946:0,0,0 +k1,3737:31966990,39336946:19661848 +g1,3737:31966990,39336946 +) +(1,3738:7246811,40003124:24720180,410518,101187 +h1,3738:7246811,40003124:0,0,0 +k1,3738:7246811,40003124:0 +h1,3738:16415035,40003124:0,0,0 +k1,3738:31966991,40003124:15551956 +g1,3738:31966991,40003124 +) +(1,3739:7246811,40669302:24720180,410518,107478 +h1,3739:7246811,40669302:0,0,0 +k1,3739:7246811,40669302:0 +h1,3739:20208784,40669302:0,0,0 +k1,3739:31966991,40669302:11758207 +g1,3739:31966991,40669302 +) +] +) +g1,3741:31966991,40776780 +g1,3741:7246811,40776780 +g1,3741:7246811,40776780 +g1,3741:31966991,40776780 +g1,3741:31966991,40776780 +) +h1,3741:7246811,40973388:0,0,0 +(1,3745:7246811,42339164:24720180,513147,126483 +h1,3744:7246811,42339164:983040,0,0 +g1,3744:9703755,42339164 +g1,3744:10922069,42339164 +g1,3744:14113017,42339164 +g1,3744:14928284,42339164 +g1,3744:16146598,42339164 +g1,3744:18316495,42339164 +g1,3744:20371048,42339164 +g1,3744:21761722,42339164 +g1,3744:23557408,42339164 +g1,3744:24822908,42339164 +g1,3744:26319095,42339164 +g1,3744:27537409,42339164 +g1,3744:29909812,42339164 +k1,3745:31966991,42339164:140251 +g1,3745:31966991,42339164 +) +] +) +] +r1,3745:32583029,43055471:26214,20449297,0 +) ] ) ) -g1,3739:32583029,42465647 +g1,3745:32583029,42465647 ) -h1,3739:6630773,43081685:0,0,0 +h1,3745:6630773,43081685:0,0,0 ] -(1,3747:32583029,45706769:0,0,0 -g1,3747:32583029,45706769 +(1,3753:32583029,45706769:0,0,0 +g1,3753:32583029,45706769 ) ) ] -(1,3747:6630773,47279633:25952256,0,0 -h1,3747:6630773,47279633:25952256,0,0 +(1,3753:6630773,47279633:25952256,0,0 +h1,3753:6630773,47279633:25952256,0,0 ) ] -h1,3747:4262630,4025873:0,0,0 +h1,3753:4262630,4025873:0,0,0 ] -!20816 +!20786 }72 -Input:469:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:470:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:471:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:472:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:473:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:474:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:475:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!606 +Input:465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {73 -[1,3824:4262630,47279633:28320399,43253760,0 -(1,3824:4262630,4025873:0,0,0 -[1,3824:-473657,4025873:25952256,0,0 -(1,3824:-473657,-710414:25952256,0,0 -h1,3824:-473657,-710414:0,0,0 -(1,3824:-473657,-710414:0,0,0 -(1,3824:-473657,-710414:0,0,0 -g1,3824:-473657,-710414 -(1,3824:-473657,-710414:65781,0,65781 -g1,3824:-407876,-710414 -[1,3824:-407876,-644633:0,0,0 +[1,3830:4262630,47279633:28320399,43253760,0 +(1,3830:4262630,4025873:0,0,0 +[1,3830:-473657,4025873:25952256,0,0 +(1,3830:-473657,-710414:25952256,0,0 +h1,3830:-473657,-710414:0,0,0 +(1,3830:-473657,-710414:0,0,0 +(1,3830:-473657,-710414:0,0,0 +g1,3830:-473657,-710414 +(1,3830:-473657,-710414:65781,0,65781 +g1,3830:-407876,-710414 +[1,3830:-407876,-644633:0,0,0 ] ) -k1,3824:-473657,-710414:-65781 +k1,3830:-473657,-710414:-65781 ) ) -k1,3824:25478599,-710414:25952256 -g1,3824:25478599,-710414 +k1,3830:25478599,-710414:25952256 +g1,3830:25478599,-710414 ) ] ) -[1,3824:6630773,47279633:25952256,43253760,0 -[1,3824:6630773,4812305:25952256,786432,0 -(1,3824:6630773,4812305:25952256,505283,134348 -(1,3824:6630773,4812305:25952256,505283,134348 -g1,3824:3078558,4812305 -[1,3824:3078558,4812305:0,0,0 -(1,3824:3078558,2439708:0,1703936,0 -k1,3824:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3824:2537886,2439708:1179648,16384,0 +[1,3830:6630773,47279633:25952256,43253760,0 +[1,3830:6630773,4812305:25952256,786432,0 +(1,3830:6630773,4812305:25952256,505283,134348 +(1,3830:6630773,4812305:25952256,505283,134348 +g1,3830:3078558,4812305 +[1,3830:3078558,4812305:0,0,0 +(1,3830:3078558,2439708:0,1703936,0 +k1,3830:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3830:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3824:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3830:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3824:3078558,4812305:0,0,0 -(1,3824:3078558,2439708:0,1703936,0 -g1,3824:29030814,2439708 -g1,3824:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3824:36151628,1915420:16384,1179648,0 +[1,3830:3078558,4812305:0,0,0 +(1,3830:3078558,2439708:0,1703936,0 +g1,3830:29030814,2439708 +g1,3830:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3830:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3824:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3830:37855564,2439708:1179648,16384,0 ) ) -k1,3824:3078556,2439708:-34777008 +k1,3830:3078556,2439708:-34777008 ) ] -[1,3824:3078558,4812305:0,0,0 -(1,3824:3078558,49800853:0,16384,2228224 -k1,3824:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3824:2537886,49800853:1179648,16384,0 +[1,3830:3078558,4812305:0,0,0 +(1,3830:3078558,49800853:0,16384,2228224 +k1,3830:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3830:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3824:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3830:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3824:3078558,4812305:0,0,0 -(1,3824:3078558,49800853:0,16384,2228224 -g1,3824:29030814,49800853 -g1,3824:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3824:36151628,51504789:16384,1179648,0 +[1,3830:3078558,4812305:0,0,0 +(1,3830:3078558,49800853:0,16384,2228224 +g1,3830:29030814,49800853 +g1,3830:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3830:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3824:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3830:37855564,49800853:1179648,16384,0 ) ) -k1,3824:3078556,49800853:-34777008 -) -] -g1,3824:6630773,4812305 -k1,3824:19562994,4812305:12135303 -g1,3824:20949735,4812305 -g1,3824:21598541,4812305 -g1,3824:24912696,4812305 -g1,3824:27600327,4812305 -g1,3824:29010006,4812305 -) -) -] -[1,3824:6630773,45706769:25952256,40108032,0 -(1,3824:6630773,45706769:25952256,40108032,0 -(1,3824:6630773,45706769:0,0,0 -g1,3824:6630773,45706769 -) -[1,3824:6630773,45706769:25952256,40108032,0 -(1,3744:6630773,6254097:25952256,32768,229376 -(1,3744:6630773,6254097:0,32768,229376 -(1,3744:6630773,6254097:5505024,32768,229376 -r1,3744:12135797,6254097:5505024,262144,229376 -) -k1,3744:6630773,6254097:-5505024 -) -(1,3744:6630773,6254097:25952256,32768,0 -r1,3744:32583029,6254097:25952256,32768,0 -) -) -(1,3744:6630773,7858425:25952256,606339,14155 -(1,3744:6630773,7858425:2464678,582746,14155 -g1,3744:6630773,7858425 -g1,3744:9095451,7858425 -) -k1,3744:32583029,7858425:21642608 -g1,3744:32583029,7858425 -) -(1,3747:6630773,9093129:25952256,513147,134348 -k1,3746:8367665,9093129:135847 -k1,3746:10095381,9093129:135846 -k1,3746:13417588,9093129:135847 -k1,3746:14204863,9093129:135847 -k1,3746:16042680,9093129:135847 -k1,3746:19595573,9093129:135846 -k1,3746:20436587,9093129:135847 -k1,3746:21188472,9093129:135847 -k1,3746:21912831,9093129:135846 -k1,3746:23333184,9093129:135847 -k1,3746:24849219,9093129:135847 -k1,3746:26089348,9093129:135847 -k1,3746:26972960,9093129:135846 -k1,3746:31955194,9093129:135847 -k1,3747:32583029,9093129:0 -) -(1,3747:6630773,9934617:25952256,513147,134348 -k1,3746:7399557,9934617:180271 -k1,3746:8598912,9934617:180270 -k1,3746:11732891,9934617:180271 -k1,3746:12572454,9934617:180271 -k1,3746:13108585,9934617:180271 -k1,3746:14282381,9934617:180270 -k1,3746:15566934,9934617:180271 -k1,3746:16494971,9934617:180271 -k1,3746:20174208,9934617:180270 -k1,3746:21040641,9934617:180271 -k1,3746:24196247,9934617:180271 -k1,3746:24732378,9934617:180271 -k1,3746:28026263,9934617:180270 -k1,3746:29397979,9934617:180271 -k1,3746:32583029,9934617:0 -) -(1,3747:6630773,10776105:25952256,513147,134348 -k1,3746:9475764,10776105:286465 -k1,3746:12943347,10776105:286465 -k1,3746:15830281,10776105:286465 -k1,3746:17135831,10776105:286465 -k1,3746:19075768,10776105:286464 -k1,3746:20048395,10776105:286465 -k1,3746:22816708,10776105:286465 -k1,3746:26037875,10776105:286465 -k1,3746:29629321,10776105:286465 -k1,3746:32583029,10776105:0 -) -(1,3747:6630773,11617593:25952256,513147,134348 -k1,3746:7525843,11617593:235778 -k1,3746:8117481,11617593:235778 -k1,3746:9346786,11617593:235779 -k1,3746:10574124,11617593:235778 -k1,3746:12504663,11617593:235778 -k1,3746:14982428,11617593:235778 -k1,3746:16409652,11617593:235779 -k1,3746:19500178,11617593:235778 -k1,3746:22667381,11617593:235778 -k1,3746:25461685,11617593:235778 -k1,3746:27394191,11617593:235779 -k1,3746:29871956,11617593:235778 -k1,3746:31591469,11617593:235778 -k1,3746:32583029,11617593:0 -) -(1,3747:6630773,12459081:25952256,513147,134348 -g1,3746:9180123,12459081 -g1,3746:11114745,12459081 -g1,3746:14009470,12459081 -(1,3746:14009470,12459081:0,452978,115847 -r1,3746:16126295,12459081:2116825,568825,115847 -k1,3746:14009470,12459081:-2116825 -) -(1,3746:14009470,12459081:2116825,452978,115847 -k1,3746:14009470,12459081:3277 -h1,3746:16123018,12459081:0,411205,112570 -) -k1,3747:32583029,12459081:16283064 -g1,3747:32583029,12459081 -) -v1,3749:6630773,13507658:0,393216,0 -(1,3764:6630773,19852435:25952256,6737993,196608 -g1,3764:6630773,19852435 -g1,3764:6630773,19852435 -g1,3764:6434165,19852435 -(1,3764:6434165,19852435:0,6737993,196608 -r1,3764:32779637,19852435:26345472,6934601,196608 -k1,3764:6434165,19852435:-26345472 -) -(1,3764:6434165,19852435:26345472,6737993,196608 -[1,3764:6630773,19852435:25952256,6541385,0 -(1,3751:6630773,13715276:25952256,404226,101187 -(1,3750:6630773,13715276:0,0,0 -g1,3750:6630773,13715276 -g1,3750:6630773,13715276 -g1,3750:6303093,13715276 -(1,3750:6303093,13715276:0,0,0 -) -g1,3750:6630773,13715276 -) -g1,3751:8843793,13715276 -g1,3751:9792231,13715276 -g1,3751:12005252,13715276 -g1,3751:12637544,13715276 -g1,3751:14218274,13715276 -g1,3751:14850566,13715276 -g1,3751:15482858,13715276 -g1,3751:17063587,13715276 -g1,3751:17695879,13715276 -g1,3751:18328171,13715276 -g1,3751:20857338,13715276 -h1,3751:23070357,13715276:0,0,0 -k1,3751:32583029,13715276:9512672 -g1,3751:32583029,13715276 -) -(1,3752:6630773,14381454:25952256,404226,6290 -h1,3752:6630773,14381454:0,0,0 -h1,3752:8527647,14381454:0,0,0 -k1,3752:32583029,14381454:24055382 -g1,3752:32583029,14381454 -) -(1,3763:6630773,15113168:25952256,410518,31456 -(1,3754:6630773,15113168:0,0,0 -g1,3754:6630773,15113168 -g1,3754:6630773,15113168 -g1,3754:6303093,15113168 -(1,3754:6303093,15113168:0,0,0 -) -g1,3754:6630773,15113168 -) -g1,3763:7579210,15113168 -h1,3763:8211501,15113168:0,0,0 -k1,3763:32583029,15113168:24371528 -g1,3763:32583029,15113168 -) -(1,3763:6630773,15779346:25952256,404226,76021 -h1,3763:6630773,15779346:0,0,0 -g1,3763:7579210,15779346 -g1,3763:8843793,15779346 -g1,3763:9476085,15779346 -g1,3763:10108377,15779346 -g1,3763:10740669,15779346 -g1,3763:11372961,15779346 -g1,3763:12005253,15779346 -h1,3763:12321399,15779346:0,0,0 -k1,3763:32583029,15779346:20261630 -g1,3763:32583029,15779346 -) -(1,3763:6630773,16445524:25952256,379060,0 -h1,3763:6630773,16445524:0,0,0 -h1,3763:7263064,16445524:0,0,0 -k1,3763:32583028,16445524:25319964 -g1,3763:32583028,16445524 -) -(1,3763:6630773,17111702:25952256,410518,101187 -h1,3763:6630773,17111702:0,0,0 -g1,3763:7579210,17111702 -h1,3763:8211501,17111702:0,0,0 -k1,3763:32583029,17111702:24371528 -g1,3763:32583029,17111702 -) -(1,3763:6630773,17777880:25952256,404226,76021 -h1,3763:6630773,17777880:0,0,0 -g1,3763:7579210,17777880 -g1,3763:8843793,17777880 -h1,3763:9792230,17777880:0,0,0 -k1,3763:32583030,17777880:22790800 -g1,3763:32583030,17777880 -) -(1,3763:6630773,18444058:25952256,379060,0 -h1,3763:6630773,18444058:0,0,0 -h1,3763:7263064,18444058:0,0,0 -k1,3763:32583028,18444058:25319964 -g1,3763:32583028,18444058 -) -(1,3763:6630773,19110236:25952256,410518,31456 -h1,3763:6630773,19110236:0,0,0 -g1,3763:7579210,19110236 -h1,3763:8211501,19110236:0,0,0 -k1,3763:32583029,19110236:24371528 -g1,3763:32583029,19110236 -) -(1,3763:6630773,19776414:25952256,404226,76021 -h1,3763:6630773,19776414:0,0,0 -g1,3763:7579210,19776414 -g1,3763:8843793,19776414 -g1,3763:9159939,19776414 -g1,3763:10740668,19776414 -h1,3763:12321396,19776414:0,0,0 -k1,3763:32583028,19776414:20261632 -g1,3763:32583028,19776414 -) -] -) -g1,3764:32583029,19852435 -g1,3764:6630773,19852435 -g1,3764:6630773,19852435 -g1,3764:32583029,19852435 -g1,3764:32583029,19852435 -) -h1,3764:6630773,20049043:0,0,0 -(1,3767:6630773,22522703:25952256,555811,147783 -(1,3767:6630773,22522703:2899444,534184,12975 -g1,3767:6630773,22522703 -g1,3767:9530217,22522703 -) -g1,3767:12708648,22522703 -g1,3767:16612300,22522703 -g1,3767:18179528,22522703 -k1,3767:32583029,22522703:10611588 -g1,3767:32583029,22522703 -) -(1,3769:6630773,23757407:25952256,513147,134348 -k1,3768:8588895,23757407:166368 -k1,3768:8588895,23757407:0 -k1,3768:8755263,23757407:166368 -k1,3768:11104634,23757407:166367 -k1,3768:13412063,23757407:166368 -k1,3768:16283757,23757407:166368 -k1,3768:17397776,23757407:166368 -k1,3768:20303548,23757407:166367 -k1,3768:20825776,23757407:166368 -k1,3768:21985670,23757407:166368 -k1,3768:24686315,23757407:166368 -k1,3768:25871768,23757407:166368 -k1,3768:28577000,23757407:166367 -k1,3768:30781538,23757407:166368 -k1,3768:31563944,23757407:166368 -k1,3768:32583029,23757407:0 -) -(1,3769:6630773,24598895:25952256,505283,134348 -k1,3768:8027634,24598895:229665 -k1,3768:8873337,24598895:229665 -k1,3768:9891400,24598895:229665 -k1,3768:12556383,24598895:229665 -k1,3768:14742298,24598895:229665 -k1,3768:15599798,24598895:229665 -k1,3768:16848549,24598895:229666 -k1,3768:19739631,24598895:229665 -k1,3768:21998291,24598895:229665 -(1,3768:21998291,24598895:0,452978,115847 -r1,3768:26577099,24598895:4578808,568825,115847 -k1,3768:21998291,24598895:-4578808 -) -(1,3768:21998291,24598895:4578808,452978,115847 -k1,3768:21998291,24598895:3277 -h1,3768:26573822,24598895:0,411205,112570 -) -k1,3768:26806764,24598895:229665 -k1,3768:29377375,24598895:229665 -k1,3768:29962900,24598895:229665 -k1,3768:32583029,24598895:0 -) -(1,3769:6630773,25440383:25952256,505283,134348 -k1,3768:9047559,25440383:265239 -k1,3768:11002315,25440383:265238 -(1,3768:11002315,25440383:0,452978,115847 -r1,3768:14174275,25440383:3171960,568825,115847 -k1,3768:11002315,25440383:-3171960 -) -(1,3768:11002315,25440383:3171960,452978,115847 -k1,3768:11002315,25440383:3277 -h1,3768:14170998,25440383:0,411205,112570 -) -k1,3768:14439514,25440383:265239 -k1,3768:17045699,25440383:265239 -k1,3768:17666798,25440383:265239 -k1,3768:18925562,25440383:265238 -k1,3768:22552798,25440383:265239 -k1,3768:23837122,25440383:265239 -k1,3768:26722490,25440383:265239 -k1,3768:28965605,25440383:265238 -(1,3768:28965605,25440383:0,414482,115847 -r1,3768:29323871,25440383:358266,530329,115847 -k1,3768:28965605,25440383:-358266 -) -(1,3768:28965605,25440383:358266,414482,115847 -k1,3768:28965605,25440383:3277 -h1,3768:29320594,25440383:0,411205,112570 -) -k1,3768:29762780,25440383:265239 -(1,3768:29762780,25440383:0,459977,115847 -r1,3768:32583029,25440383:2820249,575824,115847 -k1,3768:29762780,25440383:-2820249 -) -(1,3768:29762780,25440383:2820249,459977,115847 -k1,3768:29762780,25440383:3277 -h1,3768:32579752,25440383:0,411205,112570 -) -k1,3768:32583029,25440383:0 -) -(1,3769:6630773,26281871:25952256,505283,115847 -k1,3768:9113796,26281871:142077 -k1,3768:10274957,26281871:142076 -k1,3768:12070507,26281871:142077 -k1,3768:13892927,26281871:142077 -k1,3768:14721165,26281871:142076 -(1,3768:14721165,26281871:0,452978,115847 -r1,3768:19299973,26281871:4578808,568825,115847 -k1,3768:14721165,26281871:-4578808 -) -(1,3768:14721165,26281871:4578808,452978,115847 -k1,3768:14721165,26281871:3277 -h1,3768:19296696,26281871:0,411205,112570 -) -k1,3768:19615720,26281871:142077 -k1,3768:20113657,26281871:142077 -k1,3768:22875863,26281871:142077 -k1,3768:25169486,26281871:142076 -(1,3768:25169486,26281871:0,452978,115847 -r1,3768:30100006,26281871:4930520,568825,115847 -k1,3768:25169486,26281871:-4930520 -) -(1,3768:25169486,26281871:4930520,452978,115847 -k1,3768:25169486,26281871:3277 -h1,3768:30096729,26281871:0,411205,112570 -) -k1,3768:30242083,26281871:142077 -k1,3768:32583029,26281871:0 -) -(1,3769:6630773,27123359:25952256,513147,134348 -g1,3768:7185862,27123359 -g1,3768:8378617,27123359 -g1,3768:9237138,27123359 -g1,3768:11449633,27123359 -g1,3768:12994972,27123359 -g1,3768:14883719,27123359 -(1,3768:14883719,27123359:0,452978,115847 -r1,3768:20517662,27123359:5633943,568825,115847 -k1,3768:14883719,27123359:-5633943 -) -(1,3768:14883719,27123359:5633943,452978,115847 -k1,3768:14883719,27123359:3277 -h1,3768:20514385,27123359:0,411205,112570 -) -g1,3768:20716891,27123359 -g1,3768:21447617,27123359 -g1,3768:22417549,27123359 -k1,3769:32583029,27123359:8384867 -g1,3769:32583029,27123359 -) -v1,3771:6630773,28171936:0,393216,0 -(1,3820:6630773,45510161:25952256,17731441,196608 -g1,3820:6630773,45510161 -g1,3820:6630773,45510161 -g1,3820:6434165,45510161 -(1,3820:6434165,45510161:0,17731441,196608 -r1,3820:32779637,45510161:26345472,17928049,196608 -k1,3820:6434165,45510161:-26345472 -) -(1,3820:6434165,45510161:26345472,17731441,196608 -[1,3820:6630773,45510161:25952256,17534833,0 -(1,3773:6630773,28385846:25952256,410518,31456 -(1,3772:6630773,28385846:0,0,0 -g1,3772:6630773,28385846 -g1,3772:6630773,28385846 -g1,3772:6303093,28385846 -(1,3772:6303093,28385846:0,0,0 -) -g1,3772:6630773,28385846 -) -h1,3773:9159939,28385846:0,0,0 -k1,3773:32583029,28385846:23423090 -g1,3773:32583029,28385846 -) -(1,3777:6630773,29117560:25952256,404226,76021 -(1,3775:6630773,29117560:0,0,0 -g1,3775:6630773,29117560 -g1,3775:6630773,29117560 -g1,3775:6303093,29117560 -(1,3775:6303093,29117560:0,0,0 -) -g1,3775:6630773,29117560 -) -g1,3777:7579210,29117560 -g1,3777:8843793,29117560 -g1,3777:9476085,29117560 -g1,3777:10108377,29117560 -g1,3777:10740669,29117560 -g1,3777:11372961,29117560 -g1,3777:12005253,29117560 -h1,3777:12321399,29117560:0,0,0 -k1,3777:32583029,29117560:20261630 -g1,3777:32583029,29117560 -) -(1,3779:6630773,30439098:25952256,404226,76021 -(1,3778:6630773,30439098:0,0,0 -g1,3778:6630773,30439098 -g1,3778:6630773,30439098 -g1,3778:6303093,30439098 -(1,3778:6303093,30439098:0,0,0 -) -g1,3778:6630773,30439098 -) -h1,3779:10740666,30439098:0,0,0 -k1,3779:32583030,30439098:21842364 -g1,3779:32583030,30439098 -) -(1,3783:6630773,31170812:25952256,404226,76021 -(1,3781:6630773,31170812:0,0,0 -g1,3781:6630773,31170812 -g1,3781:6630773,31170812 -g1,3781:6303093,31170812 -(1,3781:6303093,31170812:0,0,0 -) -g1,3781:6630773,31170812 -) -g1,3783:7579210,31170812 -g1,3783:8843793,31170812 -g1,3783:9476085,31170812 -g1,3783:10108377,31170812 -g1,3783:10740669,31170812 -g1,3783:11372961,31170812 -g1,3783:12005253,31170812 -h1,3783:12321399,31170812:0,0,0 -k1,3783:32583029,31170812:20261630 -g1,3783:32583029,31170812 -) -(1,3785:6630773,32492350:25952256,404226,76021 -(1,3784:6630773,32492350:0,0,0 -g1,3784:6630773,32492350 -g1,3784:6630773,32492350 -g1,3784:6303093,32492350 -(1,3784:6303093,32492350:0,0,0 -) -g1,3784:6630773,32492350 -) -h1,3785:10108375,32492350:0,0,0 -k1,3785:32583029,32492350:22474654 -g1,3785:32583029,32492350 -) -(1,3789:6630773,33224064:25952256,404226,76021 -(1,3787:6630773,33224064:0,0,0 -g1,3787:6630773,33224064 -g1,3787:6630773,33224064 -g1,3787:6303093,33224064 -(1,3787:6303093,33224064:0,0,0 -) -g1,3787:6630773,33224064 -) -g1,3789:7579210,33224064 -g1,3789:8843793,33224064 -g1,3789:9476085,33224064 -g1,3789:10108377,33224064 -g1,3789:10740669,33224064 -g1,3789:11372961,33224064 -g1,3789:12005253,33224064 -h1,3789:12321399,33224064:0,0,0 -k1,3789:32583029,33224064:20261630 -g1,3789:32583029,33224064 -) -(1,3791:6630773,34545602:25952256,404226,76021 -(1,3790:6630773,34545602:0,0,0 -g1,3790:6630773,34545602 -g1,3790:6630773,34545602 -g1,3790:6303093,34545602 -(1,3790:6303093,34545602:0,0,0 -) -g1,3790:6630773,34545602 -) -h1,3791:10108376,34545602:0,0,0 -k1,3791:32583028,34545602:22474652 -g1,3791:32583028,34545602 -) -(1,3796:6630773,35277316:25952256,410518,31456 -(1,3793:6630773,35277316:0,0,0 -g1,3793:6630773,35277316 -g1,3793:6630773,35277316 -g1,3793:6303093,35277316 -(1,3793:6303093,35277316:0,0,0 -) -g1,3793:6630773,35277316 -) -g1,3796:7579210,35277316 -h1,3796:8211501,35277316:0,0,0 -k1,3796:32583029,35277316:24371528 -g1,3796:32583029,35277316 -) -(1,3796:6630773,35943494:25952256,404226,76021 -h1,3796:6630773,35943494:0,0,0 -g1,3796:7579210,35943494 -g1,3796:8843793,35943494 -g1,3796:9476085,35943494 -g1,3796:10108377,35943494 -g1,3796:10740669,35943494 -g1,3796:11372961,35943494 -g1,3796:12005253,35943494 -h1,3796:12321399,35943494:0,0,0 -k1,3796:32583029,35943494:20261630 -g1,3796:32583029,35943494 -) -(1,3798:6630773,37265032:25952256,404226,76021 -(1,3797:6630773,37265032:0,0,0 -g1,3797:6630773,37265032 -g1,3797:6630773,37265032 -g1,3797:6303093,37265032 -(1,3797:6303093,37265032:0,0,0 -) -g1,3797:6630773,37265032 -) -h1,3798:9476085,37265032:0,0,0 -k1,3798:32583029,37265032:23106944 -g1,3798:32583029,37265032 -) -(1,3803:6630773,37996746:25952256,410518,31456 -(1,3800:6630773,37996746:0,0,0 -g1,3800:6630773,37996746 -g1,3800:6630773,37996746 -g1,3800:6303093,37996746 -(1,3800:6303093,37996746:0,0,0 -) -g1,3800:6630773,37996746 -) -g1,3803:7579210,37996746 -h1,3803:8211501,37996746:0,0,0 -k1,3803:32583029,37996746:24371528 -g1,3803:32583029,37996746 -) -(1,3803:6630773,38662924:25952256,404226,76021 -h1,3803:6630773,38662924:0,0,0 -g1,3803:7579210,38662924 -g1,3803:8843793,38662924 -g1,3803:9476085,38662924 -g1,3803:10108377,38662924 -g1,3803:10740669,38662924 -g1,3803:11372961,38662924 -g1,3803:12005253,38662924 -h1,3803:12321399,38662924:0,0,0 -k1,3803:32583029,38662924:20261630 -g1,3803:32583029,38662924 -) -(1,3805:6630773,39984462:25952256,404226,82312 -(1,3804:6630773,39984462:0,0,0 -g1,3804:6630773,39984462 -g1,3804:6630773,39984462 -g1,3804:6303093,39984462 -(1,3804:6303093,39984462:0,0,0 -) -g1,3804:6630773,39984462 -) -k1,3805:6630773,39984462:0 -k1,3805:6630773,39984462:0 -h1,3805:11056814,39984462:0,0,0 -k1,3805:32583030,39984462:21526216 -g1,3805:32583030,39984462 -) -(1,3813:6630773,40716176:25952256,410518,31456 -(1,3807:6630773,40716176:0,0,0 -g1,3807:6630773,40716176 -g1,3807:6630773,40716176 -g1,3807:6303093,40716176 -(1,3807:6303093,40716176:0,0,0 -) -g1,3807:6630773,40716176 -) -g1,3813:7579210,40716176 -h1,3813:8211501,40716176:0,0,0 -k1,3813:32583029,40716176:24371528 -g1,3813:32583029,40716176 -) -(1,3813:6630773,41382354:25952256,404226,76021 -h1,3813:6630773,41382354:0,0,0 -g1,3813:7579210,41382354 -g1,3813:8843793,41382354 -g1,3813:9476085,41382354 -g1,3813:10108377,41382354 -g1,3813:10740669,41382354 -g1,3813:11372961,41382354 -g1,3813:12005253,41382354 -h1,3813:12321399,41382354:0,0,0 -k1,3813:32583029,41382354:20261630 -g1,3813:32583029,41382354 -) -(1,3813:6630773,42048532:25952256,379060,0 -h1,3813:6630773,42048532:0,0,0 -h1,3813:7263064,42048532:0,0,0 -k1,3813:32583028,42048532:25319964 -g1,3813:32583028,42048532 -) -(1,3813:6630773,42714710:25952256,410518,31456 -h1,3813:6630773,42714710:0,0,0 -g1,3813:7579210,42714710 -h1,3813:8211501,42714710:0,0,0 -k1,3813:32583029,42714710:24371528 -g1,3813:32583029,42714710 -) -(1,3813:6630773,43380888:25952256,404226,76021 -h1,3813:6630773,43380888:0,0,0 -g1,3813:7579210,43380888 -g1,3813:8843793,43380888 -g1,3813:9159939,43380888 -g1,3813:10740668,43380888 -h1,3813:12321396,43380888:0,0,0 -k1,3813:32583028,43380888:20261632 -g1,3813:32583028,43380888 -) -(1,3815:6630773,44702426:25952256,404226,101187 -(1,3814:6630773,44702426:0,0,0 -g1,3814:6630773,44702426 -g1,3814:6630773,44702426 -g1,3814:6303093,44702426 -(1,3814:6303093,44702426:0,0,0 -) -g1,3814:6630773,44702426 -) -k1,3815:6630773,44702426:0 -k1,3815:6630773,44702426:0 -h1,3815:13269834,44702426:0,0,0 -k1,3815:32583030,44702426:19313196 -g1,3815:32583030,44702426 -) -(1,3819:6630773,45434140:25952256,404226,76021 -(1,3817:6630773,45434140:0,0,0 -g1,3817:6630773,45434140 -g1,3817:6630773,45434140 -g1,3817:6303093,45434140 -(1,3817:6303093,45434140:0,0,0 -) -g1,3817:6630773,45434140 -) -g1,3819:7579210,45434140 -g1,3819:8843793,45434140 -h1,3819:9159939,45434140:0,0,0 -k1,3819:32583029,45434140:23423090 -g1,3819:32583029,45434140 -) -] -) -g1,3820:32583029,45510161 -g1,3820:6630773,45510161 -g1,3820:6630773,45510161 -g1,3820:32583029,45510161 -g1,3820:32583029,45510161 -) -h1,3820:6630773,45706769:0,0,0 -] -(1,3824:32583029,45706769:0,0,0 -g1,3824:32583029,45706769 -) -) -] -(1,3824:6630773,47279633:25952256,0,0 -h1,3824:6630773,47279633:25952256,0,0 -) -] -h1,3824:4262630,4025873:0,0,0 +k1,3830:3078556,49800853:-34777008 +) +] +g1,3830:6630773,4812305 +k1,3830:19515153,4812305:12087462 +g1,3830:20901894,4812305 +g1,3830:21550700,4812305 +g1,3830:24864855,4812305 +g1,3830:27600327,4812305 +g1,3830:29010006,4812305 +) +) +] +[1,3830:6630773,45706769:25952256,40108032,0 +(1,3830:6630773,45706769:25952256,40108032,0 +(1,3830:6630773,45706769:0,0,0 +g1,3830:6630773,45706769 +) +[1,3830:6630773,45706769:25952256,40108032,0 +(1,3750:6630773,6254097:25952256,32768,229376 +(1,3750:6630773,6254097:0,32768,229376 +(1,3750:6630773,6254097:5505024,32768,229376 +r1,3750:12135797,6254097:5505024,262144,229376 +) +k1,3750:6630773,6254097:-5505024 +) +(1,3750:6630773,6254097:25952256,32768,0 +r1,3750:32583029,6254097:25952256,32768,0 +) +) +(1,3750:6630773,7858425:25952256,606339,14155 +(1,3750:6630773,7858425:2464678,582746,14155 +g1,3750:6630773,7858425 +g1,3750:9095451,7858425 +) +k1,3750:32583029,7858425:21642608 +g1,3750:32583029,7858425 +) +(1,3753:6630773,9093129:25952256,513147,134348 +k1,3752:8367665,9093129:135847 +k1,3752:10095381,9093129:135846 +k1,3752:13417588,9093129:135847 +k1,3752:14204863,9093129:135847 +k1,3752:16042680,9093129:135847 +k1,3752:19595573,9093129:135846 +k1,3752:20436587,9093129:135847 +k1,3752:21188472,9093129:135847 +k1,3752:21912831,9093129:135846 +k1,3752:23333184,9093129:135847 +k1,3752:24849219,9093129:135847 +k1,3752:26089348,9093129:135847 +k1,3752:26972960,9093129:135846 +k1,3752:31955194,9093129:135847 +k1,3753:32583029,9093129:0 +) +(1,3753:6630773,9934617:25952256,513147,134348 +k1,3752:7399557,9934617:180271 +k1,3752:8598912,9934617:180270 +k1,3752:11732891,9934617:180271 +k1,3752:12572454,9934617:180271 +k1,3752:13108585,9934617:180271 +k1,3752:14282381,9934617:180270 +k1,3752:15566934,9934617:180271 +k1,3752:16494971,9934617:180271 +k1,3752:20174208,9934617:180270 +k1,3752:21040641,9934617:180271 +k1,3752:24196247,9934617:180271 +k1,3752:24732378,9934617:180271 +k1,3752:28026263,9934617:180270 +k1,3752:29397979,9934617:180271 +k1,3752:32583029,9934617:0 +) +(1,3753:6630773,10776105:25952256,513147,134348 +k1,3752:9475764,10776105:286465 +k1,3752:12943347,10776105:286465 +k1,3752:15830281,10776105:286465 +k1,3752:17135831,10776105:286465 +k1,3752:19075768,10776105:286464 +k1,3752:20048395,10776105:286465 +k1,3752:22816708,10776105:286465 +k1,3752:26037875,10776105:286465 +k1,3752:29629321,10776105:286465 +k1,3752:32583029,10776105:0 +) +(1,3753:6630773,11617593:25952256,513147,134348 +k1,3752:7525843,11617593:235778 +k1,3752:8117481,11617593:235778 +k1,3752:9346786,11617593:235779 +k1,3752:10574124,11617593:235778 +k1,3752:12504663,11617593:235778 +k1,3752:14982428,11617593:235778 +k1,3752:16409652,11617593:235779 +k1,3752:19500178,11617593:235778 +k1,3752:22667381,11617593:235778 +k1,3752:25461685,11617593:235778 +k1,3752:27394191,11617593:235779 +k1,3752:29871956,11617593:235778 +k1,3752:31591469,11617593:235778 +k1,3752:32583029,11617593:0 +) +(1,3753:6630773,12459081:25952256,513147,134348 +g1,3752:9180123,12459081 +g1,3752:11114745,12459081 +g1,3752:14009470,12459081 +(1,3752:14009470,12459081:0,452978,115847 +r1,3752:16126295,12459081:2116825,568825,115847 +k1,3752:14009470,12459081:-2116825 +) +(1,3752:14009470,12459081:2116825,452978,115847 +k1,3752:14009470,12459081:3277 +h1,3752:16123018,12459081:0,411205,112570 +) +k1,3753:32583029,12459081:16283064 +g1,3753:32583029,12459081 +) +v1,3755:6630773,13507658:0,393216,0 +(1,3770:6630773,19852435:25952256,6737993,196608 +g1,3770:6630773,19852435 +g1,3770:6630773,19852435 +g1,3770:6434165,19852435 +(1,3770:6434165,19852435:0,6737993,196608 +r1,3770:32779637,19852435:26345472,6934601,196608 +k1,3770:6434165,19852435:-26345472 +) +(1,3770:6434165,19852435:26345472,6737993,196608 +[1,3770:6630773,19852435:25952256,6541385,0 +(1,3757:6630773,13715276:25952256,404226,101187 +(1,3756:6630773,13715276:0,0,0 +g1,3756:6630773,13715276 +g1,3756:6630773,13715276 +g1,3756:6303093,13715276 +(1,3756:6303093,13715276:0,0,0 +) +g1,3756:6630773,13715276 +) +g1,3757:8843793,13715276 +g1,3757:9792231,13715276 +g1,3757:12005252,13715276 +g1,3757:12637544,13715276 +g1,3757:14218274,13715276 +g1,3757:14850566,13715276 +g1,3757:15482858,13715276 +g1,3757:17063587,13715276 +g1,3757:17695879,13715276 +g1,3757:18328171,13715276 +g1,3757:20857338,13715276 +h1,3757:23070357,13715276:0,0,0 +k1,3757:32583029,13715276:9512672 +g1,3757:32583029,13715276 +) +(1,3758:6630773,14381454:25952256,404226,6290 +h1,3758:6630773,14381454:0,0,0 +h1,3758:8527647,14381454:0,0,0 +k1,3758:32583029,14381454:24055382 +g1,3758:32583029,14381454 +) +(1,3769:6630773,15113168:25952256,410518,31456 +(1,3760:6630773,15113168:0,0,0 +g1,3760:6630773,15113168 +g1,3760:6630773,15113168 +g1,3760:6303093,15113168 +(1,3760:6303093,15113168:0,0,0 +) +g1,3760:6630773,15113168 +) +g1,3769:7579210,15113168 +h1,3769:8211501,15113168:0,0,0 +k1,3769:32583029,15113168:24371528 +g1,3769:32583029,15113168 +) +(1,3769:6630773,15779346:25952256,404226,76021 +h1,3769:6630773,15779346:0,0,0 +g1,3769:7579210,15779346 +g1,3769:8843793,15779346 +g1,3769:9476085,15779346 +g1,3769:10108377,15779346 +g1,3769:10740669,15779346 +g1,3769:11372961,15779346 +g1,3769:12005253,15779346 +h1,3769:12321399,15779346:0,0,0 +k1,3769:32583029,15779346:20261630 +g1,3769:32583029,15779346 +) +(1,3769:6630773,16445524:25952256,379060,0 +h1,3769:6630773,16445524:0,0,0 +h1,3769:7263064,16445524:0,0,0 +k1,3769:32583028,16445524:25319964 +g1,3769:32583028,16445524 +) +(1,3769:6630773,17111702:25952256,410518,101187 +h1,3769:6630773,17111702:0,0,0 +g1,3769:7579210,17111702 +h1,3769:8211501,17111702:0,0,0 +k1,3769:32583029,17111702:24371528 +g1,3769:32583029,17111702 +) +(1,3769:6630773,17777880:25952256,404226,76021 +h1,3769:6630773,17777880:0,0,0 +g1,3769:7579210,17777880 +g1,3769:8843793,17777880 +h1,3769:9792230,17777880:0,0,0 +k1,3769:32583030,17777880:22790800 +g1,3769:32583030,17777880 +) +(1,3769:6630773,18444058:25952256,379060,0 +h1,3769:6630773,18444058:0,0,0 +h1,3769:7263064,18444058:0,0,0 +k1,3769:32583028,18444058:25319964 +g1,3769:32583028,18444058 +) +(1,3769:6630773,19110236:25952256,410518,31456 +h1,3769:6630773,19110236:0,0,0 +g1,3769:7579210,19110236 +h1,3769:8211501,19110236:0,0,0 +k1,3769:32583029,19110236:24371528 +g1,3769:32583029,19110236 +) +(1,3769:6630773,19776414:25952256,404226,76021 +h1,3769:6630773,19776414:0,0,0 +g1,3769:7579210,19776414 +g1,3769:8843793,19776414 +g1,3769:9159939,19776414 +g1,3769:10740668,19776414 +h1,3769:12321396,19776414:0,0,0 +k1,3769:32583028,19776414:20261632 +g1,3769:32583028,19776414 +) +] +) +g1,3770:32583029,19852435 +g1,3770:6630773,19852435 +g1,3770:6630773,19852435 +g1,3770:32583029,19852435 +g1,3770:32583029,19852435 +) +h1,3770:6630773,20049043:0,0,0 +(1,3773:6630773,22522703:25952256,555811,147783 +(1,3773:6630773,22522703:2899444,534184,12975 +g1,3773:6630773,22522703 +g1,3773:9530217,22522703 +) +g1,3773:12708648,22522703 +g1,3773:16612300,22522703 +g1,3773:18179528,22522703 +k1,3773:32583029,22522703:10611588 +g1,3773:32583029,22522703 +) +(1,3775:6630773,23757407:25952256,513147,134348 +k1,3774:8588895,23757407:166368 +k1,3774:8588895,23757407:0 +k1,3774:8755263,23757407:166368 +k1,3774:11104634,23757407:166367 +k1,3774:13412063,23757407:166368 +k1,3774:16283757,23757407:166368 +k1,3774:17397776,23757407:166368 +k1,3774:20303548,23757407:166367 +k1,3774:20825776,23757407:166368 +k1,3774:21985670,23757407:166368 +k1,3774:24686315,23757407:166368 +k1,3774:25871768,23757407:166368 +k1,3774:28577000,23757407:166367 +k1,3774:30781538,23757407:166368 +k1,3774:31563944,23757407:166368 +k1,3774:32583029,23757407:0 +) +(1,3775:6630773,24598895:25952256,505283,134348 +k1,3774:8027634,24598895:229665 +k1,3774:8873337,24598895:229665 +k1,3774:9891400,24598895:229665 +k1,3774:12556383,24598895:229665 +k1,3774:14742298,24598895:229665 +k1,3774:15599798,24598895:229665 +k1,3774:16848549,24598895:229666 +k1,3774:19739631,24598895:229665 +k1,3774:21998291,24598895:229665 +(1,3774:21998291,24598895:0,452978,115847 +r1,3774:26577099,24598895:4578808,568825,115847 +k1,3774:21998291,24598895:-4578808 +) +(1,3774:21998291,24598895:4578808,452978,115847 +k1,3774:21998291,24598895:3277 +h1,3774:26573822,24598895:0,411205,112570 +) +k1,3774:26806764,24598895:229665 +k1,3774:29377375,24598895:229665 +k1,3774:29962900,24598895:229665 +k1,3774:32583029,24598895:0 +) +(1,3775:6630773,25440383:25952256,505283,134348 +k1,3774:9047559,25440383:265239 +k1,3774:11002315,25440383:265238 +(1,3774:11002315,25440383:0,452978,115847 +r1,3774:14174275,25440383:3171960,568825,115847 +k1,3774:11002315,25440383:-3171960 +) +(1,3774:11002315,25440383:3171960,452978,115847 +k1,3774:11002315,25440383:3277 +h1,3774:14170998,25440383:0,411205,112570 +) +k1,3774:14439514,25440383:265239 +k1,3774:17045699,25440383:265239 +k1,3774:17666798,25440383:265239 +k1,3774:18925562,25440383:265238 +k1,3774:22552798,25440383:265239 +k1,3774:23837122,25440383:265239 +k1,3774:26722490,25440383:265239 +k1,3774:28965605,25440383:265238 +(1,3774:28965605,25440383:0,414482,115847 +r1,3774:29323871,25440383:358266,530329,115847 +k1,3774:28965605,25440383:-358266 +) +(1,3774:28965605,25440383:358266,414482,115847 +k1,3774:28965605,25440383:3277 +h1,3774:29320594,25440383:0,411205,112570 +) +k1,3774:29762780,25440383:265239 +(1,3774:29762780,25440383:0,459977,115847 +r1,3774:32583029,25440383:2820249,575824,115847 +k1,3774:29762780,25440383:-2820249 +) +(1,3774:29762780,25440383:2820249,459977,115847 +k1,3774:29762780,25440383:3277 +h1,3774:32579752,25440383:0,411205,112570 +) +k1,3774:32583029,25440383:0 +) +(1,3775:6630773,26281871:25952256,505283,115847 +k1,3774:9113796,26281871:142077 +k1,3774:10274957,26281871:142076 +k1,3774:12070507,26281871:142077 +k1,3774:13892927,26281871:142077 +k1,3774:14721165,26281871:142076 +(1,3774:14721165,26281871:0,452978,115847 +r1,3774:19299973,26281871:4578808,568825,115847 +k1,3774:14721165,26281871:-4578808 +) +(1,3774:14721165,26281871:4578808,452978,115847 +k1,3774:14721165,26281871:3277 +h1,3774:19296696,26281871:0,411205,112570 +) +k1,3774:19615720,26281871:142077 +k1,3774:20113657,26281871:142077 +k1,3774:22875863,26281871:142077 +k1,3774:25169486,26281871:142076 +(1,3774:25169486,26281871:0,452978,115847 +r1,3774:30100006,26281871:4930520,568825,115847 +k1,3774:25169486,26281871:-4930520 +) +(1,3774:25169486,26281871:4930520,452978,115847 +k1,3774:25169486,26281871:3277 +h1,3774:30096729,26281871:0,411205,112570 +) +k1,3774:30242083,26281871:142077 +k1,3774:32583029,26281871:0 +) +(1,3775:6630773,27123359:25952256,513147,134348 +g1,3774:7185862,27123359 +g1,3774:8378617,27123359 +g1,3774:9237138,27123359 +g1,3774:11449633,27123359 +g1,3774:12994972,27123359 +g1,3774:14883719,27123359 +(1,3774:14883719,27123359:0,452978,115847 +r1,3774:20517662,27123359:5633943,568825,115847 +k1,3774:14883719,27123359:-5633943 +) +(1,3774:14883719,27123359:5633943,452978,115847 +k1,3774:14883719,27123359:3277 +h1,3774:20514385,27123359:0,411205,112570 +) +g1,3774:20716891,27123359 +g1,3774:21447617,27123359 +g1,3774:22417549,27123359 +k1,3775:32583029,27123359:8384867 +g1,3775:32583029,27123359 +) +v1,3777:6630773,28171936:0,393216,0 +(1,3826:6630773,45510161:25952256,17731441,196608 +g1,3826:6630773,45510161 +g1,3826:6630773,45510161 +g1,3826:6434165,45510161 +(1,3826:6434165,45510161:0,17731441,196608 +r1,3826:32779637,45510161:26345472,17928049,196608 +k1,3826:6434165,45510161:-26345472 +) +(1,3826:6434165,45510161:26345472,17731441,196608 +[1,3826:6630773,45510161:25952256,17534833,0 +(1,3779:6630773,28385846:25952256,410518,31456 +(1,3778:6630773,28385846:0,0,0 +g1,3778:6630773,28385846 +g1,3778:6630773,28385846 +g1,3778:6303093,28385846 +(1,3778:6303093,28385846:0,0,0 +) +g1,3778:6630773,28385846 +) +h1,3779:9159939,28385846:0,0,0 +k1,3779:32583029,28385846:23423090 +g1,3779:32583029,28385846 +) +(1,3783:6630773,29117560:25952256,404226,76021 +(1,3781:6630773,29117560:0,0,0 +g1,3781:6630773,29117560 +g1,3781:6630773,29117560 +g1,3781:6303093,29117560 +(1,3781:6303093,29117560:0,0,0 +) +g1,3781:6630773,29117560 +) +g1,3783:7579210,29117560 +g1,3783:8843793,29117560 +g1,3783:9476085,29117560 +g1,3783:10108377,29117560 +g1,3783:10740669,29117560 +g1,3783:11372961,29117560 +g1,3783:12005253,29117560 +h1,3783:12321399,29117560:0,0,0 +k1,3783:32583029,29117560:20261630 +g1,3783:32583029,29117560 +) +(1,3785:6630773,30439098:25952256,404226,76021 +(1,3784:6630773,30439098:0,0,0 +g1,3784:6630773,30439098 +g1,3784:6630773,30439098 +g1,3784:6303093,30439098 +(1,3784:6303093,30439098:0,0,0 +) +g1,3784:6630773,30439098 +) +h1,3785:10740666,30439098:0,0,0 +k1,3785:32583030,30439098:21842364 +g1,3785:32583030,30439098 +) +(1,3789:6630773,31170812:25952256,404226,76021 +(1,3787:6630773,31170812:0,0,0 +g1,3787:6630773,31170812 +g1,3787:6630773,31170812 +g1,3787:6303093,31170812 +(1,3787:6303093,31170812:0,0,0 +) +g1,3787:6630773,31170812 +) +g1,3789:7579210,31170812 +g1,3789:8843793,31170812 +g1,3789:9476085,31170812 +g1,3789:10108377,31170812 +g1,3789:10740669,31170812 +g1,3789:11372961,31170812 +g1,3789:12005253,31170812 +h1,3789:12321399,31170812:0,0,0 +k1,3789:32583029,31170812:20261630 +g1,3789:32583029,31170812 +) +(1,3791:6630773,32492350:25952256,404226,76021 +(1,3790:6630773,32492350:0,0,0 +g1,3790:6630773,32492350 +g1,3790:6630773,32492350 +g1,3790:6303093,32492350 +(1,3790:6303093,32492350:0,0,0 +) +g1,3790:6630773,32492350 +) +h1,3791:10108375,32492350:0,0,0 +k1,3791:32583029,32492350:22474654 +g1,3791:32583029,32492350 +) +(1,3795:6630773,33224064:25952256,404226,76021 +(1,3793:6630773,33224064:0,0,0 +g1,3793:6630773,33224064 +g1,3793:6630773,33224064 +g1,3793:6303093,33224064 +(1,3793:6303093,33224064:0,0,0 +) +g1,3793:6630773,33224064 +) +g1,3795:7579210,33224064 +g1,3795:8843793,33224064 +g1,3795:9476085,33224064 +g1,3795:10108377,33224064 +g1,3795:10740669,33224064 +g1,3795:11372961,33224064 +g1,3795:12005253,33224064 +h1,3795:12321399,33224064:0,0,0 +k1,3795:32583029,33224064:20261630 +g1,3795:32583029,33224064 +) +(1,3797:6630773,34545602:25952256,404226,76021 +(1,3796:6630773,34545602:0,0,0 +g1,3796:6630773,34545602 +g1,3796:6630773,34545602 +g1,3796:6303093,34545602 +(1,3796:6303093,34545602:0,0,0 +) +g1,3796:6630773,34545602 +) +h1,3797:10108376,34545602:0,0,0 +k1,3797:32583028,34545602:22474652 +g1,3797:32583028,34545602 +) +(1,3802:6630773,35277316:25952256,410518,31456 +(1,3799:6630773,35277316:0,0,0 +g1,3799:6630773,35277316 +g1,3799:6630773,35277316 +g1,3799:6303093,35277316 +(1,3799:6303093,35277316:0,0,0 +) +g1,3799:6630773,35277316 +) +g1,3802:7579210,35277316 +h1,3802:8211501,35277316:0,0,0 +k1,3802:32583029,35277316:24371528 +g1,3802:32583029,35277316 +) +(1,3802:6630773,35943494:25952256,404226,76021 +h1,3802:6630773,35943494:0,0,0 +g1,3802:7579210,35943494 +g1,3802:8843793,35943494 +g1,3802:9476085,35943494 +g1,3802:10108377,35943494 +g1,3802:10740669,35943494 +g1,3802:11372961,35943494 +g1,3802:12005253,35943494 +h1,3802:12321399,35943494:0,0,0 +k1,3802:32583029,35943494:20261630 +g1,3802:32583029,35943494 +) +(1,3804:6630773,37265032:25952256,404226,76021 +(1,3803:6630773,37265032:0,0,0 +g1,3803:6630773,37265032 +g1,3803:6630773,37265032 +g1,3803:6303093,37265032 +(1,3803:6303093,37265032:0,0,0 +) +g1,3803:6630773,37265032 +) +h1,3804:9476085,37265032:0,0,0 +k1,3804:32583029,37265032:23106944 +g1,3804:32583029,37265032 +) +(1,3809:6630773,37996746:25952256,410518,31456 +(1,3806:6630773,37996746:0,0,0 +g1,3806:6630773,37996746 +g1,3806:6630773,37996746 +g1,3806:6303093,37996746 +(1,3806:6303093,37996746:0,0,0 +) +g1,3806:6630773,37996746 +) +g1,3809:7579210,37996746 +h1,3809:8211501,37996746:0,0,0 +k1,3809:32583029,37996746:24371528 +g1,3809:32583029,37996746 +) +(1,3809:6630773,38662924:25952256,404226,76021 +h1,3809:6630773,38662924:0,0,0 +g1,3809:7579210,38662924 +g1,3809:8843793,38662924 +g1,3809:9476085,38662924 +g1,3809:10108377,38662924 +g1,3809:10740669,38662924 +g1,3809:11372961,38662924 +g1,3809:12005253,38662924 +h1,3809:12321399,38662924:0,0,0 +k1,3809:32583029,38662924:20261630 +g1,3809:32583029,38662924 +) +(1,3811:6630773,39984462:25952256,404226,82312 +(1,3810:6630773,39984462:0,0,0 +g1,3810:6630773,39984462 +g1,3810:6630773,39984462 +g1,3810:6303093,39984462 +(1,3810:6303093,39984462:0,0,0 +) +g1,3810:6630773,39984462 +) +k1,3811:6630773,39984462:0 +k1,3811:6630773,39984462:0 +h1,3811:11056814,39984462:0,0,0 +k1,3811:32583030,39984462:21526216 +g1,3811:32583030,39984462 +) +(1,3819:6630773,40716176:25952256,410518,31456 +(1,3813:6630773,40716176:0,0,0 +g1,3813:6630773,40716176 +g1,3813:6630773,40716176 +g1,3813:6303093,40716176 +(1,3813:6303093,40716176:0,0,0 +) +g1,3813:6630773,40716176 +) +g1,3819:7579210,40716176 +h1,3819:8211501,40716176:0,0,0 +k1,3819:32583029,40716176:24371528 +g1,3819:32583029,40716176 +) +(1,3819:6630773,41382354:25952256,404226,76021 +h1,3819:6630773,41382354:0,0,0 +g1,3819:7579210,41382354 +g1,3819:8843793,41382354 +g1,3819:9476085,41382354 +g1,3819:10108377,41382354 +g1,3819:10740669,41382354 +g1,3819:11372961,41382354 +g1,3819:12005253,41382354 +h1,3819:12321399,41382354:0,0,0 +k1,3819:32583029,41382354:20261630 +g1,3819:32583029,41382354 +) +(1,3819:6630773,42048532:25952256,379060,0 +h1,3819:6630773,42048532:0,0,0 +h1,3819:7263064,42048532:0,0,0 +k1,3819:32583028,42048532:25319964 +g1,3819:32583028,42048532 +) +(1,3819:6630773,42714710:25952256,410518,31456 +h1,3819:6630773,42714710:0,0,0 +g1,3819:7579210,42714710 +h1,3819:8211501,42714710:0,0,0 +k1,3819:32583029,42714710:24371528 +g1,3819:32583029,42714710 +) +(1,3819:6630773,43380888:25952256,404226,76021 +h1,3819:6630773,43380888:0,0,0 +g1,3819:7579210,43380888 +g1,3819:8843793,43380888 +g1,3819:9159939,43380888 +g1,3819:10740668,43380888 +h1,3819:12321396,43380888:0,0,0 +k1,3819:32583028,43380888:20261632 +g1,3819:32583028,43380888 +) +(1,3821:6630773,44702426:25952256,404226,101187 +(1,3820:6630773,44702426:0,0,0 +g1,3820:6630773,44702426 +g1,3820:6630773,44702426 +g1,3820:6303093,44702426 +(1,3820:6303093,44702426:0,0,0 +) +g1,3820:6630773,44702426 +) +k1,3821:6630773,44702426:0 +k1,3821:6630773,44702426:0 +h1,3821:13269834,44702426:0,0,0 +k1,3821:32583030,44702426:19313196 +g1,3821:32583030,44702426 +) +(1,3825:6630773,45434140:25952256,404226,76021 +(1,3823:6630773,45434140:0,0,0 +g1,3823:6630773,45434140 +g1,3823:6630773,45434140 +g1,3823:6303093,45434140 +(1,3823:6303093,45434140:0,0,0 +) +g1,3823:6630773,45434140 +) +g1,3825:7579210,45434140 +g1,3825:8843793,45434140 +h1,3825:9159939,45434140:0,0,0 +k1,3825:32583029,45434140:23423090 +g1,3825:32583029,45434140 +) +] +) +g1,3826:32583029,45510161 +g1,3826:6630773,45510161 +g1,3826:6630773,45510161 +g1,3826:32583029,45510161 +g1,3826:32583029,45510161 +) +h1,3826:6630773,45706769:0,0,0 +] +(1,3830:32583029,45706769:0,0,0 +g1,3830:32583029,45706769 +) +) +] +(1,3830:6630773,47279633:25952256,0,0 +h1,3830:6630773,47279633:25952256,0,0 +) +] +h1,3830:4262630,4025873:0,0,0 ] !21132 }73 -Input:476:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:477:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:478:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:479:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:480:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {74 -[1,3894:4262630,47279633:28320399,43253760,0 -(1,3894:4262630,4025873:0,0,0 -[1,3894:-473657,4025873:25952256,0,0 -(1,3894:-473657,-710414:25952256,0,0 -h1,3894:-473657,-710414:0,0,0 -(1,3894:-473657,-710414:0,0,0 -(1,3894:-473657,-710414:0,0,0 -g1,3894:-473657,-710414 -(1,3894:-473657,-710414:65781,0,65781 -g1,3894:-407876,-710414 -[1,3894:-407876,-644633:0,0,0 +[1,3900:4262630,47279633:28320399,43253760,0 +(1,3900:4262630,4025873:0,0,0 +[1,3900:-473657,4025873:25952256,0,0 +(1,3900:-473657,-710414:25952256,0,0 +h1,3900:-473657,-710414:0,0,0 +(1,3900:-473657,-710414:0,0,0 +(1,3900:-473657,-710414:0,0,0 +g1,3900:-473657,-710414 +(1,3900:-473657,-710414:65781,0,65781 +g1,3900:-407876,-710414 +[1,3900:-407876,-644633:0,0,0 ] ) -k1,3894:-473657,-710414:-65781 +k1,3900:-473657,-710414:-65781 ) ) -k1,3894:25478599,-710414:25952256 -g1,3894:25478599,-710414 +k1,3900:25478599,-710414:25952256 +g1,3900:25478599,-710414 ) ] ) -[1,3894:6630773,47279633:25952256,43253760,0 -[1,3894:6630773,4812305:25952256,786432,0 -(1,3894:6630773,4812305:25952256,485622,11795 -(1,3894:6630773,4812305:25952256,485622,11795 -g1,3894:3078558,4812305 -[1,3894:3078558,4812305:0,0,0 -(1,3894:3078558,2439708:0,1703936,0 -k1,3894:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3894:2537886,2439708:1179648,16384,0 +[1,3900:6630773,47279633:25952256,43253760,0 +[1,3900:6630773,4812305:25952256,786432,0 +(1,3900:6630773,4812305:25952256,485622,11795 +(1,3900:6630773,4812305:25952256,485622,11795 +g1,3900:3078558,4812305 +[1,3900:3078558,4812305:0,0,0 +(1,3900:3078558,2439708:0,1703936,0 +k1,3900:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3900:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3894:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3900:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3894:3078558,4812305:0,0,0 -(1,3894:3078558,2439708:0,1703936,0 -g1,3894:29030814,2439708 -g1,3894:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3894:36151628,1915420:16384,1179648,0 +[1,3900:3078558,4812305:0,0,0 +(1,3900:3078558,2439708:0,1703936,0 +g1,3900:29030814,2439708 +g1,3900:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3900:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3894:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3900:37855564,2439708:1179648,16384,0 ) ) -k1,3894:3078556,2439708:-34777008 +k1,3900:3078556,2439708:-34777008 ) ] -[1,3894:3078558,4812305:0,0,0 -(1,3894:3078558,49800853:0,16384,2228224 -k1,3894:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3894:2537886,49800853:1179648,16384,0 +[1,3900:3078558,4812305:0,0,0 +(1,3900:3078558,49800853:0,16384,2228224 +k1,3900:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3900:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3894:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3900:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) -) -) +) +) ] -[1,3894:3078558,4812305:0,0,0 -(1,3894:3078558,49800853:0,16384,2228224 -g1,3894:29030814,49800853 -g1,3894:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3894:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3894:37855564,49800853:1179648,16384,0 -) -) -k1,3894:3078556,49800853:-34777008 -) -] -g1,3894:6630773,4812305 -g1,3894:6630773,4812305 -g1,3894:8203637,4812305 -k1,3894:31786111,4812305:23582474 -) -) -] -[1,3894:6630773,45706769:25952256,40108032,0 -(1,3894:6630773,45706769:25952256,40108032,0 -(1,3894:6630773,45706769:0,0,0 -g1,3894:6630773,45706769 -) -[1,3894:6630773,45706769:25952256,40108032,0 -v1,3824:6630773,6254097:0,393216,0 -(1,3825:6630773,12695595:25952256,6834714,616038 -g1,3825:6630773,12695595 -(1,3825:6630773,12695595:25952256,6834714,616038 -(1,3825:6630773,13311633:25952256,7450752,0 -[1,3825:6630773,13311633:25952256,7450752,0 -(1,3825:6630773,13285419:25952256,7398324,0 -r1,3825:6656987,13285419:26214,7398324,0 -[1,3825:6656987,13285419:25899828,7398324,0 -(1,3825:6656987,12695595:25899828,6218676,0 -[1,3825:7246811,12695595:24720180,6218676,0 -(1,3825:7246811,7638804:24720180,1161885,196608 -(1,3824:7246811,7638804:0,1161885,196608 -r1,3825:8794447,7638804:1547636,1358493,196608 -k1,3824:7246811,7638804:-1547636 -) -(1,3824:7246811,7638804:1547636,1161885,196608 -) -k1,3824:8976007,7638804:181560 -k1,3824:10704871,7638804:181559 -k1,3824:11572593,7638804:181560 -k1,3824:14041359,7638804:181559 -k1,3824:16604497,7638804:181560 -k1,3824:17402095,7638804:181560 -k1,3824:20756252,7638804:181559 -k1,3824:22084037,7638804:181560 -k1,3824:22892776,7638804:181560 -k1,3824:24065895,7638804:181559 -k1,3824:26102124,7638804:181560 -k1,3824:27093053,7638804:181559 -k1,3824:29928821,7638804:181560 -k1,3824:31966991,7638804:0 -) -(1,3825:7246811,8480292:24720180,513147,126483 -k1,3824:8061978,8480292:202405 -k1,3824:9716006,8480292:202406 -k1,3824:11669533,8480292:202405 -k1,3824:13063384,8480292:202406 -k1,3824:14962516,8480292:202405 -k1,3824:17819129,8480292:202405 -k1,3824:19741855,8480292:202406 -k1,3824:20627145,8480292:202405 -k1,3824:22043277,8480292:202405 -k1,3824:23264768,8480292:202406 -k1,3824:26229516,8480292:202405 -k1,3824:29055328,8480292:202406 -k1,3824:31339156,8480292:202405 -k1,3824:31966991,8480292:0 -) -(1,3825:7246811,9321780:24720180,505283,134348 -k1,3824:8898200,9321780:157823 -k1,3824:14616752,9321780:157822 -k1,3824:17513980,9321780:157823 -k1,3824:18433330,9321780:157822 -k1,3824:21205384,9321780:157823 -k1,3824:21894703,9321780:157822 -k1,3824:23118797,9321780:157823 -k1,3824:26080249,9321780:157822 -k1,3824:26920957,9321780:157823 -k1,3824:27691541,9321780:157822 -k1,3824:29344896,9321780:157823 -k1,3824:31966991,9321780:0 -) -(1,3825:7246811,10163268:24720180,505283,134348 -k1,3824:10572931,10163268:261001 -k1,3824:12585053,10163268:261000 -k1,3824:13865139,10163268:261001 -k1,3824:15293335,10163268:261000 -k1,3824:17131788,10163268:261001 -k1,3824:18154317,10163268:261001 -k1,3824:20166439,10163268:261000 -k1,3824:21055275,10163268:261001 -k1,3824:21904789,10163268:261001 -(1,3824:21904789,10163268:0,452978,115847 -r1,3825:23318190,10163268:1413401,568825,115847 -k1,3824:21904789,10163268:-1413401 -) -(1,3824:21904789,10163268:1413401,452978,115847 -k1,3824:21904789,10163268:3277 -h1,3824:23314913,10163268:0,411205,112570 -) -k1,3824:23579190,10163268:261000 -k1,3824:26793899,10163268:261001 -k1,3824:28159181,10163268:261000 -k1,3824:29167948,10163268:261001 -k1,3824:31966991,10163268:0 -) -(1,3825:7246811,11004756:24720180,513147,134348 -k1,3824:10024293,11004756:218956 -k1,3824:13418467,11004756:218955 -k1,3824:16237892,11004756:218956 -k1,3824:17230828,11004756:218956 -k1,3824:19732403,11004756:218956 -k1,3824:23131165,11004756:218955 -k1,3824:24541566,11004756:218956 -k1,3824:27678840,11004756:218956 -k1,3824:28513833,11004756:218955 -k1,3824:29751874,11004756:218956 -k1,3824:31966991,11004756:0 -) -(1,3825:7246811,11846244:24720180,513147,126483 -k1,3824:8049168,11846244:143065 -k1,3824:8548093,11846244:143065 -k1,3824:9858354,11846244:143065 -k1,3824:12890246,11846244:143065 -k1,3824:14541950,11846244:143065 -k1,3824:19915444,11846244:143066 -k1,3824:21512098,11846244:143065 -k1,3824:22545142,11846244:143065 -k1,3824:26010227,11846244:143065 -k1,3824:27285099,11846244:143065 -k1,3824:31966991,11846244:0 -) -(1,3825:7246811,12687732:24720180,505283,7863 -k1,3825:31966992,12687732:22119712 -g1,3825:31966992,12687732 -) -] -) -] -r1,3825:32583029,13285419:26214,7398324,0 -) -] -) -) -g1,3825:32583029,12695595 -) -h1,3825:6630773,13311633:0,0,0 -(1,3828:6630773,14560360:25952256,513147,134348 -h1,3827:6630773,14560360:983040,0,0 -k1,3827:8676905,14560360:234062 -k1,3827:12354228,14560360:234061 -k1,3827:13607375,14560360:234062 -k1,3827:16620164,14560360:234062 -k1,3827:19038541,14560360:234062 -k1,3827:21968098,14560360:234061 -(1,3827:21968098,14560360:0,452978,115847 -r1,3827:23733211,14560360:1765113,568825,115847 -k1,3827:21968098,14560360:-1765113 -) -(1,3827:21968098,14560360:1765113,452978,115847 -k1,3827:21968098,14560360:3277 -h1,3827:23729934,14560360:0,411205,112570 -) -k1,3827:23967273,14560360:234062 -k1,3827:27469616,14560360:234062 -k1,3827:28235175,14560360:234062 -k1,3827:29128528,14560360:234061 -k1,3827:30924313,14560360:234062 -k1,3828:32583029,14560360:0 -) -(1,3828:6630773,15401848:25952256,513147,126483 -k1,3827:8488315,15401848:195549 -k1,3827:10381903,15401848:195550 -k1,3827:11596537,15401848:195549 -k1,3827:13115913,15401848:195549 -k1,3827:14786678,15401848:195550 -k1,3827:16734004,15401848:195549 -k1,3827:20056931,15401848:195549 -k1,3827:20938642,15401848:195549 -k1,3827:21592289,15401848:195550 -k1,3827:24298522,15401848:195549 -k1,3827:25817898,15401848:195549 -k1,3827:27663645,15401848:195550 -k1,3827:31140582,15401848:195549 -k1,3827:32583029,15401848:0 -) -(1,3828:6630773,16243336:25952256,513147,115847 -g1,3827:9525498,16243336 -(1,3827:9525498,16243336:0,452978,115847 -r1,3827:11994035,16243336:2468537,568825,115847 -k1,3827:9525498,16243336:-2468537 -) -(1,3827:9525498,16243336:2468537,452978,115847 -k1,3827:9525498,16243336:3277 -h1,3827:11990758,16243336:0,411205,112570 -) -k1,3828:32583029,16243336:20415324 -g1,3828:32583029,16243336 -) -v1,3830:6630773,17316753:0,393216,0 -(1,3840:6630773,20362097:25952256,3438560,196608 -g1,3840:6630773,20362097 -g1,3840:6630773,20362097 -g1,3840:6434165,20362097 -(1,3840:6434165,20362097:0,3438560,196608 -r1,3840:32779637,20362097:26345472,3635168,196608 -k1,3840:6434165,20362097:-26345472 -) -(1,3840:6434165,20362097:26345472,3438560,196608 -[1,3840:6630773,20362097:25952256,3241952,0 -(1,3832:6630773,17524371:25952256,404226,76021 -(1,3831:6630773,17524371:0,0,0 -g1,3831:6630773,17524371 -g1,3831:6630773,17524371 -g1,3831:6303093,17524371 -(1,3831:6303093,17524371:0,0,0 -) -g1,3831:6630773,17524371 -) -k1,3832:6630773,17524371:0 -h1,3832:10108375,17524371:0,0,0 -k1,3832:32583029,17524371:22474654 -g1,3832:32583029,17524371 -) -(1,3839:6630773,18256085:25952256,410518,9436 -(1,3834:6630773,18256085:0,0,0 -g1,3834:6630773,18256085 -g1,3834:6630773,18256085 -g1,3834:6303093,18256085 -(1,3834:6303093,18256085:0,0,0 -) -g1,3834:6630773,18256085 -) -g1,3839:7579210,18256085 -g1,3839:9159939,18256085 -g1,3839:10108376,18256085 -h1,3839:10424522,18256085:0,0,0 -k1,3839:32583030,18256085:22158508 -g1,3839:32583030,18256085 -) -(1,3839:6630773,18922263:25952256,410518,76021 -h1,3839:6630773,18922263:0,0,0 -g1,3839:7579210,18922263 -g1,3839:7895356,18922263 -g1,3839:8527648,18922263 -g1,3839:9476085,18922263 -g1,3839:10740668,18922263 -g1,3839:12637542,18922263 -g1,3839:13269834,18922263 -g1,3839:13902126,18922263 -g1,3839:14534418,18922263 -g1,3839:15166710,18922263 -g1,3839:15799002,18922263 -h1,3839:16115148,18922263:0,0,0 -k1,3839:32583029,18922263:16467881 -g1,3839:32583029,18922263 -) -(1,3839:6630773,19588441:25952256,410518,101187 -h1,3839:6630773,19588441:0,0,0 -g1,3839:7579210,19588441 -g1,3839:7895356,19588441 -g1,3839:8527648,19588441 -g1,3839:9476085,19588441 -g1,3839:10740668,19588441 -h1,3839:11689105,19588441:0,0,0 -k1,3839:32583029,19588441:20893924 -g1,3839:32583029,19588441 -) -(1,3839:6630773,20254619:25952256,410518,107478 -h1,3839:6630773,20254619:0,0,0 -g1,3839:7579210,20254619 -g1,3839:7895356,20254619 -g1,3839:8527648,20254619 -g1,3839:9476085,20254619 -g1,3839:11056814,20254619 -g1,3839:12953688,20254619 -g1,3839:14534417,20254619 -h1,3839:16115145,20254619:0,0,0 -k1,3839:32583029,20254619:16467884 -g1,3839:32583029,20254619 -) -] -) -g1,3840:32583029,20362097 -g1,3840:6630773,20362097 -g1,3840:6630773,20362097 -g1,3840:32583029,20362097 -g1,3840:32583029,20362097 -) -h1,3840:6630773,20558705:0,0,0 -(1,3845:6630773,23057204:25952256,555811,147783 -(1,3845:6630773,23057204:2899444,534184,12975 -g1,3845:6630773,23057204 -g1,3845:9530217,23057204 -) -g1,3845:12405872,23057204 -g1,3845:13973100,23057204 -g1,3845:17689319,23057204 -g1,3845:19041000,23057204 -k1,3845:32583029,23057204:10165352 -g1,3845:32583029,23057204 -) -(1,3847:6630773,24291908:25952256,505283,134348 -k1,3846:7506825,24291908:248217 -k1,3846:9457013,24291908:248218 -k1,3846:12877828,24291908:248217 -k1,3846:14145131,24291908:248218 -k1,3846:15565787,24291908:248217 -k1,3846:17415705,24291908:248218 -k1,3846:20441338,24291908:248217 -k1,3846:24094150,24291908:248217 -k1,3846:25151738,24291908:248218 -k1,3846:26723782,24291908:248217 -k1,3846:27963560,24291908:248218 -k1,3846:31391584,24291908:248217 -k1,3846:32583029,24291908:0 -) -(1,3847:6630773,25133396:25952256,513147,126483 -k1,3846:9907088,25133396:184326 -k1,3846:10719250,25133396:184327 -k1,3846:11492089,25133396:184326 -k1,3846:14371912,25133396:184327 -(1,3846:14371912,25133396:0,452978,115847 -r1,3846:17192161,25133396:2820249,568825,115847 -k1,3846:14371912,25133396:-2820249 -) -(1,3846:14371912,25133396:2820249,452978,115847 -k1,3846:14371912,25133396:3277 -h1,3846:17188884,25133396:0,411205,112570 -) -k1,3846:17376487,25133396:184326 -k1,3846:18665096,25133396:184327 -k1,3846:19597188,25133396:184326 -k1,3846:21294740,25133396:184326 -k1,3846:22945763,25133396:184327 -k1,3846:23781517,25133396:184326 -k1,3846:26346112,25133396:184327 -k1,3846:29399604,25133396:184326 -k1,3846:30196693,25133396:184327 -k1,3846:31400104,25133396:184326 -k1,3846:32583029,25133396:0 -) -(1,3847:6630773,25974884:25952256,513147,126483 -g1,3846:7489294,25974884 -g1,3846:8044383,25974884 -g1,3846:9237138,25974884 -g1,3846:10627812,25974884 -g1,3846:12665981,25974884 -g1,3846:15734376,25974884 -g1,3846:17201071,25974884 -g1,3846:18419385,25974884 -g1,3846:20157399,25974884 -g1,3846:21039513,25974884 -g1,3846:22370549,25974884 -g1,3846:25184009,25974884 -g1,3846:25999276,25974884 -g1,3846:27217590,25974884 -g1,3846:29631936,25974884 -g1,3846:30490457,25974884 -g1,3846:31045546,25974884 -k1,3847:32583029,25974884:370287 -g1,3847:32583029,25974884 -) -v1,3849:6630773,27048302:0,393216,0 -(1,3870:6630773,37390147:25952256,10735061,196608 -g1,3870:6630773,37390147 -g1,3870:6630773,37390147 -g1,3870:6434165,37390147 -(1,3870:6434165,37390147:0,10735061,196608 -r1,3870:32779637,37390147:26345472,10931669,196608 -k1,3870:6434165,37390147:-26345472 -) -(1,3870:6434165,37390147:26345472,10735061,196608 -[1,3870:6630773,37390147:25952256,10538453,0 -(1,3851:6630773,27255920:25952256,404226,101187 -(1,3850:6630773,27255920:0,0,0 -g1,3850:6630773,27255920 -g1,3850:6630773,27255920 -g1,3850:6303093,27255920 -(1,3850:6303093,27255920:0,0,0 -) -g1,3850:6630773,27255920 -) -g1,3851:10740667,27255920 -g1,3851:11689105,27255920 -g1,3851:16431291,27255920 -g1,3851:18960457,27255920 -g1,3851:19592749,27255920 -g1,3851:21489624,27255920 -g1,3851:22438061,27255920 -g1,3851:23070353,27255920 -g1,3851:27812539,27255920 -h1,3851:28760976,27255920:0,0,0 -k1,3851:32583029,27255920:3822053 -g1,3851:32583029,27255920 -) -(1,3852:6630773,27922098:25952256,404226,6290 -h1,3852:6630773,27922098:0,0,0 -h1,3852:10424521,27922098:0,0,0 -k1,3852:32583029,27922098:22158508 -g1,3852:32583029,27922098 -) -(1,3869:6630773,28653812:25952256,410518,31456 -(1,3854:6630773,28653812:0,0,0 -g1,3854:6630773,28653812 -g1,3854:6630773,28653812 -g1,3854:6303093,28653812 -(1,3854:6303093,28653812:0,0,0 -) -g1,3854:6630773,28653812 -) -g1,3869:7579210,28653812 -h1,3869:8211501,28653812:0,0,0 -k1,3869:32583029,28653812:24371528 -g1,3869:32583029,28653812 -) -(1,3869:6630773,29319990:25952256,404226,76021 -h1,3869:6630773,29319990:0,0,0 -g1,3869:7579210,29319990 -g1,3869:8843793,29319990 -g1,3869:9476085,29319990 -g1,3869:10108377,29319990 -g1,3869:10740669,29319990 -g1,3869:11372961,29319990 -g1,3869:12005253,29319990 -h1,3869:12321399,29319990:0,0,0 -k1,3869:32583029,29319990:20261630 -g1,3869:32583029,29319990 -) -(1,3869:6630773,29986168:25952256,379060,0 -h1,3869:6630773,29986168:0,0,0 -h1,3869:7263064,29986168:0,0,0 -k1,3869:32583028,29986168:25319964 -g1,3869:32583028,29986168 -) -(1,3869:6630773,30652346:25952256,410518,101187 -h1,3869:6630773,30652346:0,0,0 -g1,3869:7579210,30652346 -h1,3869:8211501,30652346:0,0,0 -k1,3869:32583029,30652346:24371528 -g1,3869:32583029,30652346 -) -(1,3869:6630773,31318524:25952256,404226,76021 -h1,3869:6630773,31318524:0,0,0 -g1,3869:7579210,31318524 -g1,3869:8843793,31318524 -h1,3869:9792230,31318524:0,0,0 -k1,3869:32583030,31318524:22790800 -g1,3869:32583030,31318524 -) -(1,3869:6630773,31984702:25952256,379060,0 -h1,3869:6630773,31984702:0,0,0 -h1,3869:7263064,31984702:0,0,0 -k1,3869:32583028,31984702:25319964 -g1,3869:32583028,31984702 -) -(1,3869:6630773,32650880:25952256,410518,101187 -h1,3869:6630773,32650880:0,0,0 -g1,3869:7579210,32650880 -h1,3869:8527647,32650880:0,0,0 -k1,3869:32583029,32650880:24055382 -g1,3869:32583029,32650880 -) -(1,3869:6630773,33317058:25952256,404226,76021 -h1,3869:6630773,33317058:0,0,0 -g1,3869:7579210,33317058 -g1,3869:7895356,33317058 -g1,3869:9159939,33317058 -g1,3869:9476085,33317058 -g1,3869:10108377,33317058 -g1,3869:10424523,33317058 -g1,3869:11056815,33317058 -g1,3869:11372961,33317058 -g1,3869:12005253,33317058 -g1,3869:12321399,33317058 -g1,3869:12953691,33317058 -g1,3869:13269837,33317058 -g1,3869:13902129,33317058 -g1,3869:14218275,33317058 -g1,3869:14850567,33317058 -g1,3869:15166713,33317058 -g1,3869:15799005,33317058 -g1,3869:16115151,33317058 -g1,3869:16747443,33317058 -g1,3869:17063589,33317058 -g1,3869:17695881,33317058 -h1,3869:18328172,33317058:0,0,0 -k1,3869:32583029,33317058:14254857 -g1,3869:32583029,33317058 -) -(1,3869:6630773,33983236:25952256,379060,0 -h1,3869:6630773,33983236:0,0,0 -h1,3869:7263064,33983236:0,0,0 -k1,3869:32583028,33983236:25319964 -g1,3869:32583028,33983236 -) -(1,3869:6630773,34649414:25952256,410518,31456 -h1,3869:6630773,34649414:0,0,0 -g1,3869:7579210,34649414 -h1,3869:8527647,34649414:0,0,0 -k1,3869:32583029,34649414:24055382 -g1,3869:32583029,34649414 -) -(1,3869:6630773,35315592:25952256,404226,76021 -h1,3869:6630773,35315592:0,0,0 -g1,3869:7579210,35315592 -g1,3869:8843793,35315592 -g1,3869:10108376,35315592 -g1,3869:11372959,35315592 -g1,3869:12637542,35315592 -g1,3869:13902125,35315592 -h1,3869:14850562,35315592:0,0,0 -k1,3869:32583030,35315592:17732468 -g1,3869:32583030,35315592 -) -(1,3869:6630773,35981770:25952256,379060,0 -h1,3869:6630773,35981770:0,0,0 -h1,3869:7263064,35981770:0,0,0 -k1,3869:32583028,35981770:25319964 -g1,3869:32583028,35981770 -) -(1,3869:6630773,36647948:25952256,410518,31456 -h1,3869:6630773,36647948:0,0,0 -g1,3869:7579210,36647948 -h1,3869:8211501,36647948:0,0,0 -k1,3869:32583029,36647948:24371528 -g1,3869:32583029,36647948 -) -(1,3869:6630773,37314126:25952256,404226,76021 -h1,3869:6630773,37314126:0,0,0 -g1,3869:7579210,37314126 -g1,3869:8843793,37314126 -g1,3869:9159939,37314126 -g1,3869:10740668,37314126 -h1,3869:12321396,37314126:0,0,0 -k1,3869:32583028,37314126:20261632 -g1,3869:32583028,37314126 -) -] -) -g1,3870:32583029,37390147 -g1,3870:6630773,37390147 -g1,3870:6630773,37390147 -g1,3870:32583029,37390147 -g1,3870:32583029,37390147 -) -h1,3870:6630773,37586755:0,0,0 -(1,3874:6630773,38835482:25952256,513147,134348 -h1,3873:6630773,38835482:983040,0,0 -g1,3873:8642072,38835482 -g1,3873:10766093,38835482 -g1,3873:11321182,38835482 -g1,3873:14143817,38835482 -g1,3873:15910667,38835482 -g1,3873:16465756,38835482 -g1,3873:17658511,38835482 -g1,3873:18726092,38835482 -g1,3873:20932033,38835482 -(1,3873:20932033,38835482:0,414482,115847 -r1,3873:22345434,38835482:1413401,530329,115847 -k1,3873:20932033,38835482:-1413401 -) -(1,3873:20932033,38835482:1413401,414482,115847 -k1,3873:20932033,38835482:3277 -h1,3873:22342157,38835482:0,411205,112570 -) -g1,3873:22544663,38835482 -g1,3873:23395320,38835482 -k1,3874:32583029,38835482:8555942 -g1,3874:32583029,38835482 -) -v1,3876:6630773,39908899:0,393216,0 -(1,3888:6630773,44261434:25952256,4745751,196608 -g1,3888:6630773,44261434 -g1,3888:6630773,44261434 -g1,3888:6434165,44261434 -(1,3888:6434165,44261434:0,4745751,196608 -r1,3888:32779637,44261434:26345472,4942359,196608 -k1,3888:6434165,44261434:-26345472 -) -(1,3888:6434165,44261434:26345472,4745751,196608 -[1,3888:6630773,44261434:25952256,4549143,0 -(1,3878:6630773,40122809:25952256,410518,101187 -(1,3877:6630773,40122809:0,0,0 -g1,3877:6630773,40122809 -g1,3877:6630773,40122809 -g1,3877:6303093,40122809 -(1,3877:6303093,40122809:0,0,0 -) -g1,3877:6630773,40122809 -) -g1,3878:9476085,40122809 -g1,3878:10424523,40122809 -k1,3878:10424523,40122809:0 -h1,3878:11689106,40122809:0,0,0 -k1,3878:32583030,40122809:20893924 -g1,3878:32583030,40122809 -) -(1,3879:6630773,40788987:25952256,404226,6290 -h1,3879:6630773,40788987:0,0,0 -h1,3879:8527647,40788987:0,0,0 -k1,3879:32583029,40788987:24055382 -g1,3879:32583029,40788987 -) -(1,3887:6630773,41520701:25952256,410518,31456 -(1,3881:6630773,41520701:0,0,0 -g1,3881:6630773,41520701 -g1,3881:6630773,41520701 -g1,3881:6303093,41520701 -(1,3881:6303093,41520701:0,0,0 -) -g1,3881:6630773,41520701 -) -g1,3887:7579210,41520701 -h1,3887:8211501,41520701:0,0,0 -k1,3887:32583029,41520701:24371528 -g1,3887:32583029,41520701 -) -(1,3887:6630773,42186879:25952256,404226,76021 -h1,3887:6630773,42186879:0,0,0 -g1,3887:7579210,42186879 -g1,3887:8843793,42186879 -g1,3887:9476085,42186879 -g1,3887:10108377,42186879 -g1,3887:10740669,42186879 -g1,3887:11372961,42186879 -g1,3887:12005253,42186879 -h1,3887:12321399,42186879:0,0,0 -k1,3887:32583029,42186879:20261630 -g1,3887:32583029,42186879 -) -(1,3887:6630773,42853057:25952256,379060,0 -h1,3887:6630773,42853057:0,0,0 -h1,3887:7263064,42853057:0,0,0 -k1,3887:32583028,42853057:25319964 -g1,3887:32583028,42853057 -) -(1,3887:6630773,43519235:25952256,410518,31456 -h1,3887:6630773,43519235:0,0,0 -g1,3887:7579210,43519235 -h1,3887:8211501,43519235:0,0,0 -k1,3887:32583029,43519235:24371528 -g1,3887:32583029,43519235 -) -(1,3887:6630773,44185413:25952256,404226,76021 -h1,3887:6630773,44185413:0,0,0 -g1,3887:7579210,44185413 -g1,3887:8843793,44185413 -g1,3887:9159939,44185413 -g1,3887:10740668,44185413 -h1,3887:12321396,44185413:0,0,0 -k1,3887:32583028,44185413:20261632 -g1,3887:32583028,44185413 -) -] -) -g1,3888:32583029,44261434 -g1,3888:6630773,44261434 -g1,3888:6630773,44261434 -g1,3888:32583029,44261434 -g1,3888:32583029,44261434 -) -h1,3888:6630773,44458042:0,0,0 -(1,3892:6630773,45706769:25952256,513147,102891 -h1,3891:6630773,45706769:983040,0,0 -g1,3891:9296777,45706769 -g1,3891:10600288,45706769 -g1,3891:11547283,45706769 -g1,3891:14037651,45706769 -g1,3891:15306428,45706769 -g1,3891:16829484,45706769 -g1,3891:17688005,45706769 -k1,3892:32583029,45706769:13397526 -g1,3892:32583029,45706769 -) -] -(1,3894:32583029,45706769:0,0,0 -g1,3894:32583029,45706769 -) -) -] -(1,3894:6630773,47279633:25952256,0,0 -h1,3894:6630773,47279633:25952256,0,0 -) -] -h1,3894:4262630,4025873:0,0,0 +[1,3900:3078558,4812305:0,0,0 +(1,3900:3078558,49800853:0,16384,2228224 +g1,3900:29030814,49800853 +g1,3900:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3900:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3900:37855564,49800853:1179648,16384,0 +) +) +k1,3900:3078556,49800853:-34777008 +) +] +g1,3900:6630773,4812305 +g1,3900:6630773,4812305 +g1,3900:8203637,4812305 +k1,3900:31786111,4812305:23582474 +) +) +] +[1,3900:6630773,45706769:25952256,40108032,0 +(1,3900:6630773,45706769:25952256,40108032,0 +(1,3900:6630773,45706769:0,0,0 +g1,3900:6630773,45706769 +) +[1,3900:6630773,45706769:25952256,40108032,0 +v1,3830:6630773,6254097:0,393216,0 +(1,3831:6630773,12695595:25952256,6834714,616038 +g1,3831:6630773,12695595 +(1,3831:6630773,12695595:25952256,6834714,616038 +(1,3831:6630773,13311633:25952256,7450752,0 +[1,3831:6630773,13311633:25952256,7450752,0 +(1,3831:6630773,13285419:25952256,7398324,0 +r1,3831:6656987,13285419:26214,7398324,0 +[1,3831:6656987,13285419:25899828,7398324,0 +(1,3831:6656987,12695595:25899828,6218676,0 +[1,3831:7246811,12695595:24720180,6218676,0 +(1,3831:7246811,7638804:24720180,1161885,196608 +(1,3830:7246811,7638804:0,1161885,196608 +r1,3831:8794447,7638804:1547636,1358493,196608 +k1,3830:7246811,7638804:-1547636 +) +(1,3830:7246811,7638804:1547636,1161885,196608 +) +k1,3830:8976007,7638804:181560 +k1,3830:10704871,7638804:181559 +k1,3830:11572593,7638804:181560 +k1,3830:14041359,7638804:181559 +k1,3830:16604497,7638804:181560 +k1,3830:17402095,7638804:181560 +k1,3830:20756252,7638804:181559 +k1,3830:22084037,7638804:181560 +k1,3830:22892776,7638804:181560 +k1,3830:24065895,7638804:181559 +k1,3830:26102124,7638804:181560 +k1,3830:27093053,7638804:181559 +k1,3830:29928821,7638804:181560 +k1,3830:31966991,7638804:0 +) +(1,3831:7246811,8480292:24720180,513147,126483 +k1,3830:8061978,8480292:202405 +k1,3830:9716006,8480292:202406 +k1,3830:11669533,8480292:202405 +k1,3830:13063384,8480292:202406 +k1,3830:14962516,8480292:202405 +k1,3830:17819129,8480292:202405 +k1,3830:19741855,8480292:202406 +k1,3830:20627145,8480292:202405 +k1,3830:22043277,8480292:202405 +k1,3830:23264768,8480292:202406 +k1,3830:26229516,8480292:202405 +k1,3830:29055328,8480292:202406 +k1,3830:31339156,8480292:202405 +k1,3830:31966991,8480292:0 +) +(1,3831:7246811,9321780:24720180,505283,134348 +k1,3830:8898200,9321780:157823 +k1,3830:14616752,9321780:157822 +k1,3830:17513980,9321780:157823 +k1,3830:18433330,9321780:157822 +k1,3830:21205384,9321780:157823 +k1,3830:21894703,9321780:157822 +k1,3830:23118797,9321780:157823 +k1,3830:26080249,9321780:157822 +k1,3830:26920957,9321780:157823 +k1,3830:27691541,9321780:157822 +k1,3830:29344896,9321780:157823 +k1,3830:31966991,9321780:0 +) +(1,3831:7246811,10163268:24720180,505283,134348 +k1,3830:10572931,10163268:261001 +k1,3830:12585053,10163268:261000 +k1,3830:13865139,10163268:261001 +k1,3830:15293335,10163268:261000 +k1,3830:17131788,10163268:261001 +k1,3830:18154317,10163268:261001 +k1,3830:20166439,10163268:261000 +k1,3830:21055275,10163268:261001 +k1,3830:21904789,10163268:261001 +(1,3830:21904789,10163268:0,452978,115847 +r1,3831:23318190,10163268:1413401,568825,115847 +k1,3830:21904789,10163268:-1413401 +) +(1,3830:21904789,10163268:1413401,452978,115847 +k1,3830:21904789,10163268:3277 +h1,3830:23314913,10163268:0,411205,112570 +) +k1,3830:23579190,10163268:261000 +k1,3830:26793899,10163268:261001 +k1,3830:28159181,10163268:261000 +k1,3830:29167948,10163268:261001 +k1,3830:31966991,10163268:0 +) +(1,3831:7246811,11004756:24720180,513147,134348 +k1,3830:10024293,11004756:218956 +k1,3830:13418467,11004756:218955 +k1,3830:16237892,11004756:218956 +k1,3830:17230828,11004756:218956 +k1,3830:19732403,11004756:218956 +k1,3830:23131165,11004756:218955 +k1,3830:24541566,11004756:218956 +k1,3830:27678840,11004756:218956 +k1,3830:28513833,11004756:218955 +k1,3830:29751874,11004756:218956 +k1,3830:31966991,11004756:0 +) +(1,3831:7246811,11846244:24720180,513147,126483 +k1,3830:8049168,11846244:143065 +k1,3830:8548093,11846244:143065 +k1,3830:9858354,11846244:143065 +k1,3830:12890246,11846244:143065 +k1,3830:14541950,11846244:143065 +k1,3830:19915444,11846244:143066 +k1,3830:21512098,11846244:143065 +k1,3830:22545142,11846244:143065 +k1,3830:26010227,11846244:143065 +k1,3830:27285099,11846244:143065 +k1,3830:31966991,11846244:0 +) +(1,3831:7246811,12687732:24720180,505283,7863 +k1,3831:31966992,12687732:22119712 +g1,3831:31966992,12687732 +) +] +) +] +r1,3831:32583029,13285419:26214,7398324,0 +) +] +) +) +g1,3831:32583029,12695595 +) +h1,3831:6630773,13311633:0,0,0 +(1,3834:6630773,14560360:25952256,513147,134348 +h1,3833:6630773,14560360:983040,0,0 +k1,3833:8676905,14560360:234062 +k1,3833:12354228,14560360:234061 +k1,3833:13607375,14560360:234062 +k1,3833:16620164,14560360:234062 +k1,3833:19038541,14560360:234062 +k1,3833:21968098,14560360:234061 +(1,3833:21968098,14560360:0,452978,115847 +r1,3833:23733211,14560360:1765113,568825,115847 +k1,3833:21968098,14560360:-1765113 +) +(1,3833:21968098,14560360:1765113,452978,115847 +k1,3833:21968098,14560360:3277 +h1,3833:23729934,14560360:0,411205,112570 +) +k1,3833:23967273,14560360:234062 +k1,3833:27469616,14560360:234062 +k1,3833:28235175,14560360:234062 +k1,3833:29128528,14560360:234061 +k1,3833:30924313,14560360:234062 +k1,3834:32583029,14560360:0 +) +(1,3834:6630773,15401848:25952256,513147,126483 +k1,3833:8488315,15401848:195549 +k1,3833:10381903,15401848:195550 +k1,3833:11596537,15401848:195549 +k1,3833:13115913,15401848:195549 +k1,3833:14786678,15401848:195550 +k1,3833:16734004,15401848:195549 +k1,3833:20056931,15401848:195549 +k1,3833:20938642,15401848:195549 +k1,3833:21592289,15401848:195550 +k1,3833:24298522,15401848:195549 +k1,3833:25817898,15401848:195549 +k1,3833:27663645,15401848:195550 +k1,3833:31140582,15401848:195549 +k1,3833:32583029,15401848:0 +) +(1,3834:6630773,16243336:25952256,513147,115847 +g1,3833:9525498,16243336 +(1,3833:9525498,16243336:0,452978,115847 +r1,3833:11994035,16243336:2468537,568825,115847 +k1,3833:9525498,16243336:-2468537 +) +(1,3833:9525498,16243336:2468537,452978,115847 +k1,3833:9525498,16243336:3277 +h1,3833:11990758,16243336:0,411205,112570 +) +k1,3834:32583029,16243336:20415324 +g1,3834:32583029,16243336 +) +v1,3836:6630773,17316753:0,393216,0 +(1,3846:6630773,20362097:25952256,3438560,196608 +g1,3846:6630773,20362097 +g1,3846:6630773,20362097 +g1,3846:6434165,20362097 +(1,3846:6434165,20362097:0,3438560,196608 +r1,3846:32779637,20362097:26345472,3635168,196608 +k1,3846:6434165,20362097:-26345472 +) +(1,3846:6434165,20362097:26345472,3438560,196608 +[1,3846:6630773,20362097:25952256,3241952,0 +(1,3838:6630773,17524371:25952256,404226,76021 +(1,3837:6630773,17524371:0,0,0 +g1,3837:6630773,17524371 +g1,3837:6630773,17524371 +g1,3837:6303093,17524371 +(1,3837:6303093,17524371:0,0,0 +) +g1,3837:6630773,17524371 +) +k1,3838:6630773,17524371:0 +h1,3838:10108375,17524371:0,0,0 +k1,3838:32583029,17524371:22474654 +g1,3838:32583029,17524371 +) +(1,3845:6630773,18256085:25952256,410518,9436 +(1,3840:6630773,18256085:0,0,0 +g1,3840:6630773,18256085 +g1,3840:6630773,18256085 +g1,3840:6303093,18256085 +(1,3840:6303093,18256085:0,0,0 +) +g1,3840:6630773,18256085 +) +g1,3845:7579210,18256085 +g1,3845:9159939,18256085 +g1,3845:10108376,18256085 +h1,3845:10424522,18256085:0,0,0 +k1,3845:32583030,18256085:22158508 +g1,3845:32583030,18256085 +) +(1,3845:6630773,18922263:25952256,410518,76021 +h1,3845:6630773,18922263:0,0,0 +g1,3845:7579210,18922263 +g1,3845:7895356,18922263 +g1,3845:8527648,18922263 +g1,3845:9476085,18922263 +g1,3845:10740668,18922263 +g1,3845:12637542,18922263 +g1,3845:13269834,18922263 +g1,3845:13902126,18922263 +g1,3845:14534418,18922263 +g1,3845:15166710,18922263 +g1,3845:15799002,18922263 +h1,3845:16115148,18922263:0,0,0 +k1,3845:32583029,18922263:16467881 +g1,3845:32583029,18922263 +) +(1,3845:6630773,19588441:25952256,410518,101187 +h1,3845:6630773,19588441:0,0,0 +g1,3845:7579210,19588441 +g1,3845:7895356,19588441 +g1,3845:8527648,19588441 +g1,3845:9476085,19588441 +g1,3845:10740668,19588441 +h1,3845:11689105,19588441:0,0,0 +k1,3845:32583029,19588441:20893924 +g1,3845:32583029,19588441 +) +(1,3845:6630773,20254619:25952256,410518,107478 +h1,3845:6630773,20254619:0,0,0 +g1,3845:7579210,20254619 +g1,3845:7895356,20254619 +g1,3845:8527648,20254619 +g1,3845:9476085,20254619 +g1,3845:11056814,20254619 +g1,3845:12953688,20254619 +g1,3845:14534417,20254619 +h1,3845:16115145,20254619:0,0,0 +k1,3845:32583029,20254619:16467884 +g1,3845:32583029,20254619 +) +] +) +g1,3846:32583029,20362097 +g1,3846:6630773,20362097 +g1,3846:6630773,20362097 +g1,3846:32583029,20362097 +g1,3846:32583029,20362097 +) +h1,3846:6630773,20558705:0,0,0 +(1,3851:6630773,23057204:25952256,555811,147783 +(1,3851:6630773,23057204:2899444,534184,12975 +g1,3851:6630773,23057204 +g1,3851:9530217,23057204 +) +g1,3851:12405872,23057204 +g1,3851:13973100,23057204 +g1,3851:17689319,23057204 +g1,3851:19041000,23057204 +k1,3851:32583029,23057204:10165352 +g1,3851:32583029,23057204 +) +(1,3853:6630773,24291908:25952256,505283,134348 +k1,3852:7506825,24291908:248217 +k1,3852:9457013,24291908:248218 +k1,3852:12877828,24291908:248217 +k1,3852:14145131,24291908:248218 +k1,3852:15565787,24291908:248217 +k1,3852:17415705,24291908:248218 +k1,3852:20441338,24291908:248217 +k1,3852:24094150,24291908:248217 +k1,3852:25151738,24291908:248218 +k1,3852:26723782,24291908:248217 +k1,3852:27963560,24291908:248218 +k1,3852:31391584,24291908:248217 +k1,3852:32583029,24291908:0 +) +(1,3853:6630773,25133396:25952256,513147,126483 +k1,3852:9907088,25133396:184326 +k1,3852:10719250,25133396:184327 +k1,3852:11492089,25133396:184326 +k1,3852:14371912,25133396:184327 +(1,3852:14371912,25133396:0,452978,115847 +r1,3852:17192161,25133396:2820249,568825,115847 +k1,3852:14371912,25133396:-2820249 +) +(1,3852:14371912,25133396:2820249,452978,115847 +k1,3852:14371912,25133396:3277 +h1,3852:17188884,25133396:0,411205,112570 +) +k1,3852:17376487,25133396:184326 +k1,3852:18665096,25133396:184327 +k1,3852:19597188,25133396:184326 +k1,3852:21294740,25133396:184326 +k1,3852:22945763,25133396:184327 +k1,3852:23781517,25133396:184326 +k1,3852:26346112,25133396:184327 +k1,3852:29399604,25133396:184326 +k1,3852:30196693,25133396:184327 +k1,3852:31400104,25133396:184326 +k1,3852:32583029,25133396:0 +) +(1,3853:6630773,25974884:25952256,513147,126483 +g1,3852:7489294,25974884 +g1,3852:8044383,25974884 +g1,3852:9237138,25974884 +g1,3852:10627812,25974884 +g1,3852:12665981,25974884 +g1,3852:15734376,25974884 +g1,3852:17201071,25974884 +g1,3852:18419385,25974884 +g1,3852:20157399,25974884 +g1,3852:21039513,25974884 +g1,3852:22370549,25974884 +g1,3852:25184009,25974884 +g1,3852:25999276,25974884 +g1,3852:27217590,25974884 +g1,3852:29631936,25974884 +g1,3852:30490457,25974884 +g1,3852:31045546,25974884 +k1,3853:32583029,25974884:370287 +g1,3853:32583029,25974884 +) +v1,3855:6630773,27048302:0,393216,0 +(1,3876:6630773,37390147:25952256,10735061,196608 +g1,3876:6630773,37390147 +g1,3876:6630773,37390147 +g1,3876:6434165,37390147 +(1,3876:6434165,37390147:0,10735061,196608 +r1,3876:32779637,37390147:26345472,10931669,196608 +k1,3876:6434165,37390147:-26345472 +) +(1,3876:6434165,37390147:26345472,10735061,196608 +[1,3876:6630773,37390147:25952256,10538453,0 +(1,3857:6630773,27255920:25952256,404226,101187 +(1,3856:6630773,27255920:0,0,0 +g1,3856:6630773,27255920 +g1,3856:6630773,27255920 +g1,3856:6303093,27255920 +(1,3856:6303093,27255920:0,0,0 +) +g1,3856:6630773,27255920 +) +g1,3857:10740667,27255920 +g1,3857:11689105,27255920 +g1,3857:16431291,27255920 +g1,3857:18960457,27255920 +g1,3857:19592749,27255920 +g1,3857:21489624,27255920 +g1,3857:22438061,27255920 +g1,3857:23070353,27255920 +g1,3857:27812539,27255920 +h1,3857:28760976,27255920:0,0,0 +k1,3857:32583029,27255920:3822053 +g1,3857:32583029,27255920 +) +(1,3858:6630773,27922098:25952256,404226,6290 +h1,3858:6630773,27922098:0,0,0 +h1,3858:10424521,27922098:0,0,0 +k1,3858:32583029,27922098:22158508 +g1,3858:32583029,27922098 +) +(1,3875:6630773,28653812:25952256,410518,31456 +(1,3860:6630773,28653812:0,0,0 +g1,3860:6630773,28653812 +g1,3860:6630773,28653812 +g1,3860:6303093,28653812 +(1,3860:6303093,28653812:0,0,0 +) +g1,3860:6630773,28653812 +) +g1,3875:7579210,28653812 +h1,3875:8211501,28653812:0,0,0 +k1,3875:32583029,28653812:24371528 +g1,3875:32583029,28653812 +) +(1,3875:6630773,29319990:25952256,404226,76021 +h1,3875:6630773,29319990:0,0,0 +g1,3875:7579210,29319990 +g1,3875:8843793,29319990 +g1,3875:9476085,29319990 +g1,3875:10108377,29319990 +g1,3875:10740669,29319990 +g1,3875:11372961,29319990 +g1,3875:12005253,29319990 +h1,3875:12321399,29319990:0,0,0 +k1,3875:32583029,29319990:20261630 +g1,3875:32583029,29319990 +) +(1,3875:6630773,29986168:25952256,379060,0 +h1,3875:6630773,29986168:0,0,0 +h1,3875:7263064,29986168:0,0,0 +k1,3875:32583028,29986168:25319964 +g1,3875:32583028,29986168 +) +(1,3875:6630773,30652346:25952256,410518,101187 +h1,3875:6630773,30652346:0,0,0 +g1,3875:7579210,30652346 +h1,3875:8211501,30652346:0,0,0 +k1,3875:32583029,30652346:24371528 +g1,3875:32583029,30652346 +) +(1,3875:6630773,31318524:25952256,404226,76021 +h1,3875:6630773,31318524:0,0,0 +g1,3875:7579210,31318524 +g1,3875:8843793,31318524 +h1,3875:9792230,31318524:0,0,0 +k1,3875:32583030,31318524:22790800 +g1,3875:32583030,31318524 +) +(1,3875:6630773,31984702:25952256,379060,0 +h1,3875:6630773,31984702:0,0,0 +h1,3875:7263064,31984702:0,0,0 +k1,3875:32583028,31984702:25319964 +g1,3875:32583028,31984702 +) +(1,3875:6630773,32650880:25952256,410518,101187 +h1,3875:6630773,32650880:0,0,0 +g1,3875:7579210,32650880 +h1,3875:8527647,32650880:0,0,0 +k1,3875:32583029,32650880:24055382 +g1,3875:32583029,32650880 +) +(1,3875:6630773,33317058:25952256,404226,76021 +h1,3875:6630773,33317058:0,0,0 +g1,3875:7579210,33317058 +g1,3875:7895356,33317058 +g1,3875:9159939,33317058 +g1,3875:9476085,33317058 +g1,3875:10108377,33317058 +g1,3875:10424523,33317058 +g1,3875:11056815,33317058 +g1,3875:11372961,33317058 +g1,3875:12005253,33317058 +g1,3875:12321399,33317058 +g1,3875:12953691,33317058 +g1,3875:13269837,33317058 +g1,3875:13902129,33317058 +g1,3875:14218275,33317058 +g1,3875:14850567,33317058 +g1,3875:15166713,33317058 +g1,3875:15799005,33317058 +g1,3875:16115151,33317058 +g1,3875:16747443,33317058 +g1,3875:17063589,33317058 +g1,3875:17695881,33317058 +h1,3875:18328172,33317058:0,0,0 +k1,3875:32583029,33317058:14254857 +g1,3875:32583029,33317058 +) +(1,3875:6630773,33983236:25952256,379060,0 +h1,3875:6630773,33983236:0,0,0 +h1,3875:7263064,33983236:0,0,0 +k1,3875:32583028,33983236:25319964 +g1,3875:32583028,33983236 +) +(1,3875:6630773,34649414:25952256,410518,31456 +h1,3875:6630773,34649414:0,0,0 +g1,3875:7579210,34649414 +h1,3875:8527647,34649414:0,0,0 +k1,3875:32583029,34649414:24055382 +g1,3875:32583029,34649414 +) +(1,3875:6630773,35315592:25952256,404226,76021 +h1,3875:6630773,35315592:0,0,0 +g1,3875:7579210,35315592 +g1,3875:8843793,35315592 +g1,3875:10108376,35315592 +g1,3875:11372959,35315592 +g1,3875:12637542,35315592 +g1,3875:13902125,35315592 +h1,3875:14850562,35315592:0,0,0 +k1,3875:32583030,35315592:17732468 +g1,3875:32583030,35315592 +) +(1,3875:6630773,35981770:25952256,379060,0 +h1,3875:6630773,35981770:0,0,0 +h1,3875:7263064,35981770:0,0,0 +k1,3875:32583028,35981770:25319964 +g1,3875:32583028,35981770 +) +(1,3875:6630773,36647948:25952256,410518,31456 +h1,3875:6630773,36647948:0,0,0 +g1,3875:7579210,36647948 +h1,3875:8211501,36647948:0,0,0 +k1,3875:32583029,36647948:24371528 +g1,3875:32583029,36647948 +) +(1,3875:6630773,37314126:25952256,404226,76021 +h1,3875:6630773,37314126:0,0,0 +g1,3875:7579210,37314126 +g1,3875:8843793,37314126 +g1,3875:9159939,37314126 +g1,3875:10740668,37314126 +h1,3875:12321396,37314126:0,0,0 +k1,3875:32583028,37314126:20261632 +g1,3875:32583028,37314126 +) +] +) +g1,3876:32583029,37390147 +g1,3876:6630773,37390147 +g1,3876:6630773,37390147 +g1,3876:32583029,37390147 +g1,3876:32583029,37390147 +) +h1,3876:6630773,37586755:0,0,0 +(1,3880:6630773,38835482:25952256,513147,134348 +h1,3879:6630773,38835482:983040,0,0 +g1,3879:8642072,38835482 +g1,3879:10766093,38835482 +g1,3879:11321182,38835482 +g1,3879:14143817,38835482 +g1,3879:15910667,38835482 +g1,3879:16465756,38835482 +g1,3879:17658511,38835482 +g1,3879:18726092,38835482 +g1,3879:20932033,38835482 +(1,3879:20932033,38835482:0,414482,115847 +r1,3879:22345434,38835482:1413401,530329,115847 +k1,3879:20932033,38835482:-1413401 +) +(1,3879:20932033,38835482:1413401,414482,115847 +k1,3879:20932033,38835482:3277 +h1,3879:22342157,38835482:0,411205,112570 +) +g1,3879:22544663,38835482 +g1,3879:23395320,38835482 +k1,3880:32583029,38835482:8555942 +g1,3880:32583029,38835482 +) +v1,3882:6630773,39908899:0,393216,0 +(1,3894:6630773,44261434:25952256,4745751,196608 +g1,3894:6630773,44261434 +g1,3894:6630773,44261434 +g1,3894:6434165,44261434 +(1,3894:6434165,44261434:0,4745751,196608 +r1,3894:32779637,44261434:26345472,4942359,196608 +k1,3894:6434165,44261434:-26345472 +) +(1,3894:6434165,44261434:26345472,4745751,196608 +[1,3894:6630773,44261434:25952256,4549143,0 +(1,3884:6630773,40122809:25952256,410518,101187 +(1,3883:6630773,40122809:0,0,0 +g1,3883:6630773,40122809 +g1,3883:6630773,40122809 +g1,3883:6303093,40122809 +(1,3883:6303093,40122809:0,0,0 +) +g1,3883:6630773,40122809 +) +g1,3884:9476085,40122809 +g1,3884:10424523,40122809 +k1,3884:10424523,40122809:0 +h1,3884:11689106,40122809:0,0,0 +k1,3884:32583030,40122809:20893924 +g1,3884:32583030,40122809 +) +(1,3885:6630773,40788987:25952256,404226,6290 +h1,3885:6630773,40788987:0,0,0 +h1,3885:8527647,40788987:0,0,0 +k1,3885:32583029,40788987:24055382 +g1,3885:32583029,40788987 +) +(1,3893:6630773,41520701:25952256,410518,31456 +(1,3887:6630773,41520701:0,0,0 +g1,3887:6630773,41520701 +g1,3887:6630773,41520701 +g1,3887:6303093,41520701 +(1,3887:6303093,41520701:0,0,0 +) +g1,3887:6630773,41520701 +) +g1,3893:7579210,41520701 +h1,3893:8211501,41520701:0,0,0 +k1,3893:32583029,41520701:24371528 +g1,3893:32583029,41520701 +) +(1,3893:6630773,42186879:25952256,404226,76021 +h1,3893:6630773,42186879:0,0,0 +g1,3893:7579210,42186879 +g1,3893:8843793,42186879 +g1,3893:9476085,42186879 +g1,3893:10108377,42186879 +g1,3893:10740669,42186879 +g1,3893:11372961,42186879 +g1,3893:12005253,42186879 +h1,3893:12321399,42186879:0,0,0 +k1,3893:32583029,42186879:20261630 +g1,3893:32583029,42186879 +) +(1,3893:6630773,42853057:25952256,379060,0 +h1,3893:6630773,42853057:0,0,0 +h1,3893:7263064,42853057:0,0,0 +k1,3893:32583028,42853057:25319964 +g1,3893:32583028,42853057 +) +(1,3893:6630773,43519235:25952256,410518,31456 +h1,3893:6630773,43519235:0,0,0 +g1,3893:7579210,43519235 +h1,3893:8211501,43519235:0,0,0 +k1,3893:32583029,43519235:24371528 +g1,3893:32583029,43519235 +) +(1,3893:6630773,44185413:25952256,404226,76021 +h1,3893:6630773,44185413:0,0,0 +g1,3893:7579210,44185413 +g1,3893:8843793,44185413 +g1,3893:9159939,44185413 +g1,3893:10740668,44185413 +h1,3893:12321396,44185413:0,0,0 +k1,3893:32583028,44185413:20261632 +g1,3893:32583028,44185413 +) +] +) +g1,3894:32583029,44261434 +g1,3894:6630773,44261434 +g1,3894:6630773,44261434 +g1,3894:32583029,44261434 +g1,3894:32583029,44261434 +) +h1,3894:6630773,44458042:0,0,0 +(1,3898:6630773,45706769:25952256,513147,102891 +h1,3897:6630773,45706769:983040,0,0 +g1,3897:9296777,45706769 +g1,3897:10600288,45706769 +g1,3897:11547283,45706769 +g1,3897:14037651,45706769 +g1,3897:15306428,45706769 +g1,3897:16829484,45706769 +g1,3897:17688005,45706769 +k1,3898:32583029,45706769:13397526 +g1,3898:32583029,45706769 +) +] +(1,3900:32583029,45706769:0,0,0 +g1,3900:32583029,45706769 +) +) +] +(1,3900:6630773,47279633:25952256,0,0 +h1,3900:6630773,47279633:25952256,0,0 +) +] +h1,3900:4262630,4025873:0,0,0 ] !21720 }74 -Input:481:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:482:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:483:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:484:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:485:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:486:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:487:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!606 +Input:477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {75 -[1,3959:4262630,47279633:28320399,43253760,0 -(1,3959:4262630,4025873:0,0,0 -[1,3959:-473657,4025873:25952256,0,0 -(1,3959:-473657,-710414:25952256,0,0 -h1,3959:-473657,-710414:0,0,0 -(1,3959:-473657,-710414:0,0,0 -(1,3959:-473657,-710414:0,0,0 -g1,3959:-473657,-710414 -(1,3959:-473657,-710414:65781,0,65781 -g1,3959:-407876,-710414 -[1,3959:-407876,-644633:0,0,0 +[1,3965:4262630,47279633:28320399,43253760,0 +(1,3965:4262630,4025873:0,0,0 +[1,3965:-473657,4025873:25952256,0,0 +(1,3965:-473657,-710414:25952256,0,0 +h1,3965:-473657,-710414:0,0,0 +(1,3965:-473657,-710414:0,0,0 +(1,3965:-473657,-710414:0,0,0 +g1,3965:-473657,-710414 +(1,3965:-473657,-710414:65781,0,65781 +g1,3965:-407876,-710414 +[1,3965:-407876,-644633:0,0,0 ] ) -k1,3959:-473657,-710414:-65781 +k1,3965:-473657,-710414:-65781 ) ) -k1,3959:25478599,-710414:25952256 -g1,3959:25478599,-710414 +k1,3965:25478599,-710414:25952256 +g1,3965:25478599,-710414 ) ] ) -[1,3959:6630773,47279633:25952256,43253760,0 -[1,3959:6630773,4812305:25952256,786432,0 -(1,3959:6630773,4812305:25952256,505283,134348 -(1,3959:6630773,4812305:25952256,505283,134348 -g1,3959:3078558,4812305 -[1,3959:3078558,4812305:0,0,0 -(1,3959:3078558,2439708:0,1703936,0 -k1,3959:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,3959:2537886,2439708:1179648,16384,0 +[1,3965:6630773,47279633:25952256,43253760,0 +[1,3965:6630773,4812305:25952256,786432,0 +(1,3965:6630773,4812305:25952256,505283,134348 +(1,3965:6630773,4812305:25952256,505283,134348 +g1,3965:3078558,4812305 +[1,3965:3078558,4812305:0,0,0 +(1,3965:3078558,2439708:0,1703936,0 +k1,3965:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,3965:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,3959:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,3965:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,3959:3078558,4812305:0,0,0 -(1,3959:3078558,2439708:0,1703936,0 -g1,3959:29030814,2439708 -g1,3959:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,3959:36151628,1915420:16384,1179648,0 +[1,3965:3078558,4812305:0,0,0 +(1,3965:3078558,2439708:0,1703936,0 +g1,3965:29030814,2439708 +g1,3965:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,3965:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,3959:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,3965:37855564,2439708:1179648,16384,0 ) ) -k1,3959:3078556,2439708:-34777008 +k1,3965:3078556,2439708:-34777008 ) ] -[1,3959:3078558,4812305:0,0,0 -(1,3959:3078558,49800853:0,16384,2228224 -k1,3959:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,3959:2537886,49800853:1179648,16384,0 +[1,3965:3078558,4812305:0,0,0 +(1,3965:3078558,49800853:0,16384,2228224 +k1,3965:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,3965:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,3959:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,3965:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,3959:3078558,4812305:0,0,0 -(1,3959:3078558,49800853:0,16384,2228224 -g1,3959:29030814,49800853 -g1,3959:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,3959:36151628,51504789:16384,1179648,0 +[1,3965:3078558,4812305:0,0,0 +(1,3965:3078558,49800853:0,16384,2228224 +g1,3965:29030814,49800853 +g1,3965:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,3965:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,3959:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,3965:37855564,49800853:1179648,16384,0 ) ) -k1,3959:3078556,49800853:-34777008 -) +k1,3965:3078556,49800853:-34777008 +) ] -g1,3959:6630773,4812305 -k1,3959:19562994,4812305:12135303 -g1,3959:20949735,4812305 -g1,3959:21598541,4812305 -g1,3959:24912696,4812305 -g1,3959:27600327,4812305 -g1,3959:29010006,4812305 -) -) -] -[1,3959:6630773,45706769:25952256,40108032,0 -(1,3959:6630773,45706769:25952256,40108032,0 -(1,3959:6630773,45706769:0,0,0 -g1,3959:6630773,45706769 -) -[1,3959:6630773,45706769:25952256,40108032,0 -v1,3894:6630773,6254097:0,393216,0 -(1,3911:6630773,13886665:25952256,8025784,196608 -g1,3911:6630773,13886665 -g1,3911:6630773,13886665 -g1,3911:6434165,13886665 -(1,3911:6434165,13886665:0,8025784,196608 -r1,3911:32779637,13886665:26345472,8222392,196608 -k1,3911:6434165,13886665:-26345472 -) -(1,3911:6434165,13886665:26345472,8025784,196608 -[1,3911:6630773,13886665:25952256,7829176,0 -(1,3896:6630773,6461715:25952256,404226,82312 -(1,3895:6630773,6461715:0,0,0 -g1,3895:6630773,6461715 -g1,3895:6630773,6461715 -g1,3895:6303093,6461715 -(1,3895:6303093,6461715:0,0,0 -) -g1,3895:6630773,6461715 -) -g1,3896:8843793,6461715 -g1,3896:9792231,6461715 -g1,3896:12953689,6461715 -g1,3896:14850564,6461715 -h1,3896:16747438,6461715:0,0,0 -k1,3896:32583029,6461715:15835591 -g1,3896:32583029,6461715 -) -(1,3897:6630773,7127893:25952256,404226,82312 -h1,3897:6630773,7127893:0,0,0 -g1,3897:8843793,7127893 -g1,3897:9792231,7127893 -g1,3897:12953689,7127893 -h1,3897:14534418,7127893:0,0,0 -k1,3897:32583030,7127893:18048612 -g1,3897:32583030,7127893 -) -(1,3898:6630773,7794071:25952256,404226,82312 -h1,3898:6630773,7794071:0,0,0 -g1,3898:10424521,7794071 -g1,3898:11372959,7794071 -g1,3898:13585980,7794071 -g1,3898:14218272,7794071 -g1,3898:16747438,7794071 -g1,3898:17379730,7794071 -g1,3898:18012022,7794071 -h1,3898:20225042,7794071:0,0,0 -k1,3898:32583029,7794071:12357987 -g1,3898:32583029,7794071 -) -(1,3899:6630773,8460249:25952256,404226,76021 -h1,3899:6630773,8460249:0,0,0 -k1,3899:6630773,8460249:0 -h1,3899:11689104,8460249:0,0,0 -k1,3899:32583028,8460249:20893924 -g1,3899:32583028,8460249 -) -(1,3910:6630773,9191963:25952256,410518,6290 -(1,3901:6630773,9191963:0,0,0 -g1,3901:6630773,9191963 -g1,3901:6630773,9191963 -g1,3901:6303093,9191963 -(1,3901:6303093,9191963:0,0,0 -) -g1,3901:6630773,9191963 -) -g1,3910:7579210,9191963 -g1,3910:9159939,9191963 -g1,3910:10108376,9191963 -h1,3910:10424522,9191963:0,0,0 -k1,3910:32583030,9191963:22158508 -g1,3910:32583030,9191963 -) -(1,3910:6630773,9858141:25952256,410518,31456 -h1,3910:6630773,9858141:0,0,0 -g1,3910:7579210,9858141 -g1,3910:7895356,9858141 -g1,3910:8527648,9858141 -g1,3910:10740668,9858141 -g1,3910:11689105,9858141 -h1,3910:12005251,9858141:0,0,0 -k1,3910:32583029,9858141:20577778 -g1,3910:32583029,9858141 -) -(1,3910:6630773,10524319:25952256,410518,31456 -h1,3910:6630773,10524319:0,0,0 -g1,3910:7579210,10524319 -g1,3910:7895356,10524319 -g1,3910:8211502,10524319 -g1,3910:9476085,10524319 -g1,3910:10108377,10524319 -g1,3910:11372960,10524319 -h1,3910:12321397,10524319:0,0,0 -k1,3910:32583029,10524319:20261632 -g1,3910:32583029,10524319 -) -(1,3910:6630773,11190497:25952256,410518,31456 -h1,3910:6630773,11190497:0,0,0 -g1,3910:7579210,11190497 -g1,3910:7895356,11190497 -g1,3910:8211502,11190497 -g1,3910:9476085,11190497 -g1,3910:10108377,11190497 -g1,3910:11372960,11190497 -h1,3910:12637543,11190497:0,0,0 -k1,3910:32583029,11190497:19945486 -g1,3910:32583029,11190497 -) -(1,3910:6630773,11856675:25952256,410518,31456 -h1,3910:6630773,11856675:0,0,0 -g1,3910:7579210,11856675 -g1,3910:7895356,11856675 -g1,3910:8211502,11856675 -g1,3910:9476085,11856675 -g1,3910:10108377,11856675 -g1,3910:11372960,11856675 -h1,3910:12953688,11856675:0,0,0 -k1,3910:32583028,11856675:19629340 -g1,3910:32583028,11856675 -) -(1,3910:6630773,12522853:25952256,410518,31456 -h1,3910:6630773,12522853:0,0,0 -g1,3910:7579210,12522853 -g1,3910:7895356,12522853 -g1,3910:8527648,12522853 -g1,3910:10740668,12522853 -g1,3910:11689105,12522853 -h1,3910:12005251,12522853:0,0,0 -k1,3910:32583029,12522853:20577778 -g1,3910:32583029,12522853 -) -(1,3910:6630773,13189031:25952256,410518,31456 -h1,3910:6630773,13189031:0,0,0 -g1,3910:7579210,13189031 -g1,3910:7895356,13189031 -g1,3910:8211502,13189031 -g1,3910:9476085,13189031 -g1,3910:10108377,13189031 -g1,3910:11372960,13189031 -h1,3910:12321397,13189031:0,0,0 -k1,3910:32583029,13189031:20261632 -g1,3910:32583029,13189031 -) -(1,3910:6630773,13855209:25952256,410518,31456 -h1,3910:6630773,13855209:0,0,0 -g1,3910:7579210,13855209 -g1,3910:7895356,13855209 -g1,3910:8211502,13855209 -g1,3910:9476085,13855209 -g1,3910:10108377,13855209 -g1,3910:11372960,13855209 -h1,3910:12637543,13855209:0,0,0 -k1,3910:32583029,13855209:19945486 -g1,3910:32583029,13855209 -) -] -) -g1,3911:32583029,13886665 -g1,3911:6630773,13886665 -g1,3911:6630773,13886665 -g1,3911:32583029,13886665 -g1,3911:32583029,13886665 -) -h1,3911:6630773,14083273:0,0,0 -v1,3914:6630773,15662699:0,393216,0 -(1,3930:6630773,22944888:25952256,7675405,616038 -g1,3930:6630773,22944888 -(1,3930:6630773,22944888:25952256,7675405,616038 -(1,3930:6630773,23560926:25952256,8291443,0 -[1,3930:6630773,23560926:25952256,8291443,0 -(1,3930:6630773,23534712:25952256,8239015,0 -r1,3930:6656987,23534712:26214,8239015,0 -[1,3930:6656987,23534712:25899828,8239015,0 -(1,3930:6656987,22944888:25899828,7059367,0 -[1,3930:7246811,22944888:24720180,7059367,0 -(1,3916:7246811,17047406:24720180,1161885,196608 -(1,3914:7246811,17047406:0,1161885,196608 -r1,3930:8794447,17047406:1547636,1358493,196608 -k1,3914:7246811,17047406:-1547636 -) -(1,3914:7246811,17047406:1547636,1161885,196608 -) -k1,3914:8993449,17047406:199002 -k1,3914:8993449,17047406:0 -k1,3915:10975686,17047406:199002 -k1,3915:13494008,17047406:199003 -k1,3915:15086961,17047406:199002 -k1,3915:16822127,17047406:199002 -k1,3915:18518627,17047406:199002 -k1,3915:19175727,17047406:199003 -k1,3915:19906226,17047406:199002 -k1,3915:23553077,17047406:199002 -k1,3915:25729300,17047406:199002 -k1,3915:26579731,17047406:199003 -k1,3915:28263123,17047406:199002 -k1,3915:29481210,17047406:199002 -k1,3915:31966991,17047406:0 -) -(1,3916:7246811,17888894:24720180,513147,134348 -k1,3915:8088644,17888894:182541 -k1,3915:10063595,17888894:182541 -k1,3915:10905428,17888894:182541 -k1,3915:13427605,17888894:182542 -k1,3915:16388873,17888894:182541 -k1,3915:17332942,17888894:182541 -(1,3915:17332942,17888894:0,452978,115847 -r1,3930:19098055,17888894:1765113,568825,115847 -k1,3915:17332942,17888894:-1765113 -) -(1,3915:17332942,17888894:1765113,452978,115847 -k1,3915:17332942,17888894:3277 -h1,3915:19094778,17888894:0,411205,112570 -) -k1,3915:19280596,17888894:182541 -k1,3915:20224665,17888894:182541 -k1,3915:22475522,17888894:182541 -k1,3915:23317356,17888894:182542 -k1,3915:23855757,17888894:182541 -(1,3915:23855757,17888894:0,452978,115847 -r1,3930:26324294,17888894:2468537,568825,115847 -k1,3915:23855757,17888894:-2468537 -) -(1,3915:23855757,17888894:2468537,452978,115847 -k1,3915:23855757,17888894:3277 -h1,3915:26321017,17888894:0,411205,112570 -) -k1,3915:26506835,17888894:182541 -k1,3915:29761704,17888894:182541 -k1,3915:31966991,17888894:0 -) -(1,3916:7246811,18730382:24720180,452978,126483 -g1,3915:8097468,18730382 -g1,3915:11577429,18730382 -(1,3915:11577429,18730382:0,452978,115847 -r1,3930:15101101,18730382:3523672,568825,115847 -k1,3915:11577429,18730382:-3523672 -) -(1,3915:11577429,18730382:3523672,452978,115847 -k1,3915:11577429,18730382:3277 -h1,3915:15097824,18730382:0,411205,112570 -) -k1,3916:31966991,18730382:16692220 -g1,3916:31966991,18730382 -) -v1,3918:7246811,19920848:0,393216,0 -(1,3927:7246811,22223992:24720180,2696360,196608 -g1,3927:7246811,22223992 -g1,3927:7246811,22223992 -g1,3927:7050203,22223992 -(1,3927:7050203,22223992:0,2696360,196608 -r1,3930:32163599,22223992:25113396,2892968,196608 -k1,3927:7050203,22223992:-25113396 -) -(1,3927:7050203,22223992:25113396,2696360,196608 -[1,3927:7246811,22223992:24720180,2499752,0 -(1,3920:7246811,20128466:24720180,404226,82312 -(1,3919:7246811,20128466:0,0,0 -g1,3919:7246811,20128466 -g1,3919:7246811,20128466 -g1,3919:6919131,20128466 -(1,3919:6919131,20128466:0,0,0 -) -g1,3919:7246811,20128466 -) -k1,3920:7246811,20128466:0 -g1,3920:12621288,20128466 -g1,3920:15782745,20128466 -g1,3920:16415037,20128466 -h1,3920:17047329,20128466:0,0,0 -k1,3920:31966991,20128466:14919662 -g1,3920:31966991,20128466 -) -(1,3926:7246811,20860180:24720180,410518,6290 -(1,3922:7246811,20860180:0,0,0 -g1,3922:7246811,20860180 -g1,3922:7246811,20860180 -g1,3922:6919131,20860180 -(1,3922:6919131,20860180:0,0,0 -) -g1,3922:7246811,20860180 -) -g1,3926:8195248,20860180 -g1,3926:9775977,20860180 -g1,3926:10724414,20860180 -h1,3926:11040560,20860180:0,0,0 -k1,3926:31966992,20860180:20926432 -g1,3926:31966992,20860180 -) -(1,3926:7246811,21526358:24720180,410518,31456 -h1,3926:7246811,21526358:0,0,0 -g1,3926:8195248,21526358 -g1,3926:8511394,21526358 -g1,3926:9143686,21526358 -g1,3926:11356706,21526358 -g1,3926:12305143,21526358 -h1,3926:12621289,21526358:0,0,0 -k1,3926:31966991,21526358:19345702 -g1,3926:31966991,21526358 -) -(1,3926:7246811,22192536:24720180,410518,31456 -h1,3926:7246811,22192536:0,0,0 -g1,3926:8195248,22192536 -g1,3926:8511394,22192536 -g1,3926:9143686,22192536 -g1,3926:11356706,22192536 -g1,3926:12305143,22192536 -h1,3926:12621289,22192536:0,0,0 -k1,3926:31966991,22192536:19345702 -g1,3926:31966991,22192536 -) -] -) -g1,3927:31966991,22223992 -g1,3927:7246811,22223992 -g1,3927:7246811,22223992 -g1,3927:31966991,22223992 -g1,3927:31966991,22223992 -) -h1,3927:7246811,22420600:0,0,0 -] -) -] -r1,3930:32583029,23534712:26214,8239015,0 -) -] -) -) -g1,3930:32583029,22944888 -) -h1,3930:6630773,23560926:0,0,0 -(1,3932:6630773,25652186:25952256,555811,12975 -(1,3932:6630773,25652186:2899444,534184,12975 -g1,3932:6630773,25652186 -g1,3932:9530217,25652186 -) -g1,3932:12261693,25652186 -k1,3932:32583029,25652186:18816826 -g1,3932:32583029,25652186 -) -(1,3934:6630773,26886890:25952256,505283,134348 -k1,3933:7266627,26886890:148266 -k1,3933:9532412,26886890:148317 -k1,3933:10674255,26886890:148317 -k1,3933:11926854,26886890:148317 -k1,3933:12822937,26886890:148317 -k1,3933:16763167,26886890:148317 -k1,3933:18921473,26886890:148317 -k1,3933:19425650,26886890:148317 -k1,3933:21446985,26886890:148316 -k1,3933:24781662,26886890:148317 -k1,3933:25546017,26886890:148317 -k1,3933:27579805,26886890:148317 -k1,3933:29959623,26886890:148317 -k1,3933:32583029,26886890:0 -) -(1,3934:6630773,27728378:25952256,513147,7863 -k1,3933:8178330,27728378:223730 -k1,3933:9393619,27728378:223729 -k1,3933:12141140,27728378:223730 -k1,3933:13853193,27728378:223730 -k1,3933:14945274,27728378:223729 -k1,3933:17880884,27728378:223730 -k1,3933:19123699,27728378:223730 -k1,3933:20653562,27728378:223730 -k1,3933:22532075,27728378:223729 -k1,3933:26272467,27728378:223730 -k1,3933:27112235,27728378:223730 -k1,3933:28355049,27728378:223729 -k1,3933:30612361,27728378:223730 -k1,3933:32583029,27728378:0 -) -(1,3934:6630773,28569866:25952256,505283,134348 -g1,3933:8097468,28569866 -g1,3933:8652557,28569866 -g1,3933:10724805,28569866 -k1,3934:32583030,28569866:20527844 -g1,3934:32583030,28569866 -) -v1,3936:6630773,29605014:0,393216,0 -(1,3951:6630773,35905226:25952256,6693428,196608 -g1,3951:6630773,35905226 -g1,3951:6630773,35905226 -g1,3951:6434165,35905226 -(1,3951:6434165,35905226:0,6693428,196608 -r1,3951:32779637,35905226:26345472,6890036,196608 -k1,3951:6434165,35905226:-26345472 -) -(1,3951:6434165,35905226:26345472,6693428,196608 -[1,3951:6630773,35905226:25952256,6496820,0 -(1,3938:6630773,29812632:25952256,404226,82312 -(1,3937:6630773,29812632:0,0,0 -g1,3937:6630773,29812632 -g1,3937:6630773,29812632 -g1,3937:6303093,29812632 -(1,3937:6303093,29812632:0,0,0 -) -g1,3937:6630773,29812632 -) -g1,3938:10424521,29812632 -g1,3938:11372959,29812632 -g1,3938:13585980,29812632 -g1,3938:14218272,29812632 -g1,3938:17379730,29812632 -g1,3938:19276605,29812632 -g1,3938:21805771,29812632 -g1,3938:22438063,29812632 -g1,3938:23070355,29812632 -g1,3938:26231813,29812632 -h1,3938:28128687,29812632:0,0,0 -k1,3938:32583029,29812632:4454342 -g1,3938:32583029,29812632 -) -(1,3939:6630773,30478810:25952256,404226,76021 -h1,3939:6630773,30478810:0,0,0 -k1,3939:6630773,30478810:0 -h1,3939:11689104,30478810:0,0,0 -k1,3939:32583028,30478810:20893924 -g1,3939:32583028,30478810 -) -(1,3950:6630773,31210524:25952256,410518,6290 -(1,3941:6630773,31210524:0,0,0 -g1,3941:6630773,31210524 -g1,3941:6630773,31210524 -g1,3941:6303093,31210524 -(1,3941:6303093,31210524:0,0,0 -) -g1,3941:6630773,31210524 -) -g1,3950:7579210,31210524 -g1,3950:9159939,31210524 -g1,3950:10108376,31210524 -h1,3950:10424522,31210524:0,0,0 -k1,3950:32583030,31210524:22158508 -g1,3950:32583030,31210524 -) -(1,3950:6630773,31876702:25952256,410518,31456 -h1,3950:6630773,31876702:0,0,0 -g1,3950:7579210,31876702 -g1,3950:7895356,31876702 -g1,3950:8527648,31876702 -g1,3950:10740668,31876702 -g1,3950:11689105,31876702 -h1,3950:12005251,31876702:0,0,0 -k1,3950:32583029,31876702:20577778 -g1,3950:32583029,31876702 -) -(1,3950:6630773,32542880:25952256,410518,31456 -h1,3950:6630773,32542880:0,0,0 -g1,3950:7579210,32542880 -g1,3950:7895356,32542880 -g1,3950:8211502,32542880 -g1,3950:9476085,32542880 -g1,3950:10108377,32542880 -g1,3950:11372960,32542880 -h1,3950:12321397,32542880:0,0,0 -k1,3950:32583029,32542880:20261632 -g1,3950:32583029,32542880 -) -(1,3950:6630773,33209058:25952256,410518,31456 -h1,3950:6630773,33209058:0,0,0 -g1,3950:7579210,33209058 -g1,3950:7895356,33209058 -g1,3950:8211502,33209058 -g1,3950:9476085,33209058 -g1,3950:10108377,33209058 -g1,3950:11372960,33209058 -h1,3950:12637543,33209058:0,0,0 -k1,3950:32583029,33209058:19945486 -g1,3950:32583029,33209058 -) -(1,3950:6630773,33875236:25952256,410518,31456 -h1,3950:6630773,33875236:0,0,0 -g1,3950:7579210,33875236 -g1,3950:7895356,33875236 -g1,3950:8211502,33875236 -g1,3950:9476085,33875236 -g1,3950:10108377,33875236 -g1,3950:11372960,33875236 -h1,3950:12953688,33875236:0,0,0 -k1,3950:32583028,33875236:19629340 -g1,3950:32583028,33875236 -) -(1,3950:6630773,34541414:25952256,410518,31456 -h1,3950:6630773,34541414:0,0,0 -g1,3950:7579210,34541414 -g1,3950:7895356,34541414 -g1,3950:8527648,34541414 -g1,3950:10740668,34541414 -g1,3950:11689105,34541414 -h1,3950:12005251,34541414:0,0,0 -k1,3950:32583029,34541414:20577778 -g1,3950:32583029,34541414 -) -(1,3950:6630773,35207592:25952256,410518,31456 -h1,3950:6630773,35207592:0,0,0 -g1,3950:7579210,35207592 -g1,3950:7895356,35207592 -g1,3950:8211502,35207592 -g1,3950:9476085,35207592 -g1,3950:10108377,35207592 -g1,3950:11372960,35207592 -h1,3950:12321397,35207592:0,0,0 -k1,3950:32583029,35207592:20261632 -g1,3950:32583029,35207592 -) -(1,3950:6630773,35873770:25952256,410518,31456 -h1,3950:6630773,35873770:0,0,0 -g1,3950:7579210,35873770 -g1,3950:7895356,35873770 -g1,3950:8211502,35873770 -g1,3950:9476085,35873770 -g1,3950:10108377,35873770 -g1,3950:11372960,35873770 -h1,3950:12637543,35873770:0,0,0 -k1,3950:32583029,35873770:19945486 -g1,3950:32583029,35873770 -) -] -) -g1,3951:32583029,35905226 -g1,3951:6630773,35905226 -g1,3951:6630773,35905226 -g1,3951:32583029,35905226 -g1,3951:32583029,35905226 -) -h1,3951:6630773,36101834:0,0,0 -v1,3955:6630773,37681260:0,393216,0 -(1,3956:6630773,45090731:25952256,7802687,616038 -g1,3956:6630773,45090731 -(1,3956:6630773,45090731:25952256,7802687,616038 -(1,3956:6630773,45706769:25952256,8418725,0 -[1,3956:6630773,45706769:25952256,8418725,0 -(1,3956:6630773,45680555:25952256,8366297,0 -r1,3956:6656987,45680555:26214,8366297,0 -[1,3956:6656987,45680555:25899828,8366297,0 -(1,3956:6656987,45090731:25899828,7186649,0 -[1,3956:7246811,45090731:24720180,7186649,0 -(1,3956:7246811,39065967:24720180,1161885,196608 -(1,3955:7246811,39065967:0,1161885,196608 -r1,3956:8794447,39065967:1547636,1358493,196608 -k1,3955:7246811,39065967:-1547636 -) -(1,3955:7246811,39065967:1547636,1161885,196608 -) -k1,3955:8988898,39065967:194451 -k1,3955:10380035,39065967:194450 -k1,3955:12083125,39065967:194451 -k1,3955:14476963,39065967:194450 -k1,3955:17885955,39065967:194451 -k1,3955:18739697,39065967:194450 -k1,3955:21887856,39065967:194451 -k1,3955:22741599,39065967:194451 -k1,3955:25053517,39065967:194450 -k1,3955:26571795,39065967:194451 -k1,3955:28501638,39065967:194450 -k1,3955:31435494,39065967:194451 -k1,3955:31966991,39065967:0 -) -(1,3956:7246811,39907455:24720180,513147,134348 -k1,3955:8526022,39907455:260126 -k1,3955:10439621,39907455:260126 -k1,3955:11385908,39907455:260125 -k1,3955:12593685,39907455:260126 -k1,3955:14978488,39907455:260126 -k1,3955:16736112,39907455:260126 -k1,3955:18068406,39907455:260125 -k1,3955:20700280,39907455:260126 -k1,3955:26333048,39907455:260126 -(1,3955:26333048,39907455:0,452978,115847 -r1,3956:31966991,39907455:5633943,568825,115847 -k1,3955:26333048,39907455:-5633943 -) -(1,3955:26333048,39907455:5633943,452978,115847 -k1,3955:26333048,39907455:3277 -h1,3955:31963714,39907455:0,411205,112570 -) -k1,3955:31966991,39907455:0 -) -(1,3956:7246811,40748943:24720180,513147,102891 -k1,3955:10039791,40748943:258703 -k1,3955:11317580,40748943:258704 -k1,3955:13817614,40748943:258703 -k1,3955:16699724,40748943:258704 -k1,3955:17617719,40748943:258703 -k1,3955:18895508,40748943:258704 -k1,3955:22457881,40748943:258703 -k1,3955:23883780,40748943:258703 -k1,3955:26027955,40748943:258704 -k1,3955:26818155,40748943:258703 -k1,3955:29549532,40748943:258704 -k1,3955:30975431,40748943:258703 -k1,3955:31966991,40748943:0 -) -(1,3956:7246811,41590431:24720180,505283,134348 -k1,3955:8627352,41590431:177300 -k1,3955:9336149,41590431:177300 -k1,3955:9869309,41590431:177300 -k1,3955:11213805,41590431:177300 -k1,3955:12179503,41590431:177300 -k1,3955:15310511,41590431:177300 -k1,3955:16592094,41590431:177301 -k1,3955:17517160,41590431:177300 -k1,3955:20666518,41590431:177300 -k1,3955:22579211,41590431:177300 -k1,3955:24458481,41590431:177300 -k1,3955:25654866,41590431:177300 -k1,3955:29046707,41590431:177300 -k1,3956:31966991,41590431:0 -) -(1,3956:7246811,42431919:24720180,505283,126483 -(1,3955:7246811,42431919:0,452978,115847 -r1,3956:14639313,42431919:7392502,568825,115847 -k1,3955:7246811,42431919:-7392502 -) -(1,3955:7246811,42431919:7392502,452978,115847 -k1,3955:7246811,42431919:3277 -h1,3955:14636036,42431919:0,411205,112570 -) -k1,3955:15040388,42431919:227405 -k1,3955:15737686,42431919:227405 -k1,3955:16496588,42431919:227405 -k1,3955:19933291,42431919:227405 -k1,3955:20812123,42431919:227404 -k1,3955:24298633,42431919:227405 -k1,3955:25810544,42431919:227405 -k1,3955:27734676,42431919:227405 -k1,3955:31966991,42431919:0 -) -(1,3956:7246811,43273407:24720180,513147,126483 -k1,3955:10717479,43273407:256127 -k1,3955:14378200,43273407:256126 -k1,3955:15625887,43273407:256127 -k1,3955:18168564,43273407:256126 -k1,3955:19149519,43273407:256127 -k1,3955:20690151,43273407:256126 -k1,3955:21965363,43273407:256127 -k1,3955:24897324,43273407:256126 -k1,3955:27900065,43273407:256127 -k1,3955:28687689,43273407:256127 -k1,3955:31315563,43273407:256126 -k1,3955:31966991,43273407:0 -) -(1,3956:7246811,44114895:24720180,505283,134348 -k1,3955:8520976,44114895:255080 -k1,3955:12079726,44114895:255080 -k1,3955:13502001,44114895:255079 -k1,3955:14953768,44114895:255080 -k1,3955:17870265,44114895:255080 -k1,3955:19820106,44114895:255080 -k1,3955:21473068,44114895:255079 -k1,3955:23150935,44114895:255080 -k1,3955:24425100,44114895:255080 -(1,3955:24425100,44114895:0,452978,115847 -r1,3956:26190214,44114895:1765114,568825,115847 -k1,3955:24425100,44114895:-1765114 -) -(1,3955:24425100,44114895:1765114,452978,115847 -g1,3955:25483513,44114895 -h1,3955:26186937,44114895:0,411205,112570 -) -k1,3955:26445294,44114895:255080 -k1,3955:29620657,44114895:255079 -k1,3955:30947906,44114895:255080 -k1,3955:31966991,44114895:0 -) -(1,3956:7246811,44956383:24720180,505283,134348 -g1,3955:9099513,44956383 -g1,3955:10807381,44956383 -g1,3955:13287918,44956383 -g1,3955:14138575,44956383 -(1,3955:14138575,44956383:0,452978,115847 -r1,3956:15200265,44956383:1061690,568825,115847 -k1,3955:14138575,44956383:-1061690 -) -(1,3955:14138575,44956383:1061690,452978,115847 -g1,3955:14845276,44956383 -h1,3955:15196988,44956383:0,411205,112570 -) -k1,3956:31966991,44956383:16593056 -g1,3956:31966991,44956383 -) -] -) -] -r1,3956:32583029,45680555:26214,8366297,0 -) -] -) -) -g1,3956:32583029,45090731 -) -h1,3956:6630773,45706769:0,0,0 -] -(1,3959:32583029,45706769:0,0,0 -g1,3959:32583029,45706769 -) -) +g1,3965:6630773,4812305 +k1,3965:19515153,4812305:12087462 +g1,3965:20901894,4812305 +g1,3965:21550700,4812305 +g1,3965:24864855,4812305 +g1,3965:27600327,4812305 +g1,3965:29010006,4812305 +) +) +] +[1,3965:6630773,45706769:25952256,40108032,0 +(1,3965:6630773,45706769:25952256,40108032,0 +(1,3965:6630773,45706769:0,0,0 +g1,3965:6630773,45706769 +) +[1,3965:6630773,45706769:25952256,40108032,0 +v1,3900:6630773,6254097:0,393216,0 +(1,3917:6630773,13886665:25952256,8025784,196608 +g1,3917:6630773,13886665 +g1,3917:6630773,13886665 +g1,3917:6434165,13886665 +(1,3917:6434165,13886665:0,8025784,196608 +r1,3917:32779637,13886665:26345472,8222392,196608 +k1,3917:6434165,13886665:-26345472 +) +(1,3917:6434165,13886665:26345472,8025784,196608 +[1,3917:6630773,13886665:25952256,7829176,0 +(1,3902:6630773,6461715:25952256,404226,82312 +(1,3901:6630773,6461715:0,0,0 +g1,3901:6630773,6461715 +g1,3901:6630773,6461715 +g1,3901:6303093,6461715 +(1,3901:6303093,6461715:0,0,0 +) +g1,3901:6630773,6461715 +) +g1,3902:8843793,6461715 +g1,3902:9792231,6461715 +g1,3902:12953689,6461715 +g1,3902:14850564,6461715 +h1,3902:16747438,6461715:0,0,0 +k1,3902:32583029,6461715:15835591 +g1,3902:32583029,6461715 +) +(1,3903:6630773,7127893:25952256,404226,82312 +h1,3903:6630773,7127893:0,0,0 +g1,3903:8843793,7127893 +g1,3903:9792231,7127893 +g1,3903:12953689,7127893 +h1,3903:14534418,7127893:0,0,0 +k1,3903:32583030,7127893:18048612 +g1,3903:32583030,7127893 +) +(1,3904:6630773,7794071:25952256,404226,82312 +h1,3904:6630773,7794071:0,0,0 +g1,3904:10424521,7794071 +g1,3904:11372959,7794071 +g1,3904:13585980,7794071 +g1,3904:14218272,7794071 +g1,3904:16747438,7794071 +g1,3904:17379730,7794071 +g1,3904:18012022,7794071 +h1,3904:20225042,7794071:0,0,0 +k1,3904:32583029,7794071:12357987 +g1,3904:32583029,7794071 +) +(1,3905:6630773,8460249:25952256,404226,76021 +h1,3905:6630773,8460249:0,0,0 +k1,3905:6630773,8460249:0 +h1,3905:11689104,8460249:0,0,0 +k1,3905:32583028,8460249:20893924 +g1,3905:32583028,8460249 +) +(1,3916:6630773,9191963:25952256,410518,6290 +(1,3907:6630773,9191963:0,0,0 +g1,3907:6630773,9191963 +g1,3907:6630773,9191963 +g1,3907:6303093,9191963 +(1,3907:6303093,9191963:0,0,0 +) +g1,3907:6630773,9191963 +) +g1,3916:7579210,9191963 +g1,3916:9159939,9191963 +g1,3916:10108376,9191963 +h1,3916:10424522,9191963:0,0,0 +k1,3916:32583030,9191963:22158508 +g1,3916:32583030,9191963 +) +(1,3916:6630773,9858141:25952256,410518,31456 +h1,3916:6630773,9858141:0,0,0 +g1,3916:7579210,9858141 +g1,3916:7895356,9858141 +g1,3916:8527648,9858141 +g1,3916:10740668,9858141 +g1,3916:11689105,9858141 +h1,3916:12005251,9858141:0,0,0 +k1,3916:32583029,9858141:20577778 +g1,3916:32583029,9858141 +) +(1,3916:6630773,10524319:25952256,410518,31456 +h1,3916:6630773,10524319:0,0,0 +g1,3916:7579210,10524319 +g1,3916:7895356,10524319 +g1,3916:8211502,10524319 +g1,3916:9476085,10524319 +g1,3916:10108377,10524319 +g1,3916:11372960,10524319 +h1,3916:12321397,10524319:0,0,0 +k1,3916:32583029,10524319:20261632 +g1,3916:32583029,10524319 +) +(1,3916:6630773,11190497:25952256,410518,31456 +h1,3916:6630773,11190497:0,0,0 +g1,3916:7579210,11190497 +g1,3916:7895356,11190497 +g1,3916:8211502,11190497 +g1,3916:9476085,11190497 +g1,3916:10108377,11190497 +g1,3916:11372960,11190497 +h1,3916:12637543,11190497:0,0,0 +k1,3916:32583029,11190497:19945486 +g1,3916:32583029,11190497 +) +(1,3916:6630773,11856675:25952256,410518,31456 +h1,3916:6630773,11856675:0,0,0 +g1,3916:7579210,11856675 +g1,3916:7895356,11856675 +g1,3916:8211502,11856675 +g1,3916:9476085,11856675 +g1,3916:10108377,11856675 +g1,3916:11372960,11856675 +h1,3916:12953688,11856675:0,0,0 +k1,3916:32583028,11856675:19629340 +g1,3916:32583028,11856675 +) +(1,3916:6630773,12522853:25952256,410518,31456 +h1,3916:6630773,12522853:0,0,0 +g1,3916:7579210,12522853 +g1,3916:7895356,12522853 +g1,3916:8527648,12522853 +g1,3916:10740668,12522853 +g1,3916:11689105,12522853 +h1,3916:12005251,12522853:0,0,0 +k1,3916:32583029,12522853:20577778 +g1,3916:32583029,12522853 +) +(1,3916:6630773,13189031:25952256,410518,31456 +h1,3916:6630773,13189031:0,0,0 +g1,3916:7579210,13189031 +g1,3916:7895356,13189031 +g1,3916:8211502,13189031 +g1,3916:9476085,13189031 +g1,3916:10108377,13189031 +g1,3916:11372960,13189031 +h1,3916:12321397,13189031:0,0,0 +k1,3916:32583029,13189031:20261632 +g1,3916:32583029,13189031 +) +(1,3916:6630773,13855209:25952256,410518,31456 +h1,3916:6630773,13855209:0,0,0 +g1,3916:7579210,13855209 +g1,3916:7895356,13855209 +g1,3916:8211502,13855209 +g1,3916:9476085,13855209 +g1,3916:10108377,13855209 +g1,3916:11372960,13855209 +h1,3916:12637543,13855209:0,0,0 +k1,3916:32583029,13855209:19945486 +g1,3916:32583029,13855209 +) +] +) +g1,3917:32583029,13886665 +g1,3917:6630773,13886665 +g1,3917:6630773,13886665 +g1,3917:32583029,13886665 +g1,3917:32583029,13886665 +) +h1,3917:6630773,14083273:0,0,0 +v1,3920:6630773,15662699:0,393216,0 +(1,3936:6630773,22944888:25952256,7675405,616038 +g1,3936:6630773,22944888 +(1,3936:6630773,22944888:25952256,7675405,616038 +(1,3936:6630773,23560926:25952256,8291443,0 +[1,3936:6630773,23560926:25952256,8291443,0 +(1,3936:6630773,23534712:25952256,8239015,0 +r1,3936:6656987,23534712:26214,8239015,0 +[1,3936:6656987,23534712:25899828,8239015,0 +(1,3936:6656987,22944888:25899828,7059367,0 +[1,3936:7246811,22944888:24720180,7059367,0 +(1,3922:7246811,17047406:24720180,1161885,196608 +(1,3920:7246811,17047406:0,1161885,196608 +r1,3936:8794447,17047406:1547636,1358493,196608 +k1,3920:7246811,17047406:-1547636 +) +(1,3920:7246811,17047406:1547636,1161885,196608 +) +k1,3920:8993449,17047406:199002 +k1,3920:8993449,17047406:0 +k1,3921:10975686,17047406:199002 +k1,3921:13494008,17047406:199003 +k1,3921:15086961,17047406:199002 +k1,3921:16822127,17047406:199002 +k1,3921:18518627,17047406:199002 +k1,3921:19175727,17047406:199003 +k1,3921:19906226,17047406:199002 +k1,3921:23553077,17047406:199002 +k1,3921:25729300,17047406:199002 +k1,3921:26579731,17047406:199003 +k1,3921:28263123,17047406:199002 +k1,3921:29481210,17047406:199002 +k1,3921:31966991,17047406:0 +) +(1,3922:7246811,17888894:24720180,513147,134348 +k1,3921:8088644,17888894:182541 +k1,3921:10063595,17888894:182541 +k1,3921:10905428,17888894:182541 +k1,3921:13427605,17888894:182542 +k1,3921:16388873,17888894:182541 +k1,3921:17332942,17888894:182541 +(1,3921:17332942,17888894:0,452978,115847 +r1,3936:19098055,17888894:1765113,568825,115847 +k1,3921:17332942,17888894:-1765113 +) +(1,3921:17332942,17888894:1765113,452978,115847 +k1,3921:17332942,17888894:3277 +h1,3921:19094778,17888894:0,411205,112570 +) +k1,3921:19280596,17888894:182541 +k1,3921:20224665,17888894:182541 +k1,3921:22475522,17888894:182541 +k1,3921:23317356,17888894:182542 +k1,3921:23855757,17888894:182541 +(1,3921:23855757,17888894:0,452978,115847 +r1,3936:26324294,17888894:2468537,568825,115847 +k1,3921:23855757,17888894:-2468537 +) +(1,3921:23855757,17888894:2468537,452978,115847 +k1,3921:23855757,17888894:3277 +h1,3921:26321017,17888894:0,411205,112570 +) +k1,3921:26506835,17888894:182541 +k1,3921:29761704,17888894:182541 +k1,3921:31966991,17888894:0 +) +(1,3922:7246811,18730382:24720180,452978,126483 +g1,3921:8097468,18730382 +g1,3921:11577429,18730382 +(1,3921:11577429,18730382:0,452978,115847 +r1,3936:15101101,18730382:3523672,568825,115847 +k1,3921:11577429,18730382:-3523672 +) +(1,3921:11577429,18730382:3523672,452978,115847 +k1,3921:11577429,18730382:3277 +h1,3921:15097824,18730382:0,411205,112570 +) +k1,3922:31966991,18730382:16692220 +g1,3922:31966991,18730382 +) +v1,3924:7246811,19920848:0,393216,0 +(1,3933:7246811,22223992:24720180,2696360,196608 +g1,3933:7246811,22223992 +g1,3933:7246811,22223992 +g1,3933:7050203,22223992 +(1,3933:7050203,22223992:0,2696360,196608 +r1,3936:32163599,22223992:25113396,2892968,196608 +k1,3933:7050203,22223992:-25113396 +) +(1,3933:7050203,22223992:25113396,2696360,196608 +[1,3933:7246811,22223992:24720180,2499752,0 +(1,3926:7246811,20128466:24720180,404226,82312 +(1,3925:7246811,20128466:0,0,0 +g1,3925:7246811,20128466 +g1,3925:7246811,20128466 +g1,3925:6919131,20128466 +(1,3925:6919131,20128466:0,0,0 +) +g1,3925:7246811,20128466 +) +k1,3926:7246811,20128466:0 +g1,3926:12621288,20128466 +g1,3926:15782745,20128466 +g1,3926:16415037,20128466 +h1,3926:17047329,20128466:0,0,0 +k1,3926:31966991,20128466:14919662 +g1,3926:31966991,20128466 +) +(1,3932:7246811,20860180:24720180,410518,6290 +(1,3928:7246811,20860180:0,0,0 +g1,3928:7246811,20860180 +g1,3928:7246811,20860180 +g1,3928:6919131,20860180 +(1,3928:6919131,20860180:0,0,0 +) +g1,3928:7246811,20860180 +) +g1,3932:8195248,20860180 +g1,3932:9775977,20860180 +g1,3932:10724414,20860180 +h1,3932:11040560,20860180:0,0,0 +k1,3932:31966992,20860180:20926432 +g1,3932:31966992,20860180 +) +(1,3932:7246811,21526358:24720180,410518,31456 +h1,3932:7246811,21526358:0,0,0 +g1,3932:8195248,21526358 +g1,3932:8511394,21526358 +g1,3932:9143686,21526358 +g1,3932:11356706,21526358 +g1,3932:12305143,21526358 +h1,3932:12621289,21526358:0,0,0 +k1,3932:31966991,21526358:19345702 +g1,3932:31966991,21526358 +) +(1,3932:7246811,22192536:24720180,410518,31456 +h1,3932:7246811,22192536:0,0,0 +g1,3932:8195248,22192536 +g1,3932:8511394,22192536 +g1,3932:9143686,22192536 +g1,3932:11356706,22192536 +g1,3932:12305143,22192536 +h1,3932:12621289,22192536:0,0,0 +k1,3932:31966991,22192536:19345702 +g1,3932:31966991,22192536 +) +] +) +g1,3933:31966991,22223992 +g1,3933:7246811,22223992 +g1,3933:7246811,22223992 +g1,3933:31966991,22223992 +g1,3933:31966991,22223992 +) +h1,3933:7246811,22420600:0,0,0 +] +) +] +r1,3936:32583029,23534712:26214,8239015,0 +) +] +) +) +g1,3936:32583029,22944888 +) +h1,3936:6630773,23560926:0,0,0 +(1,3938:6630773,25652186:25952256,555811,12975 +(1,3938:6630773,25652186:2899444,534184,12975 +g1,3938:6630773,25652186 +g1,3938:9530217,25652186 +) +g1,3938:12261693,25652186 +k1,3938:32583029,25652186:18816826 +g1,3938:32583029,25652186 +) +(1,3940:6630773,26886890:25952256,505283,134348 +k1,3939:7266627,26886890:148266 +k1,3939:9532412,26886890:148317 +k1,3939:10674255,26886890:148317 +k1,3939:11926854,26886890:148317 +k1,3939:12822937,26886890:148317 +k1,3939:16763167,26886890:148317 +k1,3939:18921473,26886890:148317 +k1,3939:19425650,26886890:148317 +k1,3939:21446985,26886890:148316 +k1,3939:24781662,26886890:148317 +k1,3939:25546017,26886890:148317 +k1,3939:27579805,26886890:148317 +k1,3939:29959623,26886890:148317 +k1,3939:32583029,26886890:0 +) +(1,3940:6630773,27728378:25952256,513147,7863 +k1,3939:8178330,27728378:223730 +k1,3939:9393619,27728378:223729 +k1,3939:12141140,27728378:223730 +k1,3939:13853193,27728378:223730 +k1,3939:14945274,27728378:223729 +k1,3939:17880884,27728378:223730 +k1,3939:19123699,27728378:223730 +k1,3939:20653562,27728378:223730 +k1,3939:22532075,27728378:223729 +k1,3939:26272467,27728378:223730 +k1,3939:27112235,27728378:223730 +k1,3939:28355049,27728378:223729 +k1,3939:30612361,27728378:223730 +k1,3939:32583029,27728378:0 +) +(1,3940:6630773,28569866:25952256,505283,134348 +g1,3939:8097468,28569866 +g1,3939:8652557,28569866 +g1,3939:10724805,28569866 +k1,3940:32583030,28569866:20527844 +g1,3940:32583030,28569866 +) +v1,3942:6630773,29605014:0,393216,0 +(1,3957:6630773,35905226:25952256,6693428,196608 +g1,3957:6630773,35905226 +g1,3957:6630773,35905226 +g1,3957:6434165,35905226 +(1,3957:6434165,35905226:0,6693428,196608 +r1,3957:32779637,35905226:26345472,6890036,196608 +k1,3957:6434165,35905226:-26345472 +) +(1,3957:6434165,35905226:26345472,6693428,196608 +[1,3957:6630773,35905226:25952256,6496820,0 +(1,3944:6630773,29812632:25952256,404226,82312 +(1,3943:6630773,29812632:0,0,0 +g1,3943:6630773,29812632 +g1,3943:6630773,29812632 +g1,3943:6303093,29812632 +(1,3943:6303093,29812632:0,0,0 +) +g1,3943:6630773,29812632 +) +g1,3944:10424521,29812632 +g1,3944:11372959,29812632 +g1,3944:13585980,29812632 +g1,3944:14218272,29812632 +g1,3944:17379730,29812632 +g1,3944:19276605,29812632 +g1,3944:21805771,29812632 +g1,3944:22438063,29812632 +g1,3944:23070355,29812632 +g1,3944:26231813,29812632 +h1,3944:28128687,29812632:0,0,0 +k1,3944:32583029,29812632:4454342 +g1,3944:32583029,29812632 +) +(1,3945:6630773,30478810:25952256,404226,76021 +h1,3945:6630773,30478810:0,0,0 +k1,3945:6630773,30478810:0 +h1,3945:11689104,30478810:0,0,0 +k1,3945:32583028,30478810:20893924 +g1,3945:32583028,30478810 +) +(1,3956:6630773,31210524:25952256,410518,6290 +(1,3947:6630773,31210524:0,0,0 +g1,3947:6630773,31210524 +g1,3947:6630773,31210524 +g1,3947:6303093,31210524 +(1,3947:6303093,31210524:0,0,0 +) +g1,3947:6630773,31210524 +) +g1,3956:7579210,31210524 +g1,3956:9159939,31210524 +g1,3956:10108376,31210524 +h1,3956:10424522,31210524:0,0,0 +k1,3956:32583030,31210524:22158508 +g1,3956:32583030,31210524 +) +(1,3956:6630773,31876702:25952256,410518,31456 +h1,3956:6630773,31876702:0,0,0 +g1,3956:7579210,31876702 +g1,3956:7895356,31876702 +g1,3956:8527648,31876702 +g1,3956:10740668,31876702 +g1,3956:11689105,31876702 +h1,3956:12005251,31876702:0,0,0 +k1,3956:32583029,31876702:20577778 +g1,3956:32583029,31876702 +) +(1,3956:6630773,32542880:25952256,410518,31456 +h1,3956:6630773,32542880:0,0,0 +g1,3956:7579210,32542880 +g1,3956:7895356,32542880 +g1,3956:8211502,32542880 +g1,3956:9476085,32542880 +g1,3956:10108377,32542880 +g1,3956:11372960,32542880 +h1,3956:12321397,32542880:0,0,0 +k1,3956:32583029,32542880:20261632 +g1,3956:32583029,32542880 +) +(1,3956:6630773,33209058:25952256,410518,31456 +h1,3956:6630773,33209058:0,0,0 +g1,3956:7579210,33209058 +g1,3956:7895356,33209058 +g1,3956:8211502,33209058 +g1,3956:9476085,33209058 +g1,3956:10108377,33209058 +g1,3956:11372960,33209058 +h1,3956:12637543,33209058:0,0,0 +k1,3956:32583029,33209058:19945486 +g1,3956:32583029,33209058 +) +(1,3956:6630773,33875236:25952256,410518,31456 +h1,3956:6630773,33875236:0,0,0 +g1,3956:7579210,33875236 +g1,3956:7895356,33875236 +g1,3956:8211502,33875236 +g1,3956:9476085,33875236 +g1,3956:10108377,33875236 +g1,3956:11372960,33875236 +h1,3956:12953688,33875236:0,0,0 +k1,3956:32583028,33875236:19629340 +g1,3956:32583028,33875236 +) +(1,3956:6630773,34541414:25952256,410518,31456 +h1,3956:6630773,34541414:0,0,0 +g1,3956:7579210,34541414 +g1,3956:7895356,34541414 +g1,3956:8527648,34541414 +g1,3956:10740668,34541414 +g1,3956:11689105,34541414 +h1,3956:12005251,34541414:0,0,0 +k1,3956:32583029,34541414:20577778 +g1,3956:32583029,34541414 +) +(1,3956:6630773,35207592:25952256,410518,31456 +h1,3956:6630773,35207592:0,0,0 +g1,3956:7579210,35207592 +g1,3956:7895356,35207592 +g1,3956:8211502,35207592 +g1,3956:9476085,35207592 +g1,3956:10108377,35207592 +g1,3956:11372960,35207592 +h1,3956:12321397,35207592:0,0,0 +k1,3956:32583029,35207592:20261632 +g1,3956:32583029,35207592 +) +(1,3956:6630773,35873770:25952256,410518,31456 +h1,3956:6630773,35873770:0,0,0 +g1,3956:7579210,35873770 +g1,3956:7895356,35873770 +g1,3956:8211502,35873770 +g1,3956:9476085,35873770 +g1,3956:10108377,35873770 +g1,3956:11372960,35873770 +h1,3956:12637543,35873770:0,0,0 +k1,3956:32583029,35873770:19945486 +g1,3956:32583029,35873770 +) +] +) +g1,3957:32583029,35905226 +g1,3957:6630773,35905226 +g1,3957:6630773,35905226 +g1,3957:32583029,35905226 +g1,3957:32583029,35905226 +) +h1,3957:6630773,36101834:0,0,0 +v1,3961:6630773,37681260:0,393216,0 +(1,3962:6630773,45090731:25952256,7802687,616038 +g1,3962:6630773,45090731 +(1,3962:6630773,45090731:25952256,7802687,616038 +(1,3962:6630773,45706769:25952256,8418725,0 +[1,3962:6630773,45706769:25952256,8418725,0 +(1,3962:6630773,45680555:25952256,8366297,0 +r1,3962:6656987,45680555:26214,8366297,0 +[1,3962:6656987,45680555:25899828,8366297,0 +(1,3962:6656987,45090731:25899828,7186649,0 +[1,3962:7246811,45090731:24720180,7186649,0 +(1,3962:7246811,39065967:24720180,1161885,196608 +(1,3961:7246811,39065967:0,1161885,196608 +r1,3962:8794447,39065967:1547636,1358493,196608 +k1,3961:7246811,39065967:-1547636 +) +(1,3961:7246811,39065967:1547636,1161885,196608 +) +k1,3961:8988898,39065967:194451 +k1,3961:10380035,39065967:194450 +k1,3961:12083125,39065967:194451 +k1,3961:14476963,39065967:194450 +k1,3961:17885955,39065967:194451 +k1,3961:18739697,39065967:194450 +k1,3961:21887856,39065967:194451 +k1,3961:22741599,39065967:194451 +k1,3961:25053517,39065967:194450 +k1,3961:26571795,39065967:194451 +k1,3961:28501638,39065967:194450 +k1,3961:31435494,39065967:194451 +k1,3961:31966991,39065967:0 +) +(1,3962:7246811,39907455:24720180,513147,134348 +k1,3961:8526022,39907455:260126 +k1,3961:10439621,39907455:260126 +k1,3961:11385908,39907455:260125 +k1,3961:12593685,39907455:260126 +k1,3961:14978488,39907455:260126 +k1,3961:16736112,39907455:260126 +k1,3961:18068406,39907455:260125 +k1,3961:20700280,39907455:260126 +k1,3961:26333048,39907455:260126 +(1,3961:26333048,39907455:0,452978,115847 +r1,3962:31966991,39907455:5633943,568825,115847 +k1,3961:26333048,39907455:-5633943 +) +(1,3961:26333048,39907455:5633943,452978,115847 +k1,3961:26333048,39907455:3277 +h1,3961:31963714,39907455:0,411205,112570 +) +k1,3961:31966991,39907455:0 +) +(1,3962:7246811,40748943:24720180,513147,102891 +k1,3961:10039791,40748943:258703 +k1,3961:11317580,40748943:258704 +k1,3961:13817614,40748943:258703 +k1,3961:16699724,40748943:258704 +k1,3961:17617719,40748943:258703 +k1,3961:18895508,40748943:258704 +k1,3961:22457881,40748943:258703 +k1,3961:23883780,40748943:258703 +k1,3961:26027955,40748943:258704 +k1,3961:26818155,40748943:258703 +k1,3961:29549532,40748943:258704 +k1,3961:30975431,40748943:258703 +k1,3961:31966991,40748943:0 +) +(1,3962:7246811,41590431:24720180,505283,134348 +k1,3961:8627352,41590431:177300 +k1,3961:9336149,41590431:177300 +k1,3961:9869309,41590431:177300 +k1,3961:11213805,41590431:177300 +k1,3961:12179503,41590431:177300 +k1,3961:15310511,41590431:177300 +k1,3961:16592094,41590431:177301 +k1,3961:17517160,41590431:177300 +k1,3961:20666518,41590431:177300 +k1,3961:22579211,41590431:177300 +k1,3961:24458481,41590431:177300 +k1,3961:25654866,41590431:177300 +k1,3961:29046707,41590431:177300 +k1,3962:31966991,41590431:0 +) +(1,3962:7246811,42431919:24720180,505283,126483 +(1,3961:7246811,42431919:0,452978,115847 +r1,3962:14639313,42431919:7392502,568825,115847 +k1,3961:7246811,42431919:-7392502 +) +(1,3961:7246811,42431919:7392502,452978,115847 +k1,3961:7246811,42431919:3277 +h1,3961:14636036,42431919:0,411205,112570 +) +k1,3961:15040388,42431919:227405 +k1,3961:15737686,42431919:227405 +k1,3961:16496588,42431919:227405 +k1,3961:19933291,42431919:227405 +k1,3961:20812123,42431919:227404 +k1,3961:24298633,42431919:227405 +k1,3961:25810544,42431919:227405 +k1,3961:27734676,42431919:227405 +k1,3961:31966991,42431919:0 +) +(1,3962:7246811,43273407:24720180,513147,126483 +k1,3961:10717479,43273407:256127 +k1,3961:14378200,43273407:256126 +k1,3961:15625887,43273407:256127 +k1,3961:18168564,43273407:256126 +k1,3961:19149519,43273407:256127 +k1,3961:20690151,43273407:256126 +k1,3961:21965363,43273407:256127 +k1,3961:24897324,43273407:256126 +k1,3961:27900065,43273407:256127 +k1,3961:28687689,43273407:256127 +k1,3961:31315563,43273407:256126 +k1,3961:31966991,43273407:0 +) +(1,3962:7246811,44114895:24720180,505283,134348 +k1,3961:8520976,44114895:255080 +k1,3961:12079726,44114895:255080 +k1,3961:13502001,44114895:255079 +k1,3961:14953768,44114895:255080 +k1,3961:17870265,44114895:255080 +k1,3961:19820106,44114895:255080 +k1,3961:21473068,44114895:255079 +k1,3961:23150935,44114895:255080 +k1,3961:24425100,44114895:255080 +(1,3961:24425100,44114895:0,452978,115847 +r1,3962:26190214,44114895:1765114,568825,115847 +k1,3961:24425100,44114895:-1765114 +) +(1,3961:24425100,44114895:1765114,452978,115847 +g1,3961:25483513,44114895 +h1,3961:26186937,44114895:0,411205,112570 +) +k1,3961:26445294,44114895:255080 +k1,3961:29620657,44114895:255079 +k1,3961:30947906,44114895:255080 +k1,3961:31966991,44114895:0 +) +(1,3962:7246811,44956383:24720180,505283,134348 +g1,3961:9099513,44956383 +g1,3961:10807381,44956383 +g1,3961:13287918,44956383 +g1,3961:14138575,44956383 +(1,3961:14138575,44956383:0,452978,115847 +r1,3962:15200265,44956383:1061690,568825,115847 +k1,3961:14138575,44956383:-1061690 +) +(1,3961:14138575,44956383:1061690,452978,115847 +g1,3961:14845276,44956383 +h1,3961:15196988,44956383:0,411205,112570 +) +k1,3962:31966991,44956383:16593056 +g1,3962:31966991,44956383 +) +] +) +] +r1,3962:32583029,45680555:26214,8366297,0 +) +] +) +) +g1,3962:32583029,45090731 +) +h1,3962:6630773,45706769:0,0,0 +] +(1,3965:32583029,45706769:0,0,0 +g1,3965:32583029,45706769 +) +) ] -(1,3959:6630773,47279633:25952256,0,0 -h1,3959:6630773,47279633:25952256,0,0 +(1,3965:6630773,47279633:25952256,0,0 +h1,3965:6630773,47279633:25952256,0,0 ) ] -h1,3959:4262630,4025873:0,0,0 +h1,3965:4262630,4025873:0,0,0 ] !22808 }75 -Input:488:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:489:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:490:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:491:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:492:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {76 -[1,4057:4262630,47279633:28320399,43253760,0 -(1,4057:4262630,4025873:0,0,0 -[1,4057:-473657,4025873:25952256,0,0 -(1,4057:-473657,-710414:25952256,0,0 -h1,4057:-473657,-710414:0,0,0 -(1,4057:-473657,-710414:0,0,0 -(1,4057:-473657,-710414:0,0,0 -g1,4057:-473657,-710414 -(1,4057:-473657,-710414:65781,0,65781 -g1,4057:-407876,-710414 -[1,4057:-407876,-644633:0,0,0 +[1,4063:4262630,47279633:28320399,43253760,0 +(1,4063:4262630,4025873:0,0,0 +[1,4063:-473657,4025873:25952256,0,0 +(1,4063:-473657,-710414:25952256,0,0 +h1,4063:-473657,-710414:0,0,0 +(1,4063:-473657,-710414:0,0,0 +(1,4063:-473657,-710414:0,0,0 +g1,4063:-473657,-710414 +(1,4063:-473657,-710414:65781,0,65781 +g1,4063:-407876,-710414 +[1,4063:-407876,-644633:0,0,0 ] ) -k1,4057:-473657,-710414:-65781 +k1,4063:-473657,-710414:-65781 ) ) -k1,4057:25478599,-710414:25952256 -g1,4057:25478599,-710414 +k1,4063:25478599,-710414:25952256 +g1,4063:25478599,-710414 ) ] ) -[1,4057:6630773,47279633:25952256,43253760,0 -[1,4057:6630773,4812305:25952256,786432,0 -(1,4057:6630773,4812305:25952256,485622,11795 -(1,4057:6630773,4812305:25952256,485622,11795 -g1,4057:3078558,4812305 -[1,4057:3078558,4812305:0,0,0 -(1,4057:3078558,2439708:0,1703936,0 -k1,4057:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4057:2537886,2439708:1179648,16384,0 +[1,4063:6630773,47279633:25952256,43253760,0 +[1,4063:6630773,4812305:25952256,786432,0 +(1,4063:6630773,4812305:25952256,485622,11795 +(1,4063:6630773,4812305:25952256,485622,11795 +g1,4063:3078558,4812305 +[1,4063:3078558,4812305:0,0,0 +(1,4063:3078558,2439708:0,1703936,0 +k1,4063:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4063:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4057:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4063:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4057:3078558,4812305:0,0,0 -(1,4057:3078558,2439708:0,1703936,0 -g1,4057:29030814,2439708 -g1,4057:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4057:36151628,1915420:16384,1179648,0 +[1,4063:3078558,4812305:0,0,0 +(1,4063:3078558,2439708:0,1703936,0 +g1,4063:29030814,2439708 +g1,4063:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4063:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4057:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4063:37855564,2439708:1179648,16384,0 ) ) -k1,4057:3078556,2439708:-34777008 +k1,4063:3078556,2439708:-34777008 ) ] -[1,4057:3078558,4812305:0,0,0 -(1,4057:3078558,49800853:0,16384,2228224 -k1,4057:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4057:2537886,49800853:1179648,16384,0 +[1,4063:3078558,4812305:0,0,0 +(1,4063:3078558,49800853:0,16384,2228224 +k1,4063:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4063:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4057:3078558,51504789:16384,1179648,0 -) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4063:3078558,51504789:16384,1179648,0 +) +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) -) -) -] -[1,4057:3078558,4812305:0,0,0 -(1,4057:3078558,49800853:0,16384,2228224 -g1,4057:29030814,49800853 -g1,4057:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4057:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +) +) +] +[1,4063:3078558,4812305:0,0,0 +(1,4063:3078558,49800853:0,16384,2228224 +g1,4063:29030814,49800853 +g1,4063:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4063:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4057:37855564,49800853:1179648,16384,0 -) -) -k1,4057:3078556,49800853:-34777008 -) -] -g1,4057:6630773,4812305 -g1,4057:6630773,4812305 -g1,4057:8203637,4812305 -k1,4057:31786111,4812305:23582474 -) -) -] -[1,4057:6630773,45706769:25952256,40108032,0 -(1,4057:6630773,45706769:25952256,40108032,0 -(1,4057:6630773,45706769:0,0,0 -g1,4057:6630773,45706769 -) -[1,4057:6630773,45706769:25952256,40108032,0 -v1,3959:6630773,6254097:0,393216,0 -(1,3977:6630773,16947004:25952256,11086123,616038 -g1,3977:6630773,16947004 -(1,3977:6630773,16947004:25952256,11086123,616038 -(1,3977:6630773,17563042:25952256,11702161,0 -[1,3977:6630773,17563042:25952256,11702161,0 -(1,3977:6630773,17536828:25952256,11649733,0 -r1,3977:6656987,17536828:26214,11649733,0 -[1,3977:6656987,17536828:25899828,11649733,0 -(1,3977:6656987,16947004:25899828,10470085,0 -[1,3977:7246811,16947004:24720180,10470085,0 -(1,3960:7246811,7564293:24720180,1087374,134348 -k1,3959:8592685,7564293:136171 -k1,3959:10362668,7564293:136170 -k1,3959:11314107,7564293:136171 -k1,3959:12620751,7564293:136171 -k1,3959:14827859,7564293:136170 -k1,3959:16415652,7564293:136171 -k1,3959:17211115,7564293:136171 -k1,3959:18366371,7564293:136171 -k1,3959:22019203,7564293:136170 -k1,3959:24023805,7564293:136171 -k1,3959:24811404,7564293:136171 -k1,3959:27285243,7564293:136170 -k1,3959:29421573,7564293:136171 -k1,3959:31966991,7564293:0 -) -(1,3960:7246811,8405781:24720180,513147,126483 -k1,3959:8379525,8405781:147053 -k1,3959:10124345,8405781:147053 -k1,3959:12540254,8405781:147053 -k1,3959:14235922,8405781:147052 -k1,3959:16063318,8405781:147053 -k1,3959:17401816,8405781:147053 -k1,3959:18208161,8405781:147053 -k1,3959:20240685,8405781:147053 -k1,3959:22170317,8405781:147053 -k1,3959:23768991,8405781:147052 -k1,3959:27102404,8405781:147053 -k1,3959:28381919,8405781:147053 -k1,3959:30713287,8405781:147053 -k1,3959:31966991,8405781:0 -) -(1,3960:7246811,9247269:24720180,505283,126483 -k1,3959:8805910,9247269:222165 -k1,3959:10120561,9247269:222166 -k1,3959:12782631,9247269:222165 -k1,3959:13687681,9247269:222165 -k1,3959:16240962,9247269:222165 -k1,3959:17893124,9247269:222166 -k1,3959:18766717,9247269:222165 -(1,3959:18766717,9247269:0,452978,115847 -r1,3977:21235254,9247269:2468537,568825,115847 -k1,3959:18766717,9247269:-2468537 -) -(1,3959:18766717,9247269:2468537,452978,115847 -k1,3959:18766717,9247269:3277 -h1,3959:21231977,9247269:0,411205,112570 -) -k1,3959:21631089,9247269:222165 -k1,3959:22536140,9247269:222166 -k1,3959:24188301,9247269:222165 -k1,3959:25061894,9247269:222165 -(1,3959:25061894,9247269:0,452978,115847 -r1,3977:26827007,9247269:1765113,568825,115847 -k1,3959:25061894,9247269:-1765113 -) -(1,3959:25061894,9247269:1765113,452978,115847 -k1,3959:25061894,9247269:3277 -h1,3959:26823730,9247269:0,411205,112570 -) -k1,3959:27049172,9247269:222165 -k1,3959:27922766,9247269:222166 -k1,3959:30947906,9247269:222165 -k1,3959:31966991,9247269:0 -) -(1,3960:7246811,10088757:24720180,513147,134348 -g1,3959:10377465,10088757 -g1,3959:11235986,10088757 -g1,3959:12454300,10088757 -g1,3959:15415872,10088757 -k1,3960:31966991,10088757:14087621 -g1,3960:31966991,10088757 -) -v1,3963:7246811,11279223:0,393216,0 -(1,3974:7246811,16226108:24720180,5340101,196608 -g1,3974:7246811,16226108 -g1,3974:7246811,16226108 -g1,3974:7050203,16226108 -(1,3974:7050203,16226108:0,5340101,196608 -r1,3977:32163599,16226108:25113396,5536709,196608 -k1,3974:7050203,16226108:-25113396 -) -(1,3974:7050203,16226108:25113396,5340101,196608 -[1,3974:7246811,16226108:24720180,5143493,0 -(1,3965:7246811,11486841:24720180,404226,82312 -(1,3964:7246811,11486841:0,0,0 -g1,3964:7246811,11486841 -g1,3964:7246811,11486841 -g1,3964:6919131,11486841 -(1,3964:6919131,11486841:0,0,0 -) -g1,3964:7246811,11486841 -) -g1,3965:11040559,11486841 -g1,3965:11988997,11486841 -g1,3965:14202018,11486841 -g1,3965:14834310,11486841 -g1,3965:17995768,11486841 -g1,3965:19892643,11486841 -g1,3965:22421809,11486841 -g1,3965:23054101,11486841 -g1,3965:23686393,11486841 -g1,3965:26847851,11486841 -h1,3965:28744725,11486841:0,0,0 -k1,3965:31966991,11486841:3222266 -g1,3965:31966991,11486841 -) -(1,3966:7246811,12153019:24720180,404226,76021 -h1,3966:7246811,12153019:0,0,0 -k1,3966:7246811,12153019:0 -h1,3966:12305142,12153019:0,0,0 -k1,3966:31966990,12153019:19661848 -g1,3966:31966990,12153019 -) -(1,3967:7246811,12819197:24720180,404226,76021 -h1,3967:7246811,12819197:0,0,0 -h1,3967:12305143,12819197:0,0,0 -k1,3967:31966991,12819197:19661848 -g1,3967:31966991,12819197 -) -(1,3968:7246811,13485375:24720180,404226,76021 -h1,3968:7246811,13485375:0,0,0 -h1,3968:11672851,13485375:0,0,0 -k1,3968:31966991,13485375:20294140 -g1,3968:31966991,13485375 -) -(1,3969:7246811,14151553:24720180,404226,76021 -h1,3969:7246811,14151553:0,0,0 -h1,3969:13253580,14151553:0,0,0 -k1,3969:31966992,14151553:18713412 -g1,3969:31966992,14151553 -) -(1,3970:7246811,14817731:24720180,404226,76021 -h1,3970:7246811,14817731:0,0,0 -h1,3970:13885871,14817731:0,0,0 -k1,3970:31966991,14817731:18081120 -g1,3970:31966991,14817731 -) -(1,3971:7246811,15483909:24720180,404226,76021 -h1,3971:7246811,15483909:0,0,0 -h1,3971:11672851,15483909:0,0,0 -k1,3971:31966991,15483909:20294140 -g1,3971:31966991,15483909 -) -(1,3972:7246811,16150087:24720180,404226,76021 -h1,3972:7246811,16150087:0,0,0 -h1,3972:13253579,16150087:0,0,0 -k1,3972:31966991,16150087:18713412 -g1,3972:31966991,16150087 -) -] -) -g1,3974:31966991,16226108 -g1,3974:7246811,16226108 -g1,3974:7246811,16226108 -g1,3974:31966991,16226108 -g1,3974:31966991,16226108 -) -h1,3974:7246811,16422716:0,0,0 -] -) -] -r1,3977:32583029,17536828:26214,11649733,0 -) -] -) -) -g1,3977:32583029,16947004 -) -h1,3977:6630773,17563042:0,0,0 -(1,3980:6630773,18837166:25952256,513147,102891 -h1,3979:6630773,18837166:983040,0,0 -k1,3979:11320764,18837166:234198 -k1,3979:12423313,18837166:234197 -k1,3979:14187777,18837166:234198 -k1,3979:15073403,18837166:234198 -k1,3979:17373950,18837166:234197 -k1,3979:17964008,18837166:234198 -k1,3979:19365401,18837166:234197 -k1,3979:20282484,18837166:234198 -k1,3979:20872542,18837166:234198 -k1,3979:23224207,18837166:234197 -k1,3979:26389830,18837166:234198 -k1,3979:27283320,18837166:234198 -k1,3979:28841344,18837166:234197 -k1,3979:31085531,18837166:234198 -k1,3979:32583029,18837166:0 -) -(1,3980:6630773,19678654:25952256,505283,126483 -g1,3979:9619870,19678654 -(1,3979:9619870,19678654:0,452978,115847 -r1,3979:12440119,19678654:2820249,568825,115847 -k1,3979:9619870,19678654:-2820249 -) -(1,3979:9619870,19678654:2820249,452978,115847 -k1,3979:9619870,19678654:3277 -h1,3979:12436842,19678654:0,411205,112570 -) -g1,3979:12639348,19678654 -g1,3979:13370074,19678654 -g1,3979:15117919,19678654 -g1,3979:17497531,19678654 -g1,3979:18444526,19678654 -g1,3979:21488673,19678654 -g1,3979:23201128,19678654 -g1,3979:24016395,19678654 -g1,3979:25709190,19678654 -k1,3980:32583029,19678654:5002786 -g1,3980:32583029,19678654 -) -(1,3982:6630773,20520142:25952256,513147,126483 -h1,3981:6630773,20520142:983040,0,0 -k1,3981:8994738,20520142:184238 -k1,3981:10172503,20520142:184239 -(1,3981:10172503,20520142:0,452978,115847 -r1,3981:14047887,20520142:3875384,568825,115847 -k1,3981:10172503,20520142:-3875384 -) -(1,3981:10172503,20520142:3875384,452978,115847 -k1,3981:10172503,20520142:3277 -h1,3981:14044610,20520142:0,411205,112570 -) -k1,3981:14232125,20520142:184238 -k1,3981:14947861,20520142:184239 -k1,3981:15487959,20520142:184238 -k1,3981:17789666,20520142:184239 -k1,3981:20219823,20520142:184238 -k1,3981:21063354,20520142:184239 -k1,3981:22745090,20520142:184238 -k1,3981:24001498,20520142:184239 -k1,3981:24951852,20520142:184238 -k1,3981:26155176,20520142:184239 -k1,3981:29629321,20520142:184238 -k1,3981:32583029,20520142:0 -) -(1,3982:6630773,21361630:25952256,513147,134348 -k1,3981:7892694,21361630:270361 -k1,3981:11137734,21361630:270361 -k1,3981:13777877,21361630:270361 -k1,3981:14676073,21361630:270361 -k1,3981:16648404,21361630:270361 -k1,3981:19047374,21361630:270361 -k1,3981:22007334,21361630:270362 -k1,3981:24185448,21361630:270361 -k1,3981:25447369,21361630:270361 -k1,3981:26483846,21361630:270361 -k1,3981:27413499,21361630:270361 -k1,3981:28702945,21361630:270361 -k1,3981:30626779,21361630:270361 -k1,3981:32583029,21361630:0 -) -(1,3982:6630773,22203118:25952256,513147,134348 -g1,3981:9501905,22203118 -g1,3981:10720219,22203118 -g1,3981:11912974,22203118 -g1,3981:12763631,22203118 -g1,3981:13710626,22203118 -g1,3981:17344597,22203118 -g1,3981:18811292,22203118 -g1,3981:19366381,22203118 -g1,3981:22540289,22203118 -k1,3982:32583029,22203118:7891193 -g1,3982:32583029,22203118 -) -v1,3984:6630773,23301932:0,393216,0 -(1,4029:6630773,37969153:25952256,15060437,196608 -g1,4029:6630773,37969153 -g1,4029:6630773,37969153 -g1,4029:6434165,37969153 -(1,4029:6434165,37969153:0,15060437,196608 -r1,4029:32779637,37969153:26345472,15257045,196608 -k1,4029:6434165,37969153:-26345472 -) -(1,4029:6434165,37969153:26345472,15060437,196608 -[1,4029:6630773,37969153:25952256,14863829,0 -(1,3986:6630773,23509550:25952256,404226,76021 -(1,3985:6630773,23509550:0,0,0 -g1,3985:6630773,23509550 -g1,3985:6630773,23509550 -g1,3985:6303093,23509550 -(1,3985:6303093,23509550:0,0,0 -) -g1,3985:6630773,23509550 -) -g1,3986:8527647,23509550 -g1,3986:9476085,23509550 -k1,3986:9476085,23509550:0 -h1,3986:15482853,23509550:0,0,0 -k1,3986:32583029,23509550:17100176 -g1,3986:32583029,23509550 -) -(1,3987:6630773,24175728:25952256,284164,6290 -h1,3987:6630773,24175728:0,0,0 -h1,3987:8211501,24175728:0,0,0 -k1,3987:32583029,24175728:24371528 -g1,3987:32583029,24175728 -) -(1,3992:6630773,24907442:25952256,388497,9436 -(1,3989:6630773,24907442:0,0,0 -g1,3989:6630773,24907442 -g1,3989:6630773,24907442 -g1,3989:6303093,24907442 -(1,3989:6303093,24907442:0,0,0 -) -g1,3989:6630773,24907442 -) -g1,3992:7579210,24907442 -g1,3992:7895356,24907442 -g1,3992:8211502,24907442 -g1,3992:8527648,24907442 -g1,3992:9476085,24907442 -g1,3992:9792231,24907442 -g1,3992:10108377,24907442 -g1,3992:10424523,24907442 -g1,3992:11372960,24907442 -g1,3992:11689106,24907442 -g1,3992:12005252,24907442 -g1,3992:12321398,24907442 -g1,3992:13269835,24907442 -g1,3992:13585981,24907442 -g1,3992:13902127,24907442 -g1,3992:14218273,24907442 -g1,3992:15166710,24907442 -g1,3992:15482856,24907442 -g1,3992:15799002,24907442 -g1,3992:16115148,24907442 -h1,3992:16747439,24907442:0,0,0 -k1,3992:32583029,24907442:15835590 -g1,3992:32583029,24907442 -) -(1,3992:6630773,25573620:25952256,404226,6290 -h1,3992:6630773,25573620:0,0,0 -g1,3992:7579210,25573620 -g1,3992:7895356,25573620 -g1,3992:8211502,25573620 -g1,3992:9476085,25573620 -g1,3992:9792231,25573620 -g1,3992:11372960,25573620 -g1,3992:13269834,25573620 -g1,3992:13585980,25573620 -g1,3992:13902126,25573620 -g1,3992:15166709,25573620 -g1,3992:15482855,25573620 -h1,3992:16747438,25573620:0,0,0 -k1,3992:32583029,25573620:15835591 -g1,3992:32583029,25573620 -) -(1,3994:6630773,26895158:25952256,404226,76021 -(1,3993:6630773,26895158:0,0,0 -g1,3993:6630773,26895158 -g1,3993:6630773,26895158 -g1,3993:6303093,26895158 -(1,3993:6303093,26895158:0,0,0 -) -g1,3993:6630773,26895158 -) -k1,3994:6630773,26895158:0 -h1,3994:12953687,26895158:0,0,0 -k1,3994:32583029,26895158:19629342 -g1,3994:32583029,26895158 -) -(1,3998:6630773,27626872:25952256,404226,76021 -(1,3996:6630773,27626872:0,0,0 -g1,3996:6630773,27626872 -g1,3996:6630773,27626872 -g1,3996:6303093,27626872 -(1,3996:6303093,27626872:0,0,0 -) -g1,3996:6630773,27626872 -) -g1,3998:7579210,27626872 -g1,3998:8843793,27626872 -h1,3998:10108376,27626872:0,0,0 -k1,3998:32583028,27626872:22474652 -g1,3998:32583028,27626872 -) -(1,4000:6630773,28948410:25952256,404226,76021 -(1,3999:6630773,28948410:0,0,0 -g1,3999:6630773,28948410 -g1,3999:6630773,28948410 -g1,3999:6303093,28948410 -(1,3999:6303093,28948410:0,0,0 -) -g1,3999:6630773,28948410 -) -k1,4000:6630773,28948410:0 -h1,4000:11056813,28948410:0,0,0 -k1,4000:32583029,28948410:21526216 -g1,4000:32583029,28948410 -) -(1,4004:6630773,29680124:25952256,404226,76021 -(1,4002:6630773,29680124:0,0,0 -g1,4002:6630773,29680124 -g1,4002:6630773,29680124 -g1,4002:6303093,29680124 -(1,4002:6303093,29680124:0,0,0 -) -g1,4002:6630773,29680124 -) -g1,4004:7579210,29680124 -g1,4004:8843793,29680124 -h1,4004:10424521,29680124:0,0,0 -k1,4004:32583029,29680124:22158508 -g1,4004:32583029,29680124 -) -(1,4006:6630773,31001662:25952256,404226,76021 -(1,4005:6630773,31001662:0,0,0 -g1,4005:6630773,31001662 -g1,4005:6630773,31001662 -g1,4005:6303093,31001662 -(1,4005:6303093,31001662:0,0,0 -) -g1,4005:6630773,31001662 -) -k1,4006:6630773,31001662:0 -h1,4006:12005250,31001662:0,0,0 -k1,4006:32583030,31001662:20577780 -g1,4006:32583030,31001662 -) -(1,4010:6630773,31733376:25952256,404226,76021 -(1,4008:6630773,31733376:0,0,0 -g1,4008:6630773,31733376 -g1,4008:6630773,31733376 -g1,4008:6303093,31733376 -(1,4008:6303093,31733376:0,0,0 -) -g1,4008:6630773,31733376 -) -g1,4010:7579210,31733376 -g1,4010:8843793,31733376 -h1,4010:10740667,31733376:0,0,0 -k1,4010:32583029,31733376:21842362 -g1,4010:32583029,31733376 -) -(1,4012:6630773,33054914:25952256,404226,76021 -(1,4011:6630773,33054914:0,0,0 -g1,4011:6630773,33054914 -g1,4011:6630773,33054914 -g1,4011:6303093,33054914 -(1,4011:6303093,33054914:0,0,0 -) -g1,4011:6630773,33054914 -) -k1,4012:6630773,33054914:0 -h1,4012:10108376,33054914:0,0,0 -k1,4012:32583028,33054914:22474652 -g1,4012:32583028,33054914 -) -(1,4016:6630773,33786628:25952256,404226,76021 -(1,4014:6630773,33786628:0,0,0 -g1,4014:6630773,33786628 -g1,4014:6630773,33786628 -g1,4014:6303093,33786628 -(1,4014:6303093,33786628:0,0,0 -) -g1,4014:6630773,33786628 -) -g1,4016:7579210,33786628 -g1,4016:8843793,33786628 -h1,4016:12321395,33786628:0,0,0 -k1,4016:32583029,33786628:20261634 -g1,4016:32583029,33786628 -) -(1,4018:6630773,35108166:25952256,404226,76021 -(1,4017:6630773,35108166:0,0,0 -g1,4017:6630773,35108166 -g1,4017:6630773,35108166 -g1,4017:6303093,35108166 -(1,4017:6303093,35108166:0,0,0 -) -g1,4017:6630773,35108166 -) -k1,4018:6630773,35108166:0 -h1,4018:12321395,35108166:0,0,0 -k1,4018:32583029,35108166:20261634 -g1,4018:32583029,35108166 -) -(1,4022:6630773,35839880:25952256,404226,76021 -(1,4020:6630773,35839880:0,0,0 -g1,4020:6630773,35839880 -g1,4020:6630773,35839880 -g1,4020:6303093,35839880 -(1,4020:6303093,35839880:0,0,0 -) -g1,4020:6630773,35839880 -) -g1,4022:7579210,35839880 -g1,4022:8843793,35839880 -g1,4022:10108376,35839880 -h1,4022:11056813,35839880:0,0,0 -k1,4022:32583029,35839880:21526216 -g1,4022:32583029,35839880 -) -(1,4024:6630773,37161418:25952256,404226,76021 -(1,4023:6630773,37161418:0,0,0 -g1,4023:6630773,37161418 -g1,4023:6630773,37161418 -g1,4023:6303093,37161418 -(1,4023:6303093,37161418:0,0,0 -) -g1,4023:6630773,37161418 -) -k1,4024:6630773,37161418:0 -h1,4024:10424521,37161418:0,0,0 -k1,4024:32583029,37161418:22158508 -g1,4024:32583029,37161418 -) -(1,4028:6630773,37893132:25952256,404226,76021 -(1,4026:6630773,37893132:0,0,0 -g1,4026:6630773,37893132 -g1,4026:6630773,37893132 -g1,4026:6303093,37893132 -(1,4026:6303093,37893132:0,0,0 -) -g1,4026:6630773,37893132 -) -g1,4028:7579210,37893132 -g1,4028:8843793,37893132 -g1,4028:10424522,37893132 -g1,4028:12005251,37893132 -g1,4028:13585980,37893132 -g1,4028:15166709,37893132 -h1,4028:16431292,37893132:0,0,0 -k1,4028:32583029,37893132:16151737 -g1,4028:32583029,37893132 -) -] -) -g1,4029:32583029,37969153 -g1,4029:6630773,37969153 -g1,4029:6630773,37969153 -g1,4029:32583029,37969153 -g1,4029:32583029,37969153 -) -h1,4029:6630773,38165761:0,0,0 -(1,4033:6630773,39439885:25952256,513147,7863 -h1,4032:6630773,39439885:983040,0,0 -k1,4032:9017812,39439885:207312 -k1,4032:12003851,39439885:207312 -k1,4032:13891506,39439885:207312 -k1,4032:14630315,39439885:207312 -k1,4032:15193487,39439885:207312 -k1,4032:17378677,39439885:207313 -k1,4032:18979940,39439885:207312 -k1,4032:21346008,39439885:207312 -k1,4032:24176726,39439885:207312 -k1,4032:27426875,39439885:207312 -k1,4032:28587736,39439885:207312 -k1,4032:29887533,39439885:207312 -k1,4033:32583029,39439885:0 -) -(1,4033:6630773,40281373:25952256,513147,134348 -(1,4032:6630773,40281373:0,452978,115847 -r1,4032:8395886,40281373:1765113,568825,115847 -k1,4032:6630773,40281373:-1765113 -) -(1,4032:6630773,40281373:1765113,452978,115847 -k1,4032:6630773,40281373:3277 -h1,4032:8392609,40281373:0,411205,112570 -) -k1,4032:8568361,40281373:172475 -k1,4032:9392265,40281373:172476 -k1,4032:11420064,40281373:172475 -k1,4032:12658811,40281373:172476 -k1,4032:14161667,40281373:172475 -k1,4032:15537383,40281373:172475 -k1,4032:17687736,40281373:172476 -k1,4032:19991442,40281373:172475 -k1,4032:20815346,40281373:172476 -k1,4032:22006906,40281373:172475 -k1,4032:24614699,40281373:172475 -k1,4032:25954371,40281373:172476 -k1,4032:27323533,40281373:172475 -k1,4032:29564325,40281373:172476 -k1,4032:30728360,40281373:172475 -k1,4032:32583029,40281373:0 -) -(1,4033:6630773,41122861:25952256,513147,102891 -k1,4032:7712571,41122861:272428 -k1,4032:9004084,41122861:272428 -k1,4032:11344828,41122861:272428 -k1,4032:12276548,41122861:272428 -k1,4032:13542502,41122861:272428 -k1,4032:16684096,41122861:272428 -k1,4032:18654562,41122861:272428 -k1,4032:21884630,41122861:272428 -k1,4032:23846576,41122861:272428 -k1,4032:26935086,41122861:272428 -k1,4032:28199074,41122861:272428 -k1,4032:29984728,41122861:272428 -k1,4032:31204807,41122861:272428 -k1,4033:32583029,41122861:0 -) -(1,4033:6630773,41964349:25952256,513147,134348 -k1,4032:9381592,41964349:215231 -k1,4032:11678246,41964349:215231 -k1,4032:12847026,41964349:215231 -k1,4032:14166539,41964349:215231 -k1,4032:16412731,41964349:215231 -k1,4032:17647047,41964349:215231 -k1,4032:20815985,41964349:215230 -k1,4032:21690508,41964349:215231 -k1,4032:22924824,41964349:215231 -k1,4032:25117932,41964349:215231 -k1,4032:27189143,41964349:215231 -k1,4032:29962900,41964349:215231 -k1,4032:32583029,41964349:0 -) -(1,4033:6630773,42805837:25952256,505283,7863 -g1,4032:9256800,42805837 -g1,4032:10138914,42805837 -k1,4033:32583029,42805837:20202128 -g1,4033:32583029,42805837 -) -v1,4035:6630773,43904651:0,393216,0 -(1,4057:6630773,45510161:25952256,1998726,196608 -g1,4057:6630773,45510161 -g1,4057:6630773,45510161 -g1,4057:6434165,45510161 -(1,4057:6434165,45510161:0,1998726,196608 -r1,4057:32779637,45510161:26345472,2195334,196608 -k1,4057:6434165,45510161:-26345472 -) -(1,4057:6434165,45510161:26345472,1998726,196608 -[1,4057:6630773,45510161:25952256,1802118,0 -(1,4037:6630773,44112269:25952256,404226,76021 -(1,4036:6630773,44112269:0,0,0 -g1,4036:6630773,44112269 -g1,4036:6630773,44112269 -g1,4036:6303093,44112269 -(1,4036:6303093,44112269:0,0,0 -) -g1,4036:6630773,44112269 -) -k1,4037:6630773,44112269:0 -h1,4037:9792230,44112269:0,0,0 -k1,4037:32583030,44112269:22790800 -g1,4037:32583030,44112269 -) -(1,4042:6630773,44843983:25952256,404226,76021 -(1,4039:6630773,44843983:0,0,0 -g1,4039:6630773,44843983 -g1,4039:6630773,44843983 -g1,4039:6303093,44843983 -(1,4039:6303093,44843983:0,0,0 -) -g1,4039:6630773,44843983 -) -g1,4042:7579210,44843983 -g1,4042:7895356,44843983 -g1,4042:9792230,44843983 -g1,4042:11056813,44843983 -g1,4042:12953687,44843983 -g1,4042:14218270,44843983 -g1,4042:15798999,44843983 -g1,4042:17695873,44843983 -g1,4042:18960456,44843983 -h1,4042:20225039,44843983:0,0,0 -k1,4042:32583029,44843983:12357990 -g1,4042:32583029,44843983 -) -(1,4042:6630773,45510161:25952256,404226,82312 -h1,4042:6630773,45510161:0,0,0 -g1,4042:7579210,45510161 -g1,4042:7895356,45510161 -g1,4042:8527648,45510161 -g1,4042:11056814,45510161 -g1,4042:14218271,45510161 -g1,4042:15482854,45510161 -g1,4042:17379728,45510161 -g1,4042:18960457,45510161 -g1,4042:20541186,45510161 -g1,4042:22121915,45510161 -g1,4042:23702644,45510161 -h1,4042:24651081,45510161:0,0,0 -k1,4042:32583029,45510161:7931948 -g1,4042:32583029,45510161 -) -] -) -g1,4057:32583029,45510161 -g1,4057:6630773,45510161 -g1,4057:6630773,45510161 -g1,4057:32583029,45510161 -g1,4057:32583029,45510161 -) -] -(1,4057:32583029,45706769:0,0,0 -g1,4057:32583029,45706769 -) -) -] -(1,4057:6630773,47279633:25952256,0,0 -h1,4057:6630773,47279633:25952256,0,0 -) -] -h1,4057:4262630,4025873:0,0,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4063:37855564,49800853:1179648,16384,0 +) +) +k1,4063:3078556,49800853:-34777008 +) +] +g1,4063:6630773,4812305 +g1,4063:6630773,4812305 +g1,4063:8203637,4812305 +k1,4063:31786111,4812305:23582474 +) +) +] +[1,4063:6630773,45706769:25952256,40108032,0 +(1,4063:6630773,45706769:25952256,40108032,0 +(1,4063:6630773,45706769:0,0,0 +g1,4063:6630773,45706769 +) +[1,4063:6630773,45706769:25952256,40108032,0 +v1,3965:6630773,6254097:0,393216,0 +(1,3983:6630773,16947004:25952256,11086123,616038 +g1,3983:6630773,16947004 +(1,3983:6630773,16947004:25952256,11086123,616038 +(1,3983:6630773,17563042:25952256,11702161,0 +[1,3983:6630773,17563042:25952256,11702161,0 +(1,3983:6630773,17536828:25952256,11649733,0 +r1,3983:6656987,17536828:26214,11649733,0 +[1,3983:6656987,17536828:25899828,11649733,0 +(1,3983:6656987,16947004:25899828,10470085,0 +[1,3983:7246811,16947004:24720180,10470085,0 +(1,3966:7246811,7564293:24720180,1087374,134348 +k1,3965:8592685,7564293:136171 +k1,3965:10362668,7564293:136170 +k1,3965:11314107,7564293:136171 +k1,3965:12620751,7564293:136171 +k1,3965:14827859,7564293:136170 +k1,3965:16415652,7564293:136171 +k1,3965:17211115,7564293:136171 +k1,3965:18366371,7564293:136171 +k1,3965:22019203,7564293:136170 +k1,3965:24023805,7564293:136171 +k1,3965:24811404,7564293:136171 +k1,3965:27285243,7564293:136170 +k1,3965:29421573,7564293:136171 +k1,3965:31966991,7564293:0 +) +(1,3966:7246811,8405781:24720180,513147,126483 +k1,3965:8379525,8405781:147053 +k1,3965:10124345,8405781:147053 +k1,3965:12540254,8405781:147053 +k1,3965:14235922,8405781:147052 +k1,3965:16063318,8405781:147053 +k1,3965:17401816,8405781:147053 +k1,3965:18208161,8405781:147053 +k1,3965:20240685,8405781:147053 +k1,3965:22170317,8405781:147053 +k1,3965:23768991,8405781:147052 +k1,3965:27102404,8405781:147053 +k1,3965:28381919,8405781:147053 +k1,3965:30713287,8405781:147053 +k1,3965:31966991,8405781:0 +) +(1,3966:7246811,9247269:24720180,505283,126483 +k1,3965:8805910,9247269:222165 +k1,3965:10120561,9247269:222166 +k1,3965:12782631,9247269:222165 +k1,3965:13687681,9247269:222165 +k1,3965:16240962,9247269:222165 +k1,3965:17893124,9247269:222166 +k1,3965:18766717,9247269:222165 +(1,3965:18766717,9247269:0,452978,115847 +r1,3983:21235254,9247269:2468537,568825,115847 +k1,3965:18766717,9247269:-2468537 +) +(1,3965:18766717,9247269:2468537,452978,115847 +k1,3965:18766717,9247269:3277 +h1,3965:21231977,9247269:0,411205,112570 +) +k1,3965:21631089,9247269:222165 +k1,3965:22536140,9247269:222166 +k1,3965:24188301,9247269:222165 +k1,3965:25061894,9247269:222165 +(1,3965:25061894,9247269:0,452978,115847 +r1,3983:26827007,9247269:1765113,568825,115847 +k1,3965:25061894,9247269:-1765113 +) +(1,3965:25061894,9247269:1765113,452978,115847 +k1,3965:25061894,9247269:3277 +h1,3965:26823730,9247269:0,411205,112570 +) +k1,3965:27049172,9247269:222165 +k1,3965:27922766,9247269:222166 +k1,3965:30947906,9247269:222165 +k1,3965:31966991,9247269:0 +) +(1,3966:7246811,10088757:24720180,513147,134348 +g1,3965:10377465,10088757 +g1,3965:11235986,10088757 +g1,3965:12454300,10088757 +g1,3965:15415872,10088757 +k1,3966:31966991,10088757:14087621 +g1,3966:31966991,10088757 +) +v1,3969:7246811,11279223:0,393216,0 +(1,3980:7246811,16226108:24720180,5340101,196608 +g1,3980:7246811,16226108 +g1,3980:7246811,16226108 +g1,3980:7050203,16226108 +(1,3980:7050203,16226108:0,5340101,196608 +r1,3983:32163599,16226108:25113396,5536709,196608 +k1,3980:7050203,16226108:-25113396 +) +(1,3980:7050203,16226108:25113396,5340101,196608 +[1,3980:7246811,16226108:24720180,5143493,0 +(1,3971:7246811,11486841:24720180,404226,82312 +(1,3970:7246811,11486841:0,0,0 +g1,3970:7246811,11486841 +g1,3970:7246811,11486841 +g1,3970:6919131,11486841 +(1,3970:6919131,11486841:0,0,0 +) +g1,3970:7246811,11486841 +) +g1,3971:11040559,11486841 +g1,3971:11988997,11486841 +g1,3971:14202018,11486841 +g1,3971:14834310,11486841 +g1,3971:17995768,11486841 +g1,3971:19892643,11486841 +g1,3971:22421809,11486841 +g1,3971:23054101,11486841 +g1,3971:23686393,11486841 +g1,3971:26847851,11486841 +h1,3971:28744725,11486841:0,0,0 +k1,3971:31966991,11486841:3222266 +g1,3971:31966991,11486841 +) +(1,3972:7246811,12153019:24720180,404226,76021 +h1,3972:7246811,12153019:0,0,0 +k1,3972:7246811,12153019:0 +h1,3972:12305142,12153019:0,0,0 +k1,3972:31966990,12153019:19661848 +g1,3972:31966990,12153019 +) +(1,3973:7246811,12819197:24720180,404226,76021 +h1,3973:7246811,12819197:0,0,0 +h1,3973:12305143,12819197:0,0,0 +k1,3973:31966991,12819197:19661848 +g1,3973:31966991,12819197 +) +(1,3974:7246811,13485375:24720180,404226,76021 +h1,3974:7246811,13485375:0,0,0 +h1,3974:11672851,13485375:0,0,0 +k1,3974:31966991,13485375:20294140 +g1,3974:31966991,13485375 +) +(1,3975:7246811,14151553:24720180,404226,76021 +h1,3975:7246811,14151553:0,0,0 +h1,3975:13253580,14151553:0,0,0 +k1,3975:31966992,14151553:18713412 +g1,3975:31966992,14151553 +) +(1,3976:7246811,14817731:24720180,404226,76021 +h1,3976:7246811,14817731:0,0,0 +h1,3976:13885871,14817731:0,0,0 +k1,3976:31966991,14817731:18081120 +g1,3976:31966991,14817731 +) +(1,3977:7246811,15483909:24720180,404226,76021 +h1,3977:7246811,15483909:0,0,0 +h1,3977:11672851,15483909:0,0,0 +k1,3977:31966991,15483909:20294140 +g1,3977:31966991,15483909 +) +(1,3978:7246811,16150087:24720180,404226,76021 +h1,3978:7246811,16150087:0,0,0 +h1,3978:13253579,16150087:0,0,0 +k1,3978:31966991,16150087:18713412 +g1,3978:31966991,16150087 +) +] +) +g1,3980:31966991,16226108 +g1,3980:7246811,16226108 +g1,3980:7246811,16226108 +g1,3980:31966991,16226108 +g1,3980:31966991,16226108 +) +h1,3980:7246811,16422716:0,0,0 +] +) +] +r1,3983:32583029,17536828:26214,11649733,0 +) +] +) +) +g1,3983:32583029,16947004 +) +h1,3983:6630773,17563042:0,0,0 +(1,3986:6630773,18837166:25952256,513147,102891 +h1,3985:6630773,18837166:983040,0,0 +k1,3985:11320764,18837166:234198 +k1,3985:12423313,18837166:234197 +k1,3985:14187777,18837166:234198 +k1,3985:15073403,18837166:234198 +k1,3985:17373950,18837166:234197 +k1,3985:17964008,18837166:234198 +k1,3985:19365401,18837166:234197 +k1,3985:20282484,18837166:234198 +k1,3985:20872542,18837166:234198 +k1,3985:23224207,18837166:234197 +k1,3985:26389830,18837166:234198 +k1,3985:27283320,18837166:234198 +k1,3985:28841344,18837166:234197 +k1,3985:31085531,18837166:234198 +k1,3985:32583029,18837166:0 +) +(1,3986:6630773,19678654:25952256,505283,126483 +g1,3985:9619870,19678654 +(1,3985:9619870,19678654:0,452978,115847 +r1,3985:12440119,19678654:2820249,568825,115847 +k1,3985:9619870,19678654:-2820249 +) +(1,3985:9619870,19678654:2820249,452978,115847 +k1,3985:9619870,19678654:3277 +h1,3985:12436842,19678654:0,411205,112570 +) +g1,3985:12639348,19678654 +g1,3985:13370074,19678654 +g1,3985:15117919,19678654 +g1,3985:17497531,19678654 +g1,3985:18444526,19678654 +g1,3985:21488673,19678654 +g1,3985:23201128,19678654 +g1,3985:24016395,19678654 +g1,3985:25709190,19678654 +k1,3986:32583029,19678654:5002786 +g1,3986:32583029,19678654 +) +(1,3988:6630773,20520142:25952256,513147,126483 +h1,3987:6630773,20520142:983040,0,0 +k1,3987:8994738,20520142:184238 +k1,3987:10172503,20520142:184239 +(1,3987:10172503,20520142:0,452978,115847 +r1,3987:14047887,20520142:3875384,568825,115847 +k1,3987:10172503,20520142:-3875384 +) +(1,3987:10172503,20520142:3875384,452978,115847 +k1,3987:10172503,20520142:3277 +h1,3987:14044610,20520142:0,411205,112570 +) +k1,3987:14232125,20520142:184238 +k1,3987:14947861,20520142:184239 +k1,3987:15487959,20520142:184238 +k1,3987:17789666,20520142:184239 +k1,3987:20219823,20520142:184238 +k1,3987:21063354,20520142:184239 +k1,3987:22745090,20520142:184238 +k1,3987:24001498,20520142:184239 +k1,3987:24951852,20520142:184238 +k1,3987:26155176,20520142:184239 +k1,3987:29629321,20520142:184238 +k1,3987:32583029,20520142:0 +) +(1,3988:6630773,21361630:25952256,513147,134348 +k1,3987:7892694,21361630:270361 +k1,3987:11137734,21361630:270361 +k1,3987:13777877,21361630:270361 +k1,3987:14676073,21361630:270361 +k1,3987:16648404,21361630:270361 +k1,3987:19047374,21361630:270361 +k1,3987:22007334,21361630:270362 +k1,3987:24185448,21361630:270361 +k1,3987:25447369,21361630:270361 +k1,3987:26483846,21361630:270361 +k1,3987:27413499,21361630:270361 +k1,3987:28702945,21361630:270361 +k1,3987:30626779,21361630:270361 +k1,3987:32583029,21361630:0 +) +(1,3988:6630773,22203118:25952256,513147,134348 +g1,3987:9501905,22203118 +g1,3987:10720219,22203118 +g1,3987:11912974,22203118 +g1,3987:12763631,22203118 +g1,3987:13710626,22203118 +g1,3987:17344597,22203118 +g1,3987:18811292,22203118 +g1,3987:19366381,22203118 +g1,3987:22540289,22203118 +k1,3988:32583029,22203118:7891193 +g1,3988:32583029,22203118 +) +v1,3990:6630773,23301932:0,393216,0 +(1,4035:6630773,37969153:25952256,15060437,196608 +g1,4035:6630773,37969153 +g1,4035:6630773,37969153 +g1,4035:6434165,37969153 +(1,4035:6434165,37969153:0,15060437,196608 +r1,4035:32779637,37969153:26345472,15257045,196608 +k1,4035:6434165,37969153:-26345472 +) +(1,4035:6434165,37969153:26345472,15060437,196608 +[1,4035:6630773,37969153:25952256,14863829,0 +(1,3992:6630773,23509550:25952256,404226,76021 +(1,3991:6630773,23509550:0,0,0 +g1,3991:6630773,23509550 +g1,3991:6630773,23509550 +g1,3991:6303093,23509550 +(1,3991:6303093,23509550:0,0,0 +) +g1,3991:6630773,23509550 +) +g1,3992:8527647,23509550 +g1,3992:9476085,23509550 +k1,3992:9476085,23509550:0 +h1,3992:15482853,23509550:0,0,0 +k1,3992:32583029,23509550:17100176 +g1,3992:32583029,23509550 +) +(1,3993:6630773,24175728:25952256,284164,6290 +h1,3993:6630773,24175728:0,0,0 +h1,3993:8211501,24175728:0,0,0 +k1,3993:32583029,24175728:24371528 +g1,3993:32583029,24175728 +) +(1,3998:6630773,24907442:25952256,388497,9436 +(1,3995:6630773,24907442:0,0,0 +g1,3995:6630773,24907442 +g1,3995:6630773,24907442 +g1,3995:6303093,24907442 +(1,3995:6303093,24907442:0,0,0 +) +g1,3995:6630773,24907442 +) +g1,3998:7579210,24907442 +g1,3998:7895356,24907442 +g1,3998:8211502,24907442 +g1,3998:8527648,24907442 +g1,3998:9476085,24907442 +g1,3998:9792231,24907442 +g1,3998:10108377,24907442 +g1,3998:10424523,24907442 +g1,3998:11372960,24907442 +g1,3998:11689106,24907442 +g1,3998:12005252,24907442 +g1,3998:12321398,24907442 +g1,3998:13269835,24907442 +g1,3998:13585981,24907442 +g1,3998:13902127,24907442 +g1,3998:14218273,24907442 +g1,3998:15166710,24907442 +g1,3998:15482856,24907442 +g1,3998:15799002,24907442 +g1,3998:16115148,24907442 +h1,3998:16747439,24907442:0,0,0 +k1,3998:32583029,24907442:15835590 +g1,3998:32583029,24907442 +) +(1,3998:6630773,25573620:25952256,404226,6290 +h1,3998:6630773,25573620:0,0,0 +g1,3998:7579210,25573620 +g1,3998:7895356,25573620 +g1,3998:8211502,25573620 +g1,3998:9476085,25573620 +g1,3998:9792231,25573620 +g1,3998:11372960,25573620 +g1,3998:13269834,25573620 +g1,3998:13585980,25573620 +g1,3998:13902126,25573620 +g1,3998:15166709,25573620 +g1,3998:15482855,25573620 +h1,3998:16747438,25573620:0,0,0 +k1,3998:32583029,25573620:15835591 +g1,3998:32583029,25573620 +) +(1,4000:6630773,26895158:25952256,404226,76021 +(1,3999:6630773,26895158:0,0,0 +g1,3999:6630773,26895158 +g1,3999:6630773,26895158 +g1,3999:6303093,26895158 +(1,3999:6303093,26895158:0,0,0 +) +g1,3999:6630773,26895158 +) +k1,4000:6630773,26895158:0 +h1,4000:12953687,26895158:0,0,0 +k1,4000:32583029,26895158:19629342 +g1,4000:32583029,26895158 +) +(1,4004:6630773,27626872:25952256,404226,76021 +(1,4002:6630773,27626872:0,0,0 +g1,4002:6630773,27626872 +g1,4002:6630773,27626872 +g1,4002:6303093,27626872 +(1,4002:6303093,27626872:0,0,0 +) +g1,4002:6630773,27626872 +) +g1,4004:7579210,27626872 +g1,4004:8843793,27626872 +h1,4004:10108376,27626872:0,0,0 +k1,4004:32583028,27626872:22474652 +g1,4004:32583028,27626872 +) +(1,4006:6630773,28948410:25952256,404226,76021 +(1,4005:6630773,28948410:0,0,0 +g1,4005:6630773,28948410 +g1,4005:6630773,28948410 +g1,4005:6303093,28948410 +(1,4005:6303093,28948410:0,0,0 +) +g1,4005:6630773,28948410 +) +k1,4006:6630773,28948410:0 +h1,4006:11056813,28948410:0,0,0 +k1,4006:32583029,28948410:21526216 +g1,4006:32583029,28948410 +) +(1,4010:6630773,29680124:25952256,404226,76021 +(1,4008:6630773,29680124:0,0,0 +g1,4008:6630773,29680124 +g1,4008:6630773,29680124 +g1,4008:6303093,29680124 +(1,4008:6303093,29680124:0,0,0 +) +g1,4008:6630773,29680124 +) +g1,4010:7579210,29680124 +g1,4010:8843793,29680124 +h1,4010:10424521,29680124:0,0,0 +k1,4010:32583029,29680124:22158508 +g1,4010:32583029,29680124 +) +(1,4012:6630773,31001662:25952256,404226,76021 +(1,4011:6630773,31001662:0,0,0 +g1,4011:6630773,31001662 +g1,4011:6630773,31001662 +g1,4011:6303093,31001662 +(1,4011:6303093,31001662:0,0,0 +) +g1,4011:6630773,31001662 +) +k1,4012:6630773,31001662:0 +h1,4012:12005250,31001662:0,0,0 +k1,4012:32583030,31001662:20577780 +g1,4012:32583030,31001662 +) +(1,4016:6630773,31733376:25952256,404226,76021 +(1,4014:6630773,31733376:0,0,0 +g1,4014:6630773,31733376 +g1,4014:6630773,31733376 +g1,4014:6303093,31733376 +(1,4014:6303093,31733376:0,0,0 +) +g1,4014:6630773,31733376 +) +g1,4016:7579210,31733376 +g1,4016:8843793,31733376 +h1,4016:10740667,31733376:0,0,0 +k1,4016:32583029,31733376:21842362 +g1,4016:32583029,31733376 +) +(1,4018:6630773,33054914:25952256,404226,76021 +(1,4017:6630773,33054914:0,0,0 +g1,4017:6630773,33054914 +g1,4017:6630773,33054914 +g1,4017:6303093,33054914 +(1,4017:6303093,33054914:0,0,0 +) +g1,4017:6630773,33054914 +) +k1,4018:6630773,33054914:0 +h1,4018:10108376,33054914:0,0,0 +k1,4018:32583028,33054914:22474652 +g1,4018:32583028,33054914 +) +(1,4022:6630773,33786628:25952256,404226,76021 +(1,4020:6630773,33786628:0,0,0 +g1,4020:6630773,33786628 +g1,4020:6630773,33786628 +g1,4020:6303093,33786628 +(1,4020:6303093,33786628:0,0,0 +) +g1,4020:6630773,33786628 +) +g1,4022:7579210,33786628 +g1,4022:8843793,33786628 +h1,4022:12321395,33786628:0,0,0 +k1,4022:32583029,33786628:20261634 +g1,4022:32583029,33786628 +) +(1,4024:6630773,35108166:25952256,404226,76021 +(1,4023:6630773,35108166:0,0,0 +g1,4023:6630773,35108166 +g1,4023:6630773,35108166 +g1,4023:6303093,35108166 +(1,4023:6303093,35108166:0,0,0 +) +g1,4023:6630773,35108166 +) +k1,4024:6630773,35108166:0 +h1,4024:12321395,35108166:0,0,0 +k1,4024:32583029,35108166:20261634 +g1,4024:32583029,35108166 +) +(1,4028:6630773,35839880:25952256,404226,76021 +(1,4026:6630773,35839880:0,0,0 +g1,4026:6630773,35839880 +g1,4026:6630773,35839880 +g1,4026:6303093,35839880 +(1,4026:6303093,35839880:0,0,0 +) +g1,4026:6630773,35839880 +) +g1,4028:7579210,35839880 +g1,4028:8843793,35839880 +g1,4028:10108376,35839880 +h1,4028:11056813,35839880:0,0,0 +k1,4028:32583029,35839880:21526216 +g1,4028:32583029,35839880 +) +(1,4030:6630773,37161418:25952256,404226,76021 +(1,4029:6630773,37161418:0,0,0 +g1,4029:6630773,37161418 +g1,4029:6630773,37161418 +g1,4029:6303093,37161418 +(1,4029:6303093,37161418:0,0,0 +) +g1,4029:6630773,37161418 +) +k1,4030:6630773,37161418:0 +h1,4030:10424521,37161418:0,0,0 +k1,4030:32583029,37161418:22158508 +g1,4030:32583029,37161418 +) +(1,4034:6630773,37893132:25952256,404226,76021 +(1,4032:6630773,37893132:0,0,0 +g1,4032:6630773,37893132 +g1,4032:6630773,37893132 +g1,4032:6303093,37893132 +(1,4032:6303093,37893132:0,0,0 +) +g1,4032:6630773,37893132 +) +g1,4034:7579210,37893132 +g1,4034:8843793,37893132 +g1,4034:10424522,37893132 +g1,4034:12005251,37893132 +g1,4034:13585980,37893132 +g1,4034:15166709,37893132 +h1,4034:16431292,37893132:0,0,0 +k1,4034:32583029,37893132:16151737 +g1,4034:32583029,37893132 +) +] +) +g1,4035:32583029,37969153 +g1,4035:6630773,37969153 +g1,4035:6630773,37969153 +g1,4035:32583029,37969153 +g1,4035:32583029,37969153 +) +h1,4035:6630773,38165761:0,0,0 +(1,4039:6630773,39439885:25952256,513147,7863 +h1,4038:6630773,39439885:983040,0,0 +k1,4038:9017812,39439885:207312 +k1,4038:12003851,39439885:207312 +k1,4038:13891506,39439885:207312 +k1,4038:14630315,39439885:207312 +k1,4038:15193487,39439885:207312 +k1,4038:17378677,39439885:207313 +k1,4038:18979940,39439885:207312 +k1,4038:21346008,39439885:207312 +k1,4038:24176726,39439885:207312 +k1,4038:27426875,39439885:207312 +k1,4038:28587736,39439885:207312 +k1,4038:29887533,39439885:207312 +k1,4039:32583029,39439885:0 +) +(1,4039:6630773,40281373:25952256,513147,134348 +(1,4038:6630773,40281373:0,452978,115847 +r1,4038:8395886,40281373:1765113,568825,115847 +k1,4038:6630773,40281373:-1765113 +) +(1,4038:6630773,40281373:1765113,452978,115847 +k1,4038:6630773,40281373:3277 +h1,4038:8392609,40281373:0,411205,112570 +) +k1,4038:8568361,40281373:172475 +k1,4038:9392265,40281373:172476 +k1,4038:11420064,40281373:172475 +k1,4038:12658811,40281373:172476 +k1,4038:14161667,40281373:172475 +k1,4038:15537383,40281373:172475 +k1,4038:17687736,40281373:172476 +k1,4038:19991442,40281373:172475 +k1,4038:20815346,40281373:172476 +k1,4038:22006906,40281373:172475 +k1,4038:24614699,40281373:172475 +k1,4038:25954371,40281373:172476 +k1,4038:27323533,40281373:172475 +k1,4038:29564325,40281373:172476 +k1,4038:30728360,40281373:172475 +k1,4038:32583029,40281373:0 +) +(1,4039:6630773,41122861:25952256,513147,126483 +k1,4038:7652883,41122861:212740 +k1,4038:8884708,41122861:212740 +k1,4038:11165764,41122861:212740 +k1,4038:12037795,41122861:212739 +k1,4038:13244061,41122861:212740 +k1,4038:16325967,41122861:212740 +k1,4038:18236745,41122861:212740 +k1,4038:21407125,41122861:212740 +k1,4038:23309383,41122861:212740 +k1,4038:26338204,41122861:212739 +k1,4038:27542504,41122861:212740 +k1,4038:29268470,41122861:212740 +k1,4038:30428861,41122861:212740 +k1,4039:32583029,41122861:0 +) +(1,4039:6630773,41964349:25952256,513147,134348 +k1,4038:8670308,41964349:279893 +k1,4038:11031624,41964349:279893 +k1,4038:12265066,41964349:279893 +k1,4038:13649241,41964349:279893 +k1,4038:15960095,41964349:279893 +k1,4038:17259074,41964349:279894 +k1,4038:20492675,41964349:279893 +k1,4038:21431860,41964349:279893 +k1,4038:22730838,41964349:279893 +k1,4038:24988608,41964349:279893 +k1,4038:27124481,41964349:279893 +k1,4038:29962900,41964349:279893 +k1,4038:32583029,41964349:0 +) +(1,4039:6630773,42805837:25952256,505283,7863 +g1,4038:9256800,42805837 +g1,4038:10138914,42805837 +k1,4039:32583029,42805837:20202128 +g1,4039:32583029,42805837 +) +v1,4041:6630773,43904651:0,393216,0 +(1,4063:6630773,45510161:25952256,1998726,196608 +g1,4063:6630773,45510161 +g1,4063:6630773,45510161 +g1,4063:6434165,45510161 +(1,4063:6434165,45510161:0,1998726,196608 +r1,4063:32779637,45510161:26345472,2195334,196608 +k1,4063:6434165,45510161:-26345472 +) +(1,4063:6434165,45510161:26345472,1998726,196608 +[1,4063:6630773,45510161:25952256,1802118,0 +(1,4043:6630773,44112269:25952256,404226,76021 +(1,4042:6630773,44112269:0,0,0 +g1,4042:6630773,44112269 +g1,4042:6630773,44112269 +g1,4042:6303093,44112269 +(1,4042:6303093,44112269:0,0,0 +) +g1,4042:6630773,44112269 +) +k1,4043:6630773,44112269:0 +h1,4043:9792230,44112269:0,0,0 +k1,4043:32583030,44112269:22790800 +g1,4043:32583030,44112269 +) +(1,4048:6630773,44843983:25952256,404226,76021 +(1,4045:6630773,44843983:0,0,0 +g1,4045:6630773,44843983 +g1,4045:6630773,44843983 +g1,4045:6303093,44843983 +(1,4045:6303093,44843983:0,0,0 +) +g1,4045:6630773,44843983 +) +g1,4048:7579210,44843983 +g1,4048:7895356,44843983 +g1,4048:9792230,44843983 +g1,4048:11056813,44843983 +g1,4048:12953687,44843983 +g1,4048:14218270,44843983 +g1,4048:15798999,44843983 +g1,4048:17695873,44843983 +g1,4048:18960456,44843983 +h1,4048:20225039,44843983:0,0,0 +k1,4048:32583029,44843983:12357990 +g1,4048:32583029,44843983 +) +(1,4048:6630773,45510161:25952256,404226,82312 +h1,4048:6630773,45510161:0,0,0 +g1,4048:7579210,45510161 +g1,4048:7895356,45510161 +g1,4048:8527648,45510161 +g1,4048:11056814,45510161 +g1,4048:14218271,45510161 +g1,4048:15482854,45510161 +g1,4048:17379728,45510161 +g1,4048:18960457,45510161 +g1,4048:20541186,45510161 +g1,4048:22121915,45510161 +g1,4048:23702644,45510161 +h1,4048:24651081,45510161:0,0,0 +k1,4048:32583029,45510161:7931948 +g1,4048:32583029,45510161 +) +] +) +g1,4063:32583029,45510161 +g1,4063:6630773,45510161 +g1,4063:6630773,45510161 +g1,4063:32583029,45510161 +g1,4063:32583029,45510161 +) +] +(1,4063:32583029,45706769:0,0,0 +g1,4063:32583029,45706769 +) +) +] +(1,4063:6630773,47279633:25952256,0,0 +h1,4063:6630773,47279633:25952256,0,0 +) +] +h1,4063:4262630,4025873:0,0,0 ] !22341 }76 -Input:493:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:494:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:495:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:496:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:497:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:498:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:499:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:500:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:501:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {77 -[1,4133:4262630,47279633:28320399,43253760,0 -(1,4133:4262630,4025873:0,0,0 -[1,4133:-473657,4025873:25952256,0,0 -(1,4133:-473657,-710414:25952256,0,0 -h1,4133:-473657,-710414:0,0,0 -(1,4133:-473657,-710414:0,0,0 -(1,4133:-473657,-710414:0,0,0 -g1,4133:-473657,-710414 -(1,4133:-473657,-710414:65781,0,65781 -g1,4133:-407876,-710414 -[1,4133:-407876,-644633:0,0,0 +[1,4139:4262630,47279633:28320399,43253760,0 +(1,4139:4262630,4025873:0,0,0 +[1,4139:-473657,4025873:25952256,0,0 +(1,4139:-473657,-710414:25952256,0,0 +h1,4139:-473657,-710414:0,0,0 +(1,4139:-473657,-710414:0,0,0 +(1,4139:-473657,-710414:0,0,0 +g1,4139:-473657,-710414 +(1,4139:-473657,-710414:65781,0,65781 +g1,4139:-407876,-710414 +[1,4139:-407876,-644633:0,0,0 ] ) -k1,4133:-473657,-710414:-65781 +k1,4139:-473657,-710414:-65781 ) ) -k1,4133:25478599,-710414:25952256 -g1,4133:25478599,-710414 +k1,4139:25478599,-710414:25952256 +g1,4139:25478599,-710414 ) ] ) -[1,4133:6630773,47279633:25952256,43253760,0 -[1,4133:6630773,4812305:25952256,786432,0 -(1,4133:6630773,4812305:25952256,505283,134348 -(1,4133:6630773,4812305:25952256,505283,134348 -g1,4133:3078558,4812305 -[1,4133:3078558,4812305:0,0,0 -(1,4133:3078558,2439708:0,1703936,0 -k1,4133:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4133:2537886,2439708:1179648,16384,0 +[1,4139:6630773,47279633:25952256,43253760,0 +[1,4139:6630773,4812305:25952256,786432,0 +(1,4139:6630773,4812305:25952256,505283,134348 +(1,4139:6630773,4812305:25952256,505283,134348 +g1,4139:3078558,4812305 +[1,4139:3078558,4812305:0,0,0 +(1,4139:3078558,2439708:0,1703936,0 +k1,4139:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4139:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4133:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4139:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4133:3078558,4812305:0,0,0 -(1,4133:3078558,2439708:0,1703936,0 -g1,4133:29030814,2439708 -g1,4133:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4133:36151628,1915420:16384,1179648,0 +[1,4139:3078558,4812305:0,0,0 +(1,4139:3078558,2439708:0,1703936,0 +g1,4139:29030814,2439708 +g1,4139:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4139:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4133:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4139:37855564,2439708:1179648,16384,0 ) ) -k1,4133:3078556,2439708:-34777008 +k1,4139:3078556,2439708:-34777008 ) ] -[1,4133:3078558,4812305:0,0,0 -(1,4133:3078558,49800853:0,16384,2228224 -k1,4133:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4133:2537886,49800853:1179648,16384,0 +[1,4139:3078558,4812305:0,0,0 +(1,4139:3078558,49800853:0,16384,2228224 +k1,4139:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4139:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4133:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4139:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4133:3078558,4812305:0,0,0 -(1,4133:3078558,49800853:0,16384,2228224 -g1,4133:29030814,49800853 -g1,4133:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4133:36151628,51504789:16384,1179648,0 +[1,4139:3078558,4812305:0,0,0 +(1,4139:3078558,49800853:0,16384,2228224 +g1,4139:29030814,49800853 +g1,4139:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4139:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4133:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4139:37855564,49800853:1179648,16384,0 ) ) -k1,4133:3078556,49800853:-34777008 +k1,4139:3078556,49800853:-34777008 ) ] -g1,4133:6630773,4812305 -k1,4133:19562994,4812305:12135303 -g1,4133:20949735,4812305 -g1,4133:21598541,4812305 -g1,4133:24912696,4812305 -g1,4133:27600327,4812305 -g1,4133:29010006,4812305 +g1,4139:6630773,4812305 +k1,4139:19515153,4812305:12087462 +g1,4139:20901894,4812305 +g1,4139:21550700,4812305 +g1,4139:24864855,4812305 +g1,4139:27600327,4812305 +g1,4139:29010006,4812305 ) ) ] -[1,4133:6630773,45706769:25952256,40108032,0 -(1,4133:6630773,45706769:25952256,40108032,0 -(1,4133:6630773,45706769:0,0,0 -g1,4133:6630773,45706769 +[1,4139:6630773,45706769:25952256,40108032,0 +(1,4139:6630773,45706769:25952256,40108032,0 +(1,4139:6630773,45706769:0,0,0 +g1,4139:6630773,45706769 ) -[1,4133:6630773,45706769:25952256,40108032,0 -v1,4057:6630773,6254097:0,393216,0 -(1,4057:6630773,10583755:25952256,4722874,196608 -g1,4057:6630773,10583755 -g1,4057:6630773,10583755 -g1,4057:6434165,10583755 -(1,4057:6434165,10583755:0,4722874,196608 -r1,4057:32779637,10583755:26345472,4919482,196608 -k1,4057:6434165,10583755:-26345472 +[1,4139:6630773,45706769:25952256,40108032,0 +v1,4063:6630773,6254097:0,393216,0 +(1,4063:6630773,10583755:25952256,4722874,196608 +g1,4063:6630773,10583755 +g1,4063:6630773,10583755 +g1,4063:6434165,10583755 +(1,4063:6434165,10583755:0,4722874,196608 +r1,4063:32779637,10583755:26345472,4919482,196608 +k1,4063:6434165,10583755:-26345472 ) -(1,4057:6434165,10583755:26345472,4722874,196608 -[1,4057:6630773,10583755:25952256,4526266,0 -(1,4044:6630773,6461715:25952256,404226,76021 -(1,4043:6630773,6461715:0,0,0 -g1,4043:6630773,6461715 -g1,4043:6630773,6461715 -g1,4043:6303093,6461715 -(1,4043:6303093,6461715:0,0,0 -) -g1,4043:6630773,6461715 -) -h1,4044:9159939,6461715:0,0,0 -k1,4044:32583029,6461715:23423090 -g1,4044:32583029,6461715 -) -(1,4049:6630773,7193429:25952256,388497,0 -(1,4046:6630773,7193429:0,0,0 -g1,4046:6630773,7193429 -g1,4046:6630773,7193429 -g1,4046:6303093,7193429 -(1,4046:6303093,7193429:0,0,0 -) -g1,4046:6630773,7193429 -) -g1,4049:7579210,7193429 -g1,4049:7895356,7193429 -g1,4049:8211502,7193429 -h1,4049:8843793,7193429:0,0,0 -k1,4049:32583029,7193429:23739236 -g1,4049:32583029,7193429 -) -(1,4049:6630773,7859607:25952256,404226,4718 -h1,4049:6630773,7859607:0,0,0 -g1,4049:7579210,7859607 -h1,4049:8843793,7859607:0,0,0 -k1,4049:32583029,7859607:23739236 -g1,4049:32583029,7859607 -) -(1,4051:6630773,9181145:25952256,404226,76021 -(1,4050:6630773,9181145:0,0,0 -g1,4050:6630773,9181145 -g1,4050:6630773,9181145 -g1,4050:6303093,9181145 -(1,4050:6303093,9181145:0,0,0 -) -g1,4050:6630773,9181145 -) -h1,4051:10108376,9181145:0,0,0 -k1,4051:32583028,9181145:22474652 -g1,4051:32583028,9181145 -) -(1,4056:6630773,9912859:25952256,388497,0 -(1,4053:6630773,9912859:0,0,0 -g1,4053:6630773,9912859 -g1,4053:6630773,9912859 -g1,4053:6303093,9912859 -(1,4053:6303093,9912859:0,0,0 -) -g1,4053:6630773,9912859 -) -g1,4056:7579210,9912859 -g1,4056:7895356,9912859 -g1,4056:8211502,9912859 -h1,4056:8843793,9912859:0,0,0 -k1,4056:32583029,9912859:23739236 -g1,4056:32583029,9912859 -) -(1,4056:6630773,10579037:25952256,404226,4718 -h1,4056:6630773,10579037:0,0,0 -g1,4056:7579210,10579037 -h1,4056:8843793,10579037:0,0,0 -k1,4056:32583029,10579037:23739236 -g1,4056:32583029,10579037 -) -] -) -g1,4057:32583029,10583755 -g1,4057:6630773,10583755 -g1,4057:6630773,10583755 -g1,4057:32583029,10583755 -g1,4057:32583029,10583755 -) -h1,4057:6630773,10780363:0,0,0 -(1,4061:6630773,12049289:25952256,513147,126483 -h1,4060:6630773,12049289:983040,0,0 -k1,4060:10676230,12049289:272549 -(1,4060:10676230,12049289:0,452978,115847 -r1,4060:13496479,12049289:2820249,568825,115847 -k1,4060:10676230,12049289:-2820249 -) -(1,4060:10676230,12049289:2820249,452978,115847 -k1,4060:10676230,12049289:3277 -h1,4060:13493202,12049289:0,411205,112570 -) -k1,4060:13769027,12049289:272548 -k1,4060:15145858,12049289:272549 -k1,4060:16166173,12049289:272549 -k1,4060:17951947,12049289:272548 -k1,4060:18875924,12049289:272549 -k1,4060:21503181,12049289:272548 -k1,4060:23844046,12049289:272549 -k1,4060:27706002,12049289:272549 -k1,4060:30438772,12049289:272548 -k1,4060:31923737,12049289:272549 -k1,4060:32583029,12049289:0 -) -(1,4061:6630773,12890777:25952256,513147,134348 -g1,4060:9273840,12890777 -g1,4060:10492154,12890777 -g1,4060:12473962,12890777 -g1,4060:13356076,12890777 -g1,4060:15110474,12890777 -g1,4060:15968995,12890777 -g1,4060:17187309,12890777 -k1,4061:32583029,12890777:13262523 -g1,4061:32583029,12890777 -) -v1,4063:6630773,13984392:0,393216,0 -(1,4070:6630773,14999745:25952256,1408569,196608 -g1,4070:6630773,14999745 -g1,4070:6630773,14999745 -g1,4070:6434165,14999745 -(1,4070:6434165,14999745:0,1408569,196608 -r1,4070:32779637,14999745:26345472,1605177,196608 -k1,4070:6434165,14999745:-26345472 -) -(1,4070:6434165,14999745:26345472,1408569,196608 -[1,4070:6630773,14999745:25952256,1211961,0 -(1,4065:6630773,14192010:25952256,404226,76021 -(1,4064:6630773,14192010:0,0,0 -g1,4064:6630773,14192010 -g1,4064:6630773,14192010 -g1,4064:6303093,14192010 -(1,4064:6303093,14192010:0,0,0 -) -g1,4064:6630773,14192010 -) -k1,4065:6630773,14192010:0 -h1,4065:10740667,14192010:0,0,0 -k1,4065:32583029,14192010:21842362 -g1,4065:32583029,14192010 -) -(1,4069:6630773,14923724:25952256,404226,76021 -(1,4067:6630773,14923724:0,0,0 -g1,4067:6630773,14923724 -g1,4067:6630773,14923724 -g1,4067:6303093,14923724 -(1,4067:6303093,14923724:0,0,0 -) -g1,4067:6630773,14923724 -) -g1,4069:7579210,14923724 -g1,4069:8843793,14923724 -g1,4069:10108376,14923724 -g1,4069:10424522,14923724 -g1,4069:10740668,14923724 -g1,4069:12321397,14923724 -g1,4069:12637543,14923724 -g1,4069:14534417,14923724 -g1,4069:15799000,14923724 -g1,4069:16115146,14923724 -g1,4069:16431292,14923724 -h1,4069:17695875,14923724:0,0,0 -k1,4069:32583029,14923724:14887154 -g1,4069:32583029,14923724 -) -] -) -g1,4070:32583029,14999745 -g1,4070:6630773,14999745 -g1,4070:6630773,14999745 -g1,4070:32583029,14999745 -g1,4070:32583029,14999745 -) -h1,4070:6630773,15196353:0,0,0 -v1,4074:6630773,16892717:0,393216,0 -(1,4075:6630773,22536836:25952256,6037335,616038 -g1,4075:6630773,22536836 -(1,4075:6630773,22536836:25952256,6037335,616038 -(1,4075:6630773,23152874:25952256,6653373,0 -[1,4075:6630773,23152874:25952256,6653373,0 -(1,4075:6630773,23126660:25952256,6600945,0 -r1,4075:6656987,23126660:26214,6600945,0 -[1,4075:6656987,23126660:25899828,6600945,0 -(1,4075:6656987,22536836:25899828,5421297,0 -[1,4075:7246811,22536836:24720180,5421297,0 -(1,4075:7246811,18202913:24720180,1087374,134348 -k1,4074:8665776,18202913:209262 -k1,4074:11664906,18202913:209262 -(1,4074:11664906,18202913:0,452978,115847 -r1,4075:14485155,18202913:2820249,568825,115847 -k1,4074:11664906,18202913:-2820249 -) -(1,4074:11664906,18202913:2820249,452978,115847 -k1,4074:11664906,18202913:3277 -h1,4074:14481878,18202913:0,411205,112570 -) -k1,4074:14694418,18202913:209263 -k1,4074:14694418,18202913:0 -k1,4074:16004685,18202913:209262 -k1,4074:17386386,18202913:209262 -k1,4074:20822641,18202913:209262 -k1,4074:24816608,18202913:209263 -k1,4074:26419821,18202913:209262 -k1,4074:28894663,18202913:209262 -k1,4074:31966991,18202913:0 -) -(1,4075:7246811,19044401:24720180,513147,126483 -k1,4074:9648487,19044401:217361 -k1,4074:11751319,19044401:217361 -k1,4074:12837032,19044401:217361 -k1,4074:14097071,19044401:217361 -k1,4074:15380703,19044401:217361 -k1,4074:17860367,19044401:217361 -k1,4074:18693765,19044401:217360 -k1,4074:19930211,19044401:217361 -k1,4074:22808989,19044401:217361 -k1,4074:25055345,19044401:217361 -k1,4074:27147036,19044401:217361 -k1,4074:30975431,19044401:217361 -k1,4075:31966991,19044401:0 -) -(1,4075:7246811,19885889:24720180,513147,134348 -(1,4074:7246811,19885889:0,452978,115847 -r1,4075:10418771,19885889:3171960,568825,115847 -k1,4074:7246811,19885889:-3171960 -) -(1,4074:7246811,19885889:3171960,452978,115847 -k1,4074:7246811,19885889:3277 -h1,4074:10415494,19885889:0,411205,112570 -) -k1,4074:10633525,19885889:214754 -k1,4074:12039724,19885889:214754 -(1,4074:12039724,19885889:0,414482,115847 -r1,4075:15211684,19885889:3171960,530329,115847 -k1,4074:12039724,19885889:-3171960 -) -(1,4074:12039724,19885889:3171960,414482,115847 -k1,4074:12039724,19885889:3277 -h1,4074:15208407,19885889:0,411205,112570 -) -k1,4074:15600108,19885889:214754 -k1,4074:17281557,19885889:214753 -k1,4074:18155603,19885889:214754 -k1,4074:20009412,19885889:214754 -k1,4074:23285353,19885889:214754 -k1,4074:23855967,19885889:214754 -(1,4074:23855967,19885889:0,452978,122846 -r1,4075:26324504,19885889:2468537,575824,122846 -k1,4074:23855967,19885889:-2468537 -) -(1,4074:23855967,19885889:2468537,452978,122846 -k1,4074:23855967,19885889:3277 -h1,4074:26321227,19885889:0,411205,112570 -) -k1,4074:26539258,19885889:214754 -k1,4074:28434354,19885889:214753 -k1,4074:29335270,19885889:214754 -k1,4074:30320727,19885889:214754 -k1,4075:31966991,19885889:0 -) -(1,4075:7246811,20727377:24720180,513147,134348 -k1,4074:9261260,20727377:201723 -k1,4074:11668926,20727377:201724 -k1,4074:12889734,20727377:201723 -k1,4074:16277817,20727377:201723 -(1,4074:16277817,20727377:0,452978,115847 -r1,4075:24373744,20727377:8095927,568825,115847 -k1,4074:16277817,20727377:-8095927 -) -(1,4074:16277817,20727377:8095927,452978,115847 -g1,4074:18391365,20727377 -g1,4074:19446501,20727377 -h1,4074:24370467,20727377:0,411205,112570 -) -k1,4074:24749138,20727377:201724 -k1,4074:25712389,20727377:201723 -k1,4074:28341566,20727377:201723 -(1,4074:28341566,20727377:0,414482,115847 -r1,4075:30106679,20727377:1765113,530329,115847 -k1,4074:28341566,20727377:-1765113 -) -(1,4074:28341566,20727377:1765113,414482,115847 -k1,4074:28341566,20727377:3277 -h1,4074:30103402,20727377:0,411205,112570 -) -k1,4074:30308403,20727377:201724 -k1,4074:31196288,20727377:201723 -k1,4074:31966991,20727377:0 -) -(1,4075:7246811,21568865:24720180,505283,134348 -k1,4074:10541810,21568865:222671 -k1,4074:11415909,21568865:222671 -k1,4074:13335308,21568865:222672 -k1,4074:14730418,21568865:222671 -k1,4074:18737793,21568865:222671 -k1,4074:19576502,21568865:222671 -k1,4074:21347790,21568865:222672 -k1,4074:22761906,21568865:222671 -k1,4074:23600615,21568865:222671 -k1,4074:25274908,21568865:222671 -k1,4074:27038331,21568865:222672 -k1,4074:29044892,21568865:222671 -k1,4074:30286648,21568865:222671 -k1,4074:31966991,21568865:0 -) -(1,4075:7246811,22410353:24720180,513147,126483 -g1,4074:10224767,22410353 -g1,4074:11615441,22410353 -g1,4074:13145051,22410353 -g1,4074:13802377,22410353 -g1,4074:16075165,22410353 -g1,4074:17668345,22410353 -g1,4074:20192136,22410353 -g1,4074:21042793,22410353 -g1,4074:22261107,22410353 -g1,4074:23617046,22410353 -g1,4074:26608109,22410353 -k1,4075:31966991,22410353:3329887 -g1,4075:31966991,22410353 -) -] -) -] -r1,4075:32583029,23126660:26214,6600945,0 -) -] -) -) -g1,4075:32583029,22536836 -) -h1,4075:6630773,23152874:0,0,0 -(1,4080:6630773,26387879:25952256,32768,229376 -(1,4080:6630773,26387879:0,32768,229376 -(1,4080:6630773,26387879:5505024,32768,229376 -r1,4080:12135797,26387879:5505024,262144,229376 -) -k1,4080:6630773,26387879:-5505024 -) -(1,4080:6630773,26387879:25952256,32768,0 -r1,4080:32583029,26387879:25952256,32768,0 -) -) -(1,4080:6630773,27992207:25952256,615776,9436 -(1,4080:6630773,27992207:2464678,582746,0 -g1,4080:6630773,27992207 -g1,4080:9095451,27992207 -) -g1,4080:11145680,27992207 -k1,4080:32583029,27992207:18695060 -g1,4080:32583029,27992207 -) -(1,4084:6630773,29226911:25952256,513147,126483 -k1,4083:8245508,29226911:142796 -k1,4083:10594901,29226911:142796 -k1,4083:11729256,29226911:142795 -k1,4083:12227912,29226911:142796 -k1,4083:14564853,29226911:142796 -k1,4083:16093735,29226911:142796 -k1,4083:16895822,29226911:142795 -k1,4083:18205814,29226911:142796 -k1,4083:18964648,29226911:142796 -k1,4083:20992915,29226911:142796 -k1,4083:22587333,29226911:142796 -k1,4083:25268993,29226911:142795 -k1,4083:25943286,29226911:142796 -k1,4083:26441942,29226911:142796 -k1,4083:28562615,29226911:142796 -k1,4083:29388295,29226911:142795 -k1,4083:29886951,29226911:142796 -k1,4083:31923737,29226911:142796 -k1,4083:32583029,29226911:0 -) -(1,4084:6630773,30068399:25952256,513147,134348 -k1,4083:7803265,30068399:153407 -k1,4083:9610144,30068399:153406 -k1,4083:11950487,30068399:153407 -k1,4083:13661685,30068399:153407 -k1,4083:14806652,30068399:153407 -k1,4083:17310179,30068399:153406 -k1,4083:18857537,30068399:153407 -k1,4083:21706440,30068399:153407 -(1,4083:21706440,30068399:0,459977,115847 -r1,4083:25933536,30068399:4227096,575824,115847 -k1,4083:21706440,30068399:-4227096 -) -(1,4083:21706440,30068399:4227096,459977,115847 -k1,4083:21706440,30068399:3277 -h1,4083:25930259,30068399:0,411205,112570 -) -k1,4083:26086943,30068399:153407 -k1,4083:27634300,30068399:153406 -k1,4083:28143567,30068399:153407 -k1,4083:30381019,30068399:153407 -k1,4083:32583029,30068399:0 -) -(1,4084:6630773,30909887:25952256,513147,134348 -k1,4083:7446915,30909887:164714 -k1,4083:8896134,30909887:164713 -k1,4083:10574074,30909887:164714 -k1,4083:11686439,30909887:164714 -k1,4083:14446378,30909887:164713 -k1,4083:19454858,30909887:164714 -k1,4083:23971818,30909887:164714 -k1,4083:25004883,30909887:164713 -k1,4083:26216862,30909887:164714 -k1,4083:27666082,30909887:164714 -k1,4083:29220158,30909887:164713 -k1,4083:31591469,30909887:164714 -k1,4083:32583029,30909887:0 -) -(1,4084:6630773,31751375:25952256,513147,134348 -k1,4083:9220318,31751375:206656 -k1,4083:10994596,31751375:206657 -k1,4083:12756421,31751375:206656 -(1,4083:12756421,31751375:0,452978,115847 -r1,4083:14169822,31751375:1413401,568825,115847 -k1,4083:12756421,31751375:-1413401 -) -(1,4083:12756421,31751375:1413401,452978,115847 -k1,4083:12756421,31751375:3277 -h1,4083:14166545,31751375:0,411205,112570 -) -k1,4083:14550148,31751375:206656 -k1,4083:15574694,31751375:206657 -k1,4083:16800435,31751375:206656 -k1,4083:20701355,31751375:206656 -k1,4083:21439508,31751375:206656 -k1,4083:23373694,31751375:206657 -k1,4083:25767286,31751375:206656 -k1,4083:26439903,31751375:206656 -k1,4083:28954738,31751375:206657 -k1,4083:29820686,31751375:206656 -k1,4083:32583029,31751375:0 -) -(1,4084:6630773,32592863:25952256,505283,134348 -k1,4083:9196179,32592863:221839 -k1,4083:10409578,32592863:221839 -k1,4083:13392450,32592863:221840 -k1,4083:14300451,32592863:221839 -k1,4083:18098590,32592863:221839 -k1,4083:19339514,32592863:221839 -k1,4083:21881983,32592863:221839 -k1,4083:24826189,32592863:221840 -k1,4083:26906629,32592863:221839 -k1,4083:29939307,32592863:221839 -k1,4083:32583029,32592863:0 -) -(1,4084:6630773,33434351:25952256,513147,134348 -g1,4083:9061503,33434351 -g1,4083:11190112,33434351 -g1,4083:12882251,33434351 -g1,4083:14100565,33434351 -g1,4083:17012329,33434351 -g1,4083:18301422,33434351 -g1,4083:20513917,33434351 -g1,4083:21244643,33434351 -k1,4084:32583029,33434351:8656653 -g1,4084:32583029,33434351 -) -v1,4086:6630773,34527967:0,393216,0 -(1,4133:6630773,45510161:25952256,11375410,196608 -g1,4133:6630773,45510161 -g1,4133:6630773,45510161 -g1,4133:6434165,45510161 -(1,4133:6434165,45510161:0,11375410,196608 -r1,4133:32779637,45510161:26345472,11572018,196608 -k1,4133:6434165,45510161:-26345472 -) -(1,4133:6434165,45510161:26345472,11375410,196608 -[1,4133:6630773,45510161:25952256,11178802,0 -(1,4088:6630773,34741877:25952256,410518,101187 -(1,4087:6630773,34741877:0,0,0 -g1,4087:6630773,34741877 -g1,4087:6630773,34741877 -g1,4087:6303093,34741877 -(1,4087:6303093,34741877:0,0,0 -) -g1,4087:6630773,34741877 -) -g1,4088:8211502,34741877 -g1,4088:9159940,34741877 -g1,4088:13269835,34741877 -g1,4088:13902127,34741877 -g1,4088:15482857,34741877 -g1,4088:16115149,34741877 -g1,4088:16747441,34741877 -g1,4088:18328170,34741877 -g1,4088:18960462,34741877 -g1,4088:19592754,34741877 -g1,4088:22121921,34741877 -h1,4088:24334940,34741877:0,0,0 -k1,4088:32583029,34741877:8248089 -g1,4088:32583029,34741877 -) -(1,4089:6630773,35408055:25952256,410518,6290 -h1,4089:6630773,35408055:0,0,0 -h1,4089:7895356,35408055:0,0,0 -k1,4089:32583028,35408055:24687672 -g1,4089:32583028,35408055 -) -(1,4099:6630773,36139769:25952256,379060,101187 -(1,4091:6630773,36139769:0,0,0 -g1,4091:6630773,36139769 -g1,4091:6630773,36139769 -g1,4091:6303093,36139769 -(1,4091:6303093,36139769:0,0,0 -) -g1,4091:6630773,36139769 -) -g1,4099:7579210,36139769 -g1,4099:7895356,36139769 -g1,4099:8211502,36139769 -g1,4099:8843794,36139769 -g1,4099:9476086,36139769 -g1,4099:9792232,36139769 -g1,4099:10108378,36139769 -g1,4099:10424524,36139769 -g1,4099:10740670,36139769 -h1,4099:11056816,36139769:0,0,0 -k1,4099:32583028,36139769:21526212 -g1,4099:32583028,36139769 -) -(1,4099:6630773,36805947:25952256,388497,7863 -h1,4099:6630773,36805947:0,0,0 -g1,4099:7579210,36805947 -g1,4099:8211502,36805947 -g1,4099:8843794,36805947 -g1,4099:9476086,36805947 -g1,4099:9792232,36805947 -h1,4099:11056815,36805947:0,0,0 -k1,4099:32583029,36805947:21526214 -g1,4099:32583029,36805947 -) -(1,4099:6630773,37472125:25952256,388497,7863 -h1,4099:6630773,37472125:0,0,0 -g1,4099:7579210,37472125 -g1,4099:8211502,37472125 -g1,4099:8843794,37472125 -g1,4099:9476086,37472125 -h1,4099:11056814,37472125:0,0,0 -k1,4099:32583030,37472125:21526216 -g1,4099:32583030,37472125 -) -(1,4099:6630773,38138303:25952256,388497,9436 -h1,4099:6630773,38138303:0,0,0 -g1,4099:7579210,38138303 -g1,4099:8211502,38138303 -g1,4099:8843794,38138303 -g1,4099:9476086,38138303 -g1,4099:9792232,38138303 -h1,4099:11056815,38138303:0,0,0 -k1,4099:32583029,38138303:21526214 -g1,4099:32583029,38138303 -) -(1,4099:6630773,38804481:25952256,379060,7863 -h1,4099:6630773,38804481:0,0,0 -g1,4099:7579210,38804481 -g1,4099:8211502,38804481 -g1,4099:8843794,38804481 -g1,4099:9476086,38804481 -h1,4099:11056814,38804481:0,0,0 -k1,4099:32583030,38804481:21526216 -g1,4099:32583030,38804481 -) -(1,4099:6630773,39470659:25952256,379060,9436 -h1,4099:6630773,39470659:0,0,0 -g1,4099:7579210,39470659 -g1,4099:8211502,39470659 -g1,4099:8843794,39470659 -g1,4099:9476086,39470659 -g1,4099:9792232,39470659 -h1,4099:11056815,39470659:0,0,0 -k1,4099:32583029,39470659:21526214 -g1,4099:32583029,39470659 -) -(1,4099:6630773,40136837:25952256,388497,9436 -h1,4099:6630773,40136837:0,0,0 -g1,4099:7579210,40136837 -g1,4099:8211502,40136837 -g1,4099:8843794,40136837 -g1,4099:9476086,40136837 -h1,4099:11056814,40136837:0,0,0 -k1,4099:32583030,40136837:21526216 -g1,4099:32583030,40136837 -) -(1,4101:6630773,41458375:25952256,410518,76021 -(1,4100:6630773,41458375:0,0,0 -g1,4100:6630773,41458375 -g1,4100:6630773,41458375 -g1,4100:6303093,41458375 -(1,4100:6303093,41458375:0,0,0 -) -g1,4100:6630773,41458375 -) -k1,4101:6630773,41458375:0 -h1,4101:9476084,41458375:0,0,0 -k1,4101:32583028,41458375:23106944 -g1,4101:32583028,41458375 -) -(1,4108:6630773,42190089:25952256,410518,9436 -(1,4103:6630773,42190089:0,0,0 -g1,4103:6630773,42190089 -g1,4103:6630773,42190089 -g1,4103:6303093,42190089 -(1,4103:6303093,42190089:0,0,0 -) -g1,4103:6630773,42190089 -) -g1,4108:7579210,42190089 -g1,4108:12005251,42190089 -g1,4108:12637543,42190089 -g1,4108:14218272,42190089 -g1,4108:15166709,42190089 -g1,4108:15482855,42190089 -g1,4108:16115147,42190089 -h1,4108:19276604,42190089:0,0,0 -k1,4108:32583029,42190089:13306425 -g1,4108:32583029,42190089 -) -(1,4108:6630773,42856267:25952256,410518,31456 -h1,4108:6630773,42856267:0,0,0 -g1,4108:7579210,42856267 -g1,4108:7895356,42856267 -g1,4108:8527648,42856267 -g1,4108:9476085,42856267 -g1,4108:10740668,42856267 -g1,4108:11056814,42856267 -g1,4108:11689106,42856267 -g1,4108:12321398,42856267 -g1,4108:12953690,42856267 -g1,4108:13585982,42856267 -g1,4108:14218274,42856267 -h1,4108:14534420,42856267:0,0,0 -k1,4108:32583028,42856267:18048608 -g1,4108:32583028,42856267 -) -(1,4108:6630773,43522445:25952256,410518,101187 -h1,4108:6630773,43522445:0,0,0 -g1,4108:7579210,43522445 -g1,4108:7895356,43522445 -g1,4108:8527648,43522445 -g1,4108:9476085,43522445 -g1,4108:11689105,43522445 -g1,4108:12637542,43522445 -g1,4108:13269834,43522445 -g1,4108:15166708,43522445 -g1,4108:16747437,43522445 -g1,4108:17379729,43522445 -g1,4108:18012021,43522445 -g1,4108:18644313,43522445 -g1,4108:19276605,43522445 -g1,4108:19908897,43522445 -h1,4108:20225043,43522445:0,0,0 -k1,4108:32583029,43522445:12357986 -g1,4108:32583029,43522445 -) -(1,4108:6630773,44188623:25952256,410518,107478 -h1,4108:6630773,44188623:0,0,0 -g1,4108:7579210,44188623 -g1,4108:7895356,44188623 -g1,4108:8527648,44188623 -g1,4108:9476085,44188623 -g1,4108:11056814,44188623 -g1,4108:11372960,44188623 -g1,4108:12953689,44188623 -g1,4108:14850563,44188623 -g1,4108:16431292,44188623 -g1,4108:18328166,44188623 -g1,4108:19908895,44188623 -h1,4108:21489623,44188623:0,0,0 -k1,4108:32583029,44188623:11093406 -g1,4108:32583029,44188623 -) -(1,4110:6630773,45510161:25952256,410518,76021 -(1,4109:6630773,45510161:0,0,0 -g1,4109:6630773,45510161 -g1,4109:6630773,45510161 -g1,4109:6303093,45510161 -(1,4109:6303093,45510161:0,0,0 -) -g1,4109:6630773,45510161 -) -k1,4110:6630773,45510161:0 -h1,4110:10108375,45510161:0,0,0 -k1,4110:32583029,45510161:22474654 -g1,4110:32583029,45510161 -) -] -) -g1,4133:32583029,45510161 -g1,4133:6630773,45510161 -g1,4133:6630773,45510161 -g1,4133:32583029,45510161 -g1,4133:32583029,45510161 -) -] -(1,4133:32583029,45706769:0,0,0 -g1,4133:32583029,45706769 -) -) -] -(1,4133:6630773,47279633:25952256,0,0 -h1,4133:6630773,47279633:25952256,0,0 -) -] -h1,4133:4262630,4025873:0,0,0 +(1,4063:6434165,10583755:26345472,4722874,196608 +[1,4063:6630773,10583755:25952256,4526266,0 +(1,4050:6630773,6461715:25952256,404226,76021 +(1,4049:6630773,6461715:0,0,0 +g1,4049:6630773,6461715 +g1,4049:6630773,6461715 +g1,4049:6303093,6461715 +(1,4049:6303093,6461715:0,0,0 +) +g1,4049:6630773,6461715 +) +h1,4050:9159939,6461715:0,0,0 +k1,4050:32583029,6461715:23423090 +g1,4050:32583029,6461715 +) +(1,4055:6630773,7193429:25952256,388497,0 +(1,4052:6630773,7193429:0,0,0 +g1,4052:6630773,7193429 +g1,4052:6630773,7193429 +g1,4052:6303093,7193429 +(1,4052:6303093,7193429:0,0,0 +) +g1,4052:6630773,7193429 +) +g1,4055:7579210,7193429 +g1,4055:7895356,7193429 +g1,4055:8211502,7193429 +h1,4055:8843793,7193429:0,0,0 +k1,4055:32583029,7193429:23739236 +g1,4055:32583029,7193429 +) +(1,4055:6630773,7859607:25952256,404226,4718 +h1,4055:6630773,7859607:0,0,0 +g1,4055:7579210,7859607 +h1,4055:8843793,7859607:0,0,0 +k1,4055:32583029,7859607:23739236 +g1,4055:32583029,7859607 +) +(1,4057:6630773,9181145:25952256,404226,76021 +(1,4056:6630773,9181145:0,0,0 +g1,4056:6630773,9181145 +g1,4056:6630773,9181145 +g1,4056:6303093,9181145 +(1,4056:6303093,9181145:0,0,0 +) +g1,4056:6630773,9181145 +) +h1,4057:10108376,9181145:0,0,0 +k1,4057:32583028,9181145:22474652 +g1,4057:32583028,9181145 +) +(1,4062:6630773,9912859:25952256,388497,0 +(1,4059:6630773,9912859:0,0,0 +g1,4059:6630773,9912859 +g1,4059:6630773,9912859 +g1,4059:6303093,9912859 +(1,4059:6303093,9912859:0,0,0 +) +g1,4059:6630773,9912859 +) +g1,4062:7579210,9912859 +g1,4062:7895356,9912859 +g1,4062:8211502,9912859 +h1,4062:8843793,9912859:0,0,0 +k1,4062:32583029,9912859:23739236 +g1,4062:32583029,9912859 +) +(1,4062:6630773,10579037:25952256,404226,4718 +h1,4062:6630773,10579037:0,0,0 +g1,4062:7579210,10579037 +h1,4062:8843793,10579037:0,0,0 +k1,4062:32583029,10579037:23739236 +g1,4062:32583029,10579037 +) +] +) +g1,4063:32583029,10583755 +g1,4063:6630773,10583755 +g1,4063:6630773,10583755 +g1,4063:32583029,10583755 +g1,4063:32583029,10583755 +) +h1,4063:6630773,10780363:0,0,0 +(1,4067:6630773,12049289:25952256,513147,126483 +h1,4066:6630773,12049289:983040,0,0 +k1,4066:10676230,12049289:272549 +(1,4066:10676230,12049289:0,452978,115847 +r1,4066:13496479,12049289:2820249,568825,115847 +k1,4066:10676230,12049289:-2820249 +) +(1,4066:10676230,12049289:2820249,452978,115847 +k1,4066:10676230,12049289:3277 +h1,4066:13493202,12049289:0,411205,112570 +) +k1,4066:13769027,12049289:272548 +k1,4066:15145858,12049289:272549 +k1,4066:16166173,12049289:272549 +k1,4066:17951947,12049289:272548 +k1,4066:18875924,12049289:272549 +k1,4066:21503181,12049289:272548 +k1,4066:23844046,12049289:272549 +k1,4066:27706002,12049289:272549 +k1,4066:30438772,12049289:272548 +k1,4066:31923737,12049289:272549 +k1,4066:32583029,12049289:0 +) +(1,4067:6630773,12890777:25952256,513147,134348 +g1,4066:9273840,12890777 +g1,4066:10492154,12890777 +g1,4066:12473962,12890777 +g1,4066:13356076,12890777 +g1,4066:15110474,12890777 +g1,4066:15968995,12890777 +g1,4066:17187309,12890777 +k1,4067:32583029,12890777:13262523 +g1,4067:32583029,12890777 +) +v1,4069:6630773,13984392:0,393216,0 +(1,4076:6630773,14999745:25952256,1408569,196608 +g1,4076:6630773,14999745 +g1,4076:6630773,14999745 +g1,4076:6434165,14999745 +(1,4076:6434165,14999745:0,1408569,196608 +r1,4076:32779637,14999745:26345472,1605177,196608 +k1,4076:6434165,14999745:-26345472 +) +(1,4076:6434165,14999745:26345472,1408569,196608 +[1,4076:6630773,14999745:25952256,1211961,0 +(1,4071:6630773,14192010:25952256,404226,76021 +(1,4070:6630773,14192010:0,0,0 +g1,4070:6630773,14192010 +g1,4070:6630773,14192010 +g1,4070:6303093,14192010 +(1,4070:6303093,14192010:0,0,0 +) +g1,4070:6630773,14192010 +) +k1,4071:6630773,14192010:0 +h1,4071:10740667,14192010:0,0,0 +k1,4071:32583029,14192010:21842362 +g1,4071:32583029,14192010 +) +(1,4075:6630773,14923724:25952256,404226,76021 +(1,4073:6630773,14923724:0,0,0 +g1,4073:6630773,14923724 +g1,4073:6630773,14923724 +g1,4073:6303093,14923724 +(1,4073:6303093,14923724:0,0,0 +) +g1,4073:6630773,14923724 +) +g1,4075:7579210,14923724 +g1,4075:8843793,14923724 +g1,4075:10108376,14923724 +g1,4075:10424522,14923724 +g1,4075:10740668,14923724 +g1,4075:12321397,14923724 +g1,4075:12637543,14923724 +g1,4075:14534417,14923724 +g1,4075:15799000,14923724 +g1,4075:16115146,14923724 +g1,4075:16431292,14923724 +h1,4075:17695875,14923724:0,0,0 +k1,4075:32583029,14923724:14887154 +g1,4075:32583029,14923724 +) +] +) +g1,4076:32583029,14999745 +g1,4076:6630773,14999745 +g1,4076:6630773,14999745 +g1,4076:32583029,14999745 +g1,4076:32583029,14999745 +) +h1,4076:6630773,15196353:0,0,0 +v1,4080:6630773,16892717:0,393216,0 +(1,4081:6630773,22536836:25952256,6037335,616038 +g1,4081:6630773,22536836 +(1,4081:6630773,22536836:25952256,6037335,616038 +(1,4081:6630773,23152874:25952256,6653373,0 +[1,4081:6630773,23152874:25952256,6653373,0 +(1,4081:6630773,23126660:25952256,6600945,0 +r1,4081:6656987,23126660:26214,6600945,0 +[1,4081:6656987,23126660:25899828,6600945,0 +(1,4081:6656987,22536836:25899828,5421297,0 +[1,4081:7246811,22536836:24720180,5421297,0 +(1,4081:7246811,18202913:24720180,1087374,134348 +k1,4080:8665776,18202913:209262 +k1,4080:11664906,18202913:209262 +(1,4080:11664906,18202913:0,452978,115847 +r1,4081:14485155,18202913:2820249,568825,115847 +k1,4080:11664906,18202913:-2820249 +) +(1,4080:11664906,18202913:2820249,452978,115847 +k1,4080:11664906,18202913:3277 +h1,4080:14481878,18202913:0,411205,112570 +) +k1,4080:14694418,18202913:209263 +k1,4080:14694418,18202913:0 +k1,4080:16004685,18202913:209262 +k1,4080:17386386,18202913:209262 +k1,4080:20822641,18202913:209262 +k1,4080:24816608,18202913:209263 +k1,4080:26419821,18202913:209262 +k1,4080:28894663,18202913:209262 +k1,4080:31966991,18202913:0 +) +(1,4081:7246811,19044401:24720180,513147,126483 +k1,4080:9648487,19044401:217361 +k1,4080:11751319,19044401:217361 +k1,4080:12837032,19044401:217361 +k1,4080:14097071,19044401:217361 +k1,4080:15380703,19044401:217361 +k1,4080:17860367,19044401:217361 +k1,4080:18693765,19044401:217360 +k1,4080:19930211,19044401:217361 +k1,4080:22808989,19044401:217361 +k1,4080:25055345,19044401:217361 +k1,4080:27147036,19044401:217361 +k1,4080:30975431,19044401:217361 +k1,4081:31966991,19044401:0 +) +(1,4081:7246811,19885889:24720180,513147,134348 +(1,4080:7246811,19885889:0,452978,115847 +r1,4081:10418771,19885889:3171960,568825,115847 +k1,4080:7246811,19885889:-3171960 +) +(1,4080:7246811,19885889:3171960,452978,115847 +k1,4080:7246811,19885889:3277 +h1,4080:10415494,19885889:0,411205,112570 +) +k1,4080:10633525,19885889:214754 +k1,4080:12039724,19885889:214754 +(1,4080:12039724,19885889:0,414482,115847 +r1,4081:15211684,19885889:3171960,530329,115847 +k1,4080:12039724,19885889:-3171960 +) +(1,4080:12039724,19885889:3171960,414482,115847 +k1,4080:12039724,19885889:3277 +h1,4080:15208407,19885889:0,411205,112570 +) +k1,4080:15600108,19885889:214754 +k1,4080:17281557,19885889:214753 +k1,4080:18155603,19885889:214754 +k1,4080:20009412,19885889:214754 +k1,4080:23285353,19885889:214754 +k1,4080:23855967,19885889:214754 +(1,4080:23855967,19885889:0,452978,122846 +r1,4081:26324504,19885889:2468537,575824,122846 +k1,4080:23855967,19885889:-2468537 +) +(1,4080:23855967,19885889:2468537,452978,122846 +k1,4080:23855967,19885889:3277 +h1,4080:26321227,19885889:0,411205,112570 +) +k1,4080:26539258,19885889:214754 +k1,4080:28434354,19885889:214753 +k1,4080:29335270,19885889:214754 +k1,4080:30320727,19885889:214754 +k1,4081:31966991,19885889:0 +) +(1,4081:7246811,20727377:24720180,513147,134348 +k1,4080:9261260,20727377:201723 +k1,4080:11668926,20727377:201724 +k1,4080:12889734,20727377:201723 +k1,4080:16277817,20727377:201723 +(1,4080:16277817,20727377:0,452978,115847 +r1,4081:24373744,20727377:8095927,568825,115847 +k1,4080:16277817,20727377:-8095927 +) +(1,4080:16277817,20727377:8095927,452978,115847 +g1,4080:18391365,20727377 +g1,4080:19446501,20727377 +h1,4080:24370467,20727377:0,411205,112570 +) +k1,4080:24749138,20727377:201724 +k1,4080:25712389,20727377:201723 +k1,4080:28341566,20727377:201723 +(1,4080:28341566,20727377:0,414482,115847 +r1,4081:30106679,20727377:1765113,530329,115847 +k1,4080:28341566,20727377:-1765113 +) +(1,4080:28341566,20727377:1765113,414482,115847 +k1,4080:28341566,20727377:3277 +h1,4080:30103402,20727377:0,411205,112570 +) +k1,4080:30308403,20727377:201724 +k1,4080:31196288,20727377:201723 +k1,4080:31966991,20727377:0 +) +(1,4081:7246811,21568865:24720180,505283,134348 +k1,4080:10541810,21568865:222671 +k1,4080:11415909,21568865:222671 +k1,4080:13335308,21568865:222672 +k1,4080:14730418,21568865:222671 +k1,4080:18737793,21568865:222671 +k1,4080:19576502,21568865:222671 +k1,4080:21347790,21568865:222672 +k1,4080:22761906,21568865:222671 +k1,4080:23600615,21568865:222671 +k1,4080:25274908,21568865:222671 +k1,4080:27038331,21568865:222672 +k1,4080:29044892,21568865:222671 +k1,4080:30286648,21568865:222671 +k1,4080:31966991,21568865:0 +) +(1,4081:7246811,22410353:24720180,513147,126483 +g1,4080:10224767,22410353 +g1,4080:11615441,22410353 +g1,4080:13145051,22410353 +g1,4080:13802377,22410353 +g1,4080:16075165,22410353 +g1,4080:17668345,22410353 +g1,4080:20192136,22410353 +g1,4080:21042793,22410353 +g1,4080:22261107,22410353 +g1,4080:23617046,22410353 +g1,4080:26608109,22410353 +k1,4081:31966991,22410353:3329887 +g1,4081:31966991,22410353 +) +] +) +] +r1,4081:32583029,23126660:26214,6600945,0 +) +] +) +) +g1,4081:32583029,22536836 +) +h1,4081:6630773,23152874:0,0,0 +(1,4086:6630773,26387879:25952256,32768,229376 +(1,4086:6630773,26387879:0,32768,229376 +(1,4086:6630773,26387879:5505024,32768,229376 +r1,4086:12135797,26387879:5505024,262144,229376 +) +k1,4086:6630773,26387879:-5505024 +) +(1,4086:6630773,26387879:25952256,32768,0 +r1,4086:32583029,26387879:25952256,32768,0 +) +) +(1,4086:6630773,27992207:25952256,615776,9436 +(1,4086:6630773,27992207:2464678,582746,0 +g1,4086:6630773,27992207 +g1,4086:9095451,27992207 +) +g1,4086:11145680,27992207 +k1,4086:32583029,27992207:18695060 +g1,4086:32583029,27992207 +) +(1,4090:6630773,29226911:25952256,513147,126483 +k1,4089:8245508,29226911:142796 +k1,4089:10594901,29226911:142796 +k1,4089:11729256,29226911:142795 +k1,4089:12227912,29226911:142796 +k1,4089:14564853,29226911:142796 +k1,4089:16093735,29226911:142796 +k1,4089:16895822,29226911:142795 +k1,4089:18205814,29226911:142796 +k1,4089:18964648,29226911:142796 +k1,4089:20992915,29226911:142796 +k1,4089:22587333,29226911:142796 +k1,4089:25268993,29226911:142795 +k1,4089:25943286,29226911:142796 +k1,4089:26441942,29226911:142796 +k1,4089:28562615,29226911:142796 +k1,4089:29388295,29226911:142795 +k1,4089:29886951,29226911:142796 +k1,4089:31923737,29226911:142796 +k1,4089:32583029,29226911:0 +) +(1,4090:6630773,30068399:25952256,513147,134348 +k1,4089:7803265,30068399:153407 +k1,4089:9610144,30068399:153406 +k1,4089:11950487,30068399:153407 +k1,4089:13661685,30068399:153407 +k1,4089:14806652,30068399:153407 +k1,4089:17310179,30068399:153406 +k1,4089:18857537,30068399:153407 +k1,4089:21706440,30068399:153407 +(1,4089:21706440,30068399:0,459977,115847 +r1,4089:25933536,30068399:4227096,575824,115847 +k1,4089:21706440,30068399:-4227096 +) +(1,4089:21706440,30068399:4227096,459977,115847 +k1,4089:21706440,30068399:3277 +h1,4089:25930259,30068399:0,411205,112570 +) +k1,4089:26086943,30068399:153407 +k1,4089:27634300,30068399:153406 +k1,4089:28143567,30068399:153407 +k1,4089:30381019,30068399:153407 +k1,4089:32583029,30068399:0 +) +(1,4090:6630773,30909887:25952256,513147,134348 +k1,4089:7446915,30909887:164714 +k1,4089:8896134,30909887:164713 +k1,4089:10574074,30909887:164714 +k1,4089:11686439,30909887:164714 +k1,4089:14446378,30909887:164713 +k1,4089:19454858,30909887:164714 +k1,4089:23971818,30909887:164714 +k1,4089:25004883,30909887:164713 +k1,4089:26216862,30909887:164714 +k1,4089:27666082,30909887:164714 +k1,4089:29220158,30909887:164713 +k1,4089:31591469,30909887:164714 +k1,4089:32583029,30909887:0 +) +(1,4090:6630773,31751375:25952256,513147,134348 +k1,4089:9220318,31751375:206656 +k1,4089:10994596,31751375:206657 +k1,4089:12756421,31751375:206656 +(1,4089:12756421,31751375:0,452978,115847 +r1,4089:14169822,31751375:1413401,568825,115847 +k1,4089:12756421,31751375:-1413401 +) +(1,4089:12756421,31751375:1413401,452978,115847 +k1,4089:12756421,31751375:3277 +h1,4089:14166545,31751375:0,411205,112570 +) +k1,4089:14550148,31751375:206656 +k1,4089:15574694,31751375:206657 +k1,4089:16800435,31751375:206656 +k1,4089:20701355,31751375:206656 +k1,4089:21439508,31751375:206656 +k1,4089:23373694,31751375:206657 +k1,4089:25767286,31751375:206656 +k1,4089:26439903,31751375:206656 +k1,4089:28954738,31751375:206657 +k1,4089:29820686,31751375:206656 +k1,4089:32583029,31751375:0 +) +(1,4090:6630773,32592863:25952256,505283,134348 +k1,4089:9196179,32592863:221839 +k1,4089:10409578,32592863:221839 +k1,4089:13392450,32592863:221840 +k1,4089:14300451,32592863:221839 +k1,4089:18098590,32592863:221839 +k1,4089:19339514,32592863:221839 +k1,4089:21881983,32592863:221839 +k1,4089:24826189,32592863:221840 +k1,4089:26906629,32592863:221839 +k1,4089:29939307,32592863:221839 +k1,4089:32583029,32592863:0 +) +(1,4090:6630773,33434351:25952256,513147,134348 +g1,4089:9061503,33434351 +g1,4089:11190112,33434351 +g1,4089:12882251,33434351 +g1,4089:14100565,33434351 +g1,4089:17012329,33434351 +g1,4089:18301422,33434351 +g1,4089:20513917,33434351 +g1,4089:21244643,33434351 +k1,4090:32583029,33434351:8656653 +g1,4090:32583029,33434351 +) +v1,4092:6630773,34527967:0,393216,0 +(1,4139:6630773,45510161:25952256,11375410,196608 +g1,4139:6630773,45510161 +g1,4139:6630773,45510161 +g1,4139:6434165,45510161 +(1,4139:6434165,45510161:0,11375410,196608 +r1,4139:32779637,45510161:26345472,11572018,196608 +k1,4139:6434165,45510161:-26345472 +) +(1,4139:6434165,45510161:26345472,11375410,196608 +[1,4139:6630773,45510161:25952256,11178802,0 +(1,4094:6630773,34741877:25952256,410518,101187 +(1,4093:6630773,34741877:0,0,0 +g1,4093:6630773,34741877 +g1,4093:6630773,34741877 +g1,4093:6303093,34741877 +(1,4093:6303093,34741877:0,0,0 +) +g1,4093:6630773,34741877 +) +g1,4094:8211502,34741877 +g1,4094:9159940,34741877 +g1,4094:13269835,34741877 +g1,4094:13902127,34741877 +g1,4094:15482857,34741877 +g1,4094:16115149,34741877 +g1,4094:16747441,34741877 +g1,4094:18328170,34741877 +g1,4094:18960462,34741877 +g1,4094:19592754,34741877 +g1,4094:22121921,34741877 +h1,4094:24334940,34741877:0,0,0 +k1,4094:32583029,34741877:8248089 +g1,4094:32583029,34741877 +) +(1,4095:6630773,35408055:25952256,410518,6290 +h1,4095:6630773,35408055:0,0,0 +h1,4095:7895356,35408055:0,0,0 +k1,4095:32583028,35408055:24687672 +g1,4095:32583028,35408055 +) +(1,4105:6630773,36139769:25952256,379060,101187 +(1,4097:6630773,36139769:0,0,0 +g1,4097:6630773,36139769 +g1,4097:6630773,36139769 +g1,4097:6303093,36139769 +(1,4097:6303093,36139769:0,0,0 +) +g1,4097:6630773,36139769 +) +g1,4105:7579210,36139769 +g1,4105:7895356,36139769 +g1,4105:8211502,36139769 +g1,4105:8843794,36139769 +g1,4105:9476086,36139769 +g1,4105:9792232,36139769 +g1,4105:10108378,36139769 +g1,4105:10424524,36139769 +g1,4105:10740670,36139769 +h1,4105:11056816,36139769:0,0,0 +k1,4105:32583028,36139769:21526212 +g1,4105:32583028,36139769 +) +(1,4105:6630773,36805947:25952256,388497,7863 +h1,4105:6630773,36805947:0,0,0 +g1,4105:7579210,36805947 +g1,4105:8211502,36805947 +g1,4105:8843794,36805947 +g1,4105:9476086,36805947 +g1,4105:9792232,36805947 +h1,4105:11056815,36805947:0,0,0 +k1,4105:32583029,36805947:21526214 +g1,4105:32583029,36805947 +) +(1,4105:6630773,37472125:25952256,388497,7863 +h1,4105:6630773,37472125:0,0,0 +g1,4105:7579210,37472125 +g1,4105:8211502,37472125 +g1,4105:8843794,37472125 +g1,4105:9476086,37472125 +h1,4105:11056814,37472125:0,0,0 +k1,4105:32583030,37472125:21526216 +g1,4105:32583030,37472125 +) +(1,4105:6630773,38138303:25952256,388497,9436 +h1,4105:6630773,38138303:0,0,0 +g1,4105:7579210,38138303 +g1,4105:8211502,38138303 +g1,4105:8843794,38138303 +g1,4105:9476086,38138303 +g1,4105:9792232,38138303 +h1,4105:11056815,38138303:0,0,0 +k1,4105:32583029,38138303:21526214 +g1,4105:32583029,38138303 +) +(1,4105:6630773,38804481:25952256,379060,7863 +h1,4105:6630773,38804481:0,0,0 +g1,4105:7579210,38804481 +g1,4105:8211502,38804481 +g1,4105:8843794,38804481 +g1,4105:9476086,38804481 +h1,4105:11056814,38804481:0,0,0 +k1,4105:32583030,38804481:21526216 +g1,4105:32583030,38804481 +) +(1,4105:6630773,39470659:25952256,379060,9436 +h1,4105:6630773,39470659:0,0,0 +g1,4105:7579210,39470659 +g1,4105:8211502,39470659 +g1,4105:8843794,39470659 +g1,4105:9476086,39470659 +g1,4105:9792232,39470659 +h1,4105:11056815,39470659:0,0,0 +k1,4105:32583029,39470659:21526214 +g1,4105:32583029,39470659 +) +(1,4105:6630773,40136837:25952256,388497,9436 +h1,4105:6630773,40136837:0,0,0 +g1,4105:7579210,40136837 +g1,4105:8211502,40136837 +g1,4105:8843794,40136837 +g1,4105:9476086,40136837 +h1,4105:11056814,40136837:0,0,0 +k1,4105:32583030,40136837:21526216 +g1,4105:32583030,40136837 +) +(1,4107:6630773,41458375:25952256,410518,76021 +(1,4106:6630773,41458375:0,0,0 +g1,4106:6630773,41458375 +g1,4106:6630773,41458375 +g1,4106:6303093,41458375 +(1,4106:6303093,41458375:0,0,0 +) +g1,4106:6630773,41458375 +) +k1,4107:6630773,41458375:0 +h1,4107:9476084,41458375:0,0,0 +k1,4107:32583028,41458375:23106944 +g1,4107:32583028,41458375 +) +(1,4114:6630773,42190089:25952256,410518,9436 +(1,4109:6630773,42190089:0,0,0 +g1,4109:6630773,42190089 +g1,4109:6630773,42190089 +g1,4109:6303093,42190089 +(1,4109:6303093,42190089:0,0,0 +) +g1,4109:6630773,42190089 +) +g1,4114:7579210,42190089 +g1,4114:12005251,42190089 +g1,4114:12637543,42190089 +g1,4114:14218272,42190089 +g1,4114:15166709,42190089 +g1,4114:15482855,42190089 +g1,4114:16115147,42190089 +h1,4114:19276604,42190089:0,0,0 +k1,4114:32583029,42190089:13306425 +g1,4114:32583029,42190089 +) +(1,4114:6630773,42856267:25952256,410518,31456 +h1,4114:6630773,42856267:0,0,0 +g1,4114:7579210,42856267 +g1,4114:7895356,42856267 +g1,4114:8527648,42856267 +g1,4114:9476085,42856267 +g1,4114:10740668,42856267 +g1,4114:11056814,42856267 +g1,4114:11689106,42856267 +g1,4114:12321398,42856267 +g1,4114:12953690,42856267 +g1,4114:13585982,42856267 +g1,4114:14218274,42856267 +h1,4114:14534420,42856267:0,0,0 +k1,4114:32583028,42856267:18048608 +g1,4114:32583028,42856267 +) +(1,4114:6630773,43522445:25952256,410518,101187 +h1,4114:6630773,43522445:0,0,0 +g1,4114:7579210,43522445 +g1,4114:7895356,43522445 +g1,4114:8527648,43522445 +g1,4114:9476085,43522445 +g1,4114:11689105,43522445 +g1,4114:12637542,43522445 +g1,4114:13269834,43522445 +g1,4114:15166708,43522445 +g1,4114:16747437,43522445 +g1,4114:17379729,43522445 +g1,4114:18012021,43522445 +g1,4114:18644313,43522445 +g1,4114:19276605,43522445 +g1,4114:19908897,43522445 +h1,4114:20225043,43522445:0,0,0 +k1,4114:32583029,43522445:12357986 +g1,4114:32583029,43522445 +) +(1,4114:6630773,44188623:25952256,410518,107478 +h1,4114:6630773,44188623:0,0,0 +g1,4114:7579210,44188623 +g1,4114:7895356,44188623 +g1,4114:8527648,44188623 +g1,4114:9476085,44188623 +g1,4114:11056814,44188623 +g1,4114:11372960,44188623 +g1,4114:12953689,44188623 +g1,4114:14850563,44188623 +g1,4114:16431292,44188623 +g1,4114:18328166,44188623 +g1,4114:19908895,44188623 +h1,4114:21489623,44188623:0,0,0 +k1,4114:32583029,44188623:11093406 +g1,4114:32583029,44188623 +) +(1,4116:6630773,45510161:25952256,410518,76021 +(1,4115:6630773,45510161:0,0,0 +g1,4115:6630773,45510161 +g1,4115:6630773,45510161 +g1,4115:6303093,45510161 +(1,4115:6303093,45510161:0,0,0 +) +g1,4115:6630773,45510161 +) +k1,4116:6630773,45510161:0 +h1,4116:10108375,45510161:0,0,0 +k1,4116:32583029,45510161:22474654 +g1,4116:32583029,45510161 +) +] +) +g1,4139:32583029,45510161 +g1,4139:6630773,45510161 +g1,4139:6630773,45510161 +g1,4139:32583029,45510161 +g1,4139:32583029,45510161 +) +] +(1,4139:32583029,45706769:0,0,0 +g1,4139:32583029,45706769 +) +) +] +(1,4139:6630773,47279633:25952256,0,0 +h1,4139:6630773,47279633:25952256,0,0 +) +] +h1,4139:4262630,4025873:0,0,0 ] !22950 }77 -Input:502:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:503:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:504:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:505:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:506:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:507:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:508:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:509:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:510:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {78 -[1,4216:4262630,47279633:28320399,43253760,0 -(1,4216:4262630,4025873:0,0,0 -[1,4216:-473657,4025873:25952256,0,0 -(1,4216:-473657,-710414:25952256,0,0 -h1,4216:-473657,-710414:0,0,0 -(1,4216:-473657,-710414:0,0,0 -(1,4216:-473657,-710414:0,0,0 -g1,4216:-473657,-710414 -(1,4216:-473657,-710414:65781,0,65781 -g1,4216:-407876,-710414 -[1,4216:-407876,-644633:0,0,0 +[1,4222:4262630,47279633:28320399,43253760,0 +(1,4222:4262630,4025873:0,0,0 +[1,4222:-473657,4025873:25952256,0,0 +(1,4222:-473657,-710414:25952256,0,0 +h1,4222:-473657,-710414:0,0,0 +(1,4222:-473657,-710414:0,0,0 +(1,4222:-473657,-710414:0,0,0 +g1,4222:-473657,-710414 +(1,4222:-473657,-710414:65781,0,65781 +g1,4222:-407876,-710414 +[1,4222:-407876,-644633:0,0,0 ] ) -k1,4216:-473657,-710414:-65781 +k1,4222:-473657,-710414:-65781 ) ) -k1,4216:25478599,-710414:25952256 -g1,4216:25478599,-710414 +k1,4222:25478599,-710414:25952256 +g1,4222:25478599,-710414 ) ] ) -[1,4216:6630773,47279633:25952256,43253760,0 -[1,4216:6630773,4812305:25952256,786432,0 -(1,4216:6630773,4812305:25952256,513147,126483 -(1,4216:6630773,4812305:25952256,513147,126483 -g1,4216:3078558,4812305 -[1,4216:3078558,4812305:0,0,0 -(1,4216:3078558,2439708:0,1703936,0 -k1,4216:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4216:2537886,2439708:1179648,16384,0 +[1,4222:6630773,47279633:25952256,43253760,0 +[1,4222:6630773,4812305:25952256,786432,0 +(1,4222:6630773,4812305:25952256,513147,126483 +(1,4222:6630773,4812305:25952256,513147,126483 +g1,4222:3078558,4812305 +[1,4222:3078558,4812305:0,0,0 +(1,4222:3078558,2439708:0,1703936,0 +k1,4222:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4222:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4216:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4222:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4216:3078558,4812305:0,0,0 -(1,4216:3078558,2439708:0,1703936,0 -g1,4216:29030814,2439708 -g1,4216:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4216:36151628,1915420:16384,1179648,0 +[1,4222:3078558,4812305:0,0,0 +(1,4222:3078558,2439708:0,1703936,0 +g1,4222:29030814,2439708 +g1,4222:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4222:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4216:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4222:37855564,2439708:1179648,16384,0 ) ) -k1,4216:3078556,2439708:-34777008 +k1,4222:3078556,2439708:-34777008 ) ] -[1,4216:3078558,4812305:0,0,0 -(1,4216:3078558,49800853:0,16384,2228224 -k1,4216:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4216:2537886,49800853:1179648,16384,0 +[1,4222:3078558,4812305:0,0,0 +(1,4222:3078558,49800853:0,16384,2228224 +k1,4222:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4222:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4216:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4222:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4216:3078558,4812305:0,0,0 -(1,4216:3078558,49800853:0,16384,2228224 -g1,4216:29030814,49800853 -g1,4216:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4216:36151628,51504789:16384,1179648,0 +[1,4222:3078558,4812305:0,0,0 +(1,4222:3078558,49800853:0,16384,2228224 +g1,4222:29030814,49800853 +g1,4222:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4222:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4216:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4222:37855564,49800853:1179648,16384,0 ) ) -k1,4216:3078556,49800853:-34777008 +k1,4222:3078556,49800853:-34777008 ) ] -g1,4216:6630773,4812305 -g1,4216:6630773,4812305 -g1,4216:8364200,4812305 -g1,4216:10765439,4812305 -k1,4216:31786111,4812305:21020672 +g1,4222:6630773,4812305 +g1,4222:6630773,4812305 +g1,4222:8364200,4812305 +g1,4222:10765439,4812305 +k1,4222:31786111,4812305:21020672 ) ) ] -[1,4216:6630773,45706769:25952256,40108032,0 -(1,4216:6630773,45706769:25952256,40108032,0 -(1,4216:6630773,45706769:0,0,0 -g1,4216:6630773,45706769 +[1,4222:6630773,45706769:25952256,40108032,0 +(1,4222:6630773,45706769:25952256,40108032,0 +(1,4222:6630773,45706769:0,0,0 +g1,4222:6630773,45706769 ) -[1,4216:6630773,45706769:25952256,40108032,0 -v1,4133:6630773,6254097:0,393216,0 -(1,4133:6630773,12703784:25952256,6842903,196608 -g1,4133:6630773,12703784 -g1,4133:6630773,12703784 -g1,4133:6434165,12703784 -(1,4133:6434165,12703784:0,6842903,196608 -r1,4133:32779637,12703784:26345472,7039511,196608 -k1,4133:6434165,12703784:-26345472 +[1,4222:6630773,45706769:25952256,40108032,0 +v1,4139:6630773,6254097:0,393216,0 +(1,4139:6630773,12703784:25952256,6842903,196608 +g1,4139:6630773,12703784 +g1,4139:6630773,12703784 +g1,4139:6434165,12703784 +(1,4139:6434165,12703784:0,6842903,196608 +r1,4139:32779637,12703784:26345472,7039511,196608 +k1,4139:6434165,12703784:-26345472 ) -(1,4133:6434165,12703784:26345472,6842903,196608 -[1,4133:6630773,12703784:25952256,6646295,0 -(1,4114:6630773,6468007:25952256,410518,76021 -(1,4112:6630773,6468007:0,0,0 -g1,4112:6630773,6468007 -g1,4112:6630773,6468007 -g1,4112:6303093,6468007 -(1,4112:6303093,6468007:0,0,0 +(1,4139:6434165,12703784:26345472,6842903,196608 +[1,4139:6630773,12703784:25952256,6646295,0 +(1,4120:6630773,6468007:25952256,410518,76021 +(1,4118:6630773,6468007:0,0,0 +g1,4118:6630773,6468007 +g1,4118:6630773,6468007 +g1,4118:6303093,6468007 +(1,4118:6303093,6468007:0,0,0 ) -g1,4112:6630773,6468007 +g1,4118:6630773,6468007 ) -g1,4114:7579210,6468007 -g1,4114:8843793,6468007 -h1,4114:12637541,6468007:0,0,0 -k1,4114:32583029,6468007:19945488 -g1,4114:32583029,6468007 +g1,4120:7579210,6468007 +g1,4120:8843793,6468007 +h1,4120:12637541,6468007:0,0,0 +k1,4120:32583029,6468007:19945488 +g1,4120:32583029,6468007 ) -(1,4116:6630773,7789545:25952256,410518,76021 -(1,4115:6630773,7789545:0,0,0 -g1,4115:6630773,7789545 -g1,4115:6630773,7789545 -g1,4115:6303093,7789545 -(1,4115:6303093,7789545:0,0,0 -) -g1,4115:6630773,7789545 -) -k1,4116:6630773,7789545:0 -h1,4116:9792230,7789545:0,0,0 -k1,4116:32583030,7789545:22790800 -g1,4116:32583030,7789545 -) -(1,4120:6630773,8521259:25952256,404226,76021 -(1,4118:6630773,8521259:0,0,0 -g1,4118:6630773,8521259 -g1,4118:6630773,8521259 -g1,4118:6303093,8521259 -(1,4118:6303093,8521259:0,0,0 -) -g1,4118:6630773,8521259 -) -g1,4120:7579210,8521259 -g1,4120:8843793,8521259 -h1,4120:10740667,8521259:0,0,0 -k1,4120:32583029,8521259:21842362 -g1,4120:32583029,8521259 -) -(1,4122:6630773,9842797:25952256,410518,76021 -(1,4121:6630773,9842797:0,0,0 -g1,4121:6630773,9842797 -g1,4121:6630773,9842797 -g1,4121:6303093,9842797 -(1,4121:6303093,9842797:0,0,0 -) -g1,4121:6630773,9842797 -) -k1,4122:6630773,9842797:0 -h1,4122:12637541,9842797:0,0,0 -k1,4122:32583029,9842797:19945488 -g1,4122:32583029,9842797 -) -(1,4126:6630773,10574511:25952256,404226,76021 -(1,4124:6630773,10574511:0,0,0 -g1,4124:6630773,10574511 -g1,4124:6630773,10574511 -g1,4124:6303093,10574511 -(1,4124:6303093,10574511:0,0,0 -) -g1,4124:6630773,10574511 -) -g1,4126:7579210,10574511 -g1,4126:8843793,10574511 -h1,4126:10108376,10574511:0,0,0 -k1,4126:32583028,10574511:22474652 -g1,4126:32583028,10574511 -) -(1,4128:6630773,11896049:25952256,410518,76021 -(1,4127:6630773,11896049:0,0,0 -g1,4127:6630773,11896049 -g1,4127:6630773,11896049 -g1,4127:6303093,11896049 -(1,4127:6303093,11896049:0,0,0 -) -g1,4127:6630773,11896049 -) -k1,4128:6630773,11896049:0 -h1,4128:10740667,11896049:0,0,0 -k1,4128:32583029,11896049:21842362 -g1,4128:32583029,11896049 -) -(1,4132:6630773,12627763:25952256,404226,76021 -(1,4130:6630773,12627763:0,0,0 -g1,4130:6630773,12627763 -g1,4130:6630773,12627763 -g1,4130:6303093,12627763 -(1,4130:6303093,12627763:0,0,0 -) -g1,4130:6630773,12627763 -) -g1,4132:7579210,12627763 -g1,4132:8843793,12627763 -h1,4132:10108376,12627763:0,0,0 -k1,4132:32583028,12627763:22474652 -g1,4132:32583028,12627763 -) -] -) -g1,4133:32583029,12703784 -g1,4133:6630773,12703784 -g1,4133:6630773,12703784 -g1,4133:32583029,12703784 -g1,4133:32583029,12703784 -) -h1,4133:6630773,12900392:0,0,0 -(1,4137:6630773,14266168:25952256,513147,134348 -h1,4136:6630773,14266168:983040,0,0 -k1,4136:10553711,14266168:188697 -k1,4136:11401700,14266168:188697 -k1,4136:12979760,14266168:188697 -k1,4136:15375053,14266168:188696 -k1,4136:16095247,14266168:188697 -k1,4136:18485954,14266168:188697 -k1,4136:19326079,14266168:188697 -k1,4136:20799282,14266168:188697 -k1,4136:21647271,14266168:188697 -k1,4136:22855053,14266168:188697 -k1,4136:26486355,14266168:188696 -k1,4136:27842248,14266168:188697 -k1,4136:29103114,14266168:188697 -k1,4136:30358082,14266168:188697 -k1,4136:32583029,14266168:0 -) -(1,4137:6630773,15107656:25952256,505283,134348 -k1,4136:10247784,15107656:138360 -k1,4136:11339692,15107656:138359 -k1,4136:12582334,15107656:138360 -k1,4136:14469849,15107656:138359 -k1,4136:16002160,15107656:138360 -k1,4136:18887133,15107656:138359 -(1,4136:18887133,15107656:0,452978,115847 -r1,4136:20300534,15107656:1413401,568825,115847 -k1,4136:18887133,15107656:-1413401 -) -(1,4136:18887133,15107656:1413401,452978,115847 -k1,4136:18887133,15107656:3277 -h1,4136:20297257,15107656:0,411205,112570 -) -k1,4136:20438894,15107656:138360 -k1,4136:21228681,15107656:138359 -k1,4136:23571017,15107656:138360 -k1,4136:26902290,15107656:138359 -k1,4136:30055961,15107656:138360 -k1,4136:32583029,15107656:0 -) -(1,4137:6630773,15949144:25952256,513147,134348 -g1,4136:7489294,15949144 -g1,4136:9426538,15949144 -g1,4136:10644852,15949144 -g1,4136:13557272,15949144 -g1,4136:14372539,15949144 -g1,4136:14927628,15949144 -g1,4136:18573395,15949144 -g1,4136:19766150,15949144 -g1,4136:20648264,15949144 -k1,4137:32583029,15949144:7867601 -g1,4137:32583029,15949144 -) -v1,4139:6630773,17139610:0,393216,0 -(1,4164:6630773,24321011:25952256,7574617,196608 -g1,4164:6630773,24321011 -g1,4164:6630773,24321011 -g1,4164:6434165,24321011 -(1,4164:6434165,24321011:0,7574617,196608 -r1,4164:32779637,24321011:26345472,7771225,196608 -k1,4164:6434165,24321011:-26345472 -) -(1,4164:6434165,24321011:26345472,7574617,196608 -[1,4164:6630773,24321011:25952256,7378009,0 -(1,4141:6630773,17353520:25952256,410518,31456 -(1,4140:6630773,17353520:0,0,0 -g1,4140:6630773,17353520 -g1,4140:6630773,17353520 -g1,4140:6303093,17353520 -(1,4140:6303093,17353520:0,0,0 -) -g1,4140:6630773,17353520 -) -h1,4141:8527648,17353520:0,0,0 -k1,4141:32583028,17353520:24055380 -g1,4141:32583028,17353520 -) -(1,4145:6630773,18085234:25952256,404226,76021 -(1,4143:6630773,18085234:0,0,0 -g1,4143:6630773,18085234 -g1,4143:6630773,18085234 -g1,4143:6303093,18085234 -(1,4143:6303093,18085234:0,0,0 -) -g1,4143:6630773,18085234 -) -g1,4145:7579210,18085234 -g1,4145:8843793,18085234 -g1,4145:9476085,18085234 -g1,4145:10108377,18085234 -g1,4145:10740669,18085234 -g1,4145:11372961,18085234 -g1,4145:12005253,18085234 -h1,4145:12321399,18085234:0,0,0 -k1,4145:32583029,18085234:20261630 -g1,4145:32583029,18085234 -) -(1,4147:6630773,19406772:25952256,410518,76021 -(1,4146:6630773,19406772:0,0,0 -g1,4146:6630773,19406772 -g1,4146:6630773,19406772 -g1,4146:6303093,19406772 -(1,4146:6303093,19406772:0,0,0 -) -g1,4146:6630773,19406772 -) -h1,4147:10108375,19406772:0,0,0 -k1,4147:32583029,19406772:22474654 -g1,4147:32583029,19406772 -) -(1,4151:6630773,20138486:25952256,404226,76021 -(1,4149:6630773,20138486:0,0,0 -g1,4149:6630773,20138486 -g1,4149:6630773,20138486 -g1,4149:6303093,20138486 -(1,4149:6303093,20138486:0,0,0 -) -g1,4149:6630773,20138486 -) -g1,4151:7579210,20138486 -g1,4151:8843793,20138486 -g1,4151:9476085,20138486 -g1,4151:10108377,20138486 -g1,4151:10740669,20138486 -g1,4151:11372961,20138486 -g1,4151:12005253,20138486 -h1,4151:12321399,20138486:0,0,0 -k1,4151:32583029,20138486:20261630 -g1,4151:32583029,20138486 -) -(1,4153:6630773,21460024:25952256,410518,76021 -(1,4152:6630773,21460024:0,0,0 -g1,4152:6630773,21460024 -g1,4152:6630773,21460024 -g1,4152:6303093,21460024 -(1,4152:6303093,21460024:0,0,0 -) -g1,4152:6630773,21460024 -) -h1,4153:9476084,21460024:0,0,0 -k1,4153:32583028,21460024:23106944 -g1,4153:32583028,21460024 -) -(1,4157:6630773,22191738:25952256,404226,76021 -(1,4155:6630773,22191738:0,0,0 -g1,4155:6630773,22191738 -g1,4155:6630773,22191738 -g1,4155:6303093,22191738 -(1,4155:6303093,22191738:0,0,0 -) -g1,4155:6630773,22191738 -) -g1,4157:7579210,22191738 -g1,4157:8843793,22191738 -g1,4157:9476085,22191738 -g1,4157:10108377,22191738 -g1,4157:10740669,22191738 -g1,4157:11372961,22191738 -g1,4157:12005253,22191738 -h1,4157:12321399,22191738:0,0,0 -k1,4157:32583029,22191738:20261630 -g1,4157:32583029,22191738 -) -(1,4159:6630773,23513276:25952256,410518,76021 -(1,4158:6630773,23513276:0,0,0 -g1,4158:6630773,23513276 -g1,4158:6630773,23513276 -g1,4158:6303093,23513276 -(1,4158:6303093,23513276:0,0,0 -) -g1,4158:6630773,23513276 -) -k1,4159:6630773,23513276:0 -h1,4159:10108375,23513276:0,0,0 -k1,4159:32583029,23513276:22474654 -g1,4159:32583029,23513276 -) -(1,4163:6630773,24244990:25952256,410518,76021 -(1,4161:6630773,24244990:0,0,0 -g1,4161:6630773,24244990 -g1,4161:6630773,24244990 -g1,4161:6303093,24244990 -(1,4161:6303093,24244990:0,0,0 -) -g1,4161:6630773,24244990 -) -g1,4163:7579210,24244990 -g1,4163:8843793,24244990 -h1,4163:12637541,24244990:0,0,0 -k1,4163:32583029,24244990:19945488 -g1,4163:32583029,24244990 -) -] -) -g1,4164:32583029,24321011 -g1,4164:6630773,24321011 -g1,4164:6630773,24321011 -g1,4164:32583029,24321011 -g1,4164:32583029,24321011 -) -h1,4164:6630773,24517619:0,0,0 -(1,4168:6630773,25883395:25952256,513147,134348 -h1,4167:6630773,25883395:983040,0,0 -k1,4167:9355639,25883395:262678 -k1,4167:12313813,25883395:262678 -(1,4167:12313813,25883395:0,452978,115847 -r1,4167:14782350,25883395:2468537,568825,115847 -k1,4167:12313813,25883395:-2468537 -) -(1,4167:12313813,25883395:2468537,452978,115847 -k1,4167:12313813,25883395:3277 -h1,4167:14779073,25883395:0,411205,112570 -) -k1,4167:15045028,25883395:262678 -k1,4167:16176058,25883395:262678 -k1,4167:17543018,25883395:262678 -k1,4167:19621699,25883395:262678 -k1,4167:20903462,25883395:262678 -k1,4167:22721309,25883395:262678 -k1,4167:23643279,25883395:262678 -k1,4167:24676660,25883395:262678 -k1,4167:25354117,25883395:262614 -k1,4167:27576321,25883395:262678 -k1,4167:29071076,25883395:262678 -k1,4167:31612441,25883395:262678 -h1,4167:32583029,25883395:0,0,0 -k1,4167:32583029,25883395:0 -) -(1,4168:6630773,26724883:25952256,505283,134348 -k1,4167:7662901,26724883:222758 -k1,4167:9383812,26724883:222758 -h1,4167:10180730,26724883:0,0,0 -k1,4167:10784252,26724883:222758 -k1,4167:11824899,26724883:222758 -k1,4167:12916009,26724883:222758 -k1,4167:14345940,26724883:222758 -k1,4167:15184736,26724883:222758 -k1,4167:16426579,26724883:222758 -k1,4167:17821776,26724883:222758 -k1,4167:20799012,26724883:222758 -k1,4167:23496409,26724883:222758 -(1,4167:23496409,26724883:0,452978,115847 -r1,4167:24909810,26724883:1413401,568825,115847 -k1,4167:23496409,26724883:-1413401 -) -(1,4167:23496409,26724883:1413401,452978,115847 -k1,4167:23496409,26724883:3277 -h1,4167:24906533,26724883:0,411205,112570 -) -k1,4167:25132568,26724883:222758 -k1,4167:26546771,26724883:222758 -(1,4167:26546771,26724883:0,459977,115847 -r1,4167:30070443,26724883:3523672,575824,115847 -k1,4167:26546771,26724883:-3523672 -) -(1,4167:26546771,26724883:3523672,459977,115847 -k1,4167:26546771,26724883:3277 -h1,4167:30067166,26724883:0,411205,112570 -) -k1,4167:30293201,26724883:222758 -k1,4167:32583029,26724883:0 -) -(1,4168:6630773,27566371:25952256,513147,134348 -k1,4167:8933217,27566371:165970 -k1,4167:9750614,27566371:165969 -k1,4167:11089023,27566371:165970 -k1,4167:14017336,27566371:165970 -k1,4167:16589788,27566371:165970 -k1,4167:19690459,27566371:165969 -k1,4167:21365068,27566371:165970 -k1,4167:25362273,27566371:165970 -k1,4167:26059740,27566371:165970 -k1,4167:28080378,27566371:165969 -k1,4167:29055718,27566371:165970 -k1,4167:29577548,27566371:165970 -k1,4167:32583029,27566371:0 -) -(1,4168:6630773,28407859:25952256,513147,126483 -k1,4167:7488182,28407859:198117 -k1,4167:10092780,28407859:198116 -k1,4167:11244446,28407859:198117 -k1,4167:12489828,28407859:198117 -k1,4167:13972450,28407859:198116 -k1,4167:15725736,28407859:198117 -(1,4167:15725736,28407859:0,459977,115847 -r1,4167:19249408,28407859:3523672,575824,115847 -k1,4167:15725736,28407859:-3523672 -) -(1,4167:15725736,28407859:3523672,459977,115847 -k1,4167:15725736,28407859:3277 -h1,4167:19246131,28407859:0,411205,112570 -) -k1,4167:19447525,28407859:198117 -k1,4167:20177138,28407859:198116 -k1,4167:22758144,28407859:198117 -k1,4167:24523882,28407859:198117 -k1,4167:26277167,28407859:198116 -(1,4167:26277167,28407859:0,452978,115847 -r1,4167:27690568,28407859:1413401,568825,115847 -k1,4167:26277167,28407859:-1413401 -) -(1,4167:26277167,28407859:1413401,452978,115847 -k1,4167:26277167,28407859:3277 -h1,4167:27687291,28407859:0,411205,112570 -) -k1,4167:28062355,28407859:198117 -k1,4167:32583029,28407859:0 -) -(1,4168:6630773,29249347:25952256,513147,134348 -k1,4167:8238220,29249347:218084 -k1,4167:10662900,29249347:218083 -k1,4167:13005661,29249347:218084 -k1,4167:14242829,29249347:218083 -k1,4167:17245538,29249347:218084 -k1,4167:18655066,29249347:218083 -k1,4167:23501303,29249347:218084 -k1,4167:24378678,29249347:218083 -k1,4167:26094260,29249347:218084 -k1,4167:26998505,29249347:218083 -k1,4167:28605297,29249347:218084 -k1,4167:29509542,29249347:218083 -k1,4167:31107814,29249347:218084 -k1,4167:32583029,29249347:0 -) -(1,4168:6630773,30090835:25952256,513147,126483 -g1,4167:7896273,30090835 -g1,4167:9605452,30090835 -g1,4167:12024385,30090835 -g1,4167:12985142,30090835 -g1,4167:14467566,30090835 -g1,4167:16153807,30090835 -g1,4167:18734614,30090835 -g1,4167:19881494,30090835 -g1,4167:21470086,30090835 -k1,4168:32583029,30090835:8732675 -g1,4168:32583029,30090835 -) -(1,4170:6630773,30932323:25952256,513147,126483 -h1,4169:6630773,30932323:983040,0,0 -k1,4169:8428906,30932323:187258 -k1,4169:9635249,30932323:187258 -k1,4169:11475980,30932323:187258 -k1,4169:12901213,30932323:187258 -k1,4169:13774633,30932323:187258 -k1,4169:15355842,30932323:187258 -k1,4169:18024948,30932323:187258 -k1,4169:19080559,30932323:187259 -k1,4169:20372099,30932323:187258 -k1,4169:21756700,30932323:187258 -k1,4169:24897666,30932323:187258 -k1,4169:25736352,30932323:187258 -k1,4169:27247437,30932323:187258 -k1,4169:28626140,30932323:187258 -k1,4169:30202761,30932323:187258 -k1,4170:32583029,30932323:0 -k1,4170:32583029,30932323:0 -) -v1,4172:6630773,32122789:0,393216,0 -(1,4186:6630773,37763115:25952256,6033542,196608 -g1,4186:6630773,37763115 -g1,4186:6630773,37763115 -g1,4186:6434165,37763115 -(1,4186:6434165,37763115:0,6033542,196608 -r1,4186:32779637,37763115:26345472,6230150,196608 -k1,4186:6434165,37763115:-26345472 -) -(1,4186:6434165,37763115:26345472,6033542,196608 -[1,4186:6630773,37763115:25952256,5836934,0 -(1,4174:6630773,32336699:25952256,410518,31456 -(1,4173:6630773,32336699:0,0,0 -g1,4173:6630773,32336699 -g1,4173:6630773,32336699 -g1,4173:6303093,32336699 -(1,4173:6303093,32336699:0,0,0 -) -g1,4173:6630773,32336699 -) -g1,4174:9159939,32336699 -g1,4174:10108377,32336699 -h1,4174:11056815,32336699:0,0,0 -k1,4174:32583029,32336699:21526214 -g1,4174:32583029,32336699 -) -(1,4175:6630773,33002877:25952256,410518,31456 -h1,4175:6630773,33002877:0,0,0 -g1,4175:9159939,33002877 -g1,4175:10108377,33002877 -h1,4175:11056814,33002877:0,0,0 -k1,4175:32583030,33002877:21526216 -g1,4175:32583030,33002877 -) -(1,4176:6630773,33669055:25952256,410518,76021 -h1,4176:6630773,33669055:0,0,0 -k1,4176:6630773,33669055:0 -h1,4176:9476084,33669055:0,0,0 -k1,4176:32583028,33669055:23106944 -g1,4176:32583028,33669055 -) -(1,4185:6630773,34400769:25952256,410518,9436 -(1,4178:6630773,34400769:0,0,0 -g1,4178:6630773,34400769 -g1,4178:6630773,34400769 -g1,4178:6303093,34400769 -(1,4178:6303093,34400769:0,0,0 -) -g1,4178:6630773,34400769 -) -g1,4185:7579210,34400769 -g1,4185:12005251,34400769 -g1,4185:12637543,34400769 -g1,4185:14218272,34400769 -g1,4185:15166709,34400769 -g1,4185:15482855,34400769 -g1,4185:16115147,34400769 -h1,4185:19276604,34400769:0,0,0 -k1,4185:32583029,34400769:13306425 -g1,4185:32583029,34400769 -) -(1,4185:6630773,35066947:25952256,410518,31456 -h1,4185:6630773,35066947:0,0,0 -g1,4185:7579210,35066947 -g1,4185:7895356,35066947 -g1,4185:8527648,35066947 -g1,4185:9159940,35066947 -g1,4185:9792232,35066947 -g1,4185:11056815,35066947 -g1,4185:11372961,35066947 -g1,4185:12005253,35066947 -g1,4185:12637545,35066947 -g1,4185:13269837,35066947 -g1,4185:13902129,35066947 -g1,4185:14534421,35066947 -h1,4185:14850567,35066947:0,0,0 -k1,4185:32583029,35066947:17732462 -g1,4185:32583029,35066947 -) -(1,4185:6630773,35733125:25952256,410518,101187 -h1,4185:6630773,35733125:0,0,0 -g1,4185:7579210,35733125 -g1,4185:7895356,35733125 -g1,4185:8527648,35733125 -g1,4185:9159940,35733125 -g1,4185:9792232,35733125 -g1,4185:12005252,35733125 -g1,4185:12953689,35733125 -g1,4185:13585981,35733125 -g1,4185:15482855,35733125 -g1,4185:17063584,35733125 -g1,4185:17695876,35733125 -g1,4185:18328168,35733125 -g1,4185:18960460,35733125 -g1,4185:19592752,35733125 -g1,4185:20225044,35733125 -h1,4185:20541190,35733125:0,0,0 -k1,4185:32583029,35733125:12041839 -g1,4185:32583029,35733125 -) -(1,4185:6630773,36399303:25952256,410518,107478 -h1,4185:6630773,36399303:0,0,0 -g1,4185:7579210,36399303 -g1,4185:7895356,36399303 -g1,4185:8527648,36399303 -g1,4185:9159940,36399303 -g1,4185:9792232,36399303 -g1,4185:11372961,36399303 -g1,4185:11689107,36399303 -g1,4185:13269836,36399303 -g1,4185:15166710,36399303 -g1,4185:16747439,36399303 -g1,4185:18644313,36399303 -g1,4185:20225042,36399303 -h1,4185:21805770,36399303:0,0,0 -k1,4185:32583029,36399303:10777259 -g1,4185:32583029,36399303 -) -(1,4185:6630773,37065481:25952256,410518,31456 -h1,4185:6630773,37065481:0,0,0 -g1,4185:7579210,37065481 -g1,4185:7895356,37065481 -g1,4185:8527648,37065481 -g1,4185:9792231,37065481 -g1,4185:11056814,37065481 -g1,4185:11372960,37065481 -g1,4185:12005252,37065481 -g1,4185:12637544,37065481 -g1,4185:13269836,37065481 -g1,4185:13902128,37065481 -g1,4185:14534420,37065481 -h1,4185:14850566,37065481:0,0,0 -k1,4185:32583030,37065481:17732464 -g1,4185:32583030,37065481 -) -(1,4185:6630773,37731659:25952256,410518,31456 -h1,4185:6630773,37731659:0,0,0 -g1,4185:7579210,37731659 -g1,4185:7895356,37731659 -g1,4185:8527648,37731659 -g1,4185:9792231,37731659 -g1,4185:11056814,37731659 -g1,4185:11372960,37731659 -g1,4185:12637543,37731659 -g1,4185:13902126,37731659 -g1,4185:15166709,37731659 -g1,4185:16431292,37731659 -h1,4185:17379729,37731659:0,0,0 -k1,4185:32583029,37731659:15203300 -g1,4185:32583029,37731659 -) -] -) -g1,4186:32583029,37763115 -g1,4186:6630773,37763115 -g1,4186:6630773,37763115 -g1,4186:32583029,37763115 -g1,4186:32583029,37763115 -) -h1,4186:6630773,37959723:0,0,0 -(1,4190:6630773,39325499:25952256,513147,115847 -h1,4189:6630773,39325499:983040,0,0 -k1,4189:8809612,39325499:242250 -k1,4189:10527077,39325499:242250 -k1,4189:12734751,39325499:242249 -k1,4189:14149440,39325499:242250 -k1,4189:17104881,39325499:242250 -k1,4189:17998559,39325499:242250 -k1,4189:19259894,39325499:242250 -k1,4189:20891506,39325499:242249 -k1,4189:23183722,39325499:242250 -k1,4189:24617417,39325499:242250 -k1,4189:25475705,39325499:242250 -k1,4189:26737040,39325499:242250 -k1,4189:28346370,39325499:242249 -k1,4189:29247912,39325499:242250 -k1,4189:31873051,39325499:242250 -(1,4189:31873051,39325499:0,435480,115847 -r1,4189:32583029,39325499:709978,551327,115847 -k1,4189:31873051,39325499:-709978 -) -(1,4189:31873051,39325499:709978,435480,115847 -k1,4189:31873051,39325499:3277 -h1,4189:32579752,39325499:0,411205,112570 -) -k1,4189:32583029,39325499:0 -) -(1,4190:6630773,40166987:25952256,513147,134348 -k1,4189:9637716,40166987:147607 -k1,4189:11223838,40166987:147607 -k1,4189:13207764,40166987:147607 -k1,4189:14736216,40166987:147608 -k1,4189:15415320,40166987:147607 -k1,4189:17481821,40166987:147607 -k1,4189:18953255,40166987:147607 -k1,4189:20292307,40166987:147607 -k1,4189:21829277,40166987:147607 -k1,4189:24183482,40166987:147608 -k1,4189:26074347,40166987:147607 -k1,4189:30310745,40166987:147607 -k1,4189:31074390,40166987:147607 -k1,4189:32583029,40166987:0 -) -(1,4190:6630773,41008475:25952256,513147,134348 -k1,4189:9788095,41008475:223931 -k1,4189:10639862,41008475:223932 -k1,4189:11219653,41008475:223931 -k1,4189:12832948,41008475:223932 -k1,4189:15106845,41008475:223931 -k1,4189:18161931,41008475:223931 -k1,4189:19941032,41008475:223932 -k1,4189:21356408,41008475:223931 -k1,4189:23362918,41008475:223931 -k1,4189:24691132,41008475:223932 -k1,4189:25662829,41008475:223931 -k1,4189:28649104,41008475:223932 -k1,4189:29820686,41008475:223931 -k1,4189:32583029,41008475:0 -) -(1,4190:6630773,41849963:25952256,513147,134348 -k1,4189:9671795,41849963:199381 -k1,4189:13172223,41849963:199380 -k1,4189:14751792,41849963:199381 -k1,4189:15942733,41849963:199381 -k1,4189:18854648,41849963:199380 -k1,4189:19705457,41849963:199381 -k1,4189:20652604,41849963:199381 -k1,4189:23160163,41849963:199381 -k1,4189:24042428,41849963:199380 -k1,4189:26466101,41849963:199381 -k1,4189:27324774,41849963:199381 -k1,4189:28543239,41849963:199380 -k1,4189:30396093,41849963:199381 -k1,4189:32583029,41849963:0 -) -(1,4190:6630773,42691451:25952256,513147,134348 -k1,4189:7475485,42691451:216877 -k1,4189:8711447,42691451:216877 -k1,4189:10295405,42691451:216877 -k1,4189:11171575,42691451:216878 -k1,4189:12885950,42691451:216877 -k1,4189:14757611,42691451:216877 -k1,4189:15505985,42691451:216877 -k1,4189:16532232,42691451:216877 -k1,4189:18242675,42691451:216877 -k1,4189:22564072,42691451:216877 -k1,4189:23972395,42691451:216878 -k1,4189:27048608,42691451:216877 -k1,4189:29020539,42691451:216877 -k1,4189:30920381,42691451:216877 -k1,4189:32583029,42691451:0 -) -(1,4190:6630773,43532939:25952256,513147,134348 -k1,4189:8531332,43532939:202521 -k1,4189:10921445,43532939:202521 -k1,4189:11479827,43532939:202522 -k1,4189:13433470,43532939:202521 -k1,4189:16518264,43532939:202521 -k1,4189:17739870,43532939:202521 -k1,4189:19953037,43532939:202522 -k1,4189:22934285,43532939:202521 -k1,4189:25005237,43532939:202521 -k1,4189:26155409,43532939:202521 -(1,4189:26155409,43532939:0,452978,115847 -r1,4189:27568810,43532939:1413401,568825,115847 -k1,4189:26155409,43532939:-1413401 -) -(1,4189:26155409,43532939:1413401,452978,115847 -k1,4189:26155409,43532939:3277 -h1,4189:27565533,43532939:0,411205,112570 -) -k1,4189:27945001,43532939:202521 -k1,4189:28798951,43532939:202522 -k1,4189:30745385,43532939:202521 -k1,4189:31563944,43532939:202521 -k1,4189:32583029,43532939:0 -) -(1,4190:6630773,44374427:25952256,513147,126483 -g1,4189:9491419,44374427 -g1,4189:11545972,44374427 -g1,4189:12692852,44374427 -(1,4189:12692852,44374427:0,459977,115847 -r1,4189:14106253,44374427:1413401,575824,115847 -k1,4189:12692852,44374427:-1413401 -) -(1,4189:12692852,44374427:1413401,459977,115847 -k1,4189:12692852,44374427:3277 -h1,4189:14102976,44374427:0,411205,112570 -) -k1,4190:32583029,44374427:18303106 -g1,4190:32583029,44374427 -) -v1,4192:6630773,45564893:0,393216,0 -] -(1,4216:32583029,45706769:0,0,0 -g1,4216:32583029,45706769 -) -) -] -(1,4216:6630773,47279633:25952256,0,0 -h1,4216:6630773,47279633:25952256,0,0 -) -] -h1,4216:4262630,4025873:0,0,0 +(1,4122:6630773,7789545:25952256,410518,76021 +(1,4121:6630773,7789545:0,0,0 +g1,4121:6630773,7789545 +g1,4121:6630773,7789545 +g1,4121:6303093,7789545 +(1,4121:6303093,7789545:0,0,0 +) +g1,4121:6630773,7789545 +) +k1,4122:6630773,7789545:0 +h1,4122:9792230,7789545:0,0,0 +k1,4122:32583030,7789545:22790800 +g1,4122:32583030,7789545 +) +(1,4126:6630773,8521259:25952256,404226,76021 +(1,4124:6630773,8521259:0,0,0 +g1,4124:6630773,8521259 +g1,4124:6630773,8521259 +g1,4124:6303093,8521259 +(1,4124:6303093,8521259:0,0,0 +) +g1,4124:6630773,8521259 +) +g1,4126:7579210,8521259 +g1,4126:8843793,8521259 +h1,4126:10740667,8521259:0,0,0 +k1,4126:32583029,8521259:21842362 +g1,4126:32583029,8521259 +) +(1,4128:6630773,9842797:25952256,410518,76021 +(1,4127:6630773,9842797:0,0,0 +g1,4127:6630773,9842797 +g1,4127:6630773,9842797 +g1,4127:6303093,9842797 +(1,4127:6303093,9842797:0,0,0 +) +g1,4127:6630773,9842797 +) +k1,4128:6630773,9842797:0 +h1,4128:12637541,9842797:0,0,0 +k1,4128:32583029,9842797:19945488 +g1,4128:32583029,9842797 +) +(1,4132:6630773,10574511:25952256,404226,76021 +(1,4130:6630773,10574511:0,0,0 +g1,4130:6630773,10574511 +g1,4130:6630773,10574511 +g1,4130:6303093,10574511 +(1,4130:6303093,10574511:0,0,0 +) +g1,4130:6630773,10574511 +) +g1,4132:7579210,10574511 +g1,4132:8843793,10574511 +h1,4132:10108376,10574511:0,0,0 +k1,4132:32583028,10574511:22474652 +g1,4132:32583028,10574511 +) +(1,4134:6630773,11896049:25952256,410518,76021 +(1,4133:6630773,11896049:0,0,0 +g1,4133:6630773,11896049 +g1,4133:6630773,11896049 +g1,4133:6303093,11896049 +(1,4133:6303093,11896049:0,0,0 +) +g1,4133:6630773,11896049 +) +k1,4134:6630773,11896049:0 +h1,4134:10740667,11896049:0,0,0 +k1,4134:32583029,11896049:21842362 +g1,4134:32583029,11896049 +) +(1,4138:6630773,12627763:25952256,404226,76021 +(1,4136:6630773,12627763:0,0,0 +g1,4136:6630773,12627763 +g1,4136:6630773,12627763 +g1,4136:6303093,12627763 +(1,4136:6303093,12627763:0,0,0 +) +g1,4136:6630773,12627763 +) +g1,4138:7579210,12627763 +g1,4138:8843793,12627763 +h1,4138:10108376,12627763:0,0,0 +k1,4138:32583028,12627763:22474652 +g1,4138:32583028,12627763 +) +] +) +g1,4139:32583029,12703784 +g1,4139:6630773,12703784 +g1,4139:6630773,12703784 +g1,4139:32583029,12703784 +g1,4139:32583029,12703784 +) +h1,4139:6630773,12900392:0,0,0 +(1,4143:6630773,14266168:25952256,513147,134348 +h1,4142:6630773,14266168:983040,0,0 +k1,4142:10553711,14266168:188697 +k1,4142:11401700,14266168:188697 +k1,4142:12979760,14266168:188697 +k1,4142:15375053,14266168:188696 +k1,4142:16095247,14266168:188697 +k1,4142:18485954,14266168:188697 +k1,4142:19326079,14266168:188697 +k1,4142:20799282,14266168:188697 +k1,4142:21647271,14266168:188697 +k1,4142:22855053,14266168:188697 +k1,4142:26486355,14266168:188696 +k1,4142:27842248,14266168:188697 +k1,4142:29103114,14266168:188697 +k1,4142:30358082,14266168:188697 +k1,4142:32583029,14266168:0 +) +(1,4143:6630773,15107656:25952256,505283,134348 +k1,4142:10247784,15107656:138360 +k1,4142:11339692,15107656:138359 +k1,4142:12582334,15107656:138360 +k1,4142:14469849,15107656:138359 +k1,4142:16002160,15107656:138360 +k1,4142:18887133,15107656:138359 +(1,4142:18887133,15107656:0,452978,115847 +r1,4142:20300534,15107656:1413401,568825,115847 +k1,4142:18887133,15107656:-1413401 +) +(1,4142:18887133,15107656:1413401,452978,115847 +k1,4142:18887133,15107656:3277 +h1,4142:20297257,15107656:0,411205,112570 +) +k1,4142:20438894,15107656:138360 +k1,4142:21228681,15107656:138359 +k1,4142:23571017,15107656:138360 +k1,4142:26902290,15107656:138359 +k1,4142:30055961,15107656:138360 +k1,4142:32583029,15107656:0 +) +(1,4143:6630773,15949144:25952256,513147,134348 +g1,4142:7489294,15949144 +g1,4142:9426538,15949144 +g1,4142:10644852,15949144 +g1,4142:13557272,15949144 +g1,4142:14372539,15949144 +g1,4142:14927628,15949144 +g1,4142:18573395,15949144 +g1,4142:19766150,15949144 +g1,4142:20648264,15949144 +k1,4143:32583029,15949144:7867601 +g1,4143:32583029,15949144 +) +v1,4145:6630773,17139610:0,393216,0 +(1,4170:6630773,24321011:25952256,7574617,196608 +g1,4170:6630773,24321011 +g1,4170:6630773,24321011 +g1,4170:6434165,24321011 +(1,4170:6434165,24321011:0,7574617,196608 +r1,4170:32779637,24321011:26345472,7771225,196608 +k1,4170:6434165,24321011:-26345472 +) +(1,4170:6434165,24321011:26345472,7574617,196608 +[1,4170:6630773,24321011:25952256,7378009,0 +(1,4147:6630773,17353520:25952256,410518,31456 +(1,4146:6630773,17353520:0,0,0 +g1,4146:6630773,17353520 +g1,4146:6630773,17353520 +g1,4146:6303093,17353520 +(1,4146:6303093,17353520:0,0,0 +) +g1,4146:6630773,17353520 +) +h1,4147:8527648,17353520:0,0,0 +k1,4147:32583028,17353520:24055380 +g1,4147:32583028,17353520 +) +(1,4151:6630773,18085234:25952256,404226,76021 +(1,4149:6630773,18085234:0,0,0 +g1,4149:6630773,18085234 +g1,4149:6630773,18085234 +g1,4149:6303093,18085234 +(1,4149:6303093,18085234:0,0,0 +) +g1,4149:6630773,18085234 +) +g1,4151:7579210,18085234 +g1,4151:8843793,18085234 +g1,4151:9476085,18085234 +g1,4151:10108377,18085234 +g1,4151:10740669,18085234 +g1,4151:11372961,18085234 +g1,4151:12005253,18085234 +h1,4151:12321399,18085234:0,0,0 +k1,4151:32583029,18085234:20261630 +g1,4151:32583029,18085234 +) +(1,4153:6630773,19406772:25952256,410518,76021 +(1,4152:6630773,19406772:0,0,0 +g1,4152:6630773,19406772 +g1,4152:6630773,19406772 +g1,4152:6303093,19406772 +(1,4152:6303093,19406772:0,0,0 +) +g1,4152:6630773,19406772 +) +h1,4153:10108375,19406772:0,0,0 +k1,4153:32583029,19406772:22474654 +g1,4153:32583029,19406772 +) +(1,4157:6630773,20138486:25952256,404226,76021 +(1,4155:6630773,20138486:0,0,0 +g1,4155:6630773,20138486 +g1,4155:6630773,20138486 +g1,4155:6303093,20138486 +(1,4155:6303093,20138486:0,0,0 +) +g1,4155:6630773,20138486 +) +g1,4157:7579210,20138486 +g1,4157:8843793,20138486 +g1,4157:9476085,20138486 +g1,4157:10108377,20138486 +g1,4157:10740669,20138486 +g1,4157:11372961,20138486 +g1,4157:12005253,20138486 +h1,4157:12321399,20138486:0,0,0 +k1,4157:32583029,20138486:20261630 +g1,4157:32583029,20138486 +) +(1,4159:6630773,21460024:25952256,410518,76021 +(1,4158:6630773,21460024:0,0,0 +g1,4158:6630773,21460024 +g1,4158:6630773,21460024 +g1,4158:6303093,21460024 +(1,4158:6303093,21460024:0,0,0 +) +g1,4158:6630773,21460024 +) +h1,4159:9476084,21460024:0,0,0 +k1,4159:32583028,21460024:23106944 +g1,4159:32583028,21460024 +) +(1,4163:6630773,22191738:25952256,404226,76021 +(1,4161:6630773,22191738:0,0,0 +g1,4161:6630773,22191738 +g1,4161:6630773,22191738 +g1,4161:6303093,22191738 +(1,4161:6303093,22191738:0,0,0 +) +g1,4161:6630773,22191738 +) +g1,4163:7579210,22191738 +g1,4163:8843793,22191738 +g1,4163:9476085,22191738 +g1,4163:10108377,22191738 +g1,4163:10740669,22191738 +g1,4163:11372961,22191738 +g1,4163:12005253,22191738 +h1,4163:12321399,22191738:0,0,0 +k1,4163:32583029,22191738:20261630 +g1,4163:32583029,22191738 +) +(1,4165:6630773,23513276:25952256,410518,76021 +(1,4164:6630773,23513276:0,0,0 +g1,4164:6630773,23513276 +g1,4164:6630773,23513276 +g1,4164:6303093,23513276 +(1,4164:6303093,23513276:0,0,0 +) +g1,4164:6630773,23513276 +) +k1,4165:6630773,23513276:0 +h1,4165:10108375,23513276:0,0,0 +k1,4165:32583029,23513276:22474654 +g1,4165:32583029,23513276 +) +(1,4169:6630773,24244990:25952256,410518,76021 +(1,4167:6630773,24244990:0,0,0 +g1,4167:6630773,24244990 +g1,4167:6630773,24244990 +g1,4167:6303093,24244990 +(1,4167:6303093,24244990:0,0,0 +) +g1,4167:6630773,24244990 +) +g1,4169:7579210,24244990 +g1,4169:8843793,24244990 +h1,4169:12637541,24244990:0,0,0 +k1,4169:32583029,24244990:19945488 +g1,4169:32583029,24244990 +) +] +) +g1,4170:32583029,24321011 +g1,4170:6630773,24321011 +g1,4170:6630773,24321011 +g1,4170:32583029,24321011 +g1,4170:32583029,24321011 +) +h1,4170:6630773,24517619:0,0,0 +(1,4174:6630773,25883395:25952256,513147,134348 +h1,4173:6630773,25883395:983040,0,0 +k1,4173:9355639,25883395:262678 +k1,4173:12313813,25883395:262678 +(1,4173:12313813,25883395:0,452978,115847 +r1,4173:14782350,25883395:2468537,568825,115847 +k1,4173:12313813,25883395:-2468537 +) +(1,4173:12313813,25883395:2468537,452978,115847 +k1,4173:12313813,25883395:3277 +h1,4173:14779073,25883395:0,411205,112570 +) +k1,4173:15045028,25883395:262678 +k1,4173:16176058,25883395:262678 +k1,4173:17543018,25883395:262678 +k1,4173:19621699,25883395:262678 +k1,4173:20903462,25883395:262678 +k1,4173:22721309,25883395:262678 +k1,4173:23643279,25883395:262678 +k1,4173:24676660,25883395:262678 +k1,4173:25354117,25883395:262614 +k1,4173:27576321,25883395:262678 +k1,4173:29071076,25883395:262678 +k1,4173:31612441,25883395:262678 +h1,4173:32583029,25883395:0,0,0 +k1,4173:32583029,25883395:0 +) +(1,4174:6630773,26724883:25952256,505283,134348 +k1,4173:7662901,26724883:222758 +k1,4173:9383812,26724883:222758 +h1,4173:10180730,26724883:0,0,0 +k1,4173:10784252,26724883:222758 +k1,4173:11824899,26724883:222758 +k1,4173:12916009,26724883:222758 +k1,4173:14345940,26724883:222758 +k1,4173:15184736,26724883:222758 +k1,4173:16426579,26724883:222758 +k1,4173:17821776,26724883:222758 +k1,4173:20799012,26724883:222758 +k1,4173:23496409,26724883:222758 +(1,4173:23496409,26724883:0,452978,115847 +r1,4173:24909810,26724883:1413401,568825,115847 +k1,4173:23496409,26724883:-1413401 +) +(1,4173:23496409,26724883:1413401,452978,115847 +k1,4173:23496409,26724883:3277 +h1,4173:24906533,26724883:0,411205,112570 +) +k1,4173:25132568,26724883:222758 +k1,4173:26546771,26724883:222758 +(1,4173:26546771,26724883:0,459977,115847 +r1,4173:30070443,26724883:3523672,575824,115847 +k1,4173:26546771,26724883:-3523672 +) +(1,4173:26546771,26724883:3523672,459977,115847 +k1,4173:26546771,26724883:3277 +h1,4173:30067166,26724883:0,411205,112570 +) +k1,4173:30293201,26724883:222758 +k1,4173:32583029,26724883:0 +) +(1,4174:6630773,27566371:25952256,513147,134348 +k1,4173:8933217,27566371:165970 +k1,4173:9750614,27566371:165969 +k1,4173:11089023,27566371:165970 +k1,4173:14017336,27566371:165970 +k1,4173:16589788,27566371:165970 +k1,4173:19690459,27566371:165969 +k1,4173:21365068,27566371:165970 +k1,4173:25362273,27566371:165970 +k1,4173:26059740,27566371:165970 +k1,4173:28080378,27566371:165969 +k1,4173:29055718,27566371:165970 +k1,4173:29577548,27566371:165970 +k1,4173:32583029,27566371:0 +) +(1,4174:6630773,28407859:25952256,513147,126483 +k1,4173:7488182,28407859:198117 +k1,4173:10092780,28407859:198116 +k1,4173:11244446,28407859:198117 +k1,4173:12489828,28407859:198117 +k1,4173:13972450,28407859:198116 +k1,4173:15725736,28407859:198117 +(1,4173:15725736,28407859:0,459977,115847 +r1,4173:19249408,28407859:3523672,575824,115847 +k1,4173:15725736,28407859:-3523672 +) +(1,4173:15725736,28407859:3523672,459977,115847 +k1,4173:15725736,28407859:3277 +h1,4173:19246131,28407859:0,411205,112570 +) +k1,4173:19447525,28407859:198117 +k1,4173:20177138,28407859:198116 +k1,4173:22758144,28407859:198117 +k1,4173:24523882,28407859:198117 +k1,4173:26277167,28407859:198116 +(1,4173:26277167,28407859:0,452978,115847 +r1,4173:27690568,28407859:1413401,568825,115847 +k1,4173:26277167,28407859:-1413401 +) +(1,4173:26277167,28407859:1413401,452978,115847 +k1,4173:26277167,28407859:3277 +h1,4173:27687291,28407859:0,411205,112570 +) +k1,4173:28062355,28407859:198117 +k1,4173:32583029,28407859:0 +) +(1,4174:6630773,29249347:25952256,513147,134348 +k1,4173:8238220,29249347:218084 +k1,4173:10662900,29249347:218083 +k1,4173:13005661,29249347:218084 +k1,4173:14242829,29249347:218083 +k1,4173:17245538,29249347:218084 +k1,4173:18655066,29249347:218083 +k1,4173:23501303,29249347:218084 +k1,4173:24378678,29249347:218083 +k1,4173:26094260,29249347:218084 +k1,4173:26998505,29249347:218083 +k1,4173:28605297,29249347:218084 +k1,4173:29509542,29249347:218083 +k1,4173:31107814,29249347:218084 +k1,4173:32583029,29249347:0 +) +(1,4174:6630773,30090835:25952256,513147,126483 +g1,4173:7896273,30090835 +g1,4173:9605452,30090835 +g1,4173:12024385,30090835 +g1,4173:12985142,30090835 +g1,4173:14467566,30090835 +g1,4173:16153807,30090835 +g1,4173:18734614,30090835 +g1,4173:19881494,30090835 +g1,4173:21470086,30090835 +k1,4174:32583029,30090835:8732675 +g1,4174:32583029,30090835 +) +(1,4176:6630773,30932323:25952256,513147,126483 +h1,4175:6630773,30932323:983040,0,0 +k1,4175:8428906,30932323:187258 +k1,4175:9635249,30932323:187258 +k1,4175:11475980,30932323:187258 +k1,4175:12901213,30932323:187258 +k1,4175:13774633,30932323:187258 +k1,4175:15355842,30932323:187258 +k1,4175:18024948,30932323:187258 +k1,4175:19080559,30932323:187259 +k1,4175:20372099,30932323:187258 +k1,4175:21756700,30932323:187258 +k1,4175:24897666,30932323:187258 +k1,4175:25736352,30932323:187258 +k1,4175:27247437,30932323:187258 +k1,4175:28626140,30932323:187258 +k1,4175:30202761,30932323:187258 +k1,4176:32583029,30932323:0 +k1,4176:32583029,30932323:0 +) +v1,4178:6630773,32122789:0,393216,0 +(1,4192:6630773,37763115:25952256,6033542,196608 +g1,4192:6630773,37763115 +g1,4192:6630773,37763115 +g1,4192:6434165,37763115 +(1,4192:6434165,37763115:0,6033542,196608 +r1,4192:32779637,37763115:26345472,6230150,196608 +k1,4192:6434165,37763115:-26345472 +) +(1,4192:6434165,37763115:26345472,6033542,196608 +[1,4192:6630773,37763115:25952256,5836934,0 +(1,4180:6630773,32336699:25952256,410518,31456 +(1,4179:6630773,32336699:0,0,0 +g1,4179:6630773,32336699 +g1,4179:6630773,32336699 +g1,4179:6303093,32336699 +(1,4179:6303093,32336699:0,0,0 +) +g1,4179:6630773,32336699 +) +g1,4180:9159939,32336699 +g1,4180:10108377,32336699 +h1,4180:11056815,32336699:0,0,0 +k1,4180:32583029,32336699:21526214 +g1,4180:32583029,32336699 +) +(1,4181:6630773,33002877:25952256,410518,31456 +h1,4181:6630773,33002877:0,0,0 +g1,4181:9159939,33002877 +g1,4181:10108377,33002877 +h1,4181:11056814,33002877:0,0,0 +k1,4181:32583030,33002877:21526216 +g1,4181:32583030,33002877 +) +(1,4182:6630773,33669055:25952256,410518,76021 +h1,4182:6630773,33669055:0,0,0 +k1,4182:6630773,33669055:0 +h1,4182:9476084,33669055:0,0,0 +k1,4182:32583028,33669055:23106944 +g1,4182:32583028,33669055 +) +(1,4191:6630773,34400769:25952256,410518,9436 +(1,4184:6630773,34400769:0,0,0 +g1,4184:6630773,34400769 +g1,4184:6630773,34400769 +g1,4184:6303093,34400769 +(1,4184:6303093,34400769:0,0,0 +) +g1,4184:6630773,34400769 +) +g1,4191:7579210,34400769 +g1,4191:12005251,34400769 +g1,4191:12637543,34400769 +g1,4191:14218272,34400769 +g1,4191:15166709,34400769 +g1,4191:15482855,34400769 +g1,4191:16115147,34400769 +h1,4191:19276604,34400769:0,0,0 +k1,4191:32583029,34400769:13306425 +g1,4191:32583029,34400769 +) +(1,4191:6630773,35066947:25952256,410518,31456 +h1,4191:6630773,35066947:0,0,0 +g1,4191:7579210,35066947 +g1,4191:7895356,35066947 +g1,4191:8527648,35066947 +g1,4191:9159940,35066947 +g1,4191:9792232,35066947 +g1,4191:11056815,35066947 +g1,4191:11372961,35066947 +g1,4191:12005253,35066947 +g1,4191:12637545,35066947 +g1,4191:13269837,35066947 +g1,4191:13902129,35066947 +g1,4191:14534421,35066947 +h1,4191:14850567,35066947:0,0,0 +k1,4191:32583029,35066947:17732462 +g1,4191:32583029,35066947 +) +(1,4191:6630773,35733125:25952256,410518,101187 +h1,4191:6630773,35733125:0,0,0 +g1,4191:7579210,35733125 +g1,4191:7895356,35733125 +g1,4191:8527648,35733125 +g1,4191:9159940,35733125 +g1,4191:9792232,35733125 +g1,4191:12005252,35733125 +g1,4191:12953689,35733125 +g1,4191:13585981,35733125 +g1,4191:15482855,35733125 +g1,4191:17063584,35733125 +g1,4191:17695876,35733125 +g1,4191:18328168,35733125 +g1,4191:18960460,35733125 +g1,4191:19592752,35733125 +g1,4191:20225044,35733125 +h1,4191:20541190,35733125:0,0,0 +k1,4191:32583029,35733125:12041839 +g1,4191:32583029,35733125 +) +(1,4191:6630773,36399303:25952256,410518,107478 +h1,4191:6630773,36399303:0,0,0 +g1,4191:7579210,36399303 +g1,4191:7895356,36399303 +g1,4191:8527648,36399303 +g1,4191:9159940,36399303 +g1,4191:9792232,36399303 +g1,4191:11372961,36399303 +g1,4191:11689107,36399303 +g1,4191:13269836,36399303 +g1,4191:15166710,36399303 +g1,4191:16747439,36399303 +g1,4191:18644313,36399303 +g1,4191:20225042,36399303 +h1,4191:21805770,36399303:0,0,0 +k1,4191:32583029,36399303:10777259 +g1,4191:32583029,36399303 +) +(1,4191:6630773,37065481:25952256,410518,31456 +h1,4191:6630773,37065481:0,0,0 +g1,4191:7579210,37065481 +g1,4191:7895356,37065481 +g1,4191:8527648,37065481 +g1,4191:9792231,37065481 +g1,4191:11056814,37065481 +g1,4191:11372960,37065481 +g1,4191:12005252,37065481 +g1,4191:12637544,37065481 +g1,4191:13269836,37065481 +g1,4191:13902128,37065481 +g1,4191:14534420,37065481 +h1,4191:14850566,37065481:0,0,0 +k1,4191:32583030,37065481:17732464 +g1,4191:32583030,37065481 +) +(1,4191:6630773,37731659:25952256,410518,31456 +h1,4191:6630773,37731659:0,0,0 +g1,4191:7579210,37731659 +g1,4191:7895356,37731659 +g1,4191:8527648,37731659 +g1,4191:9792231,37731659 +g1,4191:11056814,37731659 +g1,4191:11372960,37731659 +g1,4191:12637543,37731659 +g1,4191:13902126,37731659 +g1,4191:15166709,37731659 +g1,4191:16431292,37731659 +h1,4191:17379729,37731659:0,0,0 +k1,4191:32583029,37731659:15203300 +g1,4191:32583029,37731659 +) +] +) +g1,4192:32583029,37763115 +g1,4192:6630773,37763115 +g1,4192:6630773,37763115 +g1,4192:32583029,37763115 +g1,4192:32583029,37763115 +) +h1,4192:6630773,37959723:0,0,0 +(1,4196:6630773,39325499:25952256,513147,115847 +h1,4195:6630773,39325499:983040,0,0 +k1,4195:8809612,39325499:242250 +k1,4195:10527077,39325499:242250 +k1,4195:12734751,39325499:242249 +k1,4195:14149440,39325499:242250 +k1,4195:17104881,39325499:242250 +k1,4195:17998559,39325499:242250 +k1,4195:19259894,39325499:242250 +k1,4195:20891506,39325499:242249 +k1,4195:23183722,39325499:242250 +k1,4195:24617417,39325499:242250 +k1,4195:25475705,39325499:242250 +k1,4195:26737040,39325499:242250 +k1,4195:28346370,39325499:242249 +k1,4195:29247912,39325499:242250 +k1,4195:31873051,39325499:242250 +(1,4195:31873051,39325499:0,435480,115847 +r1,4195:32583029,39325499:709978,551327,115847 +k1,4195:31873051,39325499:-709978 +) +(1,4195:31873051,39325499:709978,435480,115847 +k1,4195:31873051,39325499:3277 +h1,4195:32579752,39325499:0,411205,112570 +) +k1,4195:32583029,39325499:0 +) +(1,4196:6630773,40166987:25952256,513147,134348 +k1,4195:9637716,40166987:147607 +k1,4195:11223838,40166987:147607 +k1,4195:13207764,40166987:147607 +k1,4195:14736216,40166987:147608 +k1,4195:15415320,40166987:147607 +k1,4195:17481821,40166987:147607 +k1,4195:18953255,40166987:147607 +k1,4195:20292307,40166987:147607 +k1,4195:21829277,40166987:147607 +k1,4195:24183482,40166987:147608 +k1,4195:26074347,40166987:147607 +k1,4195:30310745,40166987:147607 +k1,4195:31074390,40166987:147607 +k1,4195:32583029,40166987:0 +) +(1,4196:6630773,41008475:25952256,513147,134348 +k1,4195:9788095,41008475:223931 +k1,4195:10639862,41008475:223932 +k1,4195:11219653,41008475:223931 +k1,4195:12832948,41008475:223932 +k1,4195:15106845,41008475:223931 +k1,4195:18161931,41008475:223931 +k1,4195:19941032,41008475:223932 +k1,4195:21356408,41008475:223931 +k1,4195:23362918,41008475:223931 +k1,4195:24691132,41008475:223932 +k1,4195:25662829,41008475:223931 +k1,4195:28649104,41008475:223932 +k1,4195:29820686,41008475:223931 +k1,4195:32583029,41008475:0 +) +(1,4196:6630773,41849963:25952256,513147,134348 +k1,4195:9671795,41849963:199381 +k1,4195:13172223,41849963:199380 +k1,4195:14751792,41849963:199381 +k1,4195:15942733,41849963:199381 +k1,4195:18854648,41849963:199380 +k1,4195:19705457,41849963:199381 +k1,4195:20652604,41849963:199381 +k1,4195:23160163,41849963:199381 +k1,4195:24042428,41849963:199380 +k1,4195:26466101,41849963:199381 +k1,4195:27324774,41849963:199381 +k1,4195:28543239,41849963:199380 +k1,4195:30396093,41849963:199381 +k1,4195:32583029,41849963:0 +) +(1,4196:6630773,42691451:25952256,513147,134348 +k1,4195:7475485,42691451:216877 +k1,4195:8711447,42691451:216877 +k1,4195:10295405,42691451:216877 +k1,4195:11171575,42691451:216878 +k1,4195:12885950,42691451:216877 +k1,4195:14757611,42691451:216877 +k1,4195:15505985,42691451:216877 +k1,4195:16532232,42691451:216877 +k1,4195:18242675,42691451:216877 +k1,4195:22564072,42691451:216877 +k1,4195:23972395,42691451:216878 +k1,4195:27048608,42691451:216877 +k1,4195:29020539,42691451:216877 +k1,4195:30920381,42691451:216877 +k1,4195:32583029,42691451:0 +) +(1,4196:6630773,43532939:25952256,513147,134348 +k1,4195:8531332,43532939:202521 +k1,4195:10921445,43532939:202521 +k1,4195:11479827,43532939:202522 +k1,4195:13433470,43532939:202521 +k1,4195:16518264,43532939:202521 +k1,4195:17739870,43532939:202521 +k1,4195:19953037,43532939:202522 +k1,4195:22934285,43532939:202521 +k1,4195:25005237,43532939:202521 +k1,4195:26155409,43532939:202521 +(1,4195:26155409,43532939:0,452978,115847 +r1,4195:27568810,43532939:1413401,568825,115847 +k1,4195:26155409,43532939:-1413401 +) +(1,4195:26155409,43532939:1413401,452978,115847 +k1,4195:26155409,43532939:3277 +h1,4195:27565533,43532939:0,411205,112570 +) +k1,4195:27945001,43532939:202521 +k1,4195:28798951,43532939:202522 +k1,4195:30745385,43532939:202521 +k1,4195:31563944,43532939:202521 +k1,4195:32583029,43532939:0 +) +(1,4196:6630773,44374427:25952256,513147,126483 +g1,4195:9491419,44374427 +g1,4195:11545972,44374427 +g1,4195:12692852,44374427 +(1,4195:12692852,44374427:0,459977,115847 +r1,4195:14106253,44374427:1413401,575824,115847 +k1,4195:12692852,44374427:-1413401 +) +(1,4195:12692852,44374427:1413401,459977,115847 +k1,4195:12692852,44374427:3277 +h1,4195:14102976,44374427:0,411205,112570 +) +k1,4196:32583029,44374427:18303106 +g1,4196:32583029,44374427 +) +v1,4198:6630773,45564893:0,393216,0 +] +(1,4222:32583029,45706769:0,0,0 +g1,4222:32583029,45706769 +) +) +] +(1,4222:6630773,47279633:25952256,0,0 +h1,4222:6630773,47279633:25952256,0,0 +) +] +h1,4222:4262630,4025873:0,0,0 ] !24831 }78 -Input:511:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:512:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!181 +Input:507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!193 {79 -[1,4277:4262630,47279633:28320399,43253760,0 -(1,4277:4262630,4025873:0,0,0 -[1,4277:-473657,4025873:25952256,0,0 -(1,4277:-473657,-710414:25952256,0,0 -h1,4277:-473657,-710414:0,0,0 -(1,4277:-473657,-710414:0,0,0 -(1,4277:-473657,-710414:0,0,0 -g1,4277:-473657,-710414 -(1,4277:-473657,-710414:65781,0,65781 -g1,4277:-407876,-710414 -[1,4277:-407876,-644633:0,0,0 +[1,4283:4262630,47279633:28320399,43253760,0 +(1,4283:4262630,4025873:0,0,0 +[1,4283:-473657,4025873:25952256,0,0 +(1,4283:-473657,-710414:25952256,0,0 +h1,4283:-473657,-710414:0,0,0 +(1,4283:-473657,-710414:0,0,0 +(1,4283:-473657,-710414:0,0,0 +g1,4283:-473657,-710414 +(1,4283:-473657,-710414:65781,0,65781 +g1,4283:-407876,-710414 +[1,4283:-407876,-644633:0,0,0 ] ) -k1,4277:-473657,-710414:-65781 +k1,4283:-473657,-710414:-65781 ) ) -k1,4277:25478599,-710414:25952256 -g1,4277:25478599,-710414 +k1,4283:25478599,-710414:25952256 +g1,4283:25478599,-710414 ) ] ) -[1,4277:6630773,47279633:25952256,43253760,0 -[1,4277:6630773,4812305:25952256,786432,0 -(1,4277:6630773,4812305:25952256,505283,134348 -(1,4277:6630773,4812305:25952256,505283,134348 -g1,4277:3078558,4812305 -[1,4277:3078558,4812305:0,0,0 -(1,4277:3078558,2439708:0,1703936,0 -k1,4277:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4277:2537886,2439708:1179648,16384,0 +[1,4283:6630773,47279633:25952256,43253760,0 +[1,4283:6630773,4812305:25952256,786432,0 +(1,4283:6630773,4812305:25952256,505283,134348 +(1,4283:6630773,4812305:25952256,505283,134348 +g1,4283:3078558,4812305 +[1,4283:3078558,4812305:0,0,0 +(1,4283:3078558,2439708:0,1703936,0 +k1,4283:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4283:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4277:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4283:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4277:3078558,4812305:0,0,0 -(1,4277:3078558,2439708:0,1703936,0 -g1,4277:29030814,2439708 -g1,4277:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4277:36151628,1915420:16384,1179648,0 +[1,4283:3078558,4812305:0,0,0 +(1,4283:3078558,2439708:0,1703936,0 +g1,4283:29030814,2439708 +g1,4283:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4283:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4277:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4283:37855564,2439708:1179648,16384,0 ) ) -k1,4277:3078556,2439708:-34777008 +k1,4283:3078556,2439708:-34777008 ) ] -[1,4277:3078558,4812305:0,0,0 -(1,4277:3078558,49800853:0,16384,2228224 -k1,4277:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4277:2537886,49800853:1179648,16384,0 +[1,4283:3078558,4812305:0,0,0 +(1,4283:3078558,49800853:0,16384,2228224 +k1,4283:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4283:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4277:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4283:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4277:3078558,4812305:0,0,0 -(1,4277:3078558,49800853:0,16384,2228224 -g1,4277:29030814,49800853 -g1,4277:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4277:36151628,51504789:16384,1179648,0 +[1,4283:3078558,4812305:0,0,0 +(1,4283:3078558,49800853:0,16384,2228224 +g1,4283:29030814,49800853 +g1,4283:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4283:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4277:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4283:37855564,49800853:1179648,16384,0 ) ) -k1,4277:3078556,49800853:-34777008 -) -] -g1,4277:6630773,4812305 -k1,4277:19562994,4812305:12135303 -g1,4277:20949735,4812305 -g1,4277:21598541,4812305 -g1,4277:24912696,4812305 -g1,4277:27600327,4812305 -g1,4277:29010006,4812305 -) -) -] -[1,4277:6630773,45706769:25952256,40108032,0 -(1,4277:6630773,45706769:25952256,40108032,0 -(1,4277:6630773,45706769:0,0,0 -g1,4277:6630773,45706769 -) -[1,4277:6630773,45706769:25952256,40108032,0 -v1,4216:6630773,6254097:0,393216,0 -(1,4216:6630773,16606095:25952256,10745214,196608 -g1,4216:6630773,16606095 -g1,4216:6630773,16606095 -g1,4216:6434165,16606095 -(1,4216:6434165,16606095:0,10745214,196608 -r1,4216:32779637,16606095:26345472,10941822,196608 -k1,4216:6434165,16606095:-26345472 -) -(1,4216:6434165,16606095:26345472,10745214,196608 -[1,4216:6630773,16606095:25952256,10548606,0 -(1,4194:6630773,6461715:25952256,404226,101187 -(1,4193:6630773,6461715:0,0,0 -g1,4193:6630773,6461715 -g1,4193:6630773,6461715 -g1,4193:6303093,6461715 -(1,4193:6303093,6461715:0,0,0 -) -g1,4193:6630773,6461715 -) -g1,4194:8211502,6461715 -g1,4194:9159940,6461715 -g1,4194:11372961,6461715 -g1,4194:12005253,6461715 -g1,4194:13585983,6461715 -g1,4194:14218275,6461715 -g1,4194:14850567,6461715 -g1,4194:16431296,6461715 -g1,4194:17063588,6461715 -g1,4194:17695880,6461715 -g1,4194:20225047,6461715 -h1,4194:22438066,6461715:0,0,0 -k1,4194:32583029,6461715:10144963 -g1,4194:32583029,6461715 -) -(1,4195:6630773,7127893:25952256,404226,76021 -h1,4195:6630773,7127893:0,0,0 -k1,4195:6630773,7127893:0 -h1,4195:9476084,7127893:0,0,0 -k1,4195:32583028,7127893:23106944 -g1,4195:32583028,7127893 -) -(1,4202:6630773,7859607:25952256,410518,9436 -(1,4197:6630773,7859607:0,0,0 -g1,4197:6630773,7859607 -g1,4197:6630773,7859607 -g1,4197:6303093,7859607 -(1,4197:6303093,7859607:0,0,0 -) -g1,4197:6630773,7859607 -) -g1,4202:7579210,7859607 -g1,4202:9159939,7859607 -g1,4202:10108376,7859607 -h1,4202:10424522,7859607:0,0,0 -k1,4202:32583030,7859607:22158508 -g1,4202:32583030,7859607 -) -(1,4202:6630773,8525785:25952256,410518,76021 -h1,4202:6630773,8525785:0,0,0 -g1,4202:7579210,8525785 -g1,4202:7895356,8525785 -g1,4202:8527648,8525785 -g1,4202:9476085,8525785 -g1,4202:10740668,8525785 -g1,4202:12637542,8525785 -g1,4202:13269834,8525785 -g1,4202:13902126,8525785 -g1,4202:14534418,8525785 -g1,4202:15166710,8525785 -g1,4202:15799002,8525785 -h1,4202:16115148,8525785:0,0,0 -k1,4202:32583029,8525785:16467881 -g1,4202:32583029,8525785 -) -(1,4202:6630773,9191963:25952256,410518,101187 -h1,4202:6630773,9191963:0,0,0 -g1,4202:7579210,9191963 -g1,4202:7895356,9191963 -g1,4202:8527648,9191963 -g1,4202:9476085,9191963 -g1,4202:10740668,9191963 -h1,4202:11689105,9191963:0,0,0 -k1,4202:32583029,9191963:20893924 -g1,4202:32583029,9191963 -) -(1,4202:6630773,9858141:25952256,410518,107478 -h1,4202:6630773,9858141:0,0,0 -g1,4202:7579210,9858141 -g1,4202:7895356,9858141 -g1,4202:8527648,9858141 -g1,4202:9476085,9858141 -g1,4202:11056814,9858141 -g1,4202:12953688,9858141 -g1,4202:14534417,9858141 -h1,4202:16115145,9858141:0,0,0 -k1,4202:32583029,9858141:16467884 -g1,4202:32583029,9858141 -) -(1,4204:6630773,11179679:25952256,410518,31456 -(1,4203:6630773,11179679:0,0,0 -g1,4203:6630773,11179679 -g1,4203:6630773,11179679 -g1,4203:6303093,11179679 -(1,4203:6303093,11179679:0,0,0 -) -g1,4203:6630773,11179679 -) -g1,4204:9159939,11179679 -g1,4204:10108377,11179679 -h1,4204:11056815,11179679:0,0,0 -k1,4204:32583029,11179679:21526214 -g1,4204:32583029,11179679 -) -(1,4205:6630773,11845857:25952256,410518,31456 -h1,4205:6630773,11845857:0,0,0 -g1,4205:9159939,11845857 -g1,4205:10108377,11845857 -h1,4205:11056814,11845857:0,0,0 -k1,4205:32583030,11845857:21526216 -g1,4205:32583030,11845857 -) -(1,4206:6630773,12512035:25952256,404226,76021 -h1,4206:6630773,12512035:0,0,0 -k1,4206:6630773,12512035:0 -h1,4206:9476084,12512035:0,0,0 -k1,4206:32583028,12512035:23106944 -g1,4206:32583028,12512035 -) -(1,4215:6630773,13243749:25952256,410518,9436 -(1,4208:6630773,13243749:0,0,0 -g1,4208:6630773,13243749 -g1,4208:6630773,13243749 -g1,4208:6303093,13243749 -(1,4208:6303093,13243749:0,0,0 -) -g1,4208:6630773,13243749 -) -g1,4215:7579210,13243749 -g1,4215:9159939,13243749 -g1,4215:10108376,13243749 -h1,4215:10424522,13243749:0,0,0 -k1,4215:32583030,13243749:22158508 -g1,4215:32583030,13243749 -) -(1,4215:6630773,13909927:25952256,410518,76021 -h1,4215:6630773,13909927:0,0,0 -g1,4215:7579210,13909927 -g1,4215:7895356,13909927 -g1,4215:8527648,13909927 -g1,4215:9159940,13909927 -g1,4215:9792232,13909927 -g1,4215:11056815,13909927 -g1,4215:12953689,13909927 -g1,4215:13585981,13909927 -g1,4215:14218273,13909927 -g1,4215:14850565,13909927 -g1,4215:15482857,13909927 -g1,4215:16115149,13909927 -h1,4215:16431295,13909927:0,0,0 -k1,4215:32583029,13909927:16151734 -g1,4215:32583029,13909927 -) -(1,4215:6630773,14576105:25952256,410518,101187 -h1,4215:6630773,14576105:0,0,0 -g1,4215:7579210,14576105 -g1,4215:7895356,14576105 -g1,4215:8527648,14576105 -g1,4215:9159940,14576105 -g1,4215:9792232,14576105 -g1,4215:11056815,14576105 -h1,4215:12005252,14576105:0,0,0 -k1,4215:32583028,14576105:20577776 -g1,4215:32583028,14576105 -) -(1,4215:6630773,15242283:25952256,410518,107478 -h1,4215:6630773,15242283:0,0,0 -g1,4215:7579210,15242283 -g1,4215:7895356,15242283 -g1,4215:8527648,15242283 -g1,4215:9159940,15242283 -g1,4215:9792232,15242283 -g1,4215:11372961,15242283 -g1,4215:13269835,15242283 -g1,4215:14850564,15242283 -h1,4215:16431292,15242283:0,0,0 -k1,4215:32583029,15242283:16151737 -g1,4215:32583029,15242283 -) -(1,4215:6630773,15908461:25952256,410518,76021 -h1,4215:6630773,15908461:0,0,0 -g1,4215:7579210,15908461 -g1,4215:7895356,15908461 -g1,4215:8527648,15908461 -g1,4215:9792231,15908461 -g1,4215:11056814,15908461 -g1,4215:12953688,15908461 -g1,4215:13585980,15908461 -g1,4215:14218272,15908461 -g1,4215:14850564,15908461 -g1,4215:15482856,15908461 -g1,4215:16115148,15908461 -h1,4215:16431294,15908461:0,0,0 -k1,4215:32583029,15908461:16151735 -g1,4215:32583029,15908461 -) -(1,4215:6630773,16574639:25952256,410518,31456 -h1,4215:6630773,16574639:0,0,0 -g1,4215:7579210,16574639 -g1,4215:7895356,16574639 -g1,4215:8527648,16574639 -g1,4215:9792231,16574639 -g1,4215:11056814,16574639 -h1,4215:12005251,16574639:0,0,0 -k1,4215:32583029,16574639:20577778 -g1,4215:32583029,16574639 -) -] -) -g1,4216:32583029,16606095 -g1,4216:6630773,16606095 -g1,4216:6630773,16606095 -g1,4216:32583029,16606095 -g1,4216:32583029,16606095 -) -h1,4216:6630773,16802703:0,0,0 -(1,4220:6630773,18074164:25952256,513147,134348 -h1,4219:6630773,18074164:983040,0,0 -k1,4219:9231778,18074164:146026 -k1,4219:11584401,18074164:146026 -k1,4219:12721987,18074164:146026 -k1,4219:16006532,18074164:146026 -k1,4219:19361856,18074164:146026 -k1,4219:20159311,18074164:146027 -k1,4219:22593854,18074164:146026 -k1,4219:25812863,18074164:146026 -k1,4219:26641774,18074164:146026 -k1,4219:29312247,18074164:146026 -k1,4219:30847636,18074164:146026 -k1,4220:32583029,18074164:0 -) -(1,4220:6630773,18915652:25952256,513147,134348 -k1,4219:7451377,18915652:232091 -k1,4219:8954866,18915652:232091 -k1,4219:10291239,18915652:232091 -k1,4219:12203673,18915652:232091 -k1,4219:13095056,18915652:232091 -k1,4219:14716510,18915652:232091 -k1,4219:17155199,18915652:232092 -k1,4219:18073452,18915652:232091 -k1,4219:20375825,18915652:232091 -k1,4219:23960083,18915652:232091 -k1,4219:28202322,18915652:232091 -k1,4219:29117298,18915652:232091 -k1,4219:30035551,18915652:232091 -k1,4219:31765140,18915652:232091 -k1,4219:32583029,18915652:0 -) -(1,4220:6630773,19757140:25952256,513147,134348 -k1,4219:8004559,19757140:203313 -k1,4219:9544806,19757140:203313 -k1,4219:11223334,19757140:203313 -k1,4219:13991725,19757140:203312 -k1,4219:15762659,19757140:203313 -k1,4219:16985057,19757140:203313 -k1,4219:20180089,19757140:203313 -k1,4219:22416984,19757140:203313 -k1,4219:23236335,19757140:203313 -k1,4219:24642888,19757140:203312 -k1,4219:27298558,19757140:203313 -k1,4219:29156655,19757140:203313 -k1,4219:30351528,19757140:203313 -k1,4219:32583029,19757140:0 -) -(1,4220:6630773,20598628:25952256,513147,134348 -k1,4219:9564046,20598628:170930 -k1,4219:11303252,20598628:170929 -k1,4219:12133474,20598628:170930 -k1,4219:15325614,20598628:170930 -k1,4219:18383404,20598628:170929 -k1,4219:20262202,20598628:170930 -k1,4219:21624576,20598628:170929 -k1,4219:24988420,20598628:170930 -k1,4219:29231102,20598628:170930 -k1,4219:31440201,20598628:170929 -k1,4219:32227169,20598628:170930 -k1,4219:32583029,20598628:0 -) -(1,4220:6630773,21440116:25952256,513147,102891 -k1,4219:8210540,21440116:190404 -k1,4219:10450910,21440116:190404 -k1,4219:11838000,21440116:190403 -k1,4219:14741595,21440116:190404 -k1,4219:16036281,21440116:190404 -k1,4219:16974451,21440116:190404 -k1,4219:19438299,21440116:190404 -k1,4219:20314864,21440116:190403 -k1,4219:23458976,21440116:190404 -k1,4219:24265418,21440116:190404 -k1,4219:24811682,21440116:190404 -k1,4219:26169282,21440116:190404 -k1,4219:27551130,21440116:190403 -k1,4219:28845816,21440116:190404 -k1,4219:29783986,21440116:190404 -k1,4219:32583029,21440116:0 -) -(1,4220:6630773,22281604:25952256,505283,134348 -k1,4219:8240025,22281604:142556 -k1,4219:9144109,22281604:142556 -k1,4219:11024681,22281604:142557 -k1,4219:11850122,22281604:142556 -k1,4219:13741834,22281604:142556 -k1,4219:17086479,22281604:142556 -k1,4219:19012270,22281604:142556 -k1,4219:21953870,22281604:142557 -k1,4219:22857954,22281604:142556 -k1,4219:24912195,22281604:142556 -k1,4219:26790144,22281604:142556 -(1,4219:26790144,22281604:0,459977,115847 -r1,4219:27148410,22281604:358266,575824,115847 -k1,4219:26790144,22281604:-358266 -) -(1,4219:26790144,22281604:358266,459977,115847 -k1,4219:26790144,22281604:3277 -h1,4219:27145133,22281604:0,411205,112570 -) -k1,4219:27290967,22281604:142557 -k1,4219:28116408,22281604:142556 -k1,4219:30441968,22281604:142556 -k1,4219:32583029,22281604:0 -) -(1,4220:6630773,23123092:25952256,513147,134348 -k1,4219:9793541,23123092:283771 -k1,4219:10433171,23123092:283770 -k1,4219:12589961,23123092:283771 -k1,4219:15256621,23123092:283771 -k1,4219:16071889,23123092:283771 -k1,4219:19134386,23123092:283770 -k1,4219:20104319,23123092:283771 -k1,4219:20743950,23123092:283771 -k1,4219:23005597,23123092:283770 -k1,4219:23972253,23123092:283771 -k1,4219:26323685,23123092:283771 -k1,4219:27235291,23123092:283771 -k1,4219:30150332,23123092:283770 -k1,4219:31085531,23123092:283771 -k1,4219:32583029,23123092:0 -) -(1,4220:6630773,23964580:25952256,513147,134348 -k1,4219:8299647,23964580:279511 -k1,4219:10785755,23964580:279511 -k1,4219:12056825,23964580:279510 -k1,4219:14465601,23964580:279511 -k1,4219:18980704,23964580:279511 -k1,4219:20451660,23964580:279511 -k1,4219:21678821,23964580:279510 -k1,4219:23161573,23964580:279511 -k1,4219:25572315,23964580:279511 -k1,4219:26870911,23964580:279511 -k1,4219:29161066,23964580:279510 -k1,4219:31478747,23964580:279511 -k1,4219:32583029,23964580:0 -) -(1,4220:6630773,24806068:25952256,505283,134348 -k1,4219:8123115,24806068:206526 -k1,4219:9077407,24806068:206526 -k1,4219:12082975,24806068:206525 -k1,4219:12905539,24806068:206526 -k1,4219:13467925,24806068:206526 -k1,4219:14912426,24806068:206526 -k1,4219:17320962,24806068:206526 -k1,4219:18178915,24806068:206525 -k1,4219:19715822,24806068:206526 -k1,4219:22791514,24806068:206526 -k1,4219:23614078,24806068:206526 -k1,4219:24176464,24806068:206526 -k1,4219:26470311,24806068:206525 -k1,4219:27668397,24806068:206526 -k1,4219:30847636,24806068:206526 -k1,4219:32583029,24806068:0 -) -(1,4220:6630773,25647556:25952256,513147,134348 -k1,4219:8008995,25647556:205783 -k1,4219:10815247,25647556:205783 -k1,4219:11838919,25647556:205783 -k1,4219:12913054,25647556:205783 -k1,4219:14326010,25647556:205783 -k1,4219:15479444,25647556:205783 -k1,4219:18167075,25647556:205783 -k1,4219:20799656,25647556:205783 -k1,4219:22109721,25647556:205783 -k1,4219:23063270,25647556:205783 -k1,4219:25577231,25647556:205783 -k1,4219:26442306,25647556:205783 -k1,4219:28878279,25647556:205783 -k1,4219:31900144,25647556:205783 -k1,4219:32583029,25647556:0 -) -(1,4220:6630773,26489044:25952256,513147,134348 -k1,4219:9106017,26489044:167066 -k1,4219:9932376,26489044:167067 -k1,4219:12169069,26489044:167066 -k1,4219:14520451,26489044:167067 -k1,4219:15729539,26489044:167066 -k1,4219:18609796,26489044:167066 -k1,4219:20157051,26489044:167067 -k1,4219:21602069,26489044:167066 -k1,4219:22385173,26489044:167066 -k1,4219:25391915,26489044:167067 -k1,4219:26306747,26489044:167066 -k1,4219:28781992,26489044:167067 -k1,4219:29608350,26489044:167066 -k1,4219:32583029,26489044:0 -) -(1,4220:6630773,27330532:25952256,513147,134348 -k1,4219:9081764,27330532:254880 -k1,4219:12308047,27330532:254881 -k1,4219:13582012,27330532:254880 -k1,4219:15905209,27330532:254881 -k1,4219:16819381,27330532:254880 -k1,4219:18093347,27330532:254881 -k1,4219:21235088,27330532:254880 -k1,4219:23273203,27330532:254880 -k1,4219:25263477,27330532:254881 -k1,4219:27945155,27330532:254880 -k1,4219:28658133,27330532:254881 -k1,4219:29444510,27330532:254880 -k1,4219:32583029,27330532:0 -) -(1,4220:6630773,28172020:25952256,513147,134348 -g1,4219:10039300,28172020 -g1,4219:10889957,28172020 -g1,4219:14348291,28172020 -g1,4219:15832026,28172020 -g1,4219:17050340,28172020 -g1,4219:19676367,28172020 -g1,4219:20867156,28172020 -g1,4219:23195650,28172020 -g1,4219:25089640,28172020 -g1,4219:26577962,28172020 -k1,4220:32583029,28172020:4489875 -g1,4220:32583029,28172020 -) -v1,4222:6630773,29443481:0,393216,0 -(1,4277:6630773,45116945:25952256,16066680,589824 -g1,4277:6630773,45116945 -(1,4277:6630773,45116945:25952256,16066680,589824 -(1,4277:6630773,45706769:25952256,16656504,0 -[1,4277:6630773,45706769:25952256,16656504,0 -(1,4277:6630773,45706769:25952256,16630290,0 -r1,4277:6656987,45706769:26214,16630290,0 -[1,4277:6656987,45706769:25899828,16630290,0 -(1,4277:6656987,45116945:25899828,15450642,0 -[1,4277:7246811,45116945:24720180,15450642,0 -(1,4223:7246811,30828188:24720180,1161885,196608 -(1,4222:7246811,30828188:0,1161885,196608 -r1,4277:8794447,30828188:1547636,1358493,196608 -k1,4222:7246811,30828188:-1547636 -) -(1,4222:7246811,30828188:1547636,1161885,196608 -) -k1,4222:8934305,30828188:139858 -k1,4222:11825363,30828188:139857 -k1,4222:12624513,30828188:139858 -k1,4222:14153734,30828188:139858 -k1,4222:16500189,30828188:139858 -k1,4222:17744328,30828188:139857 -k1,4222:18500224,30828188:139858 -k1,4222:19406198,30828188:139858 -k1,4222:21243438,30828188:139858 -k1,4222:22131061,30828188:139857 -k1,4222:23848371,30828188:139858 -k1,4222:24674391,30828188:139858 -k1,4222:25280210,30828188:139858 -k1,4222:26800255,30828188:139857 -k1,4222:28444164,30828188:139858 -k1,4222:30081520,30828188:139858 -k1,4222:31966991,30828188:0 -) -(1,4223:7246811,31669676:24720180,513147,134348 -k1,4222:8029315,31669676:251007 -k1,4222:11719651,31669676:251007 -k1,4222:12656821,31669676:251008 -k1,4222:13365925,31669676:251007 -k1,4222:16090261,31669676:251007 -k1,4222:20549990,31669676:251007 -k1,4222:22194948,31669676:251007 -k1,4222:24720054,31669676:251007 -k1,4222:25385853,31669676:250956 -k1,4222:26960687,31669676:251007 -k1,4222:28403139,31669676:251007 -k1,4222:30048097,31669676:251007 -k1,4222:31966991,31669676:0 -) -(1,4223:7246811,32511164:24720180,513147,134348 -k1,4222:12897161,32511164:263291 -k1,4222:13819744,32511164:263291 -k1,4222:18920903,32511164:263291 -k1,4222:22445921,32511164:263291 -k1,4222:23855437,32511164:263291 -k1,4222:25862641,32511164:263291 -k1,4222:28507510,32511164:263291 -k1,4222:29386839,32511164:263291 -k1,4222:31966991,32511164:0 -) -(1,4223:7246811,33352652:24720180,513147,134348 -k1,4222:9787283,33352652:204770 -k1,4222:11783808,33352652:204771 -k1,4222:13191819,33352652:204770 -k1,4222:16554769,33352652:204770 -k1,4222:19953764,33352652:204770 -k1,4222:21330974,33352652:204771 -k1,4222:23546389,33352652:204770 -k1,4222:25318780,33352652:204770 -k1,4222:26542635,33352652:204770 -k1,4222:28988737,33352652:204771 -k1,4222:30384952,33352652:204770 -k1,4222:31966991,33352652:0 -) -(1,4223:7246811,34194140:24720180,513147,134348 -k1,4222:10448362,34194140:257018 -k1,4222:11321418,34194140:257018 -k1,4222:12597521,34194140:257018 -k1,4222:14160673,34194140:257019 -k1,4222:16800580,34194140:257018 -k1,4222:17724754,34194140:257018 -(1,4222:17724754,34194140:0,459977,115847 -r1,4277:19138155,34194140:1413401,575824,115847 -k1,4222:17724754,34194140:-1413401 -) -(1,4222:17724754,34194140:1413401,459977,115847 -k1,4222:17724754,34194140:3277 -h1,4222:19134878,34194140:0,411205,112570 -) -k1,4222:19395173,34194140:257018 -k1,4222:20183688,34194140:257018 -k1,4222:22018158,34194140:257018 -k1,4222:22961339,34194140:257019 -k1,4222:25707414,34194140:257018 -k1,4222:27699825,34194140:257018 -k1,4222:31137961,34194140:257018 -k1,4223:31966991,34194140:0 -) -(1,4223:7246811,35035628:24720180,505283,7863 -k1,4223:31966991,35035628:22735750 -g1,4223:31966991,35035628 -) -v1,4225:7246811,36226094:0,393216,0 -(1,4232:7246811,37247739:24720180,1414861,196608 -g1,4232:7246811,37247739 -g1,4232:7246811,37247739 -g1,4232:7050203,37247739 -(1,4232:7050203,37247739:0,1414861,196608 -r1,4277:32163599,37247739:25113396,1611469,196608 -k1,4232:7050203,37247739:-25113396 -) -(1,4232:7050203,37247739:25113396,1414861,196608 -[1,4232:7246811,37247739:24720180,1218253,0 -(1,4227:7246811,36440004:24720180,410518,76021 -(1,4226:7246811,36440004:0,0,0 -g1,4226:7246811,36440004 -g1,4226:7246811,36440004 -g1,4226:6919131,36440004 -(1,4226:6919131,36440004:0,0,0 -) -g1,4226:7246811,36440004 -) -h1,4227:11672852,36440004:0,0,0 -k1,4227:31966992,36440004:20294140 -g1,4227:31966992,36440004 -) -(1,4231:7246811,37171718:24720180,404226,76021 -(1,4229:7246811,37171718:0,0,0 -g1,4229:7246811,37171718 -g1,4229:7246811,37171718 -g1,4229:6919131,37171718 -(1,4229:6919131,37171718:0,0,0 -) -g1,4229:7246811,37171718 -) -g1,4231:8195248,37171718 -g1,4231:9459831,37171718 -g1,4231:10092123,37171718 -h1,4231:10408269,37171718:0,0,0 -k1,4231:31966991,37171718:21558722 -g1,4231:31966991,37171718 -) -] -) -g1,4232:31966991,37247739 -g1,4232:7246811,37247739 -g1,4232:7246811,37247739 -g1,4232:31966991,37247739 -g1,4232:31966991,37247739 -) -h1,4232:7246811,37444347:0,0,0 -(1,4236:7246811,38810123:24720180,505283,134348 -h1,4235:7246811,38810123:983040,0,0 -g1,4235:9226653,38810123 -g1,4235:11161275,38810123 -g1,4235:12379589,38810123 -g1,4235:14961707,38810123 -k1,4236:31966991,38810123:15093599 -g1,4236:31966991,38810123 -) -v1,4238:7246811,40000589:0,393216,0 -(1,4245:7246811,41022234:24720180,1414861,196608 -g1,4245:7246811,41022234 -g1,4245:7246811,41022234 -g1,4245:7050203,41022234 -(1,4245:7050203,41022234:0,1414861,196608 -r1,4277:32163599,41022234:25113396,1611469,196608 -k1,4245:7050203,41022234:-25113396 -) -(1,4245:7050203,41022234:25113396,1414861,196608 -[1,4245:7246811,41022234:24720180,1218253,0 -(1,4240:7246811,40214499:24720180,410518,76021 -(1,4239:7246811,40214499:0,0,0 -g1,4239:7246811,40214499 -g1,4239:7246811,40214499 -g1,4239:6919131,40214499 -(1,4239:6919131,40214499:0,0,0 -) -g1,4239:7246811,40214499 -) -h1,4240:12305143,40214499:0,0,0 -k1,4240:31966991,40214499:19661848 -g1,4240:31966991,40214499 -) -(1,4244:7246811,40946213:24720180,404226,76021 -(1,4242:7246811,40946213:0,0,0 -g1,4242:7246811,40946213 -g1,4242:7246811,40946213 -g1,4242:6919131,40946213 -(1,4242:6919131,40946213:0,0,0 -) -g1,4242:7246811,40946213 -) -g1,4244:8195248,40946213 -g1,4244:9459831,40946213 -g1,4244:10092123,40946213 -h1,4244:10408269,40946213:0,0,0 -k1,4244:31966991,40946213:21558722 -g1,4244:31966991,40946213 -) -] -) -g1,4245:31966991,41022234 -g1,4245:7246811,41022234 -g1,4245:7246811,41022234 -g1,4245:31966991,41022234 -g1,4245:31966991,41022234 -) -h1,4245:7246811,41218842:0,0,0 -(1,4249:7246811,42584618:24720180,513147,134348 -h1,4248:7246811,42584618:983040,0,0 -k1,4248:9632048,42584618:205510 -k1,4248:11050629,42584618:205510 -k1,4248:14099091,42584618:205510 -k1,4248:17751139,42584618:205510 -k1,4248:20696054,42584618:205510 -k1,4248:21433061,42584618:205510 -k1,4248:23216023,42584618:205510 -k1,4248:24107695,42584618:205510 -k1,4248:26802262,42584618:205510 -k1,4248:28401723,42584618:205510 -k1,4248:29626318,42584618:205510 -k1,4248:31137961,42584618:205510 -k1,4249:31966991,42584618:0 -) -(1,4249:7246811,43426106:24720180,505283,134348 -k1,4248:8594827,43426106:214898 -k1,4248:11984290,43426106:214899 -k1,4248:13733386,43426106:214898 -k1,4248:15139729,43426106:214898 -k1,4248:16373713,43426106:214899 -k1,4248:18829942,43426106:214898 -k1,4248:20201551,43426106:214899 -k1,4248:23591013,43426106:214898 -k1,4248:26692772,43426106:214898 -k1,4248:28288515,43426106:214899 -k1,4248:31193011,43426106:214898 -k1,4249:31966991,43426106:0 -) -(1,4249:7246811,44267594:24720180,513147,126483 -k1,4248:8978855,44267594:281077 -k1,4248:13545986,44267594:281076 -k1,4248:17041604,44267594:281077 -k1,4248:18890301,44267594:281076 -k1,4248:21842625,44267594:281077 -k1,4248:25010562,44267594:281076 -k1,4248:27177110,44267594:281077 -k1,4248:27989683,44267594:281076 -k1,4248:29337031,44267594:281077 -k1,4248:31966991,44267594:0 -) -(1,4249:7246811,45109082:24720180,513147,7863 -g1,4248:8839991,45109082 -g1,4248:10536718,45109082 -g1,4248:11932634,45109082 -g1,4248:13812206,45109082 -g1,4248:16790162,45109082 -g1,4248:17520888,45109082 -g1,4248:18075977,45109082 -g1,4248:21227603,45109082 -g1,4248:22816195,45109082 -k1,4249:31966991,45109082:7100830 -g1,4249:31966991,45109082 -) -] -) -] -r1,4277:32583029,45706769:26214,16630290,0 -) -] +k1,4283:3078556,49800853:-34777008 +) +] +g1,4283:6630773,4812305 +k1,4283:19515153,4812305:12087462 +g1,4283:20901894,4812305 +g1,4283:21550700,4812305 +g1,4283:24864855,4812305 +g1,4283:27600327,4812305 +g1,4283:29010006,4812305 +) +) +] +[1,4283:6630773,45706769:25952256,40108032,0 +(1,4283:6630773,45706769:25952256,40108032,0 +(1,4283:6630773,45706769:0,0,0 +g1,4283:6630773,45706769 +) +[1,4283:6630773,45706769:25952256,40108032,0 +v1,4222:6630773,6254097:0,393216,0 +(1,4222:6630773,16606095:25952256,10745214,196608 +g1,4222:6630773,16606095 +g1,4222:6630773,16606095 +g1,4222:6434165,16606095 +(1,4222:6434165,16606095:0,10745214,196608 +r1,4222:32779637,16606095:26345472,10941822,196608 +k1,4222:6434165,16606095:-26345472 +) +(1,4222:6434165,16606095:26345472,10745214,196608 +[1,4222:6630773,16606095:25952256,10548606,0 +(1,4200:6630773,6461715:25952256,404226,101187 +(1,4199:6630773,6461715:0,0,0 +g1,4199:6630773,6461715 +g1,4199:6630773,6461715 +g1,4199:6303093,6461715 +(1,4199:6303093,6461715:0,0,0 +) +g1,4199:6630773,6461715 +) +g1,4200:8211502,6461715 +g1,4200:9159940,6461715 +g1,4200:11372961,6461715 +g1,4200:12005253,6461715 +g1,4200:13585983,6461715 +g1,4200:14218275,6461715 +g1,4200:14850567,6461715 +g1,4200:16431296,6461715 +g1,4200:17063588,6461715 +g1,4200:17695880,6461715 +g1,4200:20225047,6461715 +h1,4200:22438066,6461715:0,0,0 +k1,4200:32583029,6461715:10144963 +g1,4200:32583029,6461715 +) +(1,4201:6630773,7127893:25952256,404226,76021 +h1,4201:6630773,7127893:0,0,0 +k1,4201:6630773,7127893:0 +h1,4201:9476084,7127893:0,0,0 +k1,4201:32583028,7127893:23106944 +g1,4201:32583028,7127893 +) +(1,4208:6630773,7859607:25952256,410518,9436 +(1,4203:6630773,7859607:0,0,0 +g1,4203:6630773,7859607 +g1,4203:6630773,7859607 +g1,4203:6303093,7859607 +(1,4203:6303093,7859607:0,0,0 +) +g1,4203:6630773,7859607 +) +g1,4208:7579210,7859607 +g1,4208:9159939,7859607 +g1,4208:10108376,7859607 +h1,4208:10424522,7859607:0,0,0 +k1,4208:32583030,7859607:22158508 +g1,4208:32583030,7859607 +) +(1,4208:6630773,8525785:25952256,410518,76021 +h1,4208:6630773,8525785:0,0,0 +g1,4208:7579210,8525785 +g1,4208:7895356,8525785 +g1,4208:8527648,8525785 +g1,4208:9476085,8525785 +g1,4208:10740668,8525785 +g1,4208:12637542,8525785 +g1,4208:13269834,8525785 +g1,4208:13902126,8525785 +g1,4208:14534418,8525785 +g1,4208:15166710,8525785 +g1,4208:15799002,8525785 +h1,4208:16115148,8525785:0,0,0 +k1,4208:32583029,8525785:16467881 +g1,4208:32583029,8525785 +) +(1,4208:6630773,9191963:25952256,410518,101187 +h1,4208:6630773,9191963:0,0,0 +g1,4208:7579210,9191963 +g1,4208:7895356,9191963 +g1,4208:8527648,9191963 +g1,4208:9476085,9191963 +g1,4208:10740668,9191963 +h1,4208:11689105,9191963:0,0,0 +k1,4208:32583029,9191963:20893924 +g1,4208:32583029,9191963 +) +(1,4208:6630773,9858141:25952256,410518,107478 +h1,4208:6630773,9858141:0,0,0 +g1,4208:7579210,9858141 +g1,4208:7895356,9858141 +g1,4208:8527648,9858141 +g1,4208:9476085,9858141 +g1,4208:11056814,9858141 +g1,4208:12953688,9858141 +g1,4208:14534417,9858141 +h1,4208:16115145,9858141:0,0,0 +k1,4208:32583029,9858141:16467884 +g1,4208:32583029,9858141 +) +(1,4210:6630773,11179679:25952256,410518,31456 +(1,4209:6630773,11179679:0,0,0 +g1,4209:6630773,11179679 +g1,4209:6630773,11179679 +g1,4209:6303093,11179679 +(1,4209:6303093,11179679:0,0,0 +) +g1,4209:6630773,11179679 +) +g1,4210:9159939,11179679 +g1,4210:10108377,11179679 +h1,4210:11056815,11179679:0,0,0 +k1,4210:32583029,11179679:21526214 +g1,4210:32583029,11179679 +) +(1,4211:6630773,11845857:25952256,410518,31456 +h1,4211:6630773,11845857:0,0,0 +g1,4211:9159939,11845857 +g1,4211:10108377,11845857 +h1,4211:11056814,11845857:0,0,0 +k1,4211:32583030,11845857:21526216 +g1,4211:32583030,11845857 +) +(1,4212:6630773,12512035:25952256,404226,76021 +h1,4212:6630773,12512035:0,0,0 +k1,4212:6630773,12512035:0 +h1,4212:9476084,12512035:0,0,0 +k1,4212:32583028,12512035:23106944 +g1,4212:32583028,12512035 +) +(1,4221:6630773,13243749:25952256,410518,9436 +(1,4214:6630773,13243749:0,0,0 +g1,4214:6630773,13243749 +g1,4214:6630773,13243749 +g1,4214:6303093,13243749 +(1,4214:6303093,13243749:0,0,0 +) +g1,4214:6630773,13243749 +) +g1,4221:7579210,13243749 +g1,4221:9159939,13243749 +g1,4221:10108376,13243749 +h1,4221:10424522,13243749:0,0,0 +k1,4221:32583030,13243749:22158508 +g1,4221:32583030,13243749 +) +(1,4221:6630773,13909927:25952256,410518,76021 +h1,4221:6630773,13909927:0,0,0 +g1,4221:7579210,13909927 +g1,4221:7895356,13909927 +g1,4221:8527648,13909927 +g1,4221:9159940,13909927 +g1,4221:9792232,13909927 +g1,4221:11056815,13909927 +g1,4221:12953689,13909927 +g1,4221:13585981,13909927 +g1,4221:14218273,13909927 +g1,4221:14850565,13909927 +g1,4221:15482857,13909927 +g1,4221:16115149,13909927 +h1,4221:16431295,13909927:0,0,0 +k1,4221:32583029,13909927:16151734 +g1,4221:32583029,13909927 +) +(1,4221:6630773,14576105:25952256,410518,101187 +h1,4221:6630773,14576105:0,0,0 +g1,4221:7579210,14576105 +g1,4221:7895356,14576105 +g1,4221:8527648,14576105 +g1,4221:9159940,14576105 +g1,4221:9792232,14576105 +g1,4221:11056815,14576105 +h1,4221:12005252,14576105:0,0,0 +k1,4221:32583028,14576105:20577776 +g1,4221:32583028,14576105 +) +(1,4221:6630773,15242283:25952256,410518,107478 +h1,4221:6630773,15242283:0,0,0 +g1,4221:7579210,15242283 +g1,4221:7895356,15242283 +g1,4221:8527648,15242283 +g1,4221:9159940,15242283 +g1,4221:9792232,15242283 +g1,4221:11372961,15242283 +g1,4221:13269835,15242283 +g1,4221:14850564,15242283 +h1,4221:16431292,15242283:0,0,0 +k1,4221:32583029,15242283:16151737 +g1,4221:32583029,15242283 +) +(1,4221:6630773,15908461:25952256,410518,76021 +h1,4221:6630773,15908461:0,0,0 +g1,4221:7579210,15908461 +g1,4221:7895356,15908461 +g1,4221:8527648,15908461 +g1,4221:9792231,15908461 +g1,4221:11056814,15908461 +g1,4221:12953688,15908461 +g1,4221:13585980,15908461 +g1,4221:14218272,15908461 +g1,4221:14850564,15908461 +g1,4221:15482856,15908461 +g1,4221:16115148,15908461 +h1,4221:16431294,15908461:0,0,0 +k1,4221:32583029,15908461:16151735 +g1,4221:32583029,15908461 +) +(1,4221:6630773,16574639:25952256,410518,31456 +h1,4221:6630773,16574639:0,0,0 +g1,4221:7579210,16574639 +g1,4221:7895356,16574639 +g1,4221:8527648,16574639 +g1,4221:9792231,16574639 +g1,4221:11056814,16574639 +h1,4221:12005251,16574639:0,0,0 +k1,4221:32583029,16574639:20577778 +g1,4221:32583029,16574639 +) +] +) +g1,4222:32583029,16606095 +g1,4222:6630773,16606095 +g1,4222:6630773,16606095 +g1,4222:32583029,16606095 +g1,4222:32583029,16606095 +) +h1,4222:6630773,16802703:0,0,0 +(1,4226:6630773,18074164:25952256,513147,134348 +h1,4225:6630773,18074164:983040,0,0 +k1,4225:9231778,18074164:146026 +k1,4225:11584401,18074164:146026 +k1,4225:12721987,18074164:146026 +k1,4225:16006532,18074164:146026 +k1,4225:19361856,18074164:146026 +k1,4225:20159311,18074164:146027 +k1,4225:22593854,18074164:146026 +k1,4225:25812863,18074164:146026 +k1,4225:26641774,18074164:146026 +k1,4225:29312247,18074164:146026 +k1,4225:30847636,18074164:146026 +k1,4226:32583029,18074164:0 +) +(1,4226:6630773,18915652:25952256,513147,134348 +k1,4225:7451377,18915652:232091 +k1,4225:8954866,18915652:232091 +k1,4225:10291239,18915652:232091 +k1,4225:12203673,18915652:232091 +k1,4225:13095056,18915652:232091 +k1,4225:14716510,18915652:232091 +k1,4225:17155199,18915652:232092 +k1,4225:18073452,18915652:232091 +k1,4225:20375825,18915652:232091 +k1,4225:23960083,18915652:232091 +k1,4225:28202322,18915652:232091 +k1,4225:29117298,18915652:232091 +k1,4225:30035551,18915652:232091 +k1,4225:31765140,18915652:232091 +k1,4225:32583029,18915652:0 +) +(1,4226:6630773,19757140:25952256,513147,134348 +k1,4225:8004559,19757140:203313 +k1,4225:9544806,19757140:203313 +k1,4225:11223334,19757140:203313 +k1,4225:13991725,19757140:203312 +k1,4225:15762659,19757140:203313 +k1,4225:16985057,19757140:203313 +k1,4225:20180089,19757140:203313 +k1,4225:22416984,19757140:203313 +k1,4225:23236335,19757140:203313 +k1,4225:24642888,19757140:203312 +k1,4225:27298558,19757140:203313 +k1,4225:29156655,19757140:203313 +k1,4225:30351528,19757140:203313 +k1,4225:32583029,19757140:0 +) +(1,4226:6630773,20598628:25952256,513147,134348 +k1,4225:9564046,20598628:170930 +k1,4225:11303252,20598628:170929 +k1,4225:12133474,20598628:170930 +k1,4225:15325614,20598628:170930 +k1,4225:18383404,20598628:170929 +k1,4225:20262202,20598628:170930 +k1,4225:21624576,20598628:170929 +k1,4225:24988420,20598628:170930 +k1,4225:29231102,20598628:170930 +k1,4225:31440201,20598628:170929 +k1,4225:32227169,20598628:170930 +k1,4225:32583029,20598628:0 +) +(1,4226:6630773,21440116:25952256,513147,102891 +k1,4225:8210540,21440116:190404 +k1,4225:10450910,21440116:190404 +k1,4225:11838000,21440116:190403 +k1,4225:14741595,21440116:190404 +k1,4225:16036281,21440116:190404 +k1,4225:16974451,21440116:190404 +k1,4225:19438299,21440116:190404 +k1,4225:20314864,21440116:190403 +k1,4225:23458976,21440116:190404 +k1,4225:24265418,21440116:190404 +k1,4225:24811682,21440116:190404 +k1,4225:26169282,21440116:190404 +k1,4225:27551130,21440116:190403 +k1,4225:28845816,21440116:190404 +k1,4225:29783986,21440116:190404 +k1,4225:32583029,21440116:0 +) +(1,4226:6630773,22281604:25952256,505283,134348 +k1,4225:8240025,22281604:142556 +k1,4225:9144109,22281604:142556 +k1,4225:11024681,22281604:142557 +k1,4225:11850122,22281604:142556 +k1,4225:13741834,22281604:142556 +k1,4225:17086479,22281604:142556 +k1,4225:19012270,22281604:142556 +k1,4225:21953870,22281604:142557 +k1,4225:22857954,22281604:142556 +k1,4225:24912195,22281604:142556 +k1,4225:26790144,22281604:142556 +(1,4225:26790144,22281604:0,459977,115847 +r1,4225:27148410,22281604:358266,575824,115847 +k1,4225:26790144,22281604:-358266 +) +(1,4225:26790144,22281604:358266,459977,115847 +k1,4225:26790144,22281604:3277 +h1,4225:27145133,22281604:0,411205,112570 +) +k1,4225:27290967,22281604:142557 +k1,4225:28116408,22281604:142556 +k1,4225:30441968,22281604:142556 +k1,4225:32583029,22281604:0 +) +(1,4226:6630773,23123092:25952256,513147,134348 +k1,4225:9793541,23123092:283771 +k1,4225:10433171,23123092:283770 +k1,4225:12589961,23123092:283771 +k1,4225:15256621,23123092:283771 +k1,4225:16071889,23123092:283771 +k1,4225:19134386,23123092:283770 +k1,4225:20104319,23123092:283771 +k1,4225:20743950,23123092:283771 +k1,4225:23005597,23123092:283770 +k1,4225:23972253,23123092:283771 +k1,4225:26323685,23123092:283771 +k1,4225:27235291,23123092:283771 +k1,4225:30150332,23123092:283770 +k1,4225:31085531,23123092:283771 +k1,4225:32583029,23123092:0 +) +(1,4226:6630773,23964580:25952256,513147,134348 +k1,4225:8299647,23964580:279511 +k1,4225:10785755,23964580:279511 +k1,4225:12056825,23964580:279510 +k1,4225:14465601,23964580:279511 +k1,4225:18980704,23964580:279511 +k1,4225:20451660,23964580:279511 +k1,4225:21678821,23964580:279510 +k1,4225:23161573,23964580:279511 +k1,4225:25572315,23964580:279511 +k1,4225:26870911,23964580:279511 +k1,4225:29161066,23964580:279510 +k1,4225:31478747,23964580:279511 +k1,4225:32583029,23964580:0 +) +(1,4226:6630773,24806068:25952256,505283,134348 +k1,4225:8123115,24806068:206526 +k1,4225:9077407,24806068:206526 +k1,4225:12082975,24806068:206525 +k1,4225:12905539,24806068:206526 +k1,4225:13467925,24806068:206526 +k1,4225:14912426,24806068:206526 +k1,4225:17320962,24806068:206526 +k1,4225:18178915,24806068:206525 +k1,4225:19715822,24806068:206526 +k1,4225:22791514,24806068:206526 +k1,4225:23614078,24806068:206526 +k1,4225:24176464,24806068:206526 +k1,4225:26470311,24806068:206525 +k1,4225:27668397,24806068:206526 +k1,4225:30847636,24806068:206526 +k1,4225:32583029,24806068:0 +) +(1,4226:6630773,25647556:25952256,513147,134348 +k1,4225:8008995,25647556:205783 +k1,4225:10815247,25647556:205783 +k1,4225:11838919,25647556:205783 +k1,4225:12913054,25647556:205783 +k1,4225:14326010,25647556:205783 +k1,4225:15479444,25647556:205783 +k1,4225:18167075,25647556:205783 +k1,4225:20799656,25647556:205783 +k1,4225:22109721,25647556:205783 +k1,4225:23063270,25647556:205783 +k1,4225:25577231,25647556:205783 +k1,4225:26442306,25647556:205783 +k1,4225:28878279,25647556:205783 +k1,4225:31900144,25647556:205783 +k1,4225:32583029,25647556:0 +) +(1,4226:6630773,26489044:25952256,513147,134348 +k1,4225:9106017,26489044:167066 +k1,4225:9932376,26489044:167067 +k1,4225:12169069,26489044:167066 +k1,4225:14520451,26489044:167067 +k1,4225:15729539,26489044:167066 +k1,4225:18609796,26489044:167066 +k1,4225:20157051,26489044:167067 +k1,4225:21602069,26489044:167066 +k1,4225:22385173,26489044:167066 +k1,4225:25391915,26489044:167067 +k1,4225:26306747,26489044:167066 +k1,4225:28781992,26489044:167067 +k1,4225:29608350,26489044:167066 +k1,4225:32583029,26489044:0 +) +(1,4226:6630773,27330532:25952256,513147,134348 +k1,4225:9081764,27330532:254880 +k1,4225:12308047,27330532:254881 +k1,4225:13582012,27330532:254880 +k1,4225:15905209,27330532:254881 +k1,4225:16819381,27330532:254880 +k1,4225:18093347,27330532:254881 +k1,4225:21235088,27330532:254880 +k1,4225:23273203,27330532:254880 +k1,4225:25263477,27330532:254881 +k1,4225:27945155,27330532:254880 +k1,4225:28658133,27330532:254881 +k1,4225:29444510,27330532:254880 +k1,4225:32583029,27330532:0 +) +(1,4226:6630773,28172020:25952256,513147,134348 +g1,4225:10039300,28172020 +g1,4225:10889957,28172020 +g1,4225:14348291,28172020 +g1,4225:15832026,28172020 +g1,4225:17050340,28172020 +g1,4225:19676367,28172020 +g1,4225:20867156,28172020 +g1,4225:23195650,28172020 +g1,4225:25089640,28172020 +g1,4225:26577962,28172020 +k1,4226:32583029,28172020:4489875 +g1,4226:32583029,28172020 +) +v1,4228:6630773,29443481:0,393216,0 +(1,4283:6630773,45116945:25952256,16066680,589824 +g1,4283:6630773,45116945 +(1,4283:6630773,45116945:25952256,16066680,589824 +(1,4283:6630773,45706769:25952256,16656504,0 +[1,4283:6630773,45706769:25952256,16656504,0 +(1,4283:6630773,45706769:25952256,16630290,0 +r1,4283:6656987,45706769:26214,16630290,0 +[1,4283:6656987,45706769:25899828,16630290,0 +(1,4283:6656987,45116945:25899828,15450642,0 +[1,4283:7246811,45116945:24720180,15450642,0 +(1,4229:7246811,30828188:24720180,1161885,196608 +(1,4228:7246811,30828188:0,1161885,196608 +r1,4283:8794447,30828188:1547636,1358493,196608 +k1,4228:7246811,30828188:-1547636 +) +(1,4228:7246811,30828188:1547636,1161885,196608 +) +k1,4228:8934305,30828188:139858 +k1,4228:11825363,30828188:139857 +k1,4228:12624513,30828188:139858 +k1,4228:14153734,30828188:139858 +k1,4228:16500189,30828188:139858 +k1,4228:17744328,30828188:139857 +k1,4228:18500224,30828188:139858 +k1,4228:19406198,30828188:139858 +k1,4228:21243438,30828188:139858 +k1,4228:22131061,30828188:139857 +k1,4228:23848371,30828188:139858 +k1,4228:24674391,30828188:139858 +k1,4228:25280210,30828188:139858 +k1,4228:26800255,30828188:139857 +k1,4228:28444164,30828188:139858 +k1,4228:30081520,30828188:139858 +k1,4228:31966991,30828188:0 +) +(1,4229:7246811,31669676:24720180,513147,134348 +k1,4228:8029315,31669676:251007 +k1,4228:11719651,31669676:251007 +k1,4228:12656821,31669676:251008 +k1,4228:13365925,31669676:251007 +k1,4228:16090261,31669676:251007 +k1,4228:20549990,31669676:251007 +k1,4228:22194948,31669676:251007 +k1,4228:24720054,31669676:251007 +k1,4228:25385853,31669676:250956 +k1,4228:26960687,31669676:251007 +k1,4228:28403139,31669676:251007 +k1,4228:30048097,31669676:251007 +k1,4228:31966991,31669676:0 +) +(1,4229:7246811,32511164:24720180,513147,134348 +k1,4228:12897161,32511164:263291 +k1,4228:13819744,32511164:263291 +k1,4228:18920903,32511164:263291 +k1,4228:22445921,32511164:263291 +k1,4228:23855437,32511164:263291 +k1,4228:25862641,32511164:263291 +k1,4228:28507510,32511164:263291 +k1,4228:29386839,32511164:263291 +k1,4228:31966991,32511164:0 +) +(1,4229:7246811,33352652:24720180,513147,134348 +k1,4228:9787283,33352652:204770 +k1,4228:11783808,33352652:204771 +k1,4228:13191819,33352652:204770 +k1,4228:16554769,33352652:204770 +k1,4228:19953764,33352652:204770 +k1,4228:21330974,33352652:204771 +k1,4228:23546389,33352652:204770 +k1,4228:25318780,33352652:204770 +k1,4228:26542635,33352652:204770 +k1,4228:28988737,33352652:204771 +k1,4228:30384952,33352652:204770 +k1,4228:31966991,33352652:0 +) +(1,4229:7246811,34194140:24720180,513147,134348 +k1,4228:10448362,34194140:257018 +k1,4228:11321418,34194140:257018 +k1,4228:12597521,34194140:257018 +k1,4228:14160673,34194140:257019 +k1,4228:16800580,34194140:257018 +k1,4228:17724754,34194140:257018 +(1,4228:17724754,34194140:0,459977,115847 +r1,4283:19138155,34194140:1413401,575824,115847 +k1,4228:17724754,34194140:-1413401 +) +(1,4228:17724754,34194140:1413401,459977,115847 +k1,4228:17724754,34194140:3277 +h1,4228:19134878,34194140:0,411205,112570 +) +k1,4228:19395173,34194140:257018 +k1,4228:20183688,34194140:257018 +k1,4228:22018158,34194140:257018 +k1,4228:22961339,34194140:257019 +k1,4228:25707414,34194140:257018 +k1,4228:27699825,34194140:257018 +k1,4228:31137961,34194140:257018 +k1,4229:31966991,34194140:0 +) +(1,4229:7246811,35035628:24720180,505283,7863 +k1,4229:31966991,35035628:22735750 +g1,4229:31966991,35035628 +) +v1,4231:7246811,36226094:0,393216,0 +(1,4238:7246811,37247739:24720180,1414861,196608 +g1,4238:7246811,37247739 +g1,4238:7246811,37247739 +g1,4238:7050203,37247739 +(1,4238:7050203,37247739:0,1414861,196608 +r1,4283:32163599,37247739:25113396,1611469,196608 +k1,4238:7050203,37247739:-25113396 +) +(1,4238:7050203,37247739:25113396,1414861,196608 +[1,4238:7246811,37247739:24720180,1218253,0 +(1,4233:7246811,36440004:24720180,410518,76021 +(1,4232:7246811,36440004:0,0,0 +g1,4232:7246811,36440004 +g1,4232:7246811,36440004 +g1,4232:6919131,36440004 +(1,4232:6919131,36440004:0,0,0 +) +g1,4232:7246811,36440004 +) +h1,4233:11672852,36440004:0,0,0 +k1,4233:31966992,36440004:20294140 +g1,4233:31966992,36440004 +) +(1,4237:7246811,37171718:24720180,404226,76021 +(1,4235:7246811,37171718:0,0,0 +g1,4235:7246811,37171718 +g1,4235:7246811,37171718 +g1,4235:6919131,37171718 +(1,4235:6919131,37171718:0,0,0 +) +g1,4235:7246811,37171718 +) +g1,4237:8195248,37171718 +g1,4237:9459831,37171718 +g1,4237:10092123,37171718 +h1,4237:10408269,37171718:0,0,0 +k1,4237:31966991,37171718:21558722 +g1,4237:31966991,37171718 +) +] +) +g1,4238:31966991,37247739 +g1,4238:7246811,37247739 +g1,4238:7246811,37247739 +g1,4238:31966991,37247739 +g1,4238:31966991,37247739 +) +h1,4238:7246811,37444347:0,0,0 +(1,4242:7246811,38810123:24720180,505283,134348 +h1,4241:7246811,38810123:983040,0,0 +g1,4241:9226653,38810123 +g1,4241:11161275,38810123 +g1,4241:12379589,38810123 +g1,4241:14961707,38810123 +k1,4242:31966991,38810123:15093599 +g1,4242:31966991,38810123 +) +v1,4244:7246811,40000589:0,393216,0 +(1,4251:7246811,41022234:24720180,1414861,196608 +g1,4251:7246811,41022234 +g1,4251:7246811,41022234 +g1,4251:7050203,41022234 +(1,4251:7050203,41022234:0,1414861,196608 +r1,4283:32163599,41022234:25113396,1611469,196608 +k1,4251:7050203,41022234:-25113396 +) +(1,4251:7050203,41022234:25113396,1414861,196608 +[1,4251:7246811,41022234:24720180,1218253,0 +(1,4246:7246811,40214499:24720180,410518,76021 +(1,4245:7246811,40214499:0,0,0 +g1,4245:7246811,40214499 +g1,4245:7246811,40214499 +g1,4245:6919131,40214499 +(1,4245:6919131,40214499:0,0,0 +) +g1,4245:7246811,40214499 +) +h1,4246:12305143,40214499:0,0,0 +k1,4246:31966991,40214499:19661848 +g1,4246:31966991,40214499 +) +(1,4250:7246811,40946213:24720180,404226,76021 +(1,4248:7246811,40946213:0,0,0 +g1,4248:7246811,40946213 +g1,4248:7246811,40946213 +g1,4248:6919131,40946213 +(1,4248:6919131,40946213:0,0,0 +) +g1,4248:7246811,40946213 +) +g1,4250:8195248,40946213 +g1,4250:9459831,40946213 +g1,4250:10092123,40946213 +h1,4250:10408269,40946213:0,0,0 +k1,4250:31966991,40946213:21558722 +g1,4250:31966991,40946213 +) +] +) +g1,4251:31966991,41022234 +g1,4251:7246811,41022234 +g1,4251:7246811,41022234 +g1,4251:31966991,41022234 +g1,4251:31966991,41022234 +) +h1,4251:7246811,41218842:0,0,0 +(1,4255:7246811,42584618:24720180,513147,134348 +h1,4254:7246811,42584618:983040,0,0 +k1,4254:9632048,42584618:205510 +k1,4254:11050629,42584618:205510 +k1,4254:14099091,42584618:205510 +k1,4254:17751139,42584618:205510 +k1,4254:20696054,42584618:205510 +k1,4254:21433061,42584618:205510 +k1,4254:23216023,42584618:205510 +k1,4254:24107695,42584618:205510 +k1,4254:26802262,42584618:205510 +k1,4254:28401723,42584618:205510 +k1,4254:29626318,42584618:205510 +k1,4254:31137961,42584618:205510 +k1,4255:31966991,42584618:0 +) +(1,4255:7246811,43426106:24720180,505283,134348 +k1,4254:8594827,43426106:214898 +k1,4254:11984290,43426106:214899 +k1,4254:13733386,43426106:214898 +k1,4254:15139729,43426106:214898 +k1,4254:16373713,43426106:214899 +k1,4254:18829942,43426106:214898 +k1,4254:20201551,43426106:214899 +k1,4254:23591013,43426106:214898 +k1,4254:26692772,43426106:214898 +k1,4254:28288515,43426106:214899 +k1,4254:31193011,43426106:214898 +k1,4255:31966991,43426106:0 +) +(1,4255:7246811,44267594:24720180,513147,126483 +k1,4254:8978855,44267594:281077 +k1,4254:13545986,44267594:281076 +k1,4254:17041604,44267594:281077 +k1,4254:18890301,44267594:281076 +k1,4254:21842625,44267594:281077 +k1,4254:25010562,44267594:281076 +k1,4254:27177110,44267594:281077 +k1,4254:27989683,44267594:281076 +k1,4254:29337031,44267594:281077 +k1,4254:31966991,44267594:0 +) +(1,4255:7246811,45109082:24720180,513147,7863 +g1,4254:8839991,45109082 +g1,4254:10536718,45109082 +g1,4254:11932634,45109082 +g1,4254:13812206,45109082 +g1,4254:16790162,45109082 +g1,4254:17520888,45109082 +g1,4254:18075977,45109082 +g1,4254:21227603,45109082 +g1,4254:22816195,45109082 +k1,4255:31966991,45109082:7100830 +g1,4255:31966991,45109082 +) +] +) +] +r1,4283:32583029,45706769:26214,16630290,0 +) +] ) ) -g1,4277:32583029,45116945 +g1,4283:32583029,45116945 ) ] -(1,4277:32583029,45706769:0,0,0 -g1,4277:32583029,45706769 +(1,4283:32583029,45706769:0,0,0 +g1,4283:32583029,45706769 ) ) ] -(1,4277:6630773,47279633:25952256,0,0 -h1,4277:6630773,47279633:25952256,0,0 +(1,4283:6630773,47279633:25952256,0,0 +h1,4283:6630773,47279633:25952256,0,0 ) ] -h1,4277:4262630,4025873:0,0,0 +h1,4283:4262630,4025873:0,0,0 ] !23960 }79 -Input:513:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!96 +Input:509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!102 {80 -[1,4338:4262630,47279633:28320399,43253760,0 -(1,4338:4262630,4025873:0,0,0 -[1,4338:-473657,4025873:25952256,0,0 -(1,4338:-473657,-710414:25952256,0,0 -h1,4338:-473657,-710414:0,0,0 -(1,4338:-473657,-710414:0,0,0 -(1,4338:-473657,-710414:0,0,0 -g1,4338:-473657,-710414 -(1,4338:-473657,-710414:65781,0,65781 -g1,4338:-407876,-710414 -[1,4338:-407876,-644633:0,0,0 +[1,4344:4262630,47279633:28320399,43253760,0 +(1,4344:4262630,4025873:0,0,0 +[1,4344:-473657,4025873:25952256,0,0 +(1,4344:-473657,-710414:25952256,0,0 +h1,4344:-473657,-710414:0,0,0 +(1,4344:-473657,-710414:0,0,0 +(1,4344:-473657,-710414:0,0,0 +g1,4344:-473657,-710414 +(1,4344:-473657,-710414:65781,0,65781 +g1,4344:-407876,-710414 +[1,4344:-407876,-644633:0,0,0 ] ) -k1,4338:-473657,-710414:-65781 +k1,4344:-473657,-710414:-65781 ) ) -k1,4338:25478599,-710414:25952256 -g1,4338:25478599,-710414 +k1,4344:25478599,-710414:25952256 +g1,4344:25478599,-710414 ) ] ) -[1,4338:6630773,47279633:25952256,43253760,0 -[1,4338:6630773,4812305:25952256,786432,0 -(1,4338:6630773,4812305:25952256,513147,126483 -(1,4338:6630773,4812305:25952256,513147,126483 -g1,4338:3078558,4812305 -[1,4338:3078558,4812305:0,0,0 -(1,4338:3078558,2439708:0,1703936,0 -k1,4338:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4338:2537886,2439708:1179648,16384,0 +[1,4344:6630773,47279633:25952256,43253760,0 +[1,4344:6630773,4812305:25952256,786432,0 +(1,4344:6630773,4812305:25952256,513147,126483 +(1,4344:6630773,4812305:25952256,513147,126483 +g1,4344:3078558,4812305 +[1,4344:3078558,4812305:0,0,0 +(1,4344:3078558,2439708:0,1703936,0 +k1,4344:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4344:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4338:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4344:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4338:3078558,4812305:0,0,0 -(1,4338:3078558,2439708:0,1703936,0 -g1,4338:29030814,2439708 -g1,4338:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4338:36151628,1915420:16384,1179648,0 +[1,4344:3078558,4812305:0,0,0 +(1,4344:3078558,2439708:0,1703936,0 +g1,4344:29030814,2439708 +g1,4344:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4344:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4338:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4344:37855564,2439708:1179648,16384,0 ) ) -k1,4338:3078556,2439708:-34777008 +k1,4344:3078556,2439708:-34777008 ) ] -[1,4338:3078558,4812305:0,0,0 -(1,4338:3078558,49800853:0,16384,2228224 -k1,4338:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4338:2537886,49800853:1179648,16384,0 +[1,4344:3078558,4812305:0,0,0 +(1,4344:3078558,49800853:0,16384,2228224 +k1,4344:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4344:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4338:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4344:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4338:3078558,4812305:0,0,0 -(1,4338:3078558,49800853:0,16384,2228224 -g1,4338:29030814,49800853 -g1,4338:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4338:36151628,51504789:16384,1179648,0 +[1,4344:3078558,4812305:0,0,0 +(1,4344:3078558,49800853:0,16384,2228224 +g1,4344:29030814,49800853 +g1,4344:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4344:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4338:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4344:37855564,49800853:1179648,16384,0 ) ) -k1,4338:3078556,49800853:-34777008 +k1,4344:3078556,49800853:-34777008 ) ] -g1,4338:6630773,4812305 -g1,4338:6630773,4812305 -g1,4338:8364200,4812305 -g1,4338:10765439,4812305 -k1,4338:31786111,4812305:21020672 -) -) -] -[1,4338:6630773,45706769:25952256,40108032,0 -(1,4338:6630773,45706769:25952256,40108032,0 -(1,4338:6630773,45706769:0,0,0 -g1,4338:6630773,45706769 -) -[1,4338:6630773,45706769:25952256,40108032,0 -v1,4277:6630773,6254097:0,393216,0 -(1,4277:6630773,20453658:25952256,14592777,616038 -g1,4277:6630773,20453658 -(1,4277:6630773,20453658:25952256,14592777,616038 -(1,4277:6630773,21069696:25952256,15208815,0 -[1,4277:6630773,21069696:25952256,15208815,0 -(1,4277:6630773,21043482:25952256,15182601,0 -r1,4277:6656987,21043482:26214,15182601,0 -[1,4277:6656987,21043482:25899828,15182601,0 -(1,4277:6656987,20453658:25899828,14002953,0 -[1,4277:7246811,20453658:24720180,14002953,0 -v1,4251:7246811,6843921:0,393216,0 -(1,4260:7246811,9131337:24720180,2680632,196608 -g1,4260:7246811,9131337 -g1,4260:7246811,9131337 -g1,4260:7050203,9131337 -(1,4260:7050203,9131337:0,2680632,196608 -r1,4277:32163599,9131337:25113396,2877240,196608 -k1,4260:7050203,9131337:-25113396 -) -(1,4260:7050203,9131337:25113396,2680632,196608 -[1,4260:7246811,9131337:24720180,2484024,0 -(1,4253:7246811,7057831:24720180,410518,82312 -(1,4252:7246811,7057831:0,0,0 -g1,4252:7246811,7057831 -g1,4252:7246811,7057831 -g1,4252:6919131,7057831 -(1,4252:6919131,7057831:0,0,0 -) -g1,4252:7246811,7057831 -) -k1,4253:7246811,7057831:0 -g1,4253:10408269,7057831 -h1,4253:11672853,7057831:0,0,0 -k1,4253:31966991,7057831:20294138 -g1,4253:31966991,7057831 -) -(1,4259:7246811,7789545:24720180,379060,101187 -(1,4255:7246811,7789545:0,0,0 -g1,4255:7246811,7789545 -g1,4255:7246811,7789545 -g1,4255:6919131,7789545 -(1,4255:6919131,7789545:0,0,0 -) -g1,4255:7246811,7789545 -) -g1,4259:8195248,7789545 -g1,4259:8511394,7789545 -g1,4259:8827540,7789545 -g1,4259:9459832,7789545 -h1,4259:9775978,7789545:0,0,0 -k1,4259:31966990,7789545:22191012 -g1,4259:31966990,7789545 -) -(1,4259:7246811,8455723:24720180,388497,4718 -h1,4259:7246811,8455723:0,0,0 -g1,4259:8195248,8455723 -g1,4259:8827540,8455723 -g1,4259:9459832,8455723 -h1,4259:9775978,8455723:0,0,0 -k1,4259:31966990,8455723:22191012 -g1,4259:31966990,8455723 -) -(1,4259:7246811,9121901:24720180,388497,9436 -h1,4259:7246811,9121901:0,0,0 -g1,4259:8195248,9121901 -g1,4259:8827540,9121901 -g1,4259:9459832,9121901 -h1,4259:9775978,9121901:0,0,0 -k1,4259:31966990,9121901:22191012 -g1,4259:31966990,9121901 -) -] -) -g1,4260:31966991,9131337 -g1,4260:7246811,9131337 -g1,4260:7246811,9131337 -g1,4260:31966991,9131337 -g1,4260:31966991,9131337 -) -h1,4260:7246811,9327945:0,0,0 -(1,4264:7246811,10693721:24720180,513147,134348 -h1,4263:7246811,10693721:983040,0,0 -k1,4263:8937686,10693721:230078 -k1,4263:10186849,10693721:230078 -k1,4263:12430193,10693721:230078 -k1,4263:13319564,10693721:230079 -k1,4263:14568727,10693721:230078 -k1,4263:17181694,10693721:230078 -k1,4263:20151177,10693721:230078 -k1,4263:22359132,10693721:230078 -k1,4263:23120707,10693721:230078 -k1,4263:24681166,10693721:230078 -k1,4263:25930330,10693721:230079 -k1,4263:28939135,10693721:230078 -k1,4263:30849556,10693721:230078 -k1,4263:31611131,10693721:230078 -k1,4263:31966991,10693721:0 -) -(1,4264:7246811,11535209:24720180,505283,126483 -k1,4263:9667056,11535209:268698 -k1,4263:11821224,11535209:268697 -k1,4263:12621419,11535209:268698 -k1,4263:13956387,11535209:268697 -k1,4263:17505817,11535209:268698 -k1,4263:19168465,11535209:268697 -k1,4263:20456248,11535209:268698 -k1,4263:23479423,11535209:268697 -k1,4263:26409538,11535209:268698 -k1,4263:28563706,11535209:268697 -k1,4263:31611131,11535209:268698 -k1,4263:31966991,11535209:0 -) -(1,4264:7246811,12376697:24720180,513147,134348 -k1,4263:8842519,12376697:206345 -k1,4263:11098829,12376697:206344 -k1,4263:12686018,12376697:206345 -k1,4263:13423860,12376697:206345 -k1,4263:14696475,12376697:206344 -k1,4263:16278421,12376697:206345 -k1,4263:19749114,12376697:206345 -k1,4263:20571496,12376697:206344 -k1,4263:23616861,12376697:206345 -k1,4263:25089361,12376697:206344 -k1,4263:26367875,12376697:206345 -k1,4263:27678502,12376697:206345 -k1,4263:28632612,12376697:206344 -k1,4263:29858042,12376697:206345 -k1,4263:31966991,12376697:0 -) -(1,4264:7246811,13218185:24720180,513147,134348 -k1,4263:8066263,13218185:160160 -k1,4263:9746203,13218185:160160 -k1,4263:11604401,13218185:160160 -k1,4263:13903656,13218185:160160 -k1,4263:17505111,13218185:160160 -k1,4263:18281309,13218185:160160 -k1,4263:20326939,13218185:160159 -k1,4263:21506184,13218185:160160 -k1,4263:23679610,13218185:160160 -k1,4263:24499062,13218185:160160 -k1,4263:25678307,13218185:160160 -k1,4263:28079798,13218185:160160 -k1,4263:29989114,13218185:160160 -k1,4263:31966991,13218185:0 -) -(1,4264:7246811,14059673:24720180,505283,134348 -g1,4263:9616592,14059673 -g1,4263:10563587,14059673 -g1,4263:14339116,14059673 -g1,4263:15189773,14059673 -g1,4263:16136768,14059673 -g1,4263:18465262,14059673 -g1,4263:20314688,14059673 -g1,4263:21956364,14059673 -k1,4264:31966991,14059673:8680246 -g1,4264:31966991,14059673 -) -v1,4266:7246811,15250139:0,393216,0 -(1,4273:7246811,16271784:24720180,1414861,196608 -g1,4273:7246811,16271784 -g1,4273:7246811,16271784 -g1,4273:7050203,16271784 -(1,4273:7050203,16271784:0,1414861,196608 -r1,4277:32163599,16271784:25113396,1611469,196608 -k1,4273:7050203,16271784:-25113396 -) -(1,4273:7050203,16271784:25113396,1414861,196608 -[1,4273:7246811,16271784:24720180,1218253,0 -(1,4268:7246811,15464049:24720180,410518,82312 -(1,4267:7246811,15464049:0,0,0 -g1,4267:7246811,15464049 -g1,4267:7246811,15464049 -g1,4267:6919131,15464049 -(1,4267:6919131,15464049:0,0,0 -) -g1,4267:7246811,15464049 -) -k1,4268:7246811,15464049:0 -g1,4268:10408269,15464049 -h1,4268:11040561,15464049:0,0,0 -k1,4268:31966991,15464049:20926430 -g1,4268:31966991,15464049 -) -(1,4272:7246811,16195763:24720180,404226,76021 -(1,4270:7246811,16195763:0,0,0 -g1,4270:7246811,16195763 -g1,4270:7246811,16195763 -g1,4270:6919131,16195763 -(1,4270:6919131,16195763:0,0,0 -) -g1,4270:7246811,16195763 -) -g1,4272:8195248,16195763 -g1,4272:9459831,16195763 -g1,4272:10092123,16195763 -h1,4272:10408269,16195763:0,0,0 -k1,4272:31966991,16195763:21558722 -g1,4272:31966991,16195763 -) -] -) -g1,4273:31966991,16271784 -g1,4273:7246811,16271784 -g1,4273:7246811,16271784 -g1,4273:31966991,16271784 -g1,4273:31966991,16271784 -) -h1,4273:7246811,16468392:0,0,0 -(1,4277:7246811,17834168:24720180,513147,134348 -h1,4276:7246811,17834168:983040,0,0 -k1,4276:9046211,17834168:188525 -k1,4276:12039678,17834168:188526 -k1,4276:14967608,17834168:188525 -k1,4276:15815425,17834168:188525 -k1,4276:21182606,17834168:188526 -k1,4276:21987169,17834168:188525 -k1,4276:24755846,17834168:188525 -k1,4276:28293261,17834168:188526 -k1,4276:30611051,17834168:188525 -k1,4277:31966991,17834168:0 -) -(1,4277:7246811,18675656:24720180,505283,134348 -k1,4276:9716754,18675656:158488 -k1,4276:11630295,18675656:158487 -k1,4276:14789677,18675656:158488 -k1,4276:15304025,18675656:158488 -k1,4276:17614060,18675656:158488 -k1,4276:19239244,18675656:158488 -k1,4276:21095769,18675656:158487 -k1,4276:22273342,18675656:158488 -k1,4276:24409707,18675656:158488 -k1,4276:26081420,18675656:158487 -k1,4276:26891336,18675656:158488 -k1,4276:29253800,18675656:158488 -k1,4276:31966991,18675656:0 -) -(1,4277:7246811,19517144:24720180,513147,134348 -k1,4276:8020651,19517144:242343 -k1,4276:8922285,19517144:242342 -k1,4276:11177894,19517144:242343 -k1,4276:12576947,19517144:242343 -k1,4276:14051366,19517144:242342 -k1,4276:16572396,19517144:242343 -h1,4276:18115114,19517144:0,0,0 -k1,4276:18357457,19517144:242343 -k1,4276:19409169,19517144:242342 -k1,4276:21149665,19517144:242343 -h1,4276:22345042,19517144:0,0,0 -k1,4276:22587384,19517144:242342 -k1,4276:23777378,19517144:242343 -k1,4276:26137189,19517144:242343 -k1,4276:27188901,19517144:242342 -k1,4276:28450329,19517144:242343 -k1,4276:31966991,19517144:0 -) -(1,4277:7246811,20358632:24720180,513147,95026 -g1,4276:10081243,20358632 -g1,4276:11669835,20358632 -g1,4276:14075661,20358632 -g1,4276:15466335,20358632 -k1,4277:31966991,20358632:13978175 -g1,4277:31966991,20358632 -) -] -) -] -r1,4277:32583029,21043482:26214,15182601,0 -) -] -) -) -g1,4277:32583029,20453658 -) -h1,4277:6630773,21069696:0,0,0 -v1,4281:6630773,22784450:0,393216,0 -(1,4333:6630773,43998440:25952256,21607206,196608 -g1,4333:6630773,43998440 -g1,4333:6630773,43998440 -g1,4333:6434165,43998440 -(1,4333:6434165,43998440:0,21607206,196608 -r1,4333:32779637,43998440:26345472,21803814,196608 -k1,4333:6434165,43998440:-26345472 -) -(1,4333:6434165,43998440:26345472,21607206,196608 -[1,4333:6630773,43998440:25952256,21410598,0 -(1,4283:6630773,22998360:25952256,410518,101187 -(1,4282:6630773,22998360:0,0,0 -g1,4282:6630773,22998360 -g1,4282:6630773,22998360 -g1,4282:6303093,22998360 -(1,4282:6303093,22998360:0,0,0 -) -g1,4282:6630773,22998360 -) -g1,4283:7263065,22998360 -g1,4283:9159939,22998360 -g1,4283:11689105,22998360 -g1,4283:14850562,22998360 -k1,4283:14850562,22998360:39846 -h1,4283:17735719,22998360:0,0,0 -k1,4283:32583029,22998360:14847310 -g1,4283:32583029,22998360 -) -(1,4284:6630773,23664538:25952256,410518,82312 -h1,4284:6630773,23664538:0,0,0 -g1,4284:8527647,23664538 -g1,4284:9159939,23664538 -h1,4284:9792231,23664538:0,0,0 -k1,4284:32583029,23664538:22790798 -g1,4284:32583029,23664538 -) -(1,4288:6630773,24396252:25952256,404226,76021 -(1,4286:6630773,24396252:0,0,0 -g1,4286:6630773,24396252 -g1,4286:6630773,24396252 -g1,4286:6303093,24396252 -(1,4286:6303093,24396252:0,0,0 -) -g1,4286:6630773,24396252 -) -g1,4288:7579210,24396252 -g1,4288:8843793,24396252 -g1,4288:9476085,24396252 -g1,4288:10108377,24396252 -g1,4288:10740669,24396252 -g1,4288:11372961,24396252 -g1,4288:12005253,24396252 -h1,4288:12321399,24396252:0,0,0 -k1,4288:32583029,24396252:20261630 -g1,4288:32583029,24396252 -) -(1,4290:6630773,25717790:25952256,410518,101187 -(1,4289:6630773,25717790:0,0,0 -g1,4289:6630773,25717790 -g1,4289:6630773,25717790 -g1,4289:6303093,25717790 -(1,4289:6303093,25717790:0,0,0 -) -g1,4289:6630773,25717790 -) -g1,4290:7263065,25717790 -g1,4290:9159939,25717790 -g1,4290:11689105,25717790 -g1,4290:15482853,25717790 -g1,4290:16431290,25717790 -g1,4290:18644310,25717790 -k1,4290:18644310,25717790:39846 -h1,4290:21529467,25717790:0,0,0 -k1,4290:32583029,25717790:11053562 -g1,4290:32583029,25717790 -) -(1,4291:6630773,26383968:25952256,410518,82312 -h1,4291:6630773,26383968:0,0,0 -g1,4291:8527647,26383968 -g1,4291:9159939,26383968 -h1,4291:10424522,26383968:0,0,0 -k1,4291:32583030,26383968:22158508 -g1,4291:32583030,26383968 -) -(1,4295:6630773,27115682:25952256,404226,76021 -(1,4293:6630773,27115682:0,0,0 -g1,4293:6630773,27115682 -g1,4293:6630773,27115682 -g1,4293:6303093,27115682 -(1,4293:6303093,27115682:0,0,0 -) -g1,4293:6630773,27115682 -) -g1,4295:7579210,27115682 -g1,4295:8843793,27115682 -g1,4295:9476085,27115682 -g1,4295:10108377,27115682 -g1,4295:10740669,27115682 -g1,4295:11372961,27115682 -g1,4295:12005253,27115682 -h1,4295:12321399,27115682:0,0,0 -k1,4295:32583029,27115682:20261630 -g1,4295:32583029,27115682 -) -(1,4297:6630773,28437220:25952256,410518,101187 -(1,4296:6630773,28437220:0,0,0 -g1,4296:6630773,28437220 -g1,4296:6630773,28437220 -g1,4296:6303093,28437220 -(1,4296:6303093,28437220:0,0,0 -) -g1,4296:6630773,28437220 -) -g1,4297:7263065,28437220 -g1,4297:9159939,28437220 -k1,4297:9159939,28437220:47186 -h1,4297:10155562,28437220:0,0,0 -k1,4297:32583030,28437220:22427468 -g1,4297:32583030,28437220 -) -(1,4298:6630773,29103398:25952256,410518,82312 -h1,4298:6630773,29103398:0,0,0 -g1,4298:9159939,29103398 -h1,4298:9476085,29103398:0,0,0 -k1,4298:32583029,29103398:23106944 -g1,4298:32583029,29103398 -) -(1,4303:6630773,29835112:25952256,388497,101187 -(1,4300:6630773,29835112:0,0,0 -g1,4300:6630773,29835112 -g1,4300:6630773,29835112 -g1,4300:6303093,29835112 -(1,4300:6303093,29835112:0,0,0 -) -g1,4300:6630773,29835112 -) -g1,4303:7579210,29835112 -g1,4303:7895356,29835112 -g1,4303:8211502,29835112 -g1,4303:8843794,29835112 -g1,4303:9476086,29835112 -g1,4303:9792232,29835112 -g1,4303:10108378,29835112 -g1,4303:10424524,29835112 -g1,4303:11056816,29835112 -g1,4303:12005253,29835112 -h1,4303:12637544,29835112:0,0,0 -k1,4303:32583028,29835112:19945484 -g1,4303:32583028,29835112 -) -(1,4303:6630773,30501290:25952256,404226,9436 -h1,4303:6630773,30501290:0,0,0 -g1,4303:7579210,30501290 -g1,4303:8211502,30501290 -g1,4303:8843794,30501290 -g1,4303:9476086,30501290 -g1,4303:11056815,30501290 -g1,4303:11372961,30501290 -g1,4303:12005253,30501290 -g1,4303:12321399,30501290 -h1,4303:12637545,30501290:0,0,0 -k1,4303:32583029,30501290:19945484 -g1,4303:32583029,30501290 -) -(1,4305:6630773,31822828:25952256,410518,101187 -(1,4304:6630773,31822828:0,0,0 -g1,4304:6630773,31822828 -g1,4304:6630773,31822828 -g1,4304:6303093,31822828 -(1,4304:6303093,31822828:0,0,0 -) -g1,4304:6630773,31822828 -) -g1,4305:7263065,31822828 -g1,4305:9159939,31822828 -g1,4305:10424522,31822828 -g1,4305:12005251,31822828 -g1,4305:12953688,31822828 -g1,4305:14218271,31822828 -g1,4305:16115145,31822828 -g1,4305:17379728,31822828 -g1,4305:19592748,31822828 -k1,4305:19592748,31822828:0 -h1,4305:21805768,31822828:0,0,0 -k1,4305:32583029,31822828:10777261 -g1,4305:32583029,31822828 -) -(1,4306:6630773,32489006:25952256,410518,82312 -h1,4306:6630773,32489006:0,0,0 -g1,4306:9792231,32489006 -g1,4306:12637543,32489006 -g1,4306:14850563,32489006 -g1,4306:16747438,32489006 -g1,4306:18644313,32489006 -h1,4306:20857332,32489006:0,0,0 -k1,4306:32583029,32489006:11725697 -g1,4306:32583029,32489006 -) -(1,4312:6630773,33220720:25952256,388497,0 -(1,4308:6630773,33220720:0,0,0 -g1,4308:6630773,33220720 -g1,4308:6630773,33220720 -g1,4308:6303093,33220720 -(1,4308:6303093,33220720:0,0,0 -) -g1,4308:6630773,33220720 -) -g1,4312:7579210,33220720 -g1,4312:7895356,33220720 -g1,4312:8211502,33220720 -g1,4312:8527648,33220720 -g1,4312:8843794,33220720 -g1,4312:9159940,33220720 -g1,4312:9476086,33220720 -g1,4312:10108378,33220720 -h1,4312:10740669,33220720:0,0,0 -k1,4312:32583029,33220720:21842360 -g1,4312:32583029,33220720 -) -(1,4312:6630773,33886898:25952256,388497,9436 -h1,4312:6630773,33886898:0,0,0 -g1,4312:7579210,33886898 -g1,4312:8211502,33886898 -g1,4312:8527648,33886898 -g1,4312:10108377,33886898 -g1,4312:10424523,33886898 -h1,4312:10740669,33886898:0,0,0 -k1,4312:32583029,33886898:21842360 -g1,4312:32583029,33886898 -) -(1,4312:6630773,34553076:25952256,388497,9436 -h1,4312:6630773,34553076:0,0,0 -g1,4312:7579210,34553076 -g1,4312:8211502,34553076 -g1,4312:10108376,34553076 -g1,4312:10424522,34553076 -h1,4312:10740668,34553076:0,0,0 -k1,4312:32583028,34553076:21842360 -g1,4312:32583028,34553076 -) -(1,4314:6630773,35874614:25952256,410518,101187 -(1,4313:6630773,35874614:0,0,0 -g1,4313:6630773,35874614 -g1,4313:6630773,35874614 -g1,4313:6303093,35874614 -(1,4313:6303093,35874614:0,0,0 -) -g1,4313:6630773,35874614 -) -g1,4314:7263065,35874614 -g1,4314:8527648,35874614 -g1,4314:10108377,35874614 -g1,4314:11372960,35874614 -g1,4314:13269834,35874614 -g1,4314:13902126,35874614 -g1,4314:14850563,35874614 -k1,4314:14850563,35874614:1573 -h1,4314:16116719,35874614:0,0,0 -k1,4314:32583029,35874614:16466310 -g1,4314:32583029,35874614 -) -(1,4315:6630773,36540792:25952256,410518,82312 -h1,4315:6630773,36540792:0,0,0 -g1,4315:10424522,36540792 -g1,4315:11056814,36540792 -h1,4315:11372960,36540792:0,0,0 -k1,4315:32583028,36540792:21210068 -g1,4315:32583028,36540792 -) -(1,4322:6630773,37272506:25952256,388497,101187 -(1,4317:6630773,37272506:0,0,0 -g1,4317:6630773,37272506 -g1,4317:6630773,37272506 -g1,4317:6303093,37272506 -(1,4317:6303093,37272506:0,0,0 -) -g1,4317:6630773,37272506 -) -g1,4322:7579210,37272506 -g1,4322:7895356,37272506 -g1,4322:8211502,37272506 -g1,4322:8843794,37272506 -g1,4322:9476086,37272506 -g1,4322:9792232,37272506 -g1,4322:10108378,37272506 -g1,4322:10424524,37272506 -g1,4322:11056816,37272506 -g1,4322:12005253,37272506 -h1,4322:12637544,37272506:0,0,0 -k1,4322:32583028,37272506:19945484 -g1,4322:32583028,37272506 -) -(1,4322:6630773,37938684:25952256,404226,9436 -h1,4322:6630773,37938684:0,0,0 -g1,4322:7579210,37938684 -g1,4322:8211502,37938684 -g1,4322:8843794,37938684 -g1,4322:9476086,37938684 -g1,4322:11056815,37938684 -g1,4322:11372961,37938684 -g1,4322:12005253,37938684 -g1,4322:12321399,37938684 -h1,4322:12637545,37938684:0,0,0 -k1,4322:32583029,37938684:19945484 -g1,4322:32583029,37938684 -) -(1,4322:6630773,38604862:25952256,404226,9436 -h1,4322:6630773,38604862:0,0,0 -g1,4322:7579210,38604862 -g1,4322:8211502,38604862 -g1,4322:8843794,38604862 -g1,4322:9476086,38604862 -g1,4322:11056815,38604862 -g1,4322:11372961,38604862 -g1,4322:12005253,38604862 -g1,4322:12321399,38604862 -h1,4322:12637545,38604862:0,0,0 -k1,4322:32583029,38604862:19945484 -g1,4322:32583029,38604862 -) -(1,4322:6630773,39271040:25952256,404226,9436 -h1,4322:6630773,39271040:0,0,0 -g1,4322:7579210,39271040 -g1,4322:8211502,39271040 -g1,4322:8843794,39271040 -g1,4322:9476086,39271040 -g1,4322:11056815,39271040 -g1,4322:11372961,39271040 -g1,4322:12005253,39271040 -g1,4322:12321399,39271040 -h1,4322:12637545,39271040:0,0,0 -k1,4322:32583029,39271040:19945484 -g1,4322:32583029,39271040 -) -(1,4324:6630773,40592578:25952256,410518,107478 -(1,4323:6630773,40592578:0,0,0 -g1,4323:6630773,40592578 -g1,4323:6630773,40592578 -g1,4323:6303093,40592578 -(1,4323:6303093,40592578:0,0,0 -) -g1,4323:6630773,40592578 -) -g1,4324:7263065,40592578 -g1,4324:8527648,40592578 -g1,4324:10108377,40592578 -g1,4324:11372960,40592578 -g1,4324:13269834,40592578 -g1,4324:13902126,40592578 -g1,4324:14534418,40592578 -g1,4324:15166710,40592578 -g1,4324:17695876,40592578 -g1,4324:18960459,40592578 -g1,4324:21489625,40592578 -g1,4324:23702645,40592578 -g1,4324:24967228,40592578 -g1,4324:26864102,40592578 -k1,4324:26864102,40592578:1573 -h1,4324:27814112,40592578:0,0,0 -k1,4324:32583029,40592578:4768917 -g1,4324:32583029,40592578 -) -(1,4325:6630773,41258756:25952256,410518,82312 -h1,4325:6630773,41258756:0,0,0 -g1,4325:10424522,41258756 -g1,4325:11056814,41258756 -g1,4325:12005252,41258756 -k1,4325:12005252,41258756:0 -h1,4325:12953690,41258756:0,0,0 -k1,4325:32583030,41258756:19629340 -g1,4325:32583030,41258756 -) -(1,4332:6630773,41990470:25952256,388497,101187 -(1,4327:6630773,41990470:0,0,0 -g1,4327:6630773,41990470 -g1,4327:6630773,41990470 -g1,4327:6303093,41990470 -(1,4327:6303093,41990470:0,0,0 -) -g1,4327:6630773,41990470 -) -g1,4332:7579210,41990470 -g1,4332:7895356,41990470 -g1,4332:8211502,41990470 -g1,4332:8843794,41990470 -g1,4332:9476086,41990470 -g1,4332:10424523,41990470 -h1,4332:11056814,41990470:0,0,0 -k1,4332:32583030,41990470:21526216 -g1,4332:32583030,41990470 -) -(1,4332:6630773,42656648:25952256,404226,9436 -h1,4332:6630773,42656648:0,0,0 -g1,4332:7579210,42656648 -g1,4332:8211502,42656648 -g1,4332:8843794,42656648 -g1,4332:9476086,42656648 -g1,4332:9792232,42656648 -g1,4332:10424524,42656648 -g1,4332:10740670,42656648 -h1,4332:11056816,42656648:0,0,0 -k1,4332:32583028,42656648:21526212 -g1,4332:32583028,42656648 -) -(1,4332:6630773,43322826:25952256,404226,9436 -h1,4332:6630773,43322826:0,0,0 -g1,4332:7579210,43322826 -g1,4332:8211502,43322826 -g1,4332:8843794,43322826 -g1,4332:9476086,43322826 -g1,4332:9792232,43322826 -g1,4332:10424524,43322826 -g1,4332:10740670,43322826 -h1,4332:11056816,43322826:0,0,0 -k1,4332:32583028,43322826:21526212 -g1,4332:32583028,43322826 -) -(1,4332:6630773,43989004:25952256,404226,9436 -h1,4332:6630773,43989004:0,0,0 -g1,4332:7579210,43989004 -g1,4332:8211502,43989004 -g1,4332:8843794,43989004 -g1,4332:9476086,43989004 -g1,4332:9792232,43989004 -g1,4332:10424524,43989004 -g1,4332:10740670,43989004 -h1,4332:11056816,43989004:0,0,0 -k1,4332:32583028,43989004:21526212 -g1,4332:32583028,43989004 -) -] -) -g1,4333:32583029,43998440 -g1,4333:6630773,43998440 -g1,4333:6630773,43998440 -g1,4333:32583029,43998440 -g1,4333:32583029,43998440 -) -h1,4333:6630773,44195048:0,0,0 -(1,4338:6630773,45560824:25952256,513147,134348 -h1,4336:6630773,45560824:983040,0,0 -k1,4336:8649181,45560824:217479 -k1,4336:11944885,45560824:217478 -k1,4336:14195946,45560824:217479 -k1,4336:15361075,45560824:217478 -k1,4336:17886732,45560824:217479 -k1,4336:19336287,45560824:217478 -k1,4336:21832453,45560824:217479 -h1,4336:23201500,45560824:0,0,0 -k1,4336:23418978,45560824:217478 -k1,4336:24445827,45560824:217479 -k1,4336:26161458,45560824:217478 -h1,4336:26958376,45560824:0,0,0 -k1,4336:27556619,45560824:217479 -k1,4336:30513502,45560824:217478 -k1,4336:31835263,45560824:217479 -k1,4336:32583029,45560824:0 -) -] -(1,4338:32583029,45706769:0,0,0 -g1,4338:32583029,45706769 -) -) -] -(1,4338:6630773,47279633:25952256,0,0 -h1,4338:6630773,47279633:25952256,0,0 -) -] -h1,4338:4262630,4025873:0,0,0 -] -!23030 +g1,4344:6630773,4812305 +g1,4344:6630773,4812305 +g1,4344:8364200,4812305 +g1,4344:10765439,4812305 +k1,4344:31786111,4812305:21020672 +) +) +] +[1,4344:6630773,45706769:25952256,40108032,0 +(1,4344:6630773,45706769:25952256,40108032,0 +(1,4344:6630773,45706769:0,0,0 +g1,4344:6630773,45706769 +) +[1,4344:6630773,45706769:25952256,40108032,0 +v1,4283:6630773,6254097:0,393216,0 +(1,4283:6630773,20453658:25952256,14592777,616038 +g1,4283:6630773,20453658 +(1,4283:6630773,20453658:25952256,14592777,616038 +(1,4283:6630773,21069696:25952256,15208815,0 +[1,4283:6630773,21069696:25952256,15208815,0 +(1,4283:6630773,21043482:25952256,15182601,0 +r1,4283:6656987,21043482:26214,15182601,0 +[1,4283:6656987,21043482:25899828,15182601,0 +(1,4283:6656987,20453658:25899828,14002953,0 +[1,4283:7246811,20453658:24720180,14002953,0 +v1,4257:7246811,6843921:0,393216,0 +(1,4266:7246811,9131337:24720180,2680632,196608 +g1,4266:7246811,9131337 +g1,4266:7246811,9131337 +g1,4266:7050203,9131337 +(1,4266:7050203,9131337:0,2680632,196608 +r1,4283:32163599,9131337:25113396,2877240,196608 +k1,4266:7050203,9131337:-25113396 +) +(1,4266:7050203,9131337:25113396,2680632,196608 +[1,4266:7246811,9131337:24720180,2484024,0 +(1,4259:7246811,7057831:24720180,410518,82312 +(1,4258:7246811,7057831:0,0,0 +g1,4258:7246811,7057831 +g1,4258:7246811,7057831 +g1,4258:6919131,7057831 +(1,4258:6919131,7057831:0,0,0 +) +g1,4258:7246811,7057831 +) +k1,4259:7246811,7057831:0 +g1,4259:10408269,7057831 +h1,4259:11672853,7057831:0,0,0 +k1,4259:31966991,7057831:20294138 +g1,4259:31966991,7057831 +) +(1,4265:7246811,7789545:24720180,379060,101187 +(1,4261:7246811,7789545:0,0,0 +g1,4261:7246811,7789545 +g1,4261:7246811,7789545 +g1,4261:6919131,7789545 +(1,4261:6919131,7789545:0,0,0 +) +g1,4261:7246811,7789545 +) +g1,4265:8195248,7789545 +g1,4265:8511394,7789545 +g1,4265:8827540,7789545 +g1,4265:9459832,7789545 +h1,4265:9775978,7789545:0,0,0 +k1,4265:31966990,7789545:22191012 +g1,4265:31966990,7789545 +) +(1,4265:7246811,8455723:24720180,388497,4718 +h1,4265:7246811,8455723:0,0,0 +g1,4265:8195248,8455723 +g1,4265:8827540,8455723 +g1,4265:9459832,8455723 +h1,4265:9775978,8455723:0,0,0 +k1,4265:31966990,8455723:22191012 +g1,4265:31966990,8455723 +) +(1,4265:7246811,9121901:24720180,388497,9436 +h1,4265:7246811,9121901:0,0,0 +g1,4265:8195248,9121901 +g1,4265:8827540,9121901 +g1,4265:9459832,9121901 +h1,4265:9775978,9121901:0,0,0 +k1,4265:31966990,9121901:22191012 +g1,4265:31966990,9121901 +) +] +) +g1,4266:31966991,9131337 +g1,4266:7246811,9131337 +g1,4266:7246811,9131337 +g1,4266:31966991,9131337 +g1,4266:31966991,9131337 +) +h1,4266:7246811,9327945:0,0,0 +(1,4270:7246811,10693721:24720180,513147,134348 +h1,4269:7246811,10693721:983040,0,0 +k1,4269:8937686,10693721:230078 +k1,4269:10186849,10693721:230078 +k1,4269:12430193,10693721:230078 +k1,4269:13319564,10693721:230079 +k1,4269:14568727,10693721:230078 +k1,4269:17181694,10693721:230078 +k1,4269:20151177,10693721:230078 +k1,4269:22359132,10693721:230078 +k1,4269:23120707,10693721:230078 +k1,4269:24681166,10693721:230078 +k1,4269:25930330,10693721:230079 +k1,4269:28939135,10693721:230078 +k1,4269:30849556,10693721:230078 +k1,4269:31611131,10693721:230078 +k1,4269:31966991,10693721:0 +) +(1,4270:7246811,11535209:24720180,505283,126483 +k1,4269:9667056,11535209:268698 +k1,4269:11821224,11535209:268697 +k1,4269:12621419,11535209:268698 +k1,4269:13956387,11535209:268697 +k1,4269:17505817,11535209:268698 +k1,4269:19168465,11535209:268697 +k1,4269:20456248,11535209:268698 +k1,4269:23479423,11535209:268697 +k1,4269:26409538,11535209:268698 +k1,4269:28563706,11535209:268697 +k1,4269:31611131,11535209:268698 +k1,4269:31966991,11535209:0 +) +(1,4270:7246811,12376697:24720180,513147,134348 +k1,4269:8842519,12376697:206345 +k1,4269:11098829,12376697:206344 +k1,4269:12686018,12376697:206345 +k1,4269:13423860,12376697:206345 +k1,4269:14696475,12376697:206344 +k1,4269:16278421,12376697:206345 +k1,4269:19749114,12376697:206345 +k1,4269:20571496,12376697:206344 +k1,4269:23616861,12376697:206345 +k1,4269:25089361,12376697:206344 +k1,4269:26367875,12376697:206345 +k1,4269:27678502,12376697:206345 +k1,4269:28632612,12376697:206344 +k1,4269:29858042,12376697:206345 +k1,4269:31966991,12376697:0 +) +(1,4270:7246811,13218185:24720180,513147,134348 +k1,4269:8066263,13218185:160160 +k1,4269:9746203,13218185:160160 +k1,4269:11604401,13218185:160160 +k1,4269:13903656,13218185:160160 +k1,4269:17505111,13218185:160160 +k1,4269:18281309,13218185:160160 +k1,4269:20326939,13218185:160159 +k1,4269:21506184,13218185:160160 +k1,4269:23679610,13218185:160160 +k1,4269:24499062,13218185:160160 +k1,4269:25678307,13218185:160160 +k1,4269:28079798,13218185:160160 +k1,4269:29989114,13218185:160160 +k1,4269:31966991,13218185:0 +) +(1,4270:7246811,14059673:24720180,505283,134348 +g1,4269:9616592,14059673 +g1,4269:10563587,14059673 +g1,4269:14339116,14059673 +g1,4269:15189773,14059673 +g1,4269:16136768,14059673 +g1,4269:18465262,14059673 +g1,4269:20314688,14059673 +g1,4269:21956364,14059673 +k1,4270:31966991,14059673:8680246 +g1,4270:31966991,14059673 +) +v1,4272:7246811,15250139:0,393216,0 +(1,4279:7246811,16271784:24720180,1414861,196608 +g1,4279:7246811,16271784 +g1,4279:7246811,16271784 +g1,4279:7050203,16271784 +(1,4279:7050203,16271784:0,1414861,196608 +r1,4283:32163599,16271784:25113396,1611469,196608 +k1,4279:7050203,16271784:-25113396 +) +(1,4279:7050203,16271784:25113396,1414861,196608 +[1,4279:7246811,16271784:24720180,1218253,0 +(1,4274:7246811,15464049:24720180,410518,82312 +(1,4273:7246811,15464049:0,0,0 +g1,4273:7246811,15464049 +g1,4273:7246811,15464049 +g1,4273:6919131,15464049 +(1,4273:6919131,15464049:0,0,0 +) +g1,4273:7246811,15464049 +) +k1,4274:7246811,15464049:0 +g1,4274:10408269,15464049 +h1,4274:11040561,15464049:0,0,0 +k1,4274:31966991,15464049:20926430 +g1,4274:31966991,15464049 +) +(1,4278:7246811,16195763:24720180,404226,76021 +(1,4276:7246811,16195763:0,0,0 +g1,4276:7246811,16195763 +g1,4276:7246811,16195763 +g1,4276:6919131,16195763 +(1,4276:6919131,16195763:0,0,0 +) +g1,4276:7246811,16195763 +) +g1,4278:8195248,16195763 +g1,4278:9459831,16195763 +g1,4278:10092123,16195763 +h1,4278:10408269,16195763:0,0,0 +k1,4278:31966991,16195763:21558722 +g1,4278:31966991,16195763 +) +] +) +g1,4279:31966991,16271784 +g1,4279:7246811,16271784 +g1,4279:7246811,16271784 +g1,4279:31966991,16271784 +g1,4279:31966991,16271784 +) +h1,4279:7246811,16468392:0,0,0 +(1,4283:7246811,17834168:24720180,513147,134348 +h1,4282:7246811,17834168:983040,0,0 +k1,4282:9046211,17834168:188525 +k1,4282:12039678,17834168:188526 +k1,4282:14967608,17834168:188525 +k1,4282:15815425,17834168:188525 +k1,4282:21182606,17834168:188526 +k1,4282:21987169,17834168:188525 +k1,4282:24755846,17834168:188525 +k1,4282:28293261,17834168:188526 +k1,4282:30611051,17834168:188525 +k1,4283:31966991,17834168:0 +) +(1,4283:7246811,18675656:24720180,505283,134348 +k1,4282:9716754,18675656:158488 +k1,4282:11630295,18675656:158487 +k1,4282:14789677,18675656:158488 +k1,4282:15304025,18675656:158488 +k1,4282:17614060,18675656:158488 +k1,4282:19239244,18675656:158488 +k1,4282:21095769,18675656:158487 +k1,4282:22273342,18675656:158488 +k1,4282:24409707,18675656:158488 +k1,4282:26081420,18675656:158487 +k1,4282:26891336,18675656:158488 +k1,4282:29253800,18675656:158488 +k1,4282:31966991,18675656:0 +) +(1,4283:7246811,19517144:24720180,513147,134348 +k1,4282:8020651,19517144:242343 +k1,4282:8922285,19517144:242342 +k1,4282:11177894,19517144:242343 +k1,4282:12576947,19517144:242343 +k1,4282:14051366,19517144:242342 +k1,4282:16572396,19517144:242343 +h1,4282:18115114,19517144:0,0,0 +k1,4282:18357457,19517144:242343 +k1,4282:19409169,19517144:242342 +k1,4282:21149665,19517144:242343 +h1,4282:22345042,19517144:0,0,0 +k1,4282:22587384,19517144:242342 +k1,4282:23777378,19517144:242343 +k1,4282:26137189,19517144:242343 +k1,4282:27188901,19517144:242342 +k1,4282:28450329,19517144:242343 +k1,4282:31966991,19517144:0 +) +(1,4283:7246811,20358632:24720180,513147,95026 +g1,4282:10081243,20358632 +g1,4282:11669835,20358632 +g1,4282:14075661,20358632 +g1,4282:15466335,20358632 +k1,4283:31966991,20358632:13978175 +g1,4283:31966991,20358632 +) +] +) +] +r1,4283:32583029,21043482:26214,15182601,0 +) +] +) +) +g1,4283:32583029,20453658 +) +h1,4283:6630773,21069696:0,0,0 +v1,4287:6630773,22784450:0,393216,0 +(1,4339:6630773,43998440:25952256,21607206,196608 +g1,4339:6630773,43998440 +g1,4339:6630773,43998440 +g1,4339:6434165,43998440 +(1,4339:6434165,43998440:0,21607206,196608 +r1,4339:32779637,43998440:26345472,21803814,196608 +k1,4339:6434165,43998440:-26345472 +) +(1,4339:6434165,43998440:26345472,21607206,196608 +[1,4339:6630773,43998440:25952256,21410598,0 +(1,4289:6630773,22998360:25952256,410518,101187 +(1,4288:6630773,22998360:0,0,0 +g1,4288:6630773,22998360 +g1,4288:6630773,22998360 +g1,4288:6303093,22998360 +(1,4288:6303093,22998360:0,0,0 +) +g1,4288:6630773,22998360 +) +g1,4289:7263065,22998360 +g1,4289:9159939,22998360 +g1,4289:11689105,22998360 +g1,4289:14850562,22998360 +k1,4289:14850562,22998360:39846 +h1,4289:17735719,22998360:0,0,0 +k1,4289:32583029,22998360:14847310 +g1,4289:32583029,22998360 +) +(1,4290:6630773,23664538:25952256,410518,82312 +h1,4290:6630773,23664538:0,0,0 +g1,4290:8527647,23664538 +g1,4290:9159939,23664538 +h1,4290:9792231,23664538:0,0,0 +k1,4290:32583029,23664538:22790798 +g1,4290:32583029,23664538 +) +(1,4294:6630773,24396252:25952256,404226,76021 +(1,4292:6630773,24396252:0,0,0 +g1,4292:6630773,24396252 +g1,4292:6630773,24396252 +g1,4292:6303093,24396252 +(1,4292:6303093,24396252:0,0,0 +) +g1,4292:6630773,24396252 +) +g1,4294:7579210,24396252 +g1,4294:8843793,24396252 +g1,4294:9476085,24396252 +g1,4294:10108377,24396252 +g1,4294:10740669,24396252 +g1,4294:11372961,24396252 +g1,4294:12005253,24396252 +h1,4294:12321399,24396252:0,0,0 +k1,4294:32583029,24396252:20261630 +g1,4294:32583029,24396252 +) +(1,4296:6630773,25717790:25952256,410518,101187 +(1,4295:6630773,25717790:0,0,0 +g1,4295:6630773,25717790 +g1,4295:6630773,25717790 +g1,4295:6303093,25717790 +(1,4295:6303093,25717790:0,0,0 +) +g1,4295:6630773,25717790 +) +g1,4296:7263065,25717790 +g1,4296:9159939,25717790 +g1,4296:11689105,25717790 +g1,4296:15482853,25717790 +g1,4296:16431290,25717790 +g1,4296:18644310,25717790 +k1,4296:18644310,25717790:39846 +h1,4296:21529467,25717790:0,0,0 +k1,4296:32583029,25717790:11053562 +g1,4296:32583029,25717790 +) +(1,4297:6630773,26383968:25952256,410518,82312 +h1,4297:6630773,26383968:0,0,0 +g1,4297:8527647,26383968 +g1,4297:9159939,26383968 +h1,4297:10424522,26383968:0,0,0 +k1,4297:32583030,26383968:22158508 +g1,4297:32583030,26383968 +) +(1,4301:6630773,27115682:25952256,404226,76021 +(1,4299:6630773,27115682:0,0,0 +g1,4299:6630773,27115682 +g1,4299:6630773,27115682 +g1,4299:6303093,27115682 +(1,4299:6303093,27115682:0,0,0 +) +g1,4299:6630773,27115682 +) +g1,4301:7579210,27115682 +g1,4301:8843793,27115682 +g1,4301:9476085,27115682 +g1,4301:10108377,27115682 +g1,4301:10740669,27115682 +g1,4301:11372961,27115682 +g1,4301:12005253,27115682 +h1,4301:12321399,27115682:0,0,0 +k1,4301:32583029,27115682:20261630 +g1,4301:32583029,27115682 +) +(1,4303:6630773,28437220:25952256,410518,101187 +(1,4302:6630773,28437220:0,0,0 +g1,4302:6630773,28437220 +g1,4302:6630773,28437220 +g1,4302:6303093,28437220 +(1,4302:6303093,28437220:0,0,0 +) +g1,4302:6630773,28437220 +) +g1,4303:7263065,28437220 +g1,4303:9159939,28437220 +k1,4303:9159939,28437220:47186 +h1,4303:10155562,28437220:0,0,0 +k1,4303:32583030,28437220:22427468 +g1,4303:32583030,28437220 +) +(1,4304:6630773,29103398:25952256,410518,82312 +h1,4304:6630773,29103398:0,0,0 +g1,4304:9159939,29103398 +h1,4304:9476085,29103398:0,0,0 +k1,4304:32583029,29103398:23106944 +g1,4304:32583029,29103398 +) +(1,4309:6630773,29835112:25952256,388497,101187 +(1,4306:6630773,29835112:0,0,0 +g1,4306:6630773,29835112 +g1,4306:6630773,29835112 +g1,4306:6303093,29835112 +(1,4306:6303093,29835112:0,0,0 +) +g1,4306:6630773,29835112 +) +g1,4309:7579210,29835112 +g1,4309:7895356,29835112 +g1,4309:8211502,29835112 +g1,4309:8843794,29835112 +g1,4309:9476086,29835112 +g1,4309:9792232,29835112 +g1,4309:10108378,29835112 +g1,4309:10424524,29835112 +g1,4309:11056816,29835112 +g1,4309:12005253,29835112 +h1,4309:12637544,29835112:0,0,0 +k1,4309:32583028,29835112:19945484 +g1,4309:32583028,29835112 +) +(1,4309:6630773,30501290:25952256,404226,9436 +h1,4309:6630773,30501290:0,0,0 +g1,4309:7579210,30501290 +g1,4309:8211502,30501290 +g1,4309:8843794,30501290 +g1,4309:9476086,30501290 +g1,4309:11056815,30501290 +g1,4309:11372961,30501290 +g1,4309:12005253,30501290 +g1,4309:12321399,30501290 +h1,4309:12637545,30501290:0,0,0 +k1,4309:32583029,30501290:19945484 +g1,4309:32583029,30501290 +) +(1,4311:6630773,31822828:25952256,410518,101187 +(1,4310:6630773,31822828:0,0,0 +g1,4310:6630773,31822828 +g1,4310:6630773,31822828 +g1,4310:6303093,31822828 +(1,4310:6303093,31822828:0,0,0 +) +g1,4310:6630773,31822828 +) +g1,4311:7263065,31822828 +g1,4311:9159939,31822828 +g1,4311:10424522,31822828 +g1,4311:12005251,31822828 +g1,4311:12953688,31822828 +g1,4311:14218271,31822828 +g1,4311:16115145,31822828 +g1,4311:17379728,31822828 +g1,4311:19592748,31822828 +k1,4311:19592748,31822828:0 +h1,4311:21805768,31822828:0,0,0 +k1,4311:32583029,31822828:10777261 +g1,4311:32583029,31822828 +) +(1,4312:6630773,32489006:25952256,410518,82312 +h1,4312:6630773,32489006:0,0,0 +g1,4312:9792231,32489006 +g1,4312:12637543,32489006 +g1,4312:14850563,32489006 +g1,4312:16747438,32489006 +g1,4312:18644313,32489006 +h1,4312:20857332,32489006:0,0,0 +k1,4312:32583029,32489006:11725697 +g1,4312:32583029,32489006 +) +(1,4318:6630773,33220720:25952256,388497,0 +(1,4314:6630773,33220720:0,0,0 +g1,4314:6630773,33220720 +g1,4314:6630773,33220720 +g1,4314:6303093,33220720 +(1,4314:6303093,33220720:0,0,0 +) +g1,4314:6630773,33220720 +) +g1,4318:7579210,33220720 +g1,4318:7895356,33220720 +g1,4318:8211502,33220720 +g1,4318:8527648,33220720 +g1,4318:8843794,33220720 +g1,4318:9159940,33220720 +g1,4318:9476086,33220720 +g1,4318:10108378,33220720 +h1,4318:10740669,33220720:0,0,0 +k1,4318:32583029,33220720:21842360 +g1,4318:32583029,33220720 +) +(1,4318:6630773,33886898:25952256,388497,9436 +h1,4318:6630773,33886898:0,0,0 +g1,4318:7579210,33886898 +g1,4318:8211502,33886898 +g1,4318:8527648,33886898 +g1,4318:10108377,33886898 +g1,4318:10424523,33886898 +h1,4318:10740669,33886898:0,0,0 +k1,4318:32583029,33886898:21842360 +g1,4318:32583029,33886898 +) +(1,4318:6630773,34553076:25952256,388497,9436 +h1,4318:6630773,34553076:0,0,0 +g1,4318:7579210,34553076 +g1,4318:8211502,34553076 +g1,4318:10108376,34553076 +g1,4318:10424522,34553076 +h1,4318:10740668,34553076:0,0,0 +k1,4318:32583028,34553076:21842360 +g1,4318:32583028,34553076 +) +(1,4320:6630773,35874614:25952256,410518,101187 +(1,4319:6630773,35874614:0,0,0 +g1,4319:6630773,35874614 +g1,4319:6630773,35874614 +g1,4319:6303093,35874614 +(1,4319:6303093,35874614:0,0,0 +) +g1,4319:6630773,35874614 +) +g1,4320:7263065,35874614 +g1,4320:8527648,35874614 +g1,4320:10108377,35874614 +g1,4320:11372960,35874614 +g1,4320:13269834,35874614 +g1,4320:13902126,35874614 +g1,4320:14850563,35874614 +k1,4320:14850563,35874614:1573 +h1,4320:16116719,35874614:0,0,0 +k1,4320:32583029,35874614:16466310 +g1,4320:32583029,35874614 +) +(1,4321:6630773,36540792:25952256,410518,82312 +h1,4321:6630773,36540792:0,0,0 +g1,4321:10424522,36540792 +g1,4321:11056814,36540792 +h1,4321:11372960,36540792:0,0,0 +k1,4321:32583028,36540792:21210068 +g1,4321:32583028,36540792 +) +(1,4328:6630773,37272506:25952256,388497,101187 +(1,4323:6630773,37272506:0,0,0 +g1,4323:6630773,37272506 +g1,4323:6630773,37272506 +g1,4323:6303093,37272506 +(1,4323:6303093,37272506:0,0,0 +) +g1,4323:6630773,37272506 +) +g1,4328:7579210,37272506 +g1,4328:7895356,37272506 +g1,4328:8211502,37272506 +g1,4328:8843794,37272506 +g1,4328:9476086,37272506 +g1,4328:9792232,37272506 +g1,4328:10108378,37272506 +g1,4328:10424524,37272506 +g1,4328:11056816,37272506 +g1,4328:12005253,37272506 +h1,4328:12637544,37272506:0,0,0 +k1,4328:32583028,37272506:19945484 +g1,4328:32583028,37272506 +) +(1,4328:6630773,37938684:25952256,404226,9436 +h1,4328:6630773,37938684:0,0,0 +g1,4328:7579210,37938684 +g1,4328:8211502,37938684 +g1,4328:8843794,37938684 +g1,4328:9476086,37938684 +g1,4328:11056815,37938684 +g1,4328:11372961,37938684 +g1,4328:12005253,37938684 +g1,4328:12321399,37938684 +h1,4328:12637545,37938684:0,0,0 +k1,4328:32583029,37938684:19945484 +g1,4328:32583029,37938684 +) +(1,4328:6630773,38604862:25952256,404226,9436 +h1,4328:6630773,38604862:0,0,0 +g1,4328:7579210,38604862 +g1,4328:8211502,38604862 +g1,4328:8843794,38604862 +g1,4328:9476086,38604862 +g1,4328:11056815,38604862 +g1,4328:11372961,38604862 +g1,4328:12005253,38604862 +g1,4328:12321399,38604862 +h1,4328:12637545,38604862:0,0,0 +k1,4328:32583029,38604862:19945484 +g1,4328:32583029,38604862 +) +(1,4328:6630773,39271040:25952256,404226,9436 +h1,4328:6630773,39271040:0,0,0 +g1,4328:7579210,39271040 +g1,4328:8211502,39271040 +g1,4328:8843794,39271040 +g1,4328:9476086,39271040 +g1,4328:11056815,39271040 +g1,4328:11372961,39271040 +g1,4328:12005253,39271040 +g1,4328:12321399,39271040 +h1,4328:12637545,39271040:0,0,0 +k1,4328:32583029,39271040:19945484 +g1,4328:32583029,39271040 +) +(1,4330:6630773,40592578:25952256,410518,107478 +(1,4329:6630773,40592578:0,0,0 +g1,4329:6630773,40592578 +g1,4329:6630773,40592578 +g1,4329:6303093,40592578 +(1,4329:6303093,40592578:0,0,0 +) +g1,4329:6630773,40592578 +) +g1,4330:7263065,40592578 +g1,4330:8527648,40592578 +g1,4330:10108377,40592578 +g1,4330:11372960,40592578 +g1,4330:13269834,40592578 +g1,4330:13902126,40592578 +g1,4330:14534418,40592578 +g1,4330:15166710,40592578 +g1,4330:17695876,40592578 +g1,4330:18960459,40592578 +g1,4330:21489625,40592578 +g1,4330:23702645,40592578 +g1,4330:24967228,40592578 +g1,4330:26864102,40592578 +k1,4330:26864102,40592578:1573 +h1,4330:27814112,40592578:0,0,0 +k1,4330:32583029,40592578:4768917 +g1,4330:32583029,40592578 +) +(1,4331:6630773,41258756:25952256,410518,82312 +h1,4331:6630773,41258756:0,0,0 +g1,4331:10424522,41258756 +g1,4331:11056814,41258756 +g1,4331:12005252,41258756 +k1,4331:12005252,41258756:0 +h1,4331:12953690,41258756:0,0,0 +k1,4331:32583030,41258756:19629340 +g1,4331:32583030,41258756 +) +(1,4338:6630773,41990470:25952256,388497,101187 +(1,4333:6630773,41990470:0,0,0 +g1,4333:6630773,41990470 +g1,4333:6630773,41990470 +g1,4333:6303093,41990470 +(1,4333:6303093,41990470:0,0,0 +) +g1,4333:6630773,41990470 +) +g1,4338:7579210,41990470 +g1,4338:7895356,41990470 +g1,4338:8211502,41990470 +g1,4338:8843794,41990470 +g1,4338:9476086,41990470 +g1,4338:10424523,41990470 +h1,4338:11056814,41990470:0,0,0 +k1,4338:32583030,41990470:21526216 +g1,4338:32583030,41990470 +) +(1,4338:6630773,42656648:25952256,404226,9436 +h1,4338:6630773,42656648:0,0,0 +g1,4338:7579210,42656648 +g1,4338:8211502,42656648 +g1,4338:8843794,42656648 +g1,4338:9476086,42656648 +g1,4338:9792232,42656648 +g1,4338:10424524,42656648 +g1,4338:10740670,42656648 +h1,4338:11056816,42656648:0,0,0 +k1,4338:32583028,42656648:21526212 +g1,4338:32583028,42656648 +) +(1,4338:6630773,43322826:25952256,404226,9436 +h1,4338:6630773,43322826:0,0,0 +g1,4338:7579210,43322826 +g1,4338:8211502,43322826 +g1,4338:8843794,43322826 +g1,4338:9476086,43322826 +g1,4338:9792232,43322826 +g1,4338:10424524,43322826 +g1,4338:10740670,43322826 +h1,4338:11056816,43322826:0,0,0 +k1,4338:32583028,43322826:21526212 +g1,4338:32583028,43322826 +) +(1,4338:6630773,43989004:25952256,404226,9436 +h1,4338:6630773,43989004:0,0,0 +g1,4338:7579210,43989004 +g1,4338:8211502,43989004 +g1,4338:8843794,43989004 +g1,4338:9476086,43989004 +g1,4338:9792232,43989004 +g1,4338:10424524,43989004 +g1,4338:10740670,43989004 +h1,4338:11056816,43989004:0,0,0 +k1,4338:32583028,43989004:21526212 +g1,4338:32583028,43989004 +) +] +) +g1,4339:32583029,43998440 +g1,4339:6630773,43998440 +g1,4339:6630773,43998440 +g1,4339:32583029,43998440 +g1,4339:32583029,43998440 +) +h1,4339:6630773,44195048:0,0,0 +(1,4344:6630773,45560824:25952256,513147,134348 +h1,4342:6630773,45560824:983040,0,0 +k1,4342:8649181,45560824:217479 +k1,4342:11944885,45560824:217478 +k1,4342:14195946,45560824:217479 +k1,4342:15361075,45560824:217478 +k1,4342:17886732,45560824:217479 +k1,4342:19336287,45560824:217478 +k1,4342:21832453,45560824:217479 +h1,4342:23201500,45560824:0,0,0 +k1,4342:23418978,45560824:217478 +k1,4342:24445827,45560824:217479 +k1,4342:26161458,45560824:217478 +h1,4342:26958376,45560824:0,0,0 +k1,4342:27556619,45560824:217479 +k1,4342:30513502,45560824:217478 +k1,4342:31835263,45560824:217479 +k1,4342:32583029,45560824:0 +) +] +(1,4344:32583029,45706769:0,0,0 +g1,4344:32583029,45706769 +) +) +] +(1,4344:6630773,47279633:25952256,0,0 +h1,4344:6630773,47279633:25952256,0,0 +) +] +h1,4344:4262630,4025873:0,0,0 +] +!23031 }80 -Input:514:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:515:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:516:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:517:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:518:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:519:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:520:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:521:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:522:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:523:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!861 +Input:510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 {81 -[1,4442:4262630,47279633:28320399,43253760,0 -(1,4442:4262630,4025873:0,0,0 -[1,4442:-473657,4025873:25952256,0,0 -(1,4442:-473657,-710414:25952256,0,0 -h1,4442:-473657,-710414:0,0,0 -(1,4442:-473657,-710414:0,0,0 -(1,4442:-473657,-710414:0,0,0 -g1,4442:-473657,-710414 -(1,4442:-473657,-710414:65781,0,65781 -g1,4442:-407876,-710414 -[1,4442:-407876,-644633:0,0,0 +[1,4448:4262630,47279633:28320399,43253760,0 +(1,4448:4262630,4025873:0,0,0 +[1,4448:-473657,4025873:25952256,0,0 +(1,4448:-473657,-710414:25952256,0,0 +h1,4448:-473657,-710414:0,0,0 +(1,4448:-473657,-710414:0,0,0 +(1,4448:-473657,-710414:0,0,0 +g1,4448:-473657,-710414 +(1,4448:-473657,-710414:65781,0,65781 +g1,4448:-407876,-710414 +[1,4448:-407876,-644633:0,0,0 ] ) -k1,4442:-473657,-710414:-65781 +k1,4448:-473657,-710414:-65781 ) ) -k1,4442:25478599,-710414:25952256 -g1,4442:25478599,-710414 +k1,4448:25478599,-710414:25952256 +g1,4448:25478599,-710414 ) ] ) -[1,4442:6630773,47279633:25952256,43253760,0 -[1,4442:6630773,4812305:25952256,786432,0 -(1,4442:6630773,4812305:25952256,505283,134348 -(1,4442:6630773,4812305:25952256,505283,134348 -g1,4442:3078558,4812305 -[1,4442:3078558,4812305:0,0,0 -(1,4442:3078558,2439708:0,1703936,0 -k1,4442:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4442:2537886,2439708:1179648,16384,0 +[1,4448:6630773,47279633:25952256,43253760,0 +[1,4448:6630773,4812305:25952256,786432,0 +(1,4448:6630773,4812305:25952256,505283,134348 +(1,4448:6630773,4812305:25952256,505283,134348 +g1,4448:3078558,4812305 +[1,4448:3078558,4812305:0,0,0 +(1,4448:3078558,2439708:0,1703936,0 +k1,4448:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4448:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4442:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4448:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4442:3078558,4812305:0,0,0 -(1,4442:3078558,2439708:0,1703936,0 -g1,4442:29030814,2439708 -g1,4442:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4442:36151628,1915420:16384,1179648,0 +[1,4448:3078558,4812305:0,0,0 +(1,4448:3078558,2439708:0,1703936,0 +g1,4448:29030814,2439708 +g1,4448:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4448:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4442:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4448:37855564,2439708:1179648,16384,0 ) ) -k1,4442:3078556,2439708:-34777008 +k1,4448:3078556,2439708:-34777008 ) ] -[1,4442:3078558,4812305:0,0,0 -(1,4442:3078558,49800853:0,16384,2228224 -k1,4442:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4442:2537886,49800853:1179648,16384,0 +[1,4448:3078558,4812305:0,0,0 +(1,4448:3078558,49800853:0,16384,2228224 +k1,4448:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4448:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4442:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4448:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4442:3078558,4812305:0,0,0 -(1,4442:3078558,49800853:0,16384,2228224 -g1,4442:29030814,49800853 -g1,4442:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4442:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4442:37855564,49800853:1179648,16384,0 -) -) -k1,4442:3078556,49800853:-34777008 -) -] -g1,4442:6630773,4812305 -k1,4442:19562994,4812305:12135303 -g1,4442:20949735,4812305 -g1,4442:21598541,4812305 -g1,4442:24912696,4812305 -g1,4442:27600327,4812305 -g1,4442:29010006,4812305 -) -) -] -[1,4442:6630773,45706769:25952256,40108032,0 -(1,4442:6630773,45706769:25952256,40108032,0 -(1,4442:6630773,45706769:0,0,0 -g1,4442:6630773,45706769 -) -[1,4442:6630773,45706769:25952256,40108032,0 -(1,4338:6630773,6254097:25952256,513147,134348 -k1,4336:9219849,6254097:183249 -k1,4336:10869793,6254097:183248 -k1,4336:11862412,6254097:183249 -k1,4336:13064745,6254097:183248 -k1,4336:16602782,6254097:183249 -k1,4336:18085610,6254097:183249 -k1,4336:19460303,6254097:183248 -k1,4336:22536967,6254097:183249 -k1,4336:24019795,6254097:183249 -k1,4336:24862335,6254097:183248 -k1,4336:25816287,6254097:183249 -k1,4336:29818973,6254097:183248 -k1,4337:31198909,6254097:183249 -k1,4337:32583029,6254097:0 -) -(1,4338:6630773,7095585:25952256,513147,134348 -k1,4337:8019447,7095585:255556 -k1,4337:11266722,7095585:255556 -k1,4337:12337546,7095585:255556 -k1,4337:16569172,7095585:255557 -k1,4337:17476156,7095585:255556 -k1,4337:19753498,7095585:255556 -k1,4337:20676210,7095585:255556 -(1,4337:20676210,7095585:0,459977,115847 -r1,4337:22089611,7095585:1413401,575824,115847 -k1,4337:20676210,7095585:-1413401 -) -(1,4337:20676210,7095585:1413401,459977,115847 -k1,4337:20676210,7095585:3277 -h1,4337:22086334,7095585:0,411205,112570 -) -k1,4337:22518837,7095585:255556 -k1,4337:24630373,7095585:255556 -k1,4337:25537358,7095585:255557 -k1,4337:26949624,7095585:255556 -k1,4337:29088029,7095585:255556 -k1,4337:31900144,7095585:255556 -k1,4337:32583029,7095585:0 -) -(1,4338:6630773,7937073:25952256,513147,126483 -k1,4337:10084739,7937073:261052 -k1,4337:12530106,7937073:261052 -k1,4337:13987844,7937073:261051 -k1,4337:15397087,7937073:261052 -k1,4337:18844499,7937073:261052 -k1,4337:19721589,7937073:261052 -k1,4337:21001725,7937073:261051 -k1,4337:23233445,7937073:261052 -k1,4337:25362928,7937073:261052 -k1,4337:27651664,7937073:261052 -k1,4337:28268575,7937073:261051 -k1,4337:31015408,7937073:261052 -k1,4337:32583029,7937073:0 -) -(1,4338:6630773,8778561:25952256,513147,134348 -k1,4337:8072190,8778561:284707 -k1,4337:10913456,8778561:284707 -k1,4337:11849591,8778561:284707 -k1,4337:14606972,8778561:284708 -k1,4337:15653207,8778561:284707 -k1,4337:17673307,8778561:284707 -k1,4337:20697419,8778561:284707 -k1,4337:21641418,8778561:284707 -k1,4337:22945210,8778561:284707 -k1,4337:24883390,8778561:284707 -k1,4337:26557461,8778561:284708 -k1,4337:28718464,8778561:284707 -k1,4337:30469867,8778561:284707 -k1,4337:31563944,8778561:284707 -k1,4337:32583029,8778561:0 -) -(1,4338:6630773,9620049:25952256,513147,134348 -g1,4337:8365511,9620049 -g1,4337:9864319,9620049 -g1,4337:11254993,9620049 -g1,4337:12528357,9620049 -g1,4337:14027165,9620049 -g1,4337:14885686,9620049 -g1,4337:16104000,9620049 -g1,4337:20122667,9620049 -g1,4337:20122667,9620049 -k1,4338:32583029,9620049:12460362 -g1,4338:32583029,9620049 -) -v1,4340:6630773,10810515:0,393216,0 -(1,4393:6630773,36578315:25952256,26161016,196608 -g1,4393:6630773,36578315 -g1,4393:6630773,36578315 -g1,4393:6434165,36578315 -(1,4393:6434165,36578315:0,26161016,196608 -r1,4393:32779637,36578315:26345472,26357624,196608 -k1,4393:6434165,36578315:-26345472 -) -(1,4393:6434165,36578315:26345472,26161016,196608 -[1,4393:6630773,36578315:25952256,25964408,0 -(1,4342:6630773,11024425:25952256,410518,82312 -(1,4341:6630773,11024425:0,0,0 -g1,4341:6630773,11024425 -g1,4341:6630773,11024425 -g1,4341:6303093,11024425 -(1,4341:6303093,11024425:0,0,0 -) -g1,4341:6630773,11024425 -) -k1,4342:6630773,11024425:0 -g1,4342:9159939,11024425 -g1,4342:10108377,11024425 -g1,4342:11056815,11024425 -h1,4342:11689106,11024425:0,0,0 -k1,4342:32583030,11024425:20893924 -g1,4342:32583030,11024425 -) -(1,4343:6630773,11690603:25952256,410518,6290 -h1,4343:6630773,11690603:0,0,0 -h1,4343:7895356,11690603:0,0,0 -k1,4343:32583028,11690603:24687672 -g1,4343:32583028,11690603 -) -(1,4353:6630773,12422317:25952256,388497,101187 -(1,4345:6630773,12422317:0,0,0 -g1,4345:6630773,12422317 -g1,4345:6630773,12422317 -g1,4345:6303093,12422317 -(1,4345:6303093,12422317:0,0,0 -) -g1,4345:6630773,12422317 -) -g1,4353:7579210,12422317 -g1,4353:7895356,12422317 -g1,4353:8211502,12422317 -g1,4353:8527648,12422317 -g1,4353:9159940,12422317 -g1,4353:9792232,12422317 -g1,4353:10108378,12422317 -g1,4353:10424524,12422317 -g1,4353:10740670,12422317 -g1,4353:11056816,12422317 -g1,4353:11689108,12422317 -g1,4353:12637545,12422317 -h1,4353:13269836,12422317:0,0,0 -k1,4353:32583028,12422317:19313192 -g1,4353:32583028,12422317 -) -(1,4353:6630773,13088495:25952256,404226,9436 -h1,4353:6630773,13088495:0,0,0 -g1,4353:7579210,13088495 -g1,4353:8211502,13088495 -g1,4353:9159939,13088495 -g1,4353:9792231,13088495 -g1,4353:10108377,13088495 -g1,4353:11689106,13088495 -g1,4353:12005252,13088495 -g1,4353:12637544,13088495 -g1,4353:12953690,13088495 -h1,4353:13269836,13088495:0,0,0 -k1,4353:32583028,13088495:19313192 -g1,4353:32583028,13088495 -) -(1,4353:6630773,13754673:25952256,404226,9436 -h1,4353:6630773,13754673:0,0,0 -g1,4353:7579210,13754673 -g1,4353:8211502,13754673 -g1,4353:8527648,13754673 -g1,4353:9159940,13754673 -g1,4353:9792232,13754673 -g1,4353:11689106,13754673 -g1,4353:12005252,13754673 -g1,4353:12637544,13754673 -g1,4353:12953690,13754673 -h1,4353:13269836,13754673:0,0,0 -k1,4353:32583028,13754673:19313192 -g1,4353:32583028,13754673 -) -(1,4353:6630773,14420851:25952256,404226,9436 -h1,4353:6630773,14420851:0,0,0 -g1,4353:7579210,14420851 -g1,4353:8211502,14420851 -g1,4353:8527648,14420851 -g1,4353:9159940,14420851 -g1,4353:9792232,14420851 -g1,4353:10108378,14420851 -g1,4353:11689107,14420851 -g1,4353:12005253,14420851 -g1,4353:12637545,14420851 -g1,4353:12953691,14420851 -h1,4353:13269837,14420851:0,0,0 -k1,4353:32583029,14420851:19313192 -g1,4353:32583029,14420851 -) -(1,4353:6630773,15087029:25952256,404226,9436 -h1,4353:6630773,15087029:0,0,0 -g1,4353:7579210,15087029 -g1,4353:8211502,15087029 -g1,4353:8527648,15087029 -g1,4353:9159940,15087029 -g1,4353:9792232,15087029 -g1,4353:11689106,15087029 -g1,4353:12005252,15087029 -g1,4353:12637544,15087029 -g1,4353:12953690,15087029 -h1,4353:13269836,15087029:0,0,0 -k1,4353:32583028,15087029:19313192 -g1,4353:32583028,15087029 -) -(1,4353:6630773,15753207:25952256,404226,9436 -h1,4353:6630773,15753207:0,0,0 -g1,4353:7579210,15753207 -g1,4353:8211502,15753207 -g1,4353:8527648,15753207 -g1,4353:9159940,15753207 -g1,4353:9792232,15753207 -g1,4353:10108378,15753207 -g1,4353:11689107,15753207 -g1,4353:12005253,15753207 -g1,4353:12637545,15753207 -g1,4353:12953691,15753207 -h1,4353:13269837,15753207:0,0,0 -k1,4353:32583029,15753207:19313192 -g1,4353:32583029,15753207 -) -(1,4353:6630773,16419385:25952256,404226,9436 -h1,4353:6630773,16419385:0,0,0 -g1,4353:7579210,16419385 -g1,4353:8211502,16419385 -g1,4353:8527648,16419385 -g1,4353:9159940,16419385 -g1,4353:9792232,16419385 -g1,4353:11689106,16419385 -g1,4353:12005252,16419385 -g1,4353:12637544,16419385 -g1,4353:12953690,16419385 -h1,4353:13269836,16419385:0,0,0 -k1,4353:32583028,16419385:19313192 -g1,4353:32583028,16419385 -) -(1,4355:6630773,17740923:25952256,410518,82312 -(1,4354:6630773,17740923:0,0,0 -g1,4354:6630773,17740923 -g1,4354:6630773,17740923 -g1,4354:6303093,17740923 -(1,4354:6303093,17740923:0,0,0 -) -g1,4354:6630773,17740923 -) -g1,4355:8527647,17740923 -g1,4355:9159939,17740923 -g1,4355:10108377,17740923 -g1,4355:11056815,17740923 -k1,4355:11056815,17740923:0 -h1,4355:12005252,17740923:0,0,0 -k1,4355:32583028,17740923:20577776 -g1,4355:32583028,17740923 -) -(1,4356:6630773,18407101:25952256,410518,6290 -h1,4356:6630773,18407101:0,0,0 -h1,4356:7895356,18407101:0,0,0 -k1,4356:32583028,18407101:24687672 -g1,4356:32583028,18407101 -) -(1,4366:6630773,19138815:25952256,388497,101187 -(1,4358:6630773,19138815:0,0,0 -g1,4358:6630773,19138815 -g1,4358:6630773,19138815 -g1,4358:6303093,19138815 -(1,4358:6303093,19138815:0,0,0 -) -g1,4358:6630773,19138815 -) -g1,4366:7579210,19138815 -g1,4366:7895356,19138815 -g1,4366:8211502,19138815 -g1,4366:8527648,19138815 -g1,4366:8843794,19138815 -g1,4366:9476086,19138815 -g1,4366:10108378,19138815 -g1,4366:10424524,19138815 -g1,4366:10740670,19138815 -g1,4366:11056816,19138815 -g1,4366:11372962,19138815 -g1,4366:12005254,19138815 -g1,4366:12953691,19138815 -h1,4366:13585982,19138815:0,0,0 -k1,4366:32583030,19138815:18997048 -g1,4366:32583030,19138815 -) -(1,4366:6630773,19804993:25952256,404226,9436 -h1,4366:6630773,19804993:0,0,0 -g1,4366:7579210,19804993 -g1,4366:8211502,19804993 -g1,4366:9476085,19804993 -g1,4366:10108377,19804993 -g1,4366:10424523,19804993 -g1,4366:12005252,19804993 -g1,4366:12321398,19804993 -g1,4366:12953690,19804993 -g1,4366:13269836,19804993 -h1,4366:13585982,19804993:0,0,0 -k1,4366:32583030,19804993:18997048 -g1,4366:32583030,19804993 -) -(1,4366:6630773,20471171:25952256,404226,9436 -h1,4366:6630773,20471171:0,0,0 -g1,4366:7579210,20471171 -g1,4366:8211502,20471171 -g1,4366:9476085,20471171 -g1,4366:10108377,20471171 -g1,4366:12005251,20471171 -g1,4366:12321397,20471171 -g1,4366:12953689,20471171 -g1,4366:13269835,20471171 -h1,4366:13585981,20471171:0,0,0 -k1,4366:32583029,20471171:18997048 -g1,4366:32583029,20471171 -) -(1,4366:6630773,21137349:25952256,404226,9436 -h1,4366:6630773,21137349:0,0,0 -g1,4366:7579210,21137349 -g1,4366:8211502,21137349 -g1,4366:9476085,21137349 -g1,4366:10108377,21137349 -g1,4366:10424523,21137349 -g1,4366:12005252,21137349 -g1,4366:12321398,21137349 -g1,4366:12953690,21137349 -g1,4366:13269836,21137349 -h1,4366:13585982,21137349:0,0,0 -k1,4366:32583030,21137349:18997048 -g1,4366:32583030,21137349 -) -(1,4366:6630773,21803527:25952256,404226,9436 -h1,4366:6630773,21803527:0,0,0 -g1,4366:7579210,21803527 -g1,4366:8211502,21803527 -g1,4366:9476085,21803527 -g1,4366:10108377,21803527 -g1,4366:12005251,21803527 -g1,4366:12321397,21803527 -g1,4366:12953689,21803527 -g1,4366:13269835,21803527 -h1,4366:13585981,21803527:0,0,0 -k1,4366:32583029,21803527:18997048 -g1,4366:32583029,21803527 -) -(1,4366:6630773,22469705:25952256,404226,9436 -h1,4366:6630773,22469705:0,0,0 -g1,4366:7579210,22469705 -g1,4366:8211502,22469705 -g1,4366:9476085,22469705 -g1,4366:10108377,22469705 -g1,4366:10424523,22469705 -g1,4366:12005252,22469705 -g1,4366:12321398,22469705 -g1,4366:12953690,22469705 -g1,4366:13269836,22469705 -h1,4366:13585982,22469705:0,0,0 -k1,4366:32583030,22469705:18997048 -g1,4366:32583030,22469705 -) -(1,4366:6630773,23135883:25952256,404226,9436 -h1,4366:6630773,23135883:0,0,0 -g1,4366:7579210,23135883 -g1,4366:8211502,23135883 -g1,4366:9476085,23135883 -g1,4366:10108377,23135883 -g1,4366:12005251,23135883 -g1,4366:12321397,23135883 -g1,4366:12953689,23135883 -g1,4366:13269835,23135883 -h1,4366:13585981,23135883:0,0,0 -k1,4366:32583029,23135883:18997048 -g1,4366:32583029,23135883 -) -(1,4368:6630773,24457421:25952256,410518,76021 -(1,4367:6630773,24457421:0,0,0 -g1,4367:6630773,24457421 -g1,4367:6630773,24457421 -g1,4367:6303093,24457421 -(1,4367:6303093,24457421:0,0,0 -) -g1,4367:6630773,24457421 -) -g1,4368:10424521,24457421 -g1,4368:11372959,24457421 -h1,4368:12321396,24457421:0,0,0 -k1,4368:32583028,24457421:20261632 -g1,4368:32583028,24457421 -) -(1,4369:6630773,25123599:25952256,410518,6290 -h1,4369:6630773,25123599:0,0,0 -h1,4369:7895356,25123599:0,0,0 -k1,4369:32583028,25123599:24687672 -g1,4369:32583028,25123599 -) -(1,4379:6630773,25855313:25952256,388497,101187 -(1,4371:6630773,25855313:0,0,0 -g1,4371:6630773,25855313 -g1,4371:6630773,25855313 -g1,4371:6303093,25855313 -(1,4371:6303093,25855313:0,0,0 -) -g1,4371:6630773,25855313 -) -g1,4379:7579210,25855313 -g1,4379:7895356,25855313 -g1,4379:8211502,25855313 -g1,4379:8527648,25855313 -g1,4379:8843794,25855313 -g1,4379:9476086,25855313 -g1,4379:10108378,25855313 -g1,4379:10424524,25855313 -g1,4379:10740670,25855313 -g1,4379:11056816,25855313 -g1,4379:11372962,25855313 -g1,4379:12005254,25855313 -g1,4379:12953691,25855313 -h1,4379:13585982,25855313:0,0,0 -k1,4379:32583030,25855313:18997048 -g1,4379:32583030,25855313 -) -(1,4379:6630773,26521491:25952256,404226,9436 -h1,4379:6630773,26521491:0,0,0 -g1,4379:7579210,26521491 -g1,4379:8211502,26521491 -g1,4379:9476085,26521491 -g1,4379:10108377,26521491 -g1,4379:10424523,26521491 -g1,4379:12005252,26521491 -g1,4379:12321398,26521491 -g1,4379:12953690,26521491 -g1,4379:13269836,26521491 -h1,4379:13585982,26521491:0,0,0 -k1,4379:32583030,26521491:18997048 -g1,4379:32583030,26521491 -) -(1,4379:6630773,27187669:25952256,404226,9436 -h1,4379:6630773,27187669:0,0,0 -g1,4379:7579210,27187669 -g1,4379:8211502,27187669 -g1,4379:9476085,27187669 -g1,4379:10108377,27187669 -g1,4379:12005251,27187669 -g1,4379:12321397,27187669 -g1,4379:12953689,27187669 -g1,4379:13269835,27187669 -h1,4379:13585981,27187669:0,0,0 -k1,4379:32583029,27187669:18997048 -g1,4379:32583029,27187669 -) -(1,4379:6630773,27853847:25952256,404226,9436 -h1,4379:6630773,27853847:0,0,0 -g1,4379:7579210,27853847 -g1,4379:8211502,27853847 -g1,4379:9476085,27853847 -g1,4379:10108377,27853847 -g1,4379:10424523,27853847 -g1,4379:12005252,27853847 -g1,4379:12321398,27853847 -g1,4379:12953690,27853847 -g1,4379:13269836,27853847 -h1,4379:13585982,27853847:0,0,0 -k1,4379:32583030,27853847:18997048 -g1,4379:32583030,27853847 -) -(1,4379:6630773,28520025:25952256,404226,9436 -h1,4379:6630773,28520025:0,0,0 -g1,4379:7579210,28520025 -g1,4379:8211502,28520025 -g1,4379:9476085,28520025 -g1,4379:10108377,28520025 -g1,4379:12005251,28520025 -g1,4379:12321397,28520025 -g1,4379:12953689,28520025 -g1,4379:13269835,28520025 -h1,4379:13585981,28520025:0,0,0 -k1,4379:32583029,28520025:18997048 -g1,4379:32583029,28520025 -) -(1,4379:6630773,29186203:25952256,404226,9436 -h1,4379:6630773,29186203:0,0,0 -g1,4379:7579210,29186203 -g1,4379:8211502,29186203 -g1,4379:9476085,29186203 -g1,4379:10108377,29186203 -g1,4379:10424523,29186203 -g1,4379:12005252,29186203 -g1,4379:12321398,29186203 -g1,4379:12953690,29186203 -g1,4379:13269836,29186203 -h1,4379:13585982,29186203:0,0,0 -k1,4379:32583030,29186203:18997048 -g1,4379:32583030,29186203 -) -(1,4379:6630773,29852381:25952256,404226,9436 -h1,4379:6630773,29852381:0,0,0 -g1,4379:7579210,29852381 -g1,4379:8211502,29852381 -g1,4379:9476085,29852381 -g1,4379:10108377,29852381 -g1,4379:12005251,29852381 -g1,4379:12321397,29852381 -g1,4379:12953689,29852381 -g1,4379:13269835,29852381 -h1,4379:13585981,29852381:0,0,0 -k1,4379:32583029,29852381:18997048 -g1,4379:32583029,29852381 -) -(1,4381:6630773,31173919:25952256,410518,82312 -(1,4380:6630773,31173919:0,0,0 -g1,4380:6630773,31173919 -g1,4380:6630773,31173919 -g1,4380:6303093,31173919 -(1,4380:6303093,31173919:0,0,0 -) -g1,4380:6630773,31173919 -) -k1,4381:6630773,31173919:0 -g1,4381:9159939,31173919 -g1,4381:10108377,31173919 -g1,4381:11056815,31173919 -g1,4381:13585981,31173919 -h1,4381:14218273,31173919:0,0,0 -k1,4381:32583029,31173919:18364756 -g1,4381:32583029,31173919 -) -(1,4382:6630773,31840097:25952256,410518,6290 -h1,4382:6630773,31840097:0,0,0 -h1,4382:7895356,31840097:0,0,0 -k1,4382:32583028,31840097:24687672 -g1,4382:32583028,31840097 -) -(1,4392:6630773,32571811:25952256,388497,101187 -(1,4384:6630773,32571811:0,0,0 -g1,4384:6630773,32571811 -g1,4384:6630773,32571811 -g1,4384:6303093,32571811 -(1,4384:6303093,32571811:0,0,0 -) -g1,4384:6630773,32571811 -) -g1,4392:7579210,32571811 -g1,4392:7895356,32571811 -g1,4392:8211502,32571811 -g1,4392:8527648,32571811 -g1,4392:8843794,32571811 -g1,4392:9476086,32571811 -g1,4392:10108378,32571811 -g1,4392:10424524,32571811 -g1,4392:10740670,32571811 -g1,4392:11056816,32571811 -g1,4392:11372962,32571811 -g1,4392:12005254,32571811 -g1,4392:12953691,32571811 -h1,4392:13585982,32571811:0,0,0 -k1,4392:32583030,32571811:18997048 -g1,4392:32583030,32571811 -) -(1,4392:6630773,33237989:25952256,404226,9436 -h1,4392:6630773,33237989:0,0,0 -g1,4392:7579210,33237989 -g1,4392:8211502,33237989 -g1,4392:8527648,33237989 -g1,4392:8843794,33237989 -g1,4392:9476086,33237989 -g1,4392:10108378,33237989 -g1,4392:10424524,33237989 -g1,4392:12005253,33237989 -g1,4392:12321399,33237989 -g1,4392:12953691,33237989 -g1,4392:13269837,33237989 -h1,4392:13585983,33237989:0,0,0 -k1,4392:32583029,33237989:18997046 -g1,4392:32583029,33237989 -) -(1,4392:6630773,33904167:25952256,404226,9436 -h1,4392:6630773,33904167:0,0,0 -g1,4392:7579210,33904167 -g1,4392:8211502,33904167 -g1,4392:9476085,33904167 -g1,4392:10108377,33904167 -g1,4392:12005251,33904167 -g1,4392:12321397,33904167 -g1,4392:12953689,33904167 -g1,4392:13269835,33904167 -h1,4392:13585981,33904167:0,0,0 -k1,4392:32583029,33904167:18997048 -g1,4392:32583029,33904167 -) -(1,4392:6630773,34570345:25952256,404226,9436 -h1,4392:6630773,34570345:0,0,0 -g1,4392:7579210,34570345 -g1,4392:8211502,34570345 -g1,4392:9476085,34570345 -g1,4392:10108377,34570345 -g1,4392:10424523,34570345 -g1,4392:12005252,34570345 -g1,4392:12321398,34570345 -g1,4392:12953690,34570345 -g1,4392:13269836,34570345 -h1,4392:13585982,34570345:0,0,0 -k1,4392:32583030,34570345:18997048 -g1,4392:32583030,34570345 -) -(1,4392:6630773,35236523:25952256,404226,9436 -h1,4392:6630773,35236523:0,0,0 -g1,4392:7579210,35236523 -g1,4392:8211502,35236523 -g1,4392:9476085,35236523 -g1,4392:10108377,35236523 -g1,4392:12005251,35236523 -g1,4392:12321397,35236523 -g1,4392:12953689,35236523 -g1,4392:13269835,35236523 -h1,4392:13585981,35236523:0,0,0 -k1,4392:32583029,35236523:18997048 -g1,4392:32583029,35236523 -) -(1,4392:6630773,35902701:25952256,404226,9436 -h1,4392:6630773,35902701:0,0,0 -g1,4392:7579210,35902701 -g1,4392:8211502,35902701 -g1,4392:9476085,35902701 -g1,4392:10108377,35902701 -g1,4392:10424523,35902701 -g1,4392:12005252,35902701 -g1,4392:12321398,35902701 -g1,4392:12953690,35902701 -g1,4392:13269836,35902701 -h1,4392:13585982,35902701:0,0,0 -k1,4392:32583030,35902701:18997048 -g1,4392:32583030,35902701 -) -(1,4392:6630773,36568879:25952256,404226,9436 -h1,4392:6630773,36568879:0,0,0 -g1,4392:7579210,36568879 -g1,4392:8211502,36568879 -g1,4392:9476085,36568879 -g1,4392:10108377,36568879 -g1,4392:12005251,36568879 -g1,4392:12321397,36568879 -g1,4392:12953689,36568879 -g1,4392:13269835,36568879 -h1,4392:13585981,36568879:0,0,0 -k1,4392:32583029,36568879:18997048 -g1,4392:32583029,36568879 -) -] -) -g1,4393:32583029,36578315 -g1,4393:6630773,36578315 -g1,4393:6630773,36578315 -g1,4393:32583029,36578315 -g1,4393:32583029,36578315 -) -h1,4393:6630773,36774923:0,0,0 -v1,4397:6630773,38664987:0,393216,0 -(1,4442:6630773,43465780:25952256,5194009,589824 -g1,4442:6630773,43465780 -(1,4442:6630773,43465780:25952256,5194009,589824 -(1,4442:6630773,44055604:25952256,5783833,0 -[1,4442:6630773,44055604:25952256,5783833,0 -(1,4442:6630773,44055604:25952256,5757619,0 -r1,4442:6656987,44055604:26214,5757619,0 -[1,4442:6656987,44055604:25899828,5757619,0 -(1,4442:6656987,43465780:25899828,4577971,0 -[1,4442:7246811,43465780:24720180,4577971,0 -(1,4398:7246811,39973345:24720180,1085536,298548 -(1,4397:7246811,39973345:0,1085536,298548 -r1,4442:8753226,39973345:1506415,1384084,298548 -k1,4397:7246811,39973345:-1506415 -) -(1,4397:7246811,39973345:1506415,1085536,298548 -) -k1,4397:8933318,39973345:180092 -k1,4397:10066960,39973345:180093 -k1,4397:13664755,39973345:180092 -k1,4397:15700172,39973345:180093 -k1,4397:17164770,39973345:180092 -k1,4397:20084267,39973345:180092 -k1,4397:21025888,39973345:180093 -k1,4397:22943995,39973345:180092 -k1,4397:24228369,39973345:180092 -k1,4397:25156228,39973345:180093 -k1,4397:26913772,39973345:180092 -k1,4397:28949845,39973345:180093 -k1,4397:30523888,39973345:180092 -k1,4398:31966991,39973345:0 -) -(1,4398:7246811,40814833:24720180,513147,126483 -k1,4397:8418666,40814833:218962 -k1,4397:10778690,40814833:218963 -k1,4397:13876649,40814833:218962 -(1,4397:13876649,40814833:0,452978,115847 -r1,4442:15290050,40814833:1413401,568825,115847 -k1,4397:13876649,40814833:-1413401 -) -(1,4397:13876649,40814833:1413401,452978,115847 -k1,4397:13876649,40814833:3277 -h1,4397:15286773,40814833:0,411205,112570 -) -k1,4397:15682682,40814833:218962 -k1,4397:16584530,40814833:218963 -k1,4397:18197443,40814833:218962 -(1,4397:18197443,40814833:0,459977,115847 -r1,4442:18555709,40814833:358266,575824,115847 -k1,4397:18197443,40814833:-358266 -) -(1,4397:18197443,40814833:358266,459977,115847 -k1,4397:18197443,40814833:3277 -h1,4397:18552432,40814833:0,411205,112570 -) -k1,4397:18948341,40814833:218962 -k1,4397:19795139,40814833:218963 -k1,4397:21033186,40814833:218962 -k1,4397:22558281,40814833:218962 -k1,4397:24144325,40814833:218963 -k1,4397:25382372,40814833:218962 -k1,4397:27339349,40814833:218962 -k1,4397:28217604,40814833:218963 -k1,4397:29455651,40814833:218962 -k1,4397:31966991,40814833:0 -) -(1,4398:7246811,41656321:24720180,505283,134348 -k1,4397:8142735,41656321:213039 -k1,4397:10738663,41656321:213039 -k1,4397:11483199,41656321:213039 -k1,4397:13390999,41656321:213039 -k1,4397:14290200,41656321:213039 -k1,4397:14859099,41656321:213039 -k1,4397:18046817,41656321:213039 -k1,4397:20299335,41656321:213038 -k1,4397:23306174,41656321:213039 -k1,4397:24135251,41656321:213039 -k1,4397:27442245,41656321:213039 -k1,4397:29816006,41656321:213039 -k1,4397:30711930,41656321:213039 -k1,4397:31611131,41656321:213039 -k1,4397:31966991,41656321:0 -) -(1,4398:7246811,42497809:24720180,505283,134348 -k1,4397:9908244,42497809:150093 -k1,4397:11452288,42497809:150093 -k1,4397:13384959,42497809:150092 -(1,4397:13384959,42497809:0,452978,115847 -r1,4442:16556919,42497809:3171960,568825,115847 -k1,4397:13384959,42497809:-3171960 -) -(1,4397:13384959,42497809:3171960,452978,115847 -k1,4397:13384959,42497809:3277 -h1,4397:16553642,42497809:0,411205,112570 -) -k1,4397:16880682,42497809:150093 -k1,4397:18814010,42497809:150093 -k1,4397:20699496,42497809:150093 -(1,4397:20699496,42497809:0,459977,115847 -r1,4442:21057762,42497809:358266,575824,115847 -k1,4397:20699496,42497809:-358266 -) -(1,4397:20699496,42497809:358266,459977,115847 -k1,4397:20699496,42497809:3277 -h1,4397:21054485,42497809:0,411205,112570 -) -k1,4397:21381524,42497809:150092 -k1,4397:22550702,42497809:150093 -k1,4397:24438810,42497809:150093 -k1,4397:25120400,42497809:150093 -k1,4397:27693358,42497809:150092 -k1,4397:28529613,42497809:150093 -k1,4397:29035566,42497809:150093 -k1,4397:31966991,42497809:0 -) -(1,4398:7246811,43339297:24720180,505283,126483 -g1,4397:9906262,43339297 -g1,4397:13199446,43339297 -g1,4397:15559397,43339297 -g1,4397:16950071,43339297 -g1,4397:19319852,43339297 -g1,4397:20266847,43339297 -g1,4397:20821936,43339297 -k1,4398:31966991,43339297:8460045 -g1,4398:31966991,43339297 -) -] -) -] -r1,4442:32583029,44055604:26214,5757619,0 -) -] -) -) -g1,4442:32583029,43465780 -) -] -(1,4442:32583029,45706769:0,0,0 -g1,4442:32583029,45706769 -) +[1,4448:3078558,4812305:0,0,0 +(1,4448:3078558,49800853:0,16384,2228224 +g1,4448:29030814,49800853 +g1,4448:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4448:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4448:37855564,49800853:1179648,16384,0 +) +) +k1,4448:3078556,49800853:-34777008 +) +] +g1,4448:6630773,4812305 +k1,4448:19515153,4812305:12087462 +g1,4448:20901894,4812305 +g1,4448:21550700,4812305 +g1,4448:24864855,4812305 +g1,4448:27600327,4812305 +g1,4448:29010006,4812305 +) +) +] +[1,4448:6630773,45706769:25952256,40108032,0 +(1,4448:6630773,45706769:25952256,40108032,0 +(1,4448:6630773,45706769:0,0,0 +g1,4448:6630773,45706769 +) +[1,4448:6630773,45706769:25952256,40108032,0 +(1,4344:6630773,6254097:25952256,513147,134348 +k1,4342:9219849,6254097:183249 +k1,4342:10869793,6254097:183248 +k1,4342:11862412,6254097:183249 +k1,4342:13064745,6254097:183248 +k1,4342:16602782,6254097:183249 +k1,4342:18085610,6254097:183249 +k1,4342:19460303,6254097:183248 +k1,4342:22536967,6254097:183249 +k1,4342:24019795,6254097:183249 +k1,4342:24862335,6254097:183248 +k1,4342:25816287,6254097:183249 +k1,4342:29818973,6254097:183248 +k1,4343:31198909,6254097:183249 +k1,4343:32583029,6254097:0 +) +(1,4344:6630773,7095585:25952256,513147,134348 +k1,4343:8019447,7095585:255556 +k1,4343:11266722,7095585:255556 +k1,4343:12337546,7095585:255556 +k1,4343:16569172,7095585:255557 +k1,4343:17476156,7095585:255556 +k1,4343:19753498,7095585:255556 +k1,4343:20676210,7095585:255556 +(1,4343:20676210,7095585:0,459977,115847 +r1,4343:22089611,7095585:1413401,575824,115847 +k1,4343:20676210,7095585:-1413401 +) +(1,4343:20676210,7095585:1413401,459977,115847 +k1,4343:20676210,7095585:3277 +h1,4343:22086334,7095585:0,411205,112570 +) +k1,4343:22518837,7095585:255556 +k1,4343:24630373,7095585:255556 +k1,4343:25537358,7095585:255557 +k1,4343:26949624,7095585:255556 +k1,4343:29088029,7095585:255556 +k1,4343:31900144,7095585:255556 +k1,4343:32583029,7095585:0 +) +(1,4344:6630773,7937073:25952256,513147,126483 +k1,4343:10084739,7937073:261052 +k1,4343:12530106,7937073:261052 +k1,4343:13987844,7937073:261051 +k1,4343:15397087,7937073:261052 +k1,4343:18844499,7937073:261052 +k1,4343:19721589,7937073:261052 +k1,4343:21001725,7937073:261051 +k1,4343:23233445,7937073:261052 +k1,4343:25362928,7937073:261052 +k1,4343:27651664,7937073:261052 +k1,4343:28268575,7937073:261051 +k1,4343:31015408,7937073:261052 +k1,4343:32583029,7937073:0 +) +(1,4344:6630773,8778561:25952256,513147,134348 +k1,4343:8072190,8778561:284707 +k1,4343:10913456,8778561:284707 +k1,4343:11849591,8778561:284707 +k1,4343:14606972,8778561:284708 +k1,4343:15653207,8778561:284707 +k1,4343:17673307,8778561:284707 +k1,4343:20697419,8778561:284707 +k1,4343:21641418,8778561:284707 +k1,4343:22945210,8778561:284707 +k1,4343:24883390,8778561:284707 +k1,4343:26557461,8778561:284708 +k1,4343:28718464,8778561:284707 +k1,4343:30469867,8778561:284707 +k1,4343:31563944,8778561:284707 +k1,4343:32583029,8778561:0 +) +(1,4344:6630773,9620049:25952256,513147,134348 +g1,4343:8365511,9620049 +g1,4343:9864319,9620049 +g1,4343:11254993,9620049 +g1,4343:12528357,9620049 +g1,4343:14027165,9620049 +g1,4343:14885686,9620049 +g1,4343:16104000,9620049 +g1,4343:20122667,9620049 +g1,4343:20122667,9620049 +k1,4344:32583029,9620049:12460362 +g1,4344:32583029,9620049 +) +v1,4346:6630773,10810515:0,393216,0 +(1,4399:6630773,36578315:25952256,26161016,196608 +g1,4399:6630773,36578315 +g1,4399:6630773,36578315 +g1,4399:6434165,36578315 +(1,4399:6434165,36578315:0,26161016,196608 +r1,4399:32779637,36578315:26345472,26357624,196608 +k1,4399:6434165,36578315:-26345472 +) +(1,4399:6434165,36578315:26345472,26161016,196608 +[1,4399:6630773,36578315:25952256,25964408,0 +(1,4348:6630773,11024425:25952256,410518,82312 +(1,4347:6630773,11024425:0,0,0 +g1,4347:6630773,11024425 +g1,4347:6630773,11024425 +g1,4347:6303093,11024425 +(1,4347:6303093,11024425:0,0,0 +) +g1,4347:6630773,11024425 +) +k1,4348:6630773,11024425:0 +g1,4348:9159939,11024425 +g1,4348:10108377,11024425 +g1,4348:11056815,11024425 +h1,4348:11689106,11024425:0,0,0 +k1,4348:32583030,11024425:20893924 +g1,4348:32583030,11024425 +) +(1,4349:6630773,11690603:25952256,410518,6290 +h1,4349:6630773,11690603:0,0,0 +h1,4349:7895356,11690603:0,0,0 +k1,4349:32583028,11690603:24687672 +g1,4349:32583028,11690603 +) +(1,4359:6630773,12422317:25952256,388497,101187 +(1,4351:6630773,12422317:0,0,0 +g1,4351:6630773,12422317 +g1,4351:6630773,12422317 +g1,4351:6303093,12422317 +(1,4351:6303093,12422317:0,0,0 +) +g1,4351:6630773,12422317 +) +g1,4359:7579210,12422317 +g1,4359:7895356,12422317 +g1,4359:8211502,12422317 +g1,4359:8527648,12422317 +g1,4359:9159940,12422317 +g1,4359:9792232,12422317 +g1,4359:10108378,12422317 +g1,4359:10424524,12422317 +g1,4359:10740670,12422317 +g1,4359:11056816,12422317 +g1,4359:11689108,12422317 +g1,4359:12637545,12422317 +h1,4359:13269836,12422317:0,0,0 +k1,4359:32583028,12422317:19313192 +g1,4359:32583028,12422317 +) +(1,4359:6630773,13088495:25952256,404226,9436 +h1,4359:6630773,13088495:0,0,0 +g1,4359:7579210,13088495 +g1,4359:8211502,13088495 +g1,4359:9159939,13088495 +g1,4359:9792231,13088495 +g1,4359:10108377,13088495 +g1,4359:11689106,13088495 +g1,4359:12005252,13088495 +g1,4359:12637544,13088495 +g1,4359:12953690,13088495 +h1,4359:13269836,13088495:0,0,0 +k1,4359:32583028,13088495:19313192 +g1,4359:32583028,13088495 +) +(1,4359:6630773,13754673:25952256,404226,9436 +h1,4359:6630773,13754673:0,0,0 +g1,4359:7579210,13754673 +g1,4359:8211502,13754673 +g1,4359:8527648,13754673 +g1,4359:9159940,13754673 +g1,4359:9792232,13754673 +g1,4359:11689106,13754673 +g1,4359:12005252,13754673 +g1,4359:12637544,13754673 +g1,4359:12953690,13754673 +h1,4359:13269836,13754673:0,0,0 +k1,4359:32583028,13754673:19313192 +g1,4359:32583028,13754673 +) +(1,4359:6630773,14420851:25952256,404226,9436 +h1,4359:6630773,14420851:0,0,0 +g1,4359:7579210,14420851 +g1,4359:8211502,14420851 +g1,4359:8527648,14420851 +g1,4359:9159940,14420851 +g1,4359:9792232,14420851 +g1,4359:10108378,14420851 +g1,4359:11689107,14420851 +g1,4359:12005253,14420851 +g1,4359:12637545,14420851 +g1,4359:12953691,14420851 +h1,4359:13269837,14420851:0,0,0 +k1,4359:32583029,14420851:19313192 +g1,4359:32583029,14420851 +) +(1,4359:6630773,15087029:25952256,404226,9436 +h1,4359:6630773,15087029:0,0,0 +g1,4359:7579210,15087029 +g1,4359:8211502,15087029 +g1,4359:8527648,15087029 +g1,4359:9159940,15087029 +g1,4359:9792232,15087029 +g1,4359:11689106,15087029 +g1,4359:12005252,15087029 +g1,4359:12637544,15087029 +g1,4359:12953690,15087029 +h1,4359:13269836,15087029:0,0,0 +k1,4359:32583028,15087029:19313192 +g1,4359:32583028,15087029 +) +(1,4359:6630773,15753207:25952256,404226,9436 +h1,4359:6630773,15753207:0,0,0 +g1,4359:7579210,15753207 +g1,4359:8211502,15753207 +g1,4359:8527648,15753207 +g1,4359:9159940,15753207 +g1,4359:9792232,15753207 +g1,4359:10108378,15753207 +g1,4359:11689107,15753207 +g1,4359:12005253,15753207 +g1,4359:12637545,15753207 +g1,4359:12953691,15753207 +h1,4359:13269837,15753207:0,0,0 +k1,4359:32583029,15753207:19313192 +g1,4359:32583029,15753207 +) +(1,4359:6630773,16419385:25952256,404226,9436 +h1,4359:6630773,16419385:0,0,0 +g1,4359:7579210,16419385 +g1,4359:8211502,16419385 +g1,4359:8527648,16419385 +g1,4359:9159940,16419385 +g1,4359:9792232,16419385 +g1,4359:11689106,16419385 +g1,4359:12005252,16419385 +g1,4359:12637544,16419385 +g1,4359:12953690,16419385 +h1,4359:13269836,16419385:0,0,0 +k1,4359:32583028,16419385:19313192 +g1,4359:32583028,16419385 +) +(1,4361:6630773,17740923:25952256,410518,82312 +(1,4360:6630773,17740923:0,0,0 +g1,4360:6630773,17740923 +g1,4360:6630773,17740923 +g1,4360:6303093,17740923 +(1,4360:6303093,17740923:0,0,0 +) +g1,4360:6630773,17740923 +) +g1,4361:8527647,17740923 +g1,4361:9159939,17740923 +g1,4361:10108377,17740923 +g1,4361:11056815,17740923 +k1,4361:11056815,17740923:0 +h1,4361:12005252,17740923:0,0,0 +k1,4361:32583028,17740923:20577776 +g1,4361:32583028,17740923 +) +(1,4362:6630773,18407101:25952256,410518,6290 +h1,4362:6630773,18407101:0,0,0 +h1,4362:7895356,18407101:0,0,0 +k1,4362:32583028,18407101:24687672 +g1,4362:32583028,18407101 +) +(1,4372:6630773,19138815:25952256,388497,101187 +(1,4364:6630773,19138815:0,0,0 +g1,4364:6630773,19138815 +g1,4364:6630773,19138815 +g1,4364:6303093,19138815 +(1,4364:6303093,19138815:0,0,0 +) +g1,4364:6630773,19138815 +) +g1,4372:7579210,19138815 +g1,4372:7895356,19138815 +g1,4372:8211502,19138815 +g1,4372:8527648,19138815 +g1,4372:8843794,19138815 +g1,4372:9476086,19138815 +g1,4372:10108378,19138815 +g1,4372:10424524,19138815 +g1,4372:10740670,19138815 +g1,4372:11056816,19138815 +g1,4372:11372962,19138815 +g1,4372:12005254,19138815 +g1,4372:12953691,19138815 +h1,4372:13585982,19138815:0,0,0 +k1,4372:32583030,19138815:18997048 +g1,4372:32583030,19138815 +) +(1,4372:6630773,19804993:25952256,404226,9436 +h1,4372:6630773,19804993:0,0,0 +g1,4372:7579210,19804993 +g1,4372:8211502,19804993 +g1,4372:9476085,19804993 +g1,4372:10108377,19804993 +g1,4372:10424523,19804993 +g1,4372:12005252,19804993 +g1,4372:12321398,19804993 +g1,4372:12953690,19804993 +g1,4372:13269836,19804993 +h1,4372:13585982,19804993:0,0,0 +k1,4372:32583030,19804993:18997048 +g1,4372:32583030,19804993 +) +(1,4372:6630773,20471171:25952256,404226,9436 +h1,4372:6630773,20471171:0,0,0 +g1,4372:7579210,20471171 +g1,4372:8211502,20471171 +g1,4372:9476085,20471171 +g1,4372:10108377,20471171 +g1,4372:12005251,20471171 +g1,4372:12321397,20471171 +g1,4372:12953689,20471171 +g1,4372:13269835,20471171 +h1,4372:13585981,20471171:0,0,0 +k1,4372:32583029,20471171:18997048 +g1,4372:32583029,20471171 +) +(1,4372:6630773,21137349:25952256,404226,9436 +h1,4372:6630773,21137349:0,0,0 +g1,4372:7579210,21137349 +g1,4372:8211502,21137349 +g1,4372:9476085,21137349 +g1,4372:10108377,21137349 +g1,4372:10424523,21137349 +g1,4372:12005252,21137349 +g1,4372:12321398,21137349 +g1,4372:12953690,21137349 +g1,4372:13269836,21137349 +h1,4372:13585982,21137349:0,0,0 +k1,4372:32583030,21137349:18997048 +g1,4372:32583030,21137349 +) +(1,4372:6630773,21803527:25952256,404226,9436 +h1,4372:6630773,21803527:0,0,0 +g1,4372:7579210,21803527 +g1,4372:8211502,21803527 +g1,4372:9476085,21803527 +g1,4372:10108377,21803527 +g1,4372:12005251,21803527 +g1,4372:12321397,21803527 +g1,4372:12953689,21803527 +g1,4372:13269835,21803527 +h1,4372:13585981,21803527:0,0,0 +k1,4372:32583029,21803527:18997048 +g1,4372:32583029,21803527 +) +(1,4372:6630773,22469705:25952256,404226,9436 +h1,4372:6630773,22469705:0,0,0 +g1,4372:7579210,22469705 +g1,4372:8211502,22469705 +g1,4372:9476085,22469705 +g1,4372:10108377,22469705 +g1,4372:10424523,22469705 +g1,4372:12005252,22469705 +g1,4372:12321398,22469705 +g1,4372:12953690,22469705 +g1,4372:13269836,22469705 +h1,4372:13585982,22469705:0,0,0 +k1,4372:32583030,22469705:18997048 +g1,4372:32583030,22469705 +) +(1,4372:6630773,23135883:25952256,404226,9436 +h1,4372:6630773,23135883:0,0,0 +g1,4372:7579210,23135883 +g1,4372:8211502,23135883 +g1,4372:9476085,23135883 +g1,4372:10108377,23135883 +g1,4372:12005251,23135883 +g1,4372:12321397,23135883 +g1,4372:12953689,23135883 +g1,4372:13269835,23135883 +h1,4372:13585981,23135883:0,0,0 +k1,4372:32583029,23135883:18997048 +g1,4372:32583029,23135883 +) +(1,4374:6630773,24457421:25952256,410518,76021 +(1,4373:6630773,24457421:0,0,0 +g1,4373:6630773,24457421 +g1,4373:6630773,24457421 +g1,4373:6303093,24457421 +(1,4373:6303093,24457421:0,0,0 +) +g1,4373:6630773,24457421 +) +g1,4374:10424521,24457421 +g1,4374:11372959,24457421 +h1,4374:12321396,24457421:0,0,0 +k1,4374:32583028,24457421:20261632 +g1,4374:32583028,24457421 +) +(1,4375:6630773,25123599:25952256,410518,6290 +h1,4375:6630773,25123599:0,0,0 +h1,4375:7895356,25123599:0,0,0 +k1,4375:32583028,25123599:24687672 +g1,4375:32583028,25123599 +) +(1,4385:6630773,25855313:25952256,388497,101187 +(1,4377:6630773,25855313:0,0,0 +g1,4377:6630773,25855313 +g1,4377:6630773,25855313 +g1,4377:6303093,25855313 +(1,4377:6303093,25855313:0,0,0 +) +g1,4377:6630773,25855313 +) +g1,4385:7579210,25855313 +g1,4385:7895356,25855313 +g1,4385:8211502,25855313 +g1,4385:8527648,25855313 +g1,4385:8843794,25855313 +g1,4385:9476086,25855313 +g1,4385:10108378,25855313 +g1,4385:10424524,25855313 +g1,4385:10740670,25855313 +g1,4385:11056816,25855313 +g1,4385:11372962,25855313 +g1,4385:12005254,25855313 +g1,4385:12953691,25855313 +h1,4385:13585982,25855313:0,0,0 +k1,4385:32583030,25855313:18997048 +g1,4385:32583030,25855313 +) +(1,4385:6630773,26521491:25952256,404226,9436 +h1,4385:6630773,26521491:0,0,0 +g1,4385:7579210,26521491 +g1,4385:8211502,26521491 +g1,4385:9476085,26521491 +g1,4385:10108377,26521491 +g1,4385:10424523,26521491 +g1,4385:12005252,26521491 +g1,4385:12321398,26521491 +g1,4385:12953690,26521491 +g1,4385:13269836,26521491 +h1,4385:13585982,26521491:0,0,0 +k1,4385:32583030,26521491:18997048 +g1,4385:32583030,26521491 +) +(1,4385:6630773,27187669:25952256,404226,9436 +h1,4385:6630773,27187669:0,0,0 +g1,4385:7579210,27187669 +g1,4385:8211502,27187669 +g1,4385:9476085,27187669 +g1,4385:10108377,27187669 +g1,4385:12005251,27187669 +g1,4385:12321397,27187669 +g1,4385:12953689,27187669 +g1,4385:13269835,27187669 +h1,4385:13585981,27187669:0,0,0 +k1,4385:32583029,27187669:18997048 +g1,4385:32583029,27187669 +) +(1,4385:6630773,27853847:25952256,404226,9436 +h1,4385:6630773,27853847:0,0,0 +g1,4385:7579210,27853847 +g1,4385:8211502,27853847 +g1,4385:9476085,27853847 +g1,4385:10108377,27853847 +g1,4385:10424523,27853847 +g1,4385:12005252,27853847 +g1,4385:12321398,27853847 +g1,4385:12953690,27853847 +g1,4385:13269836,27853847 +h1,4385:13585982,27853847:0,0,0 +k1,4385:32583030,27853847:18997048 +g1,4385:32583030,27853847 +) +(1,4385:6630773,28520025:25952256,404226,9436 +h1,4385:6630773,28520025:0,0,0 +g1,4385:7579210,28520025 +g1,4385:8211502,28520025 +g1,4385:9476085,28520025 +g1,4385:10108377,28520025 +g1,4385:12005251,28520025 +g1,4385:12321397,28520025 +g1,4385:12953689,28520025 +g1,4385:13269835,28520025 +h1,4385:13585981,28520025:0,0,0 +k1,4385:32583029,28520025:18997048 +g1,4385:32583029,28520025 +) +(1,4385:6630773,29186203:25952256,404226,9436 +h1,4385:6630773,29186203:0,0,0 +g1,4385:7579210,29186203 +g1,4385:8211502,29186203 +g1,4385:9476085,29186203 +g1,4385:10108377,29186203 +g1,4385:10424523,29186203 +g1,4385:12005252,29186203 +g1,4385:12321398,29186203 +g1,4385:12953690,29186203 +g1,4385:13269836,29186203 +h1,4385:13585982,29186203:0,0,0 +k1,4385:32583030,29186203:18997048 +g1,4385:32583030,29186203 +) +(1,4385:6630773,29852381:25952256,404226,9436 +h1,4385:6630773,29852381:0,0,0 +g1,4385:7579210,29852381 +g1,4385:8211502,29852381 +g1,4385:9476085,29852381 +g1,4385:10108377,29852381 +g1,4385:12005251,29852381 +g1,4385:12321397,29852381 +g1,4385:12953689,29852381 +g1,4385:13269835,29852381 +h1,4385:13585981,29852381:0,0,0 +k1,4385:32583029,29852381:18997048 +g1,4385:32583029,29852381 +) +(1,4387:6630773,31173919:25952256,410518,82312 +(1,4386:6630773,31173919:0,0,0 +g1,4386:6630773,31173919 +g1,4386:6630773,31173919 +g1,4386:6303093,31173919 +(1,4386:6303093,31173919:0,0,0 +) +g1,4386:6630773,31173919 +) +k1,4387:6630773,31173919:0 +g1,4387:9159939,31173919 +g1,4387:10108377,31173919 +g1,4387:11056815,31173919 +g1,4387:13585981,31173919 +h1,4387:14218273,31173919:0,0,0 +k1,4387:32583029,31173919:18364756 +g1,4387:32583029,31173919 +) +(1,4388:6630773,31840097:25952256,410518,6290 +h1,4388:6630773,31840097:0,0,0 +h1,4388:7895356,31840097:0,0,0 +k1,4388:32583028,31840097:24687672 +g1,4388:32583028,31840097 +) +(1,4398:6630773,32571811:25952256,388497,101187 +(1,4390:6630773,32571811:0,0,0 +g1,4390:6630773,32571811 +g1,4390:6630773,32571811 +g1,4390:6303093,32571811 +(1,4390:6303093,32571811:0,0,0 +) +g1,4390:6630773,32571811 +) +g1,4398:7579210,32571811 +g1,4398:7895356,32571811 +g1,4398:8211502,32571811 +g1,4398:8527648,32571811 +g1,4398:8843794,32571811 +g1,4398:9476086,32571811 +g1,4398:10108378,32571811 +g1,4398:10424524,32571811 +g1,4398:10740670,32571811 +g1,4398:11056816,32571811 +g1,4398:11372962,32571811 +g1,4398:12005254,32571811 +g1,4398:12953691,32571811 +h1,4398:13585982,32571811:0,0,0 +k1,4398:32583030,32571811:18997048 +g1,4398:32583030,32571811 +) +(1,4398:6630773,33237989:25952256,404226,9436 +h1,4398:6630773,33237989:0,0,0 +g1,4398:7579210,33237989 +g1,4398:8211502,33237989 +g1,4398:8527648,33237989 +g1,4398:8843794,33237989 +g1,4398:9476086,33237989 +g1,4398:10108378,33237989 +g1,4398:10424524,33237989 +g1,4398:12005253,33237989 +g1,4398:12321399,33237989 +g1,4398:12953691,33237989 +g1,4398:13269837,33237989 +h1,4398:13585983,33237989:0,0,0 +k1,4398:32583029,33237989:18997046 +g1,4398:32583029,33237989 +) +(1,4398:6630773,33904167:25952256,404226,9436 +h1,4398:6630773,33904167:0,0,0 +g1,4398:7579210,33904167 +g1,4398:8211502,33904167 +g1,4398:9476085,33904167 +g1,4398:10108377,33904167 +g1,4398:12005251,33904167 +g1,4398:12321397,33904167 +g1,4398:12953689,33904167 +g1,4398:13269835,33904167 +h1,4398:13585981,33904167:0,0,0 +k1,4398:32583029,33904167:18997048 +g1,4398:32583029,33904167 +) +(1,4398:6630773,34570345:25952256,404226,9436 +h1,4398:6630773,34570345:0,0,0 +g1,4398:7579210,34570345 +g1,4398:8211502,34570345 +g1,4398:9476085,34570345 +g1,4398:10108377,34570345 +g1,4398:10424523,34570345 +g1,4398:12005252,34570345 +g1,4398:12321398,34570345 +g1,4398:12953690,34570345 +g1,4398:13269836,34570345 +h1,4398:13585982,34570345:0,0,0 +k1,4398:32583030,34570345:18997048 +g1,4398:32583030,34570345 +) +(1,4398:6630773,35236523:25952256,404226,9436 +h1,4398:6630773,35236523:0,0,0 +g1,4398:7579210,35236523 +g1,4398:8211502,35236523 +g1,4398:9476085,35236523 +g1,4398:10108377,35236523 +g1,4398:12005251,35236523 +g1,4398:12321397,35236523 +g1,4398:12953689,35236523 +g1,4398:13269835,35236523 +h1,4398:13585981,35236523:0,0,0 +k1,4398:32583029,35236523:18997048 +g1,4398:32583029,35236523 +) +(1,4398:6630773,35902701:25952256,404226,9436 +h1,4398:6630773,35902701:0,0,0 +g1,4398:7579210,35902701 +g1,4398:8211502,35902701 +g1,4398:9476085,35902701 +g1,4398:10108377,35902701 +g1,4398:10424523,35902701 +g1,4398:12005252,35902701 +g1,4398:12321398,35902701 +g1,4398:12953690,35902701 +g1,4398:13269836,35902701 +h1,4398:13585982,35902701:0,0,0 +k1,4398:32583030,35902701:18997048 +g1,4398:32583030,35902701 +) +(1,4398:6630773,36568879:25952256,404226,9436 +h1,4398:6630773,36568879:0,0,0 +g1,4398:7579210,36568879 +g1,4398:8211502,36568879 +g1,4398:9476085,36568879 +g1,4398:10108377,36568879 +g1,4398:12005251,36568879 +g1,4398:12321397,36568879 +g1,4398:12953689,36568879 +g1,4398:13269835,36568879 +h1,4398:13585981,36568879:0,0,0 +k1,4398:32583029,36568879:18997048 +g1,4398:32583029,36568879 +) +] +) +g1,4399:32583029,36578315 +g1,4399:6630773,36578315 +g1,4399:6630773,36578315 +g1,4399:32583029,36578315 +g1,4399:32583029,36578315 +) +h1,4399:6630773,36774923:0,0,0 +v1,4403:6630773,38664987:0,393216,0 +(1,4448:6630773,43465780:25952256,5194009,589824 +g1,4448:6630773,43465780 +(1,4448:6630773,43465780:25952256,5194009,589824 +(1,4448:6630773,44055604:25952256,5783833,0 +[1,4448:6630773,44055604:25952256,5783833,0 +(1,4448:6630773,44055604:25952256,5757619,0 +r1,4448:6656987,44055604:26214,5757619,0 +[1,4448:6656987,44055604:25899828,5757619,0 +(1,4448:6656987,43465780:25899828,4577971,0 +[1,4448:7246811,43465780:24720180,4577971,0 +(1,4404:7246811,39973345:24720180,1085536,298548 +(1,4403:7246811,39973345:0,1085536,298548 +r1,4448:8753226,39973345:1506415,1384084,298548 +k1,4403:7246811,39973345:-1506415 +) +(1,4403:7246811,39973345:1506415,1085536,298548 +) +k1,4403:8933318,39973345:180092 +k1,4403:10066960,39973345:180093 +k1,4403:13664755,39973345:180092 +k1,4403:15700172,39973345:180093 +k1,4403:17164770,39973345:180092 +k1,4403:20084267,39973345:180092 +k1,4403:21025888,39973345:180093 +k1,4403:22943995,39973345:180092 +k1,4403:24228369,39973345:180092 +k1,4403:25156228,39973345:180093 +k1,4403:26913772,39973345:180092 +k1,4403:28949845,39973345:180093 +k1,4403:30523888,39973345:180092 +k1,4404:31966991,39973345:0 +) +(1,4404:7246811,40814833:24720180,513147,126483 +k1,4403:8418666,40814833:218962 +k1,4403:10778690,40814833:218963 +k1,4403:13876649,40814833:218962 +(1,4403:13876649,40814833:0,452978,115847 +r1,4448:15290050,40814833:1413401,568825,115847 +k1,4403:13876649,40814833:-1413401 +) +(1,4403:13876649,40814833:1413401,452978,115847 +k1,4403:13876649,40814833:3277 +h1,4403:15286773,40814833:0,411205,112570 +) +k1,4403:15682682,40814833:218962 +k1,4403:16584530,40814833:218963 +k1,4403:18197443,40814833:218962 +(1,4403:18197443,40814833:0,459977,115847 +r1,4448:18555709,40814833:358266,575824,115847 +k1,4403:18197443,40814833:-358266 +) +(1,4403:18197443,40814833:358266,459977,115847 +k1,4403:18197443,40814833:3277 +h1,4403:18552432,40814833:0,411205,112570 +) +k1,4403:18948341,40814833:218962 +k1,4403:19795139,40814833:218963 +k1,4403:21033186,40814833:218962 +k1,4403:22558281,40814833:218962 +k1,4403:24144325,40814833:218963 +k1,4403:25382372,40814833:218962 +k1,4403:27339349,40814833:218962 +k1,4403:28217604,40814833:218963 +k1,4403:29455651,40814833:218962 +k1,4403:31966991,40814833:0 +) +(1,4404:7246811,41656321:24720180,505283,134348 +k1,4403:8142735,41656321:213039 +k1,4403:10738663,41656321:213039 +k1,4403:11483199,41656321:213039 +k1,4403:13390999,41656321:213039 +k1,4403:14290200,41656321:213039 +k1,4403:14859099,41656321:213039 +k1,4403:18046817,41656321:213039 +k1,4403:20299335,41656321:213038 +k1,4403:23306174,41656321:213039 +k1,4403:24135251,41656321:213039 +k1,4403:27442245,41656321:213039 +k1,4403:29816006,41656321:213039 +k1,4403:30711930,41656321:213039 +k1,4403:31611131,41656321:213039 +k1,4403:31966991,41656321:0 +) +(1,4404:7246811,42497809:24720180,505283,134348 +k1,4403:9908244,42497809:150093 +k1,4403:11452288,42497809:150093 +k1,4403:13384959,42497809:150092 +(1,4403:13384959,42497809:0,452978,115847 +r1,4448:16556919,42497809:3171960,568825,115847 +k1,4403:13384959,42497809:-3171960 +) +(1,4403:13384959,42497809:3171960,452978,115847 +k1,4403:13384959,42497809:3277 +h1,4403:16553642,42497809:0,411205,112570 +) +k1,4403:16880682,42497809:150093 +k1,4403:18814010,42497809:150093 +k1,4403:20699496,42497809:150093 +(1,4403:20699496,42497809:0,459977,115847 +r1,4448:21057762,42497809:358266,575824,115847 +k1,4403:20699496,42497809:-358266 +) +(1,4403:20699496,42497809:358266,459977,115847 +k1,4403:20699496,42497809:3277 +h1,4403:21054485,42497809:0,411205,112570 +) +k1,4403:21381524,42497809:150092 +k1,4403:22550702,42497809:150093 +k1,4403:24438810,42497809:150093 +k1,4403:25120400,42497809:150093 +k1,4403:27693358,42497809:150092 +k1,4403:28529613,42497809:150093 +k1,4403:29035566,42497809:150093 +k1,4403:31966991,42497809:0 +) +(1,4404:7246811,43339297:24720180,505283,126483 +g1,4403:9906262,43339297 +g1,4403:13199446,43339297 +g1,4403:15559397,43339297 +g1,4403:16950071,43339297 +g1,4403:19319852,43339297 +g1,4403:20266847,43339297 +g1,4403:20821936,43339297 +k1,4404:31966991,43339297:8460045 +g1,4404:31966991,43339297 +) +] +) +] +r1,4448:32583029,44055604:26214,5757619,0 +) +] +) +) +g1,4448:32583029,43465780 +) +] +(1,4448:32583029,45706769:0,0,0 +g1,4448:32583029,45706769 +) ) ] -(1,4442:6630773,47279633:25952256,0,0 -h1,4442:6630773,47279633:25952256,0,0 -) +(1,4448:6630773,47279633:25952256,0,0 +h1,4448:6630773,47279633:25952256,0,0 +) ] -h1,4442:4262630,4025873:0,0,0 +h1,4448:4262630,4025873:0,0,0 ] !25089 }81 -Input:524:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:525:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:526:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:527:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:528:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:529:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:530:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:531:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:532:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!776 +Input:520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!830 {82 -[1,4465:4262630,47279633:28320399,43253760,0 -(1,4465:4262630,4025873:0,0,0 -[1,4465:-473657,4025873:25952256,0,0 -(1,4465:-473657,-710414:25952256,0,0 -h1,4465:-473657,-710414:0,0,0 -(1,4465:-473657,-710414:0,0,0 -(1,4465:-473657,-710414:0,0,0 -g1,4465:-473657,-710414 -(1,4465:-473657,-710414:65781,0,65781 -g1,4465:-407876,-710414 -[1,4465:-407876,-644633:0,0,0 +[1,4471:4262630,47279633:28320399,43253760,0 +(1,4471:4262630,4025873:0,0,0 +[1,4471:-473657,4025873:25952256,0,0 +(1,4471:-473657,-710414:25952256,0,0 +h1,4471:-473657,-710414:0,0,0 +(1,4471:-473657,-710414:0,0,0 +(1,4471:-473657,-710414:0,0,0 +g1,4471:-473657,-710414 +(1,4471:-473657,-710414:65781,0,65781 +g1,4471:-407876,-710414 +[1,4471:-407876,-644633:0,0,0 ] ) -k1,4465:-473657,-710414:-65781 +k1,4471:-473657,-710414:-65781 ) ) -k1,4465:25478599,-710414:25952256 -g1,4465:25478599,-710414 +k1,4471:25478599,-710414:25952256 +g1,4471:25478599,-710414 ) ] ) -[1,4465:6630773,47279633:25952256,43253760,0 -[1,4465:6630773,4812305:25952256,786432,0 -(1,4465:6630773,4812305:25952256,513147,126483 -(1,4465:6630773,4812305:25952256,513147,126483 -g1,4465:3078558,4812305 -[1,4465:3078558,4812305:0,0,0 -(1,4465:3078558,2439708:0,1703936,0 -k1,4465:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4465:2537886,2439708:1179648,16384,0 +[1,4471:6630773,47279633:25952256,43253760,0 +[1,4471:6630773,4812305:25952256,786432,0 +(1,4471:6630773,4812305:25952256,513147,126483 +(1,4471:6630773,4812305:25952256,513147,126483 +g1,4471:3078558,4812305 +[1,4471:3078558,4812305:0,0,0 +(1,4471:3078558,2439708:0,1703936,0 +k1,4471:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4471:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4465:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4471:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4465:3078558,4812305:0,0,0 -(1,4465:3078558,2439708:0,1703936,0 -g1,4465:29030814,2439708 -g1,4465:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4465:36151628,1915420:16384,1179648,0 +[1,4471:3078558,4812305:0,0,0 +(1,4471:3078558,2439708:0,1703936,0 +g1,4471:29030814,2439708 +g1,4471:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4471:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4465:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4471:37855564,2439708:1179648,16384,0 ) ) -k1,4465:3078556,2439708:-34777008 +k1,4471:3078556,2439708:-34777008 ) ] -[1,4465:3078558,4812305:0,0,0 -(1,4465:3078558,49800853:0,16384,2228224 -k1,4465:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4465:2537886,49800853:1179648,16384,0 +[1,4471:3078558,4812305:0,0,0 +(1,4471:3078558,49800853:0,16384,2228224 +k1,4471:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4471:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4465:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4471:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4465:3078558,4812305:0,0,0 -(1,4465:3078558,49800853:0,16384,2228224 -g1,4465:29030814,49800853 -g1,4465:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4465:36151628,51504789:16384,1179648,0 +[1,4471:3078558,4812305:0,0,0 +(1,4471:3078558,49800853:0,16384,2228224 +g1,4471:29030814,49800853 +g1,4471:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4471:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4465:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4471:37855564,49800853:1179648,16384,0 ) ) -k1,4465:3078556,49800853:-34777008 +k1,4471:3078556,49800853:-34777008 ) ] -g1,4465:6630773,4812305 -g1,4465:6630773,4812305 -g1,4465:8364200,4812305 -g1,4465:10765439,4812305 -k1,4465:31786111,4812305:21020672 -) +g1,4471:6630773,4812305 +g1,4471:6630773,4812305 +g1,4471:8364200,4812305 +g1,4471:10765439,4812305 +k1,4471:31786111,4812305:21020672 +) ) ] -[1,4465:6630773,45706769:25952256,40108032,0 -(1,4465:6630773,45706769:25952256,40108032,0 -(1,4465:6630773,45706769:0,0,0 -g1,4465:6630773,45706769 +[1,4471:6630773,45706769:25952256,40108032,0 +(1,4471:6630773,45706769:25952256,40108032,0 +(1,4471:6630773,45706769:0,0,0 +g1,4471:6630773,45706769 ) -[1,4465:6630773,45706769:25952256,40108032,0 -v1,4442:6630773,6254097:0,393216,0 -(1,4442:6630773,28396005:25952256,22535124,616038 -g1,4442:6630773,28396005 -(1,4442:6630773,28396005:25952256,22535124,616038 -(1,4442:6630773,29012043:25952256,23151162,0 -[1,4442:6630773,29012043:25952256,23151162,0 -(1,4442:6630773,28985829:25952256,23124948,0 -r1,4442:6656987,28985829:26214,23124948,0 -[1,4442:6656987,28985829:25899828,23124948,0 -(1,4442:6656987,28396005:25899828,21945300,0 -[1,4442:7246811,28396005:24720180,21945300,0 -v1,4400:7246811,6843921:0,393216,0 -(1,4415:7246811,11244882:24720180,4794177,196608 -g1,4415:7246811,11244882 -g1,4415:7246811,11244882 -g1,4415:7050203,11244882 -(1,4415:7050203,11244882:0,4794177,196608 -r1,4442:32163599,11244882:25113396,4990785,196608 -k1,4415:7050203,11244882:-25113396 -) -(1,4415:7050203,11244882:25113396,4794177,196608 -[1,4415:7246811,11244882:24720180,4597569,0 -(1,4402:7246811,7051539:24720180,404226,101187 -(1,4401:7246811,7051539:0,0,0 -g1,4401:7246811,7051539 -g1,4401:7246811,7051539 -g1,4401:6919131,7051539 -(1,4401:6919131,7051539:0,0,0 -) -g1,4401:7246811,7051539 -) -g1,4402:9459831,7051539 -g1,4402:10408269,7051539 -g1,4402:13569727,7051539 -g1,4402:14202019,7051539 -g1,4402:15782748,7051539 -g1,4402:17363477,7051539 -g1,4402:17995769,7051539 -h1,4402:19260352,7051539:0,0,0 -k1,4402:31966991,7051539:12706639 -g1,4402:31966991,7051539 -) -(1,4403:7246811,7717717:24720180,404226,76021 -h1,4403:7246811,7717717:0,0,0 -h1,4403:12305141,7717717:0,0,0 -k1,4403:31966991,7717717:19661850 -g1,4403:31966991,7717717 -) -(1,4407:7246811,8449431:24720180,404226,76021 -(1,4405:7246811,8449431:0,0,0 -g1,4405:7246811,8449431 -g1,4405:7246811,8449431 -g1,4405:6919131,8449431 -(1,4405:6919131,8449431:0,0,0 -) -g1,4405:7246811,8449431 -) -g1,4407:8195248,8449431 -g1,4407:9459831,8449431 -h1,4407:10408268,8449431:0,0,0 -k1,4407:31966992,8449431:21558724 -g1,4407:31966992,8449431 -) -(1,4409:7246811,9770969:24720180,404226,6290 -(1,4408:7246811,9770969:0,0,0 -g1,4408:7246811,9770969 -g1,4408:7246811,9770969 -g1,4408:6919131,9770969 -(1,4408:6919131,9770969:0,0,0 -) -g1,4408:7246811,9770969 -) -g1,4409:9143685,9770969 -g1,4409:10092123,9770969 -h1,4409:11988997,9770969:0,0,0 -k1,4409:31966991,9770969:19977994 -g1,4409:31966991,9770969 -) -(1,4410:7246811,10437147:24720180,404226,76021 -h1,4410:7246811,10437147:0,0,0 -h1,4410:11988996,10437147:0,0,0 -k1,4410:31966992,10437147:19977996 -g1,4410:31966992,10437147 -) -(1,4414:7246811,11168861:24720180,404226,76021 -(1,4412:7246811,11168861:0,0,0 -g1,4412:7246811,11168861 -g1,4412:7246811,11168861 -g1,4412:6919131,11168861 -(1,4412:6919131,11168861:0,0,0 -) -g1,4412:7246811,11168861 -) -g1,4414:8195248,11168861 -g1,4414:9459831,11168861 -h1,4414:10408268,11168861:0,0,0 -k1,4414:31966992,11168861:21558724 -g1,4414:31966992,11168861 -) -] -) -g1,4415:31966991,11244882 -g1,4415:7246811,11244882 -g1,4415:7246811,11244882 -g1,4415:31966991,11244882 -g1,4415:31966991,11244882 -) -h1,4415:7246811,11441490:0,0,0 -v1,4419:7246811,13156244:0,393216,0 -(1,4438:7246811,18284393:24720180,5521365,196608 -g1,4438:7246811,18284393 -g1,4438:7246811,18284393 -g1,4438:7050203,18284393 -(1,4438:7050203,18284393:0,5521365,196608 -r1,4442:32163599,18284393:25113396,5717973,196608 -k1,4438:7050203,18284393:-25113396 -) -(1,4438:7050203,18284393:25113396,5521365,196608 -[1,4438:7246811,18284393:24720180,5324757,0 -(1,4421:7246811,13370154:24720180,410518,31456 -(1,4420:7246811,13370154:0,0,0 -g1,4420:7246811,13370154 -g1,4420:7246811,13370154 -g1,4420:6919131,13370154 -(1,4420:6919131,13370154:0,0,0 -) -g1,4420:7246811,13370154 -) -h1,4421:10724414,13370154:0,0,0 -k1,4421:31966990,13370154:21242576 -g1,4421:31966990,13370154 -) -(1,4425:7246811,14101868:24720180,404226,76021 -(1,4423:7246811,14101868:0,0,0 -g1,4423:7246811,14101868 -g1,4423:7246811,14101868 -g1,4423:6919131,14101868 -(1,4423:6919131,14101868:0,0,0 -) -g1,4423:7246811,14101868 -) -g1,4425:8195248,14101868 -g1,4425:9459831,14101868 -h1,4425:10408268,14101868:0,0,0 -k1,4425:31966992,14101868:21558724 -g1,4425:31966992,14101868 -) -(1,4427:7246811,15423406:24720180,410518,31456 -(1,4426:7246811,15423406:0,0,0 -g1,4426:7246811,15423406 -g1,4426:7246811,15423406 -g1,4426:6919131,15423406 -(1,4426:6919131,15423406:0,0,0 -) -g1,4426:7246811,15423406 -) -h1,4427:10092122,15423406:0,0,0 -k1,4427:31966990,15423406:21874868 -g1,4427:31966990,15423406 -) -(1,4431:7246811,16155120:24720180,404226,76021 -(1,4429:7246811,16155120:0,0,0 -g1,4429:7246811,16155120 -g1,4429:7246811,16155120 -g1,4429:6919131,16155120 -(1,4429:6919131,16155120:0,0,0 -) -g1,4429:7246811,16155120 -) -g1,4431:8195248,16155120 -g1,4431:9459831,16155120 -h1,4431:10408268,16155120:0,0,0 -k1,4431:31966992,16155120:21558724 -g1,4431:31966992,16155120 -) -(1,4433:7246811,17476658:24720180,410518,31456 -(1,4432:7246811,17476658:0,0,0 -g1,4432:7246811,17476658 -g1,4432:7246811,17476658 -g1,4432:6919131,17476658 -(1,4432:6919131,17476658:0,0,0 -) -g1,4432:7246811,17476658 -) -h1,4433:9775977,17476658:0,0,0 -k1,4433:31966991,17476658:22191014 -g1,4433:31966991,17476658 -) -(1,4437:7246811,18208372:24720180,404226,76021 -(1,4435:7246811,18208372:0,0,0 -g1,4435:7246811,18208372 -g1,4435:7246811,18208372 -g1,4435:6919131,18208372 -(1,4435:6919131,18208372:0,0,0 -) -g1,4435:7246811,18208372 -) -g1,4437:8195248,18208372 -g1,4437:9459831,18208372 -h1,4437:10408268,18208372:0,0,0 -k1,4437:31966992,18208372:21558724 -g1,4437:31966992,18208372 -) -] -) -g1,4438:31966991,18284393 -g1,4438:7246811,18284393 -g1,4438:7246811,18284393 -g1,4438:31966991,18284393 -g1,4438:31966991,18284393 -) -h1,4438:7246811,18481001:0,0,0 -(1,4442:7246811,19846777:24720180,513147,134348 -h1,4441:7246811,19846777:983040,0,0 -k1,4441:9924209,19846777:228973 -k1,4441:10769220,19846777:228973 -k1,4441:12017277,19846777:228972 -k1,4441:13613331,19846777:228973 -k1,4441:14501596,19846777:228973 -k1,4441:16054396,19846777:228973 -k1,4441:17474813,19846777:228972 -k1,4441:19093149,19846777:228973 -k1,4441:21702390,19846777:228973 -k1,4441:23629401,19846777:228973 -k1,4441:25593766,19846777:228972 -k1,4441:28005743,19846777:228973 -k1,4441:30375777,19846777:228973 -k1,4442:31966991,19846777:0 -) -(1,4442:7246811,20688265:24720180,505283,134348 -k1,4441:8935392,20688265:187807 -k1,4441:9893903,20688265:187808 -k1,4441:11740426,20688265:187807 -k1,4441:13909387,20688265:187808 -k1,4441:14628691,20688265:187807 -k1,4441:17529034,20688265:187808 -k1,4441:20352044,20688265:187807 -k1,4441:21558937,20688265:187808 -k1,4441:23484759,20688265:187807 -k1,4441:24288605,20688265:187808 -k1,4441:25495497,20688265:187807 -k1,4441:27642831,20688265:187808 -k1,4441:29022083,20688265:187807 -k1,4441:30228976,20688265:187808 -k1,4441:31966991,20688265:0 -) -(1,4442:7246811,21529753:24720180,513147,134348 -k1,4441:8974576,21529753:214539 -k1,4441:10136766,21529753:214539 -k1,4441:13264381,21529753:214540 -k1,4441:14106755,21529753:214539 -k1,4441:17126235,21529753:214539 -k1,4441:18734725,21529753:214539 -(1,4441:18734725,21529753:0,459977,115847 -r1,4442:19092991,21529753:358266,575824,115847 -k1,4441:18734725,21529753:-358266 -) -(1,4441:18734725,21529753:358266,459977,115847 -k1,4441:18734725,21529753:3277 -h1,4441:19089714,21529753:0,411205,112570 -) -k1,4441:19481200,21529753:214539 -k1,4441:20827546,21529753:214539 -k1,4441:25377948,21529753:214540 -k1,4441:27676532,21529753:214539 -k1,4441:29872224,21529753:214539 -k1,4441:31219225,21529753:214539 -k1,4441:31966991,21529753:0 -) -(1,4442:7246811,22371241:24720180,513147,134348 -k1,4441:10495365,22371241:258802 -k1,4441:11796188,22371241:258801 -k1,4441:15415676,22371241:258802 -k1,4441:16940634,22371241:258802 -k1,4441:19283481,22371241:258802 -k1,4441:22513684,22371241:258801 -k1,4441:23303983,22371241:258802 -k1,4441:25835574,22371241:258802 -k1,4441:26710413,22371241:258801 -k1,4441:29764326,22371241:258802 -k1,4441:31966991,22371241:0 -) -(1,4442:7246811,23212729:24720180,505283,134348 -k1,4441:10410049,23212729:228536 -k1,4441:11254622,23212729:228535 -k1,4441:13818206,23212729:228536 -k1,4441:15238186,23212729:228535 -k1,4441:18574439,23212729:228536 -k1,4441:19217788,23212729:228506 -k1,4441:20942510,23212729:228535 -k1,4441:21787084,23212729:228536 -k1,4441:25099743,23212729:228535 -k1,4441:25786376,23212729:228536 -k1,4441:26546408,23212729:228535 -k1,4441:28109912,23212729:228536 -k1,4441:28989876,23212729:228536 -k1,4441:30947906,23212729:228535 -k1,4441:31966991,23212729:0 -) -(1,4442:7246811,24054217:24720180,513147,134348 -k1,4441:8584590,24054217:245294 -k1,4441:9497040,24054217:245294 -(1,4441:9497040,24054217:0,459977,115847 -r1,4442:9855306,24054217:358266,575824,115847 -k1,4441:9497040,24054217:-358266 -) -(1,4441:9497040,24054217:358266,459977,115847 -k1,4441:9497040,24054217:3277 -h1,4441:9852029,24054217:0,411205,112570 -) -k1,4441:10100599,24054217:245293 -k1,4441:11032055,24054217:245294 -k1,4441:13361394,24054217:245294 -k1,4441:16578090,24054217:245294 -k1,4441:17474812,24054217:245294 -k1,4441:18075965,24054217:245293 -k1,4441:20314209,24054217:245294 -k1,4441:23070843,24054217:245294 -k1,4441:25721964,24054217:245294 -k1,4441:26580020,24054217:245294 -k1,4441:27181173,24054217:245293 -k1,4441:28880056,24054217:245294 -k1,4441:30724428,24054217:245294 -k1,4441:31966991,24054217:0 -) -(1,4442:7246811,24895705:24720180,513147,134348 -k1,4441:9129363,24895705:184514 -k1,4441:12162726,24895705:184513 -k1,4441:13577351,24895705:184514 -k1,4441:15963874,24895705:184513 -k1,4441:17167473,24895705:184514 -k1,4441:19356732,24895705:184513 -k1,4441:20645528,24895705:184514 -k1,4441:22159111,24895705:184513 -k1,4441:22995053,24895705:184514 -k1,4441:24533540,24895705:184513 -k1,4441:31118300,24895705:184514 -k1,4442:31966991,24895705:0 -) -(1,4442:7246811,25737193:24720180,513147,134348 -k1,4441:8913594,25737193:191568 -k1,4441:9732997,25737193:191568 -k1,4441:12764240,25737193:191568 -k1,4441:13641969,25737193:191567 -(1,4441:13641969,25737193:0,459977,115847 -r1,4442:14000235,25737193:358266,575824,115847 -k1,4441:13641969,25737193:-358266 -) -(1,4441:13641969,25737193:358266,459977,115847 -k1,4441:13641969,25737193:3277 -h1,4441:13996958,25737193:0,411205,112570 -) -k1,4441:14191803,25737193:191568 -k1,4441:14914868,25737193:191568 -k1,4441:19307949,25737193:191568 -k1,4441:20261045,25737193:191568 -k1,4441:21758746,25737193:191568 -k1,4441:25455179,25737193:191568 -k1,4441:26002606,25737193:191567 -k1,4441:28175327,25737193:191568 -k1,4441:29018323,25737193:191568 -k1,4441:30228976,25737193:191568 -k1,4441:31966991,25737193:0 -) -(1,4442:7246811,26578681:24720180,513147,134348 -k1,4441:8624512,26578681:186256 -k1,4441:10244696,26578681:186256 -k1,4441:12520895,26578681:186256 -(1,4441:12520895,26578681:0,452978,115847 -r1,4442:13934296,26578681:1413401,568825,115847 -k1,4441:12520895,26578681:-1413401 -) -(1,4441:12520895,26578681:1413401,452978,115847 -k1,4441:12520895,26578681:3277 -h1,4441:13931019,26578681:0,411205,112570 -) -k1,4441:14294222,26578681:186256 -k1,4441:16215871,26578681:186256 -(1,4441:16215871,26578681:0,459977,115847 -r1,4442:16574137,26578681:358266,575824,115847 -k1,4441:16215871,26578681:-358266 -) -(1,4441:16215871,26578681:358266,459977,115847 -k1,4441:16215871,26578681:3277 -h1,4441:16570860,26578681:0,411205,112570 -) -k1,4441:16760393,26578681:186256 -k1,4441:17894299,26578681:186255 -k1,4441:20819960,26578681:186256 -k1,4441:22110498,26578681:186256 -k1,4441:24139626,26578681:186256 -k1,4441:24941920,26578681:186256 -k1,4441:27476986,26578681:186256 -k1,4441:29749908,26578681:186256 -k1,4442:31966991,26578681:0 -) -(1,4442:7246811,27420169:24720180,505283,134348 -k1,4441:9512711,27420169:194307 -k1,4441:12888136,27420169:194307 -k1,4441:13733870,27420169:194306 -k1,4441:15663570,27420169:194307 -(1,4441:15663570,27420169:0,452978,115847 -r1,4442:17076971,27420169:1413401,568825,115847 -k1,4441:15663570,27420169:-1413401 -) -(1,4441:15663570,27420169:1413401,452978,115847 -k1,4441:15663570,27420169:3277 -h1,4441:17073694,27420169:0,411205,112570 -) -k1,4441:17444948,27420169:194307 -k1,4441:18109148,27420169:194307 -k1,4441:18834952,27420169:194307 -k1,4441:21659218,27420169:194306 -k1,4441:22504953,27420169:194307 -k1,4441:23633803,27420169:194307 -k1,4441:24598813,27420169:194307 -k1,4441:25207958,27420169:194302 -k1,4441:27484998,27420169:194306 -k1,4441:28404133,27420169:194307 -k1,4441:29882946,27420169:194307 -k1,4441:31966991,27420169:0 -) -(1,4442:7246811,28261657:24720180,513147,134348 -g1,4441:10417442,28261657 -g1,4441:13077548,28261657 -g1,4441:13632637,28261657 -g1,4441:16575858,28261657 -g1,4441:18660558,28261657 -g1,4441:19964069,28261657 -g1,4441:20911064,28261657 -g1,4441:22464267,28261657 -g1,4441:24640717,28261657 -g1,4441:26537984,28261657 -k1,4442:31966991,28261657:1933317 -g1,4442:31966991,28261657 -) -] -) -] -r1,4442:32583029,28985829:26214,23124948,0 -) -] -) -) -g1,4442:32583029,28396005 -) -h1,4442:6630773,29012043:0,0,0 -(1,4444:6630773,31103303:25952256,564462,147783 -(1,4444:6630773,31103303:2899444,534184,0 -g1,4444:6630773,31103303 -g1,4444:9530217,31103303 -) -g1,4444:13366105,31103303 -g1,4444:15917357,31103303 -g1,4444:17694366,31103303 -k1,4444:32583029,31103303:12374899 -g1,4444:32583029,31103303 -) -(1,4447:6630773,32338007:25952256,513147,134348 -k1,4446:8679905,32338007:265897 -k1,4446:9964888,32338007:265898 -k1,4446:12299101,32338007:265897 -k1,4446:13224290,32338007:265897 -k1,4446:14879551,32338007:265898 -k1,4446:17352045,32338007:265897 -k1,4446:18609503,32338007:265898 -k1,4446:20437778,32338007:265897 -k1,4446:23389996,32338007:265897 -k1,4446:27018546,32338007:265898 -k1,4446:29727625,32338007:265897 -k1,4446:32583029,32338007:0 -) -(1,4447:6630773,33179495:25952256,505283,134348 -k1,4446:7494754,33179495:212553 -k1,4446:9322115,33179495:212554 -k1,4446:11270061,33179495:212553 -k1,4446:15946928,33179495:212554 -k1,4446:19640098,33179495:212553 -k1,4446:20480487,33179495:212554 -k1,4446:22186606,33179495:212553 -k1,4446:24096542,33179495:212554 -(1,4446:24096542,33179495:0,452978,115847 -r1,4446:26916791,33179495:2820249,568825,115847 -k1,4446:24096542,33179495:-2820249 -) -(1,4446:24096542,33179495:2820249,452978,115847 -k1,4446:24096542,33179495:3277 -h1,4446:26913514,33179495:0,411205,112570 -) -k1,4446:27129344,33179495:212553 -k1,4446:27873395,33179495:212554 -k1,4446:30053339,33179495:212553 -k1,4446:32583029,33179495:0 -) -(1,4447:6630773,34020983:25952256,513147,102891 -k1,4446:10169717,34020983:235274 -k1,4446:10936488,34020983:235274 -k1,4446:12749214,34020983:235274 -k1,4446:13600527,34020983:235275 -k1,4446:14854886,34020983:235274 -k1,4446:19747804,34020983:235274 -k1,4446:20642370,34020983:235274 -k1,4446:21896729,34020983:235274 -k1,4446:23521366,34020983:235274 -k1,4446:25806606,34020983:235274 -k1,4446:27111429,34020983:235275 -k1,4446:28365788,34020983:235274 -k1,4446:30669378,34020983:235274 -k1,4446:31563944,34020983:235274 -k1,4446:32583029,34020983:0 -) -(1,4447:6630773,34862471:25952256,513147,134348 -k1,4446:9590117,34862471:246153 -k1,4446:10827830,34862471:246153 -k1,4446:14586057,34862471:246153 -k1,4446:15298171,34862471:246153 -k1,4446:17967191,34862471:246154 -k1,4446:20627690,34862471:246153 -k1,4446:22571881,34862471:246153 -k1,4446:25075749,34862471:246153 -k1,4446:26340987,34862471:246153 -k1,4446:29793161,34862471:246153 -k1,4447:32583029,34862471:0 -) -(1,4447:6630773,35703959:25952256,513147,134348 -(1,4446:6630773,35703959:0,452978,115847 -r1,4446:9451022,35703959:2820249,568825,115847 -k1,4446:6630773,35703959:-2820249 -) -(1,4446:6630773,35703959:2820249,452978,115847 -k1,4446:6630773,35703959:3277 -h1,4446:9447745,35703959:0,411205,112570 -) -k1,4446:9760814,35703959:309792 -k1,4446:12529517,35703959:309792 -k1,4446:14547177,35703959:309792 -k1,4446:17144176,35703959:309792 -k1,4446:22077532,35703959:309791 -k1,4446:23038752,35703959:309792 -k1,4446:27420296,35703959:309792 -k1,4446:28412973,35703959:309792 -k1,4446:32583029,35703959:0 -) -(1,4447:6630773,36545447:25952256,513147,126483 -k1,4446:8663626,36545447:241099 -k1,4446:10101412,36545447:241099 -k1,4446:13374862,36545447:241099 -k1,4446:14147458,36545447:241099 -k1,4446:17597200,36545447:241099 -k1,4446:18785950,36545447:241099 -k1,4446:20478671,36545447:241099 -k1,4446:22097338,36545447:241100 -k1,4446:23529882,36545447:241099 -k1,4446:24236942,36545447:241099 -k1,4446:24936138,36545447:241099 -k1,4446:27518183,36545447:241099 -(1,4446:27518183,36545447:0,414482,115847 -r1,4446:28931584,36545447:1413401,530329,115847 -k1,4446:27518183,36545447:-1413401 -) -(1,4446:27518183,36545447:1413401,414482,115847 -k1,4446:27518183,36545447:3277 -h1,4446:28928307,36545447:0,411205,112570 -) -k1,4446:29346353,36545447:241099 -k1,4446:30606537,36545447:241099 -k1,4446:32051532,36545447:241099 -k1,4446:32583029,36545447:0 -) -(1,4447:6630773,37386935:25952256,513147,115847 -g1,4446:9588412,37386935 -g1,4446:10403679,37386935 -g1,4446:11621993,37386935 -g1,4446:14599949,37386935 -g1,4446:16188541,37386935 -g1,4446:18437736,37386935 -g1,4446:19828410,37386935 -g1,4446:22882387,37386935 -g1,4446:23555441,37386935 -(1,4446:23555441,37386935:0,414482,115847 -r1,4446:25320554,37386935:1765113,530329,115847 -k1,4446:23555441,37386935:-1765113 -) -(1,4446:23555441,37386935:1765113,414482,115847 -k1,4446:23555441,37386935:3277 -h1,4446:25317277,37386935:0,411205,112570 -) -k1,4447:32583029,37386935:7088805 -g1,4447:32583029,37386935 -) -v1,4449:6630773,38379753:0,393216,0 -(1,4460:6630773,41999525:25952256,4012988,196608 -g1,4460:6630773,41999525 -g1,4460:6630773,41999525 -g1,4460:6434165,41999525 -(1,4460:6434165,41999525:0,4012988,196608 -r1,4460:32779637,41999525:26345472,4209596,196608 -k1,4460:6434165,41999525:-26345472 -) -(1,4460:6434165,41999525:26345472,4012988,196608 -[1,4460:6630773,41999525:25952256,3816380,0 -(1,4451:6630773,38593663:25952256,410518,101187 -(1,4450:6630773,38593663:0,0,0 -g1,4450:6630773,38593663 -g1,4450:6630773,38593663 -g1,4450:6303093,38593663 -(1,4450:6303093,38593663:0,0,0 -) -g1,4450:6630773,38593663 -) -g1,4451:8211502,38593663 -g1,4451:9159940,38593663 -g1,4451:13269835,38593663 -g1,4451:13902127,38593663 -g1,4451:15482857,38593663 -g1,4451:16115149,38593663 -g1,4451:16747441,38593663 -g1,4451:18328170,38593663 -g1,4451:18960462,38593663 -g1,4451:19592754,38593663 -g1,4451:22121921,38593663 -h1,4451:24334940,38593663:0,0,0 -k1,4451:32583029,38593663:8248089 -g1,4451:32583029,38593663 -) -(1,4452:6630773,39259841:25952256,410518,82312 -h1,4452:6630773,39259841:0,0,0 -g1,4452:10740667,39259841 -g1,4452:11372959,39259841 -g1,4452:12005251,39259841 -h1,4452:12637543,39259841:0,0,0 -k1,4452:32583029,39259841:19945486 -g1,4452:32583029,39259841 -) -(1,4459:6630773,39991555:25952256,379060,101187 -(1,4454:6630773,39991555:0,0,0 -g1,4454:6630773,39991555 -g1,4454:6630773,39991555 -g1,4454:6303093,39991555 -(1,4454:6303093,39991555:0,0,0 -) -g1,4454:6630773,39991555 -) -g1,4459:7579210,39991555 -g1,4459:7895356,39991555 -g1,4459:8211502,39991555 -g1,4459:8843794,39991555 -g1,4459:9476086,39991555 -g1,4459:9792232,39991555 -g1,4459:10108378,39991555 -g1,4459:10424524,39991555 -g1,4459:10740670,39991555 -h1,4459:11056816,39991555:0,0,0 -k1,4459:32583028,39991555:21526212 -g1,4459:32583028,39991555 -) -(1,4459:6630773,40657733:25952256,379060,7863 -h1,4459:6630773,40657733:0,0,0 -g1,4459:7579210,40657733 -g1,4459:8211502,40657733 -g1,4459:8843794,40657733 -g1,4459:9476086,40657733 -h1,4459:11056814,40657733:0,0,0 -k1,4459:32583030,40657733:21526216 -g1,4459:32583030,40657733 -) -(1,4459:6630773,41323911:25952256,379060,9436 -h1,4459:6630773,41323911:0,0,0 -g1,4459:7579210,41323911 -g1,4459:8211502,41323911 -g1,4459:8843794,41323911 -g1,4459:9476086,41323911 -g1,4459:9792232,41323911 -h1,4459:11056815,41323911:0,0,0 -k1,4459:32583029,41323911:21526214 -g1,4459:32583029,41323911 -) -(1,4459:6630773,41990089:25952256,388497,9436 -h1,4459:6630773,41990089:0,0,0 -g1,4459:7579210,41990089 -g1,4459:8211502,41990089 -g1,4459:8843794,41990089 -g1,4459:9476086,41990089 -h1,4459:11056814,41990089:0,0,0 -k1,4459:32583030,41990089:21526216 -g1,4459:32583030,41990089 -) -] -) -g1,4460:32583029,41999525 -g1,4460:6630773,41999525 -g1,4460:6630773,41999525 -g1,4460:32583029,41999525 -g1,4460:32583029,41999525 -) -h1,4460:6630773,42196133:0,0,0 -v1,4464:6630773,43690902:0,393216,0 -(1,4465:6630773,45116945:25952256,1819259,589824 -g1,4465:6630773,45116945 -(1,4465:6630773,45116945:25952256,1819259,589824 -(1,4465:6630773,45706769:25952256,2409083,0 -[1,4465:6630773,45706769:25952256,2409083,0 -(1,4465:6630773,45706769:25952256,2382869,0 -r1,4465:6656987,45706769:26214,2382869,0 -[1,4465:6656987,45706769:25899828,2382869,0 -(1,4465:6656987,45116945:25899828,1203221,0 -[1,4465:7246811,45116945:24720180,1203221,0 -(1,4465:7246811,45001098:24720180,1087374,115847 -k1,4464:8605676,45001098:149162 -k1,4464:10388651,45001098:149162 -k1,4464:11069309,45001098:149161 -k1,4464:12237556,45001098:149162 -k1,4464:15146439,45001098:149162 -k1,4464:15962757,45001098:149162 -(1,4464:15962757,45001098:0,452978,115847 -r1,4465:18783006,45001098:2820249,568825,115847 -k1,4464:15962757,45001098:-2820249 -) -(1,4464:15962757,45001098:2820249,452978,115847 -k1,4464:15962757,45001098:3277 -h1,4464:18779729,45001098:0,411205,112570 -) -k1,4464:18932167,45001098:149161 -k1,4464:20779367,45001098:149162 -k1,4464:21947614,45001098:149162 -k1,4464:25129127,45001098:149162 -k1,4464:25809786,45001098:149162 -(1,4464:25809786,45001098:0,414482,115847 -r1,4465:26519764,45001098:709978,530329,115847 -k1,4464:25809786,45001098:-709978 -) -(1,4464:25809786,45001098:709978,414482,115847 -k1,4464:25809786,45001098:3277 -h1,4464:26516487,45001098:0,411205,112570 -) -k1,4464:26995950,45001098:149161 -k1,4464:28541029,45001098:149162 -k1,4464:29709276,45001098:149162 -k1,4464:31966991,45001098:0 -) -] -) -] -r1,4465:32583029,45706769:26214,2382869,0 -) -] -) -) -g1,4465:32583029,45116945 -) -] -(1,4465:32583029,45706769:0,0,0 -g1,4465:32583029,45706769 +[1,4471:6630773,45706769:25952256,40108032,0 +v1,4448:6630773,6254097:0,393216,0 +(1,4448:6630773,28396005:25952256,22535124,616038 +g1,4448:6630773,28396005 +(1,4448:6630773,28396005:25952256,22535124,616038 +(1,4448:6630773,29012043:25952256,23151162,0 +[1,4448:6630773,29012043:25952256,23151162,0 +(1,4448:6630773,28985829:25952256,23124948,0 +r1,4448:6656987,28985829:26214,23124948,0 +[1,4448:6656987,28985829:25899828,23124948,0 +(1,4448:6656987,28396005:25899828,21945300,0 +[1,4448:7246811,28396005:24720180,21945300,0 +v1,4406:7246811,6843921:0,393216,0 +(1,4421:7246811,11244882:24720180,4794177,196608 +g1,4421:7246811,11244882 +g1,4421:7246811,11244882 +g1,4421:7050203,11244882 +(1,4421:7050203,11244882:0,4794177,196608 +r1,4448:32163599,11244882:25113396,4990785,196608 +k1,4421:7050203,11244882:-25113396 +) +(1,4421:7050203,11244882:25113396,4794177,196608 +[1,4421:7246811,11244882:24720180,4597569,0 +(1,4408:7246811,7051539:24720180,404226,101187 +(1,4407:7246811,7051539:0,0,0 +g1,4407:7246811,7051539 +g1,4407:7246811,7051539 +g1,4407:6919131,7051539 +(1,4407:6919131,7051539:0,0,0 +) +g1,4407:7246811,7051539 +) +g1,4408:9459831,7051539 +g1,4408:10408269,7051539 +g1,4408:13569727,7051539 +g1,4408:14202019,7051539 +g1,4408:15782748,7051539 +g1,4408:17363477,7051539 +g1,4408:17995769,7051539 +h1,4408:19260352,7051539:0,0,0 +k1,4408:31966991,7051539:12706639 +g1,4408:31966991,7051539 +) +(1,4409:7246811,7717717:24720180,404226,76021 +h1,4409:7246811,7717717:0,0,0 +h1,4409:12305141,7717717:0,0,0 +k1,4409:31966991,7717717:19661850 +g1,4409:31966991,7717717 +) +(1,4413:7246811,8449431:24720180,404226,76021 +(1,4411:7246811,8449431:0,0,0 +g1,4411:7246811,8449431 +g1,4411:7246811,8449431 +g1,4411:6919131,8449431 +(1,4411:6919131,8449431:0,0,0 +) +g1,4411:7246811,8449431 +) +g1,4413:8195248,8449431 +g1,4413:9459831,8449431 +h1,4413:10408268,8449431:0,0,0 +k1,4413:31966992,8449431:21558724 +g1,4413:31966992,8449431 +) +(1,4415:7246811,9770969:24720180,404226,6290 +(1,4414:7246811,9770969:0,0,0 +g1,4414:7246811,9770969 +g1,4414:7246811,9770969 +g1,4414:6919131,9770969 +(1,4414:6919131,9770969:0,0,0 +) +g1,4414:7246811,9770969 +) +g1,4415:9143685,9770969 +g1,4415:10092123,9770969 +h1,4415:11988997,9770969:0,0,0 +k1,4415:31966991,9770969:19977994 +g1,4415:31966991,9770969 +) +(1,4416:7246811,10437147:24720180,404226,76021 +h1,4416:7246811,10437147:0,0,0 +h1,4416:11988996,10437147:0,0,0 +k1,4416:31966992,10437147:19977996 +g1,4416:31966992,10437147 +) +(1,4420:7246811,11168861:24720180,404226,76021 +(1,4418:7246811,11168861:0,0,0 +g1,4418:7246811,11168861 +g1,4418:7246811,11168861 +g1,4418:6919131,11168861 +(1,4418:6919131,11168861:0,0,0 +) +g1,4418:7246811,11168861 +) +g1,4420:8195248,11168861 +g1,4420:9459831,11168861 +h1,4420:10408268,11168861:0,0,0 +k1,4420:31966992,11168861:21558724 +g1,4420:31966992,11168861 +) +] +) +g1,4421:31966991,11244882 +g1,4421:7246811,11244882 +g1,4421:7246811,11244882 +g1,4421:31966991,11244882 +g1,4421:31966991,11244882 +) +h1,4421:7246811,11441490:0,0,0 +v1,4425:7246811,13156244:0,393216,0 +(1,4444:7246811,18284393:24720180,5521365,196608 +g1,4444:7246811,18284393 +g1,4444:7246811,18284393 +g1,4444:7050203,18284393 +(1,4444:7050203,18284393:0,5521365,196608 +r1,4448:32163599,18284393:25113396,5717973,196608 +k1,4444:7050203,18284393:-25113396 +) +(1,4444:7050203,18284393:25113396,5521365,196608 +[1,4444:7246811,18284393:24720180,5324757,0 +(1,4427:7246811,13370154:24720180,410518,31456 +(1,4426:7246811,13370154:0,0,0 +g1,4426:7246811,13370154 +g1,4426:7246811,13370154 +g1,4426:6919131,13370154 +(1,4426:6919131,13370154:0,0,0 +) +g1,4426:7246811,13370154 +) +h1,4427:10724414,13370154:0,0,0 +k1,4427:31966990,13370154:21242576 +g1,4427:31966990,13370154 +) +(1,4431:7246811,14101868:24720180,404226,76021 +(1,4429:7246811,14101868:0,0,0 +g1,4429:7246811,14101868 +g1,4429:7246811,14101868 +g1,4429:6919131,14101868 +(1,4429:6919131,14101868:0,0,0 +) +g1,4429:7246811,14101868 +) +g1,4431:8195248,14101868 +g1,4431:9459831,14101868 +h1,4431:10408268,14101868:0,0,0 +k1,4431:31966992,14101868:21558724 +g1,4431:31966992,14101868 +) +(1,4433:7246811,15423406:24720180,410518,31456 +(1,4432:7246811,15423406:0,0,0 +g1,4432:7246811,15423406 +g1,4432:7246811,15423406 +g1,4432:6919131,15423406 +(1,4432:6919131,15423406:0,0,0 +) +g1,4432:7246811,15423406 +) +h1,4433:10092122,15423406:0,0,0 +k1,4433:31966990,15423406:21874868 +g1,4433:31966990,15423406 +) +(1,4437:7246811,16155120:24720180,404226,76021 +(1,4435:7246811,16155120:0,0,0 +g1,4435:7246811,16155120 +g1,4435:7246811,16155120 +g1,4435:6919131,16155120 +(1,4435:6919131,16155120:0,0,0 +) +g1,4435:7246811,16155120 +) +g1,4437:8195248,16155120 +g1,4437:9459831,16155120 +h1,4437:10408268,16155120:0,0,0 +k1,4437:31966992,16155120:21558724 +g1,4437:31966992,16155120 +) +(1,4439:7246811,17476658:24720180,410518,31456 +(1,4438:7246811,17476658:0,0,0 +g1,4438:7246811,17476658 +g1,4438:7246811,17476658 +g1,4438:6919131,17476658 +(1,4438:6919131,17476658:0,0,0 +) +g1,4438:7246811,17476658 +) +h1,4439:9775977,17476658:0,0,0 +k1,4439:31966991,17476658:22191014 +g1,4439:31966991,17476658 +) +(1,4443:7246811,18208372:24720180,404226,76021 +(1,4441:7246811,18208372:0,0,0 +g1,4441:7246811,18208372 +g1,4441:7246811,18208372 +g1,4441:6919131,18208372 +(1,4441:6919131,18208372:0,0,0 +) +g1,4441:7246811,18208372 +) +g1,4443:8195248,18208372 +g1,4443:9459831,18208372 +h1,4443:10408268,18208372:0,0,0 +k1,4443:31966992,18208372:21558724 +g1,4443:31966992,18208372 +) +] +) +g1,4444:31966991,18284393 +g1,4444:7246811,18284393 +g1,4444:7246811,18284393 +g1,4444:31966991,18284393 +g1,4444:31966991,18284393 +) +h1,4444:7246811,18481001:0,0,0 +(1,4448:7246811,19846777:24720180,513147,134348 +h1,4447:7246811,19846777:983040,0,0 +k1,4447:9894012,19846777:198776 +k1,4447:10708826,19846777:198776 +k1,4447:11926686,19846777:198775 +k1,4447:13492543,19846777:198776 +k1,4447:14350611,19846777:198776 +k1,4447:15873214,19846777:198776 +k1,4447:17263434,19846777:198775 +k1,4447:18851573,19846777:198776 +k1,4447:21430617,19846777:198776 +k1,4447:23327431,19846777:198776 +k1,4447:25261599,19846777:198775 +k1,4447:27643379,19846777:198776 +k1,4447:29983216,19846777:198776 +k1,4448:31966991,19846777:0 +) +(1,4448:7246811,20688265:24720180,505283,134348 +k1,4447:8570873,20688265:215848 +k1,4447:9557423,20688265:215847 +k1,4447:11431987,20688265:215848 +k1,4447:13628987,20688265:215847 +k1,4447:14376332,20688265:215848 +k1,4447:17304714,20688265:215847 +k1,4447:20155765,20688265:215848 +k1,4447:21390697,20688265:215847 +k1,4447:23344560,20688265:215848 +k1,4447:24176445,20688265:215847 +k1,4447:25411378,20688265:215848 +k1,4447:27586751,20688265:215847 +k1,4447:28994044,20688265:215848 +k1,4447:30228976,20688265:215847 +k1,4447:31966991,20688265:0 +) +(1,4448:7246811,21529753:24720180,513147,134348 +k1,4447:8974576,21529753:214539 +k1,4447:10136766,21529753:214539 +k1,4447:13264381,21529753:214540 +k1,4447:14106755,21529753:214539 +k1,4447:17126235,21529753:214539 +k1,4447:18734725,21529753:214539 +(1,4447:18734725,21529753:0,459977,115847 +r1,4448:19092991,21529753:358266,575824,115847 +k1,4447:18734725,21529753:-358266 +) +(1,4447:18734725,21529753:358266,459977,115847 +k1,4447:18734725,21529753:3277 +h1,4447:19089714,21529753:0,411205,112570 +) +k1,4447:19481200,21529753:214539 +k1,4447:20827546,21529753:214539 +k1,4447:25377948,21529753:214540 +k1,4447:27676532,21529753:214539 +k1,4447:29872224,21529753:214539 +k1,4447:31219225,21529753:214539 +k1,4447:31966991,21529753:0 +) +(1,4448:7246811,22371241:24720180,513147,134348 +k1,4447:10495365,22371241:258802 +k1,4447:11796188,22371241:258801 +k1,4447:15415676,22371241:258802 +k1,4447:16940634,22371241:258802 +k1,4447:19283481,22371241:258802 +k1,4447:22513684,22371241:258801 +k1,4447:23303983,22371241:258802 +k1,4447:25835574,22371241:258802 +k1,4447:26710413,22371241:258801 +k1,4447:29764326,22371241:258802 +k1,4447:31966991,22371241:0 +) +(1,4448:7246811,23212729:24720180,505283,134348 +k1,4447:10410049,23212729:228536 +k1,4447:11254622,23212729:228535 +k1,4447:13818206,23212729:228536 +k1,4447:15238186,23212729:228535 +k1,4447:18574439,23212729:228536 +k1,4447:19217788,23212729:228506 +k1,4447:20942510,23212729:228535 +k1,4447:21787084,23212729:228536 +k1,4447:25099743,23212729:228535 +k1,4447:25786376,23212729:228536 +k1,4447:26546408,23212729:228535 +k1,4447:28109912,23212729:228536 +k1,4447:28989876,23212729:228536 +k1,4447:30947906,23212729:228535 +k1,4447:31966991,23212729:0 +) +(1,4448:7246811,24054217:24720180,513147,134348 +k1,4447:8584590,24054217:245294 +k1,4447:9497040,24054217:245294 +(1,4447:9497040,24054217:0,459977,115847 +r1,4448:9855306,24054217:358266,575824,115847 +k1,4447:9497040,24054217:-358266 +) +(1,4447:9497040,24054217:358266,459977,115847 +k1,4447:9497040,24054217:3277 +h1,4447:9852029,24054217:0,411205,112570 +) +k1,4447:10100599,24054217:245293 +k1,4447:11032055,24054217:245294 +k1,4447:13361394,24054217:245294 +k1,4447:16578090,24054217:245294 +k1,4447:17474812,24054217:245294 +k1,4447:18075965,24054217:245293 +k1,4447:20314209,24054217:245294 +k1,4447:23070843,24054217:245294 +k1,4447:25721964,24054217:245294 +k1,4447:26580020,24054217:245294 +k1,4447:27181173,24054217:245293 +k1,4447:28880056,24054217:245294 +k1,4447:30724428,24054217:245294 +k1,4447:31966991,24054217:0 +) +(1,4448:7246811,24895705:24720180,513147,134348 +k1,4447:9129363,24895705:184514 +k1,4447:12162726,24895705:184513 +k1,4447:13577351,24895705:184514 +k1,4447:15963874,24895705:184513 +k1,4447:17167473,24895705:184514 +k1,4447:19356732,24895705:184513 +k1,4447:20645528,24895705:184514 +k1,4447:22159111,24895705:184513 +k1,4447:22995053,24895705:184514 +k1,4447:24533540,24895705:184513 +k1,4447:31118300,24895705:184514 +k1,4448:31966991,24895705:0 +) +(1,4448:7246811,25737193:24720180,513147,134348 +k1,4447:8913594,25737193:191568 +k1,4447:9732997,25737193:191568 +k1,4447:12764240,25737193:191568 +k1,4447:13641969,25737193:191567 +(1,4447:13641969,25737193:0,459977,115847 +r1,4448:14000235,25737193:358266,575824,115847 +k1,4447:13641969,25737193:-358266 +) +(1,4447:13641969,25737193:358266,459977,115847 +k1,4447:13641969,25737193:3277 +h1,4447:13996958,25737193:0,411205,112570 +) +k1,4447:14191803,25737193:191568 +k1,4447:14914868,25737193:191568 +k1,4447:19307949,25737193:191568 +k1,4447:20261045,25737193:191568 +k1,4447:21758746,25737193:191568 +k1,4447:25455179,25737193:191568 +k1,4447:26002606,25737193:191567 +k1,4447:28175327,25737193:191568 +k1,4447:29018323,25737193:191568 +k1,4447:30228976,25737193:191568 +k1,4447:31966991,25737193:0 +) +(1,4448:7246811,26578681:24720180,513147,134348 +k1,4447:8624512,26578681:186256 +k1,4447:10244696,26578681:186256 +k1,4447:12520895,26578681:186256 +(1,4447:12520895,26578681:0,452978,115847 +r1,4448:13934296,26578681:1413401,568825,115847 +k1,4447:12520895,26578681:-1413401 +) +(1,4447:12520895,26578681:1413401,452978,115847 +k1,4447:12520895,26578681:3277 +h1,4447:13931019,26578681:0,411205,112570 +) +k1,4447:14294222,26578681:186256 +k1,4447:16215871,26578681:186256 +(1,4447:16215871,26578681:0,459977,115847 +r1,4448:16574137,26578681:358266,575824,115847 +k1,4447:16215871,26578681:-358266 +) +(1,4447:16215871,26578681:358266,459977,115847 +k1,4447:16215871,26578681:3277 +h1,4447:16570860,26578681:0,411205,112570 +) +k1,4447:16760393,26578681:186256 +k1,4447:17894299,26578681:186255 +k1,4447:20819960,26578681:186256 +k1,4447:22110498,26578681:186256 +k1,4447:24139626,26578681:186256 +k1,4447:24941920,26578681:186256 +k1,4447:27476986,26578681:186256 +k1,4447:29749908,26578681:186256 +k1,4448:31966991,26578681:0 +) +(1,4448:7246811,27420169:24720180,505283,134348 +k1,4447:9512711,27420169:194307 +k1,4447:12888136,27420169:194307 +k1,4447:13733870,27420169:194306 +k1,4447:15663570,27420169:194307 +(1,4447:15663570,27420169:0,452978,115847 +r1,4448:17076971,27420169:1413401,568825,115847 +k1,4447:15663570,27420169:-1413401 +) +(1,4447:15663570,27420169:1413401,452978,115847 +k1,4447:15663570,27420169:3277 +h1,4447:17073694,27420169:0,411205,112570 +) +k1,4447:17444948,27420169:194307 +k1,4447:18109148,27420169:194307 +k1,4447:18834952,27420169:194307 +k1,4447:21659218,27420169:194306 +k1,4447:22504953,27420169:194307 +k1,4447:23633803,27420169:194307 +k1,4447:24598813,27420169:194307 +k1,4447:25207958,27420169:194302 +k1,4447:27484998,27420169:194306 +k1,4447:28404133,27420169:194307 +k1,4447:29882946,27420169:194307 +k1,4447:31966991,27420169:0 +) +(1,4448:7246811,28261657:24720180,513147,134348 +g1,4447:10417442,28261657 +g1,4447:13077548,28261657 +g1,4447:13632637,28261657 +g1,4447:16575858,28261657 +g1,4447:18660558,28261657 +g1,4447:19964069,28261657 +g1,4447:20911064,28261657 +g1,4447:22464267,28261657 +g1,4447:24640717,28261657 +g1,4447:26537984,28261657 +k1,4448:31966991,28261657:1933317 +g1,4448:31966991,28261657 +) +] +) +] +r1,4448:32583029,28985829:26214,23124948,0 +) +] +) +) +g1,4448:32583029,28396005 +) +h1,4448:6630773,29012043:0,0,0 +(1,4450:6630773,31103303:25952256,564462,147783 +(1,4450:6630773,31103303:2899444,534184,0 +g1,4450:6630773,31103303 +g1,4450:9530217,31103303 +) +g1,4450:13366105,31103303 +g1,4450:15917357,31103303 +g1,4450:17694366,31103303 +k1,4450:32583029,31103303:12374899 +g1,4450:32583029,31103303 +) +(1,4453:6630773,32338007:25952256,513147,134348 +k1,4452:8679905,32338007:265897 +k1,4452:9964888,32338007:265898 +k1,4452:12299101,32338007:265897 +k1,4452:13224290,32338007:265897 +k1,4452:14879551,32338007:265898 +k1,4452:17352045,32338007:265897 +k1,4452:18609503,32338007:265898 +k1,4452:20437778,32338007:265897 +k1,4452:23389996,32338007:265897 +k1,4452:27018546,32338007:265898 +k1,4452:29727625,32338007:265897 +k1,4452:32583029,32338007:0 +) +(1,4453:6630773,33179495:25952256,505283,134348 +k1,4452:7494754,33179495:212553 +k1,4452:9322115,33179495:212554 +k1,4452:11270061,33179495:212553 +k1,4452:15946928,33179495:212554 +k1,4452:19640098,33179495:212553 +k1,4452:20480487,33179495:212554 +k1,4452:22186606,33179495:212553 +k1,4452:24096542,33179495:212554 +(1,4452:24096542,33179495:0,452978,115847 +r1,4452:26916791,33179495:2820249,568825,115847 +k1,4452:24096542,33179495:-2820249 +) +(1,4452:24096542,33179495:2820249,452978,115847 +k1,4452:24096542,33179495:3277 +h1,4452:26913514,33179495:0,411205,112570 +) +k1,4452:27129344,33179495:212553 +k1,4452:27873395,33179495:212554 +k1,4452:30053339,33179495:212553 +k1,4452:32583029,33179495:0 +) +(1,4453:6630773,34020983:25952256,513147,102891 +k1,4452:10169717,34020983:235274 +k1,4452:10936488,34020983:235274 +k1,4452:12749214,34020983:235274 +k1,4452:13600527,34020983:235275 +k1,4452:14854886,34020983:235274 +k1,4452:19747804,34020983:235274 +k1,4452:20642370,34020983:235274 +k1,4452:21896729,34020983:235274 +k1,4452:23521366,34020983:235274 +k1,4452:25806606,34020983:235274 +k1,4452:27111429,34020983:235275 +k1,4452:28365788,34020983:235274 +k1,4452:30669378,34020983:235274 +k1,4452:31563944,34020983:235274 +k1,4452:32583029,34020983:0 +) +(1,4453:6630773,34862471:25952256,513147,134348 +k1,4452:9590117,34862471:246153 +k1,4452:10827830,34862471:246153 +k1,4452:14586057,34862471:246153 +k1,4452:15298171,34862471:246153 +k1,4452:17967191,34862471:246154 +k1,4452:20627690,34862471:246153 +k1,4452:22571881,34862471:246153 +k1,4452:25075749,34862471:246153 +k1,4452:26340987,34862471:246153 +k1,4452:29793161,34862471:246153 +k1,4453:32583029,34862471:0 +) +(1,4453:6630773,35703959:25952256,513147,134348 +(1,4452:6630773,35703959:0,452978,115847 +r1,4452:9451022,35703959:2820249,568825,115847 +k1,4452:6630773,35703959:-2820249 +) +(1,4452:6630773,35703959:2820249,452978,115847 +k1,4452:6630773,35703959:3277 +h1,4452:9447745,35703959:0,411205,112570 +) +k1,4452:9760814,35703959:309792 +k1,4452:12529517,35703959:309792 +k1,4452:14547177,35703959:309792 +k1,4452:17144176,35703959:309792 +k1,4452:22077532,35703959:309791 +k1,4452:23038752,35703959:309792 +k1,4452:27420296,35703959:309792 +k1,4452:28412973,35703959:309792 +k1,4452:32583029,35703959:0 +) +(1,4453:6630773,36545447:25952256,513147,126483 +k1,4452:8663626,36545447:241099 +k1,4452:10101412,36545447:241099 +k1,4452:13374862,36545447:241099 +k1,4452:14147458,36545447:241099 +k1,4452:17597200,36545447:241099 +k1,4452:18785950,36545447:241099 +k1,4452:20478671,36545447:241099 +k1,4452:22097338,36545447:241100 +k1,4452:23529882,36545447:241099 +k1,4452:24236942,36545447:241099 +k1,4452:24936138,36545447:241099 +k1,4452:27518183,36545447:241099 +(1,4452:27518183,36545447:0,414482,115847 +r1,4452:28931584,36545447:1413401,530329,115847 +k1,4452:27518183,36545447:-1413401 +) +(1,4452:27518183,36545447:1413401,414482,115847 +k1,4452:27518183,36545447:3277 +h1,4452:28928307,36545447:0,411205,112570 +) +k1,4452:29346353,36545447:241099 +k1,4452:30606537,36545447:241099 +k1,4452:32051532,36545447:241099 +k1,4452:32583029,36545447:0 +) +(1,4453:6630773,37386935:25952256,513147,115847 +g1,4452:9588412,37386935 +g1,4452:10403679,37386935 +g1,4452:11621993,37386935 +g1,4452:14599949,37386935 +g1,4452:16188541,37386935 +g1,4452:18437736,37386935 +g1,4452:19828410,37386935 +g1,4452:22882387,37386935 +g1,4452:23555441,37386935 +(1,4452:23555441,37386935:0,414482,115847 +r1,4452:25320554,37386935:1765113,530329,115847 +k1,4452:23555441,37386935:-1765113 +) +(1,4452:23555441,37386935:1765113,414482,115847 +k1,4452:23555441,37386935:3277 +h1,4452:25317277,37386935:0,411205,112570 +) +k1,4453:32583029,37386935:7088805 +g1,4453:32583029,37386935 +) +v1,4455:6630773,38379753:0,393216,0 +(1,4466:6630773,41999525:25952256,4012988,196608 +g1,4466:6630773,41999525 +g1,4466:6630773,41999525 +g1,4466:6434165,41999525 +(1,4466:6434165,41999525:0,4012988,196608 +r1,4466:32779637,41999525:26345472,4209596,196608 +k1,4466:6434165,41999525:-26345472 +) +(1,4466:6434165,41999525:26345472,4012988,196608 +[1,4466:6630773,41999525:25952256,3816380,0 +(1,4457:6630773,38593663:25952256,410518,101187 +(1,4456:6630773,38593663:0,0,0 +g1,4456:6630773,38593663 +g1,4456:6630773,38593663 +g1,4456:6303093,38593663 +(1,4456:6303093,38593663:0,0,0 +) +g1,4456:6630773,38593663 +) +g1,4457:8211502,38593663 +g1,4457:9159940,38593663 +g1,4457:13269835,38593663 +g1,4457:13902127,38593663 +g1,4457:15482857,38593663 +g1,4457:16115149,38593663 +g1,4457:16747441,38593663 +g1,4457:18328170,38593663 +g1,4457:18960462,38593663 +g1,4457:19592754,38593663 +g1,4457:22121921,38593663 +h1,4457:24334940,38593663:0,0,0 +k1,4457:32583029,38593663:8248089 +g1,4457:32583029,38593663 +) +(1,4458:6630773,39259841:25952256,410518,82312 +h1,4458:6630773,39259841:0,0,0 +g1,4458:10740667,39259841 +g1,4458:11372959,39259841 +g1,4458:12005251,39259841 +h1,4458:12637543,39259841:0,0,0 +k1,4458:32583029,39259841:19945486 +g1,4458:32583029,39259841 +) +(1,4465:6630773,39991555:25952256,379060,101187 +(1,4460:6630773,39991555:0,0,0 +g1,4460:6630773,39991555 +g1,4460:6630773,39991555 +g1,4460:6303093,39991555 +(1,4460:6303093,39991555:0,0,0 +) +g1,4460:6630773,39991555 +) +g1,4465:7579210,39991555 +g1,4465:7895356,39991555 +g1,4465:8211502,39991555 +g1,4465:8843794,39991555 +g1,4465:9476086,39991555 +g1,4465:9792232,39991555 +g1,4465:10108378,39991555 +g1,4465:10424524,39991555 +g1,4465:10740670,39991555 +h1,4465:11056816,39991555:0,0,0 +k1,4465:32583028,39991555:21526212 +g1,4465:32583028,39991555 +) +(1,4465:6630773,40657733:25952256,379060,7863 +h1,4465:6630773,40657733:0,0,0 +g1,4465:7579210,40657733 +g1,4465:8211502,40657733 +g1,4465:8843794,40657733 +g1,4465:9476086,40657733 +h1,4465:11056814,40657733:0,0,0 +k1,4465:32583030,40657733:21526216 +g1,4465:32583030,40657733 +) +(1,4465:6630773,41323911:25952256,379060,9436 +h1,4465:6630773,41323911:0,0,0 +g1,4465:7579210,41323911 +g1,4465:8211502,41323911 +g1,4465:8843794,41323911 +g1,4465:9476086,41323911 +g1,4465:9792232,41323911 +h1,4465:11056815,41323911:0,0,0 +k1,4465:32583029,41323911:21526214 +g1,4465:32583029,41323911 +) +(1,4465:6630773,41990089:25952256,388497,9436 +h1,4465:6630773,41990089:0,0,0 +g1,4465:7579210,41990089 +g1,4465:8211502,41990089 +g1,4465:8843794,41990089 +g1,4465:9476086,41990089 +h1,4465:11056814,41990089:0,0,0 +k1,4465:32583030,41990089:21526216 +g1,4465:32583030,41990089 +) +] +) +g1,4466:32583029,41999525 +g1,4466:6630773,41999525 +g1,4466:6630773,41999525 +g1,4466:32583029,41999525 +g1,4466:32583029,41999525 +) +h1,4466:6630773,42196133:0,0,0 +v1,4470:6630773,43690902:0,393216,0 +(1,4471:6630773,45116945:25952256,1819259,589824 +g1,4471:6630773,45116945 +(1,4471:6630773,45116945:25952256,1819259,589824 +(1,4471:6630773,45706769:25952256,2409083,0 +[1,4471:6630773,45706769:25952256,2409083,0 +(1,4471:6630773,45706769:25952256,2382869,0 +r1,4471:6656987,45706769:26214,2382869,0 +[1,4471:6656987,45706769:25899828,2382869,0 +(1,4471:6656987,45116945:25899828,1203221,0 +[1,4471:7246811,45116945:24720180,1203221,0 +(1,4471:7246811,45001098:24720180,1087374,115847 +k1,4470:8605676,45001098:149162 +k1,4470:10388651,45001098:149162 +k1,4470:11069309,45001098:149161 +k1,4470:12237556,45001098:149162 +k1,4470:15146439,45001098:149162 +k1,4470:15962757,45001098:149162 +(1,4470:15962757,45001098:0,452978,115847 +r1,4471:18783006,45001098:2820249,568825,115847 +k1,4470:15962757,45001098:-2820249 +) +(1,4470:15962757,45001098:2820249,452978,115847 +k1,4470:15962757,45001098:3277 +h1,4470:18779729,45001098:0,411205,112570 +) +k1,4470:18932167,45001098:149161 +k1,4470:20779367,45001098:149162 +k1,4470:21947614,45001098:149162 +k1,4470:25129127,45001098:149162 +k1,4470:25809786,45001098:149162 +(1,4470:25809786,45001098:0,414482,115847 +r1,4471:26519764,45001098:709978,530329,115847 +k1,4470:25809786,45001098:-709978 +) +(1,4470:25809786,45001098:709978,414482,115847 +k1,4470:25809786,45001098:3277 +h1,4470:26516487,45001098:0,411205,112570 +) +k1,4470:26995950,45001098:149161 +k1,4470:28541029,45001098:149162 +k1,4470:29709276,45001098:149162 +k1,4470:31966991,45001098:0 +) +] +) +] +r1,4471:32583029,45706769:26214,2382869,0 +) +] +) +) +g1,4471:32583029,45116945 +) +] +(1,4471:32583029,45706769:0,0,0 +g1,4471:32583029,45706769 ) ) ] -(1,4465:6630773,47279633:25952256,0,0 -h1,4465:6630773,47279633:25952256,0,0 +(1,4471:6630773,47279633:25952256,0,0 +h1,4471:6630773,47279633:25952256,0,0 ) ] -h1,4465:4262630,4025873:0,0,0 +h1,4471:4262630,4025873:0,0,0 ] !24646 }82 -Input:533:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:534:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:535:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:536:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:537:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:538:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:539:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:540:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:541:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:542:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:543:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:544:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:545:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:546:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:547:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1286 +Input:529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:534:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:535:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:536:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:537:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:538:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:539:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:540:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:541:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:542:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:543:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1376 {83 -[1,4531:4262630,47279633:28320399,43253760,0 -(1,4531:4262630,4025873:0,0,0 -[1,4531:-473657,4025873:25952256,0,0 -(1,4531:-473657,-710414:25952256,0,0 -h1,4531:-473657,-710414:0,0,0 -(1,4531:-473657,-710414:0,0,0 -(1,4531:-473657,-710414:0,0,0 -g1,4531:-473657,-710414 -(1,4531:-473657,-710414:65781,0,65781 -g1,4531:-407876,-710414 -[1,4531:-407876,-644633:0,0,0 +[1,4537:4262630,47279633:28320399,43253760,0 +(1,4537:4262630,4025873:0,0,0 +[1,4537:-473657,4025873:25952256,0,0 +(1,4537:-473657,-710414:25952256,0,0 +h1,4537:-473657,-710414:0,0,0 +(1,4537:-473657,-710414:0,0,0 +(1,4537:-473657,-710414:0,0,0 +g1,4537:-473657,-710414 +(1,4537:-473657,-710414:65781,0,65781 +g1,4537:-407876,-710414 +[1,4537:-407876,-644633:0,0,0 ] ) -k1,4531:-473657,-710414:-65781 +k1,4537:-473657,-710414:-65781 ) ) -k1,4531:25478599,-710414:25952256 -g1,4531:25478599,-710414 +k1,4537:25478599,-710414:25952256 +g1,4537:25478599,-710414 ) ] ) -[1,4531:6630773,47279633:25952256,43253760,0 -[1,4531:6630773,4812305:25952256,786432,0 -(1,4531:6630773,4812305:25952256,505283,134348 -(1,4531:6630773,4812305:25952256,505283,134348 -g1,4531:3078558,4812305 -[1,4531:3078558,4812305:0,0,0 -(1,4531:3078558,2439708:0,1703936,0 -k1,4531:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4531:2537886,2439708:1179648,16384,0 +[1,4537:6630773,47279633:25952256,43253760,0 +[1,4537:6630773,4812305:25952256,786432,0 +(1,4537:6630773,4812305:25952256,505283,134348 +(1,4537:6630773,4812305:25952256,505283,134348 +g1,4537:3078558,4812305 +[1,4537:3078558,4812305:0,0,0 +(1,4537:3078558,2439708:0,1703936,0 +k1,4537:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4537:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4531:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4537:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4531:3078558,4812305:0,0,0 -(1,4531:3078558,2439708:0,1703936,0 -g1,4531:29030814,2439708 -g1,4531:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4531:36151628,1915420:16384,1179648,0 +[1,4537:3078558,4812305:0,0,0 +(1,4537:3078558,2439708:0,1703936,0 +g1,4537:29030814,2439708 +g1,4537:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4537:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4531:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4537:37855564,2439708:1179648,16384,0 ) ) -k1,4531:3078556,2439708:-34777008 +k1,4537:3078556,2439708:-34777008 ) ] -[1,4531:3078558,4812305:0,0,0 -(1,4531:3078558,49800853:0,16384,2228224 -k1,4531:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4531:2537886,49800853:1179648,16384,0 +[1,4537:3078558,4812305:0,0,0 +(1,4537:3078558,49800853:0,16384,2228224 +k1,4537:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4537:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4531:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4537:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4531:3078558,4812305:0,0,0 -(1,4531:3078558,49800853:0,16384,2228224 -g1,4531:29030814,49800853 -g1,4531:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4531:36151628,51504789:16384,1179648,0 +[1,4537:3078558,4812305:0,0,0 +(1,4537:3078558,49800853:0,16384,2228224 +g1,4537:29030814,49800853 +g1,4537:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4537:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4531:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4537:37855564,49800853:1179648,16384,0 ) ) -k1,4531:3078556,49800853:-34777008 +k1,4537:3078556,49800853:-34777008 ) ] -g1,4531:6630773,4812305 -k1,4531:19562994,4812305:12135303 -g1,4531:20949735,4812305 -g1,4531:21598541,4812305 -g1,4531:24912696,4812305 -g1,4531:27600327,4812305 -g1,4531:29010006,4812305 +g1,4537:6630773,4812305 +k1,4537:19515153,4812305:12087462 +g1,4537:20901894,4812305 +g1,4537:21550700,4812305 +g1,4537:24864855,4812305 +g1,4537:27600327,4812305 +g1,4537:29010006,4812305 ) ) ] -[1,4531:6630773,45706769:25952256,40108032,0 -(1,4531:6630773,45706769:25952256,40108032,0 -(1,4531:6630773,45706769:0,0,0 -g1,4531:6630773,45706769 +[1,4537:6630773,45706769:25952256,40108032,0 +(1,4537:6630773,45706769:25952256,40108032,0 +(1,4537:6630773,45706769:0,0,0 +g1,4537:6630773,45706769 ) -[1,4531:6630773,45706769:25952256,40108032,0 -v1,4465:6630773,6254097:0,393216,0 -(1,4465:6630773,7921187:25952256,2060306,616038 -g1,4465:6630773,7921187 -(1,4465:6630773,7921187:25952256,2060306,616038 -(1,4465:6630773,8537225:25952256,2676344,0 -[1,4465:6630773,8537225:25952256,2676344,0 -(1,4465:6630773,8511011:25952256,2650130,0 -r1,4465:6656987,8511011:26214,2650130,0 -[1,4465:6656987,8511011:25899828,2650130,0 -(1,4465:6656987,7921187:25899828,1470482,0 -[1,4465:7246811,7921187:24720180,1470482,0 -(1,4465:7246811,6963852:24720180,513147,134348 -k1,4464:8190689,6963852:182350 -k1,4464:10630754,6963852:182350 -k1,4464:12309291,6963852:182350 -k1,4464:13143069,6963852:182350 -k1,4464:14516864,6963852:182350 -k1,4464:16076125,6963852:182350 -k1,4464:17206126,6963852:182350 -k1,4464:17744335,6963852:182349 -k1,4464:19293766,6963852:182350 -k1,4464:21395010,6963852:182350 -k1,4464:23099106,6963852:182350 -k1,4464:24229107,6963852:182350 -k1,4464:27173800,6963852:182350 -k1,4464:28890348,6963852:182350 -k1,4464:31083343,6963852:182350 -(1,4464:31083343,6963852:0,414482,115847 -r1,4465:31793321,6963852:709978,530329,115847 -k1,4464:31083343,6963852:-709978 -) -(1,4464:31083343,6963852:709978,414482,115847 -k1,4464:31083343,6963852:3277 -h1,4464:31790044,6963852:0,411205,112570 -) -k1,4465:31966991,6963852:0 -) -(1,4465:7246811,7805340:24720180,505283,115847 -(1,4464:7246811,7805340:0,414482,115847 -r1,4465:8660212,7805340:1413401,530329,115847 -k1,4464:7246811,7805340:-1413401 -) -(1,4464:7246811,7805340:1413401,414482,115847 -k1,4464:7246811,7805340:3277 -h1,4464:8656935,7805340:0,411205,112570 -) -g1,4464:8859441,7805340 -g1,4464:10250115,7805340 -(1,4464:10250115,7805340:0,414482,115847 -r1,4465:12015228,7805340:1765113,530329,115847 -k1,4464:10250115,7805340:-1765113 -) -(1,4464:10250115,7805340:1765113,414482,115847 -k1,4464:10250115,7805340:3277 -h1,4464:12011951,7805340:0,411205,112570 -) -k1,4465:31966990,7805340:19778092 -g1,4465:31966990,7805340 -) -] -) -] -r1,4465:32583029,8511011:26214,2650130,0 -) -] -) -) -g1,4465:32583029,7921187 -) -h1,4465:6630773,8537225:0,0,0 -(1,4468:6630773,9705129:25952256,513147,134348 -h1,4467:6630773,9705129:983040,0,0 -k1,4467:9590324,9705129:193276 -k1,4467:11873544,9705129:193277 -k1,4467:15092617,9705129:193276 -k1,4467:16570400,9705129:193277 -k1,4467:18774321,9705129:193276 -k1,4467:19323458,9705129:193277 -k1,4467:21668281,9705129:193276 -k1,4467:23250921,9705129:193277 -k1,4467:25494163,9705129:193276 -k1,4467:26370325,9705129:193277 -k1,4467:28265571,9705129:193276 -k1,4467:31563944,9705129:193277 -k1,4467:32583029,9705129:0 -) -(1,4468:6630773,10546617:25952256,513147,134348 -k1,4467:8933708,10546617:161874 -k1,4467:11800907,10546617:161873 -k1,4467:13067063,10546617:161874 -k1,4467:13976703,10546617:161874 -k1,4467:17286927,10546617:161874 -k1,4467:18100229,10546617:161874 -k1,4467:19281187,10546617:161873 -k1,4467:22580269,10546617:161874 -k1,4467:26450170,10546617:161874 -k1,4467:27271335,10546617:161873 -k1,4467:28452294,10546617:161874 -k1,4467:31309664,10546617:161874 -k1,4467:32583029,10546617:0 -) -(1,4468:6630773,11388105:25952256,513147,134348 -g1,4467:7446040,11388105 -g1,4467:8664354,11388105 -g1,4467:10517056,11388105 -g1,4467:11954260,11388105 -g1,4467:12839651,11388105 -g1,4467:13690308,11388105 -g1,4467:14908622,11388105 -g1,4467:16845866,11388105 -g1,4467:17704387,11388105 -g1,4467:18259476,11388105 -g1,4467:20970045,11388105 -g1,4467:23594761,11388105 -g1,4467:24813075,11388105 -g1,4467:26665777,11388105 -k1,4468:32583029,11388105:4354218 -g1,4468:32583029,11388105 -) -v1,4470:6630773,12380699:0,393216,0 -(1,4486:6630773,17454130:25952256,5466647,196608 -g1,4486:6630773,17454130 -g1,4486:6630773,17454130 -g1,4486:6434165,17454130 -(1,4486:6434165,17454130:0,5466647,196608 -r1,4486:32779637,17454130:26345472,5663255,196608 -k1,4486:6434165,17454130:-26345472 -) -(1,4486:6434165,17454130:26345472,5466647,196608 -[1,4486:6630773,17454130:25952256,5270039,0 -(1,4472:6630773,12594609:25952256,410518,82312 -(1,4471:6630773,12594609:0,0,0 -g1,4471:6630773,12594609 -g1,4471:6630773,12594609 -g1,4471:6303093,12594609 -(1,4471:6303093,12594609:0,0,0 -) -g1,4471:6630773,12594609 -) -k1,4472:6630773,12594609:0 -g1,4472:10740667,12594609 -g1,4472:11372959,12594609 -g1,4472:12005251,12594609 -g1,4472:13269834,12594609 -g1,4472:13902126,12594609 -k1,4472:13902126,12594609:0 -h1,4472:14850564,12594609:0,0,0 -k1,4472:32583028,12594609:17732464 -g1,4472:32583028,12594609 -) -(1,4479:6630773,13326323:25952256,379060,101187 -(1,4474:6630773,13326323:0,0,0 -g1,4474:6630773,13326323 -g1,4474:6630773,13326323 -g1,4474:6303093,13326323 -(1,4474:6303093,13326323:0,0,0 -) -g1,4474:6630773,13326323 -) -g1,4479:7579210,13326323 -g1,4479:7895356,13326323 -g1,4479:8211502,13326323 -g1,4479:8843794,13326323 -h1,4479:9159940,13326323:0,0,0 -k1,4479:32583028,13326323:23423088 -g1,4479:32583028,13326323 -) -(1,4479:6630773,13992501:25952256,379060,4718 -h1,4479:6630773,13992501:0,0,0 -g1,4479:7579210,13992501 -g1,4479:8211502,13992501 -g1,4479:8843794,13992501 -h1,4479:9159940,13992501:0,0,0 -k1,4479:32583028,13992501:23423088 -g1,4479:32583028,13992501 -) -(1,4479:6630773,14658679:25952256,379060,9436 -h1,4479:6630773,14658679:0,0,0 -g1,4479:7579210,14658679 -g1,4479:8211502,14658679 -g1,4479:8843794,14658679 -h1,4479:9159940,14658679:0,0,0 -k1,4479:32583028,14658679:23423088 -g1,4479:32583028,14658679 -) -(1,4479:6630773,15324857:25952256,388497,9436 -h1,4479:6630773,15324857:0,0,0 -g1,4479:7579210,15324857 -g1,4479:8211502,15324857 -g1,4479:8843794,15324857 -h1,4479:9159940,15324857:0,0,0 -k1,4479:32583028,15324857:23423088 -g1,4479:32583028,15324857 -) -(1,4481:6630773,16646395:25952256,410518,82312 -(1,4480:6630773,16646395:0,0,0 -g1,4480:6630773,16646395 -g1,4480:6630773,16646395 -g1,4480:6303093,16646395 -(1,4480:6303093,16646395:0,0,0 -) -g1,4480:6630773,16646395 -) -k1,4481:6630773,16646395:0 -g1,4481:10740667,16646395 -g1,4481:11372959,16646395 -g1,4481:12005251,16646395 -h1,4481:13269835,16646395:0,0,0 -k1,4481:32583029,16646395:19313194 -g1,4481:32583029,16646395 -) -(1,4485:6630773,17378109:25952256,404226,76021 -(1,4483:6630773,17378109:0,0,0 -g1,4483:6630773,17378109 -g1,4483:6630773,17378109 -g1,4483:6303093,17378109 -(1,4483:6303093,17378109:0,0,0 -) -g1,4483:6630773,17378109 -) -g1,4485:7579210,17378109 -g1,4485:8843793,17378109 -g1,4485:9476085,17378109 -g1,4485:10108377,17378109 -h1,4485:10424523,17378109:0,0,0 -k1,4485:32583029,17378109:22158506 -g1,4485:32583029,17378109 -) -] -) -g1,4486:32583029,17454130 -g1,4486:6630773,17454130 -g1,4486:6630773,17454130 -g1,4486:32583029,17454130 -g1,4486:32583029,17454130 -) -h1,4486:6630773,17650738:0,0,0 -(1,4491:6630773,18818642:25952256,513147,134348 -h1,4489:6630773,18818642:983040,0,0 -k1,4489:9422794,18818642:160095 -k1,4489:10242181,18818642:160095 -k1,4489:11421361,18818642:160095 -k1,4489:14573175,18818642:160095 -k1,4489:15349308,18818642:160095 -k1,4489:16528488,18818642:160095 -k1,4489:17836773,18818642:160094 -k1,4489:19651652,18818642:160095 -k1,4489:21307934,18818642:160095 -k1,4489:23768998,18818642:160095 -k1,4489:25382682,18818642:160095 -k1,4489:26561862,18818642:160095 -k1,4489:29157275,18818642:160095 -k1,4489:30706733,18818642:160095 -k1,4491:32583029,18818642:0 -) -(1,4491:6630773,19660130:25952256,513147,134348 -(1,4489:6630773,19660130:0,459977,115847 -r1,4489:8044174,19660130:1413401,575824,115847 -k1,4489:6630773,19660130:-1413401 -) -(1,4489:6630773,19660130:1413401,459977,115847 -k1,4489:6630773,19660130:3277 -h1,4489:8040897,19660130:0,411205,112570 -) -k1,4489:8473710,19660130:255866 -k1,4489:9683126,19660130:255867 -k1,4489:11043274,19660130:255866 -k1,4489:12916570,19660130:255867 -k1,4489:14191521,19660130:255866 -k1,4489:17226115,19660130:255867 -k1,4489:19162324,19660130:255866 -k1,4489:21153584,19660130:255867 -k1,4489:21765310,19660130:255866 -k1,4489:23304372,19660130:255867 -k1,4489:25298253,19660130:255866 -k1,4489:26020081,19660130:255867 -k1,4489:27144299,19660130:255866 -k1,4489:28948782,19660130:255867 -k1,4489:29856076,19660130:255866 -k1,4491:32583029,19660130:0 -) -(1,4491:6630773,20501618:25952256,505283,134348 -(1,4489:6630773,20501618:0,459977,115847 -r1,4489:8044174,20501618:1413401,575824,115847 -k1,4489:6630773,20501618:-1413401 -) -(1,4489:6630773,20501618:1413401,459977,115847 -k1,4489:6630773,20501618:3277 -h1,4489:8040897,20501618:0,411205,112570 -) -k1,4489:8277793,20501618:233619 -k1,4489:12176185,20501618:233619 -k1,4489:13092689,20501618:233619 -k1,4489:14194660,20501618:233619 -k1,4489:15532561,20501618:233619 -k1,4489:17772892,20501618:233619 -k1,4489:19025597,20501618:233620 -k1,4489:21102088,20501618:233619 -k1,4489:21987135,20501618:233619 -(1,4489:21987135,20501618:0,459977,115847 -r1,4489:23400536,20501618:1413401,575824,115847 -k1,4489:21987135,20501618:-1413401 -) -(1,4489:21987135,20501618:1413401,459977,115847 -k1,4489:21987135,20501618:3277 -h1,4489:23397259,20501618:0,411205,112570 -) -k1,4489:23807825,20501618:233619 -k1,4489:26609145,20501618:233619 -k1,4489:27458802,20501618:233619 -k1,4489:28711506,20501618:233619 -k1,4489:31563944,20501618:233619 -k1,4489:32583029,20501618:0 -) -(1,4491:6630773,21343106:25952256,505283,126483 -g1,4489:10150711,21343106 -g1,4489:12388110,21343106 -k1,4491:32583028,21343106:18340904 -g1,4491:32583028,21343106 -) -v1,4491:6630773,22511011:0,393216,0 -(1,4507:6630773,36643396:25952256,14525601,616038 -g1,4507:6630773,36643396 -(1,4507:6630773,36643396:25952256,14525601,616038 -(1,4507:6630773,37259434:25952256,15141639,0 -[1,4507:6630773,37259434:25952256,15141639,0 -(1,4507:6630773,37233220:25952256,15089211,0 -r1,4507:6656987,37233220:26214,15089211,0 -[1,4507:6656987,37233220:25899828,15089211,0 -(1,4507:6656987,36643396:25899828,13909563,0 -[1,4507:7246811,36643396:24720180,13909563,0 -(1,4492:7246811,23819369:24720180,1085536,298548 -(1,4491:7246811,23819369:0,1085536,298548 -r1,4507:8753226,23819369:1506415,1384084,298548 -k1,4491:7246811,23819369:-1506415 -) -(1,4491:7246811,23819369:1506415,1085536,298548 -) -k1,4491:8950307,23819369:197081 -k1,4491:9775224,23819369:197082 -k1,4491:10991390,23819369:197081 -k1,4491:13849889,23819369:197082 -k1,4491:16075965,23819369:197081 -k1,4491:17292132,23819369:197082 -k1,4491:19557529,23819369:197081 -k1,4491:20370649,23819369:197082 -k1,4491:21586815,23819369:197081 -k1,4491:25223882,23819369:197082 -k1,4491:27626250,23819369:197081 -k1,4491:28509494,23819369:197082 -k1,4491:29725660,23819369:197081 -k1,4491:31966991,23819369:0 -) -(1,4492:7246811,24660857:24720180,513147,134348 -k1,4491:10464044,24660857:144905 -k1,4491:11260377,24660857:144905 -(1,4491:11260377,24660857:0,452978,115847 -r1,4507:14080626,24660857:2820249,568825,115847 -k1,4491:11260377,24660857:-2820249 -) -(1,4491:11260377,24660857:2820249,452978,115847 -k1,4491:11260377,24660857:3277 -h1,4491:14077349,24660857:0,411205,112570 -) -k1,4491:14225531,24660857:144905 -k1,4491:15361996,24660857:144905 -k1,4491:16813034,24660857:144905 -k1,4491:19796303,24660857:144905 -k1,4491:21951198,24660857:144906 -(1,4491:21951198,24660857:0,459977,115847 -r1,4507:23716311,24660857:1765113,575824,115847 -k1,4491:21951198,24660857:-1765113 -) -(1,4491:21951198,24660857:1765113,459977,115847 -k1,4491:21951198,24660857:3277 -h1,4491:23713034,24660857:0,411205,112570 -) -k1,4491:23861216,24660857:144905 -k1,4491:25078290,24660857:144905 -k1,4491:25689156,24660857:144905 -k1,4491:26900332,24660857:144905 -k1,4491:29128627,24660857:144905 -k1,4491:31966991,24660857:0 -) -(1,4492:7246811,25502345:24720180,513147,134348 -k1,4491:8061469,25502345:198620 -k1,4491:9279174,25502345:198620 -k1,4491:13708798,25502345:198620 -k1,4491:15739805,25502345:198620 -k1,4491:17676440,25502345:198620 -k1,4491:18684430,25502345:198620 -k1,4491:21394389,25502345:198619 -(1,4491:21394389,25502345:0,414482,115847 -r1,4507:21752655,25502345:358266,530329,115847 -k1,4491:21394389,25502345:-358266 -) -(1,4491:21394389,25502345:358266,414482,115847 -k1,4491:21394389,25502345:3277 -h1,4491:21749378,25502345:0,411205,112570 -) -k1,4491:21951275,25502345:198620 -k1,4491:22765933,25502345:198620 -k1,4491:23983638,25502345:198620 -k1,4491:25571621,25502345:198620 -k1,4491:27646537,25502345:198620 -(1,4491:27646537,25502345:0,459977,115847 -r1,4507:29059938,25502345:1413401,575824,115847 -k1,4491:27646537,25502345:-1413401 -) -(1,4491:27646537,25502345:1413401,459977,115847 -k1,4491:27646537,25502345:3277 -h1,4491:29056661,25502345:0,411205,112570 -) -k1,4491:29432228,25502345:198620 -k1,4491:31608725,25502345:198620 -(1,4491:31608725,25502345:0,414482,115847 -r1,4507:31966991,25502345:358266,530329,115847 -k1,4491:31608725,25502345:-358266 -) -(1,4491:31608725,25502345:358266,414482,115847 -k1,4491:31608725,25502345:3277 -h1,4491:31963714,25502345:0,411205,112570 -) -k1,4491:31966991,25502345:0 -) -(1,4492:7246811,26343833:24720180,513147,134348 -k1,4491:8985317,26343833:170885 -k1,4491:10175287,26343833:170885 -k1,4491:14403506,26343833:170885 -k1,4491:15105889,26343833:170886 -k1,4491:17598715,26343833:170885 -k1,4491:19282826,26343833:170885 -k1,4491:20069749,26343833:170885 -k1,4491:21259719,26343833:170885 -k1,4491:24870589,26343833:170885 -k1,4491:27874596,26343833:170886 -k1,4491:28661519,26343833:170885 -k1,4491:29188264,26343833:170885 -k1,4491:31966991,26343833:0 -) -(1,4492:7246811,27185321:24720180,513147,7863 -g1,4491:8835403,27185321 -g1,4491:10910928,27185321 -g1,4491:12504108,27185321 -g1,4491:13512707,27185321 -k1,4492:31966991,27185321:16746416 -g1,4492:31966991,27185321 -) -v1,4494:7246811,28375787:0,393216,0 -(1,4503:7246811,30739224:24720180,2756653,196608 -g1,4503:7246811,30739224 -g1,4503:7246811,30739224 -g1,4503:7050203,30739224 -(1,4503:7050203,30739224:0,2756653,196608 -r1,4507:32163599,30739224:25113396,2953261,196608 -k1,4503:7050203,30739224:-25113396 -) -(1,4503:7050203,30739224:25113396,2756653,196608 -[1,4503:7246811,30739224:24720180,2560045,0 -(1,4496:7246811,28567676:24720180,388497,0 -(1,4495:7246811,28567676:0,0,0 -g1,4495:7246811,28567676 -g1,4495:7246811,28567676 -g1,4495:6919131,28567676 -(1,4495:6919131,28567676:0,0,0 -) -g1,4495:7246811,28567676 -) -g1,4496:7879103,28567676 -g1,4496:8827541,28567676 -h1,4496:9143687,28567676:0,0,0 -k1,4496:31966991,28567676:22823304 -g1,4496:31966991,28567676 -) -(1,4497:7246811,29233854:24720180,410518,82312 -h1,4497:7246811,29233854:0,0,0 -g1,4497:11356705,29233854 -g1,4497:11988997,29233854 -g1,4497:12621289,29233854 -h1,4497:13253581,29233854:0,0,0 -k1,4497:31966991,29233854:18713410 -g1,4497:31966991,29233854 -) -(1,4502:7246811,29965568:24720180,404226,101187 -(1,4499:7246811,29965568:0,0,0 -g1,4499:7246811,29965568 -g1,4499:7246811,29965568 -g1,4499:6919131,29965568 -(1,4499:6919131,29965568:0,0,0 -) -g1,4499:7246811,29965568 -) -g1,4502:8195248,29965568 -g1,4502:9459831,29965568 -g1,4502:10092123,29965568 -g1,4502:10724415,29965568 -h1,4502:11040561,29965568:0,0,0 -k1,4502:31966991,29965568:20926430 -g1,4502:31966991,29965568 -) -(1,4502:7246811,30631746:24720180,404226,107478 -h1,4502:7246811,30631746:0,0,0 -g1,4502:8195248,30631746 -g1,4502:9143685,30631746 -g1,4502:11040560,30631746 -g1,4502:12305143,30631746 -g1,4502:15150455,30631746 -h1,4502:18311912,30631746:0,0,0 -k1,4502:31966991,30631746:13655079 -g1,4502:31966991,30631746 -) -] -) -g1,4503:31966991,30739224 -g1,4503:7246811,30739224 -g1,4503:7246811,30739224 -g1,4503:31966991,30739224 -g1,4503:31966991,30739224 -) -h1,4503:7246811,30935832:0,0,0 -(1,4507:7246811,32301608:24720180,513147,134348 -h1,4506:7246811,32301608:983040,0,0 -k1,4506:9597065,32301608:170527 -k1,4506:10860077,32301608:170527 -k1,4506:11697760,32301608:170527 -(1,4506:11697760,32301608:0,452978,115847 -r1,4507:14518009,32301608:2820249,568825,115847 -k1,4506:11697760,32301608:-2820249 -) -(1,4506:11697760,32301608:2820249,452978,115847 -k1,4506:11697760,32301608:3277 -h1,4506:14514732,32301608:0,411205,112570 -) -k1,4506:14688535,32301608:170526 -k1,4506:15390559,32301608:170527 -k1,4506:19217340,32301608:170527 -k1,4506:20460036,32301608:170527 -k1,4506:22280760,32301608:170527 -k1,4506:24317097,32301608:170527 -k1,4506:25139051,32301608:170526 -k1,4506:27152450,32301608:170527 -k1,4506:27939015,32301608:170527 -k1,4506:29629322,32301608:170527 -k1,4507:31966991,32301608:0 -) -(1,4507:7246811,33143096:24720180,505283,134348 -k1,4506:8503008,33143096:199757 -k1,4506:9354193,33143096:199757 -k1,4506:11968296,33143096:199757 -k1,4506:13903446,33143096:199757 -k1,4506:15122288,33143096:199757 -k1,4506:18536587,33143096:199758 -k1,4506:21482958,33143096:199757 -(1,4506:21482958,33143096:0,452978,115847 -r1,4507:22192936,33143096:709978,568825,115847 -k1,4506:21482958,33143096:-709978 -) -(1,4506:21482958,33143096:709978,452978,115847 -k1,4506:21482958,33143096:3277 -h1,4506:22189659,33143096:0,411205,112570 -) -k1,4506:22566363,33143096:199757 -k1,4506:24146964,33143096:199757 -k1,4506:26000194,33143096:199757 -k1,4506:28115568,33143096:199757 -k1,4506:28966753,33143096:199757 -k1,4506:31966991,33143096:0 -) -(1,4507:7246811,33984584:24720180,513147,126483 -k1,4506:11425432,33984584:272020 -k1,4506:13978759,33984584:272019 -k1,4506:14902207,33984584:272020 -k1,4506:18200024,33984584:272020 -k1,4506:19618268,33984584:272019 -(1,4506:19618268,33984584:0,452978,115847 -r1,4507:22438517,33984584:2820249,568825,115847 -k1,4506:19618268,33984584:-2820249 -) -(1,4506:19618268,33984584:2820249,452978,115847 -k1,4506:19618268,33984584:3277 -h1,4506:22435240,33984584:0,411205,112570 -) -k1,4506:22710537,33984584:272020 -k1,4506:24174002,33984584:272020 -(1,4506:24174002,33984584:0,452978,115847 -r1,4507:26290827,33984584:2116825,568825,115847 -k1,4506:24174002,33984584:-2116825 -) -(1,4506:24174002,33984584:2116825,452978,115847 -k1,4506:24174002,33984584:3277 -h1,4506:26287550,33984584:0,411205,112570 -) -k1,4506:26562846,33984584:272019 -k1,4506:29924889,33984584:272020 -k1,4506:31966991,33984584:0 -) -(1,4507:7246811,34826072:24720180,505283,134348 -k1,4506:8660235,34826072:216737 -k1,4506:10901379,34826072:216737 -k1,4506:12543524,34826072:216737 -k1,4506:14044766,34826072:216736 -k1,4506:14617363,34826072:216737 -k1,4506:16665176,34826072:216737 -k1,4506:17413410,34826072:216737 -k1,4506:20469167,34826072:216737 -k1,4506:21337332,34826072:216737 -k1,4506:22301835,34826072:216737 -k1,4506:24205468,34826072:216736 -k1,4506:27000391,34826072:216737 -k1,4506:28408573,34826072:216737 -k1,4506:30947906,34826072:216737 -k1,4506:31966991,34826072:0 -) -(1,4507:7246811,35667560:24720180,513147,134348 -k1,4506:9118137,35667560:221129 -k1,4506:11549141,35667560:221130 -k1,4506:12638622,35667560:221129 -k1,4506:15040134,35667560:221129 -k1,4506:16009029,35667560:221129 -k1,4506:17928197,35667560:221130 -k1,4506:19884719,35667560:221129 -k1,4506:21237655,35667560:221129 -k1,4506:22118076,35667560:221129 -k1,4506:24035933,35667560:221130 -k1,4506:27456530,35667560:221129 -k1,4506:28580090,35667560:221129 -k1,4506:31966991,35667560:0 -) -(1,4507:7246811,36509048:24720180,513147,134348 -k1,4506:8662792,36509048:178006 -k1,4506:9500090,36509048:178006 -k1,4506:12397840,36509048:178006 -k1,4506:15535452,36509048:178006 -k1,4506:18650782,36509048:178006 -k1,4506:19360285,36509048:178006 -k1,4506:20189718,36509048:178005 -k1,4506:21875707,36509048:178006 -k1,4506:23072798,36509048:178006 -k1,4506:25319120,36509048:178006 -k1,4506:26156418,36509048:178006 -k1,4506:27723787,36509048:178006 -k1,4506:30108390,36509048:178006 -k1,4507:31966991,36509048:0 -k1,4507:31966991,36509048:0 -) -] -) -] -r1,4507:32583029,37233220:26214,15089211,0 -) -] -) -) -g1,4507:32583029,36643396 -) -h1,4507:6630773,37259434:0,0,0 -(1,4510:6630773,38427338:25952256,513147,134348 -h1,4509:6630773,38427338:983040,0,0 -k1,4509:8340570,38427338:239169 -k1,4509:11884760,38427338:239209 -k1,4509:13637195,38427338:239209 -k1,4509:15114379,38427338:239209 -k1,4509:16012880,38427338:239209 -k1,4509:18819790,38427338:239209 -k1,4509:19414859,38427338:239209 -k1,4509:22036957,38427338:239209 -k1,4509:23037695,38427338:239210 -k1,4509:25014919,38427338:239209 -k1,4509:26821749,38427338:239209 -k1,4509:27416818,38427338:239209 -k1,4509:29045390,38427338:239209 -k1,4509:31160895,38427338:239209 -k1,4509:31931601,38427338:239209 -k1,4509:32583029,38427338:0 -) -(1,4510:6630773,39268826:25952256,513147,134348 -k1,4509:8875223,39268826:237738 -(1,4509:8875223,39268826:0,414482,115847 -r1,4509:10288624,39268826:1413401,530329,115847 -k1,4509:8875223,39268826:-1413401 -) -(1,4509:8875223,39268826:1413401,414482,115847 -k1,4509:8875223,39268826:3277 -h1,4509:10285347,39268826:0,411205,112570 -) -k1,4509:10526363,39268826:237739 -k1,4509:11415529,39268826:237738 -k1,4509:13836272,39268826:237739 -k1,4509:14690048,39268826:237738 -k1,4509:15946872,39268826:237739 -k1,4509:17838083,39268826:237738 -k1,4509:19313796,39268826:237738 -k1,4509:20237697,39268826:237739 -k1,4509:23429143,39268826:237738 -k1,4509:24658442,39268826:237739 -k1,4509:27241714,39268826:237738 -k1,4509:29047074,39268826:237739 -(1,4509:29047074,39268826:0,452978,115847 -r1,4509:30460475,39268826:1413401,568825,115847 -k1,4509:29047074,39268826:-1413401 -) -(1,4509:29047074,39268826:1413401,452978,115847 -k1,4509:29047074,39268826:3277 -h1,4509:30457198,39268826:0,411205,112570 -) -k1,4509:31202185,39268826:237738 -k1,4509:32583029,39268826:0 -) -(1,4510:6630773,40110314:25952256,513147,126483 -g1,4509:9814512,40110314 -g1,4509:12758389,40110314 -(1,4509:12758389,40110314:0,459977,115847 -r1,4509:14171790,40110314:1413401,575824,115847 -k1,4509:12758389,40110314:-1413401 -) -(1,4509:12758389,40110314:1413401,459977,115847 -k1,4509:12758389,40110314:3277 -h1,4509:14168513,40110314:0,411205,112570 -) -g1,4509:14371019,40110314 -g1,4509:15186286,40110314 -k1,4510:32583029,40110314:15560424 -g1,4510:32583029,40110314 -) -v1,4512:6630773,41102908:0,393216,0 -(1,4527:6630773,45510161:25952256,4800469,196608 -g1,4527:6630773,45510161 -g1,4527:6630773,45510161 -g1,4527:6434165,45510161 -(1,4527:6434165,45510161:0,4800469,196608 -r1,4527:32779637,45510161:26345472,4997077,196608 -k1,4527:6434165,45510161:-26345472 -) -(1,4527:6434165,45510161:26345472,4800469,196608 -[1,4527:6630773,45510161:25952256,4603861,0 -(1,4514:6630773,41316818:25952256,410518,6290 -(1,4513:6630773,41316818:0,0,0 -g1,4513:6630773,41316818 -g1,4513:6630773,41316818 -g1,4513:6303093,41316818 -(1,4513:6303093,41316818:0,0,0 -) -g1,4513:6630773,41316818 -) -g1,4514:8527647,41316818 -g1,4514:9476085,41316818 -h1,4514:10740668,41316818:0,0,0 -k1,4514:32583028,41316818:21842360 -g1,4514:32583028,41316818 -) -(1,4515:6630773,41982996:25952256,410518,76021 -h1,4515:6630773,41982996:0,0,0 -k1,4515:6630773,41982996:0 -h1,4515:11372958,41982996:0,0,0 -k1,4515:32583030,41982996:21210072 -g1,4515:32583030,41982996 -) -(1,4519:6630773,42714710:25952256,404226,101187 -(1,4517:6630773,42714710:0,0,0 -g1,4517:6630773,42714710 -g1,4517:6630773,42714710 -g1,4517:6303093,42714710 -(1,4517:6303093,42714710:0,0,0 -) -g1,4517:6630773,42714710 -) -g1,4519:7579210,42714710 -g1,4519:8843793,42714710 -g1,4519:10108376,42714710 -g1,4519:11372959,42714710 -h1,4519:12321396,42714710:0,0,0 -k1,4519:32583028,42714710:20261632 -g1,4519:32583028,42714710 -) -(1,4521:6630773,44036248:25952256,410518,101187 -(1,4520:6630773,44036248:0,0,0 -g1,4520:6630773,44036248 -g1,4520:6630773,44036248 -g1,4520:6303093,44036248 -(1,4520:6303093,44036248:0,0,0 -) -g1,4520:6630773,44036248 -) -g1,4521:10740667,44036248 -g1,4521:11689105,44036248 -k1,4521:11689105,44036248:0 -h1,4521:12953688,44036248:0,0,0 -k1,4521:32583028,44036248:19629340 -g1,4521:32583028,44036248 -) -(1,4522:6630773,44702426:25952256,410518,76021 -h1,4522:6630773,44702426:0,0,0 -k1,4522:6630773,44702426:0 -h1,4522:11372958,44702426:0,0,0 -k1,4522:32583030,44702426:21210072 -g1,4522:32583030,44702426 -) -(1,4526:6630773,45434140:25952256,404226,76021 -(1,4524:6630773,45434140:0,0,0 -g1,4524:6630773,45434140 -g1,4524:6630773,45434140 -g1,4524:6303093,45434140 -(1,4524:6303093,45434140:0,0,0 -) -g1,4524:6630773,45434140 -) -g1,4526:7579210,45434140 -g1,4526:8843793,45434140 -g1,4526:10108376,45434140 -h1,4526:11056813,45434140:0,0,0 -k1,4526:32583029,45434140:21526216 -g1,4526:32583029,45434140 -) -] -) -g1,4527:32583029,45510161 -g1,4527:6630773,45510161 -g1,4527:6630773,45510161 -g1,4527:32583029,45510161 -g1,4527:32583029,45510161 -) -h1,4527:6630773,45706769:0,0,0 -] -(1,4531:32583029,45706769:0,0,0 -g1,4531:32583029,45706769 -) -) -] -(1,4531:6630773,47279633:25952256,0,0 -h1,4531:6630773,47279633:25952256,0,0 -) -] -h1,4531:4262630,4025873:0,0,0 -] -!27101 +[1,4537:6630773,45706769:25952256,40108032,0 +v1,4471:6630773,6254097:0,393216,0 +(1,4471:6630773,7921187:25952256,2060306,616038 +g1,4471:6630773,7921187 +(1,4471:6630773,7921187:25952256,2060306,616038 +(1,4471:6630773,8537225:25952256,2676344,0 +[1,4471:6630773,8537225:25952256,2676344,0 +(1,4471:6630773,8511011:25952256,2650130,0 +r1,4471:6656987,8511011:26214,2650130,0 +[1,4471:6656987,8511011:25899828,2650130,0 +(1,4471:6656987,7921187:25899828,1470482,0 +[1,4471:7246811,7921187:24720180,1470482,0 +(1,4471:7246811,6963852:24720180,513147,134348 +k1,4470:8190689,6963852:182350 +k1,4470:10630754,6963852:182350 +k1,4470:12309291,6963852:182350 +k1,4470:13143069,6963852:182350 +k1,4470:14516864,6963852:182350 +k1,4470:16076125,6963852:182350 +k1,4470:17206126,6963852:182350 +k1,4470:17744335,6963852:182349 +k1,4470:19293766,6963852:182350 +k1,4470:21395010,6963852:182350 +k1,4470:23099106,6963852:182350 +k1,4470:24229107,6963852:182350 +k1,4470:27173800,6963852:182350 +k1,4470:28890348,6963852:182350 +k1,4470:31083343,6963852:182350 +(1,4470:31083343,6963852:0,414482,115847 +r1,4471:31793321,6963852:709978,530329,115847 +k1,4470:31083343,6963852:-709978 +) +(1,4470:31083343,6963852:709978,414482,115847 +k1,4470:31083343,6963852:3277 +h1,4470:31790044,6963852:0,411205,112570 +) +k1,4471:31966991,6963852:0 +) +(1,4471:7246811,7805340:24720180,505283,115847 +(1,4470:7246811,7805340:0,414482,115847 +r1,4471:8660212,7805340:1413401,530329,115847 +k1,4470:7246811,7805340:-1413401 +) +(1,4470:7246811,7805340:1413401,414482,115847 +k1,4470:7246811,7805340:3277 +h1,4470:8656935,7805340:0,411205,112570 +) +g1,4470:8859441,7805340 +g1,4470:10250115,7805340 +(1,4470:10250115,7805340:0,414482,115847 +r1,4471:12015228,7805340:1765113,530329,115847 +k1,4470:10250115,7805340:-1765113 +) +(1,4470:10250115,7805340:1765113,414482,115847 +k1,4470:10250115,7805340:3277 +h1,4470:12011951,7805340:0,411205,112570 +) +k1,4471:31966990,7805340:19778092 +g1,4471:31966990,7805340 +) +] +) +] +r1,4471:32583029,8511011:26214,2650130,0 +) +] +) +) +g1,4471:32583029,7921187 +) +h1,4471:6630773,8537225:0,0,0 +(1,4474:6630773,9705129:25952256,513147,134348 +h1,4473:6630773,9705129:983040,0,0 +k1,4473:9590324,9705129:193276 +k1,4473:11873544,9705129:193277 +k1,4473:15092617,9705129:193276 +k1,4473:16570400,9705129:193277 +k1,4473:18774321,9705129:193276 +k1,4473:19323458,9705129:193277 +k1,4473:21668281,9705129:193276 +k1,4473:23250921,9705129:193277 +k1,4473:25494163,9705129:193276 +k1,4473:26370325,9705129:193277 +k1,4473:28265571,9705129:193276 +k1,4473:31563944,9705129:193277 +k1,4473:32583029,9705129:0 +) +(1,4474:6630773,10546617:25952256,513147,134348 +k1,4473:8933708,10546617:161874 +k1,4473:11800907,10546617:161873 +k1,4473:13067063,10546617:161874 +k1,4473:13976703,10546617:161874 +k1,4473:17286927,10546617:161874 +k1,4473:18100229,10546617:161874 +k1,4473:19281187,10546617:161873 +k1,4473:22580269,10546617:161874 +k1,4473:26450170,10546617:161874 +k1,4473:27271335,10546617:161873 +k1,4473:28452294,10546617:161874 +k1,4473:31309664,10546617:161874 +k1,4473:32583029,10546617:0 +) +(1,4474:6630773,11388105:25952256,513147,134348 +g1,4473:7446040,11388105 +g1,4473:8664354,11388105 +g1,4473:10517056,11388105 +g1,4473:11954260,11388105 +g1,4473:12839651,11388105 +g1,4473:13690308,11388105 +g1,4473:14908622,11388105 +g1,4473:16845866,11388105 +g1,4473:17704387,11388105 +g1,4473:18259476,11388105 +g1,4473:20970045,11388105 +g1,4473:23594761,11388105 +g1,4473:24813075,11388105 +g1,4473:26665777,11388105 +k1,4474:32583029,11388105:4354218 +g1,4474:32583029,11388105 +) +v1,4476:6630773,12380699:0,393216,0 +(1,4492:6630773,17454130:25952256,5466647,196608 +g1,4492:6630773,17454130 +g1,4492:6630773,17454130 +g1,4492:6434165,17454130 +(1,4492:6434165,17454130:0,5466647,196608 +r1,4492:32779637,17454130:26345472,5663255,196608 +k1,4492:6434165,17454130:-26345472 +) +(1,4492:6434165,17454130:26345472,5466647,196608 +[1,4492:6630773,17454130:25952256,5270039,0 +(1,4478:6630773,12594609:25952256,410518,82312 +(1,4477:6630773,12594609:0,0,0 +g1,4477:6630773,12594609 +g1,4477:6630773,12594609 +g1,4477:6303093,12594609 +(1,4477:6303093,12594609:0,0,0 +) +g1,4477:6630773,12594609 +) +k1,4478:6630773,12594609:0 +g1,4478:10740667,12594609 +g1,4478:11372959,12594609 +g1,4478:12005251,12594609 +g1,4478:13269834,12594609 +g1,4478:13902126,12594609 +k1,4478:13902126,12594609:0 +h1,4478:14850564,12594609:0,0,0 +k1,4478:32583028,12594609:17732464 +g1,4478:32583028,12594609 +) +(1,4485:6630773,13326323:25952256,379060,101187 +(1,4480:6630773,13326323:0,0,0 +g1,4480:6630773,13326323 +g1,4480:6630773,13326323 +g1,4480:6303093,13326323 +(1,4480:6303093,13326323:0,0,0 +) +g1,4480:6630773,13326323 +) +g1,4485:7579210,13326323 +g1,4485:7895356,13326323 +g1,4485:8211502,13326323 +g1,4485:8843794,13326323 +h1,4485:9159940,13326323:0,0,0 +k1,4485:32583028,13326323:23423088 +g1,4485:32583028,13326323 +) +(1,4485:6630773,13992501:25952256,379060,4718 +h1,4485:6630773,13992501:0,0,0 +g1,4485:7579210,13992501 +g1,4485:8211502,13992501 +g1,4485:8843794,13992501 +h1,4485:9159940,13992501:0,0,0 +k1,4485:32583028,13992501:23423088 +g1,4485:32583028,13992501 +) +(1,4485:6630773,14658679:25952256,379060,9436 +h1,4485:6630773,14658679:0,0,0 +g1,4485:7579210,14658679 +g1,4485:8211502,14658679 +g1,4485:8843794,14658679 +h1,4485:9159940,14658679:0,0,0 +k1,4485:32583028,14658679:23423088 +g1,4485:32583028,14658679 +) +(1,4485:6630773,15324857:25952256,388497,9436 +h1,4485:6630773,15324857:0,0,0 +g1,4485:7579210,15324857 +g1,4485:8211502,15324857 +g1,4485:8843794,15324857 +h1,4485:9159940,15324857:0,0,0 +k1,4485:32583028,15324857:23423088 +g1,4485:32583028,15324857 +) +(1,4487:6630773,16646395:25952256,410518,82312 +(1,4486:6630773,16646395:0,0,0 +g1,4486:6630773,16646395 +g1,4486:6630773,16646395 +g1,4486:6303093,16646395 +(1,4486:6303093,16646395:0,0,0 +) +g1,4486:6630773,16646395 +) +k1,4487:6630773,16646395:0 +g1,4487:10740667,16646395 +g1,4487:11372959,16646395 +g1,4487:12005251,16646395 +h1,4487:13269835,16646395:0,0,0 +k1,4487:32583029,16646395:19313194 +g1,4487:32583029,16646395 +) +(1,4491:6630773,17378109:25952256,404226,76021 +(1,4489:6630773,17378109:0,0,0 +g1,4489:6630773,17378109 +g1,4489:6630773,17378109 +g1,4489:6303093,17378109 +(1,4489:6303093,17378109:0,0,0 +) +g1,4489:6630773,17378109 +) +g1,4491:7579210,17378109 +g1,4491:8843793,17378109 +g1,4491:9476085,17378109 +g1,4491:10108377,17378109 +h1,4491:10424523,17378109:0,0,0 +k1,4491:32583029,17378109:22158506 +g1,4491:32583029,17378109 +) +] +) +g1,4492:32583029,17454130 +g1,4492:6630773,17454130 +g1,4492:6630773,17454130 +g1,4492:32583029,17454130 +g1,4492:32583029,17454130 +) +h1,4492:6630773,17650738:0,0,0 +(1,4497:6630773,18818642:25952256,513147,134348 +h1,4495:6630773,18818642:983040,0,0 +k1,4495:9422794,18818642:160095 +k1,4495:10242181,18818642:160095 +k1,4495:11421361,18818642:160095 +k1,4495:14573175,18818642:160095 +k1,4495:15349308,18818642:160095 +k1,4495:16528488,18818642:160095 +k1,4495:17836773,18818642:160094 +k1,4495:19651652,18818642:160095 +k1,4495:21307934,18818642:160095 +k1,4495:23768998,18818642:160095 +k1,4495:25382682,18818642:160095 +k1,4495:26561862,18818642:160095 +k1,4495:29157275,18818642:160095 +k1,4495:30706733,18818642:160095 +k1,4497:32583029,18818642:0 +) +(1,4497:6630773,19660130:25952256,513147,134348 +(1,4495:6630773,19660130:0,459977,115847 +r1,4495:8044174,19660130:1413401,575824,115847 +k1,4495:6630773,19660130:-1413401 +) +(1,4495:6630773,19660130:1413401,459977,115847 +k1,4495:6630773,19660130:3277 +h1,4495:8040897,19660130:0,411205,112570 +) +k1,4495:8473710,19660130:255866 +k1,4495:9683126,19660130:255867 +k1,4495:11043274,19660130:255866 +k1,4495:12916570,19660130:255867 +k1,4495:14191521,19660130:255866 +k1,4495:17226115,19660130:255867 +k1,4495:19162324,19660130:255866 +k1,4495:21153584,19660130:255867 +k1,4495:21765310,19660130:255866 +k1,4495:23304372,19660130:255867 +k1,4495:25298253,19660130:255866 +k1,4495:26020081,19660130:255867 +k1,4495:27144299,19660130:255866 +k1,4495:28948782,19660130:255867 +k1,4495:29856076,19660130:255866 +k1,4497:32583029,19660130:0 +) +(1,4497:6630773,20501618:25952256,505283,134348 +(1,4495:6630773,20501618:0,459977,115847 +r1,4495:8044174,20501618:1413401,575824,115847 +k1,4495:6630773,20501618:-1413401 +) +(1,4495:6630773,20501618:1413401,459977,115847 +k1,4495:6630773,20501618:3277 +h1,4495:8040897,20501618:0,411205,112570 +) +k1,4495:8277793,20501618:233619 +k1,4495:12176185,20501618:233619 +k1,4495:13092689,20501618:233619 +k1,4495:14194660,20501618:233619 +k1,4495:15532561,20501618:233619 +k1,4495:17772892,20501618:233619 +k1,4495:19025597,20501618:233620 +k1,4495:21102088,20501618:233619 +k1,4495:21987135,20501618:233619 +(1,4495:21987135,20501618:0,459977,115847 +r1,4495:23400536,20501618:1413401,575824,115847 +k1,4495:21987135,20501618:-1413401 +) +(1,4495:21987135,20501618:1413401,459977,115847 +k1,4495:21987135,20501618:3277 +h1,4495:23397259,20501618:0,411205,112570 +) +k1,4495:23807825,20501618:233619 +k1,4495:26609145,20501618:233619 +k1,4495:27458802,20501618:233619 +k1,4495:28711506,20501618:233619 +k1,4495:31563944,20501618:233619 +k1,4495:32583029,20501618:0 +) +(1,4497:6630773,21343106:25952256,505283,126483 +g1,4495:10150711,21343106 +g1,4495:12388110,21343106 +k1,4497:32583028,21343106:18340904 +g1,4497:32583028,21343106 +) +v1,4497:6630773,22511011:0,393216,0 +(1,4513:6630773,36643396:25952256,14525601,616038 +g1,4513:6630773,36643396 +(1,4513:6630773,36643396:25952256,14525601,616038 +(1,4513:6630773,37259434:25952256,15141639,0 +[1,4513:6630773,37259434:25952256,15141639,0 +(1,4513:6630773,37233220:25952256,15089211,0 +r1,4513:6656987,37233220:26214,15089211,0 +[1,4513:6656987,37233220:25899828,15089211,0 +(1,4513:6656987,36643396:25899828,13909563,0 +[1,4513:7246811,36643396:24720180,13909563,0 +(1,4498:7246811,23819369:24720180,1085536,298548 +(1,4497:7246811,23819369:0,1085536,298548 +r1,4513:8753226,23819369:1506415,1384084,298548 +k1,4497:7246811,23819369:-1506415 +) +(1,4497:7246811,23819369:1506415,1085536,298548 +) +k1,4497:8950307,23819369:197081 +k1,4497:9775224,23819369:197082 +k1,4497:10991390,23819369:197081 +k1,4497:13849889,23819369:197082 +k1,4497:16075965,23819369:197081 +k1,4497:17292132,23819369:197082 +k1,4497:19557529,23819369:197081 +k1,4497:20370649,23819369:197082 +k1,4497:21586815,23819369:197081 +k1,4497:25223882,23819369:197082 +k1,4497:27626250,23819369:197081 +k1,4497:28509494,23819369:197082 +k1,4497:29725660,23819369:197081 +k1,4497:31966991,23819369:0 +) +(1,4498:7246811,24660857:24720180,513147,134348 +k1,4497:10464044,24660857:144905 +k1,4497:11260377,24660857:144905 +(1,4497:11260377,24660857:0,452978,115847 +r1,4513:14080626,24660857:2820249,568825,115847 +k1,4497:11260377,24660857:-2820249 +) +(1,4497:11260377,24660857:2820249,452978,115847 +k1,4497:11260377,24660857:3277 +h1,4497:14077349,24660857:0,411205,112570 +) +k1,4497:14225531,24660857:144905 +k1,4497:15361996,24660857:144905 +k1,4497:16813034,24660857:144905 +k1,4497:19796303,24660857:144905 +k1,4497:21951198,24660857:144906 +(1,4497:21951198,24660857:0,459977,115847 +r1,4513:23716311,24660857:1765113,575824,115847 +k1,4497:21951198,24660857:-1765113 +) +(1,4497:21951198,24660857:1765113,459977,115847 +k1,4497:21951198,24660857:3277 +h1,4497:23713034,24660857:0,411205,112570 +) +k1,4497:23861216,24660857:144905 +k1,4497:25078290,24660857:144905 +k1,4497:25689156,24660857:144905 +k1,4497:26900332,24660857:144905 +k1,4497:29128627,24660857:144905 +k1,4497:31966991,24660857:0 +) +(1,4498:7246811,25502345:24720180,513147,134348 +k1,4497:8061469,25502345:198620 +k1,4497:9279174,25502345:198620 +k1,4497:13708798,25502345:198620 +k1,4497:15739805,25502345:198620 +k1,4497:17676440,25502345:198620 +k1,4497:18684430,25502345:198620 +k1,4497:21394389,25502345:198619 +(1,4497:21394389,25502345:0,414482,115847 +r1,4513:21752655,25502345:358266,530329,115847 +k1,4497:21394389,25502345:-358266 +) +(1,4497:21394389,25502345:358266,414482,115847 +k1,4497:21394389,25502345:3277 +h1,4497:21749378,25502345:0,411205,112570 +) +k1,4497:21951275,25502345:198620 +k1,4497:22765933,25502345:198620 +k1,4497:23983638,25502345:198620 +k1,4497:25571621,25502345:198620 +k1,4497:27646537,25502345:198620 +(1,4497:27646537,25502345:0,459977,115847 +r1,4513:29059938,25502345:1413401,575824,115847 +k1,4497:27646537,25502345:-1413401 +) +(1,4497:27646537,25502345:1413401,459977,115847 +k1,4497:27646537,25502345:3277 +h1,4497:29056661,25502345:0,411205,112570 +) +k1,4497:29432228,25502345:198620 +k1,4497:31608725,25502345:198620 +(1,4497:31608725,25502345:0,414482,115847 +r1,4513:31966991,25502345:358266,530329,115847 +k1,4497:31608725,25502345:-358266 +) +(1,4497:31608725,25502345:358266,414482,115847 +k1,4497:31608725,25502345:3277 +h1,4497:31963714,25502345:0,411205,112570 +) +k1,4497:31966991,25502345:0 +) +(1,4498:7246811,26343833:24720180,513147,134348 +k1,4497:8985317,26343833:170885 +k1,4497:10175287,26343833:170885 +k1,4497:14403506,26343833:170885 +k1,4497:15105889,26343833:170886 +k1,4497:17598715,26343833:170885 +k1,4497:19282826,26343833:170885 +k1,4497:20069749,26343833:170885 +k1,4497:21259719,26343833:170885 +k1,4497:24870589,26343833:170885 +k1,4497:27874596,26343833:170886 +k1,4497:28661519,26343833:170885 +k1,4497:29188264,26343833:170885 +k1,4497:31966991,26343833:0 +) +(1,4498:7246811,27185321:24720180,513147,7863 +g1,4497:8835403,27185321 +g1,4497:10910928,27185321 +g1,4497:12504108,27185321 +g1,4497:13512707,27185321 +k1,4498:31966991,27185321:16746416 +g1,4498:31966991,27185321 +) +v1,4500:7246811,28375787:0,393216,0 +(1,4509:7246811,30739224:24720180,2756653,196608 +g1,4509:7246811,30739224 +g1,4509:7246811,30739224 +g1,4509:7050203,30739224 +(1,4509:7050203,30739224:0,2756653,196608 +r1,4513:32163599,30739224:25113396,2953261,196608 +k1,4509:7050203,30739224:-25113396 +) +(1,4509:7050203,30739224:25113396,2756653,196608 +[1,4509:7246811,30739224:24720180,2560045,0 +(1,4502:7246811,28567676:24720180,388497,0 +(1,4501:7246811,28567676:0,0,0 +g1,4501:7246811,28567676 +g1,4501:7246811,28567676 +g1,4501:6919131,28567676 +(1,4501:6919131,28567676:0,0,0 +) +g1,4501:7246811,28567676 +) +g1,4502:7879103,28567676 +g1,4502:8827541,28567676 +h1,4502:9143687,28567676:0,0,0 +k1,4502:31966991,28567676:22823304 +g1,4502:31966991,28567676 +) +(1,4503:7246811,29233854:24720180,410518,82312 +h1,4503:7246811,29233854:0,0,0 +g1,4503:11356705,29233854 +g1,4503:11988997,29233854 +g1,4503:12621289,29233854 +h1,4503:13253581,29233854:0,0,0 +k1,4503:31966991,29233854:18713410 +g1,4503:31966991,29233854 +) +(1,4508:7246811,29965568:24720180,404226,101187 +(1,4505:7246811,29965568:0,0,0 +g1,4505:7246811,29965568 +g1,4505:7246811,29965568 +g1,4505:6919131,29965568 +(1,4505:6919131,29965568:0,0,0 +) +g1,4505:7246811,29965568 +) +g1,4508:8195248,29965568 +g1,4508:9459831,29965568 +g1,4508:10092123,29965568 +g1,4508:10724415,29965568 +h1,4508:11040561,29965568:0,0,0 +k1,4508:31966991,29965568:20926430 +g1,4508:31966991,29965568 +) +(1,4508:7246811,30631746:24720180,404226,107478 +h1,4508:7246811,30631746:0,0,0 +g1,4508:8195248,30631746 +g1,4508:9143685,30631746 +g1,4508:11040560,30631746 +g1,4508:12305143,30631746 +g1,4508:15150455,30631746 +h1,4508:18311912,30631746:0,0,0 +k1,4508:31966991,30631746:13655079 +g1,4508:31966991,30631746 +) +] +) +g1,4509:31966991,30739224 +g1,4509:7246811,30739224 +g1,4509:7246811,30739224 +g1,4509:31966991,30739224 +g1,4509:31966991,30739224 +) +h1,4509:7246811,30935832:0,0,0 +(1,4513:7246811,32301608:24720180,513147,134348 +h1,4512:7246811,32301608:983040,0,0 +k1,4512:9656803,32301608:230265 +k1,4512:10979554,32301608:230266 +k1,4512:11876975,32301608:230265 +(1,4512:11876975,32301608:0,452978,115847 +r1,4513:14697224,32301608:2820249,568825,115847 +k1,4512:11876975,32301608:-2820249 +) +(1,4512:11876975,32301608:2820249,452978,115847 +k1,4512:11876975,32301608:3277 +h1,4512:14693947,32301608:0,411205,112570 +) +k1,4512:14927490,32301608:230266 +k1,4512:15689252,32301608:230265 +k1,4512:19575771,32301608:230265 +k1,4512:20878206,32301608:230266 +k1,4512:22758668,32301608:230265 +k1,4512:24854743,32301608:230265 +k1,4512:25736437,32301608:230266 +k1,4512:27809574,32301608:230265 +k1,4512:28655878,32301608:230266 +k1,4512:30405923,32301608:230265 +k1,4513:31966991,32301608:0 +) +(1,4513:7246811,33143096:24720180,505283,134348 +k1,4512:9279665,33143096:199812 +k1,4512:10130904,33143096:199811 +k1,4512:12745062,33143096:199812 +k1,4512:14680267,33143096:199812 +k1,4512:15899163,33143096:199811 +k1,4512:19313516,33143096:199812 +k1,4512:22259942,33143096:199812 +(1,4512:22259942,33143096:0,452978,115847 +r1,4513:22969920,33143096:709978,568825,115847 +k1,4512:22259942,33143096:-709978 +) +(1,4512:22259942,33143096:709978,452978,115847 +k1,4512:22259942,33143096:3277 +h1,4512:22966643,33143096:0,411205,112570 +) +k1,4512:23343401,33143096:199811 +k1,4512:24924057,33143096:199812 +k1,4512:26777342,33143096:199812 +k1,4512:28892770,33143096:199811 +k1,4512:29744010,33143096:199812 +k1,4513:31966991,33143096:0 +) +(1,4513:7246811,33984584:24720180,513147,134348 +k1,4512:8382853,33984584:145793 +k1,4512:12435247,33984584:145793 +k1,4512:14862347,33984584:145792 +k1,4512:15659568,33984584:145793 +k1,4512:18831158,33984584:145793 +k1,4512:20123176,33984584:145793 +(1,4512:20123176,33984584:0,452978,115847 +r1,4513:22943425,33984584:2820249,568825,115847 +k1,4512:20123176,33984584:-2820249 +) +(1,4512:20123176,33984584:2820249,452978,115847 +k1,4512:20123176,33984584:3277 +h1,4512:22940148,33984584:0,411205,112570 +) +k1,4512:23089218,33984584:145793 +k1,4512:24426455,33984584:145792 +(1,4512:24426455,33984584:0,452978,115847 +r1,4513:26543280,33984584:2116825,568825,115847 +k1,4512:24426455,33984584:-2116825 +) +(1,4512:24426455,33984584:2116825,452978,115847 +k1,4512:24426455,33984584:3277 +h1,4512:26540003,33984584:0,411205,112570 +) +k1,4512:26689073,33984584:145793 +k1,4512:29924889,33984584:145793 +k1,4512:31966991,33984584:0 +) +(1,4513:7246811,34826072:24720180,505283,134348 +k1,4512:8660235,34826072:216737 +k1,4512:10901379,34826072:216737 +k1,4512:12543524,34826072:216737 +k1,4512:14044766,34826072:216736 +k1,4512:14617363,34826072:216737 +k1,4512:16665176,34826072:216737 +k1,4512:17413410,34826072:216737 +k1,4512:20469167,34826072:216737 +k1,4512:21337332,34826072:216737 +k1,4512:22301835,34826072:216737 +k1,4512:24205468,34826072:216736 +k1,4512:27000391,34826072:216737 +k1,4512:28408573,34826072:216737 +k1,4512:30947906,34826072:216737 +k1,4512:31966991,34826072:0 +) +(1,4513:7246811,35667560:24720180,513147,134348 +k1,4512:9118137,35667560:221129 +k1,4512:11549141,35667560:221130 +k1,4512:12638622,35667560:221129 +k1,4512:15040134,35667560:221129 +k1,4512:16009029,35667560:221129 +k1,4512:17928197,35667560:221130 +k1,4512:19884719,35667560:221129 +k1,4512:21237655,35667560:221129 +k1,4512:22118076,35667560:221129 +k1,4512:24035933,35667560:221130 +k1,4512:27456530,35667560:221129 +k1,4512:28580090,35667560:221129 +k1,4512:31966991,35667560:0 +) +(1,4513:7246811,36509048:24720180,513147,134348 +k1,4512:8662792,36509048:178006 +k1,4512:9500090,36509048:178006 +k1,4512:12397840,36509048:178006 +k1,4512:15535452,36509048:178006 +k1,4512:18650782,36509048:178006 +k1,4512:19360285,36509048:178006 +k1,4512:20189718,36509048:178005 +k1,4512:21875707,36509048:178006 +k1,4512:23072798,36509048:178006 +k1,4512:25319120,36509048:178006 +k1,4512:26156418,36509048:178006 +k1,4512:27723787,36509048:178006 +k1,4512:30108390,36509048:178006 +k1,4513:31966991,36509048:0 +k1,4513:31966991,36509048:0 +) +] +) +] +r1,4513:32583029,37233220:26214,15089211,0 +) +] +) +) +g1,4513:32583029,36643396 +) +h1,4513:6630773,37259434:0,0,0 +(1,4516:6630773,38427338:25952256,513147,134348 +h1,4515:6630773,38427338:983040,0,0 +k1,4515:8340570,38427338:239169 +k1,4515:11884760,38427338:239209 +k1,4515:13637195,38427338:239209 +k1,4515:15114379,38427338:239209 +k1,4515:16012880,38427338:239209 +k1,4515:18819790,38427338:239209 +k1,4515:19414859,38427338:239209 +k1,4515:22036957,38427338:239209 +k1,4515:23037695,38427338:239210 +k1,4515:25014919,38427338:239209 +k1,4515:26821749,38427338:239209 +k1,4515:27416818,38427338:239209 +k1,4515:29045390,38427338:239209 +k1,4515:31160895,38427338:239209 +k1,4515:31931601,38427338:239209 +k1,4515:32583029,38427338:0 +) +(1,4516:6630773,39268826:25952256,513147,134348 +k1,4515:8875223,39268826:237738 +(1,4515:8875223,39268826:0,414482,115847 +r1,4515:10288624,39268826:1413401,530329,115847 +k1,4515:8875223,39268826:-1413401 +) +(1,4515:8875223,39268826:1413401,414482,115847 +k1,4515:8875223,39268826:3277 +h1,4515:10285347,39268826:0,411205,112570 +) +k1,4515:10526363,39268826:237739 +k1,4515:11415529,39268826:237738 +k1,4515:13836272,39268826:237739 +k1,4515:14690048,39268826:237738 +k1,4515:15946872,39268826:237739 +k1,4515:17838083,39268826:237738 +k1,4515:19313796,39268826:237738 +k1,4515:20237697,39268826:237739 +k1,4515:23429143,39268826:237738 +k1,4515:24658442,39268826:237739 +k1,4515:27241714,39268826:237738 +k1,4515:29047074,39268826:237739 +(1,4515:29047074,39268826:0,452978,115847 +r1,4515:30460475,39268826:1413401,568825,115847 +k1,4515:29047074,39268826:-1413401 +) +(1,4515:29047074,39268826:1413401,452978,115847 +k1,4515:29047074,39268826:3277 +h1,4515:30457198,39268826:0,411205,112570 +) +k1,4515:31202185,39268826:237738 +k1,4515:32583029,39268826:0 +) +(1,4516:6630773,40110314:25952256,513147,126483 +g1,4515:9814512,40110314 +g1,4515:12758389,40110314 +(1,4515:12758389,40110314:0,459977,115847 +r1,4515:14171790,40110314:1413401,575824,115847 +k1,4515:12758389,40110314:-1413401 +) +(1,4515:12758389,40110314:1413401,459977,115847 +k1,4515:12758389,40110314:3277 +h1,4515:14168513,40110314:0,411205,112570 +) +g1,4515:14371019,40110314 +g1,4515:15186286,40110314 +k1,4516:32583029,40110314:15560424 +g1,4516:32583029,40110314 +) +v1,4518:6630773,41102908:0,393216,0 +(1,4533:6630773,45510161:25952256,4800469,196608 +g1,4533:6630773,45510161 +g1,4533:6630773,45510161 +g1,4533:6434165,45510161 +(1,4533:6434165,45510161:0,4800469,196608 +r1,4533:32779637,45510161:26345472,4997077,196608 +k1,4533:6434165,45510161:-26345472 +) +(1,4533:6434165,45510161:26345472,4800469,196608 +[1,4533:6630773,45510161:25952256,4603861,0 +(1,4520:6630773,41316818:25952256,410518,6290 +(1,4519:6630773,41316818:0,0,0 +g1,4519:6630773,41316818 +g1,4519:6630773,41316818 +g1,4519:6303093,41316818 +(1,4519:6303093,41316818:0,0,0 +) +g1,4519:6630773,41316818 +) +g1,4520:8527647,41316818 +g1,4520:9476085,41316818 +h1,4520:10740668,41316818:0,0,0 +k1,4520:32583028,41316818:21842360 +g1,4520:32583028,41316818 +) +(1,4521:6630773,41982996:25952256,410518,76021 +h1,4521:6630773,41982996:0,0,0 +k1,4521:6630773,41982996:0 +h1,4521:11372958,41982996:0,0,0 +k1,4521:32583030,41982996:21210072 +g1,4521:32583030,41982996 +) +(1,4525:6630773,42714710:25952256,404226,101187 +(1,4523:6630773,42714710:0,0,0 +g1,4523:6630773,42714710 +g1,4523:6630773,42714710 +g1,4523:6303093,42714710 +(1,4523:6303093,42714710:0,0,0 +) +g1,4523:6630773,42714710 +) +g1,4525:7579210,42714710 +g1,4525:8843793,42714710 +g1,4525:10108376,42714710 +g1,4525:11372959,42714710 +h1,4525:12321396,42714710:0,0,0 +k1,4525:32583028,42714710:20261632 +g1,4525:32583028,42714710 +) +(1,4527:6630773,44036248:25952256,410518,101187 +(1,4526:6630773,44036248:0,0,0 +g1,4526:6630773,44036248 +g1,4526:6630773,44036248 +g1,4526:6303093,44036248 +(1,4526:6303093,44036248:0,0,0 +) +g1,4526:6630773,44036248 +) +g1,4527:10740667,44036248 +g1,4527:11689105,44036248 +k1,4527:11689105,44036248:0 +h1,4527:12953688,44036248:0,0,0 +k1,4527:32583028,44036248:19629340 +g1,4527:32583028,44036248 +) +(1,4528:6630773,44702426:25952256,410518,76021 +h1,4528:6630773,44702426:0,0,0 +k1,4528:6630773,44702426:0 +h1,4528:11372958,44702426:0,0,0 +k1,4528:32583030,44702426:21210072 +g1,4528:32583030,44702426 +) +(1,4532:6630773,45434140:25952256,404226,76021 +(1,4530:6630773,45434140:0,0,0 +g1,4530:6630773,45434140 +g1,4530:6630773,45434140 +g1,4530:6303093,45434140 +(1,4530:6303093,45434140:0,0,0 +) +g1,4530:6630773,45434140 +) +g1,4532:7579210,45434140 +g1,4532:8843793,45434140 +g1,4532:10108376,45434140 +h1,4532:11056813,45434140:0,0,0 +k1,4532:32583029,45434140:21526216 +g1,4532:32583029,45434140 +) +] +) +g1,4533:32583029,45510161 +g1,4533:6630773,45510161 +g1,4533:6630773,45510161 +g1,4533:32583029,45510161 +g1,4533:32583029,45510161 +) +h1,4533:6630773,45706769:0,0,0 +] +(1,4537:32583029,45706769:0,0,0 +g1,4537:32583029,45706769 +) +) +] +(1,4537:6630773,47279633:25952256,0,0 +h1,4537:6630773,47279633:25952256,0,0 +) +] +h1,4537:4262630,4025873:0,0,0 +] +!27134 }83 -Input:548:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:549:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:550:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:551:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:552:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:553:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:554:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:555:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:556:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:557:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:558:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:559:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:560:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:561:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:562:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:563:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:564:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:565:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:566:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:567:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:568:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:569:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:570:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:571:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:572:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:573:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:574:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:575:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:576:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:577:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:578:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:579:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:580:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:581:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:582:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:583:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:584:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3156 +Input:544:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:545:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:546:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:547:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:548:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:549:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:550:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:551:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:552:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:553:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:554:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:555:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:556:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:557:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:558:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:559:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:560:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:561:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:562:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:563:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:564:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:565:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:566:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:567:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:568:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:569:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:570:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:571:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:572:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:573:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:574:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:575:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:576:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:577:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:578:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:579:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:580:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!3378 {84 -[1,4669:4262630,47279633:28320399,43253760,0 -(1,4669:4262630,4025873:0,0,0 -[1,4669:-473657,4025873:25952256,0,0 -(1,4669:-473657,-710414:25952256,0,0 -h1,4669:-473657,-710414:0,0,0 -(1,4669:-473657,-710414:0,0,0 -(1,4669:-473657,-710414:0,0,0 -g1,4669:-473657,-710414 -(1,4669:-473657,-710414:65781,0,65781 -g1,4669:-407876,-710414 -[1,4669:-407876,-644633:0,0,0 +[1,4675:4262630,47279633:28320399,43253760,0 +(1,4675:4262630,4025873:0,0,0 +[1,4675:-473657,4025873:25952256,0,0 +(1,4675:-473657,-710414:25952256,0,0 +h1,4675:-473657,-710414:0,0,0 +(1,4675:-473657,-710414:0,0,0 +(1,4675:-473657,-710414:0,0,0 +g1,4675:-473657,-710414 +(1,4675:-473657,-710414:65781,0,65781 +g1,4675:-407876,-710414 +[1,4675:-407876,-644633:0,0,0 ] ) -k1,4669:-473657,-710414:-65781 +k1,4675:-473657,-710414:-65781 ) ) -k1,4669:25478599,-710414:25952256 -g1,4669:25478599,-710414 +k1,4675:25478599,-710414:25952256 +g1,4675:25478599,-710414 ) ] ) -[1,4669:6630773,47279633:25952256,43253760,0 -[1,4669:6630773,4812305:25952256,786432,0 -(1,4669:6630773,4812305:25952256,513147,126483 -(1,4669:6630773,4812305:25952256,513147,126483 -g1,4669:3078558,4812305 -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,2439708:0,1703936,0 -k1,4669:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4669:2537886,2439708:1179648,16384,0 +[1,4675:6630773,47279633:25952256,43253760,0 +[1,4675:6630773,4812305:25952256,786432,0 +(1,4675:6630773,4812305:25952256,513147,126483 +(1,4675:6630773,4812305:25952256,513147,126483 +g1,4675:3078558,4812305 +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,2439708:0,1703936,0 +k1,4675:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4675:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4669:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4675:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,2439708:0,1703936,0 -g1,4669:29030814,2439708 -g1,4669:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4669:36151628,1915420:16384,1179648,0 +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,2439708:0,1703936,0 +g1,4675:29030814,2439708 +g1,4675:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4675:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4669:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4675:37855564,2439708:1179648,16384,0 ) ) -k1,4669:3078556,2439708:-34777008 +k1,4675:3078556,2439708:-34777008 ) ] -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,49800853:0,16384,2228224 -k1,4669:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4669:2537886,49800853:1179648,16384,0 +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,49800853:0,16384,2228224 +k1,4675:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4675:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4669:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4675:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) -) -) -] -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,49800853:0,16384,2228224 -g1,4669:29030814,49800853 -g1,4669:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4669:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4669:37855564,49800853:1179648,16384,0 -) -) -k1,4669:3078556,49800853:-34777008 -) -] -g1,4669:6630773,4812305 -g1,4669:6630773,4812305 -g1,4669:8364200,4812305 -g1,4669:10765439,4812305 -k1,4669:31786111,4812305:21020672 -) -) -] -[1,4669:6630773,45706769:25952256,40108032,0 -(1,4669:6630773,45706769:25952256,40108032,0 -(1,4669:6630773,45706769:0,0,0 -g1,4669:6630773,45706769 -) -[1,4669:6630773,45706769:25952256,40108032,0 -v1,4531:6630773,6254097:0,393216,0 -(1,4550:6630773,18844082:25952256,12983201,616038 -g1,4550:6630773,18844082 -(1,4550:6630773,18844082:25952256,12983201,616038 -(1,4550:6630773,19460120:25952256,13599239,0 -[1,4550:6630773,19460120:25952256,13599239,0 -(1,4550:6630773,19433906:25952256,13546811,0 -r1,4550:6656987,19433906:26214,13546811,0 -[1,4550:6656987,19433906:25899828,13546811,0 -(1,4550:6656987,18844082:25899828,12367163,0 -[1,4550:7246811,18844082:24720180,12367163,0 -(1,4532:7246811,7638804:24720180,1161885,196608 -(1,4531:7246811,7638804:0,1161885,196608 -r1,4550:8794447,7638804:1547636,1358493,196608 -k1,4531:7246811,7638804:-1547636 -) -(1,4531:7246811,7638804:1547636,1161885,196608 -) -k1,4531:9050067,7638804:255620 -k1,4531:13564217,7638804:255620 -k1,4531:14688188,7638804:255619 -k1,4531:16048090,7638804:255620 -k1,4531:17396195,7638804:255620 -k1,4531:20306678,7638804:255620 -k1,4531:23301703,7638804:255620 -k1,4531:24208751,7638804:255620 -k1,4531:26819079,7638804:255619 -k1,4531:29787890,7638804:255620 -k1,4531:31611131,7638804:255620 -k1,4531:31966991,7638804:0 -) -(1,4532:7246811,8480292:24720180,513147,134348 -k1,4531:8995967,8480292:239206 -k1,4531:9894466,8480292:239207 -k1,4531:10489532,8480292:239206 -k1,4531:12118102,8480292:239207 -k1,4531:14407274,8480292:239206 -k1,4531:15274316,8480292:239207 -k1,4531:16716763,8480292:239206 -k1,4531:19617387,8480292:239207 -k1,4531:20724945,8480292:239206 -k1,4531:23318861,8480292:239207 -k1,4531:23913927,8480292:239206 -k1,4531:26026153,8480292:239207 -k1,4531:28821918,8480292:239206 -k1,4531:29879014,8480292:239207 -k1,4531:31552148,8480292:239206 -k1,4532:31966991,8480292:0 -) -(1,4532:7246811,9321780:24720180,513147,134348 -k1,4531:8993946,9321780:254225 -k1,4531:10314442,9321780:254225 -k1,4531:13095080,9321780:254225 -k1,4531:16004168,9321780:254225 -k1,4531:18997798,9321780:254225 -k1,4531:20013551,9321780:254225 -k1,4531:22179461,9321780:254225 -k1,4531:23302038,9321780:254225 -k1,4531:25086529,9321780:254225 -k1,4531:25992182,9321780:254225 -k1,4531:27512563,9321780:254225 -k1,4531:28785873,9321780:254225 -k1,4531:31966991,9321780:0 -) -(1,4532:7246811,10163268:24720180,513147,7863 -g1,4531:9195196,10163268 -g1,4531:10053717,10163268 -g1,4531:11272031,10163268 -g1,4531:13854149,10163268 -g1,4531:14704806,10163268 -k1,4532:31966991,10163268:15163722 -g1,4532:31966991,10163268 -) -v1,4534:7246811,11353734:0,393216,0 -(1,4547:7246811,16305862:24720180,5345344,196608 -g1,4547:7246811,16305862 -g1,4547:7246811,16305862 -g1,4547:7050203,16305862 -(1,4547:7050203,16305862:0,5345344,196608 -r1,4550:32163599,16305862:25113396,5541952,196608 -k1,4547:7050203,16305862:-25113396 -) -(1,4547:7050203,16305862:25113396,5345344,196608 -[1,4547:7246811,16305862:24720180,5148736,0 -(1,4536:7246811,11567644:24720180,410518,101187 -(1,4535:7246811,11567644:0,0,0 -g1,4535:7246811,11567644 -g1,4535:7246811,11567644 -g1,4535:6919131,11567644 -(1,4535:6919131,11567644:0,0,0 -) -g1,4535:7246811,11567644 -) -g1,4536:9143685,11567644 -g1,4536:9775977,11567644 -g1,4536:16731182,11567644 -g1,4536:17679619,11567644 -h1,4536:19260347,11567644:0,0,0 -k1,4536:31966991,11567644:12706644 -g1,4536:31966991,11567644 -) -(1,4546:7246811,12299358:24720180,379060,0 -(1,4538:7246811,12299358:0,0,0 -g1,4538:7246811,12299358 -g1,4538:7246811,12299358 -g1,4538:6919131,12299358 -(1,4538:6919131,12299358:0,0,0 -) -g1,4538:7246811,12299358 -) -g1,4546:8195248,12299358 -g1,4546:8511394,12299358 -g1,4546:8827540,12299358 -g1,4546:9459832,12299358 -g1,4546:9775978,12299358 -g1,4546:10092124,12299358 -g1,4546:10408270,12299358 -g1,4546:10724416,12299358 -h1,4546:11040562,12299358:0,0,0 -k1,4546:31966990,12299358:20926428 -g1,4546:31966990,12299358 -) -(1,4546:7246811,12965536:24720180,388497,7863 -h1,4546:7246811,12965536:0,0,0 -g1,4546:8195248,12965536 -g1,4546:8827540,12965536 -g1,4546:9459832,12965536 -g1,4546:9775978,12965536 -h1,4546:11040561,12965536:0,0,0 -k1,4546:31966991,12965536:20926430 -g1,4546:31966991,12965536 -) -(1,4546:7246811,13631714:24720180,388497,7863 -h1,4546:7246811,13631714:0,0,0 -g1,4546:8195248,13631714 -g1,4546:8827540,13631714 -g1,4546:9459832,13631714 -h1,4546:11040560,13631714:0,0,0 -k1,4546:31966992,13631714:20926432 -g1,4546:31966992,13631714 -) -(1,4546:7246811,14297892:24720180,388497,9436 -h1,4546:7246811,14297892:0,0,0 -g1,4546:8195248,14297892 -g1,4546:8827540,14297892 -g1,4546:9459832,14297892 -g1,4546:9775978,14297892 -h1,4546:11040561,14297892:0,0,0 -k1,4546:31966991,14297892:20926430 -g1,4546:31966991,14297892 -) -(1,4546:7246811,14964070:24720180,379060,7863 -h1,4546:7246811,14964070:0,0,0 -g1,4546:8195248,14964070 -g1,4546:8827540,14964070 -g1,4546:9459832,14964070 -h1,4546:11040560,14964070:0,0,0 -k1,4546:31966992,14964070:20926432 -g1,4546:31966992,14964070 -) -(1,4546:7246811,15630248:24720180,379060,9436 -h1,4546:7246811,15630248:0,0,0 -g1,4546:8195248,15630248 -g1,4546:8827540,15630248 -g1,4546:9459832,15630248 -g1,4546:9775978,15630248 -h1,4546:11040561,15630248:0,0,0 -k1,4546:31966991,15630248:20926430 -g1,4546:31966991,15630248 -) -(1,4546:7246811,16296426:24720180,388497,9436 -h1,4546:7246811,16296426:0,0,0 -g1,4546:8195248,16296426 -g1,4546:8827540,16296426 -g1,4546:9459832,16296426 -h1,4546:11040560,16296426:0,0,0 -k1,4546:31966992,16296426:20926432 -g1,4546:31966992,16296426 -) -] -) -g1,4547:31966991,16305862 -g1,4547:7246811,16305862 -g1,4547:7246811,16305862 -g1,4547:31966991,16305862 -g1,4547:31966991,16305862 -) -h1,4547:7246811,16502470:0,0,0 -(1,4550:7246811,17868246:24720180,513147,134348 -h1,4549:7246811,17868246:983040,0,0 -k1,4549:10757288,17868246:188457 -k1,4549:11605038,17868246:188458 -k1,4549:13528888,17868246:188457 -k1,4549:14736431,17868246:188458 -k1,4549:17471617,17868246:188457 -k1,4549:19025189,17868246:188457 -k1,4549:20081999,17868246:188458 -k1,4549:21374738,17868246:188457 -k1,4549:22655680,17868246:188457 -k1,4549:23863223,17868246:188458 -k1,4549:26798294,17868246:188457 -(1,4549:26798294,17868246:0,452978,115847 -r1,4550:28211695,17868246:1413401,568825,115847 -k1,4549:26798294,17868246:-1413401 -) -(1,4549:26798294,17868246:1413401,452978,115847 -k1,4549:26798294,17868246:3277 -h1,4549:28208418,17868246:0,411205,112570 -) -k1,4549:28400153,17868246:188458 -k1,4549:29271495,17868246:188457 -k1,4550:31966991,17868246:0 -) -(1,4550:7246811,18709734:24720180,505283,134348 -(1,4549:7246811,18709734:0,452978,122846 -r1,4550:9715348,18709734:2468537,575824,122846 -k1,4549:7246811,18709734:-2468537 -) -(1,4549:7246811,18709734:2468537,452978,122846 -k1,4549:7246811,18709734:3277 -h1,4549:9712071,18709734:0,411205,112570 -) -g1,4549:9914577,18709734 -g1,4549:10765234,18709734 -g1,4549:12889255,18709734 -g1,4549:15759731,18709734 -g1,4549:18672151,18709734 -g1,4549:19487418,18709734 -g1,4549:20042507,18709734 -g1,4549:22114755,18709734 -k1,4550:31966991,18709734:6492205 -g1,4550:31966991,18709734 -) -] -) -] -r1,4550:32583029,19433906:26214,13546811,0 -) -] -) -) -g1,4550:32583029,18844082 -) -h1,4550:6630773,19460120:0,0,0 -v1,4553:6630773,20757201:0,393216,0 -(1,4564:6630773,28231089:25952256,7867104,616038 -g1,4564:6630773,28231089 -(1,4564:6630773,28231089:25952256,7867104,616038 -(1,4564:6630773,28847127:25952256,8483142,0 -[1,4564:6630773,28847127:25952256,8483142,0 -(1,4564:6630773,28820913:25952256,8430714,0 -r1,4564:6656987,28820913:26214,8430714,0 -[1,4564:6656987,28820913:25899828,8430714,0 -(1,4564:6656987,28231089:25899828,7251066,0 -[1,4564:7246811,28231089:24720180,7251066,0 -(1,4555:7246811,22067397:24720180,1087374,126483 -k1,4553:8666095,22067397:209581 -k1,4553:9503511,22067397:209581 -k1,4553:10732178,22067397:209582 -k1,4553:13696237,22067397:209581 -k1,4553:15402005,22067397:209581 -k1,4553:17582254,22067397:209581 -k1,4553:18660188,22067397:209582 -k1,4553:21215303,22067397:209581 -k1,4553:22443969,22067397:209581 -k1,4553:23801741,22067397:209581 -k1,4553:26394211,22067397:209581 -k1,4553:27263085,22067397:209582 -k1,4553:28491751,22067397:209581 -k1,4553:30090695,22067397:209581 -k1,4555:31966991,22067397:0 -) -(1,4555:7246811,22908885:24720180,513147,134348 -(1,4553:7246811,22908885:0,459977,115847 -r1,4564:8660212,22908885:1413401,575824,115847 -k1,4553:7246811,22908885:-1413401 -) -(1,4553:7246811,22908885:1413401,459977,115847 -k1,4553:7246811,22908885:3277 -h1,4553:8656935,22908885:0,411205,112570 -) -k1,4553:9129043,22908885:295161 -k1,4554:10912527,22908885:295161 -k1,4554:11739185,22908885:295161 -k1,4554:12805049,22908885:295161 -k1,4554:15599753,22908885:295161 -k1,4554:17367508,22908885:295161 -k1,4554:18610321,22908885:295162 -k1,4554:20075955,22908885:295161 -k1,4554:21022544,22908885:295161 -k1,4554:22623838,22908885:295161 -k1,4554:25702968,22908885:295161 -k1,4554:27328510,22908885:295161 -k1,4554:28081768,22908885:295161 -k1,4554:30947906,22908885:295161 -k1,4554:31966991,22908885:0 -) -(1,4555:7246811,23750373:24720180,513147,126483 -k1,4554:10416525,23750373:225181 -k1,4554:11300999,23750373:225182 -k1,4554:14239371,23750373:225181 -k1,4554:15655998,23750373:225182 -k1,4554:17258746,23750373:225181 -k1,4554:18675372,23750373:225181 -k1,4554:20334482,23750373:225182 -k1,4554:21507314,23750373:225181 -k1,4554:22902969,23750373:225182 -k1,4554:23779578,23750373:225181 -k1,4554:25685102,23750373:225181 -k1,4554:27240665,23750373:225182 -k1,4554:28657291,23750373:225181 -k1,4554:30179431,23750373:225182 -k1,4554:30862709,23750373:225181 -k1,4554:31966991,23750373:0 -) -(1,4555:7246811,24591861:24720180,513147,134348 -k1,4554:8172553,24591861:177976 -k1,4554:10327751,24591861:177977 -k1,4554:11157155,24591861:177976 -k1,4554:12427617,24591861:177977 -k1,4554:15344998,24591861:177976 -k1,4554:16916926,24591861:177977 -k1,4554:18113987,24591861:177976 -k1,4554:21506505,24591861:177977 -k1,4554:24431095,24591861:177976 -(1,4554:24431095,24591861:0,452978,115847 -r1,4564:25492785,24591861:1061690,568825,115847 -k1,4554:24431095,24591861:-1061690 -) -(1,4554:24431095,24591861:1061690,452978,115847 -g1,4554:25137796,24591861 -h1,4554:25489508,24591861:0,411205,112570 -) -k1,4554:25670762,24591861:177977 -k1,4554:26658108,24591861:177976 -k1,4554:28302781,24591861:177977 -k1,4554:30110637,24591861:177976 -k1,4554:30947906,24591861:177977 -k1,4554:31966991,24591861:0 -) -(1,4555:7246811,25433349:24720180,473825,134348 -g1,4554:11091808,25433349 -g1,4554:14037651,25433349 -(1,4554:14037651,25433349:0,414482,115847 -r1,4564:14747629,25433349:709978,530329,115847 -k1,4554:14037651,25433349:-709978 -) -(1,4554:14037651,25433349:709978,414482,115847 -k1,4554:14037651,25433349:3277 -h1,4554:14744352,25433349:0,411205,112570 -) -k1,4555:31966991,25433349:17045692 -g1,4555:31966991,25433349 -) -v1,4557:7246811,26623815:0,393216,0 -(1,4562:7246811,27510193:24720180,1279594,196608 -g1,4562:7246811,27510193 -g1,4562:7246811,27510193 -g1,4562:7050203,27510193 -(1,4562:7050203,27510193:0,1279594,196608 -r1,4564:32163599,27510193:25113396,1476202,196608 -k1,4562:7050203,27510193:-25113396 -) -(1,4562:7050203,27510193:25113396,1279594,196608 -[1,4562:7246811,27510193:24720180,1082986,0 -(1,4559:7246811,26837725:24720180,410518,82312 -(1,4558:7246811,26837725:0,0,0 -g1,4558:7246811,26837725 -g1,4558:7246811,26837725 -g1,4558:6919131,26837725 -(1,4558:6919131,26837725:0,0,0 -) -g1,4558:7246811,26837725 -) -k1,4559:7246811,26837725:0 -g1,4559:10408269,26837725 -g1,4559:12937436,26837725 -g1,4559:13885874,26837725 -g1,4559:17047332,26837725 -k1,4559:17047332,26837725:0 -h1,4559:19260353,26837725:0,0,0 -k1,4559:31966991,26837725:12706638 -g1,4559:31966991,26837725 -) -(1,4560:7246811,27503903:24720180,410518,6290 -h1,4560:7246811,27503903:0,0,0 -h1,4560:8511394,27503903:0,0,0 -k1,4560:31966990,27503903:23455596 -g1,4560:31966990,27503903 -) -] -) -g1,4562:31966991,27510193 -g1,4562:7246811,27510193 -g1,4562:7246811,27510193 -g1,4562:31966991,27510193 -g1,4562:31966991,27510193 -) -h1,4562:7246811,27706801:0,0,0 -] -) -] -r1,4564:32583029,28820913:26214,8430714,0 -) -] -) -) -g1,4564:32583029,28231089 -) -h1,4564:6630773,28847127:0,0,0 -v1,4567:6630773,30144209:0,393216,0 -(1,4568:6630773,35794355:25952256,6043362,616038 -g1,4568:6630773,35794355 -(1,4568:6630773,35794355:25952256,6043362,616038 -(1,4568:6630773,36410393:25952256,6659400,0 -[1,4568:6630773,36410393:25952256,6659400,0 -(1,4568:6630773,36384179:25952256,6606972,0 -r1,4568:6656987,36384179:26214,6606972,0 -[1,4568:6656987,36384179:25899828,6606972,0 -(1,4568:6656987,35794355:25899828,5427324,0 -[1,4568:7246811,35794355:24720180,5427324,0 -(1,4568:7246811,31452567:24720180,1085536,298548 -(1,4567:7246811,31452567:0,1085536,298548 -r1,4568:8753226,31452567:1506415,1384084,298548 -k1,4567:7246811,31452567:-1506415 -) -(1,4567:7246811,31452567:1506415,1085536,298548 -) -k1,4567:8962306,31452567:209080 -k1,4567:12134268,31452567:209079 -k1,4567:12959386,31452567:209080 -k1,4567:14371706,31452567:209079 -k1,4567:15728977,31452567:209080 -k1,4567:18599474,31452567:209080 -k1,4567:19676905,31452567:209079 -k1,4567:21399211,31452567:209080 -k1,4567:24228420,31452567:209080 -k1,4567:26864297,31452567:209079 -k1,4567:27724805,31452567:209080 -k1,4567:29649617,31452567:209079 -k1,4567:30316794,31452567:209080 -k1,4567:31966991,31452567:0 -) -(1,4568:7246811,32294055:24720180,505283,134348 -k1,4567:11064939,32294055:211026 -k1,4567:11892003,32294055:211026 -k1,4567:14814253,32294055:211026 -k1,4567:18132996,32294055:211026 -k1,4567:18960060,32294055:211026 -k1,4567:21332463,32294055:211026 -k1,4567:22226374,32294055:211026 -k1,4567:24139370,32294055:211026 -k1,4567:25846583,32294055:211026 -k1,4567:27342115,32294055:211026 -k1,4567:28685603,32294055:211026 -k1,4567:29644395,32294055:211026 -k1,4567:31966991,32294055:0 -) -(1,4568:7246811,33135543:24720180,513147,126483 -k1,4567:8250227,33135543:188148 -k1,4567:9530860,33135543:188148 -k1,4567:12101897,33135543:188148 -k1,4567:12972930,33135543:188148 -k1,4567:15784484,33135543:188148 -k1,4567:18040949,33135543:188149 -k1,4567:20556280,33135543:188148 -k1,4567:21403720,33135543:188148 -k1,4567:24767087,33135543:188148 -k1,4567:27382033,33135543:188148 -k1,4567:30608430,33135543:188148 -k1,4568:31966991,33135543:0 -) -(1,4568:7246811,33977031:24720180,505283,134348 -k1,4567:9097275,33977031:192403 -k1,4567:10670521,33977031:192402 -k1,4567:12908958,33977031:192403 -k1,4567:14597548,33977031:192403 -k1,4567:16573185,33977031:192402 -k1,4567:18415785,33977031:192403 -k1,4567:21132635,33977031:192403 -k1,4567:22011199,33977031:192402 -k1,4567:24774579,33977031:192403 -k1,4567:28115987,33977031:192403 -k1,4567:28924427,33977031:192402 -k1,4567:30135915,33977031:192403 -k1,4567:31966991,33977031:0 -) -(1,4568:7246811,34818519:24720180,513147,102891 -k1,4567:9180302,34818519:164674 -k1,4567:10798565,34818519:164674 -k1,4567:11982323,34818519:164673 -k1,4567:13886323,34818519:164674 -k1,4567:14710289,34818519:164674 -k1,4567:17588154,34818519:164674 -k1,4567:18944273,34818519:164674 -k1,4567:22223873,34818519:164674 -k1,4567:25569664,34818519:164673 -k1,4567:28334807,34818519:164674 -k1,4567:29127316,34818519:164674 -k1,4567:31966991,34818519:0 -) -(1,4568:7246811,35660007:24720180,513147,134348 -k1,4567:9127530,35660007:145326 -k1,4567:12885856,35660007:145326 -k1,4567:15099498,35660007:145326 -k1,4567:17290858,35660007:145326 -k1,4567:21937852,35660007:145326 -k1,4567:25316069,35660007:145326 -k1,4567:27331793,35660007:145326 -k1,4567:28128547,35660007:145326 -k1,4568:31966991,35660007:0 -k1,4568:31966991,35660007:0 -) -] -) -] -r1,4568:32583029,36384179:26214,6606972,0 -) -] -) -) -g1,4568:32583029,35794355 -) -h1,4568:6630773,36410393:0,0,0 -v1,4571:6630773,37707474:0,393216,0 -(1,4669:6630773,45116945:25952256,7802687,589824 -g1,4669:6630773,45116945 -(1,4669:6630773,45116945:25952256,7802687,589824 -(1,4669:6630773,45706769:25952256,8392511,0 -[1,4669:6630773,45706769:25952256,8392511,0 -(1,4669:6630773,45706769:25952256,8366297,0 -r1,4669:6656987,45706769:26214,8366297,0 -[1,4669:6656987,45706769:25899828,8366297,0 -(1,4669:6656987,45116945:25899828,7186649,0 -[1,4669:7246811,45116945:24720180,7186649,0 -(1,4572:7246811,39092181:24720180,1161885,196608 -(1,4571:7246811,39092181:0,1161885,196608 -r1,4669:8794447,39092181:1547636,1358493,196608 -k1,4571:7246811,39092181:-1547636 -) -(1,4571:7246811,39092181:1547636,1161885,196608 -) -k1,4571:9031057,39092181:236610 -k1,4571:9737560,39092181:236610 -k1,4571:10505667,39092181:236610 -k1,4571:14190126,39092181:236610 -k1,4571:18525358,39092181:236610 -k1,4571:19413396,39092181:236610 -k1,4571:21125220,39092181:236609 -k1,4571:22013258,39092181:236610 -k1,4571:25122966,39092181:236610 -k1,4571:26378661,39092181:236610 -k1,4571:28353286,39092181:236610 -k1,4571:29249188,39092181:236610 -k1,4571:29841658,39092181:236610 -k1,4572:31966991,39092181:0 -) -(1,4572:7246811,39933669:24720180,513147,134348 -k1,4571:8613062,39933669:248862 -k1,4571:10355490,39933669:248862 -k1,4571:11290514,39933669:248862 -k1,4571:11895236,39933669:248862 -k1,4571:13137624,39933669:248862 -k1,4571:14069371,39933669:248862 -k1,4571:15707596,39933669:248862 -k1,4571:17832754,39933669:248862 -k1,4571:18733044,39933669:248862 -k1,4571:20000991,39933669:248862 -k1,4571:21987868,39933669:248862 -k1,4571:22896022,39933669:248862 -k1,4571:24596506,39933669:248862 -k1,4571:27468774,39933669:248862 -k1,4571:30228976,39933669:248862 -k1,4571:31966991,39933669:0 -) -(1,4572:7246811,40775157:24720180,513147,134348 -k1,4571:10452743,40775157:233219 -k1,4571:12518350,40775157:233220 -k1,4571:13743129,40775157:233219 -k1,4571:17002146,40775157:233220 -k1,4571:17851403,40775157:233219 -k1,4571:18499431,40775157:233185 -k1,4571:20017157,40775157:233220 -k1,4571:21932030,40775157:233219 -k1,4571:22910393,40775157:233219 -k1,4571:23795041,40775157:233220 -k1,4571:26268936,40775157:233219 -k1,4571:28421049,40775157:233219 -k1,4571:29069078,40775157:233186 -k1,4571:31019340,40775157:233219 -k1,4571:31966991,40775157:0 -) -(1,4572:7246811,41616645:24720180,513147,134348 -k1,4571:8433102,41616645:167206 -k1,4571:10668625,41616645:167207 -k1,4571:11495123,41616645:167206 -k1,4571:13952158,41616645:167207 -k1,4571:14987716,41616645:167206 -k1,4571:17492591,41616645:167206 -k1,4571:18275836,41616645:167207 -k1,4571:18798902,41616645:167206 -k1,4571:20462295,41616645:167206 -k1,4571:23989533,41616645:167207 -k1,4571:25645062,41616645:167206 -k1,4571:26025229,41616645:167175 -k1,4571:28861716,41616645:167206 -k1,4571:30048008,41616645:167207 -k1,4571:31307699,41616645:167206 -k1,4572:31966991,41616645:0 -) -(1,4572:7246811,42458133:24720180,505283,134348 -(1,4571:7246811,42458133:0,452978,115847 -r1,4669:10067060,42458133:2820249,568825,115847 -k1,4571:7246811,42458133:-2820249 -) -(1,4571:7246811,42458133:2820249,452978,115847 -k1,4571:7246811,42458133:3277 -h1,4571:10063783,42458133:0,411205,112570 -) -k1,4571:10262709,42458133:195649 -k1,4571:11649803,42458133:195649 -k1,4571:12633850,42458133:195649 -k1,4571:15800901,42458133:195649 -(1,4571:15800901,42458133:0,452978,115847 -r1,4669:18621150,42458133:2820249,568825,115847 -k1,4571:15800901,42458133:-2820249 -) -(1,4571:15800901,42458133:2820249,452978,115847 -k1,4571:15800901,42458133:3277 -h1,4571:18617873,42458133:0,411205,112570 -) -k1,4571:18990469,42458133:195649 -k1,4571:20377564,42458133:195650 -(1,4571:20377564,42458133:0,452978,115847 -r1,4669:22494389,42458133:2116825,568825,115847 -k1,4571:20377564,42458133:-2116825 -) -(1,4571:20377564,42458133:2116825,452978,115847 -k1,4571:20377564,42458133:3277 -h1,4571:22491112,42458133:0,411205,112570 -) -k1,4571:22690038,42458133:195649 -k1,4571:24077132,42458133:195649 -(1,4571:24077132,42458133:0,452978,115847 -r1,4669:26897381,42458133:2820249,568825,115847 -k1,4571:24077132,42458133:-2820249 -) -(1,4571:24077132,42458133:2820249,452978,115847 -k1,4571:24077132,42458133:3277 -h1,4571:26894104,42458133:0,411205,112570 -) -k1,4571:27093030,42458133:195649 -k1,4571:27940107,42458133:195649 -k1,4571:30166717,42458133:195649 -k1,4572:31966991,42458133:0 -) -(1,4572:7246811,43299621:24720180,513147,126483 -k1,4571:8845671,43299621:232434 -k1,4571:9737398,43299621:232435 -k1,4571:10325692,43299621:232434 -k1,4571:11947489,43299621:232434 -k1,4571:14229890,43299621:232435 -k1,4571:16020115,43299621:232434 -k1,4571:17356831,43299621:232434 -k1,4571:18337032,43299621:232435 -k1,4571:20082692,43299621:232434 -k1,4571:21001288,43299621:232434 -k1,4571:22512330,43299621:232435 -k1,4571:24138715,43299621:232434 -k1,4571:25694976,43299621:232434 -k1,4571:27118856,43299621:232435 -k1,4571:29584102,43299621:232434 -k1,4571:31966991,43299621:0 -) -(1,4572:7246811,44141109:24720180,513147,115847 -g1,4571:9013661,44141109 -(1,4571:9013661,44141109:0,452978,115847 -r1,4669:10427062,44141109:1413401,568825,115847 -k1,4571:9013661,44141109:-1413401 -) -(1,4571:9013661,44141109:1413401,452978,115847 -k1,4571:9013661,44141109:3277 -h1,4571:10423785,44141109:0,411205,112570 -) -k1,4572:31966992,44141109:21366260 -g1,4572:31966992,44141109 -) -(1,4574:7246811,44982597:24720180,513147,134348 -h1,4573:7246811,44982597:983040,0,0 -k1,4573:9227047,44982597:179307 -k1,4573:10274705,44982597:179306 -k1,4573:11558294,44982597:179307 -k1,4573:12762583,44982597:179306 -k1,4573:14983992,44982597:179307 -k1,4573:16861336,44982597:179306 -k1,4573:18776036,44982597:179307 -k1,4573:19311202,44982597:179306 -k1,4573:21442171,44982597:179307 -k1,4573:23010185,44982597:179306 -k1,4573:24927507,44982597:179307 -k1,4573:26054464,44982597:179306 -k1,4573:26589631,44982597:179307 -k1,4573:28158300,44982597:179306 -k1,4573:30387573,44982597:179307 -k1,4574:31966991,44982597:0 -) +) +) +] +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,49800853:0,16384,2228224 +g1,4675:29030814,49800853 +g1,4675:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4675:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4675:37855564,49800853:1179648,16384,0 +) +) +k1,4675:3078556,49800853:-34777008 +) +] +g1,4675:6630773,4812305 +g1,4675:6630773,4812305 +g1,4675:8364200,4812305 +g1,4675:10765439,4812305 +k1,4675:31786111,4812305:21020672 +) +) +] +[1,4675:6630773,45706769:25952256,40108032,0 +(1,4675:6630773,45706769:25952256,40108032,0 +(1,4675:6630773,45706769:0,0,0 +g1,4675:6630773,45706769 +) +[1,4675:6630773,45706769:25952256,40108032,0 +v1,4537:6630773,6254097:0,393216,0 +(1,4556:6630773,18844082:25952256,12983201,616038 +g1,4556:6630773,18844082 +(1,4556:6630773,18844082:25952256,12983201,616038 +(1,4556:6630773,19460120:25952256,13599239,0 +[1,4556:6630773,19460120:25952256,13599239,0 +(1,4556:6630773,19433906:25952256,13546811,0 +r1,4556:6656987,19433906:26214,13546811,0 +[1,4556:6656987,19433906:25899828,13546811,0 +(1,4556:6656987,18844082:25899828,12367163,0 +[1,4556:7246811,18844082:24720180,12367163,0 +(1,4538:7246811,7638804:24720180,1161885,196608 +(1,4537:7246811,7638804:0,1161885,196608 +r1,4556:8794447,7638804:1547636,1358493,196608 +k1,4537:7246811,7638804:-1547636 +) +(1,4537:7246811,7638804:1547636,1161885,196608 +) +k1,4537:9050067,7638804:255620 +k1,4537:13564217,7638804:255620 +k1,4537:14688188,7638804:255619 +k1,4537:16048090,7638804:255620 +k1,4537:17396195,7638804:255620 +k1,4537:20306678,7638804:255620 +k1,4537:23301703,7638804:255620 +k1,4537:24208751,7638804:255620 +k1,4537:26819079,7638804:255619 +k1,4537:29787890,7638804:255620 +k1,4537:31611131,7638804:255620 +k1,4537:31966991,7638804:0 +) +(1,4538:7246811,8480292:24720180,513147,134348 +k1,4537:8995967,8480292:239206 +k1,4537:9894466,8480292:239207 +k1,4537:10489532,8480292:239206 +k1,4537:12118102,8480292:239207 +k1,4537:14407274,8480292:239206 +k1,4537:15274316,8480292:239207 +k1,4537:16716763,8480292:239206 +k1,4537:19617387,8480292:239207 +k1,4537:20724945,8480292:239206 +k1,4537:23318861,8480292:239207 +k1,4537:23913927,8480292:239206 +k1,4537:26026153,8480292:239207 +k1,4537:28821918,8480292:239206 +k1,4537:29879014,8480292:239207 +k1,4537:31552148,8480292:239206 +k1,4538:31966991,8480292:0 +) +(1,4538:7246811,9321780:24720180,513147,134348 +k1,4537:8993946,9321780:254225 +k1,4537:10314442,9321780:254225 +k1,4537:13095080,9321780:254225 +k1,4537:16004168,9321780:254225 +k1,4537:18997798,9321780:254225 +k1,4537:20013551,9321780:254225 +k1,4537:22179461,9321780:254225 +k1,4537:23302038,9321780:254225 +k1,4537:25086529,9321780:254225 +k1,4537:25992182,9321780:254225 +k1,4537:27512563,9321780:254225 +k1,4537:28785873,9321780:254225 +k1,4537:31966991,9321780:0 +) +(1,4538:7246811,10163268:24720180,513147,7863 +g1,4537:9195196,10163268 +g1,4537:10053717,10163268 +g1,4537:11272031,10163268 +g1,4537:13854149,10163268 +g1,4537:14704806,10163268 +k1,4538:31966991,10163268:15163722 +g1,4538:31966991,10163268 +) +v1,4540:7246811,11353734:0,393216,0 +(1,4553:7246811,16305862:24720180,5345344,196608 +g1,4553:7246811,16305862 +g1,4553:7246811,16305862 +g1,4553:7050203,16305862 +(1,4553:7050203,16305862:0,5345344,196608 +r1,4556:32163599,16305862:25113396,5541952,196608 +k1,4553:7050203,16305862:-25113396 +) +(1,4553:7050203,16305862:25113396,5345344,196608 +[1,4553:7246811,16305862:24720180,5148736,0 +(1,4542:7246811,11567644:24720180,410518,101187 +(1,4541:7246811,11567644:0,0,0 +g1,4541:7246811,11567644 +g1,4541:7246811,11567644 +g1,4541:6919131,11567644 +(1,4541:6919131,11567644:0,0,0 +) +g1,4541:7246811,11567644 +) +g1,4542:9143685,11567644 +g1,4542:9775977,11567644 +g1,4542:16731182,11567644 +g1,4542:17679619,11567644 +h1,4542:19260347,11567644:0,0,0 +k1,4542:31966991,11567644:12706644 +g1,4542:31966991,11567644 +) +(1,4552:7246811,12299358:24720180,379060,0 +(1,4544:7246811,12299358:0,0,0 +g1,4544:7246811,12299358 +g1,4544:7246811,12299358 +g1,4544:6919131,12299358 +(1,4544:6919131,12299358:0,0,0 +) +g1,4544:7246811,12299358 +) +g1,4552:8195248,12299358 +g1,4552:8511394,12299358 +g1,4552:8827540,12299358 +g1,4552:9459832,12299358 +g1,4552:9775978,12299358 +g1,4552:10092124,12299358 +g1,4552:10408270,12299358 +g1,4552:10724416,12299358 +h1,4552:11040562,12299358:0,0,0 +k1,4552:31966990,12299358:20926428 +g1,4552:31966990,12299358 +) +(1,4552:7246811,12965536:24720180,388497,7863 +h1,4552:7246811,12965536:0,0,0 +g1,4552:8195248,12965536 +g1,4552:8827540,12965536 +g1,4552:9459832,12965536 +g1,4552:9775978,12965536 +h1,4552:11040561,12965536:0,0,0 +k1,4552:31966991,12965536:20926430 +g1,4552:31966991,12965536 +) +(1,4552:7246811,13631714:24720180,388497,7863 +h1,4552:7246811,13631714:0,0,0 +g1,4552:8195248,13631714 +g1,4552:8827540,13631714 +g1,4552:9459832,13631714 +h1,4552:11040560,13631714:0,0,0 +k1,4552:31966992,13631714:20926432 +g1,4552:31966992,13631714 +) +(1,4552:7246811,14297892:24720180,388497,9436 +h1,4552:7246811,14297892:0,0,0 +g1,4552:8195248,14297892 +g1,4552:8827540,14297892 +g1,4552:9459832,14297892 +g1,4552:9775978,14297892 +h1,4552:11040561,14297892:0,0,0 +k1,4552:31966991,14297892:20926430 +g1,4552:31966991,14297892 +) +(1,4552:7246811,14964070:24720180,379060,7863 +h1,4552:7246811,14964070:0,0,0 +g1,4552:8195248,14964070 +g1,4552:8827540,14964070 +g1,4552:9459832,14964070 +h1,4552:11040560,14964070:0,0,0 +k1,4552:31966992,14964070:20926432 +g1,4552:31966992,14964070 +) +(1,4552:7246811,15630248:24720180,379060,9436 +h1,4552:7246811,15630248:0,0,0 +g1,4552:8195248,15630248 +g1,4552:8827540,15630248 +g1,4552:9459832,15630248 +g1,4552:9775978,15630248 +h1,4552:11040561,15630248:0,0,0 +k1,4552:31966991,15630248:20926430 +g1,4552:31966991,15630248 +) +(1,4552:7246811,16296426:24720180,388497,9436 +h1,4552:7246811,16296426:0,0,0 +g1,4552:8195248,16296426 +g1,4552:8827540,16296426 +g1,4552:9459832,16296426 +h1,4552:11040560,16296426:0,0,0 +k1,4552:31966992,16296426:20926432 +g1,4552:31966992,16296426 +) +] +) +g1,4553:31966991,16305862 +g1,4553:7246811,16305862 +g1,4553:7246811,16305862 +g1,4553:31966991,16305862 +g1,4553:31966991,16305862 +) +h1,4553:7246811,16502470:0,0,0 +(1,4556:7246811,17868246:24720180,513147,134348 +h1,4555:7246811,17868246:983040,0,0 +k1,4555:10757288,17868246:188457 +k1,4555:11605038,17868246:188458 +k1,4555:13528888,17868246:188457 +k1,4555:14736431,17868246:188458 +k1,4555:17471617,17868246:188457 +k1,4555:19025189,17868246:188457 +k1,4555:20081999,17868246:188458 +k1,4555:21374738,17868246:188457 +k1,4555:22655680,17868246:188457 +k1,4555:23863223,17868246:188458 +k1,4555:26798294,17868246:188457 +(1,4555:26798294,17868246:0,452978,115847 +r1,4556:28211695,17868246:1413401,568825,115847 +k1,4555:26798294,17868246:-1413401 +) +(1,4555:26798294,17868246:1413401,452978,115847 +k1,4555:26798294,17868246:3277 +h1,4555:28208418,17868246:0,411205,112570 +) +k1,4555:28400153,17868246:188458 +k1,4555:29271495,17868246:188457 +k1,4556:31966991,17868246:0 +) +(1,4556:7246811,18709734:24720180,505283,134348 +(1,4555:7246811,18709734:0,452978,122846 +r1,4556:9715348,18709734:2468537,575824,122846 +k1,4555:7246811,18709734:-2468537 +) +(1,4555:7246811,18709734:2468537,452978,122846 +k1,4555:7246811,18709734:3277 +h1,4555:9712071,18709734:0,411205,112570 +) +g1,4555:9914577,18709734 +g1,4555:10765234,18709734 +g1,4555:12889255,18709734 +g1,4555:15759731,18709734 +g1,4555:18672151,18709734 +g1,4555:19487418,18709734 +g1,4555:20042507,18709734 +g1,4555:22114755,18709734 +k1,4556:31966991,18709734:6492205 +g1,4556:31966991,18709734 +) +] +) +] +r1,4556:32583029,19433906:26214,13546811,0 +) +] +) +) +g1,4556:32583029,18844082 +) +h1,4556:6630773,19460120:0,0,0 +v1,4559:6630773,20757201:0,393216,0 +(1,4570:6630773,28231089:25952256,7867104,616038 +g1,4570:6630773,28231089 +(1,4570:6630773,28231089:25952256,7867104,616038 +(1,4570:6630773,28847127:25952256,8483142,0 +[1,4570:6630773,28847127:25952256,8483142,0 +(1,4570:6630773,28820913:25952256,8430714,0 +r1,4570:6656987,28820913:26214,8430714,0 +[1,4570:6656987,28820913:25899828,8430714,0 +(1,4570:6656987,28231089:25899828,7251066,0 +[1,4570:7246811,28231089:24720180,7251066,0 +(1,4561:7246811,22067397:24720180,1087374,126483 +k1,4559:8666095,22067397:209581 +k1,4559:9503511,22067397:209581 +k1,4559:10732178,22067397:209582 +k1,4559:13696237,22067397:209581 +k1,4559:15402005,22067397:209581 +k1,4559:17582254,22067397:209581 +k1,4559:18660188,22067397:209582 +k1,4559:21215303,22067397:209581 +k1,4559:22443969,22067397:209581 +k1,4559:23801741,22067397:209581 +k1,4559:26394211,22067397:209581 +k1,4559:27263085,22067397:209582 +k1,4559:28491751,22067397:209581 +k1,4559:30090695,22067397:209581 +k1,4561:31966991,22067397:0 +) +(1,4561:7246811,22908885:24720180,513147,134348 +(1,4559:7246811,22908885:0,459977,115847 +r1,4570:8660212,22908885:1413401,575824,115847 +k1,4559:7246811,22908885:-1413401 +) +(1,4559:7246811,22908885:1413401,459977,115847 +k1,4559:7246811,22908885:3277 +h1,4559:8656935,22908885:0,411205,112570 +) +k1,4559:9129043,22908885:295161 +k1,4560:10912527,22908885:295161 +k1,4560:11739185,22908885:295161 +k1,4560:12805049,22908885:295161 +k1,4560:15599753,22908885:295161 +k1,4560:17367508,22908885:295161 +k1,4560:18610321,22908885:295162 +k1,4560:20075955,22908885:295161 +k1,4560:21022544,22908885:295161 +k1,4560:22623838,22908885:295161 +k1,4560:25702968,22908885:295161 +k1,4560:27328510,22908885:295161 +k1,4560:28081768,22908885:295161 +k1,4560:30947906,22908885:295161 +k1,4560:31966991,22908885:0 +) +(1,4561:7246811,23750373:24720180,513147,126483 +k1,4560:10416525,23750373:225181 +k1,4560:11300999,23750373:225182 +k1,4560:14239371,23750373:225181 +k1,4560:15655998,23750373:225182 +k1,4560:17258746,23750373:225181 +k1,4560:18675372,23750373:225181 +k1,4560:20334482,23750373:225182 +k1,4560:21507314,23750373:225181 +k1,4560:22902969,23750373:225182 +k1,4560:23779578,23750373:225181 +k1,4560:25685102,23750373:225181 +k1,4560:27240665,23750373:225182 +k1,4560:28657291,23750373:225181 +k1,4560:30179431,23750373:225182 +k1,4560:30862709,23750373:225181 +k1,4560:31966991,23750373:0 +) +(1,4561:7246811,24591861:24720180,513147,134348 +k1,4560:8172553,24591861:177976 +k1,4560:10327751,24591861:177977 +k1,4560:11157155,24591861:177976 +k1,4560:12427617,24591861:177977 +k1,4560:15344998,24591861:177976 +k1,4560:16916926,24591861:177977 +k1,4560:18113987,24591861:177976 +k1,4560:21506505,24591861:177977 +k1,4560:24431095,24591861:177976 +(1,4560:24431095,24591861:0,452978,115847 +r1,4570:25492785,24591861:1061690,568825,115847 +k1,4560:24431095,24591861:-1061690 +) +(1,4560:24431095,24591861:1061690,452978,115847 +g1,4560:25137796,24591861 +h1,4560:25489508,24591861:0,411205,112570 +) +k1,4560:25670762,24591861:177977 +k1,4560:26658108,24591861:177976 +k1,4560:28302781,24591861:177977 +k1,4560:30110637,24591861:177976 +k1,4560:30947906,24591861:177977 +k1,4560:31966991,24591861:0 +) +(1,4561:7246811,25433349:24720180,473825,134348 +g1,4560:11091808,25433349 +g1,4560:14037651,25433349 +(1,4560:14037651,25433349:0,414482,115847 +r1,4570:14747629,25433349:709978,530329,115847 +k1,4560:14037651,25433349:-709978 +) +(1,4560:14037651,25433349:709978,414482,115847 +k1,4560:14037651,25433349:3277 +h1,4560:14744352,25433349:0,411205,112570 +) +k1,4561:31966991,25433349:17045692 +g1,4561:31966991,25433349 +) +v1,4563:7246811,26623815:0,393216,0 +(1,4568:7246811,27510193:24720180,1279594,196608 +g1,4568:7246811,27510193 +g1,4568:7246811,27510193 +g1,4568:7050203,27510193 +(1,4568:7050203,27510193:0,1279594,196608 +r1,4570:32163599,27510193:25113396,1476202,196608 +k1,4568:7050203,27510193:-25113396 +) +(1,4568:7050203,27510193:25113396,1279594,196608 +[1,4568:7246811,27510193:24720180,1082986,0 +(1,4565:7246811,26837725:24720180,410518,82312 +(1,4564:7246811,26837725:0,0,0 +g1,4564:7246811,26837725 +g1,4564:7246811,26837725 +g1,4564:6919131,26837725 +(1,4564:6919131,26837725:0,0,0 +) +g1,4564:7246811,26837725 +) +k1,4565:7246811,26837725:0 +g1,4565:10408269,26837725 +g1,4565:12937436,26837725 +g1,4565:13885874,26837725 +g1,4565:17047332,26837725 +k1,4565:17047332,26837725:0 +h1,4565:19260353,26837725:0,0,0 +k1,4565:31966991,26837725:12706638 +g1,4565:31966991,26837725 +) +(1,4566:7246811,27503903:24720180,410518,6290 +h1,4566:7246811,27503903:0,0,0 +h1,4566:8511394,27503903:0,0,0 +k1,4566:31966990,27503903:23455596 +g1,4566:31966990,27503903 +) +] +) +g1,4568:31966991,27510193 +g1,4568:7246811,27510193 +g1,4568:7246811,27510193 +g1,4568:31966991,27510193 +g1,4568:31966991,27510193 +) +h1,4568:7246811,27706801:0,0,0 +] +) +] +r1,4570:32583029,28820913:26214,8430714,0 +) +] +) +) +g1,4570:32583029,28231089 +) +h1,4570:6630773,28847127:0,0,0 +v1,4573:6630773,30144209:0,393216,0 +(1,4574:6630773,35794355:25952256,6043362,616038 +g1,4574:6630773,35794355 +(1,4574:6630773,35794355:25952256,6043362,616038 +(1,4574:6630773,36410393:25952256,6659400,0 +[1,4574:6630773,36410393:25952256,6659400,0 +(1,4574:6630773,36384179:25952256,6606972,0 +r1,4574:6656987,36384179:26214,6606972,0 +[1,4574:6656987,36384179:25899828,6606972,0 +(1,4574:6656987,35794355:25899828,5427324,0 +[1,4574:7246811,35794355:24720180,5427324,0 +(1,4574:7246811,31452567:24720180,1085536,298548 +(1,4573:7246811,31452567:0,1085536,298548 +r1,4574:8753226,31452567:1506415,1384084,298548 +k1,4573:7246811,31452567:-1506415 +) +(1,4573:7246811,31452567:1506415,1085536,298548 +) +k1,4573:8962306,31452567:209080 +k1,4573:12134268,31452567:209079 +k1,4573:12959386,31452567:209080 +k1,4573:14371706,31452567:209079 +k1,4573:15728977,31452567:209080 +k1,4573:18599474,31452567:209080 +k1,4573:19676905,31452567:209079 +k1,4573:21399211,31452567:209080 +k1,4573:24228420,31452567:209080 +k1,4573:26864297,31452567:209079 +k1,4573:27724805,31452567:209080 +k1,4573:29649617,31452567:209079 +k1,4573:30316794,31452567:209080 +k1,4573:31966991,31452567:0 +) +(1,4574:7246811,32294055:24720180,505283,134348 +k1,4573:11064939,32294055:211026 +k1,4573:11892003,32294055:211026 +k1,4573:14814253,32294055:211026 +k1,4573:18132996,32294055:211026 +k1,4573:18960060,32294055:211026 +k1,4573:21332463,32294055:211026 +k1,4573:22226374,32294055:211026 +k1,4573:24139370,32294055:211026 +k1,4573:25846583,32294055:211026 +k1,4573:27342115,32294055:211026 +k1,4573:28685603,32294055:211026 +k1,4573:29644395,32294055:211026 +k1,4573:31966991,32294055:0 +) +(1,4574:7246811,33135543:24720180,513147,126483 +k1,4573:8250227,33135543:188148 +k1,4573:9530860,33135543:188148 +k1,4573:12101897,33135543:188148 +k1,4573:12972930,33135543:188148 +k1,4573:15784484,33135543:188148 +k1,4573:18040949,33135543:188149 +k1,4573:20556280,33135543:188148 +k1,4573:21403720,33135543:188148 +k1,4573:24767087,33135543:188148 +k1,4573:27382033,33135543:188148 +k1,4573:30608430,33135543:188148 +k1,4574:31966991,33135543:0 +) +(1,4574:7246811,33977031:24720180,505283,134348 +k1,4573:9097275,33977031:192403 +k1,4573:10670521,33977031:192402 +k1,4573:12908958,33977031:192403 +k1,4573:14597548,33977031:192403 +k1,4573:16573185,33977031:192402 +k1,4573:18415785,33977031:192403 +k1,4573:21132635,33977031:192403 +k1,4573:22011199,33977031:192402 +k1,4573:24774579,33977031:192403 +k1,4573:28115987,33977031:192403 +k1,4573:28924427,33977031:192402 +k1,4573:30135915,33977031:192403 +k1,4573:31966991,33977031:0 +) +(1,4574:7246811,34818519:24720180,513147,102891 +k1,4573:9180302,34818519:164674 +k1,4573:10798565,34818519:164674 +k1,4573:11982323,34818519:164673 +k1,4573:13886323,34818519:164674 +k1,4573:14710289,34818519:164674 +k1,4573:17588154,34818519:164674 +k1,4573:18944273,34818519:164674 +k1,4573:22223873,34818519:164674 +k1,4573:25569664,34818519:164673 +k1,4573:28334807,34818519:164674 +k1,4573:29127316,34818519:164674 +k1,4573:31966991,34818519:0 +) +(1,4574:7246811,35660007:24720180,513147,134348 +k1,4573:9127530,35660007:145326 +k1,4573:12885856,35660007:145326 +k1,4573:15099498,35660007:145326 +k1,4573:17290858,35660007:145326 +k1,4573:21937852,35660007:145326 +k1,4573:25316069,35660007:145326 +k1,4573:27331793,35660007:145326 +k1,4573:28128547,35660007:145326 +k1,4574:31966991,35660007:0 +k1,4574:31966991,35660007:0 +) +] +) +] +r1,4574:32583029,36384179:26214,6606972,0 +) +] +) +) +g1,4574:32583029,35794355 +) +h1,4574:6630773,36410393:0,0,0 +v1,4577:6630773,37707474:0,393216,0 +(1,4675:6630773,45116945:25952256,7802687,589824 +g1,4675:6630773,45116945 +(1,4675:6630773,45116945:25952256,7802687,589824 +(1,4675:6630773,45706769:25952256,8392511,0 +[1,4675:6630773,45706769:25952256,8392511,0 +(1,4675:6630773,45706769:25952256,8366297,0 +r1,4675:6656987,45706769:26214,8366297,0 +[1,4675:6656987,45706769:25899828,8366297,0 +(1,4675:6656987,45116945:25899828,7186649,0 +[1,4675:7246811,45116945:24720180,7186649,0 +(1,4578:7246811,39092181:24720180,1161885,196608 +(1,4577:7246811,39092181:0,1161885,196608 +r1,4675:8794447,39092181:1547636,1358493,196608 +k1,4577:7246811,39092181:-1547636 +) +(1,4577:7246811,39092181:1547636,1161885,196608 +) +k1,4577:8965218,39092181:170771 +k1,4577:9605883,39092181:170772 +k1,4577:10308151,39092181:170771 +k1,4577:13926772,39092181:170772 +k1,4577:18196165,39092181:170771 +k1,4577:19018365,39092181:170772 +k1,4577:20664351,39092181:170771 +k1,4577:21486551,39092181:170772 +k1,4577:24530420,39092181:170771 +k1,4577:25720277,39092181:170772 +k1,4577:27629063,39092181:170771 +k1,4577:28459127,39092181:170772 +k1,4577:28985758,39092181:170771 +k1,4578:31966991,39092181:0 +) +(1,4578:7246811,39933669:24720180,513147,134348 +k1,4577:9003570,39933669:263193 +k1,4577:9952924,39933669:263192 +k1,4577:10571977,39933669:263193 +k1,4577:11828695,39933669:263192 +k1,4577:12774773,39933669:263193 +k1,4577:14427328,39933669:263192 +k1,4577:16566817,39933669:263193 +k1,4577:17481437,39933669:263192 +k1,4577:18763715,39933669:263193 +k1,4577:20764922,39933669:263192 +k1,4577:21687407,39933669:263193 +k1,4577:23402221,39933669:263192 +k1,4577:26288820,39933669:263193 +k1,4577:29063352,39933669:263192 +k1,4577:31064560,39933669:263193 +k1,4578:31966991,39933669:0 +) +(1,4578:7246811,40775157:24720180,513147,134348 +k1,4577:9725776,40775157:195691 +k1,4577:11753854,40775157:195691 +k1,4577:12941105,40775157:195691 +k1,4577:16162593,40775157:195691 +k1,4577:16974322,40775157:195691 +k1,4577:17584852,40775157:195687 +k1,4577:19065049,40775157:195691 +k1,4577:20942394,40775157:195691 +k1,4577:21883229,40775157:195691 +k1,4577:22730348,40775157:195691 +k1,4577:25166715,40775157:195691 +k1,4577:27281300,40775157:195691 +k1,4577:27891830,40775157:195687 +k1,4577:29804564,40775157:195691 +k1,4577:30947906,40775157:195691 +k1,4577:31966991,40775157:0 +) +(1,4578:7246811,41616645:24720180,513147,134348 +k1,4577:9567070,41616645:251943 +k1,4577:10478305,41616645:251943 +k1,4577:13020076,41616645:251943 +k1,4577:14140371,41616645:251943 +k1,4577:16729983,41616645:251943 +k1,4577:17597964,41616645:251943 +k1,4577:18205767,41616645:251943 +k1,4577:19953897,41616645:251943 +k1,4577:23565871,41616645:251943 +k1,4577:25306137,41616645:251943 +k1,4577:25771019,41616645:251890 +k1,4577:28692243,41616645:251943 +k1,4577:29963271,41616645:251943 +k1,4577:31307699,41616645:251943 +k1,4578:31966991,41616645:0 +) +(1,4578:7246811,42458133:24720180,505283,134348 +(1,4577:7246811,42458133:0,452978,115847 +r1,4675:10067060,42458133:2820249,568825,115847 +k1,4577:7246811,42458133:-2820249 +) +(1,4577:7246811,42458133:2820249,452978,115847 +k1,4577:7246811,42458133:3277 +h1,4577:10063783,42458133:0,411205,112570 +) +k1,4577:10262709,42458133:195649 +k1,4577:11649803,42458133:195649 +k1,4577:12633850,42458133:195649 +k1,4577:15800901,42458133:195649 +(1,4577:15800901,42458133:0,452978,115847 +r1,4675:18621150,42458133:2820249,568825,115847 +k1,4577:15800901,42458133:-2820249 +) +(1,4577:15800901,42458133:2820249,452978,115847 +k1,4577:15800901,42458133:3277 +h1,4577:18617873,42458133:0,411205,112570 +) +k1,4577:18990469,42458133:195649 +k1,4577:20377564,42458133:195650 +(1,4577:20377564,42458133:0,452978,115847 +r1,4675:22494389,42458133:2116825,568825,115847 +k1,4577:20377564,42458133:-2116825 +) +(1,4577:20377564,42458133:2116825,452978,115847 +k1,4577:20377564,42458133:3277 +h1,4577:22491112,42458133:0,411205,112570 +) +k1,4577:22690038,42458133:195649 +k1,4577:24077132,42458133:195649 +(1,4577:24077132,42458133:0,452978,115847 +r1,4675:26897381,42458133:2820249,568825,115847 +k1,4577:24077132,42458133:-2820249 +) +(1,4577:24077132,42458133:2820249,452978,115847 +k1,4577:24077132,42458133:3277 +h1,4577:26894104,42458133:0,411205,112570 +) +k1,4577:27093030,42458133:195649 +k1,4577:27940107,42458133:195649 +k1,4577:30166717,42458133:195649 +k1,4578:31966991,42458133:0 +) +(1,4578:7246811,43299621:24720180,513147,126483 +k1,4577:8845671,43299621:232434 +k1,4577:9737398,43299621:232435 +k1,4577:10325692,43299621:232434 +k1,4577:11947489,43299621:232434 +k1,4577:14229890,43299621:232435 +k1,4577:16020115,43299621:232434 +k1,4577:17356831,43299621:232434 +k1,4577:18337032,43299621:232435 +k1,4577:20082692,43299621:232434 +k1,4577:21001288,43299621:232434 +k1,4577:22512330,43299621:232435 +k1,4577:24138715,43299621:232434 +k1,4577:25694976,43299621:232434 +k1,4577:27118856,43299621:232435 +k1,4577:29584102,43299621:232434 +k1,4577:31966991,43299621:0 +) +(1,4578:7246811,44141109:24720180,513147,115847 +g1,4577:9013661,44141109 +(1,4577:9013661,44141109:0,452978,115847 +r1,4675:10427062,44141109:1413401,568825,115847 +k1,4577:9013661,44141109:-1413401 +) +(1,4577:9013661,44141109:1413401,452978,115847 +k1,4577:9013661,44141109:3277 +h1,4577:10423785,44141109:0,411205,112570 +) +k1,4578:31966992,44141109:21366260 +g1,4578:31966992,44141109 +) +(1,4580:7246811,44982597:24720180,513147,134348 +h1,4579:7246811,44982597:983040,0,0 +k1,4579:9207823,44982597:160083 +k1,4579:10236257,44982597:160082 +k1,4579:11500622,44982597:160083 +k1,4579:12685688,44982597:160083 +k1,4579:14887872,44982597:160082 +k1,4579:16745993,44982597:160083 +k1,4579:18641469,44982597:160083 +k1,4579:19157411,44982597:160082 +k1,4579:21269156,44982597:160083 +k1,4579:22817947,44982597:160083 +k1,4579:24716044,44982597:160082 +k1,4579:25823778,44982597:160083 +k1,4579:26339721,44982597:160083 +k1,4579:27889166,44982597:160082 +k1,4579:30099215,44982597:160083 +k1,4580:31966991,44982597:0 +) ] ) ] -r1,4669:32583029,45706769:26214,8366297,0 +r1,4675:32583029,45706769:26214,8366297,0 ) ] ) ) -g1,4669:32583029,45116945 +g1,4675:32583029,45116945 ) ] -(1,4669:32583029,45706769:0,0,0 -g1,4669:32583029,45706769 +(1,4675:32583029,45706769:0,0,0 +g1,4675:32583029,45706769 ) ) ] -(1,4669:6630773,47279633:25952256,0,0 -h1,4669:6630773,47279633:25952256,0,0 +(1,4675:6630773,47279633:25952256,0,0 +h1,4675:6630773,47279633:25952256,0,0 ) ] -h1,4669:4262630,4025873:0,0,0 +h1,4675:4262630,4025873:0,0,0 ] -!24451 +!24449 }84 !11 {85 -[1,4669:4262630,47279633:28320399,43253760,0 -(1,4669:4262630,4025873:0,0,0 -[1,4669:-473657,4025873:25952256,0,0 -(1,4669:-473657,-710414:25952256,0,0 -h1,4669:-473657,-710414:0,0,0 -(1,4669:-473657,-710414:0,0,0 -(1,4669:-473657,-710414:0,0,0 -g1,4669:-473657,-710414 -(1,4669:-473657,-710414:65781,0,65781 -g1,4669:-407876,-710414 -[1,4669:-407876,-644633:0,0,0 +[1,4675:4262630,47279633:28320399,43253760,0 +(1,4675:4262630,4025873:0,0,0 +[1,4675:-473657,4025873:25952256,0,0 +(1,4675:-473657,-710414:25952256,0,0 +h1,4675:-473657,-710414:0,0,0 +(1,4675:-473657,-710414:0,0,0 +(1,4675:-473657,-710414:0,0,0 +g1,4675:-473657,-710414 +(1,4675:-473657,-710414:65781,0,65781 +g1,4675:-407876,-710414 +[1,4675:-407876,-644633:0,0,0 ] ) -k1,4669:-473657,-710414:-65781 +k1,4675:-473657,-710414:-65781 ) ) -k1,4669:25478599,-710414:25952256 -g1,4669:25478599,-710414 +k1,4675:25478599,-710414:25952256 +g1,4675:25478599,-710414 ) ] ) -[1,4669:6630773,47279633:25952256,43253760,0 -[1,4669:6630773,4812305:25952256,786432,0 -(1,4669:6630773,4812305:25952256,505283,134348 -(1,4669:6630773,4812305:25952256,505283,134348 -g1,4669:3078558,4812305 -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,2439708:0,1703936,0 -k1,4669:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4669:2537886,2439708:1179648,16384,0 +[1,4675:6630773,47279633:25952256,43253760,0 +[1,4675:6630773,4812305:25952256,786432,0 +(1,4675:6630773,4812305:25952256,505283,134348 +(1,4675:6630773,4812305:25952256,505283,134348 +g1,4675:3078558,4812305 +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,2439708:0,1703936,0 +k1,4675:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4675:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4669:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4675:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,2439708:0,1703936,0 -g1,4669:29030814,2439708 -g1,4669:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4669:36151628,1915420:16384,1179648,0 +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,2439708:0,1703936,0 +g1,4675:29030814,2439708 +g1,4675:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4675:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4669:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4675:37855564,2439708:1179648,16384,0 ) ) -k1,4669:3078556,2439708:-34777008 +k1,4675:3078556,2439708:-34777008 ) ] -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,49800853:0,16384,2228224 -k1,4669:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4669:2537886,49800853:1179648,16384,0 +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,49800853:0,16384,2228224 +k1,4675:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4675:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4669:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4675:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4669:3078558,4812305:0,0,0 -(1,4669:3078558,49800853:0,16384,2228224 -g1,4669:29030814,49800853 -g1,4669:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4669:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) +[1,4675:3078558,4812305:0,0,0 +(1,4675:3078558,49800853:0,16384,2228224 +g1,4675:29030814,49800853 +g1,4675:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4675:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4669:37855564,49800853:1179648,16384,0 -) -) -k1,4669:3078556,49800853:-34777008 -) -] -g1,4669:6630773,4812305 -k1,4669:19562994,4812305:12135303 -g1,4669:20949735,4812305 -g1,4669:21598541,4812305 -g1,4669:24912696,4812305 -g1,4669:27600327,4812305 -g1,4669:29010006,4812305 -) -) -] -[1,4669:6630773,45706769:25952256,40108032,0 -(1,4669:6630773,45706769:25952256,40108032,0 -(1,4669:6630773,45706769:0,0,0 -g1,4669:6630773,45706769 -) -[1,4669:6630773,45706769:25952256,40108032,0 -v1,4669:6630773,6254097:0,393216,0 -(1,4669:6630773,45116945:25952256,39256064,589824 -g1,4669:6630773,45116945 -(1,4669:6630773,45116945:25952256,39256064,589824 -(1,4669:6630773,45706769:25952256,39845888,0 -[1,4669:6630773,45706769:25952256,39845888,0 -(1,4669:6630773,45706769:25952256,39845888,0 -r1,4669:6656987,45706769:26214,39845888,0 -[1,4669:6656987,45706769:25899828,39845888,0 -(1,4669:6656987,45116945:25899828,38666240,0 -[1,4669:7246811,45116945:24720180,38666240,0 -(1,4574:7246811,6963852:24720180,513147,134348 -k1,4573:8731248,6963852:205830 -k1,4573:9292938,6963852:205830 -k1,4573:11623445,6963852:205830 -k1,4573:15300717,6963852:205830 -k1,4573:16610829,6963852:205830 -k1,4573:18617588,6963852:205830 -k1,4573:20666290,6963852:205830 -k1,4573:21488157,6963852:205829 -k1,4573:22049847,6963852:205830 -k1,4573:23644385,6963852:205830 -k1,4573:25041660,6963852:205830 -k1,4573:27731305,6963852:205830 -k1,4573:28588563,6963852:205830 -k1,4573:30206694,6963852:205830 -k1,4574:31966991,6963852:0 -) -(1,4574:7246811,7805340:24720180,513147,126483 -k1,4573:9252071,7805340:192534 -k1,4573:12049662,7805340:192535 -(1,4573:12049662,7805340:0,452978,115847 -r1,4669:14166487,7805340:2116825,568825,115847 -k1,4573:12049662,7805340:-2116825 -) -(1,4573:12049662,7805340:2116825,452978,115847 -k1,4573:12049662,7805340:3277 -h1,4573:14163210,7805340:0,411205,112570 -) -k1,4573:14359021,7805340:192534 -k1,4573:15083053,7805340:192535 -k1,4573:16788813,7805340:192534 -k1,4573:18379231,7805340:192535 -k1,4573:19223193,7805340:192534 -k1,4573:20900118,7805340:192535 -k1,4573:22111737,7805340:192534 -k1,4573:25367425,7805340:192535 -k1,4573:27240302,7805340:192534 -k1,4573:28084265,7805340:192535 -k1,4573:29295884,7805340:192534 -k1,4573:30794552,7805340:192535 -k1,4573:31966991,7805340:0 -) -(1,4574:7246811,8646828:24720180,505283,134348 -(1,4573:9436369,8646828:0,452978,115847 -r1,4669:11553194,8646828:2116825,568825,115847 -k1,4573:9436369,8646828:-2116825 -) -(1,4573:9436369,8646828:2116825,452978,115847 -k1,4573:9436369,8646828:3277 -h1,4573:11549917,8646828:0,411205,112570 -) -g1,4573:11752423,8646828 -g1,4573:12483149,8646828 -g1,4573:15772401,8646828 -g1,4573:16587668,8646828 -g1,4573:19065584,8646828 -h1,4573:20434631,8646828:0,0,0 -g1,4573:20633860,8646828 -g1,4573:21642459,8646828 -g1,4573:23339841,8646828 -h1,4573:24136759,8646828:0,0,0 -k1,4574:31966991,8646828:7449468 -g1,4574:31966991,8646828 -) -v1,4576:7246811,10202038:0,393216,0 -(1,4588:7246811,14487988:24720180,4679166,196608 -g1,4588:7246811,14487988 -g1,4588:7246811,14487988 -g1,4588:7050203,14487988 -(1,4588:7050203,14487988:0,4679166,196608 -r1,4669:32163599,14487988:25113396,4875774,196608 -k1,4588:7050203,14487988:-25113396 -) -(1,4588:7050203,14487988:25113396,4679166,196608 -[1,4588:7246811,14487988:24720180,4482558,0 -(1,4578:7246811,10415948:24720180,410518,101187 -(1,4577:7246811,10415948:0,0,0 -g1,4577:7246811,10415948 -g1,4577:7246811,10415948 -g1,4577:6919131,10415948 -(1,4577:6919131,10415948:0,0,0 -) -g1,4577:7246811,10415948 -) -g1,4578:12621288,10415948 -g1,4578:13569726,10415948 -g1,4578:17679621,10415948 -g1,4578:18311913,10415948 -g1,4578:20208788,10415948 -g1,4578:20841080,10415948 -g1,4578:21473372,10415948 -h1,4578:22105664,10415948:0,0,0 -k1,4578:31966991,10415948:9861327 -g1,4578:31966991,10415948 -) -(1,4579:7246811,11082126:24720180,410518,101187 -h1,4579:7246811,11082126:0,0,0 -g1,4579:13253580,11082126 -k1,4579:13253580,11082126:0 -h1,4579:13885872,11082126:0,0,0 -k1,4579:31966992,11082126:18081120 -g1,4579:31966992,11082126 -) -(1,4580:7246811,11748304:24720180,410518,101187 -h1,4580:7246811,11748304:0,0,0 -g1,4580:7562957,11748304 -g1,4580:7879103,11748304 -g1,4580:14202018,11748304 -g1,4580:14834310,11748304 -g1,4580:21157224,11748304 -g1,4580:21789516,11748304 -h1,4580:27480139,11748304:0,0,0 -k1,4580:31966991,11748304:4486852 -g1,4580:31966991,11748304 -) -(1,4581:7246811,12414482:24720180,410518,101187 -h1,4581:7246811,12414482:0,0,0 -g1,4581:14518163,12414482 -h1,4581:15150455,12414482:0,0,0 -k1,4581:31966991,12414482:16816536 -g1,4581:31966991,12414482 -) -(1,4587:7246811,13146196:24720180,379060,7863 -(1,4583:7246811,13146196:0,0,0 -g1,4583:7246811,13146196 -g1,4583:7246811,13146196 -g1,4583:6919131,13146196 -(1,4583:6919131,13146196:0,0,0 -) -g1,4583:7246811,13146196 -) -g1,4587:8195248,13146196 -g1,4587:8511394,13146196 -g1,4587:8827540,13146196 -g1,4587:9459832,13146196 -g1,4587:10092124,13146196 -g1,4587:10408270,13146196 -g1,4587:10724416,13146196 -h1,4587:11040562,13146196:0,0,0 -k1,4587:31966990,13146196:20926428 -g1,4587:31966990,13146196 -) -(1,4587:7246811,13812374:24720180,388497,9436 -h1,4587:7246811,13812374:0,0,0 -g1,4587:8195248,13812374 -g1,4587:8827540,13812374 -g1,4587:9459832,13812374 -g1,4587:10092124,13812374 -h1,4587:11040561,13812374:0,0,0 -k1,4587:31966991,13812374:20926430 -g1,4587:31966991,13812374 -) -(1,4587:7246811,14478552:24720180,388497,9436 -h1,4587:7246811,14478552:0,0,0 -g1,4587:8195248,14478552 -g1,4587:8827540,14478552 -g1,4587:9459832,14478552 -g1,4587:10092124,14478552 -h1,4587:11040561,14478552:0,0,0 -k1,4587:31966991,14478552:20926430 -g1,4587:31966991,14478552 -) -] -) -g1,4588:31966991,14487988 -g1,4588:7246811,14487988 -g1,4588:7246811,14487988 -g1,4588:31966991,14487988 -g1,4588:31966991,14487988 -) -h1,4588:7246811,14684596:0,0,0 -(1,4592:7246811,16597487:24720180,505283,134348 -h1,4591:7246811,16597487:983040,0,0 -k1,4591:10234251,16597487:212646 -(1,4591:10234251,16597487:0,452978,115847 -r1,4669:13054500,16597487:2820249,568825,115847 -k1,4591:10234251,16597487:-2820249 -) -(1,4591:10234251,16597487:2820249,452978,115847 -k1,4591:10234251,16597487:3277 -h1,4591:13051223,16597487:0,411205,112570 -) -k1,4591:13267146,16597487:212646 -k1,4591:14348143,16597487:212645 -k1,4591:15665071,16597487:212646 -k1,4591:17331306,16597487:212646 -k1,4591:18874333,16597487:212646 -k1,4591:19501808,16597487:212632 -k1,4591:21431497,16597487:212646 -k1,4591:22479727,16597487:212646 -k1,4591:24760688,16597487:212645 -k1,4591:26164779,16597487:212646 -k1,4591:30602531,16597487:212646 -k1,4592:31966991,16597487:0 -) -(1,4592:7246811,17438975:24720180,513147,134348 -k1,4591:8942209,17438975:242465 -k1,4591:10203759,17438975:242465 -k1,4591:13806255,17438975:242465 -k1,4591:15527868,17438975:242465 -(1,4591:15527868,17438975:0,452978,115847 -r1,4669:18348117,17438975:2820249,568825,115847 -k1,4591:15527868,17438975:-2820249 -) -(1,4591:15527868,17438975:2820249,452978,115847 -k1,4591:15527868,17438975:3277 -h1,4591:18344840,17438975:0,411205,112570 -) -k1,4591:18590582,17438975:242465 -k1,4591:19701399,17438975:242465 -k1,4591:21048147,17438975:242466 -k1,4591:23543740,17438975:242465 -k1,4591:24805290,17438975:242465 -k1,4591:27483073,17438975:242465 -k1,4591:29446513,17438975:242465 -k1,4591:30158871,17438975:242465 -k1,4591:30932833,17438975:242465 -k1,4592:31966991,17438975:0 -) -(1,4592:7246811,18280463:24720180,513147,134348 -k1,4591:9822225,18280463:187282 -k1,4591:10660934,18280463:187281 -k1,4591:14107321,18280463:187282 -k1,4591:15579108,18280463:187281 -k1,4591:17164273,18280463:187282 -k1,4591:18219907,18280463:187282 -k1,4591:19511470,18280463:187281 -k1,4591:21074353,18280463:187282 -k1,4591:23866036,18280463:187282 -k1,4591:25072402,18280463:187281 -k1,4591:28614472,18280463:187282 -k1,4591:30101332,18280463:187281 -k1,4591:30947906,18280463:187282 -k1,4591:31966991,18280463:0 -) -(1,4592:7246811,19121951:24720180,513147,134348 -k1,4591:11218471,19121951:152222 -k1,4591:13060212,19121951:152223 -k1,4591:14231519,19121951:152222 -k1,4591:18578701,19121951:152222 -k1,4591:19390215,19121951:152222 -k1,4591:20561523,19121951:152223 -k1,4591:22556617,19121951:152222 -k1,4591:23368131,19121951:152222 -k1,4591:24539438,19121951:152222 -k1,4591:28755548,19121951:152223 -k1,4591:30106424,19121951:152222 -k1,4591:31966991,19121951:0 -) -(1,4592:7246811,19963439:24720180,513147,134348 -k1,4591:8128220,19963439:229981 -k1,4591:9105967,19963439:229981 -k1,4591:10786915,19963439:229981 -k1,4591:13848706,19963439:229980 -k1,4591:14888057,19963439:229981 -k1,4591:16137123,19963439:229981 -k1,4591:19260519,19963439:229981 -k1,4591:20790079,19963439:229981 -k1,4591:21679352,19963439:229981 -k1,4591:22928417,19963439:229980 -k1,4591:26804166,19963439:229981 -k1,4591:29954431,19963439:229981 -k1,4591:31137961,19963439:229981 -k1,4592:31966991,19963439:0 -) -(1,4592:7246811,20804927:24720180,505283,126483 -k1,4591:9188531,20804927:220089 -k1,4591:11277050,20804927:220088 -k1,4591:12872740,20804927:220089 -k1,4591:14249538,20804927:220088 -k1,4591:17655987,20804927:220089 -k1,4591:20511278,20804927:220088 -(1,4591:20511278,20804927:0,452978,115847 -r1,4669:23331527,20804927:2820249,568825,115847 -k1,4591:20511278,20804927:-2820249 -) -(1,4591:20511278,20804927:2820249,452978,115847 -k1,4591:20511278,20804927:3277 -h1,4591:23328250,20804927:0,411205,112570 -) -k1,4591:23551616,20804927:220089 -k1,4591:24963149,20804927:220088 -(1,4591:24963149,20804927:0,452978,115847 -r1,4669:27783398,20804927:2820249,568825,115847 -k1,4591:24963149,20804927:-2820249 -) -(1,4591:24963149,20804927:2820249,452978,115847 -k1,4591:24963149,20804927:3277 -h1,4591:27780121,20804927:0,411205,112570 -) -k1,4591:28003487,20804927:220089 -k1,4591:29295744,20804927:220088 -k1,4591:31966991,20804927:0 -) -(1,4592:7246811,21646415:24720180,513147,102891 -k1,4591:10997794,21646415:234321 -k1,4591:12223675,21646415:234321 -k1,4591:15081402,21646415:234321 -k1,4591:19509372,21646415:234321 -k1,4591:20209654,21646415:234321 -k1,4591:23285615,21646415:234320 -k1,4591:24913887,21646415:234321 -k1,4591:26167293,21646415:234321 -k1,4591:28055087,21646415:234321 -k1,4591:30027423,21646415:234321 -k1,4591:30947906,21646415:234321 -k1,4591:31966991,21646415:0 -) -(1,4592:7246811,22487903:24720180,505283,134348 -k1,4591:10194859,22487903:234857 -k1,4591:11930490,22487903:234857 -k1,4591:12781386,22487903:234858 -k1,4591:14035328,22487903:234857 -k1,4591:16340467,22487903:234857 -k1,4591:18197340,22487903:234857 -k1,4591:20128924,22487903:234857 -k1,4591:21496243,22487903:234857 -k1,4591:23083764,22487903:234858 -k1,4591:27093495,22487903:234857 -k1,4591:30682485,22487903:234857 -k1,4591:31966991,22487903:0 -) -(1,4592:7246811,23329391:24720180,505283,134348 -k1,4591:8548356,23329391:197263 -k1,4591:10588492,23329391:197264 -k1,4591:11401793,23329391:197263 -k1,4591:13118837,23329391:197264 -k1,4591:13998985,23329391:197263 -k1,4591:16770503,23329391:197264 -k1,4591:17650651,23329391:197263 -k1,4591:18534076,23329391:197263 -k1,4591:20171166,23329391:197264 -k1,4591:22410531,23329391:197263 -k1,4591:22963655,23329391:197264 -k1,4591:25866244,23329391:197263 -k1,4591:27973882,23329391:197264 -k1,4591:29455651,23329391:197263 -k1,4592:31966991,23329391:0 -) -(1,4592:7246811,24170879:24720180,513147,134348 -(1,4591:7246811,24170879:0,414482,115847 -r1,4669:7605077,24170879:358266,530329,115847 -k1,4591:7246811,24170879:-358266 -) -(1,4591:7246811,24170879:358266,414482,115847 -k1,4591:7246811,24170879:3277 -h1,4591:7601800,24170879:0,411205,112570 -) -k1,4591:7765156,24170879:160079 -k1,4591:9492856,24170879:160079 -k1,4591:10672021,24170879:160080 -k1,4591:12767378,24170879:160079 -k1,4591:16984791,24170879:160079 -k1,4591:18277332,24170879:160079 -k1,4591:19185177,24170879:160079 -k1,4591:20858483,24170879:160080 -k1,4591:23345745,24170879:160079 -k1,4591:24165116,24170879:160079 -k1,4591:26708084,24170879:160079 -(1,4591:26708084,24170879:0,414482,115847 -r1,4669:27066350,24170879:358266,530329,115847 -k1,4591:26708084,24170879:-358266 -) -(1,4591:26708084,24170879:358266,414482,115847 -k1,4591:26708084,24170879:3277 -h1,4591:27063073,24170879:0,411205,112570 -) -k1,4591:27226430,24170879:160080 -k1,4591:28045801,24170879:160079 -k1,4591:29224965,24170879:160079 -k1,4592:31966991,24170879:0 -) -(1,4592:7246811,25012367:24720180,513147,115847 -(1,4591:7246811,25012367:0,459977,115847 -r1,4669:12880754,25012367:5633943,575824,115847 -k1,4591:7246811,25012367:-5633943 -) -(1,4591:7246811,25012367:5633943,459977,115847 -k1,4591:7246811,25012367:3277 -h1,4591:12877477,25012367:0,411205,112570 -) -g1,4591:13253653,25012367 -g1,4591:14649569,25012367 -g1,4591:17627525,25012367 -g1,4591:19507097,25012367 -g1,4591:20411493,25012367 -g1,4591:21270014,25012367 -g1,4591:23751862,25012367 -g1,4591:25017362,25012367 -g1,4591:26235676,25012367 -g1,4591:28790924,25012367 -k1,4592:31966991,25012367:1845686 -g1,4592:31966991,25012367 -) -v1,4594:7246811,26567576:0,393216,0 -(1,4611:7246811,34632350:24720180,8457990,196608 -g1,4611:7246811,34632350 -g1,4611:7246811,34632350 -g1,4611:7050203,34632350 -(1,4611:7050203,34632350:0,8457990,196608 -r1,4669:32163599,34632350:25113396,8654598,196608 -k1,4611:7050203,34632350:-25113396 -) -(1,4611:7050203,34632350:25113396,8457990,196608 -[1,4611:7246811,34632350:24720180,8261382,0 -(1,4596:7246811,26781486:24720180,410518,101187 -(1,4595:7246811,26781486:0,0,0 -g1,4595:7246811,26781486 -g1,4595:7246811,26781486 -g1,4595:6919131,26781486 -(1,4595:6919131,26781486:0,0,0 -) -g1,4595:7246811,26781486 -) -g1,4596:13253580,26781486 -g1,4596:14202018,26781486 -k1,4596:14202018,26781486:0 -h1,4596:15466601,26781486:0,0,0 -k1,4596:31966991,26781486:16500390 -g1,4596:31966991,26781486 -) -(1,4597:7246811,27447664:24720180,410518,101187 -h1,4597:7246811,27447664:0,0,0 -k1,4597:7246811,27447664:0 -h1,4597:14834307,27447664:0,0,0 -k1,4597:31966991,27447664:17132684 -g1,4597:31966991,27447664 -) -(1,4601:7246811,28769202:24720180,410518,107478 -g1,4601:8195248,28769202 -g1,4601:9459831,28769202 -g1,4601:12621288,28769202 -g1,4601:14834308,28769202 -g1,4601:15782745,28769202 -g1,4601:17995765,28769202 -g1,4601:19576494,28769202 -k1,4601:31966991,28769202:8912895 -g1,4601:31966991,28769202 -) -(1,4601:7246811,29435380:24720180,379060,0 -k1,4601:31966990,29435380:24087888 -g1,4601:31966990,29435380 -) -(1,4601:7246811,30101558:24720180,379060,0 -g1,4601:8195248,30101558 -g1,4601:8511394,30101558 -g1,4601:8827540,30101558 -g1,4601:9143686,30101558 -k1,4601:31966992,30101558:22507160 -g1,4601:31966992,30101558 -) -(1,4602:7246811,31292024:24720180,410518,101187 -(1,4601:7246811,31292024:0,0,0 -g1,4601:7246811,31292024 -g1,4601:7246811,31292024 -g1,4601:6919131,31292024 -(1,4601:6919131,31292024:0,0,0 -) -g1,4601:7246811,31292024 -) -g1,4602:13253580,31292024 -g1,4602:14202018,31292024 -g1,4602:15150455,31292024 -g1,4602:15782747,31292024 -g1,4602:16731184,31292024 -g1,4602:17363476,31292024 -h1,4602:17679622,31292024:0,0,0 -k1,4602:31966991,31292024:14287369 -g1,4602:31966991,31292024 -) -(1,4603:7246811,31958202:24720180,410518,101187 -h1,4603:7246811,31958202:0,0,0 -k1,4603:7246811,31958202:0 -h1,4603:14834307,31958202:0,0,0 -k1,4603:31966991,31958202:17132684 -g1,4603:31966991,31958202 -) -(1,4604:7246811,32624380:24720180,410518,101187 -h1,4604:7246811,32624380:0,0,0 -g1,4604:14518163,32624380 -h1,4604:15150455,32624380:0,0,0 -k1,4604:31966991,32624380:16816536 -g1,4604:31966991,32624380 -) -(1,4610:7246811,33290558:24720180,379060,7863 -(1,4606:7246811,33290558:0,0,0 -g1,4606:7246811,33290558 -g1,4606:7246811,33290558 -g1,4606:6919131,33290558 -(1,4606:6919131,33290558:0,0,0 -) -g1,4606:7246811,33290558 -) -g1,4610:8195248,33290558 -g1,4610:8511394,33290558 -g1,4610:8827540,33290558 -g1,4610:9459832,33290558 -g1,4610:10092124,33290558 -h1,4610:10408270,33290558:0,0,0 -k1,4610:31966990,33290558:21558720 -g1,4610:31966990,33290558 -) -(1,4610:7246811,33956736:24720180,388497,9436 -h1,4610:7246811,33956736:0,0,0 -g1,4610:8195248,33956736 -g1,4610:8827540,33956736 -g1,4610:9459832,33956736 -g1,4610:10092124,33956736 -h1,4610:10408270,33956736:0,0,0 -k1,4610:31966990,33956736:21558720 -g1,4610:31966990,33956736 -) -(1,4610:7246811,34622914:24720180,388497,9436 -h1,4610:7246811,34622914:0,0,0 -g1,4610:8195248,34622914 -g1,4610:8827540,34622914 -g1,4610:9459832,34622914 -g1,4610:10092124,34622914 -h1,4610:10408270,34622914:0,0,0 -k1,4610:31966990,34622914:21558720 -g1,4610:31966990,34622914 -) -] -) -g1,4611:31966991,34632350 -g1,4611:7246811,34632350 -g1,4611:7246811,34632350 -g1,4611:31966991,34632350 -g1,4611:31966991,34632350 -) -h1,4611:7246811,34828958:0,0,0 -(1,4615:7246811,36741850:24720180,513147,126483 -h1,4614:7246811,36741850:983040,0,0 -k1,4614:9118355,36741850:260669 -k1,4614:10398108,36741850:260668 -k1,4614:12025858,36741850:260669 -k1,4614:12953682,36741850:260668 -(1,4614:12953682,36741850:0,452978,115847 -r1,4669:15070507,36741850:2116825,568825,115847 -k1,4614:12953682,36741850:-2116825 -) -(1,4614:12953682,36741850:2116825,452978,115847 -k1,4614:12953682,36741850:3277 -h1,4614:15067230,36741850:0,411205,112570 -) -k1,4614:15331176,36741850:260669 -k1,4614:16967445,36741850:260668 -k1,4614:18558495,36741850:260669 -k1,4614:21462885,36741850:260668 -k1,4614:25137324,36741850:260669 -k1,4614:26894179,36741850:260668 -k1,4614:30341208,36741850:260669 -k1,4614:31133373,36741850:260668 -k1,4615:31966991,36741850:0 -) -(1,4615:7246811,37583338:24720180,513147,134348 -k1,4614:9497822,37583338:280343 -k1,4614:10969610,37583338:280343 -k1,4614:12453193,37583338:280342 -k1,4614:15919896,37583338:280343 -k1,4614:16731736,37583338:280343 -k1,4614:19217366,37583338:280343 -k1,4614:20183870,37583338:280342 -k1,4614:21234916,37583338:280343 -k1,4614:24761257,37583338:280343 -k1,4614:25859489,37583338:280343 -k1,4614:28356259,37583338:280342 -k1,4614:29504954,37583338:280343 -k1,4614:31315563,37583338:280343 -k1,4614:31966991,37583338:0 -) -(1,4615:7246811,38424826:24720180,513147,134348 -k1,4614:8955608,38424826:257830 -k1,4614:11472463,38424826:257829 -k1,4614:12749378,38424826:257830 -k1,4614:15900622,38424826:257829 -k1,4614:17458031,38424826:257830 -k1,4614:18375152,38424826:257829 -k1,4614:19652067,38424826:257830 -k1,4614:23729334,38424826:257829 -k1,4614:25183851,38424826:257830 -k1,4614:27122023,38424826:257829 -k1,4614:30158580,38424826:257830 -k1,4614:30947906,38424826:257829 -k1,4614:31966991,38424826:0 -) -(1,4615:7246811,39266314:24720180,513147,134348 -k1,4614:8544625,39266314:141104 -k1,4614:11464456,39266314:141104 -k1,4614:12367088,39266314:141104 -k1,4614:13527278,39266314:141105 -k1,4614:16854742,39266314:141104 -k1,4614:19201133,39266314:141104 -k1,4614:20028399,39266314:141104 -k1,4614:20940206,39266314:141104 -k1,4614:24327308,39266314:141104 -k1,4614:25084450,39266314:141104 -k1,4614:26244640,39266314:141105 -k1,4614:27752825,39266314:141104 -k1,4614:28553221,39266314:141104 -k1,4614:31966991,39266314:0 -) -(1,4615:7246811,40107802:24720180,505283,126483 -k1,4614:11121180,40107802:184037 -k1,4614:12324302,40107802:184037 -k1,4614:14188682,40107802:184037 -k1,4614:17151446,40107802:184037 -k1,4614:18097011,40107802:184037 -k1,4614:19300133,40107802:184037 -k1,4614:20632361,40107802:184037 -k1,4614:23956228,40107802:184037 -k1,4614:26264942,40107802:184037 -k1,4614:27945166,40107802:184037 -k1,4614:31315563,40107802:184037 -k1,4614:31966991,40107802:0 -) -(1,4615:7246811,40949290:24720180,513147,134348 -k1,4614:8156093,40949290:161516 -k1,4614:11324402,40949290:161517 -k1,4614:16006592,40949290:161516 -k1,4614:16634069,40949290:161516 -k1,4614:17814670,40949290:161516 -k1,4614:19868211,40949290:161517 -k1,4614:20561224,40949290:161516 -k1,4614:21374168,40949290:161516 -k1,4614:23797987,40949290:161516 -k1,4614:24978589,40949290:161517 -k1,4614:28321223,40949290:161516 -k1,4614:31966991,40949290:0 -) -(1,4615:7246811,41790778:24720180,505283,126483 -k1,4614:8090751,41790778:192512 -k1,4614:9053966,41790778:192512 -k1,4614:12439392,41790778:192512 -k1,4614:15255310,41790778:192512 -k1,4614:17959162,41790778:192512 -k1,4614:20741656,41790778:192511 -k1,4614:21550206,41790778:192512 -k1,4614:22945959,41790778:192512 -k1,4614:24712646,41790778:192512 -k1,4614:25436655,41790778:192512 -k1,4614:28515373,41790778:192512 -k1,4614:29335720,41790778:192512 -k1,4614:31966991,41790778:0 -) -(1,4615:7246811,42632266:24720180,513147,115847 -k1,4614:8124680,42632266:226441 -k1,4614:9370206,42632266:226441 -k1,4614:12356368,42632266:226441 -k1,4614:13249965,42632266:226441 -(1,4614:13249965,42632266:0,452978,115847 -r1,4669:16070214,42632266:2820249,568825,115847 -k1,4614:13249965,42632266:-2820249 -) -(1,4614:13249965,42632266:2820249,452978,115847 -k1,4614:13249965,42632266:3277 -h1,4614:16066937,42632266:0,411205,112570 -) -k1,4614:16470325,42632266:226441 -k1,4614:17312804,42632266:226441 -k1,4614:18742486,42632266:226441 -k1,4614:20336008,42632266:226441 -k1,4614:22945338,42632266:226441 -(1,4614:22945338,42632266:0,414482,115847 -r1,4669:23303604,42632266:358266,530329,115847 -k1,4614:22945338,42632266:-358266 -) -(1,4614:22945338,42632266:358266,414482,115847 -k1,4614:22945338,42632266:3277 -h1,4614:23300327,42632266:0,411205,112570 -) -k1,4614:23530045,42632266:226441 -k1,4614:24423642,42632266:226441 -(1,4614:24423642,42632266:0,459977,115847 -r1,4669:30057585,42632266:5633943,575824,115847 -k1,4614:24423642,42632266:-5633943 -) -(1,4614:24423642,42632266:5633943,459977,115847 -k1,4614:24423642,42632266:3277 -h1,4614:30054308,42632266:0,411205,112570 -) -k1,4614:30284026,42632266:226441 -k1,4614:31966991,42632266:0 -) -(1,4615:7246811,43473754:24720180,505283,126483 -g1,4614:11220914,43473754 -g1,4614:12611588,43473754 -g1,4614:13829902,43473754 -g1,4614:16807858,43473754 -g1,4614:18687430,43473754 -g1,4614:19418156,43473754 -g1,4614:20636470,43473754 -g1,4614:23674719,43473754 -k1,4615:31966991,43473754:6961891 -g1,4615:31966991,43473754 -) -] -) -] -r1,4669:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,4669:32583029,45116945 -) -] -(1,4669:32583029,45706769:0,0,0 -g1,4669:32583029,45706769 -) -) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4675:37855564,49800853:1179648,16384,0 +) +) +k1,4675:3078556,49800853:-34777008 +) +] +g1,4675:6630773,4812305 +k1,4675:19515153,4812305:12087462 +g1,4675:20901894,4812305 +g1,4675:21550700,4812305 +g1,4675:24864855,4812305 +g1,4675:27600327,4812305 +g1,4675:29010006,4812305 +) +) +] +[1,4675:6630773,45706769:25952256,40108032,0 +(1,4675:6630773,45706769:25952256,40108032,0 +(1,4675:6630773,45706769:0,0,0 +g1,4675:6630773,45706769 +) +[1,4675:6630773,45706769:25952256,40108032,0 +v1,4675:6630773,6254097:0,393216,0 +(1,4675:6630773,45116945:25952256,39256064,589824 +g1,4675:6630773,45116945 +(1,4675:6630773,45116945:25952256,39256064,589824 +(1,4675:6630773,45706769:25952256,39845888,0 +[1,4675:6630773,45706769:25952256,39845888,0 +(1,4675:6630773,45706769:25952256,39845888,0 +r1,4675:6656987,45706769:26214,39845888,0 +[1,4675:6656987,45706769:25899828,39845888,0 +(1,4675:6656987,45116945:25899828,38666240,0 +[1,4675:7246811,45116945:24720180,38666240,0 +(1,4580:7246811,6963852:24720180,513147,134348 +k1,4579:8463487,6963852:226427 +k1,4579:9045774,6963852:226427 +k1,4579:11396878,6963852:226427 +k1,4579:15094747,6963852:226427 +k1,4579:16425456,6963852:226427 +k1,4579:18452812,6963852:226427 +k1,4579:20522111,6963852:226427 +k1,4579:21364575,6963852:226426 +k1,4579:21946862,6963852:226427 +k1,4579:23561997,6963852:226427 +k1,4579:24979869,6963852:226427 +k1,4579:27690111,6963852:226427 +k1,4579:28567966,6963852:226427 +k1,4579:30206694,6963852:226427 +k1,4580:31966991,6963852:0 +) +(1,4580:7246811,7805340:24720180,513147,126483 +k1,4579:9252071,7805340:192534 +k1,4579:12049662,7805340:192535 +(1,4579:12049662,7805340:0,452978,115847 +r1,4675:14166487,7805340:2116825,568825,115847 +k1,4579:12049662,7805340:-2116825 +) +(1,4579:12049662,7805340:2116825,452978,115847 +k1,4579:12049662,7805340:3277 +h1,4579:14163210,7805340:0,411205,112570 +) +k1,4579:14359021,7805340:192534 +k1,4579:15083053,7805340:192535 +k1,4579:16788813,7805340:192534 +k1,4579:18379231,7805340:192535 +k1,4579:19223193,7805340:192534 +k1,4579:20900118,7805340:192535 +k1,4579:22111737,7805340:192534 +k1,4579:25367425,7805340:192535 +k1,4579:27240302,7805340:192534 +k1,4579:28084265,7805340:192535 +k1,4579:29295884,7805340:192534 +k1,4579:30794552,7805340:192535 +k1,4579:31966991,7805340:0 +) +(1,4580:7246811,8646828:24720180,505283,134348 +(1,4579:9436369,8646828:0,452978,115847 +r1,4675:11553194,8646828:2116825,568825,115847 +k1,4579:9436369,8646828:-2116825 +) +(1,4579:9436369,8646828:2116825,452978,115847 +k1,4579:9436369,8646828:3277 +h1,4579:11549917,8646828:0,411205,112570 +) +g1,4579:11752423,8646828 +g1,4579:12483149,8646828 +g1,4579:15772401,8646828 +g1,4579:16587668,8646828 +g1,4579:19065584,8646828 +h1,4579:20434631,8646828:0,0,0 +g1,4579:20633860,8646828 +g1,4579:21642459,8646828 +g1,4579:23339841,8646828 +h1,4579:24136759,8646828:0,0,0 +k1,4580:31966991,8646828:7449468 +g1,4580:31966991,8646828 +) +v1,4582:7246811,10202038:0,393216,0 +(1,4594:7246811,14487988:24720180,4679166,196608 +g1,4594:7246811,14487988 +g1,4594:7246811,14487988 +g1,4594:7050203,14487988 +(1,4594:7050203,14487988:0,4679166,196608 +r1,4675:32163599,14487988:25113396,4875774,196608 +k1,4594:7050203,14487988:-25113396 +) +(1,4594:7050203,14487988:25113396,4679166,196608 +[1,4594:7246811,14487988:24720180,4482558,0 +(1,4584:7246811,10415948:24720180,410518,101187 +(1,4583:7246811,10415948:0,0,0 +g1,4583:7246811,10415948 +g1,4583:7246811,10415948 +g1,4583:6919131,10415948 +(1,4583:6919131,10415948:0,0,0 +) +g1,4583:7246811,10415948 +) +g1,4584:12621288,10415948 +g1,4584:13569726,10415948 +g1,4584:17679621,10415948 +g1,4584:18311913,10415948 +g1,4584:20208788,10415948 +g1,4584:20841080,10415948 +g1,4584:21473372,10415948 +h1,4584:22105664,10415948:0,0,0 +k1,4584:31966991,10415948:9861327 +g1,4584:31966991,10415948 +) +(1,4585:7246811,11082126:24720180,410518,101187 +h1,4585:7246811,11082126:0,0,0 +g1,4585:13253580,11082126 +k1,4585:13253580,11082126:0 +h1,4585:13885872,11082126:0,0,0 +k1,4585:31966992,11082126:18081120 +g1,4585:31966992,11082126 +) +(1,4586:7246811,11748304:24720180,410518,101187 +h1,4586:7246811,11748304:0,0,0 +g1,4586:7562957,11748304 +g1,4586:7879103,11748304 +g1,4586:14202018,11748304 +g1,4586:14834310,11748304 +g1,4586:21157224,11748304 +g1,4586:21789516,11748304 +h1,4586:27480139,11748304:0,0,0 +k1,4586:31966991,11748304:4486852 +g1,4586:31966991,11748304 +) +(1,4587:7246811,12414482:24720180,410518,101187 +h1,4587:7246811,12414482:0,0,0 +g1,4587:14518163,12414482 +h1,4587:15150455,12414482:0,0,0 +k1,4587:31966991,12414482:16816536 +g1,4587:31966991,12414482 +) +(1,4593:7246811,13146196:24720180,379060,7863 +(1,4589:7246811,13146196:0,0,0 +g1,4589:7246811,13146196 +g1,4589:7246811,13146196 +g1,4589:6919131,13146196 +(1,4589:6919131,13146196:0,0,0 +) +g1,4589:7246811,13146196 +) +g1,4593:8195248,13146196 +g1,4593:8511394,13146196 +g1,4593:8827540,13146196 +g1,4593:9459832,13146196 +g1,4593:10092124,13146196 +g1,4593:10408270,13146196 +g1,4593:10724416,13146196 +h1,4593:11040562,13146196:0,0,0 +k1,4593:31966990,13146196:20926428 +g1,4593:31966990,13146196 +) +(1,4593:7246811,13812374:24720180,388497,9436 +h1,4593:7246811,13812374:0,0,0 +g1,4593:8195248,13812374 +g1,4593:8827540,13812374 +g1,4593:9459832,13812374 +g1,4593:10092124,13812374 +h1,4593:11040561,13812374:0,0,0 +k1,4593:31966991,13812374:20926430 +g1,4593:31966991,13812374 +) +(1,4593:7246811,14478552:24720180,388497,9436 +h1,4593:7246811,14478552:0,0,0 +g1,4593:8195248,14478552 +g1,4593:8827540,14478552 +g1,4593:9459832,14478552 +g1,4593:10092124,14478552 +h1,4593:11040561,14478552:0,0,0 +k1,4593:31966991,14478552:20926430 +g1,4593:31966991,14478552 +) +] +) +g1,4594:31966991,14487988 +g1,4594:7246811,14487988 +g1,4594:7246811,14487988 +g1,4594:31966991,14487988 +g1,4594:31966991,14487988 +) +h1,4594:7246811,14684596:0,0,0 +(1,4598:7246811,16597487:24720180,505283,134348 +h1,4597:7246811,16597487:983040,0,0 +k1,4597:10234251,16597487:212646 +(1,4597:10234251,16597487:0,452978,115847 +r1,4675:13054500,16597487:2820249,568825,115847 +k1,4597:10234251,16597487:-2820249 +) +(1,4597:10234251,16597487:2820249,452978,115847 +k1,4597:10234251,16597487:3277 +h1,4597:13051223,16597487:0,411205,112570 +) +k1,4597:13267146,16597487:212646 +k1,4597:14348143,16597487:212645 +k1,4597:15665071,16597487:212646 +k1,4597:17331306,16597487:212646 +k1,4597:18874333,16597487:212646 +k1,4597:19501808,16597487:212632 +k1,4597:21431497,16597487:212646 +k1,4597:22479727,16597487:212646 +k1,4597:24760688,16597487:212645 +k1,4597:26164779,16597487:212646 +k1,4597:30602531,16597487:212646 +k1,4598:31966991,16597487:0 +) +(1,4598:7246811,17438975:24720180,513147,134348 +k1,4597:8942209,17438975:242465 +k1,4597:10203759,17438975:242465 +k1,4597:13806255,17438975:242465 +k1,4597:15527868,17438975:242465 +(1,4597:15527868,17438975:0,452978,115847 +r1,4675:18348117,17438975:2820249,568825,115847 +k1,4597:15527868,17438975:-2820249 +) +(1,4597:15527868,17438975:2820249,452978,115847 +k1,4597:15527868,17438975:3277 +h1,4597:18344840,17438975:0,411205,112570 +) +k1,4597:18590582,17438975:242465 +k1,4597:19701399,17438975:242465 +k1,4597:21048147,17438975:242466 +k1,4597:23543740,17438975:242465 +k1,4597:24805290,17438975:242465 +k1,4597:27483073,17438975:242465 +k1,4597:29446513,17438975:242465 +k1,4597:30158871,17438975:242465 +k1,4597:30932833,17438975:242465 +k1,4598:31966991,17438975:0 +) +(1,4598:7246811,18280463:24720180,513147,134348 +k1,4597:9822225,18280463:187282 +k1,4597:10660934,18280463:187281 +k1,4597:14107321,18280463:187282 +k1,4597:15579108,18280463:187281 +k1,4597:17164273,18280463:187282 +k1,4597:18219907,18280463:187282 +k1,4597:19511470,18280463:187281 +k1,4597:21074353,18280463:187282 +k1,4597:23866036,18280463:187282 +k1,4597:25072402,18280463:187281 +k1,4597:28614472,18280463:187282 +k1,4597:30101332,18280463:187281 +k1,4597:30947906,18280463:187282 +k1,4597:31966991,18280463:0 +) +(1,4598:7246811,19121951:24720180,513147,134348 +k1,4597:11218471,19121951:152222 +k1,4597:13060212,19121951:152223 +k1,4597:14231519,19121951:152222 +k1,4597:18578701,19121951:152222 +k1,4597:19390215,19121951:152222 +k1,4597:20561523,19121951:152223 +k1,4597:22556617,19121951:152222 +k1,4597:23368131,19121951:152222 +k1,4597:24539438,19121951:152222 +k1,4597:28755548,19121951:152223 +k1,4597:30106424,19121951:152222 +k1,4597:31966991,19121951:0 +) +(1,4598:7246811,19963439:24720180,513147,134348 +k1,4597:8128220,19963439:229981 +k1,4597:9105967,19963439:229981 +k1,4597:10786915,19963439:229981 +k1,4597:13848706,19963439:229980 +k1,4597:14888057,19963439:229981 +k1,4597:16137123,19963439:229981 +k1,4597:19260519,19963439:229981 +k1,4597:20790079,19963439:229981 +k1,4597:21679352,19963439:229981 +k1,4597:22928417,19963439:229980 +k1,4597:26804166,19963439:229981 +k1,4597:29954431,19963439:229981 +k1,4597:31137961,19963439:229981 +k1,4598:31966991,19963439:0 +) +(1,4598:7246811,20804927:24720180,505283,126483 +k1,4597:9188531,20804927:220089 +k1,4597:11277050,20804927:220088 +k1,4597:12872740,20804927:220089 +k1,4597:14249538,20804927:220088 +k1,4597:17655987,20804927:220089 +k1,4597:20511278,20804927:220088 +(1,4597:20511278,20804927:0,452978,115847 +r1,4675:23331527,20804927:2820249,568825,115847 +k1,4597:20511278,20804927:-2820249 +) +(1,4597:20511278,20804927:2820249,452978,115847 +k1,4597:20511278,20804927:3277 +h1,4597:23328250,20804927:0,411205,112570 +) +k1,4597:23551616,20804927:220089 +k1,4597:24963149,20804927:220088 +(1,4597:24963149,20804927:0,452978,115847 +r1,4675:27783398,20804927:2820249,568825,115847 +k1,4597:24963149,20804927:-2820249 +) +(1,4597:24963149,20804927:2820249,452978,115847 +k1,4597:24963149,20804927:3277 +h1,4597:27780121,20804927:0,411205,112570 +) +k1,4597:28003487,20804927:220089 +k1,4597:29295744,20804927:220088 +k1,4597:31966991,20804927:0 +) +(1,4598:7246811,21646415:24720180,513147,102891 +k1,4597:10997794,21646415:234321 +k1,4597:12223675,21646415:234321 +k1,4597:15081402,21646415:234321 +k1,4597:19509372,21646415:234321 +k1,4597:20209654,21646415:234321 +k1,4597:23285615,21646415:234320 +k1,4597:24913887,21646415:234321 +k1,4597:26167293,21646415:234321 +k1,4597:28055087,21646415:234321 +k1,4597:30027423,21646415:234321 +k1,4597:30947906,21646415:234321 +k1,4597:31966991,21646415:0 +) +(1,4598:7246811,22487903:24720180,505283,134348 +k1,4597:10194859,22487903:234857 +k1,4597:11930490,22487903:234857 +k1,4597:12781386,22487903:234858 +k1,4597:14035328,22487903:234857 +k1,4597:16340467,22487903:234857 +k1,4597:18197340,22487903:234857 +k1,4597:20128924,22487903:234857 +k1,4597:21496243,22487903:234857 +k1,4597:23083764,22487903:234858 +k1,4597:27093495,22487903:234857 +k1,4597:30682485,22487903:234857 +k1,4597:31966991,22487903:0 +) +(1,4598:7246811,23329391:24720180,505283,134348 +k1,4597:8548356,23329391:197263 +k1,4597:10588492,23329391:197264 +k1,4597:11401793,23329391:197263 +k1,4597:13118837,23329391:197264 +k1,4597:13998985,23329391:197263 +k1,4597:16770503,23329391:197264 +k1,4597:17650651,23329391:197263 +k1,4597:18534076,23329391:197263 +k1,4597:20171166,23329391:197264 +k1,4597:22410531,23329391:197263 +k1,4597:22963655,23329391:197264 +k1,4597:25866244,23329391:197263 +k1,4597:27973882,23329391:197264 +k1,4597:29455651,23329391:197263 +k1,4598:31966991,23329391:0 +) +(1,4598:7246811,24170879:24720180,513147,134348 +(1,4597:7246811,24170879:0,414482,115847 +r1,4675:7605077,24170879:358266,530329,115847 +k1,4597:7246811,24170879:-358266 +) +(1,4597:7246811,24170879:358266,414482,115847 +k1,4597:7246811,24170879:3277 +h1,4597:7601800,24170879:0,411205,112570 +) +k1,4597:7765156,24170879:160079 +k1,4597:9492856,24170879:160079 +k1,4597:10672021,24170879:160080 +k1,4597:12767378,24170879:160079 +k1,4597:16984791,24170879:160079 +k1,4597:18277332,24170879:160079 +k1,4597:19185177,24170879:160079 +k1,4597:20858483,24170879:160080 +k1,4597:23345745,24170879:160079 +k1,4597:24165116,24170879:160079 +k1,4597:26708084,24170879:160079 +(1,4597:26708084,24170879:0,414482,115847 +r1,4675:27066350,24170879:358266,530329,115847 +k1,4597:26708084,24170879:-358266 +) +(1,4597:26708084,24170879:358266,414482,115847 +k1,4597:26708084,24170879:3277 +h1,4597:27063073,24170879:0,411205,112570 +) +k1,4597:27226430,24170879:160080 +k1,4597:28045801,24170879:160079 +k1,4597:29224965,24170879:160079 +k1,4598:31966991,24170879:0 +) +(1,4598:7246811,25012367:24720180,513147,115847 +(1,4597:7246811,25012367:0,459977,115847 +r1,4675:12880754,25012367:5633943,575824,115847 +k1,4597:7246811,25012367:-5633943 +) +(1,4597:7246811,25012367:5633943,459977,115847 +k1,4597:7246811,25012367:3277 +h1,4597:12877477,25012367:0,411205,112570 +) +g1,4597:13253653,25012367 +g1,4597:14649569,25012367 +g1,4597:17627525,25012367 +g1,4597:19507097,25012367 +g1,4597:20411493,25012367 +g1,4597:21270014,25012367 +g1,4597:23751862,25012367 +g1,4597:25017362,25012367 +g1,4597:26235676,25012367 +g1,4597:28790924,25012367 +k1,4598:31966991,25012367:1845686 +g1,4598:31966991,25012367 +) +v1,4600:7246811,26567576:0,393216,0 +(1,4617:7246811,34632350:24720180,8457990,196608 +g1,4617:7246811,34632350 +g1,4617:7246811,34632350 +g1,4617:7050203,34632350 +(1,4617:7050203,34632350:0,8457990,196608 +r1,4675:32163599,34632350:25113396,8654598,196608 +k1,4617:7050203,34632350:-25113396 +) +(1,4617:7050203,34632350:25113396,8457990,196608 +[1,4617:7246811,34632350:24720180,8261382,0 +(1,4602:7246811,26781486:24720180,410518,101187 +(1,4601:7246811,26781486:0,0,0 +g1,4601:7246811,26781486 +g1,4601:7246811,26781486 +g1,4601:6919131,26781486 +(1,4601:6919131,26781486:0,0,0 +) +g1,4601:7246811,26781486 +) +g1,4602:13253580,26781486 +g1,4602:14202018,26781486 +k1,4602:14202018,26781486:0 +h1,4602:15466601,26781486:0,0,0 +k1,4602:31966991,26781486:16500390 +g1,4602:31966991,26781486 +) +(1,4603:7246811,27447664:24720180,410518,101187 +h1,4603:7246811,27447664:0,0,0 +k1,4603:7246811,27447664:0 +h1,4603:14834307,27447664:0,0,0 +k1,4603:31966991,27447664:17132684 +g1,4603:31966991,27447664 +) +(1,4607:7246811,28769202:24720180,410518,107478 +g1,4607:8195248,28769202 +g1,4607:9459831,28769202 +g1,4607:12621288,28769202 +g1,4607:14834308,28769202 +g1,4607:15782745,28769202 +g1,4607:17995765,28769202 +g1,4607:19576494,28769202 +k1,4607:31966991,28769202:8912895 +g1,4607:31966991,28769202 +) +(1,4607:7246811,29435380:24720180,379060,0 +k1,4607:31966990,29435380:24087888 +g1,4607:31966990,29435380 +) +(1,4607:7246811,30101558:24720180,379060,0 +g1,4607:8195248,30101558 +g1,4607:8511394,30101558 +g1,4607:8827540,30101558 +g1,4607:9143686,30101558 +k1,4607:31966992,30101558:22507160 +g1,4607:31966992,30101558 +) +(1,4608:7246811,31292024:24720180,410518,101187 +(1,4607:7246811,31292024:0,0,0 +g1,4607:7246811,31292024 +g1,4607:7246811,31292024 +g1,4607:6919131,31292024 +(1,4607:6919131,31292024:0,0,0 +) +g1,4607:7246811,31292024 +) +g1,4608:13253580,31292024 +g1,4608:14202018,31292024 +g1,4608:15150455,31292024 +g1,4608:15782747,31292024 +g1,4608:16731184,31292024 +g1,4608:17363476,31292024 +h1,4608:17679622,31292024:0,0,0 +k1,4608:31966991,31292024:14287369 +g1,4608:31966991,31292024 +) +(1,4609:7246811,31958202:24720180,410518,101187 +h1,4609:7246811,31958202:0,0,0 +k1,4609:7246811,31958202:0 +h1,4609:14834307,31958202:0,0,0 +k1,4609:31966991,31958202:17132684 +g1,4609:31966991,31958202 +) +(1,4610:7246811,32624380:24720180,410518,101187 +h1,4610:7246811,32624380:0,0,0 +g1,4610:14518163,32624380 +h1,4610:15150455,32624380:0,0,0 +k1,4610:31966991,32624380:16816536 +g1,4610:31966991,32624380 +) +(1,4616:7246811,33290558:24720180,379060,7863 +(1,4612:7246811,33290558:0,0,0 +g1,4612:7246811,33290558 +g1,4612:7246811,33290558 +g1,4612:6919131,33290558 +(1,4612:6919131,33290558:0,0,0 +) +g1,4612:7246811,33290558 +) +g1,4616:8195248,33290558 +g1,4616:8511394,33290558 +g1,4616:8827540,33290558 +g1,4616:9459832,33290558 +g1,4616:10092124,33290558 +h1,4616:10408270,33290558:0,0,0 +k1,4616:31966990,33290558:21558720 +g1,4616:31966990,33290558 +) +(1,4616:7246811,33956736:24720180,388497,9436 +h1,4616:7246811,33956736:0,0,0 +g1,4616:8195248,33956736 +g1,4616:8827540,33956736 +g1,4616:9459832,33956736 +g1,4616:10092124,33956736 +h1,4616:10408270,33956736:0,0,0 +k1,4616:31966990,33956736:21558720 +g1,4616:31966990,33956736 +) +(1,4616:7246811,34622914:24720180,388497,9436 +h1,4616:7246811,34622914:0,0,0 +g1,4616:8195248,34622914 +g1,4616:8827540,34622914 +g1,4616:9459832,34622914 +g1,4616:10092124,34622914 +h1,4616:10408270,34622914:0,0,0 +k1,4616:31966990,34622914:21558720 +g1,4616:31966990,34622914 +) +] +) +g1,4617:31966991,34632350 +g1,4617:7246811,34632350 +g1,4617:7246811,34632350 +g1,4617:31966991,34632350 +g1,4617:31966991,34632350 +) +h1,4617:7246811,34828958:0,0,0 +(1,4621:7246811,36741850:24720180,513147,126483 +h1,4620:7246811,36741850:983040,0,0 +k1,4620:9118355,36741850:260669 +k1,4620:10398108,36741850:260668 +k1,4620:12025858,36741850:260669 +k1,4620:12953682,36741850:260668 +(1,4620:12953682,36741850:0,452978,115847 +r1,4675:15070507,36741850:2116825,568825,115847 +k1,4620:12953682,36741850:-2116825 +) +(1,4620:12953682,36741850:2116825,452978,115847 +k1,4620:12953682,36741850:3277 +h1,4620:15067230,36741850:0,411205,112570 +) +k1,4620:15331176,36741850:260669 +k1,4620:16967445,36741850:260668 +k1,4620:18558495,36741850:260669 +k1,4620:21462885,36741850:260668 +k1,4620:25137324,36741850:260669 +k1,4620:26894179,36741850:260668 +k1,4620:30341208,36741850:260669 +k1,4620:31133373,36741850:260668 +k1,4621:31966991,36741850:0 +) +(1,4621:7246811,37583338:24720180,513147,134348 +k1,4620:9497822,37583338:280343 +k1,4620:10969610,37583338:280343 +k1,4620:12453193,37583338:280342 +k1,4620:15919896,37583338:280343 +k1,4620:16731736,37583338:280343 +k1,4620:19217366,37583338:280343 +k1,4620:20183870,37583338:280342 +k1,4620:21234916,37583338:280343 +k1,4620:24761257,37583338:280343 +k1,4620:25859489,37583338:280343 +k1,4620:28356259,37583338:280342 +k1,4620:29504954,37583338:280343 +k1,4620:31315563,37583338:280343 +k1,4620:31966991,37583338:0 +) +(1,4621:7246811,38424826:24720180,513147,134348 +k1,4620:8955608,38424826:257830 +k1,4620:11472463,38424826:257829 +k1,4620:12749378,38424826:257830 +k1,4620:15900622,38424826:257829 +k1,4620:17458031,38424826:257830 +k1,4620:18375152,38424826:257829 +k1,4620:19652067,38424826:257830 +k1,4620:23729334,38424826:257829 +k1,4620:25183851,38424826:257830 +k1,4620:27122023,38424826:257829 +k1,4620:30158580,38424826:257830 +k1,4620:30947906,38424826:257829 +k1,4620:31966991,38424826:0 +) +(1,4621:7246811,39266314:24720180,513147,134348 +k1,4620:8544625,39266314:141104 +k1,4620:11464456,39266314:141104 +k1,4620:12367088,39266314:141104 +k1,4620:13527278,39266314:141105 +k1,4620:16854742,39266314:141104 +k1,4620:19201133,39266314:141104 +k1,4620:20028399,39266314:141104 +k1,4620:20940206,39266314:141104 +k1,4620:24327308,39266314:141104 +k1,4620:25084450,39266314:141104 +k1,4620:26244640,39266314:141105 +k1,4620:27752825,39266314:141104 +k1,4620:28553221,39266314:141104 +k1,4620:31966991,39266314:0 +) +(1,4621:7246811,40107802:24720180,505283,126483 +k1,4620:11121180,40107802:184037 +k1,4620:12324302,40107802:184037 +k1,4620:14188682,40107802:184037 +k1,4620:17151446,40107802:184037 +k1,4620:18097011,40107802:184037 +k1,4620:19300133,40107802:184037 +k1,4620:20632361,40107802:184037 +k1,4620:23956228,40107802:184037 +k1,4620:26264942,40107802:184037 +k1,4620:27945166,40107802:184037 +k1,4620:31315563,40107802:184037 +k1,4620:31966991,40107802:0 +) +(1,4621:7246811,40949290:24720180,513147,134348 +k1,4620:8156093,40949290:161516 +k1,4620:11324402,40949290:161517 +k1,4620:16006592,40949290:161516 +k1,4620:16634069,40949290:161516 +k1,4620:17814670,40949290:161516 +k1,4620:19868211,40949290:161517 +k1,4620:20561224,40949290:161516 +k1,4620:21374168,40949290:161516 +k1,4620:23797987,40949290:161516 +k1,4620:24978589,40949290:161517 +k1,4620:28321223,40949290:161516 +k1,4620:31966991,40949290:0 +) +(1,4621:7246811,41790778:24720180,505283,126483 +k1,4620:8090751,41790778:192512 +k1,4620:9053966,41790778:192512 +k1,4620:12439392,41790778:192512 +k1,4620:15255310,41790778:192512 +k1,4620:17959162,41790778:192512 +k1,4620:20741656,41790778:192511 +k1,4620:21550206,41790778:192512 +k1,4620:22945959,41790778:192512 +k1,4620:24712646,41790778:192512 +k1,4620:25436655,41790778:192512 +k1,4620:28515373,41790778:192512 +k1,4620:29335720,41790778:192512 +k1,4620:31966991,41790778:0 +) +(1,4621:7246811,42632266:24720180,513147,115847 +k1,4620:8109224,42632266:210985 +k1,4620:9339295,42632266:210986 +k1,4620:12310001,42632266:210985 +k1,4620:13188143,42632266:210986 +(1,4620:13188143,42632266:0,452978,115847 +r1,4675:16008392,42632266:2820249,568825,115847 +k1,4620:13188143,42632266:-2820249 +) +(1,4620:13188143,42632266:2820249,452978,115847 +k1,4620:13188143,42632266:3277 +h1,4620:16005115,42632266:0,411205,112570 +) +k1,4620:16393047,42632266:210985 +k1,4620:17231868,42632266:210986 +k1,4620:18646094,42632266:210985 +k1,4620:20397830,42632266:210985 +k1,4620:22991705,42632266:210986 +(1,4620:22991705,42632266:0,414482,115847 +r1,4675:23349971,42632266:358266,530329,115847 +k1,4620:22991705,42632266:-358266 +) +(1,4620:22991705,42632266:358266,414482,115847 +k1,4620:22991705,42632266:3277 +h1,4620:23346694,42632266:0,411205,112570 +) +k1,4620:23560956,42632266:210985 +k1,4620:24439098,42632266:210986 +(1,4620:24439098,42632266:0,459977,115847 +r1,4675:30073041,42632266:5633943,575824,115847 +k1,4620:24439098,42632266:-5633943 +) +(1,4620:24439098,42632266:5633943,459977,115847 +k1,4620:24439098,42632266:3277 +h1,4620:30069764,42632266:0,411205,112570 +) +k1,4620:30284026,42632266:210985 +k1,4620:31966991,42632266:0 +) +(1,4621:7246811,43473754:24720180,505283,126483 +g1,4620:11220914,43473754 +g1,4620:12611588,43473754 +g1,4620:13829902,43473754 +g1,4620:16807858,43473754 +g1,4620:18687430,43473754 +g1,4620:19418156,43473754 +g1,4620:20636470,43473754 +g1,4620:23674719,43473754 +k1,4621:31966991,43473754:6961891 +g1,4621:31966991,43473754 +) +] +) +] +r1,4675:32583029,45706769:26214,39845888,0 +) +] +) +) +g1,4675:32583029,45116945 +) +] +(1,4675:32583029,45706769:0,0,0 +g1,4675:32583029,45706769 +) +) ] -(1,4669:6630773,47279633:25952256,0,0 -h1,4669:6630773,47279633:25952256,0,0 +(1,4675:6630773,47279633:25952256,0,0 +h1,4675:6630773,47279633:25952256,0,0 ) ] -h1,4669:4262630,4025873:0,0,0 +h1,4675:4262630,4025873:0,0,0 ] !24398 }85 !11 {86 -[1,4676:4262630,47279633:28320399,43253760,0 -(1,4676:4262630,4025873:0,0,0 -[1,4676:-473657,4025873:25952256,0,0 -(1,4676:-473657,-710414:25952256,0,0 -h1,4676:-473657,-710414:0,0,0 -(1,4676:-473657,-710414:0,0,0 -(1,4676:-473657,-710414:0,0,0 -g1,4676:-473657,-710414 -(1,4676:-473657,-710414:65781,0,65781 -g1,4676:-407876,-710414 -[1,4676:-407876,-644633:0,0,0 +[1,4682:4262630,47279633:28320399,43253760,0 +(1,4682:4262630,4025873:0,0,0 +[1,4682:-473657,4025873:25952256,0,0 +(1,4682:-473657,-710414:25952256,0,0 +h1,4682:-473657,-710414:0,0,0 +(1,4682:-473657,-710414:0,0,0 +(1,4682:-473657,-710414:0,0,0 +g1,4682:-473657,-710414 +(1,4682:-473657,-710414:65781,0,65781 +g1,4682:-407876,-710414 +[1,4682:-407876,-644633:0,0,0 ] ) -k1,4676:-473657,-710414:-65781 +k1,4682:-473657,-710414:-65781 ) ) -k1,4676:25478599,-710414:25952256 -g1,4676:25478599,-710414 +k1,4682:25478599,-710414:25952256 +g1,4682:25478599,-710414 ) ] ) -[1,4676:6630773,47279633:25952256,43253760,0 -[1,4676:6630773,4812305:25952256,786432,0 -(1,4676:6630773,4812305:25952256,513147,126483 -(1,4676:6630773,4812305:25952256,513147,126483 -g1,4676:3078558,4812305 -[1,4676:3078558,4812305:0,0,0 -(1,4676:3078558,2439708:0,1703936,0 -k1,4676:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4676:2537886,2439708:1179648,16384,0 +[1,4682:6630773,47279633:25952256,43253760,0 +[1,4682:6630773,4812305:25952256,786432,0 +(1,4682:6630773,4812305:25952256,513147,126483 +(1,4682:6630773,4812305:25952256,513147,126483 +g1,4682:3078558,4812305 +[1,4682:3078558,4812305:0,0,0 +(1,4682:3078558,2439708:0,1703936,0 +k1,4682:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4682:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4676:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4682:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4676:3078558,4812305:0,0,0 -(1,4676:3078558,2439708:0,1703936,0 -g1,4676:29030814,2439708 -g1,4676:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4676:36151628,1915420:16384,1179648,0 +[1,4682:3078558,4812305:0,0,0 +(1,4682:3078558,2439708:0,1703936,0 +g1,4682:29030814,2439708 +g1,4682:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4682:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4676:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4682:37855564,2439708:1179648,16384,0 ) ) -k1,4676:3078556,2439708:-34777008 +k1,4682:3078556,2439708:-34777008 ) ] -[1,4676:3078558,4812305:0,0,0 -(1,4676:3078558,49800853:0,16384,2228224 -k1,4676:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4676:2537886,49800853:1179648,16384,0 +[1,4682:3078558,4812305:0,0,0 +(1,4682:3078558,49800853:0,16384,2228224 +k1,4682:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4682:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4676:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4682:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4676:3078558,4812305:0,0,0 -(1,4676:3078558,49800853:0,16384,2228224 -g1,4676:29030814,49800853 -g1,4676:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4676:36151628,51504789:16384,1179648,0 +[1,4682:3078558,4812305:0,0,0 +(1,4682:3078558,49800853:0,16384,2228224 +g1,4682:29030814,49800853 +g1,4682:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4682:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4676:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4682:37855564,49800853:1179648,16384,0 ) ) -k1,4676:3078556,49800853:-34777008 -) -] -g1,4676:6630773,4812305 -g1,4676:6630773,4812305 -g1,4676:8364200,4812305 -g1,4676:10765439,4812305 -k1,4676:31786111,4812305:21020672 -) -) -] -[1,4676:6630773,45706769:25952256,40108032,0 -(1,4676:6630773,45706769:25952256,40108032,0 -(1,4676:6630773,45706769:0,0,0 -g1,4676:6630773,45706769 -) -[1,4676:6630773,45706769:25952256,40108032,0 -v1,4669:6630773,6254097:0,393216,0 -(1,4669:6630773,40066216:25952256,34205335,616038 -g1,4669:6630773,40066216 -(1,4669:6630773,40066216:25952256,34205335,616038 -(1,4669:6630773,40682254:25952256,34821373,0 -[1,4669:6630773,40682254:25952256,34821373,0 -(1,4669:6630773,40656040:25952256,34795159,0 -r1,4669:6656987,40656040:26214,34795159,0 -[1,4669:6656987,40656040:25899828,34795159,0 -(1,4669:6656987,40066216:25899828,33615511,0 -[1,4669:7246811,40066216:24720180,33615511,0 -v1,4617:7246811,6843921:0,393216,0 -(1,4628:7246811,10463693:24720180,4012988,196608 -g1,4628:7246811,10463693 -g1,4628:7246811,10463693 -g1,4628:7050203,10463693 -(1,4628:7050203,10463693:0,4012988,196608 -r1,4669:32163599,10463693:25113396,4209596,196608 -k1,4628:7050203,10463693:-25113396 -) -(1,4628:7050203,10463693:25113396,4012988,196608 -[1,4628:7246811,10463693:24720180,3816380,0 -(1,4619:7246811,7057831:24720180,410518,101187 -(1,4618:7246811,7057831:0,0,0 -g1,4618:7246811,7057831 -g1,4618:7246811,7057831 -g1,4618:6919131,7057831 -(1,4618:6919131,7057831:0,0,0 -) -g1,4618:7246811,7057831 -) -g1,4619:13253580,7057831 -g1,4619:14202018,7057831 -k1,4619:14202018,7057831:0 -h1,4619:15466601,7057831:0,0,0 -k1,4619:31966991,7057831:16500390 -g1,4619:31966991,7057831 -) -(1,4620:7246811,7724009:24720180,410518,101187 -h1,4620:7246811,7724009:0,0,0 -g1,4620:13253580,7724009 -g1,4620:14202018,7724009 -g1,4620:21473370,7724009 -g1,4620:22421807,7724009 -g1,4620:23054099,7724009 -g1,4620:24002536,7724009 -g1,4620:24634828,7724009 -h1,4620:25267119,7724009:0,0,0 -k1,4620:31966991,7724009:6699872 -g1,4620:31966991,7724009 -) -(1,4621:7246811,8390187:24720180,410518,101187 -h1,4621:7246811,8390187:0,0,0 -g1,4621:14518163,8390187 -h1,4621:15150455,8390187:0,0,0 -k1,4621:31966991,8390187:16816536 -g1,4621:31966991,8390187 -) -(1,4627:7246811,9121901:24720180,379060,7863 -(1,4623:7246811,9121901:0,0,0 -g1,4623:7246811,9121901 -g1,4623:7246811,9121901 -g1,4623:6919131,9121901 -(1,4623:6919131,9121901:0,0,0 -) -g1,4623:7246811,9121901 -) -g1,4627:8195248,9121901 -g1,4627:8511394,9121901 -g1,4627:8827540,9121901 -g1,4627:9459832,9121901 -g1,4627:10092124,9121901 -g1,4627:10408270,9121901 -g1,4627:10724416,9121901 -h1,4627:11040562,9121901:0,0,0 -k1,4627:31966990,9121901:20926428 -g1,4627:31966990,9121901 -) -(1,4627:7246811,9788079:24720180,388497,9436 -h1,4627:7246811,9788079:0,0,0 -g1,4627:8195248,9788079 -g1,4627:8827540,9788079 -g1,4627:9459832,9788079 -g1,4627:10092124,9788079 -h1,4627:11040561,9788079:0,0,0 -k1,4627:31966991,9788079:20926430 -g1,4627:31966991,9788079 -) -(1,4627:7246811,10454257:24720180,388497,9436 -h1,4627:7246811,10454257:0,0,0 -g1,4627:8195248,10454257 -g1,4627:8827540,10454257 -g1,4627:9459832,10454257 -g1,4627:10092124,10454257 -h1,4627:11040561,10454257:0,0,0 -k1,4627:31966991,10454257:20926430 -g1,4627:31966991,10454257 -) -] -) -g1,4628:31966991,10463693 -g1,4628:7246811,10463693 -g1,4628:7246811,10463693 -g1,4628:31966991,10463693 -g1,4628:31966991,10463693 -) -h1,4628:7246811,10660301:0,0,0 -(1,4632:7246811,12026077:24720180,513147,134348 -h1,4631:7246811,12026077:983040,0,0 -k1,4631:9032375,12026077:174689 -k1,4631:10226148,12026077:174688 -k1,4631:11767918,12026077:174689 -k1,4631:12609762,12026077:174688 -(1,4631:12609762,12026077:0,452978,115847 -r1,4669:15430011,12026077:2820249,568825,115847 -k1,4631:12609762,12026077:-2820249 -) -(1,4631:12609762,12026077:2820249,452978,115847 -k1,4631:12609762,12026077:3277 -h1,4631:15426734,12026077:0,411205,112570 -) -k1,4631:15778370,12026077:174689 -k1,4631:19929127,12026077:174688 -k1,4631:20719854,12026077:174689 -k1,4631:21913628,12026077:174689 -k1,4631:25160644,12026077:174688 -k1,4631:25986761,12026077:174689 -k1,4631:26949847,12026077:174688 -k1,4631:29365867,12026077:174689 -k1,4632:31966991,12026077:0 -) -(1,4632:7246811,12867565:24720180,513147,134348 -k1,4631:8366035,12867565:226624 -k1,4631:10371960,12867565:226623 -k1,4631:11617669,12867565:226624 -k1,4631:13803818,12867565:226623 -k1,4631:16982839,12867565:226624 -k1,4631:19094934,12867565:226624 -k1,4631:19853054,12867565:226623 -k1,4631:20435538,12867565:226624 -k1,4631:22172111,12867565:226623 -k1,4631:23058027,12867565:226624 -k1,4631:24303736,12867565:226624 -k1,4631:27537806,12867565:226623 -k1,4631:28587562,12867565:226624 -k1,4631:30017426,12867565:226623 -k1,4631:31611131,12867565:226624 -k1,4631:31966991,12867565:0 -) -(1,4632:7246811,13709053:24720180,513147,134348 -k1,4631:9308846,13709053:179186 -k1,4631:10877395,13709053:179186 -k1,4631:13313642,13709053:179187 -k1,4631:15378299,13709053:179186 -k1,4631:16756139,13709053:179186 -k1,4631:18795892,13709053:179186 -k1,4631:19626507,13709053:179187 -k1,4631:20553459,13709053:179186 -k1,4631:22544060,13709053:179186 -k1,4631:25281772,13709053:179186 -k1,4631:29280397,13709053:179187 -k1,4631:30947906,13709053:179186 -k1,4631:31966991,13709053:0 -) -(1,4632:7246811,14550541:24720180,513147,134348 -k1,4631:10378490,14550541:229089 -k1,4631:11139077,14550541:229090 -k1,4631:12019594,14550541:229089 -k1,4631:14510986,14550541:229089 -k1,4631:15371842,14550541:229089 -k1,4631:16325760,14550541:229090 -k1,4631:17423201,14550541:229089 -k1,4631:19659002,14550541:229089 -k1,4631:20346188,14550541:229089 -k1,4631:22057702,14550541:229090 -k1,4631:22938219,14550541:229089 -k1,4631:24186393,14550541:229089 -k1,4631:26068955,14550541:229089 -k1,4631:28209730,14550541:229090 -k1,4631:29510988,14550541:229089 -k1,4631:30198174,14550541:229089 -k1,4631:31966991,14550541:0 -) -(1,4632:7246811,15392029:24720180,513147,134348 -k1,4631:8899020,15392029:176994 -k1,4631:10585964,15392029:176994 -k1,4631:13537752,15392029:176994 -k1,4631:14366174,15392029:176994 -k1,4631:14899028,15392029:176994 -k1,4631:17838365,15392029:176994 -k1,4631:19753374,15392029:176994 -k1,4631:20655196,15392029:176994 -k1,4631:21518352,15392029:176994 -k1,4631:22761617,15392029:176994 -k1,4631:23590039,15392029:176994 -k1,4631:26769237,15392029:176994 -k1,4631:27965316,15392029:176994 -k1,4631:30577628,15392029:176994 -k1,4631:31966991,15392029:0 -) -(1,4632:7246811,16233517:24720180,513147,7863 -k1,4632:31966991,16233517:22670214 -g1,4632:31966991,16233517 -) -v1,4634:7246811,17423983:0,393216,0 -(1,4645:7246811,21043755:24720180,4012988,196608 -g1,4645:7246811,21043755 -g1,4645:7246811,21043755 -g1,4645:7050203,21043755 -(1,4645:7050203,21043755:0,4012988,196608 -r1,4669:32163599,21043755:25113396,4209596,196608 -k1,4645:7050203,21043755:-25113396 -) -(1,4645:7050203,21043755:25113396,4012988,196608 -[1,4645:7246811,21043755:24720180,3816380,0 -(1,4636:7246811,17637893:24720180,410518,101187 -(1,4635:7246811,17637893:0,0,0 -g1,4635:7246811,17637893 -g1,4635:7246811,17637893 -g1,4635:6919131,17637893 -(1,4635:6919131,17637893:0,0,0 -) -g1,4635:7246811,17637893 -) -g1,4636:13253580,17637893 -g1,4636:14202018,17637893 -k1,4636:14202018,17637893:0 -h1,4636:15466601,17637893:0,0,0 -k1,4636:31966991,17637893:16500390 -g1,4636:31966991,17637893 -) -(1,4637:7246811,18304071:24720180,410518,101187 -h1,4637:7246811,18304071:0,0,0 -g1,4637:12621288,18304071 -g1,4637:13569726,18304071 -g1,4637:21473369,18304071 -g1,4637:21789515,18304071 -g1,4637:22421807,18304071 -g1,4637:23370245,18304071 -g1,4637:24318682,18304071 -g1,4637:24950974,18304071 -g1,4637:25899411,18304071 -g1,4637:26531703,18304071 -h1,4637:27163994,18304071:0,0,0 -k1,4637:31966991,18304071:4802997 -g1,4637:31966991,18304071 -) -(1,4638:7246811,18970249:24720180,410518,101187 -h1,4638:7246811,18970249:0,0,0 -g1,4638:14518163,18970249 -h1,4638:15150455,18970249:0,0,0 -k1,4638:31966991,18970249:16816536 -g1,4638:31966991,18970249 -) -(1,4644:7246811,19701963:24720180,379060,7863 -(1,4640:7246811,19701963:0,0,0 -g1,4640:7246811,19701963 -g1,4640:7246811,19701963 -g1,4640:6919131,19701963 -(1,4640:6919131,19701963:0,0,0 -) -g1,4640:7246811,19701963 -) -g1,4644:8195248,19701963 -g1,4644:8511394,19701963 -g1,4644:8827540,19701963 -g1,4644:9459832,19701963 -g1,4644:10092124,19701963 -g1,4644:10408270,19701963 -g1,4644:10724416,19701963 -h1,4644:11040562,19701963:0,0,0 -k1,4644:31966990,19701963:20926428 -g1,4644:31966990,19701963 -) -(1,4644:7246811,20368141:24720180,388497,9436 -h1,4644:7246811,20368141:0,0,0 -g1,4644:8195248,20368141 -g1,4644:8827540,20368141 -g1,4644:9459832,20368141 -g1,4644:10092124,20368141 -h1,4644:11040561,20368141:0,0,0 -k1,4644:31966991,20368141:20926430 -g1,4644:31966991,20368141 -) -(1,4644:7246811,21034319:24720180,388497,9436 -h1,4644:7246811,21034319:0,0,0 -g1,4644:8195248,21034319 -g1,4644:8827540,21034319 -g1,4644:9459832,21034319 -g1,4644:10092124,21034319 -h1,4644:11040561,21034319:0,0,0 -k1,4644:31966991,21034319:20926430 -g1,4644:31966991,21034319 -) -] -) -g1,4645:31966991,21043755 -g1,4645:7246811,21043755 -g1,4645:7246811,21043755 -g1,4645:31966991,21043755 -g1,4645:31966991,21043755 -) -h1,4645:7246811,21240363:0,0,0 -(1,4648:7246811,22606139:24720180,513147,134348 -h1,4647:7246811,22606139:983040,0,0 -k1,4647:9088349,22606139:230663 -k1,4647:10338097,22606139:230663 -k1,4647:13230178,22606139:230664 -k1,4647:15489836,22606139:230663 -(1,4647:15489836,22606139:0,452978,115847 -r1,4669:18310085,22606139:2820249,568825,115847 -k1,4647:15489836,22606139:-2820249 -) -(1,4647:15489836,22606139:2820249,452978,115847 -k1,4647:15489836,22606139:3277 -h1,4647:18306808,22606139:0,411205,112570 -) -k1,4647:18540748,22606139:230663 -k1,4647:20817445,22606139:230663 -k1,4647:22520702,22606139:230663 -k1,4647:25937726,22606139:230664 -k1,4647:29349507,22606139:230663 -k1,4647:30231598,22606139:230663 -k1,4648:31966991,22606139:0 -) -(1,4648:7246811,23447627:24720180,513147,134348 -(1,4647:7246811,23447627:0,452978,115847 -r1,4669:9363636,23447627:2116825,568825,115847 -k1,4647:7246811,23447627:-2116825 -) -(1,4647:7246811,23447627:2116825,452978,115847 -k1,4647:7246811,23447627:3277 -h1,4647:9360359,23447627:0,411205,112570 -) -k1,4647:9538465,23447627:174829 -k1,4647:11107245,23447627:174829 -k1,4647:13606636,23447627:174829 -k1,4647:14432893,23447627:174829 -k1,4647:15626807,23447627:174829 -k1,4647:18258581,23447627:174829 -k1,4647:19092701,23447627:174828 -k1,4647:21296525,23447627:174829 -k1,4647:22154239,23447627:174829 -k1,4647:24504863,23447627:174829 -k1,4647:25751861,23447627:174829 -k1,4647:27320641,23447627:174829 -k1,4647:30166717,23447627:174829 -k1,4648:31966991,23447627:0 -) -(1,4648:7246811,24289115:24720180,505283,134348 -k1,4647:8439247,24289115:156312 -k1,4647:11437200,24289115:156312 -k1,4647:13331526,24289115:156311 -k1,4647:16319649,24289115:156312 -k1,4647:18294585,24289115:156312 -k1,4647:19137059,24289115:156312 -k1,4647:21368896,24289115:156312 -k1,4647:23567310,24289115:156312 -(1,4647:23567310,24289115:0,452978,115847 -r1,4669:26387559,24289115:2820249,568825,115847 -k1,4647:23567310,24289115:-2820249 -) -(1,4647:23567310,24289115:2820249,452978,115847 -k1,4647:23567310,24289115:3277 -h1,4647:26384282,24289115:0,411205,112570 -) -k1,4647:26543870,24289115:156311 -k1,4647:27801187,24289115:156312 -k1,4647:28728202,24289115:156312 -k1,4647:31966991,24289115:0 -) -(1,4648:7246811,25130603:24720180,505283,134348 -g1,4647:10279161,25130603 -g1,4647:11094428,25130603 -g1,4647:12943854,25130603 -g1,4647:15498447,25130603 -g1,4647:16889121,25130603 -g1,4647:18958748,25130603 -g1,4647:19809405,25130603 -g1,4647:23673407,25130603 -k1,4648:31966991,25130603:6623727 -g1,4648:31966991,25130603 -) -v1,4650:7246811,26321069:0,393216,0 -(1,4665:7246811,32605553:24720180,6677700,196608 -g1,4665:7246811,32605553 -g1,4665:7246811,32605553 -g1,4665:7050203,32605553 -(1,4665:7050203,32605553:0,6677700,196608 -r1,4669:32163599,32605553:25113396,6874308,196608 -k1,4665:7050203,32605553:-25113396 -) -(1,4665:7050203,32605553:25113396,6677700,196608 -[1,4665:7246811,32605553:24720180,6481092,0 -(1,4652:7246811,26534979:24720180,410518,101187 -(1,4651:7246811,26534979:0,0,0 -g1,4651:7246811,26534979 -g1,4651:7246811,26534979 -g1,4651:6919131,26534979 -(1,4651:6919131,26534979:0,0,0 -) -g1,4651:7246811,26534979 -) -g1,4652:13253580,26534979 -g1,4652:14202018,26534979 -k1,4652:14202018,26534979:0 -h1,4652:15466601,26534979:0,0,0 -k1,4652:31966991,26534979:16500390 -g1,4652:31966991,26534979 -) -(1,4653:7246811,27201157:24720180,410518,101187 -h1,4653:7246811,27201157:0,0,0 -g1,4653:12621288,27201157 -g1,4653:13569726,27201157 -k1,4653:13569726,27201157:0 -h1,4653:21157223,27201157:0,0,0 -k1,4653:31966991,27201157:10809768 -g1,4653:31966991,27201157 -) -(1,4654:7246811,27867335:24720180,404226,76021 -h1,4654:7246811,27867335:0,0,0 -g1,4654:7562957,27867335 -g1,4654:7879103,27867335 -g1,4654:8195249,27867335 -g1,4654:8511395,27867335 -g1,4654:8827541,27867335 -g1,4654:9143687,27867335 -g1,4654:9459833,27867335 -g1,4654:9775979,27867335 -g1,4654:10092125,27867335 -g1,4654:10408271,27867335 -g1,4654:10724417,27867335 -g1,4654:11040563,27867335 -g1,4654:11356709,27867335 -g1,4654:11672855,27867335 -g1,4654:11989001,27867335 -g1,4654:12305147,27867335 -g1,4654:12621293,27867335 -g1,4654:12937439,27867335 -g1,4654:13253585,27867335 -g1,4654:13569731,27867335 -g1,4654:13885877,27867335 -g1,4654:14202023,27867335 -g1,4654:14518169,27867335 -g1,4654:14834315,27867335 -g1,4654:15150461,27867335 -g1,4654:15466607,27867335 -g1,4654:15782753,27867335 -g1,4654:16731190,27867335 -g1,4654:17679628,27867335 -g1,4654:18628065,27867335 -g1,4654:19260357,27867335 -g1,4654:20208794,27867335 -g1,4654:20841086,27867335 -h1,4654:21157232,27867335:0,0,0 -k1,4654:31966991,27867335:10809759 -g1,4654:31966991,27867335 -) -(1,4655:7246811,28533513:24720180,328204,0 -h1,4655:7246811,28533513:0,0,0 -g1,4655:7562957,28533513 -g1,4655:7879103,28533513 -g1,4655:8195249,28533513 -g1,4655:8511395,28533513 -g1,4655:8827541,28533513 -g1,4655:9143687,28533513 -g1,4655:9459833,28533513 -g1,4655:9775979,28533513 -g1,4655:10092125,28533513 -g1,4655:10408271,28533513 -g1,4655:10724417,28533513 -g1,4655:11040563,28533513 -g1,4655:11356709,28533513 -g1,4655:11672855,28533513 -g1,4655:11989001,28533513 -g1,4655:12305147,28533513 -g1,4655:12621293,28533513 -g1,4655:12937439,28533513 -g1,4655:13253585,28533513 -g1,4655:13569731,28533513 -g1,4655:13885877,28533513 -g1,4655:14202023,28533513 -g1,4655:14518169,28533513 -g1,4655:14834315,28533513 -g1,4655:15150461,28533513 -g1,4655:15466607,28533513 -g1,4655:15782753,28533513 -g1,4655:16098899,28533513 -g1,4655:16731191,28533513 -g1,4655:17679629,28533513 -g1,4655:18311921,28533513 -g1,4655:18944213,28533513 -h1,4655:19260359,28533513:0,0,0 -k1,4655:31966991,28533513:12706632 -g1,4655:31966991,28533513 -) -(1,4656:7246811,29199691:24720180,404226,76021 -h1,4656:7246811,29199691:0,0,0 -g1,4656:7562957,29199691 -g1,4656:7879103,29199691 -g1,4656:8195249,29199691 -g1,4656:8511395,29199691 -g1,4656:8827541,29199691 -g1,4656:9143687,29199691 -g1,4656:9459833,29199691 -g1,4656:9775979,29199691 -g1,4656:10092125,29199691 -g1,4656:10408271,29199691 -g1,4656:10724417,29199691 -g1,4656:11040563,29199691 -g1,4656:11356709,29199691 -g1,4656:11672855,29199691 -g1,4656:11989001,29199691 -g1,4656:12305147,29199691 -g1,4656:12621293,29199691 -g1,4656:12937439,29199691 -g1,4656:13253585,29199691 -g1,4656:13569731,29199691 -g1,4656:13885877,29199691 -g1,4656:14202023,29199691 -g1,4656:14518169,29199691 -g1,4656:14834315,29199691 -g1,4656:15150461,29199691 -g1,4656:15466607,29199691 -g1,4656:15782753,29199691 -g1,4656:16098899,29199691 -g1,4656:16731191,29199691 -g1,4656:17679629,29199691 -g1,4656:18311921,29199691 -g1,4656:18944213,29199691 -g1,4656:19576505,29199691 -g1,4656:20208797,29199691 -h1,4656:20841089,29199691:0,0,0 -k1,4656:31966991,29199691:11125902 -g1,4656:31966991,29199691 -) -(1,4657:7246811,29865869:24720180,404226,76021 -h1,4657:7246811,29865869:0,0,0 -g1,4657:7562957,29865869 -g1,4657:7879103,29865869 -g1,4657:8195249,29865869 -g1,4657:8511395,29865869 -g1,4657:8827541,29865869 -g1,4657:9143687,29865869 -g1,4657:9459833,29865869 -g1,4657:9775979,29865869 -g1,4657:10092125,29865869 -g1,4657:10408271,29865869 -g1,4657:10724417,29865869 -g1,4657:11040563,29865869 -g1,4657:11356709,29865869 -g1,4657:11672855,29865869 -g1,4657:11989001,29865869 -g1,4657:12305147,29865869 -g1,4657:12621293,29865869 -g1,4657:12937439,29865869 -g1,4657:13253585,29865869 -g1,4657:13569731,29865869 -g1,4657:13885877,29865869 -g1,4657:14202023,29865869 -g1,4657:14518169,29865869 -g1,4657:14834315,29865869 -g1,4657:15150461,29865869 -g1,4657:15466607,29865869 -g1,4657:15782753,29865869 -h1,4657:16098899,29865869:0,0,0 -k1,4657:31966991,29865869:15868092 -g1,4657:31966991,29865869 -) -(1,4658:7246811,30532047:24720180,410518,101187 -h1,4658:7246811,30532047:0,0,0 -g1,4658:14518163,30532047 -h1,4658:15150455,30532047:0,0,0 -k1,4658:31966991,30532047:16816536 -g1,4658:31966991,30532047 -) -(1,4664:7246811,31263761:24720180,379060,7863 -(1,4660:7246811,31263761:0,0,0 -g1,4660:7246811,31263761 -g1,4660:7246811,31263761 -g1,4660:6919131,31263761 -(1,4660:6919131,31263761:0,0,0 -) -g1,4660:7246811,31263761 -) -g1,4664:8195248,31263761 -g1,4664:8511394,31263761 -g1,4664:8827540,31263761 -g1,4664:9459832,31263761 -g1,4664:10092124,31263761 -g1,4664:10408270,31263761 -g1,4664:10724416,31263761 -g1,4664:11040562,31263761 -g1,4664:11356708,31263761 -g1,4664:11672854,31263761 -g1,4664:11989000,31263761 -g1,4664:12305146,31263761 -g1,4664:12937438,31263761 -g1,4664:13569730,31263761 -g1,4664:13885876,31263761 -g1,4664:14202022,31263761 -h1,4664:14518168,31263761:0,0,0 -k1,4664:31966992,31263761:17448824 -g1,4664:31966992,31263761 -) -(1,4664:7246811,31929939:24720180,388497,9436 -h1,4664:7246811,31929939:0,0,0 -g1,4664:8195248,31929939 -g1,4664:8827540,31929939 -g1,4664:9459832,31929939 -g1,4664:10092124,31929939 -g1,4664:12937435,31929939 -g1,4664:13569727,31929939 -h1,4664:14518164,31929939:0,0,0 -k1,4664:31966992,31929939:17448828 -g1,4664:31966992,31929939 -) -(1,4664:7246811,32596117:24720180,388497,9436 -h1,4664:7246811,32596117:0,0,0 -g1,4664:8195248,32596117 -g1,4664:8827540,32596117 -g1,4664:9459832,32596117 -g1,4664:10092124,32596117 -g1,4664:12937435,32596117 -g1,4664:13569727,32596117 -h1,4664:14518164,32596117:0,0,0 -k1,4664:31966992,32596117:17448828 -g1,4664:31966992,32596117 -) -] -) -g1,4665:31966991,32605553 -g1,4665:7246811,32605553 -g1,4665:7246811,32605553 -g1,4665:31966991,32605553 -g1,4665:31966991,32605553 -) -h1,4665:7246811,32802161:0,0,0 -(1,4669:7246811,34167937:24720180,513147,126483 -h1,4668:7246811,34167937:983040,0,0 -k1,4668:9551869,34167937:173172 -k1,4668:10392198,34167937:173173 -(1,4668:10392198,34167937:0,452978,115847 -r1,4669:13212447,34167937:2820249,568825,115847 -k1,4668:10392198,34167937:-2820249 -) -(1,4668:10392198,34167937:2820249,452978,115847 -k1,4668:10392198,34167937:3277 -h1,4668:13209170,34167937:0,411205,112570 -) -k1,4668:13385619,34167937:173172 -k1,4668:14750237,34167937:173173 -(1,4668:14750237,34167937:0,452978,115847 -r1,4669:17570486,34167937:2820249,568825,115847 -k1,4668:14750237,34167937:-2820249 -) -(1,4668:14750237,34167937:2820249,452978,115847 -k1,4668:14750237,34167937:3277 -h1,4668:17567209,34167937:0,411205,112570 -) -k1,4668:17917328,34167937:173172 -k1,4668:19975972,34167937:173173 -k1,4668:22844640,34167937:173172 -k1,4668:23703975,34167937:173173 -k1,4668:24233007,34167937:173172 -k1,4668:25672336,34167937:173173 -k1,4668:26504800,34167937:173172 -k1,4668:27679337,34167937:173147 -k1,4668:29043954,34167937:173172 -k1,4668:30444590,34167937:173147 -k1,4669:31966991,34167937:0 -) -(1,4669:7246811,35009425:24720180,513147,126483 -k1,4668:9070577,35009425:224032 -k1,4668:10398892,35009425:224033 -k1,4668:12465796,35009425:224032 -k1,4668:13305866,35009425:224032 -k1,4668:14300602,35009425:224033 -k1,4668:17710339,35009425:224032 -k1,4668:21431372,35009425:224032 -k1,4668:22464774,35009425:224032 -k1,4668:24426822,35009425:224033 -k1,4668:26873180,35009425:224032 -k1,4668:27563173,35009425:224032 -k1,4668:28806291,35009425:224033 -k1,4668:30861399,35009425:224032 -k1,4669:31966991,35009425:0 -) -(1,4669:7246811,35850913:24720180,513147,126483 -k1,4668:9963021,35850913:189797 -k1,4668:11666044,35850913:189797 -(1,4668:11666044,35850913:0,452978,115847 -r1,4669:14486293,35850913:2820249,568825,115847 -k1,4668:11666044,35850913:-2820249 -) -(1,4668:11666044,35850913:2820249,452978,115847 -k1,4668:11666044,35850913:3277 -h1,4668:14483016,35850913:0,411205,112570 -) -k1,4668:14676090,35850913:189797 -k1,4668:15397384,35850913:189797 -k1,4668:18420302,35850913:189797 -k1,4668:19682267,35850913:189796 -k1,4668:21914821,35850913:189797 -(1,4668:21914821,35850913:0,452978,115847 -r1,4669:24735070,35850913:2820249,568825,115847 -k1,4668:21914821,35850913:-2820249 -) -(1,4668:21914821,35850913:2820249,452978,115847 -k1,4668:21914821,35850913:3277 -h1,4668:24731793,35850913:0,411205,112570 -) -k1,4668:24924867,35850913:189797 -k1,4668:25646161,35850913:189797 -k1,4668:27877404,35850913:189797 -k1,4668:28753363,35850913:189797 -k1,4668:31435494,35850913:189797 -k1,4668:31966991,35850913:0 -) -(1,4669:7246811,36692401:24720180,513147,134348 -k1,4668:8504929,36692401:191847 -k1,4668:12060084,36692401:191847 -k1,4668:12879767,36692401:191848 -k1,4668:15876555,36692401:191847 -(1,4668:15876555,36692401:0,452978,115847 -r1,4669:17993380,36692401:2116825,568825,115847 -k1,4668:15876555,36692401:-2116825 -) -(1,4668:15876555,36692401:2116825,452978,115847 -k1,4668:15876555,36692401:3277 -h1,4668:17990103,36692401:0,411205,112570 -) -k1,4668:18185227,36692401:191847 -k1,4668:19568519,36692401:191847 -(1,4668:19568519,36692401:0,452978,115847 -r1,4669:22388768,36692401:2820249,568825,115847 -k1,4668:19568519,36692401:-2820249 -) -(1,4668:19568519,36692401:2820249,452978,115847 -k1,4668:19568519,36692401:3277 -h1,4668:22385491,36692401:0,411205,112570 -) -k1,4668:22754286,36692401:191848 -k1,4668:24684148,36692401:191847 -k1,4668:29550023,36692401:191847 -k1,4669:31966991,36692401:0 -) -(1,4669:7246811,37533889:24720180,505283,126483 -k1,4668:8460276,37533889:261882 -k1,4668:10006663,37533889:261881 -k1,4668:12760879,37533889:261882 -k1,4668:14705726,37533889:261882 -k1,4668:16803927,37533889:261882 -k1,4668:21586482,37533889:261881 -k1,4668:22867449,37533889:261882 -k1,4668:24850306,37533889:261882 -k1,4668:30522184,37533889:261881 -k1,4668:31315563,37533889:261882 -k1,4668:31966991,37533889:0 -) -(1,4669:7246811,38375377:24720180,513147,134348 -k1,4668:8700777,38375377:174048 -k1,4668:12274832,38375377:174047 -k1,4668:13100308,38375377:174048 -k1,4668:14293440,38375377:174047 -k1,4668:15559973,38375377:174048 -k1,4668:16401176,38375377:174047 -(1,4668:16401176,38375377:0,452978,115847 -r1,4669:18518001,38375377:2116825,568825,115847 -k1,4668:16401176,38375377:-2116825 -) -(1,4668:16401176,38375377:2116825,452978,115847 -k1,4668:16401176,38375377:3277 -h1,4668:18514724,38375377:0,411205,112570 -) -k1,4668:18692049,38375377:174048 -k1,4668:20057542,38375377:174048 -(1,4668:20057542,38375377:0,452978,115847 -r1,4669:22877791,38375377:2820249,568825,115847 -k1,4668:20057542,38375377:-2820249 -) -(1,4668:20057542,38375377:2820249,452978,115847 -k1,4668:20057542,38375377:3277 -h1,4668:22874514,38375377:0,411205,112570 -) -k1,4668:23051838,38375377:174047 -k1,4668:24613283,38375377:174048 -(1,4668:24613283,38375377:0,452978,115847 -r1,4669:27433532,38375377:2820249,568825,115847 -k1,4668:24613283,38375377:-2820249 -) -(1,4668:24613283,38375377:2820249,452978,115847 -k1,4668:24613283,38375377:3277 -h1,4668:27430255,38375377:0,411205,112570 -) -k1,4668:27607579,38375377:174047 -k1,4668:28973072,38375377:174048 -(1,4668:28973072,38375377:0,452978,115847 -r1,4669:31793321,38375377:2820249,568825,115847 -k1,4668:28973072,38375377:-2820249 -) -(1,4668:28973072,38375377:2820249,452978,115847 -k1,4668:28973072,38375377:3277 -h1,4668:31790044,38375377:0,411205,112570 -) -k1,4668:31966991,38375377:0 -) -(1,4669:7246811,39216865:24720180,513147,134348 -k1,4668:8585359,39216865:189702 -k1,4668:9434352,39216865:189701 -k1,4668:11320781,39216865:189702 -k1,4668:14536279,39216865:189701 -k1,4668:15792252,39216865:189702 -k1,4668:17357554,39216865:189701 -k1,4668:19268231,39216865:189702 -k1,4668:21486927,39216865:189701 -k1,4668:22748798,39216865:189702 -k1,4668:24224315,39216865:189701 -k1,4668:26460051,39216865:189702 -k1,4668:28145939,39216865:189701 -k1,4668:29985838,39216865:189702 -k1,4669:31966991,39216865:0 -) -(1,4669:7246811,40058353:24720180,505283,7863 -k1,4669:31966991,40058353:23593616 -g1,4669:31966991,40058353 -) -] -) -] -r1,4669:32583029,40656040:26214,34795159,0 -) -] -) -) -g1,4669:32583029,40066216 -) -h1,4669:6630773,40682254:0,0,0 -(1,4671:6630773,42773514:25952256,555811,147783 -(1,4671:6630773,42773514:2899444,534184,0 -g1,4671:6630773,42773514 -g1,4671:9530217,42773514 -) -g1,4671:14396266,42773514 -g1,4671:17708063,42773514 -g1,4671:19275291,42773514 -k1,4671:32583029,42773514:11517753 -g1,4671:32583029,42773514 -) -(1,4674:6630773,44008218:25952256,513147,134348 -k1,4673:8001598,44008218:174138 -k1,4673:9777437,44008218:174139 -k1,4673:11799690,44008218:174138 -k1,4673:13211804,44008218:174139 -k1,4673:14045234,44008218:174138 -k1,4673:17102957,44008218:174139 -k1,4673:18296180,44008218:174138 -k1,4673:20209645,44008218:174139 -k1,4673:21043075,44008218:174138 -k1,4673:23930405,44008218:174139 -k1,4673:26314417,44008218:174138 -k1,4673:28022754,44008218:174139 -k1,4673:28812930,44008218:174138 -k1,4673:30376432,44008218:174139 -k1,4673:32583029,44008218:0 -) -(1,4674:6630773,44849706:25952256,505283,134348 -k1,4673:8198394,44849706:169083 -k1,4673:11100983,44849706:169082 -k1,4673:12461511,44849706:169083 -k1,4673:14817530,44849706:169083 -k1,4673:15518109,44849706:169082 -k1,4673:16338620,44849706:169083 -k1,4673:17600188,44849706:169083 -k1,4673:21736165,44849706:169083 -k1,4673:22591409,44849706:169082 -k1,4673:25850515,44849706:169083 -k1,4673:28048593,44849706:169083 -k1,4673:29822652,44849706:169082 -k1,4673:30860087,44849706:169083 -k1,4673:32583029,44849706:0 -) -] -(1,4676:32583029,45706769:0,0,0 -g1,4676:32583029,45706769 -) -) -] -(1,4676:6630773,47279633:25952256,0,0 -h1,4676:6630773,47279633:25952256,0,0 +k1,4682:3078556,49800853:-34777008 +) +] +g1,4682:6630773,4812305 +g1,4682:6630773,4812305 +g1,4682:8364200,4812305 +g1,4682:10765439,4812305 +k1,4682:31786111,4812305:21020672 +) +) +] +[1,4682:6630773,45706769:25952256,40108032,0 +(1,4682:6630773,45706769:25952256,40108032,0 +(1,4682:6630773,45706769:0,0,0 +g1,4682:6630773,45706769 +) +[1,4682:6630773,45706769:25952256,40108032,0 +v1,4675:6630773,6254097:0,393216,0 +(1,4675:6630773,40066216:25952256,34205335,616038 +g1,4675:6630773,40066216 +(1,4675:6630773,40066216:25952256,34205335,616038 +(1,4675:6630773,40682254:25952256,34821373,0 +[1,4675:6630773,40682254:25952256,34821373,0 +(1,4675:6630773,40656040:25952256,34795159,0 +r1,4675:6656987,40656040:26214,34795159,0 +[1,4675:6656987,40656040:25899828,34795159,0 +(1,4675:6656987,40066216:25899828,33615511,0 +[1,4675:7246811,40066216:24720180,33615511,0 +v1,4623:7246811,6843921:0,393216,0 +(1,4634:7246811,10463693:24720180,4012988,196608 +g1,4634:7246811,10463693 +g1,4634:7246811,10463693 +g1,4634:7050203,10463693 +(1,4634:7050203,10463693:0,4012988,196608 +r1,4675:32163599,10463693:25113396,4209596,196608 +k1,4634:7050203,10463693:-25113396 +) +(1,4634:7050203,10463693:25113396,4012988,196608 +[1,4634:7246811,10463693:24720180,3816380,0 +(1,4625:7246811,7057831:24720180,410518,101187 +(1,4624:7246811,7057831:0,0,0 +g1,4624:7246811,7057831 +g1,4624:7246811,7057831 +g1,4624:6919131,7057831 +(1,4624:6919131,7057831:0,0,0 +) +g1,4624:7246811,7057831 +) +g1,4625:13253580,7057831 +g1,4625:14202018,7057831 +k1,4625:14202018,7057831:0 +h1,4625:15466601,7057831:0,0,0 +k1,4625:31966991,7057831:16500390 +g1,4625:31966991,7057831 +) +(1,4626:7246811,7724009:24720180,410518,101187 +h1,4626:7246811,7724009:0,0,0 +g1,4626:13253580,7724009 +g1,4626:14202018,7724009 +g1,4626:21473370,7724009 +g1,4626:22421807,7724009 +g1,4626:23054099,7724009 +g1,4626:24002536,7724009 +g1,4626:24634828,7724009 +h1,4626:25267119,7724009:0,0,0 +k1,4626:31966991,7724009:6699872 +g1,4626:31966991,7724009 +) +(1,4627:7246811,8390187:24720180,410518,101187 +h1,4627:7246811,8390187:0,0,0 +g1,4627:14518163,8390187 +h1,4627:15150455,8390187:0,0,0 +k1,4627:31966991,8390187:16816536 +g1,4627:31966991,8390187 +) +(1,4633:7246811,9121901:24720180,379060,7863 +(1,4629:7246811,9121901:0,0,0 +g1,4629:7246811,9121901 +g1,4629:7246811,9121901 +g1,4629:6919131,9121901 +(1,4629:6919131,9121901:0,0,0 +) +g1,4629:7246811,9121901 +) +g1,4633:8195248,9121901 +g1,4633:8511394,9121901 +g1,4633:8827540,9121901 +g1,4633:9459832,9121901 +g1,4633:10092124,9121901 +g1,4633:10408270,9121901 +g1,4633:10724416,9121901 +h1,4633:11040562,9121901:0,0,0 +k1,4633:31966990,9121901:20926428 +g1,4633:31966990,9121901 +) +(1,4633:7246811,9788079:24720180,388497,9436 +h1,4633:7246811,9788079:0,0,0 +g1,4633:8195248,9788079 +g1,4633:8827540,9788079 +g1,4633:9459832,9788079 +g1,4633:10092124,9788079 +h1,4633:11040561,9788079:0,0,0 +k1,4633:31966991,9788079:20926430 +g1,4633:31966991,9788079 +) +(1,4633:7246811,10454257:24720180,388497,9436 +h1,4633:7246811,10454257:0,0,0 +g1,4633:8195248,10454257 +g1,4633:8827540,10454257 +g1,4633:9459832,10454257 +g1,4633:10092124,10454257 +h1,4633:11040561,10454257:0,0,0 +k1,4633:31966991,10454257:20926430 +g1,4633:31966991,10454257 +) +] +) +g1,4634:31966991,10463693 +g1,4634:7246811,10463693 +g1,4634:7246811,10463693 +g1,4634:31966991,10463693 +g1,4634:31966991,10463693 +) +h1,4634:7246811,10660301:0,0,0 +(1,4638:7246811,12026077:24720180,513147,134348 +h1,4637:7246811,12026077:983040,0,0 +k1,4637:9061320,12026077:203634 +k1,4637:10284038,12026077:203633 +k1,4637:11854753,12026077:203634 +k1,4637:12725543,12026077:203634 +(1,4637:12725543,12026077:0,452978,115847 +r1,4675:15545792,12026077:2820249,568825,115847 +k1,4637:12725543,12026077:-2820249 +) +(1,4637:12725543,12026077:2820249,452978,115847 +k1,4637:12725543,12026077:3277 +h1,4637:15542515,12026077:0,411205,112570 +) +k1,4637:15923095,12026077:203633 +k1,4637:20102798,12026077:203634 +k1,4637:20922470,12026077:203634 +k1,4637:22145188,12026077:203633 +k1,4637:25421150,12026077:203634 +k1,4637:26276212,12026077:203634 +k1,4637:27268243,12026077:203633 +k1,4637:29713208,12026077:203634 +k1,4638:31966991,12026077:0 +) +(1,4638:7246811,12867565:24720180,513147,134348 +k1,4637:8677855,12867565:191103 +k1,4637:10648260,12867565:191103 +k1,4637:11858448,12867565:191103 +k1,4637:14009077,12867565:191103 +k1,4637:17152577,12867565:191103 +k1,4637:19229151,12867565:191103 +k1,4637:19951751,12867565:191103 +k1,4637:20498715,12867565:191104 +k1,4637:22199768,12867565:191103 +k1,4637:23050163,12867565:191103 +k1,4637:24260351,12867565:191103 +k1,4637:27458901,12867565:191103 +k1,4637:28484933,12867565:191103 +k1,4637:29879277,12867565:191103 +k1,4637:31611131,12867565:191103 +k1,4637:31966991,12867565:0 +) +(1,4638:7246811,13709053:24720180,513147,134348 +k1,4637:9308846,13709053:179186 +k1,4637:10877395,13709053:179186 +k1,4637:13313642,13709053:179187 +k1,4637:15378299,13709053:179186 +k1,4637:16756139,13709053:179186 +k1,4637:18795892,13709053:179186 +k1,4637:19626507,13709053:179187 +k1,4637:20553459,13709053:179186 +k1,4637:22544060,13709053:179186 +k1,4637:25281772,13709053:179186 +k1,4637:29280397,13709053:179187 +k1,4637:30947906,13709053:179186 +k1,4637:31966991,13709053:0 +) +(1,4638:7246811,14550541:24720180,513147,134348 +k1,4637:10378490,14550541:229089 +k1,4637:11139077,14550541:229090 +k1,4637:12019594,14550541:229089 +k1,4637:14510986,14550541:229089 +k1,4637:15371842,14550541:229089 +k1,4637:16325760,14550541:229090 +k1,4637:17423201,14550541:229089 +k1,4637:19659002,14550541:229089 +k1,4637:20346188,14550541:229089 +k1,4637:22057702,14550541:229090 +k1,4637:22938219,14550541:229089 +k1,4637:24186393,14550541:229089 +k1,4637:26068955,14550541:229089 +k1,4637:28209730,14550541:229090 +k1,4637:29510988,14550541:229089 +k1,4637:30198174,14550541:229089 +k1,4637:31966991,14550541:0 +) +(1,4638:7246811,15392029:24720180,513147,134348 +k1,4637:8899020,15392029:176994 +k1,4637:10585964,15392029:176994 +k1,4637:13537752,15392029:176994 +k1,4637:14366174,15392029:176994 +k1,4637:14899028,15392029:176994 +k1,4637:17838365,15392029:176994 +k1,4637:19753374,15392029:176994 +k1,4637:20655196,15392029:176994 +k1,4637:21518352,15392029:176994 +k1,4637:22761617,15392029:176994 +k1,4637:23590039,15392029:176994 +k1,4637:26769237,15392029:176994 +k1,4637:27965316,15392029:176994 +k1,4637:30577628,15392029:176994 +k1,4637:31966991,15392029:0 +) +(1,4638:7246811,16233517:24720180,513147,7863 +k1,4638:31966991,16233517:22670214 +g1,4638:31966991,16233517 +) +v1,4640:7246811,17423983:0,393216,0 +(1,4651:7246811,21043755:24720180,4012988,196608 +g1,4651:7246811,21043755 +g1,4651:7246811,21043755 +g1,4651:7050203,21043755 +(1,4651:7050203,21043755:0,4012988,196608 +r1,4675:32163599,21043755:25113396,4209596,196608 +k1,4651:7050203,21043755:-25113396 +) +(1,4651:7050203,21043755:25113396,4012988,196608 +[1,4651:7246811,21043755:24720180,3816380,0 +(1,4642:7246811,17637893:24720180,410518,101187 +(1,4641:7246811,17637893:0,0,0 +g1,4641:7246811,17637893 +g1,4641:7246811,17637893 +g1,4641:6919131,17637893 +(1,4641:6919131,17637893:0,0,0 +) +g1,4641:7246811,17637893 +) +g1,4642:13253580,17637893 +g1,4642:14202018,17637893 +k1,4642:14202018,17637893:0 +h1,4642:15466601,17637893:0,0,0 +k1,4642:31966991,17637893:16500390 +g1,4642:31966991,17637893 +) +(1,4643:7246811,18304071:24720180,410518,101187 +h1,4643:7246811,18304071:0,0,0 +g1,4643:12621288,18304071 +g1,4643:13569726,18304071 +g1,4643:21473369,18304071 +g1,4643:21789515,18304071 +g1,4643:22421807,18304071 +g1,4643:23370245,18304071 +g1,4643:24318682,18304071 +g1,4643:24950974,18304071 +g1,4643:25899411,18304071 +g1,4643:26531703,18304071 +h1,4643:27163994,18304071:0,0,0 +k1,4643:31966991,18304071:4802997 +g1,4643:31966991,18304071 +) +(1,4644:7246811,18970249:24720180,410518,101187 +h1,4644:7246811,18970249:0,0,0 +g1,4644:14518163,18970249 +h1,4644:15150455,18970249:0,0,0 +k1,4644:31966991,18970249:16816536 +g1,4644:31966991,18970249 +) +(1,4650:7246811,19701963:24720180,379060,7863 +(1,4646:7246811,19701963:0,0,0 +g1,4646:7246811,19701963 +g1,4646:7246811,19701963 +g1,4646:6919131,19701963 +(1,4646:6919131,19701963:0,0,0 +) +g1,4646:7246811,19701963 +) +g1,4650:8195248,19701963 +g1,4650:8511394,19701963 +g1,4650:8827540,19701963 +g1,4650:9459832,19701963 +g1,4650:10092124,19701963 +g1,4650:10408270,19701963 +g1,4650:10724416,19701963 +h1,4650:11040562,19701963:0,0,0 +k1,4650:31966990,19701963:20926428 +g1,4650:31966990,19701963 +) +(1,4650:7246811,20368141:24720180,388497,9436 +h1,4650:7246811,20368141:0,0,0 +g1,4650:8195248,20368141 +g1,4650:8827540,20368141 +g1,4650:9459832,20368141 +g1,4650:10092124,20368141 +h1,4650:11040561,20368141:0,0,0 +k1,4650:31966991,20368141:20926430 +g1,4650:31966991,20368141 +) +(1,4650:7246811,21034319:24720180,388497,9436 +h1,4650:7246811,21034319:0,0,0 +g1,4650:8195248,21034319 +g1,4650:8827540,21034319 +g1,4650:9459832,21034319 +g1,4650:10092124,21034319 +h1,4650:11040561,21034319:0,0,0 +k1,4650:31966991,21034319:20926430 +g1,4650:31966991,21034319 +) +] +) +g1,4651:31966991,21043755 +g1,4651:7246811,21043755 +g1,4651:7246811,21043755 +g1,4651:31966991,21043755 +g1,4651:31966991,21043755 +) +h1,4651:7246811,21240363:0,0,0 +(1,4654:7246811,22606139:24720180,513147,134348 +h1,4653:7246811,22606139:983040,0,0 +k1,4653:9088349,22606139:230663 +k1,4653:10338097,22606139:230663 +k1,4653:13230178,22606139:230664 +k1,4653:15489836,22606139:230663 +(1,4653:15489836,22606139:0,452978,115847 +r1,4675:18310085,22606139:2820249,568825,115847 +k1,4653:15489836,22606139:-2820249 +) +(1,4653:15489836,22606139:2820249,452978,115847 +k1,4653:15489836,22606139:3277 +h1,4653:18306808,22606139:0,411205,112570 +) +k1,4653:18540748,22606139:230663 +k1,4653:20817445,22606139:230663 +k1,4653:22520702,22606139:230663 +k1,4653:25937726,22606139:230664 +k1,4653:29349507,22606139:230663 +k1,4653:30231598,22606139:230663 +k1,4654:31966991,22606139:0 +) +(1,4654:7246811,23447627:24720180,513147,134348 +(1,4653:7246811,23447627:0,452978,115847 +r1,4675:9363636,23447627:2116825,568825,115847 +k1,4653:7246811,23447627:-2116825 +) +(1,4653:7246811,23447627:2116825,452978,115847 +k1,4653:7246811,23447627:3277 +h1,4653:9360359,23447627:0,411205,112570 +) +k1,4653:9538465,23447627:174829 +k1,4653:11107245,23447627:174829 +k1,4653:13606636,23447627:174829 +k1,4653:14432893,23447627:174829 +k1,4653:15626807,23447627:174829 +k1,4653:18258581,23447627:174829 +k1,4653:19092701,23447627:174828 +k1,4653:21296525,23447627:174829 +k1,4653:22154239,23447627:174829 +k1,4653:24504863,23447627:174829 +k1,4653:25751861,23447627:174829 +k1,4653:27320641,23447627:174829 +k1,4653:30166717,23447627:174829 +k1,4654:31966991,23447627:0 +) +(1,4654:7246811,24289115:24720180,505283,134348 +k1,4653:8439247,24289115:156312 +k1,4653:11437200,24289115:156312 +k1,4653:13331526,24289115:156311 +k1,4653:16319649,24289115:156312 +k1,4653:18294585,24289115:156312 +k1,4653:19137059,24289115:156312 +k1,4653:21368896,24289115:156312 +k1,4653:23567310,24289115:156312 +(1,4653:23567310,24289115:0,452978,115847 +r1,4675:26387559,24289115:2820249,568825,115847 +k1,4653:23567310,24289115:-2820249 +) +(1,4653:23567310,24289115:2820249,452978,115847 +k1,4653:23567310,24289115:3277 +h1,4653:26384282,24289115:0,411205,112570 +) +k1,4653:26543870,24289115:156311 +k1,4653:27801187,24289115:156312 +k1,4653:28728202,24289115:156312 +k1,4653:31966991,24289115:0 +) +(1,4654:7246811,25130603:24720180,505283,134348 +g1,4653:10279161,25130603 +g1,4653:11094428,25130603 +g1,4653:12943854,25130603 +g1,4653:15498447,25130603 +g1,4653:16889121,25130603 +g1,4653:18958748,25130603 +g1,4653:19809405,25130603 +g1,4653:23673407,25130603 +k1,4654:31966991,25130603:6623727 +g1,4654:31966991,25130603 +) +v1,4656:7246811,26321069:0,393216,0 +(1,4671:7246811,32605553:24720180,6677700,196608 +g1,4671:7246811,32605553 +g1,4671:7246811,32605553 +g1,4671:7050203,32605553 +(1,4671:7050203,32605553:0,6677700,196608 +r1,4675:32163599,32605553:25113396,6874308,196608 +k1,4671:7050203,32605553:-25113396 +) +(1,4671:7050203,32605553:25113396,6677700,196608 +[1,4671:7246811,32605553:24720180,6481092,0 +(1,4658:7246811,26534979:24720180,410518,101187 +(1,4657:7246811,26534979:0,0,0 +g1,4657:7246811,26534979 +g1,4657:7246811,26534979 +g1,4657:6919131,26534979 +(1,4657:6919131,26534979:0,0,0 +) +g1,4657:7246811,26534979 +) +g1,4658:13253580,26534979 +g1,4658:14202018,26534979 +k1,4658:14202018,26534979:0 +h1,4658:15466601,26534979:0,0,0 +k1,4658:31966991,26534979:16500390 +g1,4658:31966991,26534979 +) +(1,4659:7246811,27201157:24720180,410518,101187 +h1,4659:7246811,27201157:0,0,0 +g1,4659:12621288,27201157 +g1,4659:13569726,27201157 +k1,4659:13569726,27201157:0 +h1,4659:21157223,27201157:0,0,0 +k1,4659:31966991,27201157:10809768 +g1,4659:31966991,27201157 +) +(1,4660:7246811,27867335:24720180,404226,76021 +h1,4660:7246811,27867335:0,0,0 +g1,4660:7562957,27867335 +g1,4660:7879103,27867335 +g1,4660:8195249,27867335 +g1,4660:8511395,27867335 +g1,4660:8827541,27867335 +g1,4660:9143687,27867335 +g1,4660:9459833,27867335 +g1,4660:9775979,27867335 +g1,4660:10092125,27867335 +g1,4660:10408271,27867335 +g1,4660:10724417,27867335 +g1,4660:11040563,27867335 +g1,4660:11356709,27867335 +g1,4660:11672855,27867335 +g1,4660:11989001,27867335 +g1,4660:12305147,27867335 +g1,4660:12621293,27867335 +g1,4660:12937439,27867335 +g1,4660:13253585,27867335 +g1,4660:13569731,27867335 +g1,4660:13885877,27867335 +g1,4660:14202023,27867335 +g1,4660:14518169,27867335 +g1,4660:14834315,27867335 +g1,4660:15150461,27867335 +g1,4660:15466607,27867335 +g1,4660:15782753,27867335 +g1,4660:16731190,27867335 +g1,4660:17679628,27867335 +g1,4660:18628065,27867335 +g1,4660:19260357,27867335 +g1,4660:20208794,27867335 +g1,4660:20841086,27867335 +h1,4660:21157232,27867335:0,0,0 +k1,4660:31966991,27867335:10809759 +g1,4660:31966991,27867335 +) +(1,4661:7246811,28533513:24720180,328204,0 +h1,4661:7246811,28533513:0,0,0 +g1,4661:7562957,28533513 +g1,4661:7879103,28533513 +g1,4661:8195249,28533513 +g1,4661:8511395,28533513 +g1,4661:8827541,28533513 +g1,4661:9143687,28533513 +g1,4661:9459833,28533513 +g1,4661:9775979,28533513 +g1,4661:10092125,28533513 +g1,4661:10408271,28533513 +g1,4661:10724417,28533513 +g1,4661:11040563,28533513 +g1,4661:11356709,28533513 +g1,4661:11672855,28533513 +g1,4661:11989001,28533513 +g1,4661:12305147,28533513 +g1,4661:12621293,28533513 +g1,4661:12937439,28533513 +g1,4661:13253585,28533513 +g1,4661:13569731,28533513 +g1,4661:13885877,28533513 +g1,4661:14202023,28533513 +g1,4661:14518169,28533513 +g1,4661:14834315,28533513 +g1,4661:15150461,28533513 +g1,4661:15466607,28533513 +g1,4661:15782753,28533513 +g1,4661:16098899,28533513 +g1,4661:16731191,28533513 +g1,4661:17679629,28533513 +g1,4661:18311921,28533513 +g1,4661:18944213,28533513 +h1,4661:19260359,28533513:0,0,0 +k1,4661:31966991,28533513:12706632 +g1,4661:31966991,28533513 +) +(1,4662:7246811,29199691:24720180,404226,76021 +h1,4662:7246811,29199691:0,0,0 +g1,4662:7562957,29199691 +g1,4662:7879103,29199691 +g1,4662:8195249,29199691 +g1,4662:8511395,29199691 +g1,4662:8827541,29199691 +g1,4662:9143687,29199691 +g1,4662:9459833,29199691 +g1,4662:9775979,29199691 +g1,4662:10092125,29199691 +g1,4662:10408271,29199691 +g1,4662:10724417,29199691 +g1,4662:11040563,29199691 +g1,4662:11356709,29199691 +g1,4662:11672855,29199691 +g1,4662:11989001,29199691 +g1,4662:12305147,29199691 +g1,4662:12621293,29199691 +g1,4662:12937439,29199691 +g1,4662:13253585,29199691 +g1,4662:13569731,29199691 +g1,4662:13885877,29199691 +g1,4662:14202023,29199691 +g1,4662:14518169,29199691 +g1,4662:14834315,29199691 +g1,4662:15150461,29199691 +g1,4662:15466607,29199691 +g1,4662:15782753,29199691 +g1,4662:16098899,29199691 +g1,4662:16731191,29199691 +g1,4662:17679629,29199691 +g1,4662:18311921,29199691 +g1,4662:18944213,29199691 +g1,4662:19576505,29199691 +g1,4662:20208797,29199691 +h1,4662:20841089,29199691:0,0,0 +k1,4662:31966991,29199691:11125902 +g1,4662:31966991,29199691 +) +(1,4663:7246811,29865869:24720180,404226,76021 +h1,4663:7246811,29865869:0,0,0 +g1,4663:7562957,29865869 +g1,4663:7879103,29865869 +g1,4663:8195249,29865869 +g1,4663:8511395,29865869 +g1,4663:8827541,29865869 +g1,4663:9143687,29865869 +g1,4663:9459833,29865869 +g1,4663:9775979,29865869 +g1,4663:10092125,29865869 +g1,4663:10408271,29865869 +g1,4663:10724417,29865869 +g1,4663:11040563,29865869 +g1,4663:11356709,29865869 +g1,4663:11672855,29865869 +g1,4663:11989001,29865869 +g1,4663:12305147,29865869 +g1,4663:12621293,29865869 +g1,4663:12937439,29865869 +g1,4663:13253585,29865869 +g1,4663:13569731,29865869 +g1,4663:13885877,29865869 +g1,4663:14202023,29865869 +g1,4663:14518169,29865869 +g1,4663:14834315,29865869 +g1,4663:15150461,29865869 +g1,4663:15466607,29865869 +g1,4663:15782753,29865869 +h1,4663:16098899,29865869:0,0,0 +k1,4663:31966991,29865869:15868092 +g1,4663:31966991,29865869 +) +(1,4664:7246811,30532047:24720180,410518,101187 +h1,4664:7246811,30532047:0,0,0 +g1,4664:14518163,30532047 +h1,4664:15150455,30532047:0,0,0 +k1,4664:31966991,30532047:16816536 +g1,4664:31966991,30532047 +) +(1,4670:7246811,31263761:24720180,379060,7863 +(1,4666:7246811,31263761:0,0,0 +g1,4666:7246811,31263761 +g1,4666:7246811,31263761 +g1,4666:6919131,31263761 +(1,4666:6919131,31263761:0,0,0 +) +g1,4666:7246811,31263761 +) +g1,4670:8195248,31263761 +g1,4670:8511394,31263761 +g1,4670:8827540,31263761 +g1,4670:9459832,31263761 +g1,4670:10092124,31263761 +g1,4670:10408270,31263761 +g1,4670:10724416,31263761 +g1,4670:11040562,31263761 +g1,4670:11356708,31263761 +g1,4670:11672854,31263761 +g1,4670:11989000,31263761 +g1,4670:12305146,31263761 +g1,4670:12937438,31263761 +g1,4670:13569730,31263761 +g1,4670:13885876,31263761 +g1,4670:14202022,31263761 +h1,4670:14518168,31263761:0,0,0 +k1,4670:31966992,31263761:17448824 +g1,4670:31966992,31263761 +) +(1,4670:7246811,31929939:24720180,388497,9436 +h1,4670:7246811,31929939:0,0,0 +g1,4670:8195248,31929939 +g1,4670:8827540,31929939 +g1,4670:9459832,31929939 +g1,4670:10092124,31929939 +g1,4670:12937435,31929939 +g1,4670:13569727,31929939 +h1,4670:14518164,31929939:0,0,0 +k1,4670:31966992,31929939:17448828 +g1,4670:31966992,31929939 +) +(1,4670:7246811,32596117:24720180,388497,9436 +h1,4670:7246811,32596117:0,0,0 +g1,4670:8195248,32596117 +g1,4670:8827540,32596117 +g1,4670:9459832,32596117 +g1,4670:10092124,32596117 +g1,4670:12937435,32596117 +g1,4670:13569727,32596117 +h1,4670:14518164,32596117:0,0,0 +k1,4670:31966992,32596117:17448828 +g1,4670:31966992,32596117 +) +] +) +g1,4671:31966991,32605553 +g1,4671:7246811,32605553 +g1,4671:7246811,32605553 +g1,4671:31966991,32605553 +g1,4671:31966991,32605553 +) +h1,4671:7246811,32802161:0,0,0 +(1,4675:7246811,34167937:24720180,513147,126483 +h1,4674:7246811,34167937:983040,0,0 +k1,4674:9682302,34167937:303605 +k1,4674:10653064,34167937:303606 +(1,4674:10653064,34167937:0,452978,115847 +r1,4675:13473313,34167937:2820249,568825,115847 +k1,4674:10653064,34167937:-2820249 +) +(1,4674:10653064,34167937:2820249,452978,115847 +k1,4674:10653064,34167937:3277 +h1,4674:13470036,34167937:0,411205,112570 +) +k1,4674:13776918,34167937:303605 +k1,4674:15271968,34167937:303605 +(1,4674:15271968,34167937:0,452978,115847 +r1,4675:18092217,34167937:2820249,568825,115847 +k1,4674:15271968,34167937:-2820249 +) +(1,4674:15271968,34167937:2820249,452978,115847 +k1,4674:15271968,34167937:3277 +h1,4674:18088940,34167937:0,411205,112570 +) +k1,4674:18569492,34167937:303605 +k1,4674:20758569,34167937:303606 +k1,4674:23757670,34167937:303605 +k1,4674:24747437,34167937:303605 +k1,4674:25406903,34167937:303606 +k1,4674:26976664,34167937:303605 +k1,4674:27939561,34167937:303605 +k1,4674:29244452,34167937:303501 +k1,4674:30739502,34167937:303605 +k1,4674:31966991,34167937:0 +) +(1,4675:7246811,35009425:24720180,513147,126483 +k1,4674:10381671,35009425:225717 +k1,4674:11711670,35009425:225717 +k1,4674:13780259,35009425:225717 +k1,4674:14622014,35009425:225717 +k1,4674:15618434,35009425:225717 +k1,4674:19029856,35009425:225717 +k1,4674:22752573,35009425:225716 +k1,4674:23787660,35009425:225717 +k1,4674:25751392,35009425:225717 +k1,4674:28199435,35009425:225717 +k1,4674:28891113,35009425:225717 +k1,4674:30135915,35009425:225717 +k1,4674:31966991,35009425:0 +) +(1,4675:7246811,35850913:24720180,513147,126483 +k1,4674:10840048,35850913:174224 +k1,4674:12527497,35850913:174223 +(1,4674:12527497,35850913:0,452978,115847 +r1,4675:15347746,35850913:2820249,568825,115847 +k1,4674:12527497,35850913:-2820249 +) +(1,4674:12527497,35850913:2820249,452978,115847 +k1,4674:12527497,35850913:3277 +h1,4674:15344469,35850913:0,411205,112570 +) +k1,4674:15521970,35850913:174224 +k1,4674:16227691,35850913:174224 +k1,4674:19235035,35850913:174223 +k1,4674:20481428,35850913:174224 +k1,4674:22698408,35850913:174223 +(1,4674:22698408,35850913:0,452978,115847 +r1,4675:25518657,35850913:2820249,568825,115847 +k1,4674:22698408,35850913:-2820249 +) +(1,4674:22698408,35850913:2820249,452978,115847 +k1,4674:22698408,35850913:3277 +h1,4674:25515380,35850913:0,411205,112570 +) +k1,4674:25692881,35850913:174224 +k1,4674:26398602,35850913:174224 +k1,4674:28614271,35850913:174223 +k1,4674:29474657,35850913:174224 +k1,4674:31966991,35850913:0 +) +(1,4675:7246811,36692401:24720180,513147,134348 +k1,4674:7974891,36692401:196583 +k1,4674:9237745,36692401:196583 +k1,4674:12797637,36692401:196584 +k1,4674:13622055,36692401:196583 +k1,4674:16623579,36692401:196583 +(1,4674:16623579,36692401:0,452978,115847 +r1,4675:18740404,36692401:2116825,568825,115847 +k1,4674:16623579,36692401:-2116825 +) +(1,4674:16623579,36692401:2116825,452978,115847 +k1,4674:16623579,36692401:3277 +h1,4674:18737127,36692401:0,411205,112570 +) +k1,4674:18936987,36692401:196583 +k1,4674:20325015,36692401:196583 +(1,4674:20325015,36692401:0,452978,115847 +r1,4675:23145264,36692401:2820249,568825,115847 +k1,4674:20325015,36692401:-2820249 +) +(1,4674:20325015,36692401:2820249,452978,115847 +k1,4674:20325015,36692401:3277 +h1,4674:23141987,36692401:0,411205,112570 +) +k1,4674:23515518,36692401:196584 +k1,4674:25450116,36692401:196583 +k1,4674:30320727,36692401:196583 +k1,4675:31966991,36692401:0 +) +(1,4675:7246811,37533889:24720180,505283,126483 +k1,4674:9153908,37533889:184811 +k1,4674:10623226,37533889:184812 +k1,4674:13300371,37533889:184811 +k1,4674:15168148,37533889:184812 +k1,4674:17189278,37533889:184811 +k1,4674:21894763,37533889:184811 +k1,4674:23098660,37533889:184812 +k1,4674:25004446,37533889:184811 +k1,4674:30599255,37533889:184812 +k1,4674:31315563,37533889:184811 +k1,4674:31966991,37533889:0 +) +(1,4675:7246811,38375377:24720180,513147,134348 +k1,4674:8700777,38375377:174048 +k1,4674:12274832,38375377:174047 +k1,4674:13100308,38375377:174048 +k1,4674:14293440,38375377:174047 +k1,4674:15559973,38375377:174048 +k1,4674:16401176,38375377:174047 +(1,4674:16401176,38375377:0,452978,115847 +r1,4675:18518001,38375377:2116825,568825,115847 +k1,4674:16401176,38375377:-2116825 +) +(1,4674:16401176,38375377:2116825,452978,115847 +k1,4674:16401176,38375377:3277 +h1,4674:18514724,38375377:0,411205,112570 +) +k1,4674:18692049,38375377:174048 +k1,4674:20057542,38375377:174048 +(1,4674:20057542,38375377:0,452978,115847 +r1,4675:22877791,38375377:2820249,568825,115847 +k1,4674:20057542,38375377:-2820249 +) +(1,4674:20057542,38375377:2820249,452978,115847 +k1,4674:20057542,38375377:3277 +h1,4674:22874514,38375377:0,411205,112570 +) +k1,4674:23051838,38375377:174047 +k1,4674:24613283,38375377:174048 +(1,4674:24613283,38375377:0,452978,115847 +r1,4675:27433532,38375377:2820249,568825,115847 +k1,4674:24613283,38375377:-2820249 +) +(1,4674:24613283,38375377:2820249,452978,115847 +k1,4674:24613283,38375377:3277 +h1,4674:27430255,38375377:0,411205,112570 +) +k1,4674:27607579,38375377:174047 +k1,4674:28973072,38375377:174048 +(1,4674:28973072,38375377:0,452978,115847 +r1,4675:31793321,38375377:2820249,568825,115847 +k1,4674:28973072,38375377:-2820249 +) +(1,4674:28973072,38375377:2820249,452978,115847 +k1,4674:28973072,38375377:3277 +h1,4674:31790044,38375377:0,411205,112570 +) +k1,4674:31966991,38375377:0 +) +(1,4675:7246811,39216865:24720180,513147,134348 +k1,4674:8612732,39216865:217075 +k1,4674:9489100,39216865:217076 +k1,4674:11402902,39216865:217075 +k1,4674:14645775,39216865:217076 +k1,4674:15929121,39216865:217075 +k1,4674:17521797,39216865:217075 +k1,4674:19459848,39216865:217076 +k1,4674:21705918,39216865:217075 +k1,4674:22995162,39216865:217075 +k1,4674:24498054,39216865:217076 +k1,4674:26761163,39216865:217075 +k1,4674:28474426,39216865:217076 +k1,4674:30341698,39216865:217075 +k1,4675:31966991,39216865:0 +) +(1,4675:7246811,40058353:24720180,505283,7863 +k1,4675:31966991,40058353:23237756 +g1,4675:31966991,40058353 +) +] +) +] +r1,4675:32583029,40656040:26214,34795159,0 +) +] +) +) +g1,4675:32583029,40066216 +) +h1,4675:6630773,40682254:0,0,0 +(1,4677:6630773,42773514:25952256,555811,147783 +(1,4677:6630773,42773514:2899444,534184,0 +g1,4677:6630773,42773514 +g1,4677:9530217,42773514 +) +g1,4677:14396266,42773514 +g1,4677:17708063,42773514 +g1,4677:19275291,42773514 +k1,4677:32583029,42773514:11517753 +g1,4677:32583029,42773514 +) +(1,4680:6630773,44008218:25952256,513147,134348 +k1,4679:8001598,44008218:174138 +k1,4679:9777437,44008218:174139 +k1,4679:11799690,44008218:174138 +k1,4679:13211804,44008218:174139 +k1,4679:14045234,44008218:174138 +k1,4679:17102957,44008218:174139 +k1,4679:18296180,44008218:174138 +k1,4679:20209645,44008218:174139 +k1,4679:21043075,44008218:174138 +k1,4679:23930405,44008218:174139 +k1,4679:26314417,44008218:174138 +k1,4679:28022754,44008218:174139 +k1,4679:28812930,44008218:174138 +k1,4679:30376432,44008218:174139 +k1,4679:32583029,44008218:0 +) +(1,4680:6630773,44849706:25952256,505283,134348 +k1,4679:8198394,44849706:169083 +k1,4679:11100983,44849706:169082 +k1,4679:12461511,44849706:169083 +k1,4679:14817530,44849706:169083 +k1,4679:15518109,44849706:169082 +k1,4679:16338620,44849706:169083 +k1,4679:17600188,44849706:169083 +k1,4679:21736165,44849706:169083 +k1,4679:22591409,44849706:169082 +k1,4679:25850515,44849706:169083 +k1,4679:28048593,44849706:169083 +k1,4679:29822652,44849706:169082 +k1,4679:30860087,44849706:169083 +k1,4679:32583029,44849706:0 +) +] +(1,4682:32583029,45706769:0,0,0 +g1,4682:32583029,45706769 +) +) +] +(1,4682:6630773,47279633:25952256,0,0 +h1,4682:6630773,47279633:25952256,0,0 ) ] -h1,4676:4262630,4025873:0,0,0 -] -!28513 +h1,4682:4262630,4025873:0,0,0 +] +!28448 }86 -Input:585:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:586:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:587:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:588:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:589:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:590:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:591:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:592:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:593:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:594:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:595:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:596:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:597:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 +Input:581:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:582:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:583:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:584:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:585:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:586:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:587:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:588:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:589:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:590:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:591:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:592:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:593:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1194 {87 -[1,4720:4262630,47279633:28320399,43253760,0 -(1,4720:4262630,4025873:0,0,0 -[1,4720:-473657,4025873:25952256,0,0 -(1,4720:-473657,-710414:25952256,0,0 -h1,4720:-473657,-710414:0,0,0 -(1,4720:-473657,-710414:0,0,0 -(1,4720:-473657,-710414:0,0,0 -g1,4720:-473657,-710414 -(1,4720:-473657,-710414:65781,0,65781 -g1,4720:-407876,-710414 -[1,4720:-407876,-644633:0,0,0 +[1,4726:4262630,47279633:28320399,43253760,0 +(1,4726:4262630,4025873:0,0,0 +[1,4726:-473657,4025873:25952256,0,0 +(1,4726:-473657,-710414:25952256,0,0 +h1,4726:-473657,-710414:0,0,0 +(1,4726:-473657,-710414:0,0,0 +(1,4726:-473657,-710414:0,0,0 +g1,4726:-473657,-710414 +(1,4726:-473657,-710414:65781,0,65781 +g1,4726:-407876,-710414 +[1,4726:-407876,-644633:0,0,0 ] ) -k1,4720:-473657,-710414:-65781 +k1,4726:-473657,-710414:-65781 ) ) -k1,4720:25478599,-710414:25952256 -g1,4720:25478599,-710414 +k1,4726:25478599,-710414:25952256 +g1,4726:25478599,-710414 ) ] ) -[1,4720:6630773,47279633:25952256,43253760,0 -[1,4720:6630773,4812305:25952256,786432,0 -(1,4720:6630773,4812305:25952256,505283,134348 -(1,4720:6630773,4812305:25952256,505283,134348 -g1,4720:3078558,4812305 -[1,4720:3078558,4812305:0,0,0 -(1,4720:3078558,2439708:0,1703936,0 -k1,4720:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4720:2537886,2439708:1179648,16384,0 +[1,4726:6630773,47279633:25952256,43253760,0 +[1,4726:6630773,4812305:25952256,786432,0 +(1,4726:6630773,4812305:25952256,505283,134348 +(1,4726:6630773,4812305:25952256,505283,134348 +g1,4726:3078558,4812305 +[1,4726:3078558,4812305:0,0,0 +(1,4726:3078558,2439708:0,1703936,0 +k1,4726:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4726:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4720:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4726:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4720:3078558,4812305:0,0,0 -(1,4720:3078558,2439708:0,1703936,0 -g1,4720:29030814,2439708 -g1,4720:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4720:36151628,1915420:16384,1179648,0 +[1,4726:3078558,4812305:0,0,0 +(1,4726:3078558,2439708:0,1703936,0 +g1,4726:29030814,2439708 +g1,4726:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4726:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4720:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4726:37855564,2439708:1179648,16384,0 ) ) -k1,4720:3078556,2439708:-34777008 +k1,4726:3078556,2439708:-34777008 ) ] -[1,4720:3078558,4812305:0,0,0 -(1,4720:3078558,49800853:0,16384,2228224 -k1,4720:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4720:2537886,49800853:1179648,16384,0 +[1,4726:3078558,4812305:0,0,0 +(1,4726:3078558,49800853:0,16384,2228224 +k1,4726:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4726:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4720:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4726:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4720:3078558,4812305:0,0,0 -(1,4720:3078558,49800853:0,16384,2228224 -g1,4720:29030814,49800853 -g1,4720:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4720:36151628,51504789:16384,1179648,0 +[1,4726:3078558,4812305:0,0,0 +(1,4726:3078558,49800853:0,16384,2228224 +g1,4726:29030814,49800853 +g1,4726:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4726:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4720:37855564,49800853:1179648,16384,0 -) -) -k1,4720:3078556,49800853:-34777008 -) -] -g1,4720:6630773,4812305 -k1,4720:19562994,4812305:12135303 -g1,4720:20949735,4812305 -g1,4720:21598541,4812305 -g1,4720:24912696,4812305 -g1,4720:27600327,4812305 -g1,4720:29010006,4812305 -) -) -] -[1,4720:6630773,45706769:25952256,40108032,0 -(1,4720:6630773,45706769:25952256,40108032,0 -(1,4720:6630773,45706769:0,0,0 -g1,4720:6630773,45706769 -) -[1,4720:6630773,45706769:25952256,40108032,0 -(1,4674:6630773,6254097:25952256,505283,134348 -k1,4673:7920631,6254097:270773 -k1,4673:10626721,6254097:270772 -k1,4673:13511725,6254097:270773 -k1,4673:14973943,6254097:270773 -k1,4673:17124288,6254097:270772 -k1,4673:20009292,6254097:270773 -k1,4673:21148417,6254097:270773 -k1,4673:22523471,6254097:270772 -k1,4673:23886729,6254097:270773 -k1,4673:27338620,6254097:270773 -k1,4673:30036190,6254097:270772 -k1,4673:31116333,6254097:270773 -k1,4673:32583029,6254097:0 -) -(1,4674:6630773,7095585:25952256,513147,134348 -g1,4673:10184790,7095585 -g1,4673:11683598,7095585 -g1,4673:13074272,7095585 -g1,4673:16166916,7095585 -g1,4673:17665724,7095585 -g1,4673:18524245,7095585 -g1,4673:19494177,7095585 -k1,4674:32583029,7095585:9269414 -g1,4674:32583029,7095585 -) -v1,4676:6630773,8430080:0,393216,0 -(1,4677:6630773,12397250:25952256,4360386,616038 -g1,4677:6630773,12397250 -(1,4677:6630773,12397250:25952256,4360386,616038 -(1,4677:6630773,13013288:25952256,4976424,0 -[1,4677:6630773,13013288:25952256,4976424,0 -(1,4677:6630773,12987074:25952256,4923996,0 -r1,4677:6656987,12987074:26214,4923996,0 -[1,4677:6656987,12987074:25899828,4923996,0 -(1,4677:6656987,12397250:25899828,3744348,0 -[1,4677:7246811,12397250:24720180,3744348,0 -(1,4677:7246811,9738438:24720180,1085536,298548 -(1,4676:7246811,9738438:0,1085536,298548 -r1,4677:8753226,9738438:1506415,1384084,298548 -k1,4676:7246811,9738438:-1506415 -) -(1,4676:7246811,9738438:1506415,1085536,298548 -) -k1,4676:9036166,9738438:282940 -k1,4676:11102340,9738438:282939 -k1,4676:13120673,9738438:282940 -k1,4676:14422698,9738438:282940 -k1,4676:17920179,9738438:282940 -k1,4676:20949732,9738438:282939 -(1,4676:20949732,9738438:0,452978,115847 -r1,4677:21659710,9738438:709978,568825,115847 -k1,4676:20949732,9738438:-709978 -) -(1,4676:20949732,9738438:709978,452978,115847 -k1,4676:20949732,9738438:3277 -h1,4676:21656433,9738438:0,411205,112570 -) -k1,4676:21942650,9738438:282940 -k1,4676:23034960,9738438:282940 -k1,4676:24784596,9738438:282940 -k1,4676:26086620,9738438:282939 -k1,4676:30775546,9738438:282940 -k1,4676:31966991,9738438:0 -) -(1,4677:7246811,10579926:24720180,513147,134348 -k1,4676:12274316,10579926:160146 -k1,4676:13085890,10579926:160146 -k1,4676:14873950,10579926:160146 -k1,4676:17920957,10579926:160146 -k1,4676:19100188,10579926:160146 -k1,4676:21568513,10579926:160147 -k1,4676:22411544,10579926:160146 -k1,4676:24795982,10579926:160146 -k1,4676:25947688,10579926:160146 -k1,4676:29098242,10579926:160146 -k1,4676:30947906,10579926:160146 -k1,4676:31966991,10579926:0 -) -(1,4677:7246811,11421414:24720180,513147,126483 -k1,4676:9535782,11421414:220655 -k1,4676:10415728,11421414:220654 -k1,4676:11655468,11421414:220655 -k1,4676:14589314,11421414:220655 -k1,4676:15801528,11421414:220654 -k1,4676:17262124,11421414:220655 -k1,4676:18679466,11421414:220655 -k1,4676:20553594,11421414:220655 -k1,4676:23055556,11421414:220654 -k1,4676:23927639,11421414:220655 -k1,4676:25352190,11421414:220655 -k1,4676:27814831,11421414:220654 -k1,4676:29920957,11421414:220655 -k1,4676:31966991,11421414:0 -) -(1,4677:7246811,12262902:24720180,513147,134348 -g1,4676:9706377,12262902 -g1,4676:13114904,12262902 -g1,4676:17121119,12262902 -g1,4676:17936386,12262902 -g1,4676:19774670,12262902 -g1,4676:24072521,12262902 -g1,4676:25463195,12262902 -g1,4676:27269367,12262902 -k1,4677:31966991,12262902:2658144 -g1,4677:31966991,12262902 -) -] -) -] -r1,4677:32583029,12987074:26214,4923996,0 -) -] -) -) -g1,4677:32583029,12397250 -) -h1,4677:6630773,13013288:0,0,0 -(1,4681:6630773,14172473:25952256,513147,134348 -h1,4679:6630773,14172473:983040,0,0 -k1,4679:8594332,14172473:151489 -k1,4679:10610320,14172473:151489 -k1,4679:11780894,14172473:151489 -k1,4679:14175025,14172473:151489 -k1,4679:16707437,14172473:151489 -k1,4679:18372152,14172473:151489 -k1,4679:19542725,14172473:151488 -k1,4679:22077103,14172473:151489 -k1,4679:24030177,14172473:151489 -k1,4679:25050018,14172473:151489 -k1,4679:26731773,14172473:151489 -k1,4679:27534690,14172473:151489 -k1,4679:30955115,14172473:151489 -k1,4679:32583029,14172473:0 -) -(1,4681:6630773,14838651:25952256,513147,7863 -g1,4679:7849087,14838651 -g1,4679:10116632,14838651 -g1,4679:10975153,14838651 -g1,4679:12193467,14838651 -g1,4679:15279557,14838651 -k1,4681:32583029,14838651:17303472 -g1,4681:32583029,14838651 -) -v1,4681:6630773,15997836:0,393216,0 -(1,4709:6630773,27055002:25952256,11450382,196608 -g1,4709:6630773,27055002 -g1,4709:6630773,27055002 -g1,4709:6434165,27055002 -(1,4709:6434165,27055002:0,11450382,196608 -r1,4709:32779637,27055002:26345472,11646990,196608 -k1,4709:6434165,27055002:-26345472 -) -(1,4709:6434165,27055002:26345472,11450382,196608 -[1,4709:6630773,27055002:25952256,11253774,0 -(1,4683:6630773,16211746:25952256,410518,101187 -(1,4682:6630773,16211746:0,0,0 -g1,4682:6630773,16211746 -g1,4682:6630773,16211746 -g1,4682:6303093,16211746 -(1,4682:6303093,16211746:0,0,0 -) -g1,4682:6630773,16211746 -) -g1,4683:12005250,16211746 -g1,4683:12953688,16211746 -g1,4683:17063583,16211746 -g1,4683:17695875,16211746 -g1,4683:19592750,16211746 -g1,4683:20225042,16211746 -g1,4683:20857334,16211746 -h1,4683:21489626,16211746:0,0,0 -k1,4683:32583029,16211746:11093403 -g1,4683:32583029,16211746 -) -(1,4684:6630773,16877924:25952256,410518,101187 -h1,4684:6630773,16877924:0,0,0 -g1,4684:13902125,16877924 -h1,4684:14534417,16877924:0,0,0 -k1,4684:32583029,16877924:18048612 -g1,4684:32583029,16877924 -) -(1,4690:6630773,17609638:25952256,379060,0 -(1,4686:6630773,17609638:0,0,0 -g1,4686:6630773,17609638 -g1,4686:6630773,17609638 -g1,4686:6303093,17609638 -(1,4686:6303093,17609638:0,0,0 -) -g1,4686:6630773,17609638 -) -g1,4690:7579210,17609638 -g1,4690:7895356,17609638 -g1,4690:8211502,17609638 -g1,4690:8843794,17609638 -h1,4690:9159940,17609638:0,0,0 -k1,4690:32583028,17609638:23423088 -g1,4690:32583028,17609638 -) -(1,4690:6630773,18275816:25952256,388497,9436 -h1,4690:6630773,18275816:0,0,0 -g1,4690:7579210,18275816 -g1,4690:8211502,18275816 -g1,4690:8843794,18275816 -h1,4690:9159940,18275816:0,0,0 -k1,4690:32583028,18275816:23423088 -g1,4690:32583028,18275816 -) -(1,4690:6630773,18941994:25952256,388497,9436 -h1,4690:6630773,18941994:0,0,0 -g1,4690:7579210,18941994 -g1,4690:8211502,18941994 -g1,4690:8843794,18941994 -h1,4690:9159940,18941994:0,0,0 -k1,4690:32583028,18941994:23423088 -g1,4690:32583028,18941994 -) -(1,4692:6630773,20263532:25952256,410518,101187 -(1,4691:6630773,20263532:0,0,0 -g1,4691:6630773,20263532 -g1,4691:6630773,20263532 -g1,4691:6303093,20263532 -(1,4691:6303093,20263532:0,0,0 -) -g1,4691:6630773,20263532 -) -g1,4692:12321396,20263532 -g1,4692:12953688,20263532 -g1,4692:14534418,20263532 -g1,4692:15482856,20263532 -g1,4692:21173479,20263532 -g1,4692:21805771,20263532 -h1,4692:23070355,20263532:0,0,0 -k1,4692:32583029,20263532:9512674 -g1,4692:32583029,20263532 -) -(1,4693:6630773,20929710:25952256,410518,101187 -h1,4693:6630773,20929710:0,0,0 -g1,4693:13902125,20929710 -h1,4693:14534417,20929710:0,0,0 -k1,4693:32583029,20929710:18048612 -g1,4693:32583029,20929710 -) -(1,4699:6630773,21661424:25952256,379060,0 -(1,4695:6630773,21661424:0,0,0 -g1,4695:6630773,21661424 -g1,4695:6630773,21661424 -g1,4695:6303093,21661424 -(1,4695:6303093,21661424:0,0,0 -) -g1,4695:6630773,21661424 -) -g1,4699:7579210,21661424 -g1,4699:7895356,21661424 -g1,4699:8211502,21661424 -g1,4699:8843794,21661424 -h1,4699:9159940,21661424:0,0,0 -k1,4699:32583028,21661424:23423088 -g1,4699:32583028,21661424 -) -(1,4699:6630773,22327602:25952256,388497,9436 -h1,4699:6630773,22327602:0,0,0 -g1,4699:7579210,22327602 -g1,4699:8211502,22327602 -g1,4699:8843794,22327602 -h1,4699:9159940,22327602:0,0,0 -k1,4699:32583028,22327602:23423088 -g1,4699:32583028,22327602 -) -(1,4699:6630773,22993780:25952256,388497,9436 -h1,4699:6630773,22993780:0,0,0 -g1,4699:7579210,22993780 -g1,4699:8211502,22993780 -g1,4699:8843794,22993780 -h1,4699:9159940,22993780:0,0,0 -k1,4699:32583028,22993780:23423088 -g1,4699:32583028,22993780 -) -(1,4701:6630773,24315318:25952256,410518,101187 -(1,4700:6630773,24315318:0,0,0 -g1,4700:6630773,24315318 -g1,4700:6630773,24315318 -g1,4700:6303093,24315318 -(1,4700:6303093,24315318:0,0,0 -) -g1,4700:6630773,24315318 -) -k1,4701:6630773,24315318:0 -g1,4701:16747436,24315318 -g1,4701:17695874,24315318 -k1,4701:17695874,24315318:0 -h1,4701:27496391,24315318:0,0,0 -k1,4701:32583029,24315318:5086638 -g1,4701:32583029,24315318 -) -(1,4702:6630773,24981496:25952256,410518,101187 -h1,4702:6630773,24981496:0,0,0 -g1,4702:13902125,24981496 -h1,4702:14534417,24981496:0,0,0 -k1,4702:32583029,24981496:18048612 -g1,4702:32583029,24981496 -) -(1,4708:6630773,25713210:25952256,379060,0 -(1,4704:6630773,25713210:0,0,0 -g1,4704:6630773,25713210 -g1,4704:6630773,25713210 -g1,4704:6303093,25713210 -(1,4704:6303093,25713210:0,0,0 -) -g1,4704:6630773,25713210 -) -g1,4708:7579210,25713210 -g1,4708:7895356,25713210 -g1,4708:8211502,25713210 -g1,4708:8843794,25713210 -h1,4708:9159940,25713210:0,0,0 -k1,4708:32583028,25713210:23423088 -g1,4708:32583028,25713210 -) -(1,4708:6630773,26379388:25952256,388497,9436 -h1,4708:6630773,26379388:0,0,0 -g1,4708:7579210,26379388 -g1,4708:8211502,26379388 -g1,4708:8843794,26379388 -h1,4708:9159940,26379388:0,0,0 -k1,4708:32583028,26379388:23423088 -g1,4708:32583028,26379388 -) -(1,4708:6630773,27045566:25952256,388497,9436 -h1,4708:6630773,27045566:0,0,0 -g1,4708:7579210,27045566 -g1,4708:8211502,27045566 -g1,4708:8843794,27045566 -h1,4708:9159940,27045566:0,0,0 -k1,4708:32583028,27045566:23423088 -g1,4708:32583028,27045566 -) -] -) -g1,4709:32583029,27055002 -g1,4709:6630773,27055002 -g1,4709:6630773,27055002 -g1,4709:32583029,27055002 -g1,4709:32583029,27055002 -) -h1,4709:6630773,27251610:0,0,0 -(1,4713:6630773,28586105:25952256,505283,134348 -h1,4712:6630773,28586105:983040,0,0 -k1,4712:10031235,28586105:244248 -k1,4712:11542948,28586105:244247 -k1,4712:14291327,28586105:244248 -k1,4712:15820081,28586105:244248 -(1,4712:15820081,28586105:0,452978,115847 -r1,4712:18288618,28586105:2468537,568825,115847 -k1,4712:15820081,28586105:-2468537 -) -(1,4712:15820081,28586105:2468537,452978,115847 -k1,4712:15820081,28586105:3277 -h1,4712:18285341,28586105:0,411205,112570 -) -k1,4712:18532865,28586105:244247 -k1,4712:21118059,28586105:244248 -k1,4712:22381392,28586105:244248 -k1,4712:25052437,28586105:244247 -k1,4712:27595033,28586105:244248 -k1,4712:28490709,28586105:244248 -k1,4712:30005044,28586105:244247 -k1,4712:30605152,28586105:244248 -k1,4712:32583029,28586105:0 -) -(1,4713:6630773,29427593:25952256,505283,134348 -k1,4712:8120374,29427593:257524 -k1,4712:9876051,29427593:257524 -h1,4712:10672969,29427593:0,0,0 -k1,4712:11311257,29427593:257524 -k1,4712:12437133,29427593:257524 -k1,4712:13798939,29427593:257524 -k1,4712:15148948,29427593:257524 -(1,4712:15148948,29427593:0,452978,115847 -r1,4712:17617485,29427593:2468537,568825,115847 -k1,4712:15148948,29427593:-2468537 -) -(1,4712:15148948,29427593:2468537,452978,115847 -k1,4712:15148948,29427593:3277 -h1,4712:17614208,29427593:0,411205,112570 -) -k1,4712:17875010,29427593:257525 -k1,4712:18783962,29427593:257524 -k1,4712:21773682,29427593:257524 -k1,4712:23050291,29427593:257524 -k1,4712:25734613,29427593:257524 -k1,4712:28290485,29427593:257524 -k1,4712:29199437,29427593:257524 -k1,4712:30727049,29427593:257524 -k1,4712:32583029,29427593:0 -) -(1,4713:6630773,30269081:25952256,513147,134348 -k1,4712:9610302,30269081:266338 -k1,4712:10559525,30269081:266338 -k1,4712:12360062,30269081:266339 -k1,4712:13285692,30269081:266338 -k1,4712:13907890,30269081:266338 -k1,4712:15563591,30269081:266338 -k1,4712:17879895,30269081:266338 -k1,4712:19929469,30269081:266339 -k1,4712:21064159,30269081:266338 -k1,4712:22879113,30269081:266338 -k1,4712:23796879,30269081:266338 -k1,4712:25333305,30269081:266338 -k1,4712:27307512,30269081:266339 -k1,4712:28592935,30269081:266338 -k1,4712:31931601,30269081:266338 -k1,4713:32583029,30269081:0 -) -(1,4713:6630773,31110569:25952256,513147,134348 -(1,4712:6630773,31110569:0,452978,115847 -r1,4712:9099310,31110569:2468537,568825,115847 -k1,4712:6630773,31110569:-2468537 -) -(1,4712:6630773,31110569:2468537,452978,115847 -k1,4712:6630773,31110569:3277 -h1,4712:9096033,31110569:0,411205,112570 -) -k1,4712:9322955,31110569:223645 -k1,4712:10078096,31110569:223644 -k1,4712:12588948,31110569:223645 -k1,4712:13168452,31110569:223644 -k1,4712:15774986,31110569:223645 -k1,4712:16657923,31110569:223645 -k1,4712:17900652,31110569:223644 -k1,4712:19513660,31110569:223645 -k1,4712:21613601,31110569:223645 -k1,4712:23575260,31110569:223644 -k1,4712:26818149,31110569:223645 -k1,4712:29976495,31110569:223644 -k1,4712:31331947,31110569:223645 -k1,4713:32583029,31110569:0 -) -(1,4713:6630773,31952057:25952256,513147,134348 -k1,4712:7799561,31952057:229002 -k1,4712:8687854,31952057:229001 -k1,4712:11428851,31952057:229002 -k1,4712:13844788,31952057:229001 -k1,4712:17054367,31952057:229002 -k1,4712:18302453,31952057:229001 -k1,4712:20374327,31952057:229002 -k1,4712:21262621,31952057:229002 -k1,4712:24245445,31952057:229001 -k1,4712:24830307,31952057:229002 -k1,4712:27754804,31952057:229001 -k1,4712:28635234,31952057:229002 -k1,4712:30020945,31952057:229001 -k1,4712:30932832,31952057:229002 -k1,4712:32583029,31952057:0 -) -(1,4713:6630773,32793545:25952256,505283,134348 -g1,4712:9716863,32793545 -g1,4712:11020374,32793545 -g1,4712:11967369,32793545 -g1,4712:14371885,32793545 -g1,4712:15257276,32793545 -g1,4712:16227208,32793545 -g1,4712:19498765,32793545 -g1,4712:20349422,32793545 -(1,4712:20349422,32793545:0,452978,115847 -r1,4712:22817959,32793545:2468537,568825,115847 -k1,4712:20349422,32793545:-2468537 -) -(1,4712:20349422,32793545:2468537,452978,115847 -k1,4712:20349422,32793545:3277 -h1,4712:22814682,32793545:0,411205,112570 -) -k1,4713:32583029,32793545:9591400 -g1,4713:32583029,32793545 -) -v1,4714:6630773,34128040:0,393216,0 -(1,4716:6630773,41463000:25952256,7728176,616038 -g1,4716:6630773,41463000 -(1,4716:6630773,41463000:25952256,7728176,616038 -(1,4716:6630773,42079038:25952256,8344214,0 -[1,4716:6630773,42079038:25952256,8344214,0 -(1,4716:6630773,42052824:25952256,8291786,0 -r1,4716:6656987,42052824:26214,8291786,0 -[1,4716:6656987,42052824:25899828,8291786,0 -(1,4716:6656987,41463000:25899828,7112138,0 -[1,4716:7246811,41463000:24720180,7112138,0 -(1,4716:7246811,35438236:24720180,1087374,126483 -k1,4714:8653906,35438236:197392 -k1,4714:8653906,35438236:0 -k1,4715:10047985,35438236:197392 -k1,4715:11551510,35438236:197392 -k1,4715:13084525,35438236:197391 -k1,4715:13933345,35438236:197392 -k1,4715:14878503,35438236:197392 -k1,4715:18422163,35438236:197392 -k1,4715:19151052,35438236:197392 -k1,4715:19999872,35438236:197392 -k1,4715:21467352,35438236:197392 -k1,4715:22020604,35438236:197392 -k1,4715:23607358,35438236:197391 -k1,4715:25681046,35438236:197392 -k1,4715:27733107,35438236:197392 -k1,4715:28739869,35438236:197392 -k1,4715:29956346,35438236:197392 -k1,4715:31966991,35438236:0 -) -(1,4716:7246811,36279724:24720180,513147,134348 -k1,4715:8058313,36279724:195464 -k1,4715:9410488,36279724:195465 -k1,4715:12162511,36279724:195464 -k1,4715:14093368,36279724:195464 -k1,4715:17028238,36279724:195465 -k1,4715:18415147,36279724:195464 -(1,4715:18415147,36279724:0,452978,115847 -r1,4716:20883684,36279724:2468537,568825,115847 -k1,4715:18415147,36279724:-2468537 -) -(1,4715:18415147,36279724:2468537,452978,115847 -k1,4715:18415147,36279724:3277 -h1,4715:20880407,36279724:0,411205,112570 -) -k1,4715:21252818,36279724:195464 -k1,4715:23499559,36279724:195464 -k1,4715:24050884,36279724:195465 -k1,4715:25529543,36279724:195464 -k1,4715:27114370,36279724:195464 -k1,4715:29186131,36279724:195465 -k1,4715:30573040,36279724:195464 -k1,4715:31966991,36279724:0 -) -(1,4716:7246811,37121212:24720180,513147,126483 -k1,4715:9167161,37121212:265566 -k1,4715:12052857,37121212:265567 -k1,4715:15031614,37121212:265566 -k1,4715:16691131,37121212:265566 -k1,4715:18611482,37121212:265567 -k1,4715:21639391,37121212:265566 -k1,4715:25322004,37121212:265566 -k1,4715:28857818,37121212:265567 -k1,4715:29782676,37121212:265566 -k1,4715:31966991,37121212:0 -) -(1,4716:7246811,37962700:24720180,513147,115847 -k1,4715:8706567,37962700:238165 -k1,4715:10641459,37962700:238165 -k1,4715:13592815,37962700:238165 -(1,4715:13592815,37962700:0,414482,115847 -r1,4716:13951081,37962700:358266,530329,115847 -k1,4715:13592815,37962700:-358266 -) -(1,4715:13592815,37962700:358266,414482,115847 -k1,4715:13592815,37962700:3277 -h1,4715:13947804,37962700:0,411205,112570 -) -k1,4715:14362916,37962700:238165 -(1,4715:14362916,37962700:0,414482,115847 -r1,4716:14721182,37962700:358266,530329,115847 -k1,4715:14362916,37962700:-358266 -) -(1,4715:14362916,37962700:358266,414482,115847 -k1,4715:14362916,37962700:3277 -h1,4715:14717905,37962700:0,411205,112570 -) -k1,4715:14959347,37962700:238165 -k1,4715:16388957,37962700:238165 -(1,4715:16388957,37962700:0,414482,115847 -r1,4716:16747223,37962700:358266,530329,115847 -k1,4715:16388957,37962700:-358266 -) -(1,4715:16388957,37962700:358266,414482,115847 -k1,4715:16388957,37962700:3277 -h1,4715:16743946,37962700:0,411205,112570 -) -k1,4715:17159058,37962700:238165 -k1,4715:18002776,37962700:238165 -k1,4715:19535933,37962700:238166 -k1,4715:20793183,37962700:238165 -k1,4715:22565546,37962700:238165 -k1,4715:23463003,37962700:238165 -k1,4715:24720253,37962700:238165 -k1,4715:26347781,37962700:238165 -k1,4715:28462242,37962700:238165 -k1,4715:29425235,37962700:238165 -k1,4715:30947906,37962700:238165 -k1,4715:31966991,37962700:0 -) -(1,4716:7246811,38804188:24720180,513147,134348 -k1,4715:9409863,38804188:152407 -k1,4715:10178309,38804188:152408 -(1,4715:10178309,38804188:0,414482,115847 -r1,4716:10536575,38804188:358266,530329,115847 -k1,4715:10178309,38804188:-358266 -) -(1,4715:10178309,38804188:358266,414482,115847 -k1,4715:10178309,38804188:3277 -h1,4715:10533298,38804188:0,411205,112570 -) -k1,4715:10688982,38804188:152407 -k1,4715:11832950,38804188:152408 -k1,4715:12601395,38804188:152407 -k1,4715:16167573,38804188:152408 -k1,4715:18232976,38804188:152407 -k1,4715:18990937,38804188:152408 -k1,4715:20438335,38804188:152407 -k1,4715:21609828,38804188:152408 -k1,4715:23296433,38804188:152407 -k1,4715:24108133,38804188:152408 -k1,4715:25279625,38804188:152407 -k1,4715:26821395,38804188:152407 -k1,4715:28850099,38804188:152408 -k1,4715:31966991,38804188:0 -) -(1,4716:7246811,39645676:24720180,513147,134348 -k1,4715:8075582,39645676:177343 -k1,4715:11514651,39645676:177342 -k1,4715:13702639,39645676:177343 -k1,4715:14539274,39645676:177343 -k1,4715:15735702,39645676:177343 -k1,4715:17278159,39645676:177342 -k1,4715:18122658,39645676:177343 -(1,4715:18122658,39645676:0,414482,115847 -r1,4716:18480924,39645676:358266,530329,115847 -k1,4715:18122658,39645676:-358266 -) -(1,4715:18122658,39645676:358266,414482,115847 -k1,4715:18122658,39645676:3277 -h1,4715:18477647,39645676:0,411205,112570 -) -k1,4715:18658267,39645676:177343 -k1,4715:20027055,39645676:177343 -(1,4715:20027055,39645676:0,414482,115847 -r1,4716:20385321,39645676:358266,530329,115847 -k1,4715:20027055,39645676:-358266 -) -(1,4715:20027055,39645676:358266,414482,115847 -k1,4715:20027055,39645676:3277 -h1,4715:20382044,39645676:0,411205,112570 -) -k1,4715:20562663,39645676:177342 -k1,4715:23200228,39645676:177343 -k1,4715:25565163,39645676:177343 -k1,4715:26098366,39645676:177343 -k1,4715:27558903,39645676:177342 -k1,4715:30119135,39645676:177343 -k1,4715:30947906,39645676:177343 -k1,4715:31966991,39645676:0 -) -(1,4716:7246811,40487164:24720180,513147,134348 -k1,4715:8850171,40487164:213997 -k1,4715:10940464,40487164:213997 -k1,4715:11837346,40487164:213997 -k1,4715:14311680,40487164:213997 -k1,4715:15544762,40487164:213997 -k1,4715:17736636,40487164:213997 -k1,4715:18609925,40487164:213997 -k1,4715:20519337,40487164:213996 -k1,4715:21349372,40487164:213997 -k1,4715:21919229,40487164:213997 -k1,4715:24818236,40487164:213997 -k1,4715:25660068,40487164:213997 -k1,4715:27576035,40487164:213997 -k1,4715:29918641,40487164:213997 -k1,4715:30947906,40487164:213997 -k1,4715:31966991,40487164:0 -) -(1,4716:7246811,41328652:24720180,513147,134348 -g1,4715:9706377,41328652 -g1,4715:11760275,41328652 -g1,4715:12768874,41328652 -g1,4715:14663519,41328652 -g1,4715:18091707,41328652 -g1,4715:19100306,41328652 -g1,4715:20318620,41328652 -k1,4716:31966991,41328652:10679094 -g1,4716:31966991,41328652 -) -] -) -] -r1,4716:32583029,42052824:26214,8291786,0 -) -] -) -) -g1,4716:32583029,41463000 -) -h1,4716:6630773,42079038:0,0,0 -v1,4718:6630773,43413533:0,393216,0 -(1,4720:6630773,45116945:25952256,2096628,589824 -g1,4720:6630773,45116945 -(1,4720:6630773,45116945:25952256,2096628,589824 -(1,4720:6630773,45706769:25952256,2686452,0 -[1,4720:6630773,45706769:25952256,2686452,0 -(1,4720:6630773,45706769:25952256,2660238,0 -r1,4720:6656987,45706769:26214,2660238,0 -[1,4720:6656987,45706769:25899828,2660238,0 -(1,4720:6656987,45116945:25899828,1480590,0 -[1,4720:7246811,45116945:24720180,1480590,0 -(1,4720:7246811,44920337:24720180,1283982,196608 -(1,4718:7246811,44920337:0,1283982,196608 -r1,4720:9812056,44920337:2565245,1480590,196608 -k1,4718:7246811,44920337:-2565245 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4726:37855564,49800853:1179648,16384,0 +) +) +k1,4726:3078556,49800853:-34777008 +) +] +g1,4726:6630773,4812305 +k1,4726:19515153,4812305:12087462 +g1,4726:20901894,4812305 +g1,4726:21550700,4812305 +g1,4726:24864855,4812305 +g1,4726:27600327,4812305 +g1,4726:29010006,4812305 +) +) +] +[1,4726:6630773,45706769:25952256,40108032,0 +(1,4726:6630773,45706769:25952256,40108032,0 +(1,4726:6630773,45706769:0,0,0 +g1,4726:6630773,45706769 +) +[1,4726:6630773,45706769:25952256,40108032,0 +(1,4680:6630773,6254097:25952256,505283,134348 +k1,4679:7920631,6254097:270773 +k1,4679:10626721,6254097:270772 +k1,4679:13511725,6254097:270773 +k1,4679:14973943,6254097:270773 +k1,4679:17124288,6254097:270772 +k1,4679:20009292,6254097:270773 +k1,4679:21148417,6254097:270773 +k1,4679:22523471,6254097:270772 +k1,4679:23886729,6254097:270773 +k1,4679:27338620,6254097:270773 +k1,4679:30036190,6254097:270772 +k1,4679:31116333,6254097:270773 +k1,4679:32583029,6254097:0 +) +(1,4680:6630773,7095585:25952256,513147,134348 +g1,4679:10184790,7095585 +g1,4679:11683598,7095585 +g1,4679:13074272,7095585 +g1,4679:16166916,7095585 +g1,4679:17665724,7095585 +g1,4679:18524245,7095585 +g1,4679:19494177,7095585 +k1,4680:32583029,7095585:9269414 +g1,4680:32583029,7095585 +) +v1,4682:6630773,8430080:0,393216,0 +(1,4683:6630773,12397250:25952256,4360386,616038 +g1,4683:6630773,12397250 +(1,4683:6630773,12397250:25952256,4360386,616038 +(1,4683:6630773,13013288:25952256,4976424,0 +[1,4683:6630773,13013288:25952256,4976424,0 +(1,4683:6630773,12987074:25952256,4923996,0 +r1,4683:6656987,12987074:26214,4923996,0 +[1,4683:6656987,12987074:25899828,4923996,0 +(1,4683:6656987,12397250:25899828,3744348,0 +[1,4683:7246811,12397250:24720180,3744348,0 +(1,4683:7246811,9738438:24720180,1085536,298548 +(1,4682:7246811,9738438:0,1085536,298548 +r1,4683:8753226,9738438:1506415,1384084,298548 +k1,4682:7246811,9738438:-1506415 +) +(1,4682:7246811,9738438:1506415,1085536,298548 +) +k1,4682:9036166,9738438:282940 +k1,4682:11102340,9738438:282939 +k1,4682:13120673,9738438:282940 +k1,4682:14422698,9738438:282940 +k1,4682:17920179,9738438:282940 +k1,4682:20949732,9738438:282939 +(1,4682:20949732,9738438:0,452978,115847 +r1,4683:21659710,9738438:709978,568825,115847 +k1,4682:20949732,9738438:-709978 +) +(1,4682:20949732,9738438:709978,452978,115847 +k1,4682:20949732,9738438:3277 +h1,4682:21656433,9738438:0,411205,112570 +) +k1,4682:21942650,9738438:282940 +k1,4682:23034960,9738438:282940 +k1,4682:24784596,9738438:282940 +k1,4682:26086620,9738438:282939 +k1,4682:30775546,9738438:282940 +k1,4682:31966991,9738438:0 +) +(1,4683:7246811,10579926:24720180,513147,134348 +k1,4682:12274316,10579926:160146 +k1,4682:13085890,10579926:160146 +k1,4682:14873950,10579926:160146 +k1,4682:17920957,10579926:160146 +k1,4682:19100188,10579926:160146 +k1,4682:21568513,10579926:160147 +k1,4682:22411544,10579926:160146 +k1,4682:24795982,10579926:160146 +k1,4682:25947688,10579926:160146 +k1,4682:29098242,10579926:160146 +k1,4682:30947906,10579926:160146 +k1,4682:31966991,10579926:0 +) +(1,4683:7246811,11421414:24720180,513147,126483 +k1,4682:9535782,11421414:220655 +k1,4682:10415728,11421414:220654 +k1,4682:11655468,11421414:220655 +k1,4682:14589314,11421414:220655 +k1,4682:15801528,11421414:220654 +k1,4682:17262124,11421414:220655 +k1,4682:18679466,11421414:220655 +k1,4682:20553594,11421414:220655 +k1,4682:23055556,11421414:220654 +k1,4682:23927639,11421414:220655 +k1,4682:25352190,11421414:220655 +k1,4682:27814831,11421414:220654 +k1,4682:29920957,11421414:220655 +k1,4682:31966991,11421414:0 +) +(1,4683:7246811,12262902:24720180,513147,134348 +g1,4682:9706377,12262902 +g1,4682:13114904,12262902 +g1,4682:17121119,12262902 +g1,4682:17936386,12262902 +g1,4682:19774670,12262902 +g1,4682:24072521,12262902 +g1,4682:25463195,12262902 +g1,4682:27269367,12262902 +k1,4683:31966991,12262902:2658144 +g1,4683:31966991,12262902 +) +] +) +] +r1,4683:32583029,12987074:26214,4923996,0 +) +] +) +) +g1,4683:32583029,12397250 +) +h1,4683:6630773,13013288:0,0,0 +(1,4687:6630773,14172473:25952256,513147,134348 +h1,4685:6630773,14172473:983040,0,0 +k1,4685:8594332,14172473:151489 +k1,4685:10610320,14172473:151489 +k1,4685:11780894,14172473:151489 +k1,4685:14175025,14172473:151489 +k1,4685:16707437,14172473:151489 +k1,4685:18372152,14172473:151489 +k1,4685:19542725,14172473:151488 +k1,4685:22077103,14172473:151489 +k1,4685:24030177,14172473:151489 +k1,4685:25050018,14172473:151489 +k1,4685:26731773,14172473:151489 +k1,4685:27534690,14172473:151489 +k1,4685:30955115,14172473:151489 +k1,4685:32583029,14172473:0 +) +(1,4687:6630773,14838651:25952256,513147,7863 +g1,4685:7849087,14838651 +g1,4685:10116632,14838651 +g1,4685:10975153,14838651 +g1,4685:12193467,14838651 +g1,4685:15279557,14838651 +k1,4687:32583029,14838651:17303472 +g1,4687:32583029,14838651 +) +v1,4687:6630773,15997836:0,393216,0 +(1,4715:6630773,27055002:25952256,11450382,196608 +g1,4715:6630773,27055002 +g1,4715:6630773,27055002 +g1,4715:6434165,27055002 +(1,4715:6434165,27055002:0,11450382,196608 +r1,4715:32779637,27055002:26345472,11646990,196608 +k1,4715:6434165,27055002:-26345472 +) +(1,4715:6434165,27055002:26345472,11450382,196608 +[1,4715:6630773,27055002:25952256,11253774,0 +(1,4689:6630773,16211746:25952256,410518,101187 +(1,4688:6630773,16211746:0,0,0 +g1,4688:6630773,16211746 +g1,4688:6630773,16211746 +g1,4688:6303093,16211746 +(1,4688:6303093,16211746:0,0,0 +) +g1,4688:6630773,16211746 +) +g1,4689:12005250,16211746 +g1,4689:12953688,16211746 +g1,4689:17063583,16211746 +g1,4689:17695875,16211746 +g1,4689:19592750,16211746 +g1,4689:20225042,16211746 +g1,4689:20857334,16211746 +h1,4689:21489626,16211746:0,0,0 +k1,4689:32583029,16211746:11093403 +g1,4689:32583029,16211746 +) +(1,4690:6630773,16877924:25952256,410518,101187 +h1,4690:6630773,16877924:0,0,0 +g1,4690:13902125,16877924 +h1,4690:14534417,16877924:0,0,0 +k1,4690:32583029,16877924:18048612 +g1,4690:32583029,16877924 +) +(1,4696:6630773,17609638:25952256,379060,0 +(1,4692:6630773,17609638:0,0,0 +g1,4692:6630773,17609638 +g1,4692:6630773,17609638 +g1,4692:6303093,17609638 +(1,4692:6303093,17609638:0,0,0 +) +g1,4692:6630773,17609638 +) +g1,4696:7579210,17609638 +g1,4696:7895356,17609638 +g1,4696:8211502,17609638 +g1,4696:8843794,17609638 +h1,4696:9159940,17609638:0,0,0 +k1,4696:32583028,17609638:23423088 +g1,4696:32583028,17609638 +) +(1,4696:6630773,18275816:25952256,388497,9436 +h1,4696:6630773,18275816:0,0,0 +g1,4696:7579210,18275816 +g1,4696:8211502,18275816 +g1,4696:8843794,18275816 +h1,4696:9159940,18275816:0,0,0 +k1,4696:32583028,18275816:23423088 +g1,4696:32583028,18275816 +) +(1,4696:6630773,18941994:25952256,388497,9436 +h1,4696:6630773,18941994:0,0,0 +g1,4696:7579210,18941994 +g1,4696:8211502,18941994 +g1,4696:8843794,18941994 +h1,4696:9159940,18941994:0,0,0 +k1,4696:32583028,18941994:23423088 +g1,4696:32583028,18941994 +) +(1,4698:6630773,20263532:25952256,410518,101187 +(1,4697:6630773,20263532:0,0,0 +g1,4697:6630773,20263532 +g1,4697:6630773,20263532 +g1,4697:6303093,20263532 +(1,4697:6303093,20263532:0,0,0 +) +g1,4697:6630773,20263532 +) +g1,4698:12321396,20263532 +g1,4698:12953688,20263532 +g1,4698:14534418,20263532 +g1,4698:15482856,20263532 +g1,4698:21173479,20263532 +g1,4698:21805771,20263532 +h1,4698:23070355,20263532:0,0,0 +k1,4698:32583029,20263532:9512674 +g1,4698:32583029,20263532 +) +(1,4699:6630773,20929710:25952256,410518,101187 +h1,4699:6630773,20929710:0,0,0 +g1,4699:13902125,20929710 +h1,4699:14534417,20929710:0,0,0 +k1,4699:32583029,20929710:18048612 +g1,4699:32583029,20929710 +) +(1,4705:6630773,21661424:25952256,379060,0 +(1,4701:6630773,21661424:0,0,0 +g1,4701:6630773,21661424 +g1,4701:6630773,21661424 +g1,4701:6303093,21661424 +(1,4701:6303093,21661424:0,0,0 +) +g1,4701:6630773,21661424 +) +g1,4705:7579210,21661424 +g1,4705:7895356,21661424 +g1,4705:8211502,21661424 +g1,4705:8843794,21661424 +h1,4705:9159940,21661424:0,0,0 +k1,4705:32583028,21661424:23423088 +g1,4705:32583028,21661424 +) +(1,4705:6630773,22327602:25952256,388497,9436 +h1,4705:6630773,22327602:0,0,0 +g1,4705:7579210,22327602 +g1,4705:8211502,22327602 +g1,4705:8843794,22327602 +h1,4705:9159940,22327602:0,0,0 +k1,4705:32583028,22327602:23423088 +g1,4705:32583028,22327602 +) +(1,4705:6630773,22993780:25952256,388497,9436 +h1,4705:6630773,22993780:0,0,0 +g1,4705:7579210,22993780 +g1,4705:8211502,22993780 +g1,4705:8843794,22993780 +h1,4705:9159940,22993780:0,0,0 +k1,4705:32583028,22993780:23423088 +g1,4705:32583028,22993780 +) +(1,4707:6630773,24315318:25952256,410518,101187 +(1,4706:6630773,24315318:0,0,0 +g1,4706:6630773,24315318 +g1,4706:6630773,24315318 +g1,4706:6303093,24315318 +(1,4706:6303093,24315318:0,0,0 +) +g1,4706:6630773,24315318 +) +k1,4707:6630773,24315318:0 +g1,4707:16747436,24315318 +g1,4707:17695874,24315318 +k1,4707:17695874,24315318:0 +h1,4707:27496391,24315318:0,0,0 +k1,4707:32583029,24315318:5086638 +g1,4707:32583029,24315318 +) +(1,4708:6630773,24981496:25952256,410518,101187 +h1,4708:6630773,24981496:0,0,0 +g1,4708:13902125,24981496 +h1,4708:14534417,24981496:0,0,0 +k1,4708:32583029,24981496:18048612 +g1,4708:32583029,24981496 +) +(1,4714:6630773,25713210:25952256,379060,0 +(1,4710:6630773,25713210:0,0,0 +g1,4710:6630773,25713210 +g1,4710:6630773,25713210 +g1,4710:6303093,25713210 +(1,4710:6303093,25713210:0,0,0 +) +g1,4710:6630773,25713210 +) +g1,4714:7579210,25713210 +g1,4714:7895356,25713210 +g1,4714:8211502,25713210 +g1,4714:8843794,25713210 +h1,4714:9159940,25713210:0,0,0 +k1,4714:32583028,25713210:23423088 +g1,4714:32583028,25713210 +) +(1,4714:6630773,26379388:25952256,388497,9436 +h1,4714:6630773,26379388:0,0,0 +g1,4714:7579210,26379388 +g1,4714:8211502,26379388 +g1,4714:8843794,26379388 +h1,4714:9159940,26379388:0,0,0 +k1,4714:32583028,26379388:23423088 +g1,4714:32583028,26379388 +) +(1,4714:6630773,27045566:25952256,388497,9436 +h1,4714:6630773,27045566:0,0,0 +g1,4714:7579210,27045566 +g1,4714:8211502,27045566 +g1,4714:8843794,27045566 +h1,4714:9159940,27045566:0,0,0 +k1,4714:32583028,27045566:23423088 +g1,4714:32583028,27045566 +) +] +) +g1,4715:32583029,27055002 +g1,4715:6630773,27055002 +g1,4715:6630773,27055002 +g1,4715:32583029,27055002 +g1,4715:32583029,27055002 +) +h1,4715:6630773,27251610:0,0,0 +(1,4719:6630773,28586105:25952256,505283,134348 +h1,4718:6630773,28586105:983040,0,0 +k1,4718:10031235,28586105:244248 +k1,4718:11542948,28586105:244247 +k1,4718:14291327,28586105:244248 +k1,4718:15820081,28586105:244248 +(1,4718:15820081,28586105:0,452978,115847 +r1,4718:18288618,28586105:2468537,568825,115847 +k1,4718:15820081,28586105:-2468537 +) +(1,4718:15820081,28586105:2468537,452978,115847 +k1,4718:15820081,28586105:3277 +h1,4718:18285341,28586105:0,411205,112570 +) +k1,4718:18532865,28586105:244247 +k1,4718:21118059,28586105:244248 +k1,4718:22381392,28586105:244248 +k1,4718:25052437,28586105:244247 +k1,4718:27595033,28586105:244248 +k1,4718:28490709,28586105:244248 +k1,4718:30005044,28586105:244247 +k1,4718:30605152,28586105:244248 +k1,4718:32583029,28586105:0 +) +(1,4719:6630773,29427593:25952256,505283,134348 +k1,4718:8120374,29427593:257524 +k1,4718:9876051,29427593:257524 +h1,4718:10672969,29427593:0,0,0 +k1,4718:11311257,29427593:257524 +k1,4718:12437133,29427593:257524 +k1,4718:13798939,29427593:257524 +k1,4718:15148948,29427593:257524 +(1,4718:15148948,29427593:0,452978,115847 +r1,4718:17617485,29427593:2468537,568825,115847 +k1,4718:15148948,29427593:-2468537 +) +(1,4718:15148948,29427593:2468537,452978,115847 +k1,4718:15148948,29427593:3277 +h1,4718:17614208,29427593:0,411205,112570 +) +k1,4718:17875010,29427593:257525 +k1,4718:18783962,29427593:257524 +k1,4718:21773682,29427593:257524 +k1,4718:23050291,29427593:257524 +k1,4718:25734613,29427593:257524 +k1,4718:28290485,29427593:257524 +k1,4718:29199437,29427593:257524 +k1,4718:30727049,29427593:257524 +k1,4718:32583029,29427593:0 +) +(1,4719:6630773,30269081:25952256,513147,134348 +k1,4718:9610302,30269081:266338 +k1,4718:10559525,30269081:266338 +k1,4718:12360062,30269081:266339 +k1,4718:13285692,30269081:266338 +k1,4718:13907890,30269081:266338 +k1,4718:15563591,30269081:266338 +k1,4718:17879895,30269081:266338 +k1,4718:19929469,30269081:266339 +k1,4718:21064159,30269081:266338 +k1,4718:22879113,30269081:266338 +k1,4718:23796879,30269081:266338 +k1,4718:25333305,30269081:266338 +k1,4718:27307512,30269081:266339 +k1,4718:28592935,30269081:266338 +k1,4718:31931601,30269081:266338 +k1,4719:32583029,30269081:0 +) +(1,4719:6630773,31110569:25952256,513147,134348 +(1,4718:6630773,31110569:0,452978,115847 +r1,4718:9099310,31110569:2468537,568825,115847 +k1,4718:6630773,31110569:-2468537 +) +(1,4718:6630773,31110569:2468537,452978,115847 +k1,4718:6630773,31110569:3277 +h1,4718:9096033,31110569:0,411205,112570 +) +k1,4718:9322955,31110569:223645 +k1,4718:10078096,31110569:223644 +k1,4718:12588948,31110569:223645 +k1,4718:13168452,31110569:223644 +k1,4718:15774986,31110569:223645 +k1,4718:16657923,31110569:223645 +k1,4718:17900652,31110569:223644 +k1,4718:19513660,31110569:223645 +k1,4718:21613601,31110569:223645 +k1,4718:23575260,31110569:223644 +k1,4718:26818149,31110569:223645 +k1,4718:29976495,31110569:223644 +k1,4718:31331947,31110569:223645 +k1,4719:32583029,31110569:0 +) +(1,4719:6630773,31952057:25952256,513147,134348 +k1,4718:7799561,31952057:229002 +k1,4718:8687854,31952057:229001 +k1,4718:11428851,31952057:229002 +k1,4718:13844788,31952057:229001 +k1,4718:17054367,31952057:229002 +k1,4718:18302453,31952057:229001 +k1,4718:20374327,31952057:229002 +k1,4718:21262621,31952057:229002 +k1,4718:24245445,31952057:229001 +k1,4718:24830307,31952057:229002 +k1,4718:27754804,31952057:229001 +k1,4718:28635234,31952057:229002 +k1,4718:30020945,31952057:229001 +k1,4718:30932832,31952057:229002 +k1,4718:32583029,31952057:0 +) +(1,4719:6630773,32793545:25952256,505283,134348 +g1,4718:9716863,32793545 +g1,4718:11020374,32793545 +g1,4718:11967369,32793545 +g1,4718:14371885,32793545 +g1,4718:15257276,32793545 +g1,4718:16227208,32793545 +g1,4718:19498765,32793545 +g1,4718:20349422,32793545 +(1,4718:20349422,32793545:0,452978,115847 +r1,4718:22817959,32793545:2468537,568825,115847 +k1,4718:20349422,32793545:-2468537 +) +(1,4718:20349422,32793545:2468537,452978,115847 +k1,4718:20349422,32793545:3277 +h1,4718:22814682,32793545:0,411205,112570 +) +k1,4719:32583029,32793545:9591400 +g1,4719:32583029,32793545 +) +v1,4720:6630773,34128040:0,393216,0 +(1,4722:6630773,41463000:25952256,7728176,616038 +g1,4722:6630773,41463000 +(1,4722:6630773,41463000:25952256,7728176,616038 +(1,4722:6630773,42079038:25952256,8344214,0 +[1,4722:6630773,42079038:25952256,8344214,0 +(1,4722:6630773,42052824:25952256,8291786,0 +r1,4722:6656987,42052824:26214,8291786,0 +[1,4722:6656987,42052824:25899828,8291786,0 +(1,4722:6656987,41463000:25899828,7112138,0 +[1,4722:7246811,41463000:24720180,7112138,0 +(1,4722:7246811,35438236:24720180,1087374,126483 +k1,4720:8653906,35438236:197392 +k1,4720:8653906,35438236:0 +k1,4721:10047985,35438236:197392 +k1,4721:11551510,35438236:197392 +k1,4721:13084525,35438236:197391 +k1,4721:13933345,35438236:197392 +k1,4721:14878503,35438236:197392 +k1,4721:18422163,35438236:197392 +k1,4721:19151052,35438236:197392 +k1,4721:19999872,35438236:197392 +k1,4721:21467352,35438236:197392 +k1,4721:22020604,35438236:197392 +k1,4721:23607358,35438236:197391 +k1,4721:25681046,35438236:197392 +k1,4721:27733107,35438236:197392 +k1,4721:28739869,35438236:197392 +k1,4721:29956346,35438236:197392 +k1,4721:31966991,35438236:0 +) +(1,4722:7246811,36279724:24720180,513147,134348 +k1,4721:8058313,36279724:195464 +k1,4721:9410488,36279724:195465 +k1,4721:12162511,36279724:195464 +k1,4721:14093368,36279724:195464 +k1,4721:17028238,36279724:195465 +k1,4721:18415147,36279724:195464 +(1,4721:18415147,36279724:0,452978,115847 +r1,4722:20883684,36279724:2468537,568825,115847 +k1,4721:18415147,36279724:-2468537 +) +(1,4721:18415147,36279724:2468537,452978,115847 +k1,4721:18415147,36279724:3277 +h1,4721:20880407,36279724:0,411205,112570 +) +k1,4721:21252818,36279724:195464 +k1,4721:23499559,36279724:195464 +k1,4721:24050884,36279724:195465 +k1,4721:25529543,36279724:195464 +k1,4721:27114370,36279724:195464 +k1,4721:29186131,36279724:195465 +k1,4721:30573040,36279724:195464 +k1,4721:31966991,36279724:0 +) +(1,4722:7246811,37121212:24720180,513147,126483 +k1,4721:9167161,37121212:265566 +k1,4721:12052857,37121212:265567 +k1,4721:15031614,37121212:265566 +k1,4721:16691131,37121212:265566 +k1,4721:18611482,37121212:265567 +k1,4721:21639391,37121212:265566 +k1,4721:25322004,37121212:265566 +k1,4721:28857818,37121212:265567 +k1,4721:29782676,37121212:265566 +k1,4721:31966991,37121212:0 +) +(1,4722:7246811,37962700:24720180,513147,115847 +k1,4721:8706567,37962700:238165 +k1,4721:10641459,37962700:238165 +k1,4721:13592815,37962700:238165 +(1,4721:13592815,37962700:0,414482,115847 +r1,4722:13951081,37962700:358266,530329,115847 +k1,4721:13592815,37962700:-358266 +) +(1,4721:13592815,37962700:358266,414482,115847 +k1,4721:13592815,37962700:3277 +h1,4721:13947804,37962700:0,411205,112570 +) +k1,4721:14362916,37962700:238165 +(1,4721:14362916,37962700:0,414482,115847 +r1,4722:14721182,37962700:358266,530329,115847 +k1,4721:14362916,37962700:-358266 +) +(1,4721:14362916,37962700:358266,414482,115847 +k1,4721:14362916,37962700:3277 +h1,4721:14717905,37962700:0,411205,112570 +) +k1,4721:14959347,37962700:238165 +k1,4721:16388957,37962700:238165 +(1,4721:16388957,37962700:0,414482,115847 +r1,4722:16747223,37962700:358266,530329,115847 +k1,4721:16388957,37962700:-358266 +) +(1,4721:16388957,37962700:358266,414482,115847 +k1,4721:16388957,37962700:3277 +h1,4721:16743946,37962700:0,411205,112570 +) +k1,4721:17159058,37962700:238165 +k1,4721:18002776,37962700:238165 +k1,4721:19535933,37962700:238166 +k1,4721:20793183,37962700:238165 +k1,4721:22565546,37962700:238165 +k1,4721:23463003,37962700:238165 +k1,4721:24720253,37962700:238165 +k1,4721:26347781,37962700:238165 +k1,4721:28462242,37962700:238165 +k1,4721:29425235,37962700:238165 +k1,4721:30947906,37962700:238165 +k1,4721:31966991,37962700:0 +) +(1,4722:7246811,38804188:24720180,513147,134348 +k1,4721:9409863,38804188:152407 +k1,4721:10178309,38804188:152408 +(1,4721:10178309,38804188:0,414482,115847 +r1,4722:10536575,38804188:358266,530329,115847 +k1,4721:10178309,38804188:-358266 +) +(1,4721:10178309,38804188:358266,414482,115847 +k1,4721:10178309,38804188:3277 +h1,4721:10533298,38804188:0,411205,112570 +) +k1,4721:10688982,38804188:152407 +k1,4721:11832950,38804188:152408 +k1,4721:12601395,38804188:152407 +k1,4721:16167573,38804188:152408 +k1,4721:18232976,38804188:152407 +k1,4721:18990937,38804188:152408 +k1,4721:20438335,38804188:152407 +k1,4721:21609828,38804188:152408 +k1,4721:23296433,38804188:152407 +k1,4721:24108133,38804188:152408 +k1,4721:25279625,38804188:152407 +k1,4721:26821395,38804188:152407 +k1,4721:28850099,38804188:152408 +k1,4721:31966991,38804188:0 +) +(1,4722:7246811,39645676:24720180,513147,134348 +k1,4721:8075582,39645676:177343 +k1,4721:11514651,39645676:177342 +k1,4721:13702639,39645676:177343 +k1,4721:14539274,39645676:177343 +k1,4721:15735702,39645676:177343 +k1,4721:17278159,39645676:177342 +k1,4721:18122658,39645676:177343 +(1,4721:18122658,39645676:0,414482,115847 +r1,4722:18480924,39645676:358266,530329,115847 +k1,4721:18122658,39645676:-358266 +) +(1,4721:18122658,39645676:358266,414482,115847 +k1,4721:18122658,39645676:3277 +h1,4721:18477647,39645676:0,411205,112570 +) +k1,4721:18658267,39645676:177343 +k1,4721:20027055,39645676:177343 +(1,4721:20027055,39645676:0,414482,115847 +r1,4722:20385321,39645676:358266,530329,115847 +k1,4721:20027055,39645676:-358266 +) +(1,4721:20027055,39645676:358266,414482,115847 +k1,4721:20027055,39645676:3277 +h1,4721:20382044,39645676:0,411205,112570 +) +k1,4721:20562663,39645676:177342 +k1,4721:23200228,39645676:177343 +k1,4721:25565163,39645676:177343 +k1,4721:26098366,39645676:177343 +k1,4721:27558903,39645676:177342 +k1,4721:30119135,39645676:177343 +k1,4721:30947906,39645676:177343 +k1,4721:31966991,39645676:0 +) +(1,4722:7246811,40487164:24720180,513147,134348 +k1,4721:8850171,40487164:213997 +k1,4721:10940464,40487164:213997 +k1,4721:11837346,40487164:213997 +k1,4721:14311680,40487164:213997 +k1,4721:15544762,40487164:213997 +k1,4721:17736636,40487164:213997 +k1,4721:18609925,40487164:213997 +k1,4721:20519337,40487164:213996 +k1,4721:21349372,40487164:213997 +k1,4721:21919229,40487164:213997 +k1,4721:24818236,40487164:213997 +k1,4721:25660068,40487164:213997 +k1,4721:27576035,40487164:213997 +k1,4721:29918641,40487164:213997 +k1,4721:30947906,40487164:213997 +k1,4721:31966991,40487164:0 +) +(1,4722:7246811,41328652:24720180,513147,134348 +g1,4721:9706377,41328652 +g1,4721:11760275,41328652 +g1,4721:12768874,41328652 +g1,4721:14663519,41328652 +g1,4721:18091707,41328652 +g1,4721:19100306,41328652 +g1,4721:20318620,41328652 +k1,4722:31966991,41328652:10679094 +g1,4722:31966991,41328652 +) +] +) +] +r1,4722:32583029,42052824:26214,8291786,0 +) +] +) +) +g1,4722:32583029,41463000 +) +h1,4722:6630773,42079038:0,0,0 +v1,4724:6630773,43413533:0,393216,0 +(1,4726:6630773,45116945:25952256,2096628,589824 +g1,4726:6630773,45116945 +(1,4726:6630773,45116945:25952256,2096628,589824 +(1,4726:6630773,45706769:25952256,2686452,0 +[1,4726:6630773,45706769:25952256,2686452,0 +(1,4726:6630773,45706769:25952256,2660238,0 +r1,4726:6656987,45706769:26214,2660238,0 +[1,4726:6656987,45706769:25899828,2660238,0 +(1,4726:6656987,45116945:25899828,1480590,0 +[1,4726:7246811,45116945:24720180,1480590,0 +(1,4726:7246811,44920337:24720180,1283982,196608 +(1,4724:7246811,44920337:0,1283982,196608 +r1,4726:9812056,44920337:2565245,1480590,196608 +k1,4724:7246811,44920337:-2565245 ) -(1,4718:7246811,44920337:2565245,1283982,196608 +(1,4724:7246811,44920337:2565245,1283982,196608 ) -k1,4718:10016096,44920337:204040 -k1,4718:10016096,44920337:0 -k1,4719:12393311,44920337:204041 -k1,4719:13616436,44920337:204040 -k1,4719:15486401,44920337:204040 -k1,4719:16306479,44920337:204040 -k1,4719:17529605,44920337:204041 -k1,4719:21384000,44920337:204040 -k1,4719:25524788,44920337:204040 -k1,4719:27584152,44920337:204040 -k1,4719:28860362,44920337:204041 -k1,4719:30799795,44920337:204040 -k1,4720:31966991,44920337:0 +k1,4724:10016096,44920337:204040 +k1,4724:10016096,44920337:0 +k1,4725:12393311,44920337:204041 +k1,4725:13616436,44920337:204040 +k1,4725:15486401,44920337:204040 +k1,4725:16306479,44920337:204040 +k1,4725:17529605,44920337:204041 +k1,4725:21384000,44920337:204040 +k1,4725:25524788,44920337:204040 +k1,4725:27584152,44920337:204040 +k1,4725:28860362,44920337:204041 +k1,4725:30799795,44920337:204040 +k1,4726:31966991,44920337:0 ) ] ) ] -r1,4720:32583029,45706769:26214,2660238,0 +r1,4726:32583029,45706769:26214,2660238,0 ) ] ) ) -g1,4720:32583029,45116945 +g1,4726:32583029,45116945 ) ] -(1,4720:32583029,45706769:0,0,0 -g1,4720:32583029,45706769 +(1,4726:32583029,45706769:0,0,0 +g1,4726:32583029,45706769 ) ) ] -(1,4720:6630773,47279633:25952256,0,0 -h1,4720:6630773,47279633:25952256,0,0 +(1,4726:6630773,47279633:25952256,0,0 +h1,4726:6630773,47279633:25952256,0,0 ) ] -h1,4720:4262630,4025873:0,0,0 +h1,4726:4262630,4025873:0,0,0 ] !24580 }87 -Input:598:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:599:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:600:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:601:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:602:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:603:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:604:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:605:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:606:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:607:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:608:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:609:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1031 +Input:594:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:595:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:596:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:597:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:598:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:599:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:600:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:601:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:602:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:603:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:604:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:605:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1103 {88 -[1,4797:4262630,47279633:28320399,43253760,0 -(1,4797:4262630,4025873:0,0,0 -[1,4797:-473657,4025873:25952256,0,0 -(1,4797:-473657,-710414:25952256,0,0 -h1,4797:-473657,-710414:0,0,0 -(1,4797:-473657,-710414:0,0,0 -(1,4797:-473657,-710414:0,0,0 -g1,4797:-473657,-710414 -(1,4797:-473657,-710414:65781,0,65781 -g1,4797:-407876,-710414 -[1,4797:-407876,-644633:0,0,0 +[1,4803:4262630,47279633:28320399,43253760,0 +(1,4803:4262630,4025873:0,0,0 +[1,4803:-473657,4025873:25952256,0,0 +(1,4803:-473657,-710414:25952256,0,0 +h1,4803:-473657,-710414:0,0,0 +(1,4803:-473657,-710414:0,0,0 +(1,4803:-473657,-710414:0,0,0 +g1,4803:-473657,-710414 +(1,4803:-473657,-710414:65781,0,65781 +g1,4803:-407876,-710414 +[1,4803:-407876,-644633:0,0,0 ] ) -k1,4797:-473657,-710414:-65781 +k1,4803:-473657,-710414:-65781 ) ) -k1,4797:25478599,-710414:25952256 -g1,4797:25478599,-710414 +k1,4803:25478599,-710414:25952256 +g1,4803:25478599,-710414 ) ] ) -[1,4797:6630773,47279633:25952256,43253760,0 -[1,4797:6630773,4812305:25952256,786432,0 -(1,4797:6630773,4812305:25952256,513147,134348 -(1,4797:6630773,4812305:25952256,513147,134348 -g1,4797:3078558,4812305 -[1,4797:3078558,4812305:0,0,0 -(1,4797:3078558,2439708:0,1703936,0 -k1,4797:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4797:2537886,2439708:1179648,16384,0 +[1,4803:6630773,47279633:25952256,43253760,0 +[1,4803:6630773,4812305:25952256,786432,0 +(1,4803:6630773,4812305:25952256,513147,134348 +(1,4803:6630773,4812305:25952256,513147,134348 +g1,4803:3078558,4812305 +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,2439708:0,1703936,0 +k1,4803:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4803:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4797:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4803:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4797:3078558,4812305:0,0,0 -(1,4797:3078558,2439708:0,1703936,0 -g1,4797:29030814,2439708 -g1,4797:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4797:36151628,1915420:16384,1179648,0 +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,2439708:0,1703936,0 +g1,4803:29030814,2439708 +g1,4803:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4803:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4797:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4803:37855564,2439708:1179648,16384,0 ) ) -k1,4797:3078556,2439708:-34777008 +k1,4803:3078556,2439708:-34777008 ) ] -[1,4797:3078558,4812305:0,0,0 -(1,4797:3078558,49800853:0,16384,2228224 -k1,4797:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4797:2537886,49800853:1179648,16384,0 +[1,4803:3078558,4812305:0,0,0 +(1,4803:3078558,49800853:0,16384,2228224 +k1,4803:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4803:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4797:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4803:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4797:3078558,4812305:0,0,0 -(1,4797:3078558,49800853:0,16384,2228224 -g1,4797:29030814,49800853 -g1,4797:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4797:36151628,51504789: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,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4803:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4797:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4803:37855564,49800853:1179648,16384,0 ) ) -k1,4797:3078556,49800853:-34777008 +k1,4803:3078556,49800853:-34777008 ) ] -g1,4797:6630773,4812305 -g1,4797:6630773,4812305 -g1,4797:9946239,4812305 -g1,4797:10761506,4812305 -g1,4797:11410312,4812305 -g1,4797:13771574,4812305 -k1,4797:31786110,4812305:18014536 +g1,4803:6630773,4812305 +g1,4803:6630773,4812305 +g1,4803:9946239,4812305 +g1,4803:10761506,4812305 +g1,4803:11410312,4812305 +g1,4803:13771574,4812305 +k1,4803:31786110,4812305:18014536 ) ) ] -[1,4797:6630773,45706769:25952256,40108032,0 -(1,4797:6630773,45706769:25952256,40108032,0 -(1,4797:6630773,45706769:0,0,0 -g1,4797:6630773,45706769 +[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,4797:6630773,45706769:25952256,40108032,0 -v1,4720:6630773,6254097:0,393216,0 -(1,4720:6630773,7939688:25952256,2078807,616038 -g1,4720:6630773,7939688 -(1,4720:6630773,7939688:25952256,2078807,616038 -(1,4720:6630773,8555726:25952256,2694845,0 -[1,4720:6630773,8555726:25952256,2694845,0 -(1,4720:6630773,8529512:25952256,2668631,0 -r1,4720:6656987,8529512:26214,2668631,0 -[1,4720:6656987,8529512:25899828,2668631,0 -(1,4720:6656987,7939688:25899828,1488983,0 -[1,4720:7246811,7939688:24720180,1488983,0 -(1,4720:7246811,6963852:24720180,513147,7863 -k1,4719:8709827,6963852:192928 -k1,4719:11229938,6963852:192928 -k1,4719:12082158,6963852:192928 -k1,4719:14895215,6963852:192928 -k1,4719:17396321,6963852:192928 -k1,4719:18275411,6963852:192928 -k1,4719:21181529,6963852:192927 -k1,4719:21990495,6963852:192928 -k1,4719:23202508,6963852:192928 -k1,4719:24784799,6963852:192928 -k1,4719:27027693,6963852:192928 -k1,4719:28772514,6963852:192928 -k1,4719:30947906,6963852:192928 -k1,4719:31966991,6963852:0 -) -(1,4720:7246811,7805340:24720180,513147,134348 -g1,4719:10006532,7805340 -g1,4719:11015131,7805340 -g1,4719:12712513,7805340 -h1,4719:13509431,7805340:0,0,0 -g1,4719:13708660,7805340 -g1,4719:15411940,7805340 -g1,4719:16630254,7805340 -g1,4719:17921968,7805340 -g1,4719:18788353,7805340 -(1,4719:18788353,7805340:0,452978,115847 -r1,4720:21256890,7805340:2468537,568825,115847 -k1,4719:18788353,7805340:-2468537 -) -(1,4719:18788353,7805340:2468537,452978,115847 -k1,4719:18788353,7805340:3277 -h1,4719:21253613,7805340:0,411205,112570 -) -g1,4719:21456119,7805340 -g1,4719:22464718,7805340 -g1,4719:24888239,7805340 -g1,4719:25618965,7805340 -k1,4720:31966991,7805340:3084333 -g1,4720:31966991,7805340 -) -] -) -] -r1,4720:32583029,8529512:26214,2668631,0 -) -] -) -) -g1,4720:32583029,7939688 -) -h1,4720:6630773,8555726:0,0,0 -(1,4726:6630773,11677866:25952256,32768,229376 -(1,4726:6630773,11677866:0,32768,229376 -(1,4726:6630773,11677866:5505024,32768,229376 -r1,4726:12135797,11677866:5505024,262144,229376 -) -k1,4726:6630773,11677866:-5505024 -) -(1,4726:6630773,11677866:25952256,32768,0 -r1,4726:32583029,11677866:25952256,32768,0 -) -) -(1,4726:6630773,13282194:25952256,615776,161218 -(1,4726:6630773,13282194:2464678,582746,14155 -g1,4726:6630773,13282194 -g1,4726:9095451,13282194 -) -g1,4726:13374428,13282194 -g1,4726:14432179,13282194 -g1,4726:15243777,13282194 -k1,4726:32583029,13282194:14486077 -g1,4726:32583029,13282194 -) -(1,4730:6630773,14516898:25952256,505283,134348 -k1,4729:7232437,14516898:186821 -k1,4729:9709098,14516898:186833 -k1,4729:11000213,14516898:186833 -k1,4729:12662261,14516898:186833 -k1,4729:16131792,14516898:186833 -k1,4729:19559380,14516898:186833 -k1,4729:20737773,14516898:186833 -k1,4729:23769525,14516898:186834 -k1,4729:25469584,14516898:186833 -k1,4729:26307845,14516898:186833 -k1,4729:28112107,14516898:186833 -k1,4729:31019995,14516898:186833 -k1,4729:32583029,14516898:0 -) -(1,4730:6630773,15358386:25952256,513147,134348 -k1,4729:8444945,15358386:256381 -k1,4729:9692885,15358386:256380 -k1,4729:11462492,15358386:256381 -k1,4729:12480400,15358386:256380 -k1,4729:13151567,15358386:256324 -k1,4729:15013579,15358386:256380 -k1,4729:15921388,15358386:256381 -k1,4729:17795198,15358386:256381 -k1,4729:20043872,15358386:256380 -k1,4729:21446478,15358386:256381 -k1,4729:24085748,15358386:256381 -k1,4729:26410444,15358386:256380 -k1,4729:27282863,15358386:256381 -k1,4729:28928606,15358386:256380 -k1,4729:31391584,15358386:256381 -k1,4729:32583029,15358386:0 -) -(1,4730:6630773,16199874:25952256,513147,102891 -k1,4729:8694970,16199874:220014 -k1,4729:9574275,16199874:220013 -k1,4729:11688279,16199874:220014 -k1,4729:13874373,16199874:220014 -k1,4729:14992229,16199874:220013 -k1,4729:16908970,16199874:220014 -k1,4729:20238012,16199874:220014 -k1,4729:21449585,16199874:220013 -k1,4729:23712356,16199874:220014 -k1,4729:24583797,16199874:220013 -k1,4729:26184655,16199874:220014 -k1,4729:28074526,16199874:220014 -k1,4729:29485984,16199874:220013 -k1,4729:31086842,16199874:220014 -k1,4729:32583029,16199874:0 -) -(1,4730:6630773,17041362:25952256,505283,134348 -k1,4729:7979604,17041362:244549 -k1,4729:9636453,17041362:244548 -k1,4729:11072447,17041362:244549 -k1,4729:12931803,17041362:244549 -k1,4729:15639849,17041362:244548 -k1,4729:19167096,17041362:244549 -k1,4729:22322099,17041362:244549 -(1,4729:22322099,17041362:0,452978,115847 -r1,4729:25494059,17041362:3171960,568825,115847 -k1,4729:22322099,17041362:-3171960 -) -(1,4729:22322099,17041362:3171960,452978,115847 -k1,4729:22322099,17041362:3277 -h1,4729:25490782,17041362:0,411205,112570 -) -k1,4729:25738608,17041362:244549 -k1,4729:26514653,17041362:244548 -k1,4729:28754118,17041362:244549 -k1,4729:29650095,17041362:244549 -k1,4729:30642409,17041362:244548 -k1,4729:31821501,17041362:244549 -k1,4729:32583029,17041362:0 -) -(1,4730:6630773,17882850:25952256,505283,134348 -g1,4729:10439070,17882850 -g1,4729:11289727,17882850 -g1,4729:13106385,17882850 -g1,4729:16275050,17882850 -g1,4729:19154702,17882850 -g1,4729:20747882,17882850 -g1,4729:22510145,17882850 -g1,4729:22510145,17882850 -k1,4730:32583029,17882850:10072884 -g1,4730:32583029,17882850 -) -v1,4732:6630773,18863600:0,393216,0 -(1,4747:6630773,23270853:25952256,4800469,196608 -g1,4747:6630773,23270853 -g1,4747:6630773,23270853 -g1,4747:6434165,23270853 -(1,4747:6434165,23270853:0,4800469,196608 -r1,4747:32779637,23270853:26345472,4997077,196608 -k1,4747:6434165,23270853:-26345472 -) -(1,4747:6434165,23270853:26345472,4800469,196608 -[1,4747:6630773,23270853:25952256,4603861,0 -(1,4734:6630773,19077510:25952256,410518,101187 -(1,4733:6630773,19077510:0,0,0 -g1,4733:6630773,19077510 -g1,4733:6630773,19077510 -g1,4733:6303093,19077510 -(1,4733:6303093,19077510:0,0,0 -) -g1,4733:6630773,19077510 -) -g1,4734:8211502,19077510 -g1,4734:9159940,19077510 -g1,4734:13269835,19077510 -g1,4734:13902127,19077510 -g1,4734:15482857,19077510 -g1,4734:16115149,19077510 -g1,4734:16747441,19077510 -g1,4734:18328170,19077510 -g1,4734:18960462,19077510 -g1,4734:19592754,19077510 -g1,4734:22121921,19077510 -h1,4734:24334940,19077510:0,0,0 -k1,4734:32583029,19077510:8248089 -g1,4734:32583029,19077510 -) -(1,4735:6630773,19743688:25952256,410518,76021 -h1,4735:6630773,19743688:0,0,0 -k1,4735:6630773,19743688:0 -h1,4735:10740667,19743688:0,0,0 -k1,4735:32583029,19743688:21842362 -g1,4735:32583029,19743688 -) -(1,4739:6630773,20475402:25952256,379060,7863 -(1,4737:6630773,20475402:0,0,0 -g1,4737:6630773,20475402 -g1,4737:6630773,20475402 -g1,4737:6303093,20475402 -(1,4737:6303093,20475402:0,0,0 -) -g1,4737:6630773,20475402 -) -g1,4739:7579210,20475402 -h1,4739:8843793,20475402:0,0,0 -k1,4739:32583029,20475402:23739236 -g1,4739:32583029,20475402 -) -(1,4741:6630773,21796940:25952256,410518,76021 -(1,4740:6630773,21796940:0,0,0 -g1,4740:6630773,21796940 -g1,4740:6630773,21796940 -g1,4740:6303093,21796940 -(1,4740:6303093,21796940:0,0,0 -) -g1,4740:6630773,21796940 -) -k1,4741:6630773,21796940:0 -g1,4741:11056813,21796940 -g1,4741:12005251,21796940 -g1,4741:13902125,21796940 -g1,4741:14850562,21796940 -g1,4741:17063582,21796940 -g1,4741:18012019,21796940 -g1,4741:18644311,21796940 -h1,4741:21173476,21796940:0,0,0 -k1,4741:32583029,21796940:11409553 -g1,4741:32583029,21796940 -) -(1,4742:6630773,22463118:25952256,410518,76021 -h1,4742:6630773,22463118:0,0,0 -k1,4742:6630773,22463118:0 -h1,4742:10740667,22463118:0,0,0 -k1,4742:32583029,22463118:21842362 -g1,4742:32583029,22463118 -) -(1,4746:6630773,23194832:25952256,404226,76021 -(1,4744:6630773,23194832:0,0,0 -g1,4744:6630773,23194832 -g1,4744:6630773,23194832 -g1,4744:6303093,23194832 -(1,4744:6303093,23194832:0,0,0 -) -g1,4744:6630773,23194832 -) -g1,4746:7579210,23194832 -g1,4746:8843793,23194832 -g1,4746:10740667,23194832 -g1,4746:11689104,23194832 -g1,4746:13902124,23194832 -g1,4746:14850561,23194832 -g1,4746:15482853,23194832 -h1,4746:18012018,23194832:0,0,0 -k1,4746:32583029,23194832:14571011 -g1,4746:32583029,23194832 -) -] -) -g1,4747:32583029,23270853 -g1,4747:6630773,23270853 -g1,4747:6630773,23270853 -g1,4747:32583029,23270853 -g1,4747:32583029,23270853 -) -h1,4747:6630773,23467461:0,0,0 -(1,4751:6630773,24623521:25952256,513147,115847 -h1,4750:6630773,24623521:983040,0,0 -k1,4750:10577391,24623521:235314 -k1,4750:11958929,24623521:235313 -(1,4750:11958929,24623521:0,452978,115847 -r1,4750:14427466,24623521:2468537,568825,115847 -k1,4750:11958929,24623521:-2468537 -) -(1,4750:11958929,24623521:2468537,452978,115847 -k1,4750:11958929,24623521:3277 -h1,4750:14424189,24623521:0,411205,112570 -) -k1,4750:14836450,24623521:235314 -(1,4750:14836450,24623521:0,452978,115847 -r1,4750:16601563,24623521:1765113,568825,115847 -k1,4750:14836450,24623521:-1765113 -) -(1,4750:14836450,24623521:1765113,452978,115847 -k1,4750:14836450,24623521:3277 -h1,4750:16598286,24623521:0,411205,112570 -) -k1,4750:16836877,24623521:235314 -k1,4750:17755076,24623521:235314 -(1,4750:17755076,24623521:0,452978,115847 -r1,4750:20575325,24623521:2820249,568825,115847 -k1,4750:17755076,24623521:-2820249 -) -(1,4750:17755076,24623521:2820249,452978,115847 -k1,4750:17755076,24623521:3277 -h1,4750:20572048,24623521:0,411205,112570 -) -k1,4750:20810638,24623521:235313 -k1,4750:23056597,24623521:235314 -k1,4750:25302556,24623521:235314 -k1,4750:28392617,24623521:235313 -k1,4750:30195552,24623521:235314 -k1,4751:32583029,24623521:0 -) -(1,4751:6630773,25465009:25952256,505283,134348 -k1,4750:7758980,25465009:193664 -k1,4750:9990813,25465009:193663 -k1,4750:10800515,25465009:193664 -k1,4750:11409016,25465009:193658 -k1,4750:14066178,25465009:193664 -k1,4750:15451287,25465009:193664 -k1,4750:18429576,25465009:193664 -k1,4750:19769464,25465009:193663 -(1,4750:19769464,25465009:0,452978,115847 -r1,4750:22941424,25465009:3171960,568825,115847 -k1,4750:19769464,25465009:-3171960 -) -(1,4750:19769464,25465009:3171960,452978,115847 -k1,4750:19769464,25465009:3277 -h1,4750:22938147,25465009:0,411205,112570 -) -k1,4750:23308758,25465009:193664 -(1,4750:23308758,25465009:0,452978,115847 -r1,4750:25777295,25465009:2468537,568825,115847 -k1,4750:23308758,25465009:-2468537 -) -(1,4750:23308758,25465009:2468537,452978,115847 -k1,4750:23308758,25465009:3277 -h1,4750:25774018,25465009:0,411205,112570 -) -k1,4750:25970959,25465009:193664 -k1,4750:26847508,25465009:193664 -(1,4750:26847508,25465009:0,452978,115847 -r1,4750:30371180,25465009:3523672,568825,115847 -k1,4750:26847508,25465009:-3523672 -) -(1,4750:26847508,25465009:3523672,452978,115847 -k1,4750:26847508,25465009:3277 -h1,4750:30367903,25465009:0,411205,112570 -) -k1,4750:30564843,25465009:193663 -k1,4750:31693050,25465009:193664 -k1,4750:32583029,25465009:0 -) -(1,4751:6630773,26306497:25952256,513147,126483 -k1,4750:8585879,26306497:190877 -k1,4750:10170707,26306497:190877 -(1,4750:10170707,26306497:0,414482,115847 -r1,4750:11584108,26306497:1413401,530329,115847 -k1,4750:10170707,26306497:-1413401 -) -(1,4750:10170707,26306497:1413401,414482,115847 -k1,4750:10170707,26306497:3277 -h1,4750:11580831,26306497:0,411205,112570 -) -k1,4750:11982079,26306497:190877 -k1,4750:13192041,26306497:190877 -k1,4750:15063261,26306497:190877 -k1,4750:15913430,26306497:190877 -k1,4750:17123392,26306497:190877 -k1,4750:20544539,26306497:190877 -k1,4750:24018114,26306497:190877 -k1,4750:26631202,26306497:190877 -k1,4750:28638082,26306497:190877 -k1,4750:30020404,26306497:190877 -k1,4750:31145824,26306497:190877 -k1,4751:32583029,26306497:0 -) -(1,4751:6630773,27147985:25952256,513147,115847 -k1,4750:8441687,27147985:250502 -k1,4750:9507456,27147985:250501 -k1,4750:10824229,27147985:250502 -k1,4750:12575504,27147985:250501 -k1,4750:13773657,27147985:250502 -k1,4750:14790274,27147985:250501 -k1,4750:18323474,27147985:250502 -k1,4750:21302239,27147985:250501 -(1,4750:21302239,27147985:0,452978,115847 -r1,4750:23419064,27147985:2116825,568825,115847 -k1,4750:21302239,27147985:-2116825 -) -(1,4750:21302239,27147985:2116825,452978,115847 -k1,4750:21302239,27147985:3277 -h1,4750:23415787,27147985:0,411205,112570 -) -k1,4750:23843236,27147985:250502 -(1,4750:23843236,27147985:0,452978,115847 -r1,4750:26663485,27147985:2820249,568825,115847 -k1,4750:23843236,27147985:-2820249 -) -(1,4750:23843236,27147985:2820249,452978,115847 -k1,4750:23843236,27147985:3277 -h1,4750:26660208,27147985:0,411205,112570 -) -k1,4750:26913986,27147985:250501 -k1,4750:28355933,27147985:250502 -(1,4750:28355933,27147985:0,452978,115847 -r1,4750:32583029,27147985:4227096,568825,115847 -k1,4750:28355933,27147985:-4227096 -) -(1,4750:28355933,27147985:4227096,452978,115847 -k1,4750:28355933,27147985:3277 -h1,4750:32579752,27147985:0,411205,112570 -) -k1,4750:32583029,27147985:0 -) -(1,4751:6630773,27989473:25952256,505283,126483 -k1,4750:7910290,27989473:175235 -k1,4750:8833291,27989473:175235 -k1,4750:10521752,27989473:175235 -k1,4750:12090938,27989473:175235 -k1,4750:13397980,27989473:175235 -k1,4750:16525612,27989473:175235 -k1,4750:17328682,27989473:175235 -k1,4750:20343592,27989473:175235 -k1,4750:22973150,27989473:175235 -(1,4750:22973150,27989473:0,452978,115847 -r1,4750:24738263,27989473:1765113,568825,115847 -k1,4750:22973150,27989473:-1765113 -) -(1,4750:22973150,27989473:1765113,452978,115847 -k1,4750:22973150,27989473:3277 -h1,4750:24734986,27989473:0,411205,112570 -) -k1,4750:24913498,27989473:175235 -k1,4750:27714105,27989473:175235 -k1,4750:28655456,27989473:175235 -k1,4750:32583029,27989473:0 -) -(1,4751:6630773,28830961:25952256,513147,134348 -g1,4750:7497158,28830961 -g1,4750:8111230,28830961 -g1,4750:10600287,28830961 -g1,4750:13780093,28830961 -g1,4750:15487961,28830961 -k1,4751:32583029,28830961:13812370 -g1,4751:32583029,28830961 -) -v1,4753:6630773,29811711:0,393216,0 -(1,4793:6630773,45510161:25952256,16091666,196608 -g1,4793:6630773,45510161 -g1,4793:6630773,45510161 -g1,4793:6434165,45510161 -(1,4793:6434165,45510161:0,16091666,196608 -r1,4793:32779637,45510161:26345472,16288274,196608 -k1,4793:6434165,45510161:-26345472 -) -(1,4793:6434165,45510161:26345472,16091666,196608 -[1,4793:6630773,45510161:25952256,15895058,0 -(1,4755:6630773,30025621:25952256,410518,76021 -(1,4754:6630773,30025621:0,0,0 -g1,4754:6630773,30025621 -g1,4754:6630773,30025621 -g1,4754:6303093,30025621 -(1,4754:6303093,30025621:0,0,0 -) -g1,4754:6630773,30025621 -) -k1,4755:6630773,30025621:0 -h1,4755:10108375,30025621:0,0,0 -k1,4755:32583029,30025621:22474654 -g1,4755:32583029,30025621 -) -(1,4759:6630773,30542937:25952256,404226,101187 -(1,4757:6630773,30542937:0,0,0 -g1,4757:6630773,30542937 -g1,4757:6630773,30542937 -g1,4757:6303093,30542937 -(1,4757:6303093,30542937:0,0,0 -) -g1,4757:6630773,30542937 -) -g1,4759:7579210,30542937 -g1,4759:8843793,30542937 -g1,4759:10108376,30542937 -g1,4759:11372959,30542937 -h1,4759:12321396,30542937:0,0,0 -k1,4759:32583028,30542937:20261632 -g1,4759:32583028,30542937 -) -(1,4761:6630773,31650077:25952256,410518,101187 -(1,4760:6630773,31650077:0,0,0 -g1,4760:6630773,31650077 -g1,4760:6630773,31650077 -g1,4760:6303093,31650077 -(1,4760:6303093,31650077:0,0,0 -) -g1,4760:6630773,31650077 -) -k1,4761:6630773,31650077:0 -g1,4761:10424521,31650077 -g1,4761:11372959,31650077 -k1,4761:11372959,31650077:0 -h1,4761:17695873,31650077:0,0,0 -k1,4761:32583029,31650077:14887156 -g1,4761:32583029,31650077 -) -(1,4762:6630773,32316255:25952256,410518,76021 -h1,4762:6630773,32316255:0,0,0 -k1,4762:6630773,32316255:0 -h1,4762:10108375,32316255:0,0,0 -k1,4762:32583029,32316255:22474654 -g1,4762:32583029,32316255 -) -(1,4766:6630773,32833571:25952256,404226,76021 -(1,4764:6630773,32833571:0,0,0 -g1,4764:6630773,32833571 -g1,4764:6630773,32833571 -g1,4764:6303093,32833571 -(1,4764:6303093,32833571:0,0,0 -) -g1,4764:6630773,32833571 -) -g1,4766:7579210,32833571 -g1,4766:8843793,32833571 -g1,4766:10108376,32833571 -g1,4766:11372959,32833571 -h1,4766:12321396,32833571:0,0,0 -k1,4766:32583028,32833571:20261632 -g1,4766:32583028,32833571 -) -(1,4768:6630773,33940710:25952256,410518,101187 -(1,4767:6630773,33940710:0,0,0 -g1,4767:6630773,33940710 -g1,4767:6630773,33940710 -g1,4767:6303093,33940710 -(1,4767:6303093,33940710:0,0,0 -) -g1,4767:6630773,33940710 -) -k1,4768:6630773,33940710:0 -g1,4768:10108376,33940710 -g1,4768:12953688,33940710 -g1,4768:13585980,33940710 -g1,4768:15166709,33940710 -g1,4768:16115146,33940710 -g1,4768:18960457,33940710 -k1,4768:18960457,33940710:1573 -h1,4768:20226613,33940710:0,0,0 -k1,4768:32583029,33940710:12356416 -g1,4768:32583029,33940710 -) -(1,4772:6630773,34458026:25952256,404226,76021 -(1,4770:6630773,34458026:0,0,0 -g1,4770:6630773,34458026 -g1,4770:6630773,34458026 -g1,4770:6303093,34458026 -(1,4770:6303093,34458026:0,0,0 -) -g1,4770:6630773,34458026 -) -g1,4772:7579210,34458026 -g1,4772:8843793,34458026 -g1,4772:10108376,34458026 -g1,4772:11372959,34458026 -h1,4772:12321396,34458026:0,0,0 -k1,4772:32583028,34458026:20261632 -g1,4772:32583028,34458026 -) -(1,4774:6630773,35565166:25952256,410518,101187 -(1,4773:6630773,35565166:0,0,0 -g1,4773:6630773,35565166 -g1,4773:6630773,35565166 -g1,4773:6303093,35565166 -(1,4773:6303093,35565166:0,0,0 -) -g1,4773:6630773,35565166 -) -k1,4774:6630773,35565166:0 -g1,4774:10108376,35565166 -g1,4774:15166708,35565166 -g1,4774:16115146,35565166 -g1,4774:18012020,35565166 -g1,4774:18960457,35565166 -g1,4774:21173477,35565166 -g1,4774:22121914,35565166 -g1,4774:23070351,35565166 -h1,4774:26231808,35565166:0,0,0 -k1,4774:32583029,35565166:6351221 -g1,4774:32583029,35565166 -) -(1,4775:6630773,36231344:25952256,410518,76021 -h1,4775:6630773,36231344:0,0,0 -k1,4775:6630773,36231344:0 -h1,4775:11689104,36231344:0,0,0 -k1,4775:32583028,36231344:20893924 -g1,4775:32583028,36231344 -) -(1,4792:6630773,36748660:25952256,410518,31456 -(1,4777:6630773,36748660:0,0,0 -g1,4777:6630773,36748660 -g1,4777:6630773,36748660 -g1,4777:6303093,36748660 -(1,4777:6303093,36748660:0,0,0 -) -g1,4777:6630773,36748660 -) -g1,4792:7579210,36748660 -h1,4792:9476084,36748660:0,0,0 -k1,4792:32583028,36748660:23106944 -g1,4792:32583028,36748660 -) -(1,4792:6630773,37414838:25952256,404226,76021 -h1,4792:6630773,37414838:0,0,0 -g1,4792:7579210,37414838 -g1,4792:8843793,37414838 -g1,4792:10108376,37414838 -g1,4792:11372959,37414838 -h1,4792:12321396,37414838:0,0,0 -k1,4792:32583028,37414838:20261632 -g1,4792:32583028,37414838 -) -(1,4792:6630773,38081016:25952256,379060,0 -h1,4792:6630773,38081016:0,0,0 -h1,4792:7263064,38081016:0,0,0 -k1,4792:32583028,38081016:25319964 -g1,4792:32583028,38081016 -) -(1,4792:6630773,38747194:25952256,410518,31456 -h1,4792:6630773,38747194:0,0,0 -g1,4792:7579210,38747194 -h1,4792:9476084,38747194:0,0,0 -k1,4792:32583028,38747194:23106944 -g1,4792:32583028,38747194 -) -(1,4792:6630773,39413372:25952256,410518,76021 -h1,4792:6630773,39413372:0,0,0 -g1,4792:7579210,39413372 -g1,4792:8843793,39413372 -h1,4792:12637541,39413372:0,0,0 -k1,4792:32583029,39413372:19945488 -g1,4792:32583029,39413372 -) -(1,4792:6630773,40079550:25952256,379060,0 -h1,4792:6630773,40079550:0,0,0 -h1,4792:7263064,40079550:0,0,0 -k1,4792:32583028,40079550:25319964 -g1,4792:32583028,40079550 -) -(1,4792:6630773,40745728:25952256,410518,31456 -h1,4792:6630773,40745728:0,0,0 -g1,4792:7579210,40745728 -h1,4792:10740667,40745728:0,0,0 -k1,4792:32583029,40745728:21842362 -g1,4792:32583029,40745728 -) -(1,4792:6630773,41411906:25952256,404226,76021 -h1,4792:6630773,41411906:0,0,0 -g1,4792:7579210,41411906 -g1,4792:8843793,41411906 -g1,4792:9476085,41411906 -g1,4792:10108377,41411906 -g1,4792:10740669,41411906 -g1,4792:11372961,41411906 -g1,4792:12005253,41411906 -h1,4792:12321399,41411906:0,0,0 -k1,4792:32583029,41411906:20261630 -g1,4792:32583029,41411906 -) -(1,4792:6630773,42078084:25952256,379060,0 -h1,4792:6630773,42078084:0,0,0 -h1,4792:7263064,42078084:0,0,0 -k1,4792:32583028,42078084:25319964 -g1,4792:32583028,42078084 -) -(1,4792:6630773,42744262:25952256,410518,31456 -h1,4792:6630773,42744262:0,0,0 -g1,4792:7579210,42744262 -h1,4792:10108375,42744262:0,0,0 -k1,4792:32583029,42744262:22474654 -g1,4792:32583029,42744262 -) -(1,4792:6630773,43410440:25952256,404226,76021 -h1,4792:6630773,43410440:0,0,0 -g1,4792:7579210,43410440 -g1,4792:8843793,43410440 -g1,4792:10740667,43410440 -g1,4792:11689104,43410440 -g1,4792:13902124,43410440 -g1,4792:14850561,43410440 -g1,4792:15482853,43410440 -h1,4792:18012018,43410440:0,0,0 -k1,4792:32583029,43410440:14571011 -g1,4792:32583029,43410440 -) -(1,4792:6630773,44076618:25952256,379060,0 -h1,4792:6630773,44076618:0,0,0 -h1,4792:7263064,44076618:0,0,0 -k1,4792:32583028,44076618:25319964 -g1,4792:32583028,44076618 -) -(1,4792:6630773,44742796:25952256,410518,101187 -h1,4792:6630773,44742796:0,0,0 -g1,4792:7579210,44742796 -h1,4792:11689104,44742796:0,0,0 -k1,4792:32583028,44742796:20893924 -g1,4792:32583028,44742796 -) -(1,4792:6630773,45408974:25952256,404226,101187 -h1,4792:6630773,45408974:0,0,0 -g1,4792:7579210,45408974 -g1,4792:8843793,45408974 -g1,4792:10740667,45408974 -g1,4792:11689104,45408974 -g1,4792:13902124,45408974 -g1,4792:14850561,45408974 -g1,4792:15798998,45408974 -h1,4792:18960455,45408974:0,0,0 -k1,4792:32583029,45408974:13622574 -g1,4792:32583029,45408974 -) -] -) -g1,4793:32583029,45510161 -g1,4793:6630773,45510161 -g1,4793:6630773,45510161 -g1,4793:32583029,45510161 -g1,4793:32583029,45510161 -) -h1,4793:6630773,45706769:0,0,0 -] -(1,4797:32583029,45706769:0,0,0 -g1,4797:32583029,45706769 -) -) -] -(1,4797:6630773,47279633:25952256,0,0 -h1,4797:6630773,47279633:25952256,0,0 -) -] -h1,4797:4262630,4025873:0,0,0 -] -!24033 +[1,4803:6630773,45706769:25952256,40108032,0 +v1,4726:6630773,6254097:0,393216,0 +(1,4726:6630773,7939688:25952256,2078807,616038 +g1,4726:6630773,7939688 +(1,4726:6630773,7939688:25952256,2078807,616038 +(1,4726:6630773,8555726:25952256,2694845,0 +[1,4726:6630773,8555726:25952256,2694845,0 +(1,4726:6630773,8529512:25952256,2668631,0 +r1,4726:6656987,8529512:26214,2668631,0 +[1,4726:6656987,8529512:25899828,2668631,0 +(1,4726:6656987,7939688:25899828,1488983,0 +[1,4726:7246811,7939688:24720180,1488983,0 +(1,4726:7246811,6963852:24720180,513147,7863 +k1,4725:8709827,6963852:192928 +k1,4725:11229938,6963852:192928 +k1,4725:12082158,6963852:192928 +k1,4725:14895215,6963852:192928 +k1,4725:17396321,6963852:192928 +k1,4725:18275411,6963852:192928 +k1,4725:21181529,6963852:192927 +k1,4725:21990495,6963852:192928 +k1,4725:23202508,6963852:192928 +k1,4725:24784799,6963852:192928 +k1,4725:27027693,6963852:192928 +k1,4725:28772514,6963852:192928 +k1,4725:30947906,6963852:192928 +k1,4725:31966991,6963852:0 +) +(1,4726:7246811,7805340:24720180,513147,134348 +g1,4725:10006532,7805340 +g1,4725:11015131,7805340 +g1,4725:12712513,7805340 +h1,4725:13509431,7805340:0,0,0 +g1,4725:13708660,7805340 +g1,4725:15411940,7805340 +g1,4725:16630254,7805340 +g1,4725:17921968,7805340 +g1,4725:18788353,7805340 +(1,4725:18788353,7805340:0,452978,115847 +r1,4726:21256890,7805340:2468537,568825,115847 +k1,4725:18788353,7805340:-2468537 +) +(1,4725:18788353,7805340:2468537,452978,115847 +k1,4725:18788353,7805340:3277 +h1,4725:21253613,7805340:0,411205,112570 +) +g1,4725:21456119,7805340 +g1,4725:22464718,7805340 +g1,4725:24888239,7805340 +g1,4725:25618965,7805340 +k1,4726:31966991,7805340:3084333 +g1,4726:31966991,7805340 +) +] +) +] +r1,4726:32583029,8529512:26214,2668631,0 +) +] +) +) +g1,4726:32583029,7939688 +) +h1,4726:6630773,8555726:0,0,0 +(1,4732:6630773,11677866:25952256,32768,229376 +(1,4732:6630773,11677866:0,32768,229376 +(1,4732:6630773,11677866:5505024,32768,229376 +r1,4732:12135797,11677866:5505024,262144,229376 +) +k1,4732:6630773,11677866:-5505024 +) +(1,4732:6630773,11677866:25952256,32768,0 +r1,4732:32583029,11677866:25952256,32768,0 +) +) +(1,4732:6630773,13282194:25952256,615776,161218 +(1,4732:6630773,13282194:2464678,582746,14155 +g1,4732:6630773,13282194 +g1,4732:9095451,13282194 +) +g1,4732:13374428,13282194 +g1,4732:14432179,13282194 +g1,4732:15243777,13282194 +k1,4732:32583029,13282194:14486077 +g1,4732:32583029,13282194 +) +(1,4736:6630773,14516898:25952256,505283,134348 +k1,4735:7232437,14516898:186821 +k1,4735:9709098,14516898:186833 +k1,4735:11000213,14516898:186833 +k1,4735:12662261,14516898:186833 +k1,4735:16131792,14516898:186833 +k1,4735:19559380,14516898:186833 +k1,4735:20737773,14516898:186833 +k1,4735:23769525,14516898:186834 +k1,4735:25469584,14516898:186833 +k1,4735:26307845,14516898:186833 +k1,4735:28112107,14516898:186833 +k1,4735:31019995,14516898:186833 +k1,4735:32583029,14516898:0 +) +(1,4736:6630773,15358386:25952256,513147,134348 +k1,4735:8444945,15358386:256381 +k1,4735:9692885,15358386:256380 +k1,4735:11462492,15358386:256381 +k1,4735:12480400,15358386:256380 +k1,4735:13151567,15358386:256324 +k1,4735:15013579,15358386:256380 +k1,4735:15921388,15358386:256381 +k1,4735:17795198,15358386:256381 +k1,4735:20043872,15358386:256380 +k1,4735:21446478,15358386:256381 +k1,4735:24085748,15358386:256381 +k1,4735:26410444,15358386:256380 +k1,4735:27282863,15358386:256381 +k1,4735:28928606,15358386:256380 +k1,4735:31391584,15358386:256381 +k1,4735:32583029,15358386:0 +) +(1,4736:6630773,16199874:25952256,513147,102891 +k1,4735:8694970,16199874:220014 +k1,4735:9574275,16199874:220013 +k1,4735:11688279,16199874:220014 +k1,4735:13874373,16199874:220014 +k1,4735:14992229,16199874:220013 +k1,4735:16908970,16199874:220014 +k1,4735:20238012,16199874:220014 +k1,4735:21449585,16199874:220013 +k1,4735:23712356,16199874:220014 +k1,4735:24583797,16199874:220013 +k1,4735:26184655,16199874:220014 +k1,4735:28074526,16199874:220014 +k1,4735:29485984,16199874:220013 +k1,4735:31086842,16199874:220014 +k1,4735:32583029,16199874:0 +) +(1,4736:6630773,17041362:25952256,505283,134348 +k1,4735:7979604,17041362:244549 +k1,4735:9636453,17041362:244548 +k1,4735:11072447,17041362:244549 +k1,4735:12931803,17041362:244549 +k1,4735:15639849,17041362:244548 +k1,4735:19167096,17041362:244549 +k1,4735:22322099,17041362:244549 +(1,4735:22322099,17041362:0,452978,115847 +r1,4735:25494059,17041362:3171960,568825,115847 +k1,4735:22322099,17041362:-3171960 +) +(1,4735:22322099,17041362:3171960,452978,115847 +k1,4735:22322099,17041362:3277 +h1,4735:25490782,17041362:0,411205,112570 +) +k1,4735:25738608,17041362:244549 +k1,4735:26514653,17041362:244548 +k1,4735:28754118,17041362:244549 +k1,4735:29650095,17041362:244549 +k1,4735:30642409,17041362:244548 +k1,4735:31821501,17041362:244549 +k1,4735:32583029,17041362:0 +) +(1,4736:6630773,17882850:25952256,505283,134348 +g1,4735:10439070,17882850 +g1,4735:11289727,17882850 +g1,4735:13106385,17882850 +g1,4735:16275050,17882850 +g1,4735:19154702,17882850 +g1,4735:20747882,17882850 +g1,4735:22510145,17882850 +g1,4735:22510145,17882850 +k1,4736:32583029,17882850:10072884 +g1,4736:32583029,17882850 +) +v1,4738:6630773,18863600:0,393216,0 +(1,4753:6630773,23270853:25952256,4800469,196608 +g1,4753:6630773,23270853 +g1,4753:6630773,23270853 +g1,4753:6434165,23270853 +(1,4753:6434165,23270853:0,4800469,196608 +r1,4753:32779637,23270853:26345472,4997077,196608 +k1,4753:6434165,23270853:-26345472 +) +(1,4753:6434165,23270853:26345472,4800469,196608 +[1,4753:6630773,23270853:25952256,4603861,0 +(1,4740:6630773,19077510:25952256,410518,101187 +(1,4739:6630773,19077510:0,0,0 +g1,4739:6630773,19077510 +g1,4739:6630773,19077510 +g1,4739:6303093,19077510 +(1,4739:6303093,19077510:0,0,0 +) +g1,4739:6630773,19077510 +) +g1,4740:8211502,19077510 +g1,4740:9159940,19077510 +g1,4740:13269835,19077510 +g1,4740:13902127,19077510 +g1,4740:15482857,19077510 +g1,4740:16115149,19077510 +g1,4740:16747441,19077510 +g1,4740:18328170,19077510 +g1,4740:18960462,19077510 +g1,4740:19592754,19077510 +g1,4740:22121921,19077510 +h1,4740:24334940,19077510:0,0,0 +k1,4740:32583029,19077510:8248089 +g1,4740:32583029,19077510 +) +(1,4741:6630773,19743688:25952256,410518,76021 +h1,4741:6630773,19743688:0,0,0 +k1,4741:6630773,19743688:0 +h1,4741:10740667,19743688:0,0,0 +k1,4741:32583029,19743688:21842362 +g1,4741:32583029,19743688 +) +(1,4745:6630773,20475402:25952256,379060,7863 +(1,4743:6630773,20475402:0,0,0 +g1,4743:6630773,20475402 +g1,4743:6630773,20475402 +g1,4743:6303093,20475402 +(1,4743:6303093,20475402:0,0,0 +) +g1,4743:6630773,20475402 +) +g1,4745:7579210,20475402 +h1,4745:8843793,20475402:0,0,0 +k1,4745:32583029,20475402:23739236 +g1,4745:32583029,20475402 +) +(1,4747:6630773,21796940:25952256,410518,76021 +(1,4746:6630773,21796940:0,0,0 +g1,4746:6630773,21796940 +g1,4746:6630773,21796940 +g1,4746:6303093,21796940 +(1,4746:6303093,21796940:0,0,0 +) +g1,4746:6630773,21796940 +) +k1,4747:6630773,21796940:0 +g1,4747:11056813,21796940 +g1,4747:12005251,21796940 +g1,4747:13902125,21796940 +g1,4747:14850562,21796940 +g1,4747:17063582,21796940 +g1,4747:18012019,21796940 +g1,4747:18644311,21796940 +h1,4747:21173476,21796940:0,0,0 +k1,4747:32583029,21796940:11409553 +g1,4747:32583029,21796940 +) +(1,4748:6630773,22463118:25952256,410518,76021 +h1,4748:6630773,22463118:0,0,0 +k1,4748:6630773,22463118:0 +h1,4748:10740667,22463118:0,0,0 +k1,4748:32583029,22463118:21842362 +g1,4748:32583029,22463118 +) +(1,4752:6630773,23194832:25952256,404226,76021 +(1,4750:6630773,23194832:0,0,0 +g1,4750:6630773,23194832 +g1,4750:6630773,23194832 +g1,4750:6303093,23194832 +(1,4750:6303093,23194832:0,0,0 +) +g1,4750:6630773,23194832 +) +g1,4752:7579210,23194832 +g1,4752:8843793,23194832 +g1,4752:10740667,23194832 +g1,4752:11689104,23194832 +g1,4752:13902124,23194832 +g1,4752:14850561,23194832 +g1,4752:15482853,23194832 +h1,4752:18012018,23194832:0,0,0 +k1,4752:32583029,23194832:14571011 +g1,4752:32583029,23194832 +) +] +) +g1,4753:32583029,23270853 +g1,4753:6630773,23270853 +g1,4753:6630773,23270853 +g1,4753:32583029,23270853 +g1,4753:32583029,23270853 +) +h1,4753:6630773,23467461:0,0,0 +(1,4757:6630773,24623521:25952256,513147,115847 +h1,4756:6630773,24623521:983040,0,0 +k1,4756:10505236,24623521:163159 +k1,4756:11814619,24623521:163158 +(1,4756:11814619,24623521:0,452978,115847 +r1,4756:14283156,24623521:2468537,568825,115847 +k1,4756:11814619,24623521:-2468537 +) +(1,4756:11814619,24623521:2468537,452978,115847 +k1,4756:11814619,24623521:3277 +h1,4756:14279879,24623521:0,411205,112570 +) +k1,4756:14619985,24623521:163159 +(1,4756:14619985,24623521:0,452978,115847 +r1,4756:16385098,24623521:1765113,568825,115847 +k1,4756:14619985,24623521:-1765113 +) +(1,4756:14619985,24623521:1765113,452978,115847 +k1,4756:14619985,24623521:3277 +h1,4756:16381821,24623521:0,411205,112570 +) +k1,4756:16548256,24623521:163158 +k1,4756:17394300,24623521:163159 +(1,4756:17394300,24623521:0,452978,115847 +r1,4756:20214549,24623521:2820249,568825,115847 +k1,4756:17394300,24623521:-2820249 +) +(1,4756:17394300,24623521:2820249,452978,115847 +k1,4756:17394300,24623521:3277 +h1,4756:20211272,24623521:0,411205,112570 +) +k1,4756:20377708,24623521:163159 +k1,4756:22551511,24623521:163158 +k1,4756:24725315,24623521:163159 +k1,4756:27743221,24623521:163158 +k1,4756:29474001,24623521:163159 +k1,4756:32583029,24623521:0 +) +(1,4757:6630773,25465009:25952256,505283,134348 +k1,4756:8854289,25465009:185346 +k1,4756:9655674,25465009:185347 +k1,4756:10255849,25465009:185332 +k1,4756:12904693,25465009:185346 +k1,4756:14281485,25465009:185347 +k1,4756:17251456,25465009:185346 +k1,4756:18583027,25465009:185346 +(1,4756:18583027,25465009:0,452978,115847 +r1,4756:21754987,25465009:3171960,568825,115847 +k1,4756:18583027,25465009:-3171960 +) +(1,4756:18583027,25465009:3171960,452978,115847 +k1,4756:18583027,25465009:3277 +h1,4756:21751710,25465009:0,411205,112570 +) +k1,4756:22114004,25465009:185347 +(1,4756:22114004,25465009:0,452978,115847 +r1,4756:24582541,25465009:2468537,568825,115847 +k1,4756:22114004,25465009:-2468537 +) +(1,4756:22114004,25465009:2468537,452978,115847 +k1,4756:22114004,25465009:3277 +h1,4756:24579264,25465009:0,411205,112570 +) +k1,4756:24767887,25465009:185346 +k1,4756:25636118,25465009:185346 +(1,4756:25636118,25465009:0,452978,115847 +r1,4756:29159790,25465009:3523672,568825,115847 +k1,4756:25636118,25465009:-3523672 +) +(1,4756:25636118,25465009:3523672,452978,115847 +k1,4756:25636118,25465009:3277 +h1,4756:29156513,25465009:0,411205,112570 +) +k1,4756:29345136,25465009:185346 +k1,4756:30465026,25465009:185347 +k1,4756:31540351,25465009:185346 +k1,4757:32583029,25465009:0 +) +(1,4757:6630773,26306497:25952256,513147,126483 +k1,4756:7716367,26306497:151051 +k1,4756:9261370,26306497:151052 +(1,4756:9261370,26306497:0,414482,115847 +r1,4756:10674771,26306497:1413401,530329,115847 +k1,4756:9261370,26306497:-1413401 +) +(1,4756:9261370,26306497:1413401,414482,115847 +k1,4756:9261370,26306497:3277 +h1,4756:10671494,26306497:0,411205,112570 +) +k1,4756:11032916,26306497:151051 +k1,4756:12203052,26306497:151051 +k1,4756:14034447,26306497:151052 +k1,4756:14844790,26306497:151051 +k1,4756:16014926,26306497:151051 +k1,4756:19396247,26306497:151051 +k1,4756:22829997,26306497:151052 +k1,4756:25403259,26306497:151051 +k1,4756:27370313,26306497:151051 +k1,4756:28712810,26306497:151052 +k1,4756:29798404,26306497:151051 +k1,4756:32583029,26306497:0 +) +(1,4757:6630773,27147985:25952256,513147,115847 +k1,4756:7651364,27147985:205323 +k1,4756:8922959,27147985:205324 +k1,4756:10629056,27147985:205323 +k1,4756:11782031,27147985:205324 +k1,4756:12753470,27147985:205323 +k1,4756:16241492,27147985:205324 +k1,4756:19175079,27147985:205323 +(1,4756:19175079,27147985:0,452978,115847 +r1,4756:21291904,27147985:2116825,568825,115847 +k1,4756:19175079,27147985:-2116825 +) +(1,4756:19175079,27147985:2116825,452978,115847 +k1,4756:19175079,27147985:3277 +h1,4756:21288627,27147985:0,411205,112570 +) +k1,4756:21670897,27147985:205323 +(1,4756:21670897,27147985:0,452978,115847 +r1,4756:24491146,27147985:2820249,568825,115847 +k1,4756:21670897,27147985:-2820249 +) +(1,4756:21670897,27147985:2820249,452978,115847 +k1,4756:21670897,27147985:3277 +h1,4756:24487869,27147985:0,411205,112570 +) +k1,4756:24696470,27147985:205324 +k1,4756:26093238,27147985:205323 +(1,4756:26093238,27147985:0,452978,115847 +r1,4756:30320334,27147985:4227096,568825,115847 +k1,4756:26093238,27147985:-4227096 +) +(1,4756:26093238,27147985:4227096,452978,115847 +k1,4756:26093238,27147985:3277 +h1,4756:30317057,27147985:0,411205,112570 +) +k1,4756:30525658,27147985:205324 +k1,4756:31835263,27147985:205323 +k1,4756:32583029,27147985:0 +) +(1,4757:6630773,27989473:25952256,513147,126483 +k1,4756:8383405,27989473:239406 +k1,4756:10016762,27989473:239406 +k1,4756:11387974,27989473:239405 +k1,4756:14579777,27989473:239406 +k1,4756:15447018,27989473:239406 +k1,4756:18526099,27989473:239406 +k1,4756:21219827,27989473:239405 +(1,4756:21219827,27989473:0,452978,115847 +r1,4756:22984940,27989473:1765113,568825,115847 +k1,4756:21219827,27989473:-1765113 +) +(1,4756:21219827,27989473:1765113,452978,115847 +k1,4756:21219827,27989473:3277 +h1,4756:22981663,27989473:0,411205,112570 +) +k1,4756:23224346,27989473:239406 +k1,4756:26089124,27989473:239406 +k1,4756:27094646,27989473:239406 +k1,4756:31261624,27989473:239405 +k1,4756:32168186,27989473:239406 +k1,4757:32583029,27989473:0 +) +(1,4757:6630773,28830961:25952256,505283,134348 +g1,4756:9119830,28830961 +g1,4756:12299636,28830961 +g1,4756:14007504,28830961 +k1,4757:32583029,28830961:15292827 +g1,4757:32583029,28830961 +) +v1,4759:6630773,29811711:0,393216,0 +(1,4799:6630773,45510161:25952256,16091666,196608 +g1,4799:6630773,45510161 +g1,4799:6630773,45510161 +g1,4799:6434165,45510161 +(1,4799:6434165,45510161:0,16091666,196608 +r1,4799:32779637,45510161:26345472,16288274,196608 +k1,4799:6434165,45510161:-26345472 +) +(1,4799:6434165,45510161:26345472,16091666,196608 +[1,4799:6630773,45510161:25952256,15895058,0 +(1,4761:6630773,30025621:25952256,410518,76021 +(1,4760:6630773,30025621:0,0,0 +g1,4760:6630773,30025621 +g1,4760:6630773,30025621 +g1,4760:6303093,30025621 +(1,4760:6303093,30025621:0,0,0 +) +g1,4760:6630773,30025621 +) +k1,4761:6630773,30025621:0 +h1,4761:10108375,30025621:0,0,0 +k1,4761:32583029,30025621:22474654 +g1,4761:32583029,30025621 +) +(1,4765:6630773,30542937:25952256,404226,101187 +(1,4763:6630773,30542937:0,0,0 +g1,4763:6630773,30542937 +g1,4763:6630773,30542937 +g1,4763:6303093,30542937 +(1,4763:6303093,30542937:0,0,0 +) +g1,4763:6630773,30542937 +) +g1,4765:7579210,30542937 +g1,4765:8843793,30542937 +g1,4765:10108376,30542937 +g1,4765:11372959,30542937 +h1,4765:12321396,30542937:0,0,0 +k1,4765:32583028,30542937:20261632 +g1,4765:32583028,30542937 +) +(1,4767:6630773,31650077:25952256,410518,101187 +(1,4766:6630773,31650077:0,0,0 +g1,4766:6630773,31650077 +g1,4766:6630773,31650077 +g1,4766:6303093,31650077 +(1,4766:6303093,31650077:0,0,0 +) +g1,4766:6630773,31650077 +) +k1,4767:6630773,31650077:0 +g1,4767:10424521,31650077 +g1,4767:11372959,31650077 +k1,4767:11372959,31650077:0 +h1,4767:17695873,31650077:0,0,0 +k1,4767:32583029,31650077:14887156 +g1,4767:32583029,31650077 +) +(1,4768:6630773,32316255:25952256,410518,76021 +h1,4768:6630773,32316255:0,0,0 +k1,4768:6630773,32316255:0 +h1,4768:10108375,32316255:0,0,0 +k1,4768:32583029,32316255:22474654 +g1,4768:32583029,32316255 +) +(1,4772:6630773,32833571:25952256,404226,76021 +(1,4770:6630773,32833571:0,0,0 +g1,4770:6630773,32833571 +g1,4770:6630773,32833571 +g1,4770:6303093,32833571 +(1,4770:6303093,32833571:0,0,0 +) +g1,4770:6630773,32833571 +) +g1,4772:7579210,32833571 +g1,4772:8843793,32833571 +g1,4772:10108376,32833571 +g1,4772:11372959,32833571 +h1,4772:12321396,32833571:0,0,0 +k1,4772:32583028,32833571:20261632 +g1,4772:32583028,32833571 +) +(1,4774:6630773,33940710:25952256,410518,101187 +(1,4773:6630773,33940710:0,0,0 +g1,4773:6630773,33940710 +g1,4773:6630773,33940710 +g1,4773:6303093,33940710 +(1,4773:6303093,33940710:0,0,0 +) +g1,4773:6630773,33940710 +) +k1,4774:6630773,33940710:0 +g1,4774:10108376,33940710 +g1,4774:12953688,33940710 +g1,4774:13585980,33940710 +g1,4774:15166709,33940710 +g1,4774:16115146,33940710 +g1,4774:18960457,33940710 +k1,4774:18960457,33940710:1573 +h1,4774:20226613,33940710:0,0,0 +k1,4774:32583029,33940710:12356416 +g1,4774:32583029,33940710 +) +(1,4778:6630773,34458026:25952256,404226,76021 +(1,4776:6630773,34458026:0,0,0 +g1,4776:6630773,34458026 +g1,4776:6630773,34458026 +g1,4776:6303093,34458026 +(1,4776:6303093,34458026:0,0,0 +) +g1,4776:6630773,34458026 +) +g1,4778:7579210,34458026 +g1,4778:8843793,34458026 +g1,4778:10108376,34458026 +g1,4778:11372959,34458026 +h1,4778:12321396,34458026:0,0,0 +k1,4778:32583028,34458026:20261632 +g1,4778:32583028,34458026 +) +(1,4780:6630773,35565166:25952256,410518,101187 +(1,4779:6630773,35565166:0,0,0 +g1,4779:6630773,35565166 +g1,4779:6630773,35565166 +g1,4779:6303093,35565166 +(1,4779:6303093,35565166:0,0,0 +) +g1,4779:6630773,35565166 +) +k1,4780:6630773,35565166:0 +g1,4780:10108376,35565166 +g1,4780:15166708,35565166 +g1,4780:16115146,35565166 +g1,4780:18012020,35565166 +g1,4780:18960457,35565166 +g1,4780:21173477,35565166 +g1,4780:22121914,35565166 +g1,4780:23070351,35565166 +h1,4780:26231808,35565166:0,0,0 +k1,4780:32583029,35565166:6351221 +g1,4780:32583029,35565166 +) +(1,4781:6630773,36231344:25952256,410518,76021 +h1,4781:6630773,36231344:0,0,0 +k1,4781:6630773,36231344:0 +h1,4781:11689104,36231344:0,0,0 +k1,4781:32583028,36231344:20893924 +g1,4781:32583028,36231344 +) +(1,4798:6630773,36748660:25952256,410518,31456 +(1,4783:6630773,36748660:0,0,0 +g1,4783:6630773,36748660 +g1,4783:6630773,36748660 +g1,4783:6303093,36748660 +(1,4783:6303093,36748660:0,0,0 +) +g1,4783:6630773,36748660 +) +g1,4798:7579210,36748660 +h1,4798:9476084,36748660:0,0,0 +k1,4798:32583028,36748660:23106944 +g1,4798:32583028,36748660 +) +(1,4798:6630773,37414838:25952256,404226,76021 +h1,4798:6630773,37414838:0,0,0 +g1,4798:7579210,37414838 +g1,4798:8843793,37414838 +g1,4798:10108376,37414838 +g1,4798:11372959,37414838 +h1,4798:12321396,37414838:0,0,0 +k1,4798:32583028,37414838:20261632 +g1,4798:32583028,37414838 +) +(1,4798:6630773,38081016:25952256,379060,0 +h1,4798:6630773,38081016:0,0,0 +h1,4798:7263064,38081016:0,0,0 +k1,4798:32583028,38081016:25319964 +g1,4798:32583028,38081016 +) +(1,4798:6630773,38747194:25952256,410518,31456 +h1,4798:6630773,38747194:0,0,0 +g1,4798:7579210,38747194 +h1,4798:9476084,38747194:0,0,0 +k1,4798:32583028,38747194:23106944 +g1,4798:32583028,38747194 +) +(1,4798:6630773,39413372:25952256,410518,76021 +h1,4798:6630773,39413372:0,0,0 +g1,4798:7579210,39413372 +g1,4798:8843793,39413372 +h1,4798:12637541,39413372:0,0,0 +k1,4798:32583029,39413372:19945488 +g1,4798:32583029,39413372 +) +(1,4798:6630773,40079550:25952256,379060,0 +h1,4798:6630773,40079550:0,0,0 +h1,4798:7263064,40079550:0,0,0 +k1,4798:32583028,40079550:25319964 +g1,4798:32583028,40079550 +) +(1,4798:6630773,40745728:25952256,410518,31456 +h1,4798:6630773,40745728:0,0,0 +g1,4798:7579210,40745728 +h1,4798:10740667,40745728:0,0,0 +k1,4798:32583029,40745728:21842362 +g1,4798:32583029,40745728 +) +(1,4798:6630773,41411906:25952256,404226,76021 +h1,4798:6630773,41411906:0,0,0 +g1,4798:7579210,41411906 +g1,4798:8843793,41411906 +g1,4798:9476085,41411906 +g1,4798:10108377,41411906 +g1,4798:10740669,41411906 +g1,4798:11372961,41411906 +g1,4798:12005253,41411906 +h1,4798:12321399,41411906:0,0,0 +k1,4798:32583029,41411906:20261630 +g1,4798:32583029,41411906 +) +(1,4798:6630773,42078084:25952256,379060,0 +h1,4798:6630773,42078084:0,0,0 +h1,4798:7263064,42078084:0,0,0 +k1,4798:32583028,42078084:25319964 +g1,4798:32583028,42078084 +) +(1,4798:6630773,42744262:25952256,410518,31456 +h1,4798:6630773,42744262:0,0,0 +g1,4798:7579210,42744262 +h1,4798:10108375,42744262:0,0,0 +k1,4798:32583029,42744262:22474654 +g1,4798:32583029,42744262 +) +(1,4798:6630773,43410440:25952256,404226,76021 +h1,4798:6630773,43410440:0,0,0 +g1,4798:7579210,43410440 +g1,4798:8843793,43410440 +g1,4798:10740667,43410440 +g1,4798:11689104,43410440 +g1,4798:13902124,43410440 +g1,4798:14850561,43410440 +g1,4798:15482853,43410440 +h1,4798:18012018,43410440:0,0,0 +k1,4798:32583029,43410440:14571011 +g1,4798:32583029,43410440 +) +(1,4798:6630773,44076618:25952256,379060,0 +h1,4798:6630773,44076618:0,0,0 +h1,4798:7263064,44076618:0,0,0 +k1,4798:32583028,44076618:25319964 +g1,4798:32583028,44076618 +) +(1,4798:6630773,44742796:25952256,410518,101187 +h1,4798:6630773,44742796:0,0,0 +g1,4798:7579210,44742796 +h1,4798:11689104,44742796:0,0,0 +k1,4798:32583028,44742796:20893924 +g1,4798:32583028,44742796 +) +(1,4798:6630773,45408974:25952256,404226,101187 +h1,4798:6630773,45408974:0,0,0 +g1,4798:7579210,45408974 +g1,4798:8843793,45408974 +g1,4798:10740667,45408974 +g1,4798:11689104,45408974 +g1,4798:13902124,45408974 +g1,4798:14850561,45408974 +g1,4798:15798998,45408974 +h1,4798:18960455,45408974:0,0,0 +k1,4798:32583029,45408974:13622574 +g1,4798:32583029,45408974 +) +] +) +g1,4799:32583029,45510161 +g1,4799:6630773,45510161 +g1,4799:6630773,45510161 +g1,4799:32583029,45510161 +g1,4799:32583029,45510161 +) +h1,4799:6630773,45706769:0,0,0 +] +(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 +) +] +h1,4803:4262630,4025873:0,0,0 +] +!24011 }88 -Input:610:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:611:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:612:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:613:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:614:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:615:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:616:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!606 +Input:606:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:607:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:608:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:609:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:610:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:611:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:612:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!648 {89 -[1,4855:4262630,47279633:28320399,43253760,0 -(1,4855:4262630,4025873:0,0,0 -[1,4855:-473657,4025873:25952256,0,0 -(1,4855:-473657,-710414:25952256,0,0 -h1,4855:-473657,-710414:0,0,0 -(1,4855:-473657,-710414:0,0,0 -(1,4855:-473657,-710414:0,0,0 -g1,4855:-473657,-710414 -(1,4855:-473657,-710414:65781,0,65781 -g1,4855:-407876,-710414 -[1,4855:-407876,-644633:0,0,0 +[1,4861:4262630,47279633:28320399,43253760,0 +(1,4861:4262630,4025873:0,0,0 +[1,4861:-473657,4025873:25952256,0,0 +(1,4861:-473657,-710414:25952256,0,0 +h1,4861:-473657,-710414:0,0,0 +(1,4861:-473657,-710414:0,0,0 +(1,4861:-473657,-710414:0,0,0 +g1,4861:-473657,-710414 +(1,4861:-473657,-710414:65781,0,65781 +g1,4861:-407876,-710414 +[1,4861:-407876,-644633:0,0,0 ] ) -k1,4855:-473657,-710414:-65781 +k1,4861:-473657,-710414:-65781 ) ) -k1,4855:25478599,-710414:25952256 -g1,4855:25478599,-710414 +k1,4861:25478599,-710414:25952256 +g1,4861:25478599,-710414 ) ] ) -[1,4855:6630773,47279633:25952256,43253760,0 -[1,4855:6630773,4812305:25952256,786432,0 -(1,4855:6630773,4812305:25952256,505283,134348 -(1,4855:6630773,4812305:25952256,505283,134348 -g1,4855:3078558,4812305 -[1,4855:3078558,4812305:0,0,0 -(1,4855:3078558,2439708:0,1703936,0 -k1,4855:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4855:2537886,2439708:1179648,16384,0 +[1,4861:6630773,47279633:25952256,43253760,0 +[1,4861:6630773,4812305:25952256,786432,0 +(1,4861:6630773,4812305:25952256,505283,134348 +(1,4861:6630773,4812305:25952256,505283,134348 +g1,4861:3078558,4812305 +[1,4861:3078558,4812305:0,0,0 +(1,4861:3078558,2439708:0,1703936,0 +k1,4861:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4861:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4855:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4861:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4855:3078558,4812305:0,0,0 -(1,4855:3078558,2439708:0,1703936,0 -g1,4855:29030814,2439708 -g1,4855:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4855:36151628,1915420:16384,1179648,0 +[1,4861:3078558,4812305:0,0,0 +(1,4861:3078558,2439708:0,1703936,0 +g1,4861:29030814,2439708 +g1,4861:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4861:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4855:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4861:37855564,2439708:1179648,16384,0 ) ) -k1,4855:3078556,2439708:-34777008 +k1,4861:3078556,2439708:-34777008 ) ] -[1,4855:3078558,4812305:0,0,0 -(1,4855:3078558,49800853:0,16384,2228224 -k1,4855:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4855:2537886,49800853:1179648,16384,0 +[1,4861:3078558,4812305:0,0,0 +(1,4861:3078558,49800853:0,16384,2228224 +k1,4861:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4861:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4855:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4861:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) -) -) -] -[1,4855:3078558,4812305:0,0,0 -(1,4855:3078558,49800853:0,16384,2228224 -g1,4855:29030814,49800853 -g1,4855:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4855:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4855:37855564,49800853:1179648,16384,0 -) -) -k1,4855:3078556,49800853:-34777008 -) -] -g1,4855:6630773,4812305 -k1,4855:19562994,4812305:12135303 -g1,4855:20949735,4812305 -g1,4855:21598541,4812305 -g1,4855:24912696,4812305 -g1,4855:27600327,4812305 -g1,4855:29010006,4812305 -) -) -] -[1,4855:6630773,45706769:25952256,40108032,0 -(1,4855:6630773,45706769:25952256,40108032,0 -(1,4855:6630773,45706769:0,0,0 -g1,4855:6630773,45706769 -) -[1,4855:6630773,45706769:25952256,40108032,0 -v1,4797:6630773,6254097:0,393216,0 -(1,4840:6630773,29030983:25952256,23170102,616038 -g1,4840:6630773,29030983 -(1,4840:6630773,29030983:25952256,23170102,616038 -(1,4840:6630773,29647021:25952256,23786140,0 -[1,4840:6630773,29647021:25952256,23786140,0 -(1,4840:6630773,29620807:25952256,23733712,0 -r1,4840:6656987,29620807:26214,23733712,0 -[1,4840:6656987,29620807:25899828,23733712,0 -(1,4840:6656987,29030983:25899828,22554064,0 -[1,4840:7246811,29030983:24720180,22554064,0 -(1,4798:7246811,7562455:24720180,1085536,298548 -(1,4797:7246811,7562455:0,1085536,298548 -r1,4840:8753226,7562455:1506415,1384084,298548 -k1,4797:7246811,7562455:-1506415 -) -(1,4797:7246811,7562455:1506415,1085536,298548 -) -k1,4797:8910028,7562455:156802 -k1,4797:10899217,7562455:156802 -k1,4797:11587516,7562455:156802 -k1,4797:12553688,7562455:156802 -k1,4797:16023990,7562455:156802 -k1,4797:16832220,7562455:156802 -k1,4797:18008106,7562455:156801 -k1,4797:20931183,7562455:156802 -k1,4797:23443349,7562455:156802 -k1,4797:26417544,7562455:156802 -k1,4797:27765791,7562455:156802 -k1,4797:30325143,7562455:156802 -k1,4797:31141237,7562455:156802 -k1,4798:31966991,7562455:0 -) -(1,4798:7246811,8403943:24720180,513147,134348 -k1,4797:10089007,8403943:172259 -k1,4797:11333434,8403943:172258 -k1,4797:12571964,8403943:172259 -k1,4797:13510339,8403943:172259 -k1,4797:16467222,8403943:172258 -k1,4797:17830926,8403943:172259 -k1,4797:21080100,8403943:172259 -k1,4797:22536865,8403943:172259 -k1,4797:23813405,8403943:172258 -k1,4797:24733430,8403943:172259 -k1,4797:26418915,8403943:172259 -k1,4797:27242601,8403943:172258 -k1,4797:29677163,8403943:172259 -k1,4797:31966991,8403943:0 -) -(1,4798:7246811,9245431:24720180,505283,134348 -k1,4797:8581124,9245431:201851 -k1,4797:11509928,9245431:201851 -k1,4797:15992591,9245431:201851 -k1,4797:19477140,9245431:201851 -k1,4797:20602393,9245431:201851 -k1,4797:22539637,9245431:201851 -k1,4797:24969057,9245431:201851 -k1,4797:28279936,9245431:201851 -k1,4797:29013284,9245431:201851 -k1,4797:29570995,9245431:201851 -k1,4798:31966991,9245431:0 -) -(1,4798:7246811,10086919:24720180,505283,134348 -k1,4797:9309348,10086919:152163 -k1,4797:11416449,10086919:152162 -k1,4797:12853118,10086919:152163 -k1,4797:15292488,10086919:152163 -k1,4797:15976147,10086919:152162 -k1,4797:19693469,10086919:152163 -k1,4797:23566765,10086919:152162 -k1,4797:25094529,10086919:152163 -k1,4797:26944730,10086919:152163 -k1,4797:30175773,10086919:152162 -k1,4797:30683796,10086919:152163 -k1,4797:31966991,10086919:0 -) -(1,4798:7246811,10928407:24720180,513147,134348 -k1,4797:9032505,10928407:230525 -k1,4797:11943454,10928407:230526 -k1,4797:13567930,10928407:230525 -k1,4797:14817541,10928407:230526 -k1,4797:19671631,10928407:230525 -k1,4797:22686782,10928407:230526 -k1,4797:23864958,10928407:230525 -k1,4797:24727251,10928407:230526 -k1,4797:25445333,10928407:230494 -k1,4797:27259863,10928407:230525 -k1,4797:30151806,10928407:230526 -k1,4797:31041623,10928407:230525 -k1,4798:31966991,10928407:0 -) -(1,4798:7246811,11769895:24720180,513147,134348 -k1,4797:9679627,11769895:177722 -k1,4797:10949833,11769895:177721 -k1,4797:11786847,11769895:177722 -k1,4797:16130037,11769895:177722 -k1,4797:19416786,11769895:177721 -k1,4797:20586068,11769895:177722 -k1,4797:21782874,11769895:177721 -k1,4797:23971241,11769895:177722 -k1,4797:26927690,11769895:177722 -k1,4797:27866939,11769895:177721 -k1,4797:30032368,11769895:177722 -k1,4797:31966991,11769895:0 -) -(1,4798:7246811,12611383:24720180,513147,134348 -g1,4797:10471837,12611383 -g1,4797:11817291,12611383 -(1,4797:11817291,12611383:0,452978,115847 -r1,4840:13230692,12611383:1413401,568825,115847 -k1,4797:11817291,12611383:-1413401 -) -(1,4797:11817291,12611383:1413401,452978,115847 -k1,4797:11817291,12611383:3277 -h1,4797:13227415,12611383:0,411205,112570 -) -g1,4797:13429921,12611383 -g1,4797:14861227,12611383 -g1,4797:17339143,12611383 -h1,4797:18309731,12611383:0,0,0 -g1,4797:18508960,12611383 -g1,4797:19517559,12611383 -g1,4797:21214941,12611383 -h1,4797:22410318,12611383:0,0,0 -k1,4798:31966991,12611383:9175909 -g1,4798:31966991,12611383 -) -(1,4800:7246811,13452871:24720180,513147,134348 -h1,4799:7246811,13452871:983040,0,0 -k1,4799:9876509,13452871:156369 -k1,4799:11051963,13452871:156369 -k1,4799:12763500,13452871:156368 -k1,4799:13579161,13452871:156369 -k1,4799:14489194,13452871:156369 -k1,4799:16935391,13452871:156369 -k1,4799:17623257,13452871:156369 -k1,4799:19817795,13452871:156368 -k1,4799:20660326,13452871:156369 -k1,4799:21587398,13452871:156369 -k1,4799:24522494,13452871:156369 -k1,4799:25963369,13452871:156369 -k1,4799:26651234,13452871:156368 -k1,4799:29992653,13452871:156369 -k1,4799:30835184,13452871:156369 -k1,4799:31966991,13452871:0 -) -(1,4800:7246811,14294359:24720180,513147,134348 -k1,4799:9154715,14294359:205934 -k1,4799:13997977,14294359:205934 -k1,4799:14735409,14294359:205935 -k1,4799:15557381,14294359:205934 -k1,4799:18394586,14294359:205934 -k1,4799:19251948,14294359:205934 -k1,4799:20476968,14294359:205935 -k1,4799:22465481,14294359:205934 -k1,4799:23862860,14294359:205934 -k1,4799:26230827,14294359:205934 -k1,4799:27991931,14294359:205935 -k1,4799:28857157,14294359:205934 -k1,4799:29833794,14294359:205934 -k1,4799:31966991,14294359:0 -) -(1,4800:7246811,15135847:24720180,505283,134348 -g1,4799:12404494,15135847 -g1,4799:16955969,15135847 -g1,4799:17771236,15135847 -g1,4799:18385308,15135847 -g1,4799:19200575,15135847 -g1,4799:22478030,15135847 -g1,4799:23293297,15135847 -g1,4799:25771213,15135847 -h1,4799:26741801,15135847:0,0,0 -g1,4799:26941030,15135847 -g1,4799:27949629,15135847 -g1,4799:29647011,15135847 -h1,4799:30842388,15135847:0,0,0 -k1,4800:31966991,15135847:950933 -g1,4800:31966991,15135847 -) -v1,4802:7246811,16326313:0,393216,0 -(1,4816:7246811,19992938:24720180,4059841,196608 -g1,4816:7246811,19992938 -g1,4816:7246811,19992938 -g1,4816:7050203,19992938 -(1,4816:7050203,19992938:0,4059841,196608 -r1,4840:32163599,19992938:25113396,4256449,196608 -k1,4816:7050203,19992938:-25113396 -) -(1,4816:7050203,19992938:25113396,4059841,196608 -[1,4816:7246811,19992938:24720180,3863233,0 -(1,4804:7246811,16533931:24720180,404226,9436 -(1,4803:7246811,16533931:0,0,0 -g1,4803:7246811,16533931 -g1,4803:7246811,16533931 -g1,4803:6919131,16533931 -(1,4803:6919131,16533931:0,0,0 -) -g1,4803:7246811,16533931 -) -g1,4804:9775977,16533931 -g1,4804:10724415,16533931 -h1,4804:11988998,16533931:0,0,0 -k1,4804:31966990,16533931:19977992 -g1,4804:31966990,16533931 -) -(1,4805:7246811,17200109:24720180,404226,76021 -h1,4805:7246811,17200109:0,0,0 -k1,4805:7246811,17200109:0 -h1,4805:11672850,17200109:0,0,0 -k1,4805:31966990,17200109:20294140 -g1,4805:31966990,17200109 -) -(1,4809:7246811,17931823:24720180,404226,107478 -(1,4807:7246811,17931823:0,0,0 -g1,4807:7246811,17931823 -g1,4807:7246811,17931823 -g1,4807:6919131,17931823 -(1,4807:6919131,17931823:0,0,0 -) -g1,4807:7246811,17931823 -) -g1,4809:8195248,17931823 -g1,4809:9459831,17931823 -h1,4809:12305142,17931823:0,0,0 -k1,4809:31966990,17931823:19661848 -g1,4809:31966990,17931823 -) -(1,4811:7246811,19253361:24720180,404226,76021 -(1,4810:7246811,19253361:0,0,0 -g1,4810:7246811,19253361 -g1,4810:7246811,19253361 -g1,4810:6919131,19253361 -(1,4810:6919131,19253361:0,0,0 -) -g1,4810:7246811,19253361 -) -k1,4811:7246811,19253361:0 -h1,4811:13253579,19253361:0,0,0 -k1,4811:31966991,19253361:18713412 -g1,4811:31966991,19253361 -) -(1,4815:7246811,19985075:24720180,379060,7863 -(1,4813:7246811,19985075:0,0,0 -g1,4813:7246811,19985075 -g1,4813:7246811,19985075 -g1,4813:6919131,19985075 -(1,4813:6919131,19985075:0,0,0 -) -g1,4813:7246811,19985075 -) -g1,4815:8195248,19985075 -h1,4815:9459831,19985075:0,0,0 -k1,4815:31966991,19985075:22507160 -g1,4815:31966991,19985075 -) -] -) -g1,4816:31966991,19992938 -g1,4816:7246811,19992938 -g1,4816:7246811,19992938 -g1,4816:31966991,19992938 -g1,4816:31966991,19992938 -) -h1,4816:7246811,20189546:0,0,0 -v1,4820:7246811,21904300:0,393216,0 -(1,4838:7246811,28310087:24720180,6799003,196608 -g1,4838:7246811,28310087 -g1,4838:7246811,28310087 -g1,4838:7050203,28310087 -(1,4838:7050203,28310087:0,6799003,196608 -r1,4840:32163599,28310087:25113396,6995611,196608 -k1,4838:7050203,28310087:-25113396 -) -(1,4838:7050203,28310087:25113396,6799003,196608 -[1,4838:7246811,28310087:24720180,6602395,0 -(1,4822:7246811,22118210:24720180,410518,76021 -(1,4821:7246811,22118210:0,0,0 -g1,4821:7246811,22118210 -g1,4821:7246811,22118210 -g1,4821:6919131,22118210 -(1,4821:6919131,22118210:0,0,0 -) -g1,4821:7246811,22118210 -) -g1,4822:10092122,22118210 -g1,4822:11040560,22118210 -k1,4822:11040560,22118210:0 -h1,4822:15782745,22118210:0,0,0 -k1,4822:31966991,22118210:16184246 -g1,4822:31966991,22118210 -) -(1,4823:7246811,22784388:24720180,410518,76021 -h1,4823:7246811,22784388:0,0,0 -k1,4823:7246811,22784388:0 -h1,4823:11988996,22784388:0,0,0 -k1,4823:31966992,22784388:19977996 -g1,4823:31966992,22784388 -) -(1,4827:7246811,23516102:24720180,410518,76021 -(1,4825:7246811,23516102:0,0,0 -g1,4825:7246811,23516102 -g1,4825:7246811,23516102 -g1,4825:6919131,23516102 -(1,4825:6919131,23516102:0,0,0 -) -g1,4825:7246811,23516102 -) -g1,4827:8195248,23516102 -g1,4827:9459831,23516102 -h1,4827:11988996,23516102:0,0,0 -k1,4827:31966992,23516102:19977996 -g1,4827:31966992,23516102 -) -(1,4829:7246811,24837640:24720180,410518,76021 -(1,4828:7246811,24837640:0,0,0 -g1,4828:7246811,24837640 -g1,4828:7246811,24837640 -g1,4828:6919131,24837640 -(1,4828:6919131,24837640:0,0,0 -) -g1,4828:7246811,24837640 -) -k1,4829:7246811,24837640:0 -h1,4829:13569725,24837640:0,0,0 -k1,4829:31966991,24837640:18397266 -g1,4829:31966991,24837640 -) -(1,4837:7246811,25569354:24720180,410518,31456 -(1,4831:7246811,25569354:0,0,0 -g1,4831:7246811,25569354 -g1,4831:7246811,25569354 -g1,4831:6919131,25569354 -(1,4831:6919131,25569354:0,0,0 -) -g1,4831:7246811,25569354 -) -g1,4837:8195248,25569354 -h1,4837:10408268,25569354:0,0,0 -k1,4837:31966992,25569354:21558724 -g1,4837:31966992,25569354 -) -(1,4837:7246811,26235532:24720180,404226,76021 -h1,4837:7246811,26235532:0,0,0 -g1,4837:8195248,26235532 -g1,4837:8511394,26235532 -g1,4837:9775977,26235532 -g1,4837:11040560,26235532 -g1,4837:11356706,26235532 -g1,4837:12621289,26235532 -g1,4837:12937435,26235532 -g1,4837:14202018,26235532 -g1,4837:14518164,26235532 -g1,4837:15782747,26235532 -g1,4837:16098893,26235532 -g1,4837:17363476,26235532 -g1,4837:17679622,26235532 -g1,4837:18944205,26235532 -g1,4837:19260351,26235532 -g1,4837:20524934,26235532 -g1,4837:20841080,26235532 -g1,4837:22105663,26235532 -g1,4837:22421809,26235532 -g1,4837:23686392,26235532 -g1,4837:24002538,26235532 -h1,4837:25267121,26235532:0,0,0 -k1,4837:31966991,26235532:6699870 -g1,4837:31966991,26235532 -) -(1,4837:7246811,26901710:24720180,379060,0 -h1,4837:7246811,26901710:0,0,0 -h1,4837:7879102,26901710:0,0,0 -k1,4837:31966990,26901710:24087888 -g1,4837:31966990,26901710 -) -(1,4837:7246811,27567888:24720180,410518,31456 -h1,4837:7246811,27567888:0,0,0 -g1,4837:8195248,27567888 -h1,4837:10092122,27567888:0,0,0 -k1,4837:31966990,27567888:21874868 -g1,4837:31966990,27567888 -) -(1,4837:7246811,28234066:24720180,410518,76021 -h1,4837:7246811,28234066:0,0,0 -g1,4837:8195248,28234066 -g1,4837:9459831,28234066 -h1,4837:11988996,28234066:0,0,0 -k1,4837:31966992,28234066:19977996 -g1,4837:31966992,28234066 -) -] -) -g1,4838:31966991,28310087 -g1,4838:7246811,28310087 -g1,4838:7246811,28310087 -g1,4838:31966991,28310087 -g1,4838:31966991,28310087 -) -h1,4838:7246811,28506695:0,0,0 -] -) -] -r1,4840:32583029,29620807:26214,23733712,0 -) -] -) -) -g1,4840:32583029,29030983 -) -h1,4840:6630773,29647021:0,0,0 -(1,4846:6630773,32978877:25952256,32768,229376 -(1,4846:6630773,32978877:0,32768,229376 -(1,4846:6630773,32978877:5505024,32768,229376 -r1,4846:12135797,32978877:5505024,262144,229376 -) -k1,4846:6630773,32978877:-5505024 -) -(1,4846:6630773,32978877:25952256,32768,0 -r1,4846:32583029,32978877:25952256,32768,0 -) -) -(1,4846:6630773,34583205:25952256,606339,161218 -(1,4846:6630773,34583205:2464678,582746,14155 -g1,4846:6630773,34583205 -g1,4846:9095451,34583205 -) -g1,4846:11973006,34583205 -g1,4846:13682709,34583205 -g1,4846:16859895,34583205 -k1,4846:32583029,34583205:14029946 -g1,4846:32583029,34583205 -) -(1,4848:6630773,35888033:25952256,555811,147783 -(1,4848:6630773,35888033:2899444,534184,12975 -g1,4848:6630773,35888033 -g1,4848:9530217,35888033 -) -g1,4848:11409593,35888033 -g1,4848:13075584,35888033 -g1,4848:14006261,35888033 -g1,4848:14750226,35888033 -g1,4848:16317454,35888033 -k1,4848:32583029,35888033:12917734 -g1,4848:32583029,35888033 -) -(1,4851:6630773,37122737:25952256,513147,134348 -k1,4850:7629354,37122737:169551 -k1,4850:8546671,37122737:169551 -k1,4850:10024975,37122737:169550 -k1,4850:10845954,37122737:169551 -k1,4850:13421332,37122737:169551 -k1,4850:15241080,37122737:169551 -k1,4850:19023630,37122737:169550 -k1,4850:22358570,37122737:169551 -k1,4850:23396473,37122737:169551 -k1,4850:25096290,37122737:169551 -k1,4850:26957981,37122737:169551 -k1,4850:28324218,37122737:169550 -k1,4850:30056803,37122737:169551 -k1,4850:31714677,37122737:169551 -k1,4850:32583029,37122737:0 -) -(1,4851:6630773,37964225:25952256,513147,126483 -k1,4850:7912751,37964225:189493 -(1,4850:7912751,37964225:0,414482,115847 -r1,4850:9326152,37964225:1413401,530329,115847 -k1,4850:7912751,37964225:-1413401 -) -(1,4850:7912751,37964225:1413401,414482,115847 -k1,4850:7912751,37964225:3277 -h1,4850:9322875,37964225:0,411205,112570 -) -k1,4850:9689316,37964225:189494 -k1,4850:11035519,37964225:189493 -k1,4850:11884305,37964225:189494 -k1,4850:13092883,37964225:189493 -k1,4850:15034154,37964225:189494 -k1,4850:16613010,37964225:189493 -k1,4850:18067348,37964225:189493 -k1,4850:21015252,37964225:189494 -k1,4850:21820783,37964225:189493 -k1,4850:23444205,37964225:189494 -k1,4850:24222211,37964225:189493 -k1,4850:27201573,37964225:189494 -(1,4850:27201573,37964225:0,452978,115847 -r1,4850:29318398,37964225:2116825,568825,115847 -k1,4850:27201573,37964225:-2116825 -) -(1,4850:27201573,37964225:2116825,452978,115847 -k1,4850:27201573,37964225:3277 -h1,4850:29315121,37964225:0,411205,112570 -) -k1,4850:29507891,37964225:189493 -k1,4850:30228882,37964225:189494 -k1,4850:31931601,37964225:189493 -k1,4850:32583029,37964225:0 -) -(1,4851:6630773,38805713:25952256,505283,134348 -k1,4850:8215784,38805713:208755 -k1,4850:9813901,38805713:208754 -k1,4850:12312484,38805713:208755 -k1,4850:13805745,38805713:208755 -k1,4850:15006060,38805713:208755 -k1,4850:17973224,38805713:208754 -k1,4850:18798017,38805713:208755 -k1,4850:19421605,38805713:208745 -k1,4850:20313245,38805713:208755 -k1,4850:23661829,38805713:208754 -k1,4850:24486622,38805713:208755 -k1,4850:27779501,38805713:208755 -k1,4850:28458149,38805713:208755 -k1,4850:29198400,38805713:208754 -k1,4850:30692971,38805713:208755 -k1,4851:32583029,38805713:0 -) -(1,4851:6630773,39647201:25952256,513147,134348 -k1,4850:7821461,39647201:237795 -k1,4850:8710684,39647201:237795 -k1,4850:11130172,39647201:237794 -k1,4850:12757330,39647201:237795 -k1,4850:14806540,39647201:237795 -k1,4850:15660373,39647201:237795 -k1,4850:17211509,39647201:237794 -k1,4850:18843255,39647201:237795 -k1,4850:21343353,39647201:237795 -k1,4850:24265503,39647201:237795 -k1,4850:26884875,39647201:237794 -k1,4850:27884198,39647201:237795 -k1,4850:29823963,39647201:237795 -k1,4850:32583029,39647201:0 -) -(1,4851:6630773,40488689:25952256,513147,134348 -k1,4850:7486784,40488689:173126 -k1,4850:11003558,40488689:173127 -k1,4850:12689910,40488689:173126 -k1,4850:13810688,40488689:173127 -k1,4850:15373177,40488689:173126 -k1,4850:18673026,40488689:173126 -k1,4850:21381086,40488689:173127 -k1,4850:24355220,40488689:173126 -k1,4850:27286757,40488689:173127 -k1,4850:28075921,40488689:173126 -k1,4850:29268133,40488689:173127 -k1,4850:29856076,40488689:173100 -k1,4851:32583029,40488689:0 -) -(1,4851:6630773,41330177:25952256,513147,134348 -k1,4850:8273165,41330177:201255 -k1,4850:9160582,41330177:201255 -k1,4850:10640444,41330177:201255 -k1,4850:11527861,41330177:201255 -k1,4850:15458770,41330177:201255 -k1,4850:18570479,41330177:201255 -k1,4850:20487467,41330177:201255 -k1,4850:23472691,41330177:201255 -k1,4850:26699743,41330177:201255 -k1,4850:29319932,41330177:201255 -k1,4850:30180479,41330177:201255 -k1,4850:32583029,41330177:0 -) -(1,4851:6630773,42171665:25952256,513147,134348 -k1,4850:7993065,42171665:170847 -k1,4850:11071089,42171665:170847 -k1,4850:13584193,42171665:170847 -k1,4850:16040281,42171665:170848 -k1,4850:18895483,42171665:170847 -k1,4850:20487151,42171665:170847 -k1,4850:21309426,42171665:170847 -k1,4850:22892574,42171665:170847 -k1,4850:23746306,42171665:170847 -k1,4850:26098848,42171665:170848 -k1,4850:29155245,42171665:170847 -k1,4850:30715455,42171665:170847 -k1,4850:31417799,42171665:170847 -k1,4851:32583029,42171665:0 -) -(1,4851:6630773,43013153:25952256,505283,126483 -k1,4850:9030453,43013153:222574 -k1,4850:9869065,43013153:222574 -k1,4850:10506459,43013153:222551 -k1,4850:15555104,43013153:222574 -k1,4850:16393716,43013153:222574 -k1,4850:17065843,43013153:222550 -k1,4850:18822615,43013153:222574 -k1,4850:23670064,43013153:222574 -k1,4850:25084083,43013153:222574 -k1,4850:25922695,43013153:222574 -k1,4850:27348510,43013153:222574 -k1,4850:29326794,43013153:222574 -k1,4850:30165406,43013153:222574 -k1,4850:32583029,43013153:0 -) -(1,4851:6630773,43854641:25952256,513147,134348 -h1,4850:7029232,43854641:0,0,0 -k1,4850:7272332,43854641:243100 -k1,4850:9994004,43854641:243100 -k1,4850:11046474,43854641:243100 -k1,4850:12787727,43854641:243100 -h1,4850:13983104,43854641:0,0,0 -k1,4850:14399874,43854641:243100 -k1,4850:15112867,43854641:243100 -k1,4850:15887464,43854641:243100 -k1,4850:17416380,43854641:243100 -k1,4850:19243486,43854641:243101 -k1,4850:20138014,43854641:243100 -k1,4850:21889097,43854641:243100 -k1,4850:22748235,43854641:243100 -k1,4850:24648085,43854641:243100 -k1,4850:26175691,43854641:243100 -k1,4850:27034829,43854641:243100 -k1,4850:27866442,43854641:243100 -k1,4850:29721072,43854641:243100 -k1,4850:32583029,43854641:0 -) -(1,4851:6630773,44696129:25952256,513147,134348 -k1,4850:9791063,44696129:259011 -k1,4850:12976258,44696129:259012 -k1,4850:14226829,44696129:259011 -k1,4850:17301923,44696129:259012 -k1,4850:18247096,44696129:259011 -k1,4850:21908737,44696129:259012 -k1,4850:22819176,44696129:259011 -k1,4850:24097272,44696129:259011 -(1,4850:24097272,44696129:0,459977,115847 -r1,4850:25510673,44696129:1413401,575824,115847 -k1,4850:24097272,44696129:-1413401 -) -(1,4850:24097272,44696129:1413401,459977,115847 -k1,4850:24097272,44696129:3277 -h1,4850:25507396,44696129:0,411205,112570 -) -k1,4850:25769685,44696129:259012 -k1,4850:26711581,44696129:259011 -(1,4850:26711581,44696129:0,452978,115847 -r1,4850:28124982,44696129:1413401,568825,115847 -k1,4850:26711581,44696129:-1413401 -) -(1,4850:26711581,44696129:1413401,452978,115847 -k1,4850:26711581,44696129:3277 -h1,4850:28121705,44696129:0,411205,112570 -) -k1,4850:28383994,44696129:259012 -k1,4850:31923737,44696129:259011 -k1,4850:32583029,44696129:0 -) -(1,4851:6630773,45537617:25952256,513147,134348 -g1,4850:8581779,45537617 -g1,4850:11806805,45537617 -g1,4850:13238111,45537617 -g1,4850:15716027,45537617 -h1,4850:17085074,45537617:0,0,0 -g1,4850:17284303,45537617 -g1,4850:19962104,45537617 -g1,4850:20970703,45537617 -g1,4850:22668085,45537617 -h1,4850:23863462,45537617:0,0,0 -k1,4851:32583029,45537617:8338803 -g1,4851:32583029,45537617 -) -] -(1,4855:32583029,45706769:0,0,0 -g1,4855:32583029,45706769 -) -) -] -(1,4855:6630773,47279633:25952256,0,0 -h1,4855:6630773,47279633:25952256,0,0 -) -] -h1,4855:4262630,4025873:0,0,0 +) +) +] +[1,4861:3078558,4812305:0,0,0 +(1,4861:3078558,49800853:0,16384,2228224 +g1,4861:29030814,49800853 +g1,4861:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4861:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4861:37855564,49800853:1179648,16384,0 +) +) +k1,4861:3078556,49800853:-34777008 +) +] +g1,4861:6630773,4812305 +k1,4861:19515153,4812305:12087462 +g1,4861:20901894,4812305 +g1,4861:21550700,4812305 +g1,4861:24864855,4812305 +g1,4861:27600327,4812305 +g1,4861:29010006,4812305 +) +) +] +[1,4861:6630773,45706769:25952256,40108032,0 +(1,4861:6630773,45706769:25952256,40108032,0 +(1,4861:6630773,45706769:0,0,0 +g1,4861:6630773,45706769 +) +[1,4861:6630773,45706769:25952256,40108032,0 +v1,4803:6630773,6254097:0,393216,0 +(1,4846:6630773,29030983:25952256,23170102,616038 +g1,4846:6630773,29030983 +(1,4846:6630773,29030983:25952256,23170102,616038 +(1,4846:6630773,29647021:25952256,23786140,0 +[1,4846:6630773,29647021:25952256,23786140,0 +(1,4846:6630773,29620807:25952256,23733712,0 +r1,4846:6656987,29620807:26214,23733712,0 +[1,4846:6656987,29620807:25899828,23733712,0 +(1,4846:6656987,29030983:25899828,22554064,0 +[1,4846:7246811,29030983:24720180,22554064,0 +(1,4804:7246811,7562455:24720180,1085536,298548 +(1,4803:7246811,7562455:0,1085536,298548 +r1,4846:8753226,7562455:1506415,1384084,298548 +k1,4803:7246811,7562455:-1506415 +) +(1,4803:7246811,7562455:1506415,1085536,298548 +) +k1,4803:8910028,7562455:156802 +k1,4803:10899217,7562455:156802 +k1,4803:11587516,7562455:156802 +k1,4803:12553688,7562455:156802 +k1,4803:16023990,7562455:156802 +k1,4803:16832220,7562455:156802 +k1,4803:18008106,7562455:156801 +k1,4803:20931183,7562455:156802 +k1,4803:23443349,7562455:156802 +k1,4803:26417544,7562455:156802 +k1,4803:27765791,7562455:156802 +k1,4803:30325143,7562455:156802 +k1,4803:31141237,7562455:156802 +k1,4804:31966991,7562455:0 +) +(1,4804:7246811,8403943:24720180,513147,134348 +k1,4803:10089007,8403943:172259 +k1,4803:11333434,8403943:172258 +k1,4803:12571964,8403943:172259 +k1,4803:13510339,8403943:172259 +k1,4803:16467222,8403943:172258 +k1,4803:17830926,8403943:172259 +k1,4803:21080100,8403943:172259 +k1,4803:22536865,8403943:172259 +k1,4803:23813405,8403943:172258 +k1,4803:24733430,8403943:172259 +k1,4803:26418915,8403943:172259 +k1,4803:27242601,8403943:172258 +k1,4803:29677163,8403943:172259 +k1,4803:31966991,8403943:0 +) +(1,4804:7246811,9245431:24720180,505283,134348 +k1,4803:8581124,9245431:201851 +k1,4803:11509928,9245431:201851 +k1,4803:15992591,9245431:201851 +k1,4803:19477140,9245431:201851 +k1,4803:20602393,9245431:201851 +k1,4803:22539637,9245431:201851 +k1,4803:24969057,9245431:201851 +k1,4803:28279936,9245431:201851 +k1,4803:29013284,9245431:201851 +k1,4803:29570995,9245431:201851 +k1,4804:31966991,9245431:0 +) +(1,4804:7246811,10086919:24720180,505283,134348 +k1,4803:9309348,10086919:152163 +k1,4803:11416449,10086919:152162 +k1,4803:12853118,10086919:152163 +k1,4803:15292488,10086919:152163 +k1,4803:15976147,10086919:152162 +k1,4803:19693469,10086919:152163 +k1,4803:23566765,10086919:152162 +k1,4803:25094529,10086919:152163 +k1,4803:26944730,10086919:152163 +k1,4803:30175773,10086919:152162 +k1,4803:30683796,10086919:152163 +k1,4803:31966991,10086919:0 +) +(1,4804:7246811,10928407:24720180,513147,134348 +k1,4803:9032505,10928407:230525 +k1,4803:11943454,10928407:230526 +k1,4803:13567930,10928407:230525 +k1,4803:14817541,10928407:230526 +k1,4803:19671631,10928407:230525 +k1,4803:22686782,10928407:230526 +k1,4803:23864958,10928407:230525 +k1,4803:24727251,10928407:230526 +k1,4803:25445333,10928407:230494 +k1,4803:27259863,10928407:230525 +k1,4803:30151806,10928407:230526 +k1,4803:31041623,10928407:230525 +k1,4804:31966991,10928407:0 +) +(1,4804:7246811,11769895:24720180,513147,134348 +k1,4803:9679627,11769895:177722 +k1,4803:10949833,11769895:177721 +k1,4803:11786847,11769895:177722 +k1,4803:16130037,11769895:177722 +k1,4803:19416786,11769895:177721 +k1,4803:20586068,11769895:177722 +k1,4803:21782874,11769895:177721 +k1,4803:23971241,11769895:177722 +k1,4803:26927690,11769895:177722 +k1,4803:27866939,11769895:177721 +k1,4803:30032368,11769895:177722 +k1,4803:31966991,11769895:0 +) +(1,4804:7246811,12611383:24720180,513147,134348 +g1,4803:10471837,12611383 +g1,4803:11817291,12611383 +(1,4803:11817291,12611383:0,452978,115847 +r1,4846:13230692,12611383:1413401,568825,115847 +k1,4803:11817291,12611383:-1413401 +) +(1,4803:11817291,12611383:1413401,452978,115847 +k1,4803:11817291,12611383:3277 +h1,4803:13227415,12611383:0,411205,112570 +) +g1,4803:13429921,12611383 +g1,4803:14861227,12611383 +g1,4803:17339143,12611383 +h1,4803:18309731,12611383:0,0,0 +g1,4803:18508960,12611383 +g1,4803:19517559,12611383 +g1,4803:21214941,12611383 +h1,4803:22410318,12611383:0,0,0 +k1,4804:31966991,12611383:9175909 +g1,4804:31966991,12611383 +) +(1,4806:7246811,13452871:24720180,513147,134348 +h1,4805:7246811,13452871:983040,0,0 +k1,4805:9876509,13452871:156369 +k1,4805:11051963,13452871:156369 +k1,4805:12763500,13452871:156368 +k1,4805:13579161,13452871:156369 +k1,4805:14489194,13452871:156369 +k1,4805:16935391,13452871:156369 +k1,4805:17623257,13452871:156369 +k1,4805:19817795,13452871:156368 +k1,4805:20660326,13452871:156369 +k1,4805:21587398,13452871:156369 +k1,4805:24522494,13452871:156369 +k1,4805:25963369,13452871:156369 +k1,4805:26651234,13452871:156368 +k1,4805:29992653,13452871:156369 +k1,4805:30835184,13452871:156369 +k1,4805:31966991,13452871:0 +) +(1,4806:7246811,14294359:24720180,513147,134348 +k1,4805:9154715,14294359:205934 +k1,4805:13997977,14294359:205934 +k1,4805:14735409,14294359:205935 +k1,4805:15557381,14294359:205934 +k1,4805:18394586,14294359:205934 +k1,4805:19251948,14294359:205934 +k1,4805:20476968,14294359:205935 +k1,4805:22465481,14294359:205934 +k1,4805:23862860,14294359:205934 +k1,4805:26230827,14294359:205934 +k1,4805:27991931,14294359:205935 +k1,4805:28857157,14294359:205934 +k1,4805:29833794,14294359:205934 +k1,4805:31966991,14294359:0 +) +(1,4806:7246811,15135847:24720180,505283,134348 +g1,4805:12404494,15135847 +g1,4805:16955969,15135847 +g1,4805:17771236,15135847 +g1,4805:18385308,15135847 +g1,4805:19200575,15135847 +g1,4805:22478030,15135847 +g1,4805:23293297,15135847 +g1,4805:25771213,15135847 +h1,4805:26741801,15135847:0,0,0 +g1,4805:26941030,15135847 +g1,4805:27949629,15135847 +g1,4805:29647011,15135847 +h1,4805:30842388,15135847:0,0,0 +k1,4806:31966991,15135847:950933 +g1,4806:31966991,15135847 +) +v1,4808:7246811,16326313:0,393216,0 +(1,4822:7246811,19992938:24720180,4059841,196608 +g1,4822:7246811,19992938 +g1,4822:7246811,19992938 +g1,4822:7050203,19992938 +(1,4822:7050203,19992938:0,4059841,196608 +r1,4846:32163599,19992938:25113396,4256449,196608 +k1,4822:7050203,19992938:-25113396 +) +(1,4822:7050203,19992938:25113396,4059841,196608 +[1,4822:7246811,19992938:24720180,3863233,0 +(1,4810:7246811,16533931:24720180,404226,9436 +(1,4809:7246811,16533931:0,0,0 +g1,4809:7246811,16533931 +g1,4809:7246811,16533931 +g1,4809:6919131,16533931 +(1,4809:6919131,16533931:0,0,0 +) +g1,4809:7246811,16533931 +) +g1,4810:9775977,16533931 +g1,4810:10724415,16533931 +h1,4810:11988998,16533931:0,0,0 +k1,4810:31966990,16533931:19977992 +g1,4810:31966990,16533931 +) +(1,4811:7246811,17200109:24720180,404226,76021 +h1,4811:7246811,17200109:0,0,0 +k1,4811:7246811,17200109:0 +h1,4811:11672850,17200109:0,0,0 +k1,4811:31966990,17200109:20294140 +g1,4811:31966990,17200109 +) +(1,4815:7246811,17931823:24720180,404226,107478 +(1,4813:7246811,17931823:0,0,0 +g1,4813:7246811,17931823 +g1,4813:7246811,17931823 +g1,4813:6919131,17931823 +(1,4813:6919131,17931823:0,0,0 +) +g1,4813:7246811,17931823 +) +g1,4815:8195248,17931823 +g1,4815:9459831,17931823 +h1,4815:12305142,17931823:0,0,0 +k1,4815:31966990,17931823:19661848 +g1,4815:31966990,17931823 +) +(1,4817:7246811,19253361:24720180,404226,76021 +(1,4816:7246811,19253361:0,0,0 +g1,4816:7246811,19253361 +g1,4816:7246811,19253361 +g1,4816:6919131,19253361 +(1,4816:6919131,19253361:0,0,0 +) +g1,4816:7246811,19253361 +) +k1,4817:7246811,19253361:0 +h1,4817:13253579,19253361:0,0,0 +k1,4817:31966991,19253361:18713412 +g1,4817:31966991,19253361 +) +(1,4821:7246811,19985075:24720180,379060,7863 +(1,4819:7246811,19985075:0,0,0 +g1,4819:7246811,19985075 +g1,4819:7246811,19985075 +g1,4819:6919131,19985075 +(1,4819:6919131,19985075:0,0,0 +) +g1,4819:7246811,19985075 +) +g1,4821:8195248,19985075 +h1,4821:9459831,19985075:0,0,0 +k1,4821:31966991,19985075:22507160 +g1,4821:31966991,19985075 +) +] +) +g1,4822:31966991,19992938 +g1,4822:7246811,19992938 +g1,4822:7246811,19992938 +g1,4822:31966991,19992938 +g1,4822:31966991,19992938 +) +h1,4822:7246811,20189546:0,0,0 +v1,4826:7246811,21904300:0,393216,0 +(1,4844:7246811,28310087:24720180,6799003,196608 +g1,4844:7246811,28310087 +g1,4844:7246811,28310087 +g1,4844:7050203,28310087 +(1,4844:7050203,28310087:0,6799003,196608 +r1,4846:32163599,28310087:25113396,6995611,196608 +k1,4844:7050203,28310087:-25113396 +) +(1,4844:7050203,28310087:25113396,6799003,196608 +[1,4844:7246811,28310087:24720180,6602395,0 +(1,4828:7246811,22118210:24720180,410518,76021 +(1,4827:7246811,22118210:0,0,0 +g1,4827:7246811,22118210 +g1,4827:7246811,22118210 +g1,4827:6919131,22118210 +(1,4827:6919131,22118210:0,0,0 +) +g1,4827:7246811,22118210 +) +g1,4828:10092122,22118210 +g1,4828:11040560,22118210 +k1,4828:11040560,22118210:0 +h1,4828:15782745,22118210:0,0,0 +k1,4828:31966991,22118210:16184246 +g1,4828:31966991,22118210 +) +(1,4829:7246811,22784388:24720180,410518,76021 +h1,4829:7246811,22784388:0,0,0 +k1,4829:7246811,22784388:0 +h1,4829:11988996,22784388:0,0,0 +k1,4829:31966992,22784388:19977996 +g1,4829:31966992,22784388 +) +(1,4833:7246811,23516102:24720180,410518,76021 +(1,4831:7246811,23516102:0,0,0 +g1,4831:7246811,23516102 +g1,4831:7246811,23516102 +g1,4831:6919131,23516102 +(1,4831:6919131,23516102:0,0,0 +) +g1,4831:7246811,23516102 +) +g1,4833:8195248,23516102 +g1,4833:9459831,23516102 +h1,4833:11988996,23516102:0,0,0 +k1,4833:31966992,23516102:19977996 +g1,4833:31966992,23516102 +) +(1,4835:7246811,24837640:24720180,410518,76021 +(1,4834:7246811,24837640:0,0,0 +g1,4834:7246811,24837640 +g1,4834:7246811,24837640 +g1,4834:6919131,24837640 +(1,4834:6919131,24837640:0,0,0 +) +g1,4834:7246811,24837640 +) +k1,4835:7246811,24837640:0 +h1,4835:13569725,24837640:0,0,0 +k1,4835:31966991,24837640:18397266 +g1,4835:31966991,24837640 +) +(1,4843:7246811,25569354:24720180,410518,31456 +(1,4837:7246811,25569354:0,0,0 +g1,4837:7246811,25569354 +g1,4837:7246811,25569354 +g1,4837:6919131,25569354 +(1,4837:6919131,25569354:0,0,0 +) +g1,4837:7246811,25569354 +) +g1,4843:8195248,25569354 +h1,4843:10408268,25569354:0,0,0 +k1,4843:31966992,25569354:21558724 +g1,4843:31966992,25569354 +) +(1,4843:7246811,26235532:24720180,404226,76021 +h1,4843:7246811,26235532:0,0,0 +g1,4843:8195248,26235532 +g1,4843:8511394,26235532 +g1,4843:9775977,26235532 +g1,4843:11040560,26235532 +g1,4843:11356706,26235532 +g1,4843:12621289,26235532 +g1,4843:12937435,26235532 +g1,4843:14202018,26235532 +g1,4843:14518164,26235532 +g1,4843:15782747,26235532 +g1,4843:16098893,26235532 +g1,4843:17363476,26235532 +g1,4843:17679622,26235532 +g1,4843:18944205,26235532 +g1,4843:19260351,26235532 +g1,4843:20524934,26235532 +g1,4843:20841080,26235532 +g1,4843:22105663,26235532 +g1,4843:22421809,26235532 +g1,4843:23686392,26235532 +g1,4843:24002538,26235532 +h1,4843:25267121,26235532:0,0,0 +k1,4843:31966991,26235532:6699870 +g1,4843:31966991,26235532 +) +(1,4843:7246811,26901710:24720180,379060,0 +h1,4843:7246811,26901710:0,0,0 +h1,4843:7879102,26901710:0,0,0 +k1,4843:31966990,26901710:24087888 +g1,4843:31966990,26901710 +) +(1,4843:7246811,27567888:24720180,410518,31456 +h1,4843:7246811,27567888:0,0,0 +g1,4843:8195248,27567888 +h1,4843:10092122,27567888:0,0,0 +k1,4843:31966990,27567888:21874868 +g1,4843:31966990,27567888 +) +(1,4843:7246811,28234066:24720180,410518,76021 +h1,4843:7246811,28234066:0,0,0 +g1,4843:8195248,28234066 +g1,4843:9459831,28234066 +h1,4843:11988996,28234066:0,0,0 +k1,4843:31966992,28234066:19977996 +g1,4843:31966992,28234066 +) +] +) +g1,4844:31966991,28310087 +g1,4844:7246811,28310087 +g1,4844:7246811,28310087 +g1,4844:31966991,28310087 +g1,4844:31966991,28310087 +) +h1,4844:7246811,28506695:0,0,0 +] +) +] +r1,4846:32583029,29620807:26214,23733712,0 +) +] +) +) +g1,4846:32583029,29030983 +) +h1,4846:6630773,29647021:0,0,0 +(1,4852:6630773,32978877:25952256,32768,229376 +(1,4852:6630773,32978877:0,32768,229376 +(1,4852:6630773,32978877:5505024,32768,229376 +r1,4852:12135797,32978877:5505024,262144,229376 +) +k1,4852:6630773,32978877:-5505024 +) +(1,4852:6630773,32978877:25952256,32768,0 +r1,4852:32583029,32978877:25952256,32768,0 +) +) +(1,4852:6630773,34583205:25952256,606339,161218 +(1,4852:6630773,34583205:2464678,582746,14155 +g1,4852:6630773,34583205 +g1,4852:9095451,34583205 +) +g1,4852:11973006,34583205 +g1,4852:13682709,34583205 +g1,4852:16859895,34583205 +k1,4852:32583029,34583205:14029946 +g1,4852:32583029,34583205 +) +(1,4854:6630773,35888033:25952256,555811,147783 +(1,4854:6630773,35888033:2899444,534184,12975 +g1,4854:6630773,35888033 +g1,4854:9530217,35888033 +) +g1,4854:11409593,35888033 +g1,4854:13075584,35888033 +g1,4854:14006261,35888033 +g1,4854:14750226,35888033 +g1,4854:16317454,35888033 +k1,4854:32583029,35888033:12917734 +g1,4854:32583029,35888033 +) +(1,4857:6630773,37122737:25952256,513147,134348 +k1,4856:7629354,37122737:169551 +k1,4856:8546671,37122737:169551 +k1,4856:10024975,37122737:169550 +k1,4856:10845954,37122737:169551 +k1,4856:13421332,37122737:169551 +k1,4856:15241080,37122737:169551 +k1,4856:19023630,37122737:169550 +k1,4856:22358570,37122737:169551 +k1,4856:23396473,37122737:169551 +k1,4856:25096290,37122737:169551 +k1,4856:26957981,37122737:169551 +k1,4856:28324218,37122737:169550 +k1,4856:30056803,37122737:169551 +k1,4856:31714677,37122737:169551 +k1,4856:32583029,37122737:0 +) +(1,4857:6630773,37964225:25952256,513147,126483 +k1,4856:7912751,37964225:189493 +(1,4856:7912751,37964225:0,414482,115847 +r1,4856:9326152,37964225:1413401,530329,115847 +k1,4856:7912751,37964225:-1413401 +) +(1,4856:7912751,37964225:1413401,414482,115847 +k1,4856:7912751,37964225:3277 +h1,4856:9322875,37964225:0,411205,112570 +) +k1,4856:9689316,37964225:189494 +k1,4856:11035519,37964225:189493 +k1,4856:11884305,37964225:189494 +k1,4856:13092883,37964225:189493 +k1,4856:15034154,37964225:189494 +k1,4856:16613010,37964225:189493 +k1,4856:18067348,37964225:189493 +k1,4856:21015252,37964225:189494 +k1,4856:21820783,37964225:189493 +k1,4856:23444205,37964225:189494 +k1,4856:24222211,37964225:189493 +k1,4856:27201573,37964225:189494 +(1,4856:27201573,37964225:0,452978,115847 +r1,4856:29318398,37964225:2116825,568825,115847 +k1,4856:27201573,37964225:-2116825 +) +(1,4856:27201573,37964225:2116825,452978,115847 +k1,4856:27201573,37964225:3277 +h1,4856:29315121,37964225:0,411205,112570 +) +k1,4856:29507891,37964225:189493 +k1,4856:30228882,37964225:189494 +k1,4856:31931601,37964225:189493 +k1,4856:32583029,37964225:0 +) +(1,4857:6630773,38805713:25952256,505283,134348 +k1,4856:8215784,38805713:208755 +k1,4856:9813901,38805713:208754 +k1,4856:12312484,38805713:208755 +k1,4856:13805745,38805713:208755 +k1,4856:15006060,38805713:208755 +k1,4856:17973224,38805713:208754 +k1,4856:18798017,38805713:208755 +k1,4856:19421605,38805713:208745 +k1,4856:20313245,38805713:208755 +k1,4856:23661829,38805713:208754 +k1,4856:24486622,38805713:208755 +k1,4856:27779501,38805713:208755 +k1,4856:28458149,38805713:208755 +k1,4856:29198400,38805713:208754 +k1,4856:30692971,38805713:208755 +k1,4857:32583029,38805713:0 +) +(1,4857:6630773,39647201:25952256,513147,134348 +k1,4856:7821461,39647201:237795 +k1,4856:8710684,39647201:237795 +k1,4856:11130172,39647201:237794 +k1,4856:12757330,39647201:237795 +k1,4856:14806540,39647201:237795 +k1,4856:15660373,39647201:237795 +k1,4856:17211509,39647201:237794 +k1,4856:18843255,39647201:237795 +k1,4856:21343353,39647201:237795 +k1,4856:24265503,39647201:237795 +k1,4856:26884875,39647201:237794 +k1,4856:27884198,39647201:237795 +k1,4856:29823963,39647201:237795 +k1,4856:32583029,39647201:0 +) +(1,4857:6630773,40488689:25952256,513147,134348 +k1,4856:7486784,40488689:173126 +k1,4856:11003558,40488689:173127 +k1,4856:12689910,40488689:173126 +k1,4856:13810688,40488689:173127 +k1,4856:15373177,40488689:173126 +k1,4856:18673026,40488689:173126 +k1,4856:21381086,40488689:173127 +k1,4856:24355220,40488689:173126 +k1,4856:27286757,40488689:173127 +k1,4856:28075921,40488689:173126 +k1,4856:29268133,40488689:173127 +k1,4856:29856076,40488689:173100 +k1,4857:32583029,40488689:0 +) +(1,4857:6630773,41330177:25952256,513147,134348 +k1,4856:8273165,41330177:201255 +k1,4856:9160582,41330177:201255 +k1,4856:10640444,41330177:201255 +k1,4856:11527861,41330177:201255 +k1,4856:15458770,41330177:201255 +k1,4856:18570479,41330177:201255 +k1,4856:20487467,41330177:201255 +k1,4856:23472691,41330177:201255 +k1,4856:26699743,41330177:201255 +k1,4856:29319932,41330177:201255 +k1,4856:30180479,41330177:201255 +k1,4856:32583029,41330177:0 +) +(1,4857:6630773,42171665:25952256,513147,134348 +k1,4856:7993065,42171665:170847 +k1,4856:11071089,42171665:170847 +k1,4856:13584193,42171665:170847 +k1,4856:16040281,42171665:170848 +k1,4856:18895483,42171665:170847 +k1,4856:20487151,42171665:170847 +k1,4856:21309426,42171665:170847 +k1,4856:22892574,42171665:170847 +k1,4856:23746306,42171665:170847 +k1,4856:26098848,42171665:170848 +k1,4856:29155245,42171665:170847 +k1,4856:30715455,42171665:170847 +k1,4856:31417799,42171665:170847 +k1,4857:32583029,42171665:0 +) +(1,4857:6630773,43013153:25952256,505283,126483 +k1,4856:9030453,43013153:222574 +k1,4856:9869065,43013153:222574 +k1,4856:10506459,43013153:222551 +k1,4856:15555104,43013153:222574 +k1,4856:16393716,43013153:222574 +k1,4856:17065843,43013153:222550 +k1,4856:18822615,43013153:222574 +k1,4856:23670064,43013153:222574 +k1,4856:25084083,43013153:222574 +k1,4856:25922695,43013153:222574 +k1,4856:27348510,43013153:222574 +k1,4856:29326794,43013153:222574 +k1,4856:30165406,43013153:222574 +k1,4856:32583029,43013153:0 +) +(1,4857:6630773,43854641:25952256,513147,134348 +h1,4856:7029232,43854641:0,0,0 +k1,4856:7272332,43854641:243100 +k1,4856:9994004,43854641:243100 +k1,4856:11046474,43854641:243100 +k1,4856:12787727,43854641:243100 +h1,4856:13983104,43854641:0,0,0 +k1,4856:14399874,43854641:243100 +k1,4856:15112867,43854641:243100 +k1,4856:15887464,43854641:243100 +k1,4856:17416380,43854641:243100 +k1,4856:19243486,43854641:243101 +k1,4856:20138014,43854641:243100 +k1,4856:21889097,43854641:243100 +k1,4856:22748235,43854641:243100 +k1,4856:24648085,43854641:243100 +k1,4856:26175691,43854641:243100 +k1,4856:27034829,43854641:243100 +k1,4856:27866442,43854641:243100 +k1,4856:29721072,43854641:243100 +k1,4856:32583029,43854641:0 +) +(1,4857:6630773,44696129:25952256,513147,134348 +k1,4856:9791063,44696129:259011 +k1,4856:12976258,44696129:259012 +k1,4856:14226829,44696129:259011 +k1,4856:17301923,44696129:259012 +k1,4856:18247096,44696129:259011 +k1,4856:21908737,44696129:259012 +k1,4856:22819176,44696129:259011 +k1,4856:24097272,44696129:259011 +(1,4856:24097272,44696129:0,459977,115847 +r1,4856:25510673,44696129:1413401,575824,115847 +k1,4856:24097272,44696129:-1413401 +) +(1,4856:24097272,44696129:1413401,459977,115847 +k1,4856:24097272,44696129:3277 +h1,4856:25507396,44696129:0,411205,112570 +) +k1,4856:25769685,44696129:259012 +k1,4856:26711581,44696129:259011 +(1,4856:26711581,44696129:0,452978,115847 +r1,4856:28124982,44696129:1413401,568825,115847 +k1,4856:26711581,44696129:-1413401 +) +(1,4856:26711581,44696129:1413401,452978,115847 +k1,4856:26711581,44696129:3277 +h1,4856:28121705,44696129:0,411205,112570 +) +k1,4856:28383994,44696129:259012 +k1,4856:31923737,44696129:259011 +k1,4856:32583029,44696129:0 +) +(1,4857:6630773,45537617:25952256,513147,134348 +g1,4856:8581779,45537617 +g1,4856:11806805,45537617 +g1,4856:13238111,45537617 +g1,4856:15716027,45537617 +h1,4856:17085074,45537617:0,0,0 +g1,4856:17284303,45537617 +g1,4856:19962104,45537617 +g1,4856:20970703,45537617 +g1,4856:22668085,45537617 +h1,4856:23863462,45537617:0,0,0 +k1,4857:32583029,45537617:8338803 +g1,4857:32583029,45537617 +) +] +(1,4861:32583029,45706769:0,0,0 +g1,4861:32583029,45706769 +) +) +] +(1,4861:6630773,47279633:25952256,0,0 +h1,4861:6630773,47279633:25952256,0,0 +) +] +h1,4861:4262630,4025873:0,0,0 ] !22380 }89 -Input:617:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:618:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:619:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:620:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:621:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:622:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!521 +Input:613:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:614:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:615:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:616:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:617:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:618:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!557 {90 -[1,4933:4262630,47279633:28320399,43253760,0 -(1,4933:4262630,4025873:0,0,0 -[1,4933:-473657,4025873:25952256,0,0 -(1,4933:-473657,-710414:25952256,0,0 -h1,4933:-473657,-710414:0,0,0 -(1,4933:-473657,-710414:0,0,0 -(1,4933:-473657,-710414:0,0,0 -g1,4933:-473657,-710414 -(1,4933:-473657,-710414:65781,0,65781 -g1,4933:-407876,-710414 -[1,4933:-407876,-644633:0,0,0 +[1,4939:4262630,47279633:28320399,43253760,0 +(1,4939:4262630,4025873:0,0,0 +[1,4939:-473657,4025873:25952256,0,0 +(1,4939:-473657,-710414:25952256,0,0 +h1,4939:-473657,-710414:0,0,0 +(1,4939:-473657,-710414:0,0,0 +(1,4939:-473657,-710414:0,0,0 +g1,4939:-473657,-710414 +(1,4939:-473657,-710414:65781,0,65781 +g1,4939:-407876,-710414 +[1,4939:-407876,-644633:0,0,0 ] ) -k1,4933:-473657,-710414:-65781 +k1,4939:-473657,-710414:-65781 ) ) -k1,4933:25478599,-710414:25952256 -g1,4933:25478599,-710414 +k1,4939:25478599,-710414:25952256 +g1,4939:25478599,-710414 ) ] ) -[1,4933:6630773,47279633:25952256,43253760,0 -[1,4933:6630773,4812305:25952256,786432,0 -(1,4933:6630773,4812305:25952256,505283,134348 -(1,4933:6630773,4812305:25952256,505283,134348 -g1,4933:3078558,4812305 -[1,4933:3078558,4812305:0,0,0 -(1,4933:3078558,2439708:0,1703936,0 -k1,4933:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4933:2537886,2439708:1179648,16384,0 +[1,4939:6630773,47279633:25952256,43253760,0 +[1,4939:6630773,4812305:25952256,786432,0 +(1,4939:6630773,4812305:25952256,505283,134348 +(1,4939:6630773,4812305:25952256,505283,134348 +g1,4939:3078558,4812305 +[1,4939:3078558,4812305:0,0,0 +(1,4939:3078558,2439708:0,1703936,0 +k1,4939:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4939:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4933:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4939:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4933:3078558,4812305:0,0,0 -(1,4933:3078558,2439708:0,1703936,0 -g1,4933:29030814,2439708 -g1,4933:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4933:36151628,1915420:16384,1179648,0 +[1,4939:3078558,4812305:0,0,0 +(1,4939:3078558,2439708:0,1703936,0 +g1,4939:29030814,2439708 +g1,4939:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4939:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4933:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4939:37855564,2439708:1179648,16384,0 ) ) -k1,4933:3078556,2439708:-34777008 +k1,4939:3078556,2439708:-34777008 ) ] -[1,4933:3078558,4812305:0,0,0 -(1,4933:3078558,49800853:0,16384,2228224 -k1,4933:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4933:2537886,49800853:1179648,16384,0 +[1,4939:3078558,4812305:0,0,0 +(1,4939:3078558,49800853:0,16384,2228224 +k1,4939:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4939:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4933:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4939:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,4933:3078558,4812305:0,0,0 -(1,4933:3078558,49800853:0,16384,2228224 -g1,4933:29030814,49800853 -g1,4933:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4933:36151628,51504789:16384,1179648,0 +[1,4939:3078558,4812305:0,0,0 +(1,4939:3078558,49800853:0,16384,2228224 +g1,4939:29030814,49800853 +g1,4939:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4939:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4933:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4939:37855564,49800853:1179648,16384,0 ) ) -k1,4933:3078556,49800853:-34777008 +k1,4939:3078556,49800853:-34777008 ) ] -g1,4933:6630773,4812305 -g1,4933:6630773,4812305 -g1,4933:8951402,4812305 -g1,4933:10361081,4812305 -g1,4933:12911086,4812305 -g1,4933:14538345,4812305 -k1,4933:31786111,4812305:17247766 -) -) -] -[1,4933:6630773,45706769:25952256,40108032,0 -(1,4933:6630773,45706769:25952256,40108032,0 -(1,4933:6630773,45706769:0,0,0 -g1,4933:6630773,45706769 -) -[1,4933:6630773,45706769:25952256,40108032,0 -(1,4853:6630773,6254097:25952256,513147,134348 -h1,4852:6630773,6254097:983040,0,0 -k1,4852:8436028,6254097:194380 -k1,4852:9649494,6254097:194381 -k1,4852:11227994,6254097:194380 -k1,4852:14083792,6254097:194381 -k1,4852:15146524,6254097:194380 -k1,4852:16717161,6254097:194381 -k1,4852:18300904,6254097:194380 -k1,4852:21253695,6254097:194381 -k1,4852:22064113,6254097:194380 -k1,4852:22673332,6254097:194376 -k1,4852:23553874,6254097:194380 -k1,4852:24163093,6254097:194376 -k1,4852:26647301,6254097:194380 -k1,4852:27603210,6254097:194381 -k1,4852:29887533,6254097:194380 -k1,4853:32583029,6254097:0 -) -(1,4853:6630773,7095585:25952256,513147,134348 -(1,4852:6630773,7095585:0,452978,115847 -r1,4852:8747598,7095585:2116825,568825,115847 -k1,4852:6630773,7095585:-2116825 -) -(1,4852:6630773,7095585:2116825,452978,115847 -k1,4852:6630773,7095585:3277 -h1,4852:8744321,7095585:0,411205,112570 -) -g1,4852:9120497,7095585 -g1,4852:10516413,7095585 -g1,4852:12859980,7095585 -g1,4852:13474052,7095585 -g1,4852:15632807,7095585 -(1,4852:15632807,7095585:0,414482,115847 -r1,4852:17046208,7095585:1413401,530329,115847 -k1,4852:15632807,7095585:-1413401 -) -(1,4852:15632807,7095585:1413401,414482,115847 -k1,4852:15632807,7095585:3277 -h1,4852:17042931,7095585:0,411205,112570 -) -g1,4852:17245437,7095585 -g1,4852:17976163,7095585 -g1,4852:18531252,7095585 -g1,4852:20119844,7095585 -k1,4853:32583029,7095585:10413219 -g1,4853:32583029,7095585 -) -v1,4855:6630773,8076335:0,393216,0 -(1,4859:6630773,8359974:25952256,676855,196608 -g1,4859:6630773,8359974 -g1,4859:6630773,8359974 -g1,4859:6434165,8359974 -(1,4859:6434165,8359974:0,676855,196608 -r1,4859:32779637,8359974:26345472,873463,196608 -k1,4859:6434165,8359974:-26345472 -) -(1,4859:6434165,8359974:26345472,676855,196608 -[1,4859:6630773,8359974:25952256,480247,0 -(1,4857:6630773,8283953:25952256,404226,76021 -(1,4856:6630773,8283953:0,0,0 -g1,4856:6630773,8283953 -g1,4856:6630773,8283953 -g1,4856:6303093,8283953 -(1,4856:6303093,8283953:0,0,0 -) -g1,4856:6630773,8283953 -) -k1,4857:6630773,8283953:0 -h1,4857:9792230,8283953:0,0,0 -k1,4857:32583030,8283953:22790800 -g1,4857:32583030,8283953 -) -] -) -g1,4859:32583029,8359974 -g1,4859:6630773,8359974 -g1,4859:6630773,8359974 -g1,4859:32583029,8359974 -g1,4859:32583029,8359974 -) -h1,4859:6630773,8556582:0,0,0 -(1,4864:6630773,9712642:25952256,513147,126483 -h1,4862:6630773,9712642:983040,0,0 -k1,4862:9417077,9712642:198287 -k1,4862:10483716,9712642:198287 -k1,4862:12157219,9712642:198288 -k1,4862:12711366,9712642:198287 -k1,4862:14299016,9712642:198287 -k1,4862:15431846,9712642:198287 -k1,4862:18587774,9712642:198288 -k1,4862:19805146,9712642:198287 -k1,4862:21309566,9712642:198287 -k1,4862:22863138,9712642:198287 -k1,4862:23592923,9712642:198288 -k1,4862:26078417,9712642:198287 -k1,4862:26928132,9712642:198287 -k1,4862:29494890,9712642:198287 -k1,4862:30324945,9712642:198288 -k1,4862:31714677,9712642:198287 -k1,4862:32583029,9712642:0 -) -(1,4864:6630773,10554130:25952256,505283,134348 -g1,4862:7962464,10554130 -g1,4862:8976961,10554130 -g1,4862:10379431,10554130 -g1,4862:11972611,10554130 -(1,4862:11972611,10554130:0,414482,115847 -r1,4862:13386012,10554130:1413401,530329,115847 -k1,4862:11972611,10554130:-1413401 -) -(1,4862:11972611,10554130:1413401,414482,115847 -k1,4862:11972611,10554130:3277 -h1,4862:13382735,10554130:0,411205,112570 -) -g1,4862:13585241,10554130 -g1,4862:14400508,10554130 -g1,4862:16878424,10554130 -h1,4862:18247471,10554130:0,0,0 -g1,4862:18446700,10554130 -g1,4862:19455299,10554130 -g1,4862:21152681,10554130 -h1,4862:21949599,10554130:0,0,0 -g1,4862:22322498,10554130 -k1,4864:32583029,10554130:10260531 -g1,4864:32583029,10554130 -) -(1,4865:6630773,12645390:25952256,564462,12975 -(1,4865:6630773,12645390:2899444,534184,12975 -g1,4865:6630773,12645390 -g1,4865:9530217,12645390 -) -g1,4865:11150071,12645390 -k1,4865:32583029,12645390:19931332 -g1,4865:32583029,12645390 -) -(1,4868:6630773,13880094:25952256,513147,134348 -k1,4867:7629340,13880094:238349 -k1,4867:10306939,13880094:238349 -k1,4867:11158051,13880094:238350 -k1,4867:12415485,13880094:238349 -k1,4867:13836759,13880094:238349 -k1,4867:14734400,13880094:238349 -k1,4867:15328610,13880094:238350 -k1,4867:18089440,13880094:238349 -k1,4867:19346874,13880094:238349 -k1,4867:21929446,13880094:238349 -k1,4867:25552075,13880094:238350 -k1,4867:29152421,13880094:238349 -k1,4867:30409855,13880094:238349 -k1,4867:32583029,13880094:0 -) -(1,4868:6630773,14721582:25952256,513147,134348 -k1,4867:7573355,14721582:283290 -k1,4867:9315475,14721582:283289 -k1,4867:11195222,14721582:283290 -k1,4867:12010008,14721582:283289 -k1,4867:14104713,14721582:283290 -k1,4867:15655468,14721582:283289 -k1,4867:16294618,14721582:283290 -k1,4867:17560947,14721582:283289 -k1,4867:19712013,14721582:283290 -(1,4867:19712013,14721582:0,414482,115847 -r1,4867:21828838,14721582:2116825,530329,115847 -k1,4867:19712013,14721582:-2116825 -) -(1,4867:19712013,14721582:2116825,414482,115847 -k1,4867:19712013,14721582:3277 -h1,4867:21825561,14721582:0,411205,112570 -) -k1,4867:22285797,14721582:283289 -k1,4867:23196922,14721582:283290 -k1,4867:26146216,14721582:283289 -k1,4867:27080934,14721582:283290 -k1,4867:29397806,14721582:283290 -k1,4867:30700180,14721582:283289 -k1,4867:32583029,14721582:0 -) -(1,4868:6630773,15563070:25952256,505283,134348 -k1,4867:10411079,15563070:222356 -k1,4867:11091532,15563070:222356 -k1,4867:11845384,15563070:222355 -k1,4867:14697700,15563070:222356 -k1,4867:15571484,15563070:222356 -k1,4867:17184514,15563070:222356 -k1,4867:18563580,15563070:222356 -k1,4867:19468820,15563070:222355 -k1,4867:21341373,15563070:222356 -k1,4867:21978549,15563070:222333 -k1,4867:24490733,15563070:222356 -k1,4867:27118915,15563070:222355 -k1,4867:27957309,15563070:222356 -k1,4867:29198750,15563070:222356 -k1,4867:32583029,15563070:0 -) -(1,4868:6630773,16404558:25952256,513147,134348 -k1,4867:7433537,16404558:151336 -k1,4867:8929672,16404558:151336 -k1,4867:10816400,16404558:151335 -k1,4867:11986821,16404558:151336 -k1,4867:13791630,16404558:151336 -k1,4867:14926006,16404558:151336 -k1,4867:17257724,16404558:151335 -k1,4867:19010105,16404558:151336 -k1,4867:20144481,16404558:151336 -k1,4867:22033832,16404558:151336 -k1,4867:23172139,16404558:151335 -(1,4867:23172139,16404558:0,452978,115847 -r1,4867:24585540,16404558:1413401,568825,115847 -k1,4867:23172139,16404558:-1413401 -) -(1,4867:23172139,16404558:1413401,452978,115847 -k1,4867:23172139,16404558:3277 -h1,4867:24582263,16404558:0,411205,112570 -) -k1,4867:24736876,16404558:151336 -k1,4867:25571097,16404558:151336 -(1,4867:25571097,16404558:0,452978,115847 -r1,4867:26984498,16404558:1413401,568825,115847 -k1,4867:25571097,16404558:-1413401 -) -(1,4867:25571097,16404558:1413401,452978,115847 -k1,4867:25571097,16404558:3277 -h1,4867:26981221,16404558:0,411205,112570 -) -k1,4867:27516598,16404558:151336 -k1,4867:28939331,16404558:151335 -k1,4867:29773552,16404558:151336 -k1,4867:31575085,16404558:151336 -k1,4868:32583029,16404558:0 -) -(1,4868:6630773,17246046:25952256,513147,134348 -k1,4867:8484612,17246046:185292 -k1,4867:11796627,17246046:185292 -k1,4867:12633347,17246046:185292 -k1,4867:13950446,17246046:185292 -k1,4867:15918317,17246046:185292 -k1,4867:16786494,17246046:185292 -k1,4867:18526955,17246046:185292 -k1,4867:19816530,17246046:185293 -k1,4867:20749588,17246046:185292 -k1,4867:22746295,17246046:185292 -k1,4867:24199053,17246046:185292 -k1,4867:24740205,17246046:185292 -k1,4867:26798516,17246046:185292 -k1,4867:27966848,17246046:185292 -k1,4867:29887533,17246046:185292 -k1,4868:32583029,17246046:0 -) -(1,4868:6630773,18087534:25952256,513147,134348 -(1,4867:6630773,18087534:0,452978,115847 -r1,4867:8747598,18087534:2116825,568825,115847 -k1,4867:6630773,18087534:-2116825 -) -(1,4867:6630773,18087534:2116825,452978,115847 -k1,4867:6630773,18087534:3277 -h1,4867:8744321,18087534:0,411205,112570 -) -k1,4867:9139229,18087534:217961 -k1,4867:11916371,18087534:217961 -k1,4867:13153416,18087534:217960 -k1,4867:14354417,18087534:217961 -k1,4867:17155807,18087534:217961 -k1,4867:18139884,18087534:217961 -k1,4867:19376929,18087534:217960 -k1,4867:21406305,18087534:217961 -k1,4867:23914094,18087534:217961 -k1,4867:25399521,18087534:217961 -k1,4867:26636566,18087534:217960 -k1,4867:29198750,18087534:217961 -k1,4867:32583029,18087534:0 -) -(1,4868:6630773,18929022:25952256,513147,134348 -k1,4867:8305225,18929022:280501 -k1,4867:10094365,18929022:280501 -k1,4867:12810185,18929022:280502 -k1,4867:15332673,18929022:280501 -k1,4867:17487504,18929022:280501 -k1,4867:19081347,18929022:280501 -k1,4867:20353409,18929022:280502 -k1,4867:23303191,18929022:280501 -k1,4867:25616619,18929022:280501 -k1,4867:27498820,18929022:280501 -k1,4867:28194083,18929022:280420 -k1,4867:32583029,18929022:0 -) -(1,4868:6630773,19770510:25952256,513147,134348 -k1,4867:7873570,19770510:222401 -k1,4867:10606655,19770510:222401 -k1,4867:11933338,19770510:222401 -k1,4867:12903505,19770510:222401 -k1,4867:14538207,19770510:222401 -k1,4867:15952053,19770510:222401 -k1,4867:18461005,19770510:222401 -k1,4867:19444933,19770510:222400 -k1,4867:21586228,19770510:222401 -k1,4867:24472668,19770510:222401 -k1,4867:25354361,19770510:222401 -k1,4867:26195422,19770510:222401 -k1,4867:29248978,19770510:222401 -k1,4867:30490464,19770510:222401 -k1,4867:32583029,19770510:0 -) -(1,4868:6630773,20611998:25952256,513147,126483 -k1,4867:9096595,20611998:200242 -k1,4867:11477220,20611998:200242 -k1,4867:13014397,20611998:200243 -k1,4867:13962405,20611998:200242 -k1,4867:15228918,20611998:200242 -k1,4867:18150215,20611998:200242 -k1,4867:19744408,20611998:200242 -k1,4867:21978232,20611998:200242 -k1,4867:22593317,20611998:200242 -k1,4867:25631268,20611998:200242 -k1,4867:28507345,20611998:200242 -k1,4867:32583029,20611998:0 -) -(1,4868:6630773,21453486:25952256,505283,134348 -k1,4867:7376301,21453486:214031 -k1,4867:9277229,21453486:214031 -k1,4867:10682704,21453486:214030 -k1,4867:13487373,21453486:214031 -k1,4867:14720489,21453486:214031 -k1,4867:17556615,21453486:214031 -k1,4867:19160009,21453486:214031 -k1,4867:19905537,21453486:214031 -k1,4867:22798679,21453486:214030 -k1,4867:24280176,21453486:214031 -k1,4867:26218444,21453486:214016 -k1,4867:29911126,21453486:214031 -k1,4867:32583029,21453486:0 -) -(1,4868:6630773,22294974:25952256,513147,134348 -k1,4867:9989165,22294974:161546 -k1,4867:13493047,22294974:161546 -k1,4867:14267355,22294974:161546 -k1,4867:15447987,22294974:161547 -k1,4867:18182476,22294974:161546 -k1,4867:19003314,22294974:161546 -k1,4867:22204420,22294974:161546 -k1,4867:23634743,22294974:161546 -k1,4867:24900571,22294974:161546 -k1,4867:25809884,22294974:161547 -k1,4867:29232501,22294974:161546 -k1,4867:30155575,22294974:161546 -k1,4867:32583029,22294974:0 -) -(1,4868:6630773,23136462:25952256,505283,134348 -g1,4867:9341997,23136462 -g1,4867:12943855,23136462 -g1,4867:13794512,23136462 -(1,4867:13794512,23136462:0,452978,115847 -r1,4867:15911337,23136462:2116825,568825,115847 -k1,4867:13794512,23136462:-2116825 -) -(1,4867:13794512,23136462:2116825,452978,115847 -k1,4867:13794512,23136462:3277 -h1,4867:15908060,23136462:0,411205,112570 -) -k1,4868:32583029,23136462:16498022 -g1,4868:32583029,23136462 -) -(1,4870:6630773,23977950:25952256,513147,134348 -h1,4869:6630773,23977950:983040,0,0 -g1,4869:8766591,23977950 -g1,4869:10895200,23977950 -g1,4869:11450289,23977950 -g1,4869:13038881,23977950 -g1,4869:15114406,23977950 -g1,4869:17273161,23977950 -g1,4869:18663835,23977950 -g1,4869:20296992,23977950 -g1,4869:21886895,23977950 -g1,4869:22544221,23977950 -g1,4869:23394878,23977950 -g1,4869:23949967,23977950 -k1,4870:32583029,23977950:7476352 -g1,4870:32583029,23977950 -) -v1,4872:6630773,24958700:0,393216,0 -(1,4888:6630773,31324117:25952256,6758633,196608 -g1,4888:6630773,31324117 -g1,4888:6630773,31324117 -g1,4888:6434165,31324117 -(1,4888:6434165,31324117:0,6758633,196608 -r1,4888:32779637,31324117:26345472,6955241,196608 -k1,4888:6434165,31324117:-26345472 -) -(1,4888:6434165,31324117:26345472,6758633,196608 -[1,4888:6630773,31324117:25952256,6562025,0 -(1,4874:6630773,25172610:25952256,410518,101187 -(1,4873:6630773,25172610:0,0,0 -g1,4873:6630773,25172610 -g1,4873:6630773,25172610 -g1,4873:6303093,25172610 -(1,4873:6303093,25172610:0,0,0 -) -g1,4873:6630773,25172610 -) -g1,4874:8527647,25172610 -g1,4874:9476085,25172610 -g1,4874:13585980,25172610 -g1,4874:14218272,25172610 -g1,4874:15799002,25172610 -g1,4874:16431294,25172610 -g1,4874:17063586,25172610 -h1,4874:18328170,25172610:0,0,0 -k1,4874:32583029,25172610:14254859 -g1,4874:32583029,25172610 -) -(1,4875:6630773,25838788:25952256,410518,101187 -h1,4875:6630773,25838788:0,0,0 -h1,4875:8211501,25838788:0,0,0 -k1,4875:32583029,25838788:24371528 -g1,4875:32583029,25838788 -) -(1,4884:6630773,26570502:25952256,379060,101187 -(1,4877:6630773,26570502:0,0,0 -g1,4877:6630773,26570502 -g1,4877:6630773,26570502 -g1,4877:6303093,26570502 -(1,4877:6303093,26570502:0,0,0 -) -g1,4877:6630773,26570502 -) -g1,4884:7579210,26570502 -g1,4884:7895356,26570502 -g1,4884:8211502,26570502 -g1,4884:8843794,26570502 -h1,4884:9159940,26570502:0,0,0 -k1,4884:32583028,26570502:23423088 -g1,4884:32583028,26570502 -) -(1,4884:6630773,27236680:25952256,388497,9436 -h1,4884:6630773,27236680:0,0,0 -g1,4884:7579210,27236680 -g1,4884:8211502,27236680 -g1,4884:8843794,27236680 -h1,4884:9159940,27236680:0,0,0 -k1,4884:32583028,27236680:23423088 -g1,4884:32583028,27236680 -) -(1,4884:6630773,27902858:25952256,388497,0 -h1,4884:6630773,27902858:0,0,0 -g1,4884:7579210,27902858 -g1,4884:8211502,27902858 -g1,4884:8843794,27902858 -h1,4884:9159940,27902858:0,0,0 -k1,4884:32583028,27902858:23423088 -g1,4884:32583028,27902858 -) -(1,4884:6630773,28569036:25952256,388497,9436 -h1,4884:6630773,28569036:0,0,0 -g1,4884:7579210,28569036 -g1,4884:8211502,28569036 -g1,4884:8843794,28569036 -h1,4884:9159940,28569036:0,0,0 -k1,4884:32583028,28569036:23423088 -g1,4884:32583028,28569036 -) -(1,4884:6630773,29235214:25952256,388497,0 -h1,4884:6630773,29235214:0,0,0 -g1,4884:7579210,29235214 -g1,4884:8211502,29235214 -g1,4884:8843794,29235214 -h1,4884:9159940,29235214:0,0,0 -k1,4884:32583028,29235214:23423088 -g1,4884:32583028,29235214 -) -(1,4884:6630773,29901392:25952256,388497,9436 -h1,4884:6630773,29901392:0,0,0 -g1,4884:7579210,29901392 -g1,4884:8211502,29901392 -g1,4884:8843794,29901392 -h1,4884:9159940,29901392:0,0,0 -k1,4884:32583028,29901392:23423088 -g1,4884:32583028,29901392 -) -(1,4886:6630773,31222930:25952256,410518,101187 -(1,4885:6630773,31222930:0,0,0 -g1,4885:6630773,31222930 -g1,4885:6630773,31222930 -g1,4885:6303093,31222930 -(1,4885:6303093,31222930:0,0,0 -) -g1,4885:6630773,31222930 -) -k1,4886:6630773,31222930:0 -g1,4886:10424522,31222930 -g1,4886:12005251,31222930 -g1,4886:12637543,31222930 -k1,4886:12637543,31222930:0 -h1,4886:16431291,31222930:0,0,0 -k1,4886:32583029,31222930:16151738 -g1,4886:32583029,31222930 -) -] -) -g1,4888:32583029,31324117 -g1,4888:6630773,31324117 -g1,4888:6630773,31324117 -g1,4888:32583029,31324117 -g1,4888:32583029,31324117 -) -h1,4888:6630773,31520725:0,0,0 -(1,4892:6630773,32676785:25952256,513147,134348 -h1,4891:6630773,32676785:983040,0,0 -k1,4891:8768994,32676785:201632 -k1,4891:10895419,32676785:201633 -k1,4891:12116136,32676785:201632 -k1,4891:13707131,32676785:201632 -k1,4891:15785060,32676785:201633 -k1,4891:17946218,32676785:201632 -k1,4891:19339295,32676785:201632 -k1,4891:22022776,32676785:201633 -k1,4891:23508914,32676785:201632 -k1,4891:24168643,32676785:201632 -k1,4891:24901773,32676785:201633 -k1,4891:25912775,32676785:201632 -k1,4891:28138814,32676785:201632 -k1,4891:30746274,32676785:201633 -k1,4891:31563944,32676785:201632 -k1,4891:32583029,32676785:0 -) -(1,4892:6630773,33518273:25952256,505283,126483 -k1,4892:32583029,33518273:22394306 -g1,4892:32583029,33518273 -) -v1,4894:6630773,34499023:0,393216,0 -(1,4902:6630773,36186846:25952256,2081039,196608 -g1,4902:6630773,36186846 -g1,4902:6630773,36186846 -g1,4902:6434165,36186846 -(1,4902:6434165,36186846:0,2081039,196608 -r1,4902:32779637,36186846:26345472,2277647,196608 -k1,4902:6434165,36186846:-26345472 -) -(1,4902:6434165,36186846:26345472,2081039,196608 -[1,4902:6630773,36186846:25952256,1884431,0 -(1,4896:6630773,34712933:25952256,410518,101187 -(1,4895:6630773,34712933:0,0,0 -g1,4895:6630773,34712933 -g1,4895:6630773,34712933 -g1,4895:6303093,34712933 -(1,4895:6303093,34712933:0,0,0 -) -g1,4895:6630773,34712933 -) -k1,4896:6630773,34712933:0 -h1,4896:9476084,34712933:0,0,0 -k1,4896:32583028,34712933:23106944 -g1,4896:32583028,34712933 -) -(1,4897:6630773,35379111:25952256,410518,101187 -h1,4897:6630773,35379111:0,0,0 -g1,4897:10108376,35379111 -g1,4897:10740668,35379111 -h1,4897:13269834,35379111:0,0,0 -k1,4897:32583030,35379111:19313196 -g1,4897:32583030,35379111 -) -(1,4901:6630773,36110825:25952256,404226,76021 -(1,4899:6630773,36110825:0,0,0 -g1,4899:6630773,36110825 -g1,4899:6630773,36110825 -g1,4899:6303093,36110825 -(1,4899:6303093,36110825:0,0,0 -) -g1,4899:6630773,36110825 -) -g1,4901:7579210,36110825 -h1,4901:11372958,36110825:0,0,0 -k1,4901:32583030,36110825:21210072 -g1,4901:32583030,36110825 -) -] -) -g1,4902:32583029,36186846 -g1,4902:6630773,36186846 -g1,4902:6630773,36186846 -g1,4902:32583029,36186846 -g1,4902:32583029,36186846 -) -h1,4902:6630773,36383454:0,0,0 -(1,4906:6630773,37539514:25952256,513147,134348 -h1,4905:6630773,37539514:983040,0,0 -g1,4905:8766591,37539514 -g1,4905:10378121,37539514 -g1,4905:11596435,37539514 -g1,4905:12778704,37539514 -g1,4905:13846285,37539514 -g1,4905:16079096,37539514 -g1,4905:18089740,37539514 -g1,4905:18940397,37539514 -g1,4905:21392754,37539514 -g1,4905:22611068,37539514 -k1,4906:32583029,37539514:7838764 -g1,4906:32583029,37539514 -) -v1,4908:6630773,38520264:0,393216,0 -(1,4927:6630773,45510161:25952256,7383113,196608 -g1,4927:6630773,45510161 -g1,4927:6630773,45510161 -g1,4927:6434165,45510161 -(1,4927:6434165,45510161:0,7383113,196608 -r1,4927:32779637,45510161:26345472,7579721,196608 -k1,4927:6434165,45510161:-26345472 -) -(1,4927:6434165,45510161:26345472,7383113,196608 -[1,4927:6630773,45510161:25952256,7186505,0 -(1,4910:6630773,38734174:25952256,410518,101187 -(1,4909:6630773,38734174:0,0,0 -g1,4909:6630773,38734174 -g1,4909:6630773,38734174 -g1,4909:6303093,38734174 -(1,4909:6303093,38734174:0,0,0 -) -g1,4909:6630773,38734174 -) -k1,4910:6630773,38734174:0 -g1,4910:9792231,38734174 -g1,4910:10424523,38734174 -k1,4910:10424523,38734174:0 -h1,4910:14218271,38734174:0,0,0 -k1,4910:32583029,38734174:18364758 -g1,4910:32583029,38734174 -) -(1,4911:6630773,39400352:25952256,410518,101187 -h1,4911:6630773,39400352:0,0,0 -g1,4911:10108376,39400352 -g1,4911:10740668,39400352 -h1,4911:13269834,39400352:0,0,0 -k1,4911:32583030,39400352:19313196 -g1,4911:32583030,39400352 -) -(1,4915:6630773,40126905:25952256,410518,101187 -(1,4913:6630773,40126905:0,0,0 -g1,4913:6630773,40126905 -g1,4913:6630773,40126905 -g1,4913:6303093,40126905 -(1,4913:6303093,40126905:0,0,0 -) -g1,4913:6630773,40126905 -) -g1,4915:7579210,40126905 -g1,4915:8843793,40126905 -h1,4915:11056813,40126905:0,0,0 -k1,4915:32583029,40126905:21526216 -g1,4915:32583029,40126905 -) -(1,4917:6630773,41443282:25952256,410518,101187 -(1,4916:6630773,41443282:0,0,0 -g1,4916:6630773,41443282 -g1,4916:6630773,41443282 -g1,4916:6303093,41443282 -(1,4916:6303093,41443282:0,0,0 -) -g1,4916:6630773,41443282 -) -h1,4917:8211501,41443282:0,0,0 -k1,4917:32583029,41443282:24371528 -g1,4917:32583029,41443282 -) -(1,4926:6630773,42169835:25952256,379060,101187 -(1,4919:6630773,42169835:0,0,0 -g1,4919:6630773,42169835 -g1,4919:6630773,42169835 -g1,4919:6303093,42169835 -(1,4919:6303093,42169835:0,0,0 -) -g1,4919:6630773,42169835 -) -g1,4926:7579210,42169835 -g1,4926:7895356,42169835 -g1,4926:8211502,42169835 -g1,4926:8843794,42169835 -h1,4926:9159940,42169835:0,0,0 -k1,4926:32583028,42169835:23423088 -g1,4926:32583028,42169835 -) -(1,4926:6630773,42836013:25952256,388497,9436 -h1,4926:6630773,42836013:0,0,0 -g1,4926:7579210,42836013 -g1,4926:8211502,42836013 -g1,4926:8843794,42836013 -h1,4926:9159940,42836013:0,0,0 -k1,4926:32583028,42836013:23423088 -g1,4926:32583028,42836013 -) -(1,4926:6630773,43502191:25952256,388497,0 -h1,4926:6630773,43502191:0,0,0 -g1,4926:7579210,43502191 -g1,4926:8211502,43502191 -g1,4926:8843794,43502191 -h1,4926:9159940,43502191:0,0,0 -k1,4926:32583028,43502191:23423088 -g1,4926:32583028,43502191 -) -(1,4926:6630773,44168369:25952256,388497,9436 -h1,4926:6630773,44168369:0,0,0 -g1,4926:7579210,44168369 -g1,4926:8211502,44168369 -g1,4926:8843794,44168369 -h1,4926:9159940,44168369:0,0,0 -k1,4926:32583028,44168369:23423088 -g1,4926:32583028,44168369 -) -(1,4926:6630773,44834547:25952256,388497,0 -h1,4926:6630773,44834547:0,0,0 -g1,4926:7579210,44834547 -g1,4926:8211502,44834547 -g1,4926:8843794,44834547 -h1,4926:9159940,44834547:0,0,0 -k1,4926:32583028,44834547:23423088 -g1,4926:32583028,44834547 -) -(1,4926:6630773,45500725:25952256,388497,9436 -h1,4926:6630773,45500725:0,0,0 -g1,4926:7579210,45500725 -g1,4926:8211502,45500725 -g1,4926:8843794,45500725 -h1,4926:9159940,45500725:0,0,0 -k1,4926:32583028,45500725:23423088 -g1,4926:32583028,45500725 -) -] -) -g1,4927:32583029,45510161 -g1,4927:6630773,45510161 -g1,4927:6630773,45510161 -g1,4927:32583029,45510161 -g1,4927:32583029,45510161 -) -h1,4927:6630773,45706769:0,0,0 -] -(1,4933:32583029,45706769:0,0,0 -g1,4933:32583029,45706769 -) -) -] -(1,4933:6630773,47279633:25952256,0,0 -h1,4933:6630773,47279633:25952256,0,0 -) -] -h1,4933:4262630,4025873:0,0,0 +g1,4939:6630773,4812305 +g1,4939:6630773,4812305 +g1,4939:8951402,4812305 +g1,4939:10361081,4812305 +g1,4939:12911086,4812305 +g1,4939:14538345,4812305 +k1,4939:31786111,4812305:17247766 +) +) +] +[1,4939:6630773,45706769:25952256,40108032,0 +(1,4939:6630773,45706769:25952256,40108032,0 +(1,4939:6630773,45706769:0,0,0 +g1,4939:6630773,45706769 +) +[1,4939:6630773,45706769:25952256,40108032,0 +(1,4859:6630773,6254097:25952256,513147,134348 +h1,4858:6630773,6254097:983040,0,0 +k1,4858:8436028,6254097:194380 +k1,4858:9649494,6254097:194381 +k1,4858:11227994,6254097:194380 +k1,4858:14083792,6254097:194381 +k1,4858:15146524,6254097:194380 +k1,4858:16717161,6254097:194381 +k1,4858:18300904,6254097:194380 +k1,4858:21253695,6254097:194381 +k1,4858:22064113,6254097:194380 +k1,4858:22673332,6254097:194376 +k1,4858:23553874,6254097:194380 +k1,4858:24163093,6254097:194376 +k1,4858:26647301,6254097:194380 +k1,4858:27603210,6254097:194381 +k1,4858:29887533,6254097:194380 +k1,4859:32583029,6254097:0 +) +(1,4859:6630773,7095585:25952256,513147,134348 +(1,4858:6630773,7095585:0,452978,115847 +r1,4858:8747598,7095585:2116825,568825,115847 +k1,4858:6630773,7095585:-2116825 +) +(1,4858:6630773,7095585:2116825,452978,115847 +k1,4858:6630773,7095585:3277 +h1,4858:8744321,7095585:0,411205,112570 +) +g1,4858:9120497,7095585 +g1,4858:10516413,7095585 +g1,4858:12859980,7095585 +g1,4858:13474052,7095585 +g1,4858:15632807,7095585 +(1,4858:15632807,7095585:0,414482,115847 +r1,4858:17046208,7095585:1413401,530329,115847 +k1,4858:15632807,7095585:-1413401 +) +(1,4858:15632807,7095585:1413401,414482,115847 +k1,4858:15632807,7095585:3277 +h1,4858:17042931,7095585:0,411205,112570 +) +g1,4858:17245437,7095585 +g1,4858:17976163,7095585 +g1,4858:18531252,7095585 +g1,4858:20119844,7095585 +k1,4859:32583029,7095585:10413219 +g1,4859:32583029,7095585 +) +v1,4861:6630773,8076335:0,393216,0 +(1,4865:6630773,8359974:25952256,676855,196608 +g1,4865:6630773,8359974 +g1,4865:6630773,8359974 +g1,4865:6434165,8359974 +(1,4865:6434165,8359974:0,676855,196608 +r1,4865:32779637,8359974:26345472,873463,196608 +k1,4865:6434165,8359974:-26345472 +) +(1,4865:6434165,8359974:26345472,676855,196608 +[1,4865:6630773,8359974:25952256,480247,0 +(1,4863:6630773,8283953:25952256,404226,76021 +(1,4862:6630773,8283953:0,0,0 +g1,4862:6630773,8283953 +g1,4862:6630773,8283953 +g1,4862:6303093,8283953 +(1,4862:6303093,8283953:0,0,0 +) +g1,4862:6630773,8283953 +) +k1,4863:6630773,8283953:0 +h1,4863:9792230,8283953:0,0,0 +k1,4863:32583030,8283953:22790800 +g1,4863:32583030,8283953 +) +] +) +g1,4865:32583029,8359974 +g1,4865:6630773,8359974 +g1,4865:6630773,8359974 +g1,4865:32583029,8359974 +g1,4865:32583029,8359974 +) +h1,4865:6630773,8556582:0,0,0 +(1,4870:6630773,9712642:25952256,513147,126483 +h1,4868:6630773,9712642:983040,0,0 +k1,4868:9417077,9712642:198287 +k1,4868:10483716,9712642:198287 +k1,4868:12157219,9712642:198288 +k1,4868:12711366,9712642:198287 +k1,4868:14299016,9712642:198287 +k1,4868:15431846,9712642:198287 +k1,4868:18587774,9712642:198288 +k1,4868:19805146,9712642:198287 +k1,4868:21309566,9712642:198287 +k1,4868:22863138,9712642:198287 +k1,4868:23592923,9712642:198288 +k1,4868:26078417,9712642:198287 +k1,4868:26928132,9712642:198287 +k1,4868:29494890,9712642:198287 +k1,4868:30324945,9712642:198288 +k1,4868:31714677,9712642:198287 +k1,4868:32583029,9712642:0 +) +(1,4870:6630773,10554130:25952256,505283,134348 +g1,4868:7962464,10554130 +g1,4868:8976961,10554130 +g1,4868:10379431,10554130 +g1,4868:11972611,10554130 +(1,4868:11972611,10554130:0,414482,115847 +r1,4868:13386012,10554130:1413401,530329,115847 +k1,4868:11972611,10554130:-1413401 +) +(1,4868:11972611,10554130:1413401,414482,115847 +k1,4868:11972611,10554130:3277 +h1,4868:13382735,10554130:0,411205,112570 +) +g1,4868:13585241,10554130 +g1,4868:14400508,10554130 +g1,4868:16878424,10554130 +h1,4868:18247471,10554130:0,0,0 +g1,4868:18446700,10554130 +g1,4868:19455299,10554130 +g1,4868:21152681,10554130 +h1,4868:21949599,10554130:0,0,0 +g1,4868:22322498,10554130 +k1,4870:32583029,10554130:10260531 +g1,4870:32583029,10554130 +) +(1,4871:6630773,12645390:25952256,564462,12975 +(1,4871:6630773,12645390:2899444,534184,12975 +g1,4871:6630773,12645390 +g1,4871:9530217,12645390 +) +g1,4871:11150071,12645390 +k1,4871:32583029,12645390:19931332 +g1,4871:32583029,12645390 +) +(1,4874:6630773,13880094:25952256,513147,134348 +k1,4873:7629340,13880094:238349 +k1,4873:10306939,13880094:238349 +k1,4873:11158051,13880094:238350 +k1,4873:12415485,13880094:238349 +k1,4873:13836759,13880094:238349 +k1,4873:14734400,13880094:238349 +k1,4873:15328610,13880094:238350 +k1,4873:18089440,13880094:238349 +k1,4873:19346874,13880094:238349 +k1,4873:21929446,13880094:238349 +k1,4873:25552075,13880094:238350 +k1,4873:29152421,13880094:238349 +k1,4873:30409855,13880094:238349 +k1,4873:32583029,13880094:0 +) +(1,4874:6630773,14721582:25952256,513147,134348 +k1,4873:7573355,14721582:283290 +k1,4873:9315475,14721582:283289 +k1,4873:11195222,14721582:283290 +k1,4873:12010008,14721582:283289 +k1,4873:14104713,14721582:283290 +k1,4873:15655468,14721582:283289 +k1,4873:16294618,14721582:283290 +k1,4873:17560947,14721582:283289 +k1,4873:19712013,14721582:283290 +(1,4873:19712013,14721582:0,414482,115847 +r1,4873:21828838,14721582:2116825,530329,115847 +k1,4873:19712013,14721582:-2116825 +) +(1,4873:19712013,14721582:2116825,414482,115847 +k1,4873:19712013,14721582:3277 +h1,4873:21825561,14721582:0,411205,112570 +) +k1,4873:22285797,14721582:283289 +k1,4873:23196922,14721582:283290 +k1,4873:26146216,14721582:283289 +k1,4873:27080934,14721582:283290 +k1,4873:29397806,14721582:283290 +k1,4873:30700180,14721582:283289 +k1,4873:32583029,14721582:0 +) +(1,4874:6630773,15563070:25952256,505283,134348 +k1,4873:10411079,15563070:222356 +k1,4873:11091532,15563070:222356 +k1,4873:11845384,15563070:222355 +k1,4873:14697700,15563070:222356 +k1,4873:15571484,15563070:222356 +k1,4873:17184514,15563070:222356 +k1,4873:18563580,15563070:222356 +k1,4873:19468820,15563070:222355 +k1,4873:21341373,15563070:222356 +k1,4873:21978549,15563070:222333 +k1,4873:24490733,15563070:222356 +k1,4873:27118915,15563070:222355 +k1,4873:27957309,15563070:222356 +k1,4873:29198750,15563070:222356 +k1,4873:32583029,15563070:0 +) +(1,4874:6630773,16404558:25952256,513147,134348 +k1,4873:7433537,16404558:151336 +k1,4873:8929672,16404558:151336 +k1,4873:10816400,16404558:151335 +k1,4873:11986821,16404558:151336 +k1,4873:13791630,16404558:151336 +k1,4873:14926006,16404558:151336 +k1,4873:17257724,16404558:151335 +k1,4873:19010105,16404558:151336 +k1,4873:20144481,16404558:151336 +k1,4873:22033832,16404558:151336 +k1,4873:23172139,16404558:151335 +(1,4873:23172139,16404558:0,452978,115847 +r1,4873:24585540,16404558:1413401,568825,115847 +k1,4873:23172139,16404558:-1413401 +) +(1,4873:23172139,16404558:1413401,452978,115847 +k1,4873:23172139,16404558:3277 +h1,4873:24582263,16404558:0,411205,112570 +) +k1,4873:24736876,16404558:151336 +k1,4873:25571097,16404558:151336 +(1,4873:25571097,16404558:0,452978,115847 +r1,4873:26984498,16404558:1413401,568825,115847 +k1,4873:25571097,16404558:-1413401 +) +(1,4873:25571097,16404558:1413401,452978,115847 +k1,4873:25571097,16404558:3277 +h1,4873:26981221,16404558:0,411205,112570 +) +k1,4873:27516598,16404558:151336 +k1,4873:28939331,16404558:151335 +k1,4873:29773552,16404558:151336 +k1,4873:31575085,16404558:151336 +k1,4874:32583029,16404558:0 +) +(1,4874:6630773,17246046:25952256,513147,134348 +k1,4873:8484612,17246046:185292 +k1,4873:11796627,17246046:185292 +k1,4873:12633347,17246046:185292 +k1,4873:13950446,17246046:185292 +k1,4873:15918317,17246046:185292 +k1,4873:16786494,17246046:185292 +k1,4873:18526955,17246046:185292 +k1,4873:19816530,17246046:185293 +k1,4873:20749588,17246046:185292 +k1,4873:22746295,17246046:185292 +k1,4873:24199053,17246046:185292 +k1,4873:24740205,17246046:185292 +k1,4873:26798516,17246046:185292 +k1,4873:27966848,17246046:185292 +k1,4873:29887533,17246046:185292 +k1,4874:32583029,17246046:0 +) +(1,4874:6630773,18087534:25952256,513147,134348 +(1,4873:6630773,18087534:0,452978,115847 +r1,4873:8747598,18087534:2116825,568825,115847 +k1,4873:6630773,18087534:-2116825 +) +(1,4873:6630773,18087534:2116825,452978,115847 +k1,4873:6630773,18087534:3277 +h1,4873:8744321,18087534:0,411205,112570 +) +k1,4873:9139229,18087534:217961 +k1,4873:11916371,18087534:217961 +k1,4873:13153416,18087534:217960 +k1,4873:14354417,18087534:217961 +k1,4873:17155807,18087534:217961 +k1,4873:18139884,18087534:217961 +k1,4873:19376929,18087534:217960 +k1,4873:21406305,18087534:217961 +k1,4873:23914094,18087534:217961 +k1,4873:25399521,18087534:217961 +k1,4873:26636566,18087534:217960 +k1,4873:29198750,18087534:217961 +k1,4873:32583029,18087534:0 +) +(1,4874:6630773,18929022:25952256,513147,134348 +k1,4873:8305225,18929022:280501 +k1,4873:10094365,18929022:280501 +k1,4873:12810185,18929022:280502 +k1,4873:15332673,18929022:280501 +k1,4873:17487504,18929022:280501 +k1,4873:19081347,18929022:280501 +k1,4873:20353409,18929022:280502 +k1,4873:23303191,18929022:280501 +k1,4873:25616619,18929022:280501 +k1,4873:27498820,18929022:280501 +k1,4873:28194083,18929022:280420 +k1,4873:32583029,18929022:0 +) +(1,4874:6630773,19770510:25952256,513147,134348 +k1,4873:7873570,19770510:222401 +k1,4873:10606655,19770510:222401 +k1,4873:11933338,19770510:222401 +k1,4873:12903505,19770510:222401 +k1,4873:14538207,19770510:222401 +k1,4873:15952053,19770510:222401 +k1,4873:18461005,19770510:222401 +k1,4873:19444933,19770510:222400 +k1,4873:21586228,19770510:222401 +k1,4873:24472668,19770510:222401 +k1,4873:25354361,19770510:222401 +k1,4873:26195422,19770510:222401 +k1,4873:29248978,19770510:222401 +k1,4873:30490464,19770510:222401 +k1,4873:32583029,19770510:0 +) +(1,4874:6630773,20611998:25952256,513147,126483 +k1,4873:9096595,20611998:200242 +k1,4873:11477220,20611998:200242 +k1,4873:13014397,20611998:200243 +k1,4873:13962405,20611998:200242 +k1,4873:15228918,20611998:200242 +k1,4873:18150215,20611998:200242 +k1,4873:19744408,20611998:200242 +k1,4873:21978232,20611998:200242 +k1,4873:22593317,20611998:200242 +k1,4873:25631268,20611998:200242 +k1,4873:28507345,20611998:200242 +k1,4873:32583029,20611998:0 +) +(1,4874:6630773,21453486:25952256,505283,134348 +k1,4873:7376301,21453486:214031 +k1,4873:9277229,21453486:214031 +k1,4873:10682704,21453486:214030 +k1,4873:13487373,21453486:214031 +k1,4873:14720489,21453486:214031 +k1,4873:17556615,21453486:214031 +k1,4873:19160009,21453486:214031 +k1,4873:19905537,21453486:214031 +k1,4873:22798679,21453486:214030 +k1,4873:24280176,21453486:214031 +k1,4873:26218444,21453486:214016 +k1,4873:29911126,21453486:214031 +k1,4873:32583029,21453486:0 +) +(1,4874:6630773,22294974:25952256,513147,134348 +k1,4873:9989165,22294974:161546 +k1,4873:13493047,22294974:161546 +k1,4873:14267355,22294974:161546 +k1,4873:15447987,22294974:161547 +k1,4873:18182476,22294974:161546 +k1,4873:19003314,22294974:161546 +k1,4873:22204420,22294974:161546 +k1,4873:23634743,22294974:161546 +k1,4873:24900571,22294974:161546 +k1,4873:25809884,22294974:161547 +k1,4873:29232501,22294974:161546 +k1,4873:30155575,22294974:161546 +k1,4873:32583029,22294974:0 +) +(1,4874:6630773,23136462:25952256,505283,134348 +g1,4873:9341997,23136462 +g1,4873:12943855,23136462 +g1,4873:13794512,23136462 +(1,4873:13794512,23136462:0,452978,115847 +r1,4873:15911337,23136462:2116825,568825,115847 +k1,4873:13794512,23136462:-2116825 +) +(1,4873:13794512,23136462:2116825,452978,115847 +k1,4873:13794512,23136462:3277 +h1,4873:15908060,23136462:0,411205,112570 +) +k1,4874:32583029,23136462:16498022 +g1,4874:32583029,23136462 +) +(1,4876:6630773,23977950:25952256,513147,134348 +h1,4875:6630773,23977950:983040,0,0 +g1,4875:8766591,23977950 +g1,4875:10895200,23977950 +g1,4875:11450289,23977950 +g1,4875:13038881,23977950 +g1,4875:15114406,23977950 +g1,4875:17273161,23977950 +g1,4875:18663835,23977950 +g1,4875:20296992,23977950 +g1,4875:21886895,23977950 +g1,4875:22544221,23977950 +g1,4875:23394878,23977950 +g1,4875:23949967,23977950 +k1,4876:32583029,23977950:7476352 +g1,4876:32583029,23977950 +) +v1,4878:6630773,24958700:0,393216,0 +(1,4894:6630773,31324117:25952256,6758633,196608 +g1,4894:6630773,31324117 +g1,4894:6630773,31324117 +g1,4894:6434165,31324117 +(1,4894:6434165,31324117:0,6758633,196608 +r1,4894:32779637,31324117:26345472,6955241,196608 +k1,4894:6434165,31324117:-26345472 +) +(1,4894:6434165,31324117:26345472,6758633,196608 +[1,4894:6630773,31324117:25952256,6562025,0 +(1,4880:6630773,25172610:25952256,410518,101187 +(1,4879:6630773,25172610:0,0,0 +g1,4879:6630773,25172610 +g1,4879:6630773,25172610 +g1,4879:6303093,25172610 +(1,4879:6303093,25172610:0,0,0 +) +g1,4879:6630773,25172610 +) +g1,4880:8527647,25172610 +g1,4880:9476085,25172610 +g1,4880:13585980,25172610 +g1,4880:14218272,25172610 +g1,4880:15799002,25172610 +g1,4880:16431294,25172610 +g1,4880:17063586,25172610 +h1,4880:18328170,25172610:0,0,0 +k1,4880:32583029,25172610:14254859 +g1,4880:32583029,25172610 +) +(1,4881:6630773,25838788:25952256,410518,101187 +h1,4881:6630773,25838788:0,0,0 +h1,4881:8211501,25838788:0,0,0 +k1,4881:32583029,25838788:24371528 +g1,4881:32583029,25838788 +) +(1,4890:6630773,26570502:25952256,379060,101187 +(1,4883:6630773,26570502:0,0,0 +g1,4883:6630773,26570502 +g1,4883:6630773,26570502 +g1,4883:6303093,26570502 +(1,4883:6303093,26570502:0,0,0 +) +g1,4883:6630773,26570502 +) +g1,4890:7579210,26570502 +g1,4890:7895356,26570502 +g1,4890:8211502,26570502 +g1,4890:8843794,26570502 +h1,4890:9159940,26570502:0,0,0 +k1,4890:32583028,26570502:23423088 +g1,4890:32583028,26570502 +) +(1,4890:6630773,27236680:25952256,388497,9436 +h1,4890:6630773,27236680:0,0,0 +g1,4890:7579210,27236680 +g1,4890:8211502,27236680 +g1,4890:8843794,27236680 +h1,4890:9159940,27236680:0,0,0 +k1,4890:32583028,27236680:23423088 +g1,4890:32583028,27236680 +) +(1,4890:6630773,27902858:25952256,388497,0 +h1,4890:6630773,27902858:0,0,0 +g1,4890:7579210,27902858 +g1,4890:8211502,27902858 +g1,4890:8843794,27902858 +h1,4890:9159940,27902858:0,0,0 +k1,4890:32583028,27902858:23423088 +g1,4890:32583028,27902858 +) +(1,4890:6630773,28569036:25952256,388497,9436 +h1,4890:6630773,28569036:0,0,0 +g1,4890:7579210,28569036 +g1,4890:8211502,28569036 +g1,4890:8843794,28569036 +h1,4890:9159940,28569036:0,0,0 +k1,4890:32583028,28569036:23423088 +g1,4890:32583028,28569036 +) +(1,4890:6630773,29235214:25952256,388497,0 +h1,4890:6630773,29235214:0,0,0 +g1,4890:7579210,29235214 +g1,4890:8211502,29235214 +g1,4890:8843794,29235214 +h1,4890:9159940,29235214:0,0,0 +k1,4890:32583028,29235214:23423088 +g1,4890:32583028,29235214 +) +(1,4890:6630773,29901392:25952256,388497,9436 +h1,4890:6630773,29901392:0,0,0 +g1,4890:7579210,29901392 +g1,4890:8211502,29901392 +g1,4890:8843794,29901392 +h1,4890:9159940,29901392:0,0,0 +k1,4890:32583028,29901392:23423088 +g1,4890:32583028,29901392 +) +(1,4892:6630773,31222930:25952256,410518,101187 +(1,4891:6630773,31222930:0,0,0 +g1,4891:6630773,31222930 +g1,4891:6630773,31222930 +g1,4891:6303093,31222930 +(1,4891:6303093,31222930:0,0,0 +) +g1,4891:6630773,31222930 +) +k1,4892:6630773,31222930:0 +g1,4892:10424522,31222930 +g1,4892:12005251,31222930 +g1,4892:12637543,31222930 +k1,4892:12637543,31222930:0 +h1,4892:16431291,31222930:0,0,0 +k1,4892:32583029,31222930:16151738 +g1,4892:32583029,31222930 +) +] +) +g1,4894:32583029,31324117 +g1,4894:6630773,31324117 +g1,4894:6630773,31324117 +g1,4894:32583029,31324117 +g1,4894:32583029,31324117 +) +h1,4894:6630773,31520725:0,0,0 +(1,4898:6630773,32676785:25952256,513147,134348 +h1,4897:6630773,32676785:983040,0,0 +k1,4897:8768994,32676785:201632 +k1,4897:10895419,32676785:201633 +k1,4897:12116136,32676785:201632 +k1,4897:13707131,32676785:201632 +k1,4897:15785060,32676785:201633 +k1,4897:17946218,32676785:201632 +k1,4897:19339295,32676785:201632 +k1,4897:22022776,32676785:201633 +k1,4897:23508914,32676785:201632 +k1,4897:24168643,32676785:201632 +k1,4897:24901773,32676785:201633 +k1,4897:25912775,32676785:201632 +k1,4897:28138814,32676785:201632 +k1,4897:30746274,32676785:201633 +k1,4897:31563944,32676785:201632 +k1,4897:32583029,32676785:0 +) +(1,4898:6630773,33518273:25952256,505283,126483 +k1,4898:32583029,33518273:22394306 +g1,4898:32583029,33518273 +) +v1,4900:6630773,34499023:0,393216,0 +(1,4908:6630773,36186846:25952256,2081039,196608 +g1,4908:6630773,36186846 +g1,4908:6630773,36186846 +g1,4908:6434165,36186846 +(1,4908:6434165,36186846:0,2081039,196608 +r1,4908:32779637,36186846:26345472,2277647,196608 +k1,4908:6434165,36186846:-26345472 +) +(1,4908:6434165,36186846:26345472,2081039,196608 +[1,4908:6630773,36186846:25952256,1884431,0 +(1,4902:6630773,34712933:25952256,410518,101187 +(1,4901:6630773,34712933:0,0,0 +g1,4901:6630773,34712933 +g1,4901:6630773,34712933 +g1,4901:6303093,34712933 +(1,4901:6303093,34712933:0,0,0 +) +g1,4901:6630773,34712933 +) +k1,4902:6630773,34712933:0 +h1,4902:9476084,34712933:0,0,0 +k1,4902:32583028,34712933:23106944 +g1,4902:32583028,34712933 +) +(1,4903:6630773,35379111:25952256,410518,101187 +h1,4903:6630773,35379111:0,0,0 +g1,4903:10108376,35379111 +g1,4903:10740668,35379111 +h1,4903:13269834,35379111:0,0,0 +k1,4903:32583030,35379111:19313196 +g1,4903:32583030,35379111 +) +(1,4907:6630773,36110825:25952256,404226,76021 +(1,4905:6630773,36110825:0,0,0 +g1,4905:6630773,36110825 +g1,4905:6630773,36110825 +g1,4905:6303093,36110825 +(1,4905:6303093,36110825:0,0,0 +) +g1,4905:6630773,36110825 +) +g1,4907:7579210,36110825 +h1,4907:11372958,36110825:0,0,0 +k1,4907:32583030,36110825:21210072 +g1,4907:32583030,36110825 +) +] +) +g1,4908:32583029,36186846 +g1,4908:6630773,36186846 +g1,4908:6630773,36186846 +g1,4908:32583029,36186846 +g1,4908:32583029,36186846 +) +h1,4908:6630773,36383454:0,0,0 +(1,4912:6630773,37539514:25952256,513147,134348 +h1,4911:6630773,37539514:983040,0,0 +g1,4911:8766591,37539514 +g1,4911:10378121,37539514 +g1,4911:11596435,37539514 +g1,4911:12778704,37539514 +g1,4911:13846285,37539514 +g1,4911:16079096,37539514 +g1,4911:18089740,37539514 +g1,4911:18940397,37539514 +g1,4911:21392754,37539514 +g1,4911:22611068,37539514 +k1,4912:32583029,37539514:7838764 +g1,4912:32583029,37539514 +) +v1,4914:6630773,38520264:0,393216,0 +(1,4933:6630773,45510161:25952256,7383113,196608 +g1,4933:6630773,45510161 +g1,4933:6630773,45510161 +g1,4933:6434165,45510161 +(1,4933:6434165,45510161:0,7383113,196608 +r1,4933:32779637,45510161:26345472,7579721,196608 +k1,4933:6434165,45510161:-26345472 +) +(1,4933:6434165,45510161:26345472,7383113,196608 +[1,4933:6630773,45510161:25952256,7186505,0 +(1,4916:6630773,38734174:25952256,410518,101187 +(1,4915:6630773,38734174:0,0,0 +g1,4915:6630773,38734174 +g1,4915:6630773,38734174 +g1,4915:6303093,38734174 +(1,4915:6303093,38734174:0,0,0 +) +g1,4915:6630773,38734174 +) +k1,4916:6630773,38734174:0 +g1,4916:9792231,38734174 +g1,4916:10424523,38734174 +k1,4916:10424523,38734174:0 +h1,4916:14218271,38734174:0,0,0 +k1,4916:32583029,38734174:18364758 +g1,4916:32583029,38734174 +) +(1,4917:6630773,39400352:25952256,410518,101187 +h1,4917:6630773,39400352:0,0,0 +g1,4917:10108376,39400352 +g1,4917:10740668,39400352 +h1,4917:13269834,39400352:0,0,0 +k1,4917:32583030,39400352:19313196 +g1,4917:32583030,39400352 +) +(1,4921:6630773,40126905:25952256,410518,101187 +(1,4919:6630773,40126905:0,0,0 +g1,4919:6630773,40126905 +g1,4919:6630773,40126905 +g1,4919:6303093,40126905 +(1,4919:6303093,40126905:0,0,0 +) +g1,4919:6630773,40126905 +) +g1,4921:7579210,40126905 +g1,4921:8843793,40126905 +h1,4921:11056813,40126905:0,0,0 +k1,4921:32583029,40126905:21526216 +g1,4921:32583029,40126905 +) +(1,4923:6630773,41443282:25952256,410518,101187 +(1,4922:6630773,41443282:0,0,0 +g1,4922:6630773,41443282 +g1,4922:6630773,41443282 +g1,4922:6303093,41443282 +(1,4922:6303093,41443282:0,0,0 +) +g1,4922:6630773,41443282 +) +h1,4923:8211501,41443282:0,0,0 +k1,4923:32583029,41443282:24371528 +g1,4923:32583029,41443282 +) +(1,4932:6630773,42169835:25952256,379060,101187 +(1,4925:6630773,42169835:0,0,0 +g1,4925:6630773,42169835 +g1,4925:6630773,42169835 +g1,4925:6303093,42169835 +(1,4925:6303093,42169835:0,0,0 +) +g1,4925:6630773,42169835 +) +g1,4932:7579210,42169835 +g1,4932:7895356,42169835 +g1,4932:8211502,42169835 +g1,4932:8843794,42169835 +h1,4932:9159940,42169835:0,0,0 +k1,4932:32583028,42169835:23423088 +g1,4932:32583028,42169835 +) +(1,4932:6630773,42836013:25952256,388497,9436 +h1,4932:6630773,42836013:0,0,0 +g1,4932:7579210,42836013 +g1,4932:8211502,42836013 +g1,4932:8843794,42836013 +h1,4932:9159940,42836013:0,0,0 +k1,4932:32583028,42836013:23423088 +g1,4932:32583028,42836013 +) +(1,4932:6630773,43502191:25952256,388497,0 +h1,4932:6630773,43502191:0,0,0 +g1,4932:7579210,43502191 +g1,4932:8211502,43502191 +g1,4932:8843794,43502191 +h1,4932:9159940,43502191:0,0,0 +k1,4932:32583028,43502191:23423088 +g1,4932:32583028,43502191 +) +(1,4932:6630773,44168369:25952256,388497,9436 +h1,4932:6630773,44168369:0,0,0 +g1,4932:7579210,44168369 +g1,4932:8211502,44168369 +g1,4932:8843794,44168369 +h1,4932:9159940,44168369:0,0,0 +k1,4932:32583028,44168369:23423088 +g1,4932:32583028,44168369 +) +(1,4932:6630773,44834547:25952256,388497,0 +h1,4932:6630773,44834547:0,0,0 +g1,4932:7579210,44834547 +g1,4932:8211502,44834547 +g1,4932:8843794,44834547 +h1,4932:9159940,44834547:0,0,0 +k1,4932:32583028,44834547:23423088 +g1,4932:32583028,44834547 +) +(1,4932:6630773,45500725:25952256,388497,9436 +h1,4932:6630773,45500725:0,0,0 +g1,4932:7579210,45500725 +g1,4932:8211502,45500725 +g1,4932:8843794,45500725 +h1,4932:9159940,45500725:0,0,0 +k1,4932:32583028,45500725:23423088 +g1,4932:32583028,45500725 +) +] +) +g1,4933:32583029,45510161 +g1,4933:6630773,45510161 +g1,4933:6630773,45510161 +g1,4933:32583029,45510161 +g1,4933:32583029,45510161 +) +h1,4933:6630773,45706769:0,0,0 +] +(1,4939:32583029,45706769:0,0,0 +g1,4939:32583029,45706769 +) +) +] +(1,4939:6630773,47279633:25952256,0,0 +h1,4939:6630773,47279633:25952256,0,0 +) +] +h1,4939:4262630,4025873:0,0,0 ] !24167 }90 -Input:623:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:624:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:625:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:626:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:627:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:628:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:629:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:630:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:631:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:632:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!861 +Input:619:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:620:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:621:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:622:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:623:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:624:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:625:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:626:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:627:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:628:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 {91 -[1,4981:4262630,47279633:28320399,43253760,0 -(1,4981:4262630,4025873:0,0,0 -[1,4981:-473657,4025873:25952256,0,0 -(1,4981:-473657,-710414:25952256,0,0 -h1,4981:-473657,-710414:0,0,0 -(1,4981:-473657,-710414:0,0,0 -(1,4981:-473657,-710414:0,0,0 -g1,4981:-473657,-710414 -(1,4981:-473657,-710414:65781,0,65781 -g1,4981:-407876,-710414 -[1,4981:-407876,-644633:0,0,0 +[1,4987:4262630,47279633:28320399,43253760,0 +(1,4987:4262630,4025873:0,0,0 +[1,4987:-473657,4025873:25952256,0,0 +(1,4987:-473657,-710414:25952256,0,0 +h1,4987:-473657,-710414:0,0,0 +(1,4987:-473657,-710414:0,0,0 +(1,4987:-473657,-710414:0,0,0 +g1,4987:-473657,-710414 +(1,4987:-473657,-710414:65781,0,65781 +g1,4987:-407876,-710414 +[1,4987:-407876,-644633:0,0,0 ] ) -k1,4981:-473657,-710414:-65781 +k1,4987:-473657,-710414:-65781 ) ) -k1,4981:25478599,-710414:25952256 -g1,4981:25478599,-710414 +k1,4987:25478599,-710414:25952256 +g1,4987:25478599,-710414 ) ] ) -[1,4981:6630773,47279633:25952256,43253760,0 -[1,4981:6630773,4812305:25952256,786432,0 -(1,4981:6630773,4812305:25952256,505283,134348 -(1,4981:6630773,4812305:25952256,505283,134348 -g1,4981:3078558,4812305 -[1,4981:3078558,4812305:0,0,0 -(1,4981:3078558,2439708:0,1703936,0 -k1,4981:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,4981:2537886,2439708:1179648,16384,0 +[1,4987:6630773,47279633:25952256,43253760,0 +[1,4987:6630773,4812305:25952256,786432,0 +(1,4987:6630773,4812305:25952256,505283,134348 +(1,4987:6630773,4812305:25952256,505283,134348 +g1,4987:3078558,4812305 +[1,4987:3078558,4812305:0,0,0 +(1,4987:3078558,2439708:0,1703936,0 +k1,4987:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,4987:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,4981:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,4987:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,4981:3078558,4812305:0,0,0 -(1,4981:3078558,2439708:0,1703936,0 -g1,4981:29030814,2439708 -g1,4981:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,4981:36151628,1915420:16384,1179648,0 +[1,4987:3078558,4812305:0,0,0 +(1,4987:3078558,2439708:0,1703936,0 +g1,4987:29030814,2439708 +g1,4987:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,4987:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,4981:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,4987:37855564,2439708:1179648,16384,0 ) ) -k1,4981:3078556,2439708:-34777008 +k1,4987:3078556,2439708:-34777008 ) ] -[1,4981:3078558,4812305:0,0,0 -(1,4981:3078558,49800853:0,16384,2228224 -k1,4981:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,4981:2537886,49800853:1179648,16384,0 +[1,4987:3078558,4812305:0,0,0 +(1,4987:3078558,49800853:0,16384,2228224 +k1,4987:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,4987:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,4981:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,4987:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 -) -] -) -) -) -] -[1,4981:3078558,4812305:0,0,0 -(1,4981:3078558,49800853:0,16384,2228224 -g1,4981:29030814,49800853 -g1,4981:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,4981:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,4981:37855564,49800853:1179648,16384,0 -) -) -k1,4981:3078556,49800853:-34777008 -) -] -g1,4981:6630773,4812305 -k1,4981:19562994,4812305:12135303 -g1,4981:20949735,4812305 -g1,4981:21598541,4812305 -g1,4981:24912696,4812305 -g1,4981:27600327,4812305 -g1,4981:29010006,4812305 -) -) -] -[1,4981:6630773,45706769:25952256,40108032,0 -(1,4981:6630773,45706769:25952256,40108032,0 -(1,4981:6630773,45706769:0,0,0 -g1,4981:6630773,45706769 -) -[1,4981:6630773,45706769:25952256,40108032,0 -(1,4931:6630773,6254097:25952256,513147,126483 -h1,4930:6630773,6254097:983040,0,0 -k1,4930:9086406,6254097:275906 -k1,4930:11627893,6254097:275907 -k1,4930:14084182,6254097:275906 -k1,4930:15873315,6254097:275907 -k1,4930:16680718,6254097:275906 -k1,4930:18978411,6254097:275907 -k1,4930:20445762,6254097:275906 -k1,4930:24728540,6254097:275907 -k1,4930:26889917,6254097:275906 -k1,4930:29338998,6254097:275907 -k1,4930:30230942,6254097:275906 -k1,4930:32583029,6254097:0 -) -(1,4931:6630773,7095585:25952256,513147,7863 -k1,4931:32583029,7095585:24465244 -g1,4931:32583029,7095585 -) -v1,4933:6630773,8451222:0,393216,0 -(1,4934:6630773,13253853:25952256,5195847,616038 -g1,4934:6630773,13253853 -(1,4934:6630773,13253853:25952256,5195847,616038 -(1,4934:6630773,13869891:25952256,5811885,0 -[1,4934:6630773,13869891:25952256,5811885,0 -(1,4934:6630773,13843677:25952256,5759457,0 -r1,4934:6656987,13843677:26214,5759457,0 -[1,4934:6656987,13843677:25899828,5759457,0 -(1,4934:6656987,13253853:25899828,4579809,0 -[1,4934:7246811,13253853:24720180,4579809,0 -(1,4934:7246811,9761418:24720180,1087374,134348 -k1,4933:8652052,9761418:195538 -k1,4933:9475425,9761418:195538 -k1,4933:10690048,9761418:195538 -k1,4933:13547002,9761418:195537 -k1,4933:15771535,9761418:195538 -k1,4933:17342674,9761418:195538 -k1,4933:18694922,9761418:195538 -k1,4933:20849986,9761418:195538 -k1,4933:22252697,9761418:195538 -k1,4933:24433321,9761418:195538 -k1,4933:25701027,9761418:195537 -k1,4933:27053275,9761418:195538 -k1,4933:28353095,9761418:195538 -k1,4933:30687073,9761418:195538 -k1,4933:31966991,9761418:0 -) -(1,4934:7246811,10602906:24720180,513147,134348 -k1,4933:8493087,10602906:227191 -k1,4933:10788595,10602906:227192 -k1,4933:11675078,10602906:227191 -k1,4933:15129263,10602906:227192 -k1,4933:17646283,10602906:227192 -k1,4933:18559636,10602906:227191 -k1,4933:22363127,10602906:227191 -k1,4933:23868926,10602906:227192 -k1,4933:25002480,10602906:227191 -k1,4933:27263254,10602906:227192 -k1,4933:29140643,10602906:227192 -k1,4933:30810281,10602906:227191 -k1,4933:31966991,10602906:0 -) -(1,4934:7246811,11444394:24720180,513147,126483 -k1,4933:8904778,11444394:268604 -k1,4933:11049678,11444394:268604 -k1,4933:11969710,11444394:268604 -k1,4933:13257399,11444394:268604 -k1,4933:15179476,11444394:268604 -k1,4933:16604790,11444394:268604 -k1,4933:18484925,11444394:268605 -k1,4933:19772614,11444394:268604 -k1,4933:21430581,11444394:268604 -k1,4933:23905782,11444394:268604 -k1,4933:25545399,11444394:268604 -k1,4933:26169863,11444394:268604 -k1,4933:27571585,11444394:268604 -k1,4933:30322037,11444394:268604 -k1,4933:31966991,11444394:0 -) -(1,4934:7246811,12285882:24720180,513147,134348 -k1,4933:9961312,12285882:142213 -k1,4933:11555147,12285882:142213 -k1,4933:12854070,12285882:142213 -k1,4933:14526549,12285882:142213 -k1,4933:15687847,12285882:142213 -k1,4933:19214339,12285882:142213 -k1,4933:20547998,12285882:142214 -k1,4933:22124139,12285882:142213 -k1,4933:24519480,12285882:142213 -k1,4933:26229314,12285882:142213 -k1,4933:27390612,12285882:142213 -k1,4933:28515865,12285882:142213 -k1,4933:29677163,12285882:142213 -k1,4933:31966991,12285882:0 -) -(1,4934:7246811,13127370:24720180,505283,126483 -g1,4933:8616513,13127370 -k1,4934:31966991,13127370:21365392 -g1,4934:31966991,13127370 -) -] -) -] -r1,4934:32583029,13843677:26214,5759457,0 -) -] -) -) -g1,4934:32583029,13253853 -) -h1,4934:6630773,13869891:0,0,0 -(1,4937:6630773,15225528:25952256,513147,134348 -h1,4936:6630773,15225528:983040,0,0 -k1,4936:11245695,15225528:159129 -k1,4936:11862922,15225528:159130 -k1,4936:12553548,15225528:159129 -k1,4936:14583076,15225528:159130 -k1,4936:15393633,15225528:159129 -k1,4936:17705621,15225528:159130 -k1,4936:18883835,15225528:159129 -k1,4936:21111280,15225528:159129 -k1,4936:21929702,15225528:159130 -k1,4936:23107916,15225528:159129 -k1,4936:25556874,15225528:159130 -k1,4936:26367431,15225528:159129 -k1,4936:27274327,15225528:159130 -k1,4936:29244871,15225528:159129 -k1,4936:30090163,15225528:159130 -k1,4936:30605152,15225528:159129 -k1,4936:32583029,15225528:0 -) -(1,4937:6630773,16067016:25952256,513147,134348 -k1,4936:7520869,16067016:230804 -k1,4936:10726352,16067016:230804 -k1,4936:13153266,16067016:230803 -k1,4936:15589357,16067016:230804 -k1,4936:16506323,16067016:230804 -k1,4936:17507830,16067016:230804 -k1,4936:20810961,16067016:230803 -k1,4936:21693193,16067016:230804 -k1,4936:25204729,16067016:230804 -(1,4936:25204729,16067016:0,452978,115847 -r1,4936:26618130,16067016:1413401,568825,115847 -k1,4936:25204729,16067016:-1413401 -) -(1,4936:25204729,16067016:1413401,452978,115847 -k1,4936:25204729,16067016:3277 -h1,4936:26614853,16067016:0,411205,112570 -) -k1,4936:27022604,16067016:230804 -k1,4936:28524805,16067016:230803 -k1,4936:30122690,16067016:230804 -k1,4936:30884991,16067016:230804 -k1,4936:32583029,16067016:0 -) -(1,4937:6630773,16908504:25952256,513147,134348 -k1,4936:9391531,16908504:221893 -k1,4936:10264853,16908504:221894 -k1,4936:11877420,16908504:221893 -k1,4936:12455173,16908504:221893 -k1,4936:14569747,16908504:221894 -k1,4936:15450932,16908504:221893 -k1,4936:17962653,16908504:221893 -k1,4936:20039216,16908504:221894 -k1,4936:21070479,16908504:221893 -k1,4936:22801011,16908504:221893 -k1,4936:25264891,16908504:221893 -k1,4936:26440334,16908504:221894 -k1,4936:27766509,16908504:221893 -k1,4936:29080887,16908504:221893 -(1,4936:29080887,16908504:0,452978,115847 -r1,4936:30494288,16908504:1413401,568825,115847 -k1,4936:29080887,16908504:-1413401 -) -(1,4936:29080887,16908504:1413401,452978,115847 -k1,4936:29080887,16908504:3277 -h1,4936:30491011,16908504:0,411205,112570 -) -k1,4936:30716182,16908504:221894 -k1,4936:31589503,16908504:221893 -k1,4936:32583029,16908504:0 -) -(1,4937:6630773,17749992:25952256,513147,134348 -k1,4936:7848395,17749992:198537 -k1,4936:10115247,17749992:198536 -k1,4936:10973076,17749992:198537 -k1,4936:13461440,17749992:198536 -k1,4936:16631379,17749992:198537 -k1,4936:17185775,17749992:198536 -k1,4936:19508989,17749992:198537 -(1,4936:19508989,17749992:0,414482,115847 -r1,4936:21977526,17749992:2468537,530329,115847 -k1,4936:19508989,17749992:-2468537 -) -(1,4936:19508989,17749992:2468537,414482,115847 -k1,4936:19508989,17749992:3277 -h1,4936:21974249,17749992:0,411205,112570 -) -k1,4936:22176063,17749992:198537 -k1,4936:23057484,17749992:198536 -k1,4936:23611881,17749992:198537 -k1,4936:26496738,17749992:198536 -k1,4936:28969374,17749992:198537 -k1,4936:32583029,17749992:0 -) -(1,4937:6630773,18591480:25952256,513147,134348 -k1,4936:8028936,18591480:201476 -k1,4936:10891830,18591480:201477 -k1,4936:12961737,18591480:201476 -k1,4936:14656124,18591480:201477 -k1,4936:16060841,18591480:201476 -k1,4936:16878356,18591480:201477 -k1,4936:18252271,18591480:201476 -k1,4936:20313003,18591480:201476 -k1,4936:21820613,18591480:201477 -k1,4936:24055671,18591480:201476 -k1,4936:24613008,18591480:201477 -k1,4936:27789163,18591480:201476 -k1,4936:29968517,18591480:201477 -k1,4936:31563944,18591480:201476 -k1,4936:32583029,18591480:0 -) -(1,4937:6630773,19432968:25952256,513147,134348 -k1,4936:8932210,19432968:233121 -k1,4936:9824623,19432968:233121 -k1,4936:11076829,19432968:233121 -k1,4936:13599778,19432968:233121 -k1,4936:16804301,19432968:233121 -k1,4936:17393282,19432968:233121 -k1,4936:20141019,19432968:233121 -k1,4936:21565584,19432968:233120 -k1,4936:23232633,19432968:233121 -k1,4936:25201147,19432968:233121 -k1,4936:26637509,19432968:233121 -k1,4936:28682045,19432968:233121 -k1,4936:30893043,19432968:233121 -k1,4936:31812326,19432968:233121 -k1,4936:32583029,19432968:0 -) -(1,4937:6630773,20274456:25952256,505283,134348 -g1,4936:9902330,20274456 -g1,4936:10752987,20274456 -(1,4936:10752987,20274456:0,414482,115847 -r1,4936:12166388,20274456:1413401,530329,115847 -k1,4936:10752987,20274456:-1413401 -) -(1,4936:10752987,20274456:1413401,414482,115847 -k1,4936:10752987,20274456:3277 -h1,4936:12163111,20274456:0,411205,112570 -) -g1,4936:12869589,20274456 -(1,4936:12869589,20274456:0,452978,115847 -r1,4936:14282990,20274456:1413401,568825,115847 -k1,4936:12869589,20274456:-1413401 -) -(1,4936:12869589,20274456:1413401,452978,115847 -k1,4936:12869589,20274456:3277 -h1,4936:14279713,20274456:0,411205,112570 -) -g1,4936:14482219,20274456 -k1,4937:32583029,20274456:14646407 -g1,4937:32583029,20274456 -) -v1,4939:6630773,21454784:0,393216,0 -(1,4944:6630773,22442350:25952256,1380782,196608 -g1,4944:6630773,22442350 -g1,4944:6630773,22442350 -g1,4944:6434165,22442350 -(1,4944:6434165,22442350:0,1380782,196608 -r1,4944:32779637,22442350:26345472,1577390,196608 -k1,4944:6434165,22442350:-26345472 -) -(1,4944:6434165,22442350:26345472,1380782,196608 -[1,4944:6630773,22442350:25952256,1184174,0 -(1,4941:6630773,21668694:25952256,410518,107478 -(1,4940:6630773,21668694:0,0,0 -g1,4940:6630773,21668694 -g1,4940:6630773,21668694 -g1,4940:6303093,21668694 -(1,4940:6303093,21668694:0,0,0 -) -g1,4940:6630773,21668694 -) -g1,4941:8843793,21668694 -g1,4941:9792231,21668694 -g1,4941:13269834,21668694 -g1,4941:13902126,21668694 -h1,4941:16115146,21668694:0,0,0 -k1,4941:32583029,21668694:16467883 -g1,4941:32583029,21668694 -) -(1,4942:6630773,22334872:25952256,410518,107478 -h1,4942:6630773,22334872:0,0,0 -g1,4942:9792231,22334872 -g1,4942:10424523,22334872 -g1,4942:12953689,22334872 -g1,4942:14534418,22334872 -g1,4942:15166710,22334872 -k1,4942:15166710,22334872:0 -h1,4942:19276604,22334872:0,0,0 -k1,4942:32583029,22334872:13306425 -g1,4942:32583029,22334872 -) -] -) -g1,4944:32583029,22442350 -g1,4944:6630773,22442350 -g1,4944:6630773,22442350 -g1,4944:32583029,22442350 -g1,4944:32583029,22442350 -) -h1,4944:6630773,22638958:0,0,0 -(1,4948:6630773,23994595:25952256,505283,134348 -h1,4947:6630773,23994595:983040,0,0 -k1,4947:9015464,23994595:204964 -k1,4947:10392867,23994595:204964 -k1,4947:14114493,23994595:204964 -k1,4947:16174781,23994595:204964 -k1,4947:17484027,23994595:204964 -k1,4947:18436757,23994595:204964 -k1,4947:21774341,23994595:204963 -k1,4947:23246771,23994595:204964 -k1,4947:23807595,23994595:204964 -k1,4947:25885578,23994595:204964 -k1,4947:29276902,23994595:204964 -k1,4947:30243394,23994595:204964 -k1,4947:32583029,23994595:0 -) -(1,4948:6630773,24836083:25952256,513147,7863 -g1,4947:7849087,24836083 -g1,4947:10743812,24836083 -k1,4948:32583030,24836083:20235552 -g1,4948:32583030,24836083 -) -v1,4950:6630773,26016410:0,393216,0 -(1,4954:6630773,26331507:25952256,708313,196608 -g1,4954:6630773,26331507 -g1,4954:6630773,26331507 -g1,4954:6434165,26331507 -(1,4954:6434165,26331507:0,708313,196608 -r1,4954:32779637,26331507:26345472,904921,196608 -k1,4954:6434165,26331507:-26345472 -) -(1,4954:6434165,26331507:26345472,708313,196608 -[1,4954:6630773,26331507:25952256,511705,0 -(1,4952:6630773,26230320:25952256,410518,101187 -(1,4951:6630773,26230320:0,0,0 -g1,4951:6630773,26230320 -g1,4951:6630773,26230320 -g1,4951:6303093,26230320 -(1,4951:6303093,26230320:0,0,0 -) -g1,4951:6630773,26230320 -) -k1,4952:6630773,26230320:0 -g1,4952:9792231,26230320 -g1,4952:10424523,26230320 -g1,4952:13902126,26230320 -g1,4952:14534418,26230320 -g1,4952:17379730,26230320 -g1,4952:18960459,26230320 -g1,4952:19592751,26230320 -k1,4952:19592751,26230320:0 -h1,4952:23702645,26230320:0,0,0 -k1,4952:32583029,26230320:8880384 -g1,4952:32583029,26230320 -) -] -) -g1,4954:32583029,26331507 -g1,4954:6630773,26331507 -g1,4954:6630773,26331507 -g1,4954:32583029,26331507 -g1,4954:32583029,26331507 -) -h1,4954:6630773,26528115:0,0,0 -v1,4958:6630773,28397901:0,393216,0 -(1,4959:6630773,30683933:25952256,2679248,616038 -g1,4959:6630773,30683933 -(1,4959:6630773,30683933:25952256,2679248,616038 -(1,4959:6630773,31299971:25952256,3295286,0 -[1,4959:6630773,31299971:25952256,3295286,0 -(1,4959:6630773,31273757:25952256,3242858,0 -r1,4959:6656987,31273757:26214,3242858,0 -[1,4959:6656987,31273757:25899828,3242858,0 -(1,4959:6656987,30683933:25899828,2063210,0 -[1,4959:7246811,30683933:24720180,2063210,0 -(1,4959:7246811,29708097:24720180,1087374,134348 -k1,4958:8698163,29708097:241649 -k1,4958:11432147,29708097:241650 -k1,4958:13409189,29708097:241649 -k1,4958:16413182,29708097:241650 -k1,4958:19326078,29708097:241649 -k1,4958:20961678,29708097:241649 -(1,4958:20961678,29708097:0,452978,115847 -r1,4959:22375079,29708097:1413401,568825,115847 -k1,4958:20961678,29708097:-1413401 -) -(1,4958:20961678,29708097:1413401,452978,115847 -k1,4958:20961678,29708097:3277 -h1,4958:22371802,29708097:0,411205,112570 -) -k1,4958:22790399,29708097:241650 -k1,4958:24285752,29708097:241649 -k1,4958:25342669,29708097:241649 -k1,4958:26650590,29708097:241650 -k1,4958:28422505,29708097:241649 -k1,4958:29315583,29708097:241650 -k1,4958:30947906,29708097:241649 -k1,4958:31966991,29708097:0 -) -(1,4959:7246811,30549585:24720180,513147,134348 -g1,4958:9735868,30549585 -g1,4958:10586525,30549585 -g1,4958:11141614,30549585 -g1,4958:12497553,30549585 -g1,4958:13975389,30549585 -g1,4958:15649833,30549585 -g1,4958:16204922,30549585 -g1,4958:17790893,30549585 -g1,4958:18602884,30549585 -g1,4958:19821198,30549585 -g1,4958:21013953,30549585 -g1,4958:21872474,30549585 -g1,4958:24031229,30549585 -g1,4958:26298774,30549585 -k1,4959:31966991,30549585:2715820 -g1,4959:31966991,30549585 -) -] -) -] -r1,4959:32583029,31273757:26214,3242858,0 -) -] -) -) -g1,4959:32583029,30683933 -) -h1,4959:6630773,31299971:0,0,0 -(1,4962:6630773,32655608:25952256,513147,134348 -h1,4961:6630773,32655608:983040,0,0 -k1,4961:8757547,32655608:325845 -k1,4961:9439252,32655608:325845 -k1,4961:11443474,32655608:325845 -k1,4961:12637671,32655608:325845 -k1,4961:14624198,32655608:325845 -k1,4961:16280424,32655608:325845 -k1,4961:17257697,32655608:325845 -k1,4961:19240292,32655608:325845 -k1,4961:20401721,32655608:325845 -k1,4961:21489094,32655608:325845 -k1,4961:24382640,32655608:325845 -k1,4961:25727570,32655608:325845 -k1,4961:27225854,32655608:325845 -k1,4961:28865041,32655608:325845 -k1,4961:30059238,32655608:325845 -k1,4961:32583029,32655608:0 -) -(1,4962:6630773,33497096:25952256,513147,134348 -k1,4961:9653558,33497096:232917 -(1,4961:9653558,33497096:0,452978,115847 -r1,4961:12473807,33497096:2820249,568825,115847 -k1,4961:9653558,33497096:-2820249 -) -(1,4961:9653558,33497096:2820249,452978,115847 -k1,4961:9653558,33497096:3277 -h1,4961:12470530,33497096:0,411205,112570 -) -k1,4961:12706723,33497096:232916 -k1,4961:14043922,33497096:232917 -k1,4961:15024605,33497096:232917 -k1,4961:16770747,33497096:232916 -k1,4961:17655092,33497096:232917 -k1,4961:19812801,33497096:232917 -k1,4961:21177524,33497096:232916 -k1,4961:22723783,33497096:232917 -k1,4961:23904350,33497096:232916 -k1,4961:26022738,33497096:232917 -k1,4961:27274740,33497096:232917 -k1,4961:28888500,33497096:232916 -k1,4961:30222422,33497096:232917 -k1,4961:32583029,33497096:0 -) -(1,4962:6630773,34338584:25952256,505283,134348 -k1,4962:32583029,34338584:23912776 -g1,4962:32583029,34338584 -) -v1,4964:6630773,35518912:0,393216,0 -(1,4968:6630773,35834009:25952256,708313,196608 -g1,4968:6630773,35834009 -g1,4968:6630773,35834009 -g1,4968:6434165,35834009 -(1,4968:6434165,35834009:0,708313,196608 -r1,4968:32779637,35834009:26345472,904921,196608 -k1,4968:6434165,35834009:-26345472 -) -(1,4968:6434165,35834009:26345472,708313,196608 -[1,4968:6630773,35834009:25952256,511705,0 -(1,4966:6630773,35732822:25952256,410518,101187 -(1,4965:6630773,35732822:0,0,0 -g1,4965:6630773,35732822 -g1,4965:6630773,35732822 -g1,4965:6303093,35732822 -(1,4965:6303093,35732822:0,0,0 -) -g1,4965:6630773,35732822 -) -k1,4966:6630773,35732822:0 -g1,4966:13585979,35732822 -k1,4966:13585979,35732822:0 -h1,4966:18012018,35732822:0,0,0 -k1,4966:32583029,35732822:14571011 -g1,4966:32583029,35732822 -) -] -) -g1,4968:32583029,35834009 -g1,4968:6630773,35834009 -g1,4968:6630773,35834009 -g1,4968:32583029,35834009 -g1,4968:32583029,35834009 -) -h1,4968:6630773,36030617:0,0,0 -(1,4971:6630773,38636026:25952256,564462,12975 -(1,4971:6630773,38636026:2899444,534184,12975 -g1,4971:6630773,38636026 -g1,4971:9530217,38636026 -) -g1,4971:11127002,38636026 -k1,4971:32583028,38636026:19954400 -g1,4971:32583028,38636026 -) -(1,4975:6630773,39870730:25952256,513147,134348 -k1,4973:8113304,39870730:285844 -k1,4973:9702573,39870730:285758 -k1,4973:12168800,39870730:285844 -k1,4973:13558927,39870730:285845 -k1,4973:14592537,39870730:285844 -k1,4973:16391608,39870730:285845 -k1,4973:17328880,39870730:285844 -k1,4973:19005399,39870730:285845 -k1,4973:22484157,39870730:285844 -k1,4973:25059830,39870730:285845 -k1,4973:27672857,39870730:285844 -k1,4973:28617994,39870730:285845 -k1,4973:31575085,39870730:285844 -k1,4975:32583029,39870730:0 -) -(1,4975:6630773,40712218:25952256,513147,134348 -k1,4973:8382667,40712218:257018 -k1,4973:11133985,40712218:257018 -k1,4973:13126396,40712218:257018 -k1,4973:14366454,40712218:257018 -k1,4973:16361487,40712218:257018 -k1,4973:17605477,40712218:257018 -(1,4973:17605477,40712218:0,452978,115847 -r1,4973:19018878,40712218:1413401,568825,115847 -k1,4973:17605477,40712218:-1413401 -) -(1,4973:17605477,40712218:1413401,452978,115847 -k1,4973:17605477,40712218:3277 -h1,4973:19015601,40712218:0,411205,112570 -) -k1,4973:19656661,40712218:257019 -k1,4973:21471470,40712218:257018 -k1,4973:22720048,40712218:257018 -k1,4973:24389367,40712218:257018 -k1,4973:25837830,40712218:257018 -k1,4973:27906263,40712218:257018 -k1,4973:29557232,40712218:257018 -k1,4975:32583029,40712218:0 -) -(1,4975:6630773,41553706:25952256,513147,126483 -(1,4973:6630773,41553706:0,452978,115847 -r1,4973:9802733,41553706:3171960,568825,115847 -k1,4973:6630773,41553706:-3171960 -) -(1,4973:6630773,41553706:3171960,452978,115847 -k1,4973:6630773,41553706:3277 -h1,4973:9799456,41553706:0,411205,112570 -) -k1,4973:10099289,41553706:296556 -k1,4973:11587291,41553706:296557 -(1,4973:11587291,41553706:0,452978,115847 -r1,4973:14759251,41553706:3171960,568825,115847 -k1,4973:11587291,41553706:-3171960 -) -(1,4973:11587291,41553706:3171960,452978,115847 -k1,4973:11587291,41553706:3277 -h1,4973:14755974,41553706:0,411205,112570 -) -k1,4973:15229477,41553706:296556 -k1,4973:19496205,41553706:296557 -k1,4974:21575996,41553706:296556 -k1,4974:23175966,41553706:296459 -k1,4974:24785865,41553706:296557 -k1,4974:26073981,41553706:296556 -k1,4974:27956509,41553706:296557 -k1,4974:31015408,41553706:296556 -k1,4974:32583029,41553706:0 -) -(1,4975:6630773,42395194:25952256,513147,134348 -k1,4974:8557402,42395194:228591 -k1,4974:10221859,42395194:228563 -k1,4974:11763792,42395194:228591 -k1,4974:12983944,42395194:228592 -k1,4974:15530543,42395194:228591 -k1,4974:16627487,42395194:228592 -k1,4974:18386344,42395194:228591 -k1,4974:19266364,42395194:228592 -k1,4974:21501667,42395194:228591 -k1,4974:22749344,42395194:228592 -k1,4974:24937461,42395194:228591 -k1,4974:26578354,42395194:228592 -k1,4974:27458373,42395194:228591 -k1,4974:28042825,42395194:228592 -k1,4974:30915138,42395194:228591 -k1,4975:32583029,42395194:0 -) -(1,4975:6630773,43236682:25952256,513147,126483 -k1,4974:8094192,43236682:155976 -k1,4974:9988182,43236682:155975 -k1,4974:11091809,43236682:155976 -k1,4974:11705881,43236682:155975 -k1,4974:12513285,43236682:155976 -k1,4974:14634685,43236682:155975 -k1,4974:15442089,43236682:155976 -k1,4974:16617149,43236682:155975 -k1,4974:18843407,43236682:155976 -k1,4974:20610258,43236682:155976 -k1,4974:21540213,43236682:155975 -k1,4974:23978808,43236682:155976 -k1,4974:24592880,43236682:155975 -k1,4974:25280353,43236682:155976 -k1,4974:26722144,43236682:155975 -k1,4974:29508080,43236682:155976 -k1,4974:30315483,43236682:155975 -k1,4974:31563944,43236682:155976 -k1,4974:32583029,43236682:0 -) -(1,4975:6630773,44078170:25952256,513147,134348 -k1,4974:9589537,44078170:180037 -k1,4974:11729099,44078170:180036 -k1,4974:12595298,44078170:180037 -k1,4974:13546038,44078170:180037 -k1,4974:16798403,44078170:180037 -k1,4974:17629867,44078170:180036 -k1,4974:18165764,44078170:180037 -k1,4974:21041297,44078170:180037 -k1,4974:21904218,44078170:180036 -k1,4974:22700293,44078170:180037 -k1,4974:23651033,44078170:180037 -k1,4974:27271055,44078170:180037 -k1,4974:29911313,44078170:180036 -k1,4974:32124932,44078170:180037 -k1,4974:32583029,44078170:0 -) -(1,4975:6630773,44919658:25952256,505283,7863 -g1,4974:7481430,44919658 -g1,4974:8036519,44919658 -k1,4975:32583029,44919658:21861500 -g1,4975:32583029,44919658 -) -v1,4977:6630773,46099985:0,393216,0 -] -(1,4981:32583029,45706769:0,0,0 -g1,4981:32583029,45706769 -) -) -] -(1,4981:6630773,47279633:25952256,0,0 -h1,4981:6630773,47279633:25952256,0,0 -) -] -h1,4981:4262630,4025873:0,0,0 -] -!23216 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 +) +] +) +) +) +] +[1,4987:3078558,4812305:0,0,0 +(1,4987:3078558,49800853:0,16384,2228224 +g1,4987:29030814,49800853 +g1,4987:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,4987:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,4987:37855564,49800853:1179648,16384,0 +) +) +k1,4987:3078556,49800853:-34777008 +) +] +g1,4987:6630773,4812305 +k1,4987:19515153,4812305:12087462 +g1,4987:20901894,4812305 +g1,4987:21550700,4812305 +g1,4987:24864855,4812305 +g1,4987:27600327,4812305 +g1,4987:29010006,4812305 +) +) +] +[1,4987:6630773,45706769:25952256,40108032,0 +(1,4987:6630773,45706769:25952256,40108032,0 +(1,4987:6630773,45706769:0,0,0 +g1,4987:6630773,45706769 +) +[1,4987:6630773,45706769:25952256,40108032,0 +(1,4937:6630773,6254097:25952256,513147,126483 +h1,4936:6630773,6254097:983040,0,0 +k1,4936:9086406,6254097:275906 +k1,4936:11627893,6254097:275907 +k1,4936:14084182,6254097:275906 +k1,4936:15873315,6254097:275907 +k1,4936:16680718,6254097:275906 +k1,4936:18978411,6254097:275907 +k1,4936:20445762,6254097:275906 +k1,4936:24728540,6254097:275907 +k1,4936:26889917,6254097:275906 +k1,4936:29338998,6254097:275907 +k1,4936:30230942,6254097:275906 +k1,4936:32583029,6254097:0 +) +(1,4937:6630773,7095585:25952256,513147,7863 +k1,4937:32583029,7095585:24465244 +g1,4937:32583029,7095585 +) +v1,4939:6630773,8461361:0,393216,0 +(1,4940:6630773,13263992:25952256,5195847,616038 +g1,4940:6630773,13263992 +(1,4940:6630773,13263992:25952256,5195847,616038 +(1,4940:6630773,13880030:25952256,5811885,0 +[1,4940:6630773,13880030:25952256,5811885,0 +(1,4940:6630773,13853816:25952256,5759457,0 +r1,4940:6656987,13853816:26214,5759457,0 +[1,4940:6656987,13853816:25899828,5759457,0 +(1,4940:6656987,13263992:25899828,4579809,0 +[1,4940:7246811,13263992:24720180,4579809,0 +(1,4940:7246811,9771557:24720180,1087374,134348 +k1,4939:8652052,9771557:195538 +k1,4939:9475425,9771557:195538 +k1,4939:10690048,9771557:195538 +k1,4939:13547002,9771557:195537 +k1,4939:15771535,9771557:195538 +k1,4939:17342674,9771557:195538 +k1,4939:18694922,9771557:195538 +k1,4939:20849986,9771557:195538 +k1,4939:22252697,9771557:195538 +k1,4939:24433321,9771557:195538 +k1,4939:25701027,9771557:195537 +k1,4939:27053275,9771557:195538 +k1,4939:28353095,9771557:195538 +k1,4939:30687073,9771557:195538 +k1,4939:31966991,9771557:0 +) +(1,4940:7246811,10613045:24720180,513147,134348 +k1,4939:8493087,10613045:227191 +k1,4939:10788595,10613045:227192 +k1,4939:11675078,10613045:227191 +k1,4939:15129263,10613045:227192 +k1,4939:17646283,10613045:227192 +k1,4939:18559636,10613045:227191 +k1,4939:22363127,10613045:227191 +k1,4939:23868926,10613045:227192 +k1,4939:25002480,10613045:227191 +k1,4939:27263254,10613045:227192 +k1,4939:29140643,10613045:227192 +k1,4939:30810281,10613045:227191 +k1,4939:31966991,10613045:0 +) +(1,4940:7246811,11454533:24720180,513147,126483 +k1,4939:8904778,11454533:268604 +k1,4939:11049678,11454533:268604 +k1,4939:11969710,11454533:268604 +k1,4939:13257399,11454533:268604 +k1,4939:15179476,11454533:268604 +k1,4939:16604790,11454533:268604 +k1,4939:18484925,11454533:268605 +k1,4939:19772614,11454533:268604 +k1,4939:21430581,11454533:268604 +k1,4939:23905782,11454533:268604 +k1,4939:25545399,11454533:268604 +k1,4939:26169863,11454533:268604 +k1,4939:27571585,11454533:268604 +k1,4939:30322037,11454533:268604 +k1,4939:31966991,11454533:0 +) +(1,4940:7246811,12296021:24720180,513147,134348 +k1,4939:9961312,12296021:142213 +k1,4939:11555147,12296021:142213 +k1,4939:12854070,12296021:142213 +k1,4939:14526549,12296021:142213 +k1,4939:15687847,12296021:142213 +k1,4939:19214339,12296021:142213 +k1,4939:20547998,12296021:142214 +k1,4939:22124139,12296021:142213 +k1,4939:24519480,12296021:142213 +k1,4939:26229314,12296021:142213 +k1,4939:27390612,12296021:142213 +k1,4939:28515865,12296021:142213 +k1,4939:29677163,12296021:142213 +k1,4939:31966991,12296021:0 +) +(1,4940:7246811,13137509:24720180,505283,126483 +g1,4939:8616513,13137509 +k1,4940:31966991,13137509:21365392 +g1,4940:31966991,13137509 +) +] +) +] +r1,4940:32583029,13853816:26214,5759457,0 +) +] +) +) +g1,4940:32583029,13263992 +) +h1,4940:6630773,13880030:0,0,0 +(1,4943:6630773,15245806:25952256,513147,134348 +h1,4942:6630773,15245806:983040,0,0 +k1,4942:11245695,15245806:159129 +k1,4942:11862922,15245806:159130 +k1,4942:12553548,15245806:159129 +k1,4942:14583076,15245806:159130 +k1,4942:15393633,15245806:159129 +k1,4942:17705621,15245806:159130 +k1,4942:18883835,15245806:159129 +k1,4942:21111280,15245806:159129 +k1,4942:21929702,15245806:159130 +k1,4942:23107916,15245806:159129 +k1,4942:25556874,15245806:159130 +k1,4942:26367431,15245806:159129 +k1,4942:27274327,15245806:159130 +k1,4942:29244871,15245806:159129 +k1,4942:30090163,15245806:159130 +k1,4942:30605152,15245806:159129 +k1,4942:32583029,15245806:0 +) +(1,4943:6630773,16087294:25952256,513147,134348 +k1,4942:7520869,16087294:230804 +k1,4942:10726352,16087294:230804 +k1,4942:13153266,16087294:230803 +k1,4942:15589357,16087294:230804 +k1,4942:16506323,16087294:230804 +k1,4942:17507830,16087294:230804 +k1,4942:20810961,16087294:230803 +k1,4942:21693193,16087294:230804 +k1,4942:25204729,16087294:230804 +(1,4942:25204729,16087294:0,452978,115847 +r1,4942:26618130,16087294:1413401,568825,115847 +k1,4942:25204729,16087294:-1413401 +) +(1,4942:25204729,16087294:1413401,452978,115847 +k1,4942:25204729,16087294:3277 +h1,4942:26614853,16087294:0,411205,112570 +) +k1,4942:27022604,16087294:230804 +k1,4942:28524805,16087294:230803 +k1,4942:30122690,16087294:230804 +k1,4942:30884991,16087294:230804 +k1,4942:32583029,16087294:0 +) +(1,4943:6630773,16928782:25952256,513147,134348 +k1,4942:9391531,16928782:221893 +k1,4942:10264853,16928782:221894 +k1,4942:11877420,16928782:221893 +k1,4942:12455173,16928782:221893 +k1,4942:14569747,16928782:221894 +k1,4942:15450932,16928782:221893 +k1,4942:17962653,16928782:221893 +k1,4942:20039216,16928782:221894 +k1,4942:21070479,16928782:221893 +k1,4942:22801011,16928782:221893 +k1,4942:25264891,16928782:221893 +k1,4942:26440334,16928782:221894 +k1,4942:27766509,16928782:221893 +k1,4942:29080887,16928782:221893 +(1,4942:29080887,16928782:0,452978,115847 +r1,4942:30494288,16928782:1413401,568825,115847 +k1,4942:29080887,16928782:-1413401 +) +(1,4942:29080887,16928782:1413401,452978,115847 +k1,4942:29080887,16928782:3277 +h1,4942:30491011,16928782:0,411205,112570 +) +k1,4942:30716182,16928782:221894 +k1,4942:31589503,16928782:221893 +k1,4942:32583029,16928782:0 +) +(1,4943:6630773,17770270:25952256,513147,134348 +k1,4942:7848395,17770270:198537 +k1,4942:10115247,17770270:198536 +k1,4942:10973076,17770270:198537 +k1,4942:13461440,17770270:198536 +k1,4942:16631379,17770270:198537 +k1,4942:17185775,17770270:198536 +k1,4942:19508989,17770270:198537 +(1,4942:19508989,17770270:0,414482,115847 +r1,4942:21977526,17770270:2468537,530329,115847 +k1,4942:19508989,17770270:-2468537 +) +(1,4942:19508989,17770270:2468537,414482,115847 +k1,4942:19508989,17770270:3277 +h1,4942:21974249,17770270:0,411205,112570 +) +k1,4942:22176063,17770270:198537 +k1,4942:23057484,17770270:198536 +k1,4942:23611881,17770270:198537 +k1,4942:26496738,17770270:198536 +k1,4942:28969374,17770270:198537 +k1,4942:32583029,17770270:0 +) +(1,4943:6630773,18611758:25952256,513147,134348 +k1,4942:8028936,18611758:201476 +k1,4942:10891830,18611758:201477 +k1,4942:12961737,18611758:201476 +k1,4942:14656124,18611758:201477 +k1,4942:16060841,18611758:201476 +k1,4942:16878356,18611758:201477 +k1,4942:18252271,18611758:201476 +k1,4942:20313003,18611758:201476 +k1,4942:21820613,18611758:201477 +k1,4942:24055671,18611758:201476 +k1,4942:24613008,18611758:201477 +k1,4942:27789163,18611758:201476 +k1,4942:29968517,18611758:201477 +k1,4942:31563944,18611758:201476 +k1,4942:32583029,18611758:0 +) +(1,4943:6630773,19453246:25952256,513147,134348 +k1,4942:8932210,19453246:233121 +k1,4942:9824623,19453246:233121 +k1,4942:11076829,19453246:233121 +k1,4942:13599778,19453246:233121 +k1,4942:16804301,19453246:233121 +k1,4942:17393282,19453246:233121 +k1,4942:20141019,19453246:233121 +k1,4942:21565584,19453246:233120 +k1,4942:23232633,19453246:233121 +k1,4942:25201147,19453246:233121 +k1,4942:26637509,19453246:233121 +k1,4942:28682045,19453246:233121 +k1,4942:30893043,19453246:233121 +k1,4942:31812326,19453246:233121 +k1,4942:32583029,19453246:0 +) +(1,4943:6630773,20294734:25952256,505283,134348 +g1,4942:9902330,20294734 +g1,4942:10752987,20294734 +(1,4942:10752987,20294734:0,414482,115847 +r1,4942:12166388,20294734:1413401,530329,115847 +k1,4942:10752987,20294734:-1413401 +) +(1,4942:10752987,20294734:1413401,414482,115847 +k1,4942:10752987,20294734:3277 +h1,4942:12163111,20294734:0,411205,112570 +) +g1,4942:12869589,20294734 +(1,4942:12869589,20294734:0,452978,115847 +r1,4942:14282990,20294734:1413401,568825,115847 +k1,4942:12869589,20294734:-1413401 +) +(1,4942:12869589,20294734:1413401,452978,115847 +k1,4942:12869589,20294734:3277 +h1,4942:14279713,20294734:0,411205,112570 +) +g1,4942:14482219,20294734 +k1,4943:32583029,20294734:14646407 +g1,4943:32583029,20294734 +) +v1,4945:6630773,21485200:0,393216,0 +(1,4950:6630773,22472766:25952256,1380782,196608 +g1,4950:6630773,22472766 +g1,4950:6630773,22472766 +g1,4950:6434165,22472766 +(1,4950:6434165,22472766:0,1380782,196608 +r1,4950:32779637,22472766:26345472,1577390,196608 +k1,4950:6434165,22472766:-26345472 +) +(1,4950:6434165,22472766:26345472,1380782,196608 +[1,4950:6630773,22472766:25952256,1184174,0 +(1,4947:6630773,21699110:25952256,410518,107478 +(1,4946:6630773,21699110:0,0,0 +g1,4946:6630773,21699110 +g1,4946:6630773,21699110 +g1,4946:6303093,21699110 +(1,4946:6303093,21699110:0,0,0 +) +g1,4946:6630773,21699110 +) +g1,4947:8843793,21699110 +g1,4947:9792231,21699110 +g1,4947:13269834,21699110 +g1,4947:13902126,21699110 +h1,4947:16115146,21699110:0,0,0 +k1,4947:32583029,21699110:16467883 +g1,4947:32583029,21699110 +) +(1,4948:6630773,22365288:25952256,410518,107478 +h1,4948:6630773,22365288:0,0,0 +g1,4948:9792231,22365288 +g1,4948:10424523,22365288 +g1,4948:12953689,22365288 +g1,4948:14534418,22365288 +g1,4948:15166710,22365288 +k1,4948:15166710,22365288:0 +h1,4948:19276604,22365288:0,0,0 +k1,4948:32583029,22365288:13306425 +g1,4948:32583029,22365288 +) +] +) +g1,4950:32583029,22472766 +g1,4950:6630773,22472766 +g1,4950:6630773,22472766 +g1,4950:32583029,22472766 +g1,4950:32583029,22472766 +) +h1,4950:6630773,22669374:0,0,0 +(1,4954:6630773,24035150:25952256,505283,134348 +h1,4953:6630773,24035150:983040,0,0 +k1,4953:9015464,24035150:204964 +k1,4953:10392867,24035150:204964 +k1,4953:14114493,24035150:204964 +k1,4953:16174781,24035150:204964 +k1,4953:17484027,24035150:204964 +k1,4953:18436757,24035150:204964 +k1,4953:21774341,24035150:204963 +k1,4953:23246771,24035150:204964 +k1,4953:23807595,24035150:204964 +k1,4953:25885578,24035150:204964 +k1,4953:29276902,24035150:204964 +k1,4953:30243394,24035150:204964 +k1,4953:32583029,24035150:0 +) +(1,4954:6630773,24876638:25952256,513147,7863 +g1,4953:7849087,24876638 +g1,4953:10743812,24876638 +k1,4954:32583030,24876638:20235552 +g1,4954:32583030,24876638 +) +v1,4956:6630773,26067104:0,393216,0 +(1,4960:6630773,26382201:25952256,708313,196608 +g1,4960:6630773,26382201 +g1,4960:6630773,26382201 +g1,4960:6434165,26382201 +(1,4960:6434165,26382201:0,708313,196608 +r1,4960:32779637,26382201:26345472,904921,196608 +k1,4960:6434165,26382201:-26345472 +) +(1,4960:6434165,26382201:26345472,708313,196608 +[1,4960:6630773,26382201:25952256,511705,0 +(1,4958:6630773,26281014:25952256,410518,101187 +(1,4957:6630773,26281014:0,0,0 +g1,4957:6630773,26281014 +g1,4957:6630773,26281014 +g1,4957:6303093,26281014 +(1,4957:6303093,26281014:0,0,0 +) +g1,4957:6630773,26281014 +) +k1,4958:6630773,26281014:0 +g1,4958:9792231,26281014 +g1,4958:10424523,26281014 +g1,4958:13902126,26281014 +g1,4958:14534418,26281014 +g1,4958:17379730,26281014 +g1,4958:18960459,26281014 +g1,4958:19592751,26281014 +k1,4958:19592751,26281014:0 +h1,4958:23702645,26281014:0,0,0 +k1,4958:32583029,26281014:8880384 +g1,4958:32583029,26281014 +) +] +) +g1,4960:32583029,26382201 +g1,4960:6630773,26382201 +g1,4960:6630773,26382201 +g1,4960:32583029,26382201 +g1,4960:32583029,26382201 +) +h1,4960:6630773,26578809:0,0,0 +v1,4964:6630773,28468873:0,393216,0 +(1,4965:6630773,30754905:25952256,2679248,616038 +g1,4965:6630773,30754905 +(1,4965:6630773,30754905:25952256,2679248,616038 +(1,4965:6630773,31370943:25952256,3295286,0 +[1,4965:6630773,31370943:25952256,3295286,0 +(1,4965:6630773,31344729:25952256,3242858,0 +r1,4965:6656987,31344729:26214,3242858,0 +[1,4965:6656987,31344729:25899828,3242858,0 +(1,4965:6656987,30754905:25899828,2063210,0 +[1,4965:7246811,30754905:24720180,2063210,0 +(1,4965:7246811,29779069:24720180,1087374,134348 +k1,4964:8698163,29779069:241649 +k1,4964:11432147,29779069:241650 +k1,4964:13409189,29779069:241649 +k1,4964:16413182,29779069:241650 +k1,4964:19326078,29779069:241649 +k1,4964:20961678,29779069:241649 +(1,4964:20961678,29779069:0,452978,115847 +r1,4965:22375079,29779069:1413401,568825,115847 +k1,4964:20961678,29779069:-1413401 +) +(1,4964:20961678,29779069:1413401,452978,115847 +k1,4964:20961678,29779069:3277 +h1,4964:22371802,29779069:0,411205,112570 +) +k1,4964:22790399,29779069:241650 +k1,4964:24285752,29779069:241649 +k1,4964:25342669,29779069:241649 +k1,4964:26650590,29779069:241650 +k1,4964:28422505,29779069:241649 +k1,4964:29315583,29779069:241650 +k1,4964:30947906,29779069:241649 +k1,4964:31966991,29779069:0 +) +(1,4965:7246811,30620557:24720180,513147,134348 +g1,4964:9735868,30620557 +g1,4964:10586525,30620557 +g1,4964:11141614,30620557 +g1,4964:12497553,30620557 +g1,4964:13975389,30620557 +g1,4964:15649833,30620557 +g1,4964:16204922,30620557 +g1,4964:17790893,30620557 +g1,4964:18602884,30620557 +g1,4964:19821198,30620557 +g1,4964:21013953,30620557 +g1,4964:21872474,30620557 +g1,4964:24031229,30620557 +g1,4964:26298774,30620557 +k1,4965:31966991,30620557:2715820 +g1,4965:31966991,30620557 +) +] +) +] +r1,4965:32583029,31344729:26214,3242858,0 +) +] +) +) +g1,4965:32583029,30754905 +) +h1,4965:6630773,31370943:0,0,0 +(1,4968:6630773,32736719:25952256,513147,134348 +h1,4967:6630773,32736719:983040,0,0 +k1,4967:8628720,32736719:197018 +k1,4967:9181597,32736719:197017 +k1,4967:11056992,32736719:197018 +k1,4967:12122361,32736719:197017 +k1,4967:13980061,32736719:197018 +k1,4967:15507460,32736719:197018 +k1,4967:16355905,32736719:197017 +k1,4967:18209673,32736719:197018 +k1,4967:19242275,32736719:197018 +k1,4967:20200820,32736719:197017 +k1,4967:22965539,32736719:197018 +k1,4967:24181641,32736719:197017 +k1,4967:25551098,32736719:197018 +k1,4967:27061458,32736719:197018 +k1,4967:28126827,32736719:197017 +k1,4967:30847636,32736719:197018 +k1,4968:32583029,32736719:0 +) +(1,4968:6630773,33578207:25952256,513147,134348 +k1,4967:8081156,33578207:182917 +(1,4967:8081156,33578207:0,452978,115847 +r1,4967:10901405,33578207:2820249,568825,115847 +k1,4967:8081156,33578207:-2820249 +) +(1,4967:8081156,33578207:2820249,452978,115847 +k1,4967:8081156,33578207:3277 +h1,4967:10898128,33578207:0,411205,112570 +) +k1,4967:11084322,33578207:182917 +k1,4967:12371521,33578207:182917 +k1,4967:13302204,33578207:182917 +k1,4967:14998347,33578207:182917 +k1,4967:15832692,33578207:182917 +k1,4967:17940401,33578207:182917 +k1,4967:19255125,33578207:182917 +k1,4967:20751384,33578207:182917 +k1,4967:21881952,33578207:182917 +k1,4967:23950340,33578207:182917 +k1,4967:25152342,33578207:182917 +k1,4967:26716103,33578207:182917 +k1,4967:28000025,33578207:182917 +k1,4967:30543549,33578207:182917 +k1,4968:32583029,33578207:0 +k1,4968:32583029,33578207:0 +) +v1,4970:6630773,34768673:0,393216,0 +(1,4974:6630773,35083770:25952256,708313,196608 +g1,4974:6630773,35083770 +g1,4974:6630773,35083770 +g1,4974:6434165,35083770 +(1,4974:6434165,35083770:0,708313,196608 +r1,4974:32779637,35083770:26345472,904921,196608 +k1,4974:6434165,35083770:-26345472 +) +(1,4974:6434165,35083770:26345472,708313,196608 +[1,4974:6630773,35083770:25952256,511705,0 +(1,4972:6630773,34982583:25952256,410518,101187 +(1,4971:6630773,34982583:0,0,0 +g1,4971:6630773,34982583 +g1,4971:6630773,34982583 +g1,4971:6303093,34982583 +(1,4971:6303093,34982583:0,0,0 +) +g1,4971:6630773,34982583 +) +k1,4972:6630773,34982583:0 +g1,4972:13585979,34982583 +k1,4972:13585979,34982583:0 +h1,4972:18012018,34982583:0,0,0 +k1,4972:32583029,34982583:14571011 +g1,4972:32583029,34982583 +) +] +) +g1,4974:32583029,35083770 +g1,4974:6630773,35083770 +g1,4974:6630773,35083770 +g1,4974:32583029,35083770 +g1,4974:32583029,35083770 +) +h1,4974:6630773,35280378:0,0,0 +(1,4977:6630773,37895926:25952256,564462,12975 +(1,4977:6630773,37895926:2899444,534184,12975 +g1,4977:6630773,37895926 +g1,4977:9530217,37895926 +) +g1,4977:11127002,37895926 +k1,4977:32583028,37895926:19954400 +g1,4977:32583028,37895926 +) +(1,4981:6630773,39130630:25952256,513147,134348 +k1,4979:8113304,39130630:285844 +k1,4979:9702573,39130630:285758 +k1,4979:12168800,39130630:285844 +k1,4979:13558927,39130630:285845 +k1,4979:14592537,39130630:285844 +k1,4979:16391608,39130630:285845 +k1,4979:17328880,39130630:285844 +k1,4979:19005399,39130630:285845 +k1,4979:22484157,39130630:285844 +k1,4979:25059830,39130630:285845 +k1,4979:27672857,39130630:285844 +k1,4979:28617994,39130630:285845 +k1,4979:31575085,39130630:285844 +k1,4981:32583029,39130630:0 +) +(1,4981:6630773,39972118:25952256,513147,134348 +k1,4979:8382667,39972118:257018 +k1,4979:11133985,39972118:257018 +k1,4979:13126396,39972118:257018 +k1,4979:14366454,39972118:257018 +k1,4979:16361487,39972118:257018 +k1,4979:17605477,39972118:257018 +(1,4979:17605477,39972118:0,452978,115847 +r1,4979:19018878,39972118:1413401,568825,115847 +k1,4979:17605477,39972118:-1413401 +) +(1,4979:17605477,39972118:1413401,452978,115847 +k1,4979:17605477,39972118:3277 +h1,4979:19015601,39972118:0,411205,112570 +) +k1,4979:19656661,39972118:257019 +k1,4979:21471470,39972118:257018 +k1,4979:22720048,39972118:257018 +k1,4979:24389367,39972118:257018 +k1,4979:25837830,39972118:257018 +k1,4979:27906263,39972118:257018 +k1,4979:29557232,39972118:257018 +k1,4981:32583029,39972118:0 +) +(1,4981:6630773,40813606:25952256,513147,126483 +(1,4979:6630773,40813606:0,452978,115847 +r1,4979:9802733,40813606:3171960,568825,115847 +k1,4979:6630773,40813606:-3171960 +) +(1,4979:6630773,40813606:3171960,452978,115847 +k1,4979:6630773,40813606:3277 +h1,4979:9799456,40813606:0,411205,112570 +) +k1,4979:10099289,40813606:296556 +k1,4979:11587291,40813606:296557 +(1,4979:11587291,40813606:0,452978,115847 +r1,4979:14759251,40813606:3171960,568825,115847 +k1,4979:11587291,40813606:-3171960 +) +(1,4979:11587291,40813606:3171960,452978,115847 +k1,4979:11587291,40813606:3277 +h1,4979:14755974,40813606:0,411205,112570 +) +k1,4979:15229477,40813606:296556 +k1,4979:19496205,40813606:296557 +k1,4980:21575996,40813606:296556 +k1,4980:23175966,40813606:296459 +k1,4980:24785865,40813606:296557 +k1,4980:26073981,40813606:296556 +k1,4980:27956509,40813606:296557 +k1,4980:31015408,40813606:296556 +k1,4980:32583029,40813606:0 +) +(1,4981:6630773,41655094:25952256,513147,134348 +k1,4980:8538177,41655094:209366 +k1,4980:10183427,41655094:209356 +k1,4980:11706136,41655094:209367 +k1,4980:12907062,41655094:209366 +k1,4980:15434436,41655094:209366 +k1,4980:16512154,41655094:209366 +k1,4980:18251787,41655094:209367 +k1,4980:19112581,41655094:209366 +k1,4980:21328659,41655094:209366 +k1,4980:22557111,41655094:209367 +k1,4980:24726003,41655094:209366 +k1,4980:26347670,41655094:209366 +k1,4980:27208464,41655094:209366 +k1,4980:27773691,41655094:209367 +k1,4980:30626779,41655094:209366 +k1,4981:32583029,41655094:0 +) +(1,4981:6630773,42496582:25952256,513147,126483 +k1,4980:7821853,42496582:171995 +k1,4980:9731864,42496582:171996 +k1,4980:10851510,42496582:171995 +k1,4980:11481603,42496582:171996 +k1,4980:12305026,42496582:171995 +k1,4980:14442447,42496582:171996 +k1,4980:15265870,42496582:171995 +k1,4980:16456951,42496582:171996 +k1,4980:18699228,42496582:171995 +k1,4980:20482098,42496582:171995 +k1,4980:21428074,42496582:171996 +k1,4980:23882688,42496582:171995 +k1,4980:24512781,42496582:171996 +k1,4980:25216273,42496582:171995 +k1,4980:26674085,42496582:171996 +k1,4980:29476040,42496582:171995 +k1,4980:30299464,42496582:171996 +k1,4980:31563944,42496582:171995 +k1,4980:32583029,42496582:0 +) +(1,4981:6630773,43338070:25952256,513147,134348 +k1,4980:9589537,43338070:180037 +k1,4980:11729099,43338070:180036 +k1,4980:12595298,43338070:180037 +k1,4980:13546038,43338070:180037 +k1,4980:16798403,43338070:180037 +k1,4980:17629867,43338070:180036 +k1,4980:18165764,43338070:180037 +k1,4980:21041297,43338070:180037 +k1,4980:21904218,43338070:180036 +k1,4980:22700293,43338070:180037 +k1,4980:23651033,43338070:180037 +k1,4980:27271055,43338070:180037 +k1,4980:29911313,43338070:180036 +k1,4980:32124932,43338070:180037 +k1,4980:32583029,43338070:0 +) +(1,4981:6630773,44179558:25952256,505283,7863 +g1,4980:7481430,44179558 +g1,4980:8036519,44179558 +k1,4981:32583029,44179558:21861500 +g1,4981:32583029,44179558 +) +v1,4983:6630773,45370024:0,393216,0 +] +(1,4987:32583029,45706769:0,0,0 +g1,4987:32583029,45706769 +) +) +] +(1,4987:6630773,47279633:25952256,0,0 +h1,4987:6630773,47279633:25952256,0,0 +) +] +h1,4987:4262630,4025873:0,0,0 +] +!23199 }91 -Input:633:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:634:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:635:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:636:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:637:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:638:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:639:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:640:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:641:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:642:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!861 +Input:629:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:630:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:631:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:632:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:633:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:634:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:635:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:636:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:637:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:638:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!921 {92 -[1,5088:4262630,47279633:28320399,43253760,0 -(1,5088:4262630,4025873:0,0,0 -[1,5088:-473657,4025873:25952256,0,0 -(1,5088:-473657,-710414:25952256,0,0 -h1,5088:-473657,-710414:0,0,0 -(1,5088:-473657,-710414:0,0,0 -(1,5088:-473657,-710414:0,0,0 -g1,5088:-473657,-710414 -(1,5088:-473657,-710414:65781,0,65781 -g1,5088:-407876,-710414 -[1,5088:-407876,-644633:0,0,0 +[1,5094:4262630,47279633:28320399,43253760,0 +(1,5094:4262630,4025873:0,0,0 +[1,5094:-473657,4025873:25952256,0,0 +(1,5094:-473657,-710414:25952256,0,0 +h1,5094:-473657,-710414:0,0,0 +(1,5094:-473657,-710414:0,0,0 +(1,5094:-473657,-710414:0,0,0 +g1,5094:-473657,-710414 +(1,5094:-473657,-710414:65781,0,65781 +g1,5094:-407876,-710414 +[1,5094:-407876,-644633:0,0,0 ] ) -k1,5088:-473657,-710414:-65781 +k1,5094:-473657,-710414:-65781 ) ) -k1,5088:25478599,-710414:25952256 -g1,5088:25478599,-710414 +k1,5094:25478599,-710414:25952256 +g1,5094:25478599,-710414 ) ] ) -[1,5088:6630773,47279633:25952256,43253760,0 -[1,5088:6630773,4812305:25952256,786432,0 -(1,5088:6630773,4812305:25952256,505283,134348 -(1,5088:6630773,4812305:25952256,505283,134348 -g1,5088:3078558,4812305 -[1,5088:3078558,4812305:0,0,0 -(1,5088:3078558,2439708:0,1703936,0 -k1,5088:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,5088:2537886,2439708:1179648,16384,0 +[1,5094:6630773,47279633:25952256,43253760,0 +[1,5094:6630773,4812305:25952256,786432,0 +(1,5094:6630773,4812305:25952256,505283,134348 +(1,5094:6630773,4812305:25952256,505283,134348 +g1,5094:3078558,4812305 +[1,5094:3078558,4812305:0,0,0 +(1,5094:3078558,2439708:0,1703936,0 +k1,5094:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,5094:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,5088:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,5094:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,5088:3078558,4812305:0,0,0 -(1,5088:3078558,2439708:0,1703936,0 -g1,5088:29030814,2439708 -g1,5088:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,5088:36151628,1915420:16384,1179648,0 +[1,5094:3078558,4812305:0,0,0 +(1,5094:3078558,2439708:0,1703936,0 +g1,5094:29030814,2439708 +g1,5094:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,5094:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,5088:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,5094:37855564,2439708:1179648,16384,0 ) ) -k1,5088:3078556,2439708:-34777008 +k1,5094:3078556,2439708:-34777008 ) ] -[1,5088:3078558,4812305:0,0,0 -(1,5088:3078558,49800853:0,16384,2228224 -k1,5088:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,5088:2537886,49800853:1179648,16384,0 +[1,5094:3078558,4812305:0,0,0 +(1,5094:3078558,49800853:0,16384,2228224 +k1,5094:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,5094:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,5088:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,5094:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,5088:3078558,4812305:0,0,0 -(1,5088:3078558,49800853:0,16384,2228224 -g1,5088:29030814,49800853 -g1,5088:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,5088:36151628,51504789:16384,1179648,0 +[1,5094:3078558,4812305:0,0,0 +(1,5094:3078558,49800853:0,16384,2228224 +g1,5094:29030814,49800853 +g1,5094:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,5094:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,5088:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,5094:37855564,49800853:1179648,16384,0 ) ) -k1,5088:3078556,49800853:-34777008 +k1,5094:3078556,49800853:-34777008 ) ] -g1,5088:6630773,4812305 -g1,5088:6630773,4812305 -g1,5088:9303331,4812305 -g1,5088:10133672,4812305 -g1,5088:11760931,4812305 -k1,5088:31786111,4812305:20025180 +g1,5094:6630773,4812305 +g1,5094:6630773,4812305 +g1,5094:9303331,4812305 +g1,5094:10133672,4812305 +g1,5094:11760931,4812305 +k1,5094:31786111,4812305:20025180 ) ) ] -[1,5088:6630773,45706769:25952256,40108032,0 -(1,5088:6630773,45706769:25952256,40108032,0 -(1,5088:6630773,45706769:0,0,0 -g1,5088:6630773,45706769 +[1,5094:6630773,45706769:25952256,40108032,0 +(1,5094:6630773,45706769:25952256,40108032,0 +(1,5094:6630773,45706769:0,0,0 +g1,5094:6630773,45706769 ) -[1,5088:6630773,45706769:25952256,40108032,0 -v1,4981:6630773,6254097:0,393216,0 -(1,4981:6630773,6569194:25952256,708313,196608 -g1,4981:6630773,6569194 -g1,4981:6630773,6569194 -g1,4981:6434165,6569194 -(1,4981:6434165,6569194:0,708313,196608 -r1,4981:32779637,6569194:26345472,904921,196608 -k1,4981:6434165,6569194:-26345472 +[1,5094:6630773,45706769:25952256,40108032,0 +v1,4987:6630773,6254097:0,393216,0 +(1,4987:6630773,6569194:25952256,708313,196608 +g1,4987:6630773,6569194 +g1,4987:6630773,6569194 +g1,4987:6434165,6569194 +(1,4987:6434165,6569194:0,708313,196608 +r1,4987:32779637,6569194:26345472,904921,196608 +k1,4987:6434165,6569194:-26345472 ) -(1,4981:6434165,6569194:26345472,708313,196608 -[1,4981:6630773,6569194:25952256,511705,0 -(1,4979:6630773,6468007:25952256,410518,101187 -(1,4978:6630773,6468007:0,0,0 -g1,4978:6630773,6468007 -g1,4978:6630773,6468007 -g1,4978:6303093,6468007 -(1,4978:6303093,6468007:0,0,0 -) -g1,4978:6630773,6468007 -) -k1,4979:6630773,6468007:0 -g1,4979:11372959,6468007 -k1,4979:11372959,6468007:0 -h1,4979:15166707,6468007:0,0,0 -k1,4979:32583029,6468007:17416322 -g1,4979:32583029,6468007 -) -] -) -g1,4981:32583029,6569194 -g1,4981:6630773,6569194 -g1,4981:6630773,6569194 -g1,4981:32583029,6569194 -g1,4981:32583029,6569194 -) -h1,4981:6630773,6765802:0,0,0 -(1,4985:6630773,8131578:25952256,513147,134348 -h1,4984:6630773,8131578:983040,0,0 -g1,4984:8290799,8131578 -g1,4984:9358380,8131578 -g1,4984:10969910,8131578 -g1,4984:12188224,8131578 -g1,4984:13544163,8131578 -g1,4984:14504920,8131578 -g1,4984:16969729,8131578 -g1,4984:18188043,8131578 -g1,4984:19799573,8131578 -g1,4984:20413645,8131578 -g1,4984:22572400,8131578 -g1,4984:23904091,8131578 -g1,4984:24851086,8131578 -g1,4984:27400436,8131578 -g1,4984:28212427,8131578 -g1,4984:29430741,8131578 -k1,4985:32583029,8131578:558373 -g1,4985:32583029,8131578 -) -v1,4987:6630773,9322044:0,393216,0 -(1,4999:6630773,13607994:25952256,4679166,196608 -g1,4999:6630773,13607994 -g1,4999:6630773,13607994 -g1,4999:6434165,13607994 -(1,4999:6434165,13607994:0,4679166,196608 -r1,4999:32779637,13607994:26345472,4875774,196608 -k1,4999:6434165,13607994:-26345472 -) -(1,4999:6434165,13607994:26345472,4679166,196608 -[1,4999:6630773,13607994:25952256,4482558,0 -(1,4989:6630773,9535954:25952256,410518,101187 -(1,4988:6630773,9535954:0,0,0 -g1,4988:6630773,9535954 -g1,4988:6630773,9535954 -g1,4988:6303093,9535954 -(1,4988:6303093,9535954:0,0,0 -) -g1,4988:6630773,9535954 -) -k1,4989:6630773,9535954:0 -k1,4989:6630773,9535954:0 -h1,4989:12953687,9535954:0,0,0 -k1,4989:32583029,9535954:19629342 -g1,4989:32583029,9535954 -) -(1,4998:6630773,10267668:25952256,379060,101187 -(1,4991:6630773,10267668:0,0,0 -g1,4991:6630773,10267668 -g1,4991:6630773,10267668 -g1,4991:6303093,10267668 -(1,4991:6303093,10267668:0,0,0 -) -g1,4991:6630773,10267668 -) -g1,4998:7579210,10267668 -g1,4998:7895356,10267668 -g1,4998:8211502,10267668 -g1,4998:8843794,10267668 -h1,4998:9159940,10267668:0,0,0 -k1,4998:32583028,10267668:23423088 -g1,4998:32583028,10267668 -) -(1,4998:6630773,10933846:25952256,388497,9436 -h1,4998:6630773,10933846:0,0,0 -g1,4998:7579210,10933846 -g1,4998:8211502,10933846 -g1,4998:8843794,10933846 -h1,4998:9159940,10933846:0,0,0 -k1,4998:32583028,10933846:23423088 -g1,4998:32583028,10933846 -) -(1,4998:6630773,11600024:25952256,388497,0 -h1,4998:6630773,11600024:0,0,0 -g1,4998:7579210,11600024 -g1,4998:8211502,11600024 -g1,4998:8843794,11600024 -h1,4998:9159940,11600024:0,0,0 -k1,4998:32583028,11600024:23423088 -g1,4998:32583028,11600024 -) -(1,4998:6630773,12266202:25952256,388497,9436 -h1,4998:6630773,12266202:0,0,0 -g1,4998:7579210,12266202 -g1,4998:8211502,12266202 -g1,4998:8843794,12266202 -h1,4998:9159940,12266202:0,0,0 -k1,4998:32583028,12266202:23423088 -g1,4998:32583028,12266202 -) -(1,4998:6630773,12932380:25952256,388497,0 -h1,4998:6630773,12932380:0,0,0 -g1,4998:7579210,12932380 -g1,4998:8211502,12932380 -g1,4998:8843794,12932380 -h1,4998:9159940,12932380:0,0,0 -k1,4998:32583028,12932380:23423088 -g1,4998:32583028,12932380 -) -(1,4998:6630773,13598558:25952256,388497,9436 -h1,4998:6630773,13598558:0,0,0 -g1,4998:7579210,13598558 -g1,4998:8211502,13598558 -g1,4998:8843794,13598558 -h1,4998:9159940,13598558:0,0,0 -k1,4998:32583028,13598558:23423088 -g1,4998:32583028,13598558 -) -] -) -g1,4999:32583029,13607994 -g1,4999:6630773,13607994 -g1,4999:6630773,13607994 -g1,4999:32583029,13607994 -g1,4999:32583029,13607994 -) -h1,4999:6630773,13804602:0,0,0 -(1,5003:6630773,15170378:25952256,513147,134348 -h1,5002:6630773,15170378:983040,0,0 -k1,5002:8478514,15170378:236866 -k1,5002:9734465,15170378:236866 -k1,5002:11355450,15170378:236865 -k1,5002:14253733,15170378:236866 -k1,5002:15358951,15170378:236866 -k1,5002:17602529,15170378:236866 -k1,5002:18858480,15170378:236866 -k1,5002:20507646,15170378:236865 -k1,5002:22704038,15170378:236866 -k1,5002:23592332,15170378:236866 -k1,5002:24185058,15170378:236866 -k1,5002:27184266,15170378:236865 -k1,5002:29332817,15170378:236866 -k1,5002:30761128,15170378:236866 -k1,5002:32583029,15170378:0 -) -(1,5003:6630773,16011866:25952256,505283,134348 -g1,5002:8114508,16011866 -g1,5002:9332822,16011866 -g1,5002:11491577,16011866 -g1,5002:13103107,16011866 -g1,5002:13833833,16011866 -g1,5002:16769845,16011866 -g1,5002:17620502,16011866 -g1,5002:18838816,16011866 -g1,5002:20194755,16011866 -k1,5003:32583029,16011866:10403188 -g1,5003:32583029,16011866 -) -v1,5005:6630773,17202332:0,393216,0 -(1,5013:6630773,18890155:25952256,2081039,196608 -g1,5013:6630773,18890155 -g1,5013:6630773,18890155 -g1,5013:6434165,18890155 -(1,5013:6434165,18890155:0,2081039,196608 -r1,5013:32779637,18890155:26345472,2277647,196608 -k1,5013:6434165,18890155:-26345472 -) -(1,5013:6434165,18890155:26345472,2081039,196608 -[1,5013:6630773,18890155:25952256,1884431,0 -(1,5007:6630773,17416242:25952256,410518,101187 -(1,5006:6630773,17416242:0,0,0 -g1,5006:6630773,17416242 -g1,5006:6630773,17416242 -g1,5006:6303093,17416242 -(1,5006:6303093,17416242:0,0,0 -) -g1,5006:6630773,17416242 -) -g1,5007:10108376,17416242 -g1,5007:11056814,17416242 -k1,5007:11056814,17416242:0 -h1,5007:17379728,17416242:0,0,0 -k1,5007:32583029,17416242:15203301 -g1,5007:32583029,17416242 -) -(1,5008:6630773,18082420:25952256,410518,101187 -h1,5008:6630773,18082420:0,0,0 -g1,5008:12005250,18082420 -h1,5008:15482852,18082420:0,0,0 -k1,5008:32583028,18082420:17100176 -g1,5008:32583028,18082420 -) -(1,5012:6630773,18814134:25952256,404226,76021 -(1,5010:6630773,18814134:0,0,0 -g1,5010:6630773,18814134 -g1,5010:6630773,18814134 -g1,5010:6303093,18814134 -(1,5010:6303093,18814134:0,0,0 -) -g1,5010:6630773,18814134 -) -g1,5012:7579210,18814134 -g1,5012:8843793,18814134 -h1,5012:10108376,18814134:0,0,0 -k1,5012:32583028,18814134:22474652 -g1,5012:32583028,18814134 -) -] -) -g1,5013:32583029,18890155 -g1,5013:6630773,18890155 -g1,5013:6630773,18890155 -g1,5013:32583029,18890155 -g1,5013:32583029,18890155 -) -h1,5013:6630773,19086763:0,0,0 -(1,5017:6630773,20452539:25952256,513147,134348 -h1,5016:6630773,20452539:983040,0,0 -g1,5016:8630931,20452539 -g1,5016:10859155,20452539 -g1,5016:11926736,20452539 -g1,5016:13782715,20452539 -g1,5016:14817528,20452539 -g1,5016:15778285,20452539 -g1,5016:18545215,20452539 -g1,5016:19763529,20452539 -k1,5017:32583029,20452539:11662790 -g1,5017:32583029,20452539 -) -v1,5019:6630773,21643005:0,393216,0 -(1,5023:6630773,21958102:25952256,708313,196608 -g1,5023:6630773,21958102 -g1,5023:6630773,21958102 -g1,5023:6434165,21958102 -(1,5023:6434165,21958102:0,708313,196608 -r1,5023:32779637,21958102:26345472,904921,196608 -k1,5023:6434165,21958102:-26345472 -) -(1,5023:6434165,21958102:26345472,708313,196608 -[1,5023:6630773,21958102:25952256,511705,0 -(1,5021:6630773,21856915:25952256,410518,101187 -(1,5020:6630773,21856915:0,0,0 -g1,5020:6630773,21856915 -g1,5020:6630773,21856915 -g1,5020:6303093,21856915 -(1,5020:6303093,21856915:0,0,0 -) -g1,5020:6630773,21856915 -) -k1,5021:6630773,21856915:0 -k1,5021:6630773,21856915:0 -h1,5021:12637541,21856915:0,0,0 -k1,5021:32583029,21856915:19945488 -g1,5021:32583029,21856915 -) -] -) -g1,5023:32583029,21958102 -g1,5023:6630773,21958102 -g1,5023:6630773,21958102 -g1,5023:32583029,21958102 -g1,5023:32583029,21958102 -) -h1,5023:6630773,22154710:0,0,0 -(1,5026:6630773,25486566:25952256,32768,229376 -(1,5026:6630773,25486566:0,32768,229376 -(1,5026:6630773,25486566:5505024,32768,229376 -r1,5026:12135797,25486566:5505024,262144,229376 -) -k1,5026:6630773,25486566:-5505024 -) -(1,5026:6630773,25486566:25952256,32768,0 -r1,5026:32583029,25486566:25952256,32768,0 -) -) -(1,5026:6630773,27090894:25952256,606339,161218 -(1,5026:6630773,27090894:2464678,582746,0 -g1,5026:6630773,27090894 -g1,5026:9095451,27090894 -) -g1,5026:12525868,27090894 -g1,5026:13514413,27090894 -k1,5026:32583029,27090894:17375428 -g1,5026:32583029,27090894 -) -(1,5029:6630773,28325598:25952256,513147,134348 -k1,5028:8749861,28325598:286701 -k1,5028:10028123,28325598:286702 -k1,5028:12546325,28325598:286701 -k1,5028:15858824,28325598:286702 -k1,5028:16761563,28325598:286701 -k1,5028:17463020,28325598:286614 -k1,5028:19034227,28325598:286701 -k1,5028:20130299,28325598:286702 -k1,5028:21162144,28325598:286701 -k1,5028:23472598,28325598:286702 -k1,5028:26521642,28325598:286701 -k1,5028:28565364,28325598:286702 -k1,5028:30119531,28325598:286701 -k1,5028:32583029,28325598:0 -) -(1,5029:6630773,29167086:25952256,513147,134348 -k1,5028:9683204,29167086:262563 -(1,5028:9683204,29167086:0,452978,115847 -r1,5028:12151741,29167086:2468537,568825,115847 -k1,5028:9683204,29167086:-2468537 -) -(1,5028:9683204,29167086:2468537,452978,115847 -k1,5028:9683204,29167086:3277 -h1,5028:12148464,29167086:0,411205,112570 -) -k1,5028:12414304,29167086:262563 -k1,5028:13208364,29167086:262563 -k1,5028:15448148,29167086:262563 -k1,5028:16658362,29167086:262563 -k1,5028:18637313,29167086:262563 -k1,5028:20289239,29167086:262563 -k1,5028:21990317,29167086:262563 -k1,5028:22935765,29167086:262563 -k1,5028:25661826,29167086:262563 -k1,5028:29055699,29167086:262563 -k1,5028:29934300,29167086:262563 -k1,5028:31215948,29167086:262563 -k1,5028:32583029,29167086:0 -) -(1,5029:6630773,30008574:25952256,513147,134348 -k1,5028:7503630,30008574:213565 -k1,5028:9288094,30008574:213566 -k1,5028:10891022,30008574:213565 -k1,5028:13484856,30008574:213566 -k1,5028:14566773,30008574:213565 -k1,5028:16310604,30008574:213565 -k1,5028:17175598,30008574:213566 -k1,5028:19757634,30008574:213565 -k1,5028:21610254,30008574:213565 -k1,5028:23179105,30008574:213566 -k1,5028:24154198,30008574:213565 -k1,5028:25896719,30008574:213566 -k1,5028:26738119,30008574:213565 -k1,5028:27970769,30008574:213565 -k1,5028:29551416,30008574:213566 -k1,5028:30424273,30008574:213565 -k1,5028:32583029,30008574:0 -) -(1,5029:6630773,30850062:25952256,505283,126483 -k1,5028:10897554,30850062:165538 -k1,5028:11931445,30850062:165539 -k1,5028:13201266,30850062:165539 -k1,5028:15390556,30850062:165538 -k1,5028:17064734,30850062:165539 -k1,5028:19298588,30850062:165538 -k1,5028:20858078,30850062:165539 -(1,5028:20858078,30850062:0,452978,115847 -r1,5028:24381750,30850062:3523672,568825,115847 -k1,5028:20858078,30850062:-3523672 -) -(1,5028:20858078,30850062:3523672,452978,115847 -k1,5028:20858078,30850062:3277 -h1,5028:24378473,30850062:0,411205,112570 -) -k1,5028:24720958,30850062:165538 -(1,5028:24720958,30850062:0,452978,115847 -r1,5028:28244630,30850062:3523672,568825,115847 -k1,5028:24720958,30850062:-3523672 -) -(1,5028:24720958,30850062:3523672,452978,115847 -k1,5028:24720958,30850062:3277 -h1,5028:28241353,30850062:0,411205,112570 -) -k1,5028:28583839,30850062:165539 -k1,5028:29940822,30850062:165538 -(1,5028:29940822,30850062:0,452978,115847 -r1,5028:32409359,30850062:2468537,568825,115847 -k1,5028:29940822,30850062:-2468537 -) -(1,5028:29940822,30850062:2468537,452978,115847 -k1,5028:29940822,30850062:3277 -h1,5028:32406082,30850062:0,411205,112570 -) -k1,5028:32583029,30850062:0 -) -(1,5029:6630773,31691550:25952256,513147,126483 -k1,5028:7347634,31691550:239104 -k1,5028:7942598,31691550:239104 -k1,5028:9571064,31691550:239103 -k1,5028:11686464,31691550:239104 -k1,5028:14627617,31691550:239104 -k1,5028:16618498,31691550:239104 -k1,5028:18391799,31691550:239103 -k1,5028:19290195,31691550:239104 -k1,5028:23774721,31691550:239104 -(1,5028:23774721,31691550:0,452978,115847 -r1,5028:25891546,31691550:2116825,568825,115847 -k1,5028:23774721,31691550:-2116825 -) -(1,5028:23774721,31691550:2116825,452978,115847 -k1,5028:23774721,31691550:3277 -h1,5028:25888269,31691550:0,411205,112570 -) -k1,5028:26130650,31691550:239104 -k1,5028:27561198,31691550:239103 -(1,5028:27561198,31691550:0,452978,115847 -r1,5028:29678023,31691550:2116825,568825,115847 -k1,5028:27561198,31691550:-2116825 -) -(1,5028:27561198,31691550:2116825,452978,115847 -k1,5028:27561198,31691550:3277 -h1,5028:29674746,31691550:0,411205,112570 -) -k1,5028:29917127,31691550:239104 -k1,5028:31837885,31691550:239104 -k1,5028:32583029,31691550:0 -) -(1,5029:6630773,32533038:25952256,513147,126483 -k1,5028:7483777,32533038:201576 -k1,5028:9486281,32533038:201575 -k1,5028:11990792,32533038:201576 -k1,5028:13211453,32533038:201576 -k1,5028:15898809,32533038:201575 -k1,5028:16759677,32533038:201576 -k1,5028:18495451,32533038:201576 -k1,5028:21220817,32533038:201575 -k1,5028:24542562,32533038:201576 -(1,5028:24542562,32533038:0,452978,115847 -r1,5028:26659387,32533038:2116825,568825,115847 -k1,5028:24542562,32533038:-2116825 -) -(1,5028:24542562,32533038:2116825,452978,115847 -k1,5028:24542562,32533038:3277 -h1,5028:26656110,32533038:0,411205,112570 -) -k1,5028:26860963,32533038:201576 -k1,5028:28253983,32533038:201575 -(1,5028:28253983,32533038:0,452978,115847 -r1,5028:30370808,32533038:2116825,568825,115847 -k1,5028:28253983,32533038:-2116825 -) -(1,5028:28253983,32533038:2116825,452978,115847 -k1,5028:28253983,32533038:3277 -h1,5028:30367531,32533038:0,411205,112570 -) -k1,5028:30572384,32533038:201576 -k1,5028:32583029,32533038:0 -) -(1,5029:6630773,33374526:25952256,513147,126483 -k1,5028:7905599,33374526:255741 -k1,5028:10647122,33374526:255742 -k1,5028:11562155,33374526:255741 -k1,5028:13352095,33374526:255742 -k1,5028:14799281,33374526:255741 -k1,5028:17768214,33374526:255742 -k1,5028:18639993,33374526:255741 -k1,5028:19914820,33374526:255742 -k1,5028:21559924,33374526:255741 -k1,5028:23691962,33374526:255742 -k1,5028:25440613,33374526:255741 -k1,5028:28942353,33374526:255742 -k1,5028:29849522,33374526:255741 -k1,5028:32583029,33374526:0 -) -(1,5029:6630773,34216014:25952256,513147,122846 -k1,5028:7905128,34216014:202186 -k1,5028:9173584,34216014:202185 -k1,5028:10027198,34216014:202186 -k1,5028:11553210,34216014:202185 -k1,5028:12438281,34216014:202186 -k1,5028:14948645,34216014:202186 -k1,5028:17069724,34216014:202185 -k1,5028:18140262,34216014:202186 -k1,5028:19434933,34216014:202186 -(1,5028:19434933,34216014:0,452978,122846 -r1,5028:22255182,34216014:2820249,575824,122846 -k1,5028:19434933,34216014:-2820249 -) -(1,5028:19434933,34216014:2820249,452978,122846 -k1,5028:19434933,34216014:3277 -h1,5028:22251905,34216014:0,411205,112570 -) -k1,5028:22838131,34216014:202185 -k1,5028:23858206,34216014:202186 -k1,5028:27478094,34216014:202185 -k1,5028:29887533,34216014:202186 -k1,5029:32583029,34216014:0 -) -(1,5029:6630773,35057502:25952256,513147,134348 -(1,5028:6630773,35057502:0,452978,115847 -r1,5028:8395886,35057502:1765113,568825,115847 -k1,5028:6630773,35057502:-1765113 -) -(1,5028:6630773,35057502:1765113,452978,115847 -k1,5028:6630773,35057502:3277 -h1,5028:8392609,35057502:0,411205,112570 -) -g1,5028:8595115,35057502 -g1,5028:11715939,35057502 -g1,5028:14540540,35057502 -g1,5028:15758854,35057502 -g1,5028:18889508,35057502 -g1,5028:19755893,35057502 -g1,5028:20369965,35057502 -k1,5029:32583029,35057502:9749566 -g1,5029:32583029,35057502 -) -v1,5031:6630773,36247968:0,393216,0 -(1,5088:6630773,44668594:25952256,8813842,196608 -g1,5088:6630773,44668594 -g1,5088:6630773,44668594 -g1,5088:6434165,44668594 -(1,5088:6434165,44668594:0,8813842,196608 -r1,5088:32779637,44668594:26345472,9010450,196608 -k1,5088:6434165,44668594:-26345472 -) -(1,5088:6434165,44668594:26345472,8813842,196608 -[1,5088:6630773,44668594:25952256,8617234,0 -(1,5033:6630773,36455586:25952256,404226,76021 -(1,5032:6630773,36455586:0,0,0 -g1,5032:6630773,36455586 -g1,5032:6630773,36455586 -g1,5032:6303093,36455586 -(1,5032:6303093,36455586:0,0,0 -) -g1,5032:6630773,36455586 -) -k1,5033:6630773,36455586:0 -h1,5033:10108375,36455586:0,0,0 -k1,5033:32583029,36455586:22474654 -g1,5033:32583029,36455586 -) -(1,5037:6630773,37187300:25952256,410518,76021 -(1,5035:6630773,37187300:0,0,0 -g1,5035:6630773,37187300 -g1,5035:6630773,37187300 -g1,5035:6303093,37187300 -(1,5035:6303093,37187300:0,0,0 -) -g1,5035:6630773,37187300 -) -g1,5037:7579210,37187300 -g1,5037:8843793,37187300 -h1,5037:12637541,37187300:0,0,0 -k1,5037:32583029,37187300:19945488 -g1,5037:32583029,37187300 -) -(1,5039:6630773,38508838:25952256,404226,76021 -(1,5038:6630773,38508838:0,0,0 -g1,5038:6630773,38508838 -g1,5038:6630773,38508838 -g1,5038:6303093,38508838 -(1,5038:6303093,38508838:0,0,0 -) -g1,5038:6630773,38508838 -) -k1,5039:6630773,38508838:0 -h1,5039:9792230,38508838:0,0,0 -k1,5039:32583030,38508838:22790800 -g1,5039:32583030,38508838 -) -(1,5043:6630773,39240552:25952256,404226,76021 -(1,5041:6630773,39240552:0,0,0 -g1,5041:6630773,39240552 -g1,5041:6630773,39240552 -g1,5041:6303093,39240552 -(1,5041:6303093,39240552:0,0,0 -) -g1,5041:6630773,39240552 -) -g1,5043:7579210,39240552 -g1,5043:8843793,39240552 -h1,5043:9476084,39240552:0,0,0 -k1,5043:32583028,39240552:23106944 -g1,5043:32583028,39240552 -) -(1,5045:6630773,40562090:25952256,404226,76021 -(1,5044:6630773,40562090:0,0,0 -g1,5044:6630773,40562090 -g1,5044:6630773,40562090 -g1,5044:6303093,40562090 -(1,5044:6303093,40562090:0,0,0 -) -g1,5044:6630773,40562090 -) -k1,5045:6630773,40562090:0 -h1,5045:9792230,40562090:0,0,0 -k1,5045:32583030,40562090:22790800 -g1,5045:32583030,40562090 -) -(1,5049:6630773,41293804:25952256,404226,76021 -(1,5047:6630773,41293804:0,0,0 -g1,5047:6630773,41293804 -g1,5047:6630773,41293804 -g1,5047:6303093,41293804 -(1,5047:6303093,41293804:0,0,0 -) -g1,5047:6630773,41293804 -) -g1,5049:7579210,41293804 -g1,5049:8843793,41293804 -h1,5049:9159939,41293804:0,0,0 -k1,5049:32583029,41293804:23423090 -g1,5049:32583029,41293804 -) -(1,5051:6630773,42615342:25952256,404226,76021 -(1,5050:6630773,42615342:0,0,0 -g1,5050:6630773,42615342 -g1,5050:6630773,42615342 -g1,5050:6303093,42615342 -(1,5050:6303093,42615342:0,0,0 -) -g1,5050:6630773,42615342 -) -k1,5051:6630773,42615342:0 -h1,5051:10108375,42615342:0,0,0 -k1,5051:32583029,42615342:22474654 -g1,5051:32583029,42615342 +(1,4987:6434165,6569194:26345472,708313,196608 +[1,4987:6630773,6569194:25952256,511705,0 +(1,4985:6630773,6468007:25952256,410518,101187 +(1,4984:6630773,6468007:0,0,0 +g1,4984:6630773,6468007 +g1,4984:6630773,6468007 +g1,4984:6303093,6468007 +(1,4984:6303093,6468007:0,0,0 +) +g1,4984:6630773,6468007 +) +k1,4985:6630773,6468007:0 +g1,4985:11372959,6468007 +k1,4985:11372959,6468007:0 +h1,4985:15166707,6468007:0,0,0 +k1,4985:32583029,6468007:17416322 +g1,4985:32583029,6468007 +) +] +) +g1,4987:32583029,6569194 +g1,4987:6630773,6569194 +g1,4987:6630773,6569194 +g1,4987:32583029,6569194 +g1,4987:32583029,6569194 +) +h1,4987:6630773,6765802:0,0,0 +(1,4991:6630773,8131578:25952256,513147,134348 +h1,4990:6630773,8131578:983040,0,0 +g1,4990:8290799,8131578 +g1,4990:9358380,8131578 +g1,4990:10969910,8131578 +g1,4990:12188224,8131578 +g1,4990:13544163,8131578 +g1,4990:14504920,8131578 +g1,4990:16969729,8131578 +g1,4990:18188043,8131578 +g1,4990:19799573,8131578 +g1,4990:20413645,8131578 +g1,4990:22572400,8131578 +g1,4990:23904091,8131578 +g1,4990:24851086,8131578 +g1,4990:27400436,8131578 +g1,4990:28212427,8131578 +g1,4990:29430741,8131578 +k1,4991:32583029,8131578:558373 +g1,4991:32583029,8131578 +) +v1,4993:6630773,9322044:0,393216,0 +(1,5005:6630773,13607994:25952256,4679166,196608 +g1,5005:6630773,13607994 +g1,5005:6630773,13607994 +g1,5005:6434165,13607994 +(1,5005:6434165,13607994:0,4679166,196608 +r1,5005:32779637,13607994:26345472,4875774,196608 +k1,5005:6434165,13607994:-26345472 +) +(1,5005:6434165,13607994:26345472,4679166,196608 +[1,5005:6630773,13607994:25952256,4482558,0 +(1,4995:6630773,9535954:25952256,410518,101187 +(1,4994:6630773,9535954:0,0,0 +g1,4994:6630773,9535954 +g1,4994:6630773,9535954 +g1,4994:6303093,9535954 +(1,4994:6303093,9535954:0,0,0 +) +g1,4994:6630773,9535954 +) +k1,4995:6630773,9535954:0 +k1,4995:6630773,9535954:0 +h1,4995:12953687,9535954:0,0,0 +k1,4995:32583029,9535954:19629342 +g1,4995:32583029,9535954 +) +(1,5004:6630773,10267668:25952256,379060,101187 +(1,4997:6630773,10267668:0,0,0 +g1,4997:6630773,10267668 +g1,4997:6630773,10267668 +g1,4997:6303093,10267668 +(1,4997:6303093,10267668:0,0,0 +) +g1,4997:6630773,10267668 +) +g1,5004:7579210,10267668 +g1,5004:7895356,10267668 +g1,5004:8211502,10267668 +g1,5004:8843794,10267668 +h1,5004:9159940,10267668:0,0,0 +k1,5004:32583028,10267668:23423088 +g1,5004:32583028,10267668 +) +(1,5004:6630773,10933846:25952256,388497,9436 +h1,5004:6630773,10933846:0,0,0 +g1,5004:7579210,10933846 +g1,5004:8211502,10933846 +g1,5004:8843794,10933846 +h1,5004:9159940,10933846:0,0,0 +k1,5004:32583028,10933846:23423088 +g1,5004:32583028,10933846 +) +(1,5004:6630773,11600024:25952256,388497,0 +h1,5004:6630773,11600024:0,0,0 +g1,5004:7579210,11600024 +g1,5004:8211502,11600024 +g1,5004:8843794,11600024 +h1,5004:9159940,11600024:0,0,0 +k1,5004:32583028,11600024:23423088 +g1,5004:32583028,11600024 +) +(1,5004:6630773,12266202:25952256,388497,9436 +h1,5004:6630773,12266202:0,0,0 +g1,5004:7579210,12266202 +g1,5004:8211502,12266202 +g1,5004:8843794,12266202 +h1,5004:9159940,12266202:0,0,0 +k1,5004:32583028,12266202:23423088 +g1,5004:32583028,12266202 +) +(1,5004:6630773,12932380:25952256,388497,0 +h1,5004:6630773,12932380:0,0,0 +g1,5004:7579210,12932380 +g1,5004:8211502,12932380 +g1,5004:8843794,12932380 +h1,5004:9159940,12932380:0,0,0 +k1,5004:32583028,12932380:23423088 +g1,5004:32583028,12932380 +) +(1,5004:6630773,13598558:25952256,388497,9436 +h1,5004:6630773,13598558:0,0,0 +g1,5004:7579210,13598558 +g1,5004:8211502,13598558 +g1,5004:8843794,13598558 +h1,5004:9159940,13598558:0,0,0 +k1,5004:32583028,13598558:23423088 +g1,5004:32583028,13598558 +) +] +) +g1,5005:32583029,13607994 +g1,5005:6630773,13607994 +g1,5005:6630773,13607994 +g1,5005:32583029,13607994 +g1,5005:32583029,13607994 +) +h1,5005:6630773,13804602:0,0,0 +(1,5009:6630773,15170378:25952256,513147,134348 +h1,5008:6630773,15170378:983040,0,0 +k1,5008:8478514,15170378:236866 +k1,5008:9734465,15170378:236866 +k1,5008:11355450,15170378:236865 +k1,5008:14253733,15170378:236866 +k1,5008:15358951,15170378:236866 +k1,5008:17602529,15170378:236866 +k1,5008:18858480,15170378:236866 +k1,5008:20507646,15170378:236865 +k1,5008:22704038,15170378:236866 +k1,5008:23592332,15170378:236866 +k1,5008:24185058,15170378:236866 +k1,5008:27184266,15170378:236865 +k1,5008:29332817,15170378:236866 +k1,5008:30761128,15170378:236866 +k1,5008:32583029,15170378:0 +) +(1,5009:6630773,16011866:25952256,505283,134348 +g1,5008:8114508,16011866 +g1,5008:9332822,16011866 +g1,5008:11491577,16011866 +g1,5008:13103107,16011866 +g1,5008:13833833,16011866 +g1,5008:16769845,16011866 +g1,5008:17620502,16011866 +g1,5008:18838816,16011866 +g1,5008:20194755,16011866 +k1,5009:32583029,16011866:10403188 +g1,5009:32583029,16011866 +) +v1,5011:6630773,17202332:0,393216,0 +(1,5019:6630773,18890155:25952256,2081039,196608 +g1,5019:6630773,18890155 +g1,5019:6630773,18890155 +g1,5019:6434165,18890155 +(1,5019:6434165,18890155:0,2081039,196608 +r1,5019:32779637,18890155:26345472,2277647,196608 +k1,5019:6434165,18890155:-26345472 +) +(1,5019:6434165,18890155:26345472,2081039,196608 +[1,5019:6630773,18890155:25952256,1884431,0 +(1,5013:6630773,17416242:25952256,410518,101187 +(1,5012:6630773,17416242:0,0,0 +g1,5012:6630773,17416242 +g1,5012:6630773,17416242 +g1,5012:6303093,17416242 +(1,5012:6303093,17416242:0,0,0 +) +g1,5012:6630773,17416242 +) +g1,5013:10108376,17416242 +g1,5013:11056814,17416242 +k1,5013:11056814,17416242:0 +h1,5013:17379728,17416242:0,0,0 +k1,5013:32583029,17416242:15203301 +g1,5013:32583029,17416242 +) +(1,5014:6630773,18082420:25952256,410518,101187 +h1,5014:6630773,18082420:0,0,0 +g1,5014:12005250,18082420 +h1,5014:15482852,18082420:0,0,0 +k1,5014:32583028,18082420:17100176 +g1,5014:32583028,18082420 +) +(1,5018:6630773,18814134:25952256,404226,76021 +(1,5016:6630773,18814134:0,0,0 +g1,5016:6630773,18814134 +g1,5016:6630773,18814134 +g1,5016:6303093,18814134 +(1,5016:6303093,18814134:0,0,0 +) +g1,5016:6630773,18814134 +) +g1,5018:7579210,18814134 +g1,5018:8843793,18814134 +h1,5018:10108376,18814134:0,0,0 +k1,5018:32583028,18814134:22474652 +g1,5018:32583028,18814134 +) +] +) +g1,5019:32583029,18890155 +g1,5019:6630773,18890155 +g1,5019:6630773,18890155 +g1,5019:32583029,18890155 +g1,5019:32583029,18890155 +) +h1,5019:6630773,19086763:0,0,0 +(1,5023:6630773,20452539:25952256,513147,134348 +h1,5022:6630773,20452539:983040,0,0 +g1,5022:8630931,20452539 +g1,5022:10859155,20452539 +g1,5022:11926736,20452539 +g1,5022:13782715,20452539 +g1,5022:14817528,20452539 +g1,5022:15778285,20452539 +g1,5022:18545215,20452539 +g1,5022:19763529,20452539 +k1,5023:32583029,20452539:11662790 +g1,5023:32583029,20452539 +) +v1,5025:6630773,21643005:0,393216,0 +(1,5029:6630773,21958102:25952256,708313,196608 +g1,5029:6630773,21958102 +g1,5029:6630773,21958102 +g1,5029:6434165,21958102 +(1,5029:6434165,21958102:0,708313,196608 +r1,5029:32779637,21958102:26345472,904921,196608 +k1,5029:6434165,21958102:-26345472 +) +(1,5029:6434165,21958102:26345472,708313,196608 +[1,5029:6630773,21958102:25952256,511705,0 +(1,5027:6630773,21856915:25952256,410518,101187 +(1,5026:6630773,21856915:0,0,0 +g1,5026:6630773,21856915 +g1,5026:6630773,21856915 +g1,5026:6303093,21856915 +(1,5026:6303093,21856915:0,0,0 +) +g1,5026:6630773,21856915 +) +k1,5027:6630773,21856915:0 +k1,5027:6630773,21856915:0 +h1,5027:12637541,21856915:0,0,0 +k1,5027:32583029,21856915:19945488 +g1,5027:32583029,21856915 +) +] +) +g1,5029:32583029,21958102 +g1,5029:6630773,21958102 +g1,5029:6630773,21958102 +g1,5029:32583029,21958102 +g1,5029:32583029,21958102 +) +h1,5029:6630773,22154710:0,0,0 +(1,5032:6630773,25486566:25952256,32768,229376 +(1,5032:6630773,25486566:0,32768,229376 +(1,5032:6630773,25486566:5505024,32768,229376 +r1,5032:12135797,25486566:5505024,262144,229376 +) +k1,5032:6630773,25486566:-5505024 +) +(1,5032:6630773,25486566:25952256,32768,0 +r1,5032:32583029,25486566:25952256,32768,0 +) +) +(1,5032:6630773,27090894:25952256,606339,161218 +(1,5032:6630773,27090894:2464678,582746,0 +g1,5032:6630773,27090894 +g1,5032:9095451,27090894 +) +g1,5032:12525868,27090894 +g1,5032:13514413,27090894 +k1,5032:32583029,27090894:17375428 +g1,5032:32583029,27090894 +) +(1,5035:6630773,28325598:25952256,513147,134348 +k1,5034:8749861,28325598:286701 +k1,5034:10028123,28325598:286702 +k1,5034:12546325,28325598:286701 +k1,5034:15858824,28325598:286702 +k1,5034:16761563,28325598:286701 +k1,5034:17463020,28325598:286614 +k1,5034:19034227,28325598:286701 +k1,5034:20130299,28325598:286702 +k1,5034:21162144,28325598:286701 +k1,5034:23472598,28325598:286702 +k1,5034:26521642,28325598:286701 +k1,5034:28565364,28325598:286702 +k1,5034:30119531,28325598:286701 +k1,5034:32583029,28325598:0 +) +(1,5035:6630773,29167086:25952256,513147,134348 +k1,5034:9683204,29167086:262563 +(1,5034:9683204,29167086:0,452978,115847 +r1,5034:12151741,29167086:2468537,568825,115847 +k1,5034:9683204,29167086:-2468537 +) +(1,5034:9683204,29167086:2468537,452978,115847 +k1,5034:9683204,29167086:3277 +h1,5034:12148464,29167086:0,411205,112570 +) +k1,5034:12414304,29167086:262563 +k1,5034:13208364,29167086:262563 +k1,5034:15448148,29167086:262563 +k1,5034:16658362,29167086:262563 +k1,5034:18637313,29167086:262563 +k1,5034:20289239,29167086:262563 +k1,5034:21990317,29167086:262563 +k1,5034:22935765,29167086:262563 +k1,5034:25661826,29167086:262563 +k1,5034:29055699,29167086:262563 +k1,5034:29934300,29167086:262563 +k1,5034:31215948,29167086:262563 +k1,5034:32583029,29167086:0 +) +(1,5035:6630773,30008574:25952256,513147,134348 +k1,5034:7503630,30008574:213565 +k1,5034:9288094,30008574:213566 +k1,5034:10891022,30008574:213565 +k1,5034:13484856,30008574:213566 +k1,5034:14566773,30008574:213565 +k1,5034:16310604,30008574:213565 +k1,5034:17175598,30008574:213566 +k1,5034:19757634,30008574:213565 +k1,5034:21610254,30008574:213565 +k1,5034:23179105,30008574:213566 +k1,5034:24154198,30008574:213565 +k1,5034:25896719,30008574:213566 +k1,5034:26738119,30008574:213565 +k1,5034:27970769,30008574:213565 +k1,5034:29551416,30008574:213566 +k1,5034:30424273,30008574:213565 +k1,5034:32583029,30008574:0 +) +(1,5035:6630773,30850062:25952256,505283,126483 +k1,5034:10897554,30850062:165538 +k1,5034:11931445,30850062:165539 +k1,5034:13201266,30850062:165539 +k1,5034:15390556,30850062:165538 +k1,5034:17064734,30850062:165539 +k1,5034:19298588,30850062:165538 +k1,5034:20858078,30850062:165539 +(1,5034:20858078,30850062:0,452978,115847 +r1,5034:24381750,30850062:3523672,568825,115847 +k1,5034:20858078,30850062:-3523672 +) +(1,5034:20858078,30850062:3523672,452978,115847 +k1,5034:20858078,30850062:3277 +h1,5034:24378473,30850062:0,411205,112570 +) +k1,5034:24720958,30850062:165538 +(1,5034:24720958,30850062:0,452978,115847 +r1,5034:28244630,30850062:3523672,568825,115847 +k1,5034:24720958,30850062:-3523672 +) +(1,5034:24720958,30850062:3523672,452978,115847 +k1,5034:24720958,30850062:3277 +h1,5034:28241353,30850062:0,411205,112570 +) +k1,5034:28583839,30850062:165539 +k1,5034:29940822,30850062:165538 +(1,5034:29940822,30850062:0,452978,115847 +r1,5034:32409359,30850062:2468537,568825,115847 +k1,5034:29940822,30850062:-2468537 +) +(1,5034:29940822,30850062:2468537,452978,115847 +k1,5034:29940822,30850062:3277 +h1,5034:32406082,30850062:0,411205,112570 +) +k1,5034:32583029,30850062:0 +) +(1,5035:6630773,31691550:25952256,513147,126483 +k1,5034:7347634,31691550:239104 +k1,5034:7942598,31691550:239104 +k1,5034:9571064,31691550:239103 +k1,5034:11686464,31691550:239104 +k1,5034:14627617,31691550:239104 +k1,5034:16618498,31691550:239104 +k1,5034:18391799,31691550:239103 +k1,5034:19290195,31691550:239104 +k1,5034:23774721,31691550:239104 +(1,5034:23774721,31691550:0,452978,115847 +r1,5034:25891546,31691550:2116825,568825,115847 +k1,5034:23774721,31691550:-2116825 +) +(1,5034:23774721,31691550:2116825,452978,115847 +k1,5034:23774721,31691550:3277 +h1,5034:25888269,31691550:0,411205,112570 +) +k1,5034:26130650,31691550:239104 +k1,5034:27561198,31691550:239103 +(1,5034:27561198,31691550:0,452978,115847 +r1,5034:29678023,31691550:2116825,568825,115847 +k1,5034:27561198,31691550:-2116825 +) +(1,5034:27561198,31691550:2116825,452978,115847 +k1,5034:27561198,31691550:3277 +h1,5034:29674746,31691550:0,411205,112570 +) +k1,5034:29917127,31691550:239104 +k1,5034:31837885,31691550:239104 +k1,5034:32583029,31691550:0 +) +(1,5035:6630773,32533038:25952256,513147,126483 +k1,5034:7483777,32533038:201576 +k1,5034:9486281,32533038:201575 +k1,5034:11990792,32533038:201576 +k1,5034:13211453,32533038:201576 +k1,5034:15898809,32533038:201575 +k1,5034:16759677,32533038:201576 +k1,5034:18495451,32533038:201576 +k1,5034:21220817,32533038:201575 +k1,5034:24542562,32533038:201576 +(1,5034:24542562,32533038:0,452978,115847 +r1,5034:26659387,32533038:2116825,568825,115847 +k1,5034:24542562,32533038:-2116825 +) +(1,5034:24542562,32533038:2116825,452978,115847 +k1,5034:24542562,32533038:3277 +h1,5034:26656110,32533038:0,411205,112570 +) +k1,5034:26860963,32533038:201576 +k1,5034:28253983,32533038:201575 +(1,5034:28253983,32533038:0,452978,115847 +r1,5034:30370808,32533038:2116825,568825,115847 +k1,5034:28253983,32533038:-2116825 +) +(1,5034:28253983,32533038:2116825,452978,115847 +k1,5034:28253983,32533038:3277 +h1,5034:30367531,32533038:0,411205,112570 +) +k1,5034:30572384,32533038:201576 +k1,5034:32583029,32533038:0 +) +(1,5035:6630773,33374526:25952256,513147,126483 +k1,5034:7905599,33374526:255741 +k1,5034:10647122,33374526:255742 +k1,5034:11562155,33374526:255741 +k1,5034:13352095,33374526:255742 +k1,5034:14799281,33374526:255741 +k1,5034:17768214,33374526:255742 +k1,5034:18639993,33374526:255741 +k1,5034:19914820,33374526:255742 +k1,5034:21559924,33374526:255741 +k1,5034:23691962,33374526:255742 +k1,5034:25440613,33374526:255741 +k1,5034:28942353,33374526:255742 +k1,5034:29849522,33374526:255741 +k1,5034:32583029,33374526:0 +) +(1,5035:6630773,34216014:25952256,513147,122846 +k1,5034:7905128,34216014:202186 +k1,5034:9173584,34216014:202185 +k1,5034:10027198,34216014:202186 +k1,5034:11553210,34216014:202185 +k1,5034:12438281,34216014:202186 +k1,5034:14948645,34216014:202186 +k1,5034:17069724,34216014:202185 +k1,5034:18140262,34216014:202186 +k1,5034:19434933,34216014:202186 +(1,5034:19434933,34216014:0,452978,122846 +r1,5034:22255182,34216014:2820249,575824,122846 +k1,5034:19434933,34216014:-2820249 +) +(1,5034:19434933,34216014:2820249,452978,122846 +k1,5034:19434933,34216014:3277 +h1,5034:22251905,34216014:0,411205,112570 +) +k1,5034:22838131,34216014:202185 +k1,5034:23858206,34216014:202186 +k1,5034:27478094,34216014:202185 +k1,5034:29887533,34216014:202186 +k1,5035:32583029,34216014:0 +) +(1,5035:6630773,35057502:25952256,513147,134348 +(1,5034:6630773,35057502:0,452978,115847 +r1,5034:8395886,35057502:1765113,568825,115847 +k1,5034:6630773,35057502:-1765113 +) +(1,5034:6630773,35057502:1765113,452978,115847 +k1,5034:6630773,35057502:3277 +h1,5034:8392609,35057502:0,411205,112570 +) +g1,5034:8595115,35057502 +g1,5034:11715939,35057502 +g1,5034:14540540,35057502 +g1,5034:15758854,35057502 +g1,5034:18889508,35057502 +g1,5034:19755893,35057502 +g1,5034:20369965,35057502 +k1,5035:32583029,35057502:9749566 +g1,5035:32583029,35057502 +) +v1,5037:6630773,36247968:0,393216,0 +(1,5094:6630773,44668594:25952256,8813842,196608 +g1,5094:6630773,44668594 +g1,5094:6630773,44668594 +g1,5094:6434165,44668594 +(1,5094:6434165,44668594:0,8813842,196608 +r1,5094:32779637,44668594:26345472,9010450,196608 +k1,5094:6434165,44668594:-26345472 +) +(1,5094:6434165,44668594:26345472,8813842,196608 +[1,5094:6630773,44668594:25952256,8617234,0 +(1,5039:6630773,36455586:25952256,404226,76021 +(1,5038:6630773,36455586:0,0,0 +g1,5038:6630773,36455586 +g1,5038:6630773,36455586 +g1,5038:6303093,36455586 +(1,5038:6303093,36455586:0,0,0 +) +g1,5038:6630773,36455586 +) +k1,5039:6630773,36455586:0 +h1,5039:10108375,36455586:0,0,0 +k1,5039:32583029,36455586:22474654 +g1,5039:32583029,36455586 +) +(1,5043:6630773,37187300:25952256,410518,76021 +(1,5041:6630773,37187300:0,0,0 +g1,5041:6630773,37187300 +g1,5041:6630773,37187300 +g1,5041:6303093,37187300 +(1,5041:6303093,37187300:0,0,0 +) +g1,5041:6630773,37187300 +) +g1,5043:7579210,37187300 +g1,5043:8843793,37187300 +h1,5043:12637541,37187300:0,0,0 +k1,5043:32583029,37187300:19945488 +g1,5043:32583029,37187300 +) +(1,5045:6630773,38508838:25952256,404226,76021 +(1,5044:6630773,38508838:0,0,0 +g1,5044:6630773,38508838 +g1,5044:6630773,38508838 +g1,5044:6303093,38508838 +(1,5044:6303093,38508838:0,0,0 +) +g1,5044:6630773,38508838 +) +k1,5045:6630773,38508838:0 +h1,5045:9792230,38508838:0,0,0 +k1,5045:32583030,38508838:22790800 +g1,5045:32583030,38508838 +) +(1,5049:6630773,39240552:25952256,404226,76021 +(1,5047:6630773,39240552:0,0,0 +g1,5047:6630773,39240552 +g1,5047:6630773,39240552 +g1,5047:6303093,39240552 +(1,5047:6303093,39240552:0,0,0 +) +g1,5047:6630773,39240552 +) +g1,5049:7579210,39240552 +g1,5049:8843793,39240552 +h1,5049:9476084,39240552:0,0,0 +k1,5049:32583028,39240552:23106944 +g1,5049:32583028,39240552 +) +(1,5051:6630773,40562090:25952256,404226,76021 +(1,5050:6630773,40562090:0,0,0 +g1,5050:6630773,40562090 +g1,5050:6630773,40562090 +g1,5050:6303093,40562090 +(1,5050:6303093,40562090:0,0,0 +) +g1,5050:6630773,40562090 +) +k1,5051:6630773,40562090:0 +h1,5051:9792230,40562090:0,0,0 +k1,5051:32583030,40562090:22790800 +g1,5051:32583030,40562090 +) +(1,5055:6630773,41293804:25952256,404226,76021 +(1,5053:6630773,41293804:0,0,0 +g1,5053:6630773,41293804 +g1,5053:6630773,41293804 +g1,5053:6303093,41293804 +(1,5053:6303093,41293804:0,0,0 +) +g1,5053:6630773,41293804 +) +g1,5055:7579210,41293804 +g1,5055:8843793,41293804 +h1,5055:9159939,41293804:0,0,0 +k1,5055:32583029,41293804:23423090 +g1,5055:32583029,41293804 +) +(1,5057:6630773,42615342:25952256,404226,76021 +(1,5056:6630773,42615342:0,0,0 +g1,5056:6630773,42615342 +g1,5056:6630773,42615342 +g1,5056:6303093,42615342 +(1,5056:6303093,42615342:0,0,0 +) +g1,5056:6630773,42615342 +) +k1,5057:6630773,42615342:0 +h1,5057:10108375,42615342:0,0,0 +k1,5057:32583029,42615342:22474654 +g1,5057:32583029,42615342 ) -(1,5055:6630773,43347056:25952256,404226,101187 -(1,5053:6630773,43347056:0,0,0 -g1,5053:6630773,43347056 -g1,5053:6630773,43347056 -g1,5053:6303093,43347056 -(1,5053:6303093,43347056:0,0,0 +(1,5061:6630773,43347056:25952256,404226,101187 +(1,5059:6630773,43347056:0,0,0 +g1,5059:6630773,43347056 +g1,5059:6630773,43347056 +g1,5059:6303093,43347056 +(1,5059:6303093,43347056:0,0,0 ) -g1,5053:6630773,43347056 +g1,5059:6630773,43347056 ) -g1,5055:7579210,43347056 -g1,5055:8843793,43347056 -g1,5055:11372959,43347056 -h1,5055:13269833,43347056:0,0,0 -k1,5055:32583029,43347056:19313196 -g1,5055:32583029,43347056 +g1,5061:7579210,43347056 +g1,5061:8843793,43347056 +g1,5061:11372959,43347056 +h1,5061:13269833,43347056:0,0,0 +k1,5061:32583029,43347056:19313196 +g1,5061:32583029,43347056 ) -(1,5057:6630773,44668594:25952256,404226,76021 -(1,5056:6630773,44668594:0,0,0 -g1,5056:6630773,44668594 -g1,5056:6630773,44668594 -g1,5056:6303093,44668594 -(1,5056:6303093,44668594:0,0,0 +(1,5063:6630773,44668594:25952256,404226,76021 +(1,5062:6630773,44668594:0,0,0 +g1,5062:6630773,44668594 +g1,5062:6630773,44668594 +g1,5062:6303093,44668594 +(1,5062:6303093,44668594:0,0,0 ) -g1,5056:6630773,44668594 +g1,5062:6630773,44668594 ) -k1,5057:6630773,44668594:0 -h1,5057:9792230,44668594:0,0,0 -k1,5057:32583030,44668594:22790800 -g1,5057:32583030,44668594 +k1,5063:6630773,44668594:0 +h1,5063:9792230,44668594:0,0,0 +k1,5063:32583030,44668594:22790800 +g1,5063:32583030,44668594 ) ] ) -g1,5088:32583029,44668594 -g1,5088:6630773,44668594 -g1,5088:6630773,44668594 -g1,5088:32583029,44668594 -g1,5088:32583029,44668594 +g1,5094:32583029,44668594 +g1,5094:6630773,44668594 +g1,5094:6630773,44668594 +g1,5094:32583029,44668594 +g1,5094:32583029,44668594 ) ] -(1,5088:32583029,45706769:0,0,0 -g1,5088:32583029,45706769 +(1,5094:32583029,45706769:0,0,0 +g1,5094:32583029,45706769 ) ) ] -(1,5088:6630773,47279633:25952256,0,0 -h1,5088:6630773,47279633:25952256,0,0 +(1,5094:6630773,47279633:25952256,0,0 +h1,5094:6630773,47279633:25952256,0,0 ) ] -h1,5088:4262630,4025873:0,0,0 +h1,5094:4262630,4025873:0,0,0 ] !22081 }92 -Input:643:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:644:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:645:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:646:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:647:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:648:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:649:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:650:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:651:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:652:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:653:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:654:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:655:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 +Input:639:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:640:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:641:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:642:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:643:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:644:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:645:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:646:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:647:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:648:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:649:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:650:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:651:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1194 {93 -[1,5120:4262630,47279633:28320399,43253760,0 -(1,5120:4262630,4025873:0,0,0 -[1,5120:-473657,4025873:25952256,0,0 -(1,5120:-473657,-710414:25952256,0,0 -h1,5120:-473657,-710414:0,0,0 -(1,5120:-473657,-710414:0,0,0 -(1,5120:-473657,-710414:0,0,0 -g1,5120:-473657,-710414 -(1,5120:-473657,-710414:65781,0,65781 -g1,5120:-407876,-710414 -[1,5120:-407876,-644633:0,0,0 +[1,5126:4262630,47279633:28320399,43253760,0 +(1,5126:4262630,4025873:0,0,0 +[1,5126:-473657,4025873:25952256,0,0 +(1,5126:-473657,-710414:25952256,0,0 +h1,5126:-473657,-710414:0,0,0 +(1,5126:-473657,-710414:0,0,0 +(1,5126:-473657,-710414:0,0,0 +g1,5126:-473657,-710414 +(1,5126:-473657,-710414:65781,0,65781 +g1,5126:-407876,-710414 +[1,5126:-407876,-644633:0,0,0 ] ) -k1,5120:-473657,-710414:-65781 +k1,5126:-473657,-710414:-65781 ) ) -k1,5120:25478599,-710414:25952256 -g1,5120:25478599,-710414 +k1,5126:25478599,-710414:25952256 +g1,5126:25478599,-710414 ) ] ) -[1,5120:6630773,47279633:25952256,43253760,0 -[1,5120:6630773,4812305:25952256,786432,0 -(1,5120:6630773,4812305:25952256,505283,134348 -(1,5120:6630773,4812305:25952256,505283,134348 -g1,5120:3078558,4812305 -[1,5120:3078558,4812305:0,0,0 -(1,5120:3078558,2439708:0,1703936,0 -k1,5120:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,5120:2537886,2439708:1179648,16384,0 +[1,5126:6630773,47279633:25952256,43253760,0 +[1,5126:6630773,4812305:25952256,786432,0 +(1,5126:6630773,4812305:25952256,505283,134348 +(1,5126:6630773,4812305:25952256,505283,134348 +g1,5126:3078558,4812305 +[1,5126:3078558,4812305:0,0,0 +(1,5126:3078558,2439708:0,1703936,0 +k1,5126:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,5126:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,5120:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,5126:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,5120:3078558,4812305:0,0,0 -(1,5120:3078558,2439708:0,1703936,0 -g1,5120:29030814,2439708 -g1,5120:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,5120:36151628,1915420:16384,1179648,0 +[1,5126:3078558,4812305:0,0,0 +(1,5126:3078558,2439708:0,1703936,0 +g1,5126:29030814,2439708 +g1,5126:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,5126:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,5120:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,5126:37855564,2439708:1179648,16384,0 ) ) -k1,5120:3078556,2439708:-34777008 +k1,5126:3078556,2439708:-34777008 ) ] -[1,5120:3078558,4812305:0,0,0 -(1,5120:3078558,49800853:0,16384,2228224 -k1,5120:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,5120:2537886,49800853:1179648,16384,0 +[1,5126:3078558,4812305:0,0,0 +(1,5126:3078558,49800853:0,16384,2228224 +k1,5126:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,5126:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,5120:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,5126:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,5120:3078558,4812305:0,0,0 -(1,5120:3078558,49800853:0,16384,2228224 -g1,5120:29030814,49800853 -g1,5120:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,5120:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) +[1,5126:3078558,4812305:0,0,0 +(1,5126:3078558,49800853:0,16384,2228224 +g1,5126:29030814,49800853 +g1,5126:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,5126:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,5120:37855564,49800853:1179648,16384,0 -) -) -k1,5120:3078556,49800853:-34777008 -) -] -g1,5120:6630773,4812305 -k1,5120:19562994,4812305:12135303 -g1,5120:20949735,4812305 -g1,5120:21598541,4812305 -g1,5120:24912696,4812305 -g1,5120:27600327,4812305 -g1,5120:29010006,4812305 -) -) -] -[1,5120:6630773,45706769:25952256,40108032,0 -(1,5120:6630773,45706769:25952256,40108032,0 -(1,5120:6630773,45706769:0,0,0 -g1,5120:6630773,45706769 -) -[1,5120:6630773,45706769:25952256,40108032,0 -v1,5088:6630773,6254097:0,393216,0 -(1,5088:6630773,19926167:25952256,14065286,196608 -g1,5088:6630773,19926167 -g1,5088:6630773,19926167 -g1,5088:6434165,19926167 -(1,5088:6434165,19926167:0,14065286,196608 -r1,5088:32779637,19926167:26345472,14261894,196608 -k1,5088:6434165,19926167:-26345472 -) -(1,5088:6434165,19926167:26345472,14065286,196608 -[1,5088:6630773,19926167:25952256,13868678,0 -(1,5067:6630773,6461715:25952256,404226,101187 -(1,5059:6630773,6461715:0,0,0 -g1,5059:6630773,6461715 -g1,5059:6630773,6461715 -g1,5059:6303093,6461715 -(1,5059:6303093,6461715:0,0,0 -) -g1,5059:6630773,6461715 -) -g1,5067:7579210,6461715 -g1,5067:7895356,6461715 -g1,5067:8211502,6461715 -g1,5067:10108376,6461715 -h1,5067:11372959,6461715:0,0,0 -k1,5067:32583029,6461715:21210070 -g1,5067:32583029,6461715 -) -(1,5067:6630773,7127893:25952256,388497,0 -h1,5067:6630773,7127893:0,0,0 -g1,5067:7579210,7127893 -g1,5067:8211502,7127893 -g1,5067:8527648,7127893 -g1,5067:8843794,7127893 -g1,5067:9159940,7127893 -g1,5067:9476086,7127893 -g1,5067:10108378,7127893 -g1,5067:10424524,7127893 -g1,5067:10740670,7127893 -g1,5067:11056816,7127893 -h1,5067:11372962,7127893:0,0,0 -k1,5067:32583030,7127893:21210068 -g1,5067:32583030,7127893 -) -(1,5067:6630773,7794071:25952256,388497,9436 -h1,5067:6630773,7794071:0,0,0 -g1,5067:7579210,7794071 -g1,5067:8211502,7794071 -g1,5067:8527648,7794071 -g1,5067:8843794,7794071 -g1,5067:9159940,7794071 -g1,5067:9476086,7794071 -g1,5067:10108378,7794071 -g1,5067:10424524,7794071 -g1,5067:10740670,7794071 -h1,5067:11372961,7794071:0,0,0 -k1,5067:32583029,7794071:21210068 -g1,5067:32583029,7794071 -) -(1,5067:6630773,8460249:25952256,388497,9436 -h1,5067:6630773,8460249:0,0,0 -g1,5067:7579210,8460249 -g1,5067:8211502,8460249 -g1,5067:8527648,8460249 -g1,5067:8843794,8460249 -g1,5067:9159940,8460249 -g1,5067:9476086,8460249 -g1,5067:10108378,8460249 -g1,5067:10424524,8460249 -g1,5067:10740670,8460249 -g1,5067:11056816,8460249 -h1,5067:11372962,8460249:0,0,0 -k1,5067:32583030,8460249:21210068 -g1,5067:32583030,8460249 -) -(1,5067:6630773,9126427:25952256,388497,0 -h1,5067:6630773,9126427:0,0,0 -g1,5067:7579210,9126427 -g1,5067:8211502,9126427 -g1,5067:8527648,9126427 -g1,5067:8843794,9126427 -g1,5067:9159940,9126427 -g1,5067:9476086,9126427 -g1,5067:10108378,9126427 -g1,5067:10424524,9126427 -g1,5067:10740670,9126427 -h1,5067:11372961,9126427:0,0,0 -k1,5067:32583029,9126427:21210068 -g1,5067:32583029,9126427 -) -(1,5067:6630773,9792605:25952256,388497,9436 -h1,5067:6630773,9792605:0,0,0 -g1,5067:7579210,9792605 -g1,5067:8211502,9792605 -g1,5067:8527648,9792605 -g1,5067:8843794,9792605 -g1,5067:9159940,9792605 -g1,5067:9476086,9792605 -g1,5067:10108378,9792605 -g1,5067:10424524,9792605 -g1,5067:10740670,9792605 -h1,5067:11372961,9792605:0,0,0 -k1,5067:32583029,9792605:21210068 -g1,5067:32583029,9792605 -) -(1,5067:6630773,10458783:25952256,388497,9436 -h1,5067:6630773,10458783:0,0,0 -g1,5067:7579210,10458783 -g1,5067:8211502,10458783 -g1,5067:8527648,10458783 -g1,5067:8843794,10458783 -g1,5067:9159940,10458783 -g1,5067:9476086,10458783 -g1,5067:10108378,10458783 -g1,5067:10424524,10458783 -g1,5067:10740670,10458783 -h1,5067:11372961,10458783:0,0,0 -k1,5067:32583029,10458783:21210068 -g1,5067:32583029,10458783 -) -(1,5069:6630773,11780321:25952256,404226,76021 -(1,5068:6630773,11780321:0,0,0 -g1,5068:6630773,11780321 -g1,5068:6630773,11780321 -g1,5068:6303093,11780321 -(1,5068:6303093,11780321:0,0,0 -) -g1,5068:6630773,11780321 -) -k1,5069:6630773,11780321:0 -h1,5069:9792230,11780321:0,0,0 -k1,5069:32583030,11780321:22790800 -g1,5069:32583030,11780321 -) -(1,5079:6630773,12512035:25952256,404226,101187 -(1,5071:6630773,12512035:0,0,0 -g1,5071:6630773,12512035 -g1,5071:6630773,12512035 -g1,5071:6303093,12512035 -(1,5071:6303093,12512035:0,0,0 -) -g1,5071:6630773,12512035 -) -g1,5079:7579210,12512035 -g1,5079:7895356,12512035 -g1,5079:8211502,12512035 -g1,5079:8527648,12512035 -g1,5079:10424522,12512035 -h1,5079:11689105,12512035:0,0,0 -k1,5079:32583029,12512035:20893924 -g1,5079:32583029,12512035 -) -(1,5079:6630773,13178213:25952256,388497,9436 -h1,5079:6630773,13178213:0,0,0 -g1,5079:7579210,13178213 -g1,5079:8527647,13178213 -g1,5079:8843793,13178213 -g1,5079:9159939,13178213 -g1,5079:9476085,13178213 -g1,5079:10424522,13178213 -g1,5079:10740668,13178213 -g1,5079:11056814,13178213 -h1,5079:11689105,13178213:0,0,0 -k1,5079:32583029,13178213:20893924 -g1,5079:32583029,13178213 -) -(1,5079:6630773,13844391:25952256,388497,9436 -h1,5079:6630773,13844391:0,0,0 -g1,5079:7579210,13844391 -g1,5079:8527647,13844391 -g1,5079:8843793,13844391 -g1,5079:9159939,13844391 -g1,5079:9476085,13844391 -g1,5079:10424522,13844391 -g1,5079:10740668,13844391 -g1,5079:11056814,13844391 -h1,5079:11689105,13844391:0,0,0 -k1,5079:32583029,13844391:20893924 -g1,5079:32583029,13844391 -) -(1,5079:6630773,14510569:25952256,388497,9436 -h1,5079:6630773,14510569:0,0,0 -g1,5079:7579210,14510569 -g1,5079:8527647,14510569 -g1,5079:8843793,14510569 -g1,5079:9159939,14510569 -g1,5079:9476085,14510569 -g1,5079:10424522,14510569 -g1,5079:10740668,14510569 -g1,5079:11056814,14510569 -h1,5079:11689105,14510569:0,0,0 -k1,5079:32583029,14510569:20893924 -g1,5079:32583029,14510569 -) -(1,5079:6630773,15176747:25952256,388497,9436 -h1,5079:6630773,15176747:0,0,0 -g1,5079:7579210,15176747 -g1,5079:8527647,15176747 -g1,5079:8843793,15176747 -g1,5079:9159939,15176747 -g1,5079:9476085,15176747 -g1,5079:10424522,15176747 -g1,5079:10740668,15176747 -g1,5079:11056814,15176747 -h1,5079:11689105,15176747:0,0,0 -k1,5079:32583029,15176747:20893924 -g1,5079:32583029,15176747 -) -(1,5079:6630773,15842925:25952256,388497,9436 -h1,5079:6630773,15842925:0,0,0 -g1,5079:7579210,15842925 -g1,5079:8527647,15842925 -g1,5079:8843793,15842925 -g1,5079:9159939,15842925 -g1,5079:9476085,15842925 -g1,5079:10424522,15842925 -g1,5079:10740668,15842925 -h1,5079:11689105,15842925:0,0,0 -k1,5079:32583029,15842925:20893924 -g1,5079:32583029,15842925 -) -(1,5079:6630773,16509103:25952256,388497,9436 -h1,5079:6630773,16509103:0,0,0 -g1,5079:7579210,16509103 -g1,5079:8527647,16509103 -g1,5079:8843793,16509103 -g1,5079:9159939,16509103 -g1,5079:9476085,16509103 -g1,5079:10424522,16509103 -g1,5079:10740668,16509103 -g1,5079:11056814,16509103 -h1,5079:11689105,16509103:0,0,0 -k1,5079:32583029,16509103:20893924 -g1,5079:32583029,16509103 -) -(1,5081:6630773,17830641:25952256,404226,76021 -(1,5080:6630773,17830641:0,0,0 -g1,5080:6630773,17830641 -g1,5080:6630773,17830641 -g1,5080:6303093,17830641 -(1,5080:6303093,17830641:0,0,0 -) -g1,5080:6630773,17830641 -) -k1,5081:6630773,17830641:0 -h1,5081:9476084,17830641:0,0,0 -k1,5081:32583028,17830641:23106944 -g1,5081:32583028,17830641 -) -(1,5087:6630773,18562355:25952256,410518,9436 -(1,5083:6630773,18562355:0,0,0 -g1,5083:6630773,18562355 -g1,5083:6630773,18562355 -g1,5083:6303093,18562355 -(1,5083:6303093,18562355:0,0,0 -) -g1,5083:6630773,18562355 -) -g1,5087:7579210,18562355 -g1,5087:12005251,18562355 -g1,5087:12953688,18562355 -g1,5087:14534417,18562355 -g1,5087:15482854,18562355 -g1,5087:15799000,18562355 -g1,5087:16431292,18562355 -h1,5087:19592749,18562355:0,0,0 -k1,5087:32583029,18562355:12990280 -g1,5087:32583029,18562355 -) -(1,5087:6630773,19228533:25952256,410518,101187 -h1,5087:6630773,19228533:0,0,0 -g1,5087:7579210,19228533 -g1,5087:7895356,19228533 -g1,5087:8527648,19228533 -g1,5087:10740668,19228533 -g1,5087:12005251,19228533 -g1,5087:12321397,19228533 -g1,5087:12953689,19228533 -g1,5087:13585981,19228533 -g1,5087:14218273,19228533 -g1,5087:14850565,19228533 -g1,5087:15482857,19228533 -g1,5087:16115149,19228533 -g1,5087:17063586,19228533 -g1,5087:18012023,19228533 -g1,5087:18960460,19228533 -g1,5087:19908897,19228533 -h1,5087:20857334,19228533:0,0,0 -k1,5087:32583029,19228533:11725695 -g1,5087:32583029,19228533 -) -(1,5087:6630773,19894711:25952256,410518,31456 -h1,5087:6630773,19894711:0,0,0 -g1,5087:7579210,19894711 -g1,5087:7895356,19894711 -g1,5087:8527648,19894711 -g1,5087:10108377,19894711 -g1,5087:10740669,19894711 -g1,5087:12005252,19894711 -g1,5087:12321398,19894711 -g1,5087:12953690,19894711 -g1,5087:13902127,19894711 -g1,5087:14534419,19894711 -g1,5087:15482856,19894711 -g1,5087:16431293,19894711 -g1,5087:17379730,19894711 -g1,5087:18328167,19894711 -g1,5087:19276604,19894711 -g1,5087:20225041,19894711 -g1,5087:21173478,19894711 -h1,5087:22121915,19894711:0,0,0 -k1,5087:32583029,19894711:10461114 -g1,5087:32583029,19894711 -) -] -) -g1,5088:32583029,19926167 -g1,5088:6630773,19926167 -g1,5088:6630773,19926167 -g1,5088:32583029,19926167 -g1,5088:32583029,19926167 -) -h1,5088:6630773,20122775:0,0,0 -v1,5092:6630773,21832633:0,393216,0 -(1,5093:6630773,24110800:25952256,2671383,616038 -g1,5093:6630773,24110800 -(1,5093:6630773,24110800:25952256,2671383,616038 -(1,5093:6630773,24726838:25952256,3287421,0 -[1,5093:6630773,24726838:25952256,3287421,0 -(1,5093:6630773,24700624:25952256,3234993,0 -r1,5093:6656987,24700624:26214,3234993,0 -[1,5093:6656987,24700624:25899828,3234993,0 -(1,5093:6656987,24110800:25899828,2055345,0 -[1,5093:7246811,24110800:24720180,2055345,0 -(1,5093:7246811,23142829:24720180,1087374,134348 -k1,5092:8650286,23142829:193772 -k1,5092:10390709,23142829:193773 -k1,5092:11420065,23142829:193772 -k1,5092:12632923,23142829:193773 -k1,5092:14214748,23142829:193772 -k1,5092:16236975,23142829:193773 -k1,5092:17378398,23142829:193772 -(1,5092:17378398,23142829:0,452978,115847 -r1,5093:19495223,23142829:2116825,568825,115847 -k1,5092:17378398,23142829:-2116825 -) -(1,5092:17378398,23142829:2116825,452978,115847 -k1,5092:17378398,23142829:3277 -h1,5092:19491946,23142829:0,411205,112570 -) -k1,5092:19688996,23142829:193773 -k1,5092:21074213,23142829:193772 -(1,5092:21074213,23142829:0,452978,115847 -r1,5093:23191038,23142829:2116825,568825,115847 -k1,5092:21074213,23142829:-2116825 -) -(1,5092:21074213,23142829:2116825,452978,115847 -k1,5092:21074213,23142829:3277 -h1,5092:23187761,23142829:0,411205,112570 -) -k1,5092:23558481,23142829:193773 -k1,5092:24943698,23142829:193772 -k1,5092:26363650,23142829:193773 -k1,5092:27576507,23142829:193772 -k1,5092:29266467,23142829:193773 -k1,5092:31315563,23142829:193772 -k1,5092:31966991,23142829:0 -) -(1,5093:7246811,23984317:24720180,513147,126483 -g1,5092:9028079,23984317 -g1,5092:10602909,23984317 -g1,5092:11821223,23984317 -g1,5092:13326585,23984317 -g1,5092:14698253,23984317 -g1,5092:16569961,23984317 -g1,5092:17452075,23984317 -g1,5092:19026905,23984317 -g1,5092:20245219,23984317 -g1,5092:21592639,23984317 -g1,5092:23446652,23984317 -g1,5092:25144689,23984317 -g1,5092:26011074,23984317 -(1,5092:26011074,23984317:0,414482,115847 -r1,5093:27424475,23984317:1413401,530329,115847 -k1,5092:26011074,23984317:-1413401 -) -(1,5092:26011074,23984317:1413401,414482,115847 -k1,5092:26011074,23984317:3277 -h1,5092:27421198,23984317:0,411205,112570 -) -g1,5092:27797374,23984317 -k1,5093:31966991,23984317:199446 -g1,5093:31966991,23984317 -) -] -) -] -r1,5093:32583029,24700624:26214,3234993,0 -) -] -) -) -g1,5093:32583029,24110800 -) -h1,5093:6630773,24726838:0,0,0 -(1,5098:6630773,26002511:25952256,513147,7863 -h1,5095:6630773,26002511:983040,0,0 -k1,5095:9004767,26002511:194267 -k1,5095:11961378,26002511:194268 -k1,5095:14868836,26002511:194267 -k1,5095:15722395,26002511:194267 -k1,5095:16272523,26002511:194268 -k1,5095:17856153,26002511:194267 -k1,5095:19926716,26002511:194267 -k1,5095:21225266,26002511:194268 -k1,5095:22167299,26002511:194267 -k1,5095:24585859,26002511:194268 -k1,5095:25463011,26002511:194267 -k1,5095:27965456,26002511:194267 -k1,5095:28819016,26002511:194268 -k1,5095:31355540,26002511:194267 -k1,5098:32583029,26002511:0 -) -(1,5098:6630773,26843999:25952256,505283,134348 -k1,5095:7908977,26843999:179821 -k1,5095:9538453,26843999:179820 -k1,5095:12512074,26843999:179821 -k1,5095:14935192,26843999:179821 -k1,5095:18263362,26843999:179820 -k1,5095:19761767,26843999:179821 -k1,5095:21173665,26843999:179821 -k1,5095:23632173,26843999:179821 -h1,5095:25001220,26843999:0,0,0 -k1,5095:25181040,26843999:179820 -k1,5095:26170231,26843999:179821 -k1,5095:27848205,26843999:179821 -h1,5095:28645123,26843999:0,0,0 -k1,5095:29205707,26843999:179820 -k1,5096:30214558,26843999:179821 -k1,5096:32583029,26843999:0 -) -(1,5098:6630773,27685487:25952256,513147,126483 -k1,5096:7913501,27685487:263643 -k1,5096:9959724,27685487:263644 -k1,5096:10882659,27685487:263643 -k1,5096:12165388,27685487:263644 -k1,5096:15142222,27685487:263643 -k1,5096:16073022,27685487:263644 -(1,5096:16073022,27685487:0,414482,115847 -r1,5096:17486423,27685487:1413401,530329,115847 -k1,5096:16073022,27685487:-1413401 -) -(1,5096:16073022,27685487:1413401,414482,115847 -k1,5096:16073022,27685487:3277 -h1,5096:17483146,27685487:0,411205,112570 -) -k1,5096:17923736,27685487:263643 -k1,5096:19055732,27685487:263644 -k1,5096:20423657,27685487:263643 -k1,5096:21779786,27685487:263644 -k1,5096:22814132,27685487:263643 -k1,5096:24870186,27685487:263644 -k1,5096:28002995,27685487:263643 -k1,5096:28894474,27685487:263644 -k1,5096:30177202,27685487:263643 -k1,5096:32583029,27685487:0 -) -(1,5098:6630773,28526975:25952256,513147,126483 -k1,5096:8414271,28526975:242747 -k1,5096:9525370,28526975:242747 -k1,5096:11316733,28526975:242747 -k1,5096:12210907,28526975:242746 -k1,5096:14217228,28526975:242747 -k1,5096:17155471,28526975:242747 -(1,5096:17155471,28526975:0,452978,115847 -r1,5096:19624008,28526975:2468537,568825,115847 -k1,5096:17155471,28526975:-2468537 -) -(1,5096:17155471,28526975:2468537,452978,115847 -k1,5096:17155471,28526975:3277 -h1,5096:19620731,28526975:0,411205,112570 -) -k1,5096:19866755,28526975:242747 -k1,5096:20760930,28526975:242747 -k1,5096:22455299,28526975:242747 -k1,5096:25080935,28526975:242747 -k1,5096:25982973,28526975:242746 -k1,5096:27244805,28526975:242747 -k1,5096:28876915,28526975:242747 -k1,5096:30995958,28526975:242747 -(1,5096:30995958,28526975:0,414482,115847 -r1,5096:32409359,28526975:1413401,530329,115847 -k1,5096:30995958,28526975:-1413401 -) -(1,5096:30995958,28526975:1413401,414482,115847 -k1,5096:30995958,28526975:3277 -h1,5096:32406082,28526975:0,411205,112570 -) -k1,5096:32583029,28526975:0 -) -(1,5098:6630773,29368463:25952256,513147,134348 -g1,5096:8932397,29368463 -g1,5096:12157423,29368463 -g1,5096:13348212,29368463 -g1,5096:16637464,29368463 -g1,5096:17452731,29368463 -g1,5096:19930647,29368463 -h1,5096:20901235,29368463:0,0,0 -g1,5096:21100464,29368463 -g1,5096:22109063,29368463 -g1,5096:23806445,29368463 -h1,5096:25001822,29368463:0,0,0 -g1,5096:25581815,29368463 -g1,5097:25581815,29368463 -k1,5098:32583029,29368463:7001214 -g1,5098:32583029,29368463 -) -v1,5100:6630773,30468825:0,393216,0 -(1,5108:6630773,32080625:25952256,2005016,196608 -g1,5108:6630773,32080625 -g1,5108:6630773,32080625 -g1,5108:6434165,32080625 -(1,5108:6434165,32080625:0,2005016,196608 -r1,5108:32779637,32080625:26345472,2201624,196608 -k1,5108:6434165,32080625:-26345472 -) -(1,5108:6434165,32080625:26345472,2005016,196608 -[1,5108:6630773,32080625:25952256,1808408,0 -(1,5102:6630773,30676443:25952256,404226,101187 -(1,5101:6630773,30676443:0,0,0 -g1,5101:6630773,30676443 -g1,5101:6630773,30676443 -g1,5101:6303093,30676443 -(1,5101:6303093,30676443:0,0,0 -) -g1,5101:6630773,30676443 -) -k1,5102:6630773,30676443:0 -g1,5102:9476085,30676443 -g1,5102:10108377,30676443 -g1,5102:12005252,30676443 -g1,5102:13269835,30676443 -g1,5102:13902127,30676443 -h1,5102:15799001,30676443:0,0,0 -k1,5102:32583029,30676443:16784028 -g1,5102:32583029,30676443 -) -(1,5107:6630773,31408157:25952256,404226,101187 -(1,5104:6630773,31408157:0,0,0 -g1,5104:6630773,31408157 -g1,5104:6630773,31408157 -g1,5104:6303093,31408157 -(1,5104:6303093,31408157:0,0,0 -) -g1,5104:6630773,31408157 -) -g1,5107:7579210,31408157 -g1,5107:7895356,31408157 -g1,5107:8211502,31408157 -g1,5107:8527648,31408157 -g1,5107:8843794,31408157 -g1,5107:10740668,31408157 -g1,5107:11056814,31408157 -g1,5107:11372960,31408157 -g1,5107:11689106,31408157 -g1,5107:12005252,31408157 -g1,5107:12321398,31408157 -h1,5107:13585981,31408157:0,0,0 -k1,5107:32583029,31408157:18997048 -g1,5107:32583029,31408157 -) -(1,5107:6630773,32074335:25952256,404226,6290 -h1,5107:6630773,32074335:0,0,0 -g1,5107:7579210,32074335 -g1,5107:10740667,32074335 -h1,5107:13585978,32074335:0,0,0 -k1,5107:32583030,32074335:18997052 -g1,5107:32583030,32074335 -) -] -) -g1,5108:32583029,32080625 -g1,5108:6630773,32080625 -g1,5108:6630773,32080625 -g1,5108:32583029,32080625 -g1,5108:32583029,32080625 -) -h1,5108:6630773,32277233:0,0,0 -(1,5112:6630773,33552906:25952256,513147,134348 -h1,5111:6630773,33552906:983040,0,0 -k1,5111:9076959,33552906:266459 -k1,5111:12529777,33552906:266458 -k1,5111:14651560,33552906:266459 -k1,5111:17258964,33552906:266458 -k1,5111:17881283,33552906:266459 -k1,5111:20125618,33552906:266458 -k1,5111:21051369,33552906:266459 -k1,5111:24292506,33552906:266458 -k1,5111:26928747,33552906:266459 -k1,5111:28589156,33552906:266458 -k1,5111:29874700,33552906:266459 -k1,5111:31923737,33552906:266458 -k1,5111:32583029,33552906:0 -) -(1,5112:6630773,34394394:25952256,513147,134348 -k1,5111:8323802,34394394:241407 -k1,5111:11121767,34394394:241406 -k1,5111:12838389,34394394:241407 -k1,5111:15618660,34394394:241406 -k1,5111:16519359,34394394:241407 -k1,5111:17779850,34394394:241406 -k1,5111:19999134,34394394:241407 -k1,5111:20772037,34394394:241406 -k1,5111:23172200,34394394:241407 -k1,5111:26530498,34394394:241406 -k1,5111:27423333,34394394:241407 -k1,5111:28683824,34394394:241406 -k1,5111:30663246,34394394:241407 -k1,5111:31563944,34394394:241406 -k1,5111:32583029,34394394:0 -) -(1,5112:6630773,35235882:25952256,513147,134348 -k1,5111:11398921,35235882:144583 -k1,5111:14526702,35235882:144582 -k1,5111:15287323,35235882:144583 -k1,5111:16450990,35235882:144582 -k1,5111:17984936,35235882:144583 -k1,5111:20179484,35235882:144582 -k1,5111:21366089,35235882:144583 -k1,5111:22713912,35235882:144582 -k1,5111:24511968,35235882:144583 -k1,5111:27842910,35235882:144582 -k1,5111:28638921,35235882:144583 -k1,5111:29531269,35235882:144582 -k1,5111:31189078,35235882:144583 -k1,5111:32583029,35235882:0 -) -(1,5112:6630773,36077370:25952256,513147,134348 -k1,5111:7936291,36077370:173711 -k1,5111:9811972,36077370:173711 -k1,5111:11375047,36077370:173712 -k1,5111:13425054,36077370:173711 -k1,5111:14281650,36077370:173711 -k1,5111:15622557,36077370:173711 -k1,5111:16664621,36077370:173712 -k1,5111:18368598,36077370:173711 -k1,5111:19917910,36077370:173711 -k1,5111:20743049,36077370:173711 -k1,5111:24126714,36077370:173712 -k1,5111:25319510,36077370:173711 -k1,5111:27231236,36077370:173711 -k1,5111:28064239,36077370:173711 -k1,5111:29257036,36077370:173712 -k1,5111:31563944,36077370:173711 -k1,5111:32583029,36077370:0 -) -(1,5112:6630773,36918858:25952256,513147,134348 -g1,5111:9902330,36918858 -g1,5111:10752987,36918858 -g1,5111:11971301,36918858 -g1,5111:13476663,36918858 -g1,5111:16956624,36918858 -g1,5111:19023629,36918858 -(1,5111:19023629,36918858:0,414482,115847 -r1,5111:19381895,36918858:358266,530329,115847 -k1,5111:19023629,36918858:-358266 -) -(1,5111:19023629,36918858:358266,414482,115847 -k1,5111:19023629,36918858:3277 -h1,5111:19378618,36918858:0,411205,112570 -) -g1,5111:19754794,36918858 -g1,5111:20605451,36918858 -g1,5111:21823765,36918858 -g1,5111:23179704,36918858 -g1,5111:24038225,36918858 -g1,5111:26581677,36918858 -k1,5112:32583029,36918858:3384499 -g1,5112:32583029,36918858 -) -v1,5114:6630773,38194531:0,393216,0 -(1,5115:6630773,42132082:25952256,4330767,616038 -g1,5115:6630773,42132082 -(1,5115:6630773,42132082:25952256,4330767,616038 -(1,5115:6630773,42748120:25952256,4946805,0 -[1,5115:6630773,42748120:25952256,4946805,0 -(1,5115:6630773,42721906:25952256,4894377,0 -r1,5115:6656987,42721906:26214,4894377,0 -[1,5115:6656987,42721906:25899828,4894377,0 -(1,5115:6656987,42132082:25899828,3714729,0 -[1,5115:7246811,42132082:24720180,3714729,0 -(1,5115:7246811,39504727:24720180,1087374,126483 -k1,5114:8815222,39504727:358708 -k1,5114:10645869,39504727:358708 -k1,5114:11939119,39504727:358707 -(1,5114:11939119,39504727:0,452978,115847 -r1,5115:15462791,39504727:3523672,568825,115847 -k1,5114:11939119,39504727:-3523672 -) -(1,5114:11939119,39504727:3523672,452978,115847 -k1,5114:11939119,39504727:3277 -h1,5114:15459514,39504727:0,411205,112570 -) -k1,5114:15821499,39504727:358708 -k1,5114:18882256,39504727:358708 -k1,5114:20630327,39504727:358708 -k1,5114:22556656,39504727:358708 -k1,5114:23760777,39504727:358707 -k1,5114:26318873,39504727:358708 -k1,5114:31350953,39504727:358708 -k1,5114:31966991,39504727:0 -) -(1,5115:7246811,40346215:24720180,505283,134348 -k1,5114:8974791,40346215:367453 -k1,5114:11035693,40346215:367452 -k1,5114:12768261,40346215:367453 -k1,5114:14873728,40346215:367452 -k1,5114:17999591,40346215:367453 -k1,5114:18983081,40346215:367452 -k1,5114:20369619,40346215:367453 -k1,5114:21151746,40346215:367284 -k1,5114:25474296,40346215:367452 -k1,5114:26946031,40346215:367453 -k1,5114:28061249,40346215:367452 -k1,5114:30573040,40346215:367453 -k1,5115:31966991,40346215:0 -) -(1,5115:7246811,41187703:24720180,505283,126483 -(1,5114:7246811,41187703:0,452978,115847 -r1,5115:12880754,41187703:5633943,568825,115847 -k1,5114:7246811,41187703:-5633943 -) -(1,5114:7246811,41187703:5633943,452978,115847 -k1,5114:7246811,41187703:3277 -h1,5114:12877477,41187703:0,411205,112570 -) -k1,5114:13249857,41187703:195433 -k1,5114:14981455,41187703:195434 -k1,5114:15808655,41187703:195433 -k1,5114:17195533,41187703:195433 -k1,5114:19407510,41187703:195434 -k1,5114:20622028,41187703:195433 -k1,5114:22503048,41187703:195434 -k1,5114:24727476,41187703:195433 -k1,5114:25574337,41187703:195433 -k1,5114:27381301,41187703:195434 -k1,5114:29125350,41187703:195433 -k1,5114:31966991,41187703:0 -) -(1,5115:7246811,42029191:24720180,513147,102891 -g1,5114:10573418,42029191 -g1,5114:11230744,42029191 -g1,5114:14305693,42029191 -g1,5114:16013561,42029191 -g1,5114:18619272,42029191 -g1,5114:19837586,42029191 -g1,5114:22522596,42029191 -g1,5114:23381117,42029191 -g1,5114:25288214,42029191 -k1,5115:31966991,42029191:5567286 -g1,5115:31966991,42029191 -) -] -) -] -r1,5115:32583029,42721906:26214,4894377,0 -) -] -) -) -g1,5115:32583029,42132082 -) -h1,5115:6630773,42748120:0,0,0 -(1,5118:6630773,44023793:25952256,513147,134348 -h1,5117:6630773,44023793:983040,0,0 -k1,5117:10641172,44023793:237491 -(1,5117:10641172,44023793:0,452978,115847 -r1,5117:13813132,44023793:3171960,568825,115847 -k1,5117:10641172,44023793:-3171960 -) -(1,5117:10641172,44023793:3171960,452978,115847 -k1,5117:10641172,44023793:3277 -h1,5117:13809855,44023793:0,411205,112570 -) -k1,5117:14050623,44023793:237491 -k1,5117:15392396,44023793:237491 -k1,5117:16377653,44023793:237491 -k1,5117:18128370,44023793:237491 -k1,5117:19017289,44023793:237491 -k1,5117:21278531,44023793:237490 -k1,5117:21871882,44023793:237491 -k1,5117:25099781,44023793:237491 -k1,5117:26904893,44023793:237491 -k1,5117:29432212,44023793:237491 -k1,5117:30328995,44023793:237491 -k1,5117:32168186,44023793:237491 -k1,5118:32583029,44023793:0 -) -(1,5118:6630773,44865281:25952256,513147,134348 -k1,5117:9236480,44865281:199225 -k1,5117:12416283,44865281:199226 -k1,5117:14004871,44865281:199225 -k1,5117:16584364,44865281:199225 -k1,5117:17737139,44865281:199226 -k1,5117:19040646,44865281:199225 -k1,5117:20525687,44865281:199225 -k1,5117:21817398,44865281:199226 -(1,5117:21817398,44865281:0,452978,115847 -r1,5117:24637647,44865281:2820249,568825,115847 -k1,5117:21817398,44865281:-2820249 -) -(1,5117:21817398,44865281:2820249,452978,115847 -k1,5117:21817398,44865281:3277 -h1,5117:24634370,44865281:0,411205,112570 -) -k1,5117:25010542,44865281:199225 -(1,5117:25010542,44865281:0,452978,115847 -r1,5117:27830791,44865281:2820249,568825,115847 -k1,5117:25010542,44865281:-2820249 -) -(1,5117:25010542,44865281:2820249,452978,115847 -k1,5117:25010542,44865281:3277 -h1,5117:27827514,44865281:0,411205,112570 -) -k1,5117:28030016,44865281:199225 -k1,5117:28912127,44865281:199226 -(1,5117:28912127,44865281:0,452978,115847 -r1,5117:31732376,44865281:2820249,568825,115847 -k1,5117:28912127,44865281:-2820249 -) -(1,5117:28912127,44865281:2820249,452978,115847 -k1,5117:28912127,44865281:3277 -h1,5117:31729099,44865281:0,411205,112570 -) -k1,5117:31931601,44865281:199225 -k1,5117:32583029,44865281:0 -) -(1,5118:6630773,45706769:25952256,513147,126483 -g1,5117:8593576,45706769 -g1,5117:9924612,45706769 -g1,5117:12635836,45706769 -g1,5117:15530561,45706769 -g1,5117:16381218,45706769 -g1,5117:19773361,45706769 -k1,5118:32583029,45706769:9922807 -g1,5118:32583029,45706769 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,5126:37855564,49800853:1179648,16384,0 +) +) +k1,5126:3078556,49800853:-34777008 +) +] +g1,5126:6630773,4812305 +k1,5126:19515153,4812305:12087462 +g1,5126:20901894,4812305 +g1,5126:21550700,4812305 +g1,5126:24864855,4812305 +g1,5126:27600327,4812305 +g1,5126:29010006,4812305 +) +) +] +[1,5126:6630773,45706769:25952256,40108032,0 +(1,5126:6630773,45706769:25952256,40108032,0 +(1,5126:6630773,45706769:0,0,0 +g1,5126:6630773,45706769 +) +[1,5126:6630773,45706769:25952256,40108032,0 +v1,5094:6630773,6254097:0,393216,0 +(1,5094:6630773,19926167:25952256,14065286,196608 +g1,5094:6630773,19926167 +g1,5094:6630773,19926167 +g1,5094:6434165,19926167 +(1,5094:6434165,19926167:0,14065286,196608 +r1,5094:32779637,19926167:26345472,14261894,196608 +k1,5094:6434165,19926167:-26345472 +) +(1,5094:6434165,19926167:26345472,14065286,196608 +[1,5094:6630773,19926167:25952256,13868678,0 +(1,5073:6630773,6461715:25952256,404226,101187 +(1,5065:6630773,6461715:0,0,0 +g1,5065:6630773,6461715 +g1,5065:6630773,6461715 +g1,5065:6303093,6461715 +(1,5065:6303093,6461715:0,0,0 +) +g1,5065:6630773,6461715 +) +g1,5073:7579210,6461715 +g1,5073:7895356,6461715 +g1,5073:8211502,6461715 +g1,5073:10108376,6461715 +h1,5073:11372959,6461715:0,0,0 +k1,5073:32583029,6461715:21210070 +g1,5073:32583029,6461715 +) +(1,5073:6630773,7127893:25952256,388497,0 +h1,5073:6630773,7127893:0,0,0 +g1,5073:7579210,7127893 +g1,5073:8211502,7127893 +g1,5073:8527648,7127893 +g1,5073:8843794,7127893 +g1,5073:9159940,7127893 +g1,5073:9476086,7127893 +g1,5073:10108378,7127893 +g1,5073:10424524,7127893 +g1,5073:10740670,7127893 +g1,5073:11056816,7127893 +h1,5073:11372962,7127893:0,0,0 +k1,5073:32583030,7127893:21210068 +g1,5073:32583030,7127893 +) +(1,5073:6630773,7794071:25952256,388497,9436 +h1,5073:6630773,7794071:0,0,0 +g1,5073:7579210,7794071 +g1,5073:8211502,7794071 +g1,5073:8527648,7794071 +g1,5073:8843794,7794071 +g1,5073:9159940,7794071 +g1,5073:9476086,7794071 +g1,5073:10108378,7794071 +g1,5073:10424524,7794071 +g1,5073:10740670,7794071 +h1,5073:11372961,7794071:0,0,0 +k1,5073:32583029,7794071:21210068 +g1,5073:32583029,7794071 +) +(1,5073:6630773,8460249:25952256,388497,9436 +h1,5073:6630773,8460249:0,0,0 +g1,5073:7579210,8460249 +g1,5073:8211502,8460249 +g1,5073:8527648,8460249 +g1,5073:8843794,8460249 +g1,5073:9159940,8460249 +g1,5073:9476086,8460249 +g1,5073:10108378,8460249 +g1,5073:10424524,8460249 +g1,5073:10740670,8460249 +g1,5073:11056816,8460249 +h1,5073:11372962,8460249:0,0,0 +k1,5073:32583030,8460249:21210068 +g1,5073:32583030,8460249 +) +(1,5073:6630773,9126427:25952256,388497,0 +h1,5073:6630773,9126427:0,0,0 +g1,5073:7579210,9126427 +g1,5073:8211502,9126427 +g1,5073:8527648,9126427 +g1,5073:8843794,9126427 +g1,5073:9159940,9126427 +g1,5073:9476086,9126427 +g1,5073:10108378,9126427 +g1,5073:10424524,9126427 +g1,5073:10740670,9126427 +h1,5073:11372961,9126427:0,0,0 +k1,5073:32583029,9126427:21210068 +g1,5073:32583029,9126427 +) +(1,5073:6630773,9792605:25952256,388497,9436 +h1,5073:6630773,9792605:0,0,0 +g1,5073:7579210,9792605 +g1,5073:8211502,9792605 +g1,5073:8527648,9792605 +g1,5073:8843794,9792605 +g1,5073:9159940,9792605 +g1,5073:9476086,9792605 +g1,5073:10108378,9792605 +g1,5073:10424524,9792605 +g1,5073:10740670,9792605 +h1,5073:11372961,9792605:0,0,0 +k1,5073:32583029,9792605:21210068 +g1,5073:32583029,9792605 +) +(1,5073:6630773,10458783:25952256,388497,9436 +h1,5073:6630773,10458783:0,0,0 +g1,5073:7579210,10458783 +g1,5073:8211502,10458783 +g1,5073:8527648,10458783 +g1,5073:8843794,10458783 +g1,5073:9159940,10458783 +g1,5073:9476086,10458783 +g1,5073:10108378,10458783 +g1,5073:10424524,10458783 +g1,5073:10740670,10458783 +h1,5073:11372961,10458783:0,0,0 +k1,5073:32583029,10458783:21210068 +g1,5073:32583029,10458783 +) +(1,5075:6630773,11780321:25952256,404226,76021 +(1,5074:6630773,11780321:0,0,0 +g1,5074:6630773,11780321 +g1,5074:6630773,11780321 +g1,5074:6303093,11780321 +(1,5074:6303093,11780321:0,0,0 +) +g1,5074:6630773,11780321 +) +k1,5075:6630773,11780321:0 +h1,5075:9792230,11780321:0,0,0 +k1,5075:32583030,11780321:22790800 +g1,5075:32583030,11780321 +) +(1,5085:6630773,12512035:25952256,404226,101187 +(1,5077:6630773,12512035:0,0,0 +g1,5077:6630773,12512035 +g1,5077:6630773,12512035 +g1,5077:6303093,12512035 +(1,5077:6303093,12512035:0,0,0 +) +g1,5077:6630773,12512035 +) +g1,5085:7579210,12512035 +g1,5085:7895356,12512035 +g1,5085:8211502,12512035 +g1,5085:8527648,12512035 +g1,5085:10424522,12512035 +h1,5085:11689105,12512035:0,0,0 +k1,5085:32583029,12512035:20893924 +g1,5085:32583029,12512035 +) +(1,5085:6630773,13178213:25952256,388497,9436 +h1,5085:6630773,13178213:0,0,0 +g1,5085:7579210,13178213 +g1,5085:8527647,13178213 +g1,5085:8843793,13178213 +g1,5085:9159939,13178213 +g1,5085:9476085,13178213 +g1,5085:10424522,13178213 +g1,5085:10740668,13178213 +g1,5085:11056814,13178213 +h1,5085:11689105,13178213:0,0,0 +k1,5085:32583029,13178213:20893924 +g1,5085:32583029,13178213 +) +(1,5085:6630773,13844391:25952256,388497,9436 +h1,5085:6630773,13844391:0,0,0 +g1,5085:7579210,13844391 +g1,5085:8527647,13844391 +g1,5085:8843793,13844391 +g1,5085:9159939,13844391 +g1,5085:9476085,13844391 +g1,5085:10424522,13844391 +g1,5085:10740668,13844391 +g1,5085:11056814,13844391 +h1,5085:11689105,13844391:0,0,0 +k1,5085:32583029,13844391:20893924 +g1,5085:32583029,13844391 +) +(1,5085:6630773,14510569:25952256,388497,9436 +h1,5085:6630773,14510569:0,0,0 +g1,5085:7579210,14510569 +g1,5085:8527647,14510569 +g1,5085:8843793,14510569 +g1,5085:9159939,14510569 +g1,5085:9476085,14510569 +g1,5085:10424522,14510569 +g1,5085:10740668,14510569 +g1,5085:11056814,14510569 +h1,5085:11689105,14510569:0,0,0 +k1,5085:32583029,14510569:20893924 +g1,5085:32583029,14510569 +) +(1,5085:6630773,15176747:25952256,388497,9436 +h1,5085:6630773,15176747:0,0,0 +g1,5085:7579210,15176747 +g1,5085:8527647,15176747 +g1,5085:8843793,15176747 +g1,5085:9159939,15176747 +g1,5085:9476085,15176747 +g1,5085:10424522,15176747 +g1,5085:10740668,15176747 +g1,5085:11056814,15176747 +h1,5085:11689105,15176747:0,0,0 +k1,5085:32583029,15176747:20893924 +g1,5085:32583029,15176747 +) +(1,5085:6630773,15842925:25952256,388497,9436 +h1,5085:6630773,15842925:0,0,0 +g1,5085:7579210,15842925 +g1,5085:8527647,15842925 +g1,5085:8843793,15842925 +g1,5085:9159939,15842925 +g1,5085:9476085,15842925 +g1,5085:10424522,15842925 +g1,5085:10740668,15842925 +h1,5085:11689105,15842925:0,0,0 +k1,5085:32583029,15842925:20893924 +g1,5085:32583029,15842925 +) +(1,5085:6630773,16509103:25952256,388497,9436 +h1,5085:6630773,16509103:0,0,0 +g1,5085:7579210,16509103 +g1,5085:8527647,16509103 +g1,5085:8843793,16509103 +g1,5085:9159939,16509103 +g1,5085:9476085,16509103 +g1,5085:10424522,16509103 +g1,5085:10740668,16509103 +g1,5085:11056814,16509103 +h1,5085:11689105,16509103:0,0,0 +k1,5085:32583029,16509103:20893924 +g1,5085:32583029,16509103 +) +(1,5087:6630773,17830641:25952256,404226,76021 +(1,5086:6630773,17830641:0,0,0 +g1,5086:6630773,17830641 +g1,5086:6630773,17830641 +g1,5086:6303093,17830641 +(1,5086:6303093,17830641:0,0,0 +) +g1,5086:6630773,17830641 +) +k1,5087:6630773,17830641:0 +h1,5087:9476084,17830641:0,0,0 +k1,5087:32583028,17830641:23106944 +g1,5087:32583028,17830641 +) +(1,5093:6630773,18562355:25952256,410518,9436 +(1,5089:6630773,18562355:0,0,0 +g1,5089:6630773,18562355 +g1,5089:6630773,18562355 +g1,5089:6303093,18562355 +(1,5089:6303093,18562355:0,0,0 +) +g1,5089:6630773,18562355 +) +g1,5093:7579210,18562355 +g1,5093:12005251,18562355 +g1,5093:12953688,18562355 +g1,5093:14534417,18562355 +g1,5093:15482854,18562355 +g1,5093:15799000,18562355 +g1,5093:16431292,18562355 +h1,5093:19592749,18562355:0,0,0 +k1,5093:32583029,18562355:12990280 +g1,5093:32583029,18562355 +) +(1,5093:6630773,19228533:25952256,410518,101187 +h1,5093:6630773,19228533:0,0,0 +g1,5093:7579210,19228533 +g1,5093:7895356,19228533 +g1,5093:8527648,19228533 +g1,5093:10740668,19228533 +g1,5093:12005251,19228533 +g1,5093:12321397,19228533 +g1,5093:12953689,19228533 +g1,5093:13585981,19228533 +g1,5093:14218273,19228533 +g1,5093:14850565,19228533 +g1,5093:15482857,19228533 +g1,5093:16115149,19228533 +g1,5093:17063586,19228533 +g1,5093:18012023,19228533 +g1,5093:18960460,19228533 +g1,5093:19908897,19228533 +h1,5093:20857334,19228533:0,0,0 +k1,5093:32583029,19228533:11725695 +g1,5093:32583029,19228533 +) +(1,5093:6630773,19894711:25952256,410518,31456 +h1,5093:6630773,19894711:0,0,0 +g1,5093:7579210,19894711 +g1,5093:7895356,19894711 +g1,5093:8527648,19894711 +g1,5093:10108377,19894711 +g1,5093:10740669,19894711 +g1,5093:12005252,19894711 +g1,5093:12321398,19894711 +g1,5093:12953690,19894711 +g1,5093:13902127,19894711 +g1,5093:14534419,19894711 +g1,5093:15482856,19894711 +g1,5093:16431293,19894711 +g1,5093:17379730,19894711 +g1,5093:18328167,19894711 +g1,5093:19276604,19894711 +g1,5093:20225041,19894711 +g1,5093:21173478,19894711 +h1,5093:22121915,19894711:0,0,0 +k1,5093:32583029,19894711:10461114 +g1,5093:32583029,19894711 +) +] +) +g1,5094:32583029,19926167 +g1,5094:6630773,19926167 +g1,5094:6630773,19926167 +g1,5094:32583029,19926167 +g1,5094:32583029,19926167 +) +h1,5094:6630773,20122775:0,0,0 +v1,5098:6630773,21832633:0,393216,0 +(1,5099:6630773,24110800:25952256,2671383,616038 +g1,5099:6630773,24110800 +(1,5099:6630773,24110800:25952256,2671383,616038 +(1,5099:6630773,24726838:25952256,3287421,0 +[1,5099:6630773,24726838:25952256,3287421,0 +(1,5099:6630773,24700624:25952256,3234993,0 +r1,5099:6656987,24700624:26214,3234993,0 +[1,5099:6656987,24700624:25899828,3234993,0 +(1,5099:6656987,24110800:25899828,2055345,0 +[1,5099:7246811,24110800:24720180,2055345,0 +(1,5099:7246811,23142829:24720180,1087374,134348 +k1,5098:8650286,23142829:193772 +k1,5098:10390709,23142829:193773 +k1,5098:11420065,23142829:193772 +k1,5098:12632923,23142829:193773 +k1,5098:14214748,23142829:193772 +k1,5098:16236975,23142829:193773 +k1,5098:17378398,23142829:193772 +(1,5098:17378398,23142829:0,452978,115847 +r1,5099:19495223,23142829:2116825,568825,115847 +k1,5098:17378398,23142829:-2116825 +) +(1,5098:17378398,23142829:2116825,452978,115847 +k1,5098:17378398,23142829:3277 +h1,5098:19491946,23142829:0,411205,112570 +) +k1,5098:19688996,23142829:193773 +k1,5098:21074213,23142829:193772 +(1,5098:21074213,23142829:0,452978,115847 +r1,5099:23191038,23142829:2116825,568825,115847 +k1,5098:21074213,23142829:-2116825 +) +(1,5098:21074213,23142829:2116825,452978,115847 +k1,5098:21074213,23142829:3277 +h1,5098:23187761,23142829:0,411205,112570 +) +k1,5098:23558481,23142829:193773 +k1,5098:24943698,23142829:193772 +k1,5098:26363650,23142829:193773 +k1,5098:27576507,23142829:193772 +k1,5098:29266467,23142829:193773 +k1,5098:31315563,23142829:193772 +k1,5098:31966991,23142829:0 +) +(1,5099:7246811,23984317:24720180,513147,126483 +g1,5098:9028079,23984317 +g1,5098:10602909,23984317 +g1,5098:11821223,23984317 +g1,5098:13326585,23984317 +g1,5098:14698253,23984317 +g1,5098:16569961,23984317 +g1,5098:17452075,23984317 +g1,5098:19026905,23984317 +g1,5098:20245219,23984317 +g1,5098:21592639,23984317 +g1,5098:23446652,23984317 +g1,5098:25144689,23984317 +g1,5098:26011074,23984317 +(1,5098:26011074,23984317:0,414482,115847 +r1,5099:27424475,23984317:1413401,530329,115847 +k1,5098:26011074,23984317:-1413401 +) +(1,5098:26011074,23984317:1413401,414482,115847 +k1,5098:26011074,23984317:3277 +h1,5098:27421198,23984317:0,411205,112570 +) +g1,5098:27797374,23984317 +k1,5099:31966991,23984317:199446 +g1,5099:31966991,23984317 +) +] +) +] +r1,5099:32583029,24700624:26214,3234993,0 +) +] +) +) +g1,5099:32583029,24110800 +) +h1,5099:6630773,24726838:0,0,0 +(1,5104:6630773,26002511:25952256,513147,7863 +h1,5101:6630773,26002511:983040,0,0 +k1,5101:9114133,26002511:303633 +k1,5101:12180109,26002511:303633 +k1,5101:15196934,26002511:303634 +k1,5101:16159859,26002511:303633 +k1,5101:16819352,26002511:303633 +k1,5101:18512348,26002511:303633 +k1,5101:20692278,26002511:303634 +k1,5101:22100193,26002511:303633 +k1,5101:23151592,26002511:303633 +k1,5101:25679517,26002511:303633 +k1,5101:26666036,26002511:303634 +k1,5101:29277847,26002511:303633 +k1,5101:30240772,26002511:303633 +k1,5101:32583029,26002511:0 +) +(1,5104:6630773,26843999:25952256,505283,134348 +k1,5101:8956444,26843999:212790 +k1,5101:10618891,26843999:212791 +k1,5101:13625481,26843999:212790 +k1,5101:16081568,26843999:212790 +k1,5101:19442709,26843999:212791 +k1,5101:20974083,26843999:212790 +k1,5101:22418950,26843999:212790 +k1,5101:24910427,26843999:212790 +h1,5101:26279474,26843999:0,0,0 +k1,5101:26492265,26843999:212791 +k1,5101:27514425,26843999:212790 +k1,5101:29225368,26843999:212790 +h1,5101:30022286,26843999:0,0,0 +k1,5101:30615841,26843999:212791 +k1,5102:31657661,26843999:212790 +k1,5104:32583029,26843999:0 +) +(1,5104:6630773,27685487:25952256,513147,126483 +k1,5102:8430528,27685487:143660 +k1,5102:9593273,27685487:143660 +k1,5102:11519511,27685487:143659 +k1,5102:12322463,27685487:143660 +k1,5102:13485208,27685487:143660 +k1,5102:16342059,27685487:143660 +k1,5102:17152875,27685487:143660 +(1,5102:17152875,27685487:0,414482,115847 +r1,5102:18566276,27685487:1413401,530329,115847 +k1,5102:17152875,27685487:-1413401 +) +(1,5102:17152875,27685487:1413401,414482,115847 +k1,5102:17152875,27685487:3277 +h1,5102:18562999,27685487:0,411205,112570 +) +k1,5102:18883605,27685487:143659 +k1,5102:19895617,27685487:143660 +k1,5102:21143559,27685487:143660 +k1,5102:22379704,27685487:143660 +k1,5102:23294067,27685487:143660 +k1,5102:25230137,27685487:143660 +k1,5102:28242962,27685487:143659 +k1,5102:29014457,27685487:143660 +k1,5102:30177202,27685487:143660 +k1,5102:32583029,27685487:0 +) +(1,5104:6630773,28526975:25952256,513147,126483 +k1,5102:8414271,28526975:242747 +k1,5102:9525370,28526975:242747 +k1,5102:11316733,28526975:242747 +k1,5102:12210907,28526975:242746 +k1,5102:14217228,28526975:242747 +k1,5102:17155471,28526975:242747 +(1,5102:17155471,28526975:0,452978,115847 +r1,5102:19624008,28526975:2468537,568825,115847 +k1,5102:17155471,28526975:-2468537 +) +(1,5102:17155471,28526975:2468537,452978,115847 +k1,5102:17155471,28526975:3277 +h1,5102:19620731,28526975:0,411205,112570 +) +k1,5102:19866755,28526975:242747 +k1,5102:20760930,28526975:242747 +k1,5102:22455299,28526975:242747 +k1,5102:25080935,28526975:242747 +k1,5102:25982973,28526975:242746 +k1,5102:27244805,28526975:242747 +k1,5102:28876915,28526975:242747 +k1,5102:30995958,28526975:242747 +(1,5102:30995958,28526975:0,414482,115847 +r1,5102:32409359,28526975:1413401,530329,115847 +k1,5102:30995958,28526975:-1413401 +) +(1,5102:30995958,28526975:1413401,414482,115847 +k1,5102:30995958,28526975:3277 +h1,5102:32406082,28526975:0,411205,112570 +) +k1,5102:32583029,28526975:0 +) +(1,5104:6630773,29368463:25952256,513147,134348 +g1,5102:8932397,29368463 +g1,5102:12157423,29368463 +g1,5102:13348212,29368463 +g1,5102:16637464,29368463 +g1,5102:17452731,29368463 +g1,5102:19930647,29368463 +h1,5102:20901235,29368463:0,0,0 +g1,5102:21100464,29368463 +g1,5102:22109063,29368463 +g1,5102:23806445,29368463 +h1,5102:25001822,29368463:0,0,0 +g1,5102:25581815,29368463 +g1,5103:25581815,29368463 +k1,5104:32583029,29368463:7001214 +g1,5104:32583029,29368463 +) +v1,5106:6630773,30468825:0,393216,0 +(1,5114:6630773,32080625:25952256,2005016,196608 +g1,5114:6630773,32080625 +g1,5114:6630773,32080625 +g1,5114:6434165,32080625 +(1,5114:6434165,32080625:0,2005016,196608 +r1,5114:32779637,32080625:26345472,2201624,196608 +k1,5114:6434165,32080625:-26345472 +) +(1,5114:6434165,32080625:26345472,2005016,196608 +[1,5114:6630773,32080625:25952256,1808408,0 +(1,5108:6630773,30676443:25952256,404226,101187 +(1,5107:6630773,30676443:0,0,0 +g1,5107:6630773,30676443 +g1,5107:6630773,30676443 +g1,5107:6303093,30676443 +(1,5107:6303093,30676443:0,0,0 +) +g1,5107:6630773,30676443 +) +k1,5108:6630773,30676443:0 +g1,5108:9476085,30676443 +g1,5108:10108377,30676443 +g1,5108:12005252,30676443 +g1,5108:13269835,30676443 +g1,5108:13902127,30676443 +h1,5108:15799001,30676443:0,0,0 +k1,5108:32583029,30676443:16784028 +g1,5108:32583029,30676443 +) +(1,5113:6630773,31408157:25952256,404226,101187 +(1,5110:6630773,31408157:0,0,0 +g1,5110:6630773,31408157 +g1,5110:6630773,31408157 +g1,5110:6303093,31408157 +(1,5110:6303093,31408157:0,0,0 +) +g1,5110:6630773,31408157 +) +g1,5113:7579210,31408157 +g1,5113:7895356,31408157 +g1,5113:8211502,31408157 +g1,5113:8527648,31408157 +g1,5113:8843794,31408157 +g1,5113:10740668,31408157 +g1,5113:11056814,31408157 +g1,5113:11372960,31408157 +g1,5113:11689106,31408157 +g1,5113:12005252,31408157 +g1,5113:12321398,31408157 +h1,5113:13585981,31408157:0,0,0 +k1,5113:32583029,31408157:18997048 +g1,5113:32583029,31408157 +) +(1,5113:6630773,32074335:25952256,404226,6290 +h1,5113:6630773,32074335:0,0,0 +g1,5113:7579210,32074335 +g1,5113:10740667,32074335 +h1,5113:13585978,32074335:0,0,0 +k1,5113:32583030,32074335:18997052 +g1,5113:32583030,32074335 +) +] +) +g1,5114:32583029,32080625 +g1,5114:6630773,32080625 +g1,5114:6630773,32080625 +g1,5114:32583029,32080625 +g1,5114:32583029,32080625 +) +h1,5114:6630773,32277233:0,0,0 +(1,5118:6630773,33552906:25952256,513147,134348 +h1,5117:6630773,33552906:983040,0,0 +k1,5117:9076959,33552906:266459 +k1,5117:12529777,33552906:266458 +k1,5117:14651560,33552906:266459 +k1,5117:17258964,33552906:266458 +k1,5117:17881283,33552906:266459 +k1,5117:20125618,33552906:266458 +k1,5117:21051369,33552906:266459 +k1,5117:24292506,33552906:266458 +k1,5117:26928747,33552906:266459 +k1,5117:28589156,33552906:266458 +k1,5117:29874700,33552906:266459 +k1,5117:31923737,33552906:266458 +k1,5117:32583029,33552906:0 +) +(1,5118:6630773,34394394:25952256,513147,134348 +k1,5117:8323802,34394394:241407 +k1,5117:11121767,34394394:241406 +k1,5117:12838389,34394394:241407 +k1,5117:15618660,34394394:241406 +k1,5117:16519359,34394394:241407 +k1,5117:17779850,34394394:241406 +k1,5117:19999134,34394394:241407 +k1,5117:20772037,34394394:241406 +k1,5117:23172200,34394394:241407 +k1,5117:26530498,34394394:241406 +k1,5117:27423333,34394394:241407 +k1,5117:28683824,34394394:241406 +k1,5117:30663246,34394394:241407 +k1,5117:31563944,34394394:241406 +k1,5117:32583029,34394394:0 +) +(1,5118:6630773,35235882:25952256,513147,134348 +k1,5117:11398921,35235882:144583 +k1,5117:14526702,35235882:144582 +k1,5117:15287323,35235882:144583 +k1,5117:16450990,35235882:144582 +k1,5117:17984936,35235882:144583 +k1,5117:20179484,35235882:144582 +k1,5117:21366089,35235882:144583 +k1,5117:22713912,35235882:144582 +k1,5117:24511968,35235882:144583 +k1,5117:27842910,35235882:144582 +k1,5117:28638921,35235882:144583 +k1,5117:29531269,35235882:144582 +k1,5117:31189078,35235882:144583 +k1,5117:32583029,35235882:0 +) +(1,5118:6630773,36077370:25952256,513147,134348 +k1,5117:7936291,36077370:173711 +k1,5117:9811972,36077370:173711 +k1,5117:11375047,36077370:173712 +k1,5117:13425054,36077370:173711 +k1,5117:14281650,36077370:173711 +k1,5117:15622557,36077370:173711 +k1,5117:16664621,36077370:173712 +k1,5117:18368598,36077370:173711 +k1,5117:19917910,36077370:173711 +k1,5117:20743049,36077370:173711 +k1,5117:24126714,36077370:173712 +k1,5117:25319510,36077370:173711 +k1,5117:27231236,36077370:173711 +k1,5117:28064239,36077370:173711 +k1,5117:29257036,36077370:173712 +k1,5117:31563944,36077370:173711 +k1,5117:32583029,36077370:0 +) +(1,5118:6630773,36918858:25952256,513147,134348 +g1,5117:9902330,36918858 +g1,5117:10752987,36918858 +g1,5117:11971301,36918858 +g1,5117:13476663,36918858 +g1,5117:16956624,36918858 +g1,5117:19023629,36918858 +(1,5117:19023629,36918858:0,414482,115847 +r1,5117:19381895,36918858:358266,530329,115847 +k1,5117:19023629,36918858:-358266 +) +(1,5117:19023629,36918858:358266,414482,115847 +k1,5117:19023629,36918858:3277 +h1,5117:19378618,36918858:0,411205,112570 +) +g1,5117:19754794,36918858 +g1,5117:20605451,36918858 +g1,5117:21823765,36918858 +g1,5117:23179704,36918858 +g1,5117:24038225,36918858 +g1,5117:26581677,36918858 +k1,5118:32583029,36918858:3384499 +g1,5118:32583029,36918858 +) +v1,5120:6630773,38194531:0,393216,0 +(1,5121:6630773,42132082:25952256,4330767,616038 +g1,5121:6630773,42132082 +(1,5121:6630773,42132082:25952256,4330767,616038 +(1,5121:6630773,42748120:25952256,4946805,0 +[1,5121:6630773,42748120:25952256,4946805,0 +(1,5121:6630773,42721906:25952256,4894377,0 +r1,5121:6656987,42721906:26214,4894377,0 +[1,5121:6656987,42721906:25899828,4894377,0 +(1,5121:6656987,42132082:25899828,3714729,0 +[1,5121:7246811,42132082:24720180,3714729,0 +(1,5121:7246811,39504727:24720180,1087374,126483 +k1,5120:8815222,39504727:358708 +k1,5120:10645869,39504727:358708 +k1,5120:11939119,39504727:358707 +(1,5120:11939119,39504727:0,452978,115847 +r1,5121:15462791,39504727:3523672,568825,115847 +k1,5120:11939119,39504727:-3523672 +) +(1,5120:11939119,39504727:3523672,452978,115847 +k1,5120:11939119,39504727:3277 +h1,5120:15459514,39504727:0,411205,112570 +) +k1,5120:15821499,39504727:358708 +k1,5120:18882256,39504727:358708 +k1,5120:20630327,39504727:358708 +k1,5120:22556656,39504727:358708 +k1,5120:23760777,39504727:358707 +k1,5120:26318873,39504727:358708 +k1,5120:31350953,39504727:358708 +k1,5120:31966991,39504727:0 +) +(1,5121:7246811,40346215:24720180,505283,134348 +k1,5120:8974791,40346215:367453 +k1,5120:11035693,40346215:367452 +k1,5120:12768261,40346215:367453 +k1,5120:14873728,40346215:367452 +k1,5120:17999591,40346215:367453 +k1,5120:18983081,40346215:367452 +k1,5120:20369619,40346215:367453 +k1,5120:21151746,40346215:367284 +k1,5120:25474296,40346215:367452 +k1,5120:26946031,40346215:367453 +k1,5120:28061249,40346215:367452 +k1,5120:30573040,40346215:367453 +k1,5121:31966991,40346215:0 +) +(1,5121:7246811,41187703:24720180,505283,126483 +(1,5120:7246811,41187703:0,452978,115847 +r1,5121:12880754,41187703:5633943,568825,115847 +k1,5120:7246811,41187703:-5633943 +) +(1,5120:7246811,41187703:5633943,452978,115847 +k1,5120:7246811,41187703:3277 +h1,5120:12877477,41187703:0,411205,112570 +) +k1,5120:13249857,41187703:195433 +k1,5120:14981455,41187703:195434 +k1,5120:15808655,41187703:195433 +k1,5120:17195533,41187703:195433 +k1,5120:19407510,41187703:195434 +k1,5120:20622028,41187703:195433 +k1,5120:22503048,41187703:195434 +k1,5120:24727476,41187703:195433 +k1,5120:25574337,41187703:195433 +k1,5120:27381301,41187703:195434 +k1,5120:29125350,41187703:195433 +k1,5120:31966991,41187703:0 +) +(1,5121:7246811,42029191:24720180,513147,102891 +g1,5120:10573418,42029191 +g1,5120:11230744,42029191 +g1,5120:14305693,42029191 +g1,5120:16013561,42029191 +g1,5120:18619272,42029191 +g1,5120:19837586,42029191 +g1,5120:22522596,42029191 +g1,5120:23381117,42029191 +g1,5120:25288214,42029191 +k1,5121:31966991,42029191:5567286 +g1,5121:31966991,42029191 +) +] +) +] +r1,5121:32583029,42721906:26214,4894377,0 +) +] +) +) +g1,5121:32583029,42132082 +) +h1,5121:6630773,42748120:0,0,0 +(1,5124:6630773,44023793:25952256,513147,134348 +h1,5123:6630773,44023793:983040,0,0 +k1,5123:10641172,44023793:237491 +(1,5123:10641172,44023793:0,452978,115847 +r1,5123:13813132,44023793:3171960,568825,115847 +k1,5123:10641172,44023793:-3171960 +) +(1,5123:10641172,44023793:3171960,452978,115847 +k1,5123:10641172,44023793:3277 +h1,5123:13809855,44023793:0,411205,112570 +) +k1,5123:14050623,44023793:237491 +k1,5123:15392396,44023793:237491 +k1,5123:16377653,44023793:237491 +k1,5123:18128370,44023793:237491 +k1,5123:19017289,44023793:237491 +k1,5123:21278531,44023793:237490 +k1,5123:21871882,44023793:237491 +k1,5123:25099781,44023793:237491 +k1,5123:26904893,44023793:237491 +k1,5123:29432212,44023793:237491 +k1,5123:30328995,44023793:237491 +k1,5123:32168186,44023793:237491 +k1,5124:32583029,44023793:0 +) +(1,5124:6630773,44865281:25952256,513147,134348 +k1,5123:9236480,44865281:199225 +k1,5123:12416283,44865281:199226 +k1,5123:14004871,44865281:199225 +k1,5123:16584364,44865281:199225 +k1,5123:17737139,44865281:199226 +k1,5123:19040646,44865281:199225 +k1,5123:20525687,44865281:199225 +k1,5123:21817398,44865281:199226 +(1,5123:21817398,44865281:0,452978,115847 +r1,5123:24637647,44865281:2820249,568825,115847 +k1,5123:21817398,44865281:-2820249 +) +(1,5123:21817398,44865281:2820249,452978,115847 +k1,5123:21817398,44865281:3277 +h1,5123:24634370,44865281:0,411205,112570 +) +k1,5123:25010542,44865281:199225 +(1,5123:25010542,44865281:0,452978,115847 +r1,5123:27830791,44865281:2820249,568825,115847 +k1,5123:25010542,44865281:-2820249 +) +(1,5123:25010542,44865281:2820249,452978,115847 +k1,5123:25010542,44865281:3277 +h1,5123:27827514,44865281:0,411205,112570 +) +k1,5123:28030016,44865281:199225 +k1,5123:28912127,44865281:199226 +(1,5123:28912127,44865281:0,452978,115847 +r1,5123:31732376,44865281:2820249,568825,115847 +k1,5123:28912127,44865281:-2820249 +) +(1,5123:28912127,44865281:2820249,452978,115847 +k1,5123:28912127,44865281:3277 +h1,5123:31729099,44865281:0,411205,112570 +) +k1,5123:31931601,44865281:199225 +k1,5123:32583029,44865281:0 +) +(1,5124:6630773,45706769:25952256,513147,126483 +g1,5123:8593576,45706769 +g1,5123:9924612,45706769 +g1,5123:12635836,45706769 +g1,5123:15530561,45706769 +g1,5123:16381218,45706769 +g1,5123:19773361,45706769 +k1,5124:32583029,45706769:9922807 +g1,5124:32583029,45706769 ) ] -(1,5120:32583029,45706769:0,0,0 -g1,5120:32583029,45706769 +(1,5126:32583029,45706769:0,0,0 +g1,5126:32583029,45706769 ) ) ] -(1,5120:6630773,47279633:25952256,0,0 -h1,5120:6630773,47279633:25952256,0,0 +(1,5126:6630773,47279633:25952256,0,0 +h1,5126:6630773,47279633:25952256,0,0 ) ] -h1,5120:4262630,4025873:0,0,0 +h1,5126:4262630,4025873:0,0,0 ] -!27308 +!27309 }93 -Input:656:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:657:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:658:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:659:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:660:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:661:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:662:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:663:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:664:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:665:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:666:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:667:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:668:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1116 +Input:652:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:653:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:654:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:655:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:656:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:657:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:658:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:659:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:660:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:661:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:662:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:663:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:664:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1194 {94 -[1,5171:4262630,47279633:28320399,43253760,0 -(1,5171:4262630,4025873:0,0,0 -[1,5171:-473657,4025873:25952256,0,0 -(1,5171:-473657,-710414:25952256,0,0 -h1,5171:-473657,-710414:0,0,0 -(1,5171:-473657,-710414:0,0,0 -(1,5171:-473657,-710414:0,0,0 -g1,5171:-473657,-710414 -(1,5171:-473657,-710414:65781,0,65781 -g1,5171:-407876,-710414 -[1,5171:-407876,-644633:0,0,0 +[1,5177:4262630,47279633:28320399,43253760,0 +(1,5177:4262630,4025873:0,0,0 +[1,5177:-473657,4025873:25952256,0,0 +(1,5177:-473657,-710414:25952256,0,0 +h1,5177:-473657,-710414:0,0,0 +(1,5177:-473657,-710414:0,0,0 +(1,5177:-473657,-710414:0,0,0 +g1,5177:-473657,-710414 +(1,5177:-473657,-710414:65781,0,65781 +g1,5177:-407876,-710414 +[1,5177:-407876,-644633:0,0,0 ] ) -k1,5171:-473657,-710414:-65781 +k1,5177:-473657,-710414:-65781 ) ) -k1,5171:25478599,-710414:25952256 -g1,5171:25478599,-710414 +k1,5177:25478599,-710414:25952256 +g1,5177:25478599,-710414 ) ] ) -[1,5171:6630773,47279633:25952256,43253760,0 -[1,5171:6630773,4812305:25952256,786432,0 -(1,5171:6630773,4812305:25952256,505283,134348 -(1,5171:6630773,4812305:25952256,505283,134348 -g1,5171:3078558,4812305 -[1,5171:3078558,4812305:0,0,0 -(1,5171:3078558,2439708:0,1703936,0 -k1,5171:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,5171:2537886,2439708:1179648,16384,0 +[1,5177:6630773,47279633:25952256,43253760,0 +[1,5177:6630773,4812305:25952256,786432,0 +(1,5177:6630773,4812305:25952256,505283,134348 +(1,5177:6630773,4812305:25952256,505283,134348 +g1,5177:3078558,4812305 +[1,5177:3078558,4812305:0,0,0 +(1,5177:3078558,2439708:0,1703936,0 +k1,5177:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,5177:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,5171:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,5177:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,5171:3078558,4812305:0,0,0 -(1,5171:3078558,2439708:0,1703936,0 -g1,5171:29030814,2439708 -g1,5171:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,5171:36151628,1915420:16384,1179648,0 +[1,5177:3078558,4812305:0,0,0 +(1,5177:3078558,2439708:0,1703936,0 +g1,5177:29030814,2439708 +g1,5177:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,5177:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,5171:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,5177:37855564,2439708:1179648,16384,0 ) ) -k1,5171:3078556,2439708:-34777008 +k1,5177:3078556,2439708:-34777008 ) ] -[1,5171:3078558,4812305:0,0,0 -(1,5171:3078558,49800853:0,16384,2228224 -k1,5171:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,5171:2537886,49800853:1179648,16384,0 +[1,5177:3078558,4812305:0,0,0 +(1,5177:3078558,49800853:0,16384,2228224 +k1,5177:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,5177:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,5171:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,5177:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,5171:3078558,4812305:0,0,0 -(1,5171:3078558,49800853:0,16384,2228224 -g1,5171:29030814,49800853 -g1,5171:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,5171:36151628,51504789:16384,1179648,0 +[1,5177:3078558,4812305:0,0,0 +(1,5177:3078558,49800853:0,16384,2228224 +g1,5177:29030814,49800853 +g1,5177:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,5177:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,5171:37855564,49800853:1179648,16384,0 -) -) -k1,5171:3078556,49800853:-34777008 -) -] -g1,5171:6630773,4812305 -g1,5171:6630773,4812305 -g1,5171:9228620,4812305 -k1,5171:31786112,4812305:22557492 -) -) -] -[1,5171:6630773,45706769:25952256,40108032,0 -(1,5171:6630773,45706769:25952256,40108032,0 -(1,5171:6630773,45706769:0,0,0 -g1,5171:6630773,45706769 -) -[1,5171:6630773,45706769:25952256,40108032,0 -v1,5120:6630773,6254097:0,393216,0 -(1,5141:6630773,14658417:25952256,8797536,196608 -g1,5141:6630773,14658417 -g1,5141:6630773,14658417 -g1,5141:6434165,14658417 -(1,5141:6434165,14658417:0,8797536,196608 -r1,5141:32779637,14658417:26345472,8994144,196608 -k1,5141:6434165,14658417:-26345472 -) -(1,5141:6434165,14658417:26345472,8797536,196608 -[1,5141:6630773,14658417:25952256,8600928,0 -(1,5122:6630773,6461715:25952256,404226,101187 -(1,5121:6630773,6461715:0,0,0 -g1,5121:6630773,6461715 -g1,5121:6630773,6461715 -g1,5121:6303093,6461715 -(1,5121:6303093,6461715:0,0,0 -) -g1,5121:6630773,6461715 -) -k1,5122:6630773,6461715:0 -h1,5122:10740667,6461715:0,0,0 -k1,5122:32583029,6461715:21842362 -g1,5122:32583029,6461715 -) -(1,5132:6630773,7193429:25952256,404226,101187 -(1,5124:6630773,7193429:0,0,0 -g1,5124:6630773,7193429 -g1,5124:6630773,7193429 -g1,5124:6303093,7193429 -(1,5124:6303093,7193429:0,0,0 -) -g1,5124:6630773,7193429 -) -g1,5132:7579210,7193429 -g1,5132:7895356,7193429 -g1,5132:8211502,7193429 -g1,5132:8527648,7193429 -g1,5132:8843794,7193429 -g1,5132:9159940,7193429 -g1,5132:11056814,7193429 -g1,5132:11372960,7193429 -g1,5132:11689106,7193429 -g1,5132:12005252,7193429 -g1,5132:12321398,7193429 -g1,5132:12637544,7193429 -g1,5132:12953690,7193429 -g1,5132:13269836,7193429 -g1,5132:13585982,7193429 -g1,5132:13902128,7193429 -g1,5132:14218274,7193429 -h1,5132:15482857,7193429:0,0,0 -k1,5132:32583029,7193429:17100172 -g1,5132:32583029,7193429 -) -(1,5132:6630773,7859607:25952256,404226,9436 -h1,5132:6630773,7859607:0,0,0 -g1,5132:7579210,7859607 -g1,5132:7895356,7859607 -g1,5132:9476085,7859607 -g1,5132:9792231,7859607 -g1,5132:10108377,7859607 -g1,5132:10740669,7859607 -g1,5132:12005252,7859607 -g1,5132:12321398,7859607 -g1,5132:12637544,7859607 -g1,5132:14218273,7859607 -g1,5132:14534419,7859607 -g1,5132:14850565,7859607 -g1,5132:15482857,7859607 -g1,5132:15799003,7859607 -h1,5132:17063586,7859607:0,0,0 -k1,5132:32583029,7859607:15519443 -g1,5132:32583029,7859607 -) -(1,5132:6630773,8525785:25952256,388497,82312 -h1,5132:6630773,8525785:0,0,0 -g1,5132:7579210,8525785 -g1,5132:7895356,8525785 -g1,5132:9159939,8525785 -g1,5132:12005250,8525785 -g1,5132:12321396,8525785 -g1,5132:12637542,8525785 -g1,5132:13902125,8525785 -g1,5132:15482854,8525785 -h1,5132:17063582,8525785:0,0,0 -k1,5132:32583029,8525785:15519447 -g1,5132:32583029,8525785 -) -(1,5132:6630773,9191963:25952256,404226,9436 -h1,5132:6630773,9191963:0,0,0 -g1,5132:7579210,9191963 -g1,5132:7895356,9191963 -g1,5132:10108376,9191963 -g1,5132:12005250,9191963 -g1,5132:12321396,9191963 -g1,5132:12637542,9191963 -g1,5132:14850562,9191963 -g1,5132:15482854,9191963 -h1,5132:17063582,9191963:0,0,0 -k1,5132:32583029,9191963:15519447 -g1,5132:32583029,9191963 -) -(1,5132:6630773,9858141:25952256,388497,9436 -h1,5132:6630773,9858141:0,0,0 -g1,5132:7579210,9858141 -g1,5132:7895356,9858141 -g1,5132:9476085,9858141 -g1,5132:9792231,9858141 -g1,5132:10108377,9858141 -g1,5132:12005251,9858141 -g1,5132:12321397,9858141 -g1,5132:12637543,9858141 -g1,5132:14218272,9858141 -g1,5132:14534418,9858141 -g1,5132:14850564,9858141 -g1,5132:15482856,9858141 -h1,5132:17063584,9858141:0,0,0 -k1,5132:32583029,9858141:15519445 -g1,5132:32583029,9858141 -) -(1,5132:6630773,10524319:25952256,404226,82312 -h1,5132:6630773,10524319:0,0,0 -g1,5132:7579210,10524319 -g1,5132:7895356,10524319 -g1,5132:9159939,10524319 -g1,5132:12005250,10524319 -g1,5132:12321396,10524319 -g1,5132:12637542,10524319 -g1,5132:13902125,10524319 -g1,5132:15482854,10524319 -h1,5132:17063582,10524319:0,0,0 -k1,5132:32583029,10524319:15519447 -g1,5132:32583029,10524319 -) -(1,5132:6630773,11190497:25952256,388497,9436 -h1,5132:6630773,11190497:0,0,0 -g1,5132:7579210,11190497 -g1,5132:7895356,11190497 -g1,5132:9476085,11190497 -g1,5132:9792231,11190497 -g1,5132:10108377,11190497 -g1,5132:12005251,11190497 -g1,5132:12321397,11190497 -g1,5132:12637543,11190497 -g1,5132:14218272,11190497 -g1,5132:14534418,11190497 -g1,5132:14850564,11190497 -h1,5132:17063584,11190497:0,0,0 -k1,5132:32583029,11190497:15519445 -g1,5132:32583029,11190497 -) -(1,5134:6630773,12512035:25952256,404226,107478 -(1,5133:6630773,12512035:0,0,0 -g1,5133:6630773,12512035 -g1,5133:6630773,12512035 -g1,5133:6303093,12512035 -(1,5133:6303093,12512035:0,0,0 -) -g1,5133:6630773,12512035 -) -k1,5134:6630773,12512035:0 -g1,5134:10740667,12512035 -h1,5134:12637541,12512035:0,0,0 -k1,5134:32583029,12512035:19945488 -g1,5134:32583029,12512035 -) -(1,5140:6630773,13243749:25952256,404226,101187 -(1,5136:6630773,13243749:0,0,0 -g1,5136:6630773,13243749 -g1,5136:6630773,13243749 -g1,5136:6303093,13243749 -(1,5136:6303093,13243749:0,0,0 -) -g1,5136:6630773,13243749 -) -g1,5140:7579210,13243749 -g1,5140:7895356,13243749 -g1,5140:8211502,13243749 -g1,5140:8527648,13243749 -g1,5140:8843794,13243749 -g1,5140:9159940,13243749 -g1,5140:11056814,13243749 -h1,5140:12321397,13243749:0,0,0 -k1,5140:32583029,13243749:20261632 -g1,5140:32583029,13243749 -) -(1,5140:6630773,13909927:25952256,404226,82312 -h1,5140:6630773,13909927:0,0,0 -g1,5140:7579210,13909927 -g1,5140:9159938,13909927 -g1,5140:9476084,13909927 -g1,5140:9792230,13909927 -g1,5140:10108376,13909927 -g1,5140:10424522,13909927 -g1,5140:11056814,13909927 -g1,5140:11372960,13909927 -g1,5140:11689106,13909927 -g1,5140:12005252,13909927 -h1,5140:12321398,13909927:0,0,0 -k1,5140:32583030,13909927:20261632 -g1,5140:32583030,13909927 -) -(1,5140:6630773,14576105:25952256,404226,82312 -h1,5140:6630773,14576105:0,0,0 -g1,5140:7579210,14576105 -g1,5140:9159938,14576105 -g1,5140:9476084,14576105 -g1,5140:9792230,14576105 -g1,5140:10108376,14576105 -g1,5140:11056813,14576105 -g1,5140:11372959,14576105 -h1,5140:12321396,14576105:0,0,0 -k1,5140:32583028,14576105:20261632 -g1,5140:32583028,14576105 -) -] -) -g1,5141:32583029,14658417 -g1,5141:6630773,14658417 -g1,5141:6630773,14658417 -g1,5141:32583029,14658417 -g1,5141:32583029,14658417 -) -h1,5141:6630773,14855025:0,0,0 -v1,5145:6630773,16745089:0,393216,0 -(1,5146:6630773,21744328:25952256,5392455,616038 -g1,5146:6630773,21744328 -(1,5146:6630773,21744328:25952256,5392455,616038 -(1,5146:6630773,22360366:25952256,6008493,0 -[1,5146:6630773,22360366:25952256,6008493,0 -(1,5146:6630773,22334152:25952256,5956065,0 -r1,5146:6656987,22334152:26214,5956065,0 -[1,5146:6656987,22334152:25899828,5956065,0 -(1,5146:6656987,21744328:25899828,4776417,0 -[1,5146:7246811,21744328:24720180,4776417,0 -(1,5146:7246811,18251893:24720180,1283982,196608 -(1,5145:7246811,18251893:0,1283982,196608 -r1,5146:9812056,18251893:2565245,1480590,196608 -k1,5145:7246811,18251893:-2565245 -) -(1,5145:7246811,18251893:2565245,1283982,196608 -) -k1,5145:9966901,18251893:154845 -k1,5145:12260186,18251893:154845 -k1,5145:13434116,18251893:154845 -k1,5145:16579369,18251893:154845 -k1,5145:17401370,18251893:154845 -(1,5145:17401370,18251893:0,452978,115847 -r1,5146:20925042,18251893:3523672,568825,115847 -k1,5145:17401370,18251893:-3523672 -) -(1,5145:17401370,18251893:3523672,452978,115847 -k1,5145:17401370,18251893:3277 -h1,5145:20921765,18251893:0,411205,112570 -) -k1,5145:21079888,18251893:154846 -k1,5145:22628684,18251893:154845 -k1,5145:25479025,18251893:154845 -(1,5145:25479025,18251893:0,452978,115847 -r1,5146:28650985,18251893:3171960,568825,115847 -k1,5145:25479025,18251893:-3171960 -) -(1,5145:25479025,18251893:3171960,452978,115847 -k1,5145:25479025,18251893:3277 -h1,5145:28647708,18251893:0,411205,112570 -) -k1,5145:28979500,18251893:154845 -k1,5145:30206514,18251893:154845 -k1,5145:30977397,18251893:154845 -k1,5146:31966991,18251893:0 -) -(1,5146:7246811,19093381:24720180,513147,134348 -k1,5145:9506055,19093381:196171 -k1,5145:11317033,19093381:196171 -k1,5145:13009391,19093381:196171 -k1,5145:14599513,19093381:196171 -k1,5145:15566387,19093381:196171 -k1,5145:17554968,19093381:196171 -k1,5145:20446635,19093381:196171 -k1,5145:21294234,19093381:196171 -k1,5145:23305097,19093381:196171 -k1,5145:24520353,19093381:196171 -k1,5145:27202305,19093381:196171 -k1,5145:28057768,19093381:196171 -k1,5145:31966991,19093381:0 -) -(1,5146:7246811,19934869:24720180,505283,134348 -k1,5145:9430268,19934869:172812 -k1,5145:10219117,19934869:172811 -k1,5145:11843551,19934869:172812 -k1,5145:14572921,19934869:172811 -k1,5145:16297626,19934869:172812 -k1,5145:18205830,19934869:172811 -(1,5145:18205830,19934869:0,452978,115847 -r1,5146:19970943,19934869:1765113,568825,115847 -k1,5145:18205830,19934869:-1765113 -) -(1,5145:18205830,19934869:1765113,452978,115847 -k1,5145:18205830,19934869:3277 -h1,5145:19967666,19934869:0,411205,112570 -) -k1,5145:20143755,19934869:172812 -k1,5145:21125936,19934869:172811 -k1,5145:21654608,19934869:172812 -(1,5145:21654608,19934869:0,452978,122846 -r1,5146:24123145,19934869:2468537,575824,122846 -k1,5145:21654608,19934869:-2468537 -) -(1,5145:21654608,19934869:2468537,452978,122846 -k1,5145:21654608,19934869:3277 -h1,5145:24119868,19934869:0,411205,112570 -) -k1,5145:24295956,19934869:172811 -k1,5145:26446645,19934869:172812 -k1,5145:28960402,19934869:172811 -k1,5145:30152299,19934869:172812 -k1,5145:31966991,19934869:0 -) -(1,5146:7246811,20776357:24720180,513147,126483 -k1,5145:8148619,20776357:234652 -(1,5145:8148619,20776357:0,414482,115847 -r1,5146:9562020,20776357:1413401,530329,115847 -k1,5145:8148619,20776357:-1413401 -) -(1,5145:8148619,20776357:1413401,414482,115847 -k1,5145:8148619,20776357:3277 -h1,5145:9558743,20776357:0,411205,112570 -) -k1,5145:9796672,20776357:234652 -k1,5145:12041969,20776357:234652 -k1,5145:12962783,20776357:234652 -(1,5145:12962783,20776357:0,414482,115847 -r1,5146:14376184,20776357:1413401,530329,115847 -k1,5145:12962783,20776357:-1413401 -) -(1,5145:12962783,20776357:1413401,414482,115847 -k1,5145:12962783,20776357:3277 -h1,5145:14372907,20776357:0,411205,112570 -) -k1,5145:14784506,20776357:234652 -k1,5145:16210603,20776357:234652 -(1,5145:16210603,20776357:0,414482,115847 -r1,5146:17975716,20776357:1765113,530329,115847 -k1,5145:16210603,20776357:-1765113 -) -(1,5145:16210603,20776357:1765113,414482,115847 -k1,5145:16210603,20776357:3277 -h1,5145:17972439,20776357:0,411205,112570 -) -k1,5145:18210368,20776357:234652 -k1,5145:19436580,20776357:234652 -k1,5145:23967772,20776357:234652 -k1,5145:27363225,20776357:234652 -k1,5145:28865343,20776357:234652 -(1,5145:28865343,20776357:0,452978,115847 -r1,5146:31333880,20776357:2468537,568825,115847 -k1,5145:28865343,20776357:-2468537 -) -(1,5145:28865343,20776357:2468537,452978,115847 -k1,5145:28865343,20776357:3277 -h1,5145:31330603,20776357:0,411205,112570 -) -k1,5145:31568532,20776357:234652 -k1,5145:31966991,20776357:0 -) -(1,5146:7246811,21617845:24720180,505283,126483 -g1,5145:8637485,21617845 -g1,5145:9408843,21617845 -g1,5145:13578243,21617845 -g1,5145:15475510,21617845 -(1,5145:15475510,21617845:0,452978,122846 -r1,5146:17944047,21617845:2468537,575824,122846 -k1,5145:15475510,21617845:-2468537 -) -(1,5145:15475510,21617845:2468537,452978,122846 -k1,5145:15475510,21617845:3277 -h1,5145:17940770,21617845:0,411205,112570 -) -g1,5145:18143276,21617845 -g1,5145:20353150,21617845 -g1,5145:21543939,21617845 -g1,5145:23256394,21617845 -g1,5145:24071661,21617845 -g1,5145:27547035,21617845 -k1,5146:31966991,21617845:475999 -g1,5146:31966991,21617845 -) -] -) -] -r1,5146:32583029,22334152:26214,5956065,0 -) -] -) -) -g1,5146:32583029,21744328 -) -h1,5146:6630773,22360366:0,0,0 -(1,5148:6630773,25167934:25952256,32768,229376 -(1,5148:6630773,25167934:0,32768,229376 -(1,5148:6630773,25167934:5505024,32768,229376 -r1,5148:12135797,25167934:5505024,262144,229376 -) -k1,5148:6630773,25167934:-5505024 -) -(1,5148:6630773,25167934:25952256,32768,0 -r1,5148:32583029,25167934:25952256,32768,0 -) -) -(1,5148:6630773,26772262:25952256,606339,161218 -(1,5148:6630773,26772262:2464678,582746,14155 -g1,5148:6630773,26772262 -g1,5148:9095451,26772262 -) -k1,5148:32583029,26772262:20411056 -g1,5148:32583029,26772262 -) -(1,5151:6630773,28006966:25952256,513147,134348 -k1,5150:8087772,28006966:260312 -k1,5150:10409786,28006966:260251 -k1,5150:12976965,28006966:260312 -k1,5150:15691601,28006966:260313 -(1,5150:15691601,28006966:0,452978,115847 -r1,5150:17808426,28006966:2116825,568825,115847 -k1,5150:15691601,28006966:-2116825 -) -(1,5150:15691601,28006966:2116825,452978,115847 -k1,5150:15691601,28006966:3277 -h1,5150:17805149,28006966:0,411205,112570 -) -k1,5150:18068738,28006966:260312 -k1,5150:19433332,28006966:260312 -k1,5150:20441410,28006966:260312 -k1,5150:22214948,28006966:260312 -k1,5150:23126689,28006966:260313 -k1,5150:24664298,28006966:260312 -k1,5150:27686953,28006966:260312 -k1,5150:29510299,28006966:260312 -k1,5150:30240505,28006966:260313 -k1,5150:31032314,28006966:260312 -k1,5150:31648486,28006966:260312 -k1,5151:32583029,28006966:0 -) -(1,5151:6630773,28848454:25952256,513147,134348 -k1,5150:8454759,28848454:238670 -k1,5150:11147752,28848454:238670 -k1,5150:12670928,28848454:238670 -k1,5150:14010603,28848454:238670 -k1,5150:18988181,28848454:238670 -k1,5150:21738846,28848454:238670 -k1,5150:22925167,28848454:238670 -k1,5150:25926180,28848454:238670 -k1,5150:27924492,28848454:238670 -k1,5150:28822454,28848454:238670 -k1,5150:31350952,28848454:238670 -k1,5150:32583029,28848454:0 -) -(1,5151:6630773,29689942:25952256,513147,134348 -k1,5150:9057290,29689942:147830 -h1,5150:10027878,29689942:0,0,0 -k1,5150:10175709,29689942:147831 -k1,5150:11132909,29689942:147830 -k1,5150:12778892,29689942:147830 -h1,5150:13974269,29689942:0,0,0 -k1,5150:14122100,29689942:147831 -k1,5150:15217581,29689942:147830 -k1,5150:15721271,29689942:147830 -k1,5150:17371187,29689942:147831 -k1,5150:21511470,29689942:147830 -k1,5150:22310729,29689942:147831 -k1,5150:24922057,29689942:147830 -k1,5150:27302699,29689942:147830 -k1,5150:28641975,29689942:147831 -k1,5150:31955194,29689942:147830 -k1,5150:32583029,29689942:0 -) -(1,5151:6630773,30531430:25952256,513147,126483 -k1,5150:8032134,30531430:198120 -k1,5150:10508941,30531430:198120 -k1,5150:11575413,30531430:198120 -k1,5150:13149135,30531430:198121 -k1,5150:14701229,30531430:198120 -k1,5150:16932276,30531430:198120 -k1,5150:21163482,30531430:198120 -k1,5150:22380687,30531430:198120 -k1,5150:23671292,30531430:198120 -k1,5150:24528705,30531430:198121 -k1,5150:25745910,30531430:198120 -k1,5150:27545730,30531430:198120 -k1,5150:30521266,30531430:198120 -k1,5151:32583029,30531430:0 -) -(1,5151:6630773,31372918:25952256,513147,134348 -k1,5150:9526590,31372918:176728 -k1,5150:12902787,31372918:176729 -k1,5150:14637306,31372918:176728 -k1,5150:15805595,31372918:176729 -k1,5150:17260930,31372918:176728 -k1,5150:20527682,31372918:176729 -k1,5150:21320448,31372918:176728 -k1,5150:22516262,31372918:176729 -k1,5150:24275029,31372918:176728 -k1,5150:24901335,31372918:176729 -k1,5150:27911840,31372918:176728 -k1,5150:30608429,31372918:176729 -k1,5150:32583029,31372918:0 -) -(1,5151:6630773,32214406:25952256,505283,134348 -k1,5150:7850902,32214406:266580 -k1,5150:9249944,32214406:266580 -k1,5150:10582795,32214406:266580 -k1,5150:13518656,32214406:266580 -k1,5150:14804321,32214406:266580 -k1,5150:17187714,32214406:266580 -k1,5150:19516058,32214406:266581 -k1,5150:20592008,32214406:266580 -k1,5150:21717765,32214406:266580 -k1,5150:24203394,32214406:266580 -k1,5150:27454484,32214406:266580 -k1,5150:28372492,32214406:266580 -k1,5150:31163519,32214406:266580 -k1,5151:32583029,32214406:0 -) -(1,5151:6630773,33055894:25952256,513147,134348 -k1,5150:7902250,33055894:234697 -k1,5150:10111760,33055894:234910 -k1,5150:12685437,33055894:234697 -k1,5150:13788486,33055894:234697 -k1,5150:16692464,33055894:234697 -k1,5150:17543200,33055894:234698 -k1,5150:19565064,33055894:234697 -k1,5150:20818846,33055894:234697 -k1,5150:22146028,33055894:234697 -k1,5150:23040017,33055894:234697 -k1,5150:24293800,33055894:234698 -k1,5150:27573300,33055894:234697 -k1,5150:28424035,33055894:234697 -k1,5150:31391584,33055894:234697 -k1,5150:32583029,33055894:0 -) -(1,5151:6630773,33897382:25952256,505283,134348 -g1,5150:9354449,33897382 -g1,5150:10947629,33897382 -g1,5150:13727010,33897382 -g1,5150:16754772,33897382 -g1,5150:17570039,33897382 -g1,5150:20186891,33897382 -h1,5150:20585350,33897382:0,0,0 -g1,5150:20784579,33897382 -g1,5150:23462380,33897382 -g1,5150:24470979,33897382 -g1,5150:26168361,33897382 -h1,5150:27363738,33897382:0,0,0 -k1,5151:32583029,33897382:5045621 -g1,5151:32583029,33897382 -) -(1,5153:6630773,34738870:25952256,513147,126483 -h1,5152:6630773,34738870:983040,0,0 -k1,5152:8256580,34738870:172874 -k1,5152:8960952,34738870:172875 -k1,5152:11763786,34738870:172874 -k1,5152:12588089,34738870:172875 -k1,5152:14198168,34738870:172874 -k1,5152:15543482,34738870:172875 -k1,5152:18557997,34738870:172874 -k1,5152:20335849,34738870:172875 -k1,5152:23221914,34738870:172874 -k1,5152:24962410,34738870:172875 -k1,5152:25491144,34738870:172874 -k1,5152:27053382,34738870:172875 -k1,5152:29309646,34738870:172874 -k1,5152:31896867,34738870:172875 -k1,5152:32583029,34738870:0 -) -(1,5153:6630773,35580358:25952256,513147,134348 -g1,5152:10232631,35580358 -g1,5152:11083288,35580358 -g1,5152:12301602,35580358 -(1,5152:12301602,35580358:0,414482,115847 -r1,5152:12659868,35580358:358266,530329,115847 -k1,5152:12301602,35580358:-358266 -) -(1,5152:12301602,35580358:358266,414482,115847 -k1,5152:12301602,35580358:3277 -h1,5152:12656591,35580358:0,411205,112570 -) -g1,5152:12859097,35580358 -g1,5152:14249771,35580358 -(1,5152:14249771,35580358:0,414482,115847 -r1,5152:14608037,35580358:358266,530329,115847 -k1,5152:14249771,35580358:-358266 -) -(1,5152:14249771,35580358:358266,414482,115847 -k1,5152:14249771,35580358:3277 -h1,5152:14604760,35580358:0,411205,112570 -) -g1,5152:14807266,35580358 -g1,5152:18617529,35580358 -g1,5152:19483914,35580358 -(1,5152:19483914,35580358:0,452978,115847 -r1,5152:21600739,35580358:2116825,568825,115847 -k1,5152:19483914,35580358:-2116825 -) -(1,5152:19483914,35580358:2116825,452978,115847 -k1,5152:19483914,35580358:3277 -h1,5152:21597462,35580358:0,411205,112570 -) -k1,5153:32583029,35580358:10808620 -g1,5153:32583029,35580358 -) -v1,5157:6630773,36770824:0,393216,0 -(1,5161:6630773,37085921:25952256,708313,196608 -g1,5161:6630773,37085921 -g1,5161:6630773,37085921 -g1,5161:6434165,37085921 -(1,5161:6434165,37085921:0,708313,196608 -r1,5161:32779637,37085921:26345472,904921,196608 -k1,5161:6434165,37085921:-26345472 -) -(1,5161:6434165,37085921:26345472,708313,196608 -[1,5161:6630773,37085921:25952256,511705,0 -(1,5159:6630773,36984734:25952256,410518,101187 -(1,5158:6630773,36984734:0,0,0 -g1,5158:6630773,36984734 -g1,5158:6630773,36984734 -g1,5158:6303093,36984734 -(1,5158:6303093,36984734:0,0,0 -) -g1,5158:6630773,36984734 -) -k1,5159:6630773,36984734:0 -g1,5159:8843794,36984734 -g1,5159:9476086,36984734 -g1,5159:13269835,36984734 -g1,5159:13902127,36984734 -g1,5159:14534419,36984734 -h1,5159:17695876,36984734:0,0,0 -k1,5159:32583029,36984734:14887153 -g1,5159:32583029,36984734 -) -] -) -g1,5161:32583029,37085921 -g1,5161:6630773,37085921 -g1,5161:6630773,37085921 -g1,5161:32583029,37085921 -g1,5161:32583029,37085921 -) -h1,5161:6630773,37282529:0,0,0 -] -(1,5171:32583029,45706769:0,0,0 -g1,5171:32583029,45706769 -) -) -] -(1,5171:6630773,47279633:25952256,0,0 -h1,5171:6630773,47279633:25952256,0,0 -) -] -h1,5171:4262630,4025873:0,0,0 -] -!21882 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,5177:37855564,49800853:1179648,16384,0 +) +) +k1,5177:3078556,49800853:-34777008 +) +] +g1,5177:6630773,4812305 +g1,5177:6630773,4812305 +g1,5177:9228620,4812305 +k1,5177:31786112,4812305:22557492 +) +) +] +[1,5177:6630773,45706769:25952256,40108032,0 +(1,5177:6630773,45706769:25952256,40108032,0 +(1,5177:6630773,45706769:0,0,0 +g1,5177:6630773,45706769 +) +[1,5177:6630773,45706769:25952256,40108032,0 +v1,5126:6630773,6254097:0,393216,0 +(1,5147:6630773,14658417:25952256,8797536,196608 +g1,5147:6630773,14658417 +g1,5147:6630773,14658417 +g1,5147:6434165,14658417 +(1,5147:6434165,14658417:0,8797536,196608 +r1,5147:32779637,14658417:26345472,8994144,196608 +k1,5147:6434165,14658417:-26345472 +) +(1,5147:6434165,14658417:26345472,8797536,196608 +[1,5147:6630773,14658417:25952256,8600928,0 +(1,5128:6630773,6461715:25952256,404226,101187 +(1,5127:6630773,6461715:0,0,0 +g1,5127:6630773,6461715 +g1,5127:6630773,6461715 +g1,5127:6303093,6461715 +(1,5127:6303093,6461715:0,0,0 +) +g1,5127:6630773,6461715 +) +k1,5128:6630773,6461715:0 +h1,5128:10740667,6461715:0,0,0 +k1,5128:32583029,6461715:21842362 +g1,5128:32583029,6461715 +) +(1,5138:6630773,7193429:25952256,404226,101187 +(1,5130:6630773,7193429:0,0,0 +g1,5130:6630773,7193429 +g1,5130:6630773,7193429 +g1,5130:6303093,7193429 +(1,5130:6303093,7193429:0,0,0 +) +g1,5130:6630773,7193429 +) +g1,5138:7579210,7193429 +g1,5138:7895356,7193429 +g1,5138:8211502,7193429 +g1,5138:8527648,7193429 +g1,5138:8843794,7193429 +g1,5138:9159940,7193429 +g1,5138:11056814,7193429 +g1,5138:11372960,7193429 +g1,5138:11689106,7193429 +g1,5138:12005252,7193429 +g1,5138:12321398,7193429 +g1,5138:12637544,7193429 +g1,5138:12953690,7193429 +g1,5138:13269836,7193429 +g1,5138:13585982,7193429 +g1,5138:13902128,7193429 +g1,5138:14218274,7193429 +h1,5138:15482857,7193429:0,0,0 +k1,5138:32583029,7193429:17100172 +g1,5138:32583029,7193429 +) +(1,5138:6630773,7859607:25952256,404226,9436 +h1,5138:6630773,7859607:0,0,0 +g1,5138:7579210,7859607 +g1,5138:7895356,7859607 +g1,5138:9476085,7859607 +g1,5138:9792231,7859607 +g1,5138:10108377,7859607 +g1,5138:10740669,7859607 +g1,5138:12005252,7859607 +g1,5138:12321398,7859607 +g1,5138:12637544,7859607 +g1,5138:14218273,7859607 +g1,5138:14534419,7859607 +g1,5138:14850565,7859607 +g1,5138:15482857,7859607 +g1,5138:15799003,7859607 +h1,5138:17063586,7859607:0,0,0 +k1,5138:32583029,7859607:15519443 +g1,5138:32583029,7859607 +) +(1,5138:6630773,8525785:25952256,388497,82312 +h1,5138:6630773,8525785:0,0,0 +g1,5138:7579210,8525785 +g1,5138:7895356,8525785 +g1,5138:9159939,8525785 +g1,5138:12005250,8525785 +g1,5138:12321396,8525785 +g1,5138:12637542,8525785 +g1,5138:13902125,8525785 +g1,5138:15482854,8525785 +h1,5138:17063582,8525785:0,0,0 +k1,5138:32583029,8525785:15519447 +g1,5138:32583029,8525785 +) +(1,5138:6630773,9191963:25952256,404226,9436 +h1,5138:6630773,9191963:0,0,0 +g1,5138:7579210,9191963 +g1,5138:7895356,9191963 +g1,5138:10108376,9191963 +g1,5138:12005250,9191963 +g1,5138:12321396,9191963 +g1,5138:12637542,9191963 +g1,5138:14850562,9191963 +g1,5138:15482854,9191963 +h1,5138:17063582,9191963:0,0,0 +k1,5138:32583029,9191963:15519447 +g1,5138:32583029,9191963 +) +(1,5138:6630773,9858141:25952256,388497,9436 +h1,5138:6630773,9858141:0,0,0 +g1,5138:7579210,9858141 +g1,5138:7895356,9858141 +g1,5138:9476085,9858141 +g1,5138:9792231,9858141 +g1,5138:10108377,9858141 +g1,5138:12005251,9858141 +g1,5138:12321397,9858141 +g1,5138:12637543,9858141 +g1,5138:14218272,9858141 +g1,5138:14534418,9858141 +g1,5138:14850564,9858141 +g1,5138:15482856,9858141 +h1,5138:17063584,9858141:0,0,0 +k1,5138:32583029,9858141:15519445 +g1,5138:32583029,9858141 +) +(1,5138:6630773,10524319:25952256,404226,82312 +h1,5138:6630773,10524319:0,0,0 +g1,5138:7579210,10524319 +g1,5138:7895356,10524319 +g1,5138:9159939,10524319 +g1,5138:12005250,10524319 +g1,5138:12321396,10524319 +g1,5138:12637542,10524319 +g1,5138:13902125,10524319 +g1,5138:15482854,10524319 +h1,5138:17063582,10524319:0,0,0 +k1,5138:32583029,10524319:15519447 +g1,5138:32583029,10524319 +) +(1,5138:6630773,11190497:25952256,388497,9436 +h1,5138:6630773,11190497:0,0,0 +g1,5138:7579210,11190497 +g1,5138:7895356,11190497 +g1,5138:9476085,11190497 +g1,5138:9792231,11190497 +g1,5138:10108377,11190497 +g1,5138:12005251,11190497 +g1,5138:12321397,11190497 +g1,5138:12637543,11190497 +g1,5138:14218272,11190497 +g1,5138:14534418,11190497 +g1,5138:14850564,11190497 +h1,5138:17063584,11190497:0,0,0 +k1,5138:32583029,11190497:15519445 +g1,5138:32583029,11190497 +) +(1,5140:6630773,12512035:25952256,404226,107478 +(1,5139:6630773,12512035:0,0,0 +g1,5139:6630773,12512035 +g1,5139:6630773,12512035 +g1,5139:6303093,12512035 +(1,5139:6303093,12512035:0,0,0 +) +g1,5139:6630773,12512035 +) +k1,5140:6630773,12512035:0 +g1,5140:10740667,12512035 +h1,5140:12637541,12512035:0,0,0 +k1,5140:32583029,12512035:19945488 +g1,5140:32583029,12512035 +) +(1,5146:6630773,13243749:25952256,404226,101187 +(1,5142:6630773,13243749:0,0,0 +g1,5142:6630773,13243749 +g1,5142:6630773,13243749 +g1,5142:6303093,13243749 +(1,5142:6303093,13243749:0,0,0 +) +g1,5142:6630773,13243749 +) +g1,5146:7579210,13243749 +g1,5146:7895356,13243749 +g1,5146:8211502,13243749 +g1,5146:8527648,13243749 +g1,5146:8843794,13243749 +g1,5146:9159940,13243749 +g1,5146:11056814,13243749 +h1,5146:12321397,13243749:0,0,0 +k1,5146:32583029,13243749:20261632 +g1,5146:32583029,13243749 +) +(1,5146:6630773,13909927:25952256,404226,82312 +h1,5146:6630773,13909927:0,0,0 +g1,5146:7579210,13909927 +g1,5146:9159938,13909927 +g1,5146:9476084,13909927 +g1,5146:9792230,13909927 +g1,5146:10108376,13909927 +g1,5146:10424522,13909927 +g1,5146:11056814,13909927 +g1,5146:11372960,13909927 +g1,5146:11689106,13909927 +g1,5146:12005252,13909927 +h1,5146:12321398,13909927:0,0,0 +k1,5146:32583030,13909927:20261632 +g1,5146:32583030,13909927 +) +(1,5146:6630773,14576105:25952256,404226,82312 +h1,5146:6630773,14576105:0,0,0 +g1,5146:7579210,14576105 +g1,5146:9159938,14576105 +g1,5146:9476084,14576105 +g1,5146:9792230,14576105 +g1,5146:10108376,14576105 +g1,5146:11056813,14576105 +g1,5146:11372959,14576105 +h1,5146:12321396,14576105:0,0,0 +k1,5146:32583028,14576105:20261632 +g1,5146:32583028,14576105 +) +] +) +g1,5147:32583029,14658417 +g1,5147:6630773,14658417 +g1,5147:6630773,14658417 +g1,5147:32583029,14658417 +g1,5147:32583029,14658417 +) +h1,5147:6630773,14855025:0,0,0 +v1,5151:6630773,16745089:0,393216,0 +(1,5152:6630773,21744328:25952256,5392455,616038 +g1,5152:6630773,21744328 +(1,5152:6630773,21744328:25952256,5392455,616038 +(1,5152:6630773,22360366:25952256,6008493,0 +[1,5152:6630773,22360366:25952256,6008493,0 +(1,5152:6630773,22334152:25952256,5956065,0 +r1,5152:6656987,22334152:26214,5956065,0 +[1,5152:6656987,22334152:25899828,5956065,0 +(1,5152:6656987,21744328:25899828,4776417,0 +[1,5152:7246811,21744328:24720180,4776417,0 +(1,5152:7246811,18251893:24720180,1283982,196608 +(1,5151:7246811,18251893:0,1283982,196608 +r1,5152:9812056,18251893:2565245,1480590,196608 +k1,5151:7246811,18251893:-2565245 +) +(1,5151:7246811,18251893:2565245,1283982,196608 +) +k1,5151:9966901,18251893:154845 +k1,5151:12260186,18251893:154845 +k1,5151:13434116,18251893:154845 +k1,5151:16579369,18251893:154845 +k1,5151:17401370,18251893:154845 +(1,5151:17401370,18251893:0,452978,115847 +r1,5152:20925042,18251893:3523672,568825,115847 +k1,5151:17401370,18251893:-3523672 +) +(1,5151:17401370,18251893:3523672,452978,115847 +k1,5151:17401370,18251893:3277 +h1,5151:20921765,18251893:0,411205,112570 +) +k1,5151:21079888,18251893:154846 +k1,5151:22628684,18251893:154845 +k1,5151:25479025,18251893:154845 +(1,5151:25479025,18251893:0,452978,115847 +r1,5152:28650985,18251893:3171960,568825,115847 +k1,5151:25479025,18251893:-3171960 +) +(1,5151:25479025,18251893:3171960,452978,115847 +k1,5151:25479025,18251893:3277 +h1,5151:28647708,18251893:0,411205,112570 +) +k1,5151:28979500,18251893:154845 +k1,5151:30206514,18251893:154845 +k1,5151:30977397,18251893:154845 +k1,5152:31966991,18251893:0 +) +(1,5152:7246811,19093381:24720180,513147,134348 +k1,5151:9506055,19093381:196171 +k1,5151:11317033,19093381:196171 +k1,5151:13009391,19093381:196171 +k1,5151:14599513,19093381:196171 +k1,5151:15566387,19093381:196171 +k1,5151:17554968,19093381:196171 +k1,5151:20446635,19093381:196171 +k1,5151:21294234,19093381:196171 +k1,5151:23305097,19093381:196171 +k1,5151:24520353,19093381:196171 +k1,5151:27202305,19093381:196171 +k1,5151:28057768,19093381:196171 +k1,5151:31966991,19093381:0 +) +(1,5152:7246811,19934869:24720180,505283,134348 +k1,5151:9430268,19934869:172812 +k1,5151:10219117,19934869:172811 +k1,5151:11843551,19934869:172812 +k1,5151:14572921,19934869:172811 +k1,5151:16297626,19934869:172812 +k1,5151:18205830,19934869:172811 +(1,5151:18205830,19934869:0,452978,115847 +r1,5152:19970943,19934869:1765113,568825,115847 +k1,5151:18205830,19934869:-1765113 +) +(1,5151:18205830,19934869:1765113,452978,115847 +k1,5151:18205830,19934869:3277 +h1,5151:19967666,19934869:0,411205,112570 +) +k1,5151:20143755,19934869:172812 +k1,5151:21125936,19934869:172811 +k1,5151:21654608,19934869:172812 +(1,5151:21654608,19934869:0,452978,122846 +r1,5152:24123145,19934869:2468537,575824,122846 +k1,5151:21654608,19934869:-2468537 +) +(1,5151:21654608,19934869:2468537,452978,122846 +k1,5151:21654608,19934869:3277 +h1,5151:24119868,19934869:0,411205,112570 +) +k1,5151:24295956,19934869:172811 +k1,5151:26446645,19934869:172812 +k1,5151:28960402,19934869:172811 +k1,5151:30152299,19934869:172812 +k1,5151:31966991,19934869:0 +) +(1,5152:7246811,20776357:24720180,513147,126483 +k1,5151:8148619,20776357:234652 +(1,5151:8148619,20776357:0,414482,115847 +r1,5152:9562020,20776357:1413401,530329,115847 +k1,5151:8148619,20776357:-1413401 +) +(1,5151:8148619,20776357:1413401,414482,115847 +k1,5151:8148619,20776357:3277 +h1,5151:9558743,20776357:0,411205,112570 +) +k1,5151:9796672,20776357:234652 +k1,5151:12041969,20776357:234652 +k1,5151:12962783,20776357:234652 +(1,5151:12962783,20776357:0,414482,115847 +r1,5152:14376184,20776357:1413401,530329,115847 +k1,5151:12962783,20776357:-1413401 +) +(1,5151:12962783,20776357:1413401,414482,115847 +k1,5151:12962783,20776357:3277 +h1,5151:14372907,20776357:0,411205,112570 +) +k1,5151:14784506,20776357:234652 +k1,5151:16210603,20776357:234652 +(1,5151:16210603,20776357:0,414482,115847 +r1,5152:17975716,20776357:1765113,530329,115847 +k1,5151:16210603,20776357:-1765113 +) +(1,5151:16210603,20776357:1765113,414482,115847 +k1,5151:16210603,20776357:3277 +h1,5151:17972439,20776357:0,411205,112570 +) +k1,5151:18210368,20776357:234652 +k1,5151:19436580,20776357:234652 +k1,5151:23967772,20776357:234652 +k1,5151:27363225,20776357:234652 +k1,5151:28865343,20776357:234652 +(1,5151:28865343,20776357:0,452978,115847 +r1,5152:31333880,20776357:2468537,568825,115847 +k1,5151:28865343,20776357:-2468537 +) +(1,5151:28865343,20776357:2468537,452978,115847 +k1,5151:28865343,20776357:3277 +h1,5151:31330603,20776357:0,411205,112570 +) +k1,5151:31568532,20776357:234652 +k1,5151:31966991,20776357:0 +) +(1,5152:7246811,21617845:24720180,505283,126483 +g1,5151:8637485,21617845 +g1,5151:9408843,21617845 +g1,5151:13578243,21617845 +g1,5151:15475510,21617845 +(1,5151:15475510,21617845:0,452978,122846 +r1,5152:17944047,21617845:2468537,575824,122846 +k1,5151:15475510,21617845:-2468537 +) +(1,5151:15475510,21617845:2468537,452978,122846 +k1,5151:15475510,21617845:3277 +h1,5151:17940770,21617845:0,411205,112570 +) +g1,5151:18143276,21617845 +g1,5151:20353150,21617845 +g1,5151:21543939,21617845 +g1,5151:23256394,21617845 +g1,5151:24071661,21617845 +g1,5151:27547035,21617845 +k1,5152:31966991,21617845:475999 +g1,5152:31966991,21617845 +) +] +) +] +r1,5152:32583029,22334152:26214,5956065,0 +) +] +) +) +g1,5152:32583029,21744328 +) +h1,5152:6630773,22360366:0,0,0 +(1,5154:6630773,25167934:25952256,32768,229376 +(1,5154:6630773,25167934:0,32768,229376 +(1,5154:6630773,25167934:5505024,32768,229376 +r1,5154:12135797,25167934:5505024,262144,229376 +) +k1,5154:6630773,25167934:-5505024 +) +(1,5154:6630773,25167934:25952256,32768,0 +r1,5154:32583029,25167934:25952256,32768,0 +) +) +(1,5154:6630773,26772262:25952256,606339,161218 +(1,5154:6630773,26772262:2464678,582746,14155 +g1,5154:6630773,26772262 +g1,5154:9095451,26772262 +) +k1,5154:32583029,26772262:20411056 +g1,5154:32583029,26772262 +) +(1,5157:6630773,28006966:25952256,513147,134348 +k1,5156:8173125,28006966:345665 +k1,5156:10580406,28006966:345518 +k1,5156:13232938,28006966:345665 +k1,5156:16032927,28006966:345666 +(1,5156:16032927,28006966:0,452978,115847 +r1,5156:18149752,28006966:2116825,568825,115847 +k1,5156:16032927,28006966:-2116825 +) +(1,5156:16032927,28006966:2116825,452978,115847 +k1,5156:16032927,28006966:3277 +h1,5156:18146475,28006966:0,411205,112570 +) +k1,5156:18495417,28006966:345665 +k1,5156:19945364,28006966:345665 +k1,5156:21038795,28006966:345665 +k1,5156:22897686,28006966:345665 +k1,5156:23894779,28006966:345665 +k1,5156:25517742,28006966:345666 +k1,5156:28625750,28006966:345665 +k1,5156:30534449,28006966:345665 +k1,5156:31350007,28006966:345665 +k1,5156:32227169,28006966:345665 +k1,5156:32583029,28006966:0 +) +(1,5157:6630773,28848454:25952256,513147,134348 +k1,5156:9251230,28848454:313590 +k1,5156:12019142,28848454:313589 +k1,5156:13617238,28848454:313590 +k1,5156:15031832,28848454:313589 +k1,5156:20084330,28848454:313590 +k1,5156:22909915,28848454:313590 +k1,5156:24171155,28848454:313589 +k1,5156:27247088,28848454:313590 +k1,5156:29320319,28848454:313589 +k1,5156:30293201,28848454:313590 +k1,5156:32583029,28848454:0 +) +(1,5157:6630773,29689942:25952256,513147,134348 +k1,5156:8061330,29689942:198480 +k1,5156:10538498,29689942:198481 +h1,5156:11509086,29689942:0,0,0 +k1,5156:11707566,29689942:198480 +k1,5156:12715416,29689942:198480 +k1,5156:14412050,29689942:198481 +h1,5156:15607427,29689942:0,0,0 +k1,5156:15805907,29689942:198480 +k1,5156:16952038,29689942:198480 +k1,5156:17506379,29689942:198481 +k1,5156:19206944,29689942:198480 +k1,5156:23397878,29689942:198481 +k1,5156:24247786,29689942:198480 +k1,5156:26909764,29689942:198480 +k1,5156:29341057,29689942:198481 +k1,5156:30730982,29689942:198480 +k1,5157:32583029,29689942:0 +) +(1,5157:6630773,30531430:25952256,513147,126483 +k1,5156:8421357,30531430:264250 +k1,5156:9313443,30531430:264251 +k1,5156:10780934,30531430:264250 +k1,5156:13323871,30531430:264250 +k1,5156:14456473,30531430:264250 +k1,5156:16096325,30531430:264251 +k1,5156:17714549,30531430:264250 +k1,5156:20011726,30531430:264250 +k1,5156:24309063,30531430:264251 +k1,5156:25592398,30531430:264250 +k1,5156:26949133,30531430:264250 +k1,5156:27872675,30531430:264250 +k1,5156:29156011,30531430:264251 +k1,5156:31021961,30531430:264250 +k1,5157:32583029,30531430:0 +) +(1,5157:6630773,31372918:25952256,513147,134348 +k1,5156:8274059,31372918:213946 +k1,5156:10549754,31372918:213932 +k1,5156:13482790,31372918:213947 +k1,5156:16896204,31372918:213946 +k1,5156:18667941,31372918:213946 +k1,5156:19873448,31372918:213947 +k1,5156:21366001,31372918:213946 +k1,5156:24669971,31372918:213947 +k1,5156:25499955,31372918:213946 +k1,5156:26732987,31372918:213947 +k1,5156:28528972,31372918:213946 +(1,5156:28528972,31372918:4054057,505283,11795 +) +k1,5156:32583029,31372918:0 +) +(1,5157:6630773,32214406:25952256,505283,126483 +(1,5156:6837867,32214406:4054057,505283,11795 +) +k1,5156:11503492,32214406:230804 +k1,5156:12687658,32214406:230617 +k1,5156:14050736,32214406:230616 +k1,5156:15347623,32214406:230616 +k1,5156:18247520,32214406:230616 +k1,5156:19497222,32214406:230617 +k1,5156:21844651,32214406:230616 +k1,5156:24137030,32214406:230616 +k1,5156:25177016,32214406:230616 +k1,5156:26266810,32214406:230617 +k1,5156:28716475,32214406:230616 +k1,5156:31931601,32214406:230616 +k1,5156:32583029,32214406:0 +) +(1,5157:6630773,33055894:25952256,513147,134348 +k1,5156:9434254,33055894:279034 +(1,5156:9641348,33055894:3760456,505283,11795 +) +k1,5156:14062081,33055894:279513 +k1,5156:16680095,33055894:279034 +k1,5156:17827481,33055894:279034 +k1,5156:20775796,33055894:279034 +k1,5156:21670869,33055894:279035 +k1,5156:23737070,33055894:279034 +k1,5156:25035189,33055894:279034 +k1,5156:26406708,33055894:279034 +k1,5156:27345035,33055894:279035 +k1,5156:28643154,33055894:279034 +k1,5156:31966991,33055894:279034 +k1,5156:32583029,33055894:0 +) +(1,5157:6630773,33897382:25952256,505283,134348 +g1,5156:9562854,33897382 +g1,5156:10953528,33897382 +g1,5156:13677204,33897382 +g1,5156:15270384,33897382 +g1,5156:18049765,33897382 +g1,5156:21077527,33897382 +g1,5156:21892794,33897382 +g1,5156:24509646,33897382 +h1,5156:24908105,33897382:0,0,0 +g1,5156:25107334,33897382 +g1,5156:27785135,33897382 +g1,5156:28793734,33897382 +g1,5156:30491116,33897382 +h1,5156:31686493,33897382:0,0,0 +k1,5157:32583029,33897382:722866 +g1,5157:32583029,33897382 +) +(1,5159:6630773,34738870:25952256,513147,126483 +h1,5158:6630773,34738870:983040,0,0 +k1,5158:8256580,34738870:172874 +k1,5158:8960952,34738870:172875 +k1,5158:11763786,34738870:172874 +k1,5158:12588089,34738870:172875 +k1,5158:14198168,34738870:172874 +k1,5158:15543482,34738870:172875 +k1,5158:18557997,34738870:172874 +k1,5158:20335849,34738870:172875 +k1,5158:23221914,34738870:172874 +k1,5158:24962410,34738870:172875 +k1,5158:25491144,34738870:172874 +k1,5158:27053382,34738870:172875 +k1,5158:29309646,34738870:172874 +k1,5158:31896867,34738870:172875 +k1,5158:32583029,34738870:0 +) +(1,5159:6630773,35580358:25952256,513147,134348 +g1,5158:10232631,35580358 +g1,5158:11083288,35580358 +g1,5158:12301602,35580358 +(1,5158:12301602,35580358:0,414482,115847 +r1,5158:12659868,35580358:358266,530329,115847 +k1,5158:12301602,35580358:-358266 +) +(1,5158:12301602,35580358:358266,414482,115847 +k1,5158:12301602,35580358:3277 +h1,5158:12656591,35580358:0,411205,112570 +) +g1,5158:12859097,35580358 +g1,5158:14249771,35580358 +(1,5158:14249771,35580358:0,414482,115847 +r1,5158:14608037,35580358:358266,530329,115847 +k1,5158:14249771,35580358:-358266 +) +(1,5158:14249771,35580358:358266,414482,115847 +k1,5158:14249771,35580358:3277 +h1,5158:14604760,35580358:0,411205,112570 +) +g1,5158:14807266,35580358 +g1,5158:18617529,35580358 +g1,5158:19483914,35580358 +(1,5158:19483914,35580358:0,452978,115847 +r1,5158:21600739,35580358:2116825,568825,115847 +k1,5158:19483914,35580358:-2116825 +) +(1,5158:19483914,35580358:2116825,452978,115847 +k1,5158:19483914,35580358:3277 +h1,5158:21597462,35580358:0,411205,112570 +) +k1,5159:32583029,35580358:10808620 +g1,5159:32583029,35580358 +) +v1,5163:6630773,36770824:0,393216,0 +(1,5167:6630773,37085921:25952256,708313,196608 +g1,5167:6630773,37085921 +g1,5167:6630773,37085921 +g1,5167:6434165,37085921 +(1,5167:6434165,37085921:0,708313,196608 +r1,5167:32779637,37085921:26345472,904921,196608 +k1,5167:6434165,37085921:-26345472 +) +(1,5167:6434165,37085921:26345472,708313,196608 +[1,5167:6630773,37085921:25952256,511705,0 +(1,5165:6630773,36984734:25952256,410518,101187 +(1,5164:6630773,36984734:0,0,0 +g1,5164:6630773,36984734 +g1,5164:6630773,36984734 +g1,5164:6303093,36984734 +(1,5164:6303093,36984734:0,0,0 +) +g1,5164:6630773,36984734 +) +k1,5165:6630773,36984734:0 +g1,5165:8843794,36984734 +g1,5165:9476086,36984734 +g1,5165:13269835,36984734 +g1,5165:13902127,36984734 +g1,5165:14534419,36984734 +h1,5165:17695876,36984734:0,0,0 +k1,5165:32583029,36984734:14887153 +g1,5165:32583029,36984734 +) +] +) +g1,5167:32583029,37085921 +g1,5167:6630773,37085921 +g1,5167:6630773,37085921 +g1,5167:32583029,37085921 +g1,5167:32583029,37085921 +) +h1,5167:6630773,37282529:0,0,0 +] +(1,5177:32583029,45706769:0,0,0 +g1,5177:32583029,45706769 +) +) +] +(1,5177:6630773,47279633:25952256,0,0 +h1,5177:6630773,47279633:25952256,0,0 +) +] +h1,5177:4262630,4025873:0,0,0 +] +!21914 }94 -Input:669:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:670:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:671:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:672:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:673:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:674:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:675:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:676:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:677:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:678:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:679:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!946 +Input:665:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:666:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:667:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:668:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:669:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:670:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:671:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:672:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:673:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:674:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:675:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1012 {95 -[1,5191:4262630,47279633:28320399,43253760,0 -(1,5191:4262630,4025873:0,0,0 -[1,5191:-473657,4025873:25952256,0,0 -(1,5191:-473657,-710414:25952256,0,0 -h1,5191:-473657,-710414:0,0,0 -(1,5191:-473657,-710414:0,0,0 -(1,5191:-473657,-710414:0,0,0 -g1,5191:-473657,-710414 -(1,5191:-473657,-710414:65781,0,65781 -g1,5191:-407876,-710414 -[1,5191:-407876,-644633:0,0,0 +[1,5197:4262630,47279633:28320399,43253760,0 +(1,5197:4262630,4025873:0,0,0 +[1,5197:-473657,4025873:25952256,0,0 +(1,5197:-473657,-710414:25952256,0,0 +h1,5197:-473657,-710414:0,0,0 +(1,5197:-473657,-710414:0,0,0 +(1,5197:-473657,-710414:0,0,0 +g1,5197:-473657,-710414 +(1,5197:-473657,-710414:65781,0,65781 +g1,5197:-407876,-710414 +[1,5197:-407876,-644633:0,0,0 ] ) -k1,5191:-473657,-710414:-65781 +k1,5197:-473657,-710414:-65781 ) ) -k1,5191:25478599,-710414:25952256 -g1,5191:25478599,-710414 +k1,5197:25478599,-710414:25952256 +g1,5197:25478599,-710414 ) ] ) -[1,5191:6630773,47279633:25952256,43253760,0 -[1,5191:6630773,4812305:25952256,786432,0 -(1,5191:6630773,4812305:25952256,505283,134348 -(1,5191:6630773,4812305:25952256,505283,134348 -g1,5191:3078558,4812305 -[1,5191:3078558,4812305:0,0,0 -(1,5191:3078558,2439708:0,1703936,0 -k1,5191:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,5191:2537886,2439708:1179648,16384,0 +[1,5197:6630773,47279633:25952256,43253760,0 +[1,5197:6630773,4812305:25952256,786432,0 +(1,5197:6630773,4812305:25952256,505283,134348 +(1,5197:6630773,4812305:25952256,505283,134348 +g1,5197:3078558,4812305 +[1,5197:3078558,4812305:0,0,0 +(1,5197:3078558,2439708:0,1703936,0 +k1,5197:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,5197:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,5191:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,5197:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,5191:3078558,4812305:0,0,0 -(1,5191:3078558,2439708:0,1703936,0 -g1,5191:29030814,2439708 -g1,5191:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,5191:36151628,1915420:16384,1179648,0 +[1,5197:3078558,4812305:0,0,0 +(1,5197:3078558,2439708:0,1703936,0 +g1,5197:29030814,2439708 +g1,5197:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,5197:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,5191:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,5197:37855564,2439708:1179648,16384,0 ) ) -k1,5191:3078556,2439708:-34777008 +k1,5197:3078556,2439708:-34777008 ) ] -[1,5191:3078558,4812305:0,0,0 -(1,5191:3078558,49800853:0,16384,2228224 -k1,5191:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,5191:2537886,49800853:1179648,16384,0 +[1,5197:3078558,4812305:0,0,0 +(1,5197:3078558,49800853:0,16384,2228224 +k1,5197:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,5197:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,5191:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,5197:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,5191:3078558,4812305:0,0,0 -(1,5191:3078558,49800853:0,16384,2228224 -g1,5191:29030814,49800853 -g1,5191:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,5191:36151628,51504789:16384,1179648,0 +[1,5197:3078558,4812305:0,0,0 +(1,5197:3078558,49800853:0,16384,2228224 +g1,5197:29030814,49800853 +g1,5197:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,5197:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,5191:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,5197:37855564,49800853:1179648,16384,0 ) ) -k1,5191:3078556,49800853:-34777008 +k1,5197:3078556,49800853:-34777008 ) ] -g1,5191:6630773,4812305 -k1,5191:19562994,4812305:12135303 -g1,5191:20949735,4812305 -g1,5191:21598541,4812305 -g1,5191:24912696,4812305 -g1,5191:27600327,4812305 -g1,5191:29010006,4812305 -) +g1,5197:6630773,4812305 +k1,5197:19515153,4812305:12087462 +g1,5197:20901894,4812305 +g1,5197:21550700,4812305 +g1,5197:24864855,4812305 +g1,5197:27600327,4812305 +g1,5197:29010006,4812305 +) ) ] -[1,5191:6630773,45706769:25952256,40108032,0 -(1,5191:6630773,45706769:25952256,40108032,0 -(1,5191:6630773,45706769:0,0,0 -g1,5191:6630773,45706769 +[1,5197:6630773,45706769:25952256,40108032,0 +(1,5197:6630773,45706769:25952256,40108032,0 +(1,5197:6630773,45706769:0,0,0 +g1,5197:6630773,45706769 ) -[1,5191:6630773,45706769:25952256,40108032,0 -(1,5164:6630773,19613468:25952256,14014731,0 -k1,5164:12599879,19613468:5969106 -h1,5163:12599879,19613468:0,0,0 -(1,5163:12599879,19613468:14014044,14014731,0 -(1,5163:12599879,19613468:14014766,14014766,0 -(1,5163:12599879,19613468:14014766,14014766,0 -(1,5163:12599879,19613468:0,14014766,0 -(1,5163:12599879,19613468:0,18939904,0 -(1,5163:12599879,19613468:18939904,18939904,0 -) -k1,5163:12599879,19613468:-18939904 -) -) -g1,5163:26614645,19613468 -) -) -) -g1,5164:26613923,19613468 -k1,5164:32583029,19613468:5969106 -) -(1,5172:6630773,20454956:25952256,513147,126483 -h1,5171:6630773,20454956:983040,0,0 -k1,5171:8263415,20454956:179709 -k1,5171:8974621,20454956:179709 -k1,5171:10440146,20454956:179709 -k1,5171:13423485,20454956:179709 -k1,5171:14794639,20454956:179709 -k1,5171:17261555,20454956:179709 -k1,5171:19091460,20454956:179708 -k1,5171:22927423,20454956:179709 -k1,5171:23758560,20454956:179709 -k1,5171:25030754,20454956:179709 -k1,5171:25566323,20454956:179709 -k1,5171:28294072,20454956:179709 -k1,5171:29125209,20454956:179709 -k1,5171:31563944,20454956:179709 -k1,5171:32583029,20454956:0 -) -(1,5172:6630773,21296444:25952256,505283,138281 -k1,5171:9629831,21296444:157417 -k1,5171:10438677,21296444:157418 -k1,5171:11343860,21296444:157417 -k1,5171:13803557,21296444:157417 -k1,5171:14770344,21296444:157417 -k1,5171:15946847,21296444:157418 -$1,5171:15946847,21296444 -$1,5171:16449508,21296444 -k1,5171:16606925,21296444:157417 -k1,5171:17955787,21296444:157417 -$1,5171:17955787,21296444 -$1,5171:18507600,21296444 -k1,5171:18665017,21296444:157417 -k1,5171:20394644,21296444:157418 -k1,5171:22979515,21296444:157417 -k1,5171:26930156,21296444:157417 -k1,5171:27773735,21296444:157417 -k1,5171:28701856,21296444:157418 -k1,5171:31931601,21296444:157417 -k1,5171:32583029,21296444:0 -) -(1,5172:6630773,22137932:25952256,513147,134348 -k1,5171:10056739,22137932:145234 -(1,5171:10056739,22137932:0,452978,115847 -r1,5171:11470140,22137932:1413401,568825,115847 -k1,5171:10056739,22137932:-1413401 -) -(1,5171:10056739,22137932:1413401,452978,115847 -k1,5171:10056739,22137932:3277 -h1,5171:11466863,22137932:0,411205,112570 -) -k1,5171:11615375,22137932:145235 -k1,5171:12779694,22137932:145234 -k1,5171:14662944,22137932:145235 -k1,5171:15467470,22137932:145234 -k1,5171:16631789,22137932:145234 -k1,5171:18166387,22137932:145235 -k1,5171:20187917,22137932:145234 -k1,5171:23695149,22137932:145235 -k1,5171:25537110,22137932:145234 -k1,5171:28697656,22137932:145235 -k1,5171:30039577,22137932:145234 -k1,5172:32583029,22137932:0 -) -(1,5172:6630773,22979420:25952256,505283,138281 -(1,5171:6630773,22979420:0,452978,115847 -r1,5171:10857869,22979420:4227096,568825,115847 -k1,5171:6630773,22979420:-4227096 -) -(1,5171:6630773,22979420:4227096,452978,115847 -g1,5171:8392609,22979420 -g1,5171:9096033,22979420 -h1,5171:10854592,22979420:0,411205,112570 -) -k1,5171:11182335,22979420:150796 -k1,5171:11864628,22979420:150796 -k1,5171:13427725,22979420:150796 -k1,5171:14264684,22979420:150797 -(1,5171:14264684,22979420:0,452978,115847 -r1,5171:15678085,22979420:1413401,568825,115847 -k1,5171:14264684,22979420:-1413401 -) -(1,5171:14264684,22979420:1413401,452978,115847 -k1,5171:14264684,22979420:3277 -h1,5171:15674808,22979420:0,411205,112570 -) -k1,5171:15828881,22979420:150796 -k1,5171:19057903,22979420:150796 -k1,5171:19970227,22979420:150796 -(1,5171:19970227,22979420:0,452978,115847 -r1,5171:21735340,22979420:1765113,568825,115847 -k1,5171:19970227,22979420:-1765113 -) -(1,5171:19970227,22979420:1765113,452978,115847 -k1,5171:19970227,22979420:3277 -h1,5171:21732063,22979420:0,411205,112570 -) -k1,5171:23611044,22979420:150796 -(1,5171:23611044,22979420:0,452978,115847 -r1,5171:25024445,22979420:1413401,568825,115847 -k1,5171:23611044,22979420:-1413401 -) -(1,5171:23611044,22979420:1413401,452978,115847 -k1,5171:23611044,22979420:3277 -h1,5171:25021168,22979420:0,411205,112570 -) -k1,5171:25175241,22979420:150796 -k1,5171:25857535,22979420:150797 -k1,5171:28593726,22979420:150796 -k1,5171:29395950,22979420:150796 -k1,5171:30565831,22979420:150796 -$1,5171:30565831,22979420 -$1,5171:31117644,22979420 -k1,5171:32583029,22979420:0 -) -(1,5172:6630773,23820908:25952256,505283,126483 -g1,5171:7516164,23820908 -g1,5171:8734478,23820908 -g1,5171:12324540,23820908 -g1,5171:15035109,23820908 -g1,5171:16425783,23820908 -(1,5171:16425783,23820908:0,452978,115847 -r1,5171:18190896,23820908:1765113,568825,115847 -k1,5171:16425783,23820908:-1765113 -) -(1,5171:16425783,23820908:1765113,452978,115847 -k1,5171:16425783,23820908:3277 -h1,5171:18187619,23820908:0,411205,112570 -) -g1,5171:18390125,23820908 -g1,5171:19240782,23820908 -g1,5171:20459096,23820908 -$1,5171:20459096,23820908 -$1,5171:20961757,23820908 -g1,5171:22626371,23820908 -g1,5171:23511762,23820908 -g1,5171:24730076,23820908 -g1,5171:28936176,23820908 -k1,5172:32583029,23820908:961843 -g1,5172:32583029,23820908 -) -v1,5174:6630773,24858879:0,393216,0 -(1,5178:6630773,25167684:25952256,702021,196608 -g1,5178:6630773,25167684 -g1,5178:6630773,25167684 -g1,5178:6434165,25167684 -(1,5178:6434165,25167684:0,702021,196608 -r1,5178:32779637,25167684:26345472,898629,196608 -k1,5178:6434165,25167684:-26345472 -) -(1,5178:6434165,25167684:26345472,702021,196608 -[1,5178:6630773,25167684:25952256,505413,0 -(1,5176:6630773,25066497:25952256,404226,101187 -(1,5175:6630773,25066497:0,0,0 -g1,5175:6630773,25066497 -g1,5175:6630773,25066497 -g1,5175:6303093,25066497 -(1,5175:6303093,25066497:0,0,0 -) -g1,5175:6630773,25066497 -) -k1,5176:6630773,25066497:0 -g1,5176:9792230,25066497 -g1,5176:10424522,25066497 -g1,5176:12637542,25066497 -g1,5176:14218271,25066497 -g1,5176:14850563,25066497 -h1,5176:16431291,25066497:0,0,0 -k1,5176:32583029,25066497:16151738 -g1,5176:32583029,25066497 -) -] -) -g1,5178:32583029,25167684 -g1,5178:6630773,25167684 -g1,5178:6630773,25167684 -g1,5178:32583029,25167684 -g1,5178:32583029,25167684 -) -h1,5178:6630773,25364292:0,0,0 -(1,5181:6630773,39816353:25952256,14014731,0 -k1,5181:12599879,39816353:5969106 -h1,5180:12599879,39816353:0,0,0 -(1,5180:12599879,39816353:14014044,14014731,0 -(1,5180:12599879,39816353:14014766,14014766,0 -(1,5180:12599879,39816353:14014766,14014766,0 -(1,5180:12599879,39816353:0,14014766,0 -(1,5180:12599879,39816353:0,18939904,0 -(1,5180:12599879,39816353:18939904,18939904,0 -) -k1,5180:12599879,39816353:-18939904 -) -) -g1,5180:26614645,39816353 -) -) -) -g1,5181:26613923,39816353 -k1,5181:32583029,39816353:5969106 -) -(1,5189:6630773,40657841:25952256,513147,126483 -h1,5188:6630773,40657841:983040,0,0 -k1,5188:9987075,40657841:278076 -k1,5188:10679915,40657841:277997 -k1,5188:12612775,40657841:278076 -k1,5188:14391625,40657841:278076 -k1,5188:17432043,40657841:278075 -k1,5188:22622698,40657841:278076 -k1,5188:23583659,40657841:278076 -k1,5188:26796437,40657841:278076 -k1,5188:27733805,40657841:278076 -k1,5188:30466204,40657841:278076 -(1,5188:30466204,40657841:0,452978,115847 -r1,5188:32583029,40657841:2116825,568825,115847 -k1,5188:30466204,40657841:-2116825 -) -(1,5188:30466204,40657841:2116825,452978,115847 -k1,5188:30466204,40657841:3277 -h1,5188:32579752,40657841:0,411205,112570 -) -k1,5188:32583029,40657841:0 -) -(1,5189:6630773,41499329:25952256,513147,134348 -k1,5188:8135207,41499329:219928 -k1,5188:10798317,41499329:219928 -k1,5188:12870291,41499329:219927 -k1,5188:16452216,41499329:219928 -k1,5188:17481514,41499329:219928 -k1,5188:18720527,41499329:219928 -k1,5188:20495623,41499329:219927 -k1,5188:21374843,41499329:219928 -k1,5188:22613856,41499329:219928 -k1,5188:25675425,41499329:219928 -k1,5188:28100639,41499329:219927 -k1,5188:29006729,41499329:219928 -k1,5188:32583029,41499329:0 -) -(1,5189:6630773,42340817:25952256,505283,134348 -k1,5188:9335091,42340817:276864 -k1,5188:10784394,42340817:276864 -k1,5188:14242377,42340817:276865 -k1,5188:17360882,42340817:276864 -k1,5188:19810920,42340817:276864 -k1,5188:20703822,42340817:276864 -k1,5188:21336547,42340817:276865 -k1,5188:23782653,42340817:276864 -k1,5188:25336814,42340817:276864 -k1,5188:26299840,42340817:276864 -k1,5188:28016531,42340817:276865 -k1,5188:30322390,42340817:276864 -k1,5188:31227089,42340817:276864 -k1,5189:32583029,42340817:0 -) -(1,5189:6630773,43182305:25952256,513147,134348 -k1,5188:8335666,43182305:216570 -k1,5188:10979691,43182305:216571 -k1,5188:12352971,43182305:216570 -k1,5188:14463531,43182305:216570 -k1,5188:15871547,43182305:216571 -k1,5188:17244827,43182305:216570 -k1,5188:20081526,43182305:216570 -k1,5188:22809436,43182305:216570 -k1,5188:23677435,43182305:216571 -(1,5188:23677435,43182305:0,452978,115847 -r1,5188:25794260,43182305:2116825,568825,115847 -k1,5188:23677435,43182305:-2116825 -) -(1,5188:23677435,43182305:2116825,452978,115847 -k1,5188:23677435,43182305:3277 -h1,5188:25790983,43182305:0,411205,112570 -) -k1,5188:26010830,43182305:216570 -k1,5188:28400574,43182305:216570 -k1,5188:29233183,43182305:216571 -k1,5188:29805613,43182305:216570 -k1,5189:32583029,43182305:0 -) -(1,5189:6630773,44023793:25952256,513147,134348 -k1,5188:9693724,44023793:237039 -k1,5188:11208059,44023793:237038 -k1,5188:13183113,44023793:237039 -k1,5188:16634692,44023793:237038 -k1,5188:17700761,44023793:237039 -k1,5188:21070421,44023793:237039 -k1,5188:22510700,44023793:237038 -k1,5188:23616091,44023793:237039 -k1,5188:25383396,44023793:237039 -k1,5188:26271862,44023793:237038 -k1,5188:27601386,44023793:237039 -k1,5188:28194284,44023793:237038 -k1,5188:31193666,44023793:237039 -k1,5188:32583029,44023793:0 -) -(1,5189:6630773,44865281:25952256,513147,126483 -k1,5188:7958273,44865281:219286 -k1,5188:9575442,44865281:219286 -(1,5188:9575442,44865281:0,452978,115847 -r1,5188:12395691,44865281:2820249,568825,115847 -k1,5188:9575442,44865281:-2820249 -) -(1,5188:9575442,44865281:2820249,452978,115847 -k1,5188:9575442,44865281:3277 -h1,5188:12392414,44865281:0,411205,112570 -) -k1,5188:12614977,44865281:219286 -k1,5188:13520425,44865281:219286 -(1,5188:13520425,44865281:0,414482,115847 -r1,5188:14933826,44865281:1413401,530329,115847 -k1,5188:13520425,44865281:-1413401 -) -(1,5188:13520425,44865281:1413401,414482,115847 -k1,5188:13520425,44865281:3277 -h1,5188:14930549,44865281:0,411205,112570 -) -k1,5188:15153112,44865281:219286 -k1,5188:16865308,44865281:219286 -k1,5188:18150865,44865281:219286 -k1,5188:20741899,44865281:219286 -k1,5188:22092992,44865281:219286 -k1,5188:24710240,44865281:219286 -k1,5188:26078372,44865281:219286 -(1,5188:26078372,44865281:0,452978,115847 -r1,5188:31712315,44865281:5633943,568825,115847 -k1,5188:26078372,44865281:-5633943 -) -(1,5188:26078372,44865281:5633943,452978,115847 -k1,5188:26078372,44865281:3277 -h1,5188:31709038,44865281:0,411205,112570 -) -k1,5188:31931601,44865281:219286 -k1,5188:32583029,44865281:0 -) -(1,5189:6630773,45706769:25952256,505283,102891 -g1,5188:8441532,45706769 -g1,5188:10290958,45706769 -g1,5188:12312743,45706769 -g1,5188:13715213,45706769 -g1,5188:15303805,45706769 -g1,5188:16611248,45706769 -g1,5188:18096293,45706769 -g1,5188:21053932,45706769 -g1,5188:21869199,45706769 -k1,5189:32583029,45706769:10125317 -g1,5189:32583029,45706769 -) -] -(1,5191:32583029,45706769:0,0,0 -g1,5191:32583029,45706769 -) -) -] -(1,5191:6630773,47279633:25952256,0,0 -h1,5191:6630773,47279633:25952256,0,0 -) -] -h1,5191:4262630,4025873:0,0,0 -] -!14256 +[1,5197:6630773,45706769:25952256,40108032,0 +(1,5170:6630773,19613468:25952256,14014731,0 +k1,5170:12599879,19613468:5969106 +h1,5169:12599879,19613468:0,0,0 +(1,5169:12599879,19613468:14014044,14014731,0 +(1,5169:12599879,19613468:14014766,14014766,0 +(1,5169:12599879,19613468:14014766,14014766,0 +(1,5169:12599879,19613468:0,14014766,0 +(1,5169:12599879,19613468:0,18939904,0 +(1,5169:12599879,19613468:18939904,18939904,0 +) +k1,5169:12599879,19613468:-18939904 +) +) +g1,5169:26614645,19613468 +) +) +) +g1,5170:26613923,19613468 +k1,5170:32583029,19613468:5969106 +) +(1,5178:6630773,20454956:25952256,513147,126483 +h1,5177:6630773,20454956:983040,0,0 +k1,5177:8263415,20454956:179709 +k1,5177:8974621,20454956:179709 +k1,5177:10440146,20454956:179709 +k1,5177:13423485,20454956:179709 +k1,5177:14794639,20454956:179709 +k1,5177:17261555,20454956:179709 +k1,5177:19091460,20454956:179708 +k1,5177:22927423,20454956:179709 +k1,5177:23758560,20454956:179709 +k1,5177:25030754,20454956:179709 +k1,5177:25566323,20454956:179709 +k1,5177:28294072,20454956:179709 +k1,5177:29125209,20454956:179709 +k1,5177:31563944,20454956:179709 +k1,5177:32583029,20454956:0 +) +(1,5178:6630773,21296444:25952256,505283,138281 +k1,5177:9629831,21296444:157417 +k1,5177:10438677,21296444:157418 +k1,5177:11343860,21296444:157417 +k1,5177:13803557,21296444:157417 +k1,5177:14770344,21296444:157417 +k1,5177:15946847,21296444:157418 +$1,5177:15946847,21296444 +$1,5177:16449508,21296444 +k1,5177:16606925,21296444:157417 +k1,5177:17955787,21296444:157417 +$1,5177:17955787,21296444 +$1,5177:18507600,21296444 +k1,5177:18665017,21296444:157417 +k1,5177:20394644,21296444:157418 +k1,5177:22979515,21296444:157417 +k1,5177:26930156,21296444:157417 +k1,5177:27773735,21296444:157417 +k1,5177:28701856,21296444:157418 +k1,5177:31931601,21296444:157417 +k1,5177:32583029,21296444:0 +) +(1,5178:6630773,22137932:25952256,513147,134348 +k1,5177:10056739,22137932:145234 +(1,5177:10056739,22137932:0,452978,115847 +r1,5177:11470140,22137932:1413401,568825,115847 +k1,5177:10056739,22137932:-1413401 +) +(1,5177:10056739,22137932:1413401,452978,115847 +k1,5177:10056739,22137932:3277 +h1,5177:11466863,22137932:0,411205,112570 +) +k1,5177:11615375,22137932:145235 +k1,5177:12779694,22137932:145234 +k1,5177:14662944,22137932:145235 +k1,5177:15467470,22137932:145234 +k1,5177:16631789,22137932:145234 +k1,5177:18166387,22137932:145235 +k1,5177:20187917,22137932:145234 +k1,5177:23695149,22137932:145235 +k1,5177:25537110,22137932:145234 +k1,5177:28697656,22137932:145235 +k1,5177:30039577,22137932:145234 +k1,5178:32583029,22137932:0 +) +(1,5178:6630773,22979420:25952256,505283,138281 +(1,5177:6630773,22979420:0,452978,115847 +r1,5177:10857869,22979420:4227096,568825,115847 +k1,5177:6630773,22979420:-4227096 +) +(1,5177:6630773,22979420:4227096,452978,115847 +g1,5177:8392609,22979420 +g1,5177:9096033,22979420 +h1,5177:10854592,22979420:0,411205,112570 +) +k1,5177:11182335,22979420:150796 +k1,5177:11864628,22979420:150796 +k1,5177:13427725,22979420:150796 +k1,5177:14264684,22979420:150797 +(1,5177:14264684,22979420:0,452978,115847 +r1,5177:15678085,22979420:1413401,568825,115847 +k1,5177:14264684,22979420:-1413401 +) +(1,5177:14264684,22979420:1413401,452978,115847 +k1,5177:14264684,22979420:3277 +h1,5177:15674808,22979420:0,411205,112570 +) +k1,5177:15828881,22979420:150796 +k1,5177:19057903,22979420:150796 +k1,5177:19970227,22979420:150796 +(1,5177:19970227,22979420:0,452978,115847 +r1,5177:21735340,22979420:1765113,568825,115847 +k1,5177:19970227,22979420:-1765113 +) +(1,5177:19970227,22979420:1765113,452978,115847 +k1,5177:19970227,22979420:3277 +h1,5177:21732063,22979420:0,411205,112570 +) +k1,5177:23611044,22979420:150796 +(1,5177:23611044,22979420:0,452978,115847 +r1,5177:25024445,22979420:1413401,568825,115847 +k1,5177:23611044,22979420:-1413401 +) +(1,5177:23611044,22979420:1413401,452978,115847 +k1,5177:23611044,22979420:3277 +h1,5177:25021168,22979420:0,411205,112570 +) +k1,5177:25175241,22979420:150796 +k1,5177:25857535,22979420:150797 +k1,5177:28593726,22979420:150796 +k1,5177:29395950,22979420:150796 +k1,5177:30565831,22979420:150796 +$1,5177:30565831,22979420 +$1,5177:31117644,22979420 +k1,5177:32583029,22979420:0 +) +(1,5178:6630773,23820908:25952256,505283,126483 +g1,5177:7516164,23820908 +g1,5177:8734478,23820908 +g1,5177:12324540,23820908 +g1,5177:15035109,23820908 +g1,5177:16425783,23820908 +(1,5177:16425783,23820908:0,452978,115847 +r1,5177:18190896,23820908:1765113,568825,115847 +k1,5177:16425783,23820908:-1765113 +) +(1,5177:16425783,23820908:1765113,452978,115847 +k1,5177:16425783,23820908:3277 +h1,5177:18187619,23820908:0,411205,112570 +) +g1,5177:18390125,23820908 +g1,5177:19240782,23820908 +g1,5177:20459096,23820908 +$1,5177:20459096,23820908 +$1,5177:20961757,23820908 +g1,5177:22626371,23820908 +g1,5177:23511762,23820908 +g1,5177:24730076,23820908 +g1,5177:28936176,23820908 +k1,5178:32583029,23820908:961843 +g1,5178:32583029,23820908 +) +v1,5180:6630773,24858879:0,393216,0 +(1,5184:6630773,25167684:25952256,702021,196608 +g1,5184:6630773,25167684 +g1,5184:6630773,25167684 +g1,5184:6434165,25167684 +(1,5184:6434165,25167684:0,702021,196608 +r1,5184:32779637,25167684:26345472,898629,196608 +k1,5184:6434165,25167684:-26345472 +) +(1,5184:6434165,25167684:26345472,702021,196608 +[1,5184:6630773,25167684:25952256,505413,0 +(1,5182:6630773,25066497:25952256,404226,101187 +(1,5181:6630773,25066497:0,0,0 +g1,5181:6630773,25066497 +g1,5181:6630773,25066497 +g1,5181:6303093,25066497 +(1,5181:6303093,25066497:0,0,0 +) +g1,5181:6630773,25066497 +) +k1,5182:6630773,25066497:0 +g1,5182:9792230,25066497 +g1,5182:10424522,25066497 +g1,5182:12637542,25066497 +g1,5182:14218271,25066497 +g1,5182:14850563,25066497 +h1,5182:16431291,25066497:0,0,0 +k1,5182:32583029,25066497:16151738 +g1,5182:32583029,25066497 +) +] +) +g1,5184:32583029,25167684 +g1,5184:6630773,25167684 +g1,5184:6630773,25167684 +g1,5184:32583029,25167684 +g1,5184:32583029,25167684 +) +h1,5184:6630773,25364292:0,0,0 +(1,5187:6630773,39816353:25952256,14014731,0 +k1,5187:12599879,39816353:5969106 +h1,5186:12599879,39816353:0,0,0 +(1,5186:12599879,39816353:14014044,14014731,0 +(1,5186:12599879,39816353:14014766,14014766,0 +(1,5186:12599879,39816353:14014766,14014766,0 +(1,5186:12599879,39816353:0,14014766,0 +(1,5186:12599879,39816353:0,18939904,0 +(1,5186:12599879,39816353:18939904,18939904,0 +) +k1,5186:12599879,39816353:-18939904 +) +) +g1,5186:26614645,39816353 +) +) +) +g1,5187:26613923,39816353 +k1,5187:32583029,39816353:5969106 +) +(1,5195:6630773,40657841:25952256,513147,126483 +h1,5194:6630773,40657841:983040,0,0 +k1,5194:9987075,40657841:278076 +k1,5194:10679915,40657841:277997 +k1,5194:12612775,40657841:278076 +k1,5194:14391625,40657841:278076 +k1,5194:17432043,40657841:278075 +k1,5194:22622698,40657841:278076 +k1,5194:23583659,40657841:278076 +k1,5194:26796437,40657841:278076 +k1,5194:27733805,40657841:278076 +k1,5194:30466204,40657841:278076 +(1,5194:30466204,40657841:0,452978,115847 +r1,5194:32583029,40657841:2116825,568825,115847 +k1,5194:30466204,40657841:-2116825 +) +(1,5194:30466204,40657841:2116825,452978,115847 +k1,5194:30466204,40657841:3277 +h1,5194:32579752,40657841:0,411205,112570 +) +k1,5194:32583029,40657841:0 +) +(1,5195:6630773,41499329:25952256,513147,134348 +k1,5194:8135207,41499329:219928 +k1,5194:10798317,41499329:219928 +k1,5194:12870291,41499329:219927 +k1,5194:16452216,41499329:219928 +k1,5194:17481514,41499329:219928 +k1,5194:18720527,41499329:219928 +k1,5194:20495623,41499329:219927 +k1,5194:21374843,41499329:219928 +k1,5194:22613856,41499329:219928 +k1,5194:25675425,41499329:219928 +k1,5194:28100639,41499329:219927 +k1,5194:29006729,41499329:219928 +k1,5194:32583029,41499329:0 +) +(1,5195:6630773,42340817:25952256,505283,134348 +k1,5194:9335091,42340817:276864 +k1,5194:10784394,42340817:276864 +k1,5194:14242377,42340817:276865 +k1,5194:17360882,42340817:276864 +k1,5194:19810920,42340817:276864 +k1,5194:20703822,42340817:276864 +k1,5194:21336547,42340817:276865 +k1,5194:23782653,42340817:276864 +k1,5194:25336814,42340817:276864 +k1,5194:26299840,42340817:276864 +k1,5194:28016531,42340817:276865 +k1,5194:30322390,42340817:276864 +k1,5194:31227089,42340817:276864 +k1,5195:32583029,42340817:0 +) +(1,5195:6630773,43182305:25952256,513147,134348 +k1,5194:8335666,43182305:216570 +k1,5194:10979691,43182305:216571 +k1,5194:12352971,43182305:216570 +k1,5194:14463531,43182305:216570 +k1,5194:15871547,43182305:216571 +k1,5194:17244827,43182305:216570 +k1,5194:20081526,43182305:216570 +k1,5194:22809436,43182305:216570 +k1,5194:23677435,43182305:216571 +(1,5194:23677435,43182305:0,452978,115847 +r1,5194:25794260,43182305:2116825,568825,115847 +k1,5194:23677435,43182305:-2116825 +) +(1,5194:23677435,43182305:2116825,452978,115847 +k1,5194:23677435,43182305:3277 +h1,5194:25790983,43182305:0,411205,112570 +) +k1,5194:26010830,43182305:216570 +k1,5194:28400574,43182305:216570 +k1,5194:29233183,43182305:216571 +k1,5194:29805613,43182305:216570 +k1,5195:32583029,43182305:0 +) +(1,5195:6630773,44023793:25952256,513147,134348 +k1,5194:9693724,44023793:237039 +k1,5194:11208059,44023793:237038 +k1,5194:13183113,44023793:237039 +k1,5194:16634692,44023793:237038 +k1,5194:17700761,44023793:237039 +k1,5194:21070421,44023793:237039 +k1,5194:22510700,44023793:237038 +k1,5194:23616091,44023793:237039 +k1,5194:25383396,44023793:237039 +k1,5194:26271862,44023793:237038 +k1,5194:27601386,44023793:237039 +k1,5194:28194284,44023793:237038 +k1,5194:31193666,44023793:237039 +k1,5194:32583029,44023793:0 +) +(1,5195:6630773,44865281:25952256,513147,126483 +k1,5194:7958273,44865281:219286 +k1,5194:9575442,44865281:219286 +(1,5194:9575442,44865281:0,452978,115847 +r1,5194:12395691,44865281:2820249,568825,115847 +k1,5194:9575442,44865281:-2820249 +) +(1,5194:9575442,44865281:2820249,452978,115847 +k1,5194:9575442,44865281:3277 +h1,5194:12392414,44865281:0,411205,112570 +) +k1,5194:12614977,44865281:219286 +k1,5194:13520425,44865281:219286 +(1,5194:13520425,44865281:0,414482,115847 +r1,5194:14933826,44865281:1413401,530329,115847 +k1,5194:13520425,44865281:-1413401 +) +(1,5194:13520425,44865281:1413401,414482,115847 +k1,5194:13520425,44865281:3277 +h1,5194:14930549,44865281:0,411205,112570 +) +k1,5194:15153112,44865281:219286 +k1,5194:16865308,44865281:219286 +k1,5194:18150865,44865281:219286 +k1,5194:20741899,44865281:219286 +k1,5194:22092992,44865281:219286 +k1,5194:24710240,44865281:219286 +k1,5194:26078372,44865281:219286 +(1,5194:26078372,44865281:0,452978,115847 +r1,5194:31712315,44865281:5633943,568825,115847 +k1,5194:26078372,44865281:-5633943 +) +(1,5194:26078372,44865281:5633943,452978,115847 +k1,5194:26078372,44865281:3277 +h1,5194:31709038,44865281:0,411205,112570 +) +k1,5194:31931601,44865281:219286 +k1,5194:32583029,44865281:0 +) +(1,5195:6630773,45706769:25952256,505283,102891 +g1,5194:8441532,45706769 +g1,5194:10290958,45706769 +g1,5194:12312743,45706769 +g1,5194:13715213,45706769 +g1,5194:15303805,45706769 +g1,5194:16611248,45706769 +g1,5194:18096293,45706769 +g1,5194:21053932,45706769 +g1,5194:21869199,45706769 +k1,5195:32583029,45706769:10125317 +g1,5195:32583029,45706769 +) +] +(1,5197:32583029,45706769:0,0,0 +g1,5197:32583029,45706769 +) +) +] +(1,5197:6630773,47279633:25952256,0,0 +h1,5197:6630773,47279633:25952256,0,0 +) +] +h1,5197:4262630,4025873:0,0,0 +] +!14257 }95 -Input:680:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:681:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:682:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:683:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:684:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:676:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:677:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:678:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:679:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:680:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {96 -[1,5243:4262630,47279633:28320399,43253760,0 -(1,5243:4262630,4025873:0,0,0 -[1,5243:-473657,4025873:25952256,0,0 -(1,5243:-473657,-710414:25952256,0,0 -h1,5243:-473657,-710414:0,0,0 -(1,5243:-473657,-710414:0,0,0 -(1,5243:-473657,-710414:0,0,0 -g1,5243:-473657,-710414 -(1,5243:-473657,-710414:65781,0,65781 -g1,5243:-407876,-710414 -[1,5243:-407876,-644633:0,0,0 +[1,5249:4262630,47279633:28320399,43253760,0 +(1,5249:4262630,4025873:0,0,0 +[1,5249:-473657,4025873:25952256,0,0 +(1,5249:-473657,-710414:25952256,0,0 +h1,5249:-473657,-710414:0,0,0 +(1,5249:-473657,-710414:0,0,0 +(1,5249:-473657,-710414:0,0,0 +g1,5249:-473657,-710414 +(1,5249:-473657,-710414:65781,0,65781 +g1,5249:-407876,-710414 +[1,5249:-407876,-644633:0,0,0 ] ) -k1,5243:-473657,-710414:-65781 +k1,5249:-473657,-710414:-65781 ) ) -k1,5243:25478599,-710414:25952256 -g1,5243:25478599,-710414 +k1,5249:25478599,-710414:25952256 +g1,5249:25478599,-710414 ) ] ) -[1,5243:6630773,47279633:25952256,43253760,0 -[1,5243:6630773,4812305:25952256,786432,0 -(1,5243:6630773,4812305:25952256,505283,134348 -(1,5243:6630773,4812305:25952256,505283,134348 -g1,5243:3078558,4812305 -[1,5243:3078558,4812305:0,0,0 -(1,5243:3078558,2439708:0,1703936,0 -k1,5243:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,5243:2537886,2439708:1179648,16384,0 +[1,5249:6630773,47279633:25952256,43253760,0 +[1,5249:6630773,4812305:25952256,786432,0 +(1,5249:6630773,4812305:25952256,505283,134348 +(1,5249:6630773,4812305:25952256,505283,134348 +g1,5249:3078558,4812305 +[1,5249:3078558,4812305:0,0,0 +(1,5249:3078558,2439708:0,1703936,0 +k1,5249:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,5249:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,5243:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,5249:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,5243:3078558,4812305:0,0,0 -(1,5243:3078558,2439708:0,1703936,0 -g1,5243:29030814,2439708 -g1,5243:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,5243:36151628,1915420:16384,1179648,0 +[1,5249:3078558,4812305:0,0,0 +(1,5249:3078558,2439708:0,1703936,0 +g1,5249:29030814,2439708 +g1,5249:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,5249:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,5243:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,5249:37855564,2439708:1179648,16384,0 ) ) -k1,5243:3078556,2439708:-34777008 +k1,5249:3078556,2439708:-34777008 ) ] -[1,5243:3078558,4812305:0,0,0 -(1,5243:3078558,49800853:0,16384,2228224 -k1,5243:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,5243:2537886,49800853:1179648,16384,0 +[1,5249:3078558,4812305:0,0,0 +(1,5249:3078558,49800853:0,16384,2228224 +k1,5249:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,5249:2537886,49800853:1179648,16384,0 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,5243:3078558,51504789:16384,1179648,0 +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,5249:3078558,51504789:16384,1179648,0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 ) ] ) ) ) ] -[1,5243:3078558,4812305:0,0,0 -(1,5243:3078558,49800853:0,16384,2228224 -g1,5243:29030814,49800853 -g1,5243:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,5243:36151628,51504789:16384,1179648,0 +[1,5249:3078558,4812305:0,0,0 +(1,5249:3078558,49800853:0,16384,2228224 +g1,5249:29030814,49800853 +g1,5249:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,5249:36151628,51504789:16384,1179648,0 ) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 ) ] ) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,5243:37855564,49800853:1179648,16384,0 +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,5249:37855564,49800853:1179648,16384,0 ) ) -k1,5243:3078556,49800853:-34777008 +k1,5249:3078556,49800853:-34777008 ) ] -g1,5243:6630773,4812305 -g1,5243:6630773,4812305 -g1,5243:9228620,4812305 -k1,5243:31786112,4812305:22557492 +g1,5249:6630773,4812305 +g1,5249:6630773,4812305 +g1,5249:9228620,4812305 +k1,5249:31786112,4812305:22557492 ) ) ] -[1,5243:6630773,45706769:25952256,40108032,0 -(1,5243:6630773,45706769:25952256,40108032,0 -(1,5243:6630773,45706769:0,0,0 -g1,5243:6630773,45706769 +[1,5249:6630773,45706769:25952256,40108032,0 +(1,5249:6630773,45706769:25952256,40108032,0 +(1,5249:6630773,45706769:0,0,0 +g1,5249:6630773,45706769 ) -[1,5243:6630773,45706769:25952256,40108032,0 -v1,5191:6630773,6254097:0,393216,0 -(1,5195:6630773,6575485:25952256,714604,196608 -g1,5195:6630773,6575485 -g1,5195:6630773,6575485 -g1,5195:6434165,6575485 -(1,5195:6434165,6575485:0,714604,196608 -r1,5195:32779637,6575485:26345472,911212,196608 -k1,5195:6434165,6575485:-26345472 +[1,5249:6630773,45706769:25952256,40108032,0 +v1,5197:6630773,6254097:0,393216,0 +(1,5201:6630773,6575485:25952256,714604,196608 +g1,5201:6630773,6575485 +g1,5201:6630773,6575485 +g1,5201:6434165,6575485 +(1,5201:6434165,6575485:0,714604,196608 +r1,5201:32779637,6575485:26345472,911212,196608 +k1,5201:6434165,6575485:-26345472 ) -(1,5195:6434165,6575485:26345472,714604,196608 -[1,5195:6630773,6575485:25952256,517996,0 -(1,5193:6630773,6468007:25952256,410518,107478 -(1,5192:6630773,6468007:0,0,0 -g1,5192:6630773,6468007 -g1,5192:6630773,6468007 -g1,5192:6303093,6468007 -(1,5192:6303093,6468007:0,0,0 -) -g1,5192:6630773,6468007 -) -k1,5193:6630773,6468007:0 -g1,5193:10424522,6468007 -g1,5193:11056814,6468007 -g1,5193:12953689,6468007 -g1,5193:14534418,6468007 -g1,5193:15166710,6468007 -h1,5193:18012021,6468007:0,0,0 -k1,5193:32583029,6468007:14571008 -g1,5193:32583029,6468007 -) -] -) -g1,5195:32583029,6575485 -g1,5195:6630773,6575485 -g1,5195:6630773,6575485 -g1,5195:32583029,6575485 -g1,5195:32583029,6575485 -) -h1,5195:6630773,6772093:0,0,0 -(1,5198:6630773,21376648:25952256,14014731,0 -k1,5198:12599879,21376648:5969106 -h1,5197:12599879,21376648:0,0,0 -(1,5197:12599879,21376648:14014044,14014731,0 -(1,5197:12599879,21376648:14014766,14014766,0 -(1,5197:12599879,21376648:14014766,14014766,0 -(1,5197:12599879,21376648:0,14014766,0 -(1,5197:12599879,21376648:0,18939904,0 -(1,5197:12599879,21376648:18939904,18939904,0 -) -k1,5197:12599879,21376648:-18939904 -) -) -g1,5197:26614645,21376648 -) -) -) -g1,5198:26613923,21376648 -k1,5198:32583029,21376648:5969106 -) -(1,5206:6630773,22218136:25952256,513147,134348 -h1,5205:6630773,22218136:983040,0,0 -k1,5205:10254585,22218136:242810 -(1,5205:10254585,22218136:0,452978,115847 -r1,5205:12371410,22218136:2116825,568825,115847 -k1,5205:10254585,22218136:-2116825 -) -(1,5205:10254585,22218136:2116825,452978,115847 -k1,5205:10254585,22218136:3277 -h1,5205:12368133,22218136:0,411205,112570 -) -k1,5205:12614220,22218136:242810 -k1,5205:14048474,22218136:242809 -k1,5205:16851776,22218136:242810 -k1,5205:19476164,22218136:242810 -k1,5205:20335012,22218136:242810 -k1,5205:21166334,22218136:242809 -k1,5205:23107182,22218136:242810 -k1,5205:24863218,22218136:242810 -k1,5205:26053679,22218136:242810 -k1,5205:28820935,22218136:242809 -k1,5205:31074390,22218136:242810 -k1,5205:32583029,22218136:0 -) -(1,5206:6630773,23059624:25952256,513147,134348 -k1,5205:9786886,23059624:206338 -k1,5205:12151979,23059624:206337 -k1,5205:13009745,23059624:206338 -k1,5205:13571942,23059624:206337 -k1,5205:16787693,23059624:206338 -k1,5205:19050551,23059624:206338 -k1,5205:21382220,23059624:206337 -k1,5205:22216393,23059624:206338 -k1,5205:23011244,23059624:206338 -k1,5205:26167356,23059624:206337 -k1,5205:28711363,23059624:206338 -k1,5205:29909260,23059624:206337 -k1,5205:31469572,23059624:206338 -k1,5206:32583029,23059624:0 -) -(1,5206:6630773,23901112:25952256,505283,126483 -k1,5205:9284385,23901112:249096 -k1,5205:10599753,23901112:249097 -k1,5205:12045536,23901112:249096 -k1,5205:14917383,23901112:249096 -k1,5205:17504149,23901112:249097 -k1,5205:18899470,23901112:249096 -k1,5205:19504427,23901112:249097 -k1,5205:22144932,23901112:249096 -k1,5205:23466197,23901112:249096 -k1,5205:25794751,23901112:249097 -k1,5205:28381516,23901112:249096 -k1,5205:32583029,23901112:0 -) -(1,5206:6630773,24742600:25952256,513147,134348 -k1,5205:8252024,24742600:170284 -k1,5205:9038347,24742600:170285 -k1,5205:11967697,24742600:170284 -k1,5205:13422487,24742600:170284 -k1,5205:16404267,24742600:170285 -k1,5205:17593636,24742600:170284 -k1,5205:20288367,24742600:170284 -k1,5205:23948444,24742600:170285 -k1,5205:25386194,24742600:170284 -k1,5205:25912338,24742600:170284 -k1,5205:28479930,24742600:170285 -k1,5205:31599989,24742600:170284 -k1,5205:32583029,24742600:0 -) -(1,5206:6630773,25584088:25952256,513147,134348 -k1,5205:9179871,25584088:195045 -k1,5205:11631322,25584088:195046 -k1,5205:14588710,25584088:195045 -k1,5205:17733531,25584088:195046 -k1,5205:20266245,25584088:195045 -k1,5205:21452851,25584088:195046 -k1,5205:24431865,25584088:195045 -k1,5205:25242949,25584088:195046 -k1,5205:25852833,25584088:195041 -k1,5205:27239324,25584088:195046 -k1,5205:28814557,25584088:195045 -k1,5205:30752861,25584088:195046 -k1,5205:31563944,25584088:195045 -k1,5205:32583029,25584088:0 -) -(1,5206:6630773,26425576:25952256,513147,134348 -k1,5205:8248606,26425576:188493 -k1,5205:9096391,26425576:188493 -k1,5205:11443640,26425576:188493 -k1,5205:13012321,26425576:188493 -k1,5205:15994615,26425576:188494 -k1,5205:18050229,26425576:188493 -k1,5205:19552064,26425576:188493 -k1,5205:21190213,26425576:188493 -k1,5205:22918147,26425576:188493 -k1,5205:24454049,26425576:188482 -k1,5205:25833987,26425576:188493 -k1,5205:27525211,26425576:188483 -k1,5205:30605152,26425576:188493 -k1,5205:32583029,26425576:0 -) -(1,5206:6630773,27267064:25952256,513147,134348 -k1,5205:9537253,27267064:187391 -k1,5205:11037985,27267064:187390 -k1,5205:12675032,27267064:187391 -k1,5205:14329119,27267064:187391 -k1,5205:15618158,27267064:187379 -k1,5205:16996993,27267064:187390 -k1,5205:18629441,27267064:187379 -k1,5205:19499717,27267064:187391 -k1,5205:21845864,27267064:187391 -k1,5205:22684682,27267064:187390 -k1,5205:23227933,27267064:187391 -k1,5205:26038075,27267064:187391 -k1,5205:28232834,27267064:187391 -k1,5205:29566449,27267064:187390 -k1,5205:30109700,27267064:187391 -k1,5205:32583029,27267064:0 -) -(1,5206:6630773,28108552:25952256,513147,134348 -k1,5205:7449556,28108552:202745 -k1,5205:8671385,28108552:202744 -k1,5205:10935893,28108552:202745 -k1,5205:11797929,28108552:202744 -k1,5205:12356534,28108552:202745 -k1,5205:15809208,28108552:202744 -k1,5205:19370673,28108552:202745 -k1,5205:21911086,28108552:202744 -k1,5205:23105391,28108552:202745 -k1,5205:26092104,28108552:202744 -k1,5205:28853375,28108552:202745 -k1,5206:32583029,28108552:0 -) -(1,5206:6630773,28950040:25952256,505283,134348 -g1,5205:7244845,28950040 -k1,5206:32583029,28950040:22254060 -g1,5206:32583029,28950040 -) -(1,5208:6630773,29791528:25952256,513147,134348 -h1,5207:6630773,29791528:983040,0,0 -k1,5207:10234181,29791528:200123 -k1,5207:12419390,29791528:200123 -k1,5207:13638598,29791528:200123 -k1,5207:16875660,29791528:200124 -k1,5207:17735075,29791528:200123 -k1,5207:18936587,29791528:200122 -k1,5207:20328155,29791528:200123 -k1,5207:21755767,29791528:200123 -k1,5207:24865033,29791528:200123 -k1,5207:26782199,29791528:200123 -k1,5207:29319991,29791528:200123 -k1,5207:32583029,29791528:0 -) -(1,5208:6630773,30633016:25952256,513147,134348 -k1,5207:7206528,30633016:219895 -k1,5207:8409463,30633016:219895 -k1,5207:9315520,30633016:219895 -k1,5207:11867841,30633016:219895 -k1,5207:13478410,30633016:219895 -k1,5207:14901546,30633016:219895 -k1,5207:17280197,30633016:219895 -k1,5207:18875693,30633016:219895 -k1,5207:20793626,30633016:219895 -k1,5207:22032606,30633016:219895 -k1,5207:24259869,30633016:219895 -k1,5207:25011261,30633016:219895 -k1,5207:27436443,30633016:219895 -k1,5207:29439573,30633016:219895 -k1,5207:32227169,30633016:219895 -k1,5207:32583029,30633016:0 -) -(1,5208:6630773,31474504:25952256,513147,126483 -k1,5207:8831353,31474504:193212 -k1,5207:10043651,31474504:193213 -k1,5207:11617707,31474504:193212 -k1,5207:14481511,31474504:193212 -k1,5207:17901717,31474504:193213 -k1,5207:22075586,31474504:193212 -k1,5207:23310821,31474504:193213 -k1,5207:24523118,31474504:193212 -k1,5207:25954299,31474504:193206 -k1,5207:28154880,31474504:193213 -k1,5207:29632598,31474504:193212 -k1,5207:32583029,31474504:0 -) -(1,5208:6630773,32315992:25952256,513147,134348 -k1,5207:8963804,32315992:174275 -k1,5207:9754118,32315992:174276 -k1,5207:10284253,32315992:174275 -k1,5207:15368485,32315992:174275 -k1,5207:17896814,32315992:174276 -k1,5207:19885781,32315992:174275 -k1,5207:21251501,32315992:174275 -k1,5207:23435110,32315992:174275 -k1,5207:24268678,32315992:174276 -k1,5207:25462038,32315992:174275 -k1,5207:27795069,32315992:174275 -k1,5207:28960905,32315992:174276 -k1,5207:31966991,32315992:174275 -k1,5207:32583029,32315992:0 -) -(1,5208:6630773,33157480:25952256,513147,134348 -k1,5207:8902909,33157480:135007 -k1,5207:9525441,33157480:134944 -k1,5207:11926028,33157480:135007 -k1,5207:13044075,33157480:135007 -k1,5207:14917097,33157480:135007 -k1,5207:15583601,33157480:135007 -k1,5207:17231834,33157480:135007 -k1,5207:19409599,33157480:135008 -k1,5207:20412958,33157480:135007 -k1,5207:21985170,33157480:135007 -k1,5207:22476037,33157480:135007 -(1,5207:22476037,33157480:0,452978,115847 -r1,5207:25647997,33157480:3171960,568825,115847 -k1,5207:22476037,33157480:-3171960 -) -(1,5207:22476037,33157480:3171960,452978,115847 -k1,5207:22476037,33157480:3277 -h1,5207:25644720,33157480:0,411205,112570 -) -k1,5207:25783004,33157480:135007 -k1,5207:27783822,33157480:135008 -k1,5207:28604991,33157480:135007 -k1,5207:29510701,33157480:135007 -k1,5207:32583029,33157480:0 -) -(1,5208:6630773,33998968:25952256,459977,126483 -g1,5207:7481430,33998968 -g1,5207:10961391,33998968 -(1,5207:10961391,33998968:0,459977,115847 -r1,5207:12374792,33998968:1413401,575824,115847 -k1,5207:10961391,33998968:-1413401 -) -(1,5207:10961391,33998968:1413401,459977,115847 -k1,5207:10961391,33998968:3277 -h1,5207:12371515,33998968:0,411205,112570 -) -k1,5208:32583030,33998968:20034568 -g1,5208:32583030,33998968 -) -v1,5210:6630773,35189434:0,393216,0 -(1,5221:6630773,38799770:25952256,4003552,196608 -g1,5221:6630773,38799770 -g1,5221:6630773,38799770 -g1,5221:6434165,38799770 -(1,5221:6434165,38799770:0,4003552,196608 -r1,5221:32779637,38799770:26345472,4200160,196608 -k1,5221:6434165,38799770:-26345472 -) -(1,5221:6434165,38799770:26345472,4003552,196608 -[1,5221:6630773,38799770:25952256,3806944,0 -(1,5212:6630773,35403344:25952256,410518,107478 -(1,5211:6630773,35403344:0,0,0 -g1,5211:6630773,35403344 -g1,5211:6630773,35403344 -g1,5211:6303093,35403344 -(1,5211:6303093,35403344:0,0,0 -) -g1,5211:6630773,35403344 -) -k1,5212:6630773,35403344:0 -g1,5212:9476085,35403344 -g1,5212:10108377,35403344 -g1,5212:17063583,35403344 -g1,5212:18960457,35403344 -g1,5212:19592749,35403344 -g1,5212:20541187,35403344 -g1,5212:22754207,35403344 -g1,5212:23386499,35403344 -g1,5212:24334937,35403344 -g1,5212:26864103,35403344 -g1,5212:27496395,35403344 -h1,5212:29077124,35403344:0,0,0 -k1,5212:32583029,35403344:3505905 -g1,5212:32583029,35403344 -) -(1,5213:6630773,36069522:25952256,404226,101187 -h1,5213:6630773,36069522:0,0,0 -g1,5213:9792230,36069522 -g1,5213:10424522,36069522 -g1,5213:12637542,36069522 -g1,5213:14218271,36069522 -g1,5213:14850563,36069522 -h1,5213:16431291,36069522:0,0,0 -k1,5213:32583029,36069522:16151738 -g1,5213:32583029,36069522 -) -(1,5214:6630773,36735700:25952256,410518,107478 -h1,5214:6630773,36735700:0,0,0 -g1,5214:10424522,36735700 -g1,5214:11056814,36735700 -g1,5214:12953689,36735700 -g1,5214:14534418,36735700 -g1,5214:15166710,36735700 -h1,5214:18012021,36735700:0,0,0 -k1,5214:32583029,36735700:14571008 -g1,5214:32583029,36735700 -) -(1,5215:6630773,37401878:25952256,410518,76021 -h1,5215:6630773,37401878:0,0,0 -k1,5215:6630773,37401878:0 -h1,5215:9476084,37401878:0,0,0 -k1,5215:32583028,37401878:23106944 -g1,5215:32583028,37401878 -) -(1,5220:6630773,38133592:25952256,410518,101187 -(1,5217:6630773,38133592:0,0,0 -g1,5217:6630773,38133592 -g1,5217:6630773,38133592 -g1,5217:6303093,38133592 -(1,5217:6303093,38133592:0,0,0 -) -g1,5217:6630773,38133592 -) -g1,5220:7579210,38133592 -h1,5220:8527647,38133592:0,0,0 -k1,5220:32583029,38133592:24055382 -g1,5220:32583029,38133592 -) -(1,5220:6630773,38799770:25952256,388497,0 -h1,5220:6630773,38799770:0,0,0 -g1,5220:7579210,38799770 -g1,5220:7895356,38799770 -g1,5220:8211502,38799770 -h1,5220:8527648,38799770:0,0,0 -k1,5220:32583028,38799770:24055380 -g1,5220:32583028,38799770 -) -] -) -g1,5221:32583029,38799770 -g1,5221:6630773,38799770 -g1,5221:6630773,38799770 -g1,5221:32583029,38799770 -g1,5221:32583029,38799770 -) -h1,5221:6630773,38996378:0,0,0 -(1,5225:6630773,40362154:25952256,513147,126483 -h1,5224:6630773,40362154:983040,0,0 -g1,5224:9836794,40362154 -g1,5224:12373692,40362154 -g1,5224:14583566,40362154 -g1,5224:17368190,40362154 -g1,5224:18758864,40362154 -(1,5224:18758864,40362154:0,452978,115847 -r1,5224:20523977,40362154:1765113,568825,115847 -k1,5224:18758864,40362154:-1765113 -) -(1,5224:18758864,40362154:1765113,452978,115847 -k1,5224:18758864,40362154:3277 -h1,5224:20520700,40362154:0,411205,112570 -) -g1,5224:20723206,40362154 -g1,5224:22113880,40362154 -(1,5224:22113880,40362154:0,452978,122846 -r1,5224:24230705,40362154:2116825,575824,122846 -k1,5224:22113880,40362154:-2116825 -) -(1,5224:22113880,40362154:2116825,452978,122846 -k1,5224:22113880,40362154:3277 -h1,5224:24227428,40362154:0,411205,112570 -) -g1,5224:24429934,40362154 -g1,5224:25620723,40362154 -g1,5224:28651763,40362154 -g1,5224:29467030,40362154 -k1,5225:32583029,40362154:1203003 -g1,5225:32583029,40362154 -) -v1,5227:6630773,41552620:0,393216,0 -(1,5237:6630773,44496778:25952256,3337374,196608 -g1,5237:6630773,44496778 -g1,5237:6630773,44496778 -g1,5237:6434165,44496778 -(1,5237:6434165,44496778:0,3337374,196608 -r1,5237:32779637,44496778:26345472,3533982,196608 -k1,5237:6434165,44496778:-26345472 -) -(1,5237:6434165,44496778:26345472,3337374,196608 -[1,5237:6630773,44496778:25952256,3140766,0 -(1,5229:6630773,41766530:25952256,410518,107478 -(1,5228:6630773,41766530:0,0,0 -g1,5228:6630773,41766530 -g1,5228:6630773,41766530 -g1,5228:6303093,41766530 -(1,5228:6303093,41766530:0,0,0 -) -g1,5228:6630773,41766530 -) -k1,5229:6630773,41766530:0 -g1,5229:9476085,41766530 -g1,5229:10108377,41766530 -g1,5229:17063583,41766530 -g1,5229:18960457,41766530 -g1,5229:19592749,41766530 -g1,5229:21173478,41766530 -g1,5229:23386498,41766530 -g1,5229:24018790,41766530 -h1,5229:25283373,41766530:0,0,0 -k1,5229:32583029,41766530:7299656 -g1,5229:32583029,41766530 -) -(1,5230:6630773,42432708:25952256,410518,107478 -h1,5230:6630773,42432708:0,0,0 -g1,5230:10424522,42432708 -g1,5230:11056814,42432708 -g1,5230:12953689,42432708 -g1,5230:14534418,42432708 -g1,5230:15166710,42432708 -h1,5230:18012021,42432708:0,0,0 -k1,5230:32583029,42432708:14571008 -g1,5230:32583029,42432708 -) -(1,5231:6630773,43098886:25952256,410518,76021 -h1,5231:6630773,43098886:0,0,0 -k1,5231:6630773,43098886:0 -h1,5231:9476084,43098886:0,0,0 -k1,5231:32583028,43098886:23106944 -g1,5231:32583028,43098886 -) -(1,5236:6630773,43830600:25952256,410518,101187 -(1,5233:6630773,43830600:0,0,0 -g1,5233:6630773,43830600 -g1,5233:6630773,43830600 -g1,5233:6303093,43830600 -(1,5233:6303093,43830600:0,0,0 -) -g1,5233:6630773,43830600 -) -g1,5236:7579210,43830600 -h1,5236:8527647,43830600:0,0,0 -k1,5236:32583029,43830600:24055382 -g1,5236:32583029,43830600 -) -(1,5236:6630773,44496778:25952256,388497,0 -h1,5236:6630773,44496778:0,0,0 -g1,5236:7579210,44496778 -g1,5236:7895356,44496778 -g1,5236:8211502,44496778 -h1,5236:8527648,44496778:0,0,0 -k1,5236:32583028,44496778:24055380 -g1,5236:32583028,44496778 -) -] -) -g1,5237:32583029,44496778 -g1,5237:6630773,44496778 -g1,5237:6630773,44496778 -g1,5237:32583029,44496778 -g1,5237:32583029,44496778 -) -h1,5237:6630773,44693386:0,0,0 -] -(1,5243:32583029,45706769:0,0,0 -g1,5243:32583029,45706769 -) -) -] -(1,5243:6630773,47279633:25952256,0,0 -h1,5243:6630773,47279633:25952256,0,0 -) -] -h1,5243:4262630,4025873:0,0,0 -] -!18082 +(1,5201:6434165,6575485:26345472,714604,196608 +[1,5201:6630773,6575485:25952256,517996,0 +(1,5199:6630773,6468007:25952256,410518,107478 +(1,5198:6630773,6468007:0,0,0 +g1,5198:6630773,6468007 +g1,5198:6630773,6468007 +g1,5198:6303093,6468007 +(1,5198:6303093,6468007:0,0,0 +) +g1,5198:6630773,6468007 +) +k1,5199:6630773,6468007:0 +g1,5199:10424522,6468007 +g1,5199:11056814,6468007 +g1,5199:12953689,6468007 +g1,5199:14534418,6468007 +g1,5199:15166710,6468007 +h1,5199:18012021,6468007:0,0,0 +k1,5199:32583029,6468007:14571008 +g1,5199:32583029,6468007 +) +] +) +g1,5201:32583029,6575485 +g1,5201:6630773,6575485 +g1,5201:6630773,6575485 +g1,5201:32583029,6575485 +g1,5201:32583029,6575485 +) +h1,5201:6630773,6772093:0,0,0 +(1,5204:6630773,21376648:25952256,14014731,0 +k1,5204:12599879,21376648:5969106 +h1,5203:12599879,21376648:0,0,0 +(1,5203:12599879,21376648:14014044,14014731,0 +(1,5203:12599879,21376648:14014766,14014766,0 +(1,5203:12599879,21376648:14014766,14014766,0 +(1,5203:12599879,21376648:0,14014766,0 +(1,5203:12599879,21376648:0,18939904,0 +(1,5203:12599879,21376648:18939904,18939904,0 +) +k1,5203:12599879,21376648:-18939904 +) +) +g1,5203:26614645,21376648 +) +) +) +g1,5204:26613923,21376648 +k1,5204:32583029,21376648:5969106 +) +(1,5212:6630773,22218136:25952256,513147,134348 +h1,5211:6630773,22218136:983040,0,0 +k1,5211:10254585,22218136:242810 +(1,5211:10254585,22218136:0,452978,115847 +r1,5211:12371410,22218136:2116825,568825,115847 +k1,5211:10254585,22218136:-2116825 +) +(1,5211:10254585,22218136:2116825,452978,115847 +k1,5211:10254585,22218136:3277 +h1,5211:12368133,22218136:0,411205,112570 +) +k1,5211:12614220,22218136:242810 +k1,5211:14048474,22218136:242809 +k1,5211:16851776,22218136:242810 +k1,5211:19476164,22218136:242810 +k1,5211:20335012,22218136:242810 +k1,5211:21166334,22218136:242809 +k1,5211:23107182,22218136:242810 +k1,5211:24863218,22218136:242810 +k1,5211:26053679,22218136:242810 +k1,5211:28820935,22218136:242809 +k1,5211:31074390,22218136:242810 +k1,5211:32583029,22218136:0 +) +(1,5212:6630773,23059624:25952256,513147,134348 +k1,5211:9786886,23059624:206338 +k1,5211:12151979,23059624:206337 +k1,5211:13009745,23059624:206338 +k1,5211:13571942,23059624:206337 +k1,5211:16787693,23059624:206338 +k1,5211:19050551,23059624:206338 +k1,5211:21382220,23059624:206337 +k1,5211:22216393,23059624:206338 +k1,5211:23011244,23059624:206338 +k1,5211:26167356,23059624:206337 +k1,5211:28711363,23059624:206338 +k1,5211:29909260,23059624:206337 +k1,5211:31469572,23059624:206338 +k1,5212:32583029,23059624:0 +) +(1,5212:6630773,23901112:25952256,505283,126483 +k1,5211:9284385,23901112:249096 +k1,5211:10599753,23901112:249097 +k1,5211:12045536,23901112:249096 +k1,5211:14917383,23901112:249096 +k1,5211:17504149,23901112:249097 +k1,5211:18899470,23901112:249096 +k1,5211:19504427,23901112:249097 +k1,5211:22144932,23901112:249096 +k1,5211:23466197,23901112:249096 +k1,5211:25794751,23901112:249097 +k1,5211:28381516,23901112:249096 +k1,5211:32583029,23901112:0 +) +(1,5212:6630773,24742600:25952256,513147,134348 +k1,5211:8252024,24742600:170284 +k1,5211:9038347,24742600:170285 +k1,5211:11967697,24742600:170284 +k1,5211:13422487,24742600:170284 +k1,5211:16404267,24742600:170285 +k1,5211:17593636,24742600:170284 +k1,5211:20288367,24742600:170284 +k1,5211:23948444,24742600:170285 +k1,5211:25386194,24742600:170284 +k1,5211:25912338,24742600:170284 +k1,5211:28479930,24742600:170285 +k1,5211:31599989,24742600:170284 +k1,5211:32583029,24742600:0 +) +(1,5212:6630773,25584088:25952256,513147,134348 +k1,5211:9179871,25584088:195045 +k1,5211:11631322,25584088:195046 +k1,5211:14588710,25584088:195045 +k1,5211:17733531,25584088:195046 +k1,5211:20266245,25584088:195045 +k1,5211:21452851,25584088:195046 +k1,5211:24431865,25584088:195045 +k1,5211:25242949,25584088:195046 +k1,5211:25852833,25584088:195041 +k1,5211:27239324,25584088:195046 +k1,5211:28814557,25584088:195045 +k1,5211:30752861,25584088:195046 +k1,5211:31563944,25584088:195045 +k1,5211:32583029,25584088:0 +) +(1,5212:6630773,26425576:25952256,513147,134348 +k1,5211:8248606,26425576:188493 +k1,5211:9096391,26425576:188493 +k1,5211:11443640,26425576:188493 +k1,5211:13012321,26425576:188493 +k1,5211:15994615,26425576:188494 +k1,5211:18050229,26425576:188493 +k1,5211:19552064,26425576:188493 +k1,5211:21190213,26425576:188493 +k1,5211:22918147,26425576:188493 +k1,5211:24454049,26425576:188482 +k1,5211:25833987,26425576:188493 +k1,5211:27525211,26425576:188483 +k1,5211:30605152,26425576:188493 +k1,5211:32583029,26425576:0 +) +(1,5212:6630773,27267064:25952256,513147,134348 +k1,5211:9537253,27267064:187391 +k1,5211:11037985,27267064:187390 +k1,5211:12675032,27267064:187391 +k1,5211:14329119,27267064:187391 +k1,5211:15618158,27267064:187379 +k1,5211:16996993,27267064:187390 +k1,5211:18629441,27267064:187379 +k1,5211:19499717,27267064:187391 +k1,5211:21845864,27267064:187391 +k1,5211:22684682,27267064:187390 +k1,5211:23227933,27267064:187391 +k1,5211:26038075,27267064:187391 +k1,5211:28232834,27267064:187391 +k1,5211:29566449,27267064:187390 +k1,5211:30109700,27267064:187391 +k1,5211:32583029,27267064:0 +) +(1,5212:6630773,28108552:25952256,513147,134348 +k1,5211:7449556,28108552:202745 +k1,5211:8671385,28108552:202744 +k1,5211:10935893,28108552:202745 +k1,5211:11797929,28108552:202744 +k1,5211:12356534,28108552:202745 +k1,5211:15809208,28108552:202744 +k1,5211:19370673,28108552:202745 +k1,5211:21911086,28108552:202744 +k1,5211:23105391,28108552:202745 +k1,5211:26092104,28108552:202744 +k1,5211:28853375,28108552:202745 +k1,5212:32583029,28108552:0 +) +(1,5212:6630773,28950040:25952256,505283,134348 +g1,5211:7244845,28950040 +k1,5212:32583029,28950040:22254060 +g1,5212:32583029,28950040 +) +(1,5214:6630773,29791528:25952256,513147,134348 +h1,5213:6630773,29791528:983040,0,0 +k1,5213:10234181,29791528:200123 +k1,5213:12419390,29791528:200123 +k1,5213:13638598,29791528:200123 +k1,5213:16875660,29791528:200124 +k1,5213:17735075,29791528:200123 +k1,5213:18936587,29791528:200122 +k1,5213:20328155,29791528:200123 +k1,5213:21755767,29791528:200123 +k1,5213:24865033,29791528:200123 +k1,5213:26782199,29791528:200123 +k1,5213:29319991,29791528:200123 +k1,5213:32583029,29791528:0 +) +(1,5214:6630773,30633016:25952256,513147,134348 +k1,5213:7206528,30633016:219895 +k1,5213:8409463,30633016:219895 +k1,5213:9315520,30633016:219895 +k1,5213:11867841,30633016:219895 +k1,5213:13478410,30633016:219895 +k1,5213:14901546,30633016:219895 +k1,5213:17280197,30633016:219895 +k1,5213:18875693,30633016:219895 +k1,5213:20793626,30633016:219895 +k1,5213:22032606,30633016:219895 +k1,5213:24259869,30633016:219895 +k1,5213:25011261,30633016:219895 +k1,5213:27436443,30633016:219895 +k1,5213:29439573,30633016:219895 +k1,5213:32227169,30633016:219895 +k1,5213:32583029,30633016:0 +) +(1,5214:6630773,31474504:25952256,513147,126483 +k1,5213:8831353,31474504:193212 +k1,5213:10043651,31474504:193213 +k1,5213:11617707,31474504:193212 +k1,5213:14481511,31474504:193212 +k1,5213:17901717,31474504:193213 +k1,5213:22075586,31474504:193212 +k1,5213:23310821,31474504:193213 +k1,5213:24523118,31474504:193212 +k1,5213:25954299,31474504:193206 +k1,5213:28154880,31474504:193213 +k1,5213:29632598,31474504:193212 +k1,5213:32583029,31474504:0 +) +(1,5214:6630773,32315992:25952256,513147,134348 +k1,5213:8963804,32315992:174275 +k1,5213:9754118,32315992:174276 +k1,5213:10284253,32315992:174275 +k1,5213:15368485,32315992:174275 +k1,5213:17896814,32315992:174276 +k1,5213:19885781,32315992:174275 +k1,5213:21251501,32315992:174275 +k1,5213:23435110,32315992:174275 +k1,5213:24268678,32315992:174276 +k1,5213:25462038,32315992:174275 +k1,5213:27795069,32315992:174275 +k1,5213:28960905,32315992:174276 +k1,5213:31966991,32315992:174275 +k1,5213:32583029,32315992:0 +) +(1,5214:6630773,33157480:25952256,513147,134348 +k1,5213:8902909,33157480:135007 +k1,5213:9525441,33157480:134944 +k1,5213:11926028,33157480:135007 +k1,5213:13044075,33157480:135007 +k1,5213:14917097,33157480:135007 +k1,5213:15583601,33157480:135007 +k1,5213:17231834,33157480:135007 +k1,5213:19409599,33157480:135008 +k1,5213:20412958,33157480:135007 +k1,5213:21985170,33157480:135007 +k1,5213:22476037,33157480:135007 +(1,5213:22476037,33157480:0,452978,115847 +r1,5213:25647997,33157480:3171960,568825,115847 +k1,5213:22476037,33157480:-3171960 +) +(1,5213:22476037,33157480:3171960,452978,115847 +k1,5213:22476037,33157480:3277 +h1,5213:25644720,33157480:0,411205,112570 +) +k1,5213:25783004,33157480:135007 +k1,5213:27783822,33157480:135008 +k1,5213:28604991,33157480:135007 +k1,5213:29510701,33157480:135007 +k1,5213:32583029,33157480:0 +) +(1,5214:6630773,33998968:25952256,459977,126483 +g1,5213:7481430,33998968 +g1,5213:10961391,33998968 +(1,5213:10961391,33998968:0,459977,115847 +r1,5213:12374792,33998968:1413401,575824,115847 +k1,5213:10961391,33998968:-1413401 +) +(1,5213:10961391,33998968:1413401,459977,115847 +k1,5213:10961391,33998968:3277 +h1,5213:12371515,33998968:0,411205,112570 +) +k1,5214:32583030,33998968:20034568 +g1,5214:32583030,33998968 +) +v1,5216:6630773,35189434:0,393216,0 +(1,5227:6630773,38799770:25952256,4003552,196608 +g1,5227:6630773,38799770 +g1,5227:6630773,38799770 +g1,5227:6434165,38799770 +(1,5227:6434165,38799770:0,4003552,196608 +r1,5227:32779637,38799770:26345472,4200160,196608 +k1,5227:6434165,38799770:-26345472 +) +(1,5227:6434165,38799770:26345472,4003552,196608 +[1,5227:6630773,38799770:25952256,3806944,0 +(1,5218:6630773,35403344:25952256,410518,107478 +(1,5217:6630773,35403344:0,0,0 +g1,5217:6630773,35403344 +g1,5217:6630773,35403344 +g1,5217:6303093,35403344 +(1,5217:6303093,35403344:0,0,0 +) +g1,5217:6630773,35403344 +) +k1,5218:6630773,35403344:0 +g1,5218:9476085,35403344 +g1,5218:10108377,35403344 +g1,5218:17063583,35403344 +g1,5218:18960457,35403344 +g1,5218:19592749,35403344 +g1,5218:20541187,35403344 +g1,5218:22754207,35403344 +g1,5218:23386499,35403344 +g1,5218:24334937,35403344 +g1,5218:26864103,35403344 +g1,5218:27496395,35403344 +h1,5218:29077124,35403344:0,0,0 +k1,5218:32583029,35403344:3505905 +g1,5218:32583029,35403344 +) +(1,5219:6630773,36069522:25952256,404226,101187 +h1,5219:6630773,36069522:0,0,0 +g1,5219:9792230,36069522 +g1,5219:10424522,36069522 +g1,5219:12637542,36069522 +g1,5219:14218271,36069522 +g1,5219:14850563,36069522 +h1,5219:16431291,36069522:0,0,0 +k1,5219:32583029,36069522:16151738 +g1,5219:32583029,36069522 +) +(1,5220:6630773,36735700:25952256,410518,107478 +h1,5220:6630773,36735700:0,0,0 +g1,5220:10424522,36735700 +g1,5220:11056814,36735700 +g1,5220:12953689,36735700 +g1,5220:14534418,36735700 +g1,5220:15166710,36735700 +h1,5220:18012021,36735700:0,0,0 +k1,5220:32583029,36735700:14571008 +g1,5220:32583029,36735700 +) +(1,5221:6630773,37401878:25952256,410518,76021 +h1,5221:6630773,37401878:0,0,0 +k1,5221:6630773,37401878:0 +h1,5221:9476084,37401878:0,0,0 +k1,5221:32583028,37401878:23106944 +g1,5221:32583028,37401878 +) +(1,5226:6630773,38133592:25952256,410518,101187 +(1,5223:6630773,38133592:0,0,0 +g1,5223:6630773,38133592 +g1,5223:6630773,38133592 +g1,5223:6303093,38133592 +(1,5223:6303093,38133592:0,0,0 +) +g1,5223:6630773,38133592 +) +g1,5226:7579210,38133592 +h1,5226:10424521,38133592:0,0,0 +k1,5226:32583029,38133592:22158508 +g1,5226:32583029,38133592 +) +(1,5226:6630773,38799770:25952256,388497,0 +h1,5226:6630773,38799770:0,0,0 +g1,5226:7579210,38799770 +g1,5226:7895356,38799770 +g1,5226:8211502,38799770 +g1,5226:8527648,38799770 +g1,5226:8843794,38799770 +g1,5226:9159940,38799770 +g1,5226:9476086,38799770 +g1,5226:9792232,38799770 +g1,5226:10108378,38799770 +h1,5226:10424524,38799770:0,0,0 +k1,5226:32583028,38799770:22158504 +g1,5226:32583028,38799770 +) +] +) +g1,5227:32583029,38799770 +g1,5227:6630773,38799770 +g1,5227:6630773,38799770 +g1,5227:32583029,38799770 +g1,5227:32583029,38799770 +) +h1,5227:6630773,38996378:0,0,0 +(1,5231:6630773,40362154:25952256,513147,126483 +h1,5230:6630773,40362154:983040,0,0 +g1,5230:9836794,40362154 +g1,5230:12373692,40362154 +g1,5230:14583566,40362154 +g1,5230:17368190,40362154 +g1,5230:18758864,40362154 +(1,5230:18758864,40362154:0,452978,115847 +r1,5230:20523977,40362154:1765113,568825,115847 +k1,5230:18758864,40362154:-1765113 +) +(1,5230:18758864,40362154:1765113,452978,115847 +k1,5230:18758864,40362154:3277 +h1,5230:20520700,40362154:0,411205,112570 +) +g1,5230:20723206,40362154 +g1,5230:22113880,40362154 +(1,5230:22113880,40362154:0,452978,122846 +r1,5230:24230705,40362154:2116825,575824,122846 +k1,5230:22113880,40362154:-2116825 +) +(1,5230:22113880,40362154:2116825,452978,122846 +k1,5230:22113880,40362154:3277 +h1,5230:24227428,40362154:0,411205,112570 +) +g1,5230:24429934,40362154 +g1,5230:25620723,40362154 +g1,5230:28651763,40362154 +g1,5230:29467030,40362154 +k1,5231:32583029,40362154:1203003 +g1,5231:32583029,40362154 +) +v1,5233:6630773,41552620:0,393216,0 +(1,5243:6630773,44496778:25952256,3337374,196608 +g1,5243:6630773,44496778 +g1,5243:6630773,44496778 +g1,5243:6434165,44496778 +(1,5243:6434165,44496778:0,3337374,196608 +r1,5243:32779637,44496778:26345472,3533982,196608 +k1,5243:6434165,44496778:-26345472 +) +(1,5243:6434165,44496778:26345472,3337374,196608 +[1,5243:6630773,44496778:25952256,3140766,0 +(1,5235:6630773,41766530:25952256,410518,107478 +(1,5234:6630773,41766530:0,0,0 +g1,5234:6630773,41766530 +g1,5234:6630773,41766530 +g1,5234:6303093,41766530 +(1,5234:6303093,41766530:0,0,0 +) +g1,5234:6630773,41766530 +) +k1,5235:6630773,41766530:0 +g1,5235:9476085,41766530 +g1,5235:10108377,41766530 +g1,5235:17063583,41766530 +g1,5235:18960457,41766530 +g1,5235:19592749,41766530 +g1,5235:21173478,41766530 +g1,5235:23386498,41766530 +g1,5235:24018790,41766530 +h1,5235:25283373,41766530:0,0,0 +k1,5235:32583029,41766530:7299656 +g1,5235:32583029,41766530 +) +(1,5236:6630773,42432708:25952256,410518,107478 +h1,5236:6630773,42432708:0,0,0 +g1,5236:10424522,42432708 +g1,5236:11056814,42432708 +g1,5236:12953689,42432708 +g1,5236:14534418,42432708 +g1,5236:15166710,42432708 +h1,5236:18012021,42432708:0,0,0 +k1,5236:32583029,42432708:14571008 +g1,5236:32583029,42432708 +) +(1,5237:6630773,43098886:25952256,410518,76021 +h1,5237:6630773,43098886:0,0,0 +k1,5237:6630773,43098886:0 +h1,5237:9476084,43098886:0,0,0 +k1,5237:32583028,43098886:23106944 +g1,5237:32583028,43098886 +) +(1,5242:6630773,43830600:25952256,410518,101187 +(1,5239:6630773,43830600:0,0,0 +g1,5239:6630773,43830600 +g1,5239:6630773,43830600 +g1,5239:6303093,43830600 +(1,5239:6303093,43830600:0,0,0 +) +g1,5239:6630773,43830600 +) +g1,5242:7579210,43830600 +h1,5242:10424521,43830600:0,0,0 +k1,5242:32583029,43830600:22158508 +g1,5242:32583029,43830600 +) +(1,5242:6630773,44496778:25952256,388497,0 +h1,5242:6630773,44496778:0,0,0 +g1,5242:7579210,44496778 +g1,5242:7895356,44496778 +g1,5242:8211502,44496778 +g1,5242:8527648,44496778 +g1,5242:8843794,44496778 +g1,5242:9159940,44496778 +g1,5242:9476086,44496778 +g1,5242:9792232,44496778 +g1,5242:10108378,44496778 +h1,5242:10424524,44496778:0,0,0 +k1,5242:32583028,44496778:22158504 +g1,5242:32583028,44496778 +) +] +) +g1,5243:32583029,44496778 +g1,5243:6630773,44496778 +g1,5243:6630773,44496778 +g1,5243:32583029,44496778 +g1,5243:32583029,44496778 +) +h1,5243:6630773,44693386:0,0,0 +] +(1,5249:32583029,45706769:0,0,0 +g1,5249:32583029,45706769 +) +) +] +(1,5249:6630773,47279633:25952256,0,0 +h1,5249:6630773,47279633:25952256,0,0 +) +] +h1,5249:4262630,4025873:0,0,0 +] +!18388 }96 -Input:685:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!96 +Input:681:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!102 {97 -[1,5277:4262630,47279633:28320399,43253760,0 -(1,5277:4262630,4025873:0,0,0 -[1,5277:-473657,4025873:25952256,0,0 -(1,5277:-473657,-710414:25952256,0,0 -h1,5277:-473657,-710414:0,0,0 -(1,5277:-473657,-710414:0,0,0 -(1,5277:-473657,-710414:0,0,0 -g1,5277:-473657,-710414 -(1,5277:-473657,-710414:65781,0,65781 -g1,5277:-407876,-710414 -[1,5277:-407876,-644633:0,0,0 +[1,5283:4262630,47279633:28320399,43253760,0 +(1,5283:4262630,4025873:0,0,0 +[1,5283:-473657,4025873:25952256,0,0 +(1,5283:-473657,-710414:25952256,0,0 +h1,5283:-473657,-710414:0,0,0 +(1,5283:-473657,-710414:0,0,0 +(1,5283:-473657,-710414:0,0,0 +g1,5283:-473657,-710414 +(1,5283:-473657,-710414:65781,0,65781 +g1,5283:-407876,-710414 +[1,5283:-407876,-644633:0,0,0 ] ) -k1,5277:-473657,-710414:-65781 +k1,5283:-473657,-710414:-65781 ) ) -k1,5277:25478599,-710414:25952256 -g1,5277:25478599,-710414 +k1,5283:25478599,-710414:25952256 +g1,5283:25478599,-710414 ) ] ) -[1,5277:6630773,47279633:25952256,43253760,0 -[1,5277:6630773,4812305:25952256,786432,0 -(1,5277:6630773,4812305:25952256,505283,134348 -(1,5277:6630773,4812305:25952256,505283,134348 -g1,5277:3078558,4812305 -[1,5277:3078558,4812305:0,0,0 -(1,5277:3078558,2439708:0,1703936,0 -k1,5277:1358238,2439708:-1720320 -(1,371:1358238,2439708:1720320,1703936,0 -(1,371:1358238,2439708:1179648,16384,0 -r1,5277:2537886,2439708:1179648,16384,0 +[1,5283:6630773,47279633:25952256,43253760,0 +[1,5283:6630773,4812305:25952256,786432,0 +(1,5283:6630773,4812305:25952256,505283,134348 +(1,5283:6630773,4812305:25952256,505283,134348 +g1,5283:3078558,4812305 +[1,5283:3078558,4812305:0,0,0 +(1,5283:3078558,2439708:0,1703936,0 +k1,5283:1358238,2439708:-1720320 +(1,377:1358238,2439708:1720320,1703936,0 +(1,377:1358238,2439708:1179648,16384,0 +r1,5283:2537886,2439708:1179648,16384,0 ) -g1,371:3062174,2439708 -(1,371:3062174,2439708:16384,1703936,0 -[1,371:3062174,2439708:25952256,1703936,0 -(1,371:3062174,1915420:25952256,1179648,0 -(1,371:3062174,1915420:16384,1179648,0 -r1,5277:3078558,1915420:16384,1179648,0 +g1,377:3062174,2439708 +(1,377:3062174,2439708:16384,1703936,0 +[1,377:3062174,2439708:25952256,1703936,0 +(1,377:3062174,1915420:25952256,1179648,0 +(1,377:3062174,1915420:16384,1179648,0 +r1,5283:3078558,1915420:16384,1179648,0 ) -k1,371:29014430,1915420:25935872 -g1,371:29014430,1915420 +k1,377:29014430,1915420:25935872 +g1,377:29014430,1915420 ) ] ) ) ) ] -[1,5277:3078558,4812305:0,0,0 -(1,5277:3078558,2439708:0,1703936,0 -g1,5277:29030814,2439708 -g1,5277:36135244,2439708 -(1,371:36135244,2439708:1720320,1703936,0 -(1,371:36135244,2439708:16384,1703936,0 -[1,371:36135244,2439708:25952256,1703936,0 -(1,371:36135244,1915420:25952256,1179648,0 -(1,371:36135244,1915420:16384,1179648,0 -r1,5277:36151628,1915420:16384,1179648,0 +[1,5283:3078558,4812305:0,0,0 +(1,5283:3078558,2439708:0,1703936,0 +g1,5283:29030814,2439708 +g1,5283:36135244,2439708 +(1,377:36135244,2439708:1720320,1703936,0 +(1,377:36135244,2439708:16384,1703936,0 +[1,377:36135244,2439708:25952256,1703936,0 +(1,377:36135244,1915420:25952256,1179648,0 +(1,377:36135244,1915420:16384,1179648,0 +r1,5283:36151628,1915420:16384,1179648,0 ) -k1,371:62087500,1915420:25935872 -g1,371:62087500,1915420 +k1,377:62087500,1915420:25935872 +g1,377:62087500,1915420 ) ] ) -g1,371:36675916,2439708 -(1,371:36675916,2439708:1179648,16384,0 -r1,5277:37855564,2439708:1179648,16384,0 +g1,377:36675916,2439708 +(1,377:36675916,2439708:1179648,16384,0 +r1,5283:37855564,2439708:1179648,16384,0 ) ) -k1,5277:3078556,2439708:-34777008 +k1,5283:3078556,2439708:-34777008 ) ] -[1,5277:3078558,4812305:0,0,0 -(1,5277:3078558,49800853:0,16384,2228224 -k1,5277:1358238,49800853:-1720320 -(1,371:1358238,49800853:1720320,16384,2228224 -(1,371:1358238,49800853:1179648,16384,0 -r1,5277:2537886,49800853:1179648,16384,0 +[1,5283:3078558,4812305:0,0,0 +(1,5283:3078558,49800853:0,16384,2228224 +k1,5283:1358238,49800853:-1720320 +(1,377:1358238,49800853:1720320,16384,2228224 +(1,377:1358238,49800853:1179648,16384,0 +r1,5283:2537886,49800853:1179648,16384,0 +) +g1,377:3062174,49800853 +(1,377:3062174,52029077:16384,1703936,0 +[1,377:3062174,52029077:25952256,1703936,0 +(1,377:3062174,51504789:25952256,1179648,0 +(1,377:3062174,51504789:16384,1179648,0 +r1,5283:3078558,51504789:16384,1179648,0 +) +k1,377:29014430,51504789:25935872 +g1,377:29014430,51504789 +) +] +) +) +) +] +[1,5283:3078558,4812305:0,0,0 +(1,5283:3078558,49800853:0,16384,2228224 +g1,5283:29030814,49800853 +g1,5283:36135244,49800853 +(1,377:36135244,49800853:1720320,16384,2228224 +(1,377:36135244,52029077:16384,1703936,0 +[1,377:36135244,52029077:25952256,1703936,0 +(1,377:36135244,51504789:25952256,1179648,0 +(1,377:36135244,51504789:16384,1179648,0 +r1,5283:36151628,51504789:16384,1179648,0 +) +k1,377:62087500,51504789:25935872 +g1,377:62087500,51504789 +) +] +) +g1,377:36675916,49800853 +(1,377:36675916,49800853:1179648,16384,0 +r1,5283:37855564,49800853:1179648,16384,0 +) +) +k1,5283:3078556,49800853:-34777008 +) +] +g1,5283:6630773,4812305 +k1,5283:19515153,4812305:12087462 +g1,5283:20901894,4812305 +g1,5283:21550700,4812305 +g1,5283:24864855,4812305 +g1,5283:27600327,4812305 +g1,5283:29010006,4812305 +) +) +] +[1,5283:6630773,45706769:25952256,40108032,0 +(1,5283:6630773,45706769:25952256,40108032,0 +(1,5283:6630773,45706769:0,0,0 +g1,5283:6630773,45706769 +) +[1,5283:6630773,45706769:25952256,40108032,0 +(1,5247:6630773,6254097:25952256,505283,134348 +h1,5246:6630773,6254097:983040,0,0 +k1,5246:9622213,6254097:225165 +k1,5246:10262195,6254097:225139 +k1,5246:11018856,6254097:225164 +k1,5246:12757247,6254097:225165 +k1,5246:17083000,6254097:225165 +k1,5246:17664025,6254097:225165 +k1,5246:19896557,6254097:225164 +k1,5246:20773150,6254097:225165 +k1,5246:23157071,6254097:225165 +k1,5246:24401321,6254097:225165 +k1,5246:27576261,6254097:225165 +k1,5246:29960181,6254097:225164 +k1,5246:30836774,6254097:225165 +k1,5246:31417799,6254097:225165 +k1,5247:32583029,6254097:0 +) +(1,5247:6630773,7095585:25952256,513147,126483 +k1,5246:8210292,7095585:236686 +k1,5246:10454345,7095585:236685 +k1,5246:11222528,7095585:236686 +k1,5246:13804747,7095585:236685 +k1,5246:18531960,7095585:236686 +k1,5246:19965333,7095585:236686 +k1,5246:21940033,7095585:236685 +k1,5246:22836011,7095585:236686 +k1,5246:24091782,7095585:236686 +k1,5246:26335835,7095585:236685 +k1,5246:27909455,7095585:236686 +k1,5246:30517888,7095585:236685 +k1,5246:31563944,7095585:236686 +k1,5246:32583029,7095585:0 +) +(1,5247:6630773,7937073:25952256,513147,134348 +k1,5246:9862234,7937073:177483 +k1,5246:12285637,7937073:177484 +k1,5246:13976346,7937073:177483 +k1,5246:15603485,7937073:177483 +k1,5246:19720993,7937073:177484 +k1,5246:20581361,7937073:177483 +k1,5246:22719027,7937073:177484 +k1,5246:23579395,7937073:177483 +k1,5246:24527581,7937073:177483 +k1,5246:27690230,7937073:177484 +k1,5246:30291890,7937073:177483 +k1,5246:32583029,7937073:0 +) +(1,5247:6630773,8778561:25952256,513147,134348 +g1,5246:7618400,8778561 +g1,5246:9148010,8778561 +g1,5246:11736026,8778561 +g1,5246:13942623,8778561 +g1,5246:15089503,8778561 +g1,5246:17447488,8778561 +g1,5246:18298145,8778561 +g1,5246:19516459,8778561 +g1,5246:21278066,8778561 +g1,5246:23016080,8778561 +g1,5246:23874601,8778561 +g1,5246:24862228,8778561 +g1,5246:26442301,8778561 +k1,5247:32583029,8778561:3156874 +g1,5247:32583029,8778561 +) +v1,5249:6630773,10144337:0,393216,0 +(1,5265:6630773,20340345:25952256,10589224,616038 +g1,5265:6630773,20340345 +(1,5265:6630773,20340345:25952256,10589224,616038 +(1,5265:6630773,20956383:25952256,11205262,0 +[1,5265:6630773,20956383:25952256,11205262,0 +(1,5265:6630773,20930169:25952256,11152834,0 +r1,5265:6656987,20930169:26214,11152834,0 +[1,5265:6656987,20930169:25899828,11152834,0 +(1,5265:6656987,20340345:25899828,9973186,0 +[1,5265:7246811,20340345:24720180,9973186,0 +(1,5250:7246811,11452695:24720180,1085536,298548 +(1,5249:7246811,11452695:0,1085536,298548 +r1,5265:8753226,11452695:1506415,1384084,298548 +k1,5249:7246811,11452695:-1506415 +) +(1,5249:7246811,11452695:1506415,1085536,298548 +) +k1,5249:9033135,11452695:279909 +k1,5249:10693888,11452695:279909 +k1,5249:13958307,11452695:279909 +k1,5249:14897507,11452695:279908 +k1,5249:17025531,11452695:279909 +k1,5249:19464196,11452695:279909 +k1,5249:20395533,11452695:279909 +k1,5249:21031302,11452695:279909 +k1,5249:23492249,11452695:279909 +k1,5249:24963603,11452695:279909 +k1,5249:27909516,11452695:279908 +k1,5249:28848717,11452695:279909 +k1,5249:30405923,11452695:279909 +k1,5250:31966991,11452695:0 +) +(1,5250:7246811,12294183:24720180,513147,126483 +k1,5249:10082453,12294183:256145 +k1,5249:11024760,12294183:256145 +k1,5249:13356430,12294183:256145 +k1,5249:15481006,12294183:256145 +k1,5249:18151497,12294183:256145 +k1,5249:19217012,12294183:256145 +k1,5249:20492241,12294183:256144 +k1,5249:22907142,12294183:256145 +k1,5249:25170655,12294183:256145 +k1,5249:27206102,12294183:256145 +k1,5249:27993744,12294183:256145 +k1,5249:29316160,12294183:256145 +k1,5249:30591390,12294183:256145 +k1,5249:31966991,12294183:0 +) +(1,5250:7246811,13135671:24720180,505283,134348 +k1,5249:10439164,13135671:207843 +k1,5249:13604646,13135671:207842 +k1,5249:14630378,13135671:207843 +k1,5249:15706573,13135671:207843 +k1,5249:17046878,13135671:207843 +k1,5249:18279703,13135671:207842 +k1,5249:19103584,13135671:207843 +k1,5249:21729050,13135671:207843 +h1,5249:22127509,13135671:0,0,0 +k1,5249:22335351,13135671:207842 +k1,5249:25021766,13135671:207843 +k1,5249:26038979,13135671:207843 +k1,5249:27744975,13135671:207843 +h1,5249:28940352,13135671:0,0,0 +k1,5249:29321864,13135671:207842 +k1,5249:30300410,13135671:207843 +k1,5250:31966991,13135671:0 +) +(1,5250:7246811,13977159:24720180,513147,134348 +k1,5249:9392975,13977159:212852 +k1,5249:12590336,13977159:212851 +k1,5249:13334685,13977159:212852 +k1,5249:14198965,13977159:212852 +k1,5249:16054148,13977159:212851 +k1,5249:16622860,13977159:212852 +k1,5249:18023224,13977159:212852 +k1,5249:20159556,13977159:212851 +k1,5249:21058570,13977159:212852 +k1,5249:21627281,13977159:212851 +k1,5249:22833659,13977159:212852 +k1,5249:23705803,13977159:212852 +k1,5249:26542060,13977159:212851 +k1,5249:30682485,13977159:212852 +k1,5249:31966991,13977159:0 +) +(1,5250:7246811,14818647:24720180,505283,134348 +g1,5249:7977537,14818647 +g1,5249:9630355,14818647 +g1,5249:12704648,14818647 +g1,5249:13590039,14818647 +g1,5249:14145128,14818647 +g1,5249:16227206,14818647 +g1,5249:17235805,14818647 +g1,5249:17790894,14818647 +g1,5249:20939898,14818647 +g1,5249:23146495,14818647 +g1,5249:24107252,14818647 +g1,5249:26396424,14818647 +(1,5249:26396424,14818647:0,452978,115847 +r1,5265:28864961,14818647:2468537,568825,115847 +k1,5249:26396424,14818647:-2468537 +) +(1,5249:26396424,14818647:2468537,452978,115847 +k1,5249:26396424,14818647:3277 +h1,5249:28861684,14818647:0,411205,112570 +) +g1,5249:29064190,14818647 +k1,5250:31966991,14818647:1238842 +g1,5250:31966991,14818647 +) +v1,5252:7246811,16009113:0,393216,0 +(1,5263:7246811,19619449:24720180,4003552,196608 +g1,5263:7246811,19619449 +g1,5263:7246811,19619449 +g1,5263:7050203,19619449 +(1,5263:7050203,19619449:0,4003552,196608 +r1,5265:32163599,19619449:25113396,4200160,196608 +k1,5263:7050203,19619449:-25113396 +) +(1,5263:7050203,19619449:25113396,4003552,196608 +[1,5263:7246811,19619449:24720180,3806944,0 +(1,5254:7246811,16223023:24720180,410518,107478 +(1,5253:7246811,16223023:0,0,0 +g1,5253:7246811,16223023 +g1,5253:7246811,16223023 +g1,5253:6919131,16223023 +(1,5253:6919131,16223023:0,0,0 +) +g1,5253:7246811,16223023 +) +k1,5254:7246811,16223023:0 +g1,5254:10092123,16223023 +g1,5254:10724415,16223023 +g1,5254:17679621,16223023 +g1,5254:19576495,16223023 +g1,5254:20208787,16223023 +g1,5254:21789516,16223023 +g1,5254:24002536,16223023 +g1,5254:24634828,16223023 +h1,5254:25899411,16223023:0,0,0 +k1,5254:31966991,16223023:6067580 +g1,5254:31966991,16223023 +) +(1,5255:7246811,16889201:24720180,404226,101187 +h1,5255:7246811,16889201:0,0,0 +g1,5255:10408268,16889201 +g1,5255:11040560,16889201 +g1,5255:13253580,16889201 +g1,5255:14834309,16889201 +g1,5255:15466601,16889201 +h1,5255:17047329,16889201:0,0,0 +k1,5255:31966991,16889201:14919662 +g1,5255:31966991,16889201 +) +(1,5256:7246811,17555379:24720180,404226,101187 +h1,5256:7246811,17555379:0,0,0 +g1,5256:9459832,17555379 +g1,5256:10092124,17555379 +g1,5256:11356707,17555379 +g1,5256:11988999,17555379 +g1,5256:12621291,17555379 +g1,5256:14202020,17555379 +g1,5256:16415040,17555379 +g1,5256:17047332,17555379 +g1,5256:18944206,17555379 +g1,5256:20841080,17555379 +g1,5256:21789517,17555379 +g1,5256:22737954,17555379 +h1,5256:24950974,17555379:0,0,0 +k1,5256:31966991,17555379:7016017 +g1,5256:31966991,17555379 +) +(1,5257:7246811,18221557:24720180,410518,76021 +h1,5257:7246811,18221557:0,0,0 +k1,5257:7246811,18221557:0 +h1,5257:10092122,18221557:0,0,0 +k1,5257:31966990,18221557:21874868 +g1,5257:31966990,18221557 +) +(1,5262:7246811,18953271:24720180,410518,101187 +(1,5259:7246811,18953271:0,0,0 +g1,5259:7246811,18953271 +g1,5259:7246811,18953271 +g1,5259:6919131,18953271 +(1,5259:6919131,18953271:0,0,0 +) +g1,5259:7246811,18953271 +) +g1,5262:8195248,18953271 +h1,5262:11040559,18953271:0,0,0 +k1,5262:31966991,18953271:20926432 +g1,5262:31966991,18953271 +) +(1,5262:7246811,19619449:24720180,388497,0 +h1,5262:7246811,19619449:0,0,0 +g1,5262:8195248,19619449 +g1,5262:8511394,19619449 +g1,5262:8827540,19619449 +g1,5262:9143686,19619449 +g1,5262:9459832,19619449 +g1,5262:9775978,19619449 +g1,5262:10092124,19619449 +g1,5262:10408270,19619449 +g1,5262:10724416,19619449 +h1,5262:11040562,19619449:0,0,0 +k1,5262:31966990,19619449:20926428 +g1,5262:31966990,19619449 +) +] +) +g1,5263:31966991,19619449 +g1,5263:7246811,19619449 +g1,5263:7246811,19619449 +g1,5263:31966991,19619449 +g1,5263:31966991,19619449 +) +h1,5263:7246811,19816057:0,0,0 +] +) +] +r1,5265:32583029,20930169:26214,11152834,0 +) +] +) +) +g1,5265:32583029,20340345 +) +h1,5265:6630773,20956383:0,0,0 +(1,5267:6630773,23763951:25952256,32768,229376 +(1,5267:6630773,23763951:0,32768,229376 +(1,5267:6630773,23763951:5505024,32768,229376 +r1,5267:12135797,23763951:5505024,262144,229376 +) +k1,5267:6630773,23763951:-5505024 +) +(1,5267:6630773,23763951:25952256,32768,0 +r1,5267:32583029,23763951:25952256,32768,0 +) +) +(1,5267:6630773,25368279:25952256,606339,161218 +(1,5267:6630773,25368279:2464678,582746,14155 +g1,5267:6630773,25368279 +g1,5267:9095451,25368279 +) +g1,5267:12303307,25368279 +k1,5267:32583029,25368279:17283416 +g1,5267:32583029,25368279 ) -g1,371:3062174,49800853 -(1,371:3062174,52029077:16384,1703936,0 -[1,371:3062174,52029077:25952256,1703936,0 -(1,371:3062174,51504789:25952256,1179648,0 -(1,371:3062174,51504789:16384,1179648,0 -r1,5277:3078558,51504789:16384,1179648,0 +(1,5270:6630773,26602983:25952256,513147,134348 +k1,5268:7858919,26602983:186124 +k1,5268:10320453,26602983:186124 +k1,5268:12909127,26602983:186124 +k1,5268:13904621,26602983:186124 +k1,5268:15109830,26602983:186124 +k1,5268:17670979,26602983:186124 +k1,5268:18524259,26602983:186124 +k1,5268:19125213,26602983:186111 +k1,5268:22440681,26602983:186124 +k1,5268:23242843,26602983:186124 +k1,5268:24448052,26602983:186124 +k1,5268:26978399,26602983:186124 +k1,5268:29755817,26602983:186124 +k1,5269:30154920,26602983:186111 +k1,5269:32583029,26602983:0 ) -k1,371:29014430,51504789:25935872 -g1,371:29014430,51504789 -) -] -) -) -) -] -[1,5277:3078558,4812305:0,0,0 -(1,5277:3078558,49800853:0,16384,2228224 -g1,5277:29030814,49800853 -g1,5277:36135244,49800853 -(1,371:36135244,49800853:1720320,16384,2228224 -(1,371:36135244,52029077:16384,1703936,0 -[1,371:36135244,52029077:25952256,1703936,0 -(1,371:36135244,51504789:25952256,1179648,0 -(1,371:36135244,51504789:16384,1179648,0 -r1,5277:36151628,51504789:16384,1179648,0 -) -k1,371:62087500,51504789:25935872 -g1,371:62087500,51504789 -) -] -) -g1,371:36675916,49800853 -(1,371:36675916,49800853:1179648,16384,0 -r1,5277:37855564,49800853:1179648,16384,0 -) -) -k1,5277:3078556,49800853:-34777008 -) -] -g1,5277:6630773,4812305 -k1,5277:19562994,4812305:12135303 -g1,5277:20949735,4812305 -g1,5277:21598541,4812305 -g1,5277:24912696,4812305 -g1,5277:27600327,4812305 -g1,5277:29010006,4812305 -) -) -] -[1,5277:6630773,45706769:25952256,40108032,0 -(1,5277:6630773,45706769:25952256,40108032,0 -(1,5277:6630773,45706769:0,0,0 -g1,5277:6630773,45706769 -) -[1,5277:6630773,45706769:25952256,40108032,0 -(1,5241:6630773,6254097:25952256,505283,134348 -h1,5240:6630773,6254097:983040,0,0 -k1,5240:9622213,6254097:225165 -k1,5240:10262195,6254097:225139 -k1,5240:11018856,6254097:225164 -k1,5240:12757247,6254097:225165 -k1,5240:17083000,6254097:225165 -k1,5240:17664025,6254097:225165 -k1,5240:19896557,6254097:225164 -k1,5240:20773150,6254097:225165 -k1,5240:23157071,6254097:225165 -k1,5240:24401321,6254097:225165 -k1,5240:27576261,6254097:225165 -k1,5240:29960181,6254097:225164 -k1,5240:30836774,6254097:225165 -k1,5240:31417799,6254097:225165 -k1,5241:32583029,6254097:0 -) -(1,5241:6630773,7095585:25952256,513147,126483 -k1,5240:8210292,7095585:236686 -k1,5240:10454345,7095585:236685 -k1,5240:11222528,7095585:236686 -k1,5240:13804747,7095585:236685 -k1,5240:18531960,7095585:236686 -k1,5240:19965333,7095585:236686 -k1,5240:21940033,7095585:236685 -k1,5240:22836011,7095585:236686 -k1,5240:24091782,7095585:236686 -k1,5240:26335835,7095585:236685 -k1,5240:27909455,7095585:236686 -k1,5240:30517888,7095585:236685 -k1,5240:31563944,7095585:236686 -k1,5240:32583029,7095585:0 -) -(1,5241:6630773,7937073:25952256,513147,134348 -k1,5240:9862234,7937073:177483 -k1,5240:12285637,7937073:177484 -k1,5240:13976346,7937073:177483 -k1,5240:15603485,7937073:177483 -k1,5240:19720993,7937073:177484 -k1,5240:20581361,7937073:177483 -k1,5240:22719027,7937073:177484 -k1,5240:23579395,7937073:177483 -k1,5240:24527581,7937073:177483 -k1,5240:27690230,7937073:177484 -k1,5240:30291890,7937073:177483 -k1,5240:32583029,7937073:0 -) -(1,5241:6630773,8778561:25952256,513147,134348 -g1,5240:7618400,8778561 -g1,5240:9148010,8778561 -g1,5240:11736026,8778561 -g1,5240:13942623,8778561 -g1,5240:15089503,8778561 -g1,5240:17447488,8778561 -g1,5240:18298145,8778561 -g1,5240:19516459,8778561 -g1,5240:21278066,8778561 -g1,5240:23016080,8778561 -g1,5240:23874601,8778561 -g1,5240:24862228,8778561 -g1,5240:26442301,8778561 -k1,5241:32583029,8778561:3156874 -g1,5241:32583029,8778561 -) -v1,5243:6630773,10144337:0,393216,0 -(1,5259:6630773,20340345:25952256,10589224,616038 -g1,5259:6630773,20340345 -(1,5259:6630773,20340345:25952256,10589224,616038 -(1,5259:6630773,20956383:25952256,11205262,0 -[1,5259:6630773,20956383:25952256,11205262,0 -(1,5259:6630773,20930169:25952256,11152834,0 -r1,5259:6656987,20930169:26214,11152834,0 -[1,5259:6656987,20930169:25899828,11152834,0 -(1,5259:6656987,20340345:25899828,9973186,0 -[1,5259:7246811,20340345:24720180,9973186,0 -(1,5244:7246811,11452695:24720180,1085536,298548 -(1,5243:7246811,11452695:0,1085536,298548 -r1,5259:8753226,11452695:1506415,1384084,298548 -k1,5243:7246811,11452695:-1506415 -) -(1,5243:7246811,11452695:1506415,1085536,298548 -) -k1,5243:9033135,11452695:279909 -k1,5243:10693888,11452695:279909 -k1,5243:13958307,11452695:279909 -k1,5243:14897507,11452695:279908 -k1,5243:17025531,11452695:279909 -k1,5243:19464196,11452695:279909 -k1,5243:20395533,11452695:279909 -k1,5243:21031302,11452695:279909 -k1,5243:23492249,11452695:279909 -k1,5243:24963603,11452695:279909 -k1,5243:27909516,11452695:279908 -k1,5243:28848717,11452695:279909 -k1,5243:30405923,11452695:279909 -k1,5244:31966991,11452695:0 -) -(1,5244:7246811,12294183:24720180,513147,126483 -k1,5243:10082453,12294183:256145 -k1,5243:11024760,12294183:256145 -k1,5243:13356430,12294183:256145 -k1,5243:15481006,12294183:256145 -k1,5243:18151497,12294183:256145 -k1,5243:19217012,12294183:256145 -k1,5243:20492241,12294183:256144 -k1,5243:22907142,12294183:256145 -k1,5243:25170655,12294183:256145 -k1,5243:27206102,12294183:256145 -k1,5243:27993744,12294183:256145 -k1,5243:29316160,12294183:256145 -k1,5243:30591390,12294183:256145 -k1,5243:31966991,12294183:0 -) -(1,5244:7246811,13135671:24720180,505283,134348 -k1,5243:10439164,13135671:207843 -k1,5243:13604646,13135671:207842 -k1,5243:14630378,13135671:207843 -k1,5243:15706573,13135671:207843 -k1,5243:17046878,13135671:207843 -k1,5243:18279703,13135671:207842 -k1,5243:19103584,13135671:207843 -k1,5243:21729050,13135671:207843 -h1,5243:22127509,13135671:0,0,0 -k1,5243:22335351,13135671:207842 -k1,5243:25021766,13135671:207843 -k1,5243:26038979,13135671:207843 -k1,5243:27744975,13135671:207843 -h1,5243:28940352,13135671:0,0,0 -k1,5243:29321864,13135671:207842 -k1,5243:30300410,13135671:207843 -k1,5244:31966991,13135671:0 -) -(1,5244:7246811,13977159:24720180,513147,134348 -k1,5243:9392975,13977159:212852 -k1,5243:12590336,13977159:212851 -k1,5243:13334685,13977159:212852 -k1,5243:14198965,13977159:212852 -k1,5243:16054148,13977159:212851 -k1,5243:16622860,13977159:212852 -k1,5243:18023224,13977159:212852 -k1,5243:20159556,13977159:212851 -k1,5243:21058570,13977159:212852 -k1,5243:21627281,13977159:212851 -k1,5243:22833659,13977159:212852 -k1,5243:23705803,13977159:212852 -k1,5243:26542060,13977159:212851 -k1,5243:30682485,13977159:212852 -k1,5243:31966991,13977159:0 -) -(1,5244:7246811,14818647:24720180,505283,134348 -g1,5243:7977537,14818647 -g1,5243:9630355,14818647 -g1,5243:12704648,14818647 -g1,5243:13590039,14818647 -g1,5243:14145128,14818647 -g1,5243:16227206,14818647 -g1,5243:17235805,14818647 -g1,5243:17790894,14818647 -g1,5243:20939898,14818647 -g1,5243:23146495,14818647 -g1,5243:24107252,14818647 -g1,5243:26396424,14818647 -(1,5243:26396424,14818647:0,452978,115847 -r1,5259:28864961,14818647:2468537,568825,115847 -k1,5243:26396424,14818647:-2468537 -) -(1,5243:26396424,14818647:2468537,452978,115847 -k1,5243:26396424,14818647:3277 -h1,5243:28861684,14818647:0,411205,112570 -) -g1,5243:29064190,14818647 -k1,5244:31966991,14818647:1238842 -g1,5244:31966991,14818647 -) -v1,5246:7246811,16009113:0,393216,0 -(1,5257:7246811,19619449:24720180,4003552,196608 -g1,5257:7246811,19619449 -g1,5257:7246811,19619449 -g1,5257:7050203,19619449 -(1,5257:7050203,19619449:0,4003552,196608 -r1,5259:32163599,19619449:25113396,4200160,196608 -k1,5257:7050203,19619449:-25113396 -) -(1,5257:7050203,19619449:25113396,4003552,196608 -[1,5257:7246811,19619449:24720180,3806944,0 -(1,5248:7246811,16223023:24720180,410518,107478 -(1,5247:7246811,16223023:0,0,0 -g1,5247:7246811,16223023 -g1,5247:7246811,16223023 -g1,5247:6919131,16223023 -(1,5247:6919131,16223023:0,0,0 -) -g1,5247:7246811,16223023 -) -k1,5248:7246811,16223023:0 -g1,5248:10092123,16223023 -g1,5248:10724415,16223023 -g1,5248:17679621,16223023 -g1,5248:19576495,16223023 -g1,5248:20208787,16223023 -g1,5248:21789516,16223023 -g1,5248:24002536,16223023 -g1,5248:24634828,16223023 -h1,5248:25899411,16223023:0,0,0 -k1,5248:31966991,16223023:6067580 -g1,5248:31966991,16223023 -) -(1,5249:7246811,16889201:24720180,404226,101187 -h1,5249:7246811,16889201:0,0,0 -g1,5249:10408268,16889201 -g1,5249:11040560,16889201 -g1,5249:13253580,16889201 -g1,5249:14834309,16889201 -g1,5249:15466601,16889201 -h1,5249:17047329,16889201:0,0,0 -k1,5249:31966991,16889201:14919662 -g1,5249:31966991,16889201 -) -(1,5250:7246811,17555379:24720180,404226,101187 -h1,5250:7246811,17555379:0,0,0 -g1,5250:9459832,17555379 -g1,5250:10092124,17555379 -g1,5250:11356707,17555379 -g1,5250:11988999,17555379 -g1,5250:12621291,17555379 -g1,5250:14202020,17555379 -g1,5250:16415040,17555379 -g1,5250:17047332,17555379 -g1,5250:18944206,17555379 -g1,5250:20841080,17555379 -g1,5250:21789517,17555379 -g1,5250:22737954,17555379 -h1,5250:24950974,17555379:0,0,0 -k1,5250:31966991,17555379:7016017 -g1,5250:31966991,17555379 -) -(1,5251:7246811,18221557:24720180,410518,76021 -h1,5251:7246811,18221557:0,0,0 -k1,5251:7246811,18221557:0 -h1,5251:10092122,18221557:0,0,0 -k1,5251:31966990,18221557:21874868 -g1,5251:31966990,18221557 -) -(1,5256:7246811,18953271:24720180,410518,101187 -(1,5253:7246811,18953271:0,0,0 -g1,5253:7246811,18953271 -g1,5253:7246811,18953271 -g1,5253:6919131,18953271 -(1,5253:6919131,18953271:0,0,0 -) -g1,5253:7246811,18953271 -) -g1,5256:8195248,18953271 -h1,5256:9143685,18953271:0,0,0 -k1,5256:31966991,18953271:22823306 -g1,5256:31966991,18953271 -) -(1,5256:7246811,19619449:24720180,388497,0 -h1,5256:7246811,19619449:0,0,0 -g1,5256:8195248,19619449 -g1,5256:8511394,19619449 -g1,5256:8827540,19619449 -h1,5256:9143686,19619449:0,0,0 -k1,5256:31966990,19619449:22823304 -g1,5256:31966990,19619449 -) -] -) -g1,5257:31966991,19619449 -g1,5257:7246811,19619449 -g1,5257:7246811,19619449 -g1,5257:31966991,19619449 -g1,5257:31966991,19619449 -) -h1,5257:7246811,19816057:0,0,0 -] -) -] -r1,5259:32583029,20930169:26214,11152834,0 -) -] -) -) -g1,5259:32583029,20340345 -) -h1,5259:6630773,20956383:0,0,0 -(1,5261:6630773,23763951:25952256,32768,229376 -(1,5261:6630773,23763951:0,32768,229376 -(1,5261:6630773,23763951:5505024,32768,229376 -r1,5261:12135797,23763951:5505024,262144,229376 -) -k1,5261:6630773,23763951:-5505024 -) -(1,5261:6630773,23763951:25952256,32768,0 -r1,5261:32583029,23763951:25952256,32768,0 -) -) -(1,5261:6630773,25368279:25952256,606339,161218 -(1,5261:6630773,25368279:2464678,582746,14155 -g1,5261:6630773,25368279 -g1,5261:9095451,25368279 -) -g1,5261:12303307,25368279 -k1,5261:32583029,25368279:17283416 -g1,5261:32583029,25368279 -) -(1,5264:6630773,26602983:25952256,513147,134348 -k1,5262:7858919,26602983:186124 -k1,5262:10320453,26602983:186124 -k1,5262:12909127,26602983:186124 -k1,5262:13904621,26602983:186124 -k1,5262:15109830,26602983:186124 -k1,5262:17670979,26602983:186124 -k1,5262:18524259,26602983:186124 -k1,5262:19125213,26602983:186111 -k1,5262:22440681,26602983:186124 -k1,5262:23242843,26602983:186124 -k1,5262:24448052,26602983:186124 -k1,5262:26978399,26602983:186124 -k1,5262:29755817,26602983:186124 -k1,5263:30154920,26602983:186111 -k1,5263:32583029,26602983:0 -) -(1,5264:6630773,27444471:25952256,513147,134348 -k1,5263:7840467,27444471:190609 -k1,5263:9943417,27444471:190609 -k1,5263:10583602,27444471:190608 -k1,5263:15164468,27444471:190609 -k1,5263:16279135,27444471:190609 -k1,5263:18003942,27444471:190609 -k1,5263:20474548,27444471:190608 -k1,5263:22591260,27444471:190609 -k1,5263:23973314,27444471:190609 -k1,5263:25351435,27444471:190609 -k1,5263:26572269,27444471:190608 -k1,5263:27378916,27444471:190609 -k1,5263:28019102,27444471:190609 -k1,5263:32583029,27444471:0 +(1,5270:6630773,27444471:25952256,513147,134348 +g1,5269:7849087,27444471 +g1,5269:9960657,27444471 +(1,5269:9960657,27444471:3225027,485622,134348 ) -(1,5264:6630773,28285959:25952256,513147,134348 -g1,5263:7319556,28285959 -g1,5263:9041186,28285959 -g1,5263:9856453,28285959 -g1,5263:13086067,28285959 -g1,5263:16067299,28285959 -g1,5263:18397759,28285959 -k1,5264:32583029,28285959:11335764 -g1,5264:32583029,28285959 +g1,5269:13384913,27444471 +(1,5269:13592007,27444471:3225027,485622,134348 +) +g1,5269:17223357,27444471 +g1,5269:18614031,27444471 +(1,5269:18614031,27444471:3955753,513147,11795 +) +g1,5269:22769013,27444471 +(1,5269:22976107,27444471:3955753,513147,11795 +) +k1,5270:32583029,27444471:5270405 +g1,5270:32583029,27444471 ) ] -(1,5277:32583029,45706769:0,0,0 -g1,5277:32583029,45706769 +(1,5283:32583029,45706769:0,0,0 +g1,5283:32583029,45706769 ) ) ] -(1,5277:6630773,47279633:25952256,0,0 -h1,5277:6630773,47279633:25952256,0,0 +(1,5283:6630773,47279633:25952256,0,0 +h1,5283:6630773,47279633:25952256,0,0 ) ] -h1,5277:4262630,4025873:0,0,0 +h1,5283:4262630,4025873:0,0,0 ] -!13491 +!13339 }97 !11 {98 -[1,5302:4262630,47279633:28320399,43253760,11795 -(1,5302:4262630,4025873:0,0,0 -[1,5302:-473657,4025873:25952256,0,0 -(1,5302:-473657,-710414:25952256,0,0 -h1,5302:-473657,-710414:0,0,0 -(1,5302:-473657,-710414:0,0,0 -(1,5302:-473657,-710414:0,0,0 -g1,5302:-473657,-710414 -(1,5302:-473657,-710414:65781,0,65781 -g1,5302:-407876,-710414 -[1,5302:-407876,-644633:0,0,0 +[1,5308:4262630,47279633:28320399,43253760,11795 +(1,5308:4262630,4025873:0,0,0 +[1,5308:-473657,4025873:25952256,0,0 +(1,5308:-473657,-710414:25952256,0,0 +h1,5308:-473657,-710414:0,0,0 +(1,5308:-473657,-710414:0,0,0 +(1,5308:-473657,-710414:0,0,0 +g1,5308:-473657,-710414 +(1,5308:-473657,-710414:65781,0,65781 +g1,5308:-407876,-710414 +[1,5308:-407876,-644633:0,0,0 ] ) -k1,5302:-473657,-710414:-65781 +k1,5308:-473657,-710414:-65781 ) ) -k1,5302:25478599,-710414:25952256 -g1,5302:25478599,-710414 +k1,5308:25478599,-710414:25952256 +g1,5308:25478599,-710414 ) ] ) -[1,5302:6630773,47279633:25952256,43253760,11795 -[1,5302:6630773,4812305:25952256,786432,0 -(1,5302:6630773,4812305:25952256,0,0 -(1,5302:6630773,4812305:25952256,0,0 -g1,5302:3078558,4812305 -[1,5302:3078558,4812305:0,0,0 -(1,5302:3078558,2439708:0,1703936,0 -k1,5302:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5302:2537886,2439708:1179648,16384,0 +[1,5308:6630773,47279633:25952256,43253760,11795 +[1,5308:6630773,4812305:25952256,786432,0 +(1,5308:6630773,4812305:25952256,0,0 +(1,5308:6630773,4812305:25952256,0,0 +g1,5308:3078558,4812305 +[1,5308:3078558,4812305:0,0,0 +(1,5308:3078558,2439708:0,1703936,0 +k1,5308:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5308:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5302:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5308:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5302:3078558,4812305:0,0,0 -(1,5302:3078558,2439708:0,1703936,0 -g1,5302:29030814,2439708 -g1,5302:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5302:36151628,1915420:16384,1179648,0 +[1,5308:3078558,4812305:0,0,0 +(1,5308:3078558,2439708:0,1703936,0 +g1,5308:29030814,2439708 +g1,5308:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5308:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5302:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5308:37855564,2439708:1179648,16384,0 ) ) -k1,5302:3078556,2439708:-34777008 +k1,5308:3078556,2439708:-34777008 ) ] -[1,5302:3078558,4812305:0,0,0 -(1,5302:3078558,49800853:0,16384,2228224 -k1,5302:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5302:2537886,49800853:1179648,16384,0 +[1,5308:3078558,4812305:0,0,0 +(1,5308:3078558,49800853:0,16384,2228224 +k1,5308:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5308:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5302:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5308:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5302:3078558,4812305:0,0,0 -(1,5302:3078558,49800853:0,16384,2228224 -g1,5302:29030814,49800853 -g1,5302:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5302:36151628,51504789:16384,1179648,0 +[1,5308:3078558,4812305:0,0,0 +(1,5308:3078558,49800853:0,16384,2228224 +g1,5308:29030814,49800853 +g1,5308:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5308:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5302:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5308:37855564,49800853:1179648,16384,0 ) ) -k1,5302:3078556,49800853:-34777008 +k1,5308:3078556,49800853:-34777008 ) ] -g1,5302:6630773,4812305 +g1,5308:6630773,4812305 ) ) ] -[1,5302:6630773,45706769:25952256,40108032,0 -(1,5302:6630773,45706769:25952256,40108032,0 -(1,5302:6630773,45706769:0,0,0 -g1,5302:6630773,45706769 +[1,5308:6630773,45706769:25952256,40108032,0 +(1,5308:6630773,45706769:25952256,40108032,0 +(1,5308:6630773,45706769:0,0,0 +g1,5308:6630773,45706769 ) -[1,5302:6630773,45706769:25952256,40108032,0 -[1,5277:6630773,11663733:25952256,6064996,0 -(1,5277:6630773,6633157:25952256,1165492,28311 -h1,5277:6630773,6633157:0,0,0 -k1,5277:20096848,6633157:12486181 -k1,5277:32583029,6633157:12486181 +[1,5308:6630773,45706769:25952256,40108032,0 +[1,5283:6630773,11663733:25952256,6064996,0 +(1,5283:6630773,6633157:25952256,1165492,28311 +h1,5283:6630773,6633157:0,0,0 +k1,5283:20096848,6633157:12486181 +k1,5283:32583029,6633157:12486181 ) -(1,5277:6630773,7333093:25952256,32768,229376 -(1,5277:6630773,7333093:0,32768,229376 -(1,5277:6630773,7333093:5505024,32768,229376 -r1,5277:12135797,7333093:5505024,262144,229376 +(1,5283:6630773,7333093:25952256,32768,229376 +(1,5283:6630773,7333093:0,32768,229376 +(1,5283:6630773,7333093:5505024,32768,229376 +r1,5283:12135797,7333093:5505024,262144,229376 ) -k1,5277:6630773,7333093:-5505024 +k1,5283:6630773,7333093:-5505024 ) -(1,5277:6630773,7333093:25952256,32768,0 -r1,5277:32583029,7333093:25952256,32768,0 +(1,5283:6630773,7333093:25952256,32768,0 +r1,5283:32583029,7333093:25952256,32768,0 ) ) -(1,5277:6630773,9128789:25952256,909509,241827 -h1,5277:6630773,9128789:0,0,0 -g1,5277:9126908,9128789 -g1,5277:10294760,9128789 -g1,5277:16260240,9128789 -g1,5277:24365602,9128789 -g1,5277:26903025,9128789 -k1,5277:32053958,9128789:529072 -k1,5277:32583029,9128789:529071 +(1,5283:6630773,9128789:25952256,909509,241827 +h1,5283:6630773,9128789:0,0,0 +g1,5283:9126908,9128789 +g1,5283:10294760,9128789 +g1,5283:16260240,9128789 +g1,5283:24331392,9128789 +g1,5283:26868815,9128789 +k1,5283:32036853,9128789:546177 +k1,5283:32583029,9128789:546176 ) -(1,5277:6630773,9828725:25952256,32768,0 -(1,5277:6630773,9828725:5505024,32768,0 -r1,5277:12135797,9828725:5505024,32768,0 +(1,5283:6630773,9828725:25952256,32768,0 +(1,5283:6630773,9828725:5505024,32768,0 +r1,5283:12135797,9828725:5505024,32768,0 ) -k1,5277:22359413,9828725:10223616 -k1,5277:32583029,9828725:10223616 -) -] -(1,5280:6630773,14556498:25952256,131072,0 -r1,5280:32583029,14556498:25952256,131072,0 -g1,5280:32583029,14556498 -g1,5280:32583029,14556498 -) -(1,5282:6630773,15876399:25952256,513147,134348 -k1,5282:8596853,15876399:1966080 -k1,5281:8596853,15876399:0 -k1,5281:9787977,15876399:288693 -k1,5281:10491424,15876399:288604 -k1,5281:12611193,15876399:288693 -k1,5281:13431384,15876399:288694 -k1,5281:15858517,15876399:288693 -k1,5281:16503071,15876399:288694 -k1,5281:18017943,15876399:288693 -k1,5281:19289676,15876399:288693 -k1,5281:22940367,15876399:288694 -k1,5281:25805936,15876399:288693 -k1,5281:27113715,15876399:288694 -k1,5281:29055881,15876399:288693 -k1,5282:32583029,15876399:1966080 -) -(1,5282:6630773,16717887:25952256,513147,126483 -g1,5282:8596853,16717887 -g1,5281:10937799,16717887 -g1,5281:12421534,16717887 -g1,5281:13791236,16717887 -g1,5281:15946715,16717887 -g1,5281:17800728,16717887 -g1,5281:18809327,16717887 -g1,5281:20027641,16717887 -g1,5281:23386361,16717887 -g1,5281:24754097,16717887 -g1,5281:25620482,16717887 -k1,5282:30616949,16717887:4407954 -g1,5282:32583029,16717887 -) -(1,5283:6630773,18345807:25952256,473825,95026 -k1,5283:27178275,18345807:20547502 -h1,5283:27178275,18345807:0,0,0 -g1,5283:28475232,18345807 -g1,5283:30616949,18345807 -g1,5283:32583029,18345807 -) -(1,5284:6630773,19187295:25952256,505283,134348 -k1,5284:26177541,19187295:19546768 -h1,5283:26177541,19187295:0,0,0 -g1,5283:30167372,19187295 -g1,5284:30616949,19187295 -g1,5284:32583029,19187295 -) -(1,5284:6630773,20421999:25952256,131072,0 -r1,5284:32583029,20421999:25952256,131072,0 -g1,5284:32583029,20421999 -g1,5284:34549109,20421999 -) -(1,5288:6630773,23229567:25952256,32768,229376 -(1,5288:6630773,23229567:0,32768,229376 -(1,5288:6630773,23229567:5505024,32768,229376 -r1,5288:12135797,23229567:5505024,262144,229376 -) -k1,5288:6630773,23229567:-5505024 -) -(1,5288:6630773,23229567:25952256,32768,0 -r1,5288:32583029,23229567:25952256,32768,0 -) -) -(1,5288:6630773,24833895:25952256,615776,151780 -(1,5288:6630773,24833895:1974731,582746,14155 -g1,5288:6630773,24833895 -g1,5288:8605504,24833895 -) -g1,5288:10904245,24833895 -g1,5288:11961996,24833895 -g1,5288:13695292,24833895 -k1,5288:32583029,24833895:15886712 -g1,5288:32583029,24833895 -) -(1,5291:6630773,26068599:25952256,513147,134348 -k1,5290:7845631,26068599:172836 -k1,5290:9762380,26068599:172836 -k1,5290:11265598,26068599:172837 -k1,5290:12913649,26068599:172836 -k1,5290:15244586,26068599:172836 -k1,5290:16930648,26068599:172836 -k1,5290:20053259,26068599:172836 -k1,5290:21606939,26068599:172836 -k1,5290:25093932,26068599:172837 -k1,5290:29921790,26068599:172836 -k1,5290:31391584,26068599:172836 -k1,5290:32583029,26068599:0 -) -(1,5291:6630773,26910087:25952256,505283,134348 -k1,5290:8579705,26910087:250894 -k1,5290:10991975,26910087:250893 -k1,5290:12347151,26910087:250894 -k1,5290:13986097,26910087:250893 -k1,5290:14853029,26910087:250894 -k1,5290:20039439,26910087:250894 -k1,5290:20646192,26910087:250893 -k1,5290:23095164,26910087:250894 -k1,5290:24735420,26910087:250893 -k1,5290:27540907,26910087:250894 -k1,5290:30480087,26910087:250893 -k1,5290:31835263,26910087:250894 -k1,5290:32583029,26910087:0 -) -(1,5291:6630773,27751575:25952256,513147,134348 -k1,5290:10209139,27751575:202607 -k1,5290:11229635,27751575:202607 -k1,5290:12966440,27751575:202607 -k1,5290:13855209,27751575:202607 -k1,5290:14413676,27751575:202607 -k1,5290:16005646,27751575:202607 -k1,5290:18762847,27751575:202608 -k1,5290:20698226,27751575:202607 -k1,5290:22638848,27751575:202607 -k1,5290:24880935,27751575:202607 -k1,5290:28395732,27751575:202607 -k1,5290:29617424,27751575:202607 -k1,5290:31505617,27751575:202607 -k1,5291:32583029,27751575:0 -) -(1,5291:6630773,28593063:25952256,513147,134348 -k1,5290:8694264,28593063:174743 -k1,5290:11427532,28593063:174742 -k1,5290:11958135,28593063:174743 -k1,5290:14378796,28593063:174742 -k1,5290:15212831,28593063:174743 -k1,5290:17514872,28593063:174742 -k1,5290:18881060,28593063:174743 -k1,5290:21769648,28593063:174742 -k1,5290:23782021,28593063:174743 -k1,5290:26730247,28593063:174742 -k1,5290:30043509,28593063:174743 -k1,5291:32583029,28593063:0 -k1,5291:32583029,28593063:0 -) -(1,5293:6630773,29434551:25952256,513147,134348 -h1,5292:6630773,29434551:983040,0,0 -k1,5292:11032766,29434551:264050 -k1,5292:14246592,29434551:264051 -k1,5292:15891486,29434551:264050 -k1,5292:19296022,29434551:264051 -k1,5292:20999898,29434551:264050 -k1,5292:21915377,29434551:264051 -k1,5292:22927193,29434551:264050 -k1,5292:25675059,29434551:264051 -k1,5292:26590537,29434551:264050 -k1,5292:29006790,29434551:264051 -k1,5292:29953725,29434551:264050 -k1,5292:32583029,29434551:0 -) -(1,5293:6630773,30276039:25952256,505283,134348 -k1,5292:7493465,30276039:246654 -k1,5292:8095978,30276039:246653 -k1,5292:9580607,30276039:246654 -k1,5292:11111767,30276039:246654 -k1,5292:13196705,30276039:246653 -k1,5292:17341440,30276039:246654 -k1,5292:21425881,30276039:246653 -k1,5292:23212631,30276039:246654 -k1,5292:25492212,30276039:246654 -k1,5292:28480891,30276039:246653 -k1,5292:31391584,30276039:246654 -k1,5292:32583029,30276039:0 -) -(1,5293:6630773,31117527:25952256,473825,134348 -g1,5292:9883980,31117527 -k1,5293:32583029,31117527:19949158 -g1,5293:32583029,31117527 -) -(1,5295:6630773,31959015:25952256,513147,126483 -h1,5294:6630773,31959015:983040,0,0 -k1,5294:9565475,31959015:256246 -k1,5294:11751100,31959015:256245 -k1,5294:14232293,31959015:256246 -k1,5294:15507624,31959015:256246 -k1,5294:17417343,31959015:256246 -k1,5294:20613533,31959015:256245 -k1,5294:21529071,31959015:256246 -k1,5294:25275109,31959015:256246 -k1,5294:27391922,31959015:256246 -k1,5294:28299596,31959015:256246 -k1,5294:29303607,31959015:256245 -k1,5294:31931601,31959015:256246 -k1,5294:32583029,31959015:0 -) -(1,5295:6630773,32800503:25952256,513147,126483 -k1,5294:9598780,32800503:205664 -k1,5294:11193806,32800503:205663 -k1,5294:12837985,32800503:205664 -k1,5294:14235094,32800503:205664 -k1,5294:16602134,32800503:205663 -k1,5294:18523531,32800503:205664 -k1,5294:20195890,32800503:205663 -k1,5294:25458312,32800503:205664 -k1,5294:26855421,32800503:205664 -k1,5294:30224507,32800503:205663 -k1,5294:31089463,32800503:205664 -k1,5294:32583029,32800503:0 -) -(1,5295:6630773,33641991:25952256,473825,126483 -g1,5294:7185862,33641991 -g1,5294:11315940,33641991 -k1,5295:32583029,33641991:19698812 -g1,5295:32583029,33641991 -) -(1,5297:6630773,34483479:25952256,513147,134348 -h1,5296:6630773,34483479:983040,0,0 -k1,5296:8485142,34483479:243494 -k1,5296:9931877,34483479:243494 -k1,5296:12766665,34483479:243494 -k1,5296:13223106,34483479:243449 -k1,5296:14599062,34483479:243494 -k1,5296:16317116,34483479:243494 -k1,5296:17731083,34483479:243494 -k1,5296:20533103,34483479:243494 -k1,5296:21795682,34483479:243494 -k1,5296:23131661,34483479:243494 -k1,5296:24042311,34483479:243494 -k1,5296:24700603,34483479:243449 -k1,5296:27279145,34483479:243494 -k1,5296:30001211,34483479:243494 -k1,5296:31812326,34483479:243494 -k1,5296:32583029,34483479:0 -) -(1,5297:6630773,35324967:25952256,505283,126483 -g1,5296:9968521,35324967 -g1,5296:12292427,35324967 -k1,5297:32583029,35324967:18285856 -g1,5297:32583029,35324967 -) -(1,5298:6630773,38132535:25952256,32768,229376 -(1,5298:6630773,38132535:0,32768,229376 -(1,5298:6630773,38132535:5505024,32768,229376 -r1,5298:12135797,38132535:5505024,262144,229376 -) -k1,5298:6630773,38132535:-5505024 -) -(1,5298:6630773,38132535:25952256,32768,0 -r1,5298:32583029,38132535:25952256,32768,0 -) -) -(1,5298:6630773,39736863:25952256,606339,161218 -(1,5298:6630773,39736863:1974731,582746,14155 -g1,5298:6630773,39736863 -g1,5298:8605504,39736863 -) -g1,5298:11767747,39736863 -k1,5298:32583029,39736863:18128044 -g1,5298:32583029,39736863 -) -(1,5301:6630773,40971567:25952256,505283,134348 -k1,5300:7499830,40971567:241222 -k1,5300:8155852,40971567:241179 -k1,5300:11413041,40971567:241222 -k1,5300:12673348,40971567:241222 -k1,5300:15112648,40971567:241222 -k1,5300:17335022,40971567:241221 -k1,5300:18227672,40971567:241222 -k1,5300:18824754,40971567:241222 -k1,5300:21357770,40971567:241222 -k1,5300:24441287,40971567:241221 -k1,5300:26407417,40971567:241222 -k1,5300:27180136,40971567:241222 -k1,5300:27777218,40971567:241222 -k1,5300:30023185,40971567:241221 -k1,5300:30751953,40971567:241180 -k1,5300:32583029,40971567:0 -) -(1,5301:6630773,41813055:25952256,513147,134348 -k1,5300:7343388,41813055:181118 -k1,5300:9002997,41813055:181117 -k1,5300:10751736,41813055:181118 -k1,5300:13604101,41813055:181118 -k1,5300:18557550,41813055:181117 -k1,5300:20234855,41813055:181118 -k1,5300:23932634,41813055:181117 -k1,5300:26412100,41813055:181118 -k1,5300:27244646,41813055:181118 -k1,5300:30351290,41813055:181117 -k1,5300:30888268,41813055:181118 -k1,5300:32583029,41813055:0 -) -(1,5301:6630773,42654543:25952256,505283,126483 -k1,5300:8394412,42654543:254345 -k1,5300:10798338,42654543:254345 -k1,5300:14569345,42654543:254345 -k1,5300:15927972,42654543:254345 -k1,5300:16930084,42654543:254346 -k1,5300:20317050,42654543:254345 -k1,5300:21838861,42654543:254345 -k1,5300:25506976,42654543:254345 -k1,5300:29451653,42654543:254345 -k1,5300:31591469,42654543:254345 -k1,5300:32583029,42654543:0 -) -(1,5301:6630773,43496031:25952256,513147,134348 -k1,5300:7790701,43496031:140843 -k1,5300:11236524,43496031:140842 -k1,5300:12036659,43496031:140843 -k1,5300:14469296,43496031:140843 -k1,5300:17452435,43496031:140843 -k1,5300:21372083,43496031:140842 -k1,5300:23699207,43496031:140843 -k1,5300:24944332,43496031:140843 -k1,5300:26447669,43496031:140843 -k1,5300:28156132,43496031:140842 -k1,5300:30421652,43496031:140843 -k1,5300:32583029,43496031:0 -) -(1,5301:6630773,44337519:25952256,513147,134348 -k1,5300:10171564,44337519:178794 -k1,5300:11725959,44337519:178794 -k1,5300:12260613,44337519:178794 -k1,5300:13572525,44337519:178794 -k1,5300:15247506,44337519:178794 -k1,5300:19116632,44337519:178794 -k1,5300:19946854,44337519:178794 -k1,5300:22811969,44337519:178794 -k1,5300:25152140,44337519:178794 -k1,5300:28692931,44337519:178794 -k1,5300:31923737,44337519:178794 -k1,5300:32583029,44337519:0 -) -] -(1,5302:32583029,45706769:0,0,0 -g1,5302:32583029,45706769 -) -) -] -(1,5302:6630773,47279633:25952256,485622,11795 -(1,5302:6630773,47279633:25952256,485622,11795 -(1,5302:6630773,47279633:0,0,0 -v1,5302:6630773,47279633:0,0,0 -) -g1,5302:6830002,47279633 -k1,5302:31786110,47279633:24956108 -) -) -] -h1,5302:4262630,4025873:0,0,0 +k1,5283:22359413,9828725:10223616 +k1,5283:32583029,9828725:10223616 +) +] +(1,5286:6630773,14556498:25952256,131072,0 +r1,5286:32583029,14556498:25952256,131072,0 +g1,5286:32583029,14556498 +g1,5286:32583029,14556498 +) +(1,5288:6630773,15876399:25952256,513147,134348 +k1,5288:8596853,15876399:1966080 +k1,5287:8596853,15876399:0 +k1,5287:9787977,15876399:288693 +k1,5287:10491424,15876399:288604 +k1,5287:12611193,15876399:288693 +k1,5287:13431384,15876399:288694 +k1,5287:15858517,15876399:288693 +k1,5287:16503071,15876399:288694 +k1,5287:18017943,15876399:288693 +k1,5287:19289676,15876399:288693 +k1,5287:22940367,15876399:288694 +k1,5287:25805936,15876399:288693 +k1,5287:27113715,15876399:288694 +k1,5287:29055881,15876399:288693 +k1,5288:32583029,15876399:1966080 +) +(1,5288:6630773,16717887:25952256,513147,126483 +g1,5288:8596853,16717887 +g1,5287:10937799,16717887 +g1,5287:12421534,16717887 +g1,5287:13791236,16717887 +g1,5287:15946715,16717887 +g1,5287:17800728,16717887 +g1,5287:18809327,16717887 +g1,5287:20027641,16717887 +g1,5287:23386361,16717887 +g1,5287:24754097,16717887 +g1,5287:25620482,16717887 +k1,5288:30616949,16717887:4407954 +g1,5288:32583029,16717887 +) +(1,5289:6630773,18345807:25952256,473825,95026 +k1,5289:27178275,18345807:20547502 +h1,5289:27178275,18345807:0,0,0 +g1,5289:28475232,18345807 +g1,5289:30616949,18345807 +g1,5289:32583029,18345807 +) +(1,5290:6630773,19187295:25952256,505283,134348 +k1,5290:26177541,19187295:19546768 +h1,5289:26177541,19187295:0,0,0 +g1,5289:30167372,19187295 +g1,5290:30616949,19187295 +g1,5290:32583029,19187295 +) +(1,5290:6630773,20421999:25952256,131072,0 +r1,5290:32583029,20421999:25952256,131072,0 +g1,5290:32583029,20421999 +g1,5290:34549109,20421999 +) +(1,5294:6630773,23229567:25952256,32768,229376 +(1,5294:6630773,23229567:0,32768,229376 +(1,5294:6630773,23229567:5505024,32768,229376 +r1,5294:12135797,23229567:5505024,262144,229376 +) +k1,5294:6630773,23229567:-5505024 +) +(1,5294:6630773,23229567:25952256,32768,0 +r1,5294:32583029,23229567:25952256,32768,0 +) +) +(1,5294:6630773,24833895:25952256,615776,151780 +(1,5294:6630773,24833895:1974731,582746,14155 +g1,5294:6630773,24833895 +g1,5294:8605504,24833895 +) +g1,5294:10904245,24833895 +g1,5294:11961996,24833895 +g1,5294:13695292,24833895 +k1,5294:32583029,24833895:15886712 +g1,5294:32583029,24833895 +) +(1,5297:6630773,26068599:25952256,513147,134348 +k1,5296:7845631,26068599:172836 +k1,5296:9762380,26068599:172836 +k1,5296:11265598,26068599:172837 +k1,5296:12913649,26068599:172836 +k1,5296:15244586,26068599:172836 +k1,5296:16930648,26068599:172836 +k1,5296:20053259,26068599:172836 +k1,5296:21606939,26068599:172836 +k1,5296:25093932,26068599:172837 +k1,5296:29921790,26068599:172836 +k1,5296:31391584,26068599:172836 +k1,5296:32583029,26068599:0 +) +(1,5297:6630773,26910087:25952256,505283,134348 +k1,5296:8579705,26910087:250894 +k1,5296:10991975,26910087:250893 +k1,5296:12347151,26910087:250894 +k1,5296:13986097,26910087:250893 +k1,5296:14853029,26910087:250894 +k1,5296:20039439,26910087:250894 +k1,5296:20646192,26910087:250893 +k1,5296:23095164,26910087:250894 +k1,5296:24735420,26910087:250893 +k1,5296:27540907,26910087:250894 +k1,5296:30480087,26910087:250893 +k1,5296:31835263,26910087:250894 +k1,5296:32583029,26910087:0 +) +(1,5297:6630773,27751575:25952256,513147,134348 +k1,5296:10209139,27751575:202607 +k1,5296:11229635,27751575:202607 +k1,5296:12966440,27751575:202607 +k1,5296:13855209,27751575:202607 +k1,5296:14413676,27751575:202607 +k1,5296:16005646,27751575:202607 +k1,5296:18762847,27751575:202608 +k1,5296:20698226,27751575:202607 +k1,5296:22638848,27751575:202607 +k1,5296:24880935,27751575:202607 +k1,5296:28395732,27751575:202607 +k1,5296:29617424,27751575:202607 +k1,5296:31505617,27751575:202607 +k1,5297:32583029,27751575:0 +) +(1,5297:6630773,28593063:25952256,513147,134348 +k1,5296:8694264,28593063:174743 +k1,5296:11427532,28593063:174742 +k1,5296:11958135,28593063:174743 +k1,5296:14378796,28593063:174742 +k1,5296:15212831,28593063:174743 +k1,5296:17514872,28593063:174742 +k1,5296:18881060,28593063:174743 +k1,5296:21769648,28593063:174742 +k1,5296:23782021,28593063:174743 +k1,5296:26730247,28593063:174742 +k1,5296:30043509,28593063:174743 +k1,5297:32583029,28593063:0 +k1,5297:32583029,28593063:0 +) +(1,5299:6630773,29434551:25952256,513147,134348 +h1,5298:6630773,29434551:983040,0,0 +k1,5298:11032766,29434551:264050 +k1,5298:14246592,29434551:264051 +k1,5298:15891486,29434551:264050 +k1,5298:19296022,29434551:264051 +k1,5298:20999898,29434551:264050 +k1,5298:21915377,29434551:264051 +k1,5298:22927193,29434551:264050 +k1,5298:25675059,29434551:264051 +k1,5298:26590537,29434551:264050 +k1,5298:29006790,29434551:264051 +k1,5298:29953725,29434551:264050 +k1,5298:32583029,29434551:0 +) +(1,5299:6630773,30276039:25952256,505283,134348 +k1,5298:7493465,30276039:246654 +k1,5298:8095978,30276039:246653 +k1,5298:9580607,30276039:246654 +k1,5298:11111767,30276039:246654 +k1,5298:13196705,30276039:246653 +k1,5298:17341440,30276039:246654 +k1,5298:21425881,30276039:246653 +k1,5298:23212631,30276039:246654 +k1,5298:25492212,30276039:246654 +k1,5298:28480891,30276039:246653 +k1,5298:31391584,30276039:246654 +k1,5298:32583029,30276039:0 +) +(1,5299:6630773,31117527:25952256,473825,134348 +g1,5298:9883980,31117527 +k1,5299:32583029,31117527:19949158 +g1,5299:32583029,31117527 +) +(1,5301:6630773,31959015:25952256,513147,126483 +h1,5300:6630773,31959015:983040,0,0 +k1,5300:9565475,31959015:256246 +k1,5300:11751100,31959015:256245 +k1,5300:14232293,31959015:256246 +k1,5300:15507624,31959015:256246 +k1,5300:17417343,31959015:256246 +k1,5300:20613533,31959015:256245 +k1,5300:21529071,31959015:256246 +k1,5300:25275109,31959015:256246 +k1,5300:27391922,31959015:256246 +k1,5300:28299596,31959015:256246 +k1,5300:29303607,31959015:256245 +k1,5300:31931601,31959015:256246 +k1,5300:32583029,31959015:0 +) +(1,5301:6630773,32800503:25952256,513147,126483 +k1,5300:9598780,32800503:205664 +k1,5300:11193806,32800503:205663 +k1,5300:12837985,32800503:205664 +k1,5300:14235094,32800503:205664 +k1,5300:16602134,32800503:205663 +k1,5300:18523531,32800503:205664 +k1,5300:20195890,32800503:205663 +k1,5300:25458312,32800503:205664 +k1,5300:26855421,32800503:205664 +k1,5300:30224507,32800503:205663 +k1,5300:31089463,32800503:205664 +k1,5300:32583029,32800503:0 +) +(1,5301:6630773,33641991:25952256,473825,126483 +g1,5300:7185862,33641991 +g1,5300:11315940,33641991 +k1,5301:32583029,33641991:19698812 +g1,5301:32583029,33641991 +) +(1,5303:6630773,34483479:25952256,513147,134348 +h1,5302:6630773,34483479:983040,0,0 +k1,5302:8485142,34483479:243494 +k1,5302:9931877,34483479:243494 +k1,5302:12766665,34483479:243494 +k1,5302:13223106,34483479:243449 +k1,5302:14599062,34483479:243494 +k1,5302:16317116,34483479:243494 +k1,5302:17731083,34483479:243494 +k1,5302:20533103,34483479:243494 +k1,5302:21795682,34483479:243494 +k1,5302:23131661,34483479:243494 +k1,5302:24042311,34483479:243494 +k1,5302:24700603,34483479:243449 +k1,5302:27279145,34483479:243494 +k1,5302:30001211,34483479:243494 +k1,5302:31812326,34483479:243494 +k1,5302:32583029,34483479:0 +) +(1,5303:6630773,35324967:25952256,505283,126483 +g1,5302:9968521,35324967 +g1,5302:12292427,35324967 +k1,5303:32583029,35324967:18285856 +g1,5303:32583029,35324967 +) +(1,5304:6630773,38132535:25952256,32768,229376 +(1,5304:6630773,38132535:0,32768,229376 +(1,5304:6630773,38132535:5505024,32768,229376 +r1,5304:12135797,38132535:5505024,262144,229376 +) +k1,5304:6630773,38132535:-5505024 +) +(1,5304:6630773,38132535:25952256,32768,0 +r1,5304:32583029,38132535:25952256,32768,0 +) +) +(1,5304:6630773,39736863:25952256,606339,161218 +(1,5304:6630773,39736863:1974731,582746,14155 +g1,5304:6630773,39736863 +g1,5304:8605504,39736863 +) +g1,5304:11767747,39736863 +k1,5304:32583029,39736863:18128044 +g1,5304:32583029,39736863 +) +(1,5307:6630773,40971567:25952256,505283,134348 +k1,5306:7499830,40971567:241222 +k1,5306:8155852,40971567:241179 +k1,5306:11413041,40971567:241222 +k1,5306:12673348,40971567:241222 +k1,5306:15112648,40971567:241222 +k1,5306:17335022,40971567:241221 +k1,5306:18227672,40971567:241222 +k1,5306:18824754,40971567:241222 +k1,5306:21357770,40971567:241222 +k1,5306:24441287,40971567:241221 +k1,5306:26407417,40971567:241222 +k1,5306:27180136,40971567:241222 +k1,5306:27777218,40971567:241222 +k1,5306:30023185,40971567:241221 +k1,5306:30751953,40971567:241180 +k1,5306:32583029,40971567:0 +) +(1,5307:6630773,41813055:25952256,513147,134348 +k1,5306:7343388,41813055:181118 +k1,5306:9002997,41813055:181117 +k1,5306:10751736,41813055:181118 +k1,5306:13604101,41813055:181118 +k1,5306:18557550,41813055:181117 +k1,5306:20234855,41813055:181118 +k1,5306:23932634,41813055:181117 +k1,5306:26412100,41813055:181118 +k1,5306:27244646,41813055:181118 +k1,5306:30351290,41813055:181117 +k1,5306:30888268,41813055:181118 +k1,5306:32583029,41813055:0 +) +(1,5307:6630773,42654543:25952256,505283,126483 +k1,5306:8394412,42654543:254345 +k1,5306:10798338,42654543:254345 +k1,5306:14569345,42654543:254345 +k1,5306:15927972,42654543:254345 +k1,5306:16930084,42654543:254346 +k1,5306:20317050,42654543:254345 +k1,5306:21838861,42654543:254345 +k1,5306:25506976,42654543:254345 +k1,5306:29451653,42654543:254345 +k1,5306:31591469,42654543:254345 +k1,5306:32583029,42654543:0 +) +(1,5307:6630773,43496031:25952256,513147,134348 +k1,5306:7790701,43496031:140843 +k1,5306:11236524,43496031:140842 +k1,5306:12036659,43496031:140843 +k1,5306:14469296,43496031:140843 +k1,5306:17452435,43496031:140843 +k1,5306:21372083,43496031:140842 +k1,5306:23699207,43496031:140843 +k1,5306:24944332,43496031:140843 +k1,5306:26447669,43496031:140843 +k1,5306:28156132,43496031:140842 +k1,5306:30421652,43496031:140843 +k1,5306:32583029,43496031:0 +) +(1,5307:6630773,44337519:25952256,513147,134348 +k1,5306:10171564,44337519:178794 +k1,5306:11725959,44337519:178794 +k1,5306:12260613,44337519:178794 +k1,5306:13572525,44337519:178794 +k1,5306:15247506,44337519:178794 +k1,5306:19116632,44337519:178794 +k1,5306:19946854,44337519:178794 +k1,5306:22811969,44337519:178794 +k1,5306:25152140,44337519:178794 +k1,5306:28692931,44337519:178794 +k1,5306:31923737,44337519:178794 +k1,5306:32583029,44337519:0 +) +] +(1,5308:32583029,45706769:0,0,0 +g1,5308:32583029,45706769 +) +) +] +(1,5308:6630773,47279633:25952256,485622,11795 +(1,5308:6630773,47279633:25952256,485622,11795 +(1,5308:6630773,47279633:0,0,0 +v1,5308:6630773,47279633:0,0,0 +) +g1,5308:6830002,47279633 +k1,5308:31786110,47279633:24956108 +) +) +] +h1,5308:4262630,4025873:0,0,0 ] !14287 }98 -Input:686:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:687:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:688:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:689:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:690:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!436 +Input:682:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:683:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:684:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:685:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:686:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!466 {99 -[1,5347:4262630,47279633:28320399,43253760,0 -(1,5347:4262630,4025873:0,0,0 -[1,5347:-473657,4025873:25952256,0,0 -(1,5347:-473657,-710414:25952256,0,0 -h1,5347:-473657,-710414:0,0,0 -(1,5347:-473657,-710414:0,0,0 -(1,5347:-473657,-710414:0,0,0 -g1,5347:-473657,-710414 -(1,5347:-473657,-710414:65781,0,65781 -g1,5347:-407876,-710414 -[1,5347:-407876,-644633:0,0,0 +[1,5353:4262630,47279633:28320399,43253760,0 +(1,5353:4262630,4025873:0,0,0 +[1,5353:-473657,4025873:25952256,0,0 +(1,5353:-473657,-710414:25952256,0,0 +h1,5353:-473657,-710414:0,0,0 +(1,5353:-473657,-710414:0,0,0 +(1,5353:-473657,-710414:0,0,0 +g1,5353:-473657,-710414 +(1,5353:-473657,-710414:65781,0,65781 +g1,5353:-407876,-710414 +[1,5353:-407876,-644633:0,0,0 ] ) -k1,5347:-473657,-710414:-65781 +k1,5353:-473657,-710414:-65781 ) ) -k1,5347:25478599,-710414:25952256 -g1,5347:25478599,-710414 +k1,5353:25478599,-710414:25952256 +g1,5353:25478599,-710414 ) ] ) -[1,5347:6630773,47279633:25952256,43253760,0 -[1,5347:6630773,4812305:25952256,786432,0 -(1,5347:6630773,4812305:25952256,505283,134348 -(1,5347:6630773,4812305:25952256,505283,134348 -g1,5347:3078558,4812305 -[1,5347:3078558,4812305:0,0,0 -(1,5347:3078558,2439708:0,1703936,0 -k1,5347:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5347:2537886,2439708:1179648,16384,0 +[1,5353:6630773,47279633:25952256,43253760,0 +[1,5353:6630773,4812305:25952256,786432,0 +(1,5353:6630773,4812305:25952256,505283,134348 +(1,5353:6630773,4812305:25952256,505283,134348 +g1,5353:3078558,4812305 +[1,5353:3078558,4812305:0,0,0 +(1,5353:3078558,2439708:0,1703936,0 +k1,5353:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5353:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5347:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5353:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5347:3078558,4812305:0,0,0 -(1,5347:3078558,2439708:0,1703936,0 -g1,5347:29030814,2439708 -g1,5347:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5347:36151628,1915420:16384,1179648,0 +[1,5353:3078558,4812305:0,0,0 +(1,5353:3078558,2439708:0,1703936,0 +g1,5353:29030814,2439708 +g1,5353:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5353:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5347:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5353:37855564,2439708:1179648,16384,0 ) ) -k1,5347:3078556,2439708:-34777008 +k1,5353:3078556,2439708:-34777008 ) ] -[1,5347:3078558,4812305:0,0,0 -(1,5347:3078558,49800853:0,16384,2228224 -k1,5347:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5347:2537886,49800853:1179648,16384,0 +[1,5353:3078558,4812305:0,0,0 +(1,5353:3078558,49800853:0,16384,2228224 +k1,5353:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5353:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5347:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5353:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5347:3078558,4812305:0,0,0 -(1,5347:3078558,49800853:0,16384,2228224 -g1,5347:29030814,49800853 -g1,5347:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5347:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5347:37855564,49800853:1179648,16384,0 -) -) -k1,5347:3078556,49800853:-34777008 -) -] -g1,5347:6630773,4812305 -k1,5347:18752969,4812305:11325278 -g1,5347:20139710,4812305 -g1,5347:20788516,4812305 -g1,5347:24102671,4812305 -g1,5347:28605649,4812305 -g1,5347:30015328,4812305 -) -) -] -[1,5347:6630773,45706769:25952256,40108032,0 -(1,5347:6630773,45706769:25952256,40108032,0 -(1,5347:6630773,45706769:0,0,0 -g1,5347:6630773,45706769 -) -[1,5347:6630773,45706769:25952256,40108032,0 -(1,5301:6630773,6254097:25952256,513147,126483 -k1,5300:8315611,6254097:188651 -k1,5300:12194593,6254097:188650 -k1,5300:13011079,6254097:188651 -k1,5300:14218815,6254097:188651 -k1,5300:15630367,6254097:188650 -k1,5300:16478310,6254097:188651 -k1,5300:17686046,6254097:188651 -k1,5300:20280523,6254097:188650 -k1,5300:22747861,6254097:188651 -k1,5300:23149493,6254097:188640 -k1,5300:25699406,6254097:188651 -k1,5300:27218438,6254097:188651 -k1,5300:28058516,6254097:188650 -k1,5300:29861974,6254097:188651 -k1,5300:32583029,6254097:0 -) -(1,5301:6630773,7095585:25952256,505283,126483 -g1,5300:8021447,7095585 -g1,5300:10571452,7095585 -g1,5300:12932058,7095585 -g1,5300:14322732,7095585 -g1,5300:15852342,7095585 -g1,5300:16702999,7095585 -g1,5300:17994713,7095585 -k1,5301:32583029,7095585:12775590 -g1,5301:32583029,7095585 -) -(1,5302:6630773,9186845:25952256,555811,139132 -(1,5302:6630773,9186845:2450326,534184,12975 -g1,5302:6630773,9186845 -g1,5302:9081099,9186845 -) -g1,5302:11147187,9186845 -g1,5302:11984148,9186845 -g1,5302:12609886,9186845 -k1,5302:32583029,9186845:17523538 -g1,5302:32583029,9186845 -) -(1,5305:6630773,10421549:25952256,513147,126483 -k1,5304:7364405,10421549:246044 -k1,5304:9396352,10421549:246091 -k1,5304:10173940,10421549:246091 -k1,5304:10775891,10421549:246091 -k1,5304:12248161,10421549:246091 -k1,5304:13477292,10421549:246091 -k1,5304:15007888,10421549:246090 -k1,5304:17956028,10421549:246091 -k1,5304:20778995,10421549:246091 -k1,5304:22044171,10421549:246091 -k1,5304:23943735,10421549:246091 -k1,5304:27679618,10421549:246091 -k1,5304:29210215,10421549:246091 -k1,5304:30626779,10421549:246091 -k1,5304:32583029,10421549:0 -) -(1,5305:6630773,11263037:25952256,513147,126483 -k1,5304:8314259,11263037:297400 -k1,5304:9224421,11263037:297400 -k1,5304:10540906,11263037:297400 -k1,5304:13258551,11263037:297400 -k1,5304:16130861,11263037:297400 -k1,5304:16915750,11263037:297301 -k1,5304:18520593,11263037:297400 -k1,5304:20649069,11263037:297400 -k1,5304:21477966,11263037:297400 -k1,5304:23015307,11263037:297400 -k1,5304:24260358,11263037:297400 -k1,5304:27392845,11263037:297400 -k1,5304:28460948,11263037:297400 -k1,5304:31599989,11263037:297400 -k1,5304:32583029,11263037:0 -) -(1,5305:6630773,12104525:25952256,513147,134348 -k1,5304:8735276,12104525:185609 -k1,5304:10091358,12104525:185609 -k1,5304:11752182,12104525:185609 -k1,5304:14069677,12104525:185609 -k1,5304:14938171,12104525:185609 -k1,5304:16930608,12104525:185609 -k1,5304:18808358,12104525:185610 -k1,5304:19408796,12104525:185595 -k1,5304:23257868,12104525:185609 -k1,5304:23931052,12104525:185596 -k1,5304:25947737,12104525:185609 -k1,5304:27116386,12104525:185609 -k1,5304:28403000,12104525:185609 -k1,5304:29607694,12104525:185609 -k1,5304:32583029,12104525:0 -) -(1,5305:6630773,12946013:25952256,505283,7863 -k1,5305:32583028,12946013:21150432 -g1,5305:32583028,12946013 -) -(1,5307:7202902,14298763:25380127,513147,126483 -(1,5306:7202902,14298763:0,355205,0 -g1,5306:7202902,14298763 -g1,5306:5892182,14298763 -g1,5306:5564502,14298763 -(1,5306:5564502,14298763:1310720,355205,0 -k1,5306:6875222,14298763:1310720 -(1,5306:6875222,14298763:0,355205,0 -k1,5306:6476763,14298763:-398459 -) -) -g1,5306:7202902,14298763 -) -g1,5306:8598818,14298763 -g1,5306:10629123,14298763 -g1,5306:11359849,14298763 -g1,5306:11914938,14298763 -g1,5306:13340346,14298763 -k1,5307:32583028,14298763:18085972 -g1,5307:32583028,14298763 -) -(1,5308:7202902,15658026:25380127,513147,134348 -(1,5307:7202902,15658026:0,355205,0 -g1,5307:7202902,15658026 -g1,5307:5892182,15658026 -g1,5307:5564502,15658026 -(1,5307:5564502,15658026:1310720,355205,0 -k1,5307:6875222,15658026:1310720 -(1,5307:6875222,15658026:0,355205,0 -k1,5307:6476763,15658026:-398459 -) -) -g1,5307:7202902,15658026 -) -g1,5307:8598818,15658026 -g1,5307:9781087,15658026 -g1,5307:12682365,15658026 -g1,5307:14421690,15658026 -g1,5307:15035762,15658026 -g1,5307:18751653,15658026 -g1,5307:22138553,15658026 -g1,5307:25862308,15658026 -g1,5307:27252982,15658026 -g1,5307:29923574,15658026 -k1,5308:32583029,15658026:1255674 -g1,5308:32583029,15658026 -) -(1,5309:7202902,17017288:25380127,513147,115847 -(1,5308:7202902,17017288:0,355205,0 -g1,5308:7202902,17017288 -g1,5308:5892182,17017288 -g1,5308:5564502,17017288 -(1,5308:5564502,17017288:1310720,355205,0 -k1,5308:6875222,17017288:1310720 -(1,5308:6875222,17017288:0,355205,0 -k1,5308:6476763,17017288:-398459 -) -) -g1,5308:7202902,17017288 -) -g1,5308:10841460,17017288 -g1,5308:12529012,17017288 -g1,5308:13341003,17017288 -g1,5308:13896092,17017288 -(1,5308:13896092,17017288:0,424981,115847 -r1,5308:14254358,17017288:358266,540828,115847 -k1,5308:13896092,17017288:-358266 -) -(1,5308:13896092,17017288:358266,424981,115847 -k1,5308:13896092,17017288:3277 -h1,5308:14251081,17017288:0,411205,112570 -) -g1,5308:14453587,17017288 -g1,5308:15844261,17017288 -g1,5308:17226415,17017288 -g1,5308:18038406,17017288 -g1,5308:19256720,17017288 -g1,5308:20638874,17017288 -g1,5308:21497395,17017288 -g1,5308:22715709,17017288 -k1,5309:32583029,17017288:8525143 -g1,5309:32583029,17017288 -) -(1,5310:7202902,18376551:25380127,513147,126483 -(1,5309:7202902,18376551:0,355205,0 -g1,5309:7202902,18376551 -g1,5309:5892182,18376551 -g1,5309:5564502,18376551 -(1,5309:5564502,18376551:1310720,355205,0 -k1,5309:6875222,18376551:1310720 -(1,5309:6875222,18376551:0,355205,0 -k1,5309:6476763,18376551:-398459 -) -) -g1,5309:7202902,18376551 -) -g1,5309:8598818,18376551 -g1,5309:9212890,18376551 -g1,5309:12928781,18376551 -g1,5309:14119570,18376551 -g1,5309:14934837,18376551 -g1,5309:16153151,18376551 -g1,5309:17335420,18376551 -g1,5309:18150687,18376551 -g1,5309:19369001,18376551 -g1,5309:21307556,18376551 -g1,5309:22791291,18376551 -g1,5309:24370708,18376551 -g1,5309:26191953,18376551 -g1,5309:27138948,18376551 -k1,5310:32583029,18376551:2437289 -g1,5310:32583029,18376551 -) -(1,5311:7202902,19735814:25380127,513147,134348 -(1,5310:7202902,19735814:0,355205,0 -g1,5310:7202902,19735814 -g1,5310:5892182,19735814 -g1,5310:5564502,19735814 -(1,5310:5564502,19735814:1310720,355205,0 -k1,5310:6875222,19735814:1310720 -(1,5310:6875222,19735814:0,355205,0 -k1,5310:6476763,19735814:-398459 -) -) -g1,5310:7202902,19735814 -) -g1,5310:7816974,19735814 -g1,5310:10177580,19735814 -g1,5310:11852024,19735814 -g1,5310:13034293,19735814 -g1,5310:15301838,19735814 -g1,5310:17674241,19735814 -g1,5310:18489508,19735814 -g1,5310:19479101,19735814 -g1,5310:20361215,19735814 -k1,5311:32583029,19735814:11257780 -g1,5311:32583029,19735814 -) -(1,5314:6630773,21088564:25952256,513147,134348 -h1,5313:6630773,21088564:983040,0,0 -k1,5313:8331058,21088564:247352 -k1,5313:9109906,21088564:247351 -k1,5313:10941263,21088564:247352 -k1,5313:13726168,21088564:247351 -k1,5313:14624948,21088564:247352 -k1,5313:16487106,21088564:247351 -k1,5313:18895835,21088564:247352 -k1,5313:19868015,21088564:247352 -k1,5313:21399872,21088564:247351 -k1,5313:23027412,21088564:247352 -k1,5313:24266323,21088564:247351 -k1,5313:29187703,21088564:247352 -k1,5313:30264084,21088564:247351 -k1,5313:32227169,21088564:247352 -k1,5313:32583029,21088564:0 -) -(1,5314:6630773,21930052:25952256,513147,134348 -k1,5313:8710528,21930052:248679 -k1,5313:13633235,21930052:248679 -k1,5313:15038625,21930052:248680 -k1,5313:16909320,21930052:248679 -k1,5313:19495668,21930052:248679 -k1,5313:21174343,21930052:248679 -k1,5313:22074450,21930052:248679 -k1,5313:25879768,21930052:248679 -k1,5313:26779876,21930052:248680 -k1,5313:28404811,21930052:248679 -k1,5313:29672575,21930052:248679 -k1,5313:32583029,21930052:0 -) -(1,5314:6630773,22771540:25952256,513147,126483 -k1,5313:8494365,22771540:176695 -k1,5313:10047316,22771540:176695 -k1,5313:10906896,22771540:176695 -k1,5313:13265285,22771540:176695 -k1,5313:14831343,22771540:176695 -k1,5313:16575659,22771540:176695 -k1,5313:18239366,22771540:176695 -k1,5313:21040123,22771540:176695 -k1,5313:22235903,22771540:176695 -k1,5313:23801961,22771540:176695 -k1,5313:26533249,22771540:176695 -k1,5313:27901389,22771540:176695 -k1,5313:30373155,22771540:176695 -k1,5313:32583029,22771540:0 -) -(1,5314:6630773,23613028:25952256,513147,126483 -k1,5313:8173141,23613028:151694 -k1,5313:9343920,23613028:151694 -k1,5313:11668788,23613028:151694 -k1,5313:12479774,23613028:151694 -k1,5313:13650553,23613028:151694 -k1,5313:16530511,23613028:151694 -k1,5313:18200674,23613028:151694 -k1,5313:20513744,23613028:151693 -k1,5313:21769720,23613028:151694 -k1,5313:22669180,23613028:151694 -k1,5313:24334100,23613028:151694 -k1,5313:25137222,23613028:151694 -k1,5313:27052490,23613028:151694 -k1,5313:28223269,23613028:151694 -k1,5313:30028436,23613028:151694 -k1,5313:32583029,23613028:0 -) -(1,5314:6630773,24454516:25952256,505283,134348 -k1,5313:9899943,24454516:158176 -k1,5313:10709547,24454516:158176 -k1,5313:12569692,24454516:158175 -k1,5313:14117231,24454516:158176 -k1,5313:16485281,24454516:158176 -k1,5313:17294885,24454516:158176 -k1,5313:20708889,24454516:158175 -k1,5313:21886150,24454516:158176 -k1,5313:23697799,24454516:158176 -k1,5313:26410568,24454516:158176 -k1,5313:27181506,24454516:158176 -k1,5313:27695541,24454516:158175 -k1,5313:29307306,24454516:158176 -k1,5313:31064560,24454516:158176 -k1,5313:32583029,24454516:0 -) -(1,5314:6630773,25296004:25952256,513147,126483 -g1,5313:8991379,25296004 -g1,5313:12393352,25296004 -g1,5313:13358697,25296004 -g1,5313:15243512,25296004 -g1,5313:16955967,25296004 -g1,5313:18102847,25296004 -g1,5313:19321161,25296004 -k1,5314:32583029,25296004:10533604 -g1,5314:32583029,25296004 -) -(1,5317:6630773,27387264:25952256,555811,139132 -(1,5317:6630773,27387264:2450326,534184,12975 -g1,5317:6630773,27387264 -g1,5317:9081099,27387264 -) -g1,5317:10960475,27387264 -g1,5317:12100212,27387264 -g1,5317:13364664,27387264 -g1,5317:14843943,27387264 -g1,5317:15469681,27387264 -k1,5317:32583029,27387264:14663743 -g1,5317:32583029,27387264 -) -(1,5321:6630773,28621968:25952256,513147,134348 -k1,5320:7402036,28621968:283675 -k1,5320:9516873,28621968:283761 -k1,5320:10904915,28621968:283760 -k1,5320:11936441,28621968:283760 -k1,5320:15350200,28621968:283760 -k1,5320:17369353,28621968:283760 -k1,5320:20348610,28621968:283761 -(1,5320:20348610,28621968:0,452978,115847 -r1,5320:23168859,28621968:2820249,568825,115847 -k1,5320:20348610,28621968:-2820249 -) -(1,5320:20348610,28621968:2820249,452978,115847 -k1,5320:20348610,28621968:3277 -h1,5320:23165582,28621968:0,411205,112570 -) -k1,5320:23626289,28621968:283760 -k1,5320:24387806,28621968:283760 -k1,5320:25539918,28621968:283760 -k1,5320:27298893,28621968:283760 -k1,5320:27938514,28621968:283761 -k1,5320:29448453,28621968:283760 -k1,5320:30715253,28621968:283760 -k1,5321:32583029,28621968:0 -) -(1,5321:6630773,29463456:25952256,513147,134348 -g1,5320:13548098,29463456 -g1,5320:17109324,29463456 -g1,5320:18327638,29463456 -g1,5320:21502202,29463456 -k1,5321:32583029,29463456:9680978 -g1,5321:32583029,29463456 -) -v1,5321:6630773,30816206:0,393216,0 -(1,5327:6630773,31600873:25952256,1177883,589824 -k1,5327:6040949,31600873:-589824 -(1,5327:6040949,31600873:0,1177883,589824 -r1,5327:33172853,31600873:27131904,1767707,589824 -k1,5327:6040949,31600873:-27131904 -) -(1,5327:6040949,31600873:27131904,1177883,589824 -[1,5327:6630773,31600873:25952256,588059,0 -(1,5326:6630773,31423332:25952256,410518,101187 -(1,5323:6630773,31423332:0,0,0 -g1,5323:6630773,31423332 -g1,5323:6630773,31423332 -g1,5323:6303093,31423332 -(1,5323:6303093,31423332:0,0,0 -) -g1,5323:6630773,31423332 -) -g1,5326:7263065,31423332 -g1,5326:8843794,31423332 -g1,5326:9792231,31423332 -g1,5326:10740668,31423332 -g1,5326:12637542,31423332 -g1,5326:13269834,31423332 -h1,5326:15166708,31423332:0,0,0 -k1,5326:32583028,31423332:17416320 -g1,5326:32583028,31423332 -) -(1,5326:6630773,32089510:25952256,404226,101187 -h1,5326:6630773,32089510:0,0,0 -g1,5326:9159939,32089510 -g1,5326:9792231,32089510 -h1,5326:10424522,32089510:0,0,0 -k1,5326:32583030,32089510:22158508 -g1,5326:32583030,32089510 -) -] -) -k1,5327:32583029,31600873:-589824 -) -h1,5327:6630773,32190697:0,0,0 -(1,5330:6630773,33543446:25952256,513147,7863 -h1,5329:6630773,33543446:983040,0,0 -g1,5329:9004487,33543446 -g1,5329:10637644,33543446 -g1,5329:12945822,33543446 -g1,5329:14348292,33543446 -k1,5330:32583030,33543446:17078028 -g1,5330:32583030,33543446 -) -v1,5332:6630773,34720886:0,393216,0 -(1,5339:6630773,35742531:25952256,1414861,196608 -g1,5339:6630773,35742531 -g1,5339:6630773,35742531 -g1,5339:6434165,35742531 -(1,5339:6434165,35742531:0,1414861,196608 -r1,5339:32779637,35742531:26345472,1611469,196608 -k1,5339:6434165,35742531:-26345472 -) -(1,5339:6434165,35742531:26345472,1414861,196608 -[1,5339:6630773,35742531:25952256,1218253,0 -(1,5334:6630773,34934796:25952256,410518,101187 -(1,5333:6630773,34934796:0,0,0 -g1,5333:6630773,34934796 -g1,5333:6630773,34934796 -g1,5333:6303093,34934796 -(1,5333:6303093,34934796:0,0,0 -) -g1,5333:6630773,34934796 -) -k1,5334:6630773,34934796:0 -h1,5334:15166707,34934796:0,0,0 -k1,5334:32583029,34934796:17416322 -g1,5334:32583029,34934796 -) -(1,5338:6630773,35666510:25952256,404226,76021 -(1,5336:6630773,35666510:0,0,0 -g1,5336:6630773,35666510 -g1,5336:6630773,35666510 -g1,5336:6303093,35666510 -(1,5336:6303093,35666510:0,0,0 -) -g1,5336:6630773,35666510 -) -g1,5338:7579210,35666510 -g1,5338:8843793,35666510 -h1,5338:9159939,35666510:0,0,0 -k1,5338:32583029,35666510:23423090 -g1,5338:32583029,35666510 -) -] -) -g1,5339:32583029,35742531 -g1,5339:6630773,35742531 -g1,5339:6630773,35742531 -g1,5339:32583029,35742531 -g1,5339:32583029,35742531 -) -h1,5339:6630773,35939139:0,0,0 -(1,5343:6630773,37291889:25952256,513147,134348 -h1,5342:6630773,37291889:983040,0,0 -k1,5342:9013157,37291889:202657 -k1,5342:11388989,37291889:202658 -k1,5342:12250938,37291889:202657 -k1,5342:15508884,37291889:202658 -k1,5342:16730626,37291889:202657 -k1,5342:20449946,37291889:202658 -k1,5342:23792433,37291889:202657 -k1,5342:24611129,37291889:202658 -k1,5342:25832871,37291889:202657 -k1,5342:27018569,37291889:202658 -k1,5342:28353688,37291889:202657 -k1,5342:30745249,37291889:202658 -k1,5342:31563944,37291889:202657 -k1,5342:32583029,37291889:0 -) -(1,5343:6630773,38133377:25952256,513147,126483 -k1,5342:9448384,38133377:223696 -k1,5342:10868767,38133377:223696 -k1,5342:14582255,38133377:223696 -k1,5342:18362590,38133377:223696 -k1,5342:19577846,38133377:223696 -k1,5342:20867814,38133377:223697 -k1,5342:23167035,38133377:223696 -k1,5342:24359353,38133377:223696 -k1,5342:26848629,38133377:223696 -k1,5342:28091410,38133377:223696 -k1,5342:30844796,38133377:223696 -k1,5342:32051532,38133377:223696 -k1,5342:32583029,38133377:0 -) -(1,5343:6630773,38974865:25952256,505283,126483 -k1,5342:7921645,38974865:224601 -k1,5342:10358741,38974865:224601 -k1,5342:11234770,38974865:224601 -k1,5342:12478457,38974865:224602 -k1,5342:15330396,38974865:224601 -k1,5342:16746442,38974865:224601 -k1,5342:17990128,38974865:224601 -k1,5342:20387903,38974865:224601 -k1,5342:21744966,38974865:224601 -k1,5342:23035838,38974865:224601 -k1,5342:24008206,38974865:224602 -k1,5342:26582928,38974865:224601 -k1,5342:28850286,38974865:224601 -k1,5342:30245360,38974865:224601 -k1,5342:32583029,38974865:0 -) -(1,5343:6630773,39816353:25952256,505283,126483 -k1,5342:9123073,39816353:161184 -(1,5342:9123073,39816353:0,452978,115847 -r1,5342:11591610,39816353:2468537,568825,115847 -k1,5342:9123073,39816353:-2468537 -) -(1,5342:9123073,39816353:2468537,452978,115847 -k1,5342:9123073,39816353:3277 -h1,5342:11588333,39816353:0,411205,112570 -) -k1,5342:11752794,39816353:161184 -k1,5342:15403770,39816353:161184 -k1,5342:16180992,39816353:161184 -k1,5342:17361261,39816353:161184 -k1,5342:19527191,39816353:161184 -k1,5342:21069218,39816353:161183 -k1,5342:23511710,39816353:161184 -k1,5342:24288932,39816353:161184 -k1,5342:26201893,39816353:161184 -k1,5342:28060459,39816353:161184 -k1,5342:29507459,39816353:161184 -k1,5342:30320071,39816353:161184 -k1,5343:32583029,39816353:0 -) -(1,5343:6630773,40657841:25952256,513147,134348 -k1,5342:8049941,40657841:176605 -k1,5342:8582405,40657841:176604 -k1,5342:10614334,40657841:176605 -k1,5342:13141060,40657841:176605 -k1,5342:14711616,40657841:176605 -(1,5342:14711616,40657841:0,452978,122846 -r1,5342:17531865,40657841:2820249,575824,122846 -k1,5342:14711616,40657841:-2820249 -) -(1,5342:14711616,40657841:2820249,452978,122846 -k1,5342:14711616,40657841:3277 -h1,5342:17528588,40657841:0,411205,112570 -) -k1,5342:17708469,40657841:176604 -k1,5342:19745641,40657841:176605 -k1,5342:20573674,40657841:176605 -k1,5342:21498045,40657841:176605 -k1,5342:24024770,40657841:176604 -k1,5342:24667336,40657841:176605 -k1,5342:25712293,40657841:176605 -k1,5342:27437514,40657841:176605 -k1,5342:28072215,40657841:176604 -k1,5342:28900248,40657841:176605 -k1,5342:29824619,40657841:176605 -k1,5342:32583029,40657841:0 -) -(1,5343:6630773,41499329:25952256,505283,134348 -g1,5342:7446040,41499329 -g1,5342:8664354,41499329 -g1,5342:11022339,41499329 -g1,5342:12919606,41499329 -g1,5342:14137920,41499329 -g1,5342:16168225,41499329 -g1,5342:16898951,41499329 -g1,5342:18389895,41499329 -g1,5342:20908443,41499329 -g1,5342:21463532,41499329 -g1,5342:24997233,41499329 -(1,5342:24997233,41499329:0,452978,115847 -r1,5342:27465770,41499329:2468537,568825,115847 -k1,5342:24997233,41499329:-2468537 -) -(1,5342:24997233,41499329:2468537,452978,115847 -k1,5342:24997233,41499329:3277 -h1,5342:27462493,41499329:0,411205,112570 -) -g1,5342:27664999,41499329 -g1,5342:28395725,41499329 -k1,5343:32583029,41499329:1121530 -g1,5343:32583029,41499329 -) -(1,5345:6630773,42340817:25952256,513147,126483 -h1,5344:6630773,42340817:983040,0,0 -k1,5344:9487365,42340817:211559 -k1,5344:11708913,42340817:211559 -k1,5344:14518320,42340817:211560 -k1,5344:15195840,42340817:211559 -k1,5344:16577872,42340817:211559 -k1,5344:18264646,42340817:211559 -k1,5344:19246908,42340817:211559 -k1,5344:19873298,42340817:211547 -k1,5344:21915934,42340817:211560 -k1,5344:23704945,42340817:211559 -k1,5344:24532542,42340817:211559 -k1,5344:25763186,42340817:211559 -k1,5344:28057479,42340817:211559 -k1,5344:29923823,42340817:211560 -k1,5344:31267844,42340817:211559 -k1,5344:32227169,42340817:211559 -k1,5344:32583029,42340817:0 -) -(1,5345:6630773,43182305:25952256,513147,126483 -k1,5344:9483446,43182305:143415 -k1,5344:10971003,43182305:143414 -k1,5344:13157175,43182305:143415 -k1,5344:14694541,43182305:143415 -k1,5344:15608658,43182305:143414 -k1,5344:18494099,43182305:143415 -k1,5344:22125995,43182305:143415 -k1,5344:24066406,43182305:143414 -k1,5344:25777442,43182305:143415 -k1,5344:27806328,43182305:143415 -k1,5344:29120215,43182305:143414 -k1,5344:30367912,43182305:143415 -k1,5344:32583029,43182305:0 -) -(1,5345:6630773,44023793:25952256,513147,134348 -k1,5344:9532941,44023793:168006 -k1,5344:10387109,44023793:168006 -k1,5344:13645138,44023793:168006 -k1,5344:15842139,44023793:168006 -k1,5344:16693030,44023793:168006 -k1,5344:19295043,44023793:168006 -k1,5344:20857000,44023793:168006 -k1,5344:22989121,44023793:168007 -k1,5344:23840012,44023793:168006 -k1,5344:26442025,44023793:168006 -k1,5344:27296193,44023793:168006 -k1,5344:28958420,44023793:168006 -k1,5344:30448287,44023793:168006 -k1,5344:31563944,44023793:168006 -k1,5344:32583029,44023793:0 -) -(1,5345:6630773,44865281:25952256,505283,126483 -g1,5344:8661078,44865281 -g1,5344:9476345,44865281 -g1,5344:10694659,44865281 -g1,5344:13804342,44865281 -g1,5344:15855618,44865281 -g1,5344:17963911,44865281 -k1,5345:32583029,44865281:13432261 -g1,5345:32583029,44865281 -) -(1,5347:6630773,45706769:25952256,513147,134348 -h1,5346:6630773,45706769:983040,0,0 -k1,5346:9589437,45706769:192389 -k1,5346:10137686,45706769:192389 -k1,5346:12161151,45706769:192389 -k1,5346:12885037,45706769:192389 -k1,5346:15684448,45706769:192389 -k1,5346:16895922,45706769:192389 -k1,5346:19247067,45706769:192389 -k1,5346:20543738,45706769:192389 -k1,5346:21483894,45706769:192390 -k1,5346:23487698,45706769:192389 -k1,5346:24331515,45706769:192389 -k1,5346:24879764,45706769:192389 -k1,5346:26298332,45706769:192389 -k1,5346:27473761,45706769:192389 -k1,5346:29993333,45706769:192389 -k1,5346:30845014,45706769:192389 -k1,5346:32583029,45706769:0 -) -] -(1,5347:32583029,45706769:0,0,0 -g1,5347:32583029,45706769 -) -) -] -(1,5347:6630773,47279633:25952256,0,0 -h1,5347:6630773,47279633:25952256,0,0 -) -] -h1,5347:4262630,4025873:0,0,0 +[1,5353:3078558,4812305:0,0,0 +(1,5353:3078558,49800853:0,16384,2228224 +g1,5353:29030814,49800853 +g1,5353:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5353:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5353:37855564,49800853:1179648,16384,0 +) +) +k1,5353:3078556,49800853:-34777008 +) +] +g1,5353:6630773,4812305 +k1,5353:18771974,4812305:11344283 +g1,5353:20158715,4812305 +g1,5353:20807521,4812305 +g1,5353:24121676,4812305 +g1,5353:28605649,4812305 +g1,5353:30015328,4812305 +) +) +] +[1,5353:6630773,45706769:25952256,40108032,0 +(1,5353:6630773,45706769:25952256,40108032,0 +(1,5353:6630773,45706769:0,0,0 +g1,5353:6630773,45706769 +) +[1,5353:6630773,45706769:25952256,40108032,0 +(1,5307:6630773,6254097:25952256,513147,126483 +k1,5306:8315611,6254097:188651 +k1,5306:12194593,6254097:188650 +k1,5306:13011079,6254097:188651 +k1,5306:14218815,6254097:188651 +k1,5306:15630367,6254097:188650 +k1,5306:16478310,6254097:188651 +k1,5306:17686046,6254097:188651 +k1,5306:20280523,6254097:188650 +k1,5306:22747861,6254097:188651 +k1,5306:23149493,6254097:188640 +k1,5306:25699406,6254097:188651 +k1,5306:27218438,6254097:188651 +k1,5306:28058516,6254097:188650 +k1,5306:29861974,6254097:188651 +k1,5306:32583029,6254097:0 +) +(1,5307:6630773,7095585:25952256,505283,126483 +g1,5306:8021447,7095585 +g1,5306:10571452,7095585 +g1,5306:12932058,7095585 +g1,5306:14322732,7095585 +g1,5306:15852342,7095585 +g1,5306:16702999,7095585 +g1,5306:17994713,7095585 +k1,5307:32583029,7095585:12775590 +g1,5307:32583029,7095585 +) +(1,5308:6630773,9186845:25952256,555811,139132 +(1,5308:6630773,9186845:2450326,534184,12975 +g1,5308:6630773,9186845 +g1,5308:9081099,9186845 +) +g1,5308:11147187,9186845 +g1,5308:11984148,9186845 +g1,5308:12609886,9186845 +k1,5308:32583029,9186845:17523538 +g1,5308:32583029,9186845 +) +(1,5311:6630773,10421549:25952256,513147,126483 +k1,5310:7364405,10421549:246044 +k1,5310:9396352,10421549:246091 +k1,5310:10173940,10421549:246091 +k1,5310:10775891,10421549:246091 +k1,5310:12248161,10421549:246091 +k1,5310:13477292,10421549:246091 +k1,5310:15007888,10421549:246090 +k1,5310:17956028,10421549:246091 +k1,5310:20778995,10421549:246091 +k1,5310:22044171,10421549:246091 +k1,5310:23943735,10421549:246091 +k1,5310:27679618,10421549:246091 +k1,5310:29210215,10421549:246091 +k1,5310:30626779,10421549:246091 +k1,5310:32583029,10421549:0 +) +(1,5311:6630773,11263037:25952256,513147,126483 +k1,5310:8314259,11263037:297400 +k1,5310:9224421,11263037:297400 +k1,5310:10540906,11263037:297400 +k1,5310:13258551,11263037:297400 +k1,5310:16130861,11263037:297400 +k1,5310:16915750,11263037:297301 +k1,5310:18520593,11263037:297400 +k1,5310:20649069,11263037:297400 +k1,5310:21477966,11263037:297400 +k1,5310:23015307,11263037:297400 +k1,5310:24260358,11263037:297400 +k1,5310:27392845,11263037:297400 +k1,5310:28460948,11263037:297400 +k1,5310:31599989,11263037:297400 +k1,5310:32583029,11263037:0 +) +(1,5311:6630773,12104525:25952256,513147,134348 +k1,5310:8735276,12104525:185609 +k1,5310:10091358,12104525:185609 +k1,5310:11752182,12104525:185609 +k1,5310:14069677,12104525:185609 +k1,5310:14938171,12104525:185609 +k1,5310:16930608,12104525:185609 +k1,5310:18808358,12104525:185610 +k1,5310:19408796,12104525:185595 +k1,5310:23257868,12104525:185609 +k1,5310:23931052,12104525:185596 +k1,5310:25947737,12104525:185609 +k1,5310:27116386,12104525:185609 +k1,5310:28403000,12104525:185609 +k1,5310:29607694,12104525:185609 +k1,5310:32583029,12104525:0 +) +(1,5311:6630773,12946013:25952256,505283,7863 +k1,5311:32583028,12946013:21150432 +g1,5311:32583028,12946013 +) +(1,5313:7202902,14298763:25380127,513147,126483 +(1,5312:7202902,14298763:0,355205,0 +g1,5312:7202902,14298763 +g1,5312:5892182,14298763 +g1,5312:5564502,14298763 +(1,5312:5564502,14298763:1310720,355205,0 +k1,5312:6875222,14298763:1310720 +(1,5312:6875222,14298763:0,355205,0 +k1,5312:6476763,14298763:-398459 +) +) +g1,5312:7202902,14298763 +) +g1,5312:8598818,14298763 +g1,5312:10629123,14298763 +g1,5312:11359849,14298763 +g1,5312:11914938,14298763 +g1,5312:13340346,14298763 +k1,5313:32583028,14298763:18085972 +g1,5313:32583028,14298763 +) +(1,5314:7202902,15658026:25380127,513147,134348 +(1,5313:7202902,15658026:0,355205,0 +g1,5313:7202902,15658026 +g1,5313:5892182,15658026 +g1,5313:5564502,15658026 +(1,5313:5564502,15658026:1310720,355205,0 +k1,5313:6875222,15658026:1310720 +(1,5313:6875222,15658026:0,355205,0 +k1,5313:6476763,15658026:-398459 +) +) +g1,5313:7202902,15658026 +) +g1,5313:8598818,15658026 +g1,5313:9781087,15658026 +g1,5313:12682365,15658026 +g1,5313:14421690,15658026 +g1,5313:15035762,15658026 +g1,5313:18751653,15658026 +g1,5313:22138553,15658026 +g1,5313:25862308,15658026 +g1,5313:27252982,15658026 +g1,5313:29923574,15658026 +k1,5314:32583029,15658026:1255674 +g1,5314:32583029,15658026 +) +(1,5315:7202902,17017288:25380127,513147,115847 +(1,5314:7202902,17017288:0,355205,0 +g1,5314:7202902,17017288 +g1,5314:5892182,17017288 +g1,5314:5564502,17017288 +(1,5314:5564502,17017288:1310720,355205,0 +k1,5314:6875222,17017288:1310720 +(1,5314:6875222,17017288:0,355205,0 +k1,5314:6476763,17017288:-398459 +) +) +g1,5314:7202902,17017288 +) +g1,5314:10841460,17017288 +g1,5314:12529012,17017288 +g1,5314:13341003,17017288 +g1,5314:13896092,17017288 +(1,5314:13896092,17017288:0,424981,115847 +r1,5314:14254358,17017288:358266,540828,115847 +k1,5314:13896092,17017288:-358266 +) +(1,5314:13896092,17017288:358266,424981,115847 +k1,5314:13896092,17017288:3277 +h1,5314:14251081,17017288:0,411205,112570 +) +g1,5314:14453587,17017288 +g1,5314:15844261,17017288 +g1,5314:17226415,17017288 +g1,5314:18038406,17017288 +g1,5314:19256720,17017288 +g1,5314:20638874,17017288 +g1,5314:21497395,17017288 +g1,5314:22715709,17017288 +k1,5315:32583029,17017288:8525143 +g1,5315:32583029,17017288 +) +(1,5316:7202902,18376551:25380127,513147,126483 +(1,5315:7202902,18376551:0,355205,0 +g1,5315:7202902,18376551 +g1,5315:5892182,18376551 +g1,5315:5564502,18376551 +(1,5315:5564502,18376551:1310720,355205,0 +k1,5315:6875222,18376551:1310720 +(1,5315:6875222,18376551:0,355205,0 +k1,5315:6476763,18376551:-398459 +) +) +g1,5315:7202902,18376551 +) +g1,5315:8598818,18376551 +g1,5315:9212890,18376551 +g1,5315:12928781,18376551 +g1,5315:14119570,18376551 +g1,5315:14934837,18376551 +g1,5315:16153151,18376551 +g1,5315:17335420,18376551 +g1,5315:18150687,18376551 +g1,5315:19369001,18376551 +g1,5315:21307556,18376551 +g1,5315:22791291,18376551 +g1,5315:24370708,18376551 +g1,5315:26191953,18376551 +g1,5315:27138948,18376551 +k1,5316:32583029,18376551:2437289 +g1,5316:32583029,18376551 +) +(1,5317:7202902,19735814:25380127,513147,134348 +(1,5316:7202902,19735814:0,355205,0 +g1,5316:7202902,19735814 +g1,5316:5892182,19735814 +g1,5316:5564502,19735814 +(1,5316:5564502,19735814:1310720,355205,0 +k1,5316:6875222,19735814:1310720 +(1,5316:6875222,19735814:0,355205,0 +k1,5316:6476763,19735814:-398459 +) +) +g1,5316:7202902,19735814 +) +g1,5316:7816974,19735814 +g1,5316:10177580,19735814 +g1,5316:11852024,19735814 +g1,5316:13034293,19735814 +g1,5316:15301838,19735814 +g1,5316:17674241,19735814 +g1,5316:18489508,19735814 +g1,5316:19479101,19735814 +g1,5316:20361215,19735814 +k1,5317:32583029,19735814:11257780 +g1,5317:32583029,19735814 +) +(1,5320:6630773,21088564:25952256,513147,134348 +h1,5319:6630773,21088564:983040,0,0 +k1,5319:8331058,21088564:247352 +k1,5319:9109906,21088564:247351 +k1,5319:10941263,21088564:247352 +k1,5319:13726168,21088564:247351 +k1,5319:14624948,21088564:247352 +k1,5319:16487106,21088564:247351 +k1,5319:18895835,21088564:247352 +k1,5319:19868015,21088564:247352 +k1,5319:21399872,21088564:247351 +k1,5319:23027412,21088564:247352 +k1,5319:24266323,21088564:247351 +k1,5319:29187703,21088564:247352 +k1,5319:30264084,21088564:247351 +k1,5319:32227169,21088564:247352 +k1,5319:32583029,21088564:0 +) +(1,5320:6630773,21930052:25952256,513147,134348 +k1,5319:8710528,21930052:248679 +k1,5319:13633235,21930052:248679 +k1,5319:15038625,21930052:248680 +k1,5319:16909320,21930052:248679 +k1,5319:19495668,21930052:248679 +k1,5319:21174343,21930052:248679 +k1,5319:22074450,21930052:248679 +k1,5319:25879768,21930052:248679 +k1,5319:26779876,21930052:248680 +k1,5319:28404811,21930052:248679 +k1,5319:29672575,21930052:248679 +k1,5319:32583029,21930052:0 +) +(1,5320:6630773,22771540:25952256,513147,126483 +k1,5319:8494365,22771540:176695 +k1,5319:10047316,22771540:176695 +k1,5319:10906896,22771540:176695 +k1,5319:13265285,22771540:176695 +k1,5319:14831343,22771540:176695 +k1,5319:16575659,22771540:176695 +k1,5319:18239366,22771540:176695 +k1,5319:21040123,22771540:176695 +k1,5319:22235903,22771540:176695 +k1,5319:23801961,22771540:176695 +k1,5319:26533249,22771540:176695 +k1,5319:27901389,22771540:176695 +k1,5319:30373155,22771540:176695 +k1,5319:32583029,22771540:0 +) +(1,5320:6630773,23613028:25952256,513147,126483 +k1,5319:8173141,23613028:151694 +k1,5319:9343920,23613028:151694 +k1,5319:11668788,23613028:151694 +k1,5319:12479774,23613028:151694 +k1,5319:13650553,23613028:151694 +k1,5319:16530511,23613028:151694 +k1,5319:18200674,23613028:151694 +k1,5319:20513744,23613028:151693 +k1,5319:21769720,23613028:151694 +k1,5319:22669180,23613028:151694 +k1,5319:24334100,23613028:151694 +k1,5319:25137222,23613028:151694 +k1,5319:27052490,23613028:151694 +k1,5319:28223269,23613028:151694 +k1,5319:30028436,23613028:151694 +k1,5319:32583029,23613028:0 +) +(1,5320:6630773,24454516:25952256,505283,134348 +k1,5319:9899943,24454516:158176 +k1,5319:10709547,24454516:158176 +k1,5319:12569692,24454516:158175 +k1,5319:14117231,24454516:158176 +k1,5319:16485281,24454516:158176 +k1,5319:17294885,24454516:158176 +k1,5319:20708889,24454516:158175 +k1,5319:21886150,24454516:158176 +k1,5319:23697799,24454516:158176 +k1,5319:26410568,24454516:158176 +k1,5319:27181506,24454516:158176 +k1,5319:27695541,24454516:158175 +k1,5319:29307306,24454516:158176 +k1,5319:31064560,24454516:158176 +k1,5319:32583029,24454516:0 +) +(1,5320:6630773,25296004:25952256,513147,126483 +g1,5319:8991379,25296004 +g1,5319:12393352,25296004 +g1,5319:13358697,25296004 +g1,5319:15243512,25296004 +g1,5319:16955967,25296004 +g1,5319:18102847,25296004 +g1,5319:19321161,25296004 +k1,5320:32583029,25296004:10533604 +g1,5320:32583029,25296004 +) +(1,5323:6630773,27387264:25952256,555811,139132 +(1,5323:6630773,27387264:2450326,534184,12975 +g1,5323:6630773,27387264 +g1,5323:9081099,27387264 +) +g1,5323:10960475,27387264 +g1,5323:12100212,27387264 +g1,5323:13364664,27387264 +g1,5323:14843943,27387264 +g1,5323:15469681,27387264 +k1,5323:32583029,27387264:14663743 +g1,5323:32583029,27387264 +) +(1,5327:6630773,28621968:25952256,513147,134348 +k1,5326:7402036,28621968:283675 +k1,5326:9516873,28621968:283761 +k1,5326:10904915,28621968:283760 +k1,5326:11936441,28621968:283760 +k1,5326:15350200,28621968:283760 +k1,5326:17369353,28621968:283760 +k1,5326:20348610,28621968:283761 +(1,5326:20348610,28621968:0,452978,115847 +r1,5326:23168859,28621968:2820249,568825,115847 +k1,5326:20348610,28621968:-2820249 +) +(1,5326:20348610,28621968:2820249,452978,115847 +k1,5326:20348610,28621968:3277 +h1,5326:23165582,28621968:0,411205,112570 +) +k1,5326:23626289,28621968:283760 +k1,5326:24387806,28621968:283760 +k1,5326:25539918,28621968:283760 +k1,5326:27298893,28621968:283760 +k1,5326:27938514,28621968:283761 +k1,5326:29448453,28621968:283760 +k1,5326:30715253,28621968:283760 +k1,5327:32583029,28621968:0 +) +(1,5327:6630773,29463456:25952256,513147,134348 +g1,5326:13548098,29463456 +g1,5326:17109324,29463456 +g1,5326:18327638,29463456 +g1,5326:21502202,29463456 +k1,5327:32583029,29463456:9680978 +g1,5327:32583029,29463456 +) +v1,5327:6630773,30816206:0,393216,0 +(1,5333:6630773,31600873:25952256,1177883,589824 +k1,5333:6040949,31600873:-589824 +(1,5333:6040949,31600873:0,1177883,589824 +r1,5333:33172853,31600873:27131904,1767707,589824 +k1,5333:6040949,31600873:-27131904 +) +(1,5333:6040949,31600873:27131904,1177883,589824 +[1,5333:6630773,31600873:25952256,588059,0 +(1,5332:6630773,31423332:25952256,410518,101187 +(1,5329:6630773,31423332:0,0,0 +g1,5329:6630773,31423332 +g1,5329:6630773,31423332 +g1,5329:6303093,31423332 +(1,5329:6303093,31423332:0,0,0 +) +g1,5329:6630773,31423332 +) +g1,5332:7263065,31423332 +g1,5332:8843794,31423332 +g1,5332:9792231,31423332 +g1,5332:10740668,31423332 +g1,5332:12637542,31423332 +g1,5332:13269834,31423332 +h1,5332:15166708,31423332:0,0,0 +k1,5332:32583028,31423332:17416320 +g1,5332:32583028,31423332 +) +(1,5332:6630773,32089510:25952256,404226,101187 +h1,5332:6630773,32089510:0,0,0 +g1,5332:9159939,32089510 +g1,5332:9792231,32089510 +h1,5332:10424522,32089510:0,0,0 +k1,5332:32583030,32089510:22158508 +g1,5332:32583030,32089510 +) +] +) +k1,5333:32583029,31600873:-589824 +) +h1,5333:6630773,32190697:0,0,0 +(1,5336:6630773,33543446:25952256,513147,7863 +h1,5335:6630773,33543446:983040,0,0 +g1,5335:9004487,33543446 +g1,5335:10637644,33543446 +g1,5335:12945822,33543446 +g1,5335:14348292,33543446 +k1,5336:32583030,33543446:17078028 +g1,5336:32583030,33543446 +) +v1,5338:6630773,34720886:0,393216,0 +(1,5345:6630773,35742531:25952256,1414861,196608 +g1,5345:6630773,35742531 +g1,5345:6630773,35742531 +g1,5345:6434165,35742531 +(1,5345:6434165,35742531:0,1414861,196608 +r1,5345:32779637,35742531:26345472,1611469,196608 +k1,5345:6434165,35742531:-26345472 +) +(1,5345:6434165,35742531:26345472,1414861,196608 +[1,5345:6630773,35742531:25952256,1218253,0 +(1,5340:6630773,34934796:25952256,410518,101187 +(1,5339:6630773,34934796:0,0,0 +g1,5339:6630773,34934796 +g1,5339:6630773,34934796 +g1,5339:6303093,34934796 +(1,5339:6303093,34934796:0,0,0 +) +g1,5339:6630773,34934796 +) +k1,5340:6630773,34934796:0 +h1,5340:15166707,34934796:0,0,0 +k1,5340:32583029,34934796:17416322 +g1,5340:32583029,34934796 +) +(1,5344:6630773,35666510:25952256,404226,76021 +(1,5342:6630773,35666510:0,0,0 +g1,5342:6630773,35666510 +g1,5342:6630773,35666510 +g1,5342:6303093,35666510 +(1,5342:6303093,35666510:0,0,0 +) +g1,5342:6630773,35666510 +) +g1,5344:7579210,35666510 +g1,5344:8843793,35666510 +h1,5344:9159939,35666510:0,0,0 +k1,5344:32583029,35666510:23423090 +g1,5344:32583029,35666510 +) +] +) +g1,5345:32583029,35742531 +g1,5345:6630773,35742531 +g1,5345:6630773,35742531 +g1,5345:32583029,35742531 +g1,5345:32583029,35742531 +) +h1,5345:6630773,35939139:0,0,0 +(1,5349:6630773,37291889:25952256,513147,134348 +h1,5348:6630773,37291889:983040,0,0 +k1,5348:9013157,37291889:202657 +k1,5348:11388989,37291889:202658 +k1,5348:12250938,37291889:202657 +k1,5348:15508884,37291889:202658 +k1,5348:16730626,37291889:202657 +k1,5348:20449946,37291889:202658 +k1,5348:23792433,37291889:202657 +k1,5348:24611129,37291889:202658 +k1,5348:25832871,37291889:202657 +k1,5348:27018569,37291889:202658 +k1,5348:28353688,37291889:202657 +k1,5348:30745249,37291889:202658 +k1,5348:31563944,37291889:202657 +k1,5348:32583029,37291889:0 +) +(1,5349:6630773,38133377:25952256,513147,126483 +k1,5348:9448384,38133377:223696 +k1,5348:10868767,38133377:223696 +k1,5348:14582255,38133377:223696 +k1,5348:18362590,38133377:223696 +k1,5348:19577846,38133377:223696 +k1,5348:20867814,38133377:223697 +k1,5348:23167035,38133377:223696 +k1,5348:24359353,38133377:223696 +k1,5348:26848629,38133377:223696 +k1,5348:28091410,38133377:223696 +k1,5348:30844796,38133377:223696 +k1,5348:32051532,38133377:223696 +k1,5348:32583029,38133377:0 +) +(1,5349:6630773,38974865:25952256,505283,126483 +k1,5348:7921645,38974865:224601 +k1,5348:10358741,38974865:224601 +k1,5348:11234770,38974865:224601 +k1,5348:12478457,38974865:224602 +k1,5348:15330396,38974865:224601 +k1,5348:16746442,38974865:224601 +k1,5348:17990128,38974865:224601 +k1,5348:20387903,38974865:224601 +k1,5348:21744966,38974865:224601 +k1,5348:23035838,38974865:224601 +k1,5348:24008206,38974865:224602 +k1,5348:26582928,38974865:224601 +k1,5348:28850286,38974865:224601 +k1,5348:30245360,38974865:224601 +k1,5348:32583029,38974865:0 +) +(1,5349:6630773,39816353:25952256,505283,126483 +k1,5348:9123073,39816353:161184 +(1,5348:9123073,39816353:0,452978,115847 +r1,5348:11591610,39816353:2468537,568825,115847 +k1,5348:9123073,39816353:-2468537 +) +(1,5348:9123073,39816353:2468537,452978,115847 +k1,5348:9123073,39816353:3277 +h1,5348:11588333,39816353:0,411205,112570 +) +k1,5348:11752794,39816353:161184 +k1,5348:15403770,39816353:161184 +k1,5348:16180992,39816353:161184 +k1,5348:17361261,39816353:161184 +k1,5348:19527191,39816353:161184 +k1,5348:21069218,39816353:161183 +k1,5348:23511710,39816353:161184 +k1,5348:24288932,39816353:161184 +k1,5348:26201893,39816353:161184 +k1,5348:28060459,39816353:161184 +k1,5348:29507459,39816353:161184 +k1,5348:30320071,39816353:161184 +k1,5349:32583029,39816353:0 +) +(1,5349:6630773,40657841:25952256,513147,134348 +k1,5348:8049941,40657841:176605 +k1,5348:8582405,40657841:176604 +k1,5348:10614334,40657841:176605 +k1,5348:13141060,40657841:176605 +k1,5348:14711616,40657841:176605 +(1,5348:14711616,40657841:0,452978,122846 +r1,5348:17531865,40657841:2820249,575824,122846 +k1,5348:14711616,40657841:-2820249 +) +(1,5348:14711616,40657841:2820249,452978,122846 +k1,5348:14711616,40657841:3277 +h1,5348:17528588,40657841:0,411205,112570 +) +k1,5348:17708469,40657841:176604 +k1,5348:19745641,40657841:176605 +k1,5348:20573674,40657841:176605 +k1,5348:21498045,40657841:176605 +k1,5348:24024770,40657841:176604 +k1,5348:24667336,40657841:176605 +k1,5348:25712293,40657841:176605 +k1,5348:27437514,40657841:176605 +k1,5348:28072215,40657841:176604 +k1,5348:28900248,40657841:176605 +k1,5348:29824619,40657841:176605 +k1,5348:32583029,40657841:0 +) +(1,5349:6630773,41499329:25952256,505283,134348 +g1,5348:7446040,41499329 +g1,5348:8664354,41499329 +g1,5348:11022339,41499329 +g1,5348:12919606,41499329 +g1,5348:14137920,41499329 +g1,5348:16168225,41499329 +g1,5348:16898951,41499329 +g1,5348:18389895,41499329 +g1,5348:20908443,41499329 +g1,5348:21463532,41499329 +g1,5348:24997233,41499329 +(1,5348:24997233,41499329:0,452978,115847 +r1,5348:27465770,41499329:2468537,568825,115847 +k1,5348:24997233,41499329:-2468537 +) +(1,5348:24997233,41499329:2468537,452978,115847 +k1,5348:24997233,41499329:3277 +h1,5348:27462493,41499329:0,411205,112570 +) +g1,5348:27664999,41499329 +g1,5348:28395725,41499329 +k1,5349:32583029,41499329:1121530 +g1,5349:32583029,41499329 +) +(1,5351:6630773,42340817:25952256,513147,126483 +h1,5350:6630773,42340817:983040,0,0 +k1,5350:9487365,42340817:211559 +k1,5350:11708913,42340817:211559 +k1,5350:14518320,42340817:211560 +k1,5350:15195840,42340817:211559 +k1,5350:16577872,42340817:211559 +k1,5350:18264646,42340817:211559 +k1,5350:19246908,42340817:211559 +k1,5350:19873298,42340817:211547 +k1,5350:21915934,42340817:211560 +k1,5350:23704945,42340817:211559 +k1,5350:24532542,42340817:211559 +k1,5350:25763186,42340817:211559 +k1,5350:28057479,42340817:211559 +k1,5350:29923823,42340817:211560 +k1,5350:31267844,42340817:211559 +k1,5350:32227169,42340817:211559 +k1,5350:32583029,42340817:0 +) +(1,5351:6630773,43182305:25952256,513147,126483 +k1,5350:9483446,43182305:143415 +k1,5350:10971003,43182305:143414 +k1,5350:13157175,43182305:143415 +k1,5350:14694541,43182305:143415 +k1,5350:15608658,43182305:143414 +k1,5350:18494099,43182305:143415 +k1,5350:22125995,43182305:143415 +k1,5350:24066406,43182305:143414 +k1,5350:25777442,43182305:143415 +k1,5350:27806328,43182305:143415 +k1,5350:29120215,43182305:143414 +k1,5350:30367912,43182305:143415 +k1,5350:32583029,43182305:0 +) +(1,5351:6630773,44023793:25952256,513147,134348 +k1,5350:9532941,44023793:168006 +k1,5350:10387109,44023793:168006 +k1,5350:13645138,44023793:168006 +k1,5350:15842139,44023793:168006 +k1,5350:16693030,44023793:168006 +k1,5350:19295043,44023793:168006 +k1,5350:20857000,44023793:168006 +k1,5350:22989121,44023793:168007 +k1,5350:23840012,44023793:168006 +k1,5350:26442025,44023793:168006 +k1,5350:27296193,44023793:168006 +k1,5350:28958420,44023793:168006 +k1,5350:30448287,44023793:168006 +k1,5350:31563944,44023793:168006 +k1,5350:32583029,44023793:0 +) +(1,5351:6630773,44865281:25952256,505283,126483 +g1,5350:8661078,44865281 +g1,5350:9476345,44865281 +g1,5350:10694659,44865281 +g1,5350:13804342,44865281 +g1,5350:15855618,44865281 +g1,5350:17963911,44865281 +k1,5351:32583029,44865281:13432261 +g1,5351:32583029,44865281 +) +(1,5353:6630773,45706769:25952256,513147,134348 +h1,5352:6630773,45706769:983040,0,0 +k1,5352:9589437,45706769:192389 +k1,5352:10137686,45706769:192389 +k1,5352:12161151,45706769:192389 +k1,5352:12885037,45706769:192389 +k1,5352:15684448,45706769:192389 +k1,5352:16895922,45706769:192389 +k1,5352:19247067,45706769:192389 +k1,5352:20543738,45706769:192389 +k1,5352:21483894,45706769:192390 +k1,5352:23487698,45706769:192389 +k1,5352:24331515,45706769:192389 +k1,5352:24879764,45706769:192389 +k1,5352:26298332,45706769:192389 +k1,5352:27473761,45706769:192389 +k1,5352:29993333,45706769:192389 +k1,5352:30845014,45706769:192389 +k1,5352:32583029,45706769:0 +) +] +(1,5353:32583029,45706769:0,0,0 +g1,5353:32583029,45706769 +) +) +] +(1,5353:6630773,47279633:25952256,0,0 +h1,5353:6630773,47279633:25952256,0,0 +) +] +h1,5353:4262630,4025873:0,0,0 ] !23093 }99 !11 {100 -[1,5383:4262630,47279633:28320399,43253760,0 -(1,5383:4262630,4025873:0,0,0 -[1,5383:-473657,4025873:25952256,0,0 -(1,5383:-473657,-710414:25952256,0,0 -h1,5383:-473657,-710414:0,0,0 -(1,5383:-473657,-710414:0,0,0 -(1,5383:-473657,-710414:0,0,0 -g1,5383:-473657,-710414 -(1,5383:-473657,-710414:65781,0,65781 -g1,5383:-407876,-710414 -[1,5383:-407876,-644633:0,0,0 +[1,5389:4262630,47279633:28320399,43253760,0 +(1,5389:4262630,4025873:0,0,0 +[1,5389:-473657,4025873:25952256,0,0 +(1,5389:-473657,-710414:25952256,0,0 +h1,5389:-473657,-710414:0,0,0 +(1,5389:-473657,-710414:0,0,0 +(1,5389:-473657,-710414:0,0,0 +g1,5389:-473657,-710414 +(1,5389:-473657,-710414:65781,0,65781 +g1,5389:-407876,-710414 +[1,5389:-407876,-644633:0,0,0 ] ) -k1,5383:-473657,-710414:-65781 +k1,5389:-473657,-710414:-65781 ) ) -k1,5383:25478599,-710414:25952256 -g1,5383:25478599,-710414 +k1,5389:25478599,-710414:25952256 +g1,5389:25478599,-710414 ) ] ) -[1,5383:6630773,47279633:25952256,43253760,0 -[1,5383:6630773,4812305:25952256,786432,0 -(1,5383:6630773,4812305:25952256,485622,134348 -(1,5383:6630773,4812305:25952256,485622,134348 -g1,5383:3078558,4812305 -[1,5383:3078558,4812305:0,0,0 -(1,5383:3078558,2439708:0,1703936,0 -k1,5383:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5383:2537886,2439708:1179648,16384,0 +[1,5389:6630773,47279633:25952256,43253760,0 +[1,5389:6630773,4812305:25952256,786432,0 +(1,5389:6630773,4812305:25952256,485622,134348 +(1,5389:6630773,4812305:25952256,485622,134348 +g1,5389:3078558,4812305 +[1,5389:3078558,4812305:0,0,0 +(1,5389:3078558,2439708:0,1703936,0 +k1,5389:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5389:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5383:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5389:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5383:3078558,4812305:0,0,0 -(1,5383:3078558,2439708:0,1703936,0 -g1,5383:29030814,2439708 -g1,5383:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5383:36151628,1915420:16384,1179648,0 +[1,5389:3078558,4812305:0,0,0 +(1,5389:3078558,2439708:0,1703936,0 +g1,5389:29030814,2439708 +g1,5389:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5389:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5383:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5389:37855564,2439708:1179648,16384,0 ) ) -k1,5383:3078556,2439708:-34777008 +k1,5389:3078556,2439708:-34777008 ) ] -[1,5383:3078558,4812305:0,0,0 -(1,5383:3078558,49800853:0,16384,2228224 -k1,5383:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5383:2537886,49800853:1179648,16384,0 +[1,5389:3078558,4812305:0,0,0 +(1,5389:3078558,49800853:0,16384,2228224 +k1,5389:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5389:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5383:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5389:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 -) -] -) -) -) -] -[1,5383:3078558,4812305:0,0,0 -(1,5383:3078558,49800853:0,16384,2228224 -g1,5383:29030814,49800853 -g1,5383:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5383:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5383:37855564,49800853:1179648,16384,0 -) -) -k1,5383:3078556,49800853:-34777008 -) -] -g1,5383:6630773,4812305 -g1,5383:6630773,4812305 -g1,5383:9132937,4812305 -g1,5383:11356573,4812305 -k1,5383:31786111,4812305:20429538 -) -) -] -[1,5383:6630773,45706769:25952256,40108032,0 -(1,5383:6630773,45706769:25952256,40108032,0 -(1,5383:6630773,45706769:0,0,0 -g1,5383:6630773,45706769 -) -[1,5383:6630773,45706769:25952256,40108032,0 -(1,5347:6630773,6254097:25952256,513147,134348 -k1,5346:8907894,6254097:201596 -k1,5346:9725529,6254097:201597 -k1,5346:10946210,6254097:201596 -k1,5346:13741721,6254097:201596 -k1,5346:14413210,6254097:201596 -k1,5346:15146304,6254097:201597 -k1,5346:16633716,6254097:201596 -k1,5346:18229918,6254097:201596 -k1,5346:19082942,6254097:201596 -k1,5346:20384233,6254097:201597 -k1,5346:21000670,6254097:201594 -k1,5346:22596217,6254097:201596 -k1,5346:23816898,6254097:201596 -k1,5346:24433335,6254097:201594 -k1,5346:26466007,6254097:201596 -k1,5346:27650643,6254097:201596 -k1,5346:28538402,6254097:201597 -k1,5346:29510701,6254097:201596 -k1,5346:32583029,6254097:0 -) -(1,5347:6630773,7095585:25952256,505283,134348 -k1,5346:9242455,7095585:197336 -k1,5346:10052553,7095585:197336 -k1,5346:11268974,7095585:197336 -k1,5346:14520288,7095585:197336 -k1,5346:16963543,7095585:197336 -k1,5346:18663620,7095585:197336 -k1,5346:19543841,7095585:197336 -k1,5346:26571339,7095585:197336 -k1,5346:31016719,7095585:197336 -k1,5347:32583029,7095585:0 -) -(1,5347:6630773,7937073:25952256,513147,126483 -k1,5346:8513269,7937073:176594 -k1,5346:9975680,7937073:176595 -k1,5346:11719895,7937073:176594 -k1,5346:13399230,7937073:176594 -k1,5346:15910873,7937073:176595 -k1,5346:17284154,7937073:176594 -k1,5346:18844868,7937073:176594 -k1,5346:20193901,7937073:176594 -k1,5346:22671465,7937073:176595 -k1,5346:24508741,7937073:176594 -k1,5346:28175127,7937073:176594 -k1,5346:30774588,7937073:176595 -k1,5346:31563944,7937073:176594 -k1,5346:32583029,7937073:0 -) -(1,5347:6630773,8778561:25952256,505283,126483 -g1,5346:7694422,8778561 -g1,5346:9396392,8778561 -g1,5346:12755112,8778561 -g1,5346:15355580,8778561 -g1,5346:17506471,8778561 -g1,5346:19148147,8778561 -g1,5346:19960138,8778561 -g1,5346:21178452,8778561 -g1,5346:21792524,8778561 -g1,5346:25151244,8778561 -k1,5347:32583029,8778561:4856875 -g1,5347:32583029,8778561 -) -v1,5347:6630773,10144337:0,393216,0 -(1,5352:6630773,10340945:25952256,589824,589824 -k1,5352:6040949,10340945:-589824 -(1,5352:6040949,10340945:0,589824,589824 -r1,5352:33172853,10340945:27131904,1179648,589824 -k1,5352:6040949,10340945:-27131904 -) -(1,5352:6040949,10340945:27131904,589824,589824 -[1,5352:6630773,10340945:25952256,-78119,0 -(1,5351:6630773,10829582:25952256,410518,101187 -(1,5349:6630773,10829582:0,0,0 -g1,5349:6630773,10829582 -g1,5349:6630773,10829582 -g1,5349:6303093,10829582 -(1,5349:6303093,10829582:0,0,0 -) -g1,5349:6630773,10829582 -) -k1,5351:6630773,10829582:0 -g1,5351:7263065,10829582 -g1,5351:9792231,10829582 -h1,5351:15166708,10829582:0,0,0 -k1,5351:32583028,10829582:17416320 -g1,5351:32583028,10829582 -) -] -) -k1,5352:32583029,10340945:-589824 -) -h1,5352:6630773,10930769:0,0,0 -(1,5355:6630773,12296545:25952256,513147,134348 -h1,5354:6630773,12296545:983040,0,0 -k1,5354:9098103,12296545:230586 -k1,5354:10432971,12296545:230586 -k1,5354:12241009,12296545:230586 -k1,5354:13242297,12296545:230585 -k1,5354:16526861,12296545:230586 -k1,5354:19507338,12296545:230586 -k1,5354:21191512,12296545:230586 -k1,5354:22989719,12296545:230586 -k1,5354:24239390,12296545:230586 -k1,5354:26228961,12296545:230585 -k1,5354:28256544,12296545:230586 -k1,5354:29103168,12296545:230586 -k1,5354:31931601,12296545:230586 -k1,5354:32583029,12296545:0 -) -(1,5355:6630773,13138033:25952256,513147,126483 -k1,5354:7895093,13138033:146276 -k1,5354:9244611,13138033:146277 -k1,5354:12724048,13138033:146276 -k1,5354:14067011,13138033:146276 -k1,5354:16372043,13138033:146276 -k1,5354:17650782,13138033:146277 -k1,5354:18544824,13138033:146276 -k1,5354:21041221,13138033:146276 -k1,5354:21838925,13138033:146276 -k1,5354:23004287,13138033:146277 -k1,5354:24653304,13138033:146276 -k1,5354:27393495,13138033:146276 -k1,5354:28017528,13138033:146276 -k1,5354:29334278,13138033:146277 -k1,5354:31436804,13138033:146276 -k1,5354:32583029,13138033:0 -) -(1,5355:6630773,13979521:25952256,513147,134348 -g1,5354:7481430,13979521 -g1,5354:9071333,13979521 -g1,5354:10289647,13979521 -g1,5354:12647632,13979521 -g1,5354:13498289,13979521 -g1,5354:14053378,13979521 -g1,5354:15409317,13979521 -g1,5354:16701031,13979521 -g1,5354:20394640,13979521 -g1,5354:22329262,13979521 -g1,5354:23547576,13979521 -g1,5354:26800783,13979521 -g1,5354:29749903,13979521 -k1,5355:32583029,13979521:575411 -g1,5355:32583029,13979521 -) -v1,5355:6630773,15345297:0,393216,0 -(1,5360:6630773,15541905:25952256,589824,589824 -k1,5360:6040949,15541905:-589824 -(1,5360:6040949,15541905:0,589824,589824 -r1,5360:33172853,15541905:27131904,1179648,589824 -k1,5360:6040949,15541905:-27131904 -) -(1,5360:6040949,15541905:27131904,589824,589824 -[1,5360:6630773,15541905:25952256,-78119,0 -(1,5359:6630773,16030542:25952256,410518,101187 -(1,5357:6630773,16030542:0,0,0 -g1,5357:6630773,16030542 -g1,5357:6630773,16030542 -g1,5357:6303093,16030542 -(1,5357:6303093,16030542:0,0,0 -) -g1,5357:6630773,16030542 -) -k1,5359:6630773,16030542:0 -g1,5359:7263065,16030542 -g1,5359:9792231,16030542 -g1,5359:15482854,16030542 -g1,5359:16115146,16030542 -h1,5359:20225040,16030542:0,0,0 -k1,5359:32583029,16030542:12357989 -g1,5359:32583029,16030542 -) -] -) -k1,5360:32583029,15541905:-589824 -) -h1,5360:6630773,16131729:0,0,0 -(1,5363:6630773,17497505:25952256,513147,134348 -h1,5362:6630773,17497505:983040,0,0 -k1,5362:10634749,17497505:244176 -k1,5362:11410422,17497505:244176 -k1,5362:13008572,17497505:244176 -k1,5362:15229969,17497505:244176 -k1,5362:17172183,17497505:244176 -k1,5362:18435445,17497505:244177 -k1,5362:20510697,17497505:244176 -k1,5362:21286370,17497505:244176 -k1,5362:23477621,17497505:244176 -k1,5362:26566060,17497505:244176 -k1,5362:28499754,17497505:244176 -k1,5362:32227169,17497505:244176 -k1,5362:32583029,17497505:0 -) -(1,5363:6630773,18338993:25952256,505283,134348 -k1,5362:8907548,18338993:272029 -k1,5362:9862462,18338993:272029 -k1,5362:13582340,18338993:272029 -k1,5362:15552407,18338993:272029 -k1,5362:18006130,18338993:272029 -k1,5362:20444124,18338993:272029 -k1,5362:21872862,18338993:272028 -k1,5362:24432098,18338993:272029 -k1,5362:26583044,18338993:272029 -k1,5362:27506501,18338993:272029 -k1,5362:28896574,18338993:272029 -k1,5362:30058582,18338993:272029 -k1,5362:32583029,18338993:0 -) -(1,5363:6630773,19180481:25952256,609711,134348 -k1,5362:7993282,19180481:205799 -k1,5362:8881967,19180481:205800 -k1,5362:9443626,19180481:205799 -k1,5362:10782544,19180481:205800 -k1,5362:14505005,19180481:205799 -k1,5362:15323566,19180481:205799 -k1,5362:15885226,19180481:205800 -k1,5362:17690103,19180481:205799 -k1,5362:19276746,19180481:205799 -k1,5362:20586828,19180481:205800 -k1,5362:21540393,19180481:205799 -k1,5362:23323645,19180481:205800 -k1,5362:25264837,19180481:205799 -k1,5362:26489721,19180481:205799 -k1,5362:28413875,19180481:205800 -(1,5362:30552315,19180481:311689,609711,0 -$1,5362:30552315,19180481 -(1,5362:30552315,18905200:311689,334430,0 -) -$1,5362:30864004,19180481 -) -k1,5362:31069803,19180481:205799 -k1,5362:32583029,19180481:0 -) -(1,5363:6630773,20021969:25952256,505283,134348 -k1,5362:8714584,20021969:227831 -k1,5362:12546895,20021969:227831 -k1,5362:13793811,20021969:227831 -k1,5362:16071608,20021969:227831 -k1,5362:16915477,20021969:227831 -k1,5362:18162393,20021969:227831 -k1,5362:19558732,20021969:227832 -k1,5362:20437991,20021969:227831 -k1,5362:21413588,20021969:227831 -k1,5362:24648211,20021969:227831 -k1,5362:25558927,20021969:227831 -k1,5362:28597597,20021969:227831 -k1,5362:29844513,20021969:227831 -k1,5362:31298523,20021969:227831 -k1,5362:32583029,20021969:0 -) -(1,5363:6630773,20863457:25952256,513147,126483 -k1,5362:8050355,20863457:262872 -k1,5362:10269477,20863457:262872 -k1,5362:11678575,20863457:262873 -k1,5362:12592875,20863457:262872 -k1,5362:13973791,20863457:262872 -k1,5362:15462842,20863457:262872 -k1,5362:18314387,20863457:262873 -k1,5362:19803438,20863457:262872 -k1,5362:21170592,20863457:262872 -k1,5362:22181230,20863457:262872 -k1,5362:23765963,20863457:262872 -k1,5362:24688128,20863457:262873 -k1,5362:25306860,20863457:262872 -k1,5362:26911909,20863457:262872 -k1,5362:27530641,20863457:262872 -k1,5362:29676363,20863457:262873 -k1,5362:31281412,20863457:262872 -k1,5362:32227169,20863457:262872 -k1,5362:32583029,20863457:0 -) -(1,5363:6630773,21704945:25952256,513147,134348 -k1,5362:8773851,21704945:250398 -k1,5362:9683541,21704945:250398 -k1,5362:11606418,21704945:250398 -k1,5362:12542977,21704945:250397 -k1,5362:14182083,21704945:250398 -k1,5362:15118643,21704945:250398 -k1,5362:15827138,21704945:250398 -k1,5362:16609033,21704945:250398 -k1,5362:20830913,21704945:250398 -k1,5362:23002170,21704945:250397 -k1,5362:24449255,21704945:250398 -k1,5362:28703903,21704945:250398 -k1,5362:32051532,21704945:250398 -k1,5362:32583029,21704945:0 -) -(1,5363:6630773,22546433:25952256,505283,134348 -g1,5362:10134983,22546433 -g1,5362:10985640,22546433 -g1,5362:13892161,22546433 -g1,5362:15110475,22546433 -g1,5362:17028058,22546433 -g1,5362:19365727,22546433 -g1,5362:20180994,22546433 -k1,5363:32583029,22546433:9804188 -g1,5363:32583029,22546433 -) -(1,5364:6630773,24637693:25952256,555811,139132 -(1,5364:6630773,24637693:2450326,534184,12975 -g1,5364:6630773,24637693 -g1,5364:9081099,24637693 -) -g1,5364:10960475,24637693 -g1,5364:11910616,24637693 -g1,5364:14022842,24637693 -g1,5364:14648580,24637693 -k1,5364:32583029,24637693:15848897 -g1,5364:32583029,24637693 -) -(1,5368:6630773,25872397:25952256,513147,134348 -k1,5367:7705781,25872397:257119 -k1,5367:9356852,25872397:257120 -k1,5367:10745779,25872397:257120 -k1,5367:12388984,25872397:257119 -k1,5367:13305396,25872397:257120 -k1,5367:15993901,25872397:257119 -k1,5367:19013363,25872397:257119 -k1,5367:22932635,25872397:257120 -k1,5367:24526688,25872397:257119 -k1,5367:25531574,25872397:257120 -k1,5367:28802039,25872397:257120 -k1,5367:29820686,25872397:257119 -k1,5368:32583029,25872397:0 -) -(1,5368:6630773,26713885:25952256,513147,134348 -k1,5367:7328100,26713885:282484 -k1,5367:9495482,26713885:282567 -k1,5367:10405884,26713885:282567 -k1,5367:13195204,26713885:282568 -k1,5367:14496856,26713885:282567 -k1,5367:17763934,26713885:282568 -k1,5367:19733398,26713885:282567 -k1,5367:20698850,26713885:282567 -k1,5367:22167620,26713885:282568 -k1,5367:23109479,26713885:282567 -k1,5367:27227868,26713885:282567 -k1,5367:28642898,26713885:282568 -k1,5367:30211281,26713885:282567 -k1,5367:32583029,26713885:0 -) -(1,5368:6630773,27555373:25952256,513147,126483 -k1,5367:7640355,27555373:200212 -k1,5367:9170949,27555373:200213 -k1,5367:12384506,27555373:200212 -k1,5367:13755191,27555373:200212 -k1,5367:14946964,27555373:200213 -k1,5367:16431682,27555373:200212 -k1,5367:17650979,27555373:200212 -k1,5367:21367854,27555373:200213 -k1,5367:22700528,27555373:200212 -k1,5367:24497197,27555373:200212 -k1,5367:25383572,27555373:200213 -k1,5367:30248637,27555373:200212 -k1,5367:32583029,27555373:0 -) -(1,5368:6630773,28396861:25952256,513147,134348 -g1,5367:8552944,28396861 -g1,5367:9771258,28396861 -g1,5367:11305455,28396861 -g1,5367:14489194,28396861 -g1,5367:15549566,28396861 -g1,5367:16919268,28396861 -g1,5367:18110057,28396861 -g1,5367:21320665,28396861 -g1,5367:24282237,28396861 -k1,5368:32583029,28396861:4409920 -g1,5368:32583029,28396861 -) -(1,5370:7202902,29762637:25380127,513147,134348 -(1,5369:7202902,29762637:14421851,513147,126483 -g1,5369:6630773,29762637 -g1,5369:6630773,29762637 -g1,5369:6303093,29762637 -(1,5369:6303093,29762637:14993980,513147,126483 -g1,5369:6630773,29762637 -g1,5369:7336595,29762637 -g1,5369:8742342,29762637 -g1,5369:9503215,29762637 -g1,5369:11237953,29762637 -g1,5369:14019301,29762637 -g1,5369:15697022,29762637 -g1,5369:18184768,29762637 -) -g1,5369:21624753,29762637 -) -k1,5369:23180687,29762637:284536 -k1,5369:25421472,29762637:284535 -k1,5369:26934808,29762637:284536 -k1,5369:29148724,29762637:284536 -k1,5369:29789119,29762637:284535 -k1,5369:31356850,29762637:284536 -k1,5369:32583029,29762637:0 -) -(1,5370:7202902,30604125:25380127,513147,134348 -k1,5369:8327950,30604125:142008 -k1,5369:9661403,30604125:142008 -k1,5369:11418219,30604125:142009 -k1,5369:12579312,30604125:142008 -k1,5369:14604169,30604125:142008 -k1,5369:16408170,30604125:142008 -k1,5369:17166216,30604125:142008 -k1,5369:18327309,30604125:142008 -k1,5369:20552052,30604125:142009 -k1,5369:21885505,30604125:142008 -k1,5369:23461441,30604125:142008 -k1,5369:24794894,30604125:142008 -k1,5369:25568669,30604125:142008 -k1,5369:27091522,30604125:142009 -k1,5369:27765027,30604125:142008 -k1,5369:29858697,30604125:142008 -k1,5370:32583029,30604125:0 -k1,5370:32583029,30604125:0 -) -(1,5371:7202902,31969901:25380127,513147,126483 -(1,5370:7202902,31969901:15082454,513147,126483 -g1,5370:6630773,31969901 -g1,5370:6630773,31969901 -g1,5370:6303093,31969901 -(1,5370:6303093,31969901:15654583,513147,126483 -g1,5370:6630773,31969901 -g1,5370:7336595,31969901 -g1,5370:8742342,31969901 -g1,5370:9503215,31969901 -g1,5370:13473386,31969901 -g1,5370:16254734,31969901 -g1,5370:17932455,31969901 -g1,5370:19188780,31969901 -) -g1,5370:22285356,31969901 -) -k1,5370:23940533,31969901:383779 -k1,5370:26280562,31969901:383779 -k1,5370:28279148,31969901:383779 -k1,5370:29682012,31969901:383779 -k1,5370:31896867,31969901:383779 -k1,5370:32583029,31969901:0 -) -(1,5371:7202902,32811389:25380127,505283,134348 -k1,5370:9519067,32811389:287170 -k1,5370:10878407,32811389:287171 -k1,5370:13347271,32811389:287170 -k1,5370:14266209,32811389:287171 -k1,5370:15908664,32811389:287170 -k1,5370:16957363,32811389:287171 -k1,5370:18773488,32811389:287170 -k1,5370:19746821,32811389:287171 -k1,5370:21190701,32811389:287170 -k1,5370:22009368,32811389:287170 -k1,5370:24554254,32811389:287171 -k1,5370:25473191,32811389:287170 -k1,5370:27141206,32811389:287171 -k1,5370:27959873,32811389:287170 -k1,5370:30534251,32811389:287171 -k1,5370:32370037,32811389:287170 -k1,5370:32583029,32811389:0 -) -(1,5371:7202902,33652877:25380127,505283,7863 -k1,5371:32583028,33652877:24391188 -g1,5371:32583028,33652877 -) -(1,5372:7202902,35018653:25380127,513147,134348 -(1,5371:7202902,35018653:10138418,513147,134348 -g1,5371:6630773,35018653 -g1,5371:6630773,35018653 -g1,5371:6303093,35018653 -(1,5371:6303093,35018653:10710547,513147,134348 -g1,5371:6630773,35018653 -g1,5371:7336595,35018653 -g1,5371:8742342,35018653 -g1,5371:9503215,35018653 -g1,5371:11985718,35018653 -g1,5371:14657621,35018653 -) -g1,5371:17341320,35018653 -) -k1,5371:19145672,35018653:192822 -k1,5371:19804455,35018653:192822 -k1,5371:21153986,35018653:192821 -k1,5371:21878305,35018653:192822 -k1,5371:23806520,35018653:192822 -k1,5371:26597189,35018653:192822 -k1,5371:27946720,35018653:192821 -k1,5371:29243824,35018653:192822 -k1,5371:30822732,35018653:192822 -k1,5372:32583029,35018653:0 -) -(1,5372:7202902,35860141:25380127,505283,134348 -k1,5371:9401080,35860141:228821 -k1,5371:10242664,35860141:228822 -k1,5371:11490570,35860141:228821 -k1,5371:14139636,35860141:228821 -k1,5371:16943368,35860141:228822 -k1,5371:17990078,35860141:228821 -k1,5371:19389372,35860141:228821 -k1,5371:21798576,35860141:228821 -k1,5371:23750340,35860141:228822 -k1,5371:24740689,35860141:228821 -k1,5371:26473561,35860141:228821 -k1,5371:30065691,35860141:228822 -k1,5371:31464985,35860141:228821 -k1,5371:32583029,35860141:0 -) -(1,5372:7202902,36701629:25380127,505283,126483 -k1,5371:8059224,36701629:243560 -k1,5371:9321869,36701629:243560 -k1,5371:11985673,36701629:243559 -k1,5371:12760730,36701629:243560 -k1,5371:14815705,36701629:243560 -k1,5371:15710693,36701629:243560 -k1,5371:16973338,36701629:243560 -k1,5371:20328546,36701629:243559 -k1,5371:21199941,36701629:243560 -k1,5371:24041348,36701629:243560 -k1,5371:25303993,36701629:243560 -k1,5371:27885221,36701629:243559 -k1,5371:28660278,36701629:243560 -k1,5371:31966991,36701629:243560 -k1,5371:32583029,36701629:0 -) -(1,5372:7202902,37543117:25380127,505283,126483 -k1,5371:8216135,37543117:224835 -k1,5371:9771352,37543117:224836 -k1,5371:11708643,37543117:224835 -k1,5371:13124923,37543117:224835 -k1,5371:13965796,37543117:224835 -k1,5371:15393873,37543117:224836 -k1,5371:17157493,37543117:224835 -k1,5371:18539038,37543117:224835 -k1,5371:19868156,37543117:224836 -k1,5371:21913581,37543117:224835 -k1,5371:23270223,37543117:224835 -k1,5371:26249536,37543117:224835 -k1,5371:30405221,37543117:224836 -k1,5371:31821501,37543117:224835 -k1,5371:32583029,37543117:0 -) -(1,5372:7202902,38384605:25380127,505283,134348 -k1,5371:9900600,38384605:241409 -k1,5371:10951380,38384605:241410 -k1,5371:11548649,38384605:241409 -k1,5371:13663078,38384605:241410 -k1,5371:15422301,38384605:241409 -k1,5371:17173660,38384605:241409 -k1,5371:18606515,38384605:241410 -k1,5371:20559069,38384605:241409 -k1,5371:22439533,38384605:241409 -k1,5371:23332371,38384605:241410 -k1,5371:25429760,38384605:241409 -k1,5371:26690255,38384605:241410 -k1,5371:27346465,38384605:241367 -k1,5371:30008119,38384605:241409 -k1,5371:32583029,38384605:0 -) -(1,5372:7202902,39226093:25380127,505283,126483 -k1,5371:8125567,39226093:239780 -k1,5371:9384432,39226093:239780 -k1,5371:11674178,39226093:239780 -k1,5371:14528189,39226093:239780 -k1,5371:15384006,39226093:239779 -k1,5371:16642871,39226093:239780 -k1,5371:18791715,39226093:239780 -k1,5371:20743951,39226093:239780 -k1,5371:21611566,39226093:239780 -k1,5371:23054587,39226093:239780 -k1,5371:24532342,39226093:239780 -k1,5371:25928832,39226093:239780 -k1,5371:27272893,39226093:239779 -k1,5371:29155005,39226093:239780 -k1,5371:29750645,39226093:239780 -k1,5371:31821501,39226093:239780 -k1,5371:32583029,39226093:0 -) -(1,5372:7202902,40067581:25380127,513147,134348 -k1,5371:9850978,40067581:147877 -k1,5371:11190300,40067581:147877 -k1,5371:13692231,40067581:147878 -k1,5371:15407729,40067581:147877 -k1,5371:16574691,40067581:147877 -k1,5371:18969798,40067581:147877 -k1,5371:19769103,40067581:147877 -k1,5371:21375812,40067581:147878 -k1,5371:23354765,40067581:147877 -k1,5371:24659352,40067581:147877 -k1,5371:25826314,40067581:147877 -k1,5371:27163015,40067581:147878 -k1,5371:28595398,40067581:147877 -k1,5371:30218490,40067581:147877 -k1,5371:32583029,40067581:0 -) -(1,5372:7202902,40909069:25380127,505283,126483 -g1,5371:8088293,40909069 -g1,5371:9457995,40909069 -k1,5372:32583029,40909069:20634666 -g1,5372:32583029,40909069 -) -v1,5375:6630773,42274845:0,393216,0 -(1,5362:6630773,43174939:25952256,506878,101187 -(1,5362:6630773,43174939:943720,506878,0 -k1,5362:7302650,43174939:671877 -(1,5362:7302650,43174939:271843,506878,0 -$1,5362:7302650,43174939 -(1,5362:7302650,42954715:271843,286654,0 -) -$1,5362:7574493,43174939 -) -) -(1,5362:7574493,43174939:0,435814,0 -r1,5362:7574493,43174939:0,435814,0 -) -k1,5362:8101304,43174939:144605 -k1,5362:9182287,43174939:144605 -k1,5362:10200880,43174939:144605 -k1,5362:10630173,43174939:144605 -k1,5362:12984651,43174939:144604 -k1,5362:13999036,43174939:144591 -k1,5362:14689948,43174939:144604 -k1,5362:16361804,43174939:144605 -k1,5362:17621570,43174939:144605 -k1,5362:18382738,43174939:144605 -k1,5362:18859202,43174939:144590 -k1,5362:20568807,43174939:144605 -k1,5362:21528680,43174939:144605 -k1,5362:23367260,43174939:144605 -k1,5362:24417835,43174939:144605 -k1,5362:25791371,43174939:144605 -k1,5362:26793710,43174939:144604 -k1,5362:27223003,43174939:144605 -k1,5362:28262043,43174939:144605 -k1,5362:30934241,43174939:144605 -k1,5362:31984816,43174939:144605 -k1,5362:32583029,43174939:0 -) -(1,5362:6630773,43841117:25952256,404226,199855 -g1,5362:8619922,43841117 -r1,5362:10986034,43841117:0,199855,199855 -k1,5362:32583030,43841117:21596996 -g1,5362:32583030,43841117 -) -] -(1,5383:32583029,45706769:0,0,0 -g1,5383:32583029,45706769 -) -) -] -(1,5383:6630773,47279633:25952256,0,0 -h1,5383:6630773,47279633:25952256,0,0 -) -] -h1,5383:4262630,4025873:0,0,0 -] -!22435 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 +) +] +) +) +) +] +[1,5389:3078558,4812305:0,0,0 +(1,5389:3078558,49800853:0,16384,2228224 +g1,5389:29030814,49800853 +g1,5389:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5389:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5389:37855564,49800853:1179648,16384,0 +) +) +k1,5389:3078556,49800853:-34777008 +) +] +g1,5389:6630773,4812305 +g1,5389:6630773,4812305 +g1,5389:9132937,4812305 +g1,5389:11356573,4812305 +k1,5389:31786111,4812305:20429538 +) +) +] +[1,5389:6630773,45706769:25952256,40108032,0 +(1,5389:6630773,45706769:25952256,40108032,0 +(1,5389:6630773,45706769:0,0,0 +g1,5389:6630773,45706769 +) +[1,5389:6630773,45706769:25952256,40108032,0 +(1,5353:6630773,6254097:25952256,513147,134348 +k1,5352:8907894,6254097:201596 +k1,5352:9725529,6254097:201597 +k1,5352:10946210,6254097:201596 +k1,5352:13741721,6254097:201596 +k1,5352:14413210,6254097:201596 +k1,5352:15146304,6254097:201597 +k1,5352:16633716,6254097:201596 +k1,5352:18229918,6254097:201596 +k1,5352:19082942,6254097:201596 +k1,5352:20384233,6254097:201597 +k1,5352:21000670,6254097:201594 +k1,5352:22596217,6254097:201596 +k1,5352:23816898,6254097:201596 +k1,5352:24433335,6254097:201594 +k1,5352:26466007,6254097:201596 +k1,5352:27650643,6254097:201596 +k1,5352:28538402,6254097:201597 +k1,5352:29510701,6254097:201596 +k1,5352:32583029,6254097:0 +) +(1,5353:6630773,7095585:25952256,505283,134348 +k1,5352:9242455,7095585:197336 +k1,5352:10052553,7095585:197336 +k1,5352:11268974,7095585:197336 +k1,5352:14520288,7095585:197336 +k1,5352:16963543,7095585:197336 +k1,5352:18663620,7095585:197336 +k1,5352:19543841,7095585:197336 +k1,5352:26571339,7095585:197336 +k1,5352:31016719,7095585:197336 +k1,5353:32583029,7095585:0 +) +(1,5353:6630773,7937073:25952256,513147,126483 +k1,5352:8513269,7937073:176594 +k1,5352:9975680,7937073:176595 +k1,5352:11719895,7937073:176594 +k1,5352:13399230,7937073:176594 +k1,5352:15910873,7937073:176595 +k1,5352:17284154,7937073:176594 +k1,5352:18844868,7937073:176594 +k1,5352:20193901,7937073:176594 +k1,5352:22671465,7937073:176595 +k1,5352:24508741,7937073:176594 +k1,5352:28175127,7937073:176594 +k1,5352:30774588,7937073:176595 +k1,5352:31563944,7937073:176594 +k1,5352:32583029,7937073:0 +) +(1,5353:6630773,8778561:25952256,505283,126483 +g1,5352:7694422,8778561 +g1,5352:9396392,8778561 +g1,5352:12755112,8778561 +g1,5352:15355580,8778561 +g1,5352:17506471,8778561 +g1,5352:19148147,8778561 +g1,5352:19960138,8778561 +g1,5352:21178452,8778561 +g1,5352:21792524,8778561 +g1,5352:25151244,8778561 +k1,5353:32583029,8778561:4856875 +g1,5353:32583029,8778561 +) +v1,5353:6630773,10144337:0,393216,0 +(1,5358:6630773,10340945:25952256,589824,589824 +k1,5358:6040949,10340945:-589824 +(1,5358:6040949,10340945:0,589824,589824 +r1,5358:33172853,10340945:27131904,1179648,589824 +k1,5358:6040949,10340945:-27131904 +) +(1,5358:6040949,10340945:27131904,589824,589824 +[1,5358:6630773,10340945:25952256,-78119,0 +(1,5357:6630773,10829582:25952256,410518,101187 +(1,5355:6630773,10829582:0,0,0 +g1,5355:6630773,10829582 +g1,5355:6630773,10829582 +g1,5355:6303093,10829582 +(1,5355:6303093,10829582:0,0,0 +) +g1,5355:6630773,10829582 +) +k1,5357:6630773,10829582:0 +g1,5357:7263065,10829582 +g1,5357:9792231,10829582 +h1,5357:15166708,10829582:0,0,0 +k1,5357:32583028,10829582:17416320 +g1,5357:32583028,10829582 +) +] +) +k1,5358:32583029,10340945:-589824 +) +h1,5358:6630773,10930769:0,0,0 +(1,5361:6630773,12296545:25952256,513147,134348 +h1,5360:6630773,12296545:983040,0,0 +k1,5360:9098103,12296545:230586 +k1,5360:10432971,12296545:230586 +k1,5360:12241009,12296545:230586 +k1,5360:13242297,12296545:230585 +k1,5360:16526861,12296545:230586 +k1,5360:19507338,12296545:230586 +k1,5360:21191512,12296545:230586 +k1,5360:22989719,12296545:230586 +k1,5360:24239390,12296545:230586 +k1,5360:26228961,12296545:230585 +k1,5360:28256544,12296545:230586 +k1,5360:29103168,12296545:230586 +k1,5360:31931601,12296545:230586 +k1,5360:32583029,12296545:0 +) +(1,5361:6630773,13138033:25952256,513147,126483 +k1,5360:7895093,13138033:146276 +k1,5360:9244611,13138033:146277 +k1,5360:12724048,13138033:146276 +k1,5360:14067011,13138033:146276 +k1,5360:16372043,13138033:146276 +k1,5360:17650782,13138033:146277 +k1,5360:18544824,13138033:146276 +k1,5360:21041221,13138033:146276 +k1,5360:21838925,13138033:146276 +k1,5360:23004287,13138033:146277 +k1,5360:24653304,13138033:146276 +k1,5360:27393495,13138033:146276 +k1,5360:28017528,13138033:146276 +k1,5360:29334278,13138033:146277 +k1,5360:31436804,13138033:146276 +k1,5360:32583029,13138033:0 +) +(1,5361:6630773,13979521:25952256,513147,134348 +g1,5360:7481430,13979521 +g1,5360:9071333,13979521 +g1,5360:10289647,13979521 +g1,5360:12647632,13979521 +g1,5360:13498289,13979521 +g1,5360:14053378,13979521 +g1,5360:15409317,13979521 +g1,5360:16701031,13979521 +g1,5360:20394640,13979521 +g1,5360:22329262,13979521 +g1,5360:23547576,13979521 +g1,5360:26800783,13979521 +g1,5360:29749903,13979521 +k1,5361:32583029,13979521:575411 +g1,5361:32583029,13979521 +) +v1,5361:6630773,15345297:0,393216,0 +(1,5366:6630773,15541905:25952256,589824,589824 +k1,5366:6040949,15541905:-589824 +(1,5366:6040949,15541905:0,589824,589824 +r1,5366:33172853,15541905:27131904,1179648,589824 +k1,5366:6040949,15541905:-27131904 +) +(1,5366:6040949,15541905:27131904,589824,589824 +[1,5366:6630773,15541905:25952256,-78119,0 +(1,5365:6630773,16030542:25952256,410518,101187 +(1,5363:6630773,16030542:0,0,0 +g1,5363:6630773,16030542 +g1,5363:6630773,16030542 +g1,5363:6303093,16030542 +(1,5363:6303093,16030542:0,0,0 +) +g1,5363:6630773,16030542 +) +k1,5365:6630773,16030542:0 +g1,5365:7263065,16030542 +g1,5365:9792231,16030542 +g1,5365:15482854,16030542 +g1,5365:16115146,16030542 +h1,5365:20225040,16030542:0,0,0 +k1,5365:32583029,16030542:12357989 +g1,5365:32583029,16030542 +) +] +) +k1,5366:32583029,15541905:-589824 +) +h1,5366:6630773,16131729:0,0,0 +(1,5369:6630773,17497505:25952256,513147,134348 +h1,5368:6630773,17497505:983040,0,0 +k1,5368:10634749,17497505:244176 +k1,5368:11410422,17497505:244176 +k1,5368:13008572,17497505:244176 +k1,5368:15229969,17497505:244176 +k1,5368:17172183,17497505:244176 +k1,5368:18435445,17497505:244177 +k1,5368:20510697,17497505:244176 +k1,5368:21286370,17497505:244176 +k1,5368:23477621,17497505:244176 +k1,5368:26566060,17497505:244176 +k1,5368:28499754,17497505:244176 +k1,5368:32227169,17497505:244176 +k1,5368:32583029,17497505:0 +) +(1,5369:6630773,18338993:25952256,505283,134348 +k1,5368:8907548,18338993:272029 +k1,5368:9862462,18338993:272029 +k1,5368:13582340,18338993:272029 +k1,5368:15552407,18338993:272029 +k1,5368:18006130,18338993:272029 +k1,5368:20444124,18338993:272029 +k1,5368:21872862,18338993:272028 +k1,5368:24432098,18338993:272029 +k1,5368:26583044,18338993:272029 +k1,5368:27506501,18338993:272029 +k1,5368:28896574,18338993:272029 +k1,5368:30058582,18338993:272029 +k1,5368:32583029,18338993:0 +) +(1,5369:6630773,19180481:25952256,609711,134348 +k1,5368:7993282,19180481:205799 +k1,5368:8881967,19180481:205800 +k1,5368:9443626,19180481:205799 +k1,5368:10782544,19180481:205800 +k1,5368:14505005,19180481:205799 +k1,5368:15323566,19180481:205799 +k1,5368:15885226,19180481:205800 +k1,5368:17690103,19180481:205799 +k1,5368:19276746,19180481:205799 +k1,5368:20586828,19180481:205800 +k1,5368:21540393,19180481:205799 +k1,5368:23323645,19180481:205800 +k1,5368:25264837,19180481:205799 +k1,5368:26489721,19180481:205799 +k1,5368:28413875,19180481:205800 +(1,5368:30552315,19180481:311689,609711,0 +$1,5368:30552315,19180481 +(1,5368:30552315,18905200:311689,334430,0 +) +$1,5368:30864004,19180481 +) +k1,5368:31069803,19180481:205799 +k1,5368:32583029,19180481:0 +) +(1,5369:6630773,20021969:25952256,505283,134348 +k1,5368:8714584,20021969:227831 +k1,5368:12546895,20021969:227831 +k1,5368:13793811,20021969:227831 +k1,5368:16071608,20021969:227831 +k1,5368:16915477,20021969:227831 +k1,5368:18162393,20021969:227831 +k1,5368:19558732,20021969:227832 +k1,5368:20437991,20021969:227831 +k1,5368:21413588,20021969:227831 +k1,5368:24648211,20021969:227831 +k1,5368:25558927,20021969:227831 +k1,5368:28597597,20021969:227831 +k1,5368:29844513,20021969:227831 +k1,5368:31298523,20021969:227831 +k1,5368:32583029,20021969:0 +) +(1,5369:6630773,20863457:25952256,513147,126483 +k1,5368:8050355,20863457:262872 +k1,5368:10269477,20863457:262872 +k1,5368:11678575,20863457:262873 +k1,5368:12592875,20863457:262872 +k1,5368:13973791,20863457:262872 +k1,5368:15462842,20863457:262872 +k1,5368:18314387,20863457:262873 +k1,5368:19803438,20863457:262872 +k1,5368:21170592,20863457:262872 +k1,5368:22181230,20863457:262872 +k1,5368:23765963,20863457:262872 +k1,5368:24688128,20863457:262873 +k1,5368:25306860,20863457:262872 +k1,5368:26911909,20863457:262872 +k1,5368:27530641,20863457:262872 +k1,5368:29676363,20863457:262873 +k1,5368:31281412,20863457:262872 +k1,5368:32227169,20863457:262872 +k1,5368:32583029,20863457:0 +) +(1,5369:6630773,21704945:25952256,513147,134348 +k1,5368:8773851,21704945:250398 +k1,5368:9683541,21704945:250398 +k1,5368:11606418,21704945:250398 +k1,5368:12542977,21704945:250397 +k1,5368:14182083,21704945:250398 +k1,5368:15118643,21704945:250398 +k1,5368:15827138,21704945:250398 +k1,5368:16609033,21704945:250398 +k1,5368:20830913,21704945:250398 +k1,5368:23002170,21704945:250397 +k1,5368:24449255,21704945:250398 +k1,5368:28703903,21704945:250398 +k1,5368:32051532,21704945:250398 +k1,5368:32583029,21704945:0 +) +(1,5369:6630773,22546433:25952256,505283,134348 +g1,5368:10134983,22546433 +g1,5368:10985640,22546433 +g1,5368:13892161,22546433 +g1,5368:15110475,22546433 +g1,5368:17028058,22546433 +g1,5368:19365727,22546433 +g1,5368:20180994,22546433 +k1,5369:32583029,22546433:9804188 +g1,5369:32583029,22546433 +) +(1,5370:6630773,24637693:25952256,555811,139132 +(1,5370:6630773,24637693:2450326,534184,12975 +g1,5370:6630773,24637693 +g1,5370:9081099,24637693 +) +g1,5370:10960475,24637693 +g1,5370:11910616,24637693 +g1,5370:14022842,24637693 +g1,5370:14648580,24637693 +k1,5370:32583029,24637693:15848897 +g1,5370:32583029,24637693 +) +(1,5374:6630773,25872397:25952256,513147,134348 +k1,5373:7705781,25872397:257119 +k1,5373:9356852,25872397:257120 +k1,5373:10745779,25872397:257120 +k1,5373:12388984,25872397:257119 +k1,5373:13305396,25872397:257120 +k1,5373:15993901,25872397:257119 +k1,5373:19013363,25872397:257119 +k1,5373:22932635,25872397:257120 +k1,5373:24526688,25872397:257119 +k1,5373:25531574,25872397:257120 +k1,5373:28802039,25872397:257120 +k1,5373:29820686,25872397:257119 +k1,5374:32583029,25872397:0 +) +(1,5374:6630773,26713885:25952256,513147,134348 +k1,5373:7328100,26713885:282484 +k1,5373:9495482,26713885:282567 +k1,5373:10405884,26713885:282567 +k1,5373:13195204,26713885:282568 +k1,5373:14496856,26713885:282567 +k1,5373:17763934,26713885:282568 +k1,5373:19733398,26713885:282567 +k1,5373:20698850,26713885:282567 +k1,5373:22167620,26713885:282568 +k1,5373:23109479,26713885:282567 +k1,5373:27227868,26713885:282567 +k1,5373:28642898,26713885:282568 +k1,5373:30211281,26713885:282567 +k1,5373:32583029,26713885:0 +) +(1,5374:6630773,27555373:25952256,513147,126483 +k1,5373:7640355,27555373:200212 +k1,5373:9170949,27555373:200213 +k1,5373:12384506,27555373:200212 +k1,5373:13755191,27555373:200212 +k1,5373:14946964,27555373:200213 +k1,5373:16431682,27555373:200212 +k1,5373:17650979,27555373:200212 +k1,5373:21367854,27555373:200213 +k1,5373:22700528,27555373:200212 +k1,5373:24497197,27555373:200212 +k1,5373:25383572,27555373:200213 +k1,5373:30248637,27555373:200212 +k1,5373:32583029,27555373:0 +) +(1,5374:6630773,28396861:25952256,513147,134348 +g1,5373:8552944,28396861 +g1,5373:9771258,28396861 +g1,5373:11305455,28396861 +g1,5373:14489194,28396861 +g1,5373:15549566,28396861 +g1,5373:16919268,28396861 +g1,5373:18110057,28396861 +g1,5373:21320665,28396861 +g1,5373:24282237,28396861 +k1,5374:32583029,28396861:4409920 +g1,5374:32583029,28396861 +) +(1,5376:7202902,29762637:25380127,513147,134348 +(1,5375:7202902,29762637:14421851,513147,126483 +g1,5375:6630773,29762637 +g1,5375:6630773,29762637 +g1,5375:6303093,29762637 +(1,5375:6303093,29762637:14993980,513147,126483 +g1,5375:6630773,29762637 +g1,5375:7336595,29762637 +g1,5375:8742342,29762637 +g1,5375:9503215,29762637 +g1,5375:11237953,29762637 +g1,5375:14019301,29762637 +g1,5375:15697022,29762637 +g1,5375:18184768,29762637 +) +g1,5375:21624753,29762637 +) +k1,5375:23180687,29762637:284536 +k1,5375:25421472,29762637:284535 +k1,5375:26934808,29762637:284536 +k1,5375:29148724,29762637:284536 +k1,5375:29789119,29762637:284535 +k1,5375:31356850,29762637:284536 +k1,5375:32583029,29762637:0 +) +(1,5376:7202902,30604125:25380127,513147,134348 +k1,5375:8327950,30604125:142008 +k1,5375:9661403,30604125:142008 +k1,5375:11418219,30604125:142009 +k1,5375:12579312,30604125:142008 +k1,5375:14604169,30604125:142008 +k1,5375:16408170,30604125:142008 +k1,5375:17166216,30604125:142008 +k1,5375:18327309,30604125:142008 +k1,5375:20552052,30604125:142009 +k1,5375:21885505,30604125:142008 +k1,5375:23461441,30604125:142008 +k1,5375:24794894,30604125:142008 +k1,5375:25568669,30604125:142008 +k1,5375:27091522,30604125:142009 +k1,5375:27765027,30604125:142008 +k1,5375:29858697,30604125:142008 +k1,5376:32583029,30604125:0 +k1,5376:32583029,30604125:0 +) +(1,5377:7202902,31969901:25380127,513147,126483 +(1,5376:7202902,31969901:15082454,513147,126483 +g1,5376:6630773,31969901 +g1,5376:6630773,31969901 +g1,5376:6303093,31969901 +(1,5376:6303093,31969901:15654583,513147,126483 +g1,5376:6630773,31969901 +g1,5376:7336595,31969901 +g1,5376:8742342,31969901 +g1,5376:9503215,31969901 +g1,5376:13473386,31969901 +g1,5376:16254734,31969901 +g1,5376:17932455,31969901 +g1,5376:19188780,31969901 +) +g1,5376:22285356,31969901 +) +k1,5376:23940533,31969901:383779 +k1,5376:26280562,31969901:383779 +k1,5376:28279148,31969901:383779 +k1,5376:29682012,31969901:383779 +k1,5376:31896867,31969901:383779 +k1,5376:32583029,31969901:0 +) +(1,5377:7202902,32811389:25380127,505283,134348 +k1,5376:9519067,32811389:287170 +k1,5376:10878407,32811389:287171 +k1,5376:13347271,32811389:287170 +k1,5376:14266209,32811389:287171 +k1,5376:15908664,32811389:287170 +k1,5376:16957363,32811389:287171 +k1,5376:18773488,32811389:287170 +k1,5376:19746821,32811389:287171 +k1,5376:21190701,32811389:287170 +k1,5376:22009368,32811389:287170 +k1,5376:24554254,32811389:287171 +k1,5376:25473191,32811389:287170 +k1,5376:27141206,32811389:287171 +k1,5376:27959873,32811389:287170 +k1,5376:30534251,32811389:287171 +k1,5376:32370037,32811389:287170 +k1,5376:32583029,32811389:0 +) +(1,5377:7202902,33652877:25380127,505283,7863 +k1,5377:32583028,33652877:24391188 +g1,5377:32583028,33652877 +) +(1,5378:7202902,35018653:25380127,513147,134348 +(1,5377:7202902,35018653:10138418,513147,134348 +g1,5377:6630773,35018653 +g1,5377:6630773,35018653 +g1,5377:6303093,35018653 +(1,5377:6303093,35018653:10710547,513147,134348 +g1,5377:6630773,35018653 +g1,5377:7336595,35018653 +g1,5377:8742342,35018653 +g1,5377:9503215,35018653 +g1,5377:11985718,35018653 +g1,5377:14657621,35018653 +) +g1,5377:17341320,35018653 +) +k1,5377:19145672,35018653:192822 +k1,5377:19804455,35018653:192822 +k1,5377:21153986,35018653:192821 +k1,5377:21878305,35018653:192822 +k1,5377:23806520,35018653:192822 +k1,5377:26597189,35018653:192822 +k1,5377:27946720,35018653:192821 +k1,5377:29243824,35018653:192822 +k1,5377:30822732,35018653:192822 +k1,5378:32583029,35018653:0 +) +(1,5378:7202902,35860141:25380127,505283,134348 +k1,5377:9401080,35860141:228821 +k1,5377:10242664,35860141:228822 +k1,5377:11490570,35860141:228821 +k1,5377:14139636,35860141:228821 +k1,5377:16943368,35860141:228822 +k1,5377:17990078,35860141:228821 +k1,5377:19389372,35860141:228821 +k1,5377:21798576,35860141:228821 +k1,5377:23750340,35860141:228822 +k1,5377:24740689,35860141:228821 +k1,5377:26473561,35860141:228821 +k1,5377:30065691,35860141:228822 +k1,5377:31464985,35860141:228821 +k1,5377:32583029,35860141:0 +) +(1,5378:7202902,36701629:25380127,505283,126483 +k1,5377:8059224,36701629:243560 +k1,5377:9321869,36701629:243560 +k1,5377:11985673,36701629:243559 +k1,5377:12760730,36701629:243560 +k1,5377:14815705,36701629:243560 +k1,5377:15710693,36701629:243560 +k1,5377:16973338,36701629:243560 +k1,5377:20328546,36701629:243559 +k1,5377:21199941,36701629:243560 +k1,5377:24041348,36701629:243560 +k1,5377:25303993,36701629:243560 +k1,5377:27885221,36701629:243559 +k1,5377:28660278,36701629:243560 +k1,5377:31966991,36701629:243560 +k1,5377:32583029,36701629:0 +) +(1,5378:7202902,37543117:25380127,505283,126483 +k1,5377:8216135,37543117:224835 +k1,5377:9771352,37543117:224836 +k1,5377:11708643,37543117:224835 +k1,5377:13124923,37543117:224835 +k1,5377:13965796,37543117:224835 +k1,5377:15393873,37543117:224836 +k1,5377:17157493,37543117:224835 +k1,5377:18539038,37543117:224835 +k1,5377:19868156,37543117:224836 +k1,5377:21913581,37543117:224835 +k1,5377:23270223,37543117:224835 +k1,5377:26249536,37543117:224835 +k1,5377:30405221,37543117:224836 +k1,5377:31821501,37543117:224835 +k1,5377:32583029,37543117:0 +) +(1,5378:7202902,38384605:25380127,505283,134348 +k1,5377:9838979,38384605:179788 +k1,5377:10828137,38384605:179788 +k1,5377:11363786,38384605:179789 +k1,5377:13416593,38384605:179788 +k1,5377:15114195,38384605:179788 +k1,5377:16803933,38384605:179788 +k1,5377:18175167,38384605:179789 +k1,5377:20066100,38384605:179788 +k1,5377:21884943,38384605:179788 +k1,5377:22716159,38384605:179788 +k1,5377:24751927,38384605:179788 +k1,5377:25950801,38384605:179789 +k1,5377:26545413,38384605:179769 +k1,5377:29145446,38384605:179788 +k1,5377:31900144,38384605:179788 +k1,5377:32583029,38384605:0 +) +(1,5378:7202902,39226093:25380127,505283,126483 +k1,5377:8396763,39226093:174776 +k1,5377:10621506,39226093:174777 +k1,5377:13410513,39226093:174776 +k1,5377:14201327,39226093:174776 +k1,5377:15395189,39226093:174777 +k1,5377:17479029,39226093:174776 +k1,5377:19366261,39226093:174776 +k1,5377:20168872,39226093:174776 +k1,5377:21546890,39226093:174777 +k1,5377:22959641,39226093:174776 +k1,5377:24291127,39226093:174776 +k1,5377:25570186,39226093:174777 +k1,5377:27387294,39226093:174776 +k1,5377:27917930,39226093:174776 +k1,5377:29923783,39226093:174777 +k1,5377:30860087,39226093:174776 +k1,5378:32583029,39226093:0 +) +(1,5378:7202902,40067581:25380127,513147,134348 +k1,5377:8386089,40067581:192938 +k1,5377:9770472,40067581:192938 +k1,5377:12317463,40067581:192938 +k1,5377:14078022,40067581:192938 +k1,5377:15290045,40067581:192938 +k1,5377:17730213,40067581:192938 +k1,5377:18574579,40067581:192938 +k1,5377:20226347,40067581:192937 +k1,5377:22250361,40067581:192938 +k1,5377:23600009,40067581:192938 +k1,5377:24812032,40067581:192938 +k1,5377:26193793,40067581:192938 +k1,5377:27671237,40067581:192938 +k1,5377:29339390,40067581:192938 +k1,5377:31896867,40067581:192938 +k1,5377:32583029,40067581:0 +) +(1,5378:7202902,40909069:25380127,505283,126483 +g1,5377:8572604,40909069 +k1,5378:32583028,40909069:21520056 +g1,5378:32583028,40909069 +) +v1,5381:6630773,42274845:0,393216,0 +(1,5368:6630773,43174939:25952256,506878,101187 +(1,5368:6630773,43174939:943720,506878,0 +k1,5368:7302650,43174939:671877 +(1,5368:7302650,43174939:271843,506878,0 +$1,5368:7302650,43174939 +(1,5368:7302650,42954715:271843,286654,0 +) +$1,5368:7574493,43174939 +) +) +(1,5368:7574493,43174939:0,435814,0 +r1,5368:7574493,43174939:0,435814,0 +) +k1,5368:8101304,43174939:144605 +k1,5368:9182287,43174939:144605 +k1,5368:10200880,43174939:144605 +k1,5368:10630173,43174939:144605 +k1,5368:12984651,43174939:144604 +k1,5368:13999036,43174939:144591 +k1,5368:14689948,43174939:144604 +k1,5368:16361804,43174939:144605 +k1,5368:17621570,43174939:144605 +k1,5368:18382738,43174939:144605 +k1,5368:18859202,43174939:144590 +k1,5368:20568807,43174939:144605 +k1,5368:21528680,43174939:144605 +k1,5368:23367260,43174939:144605 +k1,5368:24417835,43174939:144605 +k1,5368:25791371,43174939:144605 +k1,5368:26793710,43174939:144604 +k1,5368:27223003,43174939:144605 +k1,5368:28262043,43174939:144605 +k1,5368:30934241,43174939:144605 +k1,5368:31984816,43174939:144605 +k1,5368:32583029,43174939:0 +) +(1,5368:6630773,43841117:25952256,404226,199855 +g1,5368:8619922,43841117 +r1,5368:10986034,43841117:0,199855,199855 +k1,5368:32583030,43841117:21596996 +g1,5368:32583030,43841117 +) +] +(1,5389:32583029,45706769:0,0,0 +g1,5389:32583029,45706769 +) +) +] +(1,5389:6630773,47279633:25952256,0,0 +h1,5389:6630773,47279633:25952256,0,0 +) +] +h1,5389:4262630,4025873:0,0,0 +] +!22476 }100 -Input:691:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:692:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:693:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:694:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:695:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:696:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:697:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!607 +Input:687:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:688:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:689:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:690:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:691:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:692:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:693:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!649 {101 -[1,5416:4262630,47279633:28320399,43253760,0 -(1,5416:4262630,4025873:0,0,0 -[1,5416:-473657,4025873:25952256,0,0 -(1,5416:-473657,-710414:25952256,0,0 -h1,5416:-473657,-710414:0,0,0 -(1,5416:-473657,-710414:0,0,0 -(1,5416:-473657,-710414:0,0,0 -g1,5416:-473657,-710414 -(1,5416:-473657,-710414:65781,0,65781 -g1,5416:-407876,-710414 -[1,5416:-407876,-644633:0,0,0 +[1,5422:4262630,47279633:28320399,43253760,0 +(1,5422:4262630,4025873:0,0,0 +[1,5422:-473657,4025873:25952256,0,0 +(1,5422:-473657,-710414:25952256,0,0 +h1,5422:-473657,-710414:0,0,0 +(1,5422:-473657,-710414:0,0,0 +(1,5422:-473657,-710414:0,0,0 +g1,5422:-473657,-710414 +(1,5422:-473657,-710414:65781,0,65781 +g1,5422:-407876,-710414 +[1,5422:-407876,-644633:0,0,0 ] ) -k1,5416:-473657,-710414:-65781 +k1,5422:-473657,-710414:-65781 ) ) -k1,5416:25478599,-710414:25952256 -g1,5416:25478599,-710414 +k1,5422:25478599,-710414:25952256 +g1,5422:25478599,-710414 ) ] ) -[1,5416:6630773,47279633:25952256,43253760,0 -[1,5416:6630773,4812305:25952256,786432,0 -(1,5416:6630773,4812305:25952256,505283,134348 -(1,5416:6630773,4812305:25952256,505283,134348 -g1,5416:3078558,4812305 -[1,5416:3078558,4812305:0,0,0 -(1,5416:3078558,2439708:0,1703936,0 -k1,5416:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5416:2537886,2439708:1179648,16384,0 +[1,5422:6630773,47279633:25952256,43253760,0 +[1,5422:6630773,4812305:25952256,786432,0 +(1,5422:6630773,4812305:25952256,505283,134348 +(1,5422:6630773,4812305:25952256,505283,134348 +g1,5422:3078558,4812305 +[1,5422:3078558,4812305:0,0,0 +(1,5422:3078558,2439708:0,1703936,0 +k1,5422:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5422:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5416:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5422:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5416:3078558,4812305:0,0,0 -(1,5416:3078558,2439708:0,1703936,0 -g1,5416:29030814,2439708 -g1,5416:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5416:36151628,1915420:16384,1179648,0 +[1,5422:3078558,4812305:0,0,0 +(1,5422:3078558,2439708:0,1703936,0 +g1,5422:29030814,2439708 +g1,5422:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5422:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5416:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5422:37855564,2439708:1179648,16384,0 ) ) -k1,5416:3078556,2439708:-34777008 +k1,5422:3078556,2439708:-34777008 ) ] -[1,5416:3078558,4812305:0,0,0 -(1,5416:3078558,49800853:0,16384,2228224 -k1,5416:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5416:2537886,49800853:1179648,16384,0 +[1,5422:3078558,4812305:0,0,0 +(1,5422:3078558,49800853:0,16384,2228224 +k1,5422:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5422:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5416:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5422:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5416:3078558,4812305:0,0,0 -(1,5416:3078558,49800853:0,16384,2228224 -g1,5416:29030814,49800853 -g1,5416:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5416:36151628,51504789:16384,1179648,0 +[1,5422:3078558,4812305:0,0,0 +(1,5422:3078558,49800853:0,16384,2228224 +g1,5422:29030814,49800853 +g1,5422:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5422:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5416:37855564,49800853:1179648,16384,0 -) -) -k1,5416:3078556,49800853:-34777008 -) -] -g1,5416:6630773,4812305 -k1,5416:18752969,4812305:11325278 -g1,5416:20139710,4812305 -g1,5416:20788516,4812305 -g1,5416:24102671,4812305 -g1,5416:28605649,4812305 -g1,5416:30015328,4812305 -) -) -] -[1,5416:6630773,45706769:25952256,40108032,0 -(1,5416:6630773,45706769:25952256,40108032,0 -(1,5416:6630773,45706769:0,0,0 -g1,5416:6630773,45706769 -) -[1,5416:6630773,45706769:25952256,40108032,0 -v1,5383:6630773,6254097:0,393216,0 -(1,5383:6630773,16274072:25952256,10413191,616038 -g1,5383:6630773,16274072 -(1,5383:6630773,16274072:25952256,10413191,616038 -(1,5383:6630773,16890110:25952256,11029229,0 -[1,5383:6630773,16890110:25952256,11029229,0 -(1,5383:6630773,16863896:25952256,10976801,0 -r1,5383:6656987,16863896:26214,10976801,0 -[1,5383:6656987,16863896:25899828,10976801,0 -(1,5383:6656987,16274072:25899828,9797153,0 -[1,5383:7246811,16274072:24720180,9797153,0 -(1,5377:7246811,7564293:24720180,1087374,134348 -k1,5375:8637523,7564293:181009 -k1,5375:9578750,7564293:181009 -k1,5375:11090140,7564293:181009 -k1,5375:12441622,7564293:181009 -k1,5375:14803014,7564293:181009 -k1,5375:15731789,7564293:181009 -k1,5375:18405132,7564293:181009 -k1,5375:20946748,7564293:181009 -k1,5375:22521708,7564293:181009 -k1,5375:23117542,7564293:180991 -k1,5375:23949979,7564293:181009 -k1,5375:24878754,7564293:181009 -k1,5375:26368517,7564293:181009 -k1,5375:27200954,7564293:181009 -k1,5375:28996770,7564293:181009 -k1,5375:30636610,7564293:181009 -k1,5375:31966991,7564293:0 -) -(1,5377:7246811,8405781:24720180,473825,126483 -k1,5377:31966991,8405781:22715434 -g1,5377:31966991,8405781 -) -(1,5378:9389838,9771557:21790721,513147,126483 -(1,5377:9389838,9771557:0,477757,0 -g1,5377:9389838,9771557 -g1,5377:8079118,9771557 -g1,5377:8079118,9771557 -(1,5377:8079118,9771557:1310720,477757,0 -(1,5377:8079118,9771557:1048576,477757,0 -g1,5377:8341262,9771557 -(1,5377:8341262,9771557:572129,477757,0 -g1,5377:8341262,9771557 -) -) -) -g1,5377:9389838,9771557 -) -k1,5377:11629157,9771557:188042 -k1,5377:12173060,9771557:188043 -k1,5377:13644297,9771557:188042 -k1,5377:14247171,9771557:188031 -k1,5377:16266290,9771557:188043 -k1,5377:17277464,9771557:188042 -k1,5377:20063353,9771557:188042 -k1,5377:21819017,9771557:188043 -k1,5377:23026144,9771557:188042 -k1,5377:24326988,9771557:188043 -k1,5377:26485698,9771557:188042 -k1,5377:27842247,9771557:188042 -k1,5377:29548104,9771557:188043 -k1,5377:30419031,9771557:188042 -k1,5377:31180559,9771557:0 -) -(1,5378:9389838,10613045:21790721,513147,134348 -g1,5377:11618062,10613045 -g1,5377:13323308,10613045 -g1,5377:14090734,10613045 -g1,5377:15782873,10613045 -g1,5377:16550299,10613045 -k1,5378:31180559,10613045:13457166 -g1,5378:31180559,10613045 -) -(1,5379:9389838,11716677:21790721,513147,126483 -(1,5378:9389838,11716677:0,485622,0 -g1,5378:9389838,11716677 -g1,5378:8079118,11716677 -g1,5378:8079118,11716677 -(1,5378:8079118,11716677:1310720,485622,0 -(1,5378:8079118,11716677:1048576,485622,0 -g1,5378:8341262,11716677 -(1,5378:8341262,11716677:572129,485622,0 -g1,5378:8341262,11716677 -) -) -) -g1,5378:9389838,11716677 -) -g1,5378:11004645,11716677 -g1,5378:12222959,11716677 -g1,5378:13405228,11716677 -g1,5378:14290619,11716677 -k1,5379:31180559,11716677:9602992 -g1,5379:31180559,11716677 -) -(1,5380:9389838,12820309:21790721,505283,126483 -(1,5379:9389838,12820309:0,485622,11795 -g1,5379:9389838,12820309 -g1,5379:8079118,12820309 -g1,5379:8079118,12820309 -(1,5379:8079118,12820309:1310720,485622,11795 -(1,5379:8079118,12820309:1048576,485622,11795 -g1,5379:8341262,12820309 -(1,5379:8341262,12820309:572129,485622,11795 -g1,5379:8341262,12820309 -) -) -) -g1,5379:9389838,12820309 -) -k1,5379:10767680,12820309:228996 -k1,5379:12015761,12820309:228996 -k1,5379:14153821,12820309:228996 -k1,5379:15921603,12820309:228997 -k1,5379:16766637,12820309:228996 -k1,5379:19419810,12820309:228996 -k1,5379:20300234,12820309:228996 -k1,5379:21915316,12820309:228996 -k1,5379:23836452,12820309:228996 -k1,5379:24480262,12820309:228967 -k1,5379:28199050,12820309:228996 -k1,5379:29619491,12820309:228996 -k1,5380:31180559,12820309:0 -) -(1,5380:9389838,13661797:21790721,426639,7863 -k1,5380:31180559,13661797:19647694 -g1,5380:31180559,13661797 -) -(1,5381:9389838,14765429:21790721,505283,7863 -(1,5380:9389838,14765429:0,481690,0 -g1,5380:9389838,14765429 -g1,5380:8079118,14765429 -g1,5380:8079118,14765429 -(1,5380:8079118,14765429:1310720,481690,0 -(1,5380:8079118,14765429:1048576,481690,0 -g1,5380:8341262,14765429 -(1,5380:8341262,14765429:572129,481690,0 -g1,5380:8341262,14765429 -) -) -) -g1,5380:9389838,14765429 -) -g1,5380:10866364,14765429 -g1,5380:14258507,14765429 -k1,5381:31180559,14765429:13258589 -g1,5381:31180559,14765429 -) -(1,5382:9389838,15869061:21790721,513147,11795 -(1,5381:9389838,15869061:0,473825,11795 -g1,5381:9389838,15869061 -g1,5381:8079118,15869061 -g1,5381:8079118,15869061 -(1,5381:8079118,15869061:1310720,473825,11795 -(1,5381:8079118,15869061:1048576,473825,11795 -g1,5381:8341262,15869061 -(1,5381:8341262,15869061:572129,473825,11795 -g1,5381:8341262,15869061 -) -) -) -g1,5381:9389838,15869061 -) -g1,5381:11695394,15869061 -g1,5381:12913708,15869061 -g1,5381:14995786,15869061 -k1,5382:31180559,15869061:15028063 -g1,5382:31180559,15869061 -) -] -) -] -r1,5383:32583029,16863896:26214,10976801,0 -) -] -) -) -g1,5383:32583029,16274072 -) -h1,5383:6630773,16890110:0,0,0 -(1,5385:6630773,18981370:25952256,555811,139132 -(1,5385:6630773,18981370:2450326,534184,12975 -g1,5385:6630773,18981370 -g1,5385:9081099,18981370 -) -g1,5385:10697348,18981370 -g1,5385:12674045,18981370 -g1,5385:13624186,18981370 -g1,5385:14715623,18981370 -g1,5385:20593810,18981370 -g1,5385:21543951,18981370 -k1,5385:32583029,18981370:8609658 -g1,5385:32583029,18981370 -) -(1,5389:6630773,20216074:25952256,505283,126483 -k1,5388:8606028,20216074:192020 -k1,5388:9968522,20216074:192021 -k1,5388:11775349,20216074:192020 -k1,5388:12323230,20216074:192021 -k1,5388:14519996,20216074:192020 -k1,5388:15170113,20216074:192020 -k1,5388:15893631,20216074:192021 -k1,5388:17941631,20216074:192020 -k1,5388:20663342,20216074:192021 -k1,5388:22025835,20216074:192020 -k1,5388:23766471,20216074:192020 -k1,5388:24609920,20216074:192021 -k1,5388:28004684,20216074:192020 -k1,5388:29745321,20216074:192021 -k1,5388:31107814,20216074:192020 -k1,5388:32583029,20216074:0 -) -(1,5389:6630773,21057562:25952256,513147,126483 -k1,5388:8438215,21057562:229990 -k1,5388:9351091,21057562:229991 -k1,5388:10751554,21057562:229990 -k1,5388:12530160,21057562:229990 -k1,5388:14701327,21057562:229991 -k1,5388:15950402,21057562:229990 -k1,5388:18011468,21057562:229990 -k1,5388:18854221,21057562:229991 -k1,5388:19440071,21057562:229990 -k1,5388:21123650,21057562:229990 -k1,5388:22952718,21057562:229990 -k1,5388:23810544,21057562:229991 -k1,5388:25896514,21057562:229990 -k1,5388:27667255,21057562:229990 -k1,5388:28916331,21057562:229991 -k1,5388:30977397,21057562:229990 -k1,5388:32583029,21057562:0 -) -(1,5389:6630773,21899050:25952256,513147,134348 -k1,5388:9736643,21899050:274715 -k1,5388:11210012,21899050:274715 -k1,5388:15097726,21899050:274714 -k1,5388:16320092,21899050:274715 -k1,5388:17613892,21899050:274715 -k1,5388:21138537,21899050:274715 -k1,5388:23182069,21899050:274715 -k1,5388:25899966,21899050:274715 -k1,5388:27528654,21899050:274714 -k1,5388:30312743,21899050:274715 -k1,5388:31238886,21899050:274715 -k1,5388:32583029,21899050:0 -) -(1,5389:6630773,22740538:25952256,513147,134348 -k1,5388:8074794,22740538:252576 -k1,5388:9794065,22740538:252575 -k1,5388:11696838,22740538:252576 -k1,5388:12600841,22740538:252575 -k1,5388:15702267,22740538:252576 -k1,5388:17970074,22740538:252575 -k1,5388:18680747,22740538:252576 -k1,5388:19880973,22740538:252575 -k1,5388:21152634,22740538:252576 -k1,5388:22711342,22740538:252575 -k1,5388:24562996,22740538:252576 -k1,5388:26196415,22740538:252575 -k1,5388:28071007,22740538:252576 -k1,5388:29071348,22740538:252575 -k1,5388:31821501,22740538:252576 -k1,5388:32583029,22740538:0 -) -(1,5389:6630773,23582026:25952256,513147,134348 -g1,5388:9754218,23582026 -g1,5388:11378855,23582026 -g1,5388:12769529,23582026 -g1,5388:14741507,23582026 -g1,5388:15750106,23582026 -g1,5388:16968420,23582026 -g1,5388:19425364,23582026 -k1,5389:32583029,23582026:11483220 -g1,5389:32583029,23582026 -) -(1,5391:6630773,24423514:25952256,505283,134348 -h1,5390:6630773,24423514:983040,0,0 -g1,5390:9233863,24423514 -g1,5390:10926002,24423514 -g1,5390:12281941,24423514 -g1,5390:14838500,24423514 -g1,5390:15808432,24423514 -g1,5390:20981188,24423514 -g1,5390:23011493,24423514 -g1,5390:23893607,24423514 -k1,5391:32583029,24423514:5620371 -g1,5391:32583029,24423514 -) -(1,5393:7202902,25789290:25380127,505283,134348 -(1,5392:7202902,25789290:0,355205,0 -g1,5392:7202902,25789290 -g1,5392:5892182,25789290 -g1,5392:5564502,25789290 -(1,5392:5564502,25789290:1310720,355205,0 -k1,5392:6875222,25789290:1310720 -(1,5392:6875222,25789290:0,355205,0 -k1,5392:6476763,25789290:-398459 -) -) -g1,5392:7202902,25789290 -) -k1,5392:9338422,25789290:274298 -k1,5392:10631805,25789290:274298 -k1,5392:13630435,25789290:274298 -k1,5392:15995331,25789290:274298 -k1,5392:18005022,25789290:274298 -k1,5392:18635180,25789290:274298 -k1,5392:21107556,25789290:274298 -k1,5392:25734100,25789290:274298 -k1,5392:28850694,25789290:274298 -k1,5392:30564818,25789290:274298 -k1,5392:31490544,25789290:274298 -k1,5392:32583029,25789290:0 -) -(1,5393:7202902,26630778:25380127,513147,126483 -k1,5392:9067533,26630778:172491 -k1,5392:11679928,26630778:172490 -k1,5392:12535304,26630778:172491 -k1,5392:15038911,26630778:172491 -k1,5392:16797372,26630778:172490 -k1,5392:17629155,26630778:172491 -k1,5392:21458555,26630778:172491 -k1,5392:24299017,26630778:172491 -k1,5392:28060914,26630778:172490 -k1,5392:28892697,26630778:172491 -k1,5392:32583029,26630778:0 -) -(1,5393:7202902,27472266:25380127,513147,126483 -k1,5392:11635212,27472266:163294 -k1,5392:12457797,27472266:163293 -k1,5392:15132431,27472266:163294 -k1,5392:16487170,27472266:163294 -k1,5392:19345959,27472266:163293 -k1,5392:21751240,27472266:163294 -k1,5392:22732423,27472266:163294 -k1,5392:23251576,27472266:163293 -k1,5392:26506859,27472266:163294 -k1,5392:27576516,27472266:163294 -k1,5392:28391237,27472266:163293 -k1,5392:29302297,27472266:163294 -k1,5392:32583029,27472266:0 -) -(1,5393:7202902,28313754:25380127,513147,126483 -g1,5392:8796082,28313754 -k1,5393:32583029,28313754:21006910 -g1,5393:32583029,28313754 -) -(1,5394:7202902,29679530:25380127,513147,134348 -(1,5393:7202902,29679530:0,355205,0 -g1,5393:7202902,29679530 -g1,5393:5892182,29679530 -g1,5393:5564502,29679530 -(1,5393:5564502,29679530:1310720,355205,0 -k1,5393:6875222,29679530:1310720 -(1,5393:6875222,29679530:0,355205,0 -k1,5393:6476763,29679530:-398459 -) -) -g1,5393:7202902,29679530 -) -k1,5393:8592682,29679530:240934 -k1,5393:12446616,29679530:240934 -k1,5393:14755866,29679530:240934 -k1,5393:15944451,29679530:240934 -k1,5393:19200696,29679530:240934 -k1,5393:20633075,29679530:240934 -k1,5393:22005816,29679530:240934 -k1,5393:23948720,29679530:240934 -k1,5393:26322851,29679530:240934 -k1,5393:28197598,29679530:240934 -k1,5393:28970029,29679530:240934 -k1,5393:32583029,29679530:0 -) -(1,5394:7202902,30521018:25380127,505283,134348 -k1,5393:10085225,30521018:180274 -k1,5393:11074870,30521018:180275 -k1,5393:12274229,30521018:180274 -k1,5393:14997300,30521018:180274 -k1,5393:18622147,30521018:180275 -k1,5393:19611791,30521018:180274 -k1,5393:22569481,30521018:180274 -k1,5393:24015911,30521018:180274 -k1,5393:24552046,30521018:180275 -k1,5393:26605339,30521018:180274 -k1,5393:28487583,30521018:180274 -k1,5393:30004792,30521018:180275 -k1,5393:30932832,30521018:180274 -k1,5393:32583029,30521018:0 -) -(1,5394:7202902,31362506:25380127,513147,134348 -k1,5393:10963554,31362506:147652 -k1,5393:12553654,31362506:147653 -k1,5393:13057166,31362506:147652 -k1,5393:14593527,31362506:147653 -k1,5393:16539487,31362506:147652 -k1,5393:19448172,31362506:147653 -k1,5393:24722050,31362506:147652 -k1,5393:26938019,31362506:147653 -k1,5393:28077231,31362506:147652 -k1,5393:30512091,31362506:147653 -k1,5393:32583029,31362506:0 -) -(1,5394:7202902,32203994:25380127,505283,134348 -k1,5393:8637592,32203994:192127 -k1,5393:10565112,32203994:192127 -(1,5393:10565112,32203994:0,414482,115847 -r1,5393:12681937,32203994:2116825,530329,115847 -k1,5393:10565112,32203994:-2116825 -) -(1,5393:10565112,32203994:2116825,414482,115847 -k1,5393:10565112,32203994:3277 -h1,5393:12678660,32203994:0,411205,112570 -) -k1,5393:12874065,32203994:192128 -k1,5393:14257637,32203994:192127 -(1,5393:14257637,32203994:0,452978,115847 -r1,5393:16374462,32203994:2116825,568825,115847 -k1,5393:14257637,32203994:-2116825 -) -(1,5393:14257637,32203994:2116825,452978,115847 -k1,5393:14257637,32203994:3277 -h1,5393:16371185,32203994:0,411205,112570 -) -k1,5393:16566589,32203994:192127 -k1,5393:17290213,32203994:192127 -k1,5393:19265575,32203994:192127 -k1,5393:21623668,32203994:192128 -k1,5393:23258242,32203994:192127 -k1,5393:25185762,32203994:192127 -(1,5393:25185762,32203994:0,435480,115847 -r1,5393:25895740,32203994:709978,551327,115847 -k1,5393:25185762,32203994:-709978 -) -(1,5393:25185762,32203994:709978,435480,115847 -k1,5393:25185762,32203994:3277 -h1,5393:25892463,32203994:0,411205,112570 -) -k1,5393:26087867,32203994:192127 -k1,5393:27471440,32203994:192128 -(1,5393:27471440,32203994:0,435480,115847 -r1,5393:28181418,32203994:709978,551327,115847 -k1,5393:27471440,32203994:-709978 -) -(1,5393:27471440,32203994:709978,435480,115847 -k1,5393:27471440,32203994:3277 -h1,5393:28178141,32203994:0,411205,112570 -) -k1,5393:28373545,32203994:192127 -k1,5393:30263710,32203994:192127 -k1,5393:32583029,32203994:0 -) -(1,5394:7202902,33045482:25380127,513147,126483 -k1,5393:8871903,33045482:275050 -k1,5393:9502813,33045482:275050 -k1,5393:11865185,33045482:275050 -k1,5393:12799527,33045482:275050 -k1,5393:14637611,33045482:275050 -k1,5393:17694009,33045482:275050 -(1,5393:17694009,33045482:0,459977,115847 -r1,5393:22624529,33045482:4930520,575824,115847 -k1,5393:17694009,33045482:-4930520 -) -(1,5393:17694009,33045482:4930520,459977,115847 -k1,5393:17694009,33045482:3277 -h1,5393:22621252,33045482:0,411205,112570 -) -k1,5393:22899579,33045482:275050 -k1,5393:24366074,33045482:275050 -(1,5393:24366074,33045482:0,459977,115847 -r1,5393:30351729,33045482:5985655,575824,115847 -k1,5393:24366074,33045482:-5985655 -) -(1,5393:24366074,33045482:5985655,459977,115847 -k1,5393:24366074,33045482:3277 -h1,5393:30348452,33045482:0,411205,112570 -) -k1,5393:30626779,33045482:275050 -k1,5393:32583029,33045482:0 -) -(1,5394:7202902,33886970:25380127,505283,134348 -k1,5393:9198856,33886970:280221 -k1,5393:10498162,33886970:280221 -k1,5393:12609459,33886970:280221 -k1,5393:15528814,33886970:280220 -k1,5393:17000480,33886970:280221 -k1,5393:18633364,33886970:280221 -k1,5393:20937992,33886970:280221 -k1,5393:21869641,33886970:280221 -k1,5393:23535948,33886970:280221 -k1,5393:26276390,33886970:280220 -k1,5393:28892970,33886970:280221 -k1,5393:31966991,33886970:280221 -k1,5393:32583029,33886970:0 -) -(1,5394:7202902,34728458:25380127,426639,7863 -k1,5394:32583029,34728458:23195812 -g1,5394:32583029,34728458 -) -(1,5395:7202902,36094234:25380127,505283,126483 -(1,5394:7202902,36094234:0,355205,0 -g1,5394:7202902,36094234 -g1,5394:5892182,36094234 -g1,5394:5564502,36094234 -(1,5394:5564502,36094234:1310720,355205,0 -k1,5394:6875222,36094234:1310720 -(1,5394:6875222,36094234:0,355205,0 -k1,5394:6476763,36094234:-398459 -) -) -g1,5394:7202902,36094234 -) -k1,5394:8791017,36094234:167294 -k1,5394:9609738,36094234:167293 -k1,5394:11492765,36094234:167294 -k1,5394:12679144,36094234:167294 -k1,5394:14801376,36094234:167293 -k1,5394:17011427,36094234:167294 -k1,5394:17794759,36094234:167294 -k1,5394:20204039,36094234:167293 -k1,5394:24289075,36094234:167294 -k1,5394:25072406,36094234:167293 -k1,5394:25654511,36094234:167262 -k1,5394:26978515,36094234:167294 -k1,5394:29102059,36094234:167294 -k1,5394:30361837,36094234:167293 -k1,5394:31931601,36094234:167294 -k1,5394:32583029,36094234:0 -) -(1,5395:7202902,36935722:25380127,505283,134348 -k1,5394:10102215,36935722:196608 -k1,5394:11317908,36935722:196608 -k1,5394:13469455,36935722:196608 -k1,5394:14857507,36935722:196607 -k1,5394:16146600,36935722:196608 -k1,5394:17718809,36935722:196608 -k1,5394:19671782,36935722:196608 -k1,5394:21409141,36935722:196608 -k1,5394:23322792,36935722:196608 -k1,5394:25202364,36935722:196607 -k1,5394:26697240,36935722:196608 -k1,5394:27351945,36935722:196608 -k1,5394:29953069,36935722:196608 -k1,5394:32583029,36935722:0 -) -(1,5395:7202902,37777210:25380127,513147,126483 -k1,5394:8043014,37777210:188684 -k1,5394:9324183,37777210:188684 -k1,5394:13597071,37777210:188684 -k1,5394:14982442,37777210:188684 -k1,5394:16263611,37777210:188684 -k1,5394:17111587,37777210:188684 -k1,5394:21210804,37777210:188684 -k1,5394:21930985,37777210:188684 -k1,5394:23744307,37777210:188684 -k1,5394:26710407,37777210:188684 -k1,5394:30053339,37777210:188684 -k1,5394:32583029,37777210:0 -) -(1,5395:7202902,38618698:25380127,513147,126483 -k1,5394:8000229,38618698:181289 -k1,5394:9873658,38618698:181289 -k1,5394:12754375,38618698:181289 -k1,5394:13393761,38618698:181289 -k1,5394:14106547,38618698:181289 -k1,5394:16648443,38618698:181289 -k1,5394:17515894,38618698:181289 -k1,5394:18313221,38618698:181289 -k1,5394:20186651,38618698:181290 -k1,5394:23524809,38618698:181289 -k1,5394:24061958,38618698:181289 -k1,5394:25315416,38618698:181289 -k1,5394:26833639,38618698:181289 -k1,5394:28490143,38618698:181289 -k1,5394:29027292,38618698:181289 -k1,5394:31402726,38618698:181289 -k1,5395:32583029,38618698:0 -) -(1,5395:7202902,39460186:25380127,513147,134348 -k1,5394:9308122,39460186:170597 -k1,5394:11112533,39460186:170598 -k1,5394:12151482,39460186:170597 -k1,5394:13421773,39460186:170597 -k1,5394:15754404,39460186:170598 -k1,5394:17592237,39460186:170597 -k1,5394:18294331,39460186:170597 -k1,5394:19840530,39460186:170598 -k1,5394:23932146,39460186:170597 -k1,5394:25615969,39460186:170597 -k1,5394:26402605,39460186:170598 -k1,5394:26988017,39460186:170569 -k1,5394:31510860,39460186:170597 -k1,5394:32583029,39460186:0 -) -(1,5395:7202902,40301674:25380127,513147,134348 -g1,5394:7933628,40301674 -g1,5394:10910273,40301674 -g1,5394:11725540,40301674 -g1,5394:13626739,40301674 -g1,5394:16998566,40301674 -g1,5394:18344020,40301674 -g1,5394:20673169,40301674 -g1,5394:21774829,40301674 -g1,5394:24635475,40301674 -g1,5394:25493996,40301674 -g1,5394:27555103,40301674 -g1,5394:29121413,40301674 -g1,5394:29852139,40301674 -(1,5394:29852139,40301674:0,452978,115847 -r1,5394:32320676,40301674:2468537,568825,115847 -k1,5394:29852139,40301674:-2468537 -) -(1,5394:29852139,40301674:2468537,452978,115847 -k1,5394:29852139,40301674:3277 -h1,5394:32317399,40301674:0,411205,112570 -) -k1,5395:32583029,40301674:88683 -g1,5395:32583029,40301674 -) -v1,5398:6630773,41667450:0,393216,0 -(1,5416:6630773,44668485:25952256,3394251,589824 -g1,5416:6630773,44668485 -(1,5416:6630773,44668485:25952256,3394251,589824 -(1,5416:6630773,45258309:25952256,3984075,0 -[1,5416:6630773,45258309:25952256,3984075,0 -(1,5416:6630773,45258309:25952256,3957861,0 -r1,5416:6656987,45258309:26214,3957861,0 -[1,5416:6656987,45258309:25899828,3957861,0 -(1,5416:6656987,44668485:25899828,2778213,0 -[1,5416:7246811,44668485:24720180,2778213,0 -(1,5400:7246811,42977646:24720180,1087374,134348 -k1,5398:8709100,42977646:252586 -k1,5398:10450008,42977646:252585 -k1,5398:11234091,42977646:252586 -k1,5398:12257379,42977646:252585 -k1,5398:15171382,42977646:252586 -k1,5398:16083259,42977646:252585 -k1,5398:17512872,42977646:252586 -k1,5398:19266231,42977646:252585 -k1,5398:20134855,42977646:252586 -k1,5398:20743300,42977646:252585 -k1,5398:23000632,42977646:252586 -k1,5398:24822149,42977646:252585 -k1,5398:27689622,42977646:252586 -k1,5398:28391731,42977646:252532 -k1,5398:30131328,42977646:252585 -k1,5400:31966991,42977646:0 -) -(1,5400:7246811,43819134:24720180,505283,134349 -$1,5398:7453905,43819134 -k1,5398:9429815,43819134:0 -k1,5398:9824997,43819134:0 -k1,5398:10220179,43819134:0 -k1,5398:10615361,43819134:0 -k1,5398:12986453,43819134:0 -k1,5398:13381635,43819134:0 -k1,5398:15752727,43819134:0 -k1,5398:16147909,43819134:0 -k1,5398:16938273,43819134:0 -k1,5398:17333455,43819134:0 -k1,5398:21285275,43819134:0 -k1,5398:21680457,43819134:0 -k1,5398:24051549,43819134:0 -k1,5398:24446731,43819134:0 -$1,5398:25632277,43819134 -k1,5399:26268305,43819134:255264 -k1,5399:27715013,43819134:255263 -k1,5399:29196456,43819134:255264 -k1,5399:30470804,43819134:255263 -k1,5399:31966991,43819134:0 -) -(1,5400:7246811,44660622:24720180,505283,7863 -g1,5399:8062078,44660622 -g1,5399:9280392,44660622 -g1,5399:11450289,44660622 -g1,5399:13517949,44660622 -g1,5399:14442006,44660622 -g1,5399:15925741,44660622 -g1,5399:16583067,44660622 -g1,5399:19555780,44660622 -g1,5399:21625407,44660622 -g1,5399:22476064,44660622 -k1,5400:31966991,44660622:7904956 -g1,5400:31966991,44660622 -) -] -) -] -r1,5416:32583029,45258309:26214,3957861,0 -) -] -) -) -g1,5416:32583029,44668485 -) -] -(1,5416:32583029,45706769:0,0,0 -g1,5416:32583029,45706769 -) -) -] -(1,5416:6630773,47279633:25952256,0,0 -h1,5416:6630773,47279633:25952256,0,0 -) -] -h1,5416:4262630,4025873:0,0,0 -] -!23624 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5422:37855564,49800853:1179648,16384,0 +) +) +k1,5422:3078556,49800853:-34777008 +) +] +g1,5422:6630773,4812305 +k1,5422:18771974,4812305:11344283 +g1,5422:20158715,4812305 +g1,5422:20807521,4812305 +g1,5422:24121676,4812305 +g1,5422:28605649,4812305 +g1,5422:30015328,4812305 +) +) +] +[1,5422:6630773,45706769:25952256,40108032,0 +(1,5422:6630773,45706769:25952256,40108032,0 +(1,5422:6630773,45706769:0,0,0 +g1,5422:6630773,45706769 +) +[1,5422:6630773,45706769:25952256,40108032,0 +v1,5389:6630773,6254097:0,393216,0 +(1,5389:6630773,16274072:25952256,10413191,616038 +g1,5389:6630773,16274072 +(1,5389:6630773,16274072:25952256,10413191,616038 +(1,5389:6630773,16890110:25952256,11029229,0 +[1,5389:6630773,16890110:25952256,11029229,0 +(1,5389:6630773,16863896:25952256,10976801,0 +r1,5389:6656987,16863896:26214,10976801,0 +[1,5389:6656987,16863896:25899828,10976801,0 +(1,5389:6656987,16274072:25899828,9797153,0 +[1,5389:7246811,16274072:24720180,9797153,0 +(1,5383:7246811,7564293:24720180,1087374,134348 +k1,5381:8637523,7564293:181009 +k1,5381:9578750,7564293:181009 +k1,5381:11090140,7564293:181009 +k1,5381:12441622,7564293:181009 +k1,5381:14803014,7564293:181009 +k1,5381:15731789,7564293:181009 +k1,5381:18405132,7564293:181009 +k1,5381:20946748,7564293:181009 +k1,5381:22521708,7564293:181009 +k1,5381:23117542,7564293:180991 +k1,5381:23949979,7564293:181009 +k1,5381:24878754,7564293:181009 +k1,5381:26368517,7564293:181009 +k1,5381:27200954,7564293:181009 +k1,5381:28996770,7564293:181009 +k1,5381:30636610,7564293:181009 +k1,5381:31966991,7564293:0 +) +(1,5383:7246811,8405781:24720180,473825,126483 +k1,5383:31966991,8405781:22715434 +g1,5383:31966991,8405781 +) +(1,5384:9389838,9771557:21790721,513147,126483 +(1,5383:9389838,9771557:0,477757,0 +g1,5383:9389838,9771557 +g1,5383:8079118,9771557 +g1,5383:8079118,9771557 +(1,5383:8079118,9771557:1310720,477757,0 +(1,5383:8079118,9771557:1048576,477757,0 +g1,5383:8341262,9771557 +(1,5383:8341262,9771557:572129,477757,0 +g1,5383:8341262,9771557 +) +) +) +g1,5383:9389838,9771557 +) +k1,5383:11629157,9771557:188042 +k1,5383:12173060,9771557:188043 +k1,5383:13644297,9771557:188042 +k1,5383:14247171,9771557:188031 +k1,5383:16266290,9771557:188043 +k1,5383:17277464,9771557:188042 +k1,5383:20063353,9771557:188042 +k1,5383:21819017,9771557:188043 +k1,5383:23026144,9771557:188042 +k1,5383:24326988,9771557:188043 +k1,5383:26485698,9771557:188042 +k1,5383:27842247,9771557:188042 +k1,5383:29548104,9771557:188043 +k1,5383:30419031,9771557:188042 +k1,5383:31180559,9771557:0 +) +(1,5384:9389838,10613045:21790721,513147,134348 +g1,5383:11618062,10613045 +g1,5383:13323308,10613045 +g1,5383:14090734,10613045 +g1,5383:15782873,10613045 +g1,5383:16550299,10613045 +k1,5384:31180559,10613045:13457166 +g1,5384:31180559,10613045 +) +(1,5385:9389838,11716677:21790721,513147,126483 +(1,5384:9389838,11716677:0,485622,0 +g1,5384:9389838,11716677 +g1,5384:8079118,11716677 +g1,5384:8079118,11716677 +(1,5384:8079118,11716677:1310720,485622,0 +(1,5384:8079118,11716677:1048576,485622,0 +g1,5384:8341262,11716677 +(1,5384:8341262,11716677:572129,485622,0 +g1,5384:8341262,11716677 +) +) +) +g1,5384:9389838,11716677 +) +g1,5384:11004645,11716677 +g1,5384:12222959,11716677 +g1,5384:13405228,11716677 +g1,5384:14290619,11716677 +k1,5385:31180559,11716677:9602992 +g1,5385:31180559,11716677 +) +(1,5386:9389838,12820309:21790721,505283,126483 +(1,5385:9389838,12820309:0,485622,11795 +g1,5385:9389838,12820309 +g1,5385:8079118,12820309 +g1,5385:8079118,12820309 +(1,5385:8079118,12820309:1310720,485622,11795 +(1,5385:8079118,12820309:1048576,485622,11795 +g1,5385:8341262,12820309 +(1,5385:8341262,12820309:572129,485622,11795 +g1,5385:8341262,12820309 +) +) +) +g1,5385:9389838,12820309 +) +k1,5385:10767680,12820309:228996 +k1,5385:12015761,12820309:228996 +k1,5385:14153821,12820309:228996 +k1,5385:15921603,12820309:228997 +k1,5385:16766637,12820309:228996 +k1,5385:19419810,12820309:228996 +k1,5385:20300234,12820309:228996 +k1,5385:21915316,12820309:228996 +k1,5385:23836452,12820309:228996 +k1,5385:24480262,12820309:228967 +k1,5385:28199050,12820309:228996 +k1,5385:29619491,12820309:228996 +k1,5386:31180559,12820309:0 +) +(1,5386:9389838,13661797:21790721,426639,7863 +k1,5386:31180559,13661797:19647694 +g1,5386:31180559,13661797 +) +(1,5387:9389838,14765429:21790721,505283,7863 +(1,5386:9389838,14765429:0,481690,0 +g1,5386:9389838,14765429 +g1,5386:8079118,14765429 +g1,5386:8079118,14765429 +(1,5386:8079118,14765429:1310720,481690,0 +(1,5386:8079118,14765429:1048576,481690,0 +g1,5386:8341262,14765429 +(1,5386:8341262,14765429:572129,481690,0 +g1,5386:8341262,14765429 +) +) +) +g1,5386:9389838,14765429 +) +g1,5386:10866364,14765429 +g1,5386:14258507,14765429 +k1,5387:31180559,14765429:13258589 +g1,5387:31180559,14765429 +) +(1,5388:9389838,15869061:21790721,513147,11795 +(1,5387:9389838,15869061:0,473825,11795 +g1,5387:9389838,15869061 +g1,5387:8079118,15869061 +g1,5387:8079118,15869061 +(1,5387:8079118,15869061:1310720,473825,11795 +(1,5387:8079118,15869061:1048576,473825,11795 +g1,5387:8341262,15869061 +(1,5387:8341262,15869061:572129,473825,11795 +g1,5387:8341262,15869061 +) +) +) +g1,5387:9389838,15869061 +) +g1,5387:11695394,15869061 +g1,5387:12913708,15869061 +g1,5387:14995786,15869061 +k1,5388:31180559,15869061:15028063 +g1,5388:31180559,15869061 +) +] +) +] +r1,5389:32583029,16863896:26214,10976801,0 +) +] +) +) +g1,5389:32583029,16274072 +) +h1,5389:6630773,16890110:0,0,0 +(1,5391:6630773,18981370:25952256,555811,139132 +(1,5391:6630773,18981370:2450326,534184,12975 +g1,5391:6630773,18981370 +g1,5391:9081099,18981370 +) +g1,5391:10697348,18981370 +g1,5391:12674045,18981370 +g1,5391:13624186,18981370 +g1,5391:14715623,18981370 +g1,5391:20593810,18981370 +g1,5391:21543951,18981370 +k1,5391:32583029,18981370:8609658 +g1,5391:32583029,18981370 +) +(1,5395:6630773,20216074:25952256,505283,126483 +k1,5394:8606028,20216074:192020 +k1,5394:9968522,20216074:192021 +k1,5394:11775349,20216074:192020 +k1,5394:12323230,20216074:192021 +k1,5394:14519996,20216074:192020 +k1,5394:15170113,20216074:192020 +k1,5394:15893631,20216074:192021 +k1,5394:17941631,20216074:192020 +k1,5394:20663342,20216074:192021 +k1,5394:22025835,20216074:192020 +k1,5394:23766471,20216074:192020 +k1,5394:24609920,20216074:192021 +k1,5394:28004684,20216074:192020 +k1,5394:29745321,20216074:192021 +k1,5394:31107814,20216074:192020 +k1,5394:32583029,20216074:0 +) +(1,5395:6630773,21057562:25952256,513147,126483 +k1,5394:8438215,21057562:229990 +k1,5394:9351091,21057562:229991 +k1,5394:10751554,21057562:229990 +k1,5394:12530160,21057562:229990 +k1,5394:14701327,21057562:229991 +k1,5394:15950402,21057562:229990 +k1,5394:18011468,21057562:229990 +k1,5394:18854221,21057562:229991 +k1,5394:19440071,21057562:229990 +k1,5394:21123650,21057562:229990 +k1,5394:22952718,21057562:229990 +k1,5394:23810544,21057562:229991 +k1,5394:25896514,21057562:229990 +k1,5394:27667255,21057562:229990 +k1,5394:28916331,21057562:229991 +k1,5394:30977397,21057562:229990 +k1,5394:32583029,21057562:0 +) +(1,5395:6630773,21899050:25952256,513147,134348 +k1,5394:9736643,21899050:274715 +k1,5394:11210012,21899050:274715 +k1,5394:15097726,21899050:274714 +k1,5394:16320092,21899050:274715 +k1,5394:17613892,21899050:274715 +k1,5394:21138537,21899050:274715 +k1,5394:23182069,21899050:274715 +k1,5394:25899966,21899050:274715 +k1,5394:27528654,21899050:274714 +k1,5394:30312743,21899050:274715 +k1,5394:31238886,21899050:274715 +k1,5394:32583029,21899050:0 +) +(1,5395:6630773,22740538:25952256,513147,134348 +k1,5394:8074794,22740538:252576 +k1,5394:9794065,22740538:252575 +k1,5394:11696838,22740538:252576 +k1,5394:12600841,22740538:252575 +k1,5394:15702267,22740538:252576 +k1,5394:17970074,22740538:252575 +k1,5394:18680747,22740538:252576 +k1,5394:19880973,22740538:252575 +k1,5394:21152634,22740538:252576 +k1,5394:22711342,22740538:252575 +k1,5394:24562996,22740538:252576 +k1,5394:26196415,22740538:252575 +k1,5394:28071007,22740538:252576 +k1,5394:29071348,22740538:252575 +k1,5394:31821501,22740538:252576 +k1,5394:32583029,22740538:0 +) +(1,5395:6630773,23582026:25952256,513147,134348 +g1,5394:9754218,23582026 +g1,5394:11378855,23582026 +g1,5394:12769529,23582026 +g1,5394:14741507,23582026 +g1,5394:15750106,23582026 +g1,5394:16968420,23582026 +g1,5394:19425364,23582026 +k1,5395:32583029,23582026:11483220 +g1,5395:32583029,23582026 +) +(1,5397:6630773,24423514:25952256,505283,134348 +h1,5396:6630773,24423514:983040,0,0 +g1,5396:9233863,24423514 +g1,5396:10926002,24423514 +g1,5396:12281941,24423514 +g1,5396:14838500,24423514 +g1,5396:15808432,24423514 +g1,5396:20981188,24423514 +g1,5396:23011493,24423514 +g1,5396:23893607,24423514 +k1,5397:32583029,24423514:5620371 +g1,5397:32583029,24423514 +) +(1,5399:7202902,25658281:25380127,505283,134348 +(1,5398:7202902,25658281:0,355205,0 +g1,5398:7202902,25658281 +g1,5398:5892182,25658281 +g1,5398:5564502,25658281 +(1,5398:5564502,25658281:1310720,355205,0 +k1,5398:6875222,25658281:1310720 +(1,5398:6875222,25658281:0,355205,0 +k1,5398:6476763,25658281:-398459 +) +) +g1,5398:7202902,25658281 +) +k1,5398:9338422,25658281:274298 +k1,5398:10631805,25658281:274298 +k1,5398:13630435,25658281:274298 +k1,5398:15995331,25658281:274298 +k1,5398:18005022,25658281:274298 +k1,5398:18635180,25658281:274298 +k1,5398:21107556,25658281:274298 +k1,5398:25734100,25658281:274298 +k1,5398:28850694,25658281:274298 +k1,5398:30564818,25658281:274298 +k1,5398:31490544,25658281:274298 +k1,5398:32583029,25658281:0 +) +(1,5399:7202902,26499769:25380127,513147,126483 +k1,5398:9067533,26499769:172491 +k1,5398:11679928,26499769:172490 +k1,5398:12535304,26499769:172491 +k1,5398:15038911,26499769:172491 +k1,5398:16797372,26499769:172490 +k1,5398:17629155,26499769:172491 +k1,5398:21458555,26499769:172491 +k1,5398:24299017,26499769:172491 +k1,5398:28060914,26499769:172490 +k1,5398:28892697,26499769:172491 +k1,5398:32583029,26499769:0 +) +(1,5399:7202902,27341257:25380127,513147,126483 +k1,5398:11635212,27341257:163294 +k1,5398:12457797,27341257:163293 +k1,5398:15132431,27341257:163294 +k1,5398:16487170,27341257:163294 +k1,5398:19345959,27341257:163293 +k1,5398:21751240,27341257:163294 +k1,5398:22732423,27341257:163294 +k1,5398:23251576,27341257:163293 +k1,5398:26506859,27341257:163294 +k1,5398:27576516,27341257:163294 +k1,5398:28391237,27341257:163293 +k1,5398:29302297,27341257:163294 +k1,5398:32583029,27341257:0 +) +(1,5399:7202902,28182745:25380127,513147,126483 +g1,5398:8796082,28182745 +k1,5399:32583029,28182745:21006910 +g1,5399:32583029,28182745 +) +(1,5400:7202902,29483016:25380127,513147,134348 +(1,5399:7202902,29483016:0,355205,0 +g1,5399:7202902,29483016 +g1,5399:5892182,29483016 +g1,5399:5564502,29483016 +(1,5399:5564502,29483016:1310720,355205,0 +k1,5399:6875222,29483016:1310720 +(1,5399:6875222,29483016:0,355205,0 +k1,5399:6476763,29483016:-398459 +) +) +g1,5399:7202902,29483016 +) +k1,5399:8592682,29483016:240934 +k1,5399:12446616,29483016:240934 +k1,5399:14755866,29483016:240934 +k1,5399:15944451,29483016:240934 +k1,5399:19200696,29483016:240934 +k1,5399:20633075,29483016:240934 +k1,5399:22005816,29483016:240934 +k1,5399:23948720,29483016:240934 +k1,5399:26322851,29483016:240934 +k1,5399:28197598,29483016:240934 +k1,5399:28970029,29483016:240934 +k1,5399:32583029,29483016:0 +) +(1,5400:7202902,30324504:25380127,505283,134348 +k1,5399:10085225,30324504:180274 +k1,5399:11074870,30324504:180275 +k1,5399:12274229,30324504:180274 +k1,5399:14997300,30324504:180274 +k1,5399:18622147,30324504:180275 +k1,5399:19611791,30324504:180274 +k1,5399:22569481,30324504:180274 +k1,5399:24015911,30324504:180274 +k1,5399:24552046,30324504:180275 +k1,5399:26605339,30324504:180274 +k1,5399:28487583,30324504:180274 +k1,5399:30004792,30324504:180275 +k1,5399:30932832,30324504:180274 +k1,5399:32583029,30324504:0 +) +(1,5400:7202902,31165992:25380127,513147,134348 +k1,5399:10963554,31165992:147652 +k1,5399:12553654,31165992:147653 +k1,5399:13057166,31165992:147652 +k1,5399:14593527,31165992:147653 +k1,5399:16539487,31165992:147652 +k1,5399:19448172,31165992:147653 +k1,5399:24722050,31165992:147652 +k1,5399:26938019,31165992:147653 +k1,5399:28077231,31165992:147652 +k1,5399:30512091,31165992:147653 +k1,5399:32583029,31165992:0 +) +(1,5400:7202902,32007480:25380127,505283,134348 +k1,5399:8637592,32007480:192127 +k1,5399:10565112,32007480:192127 +(1,5399:10565112,32007480:0,414482,115847 +r1,5399:12681937,32007480:2116825,530329,115847 +k1,5399:10565112,32007480:-2116825 +) +(1,5399:10565112,32007480:2116825,414482,115847 +k1,5399:10565112,32007480:3277 +h1,5399:12678660,32007480:0,411205,112570 +) +k1,5399:12874065,32007480:192128 +k1,5399:14257637,32007480:192127 +(1,5399:14257637,32007480:0,452978,115847 +r1,5399:16374462,32007480:2116825,568825,115847 +k1,5399:14257637,32007480:-2116825 +) +(1,5399:14257637,32007480:2116825,452978,115847 +k1,5399:14257637,32007480:3277 +h1,5399:16371185,32007480:0,411205,112570 +) +k1,5399:16566589,32007480:192127 +k1,5399:17290213,32007480:192127 +k1,5399:19265575,32007480:192127 +k1,5399:21623668,32007480:192128 +k1,5399:23258242,32007480:192127 +k1,5399:25185762,32007480:192127 +(1,5399:25185762,32007480:0,435480,115847 +r1,5399:25895740,32007480:709978,551327,115847 +k1,5399:25185762,32007480:-709978 +) +(1,5399:25185762,32007480:709978,435480,115847 +k1,5399:25185762,32007480:3277 +h1,5399:25892463,32007480:0,411205,112570 +) +k1,5399:26087867,32007480:192127 +k1,5399:27471440,32007480:192128 +(1,5399:27471440,32007480:0,435480,115847 +r1,5399:28181418,32007480:709978,551327,115847 +k1,5399:27471440,32007480:-709978 +) +(1,5399:27471440,32007480:709978,435480,115847 +k1,5399:27471440,32007480:3277 +h1,5399:28178141,32007480:0,411205,112570 +) +k1,5399:28373545,32007480:192127 +k1,5399:30263710,32007480:192127 +k1,5399:32583029,32007480:0 +) +(1,5400:7202902,32848968:25380127,513147,126483 +k1,5399:8871903,32848968:275050 +k1,5399:9502813,32848968:275050 +k1,5399:11865185,32848968:275050 +k1,5399:12799527,32848968:275050 +k1,5399:14637611,32848968:275050 +k1,5399:17694009,32848968:275050 +(1,5399:17694009,32848968:0,459977,115847 +r1,5399:22624529,32848968:4930520,575824,115847 +k1,5399:17694009,32848968:-4930520 +) +(1,5399:17694009,32848968:4930520,459977,115847 +k1,5399:17694009,32848968:3277 +h1,5399:22621252,32848968:0,411205,112570 +) +k1,5399:22899579,32848968:275050 +k1,5399:24366074,32848968:275050 +(1,5399:24366074,32848968:0,459977,115847 +r1,5399:30351729,32848968:5985655,575824,115847 +k1,5399:24366074,32848968:-5985655 +) +(1,5399:24366074,32848968:5985655,459977,115847 +k1,5399:24366074,32848968:3277 +h1,5399:30348452,32848968:0,411205,112570 +) +k1,5399:30626779,32848968:275050 +k1,5399:32583029,32848968:0 +) +(1,5400:7202902,33690456:25380127,505283,134348 +k1,5399:9198856,33690456:280221 +k1,5399:10498162,33690456:280221 +k1,5399:12609459,33690456:280221 +k1,5399:15528814,33690456:280220 +k1,5399:17000480,33690456:280221 +k1,5399:18633364,33690456:280221 +k1,5399:20937992,33690456:280221 +k1,5399:21869641,33690456:280221 +k1,5399:23535948,33690456:280221 +k1,5399:26276390,33690456:280220 +k1,5399:28892970,33690456:280221 +k1,5399:31966991,33690456:280221 +k1,5399:32583029,33690456:0 +) +(1,5400:7202902,34531944:25380127,426639,7863 +k1,5400:32583029,34531944:23195812 +g1,5400:32583029,34531944 +) +(1,5401:7202902,35832215:25380127,505283,126483 +(1,5400:7202902,35832215:0,355205,0 +g1,5400:7202902,35832215 +g1,5400:5892182,35832215 +g1,5400:5564502,35832215 +(1,5400:5564502,35832215:1310720,355205,0 +k1,5400:6875222,35832215:1310720 +(1,5400:6875222,35832215:0,355205,0 +k1,5400:6476763,35832215:-398459 +) +) +g1,5400:7202902,35832215 +) +k1,5400:8849496,35832215:225773 +k1,5400:9726698,35832215:225774 +k1,5400:11668204,35832215:225773 +k1,5400:12913063,35832215:225774 +k1,5400:15093775,35832215:225773 +k1,5400:17362305,35832215:225773 +k1,5400:18204117,35832215:225774 +k1,5400:20671877,35832215:225773 +k1,5400:24815393,35832215:225774 +k1,5400:25657204,35832215:225773 +k1,5400:26297794,35832215:225747 +k1,5400:27680277,35832215:225773 +k1,5400:29862301,35832215:225774 +k1,5400:31180559,35832215:225773 +k1,5400:32583029,35832215:0 +) +(1,5401:7202902,36673703:25380127,505283,134348 +k1,5400:8081178,36673703:226848 +k1,5400:11010731,36673703:226848 +k1,5400:12256664,36673703:226848 +k1,5400:14438451,36673703:226848 +k1,5400:15856744,36673703:226848 +k1,5400:17176077,36673703:226848 +k1,5400:18778526,36673703:226848 +k1,5400:20761740,36673703:226849 +k1,5400:22529339,36673703:226848 +k1,5400:24473230,36673703:226848 +k1,5400:26383043,36673703:226848 +k1,5400:27908159,36673703:226848 +k1,5400:28593104,36673703:226848 +k1,5400:31224468,36673703:226848 +k1,5401:32583029,36673703:0 +) +(1,5401:7202902,37515191:25380127,513147,126483 +k1,5400:8971003,37515191:283711 +k1,5400:9906143,37515191:283712 +k1,5400:11282339,37515191:283711 +k1,5400:15650254,37515191:283711 +k1,5400:17130652,37515191:283711 +k1,5400:18506849,37515191:283712 +k1,5400:19449852,37515191:283711 +k1,5400:23644096,37515191:283711 +k1,5400:24459304,37515191:283711 +k1,5400:26367654,37515191:283712 +k1,5400:29428781,37515191:283711 +k1,5400:32583029,37515191:0 +) +(1,5401:7202902,38356679:25380127,513147,126483 +k1,5400:9982284,38356679:249692 +k1,5400:10848014,38356679:249692 +k1,5400:12789847,38356679:249693 +k1,5400:15738967,38356679:249692 +k1,5400:16446756,38356679:249692 +k1,5400:17227945,38356679:249692 +k1,5400:19838244,38356679:249692 +k1,5400:20774099,38356679:249693 +k1,5400:21639829,38356679:249692 +k1,5400:23581661,38356679:249692 +k1,5400:26988222,38356679:249692 +k1,5400:27593774,38356679:249692 +k1,5400:28915636,38356679:249693 +k1,5400:30502262,38356679:249692 +k1,5400:32227169,38356679:249692 +k1,5400:32583029,38356679:0 +) +(1,5401:7202902,39198167:25380127,513147,134348 +k1,5400:9640441,39198167:243394 +k1,5400:12785769,39198167:243394 +k1,5400:14662976,39198167:243394 +k1,5400:15774722,39198167:243394 +k1,5400:17117810,39198167:243394 +k1,5400:19523237,39198167:243394 +k1,5400:21433867,39198167:243394 +k1,5400:22208758,39198167:243394 +k1,5400:23827753,39198167:243394 +k1,5400:27992166,39198167:243394 +k1,5400:29748786,39198167:243394 +k1,5400:30608218,39198167:243394 +k1,5400:31266411,39198167:243350 +k1,5401:32583029,39198167:0 +) +(1,5401:7202902,40039655:25380127,513147,134348 +k1,5400:10693077,40039655:241555 +k1,5400:12006800,40039655:241554 +k1,5400:12779852,40039655:241555 +k1,5400:15798823,40039655:241555 +k1,5400:16656415,40039655:241554 +k1,5400:18599940,40039655:241555 +k1,5400:22014093,40039655:241555 +k1,5400:23401872,40039655:241554 +k1,5400:25773347,40039655:241555 +k1,5400:26917333,40039655:241555 +k1,5400:29820304,40039655:241554 +k1,5400:30721151,40039655:241555 +k1,5400:32583029,40039655:0 +) +(1,5401:7202902,40881143:25380127,473825,115847 +g1,5400:8769212,40881143 +g1,5400:9499938,40881143 +(1,5400:9499938,40881143:0,452978,115847 +r1,5400:11968475,40881143:2468537,568825,115847 +k1,5400:9499938,40881143:-2468537 +) +(1,5400:9499938,40881143:2468537,452978,115847 +k1,5400:9499938,40881143:3277 +h1,5400:11965198,40881143:0,411205,112570 +) +k1,5401:32583029,40881143:20440884 +g1,5401:32583029,40881143 +) +v1,5404:6630773,42115910:0,393216,0 +(1,5422:6630773,45116945:25952256,3394251,589824 +g1,5422:6630773,45116945 +(1,5422:6630773,45116945:25952256,3394251,589824 +(1,5422:6630773,45706769:25952256,3984075,0 +[1,5422:6630773,45706769:25952256,3984075,0 +(1,5422:6630773,45706769:25952256,3957861,0 +r1,5422:6656987,45706769:26214,3957861,0 +[1,5422:6656987,45706769:25899828,3957861,0 +(1,5422:6656987,45116945:25899828,2778213,0 +[1,5422:7246811,45116945:24720180,2778213,0 +(1,5406:7246811,43426106:24720180,1087374,134348 +k1,5404:8709100,43426106:252586 +k1,5404:10450008,43426106:252585 +k1,5404:11234091,43426106:252586 +k1,5404:12257379,43426106:252585 +k1,5404:15171382,43426106:252586 +k1,5404:16083259,43426106:252585 +k1,5404:17512872,43426106:252586 +k1,5404:19266231,43426106:252585 +k1,5404:20134855,43426106:252586 +k1,5404:20743300,43426106:252585 +k1,5404:23000632,43426106:252586 +k1,5404:24822149,43426106:252585 +k1,5404:27689622,43426106:252586 +k1,5404:28391731,43426106:252532 +k1,5404:30131328,43426106:252585 +k1,5406:31966991,43426106:0 +) +(1,5406:7246811,44267594:24720180,505283,134349 +$1,5404:7453905,44267594 +k1,5404:9429815,44267594:0 +k1,5404:9824997,44267594:0 +k1,5404:10220179,44267594:0 +k1,5404:10615361,44267594:0 +k1,5404:12986453,44267594:0 +k1,5404:13381635,44267594:0 +k1,5404:15752727,44267594:0 +k1,5404:16147909,44267594:0 +k1,5404:16938273,44267594:0 +k1,5404:17333455,44267594:0 +k1,5404:21285275,44267594:0 +k1,5404:21680457,44267594:0 +k1,5404:24051549,44267594:0 +k1,5404:24446731,44267594:0 +$1,5404:25632277,44267594 +k1,5405:26268305,44267594:255264 +k1,5405:27715013,44267594:255263 +k1,5405:29196456,44267594:255264 +k1,5405:30470804,44267594:255263 +k1,5405:31966991,44267594:0 +) +(1,5406:7246811,45109082:24720180,505283,7863 +g1,5405:8062078,45109082 +g1,5405:9280392,45109082 +g1,5405:11450289,45109082 +g1,5405:13517949,45109082 +g1,5405:14442006,45109082 +g1,5405:15925741,45109082 +g1,5405:16583067,45109082 +g1,5405:19555780,45109082 +g1,5405:21625407,45109082 +g1,5405:22476064,45109082 +k1,5406:31966991,45109082:7904956 +g1,5406:31966991,45109082 +) +] +) +] +r1,5422:32583029,45706769:26214,3957861,0 +) +] +) +) +g1,5422:32583029,45116945 +) +] +(1,5422:32583029,45706769:0,0,0 +g1,5422:32583029,45706769 +) +) +] +(1,5422:6630773,47279633:25952256,0,0 +h1,5422:6630773,47279633:25952256,0,0 +) +] +h1,5422:4262630,4025873:0,0,0 +] +!23777 }101 !12 {102 -[1,5429:4262630,47279633:28320399,43253760,0 -(1,5429:4262630,4025873:0,0,0 -[1,5429:-473657,4025873:25952256,0,0 -(1,5429:-473657,-710414:25952256,0,0 -h1,5429:-473657,-710414:0,0,0 -(1,5429:-473657,-710414:0,0,0 -(1,5429:-473657,-710414:0,0,0 -g1,5429:-473657,-710414 -(1,5429:-473657,-710414:65781,0,65781 -g1,5429:-407876,-710414 -[1,5429:-407876,-644633:0,0,0 +[1,5436:4262630,47279633:28320399,43253760,0 +(1,5436:4262630,4025873:0,0,0 +[1,5436:-473657,4025873:25952256,0,0 +(1,5436:-473657,-710414:25952256,0,0 +h1,5436:-473657,-710414:0,0,0 +(1,5436:-473657,-710414:0,0,0 +(1,5436:-473657,-710414:0,0,0 +g1,5436:-473657,-710414 +(1,5436:-473657,-710414:65781,0,65781 +g1,5436:-407876,-710414 +[1,5436:-407876,-644633:0,0,0 ] ) -k1,5429:-473657,-710414:-65781 +k1,5436:-473657,-710414:-65781 ) ) -k1,5429:25478599,-710414:25952256 -g1,5429:25478599,-710414 +k1,5436:25478599,-710414:25952256 +g1,5436:25478599,-710414 ) ] ) -[1,5429:6630773,47279633:25952256,43253760,0 -[1,5429:6630773,4812305:25952256,786432,0 -(1,5429:6630773,4812305:25952256,485622,134348 -(1,5429:6630773,4812305:25952256,485622,134348 -g1,5429:3078558,4812305 -[1,5429:3078558,4812305:0,0,0 -(1,5429:3078558,2439708:0,1703936,0 -k1,5429:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5429:2537886,2439708:1179648,16384,0 +[1,5436:6630773,47279633:25952256,43253760,0 +[1,5436:6630773,4812305:25952256,786432,0 +(1,5436:6630773,4812305:25952256,485622,134348 +(1,5436:6630773,4812305:25952256,485622,134348 +g1,5436:3078558,4812305 +[1,5436:3078558,4812305:0,0,0 +(1,5436:3078558,2439708:0,1703936,0 +k1,5436:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5436:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5429:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5436:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5429:3078558,4812305:0,0,0 -(1,5429:3078558,2439708:0,1703936,0 -g1,5429:29030814,2439708 -g1,5429:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5429:36151628,1915420:16384,1179648,0 +[1,5436:3078558,4812305:0,0,0 +(1,5436:3078558,2439708:0,1703936,0 +g1,5436:29030814,2439708 +g1,5436:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5436:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5429:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5436:37855564,2439708:1179648,16384,0 ) ) -k1,5429:3078556,2439708:-34777008 +k1,5436:3078556,2439708:-34777008 ) ] -[1,5429:3078558,4812305:0,0,0 -(1,5429:3078558,49800853:0,16384,2228224 -k1,5429:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5429:2537886,49800853:1179648,16384,0 +[1,5436:3078558,4812305:0,0,0 +(1,5436:3078558,49800853:0,16384,2228224 +k1,5436:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5436:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5429:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5436:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5429:3078558,4812305:0,0,0 -(1,5429:3078558,49800853:0,16384,2228224 -g1,5429:29030814,49800853 -g1,5429:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5429:36151628,51504789:16384,1179648,0 +[1,5436:3078558,4812305:0,0,0 +(1,5436:3078558,49800853:0,16384,2228224 +g1,5436:29030814,49800853 +g1,5436:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5436:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5429:37855564,49800853:1179648,16384,0 -) -) -k1,5429:3078556,49800853:-34777008 -) -] -g1,5429:6630773,4812305 -g1,5429:6630773,4812305 -g1,5429:9132937,4812305 -g1,5429:11356573,4812305 -k1,5429:31786111,4812305:20429538 -) -) -] -[1,5429:6630773,45706769:25952256,40108032,0 -(1,5429:6630773,45706769:25952256,40108032,0 -(1,5429:6630773,45706769:0,0,0 -g1,5429:6630773,45706769 -) -[1,5429:6630773,45706769:25952256,40108032,0 -v1,5416:6630773,6254097:0,393216,0 -(1,5416:6630773,13177880:25952256,7316999,616038 -g1,5416:6630773,13177880 -(1,5416:6630773,13177880:25952256,7316999,616038 -(1,5416:6630773,13793918:25952256,7933037,0 -[1,5416:6630773,13793918:25952256,7933037,0 -(1,5416:6630773,13767704:25952256,7906823,0 -r1,5416:6656987,13767704:26214,7906823,0 -[1,5416:6656987,13767704:25899828,7906823,0 -(1,5416:6656987,13177880:25899828,6727175,0 -[1,5416:7246811,13177880:24720180,6727175,0 -v1,5402:7246811,6843921:0,393216,0 -(1,5414:7246811,12456984:24720180,6006279,196608 -g1,5414:7246811,12456984 -g1,5414:7246811,12456984 -g1,5414:7050203,12456984 -(1,5414:7050203,12456984:0,6006279,196608 -r1,5416:32163599,12456984:25113396,6202887,196608 -k1,5414:7050203,12456984:-25113396 -) -(1,5414:7050203,12456984:25113396,6006279,196608 -[1,5414:7246811,12456984:24720180,5809671,0 -(1,5404:7246811,7051539:24720180,404226,107478 -(1,5403:7246811,7051539:0,0,0 -g1,5403:7246811,7051539 -g1,5403:7246811,7051539 -g1,5403:6919131,7051539 -(1,5403:6919131,7051539:0,0,0 -) -g1,5403:7246811,7051539 -) -g1,5404:7879103,7051539 -g1,5404:8827541,7051539 -g1,5404:9459833,7051539 -g1,5404:10092125,7051539 -k1,5404:10092125,7051539:14156 -h1,5404:12003155,7051539:0,0,0 -k1,5404:31966991,7051539:19963836 -g1,5404:31966991,7051539 -) -(1,5405:7246811,7717717:24720180,404226,107478 -h1,5405:7246811,7717717:0,0,0 -g1,5405:7879103,7717717 -g1,5405:8827541,7717717 -g1,5405:9459833,7717717 -g1,5405:10092125,7717717 -k1,5405:10092125,7717717:0 -h1,5405:11988999,7717717:0,0,0 -k1,5405:31966991,7717717:19977992 -g1,5405:31966991,7717717 -) -(1,5406:7246811,8383895:24720180,336593,7863 -h1,5406:7246811,8383895:0,0,0 -g1,5406:7879103,8383895 -k1,5406:7879103,8383895:0 -h1,5406:8511395,8383895:0,0,0 -k1,5406:31966991,8383895:23455596 -g1,5406:31966991,8383895 -) -(1,5407:7246811,9050073:24720180,328204,4718 -h1,5407:7246811,9050073:0,0,0 -g1,5407:7562957,9050073 -g1,5407:7879103,9050073 -g1,5407:8195249,9050073 -g1,5407:8511395,9050073 -g1,5407:9143687,9050073 -h1,5407:9459833,9050073:0,0,0 -k1,5407:31966991,9050073:22507158 -g1,5407:31966991,9050073 -) -(1,5408:7246811,9716251:24720180,404226,6290 -h1,5408:7246811,9716251:0,0,0 -h1,5408:7562957,9716251:0,0,0 -k1,5408:31966991,9716251:24404034 -g1,5408:31966991,9716251 -) -(1,5409:7246811,10382429:24720180,404226,7863 -h1,5409:7246811,10382429:0,0,0 -g1,5409:7879103,10382429 -g1,5409:8827541,10382429 -h1,5409:11356706,10382429:0,0,0 -k1,5409:31966990,10382429:20610284 -g1,5409:31966990,10382429 -) -(1,5410:7246811,11048607:24720180,404226,101187 -h1,5410:7246811,11048607:0,0,0 -g1,5410:7562957,11048607 -g1,5410:7879103,11048607 -g1,5410:8195249,11048607 -g1,5410:8511395,11048607 -g1,5410:8827541,11048607 -g1,5410:9143687,11048607 -k1,5410:9143687,11048607:0 -h1,5410:11040561,11048607:0,0,0 -k1,5410:31966991,11048607:20926430 -g1,5410:31966991,11048607 -) -(1,5411:7246811,11714785:24720180,404226,82312 -h1,5411:7246811,11714785:0,0,0 -g1,5411:9459831,11714785 -g1,5411:10408269,11714785 -h1,5411:12937434,11714785:0,0,0 -k1,5411:31966990,11714785:19029556 -g1,5411:31966990,11714785 -) -(1,5412:7246811,12380963:24720180,404226,76021 -h1,5412:7246811,12380963:0,0,0 -h1,5412:7562957,12380963:0,0,0 -k1,5412:31966991,12380963:24404034 -g1,5412:31966991,12380963 -) -] -) -g1,5414:31966991,12456984 -g1,5414:7246811,12456984 -g1,5414:7246811,12456984 -g1,5414:31966991,12456984 -g1,5414:31966991,12456984 -) -h1,5414:7246811,12653592:0,0,0 -] -) -] -r1,5416:32583029,13767704:26214,7906823,0 -) -] -) -) -g1,5416:32583029,13177880 -) -h1,5416:6630773,13793918:0,0,0 -(1,5419:6630773,15159694:25952256,513147,134348 -h1,5418:6630773,15159694:983040,0,0 -k1,5418:9026265,15159694:215765 -k1,5418:11260539,15159694:215765 -k1,5418:14605647,15159694:215764 -k1,5418:16676736,15159694:215765 -k1,5418:19226893,15159694:215765 -k1,5418:20830711,15159694:215765 -k1,5418:21402335,15159694:215764 -k1,5418:22648326,15159694:215765 -k1,5418:25798793,15159694:215765 -k1,5418:27171268,15159694:215765 -k1,5418:28491314,15159694:215764 -k1,5418:29475816,15159694:215765 -k1,5418:31966991,15159694:215765 -k1,5418:32583029,15159694:0 -) -(1,5419:6630773,16001182:25952256,513147,134348 -k1,5418:9891189,16001182:260178 -k1,5418:11170451,16001182:260177 -k1,5418:12760355,16001182:260178 -k1,5418:13679825,16001182:260178 -k1,5418:16160363,16001182:260178 -k1,5418:19814650,16001182:260177 -k1,5418:20836356,16001182:260178 -k1,5418:25312465,16001182:260178 -k1,5418:29635219,16001182:260177 -k1,5418:31086842,16001182:260178 -k1,5418:32583029,16001182:0 -) -(1,5419:6630773,16842670:25952256,513147,134348 -k1,5418:9762957,16842670:230905 -k1,5418:11185307,16842670:230905 -k1,5418:13151605,16842670:230905 -k1,5418:14148626,16842670:230905 -k1,5418:15398616,16842670:230905 -k1,5418:18326983,16842670:230905 -k1,5418:19217180,16842670:230905 -k1,5418:23189535,16842670:230905 -k1,5418:24887136,16842670:230905 -k1,5418:25777333,16842670:230905 -k1,5418:29213604,16842670:230905 -k1,5418:31422386,16842670:230905 -k1,5419:32583029,16842670:0 -) -(1,5419:6630773,17684158:25952256,513147,134348 -k1,5418:8821344,17684158:264468 -k1,5418:10277256,17684158:264467 -k1,5418:13835563,17684158:264468 -k1,5418:16110019,17684158:264467 -k1,5418:17393572,17684158:264468 -k1,5418:19641814,17684158:264467 -k1,5418:20565574,17684158:264468 -k1,5418:21849126,17684158:264467 -k1,5418:24118340,17684158:264468 -k1,5418:28576456,17684158:264467 -k1,5418:29602452,17684158:264468 -k1,5418:32583029,17684158:0 -) -(1,5419:6630773,18525646:25952256,513147,126483 -k1,5418:7904512,18525646:254654 -k1,5418:10332340,18525646:254654 -k1,5418:11246286,18525646:254654 -k1,5418:12520026,18525646:254655 -k1,5418:16576423,18525646:254654 -k1,5418:18022522,18525646:254654 -k1,5418:19296261,18525646:254654 -k1,5418:21047102,18525646:254654 -k1,5418:22907388,18525646:254654 -k1,5418:23778080,18525646:254654 -k1,5418:24388595,18525646:254655 -k1,5418:26963879,18525646:254654 -k1,5418:29214760,18525646:254654 -k1,5418:30947906,18525646:254654 -k1,5419:32583029,18525646:0 -) -(1,5419:6630773,19367134:25952256,513147,134348 -k1,5418:9884027,19367134:184858 -k1,5418:10937237,19367134:184858 -k1,5418:12226378,19367134:184859 -k1,5418:14554263,19367134:184858 -k1,5418:16023627,19367134:184858 -k1,5418:17227570,19367134:184858 -k1,5418:19585602,19367134:184858 -k1,5418:20762021,19367134:184859 -k1,5418:23099081,19367134:184858 -k1,5418:24303024,19367134:184858 -k1,5418:26330754,19367134:184858 -k1,5418:27174905,19367134:184859 -k1,5418:29882899,19367134:184858 -k1,5418:31086842,19367134:184858 -k1,5418:32583029,19367134:0 -) -(1,5419:6630773,20208622:25952256,505283,134348 -k1,5418:9028604,20208622:148635 -k1,5418:10558084,20208622:148636 -k1,5418:12895622,20208622:148635 -k1,5418:16683472,20208622:148636 -k1,5418:17483535,20208622:148635 -k1,5418:19021534,20208622:148636 -k1,5418:21724762,20208622:148635 -k1,5418:26782700,20208622:148636 -k1,5418:28816806,20208622:148635 -k1,5418:29496939,20208622:148636 -k1,5418:32583029,20208622:0 -) -(1,5419:6630773,21050110:25952256,513147,126483 -k1,5418:7173793,21050110:187160 -k1,5418:11014585,21050110:187160 -k1,5418:15132594,21050110:187160 -k1,5418:16267405,21050110:187160 -k1,5418:17586372,21050110:187160 -k1,5418:19162894,21050110:187159 -k1,5418:21904647,21050110:187160 -k1,5418:23558503,21050110:187160 -k1,5418:24361701,21050110:187160 -k1,5418:27539269,21050110:187160 -k1,5418:28917874,21050110:187160 -k1,5418:29721072,21050110:187160 -k1,5418:32583029,21050110:0 -) -(1,5419:6630773,21891598:25952256,505283,126483 -k1,5418:7339916,21891598:239250 -k1,5418:8110663,21891598:239250 -k1,5418:10979873,21891598:239250 -k1,5418:12285394,21891598:239250 -k1,5418:13900245,21891598:239250 -k1,5418:14790923,21891598:239250 -k1,5418:17350803,21891598:239250 -k1,5418:19472902,21891598:239250 -k1,5418:21624493,21891598:239250 -k1,5418:23009968,21891598:239250 -k1,5418:24452459,21891598:239250 -k1,5418:26022090,21891598:239250 -k1,5418:27333509,21891598:239250 -k1,5418:28858575,21891598:239250 -k1,5418:30980674,21891598:239250 -k1,5419:32583029,21891598:0 -) -(1,5419:6630773,22733086:25952256,505283,7863 -g1,5418:8684671,22733086 -g1,5418:10152677,22733086 -g1,5418:11817946,22733086 -g1,5418:13411126,22733086 -g1,5418:15307082,22733086 -k1,5419:32583029,22733086:15520893 -g1,5419:32583029,22733086 -) -(1,5421:6630773,23574574:25952256,513147,134348 -h1,5420:6630773,23574574:983040,0,0 -k1,5420:8417165,23574574:175517 -k1,5420:9611767,23574574:175517 -k1,5420:11603943,23574574:175518 -k1,5420:12438752,23574574:175517 -k1,5420:17140185,23574574:175517 -k1,5420:18518943,23574574:175517 -k1,5420:21678970,23574574:175517 -k1,5420:22385984,23574574:175517 -k1,5420:24429278,23574574:175518 -k1,5420:26863821,23574574:175517 -k1,5420:31391584,23574574:175517 -k1,5420:32583029,23574574:0 -) -(1,5421:6630773,24416062:25952256,513147,134348 -k1,5420:8035109,24416062:197163 -k1,5420:9538404,24416062:197162 -k1,5420:12752845,24416062:197163 -k1,5420:13711535,24416062:197162 -k1,5420:16203113,24416062:197163 -k1,5420:18365700,24416062:197162 -k1,5420:20735382,24416062:197163 -k1,5420:22733473,24416062:197162 -k1,5420:25489162,24416062:197163 -k1,5420:26632664,24416062:197162 -k1,5420:28122195,24416062:197161 -k1,5420:30738946,24416062:197162 -k1,5420:31563944,24416062:197163 -k1,5420:32583029,24416062:0 -) -(1,5421:6630773,25257550:25952256,513147,134348 -k1,5420:8278713,25257550:280859 -k1,5420:9226728,25257550:280859 -k1,5420:9922348,25257550:280777 -k1,5420:14729123,25257550:280859 -k1,5420:16029067,25257550:280859 -k1,5420:17616059,25257550:280859 -k1,5420:20423330,25257550:280858 -k1,5420:21363481,25257550:280859 -k1,5420:23903366,25257550:280859 -k1,5420:28536471,25257550:280859 -k1,5420:30024503,25257550:280859 -k1,5420:32583029,25257550:0 -) -(1,5421:6630773,26099038:25952256,505283,134348 -k1,5420:9721584,26099038:280628 -k1,5420:11887684,26099038:280629 -k1,5420:13269317,26099038:280628 -k1,5420:15059896,26099038:280629 -k1,5420:17508455,26099038:280628 -k1,5420:21457134,26099038:280629 -k1,5420:22499290,26099038:280628 -k1,5420:24618858,26099038:280629 -k1,5420:26085688,26099038:280628 -k1,5420:28341405,26099038:281117 -k1,5420:30002877,26099038:280628 -k1,5420:32583029,26099038:0 -) -(1,5421:6630773,26940526:25952256,513147,173670 -k1,5420:9751209,26940526:263722 -k1,5420:11034016,26940526:263722 -k1,5420:12390223,26940526:263722 -k1,5420:13321101,26940526:263722 -k1,5420:16887838,26940526:263722 -k1,5420:17834445,26940526:263722 -[1,5420:17963551,26940526:341312,473825,0 -(1,5420:17963551,26802507:341312,335806,0 -) -] -(1,5420:18531817,27114196:370934,473825,0 -) -k1,5420:19515125,26940526:263722 -k1,5420:22687335,26940526:263722 -k1,5420:24751986,26940526:263722 -k1,5420:25701870,26940526:263722 -k1,5420:26984677,26940526:263722 -k1,5420:29740733,26940526:263722 -k1,5420:32583029,26940526:0 -) -(1,5421:6630773,27782014:25952256,513147,134348 -k1,5420:7849088,27782014:270664 -k1,5420:9138836,27782014:270663 -k1,5420:11611510,27782014:270664 -k1,5420:14631408,27782014:270663 -k1,5420:16093517,27782014:270664 -k1,5420:17649996,27782014:270663 -k1,5420:20431344,27782014:270664 -k1,5420:21893452,27782014:270663 -k1,5420:23691760,27782014:270664 -k1,5420:26046468,27782014:270663 -k1,5420:30164751,27782014:270664 -k1,5420:31086842,27782014:270663 -k1,5420:32583029,27782014:0 -) -(1,5421:6630773,28623502:25952256,505283,7863 -k1,5420:9333313,28623502:227901 -k1,5420:13326914,28623502:227902 -k1,5420:14086312,28623502:227901 -k1,5420:15084916,28623502:227901 -k1,5420:18385145,28623502:227901 -k1,5420:19264475,28623502:227902 -k1,5420:22795391,28623502:227901 -k1,5420:24307798,28623502:227901 -k1,5420:26581733,28623502:227901 -k1,5420:27267732,28623502:227902 -k1,5420:29366031,28623502:227901 -k1,5420:30245360,28623502:227901 -k1,5421:32583029,28623502:0 -) -(1,5421:6630773,29464990:25952256,513147,126484 -k1,5420:7297685,29464990:252069 -k1,5420:9045995,29464990:252123 -k1,5420:9914155,29464990:252122 -k1,5420:13699324,29464990:252123 -k1,5420:15183523,29464990:252122 -$1,5420:15183523,29464990 -k1,5420:16764251,29464990:0 -k1,5420:17159433,29464990:0 -k1,5420:17554615,29464990:0 -k1,5420:17949797,29464990:0 -k1,5420:21506435,29464990:0 -k1,5420:21901617,29464990:0 -k1,5420:24667891,29464990:0 -k1,5420:25063073,29464990:0 -$1,5420:26643801,29464990 -k1,5420:27276688,29464990:252123 -k1,5420:27998703,29464990:252122 -k1,5420:28782323,29464990:252123 -k1,5420:30053531,29464990:252123 -k1,5420:31923737,29464990:252122 -k1,5421:32583029,29464990:0 -) -(1,5421:6630773,30306478:25952256,505283,134348 -k1,5420:7268344,30306478:222728 -k1,5420:10401551,30306478:222753 -k1,5420:11908809,30306478:222752 -k1,5420:14657974,30306478:222752 -k1,5420:18448506,30306478:222752 -k1,5420:20242156,30306478:222752 -k1,5420:21656353,30306478:222752 -k1,5420:24565426,30306478:222752 -k1,5420:28321224,30306478:222752 -k1,5420:32583029,30306478:0 -) -(1,5421:6630773,31147966:25952256,513147,134348 -k1,5420:8083051,31147966:183501 -k1,5420:9732591,31147966:183500 -k1,5420:13990465,31147966:183501 -k1,5420:16754118,31147966:183501 -k1,5420:19823824,31147966:183500 -k1,5420:23698968,31147966:183501 -k1,5420:25073914,31147966:183501 -k1,5420:27092422,31147966:183500 -k1,5420:28223574,31147966:183501 -k1,5420:32583029,31147966:0 -) -(1,5421:6630773,31989454:25952256,513147,134348 -k1,5420:7990708,31989454:173733 -k1,5420:9932049,31989454:173835 -k1,5420:11084890,31989454:173733 -k1,5420:11862866,31989454:173734 -k1,5420:12771309,31989454:173784 -k1,5420:14919795,31989454:173886 -k1,5420:16290215,31989454:173733 -k1,5420:17556433,31989454:173733 -k1,5420:18389458,31989454:173733 -k1,5420:20402131,31989454:173734 -k1,5420:21107361,31989454:173733 -k1,5420:22635068,31989454:173733 -k1,5420:24087408,31989454:173733 -k1,5420:27524835,31989454:173734 -k1,5420:28966034,31989454:173733 -k1,5420:30158852,31989454:173733 -k1,5420:32583029,31989454:0 -) -(1,5421:6630773,32830942:25952256,475136,0 -k1,5421:32583030,32830942:24691344 -g1,5421:32583030,32830942 -) -(1,5423:6630773,33672430:25952256,505283,134348 -h1,5422:6630773,33672430:983040,0,0 -k1,5422:9225128,33672430:230471 -k1,5422:9987095,33672430:230470 -k1,5422:11283837,33672430:230471 -k1,5422:13747775,33672430:230471 -k1,5422:14748948,33672430:230470 -k1,5422:15394231,33672430:230440 -k1,5422:19976948,33672430:230471 -k1,5422:22691233,33672430:230470 -k1,5422:23607866,33672430:230471 -k1,5422:24296434,33672430:230471 -k1,5422:27384274,33672430:230470 -k1,5422:31966991,33672430:230471 -k1,5422:32583029,33672430:0 -) -(1,5423:6630773,34513918:25952256,505283,134348 -k1,5422:7951698,34513918:189118 -k1,5422:11156783,34513918:189118 -k1,5422:12269959,34513918:189118 -k1,5422:13478162,34513918:189118 -k1,5422:15369250,34513918:189118 -k1,5422:17338326,34513918:189118 -k1,5422:18730685,34513918:189118 -k1,5422:19451300,34513918:189118 -k1,5422:20411121,34513918:189118 -k1,5422:23774148,34513918:189118 -k1,5422:27172564,34513918:189118 -k1,5422:28695995,34513918:189118 -k1,5422:29536541,34513918:189118 -k1,5422:31510860,34513918:189118 -k1,5422:32583029,34513918:0 -) -(1,5423:6630773,35355406:25952256,505283,134348 -k1,5422:8113096,35355406:203716 -k1,5422:11406835,35355406:203716 -k1,5422:12226589,35355406:203716 -k1,5422:14132275,35355406:203716 -k1,5422:16248332,35355406:203716 -k1,5422:17643493,35355406:203716 -k1,5422:19115987,35355406:203717 -k1,5422:20785743,35355406:203716 -k1,5422:22549216,35355406:203716 -k1,5422:23368970,35355406:203716 -k1,5422:24591771,35355406:203716 -k1,5422:27549965,35355406:203716 -k1,5422:31202185,35355406:203716 -k1,5422:32583029,35355406:0 -) -(1,5423:6630773,36196894:25952256,513147,134348 -k1,5422:8665283,36196894:151661 -k1,5422:10572654,36196894:151661 -k1,5422:13704892,36196894:151661 -k1,5422:16215850,36196894:151662 -k1,5422:17468516,36196894:151661 -k1,5422:19130127,36196894:151661 -k1,5422:22434725,36196894:151661 -k1,5422:24321779,36196894:151661 -k1,5422:26312379,36196894:151661 -k1,5422:27655486,36196894:151662 -k1,5422:28826232,36196894:151661 -k1,5422:31086842,36196894:151661 -k1,5422:32583029,36196894:0 -) -(1,5423:6630773,37038382:25952256,513147,134349 -k1,5422:7760123,37038382:181699 -k1,5422:8960906,37038382:181698 -k1,5422:10724644,37038382:181699 -k1,5422:11437839,37038382:181698 -k1,5422:14403507,37038382:181699 -k1,5422:17143732,37038382:181699 -k1,5422:20328290,37038382:181698 -k1,5422:21122751,37038382:181699 -$1,5422:21122751,37038382 -k1,5422:23098661,37038382:0 -k1,5422:23493843,37038382:0 -k1,5422:23889025,37038382:0 -k1,5422:24284207,37038382:0 -k1,5422:27840845,37038382:0 -k1,5422:28236027,37038382:0 -k1,5422:29421573,37038382:0 -k1,5422:29816755,37038382:0 -k1,5422:32187847,37038382:0 -k1,5423:32583029,37038382:0 -) -(1,5423:6630773,37879870:25952256,505283,98314 -(1,5422:9397047,37978184:32768,0,0 -) -$1,5422:11010543,37879870 -k1,5423:32583029,37879870:21398816 -g1,5423:32583029,37879870 -) -(1,5424:6630773,39971130:25952256,555811,147783 -(1,5424:6630773,39971130:2450326,534184,12975 -g1,5424:6630773,39971130 -g1,5424:9081099,39971130 -) -g1,5424:13217601,39971130 -k1,5424:32583029,39971130:16902126 -g1,5424:32583029,39971130 -) -(1,5428:6630773,41205834:25952256,513147,134348 -k1,5427:7982031,41205834:154571 -k1,5427:9229088,41205834:154572 -k1,5427:10042951,41205834:154571 -k1,5427:11216607,41205834:154571 -k1,5427:12995817,41205834:154572 -k1,5427:14358216,41205834:154571 -k1,5427:15164215,41205834:154571 -k1,5427:17988068,41205834:154572 -k1,5427:18498499,41205834:154571 -k1,5427:21329561,41205834:154572 -k1,5427:22100170,41205834:154571 -k1,5427:25331001,41205834:154571 -k1,5427:28477947,41205834:154572 -k1,5427:29823963,41205834:154571 -k1,5427:32583029,41205834:0 -) -(1,5428:6630773,42047322:25952256,505283,134348 -k1,5427:9088233,42047322:201055 -k1,5427:9905326,42047322:201055 -k1,5427:11700217,42047322:201055 -k1,5427:13599310,42047322:201055 -k1,5427:14156225,42047322:201055 -k1,5427:15553967,42047322:201055 -k1,5427:17118172,42047322:201056 -k1,5427:18969424,42047322:201055 -k1,5427:22005566,42047322:201055 -k1,5427:22562481,42047322:201055 -k1,5427:24623448,42047322:201055 -k1,5427:25850141,42047322:201055 -k1,5427:28686399,42047322:201055 -k1,5427:29906539,42047322:201055 -k1,5427:32583029,42047322:0 -) -(1,5428:6630773,42888810:25952256,513147,134348 -k1,5427:7519550,42888810:229485 -k1,5427:8104895,42888810:229485 -k1,5427:9892171,42888810:229485 -k1,5427:10737694,42888810:229485 -k1,5427:11737882,42888810:229485 -k1,5427:17722739,42888810:229485 -k1,5427:21028485,42888810:229486 -k1,5427:23682802,42888810:229485 -k1,5427:24370384,42888810:229485 -k1,5427:25251297,42888810:229485 -k1,5427:29357237,42888810:229485 -k1,5427:30778167,42888810:229485 -k1,5427:32583029,42888810:0 -) -(1,5428:6630773,43730298:25952256,513147,134348 -k1,5427:9251104,43730298:269555 -k1,5427:12610681,43730298:269554 -k1,5427:13899321,43730298:269555 -k1,5427:15475008,43730298:269554 -k1,5427:18820823,43730298:269555 -k1,5427:20462046,43730298:269555 -k1,5427:21928287,43730298:269554 -k1,5427:23290327,43730298:269555 -k1,5427:24219174,43730298:269555 -k1,5427:25507813,43730298:269554 -k1,5427:27289939,43730298:269555 -k1,5427:28748971,43730298:269554 -k1,5427:29634564,43730298:269555 -k1,5428:32583029,43730298:0 -) -(1,5428:6630773,44571786:25952256,513147,134348 -k1,5427:7855792,44571786:234770 -k1,5427:10858147,44571786:234770 -k1,5427:12112002,44571786:234770 -k1,5427:13439257,44571786:234770 -k1,5427:14290065,44571786:234770 -k1,5427:17601095,44571786:234770 -k1,5427:20317714,44571786:234771 -k1,5427:21743929,44571786:234770 -k1,5427:26377476,44571786:234770 -k1,5427:27631331,44571786:234770 -k1,5427:29172234,44571786:234770 -k1,5427:30499489,44571786:234770 -k1,5427:31393551,44571786:234770 -k1,5427:32583029,44571786:0 -) -] -(1,5429:32583029,45706769:0,0,0 -g1,5429:32583029,45706769 -) -) -] -(1,5429:6630773,47279633:25952256,0,0 -h1,5429:6630773,47279633:25952256,0,0 -) -] -h1,5429:4262630,4025873:0,0,0 -] -!22714 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5436:37855564,49800853:1179648,16384,0 +) +) +k1,5436:3078556,49800853:-34777008 +) +] +g1,5436:6630773,4812305 +g1,5436:6630773,4812305 +g1,5436:9132937,4812305 +g1,5436:11356573,4812305 +k1,5436:31786111,4812305:20429538 +) +) +] +[1,5436:6630773,45706769:25952256,40108032,0 +(1,5436:6630773,45706769:25952256,40108032,0 +(1,5436:6630773,45706769:0,0,0 +g1,5436:6630773,45706769 +) +[1,5436:6630773,45706769:25952256,40108032,0 +v1,5422:6630773,6254097:0,393216,0 +(1,5422:6630773,13177880:25952256,7316999,616038 +g1,5422:6630773,13177880 +(1,5422:6630773,13177880:25952256,7316999,616038 +(1,5422:6630773,13793918:25952256,7933037,0 +[1,5422:6630773,13793918:25952256,7933037,0 +(1,5422:6630773,13767704:25952256,7906823,0 +r1,5422:6656987,13767704:26214,7906823,0 +[1,5422:6656987,13767704:25899828,7906823,0 +(1,5422:6656987,13177880:25899828,6727175,0 +[1,5422:7246811,13177880:24720180,6727175,0 +v1,5408:7246811,6843921:0,393216,0 +(1,5420:7246811,12456984:24720180,6006279,196608 +g1,5420:7246811,12456984 +g1,5420:7246811,12456984 +g1,5420:7050203,12456984 +(1,5420:7050203,12456984:0,6006279,196608 +r1,5422:32163599,12456984:25113396,6202887,196608 +k1,5420:7050203,12456984:-25113396 +) +(1,5420:7050203,12456984:25113396,6006279,196608 +[1,5420:7246811,12456984:24720180,5809671,0 +(1,5410:7246811,7051539:24720180,404226,107478 +(1,5409:7246811,7051539:0,0,0 +g1,5409:7246811,7051539 +g1,5409:7246811,7051539 +g1,5409:6919131,7051539 +(1,5409:6919131,7051539:0,0,0 +) +g1,5409:7246811,7051539 +) +g1,5410:7879103,7051539 +g1,5410:8827541,7051539 +g1,5410:9459833,7051539 +g1,5410:10092125,7051539 +k1,5410:10092125,7051539:14156 +h1,5410:12003155,7051539:0,0,0 +k1,5410:31966991,7051539:19963836 +g1,5410:31966991,7051539 +) +(1,5411:7246811,7717717:24720180,404226,107478 +h1,5411:7246811,7717717:0,0,0 +g1,5411:7879103,7717717 +g1,5411:8827541,7717717 +g1,5411:9459833,7717717 +g1,5411:10092125,7717717 +k1,5411:10092125,7717717:0 +h1,5411:11988999,7717717:0,0,0 +k1,5411:31966991,7717717:19977992 +g1,5411:31966991,7717717 +) +(1,5412:7246811,8383895:24720180,336593,7863 +h1,5412:7246811,8383895:0,0,0 +g1,5412:7879103,8383895 +k1,5412:7879103,8383895:0 +h1,5412:8511395,8383895:0,0,0 +k1,5412:31966991,8383895:23455596 +g1,5412:31966991,8383895 +) +(1,5413:7246811,9050073:24720180,328204,4718 +h1,5413:7246811,9050073:0,0,0 +g1,5413:7562957,9050073 +g1,5413:7879103,9050073 +g1,5413:8195249,9050073 +g1,5413:8511395,9050073 +g1,5413:9143687,9050073 +h1,5413:9459833,9050073:0,0,0 +k1,5413:31966991,9050073:22507158 +g1,5413:31966991,9050073 +) +(1,5414:7246811,9716251:24720180,404226,6290 +h1,5414:7246811,9716251:0,0,0 +h1,5414:7562957,9716251:0,0,0 +k1,5414:31966991,9716251:24404034 +g1,5414:31966991,9716251 +) +(1,5415:7246811,10382429:24720180,404226,7863 +h1,5415:7246811,10382429:0,0,0 +g1,5415:7879103,10382429 +g1,5415:8827541,10382429 +h1,5415:11356706,10382429:0,0,0 +k1,5415:31966990,10382429:20610284 +g1,5415:31966990,10382429 +) +(1,5416:7246811,11048607:24720180,404226,101187 +h1,5416:7246811,11048607:0,0,0 +g1,5416:7562957,11048607 +g1,5416:7879103,11048607 +g1,5416:8195249,11048607 +g1,5416:8511395,11048607 +g1,5416:8827541,11048607 +g1,5416:9143687,11048607 +k1,5416:9143687,11048607:0 +h1,5416:11040561,11048607:0,0,0 +k1,5416:31966991,11048607:20926430 +g1,5416:31966991,11048607 +) +(1,5417:7246811,11714785:24720180,404226,82312 +h1,5417:7246811,11714785:0,0,0 +g1,5417:9459831,11714785 +g1,5417:10408269,11714785 +h1,5417:12937434,11714785:0,0,0 +k1,5417:31966990,11714785:19029556 +g1,5417:31966990,11714785 +) +(1,5418:7246811,12380963:24720180,404226,76021 +h1,5418:7246811,12380963:0,0,0 +h1,5418:7562957,12380963:0,0,0 +k1,5418:31966991,12380963:24404034 +g1,5418:31966991,12380963 +) +] +) +g1,5420:31966991,12456984 +g1,5420:7246811,12456984 +g1,5420:7246811,12456984 +g1,5420:31966991,12456984 +g1,5420:31966991,12456984 +) +h1,5420:7246811,12653592:0,0,0 +] +) +] +r1,5422:32583029,13767704:26214,7906823,0 +) +] +) +) +g1,5422:32583029,13177880 +) +h1,5422:6630773,13793918:0,0,0 +(1,5425:6630773,15159694:25952256,513147,134348 +h1,5424:6630773,15159694:983040,0,0 +k1,5424:9026265,15159694:215765 +k1,5424:11260539,15159694:215765 +k1,5424:14605647,15159694:215764 +k1,5424:16676736,15159694:215765 +k1,5424:19226893,15159694:215765 +k1,5424:20830711,15159694:215765 +k1,5424:21402335,15159694:215764 +k1,5424:22648326,15159694:215765 +k1,5424:25798793,15159694:215765 +k1,5424:27171268,15159694:215765 +k1,5424:28491314,15159694:215764 +k1,5424:29475816,15159694:215765 +k1,5424:31966991,15159694:215765 +k1,5424:32583029,15159694:0 +) +(1,5425:6630773,16001182:25952256,513147,134348 +k1,5424:9891189,16001182:260178 +k1,5424:11170451,16001182:260177 +k1,5424:12760355,16001182:260178 +k1,5424:13679825,16001182:260178 +k1,5424:16160363,16001182:260178 +k1,5424:19814650,16001182:260177 +k1,5424:20836356,16001182:260178 +k1,5424:25312465,16001182:260178 +k1,5424:29635219,16001182:260177 +k1,5424:31086842,16001182:260178 +k1,5424:32583029,16001182:0 +) +(1,5425:6630773,16842670:25952256,513147,134348 +k1,5424:9762957,16842670:230905 +k1,5424:11185307,16842670:230905 +k1,5424:13151605,16842670:230905 +k1,5424:14148626,16842670:230905 +k1,5424:15398616,16842670:230905 +k1,5424:18326983,16842670:230905 +k1,5424:19217180,16842670:230905 +k1,5424:23189535,16842670:230905 +k1,5424:24887136,16842670:230905 +k1,5424:25777333,16842670:230905 +k1,5424:29213604,16842670:230905 +k1,5424:31422386,16842670:230905 +k1,5425:32583029,16842670:0 +) +(1,5425:6630773,17684158:25952256,513147,134348 +k1,5424:8821344,17684158:264468 +k1,5424:10277256,17684158:264467 +k1,5424:13835563,17684158:264468 +k1,5424:16110019,17684158:264467 +k1,5424:17393572,17684158:264468 +k1,5424:19641814,17684158:264467 +k1,5424:20565574,17684158:264468 +k1,5424:21849126,17684158:264467 +k1,5424:24118340,17684158:264468 +k1,5424:28576456,17684158:264467 +k1,5424:29602452,17684158:264468 +k1,5424:32583029,17684158:0 +) +(1,5425:6630773,18525646:25952256,513147,126483 +k1,5424:7904512,18525646:254654 +k1,5424:10332340,18525646:254654 +k1,5424:11246286,18525646:254654 +k1,5424:12520026,18525646:254655 +k1,5424:16576423,18525646:254654 +k1,5424:18022522,18525646:254654 +k1,5424:19296261,18525646:254654 +k1,5424:21047102,18525646:254654 +k1,5424:22907388,18525646:254654 +k1,5424:23778080,18525646:254654 +k1,5424:24388595,18525646:254655 +k1,5424:26963879,18525646:254654 +k1,5424:29214760,18525646:254654 +k1,5424:30947906,18525646:254654 +k1,5425:32583029,18525646:0 +) +(1,5425:6630773,19367134:25952256,513147,134348 +k1,5424:9884027,19367134:184858 +k1,5424:10937237,19367134:184858 +k1,5424:12226378,19367134:184859 +k1,5424:14554263,19367134:184858 +k1,5424:16023627,19367134:184858 +k1,5424:17227570,19367134:184858 +k1,5424:19585602,19367134:184858 +k1,5424:20762021,19367134:184859 +k1,5424:23099081,19367134:184858 +k1,5424:24303024,19367134:184858 +k1,5424:26330754,19367134:184858 +k1,5424:27174905,19367134:184859 +k1,5424:29882899,19367134:184858 +k1,5424:31086842,19367134:184858 +k1,5424:32583029,19367134:0 +) +(1,5425:6630773,20208622:25952256,505283,134348 +k1,5424:9028604,20208622:148635 +k1,5424:10558084,20208622:148636 +k1,5424:12895622,20208622:148635 +k1,5424:16683472,20208622:148636 +k1,5424:17483535,20208622:148635 +k1,5424:19021534,20208622:148636 +k1,5424:21724762,20208622:148635 +k1,5424:26782700,20208622:148636 +k1,5424:28816806,20208622:148635 +k1,5424:29496939,20208622:148636 +k1,5424:32583029,20208622:0 +) +(1,5425:6630773,21050110:25952256,513147,126483 +k1,5424:7173793,21050110:187160 +k1,5424:11014585,21050110:187160 +k1,5424:15132594,21050110:187160 +k1,5424:16267405,21050110:187160 +k1,5424:17586372,21050110:187160 +k1,5424:19162894,21050110:187159 +k1,5424:21904647,21050110:187160 +k1,5424:23558503,21050110:187160 +k1,5424:24361701,21050110:187160 +k1,5424:27539269,21050110:187160 +k1,5424:28917874,21050110:187160 +k1,5424:29721072,21050110:187160 +k1,5424:32583029,21050110:0 +) +(1,5425:6630773,21891598:25952256,505283,126483 +k1,5424:7339916,21891598:239250 +k1,5424:8110663,21891598:239250 +k1,5424:10979873,21891598:239250 +k1,5424:12285394,21891598:239250 +k1,5424:13900245,21891598:239250 +k1,5424:14790923,21891598:239250 +k1,5424:17350803,21891598:239250 +k1,5424:19472902,21891598:239250 +k1,5424:21624493,21891598:239250 +k1,5424:23009968,21891598:239250 +k1,5424:24452459,21891598:239250 +k1,5424:26022090,21891598:239250 +k1,5424:27333509,21891598:239250 +k1,5424:28858575,21891598:239250 +k1,5424:30980674,21891598:239250 +k1,5425:32583029,21891598:0 +) +(1,5425:6630773,22733086:25952256,505283,7863 +g1,5424:8684671,22733086 +g1,5424:10152677,22733086 +g1,5424:11817946,22733086 +g1,5424:13411126,22733086 +g1,5424:15307082,22733086 +k1,5425:32583029,22733086:15520893 +g1,5425:32583029,22733086 +) +(1,5427:6630773,23574574:25952256,513147,134348 +h1,5426:6630773,23574574:983040,0,0 +k1,5426:8417165,23574574:175517 +k1,5426:9611767,23574574:175517 +k1,5426:11603943,23574574:175518 +k1,5426:12438752,23574574:175517 +k1,5426:17140185,23574574:175517 +k1,5426:18518943,23574574:175517 +k1,5426:21678970,23574574:175517 +k1,5426:22385984,23574574:175517 +k1,5426:24429278,23574574:175518 +k1,5426:26863821,23574574:175517 +k1,5426:31391584,23574574:175517 +k1,5426:32583029,23574574:0 +) +(1,5427:6630773,24416062:25952256,513147,134348 +k1,5426:8012492,24416062:174546 +k1,5426:9493171,24416062:174546 +k1,5426:12684995,24416062:174546 +k1,5426:13621069,24416062:174546 +k1,5426:16090030,24416062:174546 +k1,5426:18230001,24416062:174546 +(1,5426:18437095,24416062:4027843,505283,11795 +) +k1,5426:22846578,24416062:174546 +k1,5426:25579650,24416062:174546 +k1,5426:26700536,24416062:174546 +k1,5426:28167428,24416062:174522 +k1,5426:30761563,24416062:174546 +k1,5426:31563944,24416062:174546 +k1,5426:32583029,24416062:0 +) +(1,5427:6630773,25257550:25952256,513147,134348 +k1,5426:8278713,25257550:280859 +k1,5426:9226728,25257550:280859 +k1,5426:9922348,25257550:280777 +k1,5426:14729123,25257550:280859 +k1,5426:16029067,25257550:280859 +k1,5426:17616059,25257550:280859 +k1,5426:20423330,25257550:280858 +k1,5426:21363481,25257550:280859 +k1,5426:23903366,25257550:280859 +k1,5426:28536471,25257550:280859 +k1,5426:30024503,25257550:280859 +k1,5426:32583029,25257550:0 +) +(1,5427:6630773,26099038:25952256,505283,134348 +k1,5426:9739479,26099038:298523 +k1,5426:11923472,26099038:298522 +k1,5426:13323000,26099038:298523 +k1,5426:15131472,26099038:298522 +k1,5426:17597926,26099038:298523 +k1,5426:21564499,26099038:298523 +k1,5426:22624549,26099038:298522 +k1,5426:24762011,26099038:298523 +(1,5426:24969105,26099038:2674524,505283,11795 +) +k1,5426:28323510,26099038:299117 +k1,5426:30002877,26099038:298523 +k1,5426:32583029,26099038:0 +) +(1,5427:6630773,26940526:25952256,513147,173670 +k1,5426:9765353,26940526:277866 +k1,5426:11062305,26940526:277867 +k1,5426:12432656,26940526:277866 +k1,5426:13377678,26940526:277866 +k1,5426:16958559,26940526:277866 +k1,5426:17919311,26940526:277867 +[1,5426:18048417,26940526:341312,473825,0 +(1,5426:18048417,26802507:341312,335806,0 +) +] +(1,5426:18616683,27114196:370934,473825,0 +) +k1,5426:19614135,26940526:277866 +(1,5426:19821229,26940526:4403364,485622,126483 +) +k1,5426:24709553,26940526:277866 +k1,5426:25673581,26940526:277866 +k1,5426:26970533,26940526:277867 +k1,5426:29740733,26940526:277866 +k1,5426:32583029,26940526:0 +) +(1,5427:6630773,27782014:25952256,513147,134348 +k1,5426:7849088,27782014:270664 +k1,5426:9138836,27782014:270663 +k1,5426:11611510,27782014:270664 +k1,5426:14631408,27782014:270663 +k1,5426:16093517,27782014:270664 +k1,5426:17649996,27782014:270663 +k1,5426:20431344,27782014:270664 +k1,5426:21893452,27782014:270663 +k1,5426:23691760,27782014:270664 +k1,5426:26046468,27782014:270663 +k1,5426:30164751,27782014:270664 +k1,5426:31086842,27782014:270663 +k1,5426:32583029,27782014:0 +) +(1,5427:6630773,28623502:25952256,505283,7863 +k1,5426:9333313,28623502:227901 +k1,5426:13326914,28623502:227902 +k1,5426:14086312,28623502:227901 +k1,5426:15084916,28623502:227901 +k1,5426:18385145,28623502:227901 +k1,5426:19264475,28623502:227902 +k1,5426:22795391,28623502:227901 +k1,5426:24307798,28623502:227901 +k1,5426:26581733,28623502:227901 +k1,5426:27267732,28623502:227902 +k1,5426:29366031,28623502:227901 +k1,5426:30245360,28623502:227901 +k1,5427:32583029,28623502:0 +) +(1,5427:6630773,29464990:25952256,513147,126484 +k1,5426:7297685,29464990:252069 +k1,5426:9045995,29464990:252123 +k1,5426:9914155,29464990:252122 +k1,5426:13699324,29464990:252123 +k1,5426:15183523,29464990:252122 +$1,5426:15183523,29464990 +k1,5426:16764251,29464990:0 +k1,5426:17159433,29464990:0 +k1,5426:17554615,29464990:0 +k1,5426:17949797,29464990:0 +k1,5426:21506435,29464990:0 +k1,5426:21901617,29464990:0 +k1,5426:24667891,29464990:0 +k1,5426:25063073,29464990:0 +$1,5426:26643801,29464990 +k1,5426:27276688,29464990:252123 +k1,5426:27998703,29464990:252122 +k1,5426:28782323,29464990:252123 +k1,5426:30053531,29464990:252123 +k1,5426:31923737,29464990:252122 +k1,5427:32583029,29464990:0 +) +(1,5427:6630773,30306478:25952256,505283,134348 +k1,5426:7268344,30306478:222728 +k1,5426:10401551,30306478:222753 +k1,5426:11908809,30306478:222752 +k1,5426:14657974,30306478:222752 +k1,5426:18448506,30306478:222752 +k1,5426:20242156,30306478:222752 +k1,5426:21656353,30306478:222752 +k1,5426:24565426,30306478:222752 +k1,5426:28321224,30306478:222752 +k1,5426:32583029,30306478:0 +) +(1,5427:6630773,31147966:25952256,513147,134348 +k1,5426:8083051,31147966:183501 +k1,5426:9732591,31147966:183500 +k1,5426:13990465,31147966:183501 +k1,5426:16754118,31147966:183501 +k1,5426:19823824,31147966:183500 +k1,5426:23698968,31147966:183501 +k1,5426:25073914,31147966:183501 +k1,5426:27092422,31147966:183500 +k1,5426:28223574,31147966:183501 +k1,5426:32583029,31147966:0 +) +(1,5427:6630773,31989454:25952256,513147,134348 +(1,5426:6837867,31989454:2674524,505283,11795 +) +g1,5426:9885290,31989454 +(1,5426:9885290,31989454:2674524,505283,11795 +) +g1,5426:13139807,31989454 +g1,5426:14535723,31989454 +g1,5426:15827437,31989454 +g1,5426:16685958,31989454 +g1,5426:18724126,31989454 +g1,5426:19454852,31989454 +g1,5426:21008055,31989454 +g1,5426:22485891,31989454 +g1,5426:25948813,31989454 +g1,5426:27415508,31989454 +g1,5426:28633822,31989454 +g1,5426:31257228,31989454 +k1,5427:32583029,31989454:64888 +g1,5427:32583029,31989454 +) +(1,5429:6630773,32830942:25952256,505283,134348 +h1,5428:6630773,32830942:983040,0,0 +k1,5428:9225128,32830942:230471 +k1,5428:9987095,32830942:230470 +k1,5428:11283837,32830942:230471 +k1,5428:13747775,32830942:230471 +k1,5428:14748948,32830942:230470 +k1,5428:15394231,32830942:230440 +k1,5428:19976948,32830942:230471 +k1,5428:22691233,32830942:230470 +k1,5428:23607866,32830942:230471 +k1,5428:24296434,32830942:230471 +k1,5428:27384274,32830942:230470 +k1,5428:31966991,32830942:230471 +k1,5428:32583029,32830942:0 +) +(1,5429:6630773,33672430:25952256,505283,134348 +k1,5428:7951698,33672430:189118 +k1,5428:11156783,33672430:189118 +k1,5428:12269959,33672430:189118 +k1,5428:13478162,33672430:189118 +k1,5428:15369250,33672430:189118 +k1,5428:17338326,33672430:189118 +k1,5428:18730685,33672430:189118 +k1,5428:19451300,33672430:189118 +k1,5428:20411121,33672430:189118 +k1,5428:23774148,33672430:189118 +k1,5428:27172564,33672430:189118 +k1,5428:28695995,33672430:189118 +k1,5428:29536541,33672430:189118 +k1,5428:31510860,33672430:189118 +k1,5428:32583029,33672430:0 +) +(1,5429:6630773,34513918:25952256,505283,134348 +k1,5428:8113096,34513918:203716 +k1,5428:11406835,34513918:203716 +k1,5428:12226589,34513918:203716 +k1,5428:14132275,34513918:203716 +k1,5428:16248332,34513918:203716 +k1,5428:17643493,34513918:203716 +k1,5428:19115987,34513918:203717 +k1,5428:20785743,34513918:203716 +k1,5428:22549216,34513918:203716 +k1,5428:23368970,34513918:203716 +k1,5428:24591771,34513918:203716 +k1,5428:27549965,34513918:203716 +k1,5428:31202185,34513918:203716 +k1,5428:32583029,34513918:0 +) +(1,5429:6630773,35355406:25952256,513147,134348 +k1,5428:8665283,35355406:151661 +k1,5428:10572654,35355406:151661 +k1,5428:13704892,35355406:151661 +k1,5428:16215850,35355406:151662 +k1,5428:17468516,35355406:151661 +k1,5428:19130127,35355406:151661 +k1,5428:22434725,35355406:151661 +k1,5428:24321779,35355406:151661 +k1,5428:26312379,35355406:151661 +k1,5428:27655486,35355406:151662 +k1,5428:28826232,35355406:151661 +k1,5428:31086842,35355406:151661 +k1,5428:32583029,35355406:0 +) +(1,5429:6630773,36196894:25952256,513147,134349 +k1,5428:7760123,36196894:181699 +k1,5428:8960906,36196894:181698 +k1,5428:10724644,36196894:181699 +k1,5428:11437839,36196894:181698 +k1,5428:14403507,36196894:181699 +k1,5428:17143732,36196894:181699 +k1,5428:20328290,36196894:181698 +k1,5428:21122751,36196894:181699 +$1,5428:21122751,36196894 +k1,5428:23098661,36196894:0 +k1,5428:23493843,36196894:0 +k1,5428:23889025,36196894:0 +k1,5428:24284207,36196894:0 +k1,5428:27840845,36196894:0 +k1,5428:28236027,36196894:0 +k1,5428:29421573,36196894:0 +k1,5428:29816755,36196894:0 +k1,5428:32187847,36196894:0 +k1,5429:32583029,36196894:0 +) +(1,5429:6630773,37038382:25952256,505283,98314 +(1,5428:9397047,37136696:32768,0,0 +) +$1,5428:11010543,37038382 +k1,5429:32583029,37038382:21398816 +g1,5429:32583029,37038382 +) +(1,5430:6630773,39129642:25952256,555811,147783 +(1,5430:6630773,39129642:2450326,534184,12975 +g1,5430:6630773,39129642 +g1,5430:9081099,39129642 +) +g1,5430:13217601,39129642 +k1,5430:32583029,39129642:16902126 +g1,5430:32583029,39129642 +) +(1,5434:6630773,40364346:25952256,513147,134348 +k1,5433:7982031,40364346:154571 +k1,5433:9229088,40364346:154572 +k1,5433:10042951,40364346:154571 +k1,5433:11216607,40364346:154571 +k1,5433:12995817,40364346:154572 +k1,5433:14358216,40364346:154571 +k1,5433:15164215,40364346:154571 +k1,5433:17988068,40364346:154572 +k1,5433:18498499,40364346:154571 +k1,5433:21329561,40364346:154572 +k1,5433:22100170,40364346:154571 +k1,5433:25331001,40364346:154571 +k1,5433:28477947,40364346:154572 +k1,5433:29823963,40364346:154571 +k1,5433:32583029,40364346:0 +) +(1,5434:6630773,41205834:25952256,505283,134348 +k1,5433:9088233,41205834:201055 +k1,5433:9905326,41205834:201055 +k1,5433:11700217,41205834:201055 +k1,5433:13599310,41205834:201055 +k1,5433:14156225,41205834:201055 +k1,5433:15553967,41205834:201055 +k1,5433:17118172,41205834:201056 +k1,5433:18969424,41205834:201055 +k1,5433:22005566,41205834:201055 +k1,5433:22562481,41205834:201055 +k1,5433:24623448,41205834:201055 +k1,5433:25850141,41205834:201055 +k1,5433:28686399,41205834:201055 +k1,5433:29906539,41205834:201055 +k1,5433:32583029,41205834:0 +) +(1,5434:6630773,42047322:25952256,513147,134348 +k1,5433:7519550,42047322:229485 +k1,5433:8104895,42047322:229485 +k1,5433:9892171,42047322:229485 +k1,5433:10737694,42047322:229485 +k1,5433:11737882,42047322:229485 +k1,5433:17722739,42047322:229485 +k1,5433:21028485,42047322:229486 +k1,5433:23682802,42047322:229485 +k1,5433:24370384,42047322:229485 +k1,5433:25251297,42047322:229485 +k1,5433:29357237,42047322:229485 +k1,5433:30778167,42047322:229485 +k1,5433:32583029,42047322:0 +) +(1,5434:6630773,42888810:25952256,513147,134348 +k1,5433:9251104,42888810:269555 +k1,5433:12610681,42888810:269554 +k1,5433:13899321,42888810:269555 +k1,5433:15475008,42888810:269554 +k1,5433:18820823,42888810:269555 +k1,5433:20462046,42888810:269555 +k1,5433:21928287,42888810:269554 +k1,5433:23290327,42888810:269555 +k1,5433:24219174,42888810:269555 +k1,5433:25507813,42888810:269554 +k1,5433:27289939,42888810:269555 +k1,5433:28748971,42888810:269554 +k1,5433:29634564,42888810:269555 +k1,5434:32583029,42888810:0 +) +(1,5434:6630773,43730298:25952256,513147,134348 +k1,5433:7855792,43730298:234770 +k1,5433:10858147,43730298:234770 +k1,5433:12112002,43730298:234770 +k1,5433:13439257,43730298:234770 +k1,5433:14290065,43730298:234770 +k1,5433:17601095,43730298:234770 +k1,5433:20317714,43730298:234771 +k1,5433:21743929,43730298:234770 +k1,5433:26377476,43730298:234770 +k1,5433:27631331,43730298:234770 +k1,5433:29172234,43730298:234770 +k1,5433:30499489,43730298:234770 +k1,5433:31393551,43730298:234770 +k1,5433:32583029,43730298:0 +) +(1,5434:6630773,44571786:25952256,505283,134348 +k1,5433:7518654,44571786:271843 +k1,5433:11221308,44571786:271844 +k1,5433:13643387,44571786:271843 +k1,5433:14724600,44571786:271843 +k1,5433:16797373,44571786:271844 +k1,5433:19598906,44571786:271843 +k1,5433:20328846,44571786:271843 +k1,5433:24410297,44571786:271843 +k1,5433:25452844,44571786:271844 +k1,5433:29484487,44571786:271843 +k1,5433:32583029,44571786:0 +) +(1,5434:6630773,45413274:25952256,505283,134348 +g1,5433:9916092,45413274 +k1,5434:32583030,45413274:21296580 +g1,5434:32583030,45413274 +) +] +(1,5436:32583029,45706769:0,0,0 +g1,5436:32583029,45706769 +) +) +] +(1,5436:6630773,47279633:25952256,0,0 +h1,5436:6630773,47279633:25952256,0,0 +) +] +h1,5436:4262630,4025873:0,0,0 +] +!23137 }102 -Input:698:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:699:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!182 +Input:694:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:695:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!194 {103 -[1,5445:4262630,47279633:28320399,43253760,0 -(1,5445:4262630,4025873:0,0,0 -[1,5445:-473657,4025873:25952256,0,0 -(1,5445:-473657,-710414:25952256,0,0 -h1,5445:-473657,-710414:0,0,0 -(1,5445:-473657,-710414:0,0,0 -(1,5445:-473657,-710414:0,0,0 -g1,5445:-473657,-710414 -(1,5445:-473657,-710414:65781,0,65781 -g1,5445:-407876,-710414 -[1,5445:-407876,-644633:0,0,0 +[1,5451:4262630,47279633:28320399,43253760,0 +(1,5451:4262630,4025873:0,0,0 +[1,5451:-473657,4025873:25952256,0,0 +(1,5451:-473657,-710414:25952256,0,0 +h1,5451:-473657,-710414:0,0,0 +(1,5451:-473657,-710414:0,0,0 +(1,5451:-473657,-710414:0,0,0 +g1,5451:-473657,-710414 +(1,5451:-473657,-710414:65781,0,65781 +g1,5451:-407876,-710414 +[1,5451:-407876,-644633:0,0,0 ] ) -k1,5445:-473657,-710414:-65781 +k1,5451:-473657,-710414:-65781 ) ) -k1,5445:25478599,-710414:25952256 -g1,5445:25478599,-710414 +k1,5451:25478599,-710414:25952256 +g1,5451:25478599,-710414 ) ] ) -[1,5445:6630773,47279633:25952256,43253760,0 -[1,5445:6630773,4812305:25952256,786432,0 -(1,5445:6630773,4812305:25952256,505283,134348 -(1,5445:6630773,4812305:25952256,505283,134348 -g1,5445:3078558,4812305 -[1,5445:3078558,4812305:0,0,0 -(1,5445:3078558,2439708:0,1703936,0 -k1,5445:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5445:2537886,2439708:1179648,16384,0 +[1,5451:6630773,47279633:25952256,43253760,0 +[1,5451:6630773,4812305:25952256,786432,0 +(1,5451:6630773,4812305:25952256,505283,134348 +(1,5451:6630773,4812305:25952256,505283,134348 +g1,5451:3078558,4812305 +[1,5451:3078558,4812305:0,0,0 +(1,5451:3078558,2439708:0,1703936,0 +k1,5451:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5451:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5445:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5451:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5445:3078558,4812305:0,0,0 -(1,5445:3078558,2439708:0,1703936,0 -g1,5445:29030814,2439708 -g1,5445:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5445:36151628,1915420:16384,1179648,0 +[1,5451:3078558,4812305:0,0,0 +(1,5451:3078558,2439708:0,1703936,0 +g1,5451:29030814,2439708 +g1,5451:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5451:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5445:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5451:37855564,2439708:1179648,16384,0 ) ) -k1,5445:3078556,2439708:-34777008 +k1,5451:3078556,2439708:-34777008 ) ] -[1,5445:3078558,4812305:0,0,0 -(1,5445:3078558,49800853:0,16384,2228224 -k1,5445:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5445:2537886,49800853:1179648,16384,0 +[1,5451:3078558,4812305:0,0,0 +(1,5451:3078558,49800853:0,16384,2228224 +k1,5451:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5451:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5445:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5451:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5445:3078558,4812305:0,0,0 -(1,5445:3078558,49800853:0,16384,2228224 -g1,5445:29030814,49800853 -g1,5445:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5445:36151628,51504789:16384,1179648,0 +[1,5451:3078558,4812305:0,0,0 +(1,5451:3078558,49800853:0,16384,2228224 +g1,5451:29030814,49800853 +g1,5451:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5451:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5445:37855564,49800853:1179648,16384,0 -) -) -k1,5445:3078556,49800853:-34777008 -) -] -g1,5445:6630773,4812305 -k1,5445:18752969,4812305:11325278 -g1,5445:20139710,4812305 -g1,5445:20788516,4812305 -g1,5445:24102671,4812305 -g1,5445:28605649,4812305 -g1,5445:30015328,4812305 -) -) -] -[1,5445:6630773,45706769:25952256,40108032,0 -(1,5445:6630773,45706769:25952256,40108032,0 -(1,5445:6630773,45706769:0,0,0 -g1,5445:6630773,45706769 -) -[1,5445:6630773,45706769:25952256,40108032,0 -(1,5428:6630773,6254097:25952256,505283,134348 -k1,5427:7518654,6254097:271843 -k1,5427:11221308,6254097:271844 -k1,5427:13643387,6254097:271843 -k1,5427:14724600,6254097:271843 -k1,5427:16797373,6254097:271844 -k1,5427:19598906,6254097:271843 -k1,5427:20328846,6254097:271843 -k1,5427:24410297,6254097:271843 -k1,5427:25452844,6254097:271844 -k1,5427:29484487,6254097:271843 -k1,5427:32583029,6254097:0 -) -(1,5428:6630773,7095585:25952256,505283,134348 -g1,5427:9916092,7095585 -k1,5428:32583030,7095585:21296580 -g1,5428:32583030,7095585 -) -(1,5430:6630773,7937073:25952256,513147,134348 -h1,5429:6630773,7937073:983040,0,0 -k1,5429:8249970,7937073:148569 -k1,5429:10910584,7937073:148619 -k1,5429:14153158,7937073:148619 -k1,5429:15869399,7937073:148620 -k1,5429:16373878,7937073:148619 -k1,5429:18224467,7937073:148619 -k1,5429:20659637,7937073:148619 -k1,5429:21569785,7937073:148620 -k1,5429:24268410,7937073:148619 -k1,5429:25822776,7937073:148619 -k1,5429:28103937,7937073:148619 -k1,5429:29846393,7937073:148620 -k1,5429:30888268,7937073:148619 -k1,5429:32583029,7937073:0 -) -(1,5430:6630773,8778561:25952256,505283,134348 -g1,5429:7591530,8778561 -g1,5429:10177580,8778561 -k1,5430:32583028,8778561:20430848 -g1,5430:32583028,8778561 -) -(1,5432:7202902,10144337:24807998,513147,134348 -(1,5430:7202902,10144337:983040,0,0 -g1,5430:8185942,10144337 -g1,5430:6875222,10144337 -g1,5430:6547542,10144337 -(1,5430:6547542,10144337:1310720,0,0 -k1,5430:7858262,10144337:1310720 -) -g1,5430:8185942,10144337 -) -k1,5431:8842039,10144337:186204 -k1,5431:10129248,10144337:186204 -k1,5431:11825402,10144337:186204 -k1,5431:13240406,10144337:186204 -k1,5431:14151439,10144337:186205 -k1,5431:14953681,10144337:186204 -k1,5431:15906001,10144337:186204 -k1,5431:16751497,10144337:186204 -k1,5431:17918775,10144337:186204 -k1,5431:21611810,10144337:186204 -k1,5431:22994701,10144337:186204 -k1,5431:24487038,10144337:186204 -k1,5431:26028528,10144337:186205 -k1,5431:26746229,10144337:186204 -k1,5431:27703136,10144337:186204 -k1,5431:30819455,10144337:186204 -k1,5431:32010900,10144337:0 -) -(1,5432:7202902,10985825:24807998,513147,134348 -k1,5431:9455526,10985825:226906 -k1,5431:11076382,10985825:226905 -k1,5431:11659148,10985825:226906 -k1,5431:13750553,10985825:226906 -k1,5431:15411386,10985825:226905 -k1,5431:19000944,10985825:226906 -k1,5431:22281828,10985825:226906 -k1,5431:24170727,10985825:226906 -k1,5431:26007852,10985825:226905 -k1,5431:27301029,10985825:226906 -k1,5431:28719380,10985825:226906 -k1,5431:29611475,10985825:226905 -k1,5431:30576972,10985825:226906 -k1,5431:32010900,10985825:0 -) -(1,5432:7202902,11827313:24807998,513147,134348 -k1,5431:8632111,11827313:144703 -k1,5431:11909436,11827313:144704 -k1,5431:13547705,11827313:144703 -k1,5431:15165002,11827313:144703 -k1,5431:17137504,11827313:144703 -k1,5431:18473653,11827313:144704 -k1,5431:21981008,11827313:144703 -k1,5431:23117271,11827313:144703 -k1,5431:27118113,11827313:144704 -k1,5431:30819455,11827313:144703 -k1,5431:32010900,11827313:0 -) -(1,5432:7202902,12668801:24807998,513147,134348 -k1,5431:9855603,12668801:221315 -k1,5431:10736210,12668801:221315 -k1,5431:13270291,12668801:221315 -k1,5431:16537719,12668801:221315 -k1,5431:18542924,12668801:221315 -k1,5431:19955684,12668801:221315 -k1,5431:21821297,12668801:221315 -k1,5431:23034172,12668801:221315 -k1,5431:26047321,12668801:221315 -k1,5431:28311393,12668801:221315 -k1,5431:32010900,12668801:0 -) -(1,5432:7202902,13510289:24807998,513147,126483 -g1,5431:9822376,13510289 -g1,5431:10704490,13510289 -g1,5431:12981210,13510289 -g1,5431:13711936,13510289 -g1,5431:16675474,13510289 -k1,5432:32010900,13510289:12653693 -g1,5432:32010900,13510289 -) -(1,5435:6630773,14876065:25952256,505283,134348 -h1,5434:6630773,14876065:983040,0,0 -k1,5434:8990486,14876065:179986 -k1,5434:11409181,14876065:179985 -k1,5434:14864001,14876065:179986 -k1,5434:16899310,14876065:179985 -k1,5434:19125330,14876065:179986 -k1,5434:20835581,14876065:179985 -k1,5434:22300073,14876065:179986 -k1,5434:23855659,14876065:179985 -k1,5434:25389619,14876065:179986 -k1,5434:29778326,14876065:179985 -k1,5434:31451222,14876065:179986 -k1,5434:32583029,14876065:0 -) -(1,5435:6630773,15717553:25952256,513147,134348 -k1,5434:8123771,15717553:209803 -k1,5434:10422207,15717553:209804 -k1,5434:12082977,15717553:209803 -k1,5434:14994174,15717553:209803 -k1,5434:16400665,15717553:209804 -k1,5434:18263941,15717553:209803 -k1,5434:20755052,15717553:209803 -k1,5434:21616283,15717553:209803 -k1,5434:22240919,15717553:209793 -k1,5434:24612099,15717553:209803 -k1,5434:25508065,15717553:209804 -k1,5434:26996475,15717553:209803 -k1,5434:27892440,15717553:209803 -k1,5434:29234051,15717553:209804 -k1,5434:31145824,15717553:209803 -k1,5435:32583029,15717553:0 -) -(1,5435:6630773,16559041:25952256,513147,134348 -k1,5434:8736394,16559041:239811 -k1,5434:10626402,16559041:239811 -k1,5434:11525505,16559041:239811 -k1,5434:14841577,16559041:239812 -k1,5434:16751245,16559041:239811 -k1,5434:18653049,16559041:239811 -k1,5434:20096101,16559041:239811 -k1,5434:20794009,16559041:239811 -k1,5434:23669678,16559041:239811 -k1,5434:26224877,16559041:239812 -k1,5434:27749194,16559041:239811 -k1,5434:30170699,16559041:239811 -k1,5434:31601955,16559041:239811 -k1,5435:32583029,16559041:0 -) -(1,5435:6630773,17400529:25952256,513147,134348 -k1,5434:9490536,17400529:305825 -k1,5434:10787920,17400529:305824 -k1,5434:15164841,17400529:305825 -k1,5434:17156251,17400529:305824 -k1,5434:18078114,17400529:305825 -k1,5434:19403023,17400529:305824 -k1,5434:23840893,17400529:305825 -k1,5434:24813873,17400529:305824 -k1,5434:25534434,17400529:305718 -k1,5434:28001636,17400529:305825 -k1,5434:29498905,17400529:305824 -k1,5434:32583029,17400529:0 -) -(1,5435:6630773,18242017:25952256,513147,134348 -k1,5434:10461100,18242017:252061 -k1,5434:11399324,18242017:252062 -k1,5434:12422088,18242017:252061 -k1,5434:15171727,18242017:252062 -k1,5434:15955285,18242017:252061 -k1,5434:18573197,18242017:252062 -k1,5434:19844343,18242017:252061 -k1,5434:21922893,18242017:252062 -k1,5434:22834246,18242017:252061 -k1,5434:24289549,18242017:252062 -k1,5434:26297320,18242017:252061 -k1,5434:29484084,18242017:252062 -k1,5434:31266411,18242017:252061 -k1,5435:32583029,18242017:0 -) -(1,5435:6630773,19083505:25952256,513147,134348 -k1,5434:10161343,19083505:281950 -k1,5434:11944067,19083505:281950 -k1,5434:13417463,19083505:281951 -k1,5434:15283418,19083505:281950 -k1,5434:20391439,19083505:281950 -k1,5434:21664949,19083505:281950 -k1,5434:26337157,19083505:281951 -k1,5434:27566758,19083505:281950 -k1,5434:30401335,19083505:281950 -k1,5434:32583029,19083505:0 -) -(1,5435:6630773,19924993:25952256,505283,7863 -g1,5434:8021447,19924993 -k1,5435:32583030,19924993:22659728 -g1,5435:32583030,19924993 -) -(1,5437:6630773,20766481:25952256,513147,134348 -h1,5436:6630773,20766481:983040,0,0 -k1,5436:9339704,20766481:235602 -k1,5436:10522957,20766481:235602 -k1,5436:12919936,20766481:235602 -k1,5436:14668763,20766481:235601 -k1,5436:15852016,20766481:235602 -k1,5436:19160601,20766481:235602 -k1,5436:19752063,20766481:235602 -k1,5436:21860684,20766481:235602 -k1,5436:23485649,20766481:235602 -k1,5436:24829465,20766481:235602 -k1,5436:25933418,20766481:235601 -k1,5436:27699286,20766481:235602 -k1,5436:28586316,20766481:235602 -k1,5436:29569684,20766481:235602 -k1,5436:32583029,20766481:0 -) -(1,5437:6630773,21607969:25952256,505283,134348 -k1,5436:8110303,21607969:195024 -k1,5436:9324412,21607969:195024 -k1,5436:12960731,21607969:195024 -k1,5436:14347200,21607969:195024 -k1,5436:16050863,21607969:195024 -k1,5436:21302645,21607969:195024 -k1,5436:22489229,21607969:195024 -k1,5436:24398019,21607969:195024 -k1,5436:25784488,21607969:195024 -k1,5436:27288266,21607969:195024 -k1,5436:28134718,21607969:195024 -k1,5436:30340387,21607969:195024 -k1,5436:32583029,21607969:0 -) -(1,5437:6630773,22449457:25952256,513147,126483 -k1,5436:9185038,22449457:207421 -k1,5436:10773304,22449457:207422 -k1,5436:11512222,22449457:207421 -k1,5436:13027086,22449457:207421 -k1,5436:14701203,22449457:207421 -k1,5436:15856276,22449457:207422 -k1,5436:18913202,22449457:207421 -k1,5436:21620822,22449457:207421 -k1,5436:23853961,22449457:207421 -k1,5436:27518407,22449457:207422 -k1,5436:30052356,22449457:207421 -k1,5436:31451222,22449457:207421 -k1,5436:32583029,22449457:0 -) -(1,5437:6630773,23290945:25952256,513147,134348 -k1,5436:8226640,23290945:206504 -k1,5436:10987737,23290945:206504 -k1,5436:13415911,23290945:206503 -k1,5436:14273843,23290945:206504 -k1,5436:18143810,23290945:206504 -k1,5436:19009606,23290945:206504 -k1,5436:22842872,23290945:206504 -k1,5436:24443326,23290945:206503 -k1,5436:27936461,23290945:206504 -k1,5436:28825850,23290945:206504 -k1,5436:32583029,23290945:0 -) -(1,5437:6630773,24132433:25952256,513147,126483 -k1,5436:7675064,24132433:270311 -k1,5436:10227993,24132433:270310 -k1,5436:11965000,24132433:270311 -k1,5436:12851349,24132433:270311 -k1,5436:14819041,24132433:270310 -k1,5436:16787390,24132433:270311 -k1,5436:17926053,24132433:270311 -k1,5436:19187924,24132433:270311 -k1,5436:20524505,24132433:270310 -k1,5436:23507351,24132433:270311 -k1,5436:24429090,24132433:270311 -k1,5436:28732486,24132433:270310 -k1,5436:31535764,24132433:270311 -k1,5436:32583029,24132433:0 -) -(1,5437:6630773,24973921:25952256,513147,134348 -k1,5436:7780728,24973921:202304 -k1,5436:10626755,24973921:202305 -k1,5436:13187700,24973921:202304 -k1,5436:15427519,24973921:202305 -k1,5436:18114293,24973921:202304 -k1,5436:18968026,24973921:202305 -k1,5436:19526190,24973921:202304 -k1,5436:21956064,24973921:202305 -k1,5436:26374299,24973921:202304 -k1,5436:27444956,24973921:202305 -k1,5436:28779722,24973921:202304 -k1,5436:30180681,24973921:202305 -k1,5436:31931601,24973921:202304 -k1,5436:32583029,24973921:0 -) -(1,5437:6630773,25815409:25952256,505283,126483 -g1,5436:8559497,25815409 -g1,5436:10640265,25815409 -k1,5437:32583028,25815409:18934660 -g1,5437:32583028,25815409 -) -(1,5439:6630773,26656897:25952256,513147,134348 -h1,5438:6630773,26656897:983040,0,0 -k1,5438:9053991,26656897:243491 -k1,5438:10603616,26656897:243492 -k1,5438:12202392,26656897:243491 -k1,5438:13061921,26656897:243491 -k1,5438:16568451,26656897:243492 -k1,5438:19162718,26656897:243491 -k1,5438:22482469,26656897:243491 -k1,5438:24222147,26656897:243491 -k1,5438:24997136,26656897:243492 -k1,5438:25892055,26656897:243491 -k1,5438:28183546,26656897:243491 -k1,5438:29711544,26656897:243492 -k1,5438:31086842,26656897:243491 -k1,5438:32583029,26656897:0 -) -(1,5439:6630773,27498385:25952256,513147,126483 -k1,5438:8200470,27498385:285191 -k1,5438:9354013,27498385:285191 -k1,5438:11254010,27498385:285190 -k1,5438:13399768,27498385:285191 -k1,5438:14336387,27498385:285191 -k1,5438:15369344,27498385:285191 -k1,5438:17614060,27498385:285190 -k1,5438:19264366,27498385:285191 -k1,5438:20015518,27498385:285191 -k1,5438:23104339,27498385:285191 -k1,5438:26484139,27498385:285190 -k1,5438:29373731,27498385:285191 -k1,5438:32583029,27498385:0 -) -(1,5439:6630773,28339873:25952256,505283,126483 -k1,5438:8209099,28339873:223041 -k1,5438:8963636,28339873:223040 -k1,5438:9838105,28339873:223041 -k1,5438:11776878,28339873:223040 -k1,5438:13380763,28339873:223041 -k1,5438:14888310,28339873:223041 -k1,5438:16819874,28339873:223040 -k1,5438:17574412,28339873:223041 -k1,5438:20718392,28339873:223040 -k1,5438:22951422,28339873:223041 -k1,5438:24193548,28339873:223041 -k1,5438:26247664,28339873:223040 -k1,5438:27662150,28339873:223041 -k1,5438:28241050,28339873:223040 -k1,5438:30976086,28339873:223041 -k1,5438:32583029,28339873:0 -) -(1,5439:6630773,29181361:25952256,513147,134348 -k1,5438:9851649,29181361:180005 -k1,5438:10979305,29181361:180005 -k1,5438:12336338,29181361:180006 -k1,5438:14224867,29181361:180005 -k1,5438:17592543,29181361:180005 -k1,5438:19312644,29181361:180005 -k1,5438:21201174,29181361:180006 -k1,5438:23391824,29181361:180005 -k1,5438:25592959,29181361:180005 -k1,5438:28138814,29181361:180005 -k1,5438:29337905,29181361:180006 -k1,5438:31298523,29181361:180005 -k1,5438:32583029,29181361:0 -) -(1,5439:6630773,30022849:25952256,505283,126483 -g1,5438:7934284,30022849 -g1,5438:8881279,30022849 -g1,5438:11445047,30022849 -g1,5438:14223773,30022849 -g1,5438:15184530,30022849 -g1,5438:16402844,30022849 -k1,5439:32583029,30022849:13968345 -g1,5439:32583029,30022849 -) -(1,5441:6630773,30864337:25952256,513147,134348 -h1,5440:6630773,30864337:983040,0,0 -k1,5440:8385546,30864337:293976 -k1,5440:10793713,30864337:293976 -k1,5440:13443053,30864337:293976 -k1,5440:14419913,30864337:293975 -k1,5440:16828080,30864337:293976 -k1,5440:19400743,30864337:293976 -k1,5440:20960875,30864337:293976 -k1,5440:21610711,30864337:293976 -k1,5440:23897637,30864337:293976 -k1,5440:25871956,30864337:293976 -k1,5440:26697428,30864337:293975 -k1,5440:29770131,30864337:293976 -k1,5440:30825635,30864337:293976 -k1,5440:31475471,30864337:293976 -k1,5441:32583029,30864337:0 -) -(1,5441:6630773,31705825:25952256,513147,134348 -k1,5440:9618307,31705825:236988 -k1,5440:10538180,31705825:236988 -k1,5440:11584539,31705825:236989 -k1,5440:13501870,31705825:236988 -k1,5440:15188514,31705825:236988 -k1,5440:16444587,31705825:236988 -k1,5440:18512652,31705825:236989 -k1,5440:21150224,31705825:236988 -k1,5440:22070097,31705825:236988 -k1,5440:24767962,31705825:236988 -k1,5440:25360811,31705825:236989 -k1,5440:27036314,31705825:236988 -k1,5440:29261009,31705825:236988 -k1,5440:32583029,31705825:0 -) -(1,5441:6630773,32547313:25952256,513147,134348 -k1,5440:9422432,32547313:199710 -k1,5440:10238180,32547313:199710 -k1,5440:12694295,32547313:199710 -k1,5440:13913090,32547313:199710 -k1,5440:15894724,32547313:199710 -k1,5440:16753726,32547313:199710 -k1,5440:17972521,32547313:199710 -k1,5440:21022391,32547313:199709 -k1,5440:22418788,32547313:199710 -k1,5440:24400422,32547313:199710 -k1,5440:25704414,32547313:199710 -k1,5440:26651890,32547313:199710 -k1,5440:28707580,32547313:199710 -k1,5440:29263150,32547313:199710 -k1,5440:31966991,32547313:199710 -k1,5440:32583029,32547313:0 -) -(1,5441:6630773,33388801:25952256,513147,134348 -k1,5440:7904083,33388801:254225 -k1,5440:13215066,33388801:254225 -k1,5440:14128584,33388801:254226 -k1,5440:15153512,33388801:254225 -k1,5440:18692401,33388801:254225 -k1,5440:19632788,33388801:254225 -k1,5440:21165620,33388801:254225 -k1,5440:22106007,33388801:254225 -k1,5440:22976271,33388801:254226 -k1,5440:24249581,33388801:254225 -k1,5440:27614800,33388801:254225 -k1,5440:29648327,33388801:254225 -k1,5440:32583029,33388801:0 -) -(1,5441:6630773,34230289:25952256,513147,134348 -k1,5440:8616715,34230289:234165 -k1,5440:11711527,34230289:234165 -k1,5440:13454987,34230289:234165 -k1,5440:14680712,34230289:234165 -k1,5440:17117542,34230289:234165 -k1,5440:18113235,34230289:234165 -k1,5440:19524428,34230289:234166 -k1,5440:20441478,34230289:234165 -k1,5440:23147661,34230289:234165 -k1,5440:26183490,34230289:234165 -k1,5440:27076947,34230289:234165 -k1,5440:29505257,34230289:234165 -k1,5440:31436804,34230289:234165 -k1,5440:32583029,34230289:0 -) -(1,5441:6630773,35071777:25952256,505283,134348 -k1,5440:9045884,35071777:258976 -k1,5440:11013385,35071777:258977 -k1,5440:13456676,35071777:258976 -k1,5440:16639213,35071777:258976 -k1,5440:19009105,35071777:258977 -k1,5440:21789251,35071777:258976 -k1,5440:22809755,35071777:258976 -k1,5440:24662568,35071777:258977 -k1,5440:26206705,35071777:258976 -k1,5440:27081719,35071777:258976 -k1,5440:29226167,35071777:258977 -k1,5440:29841003,35071777:258976 -k1,5440:32583029,35071777:0 -) -(1,5441:6630773,35913265:25952256,513147,134348 -g1,5440:9230586,35913265 -g1,5440:11756998,35913265 -g1,5440:12615519,35913265 -g1,5440:15682603,35913265 -g1,5440:18148722,35913265 -g1,5440:18703811,35913265 -g1,5440:21175829,35913265 -g1,5440:22982001,35913265 -k1,5441:32583029,35913265:6722031 -g1,5441:32583029,35913265 -) -(1,5443:6630773,36754753:25952256,513147,134348 -h1,5442:6630773,36754753:983040,0,0 -k1,5442:11395593,36754753:217277 -k1,5442:12631955,36754753:217277 -k1,5442:14958181,36754753:217277 -k1,5442:15834750,36754753:217277 -k1,5442:17571807,36754753:217277 -k1,5442:18494251,36754753:217277 -k1,5442:19327566,36754753:217277 -k1,5442:21146543,36754753:217277 -k1,5442:23234873,36754753:217277 -k1,5442:24598375,36754753:217277 -k1,5442:27684163,36754753:217277 -k1,5442:29671567,36754753:217277 -k1,5442:31160242,36754753:217277 -k1,5442:32583029,36754753:0 -) -(1,5443:6630773,37596241:25952256,513147,126483 -k1,5442:9493479,37596241:192114 -k1,5442:11540262,37596241:192114 -k1,5442:12541746,37596241:192114 -k1,5442:15511276,37596241:192114 -k1,5442:17473517,37596241:192114 -k1,5442:18857076,37596241:192114 -k1,5442:22462305,37596241:192114 -k1,5442:23305847,37596241:192114 -k1,5442:24404324,37596241:192114 -k1,5442:25247866,37596241:192114 -k1,5442:27333315,37596241:192114 -k1,5442:28544514,37596241:192114 -k1,5442:30235436,37596241:192114 -k1,5442:31086842,37596241:192114 -k1,5442:32583029,37596241:0 -) -(1,5443:6630773,38437729:25952256,513147,134348 -k1,5442:9271218,38437729:215613 -k1,5442:10505917,38437729:215614 -k1,5442:13571691,38437729:215613 -k1,5442:15058702,38437729:215613 -k1,5442:17589703,38437729:215614 -k1,5442:20567659,38437729:215613 -k1,5442:22420362,38437729:215613 -k1,5442:24128885,38437729:215613 -k1,5442:25363584,38437729:215614 -k1,5442:26946278,38437729:215613 -k1,5442:27693388,38437729:215613 -k1,5442:30137881,38437729:215614 -k1,5442:30981329,38437729:215613 -k1,5442:32583029,38437729:0 -) -(1,5443:6630773,39279217:25952256,513147,134348 -k1,5442:8680336,39279217:178510 -k1,5442:9471608,39279217:178510 -k1,5442:10669203,39279217:178510 -k1,5442:12201686,39279217:178509 -k1,5442:14703447,39279217:178510 -k1,5442:15750309,39279217:178510 -k1,5442:17130749,39279217:178510 -k1,5442:18118629,39279217:178510 -k1,5442:19989279,39279217:178510 -k1,5442:21437876,39279217:178509 -k1,5442:22275678,39279217:178510 -k1,5442:28617849,39279217:178510 -k1,5442:31541007,39279217:178510 -k1,5442:32583029,39279217:0 -) -(1,5443:6630773,40120705:25952256,505283,126483 -k1,5442:9704888,40120705:239028 -k1,5442:10812267,40120705:239027 -k1,5442:12388229,40120705:239028 -k1,5442:14449158,40120705:239028 -k1,5442:15707271,40120705:239028 -k1,5442:17626641,40120705:239027 -k1,5442:20644396,40120705:239028 -k1,5442:21644952,40120705:239028 -k1,5442:25941969,40120705:239028 -k1,5442:29982739,40120705:239027 -k1,5442:31714677,40120705:239028 -k1,5442:32583029,40120705:0 -) -(1,5443:6630773,40962193:25952256,505283,134348 -k1,5442:8688663,40962193:164555 -k1,5442:9872303,40962193:164555 -k1,5442:12369283,40962193:164554 -k1,5442:14030025,40962193:164555 -k1,5442:17380940,40962193:164555 -k1,5442:20808533,40962193:164555 -k1,5442:21328948,40962193:164555 -k1,5442:23486453,40962193:164555 -k1,5442:25505021,40962193:164554 -k1,5442:28273977,40962193:164555 -k1,5442:31215948,40962193:164555 -k1,5442:32583029,40962193:0 -) -(1,5443:6630773,41803681:25952256,513147,134348 -k1,5442:7341879,41803681:179609 -k1,5442:9219527,41803681:179610 -k1,5442:11091276,41803681:179609 -k1,5442:12979410,41803681:179610 -k1,5442:15169664,41803681:179609 -k1,5442:17479849,41803681:179610 -k1,5442:18015318,41803681:179609 -k1,5442:19558076,41803681:179609 -k1,5442:20365521,41803681:179610 -k1,5442:22038696,41803681:179609 -k1,5442:23915688,41803681:179610 -k1,5442:24553394,41803681:179609 -k1,5442:25264501,41803681:179610 -k1,5442:28749091,41803681:179609 -k1,5442:30263669,41803681:179610 -k1,5442:31094706,41803681:179609 -k1,5442:32583029,41803681:0 -) -(1,5443:6630773,42645169:25952256,513147,134348 -k1,5442:7529271,42645169:136970 -k1,5442:9847935,42645169:136970 -k1,5442:10450866,42645169:136970 -k1,5442:13350180,42645169:136971 -k1,5442:15784842,42645169:136970 -k1,5442:16581104,42645169:136970 -k1,5442:18426598,42645169:136970 -k1,5442:19892638,42645169:136970 -k1,5442:20681036,42645169:136970 -k1,5442:25491379,42645169:136971 -k1,5442:26311234,42645169:136970 -k1,5442:27688145,42645169:136970 -k1,5442:30874505,42645169:136970 -k1,5442:32583029,42645169:0 -) -(1,5443:6630773,43486657:25952256,513147,134348 -k1,5442:8864240,43486657:222822 -k1,5442:10078622,43486657:222822 -k1,5442:12588652,43486657:222823 -k1,5442:13830559,43486657:222822 -k1,5442:16233108,43486657:222822 -k1,5442:18116612,43486657:222822 -k1,5442:19581997,43486657:222822 -k1,5442:20752470,43486657:222822 -k1,5442:23965045,43486657:222823 -k1,5442:25781703,43486657:222822 -k1,5442:28659388,43486657:222822 -k1,5442:30073655,43486657:222822 -k1,5442:32583029,43486657:0 -) -(1,5443:6630773,44328145:25952256,513147,134348 -k1,5442:9035325,44328145:220237 -k1,5442:10609536,44328145:220237 -k1,5442:12400671,44328145:220237 -k1,5442:14805222,44328145:220236 -k1,5442:16379433,44328145:220237 -k1,5442:18316058,44328145:220237 -k1,5442:20720610,44328145:220237 -k1,5442:23412865,44328145:220237 -k1,5442:25643747,44328145:220237 -(1,5442:25850841,44328145:0,414482,115847 -r1,5442:26560819,44328145:709978,530329,115847 -k1,5442:25850841,44328145:-709978 -) -(1,5442:25850841,44328145:709978,414482,115847 -k1,5442:25850841,44328145:3277 -h1,5442:26557542,44328145:0,411205,112570 -) -k1,5442:27161819,44328145:220236 -k1,5442:29690234,44328145:220237 -k1,5442:30569763,44328145:220237 -k1,5442:32583029,44328145:0 -) -(1,5443:6630773,45169633:25952256,505283,115847 -g1,5442:8250167,45169633 -(1,5442:8457261,45169633:0,452978,115847 -r1,5442:11629221,45169633:3171960,568825,115847 -k1,5442:8457261,45169633:-3171960 -) -(1,5442:8457261,45169633:3171960,452978,115847 -k1,5442:8457261,45169633:3277 -h1,5442:11625944,45169633:0,411205,112570 -) -g1,5442:12209214,45169633 -k1,5443:32583029,45169633:19262324 -g1,5443:32583029,45169633 -) -] -(1,5445:32583029,45706769:0,0,0 -g1,5445:32583029,45706769 -) -) -] -(1,5445:6630773,47279633:25952256,0,0 -h1,5445:6630773,47279633:25952256,0,0 -) -] -h1,5445:4262630,4025873:0,0,0 -] -!24624 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5451:37855564,49800853:1179648,16384,0 +) +) +k1,5451:3078556,49800853:-34777008 +) +] +g1,5451:6630773,4812305 +k1,5451:18771974,4812305:11344283 +g1,5451:20158715,4812305 +g1,5451:20807521,4812305 +g1,5451:24121676,4812305 +g1,5451:28605649,4812305 +g1,5451:30015328,4812305 +) +) +] +[1,5451:6630773,45706769:25952256,40108032,0 +(1,5451:6630773,45706769:25952256,40108032,0 +(1,5451:6630773,45706769:0,0,0 +g1,5451:6630773,45706769 +) +[1,5451:6630773,45706769:25952256,40108032,0 +(1,5436:6630773,6254097:25952256,513147,126483 +h1,5435:6630773,6254097:983040,0,0 +k1,5435:8512118,6254097:410717 +k1,5435:11435043,6254097:410930 +k1,5435:14939928,6254097:410930 +k1,5435:16918479,6254097:410930 +k1,5435:17685269,6254097:410930 +k1,5435:19798169,6254097:410930 +k1,5435:22495650,6254097:410930 +k1,5435:23668108,6254097:410930 +k1,5435:26629044,6254097:410930 +k1,5435:28445721,6254097:410930 +k1,5435:30989193,6254097:410930 +k1,5435:32583029,6254097:0 +) +(1,5436:6630773,7095585:25952256,505283,134348 +(1,5435:6837867,7095585:4117627,505283,134348 +) +k1,5436:32583030,7095585:21246772 +g1,5436:32583030,7095585 +) +(1,5438:7202902,8461361:24807998,513147,134348 +(1,5436:7202902,8461361:983040,0,0 +g1,5436:8185942,8461361 +g1,5436:6875222,8461361 +g1,5436:6547542,8461361 +(1,5436:6547542,8461361:1310720,0,0 +k1,5436:7858262,8461361:1310720 +) +g1,5436:8185942,8461361 +) +k1,5437:8842039,8461361:186204 +k1,5437:10129248,8461361:186204 +k1,5437:11825402,8461361:186204 +k1,5437:13240406,8461361:186204 +k1,5437:14151439,8461361:186205 +k1,5437:14953681,8461361:186204 +k1,5437:15906001,8461361:186204 +k1,5437:16751497,8461361:186204 +k1,5437:17918775,8461361:186204 +k1,5437:21611810,8461361:186204 +k1,5437:22994701,8461361:186204 +k1,5437:24487038,8461361:186204 +k1,5437:26028528,8461361:186205 +k1,5437:26746229,8461361:186204 +k1,5437:27703136,8461361:186204 +k1,5437:30819455,8461361:186204 +k1,5437:32010900,8461361:0 +) +(1,5438:7202902,9302849:24807998,513147,134348 +k1,5437:9455526,9302849:226906 +k1,5437:11076382,9302849:226905 +k1,5437:11659148,9302849:226906 +k1,5437:13750553,9302849:226906 +k1,5437:15411386,9302849:226905 +k1,5437:19000944,9302849:226906 +k1,5437:22281828,9302849:226906 +k1,5437:24170727,9302849:226906 +k1,5437:26007852,9302849:226905 +k1,5437:27301029,9302849:226906 +k1,5437:28719380,9302849:226906 +k1,5437:29611475,9302849:226905 +k1,5437:30576972,9302849:226906 +k1,5437:32010900,9302849:0 +) +(1,5438:7202902,10144337:24807998,513147,134348 +k1,5437:8632111,10144337:144703 +k1,5437:11909436,10144337:144704 +k1,5437:13547705,10144337:144703 +k1,5437:15165002,10144337:144703 +k1,5437:17137504,10144337:144703 +k1,5437:18473653,10144337:144704 +k1,5437:21981008,10144337:144703 +k1,5437:23117271,10144337:144703 +k1,5437:27118113,10144337:144704 +k1,5437:30819455,10144337:144703 +k1,5437:32010900,10144337:0 +) +(1,5438:7202902,10985825:24807998,513147,134348 +k1,5437:9855603,10985825:221315 +k1,5437:10736210,10985825:221315 +k1,5437:13270291,10985825:221315 +k1,5437:16537719,10985825:221315 +k1,5437:18542924,10985825:221315 +k1,5437:19955684,10985825:221315 +k1,5437:21821297,10985825:221315 +k1,5437:23034172,10985825:221315 +k1,5437:26047321,10985825:221315 +k1,5437:28311393,10985825:221315 +k1,5437:32010900,10985825:0 +) +(1,5438:7202902,11827313:24807998,513147,126483 +g1,5437:9822376,11827313 +g1,5437:10704490,11827313 +g1,5437:12981210,11827313 +g1,5437:13711936,11827313 +g1,5437:16675474,11827313 +k1,5438:32010900,11827313:12653693 +g1,5438:32010900,11827313 +) +(1,5441:6630773,13193089:25952256,505283,134348 +h1,5440:6630773,13193089:983040,0,0 +k1,5440:8990486,13193089:179986 +k1,5440:11409181,13193089:179985 +k1,5440:14864001,13193089:179986 +k1,5440:16899310,13193089:179985 +k1,5440:19125330,13193089:179986 +k1,5440:20835581,13193089:179985 +k1,5440:22300073,13193089:179986 +k1,5440:23855659,13193089:179985 +k1,5440:25389619,13193089:179986 +k1,5440:29778326,13193089:179985 +k1,5440:31451222,13193089:179986 +k1,5440:32583029,13193089:0 +) +(1,5441:6630773,14034577:25952256,513147,134348 +k1,5440:8123771,14034577:209803 +k1,5440:10422207,14034577:209804 +k1,5440:12082977,14034577:209803 +k1,5440:14994174,14034577:209803 +k1,5440:16400665,14034577:209804 +k1,5440:18263941,14034577:209803 +k1,5440:20755052,14034577:209803 +k1,5440:21616283,14034577:209803 +k1,5440:22240919,14034577:209793 +k1,5440:24612099,14034577:209803 +k1,5440:25508065,14034577:209804 +k1,5440:26996475,14034577:209803 +k1,5440:27892440,14034577:209803 +k1,5440:29234051,14034577:209804 +k1,5440:31145824,14034577:209803 +k1,5441:32583029,14034577:0 +) +(1,5441:6630773,14876065:25952256,513147,134348 +k1,5440:8736394,14876065:239811 +k1,5440:10626402,14876065:239811 +k1,5440:11525505,14876065:239811 +k1,5440:14841577,14876065:239812 +k1,5440:16751245,14876065:239811 +k1,5440:18653049,14876065:239811 +k1,5440:20096101,14876065:239811 +k1,5440:20794009,14876065:239811 +k1,5440:23669678,14876065:239811 +k1,5440:26224877,14876065:239812 +k1,5440:27749194,14876065:239811 +k1,5440:30170699,14876065:239811 +k1,5440:31601955,14876065:239811 +k1,5441:32583029,14876065:0 +) +(1,5441:6630773,15717553:25952256,513147,134348 +k1,5440:9490536,15717553:305825 +k1,5440:10787920,15717553:305824 +k1,5440:15164841,15717553:305825 +k1,5440:17156251,15717553:305824 +k1,5440:18078114,15717553:305825 +k1,5440:19403023,15717553:305824 +k1,5440:23840893,15717553:305825 +k1,5440:24813873,15717553:305824 +k1,5440:25534434,15717553:305718 +k1,5440:28001636,15717553:305825 +k1,5440:29498905,15717553:305824 +k1,5440:32583029,15717553:0 +) +(1,5441:6630773,16559041:25952256,513147,134348 +k1,5440:10461100,16559041:252061 +k1,5440:11399324,16559041:252062 +k1,5440:12422088,16559041:252061 +k1,5440:15171727,16559041:252062 +k1,5440:15955285,16559041:252061 +k1,5440:18573197,16559041:252062 +k1,5440:19844343,16559041:252061 +k1,5440:21922893,16559041:252062 +k1,5440:22834246,16559041:252061 +k1,5440:24289549,16559041:252062 +k1,5440:26297320,16559041:252061 +k1,5440:29484084,16559041:252062 +k1,5440:31266411,16559041:252061 +k1,5441:32583029,16559041:0 +) +(1,5441:6630773,17400529:25952256,513147,134348 +k1,5440:10161343,17400529:281950 +k1,5440:11944067,17400529:281950 +k1,5440:13417463,17400529:281951 +k1,5440:15283418,17400529:281950 +k1,5440:20391439,17400529:281950 +k1,5440:21664949,17400529:281950 +k1,5440:26337157,17400529:281951 +k1,5440:27566758,17400529:281950 +k1,5440:30401335,17400529:281950 +k1,5440:32583029,17400529:0 +) +(1,5441:6630773,18242017:25952256,505283,7863 +g1,5440:8021447,18242017 +k1,5441:32583030,18242017:22659728 +g1,5441:32583030,18242017 +) +(1,5443:6630773,19083505:25952256,513147,134348 +h1,5442:6630773,19083505:983040,0,0 +k1,5442:9339704,19083505:235602 +k1,5442:10522957,19083505:235602 +k1,5442:12919936,19083505:235602 +k1,5442:14668763,19083505:235601 +k1,5442:15852016,19083505:235602 +k1,5442:19160601,19083505:235602 +k1,5442:19752063,19083505:235602 +k1,5442:21860684,19083505:235602 +k1,5442:23485649,19083505:235602 +k1,5442:24829465,19083505:235602 +k1,5442:25933418,19083505:235601 +k1,5442:27699286,19083505:235602 +k1,5442:28586316,19083505:235602 +k1,5442:29569684,19083505:235602 +k1,5442:32583029,19083505:0 +) +(1,5443:6630773,19924993:25952256,505283,134348 +k1,5442:8110303,19924993:195024 +k1,5442:9324412,19924993:195024 +k1,5442:12960731,19924993:195024 +k1,5442:14347200,19924993:195024 +k1,5442:16050863,19924993:195024 +k1,5442:21302645,19924993:195024 +k1,5442:22489229,19924993:195024 +k1,5442:24398019,19924993:195024 +k1,5442:25784488,19924993:195024 +k1,5442:27288266,19924993:195024 +k1,5442:28134718,19924993:195024 +k1,5442:30340387,19924993:195024 +k1,5442:32583029,19924993:0 +) +(1,5443:6630773,20766481:25952256,513147,126483 +k1,5442:9185038,20766481:207421 +k1,5442:10773304,20766481:207422 +k1,5442:11512222,20766481:207421 +k1,5442:13027086,20766481:207421 +k1,5442:14701203,20766481:207421 +k1,5442:15856276,20766481:207422 +k1,5442:18913202,20766481:207421 +k1,5442:21620822,20766481:207421 +k1,5442:23853961,20766481:207421 +k1,5442:27518407,20766481:207422 +k1,5442:30052356,20766481:207421 +k1,5442:31451222,20766481:207421 +k1,5442:32583029,20766481:0 +) +(1,5443:6630773,21607969:25952256,513147,134348 +k1,5442:8226640,21607969:206504 +k1,5442:10987737,21607969:206504 +k1,5442:13415911,21607969:206503 +k1,5442:14273843,21607969:206504 +k1,5442:18143810,21607969:206504 +k1,5442:19009606,21607969:206504 +k1,5442:22842872,21607969:206504 +k1,5442:24443326,21607969:206503 +k1,5442:27936461,21607969:206504 +k1,5442:28825850,21607969:206504 +k1,5442:32583029,21607969:0 +) +(1,5443:6630773,22449457:25952256,513147,126483 +k1,5442:7675064,22449457:270311 +k1,5442:10227993,22449457:270310 +k1,5442:11965000,22449457:270311 +k1,5442:12851349,22449457:270311 +k1,5442:14819041,22449457:270310 +k1,5442:16787390,22449457:270311 +k1,5442:17926053,22449457:270311 +k1,5442:19187924,22449457:270311 +k1,5442:20524505,22449457:270310 +k1,5442:23507351,22449457:270311 +k1,5442:24429090,22449457:270311 +k1,5442:28732486,22449457:270310 +k1,5442:31535764,22449457:270311 +k1,5442:32583029,22449457:0 +) +(1,5443:6630773,23290945:25952256,513147,134348 +k1,5442:7780728,23290945:202304 +k1,5442:10626755,23290945:202305 +k1,5442:13187700,23290945:202304 +k1,5442:15427519,23290945:202305 +k1,5442:18114293,23290945:202304 +k1,5442:18968026,23290945:202305 +k1,5442:19526190,23290945:202304 +k1,5442:21956064,23290945:202305 +k1,5442:26374299,23290945:202304 +k1,5442:27444956,23290945:202305 +k1,5442:28779722,23290945:202304 +k1,5442:30180681,23290945:202305 +k1,5442:31931601,23290945:202304 +k1,5442:32583029,23290945:0 +) +(1,5443:6630773,24132433:25952256,505283,126483 +g1,5442:8559497,24132433 +g1,5442:10640265,24132433 +k1,5443:32583028,24132433:18934660 +g1,5443:32583028,24132433 +) +(1,5445:6630773,24973921:25952256,513147,134348 +h1,5444:6630773,24973921:983040,0,0 +k1,5444:9053991,24973921:243491 +k1,5444:10603616,24973921:243492 +k1,5444:12202392,24973921:243491 +k1,5444:13061921,24973921:243491 +k1,5444:16568451,24973921:243492 +k1,5444:19162718,24973921:243491 +k1,5444:22482469,24973921:243491 +k1,5444:24222147,24973921:243491 +k1,5444:24997136,24973921:243492 +k1,5444:25892055,24973921:243491 +k1,5444:28183546,24973921:243491 +k1,5444:29711544,24973921:243492 +k1,5444:31086842,24973921:243491 +k1,5444:32583029,24973921:0 +) +(1,5445:6630773,25815409:25952256,513147,126483 +k1,5444:8200470,25815409:285191 +k1,5444:9354013,25815409:285191 +k1,5444:11254010,25815409:285190 +k1,5444:13399768,25815409:285191 +k1,5444:14336387,25815409:285191 +k1,5444:15369344,25815409:285191 +k1,5444:17614060,25815409:285190 +k1,5444:19264366,25815409:285191 +k1,5444:20015518,25815409:285191 +k1,5444:23104339,25815409:285191 +k1,5444:26484139,25815409:285190 +k1,5444:29373731,25815409:285191 +k1,5444:32583029,25815409:0 +) +(1,5445:6630773,26656897:25952256,505283,126483 +k1,5444:8209099,26656897:223041 +k1,5444:8963636,26656897:223040 +k1,5444:9838105,26656897:223041 +k1,5444:11776878,26656897:223040 +k1,5444:13380763,26656897:223041 +k1,5444:14888310,26656897:223041 +k1,5444:16819874,26656897:223040 +k1,5444:17574412,26656897:223041 +k1,5444:20718392,26656897:223040 +k1,5444:22951422,26656897:223041 +k1,5444:24193548,26656897:223041 +k1,5444:26247664,26656897:223040 +k1,5444:27662150,26656897:223041 +k1,5444:28241050,26656897:223040 +k1,5444:30976086,26656897:223041 +k1,5444:32583029,26656897:0 +) +(1,5445:6630773,27498385:25952256,513147,134348 +k1,5444:9851649,27498385:180005 +k1,5444:10979305,27498385:180005 +k1,5444:12336338,27498385:180006 +k1,5444:14224867,27498385:180005 +k1,5444:17592543,27498385:180005 +k1,5444:19312644,27498385:180005 +k1,5444:21201174,27498385:180006 +k1,5444:23391824,27498385:180005 +k1,5444:25592959,27498385:180005 +k1,5444:28138814,27498385:180005 +k1,5444:29337905,27498385:180006 +k1,5444:31298523,27498385:180005 +k1,5444:32583029,27498385:0 +) +(1,5445:6630773,28339873:25952256,505283,126483 +g1,5444:7934284,28339873 +g1,5444:8881279,28339873 +g1,5444:11445047,28339873 +g1,5444:14223773,28339873 +g1,5444:15184530,28339873 +g1,5444:16402844,28339873 +k1,5445:32583029,28339873:13968345 +g1,5445:32583029,28339873 +) +(1,5447:6630773,29181361:25952256,513147,134348 +h1,5446:6630773,29181361:983040,0,0 +k1,5446:8385546,29181361:293976 +k1,5446:10793713,29181361:293976 +k1,5446:13443053,29181361:293976 +k1,5446:14419913,29181361:293975 +k1,5446:16828080,29181361:293976 +k1,5446:19400743,29181361:293976 +k1,5446:20960875,29181361:293976 +k1,5446:21610711,29181361:293976 +k1,5446:23897637,29181361:293976 +k1,5446:25871956,29181361:293976 +k1,5446:26697428,29181361:293975 +k1,5446:29770131,29181361:293976 +k1,5446:30825635,29181361:293976 +k1,5446:31475471,29181361:293976 +k1,5447:32583029,29181361:0 +) +(1,5447:6630773,30022849:25952256,513147,134348 +k1,5446:9618307,30022849:236988 +k1,5446:10538180,30022849:236988 +k1,5446:11584539,30022849:236989 +k1,5446:13501870,30022849:236988 +k1,5446:15188514,30022849:236988 +k1,5446:16444587,30022849:236988 +k1,5446:18512652,30022849:236989 +k1,5446:21150224,30022849:236988 +k1,5446:22070097,30022849:236988 +k1,5446:24767962,30022849:236988 +k1,5446:25360811,30022849:236989 +k1,5446:27036314,30022849:236988 +k1,5446:29261009,30022849:236988 +k1,5446:32583029,30022849:0 +) +(1,5447:6630773,30864337:25952256,513147,134348 +k1,5446:9422432,30864337:199710 +k1,5446:10238180,30864337:199710 +k1,5446:12694295,30864337:199710 +k1,5446:13913090,30864337:199710 +k1,5446:15894724,30864337:199710 +k1,5446:16753726,30864337:199710 +k1,5446:17972521,30864337:199710 +k1,5446:21022391,30864337:199709 +k1,5446:22418788,30864337:199710 +k1,5446:24400422,30864337:199710 +k1,5446:25704414,30864337:199710 +k1,5446:26651890,30864337:199710 +k1,5446:28707580,30864337:199710 +k1,5446:29263150,30864337:199710 +k1,5446:31966991,30864337:199710 +k1,5446:32583029,30864337:0 +) +(1,5447:6630773,31705825:25952256,513147,134348 +k1,5446:7904083,31705825:254225 +k1,5446:13215066,31705825:254225 +k1,5446:14128584,31705825:254226 +k1,5446:15153512,31705825:254225 +k1,5446:18692401,31705825:254225 +k1,5446:19632788,31705825:254225 +k1,5446:21165620,31705825:254225 +k1,5446:22106007,31705825:254225 +k1,5446:22976271,31705825:254226 +k1,5446:24249581,31705825:254225 +k1,5446:27614800,31705825:254225 +k1,5446:29648327,31705825:254225 +k1,5446:32583029,31705825:0 +) +(1,5447:6630773,32547313:25952256,513147,134348 +k1,5446:8616715,32547313:234165 +k1,5446:11711527,32547313:234165 +k1,5446:13454987,32547313:234165 +k1,5446:14680712,32547313:234165 +k1,5446:17117542,32547313:234165 +k1,5446:18113235,32547313:234165 +k1,5446:19524428,32547313:234166 +k1,5446:20441478,32547313:234165 +k1,5446:23147661,32547313:234165 +k1,5446:26183490,32547313:234165 +k1,5446:27076947,32547313:234165 +k1,5446:29505257,32547313:234165 +k1,5446:31436804,32547313:234165 +k1,5446:32583029,32547313:0 +) +(1,5447:6630773,33388801:25952256,505283,134348 +k1,5446:9045884,33388801:258976 +k1,5446:11013385,33388801:258977 +k1,5446:13456676,33388801:258976 +k1,5446:16639213,33388801:258976 +k1,5446:19009105,33388801:258977 +k1,5446:21789251,33388801:258976 +k1,5446:22809755,33388801:258976 +k1,5446:24662568,33388801:258977 +k1,5446:26206705,33388801:258976 +k1,5446:27081719,33388801:258976 +k1,5446:29226167,33388801:258977 +k1,5446:29841003,33388801:258976 +k1,5446:32583029,33388801:0 +) +(1,5447:6630773,34230289:25952256,513147,134348 +g1,5446:9230586,34230289 +g1,5446:11756998,34230289 +g1,5446:12615519,34230289 +g1,5446:15682603,34230289 +g1,5446:18148722,34230289 +g1,5446:18703811,34230289 +g1,5446:21175829,34230289 +g1,5446:22982001,34230289 +k1,5447:32583029,34230289:6722031 +g1,5447:32583029,34230289 +) +(1,5449:6630773,35071777:25952256,513147,134348 +h1,5448:6630773,35071777:983040,0,0 +k1,5448:11395593,35071777:217277 +k1,5448:12631955,35071777:217277 +k1,5448:14958181,35071777:217277 +k1,5448:15834750,35071777:217277 +k1,5448:17571807,35071777:217277 +k1,5448:18494251,35071777:217277 +k1,5448:19327566,35071777:217277 +k1,5448:21146543,35071777:217277 +k1,5448:23234873,35071777:217277 +k1,5448:24598375,35071777:217277 +k1,5448:27684163,35071777:217277 +k1,5448:29671567,35071777:217277 +k1,5448:31160242,35071777:217277 +k1,5448:32583029,35071777:0 +) +(1,5449:6630773,35913265:25952256,513147,126483 +k1,5448:9493479,35913265:192114 +k1,5448:11540262,35913265:192114 +k1,5448:12541746,35913265:192114 +k1,5448:15511276,35913265:192114 +k1,5448:17473517,35913265:192114 +k1,5448:18857076,35913265:192114 +k1,5448:22462305,35913265:192114 +k1,5448:23305847,35913265:192114 +k1,5448:24404324,35913265:192114 +k1,5448:25247866,35913265:192114 +k1,5448:27333315,35913265:192114 +k1,5448:28544514,35913265:192114 +k1,5448:30235436,35913265:192114 +k1,5448:31086842,35913265:192114 +k1,5448:32583029,35913265:0 +) +(1,5449:6630773,36754753:25952256,513147,134348 +k1,5448:9271218,36754753:215613 +k1,5448:10505917,36754753:215614 +k1,5448:13571691,36754753:215613 +k1,5448:15058702,36754753:215613 +k1,5448:17589703,36754753:215614 +k1,5448:20567659,36754753:215613 +k1,5448:22420362,36754753:215613 +k1,5448:24128885,36754753:215613 +k1,5448:25363584,36754753:215614 +k1,5448:26946278,36754753:215613 +k1,5448:27693388,36754753:215613 +k1,5448:30137881,36754753:215614 +k1,5448:30981329,36754753:215613 +k1,5448:32583029,36754753:0 +) +(1,5449:6630773,37596241:25952256,513147,134348 +k1,5448:8680336,37596241:178510 +k1,5448:9471608,37596241:178510 +k1,5448:10669203,37596241:178510 +k1,5448:12201686,37596241:178509 +k1,5448:14703447,37596241:178510 +k1,5448:15750309,37596241:178510 +k1,5448:17130749,37596241:178510 +k1,5448:18118629,37596241:178510 +k1,5448:19989279,37596241:178510 +k1,5448:21437876,37596241:178509 +k1,5448:22275678,37596241:178510 +k1,5448:28617849,37596241:178510 +k1,5448:31541007,37596241:178510 +k1,5448:32583029,37596241:0 +) +(1,5449:6630773,38437729:25952256,505283,126483 +k1,5448:9704888,38437729:239028 +k1,5448:10812267,38437729:239027 +k1,5448:12388229,38437729:239028 +k1,5448:14449158,38437729:239028 +k1,5448:15707271,38437729:239028 +k1,5448:17626641,38437729:239027 +k1,5448:20644396,38437729:239028 +k1,5448:21644952,38437729:239028 +k1,5448:25941969,38437729:239028 +k1,5448:29982739,38437729:239027 +k1,5448:31714677,38437729:239028 +k1,5448:32583029,38437729:0 +) +(1,5449:6630773,39279217:25952256,505283,134348 +k1,5448:8688663,39279217:164555 +k1,5448:9872303,39279217:164555 +k1,5448:12369283,39279217:164554 +k1,5448:14030025,39279217:164555 +k1,5448:17380940,39279217:164555 +k1,5448:20808533,39279217:164555 +k1,5448:21328948,39279217:164555 +k1,5448:23486453,39279217:164555 +k1,5448:25505021,39279217:164554 +k1,5448:28273977,39279217:164555 +k1,5448:31215948,39279217:164555 +k1,5448:32583029,39279217:0 +) +(1,5449:6630773,40120705:25952256,513147,134348 +k1,5448:7341879,40120705:179609 +k1,5448:9219527,40120705:179610 +k1,5448:11091276,40120705:179609 +k1,5448:12979410,40120705:179610 +k1,5448:15169664,40120705:179609 +k1,5448:17479849,40120705:179610 +k1,5448:18015318,40120705:179609 +k1,5448:19558076,40120705:179609 +k1,5448:20365521,40120705:179610 +k1,5448:22038696,40120705:179609 +k1,5448:23915688,40120705:179610 +k1,5448:24553394,40120705:179609 +k1,5448:25264501,40120705:179610 +k1,5448:28749091,40120705:179609 +k1,5448:30263669,40120705:179610 +k1,5448:31094706,40120705:179609 +k1,5448:32583029,40120705:0 +) +(1,5449:6630773,40962193:25952256,513147,134348 +k1,5448:7529271,40962193:136970 +k1,5448:9847935,40962193:136970 +k1,5448:10450866,40962193:136970 +k1,5448:13350180,40962193:136971 +k1,5448:15784842,40962193:136970 +k1,5448:16581104,40962193:136970 +k1,5448:18426598,40962193:136970 +k1,5448:19892638,40962193:136970 +k1,5448:20681036,40962193:136970 +k1,5448:25491379,40962193:136971 +k1,5448:26311234,40962193:136970 +k1,5448:27688145,40962193:136970 +k1,5448:30874505,40962193:136970 +k1,5448:32583029,40962193:0 +) +(1,5449:6630773,41803681:25952256,513147,134348 +k1,5448:8864240,41803681:222822 +k1,5448:10078622,41803681:222822 +k1,5448:12588652,41803681:222823 +k1,5448:13830559,41803681:222822 +k1,5448:16233108,41803681:222822 +k1,5448:18116612,41803681:222822 +k1,5448:19581997,41803681:222822 +k1,5448:20752470,41803681:222822 +k1,5448:23965045,41803681:222823 +k1,5448:25781703,41803681:222822 +k1,5448:28659388,41803681:222822 +k1,5448:30073655,41803681:222822 +k1,5448:32583029,41803681:0 +) +(1,5449:6630773,42645169:25952256,513147,134348 +k1,5448:9035325,42645169:220237 +k1,5448:10609536,42645169:220237 +k1,5448:12400671,42645169:220237 +k1,5448:14805222,42645169:220236 +k1,5448:16379433,42645169:220237 +k1,5448:18316058,42645169:220237 +k1,5448:20720610,42645169:220237 +k1,5448:23412865,42645169:220237 +k1,5448:25643747,42645169:220237 +(1,5448:25850841,42645169:0,414482,115847 +r1,5448:26560819,42645169:709978,530329,115847 +k1,5448:25850841,42645169:-709978 +) +(1,5448:25850841,42645169:709978,414482,115847 +k1,5448:25850841,42645169:3277 +h1,5448:26557542,42645169:0,411205,112570 +) +k1,5448:27161819,42645169:220236 +k1,5448:29690234,42645169:220237 +k1,5448:30569763,42645169:220237 +k1,5448:32583029,42645169:0 +) +(1,5449:6630773,43486657:25952256,505283,115847 +g1,5448:8250167,43486657 +(1,5448:8457261,43486657:0,452978,115847 +r1,5448:11629221,43486657:3171960,568825,115847 +k1,5448:8457261,43486657:-3171960 +) +(1,5448:8457261,43486657:3171960,452978,115847 +k1,5448:8457261,43486657:3277 +h1,5448:11625944,43486657:0,411205,112570 +) +g1,5448:12209214,43486657 +k1,5449:32583029,43486657:19262324 +g1,5449:32583029,43486657 +) +] +(1,5451:32583029,45706769:0,0,0 +g1,5451:32583029,45706769 +) +) +] +(1,5451:6630773,47279633:25952256,0,0 +h1,5451:6630773,47279633:25952256,0,0 +) +] +h1,5451:4262630,4025873:0,0,0 +] +!23992 }103 -Input:700:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!97 +Input:696:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!103 {104 -[1,5458:4262630,47279633:28320399,43253760,0 -(1,5458:4262630,4025873:0,0,0 -[1,5458:-473657,4025873:25952256,0,0 -(1,5458:-473657,-710414:25952256,0,0 -h1,5458:-473657,-710414:0,0,0 -(1,5458:-473657,-710414:0,0,0 -(1,5458:-473657,-710414:0,0,0 -g1,5458:-473657,-710414 -(1,5458:-473657,-710414:65781,0,65781 -g1,5458:-407876,-710414 -[1,5458:-407876,-644633:0,0,0 +[1,5464:4262630,47279633:28320399,43253760,0 +(1,5464:4262630,4025873:0,0,0 +[1,5464:-473657,4025873:25952256,0,0 +(1,5464:-473657,-710414:25952256,0,0 +h1,5464:-473657,-710414:0,0,0 +(1,5464:-473657,-710414:0,0,0 +(1,5464:-473657,-710414:0,0,0 +g1,5464:-473657,-710414 +(1,5464:-473657,-710414:65781,0,65781 +g1,5464:-407876,-710414 +[1,5464:-407876,-644633:0,0,0 ] ) -k1,5458:-473657,-710414:-65781 +k1,5464:-473657,-710414:-65781 ) ) -k1,5458:25478599,-710414:25952256 -g1,5458:25478599,-710414 +k1,5464:25478599,-710414:25952256 +g1,5464:25478599,-710414 ) ] ) -[1,5458:6630773,47279633:25952256,43253760,0 -[1,5458:6630773,4812305:25952256,786432,0 -(1,5458:6630773,4812305:25952256,485622,134348 -(1,5458:6630773,4812305:25952256,485622,134348 -g1,5458:3078558,4812305 -[1,5458:3078558,4812305:0,0,0 -(1,5458:3078558,2439708:0,1703936,0 -k1,5458:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5458:2537886,2439708:1179648,16384,0 +[1,5464:6630773,47279633:25952256,43253760,0 +[1,5464:6630773,4812305:25952256,786432,0 +(1,5464:6630773,4812305:25952256,485622,134348 +(1,5464:6630773,4812305:25952256,485622,134348 +g1,5464:3078558,4812305 +[1,5464:3078558,4812305:0,0,0 +(1,5464:3078558,2439708:0,1703936,0 +k1,5464:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5464:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5458:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5464:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5458:3078558,4812305:0,0,0 -(1,5458:3078558,2439708:0,1703936,0 -g1,5458:29030814,2439708 -g1,5458:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5458:36151628,1915420:16384,1179648,0 +[1,5464:3078558,4812305:0,0,0 +(1,5464:3078558,2439708:0,1703936,0 +g1,5464:29030814,2439708 +g1,5464:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5464:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5458:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5464:37855564,2439708:1179648,16384,0 ) ) -k1,5458:3078556,2439708:-34777008 +k1,5464:3078556,2439708:-34777008 ) ] -[1,5458:3078558,4812305:0,0,0 -(1,5458:3078558,49800853:0,16384,2228224 -k1,5458:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5458:2537886,49800853:1179648,16384,0 +[1,5464:3078558,4812305:0,0,0 +(1,5464:3078558,49800853:0,16384,2228224 +k1,5464:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5464:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5458:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5464:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) -) -) -] -[1,5458:3078558,4812305:0,0,0 -(1,5458:3078558,49800853:0,16384,2228224 -g1,5458:29030814,49800853 -g1,5458:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5458:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5458:37855564,49800853:1179648,16384,0 -) -) -k1,5458:3078556,49800853:-34777008 -) -] -g1,5458:6630773,4812305 -g1,5458:6630773,4812305 -g1,5458:9132937,4812305 -g1,5458:11356573,4812305 -k1,5458:31786111,4812305:20429538 -) -) -] -[1,5458:6630773,45706769:25952256,40108032,0 -(1,5458:6630773,45706769:25952256,40108032,0 -(1,5458:6630773,45706769:0,0,0 -g1,5458:6630773,45706769 -) -[1,5458:6630773,45706769:25952256,40108032,0 -v1,5445:6630773,6254097:0,393216,0 -(1,5446:6630773,12737866:25952256,6876985,616038 -g1,5446:6630773,12737866 -(1,5446:6630773,12737866:25952256,6876985,616038 -(1,5446:6630773,13353904:25952256,7493023,0 -[1,5446:6630773,13353904:25952256,7493023,0 -(1,5446:6630773,13327690:25952256,7440595,0 -r1,5446:6656987,13327690:26214,7440595,0 -[1,5446:6656987,13327690:25899828,7440595,0 -(1,5446:6656987,12737866:25899828,6260947,0 -[1,5446:7246811,12737866:24720180,6260947,0 -(1,5446:7246811,7562455:24720180,1085536,298548 -(1,5445:7246811,7562455:0,1085536,298548 -r1,5446:8753226,7562455:1506415,1384084,298548 -k1,5445:7246811,7562455:-1506415 -) -(1,5445:7246811,7562455:1506415,1085536,298548 -) -k1,5445:8889185,7562455:135959 -k1,5445:10735279,7562455:139536 -k1,5445:14028763,7562455:135959 -k1,5445:15947956,7562455:135958 -k1,5445:19579605,7562455:135959 -k1,5445:21223547,7562455:135959 -k1,5445:21975544,7562455:135959 -k1,5445:23768252,7562455:135958 -k1,5445:25188717,7562455:135959 -k1,5445:25940714,7562455:135959 -k1,5445:27768813,7562455:135959 -k1,5445:29602153,7562455:135958 -k1,5445:30093972,7562455:135959 -k1,5445:31966991,7562455:0 -) -(1,5446:7246811,8403943:24720180,513147,134348 -k1,5445:8636655,8403943:200366 -k1,5445:9941302,8403943:200365 -k1,5445:11470738,8403943:200366 -k1,5445:12322531,8403943:200365 -k1,5445:12878757,8403943:200366 -k1,5445:14961971,8403943:200365 -k1,5445:17639598,8403943:200366 -k1,5445:18499255,8403943:200365 -k1,5445:20306564,8403943:200366 -k1,5445:23716227,8403943:200365 -k1,5445:24814436,8403943:200366 -k1,5445:26300617,8403943:200365 -k1,5445:28008966,8403943:200366 -k1,5445:28825369,8403943:200365 -k1,5445:30682485,8403943:200366 -k1,5445:31966991,8403943:0 -) -(1,5446:7246811,9245431:24720180,505283,134348 -k1,5445:9499873,9245431:224067 -k1,5445:12732044,9245431:224068 -k1,5445:16433451,9245431:224067 -k1,5445:18355557,9245431:224068 -k1,5445:20075811,9245431:224067 -k1,5445:20831375,9245431:224067 -k1,5445:23478309,9245431:224068 -k1,5445:26260902,9245431:224067 -k1,5445:27504055,9245431:224068 -k1,5445:30862709,9245431:224067 -k1,5445:31966991,9245431:0 -) -(1,5446:7246811,10086919:24720180,505283,126483 -k1,5445:9416768,10086919:264825 -k1,5445:11930133,10086919:264825 -k1,5445:12810996,10086919:264825 -k1,5445:13431681,10086919:264825 -k1,5445:15701252,10086919:264825 -k1,5445:18253284,10086919:264825 -k1,5445:20172893,10086919:264825 -k1,5445:20969215,10086919:264825 -k1,5445:22706634,10086919:264825 -k1,5445:28047878,10086919:264825 -k1,5445:30947906,10086919:264825 -k1,5445:31966991,10086919:0 -) -(1,5446:7246811,10928407:24720180,513147,134348 -k1,5445:10022678,10928407:290086 -k1,5445:10972056,10928407:290086 -k1,5445:12869085,10928407:290086 -k1,5445:16194799,10928407:290086 -k1,5445:17676330,10928407:290086 -k1,5445:18985502,10928407:290087 -k1,5445:23005242,10928407:290086 -k1,5445:23954620,10928407:290086 -k1,5445:25263791,10928407:290086 -k1,5445:26743355,10928407:290086 -k1,5445:30154265,10928407:290086 -k1,5445:31966991,10928407:0 -) -(1,5446:7246811,11769895:24720180,505283,134348 -k1,5445:9245540,11769895:215494 -k1,5445:11692535,11769895:215494 -k1,5445:13845274,11769895:215495 -k1,5445:15052328,11769895:215494 -k1,5445:18340150,11769895:215494 -k1,5445:20043967,11769895:215494 -k1,5445:21020989,11769895:215494 -k1,5445:23639033,11769895:215494 -k1,5445:24873613,11769895:215495 -k1,5445:26696050,11769895:215494 -k1,5445:29616870,11769895:215494 -k1,5445:31966991,11769895:0 -) -(1,5446:7246811,12611383:24720180,513147,126483 -g1,5445:8925843,12611383 -g1,5445:9811234,12611383 -g1,5445:11464052,12611383 -g1,5445:13600525,12611383 -g1,5445:14904036,12611383 -g1,5445:15851031,12611383 -g1,5445:16820963,12611383 -g1,5445:19484346,12611383 -g1,5445:23766468,12611383 -g1,5445:24624989,12611383 -g1,5445:26857800,12611383 -k1,5446:31966991,12611383:3448509 -g1,5446:31966991,12611383 -) -] -) -] -r1,5446:32583029,13327690:26214,7440595,0 -) -] -) -) -g1,5446:32583029,12737866 -) -h1,5446:6630773,13353904:0,0,0 -(1,5449:6630773,14629519:25952256,505283,134348 -h1,5448:6630773,14629519:983040,0,0 -k1,5448:9645691,14629519:199491 -k1,5448:10836743,14629519:199492 -k1,5448:13230379,14629519:199491 -k1,5448:15184925,14629519:199492 -k1,5448:17252192,14629519:199491 -k1,5448:20923125,14629519:199491 -k1,5448:24080257,14629519:199492 -k1,5448:25471193,14629519:199491 -k1,5448:27050873,14629519:199492 -k1,5448:28638417,14629519:199491 -k1,5448:32583029,14629519:0 -) -(1,5449:6630773,15471007:25952256,505283,134348 -k1,5448:10204451,15471007:193331 -k1,5448:12079436,15471007:193331 -k1,5448:13429478,15471007:193332 -k1,5448:14274237,15471007:193331 -k1,5448:15822853,15471007:193331 -k1,5448:18574710,15471007:193331 -k1,5448:19787127,15471007:193332 -k1,5448:21650315,15471007:193331 -k1,5448:24898934,15471007:193331 -k1,5448:26248975,15471007:193331 -k1,5448:29628667,15471007:193332 -k1,5448:30434760,15471007:193331 -k1,5448:30983951,15471007:193331 -k1,5448:32583029,15471007:0 -) -(1,5449:6630773,16312495:25952256,505283,134348 -k1,5448:8081264,16312495:259046 -k1,5448:8953072,16312495:259046 -k1,5448:10663739,16312495:259045 -k1,5448:12965542,16312495:259046 -k1,5448:15896491,16312495:259046 -k1,5448:17174622,16312495:259046 -k1,5448:18814512,16312495:259046 -k1,5448:19724985,16312495:259045 -k1,5448:22288932,16312495:259046 -k1,5448:23567063,16312495:259046 -k1,5448:26115937,16312495:259046 -k1,5448:28780810,16312495:259046 -k1,5448:29655893,16312495:259045 -k1,5448:30934024,16312495:259046 -k1,5448:31607853,16312495:258986 -k1,5449:32583029,16312495:0 -) -(1,5449:6630773,17153983:25952256,505283,126483 -k1,5448:10170789,17153983:244866 -k1,5448:11607100,17153983:244866 -k1,5448:13360606,17153983:244867 -k1,5448:15789787,17153983:244866 -k1,5448:16504546,17153983:244866 -k1,5448:17280909,17153983:244866 -k1,5448:18992471,17153983:244866 -k1,5448:21867297,17153983:244866 -k1,5448:22763592,17153983:244867 -k1,5448:25420838,17153983:244866 -k1,5448:28892697,17153983:244866 -k1,5448:32583029,17153983:0 -) -(1,5449:6630773,17995471:25952256,513147,134348 -k1,5448:8041152,17995471:189443 -k1,5448:8882024,17995471:189444 -k1,5448:11333770,17995471:189443 -k1,5448:12542298,17995471:189443 -k1,5448:14412085,17995471:189444 -k1,5448:15260820,17995471:189443 -k1,5448:15806123,17995471:189443 -k1,5448:18680577,17995471:189444 -k1,5448:20559538,17995471:189443 -k1,5448:23824586,17995471:189443 -k1,5448:24545526,17995471:189443 -k1,5448:27198468,17995471:189444 -k1,5448:28290342,17995471:189443 -k1,5448:28894619,17995471:189434 -k1,5448:32051532,17995471:189443 -k1,5448:32583029,17995471:0 -) -(1,5449:6630773,18836959:25952256,505283,134348 -g1,5448:9613971,18836959 -g1,5448:11823189,18836959 -g1,5448:14446595,18836959 -g1,5448:15837269,18836959 -g1,5448:17322314,18836959 -g1,5448:20080069,18836959 -g1,5448:21298383,18836959 -g1,5448:21912455,18836959 -k1,5449:32583029,18836959:8076659 -g1,5449:32583029,18836959 -) -(1,5451:6630773,19678447:25952256,513147,134348 -h1,5450:6630773,19678447:983040,0,0 -k1,5450:9590925,19678447:193877 -k1,5450:12042517,19678447:193877 -k1,5450:13695225,19678447:193877 -k1,5450:15195236,19678447:193878 -k1,5450:17724161,19678447:193877 -k1,5450:19088511,19678447:193877 -k1,5450:20414850,19678447:193877 -k1,5450:23076813,19678447:193877 -k1,5450:26095947,19678447:193877 -k1,5450:27742103,19678447:193878 -k1,5450:29127425,19678447:193877 -k1,5450:30932832,19678447:193877 -k1,5450:32583029,19678447:0 -) -(1,5451:6630773,20519935:25952256,505283,134348 -k1,5450:7649353,20519935:257052 -k1,5450:10429542,20519935:257053 -k1,5450:11705679,20519935:257052 -k1,5450:13793807,20519935:257052 -k1,5450:15207570,20519935:257053 -k1,5450:16633129,20519935:257052 -k1,5450:17502943,20519935:257052 -k1,5450:18115855,20519935:257052 -k1,5450:19798316,20519935:257053 -k1,5450:21246813,20519935:257052 -k1,5450:23201903,20519935:257052 -k1,5450:25757304,20519935:257053 -k1,5450:29753840,20519935:257052 -k1,5451:32583029,20519935:0 -) -(1,5451:6630773,21361423:25952256,513147,134348 -(1,5450:6630773,21361423:0,452978,115847 -r1,5450:9099310,21361423:2468537,568825,115847 -k1,5450:6630773,21361423:-2468537 -) -(1,5450:6630773,21361423:2468537,452978,115847 -k1,5450:6630773,21361423:3277 -h1,5450:9096033,21361423:0,411205,112570 -) -k1,5450:9280251,21361423:180941 -k1,5450:12977853,21361423:180940 -k1,5450:13810222,21361423:180941 -k1,5450:15978215,21361423:180941 -k1,5450:16771917,21361423:180940 -k1,5450:18283239,21361423:180941 -k1,5450:19483264,21361423:180940 -k1,5450:21344548,21361423:180941 -k1,5450:22184781,21361423:180941 -k1,5450:25207362,21361423:180940 -k1,5450:27959280,21361423:180941 -k1,5450:28752983,21361423:180941 -k1,5450:30385545,21361423:180940 -k1,5450:32095441,21361423:180941 -k1,5450:32583029,21361423:0 -) -(1,5451:6630773,22202911:25952256,513147,134348 -k1,5450:9769030,22202911:170787 -k1,5450:11951772,22202911:170787 -k1,5450:12478418,22202911:170786 -k1,5450:13505761,22202911:170787 -k1,5450:15326745,22202911:170787 -k1,5450:17959064,22202911:170787 -k1,5450:18816013,22202911:170787 -k1,5450:20143509,22202911:170786 -k1,5450:21418578,22202911:170787 -k1,5450:23244804,22202911:170787 -k1,5450:24331784,22202911:170787 -k1,5450:25694016,22202911:170787 -k1,5450:27520241,22202911:170786 -k1,5450:29057454,22202911:170787 -k1,5450:29887533,22202911:170787 -k1,5450:32583029,22202911:0 -) -(1,5451:6630773,23044399:25952256,513147,126483 -k1,5450:10497015,23044399:280112 -k1,5450:11968571,23044399:280111 -k1,5450:13183226,23044399:280112 -k1,5450:14654783,23044399:280112 -k1,5450:16699123,23044399:280111 -k1,5450:18763780,23044399:280112 -k1,5450:21062401,23044399:280112 -k1,5450:23261406,23044399:280111 -k1,5450:26617123,23044399:280112 -k1,5450:28029697,23044399:280112 -k1,5450:29885949,23044399:280111 -k1,5450:32051532,23044399:280112 -k1,5450:32583029,23044399:0 -) -(1,5451:6630773,23885887:25952256,513147,134348 -g1,5450:9937719,23885887 -g1,5450:12114169,23885887 -g1,5450:14011436,23885887 -g1,5450:17693904,23885887 -g1,5450:18307976,23885887 -k1,5451:32583029,23885887:11190929 -g1,5451:32583029,23885887 -) -(1,5453:6630773,24727375:25952256,505283,134348 -h1,5452:6630773,24727375:983040,0,0 -k1,5452:9614900,24727375:217852 -k1,5452:13731490,24727375:217853 -k1,5452:14968427,24727375:217852 -k1,5452:18177999,24727375:217853 -k1,5452:19011889,24727375:217852 -k1,5452:20432983,24727375:217853 -k1,5452:23242129,24727375:217852 -k1,5452:24275249,24727375:217852 -k1,5452:26001085,24727375:217853 -k1,5452:27422178,24727375:217852 -k1,5452:29918718,24727375:217853 -k1,5452:30752608,24727375:217852 -k1,5452:32583029,24727375:0 -) -(1,5453:6630773,25568863:25952256,513147,134348 -k1,5452:7414584,25568863:155976 -k1,5452:10410234,25568863:155975 -k1,5452:11032171,25568863:155976 -k1,5452:12358620,25568863:155976 -k1,5452:13493048,25568863:155975 -k1,5452:15377208,25568863:155976 -k1,5452:17429796,25568863:155976 -k1,5452:18237199,25568863:155975 -k1,5452:19659331,25568863:155976 -k1,5452:20834391,25568863:155975 -k1,5452:22772291,25568863:155976 -k1,5452:23587559,25568863:155976 -k1,5452:24099394,25568863:155975 -k1,5452:25618519,25568863:155976 -k1,5452:26589763,25568863:155976 -k1,5452:28897940,25568863:155975 -k1,5452:30512747,25568863:155976 -k1,5452:32583029,25568863:0 -) -(1,5453:6630773,26410351:25952256,513147,126483 -k1,5452:8314516,26410351:217047 -k1,5452:9182991,26410351:217047 -k1,5452:10419123,26410351:217047 -k1,5452:12237870,26410351:217047 -k1,5452:14320726,26410351:217046 -k1,5452:15197065,26410351:217047 -k1,5452:18044072,26410351:217047 -k1,5452:20547015,26410351:217047 -k1,5452:21955507,26410351:217047 -k1,5452:22823982,26410351:217047 -k1,5452:24060114,26410351:217047 -k1,5452:25772693,26410351:217047 -k1,5452:27702195,26410351:217046 -k1,5452:29406254,26410351:217047 -k1,5452:31323960,26410351:217047 -k1,5452:32227169,26410351:217047 -k1,5452:32583029,26410351:0 -) -(1,5453:6630773,27251839:25952256,513147,134348 -k1,5452:7968063,27251839:147812 -k1,5452:8731914,27251839:147813 -k1,5452:9235586,27251839:147812 -k1,5452:11963551,27251839:147813 -k1,5452:14848802,27251839:147812 -k1,5452:16564236,27251839:147813 -k1,5452:18592225,27251839:147761 -k1,5452:19422923,27251839:147813 -k1,5452:19985527,27251839:147761 -k1,5452:22119736,27251839:147813 -k1,5452:23041528,27251839:147812 -k1,5452:25471960,27251839:147813 -k1,5452:27317810,27251839:147812 -k1,5452:30889878,27251839:147812 -k1,5452:31393551,27251839:147813 -k1,5452:32583029,27251839:0 -) -(1,5453:6630773,28093327:25952256,513147,126483 -k1,5452:7465795,28093327:218984 -k1,5452:9180965,28093327:218983 -k1,5452:10570422,28093327:218984 -k1,5452:12264621,28093327:218984 -k1,5452:13549876,28093327:218984 -k1,5452:16229081,28093327:218983 -k1,5452:16906162,28093327:218984 -k1,5452:17656643,28093327:218984 -k1,5452:19275475,28093327:218983 -k1,5452:20145887,28093327:218984 -k1,5452:21718845,28093327:218984 -k1,5452:24713934,28093327:218984 -k1,5452:26345218,28093327:218983 -k1,5452:27583287,28093327:218984 -k1,5452:32583029,28093327:0 -) -(1,5453:6630773,28934815:25952256,513147,134348 -k1,5452:7573356,28934815:256421 -k1,5452:8848861,28934815:256420 -k1,5452:10895070,28934815:256421 -k1,5452:12488424,28934815:256420 -k1,5452:13492611,28934815:256421 -k1,5452:14977831,28934815:256420 -k1,5452:15850290,28934815:256421 -k1,5452:17565541,28934815:256420 -k1,5452:22476984,28934815:256421 -k1,5452:23392696,28934815:256420 -k1,5452:25197733,28934815:256421 -k1,5452:25810013,28934815:256420 -k1,5452:28264512,28934815:256421 -k1,5452:30171130,28934815:256421 -k1,5452:31086842,28934815:256420 -k1,5452:32583029,28934815:0 -) -(1,5453:6630773,29776303:25952256,505283,134348 -k1,5452:7431910,29776303:269640 -k1,5452:10540569,29776303:269639 -k1,5452:11461637,29776303:269640 -k1,5452:12720215,29776303:269640 -k1,5452:14407398,29776303:269639 -k1,5452:16185021,29776303:269640 -k1,5452:17070698,29776303:269639 -k1,5452:18997088,29776303:269640 -k1,5452:20551234,29776303:269640 -k1,5452:21507035,29776303:269639 -k1,5452:24906019,29776303:269640 -k1,5452:25985029,29776303:269640 -k1,5452:27752821,29776303:269639 -h1,5452:28549739,29776303:0,0,0 -k1,5452:28993049,29776303:269640 -k1,5452:30433161,29776303:269639 -k1,5452:31835263,29776303:269640 -k1,5452:32583029,29776303:0 -) -(1,5453:6630773,30617791:25952256,513147,126483 -k1,5452:8197679,30617791:258152 -k1,5452:9107259,30617791:258152 -k1,5452:10631567,30617791:258152 -k1,5452:12867596,30617791:258152 -k1,5452:18698930,30617791:258152 -k1,5452:22051693,30617791:258153 -k1,5452:22961273,30617791:258152 -k1,5452:24971202,30617791:258152 -k1,5452:25888646,30617791:258152 -k1,5452:27605629,30617791:258152 -k1,5452:29576237,30617791:258152 -k1,5452:32583029,30617791:0 -) -(1,5453:6630773,31459279:25952256,513147,134348 -k1,5452:8009464,31459279:187246 -k1,5452:10588118,31459279:187245 -k1,5452:11817386,31459279:187246 -k1,5452:14839719,31459279:187246 -k1,5452:17865328,31459279:187245 -k1,5452:19000225,31459279:187246 -k1,5452:20206555,31459279:187245 -k1,5452:21619980,31459279:187246 -k1,5452:22466518,31459279:187246 -k1,5452:23424466,31459279:187245 -k1,5452:25218655,31459279:187246 -k1,5452:28111227,31459279:187246 -k1,5452:28829969,31459279:187245 -k1,5452:31304422,31459279:187246 -k1,5452:32583029,31459279:0 -) -(1,5453:6630773,32300767:25952256,505283,7863 -k1,5453:32583028,32300767:22788832 -g1,5453:32583028,32300767 -) -v1,5455:6630773,33576383:0,393216,0 -(1,5458:6630773,45116945:25952256,11933778,589824 -g1,5458:6630773,45116945 -(1,5458:6630773,45116945:25952256,11933778,589824 -(1,5458:6630773,45706769:25952256,12523602,0 -[1,5458:6630773,45706769:25952256,12523602,0 -(1,5458:6630773,45706769:25952256,12497388,0 -r1,5458:6656987,45706769:26214,12497388,0 -[1,5458:6656987,45706769:25899828,12497388,0 -(1,5458:6656987,45116945:25899828,11317740,0 -[1,5458:7246811,45116945:24720180,11317740,0 -(1,5456:7246811,34884741:24720180,1085536,298548 -(1,5455:7246811,34884741:0,1085536,298548 -r1,5458:8753226,34884741:1506415,1384084,298548 -k1,5455:7246811,34884741:-1506415 -) -(1,5455:7246811,34884741:1506415,1085536,298548 -) -k1,5455:8990561,34884741:237335 -k1,5455:11011132,34884741:237336 -k1,5455:14208073,34884741:237335 -k1,5455:17355863,34884741:237336 -k1,5455:19160819,34884741:237335 -k1,5455:21100125,34884741:237336 -k1,5455:23776710,34884741:237335 -k1,5455:25456492,34884741:237335 -k1,5455:27574018,34884741:237298 -k1,5455:29261009,34884741:237335 -k1,5456:31966991,34884741:0 -) -(1,5456:7246811,35726229:24720180,513147,134348 -k1,5455:9080901,35726229:195035 -k1,5455:11939975,35726229:195035 -k1,5455:13702631,35726229:195035 -k1,5455:16329707,35726229:195035 -k1,5455:19527603,35726229:195036 -k1,5455:20405523,35726229:195035 -k1,5455:23195784,35726229:195035 -k1,5455:24073704,35726229:195035 -k1,5455:26999624,35726229:195035 -k1,5455:30312207,35726229:195035 -k1,5455:31966991,35726229:0 -) -(1,5456:7246811,36567717:24720180,513147,134348 -k1,5455:7925109,36567717:146801 -k1,5455:8881279,36567717:146800 -k1,5455:11870376,36567717:146801 -k1,5455:13301682,36567717:146800 -k1,5455:16147911,36567717:146801 -k1,5455:17427173,36567717:146800 -k1,5455:18640245,36567717:146801 -k1,5455:21335086,36567717:146801 -k1,5455:24347120,36567717:146800 -k1,5455:25892459,36567717:146801 -k1,5455:27547898,36567717:146800 -k1,5455:30565831,36567717:146801 -k1,5456:31966991,36567717:0 -) -(1,5456:7246811,37409205:24720180,513147,134348 -k1,5455:8878005,37409205:176950 -k1,5455:11613480,37409205:176949 -k1,5455:13670636,37409205:176928 -k1,5455:14839145,37409205:176949 -k1,5455:17856425,37409205:176950 -k1,5455:20623357,37409205:176949 -k1,5455:21747958,37409205:176950 -k1,5455:28028930,37409205:176949 -k1,5455:29895398,37409205:176950 -k1,5456:31966991,37409205:0 -) -(1,5456:7246811,38250693:24720180,513147,134348 -k1,5455:8564680,38250693:266016 -k1,5455:11473109,38250693:266017 -k1,5455:14297651,38250693:266016 -k1,5455:16265637,38250693:266016 -k1,5455:19348391,38250693:266017 -k1,5455:20605967,38250693:266016 -k1,5455:23159191,38250693:266017 -k1,5455:26015190,38250693:266016 -k1,5455:28570379,38250693:266016 -k1,5455:30211997,38250693:266017 -k1,5455:30833873,38250693:266016 -k1,5455:31966991,38250693:0 -) -(1,5456:7246811,39092181:24720180,505283,134348 -k1,5456:31966991,39092181:21636056 -g1,5456:31966991,39092181 -) -(1,5458:7246811,39933669:24720180,513147,134348 -h1,5457:7246811,39933669:983040,0,0 -k1,5457:11257674,39933669:206498 -k1,5457:13623583,39933669:206498 -k1,5457:16740535,39933669:206498 -k1,5457:18051315,39933669:206498 -k1,5457:20058742,39933669:206498 -k1,5457:21961967,39933669:206498 -k1,5457:23116116,39933669:206498 -k1,5457:26157701,39933669:206498 -k1,5457:28062237,39933669:206498 -k1,5457:29648923,39933669:206498 -k1,5457:30947906,39933669:206498 -k1,5457:31966991,39933669:0 -) -(1,5458:7246811,40775157:24720180,513147,134348 -k1,5457:9048515,40775157:148231 -k1,5457:11265061,40775157:148230 -k1,5457:12360943,40775157:148231 -k1,5457:14799001,40775157:148230 -k1,5457:15630117,40775157:148231 -k1,5457:18977815,40775157:148230 -k1,5457:19753881,40775157:148231 -k1,5457:22741786,40775157:148230 -k1,5457:24641794,40775157:148231 -k1,5457:27700478,40775157:148230 -k1,5457:28941194,40775157:148231 -k1,5457:31966991,40775157:0 -) -(1,5458:7246811,41616645:24720180,513147,134348 -k1,5457:9876715,41616645:248326 -k1,5457:10741080,41616645:248327 -k1,5457:13899860,41616645:248326 -k1,5457:14764225,41616645:248327 -k1,5457:16031636,41616645:248326 -k1,5457:16694757,41616645:248278 -k1,5457:20724510,41616645:248326 -k1,5457:22578469,41616645:248327 -k1,5457:23509680,41616645:248326 -k1,5457:25459977,41616645:248327 -k1,5457:30281405,41616645:248326 -k1,5458:31966991,41616645:0 -) -(1,5458:7246811,42458133:24720180,505283,134348 -k1,5457:9258402,42458133:223113 -k1,5457:12391970,42458133:223114 -k1,5457:13376611,42458133:223113 -k1,5457:16771668,42458133:223114 -k1,5457:18807507,42458133:223113 -k1,5457:21633711,42458133:223114 -k1,5457:22508252,42458133:223113 -k1,5457:27729142,42458133:223114 -k1,5457:30862709,42458133:223113 -k1,5457:31966991,42458133:0 -) -(1,5458:7246811,43299621:24720180,513147,134348 -k1,5457:9850425,43299621:218759 -k1,5457:11992010,43299621:218759 -k1,5457:17111552,43299621:218760 -k1,5457:18349396,43299621:218759 -k1,5457:21958988,43299621:218759 -k1,5457:25088201,43299621:218759 -k1,5457:25989845,43299621:218759 -k1,5457:27860768,43299621:218760 -k1,5457:28738819,43299621:218759 -k1,5457:30770304,43299621:218759 -k1,5457:31966991,43299621:0 -) -(1,5458:7246811,44141109:24720180,505283,134348 -k1,5457:10135281,44141109:202149 -k1,5457:12519124,44141109:202149 -k1,5457:13482801,44141109:202149 -k1,5457:15565175,44141109:202146 -k1,5457:18060429,44141109:202149 -k1,5457:19756144,44141109:202149 -k1,5457:22965085,44141109:202149 -k1,5457:23783272,44141109:202149 -k1,5457:25587121,44141109:202149 -k1,5457:27486652,44141109:202149 -k1,5457:29386839,44141109:202149 -k1,5457:31966991,44141109:0 -) -(1,5458:7246811,44982597:24720180,513147,134348 -k1,5457:10368291,44982597:256246 -k1,5457:11616097,44982597:256246 -k1,5457:15294632,44982597:256245 -k1,5457:17822356,44982597:256246 -k1,5457:20658754,44982597:256246 -k1,5457:24701670,44982597:256246 -k1,5457:25609343,44982597:256245 -k1,5457:26661196,44982597:256246 -k1,5457:29924234,44982597:256246 -k1,5457:31966991,44982597:0 -) -] -) -] -r1,5458:32583029,45706769:26214,12497388,0 -) -] -) -) -g1,5458:32583029,45116945 -) -] -(1,5458:32583029,45706769:0,0,0 -g1,5458:32583029,45706769 -) -) -] -(1,5458:6630773,47279633:25952256,0,0 -h1,5458:6630773,47279633:25952256,0,0 -) -] -h1,5458:4262630,4025873:0,0,0 -] -!24343 +) +) +] +[1,5464:3078558,4812305:0,0,0 +(1,5464:3078558,49800853:0,16384,2228224 +g1,5464:29030814,49800853 +g1,5464:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5464:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5464:37855564,49800853:1179648,16384,0 +) +) +k1,5464:3078556,49800853:-34777008 +) +] +g1,5464:6630773,4812305 +g1,5464:6630773,4812305 +g1,5464:9132937,4812305 +g1,5464:11356573,4812305 +k1,5464:31786111,4812305:20429538 +) +) +] +[1,5464:6630773,45706769:25952256,40108032,0 +(1,5464:6630773,45706769:25952256,40108032,0 +(1,5464:6630773,45706769:0,0,0 +g1,5464:6630773,45706769 +) +[1,5464:6630773,45706769:25952256,40108032,0 +v1,5451:6630773,6254097:0,393216,0 +(1,5452:6630773,12737866:25952256,6876985,616038 +g1,5452:6630773,12737866 +(1,5452:6630773,12737866:25952256,6876985,616038 +(1,5452:6630773,13353904:25952256,7493023,0 +[1,5452:6630773,13353904:25952256,7493023,0 +(1,5452:6630773,13327690:25952256,7440595,0 +r1,5452:6656987,13327690:26214,7440595,0 +[1,5452:6656987,13327690:25899828,7440595,0 +(1,5452:6656987,12737866:25899828,6260947,0 +[1,5452:7246811,12737866:24720180,6260947,0 +(1,5452:7246811,7562455:24720180,1085536,298548 +(1,5451:7246811,7562455:0,1085536,298548 +r1,5452:8753226,7562455:1506415,1384084,298548 +k1,5451:7246811,7562455:-1506415 +) +(1,5451:7246811,7562455:1506415,1085536,298548 +) +k1,5451:8889185,7562455:135959 +k1,5451:10735279,7562455:139536 +k1,5451:14028763,7562455:135959 +k1,5451:15947956,7562455:135958 +k1,5451:19579605,7562455:135959 +k1,5451:21223547,7562455:135959 +k1,5451:21975544,7562455:135959 +k1,5451:23768252,7562455:135958 +k1,5451:25188717,7562455:135959 +k1,5451:25940714,7562455:135959 +k1,5451:27768813,7562455:135959 +k1,5451:29602153,7562455:135958 +k1,5451:30093972,7562455:135959 +k1,5451:31966991,7562455:0 +) +(1,5452:7246811,8403943:24720180,513147,134348 +k1,5451:8636655,8403943:200366 +k1,5451:9941302,8403943:200365 +k1,5451:11470738,8403943:200366 +k1,5451:12322531,8403943:200365 +k1,5451:12878757,8403943:200366 +k1,5451:14961971,8403943:200365 +k1,5451:17639598,8403943:200366 +k1,5451:18499255,8403943:200365 +k1,5451:20306564,8403943:200366 +k1,5451:23716227,8403943:200365 +k1,5451:24814436,8403943:200366 +k1,5451:26300617,8403943:200365 +k1,5451:28008966,8403943:200366 +k1,5451:28825369,8403943:200365 +k1,5451:30682485,8403943:200366 +k1,5451:31966991,8403943:0 +) +(1,5452:7246811,9245431:24720180,505283,134348 +k1,5451:9499873,9245431:224067 +k1,5451:12732044,9245431:224068 +k1,5451:16433451,9245431:224067 +k1,5451:18355557,9245431:224068 +k1,5451:20075811,9245431:224067 +k1,5451:20831375,9245431:224067 +k1,5451:23478309,9245431:224068 +k1,5451:26260902,9245431:224067 +k1,5451:27504055,9245431:224068 +k1,5451:30862709,9245431:224067 +k1,5451:31966991,9245431:0 +) +(1,5452:7246811,10086919:24720180,505283,126483 +k1,5451:9416768,10086919:264825 +k1,5451:11930133,10086919:264825 +k1,5451:12810996,10086919:264825 +k1,5451:13431681,10086919:264825 +k1,5451:15701252,10086919:264825 +k1,5451:18253284,10086919:264825 +k1,5451:20172893,10086919:264825 +k1,5451:20969215,10086919:264825 +k1,5451:22706634,10086919:264825 +k1,5451:28047878,10086919:264825 +k1,5451:30947906,10086919:264825 +k1,5451:31966991,10086919:0 +) +(1,5452:7246811,10928407:24720180,513147,134348 +k1,5451:10022678,10928407:290086 +k1,5451:10972056,10928407:290086 +k1,5451:12869085,10928407:290086 +k1,5451:16194799,10928407:290086 +k1,5451:17676330,10928407:290086 +k1,5451:18985502,10928407:290087 +k1,5451:23005242,10928407:290086 +k1,5451:23954620,10928407:290086 +k1,5451:25263791,10928407:290086 +k1,5451:26743355,10928407:290086 +k1,5451:30154265,10928407:290086 +k1,5451:31966991,10928407:0 +) +(1,5452:7246811,11769895:24720180,505283,134348 +k1,5451:9245540,11769895:215494 +k1,5451:11692535,11769895:215494 +k1,5451:13845274,11769895:215495 +k1,5451:15052328,11769895:215494 +k1,5451:18340150,11769895:215494 +k1,5451:20043967,11769895:215494 +k1,5451:21020989,11769895:215494 +k1,5451:23639033,11769895:215494 +k1,5451:24873613,11769895:215495 +k1,5451:26696050,11769895:215494 +k1,5451:29616870,11769895:215494 +k1,5451:31966991,11769895:0 +) +(1,5452:7246811,12611383:24720180,513147,126483 +g1,5451:8925843,12611383 +g1,5451:9811234,12611383 +g1,5451:11464052,12611383 +g1,5451:13600525,12611383 +g1,5451:14904036,12611383 +g1,5451:15851031,12611383 +g1,5451:16820963,12611383 +g1,5451:19484346,12611383 +g1,5451:23766468,12611383 +g1,5451:24624989,12611383 +g1,5451:26857800,12611383 +k1,5452:31966991,12611383:3448509 +g1,5452:31966991,12611383 +) +] +) +] +r1,5452:32583029,13327690:26214,7440595,0 +) +] +) +) +g1,5452:32583029,12737866 +) +h1,5452:6630773,13353904:0,0,0 +(1,5455:6630773,14629519:25952256,505283,134348 +h1,5454:6630773,14629519:983040,0,0 +k1,5454:9645691,14629519:199491 +k1,5454:10836743,14629519:199492 +k1,5454:13230379,14629519:199491 +k1,5454:15184925,14629519:199492 +k1,5454:17252192,14629519:199491 +k1,5454:20923125,14629519:199491 +k1,5454:24080257,14629519:199492 +k1,5454:25471193,14629519:199491 +k1,5454:27050873,14629519:199492 +k1,5454:28638417,14629519:199491 +k1,5454:32583029,14629519:0 +) +(1,5455:6630773,15471007:25952256,505283,134348 +k1,5454:10204451,15471007:193331 +k1,5454:12079436,15471007:193331 +k1,5454:13429478,15471007:193332 +k1,5454:14274237,15471007:193331 +k1,5454:15822853,15471007:193331 +k1,5454:18574710,15471007:193331 +k1,5454:19787127,15471007:193332 +k1,5454:21650315,15471007:193331 +k1,5454:24898934,15471007:193331 +k1,5454:26248975,15471007:193331 +k1,5454:29628667,15471007:193332 +k1,5454:30434760,15471007:193331 +k1,5454:30983951,15471007:193331 +k1,5454:32583029,15471007:0 +) +(1,5455:6630773,16312495:25952256,505283,134348 +k1,5454:8081264,16312495:259046 +k1,5454:8953072,16312495:259046 +k1,5454:10663739,16312495:259045 +k1,5454:12965542,16312495:259046 +k1,5454:15896491,16312495:259046 +k1,5454:17174622,16312495:259046 +k1,5454:18814512,16312495:259046 +k1,5454:19724985,16312495:259045 +k1,5454:22288932,16312495:259046 +k1,5454:23567063,16312495:259046 +k1,5454:26115937,16312495:259046 +k1,5454:28780810,16312495:259046 +k1,5454:29655893,16312495:259045 +k1,5454:30934024,16312495:259046 +k1,5454:31607853,16312495:258986 +k1,5455:32583029,16312495:0 +) +(1,5455:6630773,17153983:25952256,505283,126483 +k1,5454:10170789,17153983:244866 +k1,5454:11607100,17153983:244866 +k1,5454:13360606,17153983:244867 +k1,5454:15789787,17153983:244866 +k1,5454:16504546,17153983:244866 +k1,5454:17280909,17153983:244866 +k1,5454:18992471,17153983:244866 +k1,5454:21867297,17153983:244866 +k1,5454:22763592,17153983:244867 +k1,5454:25420838,17153983:244866 +k1,5454:28892697,17153983:244866 +k1,5454:32583029,17153983:0 +) +(1,5455:6630773,17995471:25952256,513147,134348 +k1,5454:8041152,17995471:189443 +k1,5454:8882024,17995471:189444 +k1,5454:11333770,17995471:189443 +k1,5454:12542298,17995471:189443 +k1,5454:14412085,17995471:189444 +k1,5454:15260820,17995471:189443 +k1,5454:15806123,17995471:189443 +k1,5454:18680577,17995471:189444 +k1,5454:20559538,17995471:189443 +k1,5454:23824586,17995471:189443 +k1,5454:24545526,17995471:189443 +k1,5454:27198468,17995471:189444 +k1,5454:28290342,17995471:189443 +k1,5454:28894619,17995471:189434 +k1,5454:32051532,17995471:189443 +k1,5454:32583029,17995471:0 +) +(1,5455:6630773,18836959:25952256,505283,134348 +g1,5454:9613971,18836959 +g1,5454:11823189,18836959 +g1,5454:14446595,18836959 +g1,5454:15837269,18836959 +g1,5454:17322314,18836959 +g1,5454:20080069,18836959 +g1,5454:21298383,18836959 +g1,5454:21912455,18836959 +k1,5455:32583029,18836959:8076659 +g1,5455:32583029,18836959 +) +(1,5457:6630773,19678447:25952256,513147,134348 +h1,5456:6630773,19678447:983040,0,0 +k1,5456:9590925,19678447:193877 +k1,5456:12042517,19678447:193877 +k1,5456:13695225,19678447:193877 +k1,5456:15195236,19678447:193878 +k1,5456:17724161,19678447:193877 +k1,5456:19088511,19678447:193877 +k1,5456:20414850,19678447:193877 +k1,5456:23076813,19678447:193877 +k1,5456:26095947,19678447:193877 +k1,5456:27742103,19678447:193878 +k1,5456:29127425,19678447:193877 +k1,5456:30932832,19678447:193877 +k1,5456:32583029,19678447:0 +) +(1,5457:6630773,20519935:25952256,505283,134348 +k1,5456:7649353,20519935:257052 +k1,5456:10429542,20519935:257053 +k1,5456:11705679,20519935:257052 +k1,5456:13793807,20519935:257052 +k1,5456:15207570,20519935:257053 +k1,5456:16633129,20519935:257052 +k1,5456:17502943,20519935:257052 +k1,5456:18115855,20519935:257052 +k1,5456:19798316,20519935:257053 +k1,5456:21246813,20519935:257052 +k1,5456:23201903,20519935:257052 +k1,5456:25757304,20519935:257053 +k1,5456:29753840,20519935:257052 +k1,5457:32583029,20519935:0 +) +(1,5457:6630773,21361423:25952256,513147,134348 +(1,5456:6630773,21361423:0,452978,115847 +r1,5456:9099310,21361423:2468537,568825,115847 +k1,5456:6630773,21361423:-2468537 +) +(1,5456:6630773,21361423:2468537,452978,115847 +k1,5456:6630773,21361423:3277 +h1,5456:9096033,21361423:0,411205,112570 +) +k1,5456:9280251,21361423:180941 +k1,5456:12977853,21361423:180940 +k1,5456:13810222,21361423:180941 +k1,5456:15978215,21361423:180941 +k1,5456:16771917,21361423:180940 +k1,5456:18283239,21361423:180941 +k1,5456:19483264,21361423:180940 +k1,5456:21344548,21361423:180941 +k1,5456:22184781,21361423:180941 +k1,5456:25207362,21361423:180940 +k1,5456:27959280,21361423:180941 +k1,5456:28752983,21361423:180941 +k1,5456:30385545,21361423:180940 +k1,5456:32095441,21361423:180941 +k1,5456:32583029,21361423:0 +) +(1,5457:6630773,22202911:25952256,513147,134348 +k1,5456:9769030,22202911:170787 +k1,5456:11951772,22202911:170787 +k1,5456:12478418,22202911:170786 +k1,5456:13505761,22202911:170787 +k1,5456:15326745,22202911:170787 +k1,5456:17959064,22202911:170787 +k1,5456:18816013,22202911:170787 +k1,5456:20143509,22202911:170786 +k1,5456:21418578,22202911:170787 +k1,5456:23244804,22202911:170787 +k1,5456:24331784,22202911:170787 +k1,5456:25694016,22202911:170787 +k1,5456:27520241,22202911:170786 +k1,5456:29057454,22202911:170787 +k1,5456:29887533,22202911:170787 +k1,5456:32583029,22202911:0 +) +(1,5457:6630773,23044399:25952256,513147,126483 +k1,5456:10497015,23044399:280112 +k1,5456:11968571,23044399:280111 +k1,5456:13183226,23044399:280112 +k1,5456:14654783,23044399:280112 +k1,5456:16699123,23044399:280111 +k1,5456:18763780,23044399:280112 +k1,5456:21062401,23044399:280112 +k1,5456:23261406,23044399:280111 +k1,5456:26617123,23044399:280112 +k1,5456:28029697,23044399:280112 +k1,5456:29885949,23044399:280111 +k1,5456:32051532,23044399:280112 +k1,5456:32583029,23044399:0 +) +(1,5457:6630773,23885887:25952256,513147,134348 +g1,5456:9937719,23885887 +g1,5456:12114169,23885887 +g1,5456:14011436,23885887 +g1,5456:17693904,23885887 +g1,5456:18307976,23885887 +k1,5457:32583029,23885887:11190929 +g1,5457:32583029,23885887 +) +(1,5459:6630773,24727375:25952256,505283,134348 +h1,5458:6630773,24727375:983040,0,0 +k1,5458:9614900,24727375:217852 +k1,5458:13731490,24727375:217853 +k1,5458:14968427,24727375:217852 +k1,5458:18177999,24727375:217853 +k1,5458:19011889,24727375:217852 +k1,5458:20432983,24727375:217853 +k1,5458:23242129,24727375:217852 +k1,5458:24275249,24727375:217852 +k1,5458:26001085,24727375:217853 +k1,5458:27422178,24727375:217852 +k1,5458:29918718,24727375:217853 +k1,5458:30752608,24727375:217852 +k1,5458:32583029,24727375:0 +) +(1,5459:6630773,25568863:25952256,513147,134348 +k1,5458:7414584,25568863:155976 +k1,5458:10410234,25568863:155975 +k1,5458:11032171,25568863:155976 +k1,5458:12358620,25568863:155976 +k1,5458:13493048,25568863:155975 +k1,5458:15377208,25568863:155976 +k1,5458:17429796,25568863:155976 +k1,5458:18237199,25568863:155975 +k1,5458:19659331,25568863:155976 +k1,5458:20834391,25568863:155975 +k1,5458:22772291,25568863:155976 +k1,5458:23587559,25568863:155976 +k1,5458:24099394,25568863:155975 +k1,5458:25618519,25568863:155976 +k1,5458:26589763,25568863:155976 +k1,5458:28897940,25568863:155975 +k1,5458:30512747,25568863:155976 +k1,5458:32583029,25568863:0 +) +(1,5459:6630773,26410351:25952256,513147,126483 +k1,5458:8314516,26410351:217047 +k1,5458:9182991,26410351:217047 +k1,5458:10419123,26410351:217047 +k1,5458:12237870,26410351:217047 +k1,5458:14320726,26410351:217046 +k1,5458:15197065,26410351:217047 +k1,5458:18044072,26410351:217047 +k1,5458:20547015,26410351:217047 +k1,5458:21955507,26410351:217047 +k1,5458:22823982,26410351:217047 +k1,5458:24060114,26410351:217047 +k1,5458:25772693,26410351:217047 +k1,5458:27702195,26410351:217046 +k1,5458:29406254,26410351:217047 +k1,5458:31323960,26410351:217047 +k1,5458:32227169,26410351:217047 +k1,5458:32583029,26410351:0 +) +(1,5459:6630773,27251839:25952256,513147,134348 +k1,5458:7968063,27251839:147812 +k1,5458:8731914,27251839:147813 +k1,5458:9235586,27251839:147812 +k1,5458:11963551,27251839:147813 +k1,5458:14848802,27251839:147812 +k1,5458:16564236,27251839:147813 +k1,5458:18592225,27251839:147761 +k1,5458:19422923,27251839:147813 +k1,5458:19985527,27251839:147761 +k1,5458:22119736,27251839:147813 +k1,5458:23041528,27251839:147812 +k1,5458:25471960,27251839:147813 +k1,5458:27317810,27251839:147812 +k1,5458:30889878,27251839:147812 +k1,5458:31393551,27251839:147813 +k1,5458:32583029,27251839:0 +) +(1,5459:6630773,28093327:25952256,513147,126483 +k1,5458:7465795,28093327:218984 +k1,5458:9180965,28093327:218983 +k1,5458:10570422,28093327:218984 +k1,5458:12264621,28093327:218984 +k1,5458:13549876,28093327:218984 +k1,5458:16229081,28093327:218983 +k1,5458:16906162,28093327:218984 +k1,5458:17656643,28093327:218984 +k1,5458:19275475,28093327:218983 +k1,5458:20145887,28093327:218984 +k1,5458:21718845,28093327:218984 +k1,5458:24713934,28093327:218984 +k1,5458:26345218,28093327:218983 +k1,5458:27583287,28093327:218984 +k1,5458:32583029,28093327:0 +) +(1,5459:6630773,28934815:25952256,513147,134348 +k1,5458:7573356,28934815:256421 +k1,5458:8848861,28934815:256420 +k1,5458:10895070,28934815:256421 +k1,5458:12488424,28934815:256420 +k1,5458:13492611,28934815:256421 +k1,5458:14977831,28934815:256420 +k1,5458:15850290,28934815:256421 +k1,5458:17565541,28934815:256420 +k1,5458:22476984,28934815:256421 +k1,5458:23392696,28934815:256420 +k1,5458:25197733,28934815:256421 +k1,5458:25810013,28934815:256420 +k1,5458:28264512,28934815:256421 +k1,5458:30171130,28934815:256421 +k1,5458:31086842,28934815:256420 +k1,5458:32583029,28934815:0 +) +(1,5459:6630773,29776303:25952256,505283,134348 +k1,5458:7431910,29776303:269640 +k1,5458:10540569,29776303:269639 +k1,5458:11461637,29776303:269640 +k1,5458:12720215,29776303:269640 +k1,5458:14407398,29776303:269639 +k1,5458:16185021,29776303:269640 +k1,5458:17070698,29776303:269639 +k1,5458:18997088,29776303:269640 +k1,5458:20551234,29776303:269640 +k1,5458:21507035,29776303:269639 +k1,5458:24906019,29776303:269640 +k1,5458:25985029,29776303:269640 +k1,5458:27752821,29776303:269639 +h1,5458:28549739,29776303:0,0,0 +k1,5458:28993049,29776303:269640 +k1,5458:30433161,29776303:269639 +k1,5458:31835263,29776303:269640 +k1,5458:32583029,29776303:0 +) +(1,5459:6630773,30617791:25952256,513147,126483 +k1,5458:8197679,30617791:258152 +k1,5458:9107259,30617791:258152 +k1,5458:10631567,30617791:258152 +k1,5458:12867596,30617791:258152 +k1,5458:18698930,30617791:258152 +k1,5458:22051693,30617791:258153 +k1,5458:22961273,30617791:258152 +k1,5458:24971202,30617791:258152 +k1,5458:25888646,30617791:258152 +k1,5458:27605629,30617791:258152 +k1,5458:29576237,30617791:258152 +k1,5458:32583029,30617791:0 +) +(1,5459:6630773,31459279:25952256,513147,134348 +k1,5458:8009464,31459279:187246 +k1,5458:10588118,31459279:187245 +k1,5458:11817386,31459279:187246 +k1,5458:14839719,31459279:187246 +k1,5458:17865328,31459279:187245 +k1,5458:19000225,31459279:187246 +k1,5458:20206555,31459279:187245 +k1,5458:21619980,31459279:187246 +k1,5458:22466518,31459279:187246 +k1,5458:23424466,31459279:187245 +k1,5458:25218655,31459279:187246 +k1,5458:28111227,31459279:187246 +k1,5458:28829969,31459279:187245 +k1,5458:31304422,31459279:187246 +k1,5458:32583029,31459279:0 +) +(1,5459:6630773,32300767:25952256,505283,7863 +k1,5459:32583028,32300767:22788832 +g1,5459:32583028,32300767 +) +v1,5461:6630773,33576383:0,393216,0 +(1,5464:6630773,45116945:25952256,11933778,589824 +g1,5464:6630773,45116945 +(1,5464:6630773,45116945:25952256,11933778,589824 +(1,5464:6630773,45706769:25952256,12523602,0 +[1,5464:6630773,45706769:25952256,12523602,0 +(1,5464:6630773,45706769:25952256,12497388,0 +r1,5464:6656987,45706769:26214,12497388,0 +[1,5464:6656987,45706769:25899828,12497388,0 +(1,5464:6656987,45116945:25899828,11317740,0 +[1,5464:7246811,45116945:24720180,11317740,0 +(1,5462:7246811,34884741:24720180,1085536,298548 +(1,5461:7246811,34884741:0,1085536,298548 +r1,5464:8753226,34884741:1506415,1384084,298548 +k1,5461:7246811,34884741:-1506415 +) +(1,5461:7246811,34884741:1506415,1085536,298548 +) +k1,5461:8990561,34884741:237335 +k1,5461:11011132,34884741:237336 +k1,5461:14208073,34884741:237335 +k1,5461:17355863,34884741:237336 +k1,5461:19160819,34884741:237335 +k1,5461:21100125,34884741:237336 +k1,5461:23776710,34884741:237335 +k1,5461:25456492,34884741:237335 +k1,5461:27574018,34884741:237298 +k1,5461:29261009,34884741:237335 +k1,5462:31966991,34884741:0 +) +(1,5462:7246811,35726229:24720180,513147,134348 +k1,5461:9080901,35726229:195035 +k1,5461:11939975,35726229:195035 +k1,5461:13702631,35726229:195035 +k1,5461:16329707,35726229:195035 +k1,5461:19527603,35726229:195036 +k1,5461:20405523,35726229:195035 +k1,5461:23195784,35726229:195035 +k1,5461:24073704,35726229:195035 +k1,5461:26999624,35726229:195035 +k1,5461:30312207,35726229:195035 +k1,5461:31966991,35726229:0 +) +(1,5462:7246811,36567717:24720180,513147,134348 +k1,5461:7971148,36567717:192840 +k1,5461:8973357,36567717:192839 +k1,5461:12008493,36567717:192840 +k1,5461:13485839,36567717:192840 +k1,5461:16378106,36567717:192839 +k1,5461:17703408,36567717:192840 +k1,5461:18962519,36567717:192840 +k1,5461:21703398,36567717:192839 +k1,5461:24761472,36567717:192840 +k1,5461:26352850,36567717:192840 +k1,5461:28054328,36567717:192839 +k1,5461:31118300,36567717:192840 +k1,5462:31966991,36567717:0 +) +(1,5462:7246811,37409205:24720180,513147,134348 +k1,5461:9408630,37409205:155107 +k1,5461:12122262,37409205:155106 +k1,5461:14157553,37409205:155063 +k1,5461:15304220,37409205:155107 +k1,5461:18299656,37409205:155106 +k1,5461:21044746,37409205:155107 +k1,5461:22147504,37409205:155107 +k1,5461:28406633,37409205:155106 +k1,5461:30251258,37409205:155107 +k1,5462:31966991,37409205:0 +) +(1,5462:7246811,38250693:24720180,513147,134348 +k1,5461:8888189,38250693:233665 +k1,5461:11764267,38250693:233666 +k1,5461:14556458,38250693:233665 +k1,5461:16492094,38250693:233666 +k1,5461:19542496,38250693:233665 +k1,5461:20767722,38250693:233666 +k1,5461:23288594,38250693:233665 +k1,5461:26112243,38250693:233666 +k1,5461:28635081,38250693:233665 +k1,5461:30244348,38250693:233666 +k1,5461:30833873,38250693:233665 +k1,5461:31966991,38250693:0 +) +(1,5462:7246811,39092181:24720180,505283,134348 +k1,5462:31966991,39092181:21636056 +g1,5462:31966991,39092181 +) +(1,5464:7246811,39933669:24720180,513147,134348 +h1,5463:7246811,39933669:983040,0,0 +k1,5463:11257674,39933669:206498 +k1,5463:13623583,39933669:206498 +k1,5463:16740535,39933669:206498 +k1,5463:18051315,39933669:206498 +k1,5463:20058742,39933669:206498 +k1,5463:21961967,39933669:206498 +k1,5463:23116116,39933669:206498 +k1,5463:26157701,39933669:206498 +k1,5463:28062237,39933669:206498 +k1,5463:29648923,39933669:206498 +k1,5463:30947906,39933669:206498 +k1,5463:31966991,39933669:0 +) +(1,5464:7246811,40775157:24720180,513147,134348 +k1,5463:9048515,40775157:148231 +k1,5463:11265061,40775157:148230 +k1,5463:12360943,40775157:148231 +k1,5463:14799001,40775157:148230 +k1,5463:15630117,40775157:148231 +k1,5463:18977815,40775157:148230 +k1,5463:19753881,40775157:148231 +k1,5463:22741786,40775157:148230 +k1,5463:24641794,40775157:148231 +k1,5463:27700478,40775157:148230 +k1,5463:28941194,40775157:148231 +k1,5463:31966991,40775157:0 +) +(1,5464:7246811,41616645:24720180,513147,134348 +k1,5463:9858066,41616645:229677 +k1,5463:10703781,41616645:229677 +k1,5463:13843911,41616645:229676 +k1,5463:14689626,41616645:229677 +k1,5463:15938388,41616645:229677 +k1,5463:16582877,41616645:229646 +k1,5463:20593981,41616645:229677 +k1,5463:22429290,41616645:229677 +k1,5463:23341851,41616645:229676 +k1,5463:25273498,41616645:229677 +k1,5463:30076277,41616645:229677 +k1,5464:31966991,41616645:0 +) +(1,5464:7246811,42458133:24720180,505283,134348 +k1,5463:9076066,42458133:245905 +k1,5463:12232426,42458133:245906 +k1,5463:13239859,42458133:245905 +k1,5463:16657708,42458133:245906 +k1,5463:18716339,42458133:245905 +k1,5463:21565335,42458133:245906 +k1,5463:22462668,42458133:245905 +k1,5463:27706350,42458133:245906 +k1,5463:30862709,42458133:245905 +k1,5463:31966991,42458133:0 +) +(1,5464:7246811,43299621:24720180,513147,134348 +k1,5463:9850425,43299621:218759 +k1,5463:11992010,43299621:218759 +k1,5463:17111552,43299621:218760 +k1,5463:18349396,43299621:218759 +k1,5463:21958988,43299621:218759 +k1,5463:25088201,43299621:218759 +k1,5463:25989845,43299621:218759 +k1,5463:27860768,43299621:218760 +k1,5463:28738819,43299621:218759 +k1,5463:30770304,43299621:218759 +k1,5463:31966991,43299621:0 +) +(1,5464:7246811,44141109:24720180,505283,134348 +k1,5463:10135281,44141109:202149 +k1,5463:12519124,44141109:202149 +k1,5463:13482801,44141109:202149 +k1,5463:15565175,44141109:202146 +k1,5463:18060429,44141109:202149 +k1,5463:19756144,44141109:202149 +k1,5463:22965085,44141109:202149 +k1,5463:23783272,44141109:202149 +k1,5463:25587121,44141109:202149 +k1,5463:27486652,44141109:202149 +k1,5463:29386839,44141109:202149 +k1,5463:31966991,44141109:0 +) +(1,5464:7246811,44982597:24720180,513147,134348 +k1,5463:10368291,44982597:256246 +k1,5463:11616097,44982597:256246 +k1,5463:15294632,44982597:256245 +k1,5463:17822356,44982597:256246 +k1,5463:20658754,44982597:256246 +k1,5463:24701670,44982597:256246 +k1,5463:25609343,44982597:256245 +k1,5463:26661196,44982597:256246 +k1,5463:29924234,44982597:256246 +k1,5463:31966991,44982597:0 +) +] +) +] +r1,5464:32583029,45706769:26214,12497388,0 +) +] +) +) +g1,5464:32583029,45116945 +) +] +(1,5464:32583029,45706769:0,0,0 +g1,5464:32583029,45706769 +) +) +] +(1,5464:6630773,47279633:25952256,0,0 +h1,5464:6630773,47279633:25952256,0,0 +) +] +h1,5464:4262630,4025873:0,0,0 +] +!24344 }104 -Input:701:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:702:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!182 +Input:697:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:698:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!194 {105 -[1,5499:4262630,47279633:28320399,43253760,0 -(1,5499:4262630,4025873:0,0,0 -[1,5499:-473657,4025873:25952256,0,0 -(1,5499:-473657,-710414:25952256,0,0 -h1,5499:-473657,-710414:0,0,0 -(1,5499:-473657,-710414:0,0,0 -(1,5499:-473657,-710414:0,0,0 -g1,5499:-473657,-710414 -(1,5499:-473657,-710414:65781,0,65781 -g1,5499:-407876,-710414 -[1,5499:-407876,-644633:0,0,0 +[1,5505:4262630,47279633:28320399,43253760,0 +(1,5505:4262630,4025873:0,0,0 +[1,5505:-473657,4025873:25952256,0,0 +(1,5505:-473657,-710414:25952256,0,0 +h1,5505:-473657,-710414:0,0,0 +(1,5505:-473657,-710414:0,0,0 +(1,5505:-473657,-710414:0,0,0 +g1,5505:-473657,-710414 +(1,5505:-473657,-710414:65781,0,65781 +g1,5505:-407876,-710414 +[1,5505:-407876,-644633:0,0,0 ] ) -k1,5499:-473657,-710414:-65781 +k1,5505:-473657,-710414:-65781 ) ) -k1,5499:25478599,-710414:25952256 -g1,5499:25478599,-710414 +k1,5505:25478599,-710414:25952256 +g1,5505:25478599,-710414 ) ] ) -[1,5499:6630773,47279633:25952256,43253760,0 -[1,5499:6630773,4812305:25952256,786432,0 -(1,5499:6630773,4812305:25952256,505283,134348 -(1,5499:6630773,4812305:25952256,505283,134348 -g1,5499:3078558,4812305 -[1,5499:3078558,4812305:0,0,0 -(1,5499:3078558,2439708:0,1703936,0 -k1,5499:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5499:2537886,2439708:1179648,16384,0 +[1,5505:6630773,47279633:25952256,43253760,0 +[1,5505:6630773,4812305:25952256,786432,0 +(1,5505:6630773,4812305:25952256,505283,134348 +(1,5505:6630773,4812305:25952256,505283,134348 +g1,5505:3078558,4812305 +[1,5505:3078558,4812305:0,0,0 +(1,5505:3078558,2439708:0,1703936,0 +k1,5505:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5505:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5499:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5505:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5499:3078558,4812305:0,0,0 -(1,5499:3078558,2439708:0,1703936,0 -g1,5499:29030814,2439708 -g1,5499:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5499:36151628,1915420:16384,1179648,0 +[1,5505:3078558,4812305:0,0,0 +(1,5505:3078558,2439708:0,1703936,0 +g1,5505:29030814,2439708 +g1,5505:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5505:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5499:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5505:37855564,2439708:1179648,16384,0 ) ) -k1,5499:3078556,2439708:-34777008 +k1,5505:3078556,2439708:-34777008 ) ] -[1,5499:3078558,4812305:0,0,0 -(1,5499:3078558,49800853:0,16384,2228224 -k1,5499:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5499:2537886,49800853:1179648,16384,0 -) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5499:3078558,51504789:16384,1179648,0 -) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 -) -] -) -) +[1,5505:3078558,4812305:0,0,0 +(1,5505:3078558,49800853:0,16384,2228224 +k1,5505:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5505:2537886,49800853:1179648,16384,0 +) +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5505:3078558,51504789:16384,1179648,0 +) +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 +) +] +) +) ) ] -[1,5499:3078558,4812305:0,0,0 -(1,5499:3078558,49800853:0,16384,2228224 -g1,5499:29030814,49800853 -g1,5499:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5499:36151628,51504789:16384,1179648,0 +[1,5505:3078558,4812305:0,0,0 +(1,5505:3078558,49800853:0,16384,2228224 +g1,5505:29030814,49800853 +g1,5505:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5505:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5499:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5505:37855564,49800853:1179648,16384,0 ) ) -k1,5499:3078556,49800853:-34777008 +k1,5505:3078556,49800853:-34777008 ) ] -g1,5499:6630773,4812305 -k1,5499:18752969,4812305:11325278 -g1,5499:20139710,4812305 -g1,5499:20788516,4812305 -g1,5499:24102671,4812305 -g1,5499:28605649,4812305 -g1,5499:30015328,4812305 +g1,5505:6630773,4812305 +k1,5505:18771974,4812305:11344283 +g1,5505:20158715,4812305 +g1,5505:20807521,4812305 +g1,5505:24121676,4812305 +g1,5505:28605649,4812305 +g1,5505:30015328,4812305 ) ) ] -[1,5499:6630773,45706769:25952256,40108032,0 -(1,5499:6630773,45706769:25952256,40108032,0 -(1,5499:6630773,45706769:0,0,0 -g1,5499:6630773,45706769 +[1,5505:6630773,45706769:25952256,40108032,0 +(1,5505:6630773,45706769:25952256,40108032,0 +(1,5505:6630773,45706769:0,0,0 +g1,5505:6630773,45706769 ) -[1,5499:6630773,45706769:25952256,40108032,0 -v1,5458:6630773,6254097:0,393216,0 -(1,5458:6630773,9614799:25952256,3753918,616038 -g1,5458:6630773,9614799 -(1,5458:6630773,9614799:25952256,3753918,616038 -(1,5458:6630773,10230837:25952256,4369956,0 -[1,5458:6630773,10230837:25952256,4369956,0 -(1,5458:6630773,10204623:25952256,4343742,0 -r1,5458:6656987,10204623:26214,4343742,0 -[1,5458:6656987,10204623:25899828,4343742,0 -(1,5458:6656987,9614799:25899828,3164094,0 -[1,5458:7246811,9614799:24720180,3164094,0 -(1,5458:7246811,6963852:24720180,513147,134348 -k1,5457:11210692,6963852:182454 -k1,5457:13951672,6963852:182454 -k1,5457:16014337,6963852:182437 -k1,5457:16728288,6963852:182454 -k1,5457:19714372,6963852:182454 -k1,5457:22831528,6963852:182454 -k1,5457:23479942,6963852:182453 -k1,5457:24832869,6963852:182454 -k1,5457:26107808,6963852:182454 -k1,5457:27992232,6963852:182454 -k1,5457:31966991,6963852:0 -) -(1,5458:7246811,7805340:24720180,513147,126483 -k1,5457:7752366,7805340:292563 -k1,5457:11831692,7805340:292656 -k1,5457:13408855,7805340:292657 -k1,5457:14871984,7805340:292656 -k1,5457:16880373,7805340:292656 -k1,5457:18553874,7805340:292657 -k1,5457:20131036,7805340:292656 -k1,5457:22716142,7805340:292657 -k1,5457:26323609,7805340:292656 -k1,5457:27082227,7805340:292657 -k1,5457:29261009,7805340:292656 -k1,5458:31966991,7805340:0 -) -(1,5458:7246811,8646828:24720180,513147,126483 -k1,5457:9277116,8646828:184156 -k1,5457:12125311,8646828:184156 -k1,5457:13124735,8646828:184156 -k1,5457:14905349,8646828:184157 -k1,5457:16483456,8646828:184156 -k1,5457:18126443,8646828:184156 -k1,5457:19640980,8646828:184156 -k1,5457:21829882,8646828:184156 -k1,5457:24056795,8646828:184156 -k1,5457:25749591,8646828:184157 -k1,5457:27026232,8646828:184156 -k1,5457:27826426,8646828:184156 -k1,5457:31966991,8646828:0 -) -(1,5458:7246811,9488316:24720180,505283,126483 -g1,5457:11069526,9488316 -g1,5457:12658118,9488316 -k1,5458:31966991,9488316:16434464 -g1,5458:31966991,9488316 -) -] -) -] -r1,5458:32583029,10204623:26214,4343742,0 -) -] -) -) -g1,5458:32583029,9614799 -) -h1,5458:6630773,10230837:0,0,0 -(1,5461:6630773,13038405:25952256,32768,229376 -(1,5461:6630773,13038405:0,32768,229376 -(1,5461:6630773,13038405:5505024,32768,229376 -r1,5461:12135797,13038405:5505024,262144,229376 -) -k1,5461:6630773,13038405:-5505024 -) -(1,5461:6630773,13038405:25952256,32768,0 -r1,5461:32583029,13038405:25952256,32768,0 -) -) -(1,5461:6630773,14642733:25952256,615776,14155 -(1,5461:6630773,14642733:1974731,582746,14155 -g1,5461:6630773,14642733 -g1,5461:8605504,14642733 -) -g1,5461:11819652,14642733 -g1,5461:12877403,14642733 -g1,5461:16985724,14642733 -k1,5461:32583029,14642733:13891534 -g1,5461:32583029,14642733 -) -(1,5464:6630773,15877437:25952256,513147,134348 -k1,5463:7827297,15877437:242975 -k1,5463:9350189,15877437:242974 -k1,5463:10612249,15877437:242975 -k1,5463:12593238,15877437:242974 -k1,5463:15032980,15877437:242975 -k1,5463:15891993,15877437:242975 -k1,5463:19082776,15877437:242974 -k1,5463:22732968,15877437:242975 -k1,5463:23627370,15877437:242974 -k1,5463:25614258,15877437:242975 -k1,5463:29373894,15877437:242974 -k1,5463:30901375,15877437:242975 -k1,5463:32583029,15877437:0 -) -(1,5464:6630773,16718925:25952256,513147,126483 -k1,5463:7841342,16718925:191484 -k1,5463:11108431,16718925:191484 -k1,5463:11959208,16718925:191485 -k1,5463:14759680,16718925:191484 -k1,5463:15610456,16718925:191484 -k1,5463:17298127,16718925:191484 -k1,5463:19187649,16718925:191484 -k1,5463:19734993,16718925:191484 -k1,5463:22124556,16718925:191485 -k1,5463:26150551,16718925:191484 -k1,5463:29550678,16718925:191484 -k1,5463:32583029,16718925:0 -) -(1,5464:6630773,17560413:25952256,513147,115847 -k1,5463:7418970,17560413:256700 -(1,5463:7418970,17560413:0,414482,115847 -r1,5463:8832371,17560413:1413401,530329,115847 -k1,5463:7418970,17560413:-1413401 -) -(1,5463:7418970,17560413:1413401,414482,115847 -k1,5463:7418970,17560413:3277 -h1,5463:8829094,17560413:0,411205,112570 -) -k1,5463:9262741,17560413:256700 -k1,5463:11236484,17560413:256700 -k1,5463:12152476,17560413:256700 -k1,5463:13428261,17560413:256700 -k1,5463:15972824,17560413:256701 -k1,5463:16888816,17560413:256700 -k1,5463:20221121,17560413:256700 -k1,5463:21827863,17560413:256700 -k1,5463:25774895,17560413:256700 -k1,5463:28727091,17560413:256700 -k1,5463:30130016,17560413:256700 -k1,5463:32583029,17560413:0 -) -(1,5464:6630773,18401901:25952256,513147,134348 -k1,5463:9492272,18401901:240058 -k1,5463:10679981,18401901:240058 -k1,5463:13662066,18401901:240059 -k1,5463:17592456,18401901:240058 -k1,5463:19979473,18401901:240058 -k1,5463:21901185,18401901:240058 -k1,5463:25657905,18401901:240058 -k1,5463:26549392,18401901:240059 -k1,5463:27537216,18401901:240058 -k1,5463:30610395,18401901:240058 -k1,5464:32583029,18401901:0 -) -(1,5464:6630773,19243389:25952256,513147,126483 -k1,5463:8403412,19243389:181425 -k1,5463:10274356,19243389:181426 -k1,5463:11138666,19243389:181425 -k1,5463:12813002,19243389:181426 -k1,5463:13350287,19243389:181425 -k1,5463:16564064,19243389:181426 -k1,5463:17276986,19243389:181425 -k1,5463:18856295,19243389:181426 -k1,5463:19720605,19243389:181425 -k1,5463:21394941,19243389:181426 -k1,5463:22342482,19243389:181425 -k1,5463:25477616,19243389:181426 -k1,5463:26318333,19243389:181425 -k1,5463:26855619,19243389:181426 -k1,5463:28030570,19243389:181425 -k1,5463:28894881,19243389:181426 -k1,5463:29432166,19243389:181425 -k1,5463:31591469,19243389:181426 -k1,5463:32583029,19243389:0 -) -(1,5464:6630773,20084877:25952256,505283,126483 -k1,5464:32583030,20084877:22565356 -g1,5464:32583030,20084877 -) -(1,5466:6630773,20926365:25952256,513147,126483 -h1,5465:6630773,20926365:983040,0,0 -k1,5465:9762240,20926365:274097 -k1,5465:12233105,20926365:274098 -k1,5465:13123240,20926365:274097 -k1,5465:16345147,20926365:274098 -k1,5465:20026461,20926365:274097 -k1,5465:21404840,20926365:274097 -k1,5465:22426704,20926365:274098 -k1,5465:23986617,20926365:274097 -k1,5465:25773941,20926365:274098 -k1,5465:26660800,20926365:274097 -k1,5465:27953982,20926365:274097 -k1,5465:28642848,20926365:274023 -k1,5465:31510860,20926365:274097 -k1,5465:32583029,20926365:0 -) -(1,5466:6630773,21767853:25952256,513147,126483 -k1,5465:7370183,21767853:281313 -k1,5465:8182993,21767853:281313 -k1,5465:10751514,21767853:281314 -k1,5465:13888231,21767853:281313 -k1,5465:14820972,21767853:281313 -k1,5465:15917553,21767853:281313 -k1,5465:16923694,21767853:281313 -k1,5465:17891170,21767853:281314 -k1,5465:19552671,21767853:281313 -k1,5465:20938266,21767853:281313 -k1,5465:23371781,21767853:281313 -k1,5465:25040491,21767853:281313 -k1,5465:27553305,21767853:281313 -k1,5465:29333427,21767853:281314 -k1,5465:30274032,21767853:281313 -k1,5465:31955194,21767853:281313 -k1,5465:32583029,21767853:0 -) -(1,5466:6630773,22609341:25952256,513147,126483 -k1,5465:8995967,22609341:240517 -k1,5465:11571532,22609341:240517 -k1,5465:12831134,22609341:240517 -k1,5465:14388925,22609341:240517 -k1,5465:15245480,22609341:240517 -k1,5465:18435117,22609341:240517 -k1,5465:19779916,22609341:240517 -k1,5465:20768198,22609341:240516 -k1,5465:22572404,22609341:240517 -k1,5465:24004366,22609341:240517 -k1,5465:26057609,22609341:240517 -k1,5465:27865747,22609341:240517 -k1,5465:29125349,22609341:240517 -k1,5465:30671999,22609341:240517 -k1,5465:31563944,22609341:240517 -k1,5465:32583029,22609341:0 -) -(1,5466:6630773,23450829:25952256,513147,126483 -k1,5465:7926092,23450829:147128 -k1,5465:11259581,23450829:147129 -k1,5465:12022747,23450829:147128 -k1,5465:13188960,23450829:147128 -k1,5465:15340835,23450829:147129 -k1,5465:17833497,23450829:147128 -k1,5465:18596663,23450829:147128 -k1,5465:21691601,23450829:147129 -k1,5465:25245946,23450829:147128 -k1,5465:27074728,23450829:147128 -k1,5465:30369551,23450829:147129 -k1,5465:31202841,23450829:147128 -k1,5465:32583029,23450829:0 -) -(1,5466:6630773,24292317:25952256,513147,126483 -k1,5465:8512836,24292317:200409 -k1,5465:12306584,24292317:200409 -k1,5465:15582598,24292317:200409 -k1,5465:17992881,24292317:200409 -k1,5465:20977915,24292317:200409 -k1,5465:24253929,24292317:200409 -k1,5465:25113630,24292317:200409 -k1,5465:29004371,24292317:200409 -k1,5465:30401467,24292317:200409 -k1,5465:31923737,24292317:200409 -k1,5465:32583029,24292317:0 -) -(1,5466:6630773,25133805:25952256,505283,126483 -k1,5465:7870004,25133805:220146 -k1,5465:9921227,25133805:220147 -k1,5465:14300943,25133805:220146 -k1,5465:17354211,25133805:220147 -k1,5465:18678639,25133805:220146 -k1,5465:19646552,25133805:220147 -k1,5465:20222558,25133805:220146 -k1,5465:22567381,25133805:220146 -k1,5465:23470413,25133805:220147 -k1,5465:24046419,25133805:220146 -k1,5465:27680336,25133805:220147 -k1,5465:29396669,25133805:220146 -k1,5465:32583029,25133805:0 -) -(1,5466:6630773,25975293:25952256,513147,134348 -k1,5465:9850931,25975293:147175 -k1,5465:10353966,25975293:147175 -k1,5465:11357698,25975293:147176 -k1,5465:12164165,25975293:147175 -k1,5465:15459034,25975293:147175 -k1,5465:16424098,25975293:147175 -k1,5465:17439625,25975293:147175 -k1,5465:18719263,25975293:147176 -k1,5465:19891421,25975293:147175 -k1,5465:21596387,25975293:147175 -k1,5465:22099422,25975293:147175 -k1,5465:25660368,25975293:147176 -k1,5465:28993903,25975293:147175 -k1,5465:30245360,25975293:147175 -k1,5465:32583029,25975293:0 -) -(1,5466:6630773,26816781:25952256,505283,126483 -g1,5465:9501249,26816781 -g1,5465:11825155,26816781 -g1,5465:12707269,26816781 -g1,5465:15023966,26816781 -g1,5465:18636965,26816781 -k1,5466:32583029,26816781:10255732 -g1,5466:32583029,26816781 -) -(1,5467:6630773,28908041:25952256,555811,139132 -(1,5467:6630773,28908041:2450326,534184,12975 -g1,5467:6630773,28908041 -g1,5467:9081099,28908041 -) -g1,5467:13288249,28908041 -k1,5467:32583029,28908041:15318318 -g1,5467:32583029,28908041 -) -(1,5471:6630773,30142745:25952256,513147,126483 -k1,5470:8267267,30142745:200600 -k1,5470:9127158,30142745:200599 -k1,5470:10267544,30142745:200600 -k1,5470:11336496,30142745:200600 -k1,5470:13067361,30142745:200599 -k1,5470:13919389,30142745:200600 -k1,5470:16850873,30142745:200599 -k1,5470:20465243,30142745:200600 -k1,5470:24356175,30142745:200600 -k1,5470:27761485,30142745:200599 -k1,5470:31478747,30142745:200600 -k1,5470:32583029,30142745:0 -) -(1,5471:6630773,30984233:25952256,505283,134348 -g1,5470:7577768,30984233 -g1,5470:10437759,30984233 -g1,5470:11904454,30984233 -g1,5470:15517453,30984233 -g1,5470:19233344,30984233 -g1,5470:20194101,30984233 -g1,5470:23187130,30984233 -g1,5470:25025414,30984233 -g1,5470:25840681,30984233 -g1,5470:27642921,30984233 -k1,5471:32583029,30984233:2710573 -g1,5471:32583029,30984233 -) -v1,5473:6630773,32174699:0,393216,0 -(1,5490:6630773,37908016:25952256,6126533,196608 -g1,5490:6630773,37908016 -g1,5490:6630773,37908016 -g1,5490:6434165,37908016 -(1,5490:6434165,37908016:0,6126533,196608 -r1,5490:32779637,37908016:26345472,6323141,196608 -k1,5490:6434165,37908016:-26345472 -) -(1,5490:6434165,37908016:26345472,6126533,196608 -[1,5490:6630773,37908016:25952256,5929925,0 -(1,5475:6630773,32382317:25952256,404226,101187 -(1,5474:6630773,32382317:0,0,0 -g1,5474:6630773,32382317 -g1,5474:6630773,32382317 -g1,5474:6303093,32382317 -(1,5474:6303093,32382317:0,0,0 -) -g1,5474:6630773,32382317 -) -k1,5475:6630773,32382317:0 -h1,5475:9792230,32382317:0,0,0 -k1,5475:32583030,32382317:22790800 -g1,5475:32583030,32382317 -) -(1,5479:6630773,33114031:25952256,404226,76021 -(1,5477:6630773,33114031:0,0,0 -g1,5477:6630773,33114031 -g1,5477:6630773,33114031 -g1,5477:6303093,33114031 -(1,5477:6303093,33114031:0,0,0 -) -g1,5477:6630773,33114031 -) -g1,5479:7579210,33114031 -g1,5479:8843793,33114031 -h1,5479:9792230,33114031:0,0,0 -k1,5479:32583030,33114031:22790800 -g1,5479:32583030,33114031 -) -(1,5481:6630773,34435569:25952256,404226,76021 -(1,5480:6630773,34435569:0,0,0 -g1,5480:6630773,34435569 -g1,5480:6630773,34435569 -g1,5480:6303093,34435569 -(1,5480:6303093,34435569:0,0,0 -) -g1,5480:6630773,34435569 -) -h1,5481:6946919,34435569:0,0,0 -k1,5481:32583029,34435569:25636110 -g1,5481:32583029,34435569 -) -(1,5482:6630773,35101747:25952256,404226,101187 -h1,5482:6630773,35101747:0,0,0 -g1,5482:6946919,35101747 -g1,5482:7263065,35101747 -k1,5482:7263065,35101747:0 -h1,5482:10424522,35101747:0,0,0 -k1,5482:32583030,35101747:22158508 -g1,5482:32583030,35101747 -) -(1,5483:6630773,35767925:25952256,404226,101187 -h1,5483:6630773,35767925:0,0,0 -g1,5483:6946919,35767925 -g1,5483:7263065,35767925 -k1,5483:7263065,35767925:0 -h1,5483:10424522,35767925:0,0,0 -k1,5483:32583030,35767925:22158508 -g1,5483:32583030,35767925 -) -(1,5484:6630773,36434103:25952256,404226,76021 -h1,5484:6630773,36434103:0,0,0 -h1,5484:6946919,36434103:0,0,0 -k1,5484:32583029,36434103:25636110 -g1,5484:32583029,36434103 -) -(1,5489:6630773,37165817:25952256,404226,76021 -(1,5486:6630773,37165817:0,0,0 -g1,5486:6630773,37165817 -g1,5486:6630773,37165817 -g1,5486:6303093,37165817 -(1,5486:6303093,37165817:0,0,0 -) -g1,5486:6630773,37165817 -) -g1,5489:7579210,37165817 -g1,5489:8843793,37165817 -h1,5489:9792230,37165817:0,0,0 -k1,5489:32583030,37165817:22790800 -g1,5489:32583030,37165817 -) -(1,5489:6630773,37831995:25952256,404226,76021 -h1,5489:6630773,37831995:0,0,0 -g1,5489:7579210,37831995 -g1,5489:8843793,37831995 -h1,5489:9792230,37831995:0,0,0 -k1,5489:32583030,37831995:22790800 -g1,5489:32583030,37831995 -) -] -) -g1,5490:32583029,37908016 -g1,5490:6630773,37908016 -g1,5490:6630773,37908016 -g1,5490:32583029,37908016 -g1,5490:32583029,37908016 -) -h1,5490:6630773,38104624:0,0,0 -(1,5494:6630773,39470400:25952256,513147,134348 -h1,5493:6630773,39470400:983040,0,0 -k1,5493:9033171,39470400:222671 -k1,5493:12138771,39470400:222671 -k1,5493:13020734,39470400:222671 -k1,5493:14262491,39470400:222672 -k1,5493:15633353,39470400:222671 -k1,5493:17028463,39470400:222671 -k1,5493:20767796,39470400:222671 -k1,5493:22845791,39470400:222671 -k1,5493:23599959,39470400:222671 -k1,5493:24481923,39470400:222672 -k1,5493:25513964,39470400:222671 -k1,5493:29819528,39470400:222671 -k1,5493:30803727,39470400:222671 -k1,5493:32583029,39470400:0 -) -(1,5494:6630773,40311888:25952256,513147,134348 -k1,5493:7942512,40311888:239570 -k1,5493:11065011,40311888:239570 -k1,5493:14078066,40311888:239571 -k1,5493:16294857,40311888:239570 -k1,5493:18232465,40311888:239570 -k1,5493:19985261,40311888:239570 -k1,5493:22905255,40311888:239571 -k1,5493:24538776,40311888:239570 -k1,5493:31227089,40311888:239570 -k1,5494:32583029,40311888:0 -) -(1,5494:6630773,41153376:25952256,426639,7863 -k1,5494:32583028,41153376:23567400 -g1,5494:32583028,41153376 -) -(1,5495:6630773,43244636:25952256,555811,12975 -(1,5495:6630773,43244636:2450326,534184,12975 -g1,5495:6630773,43244636 -g1,5495:9081099,43244636 -) -g1,5495:13505238,43244636 -k1,5495:32583029,43244636:15536750 -g1,5495:32583029,43244636 -) -(1,5499:6630773,44479340:25952256,513147,134348 -k1,5498:10539799,44479340:193790 -k1,5498:13809193,44479340:193789 -k1,5498:16014938,44479340:193790 -k1,5498:19010392,44479340:193790 -k1,5498:21966524,44479340:193789 -k1,5498:24344629,44479340:193790 -k1,5498:26031985,44479340:193790 -k1,5498:26911937,44479340:193790 -k1,5498:29760589,44479340:193789 -k1,5498:31145824,44479340:193790 -k1,5499:32583029,44479340:0 -) -(1,5499:6630773,45320828:25952256,513147,134348 -k1,5498:9529758,45320828:244122 -k1,5498:11958194,45320828:244121 -k1,5498:15530890,45320828:244122 -k1,5498:17785000,45320828:244121 -k1,5498:18384982,45320828:244122 -k1,5498:20633850,45320828:244122 -k1,5498:22258815,45320828:244121 -k1,5498:23034434,45320828:244122 -k1,5498:26056626,45320828:244121 -k1,5498:27062276,45320828:244122 -k1,5498:30589751,45320828:244121 -k1,5498:31516758,45320828:244122 -k1,5498:32583029,45320828:0 -) -] -(1,5499:32583029,45706769:0,0,0 -g1,5499:32583029,45706769 -) -) -] -(1,5499:6630773,47279633:25952256,0,0 -h1,5499:6630773,47279633:25952256,0,0 -) -] -h1,5499:4262630,4025873:0,0,0 +[1,5505:6630773,45706769:25952256,40108032,0 +v1,5464:6630773,6254097:0,393216,0 +(1,5464:6630773,9614799:25952256,3753918,616038 +g1,5464:6630773,9614799 +(1,5464:6630773,9614799:25952256,3753918,616038 +(1,5464:6630773,10230837:25952256,4369956,0 +[1,5464:6630773,10230837:25952256,4369956,0 +(1,5464:6630773,10204623:25952256,4343742,0 +r1,5464:6656987,10204623:26214,4343742,0 +[1,5464:6656987,10204623:25899828,4343742,0 +(1,5464:6656987,9614799:25899828,3164094,0 +[1,5464:7246811,9614799:24720180,3164094,0 +(1,5464:7246811,6963852:24720180,513147,134348 +k1,5463:11210692,6963852:182454 +k1,5463:13951672,6963852:182454 +k1,5463:16014337,6963852:182437 +k1,5463:16728288,6963852:182454 +k1,5463:19714372,6963852:182454 +k1,5463:22831528,6963852:182454 +k1,5463:23479942,6963852:182453 +k1,5463:24832869,6963852:182454 +k1,5463:26107808,6963852:182454 +k1,5463:27992232,6963852:182454 +k1,5463:31966991,6963852:0 +) +(1,5464:7246811,7805340:24720180,513147,126483 +k1,5463:7752366,7805340:292563 +k1,5463:11831692,7805340:292656 +k1,5463:13408855,7805340:292657 +k1,5463:14871984,7805340:292656 +k1,5463:16880373,7805340:292656 +k1,5463:18553874,7805340:292657 +k1,5463:20131036,7805340:292656 +k1,5463:22716142,7805340:292657 +k1,5463:26323609,7805340:292656 +k1,5463:27082227,7805340:292657 +k1,5463:29261009,7805340:292656 +k1,5464:31966991,7805340:0 +) +(1,5464:7246811,8646828:24720180,513147,126483 +k1,5463:9277116,8646828:184156 +k1,5463:12125311,8646828:184156 +k1,5463:13124735,8646828:184156 +k1,5463:14905349,8646828:184157 +k1,5463:16483456,8646828:184156 +k1,5463:18126443,8646828:184156 +k1,5463:19640980,8646828:184156 +k1,5463:21829882,8646828:184156 +k1,5463:24056795,8646828:184156 +k1,5463:25749591,8646828:184157 +k1,5463:27026232,8646828:184156 +k1,5463:27826426,8646828:184156 +k1,5463:31966991,8646828:0 +) +(1,5464:7246811,9488316:24720180,505283,126483 +g1,5463:11069526,9488316 +g1,5463:12658118,9488316 +k1,5464:31966991,9488316:16434464 +g1,5464:31966991,9488316 +) +] +) +] +r1,5464:32583029,10204623:26214,4343742,0 +) +] +) +) +g1,5464:32583029,9614799 +) +h1,5464:6630773,10230837:0,0,0 +(1,5467:6630773,13038405:25952256,32768,229376 +(1,5467:6630773,13038405:0,32768,229376 +(1,5467:6630773,13038405:5505024,32768,229376 +r1,5467:12135797,13038405:5505024,262144,229376 +) +k1,5467:6630773,13038405:-5505024 +) +(1,5467:6630773,13038405:25952256,32768,0 +r1,5467:32583029,13038405:25952256,32768,0 +) +) +(1,5467:6630773,14642733:25952256,615776,14155 +(1,5467:6630773,14642733:1974731,582746,14155 +g1,5467:6630773,14642733 +g1,5467:8605504,14642733 +) +g1,5467:11819652,14642733 +g1,5467:12877403,14642733 +g1,5467:16985724,14642733 +k1,5467:32583029,14642733:13891534 +g1,5467:32583029,14642733 +) +(1,5470:6630773,15877437:25952256,513147,134348 +k1,5469:7827297,15877437:242975 +k1,5469:9350189,15877437:242974 +k1,5469:10612249,15877437:242975 +k1,5469:12593238,15877437:242974 +k1,5469:15032980,15877437:242975 +k1,5469:15891993,15877437:242975 +k1,5469:19082776,15877437:242974 +k1,5469:22732968,15877437:242975 +k1,5469:23627370,15877437:242974 +k1,5469:25614258,15877437:242975 +k1,5469:29373894,15877437:242974 +k1,5469:30901375,15877437:242975 +k1,5469:32583029,15877437:0 +) +(1,5470:6630773,16718925:25952256,513147,126483 +k1,5469:7841342,16718925:191484 +k1,5469:11108431,16718925:191484 +k1,5469:11959208,16718925:191485 +k1,5469:14759680,16718925:191484 +k1,5469:15610456,16718925:191484 +k1,5469:17298127,16718925:191484 +k1,5469:19187649,16718925:191484 +k1,5469:19734993,16718925:191484 +k1,5469:22124556,16718925:191485 +k1,5469:26150551,16718925:191484 +k1,5469:29550678,16718925:191484 +k1,5469:32583029,16718925:0 +) +(1,5470:6630773,17560413:25952256,513147,115847 +k1,5469:7418970,17560413:256700 +(1,5469:7418970,17560413:0,414482,115847 +r1,5469:8832371,17560413:1413401,530329,115847 +k1,5469:7418970,17560413:-1413401 +) +(1,5469:7418970,17560413:1413401,414482,115847 +k1,5469:7418970,17560413:3277 +h1,5469:8829094,17560413:0,411205,112570 +) +k1,5469:9262741,17560413:256700 +k1,5469:11236484,17560413:256700 +k1,5469:12152476,17560413:256700 +k1,5469:13428261,17560413:256700 +k1,5469:15972824,17560413:256701 +k1,5469:16888816,17560413:256700 +k1,5469:20221121,17560413:256700 +k1,5469:21827863,17560413:256700 +k1,5469:25774895,17560413:256700 +k1,5469:28727091,17560413:256700 +k1,5469:30130016,17560413:256700 +k1,5469:32583029,17560413:0 +) +(1,5470:6630773,18401901:25952256,513147,134348 +k1,5469:9466582,18401901:214368 +k1,5469:10628601,18401901:214368 +k1,5469:13584995,18401901:214368 +k1,5469:17489695,18401901:214368 +k1,5469:19851023,18401901:214369 +k1,5469:21747045,18401901:214368 +k1,5469:25478075,18401901:214368 +k1,5469:26343871,18401901:214368 +k1,5469:27306005,18401901:214368 +k1,5469:30353494,18401901:214368 +k1,5470:32583029,18401901:0 +) +(1,5470:6630773,19243389:25952256,513147,126483 +k1,5469:8160784,19243389:195698 +k1,5469:10046000,19243389:195698 +k1,5469:10924582,19243389:195697 +k1,5469:12613190,19243389:195698 +k1,5469:13164748,19243389:195698 +k1,5469:16392797,19243389:195698 +k1,5469:17119991,19243389:195697 +k1,5469:18713572,19243389:195698 +k1,5469:19592155,19243389:195698 +k1,5469:21280763,19243389:195698 +k1,5469:22242577,19243389:195698 +k1,5469:25391982,19243389:195697 +k1,5469:26246972,19243389:195698 +k1,5469:26798530,19243389:195698 +k1,5469:27987754,19243389:195698 +k1,5469:28866336,19243389:195697 +k1,5469:29417894,19243389:195698 +k1,5469:31591469,19243389:195698 +k1,5469:32583029,19243389:0 +) +(1,5470:6630773,20084877:25952256,505283,126483 +k1,5470:32583030,20084877:22565356 +g1,5470:32583030,20084877 +) +(1,5472:6630773,20926365:25952256,513147,126483 +h1,5471:6630773,20926365:983040,0,0 +k1,5471:9762240,20926365:274097 +k1,5471:12233105,20926365:274098 +k1,5471:13123240,20926365:274097 +k1,5471:16345147,20926365:274098 +k1,5471:20026461,20926365:274097 +k1,5471:21404840,20926365:274097 +k1,5471:22426704,20926365:274098 +k1,5471:23986617,20926365:274097 +k1,5471:25773941,20926365:274098 +k1,5471:26660800,20926365:274097 +k1,5471:27953982,20926365:274097 +k1,5471:28642848,20926365:274023 +k1,5471:31510860,20926365:274097 +k1,5471:32583029,20926365:0 +) +(1,5472:6630773,21767853:25952256,513147,126483 +k1,5471:7370183,21767853:281313 +k1,5471:8182993,21767853:281313 +k1,5471:10751514,21767853:281314 +k1,5471:13888231,21767853:281313 +k1,5471:14820972,21767853:281313 +k1,5471:15917553,21767853:281313 +k1,5471:16923694,21767853:281313 +k1,5471:17891170,21767853:281314 +k1,5471:19552671,21767853:281313 +k1,5471:20938266,21767853:281313 +k1,5471:23371781,21767853:281313 +k1,5471:25040491,21767853:281313 +k1,5471:27553305,21767853:281313 +k1,5471:29333427,21767853:281314 +k1,5471:30274032,21767853:281313 +k1,5471:31955194,21767853:281313 +k1,5471:32583029,21767853:0 +) +(1,5472:6630773,22609341:25952256,513147,126483 +k1,5471:8995967,22609341:240517 +k1,5471:11571532,22609341:240517 +k1,5471:12831134,22609341:240517 +k1,5471:14388925,22609341:240517 +k1,5471:15245480,22609341:240517 +k1,5471:18435117,22609341:240517 +k1,5471:19779916,22609341:240517 +k1,5471:20768198,22609341:240516 +k1,5471:22572404,22609341:240517 +k1,5471:24004366,22609341:240517 +k1,5471:26057609,22609341:240517 +k1,5471:27865747,22609341:240517 +k1,5471:29125349,22609341:240517 +k1,5471:30671999,22609341:240517 +k1,5471:31563944,22609341:240517 +k1,5471:32583029,22609341:0 +) +(1,5472:6630773,23450829:25952256,513147,126483 +k1,5471:7926092,23450829:147128 +k1,5471:11259581,23450829:147129 +k1,5471:12022747,23450829:147128 +k1,5471:13188960,23450829:147128 +k1,5471:15340835,23450829:147129 +k1,5471:17833497,23450829:147128 +k1,5471:18596663,23450829:147128 +k1,5471:21691601,23450829:147129 +k1,5471:25245946,23450829:147128 +k1,5471:27074728,23450829:147128 +k1,5471:30369551,23450829:147129 +k1,5471:31202841,23450829:147128 +k1,5471:32583029,23450829:0 +) +(1,5472:6630773,24292317:25952256,513147,126483 +k1,5471:8512836,24292317:200409 +k1,5471:12306584,24292317:200409 +k1,5471:15582598,24292317:200409 +k1,5471:17992881,24292317:200409 +k1,5471:20977915,24292317:200409 +k1,5471:24253929,24292317:200409 +k1,5471:25113630,24292317:200409 +k1,5471:29004371,24292317:200409 +k1,5471:30401467,24292317:200409 +k1,5471:31923737,24292317:200409 +k1,5471:32583029,24292317:0 +) +(1,5472:6630773,25133805:25952256,505283,126483 +k1,5471:7870004,25133805:220146 +k1,5471:9921227,25133805:220147 +k1,5471:14300943,25133805:220146 +k1,5471:17354211,25133805:220147 +k1,5471:18678639,25133805:220146 +k1,5471:19646552,25133805:220147 +k1,5471:20222558,25133805:220146 +k1,5471:22567381,25133805:220146 +k1,5471:23470413,25133805:220147 +k1,5471:24046419,25133805:220146 +k1,5471:27680336,25133805:220147 +k1,5471:29396669,25133805:220146 +k1,5471:32583029,25133805:0 +) +(1,5472:6630773,25975293:25952256,513147,134348 +k1,5471:9850931,25975293:147175 +k1,5471:10353966,25975293:147175 +k1,5471:11357698,25975293:147176 +k1,5471:12164165,25975293:147175 +k1,5471:15459034,25975293:147175 +k1,5471:16424098,25975293:147175 +k1,5471:17439625,25975293:147175 +k1,5471:18719263,25975293:147176 +k1,5471:19891421,25975293:147175 +k1,5471:21596387,25975293:147175 +k1,5471:22099422,25975293:147175 +k1,5471:25660368,25975293:147176 +k1,5471:28993903,25975293:147175 +k1,5471:30245360,25975293:147175 +k1,5471:32583029,25975293:0 +) +(1,5472:6630773,26816781:25952256,505283,126483 +g1,5471:9501249,26816781 +g1,5471:11825155,26816781 +g1,5471:12707269,26816781 +g1,5471:15023966,26816781 +g1,5471:18636965,26816781 +k1,5472:32583029,26816781:10255732 +g1,5472:32583029,26816781 +) +(1,5473:6630773,28908041:25952256,555811,139132 +(1,5473:6630773,28908041:2450326,534184,12975 +g1,5473:6630773,28908041 +g1,5473:9081099,28908041 +) +g1,5473:13288249,28908041 +k1,5473:32583029,28908041:15318318 +g1,5473:32583029,28908041 +) +(1,5477:6630773,30142745:25952256,513147,126483 +k1,5476:8267267,30142745:200600 +k1,5476:9127158,30142745:200599 +k1,5476:10267544,30142745:200600 +k1,5476:11336496,30142745:200600 +k1,5476:13067361,30142745:200599 +k1,5476:13919389,30142745:200600 +k1,5476:16850873,30142745:200599 +k1,5476:20465243,30142745:200600 +k1,5476:24356175,30142745:200600 +k1,5476:27761485,30142745:200599 +k1,5476:31478747,30142745:200600 +k1,5476:32583029,30142745:0 +) +(1,5477:6630773,30984233:25952256,505283,134348 +g1,5476:7577768,30984233 +g1,5476:10437759,30984233 +g1,5476:11904454,30984233 +g1,5476:15517453,30984233 +g1,5476:19233344,30984233 +g1,5476:20194101,30984233 +g1,5476:23187130,30984233 +g1,5476:25025414,30984233 +g1,5476:25840681,30984233 +g1,5476:27642921,30984233 +k1,5477:32583029,30984233:2710573 +g1,5477:32583029,30984233 +) +v1,5479:6630773,32174699:0,393216,0 +(1,5496:6630773,37908016:25952256,6126533,196608 +g1,5496:6630773,37908016 +g1,5496:6630773,37908016 +g1,5496:6434165,37908016 +(1,5496:6434165,37908016:0,6126533,196608 +r1,5496:32779637,37908016:26345472,6323141,196608 +k1,5496:6434165,37908016:-26345472 +) +(1,5496:6434165,37908016:26345472,6126533,196608 +[1,5496:6630773,37908016:25952256,5929925,0 +(1,5481:6630773,32382317:25952256,404226,101187 +(1,5480:6630773,32382317:0,0,0 +g1,5480:6630773,32382317 +g1,5480:6630773,32382317 +g1,5480:6303093,32382317 +(1,5480:6303093,32382317:0,0,0 +) +g1,5480:6630773,32382317 +) +k1,5481:6630773,32382317:0 +h1,5481:9792230,32382317:0,0,0 +k1,5481:32583030,32382317:22790800 +g1,5481:32583030,32382317 +) +(1,5485:6630773,33114031:25952256,404226,76021 +(1,5483:6630773,33114031:0,0,0 +g1,5483:6630773,33114031 +g1,5483:6630773,33114031 +g1,5483:6303093,33114031 +(1,5483:6303093,33114031:0,0,0 +) +g1,5483:6630773,33114031 +) +g1,5485:7579210,33114031 +g1,5485:8843793,33114031 +h1,5485:9792230,33114031:0,0,0 +k1,5485:32583030,33114031:22790800 +g1,5485:32583030,33114031 +) +(1,5487:6630773,34435569:25952256,404226,76021 +(1,5486:6630773,34435569:0,0,0 +g1,5486:6630773,34435569 +g1,5486:6630773,34435569 +g1,5486:6303093,34435569 +(1,5486:6303093,34435569:0,0,0 +) +g1,5486:6630773,34435569 +) +h1,5487:6946919,34435569:0,0,0 +k1,5487:32583029,34435569:25636110 +g1,5487:32583029,34435569 +) +(1,5488:6630773,35101747:25952256,404226,101187 +h1,5488:6630773,35101747:0,0,0 +g1,5488:6946919,35101747 +g1,5488:7263065,35101747 +k1,5488:7263065,35101747:0 +h1,5488:10424522,35101747:0,0,0 +k1,5488:32583030,35101747:22158508 +g1,5488:32583030,35101747 +) +(1,5489:6630773,35767925:25952256,404226,101187 +h1,5489:6630773,35767925:0,0,0 +g1,5489:6946919,35767925 +g1,5489:7263065,35767925 +k1,5489:7263065,35767925:0 +h1,5489:10424522,35767925:0,0,0 +k1,5489:32583030,35767925:22158508 +g1,5489:32583030,35767925 +) +(1,5490:6630773,36434103:25952256,404226,76021 +h1,5490:6630773,36434103:0,0,0 +h1,5490:6946919,36434103:0,0,0 +k1,5490:32583029,36434103:25636110 +g1,5490:32583029,36434103 +) +(1,5495:6630773,37165817:25952256,404226,76021 +(1,5492:6630773,37165817:0,0,0 +g1,5492:6630773,37165817 +g1,5492:6630773,37165817 +g1,5492:6303093,37165817 +(1,5492:6303093,37165817:0,0,0 +) +g1,5492:6630773,37165817 +) +g1,5495:7579210,37165817 +g1,5495:8843793,37165817 +h1,5495:9792230,37165817:0,0,0 +k1,5495:32583030,37165817:22790800 +g1,5495:32583030,37165817 +) +(1,5495:6630773,37831995:25952256,404226,76021 +h1,5495:6630773,37831995:0,0,0 +g1,5495:7579210,37831995 +g1,5495:8843793,37831995 +h1,5495:9792230,37831995:0,0,0 +k1,5495:32583030,37831995:22790800 +g1,5495:32583030,37831995 +) +] +) +g1,5496:32583029,37908016 +g1,5496:6630773,37908016 +g1,5496:6630773,37908016 +g1,5496:32583029,37908016 +g1,5496:32583029,37908016 +) +h1,5496:6630773,38104624:0,0,0 +(1,5500:6630773,39470400:25952256,513147,134348 +h1,5499:6630773,39470400:983040,0,0 +k1,5499:9033171,39470400:222671 +k1,5499:12138771,39470400:222671 +k1,5499:13020734,39470400:222671 +k1,5499:14262491,39470400:222672 +k1,5499:15633353,39470400:222671 +k1,5499:17028463,39470400:222671 +k1,5499:20767796,39470400:222671 +k1,5499:22845791,39470400:222671 +k1,5499:23599959,39470400:222671 +k1,5499:24481923,39470400:222672 +k1,5499:25513964,39470400:222671 +k1,5499:29819528,39470400:222671 +k1,5499:30803727,39470400:222671 +k1,5499:32583029,39470400:0 +) +(1,5500:6630773,40311888:25952256,513147,134348 +k1,5499:7942512,40311888:239570 +k1,5499:11065011,40311888:239570 +k1,5499:14078066,40311888:239571 +k1,5499:16294857,40311888:239570 +k1,5499:18232465,40311888:239570 +k1,5499:19985261,40311888:239570 +k1,5499:22905255,40311888:239571 +k1,5499:24538776,40311888:239570 +k1,5499:31227089,40311888:239570 +k1,5500:32583029,40311888:0 +) +(1,5500:6630773,41153376:25952256,426639,7863 +k1,5500:32583028,41153376:23567400 +g1,5500:32583028,41153376 +) +(1,5501:6630773,43244636:25952256,555811,12975 +(1,5501:6630773,43244636:2450326,534184,12975 +g1,5501:6630773,43244636 +g1,5501:9081099,43244636 +) +g1,5501:13505238,43244636 +k1,5501:32583029,43244636:15536750 +g1,5501:32583029,43244636 +) +(1,5505:6630773,44479340:25952256,513147,134348 +k1,5504:10539799,44479340:193790 +k1,5504:13809193,44479340:193789 +k1,5504:16014938,44479340:193790 +k1,5504:19010392,44479340:193790 +k1,5504:21966524,44479340:193789 +k1,5504:24344629,44479340:193790 +k1,5504:26031985,44479340:193790 +k1,5504:26911937,44479340:193790 +k1,5504:29760589,44479340:193789 +k1,5504:31145824,44479340:193790 +k1,5505:32583029,44479340:0 +) +(1,5505:6630773,45320828:25952256,513147,134348 +k1,5504:9529758,45320828:244122 +k1,5504:11958194,45320828:244121 +k1,5504:15530890,45320828:244122 +k1,5504:17785000,45320828:244121 +k1,5504:18384982,45320828:244122 +k1,5504:20633850,45320828:244122 +k1,5504:22258815,45320828:244121 +k1,5504:23034434,45320828:244122 +k1,5504:26056626,45320828:244121 +k1,5504:27062276,45320828:244122 +k1,5504:30589751,45320828:244121 +k1,5504:31516758,45320828:244122 +k1,5504:32583029,45320828:0 +) +] +(1,5505:32583029,45706769:0,0,0 +g1,5505:32583029,45706769 +) +) +] +(1,5505:6630773,47279633:25952256,0,0 +h1,5505:6630773,47279633:25952256,0,0 +) +] +h1,5505:4262630,4025873:0,0,0 ] !18756 }105 -Input:703:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:704:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:705:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:706:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:707:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:708:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:709:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:710:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:711:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:712:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:713:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:714:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:715:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:716:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:717:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:718:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1372 +Input:699:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:700:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:701:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:702:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:703:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:704:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:705:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:706:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:707:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:708:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:709:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:710:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:711:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:712:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:713:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:714:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1468 {106 -[1,5573:4262630,47279633:28320399,43253760,0 -(1,5573:4262630,4025873:0,0,0 -[1,5573:-473657,4025873:25952256,0,0 -(1,5573:-473657,-710414:25952256,0,0 -h1,5573:-473657,-710414:0,0,0 -(1,5573:-473657,-710414:0,0,0 -(1,5573:-473657,-710414:0,0,0 -g1,5573:-473657,-710414 -(1,5573:-473657,-710414:65781,0,65781 -g1,5573:-407876,-710414 -[1,5573:-407876,-644633:0,0,0 +[1,5579:4262630,47279633:28320399,43253760,0 +(1,5579:4262630,4025873:0,0,0 +[1,5579:-473657,4025873:25952256,0,0 +(1,5579:-473657,-710414:25952256,0,0 +h1,5579:-473657,-710414:0,0,0 +(1,5579:-473657,-710414:0,0,0 +(1,5579:-473657,-710414:0,0,0 +g1,5579:-473657,-710414 +(1,5579:-473657,-710414:65781,0,65781 +g1,5579:-407876,-710414 +[1,5579:-407876,-644633:0,0,0 ] ) -k1,5573:-473657,-710414:-65781 +k1,5579:-473657,-710414:-65781 ) ) -k1,5573:25478599,-710414:25952256 -g1,5573:25478599,-710414 +k1,5579:25478599,-710414:25952256 +g1,5579:25478599,-710414 ) ] ) -[1,5573:6630773,47279633:25952256,43253760,0 -[1,5573:6630773,4812305:25952256,786432,0 -(1,5573:6630773,4812305:25952256,513147,126483 -(1,5573:6630773,4812305:25952256,513147,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,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5573:2537886,2439708:1179648,16384,0 +[1,5579:6630773,47279633:25952256,43253760,0 +[1,5579:6630773,4812305:25952256,786432,0 +(1,5579:6630773,4812305:25952256,513147,126483 +(1,5579:6630773,4812305:25952256,513147,126483 +g1,5579:3078558,4812305 +[1,5579:3078558,4812305:0,0,0 +(1,5579:3078558,2439708:0,1703936,0 +k1,5579:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5579:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5573:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5579:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5573:3078558,4812305:0,0,0 -(1,5573:3078558,2439708:0,1703936,0 -g1,5573:29030814,2439708 -g1,5573:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5573:36151628,1915420:16384,1179648,0 +[1,5579:3078558,4812305:0,0,0 +(1,5579:3078558,2439708:0,1703936,0 +g1,5579:29030814,2439708 +g1,5579:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5579:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5573:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5579:37855564,2439708:1179648,16384,0 ) ) -k1,5573:3078556,2439708:-34777008 +k1,5579:3078556,2439708:-34777008 ) ] -[1,5573:3078558,4812305:0,0,0 -(1,5573:3078558,49800853:0,16384,2228224 -k1,5573:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5573:2537886,49800853:1179648,16384,0 +[1,5579:3078558,4812305:0,0,0 +(1,5579:3078558,49800853:0,16384,2228224 +k1,5579:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5579:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5573:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5579:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5573:3078558,4812305:0,0,0 -(1,5573:3078558,49800853:0,16384,2228224 -g1,5573:29030814,49800853 -g1,5573:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5573:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5573:37855564,49800853:1179648,16384,0 -) -) -k1,5573:3078556,49800853:-34777008 -) -] -g1,5573:6630773,4812305 -g1,5573:6630773,4812305 -g1,5573:9175536,4812305 -g1,5573:9990803,4812305 -g1,5573:13137841,4812305 -g1,5573:14654344,4812305 -k1,5573:31786112,4812305:17131768 -) -) -] -[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 -(1,5499:6630773,6254097:25952256,513147,134348 -k1,5498:8179398,6254097:271984 -k1,5498:11499461,6254097:271984 -k1,5498:12772762,6254097:271911 -k1,5498:14236192,6254097:271985 -k1,5498:15942686,6254097:271911 -k1,5498:17866833,6254097:271984 -k1,5498:18798109,6254097:271984 -k1,5498:19425953,6254097:271984 -k1,5498:21529013,6254097:271984 -k1,5498:23655666,6254097:271984 -k1,5498:24737021,6254097:271985 -k1,5498:26028090,6254097:271984 -k1,5498:28142946,6254097:271984 -k1,5498:31193657,6254097:271984 -k1,5498:32227169,6254097:271984 -k1,5498:32583029,6254097:0 -) -(1,5499:6630773,7095585:25952256,513147,134348 -k1,5498:8928209,7095585:227809 -k1,5498:12769673,7095585:227809 -k1,5498:14378327,7095585:227810 -k1,5498:18046121,7095585:227809 -k1,5498:19378212,7095585:227809 -k1,5498:20891837,7095585:227809 -k1,5498:21867412,7095585:227809 -k1,5498:22451081,7095585:227809 -k1,5498:25629322,7095585:227810 -k1,5498:26212991,7095585:227809 -(1,5498:26212991,7095585:0,452978,122846 -r1,5498:28681528,7095585:2468537,575824,122846 -k1,5498:26212991,7095585:-2468537 -) -(1,5498:26212991,7095585:2468537,452978,122846 -k1,5498:26212991,7095585:3277 -h1,5498:28678251,7095585:0,411205,112570 -) -k1,5498:28909337,7095585:227809 -k1,5498:31648486,7095585:227809 -k1,5498:32583029,7095585:0 -) -(1,5499:6630773,7937073:25952256,513147,134348 -k1,5498:9972033,7937073:234853 -k1,5498:13472545,7937073:234853 -k1,5498:15113801,7937073:234853 -k1,5498:16367738,7937073:234852 -k1,5498:17674760,7937073:234853 -k1,5498:18568905,7937073:234853 -k1,5498:19822843,7937073:234853 -k1,5498:22062442,7937073:234853 -k1,5498:23446141,7937073:234853 -k1,5498:24340286,7937073:234853 -k1,5498:26070014,7937073:234852 -k1,5498:26836364,7937073:234853 -k1,5498:28672917,7937073:234853 -k1,5498:30884991,7937073:234853 -k1,5498:32583029,7937073:0 -) -(1,5499:6630773,8778561:25952256,513147,134348 -k1,5498:9912220,8778561:233368 -k1,5498:12780790,8778561:233367 -k1,5498:14186597,8778561:233368 -k1,5498:16251041,8778561:233368 -k1,5498:19574432,8778561:233368 -k1,5498:22509848,8778561:233367 -k1,5498:23552586,8778561:233368 -k1,5498:26457201,8778561:233368 -k1,5498:29299557,8778561:233368 -k1,5498:30192216,8778561:233367 -k1,5498:32095441,8778561:233368 -k1,5498:32583029,8778561:0 -) -(1,5499:6630773,9620049:25952256,513147,134348 -k1,5498:9519701,9620049:150178 -k1,5498:10762364,9620049:150178 -k1,5498:12279623,9620049:150178 -k1,5498:13377453,9620049:150179 -k1,5498:15022507,9620049:150178 -k1,5498:15704182,9620049:150178 -k1,5498:17914812,9620049:150178 -k1,5498:20778836,9620049:150178 -k1,5498:22120459,9620049:150178 -k1,5498:25174538,9620049:150179 -k1,5498:27897004,9620049:150178 -k1,5498:28706474,9620049:150178 -k1,5498:31015408,9620049:150178 -k1,5498:32583029,9620049:0 -) -(1,5499:6630773,10461537:25952256,505283,134348 -g1,5498:9501249,10461537 -g1,5498:13217140,10461537 -g1,5498:16353693,10461537 -g1,5498:17168960,10461537 -g1,5498:18755586,10461537 -g1,5498:19310675,10461537 -g1,5498:20898612,10461537 -k1,5499:32583029,10461537:9679671 -g1,5499:32583029,10461537 -) -(1,5501:6630773,11303025:25952256,513147,126483 -h1,5500:6630773,11303025:983040,0,0 -k1,5500:8245782,11303025:217126 -k1,5500:9563931,11303025:217144 -k1,5500:10953514,11303025:217144 -k1,5500:12887046,11303025:217144 -k1,5500:13763482,11303025:217144 -k1,5500:14538993,11303025:217144 -k1,5500:18446468,11303025:217143 -k1,5500:23437910,11303025:217144 -k1,5500:24846499,11303025:217144 -k1,5500:28574407,11303025:217144 -k1,5500:29745100,11303025:217144 -k1,5500:31094706,11303025:217144 -k1,5500:32583029,11303025:0 -) -(1,5501:6630773,12144513:25952256,505283,102891 -k1,5500:8284751,12144513:260027 -k1,5500:9563862,12144513:260026 -k1,5500:14598187,12144513:260027 -k1,5500:16188594,12144513:260026 -k1,5500:18334092,12144513:260027 -k1,5500:19125615,12144513:260026 -k1,5500:21587652,12144513:260027 -k1,5500:22499106,12144513:260026 -k1,5500:24307749,12144513:260027 -k1,5500:25099272,12144513:260026 -k1,5500:28143268,12144513:260027 -k1,5500:29019332,12144513:260026 -k1,5500:30881059,12144513:260027 -k1,5500:32583029,12144513:0 -) -(1,5501:6630773,12986001:25952256,505283,134348 -k1,5500:9854926,12986001:147893 -k1,5500:14355064,12986001:147892 -k1,5500:17849225,12986001:147893 -k1,5500:18950667,12986001:147893 -k1,5500:20586882,12986001:147892 -k1,5500:22128726,12986001:147893 -k1,5500:23289150,12986001:147893 -k1,5500:26428761,12986001:147892 -k1,5500:31252648,12986001:147893 -k1,5500:32583029,12986001:0 -) -(1,5501:6630773,13827489:25952256,513147,126483 -k1,5500:7387246,13827489:198106 -k1,5500:8776797,13827489:198106 -k1,5500:10775177,13827489:198106 -k1,5500:14489945,13827489:198106 -k1,5500:16458178,13827489:198106 -k1,5500:18269780,13827489:198106 -k1,5500:19336237,13827489:198105 -k1,5500:20666805,13827489:198106 -k1,5500:21889894,13827489:198106 -k1,5500:25079719,13827489:198106 -k1,5500:27177058,13827489:198106 -k1,5500:28026592,13827489:198106 -k1,5500:29421385,13827489:198106 -k1,5500:30711976,13827489:198106 -k1,5501:32583029,13827489:0 -k1,5501:32583029,13827489:0 -) -(1,5502:6630773,15455409:25952256,505283,115847 -(1,5502:6630773,15455409:2809528,485622,11795 -g1,5502:6630773,15455409 -g1,5502:9440301,15455409 -) -g1,5502:14690390,15455409 -(1,5502:14690390,15455409:0,459977,115847 -r1,5502:15400368,15455409:709978,575824,115847 -k1,5502:14690390,15455409:-709978 -) -(1,5502:14690390,15455409:709978,459977,115847 -k1,5502:14690390,15455409:3277 -h1,5502:15397091,15455409:0,411205,112570 -) -g1,5502:15778510,15455409 -(1,5502:15778510,15455409:0,452978,115847 -r1,5502:17191911,15455409:1413401,568825,115847 -k1,5502:15778510,15455409:-1413401 -) -(1,5502:15778510,15455409:1413401,452978,115847 -k1,5502:15778510,15455409:3277 -h1,5502:17188634,15455409:0,411205,112570 -) -g1,5502:17396383,15455409 -g1,5502:18821135,15455409 -(1,5502:18821135,15455409:0,452978,115847 -r1,5502:20937960,15455409:2116825,568825,115847 -k1,5502:18821135,15455409:-2116825 -) -(1,5502:18821135,15455409:2116825,452978,115847 -k1,5502:18821135,15455409:3277 -h1,5502:20934683,15455409:0,411205,112570 -) -k1,5502:32583029,15455409:11645069 -g1,5502:32583029,15455409 -) -(1,5506:6630773,16690113:25952256,505283,134348 -k1,5505:8036354,16690113:208894 -(1,5505:8036354,16690113:0,459977,115847 -r1,5505:8746332,16690113:709978,575824,115847 -k1,5505:8036354,16690113:-709978 -) -(1,5505:8036354,16690113:709978,459977,115847 -k1,5505:8036354,16690113:3277 -h1,5505:8743055,16690113:0,411205,112570 -) -k1,5505:8955227,16690113:208895 -k1,5505:12187952,16690113:208894 -k1,5505:15572066,16690113:208895 -k1,5505:19142957,16690113:208894 -k1,5505:20161222,16690113:208895 -k1,5505:20725976,16690113:208894 -(1,5505:20725976,16690113:0,452978,122846 -r1,5505:23194513,16690113:2468537,575824,122846 -k1,5505:20725976,16690113:-2468537 -) -(1,5505:20725976,16690113:2468537,452978,122846 -k1,5505:20725976,16690113:3277 -h1,5505:23191236,16690113:0,411205,112570 -) -k1,5505:23403407,16690113:208894 -k1,5505:25466316,16690113:208895 -k1,5505:28265848,16690113:208894 -k1,5505:29493828,16690113:208895 -k1,5505:31086842,16690113:208894 -k1,5505:32583029,16690113:0 -) -(1,5506:6630773,17531601:25952256,513147,126483 -g1,5505:10016362,17531601 -g1,5505:10747088,17531601 -g1,5505:13779438,17531601 -g1,5505:14659586,17531601 -(1,5505:14659586,17531601:0,414482,115847 -r1,5505:16072987,17531601:1413401,530329,115847 -k1,5505:14659586,17531601:-1413401 -) -(1,5505:14659586,17531601:1413401,414482,115847 -k1,5505:14659586,17531601:3277 -h1,5505:16069710,17531601:0,411205,112570 -) -g1,5505:16479310,17531601 -g1,5505:17361424,17531601 -g1,5505:20094275,17531601 -g1,5505:20974423,17531601 -(1,5505:20974423,17531601:0,414482,115847 -r1,5505:22739536,17531601:1765113,530329,115847 -k1,5505:20974423,17531601:-1765113 -) -(1,5505:20974423,17531601:1765113,414482,115847 -k1,5505:20974423,17531601:3277 -h1,5505:22736259,17531601:0,411205,112570 -) -k1,5506:32583029,17531601:9462729 -g1,5506:32583029,17531601 -) -v1,5508:6630773,18722067:0,393216,0 -(1,5516:6630773,20409890:25952256,2081039,196608 -g1,5516:6630773,20409890 -g1,5516:6630773,20409890 -g1,5516:6434165,20409890 -(1,5516:6434165,20409890:0,2081039,196608 -r1,5516:32779637,20409890:26345472,2277647,196608 -k1,5516:6434165,20409890:-26345472 -) -(1,5516:6434165,20409890:26345472,2081039,196608 -[1,5516:6630773,20409890:25952256,1884431,0 -(1,5510:6630773,18935977:25952256,410518,107478 -(1,5509:6630773,18935977:0,0,0 -g1,5509:6630773,18935977 -g1,5509:6630773,18935977 -g1,5509:6303093,18935977 -(1,5509:6303093,18935977:0,0,0 -) -g1,5509:6630773,18935977 -) -g1,5510:8211502,18935977 -g1,5510:9159940,18935977 -h1,5510:10424523,18935977:0,0,0 -k1,5510:32583029,18935977:22158506 -g1,5510:32583029,18935977 -) -(1,5511:6630773,19602155:25952256,410518,107478 -h1,5511:6630773,19602155:0,0,0 -g1,5511:7579210,19602155 -g1,5511:9792230,19602155 -k1,5511:9792230,19602155:0 -h1,5511:14534415,19602155:0,0,0 -k1,5511:32583029,19602155:18048614 -g1,5511:32583029,19602155 -) -(1,5515:6630773,20333869:25952256,404226,76021 -(1,5513:6630773,20333869:0,0,0 -g1,5513:6630773,20333869 -g1,5513:6630773,20333869 -g1,5513:6303093,20333869 -(1,5513:6303093,20333869:0,0,0 -) -g1,5513:6630773,20333869 -) -g1,5515:7579210,20333869 -g1,5515:8843793,20333869 -h1,5515:11372958,20333869:0,0,0 -k1,5515:32583030,20333869:21210072 -g1,5515:32583030,20333869 -) -] -) -g1,5516:32583029,20409890 -g1,5516:6630773,20409890 -g1,5516:6630773,20409890 -g1,5516:32583029,20409890 -g1,5516:32583029,20409890 -) -h1,5516:6630773,20606498:0,0,0 -v1,5520:6630773,22496562:0,393216,0 -(1,5536:6630773,30947205:25952256,8843859,616038 -g1,5536:6630773,30947205 -(1,5536:6630773,30947205:25952256,8843859,616038 -(1,5536:6630773,31563243:25952256,9459897,0 -[1,5536:6630773,31563243:25952256,9459897,0 -(1,5536:6630773,31537029:25952256,9407469,0 -r1,5536:6656987,31537029:26214,9407469,0 -[1,5536:6656987,31537029:25899828,9407469,0 -(1,5536:6656987,30947205:25899828,8227821,0 -[1,5536:7246811,30947205:24720180,8227821,0 -(1,5521:7246811,23806758:24720180,1087374,134348 -k1,5520:8654910,23806758:198396 -k1,5520:10150918,23806758:198395 -k1,5520:11743265,23806758:198396 -k1,5520:12960746,23806758:198396 -k1,5520:14655328,23806758:198395 -k1,5520:16709048,23806758:198396 -k1,5520:17668972,23806758:198396 -k1,5520:20750952,23806758:198396 -k1,5520:21968432,23806758:198395 -k1,5520:23847171,23806758:198396 -k1,5520:26820361,23806758:198396 -k1,5520:27670184,23806758:198395 -k1,5520:30379920,23806758:198396 -(1,5520:30379920,23806758:0,459977,122846 -r1,5536:31793321,23806758:1413401,582823,122846 -k1,5520:30379920,23806758:-1413401 -) -(1,5520:30379920,23806758:1413401,459977,122846 -k1,5520:30379920,23806758:3277 -h1,5520:31790044,23806758:0,411205,112570 -) -k1,5521:31966991,23806758:0 -) -(1,5521:7246811,24648246:24720180,505283,122846 -(1,5520:7246811,24648246:0,414482,115847 -r1,5536:9011924,24648246:1765113,530329,115847 -k1,5520:7246811,24648246:-1765113 -) -(1,5520:7246811,24648246:1765113,414482,115847 -k1,5520:7246811,24648246:3277 -h1,5520:9008647,24648246:0,411205,112570 -) -g1,5520:9384823,24648246 -(1,5520:9384823,24648246:0,414482,115847 -r1,5536:10094801,24648246:709978,530329,115847 -k1,5520:9384823,24648246:-709978 -) -(1,5520:9384823,24648246:709978,414482,115847 -k1,5520:9384823,24648246:3277 -h1,5520:10091524,24648246:0,411205,112570 -) -g1,5520:10467700,24648246 -g1,5520:11858374,24648246 -(1,5520:11858374,24648246:0,452978,122846 -r1,5536:15382046,24648246:3523672,575824,122846 -k1,5520:11858374,24648246:-3523672 -) -(1,5520:11858374,24648246:3523672,452978,122846 -k1,5520:11858374,24648246:3277 -h1,5520:15378769,24648246:0,411205,112570 -) -k1,5521:31966991,24648246:16411275 -g1,5521:31966991,24648246 -) -(1,5523:7246811,25489734:24720180,505283,126483 -h1,5522:7246811,25489734:983040,0,0 -g1,5522:9056915,25489734 -g1,5522:10275229,25489734 -g1,5522:13135875,25489734 -g1,5522:15190428,25489734 -g1,5522:16258009,25489734 -g1,5522:17549723,25489734 -g1,5522:20260292,25489734 -(1,5522:20260292,25489734:0,459977,122846 -r1,5536:21673693,25489734:1413401,582823,122846 -k1,5522:20260292,25489734:-1413401 -) -(1,5522:20260292,25489734:1413401,459977,122846 -k1,5522:20260292,25489734:3277 -h1,5522:21670416,25489734:0,411205,112570 -) -g1,5522:21872922,25489734 -g1,5522:22758313,25489734 -g1,5522:23976627,25489734 -k1,5523:31966991,25489734:4926556 -g1,5523:31966991,25489734 -) -(1,5525:7246811,26331222:24720180,513147,134348 -h1,5524:7246811,26331222:983040,0,0 -k1,5524:11066514,26331222:287968 -k1,5524:11970520,26331222:287968 -k1,5524:13277573,26331222:287968 -k1,5524:13980295,26331222:287879 -k1,5524:17110559,26331222:287968 -k1,5524:20161526,26331222:287969 -k1,5524:21652735,26331222:287968 -k1,5524:24973054,26331222:287968 -k1,5524:26828643,26331222:287968 -k1,5524:28854626,26331222:287968 -k1,5524:29498454,26331222:287968 -(1,5524:29498454,26331222:0,452978,122846 -r1,5536:31966991,26331222:2468537,575824,122846 -k1,5524:29498454,26331222:-2468537 -) -(1,5524:29498454,26331222:2468537,452978,122846 -k1,5524:29498454,26331222:3277 -h1,5524:31963714,26331222:0,411205,112570 -) -k1,5524:31966991,26331222:0 -) -(1,5525:7246811,27172710:24720180,505283,126483 -k1,5524:10411870,27172710:233634 -k1,5524:12979240,27172710:233633 -k1,5524:14509832,27172710:233634 -(1,5524:14509832,27172710:0,459977,115847 -r1,5536:17681793,27172710:3171961,575824,115847 -k1,5524:14509832,27172710:-3171961 -) -(1,5524:14509832,27172710:3171961,459977,115847 -g1,5524:15568245,27172710 -h1,5524:17678516,27172710:0,411205,112570 -) -k1,5524:17915427,27172710:233634 -k1,5524:18765098,27172710:233633 -k1,5524:20017817,27172710:233634 -k1,5524:26678566,27172710:233633 -k1,5524:30098560,27172710:233634 -k1,5524:31966991,27172710:0 -) -(1,5525:7246811,28014198:24720180,513147,126483 -g1,5524:7977537,28014198 -g1,5524:8836058,28014198 -g1,5524:9844657,28014198 -g1,5524:12795087,28014198 -k1,5525:31966991,28014198:17905748 -g1,5525:31966991,28014198 -) -v1,5527:7246811,29204664:0,393216,0 -(1,5534:7246811,30226309:24720180,1414861,196608 -g1,5534:7246811,30226309 -g1,5534:7246811,30226309 -g1,5534:7050203,30226309 -(1,5534:7050203,30226309:0,1414861,196608 -r1,5536:32163599,30226309:25113396,1611469,196608 -k1,5534:7050203,30226309:-25113396 -) -(1,5534:7050203,30226309:25113396,1414861,196608 -[1,5534:7246811,30226309:24720180,1218253,0 -(1,5529:7246811,29418574:24720180,410518,101187 -(1,5528:7246811,29418574:0,0,0 -g1,5528:7246811,29418574 -g1,5528:7246811,29418574 -g1,5528:6919131,29418574 -(1,5528:6919131,29418574:0,0,0 -) -g1,5528:7246811,29418574 -) -k1,5529:7246811,29418574:0 -g1,5529:8195248,29418574 -g1,5529:10408269,29418574 -k1,5529:10408269,29418574:0 -h1,5529:15150454,29418574:0,0,0 -k1,5529:31966990,29418574:16816536 -g1,5529:31966990,29418574 -) -(1,5533:7246811,30150288:24720180,404226,76021 -(1,5531:7246811,30150288:0,0,0 -g1,5531:7246811,30150288 -g1,5531:7246811,30150288 -g1,5531:6919131,30150288 -(1,5531:6919131,30150288:0,0,0 -) -g1,5531:7246811,30150288 -) -g1,5533:8195248,30150288 -g1,5533:9459831,30150288 -h1,5533:11988996,30150288:0,0,0 -k1,5533:31966992,30150288:19977996 -g1,5533:31966992,30150288 -) -] -) -g1,5534:31966991,30226309 -g1,5534:7246811,30226309 -g1,5534:7246811,30226309 -g1,5534:31966991,30226309 -g1,5534:31966991,30226309 -) -h1,5534:7246811,30422917:0,0,0 -] -) -] -r1,5536:32583029,31537029:26214,9407469,0 -) -] -) -) -g1,5536:32583029,30947205 -) -h1,5536:6630773,31563243:0,0,0 -(1,5539:6630773,32929019:25952256,513147,126483 -h1,5538:6630773,32929019:983040,0,0 -k1,5538:11540134,32929019:211085 -k1,5538:14826825,32929019:211086 -k1,5538:15569407,32929019:211085 -k1,5538:17563727,32929019:211085 -k1,5538:19425009,32929019:211085 -k1,5538:21613316,32929019:211086 -k1,5538:23266848,32929019:211085 -k1,5538:25026549,32929019:211085 -k1,5538:27006451,32929019:211085 -k1,5538:27965303,32929019:211086 -k1,5538:31015408,32929019:211085 -k1,5538:32583029,32929019:0 -) -(1,5539:6630773,33770507:25952256,505283,134348 -k1,5538:7849284,33770507:199426 -k1,5538:10803188,33770507:199426 -k1,5538:13837701,33770507:199426 -k1,5538:16566817,33770507:199426 -k1,5538:17785328,33770507:199426 -k1,5538:21171114,33770507:199426 -k1,5538:23378563,33770507:199426 -k1,5538:26653594,33770507:199426 -k1,5538:27384517,33770507:199426 -k1,5538:29321958,33770507:199426 -k1,5538:32583029,33770507:0 -) -(1,5539:6630773,34611995:25952256,513147,134348 -k1,5538:7954199,34611995:219144 -k1,5538:8921109,34611995:219144 -k1,5538:9496113,34611995:219144 -k1,5538:13129026,34611995:219143 -k1,5538:16534530,34611995:219144 -k1,5538:17412966,34611995:219144 -k1,5538:19794798,34611995:219144 -k1,5538:21145749,34611995:219144 -k1,5538:23378159,34611995:219144 -k1,5538:24280187,34611995:219143 -k1,5538:28178522,34611995:219144 -k1,5538:28885234,34611995:219124 -k1,5538:30458352,34611995:219144 -k1,5538:32583029,34611995:0 -) -(1,5539:6630773,35453483:25952256,513147,126483 -g1,5538:9491419,35453483 -k1,5539:32583028,35453483:20602552 -g1,5539:32583028,35453483 -) -v1,5541:6630773,36643949:0,393216,0 -(1,5553:6630773,40990192:25952256,4739459,196608 -g1,5553:6630773,40990192 -g1,5553:6630773,40990192 -g1,5553:6434165,40990192 -(1,5553:6434165,40990192:0,4739459,196608 -r1,5553:32779637,40990192:26345472,4936067,196608 -k1,5553:6434165,40990192:-26345472 -) -(1,5553:6434165,40990192:26345472,4739459,196608 -[1,5553:6630773,40990192:25952256,4542851,0 -(1,5543:6630773,36851567:25952256,404226,107478 -(1,5542:6630773,36851567:0,0,0 -g1,5542:6630773,36851567 -g1,5542:6630773,36851567 -g1,5542:6303093,36851567 -(1,5542:6303093,36851567:0,0,0 -) -g1,5542:6630773,36851567 -) -g1,5543:9476084,36851567 -g1,5543:10424522,36851567 -h1,5543:11689105,36851567:0,0,0 -k1,5543:32583029,36851567:20893924 -g1,5543:32583029,36851567 -) -(1,5544:6630773,37517745:25952256,410518,107478 -h1,5544:6630773,37517745:0,0,0 -g1,5544:7579210,37517745 -g1,5544:11056813,37517745 -h1,5544:11372959,37517745:0,0,0 -k1,5544:32583029,37517745:21210070 -g1,5544:32583029,37517745 -) -(1,5545:6630773,38183923:25952256,404226,101187 -h1,5545:6630773,38183923:0,0,0 -g1,5545:6946919,38183923 -g1,5545:7263065,38183923 -k1,5545:7263065,38183923:0 -h1,5545:10424522,38183923:0,0,0 -k1,5545:32583030,38183923:22158508 -g1,5545:32583030,38183923 -) -(1,5546:6630773,38850101:25952256,404226,101187 -h1,5546:6630773,38850101:0,0,0 -g1,5546:6946919,38850101 -g1,5546:7263065,38850101 -k1,5546:7263065,38850101:0 -h1,5546:10424522,38850101:0,0,0 -k1,5546:32583030,38850101:22158508 -g1,5546:32583030,38850101 -) -(1,5547:6630773,39516279:25952256,404226,76021 -h1,5547:6630773,39516279:0,0,0 -h1,5547:6946919,39516279:0,0,0 -k1,5547:32583029,39516279:25636110 -g1,5547:32583029,39516279 -) -(1,5552:6630773,40247993:25952256,404226,76021 -(1,5549:6630773,40247993:0,0,0 -g1,5549:6630773,40247993 -g1,5549:6630773,40247993 -g1,5549:6303093,40247993 -(1,5549:6303093,40247993:0,0,0 -) -g1,5549:6630773,40247993 -) -g1,5552:7579210,40247993 -g1,5552:8843793,40247993 -h1,5552:9792230,40247993:0,0,0 -k1,5552:32583030,40247993:22790800 -g1,5552:32583030,40247993 -) -(1,5552:6630773,40914171:25952256,404226,76021 -h1,5552:6630773,40914171:0,0,0 -g1,5552:7579210,40914171 -g1,5552:8843793,40914171 -h1,5552:9792230,40914171:0,0,0 -k1,5552:32583030,40914171:22790800 -g1,5552:32583030,40914171 -) -] -) -g1,5553:32583029,40990192 -g1,5553:6630773,40990192 -g1,5553:6630773,40990192 -g1,5553:32583029,40990192 -g1,5553:32583029,40990192 -) -h1,5553:6630773,41186800:0,0,0 -(1,5557:6630773,42552576:25952256,505283,134348 -h1,5556:6630773,42552576:983040,0,0 -k1,5556:9075574,42552576:265074 -k1,5556:12373000,42552576:265075 -k1,5556:14843361,42552576:265074 -k1,5556:15794598,42552576:265075 -k1,5556:16830375,42552576:265074 -k1,5556:20167778,42552576:265075 -k1,5556:21084280,42552576:265074 -(1,5556:21084280,42552576:0,459977,115847 -r1,5556:21794258,42552576:709978,575824,115847 -k1,5556:21084280,42552576:-709978 -) -(1,5556:21084280,42552576:709978,459977,115847 -k1,5556:21084280,42552576:3277 -h1,5556:21790981,42552576:0,411205,112570 -) -k1,5556:22233002,42552576:265074 -k1,5556:25291877,42552576:265075 -k1,5556:26172989,42552576:265074 -k1,5556:30465907,42552576:265075 -k1,5556:31835263,42552576:265074 -k1,5556:32583029,42552576:0 -) -(1,5557:6630773,43394064:25952256,505283,134348 -k1,5556:9677799,43394064:253226 -k1,5556:12456782,43394064:253225 -k1,5556:13065868,43394064:253226 -(1,5556:13065868,43394064:0,452978,122846 -r1,5556:15534405,43394064:2468537,575824,122846 -k1,5556:13065868,43394064:-2468537 -) -(1,5556:13065868,43394064:2468537,452978,122846 -k1,5556:13065868,43394064:3277 -h1,5556:15531128,43394064:0,411205,112570 -) -k1,5556:15787631,43394064:253226 -k1,5556:18192403,43394064:253225 -k1,5556:21289892,43394064:253226 -k1,5556:22229279,43394064:253225 -k1,5556:23685746,43394064:253226 -k1,5556:26971323,43394064:253226 -k1,5556:27756045,43394064:253225 -k1,5556:29072265,43394064:253226 -k1,5556:32583029,43394064:0 -) -(1,5557:6630773,44235552:25952256,513147,134348 -g1,5556:8205603,44235552 -g1,5556:9423917,44235552 -g1,5556:10929279,44235552 -g1,5556:13667373,44235552 -g1,5556:14999064,44235552 -g1,5556:15946059,44235552 -g1,5556:17658514,44235552 -g1,5556:19049188,44235552 -g1,5556:19604277,44235552 -g1,5556:22373828,44235552 -g1,5556:24617780,44235552 -g1,5556:25282970,44235552 -g1,5556:27506606,44235552 -g1,5556:29148282,44235552 -k1,5557:32583029,44235552:2104366 -g1,5557:32583029,44235552 -) -v1,5559:6630773,45426018:0,393216,0 -] -(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 -) -] -h1,5573:4262630,4025873:0,0,0 +[1,5579:3078558,4812305:0,0,0 +(1,5579:3078558,49800853:0,16384,2228224 +g1,5579:29030814,49800853 +g1,5579:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5579:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5579:37855564,49800853:1179648,16384,0 +) +) +k1,5579:3078556,49800853:-34777008 +) +] +g1,5579:6630773,4812305 +g1,5579:6630773,4812305 +g1,5579:9175536,4812305 +g1,5579:9990803,4812305 +g1,5579:13137841,4812305 +g1,5579:14654344,4812305 +k1,5579:31786112,4812305:17131768 +) +) +] +[1,5579:6630773,45706769:25952256,40108032,0 +(1,5579:6630773,45706769:25952256,40108032,0 +(1,5579:6630773,45706769:0,0,0 +g1,5579:6630773,45706769 +) +[1,5579:6630773,45706769:25952256,40108032,0 +(1,5505:6630773,6254097:25952256,513147,134348 +k1,5504:8179398,6254097:271984 +k1,5504:11499461,6254097:271984 +k1,5504:12772762,6254097:271911 +k1,5504:14236192,6254097:271985 +k1,5504:15942686,6254097:271911 +k1,5504:17866833,6254097:271984 +k1,5504:18798109,6254097:271984 +k1,5504:19425953,6254097:271984 +k1,5504:21529013,6254097:271984 +k1,5504:23655666,6254097:271984 +k1,5504:24737021,6254097:271985 +k1,5504:26028090,6254097:271984 +k1,5504:28142946,6254097:271984 +k1,5504:31193657,6254097:271984 +k1,5504:32227169,6254097:271984 +k1,5504:32583029,6254097:0 +) +(1,5505:6630773,7095585:25952256,513147,134348 +k1,5504:8928209,7095585:227809 +k1,5504:12769673,7095585:227809 +k1,5504:14378327,7095585:227810 +k1,5504:18046121,7095585:227809 +k1,5504:19378212,7095585:227809 +k1,5504:20891837,7095585:227809 +k1,5504:21867412,7095585:227809 +k1,5504:22451081,7095585:227809 +k1,5504:25629322,7095585:227810 +k1,5504:26212991,7095585:227809 +(1,5504:26212991,7095585:0,452978,122846 +r1,5504:28681528,7095585:2468537,575824,122846 +k1,5504:26212991,7095585:-2468537 +) +(1,5504:26212991,7095585:2468537,452978,122846 +k1,5504:26212991,7095585:3277 +h1,5504:28678251,7095585:0,411205,112570 +) +k1,5504:28909337,7095585:227809 +k1,5504:31648486,7095585:227809 +k1,5504:32583029,7095585:0 +) +(1,5505:6630773,7937073:25952256,513147,134348 +k1,5504:9972033,7937073:234853 +k1,5504:13472545,7937073:234853 +k1,5504:15113801,7937073:234853 +k1,5504:16367738,7937073:234852 +k1,5504:17674760,7937073:234853 +k1,5504:18568905,7937073:234853 +k1,5504:19822843,7937073:234853 +k1,5504:22062442,7937073:234853 +k1,5504:23446141,7937073:234853 +k1,5504:24340286,7937073:234853 +k1,5504:26070014,7937073:234852 +k1,5504:26836364,7937073:234853 +k1,5504:28672917,7937073:234853 +k1,5504:30884991,7937073:234853 +k1,5504:32583029,7937073:0 +) +(1,5505:6630773,8778561:25952256,513147,134348 +k1,5504:9912220,8778561:233368 +k1,5504:12780790,8778561:233367 +k1,5504:14186597,8778561:233368 +k1,5504:16251041,8778561:233368 +k1,5504:19574432,8778561:233368 +k1,5504:22509848,8778561:233367 +k1,5504:23552586,8778561:233368 +k1,5504:26457201,8778561:233368 +k1,5504:29299557,8778561:233368 +k1,5504:30192216,8778561:233367 +k1,5504:32095441,8778561:233368 +k1,5504:32583029,8778561:0 +) +(1,5505:6630773,9620049:25952256,513147,134348 +k1,5504:9519701,9620049:150178 +k1,5504:10762364,9620049:150178 +k1,5504:12279623,9620049:150178 +k1,5504:13377453,9620049:150179 +k1,5504:15022507,9620049:150178 +k1,5504:15704182,9620049:150178 +k1,5504:17914812,9620049:150178 +k1,5504:20778836,9620049:150178 +k1,5504:22120459,9620049:150178 +k1,5504:25174538,9620049:150179 +k1,5504:27897004,9620049:150178 +k1,5504:28706474,9620049:150178 +k1,5504:31015408,9620049:150178 +k1,5504:32583029,9620049:0 +) +(1,5505:6630773,10461537:25952256,505283,134348 +g1,5504:9501249,10461537 +g1,5504:13217140,10461537 +g1,5504:16353693,10461537 +g1,5504:17168960,10461537 +g1,5504:18755586,10461537 +g1,5504:19310675,10461537 +g1,5504:20898612,10461537 +k1,5505:32583029,10461537:9679671 +g1,5505:32583029,10461537 +) +(1,5507:6630773,11303025:25952256,513147,126483 +h1,5506:6630773,11303025:983040,0,0 +k1,5506:8245782,11303025:217126 +k1,5506:9563931,11303025:217144 +k1,5506:10953514,11303025:217144 +k1,5506:12887046,11303025:217144 +k1,5506:13763482,11303025:217144 +k1,5506:14538993,11303025:217144 +k1,5506:18446468,11303025:217143 +k1,5506:23437910,11303025:217144 +k1,5506:24846499,11303025:217144 +k1,5506:28574407,11303025:217144 +k1,5506:29745100,11303025:217144 +k1,5506:31094706,11303025:217144 +k1,5506:32583029,11303025:0 +) +(1,5507:6630773,12144513:25952256,505283,102891 +k1,5506:8284751,12144513:260027 +k1,5506:9563862,12144513:260026 +k1,5506:14598187,12144513:260027 +k1,5506:16188594,12144513:260026 +k1,5506:18334092,12144513:260027 +k1,5506:19125615,12144513:260026 +k1,5506:21587652,12144513:260027 +k1,5506:22499106,12144513:260026 +k1,5506:24307749,12144513:260027 +k1,5506:25099272,12144513:260026 +k1,5506:28143268,12144513:260027 +k1,5506:29019332,12144513:260026 +k1,5506:30881059,12144513:260027 +k1,5506:32583029,12144513:0 +) +(1,5507:6630773,12986001:25952256,505283,134348 +k1,5506:9854926,12986001:147893 +k1,5506:14355064,12986001:147892 +k1,5506:17849225,12986001:147893 +k1,5506:18950667,12986001:147893 +k1,5506:20586882,12986001:147892 +k1,5506:22128726,12986001:147893 +k1,5506:23289150,12986001:147893 +k1,5506:26428761,12986001:147892 +k1,5506:31252648,12986001:147893 +k1,5506:32583029,12986001:0 +) +(1,5507:6630773,13827489:25952256,513147,126483 +k1,5506:7387246,13827489:198106 +k1,5506:8776797,13827489:198106 +k1,5506:10775177,13827489:198106 +k1,5506:14489945,13827489:198106 +k1,5506:16458178,13827489:198106 +k1,5506:18269780,13827489:198106 +k1,5506:19336237,13827489:198105 +k1,5506:20666805,13827489:198106 +k1,5506:21889894,13827489:198106 +k1,5506:25079719,13827489:198106 +k1,5506:27177058,13827489:198106 +k1,5506:28026592,13827489:198106 +k1,5506:29421385,13827489:198106 +k1,5506:30711976,13827489:198106 +k1,5507:32583029,13827489:0 +k1,5507:32583029,13827489:0 +) +(1,5508:6630773,15455409:25952256,505283,115847 +(1,5508:6630773,15455409:2809528,485622,11795 +g1,5508:6630773,15455409 +g1,5508:9440301,15455409 +) +g1,5508:14690390,15455409 +(1,5508:14690390,15455409:0,459977,115847 +r1,5508:15400368,15455409:709978,575824,115847 +k1,5508:14690390,15455409:-709978 +) +(1,5508:14690390,15455409:709978,459977,115847 +k1,5508:14690390,15455409:3277 +h1,5508:15397091,15455409:0,411205,112570 +) +g1,5508:15778510,15455409 +(1,5508:15778510,15455409:0,452978,115847 +r1,5508:17191911,15455409:1413401,568825,115847 +k1,5508:15778510,15455409:-1413401 +) +(1,5508:15778510,15455409:1413401,452978,115847 +k1,5508:15778510,15455409:3277 +h1,5508:17188634,15455409:0,411205,112570 +) +g1,5508:17396383,15455409 +g1,5508:18821135,15455409 +(1,5508:18821135,15455409:0,452978,115847 +r1,5508:20937960,15455409:2116825,568825,115847 +k1,5508:18821135,15455409:-2116825 +) +(1,5508:18821135,15455409:2116825,452978,115847 +k1,5508:18821135,15455409:3277 +h1,5508:20934683,15455409:0,411205,112570 +) +k1,5508:32583029,15455409:11645069 +g1,5508:32583029,15455409 +) +(1,5512:6630773,16690113:25952256,505283,134348 +k1,5511:8036354,16690113:208894 +(1,5511:8036354,16690113:0,459977,115847 +r1,5511:8746332,16690113:709978,575824,115847 +k1,5511:8036354,16690113:-709978 +) +(1,5511:8036354,16690113:709978,459977,115847 +k1,5511:8036354,16690113:3277 +h1,5511:8743055,16690113:0,411205,112570 +) +k1,5511:8955227,16690113:208895 +k1,5511:12187952,16690113:208894 +k1,5511:15572066,16690113:208895 +k1,5511:19142957,16690113:208894 +k1,5511:20161222,16690113:208895 +k1,5511:20725976,16690113:208894 +(1,5511:20725976,16690113:0,452978,122846 +r1,5511:23194513,16690113:2468537,575824,122846 +k1,5511:20725976,16690113:-2468537 +) +(1,5511:20725976,16690113:2468537,452978,122846 +k1,5511:20725976,16690113:3277 +h1,5511:23191236,16690113:0,411205,112570 +) +k1,5511:23403407,16690113:208894 +k1,5511:25466316,16690113:208895 +k1,5511:28265848,16690113:208894 +k1,5511:29493828,16690113:208895 +k1,5511:31086842,16690113:208894 +k1,5511:32583029,16690113:0 +) +(1,5512:6630773,17531601:25952256,513147,126483 +g1,5511:10016362,17531601 +g1,5511:10747088,17531601 +g1,5511:13779438,17531601 +g1,5511:14659586,17531601 +(1,5511:14659586,17531601:0,414482,115847 +r1,5511:16072987,17531601:1413401,530329,115847 +k1,5511:14659586,17531601:-1413401 +) +(1,5511:14659586,17531601:1413401,414482,115847 +k1,5511:14659586,17531601:3277 +h1,5511:16069710,17531601:0,411205,112570 +) +g1,5511:16479310,17531601 +g1,5511:17361424,17531601 +g1,5511:20094275,17531601 +g1,5511:20974423,17531601 +(1,5511:20974423,17531601:0,414482,115847 +r1,5511:22739536,17531601:1765113,530329,115847 +k1,5511:20974423,17531601:-1765113 +) +(1,5511:20974423,17531601:1765113,414482,115847 +k1,5511:20974423,17531601:3277 +h1,5511:22736259,17531601:0,411205,112570 +) +k1,5512:32583029,17531601:9462729 +g1,5512:32583029,17531601 +) +v1,5514:6630773,18722067:0,393216,0 +(1,5522:6630773,20409890:25952256,2081039,196608 +g1,5522:6630773,20409890 +g1,5522:6630773,20409890 +g1,5522:6434165,20409890 +(1,5522:6434165,20409890:0,2081039,196608 +r1,5522:32779637,20409890:26345472,2277647,196608 +k1,5522:6434165,20409890:-26345472 +) +(1,5522:6434165,20409890:26345472,2081039,196608 +[1,5522:6630773,20409890:25952256,1884431,0 +(1,5516:6630773,18935977:25952256,410518,107478 +(1,5515:6630773,18935977:0,0,0 +g1,5515:6630773,18935977 +g1,5515:6630773,18935977 +g1,5515:6303093,18935977 +(1,5515:6303093,18935977:0,0,0 +) +g1,5515:6630773,18935977 +) +g1,5516:8211502,18935977 +g1,5516:9159940,18935977 +h1,5516:10424523,18935977:0,0,0 +k1,5516:32583029,18935977:22158506 +g1,5516:32583029,18935977 +) +(1,5517:6630773,19602155:25952256,410518,107478 +h1,5517:6630773,19602155:0,0,0 +g1,5517:7579210,19602155 +g1,5517:9792230,19602155 +k1,5517:9792230,19602155:0 +h1,5517:14534415,19602155:0,0,0 +k1,5517:32583029,19602155:18048614 +g1,5517:32583029,19602155 +) +(1,5521:6630773,20333869:25952256,404226,76021 +(1,5519:6630773,20333869:0,0,0 +g1,5519:6630773,20333869 +g1,5519:6630773,20333869 +g1,5519:6303093,20333869 +(1,5519:6303093,20333869:0,0,0 +) +g1,5519:6630773,20333869 +) +g1,5521:7579210,20333869 +g1,5521:8843793,20333869 +h1,5521:11372958,20333869:0,0,0 +k1,5521:32583030,20333869:21210072 +g1,5521:32583030,20333869 +) +] +) +g1,5522:32583029,20409890 +g1,5522:6630773,20409890 +g1,5522:6630773,20409890 +g1,5522:32583029,20409890 +g1,5522:32583029,20409890 +) +h1,5522:6630773,20606498:0,0,0 +v1,5526:6630773,22496562:0,393216,0 +(1,5542:6630773,30947205:25952256,8843859,616038 +g1,5542:6630773,30947205 +(1,5542:6630773,30947205:25952256,8843859,616038 +(1,5542:6630773,31563243:25952256,9459897,0 +[1,5542:6630773,31563243:25952256,9459897,0 +(1,5542:6630773,31537029:25952256,9407469,0 +r1,5542:6656987,31537029:26214,9407469,0 +[1,5542:6656987,31537029:25899828,9407469,0 +(1,5542:6656987,30947205:25899828,8227821,0 +[1,5542:7246811,30947205:24720180,8227821,0 +(1,5527:7246811,23806758:24720180,1087374,134348 +k1,5526:8654910,23806758:198396 +k1,5526:10150918,23806758:198395 +k1,5526:11743265,23806758:198396 +k1,5526:12960746,23806758:198396 +k1,5526:14655328,23806758:198395 +k1,5526:16709048,23806758:198396 +k1,5526:17668972,23806758:198396 +k1,5526:20750952,23806758:198396 +k1,5526:21968432,23806758:198395 +k1,5526:23847171,23806758:198396 +k1,5526:26820361,23806758:198396 +k1,5526:27670184,23806758:198395 +k1,5526:30379920,23806758:198396 +(1,5526:30379920,23806758:0,459977,122846 +r1,5542:31793321,23806758:1413401,582823,122846 +k1,5526:30379920,23806758:-1413401 +) +(1,5526:30379920,23806758:1413401,459977,122846 +k1,5526:30379920,23806758:3277 +h1,5526:31790044,23806758:0,411205,112570 +) +k1,5527:31966991,23806758:0 +) +(1,5527:7246811,24648246:24720180,505283,122846 +(1,5526:7246811,24648246:0,414482,115847 +r1,5542:9011924,24648246:1765113,530329,115847 +k1,5526:7246811,24648246:-1765113 +) +(1,5526:7246811,24648246:1765113,414482,115847 +k1,5526:7246811,24648246:3277 +h1,5526:9008647,24648246:0,411205,112570 +) +g1,5526:9384823,24648246 +(1,5526:9384823,24648246:0,414482,115847 +r1,5542:10094801,24648246:709978,530329,115847 +k1,5526:9384823,24648246:-709978 +) +(1,5526:9384823,24648246:709978,414482,115847 +k1,5526:9384823,24648246:3277 +h1,5526:10091524,24648246:0,411205,112570 +) +g1,5526:10467700,24648246 +g1,5526:11858374,24648246 +(1,5526:11858374,24648246:0,452978,122846 +r1,5542:15382046,24648246:3523672,575824,122846 +k1,5526:11858374,24648246:-3523672 +) +(1,5526:11858374,24648246:3523672,452978,122846 +k1,5526:11858374,24648246:3277 +h1,5526:15378769,24648246:0,411205,112570 +) +k1,5527:31966991,24648246:16411275 +g1,5527:31966991,24648246 +) +(1,5529:7246811,25489734:24720180,505283,126483 +h1,5528:7246811,25489734:983040,0,0 +g1,5528:9056915,25489734 +g1,5528:10275229,25489734 +g1,5528:13135875,25489734 +g1,5528:15190428,25489734 +g1,5528:16258009,25489734 +g1,5528:17549723,25489734 +g1,5528:20260292,25489734 +(1,5528:20260292,25489734:0,459977,122846 +r1,5542:21673693,25489734:1413401,582823,122846 +k1,5528:20260292,25489734:-1413401 +) +(1,5528:20260292,25489734:1413401,459977,122846 +k1,5528:20260292,25489734:3277 +h1,5528:21670416,25489734:0,411205,112570 +) +g1,5528:21872922,25489734 +g1,5528:22758313,25489734 +g1,5528:23976627,25489734 +k1,5529:31966991,25489734:4926556 +g1,5529:31966991,25489734 +) +(1,5531:7246811,26331222:24720180,513147,134348 +h1,5530:7246811,26331222:983040,0,0 +k1,5530:11066514,26331222:287968 +k1,5530:11970520,26331222:287968 +k1,5530:13277573,26331222:287968 +k1,5530:13980295,26331222:287879 +k1,5530:17110559,26331222:287968 +k1,5530:20161526,26331222:287969 +k1,5530:21652735,26331222:287968 +k1,5530:24973054,26331222:287968 +k1,5530:26828643,26331222:287968 +k1,5530:28854626,26331222:287968 +k1,5530:29498454,26331222:287968 +(1,5530:29498454,26331222:0,452978,122846 +r1,5542:31966991,26331222:2468537,575824,122846 +k1,5530:29498454,26331222:-2468537 +) +(1,5530:29498454,26331222:2468537,452978,122846 +k1,5530:29498454,26331222:3277 +h1,5530:31963714,26331222:0,411205,112570 +) +k1,5530:31966991,26331222:0 +) +(1,5531:7246811,27172710:24720180,505283,126483 +k1,5530:10411870,27172710:233634 +k1,5530:12979240,27172710:233633 +k1,5530:14509832,27172710:233634 +(1,5530:14509832,27172710:0,459977,115847 +r1,5542:17681793,27172710:3171961,575824,115847 +k1,5530:14509832,27172710:-3171961 +) +(1,5530:14509832,27172710:3171961,459977,115847 +g1,5530:15568245,27172710 +h1,5530:17678516,27172710:0,411205,112570 +) +k1,5530:17915427,27172710:233634 +k1,5530:18765098,27172710:233633 +k1,5530:20017817,27172710:233634 +k1,5530:26678566,27172710:233633 +k1,5530:30098560,27172710:233634 +k1,5530:31966991,27172710:0 +) +(1,5531:7246811,28014198:24720180,513147,126483 +g1,5530:7977537,28014198 +g1,5530:8836058,28014198 +g1,5530:9844657,28014198 +g1,5530:12795087,28014198 +k1,5531:31966991,28014198:17905748 +g1,5531:31966991,28014198 +) +v1,5533:7246811,29204664:0,393216,0 +(1,5540:7246811,30226309:24720180,1414861,196608 +g1,5540:7246811,30226309 +g1,5540:7246811,30226309 +g1,5540:7050203,30226309 +(1,5540:7050203,30226309:0,1414861,196608 +r1,5542:32163599,30226309:25113396,1611469,196608 +k1,5540:7050203,30226309:-25113396 +) +(1,5540:7050203,30226309:25113396,1414861,196608 +[1,5540:7246811,30226309:24720180,1218253,0 +(1,5535:7246811,29418574:24720180,410518,101187 +(1,5534:7246811,29418574:0,0,0 +g1,5534:7246811,29418574 +g1,5534:7246811,29418574 +g1,5534:6919131,29418574 +(1,5534:6919131,29418574:0,0,0 +) +g1,5534:7246811,29418574 +) +k1,5535:7246811,29418574:0 +g1,5535:8195248,29418574 +g1,5535:10408269,29418574 +k1,5535:10408269,29418574:0 +h1,5535:15150454,29418574:0,0,0 +k1,5535:31966990,29418574:16816536 +g1,5535:31966990,29418574 +) +(1,5539:7246811,30150288:24720180,404226,76021 +(1,5537:7246811,30150288:0,0,0 +g1,5537:7246811,30150288 +g1,5537:7246811,30150288 +g1,5537:6919131,30150288 +(1,5537:6919131,30150288:0,0,0 +) +g1,5537:7246811,30150288 +) +g1,5539:8195248,30150288 +g1,5539:9459831,30150288 +h1,5539:11988996,30150288:0,0,0 +k1,5539:31966992,30150288:19977996 +g1,5539:31966992,30150288 +) +] +) +g1,5540:31966991,30226309 +g1,5540:7246811,30226309 +g1,5540:7246811,30226309 +g1,5540:31966991,30226309 +g1,5540:31966991,30226309 +) +h1,5540:7246811,30422917:0,0,0 +] +) +] +r1,5542:32583029,31537029:26214,9407469,0 +) +] +) +) +g1,5542:32583029,30947205 +) +h1,5542:6630773,31563243:0,0,0 +(1,5545:6630773,32929019:25952256,513147,126483 +h1,5544:6630773,32929019:983040,0,0 +k1,5544:11540134,32929019:211085 +k1,5544:14826825,32929019:211086 +k1,5544:15569407,32929019:211085 +k1,5544:17563727,32929019:211085 +k1,5544:19425009,32929019:211085 +k1,5544:21613316,32929019:211086 +k1,5544:23266848,32929019:211085 +k1,5544:25026549,32929019:211085 +k1,5544:27006451,32929019:211085 +k1,5544:27965303,32929019:211086 +k1,5544:31015408,32929019:211085 +k1,5544:32583029,32929019:0 +) +(1,5545:6630773,33770507:25952256,505283,134348 +k1,5544:7849284,33770507:199426 +k1,5544:10803188,33770507:199426 +k1,5544:13837701,33770507:199426 +k1,5544:16566817,33770507:199426 +k1,5544:17785328,33770507:199426 +k1,5544:21171114,33770507:199426 +k1,5544:23378563,33770507:199426 +k1,5544:26653594,33770507:199426 +k1,5544:27384517,33770507:199426 +k1,5544:29321958,33770507:199426 +k1,5544:32583029,33770507:0 +) +(1,5545:6630773,34611995:25952256,513147,134348 +k1,5544:7954199,34611995:219144 +k1,5544:8921109,34611995:219144 +k1,5544:9496113,34611995:219144 +k1,5544:13129026,34611995:219143 +k1,5544:16534530,34611995:219144 +k1,5544:17412966,34611995:219144 +k1,5544:19794798,34611995:219144 +k1,5544:21145749,34611995:219144 +k1,5544:23378159,34611995:219144 +k1,5544:24280187,34611995:219143 +k1,5544:28178522,34611995:219144 +k1,5544:28885234,34611995:219124 +k1,5544:30458352,34611995:219144 +k1,5544:32583029,34611995:0 +) +(1,5545:6630773,35453483:25952256,513147,126483 +g1,5544:9491419,35453483 +k1,5545:32583028,35453483:20602552 +g1,5545:32583028,35453483 +) +v1,5547:6630773,36643949:0,393216,0 +(1,5559:6630773,40990192:25952256,4739459,196608 +g1,5559:6630773,40990192 +g1,5559:6630773,40990192 +g1,5559:6434165,40990192 +(1,5559:6434165,40990192:0,4739459,196608 +r1,5559:32779637,40990192:26345472,4936067,196608 +k1,5559:6434165,40990192:-26345472 +) +(1,5559:6434165,40990192:26345472,4739459,196608 +[1,5559:6630773,40990192:25952256,4542851,0 +(1,5549:6630773,36851567:25952256,404226,107478 +(1,5548:6630773,36851567:0,0,0 +g1,5548:6630773,36851567 +g1,5548:6630773,36851567 +g1,5548:6303093,36851567 +(1,5548:6303093,36851567:0,0,0 +) +g1,5548:6630773,36851567 +) +g1,5549:9476084,36851567 +g1,5549:10424522,36851567 +h1,5549:11689105,36851567:0,0,0 +k1,5549:32583029,36851567:20893924 +g1,5549:32583029,36851567 +) +(1,5550:6630773,37517745:25952256,410518,107478 +h1,5550:6630773,37517745:0,0,0 +g1,5550:7579210,37517745 +g1,5550:11056813,37517745 +h1,5550:11372959,37517745:0,0,0 +k1,5550:32583029,37517745:21210070 +g1,5550:32583029,37517745 +) +(1,5551:6630773,38183923:25952256,404226,101187 +h1,5551:6630773,38183923:0,0,0 +g1,5551:6946919,38183923 +g1,5551:7263065,38183923 +k1,5551:7263065,38183923:0 +h1,5551:10424522,38183923:0,0,0 +k1,5551:32583030,38183923:22158508 +g1,5551:32583030,38183923 +) +(1,5552:6630773,38850101:25952256,404226,101187 +h1,5552:6630773,38850101:0,0,0 +g1,5552:6946919,38850101 +g1,5552:7263065,38850101 +k1,5552:7263065,38850101:0 +h1,5552:10424522,38850101:0,0,0 +k1,5552:32583030,38850101:22158508 +g1,5552:32583030,38850101 +) +(1,5553:6630773,39516279:25952256,404226,76021 +h1,5553:6630773,39516279:0,0,0 +h1,5553:6946919,39516279:0,0,0 +k1,5553:32583029,39516279:25636110 +g1,5553:32583029,39516279 +) +(1,5558:6630773,40247993:25952256,404226,76021 +(1,5555:6630773,40247993:0,0,0 +g1,5555:6630773,40247993 +g1,5555:6630773,40247993 +g1,5555:6303093,40247993 +(1,5555:6303093,40247993:0,0,0 +) +g1,5555:6630773,40247993 +) +g1,5558:7579210,40247993 +g1,5558:8843793,40247993 +h1,5558:9792230,40247993:0,0,0 +k1,5558:32583030,40247993:22790800 +g1,5558:32583030,40247993 +) +(1,5558:6630773,40914171:25952256,404226,76021 +h1,5558:6630773,40914171:0,0,0 +g1,5558:7579210,40914171 +g1,5558:8843793,40914171 +h1,5558:9792230,40914171:0,0,0 +k1,5558:32583030,40914171:22790800 +g1,5558:32583030,40914171 +) +] +) +g1,5559:32583029,40990192 +g1,5559:6630773,40990192 +g1,5559:6630773,40990192 +g1,5559:32583029,40990192 +g1,5559:32583029,40990192 +) +h1,5559:6630773,41186800:0,0,0 +(1,5563:6630773,42552576:25952256,505283,134348 +h1,5562:6630773,42552576:983040,0,0 +k1,5562:9075574,42552576:265074 +k1,5562:12373000,42552576:265075 +k1,5562:14843361,42552576:265074 +k1,5562:15794598,42552576:265075 +k1,5562:16830375,42552576:265074 +k1,5562:20167778,42552576:265075 +k1,5562:21084280,42552576:265074 +(1,5562:21084280,42552576:0,459977,115847 +r1,5562:21794258,42552576:709978,575824,115847 +k1,5562:21084280,42552576:-709978 +) +(1,5562:21084280,42552576:709978,459977,115847 +k1,5562:21084280,42552576:3277 +h1,5562:21790981,42552576:0,411205,112570 +) +k1,5562:22233002,42552576:265074 +k1,5562:25291877,42552576:265075 +k1,5562:26172989,42552576:265074 +k1,5562:30465907,42552576:265075 +k1,5562:31835263,42552576:265074 +k1,5562:32583029,42552576:0 +) +(1,5563:6630773,43394064:25952256,505283,134348 +k1,5562:9677799,43394064:253226 +k1,5562:12456782,43394064:253225 +k1,5562:13065868,43394064:253226 +(1,5562:13065868,43394064:0,452978,122846 +r1,5562:15534405,43394064:2468537,575824,122846 +k1,5562:13065868,43394064:-2468537 +) +(1,5562:13065868,43394064:2468537,452978,122846 +k1,5562:13065868,43394064:3277 +h1,5562:15531128,43394064:0,411205,112570 +) +k1,5562:15787631,43394064:253226 +k1,5562:18192403,43394064:253225 +k1,5562:21289892,43394064:253226 +k1,5562:22229279,43394064:253225 +k1,5562:23685746,43394064:253226 +k1,5562:26971323,43394064:253226 +k1,5562:27756045,43394064:253225 +k1,5562:29072265,43394064:253226 +k1,5562:32583029,43394064:0 +) +(1,5563:6630773,44235552:25952256,513147,134348 +g1,5562:8205603,44235552 +g1,5562:9423917,44235552 +g1,5562:10929279,44235552 +g1,5562:13667373,44235552 +g1,5562:14999064,44235552 +g1,5562:15946059,44235552 +g1,5562:17658514,44235552 +g1,5562:19049188,44235552 +g1,5562:19604277,44235552 +g1,5562:22373828,44235552 +g1,5562:24617780,44235552 +g1,5562:25282970,44235552 +g1,5562:27506606,44235552 +g1,5562:29148282,44235552 +k1,5563:32583029,44235552:2104366 +g1,5563:32583029,44235552 +) +v1,5565:6630773,45426018:0,393216,0 +] +(1,5579:32583029,45706769:0,0,0 +g1,5579:32583029,45706769 +) +) +] +(1,5579:6630773,47279633:25952256,0,0 +h1,5579:6630773,47279633:25952256,0,0 +) +] +h1,5579:4262630,4025873:0,0,0 ] !24424 }106 -Input:719:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:720:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:721:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:722:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:723:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:724:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:725:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:726:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:727:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!777 +Input:715:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:716:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:717:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:718:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:719:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:720:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:721:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:722:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:723:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!831 {107 -[1,5636:4262630,47279633:28320399,43253760,0 -(1,5636:4262630,4025873:0,0,0 -[1,5636:-473657,4025873:25952256,0,0 -(1,5636:-473657,-710414:25952256,0,0 -h1,5636:-473657,-710414:0,0,0 -(1,5636:-473657,-710414:0,0,0 -(1,5636:-473657,-710414:0,0,0 -g1,5636:-473657,-710414 -(1,5636:-473657,-710414:65781,0,65781 -g1,5636:-407876,-710414 -[1,5636:-407876,-644633:0,0,0 +[1,5642:4262630,47279633:28320399,43253760,0 +(1,5642:4262630,4025873:0,0,0 +[1,5642:-473657,4025873:25952256,0,0 +(1,5642:-473657,-710414:25952256,0,0 +h1,5642:-473657,-710414:0,0,0 +(1,5642:-473657,-710414:0,0,0 +(1,5642:-473657,-710414:0,0,0 +g1,5642:-473657,-710414 +(1,5642:-473657,-710414:65781,0,65781 +g1,5642:-407876,-710414 +[1,5642:-407876,-644633:0,0,0 ] ) -k1,5636:-473657,-710414:-65781 +k1,5642:-473657,-710414:-65781 ) ) -k1,5636:25478599,-710414:25952256 -g1,5636:25478599,-710414 +k1,5642:25478599,-710414:25952256 +g1,5642:25478599,-710414 ) ] ) -[1,5636:6630773,47279633:25952256,43253760,0 -[1,5636:6630773,4812305:25952256,786432,0 -(1,5636:6630773,4812305:25952256,505283,134348 -(1,5636:6630773,4812305:25952256,505283,134348 -g1,5636:3078558,4812305 -[1,5636:3078558,4812305:0,0,0 -(1,5636:3078558,2439708:0,1703936,0 -k1,5636:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5636:2537886,2439708:1179648,16384,0 +[1,5642:6630773,47279633:25952256,43253760,0 +[1,5642:6630773,4812305:25952256,786432,0 +(1,5642:6630773,4812305:25952256,505283,134348 +(1,5642:6630773,4812305:25952256,505283,134348 +g1,5642:3078558,4812305 +[1,5642:3078558,4812305:0,0,0 +(1,5642:3078558,2439708:0,1703936,0 +k1,5642:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5642:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5636:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5642:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5636:3078558,4812305:0,0,0 -(1,5636:3078558,2439708:0,1703936,0 -g1,5636:29030814,2439708 -g1,5636:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5636:36151628,1915420:16384,1179648,0 +[1,5642:3078558,4812305:0,0,0 +(1,5642:3078558,2439708:0,1703936,0 +g1,5642:29030814,2439708 +g1,5642:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5642:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5636:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5642:37855564,2439708:1179648,16384,0 ) ) -k1,5636:3078556,2439708:-34777008 +k1,5642:3078556,2439708:-34777008 ) ] -[1,5636:3078558,4812305:0,0,0 -(1,5636:3078558,49800853:0,16384,2228224 -k1,5636:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5636:2537886,49800853:1179648,16384,0 +[1,5642:3078558,4812305:0,0,0 +(1,5642:3078558,49800853:0,16384,2228224 +k1,5642:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5642:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5636:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5642:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5636:3078558,4812305:0,0,0 -(1,5636:3078558,49800853:0,16384,2228224 -g1,5636:29030814,49800853 -g1,5636:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5636:36151628,51504789:16384,1179648,0 +[1,5642:3078558,4812305:0,0,0 +(1,5642:3078558,49800853:0,16384,2228224 +g1,5642:29030814,49800853 +g1,5642:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5642:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5636:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5642:37855564,49800853:1179648,16384,0 ) ) -k1,5636:3078556,49800853:-34777008 +k1,5642:3078556,49800853:-34777008 ) ] -g1,5636:6630773,4812305 -k1,5636:18752969,4812305:11325278 -g1,5636:20139710,4812305 -g1,5636:20788516,4812305 -g1,5636:24102671,4812305 -g1,5636:28605649,4812305 -g1,5636:30015328,4812305 -) -) -] -[1,5636:6630773,45706769:25952256,40108032,0 -(1,5636:6630773,45706769:25952256,40108032,0 -(1,5636:6630773,45706769:0,0,0 -g1,5636:6630773,45706769 +g1,5642:6630773,4812305 +k1,5642:18771974,4812305:11344283 +g1,5642:20158715,4812305 +g1,5642:20807521,4812305 +g1,5642:24121676,4812305 +g1,5642:28605649,4812305 +g1,5642:30015328,4812305 +) +) +] +[1,5642:6630773,45706769:25952256,40108032,0 +(1,5642:6630773,45706769:25952256,40108032,0 +(1,5642:6630773,45706769:0,0,0 +g1,5642:6630773,45706769 ) -[1,5636:6630773,45706769:25952256,40108032,0 -v1,5573:6630773,6254097:0,393216,0 -(1,5573:6630773,9998317:25952256,4137436,196608 -g1,5573:6630773,9998317 -g1,5573:6630773,9998317 -g1,5573:6434165,9998317 -(1,5573:6434165,9998317:0,4137436,196608 -r1,5573:32779637,9998317:26345472,4334044,196608 -k1,5573:6434165,9998317:-26345472 +[1,5642:6630773,45706769:25952256,40108032,0 +v1,5579:6630773,6254097:0,393216,0 +(1,5579:6630773,9998317:25952256,4137436,196608 +g1,5579:6630773,9998317 +g1,5579:6630773,9998317 +g1,5579:6434165,9998317 +(1,5579:6434165,9998317:0,4137436,196608 +r1,5579:32779637,9998317:26345472,4334044,196608 +k1,5579:6434165,9998317:-26345472 ) -(1,5573:6434165,9998317:26345472,4137436,196608 -[1,5573:6630773,9998317:25952256,3940828,0 -(1,5561:6630773,6445986:25952256,388497,9436 -(1,5560:6630773,6445986:0,0,0 -g1,5560:6630773,6445986 -g1,5560:6630773,6445986 -g1,5560:6303093,6445986 -(1,5560:6303093,6445986:0,0,0 -) -g1,5560:6630773,6445986 -) -g1,5561:7263065,6445986 -g1,5561:8211503,6445986 -h1,5561:9476086,6445986:0,0,0 -k1,5561:32583030,6445986:23106944 -g1,5561:32583030,6445986 -) -(1,5562:6630773,7112164:25952256,410518,107478 -h1,5562:6630773,7112164:0,0,0 -g1,5562:7579210,7112164 -g1,5562:8527647,7112164 -g1,5562:9159939,7112164 -g1,5562:10740668,7112164 -g1,5562:14218272,7112164 -g1,5562:15166709,7112164 -g1,5562:18644312,7112164 -g1,5562:20225041,7112164 -g1,5562:23702645,7112164 -g1,5562:24651082,7112164 -g1,5562:25915665,7112164 -h1,5562:29077122,7112164:0,0,0 -k1,5562:32583029,7112164:3505907 -g1,5562:32583029,7112164 -) -(1,5566:6630773,7843878:25952256,404226,107478 -(1,5564:6630773,7843878:0,0,0 -g1,5564:6630773,7843878 -g1,5564:6630773,7843878 -g1,5564:6303093,7843878 -(1,5564:6303093,7843878:0,0,0 -) -g1,5564:6630773,7843878 -) -g1,5566:7579210,7843878 -g1,5566:8843793,7843878 -g1,5566:10424523,7843878 -g1,5566:11372960,7843878 -g1,5566:12637543,7843878 -h1,5566:15482854,7843878:0,0,0 -k1,5566:32583030,7843878:17100176 -g1,5566:32583030,7843878 -) -(1,5568:6630773,9165416:25952256,404226,101187 -(1,5567:6630773,9165416:0,0,0 -g1,5567:6630773,9165416 -g1,5567:6630773,9165416 -g1,5567:6303093,9165416 -(1,5567:6303093,9165416:0,0,0 -) -g1,5567:6630773,9165416 -) -k1,5568:6630773,9165416:0 -g1,5568:10424521,9165416 -g1,5568:11372958,9165416 -g1,5568:13585978,9165416 -h1,5568:16431289,9165416:0,0,0 -k1,5568:32583029,9165416:16151740 -g1,5568:32583029,9165416 -) -(1,5572:6630773,9897130:25952256,404226,101187 -(1,5570:6630773,9897130:0,0,0 -g1,5570:6630773,9897130 -g1,5570:6630773,9897130 -g1,5570:6303093,9897130 -(1,5570:6303093,9897130:0,0,0 -) -g1,5570:6630773,9897130 -) -g1,5572:7579210,9897130 -g1,5572:8843793,9897130 -g1,5572:10740667,9897130 -g1,5572:11689104,9897130 -g1,5572:13902124,9897130 -h1,5572:16431289,9897130:0,0,0 -k1,5572:32583029,9897130:16151740 -g1,5572:32583029,9897130 -) -] -) -g1,5573:32583029,9998317 -g1,5573:6630773,9998317 -g1,5573:6630773,9998317 -g1,5573:32583029,9998317 -g1,5573:32583029,9998317 -) -h1,5573:6630773,10194925:0,0,0 -(1,5577:6630773,11516560:25952256,513147,134348 -h1,5576:6630773,11516560:983040,0,0 -k1,5576:8696066,11516560:264364 -k1,5576:10064713,11516560:264365 -k1,5576:11076843,11516560:264364 -k1,5576:12781034,11516560:264365 -k1,5576:15074393,11516560:264364 -k1,5576:16357843,11516560:264365 -k1,5576:19808567,11516560:264364 -k1,5576:24009679,11516560:264364 -k1,5576:27249379,11516560:264365 -(1,5576:27249379,11516560:0,459977,115847 -r1,5576:27959357,11516560:709978,575824,115847 -k1,5576:27249379,11516560:-709978 -) -(1,5576:27249379,11516560:709978,459977,115847 -k1,5576:27249379,11516560:3277 -h1,5576:27956080,11516560:0,411205,112570 -) -k1,5576:28223721,11516560:264364 -k1,5576:29019583,11516560:264365 -k1,5576:32117068,11516560:264364 -k1,5576:32583029,11516560:0 -) -(1,5577:6630773,12358048:25952256,513147,134348 -k1,5576:7933172,12358048:283314 -k1,5576:11248838,12358048:283315 -k1,5576:13873098,12358048:283314 -(1,5576:13873098,12358048:0,414482,115847 -r1,5576:15286499,12358048:1413401,530329,115847 -k1,5576:13873098,12358048:-1413401 -) -(1,5576:13873098,12358048:1413401,414482,115847 -k1,5576:13873098,12358048:3277 -h1,5576:15283222,12358048:0,411205,112570 -) -k1,5576:15569813,12358048:283314 -k1,5576:17044572,12358048:283314 -k1,5576:18612393,12358048:283315 -k1,5576:21871042,12358048:283314 -(1,5576:21871042,12358048:0,452978,115847 -r1,5576:23284443,12358048:1413401,568825,115847 -k1,5576:21871042,12358048:-1413401 -) -(1,5576:21871042,12358048:1413401,452978,115847 -k1,5576:21871042,12358048:3277 -h1,5576:23281166,12358048:0,411205,112570 -) -k1,5576:23567757,12358048:283314 -k1,5576:24382568,12358048:283314 -k1,5576:27499004,12358048:283315 -k1,5576:28248279,12358048:283314 -k1,5576:29550678,12358048:283314 -k1,5576:32583029,12358048:0 -) -(1,5577:6630773,13199536:25952256,513147,126483 -k1,5576:9149166,13199536:177447 -(1,5576:9149166,13199536:0,414482,115847 -r1,5576:10914279,13199536:1765113,530329,115847 -k1,5576:9149166,13199536:-1765113 -) -(1,5576:9149166,13199536:1765113,414482,115847 -k1,5576:9149166,13199536:3277 -h1,5576:10911002,13199536:0,411205,112570 -) -k1,5576:11265397,13199536:177448 -k1,5576:14984410,13199536:177447 -k1,5576:16675083,13199536:177447 -k1,5576:17871615,13199536:177447 -k1,5576:22208633,13199536:177448 -k1,5576:25219201,13199536:177447 -(1,5576:25219201,13199536:0,459977,115847 -r1,5576:25929179,13199536:709978,575824,115847 -k1,5576:25219201,13199536:-709978 -) -(1,5576:25219201,13199536:709978,459977,115847 -k1,5576:25219201,13199536:3277 -h1,5576:25925902,13199536:0,411205,112570 -) -k1,5576:26106626,13199536:177447 -k1,5576:27475519,13199536:177448 -(1,5576:27475519,13199536:0,452978,115847 -r1,5576:28888920,13199536:1413401,568825,115847 -k1,5576:27475519,13199536:-1413401 -) -(1,5576:27475519,13199536:1413401,452978,115847 -k1,5576:27475519,13199536:3277 -h1,5576:28885643,13199536:0,411205,112570 -) -k1,5576:29066367,13199536:177447 -k1,5576:32583029,13199536:0 -) -(1,5577:6630773,14041024:25952256,513147,126483 -g1,5576:7821562,14041024 -g1,5576:10150056,14041024 -g1,5576:13356077,14041024 -g1,5576:18128408,14041024 -g1,5576:18986929,14041024 -g1,5576:20205243,14041024 -g1,5576:22084815,14041024 -g1,5576:25062771,14041024 -g1,5576:26023528,14041024 -g1,5576:27241842,14041024 -k1,5577:32583029,14041024:2135166 -g1,5577:32583029,14041024 -) -v1,5579:6630773,15362659:0,393216,0 -(1,5580:6630773,17630190:25952256,2660747,616038 -g1,5580:6630773,17630190 -(1,5580:6630773,17630190:25952256,2660747,616038 -(1,5580:6630773,18246228:25952256,3276785,0 -[1,5580:6630773,18246228:25952256,3276785,0 -(1,5580:6630773,18220014:25952256,3224357,0 -r1,5580:6656987,18220014:26214,3224357,0 -[1,5580:6656987,18220014:25899828,3224357,0 -(1,5580:6656987,17630190:25899828,2044709,0 -[1,5580:7246811,17630190:24720180,2044709,0 -(1,5580:7246811,16672855:24720180,1087374,134348 -k1,5579:8645013,16672855:188499 -k1,5579:10131124,16672855:188498 -k1,5579:11713574,16672855:188499 -k1,5579:12921158,16672855:188499 -k1,5579:14605843,16672855:188498 -k1,5579:15410380,16672855:188499 -k1,5579:16617964,16672855:188499 -k1,5579:18777131,16672855:188499 -k1,5579:20820953,16672855:188498 -k1,5579:21770980,16672855:188499 -k1,5579:24956440,16672855:188499 -k1,5579:27907281,16672855:188498 -k1,5579:30715909,16672855:188499 -k1,5580:31966991,16672855:0 -) -(1,5580:7246811,17514343:24720180,426639,115847 -g1,5579:8716128,17514343 -g1,5579:9566785,17514343 -(1,5579:9566785,17514343:0,414482,115847 -r1,5580:9925051,17514343:358266,530329,115847 -k1,5579:9566785,17514343:-358266 -) -(1,5579:9566785,17514343:358266,414482,115847 -k1,5579:9566785,17514343:3277 -h1,5579:9921774,17514343:0,411205,112570 -) -k1,5580:31966991,17514343:21868270 -g1,5580:31966991,17514343 -) -] -) -] -r1,5580:32583029,18220014:26214,3224357,0 -) -] -) -) -g1,5580:32583029,17630190 -) -h1,5580:6630773,18246228:0,0,0 -v1,5585:6630773,19567863:0,393216,0 -(1,5632:6630773,41742593:25952256,22567946,616038 -g1,5632:6630773,41742593 -(1,5632:6630773,41742593:25952256,22567946,616038 -(1,5632:6630773,42358631:25952256,23183984,0 -[1,5632:6630773,42358631:25952256,23183984,0 -(1,5632:6630773,42332417:25952256,23131556,0 -r1,5632:6656987,42332417:26214,23131556,0 -[1,5632:6656987,42332417:25899828,23131556,0 -(1,5632:6656987,41742593:25899828,21951908,0 -[1,5632:7246811,41742593:24720180,21951908,0 -(1,5586:7246811,20952570:24720180,1161885,196608 -(1,5585:7246811,20952570:0,1161885,196608 -r1,5632:8794447,20952570:1547636,1358493,196608 -k1,5585:7246811,20952570:-1547636 -) -(1,5585:7246811,20952570:1547636,1161885,196608 -) -g1,5585:8993676,20952570 -g1,5585:10090748,20952570 -g1,5585:11460450,20952570 -g1,5585:12858333,20952570 -g1,5585:16316667,20952570 -g1,5585:17534981,20952570 -g1,5585:19320181,20952570 -g1,5585:21341966,20952570 -g1,5585:25595252,20952570 -k1,5586:31966991,20952570:4545906 -g1,5586:31966991,20952570 -) -v1,5588:7246811,22143036:0,393216,0 -(1,5597:7246811,24506473:24720180,2756653,196608 -g1,5597:7246811,24506473 -g1,5597:7246811,24506473 -g1,5597:7050203,24506473 -(1,5597:7050203,24506473:0,2756653,196608 -r1,5632:32163599,24506473:25113396,2953261,196608 -k1,5597:7050203,24506473:-25113396 -) -(1,5597:7050203,24506473:25113396,2756653,196608 -[1,5597:7246811,24506473:24720180,2560045,0 -(1,5590:7246811,22334925:24720180,388497,0 -(1,5589:7246811,22334925:0,0,0 -g1,5589:7246811,22334925 -g1,5589:7246811,22334925 -g1,5589:6919131,22334925 -(1,5589:6919131,22334925:0,0,0 -) -g1,5589:7246811,22334925 -) -g1,5590:7879103,22334925 -k1,5590:7879103,22334925:0 -h1,5590:8195249,22334925:0,0,0 -k1,5590:31966991,22334925:23771742 -g1,5590:31966991,22334925 -) -(1,5591:7246811,23001103:24720180,388497,4718 -h1,5591:7246811,23001103:0,0,0 -g1,5591:7879103,23001103 -g1,5591:8827541,23001103 -h1,5591:9143687,23001103:0,0,0 -k1,5591:31966991,23001103:22823304 -g1,5591:31966991,23001103 -) -(1,5592:7246811,23667281:24720180,410518,107478 -h1,5592:7246811,23667281:0,0,0 -g1,5592:8195248,23667281 -g1,5592:9143685,23667281 -g1,5592:9775977,23667281 -g1,5592:11356706,23667281 -g1,5592:14834310,23667281 -g1,5592:15782747,23667281 -g1,5592:19260350,23667281 -g1,5592:20841079,23667281 -g1,5592:24318683,23667281 -g1,5592:25267120,23667281 -g1,5592:26531703,23667281 -h1,5592:29693160,23667281:0,0,0 -k1,5592:31966991,23667281:2273831 -g1,5592:31966991,23667281 -) -(1,5596:7246811,24398995:24720180,404226,107478 -(1,5594:7246811,24398995:0,0,0 -g1,5594:7246811,24398995 -g1,5594:7246811,24398995 -g1,5594:6919131,24398995 -(1,5594:6919131,24398995:0,0,0 -) -g1,5594:7246811,24398995 -) -g1,5596:8195248,24398995 -g1,5596:9459831,24398995 -g1,5596:11040561,24398995 -g1,5596:11988998,24398995 -g1,5596:13253581,24398995 -h1,5596:16098892,24398995:0,0,0 -k1,5596:31966991,24398995:15868099 -g1,5596:31966991,24398995 -) -] -) -g1,5597:31966991,24506473 -g1,5597:7246811,24506473 -g1,5597:7246811,24506473 -g1,5597:31966991,24506473 -g1,5597:31966991,24506473 -) -h1,5597:7246811,24703081:0,0,0 -(1,5601:7246811,26068857:24720180,505283,134348 -h1,5600:7246811,26068857:983040,0,0 -k1,5600:9852999,26068857:240994 -k1,5600:11586903,26068857:240994 -k1,5600:12846981,26068857:240993 -k1,5600:16274335,26068857:240994 -k1,5600:18383760,26068857:240994 -k1,5600:19898119,26068857:240994 -k1,5600:23200300,26068857:240994 -k1,5600:25046271,26068857:240994 -k1,5600:27417839,26068857:240993 -k1,5600:28429536,26068857:240994 -k1,5600:30277473,26068857:240994 -k1,5600:31966991,26068857:0 -) -(1,5601:7246811,26910345:24720180,505283,7863 -g1,5600:8465125,26910345 -g1,5600:9821064,26910345 -g1,5600:11875617,26910345 -g1,5600:13567756,26910345 -k1,5601:31966991,26910345:17005940 -g1,5601:31966991,26910345 -) -v1,5603:7246811,28100811:0,393216,0 -(1,5609:7246811,29748263:24720180,2040668,196608 -g1,5609:7246811,29748263 -g1,5609:7246811,29748263 -g1,5609:7050203,29748263 -(1,5609:7050203,29748263:0,2040668,196608 -r1,5632:32163599,29748263:25113396,2237276,196608 -k1,5609:7050203,29748263:-25113396 -) -(1,5609:7050203,29748263:25113396,2040668,196608 -[1,5609:7246811,29748263:24720180,1844060,0 -(1,5605:7246811,28308429:24720180,404226,76021 -(1,5604:7246811,28308429:0,0,0 -g1,5604:7246811,28308429 -g1,5604:7246811,28308429 -g1,5604:6919131,28308429 -(1,5604:6919131,28308429:0,0,0 -) -g1,5604:7246811,28308429 -) -g1,5605:7879103,28308429 -g1,5605:8511395,28308429 -g1,5605:10092124,28308429 -g1,5605:13253581,28308429 -k1,5605:13253581,28308429:0 -h1,5605:14834309,28308429:0,0,0 -k1,5605:31966991,28308429:17132682 -g1,5605:31966991,28308429 -) -(1,5606:7246811,28974607:24720180,410518,107478 -h1,5606:7246811,28974607:0,0,0 -g1,5606:8195248,28974607 -g1,5606:9143685,28974607 -g1,5606:9775977,28974607 -g1,5606:11356706,28974607 -g1,5606:14834310,28974607 -g1,5606:15782747,28974607 -h1,5606:18944204,28974607:0,0,0 -k1,5606:31966991,28974607:13022787 -g1,5606:31966991,28974607 -) -(1,5607:7246811,29640785:24720180,404226,107478 -h1,5607:7246811,29640785:0,0,0 -g1,5607:8827540,29640785 -g1,5607:12305144,29640785 -g1,5607:13253581,29640785 -g1,5607:14518164,29640785 -h1,5607:17679621,29640785:0,0,0 -k1,5607:31966991,29640785:14287370 -g1,5607:31966991,29640785 -) -] -) -g1,5609:31966991,29748263 -g1,5609:7246811,29748263 -g1,5609:7246811,29748263 -g1,5609:31966991,29748263 -g1,5609:31966991,29748263 -) -h1,5609:7246811,29944871:0,0,0 -(1,5613:7246811,31310647:24720180,505283,126483 -h1,5612:7246811,31310647:983040,0,0 -k1,5612:9967429,31310647:316757 -k1,5612:11099455,31310647:316758 -k1,5612:12435297,31310647:316757 -k1,5612:16806111,31310647:316757 -k1,5612:18291375,31310647:316757 -k1,5612:20194104,31310647:316758 -k1,5612:22274435,31310647:316757 -k1,5612:24289230,31310647:316757 -k1,5612:25474339,31310647:316757 -k1,5612:26988440,31310647:316758 -k1,5612:28908208,31310647:316757 -k1,5612:31280829,31310647:316757 -k1,5612:31966991,31310647:0 -) -(1,5613:7246811,32152135:24720180,505283,7863 -g1,5612:9521565,32152135 -k1,5613:31966991,32152135:20403324 -g1,5613:31966991,32152135 -) -v1,5615:7246811,33342601:0,393216,0 -(1,5628:7246811,38370750:24720180,5421365,196608 -g1,5628:7246811,38370750 -g1,5628:7246811,38370750 -g1,5628:7050203,38370750 -(1,5628:7050203,38370750:0,5421365,196608 -r1,5632:32163599,38370750:25113396,5617973,196608 -k1,5628:7050203,38370750:-25113396 -) -(1,5628:7050203,38370750:25113396,5421365,196608 -[1,5628:7246811,38370750:24720180,5224757,0 -(1,5617:7246811,33534490:24720180,388497,0 -(1,5616:7246811,33534490:0,0,0 -g1,5616:7246811,33534490 -g1,5616:7246811,33534490 -g1,5616:6919131,33534490 -(1,5616:6919131,33534490:0,0,0 -) -g1,5616:7246811,33534490 -) -g1,5617:7879103,33534490 -k1,5617:7879103,33534490:0 -h1,5617:8195249,33534490:0,0,0 -k1,5617:31966991,33534490:23771742 -g1,5617:31966991,33534490 -) -(1,5618:7246811,34200668:24720180,388497,4718 -h1,5618:7246811,34200668:0,0,0 -g1,5618:7879103,34200668 -g1,5618:8827541,34200668 -h1,5618:9143687,34200668:0,0,0 -k1,5618:31966991,34200668:22823304 -g1,5618:31966991,34200668 -) -(1,5619:7246811,34866846:24720180,410518,76021 -h1,5619:7246811,34866846:0,0,0 -g1,5619:8195248,34866846 -g1,5619:9143685,34866846 -g1,5619:9775977,34866846 -g1,5619:11356706,34866846 -h1,5619:11672852,34866846:0,0,0 -k1,5619:31966992,34866846:20294140 -g1,5619:31966992,34866846 -) -(1,5620:7246811,35533024:24720180,404226,107478 -h1,5620:7246811,35533024:0,0,0 -g1,5620:7562957,35533024 -g1,5620:7879103,35533024 -g1,5620:8195249,35533024 -g1,5620:8511395,35533024 -g1,5620:11988999,35533024 -g1,5620:12937436,35533024 -h1,5620:16098893,35533024:0,0,0 -k1,5620:31966991,35533024:15868098 -g1,5620:31966991,35533024 -) -(1,5621:7246811,36199202:24720180,404226,76021 -h1,5621:7246811,36199202:0,0,0 -g1,5621:7562957,36199202 -g1,5621:7879103,36199202 -g1,5621:8511395,36199202 -g1,5621:10092124,36199202 -h1,5621:10408270,36199202:0,0,0 -k1,5621:31966990,36199202:21558720 -g1,5621:31966990,36199202 -) -(1,5622:7246811,36865380:24720180,404226,107478 -h1,5622:7246811,36865380:0,0,0 -g1,5622:7562957,36865380 -g1,5622:7879103,36865380 -g1,5622:8195249,36865380 -g1,5622:8511395,36865380 -g1,5622:11988999,36865380 -g1,5622:12937436,36865380 -g1,5622:14202019,36865380 -h1,5622:17363476,36865380:0,0,0 -k1,5622:31966991,36865380:14603515 -g1,5622:31966991,36865380 -) -(1,5623:7246811,37531558:24720180,404226,76021 -h1,5623:7246811,37531558:0,0,0 -g1,5623:7562957,37531558 -g1,5623:7879103,37531558 -h1,5623:8195249,37531558:0,0,0 -k1,5623:31966991,37531558:23771742 -g1,5623:31966991,37531558 -) -(1,5627:7246811,38263272:24720180,404226,107478 -(1,5625:7246811,38263272:0,0,0 -g1,5625:7246811,38263272 -g1,5625:7246811,38263272 -g1,5625:6919131,38263272 -(1,5625:6919131,38263272:0,0,0 -) -g1,5625:7246811,38263272 -) -g1,5627:8195248,38263272 -g1,5627:9459831,38263272 -g1,5627:11040561,38263272 -g1,5627:11988998,38263272 -g1,5627:13253581,38263272 -h1,5627:16098892,38263272:0,0,0 -k1,5627:31966991,38263272:15868099 -g1,5627:31966991,38263272 -) -] -) -g1,5628:31966991,38370750 -g1,5628:7246811,38370750 -g1,5628:7246811,38370750 -g1,5628:31966991,38370750 -g1,5628:31966991,38370750 -) -h1,5628:7246811,38567358:0,0,0 -(1,5632:7246811,39933134:24720180,513147,134348 -h1,5631:7246811,39933134:983040,0,0 -k1,5631:9050198,39933134:192512 -k1,5631:10261795,39933134:192512 -k1,5631:13115724,39933134:192512 -k1,5631:15337231,39933134:192512 -k1,5631:16398095,39933134:192512 -k1,5631:19384407,39933134:192512 -k1,5631:19932779,39933134:192512 -k1,5631:21998310,39933134:192512 -k1,5631:25377182,39933134:192512 -k1,5631:28204897,39933134:192512 -k1,5631:29849031,39933134:192512 -k1,5631:31307699,39933134:192512 -k1,5631:31966991,39933134:0 -) -(1,5632:7246811,40774622:24720180,505283,126483 -k1,5631:9040991,40774622:191169 -k1,5631:11461694,40774622:191168 -k1,5631:12725032,40774622:191169 -k1,5631:13602362,40774622:191168 -k1,5631:15490258,40774622:191169 -k1,5631:17737291,40774622:191169 -k1,5631:19857839,40774622:191168 -k1,5631:23462778,40774622:191169 -k1,5631:27344278,40774622:191168 -k1,5631:30206694,40774622:191169 -k1,5632:31966991,40774622:0 -) -(1,5632:7246811,41616110:24720180,505283,126483 -g1,5631:9415397,41616110 -g1,5631:11383443,41616110 -g1,5631:13057887,41616110 -g1,5631:14767066,41616110 -g1,5631:17760095,41616110 -g1,5631:20594527,41616110 -g1,5631:22245378,41616110 -k1,5632:31966991,41616110:8281787 -g1,5632:31966991,41616110 -) -] -) -] -r1,5632:32583029,42332417:26214,23131556,0 -) -] -) -) -g1,5632:32583029,41742593 -) -h1,5632:6630773,42358631:0,0,0 -v1,5635:6630773,43680266:0,393216,0 -(1,5636:6630773,45116945:25952256,1829895,589824 -g1,5636:6630773,45116945 -(1,5636:6630773,45116945:25952256,1829895,589824 -(1,5636:6630773,45706769:25952256,2419719,0 -[1,5636:6630773,45706769:25952256,2419719,0 -(1,5636:6630773,45706769:25952256,2393505,0 -r1,5636:6656987,45706769:26214,2393505,0 -[1,5636:6656987,45706769:25899828,2393505,0 -(1,5636:6656987,45116945:25899828,1213857,0 -[1,5636:7246811,45116945:24720180,1213857,0 -(1,5636:7246811,44990462:24720180,1087374,126483 -k1,5635:8591089,44990462:134575 -k1,5635:10023277,44990462:134575 -k1,5635:11551802,44990462:134574 -k1,5635:12705462,44990462:134575 -k1,5635:13932522,44990462:134575 -k1,5635:14726389,44990462:134575 -k1,5635:18454303,44990462:134575 -k1,5635:21838153,44990462:134575 -k1,5635:23366678,44990462:134574 -k1,5635:24967949,44990462:134575 -k1,5635:27227201,44990462:134575 -k1,5635:28553221,44990462:134575 -k1,5635:31966991,44990462:0 +(1,5579:6434165,9998317:26345472,4137436,196608 +[1,5579:6630773,9998317:25952256,3940828,0 +(1,5567:6630773,6445986:25952256,388497,9436 +(1,5566:6630773,6445986:0,0,0 +g1,5566:6630773,6445986 +g1,5566:6630773,6445986 +g1,5566:6303093,6445986 +(1,5566:6303093,6445986:0,0,0 +) +g1,5566:6630773,6445986 +) +g1,5567:7263065,6445986 +g1,5567:8211503,6445986 +h1,5567:9476086,6445986:0,0,0 +k1,5567:32583030,6445986:23106944 +g1,5567:32583030,6445986 +) +(1,5568:6630773,7112164:25952256,410518,107478 +h1,5568:6630773,7112164:0,0,0 +g1,5568:7579210,7112164 +g1,5568:8527647,7112164 +g1,5568:9159939,7112164 +g1,5568:10740668,7112164 +g1,5568:14218272,7112164 +g1,5568:15166709,7112164 +g1,5568:18644312,7112164 +g1,5568:20225041,7112164 +g1,5568:23702645,7112164 +g1,5568:24651082,7112164 +g1,5568:25915665,7112164 +h1,5568:29077122,7112164:0,0,0 +k1,5568:32583029,7112164:3505907 +g1,5568:32583029,7112164 +) +(1,5572:6630773,7843878:25952256,404226,107478 +(1,5570:6630773,7843878:0,0,0 +g1,5570:6630773,7843878 +g1,5570:6630773,7843878 +g1,5570:6303093,7843878 +(1,5570:6303093,7843878:0,0,0 +) +g1,5570:6630773,7843878 +) +g1,5572:7579210,7843878 +g1,5572:8843793,7843878 +g1,5572:10424523,7843878 +g1,5572:11372960,7843878 +g1,5572:12637543,7843878 +h1,5572:15482854,7843878:0,0,0 +k1,5572:32583030,7843878:17100176 +g1,5572:32583030,7843878 +) +(1,5574:6630773,9165416:25952256,404226,101187 +(1,5573:6630773,9165416:0,0,0 +g1,5573:6630773,9165416 +g1,5573:6630773,9165416 +g1,5573:6303093,9165416 +(1,5573:6303093,9165416:0,0,0 +) +g1,5573:6630773,9165416 +) +k1,5574:6630773,9165416:0 +g1,5574:10424521,9165416 +g1,5574:11372958,9165416 +g1,5574:13585978,9165416 +h1,5574:16431289,9165416:0,0,0 +k1,5574:32583029,9165416:16151740 +g1,5574:32583029,9165416 +) +(1,5578:6630773,9897130:25952256,404226,101187 +(1,5576:6630773,9897130:0,0,0 +g1,5576:6630773,9897130 +g1,5576:6630773,9897130 +g1,5576:6303093,9897130 +(1,5576:6303093,9897130:0,0,0 +) +g1,5576:6630773,9897130 +) +g1,5578:7579210,9897130 +g1,5578:8843793,9897130 +g1,5578:10740667,9897130 +g1,5578:11689104,9897130 +g1,5578:13902124,9897130 +h1,5578:16431289,9897130:0,0,0 +k1,5578:32583029,9897130:16151740 +g1,5578:32583029,9897130 +) +] +) +g1,5579:32583029,9998317 +g1,5579:6630773,9998317 +g1,5579:6630773,9998317 +g1,5579:32583029,9998317 +g1,5579:32583029,9998317 +) +h1,5579:6630773,10194925:0,0,0 +(1,5583:6630773,11516560:25952256,513147,134348 +h1,5582:6630773,11516560:983040,0,0 +k1,5582:8696066,11516560:264364 +k1,5582:10064713,11516560:264365 +k1,5582:11076843,11516560:264364 +k1,5582:12781034,11516560:264365 +k1,5582:15074393,11516560:264364 +k1,5582:16357843,11516560:264365 +k1,5582:19808567,11516560:264364 +k1,5582:24009679,11516560:264364 +k1,5582:27249379,11516560:264365 +(1,5582:27249379,11516560:0,459977,115847 +r1,5582:27959357,11516560:709978,575824,115847 +k1,5582:27249379,11516560:-709978 +) +(1,5582:27249379,11516560:709978,459977,115847 +k1,5582:27249379,11516560:3277 +h1,5582:27956080,11516560:0,411205,112570 +) +k1,5582:28223721,11516560:264364 +k1,5582:29019583,11516560:264365 +k1,5582:32117068,11516560:264364 +k1,5582:32583029,11516560:0 +) +(1,5583:6630773,12358048:25952256,513147,134348 +k1,5582:7933172,12358048:283314 +k1,5582:11248838,12358048:283315 +k1,5582:13873098,12358048:283314 +(1,5582:13873098,12358048:0,414482,115847 +r1,5582:15286499,12358048:1413401,530329,115847 +k1,5582:13873098,12358048:-1413401 +) +(1,5582:13873098,12358048:1413401,414482,115847 +k1,5582:13873098,12358048:3277 +h1,5582:15283222,12358048:0,411205,112570 +) +k1,5582:15569813,12358048:283314 +k1,5582:17044572,12358048:283314 +k1,5582:18612393,12358048:283315 +k1,5582:21871042,12358048:283314 +(1,5582:21871042,12358048:0,452978,115847 +r1,5582:23284443,12358048:1413401,568825,115847 +k1,5582:21871042,12358048:-1413401 +) +(1,5582:21871042,12358048:1413401,452978,115847 +k1,5582:21871042,12358048:3277 +h1,5582:23281166,12358048:0,411205,112570 +) +k1,5582:23567757,12358048:283314 +k1,5582:24382568,12358048:283314 +k1,5582:27499004,12358048:283315 +k1,5582:28248279,12358048:283314 +k1,5582:29550678,12358048:283314 +k1,5582:32583029,12358048:0 +) +(1,5583:6630773,13199536:25952256,513147,126483 +k1,5582:9149166,13199536:177447 +(1,5582:9149166,13199536:0,414482,115847 +r1,5582:10914279,13199536:1765113,530329,115847 +k1,5582:9149166,13199536:-1765113 +) +(1,5582:9149166,13199536:1765113,414482,115847 +k1,5582:9149166,13199536:3277 +h1,5582:10911002,13199536:0,411205,112570 +) +k1,5582:11265397,13199536:177448 +k1,5582:14984410,13199536:177447 +k1,5582:16675083,13199536:177447 +k1,5582:17871615,13199536:177447 +k1,5582:22208633,13199536:177448 +k1,5582:25219201,13199536:177447 +(1,5582:25219201,13199536:0,459977,115847 +r1,5582:25929179,13199536:709978,575824,115847 +k1,5582:25219201,13199536:-709978 +) +(1,5582:25219201,13199536:709978,459977,115847 +k1,5582:25219201,13199536:3277 +h1,5582:25925902,13199536:0,411205,112570 +) +k1,5582:26106626,13199536:177447 +k1,5582:27475519,13199536:177448 +(1,5582:27475519,13199536:0,452978,115847 +r1,5582:28888920,13199536:1413401,568825,115847 +k1,5582:27475519,13199536:-1413401 +) +(1,5582:27475519,13199536:1413401,452978,115847 +k1,5582:27475519,13199536:3277 +h1,5582:28885643,13199536:0,411205,112570 +) +k1,5582:29066367,13199536:177447 +k1,5582:32583029,13199536:0 +) +(1,5583:6630773,14041024:25952256,513147,126483 +g1,5582:7821562,14041024 +g1,5582:10150056,14041024 +g1,5582:13356077,14041024 +g1,5582:18128408,14041024 +g1,5582:18986929,14041024 +g1,5582:20205243,14041024 +g1,5582:22084815,14041024 +g1,5582:25062771,14041024 +g1,5582:26023528,14041024 +g1,5582:27241842,14041024 +k1,5583:32583029,14041024:2135166 +g1,5583:32583029,14041024 +) +v1,5585:6630773,15362659:0,393216,0 +(1,5586:6630773,17630190:25952256,2660747,616038 +g1,5586:6630773,17630190 +(1,5586:6630773,17630190:25952256,2660747,616038 +(1,5586:6630773,18246228:25952256,3276785,0 +[1,5586:6630773,18246228:25952256,3276785,0 +(1,5586:6630773,18220014:25952256,3224357,0 +r1,5586:6656987,18220014:26214,3224357,0 +[1,5586:6656987,18220014:25899828,3224357,0 +(1,5586:6656987,17630190:25899828,2044709,0 +[1,5586:7246811,17630190:24720180,2044709,0 +(1,5586:7246811,16672855:24720180,1087374,134348 +k1,5585:8645013,16672855:188499 +k1,5585:10131124,16672855:188498 +k1,5585:11713574,16672855:188499 +k1,5585:12921158,16672855:188499 +k1,5585:14605843,16672855:188498 +k1,5585:15410380,16672855:188499 +k1,5585:16617964,16672855:188499 +k1,5585:18777131,16672855:188499 +k1,5585:20820953,16672855:188498 +k1,5585:21770980,16672855:188499 +k1,5585:24956440,16672855:188499 +k1,5585:27907281,16672855:188498 +k1,5585:30715909,16672855:188499 +k1,5586:31966991,16672855:0 +) +(1,5586:7246811,17514343:24720180,426639,115847 +g1,5585:8716128,17514343 +g1,5585:9566785,17514343 +(1,5585:9566785,17514343:0,414482,115847 +r1,5586:9925051,17514343:358266,530329,115847 +k1,5585:9566785,17514343:-358266 +) +(1,5585:9566785,17514343:358266,414482,115847 +k1,5585:9566785,17514343:3277 +h1,5585:9921774,17514343:0,411205,112570 +) +k1,5586:31966991,17514343:21868270 +g1,5586:31966991,17514343 +) +] +) +] +r1,5586:32583029,18220014:26214,3224357,0 +) +] +) +) +g1,5586:32583029,17630190 +) +h1,5586:6630773,18246228:0,0,0 +v1,5591:6630773,19567863:0,393216,0 +(1,5638:6630773,41742593:25952256,22567946,616038 +g1,5638:6630773,41742593 +(1,5638:6630773,41742593:25952256,22567946,616038 +(1,5638:6630773,42358631:25952256,23183984,0 +[1,5638:6630773,42358631:25952256,23183984,0 +(1,5638:6630773,42332417:25952256,23131556,0 +r1,5638:6656987,42332417:26214,23131556,0 +[1,5638:6656987,42332417:25899828,23131556,0 +(1,5638:6656987,41742593:25899828,21951908,0 +[1,5638:7246811,41742593:24720180,21951908,0 +(1,5592:7246811,20952570:24720180,1161885,196608 +(1,5591:7246811,20952570:0,1161885,196608 +r1,5638:8794447,20952570:1547636,1358493,196608 +k1,5591:7246811,20952570:-1547636 +) +(1,5591:7246811,20952570:1547636,1161885,196608 +) +g1,5591:8993676,20952570 +g1,5591:10090748,20952570 +g1,5591:11460450,20952570 +g1,5591:12858333,20952570 +g1,5591:16316667,20952570 +g1,5591:17534981,20952570 +g1,5591:19320181,20952570 +g1,5591:21341966,20952570 +g1,5591:25595252,20952570 +k1,5592:31966991,20952570:4545906 +g1,5592:31966991,20952570 +) +v1,5594:7246811,22143036:0,393216,0 +(1,5603:7246811,24506473:24720180,2756653,196608 +g1,5603:7246811,24506473 +g1,5603:7246811,24506473 +g1,5603:7050203,24506473 +(1,5603:7050203,24506473:0,2756653,196608 +r1,5638:32163599,24506473:25113396,2953261,196608 +k1,5603:7050203,24506473:-25113396 +) +(1,5603:7050203,24506473:25113396,2756653,196608 +[1,5603:7246811,24506473:24720180,2560045,0 +(1,5596:7246811,22334925:24720180,388497,0 +(1,5595:7246811,22334925:0,0,0 +g1,5595:7246811,22334925 +g1,5595:7246811,22334925 +g1,5595:6919131,22334925 +(1,5595:6919131,22334925:0,0,0 +) +g1,5595:7246811,22334925 +) +g1,5596:7879103,22334925 +k1,5596:7879103,22334925:0 +h1,5596:8195249,22334925:0,0,0 +k1,5596:31966991,22334925:23771742 +g1,5596:31966991,22334925 +) +(1,5597:7246811,23001103:24720180,388497,4718 +h1,5597:7246811,23001103:0,0,0 +g1,5597:7879103,23001103 +g1,5597:8827541,23001103 +h1,5597:9143687,23001103:0,0,0 +k1,5597:31966991,23001103:22823304 +g1,5597:31966991,23001103 +) +(1,5598:7246811,23667281:24720180,410518,107478 +h1,5598:7246811,23667281:0,0,0 +g1,5598:8195248,23667281 +g1,5598:9143685,23667281 +g1,5598:9775977,23667281 +g1,5598:11356706,23667281 +g1,5598:14834310,23667281 +g1,5598:15782747,23667281 +g1,5598:19260350,23667281 +g1,5598:20841079,23667281 +g1,5598:24318683,23667281 +g1,5598:25267120,23667281 +g1,5598:26531703,23667281 +h1,5598:29693160,23667281:0,0,0 +k1,5598:31966991,23667281:2273831 +g1,5598:31966991,23667281 +) +(1,5602:7246811,24398995:24720180,404226,107478 +(1,5600:7246811,24398995:0,0,0 +g1,5600:7246811,24398995 +g1,5600:7246811,24398995 +g1,5600:6919131,24398995 +(1,5600:6919131,24398995:0,0,0 +) +g1,5600:7246811,24398995 +) +g1,5602:8195248,24398995 +g1,5602:9459831,24398995 +g1,5602:11040561,24398995 +g1,5602:11988998,24398995 +g1,5602:13253581,24398995 +h1,5602:16098892,24398995:0,0,0 +k1,5602:31966991,24398995:15868099 +g1,5602:31966991,24398995 +) +] +) +g1,5603:31966991,24506473 +g1,5603:7246811,24506473 +g1,5603:7246811,24506473 +g1,5603:31966991,24506473 +g1,5603:31966991,24506473 +) +h1,5603:7246811,24703081:0,0,0 +(1,5607:7246811,26068857:24720180,505283,134348 +h1,5606:7246811,26068857:983040,0,0 +k1,5606:9852999,26068857:240994 +k1,5606:11586903,26068857:240994 +k1,5606:12846981,26068857:240993 +k1,5606:16274335,26068857:240994 +k1,5606:18383760,26068857:240994 +k1,5606:19898119,26068857:240994 +k1,5606:23200300,26068857:240994 +k1,5606:25046271,26068857:240994 +k1,5606:27417839,26068857:240993 +k1,5606:28429536,26068857:240994 +k1,5606:30277473,26068857:240994 +k1,5606:31966991,26068857:0 +) +(1,5607:7246811,26910345:24720180,505283,7863 +g1,5606:8465125,26910345 +g1,5606:9821064,26910345 +g1,5606:11875617,26910345 +g1,5606:13567756,26910345 +k1,5607:31966991,26910345:17005940 +g1,5607:31966991,26910345 +) +v1,5609:7246811,28100811:0,393216,0 +(1,5615:7246811,29748263:24720180,2040668,196608 +g1,5615:7246811,29748263 +g1,5615:7246811,29748263 +g1,5615:7050203,29748263 +(1,5615:7050203,29748263:0,2040668,196608 +r1,5638:32163599,29748263:25113396,2237276,196608 +k1,5615:7050203,29748263:-25113396 +) +(1,5615:7050203,29748263:25113396,2040668,196608 +[1,5615:7246811,29748263:24720180,1844060,0 +(1,5611:7246811,28308429:24720180,404226,76021 +(1,5610:7246811,28308429:0,0,0 +g1,5610:7246811,28308429 +g1,5610:7246811,28308429 +g1,5610:6919131,28308429 +(1,5610:6919131,28308429:0,0,0 +) +g1,5610:7246811,28308429 +) +g1,5611:7879103,28308429 +g1,5611:8511395,28308429 +g1,5611:10092124,28308429 +g1,5611:13253581,28308429 +k1,5611:13253581,28308429:0 +h1,5611:14834309,28308429:0,0,0 +k1,5611:31966991,28308429:17132682 +g1,5611:31966991,28308429 +) +(1,5612:7246811,28974607:24720180,410518,107478 +h1,5612:7246811,28974607:0,0,0 +g1,5612:8195248,28974607 +g1,5612:9143685,28974607 +g1,5612:9775977,28974607 +g1,5612:11356706,28974607 +g1,5612:14834310,28974607 +g1,5612:15782747,28974607 +h1,5612:18944204,28974607:0,0,0 +k1,5612:31966991,28974607:13022787 +g1,5612:31966991,28974607 +) +(1,5613:7246811,29640785:24720180,404226,107478 +h1,5613:7246811,29640785:0,0,0 +g1,5613:8827540,29640785 +g1,5613:12305144,29640785 +g1,5613:13253581,29640785 +g1,5613:14518164,29640785 +h1,5613:17679621,29640785:0,0,0 +k1,5613:31966991,29640785:14287370 +g1,5613:31966991,29640785 +) +] +) +g1,5615:31966991,29748263 +g1,5615:7246811,29748263 +g1,5615:7246811,29748263 +g1,5615:31966991,29748263 +g1,5615:31966991,29748263 +) +h1,5615:7246811,29944871:0,0,0 +(1,5619:7246811,31310647:24720180,505283,126483 +h1,5618:7246811,31310647:983040,0,0 +k1,5618:9967429,31310647:316757 +k1,5618:11099455,31310647:316758 +k1,5618:12435297,31310647:316757 +k1,5618:16806111,31310647:316757 +k1,5618:18291375,31310647:316757 +k1,5618:20194104,31310647:316758 +k1,5618:22274435,31310647:316757 +k1,5618:24289230,31310647:316757 +k1,5618:25474339,31310647:316757 +k1,5618:26988440,31310647:316758 +k1,5618:28908208,31310647:316757 +k1,5618:31280829,31310647:316757 +k1,5618:31966991,31310647:0 +) +(1,5619:7246811,32152135:24720180,505283,7863 +g1,5618:9521565,32152135 +k1,5619:31966991,32152135:20403324 +g1,5619:31966991,32152135 +) +v1,5621:7246811,33342601:0,393216,0 +(1,5634:7246811,38370750:24720180,5421365,196608 +g1,5634:7246811,38370750 +g1,5634:7246811,38370750 +g1,5634:7050203,38370750 +(1,5634:7050203,38370750:0,5421365,196608 +r1,5638:32163599,38370750:25113396,5617973,196608 +k1,5634:7050203,38370750:-25113396 +) +(1,5634:7050203,38370750:25113396,5421365,196608 +[1,5634:7246811,38370750:24720180,5224757,0 +(1,5623:7246811,33534490:24720180,388497,0 +(1,5622:7246811,33534490:0,0,0 +g1,5622:7246811,33534490 +g1,5622:7246811,33534490 +g1,5622:6919131,33534490 +(1,5622:6919131,33534490:0,0,0 +) +g1,5622:7246811,33534490 +) +g1,5623:7879103,33534490 +k1,5623:7879103,33534490:0 +h1,5623:8195249,33534490:0,0,0 +k1,5623:31966991,33534490:23771742 +g1,5623:31966991,33534490 +) +(1,5624:7246811,34200668:24720180,388497,4718 +h1,5624:7246811,34200668:0,0,0 +g1,5624:7879103,34200668 +g1,5624:8827541,34200668 +h1,5624:9143687,34200668:0,0,0 +k1,5624:31966991,34200668:22823304 +g1,5624:31966991,34200668 +) +(1,5625:7246811,34866846:24720180,410518,76021 +h1,5625:7246811,34866846:0,0,0 +g1,5625:8195248,34866846 +g1,5625:9143685,34866846 +g1,5625:9775977,34866846 +g1,5625:11356706,34866846 +h1,5625:11672852,34866846:0,0,0 +k1,5625:31966992,34866846:20294140 +g1,5625:31966992,34866846 +) +(1,5626:7246811,35533024:24720180,404226,107478 +h1,5626:7246811,35533024:0,0,0 +g1,5626:7562957,35533024 +g1,5626:7879103,35533024 +g1,5626:8195249,35533024 +g1,5626:8511395,35533024 +g1,5626:11988999,35533024 +g1,5626:12937436,35533024 +h1,5626:16098893,35533024:0,0,0 +k1,5626:31966991,35533024:15868098 +g1,5626:31966991,35533024 +) +(1,5627:7246811,36199202:24720180,404226,76021 +h1,5627:7246811,36199202:0,0,0 +g1,5627:7562957,36199202 +g1,5627:7879103,36199202 +g1,5627:8511395,36199202 +g1,5627:10092124,36199202 +h1,5627:10408270,36199202:0,0,0 +k1,5627:31966990,36199202:21558720 +g1,5627:31966990,36199202 +) +(1,5628:7246811,36865380:24720180,404226,107478 +h1,5628:7246811,36865380:0,0,0 +g1,5628:7562957,36865380 +g1,5628:7879103,36865380 +g1,5628:8195249,36865380 +g1,5628:8511395,36865380 +g1,5628:11988999,36865380 +g1,5628:12937436,36865380 +g1,5628:14202019,36865380 +h1,5628:17363476,36865380:0,0,0 +k1,5628:31966991,36865380:14603515 +g1,5628:31966991,36865380 +) +(1,5629:7246811,37531558:24720180,404226,76021 +h1,5629:7246811,37531558:0,0,0 +g1,5629:7562957,37531558 +g1,5629:7879103,37531558 +h1,5629:8195249,37531558:0,0,0 +k1,5629:31966991,37531558:23771742 +g1,5629:31966991,37531558 +) +(1,5633:7246811,38263272:24720180,404226,107478 +(1,5631:7246811,38263272:0,0,0 +g1,5631:7246811,38263272 +g1,5631:7246811,38263272 +g1,5631:6919131,38263272 +(1,5631:6919131,38263272:0,0,0 +) +g1,5631:7246811,38263272 +) +g1,5633:8195248,38263272 +g1,5633:9459831,38263272 +g1,5633:11040561,38263272 +g1,5633:11988998,38263272 +g1,5633:13253581,38263272 +h1,5633:16098892,38263272:0,0,0 +k1,5633:31966991,38263272:15868099 +g1,5633:31966991,38263272 +) +] +) +g1,5634:31966991,38370750 +g1,5634:7246811,38370750 +g1,5634:7246811,38370750 +g1,5634:31966991,38370750 +g1,5634:31966991,38370750 +) +h1,5634:7246811,38567358:0,0,0 +(1,5638:7246811,39933134:24720180,513147,134348 +h1,5637:7246811,39933134:983040,0,0 +k1,5637:9050198,39933134:192512 +k1,5637:10261795,39933134:192512 +k1,5637:13115724,39933134:192512 +k1,5637:15337231,39933134:192512 +k1,5637:16398095,39933134:192512 +k1,5637:19384407,39933134:192512 +k1,5637:19932779,39933134:192512 +k1,5637:21998310,39933134:192512 +k1,5637:25377182,39933134:192512 +k1,5637:28204897,39933134:192512 +k1,5637:29849031,39933134:192512 +k1,5637:31307699,39933134:192512 +k1,5637:31966991,39933134:0 +) +(1,5638:7246811,40774622:24720180,505283,126483 +k1,5637:9040991,40774622:191169 +k1,5637:11461694,40774622:191168 +k1,5637:12725032,40774622:191169 +k1,5637:13602362,40774622:191168 +k1,5637:15490258,40774622:191169 +k1,5637:17737291,40774622:191169 +k1,5637:19857839,40774622:191168 +k1,5637:23462778,40774622:191169 +k1,5637:27344278,40774622:191168 +k1,5637:30206694,40774622:191169 +k1,5638:31966991,40774622:0 +) +(1,5638:7246811,41616110:24720180,505283,126483 +g1,5637:9415397,41616110 +g1,5637:11383443,41616110 +g1,5637:13057887,41616110 +g1,5637:14767066,41616110 +g1,5637:17760095,41616110 +g1,5637:20594527,41616110 +g1,5637:22245378,41616110 +k1,5638:31966991,41616110:8281787 +g1,5638:31966991,41616110 +) +] +) +] +r1,5638:32583029,42332417:26214,23131556,0 +) +] +) +) +g1,5638:32583029,41742593 +) +h1,5638:6630773,42358631:0,0,0 +v1,5641:6630773,43680266:0,393216,0 +(1,5642:6630773,45116945:25952256,1829895,589824 +g1,5642:6630773,45116945 +(1,5642:6630773,45116945:25952256,1829895,589824 +(1,5642:6630773,45706769:25952256,2419719,0 +[1,5642:6630773,45706769:25952256,2419719,0 +(1,5642:6630773,45706769:25952256,2393505,0 +r1,5642:6656987,45706769:26214,2393505,0 +[1,5642:6656987,45706769:25899828,2393505,0 +(1,5642:6656987,45116945:25899828,1213857,0 +[1,5642:7246811,45116945:24720180,1213857,0 +(1,5642:7246811,44990462:24720180,1087374,126483 +k1,5641:8591089,44990462:134575 +k1,5641:10023277,44990462:134575 +k1,5641:11551802,44990462:134574 +k1,5641:12705462,44990462:134575 +k1,5641:13932522,44990462:134575 +k1,5641:14726389,44990462:134575 +k1,5641:18454303,44990462:134575 +k1,5641:21838153,44990462:134575 +k1,5641:23366678,44990462:134574 +k1,5641:24967949,44990462:134575 +k1,5641:27227201,44990462:134575 +k1,5641:28553221,44990462:134575 +k1,5641:31966991,44990462:0 ) ] ) ] -r1,5636:32583029,45706769:26214,2393505,0 +r1,5642:32583029,45706769:26214,2393505,0 ) ] ) ) -g1,5636:32583029,45116945 +g1,5642:32583029,45116945 ) ] -(1,5636:32583029,45706769:0,0,0 -g1,5636:32583029,45706769 +(1,5642:32583029,45706769:0,0,0 +g1,5642:32583029,45706769 ) ) ] -(1,5636:6630773,47279633:25952256,0,0 -h1,5636:6630773,47279633:25952256,0,0 +(1,5642:6630773,47279633:25952256,0,0 +h1,5642:6630773,47279633:25952256,0,0 ) ] -h1,5636:4262630,4025873:0,0,0 +h1,5642:4262630,4025873:0,0,0 ] !22079 }107 -Input:728:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:729:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:730:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:731:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:732:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:733:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:734:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:735:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!692 +Input:724:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:725:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:726:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:727:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:728:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:729:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:730:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:731:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!740 {108 -[1,5700:4262630,47279633:28320399,43253760,0 -(1,5700:4262630,4025873:0,0,0 -[1,5700:-473657,4025873:25952256,0,0 -(1,5700:-473657,-710414:25952256,0,0 -h1,5700:-473657,-710414:0,0,0 -(1,5700:-473657,-710414:0,0,0 -(1,5700:-473657,-710414:0,0,0 -g1,5700:-473657,-710414 -(1,5700:-473657,-710414:65781,0,65781 -g1,5700:-407876,-710414 -[1,5700:-407876,-644633:0,0,0 +[1,5706:4262630,47279633:28320399,43253760,0 +(1,5706:4262630,4025873:0,0,0 +[1,5706:-473657,4025873:25952256,0,0 +(1,5706:-473657,-710414:25952256,0,0 +h1,5706:-473657,-710414:0,0,0 +(1,5706:-473657,-710414:0,0,0 +(1,5706:-473657,-710414:0,0,0 +g1,5706:-473657,-710414 +(1,5706:-473657,-710414:65781,0,65781 +g1,5706:-407876,-710414 +[1,5706:-407876,-644633:0,0,0 ] ) -k1,5700:-473657,-710414:-65781 +k1,5706:-473657,-710414:-65781 ) ) -k1,5700:25478599,-710414:25952256 -g1,5700:25478599,-710414 +k1,5706:25478599,-710414:25952256 +g1,5706:25478599,-710414 ) ] ) -[1,5700:6630773,47279633:25952256,43253760,0 -[1,5700:6630773,4812305:25952256,786432,0 -(1,5700:6630773,4812305:25952256,513147,126483 -(1,5700:6630773,4812305:25952256,513147,126483 -g1,5700:3078558,4812305 -[1,5700:3078558,4812305:0,0,0 -(1,5700:3078558,2439708:0,1703936,0 -k1,5700:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5700:2537886,2439708:1179648,16384,0 +[1,5706:6630773,47279633:25952256,43253760,0 +[1,5706:6630773,4812305:25952256,786432,0 +(1,5706:6630773,4812305:25952256,513147,126483 +(1,5706:6630773,4812305:25952256,513147,126483 +g1,5706:3078558,4812305 +[1,5706:3078558,4812305:0,0,0 +(1,5706:3078558,2439708:0,1703936,0 +k1,5706:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5706:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5700:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5706:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5700:3078558,4812305:0,0,0 -(1,5700:3078558,2439708:0,1703936,0 -g1,5700:29030814,2439708 -g1,5700:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5700:36151628,1915420:16384,1179648,0 +[1,5706:3078558,4812305:0,0,0 +(1,5706:3078558,2439708:0,1703936,0 +g1,5706:29030814,2439708 +g1,5706:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5706:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5700:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5706:37855564,2439708:1179648,16384,0 ) ) -k1,5700:3078556,2439708:-34777008 +k1,5706:3078556,2439708:-34777008 ) ] -[1,5700:3078558,4812305:0,0,0 -(1,5700:3078558,49800853:0,16384,2228224 -k1,5700:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5700:2537886,49800853:1179648,16384,0 +[1,5706:3078558,4812305:0,0,0 +(1,5706:3078558,49800853:0,16384,2228224 +k1,5706:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5706:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5700:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5706:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5700:3078558,4812305:0,0,0 -(1,5700:3078558,49800853:0,16384,2228224 -g1,5700:29030814,49800853 -g1,5700:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5700:36151628,51504789:16384,1179648,0 +[1,5706:3078558,4812305:0,0,0 +(1,5706:3078558,49800853:0,16384,2228224 +g1,5706:29030814,49800853 +g1,5706:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5706:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5700:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5706:37855564,49800853:1179648,16384,0 ) ) -k1,5700:3078556,49800853:-34777008 +k1,5706:3078556,49800853:-34777008 ) ] -g1,5700:6630773,4812305 -g1,5700:6630773,4812305 -g1,5700:9175536,4812305 -g1,5700:9990803,4812305 -g1,5700:13137841,4812305 -g1,5700:14654344,4812305 -k1,5700:31786112,4812305:17131768 +g1,5706:6630773,4812305 +g1,5706:6630773,4812305 +g1,5706:9175536,4812305 +g1,5706:9990803,4812305 +g1,5706:13137841,4812305 +g1,5706:14654344,4812305 +k1,5706:31786112,4812305:17131768 ) ) ] -[1,5700:6630773,45706769:25952256,40108032,0 -(1,5700:6630773,45706769:25952256,40108032,0 -(1,5700:6630773,45706769:0,0,0 -g1,5700:6630773,45706769 +[1,5706:6630773,45706769:25952256,40108032,0 +(1,5706:6630773,45706769:25952256,40108032,0 +(1,5706:6630773,45706769:0,0,0 +g1,5706:6630773,45706769 ) -[1,5700:6630773,45706769:25952256,40108032,0 -v1,5636:6630773,6254097:0,393216,0 -(1,5636:6630773,7923959:25952256,2063078,616038 -g1,5636:6630773,7923959 -(1,5636:6630773,7923959:25952256,2063078,616038 -(1,5636:6630773,8539997:25952256,2679116,0 -[1,5636:6630773,8539997:25952256,2679116,0 -(1,5636:6630773,8513783:25952256,2652902,0 -r1,5636:6656987,8513783:26214,2652902,0 -[1,5636:6656987,8513783:25899828,2652902,0 -(1,5636:6656987,7923959:25899828,1473254,0 -[1,5636:7246811,7923959:24720180,1473254,0 -(1,5636:7246811,6955988:24720180,505283,134348 -k1,5635:11135766,6955988:198623 -k1,5635:12525835,6955988:198624 -k1,5635:14010274,6955988:198623 -k1,5635:15889241,6955988:198624 -k1,5635:17418245,6955988:198623 -k1,5635:18268297,6955988:198624 -k1,5635:21178800,6955988:198623 -(1,5635:21178800,6955988:0,459977,115847 -r1,5636:21888778,6955988:709978,575824,115847 -k1,5635:21178800,6955988:-709978 -) -(1,5635:21178800,6955988:709978,459977,115847 -k1,5635:21178800,6955988:3277 -h1,5635:21885501,6955988:0,411205,112570 -) -k1,5635:22087402,6955988:198624 -k1,5635:23477470,6955988:198623 -(1,5635:23477470,6955988:0,452978,115847 -r1,5636:24890871,6955988:1413401,568825,115847 -k1,5635:23477470,6955988:-1413401 -) -(1,5635:23477470,6955988:1413401,452978,115847 -k1,5635:23477470,6955988:3277 -h1,5635:24887594,6955988:0,411205,112570 -) -k1,5635:25089495,6955988:198624 -k1,5635:25939546,6955988:198623 -k1,5635:27958760,6955988:198624 -k1,5635:30316794,6955988:198623 -k1,5635:31966991,6955988:0 -) -(1,5636:7246811,7797476:24720180,505283,126483 -g1,5635:8888487,7797476 -g1,5635:10260155,7797476 -k1,5636:31966991,7797476:19120130 -g1,5636:31966991,7797476 -) -] -) -] -r1,5636:32583029,8513783:26214,2652902,0 -) -] -) -) -g1,5636:32583029,7923959 -) -h1,5636:6630773,8539997:0,0,0 -(1,5639:6630773,9768211:25952256,505283,126483 -h1,5638:6630773,9768211:983040,0,0 -k1,5638:8473192,9768211:231544 -k1,5638:9293248,9768211:231543 -k1,5638:10543877,9768211:231544 -k1,5638:12455764,9768211:231544 -k1,5638:15466034,9768211:231543 -k1,5638:16459106,9768211:231544 -k1,5638:17822457,9768211:231544 -k1,5638:21467771,9768211:231544 -k1,5638:24885674,9768211:231543 -k1,5638:25648715,9768211:231544 -k1,5638:26899344,9768211:231544 -k1,5638:28811230,9768211:231543 -k1,5638:31821501,9768211:231544 -k1,5638:32583029,9768211:0 -) -(1,5639:6630773,10609699:25952256,505283,126483 -k1,5638:7838656,10609699:188798 -k1,5638:9175645,10609699:188798 -k1,5638:11489121,10609699:188799 -k1,5638:14864279,10609699:188798 -k1,5638:17886198,10609699:188798 -k1,5638:20084986,10609699:188799 -k1,5638:21292869,10609699:188798 -k1,5638:24895437,10609699:188798 -k1,5638:26414616,10609699:188798 -k1,5638:27984259,10609699:188799 -k1,5638:30241373,10609699:188798 -k1,5638:31714677,10609699:188798 -k1,5638:32583029,10609699:0 -) -(1,5639:6630773,11451187:25952256,505283,134348 -k1,5638:7918773,11451187:183718 -k1,5638:10109204,11451187:183719 -k1,5638:11312007,11451187:183718 -k1,5638:13176069,11451187:183719 -k1,5638:16138514,11451187:183718 -k1,5638:17083760,11451187:183718 -k1,5638:18038182,11451187:183719 -(1,5638:18038182,11451187:0,459977,115847 -r1,5638:18748160,11451187:709978,575824,115847 -k1,5638:18038182,11451187:-709978 -) -(1,5638:18038182,11451187:709978,459977,115847 -k1,5638:18038182,11451187:3277 -h1,5638:18744883,11451187:0,411205,112570 -) -k1,5638:18931878,11451187:183718 -k1,5638:20307042,11451187:183719 -(1,5638:20307042,11451187:0,452978,115847 -r1,5638:21720443,11451187:1413401,568825,115847 -k1,5638:20307042,11451187:-1413401 -) -(1,5638:20307042,11451187:1413401,452978,115847 -k1,5638:20307042,11451187:3277 -h1,5638:21717166,11451187:0,411205,112570 -) -k1,5638:21904161,11451187:183718 -k1,5638:25274239,11451187:183718 -k1,5638:26109386,11451187:183719 -k1,5638:26648964,11451187:183718 -k1,5638:29517693,11451187:183719 -k1,5638:31082255,11451187:183718 -k1,5638:32583029,11451187:0 -) -(1,5639:6630773,12292675:25952256,513147,126483 -k1,5638:7336989,12292675:174719 -k1,5638:8724779,12292675:174719 -k1,5638:12204478,12292675:174718 -k1,5638:14066094,12292675:174719 -k1,5638:15312982,12292675:174719 -k1,5638:19373331,12292675:174719 -k1,5638:20652332,12292675:174719 -k1,5638:22669922,12292675:174718 -k1,5638:23460679,12292675:174719 -k1,5638:30247981,12292675:174719 -k1,5639:32583029,12292675:0 -k1,5639:32583029,12292675:0 -) -v1,5641:6630773,13345579:0,393216,0 -(1,5651:6630773,16375194:25952256,3422831,196608 -g1,5651:6630773,16375194 -g1,5651:6630773,16375194 -g1,5651:6434165,16375194 -(1,5651:6434165,16375194:0,3422831,196608 -r1,5651:32779637,16375194:26345472,3619439,196608 -k1,5651:6434165,16375194:-26345472 -) -(1,5651:6434165,16375194:26345472,3422831,196608 -[1,5651:6630773,16375194:25952256,3226223,0 -(1,5643:6630773,13537468:25952256,388497,4718 -(1,5642:6630773,13537468:0,0,0 -g1,5642:6630773,13537468 -g1,5642:6630773,13537468 -g1,5642:6303093,13537468 -(1,5642:6303093,13537468:0,0,0 -) -g1,5642:6630773,13537468 -) -g1,5643:7263065,13537468 -g1,5643:8211503,13537468 -h1,5643:8527649,13537468:0,0,0 -k1,5643:32583029,13537468:24055380 -g1,5643:32583029,13537468 -) -(1,5644:6630773,14203646:25952256,293601,107478 -h1,5644:6630773,14203646:0,0,0 -g1,5644:10108376,14203646 -k1,5644:10108376,14203646:0 -h1,5644:10740668,14203646:0,0,0 -k1,5644:32583028,14203646:21842360 -g1,5644:32583028,14203646 -) -(1,5645:6630773,14869824:25952256,410518,107478 -h1,5645:6630773,14869824:0,0,0 -g1,5645:6946919,14869824 -g1,5645:7263065,14869824 -g1,5645:8211502,14869824 -g1,5645:9159939,14869824 -g1,5645:9792231,14869824 -g1,5645:11372960,14869824 -g1,5645:12953690,14869824 -g1,5645:13902127,14869824 -g1,5645:17063584,14869824 -g1,5645:18644313,14869824 -g1,5645:20225043,14869824 -g1,5645:21173480,14869824 -g1,5645:22438063,14869824 -h1,5645:25283374,14869824:0,0,0 -k1,5645:32583029,14869824:7299655 -g1,5645:32583029,14869824 -) -(1,5646:6630773,15536002:25952256,404226,107478 -h1,5646:6630773,15536002:0,0,0 -k1,5646:6630773,15536002:0 -h1,5646:12005249,15536002:0,0,0 -k1,5646:32583029,15536002:20577780 -g1,5646:32583029,15536002 -) -(1,5650:6630773,16267716:25952256,404226,107478 -(1,5648:6630773,16267716:0,0,0 -g1,5648:6630773,16267716 -g1,5648:6630773,16267716 -g1,5648:6303093,16267716 -(1,5648:6303093,16267716:0,0,0 -) -g1,5648:6630773,16267716 -) -g1,5650:7579210,16267716 -g1,5650:8843793,16267716 -g1,5650:10424523,16267716 -g1,5650:11372960,16267716 -g1,5650:12637543,16267716 -h1,5650:15482854,16267716:0,0,0 -k1,5650:32583030,16267716:17100176 -g1,5650:32583030,16267716 -) -] -) -g1,5651:32583029,16375194 -g1,5651:6630773,16375194 -g1,5651:6630773,16375194 -g1,5651:32583029,16375194 -g1,5651:32583029,16375194 -) -h1,5651:6630773,16571802:0,0,0 -v1,5655:6630773,18186743:0,393216,0 -(1,5677:6630773,32726966:25952256,14933439,616038 -g1,5677:6630773,32726966 -(1,5677:6630773,32726966:25952256,14933439,616038 -(1,5677:6630773,33343004:25952256,15549477,0 -[1,5677:6630773,33343004:25952256,15549477,0 -(1,5677:6630773,33316790:25952256,15497049,0 -r1,5677:6656987,33316790:26214,15497049,0 -[1,5677:6656987,33316790:25899828,15497049,0 -(1,5677:6656987,32726966:25899828,14317401,0 -[1,5677:7246811,32726966:24720180,14317401,0 -(1,5656:7246811,19496939:24720180,1087374,126483 -k1,5655:8647627,19496939:191113 -k1,5655:10647533,19496939:191112 -k1,5655:11857731,19496939:191113 -k1,5655:15525529,19496939:191113 -k1,5655:17302612,19496939:191112 -k1,5655:20128928,19496939:191113 -(1,5655:20128928,19496939:0,452978,115847 -r1,5677:22597465,19496939:2468537,568825,115847 -k1,5655:20128928,19496939:-2468537 -) -(1,5655:20128928,19496939:2468537,452978,115847 -k1,5655:20128928,19496939:3277 -h1,5655:22594188,19496939:0,411205,112570 -) -k1,5655:22788577,19496939:191112 -k1,5655:24171135,19496939:191113 -(1,5655:24171135,19496939:0,452978,122846 -r1,5677:26639672,19496939:2468537,575824,122846 -k1,5655:24171135,19496939:-2468537 -) -(1,5655:24171135,19496939:2468537,452978,122846 -k1,5655:24171135,19496939:3277 -h1,5655:26636395,19496939:0,411205,112570 -) -k1,5655:26830785,19496939:191113 -k1,5655:29206212,19496939:191112 -k1,5655:30515369,19496939:191113 -k1,5655:31966991,19496939:0 -) -(1,5656:7246811,20338427:24720180,513147,126483 -k1,5655:8040779,20338427:134676 -k1,5655:9194541,20338427:134677 -k1,5655:12845879,20338427:134676 -k1,5655:15022658,20338427:134677 -k1,5655:16348779,20338427:134676 -k1,5655:18793599,20338427:134676 -k1,5655:19947361,20338427:134677 -k1,5655:22240793,20338427:134676 -k1,5655:24230139,20338427:134677 -k1,5655:25174185,20338427:134676 -k1,5655:26639243,20338427:134677 -k1,5655:28160005,20338427:134676 -k1,5655:31966991,20338427:0 -) -(1,5656:7246811,21179915:24720180,513147,134348 -k1,5655:8384598,21179915:146227 -k1,5655:12294558,21179915:146227 -k1,5655:16690139,21179915:146227 -k1,5655:17855451,21179915:146227 -k1,5655:21188038,21179915:146227 -k1,5655:23969468,21179915:146227 -k1,5655:28340146,21179915:146227 -k1,5655:31280829,21179915:146227 -k1,5655:31966991,21179915:0 -) -(1,5656:7246811,22021403:24720180,513147,126483 -g1,5655:11647553,22021403 -g1,5655:12462820,22021403 -g1,5655:16068610,22021403 -g1,5655:17459284,22021403 -g1,5655:18893867,22021403 -g1,5655:21887552,22021403 -$1,5655:22094646,22021403 -$1,5655:22607138,22021403 -g1,5655:23013461,22021403 -g1,5655:23898852,22021403 -g1,5655:26479659,22021403 -g1,5655:27294926,22021403 -k1,5656:31966991,22021403:405671 -g1,5656:31966991,22021403 -) -v1,5659:7246811,23211869:0,393216,0 -(1,5673:7246811,30188746:24720180,7370093,196608 -g1,5673:7246811,30188746 -g1,5673:7246811,30188746 -g1,5673:7050203,30188746 -(1,5673:7050203,30188746:0,7370093,196608 -r1,5677:32163599,30188746:25113396,7566701,196608 -k1,5673:7050203,30188746:-25113396 -) -(1,5673:7050203,30188746:25113396,7370093,196608 -[1,5673:7246811,30188746:24720180,7173485,0 -(1,5661:7246811,23425779:24720180,410518,101187 -(1,5660:7246811,23425779:0,0,0 -g1,5660:7246811,23425779 -g1,5660:7246811,23425779 -g1,5660:6919131,23425779 -(1,5660:6919131,23425779:0,0,0 -) -g1,5660:7246811,23425779 -) -k1,5661:7246811,23425779:0 -g1,5661:8195248,23425779 -g1,5661:9459832,23425779 -k1,5661:9459832,23425779:0 -h1,5661:13885872,23425779:0,0,0 -k1,5661:31966992,23425779:18081120 -g1,5661:31966992,23425779 -) -(1,5662:7246811,24091957:24720180,410518,101187 -h1,5662:7246811,24091957:0,0,0 -g1,5662:8195248,24091957 -g1,5662:9775978,24091957 -k1,5662:9775978,24091957:0 -h1,5662:14202018,24091957:0,0,0 -k1,5662:31966990,24091957:17764972 -g1,5662:31966990,24091957 -) -(1,5663:7246811,24758135:24720180,410518,101187 -h1,5663:7246811,24758135:0,0,0 -g1,5663:8195248,24758135 -g1,5663:10408269,24758135 -k1,5663:10408269,24758135:0 -h1,5663:14834309,24758135:0,0,0 -k1,5663:31966991,24758135:17132682 -g1,5663:31966991,24758135 -) -(1,5664:7246811,25424313:24720180,410518,101187 -h1,5664:7246811,25424313:0,0,0 -g1,5664:8195248,25424313 -g1,5664:11040560,25424313 -k1,5664:11040560,25424313:0 -h1,5664:15466600,25424313:0,0,0 -k1,5664:31966991,25424313:16500391 -g1,5664:31966991,25424313 -) -(1,5665:7246811,26090491:24720180,410518,101187 -h1,5665:7246811,26090491:0,0,0 -g1,5665:8195248,26090491 -g1,5665:11040560,26090491 -k1,5665:11040560,26090491:0 -h1,5665:15466600,26090491:0,0,0 -k1,5665:31966991,26090491:16500391 -g1,5665:31966991,26090491 -) -(1,5666:7246811,26756669:24720180,410518,101187 -h1,5666:7246811,26756669:0,0,0 -g1,5666:8195248,26756669 -g1,5666:11040560,26756669 -k1,5666:11040560,26756669:0 -h1,5666:15466600,26756669:0,0,0 -k1,5666:31966991,26756669:16500391 -g1,5666:31966991,26756669 -) -(1,5667:7246811,27422847:24720180,410518,101187 -h1,5667:7246811,27422847:0,0,0 -g1,5667:8195248,27422847 -g1,5667:11040560,27422847 -k1,5667:11040560,27422847:0 -h1,5667:15466600,27422847:0,0,0 -k1,5667:31966991,27422847:16500391 -g1,5667:31966991,27422847 -) -(1,5668:7246811,28089025:24720180,410518,107478 -h1,5668:7246811,28089025:0,0,0 -g1,5668:8195248,28089025 -g1,5668:14834308,28089025 -k1,5668:14834308,28089025:0 -h1,5668:19260348,28089025:0,0,0 -k1,5668:31966991,28089025:12706643 -g1,5668:31966991,28089025 -) -(1,5669:7246811,28755203:24720180,410518,107478 -h1,5669:7246811,28755203:0,0,0 -g1,5669:8195248,28755203 -g1,5669:17679620,28755203 -k1,5669:17679620,28755203:0 -h1,5669:22105660,28755203:0,0,0 -k1,5669:31966991,28755203:9861331 -g1,5669:31966991,28755203 -) -(1,5670:7246811,29421381:24720180,410518,107478 -h1,5670:7246811,29421381:0,0,0 -g1,5670:8195248,29421381 -g1,5670:13885871,29421381 -k1,5670:13885871,29421381:0 -h1,5670:18311911,29421381:0,0,0 -k1,5670:31966991,29421381:13655080 -g1,5670:31966991,29421381 -) -(1,5671:7246811,30087559:24720180,410518,101187 -h1,5671:7246811,30087559:0,0,0 -g1,5671:8195248,30087559 -g1,5671:10092123,30087559 -k1,5671:10092123,30087559:0 -h1,5671:14518163,30087559:0,0,0 -k1,5671:31966991,30087559:17448828 -g1,5671:31966991,30087559 -) -] -) -g1,5673:31966991,30188746 -g1,5673:7246811,30188746 -g1,5673:7246811,30188746 -g1,5673:31966991,30188746 -g1,5673:31966991,30188746 -) -h1,5673:7246811,30385354:0,0,0 -(1,5677:7246811,31751130:24720180,513147,134348 -h1,5676:7246811,31751130:983040,0,0 -k1,5676:9921008,31751130:139264 -k1,5676:10526233,31751130:139264 -k1,5676:11835970,31751130:139264 -k1,5676:13505500,31751130:139264 -k1,5676:14296192,31751130:139264 -k1,5676:16716764,31751130:139264 -k1,5676:18314859,31751130:139264 -k1,5676:23109145,31751130:139264 -k1,5676:23907701,31751130:139264 -k1,5676:25066050,31751130:139264 -k1,5676:26591400,31751130:139264 -k1,5676:30207349,31751130:139264 -k1,5676:31966991,31751130:0 -) -(1,5677:7246811,32592618:24720180,485622,134348 -g1,5676:8471023,32592618 -g1,5676:10948939,32592618 -h1,5676:11919527,32592618:0,0,0 -g1,5676:12118756,32592618 -g1,5676:13127355,32592618 -g1,5676:14824737,32592618 -h1,5676:15621655,32592618:0,0,0 -k1,5677:31966991,32592618:16171666 -g1,5677:31966991,32592618 -) -] -) -] -r1,5677:32583029,33316790:26214,15497049,0 -) -] -) -) -g1,5677:32583029,32726966 -) -h1,5677:6630773,33343004:0,0,0 -(1,5680:6630773,34571218:25952256,505283,115847 -h1,5679:6630773,34571218:983040,0,0 -k1,5679:8434697,34571218:193049 -k1,5679:11293751,34571218:193049 -k1,5679:12138228,34571218:193049 -(1,5679:12138228,34571218:0,459977,115847 -r1,5679:13551629,34571218:1413401,575824,115847 -k1,5679:12138228,34571218:-1413401 -) -(1,5679:12138228,34571218:1413401,459977,115847 -k1,5679:12138228,34571218:3277 -h1,5679:13548352,34571218:0,411205,112570 -) -k1,5679:13918348,34571218:193049 -k1,5679:15766181,34571218:193049 -k1,5679:16490727,34571218:193049 -k1,5679:17299814,34571218:193049 -k1,5679:17907700,34571218:193043 -k1,5679:18456609,34571218:193049 -(1,5679:18456609,34571218:0,452978,115847 -r1,5679:21276858,34571218:2820249,568825,115847 -k1,5679:18456609,34571218:-2820249 -) -(1,5679:18456609,34571218:2820249,452978,115847 -k1,5679:18456609,34571218:3277 -h1,5679:21273581,34571218:0,411205,112570 -) -k1,5679:21469907,34571218:193049 -k1,5679:25022987,34571218:193049 -k1,5679:27101507,34571218:193049 -k1,5679:28162908,34571218:193049 -k1,5679:31025238,34571218:193049 -k1,5679:32583029,34571218:0 -) -(1,5680:6630773,35412706:25952256,505283,134348 -k1,5679:7333167,35412706:232501 -k1,5679:8669951,35412706:232502 -k1,5679:9650218,35412706:232501 -k1,5679:11395946,35412706:232502 -k1,5679:12279875,35412706:232501 -k1,5679:14332967,35412706:232502 -k1,5679:16724879,35412706:232501 -k1,5679:18764864,35412706:232502 -k1,5679:19680250,35412706:232501 -k1,5679:22144253,35412706:232502 -k1,5679:25763655,35412706:232501 -k1,5679:29686489,35412706:232502 -k1,5679:31773659,35412706:232501 -k1,5679:32583029,35412706:0 -) -(1,5680:6630773,36254194:25952256,513147,134348 -k1,5679:7595008,36254194:193532 -k1,5679:11228525,36254194:193532 -k1,5679:14705410,36254194:193531 -k1,5679:15550370,36254194:193532 -k1,5679:16099762,36254194:193532 -(1,5679:16099762,36254194:0,452978,115847 -r1,5679:18568299,36254194:2468537,568825,115847 -k1,5679:16099762,36254194:-2468537 -) -(1,5679:16099762,36254194:2468537,452978,115847 -k1,5679:16099762,36254194:3277 -h1,5679:18565022,36254194:0,411205,112570 -) -k1,5679:18761831,36254194:193532 -k1,5679:19638247,36254194:193531 -k1,5679:20187639,36254194:193532 -(1,5679:20187639,36254194:0,452978,115847 -r1,5679:23359599,36254194:3171960,568825,115847 -k1,5679:20187639,36254194:-3171960 -) -(1,5679:20187639,36254194:3171960,452978,115847 -k1,5679:20187639,36254194:3277 -h1,5679:23356322,36254194:0,411205,112570 -) -k1,5679:23553131,36254194:193532 -k1,5679:25427006,36254194:193532 -k1,5679:26279830,36254194:193532 -k1,5679:28486627,36254194:193531 -k1,5679:30407688,36254194:193532 -k1,5679:31252648,36254194:193532 -k1,5679:32583029,36254194:0 -) -(1,5680:6630773,37095682:25952256,505283,126483 -k1,5679:8048316,37095682:220856 -k1,5679:10327003,37095682:220857 -k1,5679:13734219,37095682:220856 -k1,5679:16296021,37095682:220856 -k1,5679:16872738,37095682:220857 -k1,5679:18947608,37095682:220856 -k1,5679:20187549,37095682:220856 -k1,5679:22088749,37095682:220857 -k1,5679:25088332,37095682:220856 -k1,5679:26070716,37095682:220856 -k1,5679:27310658,37095682:220857 -k1,5679:30717874,37095682:220856 -k1,5680:32583029,37095682:0 -) -(1,5680:6630773,37937170:25952256,513147,134348 -k1,5679:9833473,37937170:231298 -k1,5679:10716200,37937170:231299 -k1,5679:11966583,37937170:231298 -k1,5679:15169283,37937170:231298 -k1,5679:17458412,37937170:231299 -k1,5679:19543724,37937170:231298 -k1,5679:20457907,37937170:231298 -k1,5679:21708291,37937170:231299 -k1,5679:24205169,37937170:231298 -k1,5679:24902428,37937170:231298 -k1,5679:26788511,37937170:231299 -k1,5679:27551306,37937170:231298 -k1,5679:28591974,37937170:231298 -k1,5679:30804426,37937170:231299 -k1,5679:32227169,37937170:231298 -k1,5679:32583029,37937170:0 -) -(1,5680:6630773,38778658:25952256,513147,7863 -g1,5679:9095582,38778658 -g1,5679:11305456,38778658 -g1,5679:13185028,38778658 -g1,5679:14485262,38778658 -g1,5679:16194441,38778658 -g1,5679:18775248,38778658 -g1,5679:19590515,38778658 -g1,5679:20808829,38778658 -k1,5680:32583029,38778658:10104343 -g1,5680:32583029,38778658 -) -v1,5682:6630773,39831562:0,393216,0 -(1,5696:6630773,45510161:25952256,6071815,196608 -g1,5696:6630773,45510161 -g1,5696:6630773,45510161 -g1,5696:6434165,45510161 -(1,5696:6434165,45510161:0,6071815,196608 -r1,5696:32779637,45510161:26345472,6268423,196608 -k1,5696:6434165,45510161:-26345472 -) -(1,5696:6434165,45510161:26345472,6071815,196608 -[1,5696:6630773,45510161:25952256,5875207,0 -(1,5684:6630773,40039180:25952256,404226,107478 -(1,5683:6630773,40039180:0,0,0 -g1,5683:6630773,40039180 -g1,5683:6630773,40039180 -g1,5683:6303093,40039180 -(1,5683:6303093,40039180:0,0,0 -) -g1,5683:6630773,40039180 -) -g1,5684:9792230,40039180 -g1,5684:10740668,40039180 -h1,5684:12321396,40039180:0,0,0 -k1,5684:32583028,40039180:20261632 -g1,5684:32583028,40039180 -) -(1,5685:6630773,40705358:25952256,404226,107478 -h1,5685:6630773,40705358:0,0,0 -g1,5685:7263065,40705358 -g1,5685:8211503,40705358 -k1,5685:8211503,40705358:0 -h1,5685:13585980,40705358:0,0,0 -k1,5685:32583028,40705358:18997048 -g1,5685:32583028,40705358 -) -(1,5686:6630773,41371536:25952256,388497,82312 -h1,5686:6630773,41371536:0,0,0 -g1,5686:6946919,41371536 -g1,5686:7263065,41371536 -g1,5686:7579211,41371536 -g1,5686:7895357,41371536 -g1,5686:8211503,41371536 -g1,5686:8527649,41371536 -g1,5686:8843795,41371536 -g1,5686:9159941,41371536 -g1,5686:9476087,41371536 -g1,5686:9792233,41371536 -g1,5686:10108379,41371536 -g1,5686:10424525,41371536 -g1,5686:11689108,41371536 -g1,5686:12321400,41371536 -k1,5686:12321400,41371536:0 -h1,5686:12953692,41371536:0,0,0 -k1,5686:32583028,41371536:19629336 -g1,5686:32583028,41371536 -) -(1,5687:6630773,42037714:25952256,404226,82312 -h1,5687:6630773,42037714:0,0,0 -g1,5687:6946919,42037714 -g1,5687:7263065,42037714 -g1,5687:7579211,42037714 -g1,5687:7895357,42037714 -g1,5687:8211503,42037714 -g1,5687:8527649,42037714 -g1,5687:8843795,42037714 -g1,5687:9159941,42037714 -g1,5687:9476087,42037714 -g1,5687:9792233,42037714 -g1,5687:10108379,42037714 -g1,5687:10424525,42037714 -g1,5687:11689108,42037714 -g1,5687:12321400,42037714 -g1,5687:12953692,42037714 -g1,5687:13585984,42037714 -k1,5687:13585984,42037714:0 -h1,5687:14218276,42037714:0,0,0 -k1,5687:32583028,42037714:18364752 -g1,5687:32583028,42037714 -) -(1,5688:6630773,42703892:25952256,404226,82312 -h1,5688:6630773,42703892:0,0,0 -g1,5688:6946919,42703892 -g1,5688:7263065,42703892 -g1,5688:7579211,42703892 -g1,5688:7895357,42703892 -g1,5688:8211503,42703892 -g1,5688:8527649,42703892 -g1,5688:8843795,42703892 -g1,5688:9159941,42703892 -g1,5688:9476087,42703892 -g1,5688:9792233,42703892 -g1,5688:10108379,42703892 -g1,5688:10424525,42703892 -g1,5688:12321399,42703892 -g1,5688:12953691,42703892 -g1,5688:13585983,42703892 -g1,5688:14218275,42703892 -k1,5688:14218275,42703892:0 -h1,5688:14850567,42703892:0,0,0 -k1,5688:32583029,42703892:17732462 -g1,5688:32583029,42703892 -) -(1,5689:6630773,43370070:25952256,388497,9436 -h1,5689:6630773,43370070:0,0,0 -g1,5689:6946919,43370070 -g1,5689:7263065,43370070 -g1,5689:7579211,43370070 -g1,5689:7895357,43370070 -g1,5689:8211503,43370070 -g1,5689:8527649,43370070 -g1,5689:8843795,43370070 -g1,5689:9159941,43370070 -g1,5689:9476087,43370070 -g1,5689:9792233,43370070 -g1,5689:10108379,43370070 -g1,5689:10424525,43370070 -h1,5689:10740671,43370070:0,0,0 -k1,5689:32583029,43370070:21842358 -g1,5689:32583029,43370070 -) -(1,5690:6630773,44036248:25952256,404226,76021 -h1,5690:6630773,44036248:0,0,0 -h1,5690:6946919,44036248:0,0,0 -k1,5690:32583029,44036248:25636110 -g1,5690:32583029,44036248 -) -(1,5691:6630773,44702426:25952256,404226,6290 -h1,5691:6630773,44702426:0,0,0 -h1,5691:6946919,44702426:0,0,0 -k1,5691:32583029,44702426:25636110 -g1,5691:32583029,44702426 -) -(1,5695:6630773,45434140:25952256,404226,76021 -(1,5693:6630773,45434140:0,0,0 -g1,5693:6630773,45434140 -g1,5693:6630773,45434140 -g1,5693:6303093,45434140 -(1,5693:6303093,45434140:0,0,0 -) -g1,5693:6630773,45434140 -) -g1,5695:7579210,45434140 -g1,5695:8843793,45434140 -h1,5695:9792230,45434140:0,0,0 -k1,5695:32583030,45434140:22790800 -g1,5695:32583030,45434140 -) -] -) -g1,5696:32583029,45510161 -g1,5696:6630773,45510161 -g1,5696:6630773,45510161 -g1,5696:32583029,45510161 -g1,5696:32583029,45510161 -) -h1,5696:6630773,45706769:0,0,0 -] -(1,5700:32583029,45706769:0,0,0 -g1,5700:32583029,45706769 -) -) -] -(1,5700:6630773,47279633:25952256,0,0 -h1,5700:6630773,47279633:25952256,0,0 -) -] -h1,5700:4262630,4025873:0,0,0 +[1,5706:6630773,45706769:25952256,40108032,0 +v1,5642:6630773,6254097:0,393216,0 +(1,5642:6630773,7923959:25952256,2063078,616038 +g1,5642:6630773,7923959 +(1,5642:6630773,7923959:25952256,2063078,616038 +(1,5642:6630773,8539997:25952256,2679116,0 +[1,5642:6630773,8539997:25952256,2679116,0 +(1,5642:6630773,8513783:25952256,2652902,0 +r1,5642:6656987,8513783:26214,2652902,0 +[1,5642:6656987,8513783:25899828,2652902,0 +(1,5642:6656987,7923959:25899828,1473254,0 +[1,5642:7246811,7923959:24720180,1473254,0 +(1,5642:7246811,6955988:24720180,505283,134348 +k1,5641:11135766,6955988:198623 +k1,5641:12525835,6955988:198624 +k1,5641:14010274,6955988:198623 +k1,5641:15889241,6955988:198624 +k1,5641:17418245,6955988:198623 +k1,5641:18268297,6955988:198624 +k1,5641:21178800,6955988:198623 +(1,5641:21178800,6955988:0,459977,115847 +r1,5642:21888778,6955988:709978,575824,115847 +k1,5641:21178800,6955988:-709978 +) +(1,5641:21178800,6955988:709978,459977,115847 +k1,5641:21178800,6955988:3277 +h1,5641:21885501,6955988:0,411205,112570 +) +k1,5641:22087402,6955988:198624 +k1,5641:23477470,6955988:198623 +(1,5641:23477470,6955988:0,452978,115847 +r1,5642:24890871,6955988:1413401,568825,115847 +k1,5641:23477470,6955988:-1413401 +) +(1,5641:23477470,6955988:1413401,452978,115847 +k1,5641:23477470,6955988:3277 +h1,5641:24887594,6955988:0,411205,112570 +) +k1,5641:25089495,6955988:198624 +k1,5641:25939546,6955988:198623 +k1,5641:27958760,6955988:198624 +k1,5641:30316794,6955988:198623 +k1,5641:31966991,6955988:0 +) +(1,5642:7246811,7797476:24720180,505283,126483 +g1,5641:8888487,7797476 +g1,5641:10260155,7797476 +k1,5642:31966991,7797476:19120130 +g1,5642:31966991,7797476 +) +] +) +] +r1,5642:32583029,8513783:26214,2652902,0 +) +] +) +) +g1,5642:32583029,7923959 +) +h1,5642:6630773,8539997:0,0,0 +(1,5645:6630773,9768211:25952256,505283,126483 +h1,5644:6630773,9768211:983040,0,0 +k1,5644:8473192,9768211:231544 +k1,5644:9293248,9768211:231543 +k1,5644:10543877,9768211:231544 +k1,5644:12455764,9768211:231544 +k1,5644:15466034,9768211:231543 +k1,5644:16459106,9768211:231544 +k1,5644:17822457,9768211:231544 +k1,5644:21467771,9768211:231544 +k1,5644:24885674,9768211:231543 +k1,5644:25648715,9768211:231544 +k1,5644:26899344,9768211:231544 +k1,5644:28811230,9768211:231543 +k1,5644:31821501,9768211:231544 +k1,5644:32583029,9768211:0 +) +(1,5645:6630773,10609699:25952256,505283,126483 +k1,5644:7838656,10609699:188798 +k1,5644:9175645,10609699:188798 +k1,5644:11489121,10609699:188799 +k1,5644:14864279,10609699:188798 +k1,5644:17886198,10609699:188798 +k1,5644:20084986,10609699:188799 +k1,5644:21292869,10609699:188798 +k1,5644:24895437,10609699:188798 +k1,5644:26414616,10609699:188798 +k1,5644:27984259,10609699:188799 +k1,5644:30241373,10609699:188798 +k1,5644:31714677,10609699:188798 +k1,5644:32583029,10609699:0 +) +(1,5645:6630773,11451187:25952256,505283,134348 +k1,5644:7918773,11451187:183718 +k1,5644:10109204,11451187:183719 +k1,5644:11312007,11451187:183718 +k1,5644:13176069,11451187:183719 +k1,5644:16138514,11451187:183718 +k1,5644:17083760,11451187:183718 +k1,5644:18038182,11451187:183719 +(1,5644:18038182,11451187:0,459977,115847 +r1,5644:18748160,11451187:709978,575824,115847 +k1,5644:18038182,11451187:-709978 +) +(1,5644:18038182,11451187:709978,459977,115847 +k1,5644:18038182,11451187:3277 +h1,5644:18744883,11451187:0,411205,112570 +) +k1,5644:18931878,11451187:183718 +k1,5644:20307042,11451187:183719 +(1,5644:20307042,11451187:0,452978,115847 +r1,5644:21720443,11451187:1413401,568825,115847 +k1,5644:20307042,11451187:-1413401 +) +(1,5644:20307042,11451187:1413401,452978,115847 +k1,5644:20307042,11451187:3277 +h1,5644:21717166,11451187:0,411205,112570 +) +k1,5644:21904161,11451187:183718 +k1,5644:25274239,11451187:183718 +k1,5644:26109386,11451187:183719 +k1,5644:26648964,11451187:183718 +k1,5644:29517693,11451187:183719 +k1,5644:31082255,11451187:183718 +k1,5644:32583029,11451187:0 +) +(1,5645:6630773,12292675:25952256,513147,126483 +k1,5644:7336989,12292675:174719 +k1,5644:8724779,12292675:174719 +k1,5644:12204478,12292675:174718 +k1,5644:14066094,12292675:174719 +k1,5644:15312982,12292675:174719 +k1,5644:19373331,12292675:174719 +k1,5644:20652332,12292675:174719 +k1,5644:22669922,12292675:174718 +k1,5644:23460679,12292675:174719 +k1,5644:30247981,12292675:174719 +k1,5645:32583029,12292675:0 +k1,5645:32583029,12292675:0 +) +v1,5647:6630773,13345579:0,393216,0 +(1,5657:6630773,16375194:25952256,3422831,196608 +g1,5657:6630773,16375194 +g1,5657:6630773,16375194 +g1,5657:6434165,16375194 +(1,5657:6434165,16375194:0,3422831,196608 +r1,5657:32779637,16375194:26345472,3619439,196608 +k1,5657:6434165,16375194:-26345472 +) +(1,5657:6434165,16375194:26345472,3422831,196608 +[1,5657:6630773,16375194:25952256,3226223,0 +(1,5649:6630773,13537468:25952256,388497,4718 +(1,5648:6630773,13537468:0,0,0 +g1,5648:6630773,13537468 +g1,5648:6630773,13537468 +g1,5648:6303093,13537468 +(1,5648:6303093,13537468:0,0,0 +) +g1,5648:6630773,13537468 +) +g1,5649:7263065,13537468 +g1,5649:8211503,13537468 +h1,5649:8527649,13537468:0,0,0 +k1,5649:32583029,13537468:24055380 +g1,5649:32583029,13537468 +) +(1,5650:6630773,14203646:25952256,293601,107478 +h1,5650:6630773,14203646:0,0,0 +g1,5650:10108376,14203646 +k1,5650:10108376,14203646:0 +h1,5650:10740668,14203646:0,0,0 +k1,5650:32583028,14203646:21842360 +g1,5650:32583028,14203646 +) +(1,5651:6630773,14869824:25952256,410518,107478 +h1,5651:6630773,14869824:0,0,0 +g1,5651:6946919,14869824 +g1,5651:7263065,14869824 +g1,5651:8211502,14869824 +g1,5651:9159939,14869824 +g1,5651:9792231,14869824 +g1,5651:11372960,14869824 +g1,5651:12953690,14869824 +g1,5651:13902127,14869824 +g1,5651:17063584,14869824 +g1,5651:18644313,14869824 +g1,5651:20225043,14869824 +g1,5651:21173480,14869824 +g1,5651:22438063,14869824 +h1,5651:25283374,14869824:0,0,0 +k1,5651:32583029,14869824:7299655 +g1,5651:32583029,14869824 +) +(1,5652:6630773,15536002:25952256,404226,107478 +h1,5652:6630773,15536002:0,0,0 +k1,5652:6630773,15536002:0 +h1,5652:12005249,15536002:0,0,0 +k1,5652:32583029,15536002:20577780 +g1,5652:32583029,15536002 +) +(1,5656:6630773,16267716:25952256,404226,107478 +(1,5654:6630773,16267716:0,0,0 +g1,5654:6630773,16267716 +g1,5654:6630773,16267716 +g1,5654:6303093,16267716 +(1,5654:6303093,16267716:0,0,0 +) +g1,5654:6630773,16267716 +) +g1,5656:7579210,16267716 +g1,5656:8843793,16267716 +g1,5656:10424523,16267716 +g1,5656:11372960,16267716 +g1,5656:12637543,16267716 +h1,5656:15482854,16267716:0,0,0 +k1,5656:32583030,16267716:17100176 +g1,5656:32583030,16267716 +) +] +) +g1,5657:32583029,16375194 +g1,5657:6630773,16375194 +g1,5657:6630773,16375194 +g1,5657:32583029,16375194 +g1,5657:32583029,16375194 +) +h1,5657:6630773,16571802:0,0,0 +v1,5661:6630773,18186743:0,393216,0 +(1,5683:6630773,32726966:25952256,14933439,616038 +g1,5683:6630773,32726966 +(1,5683:6630773,32726966:25952256,14933439,616038 +(1,5683:6630773,33343004:25952256,15549477,0 +[1,5683:6630773,33343004:25952256,15549477,0 +(1,5683:6630773,33316790:25952256,15497049,0 +r1,5683:6656987,33316790:26214,15497049,0 +[1,5683:6656987,33316790:25899828,15497049,0 +(1,5683:6656987,32726966:25899828,14317401,0 +[1,5683:7246811,32726966:24720180,14317401,0 +(1,5662:7246811,19496939:24720180,1087374,126483 +k1,5661:8647627,19496939:191113 +k1,5661:10647533,19496939:191112 +k1,5661:11857731,19496939:191113 +k1,5661:15525529,19496939:191113 +k1,5661:17302612,19496939:191112 +k1,5661:20128928,19496939:191113 +(1,5661:20128928,19496939:0,452978,115847 +r1,5683:22597465,19496939:2468537,568825,115847 +k1,5661:20128928,19496939:-2468537 +) +(1,5661:20128928,19496939:2468537,452978,115847 +k1,5661:20128928,19496939:3277 +h1,5661:22594188,19496939:0,411205,112570 +) +k1,5661:22788577,19496939:191112 +k1,5661:24171135,19496939:191113 +(1,5661:24171135,19496939:0,452978,122846 +r1,5683:26639672,19496939:2468537,575824,122846 +k1,5661:24171135,19496939:-2468537 +) +(1,5661:24171135,19496939:2468537,452978,122846 +k1,5661:24171135,19496939:3277 +h1,5661:26636395,19496939:0,411205,112570 +) +k1,5661:26830785,19496939:191113 +k1,5661:29206212,19496939:191112 +k1,5661:30515369,19496939:191113 +k1,5661:31966991,19496939:0 +) +(1,5662:7246811,20338427:24720180,513147,126483 +k1,5661:8040779,20338427:134676 +k1,5661:9194541,20338427:134677 +k1,5661:12845879,20338427:134676 +k1,5661:15022658,20338427:134677 +k1,5661:16348779,20338427:134676 +k1,5661:18793599,20338427:134676 +k1,5661:19947361,20338427:134677 +k1,5661:22240793,20338427:134676 +k1,5661:24230139,20338427:134677 +k1,5661:25174185,20338427:134676 +k1,5661:26639243,20338427:134677 +k1,5661:28160005,20338427:134676 +k1,5661:31966991,20338427:0 +) +(1,5662:7246811,21179915:24720180,513147,134348 +k1,5661:8384598,21179915:146227 +k1,5661:12294558,21179915:146227 +k1,5661:16690139,21179915:146227 +k1,5661:17855451,21179915:146227 +k1,5661:21188038,21179915:146227 +k1,5661:23969468,21179915:146227 +k1,5661:28340146,21179915:146227 +k1,5661:31280829,21179915:146227 +k1,5661:31966991,21179915:0 +) +(1,5662:7246811,22021403:24720180,513147,126483 +g1,5661:11647553,22021403 +g1,5661:12462820,22021403 +g1,5661:16068610,22021403 +g1,5661:17459284,22021403 +g1,5661:18893867,22021403 +g1,5661:21887552,22021403 +$1,5661:22094646,22021403 +$1,5661:22607138,22021403 +g1,5661:23013461,22021403 +g1,5661:23898852,22021403 +g1,5661:26479659,22021403 +g1,5661:27294926,22021403 +k1,5662:31966991,22021403:405671 +g1,5662:31966991,22021403 +) +v1,5665:7246811,23211869:0,393216,0 +(1,5679:7246811,30188746:24720180,7370093,196608 +g1,5679:7246811,30188746 +g1,5679:7246811,30188746 +g1,5679:7050203,30188746 +(1,5679:7050203,30188746:0,7370093,196608 +r1,5683:32163599,30188746:25113396,7566701,196608 +k1,5679:7050203,30188746:-25113396 +) +(1,5679:7050203,30188746:25113396,7370093,196608 +[1,5679:7246811,30188746:24720180,7173485,0 +(1,5667:7246811,23425779:24720180,410518,101187 +(1,5666:7246811,23425779:0,0,0 +g1,5666:7246811,23425779 +g1,5666:7246811,23425779 +g1,5666:6919131,23425779 +(1,5666:6919131,23425779:0,0,0 +) +g1,5666:7246811,23425779 +) +k1,5667:7246811,23425779:0 +g1,5667:8195248,23425779 +g1,5667:9459832,23425779 +k1,5667:9459832,23425779:0 +h1,5667:13885872,23425779:0,0,0 +k1,5667:31966992,23425779:18081120 +g1,5667:31966992,23425779 +) +(1,5668:7246811,24091957:24720180,410518,101187 +h1,5668:7246811,24091957:0,0,0 +g1,5668:8195248,24091957 +g1,5668:9775978,24091957 +k1,5668:9775978,24091957:0 +h1,5668:14202018,24091957:0,0,0 +k1,5668:31966990,24091957:17764972 +g1,5668:31966990,24091957 +) +(1,5669:7246811,24758135:24720180,410518,101187 +h1,5669:7246811,24758135:0,0,0 +g1,5669:8195248,24758135 +g1,5669:10408269,24758135 +k1,5669:10408269,24758135:0 +h1,5669:14834309,24758135:0,0,0 +k1,5669:31966991,24758135:17132682 +g1,5669:31966991,24758135 +) +(1,5670:7246811,25424313:24720180,410518,101187 +h1,5670:7246811,25424313:0,0,0 +g1,5670:8195248,25424313 +g1,5670:11040560,25424313 +k1,5670:11040560,25424313:0 +h1,5670:15466600,25424313:0,0,0 +k1,5670:31966991,25424313:16500391 +g1,5670:31966991,25424313 +) +(1,5671:7246811,26090491:24720180,410518,101187 +h1,5671:7246811,26090491:0,0,0 +g1,5671:8195248,26090491 +g1,5671:11040560,26090491 +k1,5671:11040560,26090491:0 +h1,5671:15466600,26090491:0,0,0 +k1,5671:31966991,26090491:16500391 +g1,5671:31966991,26090491 +) +(1,5672:7246811,26756669:24720180,410518,101187 +h1,5672:7246811,26756669:0,0,0 +g1,5672:8195248,26756669 +g1,5672:11040560,26756669 +k1,5672:11040560,26756669:0 +h1,5672:15466600,26756669:0,0,0 +k1,5672:31966991,26756669:16500391 +g1,5672:31966991,26756669 +) +(1,5673:7246811,27422847:24720180,410518,101187 +h1,5673:7246811,27422847:0,0,0 +g1,5673:8195248,27422847 +g1,5673:11040560,27422847 +k1,5673:11040560,27422847:0 +h1,5673:15466600,27422847:0,0,0 +k1,5673:31966991,27422847:16500391 +g1,5673:31966991,27422847 +) +(1,5674:7246811,28089025:24720180,410518,107478 +h1,5674:7246811,28089025:0,0,0 +g1,5674:8195248,28089025 +g1,5674:14834308,28089025 +k1,5674:14834308,28089025:0 +h1,5674:19260348,28089025:0,0,0 +k1,5674:31966991,28089025:12706643 +g1,5674:31966991,28089025 +) +(1,5675:7246811,28755203:24720180,410518,107478 +h1,5675:7246811,28755203:0,0,0 +g1,5675:8195248,28755203 +g1,5675:17679620,28755203 +k1,5675:17679620,28755203:0 +h1,5675:22105660,28755203:0,0,0 +k1,5675:31966991,28755203:9861331 +g1,5675:31966991,28755203 +) +(1,5676:7246811,29421381:24720180,410518,107478 +h1,5676:7246811,29421381:0,0,0 +g1,5676:8195248,29421381 +g1,5676:13885871,29421381 +k1,5676:13885871,29421381:0 +h1,5676:18311911,29421381:0,0,0 +k1,5676:31966991,29421381:13655080 +g1,5676:31966991,29421381 +) +(1,5677:7246811,30087559:24720180,410518,101187 +h1,5677:7246811,30087559:0,0,0 +g1,5677:8195248,30087559 +g1,5677:10092123,30087559 +k1,5677:10092123,30087559:0 +h1,5677:14518163,30087559:0,0,0 +k1,5677:31966991,30087559:17448828 +g1,5677:31966991,30087559 +) +] +) +g1,5679:31966991,30188746 +g1,5679:7246811,30188746 +g1,5679:7246811,30188746 +g1,5679:31966991,30188746 +g1,5679:31966991,30188746 +) +h1,5679:7246811,30385354:0,0,0 +(1,5683:7246811,31751130:24720180,513147,134348 +h1,5682:7246811,31751130:983040,0,0 +k1,5682:9921008,31751130:139264 +k1,5682:10526233,31751130:139264 +k1,5682:11835970,31751130:139264 +k1,5682:13505500,31751130:139264 +k1,5682:14296192,31751130:139264 +k1,5682:16716764,31751130:139264 +k1,5682:18314859,31751130:139264 +k1,5682:23109145,31751130:139264 +k1,5682:23907701,31751130:139264 +k1,5682:25066050,31751130:139264 +k1,5682:26591400,31751130:139264 +k1,5682:30207349,31751130:139264 +k1,5682:31966991,31751130:0 +) +(1,5683:7246811,32592618:24720180,485622,134348 +g1,5682:8471023,32592618 +g1,5682:10948939,32592618 +h1,5682:11919527,32592618:0,0,0 +g1,5682:12118756,32592618 +g1,5682:13127355,32592618 +g1,5682:14824737,32592618 +h1,5682:15621655,32592618:0,0,0 +k1,5683:31966991,32592618:16171666 +g1,5683:31966991,32592618 +) +] +) +] +r1,5683:32583029,33316790:26214,15497049,0 +) +] +) +) +g1,5683:32583029,32726966 +) +h1,5683:6630773,33343004:0,0,0 +(1,5686:6630773,34571218:25952256,505283,115847 +h1,5685:6630773,34571218:983040,0,0 +k1,5685:8434697,34571218:193049 +k1,5685:11293751,34571218:193049 +k1,5685:12138228,34571218:193049 +(1,5685:12138228,34571218:0,459977,115847 +r1,5685:13551629,34571218:1413401,575824,115847 +k1,5685:12138228,34571218:-1413401 +) +(1,5685:12138228,34571218:1413401,459977,115847 +k1,5685:12138228,34571218:3277 +h1,5685:13548352,34571218:0,411205,112570 +) +k1,5685:13918348,34571218:193049 +k1,5685:15766181,34571218:193049 +k1,5685:16490727,34571218:193049 +k1,5685:17299814,34571218:193049 +k1,5685:17907700,34571218:193043 +k1,5685:18456609,34571218:193049 +(1,5685:18456609,34571218:0,452978,115847 +r1,5685:21276858,34571218:2820249,568825,115847 +k1,5685:18456609,34571218:-2820249 +) +(1,5685:18456609,34571218:2820249,452978,115847 +k1,5685:18456609,34571218:3277 +h1,5685:21273581,34571218:0,411205,112570 +) +k1,5685:21469907,34571218:193049 +k1,5685:25022987,34571218:193049 +k1,5685:27101507,34571218:193049 +k1,5685:28162908,34571218:193049 +k1,5685:31025238,34571218:193049 +k1,5685:32583029,34571218:0 +) +(1,5686:6630773,35412706:25952256,505283,134348 +k1,5685:7333167,35412706:232501 +k1,5685:8669951,35412706:232502 +k1,5685:9650218,35412706:232501 +k1,5685:11395946,35412706:232502 +k1,5685:12279875,35412706:232501 +k1,5685:14332967,35412706:232502 +k1,5685:16724879,35412706:232501 +k1,5685:18764864,35412706:232502 +k1,5685:19680250,35412706:232501 +k1,5685:22144253,35412706:232502 +k1,5685:25763655,35412706:232501 +k1,5685:29686489,35412706:232502 +k1,5685:31773659,35412706:232501 +k1,5685:32583029,35412706:0 +) +(1,5686:6630773,36254194:25952256,513147,134348 +k1,5685:7595008,36254194:193532 +k1,5685:11228525,36254194:193532 +k1,5685:14705410,36254194:193531 +k1,5685:15550370,36254194:193532 +k1,5685:16099762,36254194:193532 +(1,5685:16099762,36254194:0,452978,115847 +r1,5685:18568299,36254194:2468537,568825,115847 +k1,5685:16099762,36254194:-2468537 +) +(1,5685:16099762,36254194:2468537,452978,115847 +k1,5685:16099762,36254194:3277 +h1,5685:18565022,36254194:0,411205,112570 +) +k1,5685:18761831,36254194:193532 +k1,5685:19638247,36254194:193531 +k1,5685:20187639,36254194:193532 +(1,5685:20187639,36254194:0,452978,115847 +r1,5685:23359599,36254194:3171960,568825,115847 +k1,5685:20187639,36254194:-3171960 +) +(1,5685:20187639,36254194:3171960,452978,115847 +k1,5685:20187639,36254194:3277 +h1,5685:23356322,36254194:0,411205,112570 +) +k1,5685:23553131,36254194:193532 +k1,5685:25427006,36254194:193532 +k1,5685:26279830,36254194:193532 +k1,5685:28486627,36254194:193531 +k1,5685:30407688,36254194:193532 +k1,5685:31252648,36254194:193532 +k1,5685:32583029,36254194:0 +) +(1,5686:6630773,37095682:25952256,505283,126483 +k1,5685:8048316,37095682:220856 +k1,5685:10327003,37095682:220857 +k1,5685:13734219,37095682:220856 +k1,5685:16296021,37095682:220856 +k1,5685:16872738,37095682:220857 +k1,5685:18947608,37095682:220856 +k1,5685:20187549,37095682:220856 +k1,5685:22088749,37095682:220857 +k1,5685:25088332,37095682:220856 +k1,5685:26070716,37095682:220856 +k1,5685:27310658,37095682:220857 +k1,5685:30717874,37095682:220856 +k1,5686:32583029,37095682:0 +) +(1,5686:6630773,37937170:25952256,513147,134348 +k1,5685:9833473,37937170:231298 +k1,5685:10716200,37937170:231299 +k1,5685:11966583,37937170:231298 +k1,5685:15169283,37937170:231298 +k1,5685:17458412,37937170:231299 +k1,5685:19543724,37937170:231298 +k1,5685:20457907,37937170:231298 +k1,5685:21708291,37937170:231299 +k1,5685:24205169,37937170:231298 +k1,5685:24902428,37937170:231298 +k1,5685:26788511,37937170:231299 +k1,5685:27551306,37937170:231298 +k1,5685:28591974,37937170:231298 +k1,5685:30804426,37937170:231299 +k1,5685:32227169,37937170:231298 +k1,5685:32583029,37937170:0 +) +(1,5686:6630773,38778658:25952256,513147,7863 +g1,5685:9095582,38778658 +g1,5685:11305456,38778658 +g1,5685:13185028,38778658 +g1,5685:14485262,38778658 +g1,5685:16194441,38778658 +g1,5685:18775248,38778658 +g1,5685:19590515,38778658 +g1,5685:20808829,38778658 +k1,5686:32583029,38778658:10104343 +g1,5686:32583029,38778658 +) +v1,5688:6630773,39831562:0,393216,0 +(1,5702:6630773,45510161:25952256,6071815,196608 +g1,5702:6630773,45510161 +g1,5702:6630773,45510161 +g1,5702:6434165,45510161 +(1,5702:6434165,45510161:0,6071815,196608 +r1,5702:32779637,45510161:26345472,6268423,196608 +k1,5702:6434165,45510161:-26345472 +) +(1,5702:6434165,45510161:26345472,6071815,196608 +[1,5702:6630773,45510161:25952256,5875207,0 +(1,5690:6630773,40039180:25952256,404226,107478 +(1,5689:6630773,40039180:0,0,0 +g1,5689:6630773,40039180 +g1,5689:6630773,40039180 +g1,5689:6303093,40039180 +(1,5689:6303093,40039180:0,0,0 +) +g1,5689:6630773,40039180 +) +g1,5690:9792230,40039180 +g1,5690:10740668,40039180 +h1,5690:12321396,40039180:0,0,0 +k1,5690:32583028,40039180:20261632 +g1,5690:32583028,40039180 +) +(1,5691:6630773,40705358:25952256,404226,107478 +h1,5691:6630773,40705358:0,0,0 +g1,5691:7263065,40705358 +g1,5691:8211503,40705358 +k1,5691:8211503,40705358:0 +h1,5691:13585980,40705358:0,0,0 +k1,5691:32583028,40705358:18997048 +g1,5691:32583028,40705358 +) +(1,5692:6630773,41371536:25952256,388497,82312 +h1,5692:6630773,41371536:0,0,0 +g1,5692:6946919,41371536 +g1,5692:7263065,41371536 +g1,5692:7579211,41371536 +g1,5692:7895357,41371536 +g1,5692:8211503,41371536 +g1,5692:8527649,41371536 +g1,5692:8843795,41371536 +g1,5692:9159941,41371536 +g1,5692:9476087,41371536 +g1,5692:9792233,41371536 +g1,5692:10108379,41371536 +g1,5692:10424525,41371536 +g1,5692:11689108,41371536 +g1,5692:12321400,41371536 +k1,5692:12321400,41371536:0 +h1,5692:12953692,41371536:0,0,0 +k1,5692:32583028,41371536:19629336 +g1,5692:32583028,41371536 +) +(1,5693:6630773,42037714:25952256,404226,82312 +h1,5693:6630773,42037714:0,0,0 +g1,5693:6946919,42037714 +g1,5693:7263065,42037714 +g1,5693:7579211,42037714 +g1,5693:7895357,42037714 +g1,5693:8211503,42037714 +g1,5693:8527649,42037714 +g1,5693:8843795,42037714 +g1,5693:9159941,42037714 +g1,5693:9476087,42037714 +g1,5693:9792233,42037714 +g1,5693:10108379,42037714 +g1,5693:10424525,42037714 +g1,5693:11689108,42037714 +g1,5693:12321400,42037714 +g1,5693:12953692,42037714 +g1,5693:13585984,42037714 +k1,5693:13585984,42037714:0 +h1,5693:14218276,42037714:0,0,0 +k1,5693:32583028,42037714:18364752 +g1,5693:32583028,42037714 +) +(1,5694:6630773,42703892:25952256,404226,82312 +h1,5694:6630773,42703892:0,0,0 +g1,5694:6946919,42703892 +g1,5694:7263065,42703892 +g1,5694:7579211,42703892 +g1,5694:7895357,42703892 +g1,5694:8211503,42703892 +g1,5694:8527649,42703892 +g1,5694:8843795,42703892 +g1,5694:9159941,42703892 +g1,5694:9476087,42703892 +g1,5694:9792233,42703892 +g1,5694:10108379,42703892 +g1,5694:10424525,42703892 +g1,5694:12321399,42703892 +g1,5694:12953691,42703892 +g1,5694:13585983,42703892 +g1,5694:14218275,42703892 +k1,5694:14218275,42703892:0 +h1,5694:14850567,42703892:0,0,0 +k1,5694:32583029,42703892:17732462 +g1,5694:32583029,42703892 +) +(1,5695:6630773,43370070:25952256,388497,9436 +h1,5695:6630773,43370070:0,0,0 +g1,5695:6946919,43370070 +g1,5695:7263065,43370070 +g1,5695:7579211,43370070 +g1,5695:7895357,43370070 +g1,5695:8211503,43370070 +g1,5695:8527649,43370070 +g1,5695:8843795,43370070 +g1,5695:9159941,43370070 +g1,5695:9476087,43370070 +g1,5695:9792233,43370070 +g1,5695:10108379,43370070 +g1,5695:10424525,43370070 +h1,5695:10740671,43370070:0,0,0 +k1,5695:32583029,43370070:21842358 +g1,5695:32583029,43370070 +) +(1,5696:6630773,44036248:25952256,404226,76021 +h1,5696:6630773,44036248:0,0,0 +h1,5696:6946919,44036248:0,0,0 +k1,5696:32583029,44036248:25636110 +g1,5696:32583029,44036248 +) +(1,5697:6630773,44702426:25952256,404226,6290 +h1,5697:6630773,44702426:0,0,0 +h1,5697:6946919,44702426:0,0,0 +k1,5697:32583029,44702426:25636110 +g1,5697:32583029,44702426 +) +(1,5701:6630773,45434140:25952256,404226,76021 +(1,5699:6630773,45434140:0,0,0 +g1,5699:6630773,45434140 +g1,5699:6630773,45434140 +g1,5699:6303093,45434140 +(1,5699:6303093,45434140:0,0,0 +) +g1,5699:6630773,45434140 +) +g1,5701:7579210,45434140 +g1,5701:8843793,45434140 +h1,5701:9792230,45434140:0,0,0 +k1,5701:32583030,45434140:22790800 +g1,5701:32583030,45434140 +) +] +) +g1,5702:32583029,45510161 +g1,5702:6630773,45510161 +g1,5702:6630773,45510161 +g1,5702:32583029,45510161 +g1,5702:32583029,45510161 +) +h1,5702:6630773,45706769:0,0,0 +] +(1,5706:32583029,45706769:0,0,0 +g1,5706:32583029,45706769 +) +) +] +(1,5706:6630773,47279633:25952256,0,0 +h1,5706:6630773,47279633:25952256,0,0 +) +] +h1,5706:4262630,4025873:0,0,0 ] !25117 }108 -Input:736:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:737:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:738:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:739:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:740:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:741:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:742:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:743:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:744:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:745:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:746:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:747:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:748:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:749:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:750:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:751:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:752:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:753:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:754:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:755:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:756:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:757:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:758:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:759:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:760:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:761:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:762:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:763:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:764:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:765:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2562 +Input:732:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:733:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:734:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:735:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:736:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:737:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:738:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:739:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:740:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:741:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:742:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:743:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:744:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:745:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:746:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:747:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:748:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:749:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:750:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:751:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:752:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:753:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:754:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:755:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:756:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:757:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:758:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:759:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:760:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:761:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2742 {109 -[1,5752:4262630,47279633:28320399,43253760,0 -(1,5752:4262630,4025873:0,0,0 -[1,5752:-473657,4025873:25952256,0,0 -(1,5752:-473657,-710414:25952256,0,0 -h1,5752:-473657,-710414:0,0,0 -(1,5752:-473657,-710414:0,0,0 -(1,5752:-473657,-710414:0,0,0 -g1,5752:-473657,-710414 -(1,5752:-473657,-710414:65781,0,65781 -g1,5752:-407876,-710414 -[1,5752:-407876,-644633:0,0,0 +[1,5758:4262630,47279633:28320399,43253760,0 +(1,5758:4262630,4025873:0,0,0 +[1,5758:-473657,4025873:25952256,0,0 +(1,5758:-473657,-710414:25952256,0,0 +h1,5758:-473657,-710414:0,0,0 +(1,5758:-473657,-710414:0,0,0 +(1,5758:-473657,-710414:0,0,0 +g1,5758:-473657,-710414 +(1,5758:-473657,-710414:65781,0,65781 +g1,5758:-407876,-710414 +[1,5758:-407876,-644633:0,0,0 ] ) -k1,5752:-473657,-710414:-65781 +k1,5758:-473657,-710414:-65781 ) ) -k1,5752:25478599,-710414:25952256 -g1,5752:25478599,-710414 +k1,5758:25478599,-710414:25952256 +g1,5758:25478599,-710414 ) ] ) -[1,5752:6630773,47279633:25952256,43253760,0 -[1,5752:6630773,4812305:25952256,786432,0 -(1,5752:6630773,4812305:25952256,505283,134348 -(1,5752:6630773,4812305:25952256,505283,134348 -g1,5752:3078558,4812305 -[1,5752:3078558,4812305:0,0,0 -(1,5752:3078558,2439708:0,1703936,0 -k1,5752:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5752:2537886,2439708:1179648,16384,0 +[1,5758:6630773,47279633:25952256,43253760,0 +[1,5758:6630773,4812305:25952256,786432,0 +(1,5758:6630773,4812305:25952256,505283,134348 +(1,5758:6630773,4812305:25952256,505283,134348 +g1,5758:3078558,4812305 +[1,5758:3078558,4812305:0,0,0 +(1,5758:3078558,2439708:0,1703936,0 +k1,5758:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5758:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5752:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5758:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5752:3078558,4812305:0,0,0 -(1,5752:3078558,2439708:0,1703936,0 -g1,5752:29030814,2439708 -g1,5752:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5752:36151628,1915420:16384,1179648,0 +[1,5758:3078558,4812305:0,0,0 +(1,5758:3078558,2439708:0,1703936,0 +g1,5758:29030814,2439708 +g1,5758:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5758:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5752:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5758:37855564,2439708:1179648,16384,0 ) ) -k1,5752:3078556,2439708:-34777008 +k1,5758:3078556,2439708:-34777008 ) ] -[1,5752:3078558,4812305:0,0,0 -(1,5752:3078558,49800853:0,16384,2228224 -k1,5752:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5752:2537886,49800853:1179648,16384,0 +[1,5758:3078558,4812305:0,0,0 +(1,5758:3078558,49800853:0,16384,2228224 +k1,5758:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5758:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5752:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5758:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5752:3078558,4812305:0,0,0 -(1,5752:3078558,49800853:0,16384,2228224 -g1,5752:29030814,49800853 -g1,5752:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5752:36151628,51504789:16384,1179648,0 +[1,5758:3078558,4812305:0,0,0 +(1,5758:3078558,49800853:0,16384,2228224 +g1,5758:29030814,49800853 +g1,5758:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5758:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5752:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5758:37855564,49800853:1179648,16384,0 ) ) -k1,5752:3078556,49800853:-34777008 +k1,5758:3078556,49800853:-34777008 ) ] -g1,5752:6630773,4812305 -k1,5752:18752969,4812305:11325278 -g1,5752:20139710,4812305 -g1,5752:20788516,4812305 -g1,5752:24102671,4812305 -g1,5752:28605649,4812305 -g1,5752:30015328,4812305 +g1,5758:6630773,4812305 +k1,5758:18771974,4812305:11344283 +g1,5758:20158715,4812305 +g1,5758:20807521,4812305 +g1,5758:24121676,4812305 +g1,5758:28605649,4812305 +g1,5758:30015328,4812305 ) ) ] -[1,5752:6630773,45706769:25952256,40108032,0 -(1,5752:6630773,45706769:25952256,40108032,0 -(1,5752:6630773,45706769:0,0,0 -g1,5752:6630773,45706769 +[1,5758:6630773,45706769:25952256,40108032,0 +(1,5758:6630773,45706769:25952256,40108032,0 +(1,5758:6630773,45706769:0,0,0 +g1,5758:6630773,45706769 ) -[1,5752:6630773,45706769:25952256,40108032,0 -v1,5700:6630773,6254097:0,393216,0 -(1,5701:6630773,9381617:25952256,3520736,616038 -g1,5701:6630773,9381617 -(1,5701:6630773,9381617:25952256,3520736,616038 -(1,5701:6630773,9997655:25952256,4136774,0 -[1,5701:6630773,9997655:25952256,4136774,0 -(1,5701:6630773,9971441:25952256,4084346,0 -r1,5701:6656987,9971441:26214,4084346,0 -[1,5701:6656987,9971441:25899828,4084346,0 -(1,5701:6656987,9381617:25899828,2904698,0 -[1,5701:7246811,9381617:24720180,2904698,0 -(1,5701:7246811,7564293:24720180,1087374,126483 -k1,5700:8661397,7564293:204883 -k1,5700:9764122,7564293:204882 -k1,5700:11311838,7564293:204883 -k1,5700:12910671,7564293:204882 -k1,5700:14134639,7564293:204883 -k1,5700:15432007,7564293:204883 -k1,5700:16296181,7564293:204882 -k1,5700:17520149,7564293:204883 -k1,5700:19782862,7564293:204883 -k1,5700:23347775,7564293:204882 -k1,5700:25099308,7564293:204883 -k1,5700:25916952,7564293:204882 -k1,5700:27140920,7564293:204883 -k1,5700:31966991,7564293:0 -) -(1,5701:7246811,8405781:24720180,513147,134348 -k1,5700:8357727,8405781:163265 -(1,5700:8357727,8405781:0,452978,115847 -r1,5701:11177976,8405781:2820249,568825,115847 -k1,5700:8357727,8405781:-2820249 -) -(1,5700:8357727,8405781:2820249,452978,115847 -k1,5700:8357727,8405781:3277 -h1,5700:11174699,8405781:0,411205,112570 -) -k1,5700:11341242,8405781:163266 -k1,5700:13239900,8405781:163265 -(1,5700:13239900,8405781:0,452978,115847 -r1,5701:17466996,8405781:4227096,568825,115847 -k1,5700:13239900,8405781:-4227096 -) -(1,5700:13239900,8405781:4227096,452978,115847 -k1,5700:13239900,8405781:3277 -h1,5700:17463719,8405781:0,411205,112570 -) -k1,5700:17630262,8405781:163266 -k1,5700:18984972,8405781:163265 -k1,5700:20932127,8405781:163265 -k1,5700:22114478,8405781:163266 -k1,5700:25269462,8405781:163265 -k1,5700:26045489,8405781:163265 -k1,5700:27227840,8405781:163266 -k1,5700:28574030,8405781:163265 -k1,5700:29396588,8405781:163266 -k1,5700:30578938,8405781:163265 -k1,5700:31966991,8405781:0 -) -(1,5701:7246811,9247269:24720180,355205,134348 -k1,5701:31966990,9247269:23048356 -g1,5701:31966990,9247269 -) -] -) -] -r1,5701:32583029,9971441:26214,4084346,0 -) -] -) -) -g1,5701:32583029,9381617 -) -h1,5701:6630773,9997655:0,0,0 -(1,5704:6630773,11230774:25952256,513147,115847 -h1,5703:6630773,11230774:983040,0,0 -k1,5703:9069655,11230774:259155 -(1,5703:9069655,11230774:0,452978,115847 -r1,5703:11889904,11230774:2820249,568825,115847 -k1,5703:9069655,11230774:-2820249 -) -(1,5703:9069655,11230774:2820249,452978,115847 -k1,5703:9069655,11230774:3277 -h1,5703:11886627,11230774:0,411205,112570 -) -k1,5703:12149059,11230774:259155 -k1,5703:15594574,11230774:259155 -k1,5703:16958011,11230774:259155 -k1,5703:20427119,11230774:259155 -k1,5703:21633925,11230774:259155 -k1,5703:24381482,11230774:259155 -(1,5703:24381482,11230774:0,459977,115847 -r1,5703:26850019,11230774:2468537,575824,115847 -k1,5703:24381482,11230774:-2468537 -) -(1,5703:24381482,11230774:2468537,459977,115847 -g1,5703:25439895,11230774 -h1,5703:26846742,11230774:0,411205,112570 -) -k1,5703:27109174,11230774:259155 -k1,5703:30884991,11230774:259155 -k1,5703:32583029,11230774:0 -) -(1,5704:6630773,12072262:25952256,513147,134348 -k1,5703:7625478,12072262:228589 -k1,5703:8873153,12072262:228590 -k1,5703:12464394,12072262:228589 -k1,5703:13684544,12072262:228590 -k1,5703:17997337,12072262:228589 -k1,5703:20515099,12072262:228589 -k1,5703:23506032,12072262:228590 -k1,5703:26492376,12072262:228589 -k1,5703:28905281,12072262:228590 -k1,5703:31966991,12072262:228589 -k1,5703:32583029,12072262:0 -) -(1,5704:6630773,12913750:25952256,505283,7863 -g1,5703:8480199,12913750 -g1,5703:11034792,12913750 -g1,5703:12425466,12913750 -g1,5703:14154961,12913750 -k1,5704:32583029,12913750:16758211 -g1,5704:32583029,12913750 -) -(1,5705:6630773,14541670:25952256,505283,115847 -(1,5705:6630773,14541670:2809528,485622,11795 -g1,5705:6630773,14541670 -g1,5705:9440301,14541670 -) -g1,5705:13214519,14541670 -(1,5705:13214519,14541670:0,459977,115847 -r1,5705:16034768,14541670:2820249,575824,115847 -k1,5705:13214519,14541670:-2820249 -) -(1,5705:13214519,14541670:2820249,459977,115847 -k1,5705:13214519,14541670:3277 -h1,5705:16031491,14541670:0,411205,112570 -) -k1,5705:32583029,14541670:16548261 -g1,5705:32583029,14541670 -) -(1,5709:6630773,15776374:25952256,513147,134348 -k1,5707:10252481,15776374:183689 -k1,5707:12031316,15776374:183689 -k1,5707:12746502,15776374:183689 -k1,5707:13286051,15776374:183689 -k1,5707:16855986,15776374:183690 -k1,5707:17698967,15776374:183689 -k1,5707:18901741,15776374:183689 -k1,5707:19500257,15776374:183673 -k1,5707:22699913,15776374:183689 -k1,5707:23955772,15776374:183690 -k1,5707:25493435,15776374:183689 -k1,5707:27654345,15776374:183689 -k1,5707:28785685,15776374:183689 -k1,5707:31227089,15776374:183689 -k1,5709:32583029,15776374:0 -) -(1,5709:6630773,16617862:25952256,513147,134348 -k1,5707:7996325,16617862:153136 -k1,5707:9645647,16617862:153135 -k1,5707:11083289,16617862:153136 -k1,5707:12573359,16617862:153136 -k1,5707:15138875,16617862:153136 -k1,5707:17135538,16617862:153135 -k1,5707:18731121,16617862:153136 -k1,5707:21520115,16617862:153136 -k1,5707:24978232,16617862:153136 -k1,5707:26203536,16617862:153135 -k1,5707:27422943,16617862:153136 -k1,5707:30913172,16617862:153136 -k1,5707:32583029,16617862:0 -) -(1,5709:6630773,17459350:25952256,513147,126483 -k1,5708:10268326,17459350:199534 -k1,5708:14061198,17459350:199533 -k1,5708:17336337,17459350:199534 -k1,5708:18067367,17459350:199533 -k1,5708:20183829,17459350:199534 -k1,5708:21144890,17459350:199533 -k1,5708:23412740,17459350:199534 -k1,5708:24271565,17459350:199533 -k1,5708:27069602,17459350:199534 -(1,5708:27069602,17459350:0,459977,115847 -r1,5708:29889851,17459350:2820249,575824,115847 -k1,5708:27069602,17459350:-2820249 -) -(1,5708:27069602,17459350:2820249,459977,115847 -k1,5708:27069602,17459350:3277 -h1,5708:29886574,17459350:0,411205,112570 -) -k1,5708:30089384,17459350:199533 -k1,5708:32583029,17459350:0 -) -(1,5709:6630773,18300838:25952256,513147,134348 -k1,5708:7562930,18300838:245995 -k1,5708:8164786,18300838:245996 -k1,5708:10283800,18300838:245995 -k1,5708:12535197,18300838:245995 -k1,5708:14162036,18300838:245995 -k1,5708:17103528,18300838:245996 -k1,5708:19032488,18300838:245995 -k1,5708:20933267,18300838:245995 -k1,5708:24755562,18300838:245995 -k1,5708:25357418,18300838:245996 -(1,5708:25357418,18300838:0,452978,122846 -r1,5708:27825955,18300838:2468537,575824,122846 -k1,5708:25357418,18300838:-2468537 -) -(1,5708:25357418,18300838:2468537,452978,122846 -k1,5708:25357418,18300838:3277 -h1,5708:27822678,18300838:0,411205,112570 -) -k1,5708:28071950,18300838:245995 -k1,5708:30295822,18300838:245995 -k1,5708:32583029,18300838:0 -) -(1,5709:6630773,19142326:25952256,513147,126483 -k1,5708:7823886,19142326:174028 -k1,5708:9840786,19142326:174028 -k1,5708:10674105,19142326:174027 -k1,5708:11203993,19142326:174028 -k1,5708:12569466,19142326:174028 -k1,5708:16231320,19142326:174028 -(1,5708:16231320,19142326:0,414482,115847 -r1,5708:17644721,19142326:1413401,530329,115847 -k1,5708:16231320,19142326:-1413401 -) -(1,5708:16231320,19142326:1413401,414482,115847 -k1,5708:16231320,19142326:3277 -h1,5708:17641444,19142326:0,411205,112570 -) -k1,5708:18199512,19142326:174027 -k1,5708:18729400,19142326:174028 -k1,5708:20746300,19142326:174028 -k1,5708:22898205,19142326:174028 -k1,5708:24019884,19142326:174028 -(1,5708:24019884,19142326:0,414482,115847 -r1,5708:25433285,19142326:1413401,530329,115847 -k1,5708:24019884,19142326:-1413401 -) -(1,5708:24019884,19142326:1413401,414482,115847 -k1,5708:24019884,19142326:3277 -h1,5708:25430008,19142326:0,411205,112570 -) -k1,5708:25607312,19142326:174027 -k1,5708:27478722,19142326:174028 -k1,5708:31140576,19142326:174028 -(1,5708:31140576,19142326:0,414482,115847 -r1,5708:32202265,19142326:1061689,530329,115847 -k1,5708:31140576,19142326:-1061689 -) -(1,5708:31140576,19142326:1061689,414482,115847 -k1,5708:31140576,19142326:3277 -h1,5708:32198988,19142326:0,411205,112570 -) -k1,5708:32583029,19142326:0 -) -(1,5709:6630773,19983814:25952256,513147,134348 -k1,5708:7984528,19983814:162310 -k1,5708:8502698,19983814:162310 -k1,5708:10507879,19983814:162309 -k1,5708:12648066,19983814:162310 -k1,5708:13758027,19983814:162310 -(1,5708:13758027,19983814:0,414482,115847 -r1,5708:15523140,19983814:1765113,530329,115847 -k1,5708:13758027,19983814:-1765113 -) -(1,5708:13758027,19983814:1765113,414482,115847 -k1,5708:13758027,19983814:3277 -h1,5708:15519863,19983814:0,411205,112570 -) -k1,5708:15685450,19983814:162310 -k1,5708:17545141,19983814:162309 -k1,5708:21195277,19983814:162310 -(1,5708:21195277,19983814:0,414482,115847 -r1,5708:21905255,19983814:709978,530329,115847 -k1,5708:21195277,19983814:-709978 -) -(1,5708:21195277,19983814:709978,414482,115847 -k1,5708:21195277,19983814:3277 -h1,5708:21901978,19983814:0,411205,112570 -) -k1,5708:22448329,19983814:162310 -k1,5708:23355128,19983814:162310 -k1,5708:24969060,19983814:162310 -k1,5708:26880525,19983814:162309 -k1,5708:29657066,19983814:162310 -k1,5708:31563944,19983814:162310 -k1,5708:32583029,19983814:0 -) -(1,5709:6630773,20825302:25952256,513147,115847 -k1,5708:9303315,20825302:190694 -k1,5708:10513093,20825302:190693 -k1,5708:12384130,20825302:190694 -k1,5708:15333234,20825302:190694 -k1,5708:16139966,20825302:190694 -k1,5708:17349744,20825302:190693 -k1,5708:20319165,20825302:190694 -k1,5708:22487736,20825302:190694 -k1,5708:23209927,20825302:190694 -k1,5708:25168126,20825302:190693 -k1,5708:26926441,20825302:190694 -(1,5708:26926441,20825302:0,414482,115847 -r1,5708:27988130,20825302:1061689,530329,115847 -k1,5708:26926441,20825302:-1061689 -) -(1,5708:26926441,20825302:1061689,414482,115847 -k1,5708:26926441,20825302:3277 -h1,5708:27984853,20825302:0,411205,112570 -) -k1,5708:28178824,20825302:190694 -k1,5708:28843343,20825302:190694 -(1,5708:28843343,20825302:0,414482,115847 -r1,5708:30256744,20825302:1413401,530329,115847 -k1,5708:28843343,20825302:-1413401 -) -(1,5708:28843343,20825302:1413401,414482,115847 -k1,5708:28843343,20825302:3277 -h1,5708:30253467,20825302:0,411205,112570 -) -k1,5708:30447437,20825302:190693 -k1,5708:31169628,20825302:190694 -(1,5708:31169628,20825302:0,414482,115847 -r1,5708:32583029,20825302:1413401,530329,115847 -k1,5708:31169628,20825302:-1413401 -) -(1,5708:31169628,20825302:1413401,414482,115847 -k1,5708:31169628,20825302:3277 -h1,5708:32579752,20825302:0,411205,112570 -) -k1,5708:32583029,20825302:0 -) -(1,5709:6630773,21666790:25952256,513147,134348 -k1,5708:7994520,21666790:172302 -k1,5708:9734442,21666790:172301 -(1,5708:9734442,21666790:0,414482,115847 -r1,5708:10444420,21666790:709978,530329,115847 -k1,5708:9734442,21666790:-709978 -) -(1,5708:9734442,21666790:709978,414482,115847 -k1,5708:9734442,21666790:3277 -h1,5708:10441143,21666790:0,411205,112570 -) -k1,5708:10616722,21666790:172302 -k1,5708:11262849,21666790:172302 -(1,5708:11262849,21666790:0,414482,115847 -r1,5708:12676250,21666790:1413401,530329,115847 -k1,5708:11262849,21666790:-1413401 -) -(1,5708:11262849,21666790:1413401,414482,115847 -k1,5708:11262849,21666790:3277 -h1,5708:12672973,21666790:0,411205,112570 -) -k1,5708:12848551,21666790:172301 -k1,5708:13552350,21666790:172302 -(1,5708:13552350,21666790:0,414482,115847 -r1,5708:15317463,21666790:1765113,530329,115847 -k1,5708:13552350,21666790:-1765113 -) -(1,5708:13552350,21666790:1765113,414482,115847 -k1,5708:13552350,21666790:3277 -h1,5708:15314186,21666790:0,411205,112570 -) -k1,5708:15663435,21666790:172302 -k1,5708:16733579,21666790:172301 -k1,5708:18560665,21666790:172302 -k1,5708:22135595,21666790:172301 -k1,5708:23412179,21666790:172302 -k1,5708:24332247,21666790:172302 -k1,5708:25636355,21666790:172301 -k1,5708:26223473,21666790:172275 -k1,5708:29582135,21666790:172302 -k1,5708:32583029,21666790:0 -) -(1,5709:6630773,22508278:25952256,513147,134348 -k1,5708:7839811,22508278:189953 -k1,5708:10742299,22508278:189953 -k1,5708:13083799,22508278:189953 -k1,5708:13901587,22508278:189953 -k1,5708:15110625,22508278:189953 -k1,5708:16667659,22508278:189953 -k1,5708:17516904,22508278:189953 -k1,5708:20015035,22508278:189953 -k1,5708:22410275,22508278:189953 -k1,5708:23286390,22508278:189953 -k1,5708:26878972,22508278:189953 -k1,5708:27720353,22508278:189953 -k1,5708:31521340,22508278:189953 -(1,5708:31521340,22508278:0,414482,115847 -r1,5708:32583029,22508278:1061689,530329,115847 -k1,5708:31521340,22508278:-1061689 -) -(1,5708:31521340,22508278:1061689,414482,115847 -k1,5708:31521340,22508278:3277 -h1,5708:32579752,22508278:0,411205,112570 -) -k1,5708:32583029,22508278:0 -) -(1,5709:6630773,23349766:25952256,513147,134348 -k1,5708:8036317,23349766:214099 -(1,5708:8036317,23349766:0,414482,115847 -r1,5708:8746295,23349766:709978,530329,115847 -k1,5708:8036317,23349766:-709978 -) -(1,5708:8036317,23349766:709978,414482,115847 -k1,5708:8036317,23349766:3277 -h1,5708:8743018,23349766:0,411205,112570 -) -k1,5708:9134065,23349766:214100 -k1,5708:12207500,23349766:214099 -k1,5708:13554062,23349766:214100 -k1,5708:15120824,23349766:214099 -k1,5708:16997572,23349766:214100 -k1,5708:17677632,23349766:214099 -k1,5708:19271919,23349766:214099 -k1,5708:20477579,23349766:214100 -k1,5708:23012308,23349766:214099 -k1,5708:24668855,23349766:214100 -k1,5708:25902039,23349766:214099 -k1,5708:28185766,23349766:214100 -k1,5708:30377742,23349766:214099 -k1,5708:32583029,23349766:0 -) -(1,5709:6630773,24191254:25952256,513147,134348 -k1,5708:7545974,24191254:229039 -k1,5708:10847342,24191254:229040 -k1,5708:11727809,24191254:229039 -(1,5708:11727809,24191254:0,414482,115847 -r1,5708:13141210,24191254:1413401,530329,115847 -k1,5708:11727809,24191254:-1413401 -) -(1,5708:11727809,24191254:1413401,414482,115847 -k1,5708:11727809,24191254:3277 -h1,5708:13137933,24191254:0,411205,112570 -) -k1,5708:13543919,24191254:229039 -k1,5708:14659660,24191254:229039 -k1,5708:17748036,24191254:229040 -k1,5708:19317286,24191254:229039 -k1,5708:21827633,24191254:229039 -k1,5708:22708100,24191254:229039 -(1,5708:22708100,24191254:0,414482,115847 -r1,5708:24121501,24191254:1413401,530329,115847 -k1,5708:22708100,24191254:-1413401 -) -(1,5708:22708100,24191254:1413401,414482,115847 -k1,5708:22708100,24191254:3277 -h1,5708:24118224,24191254:0,411205,112570 -) -k1,5708:24524211,24191254:229040 -k1,5708:26219946,24191254:229039 -k1,5708:26922810,24191254:229039 -(1,5708:26922810,24191254:0,414482,115847 -r1,5708:27984499,24191254:1061689,530329,115847 -k1,5708:26922810,24191254:-1061689 -) -(1,5708:26922810,24191254:1061689,414482,115847 -k1,5708:26922810,24191254:3277 -h1,5708:27981222,24191254:0,411205,112570 -) -k1,5708:28213538,24191254:229039 -k1,5708:30652452,24191254:229040 -(1,5708:30652452,24191254:0,414482,115847 -r1,5708:31362430,24191254:709978,530329,115847 -k1,5708:30652452,24191254:-709978 -) -(1,5708:30652452,24191254:709978,414482,115847 -k1,5708:30652452,24191254:3277 -h1,5708:31359153,24191254:0,411205,112570 -) -k1,5708:31591469,24191254:229039 -k1,5708:32583029,24191254:0 -) -(1,5709:6630773,25032742:25952256,505283,134348 -k1,5708:8833686,25032742:178506 -k1,5708:10454639,25032742:178506 -(1,5708:10454639,25032742:0,414482,115847 -r1,5708:11868040,25032742:1413401,530329,115847 -k1,5708:10454639,25032742:-1413401 -) -(1,5708:10454639,25032742:1413401,414482,115847 -k1,5708:10454639,25032742:3277 -h1,5708:11864763,25032742:0,411205,112570 -) -k1,5708:12220216,25032742:178506 -k1,5708:12868616,25032742:178507 -k1,5708:13578619,25032742:178506 -k1,5708:17112568,25032742:178506 -k1,5708:17942502,25032742:178506 -k1,5708:19558213,25032742:178506 -k1,5708:23139348,25032742:178506 -k1,5708:23969282,25032742:178506 -(1,5708:23969282,25032742:0,459977,115847 -r1,5708:26086107,25032742:2116825,575824,115847 -k1,5708:23969282,25032742:-2116825 -) -(1,5708:23969282,25032742:2116825,459977,115847 -k1,5708:23969282,25032742:3277 -h1,5708:26082830,25032742:0,411205,112570 -) -k1,5708:26264614,25032742:178507 -k1,5708:27204648,25032742:178506 -k1,5708:30171056,25032742:178506 -k1,5708:31303111,25032742:178506 -k1,5708:32583029,25032742:0 -) -(1,5709:6630773,25874230:25952256,513147,134348 -g1,5708:7185862,25874230 -g1,5708:8691224,25874230 -g1,5708:11551870,25874230 -g1,5708:13145050,25874230 -g1,5708:15503035,25874230 -g1,5708:19104893,25874230 -g1,5708:19955550,25874230 -g1,5708:22164768,25874230 -g1,5708:23383082,25874230 -g1,5708:24674796,25874230 -g1,5708:25533317,25874230 -g1,5708:26751631,25874230 -k1,5709:32583029,25874230:2962232 -g1,5709:32583029,25874230 -) -v1,5711:6630773,26932040:0,393216,0 -(1,5719:6630773,28613571:25952256,2074747,196608 -g1,5719:6630773,28613571 -g1,5719:6630773,28613571 -g1,5719:6434165,28613571 -(1,5719:6434165,28613571:0,2074747,196608 -r1,5719:32779637,28613571:26345472,2271355,196608 -k1,5719:6434165,28613571:-26345472 -) -(1,5719:6434165,28613571:26345472,2074747,196608 -[1,5719:6630773,28613571:25952256,1878139,0 -(1,5713:6630773,27139658:25952256,404226,101187 -(1,5712:6630773,27139658:0,0,0 -g1,5712:6630773,27139658 -g1,5712:6630773,27139658 -g1,5712:6303093,27139658 -(1,5712:6303093,27139658:0,0,0 -) -g1,5712:6630773,27139658 -) -g1,5713:9159939,27139658 -g1,5713:10108377,27139658 -g1,5713:12637544,27139658 -g1,5713:14850564,27139658 -g1,5713:16747439,27139658 -h1,5713:18328168,27139658:0,0,0 -k1,5713:32583029,27139658:14254861 -g1,5713:32583029,27139658 -) -(1,5714:6630773,27805836:25952256,410518,101187 -h1,5714:6630773,27805836:0,0,0 -g1,5714:10424522,27805836 -g1,5714:11056814,27805836 -g1,5714:13902126,27805836 -g1,5714:15166709,27805836 -g1,5714:15799001,27805836 -g1,5714:16747439,27805836 -g1,5714:17695876,27805836 -g1,5714:18328168,27805836 -k1,5714:18328168,27805836:0 -h1,5714:19276606,27805836:0,0,0 -k1,5714:32583029,27805836:13306423 -g1,5714:32583029,27805836 -) -(1,5718:6630773,28537550:25952256,404226,76021 -(1,5716:6630773,28537550:0,0,0 -g1,5716:6630773,28537550 -g1,5716:6630773,28537550 -g1,5716:6303093,28537550 -(1,5716:6303093,28537550:0,0,0 -) -g1,5716:6630773,28537550 -) -g1,5718:7579210,28537550 -g1,5718:8843793,28537550 -g1,5718:9159939,28537550 -g1,5718:9792231,28537550 -g1,5718:10740668,28537550 -g1,5718:11056814,28537550 -g1,5718:11689106,28537550 -g1,5718:12005252,28537550 -h1,5718:12321398,28537550:0,0,0 -k1,5718:32583030,28537550:20261632 -g1,5718:32583030,28537550 -) -] -) -g1,5719:32583029,28613571 -g1,5719:6630773,28613571 -g1,5719:6630773,28613571 -g1,5719:32583029,28613571 -g1,5719:32583029,28613571 -) -h1,5719:6630773,28810179:0,0,0 -(1,5723:6630773,30043298:25952256,505283,134348 -h1,5722:6630773,30043298:983040,0,0 -k1,5722:8439020,30043298:197372 -k1,5722:11347616,30043298:197372 -k1,5722:12564073,30043298:197372 -k1,5722:14363145,30043298:197372 -k1,5722:17337933,30043298:197372 -k1,5722:19372935,30043298:197372 -k1,5722:20101803,30043298:197371 -k1,5722:20950603,30043298:197372 -k1,5722:22623190,30043298:197372 -k1,5722:23506724,30043298:197372 -k1,5722:24474799,30043298:197372 -k1,5722:27744499,30043298:197372 -k1,5722:30147158,30043298:197372 -k1,5722:30995958,30043298:197372 -(1,5722:30995958,30043298:0,414482,115847 -r1,5722:32409359,30043298:1413401,530329,115847 -k1,5722:30995958,30043298:-1413401 -) -(1,5722:30995958,30043298:1413401,414482,115847 -k1,5722:30995958,30043298:3277 -h1,5722:32406082,30043298:0,411205,112570 -) -k1,5722:32583029,30043298:0 -) -(1,5723:6630773,30884786:25952256,513147,126483 -k1,5722:7865846,30884786:215988 -k1,5722:9924706,30884786:215988 -k1,5722:10799986,30884786:215988 -k1,5722:11371833,30884786:215987 -k1,5722:15341723,30884786:215988 -k1,5722:18786670,30884786:215988 -k1,5722:19812028,30884786:215988 -k1,5722:21047101,30884786:215988 -k1,5722:22232366,30884786:215988 -k1,5722:23076189,30884786:215988 -k1,5722:24311261,30884786:215987 -k1,5722:25833382,30884786:215988 -k1,5722:28710787,30884786:215988 -k1,5722:29795127,30884786:215988 -k1,5722:32583029,30884786:0 -) -(1,5723:6630773,31726274:25952256,513147,126483 -g1,5722:7849087,31726274 -g1,5722:10753642,31726274 -g1,5722:12963516,31726274 -g1,5722:14110396,31726274 -g1,5722:14665485,31726274 -g1,5722:17016261,31726274 -g1,5722:20520471,31726274 -g1,5722:21371128,31726274 -g1,5722:22854863,31726274 -g1,5722:25832819,31726274 -g1,5722:26793576,31726274 -g1,5722:27407648,31726274 -g1,5722:30302373,31726274 -(1,5722:30302373,31726274:0,452978,115847 -r1,5722:32067486,31726274:1765113,568825,115847 -k1,5722:30302373,31726274:-1765113 -) -(1,5722:30302373,31726274:1765113,452978,115847 -k1,5722:30302373,31726274:3277 -h1,5722:32064209,31726274:0,411205,112570 -) -k1,5723:32583029,31726274:341873 -g1,5723:32583029,31726274 -) -v1,5725:6630773,32784084:0,393216,0 -(1,5733:6630773,34449886:25952256,2059018,196608 -g1,5733:6630773,34449886 -g1,5733:6630773,34449886 -g1,5733:6434165,34449886 -(1,5733:6434165,34449886:0,2059018,196608 -r1,5733:32779637,34449886:26345472,2255626,196608 -k1,5733:6434165,34449886:-26345472 -) -(1,5733:6434165,34449886:26345472,2059018,196608 -[1,5733:6630773,34449886:25952256,1862410,0 -(1,5727:6630773,32975973:25952256,388497,9436 -(1,5726:6630773,32975973:0,0,0 -g1,5726:6630773,32975973 -g1,5726:6630773,32975973 -g1,5726:6303093,32975973 -(1,5726:6303093,32975973:0,0,0 -) -g1,5726:6630773,32975973 -) -g1,5727:8211502,32975973 -g1,5727:9159940,32975973 -k1,5727:9159940,32975973:0 -h1,5727:10740669,32975973:0,0,0 -k1,5727:32583029,32975973:21842360 -g1,5727:32583029,32975973 -) -(1,5728:6630773,33642151:25952256,410518,82312 -h1,5728:6630773,33642151:0,0,0 -g1,5728:10424521,33642151 -g1,5728:11056813,33642151 -g1,5728:12005251,33642151 -g1,5728:14218272,33642151 -h1,5728:15799000,33642151:0,0,0 -k1,5728:32583028,33642151:16784028 -g1,5728:32583028,33642151 -) -(1,5732:6630773,34373865:25952256,404226,76021 -(1,5730:6630773,34373865:0,0,0 -g1,5730:6630773,34373865 -g1,5730:6630773,34373865 -g1,5730:6303093,34373865 -(1,5730:6303093,34373865:0,0,0 -) -g1,5730:6630773,34373865 -) -g1,5732:7579210,34373865 -g1,5732:8843793,34373865 -g1,5732:9476085,34373865 -g1,5732:10108377,34373865 -g1,5732:10740669,34373865 -g1,5732:11372961,34373865 -g1,5732:12005253,34373865 -g1,5732:12637545,34373865 -h1,5732:12953691,34373865:0,0,0 -k1,5732:32583029,34373865:19629338 -g1,5732:32583029,34373865 -) -] -) -g1,5733:32583029,34449886 -g1,5733:6630773,34449886 -g1,5733:6630773,34449886 -g1,5733:32583029,34449886 -g1,5733:32583029,34449886 -) -h1,5733:6630773,34646494:0,0,0 -v1,5737:6630773,36271245:0,393216,0 -(1,5752:6630773,45116945:25952256,9238916,589824 -g1,5752:6630773,45116945 -(1,5752:6630773,45116945:25952256,9238916,589824 -(1,5752:6630773,45706769:25952256,9828740,0 -[1,5752:6630773,45706769:25952256,9828740,0 -(1,5752:6630773,45706769:25952256,9802526,0 -r1,5752:6656987,45706769:26214,9802526,0 -[1,5752:6656987,45706769:25899828,9802526,0 -(1,5752:6656987,45116945:25899828,8622878,0 -[1,5752:7246811,45116945:24720180,8622878,0 -(1,5738:7246811,37581441:24720180,1087374,126483 -k1,5737:8721232,37581441:264718 -k1,5737:10702994,37581441:264719 -k1,5737:14194705,37581441:264718 -k1,5737:17451142,37581441:264718 -k1,5737:18367289,37581441:264719 -k1,5737:19974840,37581441:264718 -k1,5737:21807179,37581441:264718 -k1,5737:23465849,37581441:264719 -k1,5737:24086427,37581441:264718 -k1,5737:25484263,37581441:264718 -k1,5737:28874394,37581441:264719 -k1,5737:30947906,37581441:264718 -k1,5737:31966991,37581441:0 -) -(1,5738:7246811,38422929:24720180,505283,126483 -k1,5737:10453071,38422929:214541 -k1,5737:12536043,38422929:214541 -k1,5737:14243494,38422929:214541 -k1,5737:15628508,38422929:214541 -k1,5737:19507822,38422929:214541 -k1,5737:21019320,38422929:214540 -k1,5737:24012588,38422929:214541 -k1,5737:26237774,38422929:214541 -k1,5737:27443875,38422929:214541 -k1,5737:29207032,38422929:214541 -k1,5737:30801761,38422929:214541 -k1,5737:31966991,38422929:0 -) -(1,5738:7246811,39264417:24720180,505283,126483 -k1,5737:8138538,39264417:263892 -k1,5737:11242104,39264417:263891 -k1,5737:13435376,39264417:263892 -k1,5737:15158098,39264417:263891 -k1,5737:16752371,39264417:263892 -k1,5737:20007981,39264417:263891 -k1,5737:20923301,39264417:263892 -k1,5737:22378637,39264417:263891 -k1,5737:24344499,39264417:263892 -k1,5737:27238350,39264417:263891 -k1,5737:29373295,39264417:263892 -k1,5737:30265021,39264417:263891 -k1,5737:31966991,39264417:0 -) -(1,5738:7246811,40105905:24720180,513147,126483 -g1,5737:9574649,40105905 -g1,5737:11116711,40105905 -g1,5737:12709891,40105905 -g1,5737:13928205,40105905 -g1,5737:15623621,40105905 -g1,5737:17315760,40105905 -g1,5737:18685462,40105905 -g1,5737:20335658,40105905 -g1,5737:24199660,40105905 -g1,5737:25729270,40105905 -(1,5737:25729270,40105905:0,459977,115847 -r1,5752:27846095,40105905:2116825,575824,115847 -k1,5737:25729270,40105905:-2116825 -) -(1,5737:25729270,40105905:2116825,459977,115847 -k1,5737:25729270,40105905:3277 -h1,5737:27842818,40105905:0,411205,112570 -) -g1,5737:28045324,40105905 -k1,5738:31966991,40105905:1821238 -g1,5738:31966991,40105905 -) -v1,5740:7246811,41296371:0,393216,0 -(1,5749:7246811,44920337:24720180,4017182,196608 -g1,5749:7246811,44920337 -g1,5749:7246811,44920337 -g1,5749:7050203,44920337 -(1,5749:7050203,44920337:0,4017182,196608 -r1,5752:32163599,44920337:25113396,4213790,196608 -k1,5749:7050203,44920337:-25113396 -) -(1,5749:7050203,44920337:25113396,4017182,196608 -[1,5749:7246811,44920337:24720180,3820574,0 -(1,5742:7246811,41488260:24720180,388497,9436 -(1,5741:7246811,41488260:0,0,0 -g1,5741:7246811,41488260 -g1,5741:7246811,41488260 -g1,5741:6919131,41488260 -(1,5741:6919131,41488260:0,0,0 -) -g1,5741:7246811,41488260 -) -g1,5742:7879103,41488260 -g1,5742:8827541,41488260 -h1,5742:10092124,41488260:0,0,0 -k1,5742:31966992,41488260:21874868 -g1,5742:31966992,41488260 -) -(1,5743:7246811,42154438:24720180,410518,82312 -h1,5743:7246811,42154438:0,0,0 -g1,5743:10092122,42154438 -g1,5743:10724414,42154438 -g1,5743:11672852,42154438 -g1,5743:12621290,42154438 -k1,5743:12621290,42154438:0 -h1,5743:13569728,42154438:0,0,0 -k1,5743:31966992,42154438:18397264 -g1,5743:31966992,42154438 -) -(1,5744:7246811,42820616:24720180,410518,82312 -h1,5744:7246811,42820616:0,0,0 -g1,5744:10092122,42820616 -g1,5744:10724414,42820616 -g1,5744:11672852,42820616 -g1,5744:12305144,42820616 -g1,5744:12937436,42820616 -g1,5744:13885874,42820616 -g1,5744:14518166,42820616 -g1,5744:15150458,42820616 -h1,5744:15782750,42820616:0,0,0 -k1,5744:31966991,42820616:16184241 -g1,5744:31966991,42820616 -) -(1,5745:7246811,43486794:24720180,410518,101187 -h1,5745:7246811,43486794:0,0,0 -g1,5745:11356705,43486794 -g1,5745:11988997,43486794 -g1,5745:13253581,43486794 -g1,5745:13885873,43486794 -g1,5745:14518165,43486794 -g1,5745:15466603,43486794 -g1,5745:16098895,43486794 -g1,5745:16731187,43486794 -g1,5745:17679625,43486794 -g1,5745:18311917,43486794 -k1,5745:18311917,43486794:41419 -h1,5745:20250210,43486794:0,0,0 -k1,5745:31966991,43486794:11716781 -g1,5745:31966991,43486794 -) -(1,5746:7246811,44152972:24720180,410518,107478 -h1,5746:7246811,44152972:0,0,0 -g1,5746:13253581,44152972 -g1,5746:13885873,44152972 -g1,5746:14518165,44152972 -g1,5746:15466603,44152972 -g1,5746:16098895,44152972 -g1,5746:16731187,44152972 -g1,5746:17679625,44152972 -g1,5746:18311917,44152972 -g1,5746:19892646,44152972 -g1,5746:21473375,44152972 -k1,5746:21473375,44152972:41419 -h1,5746:23411668,44152972:0,0,0 -k1,5746:31966991,44152972:8555323 -g1,5746:31966991,44152972 -) -(1,5747:7246811,44819150:24720180,410518,101187 -h1,5747:7246811,44819150:0,0,0 -g1,5747:10724414,44819150 -g1,5747:11356706,44819150 -g1,5747:11988998,44819150 -g1,5747:12937436,44819150 -g1,5747:13569728,44819150 -g1,5747:14202020,44819150 -g1,5747:15150458,44819150 -g1,5747:15782750,44819150 -g1,5747:16731187,44819150 -k1,5747:16731187,44819150:39846 -h1,5747:19300198,44819150:0,0,0 -k1,5747:31966991,44819150:12666793 -g1,5747:31966991,44819150 -) -] -) -g1,5749:31966991,44920337 -g1,5749:7246811,44920337 -g1,5749:7246811,44920337 -g1,5749:31966991,44920337 -g1,5749:31966991,44920337 -) -h1,5749:7246811,45116945:0,0,0 -] -) -] -r1,5752:32583029,45706769:26214,9802526,0 -) -] -) -) -g1,5752:32583029,45116945 -) -] -(1,5752:32583029,45706769:0,0,0 -g1,5752:32583029,45706769 -) -) -] -(1,5752:6630773,47279633:25952256,0,0 -h1,5752:6630773,47279633:25952256,0,0 -) -] -h1,5752:4262630,4025873:0,0,0 +[1,5758:6630773,45706769:25952256,40108032,0 +v1,5706:6630773,6254097:0,393216,0 +(1,5707:6630773,9381617:25952256,3520736,616038 +g1,5707:6630773,9381617 +(1,5707:6630773,9381617:25952256,3520736,616038 +(1,5707:6630773,9997655:25952256,4136774,0 +[1,5707:6630773,9997655:25952256,4136774,0 +(1,5707:6630773,9971441:25952256,4084346,0 +r1,5707:6656987,9971441:26214,4084346,0 +[1,5707:6656987,9971441:25899828,4084346,0 +(1,5707:6656987,9381617:25899828,2904698,0 +[1,5707:7246811,9381617:24720180,2904698,0 +(1,5707:7246811,7564293:24720180,1087374,126483 +k1,5706:8661397,7564293:204883 +k1,5706:9764122,7564293:204882 +k1,5706:11311838,7564293:204883 +k1,5706:12910671,7564293:204882 +k1,5706:14134639,7564293:204883 +k1,5706:15432007,7564293:204883 +k1,5706:16296181,7564293:204882 +k1,5706:17520149,7564293:204883 +k1,5706:19782862,7564293:204883 +k1,5706:23347775,7564293:204882 +k1,5706:25099308,7564293:204883 +k1,5706:25916952,7564293:204882 +k1,5706:27140920,7564293:204883 +k1,5706:31966991,7564293:0 +) +(1,5707:7246811,8405781:24720180,513147,134348 +k1,5706:8357727,8405781:163265 +(1,5706:8357727,8405781:0,452978,115847 +r1,5707:11177976,8405781:2820249,568825,115847 +k1,5706:8357727,8405781:-2820249 +) +(1,5706:8357727,8405781:2820249,452978,115847 +k1,5706:8357727,8405781:3277 +h1,5706:11174699,8405781:0,411205,112570 +) +k1,5706:11341242,8405781:163266 +k1,5706:13239900,8405781:163265 +(1,5706:13239900,8405781:0,452978,115847 +r1,5707:17466996,8405781:4227096,568825,115847 +k1,5706:13239900,8405781:-4227096 +) +(1,5706:13239900,8405781:4227096,452978,115847 +k1,5706:13239900,8405781:3277 +h1,5706:17463719,8405781:0,411205,112570 +) +k1,5706:17630262,8405781:163266 +k1,5706:18984972,8405781:163265 +k1,5706:20932127,8405781:163265 +k1,5706:22114478,8405781:163266 +k1,5706:25269462,8405781:163265 +k1,5706:26045489,8405781:163265 +k1,5706:27227840,8405781:163266 +k1,5706:28574030,8405781:163265 +k1,5706:29396588,8405781:163266 +k1,5706:30578938,8405781:163265 +k1,5706:31966991,8405781:0 +) +(1,5707:7246811,9247269:24720180,355205,134348 +k1,5707:31966990,9247269:23048356 +g1,5707:31966990,9247269 +) +] +) +] +r1,5707:32583029,9971441:26214,4084346,0 +) +] +) +) +g1,5707:32583029,9381617 +) +h1,5707:6630773,9997655:0,0,0 +(1,5710:6630773,11230774:25952256,513147,115847 +h1,5709:6630773,11230774:983040,0,0 +k1,5709:9069655,11230774:259155 +(1,5709:9069655,11230774:0,452978,115847 +r1,5709:11889904,11230774:2820249,568825,115847 +k1,5709:9069655,11230774:-2820249 +) +(1,5709:9069655,11230774:2820249,452978,115847 +k1,5709:9069655,11230774:3277 +h1,5709:11886627,11230774:0,411205,112570 +) +k1,5709:12149059,11230774:259155 +k1,5709:15594574,11230774:259155 +k1,5709:16958011,11230774:259155 +k1,5709:20427119,11230774:259155 +k1,5709:21633925,11230774:259155 +k1,5709:24381482,11230774:259155 +(1,5709:24381482,11230774:0,459977,115847 +r1,5709:26850019,11230774:2468537,575824,115847 +k1,5709:24381482,11230774:-2468537 +) +(1,5709:24381482,11230774:2468537,459977,115847 +g1,5709:25439895,11230774 +h1,5709:26846742,11230774:0,411205,112570 +) +k1,5709:27109174,11230774:259155 +k1,5709:30884991,11230774:259155 +k1,5709:32583029,11230774:0 +) +(1,5710:6630773,12072262:25952256,513147,134348 +k1,5709:7625478,12072262:228589 +k1,5709:8873153,12072262:228590 +k1,5709:12464394,12072262:228589 +k1,5709:13684544,12072262:228590 +k1,5709:17997337,12072262:228589 +k1,5709:20515099,12072262:228589 +k1,5709:23506032,12072262:228590 +k1,5709:26492376,12072262:228589 +k1,5709:28905281,12072262:228590 +k1,5709:31966991,12072262:228589 +k1,5709:32583029,12072262:0 +) +(1,5710:6630773,12913750:25952256,505283,7863 +g1,5709:8480199,12913750 +g1,5709:11034792,12913750 +g1,5709:12425466,12913750 +g1,5709:14154961,12913750 +k1,5710:32583029,12913750:16758211 +g1,5710:32583029,12913750 +) +(1,5711:6630773,14541670:25952256,505283,115847 +(1,5711:6630773,14541670:2809528,485622,11795 +g1,5711:6630773,14541670 +g1,5711:9440301,14541670 +) +g1,5711:13214519,14541670 +(1,5711:13214519,14541670:0,459977,115847 +r1,5711:16034768,14541670:2820249,575824,115847 +k1,5711:13214519,14541670:-2820249 +) +(1,5711:13214519,14541670:2820249,459977,115847 +k1,5711:13214519,14541670:3277 +h1,5711:16031491,14541670:0,411205,112570 +) +k1,5711:32583029,14541670:16548261 +g1,5711:32583029,14541670 +) +(1,5715:6630773,15776374:25952256,513147,134348 +k1,5713:10252481,15776374:183689 +k1,5713:12031316,15776374:183689 +k1,5713:12746502,15776374:183689 +k1,5713:13286051,15776374:183689 +k1,5713:16855986,15776374:183690 +k1,5713:17698967,15776374:183689 +k1,5713:18901741,15776374:183689 +k1,5713:19500257,15776374:183673 +k1,5713:22699913,15776374:183689 +k1,5713:23955772,15776374:183690 +k1,5713:25493435,15776374:183689 +k1,5713:27654345,15776374:183689 +k1,5713:28785685,15776374:183689 +k1,5713:31227089,15776374:183689 +k1,5715:32583029,15776374:0 +) +(1,5715:6630773,16617862:25952256,513147,134348 +k1,5713:7996325,16617862:153136 +k1,5713:9645647,16617862:153135 +k1,5713:11083289,16617862:153136 +k1,5713:12573359,16617862:153136 +k1,5713:15138875,16617862:153136 +k1,5713:17135538,16617862:153135 +k1,5713:18731121,16617862:153136 +k1,5713:21520115,16617862:153136 +k1,5713:24978232,16617862:153136 +k1,5713:26203536,16617862:153135 +k1,5713:27422943,16617862:153136 +k1,5713:30913172,16617862:153136 +k1,5713:32583029,16617862:0 +) +(1,5715:6630773,17459350:25952256,513147,126483 +k1,5714:10268326,17459350:199534 +k1,5714:14061198,17459350:199533 +k1,5714:17336337,17459350:199534 +k1,5714:18067367,17459350:199533 +k1,5714:20183829,17459350:199534 +k1,5714:21144890,17459350:199533 +k1,5714:23412740,17459350:199534 +k1,5714:24271565,17459350:199533 +k1,5714:27069602,17459350:199534 +(1,5714:27069602,17459350:0,459977,115847 +r1,5714:29889851,17459350:2820249,575824,115847 +k1,5714:27069602,17459350:-2820249 +) +(1,5714:27069602,17459350:2820249,459977,115847 +k1,5714:27069602,17459350:3277 +h1,5714:29886574,17459350:0,411205,112570 +) +k1,5714:30089384,17459350:199533 +k1,5714:32583029,17459350:0 +) +(1,5715:6630773,18300838:25952256,513147,134348 +k1,5714:7562930,18300838:245995 +k1,5714:8164786,18300838:245996 +k1,5714:10283800,18300838:245995 +k1,5714:12535197,18300838:245995 +k1,5714:14162036,18300838:245995 +k1,5714:17103528,18300838:245996 +k1,5714:19032488,18300838:245995 +k1,5714:20933267,18300838:245995 +k1,5714:24755562,18300838:245995 +k1,5714:25357418,18300838:245996 +(1,5714:25357418,18300838:0,452978,122846 +r1,5714:27825955,18300838:2468537,575824,122846 +k1,5714:25357418,18300838:-2468537 +) +(1,5714:25357418,18300838:2468537,452978,122846 +k1,5714:25357418,18300838:3277 +h1,5714:27822678,18300838:0,411205,112570 +) +k1,5714:28071950,18300838:245995 +k1,5714:30295822,18300838:245995 +k1,5714:32583029,18300838:0 +) +(1,5715:6630773,19142326:25952256,513147,126483 +k1,5714:7823886,19142326:174028 +k1,5714:9840786,19142326:174028 +k1,5714:10674105,19142326:174027 +k1,5714:11203993,19142326:174028 +k1,5714:12569466,19142326:174028 +k1,5714:16231320,19142326:174028 +(1,5714:16231320,19142326:0,414482,115847 +r1,5714:17644721,19142326:1413401,530329,115847 +k1,5714:16231320,19142326:-1413401 +) +(1,5714:16231320,19142326:1413401,414482,115847 +k1,5714:16231320,19142326:3277 +h1,5714:17641444,19142326:0,411205,112570 +) +k1,5714:18199512,19142326:174027 +k1,5714:18729400,19142326:174028 +k1,5714:20746300,19142326:174028 +k1,5714:22898205,19142326:174028 +k1,5714:24019884,19142326:174028 +(1,5714:24019884,19142326:0,414482,115847 +r1,5714:25433285,19142326:1413401,530329,115847 +k1,5714:24019884,19142326:-1413401 +) +(1,5714:24019884,19142326:1413401,414482,115847 +k1,5714:24019884,19142326:3277 +h1,5714:25430008,19142326:0,411205,112570 +) +k1,5714:25607312,19142326:174027 +k1,5714:27478722,19142326:174028 +k1,5714:31140576,19142326:174028 +(1,5714:31140576,19142326:0,414482,115847 +r1,5714:32202265,19142326:1061689,530329,115847 +k1,5714:31140576,19142326:-1061689 +) +(1,5714:31140576,19142326:1061689,414482,115847 +k1,5714:31140576,19142326:3277 +h1,5714:32198988,19142326:0,411205,112570 +) +k1,5714:32583029,19142326:0 +) +(1,5715:6630773,19983814:25952256,513147,134348 +k1,5714:7984528,19983814:162310 +k1,5714:8502698,19983814:162310 +k1,5714:10507879,19983814:162309 +k1,5714:12648066,19983814:162310 +k1,5714:13758027,19983814:162310 +(1,5714:13758027,19983814:0,414482,115847 +r1,5714:15523140,19983814:1765113,530329,115847 +k1,5714:13758027,19983814:-1765113 +) +(1,5714:13758027,19983814:1765113,414482,115847 +k1,5714:13758027,19983814:3277 +h1,5714:15519863,19983814:0,411205,112570 +) +k1,5714:15685450,19983814:162310 +k1,5714:17545141,19983814:162309 +k1,5714:21195277,19983814:162310 +(1,5714:21195277,19983814:0,414482,115847 +r1,5714:21905255,19983814:709978,530329,115847 +k1,5714:21195277,19983814:-709978 +) +(1,5714:21195277,19983814:709978,414482,115847 +k1,5714:21195277,19983814:3277 +h1,5714:21901978,19983814:0,411205,112570 +) +k1,5714:22448329,19983814:162310 +k1,5714:23355128,19983814:162310 +k1,5714:24969060,19983814:162310 +k1,5714:26880525,19983814:162309 +k1,5714:29657066,19983814:162310 +k1,5714:31563944,19983814:162310 +k1,5714:32583029,19983814:0 +) +(1,5715:6630773,20825302:25952256,513147,115847 +k1,5714:9303315,20825302:190694 +k1,5714:10513093,20825302:190693 +k1,5714:12384130,20825302:190694 +k1,5714:15333234,20825302:190694 +k1,5714:16139966,20825302:190694 +k1,5714:17349744,20825302:190693 +k1,5714:20319165,20825302:190694 +k1,5714:22487736,20825302:190694 +k1,5714:23209927,20825302:190694 +k1,5714:25168126,20825302:190693 +k1,5714:26926441,20825302:190694 +(1,5714:26926441,20825302:0,414482,115847 +r1,5714:27988130,20825302:1061689,530329,115847 +k1,5714:26926441,20825302:-1061689 +) +(1,5714:26926441,20825302:1061689,414482,115847 +k1,5714:26926441,20825302:3277 +h1,5714:27984853,20825302:0,411205,112570 +) +k1,5714:28178824,20825302:190694 +k1,5714:28843343,20825302:190694 +(1,5714:28843343,20825302:0,414482,115847 +r1,5714:30256744,20825302:1413401,530329,115847 +k1,5714:28843343,20825302:-1413401 +) +(1,5714:28843343,20825302:1413401,414482,115847 +k1,5714:28843343,20825302:3277 +h1,5714:30253467,20825302:0,411205,112570 +) +k1,5714:30447437,20825302:190693 +k1,5714:31169628,20825302:190694 +(1,5714:31169628,20825302:0,414482,115847 +r1,5714:32583029,20825302:1413401,530329,115847 +k1,5714:31169628,20825302:-1413401 +) +(1,5714:31169628,20825302:1413401,414482,115847 +k1,5714:31169628,20825302:3277 +h1,5714:32579752,20825302:0,411205,112570 +) +k1,5714:32583029,20825302:0 +) +(1,5715:6630773,21666790:25952256,513147,134348 +k1,5714:7994520,21666790:172302 +k1,5714:9734442,21666790:172301 +(1,5714:9734442,21666790:0,414482,115847 +r1,5714:10444420,21666790:709978,530329,115847 +k1,5714:9734442,21666790:-709978 +) +(1,5714:9734442,21666790:709978,414482,115847 +k1,5714:9734442,21666790:3277 +h1,5714:10441143,21666790:0,411205,112570 +) +k1,5714:10616722,21666790:172302 +k1,5714:11262849,21666790:172302 +(1,5714:11262849,21666790:0,414482,115847 +r1,5714:12676250,21666790:1413401,530329,115847 +k1,5714:11262849,21666790:-1413401 +) +(1,5714:11262849,21666790:1413401,414482,115847 +k1,5714:11262849,21666790:3277 +h1,5714:12672973,21666790:0,411205,112570 +) +k1,5714:12848551,21666790:172301 +k1,5714:13552350,21666790:172302 +(1,5714:13552350,21666790:0,414482,115847 +r1,5714:15317463,21666790:1765113,530329,115847 +k1,5714:13552350,21666790:-1765113 +) +(1,5714:13552350,21666790:1765113,414482,115847 +k1,5714:13552350,21666790:3277 +h1,5714:15314186,21666790:0,411205,112570 +) +k1,5714:15663435,21666790:172302 +k1,5714:16733579,21666790:172301 +k1,5714:18560665,21666790:172302 +k1,5714:22135595,21666790:172301 +k1,5714:23412179,21666790:172302 +k1,5714:24332247,21666790:172302 +k1,5714:25636355,21666790:172301 +k1,5714:26223473,21666790:172275 +k1,5714:29582135,21666790:172302 +k1,5714:32583029,21666790:0 +) +(1,5715:6630773,22508278:25952256,513147,134348 +k1,5714:7839811,22508278:189953 +k1,5714:10742299,22508278:189953 +k1,5714:13083799,22508278:189953 +k1,5714:13901587,22508278:189953 +k1,5714:15110625,22508278:189953 +k1,5714:16667659,22508278:189953 +k1,5714:17516904,22508278:189953 +k1,5714:20015035,22508278:189953 +k1,5714:22410275,22508278:189953 +k1,5714:23286390,22508278:189953 +k1,5714:26878972,22508278:189953 +k1,5714:27720353,22508278:189953 +k1,5714:31521340,22508278:189953 +(1,5714:31521340,22508278:0,414482,115847 +r1,5714:32583029,22508278:1061689,530329,115847 +k1,5714:31521340,22508278:-1061689 +) +(1,5714:31521340,22508278:1061689,414482,115847 +k1,5714:31521340,22508278:3277 +h1,5714:32579752,22508278:0,411205,112570 +) +k1,5714:32583029,22508278:0 +) +(1,5715:6630773,23349766:25952256,513147,134348 +k1,5714:8036317,23349766:214099 +(1,5714:8036317,23349766:0,414482,115847 +r1,5714:8746295,23349766:709978,530329,115847 +k1,5714:8036317,23349766:-709978 +) +(1,5714:8036317,23349766:709978,414482,115847 +k1,5714:8036317,23349766:3277 +h1,5714:8743018,23349766:0,411205,112570 +) +k1,5714:9134065,23349766:214100 +k1,5714:12207500,23349766:214099 +k1,5714:13554062,23349766:214100 +k1,5714:15120824,23349766:214099 +k1,5714:16997572,23349766:214100 +k1,5714:17677632,23349766:214099 +k1,5714:19271919,23349766:214099 +k1,5714:20477579,23349766:214100 +k1,5714:23012308,23349766:214099 +k1,5714:24668855,23349766:214100 +k1,5714:25902039,23349766:214099 +k1,5714:28185766,23349766:214100 +k1,5714:30377742,23349766:214099 +k1,5714:32583029,23349766:0 +) +(1,5715:6630773,24191254:25952256,513147,134348 +k1,5714:7545974,24191254:229039 +k1,5714:10847342,24191254:229040 +k1,5714:11727809,24191254:229039 +(1,5714:11727809,24191254:0,414482,115847 +r1,5714:13141210,24191254:1413401,530329,115847 +k1,5714:11727809,24191254:-1413401 +) +(1,5714:11727809,24191254:1413401,414482,115847 +k1,5714:11727809,24191254:3277 +h1,5714:13137933,24191254:0,411205,112570 +) +k1,5714:13543919,24191254:229039 +k1,5714:14659660,24191254:229039 +k1,5714:17748036,24191254:229040 +k1,5714:19317286,24191254:229039 +k1,5714:21827633,24191254:229039 +k1,5714:22708100,24191254:229039 +(1,5714:22708100,24191254:0,414482,115847 +r1,5714:24121501,24191254:1413401,530329,115847 +k1,5714:22708100,24191254:-1413401 +) +(1,5714:22708100,24191254:1413401,414482,115847 +k1,5714:22708100,24191254:3277 +h1,5714:24118224,24191254:0,411205,112570 +) +k1,5714:24524211,24191254:229040 +k1,5714:26219946,24191254:229039 +k1,5714:26922810,24191254:229039 +(1,5714:26922810,24191254:0,414482,115847 +r1,5714:27984499,24191254:1061689,530329,115847 +k1,5714:26922810,24191254:-1061689 +) +(1,5714:26922810,24191254:1061689,414482,115847 +k1,5714:26922810,24191254:3277 +h1,5714:27981222,24191254:0,411205,112570 +) +k1,5714:28213538,24191254:229039 +k1,5714:30652452,24191254:229040 +(1,5714:30652452,24191254:0,414482,115847 +r1,5714:31362430,24191254:709978,530329,115847 +k1,5714:30652452,24191254:-709978 +) +(1,5714:30652452,24191254:709978,414482,115847 +k1,5714:30652452,24191254:3277 +h1,5714:31359153,24191254:0,411205,112570 +) +k1,5714:31591469,24191254:229039 +k1,5714:32583029,24191254:0 +) +(1,5715:6630773,25032742:25952256,505283,134348 +k1,5714:8833686,25032742:178506 +k1,5714:10454639,25032742:178506 +(1,5714:10454639,25032742:0,414482,115847 +r1,5714:11868040,25032742:1413401,530329,115847 +k1,5714:10454639,25032742:-1413401 +) +(1,5714:10454639,25032742:1413401,414482,115847 +k1,5714:10454639,25032742:3277 +h1,5714:11864763,25032742:0,411205,112570 +) +k1,5714:12220216,25032742:178506 +k1,5714:12868616,25032742:178507 +k1,5714:13578619,25032742:178506 +k1,5714:17112568,25032742:178506 +k1,5714:17942502,25032742:178506 +k1,5714:19558213,25032742:178506 +k1,5714:23139348,25032742:178506 +k1,5714:23969282,25032742:178506 +(1,5714:23969282,25032742:0,459977,115847 +r1,5714:26086107,25032742:2116825,575824,115847 +k1,5714:23969282,25032742:-2116825 +) +(1,5714:23969282,25032742:2116825,459977,115847 +k1,5714:23969282,25032742:3277 +h1,5714:26082830,25032742:0,411205,112570 +) +k1,5714:26264614,25032742:178507 +k1,5714:27204648,25032742:178506 +k1,5714:30171056,25032742:178506 +k1,5714:31303111,25032742:178506 +k1,5714:32583029,25032742:0 +) +(1,5715:6630773,25874230:25952256,513147,134348 +g1,5714:7185862,25874230 +g1,5714:8691224,25874230 +g1,5714:11551870,25874230 +g1,5714:13145050,25874230 +g1,5714:15503035,25874230 +g1,5714:19104893,25874230 +g1,5714:19955550,25874230 +g1,5714:22164768,25874230 +g1,5714:23383082,25874230 +g1,5714:24674796,25874230 +g1,5714:25533317,25874230 +g1,5714:26751631,25874230 +k1,5715:32583029,25874230:2962232 +g1,5715:32583029,25874230 +) +v1,5717:6630773,26932040:0,393216,0 +(1,5725:6630773,28613571:25952256,2074747,196608 +g1,5725:6630773,28613571 +g1,5725:6630773,28613571 +g1,5725:6434165,28613571 +(1,5725:6434165,28613571:0,2074747,196608 +r1,5725:32779637,28613571:26345472,2271355,196608 +k1,5725:6434165,28613571:-26345472 +) +(1,5725:6434165,28613571:26345472,2074747,196608 +[1,5725:6630773,28613571:25952256,1878139,0 +(1,5719:6630773,27139658:25952256,404226,101187 +(1,5718:6630773,27139658:0,0,0 +g1,5718:6630773,27139658 +g1,5718:6630773,27139658 +g1,5718:6303093,27139658 +(1,5718:6303093,27139658:0,0,0 +) +g1,5718:6630773,27139658 +) +g1,5719:9159939,27139658 +g1,5719:10108377,27139658 +g1,5719:12637544,27139658 +g1,5719:14850564,27139658 +g1,5719:16747439,27139658 +h1,5719:18328168,27139658:0,0,0 +k1,5719:32583029,27139658:14254861 +g1,5719:32583029,27139658 +) +(1,5720:6630773,27805836:25952256,410518,101187 +h1,5720:6630773,27805836:0,0,0 +g1,5720:10424522,27805836 +g1,5720:11056814,27805836 +g1,5720:13902126,27805836 +g1,5720:15166709,27805836 +g1,5720:15799001,27805836 +g1,5720:16747439,27805836 +g1,5720:17695876,27805836 +g1,5720:18328168,27805836 +k1,5720:18328168,27805836:0 +h1,5720:19276606,27805836:0,0,0 +k1,5720:32583029,27805836:13306423 +g1,5720:32583029,27805836 +) +(1,5724:6630773,28537550:25952256,404226,76021 +(1,5722:6630773,28537550:0,0,0 +g1,5722:6630773,28537550 +g1,5722:6630773,28537550 +g1,5722:6303093,28537550 +(1,5722:6303093,28537550:0,0,0 +) +g1,5722:6630773,28537550 +) +g1,5724:7579210,28537550 +g1,5724:8843793,28537550 +g1,5724:9159939,28537550 +g1,5724:9792231,28537550 +g1,5724:10740668,28537550 +g1,5724:11056814,28537550 +g1,5724:11689106,28537550 +g1,5724:12005252,28537550 +h1,5724:12321398,28537550:0,0,0 +k1,5724:32583030,28537550:20261632 +g1,5724:32583030,28537550 +) +] +) +g1,5725:32583029,28613571 +g1,5725:6630773,28613571 +g1,5725:6630773,28613571 +g1,5725:32583029,28613571 +g1,5725:32583029,28613571 +) +h1,5725:6630773,28810179:0,0,0 +(1,5729:6630773,30043298:25952256,505283,134348 +h1,5728:6630773,30043298:983040,0,0 +k1,5728:8439020,30043298:197372 +k1,5728:11347616,30043298:197372 +k1,5728:12564073,30043298:197372 +k1,5728:14363145,30043298:197372 +k1,5728:17337933,30043298:197372 +k1,5728:19372935,30043298:197372 +k1,5728:20101803,30043298:197371 +k1,5728:20950603,30043298:197372 +k1,5728:22623190,30043298:197372 +k1,5728:23506724,30043298:197372 +k1,5728:24474799,30043298:197372 +k1,5728:27744499,30043298:197372 +k1,5728:30147158,30043298:197372 +k1,5728:30995958,30043298:197372 +(1,5728:30995958,30043298:0,414482,115847 +r1,5728:32409359,30043298:1413401,530329,115847 +k1,5728:30995958,30043298:-1413401 +) +(1,5728:30995958,30043298:1413401,414482,115847 +k1,5728:30995958,30043298:3277 +h1,5728:32406082,30043298:0,411205,112570 +) +k1,5728:32583029,30043298:0 +) +(1,5729:6630773,30884786:25952256,513147,126483 +k1,5728:7865846,30884786:215988 +k1,5728:9924706,30884786:215988 +k1,5728:10799986,30884786:215988 +k1,5728:11371833,30884786:215987 +k1,5728:15341723,30884786:215988 +k1,5728:18786670,30884786:215988 +k1,5728:19812028,30884786:215988 +k1,5728:21047101,30884786:215988 +k1,5728:22232366,30884786:215988 +k1,5728:23076189,30884786:215988 +k1,5728:24311261,30884786:215987 +k1,5728:25833382,30884786:215988 +k1,5728:28710787,30884786:215988 +k1,5728:29795127,30884786:215988 +k1,5728:32583029,30884786:0 +) +(1,5729:6630773,31726274:25952256,513147,126483 +g1,5728:7849087,31726274 +g1,5728:10753642,31726274 +g1,5728:12963516,31726274 +g1,5728:14110396,31726274 +g1,5728:14665485,31726274 +g1,5728:17016261,31726274 +g1,5728:20520471,31726274 +g1,5728:21371128,31726274 +g1,5728:22854863,31726274 +g1,5728:25832819,31726274 +g1,5728:26793576,31726274 +g1,5728:27407648,31726274 +g1,5728:30302373,31726274 +(1,5728:30302373,31726274:0,452978,115847 +r1,5728:32067486,31726274:1765113,568825,115847 +k1,5728:30302373,31726274:-1765113 +) +(1,5728:30302373,31726274:1765113,452978,115847 +k1,5728:30302373,31726274:3277 +h1,5728:32064209,31726274:0,411205,112570 +) +k1,5729:32583029,31726274:341873 +g1,5729:32583029,31726274 +) +v1,5731:6630773,32784084:0,393216,0 +(1,5739:6630773,34449886:25952256,2059018,196608 +g1,5739:6630773,34449886 +g1,5739:6630773,34449886 +g1,5739:6434165,34449886 +(1,5739:6434165,34449886:0,2059018,196608 +r1,5739:32779637,34449886:26345472,2255626,196608 +k1,5739:6434165,34449886:-26345472 +) +(1,5739:6434165,34449886:26345472,2059018,196608 +[1,5739:6630773,34449886:25952256,1862410,0 +(1,5733:6630773,32975973:25952256,388497,9436 +(1,5732:6630773,32975973:0,0,0 +g1,5732:6630773,32975973 +g1,5732:6630773,32975973 +g1,5732:6303093,32975973 +(1,5732:6303093,32975973:0,0,0 +) +g1,5732:6630773,32975973 +) +g1,5733:8211502,32975973 +g1,5733:9159940,32975973 +k1,5733:9159940,32975973:0 +h1,5733:10740669,32975973:0,0,0 +k1,5733:32583029,32975973:21842360 +g1,5733:32583029,32975973 +) +(1,5734:6630773,33642151:25952256,410518,82312 +h1,5734:6630773,33642151:0,0,0 +g1,5734:10424521,33642151 +g1,5734:11056813,33642151 +g1,5734:12005251,33642151 +g1,5734:14218272,33642151 +h1,5734:15799000,33642151:0,0,0 +k1,5734:32583028,33642151:16784028 +g1,5734:32583028,33642151 +) +(1,5738:6630773,34373865:25952256,404226,76021 +(1,5736:6630773,34373865:0,0,0 +g1,5736:6630773,34373865 +g1,5736:6630773,34373865 +g1,5736:6303093,34373865 +(1,5736:6303093,34373865:0,0,0 +) +g1,5736:6630773,34373865 +) +g1,5738:7579210,34373865 +g1,5738:8843793,34373865 +g1,5738:9476085,34373865 +g1,5738:10108377,34373865 +g1,5738:10740669,34373865 +g1,5738:11372961,34373865 +g1,5738:12005253,34373865 +g1,5738:12637545,34373865 +h1,5738:12953691,34373865:0,0,0 +k1,5738:32583029,34373865:19629338 +g1,5738:32583029,34373865 +) +] +) +g1,5739:32583029,34449886 +g1,5739:6630773,34449886 +g1,5739:6630773,34449886 +g1,5739:32583029,34449886 +g1,5739:32583029,34449886 +) +h1,5739:6630773,34646494:0,0,0 +v1,5743:6630773,36271245:0,393216,0 +(1,5758:6630773,45116945:25952256,9238916,589824 +g1,5758:6630773,45116945 +(1,5758:6630773,45116945:25952256,9238916,589824 +(1,5758:6630773,45706769:25952256,9828740,0 +[1,5758:6630773,45706769:25952256,9828740,0 +(1,5758:6630773,45706769:25952256,9802526,0 +r1,5758:6656987,45706769:26214,9802526,0 +[1,5758:6656987,45706769:25899828,9802526,0 +(1,5758:6656987,45116945:25899828,8622878,0 +[1,5758:7246811,45116945:24720180,8622878,0 +(1,5744:7246811,37581441:24720180,1087374,126483 +k1,5743:8721232,37581441:264718 +k1,5743:10702994,37581441:264719 +k1,5743:14194705,37581441:264718 +k1,5743:17451142,37581441:264718 +k1,5743:18367289,37581441:264719 +k1,5743:19974840,37581441:264718 +k1,5743:21807179,37581441:264718 +k1,5743:23465849,37581441:264719 +k1,5743:24086427,37581441:264718 +k1,5743:25484263,37581441:264718 +k1,5743:28874394,37581441:264719 +k1,5743:30947906,37581441:264718 +k1,5743:31966991,37581441:0 +) +(1,5744:7246811,38422929:24720180,505283,126483 +k1,5743:10453071,38422929:214541 +k1,5743:12536043,38422929:214541 +k1,5743:14243494,38422929:214541 +k1,5743:15628508,38422929:214541 +k1,5743:19507822,38422929:214541 +k1,5743:21019320,38422929:214540 +k1,5743:24012588,38422929:214541 +k1,5743:26237774,38422929:214541 +k1,5743:27443875,38422929:214541 +k1,5743:29207032,38422929:214541 +k1,5743:30801761,38422929:214541 +k1,5743:31966991,38422929:0 +) +(1,5744:7246811,39264417:24720180,505283,126483 +k1,5743:8138538,39264417:263892 +k1,5743:11242104,39264417:263891 +k1,5743:13435376,39264417:263892 +k1,5743:15158098,39264417:263891 +k1,5743:16752371,39264417:263892 +k1,5743:20007981,39264417:263891 +k1,5743:20923301,39264417:263892 +k1,5743:22378637,39264417:263891 +k1,5743:24344499,39264417:263892 +k1,5743:27238350,39264417:263891 +k1,5743:29373295,39264417:263892 +k1,5743:30265021,39264417:263891 +k1,5743:31966991,39264417:0 +) +(1,5744:7246811,40105905:24720180,513147,126483 +g1,5743:9574649,40105905 +g1,5743:11116711,40105905 +g1,5743:12709891,40105905 +g1,5743:13928205,40105905 +g1,5743:15623621,40105905 +g1,5743:17315760,40105905 +g1,5743:18685462,40105905 +g1,5743:20335658,40105905 +g1,5743:24199660,40105905 +g1,5743:25729270,40105905 +(1,5743:25729270,40105905:0,459977,115847 +r1,5758:27846095,40105905:2116825,575824,115847 +k1,5743:25729270,40105905:-2116825 +) +(1,5743:25729270,40105905:2116825,459977,115847 +k1,5743:25729270,40105905:3277 +h1,5743:27842818,40105905:0,411205,112570 +) +g1,5743:28045324,40105905 +k1,5744:31966991,40105905:1821238 +g1,5744:31966991,40105905 +) +v1,5746:7246811,41296371:0,393216,0 +(1,5755:7246811,44920337:24720180,4017182,196608 +g1,5755:7246811,44920337 +g1,5755:7246811,44920337 +g1,5755:7050203,44920337 +(1,5755:7050203,44920337:0,4017182,196608 +r1,5758:32163599,44920337:25113396,4213790,196608 +k1,5755:7050203,44920337:-25113396 +) +(1,5755:7050203,44920337:25113396,4017182,196608 +[1,5755:7246811,44920337:24720180,3820574,0 +(1,5748:7246811,41488260:24720180,388497,9436 +(1,5747:7246811,41488260:0,0,0 +g1,5747:7246811,41488260 +g1,5747:7246811,41488260 +g1,5747:6919131,41488260 +(1,5747:6919131,41488260:0,0,0 +) +g1,5747:7246811,41488260 +) +g1,5748:7879103,41488260 +g1,5748:8827541,41488260 +h1,5748:10092124,41488260:0,0,0 +k1,5748:31966992,41488260:21874868 +g1,5748:31966992,41488260 +) +(1,5749:7246811,42154438:24720180,410518,82312 +h1,5749:7246811,42154438:0,0,0 +g1,5749:10092122,42154438 +g1,5749:10724414,42154438 +g1,5749:11672852,42154438 +g1,5749:12621290,42154438 +k1,5749:12621290,42154438:0 +h1,5749:13569728,42154438:0,0,0 +k1,5749:31966992,42154438:18397264 +g1,5749:31966992,42154438 +) +(1,5750:7246811,42820616:24720180,410518,82312 +h1,5750:7246811,42820616:0,0,0 +g1,5750:10092122,42820616 +g1,5750:10724414,42820616 +g1,5750:11672852,42820616 +g1,5750:12305144,42820616 +g1,5750:12937436,42820616 +g1,5750:13885874,42820616 +g1,5750:14518166,42820616 +g1,5750:15150458,42820616 +h1,5750:15782750,42820616:0,0,0 +k1,5750:31966991,42820616:16184241 +g1,5750:31966991,42820616 +) +(1,5751:7246811,43486794:24720180,410518,101187 +h1,5751:7246811,43486794:0,0,0 +g1,5751:11356705,43486794 +g1,5751:11988997,43486794 +g1,5751:13253581,43486794 +g1,5751:13885873,43486794 +g1,5751:14518165,43486794 +g1,5751:15466603,43486794 +g1,5751:16098895,43486794 +g1,5751:16731187,43486794 +g1,5751:17679625,43486794 +g1,5751:18311917,43486794 +k1,5751:18311917,43486794:41419 +h1,5751:20250210,43486794:0,0,0 +k1,5751:31966991,43486794:11716781 +g1,5751:31966991,43486794 +) +(1,5752:7246811,44152972:24720180,410518,107478 +h1,5752:7246811,44152972:0,0,0 +g1,5752:13253581,44152972 +g1,5752:13885873,44152972 +g1,5752:14518165,44152972 +g1,5752:15466603,44152972 +g1,5752:16098895,44152972 +g1,5752:16731187,44152972 +g1,5752:17679625,44152972 +g1,5752:18311917,44152972 +g1,5752:19892646,44152972 +g1,5752:21473375,44152972 +k1,5752:21473375,44152972:41419 +h1,5752:23411668,44152972:0,0,0 +k1,5752:31966991,44152972:8555323 +g1,5752:31966991,44152972 +) +(1,5753:7246811,44819150:24720180,410518,101187 +h1,5753:7246811,44819150:0,0,0 +g1,5753:10724414,44819150 +g1,5753:11356706,44819150 +g1,5753:11988998,44819150 +g1,5753:12937436,44819150 +g1,5753:13569728,44819150 +g1,5753:14202020,44819150 +g1,5753:15150458,44819150 +g1,5753:15782750,44819150 +g1,5753:16731187,44819150 +k1,5753:16731187,44819150:39846 +h1,5753:19300198,44819150:0,0,0 +k1,5753:31966991,44819150:12666793 +g1,5753:31966991,44819150 +) +] +) +g1,5755:31966991,44920337 +g1,5755:7246811,44920337 +g1,5755:7246811,44920337 +g1,5755:31966991,44920337 +g1,5755:31966991,44920337 +) +h1,5755:7246811,45116945:0,0,0 +] +) +] +r1,5758:32583029,45706769:26214,9802526,0 +) +] +) +) +g1,5758:32583029,45116945 +) +] +(1,5758:32583029,45706769:0,0,0 +g1,5758:32583029,45706769 +) +) +] +(1,5758:6630773,47279633:25952256,0,0 +h1,5758:6630773,47279633:25952256,0,0 +) +] +h1,5758:4262630,4025873:0,0,0 ] !30789 }109 -Input:766:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:767:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:768:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:769:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:770:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:771:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:772:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:773:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:774:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:775:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:776:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:777:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:778:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:779:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:780:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:781:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:782:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1457 +Input:762:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:763:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:764:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:765:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:766:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:767:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:768:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:769:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:770:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:771:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:772:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:773:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:774:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:775:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:776:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:777:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:778:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1559 {110 -[1,5813:4262630,47279633:28320399,43253760,0 -(1,5813:4262630,4025873:0,0,0 -[1,5813:-473657,4025873:25952256,0,0 -(1,5813:-473657,-710414:25952256,0,0 -h1,5813:-473657,-710414:0,0,0 -(1,5813:-473657,-710414:0,0,0 -(1,5813:-473657,-710414:0,0,0 -g1,5813:-473657,-710414 -(1,5813:-473657,-710414:65781,0,65781 -g1,5813:-407876,-710414 -[1,5813:-407876,-644633:0,0,0 +[1,5819:4262630,47279633:28320399,43253760,0 +(1,5819:4262630,4025873:0,0,0 +[1,5819:-473657,4025873:25952256,0,0 +(1,5819:-473657,-710414:25952256,0,0 +h1,5819:-473657,-710414:0,0,0 +(1,5819:-473657,-710414:0,0,0 +(1,5819:-473657,-710414:0,0,0 +g1,5819:-473657,-710414 +(1,5819:-473657,-710414:65781,0,65781 +g1,5819:-407876,-710414 +[1,5819:-407876,-644633:0,0,0 ] ) -k1,5813:-473657,-710414:-65781 +k1,5819:-473657,-710414:-65781 ) ) -k1,5813:25478599,-710414:25952256 -g1,5813:25478599,-710414 +k1,5819:25478599,-710414:25952256 +g1,5819:25478599,-710414 ) ] ) -[1,5813:6630773,47279633:25952256,43253760,0 -[1,5813:6630773,4812305:25952256,786432,0 -(1,5813:6630773,4812305:25952256,513147,126483 -(1,5813:6630773,4812305:25952256,513147,126483 -g1,5813:3078558,4812305 -[1,5813:3078558,4812305:0,0,0 -(1,5813:3078558,2439708:0,1703936,0 -k1,5813:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5813:2537886,2439708:1179648,16384,0 +[1,5819:6630773,47279633:25952256,43253760,0 +[1,5819:6630773,4812305:25952256,786432,0 +(1,5819:6630773,4812305:25952256,513147,126483 +(1,5819:6630773,4812305:25952256,513147,126483 +g1,5819:3078558,4812305 +[1,5819:3078558,4812305:0,0,0 +(1,5819:3078558,2439708:0,1703936,0 +k1,5819:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5819:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5813:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5819:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5813:3078558,4812305:0,0,0 -(1,5813:3078558,2439708:0,1703936,0 -g1,5813:29030814,2439708 -g1,5813:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5813:36151628,1915420:16384,1179648,0 +[1,5819:3078558,4812305:0,0,0 +(1,5819:3078558,2439708:0,1703936,0 +g1,5819:29030814,2439708 +g1,5819:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5819:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5813:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5819:37855564,2439708:1179648,16384,0 ) ) -k1,5813:3078556,2439708:-34777008 +k1,5819:3078556,2439708:-34777008 ) ] -[1,5813:3078558,4812305:0,0,0 -(1,5813:3078558,49800853:0,16384,2228224 -k1,5813:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5813:2537886,49800853:1179648,16384,0 +[1,5819:3078558,4812305:0,0,0 +(1,5819:3078558,49800853:0,16384,2228224 +k1,5819:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5819:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5813:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5819:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5813:3078558,4812305:0,0,0 -(1,5813:3078558,49800853:0,16384,2228224 -g1,5813:29030814,49800853 -g1,5813:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5813:36151628,51504789:16384,1179648,0 +[1,5819:3078558,4812305:0,0,0 +(1,5819:3078558,49800853:0,16384,2228224 +g1,5819:29030814,49800853 +g1,5819:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5819:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5813:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5819:37855564,49800853:1179648,16384,0 ) ) -k1,5813:3078556,49800853:-34777008 +k1,5819:3078556,49800853:-34777008 ) ] -g1,5813:6630773,4812305 -g1,5813:6630773,4812305 -g1,5813:9175536,4812305 -g1,5813:9990803,4812305 -g1,5813:13137841,4812305 -g1,5813:14654344,4812305 -k1,5813:31786112,4812305:17131768 +g1,5819:6630773,4812305 +g1,5819:6630773,4812305 +g1,5819:9175536,4812305 +g1,5819:9990803,4812305 +g1,5819:13137841,4812305 +g1,5819:14654344,4812305 +k1,5819:31786112,4812305:17131768 ) ) ] -[1,5813:6630773,45706769:25952256,40108032,0 -(1,5813:6630773,45706769:25952256,40108032,0 -(1,5813:6630773,45706769:0,0,0 -g1,5813:6630773,45706769 +[1,5819:6630773,45706769:25952256,40108032,0 +(1,5819:6630773,45706769:25952256,40108032,0 +(1,5819:6630773,45706769:0,0,0 +g1,5819:6630773,45706769 ) -[1,5813:6630773,45706769:25952256,40108032,0 -v1,5752:6630773,6254097:0,393216,0 -(1,5752:6630773,7939688:25952256,2078807,616038 -g1,5752:6630773,7939688 -(1,5752:6630773,7939688:25952256,2078807,616038 -(1,5752:6630773,8555726:25952256,2694845,0 -[1,5752:6630773,8555726:25952256,2694845,0 -(1,5752:6630773,8529512:25952256,2668631,0 -r1,5752:6656987,8529512:26214,2668631,0 -[1,5752:6656987,8529512:25899828,2668631,0 -(1,5752:6656987,7939688:25899828,1488983,0 -[1,5752:7246811,7939688:24720180,1488983,0 -(1,5752:7246811,6963852:24720180,513147,134348 -h1,5751:7246811,6963852:983040,0,0 -k1,5751:9950735,6963852:168991 -k1,5751:10585686,6963852:168990 -k1,5751:11925150,6963852:168991 -k1,5751:13624407,6963852:168991 -k1,5751:14444825,6963852:168990 -k1,5751:16895124,6963852:168991 -k1,5751:18522946,6963852:168991 -k1,5751:23346958,6963852:168990 -k1,5751:24183105,6963852:168991 -(1,5751:24183105,6963852:0,452978,122846 -r1,5752:26651642,6963852:2468537,575824,122846 -k1,5751:24183105,6963852:-2468537 -) -(1,5751:24183105,6963852:2468537,452978,122846 -k1,5751:24183105,6963852:3277 -h1,5751:26648365,6963852:0,411205,112570 -) -k1,5751:26820633,6963852:168991 -k1,5751:29000268,6963852:168990 -k1,5751:30360704,6963852:168991 -k1,5752:31966991,6963852:0 -) -(1,5752:7246811,7805340:24720180,505283,134348 -g1,5751:8564084,7805340 -g1,5751:11090496,7805340 -g1,5751:12314708,7805340 -g1,5751:14792624,7805340 -h1,5751:15763212,7805340:0,0,0 -g1,5751:15962441,7805340 -g1,5751:16971040,7805340 -g1,5751:18668422,7805340 -h1,5751:19465340,7805340:0,0,0 -k1,5752:31966991,7805340:12327981 -g1,5752:31966991,7805340 -) -] -) -] -r1,5752:32583029,8529512:26214,2668631,0 -) -] -) -) -g1,5752:32583029,7939688 -) -h1,5752:6630773,8555726:0,0,0 -v1,5755:6630773,9921502:0,393216,0 -(1,5791:6630773,29949267:25952256,20420981,616038 -g1,5791:6630773,29949267 -(1,5791:6630773,29949267:25952256,20420981,616038 -(1,5791:6630773,30565305:25952256,21037019,0 -[1,5791:6630773,30565305:25952256,21037019,0 -(1,5791:6630773,30539091:25952256,20984591,0 -r1,5791:6656987,30539091:26214,20984591,0 -[1,5791:6656987,30539091:25899828,20984591,0 -(1,5791:6656987,29949267:25899828,19804943,0 -[1,5791:7246811,29949267:24720180,19804943,0 -(1,5756:7246811,11229860:24720180,1085536,298548 -(1,5755:7246811,11229860:0,1085536,298548 -r1,5791:8753226,11229860:1506415,1384084,298548 -k1,5755:7246811,11229860:-1506415 -) -(1,5755:7246811,11229860:1506415,1085536,298548 -) -k1,5755:8997274,11229860:244048 -k1,5755:9869157,11229860:244048 -k1,5755:11132289,11229860:244047 -k1,5755:12743418,11229860:244048 -k1,5755:13654622,11229860:244048 -(1,5755:13654622,11229860:0,459977,115847 -r1,5791:16474871,11229860:2820249,575824,115847 -k1,5755:13654622,11229860:-2820249 -) -(1,5755:13654622,11229860:2820249,459977,115847 -k1,5755:13654622,11229860:3277 -h1,5755:16471594,11229860:0,411205,112570 -) -k1,5755:16892589,11229860:244048 -k1,5755:18155721,11229860:244047 -k1,5755:20413035,11229860:244048 -k1,5755:21316375,11229860:244048 -k1,5755:22579508,11229860:244048 -k1,5755:25602282,11229860:244047 -k1,5755:27526673,11229860:244048 -k1,5755:28302218,11229860:244048 -k1,5755:31966991,11229860:0 -) -(1,5756:7246811,12071348:24720180,513147,134348 -k1,5755:8264866,12071348:256527 -k1,5755:9540477,12071348:256526 -k1,5755:11810270,12071348:256527 -k1,5755:12726088,12071348:256526 -k1,5755:14001700,12071348:256527 -k1,5755:16327853,12071348:256526 -k1,5755:18562257,12071348:256527 -k1,5755:21024071,12071348:256527 -k1,5755:21966759,12071348:256526 -k1,5755:22993989,12071348:256527 -k1,5755:26322843,12071348:256526 -k1,5755:27230798,12071348:256527 -k1,5755:28275722,12071348:256526 -k1,5755:29838382,12071348:256527 -k1,5755:31966991,12071348:0 -) -(1,5756:7246811,12912836:24720180,513147,126483 -k1,5755:10715868,12912836:188325 -k1,5755:13270043,12912836:188325 -(1,5755:13270043,12912836:0,414482,115847 -r1,5791:14683444,12912836:1413401,530329,115847 -k1,5755:13270043,12912836:-1413401 -) -(1,5755:13270043,12912836:1413401,414482,115847 -k1,5755:13270043,12912836:3277 -h1,5755:14680167,12912836:0,411205,112570 -) -k1,5755:15252533,12912836:188325 -k1,5755:15928436,12912836:188315 -k1,5755:18855511,12912836:188325 -k1,5755:21547967,12912836:188325 -k1,5755:22267789,12912836:188325 -k1,5755:23107542,12912836:188325 -k1,5755:24388353,12912836:188326 -k1,5755:24932538,12912836:188325 -k1,5755:28153214,12912836:188325 -k1,5755:29626045,12912836:188325 -k1,5755:31966991,12912836:0 -) -(1,5756:7246811,13754324:24720180,513147,134348 -k1,5755:7788658,13754324:185987 -(1,5755:7788658,13754324:0,452978,122846 -r1,5791:10257195,13754324:2468537,575824,122846 -k1,5755:7788658,13754324:-2468537 -) -(1,5755:7788658,13754324:2468537,452978,122846 -k1,5755:7788658,13754324:3277 -h1,5755:10253918,13754324:0,411205,112570 -) -k1,5755:10443181,13754324:185986 -k1,5755:12607045,13754324:185987 -k1,5755:13452323,13754324:185986 -k1,5755:15651576,13754324:185987 -k1,5755:17167944,13754324:185987 -k1,5755:20415117,13754324:185986 -k1,5755:21885610,13754324:185987 -k1,5755:22529694,13754324:185987 -k1,5755:23848142,13754324:185986 -k1,5755:24781895,13754324:185987 -k1,5755:27605050,13754324:185986 -k1,5755:30320727,13754324:185987 -k1,5756:31966991,13754324:0 -) -(1,5756:7246811,14595812:24720180,513147,134348 -k1,5755:9441811,14595812:225643 -k1,5755:11872741,14595812:225643 -k1,5755:12749812,14595812:225643 -k1,5755:13994540,14595812:225643 -k1,5755:15922153,14595812:225643 -k1,5755:18276405,14595812:225643 -k1,5755:22113082,14595812:225643 -k1,5755:24704575,14595812:225643 -(1,5755:24704575,14595812:0,414482,115847 -r1,5791:25766264,14595812:1061689,530329,115847 -k1,5755:24704575,14595812:-1061689 -) -(1,5755:24704575,14595812:1061689,414482,115847 -k1,5755:24704575,14595812:3277 -h1,5755:25762987,14595812:0,411205,112570 -) -k1,5755:25991907,14595812:225643 -k1,5755:27408995,14595812:225643 -(1,5755:27408995,14595812:0,414482,115847 -r1,5791:28118973,14595812:709978,530329,115847 -k1,5755:27408995,14595812:-709978 -) -(1,5755:27408995,14595812:709978,414482,115847 -k1,5755:27408995,14595812:3277 -h1,5755:28115696,14595812:0,411205,112570 -) -k1,5755:28551710,14595812:225643 -k1,5755:29768913,14595812:225643 -k1,5755:31966991,14595812:0 -) -(1,5756:7246811,15437300:24720180,513147,134348 -k1,5755:10419736,15437300:238223 -k1,5755:11467330,15437300:238224 -k1,5755:14564889,15437300:238223 -k1,5755:15935575,15437300:238224 -k1,5755:17526461,15437300:238223 -k1,5755:19601004,15437300:238224 -k1,5755:22672348,15437300:238223 -k1,5755:23526609,15437300:238223 -k1,5755:24120693,15437300:238224 -k1,5755:27137643,15437300:238223 -k1,5755:29056210,15437300:238224 -k1,5755:29953725,15437300:238223 -k1,5755:31966991,15437300:0 -) -(1,5756:7246811,16278788:24720180,513147,134348 -k1,5755:8834529,16278788:257337 -k1,5755:10485817,16278788:257337 -k1,5755:11762239,16278788:257337 -k1,5755:15237394,16278788:257337 -k1,5755:18363897,16278788:257337 -k1,5755:19280526,16278788:257337 -k1,5755:20556949,16278788:257338 -k1,5755:23122464,16278788:257337 -k1,5755:25585088,16278788:257337 -k1,5755:26493853,16278788:257337 -(1,5755:26493853,16278788:0,414482,115847 -r1,5791:27555542,16278788:1061689,530329,115847 -k1,5755:26493853,16278788:-1061689 -) -(1,5755:26493853,16278788:1061689,414482,115847 -k1,5755:26493853,16278788:3277 -h1,5755:27552265,16278788:0,411205,112570 -) -k1,5755:27812879,16278788:257337 -k1,5755:29261661,16278788:257337 -(1,5755:29261661,16278788:0,414482,115847 -r1,5791:29971639,16278788:709978,530329,115847 -k1,5755:29261661,16278788:-709978 -) -(1,5755:29261661,16278788:709978,414482,115847 -k1,5755:29261661,16278788:3277 -h1,5755:29968362,16278788:0,411205,112570 -) -k1,5755:30228976,16278788:257337 -k1,5755:31966991,16278788:0 -) -(1,5756:7246811,17120276:24720180,513147,134348 -k1,5755:10796301,17120276:256961 -k1,5755:11951104,17120276:256960 -k1,5755:13114428,17120276:256961 -k1,5755:14574630,17120276:256961 -k1,5755:15593119,17120276:256961 -k1,5755:18630116,17120276:256960 -k1,5755:20622470,17120276:256961 -k1,5755:22949058,17120276:256961 -k1,5755:25514197,17120276:256961 -k1,5755:26430449,17120276:256960 -k1,5755:29449753,17120276:256961 -k1,5755:31966991,17120276:0 -) -(1,5756:7246811,17961764:24720180,505283,134348 -k1,5755:8711868,17961764:211353 -k1,5755:10027504,17961764:211354 -k1,5755:11727180,17961764:211353 -k1,5755:13332484,17961764:211353 -k1,5755:14562923,17961764:211354 -k1,5755:17765995,17961764:211353 -k1,5755:20019450,17961764:211353 -k1,5755:22589445,17961764:211354 -k1,5755:24181642,17961764:211353 -k1,5755:25563468,17961764:211353 -k1,5755:29439595,17961764:211354 -k1,5755:30947906,17961764:211353 -k1,5755:31966991,17961764:0 -) -(1,5756:7246811,18803252:24720180,505283,126483 -g1,5755:10224767,18803252 -g1,5755:12434641,18803252 -g1,5755:13625430,18803252 -g1,5755:15373275,18803252 -g1,5755:16952692,18803252 -k1,5756:31966991,18803252:13849069 -g1,5756:31966991,18803252 -) -v1,5758:7246811,19993718:0,393216,0 -(1,5789:7246811,29228371:24720180,9627869,196608 -g1,5789:7246811,29228371 -g1,5789:7246811,29228371 -g1,5789:7050203,29228371 -(1,5789:7050203,29228371:0,9627869,196608 -r1,5791:32163599,29228371:25113396,9824477,196608 -k1,5789:7050203,29228371:-25113396 -) -(1,5789:7050203,29228371:25113396,9627869,196608 -[1,5789:7246811,29228371:24720180,9431261,0 -(1,5760:7246811,20207628:24720180,410518,82312 -(1,5759:7246811,20207628:0,0,0 -g1,5759:7246811,20207628 -g1,5759:7246811,20207628 -g1,5759:6919131,20207628 -(1,5759:6919131,20207628:0,0,0 -) -g1,5759:7246811,20207628 -) -k1,5760:7246811,20207628:0 -g1,5760:11356706,20207628 -g1,5760:12937436,20207628 -k1,5760:12937436,20207628:0 -h1,5760:14834312,20207628:0,0,0 -k1,5760:31966992,20207628:17132680 -g1,5760:31966992,20207628 -) -(1,5764:7246811,20939342:24720180,404226,76021 -(1,5762:7246811,20939342:0,0,0 -g1,5762:7246811,20939342 -g1,5762:7246811,20939342 -g1,5762:6919131,20939342 -(1,5762:6919131,20939342:0,0,0 -) -g1,5762:7246811,20939342 -) -g1,5764:8195248,20939342 -g1,5764:9459831,20939342 -h1,5764:9775977,20939342:0,0,0 -k1,5764:31966991,20939342:22191014 -g1,5764:31966991,20939342 -) -(1,5766:7246811,22260880:24720180,410518,82312 -(1,5765:7246811,22260880:0,0,0 -g1,5765:7246811,22260880 -g1,5765:7246811,22260880 -g1,5765:6919131,22260880 -(1,5765:6919131,22260880:0,0,0 -) -g1,5765:7246811,22260880 -) -k1,5766:7246811,22260880:0 -g1,5766:11672851,22260880 -g1,5766:13253581,22260880 -k1,5766:13253581,22260880:0 -h1,5766:15150457,22260880:0,0,0 -k1,5766:31966991,22260880:16816534 -g1,5766:31966991,22260880 -) -(1,5770:7246811,22992594:24720180,404226,76021 -(1,5768:7246811,22992594:0,0,0 -g1,5768:7246811,22992594 -g1,5768:7246811,22992594 -g1,5768:6919131,22992594 -(1,5768:6919131,22992594:0,0,0 -) -g1,5768:7246811,22992594 -) -g1,5770:8195248,22992594 -g1,5770:9459831,22992594 -k1,5770:9459831,22992594:0 -h1,5770:10092122,22992594:0,0,0 -k1,5770:31966990,22992594:21874868 -g1,5770:31966990,22992594 -) -(1,5772:7246811,24314132:24720180,410518,82312 -(1,5771:7246811,24314132:0,0,0 -g1,5771:7246811,24314132 -g1,5771:7246811,24314132 -g1,5771:6919131,24314132 -(1,5771:6919131,24314132:0,0,0 -) -g1,5771:7246811,24314132 -) -k1,5772:7246811,24314132:0 -g1,5772:11988998,24314132 -g1,5772:14518164,24314132 -g1,5772:16098894,24314132 -k1,5772:16098894,24314132:0 -h1,5772:17995770,24314132:0,0,0 -k1,5772:31966991,24314132:13971221 -g1,5772:31966991,24314132 -) -(1,5776:7246811,25045846:24720180,404226,76021 -(1,5774:7246811,25045846:0,0,0 -g1,5774:7246811,25045846 -g1,5774:7246811,25045846 -g1,5774:6919131,25045846 -(1,5774:6919131,25045846:0,0,0 -) -g1,5774:7246811,25045846 -) -g1,5776:8195248,25045846 -g1,5776:9459831,25045846 -g1,5776:9775977,25045846 -g1,5776:10408269,25045846 -k1,5776:10408269,25045846:0 -h1,5776:11040560,25045846:0,0,0 -k1,5776:31966992,25045846:20926432 -g1,5776:31966992,25045846 -) -(1,5778:7246811,26367384:24720180,410518,82312 -(1,5777:7246811,26367384:0,0,0 -g1,5777:7246811,26367384 -g1,5777:7246811,26367384 -g1,5777:6919131,26367384 -(1,5777:6919131,26367384:0,0,0 -) -g1,5777:7246811,26367384 -) -k1,5778:7246811,26367384:0 -g1,5778:12305143,26367384 -g1,5778:14518164,26367384 -g1,5778:16098894,26367384 -k1,5778:16098894,26367384:0 -h1,5778:17995770,26367384:0,0,0 -k1,5778:31966991,26367384:13971221 -g1,5778:31966991,26367384 -) -(1,5782:7246811,27099098:24720180,404226,76021 -(1,5780:7246811,27099098:0,0,0 -g1,5780:7246811,27099098 -g1,5780:7246811,27099098 -g1,5780:6919131,27099098 -(1,5780:6919131,27099098:0,0,0 -) -g1,5780:7246811,27099098 -) -g1,5782:8195248,27099098 -g1,5782:9459831,27099098 -g1,5782:10408268,27099098 -g1,5782:10724414,27099098 -h1,5782:11040560,27099098:0,0,0 -k1,5782:31966992,27099098:20926432 -g1,5782:31966992,27099098 -) -(1,5784:7246811,28420636:24720180,410518,82312 -(1,5783:7246811,28420636:0,0,0 -g1,5783:7246811,28420636 -g1,5783:7246811,28420636 -g1,5783:6919131,28420636 -(1,5783:6919131,28420636:0,0,0 -) -g1,5783:7246811,28420636 -) -k1,5784:7246811,28420636:0 -g1,5784:12305143,28420636 -g1,5784:14518164,28420636 -g1,5784:16098894,28420636 -h1,5784:16731186,28420636:0,0,0 -k1,5784:31966991,28420636:15235805 -g1,5784:31966991,28420636 -) -(1,5788:7246811,29152350:24720180,404226,76021 -(1,5786:7246811,29152350:0,0,0 -g1,5786:7246811,29152350 -g1,5786:7246811,29152350 -g1,5786:6919131,29152350 -(1,5786:6919131,29152350:0,0,0 -) -g1,5786:7246811,29152350 -) -g1,5788:8195248,29152350 -g1,5788:9459831,29152350 -g1,5788:10092123,29152350 -h1,5788:10408269,29152350:0,0,0 -k1,5788:31966991,29152350:21558722 -g1,5788:31966991,29152350 -) -] -) -g1,5789:31966991,29228371 -g1,5789:7246811,29228371 -g1,5789:7246811,29228371 -g1,5789:31966991,29228371 -g1,5789:31966991,29228371 -) -h1,5789:7246811,29424979:0,0,0 -] -) -] -r1,5791:32583029,30539091:26214,20984591,0 -) -] -) -) -g1,5791:32583029,29949267 -) -h1,5791:6630773,30565305:0,0,0 -v1,5794:6630773,31931081:0,393216,0 -(1,5808:6630773,43450512:25952256,11912647,616038 -g1,5808:6630773,43450512 -(1,5808:6630773,43450512:25952256,11912647,616038 -(1,5808:6630773,44066550:25952256,12528685,0 -[1,5808:6630773,44066550:25952256,12528685,0 -(1,5808:6630773,44040336:25952256,12476257,0 -r1,5808:6656987,44040336:26214,12476257,0 -[1,5808:6656987,44040336:25899828,12476257,0 -(1,5808:6656987,43450512:25899828,11296609,0 -[1,5808:7246811,43450512:24720180,11296609,0 -(1,5795:7246811,33241277:24720180,1087374,134348 -k1,5794:8704346,33241277:247832 -k1,5794:10825853,33241277:247833 -k1,5794:12809078,33241277:247832 -(1,5794:12809078,33241277:0,459977,115847 -r1,5808:15629327,33241277:2820249,575824,115847 -k1,5794:12809078,33241277:-2820249 -) -(1,5794:12809078,33241277:2820249,459977,115847 -k1,5794:12809078,33241277:3277 -h1,5794:15626050,33241277:0,411205,112570 -) -k1,5794:16050829,33241277:247832 -k1,5794:16654522,33241277:247833 -k1,5794:18775373,33241277:247832 -k1,5794:22209566,33241277:247833 -k1,5794:23108826,33241277:247832 -k1,5794:26068538,33241277:247832 -k1,5794:29132453,33241277:247833 -k1,5794:30947906,33241277:247832 -k1,5794:31966991,33241277:0 -) -(1,5795:7246811,34082765:24720180,505283,134348 -k1,5794:8594839,34082765:175589 -k1,5794:11078606,34082765:175589 -(1,5794:11078606,34082765:0,414482,115847 -r1,5808:11436872,34082765:358266,530329,115847 -k1,5794:11078606,34082765:-358266 -) -(1,5794:11078606,34082765:358266,414482,115847 -k1,5794:11078606,34082765:3277 -h1,5794:11433595,34082765:0,411205,112570 -) -k1,5794:11612461,34082765:175589 -k1,5794:12979496,34082765:175590 -(1,5794:12979496,34082765:0,452978,115847 -r1,5808:13337762,34082765:358266,568825,115847 -k1,5794:12979496,34082765:-358266 -) -(1,5794:12979496,34082765:358266,452978,115847 -k1,5794:12979496,34082765:3277 -h1,5794:13334485,34082765:0,411205,112570 -) -k1,5794:13513351,34082765:175589 -k1,5794:14956406,34082765:175589 -k1,5794:15487855,34082765:175589 -k1,5794:17506316,34082765:175589 -k1,5794:19659782,34082765:175589 -(1,5794:19659782,34082765:0,452978,115847 -r1,5808:20018048,34082765:358266,568825,115847 -k1,5794:19659782,34082765:-358266 -) -(1,5794:19659782,34082765:358266,452978,115847 -k1,5794:19659782,34082765:3277 -h1,5794:20014771,34082765:0,411205,112570 -) -k1,5794:20367307,34082765:175589 -k1,5794:22397566,34082765:175590 -k1,5794:23382525,34082765:175589 -k1,5794:26148752,34082765:175589 -k1,5794:27343426,34082765:175589 -k1,5794:31966991,34082765:0 -) -(1,5795:7246811,34924253:24720180,505283,126483 -k1,5794:9156311,34924253:229157 -k1,5794:10001505,34924253:229156 -k1,5794:12208539,34924253:229157 -(1,5794:12208539,34924253:0,414482,115847 -r1,5808:12566805,34924253:358266,530329,115847 -k1,5794:12208539,34924253:-358266 -) -(1,5794:12208539,34924253:358266,414482,115847 -k1,5794:12208539,34924253:3277 -h1,5794:12563528,34924253:0,411205,112570 -) -k1,5794:12795961,34924253:229156 -k1,5794:13556615,34924253:229157 -k1,5794:14804856,34924253:229156 -k1,5794:18008692,34924253:229157 -(1,5794:18008692,34924253:0,452978,115847 -r1,5808:19070381,34924253:1061689,568825,115847 -k1,5794:18008692,34924253:-1061689 -) -(1,5794:18008692,34924253:1061689,452978,115847 -k1,5794:18008692,34924253:3277 -h1,5794:19067104,34924253:0,411205,112570 -) -k1,5794:19299537,34924253:229156 -k1,5794:20211579,34924253:229157 -(1,5794:20211579,34924253:0,452978,115847 -r1,5808:21273268,34924253:1061689,568825,115847 -k1,5794:20211579,34924253:-1061689 -) -(1,5794:20211579,34924253:1061689,452978,115847 -k1,5794:20211579,34924253:3277 -h1,5794:21269991,34924253:0,411205,112570 -) -k1,5794:21676094,34924253:229156 -k1,5794:23516781,34924253:229157 -k1,5794:25327976,34924253:229156 -k1,5794:27535010,34924253:229157 -(1,5794:27535010,34924253:0,452978,115847 -r1,5808:27893276,34924253:358266,568825,115847 -k1,5794:27535010,34924253:-358266 -) -(1,5794:27535010,34924253:358266,452978,115847 -k1,5794:27535010,34924253:3277 -h1,5794:27889999,34924253:0,411205,112570 -) -k1,5794:28122432,34924253:229156 -k1,5794:29003017,34924253:229157 -k1,5794:30947906,34924253:229156 -k1,5794:31966991,34924253:0 -) -(1,5795:7246811,35765741:24720180,505283,7863 -g1,5794:9288912,35765741 -k1,5795:31966992,35765741:20461652 -g1,5795:31966992,35765741 -) -v1,5797:7246811,36956207:0,393216,0 -(1,5804:7246811,39247817:24720180,2684826,196608 -g1,5804:7246811,39247817 -g1,5804:7246811,39247817 -g1,5804:7050203,39247817 -(1,5804:7050203,39247817:0,2684826,196608 -r1,5808:32163599,39247817:25113396,2881434,196608 -k1,5804:7050203,39247817:-25113396 -) -(1,5804:7050203,39247817:25113396,2684826,196608 -[1,5804:7246811,39247817:24720180,2488218,0 -(1,5799:7246811,37148096:24720180,388497,9436 -(1,5798:7246811,37148096:0,0,0 -g1,5798:7246811,37148096 -g1,5798:7246811,37148096 -g1,5798:6919131,37148096 -(1,5798:6919131,37148096:0,0,0 -) -g1,5798:7246811,37148096 -) -g1,5799:7879103,37148096 -g1,5799:8827541,37148096 -k1,5799:8827541,37148096:0 -h1,5799:10724416,37148096:0,0,0 -k1,5799:31966992,37148096:21242576 -g1,5799:31966992,37148096 -) -(1,5800:7246811,37814274:24720180,404226,9436 -h1,5800:7246811,37814274:0,0,0 -g1,5800:7879103,37814274 -g1,5800:8827541,37814274 -h1,5800:10408270,37814274:0,0,0 -k1,5800:31966990,37814274:21558720 -g1,5800:31966990,37814274 -) -(1,5801:7246811,38480452:24720180,404226,101187 -h1,5801:7246811,38480452:0,0,0 -g1,5801:7879103,38480452 -g1,5801:8827541,38480452 -g1,5801:12305145,38480452 -g1,5801:13569729,38480452 -g1,5801:16415041,38480452 -h1,5801:17363478,38480452:0,0,0 -k1,5801:31966991,38480452:14603513 -g1,5801:31966991,38480452 -) -(1,5802:7246811,39146630:24720180,404226,101187 -h1,5802:7246811,39146630:0,0,0 -g1,5802:7879103,39146630 -g1,5802:9459832,39146630 -k1,5802:9459832,39146630:1573 -h1,5802:10725988,39146630:0,0,0 -k1,5802:31966992,39146630:21241004 -g1,5802:31966992,39146630 -) -] -) -g1,5804:31966991,39247817 -g1,5804:7246811,39247817 -g1,5804:7246811,39247817 -g1,5804:31966991,39247817 -g1,5804:31966991,39247817 -) -h1,5804:7246811,39444425:0,0,0 -(1,5808:7246811,40810201:24720180,513147,126483 -h1,5807:7246811,40810201:983040,0,0 -k1,5807:8981649,40810201:274041 -k1,5807:10426164,40810201:274042 -k1,5807:11515473,40810201:274041 -k1,5807:12855785,40810201:274041 -k1,5807:16794600,40810201:274042 -k1,5807:18399022,40810201:274041 -k1,5807:19692148,40810201:274041 -k1,5807:21620974,40810201:274042 -k1,5807:24203193,40810201:274041 -k1,5807:25468794,40810201:274041 -k1,5807:27394998,40810201:274041 -k1,5807:28351925,40810201:274042 -k1,5807:29796439,40810201:274041 -k1,5807:31966991,40810201:0 -) -(1,5808:7246811,41651689:24720180,505283,134348 -k1,5807:9182838,41651689:139030 -k1,5807:10340953,41651689:139030 -k1,5807:12490628,41651689:139030 -k1,5807:14009845,41651689:139029 -k1,5807:16520623,41651689:139030 -k1,5807:17421181,41651689:139030 -k1,5807:19962761,41651689:139030 -k1,5807:21120876,41651689:139030 -k1,5807:22929763,41651689:139030 -k1,5807:24650832,41651689:139030 -k1,5807:26602587,41651689:139029 -k1,5807:27933062,41651689:139030 -k1,5807:29414925,41651689:139030 -k1,5807:30947906,41651689:139030 -k1,5807:31966991,41651689:0 -) -(1,5808:7246811,42493177:24720180,505283,134348 -k1,5807:10977315,42493177:154204 -k1,5807:12624430,42493177:154205 -k1,5807:13949107,42493177:154204 -k1,5807:17412225,42493177:154205 -k1,5807:19115045,42493177:154204 -k1,5807:20720871,42493177:154204 -k1,5807:24155808,42493177:154205 -k1,5807:25976593,42493177:154204 -k1,5807:27548342,42493177:154205 -k1,5807:28795031,42493177:154204 -(1,5807:28795031,42493177:0,452978,115847 -r1,5808:31966991,42493177:3171960,568825,115847 -k1,5807:28795031,42493177:-3171960 -) -(1,5807:28795031,42493177:3171960,452978,115847 -k1,5807:28795031,42493177:3277 -h1,5807:31963714,42493177:0,411205,112570 -) -k1,5807:31966991,42493177:0 -) -(1,5808:7246811,43334665:24720180,505283,115847 -g1,5807:9655914,43334665 -(1,5807:9655914,43334665:0,459977,115847 -r1,5808:13883010,43334665:4227096,575824,115847 -k1,5807:9655914,43334665:-4227096 -) -(1,5807:9655914,43334665:4227096,459977,115847 -k1,5807:9655914,43334665:3277 -h1,5807:13879733,43334665:0,411205,112570 -) -g1,5807:14082239,43334665 -g1,5807:14932896,43334665 -g1,5807:17163086,43334665 -g1,5807:18381400,43334665 -k1,5808:31966991,43334665:8585849 -g1,5808:31966991,43334665 -) -] -) -] -r1,5808:32583029,44040336:26214,12476257,0 -) -] -) -) -g1,5808:32583029,43450512 +[1,5819:6630773,45706769:25952256,40108032,0 +v1,5758:6630773,6254097:0,393216,0 +(1,5758:6630773,7939688:25952256,2078807,616038 +g1,5758:6630773,7939688 +(1,5758:6630773,7939688:25952256,2078807,616038 +(1,5758:6630773,8555726:25952256,2694845,0 +[1,5758:6630773,8555726:25952256,2694845,0 +(1,5758:6630773,8529512:25952256,2668631,0 +r1,5758:6656987,8529512:26214,2668631,0 +[1,5758:6656987,8529512:25899828,2668631,0 +(1,5758:6656987,7939688:25899828,1488983,0 +[1,5758:7246811,7939688:24720180,1488983,0 +(1,5758:7246811,6963852:24720180,513147,134348 +h1,5757:7246811,6963852:983040,0,0 +k1,5757:10112124,6963852:330380 +k1,5757:10908464,6963852:330379 +k1,5757:12409317,6963852:330380 +k1,5757:14269962,6963852:330379 +k1,5757:15251770,6963852:330380 +k1,5757:17863457,6963852:330379 +k1,5757:19652668,6963852:330380 +k1,5757:24638069,6963852:330379 +k1,5757:25635605,6963852:330380 +(1,5757:25635605,6963852:0,452978,122846 +r1,5758:28104142,6963852:2468537,575824,122846 +k1,5757:25635605,6963852:-2468537 +) +(1,5757:25635605,6963852:2468537,452978,122846 +k1,5757:25635605,6963852:3277 +h1,5757:28100865,6963852:0,411205,112570 +) +k1,5757:28434521,6963852:330379 +k1,5757:30775546,6963852:330380 +k1,5757:31966991,6963852:0 +) +(1,5758:7246811,7805340:24720180,505283,134348 +g1,5757:9957380,7805340 +g1,5757:12483792,7805340 +g1,5757:13708004,7805340 +g1,5757:16185920,7805340 +h1,5757:17156508,7805340:0,0,0 +g1,5757:17355737,7805340 +g1,5757:18364336,7805340 +g1,5757:20061718,7805340 +h1,5757:20858636,7805340:0,0,0 +k1,5758:31966991,7805340:10934685 +g1,5758:31966991,7805340 +) +] +) +] +r1,5758:32583029,8529512:26214,2668631,0 +) +] +) +) +g1,5758:32583029,7939688 +) +h1,5758:6630773,8555726:0,0,0 +v1,5761:6630773,9921502:0,393216,0 +(1,5797:6630773,29949267:25952256,20420981,616038 +g1,5797:6630773,29949267 +(1,5797:6630773,29949267:25952256,20420981,616038 +(1,5797:6630773,30565305:25952256,21037019,0 +[1,5797:6630773,30565305:25952256,21037019,0 +(1,5797:6630773,30539091:25952256,20984591,0 +r1,5797:6656987,30539091:26214,20984591,0 +[1,5797:6656987,30539091:25899828,20984591,0 +(1,5797:6656987,29949267:25899828,19804943,0 +[1,5797:7246811,29949267:24720180,19804943,0 +(1,5762:7246811,11229860:24720180,1085536,298548 +(1,5761:7246811,11229860:0,1085536,298548 +r1,5797:8753226,11229860:1506415,1384084,298548 +k1,5761:7246811,11229860:-1506415 +) +(1,5761:7246811,11229860:1506415,1085536,298548 +) +k1,5761:8997274,11229860:244048 +k1,5761:9869157,11229860:244048 +k1,5761:11132289,11229860:244047 +k1,5761:12743418,11229860:244048 +k1,5761:13654622,11229860:244048 +(1,5761:13654622,11229860:0,459977,115847 +r1,5797:16474871,11229860:2820249,575824,115847 +k1,5761:13654622,11229860:-2820249 +) +(1,5761:13654622,11229860:2820249,459977,115847 +k1,5761:13654622,11229860:3277 +h1,5761:16471594,11229860:0,411205,112570 +) +k1,5761:16892589,11229860:244048 +k1,5761:18155721,11229860:244047 +k1,5761:20413035,11229860:244048 +k1,5761:21316375,11229860:244048 +k1,5761:22579508,11229860:244048 +k1,5761:25602282,11229860:244047 +k1,5761:27526673,11229860:244048 +k1,5761:28302218,11229860:244048 +k1,5761:31966991,11229860:0 +) +(1,5762:7246811,12071348:24720180,513147,134348 +k1,5761:8264866,12071348:256527 +k1,5761:9540477,12071348:256526 +k1,5761:11810270,12071348:256527 +k1,5761:12726088,12071348:256526 +k1,5761:14001700,12071348:256527 +k1,5761:16327853,12071348:256526 +k1,5761:18562257,12071348:256527 +k1,5761:21024071,12071348:256527 +k1,5761:21966759,12071348:256526 +k1,5761:22993989,12071348:256527 +k1,5761:26322843,12071348:256526 +k1,5761:27230798,12071348:256527 +k1,5761:28275722,12071348:256526 +k1,5761:29838382,12071348:256527 +k1,5761:31966991,12071348:0 +) +(1,5762:7246811,12912836:24720180,513147,126483 +k1,5761:10715868,12912836:188325 +k1,5761:13270043,12912836:188325 +(1,5761:13270043,12912836:0,414482,115847 +r1,5797:14683444,12912836:1413401,530329,115847 +k1,5761:13270043,12912836:-1413401 +) +(1,5761:13270043,12912836:1413401,414482,115847 +k1,5761:13270043,12912836:3277 +h1,5761:14680167,12912836:0,411205,112570 +) +k1,5761:15252533,12912836:188325 +k1,5761:15928436,12912836:188315 +k1,5761:18855511,12912836:188325 +k1,5761:21547967,12912836:188325 +k1,5761:22267789,12912836:188325 +k1,5761:23107542,12912836:188325 +k1,5761:24388353,12912836:188326 +k1,5761:24932538,12912836:188325 +k1,5761:28153214,12912836:188325 +k1,5761:29626045,12912836:188325 +k1,5761:31966991,12912836:0 +) +(1,5762:7246811,13754324:24720180,513147,134348 +k1,5761:7788658,13754324:185987 +(1,5761:7788658,13754324:0,452978,122846 +r1,5797:10257195,13754324:2468537,575824,122846 +k1,5761:7788658,13754324:-2468537 +) +(1,5761:7788658,13754324:2468537,452978,122846 +k1,5761:7788658,13754324:3277 +h1,5761:10253918,13754324:0,411205,112570 +) +k1,5761:10443181,13754324:185986 +k1,5761:12607045,13754324:185987 +k1,5761:13452323,13754324:185986 +k1,5761:15651576,13754324:185987 +k1,5761:17167944,13754324:185987 +k1,5761:20415117,13754324:185986 +k1,5761:21885610,13754324:185987 +k1,5761:22529694,13754324:185987 +k1,5761:23848142,13754324:185986 +k1,5761:24781895,13754324:185987 +k1,5761:27605050,13754324:185986 +k1,5761:30320727,13754324:185987 +k1,5762:31966991,13754324:0 +) +(1,5762:7246811,14595812:24720180,513147,134348 +k1,5761:9441811,14595812:225643 +k1,5761:11872741,14595812:225643 +k1,5761:12749812,14595812:225643 +k1,5761:13994540,14595812:225643 +k1,5761:15922153,14595812:225643 +k1,5761:18276405,14595812:225643 +k1,5761:22113082,14595812:225643 +k1,5761:24704575,14595812:225643 +(1,5761:24704575,14595812:0,414482,115847 +r1,5797:25766264,14595812:1061689,530329,115847 +k1,5761:24704575,14595812:-1061689 +) +(1,5761:24704575,14595812:1061689,414482,115847 +k1,5761:24704575,14595812:3277 +h1,5761:25762987,14595812:0,411205,112570 +) +k1,5761:25991907,14595812:225643 +k1,5761:27408995,14595812:225643 +(1,5761:27408995,14595812:0,414482,115847 +r1,5797:28118973,14595812:709978,530329,115847 +k1,5761:27408995,14595812:-709978 +) +(1,5761:27408995,14595812:709978,414482,115847 +k1,5761:27408995,14595812:3277 +h1,5761:28115696,14595812:0,411205,112570 +) +k1,5761:28551710,14595812:225643 +k1,5761:29768913,14595812:225643 +k1,5761:31966991,14595812:0 +) +(1,5762:7246811,15437300:24720180,513147,134348 +k1,5761:10419736,15437300:238223 +k1,5761:11467330,15437300:238224 +k1,5761:14564889,15437300:238223 +k1,5761:15935575,15437300:238224 +k1,5761:17526461,15437300:238223 +k1,5761:19601004,15437300:238224 +k1,5761:22672348,15437300:238223 +k1,5761:23526609,15437300:238223 +k1,5761:24120693,15437300:238224 +k1,5761:27137643,15437300:238223 +k1,5761:29056210,15437300:238224 +k1,5761:29953725,15437300:238223 +k1,5761:31966991,15437300:0 +) +(1,5762:7246811,16278788:24720180,513147,134348 +k1,5761:8834529,16278788:257337 +k1,5761:10485817,16278788:257337 +k1,5761:11762239,16278788:257337 +k1,5761:15237394,16278788:257337 +k1,5761:18363897,16278788:257337 +k1,5761:19280526,16278788:257337 +k1,5761:20556949,16278788:257338 +k1,5761:23122464,16278788:257337 +k1,5761:25585088,16278788:257337 +k1,5761:26493853,16278788:257337 +(1,5761:26493853,16278788:0,414482,115847 +r1,5797:27555542,16278788:1061689,530329,115847 +k1,5761:26493853,16278788:-1061689 +) +(1,5761:26493853,16278788:1061689,414482,115847 +k1,5761:26493853,16278788:3277 +h1,5761:27552265,16278788:0,411205,112570 +) +k1,5761:27812879,16278788:257337 +k1,5761:29261661,16278788:257337 +(1,5761:29261661,16278788:0,414482,115847 +r1,5797:29971639,16278788:709978,530329,115847 +k1,5761:29261661,16278788:-709978 +) +(1,5761:29261661,16278788:709978,414482,115847 +k1,5761:29261661,16278788:3277 +h1,5761:29968362,16278788:0,411205,112570 +) +k1,5761:30228976,16278788:257337 +k1,5761:31966991,16278788:0 +) +(1,5762:7246811,17120276:24720180,513147,134348 +k1,5761:10796301,17120276:256961 +k1,5761:11951104,17120276:256960 +k1,5761:13114428,17120276:256961 +k1,5761:14574630,17120276:256961 +k1,5761:15593119,17120276:256961 +k1,5761:18630116,17120276:256960 +k1,5761:20622470,17120276:256961 +k1,5761:22949058,17120276:256961 +k1,5761:25514197,17120276:256961 +k1,5761:26430449,17120276:256960 +k1,5761:29449753,17120276:256961 +k1,5761:31966991,17120276:0 +) +(1,5762:7246811,17961764:24720180,505283,134348 +k1,5761:8711868,17961764:211353 +k1,5761:10027504,17961764:211354 +k1,5761:11727180,17961764:211353 +k1,5761:13332484,17961764:211353 +k1,5761:14562923,17961764:211354 +k1,5761:17765995,17961764:211353 +k1,5761:20019450,17961764:211353 +k1,5761:22589445,17961764:211354 +k1,5761:24181642,17961764:211353 +k1,5761:25563468,17961764:211353 +k1,5761:29439595,17961764:211354 +k1,5761:30947906,17961764:211353 +k1,5761:31966991,17961764:0 +) +(1,5762:7246811,18803252:24720180,505283,126483 +g1,5761:10224767,18803252 +g1,5761:12434641,18803252 +g1,5761:13625430,18803252 +g1,5761:15373275,18803252 +g1,5761:16952692,18803252 +k1,5762:31966991,18803252:13849069 +g1,5762:31966991,18803252 +) +v1,5764:7246811,19993718:0,393216,0 +(1,5795:7246811,29228371:24720180,9627869,196608 +g1,5795:7246811,29228371 +g1,5795:7246811,29228371 +g1,5795:7050203,29228371 +(1,5795:7050203,29228371:0,9627869,196608 +r1,5797:32163599,29228371:25113396,9824477,196608 +k1,5795:7050203,29228371:-25113396 +) +(1,5795:7050203,29228371:25113396,9627869,196608 +[1,5795:7246811,29228371:24720180,9431261,0 +(1,5766:7246811,20207628:24720180,410518,82312 +(1,5765:7246811,20207628:0,0,0 +g1,5765:7246811,20207628 +g1,5765:7246811,20207628 +g1,5765:6919131,20207628 +(1,5765:6919131,20207628:0,0,0 +) +g1,5765:7246811,20207628 +) +k1,5766:7246811,20207628:0 +g1,5766:11356706,20207628 +g1,5766:12937436,20207628 +k1,5766:12937436,20207628:0 +h1,5766:14834312,20207628:0,0,0 +k1,5766:31966992,20207628:17132680 +g1,5766:31966992,20207628 +) +(1,5770:7246811,20939342:24720180,404226,76021 +(1,5768:7246811,20939342:0,0,0 +g1,5768:7246811,20939342 +g1,5768:7246811,20939342 +g1,5768:6919131,20939342 +(1,5768:6919131,20939342:0,0,0 +) +g1,5768:7246811,20939342 +) +g1,5770:8195248,20939342 +g1,5770:9459831,20939342 +h1,5770:9775977,20939342:0,0,0 +k1,5770:31966991,20939342:22191014 +g1,5770:31966991,20939342 +) +(1,5772:7246811,22260880:24720180,410518,82312 +(1,5771:7246811,22260880:0,0,0 +g1,5771:7246811,22260880 +g1,5771:7246811,22260880 +g1,5771:6919131,22260880 +(1,5771:6919131,22260880:0,0,0 +) +g1,5771:7246811,22260880 +) +k1,5772:7246811,22260880:0 +g1,5772:11672851,22260880 +g1,5772:13253581,22260880 +k1,5772:13253581,22260880:0 +h1,5772:15150457,22260880:0,0,0 +k1,5772:31966991,22260880:16816534 +g1,5772:31966991,22260880 +) +(1,5776:7246811,22992594:24720180,404226,76021 +(1,5774:7246811,22992594:0,0,0 +g1,5774:7246811,22992594 +g1,5774:7246811,22992594 +g1,5774:6919131,22992594 +(1,5774:6919131,22992594:0,0,0 +) +g1,5774:7246811,22992594 +) +g1,5776:8195248,22992594 +g1,5776:9459831,22992594 +k1,5776:9459831,22992594:0 +h1,5776:10092122,22992594:0,0,0 +k1,5776:31966990,22992594:21874868 +g1,5776:31966990,22992594 +) +(1,5778:7246811,24314132:24720180,410518,82312 +(1,5777:7246811,24314132:0,0,0 +g1,5777:7246811,24314132 +g1,5777:7246811,24314132 +g1,5777:6919131,24314132 +(1,5777:6919131,24314132:0,0,0 +) +g1,5777:7246811,24314132 +) +k1,5778:7246811,24314132:0 +g1,5778:11988998,24314132 +g1,5778:14518164,24314132 +g1,5778:16098894,24314132 +k1,5778:16098894,24314132:0 +h1,5778:17995770,24314132:0,0,0 +k1,5778:31966991,24314132:13971221 +g1,5778:31966991,24314132 +) +(1,5782:7246811,25045846:24720180,404226,76021 +(1,5780:7246811,25045846:0,0,0 +g1,5780:7246811,25045846 +g1,5780:7246811,25045846 +g1,5780:6919131,25045846 +(1,5780:6919131,25045846:0,0,0 +) +g1,5780:7246811,25045846 +) +g1,5782:8195248,25045846 +g1,5782:9459831,25045846 +g1,5782:9775977,25045846 +g1,5782:10408269,25045846 +k1,5782:10408269,25045846:0 +h1,5782:11040560,25045846:0,0,0 +k1,5782:31966992,25045846:20926432 +g1,5782:31966992,25045846 +) +(1,5784:7246811,26367384:24720180,410518,82312 +(1,5783:7246811,26367384:0,0,0 +g1,5783:7246811,26367384 +g1,5783:7246811,26367384 +g1,5783:6919131,26367384 +(1,5783:6919131,26367384:0,0,0 +) +g1,5783:7246811,26367384 +) +k1,5784:7246811,26367384:0 +g1,5784:12305143,26367384 +g1,5784:14518164,26367384 +g1,5784:16098894,26367384 +k1,5784:16098894,26367384:0 +h1,5784:17995770,26367384:0,0,0 +k1,5784:31966991,26367384:13971221 +g1,5784:31966991,26367384 +) +(1,5788:7246811,27099098:24720180,404226,76021 +(1,5786:7246811,27099098:0,0,0 +g1,5786:7246811,27099098 +g1,5786:7246811,27099098 +g1,5786:6919131,27099098 +(1,5786:6919131,27099098:0,0,0 +) +g1,5786:7246811,27099098 +) +g1,5788:8195248,27099098 +g1,5788:9459831,27099098 +g1,5788:10408268,27099098 +g1,5788:10724414,27099098 +h1,5788:11040560,27099098:0,0,0 +k1,5788:31966992,27099098:20926432 +g1,5788:31966992,27099098 +) +(1,5790:7246811,28420636:24720180,410518,82312 +(1,5789:7246811,28420636:0,0,0 +g1,5789:7246811,28420636 +g1,5789:7246811,28420636 +g1,5789:6919131,28420636 +(1,5789:6919131,28420636:0,0,0 +) +g1,5789:7246811,28420636 +) +k1,5790:7246811,28420636:0 +g1,5790:12305143,28420636 +g1,5790:14518164,28420636 +g1,5790:16098894,28420636 +h1,5790:16731186,28420636:0,0,0 +k1,5790:31966991,28420636:15235805 +g1,5790:31966991,28420636 +) +(1,5794:7246811,29152350:24720180,404226,76021 +(1,5792:7246811,29152350:0,0,0 +g1,5792:7246811,29152350 +g1,5792:7246811,29152350 +g1,5792:6919131,29152350 +(1,5792:6919131,29152350:0,0,0 +) +g1,5792:7246811,29152350 +) +g1,5794:8195248,29152350 +g1,5794:9459831,29152350 +g1,5794:10092123,29152350 +h1,5794:10408269,29152350:0,0,0 +k1,5794:31966991,29152350:21558722 +g1,5794:31966991,29152350 +) +] +) +g1,5795:31966991,29228371 +g1,5795:7246811,29228371 +g1,5795:7246811,29228371 +g1,5795:31966991,29228371 +g1,5795:31966991,29228371 +) +h1,5795:7246811,29424979:0,0,0 +] +) +] +r1,5797:32583029,30539091:26214,20984591,0 +) +] +) +) +g1,5797:32583029,29949267 +) +h1,5797:6630773,30565305:0,0,0 +v1,5800:6630773,31931081:0,393216,0 +(1,5814:6630773,43450512:25952256,11912647,616038 +g1,5814:6630773,43450512 +(1,5814:6630773,43450512:25952256,11912647,616038 +(1,5814:6630773,44066550:25952256,12528685,0 +[1,5814:6630773,44066550:25952256,12528685,0 +(1,5814:6630773,44040336:25952256,12476257,0 +r1,5814:6656987,44040336:26214,12476257,0 +[1,5814:6656987,44040336:25899828,12476257,0 +(1,5814:6656987,43450512:25899828,11296609,0 +[1,5814:7246811,43450512:24720180,11296609,0 +(1,5801:7246811,33241277:24720180,1087374,134348 +k1,5800:8704346,33241277:247832 +k1,5800:10825853,33241277:247833 +k1,5800:12809078,33241277:247832 +(1,5800:12809078,33241277:0,459977,115847 +r1,5814:15629327,33241277:2820249,575824,115847 +k1,5800:12809078,33241277:-2820249 +) +(1,5800:12809078,33241277:2820249,459977,115847 +k1,5800:12809078,33241277:3277 +h1,5800:15626050,33241277:0,411205,112570 +) +k1,5800:16050829,33241277:247832 +k1,5800:16654522,33241277:247833 +k1,5800:18775373,33241277:247832 +k1,5800:22209566,33241277:247833 +k1,5800:23108826,33241277:247832 +k1,5800:26068538,33241277:247832 +k1,5800:29132453,33241277:247833 +k1,5800:30947906,33241277:247832 +k1,5800:31966991,33241277:0 +) +(1,5801:7246811,34082765:24720180,505283,134348 +k1,5800:8594839,34082765:175589 +k1,5800:11078606,34082765:175589 +(1,5800:11078606,34082765:0,414482,115847 +r1,5814:11436872,34082765:358266,530329,115847 +k1,5800:11078606,34082765:-358266 +) +(1,5800:11078606,34082765:358266,414482,115847 +k1,5800:11078606,34082765:3277 +h1,5800:11433595,34082765:0,411205,112570 +) +k1,5800:11612461,34082765:175589 +k1,5800:12979496,34082765:175590 +(1,5800:12979496,34082765:0,452978,115847 +r1,5814:13337762,34082765:358266,568825,115847 +k1,5800:12979496,34082765:-358266 +) +(1,5800:12979496,34082765:358266,452978,115847 +k1,5800:12979496,34082765:3277 +h1,5800:13334485,34082765:0,411205,112570 +) +k1,5800:13513351,34082765:175589 +k1,5800:14956406,34082765:175589 +k1,5800:15487855,34082765:175589 +k1,5800:17506316,34082765:175589 +k1,5800:19659782,34082765:175589 +(1,5800:19659782,34082765:0,452978,115847 +r1,5814:20018048,34082765:358266,568825,115847 +k1,5800:19659782,34082765:-358266 +) +(1,5800:19659782,34082765:358266,452978,115847 +k1,5800:19659782,34082765:3277 +h1,5800:20014771,34082765:0,411205,112570 +) +k1,5800:20367307,34082765:175589 +k1,5800:22397566,34082765:175590 +k1,5800:23382525,34082765:175589 +k1,5800:26148752,34082765:175589 +k1,5800:27343426,34082765:175589 +k1,5800:31966991,34082765:0 +) +(1,5801:7246811,34924253:24720180,505283,126483 +k1,5800:9156311,34924253:229157 +k1,5800:10001505,34924253:229156 +k1,5800:12208539,34924253:229157 +(1,5800:12208539,34924253:0,414482,115847 +r1,5814:12566805,34924253:358266,530329,115847 +k1,5800:12208539,34924253:-358266 +) +(1,5800:12208539,34924253:358266,414482,115847 +k1,5800:12208539,34924253:3277 +h1,5800:12563528,34924253:0,411205,112570 +) +k1,5800:12795961,34924253:229156 +k1,5800:13556615,34924253:229157 +k1,5800:14804856,34924253:229156 +k1,5800:18008692,34924253:229157 +(1,5800:18008692,34924253:0,452978,115847 +r1,5814:19070381,34924253:1061689,568825,115847 +k1,5800:18008692,34924253:-1061689 +) +(1,5800:18008692,34924253:1061689,452978,115847 +k1,5800:18008692,34924253:3277 +h1,5800:19067104,34924253:0,411205,112570 +) +k1,5800:19299537,34924253:229156 +k1,5800:20211579,34924253:229157 +(1,5800:20211579,34924253:0,452978,115847 +r1,5814:21273268,34924253:1061689,568825,115847 +k1,5800:20211579,34924253:-1061689 +) +(1,5800:20211579,34924253:1061689,452978,115847 +k1,5800:20211579,34924253:3277 +h1,5800:21269991,34924253:0,411205,112570 +) +k1,5800:21676094,34924253:229156 +k1,5800:23516781,34924253:229157 +k1,5800:25327976,34924253:229156 +k1,5800:27535010,34924253:229157 +(1,5800:27535010,34924253:0,452978,115847 +r1,5814:27893276,34924253:358266,568825,115847 +k1,5800:27535010,34924253:-358266 +) +(1,5800:27535010,34924253:358266,452978,115847 +k1,5800:27535010,34924253:3277 +h1,5800:27889999,34924253:0,411205,112570 +) +k1,5800:28122432,34924253:229156 +k1,5800:29003017,34924253:229157 +k1,5800:30947906,34924253:229156 +k1,5800:31966991,34924253:0 +) +(1,5801:7246811,35765741:24720180,505283,7863 +g1,5800:9288912,35765741 +k1,5801:31966992,35765741:20461652 +g1,5801:31966992,35765741 +) +v1,5803:7246811,36956207:0,393216,0 +(1,5810:7246811,39247817:24720180,2684826,196608 +g1,5810:7246811,39247817 +g1,5810:7246811,39247817 +g1,5810:7050203,39247817 +(1,5810:7050203,39247817:0,2684826,196608 +r1,5814:32163599,39247817:25113396,2881434,196608 +k1,5810:7050203,39247817:-25113396 +) +(1,5810:7050203,39247817:25113396,2684826,196608 +[1,5810:7246811,39247817:24720180,2488218,0 +(1,5805:7246811,37148096:24720180,388497,9436 +(1,5804:7246811,37148096:0,0,0 +g1,5804:7246811,37148096 +g1,5804:7246811,37148096 +g1,5804:6919131,37148096 +(1,5804:6919131,37148096:0,0,0 +) +g1,5804:7246811,37148096 +) +g1,5805:7879103,37148096 +g1,5805:8827541,37148096 +k1,5805:8827541,37148096:0 +h1,5805:10724416,37148096:0,0,0 +k1,5805:31966992,37148096:21242576 +g1,5805:31966992,37148096 +) +(1,5806:7246811,37814274:24720180,404226,9436 +h1,5806:7246811,37814274:0,0,0 +g1,5806:7879103,37814274 +g1,5806:8827541,37814274 +h1,5806:10408270,37814274:0,0,0 +k1,5806:31966990,37814274:21558720 +g1,5806:31966990,37814274 +) +(1,5807:7246811,38480452:24720180,404226,101187 +h1,5807:7246811,38480452:0,0,0 +g1,5807:7879103,38480452 +g1,5807:8827541,38480452 +g1,5807:12305145,38480452 +g1,5807:13569729,38480452 +g1,5807:16415041,38480452 +h1,5807:17363478,38480452:0,0,0 +k1,5807:31966991,38480452:14603513 +g1,5807:31966991,38480452 +) +(1,5808:7246811,39146630:24720180,404226,101187 +h1,5808:7246811,39146630:0,0,0 +g1,5808:7879103,39146630 +g1,5808:9459832,39146630 +k1,5808:9459832,39146630:1573 +h1,5808:10725988,39146630:0,0,0 +k1,5808:31966992,39146630:21241004 +g1,5808:31966992,39146630 +) +] +) +g1,5810:31966991,39247817 +g1,5810:7246811,39247817 +g1,5810:7246811,39247817 +g1,5810:31966991,39247817 +g1,5810:31966991,39247817 +) +h1,5810:7246811,39444425:0,0,0 +(1,5814:7246811,40810201:24720180,513147,126483 +h1,5813:7246811,40810201:983040,0,0 +k1,5813:8981649,40810201:274041 +k1,5813:10426164,40810201:274042 +k1,5813:11515473,40810201:274041 +k1,5813:12855785,40810201:274041 +k1,5813:16794600,40810201:274042 +k1,5813:18399022,40810201:274041 +k1,5813:19692148,40810201:274041 +k1,5813:21620974,40810201:274042 +k1,5813:24203193,40810201:274041 +k1,5813:25468794,40810201:274041 +k1,5813:27394998,40810201:274041 +k1,5813:28351925,40810201:274042 +k1,5813:29796439,40810201:274041 +k1,5813:31966991,40810201:0 +) +(1,5814:7246811,41651689:24720180,505283,134348 +k1,5813:9182838,41651689:139030 +k1,5813:10340953,41651689:139030 +k1,5813:12490628,41651689:139030 +k1,5813:14009845,41651689:139029 +k1,5813:16520623,41651689:139030 +k1,5813:17421181,41651689:139030 +k1,5813:19962761,41651689:139030 +k1,5813:21120876,41651689:139030 +k1,5813:22929763,41651689:139030 +k1,5813:24650832,41651689:139030 +k1,5813:26602587,41651689:139029 +k1,5813:27933062,41651689:139030 +k1,5813:29414925,41651689:139030 +k1,5813:30947906,41651689:139030 +k1,5813:31966991,41651689:0 +) +(1,5814:7246811,42493177:24720180,505283,134348 +k1,5813:10977315,42493177:154204 +k1,5813:12624430,42493177:154205 +k1,5813:13949107,42493177:154204 +k1,5813:17412225,42493177:154205 +k1,5813:19115045,42493177:154204 +k1,5813:20720871,42493177:154204 +k1,5813:24155808,42493177:154205 +k1,5813:25976593,42493177:154204 +k1,5813:27548342,42493177:154205 +k1,5813:28795031,42493177:154204 +(1,5813:28795031,42493177:0,452978,115847 +r1,5814:31966991,42493177:3171960,568825,115847 +k1,5813:28795031,42493177:-3171960 +) +(1,5813:28795031,42493177:3171960,452978,115847 +k1,5813:28795031,42493177:3277 +h1,5813:31963714,42493177:0,411205,112570 +) +k1,5813:31966991,42493177:0 +) +(1,5814:7246811,43334665:24720180,505283,115847 +g1,5813:9655914,43334665 +(1,5813:9655914,43334665:0,459977,115847 +r1,5814:13883010,43334665:4227096,575824,115847 +k1,5813:9655914,43334665:-4227096 +) +(1,5813:9655914,43334665:4227096,459977,115847 +k1,5813:9655914,43334665:3277 +h1,5813:13879733,43334665:0,411205,112570 +) +g1,5813:14082239,43334665 +g1,5813:14932896,43334665 +g1,5813:17163086,43334665 +g1,5813:18381400,43334665 +k1,5814:31966991,43334665:8585849 +g1,5814:31966991,43334665 +) +] +) +] +r1,5814:32583029,44040336:26214,12476257,0 +) +] +) +) +g1,5814:32583029,43450512 ) -h1,5808:6630773,44066550:0,0,0 -] -(1,5813:32583029,45706769:0,0,0 -g1,5813:32583029,45706769 +h1,5814:6630773,44066550:0,0,0 +] +(1,5819:32583029,45706769:0,0,0 +g1,5819:32583029,45706769 ) ) ] -(1,5813:6630773,47279633:25952256,0,0 -h1,5813:6630773,47279633:25952256,0,0 +(1,5819:6630773,47279633:25952256,0,0 +h1,5819:6630773,47279633:25952256,0,0 ) -] -h1,5813:4262630,4025873:0,0,0 -] -!25154 +] +h1,5819:4262630,4025873:0,0,0 +] +!25123 }110 -Input:783:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:784:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:785:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:786:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:787:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:788:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:789:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:790:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:791:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:792:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:793:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:794:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1032 +Input:779:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:780:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:781:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:782:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:783:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:784:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:785:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:786:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:787:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:788:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:789:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:790:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1104 {111 -[1,5866:4262630,47279633:28320399,43253760,0 -(1,5866:4262630,4025873:0,0,0 -[1,5866:-473657,4025873:25952256,0,0 -(1,5866:-473657,-710414:25952256,0,0 -h1,5866:-473657,-710414:0,0,0 -(1,5866:-473657,-710414:0,0,0 -(1,5866:-473657,-710414:0,0,0 -g1,5866:-473657,-710414 -(1,5866:-473657,-710414:65781,0,65781 -g1,5866:-407876,-710414 -[1,5866:-407876,-644633:0,0,0 +[1,5872:4262630,47279633:28320399,43253760,0 +(1,5872:4262630,4025873:0,0,0 +[1,5872:-473657,4025873:25952256,0,0 +(1,5872:-473657,-710414:25952256,0,0 +h1,5872:-473657,-710414:0,0,0 +(1,5872:-473657,-710414:0,0,0 +(1,5872:-473657,-710414:0,0,0 +g1,5872:-473657,-710414 +(1,5872:-473657,-710414:65781,0,65781 +g1,5872:-407876,-710414 +[1,5872:-407876,-644633:0,0,0 ] ) -k1,5866:-473657,-710414:-65781 +k1,5872:-473657,-710414:-65781 ) ) -k1,5866:25478599,-710414:25952256 -g1,5866:25478599,-710414 +k1,5872:25478599,-710414:25952256 +g1,5872:25478599,-710414 ) ] ) -[1,5866:6630773,47279633:25952256,43253760,0 -[1,5866:6630773,4812305:25952256,786432,0 -(1,5866:6630773,4812305:25952256,505283,134348 -(1,5866:6630773,4812305:25952256,505283,134348 -g1,5866:3078558,4812305 -[1,5866:3078558,4812305:0,0,0 -(1,5866:3078558,2439708:0,1703936,0 -k1,5866:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5866:2537886,2439708:1179648,16384,0 +[1,5872:6630773,47279633:25952256,43253760,0 +[1,5872:6630773,4812305:25952256,786432,0 +(1,5872:6630773,4812305:25952256,505283,134348 +(1,5872:6630773,4812305:25952256,505283,134348 +g1,5872:3078558,4812305 +[1,5872:3078558,4812305:0,0,0 +(1,5872:3078558,2439708:0,1703936,0 +k1,5872:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5872:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5866:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5872:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5866:3078558,4812305:0,0,0 -(1,5866:3078558,2439708:0,1703936,0 -g1,5866:29030814,2439708 -g1,5866:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5866:36151628,1915420:16384,1179648,0 +[1,5872:3078558,4812305:0,0,0 +(1,5872:3078558,2439708:0,1703936,0 +g1,5872:29030814,2439708 +g1,5872:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5872:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5866:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5872:37855564,2439708:1179648,16384,0 ) ) -k1,5866:3078556,2439708:-34777008 +k1,5872:3078556,2439708:-34777008 ) ] -[1,5866:3078558,4812305:0,0,0 -(1,5866:3078558,49800853:0,16384,2228224 -k1,5866:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5866:2537886,49800853:1179648,16384,0 +[1,5872:3078558,4812305:0,0,0 +(1,5872:3078558,49800853:0,16384,2228224 +k1,5872:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5872:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5866:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5872:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5866:3078558,4812305:0,0,0 -(1,5866:3078558,49800853:0,16384,2228224 -g1,5866:29030814,49800853 -g1,5866:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5866:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5866:37855564,49800853:1179648,16384,0 -) -) -k1,5866:3078556,49800853:-34777008 -) -] -g1,5866:6630773,4812305 -k1,5866:18752969,4812305:10926819 -g1,5866:20139710,4812305 -g1,5866:20788516,4812305 -g1,5866:24102671,4812305 -g1,5866:28605649,4812305 -g1,5866:30015328,4812305 -) -) -] -[1,5866:6630773,45706769:25952256,40108032,0 -(1,5866:6630773,45706769:25952256,40108032,0 -(1,5866:6630773,45706769:0,0,0 -g1,5866:6630773,45706769 -) -[1,5866:6630773,45706769:25952256,40108032,0 -(1,5810:6630773,6254097:25952256,555811,12975 -(1,5810:6630773,6254097:2450326,534184,12975 -g1,5810:6630773,6254097 -g1,5810:9081099,6254097 -) -k1,5810:32583029,6254097:20399914 -g1,5810:32583029,6254097 -) -(1,5813:6630773,7488801:25952256,513147,134348 -k1,5812:7763001,7488801:178679 -k1,5812:9221598,7488801:178679 -k1,5812:10419362,7488801:178679 -k1,5812:12336057,7488801:178680 -k1,5812:15186639,7488801:178679 -k1,5812:16016746,7488801:178679 -k1,5812:17214510,7488801:178679 -k1,5812:19838337,7488801:178679 -k1,5812:20676308,7488801:178679 -k1,5812:23879474,7488801:178679 -k1,5812:27133759,7488801:178680 -k1,5812:27971730,7488801:178679 -k1,5812:28506269,7488801:178679 -k1,5812:31426974,7488801:178679 -k1,5813:32583029,7488801:0 -) -(1,5813:6630773,8330289:25952256,505283,134348 -k1,5812:9053281,8330289:179211 -k1,5812:11564263,8330289:179211 -k1,5812:12426360,8330289:179212 -k1,5812:18124358,8330289:179211 -k1,5812:21390315,8330289:179211 -k1,5812:22325811,8330289:179211 -k1,5812:25349284,8330289:179211 -k1,5812:26482044,8330289:179211 -k1,5812:27753741,8330289:179212 -k1,5812:28952037,8330289:179211 -k1,5812:30784721,8330289:179211 -k1,5812:32583029,8330289:0 -) -(1,5813:6630773,9171777:25952256,513147,126483 -k1,5812:9724425,9171777:202859 -k1,5812:10578712,9171777:202859 -k1,5812:12519586,9171777:202859 -k1,5812:14174068,9171777:202860 -k1,5812:15533637,9171777:202859 -k1,5812:16395788,9171777:202859 -k1,5812:18295374,9171777:202859 -k1,5812:21957879,9171777:202859 -k1,5812:22820030,9171777:202859 -k1,5812:24041975,9171777:202860 -k1,5812:27320439,9171777:202859 -k1,5812:28182590,9171777:202859 -k1,5812:28741309,9171777:202859 -k1,5813:32583029,9171777:0 -) -(1,5813:6630773,10013265:25952256,505283,134348 -g1,5812:8072565,10013265 -g1,5812:9290879,10013265 -g1,5812:11731439,10013265 -k1,5813:32583028,10013265:17960796 -g1,5813:32583028,10013265 -) -(1,5815:6630773,10854753:25952256,513147,134348 -h1,5814:6630773,10854753:983040,0,0 -k1,5814:9048723,10854753:238223 -k1,5814:11565634,10854753:238224 -k1,5814:12463149,10854753:238223 -k1,5814:15777633,10854753:238224 -k1,5814:17512043,10854753:238223 -k1,5814:19488282,10854753:238224 -k1,5814:22559626,10854753:238223 -k1,5814:25469096,10854753:238223 -k1,5814:27636700,10854753:238224 -k1,5814:29772846,10854753:238223 -k1,5814:30366930,10854753:238224 -k1,5814:32020075,10854753:238223 -k1,5814:32583029,10854753:0 -) -(1,5815:6630773,11696241:25952256,513147,126483 -k1,5814:8830312,11696241:167923 -k1,5814:10827345,11696241:167923 -k1,5814:12540608,11696241:167924 -k1,5814:14453755,11696241:167923 -k1,5814:16993426,11696241:167923 -k1,5814:17517209,11696241:167923 -k1,5814:20717484,11696241:167924 -k1,5814:22169913,11696241:167923 -k1,5814:25912170,11696241:167923 -k1,5814:27778131,11696241:167923 -k1,5814:28965140,11696241:167924 -k1,5814:30483105,11696241:167923 -k1,5814:31310320,11696241:167923 -k1,5815:32583029,11696241:0 -) -(1,5815:6630773,12537729:25952256,513147,134348 -k1,5814:8847855,12537729:201195 -k1,5814:10181513,12537729:201196 -k1,5814:11553181,12537729:201195 -k1,5814:12773462,12537729:201196 -k1,5814:14389579,12537729:201195 -k1,5814:15782220,12537729:201196 -k1,5814:18761486,12537729:201195 -k1,5814:19575443,12537729:201195 -k1,5814:20795724,12537729:201196 -k1,5814:22381039,12537729:201195 -k1,5814:25768595,12537729:201196 -k1,5814:28945125,12537729:201195 -k1,5814:30165406,12537729:201196 -k1,5814:31955194,12537729:201195 -k1,5815:32583029,12537729:0 -) -(1,5815:6630773,13379217:25952256,513147,134348 -k1,5814:7299977,13379217:254361 -k1,5814:9209177,13379217:254416 -k1,5814:11179981,13379217:254416 -k1,5814:12093689,13379217:254416 -k1,5814:15065228,13379217:254416 -k1,5814:17064868,13379217:254416 -k1,5814:18310844,13379217:254416 -k1,5814:21522900,13379217:254416 -k1,5814:23521230,13379217:254417 -k1,5814:25511039,13379217:254416 -(1,5814:25511039,13379217:0,459977,115847 -r1,5814:26572728,13379217:1061689,575824,115847 -k1,5814:25511039,13379217:-1061689 -) -(1,5814:25511039,13379217:1061689,459977,115847 -k1,5814:25511039,13379217:3277 -h1,5814:26569451,13379217:0,411205,112570 -) -k1,5814:27000814,13379217:254416 -(1,5814:27000814,13379217:0,452978,115847 -r1,5814:28765927,13379217:1765113,568825,115847 -k1,5814:27000814,13379217:-1765113 -) -(1,5814:27000814,13379217:1765113,452978,115847 -k1,5814:27000814,13379217:3277 -h1,5814:28762650,13379217:0,411205,112570 -) -k1,5814:29020343,13379217:254416 -k1,5814:30466204,13379217:254416 -(1,5814:30466204,13379217:0,414482,115847 -r1,5814:32583029,13379217:2116825,530329,115847 -k1,5814:30466204,13379217:-2116825 -) -(1,5814:30466204,13379217:2116825,414482,115847 -k1,5814:30466204,13379217:3277 -h1,5814:32579752,13379217:0,411205,112570 -) -k1,5814:32583029,13379217:0 -) -(1,5815:6630773,14220705:25952256,513147,126483 -k1,5814:10335069,14220705:176493 -k1,5814:12069354,14220705:176494 -k1,5814:13989105,14220705:176493 -k1,5814:14781636,14220705:176493 -k1,5814:16288511,14220705:176494 -k1,5814:18248239,14220705:176493 -k1,5814:21398756,14220705:176493 -k1,5814:22955437,14220705:176493 -k1,5814:25562006,14220705:176494 -k1,5814:27132450,14220705:176493 -k1,5814:29633505,14220705:176493 -k1,5814:30461427,14220705:176494 -k1,5814:31657005,14220705:176493 -k1,5815:32583029,14220705:0 -) -(1,5815:6630773,15062193:25952256,505283,126483 -k1,5814:8080833,15062193:152447 -k1,5814:9613467,15062193:152446 -k1,5814:11819812,15062193:152447 -k1,5814:13533326,15062193:152446 -k1,5814:14877218,15062193:152447 -k1,5814:16360046,15062193:152447 -k1,5814:17531577,15062193:152446 -k1,5814:20716375,15062193:152447 -k1,5814:22153328,15062193:152447 -k1,5814:25724787,15062193:152446 -k1,5814:26896319,15062193:152447 -k1,5814:29765888,15062193:152446 -k1,5814:30449832,15062193:152447 -k1,5814:32583029,15062193:0 -) -(1,5815:6630773,15903681:25952256,513147,134348 -k1,5814:8642981,15903681:228973 -k1,5814:9891038,15903681:228972 -k1,5814:11773484,15903681:228973 -k1,5814:15113450,15903681:228972 -k1,5814:16446705,15903681:228973 -k1,5814:17423444,15903681:228973 -k1,5814:21853929,15903681:228972 -k1,5814:23476853,15903681:228973 -k1,5814:25356023,15903681:228973 -k1,5814:27027442,15903681:228972 -k1,5814:28413125,15903681:228973 -k1,5814:29301389,15903681:228972 -k1,5814:31227089,15903681:228973 -k1,5815:32583029,15903681:0 -) -(1,5815:6630773,16745169:25952256,513147,134348 -k1,5814:9180022,16745169:164394 -k1,5814:11079810,16745169:164395 -k1,5814:12263289,16745169:164394 -k1,5814:13923216,16745169:164395 -k1,5814:16388579,16745169:164394 -k1,5814:17212266,16745169:164395 -k1,5814:19015715,16745169:164394 -k1,5814:21467317,16745169:164395 -k1,5814:23804885,16745169:164394 -k1,5814:24585318,16745169:164395 -k1,5814:25768797,16745169:164394 -k1,5814:28102434,16745169:164395 -k1,5814:28918256,16745169:164394 -k1,5815:32583029,16745169:0 -) -(1,5815:6630773,17586657:25952256,513147,126483 -k1,5814:7242268,17586657:196652 -k1,5814:9773971,17586657:196655 -k1,5814:10598461,17586657:196655 -k1,5814:11383629,17586657:196655 -k1,5814:13531946,17586657:196655 -k1,5814:17207251,17586657:196654 -k1,5814:19735022,17586657:196655 -k1,5814:21676901,17586657:196655 -k1,5814:22559718,17586657:196655 -k1,5814:25846396,17586657:196655 -k1,5814:26659089,17586657:196655 -k1,5814:28058984,17586657:196654 -k1,5814:30534326,17586657:196655 -k1,5814:31835263,17586657:196655 -k1,5814:32583029,17586657:0 -) -(1,5815:6630773,18428145:25952256,513147,134348 -k1,5814:9591034,18428145:241172 -k1,5814:14776898,18428145:241173 -k1,5814:15779598,18428145:241172 -k1,5814:17450766,18428145:241172 -k1,5814:18343367,18428145:241173 -k1,5814:19603624,18428145:241172 -k1,5814:21637207,18428145:241173 -k1,5814:24904176,18428145:241172 -k1,5814:28235371,18428145:241172 -k1,5814:29092582,18428145:241173 -k1,5814:31612441,18428145:241172 -h1,5814:32583029,18428145:0,0,0 -k1,5814:32583029,18428145:0 -) -(1,5815:6630773,19269633:25952256,485622,134348 -g1,5814:7639372,19269633 -g1,5814:9336754,19269633 -h1,5814:10532131,19269633:0,0,0 -k1,5815:32583029,19269633:21877228 -g1,5815:32583029,19269633 -) -(1,5816:6630773,20897553:25952256,505283,126483 -(1,5816:6630773,20897553:2809528,485622,11795 -g1,5816:6630773,20897553 -g1,5816:9440301,20897553 -) -(1,5816:9440301,20897553:0,459977,115847 -r1,5816:10501990,20897553:1061689,575824,115847 -k1,5816:9440301,20897553:-1061689 -) -(1,5816:9440301,20897553:1061689,459977,115847 -k1,5816:9440301,20897553:3277 -h1,5816:10498713,20897553:0,411205,112570 -) -g1,5816:10706462,20897553 -k1,5816:32583028,20897553:20084156 -g1,5816:32583028,20897553 -) -(1,5818:6630773,22132257:25952256,513147,126483 -k1,5817:8001440,22132257:173980 -k1,5817:9777120,22132257:173980 -k1,5817:13256081,22132257:173980 -k1,5817:14943287,22132257:173980 -k1,5817:16503353,22132257:173980 -k1,5817:17336625,22132257:173980 -k1,5817:18925527,22132257:173980 -k1,5817:19631004,22132257:173980 -k1,5817:20160844,22132257:173980 -(1,5817:20160844,22132257:0,459977,115847 -r1,5817:21222533,22132257:1061689,575824,115847 -k1,5817:20160844,22132257:-1061689 -) -(1,5817:20160844,22132257:1061689,459977,115847 -k1,5817:20160844,22132257:3277 -h1,5817:21219256,22132257:0,411205,112570 -) -k1,5817:21396512,22132257:173979 -k1,5817:23159085,22132257:173980 -k1,5817:25207395,22132257:173980 -k1,5817:27126599,22132257:173980 -k1,5817:28897036,22132257:173980 -k1,5817:29687054,22132257:173980 -k1,5817:30275852,22132257:173955 -k1,5817:31259202,22132257:173980 -k1,5817:32583029,22132257:0 -) -(1,5818:6630773,22973745:25952256,513147,126483 -g1,5817:7512887,22973745 -g1,5817:10020294,22973745 -g1,5817:10878815,22973745 -g1,5817:13088689,22973745 -g1,5817:13939346,22973745 -g1,5817:15084915,22973745 -k1,5818:32583029,22973745:15679490 -g1,5818:32583029,22973745 -) -v1,5820:6630773,24108471:0,393216,0 -(1,5836:6630773,29175610:25952256,5460355,196608 -g1,5836:6630773,29175610 -g1,5836:6630773,29175610 -g1,5836:6434165,29175610 -(1,5836:6434165,29175610:0,5460355,196608 -r1,5836:32779637,29175610:26345472,5656963,196608 -k1,5836:6434165,29175610:-26345472 -) -(1,5836:6434165,29175610:26345472,5460355,196608 -[1,5836:6630773,29175610:25952256,5263747,0 -(1,5822:6630773,24316089:25952256,404226,9436 -(1,5821:6630773,24316089:0,0,0 -g1,5821:6630773,24316089 -g1,5821:6630773,24316089 -g1,5821:6303093,24316089 -(1,5821:6303093,24316089:0,0,0 -) -g1,5821:6630773,24316089 -) -g1,5822:7263065,24316089 -g1,5822:8211503,24316089 -h1,5822:8527649,24316089:0,0,0 -k1,5822:32583029,24316089:24055380 -g1,5822:32583029,24316089 -) -(1,5823:6630773,24982267:25952256,410518,76021 -h1,5823:6630773,24982267:0,0,0 -g1,5823:7895356,24982267 -g1,5823:8843793,24982267 -g1,5823:9792230,24982267 -g1,5823:11372960,24982267 -g1,5823:12005252,24982267 -g1,5823:12953690,24982267 -g1,5823:13585982,24982267 -g1,5823:14218274,24982267 -h1,5823:14534420,24982267:0,0,0 -k1,5823:32583028,24982267:18048608 -g1,5823:32583028,24982267 -) -(1,5824:6630773,25648445:25952256,404226,6290 -h1,5824:6630773,25648445:0,0,0 -h1,5824:6946919,25648445:0,0,0 -k1,5824:32583029,25648445:25636110 -g1,5824:32583029,25648445 -) -(1,5828:6630773,26380159:25952256,404226,76021 -(1,5826:6630773,26380159:0,0,0 -g1,5826:6630773,26380159 -g1,5826:6630773,26380159 -g1,5826:6303093,26380159 -(1,5826:6303093,26380159:0,0,0 -) -g1,5826:6630773,26380159 -) -g1,5828:7579210,26380159 -g1,5828:8843793,26380159 -h1,5828:9476084,26380159:0,0,0 -k1,5828:32583028,26380159:23106944 -g1,5828:32583028,26380159 -) -(1,5830:6630773,27701697:25952256,410518,101187 -(1,5829:6630773,27701697:0,0,0 -g1,5829:6630773,27701697 -g1,5829:6630773,27701697 -g1,5829:6303093,27701697 -(1,5829:6303093,27701697:0,0,0 -) -g1,5829:6630773,27701697 -) -g1,5830:7263065,27701697 -g1,5830:8211503,27701697 -g1,5830:11056816,27701697 -g1,5830:11689108,27701697 -g1,5830:14534419,27701697 -g1,5830:17379730,27701697 -k1,5830:17379730,27701697:0 -h1,5830:19908895,27701697:0,0,0 -k1,5830:32583029,27701697:12674134 -g1,5830:32583029,27701697 -) -(1,5831:6630773,28367875:25952256,404226,6290 -h1,5831:6630773,28367875:0,0,0 -h1,5831:6946919,28367875:0,0,0 -k1,5831:32583029,28367875:25636110 -g1,5831:32583029,28367875 -) -(1,5835:6630773,29099589:25952256,404226,76021 -(1,5833:6630773,29099589:0,0,0 -g1,5833:6630773,29099589 -g1,5833:6630773,29099589 -g1,5833:6303093,29099589 -(1,5833:6303093,29099589:0,0,0 -) -g1,5833:6630773,29099589 -) -g1,5835:7579210,29099589 -g1,5835:8843793,29099589 -h1,5835:9476084,29099589:0,0,0 -k1,5835:32583028,29099589:23106944 -g1,5835:32583028,29099589 -) -] -) -g1,5836:32583029,29175610 -g1,5836:6630773,29175610 -g1,5836:6630773,29175610 -g1,5836:32583029,29175610 -g1,5836:32583029,29175610 -) -h1,5836:6630773,29372218:0,0,0 -(1,5840:6630773,30682254:25952256,513147,126483 -h1,5839:6630773,30682254:983040,0,0 -k1,5839:9337328,30682254:235192 -k1,5839:10591606,30682254:235193 -k1,5839:14013158,30682254:235192 -(1,5839:14013158,30682254:0,452978,115847 -r1,5839:17536832,30682254:3523674,568825,115847 -k1,5839:14013158,30682254:-3523674 -) -(1,5839:14013158,30682254:3523674,452978,115847 -g1,5839:14719859,30682254 -g1,5839:15774995,30682254 -g1,5839:16478419,30682254 -g1,5839:17181843,30682254 -h1,5839:17533555,30682254:0,411205,112570 -) -k1,5839:17772025,30682254:235193 -k1,5839:18538714,30682254:235192 -k1,5839:21607028,30682254:235193 -k1,5839:22977304,30682254:235192 -k1,5839:25141877,30682254:235193 -k1,5839:26771020,30682254:235192 -k1,5839:29517553,30682254:235193 -(1,5839:29517553,30682254:0,414482,115847 -r1,5839:29875819,30682254:358266,530329,115847 -k1,5839:29517553,30682254:-358266 -) -(1,5839:29517553,30682254:358266,414482,115847 -k1,5839:29517553,30682254:3277 -h1,5839:29872542,30682254:0,411205,112570 -) -k1,5839:30111011,30682254:235192 -k1,5840:32583029,30682254:0 -) -(1,5840:6630773,31523742:25952256,513147,134348 -k1,5839:8434324,31523742:218235 -k1,5839:10648129,31523742:218234 -k1,5839:12317986,31523742:218235 -k1,5839:13195513,31523742:218235 -k1,5839:14432832,31523742:218234 -k1,5839:16661712,31523742:218235 -k1,5839:17495985,31523742:218235 -(1,5839:17495985,31523742:0,435480,115847 -r1,5839:18557674,31523742:1061689,551327,115847 -k1,5839:17495985,31523742:-1061689 -) -(1,5839:17495985,31523742:1061689,435480,115847 -k1,5839:17495985,31523742:3277 -h1,5839:18554397,31523742:0,411205,112570 -) -k1,5839:18949578,31523742:218234 -k1,5839:21506793,31523742:218235 -k1,5839:22384320,31523742:218235 -k1,5839:22958414,31523742:218234 -k1,5839:25301326,31523742:218235 -k1,5839:28705921,31523742:218235 -k1,5839:30437381,31523742:218234 -k1,5839:32227169,31523742:218235 -k1,5839:32583029,31523742:0 -) -(1,5840:6630773,32365230:25952256,513147,126483 -g1,5839:10243772,32365230 -g1,5839:13629361,32365230 -g1,5839:15597407,32365230 -g1,5839:17082452,32365230 -g1,5839:18756896,32365230 -g1,5839:20466075,32365230 -g1,5839:22178530,32365230 -g1,5839:23325410,32365230 -g1,5839:24543724,32365230 -g1,5839:26319749,32365230 -g1,5839:27178270,32365230 -g1,5839:28396584,32365230 -(1,5839:28396584,32365230:0,459977,115847 -r1,5839:29458273,32365230:1061689,575824,115847 -k1,5839:28396584,32365230:-1061689 -) -(1,5839:28396584,32365230:1061689,459977,115847 -k1,5839:28396584,32365230:3277 -h1,5839:29454996,32365230:0,411205,112570 -) -g1,5839:29657502,32365230 -k1,5840:32583029,32365230:1336934 -g1,5840:32583029,32365230 -) -v1,5842:6630773,33675265:0,393216,0 -(1,5843:6630773,36793082:25952256,3511033,616038 -g1,5843:6630773,36793082 -(1,5843:6630773,36793082:25952256,3511033,616038 -(1,5843:6630773,37409120:25952256,4127071,0 -[1,5843:6630773,37409120:25952256,4127071,0 -(1,5843:6630773,37382906:25952256,4074643,0 -r1,5843:6656987,37382906:26214,4074643,0 -[1,5843:6656987,37382906:25899828,4074643,0 -(1,5843:6656987,36793082:25899828,2894995,0 -[1,5843:7246811,36793082:24720180,2894995,0 -(1,5843:7246811,34983623:24720180,1085536,298548 -(1,5842:7246811,34983623:0,1085536,298548 -r1,5843:8753226,34983623:1506415,1384084,298548 -k1,5842:7246811,34983623:-1506415 -) -(1,5842:7246811,34983623:1506415,1085536,298548 -) -k1,5842:9004167,34983623:250941 -k1,5842:9725001,34983623:250941 -k1,5842:10507439,34983623:250941 -k1,5842:13967678,34983623:250941 -k1,5842:14870047,34983623:250941 -k1,5842:16534600,34983623:250941 -k1,5842:18070047,34983623:250941 -k1,5842:18676848,34983623:250941 -k1,5842:19921315,34983623:250941 -k1,5842:20855140,34983623:250940 -k1,5842:23083958,34983623:250941 -k1,5842:23994191,34983623:250941 -k1,5842:26258398,34983623:250941 -k1,5842:27929504,34983623:250941 -k1,5842:28711942,34983623:250941 -k1,5842:29318743,34983623:250941 -k1,5842:31109780,34983623:250941 -k1,5843:31966991,34983623:0 -) -(1,5843:7246811,35825111:24720180,505283,134348 -k1,5842:9908261,35825111:233341 -k1,5842:10793030,35825111:233341 -(1,5842:10793030,35825111:0,459977,115847 -r1,5843:12558143,35825111:1765113,575824,115847 -k1,5842:10793030,35825111:-1765113 -) -(1,5842:10793030,35825111:1765113,459977,115847 -k1,5842:10793030,35825111:3277 -h1,5842:12554866,35825111:0,411205,112570 -) -k1,5842:12965154,35825111:233341 -k1,5842:14483001,35825111:233341 -k1,5842:17177219,35825111:233341 -k1,5842:18219930,35825111:233341 -k1,5842:20233884,35825111:233341 -k1,5842:21539394,35825111:233341 -k1,5842:23447835,35825111:233341 -k1,5842:24700261,35825111:233341 -k1,5842:28450264,35825111:233341 -k1,5842:29299643,35825111:233341 -k1,5842:30552069,35825111:233341 -k1,5842:31966991,35825111:0 -) -(1,5843:7246811,36666599:24720180,505283,126483 -k1,5843:31966990,36666599:22969712 -g1,5843:31966990,36666599 -) -] -) -] -r1,5843:32583029,37382906:26214,4074643,0 -) -] -) -) -g1,5843:32583029,36793082 -) -h1,5843:6630773,37409120:0,0,0 -(1,5846:6630773,38719156:25952256,513147,126483 -h1,5845:6630773,38719156:983040,0,0 -g1,5845:9530085,38719156 -g1,5845:12721033,38719156 -g1,5845:13579554,38719156 -g1,5845:14871268,38719156 -g1,5845:15737653,38719156 -(1,5845:15737653,38719156:0,459977,115847 -r1,5845:16799342,38719156:1061689,575824,115847 -k1,5845:15737653,38719156:-1061689 -) -(1,5845:15737653,38719156:1061689,459977,115847 -k1,5845:15737653,38719156:3277 -h1,5845:16796065,38719156:0,411205,112570 -) -g1,5845:16998571,38719156 -g1,5845:20789828,38719156 -g1,5845:21648349,38719156 -g1,5845:23177959,38719156 -g1,5845:24028616,38719156 -g1,5845:25957340,38719156 -g1,5845:27665208,38719156 -k1,5846:32583029,38719156:3651665 -g1,5846:32583029,38719156 -) -v1,5848:6630773,39853882:0,393216,0 -(1,5860:6630773,44200125:25952256,4739459,196608 -g1,5860:6630773,44200125 -g1,5860:6630773,44200125 -g1,5860:6434165,44200125 -(1,5860:6434165,44200125:0,4739459,196608 -r1,5860:32779637,44200125:26345472,4936067,196608 -k1,5860:6434165,44200125:-26345472 -) -(1,5860:6434165,44200125:26345472,4739459,196608 -[1,5860:6630773,44200125:25952256,4542851,0 -(1,5850:6630773,40061500:25952256,404226,82312 -(1,5849:6630773,40061500:0,0,0 -g1,5849:6630773,40061500 -g1,5849:6630773,40061500 -g1,5849:6303093,40061500 -(1,5849:6303093,40061500:0,0,0 -) -g1,5849:6630773,40061500 -) -g1,5850:7263065,40061500 -g1,5850:8211503,40061500 -g1,5850:9792233,40061500 -g1,5850:10740671,40061500 -g1,5850:11689109,40061500 -g1,5850:12637547,40061500 -h1,5850:13269839,40061500:0,0,0 -k1,5850:32583029,40061500:19313190 -g1,5850:32583029,40061500 -) -(1,5851:6630773,40727678:25952256,410518,101187 -h1,5851:6630773,40727678:0,0,0 -g1,5851:8527647,40727678 -g1,5851:9476084,40727678 -g1,5851:10424521,40727678 -g1,5851:14534415,40727678 -g1,5851:15166707,40727678 -g1,5851:17063581,40727678 -g1,5851:18012018,40727678 -k1,5851:18012018,40727678:0 -h1,5851:20225038,40727678:0,0,0 -k1,5851:32583029,40727678:12357991 -g1,5851:32583029,40727678 -) -(1,5859:6630773,41459392:25952256,404226,76021 -(1,5853:6630773,41459392:0,0,0 -g1,5853:6630773,41459392 -g1,5853:6630773,41459392 -g1,5853:6303093,41459392 -(1,5853:6303093,41459392:0,0,0 -) -g1,5853:6630773,41459392 -) -g1,5859:7579210,41459392 -g1,5859:8843793,41459392 -h1,5859:9159939,41459392:0,0,0 -k1,5859:32583029,41459392:23423090 -g1,5859:32583029,41459392 -) -(1,5859:6630773,42125570:25952256,404226,76021 -h1,5859:6630773,42125570:0,0,0 -g1,5859:7579210,42125570 -g1,5859:8843793,42125570 -h1,5859:9159939,42125570:0,0,0 -k1,5859:32583029,42125570:23423090 -g1,5859:32583029,42125570 -) -(1,5859:6630773,42791748:25952256,404226,76021 -h1,5859:6630773,42791748:0,0,0 -g1,5859:7579210,42791748 -g1,5859:8843793,42791748 -h1,5859:9159939,42791748:0,0,0 -k1,5859:32583029,42791748:23423090 -g1,5859:32583029,42791748 -) -(1,5859:6630773,43457926:25952256,404226,76021 -h1,5859:6630773,43457926:0,0,0 -g1,5859:7579210,43457926 -g1,5859:8843793,43457926 -h1,5859:9476084,43457926:0,0,0 -k1,5859:32583028,43457926:23106944 -g1,5859:32583028,43457926 -) -(1,5859:6630773,44124104:25952256,404226,76021 -h1,5859:6630773,44124104:0,0,0 -g1,5859:7579210,44124104 -g1,5859:8843793,44124104 -h1,5859:9476084,44124104:0,0,0 -k1,5859:32583028,44124104:23106944 -g1,5859:32583028,44124104 -) -] -) -g1,5860:32583029,44200125 -g1,5860:6630773,44200125 -g1,5860:6630773,44200125 -g1,5860:32583029,44200125 -g1,5860:32583029,44200125 -) -h1,5860:6630773,44396733:0,0,0 -(1,5864:6630773,45706769:25952256,505283,134348 -h1,5863:6630773,45706769:983040,0,0 -k1,5863:8373511,45706769:272110 -k1,5863:9745388,45706769:272183 -k1,5863:10669000,45706769:272184 -(1,5863:10669000,45706769:0,459977,115847 -r1,5863:11730689,45706769:1061689,575824,115847 -k1,5863:10669000,45706769:-1061689 -) -(1,5863:10669000,45706769:1061689,459977,115847 -k1,5863:10669000,45706769:3277 -h1,5863:11727412,45706769:0,411205,112570 -) -k1,5863:12002872,45706769:272183 -k1,5863:13767965,45706769:272183 -k1,5863:15106420,45706769:272184 -k1,5863:17389248,45706769:272183 -k1,5863:18017291,45706769:272183 -k1,5863:20143489,45706769:272184 -k1,5863:21369221,45706769:272183 -k1,5863:23171670,45706769:272183 -k1,5863:24095282,45706769:272184 -k1,5863:26374177,45706769:272183 -k1,5863:28657005,45706769:272183 -k1,5863:29580617,45706769:272184 -k1,5863:30623503,45706769:272183 -k1,5863:32583029,45706769:0 -) -] -(1,5866:32583029,45706769:0,0,0 -g1,5866:32583029,45706769 -) -) -] -(1,5866:6630773,47279633:25952256,0,0 -h1,5866:6630773,47279633:25952256,0,0 -) -] -h1,5866:4262630,4025873:0,0,0 -] -!24887 +[1,5872:3078558,4812305:0,0,0 +(1,5872:3078558,49800853:0,16384,2228224 +g1,5872:29030814,49800853 +g1,5872:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5872:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5872:37855564,49800853:1179648,16384,0 +) +) +k1,5872:3078556,49800853:-34777008 +) +] +g1,5872:6630773,4812305 +k1,5872:18771974,4812305:10945824 +g1,5872:20158715,4812305 +g1,5872:20807521,4812305 +g1,5872:24121676,4812305 +g1,5872:28605649,4812305 +g1,5872:30015328,4812305 +) +) +] +[1,5872:6630773,45706769:25952256,40108032,0 +(1,5872:6630773,45706769:25952256,40108032,0 +(1,5872:6630773,45706769:0,0,0 +g1,5872:6630773,45706769 +) +[1,5872:6630773,45706769:25952256,40108032,0 +(1,5816:6630773,6254097:25952256,555811,12975 +(1,5816:6630773,6254097:2450326,534184,12975 +g1,5816:6630773,6254097 +g1,5816:9081099,6254097 +) +k1,5816:32583029,6254097:20399914 +g1,5816:32583029,6254097 +) +(1,5819:6630773,7488801:25952256,513147,134348 +k1,5818:7719841,7488801:135519 +k1,5818:9135278,7488801:135519 +k1,5818:10289882,7488801:135519 +k1,5818:12163416,7488801:135519 +k1,5818:14970838,7488801:135519 +k1,5818:15757785,7488801:135519 +k1,5818:16912389,7488801:135519 +k1,5818:19493056,7488801:135519 +k1,5818:20287867,7488801:135519 +k1,5818:23447873,7488801:135519 +k1,5818:26658997,7488801:135519 +k1,5818:27453808,7488801:135519 +k1,5818:27945187,7488801:135519 +k1,5818:30822732,7488801:135519 +k1,5819:32583029,7488801:0 +) +(1,5819:6630773,8330289:25952256,505283,134348 +k1,5818:8503970,8330289:234142 +k1,5818:11069884,8330289:234143 +k1,5818:11986911,8330289:234142 +k1,5818:17739840,8330289:234142 +k1,5818:21060728,8330289:234142 +k1,5818:22051156,8330289:234143 +k1,5818:25129560,8330289:234142 +k1,5818:26317251,8330289:234142 +k1,5818:27643878,8330289:234142 +k1,5818:28897106,8330289:234143 +k1,5818:30784721,8330289:234142 +k1,5818:32583029,8330289:0 +) +(1,5819:6630773,9171777:25952256,513147,126483 +k1,5818:9724425,9171777:202859 +k1,5818:10578712,9171777:202859 +k1,5818:12519586,9171777:202859 +k1,5818:14174068,9171777:202860 +k1,5818:15533637,9171777:202859 +k1,5818:16395788,9171777:202859 +k1,5818:18295374,9171777:202859 +k1,5818:21957879,9171777:202859 +k1,5818:22820030,9171777:202859 +k1,5818:24041975,9171777:202860 +k1,5818:27320439,9171777:202859 +k1,5818:28182590,9171777:202859 +k1,5818:28741309,9171777:202859 +k1,5819:32583029,9171777:0 +) +(1,5819:6630773,10013265:25952256,505283,134348 +g1,5818:8072565,10013265 +g1,5818:9290879,10013265 +g1,5818:11731439,10013265 +k1,5819:32583028,10013265:17960796 +g1,5819:32583028,10013265 +) +(1,5821:6630773,10854753:25952256,513147,134348 +h1,5820:6630773,10854753:983040,0,0 +k1,5820:9048723,10854753:238223 +k1,5820:11565634,10854753:238224 +k1,5820:12463149,10854753:238223 +k1,5820:15777633,10854753:238224 +k1,5820:17512043,10854753:238223 +k1,5820:19488282,10854753:238224 +k1,5820:22559626,10854753:238223 +k1,5820:25469096,10854753:238223 +k1,5820:27636700,10854753:238224 +k1,5820:29772846,10854753:238223 +k1,5820:30366930,10854753:238224 +k1,5820:32020075,10854753:238223 +k1,5820:32583029,10854753:0 +) +(1,5821:6630773,11696241:25952256,513147,126483 +k1,5820:8857031,11696241:194642 +k1,5820:10880783,11696241:194642 +k1,5820:12620763,11696241:194641 +k1,5820:14560629,11696241:194642 +k1,5820:17127019,11696241:194642 +k1,5820:17677521,11696241:194642 +k1,5820:20904513,11696241:194641 +k1,5820:22383661,11696241:194642 +k1,5820:26152637,11696241:194642 +k1,5820:28045317,11696241:194642 +k1,5820:29259043,11696241:194641 +k1,5820:30803727,11696241:194642 +k1,5820:31657661,11696241:194642 +k1,5821:32583029,11696241:0 +) +(1,5821:6630773,12537729:25952256,513147,134348 +k1,5820:9232249,12537729:238248 +k1,5820:10602960,12537729:238249 +k1,5820:12011681,12537729:238248 +k1,5820:13269015,12537729:238249 +k1,5820:14922185,12537729:238248 +k1,5820:16351879,12537729:238249 +k1,5820:19368198,12537729:238248 +k1,5820:20219209,12537729:238249 +k1,5820:21476542,12537729:238248 +k1,5820:23098911,12537729:238249 +k1,5820:26523519,12537729:238248 +k1,5820:29737103,12537729:238249 +k1,5820:30994436,12537729:238248 +k1,5820:32583029,12537729:0 +) +(1,5821:6630773,13379217:25952256,513147,134348 +k1,5820:7450003,13379217:191395 +k1,5820:8056233,13379217:191387 +k1,5820:9902412,13379217:191395 +k1,5820:11810194,13379217:191394 +k1,5820:12660881,13379217:191395 +k1,5820:15569399,13379217:191395 +k1,5820:17506018,13379217:191395 +k1,5820:18688972,13379217:191394 +k1,5820:21838007,13379217:191395 +k1,5820:23773315,13379217:191395 +k1,5820:25700103,13379217:191395 +(1,5820:25700103,13379217:0,459977,115847 +r1,5820:26761792,13379217:1061689,575824,115847 +k1,5820:25700103,13379217:-1061689 +) +(1,5820:25700103,13379217:1061689,459977,115847 +k1,5820:25700103,13379217:3277 +h1,5820:26758515,13379217:0,411205,112570 +) +k1,5820:27126856,13379217:191394 +(1,5820:27126856,13379217:0,452978,115847 +r1,5820:28891969,13379217:1765113,568825,115847 +k1,5820:27126856,13379217:-1765113 +) +(1,5820:27126856,13379217:1765113,452978,115847 +k1,5820:27126856,13379217:3277 +h1,5820:28888692,13379217:0,411205,112570 +) +k1,5820:29083364,13379217:191395 +k1,5820:30466204,13379217:191395 +(1,5820:30466204,13379217:0,414482,115847 +r1,5820:32583029,13379217:2116825,530329,115847 +k1,5820:30466204,13379217:-2116825 +) +(1,5820:30466204,13379217:2116825,414482,115847 +k1,5820:30466204,13379217:3277 +h1,5820:32579752,13379217:0,411205,112570 +) +k1,5820:32583029,13379217:0 +) +(1,5821:6630773,14220705:25952256,513147,126483 +k1,5820:10319290,14220705:160714 +k1,5820:12037796,14220705:160715 +k1,5820:13941768,14220705:160714 +k1,5820:14718520,14220705:160714 +k1,5820:16209616,14220705:160715 +k1,5820:18153565,14220705:160714 +k1,5820:21288303,14220705:160714 +k1,5820:22829205,14220705:160714 +k1,5820:25419995,14220705:160715 +k1,5820:26974660,14220705:160714 +k1,5820:29459936,14220705:160714 +k1,5820:30272079,14220705:160715 +k1,5820:31451878,14220705:160714 +k1,5821:32583029,14220705:0 +) +(1,5821:6630773,15062193:25952256,505283,126483 +k1,5820:7891484,15062193:168226 +k1,5820:9439897,15062193:168225 +k1,5820:11662021,15062193:168226 +k1,5820:13391315,15062193:168226 +k1,5820:14750985,15062193:168225 +k1,5820:16249592,15062193:168226 +k1,5820:17436903,15062193:168226 +k1,5820:20637480,15062193:168226 +k1,5820:22090211,15062193:168225 +k1,5820:25677450,15062193:168226 +k1,5820:26864761,15062193:168226 +k1,5820:29750109,15062193:168225 +k1,5820:30449832,15062193:168226 +k1,5820:32583029,15062193:0 +) +(1,5821:6630773,15903681:25952256,513147,134348 +k1,5820:8642981,15903681:228973 +k1,5820:9891038,15903681:228972 +k1,5820:11773484,15903681:228973 +k1,5820:15113450,15903681:228972 +k1,5820:16446705,15903681:228973 +k1,5820:17423444,15903681:228973 +k1,5820:21853929,15903681:228972 +k1,5820:23476853,15903681:228973 +k1,5820:25356023,15903681:228973 +k1,5820:27027442,15903681:228972 +k1,5820:28413125,15903681:228973 +k1,5820:29301389,15903681:228972 +k1,5820:31227089,15903681:228973 +k1,5821:32583029,15903681:0 +) +(1,5821:6630773,16745169:25952256,513147,134348 +k1,5820:9180022,16745169:164394 +k1,5820:11079810,16745169:164395 +k1,5820:12263289,16745169:164394 +k1,5820:13923216,16745169:164395 +k1,5820:16388579,16745169:164394 +k1,5820:17212266,16745169:164395 +k1,5820:19015715,16745169:164394 +k1,5820:21467317,16745169:164395 +k1,5820:23804885,16745169:164394 +k1,5820:24585318,16745169:164395 +k1,5820:25768797,16745169:164394 +k1,5820:28102434,16745169:164395 +k1,5820:28918256,16745169:164394 +k1,5821:32583029,16745169:0 +) +(1,5821:6630773,17586657:25952256,513147,126483 +k1,5820:7242268,17586657:196652 +k1,5820:9773971,17586657:196655 +k1,5820:10598461,17586657:196655 +k1,5820:11383629,17586657:196655 +k1,5820:13531946,17586657:196655 +k1,5820:17207251,17586657:196654 +k1,5820:19735022,17586657:196655 +k1,5820:21676901,17586657:196655 +k1,5820:22559718,17586657:196655 +k1,5820:25846396,17586657:196655 +k1,5820:26659089,17586657:196655 +k1,5820:28058984,17586657:196654 +k1,5820:30534326,17586657:196655 +k1,5820:31835263,17586657:196655 +k1,5820:32583029,17586657:0 +) +(1,5821:6630773,18428145:25952256,513147,134348 +k1,5820:9591034,18428145:241172 +k1,5820:14776898,18428145:241173 +k1,5820:15779598,18428145:241172 +k1,5820:17450766,18428145:241172 +k1,5820:18343367,18428145:241173 +k1,5820:19603624,18428145:241172 +k1,5820:21637207,18428145:241173 +k1,5820:24904176,18428145:241172 +k1,5820:28235371,18428145:241172 +k1,5820:29092582,18428145:241173 +k1,5820:31612441,18428145:241172 +h1,5820:32583029,18428145:0,0,0 +k1,5820:32583029,18428145:0 +) +(1,5821:6630773,19269633:25952256,485622,134348 +g1,5820:7639372,19269633 +g1,5820:9336754,19269633 +h1,5820:10532131,19269633:0,0,0 +k1,5821:32583029,19269633:21877228 +g1,5821:32583029,19269633 +) +(1,5822:6630773,20897553:25952256,505283,126483 +(1,5822:6630773,20897553:2809528,485622,11795 +g1,5822:6630773,20897553 +g1,5822:9440301,20897553 +) +(1,5822:9440301,20897553:0,459977,115847 +r1,5822:10501990,20897553:1061689,575824,115847 +k1,5822:9440301,20897553:-1061689 +) +(1,5822:9440301,20897553:1061689,459977,115847 +k1,5822:9440301,20897553:3277 +h1,5822:10498713,20897553:0,411205,112570 +) +g1,5822:10706462,20897553 +k1,5822:32583028,20897553:20084156 +g1,5822:32583028,20897553 +) +(1,5824:6630773,22132257:25952256,513147,126483 +k1,5823:8001440,22132257:173980 +k1,5823:9777120,22132257:173980 +k1,5823:13256081,22132257:173980 +k1,5823:14943287,22132257:173980 +k1,5823:16503353,22132257:173980 +k1,5823:17336625,22132257:173980 +k1,5823:18925527,22132257:173980 +k1,5823:19631004,22132257:173980 +k1,5823:20160844,22132257:173980 +(1,5823:20160844,22132257:0,459977,115847 +r1,5823:21222533,22132257:1061689,575824,115847 +k1,5823:20160844,22132257:-1061689 +) +(1,5823:20160844,22132257:1061689,459977,115847 +k1,5823:20160844,22132257:3277 +h1,5823:21219256,22132257:0,411205,112570 +) +k1,5823:21396512,22132257:173979 +k1,5823:23159085,22132257:173980 +k1,5823:25207395,22132257:173980 +k1,5823:27126599,22132257:173980 +k1,5823:28897036,22132257:173980 +k1,5823:29687054,22132257:173980 +k1,5823:30275852,22132257:173955 +k1,5823:31259202,22132257:173980 +k1,5823:32583029,22132257:0 +) +(1,5824:6630773,22973745:25952256,513147,126483 +g1,5823:7512887,22973745 +g1,5823:10020294,22973745 +g1,5823:10878815,22973745 +g1,5823:13088689,22973745 +g1,5823:13939346,22973745 +g1,5823:15084915,22973745 +k1,5824:32583029,22973745:15679490 +g1,5824:32583029,22973745 +) +v1,5826:6630773,24108471:0,393216,0 +(1,5842:6630773,29175610:25952256,5460355,196608 +g1,5842:6630773,29175610 +g1,5842:6630773,29175610 +g1,5842:6434165,29175610 +(1,5842:6434165,29175610:0,5460355,196608 +r1,5842:32779637,29175610:26345472,5656963,196608 +k1,5842:6434165,29175610:-26345472 +) +(1,5842:6434165,29175610:26345472,5460355,196608 +[1,5842:6630773,29175610:25952256,5263747,0 +(1,5828:6630773,24316089:25952256,404226,9436 +(1,5827:6630773,24316089:0,0,0 +g1,5827:6630773,24316089 +g1,5827:6630773,24316089 +g1,5827:6303093,24316089 +(1,5827:6303093,24316089:0,0,0 +) +g1,5827:6630773,24316089 +) +g1,5828:7263065,24316089 +g1,5828:8211503,24316089 +h1,5828:8527649,24316089:0,0,0 +k1,5828:32583029,24316089:24055380 +g1,5828:32583029,24316089 +) +(1,5829:6630773,24982267:25952256,410518,76021 +h1,5829:6630773,24982267:0,0,0 +g1,5829:7895356,24982267 +g1,5829:8843793,24982267 +g1,5829:9792230,24982267 +g1,5829:11372960,24982267 +g1,5829:12005252,24982267 +g1,5829:12953690,24982267 +g1,5829:13585982,24982267 +g1,5829:14218274,24982267 +h1,5829:14534420,24982267:0,0,0 +k1,5829:32583028,24982267:18048608 +g1,5829:32583028,24982267 +) +(1,5830:6630773,25648445:25952256,404226,6290 +h1,5830:6630773,25648445:0,0,0 +h1,5830:6946919,25648445:0,0,0 +k1,5830:32583029,25648445:25636110 +g1,5830:32583029,25648445 +) +(1,5834:6630773,26380159:25952256,404226,76021 +(1,5832:6630773,26380159:0,0,0 +g1,5832:6630773,26380159 +g1,5832:6630773,26380159 +g1,5832:6303093,26380159 +(1,5832:6303093,26380159:0,0,0 +) +g1,5832:6630773,26380159 +) +g1,5834:7579210,26380159 +g1,5834:8843793,26380159 +h1,5834:9476084,26380159:0,0,0 +k1,5834:32583028,26380159:23106944 +g1,5834:32583028,26380159 +) +(1,5836:6630773,27701697:25952256,410518,101187 +(1,5835:6630773,27701697:0,0,0 +g1,5835:6630773,27701697 +g1,5835:6630773,27701697 +g1,5835:6303093,27701697 +(1,5835:6303093,27701697:0,0,0 +) +g1,5835:6630773,27701697 +) +g1,5836:7263065,27701697 +g1,5836:8211503,27701697 +g1,5836:11056816,27701697 +g1,5836:11689108,27701697 +g1,5836:14534419,27701697 +g1,5836:17379730,27701697 +k1,5836:17379730,27701697:0 +h1,5836:19908895,27701697:0,0,0 +k1,5836:32583029,27701697:12674134 +g1,5836:32583029,27701697 +) +(1,5837:6630773,28367875:25952256,404226,6290 +h1,5837:6630773,28367875:0,0,0 +h1,5837:6946919,28367875:0,0,0 +k1,5837:32583029,28367875:25636110 +g1,5837:32583029,28367875 +) +(1,5841:6630773,29099589:25952256,404226,76021 +(1,5839:6630773,29099589:0,0,0 +g1,5839:6630773,29099589 +g1,5839:6630773,29099589 +g1,5839:6303093,29099589 +(1,5839:6303093,29099589:0,0,0 +) +g1,5839:6630773,29099589 +) +g1,5841:7579210,29099589 +g1,5841:8843793,29099589 +h1,5841:9476084,29099589:0,0,0 +k1,5841:32583028,29099589:23106944 +g1,5841:32583028,29099589 +) +] +) +g1,5842:32583029,29175610 +g1,5842:6630773,29175610 +g1,5842:6630773,29175610 +g1,5842:32583029,29175610 +g1,5842:32583029,29175610 +) +h1,5842:6630773,29372218:0,0,0 +(1,5846:6630773,30682254:25952256,513147,126483 +h1,5845:6630773,30682254:983040,0,0 +k1,5845:9337328,30682254:235192 +k1,5845:10591606,30682254:235193 +k1,5845:14013158,30682254:235192 +(1,5845:14013158,30682254:0,452978,115847 +r1,5845:17536832,30682254:3523674,568825,115847 +k1,5845:14013158,30682254:-3523674 +) +(1,5845:14013158,30682254:3523674,452978,115847 +g1,5845:14719859,30682254 +g1,5845:15774995,30682254 +g1,5845:16478419,30682254 +g1,5845:17181843,30682254 +h1,5845:17533555,30682254:0,411205,112570 +) +k1,5845:17772025,30682254:235193 +k1,5845:18538714,30682254:235192 +k1,5845:21607028,30682254:235193 +k1,5845:22977304,30682254:235192 +k1,5845:25141877,30682254:235193 +k1,5845:26771020,30682254:235192 +k1,5845:29517553,30682254:235193 +(1,5845:29517553,30682254:0,414482,115847 +r1,5845:29875819,30682254:358266,530329,115847 +k1,5845:29517553,30682254:-358266 +) +(1,5845:29517553,30682254:358266,414482,115847 +k1,5845:29517553,30682254:3277 +h1,5845:29872542,30682254:0,411205,112570 +) +k1,5845:30111011,30682254:235192 +k1,5846:32583029,30682254:0 +) +(1,5846:6630773,31523742:25952256,513147,134348 +k1,5845:8434324,31523742:218235 +k1,5845:10648129,31523742:218234 +k1,5845:12317986,31523742:218235 +k1,5845:13195513,31523742:218235 +k1,5845:14432832,31523742:218234 +k1,5845:16661712,31523742:218235 +k1,5845:17495985,31523742:218235 +(1,5845:17495985,31523742:0,435480,115847 +r1,5845:18557674,31523742:1061689,551327,115847 +k1,5845:17495985,31523742:-1061689 +) +(1,5845:17495985,31523742:1061689,435480,115847 +k1,5845:17495985,31523742:3277 +h1,5845:18554397,31523742:0,411205,112570 +) +k1,5845:18949578,31523742:218234 +k1,5845:21506793,31523742:218235 +k1,5845:22384320,31523742:218235 +k1,5845:22958414,31523742:218234 +k1,5845:25301326,31523742:218235 +k1,5845:28705921,31523742:218235 +k1,5845:30437381,31523742:218234 +k1,5845:32227169,31523742:218235 +k1,5845:32583029,31523742:0 +) +(1,5846:6630773,32365230:25952256,513147,126483 +g1,5845:10243772,32365230 +g1,5845:13629361,32365230 +g1,5845:15597407,32365230 +g1,5845:17082452,32365230 +g1,5845:18756896,32365230 +g1,5845:20466075,32365230 +g1,5845:22178530,32365230 +g1,5845:23325410,32365230 +g1,5845:24543724,32365230 +g1,5845:26319749,32365230 +g1,5845:27178270,32365230 +g1,5845:28396584,32365230 +(1,5845:28396584,32365230:0,459977,115847 +r1,5845:29458273,32365230:1061689,575824,115847 +k1,5845:28396584,32365230:-1061689 +) +(1,5845:28396584,32365230:1061689,459977,115847 +k1,5845:28396584,32365230:3277 +h1,5845:29454996,32365230:0,411205,112570 +) +g1,5845:29657502,32365230 +k1,5846:32583029,32365230:1336934 +g1,5846:32583029,32365230 +) +v1,5848:6630773,33675265:0,393216,0 +(1,5849:6630773,36793082:25952256,3511033,616038 +g1,5849:6630773,36793082 +(1,5849:6630773,36793082:25952256,3511033,616038 +(1,5849:6630773,37409120:25952256,4127071,0 +[1,5849:6630773,37409120:25952256,4127071,0 +(1,5849:6630773,37382906:25952256,4074643,0 +r1,5849:6656987,37382906:26214,4074643,0 +[1,5849:6656987,37382906:25899828,4074643,0 +(1,5849:6656987,36793082:25899828,2894995,0 +[1,5849:7246811,36793082:24720180,2894995,0 +(1,5849:7246811,34983623:24720180,1085536,298548 +(1,5848:7246811,34983623:0,1085536,298548 +r1,5849:8753226,34983623:1506415,1384084,298548 +k1,5848:7246811,34983623:-1506415 +) +(1,5848:7246811,34983623:1506415,1085536,298548 +) +k1,5848:9004167,34983623:250941 +k1,5848:9725001,34983623:250941 +k1,5848:10507439,34983623:250941 +k1,5848:13967678,34983623:250941 +k1,5848:14870047,34983623:250941 +k1,5848:16534600,34983623:250941 +k1,5848:18070047,34983623:250941 +k1,5848:18676848,34983623:250941 +k1,5848:19921315,34983623:250941 +k1,5848:20855140,34983623:250940 +k1,5848:23083958,34983623:250941 +k1,5848:23994191,34983623:250941 +k1,5848:26258398,34983623:250941 +k1,5848:27929504,34983623:250941 +k1,5848:28711942,34983623:250941 +k1,5848:29318743,34983623:250941 +k1,5848:31109780,34983623:250941 +k1,5849:31966991,34983623:0 +) +(1,5849:7246811,35825111:24720180,505283,134348 +k1,5848:9908261,35825111:233341 +k1,5848:10793030,35825111:233341 +(1,5848:10793030,35825111:0,459977,115847 +r1,5849:12558143,35825111:1765113,575824,115847 +k1,5848:10793030,35825111:-1765113 +) +(1,5848:10793030,35825111:1765113,459977,115847 +k1,5848:10793030,35825111:3277 +h1,5848:12554866,35825111:0,411205,112570 +) +k1,5848:12965154,35825111:233341 +k1,5848:14483001,35825111:233341 +k1,5848:17177219,35825111:233341 +k1,5848:18219930,35825111:233341 +k1,5848:20233884,35825111:233341 +k1,5848:21539394,35825111:233341 +k1,5848:23447835,35825111:233341 +k1,5848:24700261,35825111:233341 +k1,5848:28450264,35825111:233341 +k1,5848:29299643,35825111:233341 +k1,5848:30552069,35825111:233341 +k1,5848:31966991,35825111:0 +) +(1,5849:7246811,36666599:24720180,505283,126483 +k1,5849:31966990,36666599:22969712 +g1,5849:31966990,36666599 +) +] +) +] +r1,5849:32583029,37382906:26214,4074643,0 +) +] +) +) +g1,5849:32583029,36793082 +) +h1,5849:6630773,37409120:0,0,0 +(1,5852:6630773,38719156:25952256,513147,126483 +h1,5851:6630773,38719156:983040,0,0 +g1,5851:9530085,38719156 +g1,5851:12721033,38719156 +g1,5851:13579554,38719156 +g1,5851:14871268,38719156 +g1,5851:15737653,38719156 +(1,5851:15737653,38719156:0,459977,115847 +r1,5851:16799342,38719156:1061689,575824,115847 +k1,5851:15737653,38719156:-1061689 +) +(1,5851:15737653,38719156:1061689,459977,115847 +k1,5851:15737653,38719156:3277 +h1,5851:16796065,38719156:0,411205,112570 +) +g1,5851:16998571,38719156 +g1,5851:20789828,38719156 +g1,5851:21648349,38719156 +g1,5851:23177959,38719156 +g1,5851:24028616,38719156 +g1,5851:25957340,38719156 +g1,5851:27665208,38719156 +k1,5852:32583029,38719156:3651665 +g1,5852:32583029,38719156 +) +v1,5854:6630773,39853882:0,393216,0 +(1,5866:6630773,44200125:25952256,4739459,196608 +g1,5866:6630773,44200125 +g1,5866:6630773,44200125 +g1,5866:6434165,44200125 +(1,5866:6434165,44200125:0,4739459,196608 +r1,5866:32779637,44200125:26345472,4936067,196608 +k1,5866:6434165,44200125:-26345472 +) +(1,5866:6434165,44200125:26345472,4739459,196608 +[1,5866:6630773,44200125:25952256,4542851,0 +(1,5856:6630773,40061500:25952256,404226,82312 +(1,5855:6630773,40061500:0,0,0 +g1,5855:6630773,40061500 +g1,5855:6630773,40061500 +g1,5855:6303093,40061500 +(1,5855:6303093,40061500:0,0,0 +) +g1,5855:6630773,40061500 +) +g1,5856:7263065,40061500 +g1,5856:8211503,40061500 +g1,5856:9792233,40061500 +g1,5856:10740671,40061500 +g1,5856:11689109,40061500 +g1,5856:12637547,40061500 +h1,5856:13269839,40061500:0,0,0 +k1,5856:32583029,40061500:19313190 +g1,5856:32583029,40061500 +) +(1,5857:6630773,40727678:25952256,410518,101187 +h1,5857:6630773,40727678:0,0,0 +g1,5857:8527647,40727678 +g1,5857:9476084,40727678 +g1,5857:10424521,40727678 +g1,5857:14534415,40727678 +g1,5857:15166707,40727678 +g1,5857:17063581,40727678 +g1,5857:18012018,40727678 +k1,5857:18012018,40727678:0 +h1,5857:20225038,40727678:0,0,0 +k1,5857:32583029,40727678:12357991 +g1,5857:32583029,40727678 +) +(1,5865:6630773,41459392:25952256,404226,76021 +(1,5859:6630773,41459392:0,0,0 +g1,5859:6630773,41459392 +g1,5859:6630773,41459392 +g1,5859:6303093,41459392 +(1,5859:6303093,41459392:0,0,0 +) +g1,5859:6630773,41459392 +) +g1,5865:7579210,41459392 +g1,5865:8843793,41459392 +h1,5865:9159939,41459392:0,0,0 +k1,5865:32583029,41459392:23423090 +g1,5865:32583029,41459392 +) +(1,5865:6630773,42125570:25952256,404226,76021 +h1,5865:6630773,42125570:0,0,0 +g1,5865:7579210,42125570 +g1,5865:8843793,42125570 +h1,5865:9159939,42125570:0,0,0 +k1,5865:32583029,42125570:23423090 +g1,5865:32583029,42125570 +) +(1,5865:6630773,42791748:25952256,404226,76021 +h1,5865:6630773,42791748:0,0,0 +g1,5865:7579210,42791748 +g1,5865:8843793,42791748 +h1,5865:9159939,42791748:0,0,0 +k1,5865:32583029,42791748:23423090 +g1,5865:32583029,42791748 +) +(1,5865:6630773,43457926:25952256,404226,76021 +h1,5865:6630773,43457926:0,0,0 +g1,5865:7579210,43457926 +g1,5865:8843793,43457926 +h1,5865:9476084,43457926:0,0,0 +k1,5865:32583028,43457926:23106944 +g1,5865:32583028,43457926 +) +(1,5865:6630773,44124104:25952256,404226,76021 +h1,5865:6630773,44124104:0,0,0 +g1,5865:7579210,44124104 +g1,5865:8843793,44124104 +h1,5865:9476084,44124104:0,0,0 +k1,5865:32583028,44124104:23106944 +g1,5865:32583028,44124104 +) +] +) +g1,5866:32583029,44200125 +g1,5866:6630773,44200125 +g1,5866:6630773,44200125 +g1,5866:32583029,44200125 +g1,5866:32583029,44200125 +) +h1,5866:6630773,44396733:0,0,0 +(1,5870:6630773,45706769:25952256,505283,134348 +h1,5869:6630773,45706769:983040,0,0 +k1,5869:8373511,45706769:272110 +k1,5869:9745388,45706769:272183 +k1,5869:10669000,45706769:272184 +(1,5869:10669000,45706769:0,459977,115847 +r1,5869:11730689,45706769:1061689,575824,115847 +k1,5869:10669000,45706769:-1061689 +) +(1,5869:10669000,45706769:1061689,459977,115847 +k1,5869:10669000,45706769:3277 +h1,5869:11727412,45706769:0,411205,112570 +) +k1,5869:12002872,45706769:272183 +k1,5869:13767965,45706769:272183 +k1,5869:15106420,45706769:272184 +k1,5869:17389248,45706769:272183 +k1,5869:18017291,45706769:272183 +k1,5869:20143489,45706769:272184 +k1,5869:21369221,45706769:272183 +k1,5869:23171670,45706769:272183 +k1,5869:24095282,45706769:272184 +k1,5869:26374177,45706769:272183 +k1,5869:28657005,45706769:272183 +k1,5869:29580617,45706769:272184 +k1,5869:30623503,45706769:272183 +k1,5869:32583029,45706769:0 +) +] +(1,5872:32583029,45706769:0,0,0 +g1,5872:32583029,45706769 +) +) +] +(1,5872:6630773,47279633:25952256,0,0 +h1,5872:6630773,47279633:25952256,0,0 +) +] +h1,5872:4262630,4025873:0,0,0 +] +!24886 }111 -Input:795:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:796:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:797:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:798:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:799:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:800:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:801:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:802:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:803:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!777 +Input:791:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:792:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:793:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:794:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:795:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:796:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:797:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:798:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:799:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!831 {112 -[1,5932:4262630,47279633:28320399,43253760,0 -(1,5932:4262630,4025873:0,0,0 -[1,5932:-473657,4025873:25952256,0,0 -(1,5932:-473657,-710414:25952256,0,0 -h1,5932:-473657,-710414:0,0,0 -(1,5932:-473657,-710414:0,0,0 -(1,5932:-473657,-710414:0,0,0 -g1,5932:-473657,-710414 -(1,5932:-473657,-710414:65781,0,65781 -g1,5932:-407876,-710414 -[1,5932:-407876,-644633:0,0,0 +[1,5938:4262630,47279633:28320399,43253760,0 +(1,5938:4262630,4025873:0,0,0 +[1,5938:-473657,4025873:25952256,0,0 +(1,5938:-473657,-710414:25952256,0,0 +h1,5938:-473657,-710414:0,0,0 +(1,5938:-473657,-710414:0,0,0 +(1,5938:-473657,-710414:0,0,0 +g1,5938:-473657,-710414 +(1,5938:-473657,-710414:65781,0,65781 +g1,5938:-407876,-710414 +[1,5938:-407876,-644633:0,0,0 ] ) -k1,5932:-473657,-710414:-65781 +k1,5938:-473657,-710414:-65781 ) ) -k1,5932:25478599,-710414:25952256 -g1,5932:25478599,-710414 +k1,5938:25478599,-710414:25952256 +g1,5938:25478599,-710414 ) ] ) -[1,5932:6630773,47279633:25952256,43253760,0 -[1,5932:6630773,4812305:25952256,786432,0 -(1,5932:6630773,4812305:25952256,513147,126483 -(1,5932:6630773,4812305:25952256,513147,126483 -g1,5932:3078558,4812305 -[1,5932:3078558,4812305:0,0,0 -(1,5932:3078558,2439708:0,1703936,0 -k1,5932:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5932:2537886,2439708:1179648,16384,0 +[1,5938:6630773,47279633:25952256,43253760,0 +[1,5938:6630773,4812305:25952256,786432,0 +(1,5938:6630773,4812305:25952256,513147,126483 +(1,5938:6630773,4812305:25952256,513147,126483 +g1,5938:3078558,4812305 +[1,5938:3078558,4812305:0,0,0 +(1,5938:3078558,2439708:0,1703936,0 +k1,5938:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5938:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5932:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5938:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5932:3078558,4812305:0,0,0 -(1,5932:3078558,2439708:0,1703936,0 -g1,5932:29030814,2439708 -g1,5932:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5932:36151628,1915420:16384,1179648,0 +[1,5938:3078558,4812305:0,0,0 +(1,5938:3078558,2439708:0,1703936,0 +g1,5938:29030814,2439708 +g1,5938:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5938:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5932:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5938:37855564,2439708:1179648,16384,0 ) ) -k1,5932:3078556,2439708:-34777008 -) -] -[1,5932:3078558,4812305:0,0,0 -(1,5932:3078558,49800853:0,16384,2228224 -k1,5932:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5932:2537886,49800853:1179648,16384,0 -) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5932:3078558,51504789:16384,1179648,0 -) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 -) -] -) -) -) -] -[1,5932:3078558,4812305:0,0,0 -(1,5932:3078558,49800853:0,16384,2228224 -g1,5932:29030814,49800853 -g1,5932:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5932:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5932:37855564,49800853:1179648,16384,0 -) -) -k1,5932:3078556,49800853:-34777008 -) -] -g1,5932:6630773,4812305 -g1,5932:6630773,4812305 -g1,5932:9175536,4812305 -g1,5932:9990803,4812305 -g1,5932:13137841,4812305 -g1,5932:14654344,4812305 -k1,5932:31387652,4812305:16733308 -) -) -] -[1,5932:6630773,45706769:25952256,40108032,0 -(1,5932:6630773,45706769:25952256,40108032,0 -(1,5932:6630773,45706769:0,0,0 -g1,5932:6630773,45706769 -) -[1,5932:6630773,45706769:25952256,40108032,0 -(1,5864:6630773,6254097:25952256,513147,134348 -k1,5863:7583319,6254097:227718 -k1,5863:9095544,6254097:227719 -k1,5863:10703450,6254097:227718 -k1,5863:11922728,6254097:227718 -k1,5863:13216717,6254097:227718 -k1,5863:14804963,6254097:227719 -k1,5863:15510438,6254097:227718 -k1,5863:16606508,6254097:227718 -k1,5863:18416266,6254097:227719 -k1,5863:19256746,6254097:227718 -k1,5863:20936086,6254097:227718 -k1,5863:23880928,6254097:227719 -k1,5863:25127731,6254097:227718 -k1,5863:27035792,6254097:227718 -k1,5863:27922802,6254097:227718 -k1,5863:29353762,6254097:227719 -k1,5863:31714677,6254097:227718 -k1,5863:32583029,6254097:0 -) -(1,5864:6630773,7095585:25952256,513147,134348 -k1,5863:7919960,7095585:184905 -k1,5863:10089951,7095585:184905 -k1,5863:11605237,7095585:184905 -k1,5863:12809227,7095585:184905 -k1,5863:15032302,7095585:184905 -k1,5863:16897550,7095585:184905 -k1,5863:19827102,7095585:184904 -k1,5863:22539075,7095585:184905 -k1,5863:24735935,7095585:184905 -k1,5863:25665984,7095585:184905 -k1,5863:26502317,7095585:184905 -k1,5863:27885876,7095585:184905 -k1,5863:29401162,7095585:184905 -k1,5863:30605152,7095585:184905 -k1,5863:32583029,7095585:0 -) -(1,5864:6630773,7937073:25952256,513147,134348 -k1,5863:8702553,7937073:163372 -k1,5863:9481963,7937073:163372 -k1,5863:11832271,7937073:163372 -k1,5863:14038399,7937073:163371 -k1,5863:15070123,7937073:163372 -k1,5863:17162875,7937073:163372 -k1,5863:17682107,7937073:163372 -k1,5863:21807786,7937073:163372 -k1,5863:23949035,7937073:163372 -k1,5863:26155164,7937073:163372 -k1,5863:27337620,7937073:163371 -k1,5863:28989315,7937073:163372 -k1,5863:29811979,7937073:163372 -k1,5863:30994436,7937073:163372 -k1,5864:32583029,7937073:0 -k1,5864:32583029,7937073:0 -) -v1,5866:6630773,9127539:0,393216,0 -(1,5923:6630773,33739004:25952256,25004681,196608 -g1,5923:6630773,33739004 -g1,5923:6630773,33739004 -g1,5923:6434165,33739004 -(1,5923:6434165,33739004:0,25004681,196608 -r1,5923:32779637,33739004:26345472,25201289,196608 -k1,5923:6434165,33739004:-26345472 -) -(1,5923:6434165,33739004:26345472,25004681,196608 -[1,5923:6630773,33739004:25952256,24808073,0 -(1,5868:6630773,9341449:25952256,410518,76021 -(1,5867:6630773,9341449:0,0,0 -g1,5867:6630773,9341449 -g1,5867:6630773,9341449 -g1,5867:6303093,9341449 -(1,5867:6303093,9341449:0,0,0 -) -g1,5867:6630773,9341449 -) -g1,5868:7263065,9341449 -g1,5868:8211503,9341449 -g1,5868:10108377,9341449 -g1,5868:11056814,9341449 -g1,5868:12005251,9341449 -h1,5868:13585980,9341449:0,0,0 -k1,5868:32583028,9341449:18997048 -g1,5868:32583028,9341449 -) -(1,5869:6630773,10007627:25952256,404226,6290 -h1,5869:6630773,10007627:0,0,0 -h1,5869:6946919,10007627:0,0,0 -k1,5869:32583029,10007627:25636110 -g1,5869:32583029,10007627 -) -(1,5873:6630773,10739341:25952256,379060,7863 -(1,5871:6630773,10739341:0,0,0 -g1,5871:6630773,10739341 -g1,5871:6630773,10739341 -g1,5871:6303093,10739341 -(1,5871:6303093,10739341:0,0,0 -) -g1,5871:6630773,10739341 -) -g1,5873:7579210,10739341 -h1,5873:8843793,10739341:0,0,0 -k1,5873:32583029,10739341:23739236 -g1,5873:32583029,10739341 -) -(1,5875:6630773,12060879:25952256,404226,76021 -(1,5874:6630773,12060879:0,0,0 -g1,5874:6630773,12060879 -g1,5874:6630773,12060879 -g1,5874:6303093,12060879 -(1,5874:6303093,12060879:0,0,0 -) -g1,5874:6630773,12060879 -) -g1,5875:7263065,12060879 -g1,5875:8211503,12060879 -k1,5875:8211503,12060879:0 -h1,5875:11056814,12060879:0,0,0 -k1,5875:32583030,12060879:21526216 -g1,5875:32583030,12060879 -) -(1,5876:6630773,12727057:25952256,410518,107478 -h1,5876:6630773,12727057:0,0,0 -g1,5876:8527647,12727057 -g1,5876:9476084,12727057 -g1,5876:14218270,12727057 -g1,5876:14850562,12727057 -g1,5876:16115145,12727057 -h1,5876:16431291,12727057:0,0,0 -k1,5876:32583029,12727057:16151738 -g1,5876:32583029,12727057 -) -(1,5877:6630773,13393235:25952256,404226,76021 -h1,5877:6630773,13393235:0,0,0 -g1,5877:6946919,13393235 -g1,5877:7263065,13393235 -g1,5877:8843794,13393235 -g1,5877:9792232,13393235 -h1,5877:11689107,13393235:0,0,0 -k1,5877:32583029,13393235:20893922 -g1,5877:32583029,13393235 -) -(1,5878:6630773,14059413:25952256,404226,101187 -h1,5878:6630773,14059413:0,0,0 -g1,5878:6946919,14059413 -g1,5878:7263065,14059413 -k1,5878:7263065,14059413:0 -h1,5878:9792230,14059413:0,0,0 -k1,5878:32583030,14059413:22790800 -g1,5878:32583030,14059413 -) -(1,5879:6630773,14725591:25952256,404226,76021 -h1,5879:6630773,14725591:0,0,0 -h1,5879:6946919,14725591:0,0,0 -k1,5879:32583029,14725591:25636110 -g1,5879:32583029,14725591 -) -(1,5887:6630773,15457305:25952256,404226,76021 -(1,5881:6630773,15457305:0,0,0 -g1,5881:6630773,15457305 -g1,5881:6630773,15457305 -g1,5881:6303093,15457305 -(1,5881:6303093,15457305:0,0,0 -) -g1,5881:6630773,15457305 -) -g1,5887:7579210,15457305 -g1,5887:8843793,15457305 -h1,5887:9159939,15457305:0,0,0 -k1,5887:32583029,15457305:23423090 -g1,5887:32583029,15457305 -) -(1,5887:6630773,16123483:25952256,404226,76021 -h1,5887:6630773,16123483:0,0,0 -g1,5887:7579210,16123483 -g1,5887:8843793,16123483 -g1,5887:9159939,16123483 -g1,5887:9792231,16123483 -h1,5887:10424522,16123483:0,0,0 -k1,5887:32583030,16123483:22158508 -g1,5887:32583030,16123483 -) -(1,5887:6630773,16789661:25952256,404226,76021 -h1,5887:6630773,16789661:0,0,0 -g1,5887:7579210,16789661 -g1,5887:8843793,16789661 -g1,5887:9159939,16789661 -g1,5887:9792231,16789661 -g1,5887:10740668,16789661 -g1,5887:11056814,16789661 -h1,5887:11372960,16789661:0,0,0 -k1,5887:32583028,16789661:21210068 -g1,5887:32583028,16789661 -) -(1,5887:6630773,17455839:25952256,404226,76021 -h1,5887:6630773,17455839:0,0,0 -g1,5887:7579210,17455839 -g1,5887:8843793,17455839 -g1,5887:9159939,17455839 -g1,5887:9792231,17455839 -g1,5887:10740668,17455839 -g1,5887:11056814,17455839 -g1,5887:11689106,17455839 -h1,5887:12321397,17455839:0,0,0 -k1,5887:32583029,17455839:20261632 -g1,5887:32583029,17455839 -) -(1,5887:6630773,18122017:25952256,404226,76021 -h1,5887:6630773,18122017:0,0,0 -g1,5887:7579210,18122017 -g1,5887:8843793,18122017 -g1,5887:9159939,18122017 -g1,5887:9792231,18122017 -g1,5887:10740668,18122017 -g1,5887:11056814,18122017 -g1,5887:11689106,18122017 -g1,5887:12637543,18122017 -h1,5887:13269834,18122017:0,0,0 -k1,5887:32583030,18122017:19313196 -g1,5887:32583030,18122017 -) -(1,5889:6630773,19443555:25952256,404226,6290 -(1,5888:6630773,19443555:0,0,0 -g1,5888:6630773,19443555 -g1,5888:6630773,19443555 -g1,5888:6303093,19443555 -(1,5888:6303093,19443555:0,0,0 -) -g1,5888:6630773,19443555 -) -h1,5889:6946919,19443555:0,0,0 -k1,5889:32583029,19443555:25636110 -g1,5889:32583029,19443555 -) -(1,5893:6630773,20175269:25952256,404226,76021 -(1,5891:6630773,20175269:0,0,0 -g1,5891:6630773,20175269 -g1,5891:6630773,20175269 -g1,5891:6303093,20175269 -(1,5891:6303093,20175269:0,0,0 -) -g1,5891:6630773,20175269 -) -g1,5893:7579210,20175269 -g1,5893:8843793,20175269 -g1,5893:9159939,20175269 -g1,5893:9792231,20175269 -g1,5893:10740668,20175269 -g1,5893:11056814,20175269 -g1,5893:11689106,20175269 -g1,5893:12637543,20175269 -h1,5893:13269834,20175269:0,0,0 -k1,5893:32583030,20175269:19313196 -g1,5893:32583030,20175269 -) -(1,5895:6630773,21496807:25952256,410518,107478 -(1,5894:6630773,21496807:0,0,0 -g1,5894:6630773,21496807 -g1,5894:6630773,21496807 -g1,5894:6303093,21496807 -(1,5894:6303093,21496807:0,0,0 -) -g1,5894:6630773,21496807 -) -g1,5895:7263065,21496807 -g1,5895:8843794,21496807 -g1,5895:11056814,21496807 -g1,5895:12005251,21496807 -g1,5895:12953688,21496807 -g1,5895:14850562,21496807 -g1,5895:17695873,21496807 -g1,5895:18328165,21496807 -g1,5895:19908894,21496807 -g1,5895:22121914,21496807 -k1,5895:22121914,21496807:23593 -h1,5895:24042381,21496807:0,0,0 -k1,5895:32583029,21496807:8540648 -g1,5895:32583029,21496807 -) -(1,5896:6630773,22162985:25952256,404226,107478 -h1,5896:6630773,22162985:0,0,0 -g1,5896:7263065,22162985 -g1,5896:8211503,22162985 -k1,5896:8211503,22162985:0 -h1,5896:13902126,22162985:0,0,0 -k1,5896:32583030,22162985:18680904 -g1,5896:32583030,22162985 -) -(1,5897:6630773,22829163:25952256,410518,107478 -h1,5897:6630773,22829163:0,0,0 -g1,5897:8527647,22829163 -g1,5897:9476084,22829163 -g1,5897:14218270,22829163 -g1,5897:14850562,22829163 -g1,5897:16115145,22829163 -h1,5897:16431291,22829163:0,0,0 -k1,5897:32583029,22829163:16151738 -g1,5897:32583029,22829163 -) -(1,5898:6630773,23495341:25952256,404226,76021 -h1,5898:6630773,23495341:0,0,0 -g1,5898:6946919,23495341 -g1,5898:7263065,23495341 -g1,5898:8843794,23495341 -g1,5898:9792232,23495341 -h1,5898:11689107,23495341:0,0,0 -k1,5898:32583029,23495341:20893922 -g1,5898:32583029,23495341 -) -(1,5899:6630773,24161519:25952256,404226,101187 -h1,5899:6630773,24161519:0,0,0 -g1,5899:6946919,24161519 -g1,5899:7263065,24161519 -k1,5899:7263065,24161519:0 -h1,5899:9792230,24161519:0,0,0 -k1,5899:32583030,24161519:22790800 -g1,5899:32583030,24161519 -) -(1,5900:6630773,24827697:25952256,404226,76021 -h1,5900:6630773,24827697:0,0,0 -h1,5900:6946919,24827697:0,0,0 -k1,5900:32583029,24827697:25636110 -g1,5900:32583029,24827697 -) -(1,5908:6630773,25559411:25952256,404226,76021 -(1,5902:6630773,25559411:0,0,0 -g1,5902:6630773,25559411 -g1,5902:6630773,25559411 -g1,5902:6303093,25559411 -(1,5902:6303093,25559411:0,0,0 -) -g1,5902:6630773,25559411 -) -g1,5908:7579210,25559411 -g1,5908:8843793,25559411 -g1,5908:9476085,25559411 -g1,5908:10108377,25559411 -g1,5908:10740669,25559411 -g1,5908:11372961,25559411 -h1,5908:11689107,25559411:0,0,0 -k1,5908:32583029,25559411:20893922 -g1,5908:32583029,25559411 -) -(1,5908:6630773,26225589:25952256,404226,76021 -h1,5908:6630773,26225589:0,0,0 -g1,5908:7579210,26225589 -g1,5908:8843793,26225589 -g1,5908:9159939,26225589 -g1,5908:9792231,26225589 -g1,5908:10740668,26225589 -g1,5908:11056814,26225589 -g1,5908:11689106,26225589 -g1,5908:12005252,26225589 -g1,5908:12637544,26225589 -g1,5908:12953690,26225589 -h1,5908:13269836,26225589:0,0,0 -k1,5908:32583028,26225589:19313192 -g1,5908:32583028,26225589 -) -(1,5908:6630773,26891767:25952256,404226,76021 -h1,5908:6630773,26891767:0,0,0 -g1,5908:7579210,26891767 -g1,5908:8843793,26891767 -g1,5908:9159939,26891767 -g1,5908:9792231,26891767 -g1,5908:10740668,26891767 -g1,5908:11056814,26891767 -g1,5908:11689106,26891767 -g1,5908:12005252,26891767 -g1,5908:12637544,26891767 -g1,5908:12953690,26891767 -h1,5908:13269836,26891767:0,0,0 -k1,5908:32583028,26891767:19313192 -g1,5908:32583028,26891767 -) -(1,5908:6630773,27557945:25952256,404226,76021 -h1,5908:6630773,27557945:0,0,0 -g1,5908:7579210,27557945 -g1,5908:8843793,27557945 -g1,5908:9159939,27557945 -g1,5908:9792231,27557945 -g1,5908:10740668,27557945 -g1,5908:11056814,27557945 -g1,5908:11689106,27557945 -g1,5908:12637543,27557945 -g1,5908:12953689,27557945 -h1,5908:13269835,27557945:0,0,0 -k1,5908:32583029,27557945:19313194 -g1,5908:32583029,27557945 -) -(1,5908:6630773,28224123:25952256,404226,76021 -h1,5908:6630773,28224123:0,0,0 -g1,5908:7579210,28224123 -g1,5908:8843793,28224123 -g1,5908:9159939,28224123 -g1,5908:9792231,28224123 -g1,5908:10740668,28224123 -g1,5908:11056814,28224123 -g1,5908:11689106,28224123 -g1,5908:12637543,28224123 -h1,5908:13269834,28224123:0,0,0 -k1,5908:32583030,28224123:19313196 -g1,5908:32583030,28224123 -) -(1,5910:6630773,29545661:25952256,404226,6290 -(1,5909:6630773,29545661:0,0,0 -g1,5909:6630773,29545661 -g1,5909:6630773,29545661 -g1,5909:6303093,29545661 -(1,5909:6303093,29545661:0,0,0 -) -g1,5909:6630773,29545661 -) -h1,5910:6946919,29545661:0,0,0 -k1,5910:32583029,29545661:25636110 -g1,5910:32583029,29545661 -) -(1,5914:6630773,30277375:25952256,404226,76021 -(1,5912:6630773,30277375:0,0,0 -g1,5912:6630773,30277375 -g1,5912:6630773,30277375 -g1,5912:6303093,30277375 -(1,5912:6303093,30277375:0,0,0 -) -g1,5912:6630773,30277375 -) -g1,5914:7579210,30277375 -g1,5914:8843793,30277375 -g1,5914:9159939,30277375 -g1,5914:9792231,30277375 -g1,5914:10740668,30277375 -g1,5914:11056814,30277375 -g1,5914:11689106,30277375 -g1,5914:12637543,30277375 -h1,5914:13269834,30277375:0,0,0 -k1,5914:32583030,30277375:19313196 -g1,5914:32583030,30277375 -) -(1,5916:6630773,31598913:25952256,410518,101187 -(1,5915:6630773,31598913:0,0,0 -g1,5915:6630773,31598913 -g1,5915:6630773,31598913 -g1,5915:6303093,31598913 -(1,5915:6303093,31598913:0,0,0 -) -g1,5915:6630773,31598913 -) -g1,5916:7263065,31598913 -g1,5916:7895357,31598913 -g1,5916:11372960,31598913 -g1,5916:14850563,31598913 -g1,5916:15799000,31598913 -g1,5916:18644311,31598913 -g1,5916:19908894,31598913 -k1,5916:19908894,31598913:14156 -h1,5916:22136070,31598913:0,0,0 -k1,5916:32583029,31598913:10446959 -g1,5916:32583029,31598913 -) -(1,5917:6630773,32265091:25952256,404226,6290 -h1,5917:6630773,32265091:0,0,0 -g1,5917:7263065,32265091 -g1,5917:8211503,32265091 -h1,5917:9159941,32265091:0,0,0 -k1,5917:32583029,32265091:23423088 -g1,5917:32583029,32265091 -) -(1,5918:6630773,32931269:25952256,404226,6290 -h1,5918:6630773,32931269:0,0,0 -h1,5918:6946919,32931269:0,0,0 -k1,5918:32583029,32931269:25636110 -g1,5918:32583029,32931269 -) -(1,5922:6630773,33662983:25952256,404226,76021 -(1,5920:6630773,33662983:0,0,0 -g1,5920:6630773,33662983 -g1,5920:6630773,33662983 -g1,5920:6303093,33662983 -(1,5920:6303093,33662983:0,0,0 -) -g1,5920:6630773,33662983 -) -g1,5922:7579210,33662983 -g1,5922:8843793,33662983 -g1,5922:9159939,33662983 -g1,5922:9792231,33662983 -g1,5922:10740668,33662983 -g1,5922:11056814,33662983 -g1,5922:11689106,33662983 -g1,5922:12637543,33662983 -h1,5922:13269834,33662983:0,0,0 -k1,5922:32583030,33662983:19313196 -g1,5922:32583030,33662983 -) -] -) -g1,5923:32583029,33739004 -g1,5923:6630773,33739004 -g1,5923:6630773,33739004 -g1,5923:32583029,33739004 -g1,5923:32583029,33739004 -) -h1,5923:6630773,33935612:0,0,0 -(1,5927:6630773,35301388:25952256,505283,126483 -h1,5926:6630773,35301388:983040,0,0 -k1,5926:8511971,35301388:270323 -k1,5926:9801378,35301388:270322 -k1,5926:12826179,35301388:270323 -k1,5926:15067169,35301388:270322 -k1,5926:16205844,35301388:270323 -k1,5926:17989392,35301388:270322 -(1,5926:17989392,35301388:0,452978,122846 -r1,5926:24678472,35301388:6689080,575824,122846 -k1,5926:17989392,35301388:-6689080 -) -(1,5926:17989392,35301388:6689080,452978,122846 -g1,5926:23268347,35301388 -g1,5926:23971771,35301388 -h1,5926:24675195,35301388:0,411205,112570 -) -k1,5926:24948795,35301388:270323 -k1,5926:25870545,35301388:270322 -k1,5926:27783200,35301388:270323 -k1,5926:28409382,35301388:270322 -k1,5926:29962900,35301388:270323 -k1,5926:32583029,35301388:0 -) -(1,5927:6630773,36142876:25952256,513147,134348 -k1,5926:8783567,36142876:174917 -k1,5926:10352434,36142876:174916 -k1,5926:10883211,36142876:174917 -k1,5926:13998073,36142876:174917 -k1,5926:14832282,36142876:174917 -k1,5926:16026283,36142876:174916 -k1,5926:17854673,36142876:174917 -k1,5926:20042856,36142876:174917 -k1,5926:20903934,36142876:174916 -k1,5926:23056728,36142876:174917 -(1,5926:23056728,36142876:0,414482,115847 -r1,5926:23414994,36142876:358266,530329,115847 -k1,5926:23056728,36142876:-358266 -) -(1,5926:23056728,36142876:358266,414482,115847 -k1,5926:23056728,36142876:3277 -h1,5926:23411717,36142876:0,411205,112570 -) -k1,5926:23763581,36142876:174917 -k1,5926:25730251,36142876:174916 -k1,5926:27108409,36142876:174917 -k1,5926:29047555,36142876:174917 -k1,5926:29753969,36142876:174917 -k1,5926:31263853,36142876:174916 -k1,5926:32124932,36142876:174917 -k1,5926:32583029,36142876:0 -) -(1,5927:6630773,36984364:25952256,513147,134348 -k1,5926:9257592,36984364:153490 -k1,5926:10695589,36984364:153491 -k1,5926:12315775,36984364:153490 -k1,5926:13488351,36984364:153491 -k1,5926:15008922,36984364:153490 -k1,5926:16860451,36984364:153491 -(1,5926:16860451,36984364:0,414482,115847 -r1,5926:17218717,36984364:358266,530329,115847 -k1,5926:16860451,36984364:-358266 -) -(1,5926:16860451,36984364:358266,414482,115847 -k1,5926:16860451,36984364:3277 -h1,5926:17215440,36984364:0,411205,112570 -) -k1,5926:17372207,36984364:153490 -k1,5926:18057195,36984364:153491 -k1,5926:18981388,36984364:153490 -k1,5926:21131761,36984364:153491 -k1,5926:23263128,36984364:153490 -k1,5926:24075911,36984364:153491 -k1,5926:26242667,36984364:153490 -k1,5926:27816323,36984364:153491 -k1,5926:29102275,36984364:153490 -k1,5926:30003532,36984364:153491 -k1,5926:32583029,36984364:0 -) -(1,5927:6630773,37825852:25952256,505283,134348 -g1,5926:9812545,37825852 -g1,5926:11405725,37825852 -(1,5926:11405725,37825852:0,452978,115847 -r1,5926:14929397,37825852:3523672,568825,115847 -k1,5926:11405725,37825852:-3523672 -) -(1,5926:11405725,37825852:3523672,452978,115847 -k1,5926:11405725,37825852:3277 -h1,5926:14926120,37825852:0,411205,112570 -) -g1,5926:15128626,37825852 -g1,5926:18102649,37825852 -g1,5926:18953306,37825852 -(1,5926:18953306,37825852:0,452978,115847 -r1,5926:19311572,37825852:358266,568825,115847 -k1,5926:18953306,37825852:-358266 -) -(1,5926:18953306,37825852:358266,452978,115847 -k1,5926:18953306,37825852:3277 -h1,5926:19308295,37825852:0,411205,112570 -) -k1,5927:32583029,37825852:13097787 -g1,5927:32583029,37825852 -) -v1,5928:6630773,39191628:0,393216,0 -(1,5932:6630773,44843612:25952256,6045200,589824 -g1,5932:6630773,44843612 -(1,5932:6630773,44843612:25952256,6045200,589824 -(1,5932:6630773,45433436:25952256,6635024,0 -[1,5932:6630773,45433436:25952256,6635024,0 -(1,5932:6630773,45433436:25952256,6608810,0 -r1,5932:6656987,45433436:26214,6608810,0 -[1,5932:6656987,45433436:25899828,6608810,0 -(1,5932:6656987,44843612:25899828,5429162,0 -[1,5932:7246811,44843612:24720180,5429162,0 -(1,5930:7246811,40501824:24720180,1087374,126483 -k1,5928:8627167,40501824:170653 -k1,5928:8627167,40501824:0 -k1,5929:10344469,40501824:170652 -k1,5929:11127884,40501824:170653 -k1,5929:12317621,40501824:170652 -k1,5929:14661448,40501824:170653 -k1,5929:16399722,40501824:170653 -k1,5929:17589459,40501824:170652 -k1,5929:19615436,40501824:170653 -k1,5929:22951478,40501824:170653 -k1,5929:24313575,40501824:170652 -k1,5929:25390591,40501824:170653 -k1,5929:26212671,40501824:170652 -k1,5929:30048097,40501824:170653 -k1,5929:31966991,40501824:0 -) -(1,5930:7246811,41343312:24720180,513147,115847 -k1,5929:8452740,41343312:186844 -k1,5929:11418310,41343312:186843 -k1,5929:13285497,41343312:186844 -k1,5929:15498059,41343312:186844 -k1,5929:17252523,41343312:186843 -k1,5929:18055405,41343312:186844 -k1,5929:19693871,41343312:186844 -k1,5929:21421466,41343312:186844 -k1,5929:22236144,41343312:186843 -k1,5929:23442073,41343312:186844 -k1,5929:25125104,41343312:186844 -k1,5929:27282615,41343312:186843 -k1,5929:29498454,41343312:186844 -(1,5929:29498454,41343312:0,452978,115847 -r1,5932:31966991,41343312:2468537,568825,115847 -k1,5929:29498454,41343312:-2468537 -) -(1,5929:29498454,41343312:2468537,452978,115847 -k1,5929:29498454,41343312:3277 -h1,5929:31963714,41343312:0,411205,112570 -) -k1,5929:31966991,41343312:0 -) -(1,5930:7246811,42184800:24720180,505283,126483 -k1,5929:7969471,42184800:191163 -k1,5929:9673861,42184800:191164 -k1,5929:11875013,42184800:191163 -k1,5929:13085262,42184800:191164 -k1,5929:14618602,42184800:191163 -k1,5929:15461193,42184800:191163 -k1,5929:17368090,42184800:191164 -k1,5929:21617242,42184800:191163 -k1,5929:23819050,42184800:191163 -k1,5929:26226642,42184800:191164 -k1,5929:27671509,42184800:191163 -k1,5929:28966955,42184800:191164 -k1,5929:30355461,42184800:191163 -k1,5930:31966991,42184800:0 -) -(1,5930:7246811,43026288:24720180,505283,126483 -k1,5929:9289439,43026288:214174 -(1,5929:9289439,43026288:0,452978,115847 -r1,5932:11757976,43026288:2468537,568825,115847 -k1,5929:9289439,43026288:-2468537 -) -(1,5929:9289439,43026288:2468537,452978,115847 -k1,5929:9289439,43026288:3277 -h1,5929:11754699,43026288:0,411205,112570 -) -k1,5929:11972150,43026288:214174 -k1,5929:15702986,43026288:214174 -k1,5929:16568588,43026288:214174 -k1,5929:19585737,43026288:214174 -k1,5929:21501881,43026288:214174 -k1,5929:24731365,43026288:214173 -k1,5929:26439105,43026288:214174 -k1,5929:27339441,43026288:214174 -(1,5929:27339441,43026288:0,452978,115847 -r1,5932:27697707,43026288:358266,568825,115847 -k1,5929:27339441,43026288:-358266 -) -(1,5929:27339441,43026288:358266,452978,115847 -k1,5929:27339441,43026288:3277 -h1,5929:27694430,43026288:0,411205,112570 -) -k1,5929:28085551,43026288:214174 -k1,5929:28982610,43026288:214174 -k1,5929:30314828,43026288:214174 -k1,5929:31966991,43026288:0 -) -(1,5930:7246811,43867776:24720180,513147,126483 -g1,5929:8105332,43867776 -g1,5929:9323646,43867776 -g1,5929:11192732,43867776 -g1,5929:12885527,43867776 -g1,5929:13770918,43867776 -(1,5929:13770918,43867776:0,452978,122846 -r1,5932:20459998,43867776:6689080,575824,122846 -k1,5929:13770918,43867776:-6689080 -) -(1,5929:13770918,43867776:6689080,452978,122846 -g1,5929:19049873,43867776 -g1,5929:19753297,43867776 -h1,5929:20456721,43867776:0,411205,112570 -) -g1,5929:20832897,43867776 -g1,5929:21793654,43867776 -k1,5930:31966991,43867776:6443028 -g1,5930:31966991,43867776 -) -(1,5932:7246811,44709264:24720180,505283,134348 -h1,5931:7246811,44709264:983040,0,0 -k1,5931:9048396,44709264:190710 -k1,5931:10442347,44709264:190710 -k1,5931:12173807,44709264:190709 -k1,5931:13383602,44709264:190710 -k1,5931:15070499,44709264:190710 -k1,5931:18252928,44709264:190710 -k1,5931:20574212,44709264:190709 -k1,5931:21574292,44709264:190710 -k1,5931:23702246,44709264:190710 -k1,5931:24575841,44709264:190710 -k1,5931:27840844,44709264:190709 -k1,5931:29103723,44709264:190710 -k1,5931:30313518,44709264:190710 -k1,5931:31966991,44709264:0 -) -] -) -] -r1,5932:32583029,45433436:26214,6608810,0 +k1,5938:3078556,2439708:-34777008 +) +] +[1,5938:3078558,4812305:0,0,0 +(1,5938:3078558,49800853:0,16384,2228224 +k1,5938:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5938:2537886,49800853:1179648,16384,0 +) +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5938:3078558,51504789:16384,1179648,0 +) +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 +) +] +) +) +) +] +[1,5938:3078558,4812305:0,0,0 +(1,5938:3078558,49800853:0,16384,2228224 +g1,5938:29030814,49800853 +g1,5938:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5938:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5938:37855564,49800853:1179648,16384,0 +) +) +k1,5938:3078556,49800853:-34777008 +) +] +g1,5938:6630773,4812305 +g1,5938:6630773,4812305 +g1,5938:9175536,4812305 +g1,5938:9990803,4812305 +g1,5938:13137841,4812305 +g1,5938:14654344,4812305 +k1,5938:31387652,4812305:16733308 +) +) +] +[1,5938:6630773,45706769:25952256,40108032,0 +(1,5938:6630773,45706769:25952256,40108032,0 +(1,5938:6630773,45706769:0,0,0 +g1,5938:6630773,45706769 +) +[1,5938:6630773,45706769:25952256,40108032,0 +(1,5870:6630773,6254097:25952256,513147,134348 +k1,5869:7583319,6254097:227718 +k1,5869:9095544,6254097:227719 +k1,5869:10703450,6254097:227718 +k1,5869:11922728,6254097:227718 +k1,5869:13216717,6254097:227718 +k1,5869:14804963,6254097:227719 +k1,5869:15510438,6254097:227718 +k1,5869:16606508,6254097:227718 +k1,5869:18416266,6254097:227719 +k1,5869:19256746,6254097:227718 +k1,5869:20936086,6254097:227718 +k1,5869:23880928,6254097:227719 +k1,5869:25127731,6254097:227718 +k1,5869:27035792,6254097:227718 +k1,5869:27922802,6254097:227718 +k1,5869:29353762,6254097:227719 +k1,5869:31714677,6254097:227718 +k1,5869:32583029,6254097:0 +) +(1,5870:6630773,7095585:25952256,513147,134348 +k1,5869:7919960,7095585:184905 +k1,5869:10089951,7095585:184905 +k1,5869:11605237,7095585:184905 +k1,5869:12809227,7095585:184905 +k1,5869:15032302,7095585:184905 +k1,5869:16897550,7095585:184905 +k1,5869:19827102,7095585:184904 +k1,5869:22539075,7095585:184905 +k1,5869:24735935,7095585:184905 +k1,5869:25665984,7095585:184905 +k1,5869:26502317,7095585:184905 +k1,5869:27885876,7095585:184905 +k1,5869:29401162,7095585:184905 +k1,5869:30605152,7095585:184905 +k1,5869:32583029,7095585:0 +) +(1,5870:6630773,7937073:25952256,513147,134348 +k1,5869:8702553,7937073:163372 +k1,5869:9481963,7937073:163372 +k1,5869:11832271,7937073:163372 +k1,5869:14038399,7937073:163371 +k1,5869:15070123,7937073:163372 +k1,5869:17162875,7937073:163372 +k1,5869:17682107,7937073:163372 +k1,5869:21807786,7937073:163372 +k1,5869:23949035,7937073:163372 +k1,5869:26155164,7937073:163372 +k1,5869:27337620,7937073:163371 +k1,5869:28989315,7937073:163372 +k1,5869:29811979,7937073:163372 +k1,5869:30994436,7937073:163372 +k1,5870:32583029,7937073:0 +k1,5870:32583029,7937073:0 +) +v1,5872:6630773,9127539:0,393216,0 +(1,5929:6630773,33739004:25952256,25004681,196608 +g1,5929:6630773,33739004 +g1,5929:6630773,33739004 +g1,5929:6434165,33739004 +(1,5929:6434165,33739004:0,25004681,196608 +r1,5929:32779637,33739004:26345472,25201289,196608 +k1,5929:6434165,33739004:-26345472 +) +(1,5929:6434165,33739004:26345472,25004681,196608 +[1,5929:6630773,33739004:25952256,24808073,0 +(1,5874:6630773,9341449:25952256,410518,76021 +(1,5873:6630773,9341449:0,0,0 +g1,5873:6630773,9341449 +g1,5873:6630773,9341449 +g1,5873:6303093,9341449 +(1,5873:6303093,9341449:0,0,0 +) +g1,5873:6630773,9341449 +) +g1,5874:7263065,9341449 +g1,5874:8211503,9341449 +g1,5874:10108377,9341449 +g1,5874:11056814,9341449 +g1,5874:12005251,9341449 +h1,5874:13585980,9341449:0,0,0 +k1,5874:32583028,9341449:18997048 +g1,5874:32583028,9341449 +) +(1,5875:6630773,10007627:25952256,404226,6290 +h1,5875:6630773,10007627:0,0,0 +h1,5875:6946919,10007627:0,0,0 +k1,5875:32583029,10007627:25636110 +g1,5875:32583029,10007627 +) +(1,5879:6630773,10739341:25952256,379060,7863 +(1,5877:6630773,10739341:0,0,0 +g1,5877:6630773,10739341 +g1,5877:6630773,10739341 +g1,5877:6303093,10739341 +(1,5877:6303093,10739341:0,0,0 +) +g1,5877:6630773,10739341 +) +g1,5879:7579210,10739341 +h1,5879:8843793,10739341:0,0,0 +k1,5879:32583029,10739341:23739236 +g1,5879:32583029,10739341 +) +(1,5881:6630773,12060879:25952256,404226,76021 +(1,5880:6630773,12060879:0,0,0 +g1,5880:6630773,12060879 +g1,5880:6630773,12060879 +g1,5880:6303093,12060879 +(1,5880:6303093,12060879:0,0,0 +) +g1,5880:6630773,12060879 +) +g1,5881:7263065,12060879 +g1,5881:8211503,12060879 +k1,5881:8211503,12060879:0 +h1,5881:11056814,12060879:0,0,0 +k1,5881:32583030,12060879:21526216 +g1,5881:32583030,12060879 +) +(1,5882:6630773,12727057:25952256,410518,107478 +h1,5882:6630773,12727057:0,0,0 +g1,5882:8527647,12727057 +g1,5882:9476084,12727057 +g1,5882:14218270,12727057 +g1,5882:14850562,12727057 +g1,5882:16115145,12727057 +h1,5882:16431291,12727057:0,0,0 +k1,5882:32583029,12727057:16151738 +g1,5882:32583029,12727057 +) +(1,5883:6630773,13393235:25952256,404226,76021 +h1,5883:6630773,13393235:0,0,0 +g1,5883:6946919,13393235 +g1,5883:7263065,13393235 +g1,5883:8843794,13393235 +g1,5883:9792232,13393235 +h1,5883:11689107,13393235:0,0,0 +k1,5883:32583029,13393235:20893922 +g1,5883:32583029,13393235 +) +(1,5884:6630773,14059413:25952256,404226,101187 +h1,5884:6630773,14059413:0,0,0 +g1,5884:6946919,14059413 +g1,5884:7263065,14059413 +k1,5884:7263065,14059413:0 +h1,5884:9792230,14059413:0,0,0 +k1,5884:32583030,14059413:22790800 +g1,5884:32583030,14059413 +) +(1,5885:6630773,14725591:25952256,404226,76021 +h1,5885:6630773,14725591:0,0,0 +h1,5885:6946919,14725591:0,0,0 +k1,5885:32583029,14725591:25636110 +g1,5885:32583029,14725591 +) +(1,5893:6630773,15457305:25952256,404226,76021 +(1,5887:6630773,15457305:0,0,0 +g1,5887:6630773,15457305 +g1,5887:6630773,15457305 +g1,5887:6303093,15457305 +(1,5887:6303093,15457305:0,0,0 +) +g1,5887:6630773,15457305 +) +g1,5893:7579210,15457305 +g1,5893:8843793,15457305 +h1,5893:9159939,15457305:0,0,0 +k1,5893:32583029,15457305:23423090 +g1,5893:32583029,15457305 +) +(1,5893:6630773,16123483:25952256,404226,76021 +h1,5893:6630773,16123483:0,0,0 +g1,5893:7579210,16123483 +g1,5893:8843793,16123483 +g1,5893:9159939,16123483 +g1,5893:9792231,16123483 +h1,5893:10424522,16123483:0,0,0 +k1,5893:32583030,16123483:22158508 +g1,5893:32583030,16123483 +) +(1,5893:6630773,16789661:25952256,404226,76021 +h1,5893:6630773,16789661:0,0,0 +g1,5893:7579210,16789661 +g1,5893:8843793,16789661 +g1,5893:9159939,16789661 +g1,5893:9792231,16789661 +g1,5893:10740668,16789661 +g1,5893:11056814,16789661 +h1,5893:11372960,16789661:0,0,0 +k1,5893:32583028,16789661:21210068 +g1,5893:32583028,16789661 +) +(1,5893:6630773,17455839:25952256,404226,76021 +h1,5893:6630773,17455839:0,0,0 +g1,5893:7579210,17455839 +g1,5893:8843793,17455839 +g1,5893:9159939,17455839 +g1,5893:9792231,17455839 +g1,5893:10740668,17455839 +g1,5893:11056814,17455839 +g1,5893:11689106,17455839 +h1,5893:12321397,17455839:0,0,0 +k1,5893:32583029,17455839:20261632 +g1,5893:32583029,17455839 +) +(1,5893:6630773,18122017:25952256,404226,76021 +h1,5893:6630773,18122017:0,0,0 +g1,5893:7579210,18122017 +g1,5893:8843793,18122017 +g1,5893:9159939,18122017 +g1,5893:9792231,18122017 +g1,5893:10740668,18122017 +g1,5893:11056814,18122017 +g1,5893:11689106,18122017 +g1,5893:12637543,18122017 +h1,5893:13269834,18122017:0,0,0 +k1,5893:32583030,18122017:19313196 +g1,5893:32583030,18122017 +) +(1,5895:6630773,19443555:25952256,404226,6290 +(1,5894:6630773,19443555:0,0,0 +g1,5894:6630773,19443555 +g1,5894:6630773,19443555 +g1,5894:6303093,19443555 +(1,5894:6303093,19443555:0,0,0 +) +g1,5894:6630773,19443555 +) +h1,5895:6946919,19443555:0,0,0 +k1,5895:32583029,19443555:25636110 +g1,5895:32583029,19443555 +) +(1,5899:6630773,20175269:25952256,404226,76021 +(1,5897:6630773,20175269:0,0,0 +g1,5897:6630773,20175269 +g1,5897:6630773,20175269 +g1,5897:6303093,20175269 +(1,5897:6303093,20175269:0,0,0 +) +g1,5897:6630773,20175269 +) +g1,5899:7579210,20175269 +g1,5899:8843793,20175269 +g1,5899:9159939,20175269 +g1,5899:9792231,20175269 +g1,5899:10740668,20175269 +g1,5899:11056814,20175269 +g1,5899:11689106,20175269 +g1,5899:12637543,20175269 +h1,5899:13269834,20175269:0,0,0 +k1,5899:32583030,20175269:19313196 +g1,5899:32583030,20175269 +) +(1,5901:6630773,21496807:25952256,410518,107478 +(1,5900:6630773,21496807:0,0,0 +g1,5900:6630773,21496807 +g1,5900:6630773,21496807 +g1,5900:6303093,21496807 +(1,5900:6303093,21496807:0,0,0 +) +g1,5900:6630773,21496807 +) +g1,5901:7263065,21496807 +g1,5901:8843794,21496807 +g1,5901:11056814,21496807 +g1,5901:12005251,21496807 +g1,5901:12953688,21496807 +g1,5901:14850562,21496807 +g1,5901:17695873,21496807 +g1,5901:18328165,21496807 +g1,5901:19908894,21496807 +g1,5901:22121914,21496807 +k1,5901:22121914,21496807:23593 +h1,5901:24042381,21496807:0,0,0 +k1,5901:32583029,21496807:8540648 +g1,5901:32583029,21496807 +) +(1,5902:6630773,22162985:25952256,404226,107478 +h1,5902:6630773,22162985:0,0,0 +g1,5902:7263065,22162985 +g1,5902:8211503,22162985 +k1,5902:8211503,22162985:0 +h1,5902:13902126,22162985:0,0,0 +k1,5902:32583030,22162985:18680904 +g1,5902:32583030,22162985 +) +(1,5903:6630773,22829163:25952256,410518,107478 +h1,5903:6630773,22829163:0,0,0 +g1,5903:8527647,22829163 +g1,5903:9476084,22829163 +g1,5903:14218270,22829163 +g1,5903:14850562,22829163 +g1,5903:16115145,22829163 +h1,5903:16431291,22829163:0,0,0 +k1,5903:32583029,22829163:16151738 +g1,5903:32583029,22829163 +) +(1,5904:6630773,23495341:25952256,404226,76021 +h1,5904:6630773,23495341:0,0,0 +g1,5904:6946919,23495341 +g1,5904:7263065,23495341 +g1,5904:8843794,23495341 +g1,5904:9792232,23495341 +h1,5904:11689107,23495341:0,0,0 +k1,5904:32583029,23495341:20893922 +g1,5904:32583029,23495341 +) +(1,5905:6630773,24161519:25952256,404226,101187 +h1,5905:6630773,24161519:0,0,0 +g1,5905:6946919,24161519 +g1,5905:7263065,24161519 +k1,5905:7263065,24161519:0 +h1,5905:9792230,24161519:0,0,0 +k1,5905:32583030,24161519:22790800 +g1,5905:32583030,24161519 +) +(1,5906:6630773,24827697:25952256,404226,76021 +h1,5906:6630773,24827697:0,0,0 +h1,5906:6946919,24827697:0,0,0 +k1,5906:32583029,24827697:25636110 +g1,5906:32583029,24827697 +) +(1,5914:6630773,25559411:25952256,404226,76021 +(1,5908:6630773,25559411:0,0,0 +g1,5908:6630773,25559411 +g1,5908:6630773,25559411 +g1,5908:6303093,25559411 +(1,5908:6303093,25559411:0,0,0 +) +g1,5908:6630773,25559411 +) +g1,5914:7579210,25559411 +g1,5914:8843793,25559411 +g1,5914:9476085,25559411 +g1,5914:10108377,25559411 +g1,5914:10740669,25559411 +g1,5914:11372961,25559411 +h1,5914:11689107,25559411:0,0,0 +k1,5914:32583029,25559411:20893922 +g1,5914:32583029,25559411 +) +(1,5914:6630773,26225589:25952256,404226,76021 +h1,5914:6630773,26225589:0,0,0 +g1,5914:7579210,26225589 +g1,5914:8843793,26225589 +g1,5914:9159939,26225589 +g1,5914:9792231,26225589 +g1,5914:10740668,26225589 +g1,5914:11056814,26225589 +g1,5914:11689106,26225589 +g1,5914:12005252,26225589 +g1,5914:12637544,26225589 +g1,5914:12953690,26225589 +h1,5914:13269836,26225589:0,0,0 +k1,5914:32583028,26225589:19313192 +g1,5914:32583028,26225589 +) +(1,5914:6630773,26891767:25952256,404226,76021 +h1,5914:6630773,26891767:0,0,0 +g1,5914:7579210,26891767 +g1,5914:8843793,26891767 +g1,5914:9159939,26891767 +g1,5914:9792231,26891767 +g1,5914:10740668,26891767 +g1,5914:11056814,26891767 +g1,5914:11689106,26891767 +g1,5914:12005252,26891767 +g1,5914:12637544,26891767 +g1,5914:12953690,26891767 +h1,5914:13269836,26891767:0,0,0 +k1,5914:32583028,26891767:19313192 +g1,5914:32583028,26891767 +) +(1,5914:6630773,27557945:25952256,404226,76021 +h1,5914:6630773,27557945:0,0,0 +g1,5914:7579210,27557945 +g1,5914:8843793,27557945 +g1,5914:9159939,27557945 +g1,5914:9792231,27557945 +g1,5914:10740668,27557945 +g1,5914:11056814,27557945 +g1,5914:11689106,27557945 +g1,5914:12637543,27557945 +g1,5914:12953689,27557945 +h1,5914:13269835,27557945:0,0,0 +k1,5914:32583029,27557945:19313194 +g1,5914:32583029,27557945 +) +(1,5914:6630773,28224123:25952256,404226,76021 +h1,5914:6630773,28224123:0,0,0 +g1,5914:7579210,28224123 +g1,5914:8843793,28224123 +g1,5914:9159939,28224123 +g1,5914:9792231,28224123 +g1,5914:10740668,28224123 +g1,5914:11056814,28224123 +g1,5914:11689106,28224123 +g1,5914:12637543,28224123 +h1,5914:13269834,28224123:0,0,0 +k1,5914:32583030,28224123:19313196 +g1,5914:32583030,28224123 +) +(1,5916:6630773,29545661:25952256,404226,6290 +(1,5915:6630773,29545661:0,0,0 +g1,5915:6630773,29545661 +g1,5915:6630773,29545661 +g1,5915:6303093,29545661 +(1,5915:6303093,29545661:0,0,0 +) +g1,5915:6630773,29545661 +) +h1,5916:6946919,29545661:0,0,0 +k1,5916:32583029,29545661:25636110 +g1,5916:32583029,29545661 +) +(1,5920:6630773,30277375:25952256,404226,76021 +(1,5918:6630773,30277375:0,0,0 +g1,5918:6630773,30277375 +g1,5918:6630773,30277375 +g1,5918:6303093,30277375 +(1,5918:6303093,30277375:0,0,0 +) +g1,5918:6630773,30277375 +) +g1,5920:7579210,30277375 +g1,5920:8843793,30277375 +g1,5920:9159939,30277375 +g1,5920:9792231,30277375 +g1,5920:10740668,30277375 +g1,5920:11056814,30277375 +g1,5920:11689106,30277375 +g1,5920:12637543,30277375 +h1,5920:13269834,30277375:0,0,0 +k1,5920:32583030,30277375:19313196 +g1,5920:32583030,30277375 +) +(1,5922:6630773,31598913:25952256,410518,101187 +(1,5921:6630773,31598913:0,0,0 +g1,5921:6630773,31598913 +g1,5921:6630773,31598913 +g1,5921:6303093,31598913 +(1,5921:6303093,31598913:0,0,0 +) +g1,5921:6630773,31598913 +) +g1,5922:7263065,31598913 +g1,5922:7895357,31598913 +g1,5922:11372960,31598913 +g1,5922:14850563,31598913 +g1,5922:15799000,31598913 +g1,5922:18644311,31598913 +g1,5922:19908894,31598913 +k1,5922:19908894,31598913:14156 +h1,5922:22136070,31598913:0,0,0 +k1,5922:32583029,31598913:10446959 +g1,5922:32583029,31598913 +) +(1,5923:6630773,32265091:25952256,404226,6290 +h1,5923:6630773,32265091:0,0,0 +g1,5923:7263065,32265091 +g1,5923:8211503,32265091 +h1,5923:9159941,32265091:0,0,0 +k1,5923:32583029,32265091:23423088 +g1,5923:32583029,32265091 +) +(1,5924:6630773,32931269:25952256,404226,6290 +h1,5924:6630773,32931269:0,0,0 +h1,5924:6946919,32931269:0,0,0 +k1,5924:32583029,32931269:25636110 +g1,5924:32583029,32931269 +) +(1,5928:6630773,33662983:25952256,404226,76021 +(1,5926:6630773,33662983:0,0,0 +g1,5926:6630773,33662983 +g1,5926:6630773,33662983 +g1,5926:6303093,33662983 +(1,5926:6303093,33662983:0,0,0 +) +g1,5926:6630773,33662983 +) +g1,5928:7579210,33662983 +g1,5928:8843793,33662983 +g1,5928:9159939,33662983 +g1,5928:9792231,33662983 +g1,5928:10740668,33662983 +g1,5928:11056814,33662983 +g1,5928:11689106,33662983 +g1,5928:12637543,33662983 +h1,5928:13269834,33662983:0,0,0 +k1,5928:32583030,33662983:19313196 +g1,5928:32583030,33662983 +) +] +) +g1,5929:32583029,33739004 +g1,5929:6630773,33739004 +g1,5929:6630773,33739004 +g1,5929:32583029,33739004 +g1,5929:32583029,33739004 +) +h1,5929:6630773,33935612:0,0,0 +(1,5933:6630773,35301388:25952256,505283,126483 +h1,5932:6630773,35301388:983040,0,0 +k1,5932:8511971,35301388:270323 +k1,5932:9801378,35301388:270322 +k1,5932:12826179,35301388:270323 +k1,5932:15067169,35301388:270322 +k1,5932:16205844,35301388:270323 +k1,5932:17989392,35301388:270322 +(1,5932:17989392,35301388:0,452978,122846 +r1,5932:24678472,35301388:6689080,575824,122846 +k1,5932:17989392,35301388:-6689080 +) +(1,5932:17989392,35301388:6689080,452978,122846 +g1,5932:23268347,35301388 +g1,5932:23971771,35301388 +h1,5932:24675195,35301388:0,411205,112570 +) +k1,5932:24948795,35301388:270323 +k1,5932:25870545,35301388:270322 +k1,5932:27783200,35301388:270323 +k1,5932:28409382,35301388:270322 +k1,5932:29962900,35301388:270323 +k1,5932:32583029,35301388:0 +) +(1,5933:6630773,36142876:25952256,513147,134348 +k1,5932:8783567,36142876:174917 +k1,5932:10352434,36142876:174916 +k1,5932:10883211,36142876:174917 +k1,5932:13998073,36142876:174917 +k1,5932:14832282,36142876:174917 +k1,5932:16026283,36142876:174916 +k1,5932:17854673,36142876:174917 +k1,5932:20042856,36142876:174917 +k1,5932:20903934,36142876:174916 +k1,5932:23056728,36142876:174917 +(1,5932:23056728,36142876:0,414482,115847 +r1,5932:23414994,36142876:358266,530329,115847 +k1,5932:23056728,36142876:-358266 +) +(1,5932:23056728,36142876:358266,414482,115847 +k1,5932:23056728,36142876:3277 +h1,5932:23411717,36142876:0,411205,112570 +) +k1,5932:23763581,36142876:174917 +k1,5932:25730251,36142876:174916 +k1,5932:27108409,36142876:174917 +k1,5932:29047555,36142876:174917 +k1,5932:29753969,36142876:174917 +k1,5932:31263853,36142876:174916 +k1,5932:32124932,36142876:174917 +k1,5932:32583029,36142876:0 +) +(1,5933:6630773,36984364:25952256,513147,134348 +k1,5932:9257592,36984364:153490 +k1,5932:10695589,36984364:153491 +k1,5932:12315775,36984364:153490 +k1,5932:13488351,36984364:153491 +k1,5932:15008922,36984364:153490 +k1,5932:16860451,36984364:153491 +(1,5932:16860451,36984364:0,414482,115847 +r1,5932:17218717,36984364:358266,530329,115847 +k1,5932:16860451,36984364:-358266 +) +(1,5932:16860451,36984364:358266,414482,115847 +k1,5932:16860451,36984364:3277 +h1,5932:17215440,36984364:0,411205,112570 +) +k1,5932:17372207,36984364:153490 +k1,5932:18057195,36984364:153491 +k1,5932:18981388,36984364:153490 +k1,5932:21131761,36984364:153491 +k1,5932:23263128,36984364:153490 +k1,5932:24075911,36984364:153491 +k1,5932:26242667,36984364:153490 +k1,5932:27816323,36984364:153491 +k1,5932:29102275,36984364:153490 +k1,5932:30003532,36984364:153491 +k1,5932:32583029,36984364:0 +) +(1,5933:6630773,37825852:25952256,505283,134348 +g1,5932:9812545,37825852 +g1,5932:11405725,37825852 +(1,5932:11405725,37825852:0,452978,115847 +r1,5932:14929397,37825852:3523672,568825,115847 +k1,5932:11405725,37825852:-3523672 +) +(1,5932:11405725,37825852:3523672,452978,115847 +k1,5932:11405725,37825852:3277 +h1,5932:14926120,37825852:0,411205,112570 +) +g1,5932:15128626,37825852 +g1,5932:18102649,37825852 +g1,5932:18953306,37825852 +(1,5932:18953306,37825852:0,452978,115847 +r1,5932:19311572,37825852:358266,568825,115847 +k1,5932:18953306,37825852:-358266 +) +(1,5932:18953306,37825852:358266,452978,115847 +k1,5932:18953306,37825852:3277 +h1,5932:19308295,37825852:0,411205,112570 +) +k1,5933:32583029,37825852:13097787 +g1,5933:32583029,37825852 +) +v1,5934:6630773,39191628:0,393216,0 +(1,5938:6630773,44843612:25952256,6045200,589824 +g1,5938:6630773,44843612 +(1,5938:6630773,44843612:25952256,6045200,589824 +(1,5938:6630773,45433436:25952256,6635024,0 +[1,5938:6630773,45433436:25952256,6635024,0 +(1,5938:6630773,45433436:25952256,6608810,0 +r1,5938:6656987,45433436:26214,6608810,0 +[1,5938:6656987,45433436:25899828,6608810,0 +(1,5938:6656987,44843612:25899828,5429162,0 +[1,5938:7246811,44843612:24720180,5429162,0 +(1,5936:7246811,40501824:24720180,1087374,126483 +k1,5934:8627167,40501824:170653 +k1,5934:8627167,40501824:0 +k1,5935:10344469,40501824:170652 +k1,5935:11127884,40501824:170653 +k1,5935:12317621,40501824:170652 +k1,5935:14661448,40501824:170653 +k1,5935:16399722,40501824:170653 +k1,5935:17589459,40501824:170652 +k1,5935:19615436,40501824:170653 +k1,5935:22951478,40501824:170653 +k1,5935:24313575,40501824:170652 +k1,5935:25390591,40501824:170653 +k1,5935:26212671,40501824:170652 +k1,5935:30048097,40501824:170653 +k1,5935:31966991,40501824:0 +) +(1,5936:7246811,41343312:24720180,513147,115847 +k1,5935:8452740,41343312:186844 +k1,5935:11418310,41343312:186843 +k1,5935:13285497,41343312:186844 +k1,5935:15498059,41343312:186844 +k1,5935:17252523,41343312:186843 +k1,5935:18055405,41343312:186844 +k1,5935:19693871,41343312:186844 +k1,5935:21421466,41343312:186844 +k1,5935:22236144,41343312:186843 +k1,5935:23442073,41343312:186844 +k1,5935:25125104,41343312:186844 +k1,5935:27282615,41343312:186843 +k1,5935:29498454,41343312:186844 +(1,5935:29498454,41343312:0,452978,115847 +r1,5938:31966991,41343312:2468537,568825,115847 +k1,5935:29498454,41343312:-2468537 +) +(1,5935:29498454,41343312:2468537,452978,115847 +k1,5935:29498454,41343312:3277 +h1,5935:31963714,41343312:0,411205,112570 +) +k1,5935:31966991,41343312:0 +) +(1,5936:7246811,42184800:24720180,505283,126483 +k1,5935:7969471,42184800:191163 +k1,5935:9673861,42184800:191164 +k1,5935:11875013,42184800:191163 +k1,5935:13085262,42184800:191164 +k1,5935:14618602,42184800:191163 +k1,5935:15461193,42184800:191163 +k1,5935:17368090,42184800:191164 +k1,5935:21617242,42184800:191163 +k1,5935:23819050,42184800:191163 +k1,5935:26226642,42184800:191164 +k1,5935:27671509,42184800:191163 +k1,5935:28966955,42184800:191164 +k1,5935:30355461,42184800:191163 +k1,5936:31966991,42184800:0 +) +(1,5936:7246811,43026288:24720180,505283,126483 +k1,5935:9289439,43026288:214174 +(1,5935:9289439,43026288:0,452978,115847 +r1,5938:11757976,43026288:2468537,568825,115847 +k1,5935:9289439,43026288:-2468537 +) +(1,5935:9289439,43026288:2468537,452978,115847 +k1,5935:9289439,43026288:3277 +h1,5935:11754699,43026288:0,411205,112570 +) +k1,5935:11972150,43026288:214174 +k1,5935:15702986,43026288:214174 +k1,5935:16568588,43026288:214174 +k1,5935:19585737,43026288:214174 +k1,5935:21501881,43026288:214174 +k1,5935:24731365,43026288:214173 +k1,5935:26439105,43026288:214174 +k1,5935:27339441,43026288:214174 +(1,5935:27339441,43026288:0,452978,115847 +r1,5938:27697707,43026288:358266,568825,115847 +k1,5935:27339441,43026288:-358266 +) +(1,5935:27339441,43026288:358266,452978,115847 +k1,5935:27339441,43026288:3277 +h1,5935:27694430,43026288:0,411205,112570 +) +k1,5935:28085551,43026288:214174 +k1,5935:28982610,43026288:214174 +k1,5935:30314828,43026288:214174 +k1,5935:31966991,43026288:0 +) +(1,5936:7246811,43867776:24720180,513147,126483 +g1,5935:8105332,43867776 +g1,5935:9323646,43867776 +g1,5935:11192732,43867776 +g1,5935:12885527,43867776 +g1,5935:13770918,43867776 +(1,5935:13770918,43867776:0,452978,122846 +r1,5938:20459998,43867776:6689080,575824,122846 +k1,5935:13770918,43867776:-6689080 +) +(1,5935:13770918,43867776:6689080,452978,122846 +g1,5935:19049873,43867776 +g1,5935:19753297,43867776 +h1,5935:20456721,43867776:0,411205,112570 +) +g1,5935:20832897,43867776 +g1,5935:21793654,43867776 +k1,5936:31966991,43867776:6443028 +g1,5936:31966991,43867776 +) +(1,5938:7246811,44709264:24720180,505283,134348 +h1,5937:7246811,44709264:983040,0,0 +k1,5937:9048396,44709264:190710 +k1,5937:10442347,44709264:190710 +k1,5937:12173807,44709264:190709 +k1,5937:13383602,44709264:190710 +k1,5937:15070499,44709264:190710 +k1,5937:18252928,44709264:190710 +k1,5937:20574212,44709264:190709 +k1,5937:21574292,44709264:190710 +k1,5937:23702246,44709264:190710 +k1,5937:24575841,44709264:190710 +k1,5937:27840844,44709264:190709 +k1,5937:29103723,44709264:190710 +k1,5937:30313518,44709264:190710 +k1,5937:31966991,44709264:0 +) +] +) +] +r1,5938:32583029,45433436:26214,6608810,0 ) ] ) ) -g1,5932:32583029,44843612 -) -] -(1,5932:32583029,45706769:0,0,0 -g1,5932:32583029,45706769 +g1,5938:32583029,44843612 +) +] +(1,5938:32583029,45706769:0,0,0 +g1,5938:32583029,45706769 ) ) ] -(1,5932:6630773,47279633:25952256,0,0 -h1,5932:6630773,47279633:25952256,0,0 -) +(1,5938:6630773,47279633:25952256,0,0 +h1,5938:6630773,47279633:25952256,0,0 +) ] -h1,5932:4262630,4025873:0,0,0 +h1,5938:4262630,4025873:0,0,0 ] !24366 }112 -Input:804:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:805:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:806:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:807:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:808:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:809:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:810:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:811:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:812:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:813:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:814:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!947 +Input:800:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:801:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:802:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:803:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:804:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:805:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:806:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:807:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:808:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:809:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:810:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1013 {113 -[1,5988:4262630,47279633:28320399,43253760,0 -(1,5988:4262630,4025873:0,0,0 -[1,5988:-473657,4025873:25952256,0,0 -(1,5988:-473657,-710414:25952256,0,0 -h1,5988:-473657,-710414:0,0,0 -(1,5988:-473657,-710414:0,0,0 -(1,5988:-473657,-710414:0,0,0 -g1,5988:-473657,-710414 -(1,5988:-473657,-710414:65781,0,65781 -g1,5988:-407876,-710414 -[1,5988:-407876,-644633:0,0,0 +[1,5994:4262630,47279633:28320399,43253760,0 +(1,5994:4262630,4025873:0,0,0 +[1,5994:-473657,4025873:25952256,0,0 +(1,5994:-473657,-710414:25952256,0,0 +h1,5994:-473657,-710414:0,0,0 +(1,5994:-473657,-710414:0,0,0 +(1,5994:-473657,-710414:0,0,0 +g1,5994:-473657,-710414 +(1,5994:-473657,-710414:65781,0,65781 +g1,5994:-407876,-710414 +[1,5994:-407876,-644633:0,0,0 ] ) -k1,5988:-473657,-710414:-65781 +k1,5994:-473657,-710414:-65781 ) ) -k1,5988:25478599,-710414:25952256 -g1,5988:25478599,-710414 +k1,5994:25478599,-710414:25952256 +g1,5994:25478599,-710414 ) ] ) -[1,5988:6630773,47279633:25952256,43253760,0 -[1,5988:6630773,4812305:25952256,786432,0 -(1,5988:6630773,4812305:25952256,505283,134348 -(1,5988:6630773,4812305:25952256,505283,134348 -g1,5988:3078558,4812305 -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,2439708:0,1703936,0 -k1,5988:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,5988:2537886,2439708:1179648,16384,0 +[1,5994:6630773,47279633:25952256,43253760,0 +[1,5994:6630773,4812305:25952256,786432,0 +(1,5994:6630773,4812305:25952256,505283,134348 +(1,5994:6630773,4812305:25952256,505283,134348 +g1,5994:3078558,4812305 +[1,5994:3078558,4812305:0,0,0 +(1,5994:3078558,2439708:0,1703936,0 +k1,5994:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,5994:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,5988:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,5994:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,2439708:0,1703936,0 -g1,5988:29030814,2439708 -g1,5988:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,5988:36151628,1915420:16384,1179648,0 +[1,5994:3078558,4812305:0,0,0 +(1,5994:3078558,2439708:0,1703936,0 +g1,5994:29030814,2439708 +g1,5994:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,5994:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,5988:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,5994:37855564,2439708:1179648,16384,0 ) ) -k1,5988:3078556,2439708:-34777008 +k1,5994:3078556,2439708:-34777008 ) ] -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,49800853:0,16384,2228224 -k1,5988:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,5988:2537886,49800853:1179648,16384,0 +[1,5994:3078558,4812305:0,0,0 +(1,5994:3078558,49800853:0,16384,2228224 +k1,5994:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,5994:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,5988:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,5994:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,5988:3078558,4812305:0,0,0 -(1,5988:3078558,49800853:0,16384,2228224 -g1,5988:29030814,49800853 -g1,5988:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,5988:36151628,51504789:16384,1179648,0 +[1,5994:3078558,4812305:0,0,0 +(1,5994:3078558,49800853:0,16384,2228224 +g1,5994:29030814,49800853 +g1,5994:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,5994:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,5988:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,5994:37855564,49800853:1179648,16384,0 ) ) -k1,5988:3078556,49800853:-34777008 +k1,5994:3078556,49800853:-34777008 ) ] -g1,5988:6630773,4812305 -k1,5988:18752969,4812305:10926819 -g1,5988:20139710,4812305 -g1,5988:20788516,4812305 -g1,5988:24102671,4812305 -g1,5988:28605649,4812305 -g1,5988:30015328,4812305 +g1,5994:6630773,4812305 +k1,5994:18771974,4812305:10945824 +g1,5994:20158715,4812305 +g1,5994:20807521,4812305 +g1,5994:24121676,4812305 +g1,5994:28605649,4812305 +g1,5994:30015328,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,5994:6630773,45706769:25952256,40108032,0 +(1,5994:6630773,45706769:25952256,40108032,0 +(1,5994:6630773,45706769:0,0,0 +g1,5994:6630773,45706769 ) -[1,5988:6630773,45706769:25952256,40108032,0 -v1,5932:6630773,6254097:0,393216,0 -(1,5932:6630773,7931823:25952256,2070942,616038 -g1,5932:6630773,7931823 -(1,5932:6630773,7931823:25952256,2070942,616038 -(1,5932:6630773,8547861:25952256,2686980,0 -[1,5932:6630773,8547861:25952256,2686980,0 -(1,5932:6630773,8521647:25952256,2660766,0 -r1,5932:6656987,8521647:26214,2660766,0 -[1,5932:6656987,8521647:25899828,2660766,0 -(1,5932:6656987,7931823:25899828,1481118,0 -[1,5932:7246811,7931823:24720180,1481118,0 -(1,5932:7246811,6963852:24720180,513147,134348 -k1,5931:10462842,6963852:231521 -k1,5931:11798644,6963852:231520 -k1,5931:12777931,6963852:231521 -k1,5931:14522678,6963852:231521 -k1,5931:15701849,6963852:231520 -k1,5931:19255390,6963852:231521 -k1,5931:23458392,6963852:231520 -k1,5931:25932555,6963852:231521 -k1,5931:27660263,6963852:231521 -k1,5931:29176289,6963852:231520 -k1,5931:30900720,6963852:231521 -k1,5931:31966991,6963852:0 -) -(1,5932:7246811,7805340:24720180,505283,126483 -g1,5931:9456685,7805340 -g1,5931:10674999,7805340 -g1,5931:13713248,7805340 -k1,5932:31966991,7805340:15906899 -g1,5932:31966991,7805340 -) -] -) -] -r1,5932:32583029,8521647:26214,2660766,0 -) -] -) -) -g1,5932:32583029,7931823 -) -h1,5932:6630773,8547861:0,0,0 -v1,5935:6630773,9913637:0,393216,0 -(1,5955:6630773,23668340:25952256,14147919,616038 -g1,5955:6630773,23668340 -(1,5955:6630773,23668340:25952256,14147919,616038 -(1,5955:6630773,24284378:25952256,14763957,0 -[1,5955:6630773,24284378:25952256,14763957,0 -(1,5955:6630773,24258164:25952256,14711529,0 -r1,5955:6656987,24258164:26214,14711529,0 -[1,5955:6656987,24258164:25899828,14711529,0 -(1,5955:6656987,23668340:25899828,13531881,0 -[1,5955:7246811,23668340:24720180,13531881,0 -(1,5936:7246811,11420441:24720180,1283982,196608 -(1,5935:7246811,11420441:0,1283982,196608 -r1,5955:9812056,11420441:2565245,1480590,196608 -k1,5935:7246811,11420441:-2565245 -) -(1,5935:7246811,11420441:2565245,1283982,196608 -) -k1,5935:10036395,11420441:224339 -k1,5935:10888569,11420441:224339 -k1,5935:12131993,11420441:224339 -k1,5935:15348051,11420441:224339 -k1,5935:17427714,11420441:224339 -k1,5935:18520405,11420441:224339 -k1,5935:20405426,11420441:224339 -k1,5935:21648850,11420441:224339 -k1,5935:22965674,11420441:224339 -k1,5935:23857169,11420441:224339 -(1,5935:23857169,11420441:0,452978,115847 -r1,5955:25622282,11420441:1765113,568825,115847 -k1,5935:23857169,11420441:-1765113 -) -(1,5935:23857169,11420441:1765113,452978,115847 -k1,5935:23857169,11420441:3277 -h1,5935:25619005,11420441:0,411205,112570 -) -k1,5935:25846621,11420441:224339 -k1,5935:28498414,11420441:224339 -k1,5935:29078613,11420441:224339 -k1,5935:31280829,11420441:224339 -k1,5935:31966991,11420441:0 -) -(1,5936:7246811,12261929:24720180,505283,134348 -k1,5935:8181491,12261929:163977 -k1,5935:11417797,12261929:163978 -k1,5935:12233202,12261929:163977 -k1,5935:13185577,12261929:163977 -k1,5935:16630286,12261929:163977 -(1,5935:16630286,12261929:0,452978,122846 -r1,5955:20153958,12261929:3523672,575824,122846 -k1,5935:16630286,12261929:-3523672 -) -(1,5935:16630286,12261929:3523672,452978,122846 -k1,5935:16630286,12261929:3277 -h1,5935:20150681,12261929:0,411205,112570 -) -k1,5935:20491606,12261929:163978 -k1,5935:21930258,12261929:163977 -k1,5935:23113320,12261929:163977 -k1,5935:26269016,12261929:163977 -k1,5935:28301425,12261929:163978 -k1,5935:29656847,12261929:163977 -k1,5935:31966991,12261929:0 -) -(1,5936:7246811,13103417:24720180,513147,134348 -k1,5935:8813091,13103417:269322 -k1,5935:10101497,13103417:269321 -k1,5935:11543258,13103417:269322 -k1,5935:15474731,13103417:269321 -k1,5935:16735613,13103417:269322 -k1,5935:20309915,13103417:269321 -k1,5935:21954838,13103417:269322 -k1,5935:23922197,13103417:269321 -k1,5935:25210604,13103417:269322 -k1,5935:27493191,13103417:269321 -k1,5935:28429669,13103417:269322 -(1,5935:28429669,13103417:0,414482,115847 -r1,5955:28787935,13103417:358266,530329,115847 -k1,5935:28429669,13103417:-358266 -) -(1,5935:28429669,13103417:358266,414482,115847 -k1,5935:28429669,13103417:3277 -h1,5935:28784658,13103417:0,411205,112570 -) -k1,5935:29057256,13103417:269321 -k1,5935:29858075,13103417:269322 -k1,5935:31284106,13103417:269321 -k1,5935:31966991,13103417:0 -) -(1,5936:7246811,13944905:24720180,513147,134348 -k1,5935:9241854,13944905:171176 -k1,5935:10808947,13944905:171176 -k1,5935:11999209,13944905:171177 -k1,5935:14428100,13944905:171176 -k1,5935:15360804,13944905:171176 -k1,5935:18528941,13944905:171176 -k1,5935:19351546,13944905:171177 -(1,5935:19351546,13944905:0,414482,115847 -r1,5955:19709812,13944905:358266,530329,115847 -k1,5935:19351546,13944905:-358266 -) -(1,5935:19351546,13944905:358266,414482,115847 -k1,5935:19351546,13944905:3277 -h1,5935:19706535,13944905:0,411205,112570 -) -k1,5935:20054658,13944905:171176 -k1,5935:22534012,13944905:171176 -k1,5935:23364480,13944905:171176 -k1,5935:26298000,13944905:171177 -k1,5935:28986414,13944905:171176 -k1,5935:31966991,13944905:0 -) -(1,5936:7246811,14786393:24720180,505283,134348 -g1,5935:8866205,14786393 -g1,5935:11007921,14786393 -(1,5935:11007921,14786393:0,452978,115847 -r1,5955:16290153,14786393:5282232,568825,115847 -k1,5935:11007921,14786393:-5282232 -) -(1,5935:11007921,14786393:5282232,452978,115847 -g1,5935:11714622,14786393 -g1,5935:12769758,14786393 -h1,5935:16286876,14786393:0,411205,112570 -) -k1,5936:31966991,14786393:15296074 -g1,5936:31966991,14786393 -) -v1,5938:7246811,15976859:0,393216,0 -(1,5952:7246811,22947444:24720180,7363801,196608 -g1,5952:7246811,22947444 -g1,5952:7246811,22947444 -g1,5952:7050203,22947444 -(1,5952:7050203,22947444:0,7363801,196608 -r1,5955:32163599,22947444:25113396,7560409,196608 -k1,5952:7050203,22947444:-25113396 -) -(1,5952:7050203,22947444:25113396,7363801,196608 -[1,5952:7246811,22947444:24720180,7167193,0 -(1,5940:7246811,16184477:24720180,404226,107478 -(1,5939:7246811,16184477:0,0,0 -g1,5939:7246811,16184477 -g1,5939:7246811,16184477 -g1,5939:6919131,16184477 -(1,5939:6919131,16184477:0,0,0 -) -g1,5939:7246811,16184477 -) -g1,5940:7879103,16184477 -g1,5940:8827541,16184477 -k1,5940:8827541,16184477:0 -h1,5940:14518164,16184477:0,0,0 -k1,5940:31966992,16184477:17448828 -g1,5940:31966992,16184477 -) -(1,5941:7246811,16850655:24720180,410518,107478 -h1,5941:7246811,16850655:0,0,0 -g1,5941:9143685,16850655 -g1,5941:10092122,16850655 -g1,5941:14834308,16850655 -g1,5941:15466600,16850655 -g1,5941:16731183,16850655 -h1,5941:17047329,16850655:0,0,0 -k1,5941:31966991,16850655:14919662 -g1,5941:31966991,16850655 -) -(1,5942:7246811,17516833:24720180,404226,76021 -h1,5942:7246811,17516833:0,0,0 -g1,5942:7562957,17516833 -g1,5942:7879103,17516833 -g1,5942:9459832,17516833 -g1,5942:10408270,17516833 -h1,5942:12305145,17516833:0,0,0 -k1,5942:31966991,17516833:19661846 -g1,5942:31966991,17516833 -) -(1,5943:7246811,18183011:24720180,404226,76021 -h1,5943:7246811,18183011:0,0,0 -h1,5943:7562957,18183011:0,0,0 -k1,5943:31966991,18183011:24404034 -g1,5943:31966991,18183011 -) -(1,5944:7246811,18849189:24720180,404226,101187 -h1,5944:7246811,18849189:0,0,0 -k1,5944:7246811,18849189:0 -h1,5944:9775976,18849189:0,0,0 -k1,5944:31966992,18849189:22191016 -g1,5944:31966992,18849189 -) -(1,5945:7246811,19515367:24720180,0,0 -h1,5945:7246811,19515367:0,0,0 -h1,5945:7246811,19515367:0,0,0 -k1,5945:31966991,19515367:24720180 -g1,5945:31966991,19515367 -) -(1,5946:7246811,20181545:24720180,404226,107478 -h1,5946:7246811,20181545:0,0,0 -g1,5946:7879103,20181545 -g1,5946:8827541,20181545 -k1,5946:8827541,20181545:0 -h1,5946:14518164,20181545:0,0,0 -k1,5946:31966992,20181545:17448828 -g1,5946:31966992,20181545 -) -(1,5947:7246811,20847723:24720180,410518,107478 -h1,5947:7246811,20847723:0,0,0 -g1,5947:9143685,20847723 -g1,5947:10092122,20847723 -g1,5947:14202017,20847723 -h1,5947:14518163,20847723:0,0,0 -k1,5947:31966991,20847723:17448828 -g1,5947:31966991,20847723 -) -(1,5948:7246811,21513901:24720180,404226,76021 -h1,5948:7246811,21513901:0,0,0 -g1,5948:7562957,21513901 -g1,5948:7879103,21513901 -g1,5948:9459832,21513901 -g1,5948:10408270,21513901 -h1,5948:12305145,21513901:0,0,0 -k1,5948:31966991,21513901:19661846 -g1,5948:31966991,21513901 -) -(1,5949:7246811,22180079:24720180,404226,76021 -h1,5949:7246811,22180079:0,0,0 -h1,5949:7562957,22180079:0,0,0 -k1,5949:31966991,22180079:24404034 -g1,5949:31966991,22180079 -) -(1,5950:7246811,22846257:24720180,404226,101187 -h1,5950:7246811,22846257:0,0,0 -k1,5950:7246811,22846257:0 -h1,5950:9775976,22846257:0,0,0 -k1,5950:31966992,22846257:22191016 -g1,5950:31966992,22846257 -) -] -) -g1,5952:31966991,22947444 -g1,5952:7246811,22947444 -g1,5952:7246811,22947444 -g1,5952:31966991,22947444 -g1,5952:31966991,22947444 -) -h1,5952:7246811,23144052:0,0,0 -] -) -] -r1,5955:32583029,24258164:26214,14711529,0 -) -] -) -) -g1,5955:32583029,23668340 -) -h1,5955:6630773,24284378:0,0,0 -v1,5958:6630773,25650154:0,393216,0 -(1,5959:6630773,31376649:25952256,6119711,616038 -g1,5959:6630773,31376649 -(1,5959:6630773,31376649:25952256,6119711,616038 -(1,5959:6630773,31992687:25952256,6735749,0 -[1,5959:6630773,31992687:25952256,6735749,0 -(1,5959:6630773,31966473:25952256,6683321,0 -r1,5959:6656987,31966473:26214,6683321,0 -[1,5959:6656987,31966473:25899828,6683321,0 -(1,5959:6656987,31376649:25899828,5503673,0 -[1,5959:7246811,31376649:24720180,5503673,0 -(1,5959:7246811,27034861:24720180,1161885,196608 -(1,5958:7246811,27034861:0,1161885,196608 -r1,5959:8794447,27034861:1547636,1358493,196608 -k1,5958:7246811,27034861:-1547636 -) -(1,5958:7246811,27034861:1547636,1161885,196608 -) -k1,5958:8949741,27034861:155294 -(1,5958:8949741,27034861:0,459977,115847 -r1,5959:10011430,27034861:1061689,575824,115847 -k1,5958:8949741,27034861:-1061689 -) -(1,5958:8949741,27034861:1061689,459977,115847 -k1,5958:8949741,27034861:3277 -h1,5958:10008153,27034861:0,411205,112570 -) -k1,5958:10166725,27034861:155295 -k1,5958:12067243,27034861:155294 -k1,5958:12908700,27034861:155295 -k1,5958:16154017,27034861:155294 -k1,5958:18338306,27034861:155294 -k1,5958:19109639,27034861:155295 -k1,5958:20284018,27034861:155294 -k1,5958:22969002,27034861:155294 -k1,5958:23783589,27034861:155295 -k1,5958:26049798,27034861:155294 -k1,5958:27680308,27034861:155295 -k1,5958:30697559,27034861:155294 -k1,5959:31966991,27034861:0 -) -(1,5959:7246811,27876349:24720180,505283,126483 -k1,5958:9969355,27876349:201374 -k1,5958:13104121,27876349:201375 -k1,5958:14502182,27876349:201374 -k1,5958:18117327,27876349:201375 -k1,5958:21505061,27876349:201374 -k1,5958:22322474,27876349:201375 -k1,5958:23542933,27876349:201374 -k1,5958:25159230,27876349:201375 -k1,5958:26493066,27876349:201374 -k1,5958:27442207,27876349:201375 -k1,5958:30476702,27876349:201374 -k1,5958:31966991,27876349:0 -) -(1,5959:7246811,28717837:24720180,513147,126483 -k1,5958:8390616,28717837:196154 -k1,5958:10038393,28717837:196155 -k1,5958:12857953,28717837:196154 -k1,5958:13713400,28717837:196155 -k1,5958:14928639,28717837:196154 -k1,5958:17102670,28717837:196154 -k1,5958:17981710,28717837:196155 -k1,5958:19345060,28717837:196154 -k1,5958:21760263,28717837:196154 -k1,5958:23653800,28717837:196155 -k1,5958:25186888,28717837:196154 -k1,5958:27674837,28717837:196155 -k1,5958:28890076,28717837:196154 -k1,5958:31966991,28717837:0 -) -(1,5959:7246811,29559325:24720180,513147,126483 -k1,5958:8137620,29559325:231517 -k1,5958:9388222,29559325:231517 -k1,5958:11898425,29559325:231516 -k1,5958:13479984,29559325:231517 -k1,5958:14370793,29559325:231517 -k1,5958:17677915,29559325:231517 -k1,5958:18525470,29559325:231517 -k1,5958:19776071,29559325:231516 -k1,5958:21596181,29559325:231517 -k1,5958:23177740,29559325:231517 -k1,5958:25106639,29559325:231517 -k1,5958:26329716,29559325:231517 -k1,5958:27955838,29559325:231516 -k1,5958:28838783,29559325:231517 -k1,5958:30399370,29559325:231517 -k1,5958:31966991,29559325:0 -) -(1,5959:7246811,30400813:24720180,505283,134348 -k1,5958:8623889,30400813:220368 -k1,5958:9375754,30400813:220368 -k1,5958:12409583,30400813:220368 -k1,5958:15347073,30400813:220367 -k1,5958:17298902,30400813:220368 -k1,5958:19404741,30400813:220368 -k1,5958:20493461,30400813:220368 -k1,5958:21818111,30400813:220368 -k1,5958:22853747,30400813:220368 -k1,5958:24468065,30400813:220367 -(1,5958:24468065,30400813:0,452978,115847 -r1,5959:26936602,30400813:2468537,568825,115847 -k1,5958:24468065,30400813:-2468537 -) -(1,5958:24468065,30400813:2468537,452978,115847 -k1,5958:24468065,30400813:3277 -h1,5958:26933325,30400813:0,411205,112570 -) -k1,5958:27330640,30400813:220368 -k1,5958:28742453,30400813:220368 -k1,5958:31435494,30400813:220368 -k1,5958:31966991,30400813:0 -) -(1,5959:7246811,31242301:24720180,513147,134348 -k1,5958:10111014,31242301:191645 -k1,5958:12197305,31242301:191645 -k1,5958:13040378,31242301:191645 -k1,5958:14251108,31242301:191645 -k1,5958:15931076,31242301:191645 -k1,5958:16782013,31242301:191645 -k1,5958:17992743,31242301:191645 -k1,5958:19568509,31242301:191646 -k1,5958:22650947,31242301:191645 -k1,5958:24728063,31242301:191645 -k1,5958:25788060,31242301:191645 -k1,5958:27083987,31242301:191645 -k1,5958:28090900,31242301:191645 -k1,5958:29676496,31242301:191645 -(1,5958:29676496,31242301:0,452978,115847 -r1,5959:31793321,31242301:2116825,568825,115847 -k1,5958:29676496,31242301:-2116825 -) -(1,5958:29676496,31242301:2116825,452978,115847 -k1,5958:29676496,31242301:3277 -h1,5958:31790044,31242301:0,411205,112570 -) -k1,5959:31966991,31242301:0 -k1,5959:31966991,31242301:0 -) -] -) -] -r1,5959:32583029,31966473:26214,6683321,0 -) -] -) -) -g1,5959:32583029,31376649 -) -h1,5959:6630773,31992687:0,0,0 -(1,5961:6630773,33620607:25952256,505283,126483 -(1,5961:6630773,33620607:2809528,485622,11795 -g1,5961:6630773,33620607 -g1,5961:9440301,33620607 -) -(1,5961:9440301,33620607:0,452978,115847 -r1,5961:11205414,33620607:1765113,568825,115847 -k1,5961:9440301,33620607:-1765113 -) -(1,5961:9440301,33620607:1765113,452978,115847 -k1,5961:9440301,33620607:3277 -h1,5961:11202137,33620607:0,411205,112570 -) -g1,5961:11409886,33620607 -k1,5961:32583028,33620607:19380732 -g1,5961:32583028,33620607 -) -(1,5963:6630773,34855311:25952256,513147,126483 -(1,5962:6630773,34855311:0,452978,115847 -r1,5962:8395886,34855311:1765113,568825,115847 -k1,5962:6630773,34855311:-1765113 -) -(1,5962:6630773,34855311:1765113,452978,115847 -k1,5962:6630773,34855311:3277 -h1,5962:8392609,34855311:0,411205,112570 -) -k1,5962:8690074,34855311:294188 -k1,5962:10729486,34855311:294188 -k1,5962:12015234,34855311:294188 -k1,5962:15614403,34855311:294188 -k1,5962:18059483,34855311:294188 -k1,5962:19820367,34855311:294188 -k1,5962:20580516,34855311:294188 -k1,5962:21940975,34855311:294188 -k1,5962:22921325,34855311:294188 -k1,5962:26520494,34855311:294188 -k1,5962:28327908,34855311:294188 -k1,5962:29308258,34855311:294188 -(1,5962:29308258,34855311:0,459977,115847 -r1,5962:30369947,34855311:1061689,575824,115847 -k1,5962:29308258,34855311:-1061689 -) -(1,5962:29308258,34855311:1061689,459977,115847 -k1,5962:29308258,34855311:3277 -h1,5962:30366670,34855311:0,411205,112570 -) -k1,5962:30664135,34855311:294188 -k1,5962:32583029,34855311:0 -) -(1,5963:6630773,35696799:25952256,513147,134348 -k1,5962:9141676,35696799:171923 -k1,5962:9972891,35696799:171923 -k1,5962:10500673,35696799:171922 -k1,5962:11666122,35696799:171923 -k1,5962:12520930,35696799:171923 -k1,5962:14844400,35696799:171923 -k1,5962:16396511,35696799:171923 -k1,5962:17921096,35696799:171922 -k1,5962:18448879,35696799:171923 -k1,5962:20690429,35696799:171923 -k1,5962:24108350,35696799:171923 -k1,5962:26165744,35696799:171923 -k1,5962:26869163,35696799:171922 -k1,5962:29328293,35696799:171923 -k1,5962:30270919,35696799:171923 -k1,5963:32583029,35696799:0 -) -(1,5963:6630773,36538287:25952256,505283,102891 -g1,5962:8344539,36538287 -g1,5962:9615937,36538287 -g1,5962:11700637,36538287 -g1,5962:13004148,36538287 -g1,5962:14489193,36538287 -g1,5962:15436188,36538287 -g1,5962:15991277,36538287 -k1,5963:32583029,36538287:13906742 -g1,5963:32583029,36538287 -) -v1,5965:6630773,37728753:0,393216,0 -(1,5984:6630773,44778697:25952256,7443160,196608 -g1,5984:6630773,44778697 -g1,5984:6630773,44778697 -g1,5984:6434165,44778697 -(1,5984:6434165,44778697:0,7443160,196608 -r1,5984:32779637,44778697:26345472,7639768,196608 -k1,5984:6434165,44778697:-26345472 -) -(1,5984:6434165,44778697:26345472,7443160,196608 -[1,5984:6630773,44778697:25952256,7246552,0 -(1,5967:6630773,37920642:25952256,388497,4718 -(1,5966:6630773,37920642:0,0,0 -g1,5966:6630773,37920642 -g1,5966:6630773,37920642 -g1,5966:6303093,37920642 -(1,5966:6303093,37920642:0,0,0 -) -g1,5966:6630773,37920642 -) -g1,5967:7263065,37920642 -g1,5967:8211503,37920642 -h1,5967:8527649,37920642:0,0,0 -k1,5967:32583029,37920642:24055380 -g1,5967:32583029,37920642 -) -(1,5968:6630773,38586820:25952256,404226,76021 -h1,5968:6630773,38586820:0,0,0 -g1,5968:8527647,38586820 -g1,5968:9476084,38586820 -g1,5968:10108376,38586820 -g1,5968:11372959,38586820 -h1,5968:11689105,38586820:0,0,0 -k1,5968:32583029,38586820:20893924 -g1,5968:32583029,38586820 -) -(1,5969:6630773,39252998:25952256,404226,101187 -h1,5969:6630773,39252998:0,0,0 -g1,5969:6946919,39252998 -g1,5969:7263065,39252998 -k1,5969:7263065,39252998:0 -h1,5969:9792230,39252998:0,0,0 -k1,5969:32583030,39252998:22790800 -g1,5969:32583030,39252998 -) -(1,5970:6630773,39919176:25952256,388497,4718 -h1,5970:6630773,39919176:0,0,0 -g1,5970:6946919,39919176 -g1,5970:7263065,39919176 -g1,5970:7895357,39919176 -g1,5970:8843795,39919176 -h1,5970:9792233,39919176:0,0,0 -k1,5970:32583029,39919176:22790796 -g1,5970:32583029,39919176 -) -(1,5971:6630773,40585354:25952256,404226,76021 -h1,5971:6630773,40585354:0,0,0 -h1,5971:6946919,40585354:0,0,0 -k1,5971:32583029,40585354:25636110 -g1,5971:32583029,40585354 -) -(1,5977:6630773,41317068:25952256,404226,76021 -(1,5973:6630773,41317068:0,0,0 -g1,5973:6630773,41317068 -g1,5973:6630773,41317068 -g1,5973:6303093,41317068 -(1,5973:6303093,41317068:0,0,0 -) -g1,5973:6630773,41317068 -) -g1,5977:7579210,41317068 -g1,5977:8843793,41317068 -h1,5977:9159939,41317068:0,0,0 -k1,5977:32583029,41317068:23423090 -g1,5977:32583029,41317068 -) -(1,5977:6630773,41983246:25952256,404226,76021 -h1,5977:6630773,41983246:0,0,0 -g1,5977:7579210,41983246 -g1,5977:8843793,41983246 -h1,5977:9159939,41983246:0,0,0 -k1,5977:32583029,41983246:23423090 -g1,5977:32583029,41983246 -) -(1,5977:6630773,42649424:25952256,404226,76021 -h1,5977:6630773,42649424:0,0,0 -g1,5977:7579210,42649424 -g1,5977:8843793,42649424 -h1,5977:9476084,42649424:0,0,0 -k1,5977:32583028,42649424:23106944 -g1,5977:32583028,42649424 -) -(1,5979:6630773,43970962:25952256,404226,101187 -(1,5978:6630773,43970962:0,0,0 -g1,5978:6630773,43970962 -g1,5978:6630773,43970962 -g1,5978:6303093,43970962 -(1,5978:6303093,43970962:0,0,0 -) -g1,5978:6630773,43970962 -) -k1,5979:6630773,43970962:0 -h1,5979:9159938,43970962:0,0,0 -k1,5979:32583030,43970962:23423092 -g1,5979:32583030,43970962 -) -(1,5983:6630773,44702676:25952256,404226,76021 -(1,5981:6630773,44702676:0,0,0 -g1,5981:6630773,44702676 -g1,5981:6630773,44702676 -g1,5981:6303093,44702676 -(1,5981:6303093,44702676:0,0,0 -) -g1,5981:6630773,44702676 -) -g1,5983:7579210,44702676 -g1,5983:8843793,44702676 -h1,5983:9792230,44702676:0,0,0 -k1,5983:32583030,44702676:22790800 -g1,5983:32583030,44702676 -) -] -) -g1,5984:32583029,44778697 -g1,5984:6630773,44778697 -g1,5984:6630773,44778697 -g1,5984:32583029,44778697 -g1,5984:32583029,44778697 -) -h1,5984:6630773,44975305:0,0,0 -] -(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 -) -] -h1,5988:4262630,4025873:0,0,0 -] -!22359 +[1,5994:6630773,45706769:25952256,40108032,0 +v1,5938:6630773,6254097:0,393216,0 +(1,5938:6630773,7931823:25952256,2070942,616038 +g1,5938:6630773,7931823 +(1,5938:6630773,7931823:25952256,2070942,616038 +(1,5938:6630773,8547861:25952256,2686980,0 +[1,5938:6630773,8547861:25952256,2686980,0 +(1,5938:6630773,8521647:25952256,2660766,0 +r1,5938:6656987,8521647:26214,2660766,0 +[1,5938:6656987,8521647:25899828,2660766,0 +(1,5938:6656987,7931823:25899828,1481118,0 +[1,5938:7246811,7931823:24720180,1481118,0 +(1,5938:7246811,6963852:24720180,513147,134348 +k1,5937:10462842,6963852:231521 +k1,5937:11798644,6963852:231520 +k1,5937:12777931,6963852:231521 +k1,5937:14522678,6963852:231521 +k1,5937:15701849,6963852:231520 +k1,5937:19255390,6963852:231521 +k1,5937:23458392,6963852:231520 +k1,5937:25932555,6963852:231521 +k1,5937:27660263,6963852:231521 +k1,5937:29176289,6963852:231520 +k1,5937:30900720,6963852:231521 +k1,5937:31966991,6963852:0 +) +(1,5938:7246811,7805340:24720180,505283,126483 +g1,5937:9456685,7805340 +g1,5937:10674999,7805340 +g1,5937:13713248,7805340 +k1,5938:31966991,7805340:15906899 +g1,5938:31966991,7805340 +) +] +) +] +r1,5938:32583029,8521647:26214,2660766,0 +) +] +) +) +g1,5938:32583029,7931823 +) +h1,5938:6630773,8547861:0,0,0 +v1,5941:6630773,9913637:0,393216,0 +(1,5961:6630773,23668340:25952256,14147919,616038 +g1,5961:6630773,23668340 +(1,5961:6630773,23668340:25952256,14147919,616038 +(1,5961:6630773,24284378:25952256,14763957,0 +[1,5961:6630773,24284378:25952256,14763957,0 +(1,5961:6630773,24258164:25952256,14711529,0 +r1,5961:6656987,24258164:26214,14711529,0 +[1,5961:6656987,24258164:25899828,14711529,0 +(1,5961:6656987,23668340:25899828,13531881,0 +[1,5961:7246811,23668340:24720180,13531881,0 +(1,5942:7246811,11420441:24720180,1283982,196608 +(1,5941:7246811,11420441:0,1283982,196608 +r1,5961:9812056,11420441:2565245,1480590,196608 +k1,5941:7246811,11420441:-2565245 +) +(1,5941:7246811,11420441:2565245,1283982,196608 +) +k1,5941:10036395,11420441:224339 +k1,5941:10888569,11420441:224339 +k1,5941:12131993,11420441:224339 +k1,5941:15348051,11420441:224339 +k1,5941:17427714,11420441:224339 +k1,5941:18520405,11420441:224339 +k1,5941:20405426,11420441:224339 +k1,5941:21648850,11420441:224339 +k1,5941:22965674,11420441:224339 +k1,5941:23857169,11420441:224339 +(1,5941:23857169,11420441:0,452978,115847 +r1,5961:25622282,11420441:1765113,568825,115847 +k1,5941:23857169,11420441:-1765113 +) +(1,5941:23857169,11420441:1765113,452978,115847 +k1,5941:23857169,11420441:3277 +h1,5941:25619005,11420441:0,411205,112570 +) +k1,5941:25846621,11420441:224339 +k1,5941:28498414,11420441:224339 +k1,5941:29078613,11420441:224339 +k1,5941:31280829,11420441:224339 +k1,5941:31966991,11420441:0 +) +(1,5942:7246811,12261929:24720180,505283,134348 +k1,5941:8181491,12261929:163977 +k1,5941:11417797,12261929:163978 +k1,5941:12233202,12261929:163977 +k1,5941:13185577,12261929:163977 +k1,5941:16630286,12261929:163977 +(1,5941:16630286,12261929:0,452978,122846 +r1,5961:20153958,12261929:3523672,575824,122846 +k1,5941:16630286,12261929:-3523672 +) +(1,5941:16630286,12261929:3523672,452978,122846 +k1,5941:16630286,12261929:3277 +h1,5941:20150681,12261929:0,411205,112570 +) +k1,5941:20491606,12261929:163978 +k1,5941:21930258,12261929:163977 +k1,5941:23113320,12261929:163977 +k1,5941:26269016,12261929:163977 +k1,5941:28301425,12261929:163978 +k1,5941:29656847,12261929:163977 +k1,5941:31966991,12261929:0 +) +(1,5942:7246811,13103417:24720180,513147,134348 +k1,5941:8813091,13103417:269322 +k1,5941:10101497,13103417:269321 +k1,5941:11543258,13103417:269322 +k1,5941:15474731,13103417:269321 +k1,5941:16735613,13103417:269322 +k1,5941:20309915,13103417:269321 +k1,5941:21954838,13103417:269322 +k1,5941:23922197,13103417:269321 +k1,5941:25210604,13103417:269322 +k1,5941:27493191,13103417:269321 +k1,5941:28429669,13103417:269322 +(1,5941:28429669,13103417:0,414482,115847 +r1,5961:28787935,13103417:358266,530329,115847 +k1,5941:28429669,13103417:-358266 +) +(1,5941:28429669,13103417:358266,414482,115847 +k1,5941:28429669,13103417:3277 +h1,5941:28784658,13103417:0,411205,112570 +) +k1,5941:29057256,13103417:269321 +k1,5941:29858075,13103417:269322 +k1,5941:31284106,13103417:269321 +k1,5941:31966991,13103417:0 +) +(1,5942:7246811,13944905:24720180,513147,134348 +k1,5941:9241854,13944905:171176 +k1,5941:10808947,13944905:171176 +k1,5941:11999209,13944905:171177 +k1,5941:14428100,13944905:171176 +k1,5941:15360804,13944905:171176 +k1,5941:18528941,13944905:171176 +k1,5941:19351546,13944905:171177 +(1,5941:19351546,13944905:0,414482,115847 +r1,5961:19709812,13944905:358266,530329,115847 +k1,5941:19351546,13944905:-358266 +) +(1,5941:19351546,13944905:358266,414482,115847 +k1,5941:19351546,13944905:3277 +h1,5941:19706535,13944905:0,411205,112570 +) +k1,5941:20054658,13944905:171176 +k1,5941:22534012,13944905:171176 +k1,5941:23364480,13944905:171176 +k1,5941:26298000,13944905:171177 +k1,5941:28986414,13944905:171176 +k1,5941:31966991,13944905:0 +) +(1,5942:7246811,14786393:24720180,505283,134348 +g1,5941:8866205,14786393 +g1,5941:11007921,14786393 +(1,5941:11007921,14786393:0,452978,115847 +r1,5961:16290153,14786393:5282232,568825,115847 +k1,5941:11007921,14786393:-5282232 +) +(1,5941:11007921,14786393:5282232,452978,115847 +g1,5941:11714622,14786393 +g1,5941:12769758,14786393 +h1,5941:16286876,14786393:0,411205,112570 +) +k1,5942:31966991,14786393:15296074 +g1,5942:31966991,14786393 +) +v1,5944:7246811,15976859:0,393216,0 +(1,5958:7246811,22947444:24720180,7363801,196608 +g1,5958:7246811,22947444 +g1,5958:7246811,22947444 +g1,5958:7050203,22947444 +(1,5958:7050203,22947444:0,7363801,196608 +r1,5961:32163599,22947444:25113396,7560409,196608 +k1,5958:7050203,22947444:-25113396 +) +(1,5958:7050203,22947444:25113396,7363801,196608 +[1,5958:7246811,22947444:24720180,7167193,0 +(1,5946:7246811,16184477:24720180,404226,107478 +(1,5945:7246811,16184477:0,0,0 +g1,5945:7246811,16184477 +g1,5945:7246811,16184477 +g1,5945:6919131,16184477 +(1,5945:6919131,16184477:0,0,0 +) +g1,5945:7246811,16184477 +) +g1,5946:7879103,16184477 +g1,5946:8827541,16184477 +k1,5946:8827541,16184477:0 +h1,5946:14518164,16184477:0,0,0 +k1,5946:31966992,16184477:17448828 +g1,5946:31966992,16184477 +) +(1,5947:7246811,16850655:24720180,410518,107478 +h1,5947:7246811,16850655:0,0,0 +g1,5947:9143685,16850655 +g1,5947:10092122,16850655 +g1,5947:14834308,16850655 +g1,5947:15466600,16850655 +g1,5947:16731183,16850655 +h1,5947:17047329,16850655:0,0,0 +k1,5947:31966991,16850655:14919662 +g1,5947:31966991,16850655 +) +(1,5948:7246811,17516833:24720180,404226,76021 +h1,5948:7246811,17516833:0,0,0 +g1,5948:7562957,17516833 +g1,5948:7879103,17516833 +g1,5948:9459832,17516833 +g1,5948:10408270,17516833 +h1,5948:12305145,17516833:0,0,0 +k1,5948:31966991,17516833:19661846 +g1,5948:31966991,17516833 +) +(1,5949:7246811,18183011:24720180,404226,76021 +h1,5949:7246811,18183011:0,0,0 +h1,5949:7562957,18183011:0,0,0 +k1,5949:31966991,18183011:24404034 +g1,5949:31966991,18183011 +) +(1,5950:7246811,18849189:24720180,404226,101187 +h1,5950:7246811,18849189:0,0,0 +k1,5950:7246811,18849189:0 +h1,5950:9775976,18849189:0,0,0 +k1,5950:31966992,18849189:22191016 +g1,5950:31966992,18849189 +) +(1,5951:7246811,19515367:24720180,0,0 +h1,5951:7246811,19515367:0,0,0 +h1,5951:7246811,19515367:0,0,0 +k1,5951:31966991,19515367:24720180 +g1,5951:31966991,19515367 +) +(1,5952:7246811,20181545:24720180,404226,107478 +h1,5952:7246811,20181545:0,0,0 +g1,5952:7879103,20181545 +g1,5952:8827541,20181545 +k1,5952:8827541,20181545:0 +h1,5952:14518164,20181545:0,0,0 +k1,5952:31966992,20181545:17448828 +g1,5952:31966992,20181545 +) +(1,5953:7246811,20847723:24720180,410518,107478 +h1,5953:7246811,20847723:0,0,0 +g1,5953:9143685,20847723 +g1,5953:10092122,20847723 +g1,5953:14202017,20847723 +h1,5953:14518163,20847723:0,0,0 +k1,5953:31966991,20847723:17448828 +g1,5953:31966991,20847723 +) +(1,5954:7246811,21513901:24720180,404226,76021 +h1,5954:7246811,21513901:0,0,0 +g1,5954:7562957,21513901 +g1,5954:7879103,21513901 +g1,5954:9459832,21513901 +g1,5954:10408270,21513901 +h1,5954:12305145,21513901:0,0,0 +k1,5954:31966991,21513901:19661846 +g1,5954:31966991,21513901 +) +(1,5955:7246811,22180079:24720180,404226,76021 +h1,5955:7246811,22180079:0,0,0 +h1,5955:7562957,22180079:0,0,0 +k1,5955:31966991,22180079:24404034 +g1,5955:31966991,22180079 +) +(1,5956:7246811,22846257:24720180,404226,101187 +h1,5956:7246811,22846257:0,0,0 +k1,5956:7246811,22846257:0 +h1,5956:9775976,22846257:0,0,0 +k1,5956:31966992,22846257:22191016 +g1,5956:31966992,22846257 +) +] +) +g1,5958:31966991,22947444 +g1,5958:7246811,22947444 +g1,5958:7246811,22947444 +g1,5958:31966991,22947444 +g1,5958:31966991,22947444 +) +h1,5958:7246811,23144052:0,0,0 +] +) +] +r1,5961:32583029,24258164:26214,14711529,0 +) +] +) +) +g1,5961:32583029,23668340 +) +h1,5961:6630773,24284378:0,0,0 +v1,5964:6630773,25650154:0,393216,0 +(1,5965:6630773,31376649:25952256,6119711,616038 +g1,5965:6630773,31376649 +(1,5965:6630773,31376649:25952256,6119711,616038 +(1,5965:6630773,31992687:25952256,6735749,0 +[1,5965:6630773,31992687:25952256,6735749,0 +(1,5965:6630773,31966473:25952256,6683321,0 +r1,5965:6656987,31966473:26214,6683321,0 +[1,5965:6656987,31966473:25899828,6683321,0 +(1,5965:6656987,31376649:25899828,5503673,0 +[1,5965:7246811,31376649:24720180,5503673,0 +(1,5965:7246811,27034861:24720180,1161885,196608 +(1,5964:7246811,27034861:0,1161885,196608 +r1,5965:8794447,27034861:1547636,1358493,196608 +k1,5964:7246811,27034861:-1547636 +) +(1,5964:7246811,27034861:1547636,1161885,196608 +) +k1,5964:8949741,27034861:155294 +(1,5964:8949741,27034861:0,459977,115847 +r1,5965:10011430,27034861:1061689,575824,115847 +k1,5964:8949741,27034861:-1061689 +) +(1,5964:8949741,27034861:1061689,459977,115847 +k1,5964:8949741,27034861:3277 +h1,5964:10008153,27034861:0,411205,112570 +) +k1,5964:10166725,27034861:155295 +k1,5964:12067243,27034861:155294 +k1,5964:12908700,27034861:155295 +k1,5964:16154017,27034861:155294 +k1,5964:18338306,27034861:155294 +k1,5964:19109639,27034861:155295 +k1,5964:20284018,27034861:155294 +k1,5964:22969002,27034861:155294 +k1,5964:23783589,27034861:155295 +k1,5964:26049798,27034861:155294 +k1,5964:27680308,27034861:155295 +k1,5964:30697559,27034861:155294 +k1,5965:31966991,27034861:0 +) +(1,5965:7246811,27876349:24720180,505283,126483 +k1,5964:9969355,27876349:201374 +k1,5964:13104121,27876349:201375 +k1,5964:14502182,27876349:201374 +k1,5964:18117327,27876349:201375 +k1,5964:21505061,27876349:201374 +k1,5964:22322474,27876349:201375 +k1,5964:23542933,27876349:201374 +k1,5964:25159230,27876349:201375 +k1,5964:26493066,27876349:201374 +k1,5964:27442207,27876349:201375 +k1,5964:30476702,27876349:201374 +k1,5964:31966991,27876349:0 +) +(1,5965:7246811,28717837:24720180,513147,126483 +k1,5964:8390616,28717837:196154 +k1,5964:10038393,28717837:196155 +k1,5964:12857953,28717837:196154 +k1,5964:13713400,28717837:196155 +k1,5964:14928639,28717837:196154 +k1,5964:17102670,28717837:196154 +k1,5964:17981710,28717837:196155 +k1,5964:19345060,28717837:196154 +k1,5964:21760263,28717837:196154 +k1,5964:23653800,28717837:196155 +k1,5964:25186888,28717837:196154 +k1,5964:27674837,28717837:196155 +k1,5964:28890076,28717837:196154 +k1,5964:31966991,28717837:0 +) +(1,5965:7246811,29559325:24720180,513147,126483 +k1,5964:8137620,29559325:231517 +k1,5964:9388222,29559325:231517 +k1,5964:11898425,29559325:231516 +k1,5964:13479984,29559325:231517 +k1,5964:14370793,29559325:231517 +k1,5964:17677915,29559325:231517 +k1,5964:18525470,29559325:231517 +k1,5964:19776071,29559325:231516 +k1,5964:21596181,29559325:231517 +k1,5964:23177740,29559325:231517 +k1,5964:25106639,29559325:231517 +k1,5964:26329716,29559325:231517 +k1,5964:27955838,29559325:231516 +k1,5964:28838783,29559325:231517 +k1,5964:30399370,29559325:231517 +k1,5964:31966991,29559325:0 +) +(1,5965:7246811,30400813:24720180,505283,134348 +k1,5964:8623889,30400813:220368 +k1,5964:9375754,30400813:220368 +k1,5964:12409583,30400813:220368 +k1,5964:15347073,30400813:220367 +k1,5964:17298902,30400813:220368 +k1,5964:19404741,30400813:220368 +k1,5964:20493461,30400813:220368 +k1,5964:21818111,30400813:220368 +k1,5964:22853747,30400813:220368 +k1,5964:24468065,30400813:220367 +(1,5964:24468065,30400813:0,452978,115847 +r1,5965:26936602,30400813:2468537,568825,115847 +k1,5964:24468065,30400813:-2468537 +) +(1,5964:24468065,30400813:2468537,452978,115847 +k1,5964:24468065,30400813:3277 +h1,5964:26933325,30400813:0,411205,112570 +) +k1,5964:27330640,30400813:220368 +k1,5964:28742453,30400813:220368 +k1,5964:31435494,30400813:220368 +k1,5964:31966991,30400813:0 +) +(1,5965:7246811,31242301:24720180,513147,134348 +k1,5964:10111014,31242301:191645 +k1,5964:12197305,31242301:191645 +k1,5964:13040378,31242301:191645 +k1,5964:14251108,31242301:191645 +k1,5964:15931076,31242301:191645 +k1,5964:16782013,31242301:191645 +k1,5964:17992743,31242301:191645 +k1,5964:19568509,31242301:191646 +k1,5964:22650947,31242301:191645 +k1,5964:24728063,31242301:191645 +k1,5964:25788060,31242301:191645 +k1,5964:27083987,31242301:191645 +k1,5964:28090900,31242301:191645 +k1,5964:29676496,31242301:191645 +(1,5964:29676496,31242301:0,452978,115847 +r1,5965:31793321,31242301:2116825,568825,115847 +k1,5964:29676496,31242301:-2116825 +) +(1,5964:29676496,31242301:2116825,452978,115847 +k1,5964:29676496,31242301:3277 +h1,5964:31790044,31242301:0,411205,112570 +) +k1,5965:31966991,31242301:0 +k1,5965:31966991,31242301:0 +) +] +) +] +r1,5965:32583029,31966473:26214,6683321,0 +) +] +) +) +g1,5965:32583029,31376649 +) +h1,5965:6630773,31992687:0,0,0 +(1,5967:6630773,33620607:25952256,505283,126483 +(1,5967:6630773,33620607:2809528,485622,11795 +g1,5967:6630773,33620607 +g1,5967:9440301,33620607 +) +(1,5967:9440301,33620607:0,452978,115847 +r1,5967:11205414,33620607:1765113,568825,115847 +k1,5967:9440301,33620607:-1765113 +) +(1,5967:9440301,33620607:1765113,452978,115847 +k1,5967:9440301,33620607:3277 +h1,5967:11202137,33620607:0,411205,112570 +) +g1,5967:11409886,33620607 +k1,5967:32583028,33620607:19380732 +g1,5967:32583028,33620607 +) +(1,5969:6630773,34855311:25952256,513147,126483 +(1,5968:6630773,34855311:0,452978,115847 +r1,5968:8395886,34855311:1765113,568825,115847 +k1,5968:6630773,34855311:-1765113 +) +(1,5968:6630773,34855311:1765113,452978,115847 +k1,5968:6630773,34855311:3277 +h1,5968:8392609,34855311:0,411205,112570 +) +k1,5968:8690074,34855311:294188 +k1,5968:10729486,34855311:294188 +k1,5968:12015234,34855311:294188 +k1,5968:15614403,34855311:294188 +k1,5968:18059483,34855311:294188 +k1,5968:19820367,34855311:294188 +k1,5968:20580516,34855311:294188 +k1,5968:21940975,34855311:294188 +k1,5968:22921325,34855311:294188 +k1,5968:26520494,34855311:294188 +k1,5968:28327908,34855311:294188 +k1,5968:29308258,34855311:294188 +(1,5968:29308258,34855311:0,459977,115847 +r1,5968:30369947,34855311:1061689,575824,115847 +k1,5968:29308258,34855311:-1061689 +) +(1,5968:29308258,34855311:1061689,459977,115847 +k1,5968:29308258,34855311:3277 +h1,5968:30366670,34855311:0,411205,112570 +) +k1,5968:30664135,34855311:294188 +k1,5968:32583029,34855311:0 +) +(1,5969:6630773,35696799:25952256,513147,134348 +k1,5968:9141676,35696799:171923 +k1,5968:9972891,35696799:171923 +k1,5968:10500673,35696799:171922 +k1,5968:11666122,35696799:171923 +k1,5968:12520930,35696799:171923 +k1,5968:14844400,35696799:171923 +k1,5968:16396511,35696799:171923 +k1,5968:17921096,35696799:171922 +k1,5968:18448879,35696799:171923 +k1,5968:20690429,35696799:171923 +k1,5968:24108350,35696799:171923 +k1,5968:26165744,35696799:171923 +k1,5968:26869163,35696799:171922 +k1,5968:29328293,35696799:171923 +k1,5968:30270919,35696799:171923 +k1,5969:32583029,35696799:0 +) +(1,5969:6630773,36538287:25952256,505283,102891 +g1,5968:8344539,36538287 +g1,5968:9615937,36538287 +g1,5968:11700637,36538287 +g1,5968:13004148,36538287 +g1,5968:14489193,36538287 +g1,5968:15436188,36538287 +g1,5968:15991277,36538287 +k1,5969:32583029,36538287:13906742 +g1,5969:32583029,36538287 +) +v1,5971:6630773,37728753:0,393216,0 +(1,5990:6630773,44778697:25952256,7443160,196608 +g1,5990:6630773,44778697 +g1,5990:6630773,44778697 +g1,5990:6434165,44778697 +(1,5990:6434165,44778697:0,7443160,196608 +r1,5990:32779637,44778697:26345472,7639768,196608 +k1,5990:6434165,44778697:-26345472 +) +(1,5990:6434165,44778697:26345472,7443160,196608 +[1,5990:6630773,44778697:25952256,7246552,0 +(1,5973:6630773,37920642:25952256,388497,4718 +(1,5972:6630773,37920642:0,0,0 +g1,5972:6630773,37920642 +g1,5972:6630773,37920642 +g1,5972:6303093,37920642 +(1,5972:6303093,37920642:0,0,0 +) +g1,5972:6630773,37920642 +) +g1,5973:7263065,37920642 +g1,5973:8211503,37920642 +h1,5973:8527649,37920642:0,0,0 +k1,5973:32583029,37920642:24055380 +g1,5973:32583029,37920642 +) +(1,5974:6630773,38586820:25952256,404226,76021 +h1,5974:6630773,38586820:0,0,0 +g1,5974:8527647,38586820 +g1,5974:9476084,38586820 +g1,5974:10108376,38586820 +g1,5974:11372959,38586820 +h1,5974:11689105,38586820:0,0,0 +k1,5974:32583029,38586820:20893924 +g1,5974:32583029,38586820 +) +(1,5975:6630773,39252998:25952256,404226,101187 +h1,5975:6630773,39252998:0,0,0 +g1,5975:6946919,39252998 +g1,5975:7263065,39252998 +k1,5975:7263065,39252998:0 +h1,5975:9792230,39252998:0,0,0 +k1,5975:32583030,39252998:22790800 +g1,5975:32583030,39252998 +) +(1,5976:6630773,39919176:25952256,388497,4718 +h1,5976:6630773,39919176:0,0,0 +g1,5976:6946919,39919176 +g1,5976:7263065,39919176 +g1,5976:7895357,39919176 +g1,5976:8843795,39919176 +h1,5976:9792233,39919176:0,0,0 +k1,5976:32583029,39919176:22790796 +g1,5976:32583029,39919176 +) +(1,5977:6630773,40585354:25952256,404226,76021 +h1,5977:6630773,40585354:0,0,0 +h1,5977:6946919,40585354:0,0,0 +k1,5977:32583029,40585354:25636110 +g1,5977:32583029,40585354 +) +(1,5983:6630773,41317068:25952256,404226,76021 +(1,5979:6630773,41317068:0,0,0 +g1,5979:6630773,41317068 +g1,5979:6630773,41317068 +g1,5979:6303093,41317068 +(1,5979:6303093,41317068:0,0,0 +) +g1,5979:6630773,41317068 +) +g1,5983:7579210,41317068 +g1,5983:8843793,41317068 +h1,5983:9159939,41317068:0,0,0 +k1,5983:32583029,41317068:23423090 +g1,5983:32583029,41317068 +) +(1,5983:6630773,41983246:25952256,404226,76021 +h1,5983:6630773,41983246:0,0,0 +g1,5983:7579210,41983246 +g1,5983:8843793,41983246 +h1,5983:9159939,41983246:0,0,0 +k1,5983:32583029,41983246:23423090 +g1,5983:32583029,41983246 +) +(1,5983:6630773,42649424:25952256,404226,76021 +h1,5983:6630773,42649424:0,0,0 +g1,5983:7579210,42649424 +g1,5983:8843793,42649424 +h1,5983:9476084,42649424:0,0,0 +k1,5983:32583028,42649424:23106944 +g1,5983:32583028,42649424 +) +(1,5985:6630773,43970962:25952256,404226,101187 +(1,5984:6630773,43970962:0,0,0 +g1,5984:6630773,43970962 +g1,5984:6630773,43970962 +g1,5984:6303093,43970962 +(1,5984:6303093,43970962:0,0,0 +) +g1,5984:6630773,43970962 +) +k1,5985:6630773,43970962:0 +h1,5985:9159938,43970962:0,0,0 +k1,5985:32583030,43970962:23423092 +g1,5985:32583030,43970962 +) +(1,5989:6630773,44702676:25952256,404226,76021 +(1,5987:6630773,44702676:0,0,0 +g1,5987:6630773,44702676 +g1,5987:6630773,44702676 +g1,5987:6303093,44702676 +(1,5987:6303093,44702676:0,0,0 +) +g1,5987:6630773,44702676 +) +g1,5989:7579210,44702676 +g1,5989:8843793,44702676 +h1,5989:9792230,44702676:0,0,0 +k1,5989:32583030,44702676:22790800 +g1,5989:32583030,44702676 +) +] +) +g1,5990:32583029,44778697 +g1,5990:6630773,44778697 +g1,5990:6630773,44778697 +g1,5990:32583029,44778697 +g1,5990:32583029,44778697 +) +h1,5990:6630773,44975305:0,0,0 +] +(1,5994:32583029,45706769:0,0,0 +g1,5994:32583029,45706769 +) +) +] +(1,5994:6630773,47279633:25952256,0,0 +h1,5994:6630773,47279633:25952256,0,0 +) +] +h1,5994:4262630,4025873:0,0,0 +] +!22360 }113 -Input:815:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:816:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:817:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:818:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:819:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:820:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:821:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:822:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:823:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:824:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:825:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:826:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:827:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:828:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1202 +Input:811:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:812:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:813:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:814:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:815:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:816:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:817:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:818:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:819:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:820:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:821:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:822:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:823:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:824:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1286 {114 -[1,6049:4262630,47279633:28320399,43253760,0 -(1,6049:4262630,4025873:0,0,0 -[1,6049:-473657,4025873:25952256,0,0 -(1,6049:-473657,-710414:25952256,0,0 -h1,6049:-473657,-710414:0,0,0 -(1,6049:-473657,-710414:0,0,0 -(1,6049:-473657,-710414:0,0,0 -g1,6049:-473657,-710414 -(1,6049:-473657,-710414:65781,0,65781 -g1,6049:-407876,-710414 -[1,6049:-407876,-644633:0,0,0 +[1,6055:4262630,47279633:28320399,43253760,0 +(1,6055:4262630,4025873:0,0,0 +[1,6055:-473657,4025873:25952256,0,0 +(1,6055:-473657,-710414:25952256,0,0 +h1,6055:-473657,-710414:0,0,0 +(1,6055:-473657,-710414:0,0,0 +(1,6055:-473657,-710414:0,0,0 +g1,6055:-473657,-710414 +(1,6055:-473657,-710414:65781,0,65781 +g1,6055:-407876,-710414 +[1,6055:-407876,-644633:0,0,0 ] ) -k1,6049:-473657,-710414:-65781 +k1,6055:-473657,-710414:-65781 ) ) -k1,6049:25478599,-710414:25952256 -g1,6049:25478599,-710414 +k1,6055:25478599,-710414:25952256 +g1,6055:25478599,-710414 ) ] ) -[1,6049:6630773,47279633:25952256,43253760,0 -[1,6049:6630773,4812305:25952256,786432,0 -(1,6049:6630773,4812305:25952256,513147,126483 -(1,6049:6630773,4812305:25952256,513147,126483 -g1,6049:3078558,4812305 -[1,6049:3078558,4812305:0,0,0 -(1,6049:3078558,2439708:0,1703936,0 -k1,6049:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6049:2537886,2439708:1179648,16384,0 +[1,6055:6630773,47279633:25952256,43253760,0 +[1,6055:6630773,4812305:25952256,786432,0 +(1,6055:6630773,4812305:25952256,513147,126483 +(1,6055:6630773,4812305:25952256,513147,126483 +g1,6055:3078558,4812305 +[1,6055:3078558,4812305:0,0,0 +(1,6055:3078558,2439708:0,1703936,0 +k1,6055:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6055:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6049:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6055:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6049:3078558,4812305:0,0,0 -(1,6049:3078558,2439708:0,1703936,0 -g1,6049:29030814,2439708 -g1,6049:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6049:36151628,1915420:16384,1179648,0 +[1,6055:3078558,4812305:0,0,0 +(1,6055:3078558,2439708:0,1703936,0 +g1,6055:29030814,2439708 +g1,6055:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6055:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6049:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6055:37855564,2439708:1179648,16384,0 ) ) -k1,6049:3078556,2439708:-34777008 +k1,6055:3078556,2439708:-34777008 ) ] -[1,6049:3078558,4812305:0,0,0 -(1,6049:3078558,49800853:0,16384,2228224 -k1,6049:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6049:2537886,49800853:1179648,16384,0 +[1,6055:3078558,4812305:0,0,0 +(1,6055:3078558,49800853:0,16384,2228224 +k1,6055:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6055:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6049:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6055:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6049:3078558,4812305:0,0,0 -(1,6049:3078558,49800853:0,16384,2228224 -g1,6049:29030814,49800853 -g1,6049:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6049:36151628,51504789:16384,1179648,0 +[1,6055:3078558,4812305:0,0,0 +(1,6055:3078558,49800853:0,16384,2228224 +g1,6055:29030814,49800853 +g1,6055:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6055:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6049:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6055:37855564,49800853:1179648,16384,0 ) ) -k1,6049:3078556,49800853:-34777008 +k1,6055:3078556,49800853:-34777008 ) ] -g1,6049:6630773,4812305 -g1,6049:6630773,4812305 -g1,6049:9175536,4812305 -g1,6049:9990803,4812305 -g1,6049:13137841,4812305 -g1,6049:14654344,4812305 -k1,6049:31387652,4812305:16733308 +g1,6055:6630773,4812305 +g1,6055:6630773,4812305 +g1,6055:9175536,4812305 +g1,6055:9990803,4812305 +g1,6055:13137841,4812305 +g1,6055:14654344,4812305 +k1,6055:31387652,4812305:16733308 ) ) ] -[1,6049:6630773,45706769:25952256,40108032,0 -(1,6049:6630773,45706769:25952256,40108032,0 -(1,6049:6630773,45706769:0,0,0 -g1,6049:6630773,45706769 +[1,6055:6630773,45706769:25952256,40108032,0 +(1,6055:6630773,45706769:25952256,40108032,0 +(1,6055:6630773,45706769:0,0,0 +g1,6055:6630773,45706769 ) -[1,6049:6630773,45706769:25952256,40108032,0 -v1,5988:6630773,6254097:0,393216,0 -(1,5989:6630773,7698641:25952256,1837760,616038 -g1,5989:6630773,7698641 -(1,5989:6630773,7698641:25952256,1837760,616038 -(1,5989:6630773,8314679:25952256,2453798,0 -[1,5989:6630773,8314679:25952256,2453798,0 -(1,5989:6630773,8288465:25952256,2401370,0 -r1,5989:6656987,8288465:26214,2401370,0 -[1,5989:6656987,8288465:25899828,2401370,0 -(1,5989:6656987,7698641:25899828,1221722,0 -[1,5989:7246811,7698641:24720180,1221722,0 -(1,5989:7246811,7564293:24720180,1087374,134348 -g1,5988:8655743,7564293 -g1,5988:10514344,7564293 -g1,5988:12094417,7564293 -g1,5988:13578152,7564293 -g1,5988:14947854,7564293 -g1,5988:18811856,7564293 -g1,5988:20308043,7564293 -g1,5988:21526357,7564293 -g1,5988:23131989,7564293 -g1,5988:25011561,7564293 -g1,5988:25877946,7564293 -(1,5988:25877946,7564293:0,414482,115847 -r1,5989:26236212,7564293:358266,530329,115847 -k1,5988:25877946,7564293:-358266 -) -(1,5988:25877946,7564293:358266,414482,115847 -k1,5988:25877946,7564293:3277 -h1,5988:26232935,7564293:0,411205,112570 -) -g1,5988:26435441,7564293 -g1,5988:27166167,7564293 -g1,5988:29224652,7564293 -g1,5988:30866328,7564293 -k1,5989:31966991,7564293:130075 -g1,5989:31966991,7564293 -) -] -) -] -r1,5989:32583029,8288465:26214,2401370,0 -) -] -) -) -g1,5989:32583029,7698641 -) -h1,5989:6630773,8314679:0,0,0 -v1,5993:6630773,9680455:0,393216,0 -(1,6019:6630773,22313554:25952256,13026315,616038 -g1,6019:6630773,22313554 -(1,6019:6630773,22313554:25952256,13026315,616038 -(1,6019:6630773,22929592:25952256,13642353,0 -[1,6019:6630773,22929592:25952256,13642353,0 -(1,6019:6630773,22903378:25952256,13589925,0 -r1,6019:6656987,22903378:26214,13589925,0 -[1,6019:6656987,22903378:25899828,13589925,0 -(1,6019:6656987,22313554:25899828,12410277,0 -[1,6019:7246811,22313554:24720180,12410277,0 -(1,5994:7246811,11187259:24720180,1283982,196608 -(1,5993:7246811,11187259:0,1283982,196608 -r1,6019:9812056,11187259:2565245,1480590,196608 -k1,5993:7246811,11187259:-2565245 -) -(1,5993:7246811,11187259:2565245,1283982,196608 -) -g1,5993:10011285,11187259 -g1,5993:11407201,11187259 -g1,5993:15123092,11187259 -g1,5993:17177645,11187259 -g1,5993:18481156,11187259 -g1,5993:19428151,11187259 -g1,5993:22804565,11187259 -k1,5994:31966991,11187259:8337328 -g1,5994:31966991,11187259 -) -v1,5996:7246811,12377725:0,393216,0 -(1,6004:7246811,15310347:24720180,3325838,196608 -g1,6004:7246811,15310347 -g1,6004:7246811,15310347 -g1,6004:7050203,15310347 -(1,6004:7050203,15310347:0,3325838,196608 -r1,6019:32163599,15310347:25113396,3522446,196608 -k1,6004:7050203,15310347:-25113396 -) -(1,6004:7050203,15310347:25113396,3325838,196608 -[1,6004:7246811,15310347:24720180,3129230,0 -(1,5998:7246811,12569614:24720180,388497,4718 -(1,5997:7246811,12569614:0,0,0 -g1,5997:7246811,12569614 -g1,5997:7246811,12569614 -g1,5997:6919131,12569614 -(1,5997:6919131,12569614:0,0,0 -) -g1,5997:7246811,12569614 -) -g1,5998:7879103,12569614 -g1,5998:8827541,12569614 -h1,5998:9143687,12569614:0,0,0 -k1,5998:31966991,12569614:22823304 -g1,5998:31966991,12569614 -) -(1,5999:7246811,13235792:24720180,404226,101187 -h1,5999:7246811,13235792:0,0,0 -k1,5999:7246811,13235792:0 -h1,5999:9775976,13235792:0,0,0 -k1,5999:31966992,13235792:22191016 -g1,5999:31966992,13235792 -) -(1,6000:7246811,13901970:24720180,404226,76021 -h1,6000:7246811,13901970:0,0,0 -g1,6000:9143685,13901970 -g1,6000:10092122,13901970 -g1,6000:10724414,13901970 -g1,6000:11988997,13901970 -h1,6000:12305143,13901970:0,0,0 -k1,6000:31966991,13901970:19661848 -g1,6000:31966991,13901970 -) -(1,6001:7246811,14568148:24720180,404226,101187 -h1,6001:7246811,14568148:0,0,0 -g1,6001:7562957,14568148 -g1,6001:7879103,14568148 -g1,6001:10408268,14568148 -g1,6001:11356706,14568148 -h1,6001:12621290,14568148:0,0,0 -k1,6001:31966990,14568148:19345700 -g1,6001:31966990,14568148 -) -(1,6002:7246811,15234326:24720180,404226,76021 -h1,6002:7246811,15234326:0,0,0 -h1,6002:7562957,15234326:0,0,0 -k1,6002:31966991,15234326:24404034 -g1,6002:31966991,15234326 -) -] -) -g1,6004:31966991,15310347 -g1,6004:7246811,15310347 -g1,6004:7246811,15310347 -g1,6004:31966991,15310347 -g1,6004:31966991,15310347 -) -h1,6004:7246811,15506955:0,0,0 -(1,6008:7246811,16872731:24720180,513147,126483 -h1,6007:7246811,16872731:983040,0,0 -k1,6007:10801627,16872731:238039 -k1,6007:12336624,16872731:238039 -k1,6007:13777903,16872731:238038 -k1,6007:16116371,16872731:238039 -k1,6007:17545855,16872731:238039 -k1,6007:19114275,16872731:238039 -k1,6007:19810410,16872731:238038 -k1,6007:22179680,16872731:238039 -k1,6007:23069147,16872731:238039 -k1,6007:24326271,16872731:238039 -k1,6007:27090723,16872731:238039 -k1,6007:27944799,16872731:238038 -k1,6007:28597642,16872731:238000 -k1,6007:29494973,16872731:238039 -k1,6008:31966991,16872731:0 -) -(1,6008:7246811,17714219:24720180,505283,134348 -g1,6007:11422109,17714219 -g1,6007:12272766,17714219 -g1,6007:14703496,17714219 -g1,6007:17744366,17714219 -g1,6007:19953584,17714219 -g1,6007:20508673,17714219 -g1,6007:22580921,17714219 -g1,6007:25966510,17714219 -g1,6007:27311964,17714219 -g1,6007:28530278,17714219 -g1,6007:29886217,17714219 -k1,6008:31966991,17714219:38672 -g1,6008:31966991,17714219 -) -v1,6010:7246811,18904685:0,393216,0 -(1,6015:7246811,19783199:24720180,1271730,196608 -g1,6015:7246811,19783199 -g1,6015:7246811,19783199 -g1,6015:7050203,19783199 -(1,6015:7050203,19783199:0,1271730,196608 -r1,6019:32163599,19783199:25113396,1468338,196608 -k1,6015:7050203,19783199:-25113396 -) -(1,6015:7050203,19783199:25113396,1271730,196608 -[1,6015:7246811,19783199:24720180,1075122,0 -(1,6012:7246811,19112303:24720180,404226,9436 -(1,6011:7246811,19112303:0,0,0 -g1,6011:7246811,19112303 -g1,6011:7246811,19112303 -g1,6011:6919131,19112303 -(1,6011:6919131,19112303:0,0,0 -) -g1,6011:7246811,19112303 -) -g1,6012:7879103,19112303 -g1,6012:8827541,19112303 -g1,6012:9459833,19112303 -g1,6012:10408271,19112303 -g1,6012:11040563,19112303 -g1,6012:11989001,19112303 -h1,6012:12937439,19112303:0,0,0 -k1,6012:31966991,19112303:19029552 -g1,6012:31966991,19112303 -) -(1,6013:7246811,19778481:24720180,284164,4718 -h1,6013:7246811,19778481:0,0,0 -h1,6013:7562957,19778481:0,0,0 -k1,6013:31966991,19778481:24404034 -g1,6013:31966991,19778481 -) -] -) -g1,6015:31966991,19783199 -g1,6015:7246811,19783199 -g1,6015:7246811,19783199 -g1,6015:31966991,19783199 -g1,6015:31966991,19783199 -) -h1,6015:7246811,19979807:0,0,0 -(1,6019:7246811,21345583:24720180,513147,126483 -h1,6018:7246811,21345583:983040,0,0 -k1,6018:10761981,21345583:198393 -k1,6018:12257331,21345583:198392 -k1,6018:12811584,21345583:198393 -k1,6018:15251307,21345583:198392 -(1,6018:15251307,21345583:0,452978,115847 -r1,6019:18071556,21345583:2820249,568825,115847 -k1,6018:15251307,21345583:-2820249 -) -(1,6018:15251307,21345583:2820249,452978,115847 -k1,6018:15251307,21345583:3277 -h1,6018:18068279,21345583:0,411205,112570 -) -k1,6018:18269949,21345583:198393 -k1,6018:19569346,21345583:198392 -k1,6018:21277689,21345583:198393 -k1,6018:23441506,21345583:198392 -k1,6018:25682656,21345583:198393 -(1,6018:25682656,21345583:0,452978,115847 -r1,6019:28151193,21345583:2468537,568825,115847 -k1,6018:25682656,21345583:-2468537 -) -(1,6018:25682656,21345583:2468537,452978,115847 -k1,6018:25682656,21345583:3277 -h1,6018:28147916,21345583:0,411205,112570 -) -k1,6018:28523255,21345583:198392 -k1,6018:30273541,21345583:198393 -k1,6019:31966991,21345583:0 -) -(1,6019:7246811,22187071:24720180,513147,126483 -g1,6018:9574649,22187071 -g1,6018:10239839,22187071 -k1,6019:31966991,22187071:18444454 -g1,6019:31966991,22187071 -) -] -) -] -r1,6019:32583029,22903378:26214,13589925,0 -) -] -) -) -g1,6019:32583029,22313554 -) -h1,6019:6630773,22929592:0,0,0 -v1,6022:6630773,24295368:0,393216,0 -(1,6023:6630773,28320386:25952256,4418234,616038 -g1,6023:6630773,28320386 -(1,6023:6630773,28320386:25952256,4418234,616038 -(1,6023:6630773,28936424:25952256,5034272,0 -[1,6023:6630773,28936424:25952256,5034272,0 -(1,6023:6630773,28910210:25952256,4981844,0 -r1,6023:6656987,28910210:26214,4981844,0 -[1,6023:6656987,28910210:25899828,4981844,0 -(1,6023:6656987,28320386:25899828,3802196,0 -[1,6023:7246811,28320386:24720180,3802196,0 -(1,6023:7246811,25680075:24720180,1161885,196608 -(1,6022:7246811,25680075:0,1161885,196608 -r1,6023:8794447,25680075:1547636,1358493,196608 -k1,6022:7246811,25680075:-1547636 -) -(1,6022:7246811,25680075:1547636,1161885,196608 -) -k1,6022:8985404,25680075:190957 -(1,6022:8985404,25680075:0,452978,115847 -r1,6023:10750517,25680075:1765113,568825,115847 -k1,6022:8985404,25680075:-1765113 -) -(1,6022:8985404,25680075:1765113,452978,115847 -k1,6022:8985404,25680075:3277 -h1,6022:10747240,25680075:0,411205,112570 -) -k1,6022:10941473,25680075:190956 -k1,6022:12877654,25680075:190957 -k1,6022:13754773,25680075:190957 -k1,6022:17035753,25680075:190957 -k1,6022:19082033,25680075:190956 -k1,6022:20405452,25680075:190957 -k1,6022:23685121,25680075:190957 -k1,6022:25574116,25680075:190957 -k1,6022:26784157,25680075:190956 -k1,6022:30007465,25680075:190957 -k1,6022:31966991,25680075:0 -) -(1,6023:7246811,26521563:24720180,505283,134348 -k1,6022:7979321,26521563:201013 -(1,6022:7979321,26521563:0,414482,115847 -r1,6023:9744434,26521563:1765113,530329,115847 -k1,6022:7979321,26521563:-1765113 -) -(1,6022:7979321,26521563:1765113,414482,115847 -k1,6022:7979321,26521563:3277 -h1,6022:9741157,26521563:0,411205,112570 -) -k1,6022:10119116,26521563:201012 -k1,6022:10947964,26521563:201013 -k1,6022:12892889,26521563:201012 -k1,6022:14791284,26521563:201013 -k1,6022:16276803,26521563:201013 -k1,6022:18769609,26521563:201012 -k1,6022:21784083,26521563:201013 -k1,6022:24702218,26521563:201012 -k1,6022:26757900,26521563:201013 -k1,6022:27768282,26521563:201012 -k1,6022:28739998,26521563:201013 -k1,6022:31966991,26521563:0 -) -(1,6023:7246811,27363051:24720180,505283,126483 -k1,6022:8599983,27363051:161727 -k1,6022:11794061,27363051:161727 -k1,6022:13965777,27363051:161727 -k1,6022:15146589,27363051:161727 -k1,6022:18722086,27363051:161727 -k1,6022:22243845,27363051:161728 -k1,6022:23273924,27363051:161727 -k1,6022:24539933,27363051:161727 -k1,6022:25801354,27363051:161727 -(1,6022:25801354,27363051:0,452978,115847 -r1,6023:28269891,27363051:2468537,568825,115847 -k1,6022:25801354,27363051:-2468537 -) -(1,6022:25801354,27363051:2468537,452978,115847 -k1,6022:25801354,27363051:3277 -h1,6022:28266614,27363051:0,411205,112570 -) -k1,6022:28431618,27363051:161727 -k1,6022:29209383,27363051:161727 -k1,6022:30390195,27363051:161727 -k1,6022:31966991,27363051:0 -) -(1,6023:7246811,28204539:24720180,513147,115847 -g1,6022:8105332,28204539 -g1,6022:9075264,28204539 -(1,6022:9075264,28204539:0,459977,115847 -r1,6023:9785242,28204539:709978,575824,115847 -k1,6022:9075264,28204539:-709978 -) -(1,6022:9075264,28204539:709978,459977,115847 -k1,6022:9075264,28204539:3277 -h1,6022:9781965,28204539:0,411205,112570 -) -g1,6022:9984471,28204539 -g1,6022:10866585,28204539 -(1,6022:10866585,28204539:0,452978,115847 -r1,6023:12279986,28204539:1413401,568825,115847 -k1,6022:10866585,28204539:-1413401 -) -(1,6022:10866585,28204539:1413401,452978,115847 -k1,6022:10866585,28204539:3277 -h1,6022:12276709,28204539:0,411205,112570 -) -g1,6022:12479215,28204539 -k1,6023:31966991,28204539:16127745 -g1,6023:31966991,28204539 -) -] -) -] -r1,6023:32583029,28910210:26214,4981844,0 -) -] -) -) -g1,6023:32583029,28320386 -) -h1,6023:6630773,28936424:0,0,0 -(1,6025:6630773,30564344:25952256,505283,126483 -(1,6025:6630773,30564344:2809528,485622,11795 -g1,6025:6630773,30564344 -g1,6025:9440301,30564344 -) -(1,6025:9440301,30564344:0,414482,115847 -r1,6025:11557126,30564344:2116825,530329,115847 -k1,6025:9440301,30564344:-2116825 -) -(1,6025:9440301,30564344:2116825,414482,115847 -k1,6025:9440301,30564344:3277 -h1,6025:11553849,30564344:0,411205,112570 -) -g1,6025:11761598,30564344 -k1,6025:32583028,30564344:19029020 -g1,6025:32583028,30564344 -) -(1,6027:6630773,31799048:25952256,513147,126483 -k1,6026:8088054,31799048:260594 -(1,6026:8088054,31799048:0,414482,115847 -r1,6026:10204879,31799048:2116825,530329,115847 -k1,6026:8088054,31799048:-2116825 -) -(1,6026:8088054,31799048:2116825,414482,115847 -k1,6026:8088054,31799048:3277 -h1,6026:10201602,31799048:0,411205,112570 -) -k1,6026:10465473,31799048:260594 -k1,6026:10465473,31799048:0 -k1,6026:13749897,31799048:260593 -k1,6026:14541988,31799048:260594 -k1,6026:16015653,31799048:260594 -k1,6026:19581228,31799048:260594 -k1,6026:21528719,31799048:260594 -k1,6026:22861482,31799048:260594 -k1,6026:24649719,31799048:260593 -k1,6026:27884337,31799048:260594 -k1,6026:28831093,31799048:260594 -k1,6026:32583029,31799048:0 -) -(1,6027:6630773,32640536:25952256,505283,126483 -k1,6026:7951010,32640536:187775 -k1,6026:10268050,32640536:187775 -k1,6026:12827573,32640536:187775 -k1,6026:13824719,32640536:187776 -k1,6026:14368354,32640536:187775 -k1,6026:15655823,32640536:187775 -k1,6026:16495026,32640536:187775 -(1,6026:16495026,32640536:0,452978,115847 -r1,6026:18963563,32640536:2468537,568825,115847 -k1,6026:16495026,32640536:-2468537 -) -(1,6026:16495026,32640536:2468537,452978,115847 -k1,6026:16495026,32640536:3277 -h1,6026:18960286,32640536:0,411205,112570 -) -k1,6026:19325008,32640536:187775 -k1,6026:21398254,32640536:187775 -k1,6026:22690311,32640536:187775 -k1,6026:23625853,32640536:187776 -k1,6026:26127704,32640536:187775 -k1,6026:29366180,32640536:187775 -k1,6026:31563944,32640536:187775 -k1,6026:32583029,32640536:0 -) -(1,6027:6630773,33482024:25952256,513147,126483 -k1,6026:10239895,33482024:195352 -k1,6026:13621607,33482024:195352 -k1,6026:15101464,33482024:195351 -k1,6026:17194739,33482024:195352 -k1,6026:18409176,33482024:195352 -k1,6026:20181324,33482024:195352 -k1,6026:21035968,33482024:195352 -k1,6026:22250405,33482024:195352 -k1,6026:24034349,33482024:195351 -k1,6026:25058731,33482024:195352 -k1,6026:27611413,33482024:195352 -k1,6026:31400104,33482024:195352 -k1,6026:32583029,33482024:0 -) -(1,6027:6630773,34323512:25952256,513147,115847 -k1,6026:7545016,34323512:254951 -k1,6026:10690760,34323512:254951 -k1,6026:13641207,34323512:254951 -(1,6026:13641207,34323512:0,452978,115847 -r1,6026:16109744,34323512:2468537,568825,115847 -k1,6026:13641207,34323512:-2468537 -) -(1,6026:13641207,34323512:2468537,452978,115847 -k1,6026:13641207,34323512:3277 -h1,6026:16106467,34323512:0,411205,112570 -) -k1,6026:16364695,34323512:254951 -k1,6026:18241662,34323512:254951 -k1,6026:19244380,34323512:254952 -k1,6026:21540777,34323512:254951 -k1,6026:22481890,34323512:254951 -k1,6026:26012330,34323512:254951 -k1,6026:28984404,34323512:254951 -k1,6026:29855393,34323512:254951 -k1,6026:30466204,34323512:254951 -(1,6026:30466204,34323512:0,414482,115847 -r1,6026:32583029,34323512:2116825,530329,115847 -k1,6026:30466204,34323512:-2116825 -) -(1,6026:30466204,34323512:2116825,414482,115847 -k1,6026:30466204,34323512:3277 -h1,6026:32579752,34323512:0,411205,112570 -) -k1,6026:32583029,34323512:0 -) -(1,6027:6630773,35165000:25952256,505283,126483 -g1,6026:8244924,35165000 -g1,6026:9576615,35165000 -g1,6026:10842115,35165000 -k1,6027:32583028,35165000:20164772 -g1,6027:32583028,35165000 -) -v1,6029:6630773,36355466:0,393216,0 -(1,6044:6630773,42684514:25952256,6722264,196608 -g1,6044:6630773,42684514 -g1,6044:6630773,42684514 -g1,6044:6434165,42684514 -(1,6044:6434165,42684514:0,6722264,196608 -r1,6044:32779637,42684514:26345472,6918872,196608 -k1,6044:6434165,42684514:-26345472 -) -(1,6044:6434165,42684514:26345472,6722264,196608 -[1,6044:6630773,42684514:25952256,6525656,0 -(1,6031:6630773,36547355:25952256,388497,4718 -(1,6030:6630773,36547355:0,0,0 -g1,6030:6630773,36547355 -g1,6030:6630773,36547355 -g1,6030:6303093,36547355 -(1,6030:6303093,36547355:0,0,0 -) -g1,6030:6630773,36547355 -) -g1,6031:7263065,36547355 -g1,6031:8211503,36547355 -h1,6031:8527649,36547355:0,0,0 -k1,6031:32583029,36547355:24055380 -g1,6031:32583029,36547355 -) -(1,6032:6630773,37213533:25952256,404226,101187 -h1,6032:6630773,37213533:0,0,0 -k1,6032:6630773,37213533:0 -h1,6032:8843793,37213533:0,0,0 -k1,6032:32583029,37213533:23739236 -g1,6032:32583029,37213533 -) -(1,6033:6630773,37879711:25952256,404226,101187 -h1,6033:6630773,37879711:0,0,0 -g1,6033:6946919,37879711 -g1,6033:7263065,37879711 -k1,6033:7263065,37879711:0 -h1,6033:9792230,37879711:0,0,0 -k1,6033:32583030,37879711:22790800 -g1,6033:32583030,37879711 -) -(1,6034:6630773,38545889:25952256,410518,76021 -h1,6034:6630773,38545889:0,0,0 -g1,6034:6946919,38545889 -g1,6034:7263065,38545889 -g1,6034:8211502,38545889 -g1,6034:9159939,38545889 -g1,6034:9792231,38545889 -g1,6034:11056814,38545889 -k1,6034:11056814,38545889:0 -h1,6034:13269833,38545889:0,0,0 -k1,6034:32583029,38545889:19313196 -g1,6034:32583029,38545889 -) -(1,6035:6630773,39212067:25952256,388497,4718 -h1,6035:6630773,39212067:0,0,0 -g1,6035:6946919,39212067 -g1,6035:7263065,39212067 -g1,6035:7895357,39212067 -g1,6035:8843795,39212067 -h1,6035:9792233,39212067:0,0,0 -k1,6035:32583029,39212067:22790796 -g1,6035:32583029,39212067 -) -(1,6036:6630773,39878245:25952256,404226,76021 -h1,6036:6630773,39878245:0,0,0 -h1,6036:6946919,39878245:0,0,0 -k1,6036:32583029,39878245:25636110 -g1,6036:32583029,39878245 -) -(1,6043:6630773,40609959:25952256,404226,76021 -(1,6038:6630773,40609959:0,0,0 -g1,6038:6630773,40609959 -g1,6038:6630773,40609959 -g1,6038:6303093,40609959 -(1,6038:6303093,40609959:0,0,0 -) -g1,6038:6630773,40609959 -) -g1,6043:7579210,40609959 -g1,6043:8843793,40609959 -h1,6043:9159939,40609959:0,0,0 -k1,6043:32583029,40609959:23423090 -g1,6043:32583029,40609959 -) -(1,6043:6630773,41276137:25952256,404226,76021 -h1,6043:6630773,41276137:0,0,0 -g1,6043:7579210,41276137 -g1,6043:8843793,41276137 -h1,6043:9159939,41276137:0,0,0 -k1,6043:32583029,41276137:23423090 -g1,6043:32583029,41276137 -) -(1,6043:6630773,41942315:25952256,404226,76021 -h1,6043:6630773,41942315:0,0,0 -g1,6043:7579210,41942315 -g1,6043:8843793,41942315 -h1,6043:9476084,41942315:0,0,0 -k1,6043:32583028,41942315:23106944 -g1,6043:32583028,41942315 -) -(1,6043:6630773,42608493:25952256,404226,76021 -h1,6043:6630773,42608493:0,0,0 -g1,6043:7579210,42608493 -g1,6043:8843793,42608493 -h1,6043:9792230,42608493:0,0,0 -k1,6043:32583030,42608493:22790800 -g1,6043:32583030,42608493 -) -] -) -g1,6044:32583029,42684514 -g1,6044:6630773,42684514 -g1,6044:6630773,42684514 -g1,6044:32583029,42684514 -g1,6044:32583029,42684514 -) -h1,6044:6630773,42881122:0,0,0 -v1,6048:6630773,44771186:0,393216,0 -] -(1,6049:32583029,45706769:0,0,0 -g1,6049:32583029,45706769 -) -) -] -(1,6049:6630773,47279633:25952256,0,0 -h1,6049:6630773,47279633:25952256,0,0 -) -] -h1,6049:4262630,4025873:0,0,0 -] -!21394 +[1,6055:6630773,45706769:25952256,40108032,0 +v1,5994:6630773,6254097:0,393216,0 +(1,5995:6630773,7698641:25952256,1837760,616038 +g1,5995:6630773,7698641 +(1,5995:6630773,7698641:25952256,1837760,616038 +(1,5995:6630773,8314679:25952256,2453798,0 +[1,5995:6630773,8314679:25952256,2453798,0 +(1,5995:6630773,8288465:25952256,2401370,0 +r1,5995:6656987,8288465:26214,2401370,0 +[1,5995:6656987,8288465:25899828,2401370,0 +(1,5995:6656987,7698641:25899828,1221722,0 +[1,5995:7246811,7698641:24720180,1221722,0 +(1,5995:7246811,7564293:24720180,1087374,134348 +g1,5994:8655743,7564293 +g1,5994:10514344,7564293 +g1,5994:12094417,7564293 +g1,5994:13578152,7564293 +g1,5994:14947854,7564293 +g1,5994:18811856,7564293 +g1,5994:20308043,7564293 +g1,5994:21526357,7564293 +g1,5994:23131989,7564293 +g1,5994:25011561,7564293 +g1,5994:25877946,7564293 +(1,5994:25877946,7564293:0,414482,115847 +r1,5995:26236212,7564293:358266,530329,115847 +k1,5994:25877946,7564293:-358266 +) +(1,5994:25877946,7564293:358266,414482,115847 +k1,5994:25877946,7564293:3277 +h1,5994:26232935,7564293:0,411205,112570 +) +g1,5994:26435441,7564293 +g1,5994:27166167,7564293 +g1,5994:29224652,7564293 +g1,5994:30866328,7564293 +k1,5995:31966991,7564293:130075 +g1,5995:31966991,7564293 +) +] +) +] +r1,5995:32583029,8288465:26214,2401370,0 +) +] +) +) +g1,5995:32583029,7698641 +) +h1,5995:6630773,8314679:0,0,0 +v1,5999:6630773,9680455:0,393216,0 +(1,6025:6630773,22313554:25952256,13026315,616038 +g1,6025:6630773,22313554 +(1,6025:6630773,22313554:25952256,13026315,616038 +(1,6025:6630773,22929592:25952256,13642353,0 +[1,6025:6630773,22929592:25952256,13642353,0 +(1,6025:6630773,22903378:25952256,13589925,0 +r1,6025:6656987,22903378:26214,13589925,0 +[1,6025:6656987,22903378:25899828,13589925,0 +(1,6025:6656987,22313554:25899828,12410277,0 +[1,6025:7246811,22313554:24720180,12410277,0 +(1,6000:7246811,11187259:24720180,1283982,196608 +(1,5999:7246811,11187259:0,1283982,196608 +r1,6025:9812056,11187259:2565245,1480590,196608 +k1,5999:7246811,11187259:-2565245 +) +(1,5999:7246811,11187259:2565245,1283982,196608 +) +g1,5999:10011285,11187259 +g1,5999:11407201,11187259 +g1,5999:15123092,11187259 +g1,5999:17177645,11187259 +g1,5999:18481156,11187259 +g1,5999:19428151,11187259 +g1,5999:22804565,11187259 +k1,6000:31966991,11187259:8337328 +g1,6000:31966991,11187259 +) +v1,6002:7246811,12377725:0,393216,0 +(1,6010:7246811,15310347:24720180,3325838,196608 +g1,6010:7246811,15310347 +g1,6010:7246811,15310347 +g1,6010:7050203,15310347 +(1,6010:7050203,15310347:0,3325838,196608 +r1,6025:32163599,15310347:25113396,3522446,196608 +k1,6010:7050203,15310347:-25113396 +) +(1,6010:7050203,15310347:25113396,3325838,196608 +[1,6010:7246811,15310347:24720180,3129230,0 +(1,6004:7246811,12569614:24720180,388497,4718 +(1,6003:7246811,12569614:0,0,0 +g1,6003:7246811,12569614 +g1,6003:7246811,12569614 +g1,6003:6919131,12569614 +(1,6003:6919131,12569614:0,0,0 +) +g1,6003:7246811,12569614 +) +g1,6004:7879103,12569614 +g1,6004:8827541,12569614 +h1,6004:9143687,12569614:0,0,0 +k1,6004:31966991,12569614:22823304 +g1,6004:31966991,12569614 +) +(1,6005:7246811,13235792:24720180,404226,101187 +h1,6005:7246811,13235792:0,0,0 +k1,6005:7246811,13235792:0 +h1,6005:9775976,13235792:0,0,0 +k1,6005:31966992,13235792:22191016 +g1,6005:31966992,13235792 +) +(1,6006:7246811,13901970:24720180,404226,76021 +h1,6006:7246811,13901970:0,0,0 +g1,6006:9143685,13901970 +g1,6006:10092122,13901970 +g1,6006:10724414,13901970 +g1,6006:11988997,13901970 +h1,6006:12305143,13901970:0,0,0 +k1,6006:31966991,13901970:19661848 +g1,6006:31966991,13901970 +) +(1,6007:7246811,14568148:24720180,404226,101187 +h1,6007:7246811,14568148:0,0,0 +g1,6007:7562957,14568148 +g1,6007:7879103,14568148 +g1,6007:10408268,14568148 +g1,6007:11356706,14568148 +h1,6007:12621290,14568148:0,0,0 +k1,6007:31966990,14568148:19345700 +g1,6007:31966990,14568148 +) +(1,6008:7246811,15234326:24720180,404226,76021 +h1,6008:7246811,15234326:0,0,0 +h1,6008:7562957,15234326:0,0,0 +k1,6008:31966991,15234326:24404034 +g1,6008:31966991,15234326 +) +] +) +g1,6010:31966991,15310347 +g1,6010:7246811,15310347 +g1,6010:7246811,15310347 +g1,6010:31966991,15310347 +g1,6010:31966991,15310347 +) +h1,6010:7246811,15506955:0,0,0 +(1,6014:7246811,16872731:24720180,513147,126483 +h1,6013:7246811,16872731:983040,0,0 +k1,6013:10801627,16872731:238039 +k1,6013:12336624,16872731:238039 +k1,6013:13777903,16872731:238038 +k1,6013:16116371,16872731:238039 +k1,6013:17545855,16872731:238039 +k1,6013:19114275,16872731:238039 +k1,6013:19810410,16872731:238038 +k1,6013:22179680,16872731:238039 +k1,6013:23069147,16872731:238039 +k1,6013:24326271,16872731:238039 +k1,6013:27090723,16872731:238039 +k1,6013:27944799,16872731:238038 +k1,6013:28597642,16872731:238000 +k1,6013:29494973,16872731:238039 +k1,6014:31966991,16872731:0 +) +(1,6014:7246811,17714219:24720180,505283,134348 +g1,6013:11422109,17714219 +g1,6013:12272766,17714219 +g1,6013:14703496,17714219 +g1,6013:17744366,17714219 +g1,6013:19953584,17714219 +g1,6013:20508673,17714219 +g1,6013:22580921,17714219 +g1,6013:25966510,17714219 +g1,6013:27311964,17714219 +g1,6013:28530278,17714219 +g1,6013:29886217,17714219 +k1,6014:31966991,17714219:38672 +g1,6014:31966991,17714219 +) +v1,6016:7246811,18904685:0,393216,0 +(1,6021:7246811,19783199:24720180,1271730,196608 +g1,6021:7246811,19783199 +g1,6021:7246811,19783199 +g1,6021:7050203,19783199 +(1,6021:7050203,19783199:0,1271730,196608 +r1,6025:32163599,19783199:25113396,1468338,196608 +k1,6021:7050203,19783199:-25113396 +) +(1,6021:7050203,19783199:25113396,1271730,196608 +[1,6021:7246811,19783199:24720180,1075122,0 +(1,6018:7246811,19112303:24720180,404226,9436 +(1,6017:7246811,19112303:0,0,0 +g1,6017:7246811,19112303 +g1,6017:7246811,19112303 +g1,6017:6919131,19112303 +(1,6017:6919131,19112303:0,0,0 +) +g1,6017:7246811,19112303 +) +g1,6018:7879103,19112303 +g1,6018:8827541,19112303 +g1,6018:9459833,19112303 +g1,6018:10408271,19112303 +g1,6018:11040563,19112303 +g1,6018:11989001,19112303 +h1,6018:12937439,19112303:0,0,0 +k1,6018:31966991,19112303:19029552 +g1,6018:31966991,19112303 +) +(1,6019:7246811,19778481:24720180,284164,4718 +h1,6019:7246811,19778481:0,0,0 +h1,6019:7562957,19778481:0,0,0 +k1,6019:31966991,19778481:24404034 +g1,6019:31966991,19778481 +) +] +) +g1,6021:31966991,19783199 +g1,6021:7246811,19783199 +g1,6021:7246811,19783199 +g1,6021:31966991,19783199 +g1,6021:31966991,19783199 +) +h1,6021:7246811,19979807:0,0,0 +(1,6025:7246811,21345583:24720180,513147,126483 +h1,6024:7246811,21345583:983040,0,0 +k1,6024:10735766,21345583:172178 +k1,6024:12204902,21345583:172178 +k1,6024:12732940,21345583:172178 +k1,6024:15146449,21345583:172178 +(1,6024:15146449,21345583:0,452978,115847 +r1,6025:17966698,21345583:2820249,568825,115847 +k1,6024:15146449,21345583:-2820249 +) +(1,6024:15146449,21345583:2820249,452978,115847 +k1,6024:15146449,21345583:3277 +h1,6024:17963421,21345583:0,411205,112570 +) +k1,6024:18138876,21345583:172178 +k1,6024:19412060,21345583:172179 +k1,6024:21094188,21345583:172178 +k1,6024:23231791,21345583:172178 +k1,6024:25446726,21345583:172178 +(1,6024:25446726,21345583:0,452978,115847 +r1,6025:27915263,21345583:2468537,568825,115847 +k1,6024:25446726,21345583:-2468537 +) +(1,6024:25446726,21345583:2468537,452978,115847 +k1,6024:25446726,21345583:3277 +h1,6024:27911986,21345583:0,411205,112570 +) +k1,6024:28261111,21345583:172178 +k1,6024:29985182,21345583:172178 +k1,6025:31966991,21345583:0 +) +(1,6025:7246811,22187071:24720180,513147,126483 +g1,6024:9286291,22187071 +g1,6024:9951481,22187071 +k1,6025:31966991,22187071:18732812 +g1,6025:31966991,22187071 +) +] +) +] +r1,6025:32583029,22903378:26214,13589925,0 +) +] +) +) +g1,6025:32583029,22313554 +) +h1,6025:6630773,22929592:0,0,0 +v1,6028:6630773,24295368:0,393216,0 +(1,6029:6630773,28320386:25952256,4418234,616038 +g1,6029:6630773,28320386 +(1,6029:6630773,28320386:25952256,4418234,616038 +(1,6029:6630773,28936424:25952256,5034272,0 +[1,6029:6630773,28936424:25952256,5034272,0 +(1,6029:6630773,28910210:25952256,4981844,0 +r1,6029:6656987,28910210:26214,4981844,0 +[1,6029:6656987,28910210:25899828,4981844,0 +(1,6029:6656987,28320386:25899828,3802196,0 +[1,6029:7246811,28320386:24720180,3802196,0 +(1,6029:7246811,25680075:24720180,1161885,196608 +(1,6028:7246811,25680075:0,1161885,196608 +r1,6029:8794447,25680075:1547636,1358493,196608 +k1,6028:7246811,25680075:-1547636 +) +(1,6028:7246811,25680075:1547636,1161885,196608 +) +k1,6028:8985404,25680075:190957 +(1,6028:8985404,25680075:0,452978,115847 +r1,6029:10750517,25680075:1765113,568825,115847 +k1,6028:8985404,25680075:-1765113 +) +(1,6028:8985404,25680075:1765113,452978,115847 +k1,6028:8985404,25680075:3277 +h1,6028:10747240,25680075:0,411205,112570 +) +k1,6028:10941473,25680075:190956 +k1,6028:12877654,25680075:190957 +k1,6028:13754773,25680075:190957 +k1,6028:17035753,25680075:190957 +k1,6028:19082033,25680075:190956 +k1,6028:20405452,25680075:190957 +k1,6028:23685121,25680075:190957 +k1,6028:25574116,25680075:190957 +k1,6028:26784157,25680075:190956 +k1,6028:30007465,25680075:190957 +k1,6028:31966991,25680075:0 +) +(1,6029:7246811,26521563:24720180,505283,134348 +k1,6028:7979321,26521563:201013 +(1,6028:7979321,26521563:0,414482,115847 +r1,6029:9744434,26521563:1765113,530329,115847 +k1,6028:7979321,26521563:-1765113 +) +(1,6028:7979321,26521563:1765113,414482,115847 +k1,6028:7979321,26521563:3277 +h1,6028:9741157,26521563:0,411205,112570 +) +k1,6028:10119116,26521563:201012 +k1,6028:10947964,26521563:201013 +k1,6028:12892889,26521563:201012 +k1,6028:14791284,26521563:201013 +k1,6028:16276803,26521563:201013 +k1,6028:18769609,26521563:201012 +k1,6028:21784083,26521563:201013 +k1,6028:24702218,26521563:201012 +k1,6028:26757900,26521563:201013 +k1,6028:27768282,26521563:201012 +k1,6028:28739998,26521563:201013 +k1,6028:31966991,26521563:0 +) +(1,6029:7246811,27363051:24720180,505283,126483 +k1,6028:8599983,27363051:161727 +k1,6028:11794061,27363051:161727 +k1,6028:13965777,27363051:161727 +k1,6028:15146589,27363051:161727 +k1,6028:18722086,27363051:161727 +k1,6028:22243845,27363051:161728 +k1,6028:23273924,27363051:161727 +k1,6028:24539933,27363051:161727 +k1,6028:25801354,27363051:161727 +(1,6028:25801354,27363051:0,452978,115847 +r1,6029:28269891,27363051:2468537,568825,115847 +k1,6028:25801354,27363051:-2468537 +) +(1,6028:25801354,27363051:2468537,452978,115847 +k1,6028:25801354,27363051:3277 +h1,6028:28266614,27363051:0,411205,112570 +) +k1,6028:28431618,27363051:161727 +k1,6028:29209383,27363051:161727 +k1,6028:30390195,27363051:161727 +k1,6028:31966991,27363051:0 +) +(1,6029:7246811,28204539:24720180,513147,115847 +g1,6028:8105332,28204539 +g1,6028:9075264,28204539 +(1,6028:9075264,28204539:0,459977,115847 +r1,6029:9785242,28204539:709978,575824,115847 +k1,6028:9075264,28204539:-709978 +) +(1,6028:9075264,28204539:709978,459977,115847 +k1,6028:9075264,28204539:3277 +h1,6028:9781965,28204539:0,411205,112570 +) +g1,6028:9984471,28204539 +g1,6028:10866585,28204539 +(1,6028:10866585,28204539:0,452978,115847 +r1,6029:12279986,28204539:1413401,568825,115847 +k1,6028:10866585,28204539:-1413401 +) +(1,6028:10866585,28204539:1413401,452978,115847 +k1,6028:10866585,28204539:3277 +h1,6028:12276709,28204539:0,411205,112570 +) +g1,6028:12479215,28204539 +k1,6029:31966991,28204539:16127745 +g1,6029:31966991,28204539 +) +] +) +] +r1,6029:32583029,28910210:26214,4981844,0 +) +] +) +) +g1,6029:32583029,28320386 +) +h1,6029:6630773,28936424:0,0,0 +(1,6031:6630773,30564344:25952256,505283,126483 +(1,6031:6630773,30564344:2809528,485622,11795 +g1,6031:6630773,30564344 +g1,6031:9440301,30564344 +) +(1,6031:9440301,30564344:0,414482,115847 +r1,6031:11557126,30564344:2116825,530329,115847 +k1,6031:9440301,30564344:-2116825 +) +(1,6031:9440301,30564344:2116825,414482,115847 +k1,6031:9440301,30564344:3277 +h1,6031:11553849,30564344:0,411205,112570 +) +g1,6031:11761598,30564344 +k1,6031:32583028,30564344:19029020 +g1,6031:32583028,30564344 +) +(1,6033:6630773,31799048:25952256,513147,126483 +k1,6032:8088054,31799048:260594 +(1,6032:8088054,31799048:0,414482,115847 +r1,6032:10204879,31799048:2116825,530329,115847 +k1,6032:8088054,31799048:-2116825 +) +(1,6032:8088054,31799048:2116825,414482,115847 +k1,6032:8088054,31799048:3277 +h1,6032:10201602,31799048:0,411205,112570 +) +k1,6032:10465473,31799048:260594 +k1,6032:10465473,31799048:0 +k1,6032:13749897,31799048:260593 +k1,6032:14541988,31799048:260594 +k1,6032:16015653,31799048:260594 +k1,6032:19581228,31799048:260594 +k1,6032:21528719,31799048:260594 +k1,6032:22861482,31799048:260594 +k1,6032:24649719,31799048:260593 +k1,6032:27884337,31799048:260594 +k1,6032:28831093,31799048:260594 +k1,6032:32583029,31799048:0 +) +(1,6033:6630773,32640536:25952256,505283,126483 +k1,6032:7951010,32640536:187775 +k1,6032:10268050,32640536:187775 +k1,6032:12827573,32640536:187775 +k1,6032:13824719,32640536:187776 +k1,6032:14368354,32640536:187775 +k1,6032:15655823,32640536:187775 +k1,6032:16495026,32640536:187775 +(1,6032:16495026,32640536:0,452978,115847 +r1,6032:18963563,32640536:2468537,568825,115847 +k1,6032:16495026,32640536:-2468537 +) +(1,6032:16495026,32640536:2468537,452978,115847 +k1,6032:16495026,32640536:3277 +h1,6032:18960286,32640536:0,411205,112570 +) +k1,6032:19325008,32640536:187775 +k1,6032:21398254,32640536:187775 +k1,6032:22690311,32640536:187775 +k1,6032:23625853,32640536:187776 +k1,6032:26127704,32640536:187775 +k1,6032:29366180,32640536:187775 +k1,6032:31563944,32640536:187775 +k1,6032:32583029,32640536:0 +) +(1,6033:6630773,33482024:25952256,513147,126483 +k1,6032:10239895,33482024:195352 +k1,6032:13621607,33482024:195352 +k1,6032:15101464,33482024:195351 +k1,6032:17194739,33482024:195352 +k1,6032:18409176,33482024:195352 +k1,6032:20181324,33482024:195352 +k1,6032:21035968,33482024:195352 +k1,6032:22250405,33482024:195352 +k1,6032:24034349,33482024:195351 +k1,6032:25058731,33482024:195352 +k1,6032:27611413,33482024:195352 +k1,6032:31400104,33482024:195352 +k1,6032:32583029,33482024:0 +) +(1,6033:6630773,34323512:25952256,513147,115847 +k1,6032:7545016,34323512:254951 +k1,6032:10690760,34323512:254951 +k1,6032:13641207,34323512:254951 +(1,6032:13641207,34323512:0,452978,115847 +r1,6032:16109744,34323512:2468537,568825,115847 +k1,6032:13641207,34323512:-2468537 +) +(1,6032:13641207,34323512:2468537,452978,115847 +k1,6032:13641207,34323512:3277 +h1,6032:16106467,34323512:0,411205,112570 +) +k1,6032:16364695,34323512:254951 +k1,6032:18241662,34323512:254951 +k1,6032:19244380,34323512:254952 +k1,6032:21540777,34323512:254951 +k1,6032:22481890,34323512:254951 +k1,6032:26012330,34323512:254951 +k1,6032:28984404,34323512:254951 +k1,6032:29855393,34323512:254951 +k1,6032:30466204,34323512:254951 +(1,6032:30466204,34323512:0,414482,115847 +r1,6032:32583029,34323512:2116825,530329,115847 +k1,6032:30466204,34323512:-2116825 +) +(1,6032:30466204,34323512:2116825,414482,115847 +k1,6032:30466204,34323512:3277 +h1,6032:32579752,34323512:0,411205,112570 +) +k1,6032:32583029,34323512:0 +) +(1,6033:6630773,35165000:25952256,505283,126483 +g1,6032:8244924,35165000 +g1,6032:9576615,35165000 +g1,6032:10842115,35165000 +k1,6033:32583028,35165000:20164772 +g1,6033:32583028,35165000 +) +v1,6035:6630773,36355466:0,393216,0 +(1,6050:6630773,42684514:25952256,6722264,196608 +g1,6050:6630773,42684514 +g1,6050:6630773,42684514 +g1,6050:6434165,42684514 +(1,6050:6434165,42684514:0,6722264,196608 +r1,6050:32779637,42684514:26345472,6918872,196608 +k1,6050:6434165,42684514:-26345472 +) +(1,6050:6434165,42684514:26345472,6722264,196608 +[1,6050:6630773,42684514:25952256,6525656,0 +(1,6037:6630773,36547355:25952256,388497,4718 +(1,6036:6630773,36547355:0,0,0 +g1,6036:6630773,36547355 +g1,6036:6630773,36547355 +g1,6036:6303093,36547355 +(1,6036:6303093,36547355:0,0,0 +) +g1,6036:6630773,36547355 +) +g1,6037:7263065,36547355 +g1,6037:8211503,36547355 +h1,6037:8527649,36547355:0,0,0 +k1,6037:32583029,36547355:24055380 +g1,6037:32583029,36547355 +) +(1,6038:6630773,37213533:25952256,404226,101187 +h1,6038:6630773,37213533:0,0,0 +k1,6038:6630773,37213533:0 +h1,6038:8843793,37213533:0,0,0 +k1,6038:32583029,37213533:23739236 +g1,6038:32583029,37213533 +) +(1,6039:6630773,37879711:25952256,404226,101187 +h1,6039:6630773,37879711:0,0,0 +g1,6039:6946919,37879711 +g1,6039:7263065,37879711 +k1,6039:7263065,37879711:0 +h1,6039:9792230,37879711:0,0,0 +k1,6039:32583030,37879711:22790800 +g1,6039:32583030,37879711 +) +(1,6040:6630773,38545889:25952256,410518,76021 +h1,6040:6630773,38545889:0,0,0 +g1,6040:6946919,38545889 +g1,6040:7263065,38545889 +g1,6040:8211502,38545889 +g1,6040:9159939,38545889 +g1,6040:9792231,38545889 +g1,6040:11056814,38545889 +k1,6040:11056814,38545889:0 +h1,6040:13269833,38545889:0,0,0 +k1,6040:32583029,38545889:19313196 +g1,6040:32583029,38545889 +) +(1,6041:6630773,39212067:25952256,388497,4718 +h1,6041:6630773,39212067:0,0,0 +g1,6041:6946919,39212067 +g1,6041:7263065,39212067 +g1,6041:7895357,39212067 +g1,6041:8843795,39212067 +h1,6041:9792233,39212067:0,0,0 +k1,6041:32583029,39212067:22790796 +g1,6041:32583029,39212067 +) +(1,6042:6630773,39878245:25952256,404226,76021 +h1,6042:6630773,39878245:0,0,0 +h1,6042:6946919,39878245:0,0,0 +k1,6042:32583029,39878245:25636110 +g1,6042:32583029,39878245 +) +(1,6049:6630773,40609959:25952256,404226,76021 +(1,6044:6630773,40609959:0,0,0 +g1,6044:6630773,40609959 +g1,6044:6630773,40609959 +g1,6044:6303093,40609959 +(1,6044:6303093,40609959:0,0,0 +) +g1,6044:6630773,40609959 +) +g1,6049:7579210,40609959 +g1,6049:8843793,40609959 +h1,6049:9159939,40609959:0,0,0 +k1,6049:32583029,40609959:23423090 +g1,6049:32583029,40609959 +) +(1,6049:6630773,41276137:25952256,404226,76021 +h1,6049:6630773,41276137:0,0,0 +g1,6049:7579210,41276137 +g1,6049:8843793,41276137 +h1,6049:9159939,41276137:0,0,0 +k1,6049:32583029,41276137:23423090 +g1,6049:32583029,41276137 +) +(1,6049:6630773,41942315:25952256,404226,76021 +h1,6049:6630773,41942315:0,0,0 +g1,6049:7579210,41942315 +g1,6049:8843793,41942315 +h1,6049:9476084,41942315:0,0,0 +k1,6049:32583028,41942315:23106944 +g1,6049:32583028,41942315 +) +(1,6049:6630773,42608493:25952256,404226,76021 +h1,6049:6630773,42608493:0,0,0 +g1,6049:7579210,42608493 +g1,6049:8843793,42608493 +h1,6049:9792230,42608493:0,0,0 +k1,6049:32583030,42608493:22790800 +g1,6049:32583030,42608493 +) +] +) +g1,6050:32583029,42684514 +g1,6050:6630773,42684514 +g1,6050:6630773,42684514 +g1,6050:32583029,42684514 +g1,6050:32583029,42684514 +) +h1,6050:6630773,42881122:0,0,0 +v1,6054:6630773,44771186:0,393216,0 +] +(1,6055:32583029,45706769:0,0,0 +g1,6055:32583029,45706769 +) +) +] +(1,6055:6630773,47279633:25952256,0,0 +h1,6055:6630773,47279633:25952256,0,0 +) +] +h1,6055:4262630,4025873:0,0,0 +] +!21393 }114 -Input:829:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:830:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:831:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:832:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:833:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:834:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:835:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:836:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:837:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:838:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:839:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:840:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:841:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:842:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1202 +Input:825:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:826:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:827:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:828:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:829:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:830:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:831:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:832:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:833:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:834:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:835:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:836:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:837:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:838:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1286 {115 -[1,6140:4262630,47279633:28320399,43253760,0 -(1,6140:4262630,4025873:0,0,0 -[1,6140:-473657,4025873:25952256,0,0 -(1,6140:-473657,-710414:25952256,0,0 -h1,6140:-473657,-710414:0,0,0 -(1,6140:-473657,-710414:0,0,0 -(1,6140:-473657,-710414:0,0,0 -g1,6140:-473657,-710414 -(1,6140:-473657,-710414:65781,0,65781 -g1,6140:-407876,-710414 -[1,6140:-407876,-644633:0,0,0 +[1,6146:4262630,47279633:28320399,43253760,0 +(1,6146:4262630,4025873:0,0,0 +[1,6146:-473657,4025873:25952256,0,0 +(1,6146:-473657,-710414:25952256,0,0 +h1,6146:-473657,-710414:0,0,0 +(1,6146:-473657,-710414:0,0,0 +(1,6146:-473657,-710414:0,0,0 +g1,6146:-473657,-710414 +(1,6146:-473657,-710414:65781,0,65781 +g1,6146:-407876,-710414 +[1,6146:-407876,-644633:0,0,0 ] ) -k1,6140:-473657,-710414:-65781 +k1,6146:-473657,-710414:-65781 ) ) -k1,6140:25478599,-710414:25952256 -g1,6140:25478599,-710414 +k1,6146:25478599,-710414:25952256 +g1,6146:25478599,-710414 ) ] ) -[1,6140:6630773,47279633:25952256,43253760,0 -[1,6140:6630773,4812305:25952256,786432,0 -(1,6140:6630773,4812305:25952256,505283,134348 -(1,6140:6630773,4812305:25952256,505283,134348 -g1,6140:3078558,4812305 -[1,6140:3078558,4812305:0,0,0 -(1,6140:3078558,2439708:0,1703936,0 -k1,6140:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6140:2537886,2439708:1179648,16384,0 +[1,6146:6630773,47279633:25952256,43253760,0 +[1,6146:6630773,4812305:25952256,786432,0 +(1,6146:6630773,4812305:25952256,505283,134348 +(1,6146:6630773,4812305:25952256,505283,134348 +g1,6146:3078558,4812305 +[1,6146:3078558,4812305:0,0,0 +(1,6146:3078558,2439708:0,1703936,0 +k1,6146:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6146:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6140:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6146:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6140:3078558,4812305:0,0,0 -(1,6140:3078558,2439708:0,1703936,0 -g1,6140:29030814,2439708 -g1,6140:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6140:36151628,1915420:16384,1179648,0 +[1,6146:3078558,4812305:0,0,0 +(1,6146:3078558,2439708:0,1703936,0 +g1,6146:29030814,2439708 +g1,6146:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6146:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6140:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6146:37855564,2439708:1179648,16384,0 ) ) -k1,6140:3078556,2439708:-34777008 +k1,6146:3078556,2439708:-34777008 ) ] -[1,6140:3078558,4812305:0,0,0 -(1,6140:3078558,49800853:0,16384,2228224 -k1,6140:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6140:2537886,49800853:1179648,16384,0 +[1,6146:3078558,4812305:0,0,0 +(1,6146:3078558,49800853:0,16384,2228224 +k1,6146:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6146:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6140:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6146:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6140:3078558,4812305:0,0,0 -(1,6140:3078558,49800853:0,16384,2228224 -g1,6140:29030814,49800853 -g1,6140:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6140:36151628,51504789:16384,1179648,0 +[1,6146:3078558,4812305:0,0,0 +(1,6146:3078558,49800853:0,16384,2228224 +g1,6146:29030814,49800853 +g1,6146:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6146:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6140:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6146:37855564,49800853:1179648,16384,0 ) ) -k1,6140:3078556,49800853:-34777008 +k1,6146:3078556,49800853:-34777008 ) ] -g1,6140:6630773,4812305 -k1,6140:18752969,4812305:10926819 -g1,6140:20139710,4812305 -g1,6140:20788516,4812305 -g1,6140:24102671,4812305 -g1,6140:28605649,4812305 -g1,6140:30015328,4812305 +g1,6146:6630773,4812305 +k1,6146:18771974,4812305:10945824 +g1,6146:20158715,4812305 +g1,6146:20807521,4812305 +g1,6146:24121676,4812305 +g1,6146:28605649,4812305 +g1,6146:30015328,4812305 ) ) ] -[1,6140:6630773,45706769:25952256,40108032,0 -(1,6140:6630773,45706769:25952256,40108032,0 -(1,6140:6630773,45706769:0,0,0 -g1,6140:6630773,45706769 +[1,6146:6630773,45706769:25952256,40108032,0 +(1,6146:6630773,45706769:25952256,40108032,0 +(1,6146:6630773,45706769:0,0,0 +g1,6146:6630773,45706769 ) -[1,6140:6630773,45706769:25952256,40108032,0 -v1,6049:6630773,6254097:0,393216,0 -(1,6049:6630773,8540129:25952256,2679248,616038 -g1,6049:6630773,8540129 -(1,6049:6630773,8540129:25952256,2679248,616038 -(1,6049:6630773,9156167:25952256,3295286,0 -[1,6049:6630773,9156167:25952256,3295286,0 -(1,6049:6630773,9129953:25952256,3242858,0 -r1,6049:6656987,9129953:26214,3242858,0 -[1,6049:6656987,9129953:25899828,3242858,0 -(1,6049:6656987,8540129:25899828,2063210,0 -[1,6049:7246811,8540129:24720180,2063210,0 -(1,6049:7246811,7564293:24720180,1087374,126483 -k1,6048:8667496,7564293:210982 -k1,6048:10839972,7564293:210983 -k1,6048:13361098,7564293:210982 -k1,6048:14869039,7564293:210983 -k1,6048:16099106,7564293:210982 -k1,6048:18971505,7564293:210982 -k1,6048:21037812,7564293:210983 -k1,6048:23589740,7564293:210982 -k1,6048:24819807,7564293:210982 -k1,6048:27041435,7564293:210983 -k1,6048:27710514,7564293:210982 -k1,6048:29588078,7564293:210983 -k1,6048:30947906,7564293:210982 -k1,6048:31966991,7564293:0 -) -(1,6049:7246811,8405781:24720180,513147,134348 -g1,6048:10430550,8405781 -g1,6048:11289071,8405781 -g1,6048:13675892,8405781 -(1,6048:13675892,8405781:0,452978,115847 -r1,6049:16144429,8405781:2468537,568825,115847 -k1,6048:13675892,8405781:-2468537 -) -(1,6048:13675892,8405781:2468537,452978,115847 -k1,6048:13675892,8405781:3277 -h1,6048:16141152,8405781:0,411205,112570 -) -g1,6048:16343658,8405781 -g1,6048:20233219,8405781 -g1,6048:21118610,8405781 -g1,6048:24407862,8405781 -g1,6048:25416461,8405781 -g1,6048:27113843,8405781 -h1,6048:28309220,8405781:0,0,0 -k1,6049:31966991,8405781:3484101 -g1,6049:31966991,8405781 -) -] -) -] -r1,6049:32583029,9129953:26214,3242858,0 -) -] -) -) -g1,6049:32583029,8540129 -) -h1,6049:6630773,9156167:0,0,0 -v1,6052:6630773,10492164:0,393216,0 -(1,6053:6630773,14517182:25952256,4418234,616038 -g1,6053:6630773,14517182 -(1,6053:6630773,14517182:25952256,4418234,616038 -(1,6053:6630773,15133220:25952256,5034272,0 -[1,6053:6630773,15133220:25952256,5034272,0 -(1,6053:6630773,15107006:25952256,4981844,0 -r1,6053:6656987,15107006:26214,4981844,0 -[1,6053:6656987,15107006:25899828,4981844,0 -(1,6053:6656987,14517182:25899828,3802196,0 -[1,6053:7246811,14517182:24720180,3802196,0 -(1,6053:7246811,11876871:24720180,1161885,196608 -(1,6052:7246811,11876871:0,1161885,196608 -r1,6053:8794447,11876871:1547636,1358493,196608 -k1,6052:7246811,11876871:-1547636 -) -(1,6052:7246811,11876871:1547636,1161885,196608 -) -k1,6052:9013512,11876871:219065 -k1,6052:12195461,11876871:219066 -(1,6052:12195461,11876871:0,414482,115847 -r1,6053:14312286,11876871:2116825,530329,115847 -k1,6052:12195461,11876871:-2116825 -) -(1,6052:12195461,11876871:2116825,414482,115847 -k1,6052:12195461,11876871:3277 -h1,6052:14309009,11876871:0,411205,112570 -) -k1,6052:14531351,11876871:219065 -k1,6052:16165339,11876871:219066 -k1,6052:19738537,11876871:219065 -k1,6052:20949163,11876871:219066 -k1,6052:23038626,11876871:219065 -k1,6052:23909120,11876871:219066 -k1,6052:25540486,11876871:219065 -k1,6052:26225513,11876871:219066 -k1,6052:27824766,11876871:219065 -k1,6052:29519047,11876871:219066 -k1,6052:30093972,11876871:219065 -k1,6052:31966991,11876871:0 -) -(1,6053:7246811,12718359:24720180,513147,134348 -k1,6052:10484126,12718359:204964 -k1,6052:13522212,12718359:204965 -k1,6052:14343214,12718359:204964 -k1,6052:18300115,12718359:204965 -k1,6052:19164371,12718359:204964 -k1,6052:22260128,12718359:204964 -k1,6052:22923190,12718359:204965 -k1,6052:23659651,12718359:204964 -k1,6052:26314352,12718359:204965 -k1,6052:27280844,12718359:204964 -k1,6052:28504893,12718359:204964 -k1,6052:29124695,12718359:204959 -k1,6052:31966991,12718359:0 -) -(1,6053:7246811,13559847:24720180,513147,126483 -k1,6052:8425804,13559847:231342 -k1,6052:9676231,13559847:231342 -k1,6052:13321344,13559847:231343 -k1,6052:16739046,13559847:231342 -k1,6052:17586426,13559847:231342 -k1,6052:18836853,13559847:231342 -k1,6052:20644992,13559847:231343 -k1,6052:21535626,13559847:231342 -k1,6052:22122828,13559847:231342 -k1,6052:23769092,13559847:231342 -k1,6052:24651862,13559847:231342 -k1,6052:27254953,13559847:231343 -k1,6052:29136492,13559847:231342 -k1,6052:30810281,13559847:231342 -k1,6052:31966991,13559847:0 -) -(1,6053:7246811,14401335:24720180,513147,115847 -g1,6052:8545734,14401335 -g1,6052:9396391,14401335 -(1,6052:9396391,14401335:0,452978,115847 -r1,6053:11864928,14401335:2468537,568825,115847 -k1,6052:9396391,14401335:-2468537 -) -(1,6052:9396391,14401335:2468537,452978,115847 -k1,6052:9396391,14401335:3277 -h1,6052:11861651,14401335:0,411205,112570 -) -g1,6052:12237827,14401335 -g1,6052:13888678,14401335 -g1,6052:16097896,14401335 -g1,6052:16652985,14401335 -g1,6052:19614557,14401335 -(1,6052:19614557,14401335:0,459977,115847 -r1,6053:20324535,14401335:709978,575824,115847 -k1,6052:19614557,14401335:-709978 -) -(1,6052:19614557,14401335:709978,459977,115847 -k1,6052:19614557,14401335:3277 -h1,6052:20321258,14401335:0,411205,112570 -) -g1,6052:20523764,14401335 -g1,6052:21405878,14401335 -(1,6052:21405878,14401335:0,452978,115847 -r1,6053:22819279,14401335:1413401,568825,115847 -k1,6052:21405878,14401335:-1413401 -) -(1,6052:21405878,14401335:1413401,452978,115847 -k1,6052:21405878,14401335:3277 -h1,6052:22816002,14401335:0,411205,112570 -) -g1,6052:23018508,14401335 -k1,6053:31966991,14401335:5588452 -g1,6053:31966991,14401335 -) -] -) -] -r1,6053:32583029,15107006:26214,4981844,0 -) -] -) -) -g1,6053:32583029,14517182 -) -h1,6053:6630773,15133220:0,0,0 -(1,6055:6630773,17224480:25952256,555811,139132 -(1,6055:6630773,17224480:2450326,534184,12975 -g1,6055:6630773,17224480 -g1,6055:9081099,17224480 -) -g1,6055:12020913,17224480 -g1,6055:14217484,17224480 -g1,6055:15704693,17224480 -g1,6055:16796130,17224480 -g1,6055:18712272,17224480 -g1,6055:19642949,17224480 -k1,6055:32583029,17224480:12442662 -g1,6055:32583029,17224480 -) -(1,6058:6630773,18459184:25952256,513147,134348 -k1,6057:7321391,18459184:212861 -k1,6057:8704725,18459184:212861 -k1,6057:10392801,18459184:212861 -k1,6057:12892213,18459184:212861 -k1,6057:16177402,18459184:212861 -k1,6057:17006301,18459184:212861 -k1,6057:18921132,18459184:212861 -k1,6057:22480260,18459184:212860 -k1,6057:23151218,18459184:212861 -k1,6057:24496541,18459184:212861 -k1,6057:25873977,18459184:212861 -k1,6057:28378632,18459184:212861 -k1,6057:29242921,18459184:212861 -k1,6057:30626255,18459184:212861 -k1,6057:31490544,18459184:212861 -k1,6057:32583029,18459184:0 -) -(1,6058:6630773,19300672:25952256,513147,134348 -k1,6057:8529993,19300672:153996 -(1,6057:8737087,19300672:0,459977,115847 -r1,6057:9798776,19300672:1061689,575824,115847 -k1,6057:8737087,19300672:-1061689 -) -(1,6057:8737087,19300672:1061689,459977,115847 -k1,6057:8737087,19300672:3277 -h1,6057:9795499,19300672:0,411205,112570 -) -k1,6057:10126442,19300672:153996 -(1,6057:10126442,19300672:0,452978,115847 -r1,6057:11891555,19300672:1765113,568825,115847 -k1,6057:10126442,19300672:-1765113 -) -(1,6057:10126442,19300672:1765113,452978,115847 -k1,6057:10126442,19300672:3277 -h1,6057:11888278,19300672:0,411205,112570 -) -k1,6057:12219221,19300672:153996 -(1,6057:12219221,19300672:0,414482,115847 -r1,6057:14336046,19300672:2116825,530329,115847 -k1,6057:12219221,19300672:-2116825 -) -(1,6057:12219221,19300672:2116825,414482,115847 -k1,6057:12219221,19300672:3277 -h1,6057:14332769,19300672:0,411205,112570 -) -k1,6057:14697137,19300672:153997 -k1,6057:15798784,19300672:153996 -k1,6057:17704557,19300672:153996 -k1,6057:18517845,19300672:153996 -k1,6057:19690926,19300672:153996 -k1,6057:21837216,19300672:153996 -k1,6057:22938863,19300672:153996 -k1,6057:24978330,19300672:153996 -k1,6057:25748365,19300672:153997 -k1,6057:26317159,19300672:153951 -k1,6057:27627865,19300672:153996 -k1,6057:29738111,19300672:153996 -k1,6057:32583029,19300672:0 -) -(1,6058:6630773,20142160:25952256,505283,134348 -k1,6057:7859376,20142160:136118 -k1,6057:12361503,20142160:136118 -k1,6057:13125457,20142160:136119 -k1,6057:13850088,20142160:136118 -k1,6057:15721599,20142160:136118 -k1,6057:20050055,20142160:136118 -k1,6057:23224422,20142160:136118 -k1,6057:25990501,20142160:136119 -k1,6057:27964904,20142160:136118 -k1,6057:30262399,20142160:136118 -k1,6057:32583029,20142160:0 -) -(1,6058:6630773,20983648:25952256,513147,126483 -k1,6057:7961104,20983648:138886 -k1,6057:9970388,20983648:138886 -k1,6057:10760701,20983648:138885 -k1,6057:14564360,20983648:138886 -k1,6057:15523101,20983648:138886 -k1,6057:17157519,20983648:138886 -k1,6057:18244055,20983648:138885 -k1,6057:20126854,20983648:138886 -k1,6057:21659691,20983648:138886 -k1,6057:25211692,20983648:138886 -k1,6057:25966615,20983648:138885 -k1,6057:26901108,20983648:138886 -k1,6057:28633830,20983648:138886 -k1,6057:32583029,20983648:0 -) -(1,6058:6630773,21825136:25952256,513147,134348 -k1,6057:7477804,21825136:160869 -k1,6057:8053477,21825136:160830 -k1,6057:8745843,21825136:160869 -k1,6057:9677414,21825136:160868 -k1,6057:13428345,21825136:160869 -k1,6057:16605180,21825136:160868 -k1,6057:20103142,21825136:160869 -k1,6057:23540155,21825136:160868 -k1,6057:25471151,21825136:160869 -k1,6057:26283447,21825136:160868 -k1,6057:27192082,21825136:160869 -k1,6057:29136185,21825136:160868 -k1,6057:31140582,21825136:160869 -k1,6057:32583029,21825136:0 -) -(1,6058:6630773,22666624:25952256,513147,126483 -k1,6057:7899096,22666624:249238 -k1,6057:9240820,22666624:249239 -k1,6057:10149350,22666624:249238 -k1,6057:12729705,22666624:249239 -k1,6057:15869736,22666624:249238 -k1,6057:16746810,22666624:249239 -k1,6057:18984410,22666624:249238 -k1,6057:21897688,22666624:249239 -k1,6057:22814082,22666624:249238 -k1,6057:23651834,22666624:249239 -k1,6057:29278301,22666624:249238 -k1,6057:30059037,22666624:249239 -k1,6057:31821501,22666624:249238 -k1,6057:32583029,22666624:0 -) -(1,6058:6630773,23508112:25952256,513147,126483 -k1,6057:9074261,23508112:177908 -k1,6057:10443615,23508112:177909 -k1,6057:12366747,23508112:177908 -k1,6057:13881589,23508112:177908 -k1,6057:14807263,23508112:177908 -k1,6057:17928394,23508112:177909 -k1,6057:18915672,23508112:177908 -k1,6057:20112665,23508112:177908 -k1,6057:21259850,23508112:177908 -k1,6057:23323230,23508112:177909 -k1,6057:25925315,23508112:177908 -k1,6057:27425084,23508112:177908 -k1,6057:28262284,23508112:177908 -k1,6057:29459278,23508112:177909 -k1,6057:31923737,23508112:177908 -k1,6057:32583029,23508112:0 -) -(1,6058:6630773,24349600:25952256,505283,126483 -k1,6057:9622419,24349600:207021 -k1,6057:14448417,24349600:207020 -k1,6057:17590140,24349600:207021 -k1,6057:19263857,24349600:207021 -k1,6057:23992861,24349600:207020 -k1,6057:25945106,24349600:207021 -k1,6057:27143687,24349600:207021 -k1,6057:29637914,24349600:207020 -k1,6057:31931601,24349600:207021 -k1,6057:32583029,24349600:0 -) -(1,6058:6630773,25191088:25952256,513147,126483 -g1,6057:9242382,25191088 -g1,6057:10884058,25191088 -g1,6057:14202145,25191088 -g1,6057:16318302,25191088 -g1,6057:19854624,25191088 -g1,6057:23079650,25191088 -g1,6057:24470324,25191088 -k1,6058:32583029,25191088:4862119 -g1,6058:32583029,25191088 -) -(1,6060:6630773,26032576:25952256,513147,134348 -h1,6059:6630773,26032576:983040,0,0 -k1,6059:10889303,26032576:176292 -k1,6059:12932059,26032576:176291 -k1,6059:14968918,26032576:176292 -k1,6059:15796638,26032576:176292 -k1,6059:16720696,26032576:176292 -k1,6059:19730764,26032576:176291 -k1,6059:22196229,26032576:176292 -k1,6059:23391606,26032576:176292 -k1,6059:25340647,26032576:176292 -k1,6059:28192773,26032576:176291 -k1,6059:28985103,26032576:176292 -k1,6059:31419110,26032576:176292 -k1,6060:32583029,26032576:0 -) -(1,6060:6630773,26874064:25952256,513147,134348 -k1,6059:7671608,26874064:148235 -k1,6059:9489700,26874064:148235 -k1,6059:12572637,26874064:148235 -k1,6059:14456266,26874064:148236 -k1,6059:18796839,26874064:148235 -k1,6059:20136519,26874064:148235 -k1,6059:22682061,26874064:148235 -k1,6059:23245089,26874064:148185 -k1,6059:26419121,26874064:148235 -k1,6059:29189451,26874064:148235 -k1,6059:30810280,26874064:148235 -k1,6059:32583029,26874064:0 -) -(1,6060:6630773,27715552:25952256,513147,134348 -k1,6059:8292615,27715552:171553 -k1,6059:9332520,27715552:171553 -k1,6059:10495633,27715552:171553 -k1,6059:13159520,27715552:171553 -k1,6059:14725024,27715552:171553 -k1,6059:16709303,27715552:171553 -k1,6059:18077542,27715552:171552 -k1,6059:20960975,27715552:171553 -k1,6059:22370503,27715552:171553 -k1,6059:23201348,27715552:171553 -k1,6059:26719825,27715552:171553 -k1,6059:27910463,27715552:171553 -k1,6059:31157621,27715552:171553 -k1,6059:32583029,27715552:0 -) -(1,6060:6630773,28557040:25952256,513147,126483 -k1,6059:7522245,28557040:232180 -k1,6059:8525128,28557040:232180 -k1,6059:9172118,28557040:232147 -k1,6059:12844283,28557040:232180 -k1,6059:13607960,28557040:232180 -k1,6059:14491568,28557040:232180 -k1,6059:15816233,28557040:232180 -k1,6059:18743909,28557040:232180 -(1,6059:18743909,28557040:0,452978,115847 -r1,6059:23322717,28557040:4578808,568825,115847 -k1,6059:18743909,28557040:-4578808 -) -(1,6059:18743909,28557040:4578808,452978,115847 -k1,6059:18743909,28557040:3277 -h1,6059:23319440,28557040:0,411205,112570 -) -k1,6059:23728567,28557040:232180 -k1,6059:26895449,28557040:232180 -k1,6059:28146714,28557040:232180 -k1,6059:31157621,28557040:232180 -k1,6059:32583029,28557040:0 -) -(1,6060:6630773,29398528:25952256,505283,134348 -k1,6059:7376409,29398528:214139 -k1,6059:8206586,29398528:214139 -k1,6059:10992357,29398528:214138 -k1,6059:12397941,29398528:214139 -k1,6059:16837186,29398528:214139 -k1,6059:18070410,29398528:214139 -k1,6059:21724533,29398528:214138 -k1,6059:23560688,29398528:214139 -k1,6059:25127490,29398528:214139 -k1,6059:26730337,29398528:214139 -k1,6059:29305082,29398528:214138 -k1,6059:30170649,29398528:214139 -k1,6059:32583029,29398528:0 -) -(1,6060:6630773,30240016:25952256,513147,134348 -k1,6059:7757754,30240016:179330 -k1,6059:8956169,30240016:179330 -k1,6059:11914227,30240016:179331 -k1,6059:13518965,30240016:179330 -k1,6059:14349723,30240016:179330 -k1,6059:16004268,30240016:179330 -k1,6059:18160819,30240016:179330 -k1,6059:21761784,30240016:179330 -k1,6059:22991002,30240016:179331 -k1,6059:25750484,30240016:179330 -k1,6059:31635378,30240016:179330 -k1,6059:32583029,30240016:0 -) -(1,6060:6630773,31081504:25952256,513147,134348 -g1,6059:8411386,31081504 -g1,6059:9558266,31081504 -g1,6059:14315524,31081504 -g1,6059:16010940,31081504 -g1,6059:17604120,31081504 -g1,6059:19700616,31081504 -g1,6059:21325253,31081504 -k1,6060:32583029,31081504:7836141 -g1,6060:32583029,31081504 -) -v1,6062:6630773,32242190:0,393216,0 -(1,6074:6630773,36521848:25952256,4672874,196608 -g1,6074:6630773,36521848 -g1,6074:6630773,36521848 -g1,6074:6434165,36521848 -(1,6074:6434165,36521848:0,4672874,196608 -r1,6074:32779637,36521848:26345472,4869482,196608 -k1,6074:6434165,36521848:-26345472 -) -(1,6074:6434165,36521848:26345472,4672874,196608 -[1,6074:6630773,36521848:25952256,4476266,0 -(1,6064:6630773,32449808:25952256,404226,101187 -(1,6063:6630773,32449808:0,0,0 -g1,6063:6630773,32449808 -g1,6063:6630773,32449808 -g1,6063:6303093,32449808 -(1,6063:6303093,32449808:0,0,0 -) -g1,6063:6630773,32449808 -) -k1,6064:6630773,32449808:0 -g1,6064:11372958,32449808 -g1,6064:12321396,32449808 -k1,6064:12321396,32449808:0 -h1,6064:15166707,32449808:0,0,0 -k1,6064:32583029,32449808:17416322 -g1,6064:32583029,32449808 -) -(1,6065:6630773,33115986:25952256,410518,76021 -h1,6065:6630773,33115986:0,0,0 -g1,6065:6946919,33115986 -g1,6065:7263065,33115986 -g1,6065:7579211,33115986 -g1,6065:7895357,33115986 -g1,6065:8211503,33115986 -g1,6065:8527649,33115986 -g1,6065:8843795,33115986 -g1,6065:9159941,33115986 -g1,6065:9476087,33115986 -g1,6065:9792233,33115986 -g1,6065:10108379,33115986 -g1,6065:10424525,33115986 -g1,6065:11689108,33115986 -g1,6065:12637545,33115986 -g1,6065:13585982,33115986 -g1,6065:17063586,33115986 -h1,6065:17379732,33115986:0,0,0 -k1,6065:32583029,33115986:15203297 -g1,6065:32583029,33115986 -) -(1,6066:6630773,33782164:25952256,404226,76021 -h1,6066:6630773,33782164:0,0,0 -g1,6066:6946919,33782164 -g1,6066:7263065,33782164 -g1,6066:7579211,33782164 -g1,6066:7895357,33782164 -g1,6066:8211503,33782164 -g1,6066:8527649,33782164 -g1,6066:8843795,33782164 -g1,6066:9159941,33782164 -g1,6066:9476087,33782164 -g1,6066:9792233,33782164 -g1,6066:10108379,33782164 -g1,6066:10424525,33782164 -g1,6066:10740671,33782164 -g1,6066:11056817,33782164 -g1,6066:12637546,33782164 -g1,6066:13585984,33782164 -g1,6066:14218276,33782164 -g1,6066:14850568,33782164 -h1,6066:16115151,33782164:0,0,0 -k1,6066:32583029,33782164:16467878 -g1,6066:32583029,33782164 -) -(1,6067:6630773,34448342:25952256,404226,76021 -h1,6067:6630773,34448342:0,0,0 -g1,6067:6946919,34448342 -g1,6067:7263065,34448342 -g1,6067:7579211,34448342 -g1,6067:7895357,34448342 -g1,6067:8211503,34448342 -g1,6067:8527649,34448342 -g1,6067:8843795,34448342 -g1,6067:9159941,34448342 -g1,6067:9476087,34448342 -g1,6067:9792233,34448342 -g1,6067:10108379,34448342 -g1,6067:10424525,34448342 -g1,6067:10740671,34448342 -g1,6067:11056817,34448342 -h1,6067:11372963,34448342:0,0,0 -k1,6067:32583029,34448342:21210066 -g1,6067:32583029,34448342 -) -(1,6068:6630773,35114520:25952256,404226,76021 -h1,6068:6630773,35114520:0,0,0 -g1,6068:6946919,35114520 -g1,6068:7263065,35114520 -g1,6068:7579211,35114520 -g1,6068:7895357,35114520 -g1,6068:8211503,35114520 -g1,6068:8527649,35114520 -g1,6068:8843795,35114520 -g1,6068:9159941,35114520 -g1,6068:9476087,35114520 -g1,6068:9792233,35114520 -g1,6068:10108379,35114520 -g1,6068:10424525,35114520 -h1,6068:11056816,35114520:0,0,0 -k1,6068:32583028,35114520:21526212 -g1,6068:32583028,35114520 -) -(1,6073:6630773,35846234:25952256,404226,101187 -(1,6070:6630773,35846234:0,0,0 -g1,6070:6630773,35846234 -g1,6070:6630773,35846234 -g1,6070:6303093,35846234 -(1,6070:6303093,35846234:0,0,0 -) -g1,6070:6630773,35846234 -) -g1,6073:7579210,35846234 -g1,6073:7895356,35846234 -g1,6073:8211502,35846234 -g1,6073:8527648,35846234 -g1,6073:10108377,35846234 -g1,6073:10424523,35846234 -g1,6073:12637543,35846234 -h1,6073:14850563,35846234:0,0,0 -k1,6073:32583029,35846234:17732466 -g1,6073:32583029,35846234 -) -(1,6073:6630773,36512412:25952256,388497,9436 -h1,6073:6630773,36512412:0,0,0 -g1,6073:7579210,36512412 -g1,6073:7895356,36512412 -g1,6073:8211502,36512412 -g1,6073:8527648,36512412 -g1,6073:10108377,36512412 -g1,6073:10424523,36512412 -g1,6073:10740669,36512412 -g1,6073:11056815,36512412 -g1,6073:12637544,36512412 -g1,6073:12953690,36512412 -g1,6073:13269836,36512412 -g1,6073:13585982,36512412 -h1,6073:14850565,36512412:0,0,0 -k1,6073:32583029,36512412:17732464 -g1,6073:32583029,36512412 -) -] -) -g1,6074:32583029,36521848 -g1,6074:6630773,36521848 -g1,6074:6630773,36521848 -g1,6074:32583029,36521848 -g1,6074:32583029,36521848 -) -h1,6074:6630773,36718456:0,0,0 -v1,6078:6630773,38548962:0,393216,0 -(1,6140:6630773,45116945:25952256,6961199,589824 -g1,6140:6630773,45116945 -(1,6140:6630773,45116945:25952256,6961199,589824 -(1,6140:6630773,45706769:25952256,7551023,0 -[1,6140:6630773,45706769:25952256,7551023,0 -(1,6140:6630773,45706769:25952256,7524809,0 -r1,6140:6656987,45706769:26214,7524809,0 -[1,6140:6656987,45706769:25899828,7524809,0 -(1,6140:6656987,45116945:25899828,6345161,0 -[1,6140:7246811,45116945:24720180,6345161,0 -(1,6079:7246811,39933669:24720180,1161885,196608 -(1,6078:7246811,39933669:0,1161885,196608 -r1,6140:8794447,39933669:1547636,1358493,196608 -k1,6078:7246811,39933669:-1547636 -) -(1,6078:7246811,39933669:1547636,1161885,196608 -) -k1,6078:9072511,39933669:278064 -k1,6078:12474020,39933669:278063 -k1,6078:15338790,39933669:278064 -k1,6078:17010804,39933669:278063 -k1,6078:18859766,39933669:278064 -k1,6078:20527192,39933669:278063 -k1,6078:22243771,39933669:278064 -k1,6078:23204720,39933669:278064 -k1,6078:25234560,39933669:278063 -k1,6078:27714634,39933669:278064 -k1,6078:29382060,39933669:278063 -k1,6078:31098639,39933669:278064 -k1,6078:31966991,39933669:0 -) -(1,6079:7246811,40775157:24720180,513147,126483 -k1,6078:8584758,40775157:205485 -k1,6078:10320509,40775157:205485 -k1,6078:11177423,40775157:205486 -k1,6078:12735571,40775157:205485 -k1,6078:17016740,40775157:205485 -k1,6078:18489691,40775157:205485 -k1,6078:21372977,40775157:205485 -k1,6078:22396351,40775157:205485 -k1,6078:26794175,40775157:205486 -k1,6078:29286867,40775157:205485 -k1,6078:30778168,40775157:205485 -k1,6079:31966991,40775157:0 -) -(1,6079:7246811,41616645:24720180,505283,134348 -k1,6078:8539727,41616645:222713 -k1,6078:10258628,41616645:222714 -k1,6078:13068047,41616645:222713 -k1,6078:13748857,41616645:222713 -k1,6078:14503067,41616645:222713 -k1,6078:16309786,41616645:222714 -k1,6078:18033273,41616645:222713 -k1,6078:18907414,41616645:222713 -k1,6078:20222612,41616645:222713 -k1,6078:24637664,41616645:222714 -k1,6078:27898626,41616645:222713 -k1,6078:30924969,41616645:222713 -k1,6078:31966991,41616645:0 -) -(1,6079:7246811,42458133:24720180,513147,126483 -k1,6078:10811044,42458133:159638 -k1,6078:12255188,42458133:159638 -k1,6078:13406386,42458133:159638 -k1,6078:16871005,42458133:159638 -k1,6078:18717540,42458133:159638 -k1,6078:19291981,42458133:159598 -k1,6078:22119590,42458133:159638 -k1,6078:24676535,42458133:159638 -k1,6078:28035641,42458133:159638 -k1,6078:28665172,42458133:159638 -k1,6078:29356307,42458133:159638 -k1,6078:30932833,42458133:159638 -k1,6079:31966991,42458133:0 -) -(1,6079:7246811,43299621:24720180,513147,126483 -k1,6078:9821065,43299621:186122 -k1,6078:10658615,43299621:186122 -k1,6078:13575622,43299621:186122 -k1,6078:14828016,43299621:186123 -k1,6078:16389739,43299621:186122 -k1,6078:20768199,43299621:186122 -k1,6078:21613613,43299621:186122 -k1,6078:25075880,43299621:186122 -k1,6078:26334171,43299621:186122 -k1,6078:27806110,43299621:186123 -k1,6078:29814133,43299621:186122 -k1,6078:30947906,43299621:186122 -k1,6078:31966991,43299621:0 -) -(1,6079:7246811,44141109:24720180,513147,126483 -k1,6078:10885206,44141109:181371 -k1,6078:11725869,44141109:181371 -k1,6078:19448468,44141109:181371 -k1,6078:22655635,44141109:181370 -k1,6078:23784657,44141109:181371 -k1,6078:26363335,44141109:181371 -k1,6078:28415759,44141109:181371 -k1,6078:29793817,44141109:181371 -k1,6078:31966991,44141109:0 -) -(1,6079:7246811,44982597:24720180,513147,134348 -k1,6078:8987649,44982597:173217 -k1,6078:11684001,44982597:173216 -k1,6078:12876303,44982597:173217 -k1,6078:14545706,44982597:173216 -k1,6078:17710642,44982597:173217 -k1,6078:18499897,44982597:173217 -k1,6078:19876354,44982597:173216 -k1,6078:21209558,44982597:173217 -k1,6078:22374335,44982597:173217 -k1,6078:23613822,44982597:173216 -k1,6078:26719120,44982597:173217 -k1,6078:29422026,44982597:173216 -k1,6078:30975431,44982597:173217 -k1,6078:31966991,44982597:0 -) -] -) -] -r1,6140:32583029,45706769:26214,7524809,0 -) -] -) -) -g1,6140:32583029,45116945 -) -] -(1,6140:32583029,45706769:0,0,0 -g1,6140:32583029,45706769 -) -) -] -(1,6140:6630773,47279633:25952256,0,0 -h1,6140:6630773,47279633:25952256,0,0 -) -] -h1,6140:4262630,4025873:0,0,0 -] -!25635 +[1,6146:6630773,45706769:25952256,40108032,0 +v1,6055:6630773,6254097:0,393216,0 +(1,6055:6630773,8540129:25952256,2679248,616038 +g1,6055:6630773,8540129 +(1,6055:6630773,8540129:25952256,2679248,616038 +(1,6055:6630773,9156167:25952256,3295286,0 +[1,6055:6630773,9156167:25952256,3295286,0 +(1,6055:6630773,9129953:25952256,3242858,0 +r1,6055:6656987,9129953:26214,3242858,0 +[1,6055:6656987,9129953:25899828,3242858,0 +(1,6055:6656987,8540129:25899828,2063210,0 +[1,6055:7246811,8540129:24720180,2063210,0 +(1,6055:7246811,7564293:24720180,1087374,126483 +k1,6054:8667496,7564293:210982 +k1,6054:10839972,7564293:210983 +k1,6054:13361098,7564293:210982 +k1,6054:14869039,7564293:210983 +k1,6054:16099106,7564293:210982 +k1,6054:18971505,7564293:210982 +k1,6054:21037812,7564293:210983 +k1,6054:23589740,7564293:210982 +k1,6054:24819807,7564293:210982 +k1,6054:27041435,7564293:210983 +k1,6054:27710514,7564293:210982 +k1,6054:29588078,7564293:210983 +k1,6054:30947906,7564293:210982 +k1,6054:31966991,7564293:0 +) +(1,6055:7246811,8405781:24720180,513147,134348 +g1,6054:10430550,8405781 +g1,6054:11289071,8405781 +g1,6054:13675892,8405781 +(1,6054:13675892,8405781:0,452978,115847 +r1,6055:16144429,8405781:2468537,568825,115847 +k1,6054:13675892,8405781:-2468537 +) +(1,6054:13675892,8405781:2468537,452978,115847 +k1,6054:13675892,8405781:3277 +h1,6054:16141152,8405781:0,411205,112570 +) +g1,6054:16343658,8405781 +g1,6054:20233219,8405781 +g1,6054:21118610,8405781 +g1,6054:24407862,8405781 +g1,6054:25416461,8405781 +g1,6054:27113843,8405781 +h1,6054:28309220,8405781:0,0,0 +k1,6055:31966991,8405781:3484101 +g1,6055:31966991,8405781 +) +] +) +] +r1,6055:32583029,9129953:26214,3242858,0 +) +] +) +) +g1,6055:32583029,8540129 +) +h1,6055:6630773,9156167:0,0,0 +v1,6058:6630773,10492164:0,393216,0 +(1,6059:6630773,14517182:25952256,4418234,616038 +g1,6059:6630773,14517182 +(1,6059:6630773,14517182:25952256,4418234,616038 +(1,6059:6630773,15133220:25952256,5034272,0 +[1,6059:6630773,15133220:25952256,5034272,0 +(1,6059:6630773,15107006:25952256,4981844,0 +r1,6059:6656987,15107006:26214,4981844,0 +[1,6059:6656987,15107006:25899828,4981844,0 +(1,6059:6656987,14517182:25899828,3802196,0 +[1,6059:7246811,14517182:24720180,3802196,0 +(1,6059:7246811,11876871:24720180,1161885,196608 +(1,6058:7246811,11876871:0,1161885,196608 +r1,6059:8794447,11876871:1547636,1358493,196608 +k1,6058:7246811,11876871:-1547636 +) +(1,6058:7246811,11876871:1547636,1161885,196608 +) +k1,6058:9013512,11876871:219065 +k1,6058:12195461,11876871:219066 +(1,6058:12195461,11876871:0,414482,115847 +r1,6059:14312286,11876871:2116825,530329,115847 +k1,6058:12195461,11876871:-2116825 +) +(1,6058:12195461,11876871:2116825,414482,115847 +k1,6058:12195461,11876871:3277 +h1,6058:14309009,11876871:0,411205,112570 +) +k1,6058:14531351,11876871:219065 +k1,6058:16165339,11876871:219066 +k1,6058:19738537,11876871:219065 +k1,6058:20949163,11876871:219066 +k1,6058:23038626,11876871:219065 +k1,6058:23909120,11876871:219066 +k1,6058:25540486,11876871:219065 +k1,6058:26225513,11876871:219066 +k1,6058:27824766,11876871:219065 +k1,6058:29519047,11876871:219066 +k1,6058:30093972,11876871:219065 +k1,6058:31966991,11876871:0 +) +(1,6059:7246811,12718359:24720180,513147,134348 +k1,6058:10484126,12718359:204964 +k1,6058:13522212,12718359:204965 +k1,6058:14343214,12718359:204964 +k1,6058:18300115,12718359:204965 +k1,6058:19164371,12718359:204964 +k1,6058:22260128,12718359:204964 +k1,6058:22923190,12718359:204965 +k1,6058:23659651,12718359:204964 +k1,6058:26314352,12718359:204965 +k1,6058:27280844,12718359:204964 +k1,6058:28504893,12718359:204964 +k1,6058:29124695,12718359:204959 +k1,6058:31966991,12718359:0 +) +(1,6059:7246811,13559847:24720180,513147,126483 +k1,6058:8425804,13559847:231342 +k1,6058:9676231,13559847:231342 +k1,6058:13321344,13559847:231343 +k1,6058:16739046,13559847:231342 +k1,6058:17586426,13559847:231342 +k1,6058:18836853,13559847:231342 +k1,6058:20644992,13559847:231343 +k1,6058:21535626,13559847:231342 +k1,6058:22122828,13559847:231342 +k1,6058:23769092,13559847:231342 +k1,6058:24651862,13559847:231342 +k1,6058:27254953,13559847:231343 +k1,6058:29136492,13559847:231342 +k1,6058:30810281,13559847:231342 +k1,6058:31966991,13559847:0 +) +(1,6059:7246811,14401335:24720180,513147,115847 +g1,6058:8545734,14401335 +g1,6058:9396391,14401335 +(1,6058:9396391,14401335:0,452978,115847 +r1,6059:11864928,14401335:2468537,568825,115847 +k1,6058:9396391,14401335:-2468537 +) +(1,6058:9396391,14401335:2468537,452978,115847 +k1,6058:9396391,14401335:3277 +h1,6058:11861651,14401335:0,411205,112570 +) +g1,6058:12237827,14401335 +g1,6058:13888678,14401335 +g1,6058:16097896,14401335 +g1,6058:16652985,14401335 +g1,6058:19614557,14401335 +(1,6058:19614557,14401335:0,459977,115847 +r1,6059:20324535,14401335:709978,575824,115847 +k1,6058:19614557,14401335:-709978 +) +(1,6058:19614557,14401335:709978,459977,115847 +k1,6058:19614557,14401335:3277 +h1,6058:20321258,14401335:0,411205,112570 +) +g1,6058:20523764,14401335 +g1,6058:21405878,14401335 +(1,6058:21405878,14401335:0,452978,115847 +r1,6059:22819279,14401335:1413401,568825,115847 +k1,6058:21405878,14401335:-1413401 +) +(1,6058:21405878,14401335:1413401,452978,115847 +k1,6058:21405878,14401335:3277 +h1,6058:22816002,14401335:0,411205,112570 +) +g1,6058:23018508,14401335 +k1,6059:31966991,14401335:5588452 +g1,6059:31966991,14401335 +) +] +) +] +r1,6059:32583029,15107006:26214,4981844,0 +) +] +) +) +g1,6059:32583029,14517182 +) +h1,6059:6630773,15133220:0,0,0 +(1,6061:6630773,17224480:25952256,555811,139132 +(1,6061:6630773,17224480:2450326,534184,12975 +g1,6061:6630773,17224480 +g1,6061:9081099,17224480 +) +g1,6061:12020913,17224480 +g1,6061:14217484,17224480 +g1,6061:15704693,17224480 +g1,6061:16796130,17224480 +g1,6061:18712272,17224480 +g1,6061:19642949,17224480 +k1,6061:32583029,17224480:12442662 +g1,6061:32583029,17224480 +) +(1,6064:6630773,18459184:25952256,513147,134348 +k1,6063:7321391,18459184:212861 +k1,6063:8704725,18459184:212861 +k1,6063:10392801,18459184:212861 +k1,6063:12892213,18459184:212861 +k1,6063:16177402,18459184:212861 +k1,6063:17006301,18459184:212861 +k1,6063:18921132,18459184:212861 +k1,6063:22480260,18459184:212860 +k1,6063:23151218,18459184:212861 +k1,6063:24496541,18459184:212861 +k1,6063:25873977,18459184:212861 +k1,6063:28378632,18459184:212861 +k1,6063:29242921,18459184:212861 +k1,6063:30626255,18459184:212861 +k1,6063:31490544,18459184:212861 +k1,6063:32583029,18459184:0 +) +(1,6064:6630773,19300672:25952256,513147,134348 +k1,6063:8529993,19300672:153996 +(1,6063:8737087,19300672:0,459977,115847 +r1,6063:9798776,19300672:1061689,575824,115847 +k1,6063:8737087,19300672:-1061689 +) +(1,6063:8737087,19300672:1061689,459977,115847 +k1,6063:8737087,19300672:3277 +h1,6063:9795499,19300672:0,411205,112570 +) +k1,6063:10126442,19300672:153996 +(1,6063:10126442,19300672:0,452978,115847 +r1,6063:11891555,19300672:1765113,568825,115847 +k1,6063:10126442,19300672:-1765113 +) +(1,6063:10126442,19300672:1765113,452978,115847 +k1,6063:10126442,19300672:3277 +h1,6063:11888278,19300672:0,411205,112570 +) +k1,6063:12219221,19300672:153996 +(1,6063:12219221,19300672:0,414482,115847 +r1,6063:14336046,19300672:2116825,530329,115847 +k1,6063:12219221,19300672:-2116825 +) +(1,6063:12219221,19300672:2116825,414482,115847 +k1,6063:12219221,19300672:3277 +h1,6063:14332769,19300672:0,411205,112570 +) +k1,6063:14697137,19300672:153997 +k1,6063:15798784,19300672:153996 +k1,6063:17704557,19300672:153996 +k1,6063:18517845,19300672:153996 +k1,6063:19690926,19300672:153996 +k1,6063:21837216,19300672:153996 +k1,6063:22938863,19300672:153996 +k1,6063:24978330,19300672:153996 +k1,6063:25748365,19300672:153997 +k1,6063:26317159,19300672:153951 +k1,6063:27627865,19300672:153996 +k1,6063:29738111,19300672:153996 +k1,6063:32583029,19300672:0 +) +(1,6064:6630773,20142160:25952256,505283,134348 +k1,6063:7859376,20142160:136118 +k1,6063:12361503,20142160:136118 +k1,6063:13125457,20142160:136119 +k1,6063:13850088,20142160:136118 +k1,6063:15721599,20142160:136118 +k1,6063:20050055,20142160:136118 +k1,6063:23224422,20142160:136118 +k1,6063:25990501,20142160:136119 +k1,6063:27964904,20142160:136118 +k1,6063:30262399,20142160:136118 +k1,6063:32583029,20142160:0 +) +(1,6064:6630773,20983648:25952256,513147,126483 +k1,6063:7961104,20983648:138886 +k1,6063:9970388,20983648:138886 +k1,6063:10760701,20983648:138885 +k1,6063:14564360,20983648:138886 +k1,6063:15523101,20983648:138886 +k1,6063:17157519,20983648:138886 +k1,6063:18244055,20983648:138885 +k1,6063:20126854,20983648:138886 +k1,6063:21659691,20983648:138886 +k1,6063:25211692,20983648:138886 +k1,6063:25966615,20983648:138885 +k1,6063:26901108,20983648:138886 +k1,6063:28633830,20983648:138886 +k1,6063:32583029,20983648:0 +) +(1,6064:6630773,21825136:25952256,513147,134348 +k1,6063:7477804,21825136:160869 +k1,6063:8053477,21825136:160830 +k1,6063:8745843,21825136:160869 +k1,6063:9677414,21825136:160868 +k1,6063:13428345,21825136:160869 +k1,6063:16605180,21825136:160868 +k1,6063:20103142,21825136:160869 +k1,6063:23540155,21825136:160868 +k1,6063:25471151,21825136:160869 +k1,6063:26283447,21825136:160868 +k1,6063:27192082,21825136:160869 +k1,6063:29136185,21825136:160868 +k1,6063:31140582,21825136:160869 +k1,6063:32583029,21825136:0 +) +(1,6064:6630773,22666624:25952256,513147,126483 +k1,6063:7899096,22666624:249238 +k1,6063:9240820,22666624:249239 +k1,6063:10149350,22666624:249238 +k1,6063:12729705,22666624:249239 +k1,6063:15869736,22666624:249238 +k1,6063:16746810,22666624:249239 +k1,6063:18984410,22666624:249238 +k1,6063:21897688,22666624:249239 +k1,6063:22814082,22666624:249238 +k1,6063:23651834,22666624:249239 +k1,6063:29278301,22666624:249238 +k1,6063:30059037,22666624:249239 +k1,6063:31821501,22666624:249238 +k1,6063:32583029,22666624:0 +) +(1,6064:6630773,23508112:25952256,513147,126483 +k1,6063:9074261,23508112:177908 +k1,6063:10443615,23508112:177909 +k1,6063:12366747,23508112:177908 +k1,6063:13881589,23508112:177908 +k1,6063:14807263,23508112:177908 +k1,6063:17928394,23508112:177909 +k1,6063:18915672,23508112:177908 +k1,6063:20112665,23508112:177908 +k1,6063:21259850,23508112:177908 +k1,6063:23323230,23508112:177909 +k1,6063:25925315,23508112:177908 +k1,6063:27425084,23508112:177908 +k1,6063:28262284,23508112:177908 +k1,6063:29459278,23508112:177909 +k1,6063:31923737,23508112:177908 +k1,6063:32583029,23508112:0 +) +(1,6064:6630773,24349600:25952256,505283,126483 +k1,6063:9622419,24349600:207021 +k1,6063:14448417,24349600:207020 +k1,6063:17590140,24349600:207021 +k1,6063:19263857,24349600:207021 +k1,6063:23992861,24349600:207020 +k1,6063:25945106,24349600:207021 +k1,6063:27143687,24349600:207021 +k1,6063:29637914,24349600:207020 +k1,6063:31931601,24349600:207021 +k1,6063:32583029,24349600:0 +) +(1,6064:6630773,25191088:25952256,513147,126483 +g1,6063:9242382,25191088 +g1,6063:10884058,25191088 +g1,6063:14202145,25191088 +g1,6063:16318302,25191088 +g1,6063:19854624,25191088 +g1,6063:23079650,25191088 +g1,6063:24470324,25191088 +k1,6064:32583029,25191088:4862119 +g1,6064:32583029,25191088 +) +(1,6066:6630773,26032576:25952256,513147,134348 +h1,6065:6630773,26032576:983040,0,0 +k1,6065:11011140,26032576:298129 +k1,6065:13175734,26032576:298129 +k1,6065:15334430,26032576:298129 +k1,6065:16283987,26032576:298129 +k1,6065:17329882,26032576:298129 +k1,6065:20461789,26032576:298130 +k1,6065:23049091,26032576:298129 +k1,6065:24366305,26032576:298129 +k1,6065:26437183,26032576:298129 +k1,6065:29411147,26032576:298129 +k1,6065:30325314,26032576:298129 +k1,6065:32583029,26032576:0 +) +(1,6066:6630773,26874064:25952256,513147,134348 +k1,6065:8719541,26874064:245240 +k1,6065:10634639,26874064:245241 +k1,6065:13814581,26874064:245240 +k1,6065:15795214,26874064:245240 +k1,6065:20232793,26874064:245241 +k1,6065:21669478,26874064:245240 +k1,6065:24312025,26874064:245240 +k1,6065:24972062,26874064:245194 +k1,6065:28243100,26874064:245241 +k1,6065:31110435,26874064:245240 +k1,6065:32583029,26874064:0 +) +(1,6066:6630773,27715552:25952256,513147,134348 +k1,6065:8548356,27715552:144834 +k1,6065:10183480,27715552:144835 +k1,6065:11196666,27715552:144834 +k1,6065:12333061,27715552:144835 +k1,6065:14970229,27715552:144834 +k1,6065:16509014,27715552:144834 +k1,6065:18466575,27715552:144835 +k1,6065:19808096,27715552:144834 +k1,6065:22664810,27715552:144834 +k1,6065:24047620,27715552:144835 +k1,6065:24851746,27715552:144834 +k1,6065:28343505,27715552:144835 +k1,6065:29507424,27715552:144834 +k1,6065:32583029,27715552:0 +) +(1,6066:6630773,28557040:25952256,513147,126483 +k1,6065:8288361,28557040:232180 +k1,6065:9179833,28557040:232180 +k1,6065:10182716,28557040:232180 +k1,6065:10829706,28557040:232147 +k1,6065:14501871,28557040:232180 +k1,6065:15265548,28557040:232180 +k1,6065:16149156,28557040:232180 +k1,6065:17473821,28557040:232180 +k1,6065:20401497,28557040:232180 +(1,6065:20401497,28557040:0,452978,115847 +r1,6065:24980305,28557040:4578808,568825,115847 +k1,6065:20401497,28557040:-4578808 +) +(1,6065:20401497,28557040:4578808,452978,115847 +k1,6065:20401497,28557040:3277 +h1,6065:24977028,28557040:0,411205,112570 +) +k1,6065:25386155,28557040:232180 +k1,6065:28553037,28557040:232180 +k1,6065:29804302,28557040:232180 +k1,6065:32583029,28557040:0 +) +(1,6066:6630773,29398528:25952256,505283,134348 +k1,6065:8231868,29398528:175687 +k1,6065:8939052,29398528:175687 +k1,6065:9730776,29398528:175686 +k1,6065:12478096,29398528:175687 +k1,6065:13845228,29398528:175687 +k1,6065:18246021,29398528:175687 +k1,6065:19440792,29398528:175686 +k1,6065:23056464,29398528:175687 +k1,6065:24854167,29398528:175687 +k1,6065:26382517,29398528:175687 +k1,6065:27946911,29398528:175686 +k1,6065:30483205,29398528:175687 +k1,6065:31310320,29398528:175687 +k1,6066:32583029,29398528:0 +) +(1,6066:6630773,30240016:25952256,513147,134348 +k1,6065:8125947,30240016:142511 +k1,6065:9216109,30240016:142511 +k1,6065:10377705,30240016:142511 +k1,6065:13298943,30240016:142511 +k1,6065:14866862,30240016:142511 +k1,6065:15660800,30240016:142510 +k1,6065:17278526,30240016:142511 +k1,6065:19398258,30240016:142511 +k1,6065:22962404,30240016:142511 +k1,6065:24154802,30240016:142511 +k1,6065:26877465,30240016:142511 +k1,6065:32583029,30240016:0 +) +(1,6066:6630773,31081504:25952256,513147,134348 +g1,6065:7777653,31081504 +g1,6065:9558266,31081504 +g1,6065:10705146,31081504 +g1,6065:15462404,31081504 +g1,6065:17157820,31081504 +g1,6065:18751000,31081504 +g1,6065:20847496,31081504 +g1,6065:22472133,31081504 +k1,6066:32583029,31081504:6689261 +g1,6066:32583029,31081504 +) +v1,6068:6630773,32242190:0,393216,0 +(1,6080:6630773,36521848:25952256,4672874,196608 +g1,6080:6630773,36521848 +g1,6080:6630773,36521848 +g1,6080:6434165,36521848 +(1,6080:6434165,36521848:0,4672874,196608 +r1,6080:32779637,36521848:26345472,4869482,196608 +k1,6080:6434165,36521848:-26345472 +) +(1,6080:6434165,36521848:26345472,4672874,196608 +[1,6080:6630773,36521848:25952256,4476266,0 +(1,6070:6630773,32449808:25952256,404226,101187 +(1,6069:6630773,32449808:0,0,0 +g1,6069:6630773,32449808 +g1,6069:6630773,32449808 +g1,6069:6303093,32449808 +(1,6069:6303093,32449808:0,0,0 +) +g1,6069:6630773,32449808 +) +k1,6070:6630773,32449808:0 +g1,6070:11372958,32449808 +g1,6070:12321396,32449808 +k1,6070:12321396,32449808:0 +h1,6070:15166707,32449808:0,0,0 +k1,6070:32583029,32449808:17416322 +g1,6070:32583029,32449808 +) +(1,6071:6630773,33115986:25952256,410518,76021 +h1,6071:6630773,33115986:0,0,0 +g1,6071:6946919,33115986 +g1,6071:7263065,33115986 +g1,6071:7579211,33115986 +g1,6071:7895357,33115986 +g1,6071:8211503,33115986 +g1,6071:8527649,33115986 +g1,6071:8843795,33115986 +g1,6071:9159941,33115986 +g1,6071:9476087,33115986 +g1,6071:9792233,33115986 +g1,6071:10108379,33115986 +g1,6071:10424525,33115986 +g1,6071:11689108,33115986 +g1,6071:12637545,33115986 +g1,6071:13585982,33115986 +g1,6071:17063586,33115986 +h1,6071:17379732,33115986:0,0,0 +k1,6071:32583029,33115986:15203297 +g1,6071:32583029,33115986 +) +(1,6072:6630773,33782164:25952256,404226,76021 +h1,6072:6630773,33782164:0,0,0 +g1,6072:6946919,33782164 +g1,6072:7263065,33782164 +g1,6072:7579211,33782164 +g1,6072:7895357,33782164 +g1,6072:8211503,33782164 +g1,6072:8527649,33782164 +g1,6072:8843795,33782164 +g1,6072:9159941,33782164 +g1,6072:9476087,33782164 +g1,6072:9792233,33782164 +g1,6072:10108379,33782164 +g1,6072:10424525,33782164 +g1,6072:10740671,33782164 +g1,6072:11056817,33782164 +g1,6072:12637546,33782164 +g1,6072:13585984,33782164 +g1,6072:14218276,33782164 +g1,6072:14850568,33782164 +h1,6072:16115151,33782164:0,0,0 +k1,6072:32583029,33782164:16467878 +g1,6072:32583029,33782164 +) +(1,6073:6630773,34448342:25952256,404226,76021 +h1,6073:6630773,34448342:0,0,0 +g1,6073:6946919,34448342 +g1,6073:7263065,34448342 +g1,6073:7579211,34448342 +g1,6073:7895357,34448342 +g1,6073:8211503,34448342 +g1,6073:8527649,34448342 +g1,6073:8843795,34448342 +g1,6073:9159941,34448342 +g1,6073:9476087,34448342 +g1,6073:9792233,34448342 +g1,6073:10108379,34448342 +g1,6073:10424525,34448342 +g1,6073:10740671,34448342 +g1,6073:11056817,34448342 +h1,6073:11372963,34448342:0,0,0 +k1,6073:32583029,34448342:21210066 +g1,6073:32583029,34448342 +) +(1,6074:6630773,35114520:25952256,404226,76021 +h1,6074:6630773,35114520:0,0,0 +g1,6074:6946919,35114520 +g1,6074:7263065,35114520 +g1,6074:7579211,35114520 +g1,6074:7895357,35114520 +g1,6074:8211503,35114520 +g1,6074:8527649,35114520 +g1,6074:8843795,35114520 +g1,6074:9159941,35114520 +g1,6074:9476087,35114520 +g1,6074:9792233,35114520 +g1,6074:10108379,35114520 +g1,6074:10424525,35114520 +h1,6074:11056816,35114520:0,0,0 +k1,6074:32583028,35114520:21526212 +g1,6074:32583028,35114520 +) +(1,6079:6630773,35846234:25952256,404226,101187 +(1,6076:6630773,35846234:0,0,0 +g1,6076:6630773,35846234 +g1,6076:6630773,35846234 +g1,6076:6303093,35846234 +(1,6076:6303093,35846234:0,0,0 +) +g1,6076:6630773,35846234 +) +g1,6079:7579210,35846234 +g1,6079:7895356,35846234 +g1,6079:8211502,35846234 +g1,6079:8527648,35846234 +g1,6079:10108377,35846234 +g1,6079:10424523,35846234 +g1,6079:12637543,35846234 +h1,6079:14850563,35846234:0,0,0 +k1,6079:32583029,35846234:17732466 +g1,6079:32583029,35846234 +) +(1,6079:6630773,36512412:25952256,388497,9436 +h1,6079:6630773,36512412:0,0,0 +g1,6079:7579210,36512412 +g1,6079:7895356,36512412 +g1,6079:8211502,36512412 +g1,6079:8527648,36512412 +g1,6079:10108377,36512412 +g1,6079:10424523,36512412 +g1,6079:10740669,36512412 +g1,6079:11056815,36512412 +g1,6079:12637544,36512412 +g1,6079:12953690,36512412 +g1,6079:13269836,36512412 +g1,6079:13585982,36512412 +h1,6079:14850565,36512412:0,0,0 +k1,6079:32583029,36512412:17732464 +g1,6079:32583029,36512412 +) +] +) +g1,6080:32583029,36521848 +g1,6080:6630773,36521848 +g1,6080:6630773,36521848 +g1,6080:32583029,36521848 +g1,6080:32583029,36521848 +) +h1,6080:6630773,36718456:0,0,0 +v1,6084:6630773,38548962:0,393216,0 +(1,6146:6630773,45116945:25952256,6961199,589824 +g1,6146:6630773,45116945 +(1,6146:6630773,45116945:25952256,6961199,589824 +(1,6146:6630773,45706769:25952256,7551023,0 +[1,6146:6630773,45706769:25952256,7551023,0 +(1,6146:6630773,45706769:25952256,7524809,0 +r1,6146:6656987,45706769:26214,7524809,0 +[1,6146:6656987,45706769:25899828,7524809,0 +(1,6146:6656987,45116945:25899828,6345161,0 +[1,6146:7246811,45116945:24720180,6345161,0 +(1,6085:7246811,39933669:24720180,1161885,196608 +(1,6084:7246811,39933669:0,1161885,196608 +r1,6146:8794447,39933669:1547636,1358493,196608 +k1,6084:7246811,39933669:-1547636 +) +(1,6084:7246811,39933669:1547636,1161885,196608 +) +k1,6084:8964009,39933669:169562 +k1,6084:12257016,39933669:169561 +k1,6084:15013284,39933669:169562 +k1,6084:16576796,39933669:169561 +k1,6084:18317256,39933669:169562 +k1,6084:19876181,39933669:169562 +k1,6084:21484257,39933669:169561 +k1,6084:22336704,39933669:169562 +k1,6084:24258043,39933669:169562 +k1,6084:26629614,39933669:169561 +k1,6084:28188539,39933669:169562 +k1,6084:29796615,39933669:169561 +k1,6084:30834529,39933669:169562 +k1,6084:31966991,39933669:0 +) +(1,6085:7246811,40775157:24720180,513147,126483 +k1,6084:9030636,40775157:253559 +k1,6084:9935623,40775157:253559 +k1,6084:11541844,40775157:253558 +k1,6084:15871087,40775157:253559 +k1,6084:17392112,40775157:253559 +k1,6084:20323472,40775157:253559 +k1,6084:21394920,40775157:253559 +k1,6084:25840816,40775157:253558 +k1,6084:28381582,40775157:253559 +k1,6084:29920957,40775157:253559 +k1,6084:31966991,40775157:0 +) +(1,6085:7246811,41616645:24720180,505283,134348 +k1,6084:8969207,41616645:226209 +k1,6084:11782121,41616645:226208 +k1,6084:12466427,41616645:226209 +k1,6084:13224132,41616645:226208 +k1,6084:15034346,41616645:226209 +k1,6084:16761328,41616645:226208 +k1,6084:17638965,41616645:226209 +k1,6084:18957658,41616645:226208 +k1,6084:23376205,41616645:226209 +k1,6084:26640662,41616645:226208 +k1,6084:29670501,41616645:226209 +k1,6084:30938731,41616645:226208 +k1,6085:31966991,41616645:0 +) +(1,6085:7246811,42458133:24720180,513147,126483 +k1,6084:10063714,42458133:227576 +k1,6084:11575796,42458133:227576 +k1,6084:12794932,42458133:227576 +k1,6084:16327489,42458133:227576 +k1,6084:18241962,42458133:227576 +k1,6084:18884353,42458133:227548 +k1,6084:21779900,42458133:227576 +k1,6084:24404783,42458133:227576 +k1,6084:27831827,42458133:227576 +k1,6084:28529296,42458133:227576 +k1,6084:29288369,42458133:227576 +k1,6084:30932833,42458133:227576 +k1,6085:31966991,42458133:0 +) +(1,6085:7246811,43299621:24720180,513147,126483 +k1,6084:9821065,43299621:186122 +k1,6084:10658615,43299621:186122 +k1,6084:13575622,43299621:186122 +k1,6084:14828016,43299621:186123 +k1,6084:16389739,43299621:186122 +k1,6084:20768199,43299621:186122 +k1,6084:21613613,43299621:186122 +k1,6084:25075880,43299621:186122 +k1,6084:26334171,43299621:186122 +k1,6084:27806110,43299621:186123 +k1,6084:29814133,43299621:186122 +k1,6084:30947906,43299621:186122 +k1,6084:31966991,43299621:0 +) +(1,6085:7246811,44141109:24720180,513147,126483 +k1,6084:10885206,44141109:181371 +k1,6084:11725869,44141109:181371 +k1,6084:19448468,44141109:181371 +k1,6084:22655635,44141109:181370 +k1,6084:23784657,44141109:181371 +k1,6084:26363335,44141109:181371 +k1,6084:28415759,44141109:181371 +k1,6084:29793817,44141109:181371 +k1,6084:31966991,44141109:0 +) +(1,6085:7246811,44982597:24720180,513147,134348 +k1,6084:8987649,44982597:173217 +k1,6084:11684001,44982597:173216 +k1,6084:12876303,44982597:173217 +k1,6084:14545706,44982597:173216 +k1,6084:17710642,44982597:173217 +k1,6084:18499897,44982597:173217 +k1,6084:19876354,44982597:173216 +k1,6084:21209558,44982597:173217 +k1,6084:22374335,44982597:173217 +k1,6084:23613822,44982597:173216 +k1,6084:26719120,44982597:173217 +k1,6084:29422026,44982597:173216 +k1,6084:30975431,44982597:173217 +k1,6084:31966991,44982597:0 +) +] +) +] +r1,6146:32583029,45706769:26214,7524809,0 +) +] +) +) +g1,6146:32583029,45116945 +) +] +(1,6146:32583029,45706769:0,0,0 +g1,6146:32583029,45706769 +) +) +] +(1,6146:6630773,47279633:25952256,0,0 +h1,6146:6630773,47279633:25952256,0,0 +) +] +h1,6146:4262630,4025873:0,0,0 +] +!25629 }115 -Input:843:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!97 +Input:839:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!103 {116 -[1,6167:4262630,47279633:28320399,43253760,0 -(1,6167:4262630,4025873:0,0,0 -[1,6167:-473657,4025873:25952256,0,0 -(1,6167:-473657,-710414:25952256,0,0 -h1,6167:-473657,-710414:0,0,0 -(1,6167:-473657,-710414:0,0,0 -(1,6167:-473657,-710414:0,0,0 -g1,6167:-473657,-710414 -(1,6167:-473657,-710414:65781,0,65781 -g1,6167:-407876,-710414 -[1,6167:-407876,-644633:0,0,0 +[1,6173:4262630,47279633:28320399,43253760,0 +(1,6173:4262630,4025873:0,0,0 +[1,6173:-473657,4025873:25952256,0,0 +(1,6173:-473657,-710414:25952256,0,0 +h1,6173:-473657,-710414:0,0,0 +(1,6173:-473657,-710414:0,0,0 +(1,6173:-473657,-710414:0,0,0 +g1,6173:-473657,-710414 +(1,6173:-473657,-710414:65781,0,65781 +g1,6173:-407876,-710414 +[1,6173:-407876,-644633:0,0,0 ] ) -k1,6167:-473657,-710414:-65781 +k1,6173:-473657,-710414:-65781 ) ) -k1,6167:25478599,-710414:25952256 -g1,6167:25478599,-710414 +k1,6173:25478599,-710414:25952256 +g1,6173:25478599,-710414 ) ] ) -[1,6167:6630773,47279633:25952256,43253760,0 -[1,6167:6630773,4812305:25952256,786432,0 -(1,6167:6630773,4812305:25952256,513147,126483 -(1,6167:6630773,4812305:25952256,513147,126483 -g1,6167:3078558,4812305 -[1,6167:3078558,4812305:0,0,0 -(1,6167:3078558,2439708:0,1703936,0 -k1,6167:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6167:2537886,2439708:1179648,16384,0 +[1,6173:6630773,47279633:25952256,43253760,0 +[1,6173:6630773,4812305:25952256,786432,0 +(1,6173:6630773,4812305:25952256,513147,126483 +(1,6173:6630773,4812305:25952256,513147,126483 +g1,6173:3078558,4812305 +[1,6173:3078558,4812305:0,0,0 +(1,6173:3078558,2439708:0,1703936,0 +k1,6173:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6173:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6167:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6173:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6167:3078558,4812305:0,0,0 -(1,6167:3078558,2439708:0,1703936,0 -g1,6167:29030814,2439708 -g1,6167:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6167:36151628,1915420:16384,1179648,0 +[1,6173:3078558,4812305:0,0,0 +(1,6173:3078558,2439708:0,1703936,0 +g1,6173:29030814,2439708 +g1,6173:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6173:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6167:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6173:37855564,2439708:1179648,16384,0 ) ) -k1,6167:3078556,2439708:-34777008 +k1,6173:3078556,2439708:-34777008 ) ] -[1,6167:3078558,4812305:0,0,0 -(1,6167:3078558,49800853:0,16384,2228224 -k1,6167:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6167:2537886,49800853:1179648,16384,0 +[1,6173:3078558,4812305:0,0,0 +(1,6173:3078558,49800853:0,16384,2228224 +k1,6173:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6173:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6167:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6173:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6167:3078558,4812305:0,0,0 -(1,6167:3078558,49800853:0,16384,2228224 -g1,6167:29030814,49800853 -g1,6167:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6167:36151628,51504789:16384,1179648,0 +[1,6173:3078558,4812305:0,0,0 +(1,6173:3078558,49800853:0,16384,2228224 +g1,6173:29030814,49800853 +g1,6173:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6173:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6167:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6173:37855564,49800853:1179648,16384,0 ) ) -k1,6167:3078556,49800853:-34777008 -) -] -g1,6167:6630773,4812305 -g1,6167:6630773,4812305 -g1,6167:9175536,4812305 -g1,6167:9990803,4812305 -g1,6167:13137841,4812305 -g1,6167:14654344,4812305 -k1,6167:31387652,4812305:16733308 -) -) -] -[1,6167:6630773,45706769:25952256,40108032,0 -(1,6167:6630773,45706769:25952256,40108032,0 -(1,6167:6630773,45706769:0,0,0 -g1,6167:6630773,45706769 -) -[1,6167:6630773,45706769:25952256,40108032,0 -v1,6140:6630773,6254097:0,393216,0 -(1,6140:6630773,37169411:25952256,31308530,616038 -g1,6140:6630773,37169411 -(1,6140:6630773,37169411:25952256,31308530,616038 -(1,6140:6630773,37785449:25952256,31924568,0 -[1,6140:6630773,37785449:25952256,31924568,0 -(1,6140:6630773,37759235:25952256,31898354,0 -r1,6140:6656987,37759235:26214,31898354,0 -[1,6140:6656987,37759235:25899828,31898354,0 -(1,6140:6656987,37169411:25899828,30718706,0 -[1,6140:7246811,37169411:24720180,30718706,0 -(1,6079:7246811,6963852:24720180,513147,102891 -k1,6078:8475190,6963852:209294 -k1,6078:10337957,6963852:209294 -k1,6078:11494902,6963852:209294 -k1,6078:12470311,6963852:209293 -k1,6078:15154244,6963852:209294 -k1,6078:16851861,6963852:209294 -k1,6078:17929507,6963852:209294 -k1,6078:19130361,6963852:209294 -k1,6078:22550919,6963852:209294 -k1,6078:23376251,6963852:209294 -k1,6078:24604629,6963852:209293 -k1,6078:27889528,6963852:209294 -k1,6078:29697900,6963852:209294 -k1,6078:31098639,6963852:209294 -k1,6078:31966991,6963852:0 -) -(1,6079:7246811,7805340:24720180,505283,7863 -g1,6078:9058881,7805340 -g1,6078:10461351,7805340 -g1,6078:11346742,7805340 -g1,6078:12316674,7805340 -k1,6079:31966992,7805340:16916156 -g1,6079:31966992,7805340 -) -v1,6081:7246811,8995806:0,393216,0 -(1,6085:7246811,9304611:24720180,702021,196608 -g1,6085:7246811,9304611 -g1,6085:7246811,9304611 -g1,6085:7050203,9304611 -(1,6085:7050203,9304611:0,702021,196608 -r1,6140:32163599,9304611:25113396,898629,196608 -k1,6085:7050203,9304611:-25113396 -) -(1,6085:7050203,9304611:25113396,702021,196608 -[1,6085:7246811,9304611:24720180,505413,0 -(1,6083:7246811,9203424:24720180,404226,101187 -(1,6082:7246811,9203424:0,0,0 -g1,6082:7246811,9203424 -g1,6082:7246811,9203424 -g1,6082:6919131,9203424 -(1,6082:6919131,9203424:0,0,0 -) -g1,6082:7246811,9203424 -) -g1,6083:7879103,9203424 -g1,6083:8827541,9203424 -g1,6083:12621290,9203424 -g1,6083:13253582,9203424 -g1,6083:14202019,9203424 -g1,6083:15466602,9203424 -g1,6083:17047331,9203424 -g1,6083:21473371,9203424 -k1,6083:21473371,9203424:0 -h1,6083:23686391,9203424:0,0,0 -k1,6083:31966991,9203424:8280600 -g1,6083:31966991,9203424 -) -] -) -g1,6085:31966991,9304611 -g1,6085:7246811,9304611 -g1,6085:7246811,9304611 -g1,6085:31966991,9304611 -g1,6085:31966991,9304611 -) -h1,6085:7246811,9501219:0,0,0 -v1,6089:7246811,11215973:0,393216,0 -(1,6101:7246811,16759305:24720180,5936548,196608 -g1,6101:7246811,16759305 -g1,6101:7246811,16759305 -g1,6101:7050203,16759305 -(1,6101:7050203,16759305:0,5936548,196608 -r1,6140:32163599,16759305:25113396,6133156,196608 -k1,6101:7050203,16759305:-25113396 -) -(1,6101:7050203,16759305:25113396,5936548,196608 -[1,6101:7246811,16759305:24720180,5739940,0 -(1,6091:7246811,11423591:24720180,404226,76021 -(1,6090:7246811,11423591:0,0,0 -g1,6090:7246811,11423591 -g1,6090:7246811,11423591 -g1,6090:6919131,11423591 -(1,6090:6919131,11423591:0,0,0 -) -g1,6090:7246811,11423591 -) -g1,6091:7879103,11423591 -g1,6091:8511395,11423591 -g1,6091:9459833,11423591 -k1,6091:9459833,11423591:0 -h1,6091:12305144,11423591:0,0,0 -k1,6091:31966992,11423591:19661848 -g1,6091:31966992,11423591 -) -(1,6092:7246811,12089769:24720180,404226,107478 -h1,6092:7246811,12089769:0,0,0 -g1,6092:7879103,12089769 -g1,6092:8827541,12089769 -g1,6092:15466602,12089769 -g1,6092:16098894,12089769 -g1,6092:20208788,12089769 -k1,6092:20208788,12089769:41419 -h1,6092:22147081,12089769:0,0,0 -k1,6092:31966991,12089769:9819910 -g1,6092:31966991,12089769 -) -(1,6093:7246811,12755947:24720180,404226,0 -h1,6093:7246811,12755947:0,0,0 -g1,6093:7879103,12755947 -g1,6093:8827541,12755947 -h1,6093:9143687,12755947:0,0,0 -k1,6093:31966991,12755947:22823304 -g1,6093:31966991,12755947 -) -(1,6094:7246811,13422125:24720180,404226,107478 -h1,6094:7246811,13422125:0,0,0 -g1,6094:9143685,13422125 -g1,6094:10092122,13422125 -g1,6094:10724414,13422125 -g1,6094:14202017,13422125 -h1,6094:14518163,13422125:0,0,0 -k1,6094:31966991,13422125:17448828 -g1,6094:31966991,13422125 -) -(1,6095:7246811,14088303:24720180,404226,76021 -h1,6095:7246811,14088303:0,0,0 -g1,6095:7562957,14088303 -g1,6095:7879103,14088303 -g1,6095:9459832,14088303 -g1,6095:10408270,14088303 -g1,6095:12621291,14088303 -g1,6095:13253583,14088303 -h1,6095:14518166,14088303:0,0,0 -k1,6095:31966990,14088303:17448824 -g1,6095:31966990,14088303 -) -(1,6096:7246811,14754481:24720180,404226,101187 -h1,6096:7246811,14754481:0,0,0 -g1,6096:7562957,14754481 -g1,6096:7879103,14754481 -k1,6096:7879103,14754481:0 -h1,6096:10408268,14754481:0,0,0 -k1,6096:31966992,14754481:21558724 -g1,6096:31966992,14754481 -) -(1,6097:7246811,15420659:24720180,404226,0 -h1,6097:7246811,15420659:0,0,0 -g1,6097:7562957,15420659 -g1,6097:7879103,15420659 -g1,6097:8511395,15420659 -g1,6097:9459833,15420659 -g1,6097:10092125,15420659 -g1,6097:10724417,15420659 -h1,6097:11040563,15420659:0,0,0 -k1,6097:31966991,15420659:20926428 -g1,6097:31966991,15420659 -) -(1,6098:7246811,16086837:24720180,404226,76021 -h1,6098:7246811,16086837:0,0,0 -h1,6098:7562957,16086837:0,0,0 -k1,6098:31966991,16086837:24404034 -g1,6098:31966991,16086837 -) -(1,6099:7246811,16753015:24720180,404226,6290 -h1,6099:7246811,16753015:0,0,0 -h1,6099:7562957,16753015:0,0,0 -k1,6099:31966991,16753015:24404034 -g1,6099:31966991,16753015 -) -] -) -g1,6101:31966991,16759305 -g1,6101:7246811,16759305 -g1,6101:7246811,16759305 -g1,6101:31966991,16759305 -g1,6101:31966991,16759305 -) -h1,6101:7246811,16955913:0,0,0 -v1,6105:7246811,18670667:0,393216,0 -(1,6115:7246811,22881643:24720180,4604192,196608 -g1,6115:7246811,22881643 -g1,6115:7246811,22881643 -g1,6115:7050203,22881643 -(1,6115:7050203,22881643:0,4604192,196608 -r1,6140:32163599,22881643:25113396,4800800,196608 -k1,6115:7050203,22881643:-25113396 -) -(1,6115:7050203,22881643:25113396,4604192,196608 -[1,6115:7246811,22881643:24720180,4407584,0 -(1,6107:7246811,18878285:24720180,404226,76021 -(1,6106:7246811,18878285:0,0,0 -g1,6106:7246811,18878285 -g1,6106:7246811,18878285 -g1,6106:6919131,18878285 -(1,6106:6919131,18878285:0,0,0 -) -g1,6106:7246811,18878285 -) -g1,6107:7879103,18878285 -g1,6107:8511395,18878285 -g1,6107:9459833,18878285 -k1,6107:9459833,18878285:0 -h1,6107:12305144,18878285:0,0,0 -k1,6107:31966992,18878285:19661848 -g1,6107:31966992,18878285 -) -(1,6108:7246811,19544463:24720180,404226,107478 -h1,6108:7246811,19544463:0,0,0 -g1,6108:7879103,19544463 -g1,6108:8827541,19544463 -g1,6108:15466602,19544463 -g1,6108:16098894,19544463 -g1,6108:20208788,19544463 -k1,6108:20208788,19544463:41419 -h1,6108:22147081,19544463:0,0,0 -k1,6108:31966991,19544463:9819910 -g1,6108:31966991,19544463 -) -(1,6109:7246811,20210641:24720180,410518,107478 -h1,6109:7246811,20210641:0,0,0 -g1,6109:9143685,20210641 -g1,6109:10092122,20210641 -g1,6109:14834308,20210641 -g1,6109:15466600,20210641 -g1,6109:16731183,20210641 -h1,6109:17047329,20210641:0,0,0 -k1,6109:31966991,20210641:14919662 -g1,6109:31966991,20210641 -) -(1,6110:7246811,20876819:24720180,404226,76021 -h1,6110:7246811,20876819:0,0,0 -g1,6110:7562957,20876819 -g1,6110:7879103,20876819 -g1,6110:9459832,20876819 -g1,6110:10408270,20876819 -g1,6110:12621291,20876819 -g1,6110:13253583,20876819 -h1,6110:14518166,20876819:0,0,0 -k1,6110:31966990,20876819:17448824 -g1,6110:31966990,20876819 -) -(1,6111:7246811,21542997:24720180,404226,101187 -h1,6111:7246811,21542997:0,0,0 -g1,6111:7562957,21542997 -g1,6111:7879103,21542997 -k1,6111:7879103,21542997:0 -h1,6111:10408268,21542997:0,0,0 -k1,6111:31966992,21542997:21558724 -g1,6111:31966992,21542997 -) -(1,6112:7246811,22209175:24720180,404226,76021 -h1,6112:7246811,22209175:0,0,0 -h1,6112:7562957,22209175:0,0,0 -k1,6112:31966991,22209175:24404034 -g1,6112:31966991,22209175 -) -(1,6113:7246811,22875353:24720180,404226,6290 -h1,6113:7246811,22875353:0,0,0 -h1,6113:7562957,22875353:0,0,0 -k1,6113:31966991,22875353:24404034 -g1,6113:31966991,22875353 -) -] -) -g1,6115:31966991,22881643 -g1,6115:7246811,22881643 -g1,6115:7246811,22881643 -g1,6115:31966991,22881643 -g1,6115:31966991,22881643 -) -h1,6115:7246811,23078251:0,0,0 -v1,6119:7246811,24793005:0,393216,0 -(1,6126:7246811,27005447:24720180,2605658,196608 -g1,6126:7246811,27005447 -g1,6126:7246811,27005447 -g1,6126:7050203,27005447 -(1,6126:7050203,27005447:0,2605658,196608 -r1,6140:32163599,27005447:25113396,2802266,196608 -k1,6126:7050203,27005447:-25113396 -) -(1,6126:7050203,27005447:25113396,2605658,196608 -[1,6126:7246811,27005447:24720180,2409050,0 -(1,6121:7246811,25000623:24720180,404226,107478 -(1,6120:7246811,25000623:0,0,0 -g1,6120:7246811,25000623 -g1,6120:7246811,25000623 -g1,6120:6919131,25000623 -(1,6120:6919131,25000623:0,0,0 -) -g1,6120:7246811,25000623 -) -g1,6121:7879103,25000623 -g1,6121:10724414,25000623 -g1,6121:11672851,25000623 -g1,6121:13253580,25000623 -g1,6121:14834309,25000623 -g1,6121:16731183,25000623 -g1,6121:18311912,25000623 -g1,6121:22737952,25000623 -k1,6121:22737952,25000623:1573 -h1,6121:24320253,25000623:0,0,0 -k1,6121:31966991,25000623:7646738 -g1,6121:31966991,25000623 -) -(1,6122:7246811,25666801:24720180,404226,101187 -h1,6122:7246811,25666801:0,0,0 -g1,6122:7879103,25666801 -g1,6122:9143686,25666801 -g1,6122:11040560,25666801 -g1,6122:12937434,25666801 -g1,6122:14518163,25666801 -g1,6122:15466600,25666801 -g1,6122:17047329,25666801 -g1,6122:17995766,25666801 -g1,6122:19260349,25666801 -g1,6122:21789515,25666801 -k1,6122:21789515,25666801:41419 -h1,6122:24992391,25666801:0,0,0 -k1,6122:31966991,25666801:6974600 -g1,6122:31966991,25666801 -) -(1,6123:7246811,26332979:24720180,404226,107478 -h1,6123:7246811,26332979:0,0,0 -g1,6123:7879103,26332979 -g1,6123:8827541,26332979 -g1,6123:13569727,26332979 -g1,6123:14202019,26332979 -k1,6123:14202019,26332979:0 -h1,6123:19260351,26332979:0,0,0 -k1,6123:31966991,26332979:12706640 -g1,6123:31966991,26332979 -) -(1,6124:7246811,26999157:24720180,404226,6290 -h1,6124:7246811,26999157:0,0,0 -h1,6124:7562957,26999157:0,0,0 -k1,6124:31966991,26999157:24404034 -g1,6124:31966991,26999157 -) -] -) -g1,6126:31966991,27005447 -g1,6126:7246811,27005447 -g1,6126:7246811,27005447 -g1,6126:31966991,27005447 -g1,6126:31966991,27005447 -) -h1,6126:7246811,27202055:0,0,0 -v1,6130:7246811,28916809:0,393216,0 -(1,6136:7246811,30463073:24720180,1939480,196608 -g1,6136:7246811,30463073 -g1,6136:7246811,30463073 -g1,6136:7050203,30463073 -(1,6136:7050203,30463073:0,1939480,196608 -r1,6140:32163599,30463073:25113396,2136088,196608 -k1,6136:7050203,30463073:-25113396 -) -(1,6136:7050203,30463073:25113396,1939480,196608 -[1,6136:7246811,30463073:24720180,1742872,0 -(1,6132:7246811,29124427:24720180,404226,6290 -(1,6131:7246811,29124427:0,0,0 -g1,6131:7246811,29124427 -g1,6131:7246811,29124427 -g1,6131:6919131,29124427 -(1,6131:6919131,29124427:0,0,0 -) -g1,6131:7246811,29124427 -) -g1,6132:7879103,29124427 -g1,6132:8827540,29124427 -g1,6132:10408269,29124427 -k1,6132:10408269,29124427:23593 -h1,6132:12328736,29124427:0,0,0 -k1,6132:31966992,29124427:19638256 -g1,6132:31966992,29124427 -) -(1,6133:7246811,29790605:24720180,410518,76021 -h1,6133:7246811,29790605:0,0,0 -g1,6133:7879103,29790605 -g1,6133:8827541,29790605 -k1,6133:8827541,29790605:0 -h1,6133:11040561,29790605:0,0,0 -k1,6133:31966991,29790605:20926430 -g1,6133:31966991,29790605 -) -(1,6134:7246811,30456783:24720180,404226,6290 -h1,6134:7246811,30456783:0,0,0 -h1,6134:7562957,30456783:0,0,0 -k1,6134:31966991,30456783:24404034 -g1,6134:31966991,30456783 -) -] -) -g1,6136:31966991,30463073 -g1,6136:7246811,30463073 -g1,6136:7246811,30463073 -g1,6136:31966991,30463073 -g1,6136:31966991,30463073 -) -h1,6136:7246811,30659681:0,0,0 -(1,6140:7246811,32025457:24720180,513147,115847 -h1,6139:7246811,32025457:983040,0,0 -k1,6139:11506449,32025457:177400 -k1,6139:13109257,32025457:177400 -k1,6139:14390939,32025457:177400 -k1,6139:15316105,32025457:177400 -k1,6139:18285339,32025457:177400 -k1,6139:19856691,32025457:177401 -(1,6139:19856691,32025457:0,452978,115847 -r1,6140:24435499,32025457:4578808,568825,115847 -k1,6139:19856691,32025457:-4578808 -) -(1,6139:19856691,32025457:4578808,452978,115847 -k1,6139:19856691,32025457:3277 -h1,6139:24432222,32025457:0,411205,112570 -) -k1,6139:24786569,32025457:177400 -k1,6139:26005991,32025457:177400 -k1,6139:26539251,32025457:177400 -k1,6139:28694528,32025457:177400 -k1,6139:29531220,32025457:177400 -k1,6139:30727705,32025457:177400 -k1,6140:31966991,32025457:0 -) -(1,6140:7246811,32866945:24720180,505283,126483 -k1,6139:8743759,32866945:281255 -k1,6139:12014767,32866945:281256 -k1,6139:13315107,32866945:281255 -(1,6139:13315107,32866945:0,459977,115847 -r1,6140:14376796,32866945:1061689,575824,115847 -k1,6139:13315107,32866945:-1061689 -) -(1,6139:13315107,32866945:1061689,459977,115847 -k1,6139:13315107,32866945:3277 -h1,6139:14373519,32866945:0,411205,112570 -) -k1,6139:14658052,32866945:281256 -k1,6139:16354229,32866945:281255 -k1,6139:18490809,32866945:281256 -k1,6139:20455029,32866945:281255 -k1,6139:22146423,32866945:281255 -k1,6139:23619124,32866945:281256 -k1,6139:24919464,32866945:281255 -k1,6139:28505701,32866945:281256 -(1,6139:28505701,32866945:0,452978,115847 -r1,6140:30270814,32866945:1765113,568825,115847 -k1,6139:28505701,32866945:-1765113 -) -(1,6139:28505701,32866945:1765113,452978,115847 -k1,6139:28505701,32866945:3277 -h1,6139:30267537,32866945:0,411205,112570 -) -k1,6139:30552069,32866945:281255 -k1,6139:31966991,32866945:0 -) -(1,6140:7246811,33708433:24720180,513147,134348 -k1,6139:9032837,33708433:202216 -k1,6139:10254139,33708433:202217 -k1,6139:13793448,33708433:202216 -k1,6139:17182025,33708433:202217 -k1,6139:19119634,33708433:202216 -k1,6139:22061255,33708433:202216 -k1,6139:23946437,33708433:202217 -k1,6139:25558792,33708433:202216 -k1,6139:26952454,33708433:202217 -k1,6139:29850166,33708433:202216 -(1,6139:29850166,33708433:0,459977,115847 -r1,6140:31966991,33708433:2116825,575824,115847 -k1,6139:29850166,33708433:-2116825 -) -(1,6139:29850166,33708433:2116825,459977,115847 -k1,6139:29850166,33708433:3277 -h1,6139:31963714,33708433:0,411205,112570 -) -k1,6139:31966991,33708433:0 -) -(1,6140:7246811,34549921:24720180,513147,126483 -k1,6139:9097040,34549921:167264 -k1,6139:10848113,34549921:167263 -k1,6139:12212064,34549921:167264 -(1,6139:12212064,34549921:0,459977,115847 -r1,6140:13273753,34549921:1061689,575824,115847 -k1,6139:12212064,34549921:-1061689 -) -(1,6139:12212064,34549921:1061689,459977,115847 -k1,6139:12212064,34549921:3277 -h1,6139:13270476,34549921:0,411205,112570 -) -k1,6139:13441017,34549921:167264 -k1,6139:15023202,34549921:167263 -k1,6139:17650688,34549921:167264 -k1,6139:22204932,34549921:167264 -k1,6139:23031488,34549921:167264 -k1,6139:25830022,34549921:167263 -k1,6139:26648714,34549921:167264 -(1,6139:26648714,34549921:0,452978,115847 -r1,6140:27006980,34549921:358266,568825,115847 -k1,6139:26648714,34549921:-358266 -) -(1,6139:26648714,34549921:358266,452978,115847 -k1,6139:26648714,34549921:3277 -h1,6139:27003703,34549921:0,411205,112570 -) -k1,6139:27174244,34549921:167264 -k1,6139:29024472,34549921:167263 -k1,6139:30775546,34549921:167264 -k1,6139:31966991,34549921:0 -) -(1,6140:7246811,35391409:24720180,513147,126483 -k1,6139:8465381,35391409:199485 -k1,6139:11969848,35391409:199486 -k1,6139:13858851,35391409:199485 -k1,6139:15473259,35391409:199486 -k1,6139:18807791,35391409:199485 -k1,6139:20026362,35391409:199486 -k1,6139:22368219,35391409:199485 -k1,6139:25643310,35391409:199486 -k1,6139:27268203,35391409:199485 -k1,6139:28674862,35391409:199486 -k1,6139:30524544,35391409:199485 -k1,6139:31966991,35391409:0 -) -(1,6140:7246811,36232897:24720180,513147,126483 -k1,6139:8284483,36232897:240754 -k1,6139:10280947,36232897:240754 -k1,6139:12365229,36232897:240754 -k1,6139:14048430,36232897:240754 -k1,6139:15308269,36232897:240754 -k1,6139:17934534,36232897:240754 -k1,6139:19505669,36232897:240754 -k1,6139:21886829,36232897:240754 -k1,6139:23075234,36232897:240754 -k1,6139:23730789,36232897:240712 -k1,6139:25514261,36232897:240754 -k1,6139:26564385,36232897:240754 -k1,6139:27786213,36232897:240754 -k1,6139:30080865,36232897:240754 -k1,6139:31966991,36232897:0 -) -(1,6140:7246811,37074385:24720180,505283,95026 -g1,6139:10334867,37074385 -g1,6139:11331014,37074385 -k1,6140:31966992,37074385:19093260 -g1,6140:31966992,37074385 -) -] -) -] -r1,6140:32583029,37759235:26214,31898354,0 -) -] -) -) -g1,6140:32583029,37169411 -) -h1,6140:6630773,37785449:0,0,0 -(1,6143:6630773,40400997:25952256,564462,147783 -(1,6143:6630773,40400997:2450326,534184,12975 -g1,6143:6630773,40400997 -g1,6143:9081099,40400997 -) -g1,6143:12074981,40400997 -g1,6143:13044587,40400997 -k1,6143:32583030,40400997:17566792 -g1,6143:32583030,40400997 -) -(1,6147:6630773,41635701:25952256,513147,7863 -k1,6146:7729211,41635701:200595 -k1,6146:8948890,41635701:200594 -k1,6146:13788123,41635701:200595 -k1,6146:16276580,41635701:200595 -k1,6146:19993836,41635701:200594 -k1,6146:21634257,41635701:200595 -k1,6146:23690176,41635701:200595 -k1,6146:24995052,41635701:200594 -k1,6146:25943413,41635701:200595 -k1,6146:28435147,41635701:200595 -k1,6146:29589290,41635701:200594 -k1,6146:30922347,41635701:200595 -k1,6146:32583029,41635701:0 -) -(1,6147:6630773,42477189:25952256,513147,126483 -g1,6146:7600705,42477189 -g1,6146:10461351,42477189 -g1,6146:12054531,42477189 -g1,6146:13426199,42477189 -(1,6146:13426199,42477189:0,459977,115847 -r1,6146:14487888,42477189:1061689,575824,115847 -k1,6146:13426199,42477189:-1061689 -) -(1,6146:13426199,42477189:1061689,459977,115847 -k1,6146:13426199,42477189:3277 -h1,6146:14484611,42477189:0,411205,112570 -) -g1,6146:14687117,42477189 -g1,6146:16805240,42477189 -g1,6146:17958018,42477189 -g1,6146:19463380,42477189 -g1,6146:21591989,42477189 -g1,6146:22147078,42477189 -g1,6146:24433629,42477189 -g1,6146:25292150,42477189 -g1,6146:26880742,42477189 -g1,6146:27731399,42477189 -g1,6146:29527085,42477189 -k1,6147:32583029,42477189:1488323 -g1,6147:32583029,42477189 -) -v1,6149:6630773,43667655:0,393216,0 -(1,6167:6630773,45355477:25952256,2081038,196608 -g1,6167:6630773,45355477 -g1,6167:6630773,45355477 -g1,6167:6434165,45355477 -(1,6167:6434165,45355477:0,2081038,196608 -r1,6167:32779637,45355477:26345472,2277646,196608 -k1,6167:6434165,45355477:-26345472 -) -(1,6167:6434165,45355477:26345472,2081038,196608 -[1,6167:6630773,45355477:25952256,1884430,0 -(1,6151:6630773,43875273:25952256,404226,82312 -(1,6150:6630773,43875273:0,0,0 -g1,6150:6630773,43875273 -g1,6150:6630773,43875273 -g1,6150:6303093,43875273 -(1,6150:6303093,43875273:0,0,0 -) -g1,6150:6630773,43875273 -) -g1,6151:7263065,43875273 -g1,6151:8211503,43875273 -g1,6151:12321398,43875273 -h1,6151:13269835,43875273:0,0,0 -k1,6151:32583029,43875273:19313194 -g1,6151:32583029,43875273 -) -(1,6152:6630773,44541451:25952256,328204,0 -h1,6152:6630773,44541451:0,0,0 -h1,6152:6946919,44541451:0,0,0 -k1,6152:32583029,44541451:25636110 -g1,6152:32583029,44541451 -) -(1,6166:6630773,45273165:25952256,404226,82312 -(1,6154:6630773,45273165:0,0,0 -g1,6154:6630773,45273165 -g1,6154:6630773,45273165 -g1,6154:6303093,45273165 -(1,6154:6303093,45273165:0,0,0 -) -g1,6154:6630773,45273165 -) -g1,6166:7579210,45273165 -g1,6166:7895356,45273165 -g1,6166:8211502,45273165 -g1,6166:8527648,45273165 -g1,6166:8843794,45273165 -g1,6166:9159940,45273165 -g1,6166:9476086,45273165 -g1,6166:11056815,45273165 -g1,6166:12637544,45273165 -g1,6166:14218273,45273165 -g1,6166:15799002,45273165 -k1,6166:15799002,45273165:0 -h1,6166:17063585,45273165:0,0,0 -k1,6166:32583029,45273165:15519444 -g1,6166:32583029,45273165 -) -] -) -g1,6167:32583029,45355477 -g1,6167:6630773,45355477 -g1,6167:6630773,45355477 -g1,6167:32583029,45355477 -g1,6167:32583029,45355477 -) -] -(1,6167:32583029,45706769:0,0,0 -g1,6167:32583029,45706769 -) -) -] -(1,6167:6630773,47279633:25952256,0,0 -h1,6167:6630773,47279633:25952256,0,0 -) -] -h1,6167:4262630,4025873:0,0,0 -] -!22513 +k1,6173:3078556,49800853:-34777008 +) +] +g1,6173:6630773,4812305 +g1,6173:6630773,4812305 +g1,6173:9175536,4812305 +g1,6173:9990803,4812305 +g1,6173:13137841,4812305 +g1,6173:14654344,4812305 +k1,6173:31387652,4812305:16733308 +) +) +] +[1,6173:6630773,45706769:25952256,40108032,0 +(1,6173:6630773,45706769:25952256,40108032,0 +(1,6173:6630773,45706769:0,0,0 +g1,6173:6630773,45706769 +) +[1,6173:6630773,45706769:25952256,40108032,0 +v1,6146:6630773,6254097:0,393216,0 +(1,6146:6630773,37169411:25952256,31308530,616038 +g1,6146:6630773,37169411 +(1,6146:6630773,37169411:25952256,31308530,616038 +(1,6146:6630773,37785449:25952256,31924568,0 +[1,6146:6630773,37785449:25952256,31924568,0 +(1,6146:6630773,37759235:25952256,31898354,0 +r1,6146:6656987,37759235:26214,31898354,0 +[1,6146:6656987,37759235:25899828,31898354,0 +(1,6146:6656987,37169411:25899828,30718706,0 +[1,6146:7246811,37169411:24720180,30718706,0 +(1,6085:7246811,6963852:24720180,513147,102891 +k1,6084:8475190,6963852:209294 +k1,6084:10337957,6963852:209294 +k1,6084:11494902,6963852:209294 +k1,6084:12470311,6963852:209293 +k1,6084:15154244,6963852:209294 +k1,6084:16851861,6963852:209294 +k1,6084:17929507,6963852:209294 +k1,6084:19130361,6963852:209294 +k1,6084:22550919,6963852:209294 +k1,6084:23376251,6963852:209294 +k1,6084:24604629,6963852:209293 +k1,6084:27889528,6963852:209294 +k1,6084:29697900,6963852:209294 +k1,6084:31098639,6963852:209294 +k1,6084:31966991,6963852:0 +) +(1,6085:7246811,7805340:24720180,505283,7863 +g1,6084:9058881,7805340 +g1,6084:10461351,7805340 +g1,6084:11346742,7805340 +g1,6084:12316674,7805340 +k1,6085:31966992,7805340:16916156 +g1,6085:31966992,7805340 +) +v1,6087:7246811,8995806:0,393216,0 +(1,6091:7246811,9304611:24720180,702021,196608 +g1,6091:7246811,9304611 +g1,6091:7246811,9304611 +g1,6091:7050203,9304611 +(1,6091:7050203,9304611:0,702021,196608 +r1,6146:32163599,9304611:25113396,898629,196608 +k1,6091:7050203,9304611:-25113396 +) +(1,6091:7050203,9304611:25113396,702021,196608 +[1,6091:7246811,9304611:24720180,505413,0 +(1,6089:7246811,9203424:24720180,404226,101187 +(1,6088:7246811,9203424:0,0,0 +g1,6088:7246811,9203424 +g1,6088:7246811,9203424 +g1,6088:6919131,9203424 +(1,6088:6919131,9203424:0,0,0 +) +g1,6088:7246811,9203424 +) +g1,6089:7879103,9203424 +g1,6089:8827541,9203424 +g1,6089:12621290,9203424 +g1,6089:13253582,9203424 +g1,6089:14202019,9203424 +g1,6089:15466602,9203424 +g1,6089:17047331,9203424 +g1,6089:21473371,9203424 +k1,6089:21473371,9203424:0 +h1,6089:23686391,9203424:0,0,0 +k1,6089:31966991,9203424:8280600 +g1,6089:31966991,9203424 +) +] +) +g1,6091:31966991,9304611 +g1,6091:7246811,9304611 +g1,6091:7246811,9304611 +g1,6091:31966991,9304611 +g1,6091:31966991,9304611 +) +h1,6091:7246811,9501219:0,0,0 +v1,6095:7246811,11215973:0,393216,0 +(1,6107:7246811,16759305:24720180,5936548,196608 +g1,6107:7246811,16759305 +g1,6107:7246811,16759305 +g1,6107:7050203,16759305 +(1,6107:7050203,16759305:0,5936548,196608 +r1,6146:32163599,16759305:25113396,6133156,196608 +k1,6107:7050203,16759305:-25113396 +) +(1,6107:7050203,16759305:25113396,5936548,196608 +[1,6107:7246811,16759305:24720180,5739940,0 +(1,6097:7246811,11423591:24720180,404226,76021 +(1,6096:7246811,11423591:0,0,0 +g1,6096:7246811,11423591 +g1,6096:7246811,11423591 +g1,6096:6919131,11423591 +(1,6096:6919131,11423591:0,0,0 +) +g1,6096:7246811,11423591 +) +g1,6097:7879103,11423591 +g1,6097:8511395,11423591 +g1,6097:9459833,11423591 +k1,6097:9459833,11423591:0 +h1,6097:12305144,11423591:0,0,0 +k1,6097:31966992,11423591:19661848 +g1,6097:31966992,11423591 +) +(1,6098:7246811,12089769:24720180,404226,107478 +h1,6098:7246811,12089769:0,0,0 +g1,6098:7879103,12089769 +g1,6098:8827541,12089769 +g1,6098:15466602,12089769 +g1,6098:16098894,12089769 +g1,6098:20208788,12089769 +k1,6098:20208788,12089769:41419 +h1,6098:22147081,12089769:0,0,0 +k1,6098:31966991,12089769:9819910 +g1,6098:31966991,12089769 +) +(1,6099:7246811,12755947:24720180,404226,0 +h1,6099:7246811,12755947:0,0,0 +g1,6099:7879103,12755947 +g1,6099:8827541,12755947 +h1,6099:9143687,12755947:0,0,0 +k1,6099:31966991,12755947:22823304 +g1,6099:31966991,12755947 +) +(1,6100:7246811,13422125:24720180,404226,107478 +h1,6100:7246811,13422125:0,0,0 +g1,6100:9143685,13422125 +g1,6100:10092122,13422125 +g1,6100:10724414,13422125 +g1,6100:14202017,13422125 +h1,6100:14518163,13422125:0,0,0 +k1,6100:31966991,13422125:17448828 +g1,6100:31966991,13422125 +) +(1,6101:7246811,14088303:24720180,404226,76021 +h1,6101:7246811,14088303:0,0,0 +g1,6101:7562957,14088303 +g1,6101:7879103,14088303 +g1,6101:9459832,14088303 +g1,6101:10408270,14088303 +g1,6101:12621291,14088303 +g1,6101:13253583,14088303 +h1,6101:14518166,14088303:0,0,0 +k1,6101:31966990,14088303:17448824 +g1,6101:31966990,14088303 +) +(1,6102:7246811,14754481:24720180,404226,101187 +h1,6102:7246811,14754481:0,0,0 +g1,6102:7562957,14754481 +g1,6102:7879103,14754481 +k1,6102:7879103,14754481:0 +h1,6102:10408268,14754481:0,0,0 +k1,6102:31966992,14754481:21558724 +g1,6102:31966992,14754481 +) +(1,6103:7246811,15420659:24720180,404226,0 +h1,6103:7246811,15420659:0,0,0 +g1,6103:7562957,15420659 +g1,6103:7879103,15420659 +g1,6103:8511395,15420659 +g1,6103:9459833,15420659 +g1,6103:10092125,15420659 +g1,6103:10724417,15420659 +h1,6103:11040563,15420659:0,0,0 +k1,6103:31966991,15420659:20926428 +g1,6103:31966991,15420659 +) +(1,6104:7246811,16086837:24720180,404226,76021 +h1,6104:7246811,16086837:0,0,0 +h1,6104:7562957,16086837:0,0,0 +k1,6104:31966991,16086837:24404034 +g1,6104:31966991,16086837 +) +(1,6105:7246811,16753015:24720180,404226,6290 +h1,6105:7246811,16753015:0,0,0 +h1,6105:7562957,16753015:0,0,0 +k1,6105:31966991,16753015:24404034 +g1,6105:31966991,16753015 +) +] +) +g1,6107:31966991,16759305 +g1,6107:7246811,16759305 +g1,6107:7246811,16759305 +g1,6107:31966991,16759305 +g1,6107:31966991,16759305 +) +h1,6107:7246811,16955913:0,0,0 +v1,6111:7246811,18670667:0,393216,0 +(1,6121:7246811,22881643:24720180,4604192,196608 +g1,6121:7246811,22881643 +g1,6121:7246811,22881643 +g1,6121:7050203,22881643 +(1,6121:7050203,22881643:0,4604192,196608 +r1,6146:32163599,22881643:25113396,4800800,196608 +k1,6121:7050203,22881643:-25113396 +) +(1,6121:7050203,22881643:25113396,4604192,196608 +[1,6121:7246811,22881643:24720180,4407584,0 +(1,6113:7246811,18878285:24720180,404226,76021 +(1,6112:7246811,18878285:0,0,0 +g1,6112:7246811,18878285 +g1,6112:7246811,18878285 +g1,6112:6919131,18878285 +(1,6112:6919131,18878285:0,0,0 +) +g1,6112:7246811,18878285 +) +g1,6113:7879103,18878285 +g1,6113:8511395,18878285 +g1,6113:9459833,18878285 +k1,6113:9459833,18878285:0 +h1,6113:12305144,18878285:0,0,0 +k1,6113:31966992,18878285:19661848 +g1,6113:31966992,18878285 +) +(1,6114:7246811,19544463:24720180,404226,107478 +h1,6114:7246811,19544463:0,0,0 +g1,6114:7879103,19544463 +g1,6114:8827541,19544463 +g1,6114:15466602,19544463 +g1,6114:16098894,19544463 +g1,6114:20208788,19544463 +k1,6114:20208788,19544463:41419 +h1,6114:22147081,19544463:0,0,0 +k1,6114:31966991,19544463:9819910 +g1,6114:31966991,19544463 +) +(1,6115:7246811,20210641:24720180,410518,107478 +h1,6115:7246811,20210641:0,0,0 +g1,6115:9143685,20210641 +g1,6115:10092122,20210641 +g1,6115:14834308,20210641 +g1,6115:15466600,20210641 +g1,6115:16731183,20210641 +h1,6115:17047329,20210641:0,0,0 +k1,6115:31966991,20210641:14919662 +g1,6115:31966991,20210641 +) +(1,6116:7246811,20876819:24720180,404226,76021 +h1,6116:7246811,20876819:0,0,0 +g1,6116:7562957,20876819 +g1,6116:7879103,20876819 +g1,6116:9459832,20876819 +g1,6116:10408270,20876819 +g1,6116:12621291,20876819 +g1,6116:13253583,20876819 +h1,6116:14518166,20876819:0,0,0 +k1,6116:31966990,20876819:17448824 +g1,6116:31966990,20876819 +) +(1,6117:7246811,21542997:24720180,404226,101187 +h1,6117:7246811,21542997:0,0,0 +g1,6117:7562957,21542997 +g1,6117:7879103,21542997 +k1,6117:7879103,21542997:0 +h1,6117:10408268,21542997:0,0,0 +k1,6117:31966992,21542997:21558724 +g1,6117:31966992,21542997 +) +(1,6118:7246811,22209175:24720180,404226,76021 +h1,6118:7246811,22209175:0,0,0 +h1,6118:7562957,22209175:0,0,0 +k1,6118:31966991,22209175:24404034 +g1,6118:31966991,22209175 +) +(1,6119:7246811,22875353:24720180,404226,6290 +h1,6119:7246811,22875353:0,0,0 +h1,6119:7562957,22875353:0,0,0 +k1,6119:31966991,22875353:24404034 +g1,6119:31966991,22875353 +) +] +) +g1,6121:31966991,22881643 +g1,6121:7246811,22881643 +g1,6121:7246811,22881643 +g1,6121:31966991,22881643 +g1,6121:31966991,22881643 +) +h1,6121:7246811,23078251:0,0,0 +v1,6125:7246811,24793005:0,393216,0 +(1,6132:7246811,27005447:24720180,2605658,196608 +g1,6132:7246811,27005447 +g1,6132:7246811,27005447 +g1,6132:7050203,27005447 +(1,6132:7050203,27005447:0,2605658,196608 +r1,6146:32163599,27005447:25113396,2802266,196608 +k1,6132:7050203,27005447:-25113396 +) +(1,6132:7050203,27005447:25113396,2605658,196608 +[1,6132:7246811,27005447:24720180,2409050,0 +(1,6127:7246811,25000623:24720180,404226,107478 +(1,6126:7246811,25000623:0,0,0 +g1,6126:7246811,25000623 +g1,6126:7246811,25000623 +g1,6126:6919131,25000623 +(1,6126:6919131,25000623:0,0,0 +) +g1,6126:7246811,25000623 +) +g1,6127:7879103,25000623 +g1,6127:10724414,25000623 +g1,6127:11672851,25000623 +g1,6127:13253580,25000623 +g1,6127:14834309,25000623 +g1,6127:16731183,25000623 +g1,6127:18311912,25000623 +g1,6127:22737952,25000623 +k1,6127:22737952,25000623:1573 +h1,6127:24320253,25000623:0,0,0 +k1,6127:31966991,25000623:7646738 +g1,6127:31966991,25000623 +) +(1,6128:7246811,25666801:24720180,404226,101187 +h1,6128:7246811,25666801:0,0,0 +g1,6128:7879103,25666801 +g1,6128:9143686,25666801 +g1,6128:11040560,25666801 +g1,6128:12937434,25666801 +g1,6128:14518163,25666801 +g1,6128:15466600,25666801 +g1,6128:17047329,25666801 +g1,6128:17995766,25666801 +g1,6128:19260349,25666801 +g1,6128:21789515,25666801 +k1,6128:21789515,25666801:41419 +h1,6128:24992391,25666801:0,0,0 +k1,6128:31966991,25666801:6974600 +g1,6128:31966991,25666801 +) +(1,6129:7246811,26332979:24720180,404226,107478 +h1,6129:7246811,26332979:0,0,0 +g1,6129:7879103,26332979 +g1,6129:8827541,26332979 +g1,6129:13569727,26332979 +g1,6129:14202019,26332979 +k1,6129:14202019,26332979:0 +h1,6129:19260351,26332979:0,0,0 +k1,6129:31966991,26332979:12706640 +g1,6129:31966991,26332979 +) +(1,6130:7246811,26999157:24720180,404226,6290 +h1,6130:7246811,26999157:0,0,0 +h1,6130:7562957,26999157:0,0,0 +k1,6130:31966991,26999157:24404034 +g1,6130:31966991,26999157 +) +] +) +g1,6132:31966991,27005447 +g1,6132:7246811,27005447 +g1,6132:7246811,27005447 +g1,6132:31966991,27005447 +g1,6132:31966991,27005447 +) +h1,6132:7246811,27202055:0,0,0 +v1,6136:7246811,28916809:0,393216,0 +(1,6142:7246811,30463073:24720180,1939480,196608 +g1,6142:7246811,30463073 +g1,6142:7246811,30463073 +g1,6142:7050203,30463073 +(1,6142:7050203,30463073:0,1939480,196608 +r1,6146:32163599,30463073:25113396,2136088,196608 +k1,6142:7050203,30463073:-25113396 +) +(1,6142:7050203,30463073:25113396,1939480,196608 +[1,6142:7246811,30463073:24720180,1742872,0 +(1,6138:7246811,29124427:24720180,404226,6290 +(1,6137:7246811,29124427:0,0,0 +g1,6137:7246811,29124427 +g1,6137:7246811,29124427 +g1,6137:6919131,29124427 +(1,6137:6919131,29124427:0,0,0 +) +g1,6137:7246811,29124427 +) +g1,6138:7879103,29124427 +g1,6138:8827540,29124427 +g1,6138:10408269,29124427 +k1,6138:10408269,29124427:23593 +h1,6138:12328736,29124427:0,0,0 +k1,6138:31966992,29124427:19638256 +g1,6138:31966992,29124427 +) +(1,6139:7246811,29790605:24720180,410518,76021 +h1,6139:7246811,29790605:0,0,0 +g1,6139:7879103,29790605 +g1,6139:8827541,29790605 +k1,6139:8827541,29790605:0 +h1,6139:11040561,29790605:0,0,0 +k1,6139:31966991,29790605:20926430 +g1,6139:31966991,29790605 +) +(1,6140:7246811,30456783:24720180,404226,6290 +h1,6140:7246811,30456783:0,0,0 +h1,6140:7562957,30456783:0,0,0 +k1,6140:31966991,30456783:24404034 +g1,6140:31966991,30456783 +) +] +) +g1,6142:31966991,30463073 +g1,6142:7246811,30463073 +g1,6142:7246811,30463073 +g1,6142:31966991,30463073 +g1,6142:31966991,30463073 +) +h1,6142:7246811,30659681:0,0,0 +(1,6146:7246811,32025457:24720180,513147,115847 +h1,6145:7246811,32025457:983040,0,0 +k1,6145:11506449,32025457:177400 +k1,6145:13109257,32025457:177400 +k1,6145:14390939,32025457:177400 +k1,6145:15316105,32025457:177400 +k1,6145:18285339,32025457:177400 +k1,6145:19856691,32025457:177401 +(1,6145:19856691,32025457:0,452978,115847 +r1,6146:24435499,32025457:4578808,568825,115847 +k1,6145:19856691,32025457:-4578808 +) +(1,6145:19856691,32025457:4578808,452978,115847 +k1,6145:19856691,32025457:3277 +h1,6145:24432222,32025457:0,411205,112570 +) +k1,6145:24786569,32025457:177400 +k1,6145:26005991,32025457:177400 +k1,6145:26539251,32025457:177400 +k1,6145:28694528,32025457:177400 +k1,6145:29531220,32025457:177400 +k1,6145:30727705,32025457:177400 +k1,6146:31966991,32025457:0 +) +(1,6146:7246811,32866945:24720180,505283,126483 +k1,6145:8743759,32866945:281255 +k1,6145:12014767,32866945:281256 +k1,6145:13315107,32866945:281255 +(1,6145:13315107,32866945:0,459977,115847 +r1,6146:14376796,32866945:1061689,575824,115847 +k1,6145:13315107,32866945:-1061689 +) +(1,6145:13315107,32866945:1061689,459977,115847 +k1,6145:13315107,32866945:3277 +h1,6145:14373519,32866945:0,411205,112570 +) +k1,6145:14658052,32866945:281256 +k1,6145:16354229,32866945:281255 +k1,6145:18490809,32866945:281256 +k1,6145:20455029,32866945:281255 +k1,6145:22146423,32866945:281255 +k1,6145:23619124,32866945:281256 +k1,6145:24919464,32866945:281255 +k1,6145:28505701,32866945:281256 +(1,6145:28505701,32866945:0,452978,115847 +r1,6146:30270814,32866945:1765113,568825,115847 +k1,6145:28505701,32866945:-1765113 +) +(1,6145:28505701,32866945:1765113,452978,115847 +k1,6145:28505701,32866945:3277 +h1,6145:30267537,32866945:0,411205,112570 +) +k1,6145:30552069,32866945:281255 +k1,6145:31966991,32866945:0 +) +(1,6146:7246811,33708433:24720180,513147,134348 +k1,6145:9032837,33708433:202216 +k1,6145:10254139,33708433:202217 +k1,6145:13793448,33708433:202216 +k1,6145:17182025,33708433:202217 +k1,6145:19119634,33708433:202216 +k1,6145:22061255,33708433:202216 +k1,6145:23946437,33708433:202217 +k1,6145:25558792,33708433:202216 +k1,6145:26952454,33708433:202217 +k1,6145:29850166,33708433:202216 +(1,6145:29850166,33708433:0,459977,115847 +r1,6146:31966991,33708433:2116825,575824,115847 +k1,6145:29850166,33708433:-2116825 +) +(1,6145:29850166,33708433:2116825,459977,115847 +k1,6145:29850166,33708433:3277 +h1,6145:31963714,33708433:0,411205,112570 +) +k1,6145:31966991,33708433:0 +) +(1,6146:7246811,34549921:24720180,513147,126483 +k1,6145:9097040,34549921:167264 +k1,6145:10848113,34549921:167263 +k1,6145:12212064,34549921:167264 +(1,6145:12212064,34549921:0,459977,115847 +r1,6146:13273753,34549921:1061689,575824,115847 +k1,6145:12212064,34549921:-1061689 +) +(1,6145:12212064,34549921:1061689,459977,115847 +k1,6145:12212064,34549921:3277 +h1,6145:13270476,34549921:0,411205,112570 +) +k1,6145:13441017,34549921:167264 +k1,6145:15023202,34549921:167263 +k1,6145:17650688,34549921:167264 +k1,6145:22204932,34549921:167264 +k1,6145:23031488,34549921:167264 +k1,6145:25830022,34549921:167263 +k1,6145:26648714,34549921:167264 +(1,6145:26648714,34549921:0,452978,115847 +r1,6146:27006980,34549921:358266,568825,115847 +k1,6145:26648714,34549921:-358266 +) +(1,6145:26648714,34549921:358266,452978,115847 +k1,6145:26648714,34549921:3277 +h1,6145:27003703,34549921:0,411205,112570 +) +k1,6145:27174244,34549921:167264 +k1,6145:29024472,34549921:167263 +k1,6145:30775546,34549921:167264 +k1,6145:31966991,34549921:0 +) +(1,6146:7246811,35391409:24720180,513147,126483 +k1,6145:8465381,35391409:199485 +k1,6145:11969848,35391409:199486 +k1,6145:13858851,35391409:199485 +k1,6145:15473259,35391409:199486 +k1,6145:18807791,35391409:199485 +k1,6145:20026362,35391409:199486 +k1,6145:22368219,35391409:199485 +k1,6145:25643310,35391409:199486 +k1,6145:27268203,35391409:199485 +k1,6145:28674862,35391409:199486 +k1,6145:30524544,35391409:199485 +k1,6145:31966991,35391409:0 +) +(1,6146:7246811,36232897:24720180,513147,126483 +k1,6145:8284483,36232897:240754 +k1,6145:10280947,36232897:240754 +k1,6145:12365229,36232897:240754 +k1,6145:14048430,36232897:240754 +k1,6145:15308269,36232897:240754 +k1,6145:17934534,36232897:240754 +k1,6145:19505669,36232897:240754 +k1,6145:21886829,36232897:240754 +k1,6145:23075234,36232897:240754 +k1,6145:23730789,36232897:240712 +k1,6145:25514261,36232897:240754 +k1,6145:26564385,36232897:240754 +k1,6145:27786213,36232897:240754 +k1,6145:30080865,36232897:240754 +k1,6145:31966991,36232897:0 +) +(1,6146:7246811,37074385:24720180,505283,95026 +g1,6145:10334867,37074385 +g1,6145:11331014,37074385 +k1,6146:31966992,37074385:19093260 +g1,6146:31966992,37074385 +) +] +) +] +r1,6146:32583029,37759235:26214,31898354,0 +) +] +) +) +g1,6146:32583029,37169411 +) +h1,6146:6630773,37785449:0,0,0 +(1,6149:6630773,40400997:25952256,564462,147783 +(1,6149:6630773,40400997:2450326,534184,12975 +g1,6149:6630773,40400997 +g1,6149:9081099,40400997 +) +g1,6149:12074981,40400997 +g1,6149:13044587,40400997 +k1,6149:32583030,40400997:17566792 +g1,6149:32583030,40400997 +) +(1,6153:6630773,41635701:25952256,513147,7863 +k1,6152:7729211,41635701:200595 +k1,6152:8948890,41635701:200594 +k1,6152:13788123,41635701:200595 +k1,6152:16276580,41635701:200595 +k1,6152:19993836,41635701:200594 +k1,6152:21634257,41635701:200595 +k1,6152:23690176,41635701:200595 +k1,6152:24995052,41635701:200594 +k1,6152:25943413,41635701:200595 +k1,6152:28435147,41635701:200595 +k1,6152:29589290,41635701:200594 +k1,6152:30922347,41635701:200595 +k1,6152:32583029,41635701:0 +) +(1,6153:6630773,42477189:25952256,513147,126483 +g1,6152:7600705,42477189 +g1,6152:10461351,42477189 +g1,6152:12054531,42477189 +g1,6152:13426199,42477189 +(1,6152:13426199,42477189:0,459977,115847 +r1,6152:14487888,42477189:1061689,575824,115847 +k1,6152:13426199,42477189:-1061689 +) +(1,6152:13426199,42477189:1061689,459977,115847 +k1,6152:13426199,42477189:3277 +h1,6152:14484611,42477189:0,411205,112570 +) +g1,6152:14687117,42477189 +g1,6152:16805240,42477189 +g1,6152:17958018,42477189 +g1,6152:19463380,42477189 +g1,6152:21591989,42477189 +g1,6152:22147078,42477189 +g1,6152:24433629,42477189 +g1,6152:25292150,42477189 +g1,6152:26880742,42477189 +g1,6152:27731399,42477189 +g1,6152:29527085,42477189 +k1,6153:32583029,42477189:1488323 +g1,6153:32583029,42477189 +) +v1,6155:6630773,43667655:0,393216,0 +(1,6173:6630773,45355477:25952256,2081038,196608 +g1,6173:6630773,45355477 +g1,6173:6630773,45355477 +g1,6173:6434165,45355477 +(1,6173:6434165,45355477:0,2081038,196608 +r1,6173:32779637,45355477:26345472,2277646,196608 +k1,6173:6434165,45355477:-26345472 +) +(1,6173:6434165,45355477:26345472,2081038,196608 +[1,6173:6630773,45355477:25952256,1884430,0 +(1,6157:6630773,43875273:25952256,404226,82312 +(1,6156:6630773,43875273:0,0,0 +g1,6156:6630773,43875273 +g1,6156:6630773,43875273 +g1,6156:6303093,43875273 +(1,6156:6303093,43875273:0,0,0 +) +g1,6156:6630773,43875273 +) +g1,6157:7263065,43875273 +g1,6157:8211503,43875273 +g1,6157:12321398,43875273 +h1,6157:13269835,43875273:0,0,0 +k1,6157:32583029,43875273:19313194 +g1,6157:32583029,43875273 +) +(1,6158:6630773,44541451:25952256,328204,0 +h1,6158:6630773,44541451:0,0,0 +h1,6158:6946919,44541451:0,0,0 +k1,6158:32583029,44541451:25636110 +g1,6158:32583029,44541451 +) +(1,6172:6630773,45273165:25952256,404226,82312 +(1,6160:6630773,45273165:0,0,0 +g1,6160:6630773,45273165 +g1,6160:6630773,45273165 +g1,6160:6303093,45273165 +(1,6160:6303093,45273165:0,0,0 +) +g1,6160:6630773,45273165 +) +g1,6172:7579210,45273165 +g1,6172:7895356,45273165 +g1,6172:8211502,45273165 +g1,6172:8527648,45273165 +g1,6172:8843794,45273165 +g1,6172:9159940,45273165 +g1,6172:9476086,45273165 +g1,6172:11056815,45273165 +g1,6172:12637544,45273165 +g1,6172:14218273,45273165 +g1,6172:15799002,45273165 +k1,6172:15799002,45273165:0 +h1,6172:17063585,45273165:0,0,0 +k1,6172:32583029,45273165:15519444 +g1,6172:32583029,45273165 +) +] +) +g1,6173:32583029,45355477 +g1,6173:6630773,45355477 +g1,6173:6630773,45355477 +g1,6173:32583029,45355477 +g1,6173:32583029,45355477 +) +] +(1,6173:32583029,45706769:0,0,0 +g1,6173:32583029,45706769 +) +) +] +(1,6173:6630773,47279633:25952256,0,0 +h1,6173:6630773,47279633:25952256,0,0 +) +] +h1,6173:4262630,4025873:0,0,0 +] +!22514 }116 -Input:844:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:845:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:846:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:847:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:848:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:849:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:850:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:851:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:852:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:853:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:854:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:855:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:856:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:857:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:858:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:859:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:860:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:861:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:862:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:863:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:864:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:865:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1882 +Input:840:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:841:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:842:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:843:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:844:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:845:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:846:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:847:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:848:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:849:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:850:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:851:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:852:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:853:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:854:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:855:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:856:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:857:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:858:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:859:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:860:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:861:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2014 {117 -[1,6243:4262630,47279633:28320399,43253760,0 -(1,6243:4262630,4025873:0,0,0 -[1,6243:-473657,4025873:25952256,0,0 -(1,6243:-473657,-710414:25952256,0,0 -h1,6243:-473657,-710414:0,0,0 -(1,6243:-473657,-710414:0,0,0 -(1,6243:-473657,-710414:0,0,0 -g1,6243:-473657,-710414 -(1,6243:-473657,-710414:65781,0,65781 -g1,6243:-407876,-710414 -[1,6243:-407876,-644633:0,0,0 +[1,6249:4262630,47279633:28320399,43253760,0 +(1,6249:4262630,4025873:0,0,0 +[1,6249:-473657,4025873:25952256,0,0 +(1,6249:-473657,-710414:25952256,0,0 +h1,6249:-473657,-710414:0,0,0 +(1,6249:-473657,-710414:0,0,0 +(1,6249:-473657,-710414:0,0,0 +g1,6249:-473657,-710414 +(1,6249:-473657,-710414:65781,0,65781 +g1,6249:-407876,-710414 +[1,6249:-407876,-644633:0,0,0 ] ) -k1,6243:-473657,-710414:-65781 +k1,6249:-473657,-710414:-65781 ) ) -k1,6243:25478599,-710414:25952256 -g1,6243:25478599,-710414 +k1,6249:25478599,-710414:25952256 +g1,6249:25478599,-710414 ) ] ) -[1,6243:6630773,47279633:25952256,43253760,0 -[1,6243:6630773,4812305:25952256,786432,0 -(1,6243:6630773,4812305:25952256,505283,134348 -(1,6243:6630773,4812305:25952256,505283,134348 -g1,6243:3078558,4812305 -[1,6243:3078558,4812305:0,0,0 -(1,6243:3078558,2439708:0,1703936,0 -k1,6243:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6243:2537886,2439708:1179648,16384,0 +[1,6249:6630773,47279633:25952256,43253760,0 +[1,6249:6630773,4812305:25952256,786432,0 +(1,6249:6630773,4812305:25952256,505283,134348 +(1,6249:6630773,4812305:25952256,505283,134348 +g1,6249:3078558,4812305 +[1,6249:3078558,4812305:0,0,0 +(1,6249:3078558,2439708:0,1703936,0 +k1,6249:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6249:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6243:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6249:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6243:3078558,4812305:0,0,0 -(1,6243:3078558,2439708:0,1703936,0 -g1,6243:29030814,2439708 -g1,6243:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6243:36151628,1915420:16384,1179648,0 +[1,6249:3078558,4812305:0,0,0 +(1,6249:3078558,2439708:0,1703936,0 +g1,6249:29030814,2439708 +g1,6249:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6249:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6243:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6249:37855564,2439708:1179648,16384,0 ) ) -k1,6243:3078556,2439708:-34777008 +k1,6249:3078556,2439708:-34777008 ) ] -[1,6243:3078558,4812305:0,0,0 -(1,6243:3078558,49800853:0,16384,2228224 -k1,6243:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6243:2537886,49800853:1179648,16384,0 +[1,6249:3078558,4812305:0,0,0 +(1,6249:3078558,49800853:0,16384,2228224 +k1,6249:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6249:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6243:3078558,51504789:16384,1179648,0 -) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 -) -] -) -) -) -] -[1,6243:3078558,4812305:0,0,0 -(1,6243:3078558,49800853:0,16384,2228224 -g1,6243:29030814,49800853 -g1,6243:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6243:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6243:37855564,49800853:1179648,16384,0 -) -) -k1,6243:3078556,49800853:-34777008 -) -] -g1,6243:6630773,4812305 -k1,6243:18752969,4812305:10926819 -g1,6243:20139710,4812305 -g1,6243:20788516,4812305 -g1,6243:24102671,4812305 -g1,6243:28605649,4812305 -g1,6243:30015328,4812305 -) -) -] -[1,6243:6630773,45706769:25952256,40108032,0 -(1,6243:6630773,45706769:25952256,40108032,0 -(1,6243:6630773,45706769:0,0,0 -g1,6243:6630773,45706769 -) -[1,6243:6630773,45706769:25952256,40108032,0 -v1,6167:6630773,6254097:0,393216,0 -(1,6167:6630773,12539629:25952256,6678748,196608 -g1,6167:6630773,12539629 -g1,6167:6630773,12539629 -g1,6167:6434165,12539629 -(1,6167:6434165,12539629:0,6678748,196608 -r1,6167:32779637,12539629:26345472,6875356,196608 -k1,6167:6434165,12539629:-26345472 -) -(1,6167:6434165,12539629:26345472,6678748,196608 -[1,6167:6630773,12539629:25952256,6482140,0 -(1,6166:6630773,6461715:25952256,404226,82312 -h1,6166:6630773,6461715:0,0,0 -g1,6166:7579210,6461715 -g1,6166:7895356,6461715 -g1,6166:9476084,6461715 -g1,6166:9792230,6461715 -g1,6166:10108376,6461715 -g1,6166:10424522,6461715 -g1,6166:11056814,6461715 -g1,6166:11372960,6461715 -g1,6166:11689106,6461715 -g1,6166:12637543,6461715 -g1,6166:12953689,6461715 -g1,6166:13269835,6461715 -g1,6166:14218272,6461715 -g1,6166:14534418,6461715 -g1,6166:14850564,6461715 -g1,6166:15799001,6461715 -g1,6166:16115147,6461715 -g1,6166:16431293,6461715 -h1,6166:17063584,6461715:0,0,0 -k1,6166:32583029,6461715:15519445 -g1,6166:32583029,6461715 -) -(1,6166:6630773,7127893:25952256,404226,82312 -h1,6166:6630773,7127893:0,0,0 -g1,6166:7579210,7127893 -g1,6166:7895356,7127893 -g1,6166:9476084,7127893 -g1,6166:9792230,7127893 -g1,6166:10108376,7127893 -g1,6166:10424522,7127893 -g1,6166:11056814,7127893 -g1,6166:11372960,7127893 -g1,6166:11689106,7127893 -g1,6166:12637543,7127893 -g1,6166:12953689,7127893 -g1,6166:13269835,7127893 -g1,6166:14218272,7127893 -g1,6166:14534418,7127893 -g1,6166:14850564,7127893 -g1,6166:15799001,7127893 -g1,6166:16115147,7127893 -g1,6166:16431293,7127893 -h1,6166:17063584,7127893:0,0,0 -k1,6166:32583029,7127893:15519445 -g1,6166:32583029,7127893 -) -(1,6166:6630773,7794071:25952256,404226,82312 -h1,6166:6630773,7794071:0,0,0 -g1,6166:7579210,7794071 -g1,6166:7895356,7794071 -g1,6166:9476084,7794071 -g1,6166:9792230,7794071 -g1,6166:10108376,7794071 -g1,6166:10424522,7794071 -g1,6166:11056814,7794071 -g1,6166:11372960,7794071 -g1,6166:11689106,7794071 -g1,6166:12637543,7794071 -g1,6166:12953689,7794071 -g1,6166:13269835,7794071 -g1,6166:14218272,7794071 -g1,6166:14534418,7794071 -g1,6166:14850564,7794071 -g1,6166:15799001,7794071 -g1,6166:16115147,7794071 -g1,6166:16431293,7794071 -h1,6166:17063584,7794071:0,0,0 -k1,6166:32583029,7794071:15519445 -g1,6166:32583029,7794071 -) -(1,6166:6630773,8460249:25952256,404226,82312 -h1,6166:6630773,8460249:0,0,0 -g1,6166:7579210,8460249 -g1,6166:7895356,8460249 -g1,6166:9476084,8460249 -g1,6166:9792230,8460249 -g1,6166:10108376,8460249 -g1,6166:10424522,8460249 -g1,6166:11056814,8460249 -g1,6166:11372960,8460249 -g1,6166:11689106,8460249 -g1,6166:12637543,8460249 -g1,6166:12953689,8460249 -g1,6166:13269835,8460249 -g1,6166:14218272,8460249 -g1,6166:14534418,8460249 -g1,6166:14850564,8460249 -g1,6166:15799001,8460249 -g1,6166:16115147,8460249 -g1,6166:16431293,8460249 -h1,6166:17063584,8460249:0,0,0 -k1,6166:32583029,8460249:15519445 -g1,6166:32583029,8460249 -) -(1,6166:6630773,9126427:25952256,404226,82312 -h1,6166:6630773,9126427:0,0,0 -g1,6166:7579210,9126427 -g1,6166:7895356,9126427 -g1,6166:9476084,9126427 -g1,6166:9792230,9126427 -g1,6166:10108376,9126427 -g1,6166:10424522,9126427 -g1,6166:11056814,9126427 -g1,6166:11372960,9126427 -g1,6166:11689106,9126427 -g1,6166:12637543,9126427 -g1,6166:12953689,9126427 -g1,6166:13269835,9126427 -g1,6166:14218272,9126427 -g1,6166:14534418,9126427 -g1,6166:14850564,9126427 -g1,6166:15799001,9126427 -g1,6166:16115147,9126427 -g1,6166:16431293,9126427 -h1,6166:17063584,9126427:0,0,0 -k1,6166:32583029,9126427:15519445 -g1,6166:32583029,9126427 -) -(1,6166:6630773,9792605:25952256,404226,82312 -h1,6166:6630773,9792605:0,0,0 -g1,6166:7579210,9792605 -g1,6166:7895356,9792605 -g1,6166:9476084,9792605 -g1,6166:9792230,9792605 -g1,6166:10108376,9792605 -g1,6166:10424522,9792605 -g1,6166:11056814,9792605 -g1,6166:11372960,9792605 -g1,6166:11689106,9792605 -g1,6166:12637543,9792605 -g1,6166:12953689,9792605 -g1,6166:13269835,9792605 -g1,6166:14218272,9792605 -g1,6166:14534418,9792605 -g1,6166:14850564,9792605 -g1,6166:15799001,9792605 -g1,6166:16115147,9792605 -g1,6166:16431293,9792605 -h1,6166:17063584,9792605:0,0,0 -k1,6166:32583029,9792605:15519445 -g1,6166:32583029,9792605 -) -(1,6166:6630773,10458783:25952256,404226,82312 -h1,6166:6630773,10458783:0,0,0 -g1,6166:7579210,10458783 -g1,6166:7895356,10458783 -g1,6166:9476084,10458783 -g1,6166:9792230,10458783 -g1,6166:10108376,10458783 -g1,6166:10424522,10458783 -g1,6166:11056814,10458783 -g1,6166:11372960,10458783 -g1,6166:11689106,10458783 -g1,6166:12637543,10458783 -g1,6166:12953689,10458783 -g1,6166:13269835,10458783 -g1,6166:14218272,10458783 -g1,6166:14534418,10458783 -g1,6166:14850564,10458783 -g1,6166:15799001,10458783 -g1,6166:16115147,10458783 -g1,6166:16431293,10458783 -h1,6166:17063584,10458783:0,0,0 -k1,6166:32583029,10458783:15519445 -g1,6166:32583029,10458783 -) -(1,6166:6630773,11124961:25952256,404226,82312 -h1,6166:6630773,11124961:0,0,0 -g1,6166:7579210,11124961 -g1,6166:7895356,11124961 -g1,6166:9476084,11124961 -g1,6166:9792230,11124961 -g1,6166:10108376,11124961 -g1,6166:10424522,11124961 -g1,6166:11056814,11124961 -g1,6166:11372960,11124961 -g1,6166:11689106,11124961 -g1,6166:12637543,11124961 -g1,6166:12953689,11124961 -g1,6166:13269835,11124961 -g1,6166:14218272,11124961 -g1,6166:14534418,11124961 -g1,6166:14850564,11124961 -g1,6166:15799001,11124961 -g1,6166:16115147,11124961 -g1,6166:16431293,11124961 -h1,6166:17063584,11124961:0,0,0 -k1,6166:32583029,11124961:15519445 -g1,6166:32583029,11124961 -) -(1,6166:6630773,11791139:25952256,404226,82312 -h1,6166:6630773,11791139:0,0,0 -g1,6166:7579210,11791139 -g1,6166:7895356,11791139 -g1,6166:9476084,11791139 -g1,6166:9792230,11791139 -g1,6166:10108376,11791139 -g1,6166:10424522,11791139 -g1,6166:11056814,11791139 -g1,6166:11372960,11791139 -g1,6166:11689106,11791139 -g1,6166:12637543,11791139 -g1,6166:12953689,11791139 -g1,6166:13269835,11791139 -g1,6166:14218272,11791139 -g1,6166:14534418,11791139 -g1,6166:14850564,11791139 -g1,6166:15799001,11791139 -g1,6166:16115147,11791139 -g1,6166:16431293,11791139 -h1,6166:17063584,11791139:0,0,0 -k1,6166:32583029,11791139:15519445 -g1,6166:32583029,11791139 -) -(1,6166:6630773,12457317:25952256,404226,82312 -h1,6166:6630773,12457317:0,0,0 -g1,6166:7579210,12457317 -g1,6166:9476084,12457317 -g1,6166:9792230,12457317 -g1,6166:10108376,12457317 -g1,6166:11056813,12457317 -g1,6166:11372959,12457317 -g1,6166:11689105,12457317 -g1,6166:12637542,12457317 -g1,6166:12953688,12457317 -g1,6166:13269834,12457317 -g1,6166:14218271,12457317 -g1,6166:14534417,12457317 -g1,6166:14850563,12457317 -g1,6166:15799000,12457317 -g1,6166:16115146,12457317 -g1,6166:16431292,12457317 -h1,6166:17063583,12457317:0,0,0 -k1,6166:32583029,12457317:15519446 -g1,6166:32583029,12457317 -) -] -) -g1,6167:32583029,12539629 -g1,6167:6630773,12539629 -g1,6167:6630773,12539629 -g1,6167:32583029,12539629 -g1,6167:32583029,12539629 -) -h1,6167:6630773,12736237:0,0,0 -v1,6171:6630773,14085529:0,393216,0 -(1,6184:6630773,19097950:25952256,5405637,196608 -g1,6184:6630773,19097950 -g1,6184:6630773,19097950 -g1,6184:6434165,19097950 -(1,6184:6434165,19097950:0,5405637,196608 -r1,6184:32779637,19097950:26345472,5602245,196608 -k1,6184:6434165,19097950:-26345472 -) -(1,6184:6434165,19097950:26345472,5405637,196608 -[1,6184:6630773,19097950:25952256,5209029,0 -(1,6173:6630773,14293147:25952256,404226,76021 -(1,6172:6630773,14293147:0,0,0 -g1,6172:6630773,14293147 -g1,6172:6630773,14293147 -g1,6172:6303093,14293147 -(1,6172:6303093,14293147:0,0,0 -) -g1,6172:6630773,14293147 -) -g1,6173:9159939,14293147 -g1,6173:10108377,14293147 -k1,6173:10108377,14293147:0 -h1,6173:12953688,14293147:0,0,0 -k1,6173:32583028,14293147:19629340 -g1,6173:32583028,14293147 -) -(1,6174:6630773,14959325:25952256,410518,76021 -h1,6174:6630773,14959325:0,0,0 -g1,6174:7895356,14959325 -g1,6174:8843793,14959325 -g1,6174:9792230,14959325 -g1,6174:13269834,14959325 -h1,6174:13585980,14959325:0,0,0 -k1,6174:32583028,14959325:18997048 -g1,6174:32583028,14959325 -) -(1,6175:6630773,15625503:25952256,404226,76021 -h1,6175:6630773,15625503:0,0,0 -g1,6175:6946919,15625503 -g1,6175:7263065,15625503 -g1,6175:10740668,15625503 -g1,6175:11689106,15625503 -h1,6175:12005252,15625503:0,0,0 -k1,6175:32583028,15625503:20577776 -g1,6175:32583028,15625503 -) -(1,6176:6630773,16291681:25952256,410518,107478 -h1,6176:6630773,16291681:0,0,0 -g1,6176:6946919,16291681 -g1,6176:7263065,16291681 -g1,6176:8527648,16291681 -g1,6176:9476085,16291681 -g1,6176:10424522,16291681 -k1,6176:10424522,16291681:0 -h1,6176:13585980,16291681:0,0,0 -k1,6176:32583028,16291681:18997048 -g1,6176:32583028,16291681 -) -(1,6177:6630773,16957859:25952256,404226,107478 -h1,6177:6630773,16957859:0,0,0 -g1,6177:6946919,16957859 -g1,6177:7263065,16957859 -g1,6177:7579211,16957859 -g1,6177:7895357,16957859 -g1,6177:11372960,16957859 -g1,6177:12321398,16957859 -g1,6177:15799001,16957859 -g1,6177:16431293,16957859 -g1,6177:18012022,16957859 -h1,6177:18644313,16957859:0,0,0 -k1,6177:32583029,16957859:13938716 -g1,6177:32583029,16957859 -) -(1,6178:6630773,17624037:25952256,404226,76021 -h1,6178:6630773,17624037:0,0,0 -h1,6178:6946919,17624037:0,0,0 -k1,6178:32583029,17624037:25636110 -g1,6178:32583029,17624037 -) -(1,6179:6630773,18290215:25952256,404226,101187 -h1,6179:6630773,18290215:0,0,0 -k1,6179:6630773,18290215:0 -h1,6179:11056812,18290215:0,0,0 -k1,6179:32583028,18290215:21526216 -g1,6179:32583028,18290215 -) -(1,6183:6630773,19021929:25952256,404226,76021 -(1,6181:6630773,19021929:0,0,0 -g1,6181:6630773,19021929 -g1,6181:6630773,19021929 -g1,6181:6303093,19021929 -(1,6181:6303093,19021929:0,0,0 -) -g1,6181:6630773,19021929 -) -g1,6183:7579210,19021929 -g1,6183:7895356,19021929 -g1,6183:9159939,19021929 -g1,6183:10424522,19021929 -g1,6183:11689105,19021929 -g1,6183:12953688,19021929 -g1,6183:14218271,19021929 -g1,6183:15482854,19021929 -g1,6183:16747437,19021929 -g1,6183:18012020,19021929 -g1,6183:19276603,19021929 -g1,6183:20541186,19021929 -h1,6183:21489623,19021929:0,0,0 -k1,6183:32583029,19021929:11093406 -g1,6183:32583029,19021929 -) -] -) -g1,6184:32583029,19097950 -g1,6184:6630773,19097950 -g1,6184:6630773,19097950 -g1,6184:32583029,19097950 -g1,6184:32583029,19097950 -) -h1,6184:6630773,19294558:0,0,0 -(1,6188:6630773,20477604:25952256,505283,134348 -h1,6187:6630773,20477604:983040,0,0 -k1,6187:9055277,20477604:244777 -k1,6187:10796241,20477604:244777 -k1,6187:12896342,20477604:244777 -k1,6187:13672615,20477604:244776 -k1,6187:15271366,20477604:244777 -k1,6187:18022895,20477604:244777 -k1,6187:18725769,20477604:244777 -k1,6187:20103008,20477604:244777 -k1,6187:21944242,20477604:244777 -k1,6187:23582969,20477604:244776 -k1,6187:24959553,20477604:244777 -k1,6187:30495707,20477604:244777 -k1,6187:32583029,20477604:0 -) -(1,6188:6630773,21319092:25952256,513147,126483 -k1,6187:8205956,21319092:181232 -k1,6187:8999950,21319092:181232 -k1,6187:10676714,21319092:181232 -k1,6187:12014656,21319092:181232 -k1,6187:14578777,21319092:181232 -k1,6187:15951454,21319092:181232 -k1,6187:17289397,21319092:181233 -k1,6187:18848196,21319092:181232 -k1,6187:21964130,21319092:181232 -k1,6187:25593211,21319092:181232 -k1,6187:26642795,21319092:181232 -k1,6187:28354293,21319092:181232 -k1,6187:30185722,21319092:181232 -k1,6187:32583029,21319092:0 -) -(1,6188:6630773,22160580:25952256,513147,115847 -k1,6187:10807571,22160580:201384 -(1,6187:10807571,22160580:0,452978,115847 -r1,6187:13276108,22160580:2468537,568825,115847 -k1,6187:10807571,22160580:-2468537 -) -(1,6187:10807571,22160580:2468537,452978,115847 -g1,6187:12569407,22160580 -h1,6187:13272831,22160580:0,411205,112570 -) -k1,6187:13477492,22160580:201384 -k1,6187:15829768,22160580:201384 -k1,6187:17187861,22160580:201383 -k1,6187:18480419,22160580:201384 -k1,6187:19297841,22160580:201384 -k1,6187:20518310,22160580:201384 -k1,6187:22980686,22160580:201384 -k1,6187:24201155,22160580:201384 -k1,6187:25559249,22160580:201384 -k1,6187:26570003,22160580:201384 -k1,6187:27790471,22160580:201383 -k1,6187:29297988,22160580:201384 -k1,6187:30703268,22160580:201384 -k1,6187:31563944,22160580:201384 -k1,6187:32583029,22160580:0 -) -(1,6188:6630773,23002068:25952256,505283,115847 -k1,6187:9135902,23002068:263798 -k1,6187:11956259,23002068:263798 -(1,6187:11956259,23002068:0,452978,115847 -r1,6187:14073084,23002068:2116825,568825,115847 -k1,6187:11956259,23002068:-2116825 -) -(1,6187:11956259,23002068:2116825,452978,115847 -g1,6187:13718095,23002068 -h1,6187:14069807,23002068:0,411205,112570 -) -k1,6187:14336883,23002068:263799 -k1,6187:16751573,23002068:263798 -k1,6187:18219267,23002068:263798 -k1,6187:19813446,23002068:263798 -k1,6187:21268689,23002068:263798 -(1,6187:21268689,23002068:0,452978,115847 -r1,6187:23737227,23002068:2468538,568825,115847 -k1,6187:21268689,23002068:-2468538 -) -(1,6187:21268689,23002068:2468538,452978,115847 -g1,6187:22327102,23002068 -g1,6187:23030526,23002068 -h1,6187:23733950,23002068:0,411205,112570 -) -k1,6187:24001025,23002068:263798 -k1,6187:26415716,23002068:263799 -k1,6187:29062403,23002068:263798 -k1,6187:30672311,23002068:263798 -k1,6187:31563944,23002068:263798 -k1,6187:32583029,23002068:0 -) -(1,6188:6630773,23843556:25952256,513147,134348 -k1,6187:9555332,23843556:263142 -k1,6187:11847470,23843556:263143 -k1,6187:13129697,23843556:263142 -k1,6187:15073183,23843556:263143 -k1,6187:16003481,23843556:263142 -(1,6187:16003481,23843556:0,452978,115847 -r1,6187:16361747,23843556:358266,568825,115847 -k1,6187:16003481,23843556:-358266 -) -(1,6187:16003481,23843556:358266,452978,115847 -k1,6187:16003481,23843556:3277 -h1,6187:16358470,23843556:0,411205,112570 -) -k1,6187:16624890,23843556:263143 -k1,6187:19459009,23843556:263142 -k1,6187:20669802,23843556:263142 -k1,6187:22384567,23843556:263143 -k1,6187:25364832,23843556:263142 -k1,6187:26287267,23843556:263143 -k1,6187:27569494,23843556:263142 -k1,6187:29534607,23843556:263143 -k1,6187:31386342,23843556:263142 -k1,6187:32583029,23843556:0 -) -(1,6188:6630773,24685044:25952256,513147,134348 -k1,6187:8491584,24685044:180468 -k1,6187:9339208,24685044:180468 -(1,6187:9339208,24685044:0,452978,122846 -r1,6187:9697474,24685044:358266,575824,122846 -k1,6187:9339208,24685044:-358266 -) -(1,6187:9339208,24685044:358266,452978,122846 -k1,6187:9339208,24685044:3277 -h1,6187:9694197,24685044:0,411205,112570 -) -k1,6187:9877942,24685044:180468 -k1,6187:12629387,24685044:180468 -k1,6187:13757506,24685044:180468 -k1,6187:15389596,24685044:180468 -k1,6187:18287187,24685044:180468 -k1,6187:19126947,24685044:180468 -k1,6187:20326499,24685044:180467 -k1,6187:22173548,24685044:180468 -k1,6187:23942609,24685044:180468 -k1,6187:25314522,24685044:180468 -k1,6187:26514075,24685044:180468 -k1,6187:28361124,24685044:180468 -k1,6187:29956514,24685044:180468 -k1,6187:30668479,24685044:180468 -k1,6187:31966991,24685044:180468 -k1,6187:32583029,24685044:0 -) -(1,6188:6630773,25526532:25952256,513147,134348 -g1,6187:7919866,25526532 -g1,6187:9066746,25526532 -g1,6187:10717597,25526532 -g1,6187:13633949,25526532 -g1,6187:14492470,25526532 -g1,6187:15710784,25526532 -g1,6187:17611983,25526532 -g1,6187:19399805,25526532 -g1,6187:20795721,25526532 -g1,6187:22661531,25526532 -g1,6187:24275682,25526532 -g1,6187:26224722,25526532 -(1,6187:26224722,25526532:0,452978,122846 -r1,6187:26582988,25526532:358266,575824,122846 -k1,6187:26224722,25526532:-358266 -) -(1,6187:26224722,25526532:358266,452978,122846 -k1,6187:26224722,25526532:3277 -h1,6187:26579711,25526532:0,411205,112570 -) -g1,6187:26782217,25526532 -g1,6187:29552423,25526532 -k1,6188:32583029,25526532:714564 -g1,6188:32583029,25526532 -) -v1,6190:6630773,26709577:0,393216,0 -(1,6193:6630773,37599232:25952256,11282871,616038 -g1,6193:6630773,37599232 -(1,6193:6630773,37599232:25952256,11282871,616038 -(1,6193:6630773,38215270:25952256,11898909,0 -[1,6193:6630773,38215270:25952256,11898909,0 -(1,6193:6630773,38189056:25952256,11846481,0 -r1,6193:6656987,38189056:26214,11846481,0 -[1,6193:6656987,38189056:25899828,11846481,0 -(1,6193:6656987,37599232:25899828,10666833,0 -[1,6193:7246811,37599232:24720180,10666833,0 -(1,6191:7246811,28216381:24720180,1283982,196608 -(1,6190:7246811,28216381:0,1283982,196608 -r1,6193:9812056,28216381:2565245,1480590,196608 -k1,6190:7246811,28216381:-2565245 -) -(1,6190:7246811,28216381:2565245,1283982,196608 -) -k1,6190:10091555,28216381:279499 -k1,6190:10976607,28216381:279499 -k1,6190:13462048,28216381:279499 -k1,6190:14760633,28216381:279500 -k1,6190:16536319,28216381:279499 -k1,6190:17431856,28216381:279499 -k1,6190:18730440,28216381:279499 -k1,6190:21671356,28216381:279499 -k1,6190:22566893,28216381:279499 -k1,6190:23865477,28216381:279499 -k1,6190:25293168,28216381:279500 -k1,6190:27543335,28216381:279499 -k1,6190:29678158,28216381:279499 -k1,6190:30682485,28216381:279499 -k1,6190:31966991,28216381:0 -) -(1,6191:7246811,29057869:24720180,513147,126483 -k1,6190:7979081,29057869:274173 -k1,6190:9948671,29057869:274174 -k1,6190:11241929,29057869:274173 -k1,6190:13526747,29057869:274173 -k1,6190:15176521,29057869:274173 -k1,6190:16066733,29057869:274174 -k1,6190:17359991,29057869:274173 -k1,6190:18940297,29057869:274173 -k1,6190:20869254,29057869:274173 -k1,6190:23856619,29057869:274174 -k1,6190:24797948,29057869:274173 -(1,6190:24797948,29057869:0,414482,115847 -r1,6193:25156214,29057869:358266,530329,115847 -k1,6190:24797948,29057869:-358266 -) -(1,6190:24797948,29057869:358266,414482,115847 -k1,6190:24797948,29057869:3277 -h1,6190:25152937,29057869:0,411205,112570 -) -k1,6190:25604057,29057869:274173 -k1,6190:26483784,29057869:274174 -k1,6190:29020260,29057869:274173 -k1,6190:30313518,29057869:274173 -k1,6190:31966991,29057869:0 -) -(1,6191:7246811,29899357:24720180,513147,126483 -k1,6190:10123937,29899357:215709 -k1,6190:11064474,29899357:215709 -k1,6190:12564688,29899357:215708 -k1,6190:13238494,29899357:215709 -k1,6190:15149619,29899357:215709 -k1,6190:16384413,29899357:215709 -k1,6190:18610767,29899357:215709 -k1,6190:20202077,29899357:215709 -k1,6190:21033823,29899357:215708 -k1,6190:22268617,29899357:215709 -k1,6190:23632517,29899357:215709 -k1,6190:25503010,29899357:215709 -k1,6190:27252917,29899357:215709 -k1,6190:28135781,29899357:215708 -(1,6190:28135781,29899357:0,414482,115847 -r1,6193:28494047,29899357:358266,530329,115847 -k1,6190:28135781,29899357:-358266 -) -(1,6190:28135781,29899357:358266,414482,115847 -k1,6190:28135781,29899357:3277 -h1,6190:28490770,29899357:0,411205,112570 -) -k1,6190:28883426,29899357:215709 -k1,6190:29704688,29899357:215709 -k1,6190:31966991,29899357:0 -) -(1,6191:7246811,30740845:24720180,505283,126483 -k1,6190:8424190,30740845:158294 -k1,6190:10078670,30740845:158293 -k1,6190:10961792,30740845:158294 -k1,6190:12404591,30740845:158293 -k1,6190:15296392,30740845:158294 -k1,6190:16848637,30740845:158294 -k1,6190:20682189,30740845:158293 -k1,6190:22568012,30740845:158294 -k1,6190:23377734,30740845:158294 -k1,6190:24956192,30740845:158293 -k1,6190:26007742,30740845:158294 -k1,6190:28930344,30740845:158293 -k1,6190:29850166,30740845:158294 -(1,6190:29850166,30740845:0,452978,115847 -r1,6193:31966991,30740845:2116825,568825,115847 -k1,6190:29850166,30740845:-2116825 -) -(1,6190:29850166,30740845:2116825,452978,115847 -k1,6190:29850166,30740845:3277 -h1,6190:31963714,30740845:0,411205,112570 -) -k1,6190:31966991,30740845:0 -) -(1,6191:7246811,31582333:24720180,505283,115847 -g1,6190:8637485,31582333 -(1,6190:8637485,31582333:0,452978,115847 -r1,6193:10754310,31582333:2116825,568825,115847 -k1,6190:8637485,31582333:-2116825 -) -(1,6190:8637485,31582333:2116825,452978,115847 -k1,6190:8637485,31582333:3277 -h1,6190:10751033,31582333:0,411205,112570 -) -k1,6191:31966990,31582333:20831916 -g1,6191:31966990,31582333 -) -(1,6193:7246811,32423821:24720180,513147,134348 -h1,6192:7246811,32423821:983040,0,0 -k1,6192:9599150,32423821:151640 -k1,6192:10769875,32423821:151640 -k1,6192:12417702,32423821:151640 -k1,6192:13739816,32423821:151641 -k1,6192:15699594,32423821:151640 -k1,6192:18629305,32423821:151640 -k1,6192:21367651,32423821:151640 -k1,6192:22205453,32423821:151640 -k1,6192:25196113,32423821:151640 -k1,6192:25813715,32423821:151641 -k1,6192:26984440,32423821:151640 -k1,6192:29621861,32423821:151640 -k1,6192:30432793,32423821:151640 -k1,6192:31966991,32423821:0 -) -(1,6193:7246811,33265309:24720180,513147,134348 -k1,6192:8080553,33265309:217704 -(1,6192:8080553,33265309:0,414482,115847 -r1,6193:8438819,33265309:358266,530329,115847 -k1,6192:8080553,33265309:-358266 -) -(1,6192:8080553,33265309:358266,414482,115847 -k1,6192:8080553,33265309:3277 -h1,6192:8435542,33265309:0,411205,112570 -) -k1,6192:8656523,33265309:217704 -k1,6192:11862669,33265309:217704 -k1,6192:13714186,33265309:217704 -k1,6192:14397851,33265309:217704 -k1,6192:15634640,33265309:217704 -k1,6192:18338125,33265309:217704 -k1,6192:19215120,33265309:217703 -k1,6192:22146015,33265309:217704 -k1,6192:22979757,33265309:217704 -(1,6192:22979757,33265309:0,414482,115847 -r1,6193:23338023,33265309:358266,530329,115847 -k1,6192:22979757,33265309:-358266 -) -(1,6192:22979757,33265309:358266,414482,115847 -k1,6192:22979757,33265309:3277 -h1,6192:23334746,33265309:0,411205,112570 -) -k1,6192:23555727,33265309:217704 -k1,6192:26608518,33265309:217704 -k1,6192:28017667,33265309:217704 -k1,6192:29254456,33265309:217704 -k1,6192:31966991,33265309:0 -) -(1,6193:7246811,34106797:24720180,513147,126483 -k1,6192:9590795,34106797:170810 -k1,6192:10960260,34106797:170811 -k1,6192:13429418,34106797:170810 -k1,6192:14251657,34106797:170811 -k1,6192:15170233,34106797:170810 -k1,6192:18570003,34106797:170811 -k1,6192:19688464,34106797:170810 -k1,6192:22218571,34106797:170811 -k1,6192:25660938,34106797:170810 -k1,6192:27465562,34106797:170811 -k1,6192:29592622,34106797:170810 -k1,6192:31966991,34106797:0 -) -(1,6193:7246811,34948285:24720180,513147,126483 -k1,6192:8002269,34948285:281633 -(1,6192:8002269,34948285:0,414482,115847 -r1,6193:8360535,34948285:358266,530329,115847 -k1,6192:8002269,34948285:-358266 -) -(1,6192:8002269,34948285:358266,414482,115847 -k1,6192:8002269,34948285:3277 -h1,6192:8357258,34948285:0,411205,112570 -) -k1,6192:8642168,34948285:281633 -k1,6192:10115246,34948285:281633 -k1,6192:12165695,34948285:281632 -k1,6192:13889775,34948285:281633 -k1,6192:15826192,34948285:281633 -k1,6192:19148040,34948285:281633 -k1,6192:20513639,34948285:281633 -k1,6192:21446700,34948285:281633 -k1,6192:23408676,34948285:281633 -k1,6192:24996441,34948285:281632 -k1,6192:26826690,34948285:281633 -k1,6192:27759751,34948285:281633 -k1,6192:30112322,34948285:281633 -k1,6192:31966991,34948285:0 -) -(1,6193:7246811,35789773:24720180,513147,126483 -k1,6192:8295135,35789773:238954 -k1,6192:9553174,35789773:238954 -k1,6192:11288316,35789773:238955 -k1,6192:12697743,35789773:238954 -k1,6192:14918506,35789773:238954 -k1,6192:16768990,35789773:238954 -k1,6192:18937325,35789773:238955 -k1,6192:21909786,35789773:238954 -k1,6192:22808032,35789773:238954 -k1,6192:25809329,35789773:238954 -k1,6192:27647362,35789773:238955 -k1,6192:29077761,35789773:238954 -k1,6192:30508160,35789773:238954 -k1,6192:31966991,35789773:0 -) -(1,6193:7246811,36631261:24720180,513147,134348 -k1,6192:9111918,36631261:195250 -k1,6192:10952123,36631261:195251 -k1,6192:12605549,36631261:195250 -k1,6192:14481143,36631261:195251 -k1,6192:16006774,36631261:195250 -k1,6192:16853453,36631261:195251 -k1,6192:19678007,36631261:195250 -k1,6192:20892342,36631261:195250 -k1,6192:22757450,36631261:195251 -k1,6192:23677528,36631261:195250 -k1,6192:25157285,36631261:195251 -k1,6192:27345485,36631261:195250 -k1,6192:29713910,36631261:195251 -k1,6192:30900720,36631261:195250 -k1,6192:31966991,36631261:0 -) -(1,6193:7246811,37472749:24720180,505283,126483 -k1,6193:31966992,37472749:21505640 -g1,6193:31966992,37472749 -) -] -) -] -r1,6193:32583029,38189056:26214,11846481,0 -) -] -) -) -g1,6193:32583029,37599232 -) -h1,6193:6630773,38215270:0,0,0 -v1,6196:6630773,39398315:0,393216,0 -(1,6243:6630773,45116945:25952256,6111846,589824 -g1,6243:6630773,45116945 -(1,6243:6630773,45116945:25952256,6111846,589824 -(1,6243:6630773,45706769:25952256,6701670,0 -[1,6243:6630773,45706769:25952256,6701670,0 -(1,6243:6630773,45706769:25952256,6675456,0 -r1,6243:6656987,45706769:26214,6675456,0 -[1,6243:6656987,45706769:25899828,6675456,0 -(1,6243:6656987,45116945:25899828,5495808,0 -[1,6243:7246811,45116945:24720180,5495808,0 -(1,6198:7246811,40783022:24720180,1161885,196608 -(1,6196:7246811,40783022:0,1161885,196608 -r1,6243:8794447,40783022:1547636,1358493,196608 -k1,6196:7246811,40783022:-1547636 -) -(1,6196:7246811,40783022:1547636,1161885,196608 -) -k1,6196:9030681,40783022:236234 -k1,6196:9744671,40783022:236233 -k1,6196:10999990,40783022:236234 -k1,6196:12705541,40783022:236234 -k1,6196:15427555,40783022:236233 -k1,6196:16323081,40783022:236234 -k1,6196:19606739,40783022:236234 -k1,6196:20374469,40783022:236233 -k1,6196:22181601,40783022:236234 -k1,6196:23609279,40783022:236233 -k1,6196:24864598,40783022:236234 -k1,6196:26597019,40783022:236234 -k1,6196:29666373,40783022:236233 -k1,6196:30515369,40783022:236234 -k1,6196:31966991,40783022:0 -) -(1,6198:7246811,41624510:24720180,513147,134348 -k1,6196:10182731,41624510:218797 -k1,6196:11849873,41624510:218796 -k1,6196:13450169,41624510:218797 -k1,6196:14688050,41624510:218796 -k1,6196:17833030,41624510:218797 -k1,6196:20017251,41624510:218796 -k1,6196:20997576,41624510:218797 -k1,6196:22235457,41624510:218796 -k1,6196:23869176,41624510:218797 -k1,6196:25584159,41624510:218796 -k1,6196:26907238,41624510:218797 -k1,6196:28841767,41624510:218796 -k1,6196:29416424,41624510:218797 -k1,6196:30611051,41624510:218796 -k1,6198:31966991,41624510:0 -) -(1,6198:7246811,42465998:24720180,513147,134348 -k1,6196:10249066,42465998:173066 -k1,6196:11073559,42465998:173065 -k1,6196:12265710,42465998:173066 -k1,6196:13908092,42465998:173065 -k1,6196:16604294,42465998:173066 -k1,6196:18202767,42465998:173065 -k1,6196:19035125,42465998:173066 -k1,6196:19564050,42465998:173065 -k1,6196:21741862,42465998:173066 -k1,6197:23698162,42465998:173065 -k1,6197:26190547,42465998:173066 -k1,6197:27757563,42465998:173065 -k1,6197:30048097,42465998:173066 -k1,6197:31966991,42465998:0 -) -(1,6198:7246811,43307486:24720180,513147,126483 -k1,6197:8116386,43307486:183413 -k1,6197:9318885,43307486:183414 -k1,6197:11168879,43307486:183413 -k1,6197:12767215,43307486:183414 -k1,6197:13482125,43307486:183413 -k1,6197:16498659,43307486:183413 -k1,6197:18283773,43307486:183414 -k1,6197:21945837,43307486:183413 -k1,6197:23332492,43307486:183414 -k1,6197:24047402,43307486:183413 -k1,6197:25249900,43307486:183413 -k1,6197:26768282,43307486:183414 -k1,6197:28614343,43307486:183413 -k1,6197:29449185,43307486:183414 -k1,6197:31019340,43307486:183413 -k1,6197:31966991,43307486:0 -) -(1,6198:7246811,44148974:24720180,513147,134348 -k1,6197:9037493,44148974:222405 -k1,6197:9919191,44148974:222406 -k1,6197:12936707,44148974:222405 -k1,6197:16234717,44148974:222405 -k1,6197:18056200,44148974:222405 -k1,6197:18906441,44148974:222406 -k1,6197:20332087,44148974:222405 -k1,6197:23389579,44148974:222405 -k1,6197:27804322,44148974:222405 -k1,6197:29131010,44148974:222406 -k1,6197:30101181,44148974:222405 -k1,6198:31966991,44148974:0 -) -(1,6198:7246811,44990462:24720180,513147,126483 -k1,6197:8568264,44990462:196200 -k1,6197:10565392,44990462:196199 -k1,6197:11709243,44990462:196200 -k1,6197:12924528,44990462:196200 -k1,6197:14787308,44990462:196199 -k1,6197:16572101,44990462:196200 -k1,6197:17454463,44990462:196200 -k1,6197:18065502,44990462:196196 -k1,6197:19362707,44990462:196200 -k1,6197:19914767,44990462:196200 -k1,6197:22806462,44990462:196199 -(1,6197:22806462,44990462:0,452978,115847 -r1,6243:24571575,44990462:1765113,568825,115847 -k1,6197:22806462,44990462:-1765113 -) -(1,6197:22806462,44990462:1765113,452978,115847 -k1,6197:22806462,44990462:3277 -h1,6197:24568298,44990462:0,411205,112570 -) -k1,6197:24767775,44990462:196200 -k1,6197:26849446,44990462:196200 -k1,6197:29386591,44990462:196199 -k1,6197:30601876,44990462:196200 -k1,6197:31966991,44990462:0 -) -] -) -] -r1,6243:32583029,45706769:26214,6675456,0 -) -] -) -) -g1,6243:32583029,45116945 -) -] -(1,6243:32583029,45706769:0,0,0 -g1,6243:32583029,45706769 -) -) -] -(1,6243:6630773,47279633:25952256,0,0 -h1,6243:6630773,47279633:25952256,0,0 -) -] -h1,6243:4262630,4025873:0,0,0 -] -!30836 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6249:3078558,51504789:16384,1179648,0 +) +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 +) +] +) +) +) +] +[1,6249:3078558,4812305:0,0,0 +(1,6249:3078558,49800853:0,16384,2228224 +g1,6249:29030814,49800853 +g1,6249:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6249:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6249:37855564,49800853:1179648,16384,0 +) +) +k1,6249:3078556,49800853:-34777008 +) +] +g1,6249:6630773,4812305 +k1,6249:18771974,4812305:10945824 +g1,6249:20158715,4812305 +g1,6249:20807521,4812305 +g1,6249:24121676,4812305 +g1,6249:28605649,4812305 +g1,6249:30015328,4812305 +) +) +] +[1,6249:6630773,45706769:25952256,40108032,0 +(1,6249:6630773,45706769:25952256,40108032,0 +(1,6249:6630773,45706769:0,0,0 +g1,6249:6630773,45706769 +) +[1,6249:6630773,45706769:25952256,40108032,0 +v1,6173:6630773,6254097:0,393216,0 +(1,6173:6630773,12539629:25952256,6678748,196608 +g1,6173:6630773,12539629 +g1,6173:6630773,12539629 +g1,6173:6434165,12539629 +(1,6173:6434165,12539629:0,6678748,196608 +r1,6173:32779637,12539629:26345472,6875356,196608 +k1,6173:6434165,12539629:-26345472 +) +(1,6173:6434165,12539629:26345472,6678748,196608 +[1,6173:6630773,12539629:25952256,6482140,0 +(1,6172:6630773,6461715:25952256,404226,82312 +h1,6172:6630773,6461715:0,0,0 +g1,6172:7579210,6461715 +g1,6172:7895356,6461715 +g1,6172:9476084,6461715 +g1,6172:9792230,6461715 +g1,6172:10108376,6461715 +g1,6172:10424522,6461715 +g1,6172:11056814,6461715 +g1,6172:11372960,6461715 +g1,6172:11689106,6461715 +g1,6172:12637543,6461715 +g1,6172:12953689,6461715 +g1,6172:13269835,6461715 +g1,6172:14218272,6461715 +g1,6172:14534418,6461715 +g1,6172:14850564,6461715 +g1,6172:15799001,6461715 +g1,6172:16115147,6461715 +g1,6172:16431293,6461715 +h1,6172:17063584,6461715:0,0,0 +k1,6172:32583029,6461715:15519445 +g1,6172:32583029,6461715 +) +(1,6172:6630773,7127893:25952256,404226,82312 +h1,6172:6630773,7127893:0,0,0 +g1,6172:7579210,7127893 +g1,6172:7895356,7127893 +g1,6172:9476084,7127893 +g1,6172:9792230,7127893 +g1,6172:10108376,7127893 +g1,6172:10424522,7127893 +g1,6172:11056814,7127893 +g1,6172:11372960,7127893 +g1,6172:11689106,7127893 +g1,6172:12637543,7127893 +g1,6172:12953689,7127893 +g1,6172:13269835,7127893 +g1,6172:14218272,7127893 +g1,6172:14534418,7127893 +g1,6172:14850564,7127893 +g1,6172:15799001,7127893 +g1,6172:16115147,7127893 +g1,6172:16431293,7127893 +h1,6172:17063584,7127893:0,0,0 +k1,6172:32583029,7127893:15519445 +g1,6172:32583029,7127893 +) +(1,6172:6630773,7794071:25952256,404226,82312 +h1,6172:6630773,7794071:0,0,0 +g1,6172:7579210,7794071 +g1,6172:7895356,7794071 +g1,6172:9476084,7794071 +g1,6172:9792230,7794071 +g1,6172:10108376,7794071 +g1,6172:10424522,7794071 +g1,6172:11056814,7794071 +g1,6172:11372960,7794071 +g1,6172:11689106,7794071 +g1,6172:12637543,7794071 +g1,6172:12953689,7794071 +g1,6172:13269835,7794071 +g1,6172:14218272,7794071 +g1,6172:14534418,7794071 +g1,6172:14850564,7794071 +g1,6172:15799001,7794071 +g1,6172:16115147,7794071 +g1,6172:16431293,7794071 +h1,6172:17063584,7794071:0,0,0 +k1,6172:32583029,7794071:15519445 +g1,6172:32583029,7794071 +) +(1,6172:6630773,8460249:25952256,404226,82312 +h1,6172:6630773,8460249:0,0,0 +g1,6172:7579210,8460249 +g1,6172:7895356,8460249 +g1,6172:9476084,8460249 +g1,6172:9792230,8460249 +g1,6172:10108376,8460249 +g1,6172:10424522,8460249 +g1,6172:11056814,8460249 +g1,6172:11372960,8460249 +g1,6172:11689106,8460249 +g1,6172:12637543,8460249 +g1,6172:12953689,8460249 +g1,6172:13269835,8460249 +g1,6172:14218272,8460249 +g1,6172:14534418,8460249 +g1,6172:14850564,8460249 +g1,6172:15799001,8460249 +g1,6172:16115147,8460249 +g1,6172:16431293,8460249 +h1,6172:17063584,8460249:0,0,0 +k1,6172:32583029,8460249:15519445 +g1,6172:32583029,8460249 +) +(1,6172:6630773,9126427:25952256,404226,82312 +h1,6172:6630773,9126427:0,0,0 +g1,6172:7579210,9126427 +g1,6172:7895356,9126427 +g1,6172:9476084,9126427 +g1,6172:9792230,9126427 +g1,6172:10108376,9126427 +g1,6172:10424522,9126427 +g1,6172:11056814,9126427 +g1,6172:11372960,9126427 +g1,6172:11689106,9126427 +g1,6172:12637543,9126427 +g1,6172:12953689,9126427 +g1,6172:13269835,9126427 +g1,6172:14218272,9126427 +g1,6172:14534418,9126427 +g1,6172:14850564,9126427 +g1,6172:15799001,9126427 +g1,6172:16115147,9126427 +g1,6172:16431293,9126427 +h1,6172:17063584,9126427:0,0,0 +k1,6172:32583029,9126427:15519445 +g1,6172:32583029,9126427 +) +(1,6172:6630773,9792605:25952256,404226,82312 +h1,6172:6630773,9792605:0,0,0 +g1,6172:7579210,9792605 +g1,6172:7895356,9792605 +g1,6172:9476084,9792605 +g1,6172:9792230,9792605 +g1,6172:10108376,9792605 +g1,6172:10424522,9792605 +g1,6172:11056814,9792605 +g1,6172:11372960,9792605 +g1,6172:11689106,9792605 +g1,6172:12637543,9792605 +g1,6172:12953689,9792605 +g1,6172:13269835,9792605 +g1,6172:14218272,9792605 +g1,6172:14534418,9792605 +g1,6172:14850564,9792605 +g1,6172:15799001,9792605 +g1,6172:16115147,9792605 +g1,6172:16431293,9792605 +h1,6172:17063584,9792605:0,0,0 +k1,6172:32583029,9792605:15519445 +g1,6172:32583029,9792605 +) +(1,6172:6630773,10458783:25952256,404226,82312 +h1,6172:6630773,10458783:0,0,0 +g1,6172:7579210,10458783 +g1,6172:7895356,10458783 +g1,6172:9476084,10458783 +g1,6172:9792230,10458783 +g1,6172:10108376,10458783 +g1,6172:10424522,10458783 +g1,6172:11056814,10458783 +g1,6172:11372960,10458783 +g1,6172:11689106,10458783 +g1,6172:12637543,10458783 +g1,6172:12953689,10458783 +g1,6172:13269835,10458783 +g1,6172:14218272,10458783 +g1,6172:14534418,10458783 +g1,6172:14850564,10458783 +g1,6172:15799001,10458783 +g1,6172:16115147,10458783 +g1,6172:16431293,10458783 +h1,6172:17063584,10458783:0,0,0 +k1,6172:32583029,10458783:15519445 +g1,6172:32583029,10458783 +) +(1,6172:6630773,11124961:25952256,404226,82312 +h1,6172:6630773,11124961:0,0,0 +g1,6172:7579210,11124961 +g1,6172:7895356,11124961 +g1,6172:9476084,11124961 +g1,6172:9792230,11124961 +g1,6172:10108376,11124961 +g1,6172:10424522,11124961 +g1,6172:11056814,11124961 +g1,6172:11372960,11124961 +g1,6172:11689106,11124961 +g1,6172:12637543,11124961 +g1,6172:12953689,11124961 +g1,6172:13269835,11124961 +g1,6172:14218272,11124961 +g1,6172:14534418,11124961 +g1,6172:14850564,11124961 +g1,6172:15799001,11124961 +g1,6172:16115147,11124961 +g1,6172:16431293,11124961 +h1,6172:17063584,11124961:0,0,0 +k1,6172:32583029,11124961:15519445 +g1,6172:32583029,11124961 +) +(1,6172:6630773,11791139:25952256,404226,82312 +h1,6172:6630773,11791139:0,0,0 +g1,6172:7579210,11791139 +g1,6172:7895356,11791139 +g1,6172:9476084,11791139 +g1,6172:9792230,11791139 +g1,6172:10108376,11791139 +g1,6172:10424522,11791139 +g1,6172:11056814,11791139 +g1,6172:11372960,11791139 +g1,6172:11689106,11791139 +g1,6172:12637543,11791139 +g1,6172:12953689,11791139 +g1,6172:13269835,11791139 +g1,6172:14218272,11791139 +g1,6172:14534418,11791139 +g1,6172:14850564,11791139 +g1,6172:15799001,11791139 +g1,6172:16115147,11791139 +g1,6172:16431293,11791139 +h1,6172:17063584,11791139:0,0,0 +k1,6172:32583029,11791139:15519445 +g1,6172:32583029,11791139 +) +(1,6172:6630773,12457317:25952256,404226,82312 +h1,6172:6630773,12457317:0,0,0 +g1,6172:7579210,12457317 +g1,6172:9476084,12457317 +g1,6172:9792230,12457317 +g1,6172:10108376,12457317 +g1,6172:11056813,12457317 +g1,6172:11372959,12457317 +g1,6172:11689105,12457317 +g1,6172:12637542,12457317 +g1,6172:12953688,12457317 +g1,6172:13269834,12457317 +g1,6172:14218271,12457317 +g1,6172:14534417,12457317 +g1,6172:14850563,12457317 +g1,6172:15799000,12457317 +g1,6172:16115146,12457317 +g1,6172:16431292,12457317 +h1,6172:17063583,12457317:0,0,0 +k1,6172:32583029,12457317:15519446 +g1,6172:32583029,12457317 +) +] +) +g1,6173:32583029,12539629 +g1,6173:6630773,12539629 +g1,6173:6630773,12539629 +g1,6173:32583029,12539629 +g1,6173:32583029,12539629 +) +h1,6173:6630773,12736237:0,0,0 +v1,6177:6630773,14418979:0,393216,0 +(1,6190:6630773,19431400:25952256,5405637,196608 +g1,6190:6630773,19431400 +g1,6190:6630773,19431400 +g1,6190:6434165,19431400 +(1,6190:6434165,19431400:0,5405637,196608 +r1,6190:32779637,19431400:26345472,5602245,196608 +k1,6190:6434165,19431400:-26345472 +) +(1,6190:6434165,19431400:26345472,5405637,196608 +[1,6190:6630773,19431400:25952256,5209029,0 +(1,6179:6630773,14626597:25952256,404226,76021 +(1,6178:6630773,14626597:0,0,0 +g1,6178:6630773,14626597 +g1,6178:6630773,14626597 +g1,6178:6303093,14626597 +(1,6178:6303093,14626597:0,0,0 +) +g1,6178:6630773,14626597 +) +g1,6179:9159939,14626597 +g1,6179:10108377,14626597 +k1,6179:10108377,14626597:0 +h1,6179:12953688,14626597:0,0,0 +k1,6179:32583028,14626597:19629340 +g1,6179:32583028,14626597 +) +(1,6180:6630773,15292775:25952256,410518,76021 +h1,6180:6630773,15292775:0,0,0 +g1,6180:7895356,15292775 +g1,6180:8843793,15292775 +g1,6180:9792230,15292775 +g1,6180:13269834,15292775 +h1,6180:13585980,15292775:0,0,0 +k1,6180:32583028,15292775:18997048 +g1,6180:32583028,15292775 +) +(1,6181:6630773,15958953:25952256,404226,76021 +h1,6181:6630773,15958953:0,0,0 +g1,6181:6946919,15958953 +g1,6181:7263065,15958953 +g1,6181:10740668,15958953 +g1,6181:11689106,15958953 +h1,6181:12005252,15958953:0,0,0 +k1,6181:32583028,15958953:20577776 +g1,6181:32583028,15958953 +) +(1,6182:6630773,16625131:25952256,410518,107478 +h1,6182:6630773,16625131:0,0,0 +g1,6182:6946919,16625131 +g1,6182:7263065,16625131 +g1,6182:8527648,16625131 +g1,6182:9476085,16625131 +g1,6182:10424522,16625131 +k1,6182:10424522,16625131:0 +h1,6182:13585980,16625131:0,0,0 +k1,6182:32583028,16625131:18997048 +g1,6182:32583028,16625131 +) +(1,6183:6630773,17291309:25952256,404226,107478 +h1,6183:6630773,17291309:0,0,0 +g1,6183:6946919,17291309 +g1,6183:7263065,17291309 +g1,6183:7579211,17291309 +g1,6183:7895357,17291309 +g1,6183:11372960,17291309 +g1,6183:12321398,17291309 +g1,6183:15799001,17291309 +g1,6183:16431293,17291309 +g1,6183:18012022,17291309 +h1,6183:18644313,17291309:0,0,0 +k1,6183:32583029,17291309:13938716 +g1,6183:32583029,17291309 +) +(1,6184:6630773,17957487:25952256,404226,76021 +h1,6184:6630773,17957487:0,0,0 +h1,6184:6946919,17957487:0,0,0 +k1,6184:32583029,17957487:25636110 +g1,6184:32583029,17957487 +) +(1,6185:6630773,18623665:25952256,404226,101187 +h1,6185:6630773,18623665:0,0,0 +k1,6185:6630773,18623665:0 +h1,6185:11056812,18623665:0,0,0 +k1,6185:32583028,18623665:21526216 +g1,6185:32583028,18623665 +) +(1,6189:6630773,19355379:25952256,404226,76021 +(1,6187:6630773,19355379:0,0,0 +g1,6187:6630773,19355379 +g1,6187:6630773,19355379 +g1,6187:6303093,19355379 +(1,6187:6303093,19355379:0,0,0 +) +g1,6187:6630773,19355379 +) +g1,6189:7579210,19355379 +g1,6189:7895356,19355379 +g1,6189:9159939,19355379 +g1,6189:10424522,19355379 +g1,6189:11689105,19355379 +g1,6189:12953688,19355379 +g1,6189:14218271,19355379 +g1,6189:15482854,19355379 +g1,6189:16747437,19355379 +g1,6189:18012020,19355379 +g1,6189:19276603,19355379 +g1,6189:20541186,19355379 +h1,6189:21489623,19355379:0,0,0 +k1,6189:32583029,19355379:11093406 +g1,6189:32583029,19355379 +) +] +) +g1,6190:32583029,19431400 +g1,6190:6630773,19431400 +g1,6190:6630773,19431400 +g1,6190:32583029,19431400 +g1,6190:32583029,19431400 +) +h1,6190:6630773,19628008:0,0,0 +(1,6194:6630773,20977777:25952256,505283,134348 +h1,6193:6630773,20977777:983040,0,0 +k1,6193:9055277,20977777:244777 +k1,6193:10796241,20977777:244777 +k1,6193:12896342,20977777:244777 +k1,6193:13672615,20977777:244776 +k1,6193:15271366,20977777:244777 +k1,6193:18022895,20977777:244777 +k1,6193:18725769,20977777:244777 +k1,6193:20103008,20977777:244777 +k1,6193:21944242,20977777:244777 +k1,6193:23582969,20977777:244776 +k1,6193:24959553,20977777:244777 +k1,6193:30495707,20977777:244777 +k1,6193:32583029,20977777:0 +) +(1,6194:6630773,21819265:25952256,513147,126483 +k1,6193:8205956,21819265:181232 +k1,6193:8999950,21819265:181232 +k1,6193:10676714,21819265:181232 +k1,6193:12014656,21819265:181232 +k1,6193:14578777,21819265:181232 +k1,6193:15951454,21819265:181232 +k1,6193:17289397,21819265:181233 +k1,6193:18848196,21819265:181232 +k1,6193:21964130,21819265:181232 +k1,6193:25593211,21819265:181232 +k1,6193:26642795,21819265:181232 +k1,6193:28354293,21819265:181232 +k1,6193:30185722,21819265:181232 +k1,6193:32583029,21819265:0 +) +(1,6194:6630773,22660753:25952256,513147,115847 +k1,6193:10807571,22660753:201384 +(1,6193:10807571,22660753:0,452978,115847 +r1,6193:13276108,22660753:2468537,568825,115847 +k1,6193:10807571,22660753:-2468537 +) +(1,6193:10807571,22660753:2468537,452978,115847 +g1,6193:12569407,22660753 +h1,6193:13272831,22660753:0,411205,112570 +) +k1,6193:13477492,22660753:201384 +k1,6193:15829768,22660753:201384 +k1,6193:17187861,22660753:201383 +k1,6193:18480419,22660753:201384 +k1,6193:19297841,22660753:201384 +k1,6193:20518310,22660753:201384 +k1,6193:22980686,22660753:201384 +k1,6193:24201155,22660753:201384 +k1,6193:25559249,22660753:201384 +k1,6193:26570003,22660753:201384 +k1,6193:27790471,22660753:201383 +k1,6193:29297988,22660753:201384 +k1,6193:30703268,22660753:201384 +k1,6193:31563944,22660753:201384 +k1,6193:32583029,22660753:0 +) +(1,6194:6630773,23502241:25952256,505283,115847 +k1,6193:9135902,23502241:263798 +k1,6193:11956259,23502241:263798 +(1,6193:11956259,23502241:0,452978,115847 +r1,6193:14073084,23502241:2116825,568825,115847 +k1,6193:11956259,23502241:-2116825 +) +(1,6193:11956259,23502241:2116825,452978,115847 +g1,6193:13718095,23502241 +h1,6193:14069807,23502241:0,411205,112570 +) +k1,6193:14336883,23502241:263799 +k1,6193:16751573,23502241:263798 +k1,6193:18219267,23502241:263798 +k1,6193:19813446,23502241:263798 +k1,6193:21268689,23502241:263798 +(1,6193:21268689,23502241:0,452978,115847 +r1,6193:23737227,23502241:2468538,568825,115847 +k1,6193:21268689,23502241:-2468538 +) +(1,6193:21268689,23502241:2468538,452978,115847 +g1,6193:22327102,23502241 +g1,6193:23030526,23502241 +h1,6193:23733950,23502241:0,411205,112570 +) +k1,6193:24001025,23502241:263798 +k1,6193:26415716,23502241:263799 +k1,6193:29062403,23502241:263798 +k1,6193:30672311,23502241:263798 +k1,6193:31563944,23502241:263798 +k1,6193:32583029,23502241:0 +) +(1,6194:6630773,24343729:25952256,513147,134348 +k1,6193:9555332,24343729:263142 +k1,6193:11847470,24343729:263143 +k1,6193:13129697,24343729:263142 +k1,6193:15073183,24343729:263143 +k1,6193:16003481,24343729:263142 +(1,6193:16003481,24343729:0,452978,115847 +r1,6193:16361747,24343729:358266,568825,115847 +k1,6193:16003481,24343729:-358266 +) +(1,6193:16003481,24343729:358266,452978,115847 +k1,6193:16003481,24343729:3277 +h1,6193:16358470,24343729:0,411205,112570 +) +k1,6193:16624890,24343729:263143 +k1,6193:19459009,24343729:263142 +k1,6193:20669802,24343729:263142 +k1,6193:22384567,24343729:263143 +k1,6193:25364832,24343729:263142 +k1,6193:26287267,24343729:263143 +k1,6193:27569494,24343729:263142 +k1,6193:29534607,24343729:263143 +k1,6193:31386342,24343729:263142 +k1,6193:32583029,24343729:0 +) +(1,6194:6630773,25185217:25952256,513147,134348 +k1,6193:8491584,25185217:180468 +k1,6193:9339208,25185217:180468 +(1,6193:9339208,25185217:0,452978,122846 +r1,6193:9697474,25185217:358266,575824,122846 +k1,6193:9339208,25185217:-358266 +) +(1,6193:9339208,25185217:358266,452978,122846 +k1,6193:9339208,25185217:3277 +h1,6193:9694197,25185217:0,411205,112570 +) +k1,6193:9877942,25185217:180468 +k1,6193:12629387,25185217:180468 +k1,6193:13757506,25185217:180468 +k1,6193:15389596,25185217:180468 +k1,6193:18287187,25185217:180468 +k1,6193:19126947,25185217:180468 +k1,6193:20326499,25185217:180467 +k1,6193:22173548,25185217:180468 +k1,6193:23942609,25185217:180468 +k1,6193:25314522,25185217:180468 +k1,6193:26514075,25185217:180468 +k1,6193:28361124,25185217:180468 +k1,6193:29956514,25185217:180468 +k1,6193:30668479,25185217:180468 +k1,6193:31966991,25185217:180468 +k1,6193:32583029,25185217:0 +) +(1,6194:6630773,26026705:25952256,513147,134348 +g1,6193:7919866,26026705 +g1,6193:9066746,26026705 +g1,6193:10717597,26026705 +g1,6193:13633949,26026705 +g1,6193:14492470,26026705 +g1,6193:15710784,26026705 +g1,6193:17611983,26026705 +g1,6193:19399805,26026705 +g1,6193:20795721,26026705 +g1,6193:22661531,26026705 +g1,6193:24275682,26026705 +g1,6193:26224722,26026705 +(1,6193:26224722,26026705:0,452978,122846 +r1,6193:26582988,26026705:358266,575824,122846 +k1,6193:26224722,26026705:-358266 +) +(1,6193:26224722,26026705:358266,452978,122846 +k1,6193:26224722,26026705:3277 +h1,6193:26579711,26026705:0,411205,112570 +) +g1,6193:26782217,26026705 +g1,6193:29552423,26026705 +k1,6194:32583029,26026705:714564 +g1,6194:32583029,26026705 +) +v1,6196:6630773,27376475:0,393216,0 +(1,6199:6630773,38266130:25952256,11282871,616038 +g1,6199:6630773,38266130 +(1,6199:6630773,38266130:25952256,11282871,616038 +(1,6199:6630773,38882168:25952256,11898909,0 +[1,6199:6630773,38882168:25952256,11898909,0 +(1,6199:6630773,38855954:25952256,11846481,0 +r1,6199:6656987,38855954:26214,11846481,0 +[1,6199:6656987,38855954:25899828,11846481,0 +(1,6199:6656987,38266130:25899828,10666833,0 +[1,6199:7246811,38266130:24720180,10666833,0 +(1,6197:7246811,28883279:24720180,1283982,196608 +(1,6196:7246811,28883279:0,1283982,196608 +r1,6199:9812056,28883279:2565245,1480590,196608 +k1,6196:7246811,28883279:-2565245 +) +(1,6196:7246811,28883279:2565245,1283982,196608 +) +k1,6196:10091555,28883279:279499 +k1,6196:10976607,28883279:279499 +k1,6196:13462048,28883279:279499 +k1,6196:14760633,28883279:279500 +k1,6196:16536319,28883279:279499 +k1,6196:17431856,28883279:279499 +k1,6196:18730440,28883279:279499 +k1,6196:21671356,28883279:279499 +k1,6196:22566893,28883279:279499 +k1,6196:23865477,28883279:279499 +k1,6196:25293168,28883279:279500 +k1,6196:27543335,28883279:279499 +k1,6196:29678158,28883279:279499 +k1,6196:30682485,28883279:279499 +k1,6196:31966991,28883279:0 +) +(1,6197:7246811,29724767:24720180,513147,126483 +k1,6196:7979081,29724767:274173 +k1,6196:9948671,29724767:274174 +k1,6196:11241929,29724767:274173 +k1,6196:13526747,29724767:274173 +k1,6196:15176521,29724767:274173 +k1,6196:16066733,29724767:274174 +k1,6196:17359991,29724767:274173 +k1,6196:18940297,29724767:274173 +k1,6196:20869254,29724767:274173 +k1,6196:23856619,29724767:274174 +k1,6196:24797948,29724767:274173 +(1,6196:24797948,29724767:0,414482,115847 +r1,6199:25156214,29724767:358266,530329,115847 +k1,6196:24797948,29724767:-358266 +) +(1,6196:24797948,29724767:358266,414482,115847 +k1,6196:24797948,29724767:3277 +h1,6196:25152937,29724767:0,411205,112570 +) +k1,6196:25604057,29724767:274173 +k1,6196:26483784,29724767:274174 +k1,6196:29020260,29724767:274173 +k1,6196:30313518,29724767:274173 +k1,6196:31966991,29724767:0 +) +(1,6197:7246811,30566255:24720180,513147,126483 +k1,6196:10123937,30566255:215709 +k1,6196:11064474,30566255:215709 +k1,6196:12564688,30566255:215708 +k1,6196:13238494,30566255:215709 +k1,6196:15149619,30566255:215709 +k1,6196:16384413,30566255:215709 +k1,6196:18610767,30566255:215709 +k1,6196:20202077,30566255:215709 +k1,6196:21033823,30566255:215708 +k1,6196:22268617,30566255:215709 +k1,6196:23632517,30566255:215709 +k1,6196:25503010,30566255:215709 +k1,6196:27252917,30566255:215709 +k1,6196:28135781,30566255:215708 +(1,6196:28135781,30566255:0,414482,115847 +r1,6199:28494047,30566255:358266,530329,115847 +k1,6196:28135781,30566255:-358266 +) +(1,6196:28135781,30566255:358266,414482,115847 +k1,6196:28135781,30566255:3277 +h1,6196:28490770,30566255:0,411205,112570 +) +k1,6196:28883426,30566255:215709 +k1,6196:29704688,30566255:215709 +k1,6196:31966991,30566255:0 +) +(1,6197:7246811,31407743:24720180,505283,126483 +k1,6196:8424190,31407743:158294 +k1,6196:10078670,31407743:158293 +k1,6196:10961792,31407743:158294 +k1,6196:12404591,31407743:158293 +k1,6196:15296392,31407743:158294 +k1,6196:16848637,31407743:158294 +k1,6196:20682189,31407743:158293 +k1,6196:22568012,31407743:158294 +k1,6196:23377734,31407743:158294 +k1,6196:24956192,31407743:158293 +k1,6196:26007742,31407743:158294 +k1,6196:28930344,31407743:158293 +k1,6196:29850166,31407743:158294 +(1,6196:29850166,31407743:0,452978,115847 +r1,6199:31966991,31407743:2116825,568825,115847 +k1,6196:29850166,31407743:-2116825 +) +(1,6196:29850166,31407743:2116825,452978,115847 +k1,6196:29850166,31407743:3277 +h1,6196:31963714,31407743:0,411205,112570 +) +k1,6196:31966991,31407743:0 +) +(1,6197:7246811,32249231:24720180,505283,115847 +g1,6196:8637485,32249231 +(1,6196:8637485,32249231:0,452978,115847 +r1,6199:10754310,32249231:2116825,568825,115847 +k1,6196:8637485,32249231:-2116825 +) +(1,6196:8637485,32249231:2116825,452978,115847 +k1,6196:8637485,32249231:3277 +h1,6196:10751033,32249231:0,411205,112570 +) +k1,6197:31966990,32249231:20831916 +g1,6197:31966990,32249231 +) +(1,6199:7246811,33090719:24720180,513147,134348 +h1,6198:7246811,33090719:983040,0,0 +k1,6198:9599150,33090719:151640 +k1,6198:10769875,33090719:151640 +k1,6198:12417702,33090719:151640 +k1,6198:13739816,33090719:151641 +k1,6198:15699594,33090719:151640 +k1,6198:18629305,33090719:151640 +k1,6198:21367651,33090719:151640 +k1,6198:22205453,33090719:151640 +k1,6198:25196113,33090719:151640 +k1,6198:25813715,33090719:151641 +k1,6198:26984440,33090719:151640 +k1,6198:29621861,33090719:151640 +k1,6198:30432793,33090719:151640 +k1,6198:31966991,33090719:0 +) +(1,6199:7246811,33932207:24720180,513147,134348 +k1,6198:8080553,33932207:217704 +(1,6198:8080553,33932207:0,414482,115847 +r1,6199:8438819,33932207:358266,530329,115847 +k1,6198:8080553,33932207:-358266 +) +(1,6198:8080553,33932207:358266,414482,115847 +k1,6198:8080553,33932207:3277 +h1,6198:8435542,33932207:0,411205,112570 +) +k1,6198:8656523,33932207:217704 +k1,6198:11862669,33932207:217704 +k1,6198:13714186,33932207:217704 +k1,6198:14397851,33932207:217704 +k1,6198:15634640,33932207:217704 +k1,6198:18338125,33932207:217704 +k1,6198:19215120,33932207:217703 +k1,6198:22146015,33932207:217704 +k1,6198:22979757,33932207:217704 +(1,6198:22979757,33932207:0,414482,115847 +r1,6199:23338023,33932207:358266,530329,115847 +k1,6198:22979757,33932207:-358266 +) +(1,6198:22979757,33932207:358266,414482,115847 +k1,6198:22979757,33932207:3277 +h1,6198:23334746,33932207:0,411205,112570 +) +k1,6198:23555727,33932207:217704 +k1,6198:26608518,33932207:217704 +k1,6198:28017667,33932207:217704 +k1,6198:29254456,33932207:217704 +k1,6198:31966991,33932207:0 +) +(1,6199:7246811,34773695:24720180,513147,126483 +k1,6198:9590795,34773695:170810 +k1,6198:10960260,34773695:170811 +k1,6198:13429418,34773695:170810 +k1,6198:14251657,34773695:170811 +k1,6198:15170233,34773695:170810 +k1,6198:18570003,34773695:170811 +k1,6198:19688464,34773695:170810 +k1,6198:22218571,34773695:170811 +k1,6198:25660938,34773695:170810 +k1,6198:27465562,34773695:170811 +k1,6198:29592622,34773695:170810 +k1,6198:31966991,34773695:0 +) +(1,6199:7246811,35615183:24720180,513147,126483 +k1,6198:8002269,35615183:281633 +(1,6198:8002269,35615183:0,414482,115847 +r1,6199:8360535,35615183:358266,530329,115847 +k1,6198:8002269,35615183:-358266 +) +(1,6198:8002269,35615183:358266,414482,115847 +k1,6198:8002269,35615183:3277 +h1,6198:8357258,35615183:0,411205,112570 +) +k1,6198:8642168,35615183:281633 +k1,6198:10115246,35615183:281633 +k1,6198:12165695,35615183:281632 +k1,6198:13889775,35615183:281633 +k1,6198:15826192,35615183:281633 +k1,6198:19148040,35615183:281633 +k1,6198:20513639,35615183:281633 +k1,6198:21446700,35615183:281633 +k1,6198:23408676,35615183:281633 +k1,6198:24996441,35615183:281632 +k1,6198:26826690,35615183:281633 +k1,6198:27759751,35615183:281633 +k1,6198:30112322,35615183:281633 +k1,6198:31966991,35615183:0 +) +(1,6199:7246811,36456671:24720180,513147,126483 +k1,6198:8295135,36456671:238954 +k1,6198:9553174,36456671:238954 +k1,6198:11288316,36456671:238955 +k1,6198:12697743,36456671:238954 +k1,6198:14918506,36456671:238954 +k1,6198:16768990,36456671:238954 +k1,6198:18937325,36456671:238955 +k1,6198:21909786,36456671:238954 +k1,6198:22808032,36456671:238954 +k1,6198:25809329,36456671:238954 +k1,6198:27647362,36456671:238955 +k1,6198:29077761,36456671:238954 +k1,6198:30508160,36456671:238954 +k1,6198:31966991,36456671:0 +) +(1,6199:7246811,37298159:24720180,513147,134348 +k1,6198:9111918,37298159:195250 +k1,6198:10952123,37298159:195251 +k1,6198:12605549,37298159:195250 +k1,6198:14481143,37298159:195251 +k1,6198:16006774,37298159:195250 +k1,6198:16853453,37298159:195251 +k1,6198:19678007,37298159:195250 +k1,6198:20892342,37298159:195250 +k1,6198:22757450,37298159:195251 +k1,6198:23677528,37298159:195250 +k1,6198:25157285,37298159:195251 +k1,6198:27345485,37298159:195250 +k1,6198:29713910,37298159:195251 +k1,6198:30900720,37298159:195250 +k1,6198:31966991,37298159:0 +) +(1,6199:7246811,38139647:24720180,505283,126483 +k1,6199:31966992,38139647:21505640 +g1,6199:31966992,38139647 +) +] +) +] +r1,6199:32583029,38855954:26214,11846481,0 +) +] +) +) +g1,6199:32583029,38266130 +) +h1,6199:6630773,38882168:0,0,0 +v1,6202:6630773,40231938:0,393216,0 +(1,6249:6630773,45116945:25952256,5278223,589824 +g1,6249:6630773,45116945 +(1,6249:6630773,45116945:25952256,5278223,589824 +(1,6249:6630773,45706769:25952256,5868047,0 +[1,6249:6630773,45706769:25952256,5868047,0 +(1,6249:6630773,45706769:25952256,5841833,0 +r1,6249:6656987,45706769:26214,5841833,0 +[1,6249:6656987,45706769:25899828,5841833,0 +(1,6249:6656987,45116945:25899828,4662185,0 +[1,6249:7246811,45116945:24720180,4662185,0 +(1,6204:7246811,41616645:24720180,1161885,196608 +(1,6202:7246811,41616645:0,1161885,196608 +r1,6249:8794447,41616645:1547636,1358493,196608 +k1,6202:7246811,41616645:-1547636 +) +(1,6202:7246811,41616645:1547636,1161885,196608 +) +k1,6202:9030681,41616645:236234 +k1,6202:9744671,41616645:236233 +k1,6202:10999990,41616645:236234 +k1,6202:12705541,41616645:236234 +k1,6202:15427555,41616645:236233 +k1,6202:16323081,41616645:236234 +k1,6202:19606739,41616645:236234 +k1,6202:20374469,41616645:236233 +k1,6202:22181601,41616645:236234 +k1,6202:23609279,41616645:236233 +k1,6202:24864598,41616645:236234 +k1,6202:26597019,41616645:236234 +k1,6202:29666373,41616645:236233 +k1,6202:30515369,41616645:236234 +k1,6202:31966991,41616645:0 +) +(1,6204:7246811,42458133:24720180,513147,134348 +k1,6202:10182731,42458133:218797 +k1,6202:11849873,42458133:218796 +k1,6202:13450169,42458133:218797 +k1,6202:14688050,42458133:218796 +k1,6202:17833030,42458133:218797 +k1,6202:20017251,42458133:218796 +k1,6202:20997576,42458133:218797 +k1,6202:22235457,42458133:218796 +k1,6202:23869176,42458133:218797 +k1,6202:25584159,42458133:218796 +k1,6202:26907238,42458133:218797 +k1,6202:28841767,42458133:218796 +k1,6202:29416424,42458133:218797 +k1,6202:30611051,42458133:218796 +k1,6204:31966991,42458133:0 +) +(1,6204:7246811,43299621:24720180,513147,134348 +k1,6202:10249066,43299621:173066 +k1,6202:11073559,43299621:173065 +k1,6202:12265710,43299621:173066 +k1,6202:13908092,43299621:173065 +k1,6202:16604294,43299621:173066 +k1,6202:18202767,43299621:173065 +k1,6202:19035125,43299621:173066 +k1,6202:19564050,43299621:173065 +k1,6202:21741862,43299621:173066 +k1,6203:23698162,43299621:173065 +k1,6203:26190547,43299621:173066 +k1,6203:27757563,43299621:173065 +k1,6203:30048097,43299621:173066 +k1,6203:31966991,43299621:0 +) +(1,6204:7246811,44141109:24720180,513147,126483 +k1,6203:8116386,44141109:183413 +k1,6203:9318885,44141109:183414 +k1,6203:11168879,44141109:183413 +k1,6203:12767215,44141109:183414 +k1,6203:13482125,44141109:183413 +k1,6203:16498659,44141109:183413 +k1,6203:18283773,44141109:183414 +k1,6203:21945837,44141109:183413 +k1,6203:23332492,44141109:183414 +k1,6203:24047402,44141109:183413 +k1,6203:25249900,44141109:183413 +k1,6203:26768282,44141109:183414 +k1,6203:28614343,44141109:183413 +k1,6203:29449185,44141109:183414 +k1,6203:31019340,44141109:183413 +k1,6203:31966991,44141109:0 +) +(1,6204:7246811,44982597:24720180,513147,134348 +k1,6203:8954560,44982597:139472 +k1,6203:9753325,44982597:139473 +k1,6203:12687908,44982597:139472 +k1,6203:15902986,44982597:139473 +k1,6203:17641536,44982597:139472 +k1,6203:18408844,44982597:139473 +k1,6203:19751557,44982597:139472 +k1,6203:22726117,44982597:139473 +k1,6203:27057927,44982597:139472 +k1,6203:28301682,44982597:139473 +k1,6203:29188920,44982597:139472 +k1,6203:31966991,44982597:0 +) +] +) +] +r1,6249:32583029,45706769:26214,5841833,0 +) +] +) +) +g1,6249:32583029,45116945 +) +] +(1,6249:32583029,45706769:0,0,0 +g1,6249:32583029,45706769 +) +) +] +(1,6249:6630773,47279633:25952256,0,0 +h1,6249:6630773,47279633:25952256,0,0 +) +] +h1,6249:4262630,4025873:0,0,0 +] +!30014 }117 -Input:866:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:867:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:868:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:869:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:870:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:871:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:872:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:873:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!692 +Input:862:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:863:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:864:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:865:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:866:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:867:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:868:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:869:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!740 {118 -[1,6253:4262630,47279633:28320399,43253760,0 -(1,6253:4262630,4025873:0,0,0 -[1,6253:-473657,4025873:25952256,0,0 -(1,6253:-473657,-710414:25952256,0,0 -h1,6253:-473657,-710414:0,0,0 -(1,6253:-473657,-710414:0,0,0 -(1,6253:-473657,-710414:0,0,0 -g1,6253:-473657,-710414 -(1,6253:-473657,-710414:65781,0,65781 -g1,6253:-407876,-710414 -[1,6253:-407876,-644633:0,0,0 +[1,6259:4262630,47279633:28320399,43253760,0 +(1,6259:4262630,4025873:0,0,0 +[1,6259:-473657,4025873:25952256,0,0 +(1,6259:-473657,-710414:25952256,0,0 +h1,6259:-473657,-710414:0,0,0 +(1,6259:-473657,-710414:0,0,0 +(1,6259:-473657,-710414:0,0,0 +g1,6259:-473657,-710414 +(1,6259:-473657,-710414:65781,0,65781 +g1,6259:-407876,-710414 +[1,6259:-407876,-644633:0,0,0 ] ) -k1,6253:-473657,-710414:-65781 +k1,6259:-473657,-710414:-65781 ) ) -k1,6253:25478599,-710414:25952256 -g1,6253:25478599,-710414 +k1,6259:25478599,-710414:25952256 +g1,6259:25478599,-710414 ) ] ) -[1,6253:6630773,47279633:25952256,43253760,0 -[1,6253:6630773,4812305:25952256,786432,0 -(1,6253:6630773,4812305:25952256,513147,126483 -(1,6253:6630773,4812305:25952256,513147,126483 -g1,6253:3078558,4812305 -[1,6253:3078558,4812305:0,0,0 -(1,6253:3078558,2439708:0,1703936,0 -k1,6253:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6253:2537886,2439708:1179648,16384,0 +[1,6259:6630773,47279633:25952256,43253760,0 +[1,6259:6630773,4812305:25952256,786432,0 +(1,6259:6630773,4812305:25952256,513147,126483 +(1,6259:6630773,4812305:25952256,513147,126483 +g1,6259:3078558,4812305 +[1,6259:3078558,4812305:0,0,0 +(1,6259:3078558,2439708:0,1703936,0 +k1,6259:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6259:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6253:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6259:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6253:3078558,4812305:0,0,0 -(1,6253:3078558,2439708:0,1703936,0 -g1,6253:29030814,2439708 -g1,6253:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6253:36151628,1915420:16384,1179648,0 +[1,6259:3078558,4812305:0,0,0 +(1,6259:3078558,2439708:0,1703936,0 +g1,6259:29030814,2439708 +g1,6259:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6259:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6253:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6259:37855564,2439708:1179648,16384,0 ) ) -k1,6253:3078556,2439708:-34777008 +k1,6259:3078556,2439708:-34777008 ) ] -[1,6253:3078558,4812305:0,0,0 -(1,6253:3078558,49800853:0,16384,2228224 -k1,6253:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6253:2537886,49800853:1179648,16384,0 +[1,6259:3078558,4812305:0,0,0 +(1,6259:3078558,49800853:0,16384,2228224 +k1,6259:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6259:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6253:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6259:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6253:3078558,4812305:0,0,0 -(1,6253:3078558,49800853:0,16384,2228224 -g1,6253:29030814,49800853 -g1,6253:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6253:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6253:37855564,49800853:1179648,16384,0 -) -) -k1,6253:3078556,49800853:-34777008 -) -] -g1,6253:6630773,4812305 -g1,6253:6630773,4812305 -g1,6253:8671564,4812305 -g1,6253:11756343,4812305 -k1,6253:31387651,4812305:19631308 -) -) -] -[1,6253:6630773,45706769:25952256,40108032,0 -(1,6253:6630773,45706769:25952256,40108032,0 -(1,6253:6630773,45706769:0,0,0 -g1,6253:6630773,45706769 -) -[1,6253:6630773,45706769:25952256,40108032,0 -v1,6243:6630773,6254097:0,393216,0 -(1,6243:6630773,28337547:25952256,22476666,616038 -g1,6243:6630773,28337547 -(1,6243:6630773,28337547:25952256,22476666,616038 -(1,6243:6630773,28953585:25952256,23092704,0 -[1,6243:6630773,28953585:25952256,23092704,0 -(1,6243:6630773,28927371:25952256,23066490,0 -r1,6243:6656987,28927371:26214,23066490,0 -[1,6243:6656987,28927371:25899828,23066490,0 -(1,6243:6656987,28337547:25899828,21886842,0 -[1,6243:7246811,28337547:24720180,21886842,0 -(1,6198:7246811,6963852:24720180,513147,134348 -k1,6197:8176716,6963852:270613 -k1,6197:8803190,6963852:270614 -k1,6197:11051680,6963852:270613 -k1,6197:13527580,6963852:270613 -k1,6197:14484356,6963852:270614 -k1,6197:15543367,6963852:270613 -k1,6197:19059978,6963852:270613 -k1,6197:22428478,6963852:270613 -k1,6197:23718177,6963852:270614 -k1,6197:25655371,6963852:270613 -k1,6197:27340906,6963852:270613 -k1,6197:28373048,6963852:270614 -k1,6197:29414364,6963852:270613 -k1,6197:31966991,6963852:0 -) -(1,6198:7246811,7805340:24720180,513147,134348 -g1,6197:10141536,7805340 -g1,6197:11445047,7805340 -g1,6197:12392042,7805340 -g1,6197:15430291,7805340 -g1,6197:16280948,7805340 -g1,6197:19109481,7805340 -g1,6197:23384394,7805340 -k1,6198:31966991,7805340:4529195 -g1,6198:31966991,7805340 -) -v1,6200:7246811,8995806:0,393216,0 -(1,6211:7246811,12682163:24720180,4079573,196608 -g1,6211:7246811,12682163 -g1,6211:7246811,12682163 -g1,6211:7050203,12682163 -(1,6211:7050203,12682163:0,4079573,196608 -r1,6243:32163599,12682163:25113396,4276181,196608 -k1,6211:7050203,12682163:-25113396 -) -(1,6211:7050203,12682163:25113396,4079573,196608 -[1,6211:7246811,12682163:24720180,3882965,0 -(1,6202:7246811,9209716:24720180,410518,101187 -(1,6201:7246811,9209716:0,0,0 -g1,6201:7246811,9209716 -g1,6201:7246811,9209716 -g1,6201:6919131,9209716 -(1,6201:6919131,9209716:0,0,0 -) -g1,6201:7246811,9209716 -) -g1,6202:9775977,9209716 -g1,6202:10724415,9209716 -g1,6202:16098893,9209716 -g1,6202:16731185,9209716 -k1,6202:16731185,9209716:23593 -h1,6202:18651652,9209716:0,0,0 -k1,6202:31966991,9209716:13315339 -g1,6202:31966991,9209716 -) -(1,6203:7246811,9875894:24720180,410518,76021 -h1,6203:7246811,9875894:0,0,0 -g1,6203:8511394,9875894 -g1,6203:9459831,9875894 -g1,6203:10408268,9875894 -g1,6203:13885872,9875894 -h1,6203:14202018,9875894:0,0,0 -k1,6203:31966990,9875894:17764972 -g1,6203:31966990,9875894 -) -(1,6204:7246811,10542072:24720180,404226,82312 -h1,6204:7246811,10542072:0,0,0 -g1,6204:7562957,10542072 -g1,6204:7879103,10542072 -g1,6204:11356706,10542072 -g1,6204:12305144,10542072 -g1,6204:15150456,10542072 -h1,6204:15782747,10542072:0,0,0 -k1,6204:31966991,10542072:16184244 -g1,6204:31966991,10542072 -) -(1,6205:7246811,11208250:24720180,404226,76021 -h1,6205:7246811,11208250:0,0,0 -h1,6205:7562957,11208250:0,0,0 -k1,6205:31966991,11208250:24404034 -g1,6205:31966991,11208250 -) -(1,6206:7246811,11874428:24720180,404226,101187 -h1,6206:7246811,11874428:0,0,0 -k1,6206:7246811,11874428:0 -h1,6206:11672850,11874428:0,0,0 -k1,6206:31966990,11874428:20294140 -g1,6206:31966990,11874428 -) -(1,6210:7246811,12606142:24720180,404226,76021 -(1,6208:7246811,12606142:0,0,0 -g1,6208:7246811,12606142 -g1,6208:7246811,12606142 -g1,6208:6919131,12606142 -(1,6208:6919131,12606142:0,0,0 -) -g1,6208:7246811,12606142 -) -g1,6210:8195248,12606142 -g1,6210:8511394,12606142 -g1,6210:9775977,12606142 -g1,6210:11040560,12606142 -g1,6210:12305143,12606142 -g1,6210:13569726,12606142 -g1,6210:14834309,12606142 -g1,6210:16098892,12606142 -g1,6210:17363475,12606142 -g1,6210:18628058,12606142 -g1,6210:19892641,12606142 -g1,6210:21157224,12606142 -h1,6210:22105661,12606142:0,0,0 -k1,6210:31966991,12606142:9861330 -g1,6210:31966991,12606142 -) -] -) -g1,6211:31966991,12682163 -g1,6211:7246811,12682163 -g1,6211:7246811,12682163 -g1,6211:31966991,12682163 -g1,6211:31966991,12682163 -) -h1,6211:7246811,12878771:0,0,0 -(1,6215:7246811,14244547:24720180,505283,115847 -h1,6214:7246811,14244547:983040,0,0 -(1,6214:8229851,14244547:0,452978,115847 -r1,6243:10346676,14244547:2116825,568825,115847 -k1,6214:8229851,14244547:-2116825 -) -(1,6214:8229851,14244547:2116825,452978,115847 -g1,6214:9991687,14244547 -h1,6214:10343399,14244547:0,411205,112570 -) -k1,6214:10560189,14244547:213513 -k1,6214:12924594,14244547:213513 -k1,6214:14342003,14244547:213513 -(1,6214:14342003,14244547:0,452978,115847 -r1,6243:14700269,14244547:358266,568825,115847 -k1,6214:14342003,14244547:-358266 -) -(1,6214:14342003,14244547:358266,452978,115847 -k1,6214:14342003,14244547:3277 -h1,6214:14696992,14244547:0,411205,112570 -) -k1,6214:14913781,14244547:213512 -k1,6214:16318739,14244547:213513 -k1,6214:17298368,14244547:213513 -k1,6214:20398742,14244547:213513 -k1,6214:23870705,14244547:213513 -k1,6214:24700256,14244547:213513 -k1,6214:25328597,14244547:213498 -k1,6214:26561195,14244547:213513 -k1,6214:27978604,14244547:213513 -k1,6214:29941273,14244547:213513 -k1,6214:31966991,14244547:0 -) -(1,6215:7246811,15086035:24720180,513147,7863 -k1,6215:31966990,15086035:23240376 -g1,6215:31966990,15086035 -) -(1,6218:7246811,15927523:24720180,513147,126483 -h1,6216:7246811,15927523:983040,0,0 -k1,6216:9920932,15927523:225696 -k1,6216:12477744,15927523:225696 -k1,6216:14448663,15927523:225695 -k1,6216:15778641,15927523:225696 -k1,6216:16752103,15927523:225696 -k1,6216:20348316,15927523:225696 -k1,6216:21039972,15927523:225695 -k1,6216:22134020,15927523:225696 -k1,6216:23452201,15927523:225696 -k1,6216:24448600,15927523:225696 -k1,6216:26466705,15927523:225695 -k1,6216:29561567,15927523:225696 -k1,6216:31280829,15927523:225696 -k1,6218:31966991,15927523:0 -) -(1,6218:7246811,16769011:24720180,513147,126483 -(1,6216:7246811,16769011:0,452978,115847 -r1,6243:9715348,16769011:2468537,568825,115847 -k1,6216:7246811,16769011:-2468537 -) -(1,6216:7246811,16769011:2468537,452978,115847 -k1,6216:7246811,16769011:3277 -h1,6216:9712071,16769011:0,411205,112570 -) -k1,6216:10117667,16769011:228649 -(1,6216:10117667,16769011:0,452978,115847 -r1,6243:12937916,16769011:2820249,568825,115847 -k1,6216:10117667,16769011:-2820249 -) -(1,6216:10117667,16769011:2820249,452978,115847 -k1,6216:10117667,16769011:3277 -h1,6216:12934639,16769011:0,411205,112570 -) -k1,6216:13166566,16769011:228650 -k1,6216:14078100,16769011:228649 -(1,6216:14078100,16769011:0,452978,115847 -r1,6243:16898349,16769011:2820249,568825,115847 -k1,6216:14078100,16769011:-2820249 -) -(1,6216:14078100,16769011:2820249,452978,115847 -k1,6216:14078100,16769011:3277 -h1,6216:16895072,16769011:0,411205,112570 -) -k1,6216:17300669,16769011:228650 -k1,6216:18145356,16769011:228649 -k1,6216:20036654,16769011:228650 -k1,6216:20924595,16769011:228649 -k1,6216:22172330,16769011:228650 -k1,6216:24102949,16769011:228649 -(1,6216:24102949,16769011:0,459977,115847 -r1,6243:25164638,16769011:1061689,575824,115847 -k1,6216:24102949,16769011:-1061689 -) -(1,6216:24102949,16769011:1061689,459977,115847 -k1,6216:24102949,16769011:3277 -h1,6216:25161361,16769011:0,411205,112570 -) -k1,6216:25393288,16769011:228650 -k1,6216:27210530,16769011:228649 -k1,6216:28489067,16769011:228650 -k1,6216:30996403,16769011:228649 -h1,6216:31966991,16769011:0,0,0 -k1,6216:31966991,16769011:0 -) -(1,6218:7246811,17610499:24720180,513147,126483 -g1,6216:9314471,17610499 -g1,6217:10461351,17610499 -g1,6217:12778048,17610499 -g1,6217:13786647,17610499 -g1,6217:15004961,17610499 -g1,6217:16296675,17610499 -g1,6217:17155196,17610499 -g1,6217:18373510,17610499 -g1,6217:21335082,17610499 -g1,6217:23326721,17610499 -k1,6218:31966991,17610499:5440802 -g1,6218:31966991,17610499 -) -v1,6220:7246811,18800965:0,393216,0 -(1,6228:7246811,20482496:24720180,2074747,196608 -g1,6228:7246811,20482496 -g1,6228:7246811,20482496 -g1,6228:7050203,20482496 -(1,6228:7050203,20482496:0,2074747,196608 -r1,6243:32163599,20482496:25113396,2271355,196608 -k1,6228:7050203,20482496:-25113396 -) -(1,6228:7050203,20482496:25113396,2074747,196608 -[1,6228:7246811,20482496:24720180,1878139,0 -(1,6222:7246811,19008583:24720180,404226,101187 -(1,6221:7246811,19008583:0,0,0 -g1,6221:7246811,19008583 -g1,6221:7246811,19008583 -g1,6221:6919131,19008583 -(1,6221:6919131,19008583:0,0,0 -) -g1,6221:7246811,19008583 -) -g1,6222:9775977,19008583 -g1,6222:10724415,19008583 -g1,6222:13569726,19008583 -g1,6222:15782746,19008583 -g1,6222:16415038,19008583 -g1,6222:17363476,19008583 -g1,6222:18944205,19008583 -g1,6222:19576497,19008583 -g1,6222:22421808,19008583 -g1,6222:25583265,19008583 -k1,6222:25583265,19008583:0 -h1,6222:26847848,19008583:0,0,0 -k1,6222:31966991,19008583:5119143 -g1,6222:31966991,19008583 -) -(1,6223:7246811,19674761:24720180,404226,101187 -h1,6223:7246811,19674761:0,0,0 -k1,6223:7246811,19674761:0 -h1,6223:11672850,19674761:0,0,0 -k1,6223:31966990,19674761:20294140 -g1,6223:31966990,19674761 -) -(1,6227:7246811,20406475:24720180,404226,76021 -(1,6225:7246811,20406475:0,0,0 -g1,6225:7246811,20406475 -g1,6225:7246811,20406475 -g1,6225:6919131,20406475 -(1,6225:6919131,20406475:0,0,0 -) -g1,6225:7246811,20406475 -) -g1,6227:8195248,20406475 -g1,6227:8511394,20406475 -g1,6227:9775977,20406475 -g1,6227:11040560,20406475 -g1,6227:12305143,20406475 -g1,6227:13569726,20406475 -g1,6227:14834309,20406475 -g1,6227:16098892,20406475 -g1,6227:17363475,20406475 -g1,6227:18628058,20406475 -g1,6227:19892641,20406475 -g1,6227:21157224,20406475 -h1,6227:22105661,20406475:0,0,0 -k1,6227:31966991,20406475:9861330 -g1,6227:31966991,20406475 -) -] -) -g1,6228:31966991,20482496 -g1,6228:7246811,20482496 -g1,6228:7246811,20482496 -g1,6228:31966991,20482496 -g1,6228:31966991,20482496 -) -h1,6228:7246811,20679104:0,0,0 -(1,6231:7246811,22044880:24720180,513147,134348 -h1,6230:7246811,22044880:983040,0,0 -k1,6230:12035475,22044880:232601 -k1,6230:13471972,22044880:232601 -k1,6230:15399989,22044880:232601 -k1,6230:16164087,22044880:232601 -k1,6230:16752548,22044880:232601 -k1,6230:19723899,22044880:232601 -k1,6230:23204464,22044880:232601 -k1,6230:24161893,22044880:232601 -k1,6230:24809304,22044880:232568 -k1,6230:26142910,22044880:232601 -k1,6230:26731371,22044880:232601 -k1,6230:29271495,22044880:232601 -k1,6230:31966991,22044880:0 -) -(1,6231:7246811,22886368:24720180,513147,126483 -k1,6230:8413089,22886368:218627 -k1,6230:10008628,22886368:218628 -k1,6230:11045144,22886368:218627 -k1,6230:13297353,22886368:218627 -k1,6230:14909931,22886368:218627 -(1,6230:14909931,22886368:0,459977,115847 -r1,6243:17026756,22886368:2116825,575824,115847 -k1,6230:14909931,22886368:-2116825 -) -(1,6230:14909931,22886368:2116825,459977,115847 -k1,6230:14909931,22886368:3277 -h1,6230:17023479,22886368:0,411205,112570 -) -k1,6230:17419054,22886368:218628 -k1,6230:18095778,22886368:218627 -k1,6230:18845902,22886368:218627 -k1,6230:21193794,22886368:218627 -k1,6230:24977581,22886368:218628 -k1,6230:25847636,22886368:218627 -k1,6230:27888164,22886368:218627 -k1,6230:28572752,22886368:218627 -k1,6230:30446164,22886368:218628 -k1,6230:31196288,22886368:218627 -k1,6230:31966991,22886368:0 -) -(1,6231:7246811,23727856:24720180,513147,134348 -k1,6230:9957447,23727856:219613 -k1,6230:10591883,23727856:219593 -k1,6230:13680662,23727856:219613 -k1,6230:17152827,23727856:219613 -k1,6230:18320091,23727856:219613 -k1,6230:22789058,23727856:219613 -k1,6230:25427606,23727856:219614 -k1,6230:26306511,23727856:219613 -k1,6230:28331641,23727856:219613 -k1,6230:29570339,23727856:219613 -k1,6231:31966991,23727856:0 -) -(1,6231:7246811,24569344:24720180,513147,134348 -k1,6230:9659190,24569344:201850 -k1,6230:10729391,24569344:201849 -k1,6230:12635177,24569344:201850 -k1,6230:13464861,24569344:201849 -k1,6230:14869952,24569344:201850 -k1,6230:16612552,24569344:201849 -k1,6230:18549795,24569344:201850 -(1,6230:18549795,24569344:0,452978,115847 -r1,6243:21721755,24569344:3171960,568825,115847 -k1,6230:18549795,24569344:-3171960 -) -(1,6230:18549795,24569344:3171960,452978,115847 -k1,6230:18549795,24569344:3277 -h1,6230:21718478,24569344:0,411205,112570 -) -k1,6230:21923604,24569344:201849 -k1,6230:25212200,24569344:201850 -k1,6230:26433134,24569344:201849 -k1,6230:28752452,24569344:201850 -k1,6230:30699525,24569344:201849 -k1,6230:31966991,24569344:0 -) -(1,6231:7246811,25410832:24720180,513147,134348 -g1,6230:7801900,25410832 -g1,6230:9874148,25410832 -g1,6230:12768873,25410832 -g1,6230:14241467,25410832 -g1,6230:15907392,25410832 -g1,6230:19378834,25410832 -g1,6230:23653747,25410832 -g1,6230:25044421,25410832 -k1,6231:31966991,25410832:3354790 -g1,6231:31966991,25410832 -) -v1,6233:7246811,26601298:0,393216,0 -(1,6240:7246811,27616651:24720180,1408569,196608 -g1,6240:7246811,27616651 -g1,6240:7246811,27616651 -g1,6240:7050203,27616651 -(1,6240:7050203,27616651:0,1408569,196608 -r1,6243:32163599,27616651:25113396,1605177,196608 -k1,6240:7050203,27616651:-25113396 -) -(1,6240:7050203,27616651:25113396,1408569,196608 -[1,6240:7246811,27616651:24720180,1211961,0 -(1,6235:7246811,26808916:24720180,404226,76021 -(1,6234:7246811,26808916:0,0,0 -g1,6234:7246811,26808916 -g1,6234:7246811,26808916 -g1,6234:6919131,26808916 -(1,6234:6919131,26808916:0,0,0 -) -g1,6234:7246811,26808916 -) -k1,6235:7246811,26808916:0 -h1,6235:10408268,26808916:0,0,0 -k1,6235:31966992,26808916:21558724 -g1,6235:31966992,26808916 -) -(1,6239:7246811,27540630:24720180,404226,76021 -(1,6237:7246811,27540630:0,0,0 -g1,6237:7246811,27540630 -g1,6237:7246811,27540630 -g1,6237:6919131,27540630 -(1,6237:6919131,27540630:0,0,0 -) -g1,6237:7246811,27540630 -) -g1,6239:8195248,27540630 -g1,6239:8511394,27540630 -g1,6239:9775977,27540630 -g1,6239:11040560,27540630 -g1,6239:12305143,27540630 -g1,6239:13569726,27540630 -g1,6239:14834309,27540630 -g1,6239:16098892,27540630 -g1,6239:17363475,27540630 -g1,6239:18628058,27540630 -g1,6239:19892641,27540630 -g1,6239:21157224,27540630 -h1,6239:22105661,27540630:0,0,0 -k1,6239:31966991,27540630:9861330 -g1,6239:31966991,27540630 -) -] -) -g1,6240:31966991,27616651 -g1,6240:7246811,27616651 -g1,6240:7246811,27616651 -g1,6240:31966991,27616651 -g1,6240:31966991,27616651 -) -h1,6240:7246811,27813259:0,0,0 -] -) -] -r1,6243:32583029,28927371:26214,23066490,0 -) -] -) -) -g1,6243:32583029,28337547 -) -h1,6243:6630773,28953585:0,0,0 -v1,6246:6630773,30319361:0,393216,0 -(1,6248:6630773,37646456:25952256,7720311,616038 -g1,6248:6630773,37646456 -(1,6248:6630773,37646456:25952256,7720311,616038 -(1,6248:6630773,38262494:25952256,8336349,0 -[1,6248:6630773,38262494:25952256,8336349,0 -(1,6248:6630773,38236280:25952256,8283921,0 -r1,6248:6656987,38236280:26214,8283921,0 -[1,6248:6656987,38236280:25899828,8283921,0 -(1,6248:6656987,37646456:25899828,7104273,0 -[1,6248:7246811,37646456:24720180,7104273,0 -(1,6248:7246811,31629557:24720180,1087374,134348 -k1,6246:8722456,31629557:265942 -k1,6246:9593951,31629557:265942 -k1,6246:11280714,31629557:265942 -k1,6246:13502907,31629557:265943 -k1,6246:14939322,31629557:265942 -k1,6246:17445940,31629557:265942 -k1,6246:18915123,31629557:265942 -k1,6246:20329256,31629557:265942 -k1,6246:23430285,31629557:265942 -k1,6246:24421055,31629557:265942 -k1,6246:25971504,31629557:265943 -k1,6246:27613047,31629557:265942 -k1,6246:28898074,31629557:265942 -k1,6246:30312207,31629557:265942 -k1,6246:31966991,31629557:0 -) -(1,6248:7246811,32471045:24720180,513147,126483 -k1,6246:10182356,32471045:222354 -k1,6246:11396271,32471045:222355 -k1,6246:13584050,32471045:222354 -k1,6246:14969013,32471045:222354 -k1,6246:17256406,32471045:222354 -k1,6246:19301317,32471045:222355 -k1,6246:20616156,32471045:222354 -k1,6246:21497802,32471045:222354 -k1,6246:25027104,32471045:222355 -k1,6246:25900886,32471045:222354 -k1,6246:27943830,32471045:222354 -k1,6246:28522044,32471045:222354 -k1,6246:30066260,32471045:222355 -k1,6246:30947906,32471045:222354 -k1,6246:31966991,32471045:0 -) -(1,6248:7246811,33312533:24720180,513147,126483 -k1,6246:9930292,33312533:215395 -k1,6247:10751240,33312533:215395 -k1,6247:11795665,33312533:215395 -k1,6247:14034812,33312533:215395 -k1,6247:16633096,33312533:215395 -k1,6247:18717578,33312533:215395 -k1,6247:20089682,33312533:215394 -k1,6247:22073894,33312533:215395 -k1,6247:24551592,33312533:215395 -k1,6247:25786072,33312533:215395 -k1,6247:28118935,33312533:215395 -k1,6247:30079554,33312533:215395 -k1,6247:31966991,33312533:0 -) -(1,6248:7246811,34154021:24720180,513147,126483 -k1,6247:9164343,34154021:206387 -k1,6247:12509904,34154021:206386 -k1,6247:13735376,34154021:206387 -k1,6247:16029084,34154021:206386 -k1,6247:17426916,34154021:206387 -k1,6247:18725787,34154021:206386 -(1,6247:18725787,34154021:0,452978,115847 -r1,6248:21897747,34154021:3171960,568825,115847 -k1,6247:18725787,34154021:-3171960 -) -(1,6247:18725787,34154021:3171960,452978,115847 -k1,6247:18725787,34154021:3277 -h1,6247:21894470,34154021:0,411205,112570 -) -k1,6247:22104134,34154021:206387 -k1,6247:24197957,34154021:206386 -k1,6247:26115489,34154021:206387 -k1,6247:27004760,34154021:206386 -k1,6247:28597889,34154021:206387 -k1,6247:29639859,34154021:206386 -k1,6247:30312207,34154021:206387 -k1,6247:31966991,34154021:0 -) -(1,6248:7246811,34995509:24720180,513147,134348 -k1,6247:7933603,34995509:155295 -k1,6247:8704937,34995509:155296 -k1,6247:9275031,34995509:155251 -k1,6247:9786186,34995509:155295 -k1,6247:12636978,34995509:155296 -k1,6247:13739924,34995509:155295 -k1,6247:15098460,34995509:155295 -k1,6247:18501720,34995509:155296 -k1,6247:19144559,34995509:155251 -k1,6247:20883860,34995509:155296 -k1,6247:22701803,34995509:155295 -k1,6247:23508526,34995509:155295 -k1,6247:25152144,34995509:155295 -k1,6247:25838937,34995509:155296 -k1,6247:27388183,34995509:155295 -(1,6247:27388183,34995509:0,452978,115847 -r1,6248:31966991,34995509:4578808,568825,115847 -k1,6247:27388183,34995509:-4578808 -) -(1,6247:27388183,34995509:4578808,452978,115847 -k1,6247:27388183,34995509:3277 -h1,6247:31963714,34995509:0,411205,112570 -) -k1,6247:31966991,34995509:0 -) -(1,6248:7246811,35836997:24720180,513147,134348 -k1,6247:8137271,35836997:204298 -k1,6247:10543578,35836997:204297 -k1,6247:13773673,35836997:204298 -k1,6247:15314904,35836997:204297 -k1,6247:17255906,35836997:204298 -k1,6247:18479288,35836997:204297 -k1,6247:20337059,35836997:204298 -k1,6247:21929409,35836997:204297 -k1,6247:23805530,35836997:204298 -k1,6247:24692712,35836997:204297 -k1,6247:25509772,35836997:204298 -k1,6247:27209601,35836997:204297 -k1,6247:28161665,35836997:204298 -k1,6247:30127570,35836997:204297 -k1,6247:30947906,35836997:204298 -k1,6247:31966991,35836997:0 -) -(1,6248:7246811,36678485:24720180,513147,134348 -k1,6247:8764438,36678485:167585 -k1,6247:10517994,36678485:167585 -k1,6247:13137936,36678485:167585 -k1,6247:14203364,36678485:167585 -k1,6247:15277312,36678485:167585 -k1,6247:16821808,36678485:167585 -k1,6247:18180837,36678485:167584 -k1,6247:20716893,36678485:167585 -k1,6247:22586448,36678485:167585 -k1,6247:24142086,36678485:167585 -k1,6247:26138125,36678485:167585 -k1,6247:26921748,36678485:167585 -k1,6247:29159615,36678485:167585 -k1,6247:30274851,36678485:167585 -k1,6247:31966991,36678485:0 -) -(1,6248:7246811,37519973:24720180,513147,126483 -g1,6247:10141536,37519973 -g1,6247:11511238,37519973 -g1,6247:13047401,37519973 -g1,6247:14512786,37519973 -g1,6247:16689236,37519973 -g1,6247:17504503,37519973 -g1,6247:18722817,37519973 -g1,6247:21476639,37519973 -g1,6247:22335160,37519973 -g1,6247:23993220,37519973 -g1,6247:25522830,37519973 -k1,6248:31966991,37519973:4881127 -g1,6248:31966991,37519973 -) -] -) -] -r1,6248:32583029,38236280:26214,8283921,0 -) -] -) -) -g1,6248:32583029,37646456 -) -h1,6248:6630773,38262494:0,0,0 -(1,6250:6630773,41070062:25952256,32768,229376 -(1,6250:6630773,41070062:0,32768,229376 -(1,6250:6630773,41070062:5505024,32768,229376 -r1,6250:12135797,41070062:5505024,262144,229376 -) -k1,6250:6630773,41070062:-5505024 -) -(1,6250:6630773,41070062:25952256,32768,0 -r1,6250:32583029,41070062:25952256,32768,0 -) -) -(1,6250:6630773,42674390:25952256,615776,151780 -(1,6250:6630773,42674390:1974731,582746,14155 -g1,6250:6630773,42674390 -g1,6250:8605504,42674390 -) -g1,6250:11225896,42674390 -k1,6250:32583030,42674390:17602708 -g1,6250:32583030,42674390 -) -(1,6253:6630773,43909094:25952256,513147,134348 -k1,6252:8686284,43909094:172006 -k1,6252:11884088,43909094:172007 -k1,6252:13819668,43909094:172006 -k1,6252:14347534,43909094:172006 -k1,6252:17215037,43909094:172007 -k1,6252:19592330,43909094:172006 -k1,6252:20450498,43909094:172006 -k1,6252:21393207,43909094:172006 -k1,6252:24637542,43909094:172007 -k1,6252:25460976,43909094:172006 -k1,6252:28913714,43909094:172006 -(1,6252:28913714,43909094:0,414482,115847 -r1,6252:29975403,43909094:1061689,530329,115847 -k1,6252:28913714,43909094:-1061689 -) -(1,6252:28913714,43909094:1061689,414482,115847 -k1,6252:28913714,43909094:3277 -h1,6252:29972126,43909094:0,411205,112570 -) -k1,6252:30147410,43909094:172007 -k1,6252:31002301,43909094:172006 -k1,6253:32583029,43909094:0 -) -(1,6253:6630773,44750582:25952256,513147,134348 -k1,6252:9018162,44750582:276474 -k1,6252:9946064,44750582:276474 -k1,6252:13091703,44750582:276473 -k1,6252:13984215,44750582:276474 -k1,6252:14616549,44750582:276474 -k1,6252:17979769,44750582:276474 -k1,6252:18923398,44750582:276473 -k1,6252:19614638,44750582:276397 -k1,6252:22180939,44750582:276473 -k1,6252:24662700,44750582:276474 -k1,6252:25625336,44750582:276474 -k1,6252:26672513,44750582:276474 -k1,6252:30021314,44750582:276473 -k1,6252:30949216,44750582:276474 -k1,6253:32583029,44750582:0 -) -(1,6253:6630773,45592070:25952256,505283,126483 -k1,6252:8762019,45592070:271334 -(1,6252:8762019,45592070:0,414482,115847 -r1,6252:9120285,45592070:358266,530329,115847 -k1,6252:8762019,45592070:-358266 -) -(1,6252:8762019,45592070:358266,414482,115847 -k1,6252:8762019,45592070:3277 -h1,6252:9117008,45592070:0,411205,112570 -) -k1,6252:9391619,45592070:271334 -k1,6252:10345838,45592070:271334 -k1,6252:14095823,45592070:271334 -k1,6252:17906101,45592070:271334 -k1,6252:18828863,45592070:271334 -k1,6252:20985668,45592070:271334 -(1,6252:20985668,45592070:0,414482,115847 -r1,6252:22047357,45592070:1061689,530329,115847 -k1,6252:20985668,45592070:-1061689 +[1,6259:3078558,4812305:0,0,0 +(1,6259:3078558,49800853:0,16384,2228224 +g1,6259:29030814,49800853 +g1,6259:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6259:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 +) +] +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6259:37855564,49800853:1179648,16384,0 +) +) +k1,6259:3078556,49800853:-34777008 +) +] +g1,6259:6630773,4812305 +g1,6259:6630773,4812305 +g1,6259:8671564,4812305 +g1,6259:11756343,4812305 +k1,6259:31387651,4812305:19631308 +) +) +] +[1,6259:6630773,45706769:25952256,40108032,0 +(1,6259:6630773,45706769:25952256,40108032,0 +(1,6259:6630773,45706769:0,0,0 +g1,6259:6630773,45706769 +) +[1,6259:6630773,45706769:25952256,40108032,0 +v1,6249:6630773,6254097:0,393216,0 +(1,6249:6630773,29179035:25952256,23318154,616038 +g1,6249:6630773,29179035 +(1,6249:6630773,29179035:25952256,23318154,616038 +(1,6249:6630773,29795073:25952256,23934192,0 +[1,6249:6630773,29795073:25952256,23934192,0 +(1,6249:6630773,29768859:25952256,23907978,0 +r1,6249:6656987,29768859:26214,23907978,0 +[1,6249:6656987,29768859:25899828,23907978,0 +(1,6249:6656987,29179035:25899828,22728330,0 +[1,6249:7246811,29179035:24720180,22728330,0 +(1,6204:7246811,6963852:24720180,513147,126483 +k1,6203:9238559,6963852:190819 +k1,6203:10377029,6963852:190819 +k1,6203:11586933,6963852:190819 +k1,6203:13444332,6963852:190818 +k1,6203:15223744,6963852:190819 +k1,6203:16100725,6963852:190819 +k1,6203:16706378,6963852:190810 +k1,6203:17998202,6963852:190819 +k1,6203:18544881,6963852:190819 +k1,6203:21431196,6963852:190819 +(1,6203:21431196,6963852:0,452978,115847 +r1,6249:23196309,6963852:1765113,568825,115847 +k1,6203:21431196,6963852:-1765113 +) +(1,6203:21431196,6963852:1765113,452978,115847 +k1,6203:21431196,6963852:3277 +h1,6203:23193032,6963852:0,411205,112570 +) +k1,6203:23387128,6963852:190819 +k1,6203:25463418,6963852:190819 +k1,6203:27995182,6963852:190818 +k1,6203:29205086,6963852:190819 +k1,6203:30761020,6963852:190819 +k1,6203:31611131,6963852:190819 +k1,6203:31966991,6963852:0 +) +(1,6204:7246811,7805340:24720180,513147,134348 +k1,6203:9377824,7805340:153136 +k1,6203:11736246,7805340:153135 +k1,6203:12575544,7805340:153136 +k1,6203:13517078,7805340:153136 +k1,6203:16916212,7805340:153136 +k1,6203:20167234,7805340:153135 +k1,6203:21339455,7805340:153136 +k1,6203:23159172,7805340:153136 +k1,6203:24727230,7805340:153136 +k1,6203:25641893,7805340:153135 +k1,6203:26565732,7805340:153136 +k1,6203:29271495,7805340:153136 +k1,6203:31966991,7805340:0 +) +(1,6204:7246811,8646828:24720180,513147,134348 +g1,6203:8550322,8646828 +g1,6203:9497317,8646828 +g1,6203:12535566,8646828 +g1,6203:13386223,8646828 +g1,6203:16214756,8646828 +g1,6203:20489669,8646828 +k1,6204:31966991,8646828:7423920 +g1,6204:31966991,8646828 +) +v1,6206:7246811,9837294:0,393216,0 +(1,6217:7246811,13523651:24720180,4079573,196608 +g1,6217:7246811,13523651 +g1,6217:7246811,13523651 +g1,6217:7050203,13523651 +(1,6217:7050203,13523651:0,4079573,196608 +r1,6249:32163599,13523651:25113396,4276181,196608 +k1,6217:7050203,13523651:-25113396 +) +(1,6217:7050203,13523651:25113396,4079573,196608 +[1,6217:7246811,13523651:24720180,3882965,0 +(1,6208:7246811,10051204:24720180,410518,101187 +(1,6207:7246811,10051204:0,0,0 +g1,6207:7246811,10051204 +g1,6207:7246811,10051204 +g1,6207:6919131,10051204 +(1,6207:6919131,10051204:0,0,0 +) +g1,6207:7246811,10051204 +) +g1,6208:9775977,10051204 +g1,6208:10724415,10051204 +g1,6208:16098893,10051204 +g1,6208:16731185,10051204 +k1,6208:16731185,10051204:23593 +h1,6208:18651652,10051204:0,0,0 +k1,6208:31966991,10051204:13315339 +g1,6208:31966991,10051204 +) +(1,6209:7246811,10717382:24720180,410518,76021 +h1,6209:7246811,10717382:0,0,0 +g1,6209:8511394,10717382 +g1,6209:9459831,10717382 +g1,6209:10408268,10717382 +g1,6209:13885872,10717382 +h1,6209:14202018,10717382:0,0,0 +k1,6209:31966990,10717382:17764972 +g1,6209:31966990,10717382 +) +(1,6210:7246811,11383560:24720180,404226,82312 +h1,6210:7246811,11383560:0,0,0 +g1,6210:7562957,11383560 +g1,6210:7879103,11383560 +g1,6210:11356706,11383560 +g1,6210:12305144,11383560 +g1,6210:15150456,11383560 +h1,6210:15782747,11383560:0,0,0 +k1,6210:31966991,11383560:16184244 +g1,6210:31966991,11383560 +) +(1,6211:7246811,12049738:24720180,404226,76021 +h1,6211:7246811,12049738:0,0,0 +h1,6211:7562957,12049738:0,0,0 +k1,6211:31966991,12049738:24404034 +g1,6211:31966991,12049738 +) +(1,6212:7246811,12715916:24720180,404226,101187 +h1,6212:7246811,12715916:0,0,0 +k1,6212:7246811,12715916:0 +h1,6212:11672850,12715916:0,0,0 +k1,6212:31966990,12715916:20294140 +g1,6212:31966990,12715916 +) +(1,6216:7246811,13447630:24720180,404226,76021 +(1,6214:7246811,13447630:0,0,0 +g1,6214:7246811,13447630 +g1,6214:7246811,13447630 +g1,6214:6919131,13447630 +(1,6214:6919131,13447630:0,0,0 +) +g1,6214:7246811,13447630 +) +g1,6216:8195248,13447630 +g1,6216:8511394,13447630 +g1,6216:9775977,13447630 +g1,6216:11040560,13447630 +g1,6216:12305143,13447630 +g1,6216:13569726,13447630 +g1,6216:14834309,13447630 +g1,6216:16098892,13447630 +g1,6216:17363475,13447630 +g1,6216:18628058,13447630 +g1,6216:19892641,13447630 +g1,6216:21157224,13447630 +h1,6216:22105661,13447630:0,0,0 +k1,6216:31966991,13447630:9861330 +g1,6216:31966991,13447630 +) +] +) +g1,6217:31966991,13523651 +g1,6217:7246811,13523651 +g1,6217:7246811,13523651 +g1,6217:31966991,13523651 +g1,6217:31966991,13523651 +) +h1,6217:7246811,13720259:0,0,0 +(1,6221:7246811,15086035:24720180,505283,115847 +h1,6220:7246811,15086035:983040,0,0 +(1,6220:8229851,15086035:0,452978,115847 +r1,6249:10346676,15086035:2116825,568825,115847 +k1,6220:8229851,15086035:-2116825 +) +(1,6220:8229851,15086035:2116825,452978,115847 +g1,6220:9991687,15086035 +h1,6220:10343399,15086035:0,411205,112570 +) +k1,6220:10560189,15086035:213513 +k1,6220:12924594,15086035:213513 +k1,6220:14342003,15086035:213513 +(1,6220:14342003,15086035:0,452978,115847 +r1,6249:14700269,15086035:358266,568825,115847 +k1,6220:14342003,15086035:-358266 +) +(1,6220:14342003,15086035:358266,452978,115847 +k1,6220:14342003,15086035:3277 +h1,6220:14696992,15086035:0,411205,112570 +) +k1,6220:14913781,15086035:213512 +k1,6220:16318739,15086035:213513 +k1,6220:17298368,15086035:213513 +k1,6220:20398742,15086035:213513 +k1,6220:23870705,15086035:213513 +k1,6220:24700256,15086035:213513 +k1,6220:25328597,15086035:213498 +k1,6220:26561195,15086035:213513 +k1,6220:27978604,15086035:213513 +k1,6220:29941273,15086035:213513 +k1,6220:31966991,15086035:0 +) +(1,6221:7246811,15927523:24720180,513147,7863 +k1,6221:31966990,15927523:23240376 +g1,6221:31966990,15927523 +) +(1,6224:7246811,16769011:24720180,513147,126483 +h1,6222:7246811,16769011:983040,0,0 +k1,6222:9920932,16769011:225696 +k1,6222:12477744,16769011:225696 +k1,6222:14448663,16769011:225695 +k1,6222:15778641,16769011:225696 +k1,6222:16752103,16769011:225696 +k1,6222:20348316,16769011:225696 +k1,6222:21039972,16769011:225695 +k1,6222:22134020,16769011:225696 +k1,6222:23452201,16769011:225696 +k1,6222:24448600,16769011:225696 +k1,6222:26466705,16769011:225695 +k1,6222:29561567,16769011:225696 +k1,6222:31280829,16769011:225696 +k1,6224:31966991,16769011:0 +) +(1,6224:7246811,17610499:24720180,513147,126483 +(1,6222:7246811,17610499:0,452978,115847 +r1,6249:9715348,17610499:2468537,568825,115847 +k1,6222:7246811,17610499:-2468537 +) +(1,6222:7246811,17610499:2468537,452978,115847 +k1,6222:7246811,17610499:3277 +h1,6222:9712071,17610499:0,411205,112570 +) +k1,6222:10117667,17610499:228649 +(1,6222:10117667,17610499:0,452978,115847 +r1,6249:12937916,17610499:2820249,568825,115847 +k1,6222:10117667,17610499:-2820249 +) +(1,6222:10117667,17610499:2820249,452978,115847 +k1,6222:10117667,17610499:3277 +h1,6222:12934639,17610499:0,411205,112570 +) +k1,6222:13166566,17610499:228650 +k1,6222:14078100,17610499:228649 +(1,6222:14078100,17610499:0,452978,115847 +r1,6249:16898349,17610499:2820249,568825,115847 +k1,6222:14078100,17610499:-2820249 +) +(1,6222:14078100,17610499:2820249,452978,115847 +k1,6222:14078100,17610499:3277 +h1,6222:16895072,17610499:0,411205,112570 +) +k1,6222:17300669,17610499:228650 +k1,6222:18145356,17610499:228649 +k1,6222:20036654,17610499:228650 +k1,6222:20924595,17610499:228649 +k1,6222:22172330,17610499:228650 +k1,6222:24102949,17610499:228649 +(1,6222:24102949,17610499:0,459977,115847 +r1,6249:25164638,17610499:1061689,575824,115847 +k1,6222:24102949,17610499:-1061689 +) +(1,6222:24102949,17610499:1061689,459977,115847 +k1,6222:24102949,17610499:3277 +h1,6222:25161361,17610499:0,411205,112570 +) +k1,6222:25393288,17610499:228650 +k1,6222:27210530,17610499:228649 +k1,6222:28489067,17610499:228650 +k1,6222:30996403,17610499:228649 +h1,6222:31966991,17610499:0,0,0 +k1,6222:31966991,17610499:0 +) +(1,6224:7246811,18451987:24720180,513147,126483 +g1,6222:9314471,18451987 +g1,6223:10461351,18451987 +g1,6223:12778048,18451987 +g1,6223:13786647,18451987 +g1,6223:15004961,18451987 +g1,6223:16296675,18451987 +g1,6223:17155196,18451987 +g1,6223:18373510,18451987 +g1,6223:21335082,18451987 +g1,6223:23326721,18451987 +k1,6224:31966991,18451987:5440802 +g1,6224:31966991,18451987 +) +v1,6226:7246811,19642453:0,393216,0 +(1,6234:7246811,21323984:24720180,2074747,196608 +g1,6234:7246811,21323984 +g1,6234:7246811,21323984 +g1,6234:7050203,21323984 +(1,6234:7050203,21323984:0,2074747,196608 +r1,6249:32163599,21323984:25113396,2271355,196608 +k1,6234:7050203,21323984:-25113396 +) +(1,6234:7050203,21323984:25113396,2074747,196608 +[1,6234:7246811,21323984:24720180,1878139,0 +(1,6228:7246811,19850071:24720180,404226,101187 +(1,6227:7246811,19850071:0,0,0 +g1,6227:7246811,19850071 +g1,6227:7246811,19850071 +g1,6227:6919131,19850071 +(1,6227:6919131,19850071:0,0,0 +) +g1,6227:7246811,19850071 +) +g1,6228:9775977,19850071 +g1,6228:10724415,19850071 +g1,6228:13569726,19850071 +g1,6228:15782746,19850071 +g1,6228:16415038,19850071 +g1,6228:17363476,19850071 +g1,6228:18944205,19850071 +g1,6228:19576497,19850071 +g1,6228:22421808,19850071 +g1,6228:25583265,19850071 +k1,6228:25583265,19850071:0 +h1,6228:26847848,19850071:0,0,0 +k1,6228:31966991,19850071:5119143 +g1,6228:31966991,19850071 +) +(1,6229:7246811,20516249:24720180,404226,101187 +h1,6229:7246811,20516249:0,0,0 +k1,6229:7246811,20516249:0 +h1,6229:11672850,20516249:0,0,0 +k1,6229:31966990,20516249:20294140 +g1,6229:31966990,20516249 +) +(1,6233:7246811,21247963:24720180,404226,76021 +(1,6231:7246811,21247963:0,0,0 +g1,6231:7246811,21247963 +g1,6231:7246811,21247963 +g1,6231:6919131,21247963 +(1,6231:6919131,21247963:0,0,0 +) +g1,6231:7246811,21247963 +) +g1,6233:8195248,21247963 +g1,6233:8511394,21247963 +g1,6233:9775977,21247963 +g1,6233:11040560,21247963 +g1,6233:12305143,21247963 +g1,6233:13569726,21247963 +g1,6233:14834309,21247963 +g1,6233:16098892,21247963 +g1,6233:17363475,21247963 +g1,6233:18628058,21247963 +g1,6233:19892641,21247963 +g1,6233:21157224,21247963 +h1,6233:22105661,21247963:0,0,0 +k1,6233:31966991,21247963:9861330 +g1,6233:31966991,21247963 +) +] +) +g1,6234:31966991,21323984 +g1,6234:7246811,21323984 +g1,6234:7246811,21323984 +g1,6234:31966991,21323984 +g1,6234:31966991,21323984 +) +h1,6234:7246811,21520592:0,0,0 +(1,6237:7246811,22886368:24720180,513147,134348 +h1,6236:7246811,22886368:983040,0,0 +k1,6236:12035475,22886368:232601 +k1,6236:13471972,22886368:232601 +k1,6236:15399989,22886368:232601 +k1,6236:16164087,22886368:232601 +k1,6236:16752548,22886368:232601 +k1,6236:19723899,22886368:232601 +k1,6236:23204464,22886368:232601 +k1,6236:24161893,22886368:232601 +k1,6236:24809304,22886368:232568 +k1,6236:26142910,22886368:232601 +k1,6236:26731371,22886368:232601 +k1,6236:29271495,22886368:232601 +k1,6236:31966991,22886368:0 +) +(1,6237:7246811,23727856:24720180,513147,126483 +k1,6236:8413089,23727856:218627 +k1,6236:10008628,23727856:218628 +k1,6236:11045144,23727856:218627 +k1,6236:13297353,23727856:218627 +k1,6236:14909931,23727856:218627 +(1,6236:14909931,23727856:0,459977,115847 +r1,6249:17026756,23727856:2116825,575824,115847 +k1,6236:14909931,23727856:-2116825 +) +(1,6236:14909931,23727856:2116825,459977,115847 +k1,6236:14909931,23727856:3277 +h1,6236:17023479,23727856:0,411205,112570 +) +k1,6236:17419054,23727856:218628 +k1,6236:18095778,23727856:218627 +k1,6236:18845902,23727856:218627 +k1,6236:21193794,23727856:218627 +k1,6236:24977581,23727856:218628 +k1,6236:25847636,23727856:218627 +k1,6236:27888164,23727856:218627 +k1,6236:28572752,23727856:218627 +k1,6236:30446164,23727856:218628 +k1,6236:31196288,23727856:218627 +k1,6236:31966991,23727856:0 +) +(1,6237:7246811,24569344:24720180,513147,134348 +k1,6236:9957447,24569344:219613 +k1,6236:10591883,24569344:219593 +k1,6236:13680662,24569344:219613 +k1,6236:17152827,24569344:219613 +k1,6236:18320091,24569344:219613 +k1,6236:22789058,24569344:219613 +k1,6236:25427606,24569344:219614 +k1,6236:26306511,24569344:219613 +k1,6236:28331641,24569344:219613 +k1,6236:29570339,24569344:219613 +k1,6237:31966991,24569344:0 +) +(1,6237:7246811,25410832:24720180,513147,134348 +k1,6236:9659190,25410832:201850 +k1,6236:10729391,25410832:201849 +k1,6236:12635177,25410832:201850 +k1,6236:13464861,25410832:201849 +k1,6236:14869952,25410832:201850 +k1,6236:16612552,25410832:201849 +k1,6236:18549795,25410832:201850 +(1,6236:18549795,25410832:0,452978,115847 +r1,6249:21721755,25410832:3171960,568825,115847 +k1,6236:18549795,25410832:-3171960 +) +(1,6236:18549795,25410832:3171960,452978,115847 +k1,6236:18549795,25410832:3277 +h1,6236:21718478,25410832:0,411205,112570 +) +k1,6236:21923604,25410832:201849 +k1,6236:25212200,25410832:201850 +k1,6236:26433134,25410832:201849 +k1,6236:28752452,25410832:201850 +k1,6236:30699525,25410832:201849 +k1,6236:31966991,25410832:0 +) +(1,6237:7246811,26252320:24720180,513147,134348 +g1,6236:7801900,26252320 +g1,6236:9874148,26252320 +g1,6236:12768873,26252320 +g1,6236:14241467,26252320 +g1,6236:15907392,26252320 +g1,6236:19378834,26252320 +g1,6236:23653747,26252320 +g1,6236:25044421,26252320 +k1,6237:31966991,26252320:3354790 +g1,6237:31966991,26252320 +) +v1,6239:7246811,27442786:0,393216,0 +(1,6246:7246811,28458139:24720180,1408569,196608 +g1,6246:7246811,28458139 +g1,6246:7246811,28458139 +g1,6246:7050203,28458139 +(1,6246:7050203,28458139:0,1408569,196608 +r1,6249:32163599,28458139:25113396,1605177,196608 +k1,6246:7050203,28458139:-25113396 +) +(1,6246:7050203,28458139:25113396,1408569,196608 +[1,6246:7246811,28458139:24720180,1211961,0 +(1,6241:7246811,27650404:24720180,404226,76021 +(1,6240:7246811,27650404:0,0,0 +g1,6240:7246811,27650404 +g1,6240:7246811,27650404 +g1,6240:6919131,27650404 +(1,6240:6919131,27650404:0,0,0 +) +g1,6240:7246811,27650404 +) +k1,6241:7246811,27650404:0 +h1,6241:10408268,27650404:0,0,0 +k1,6241:31966992,27650404:21558724 +g1,6241:31966992,27650404 +) +(1,6245:7246811,28382118:24720180,404226,76021 +(1,6243:7246811,28382118:0,0,0 +g1,6243:7246811,28382118 +g1,6243:7246811,28382118 +g1,6243:6919131,28382118 +(1,6243:6919131,28382118:0,0,0 +) +g1,6243:7246811,28382118 +) +g1,6245:8195248,28382118 +g1,6245:8511394,28382118 +g1,6245:9775977,28382118 +g1,6245:11040560,28382118 +g1,6245:12305143,28382118 +g1,6245:13569726,28382118 +g1,6245:14834309,28382118 +g1,6245:16098892,28382118 +g1,6245:17363475,28382118 +g1,6245:18628058,28382118 +g1,6245:19892641,28382118 +g1,6245:21157224,28382118 +h1,6245:22105661,28382118:0,0,0 +k1,6245:31966991,28382118:9861330 +g1,6245:31966991,28382118 +) +] +) +g1,6246:31966991,28458139 +g1,6246:7246811,28458139 +g1,6246:7246811,28458139 +g1,6246:31966991,28458139 +g1,6246:31966991,28458139 +) +h1,6246:7246811,28654747:0,0,0 +] +) +] +r1,6249:32583029,29768859:26214,23907978,0 +) +] +) +) +g1,6249:32583029,29179035 +) +h1,6249:6630773,29795073:0,0,0 +v1,6252:6630773,31160849:0,393216,0 +(1,6254:6630773,38487944:25952256,7720311,616038 +g1,6254:6630773,38487944 +(1,6254:6630773,38487944:25952256,7720311,616038 +(1,6254:6630773,39103982:25952256,8336349,0 +[1,6254:6630773,39103982:25952256,8336349,0 +(1,6254:6630773,39077768:25952256,8283921,0 +r1,6254:6656987,39077768:26214,8283921,0 +[1,6254:6656987,39077768:25899828,8283921,0 +(1,6254:6656987,38487944:25899828,7104273,0 +[1,6254:7246811,38487944:24720180,7104273,0 +(1,6254:7246811,32471045:24720180,1087374,134348 +k1,6252:8722456,32471045:265942 +k1,6252:9593951,32471045:265942 +k1,6252:11280714,32471045:265942 +k1,6252:13502907,32471045:265943 +k1,6252:14939322,32471045:265942 +k1,6252:17445940,32471045:265942 +k1,6252:18915123,32471045:265942 +k1,6252:20329256,32471045:265942 +k1,6252:23430285,32471045:265942 +k1,6252:24421055,32471045:265942 +k1,6252:25971504,32471045:265943 +k1,6252:27613047,32471045:265942 +k1,6252:28898074,32471045:265942 +k1,6252:30312207,32471045:265942 +k1,6252:31966991,32471045:0 +) +(1,6254:7246811,33312533:24720180,513147,126483 +k1,6252:10182356,33312533:222354 +k1,6252:11396271,33312533:222355 +k1,6252:13584050,33312533:222354 +k1,6252:14969013,33312533:222354 +k1,6252:17256406,33312533:222354 +k1,6252:19301317,33312533:222355 +k1,6252:20616156,33312533:222354 +k1,6252:21497802,33312533:222354 +k1,6252:25027104,33312533:222355 +k1,6252:25900886,33312533:222354 +k1,6252:27943830,33312533:222354 +k1,6252:28522044,33312533:222354 +k1,6252:30066260,33312533:222355 +k1,6252:30947906,33312533:222354 +k1,6252:31966991,33312533:0 +) +(1,6254:7246811,34154021:24720180,513147,126483 +k1,6252:9930292,34154021:215395 +k1,6253:10751240,34154021:215395 +k1,6253:11795665,34154021:215395 +k1,6253:14034812,34154021:215395 +k1,6253:16633096,34154021:215395 +k1,6253:18717578,34154021:215395 +k1,6253:20089682,34154021:215394 +k1,6253:22073894,34154021:215395 +k1,6253:24551592,34154021:215395 +k1,6253:25786072,34154021:215395 +k1,6253:28118935,34154021:215395 +k1,6253:30079554,34154021:215395 +k1,6253:31966991,34154021:0 +) +(1,6254:7246811,34995509:24720180,513147,126483 +k1,6253:9164343,34995509:206387 +k1,6253:12509904,34995509:206386 +k1,6253:13735376,34995509:206387 +k1,6253:16029084,34995509:206386 +k1,6253:17426916,34995509:206387 +k1,6253:18725787,34995509:206386 +(1,6253:18725787,34995509:0,452978,115847 +r1,6254:21897747,34995509:3171960,568825,115847 +k1,6253:18725787,34995509:-3171960 +) +(1,6253:18725787,34995509:3171960,452978,115847 +k1,6253:18725787,34995509:3277 +h1,6253:21894470,34995509:0,411205,112570 +) +k1,6253:22104134,34995509:206387 +k1,6253:24197957,34995509:206386 +k1,6253:26115489,34995509:206387 +k1,6253:27004760,34995509:206386 +k1,6253:28597889,34995509:206387 +k1,6253:29639859,34995509:206386 +k1,6253:30312207,34995509:206387 +k1,6253:31966991,34995509:0 +) +(1,6254:7246811,35836997:24720180,513147,134348 +k1,6253:7933603,35836997:155295 +k1,6253:8704937,35836997:155296 +k1,6253:9275031,35836997:155251 +k1,6253:9786186,35836997:155295 +k1,6253:12636978,35836997:155296 +k1,6253:13739924,35836997:155295 +k1,6253:15098460,35836997:155295 +k1,6253:18501720,35836997:155296 +k1,6253:19144559,35836997:155251 +k1,6253:20883860,35836997:155296 +k1,6253:22701803,35836997:155295 +k1,6253:23508526,35836997:155295 +k1,6253:25152144,35836997:155295 +k1,6253:25838937,35836997:155296 +k1,6253:27388183,35836997:155295 +(1,6253:27388183,35836997:0,452978,115847 +r1,6254:31966991,35836997:4578808,568825,115847 +k1,6253:27388183,35836997:-4578808 +) +(1,6253:27388183,35836997:4578808,452978,115847 +k1,6253:27388183,35836997:3277 +h1,6253:31963714,35836997:0,411205,112570 +) +k1,6253:31966991,35836997:0 +) +(1,6254:7246811,36678485:24720180,513147,134348 +k1,6253:8137271,36678485:204298 +k1,6253:10543578,36678485:204297 +k1,6253:13773673,36678485:204298 +k1,6253:15314904,36678485:204297 +k1,6253:17255906,36678485:204298 +k1,6253:18479288,36678485:204297 +k1,6253:20337059,36678485:204298 +k1,6253:21929409,36678485:204297 +k1,6253:23805530,36678485:204298 +k1,6253:24692712,36678485:204297 +k1,6253:25509772,36678485:204298 +k1,6253:27209601,36678485:204297 +k1,6253:28161665,36678485:204298 +k1,6253:30127570,36678485:204297 +k1,6253:30947906,36678485:204298 +k1,6253:31966991,36678485:0 +) +(1,6254:7246811,37519973:24720180,513147,134348 +k1,6253:8764438,37519973:167585 +k1,6253:10517994,37519973:167585 +k1,6253:13137936,37519973:167585 +k1,6253:14203364,37519973:167585 +k1,6253:15277312,37519973:167585 +k1,6253:16821808,37519973:167585 +k1,6253:18180837,37519973:167584 +k1,6253:20716893,37519973:167585 +k1,6253:22586448,37519973:167585 +k1,6253:24142086,37519973:167585 +k1,6253:26138125,37519973:167585 +k1,6253:26921748,37519973:167585 +k1,6253:29159615,37519973:167585 +k1,6253:30274851,37519973:167585 +k1,6253:31966991,37519973:0 +) +(1,6254:7246811,38361461:24720180,513147,126483 +g1,6253:10141536,38361461 +g1,6253:11511238,38361461 +g1,6253:13047401,38361461 +g1,6253:14512786,38361461 +g1,6253:16689236,38361461 +g1,6253:17504503,38361461 +g1,6253:18722817,38361461 +g1,6253:21476639,38361461 +g1,6253:22335160,38361461 +g1,6253:23993220,38361461 +g1,6253:25522830,38361461 +k1,6254:31966991,38361461:4881127 +g1,6254:31966991,38361461 +) +] +) +] +r1,6254:32583029,39077768:26214,8283921,0 +) +] +) +) +g1,6254:32583029,38487944 +) +h1,6254:6630773,39103982:0,0,0 +(1,6256:6630773,41911550:25952256,32768,229376 +(1,6256:6630773,41911550:0,32768,229376 +(1,6256:6630773,41911550:5505024,32768,229376 +r1,6256:12135797,41911550:5505024,262144,229376 +) +k1,6256:6630773,41911550:-5505024 +) +(1,6256:6630773,41911550:25952256,32768,0 +r1,6256:32583029,41911550:25952256,32768,0 +) +) +(1,6256:6630773,43515878:25952256,615776,151780 +(1,6256:6630773,43515878:1974731,582746,14155 +g1,6256:6630773,43515878 +g1,6256:8605504,43515878 +) +g1,6256:11225896,43515878 +k1,6256:32583030,43515878:17602708 +g1,6256:32583030,43515878 +) +(1,6259:6630773,44750582:25952256,513147,134348 +k1,6258:8832346,44750582:318068 +k1,6258:12176210,44750582:318067 +k1,6258:14257852,44750582:318068 +k1,6258:14931779,44750582:318067 +k1,6258:17945343,44750582:318068 +k1,6258:20468697,44750582:318067 +k1,6258:21472927,44750582:318068 +k1,6258:22561697,44750582:318067 +k1,6258:25952093,44750582:318068 +k1,6258:26921588,44750582:318067 +k1,6258:30520388,44750582:318068 +(1,6258:30520388,44750582:0,414482,115847 +r1,6258:31582077,44750582:1061689,530329,115847 +k1,6258:30520388,44750582:-1061689 +) +(1,6258:30520388,44750582:1061689,414482,115847 +k1,6258:30520388,44750582:3277 +h1,6258:31578800,44750582:0,411205,112570 +) +k1,6258:31900144,44750582:318067 +k1,6258:32583029,44750582:0 +) +(1,6259:6630773,45592070:25952256,513147,134348 +k1,6258:10334214,45592070:224790 +k1,6258:11210433,45592070:224791 +k1,6258:14304389,45592070:224790 +k1,6258:15145217,45592070:224790 +k1,6258:15725867,45592070:224790 +k1,6258:19037404,45592070:224791 +k1,6258:19929350,45592070:224790 +k1,6258:20568957,45592070:224764 +k1,6258:23083576,45592070:224791 +k1,6258:25513653,45592070:224790 +k1,6258:26424605,45592070:224790 +k1,6258:27420098,45592070:224790 +k1,6258:30717217,45592070:224791 +k1,6258:31593435,45592070:224790 +k1,6259:32583029,45592070:0 +) +] +(1,6259:32583029,45706769:0,0,0 +g1,6259:32583029,45706769 +) +) +] +(1,6259:6630773,47279633:25952256,0,0 +h1,6259:6630773,47279633:25952256,0,0 ) -(1,6252:20985668,45592070:1061689,414482,115847 -k1,6252:20985668,45592070:3277 -h1,6252:22044080,45592070:0,411205,112570 -) -k1,6252:22318690,45592070:271333 -k1,6252:23121521,45592070:271334 -k1,6252:24044283,45592070:271334 -k1,6252:25063383,45592070:271334 -k1,6252:27706465,45592070:271334 -k1,6252:29082081,45592070:271334 -k1,6252:30101181,45592070:271334 -k1,6252:32583029,45592070:0 -) -] -(1,6253:32583029,45706769:0,0,0 -g1,6253:32583029,45706769 -) -) -] -(1,6253:6630773,47279633:25952256,0,0 -h1,6253:6630773,47279633:25952256,0,0 -) -] -h1,6253:4262630,4025873:0,0,0 -] -!25239 +] +h1,6259:4262630,4025873:0,0,0 +] +!24976 }118 -Input:874:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:875:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:876:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:877:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:878:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:879:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:880:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:881:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:882:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:883:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:884:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:885:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:886:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:887:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:888:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:889:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:890:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:891:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:892:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:893:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:894:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1797 +Input:870:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:871:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:872:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:873:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:874:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:875:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:876:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:877:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:878:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:879:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:880:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:881:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:882:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:883:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:884:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:885:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:886:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:887:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:888:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:889:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:890:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1923 {119 -[1,6316:4262630,47279633:28320399,43253760,0 -(1,6316:4262630,4025873:0,0,0 -[1,6316:-473657,4025873:25952256,0,0 -(1,6316:-473657,-710414:25952256,0,0 -h1,6316:-473657,-710414:0,0,0 -(1,6316:-473657,-710414:0,0,0 -(1,6316:-473657,-710414:0,0,0 -g1,6316:-473657,-710414 -(1,6316:-473657,-710414:65781,0,65781 -g1,6316:-407876,-710414 -[1,6316:-407876,-644633:0,0,0 +[1,6318:4262630,47279633:28320399,43253760,0 +(1,6318:4262630,4025873:0,0,0 +[1,6318:-473657,4025873:25952256,0,0 +(1,6318:-473657,-710414:25952256,0,0 +h1,6318:-473657,-710414:0,0,0 +(1,6318:-473657,-710414:0,0,0 +(1,6318:-473657,-710414:0,0,0 +g1,6318:-473657,-710414 +(1,6318:-473657,-710414:65781,0,65781 +g1,6318:-407876,-710414 +[1,6318:-407876,-644633:0,0,0 ] ) -k1,6316:-473657,-710414:-65781 +k1,6318:-473657,-710414:-65781 ) ) -k1,6316:25478599,-710414:25952256 -g1,6316:25478599,-710414 +k1,6318:25478599,-710414:25952256 +g1,6318:25478599,-710414 ) ] ) -[1,6316:6630773,47279633:25952256,43253760,0 -[1,6316:6630773,4812305:25952256,786432,0 -(1,6316:6630773,4812305:25952256,505283,134348 -(1,6316:6630773,4812305:25952256,505283,134348 -g1,6316:3078558,4812305 -[1,6316:3078558,4812305:0,0,0 -(1,6316:3078558,2439708:0,1703936,0 -k1,6316:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6316:2537886,2439708:1179648,16384,0 +[1,6318:6630773,47279633:25952256,43253760,0 +[1,6318:6630773,4812305:25952256,786432,0 +(1,6318:6630773,4812305:25952256,505283,134348 +(1,6318:6630773,4812305:25952256,505283,134348 +g1,6318:3078558,4812305 +[1,6318:3078558,4812305:0,0,0 +(1,6318:3078558,2439708:0,1703936,0 +k1,6318:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6318:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6316:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6318:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6316:3078558,4812305:0,0,0 -(1,6316:3078558,2439708:0,1703936,0 -g1,6316:29030814,2439708 -g1,6316:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6316:36151628,1915420:16384,1179648,0 +[1,6318:3078558,4812305:0,0,0 +(1,6318:3078558,2439708:0,1703936,0 +g1,6318:29030814,2439708 +g1,6318:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6318:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6316:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6318:37855564,2439708:1179648,16384,0 ) ) -k1,6316:3078556,2439708:-34777008 +k1,6318:3078556,2439708:-34777008 ) ] -[1,6316:3078558,4812305:0,0,0 -(1,6316:3078558,49800853:0,16384,2228224 -k1,6316:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6316:2537886,49800853:1179648,16384,0 +[1,6318:3078558,4812305:0,0,0 +(1,6318:3078558,49800853:0,16384,2228224 +k1,6318:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6318:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6316:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6318:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6316:3078558,4812305:0,0,0 -(1,6316:3078558,49800853:0,16384,2228224 -g1,6316:29030814,49800853 -g1,6316:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6316:36151628,51504789:16384,1179648,0 +[1,6318:3078558,4812305:0,0,0 +(1,6318:3078558,49800853:0,16384,2228224 +g1,6318:29030814,49800853 +g1,6318:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6318:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6316:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6318:37855564,49800853:1179648,16384,0 ) ) -k1,6316:3078556,49800853:-34777008 -) -] -g1,6316:6630773,4812305 -k1,6316:18752969,4812305:10926819 -g1,6316:20139710,4812305 -g1,6316:20788516,4812305 -g1,6316:24102671,4812305 -g1,6316:28605649,4812305 -g1,6316:30015328,4812305 -) -) -] -[1,6316:6630773,45706769:25952256,40108032,0 -(1,6316:6630773,45706769:25952256,40108032,0 -(1,6316:6630773,45706769:0,0,0 -g1,6316:6630773,45706769 -) -[1,6316:6630773,45706769:25952256,40108032,0 -(1,6253:6630773,6254097:25952256,513147,134348 -k1,6252:8345148,6254097:216877 -k1,6252:9951388,6254097:216877 -k1,6252:12548534,6254097:216878 -k1,6252:15498918,6254097:216877 -k1,6252:16398680,6254097:216877 -k1,6252:18769070,6254097:216877 -k1,6252:19803837,6254097:216878 -k1,6252:21409422,6254097:216877 -k1,6252:22312461,6254097:216877 -k1,6252:23548423,6254097:216877 -k1,6252:27169895,6254097:216877 -k1,6252:28038201,6254097:216878 -k1,6252:29002844,6254097:216877 -k1,6252:31591469,6254097:216877 -k1,6252:32583029,6254097:0 -) -(1,6253:6630773,7095585:25952256,513147,126483 -k1,6252:12402707,7095585:190233 -k1,6252:13578601,7095585:190233 -k1,6252:15827975,7095585:190233 -k1,6252:17560926,7095585:190233 -k1,6252:18871169,7095585:190233 -k1,6252:21731995,7095585:190234 -k1,6252:22968183,7095585:190233 -k1,6252:24171603,7095585:190233 -k1,6252:25801007,7095585:190233 -k1,6252:26594171,7095585:190233 -k1,6252:29257077,7095585:190233 -k1,6252:32583029,7095585:0 -) -(1,6253:6630773,7937073:25952256,513147,126483 -g1,6252:8593576,7937073 -g1,6252:11818602,7937073 -g1,6252:13122113,7937073 -g1,6252:15619690,7937073 -(1,6252:15619690,7937073:0,459977,115847 -r1,6252:16681379,7937073:1061689,575824,115847 -k1,6252:15619690,7937073:-1061689 -) -(1,6252:15619690,7937073:1061689,459977,115847 -k1,6252:15619690,7937073:3277 -h1,6252:16678102,7937073:0,411205,112570 -) -g1,6252:17054278,7937073 -(1,6252:17054278,7937073:0,452978,115847 -r1,6252:18819391,7937073:1765113,568825,115847 -k1,6252:17054278,7937073:-1765113 -) -(1,6252:17054278,7937073:1765113,452978,115847 -k1,6252:17054278,7937073:3277 -h1,6252:18816114,7937073:0,411205,112570 -) -g1,6252:19018620,7937073 -g1,6252:19900734,7937073 -(1,6252:19900734,7937073:0,414482,115847 -r1,6252:22017559,7937073:2116825,530329,115847 -k1,6252:19900734,7937073:-2116825 -) -(1,6252:19900734,7937073:2116825,414482,115847 -k1,6252:19900734,7937073:3277 -h1,6252:22014282,7937073:0,411205,112570 -) -g1,6252:22216788,7937073 -k1,6253:32583029,7937073:8447347 -g1,6253:32583029,7937073 -) -(1,6255:6630773,8778561:25952256,513147,126483 -h1,6254:6630773,8778561:983040,0,0 -k1,6254:9076534,8778561:266034 -k1,6254:12104911,8778561:266034 -k1,6254:14163355,8778561:266034 -k1,6254:17455186,8778561:266034 -k1,6254:18337258,8778561:266034 -k1,6254:20037220,8778561:266034 -k1,6254:20718031,8778561:265968 -k1,6254:22727323,8778561:266034 -k1,6254:23609395,8778561:266034 -k1,6254:24894514,8778561:266034 -k1,6254:26715717,8778561:266034 -k1,6254:27641043,8778561:266034 -k1,6254:28926162,8778561:266034 -k1,6254:31202841,8778561:266034 -k1,6254:32583029,8778561:0 -) -(1,6255:6630773,9620049:25952256,513147,134348 -k1,6254:8851365,9620049:172592 -k1,6254:9971609,9620049:172593 -k1,6254:11652840,9620049:172592 -(1,6254:11652840,9620049:0,414482,115847 -r1,6254:12011106,9620049:358266,530329,115847 -k1,6254:11652840,9620049:-358266 -) -(1,6254:11652840,9620049:358266,414482,115847 -k1,6254:11652840,9620049:3277 -h1,6254:12007829,9620049:0,411205,112570 -) -k1,6254:12183699,9620049:172593 -k1,6254:15810694,9620049:172592 -k1,6254:17002372,9620049:172593 -k1,6254:18730133,9620049:172592 -k1,6254:19562018,9620049:172593 -k1,6254:20753695,9620049:172592 -k1,6254:22885814,9620049:172593 -k1,6254:24438594,9620049:172592 -k1,6254:26621832,9620049:172593 -k1,6254:29004298,9620049:172592 -k1,6254:30195976,9620049:172593 -k1,6254:31923737,9620049:172592 -k1,6254:32583029,9620049:0 -) -(1,6255:6630773,10461537:25952256,513147,126483 -k1,6254:7822942,10461537:173084 -k1,6254:9676369,10461537:173084 -k1,6254:12628180,10461537:173084 -k1,6254:13562792,10461537:173084 -k1,6254:14754961,10461537:173084 -k1,6254:17299793,10461537:173084 -k1,6254:20342043,10461537:173084 -(1,6254:20342043,10461537:0,452978,115847 -r1,6254:23162292,10461537:2820249,568825,115847 -k1,6254:20342043,10461537:-2820249 -) -(1,6254:20342043,10461537:2820249,452978,115847 -k1,6254:20342043,10461537:3277 -h1,6254:23159015,10461537:0,411205,112570 -) -k1,6254:23335376,10461537:173084 -k1,6254:24699905,10461537:173084 -(1,6254:24699905,10461537:0,452978,115847 -r1,6254:27520154,10461537:2820249,568825,115847 -k1,6254:24699905,10461537:-2820249 -) -(1,6254:24699905,10461537:2820249,452978,115847 -k1,6254:24699905,10461537:3277 -h1,6254:27516877,10461537:0,411205,112570 -) -k1,6254:27693238,10461537:173084 -k1,6254:29937260,10461537:173084 -k1,6254:30466204,10461537:173084 -(1,6254:30466204,10461537:0,414482,115847 -r1,6254:32583029,10461537:2116825,530329,115847 -k1,6254:30466204,10461537:-2116825 -) -(1,6254:30466204,10461537:2116825,414482,115847 -k1,6254:30466204,10461537:3277 -h1,6254:32579752,10461537:0,411205,112570 -) -k1,6254:32583029,10461537:0 -) -(1,6255:6630773,11303025:25952256,505283,134348 -k1,6254:7481442,11303025:167784 -(1,6254:7481442,11303025:0,452978,115847 -r1,6254:8894843,11303025:1413401,568825,115847 -k1,6254:7481442,11303025:-1413401 -) -(1,6254:7481442,11303025:1413401,452978,115847 -k1,6254:7481442,11303025:3277 -h1,6254:8891566,11303025:0,411205,112570 -) -k1,6254:9062626,11303025:167783 -k1,6254:9916572,11303025:167784 -k1,6254:10855059,11303025:167784 -k1,6254:14095171,11303025:167784 -k1,6254:16468241,11303025:167783 -k1,6254:19194551,11303025:167784 -(1,6254:19194551,11303025:0,414482,115847 -r1,6254:19552817,11303025:358266,530329,115847 -k1,6254:19194551,11303025:-358266 -) -(1,6254:19194551,11303025:358266,414482,115847 -k1,6254:19194551,11303025:3277 -h1,6254:19549540,11303025:0,411205,112570 -) -k1,6254:19894271,11303025:167784 -(1,6254:19894271,11303025:0,452978,115847 -r1,6254:22714520,11303025:2820249,568825,115847 -k1,6254:19894271,11303025:-2820249 -) -(1,6254:19894271,11303025:2820249,452978,115847 -k1,6254:19894271,11303025:3277 -h1,6254:22711243,11303025:0,411205,112570 -) -k1,6254:22882304,11303025:167784 -k1,6254:25391033,11303025:167783 -k1,6254:25914677,11303025:167784 -(1,6254:25914677,11303025:0,452978,115847 -r1,6254:27328078,11303025:1413401,568825,115847 -k1,6254:25914677,11303025:-1413401 -) -(1,6254:25914677,11303025:1413401,452978,115847 -k1,6254:25914677,11303025:3277 -h1,6254:27324801,11303025:0,411205,112570 -) -k1,6254:27495862,11303025:167784 -k1,6254:28346531,11303025:167784 -k1,6254:29285017,11303025:167783 -(1,6254:29285017,11303025:0,414482,115847 -r1,6254:31050130,11303025:1765113,530329,115847 -k1,6254:29285017,11303025:-1765113 -) -(1,6254:29285017,11303025:1765113,414482,115847 -k1,6254:29285017,11303025:3277 -h1,6254:31046853,11303025:0,411205,112570 -) -k1,6254:31391584,11303025:167784 -k1,6255:32583029,11303025:0 -) -(1,6255:6630773,12144513:25952256,513147,126483 -(1,6254:6630773,12144513:0,452978,115847 -r1,6254:9451022,12144513:2820249,568825,115847 -k1,6254:6630773,12144513:-2820249 -) -(1,6254:6630773,12144513:2820249,452978,115847 -k1,6254:6630773,12144513:3277 -h1,6254:9447745,12144513:0,411205,112570 -) -k1,6254:9727243,12144513:276221 -k1,6254:12132730,12144513:276222 -k1,6254:15348241,12144513:276221 -k1,6254:16412860,12144513:276221 -k1,6254:19467808,12144513:276221 -k1,6254:21424373,12144513:276222 -k1,6254:22968060,12144513:276221 -k1,6254:23600141,12144513:276221 -k1,6254:26027909,12144513:276221 -k1,6254:27993649,12144513:276222 -(1,6254:27993649,12144513:0,452978,115847 -r1,6254:30813898,12144513:2820249,568825,115847 -k1,6254:27993649,12144513:-2820249 -) -(1,6254:27993649,12144513:2820249,452978,115847 -k1,6254:27993649,12144513:3277 -h1,6254:30810621,12144513:0,411205,112570 -) -k1,6254:31090119,12144513:276221 -k1,6254:32583029,12144513:0 -) -(1,6255:6630773,12986001:25952256,513147,134348 -k1,6254:7821660,12986001:171802 -k1,6254:12359471,12986001:171802 -k1,6254:15648165,12986001:171802 -k1,6254:16471395,12986001:171802 -k1,6254:17662282,12986001:171802 -k1,6254:20906411,12986001:171801 -k1,6254:23283500,12986001:171802 -k1,6254:24106730,12986001:171802 -k1,6254:25066930,12986001:171802 -(1,6254:25066930,12986001:0,459977,115847 -r1,6254:27887179,12986001:2820249,575824,115847 -k1,6254:25066930,12986001:-2820249 -) -(1,6254:25066930,12986001:2820249,459977,115847 -k1,6254:25066930,12986001:3277 -h1,6254:27883902,12986001:0,411205,112570 -) -k1,6254:28058981,12986001:171802 -k1,6254:31685186,12986001:171802 -k1,6254:32583029,12986001:0 -) -(1,6255:6630773,13827489:25952256,513147,126483 -k1,6254:8479751,13827489:152251 -k1,6254:10424412,13827489:152251 -k1,6254:13602460,13827489:152251 -k1,6254:14858994,13827489:152252 -k1,6254:15759011,13827489:152251 -k1,6254:17424488,13827489:152251 -k1,6254:18228167,13827489:152251 -k1,6254:20143992,13827489:152251 -k1,6254:21066947,13827489:152252 -k1,6254:21633994,13827489:152204 -k1,6254:24481741,13827489:152251 -k1,6254:25918498,13827489:152251 -k1,6254:28411695,13827489:152251 -k1,6254:28919807,13827489:152252 -k1,6254:30752401,13827489:152251 -k1,6254:31563944,13827489:152251 -k1,6254:32583029,13827489:0 -) -(1,6255:6630773,14668977:25952256,513147,134348 -k1,6254:8483867,14668977:199621 -k1,6254:9366372,14668977:199620 -k1,6254:9921853,14668977:199621 -k1,6254:12883816,14668977:199620 -k1,6254:14638606,14668977:199621 -k1,6254:15524389,14668977:199621 -k1,6254:16512407,14668977:199620 -k1,6254:19958026,14668977:199621 -k1,6254:20785481,14668977:199620 -k1,6254:22004187,14668977:199621 -k1,6254:23570889,14668977:199621 -k1,6254:24437665,14668977:199620 -(1,6254:24437665,14668977:0,452978,115847 -r1,6254:26906202,14668977:2468537,568825,115847 -k1,6254:24437665,14668977:-2468537 -) -(1,6254:24437665,14668977:2468537,452978,115847 -k1,6254:24437665,14668977:3277 -h1,6254:26902925,14668977:0,411205,112570 -) -k1,6254:27105823,14668977:199621 -k1,6254:28496888,14668977:199620 -(1,6254:28496888,14668977:0,452978,115847 -r1,6254:31317137,14668977:2820249,568825,115847 -k1,6254:28496888,14668977:-2820249 -) -(1,6254:28496888,14668977:2820249,452978,115847 -k1,6254:28496888,14668977:3277 -h1,6254:31313860,14668977:0,411205,112570 -) -k1,6254:31516758,14668977:199621 -k1,6254:32583029,14668977:0 -) -(1,6255:6630773,15510465:25952256,513147,134348 -k1,6254:8327651,15510465:230182 -k1,6254:9576919,15510465:230183 -k1,6254:11820367,15510465:230182 -k1,6254:12709842,15510465:230183 -k1,6254:13959109,15510465:230182 -k1,6254:16199936,15510465:230182 -k1,6254:19208846,15510465:230183 -k1,6254:20386679,15510465:230182 -k1,6254:22068483,15510465:230182 -k1,6254:24922072,15510465:230183 -k1,6254:25811546,15510465:230182 -k1,6254:27060814,15510465:230183 -k1,6254:30377742,15510465:230182 -k1,6254:32583029,15510465:0 -) -(1,6255:6630773,16351953:25952256,505283,134348 -k1,6254:7564020,16351953:247085 -k1,6254:8581809,16351953:247086 -k1,6254:12074892,16351953:247085 -k1,6254:14182544,16351953:247085 -k1,6254:15081057,16351953:247085 -k1,6254:16075909,16351953:247086 -k1,6254:19777397,16351953:247085 -k1,6254:20652317,16351953:247085 -k1,6254:24063481,16351953:247086 -(1,6254:24063481,16351953:0,452978,115847 -r1,6254:26532018,16351953:2468537,568825,115847 -k1,6254:24063481,16351953:-2468537 -) -(1,6254:24063481,16351953:2468537,452978,115847 -k1,6254:24063481,16351953:3277 -h1,6254:26528741,16351953:0,411205,112570 -) -k1,6254:26779103,16351953:247085 -k1,6254:27557685,16351953:247085 -k1,6254:29317996,16351953:247085 -k1,6254:30216510,16351953:247086 -k1,6254:32227169,16351953:247085 -k1,6254:32583029,16351953:0 -) -(1,6255:6630773,17193441:25952256,513147,134348 -k1,6254:9539479,17193441:213210 -k1,6254:10404118,17193441:213211 -k1,6254:11636413,17193441:213210 -k1,6254:14718790,17193441:213211 -k1,6254:16676568,17193441:213210 -k1,6254:17245638,17193441:213210 -k1,6254:20803807,17193441:213211 -k1,6254:21676309,17193441:213210 -k1,6254:22660223,17193441:213211 -k1,6254:24832959,17193441:213210 -k1,6254:26330675,17193441:213210 -k1,6254:27644891,17193441:213211 -k1,6254:29030540,17193441:213210 -k1,6254:29926636,17193441:213211 -k1,6254:31790043,17193441:213210 -k1,6255:32583029,17193441:0 -) -(1,6255:6630773,18034929:25952256,513147,126483 -k1,6254:9895185,18034929:172424 -k1,6254:11259054,18034929:172424 -(1,6254:11259054,18034929:0,452978,115847 -r1,6254:14079303,18034929:2820249,568825,115847 -k1,6254:11259054,18034929:-2820249 -) -(1,6254:11259054,18034929:2820249,452978,115847 -k1,6254:11259054,18034929:3277 -h1,6254:14076026,18034929:0,411205,112570 -) -k1,6254:14251728,18034929:172425 -k1,6254:15615597,18034929:172424 -(1,6254:15615597,18034929:0,452978,115847 -r1,6254:18435846,18034929:2820249,568825,115847 -k1,6254:15615597,18034929:-2820249 -) -(1,6254:15615597,18034929:2820249,452978,115847 -k1,6254:15615597,18034929:3277 -h1,6254:18432569,18034929:0,411205,112570 -) -k1,6254:18608270,18034929:172424 -k1,6254:19772254,18034929:172424 -k1,6254:21457905,18034929:172425 -k1,6254:22281757,18034929:172424 -k1,6254:24217755,18034929:172424 -k1,6254:24746039,18034929:172424 -k1,6254:27613960,18034929:172425 -k1,6254:28437812,18034929:172424 -k1,6254:29629321,18034929:172424 -k1,6254:32583029,18034929:0 -) -(1,6255:6630773,18876417:25952256,513147,134348 -k1,6254:7504187,18876417:214122 -k1,6254:8074169,18876417:214122 -k1,6254:10266168,18876417:214122 -k1,6254:11163175,18876417:214122 -k1,6254:12544493,18876417:214122 -(1,6254:12544493,18876417:0,452978,115847 -r1,6254:15013030,18876417:2468537,568825,115847 -k1,6254:12544493,18876417:-2468537 -) -(1,6254:12544493,18876417:2468537,452978,115847 -k1,6254:12544493,18876417:3277 -h1,6254:15009753,18876417:0,411205,112570 -) -k1,6254:15227152,18876417:214122 -k1,6254:17782220,18876417:214122 -k1,6254:18767045,18876417:214122 -k1,6254:20630708,18876417:214122 -k1,6254:21527715,18876417:214122 -k1,6254:22097697,18876417:214122 -k1,6254:23305345,18876417:214122 -k1,6254:24202352,18876417:214122 -k1,6254:24772334,18876417:214122 -k1,6254:26964333,18876417:214122 -k1,6254:30540452,18876417:214122 -k1,6254:31563944,18876417:214122 -k1,6254:32583029,18876417:0 -) -(1,6255:6630773,19717905:25952256,505283,134348 -k1,6254:8235043,19717905:161823 -k1,6254:9588312,19717905:161824 -k1,6254:13468648,19717905:161823 -k1,6254:14246510,19717905:161824 -k1,6254:16421599,19717905:161823 -k1,6254:17774867,19717905:161823 -k1,6254:19491860,19717905:161824 -k1,6254:21813094,19717905:161823 -k1,6254:22994002,19717905:161823 -k1,6254:25166471,19717905:161824 -k1,6254:28107021,19717905:161823 -k1,6254:29030373,19717905:161824 -k1,6254:30211281,19717905:161823 -k1,6254:32583029,19717905:0 -) -(1,6255:6630773,20559393:25952256,513147,7863 -k1,6255:32583029,20559393:23083090 -g1,6255:32583029,20559393 -) -(1,6256:6630773,22650653:25952256,564462,147783 -(1,6256:6630773,22650653:2450326,534184,12975 -g1,6256:6630773,22650653 -g1,6256:9081099,22650653 -) -g1,6256:12662511,22650653 -g1,6256:16328989,22650653 -g1,6256:17279130,22650653 -g1,6256:20208852,22650653 -g1,6256:21776080,22650653 -k1,6256:32583029,22650653:9302439 -g1,6256:32583029,22650653 -) -(1,6259:6630773,23885357:25952256,513147,126483 -k1,6258:7735505,23885357:151183 -k1,6258:9192820,23885357:151182 -k1,6258:12476624,23885357:151183 -k1,6258:13646892,23885357:151183 -k1,6258:14890559,23885357:151182 -k1,6258:15708898,23885357:151183 -(1,6258:15708898,23885357:0,452978,115847 -r1,6258:18529147,23885357:2820249,568825,115847 -k1,6258:15708898,23885357:-2820249 -) -(1,6258:15708898,23885357:2820249,452978,115847 -k1,6258:15708898,23885357:3277 -h1,6258:18525870,23885357:0,411205,112570 -) -k1,6258:18854000,23885357:151183 -(1,6258:18854000,23885357:0,452978,115847 -r1,6258:21674249,23885357:2820249,568825,115847 -k1,6258:18854000,23885357:-2820249 -) -(1,6258:18854000,23885357:2820249,452978,115847 -k1,6258:18854000,23885357:3277 -h1,6258:21670972,23885357:0,411205,112570 -) -k1,6258:21825432,23885357:151183 -k1,6258:23168059,23885357:151182 -(1,6258:23168059,23885357:0,452978,115847 -r1,6258:25988308,23885357:2820249,568825,115847 -k1,6258:23168059,23885357:-2820249 -) -(1,6258:23168059,23885357:2820249,452978,115847 -k1,6258:23168059,23885357:3277 -h1,6258:25985031,23885357:0,411205,112570 -) -k1,6258:26313161,23885357:151183 -k1,6258:27092179,23885357:151183 -k1,6258:28262446,23885357:151182 -k1,6258:30714598,23885357:151183 -k1,6258:32583029,23885357:0 -) -(1,6259:6630773,24726845:25952256,513147,126483 -g1,6258:7698354,24726845 -g1,6258:9661157,24726845 -g1,6258:10216246,24726845 -g1,6258:14390889,24726845 -g1,6258:17285614,24726845 -g1,6258:18136271,24726845 -g1,6258:18691360,24726845 -k1,6259:32583029,24726845:11740122 -g1,6259:32583029,24726845 -) -v1,6261:6630773,25989423:0,393216,0 -(1,6262:6630773,28273617:25952256,2677410,616038 -g1,6262:6630773,28273617 -(1,6262:6630773,28273617:25952256,2677410,616038 -(1,6262:6630773,28889655:25952256,3293448,0 -[1,6262:6630773,28889655:25952256,3293448,0 -(1,6262:6630773,28863441:25952256,3241020,0 -r1,6262:6656987,28863441:26214,3241020,0 -[1,6262:6656987,28863441:25899828,3241020,0 -(1,6262:6656987,28273617:25899828,2061372,0 -[1,6262:7246811,28273617:24720180,2061372,0 -(1,6262:7246811,27297781:24720180,1085536,298548 -(1,6261:7246811,27297781:0,1085536,298548 -r1,6262:8753226,27297781:1506415,1384084,298548 -k1,6261:7246811,27297781:-1506415 -) -(1,6261:7246811,27297781:1506415,1085536,298548 -) -k1,6261:8941333,27297781:188107 -k1,6261:9617018,27297781:188097 -k1,6261:13052434,27297781:188107 -k1,6261:14049912,27297781:188108 -k1,6261:15257104,27297781:188107 -k1,6261:18140708,27297781:188108 -k1,6261:18980243,27297781:188107 -k1,6261:19916116,27297781:188107 -k1,6261:22475972,27297781:188108 -k1,6261:23195576,27297781:188107 -k1,6261:24668190,27297781:188108 -k1,6261:25875382,27297781:188107 -k1,6261:28686896,27297781:188108 -k1,6261:30834529,27297781:188107 -k1,6261:31966991,27297781:0 -) -(1,6262:7246811,28139269:24720180,513147,134348 -k1,6261:8143192,28139269:148615 -k1,6261:10421073,28139269:148616 -k1,6261:12774975,28139269:148615 -k1,6261:13609753,28139269:148616 -k1,6261:14529071,28139269:148615 -k1,6261:17750014,28139269:148615 -k1,6261:18550058,28139269:148616 -k1,6261:19717758,28139269:148615 -k1,6261:21172506,28139269:148615 -k1,6261:24601854,28139269:148616 -k1,6261:25409761,28139269:148615 -k1,6261:26577462,28139269:148616 -k1,6261:29097825,28139269:148615 -k1,6262:31966991,28139269:0 -k1,6262:31966991,28139269:0 -) -] -) -] -r1,6262:32583029,28863441:26214,3241020,0 -) -] -) -) -g1,6262:32583029,28273617 -) -h1,6262:6630773,28889655:0,0,0 -v1,6265:6630773,30398014:0,393216,0 -(1,6274:6630773,32745723:25952256,2740925,196608 -g1,6274:6630773,32745723 -g1,6274:6630773,32745723 -g1,6274:6434165,32745723 -(1,6274:6434165,32745723:0,2740925,196608 -r1,6274:32779637,32745723:26345472,2937533,196608 -k1,6274:6434165,32745723:-26345472 -) -(1,6274:6434165,32745723:26345472,2740925,196608 -[1,6274:6630773,32745723:25952256,2544317,0 -(1,6267:6630773,30605632:25952256,404226,107478 -(1,6266:6630773,30605632:0,0,0 -g1,6266:6630773,30605632 -g1,6266:6630773,30605632 -g1,6266:6303093,30605632 -(1,6266:6303093,30605632:0,0,0 -) -g1,6266:6630773,30605632 -) -k1,6267:6630773,30605632:0 -g1,6267:12005250,30605632 -g1,6267:12637542,30605632 -g1,6267:13585979,30605632 -g1,6267:15166708,30605632 -g1,6267:18012019,30605632 -g1,6267:19592748,30605632 -g1,6267:20857331,30605632 -k1,6267:20857331,30605632:1573 -h1,6267:22755778,30605632:0,0,0 -k1,6267:32583029,30605632:9827251 -g1,6267:32583029,30605632 -) -(1,6268:6630773,31271810:25952256,410518,101187 -h1,6268:6630773,31271810:0,0,0 -g1,6268:9476084,31271810 -g1,6268:10424522,31271810 -g1,6268:13269834,31271810 -g1,6268:13902126,31271810 -g1,6268:14534418,31271810 -g1,6268:16431292,31271810 -g1,6268:18644312,31271810 -g1,6268:19592749,31271810 -g1,6268:21489623,31271810 -g1,6268:22438060,31271810 -g1,6268:24018789,31271810 -g1,6268:26231809,31271810 -k1,6268:26231809,31271810:14156 -h1,6268:27826693,31271810:0,0,0 -k1,6268:32583029,31271810:4756336 -g1,6268:32583029,31271810 -) -(1,6269:6630773,31937988:25952256,404226,76021 -h1,6269:6630773,31937988:0,0,0 -k1,6269:6630773,31937988:0 -h1,6269:10740667,31937988:0,0,0 -k1,6269:32583029,31937988:21842362 -g1,6269:32583029,31937988 -) -(1,6273:6630773,32669702:25952256,404226,76021 -(1,6271:6630773,32669702:0,0,0 -g1,6271:6630773,32669702 -g1,6271:6630773,32669702 -g1,6271:6303093,32669702 -(1,6271:6303093,32669702:0,0,0 -) -g1,6271:6630773,32669702 -) -g1,6273:7579210,32669702 -g1,6273:7895356,32669702 -g1,6273:9159939,32669702 -g1,6273:11056813,32669702 -g1,6273:12953687,32669702 -g1,6273:14850561,32669702 -g1,6273:16747435,32669702 -g1,6273:18644309,32669702 -g1,6273:20541183,32669702 -h1,6273:21489620,32669702:0,0,0 -k1,6273:32583029,32669702:11093409 -g1,6273:32583029,32669702 -) -] -) -g1,6274:32583029,32745723 -g1,6274:6630773,32745723 -g1,6274:6630773,32745723 -g1,6274:32583029,32745723 -g1,6274:32583029,32745723 -) -h1,6274:6630773,32942331:0,0,0 -v1,6278:6630773,34450690:0,393216,0 -(1,6282:6630773,34772078:25952256,714604,196608 -g1,6282:6630773,34772078 -g1,6282:6630773,34772078 -g1,6282:6434165,34772078 -(1,6282:6434165,34772078:0,714604,196608 -r1,6282:32779637,34772078:26345472,911212,196608 -k1,6282:6434165,34772078:-26345472 -) -(1,6282:6434165,34772078:26345472,714604,196608 -[1,6282:6630773,34772078:25952256,517996,0 -(1,6280:6630773,34664600:25952256,410518,107478 -(1,6279:6630773,34664600:0,0,0 -g1,6279:6630773,34664600 -g1,6279:6630773,34664600 -g1,6279:6303093,34664600 -(1,6279:6303093,34664600:0,0,0 -) -g1,6279:6630773,34664600 -) -g1,6280:8843793,34664600 -g1,6280:9792231,34664600 -g1,6280:13585980,34664600 -g1,6280:14534418,34664600 -g1,6280:17063584,34664600 -g1,6280:17695876,34664600 -h1,6280:18328167,34664600:0,0,0 -k1,6280:32583029,34664600:14254862 -g1,6280:32583029,34664600 -) -] -) -g1,6282:32583029,34772078 -g1,6282:6630773,34772078 -g1,6282:6630773,34772078 -g1,6282:32583029,34772078 -g1,6282:32583029,34772078 -) -h1,6282:6630773,34968686:0,0,0 -v1,6286:6630773,36477045:0,393216,0 -(1,6300:6630773,42117371:25952256,6033542,196608 -g1,6300:6630773,42117371 -g1,6300:6630773,42117371 -g1,6300:6434165,42117371 -(1,6300:6434165,42117371:0,6033542,196608 -r1,6300:32779637,42117371:26345472,6230150,196608 -k1,6300:6434165,42117371:-26345472 -) -(1,6300:6434165,42117371:26345472,6033542,196608 -[1,6300:6630773,42117371:25952256,5836934,0 -(1,6288:6630773,36690955:25952256,410518,101187 -(1,6287:6630773,36690955:0,0,0 -g1,6287:6630773,36690955 -g1,6287:6630773,36690955 -g1,6287:6303093,36690955 -(1,6287:6303093,36690955:0,0,0 -) -g1,6287:6630773,36690955 -) -g1,6288:7263065,36690955 -g1,6288:8211503,36690955 -g1,6288:11056815,36690955 -g1,6288:11689107,36690955 -g1,6288:14850564,36690955 -g1,6288:16115147,36690955 -g1,6288:16747439,36690955 -g1,6288:19276605,36690955 -g1,6288:19908897,36690955 -g1,6288:20541189,36690955 -h1,6288:21173481,36690955:0,0,0 -k1,6288:32583029,36690955:11409548 -g1,6288:32583029,36690955 -) -(1,6289:6630773,37357133:25952256,404226,76021 -h1,6289:6630773,37357133:0,0,0 -k1,6289:6630773,37357133:0 -h1,6289:8527647,37357133:0,0,0 -k1,6289:32583029,37357133:24055382 -g1,6289:32583029,37357133 -) -(1,6299:6630773,38088847:25952256,410518,9436 -(1,6291:6630773,38088847:0,0,0 -g1,6291:6630773,38088847 -g1,6291:6630773,38088847 -g1,6291:6303093,38088847 -(1,6291:6303093,38088847:0,0,0 -) -g1,6291:6630773,38088847 -) -g1,6299:7579210,38088847 -g1,6299:9159939,38088847 -g1,6299:10108376,38088847 -h1,6299:10424522,38088847:0,0,0 -k1,6299:32583030,38088847:22158508 -g1,6299:32583030,38088847 -) -(1,6299:6630773,38755025:25952256,410518,31456 -h1,6299:6630773,38755025:0,0,0 -g1,6299:7579210,38755025 -g1,6299:7895356,38755025 -g1,6299:8527648,38755025 -g1,6299:9159940,38755025 -g1,6299:10424523,38755025 -h1,6299:11689106,38755025:0,0,0 -k1,6299:32583030,38755025:20893924 -g1,6299:32583030,38755025 -) -(1,6299:6630773,39421203:25952256,410518,31456 -h1,6299:6630773,39421203:0,0,0 -g1,6299:7579210,39421203 -g1,6299:7895356,39421203 -g1,6299:8527648,39421203 -g1,6299:9159940,39421203 -g1,6299:10424523,39421203 -h1,6299:11689106,39421203:0,0,0 -k1,6299:32583030,39421203:20893924 -g1,6299:32583030,39421203 -) -(1,6299:6630773,40087381:25952256,410518,31456 -h1,6299:6630773,40087381:0,0,0 -g1,6299:7579210,40087381 -g1,6299:7895356,40087381 -g1,6299:8527648,40087381 -g1,6299:9159940,40087381 -g1,6299:10424523,40087381 -h1,6299:11689106,40087381:0,0,0 -k1,6299:32583030,40087381:20893924 -g1,6299:32583030,40087381 -) -(1,6299:6630773,40753559:25952256,410518,31456 -h1,6299:6630773,40753559:0,0,0 -g1,6299:7579210,40753559 -g1,6299:7895356,40753559 -g1,6299:8527648,40753559 -g1,6299:9159940,40753559 -g1,6299:10424523,40753559 -h1,6299:11689106,40753559:0,0,0 -k1,6299:32583030,40753559:20893924 -g1,6299:32583030,40753559 -) -(1,6299:6630773,41419737:25952256,410518,31456 -h1,6299:6630773,41419737:0,0,0 -g1,6299:7579210,41419737 -g1,6299:7895356,41419737 -g1,6299:8527648,41419737 -g1,6299:9159940,41419737 -g1,6299:10424523,41419737 -h1,6299:11689106,41419737:0,0,0 -k1,6299:32583030,41419737:20893924 -g1,6299:32583030,41419737 -) -(1,6299:6630773,42085915:25952256,410518,31456 -h1,6299:6630773,42085915:0,0,0 -g1,6299:7579210,42085915 -g1,6299:7895356,42085915 -g1,6299:8527648,42085915 -g1,6299:9159940,42085915 -g1,6299:10424523,42085915 -h1,6299:11689106,42085915:0,0,0 -k1,6299:32583030,42085915:20893924 -g1,6299:32583030,42085915 -) -] -) -g1,6300:32583029,42117371 -g1,6300:6630773,42117371 -g1,6300:6630773,42117371 -g1,6300:32583029,42117371 -g1,6300:32583029,42117371 -) -h1,6300:6630773,42313979:0,0,0 -v1,6304:6630773,43822338:0,393216,0 -(1,6312:6630773,45510161:25952256,2081039,196608 -g1,6312:6630773,45510161 -g1,6312:6630773,45510161 -g1,6312:6434165,45510161 -(1,6312:6434165,45510161:0,2081039,196608 -r1,6312:32779637,45510161:26345472,2277647,196608 -k1,6312:6434165,45510161:-26345472 -) -(1,6312:6434165,45510161:26345472,2081039,196608 -[1,6312:6630773,45510161:25952256,1884431,0 -(1,6306:6630773,44036248:25952256,410518,101187 -(1,6305:6630773,44036248:0,0,0 -g1,6305:6630773,44036248 -g1,6305:6630773,44036248 -g1,6305:6303093,44036248 -(1,6305:6303093,44036248:0,0,0 -) -g1,6305:6630773,44036248 -) -g1,6306:7263065,44036248 -g1,6306:8211503,44036248 -g1,6306:11056815,44036248 -g1,6306:11689107,44036248 -g1,6306:14850564,44036248 -g1,6306:16115147,44036248 -g1,6306:16747439,44036248 -g1,6306:19276605,44036248 -g1,6306:19908897,44036248 -g1,6306:20541189,44036248 -h1,6306:21173481,44036248:0,0,0 -k1,6306:32583029,44036248:11409548 -g1,6306:32583029,44036248 -) -(1,6307:6630773,44702426:25952256,404226,76021 -h1,6307:6630773,44702426:0,0,0 -k1,6307:6630773,44702426:0 -h1,6307:8527647,44702426:0,0,0 -k1,6307:32583029,44702426:24055382 -g1,6307:32583029,44702426 -) -(1,6311:6630773,45434140:25952256,404226,76021 -(1,6309:6630773,45434140:0,0,0 -g1,6309:6630773,45434140 -g1,6309:6630773,45434140 -g1,6309:6303093,45434140 -(1,6309:6303093,45434140:0,0,0 -) -g1,6309:6630773,45434140 -) -g1,6311:7579210,45434140 -g1,6311:7895356,45434140 -g1,6311:9159939,45434140 -g1,6311:11056813,45434140 -g1,6311:12637542,45434140 -g1,6311:14218271,45434140 -g1,6311:15799000,45434140 -g1,6311:17379729,45434140 -g1,6311:18960458,45434140 -h1,6311:19908895,45434140:0,0,0 -k1,6311:32583029,45434140:12674134 -g1,6311:32583029,45434140 -) -] -) -g1,6312:32583029,45510161 -g1,6312:6630773,45510161 -g1,6312:6630773,45510161 -g1,6312:32583029,45510161 -g1,6312:32583029,45510161 -) -h1,6312:6630773,45706769:0,0,0 -] -(1,6316:32583029,45706769:0,0,0 -g1,6316:32583029,45706769 -) -) -] -(1,6316:6630773,47279633:25952256,0,0 -h1,6316:6630773,47279633:25952256,0,0 -) -] -h1,6316:4262630,4025873:0,0,0 -] -!29957 +k1,6318:3078556,49800853:-34777008 +) +] +g1,6318:6630773,4812305 +k1,6318:18771974,4812305:10945824 +g1,6318:20158715,4812305 +g1,6318:20807521,4812305 +g1,6318:24121676,4812305 +g1,6318:28605649,4812305 +g1,6318:30015328,4812305 +) +) +] +[1,6318:6630773,45706769:25952256,40108032,0 +(1,6318:6630773,45706769:25952256,40108032,0 +(1,6318:6630773,45706769:0,0,0 +g1,6318:6630773,45706769 +) +[1,6318:6630773,45706769:25952256,40108032,0 +(1,6259:6630773,6254097:25952256,505283,126483 +k1,6258:9360222,6254097:225318 +(1,6258:9360222,6254097:0,414482,115847 +r1,6258:9718488,6254097:358266,530329,115847 +k1,6258:9360222,6254097:-358266 +) +(1,6258:9360222,6254097:358266,414482,115847 +k1,6258:9360222,6254097:3277 +h1,6258:9715211,6254097:0,411205,112570 +) +k1,6258:9943807,6254097:225319 +k1,6258:10852010,6254097:225318 +k1,6258:14555979,6254097:225318 +k1,6258:18320241,6254097:225318 +k1,6258:19196988,6254097:225319 +k1,6258:21307777,6254097:225318 +(1,6258:21307777,6254097:0,414482,115847 +r1,6258:22369466,6254097:1061689,530329,115847 +k1,6258:21307777,6254097:-1061689 +) +(1,6258:21307777,6254097:1061689,414482,115847 +k1,6258:21307777,6254097:3277 +h1,6258:22366189,6254097:0,411205,112570 +) +k1,6258:22594784,6254097:225318 +k1,6258:23351600,6254097:225319 +k1,6258:24228346,6254097:225318 +k1,6258:25201430,6254097:225318 +k1,6258:27798496,6254097:225318 +k1,6258:29128097,6254097:225319 +k1,6258:30101181,6254097:225318 +k1,6258:32583029,6254097:0 +) +(1,6259:6630773,7095585:25952256,513147,134348 +k1,6258:8345148,7095585:216877 +k1,6258:9951388,7095585:216877 +k1,6258:12548534,7095585:216878 +k1,6258:15498918,7095585:216877 +k1,6258:16398680,7095585:216877 +k1,6258:18769070,7095585:216877 +k1,6258:19803837,7095585:216878 +k1,6258:21409422,7095585:216877 +k1,6258:22312461,7095585:216877 +k1,6258:23548423,7095585:216877 +k1,6258:27169895,7095585:216877 +k1,6258:28038201,7095585:216878 +k1,6258:29002844,7095585:216877 +k1,6258:31591469,7095585:216877 +k1,6258:32583029,7095585:0 +) +(1,6259:6630773,7937073:25952256,513147,126483 +k1,6258:12402707,7937073:190233 +k1,6258:13578601,7937073:190233 +k1,6258:15827975,7937073:190233 +k1,6258:17560926,7937073:190233 +k1,6258:18871169,7937073:190233 +k1,6258:21731995,7937073:190234 +k1,6258:22968183,7937073:190233 +k1,6258:24171603,7937073:190233 +k1,6258:25801007,7937073:190233 +k1,6258:26594171,7937073:190233 +k1,6258:29257077,7937073:190233 +k1,6258:32583029,7937073:0 +) +(1,6259:6630773,8778561:25952256,513147,126483 +g1,6258:8593576,8778561 +g1,6258:11818602,8778561 +g1,6258:13122113,8778561 +g1,6258:15619690,8778561 +(1,6258:15619690,8778561:0,459977,115847 +r1,6258:16681379,8778561:1061689,575824,115847 +k1,6258:15619690,8778561:-1061689 +) +(1,6258:15619690,8778561:1061689,459977,115847 +k1,6258:15619690,8778561:3277 +h1,6258:16678102,8778561:0,411205,112570 +) +g1,6258:17054278,8778561 +(1,6258:17054278,8778561:0,452978,115847 +r1,6258:18819391,8778561:1765113,568825,115847 +k1,6258:17054278,8778561:-1765113 +) +(1,6258:17054278,8778561:1765113,452978,115847 +k1,6258:17054278,8778561:3277 +h1,6258:18816114,8778561:0,411205,112570 +) +g1,6258:19018620,8778561 +g1,6258:19900734,8778561 +(1,6258:19900734,8778561:0,414482,115847 +r1,6258:22017559,8778561:2116825,530329,115847 +k1,6258:19900734,8778561:-2116825 +) +(1,6258:19900734,8778561:2116825,414482,115847 +k1,6258:19900734,8778561:3277 +h1,6258:22014282,8778561:0,411205,112570 +) +g1,6258:22216788,8778561 +k1,6259:32583029,8778561:8447347 +g1,6259:32583029,8778561 +) +(1,6261:6630773,9620049:25952256,513147,126483 +h1,6260:6630773,9620049:983040,0,0 +k1,6260:9076534,9620049:266034 +k1,6260:12104911,9620049:266034 +k1,6260:14163355,9620049:266034 +k1,6260:17455186,9620049:266034 +k1,6260:18337258,9620049:266034 +k1,6260:20037220,9620049:266034 +k1,6260:20718031,9620049:265968 +k1,6260:22727323,9620049:266034 +k1,6260:23609395,9620049:266034 +k1,6260:24894514,9620049:266034 +k1,6260:26715717,9620049:266034 +k1,6260:27641043,9620049:266034 +k1,6260:28926162,9620049:266034 +k1,6260:31202841,9620049:266034 +k1,6260:32583029,9620049:0 +) +(1,6261:6630773,10461537:25952256,513147,134348 +k1,6260:8851365,10461537:172592 +k1,6260:9971609,10461537:172593 +k1,6260:11652840,10461537:172592 +(1,6260:11652840,10461537:0,414482,115847 +r1,6260:12011106,10461537:358266,530329,115847 +k1,6260:11652840,10461537:-358266 +) +(1,6260:11652840,10461537:358266,414482,115847 +k1,6260:11652840,10461537:3277 +h1,6260:12007829,10461537:0,411205,112570 +) +k1,6260:12183699,10461537:172593 +k1,6260:15810694,10461537:172592 +k1,6260:17002372,10461537:172593 +k1,6260:18730133,10461537:172592 +k1,6260:19562018,10461537:172593 +k1,6260:20753695,10461537:172592 +k1,6260:22885814,10461537:172593 +k1,6260:24438594,10461537:172592 +k1,6260:26621832,10461537:172593 +k1,6260:29004298,10461537:172592 +k1,6260:30195976,10461537:172593 +k1,6260:31923737,10461537:172592 +k1,6260:32583029,10461537:0 +) +(1,6261:6630773,11303025:25952256,513147,126483 +k1,6260:7822942,11303025:173084 +k1,6260:9676369,11303025:173084 +k1,6260:12628180,11303025:173084 +k1,6260:13562792,11303025:173084 +k1,6260:14754961,11303025:173084 +k1,6260:17299793,11303025:173084 +k1,6260:20342043,11303025:173084 +(1,6260:20342043,11303025:0,452978,115847 +r1,6260:23162292,11303025:2820249,568825,115847 +k1,6260:20342043,11303025:-2820249 +) +(1,6260:20342043,11303025:2820249,452978,115847 +k1,6260:20342043,11303025:3277 +h1,6260:23159015,11303025:0,411205,112570 +) +k1,6260:23335376,11303025:173084 +k1,6260:24699905,11303025:173084 +(1,6260:24699905,11303025:0,452978,115847 +r1,6260:27520154,11303025:2820249,568825,115847 +k1,6260:24699905,11303025:-2820249 +) +(1,6260:24699905,11303025:2820249,452978,115847 +k1,6260:24699905,11303025:3277 +h1,6260:27516877,11303025:0,411205,112570 +) +k1,6260:27693238,11303025:173084 +k1,6260:29937260,11303025:173084 +k1,6260:30466204,11303025:173084 +(1,6260:30466204,11303025:0,414482,115847 +r1,6260:32583029,11303025:2116825,530329,115847 +k1,6260:30466204,11303025:-2116825 +) +(1,6260:30466204,11303025:2116825,414482,115847 +k1,6260:30466204,11303025:3277 +h1,6260:32579752,11303025:0,411205,112570 +) +k1,6260:32583029,11303025:0 +) +(1,6261:6630773,12144513:25952256,505283,134348 +k1,6260:7481442,12144513:167784 +(1,6260:7481442,12144513:0,452978,115847 +r1,6260:8894843,12144513:1413401,568825,115847 +k1,6260:7481442,12144513:-1413401 +) +(1,6260:7481442,12144513:1413401,452978,115847 +k1,6260:7481442,12144513:3277 +h1,6260:8891566,12144513:0,411205,112570 +) +k1,6260:9062626,12144513:167783 +k1,6260:9916572,12144513:167784 +k1,6260:10855059,12144513:167784 +k1,6260:14095171,12144513:167784 +k1,6260:16468241,12144513:167783 +k1,6260:19194551,12144513:167784 +(1,6260:19194551,12144513:0,414482,115847 +r1,6260:19552817,12144513:358266,530329,115847 +k1,6260:19194551,12144513:-358266 +) +(1,6260:19194551,12144513:358266,414482,115847 +k1,6260:19194551,12144513:3277 +h1,6260:19549540,12144513:0,411205,112570 +) +k1,6260:19894271,12144513:167784 +(1,6260:19894271,12144513:0,452978,115847 +r1,6260:22714520,12144513:2820249,568825,115847 +k1,6260:19894271,12144513:-2820249 +) +(1,6260:19894271,12144513:2820249,452978,115847 +k1,6260:19894271,12144513:3277 +h1,6260:22711243,12144513:0,411205,112570 +) +k1,6260:22882304,12144513:167784 +k1,6260:25391033,12144513:167783 +k1,6260:25914677,12144513:167784 +(1,6260:25914677,12144513:0,452978,115847 +r1,6260:27328078,12144513:1413401,568825,115847 +k1,6260:25914677,12144513:-1413401 +) +(1,6260:25914677,12144513:1413401,452978,115847 +k1,6260:25914677,12144513:3277 +h1,6260:27324801,12144513:0,411205,112570 +) +k1,6260:27495862,12144513:167784 +k1,6260:28346531,12144513:167784 +k1,6260:29285017,12144513:167783 +(1,6260:29285017,12144513:0,414482,115847 +r1,6260:31050130,12144513:1765113,530329,115847 +k1,6260:29285017,12144513:-1765113 +) +(1,6260:29285017,12144513:1765113,414482,115847 +k1,6260:29285017,12144513:3277 +h1,6260:31046853,12144513:0,411205,112570 +) +k1,6260:31391584,12144513:167784 +k1,6261:32583029,12144513:0 +) +(1,6261:6630773,12986001:25952256,513147,126483 +(1,6260:6630773,12986001:0,452978,115847 +r1,6260:9451022,12986001:2820249,568825,115847 +k1,6260:6630773,12986001:-2820249 +) +(1,6260:6630773,12986001:2820249,452978,115847 +k1,6260:6630773,12986001:3277 +h1,6260:9447745,12986001:0,411205,112570 +) +k1,6260:9727243,12986001:276221 +k1,6260:12132730,12986001:276222 +k1,6260:15348241,12986001:276221 +k1,6260:16412860,12986001:276221 +k1,6260:19467808,12986001:276221 +k1,6260:21424373,12986001:276222 +k1,6260:22968060,12986001:276221 +k1,6260:23600141,12986001:276221 +k1,6260:26027909,12986001:276221 +k1,6260:27993649,12986001:276222 +(1,6260:27993649,12986001:0,452978,115847 +r1,6260:30813898,12986001:2820249,568825,115847 +k1,6260:27993649,12986001:-2820249 +) +(1,6260:27993649,12986001:2820249,452978,115847 +k1,6260:27993649,12986001:3277 +h1,6260:30810621,12986001:0,411205,112570 +) +k1,6260:31090119,12986001:276221 +k1,6260:32583029,12986001:0 +) +(1,6261:6630773,13827489:25952256,513147,134348 +k1,6260:7821660,13827489:171802 +k1,6260:12359471,13827489:171802 +k1,6260:15648165,13827489:171802 +k1,6260:16471395,13827489:171802 +k1,6260:17662282,13827489:171802 +k1,6260:20906411,13827489:171801 +k1,6260:23283500,13827489:171802 +k1,6260:24106730,13827489:171802 +k1,6260:25066930,13827489:171802 +(1,6260:25066930,13827489:0,459977,115847 +r1,6260:27887179,13827489:2820249,575824,115847 +k1,6260:25066930,13827489:-2820249 +) +(1,6260:25066930,13827489:2820249,459977,115847 +k1,6260:25066930,13827489:3277 +h1,6260:27883902,13827489:0,411205,112570 +) +k1,6260:28058981,13827489:171802 +k1,6260:31685186,13827489:171802 +k1,6260:32583029,13827489:0 +) +(1,6261:6630773,14668977:25952256,513147,126483 +k1,6260:8479751,14668977:152251 +k1,6260:10424412,14668977:152251 +k1,6260:13602460,14668977:152251 +k1,6260:14858994,14668977:152252 +k1,6260:15759011,14668977:152251 +k1,6260:17424488,14668977:152251 +k1,6260:18228167,14668977:152251 +k1,6260:20143992,14668977:152251 +k1,6260:21066947,14668977:152252 +k1,6260:21633994,14668977:152204 +k1,6260:24481741,14668977:152251 +k1,6260:25918498,14668977:152251 +k1,6260:28411695,14668977:152251 +k1,6260:28919807,14668977:152252 +k1,6260:30752401,14668977:152251 +k1,6260:31563944,14668977:152251 +k1,6260:32583029,14668977:0 +) +(1,6261:6630773,15510465:25952256,513147,134348 +k1,6260:8483867,15510465:199621 +k1,6260:9366372,15510465:199620 +k1,6260:9921853,15510465:199621 +k1,6260:12883816,15510465:199620 +k1,6260:14638606,15510465:199621 +k1,6260:15524389,15510465:199621 +k1,6260:16512407,15510465:199620 +k1,6260:19958026,15510465:199621 +k1,6260:20785481,15510465:199620 +k1,6260:22004187,15510465:199621 +k1,6260:23570889,15510465:199621 +k1,6260:24437665,15510465:199620 +(1,6260:24437665,15510465:0,452978,115847 +r1,6260:26906202,15510465:2468537,568825,115847 +k1,6260:24437665,15510465:-2468537 +) +(1,6260:24437665,15510465:2468537,452978,115847 +k1,6260:24437665,15510465:3277 +h1,6260:26902925,15510465:0,411205,112570 +) +k1,6260:27105823,15510465:199621 +k1,6260:28496888,15510465:199620 +(1,6260:28496888,15510465:0,452978,115847 +r1,6260:31317137,15510465:2820249,568825,115847 +k1,6260:28496888,15510465:-2820249 +) +(1,6260:28496888,15510465:2820249,452978,115847 +k1,6260:28496888,15510465:3277 +h1,6260:31313860,15510465:0,411205,112570 +) +k1,6260:31516758,15510465:199621 +k1,6260:32583029,15510465:0 +) +(1,6261:6630773,16351953:25952256,513147,134348 +k1,6260:8327651,16351953:230182 +k1,6260:9576919,16351953:230183 +k1,6260:11820367,16351953:230182 +k1,6260:12709842,16351953:230183 +k1,6260:13959109,16351953:230182 +k1,6260:16199936,16351953:230182 +k1,6260:19208846,16351953:230183 +k1,6260:20386679,16351953:230182 +k1,6260:22068483,16351953:230182 +k1,6260:24922072,16351953:230183 +k1,6260:25811546,16351953:230182 +k1,6260:27060814,16351953:230183 +k1,6260:30377742,16351953:230182 +k1,6260:32583029,16351953:0 +) +(1,6261:6630773,17193441:25952256,505283,134348 +k1,6260:7564020,17193441:247085 +k1,6260:8581809,17193441:247086 +k1,6260:12074892,17193441:247085 +k1,6260:14182544,17193441:247085 +k1,6260:15081057,17193441:247085 +k1,6260:16075909,17193441:247086 +k1,6260:19777397,17193441:247085 +k1,6260:20652317,17193441:247085 +k1,6260:24063481,17193441:247086 +(1,6260:24063481,17193441:0,452978,115847 +r1,6260:26532018,17193441:2468537,568825,115847 +k1,6260:24063481,17193441:-2468537 +) +(1,6260:24063481,17193441:2468537,452978,115847 +k1,6260:24063481,17193441:3277 +h1,6260:26528741,17193441:0,411205,112570 +) +k1,6260:26779103,17193441:247085 +k1,6260:27557685,17193441:247085 +k1,6260:29317996,17193441:247085 +k1,6260:30216510,17193441:247086 +k1,6260:32227169,17193441:247085 +k1,6260:32583029,17193441:0 +) +(1,6261:6630773,18034929:25952256,513147,134348 +k1,6260:9539479,18034929:213210 +k1,6260:10404118,18034929:213211 +k1,6260:11636413,18034929:213210 +k1,6260:14718790,18034929:213211 +k1,6260:16676568,18034929:213210 +k1,6260:17245638,18034929:213210 +k1,6260:20803807,18034929:213211 +k1,6260:21676309,18034929:213210 +k1,6260:22660223,18034929:213211 +k1,6260:24832959,18034929:213210 +k1,6260:26330675,18034929:213210 +k1,6260:27644891,18034929:213211 +k1,6260:29030540,18034929:213210 +k1,6260:29926636,18034929:213211 +k1,6260:31790043,18034929:213210 +k1,6261:32583029,18034929:0 +) +(1,6261:6630773,18876417:25952256,513147,126483 +k1,6260:9895185,18876417:172424 +k1,6260:11259054,18876417:172424 +(1,6260:11259054,18876417:0,452978,115847 +r1,6260:14079303,18876417:2820249,568825,115847 +k1,6260:11259054,18876417:-2820249 +) +(1,6260:11259054,18876417:2820249,452978,115847 +k1,6260:11259054,18876417:3277 +h1,6260:14076026,18876417:0,411205,112570 +) +k1,6260:14251728,18876417:172425 +k1,6260:15615597,18876417:172424 +(1,6260:15615597,18876417:0,452978,115847 +r1,6260:18435846,18876417:2820249,568825,115847 +k1,6260:15615597,18876417:-2820249 +) +(1,6260:15615597,18876417:2820249,452978,115847 +k1,6260:15615597,18876417:3277 +h1,6260:18432569,18876417:0,411205,112570 +) +k1,6260:18608270,18876417:172424 +k1,6260:19772254,18876417:172424 +k1,6260:21457905,18876417:172425 +k1,6260:22281757,18876417:172424 +k1,6260:24217755,18876417:172424 +k1,6260:24746039,18876417:172424 +k1,6260:27613960,18876417:172425 +k1,6260:28437812,18876417:172424 +k1,6260:29629321,18876417:172424 +k1,6260:32583029,18876417:0 +) +(1,6261:6630773,19717905:25952256,513147,134348 +k1,6260:7504187,19717905:214122 +k1,6260:8074169,19717905:214122 +k1,6260:10266168,19717905:214122 +k1,6260:11163175,19717905:214122 +k1,6260:12544493,19717905:214122 +(1,6260:12544493,19717905:0,452978,115847 +r1,6260:15013030,19717905:2468537,568825,115847 +k1,6260:12544493,19717905:-2468537 +) +(1,6260:12544493,19717905:2468537,452978,115847 +k1,6260:12544493,19717905:3277 +h1,6260:15009753,19717905:0,411205,112570 +) +k1,6260:15227152,19717905:214122 +k1,6260:17782220,19717905:214122 +k1,6260:18767045,19717905:214122 +k1,6260:20630708,19717905:214122 +k1,6260:21527715,19717905:214122 +k1,6260:22097697,19717905:214122 +k1,6260:23305345,19717905:214122 +k1,6260:24202352,19717905:214122 +k1,6260:24772334,19717905:214122 +k1,6260:26964333,19717905:214122 +k1,6260:30540452,19717905:214122 +k1,6260:31563944,19717905:214122 +k1,6260:32583029,19717905:0 +) +(1,6261:6630773,20559393:25952256,505283,134348 +k1,6260:8235043,20559393:161823 +k1,6260:9588312,20559393:161824 +k1,6260:13468648,20559393:161823 +k1,6260:14246510,20559393:161824 +k1,6260:16421599,20559393:161823 +k1,6260:17774867,20559393:161823 +k1,6260:19491860,20559393:161824 +k1,6260:21813094,20559393:161823 +k1,6260:22994002,20559393:161823 +k1,6260:25166471,20559393:161824 +k1,6260:28107021,20559393:161823 +k1,6260:29030373,20559393:161824 +k1,6260:30211281,20559393:161823 +k1,6260:32583029,20559393:0 +) +(1,6261:6630773,21400881:25952256,513147,7863 +k1,6261:32583029,21400881:23083090 +g1,6261:32583029,21400881 +) +(1,6262:6630773,23492141:25952256,564462,147783 +(1,6262:6630773,23492141:2450326,534184,12975 +g1,6262:6630773,23492141 +g1,6262:9081099,23492141 +) +g1,6262:12662511,23492141 +g1,6262:16328989,23492141 +g1,6262:17279130,23492141 +g1,6262:20208852,23492141 +g1,6262:21776080,23492141 +k1,6262:32583029,23492141:9302439 +g1,6262:32583029,23492141 +) +(1,6265:6630773,24726845:25952256,513147,126483 +k1,6264:7735505,24726845:151183 +k1,6264:9192820,24726845:151182 +k1,6264:12476624,24726845:151183 +k1,6264:13646892,24726845:151183 +k1,6264:14890559,24726845:151182 +k1,6264:15708898,24726845:151183 +(1,6264:15708898,24726845:0,452978,115847 +r1,6264:18529147,24726845:2820249,568825,115847 +k1,6264:15708898,24726845:-2820249 +) +(1,6264:15708898,24726845:2820249,452978,115847 +k1,6264:15708898,24726845:3277 +h1,6264:18525870,24726845:0,411205,112570 +) +k1,6264:18854000,24726845:151183 +(1,6264:18854000,24726845:0,452978,115847 +r1,6264:21674249,24726845:2820249,568825,115847 +k1,6264:18854000,24726845:-2820249 +) +(1,6264:18854000,24726845:2820249,452978,115847 +k1,6264:18854000,24726845:3277 +h1,6264:21670972,24726845:0,411205,112570 +) +k1,6264:21825432,24726845:151183 +k1,6264:23168059,24726845:151182 +(1,6264:23168059,24726845:0,452978,115847 +r1,6264:25988308,24726845:2820249,568825,115847 +k1,6264:23168059,24726845:-2820249 +) +(1,6264:23168059,24726845:2820249,452978,115847 +k1,6264:23168059,24726845:3277 +h1,6264:25985031,24726845:0,411205,112570 +) +k1,6264:26313161,24726845:151183 +k1,6264:27092179,24726845:151183 +k1,6264:28262446,24726845:151182 +k1,6264:30714598,24726845:151183 +k1,6264:32583029,24726845:0 +) +(1,6265:6630773,25568333:25952256,513147,126483 +g1,6264:7698354,25568333 +g1,6264:9661157,25568333 +g1,6264:10216246,25568333 +g1,6264:14390889,25568333 +g1,6264:17285614,25568333 +g1,6264:18136271,25568333 +g1,6264:18691360,25568333 +k1,6265:32583029,25568333:11740122 +g1,6265:32583029,25568333 +) +v1,6267:6630773,26934109:0,393216,0 +(1,6268:6630773,29218303:25952256,2677410,616038 +g1,6268:6630773,29218303 +(1,6268:6630773,29218303:25952256,2677410,616038 +(1,6268:6630773,29834341:25952256,3293448,0 +[1,6268:6630773,29834341:25952256,3293448,0 +(1,6268:6630773,29808127:25952256,3241020,0 +r1,6268:6656987,29808127:26214,3241020,0 +[1,6268:6656987,29808127:25899828,3241020,0 +(1,6268:6656987,29218303:25899828,2061372,0 +[1,6268:7246811,29218303:24720180,2061372,0 +(1,6268:7246811,28242467:24720180,1085536,298548 +(1,6267:7246811,28242467:0,1085536,298548 +r1,6268:8753226,28242467:1506415,1384084,298548 +k1,6267:7246811,28242467:-1506415 +) +(1,6267:7246811,28242467:1506415,1085536,298548 +) +k1,6267:8941333,28242467:188107 +k1,6267:9617018,28242467:188097 +k1,6267:13052434,28242467:188107 +k1,6267:14049912,28242467:188108 +k1,6267:15257104,28242467:188107 +k1,6267:18140708,28242467:188108 +k1,6267:18980243,28242467:188107 +k1,6267:19916116,28242467:188107 +k1,6267:22475972,28242467:188108 +k1,6267:23195576,28242467:188107 +k1,6267:24668190,28242467:188108 +k1,6267:25875382,28242467:188107 +k1,6267:28686896,28242467:188108 +k1,6267:30834529,28242467:188107 +k1,6267:31966991,28242467:0 +) +(1,6268:7246811,29083955:24720180,513147,134348 +k1,6267:8143192,29083955:148615 +k1,6267:10421073,29083955:148616 +k1,6267:12774975,29083955:148615 +k1,6267:13609753,29083955:148616 +k1,6267:14529071,29083955:148615 +k1,6267:17750014,29083955:148615 +k1,6267:18550058,29083955:148616 +k1,6267:19717758,29083955:148615 +k1,6267:21172506,29083955:148615 +k1,6267:24601854,29083955:148616 +k1,6267:25409761,29083955:148615 +k1,6267:26577462,29083955:148616 +k1,6267:29097825,29083955:148615 +k1,6268:31966991,29083955:0 +k1,6268:31966991,29083955:0 +) +] +) +] +r1,6268:32583029,29808127:26214,3241020,0 +) +] +) +) +g1,6268:32583029,29218303 +) +h1,6268:6630773,29834341:0,0,0 +v1,6271:6630773,31549095:0,393216,0 +(1,6280:6630773,33896804:25952256,2740925,196608 +g1,6280:6630773,33896804 +g1,6280:6630773,33896804 +g1,6280:6434165,33896804 +(1,6280:6434165,33896804:0,2740925,196608 +r1,6280:32779637,33896804:26345472,2937533,196608 +k1,6280:6434165,33896804:-26345472 +) +(1,6280:6434165,33896804:26345472,2740925,196608 +[1,6280:6630773,33896804:25952256,2544317,0 +(1,6273:6630773,31756713:25952256,404226,107478 +(1,6272:6630773,31756713:0,0,0 +g1,6272:6630773,31756713 +g1,6272:6630773,31756713 +g1,6272:6303093,31756713 +(1,6272:6303093,31756713:0,0,0 +) +g1,6272:6630773,31756713 +) +k1,6273:6630773,31756713:0 +g1,6273:12005250,31756713 +g1,6273:12637542,31756713 +g1,6273:13585979,31756713 +g1,6273:15166708,31756713 +g1,6273:18012019,31756713 +g1,6273:19592748,31756713 +g1,6273:20857331,31756713 +k1,6273:20857331,31756713:1573 +h1,6273:22755778,31756713:0,0,0 +k1,6273:32583029,31756713:9827251 +g1,6273:32583029,31756713 +) +(1,6274:6630773,32422891:25952256,410518,101187 +h1,6274:6630773,32422891:0,0,0 +g1,6274:9476084,32422891 +g1,6274:10424522,32422891 +g1,6274:13269834,32422891 +g1,6274:13902126,32422891 +g1,6274:14534418,32422891 +g1,6274:16431292,32422891 +g1,6274:18644312,32422891 +g1,6274:19592749,32422891 +g1,6274:21489623,32422891 +g1,6274:22438060,32422891 +g1,6274:24018789,32422891 +g1,6274:26231809,32422891 +k1,6274:26231809,32422891:14156 +h1,6274:27826693,32422891:0,0,0 +k1,6274:32583029,32422891:4756336 +g1,6274:32583029,32422891 +) +(1,6275:6630773,33089069:25952256,404226,76021 +h1,6275:6630773,33089069:0,0,0 +k1,6275:6630773,33089069:0 +h1,6275:10740667,33089069:0,0,0 +k1,6275:32583029,33089069:21842362 +g1,6275:32583029,33089069 +) +(1,6279:6630773,33820783:25952256,404226,76021 +(1,6277:6630773,33820783:0,0,0 +g1,6277:6630773,33820783 +g1,6277:6630773,33820783 +g1,6277:6303093,33820783 +(1,6277:6303093,33820783:0,0,0 +) +g1,6277:6630773,33820783 +) +g1,6279:7579210,33820783 +g1,6279:7895356,33820783 +g1,6279:9159939,33820783 +g1,6279:11056813,33820783 +g1,6279:12953687,33820783 +g1,6279:14850561,33820783 +g1,6279:16747435,33820783 +g1,6279:18644309,33820783 +g1,6279:20541183,33820783 +h1,6279:21489620,33820783:0,0,0 +k1,6279:32583029,33820783:11093409 +g1,6279:32583029,33820783 +) +] +) +g1,6280:32583029,33896804 +g1,6280:6630773,33896804 +g1,6280:6630773,33896804 +g1,6280:32583029,33896804 +g1,6280:32583029,33896804 +) +h1,6280:6630773,34093412:0,0,0 +v1,6284:6630773,35808166:0,393216,0 +(1,6288:6630773,36129554:25952256,714604,196608 +g1,6288:6630773,36129554 +g1,6288:6630773,36129554 +g1,6288:6434165,36129554 +(1,6288:6434165,36129554:0,714604,196608 +r1,6288:32779637,36129554:26345472,911212,196608 +k1,6288:6434165,36129554:-26345472 +) +(1,6288:6434165,36129554:26345472,714604,196608 +[1,6288:6630773,36129554:25952256,517996,0 +(1,6286:6630773,36022076:25952256,410518,107478 +(1,6285:6630773,36022076:0,0,0 +g1,6285:6630773,36022076 +g1,6285:6630773,36022076 +g1,6285:6303093,36022076 +(1,6285:6303093,36022076:0,0,0 +) +g1,6285:6630773,36022076 +) +g1,6286:8843793,36022076 +g1,6286:9792231,36022076 +g1,6286:13585980,36022076 +g1,6286:14534418,36022076 +g1,6286:17063584,36022076 +g1,6286:17695876,36022076 +h1,6286:18328167,36022076:0,0,0 +k1,6286:32583029,36022076:14254862 +g1,6286:32583029,36022076 +) +] +) +g1,6288:32583029,36129554 +g1,6288:6630773,36129554 +g1,6288:6630773,36129554 +g1,6288:32583029,36129554 +g1,6288:32583029,36129554 +) +h1,6288:6630773,36326162:0,0,0 +v1,6292:6630773,38040916:0,393216,0 +(1,6306:6630773,43681242:25952256,6033542,196608 +g1,6306:6630773,43681242 +g1,6306:6630773,43681242 +g1,6306:6434165,43681242 +(1,6306:6434165,43681242:0,6033542,196608 +r1,6306:32779637,43681242:26345472,6230150,196608 +k1,6306:6434165,43681242:-26345472 +) +(1,6306:6434165,43681242:26345472,6033542,196608 +[1,6306:6630773,43681242:25952256,5836934,0 +(1,6294:6630773,38254826:25952256,410518,101187 +(1,6293:6630773,38254826:0,0,0 +g1,6293:6630773,38254826 +g1,6293:6630773,38254826 +g1,6293:6303093,38254826 +(1,6293:6303093,38254826:0,0,0 +) +g1,6293:6630773,38254826 +) +g1,6294:7263065,38254826 +g1,6294:8211503,38254826 +g1,6294:11056815,38254826 +g1,6294:11689107,38254826 +g1,6294:14850564,38254826 +g1,6294:16115147,38254826 +g1,6294:16747439,38254826 +g1,6294:19276605,38254826 +g1,6294:19908897,38254826 +g1,6294:20541189,38254826 +h1,6294:21173481,38254826:0,0,0 +k1,6294:32583029,38254826:11409548 +g1,6294:32583029,38254826 +) +(1,6295:6630773,38921004:25952256,404226,76021 +h1,6295:6630773,38921004:0,0,0 +k1,6295:6630773,38921004:0 +h1,6295:8527647,38921004:0,0,0 +k1,6295:32583029,38921004:24055382 +g1,6295:32583029,38921004 +) +(1,6305:6630773,39652718:25952256,410518,9436 +(1,6297:6630773,39652718:0,0,0 +g1,6297:6630773,39652718 +g1,6297:6630773,39652718 +g1,6297:6303093,39652718 +(1,6297:6303093,39652718:0,0,0 +) +g1,6297:6630773,39652718 +) +g1,6305:7579210,39652718 +g1,6305:9159939,39652718 +g1,6305:10108376,39652718 +h1,6305:10424522,39652718:0,0,0 +k1,6305:32583030,39652718:22158508 +g1,6305:32583030,39652718 +) +(1,6305:6630773,40318896:25952256,410518,31456 +h1,6305:6630773,40318896:0,0,0 +g1,6305:7579210,40318896 +g1,6305:7895356,40318896 +g1,6305:8527648,40318896 +g1,6305:9159940,40318896 +g1,6305:10424523,40318896 +h1,6305:11689106,40318896:0,0,0 +k1,6305:32583030,40318896:20893924 +g1,6305:32583030,40318896 +) +(1,6305:6630773,40985074:25952256,410518,31456 +h1,6305:6630773,40985074:0,0,0 +g1,6305:7579210,40985074 +g1,6305:7895356,40985074 +g1,6305:8527648,40985074 +g1,6305:9159940,40985074 +g1,6305:10424523,40985074 +h1,6305:11689106,40985074:0,0,0 +k1,6305:32583030,40985074:20893924 +g1,6305:32583030,40985074 +) +(1,6305:6630773,41651252:25952256,410518,31456 +h1,6305:6630773,41651252:0,0,0 +g1,6305:7579210,41651252 +g1,6305:7895356,41651252 +g1,6305:8527648,41651252 +g1,6305:9159940,41651252 +g1,6305:10424523,41651252 +h1,6305:11689106,41651252:0,0,0 +k1,6305:32583030,41651252:20893924 +g1,6305:32583030,41651252 +) +(1,6305:6630773,42317430:25952256,410518,31456 +h1,6305:6630773,42317430:0,0,0 +g1,6305:7579210,42317430 +g1,6305:7895356,42317430 +g1,6305:8527648,42317430 +g1,6305:9159940,42317430 +g1,6305:10424523,42317430 +h1,6305:11689106,42317430:0,0,0 +k1,6305:32583030,42317430:20893924 +g1,6305:32583030,42317430 +) +(1,6305:6630773,42983608:25952256,410518,31456 +h1,6305:6630773,42983608:0,0,0 +g1,6305:7579210,42983608 +g1,6305:7895356,42983608 +g1,6305:8527648,42983608 +g1,6305:9159940,42983608 +g1,6305:10424523,42983608 +h1,6305:11689106,42983608:0,0,0 +k1,6305:32583030,42983608:20893924 +g1,6305:32583030,42983608 +) +(1,6305:6630773,43649786:25952256,410518,31456 +h1,6305:6630773,43649786:0,0,0 +g1,6305:7579210,43649786 +g1,6305:7895356,43649786 +g1,6305:8527648,43649786 +g1,6305:9159940,43649786 +g1,6305:10424523,43649786 +h1,6305:11689106,43649786:0,0,0 +k1,6305:32583030,43649786:20893924 +g1,6305:32583030,43649786 +) +] +) +g1,6306:32583029,43681242 +g1,6306:6630773,43681242 +g1,6306:6630773,43681242 +g1,6306:32583029,43681242 +g1,6306:32583029,43681242 +) +h1,6306:6630773,43877850:0,0,0 +v1,6310:6630773,45592604:0,393216,0 +] +(1,6318:32583029,45706769:0,0,0 +g1,6318:32583029,45706769 +) +) +] +(1,6318:6630773,47279633:25952256,0,0 +h1,6318:6630773,47279633:25952256,0,0 +) +] +h1,6318:4262630,4025873:0,0,0 +] +!29165 }119 -Input:895:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:896:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:897:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:898:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:899:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:900:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:901:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:902:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!692 +Input:891:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:892:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:893:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:894:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:895:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:896:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:897:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:898:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!740 {120 -[1,6422:4262630,47279633:28320399,43253760,0 -(1,6422:4262630,4025873:0,0,0 -[1,6422:-473657,4025873:25952256,0,0 -(1,6422:-473657,-710414:25952256,0,0 -h1,6422:-473657,-710414:0,0,0 -(1,6422:-473657,-710414:0,0,0 -(1,6422:-473657,-710414:0,0,0 -g1,6422:-473657,-710414 -(1,6422:-473657,-710414:65781,0,65781 -g1,6422:-407876,-710414 -[1,6422:-407876,-644633:0,0,0 +[1,6428:4262630,47279633:28320399,43253760,0 +(1,6428:4262630,4025873:0,0,0 +[1,6428:-473657,4025873:25952256,0,0 +(1,6428:-473657,-710414:25952256,0,0 +h1,6428:-473657,-710414:0,0,0 +(1,6428:-473657,-710414:0,0,0 +(1,6428:-473657,-710414:0,0,0 +g1,6428:-473657,-710414 +(1,6428:-473657,-710414:65781,0,65781 +g1,6428:-407876,-710414 +[1,6428:-407876,-644633:0,0,0 ] ) -k1,6422:-473657,-710414:-65781 +k1,6428:-473657,-710414:-65781 ) ) -k1,6422:25478599,-710414:25952256 -g1,6422:25478599,-710414 +k1,6428:25478599,-710414:25952256 +g1,6428:25478599,-710414 ) ] ) -[1,6422:6630773,47279633:25952256,43253760,0 -[1,6422:6630773,4812305:25952256,786432,0 -(1,6422:6630773,4812305:25952256,513147,126483 -(1,6422:6630773,4812305:25952256,513147,126483 -g1,6422:3078558,4812305 -[1,6422:3078558,4812305:0,0,0 -(1,6422:3078558,2439708:0,1703936,0 -k1,6422:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6422:2537886,2439708:1179648,16384,0 +[1,6428:6630773,47279633:25952256,43253760,0 +[1,6428:6630773,4812305:25952256,786432,0 +(1,6428:6630773,4812305:25952256,513147,126483 +(1,6428:6630773,4812305:25952256,513147,126483 +g1,6428:3078558,4812305 +[1,6428:3078558,4812305:0,0,0 +(1,6428:3078558,2439708:0,1703936,0 +k1,6428:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6428:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6422:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6428:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6422:3078558,4812305:0,0,0 -(1,6422:3078558,2439708:0,1703936,0 -g1,6422:29030814,2439708 -g1,6422:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6422:36151628,1915420:16384,1179648,0 +[1,6428:3078558,4812305:0,0,0 +(1,6428:3078558,2439708:0,1703936,0 +g1,6428:29030814,2439708 +g1,6428:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6428:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6422:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6428:37855564,2439708:1179648,16384,0 +) ) +k1,6428:3078556,2439708:-34777008 ) -k1,6422:3078556,2439708:-34777008 +] +[1,6428:3078558,4812305:0,0,0 +(1,6428:3078558,49800853:0,16384,2228224 +k1,6428:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6428:2537886,49800853:1179648,16384,0 +) +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6428:3078558,51504789:16384,1179648,0 +) +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] -[1,6422:3078558,4812305:0,0,0 -(1,6422:3078558,49800853:0,16384,2228224 -k1,6422:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6422:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6422:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +) +] +[1,6428:3078558,4812305:0,0,0 +(1,6428:3078558,49800853:0,16384,2228224 +g1,6428:29030814,49800853 +g1,6428:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6428:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6428:37855564,49800853:1179648,16384,0 ) ) +k1,6428:3078556,49800853:-34777008 +) ] -[1,6422:3078558,4812305:0,0,0 -(1,6422:3078558,49800853:0,16384,2228224 -g1,6422:29030814,49800853 -g1,6422:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6422:36151628,51504789:16384,1179648,0 +g1,6428:6630773,4812305 +g1,6428:6630773,4812305 +g1,6428:8671564,4812305 +g1,6428:11756343,4812305 +k1,6428:31387651,4812305:19631308 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 ) ] +[1,6428:6630773,45706769:25952256,40108032,0 +(1,6428:6630773,45706769:25952256,40108032,0 +(1,6428:6630773,45706769:0,0,0 +g1,6428:6630773,45706769 +) +[1,6428:6630773,45706769:25952256,40108032,0 +v1,6318:6630773,6254097:0,393216,0 +(1,6318:6630773,7941920:25952256,2081039,196608 +g1,6318:6630773,7941920 +g1,6318:6630773,7941920 +g1,6318:6434165,7941920 +(1,6318:6434165,7941920:0,2081039,196608 +r1,6318:32779637,7941920:26345472,2277647,196608 +k1,6318:6434165,7941920:-26345472 +) +(1,6318:6434165,7941920:26345472,2081039,196608 +[1,6318:6630773,7941920:25952256,1884431,0 +(1,6312:6630773,6468007:25952256,410518,101187 +(1,6311:6630773,6468007:0,0,0 +g1,6311:6630773,6468007 +g1,6311:6630773,6468007 +g1,6311:6303093,6468007 +(1,6311:6303093,6468007:0,0,0 +) +g1,6311:6630773,6468007 +) +g1,6312:7263065,6468007 +g1,6312:8211503,6468007 +g1,6312:11056815,6468007 +g1,6312:11689107,6468007 +g1,6312:14850564,6468007 +g1,6312:16115147,6468007 +g1,6312:16747439,6468007 +g1,6312:19276605,6468007 +g1,6312:19908897,6468007 +g1,6312:20541189,6468007 +h1,6312:21173481,6468007:0,0,0 +k1,6312:32583029,6468007:11409548 +g1,6312:32583029,6468007 +) +(1,6313:6630773,7134185:25952256,404226,76021 +h1,6313:6630773,7134185:0,0,0 +k1,6313:6630773,7134185:0 +h1,6313:8527647,7134185:0,0,0 +k1,6313:32583029,7134185:24055382 +g1,6313:32583029,7134185 +) +(1,6317:6630773,7865899:25952256,404226,76021 +(1,6315:6630773,7865899:0,0,0 +g1,6315:6630773,7865899 +g1,6315:6630773,7865899 +g1,6315:6303093,7865899 +(1,6315:6303093,7865899:0,0,0 +) +g1,6315:6630773,7865899 +) +g1,6317:7579210,7865899 +g1,6317:7895356,7865899 +g1,6317:9159939,7865899 +g1,6317:11056813,7865899 +g1,6317:12637542,7865899 +g1,6317:14218271,7865899 +g1,6317:15799000,7865899 +g1,6317:17379729,7865899 +g1,6317:18960458,7865899 +h1,6317:19908895,7865899:0,0,0 +k1,6317:32583029,7865899:12674134 +g1,6317:32583029,7865899 +) +] +) +g1,6318:32583029,7941920 +g1,6318:6630773,7941920 +g1,6318:6630773,7941920 +g1,6318:32583029,7941920 +g1,6318:32583029,7941920 +) +h1,6318:6630773,8138528:0,0,0 +v1,6322:6630773,9853282:0,393216,0 +(1,6336:6630773,15493608:25952256,6033542,196608 +g1,6336:6630773,15493608 +g1,6336:6630773,15493608 +g1,6336:6434165,15493608 +(1,6336:6434165,15493608:0,6033542,196608 +r1,6336:32779637,15493608:26345472,6230150,196608 +k1,6336:6434165,15493608:-26345472 +) +(1,6336:6434165,15493608:26345472,6033542,196608 +[1,6336:6630773,15493608:25952256,5836934,0 +(1,6324:6630773,10067192:25952256,410518,101187 +(1,6323:6630773,10067192:0,0,0 +g1,6323:6630773,10067192 +g1,6323:6630773,10067192 +g1,6323:6303093,10067192 +(1,6323:6303093,10067192:0,0,0 +) +g1,6323:6630773,10067192 +) +g1,6324:7263065,10067192 +g1,6324:8211503,10067192 +g1,6324:11056815,10067192 +g1,6324:11689107,10067192 +g1,6324:14850564,10067192 +g1,6324:16115147,10067192 +g1,6324:16747439,10067192 +g1,6324:19276605,10067192 +g1,6324:19908897,10067192 +g1,6324:20541189,10067192 +g1,6324:21489627,10067192 +g1,6324:24334938,10067192 +g1,6324:24967230,10067192 +h1,6324:26864104,10067192:0,0,0 +k1,6324:32583029,10067192:5718925 +g1,6324:32583029,10067192 +) +(1,6325:6630773,10733370:25952256,404226,76021 +h1,6325:6630773,10733370:0,0,0 +k1,6325:6630773,10733370:0 +h1,6325:8527647,10733370:0,0,0 +k1,6325:32583029,10733370:24055382 +g1,6325:32583029,10733370 +) +(1,6335:6630773,11465084:25952256,410518,9436 +(1,6327:6630773,11465084:0,0,0 +g1,6327:6630773,11465084 +g1,6327:6630773,11465084 +g1,6327:6303093,11465084 +(1,6327:6303093,11465084:0,0,0 +) +g1,6327:6630773,11465084 +) +g1,6335:7579210,11465084 +g1,6335:9159939,11465084 +g1,6335:10108376,11465084 +h1,6335:10424522,11465084:0,0,0 +k1,6335:32583030,11465084:22158508 +g1,6335:32583030,11465084 +) +(1,6335:6630773,12131262:25952256,410518,31456 +h1,6335:6630773,12131262:0,0,0 +g1,6335:7579210,12131262 +g1,6335:7895356,12131262 +g1,6335:8527648,12131262 +g1,6335:9159940,12131262 +g1,6335:10424523,12131262 +h1,6335:11689106,12131262:0,0,0 +k1,6335:32583030,12131262:20893924 +g1,6335:32583030,12131262 +) +(1,6335:6630773,12797440:25952256,410518,31456 +h1,6335:6630773,12797440:0,0,0 +g1,6335:7579210,12797440 +g1,6335:7895356,12797440 +g1,6335:8527648,12797440 +g1,6335:9159940,12797440 +g1,6335:10424523,12797440 +h1,6335:11689106,12797440:0,0,0 +k1,6335:32583030,12797440:20893924 +g1,6335:32583030,12797440 +) +(1,6335:6630773,13463618:25952256,410518,31456 +h1,6335:6630773,13463618:0,0,0 +g1,6335:7579210,13463618 +g1,6335:7895356,13463618 +g1,6335:8527648,13463618 +g1,6335:9159940,13463618 +g1,6335:10424523,13463618 +h1,6335:11689106,13463618:0,0,0 +k1,6335:32583030,13463618:20893924 +g1,6335:32583030,13463618 +) +(1,6335:6630773,14129796:25952256,410518,31456 +h1,6335:6630773,14129796:0,0,0 +g1,6335:7579210,14129796 +g1,6335:7895356,14129796 +g1,6335:8527648,14129796 +g1,6335:9159940,14129796 +g1,6335:10424523,14129796 +h1,6335:11689106,14129796:0,0,0 +k1,6335:32583030,14129796:20893924 +g1,6335:32583030,14129796 +) +(1,6335:6630773,14795974:25952256,410518,31456 +h1,6335:6630773,14795974:0,0,0 +g1,6335:7579210,14795974 +g1,6335:7895356,14795974 +g1,6335:8527648,14795974 +g1,6335:9159940,14795974 +g1,6335:10424523,14795974 +h1,6335:11689106,14795974:0,0,0 +k1,6335:32583030,14795974:20893924 +g1,6335:32583030,14795974 +) +(1,6335:6630773,15462152:25952256,410518,31456 +h1,6335:6630773,15462152:0,0,0 +g1,6335:7579210,15462152 +g1,6335:7895356,15462152 +g1,6335:8527648,15462152 +g1,6335:9159940,15462152 +g1,6335:10424523,15462152 +h1,6335:11689106,15462152:0,0,0 +k1,6335:32583030,15462152:20893924 +g1,6335:32583030,15462152 +) +] +) +g1,6336:32583029,15493608 +g1,6336:6630773,15493608 +g1,6336:6630773,15493608 +g1,6336:32583029,15493608 +g1,6336:32583029,15493608 +) +h1,6336:6630773,15690216:0,0,0 +(1,6340:6630773,17055992:25952256,505283,126483 +h1,6339:6630773,17055992:983040,0,0 +k1,6339:8818833,17055992:251471 +k1,6339:10174586,17055992:251471 +k1,6339:11451040,17055992:251471 +k1,6339:13557834,17055992:251470 +k1,6339:15093811,17055992:251471 +k1,6339:16364367,17055992:251471 +k1,6339:19824481,17055992:251471 +k1,6339:22249126,17055992:251471 +k1,6339:23492157,17055992:251471 +k1,6339:24762713,17055992:251471 +k1,6339:26667656,17055992:251470 +k1,6339:27535165,17055992:251471 +k1,6339:28805721,17055992:251471 +k1,6339:30711976,17055992:251471 +k1,6339:32583029,17055992:0 +) +(1,6340:6630773,17897480:25952256,513147,134348 +g1,6339:7902171,17897480 +g1,6339:9120485,17897480 +g1,6339:10874883,17897480 +g1,6339:12265557,17897480 +g1,6339:15396211,17897480 +g1,6339:16254732,17897480 +g1,6339:17473046,17897480 +g1,6339:19962103,17897480 +g1,6339:22940059,17897480 +k1,6340:32583029,17897480:7726042 +g1,6340:32583029,17897480 +) +(1,6342:6630773,18738968:25952256,513147,134348 +h1,6341:6630773,18738968:983040,0,0 +k1,6341:11642713,18738968:196355 +k1,6341:14864866,18738968:196356 +k1,6341:16165503,18738968:196355 +k1,6341:17109625,18738968:196356 +k1,6341:19687558,18738968:196355 +k1,6341:20693283,18738968:196355 +k1,6341:21908724,18738968:196356 +k1,6341:22900686,18738968:196355 +k1,6341:24288486,18738968:196355 +k1,6341:26690129,18738968:196356 +k1,6341:27537912,18738968:196355 +(1,6341:27537912,18738968:0,414482,115847 +r1,6341:28599601,18738968:1061689,530329,115847 +k1,6341:27537912,18738968:-1061689 +) +(1,6341:27537912,18738968:1061689,414482,115847 +k1,6341:27537912,18738968:3277 +h1,6341:28596324,18738968:0,411205,112570 +) +k1,6341:28969627,18738968:196356 +k1,6341:31837885,18738968:196355 +k1,6341:32583029,18738968:0 +) +(1,6342:6630773,19580456:25952256,505283,126483 +g1,6341:7481430,19580456 +g1,6341:10144157,19580456 +g1,6341:11362471,19580456 +g1,6341:14553419,19580456 +g1,6341:16607972,19580456 +g1,6341:18457398,19580456 +g1,6341:21578222,19580456 +g1,6341:23360145,19580456 +g1,6341:24578459,19580456 +g1,6341:27019019,19580456 +g1,6341:28374958,19580456 +k1,6342:32583029,19580456:1751782 +g1,6342:32583029,19580456 +) +v1,6344:6630773,20770922:0,393216,0 +(1,6352:6630773,22458745:25952256,2081039,196608 +g1,6352:6630773,22458745 +g1,6352:6630773,22458745 +g1,6352:6434165,22458745 +(1,6352:6434165,22458745:0,2081039,196608 +r1,6352:32779637,22458745:26345472,2277647,196608 +k1,6352:6434165,22458745:-26345472 +) +(1,6352:6434165,22458745:26345472,2081039,196608 +[1,6352:6630773,22458745:25952256,1884431,0 +(1,6346:6630773,20984832:25952256,410518,107478 +(1,6345:6630773,20984832:0,0,0 +g1,6345:6630773,20984832 +g1,6345:6630773,20984832 +g1,6345:6303093,20984832 +(1,6345:6303093,20984832:0,0,0 +) +g1,6345:6630773,20984832 +) +g1,6346:7263065,20984832 +g1,6346:8211503,20984832 +g1,6346:11056815,20984832 +g1,6346:11689107,20984832 +g1,6346:14850564,20984832 +g1,6346:16115147,20984832 +g1,6346:16747439,20984832 +g1,6346:20541188,20984832 +g1,6346:21489626,20984832 +g1,6346:24018792,20984832 +g1,6346:24651084,20984832 +g1,6346:25915667,20984832 +g1,6346:26547959,20984832 +g1,6346:27180251,20984832 +h1,6346:27812543,20984832:0,0,0 +k1,6346:32583029,20984832:4770486 +g1,6346:32583029,20984832 +) +(1,6347:6630773,21651010:25952256,404226,76021 +h1,6347:6630773,21651010:0,0,0 +k1,6347:6630773,21651010:0 +h1,6347:8527647,21651010:0,0,0 +k1,6347:32583029,21651010:24055382 +g1,6347:32583029,21651010 +) +(1,6351:6630773,22382724:25952256,404226,76021 +(1,6349:6630773,22382724:0,0,0 +g1,6349:6630773,22382724 +g1,6349:6630773,22382724 +g1,6349:6303093,22382724 +(1,6349:6303093,22382724:0,0,0 +) +g1,6349:6630773,22382724 +) +g1,6351:7579210,22382724 +g1,6351:7895356,22382724 +g1,6351:9159939,22382724 +g1,6351:11056813,22382724 +g1,6351:12637542,22382724 +g1,6351:14218271,22382724 +g1,6351:15799000,22382724 +g1,6351:17379729,22382724 +g1,6351:18960458,22382724 +h1,6351:19908895,22382724:0,0,0 +k1,6351:32583029,22382724:12674134 +g1,6351:32583029,22382724 +) +] +) +g1,6352:32583029,22458745 +g1,6352:6630773,22458745 +g1,6352:6630773,22458745 +g1,6352:32583029,22458745 +g1,6352:32583029,22458745 +) +h1,6352:6630773,22655353:0,0,0 +(1,6356:6630773,24021129:25952256,513147,134348 +h1,6355:6630773,24021129:983040,0,0 +k1,6355:8590791,24021129:202998 +k1,6355:11076407,24021129:202997 +k1,6355:11965567,24021129:202998 +k1,6355:15297909,24021129:202998 +k1,6355:16116944,24021129:202997 +k1,6355:18598629,24021129:202998 +h1,6355:20141347,24021129:0,0,0 +k1,6355:20344345,24021129:202998 +k1,6355:21356712,24021129:202997 +k1,6355:23057863,24021129:202998 +h1,6355:24253240,24021129:0,0,0 +k1,6355:24629908,24021129:202998 +k1,6355:26530943,24021129:202997 +k1,6355:29245936,24021129:202998 +k1,6355:32583029,24021129:0 +) +(1,6356:6630773,24862617:25952256,513147,126483 +k1,6355:9879896,24862617:223326 +k1,6355:11094783,24862617:223327 +k1,6355:14275749,24862617:223326 +k1,6355:16007714,24862617:223326 +k1,6355:17323526,24862617:223327 +k1,6355:19727235,24862617:223326 +k1,6355:20698327,24862617:223326 +k1,6355:24108669,24862617:223326 +k1,6355:25256054,24862617:223327 +k1,6355:26498465,24862617:223326 +k1,6355:28423761,24862617:223326 +k1,6355:30427046,24862617:223327 +k1,6355:32117068,24862617:223326 +k1,6355:32583029,24862617:0 +) +(1,6356:6630773,25704105:25952256,513147,126483 +k1,6355:8578150,25704105:154967 +k1,6355:11758914,25704105:154967 +k1,6355:12905442,25704105:154968 +k1,6355:15347616,25704105:154967 +k1,6355:16568854,25704105:154967 +k1,6355:17409983,25704105:154967 +k1,6355:18772780,25704105:154968 +k1,6355:19613909,25704105:154967 +k1,6355:23105969,25704105:154967 +k1,6355:26460404,25704105:154967 +k1,6355:27995560,25704105:154968 +k1,6355:29142087,25704105:154967 +k1,6355:31140582,25704105:154967 +k1,6355:32583029,25704105:0 +) +(1,6356:6630773,26545593:25952256,505283,126483 +g1,6355:7849087,26545593 +g1,6355:11353297,26545593 +(1,6355:11353297,26545593:0,459977,115847 +r1,6355:13118410,26545593:1765113,575824,115847 +k1,6355:11353297,26545593:-1765113 +) +(1,6355:11353297,26545593:1765113,459977,115847 +k1,6355:11353297,26545593:3277 +h1,6355:13115133,26545593:0,411205,112570 +) +g1,6355:13317639,26545593 +k1,6356:32583029,26545593:17346496 +g1,6356:32583029,26545593 +) +v1,6358:6630773,27736059:0,393216,0 +(1,6366:6630773,29417590:25952256,2074747,196608 +g1,6366:6630773,29417590 +g1,6366:6630773,29417590 +g1,6366:6434165,29417590 +(1,6366:6434165,29417590:0,2074747,196608 +r1,6366:32779637,29417590:26345472,2271355,196608 +k1,6366:6434165,29417590:-26345472 +) +(1,6366:6434165,29417590:26345472,2074747,196608 +[1,6366:6630773,29417590:25952256,1878139,0 +(1,6360:6630773,27943677:25952256,404226,107478 +(1,6359:6630773,27943677:0,0,0 +g1,6359:6630773,27943677 +g1,6359:6630773,27943677 +g1,6359:6303093,27943677 +(1,6359:6303093,27943677:0,0,0 +) +g1,6359:6630773,27943677 +) +g1,6360:7263065,27943677 +g1,6360:8211503,27943677 +g1,6360:12637543,27943677 +g1,6360:13269835,27943677 +h1,6360:13585981,27943677:0,0,0 +k1,6360:32583029,27943677:18997048 +g1,6360:32583029,27943677 +) +(1,6361:6630773,28609855:25952256,404226,76021 +h1,6361:6630773,28609855:0,0,0 +k1,6361:6630773,28609855:0 +h1,6361:8527647,28609855:0,0,0 +k1,6361:32583029,28609855:24055382 +g1,6361:32583029,28609855 +) +(1,6365:6630773,29341569:25952256,404226,76021 +(1,6363:6630773,29341569:0,0,0 +g1,6363:6630773,29341569 +g1,6363:6630773,29341569 +g1,6363:6303093,29341569 +(1,6363:6303093,29341569:0,0,0 +) +g1,6363:6630773,29341569 +) +g1,6365:7579210,29341569 +g1,6365:7895356,29341569 +g1,6365:9159939,29341569 +g1,6365:11056813,29341569 +g1,6365:12637542,29341569 +g1,6365:14218271,29341569 +g1,6365:15799000,29341569 +g1,6365:17379729,29341569 +g1,6365:18960458,29341569 +h1,6365:19908895,29341569:0,0,0 +k1,6365:32583029,29341569:12674134 +g1,6365:32583029,29341569 +) +] +) +g1,6366:32583029,29417590 +g1,6366:6630773,29417590 +g1,6366:6630773,29417590 +g1,6366:32583029,29417590 +g1,6366:32583029,29417590 +) +h1,6366:6630773,29614198:0,0,0 +v1,6370:6630773,31504262:0,393216,0 +(1,6428:6630773,40588844:25952256,9477798,589824 +g1,6428:6630773,40588844 +(1,6428:6630773,40588844:25952256,9477798,589824 +(1,6428:6630773,41178668:25952256,10067622,0 +[1,6428:6630773,41178668:25952256,10067622,0 +(1,6428:6630773,41178668:25952256,10041408,0 +r1,6428:6656987,41178668:26214,10041408,0 +[1,6428:6656987,41178668:25899828,10041408,0 +(1,6428:6656987,40588844:25899828,8861760,0 +[1,6428:7246811,40588844:24720180,8861760,0 +(1,6371:7246811,32888969:24720180,1161885,196608 +(1,6370:7246811,32888969:0,1161885,196608 +r1,6428:8794447,32888969:1547636,1358493,196608 +k1,6370:7246811,32888969:-1547636 +) +(1,6370:7246811,32888969:1547636,1161885,196608 +) +k1,6370:9002436,32888969:207989 +k1,6370:12000294,32888969:207990 +(1,6370:12000294,32888969:0,452978,115847 +r1,6428:14820543,32888969:2820249,568825,115847 +k1,6370:12000294,32888969:-2820249 +) +(1,6370:12000294,32888969:2820249,452978,115847 +k1,6370:12000294,32888969:3277 +h1,6370:14817266,32888969:0,411205,112570 +) +k1,6370:15028532,32888969:207989 +k1,6370:16340804,32888969:207990 +k1,6370:17296559,32888969:207989 +k1,6370:19091176,32888969:207990 +k1,6370:19950593,32888969:207989 +k1,6370:21251067,32888969:207989 +k1,6370:22145219,32888969:207990 +k1,6370:23372293,32888969:207989 +k1,6370:25362862,32888969:207990 +k1,6370:26230143,32888969:207989 +k1,6370:29216860,32888969:207990 +k1,6370:31435494,32888969:207989 +k1,6370:31966991,32888969:0 +) +(1,6371:7246811,33730457:24720180,513147,134348 +k1,6370:10377029,33730457:145053 +k1,6370:12010405,33730457:145053 +k1,6370:12686955,33730457:145053 +k1,6370:13187868,33730457:145053 +k1,6370:15962881,33730457:145053 +k1,6370:17345908,33730457:145052 +k1,6370:18150253,33730457:145053 +k1,6370:21309307,33730457:145053 +k1,6370:23522676,33730457:145053 +k1,6370:24859174,33730457:145053 +k1,6370:27988737,33730457:145053 +k1,6370:30166717,33730457:145053 +k1,6371:31966991,33730457:0 +) +(1,6371:7246811,34571945:24720180,513147,126483 +k1,6370:8463019,34571945:180084 +k1,6370:10951280,34571945:180083 +k1,6370:11744126,34571945:180084 +k1,6370:13375831,34571945:180083 +k1,6370:15533792,34571945:180084 +k1,6370:17463031,34571945:180083 +k1,6370:20257346,34571945:180084 +k1,6370:22005051,34571945:180084 +k1,6370:22540994,34571945:180083 +k1,6370:23714604,34571945:180084 +k1,6370:24553979,34571945:180083 +k1,6370:27215911,34571945:180084 +k1,6370:29270324,34571945:180083 +k1,6370:31219225,34571945:180084 +k1,6370:31966991,34571945:0 +) +(1,6371:7246811,35413433:24720180,505283,134348 +k1,6370:9352153,35413433:237566 +k1,6370:12034212,35413433:237566 +k1,6370:14340095,35413433:237567 +k1,6370:15769106,35413433:237566 +k1,6370:19164852,35413433:237566 +k1,6370:20599105,35413433:237566 +k1,6370:23908999,35413433:237566 +k1,6370:26351853,35413433:237567 +k1,6370:27240847,35413433:237566 +(1,6370:27240847,35413433:0,414482,115847 +r1,6428:30412807,35413433:3171960,530329,115847 +k1,6370:27240847,35413433:-3171960 +) +(1,6370:27240847,35413433:3171960,414482,115847 +k1,6370:27240847,35413433:3277 +h1,6370:30409530,35413433:0,411205,112570 +) +k1,6370:30650373,35413433:237566 +k1,6371:31966991,35413433:0 +) +(1,6371:7246811,36254921:24720180,513147,134348 +k1,6370:9071520,36254921:167959 +k1,6370:9595340,36254921:167960 +k1,6370:12573483,36254921:167959 +k1,6370:13689093,36254921:167959 +k1,6370:14876138,36254921:167960 +k1,6370:16430183,36254921:167959 +k1,6370:17257434,36254921:167959 +k1,6370:18444479,36254921:167960 +k1,6370:20623083,36254921:167959 +k1,6370:22471386,36254921:167960 +k1,6370:23830790,36254921:167959 +k1,6370:24787147,36254921:167959 +k1,6370:28997368,36254921:167960 +k1,6370:30432793,36254921:167959 +k1,6370:31966991,36254921:0 +) +(1,6371:7246811,37096409:24720180,505283,134348 +k1,6370:8648677,37096409:210421 +k1,6370:11745959,37096409:210421 +k1,6370:13982098,37096409:210421 +k1,6370:15477024,37096409:210420 +k1,6370:16706530,37096409:210421 +k1,6370:18451149,37096409:210421 +k1,6370:19277608,37096409:210421 +k1,6370:20507114,37096409:210421 +k1,6370:22876291,37096409:210421 +k1,6370:24078271,37096409:210420 +k1,6370:25619073,37096409:210421 +k1,6370:27988250,37096409:210421 +k1,6370:31315563,37096409:210421 +k1,6370:31966991,37096409:0 +) +(1,6371:7246811,37937897:24720180,505283,115847 +g1,6370:8465125,37937897 +g1,6370:10732670,37937897 +g1,6370:11547937,37937897 +(1,6370:11547937,37937897:0,414482,115847 +r1,6428:14719897,37937897:3171960,530329,115847 +k1,6370:11547937,37937897:-3171960 +) +(1,6370:11547937,37937897:3171960,414482,115847 +k1,6370:11547937,37937897:3277 +h1,6370:14716620,37937897:0,411205,112570 +) +k1,6371:31966991,37937897:17073424 +g1,6371:31966991,37937897 +) +(1,6373:7246811,38779385:24720180,513147,134348 +h1,6372:7246811,38779385:983040,0,0 +k1,6372:9395655,38779385:212255 +k1,6372:10914042,38779385:212254 +k1,6372:12218782,38779385:212255 +(1,6372:12218782,38779385:0,452978,115847 +r1,6428:15039031,38779385:2820249,568825,115847 +k1,6372:12218782,38779385:-2820249 +) +(1,6372:12218782,38779385:2820249,452978,115847 +k1,6372:12218782,38779385:3277 +h1,6372:15035754,38779385:0,411205,112570 +) +k1,6372:15251285,38779385:212254 +k1,6372:16114968,38779385:212255 +k1,6372:18256602,38779385:212254 +k1,6372:19487942,38779385:212255 +k1,6372:21659722,38779385:212254 +(1,6372:21659722,38779385:0,452978,115847 +r1,6428:23776547,38779385:2116825,568825,115847 +k1,6372:21659722,38779385:-2116825 +) +(1,6372:21659722,38779385:2116825,452978,115847 +k1,6372:21659722,38779385:3277 +h1,6372:23773270,38779385:0,411205,112570 +) +k1,6372:23988802,38779385:212255 +k1,6372:27563053,38779385:212254 +k1,6372:30403957,38779385:212255 +k1,6372:31966991,38779385:0 +) +(1,6373:7246811,39620873:24720180,513147,134348 +k1,6372:8707406,39620873:189197 +k1,6372:9579489,39620873:189198 +k1,6372:11418883,39620873:189197 +k1,6372:14835073,39620873:189197 +k1,6372:17228246,39620873:189198 +k1,6372:20820072,39620873:189197 +k1,6372:22113551,39620873:189197 +k1,6372:23050514,39620873:189197 +k1,6372:25444999,39620873:189198 +k1,6372:26285624,39620873:189197 +k1,6372:27493906,39620873:189197 +k1,6372:30378600,39620873:189198 +k1,6372:31219225,39620873:189197 +k1,6372:31966991,39620873:0 +) +(1,6373:7246811,40462361:24720180,505283,126483 +k1,6373:31966991,40462361:22174762 +g1,6373:31966991,40462361 +) +] +) +] +r1,6428:32583029,41178668:26214,10041408,0 +) +] +) +) +g1,6428:32583029,40588844 +) +] +(1,6428:32583029,45706769:0,0,0 +g1,6428:32583029,45706769 ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6422:37855564,49800853:1179648,16384,0 ) +] +(1,6428:6630773,47279633:25952256,0,0 +h1,6428:6630773,47279633:25952256,0,0 ) -k1,6422:3078556,49800853:-34777008 -) -] -g1,6422:6630773,4812305 -g1,6422:6630773,4812305 -g1,6422:8671564,4812305 -g1,6422:11756343,4812305 -k1,6422:31387651,4812305:19631308 -) -) -] -[1,6422:6630773,45706769:25952256,40108032,0 -(1,6422:6630773,45706769:25952256,40108032,0 -(1,6422:6630773,45706769:0,0,0 -g1,6422:6630773,45706769 -) -[1,6422:6630773,45706769:25952256,40108032,0 -v1,6316:6630773,6254097:0,393216,0 -(1,6330:6630773,11894423:25952256,6033542,196608 -g1,6330:6630773,11894423 -g1,6330:6630773,11894423 -g1,6330:6434165,11894423 -(1,6330:6434165,11894423:0,6033542,196608 -r1,6330:32779637,11894423:26345472,6230150,196608 -k1,6330:6434165,11894423:-26345472 -) -(1,6330:6434165,11894423:26345472,6033542,196608 -[1,6330:6630773,11894423:25952256,5836934,0 -(1,6318:6630773,6468007:25952256,410518,101187 -(1,6317:6630773,6468007:0,0,0 -g1,6317:6630773,6468007 -g1,6317:6630773,6468007 -g1,6317:6303093,6468007 -(1,6317:6303093,6468007:0,0,0 -) -g1,6317:6630773,6468007 -) -g1,6318:7263065,6468007 -g1,6318:8211503,6468007 -g1,6318:11056815,6468007 -g1,6318:11689107,6468007 -g1,6318:14850564,6468007 -g1,6318:16115147,6468007 -g1,6318:16747439,6468007 -g1,6318:19276605,6468007 -g1,6318:19908897,6468007 -g1,6318:20541189,6468007 -g1,6318:21489627,6468007 -g1,6318:24334938,6468007 -g1,6318:24967230,6468007 -h1,6318:26864104,6468007:0,0,0 -k1,6318:32583029,6468007:5718925 -g1,6318:32583029,6468007 -) -(1,6319:6630773,7134185:25952256,404226,76021 -h1,6319:6630773,7134185:0,0,0 -k1,6319:6630773,7134185:0 -h1,6319:8527647,7134185:0,0,0 -k1,6319:32583029,7134185:24055382 -g1,6319:32583029,7134185 -) -(1,6329:6630773,7865899:25952256,410518,9436 -(1,6321:6630773,7865899:0,0,0 -g1,6321:6630773,7865899 -g1,6321:6630773,7865899 -g1,6321:6303093,7865899 -(1,6321:6303093,7865899:0,0,0 -) -g1,6321:6630773,7865899 -) -g1,6329:7579210,7865899 -g1,6329:9159939,7865899 -g1,6329:10108376,7865899 -h1,6329:10424522,7865899:0,0,0 -k1,6329:32583030,7865899:22158508 -g1,6329:32583030,7865899 -) -(1,6329:6630773,8532077:25952256,410518,31456 -h1,6329:6630773,8532077:0,0,0 -g1,6329:7579210,8532077 -g1,6329:7895356,8532077 -g1,6329:8527648,8532077 -g1,6329:9159940,8532077 -g1,6329:10424523,8532077 -h1,6329:11689106,8532077:0,0,0 -k1,6329:32583030,8532077:20893924 -g1,6329:32583030,8532077 -) -(1,6329:6630773,9198255:25952256,410518,31456 -h1,6329:6630773,9198255:0,0,0 -g1,6329:7579210,9198255 -g1,6329:7895356,9198255 -g1,6329:8527648,9198255 -g1,6329:9159940,9198255 -g1,6329:10424523,9198255 -h1,6329:11689106,9198255:0,0,0 -k1,6329:32583030,9198255:20893924 -g1,6329:32583030,9198255 -) -(1,6329:6630773,9864433:25952256,410518,31456 -h1,6329:6630773,9864433:0,0,0 -g1,6329:7579210,9864433 -g1,6329:7895356,9864433 -g1,6329:8527648,9864433 -g1,6329:9159940,9864433 -g1,6329:10424523,9864433 -h1,6329:11689106,9864433:0,0,0 -k1,6329:32583030,9864433:20893924 -g1,6329:32583030,9864433 -) -(1,6329:6630773,10530611:25952256,410518,31456 -h1,6329:6630773,10530611:0,0,0 -g1,6329:7579210,10530611 -g1,6329:7895356,10530611 -g1,6329:8527648,10530611 -g1,6329:9159940,10530611 -g1,6329:10424523,10530611 -h1,6329:11689106,10530611:0,0,0 -k1,6329:32583030,10530611:20893924 -g1,6329:32583030,10530611 -) -(1,6329:6630773,11196789:25952256,410518,31456 -h1,6329:6630773,11196789:0,0,0 -g1,6329:7579210,11196789 -g1,6329:7895356,11196789 -g1,6329:8527648,11196789 -g1,6329:9159940,11196789 -g1,6329:10424523,11196789 -h1,6329:11689106,11196789:0,0,0 -k1,6329:32583030,11196789:20893924 -g1,6329:32583030,11196789 -) -(1,6329:6630773,11862967:25952256,410518,31456 -h1,6329:6630773,11862967:0,0,0 -g1,6329:7579210,11862967 -g1,6329:7895356,11862967 -g1,6329:8527648,11862967 -g1,6329:9159940,11862967 -g1,6329:10424523,11862967 -h1,6329:11689106,11862967:0,0,0 -k1,6329:32583030,11862967:20893924 -g1,6329:32583030,11862967 -) -] -) -g1,6330:32583029,11894423 -g1,6330:6630773,11894423 -g1,6330:6630773,11894423 -g1,6330:32583029,11894423 -g1,6330:32583029,11894423 -) -h1,6330:6630773,12091031:0,0,0 -(1,6334:6630773,13264554:25952256,505283,126483 -h1,6333:6630773,13264554:983040,0,0 -k1,6333:8818833,13264554:251471 -k1,6333:10174586,13264554:251471 -k1,6333:11451040,13264554:251471 -k1,6333:13557834,13264554:251470 -k1,6333:15093811,13264554:251471 -k1,6333:16364367,13264554:251471 -k1,6333:19824481,13264554:251471 -k1,6333:22249126,13264554:251471 -k1,6333:23492157,13264554:251471 -k1,6333:24762713,13264554:251471 -k1,6333:26667656,13264554:251470 -k1,6333:27535165,13264554:251471 -k1,6333:28805721,13264554:251471 -k1,6333:30711976,13264554:251471 -k1,6333:32583029,13264554:0 -) -(1,6334:6630773,14106042:25952256,513147,134348 -g1,6333:7902171,14106042 -g1,6333:9120485,14106042 -g1,6333:10874883,14106042 -g1,6333:12265557,14106042 -g1,6333:15396211,14106042 -g1,6333:16254732,14106042 -g1,6333:17473046,14106042 -g1,6333:19962103,14106042 -g1,6333:22940059,14106042 -k1,6334:32583029,14106042:7726042 -g1,6334:32583029,14106042 -) -(1,6336:6630773,14947530:25952256,513147,134348 -h1,6335:6630773,14947530:983040,0,0 -k1,6335:11642713,14947530:196355 -k1,6335:14864866,14947530:196356 -k1,6335:16165503,14947530:196355 -k1,6335:17109625,14947530:196356 -k1,6335:19687558,14947530:196355 -k1,6335:20693283,14947530:196355 -k1,6335:21908724,14947530:196356 -k1,6335:22900686,14947530:196355 -k1,6335:24288486,14947530:196355 -k1,6335:26690129,14947530:196356 -k1,6335:27537912,14947530:196355 -(1,6335:27537912,14947530:0,414482,115847 -r1,6335:28599601,14947530:1061689,530329,115847 -k1,6335:27537912,14947530:-1061689 -) -(1,6335:27537912,14947530:1061689,414482,115847 -k1,6335:27537912,14947530:3277 -h1,6335:28596324,14947530:0,411205,112570 -) -k1,6335:28969627,14947530:196356 -k1,6335:31837885,14947530:196355 -k1,6335:32583029,14947530:0 -) -(1,6336:6630773,15789018:25952256,505283,126483 -g1,6335:7481430,15789018 -g1,6335:10144157,15789018 -g1,6335:11362471,15789018 -g1,6335:14553419,15789018 -g1,6335:16607972,15789018 -g1,6335:18457398,15789018 -g1,6335:21578222,15789018 -g1,6335:23360145,15789018 -g1,6335:24578459,15789018 -g1,6335:27019019,15789018 -g1,6335:28374958,15789018 -k1,6336:32583029,15789018:1751782 -g1,6336:32583029,15789018 -) -v1,6338:6630773,16787232:0,393216,0 -(1,6346:6630773,18475055:25952256,2081039,196608 -g1,6346:6630773,18475055 -g1,6346:6630773,18475055 -g1,6346:6434165,18475055 -(1,6346:6434165,18475055:0,2081039,196608 -r1,6346:32779637,18475055:26345472,2277647,196608 -k1,6346:6434165,18475055:-26345472 -) -(1,6346:6434165,18475055:26345472,2081039,196608 -[1,6346:6630773,18475055:25952256,1884431,0 -(1,6340:6630773,17001142:25952256,410518,107478 -(1,6339:6630773,17001142:0,0,0 -g1,6339:6630773,17001142 -g1,6339:6630773,17001142 -g1,6339:6303093,17001142 -(1,6339:6303093,17001142:0,0,0 -) -g1,6339:6630773,17001142 -) -g1,6340:7263065,17001142 -g1,6340:8211503,17001142 -g1,6340:11056815,17001142 -g1,6340:11689107,17001142 -g1,6340:14850564,17001142 -g1,6340:16115147,17001142 -g1,6340:16747439,17001142 -g1,6340:20541188,17001142 -g1,6340:21489626,17001142 -g1,6340:24018792,17001142 -g1,6340:24651084,17001142 -g1,6340:25915667,17001142 -g1,6340:26547959,17001142 -g1,6340:27180251,17001142 -h1,6340:27812543,17001142:0,0,0 -k1,6340:32583029,17001142:4770486 -g1,6340:32583029,17001142 -) -(1,6341:6630773,17667320:25952256,404226,76021 -h1,6341:6630773,17667320:0,0,0 -k1,6341:6630773,17667320:0 -h1,6341:8527647,17667320:0,0,0 -k1,6341:32583029,17667320:24055382 -g1,6341:32583029,17667320 -) -(1,6345:6630773,18399034:25952256,404226,76021 -(1,6343:6630773,18399034:0,0,0 -g1,6343:6630773,18399034 -g1,6343:6630773,18399034 -g1,6343:6303093,18399034 -(1,6343:6303093,18399034:0,0,0 -) -g1,6343:6630773,18399034 -) -g1,6345:7579210,18399034 -g1,6345:7895356,18399034 -g1,6345:9159939,18399034 -g1,6345:11056813,18399034 -g1,6345:12637542,18399034 -g1,6345:14218271,18399034 -g1,6345:15799000,18399034 -g1,6345:17379729,18399034 -g1,6345:18960458,18399034 -h1,6345:19908895,18399034:0,0,0 -k1,6345:32583029,18399034:12674134 -g1,6345:32583029,18399034 -) -] -) -g1,6346:32583029,18475055 -g1,6346:6630773,18475055 -g1,6346:6630773,18475055 -g1,6346:32583029,18475055 -g1,6346:32583029,18475055 -) -h1,6346:6630773,18671663:0,0,0 -(1,6350:6630773,19845186:25952256,513147,134348 -h1,6349:6630773,19845186:983040,0,0 -k1,6349:8590791,19845186:202998 -k1,6349:11076407,19845186:202997 -k1,6349:11965567,19845186:202998 -k1,6349:15297909,19845186:202998 -k1,6349:16116944,19845186:202997 -k1,6349:18598629,19845186:202998 -h1,6349:20141347,19845186:0,0,0 -k1,6349:20344345,19845186:202998 -k1,6349:21356712,19845186:202997 -k1,6349:23057863,19845186:202998 -h1,6349:24253240,19845186:0,0,0 -k1,6349:24629908,19845186:202998 -k1,6349:26530943,19845186:202997 -k1,6349:29245936,19845186:202998 -k1,6349:32583029,19845186:0 -) -(1,6350:6630773,20686674:25952256,513147,126483 -k1,6349:9879896,20686674:223326 -k1,6349:11094783,20686674:223327 -k1,6349:14275749,20686674:223326 -k1,6349:16007714,20686674:223326 -k1,6349:17323526,20686674:223327 -k1,6349:19727235,20686674:223326 -k1,6349:20698327,20686674:223326 -k1,6349:24108669,20686674:223326 -k1,6349:25256054,20686674:223327 -k1,6349:26498465,20686674:223326 -k1,6349:28423761,20686674:223326 -k1,6349:30427046,20686674:223327 -k1,6349:32117068,20686674:223326 -k1,6349:32583029,20686674:0 -) -(1,6350:6630773,21528162:25952256,513147,126483 -k1,6349:8578150,21528162:154967 -k1,6349:11758914,21528162:154967 -k1,6349:12905442,21528162:154968 -k1,6349:15347616,21528162:154967 -k1,6349:16568854,21528162:154967 -k1,6349:17409983,21528162:154967 -k1,6349:18772780,21528162:154968 -k1,6349:19613909,21528162:154967 -k1,6349:23105969,21528162:154967 -k1,6349:26460404,21528162:154967 -k1,6349:27995560,21528162:154968 -k1,6349:29142087,21528162:154967 -k1,6349:31140582,21528162:154967 -k1,6349:32583029,21528162:0 -) -(1,6350:6630773,22369650:25952256,505283,126483 -g1,6349:7849087,22369650 -g1,6349:11353297,22369650 -(1,6349:11353297,22369650:0,459977,115847 -r1,6349:13118410,22369650:1765113,575824,115847 -k1,6349:11353297,22369650:-1765113 -) -(1,6349:11353297,22369650:1765113,459977,115847 -k1,6349:11353297,22369650:3277 -h1,6349:13115133,22369650:0,411205,112570 -) -g1,6349:13317639,22369650 -k1,6350:32583029,22369650:17346496 -g1,6350:32583029,22369650 -) -v1,6352:6630773,23367863:0,393216,0 -(1,6360:6630773,25049394:25952256,2074747,196608 -g1,6360:6630773,25049394 -g1,6360:6630773,25049394 -g1,6360:6434165,25049394 -(1,6360:6434165,25049394:0,2074747,196608 -r1,6360:32779637,25049394:26345472,2271355,196608 -k1,6360:6434165,25049394:-26345472 -) -(1,6360:6434165,25049394:26345472,2074747,196608 -[1,6360:6630773,25049394:25952256,1878139,0 -(1,6354:6630773,23575481:25952256,404226,107478 -(1,6353:6630773,23575481:0,0,0 -g1,6353:6630773,23575481 -g1,6353:6630773,23575481 -g1,6353:6303093,23575481 -(1,6353:6303093,23575481:0,0,0 -) -g1,6353:6630773,23575481 -) -g1,6354:7263065,23575481 -g1,6354:8211503,23575481 -g1,6354:12637543,23575481 -g1,6354:13269835,23575481 -h1,6354:13585981,23575481:0,0,0 -k1,6354:32583029,23575481:18997048 -g1,6354:32583029,23575481 -) -(1,6355:6630773,24241659:25952256,404226,76021 -h1,6355:6630773,24241659:0,0,0 -k1,6355:6630773,24241659:0 -h1,6355:8527647,24241659:0,0,0 -k1,6355:32583029,24241659:24055382 -g1,6355:32583029,24241659 -) -(1,6359:6630773,24973373:25952256,404226,76021 -(1,6357:6630773,24973373:0,0,0 -g1,6357:6630773,24973373 -g1,6357:6630773,24973373 -g1,6357:6303093,24973373 -(1,6357:6303093,24973373:0,0,0 -) -g1,6357:6630773,24973373 -) -g1,6359:7579210,24973373 -g1,6359:7895356,24973373 -g1,6359:9159939,24973373 -g1,6359:11056813,24973373 -g1,6359:12637542,24973373 -g1,6359:14218271,24973373 -g1,6359:15799000,24973373 -g1,6359:17379729,24973373 -g1,6359:18960458,24973373 -h1,6359:19908895,24973373:0,0,0 -k1,6359:32583029,24973373:12674134 -g1,6359:32583029,24973373 -) -] -) -g1,6360:32583029,25049394 -g1,6360:6630773,25049394 -g1,6360:6630773,25049394 -g1,6360:32583029,25049394 -g1,6360:32583029,25049394 -) -h1,6360:6630773,25246002:0,0,0 -v1,6364:6630773,26751561:0,393216,0 -(1,6422:6630773,45116945:25952256,18758600,589824 -g1,6422:6630773,45116945 -(1,6422:6630773,45116945:25952256,18758600,589824 -(1,6422:6630773,45706769:25952256,19348424,0 -[1,6422:6630773,45706769:25952256,19348424,0 -(1,6422:6630773,45706769:25952256,19322210,0 -r1,6422:6656987,45706769:26214,19322210,0 -[1,6422:6656987,45706769:25899828,19322210,0 -(1,6422:6656987,45116945:25899828,18142562,0 -[1,6422:7246811,45116945:24720180,18142562,0 -(1,6365:7246811,28136268:24720180,1161885,196608 -(1,6364:7246811,28136268:0,1161885,196608 -r1,6422:8794447,28136268:1547636,1358493,196608 -k1,6364:7246811,28136268:-1547636 -) -(1,6364:7246811,28136268:1547636,1161885,196608 -) -k1,6364:9002436,28136268:207989 -k1,6364:12000294,28136268:207990 -(1,6364:12000294,28136268:0,452978,115847 -r1,6422:14820543,28136268:2820249,568825,115847 -k1,6364:12000294,28136268:-2820249 -) -(1,6364:12000294,28136268:2820249,452978,115847 -k1,6364:12000294,28136268:3277 -h1,6364:14817266,28136268:0,411205,112570 -) -k1,6364:15028532,28136268:207989 -k1,6364:16340804,28136268:207990 -k1,6364:17296559,28136268:207989 -k1,6364:19091176,28136268:207990 -k1,6364:19950593,28136268:207989 -k1,6364:21251067,28136268:207989 -k1,6364:22145219,28136268:207990 -k1,6364:23372293,28136268:207989 -k1,6364:25362862,28136268:207990 -k1,6364:26230143,28136268:207989 -k1,6364:29216860,28136268:207990 -k1,6364:31435494,28136268:207989 -k1,6364:31966991,28136268:0 -) -(1,6365:7246811,28977756:24720180,513147,134348 -k1,6364:10377029,28977756:145053 -k1,6364:12010405,28977756:145053 -k1,6364:12686955,28977756:145053 -k1,6364:13187868,28977756:145053 -k1,6364:15962881,28977756:145053 -k1,6364:17345908,28977756:145052 -k1,6364:18150253,28977756:145053 -k1,6364:21309307,28977756:145053 -k1,6364:23522676,28977756:145053 -k1,6364:24859174,28977756:145053 -k1,6364:27988737,28977756:145053 -k1,6364:30166717,28977756:145053 -k1,6365:31966991,28977756:0 -) -(1,6365:7246811,29819244:24720180,513147,126483 -k1,6364:8463019,29819244:180084 -k1,6364:10951280,29819244:180083 -k1,6364:11744126,29819244:180084 -k1,6364:13375831,29819244:180083 -k1,6364:15533792,29819244:180084 -k1,6364:17463031,29819244:180083 -k1,6364:20257346,29819244:180084 -k1,6364:22005051,29819244:180084 -k1,6364:22540994,29819244:180083 -k1,6364:23714604,29819244:180084 -k1,6364:24553979,29819244:180083 -k1,6364:27215911,29819244:180084 -k1,6364:29270324,29819244:180083 -k1,6364:31219225,29819244:180084 -k1,6364:31966991,29819244:0 -) -(1,6365:7246811,30660732:24720180,505283,134348 -k1,6364:9296316,30660732:181729 -k1,6364:11922539,30660732:181730 -k1,6364:14172584,30660732:181729 -k1,6364:15545759,30660732:181730 -k1,6364:18885668,30660732:181729 -k1,6364:20264085,30660732:181730 -k1,6364:23518142,30660732:181729 -k1,6364:25905159,30660732:181730 -k1,6364:26738316,30660732:181729 -(1,6364:26738316,30660732:0,414482,115847 -r1,6422:29910276,30660732:3171960,530329,115847 -k1,6364:26738316,30660732:-3171960 -) -(1,6364:26738316,30660732:3171960,414482,115847 -k1,6364:26738316,30660732:3277 -h1,6364:29906999,30660732:0,411205,112570 -) -k1,6364:30092006,30660732:181730 -k1,6365:31966991,30660732:0 -) -(1,6365:7246811,31502220:24720180,513147,134348 -k1,6364:8553037,31502220:207843 -k1,6364:9116739,31502220:207842 -k1,6364:12134766,31502220:207843 -k1,6364:13290260,31502220:207843 -k1,6364:14517188,31502220:207843 -k1,6364:16111116,31502220:207842 -k1,6364:16978251,31502220:207843 -k1,6364:18205179,31502220:207843 -k1,6364:20423666,31502220:207842 -k1,6364:22311852,31502220:207843 -k1,6364:23711140,31502220:207843 -k1,6364:24707381,31502220:207843 -k1,6364:28957484,31502220:207842 -k1,6364:30432793,31502220:207843 -k1,6364:31966991,31502220:0 -) -(1,6365:7246811,32343708:24720180,505283,134348 -k1,6364:8648677,32343708:210421 -k1,6364:11745959,32343708:210421 -k1,6364:13982098,32343708:210421 -k1,6364:15477024,32343708:210420 -k1,6364:16706530,32343708:210421 -k1,6364:18451149,32343708:210421 -k1,6364:19277608,32343708:210421 -k1,6364:20507114,32343708:210421 -k1,6364:22876291,32343708:210421 -k1,6364:24078271,32343708:210420 -k1,6364:25619073,32343708:210421 -k1,6364:27988250,32343708:210421 -k1,6364:31315563,32343708:210421 -k1,6364:31966991,32343708:0 -) -(1,6365:7246811,33185196:24720180,505283,115847 -g1,6364:8465125,33185196 -g1,6364:10732670,33185196 -g1,6364:11547937,33185196 -(1,6364:11547937,33185196:0,414482,115847 -r1,6422:14719897,33185196:3171960,530329,115847 -k1,6364:11547937,33185196:-3171960 -) -(1,6364:11547937,33185196:3171960,414482,115847 -k1,6364:11547937,33185196:3277 -h1,6364:14716620,33185196:0,411205,112570 -) -k1,6365:31966991,33185196:17073424 -g1,6365:31966991,33185196 -) -(1,6367:7246811,34026684:24720180,513147,134348 -h1,6366:7246811,34026684:983040,0,0 -k1,6366:9395655,34026684:212255 -k1,6366:10914042,34026684:212254 -k1,6366:12218782,34026684:212255 -(1,6366:12218782,34026684:0,452978,115847 -r1,6422:15039031,34026684:2820249,568825,115847 -k1,6366:12218782,34026684:-2820249 -) -(1,6366:12218782,34026684:2820249,452978,115847 -k1,6366:12218782,34026684:3277 -h1,6366:15035754,34026684:0,411205,112570 -) -k1,6366:15251285,34026684:212254 -k1,6366:16114968,34026684:212255 -k1,6366:18256602,34026684:212254 -k1,6366:19487942,34026684:212255 -k1,6366:21659722,34026684:212254 -(1,6366:21659722,34026684:0,452978,115847 -r1,6422:23776547,34026684:2116825,568825,115847 -k1,6366:21659722,34026684:-2116825 -) -(1,6366:21659722,34026684:2116825,452978,115847 -k1,6366:21659722,34026684:3277 -h1,6366:23773270,34026684:0,411205,112570 -) -k1,6366:23988802,34026684:212255 -k1,6366:27563053,34026684:212254 -k1,6366:30403957,34026684:212255 -k1,6366:31966991,34026684:0 -) -(1,6367:7246811,34868172:24720180,513147,134348 -k1,6366:8707406,34868172:189197 -k1,6366:9579489,34868172:189198 -k1,6366:11418883,34868172:189197 -k1,6366:14835073,34868172:189197 -k1,6366:17228246,34868172:189198 -k1,6366:20820072,34868172:189197 -k1,6366:22113551,34868172:189197 -k1,6366:23050514,34868172:189197 -k1,6366:25444999,34868172:189198 -k1,6366:26285624,34868172:189197 -k1,6366:27493906,34868172:189197 -k1,6366:30378600,34868172:189198 -k1,6366:31219225,34868172:189197 -k1,6366:31966991,34868172:0 -) -(1,6367:7246811,35709660:24720180,505283,126483 -k1,6367:31966991,35709660:22174762 -g1,6367:31966991,35709660 -) -v1,6369:7246811,36900126:0,393216,0 -(1,6383:7246811,42578725:24720180,6071815,196608 -g1,6383:7246811,42578725 -g1,6383:7246811,42578725 -g1,6383:7050203,42578725 -(1,6383:7050203,42578725:0,6071815,196608 -r1,6422:32163599,42578725:25113396,6268423,196608 -k1,6383:7050203,42578725:-25113396 -) -(1,6383:7050203,42578725:25113396,6071815,196608 -[1,6383:7246811,42578725:24720180,5875207,0 -(1,6371:7246811,37107744:24720180,404226,76021 -(1,6370:7246811,37107744:0,0,0 -g1,6370:7246811,37107744 -g1,6370:7246811,37107744 -g1,6370:6919131,37107744 -(1,6370:6919131,37107744:0,0,0 -) -g1,6370:7246811,37107744 -) -k1,6371:7246811,37107744:0 -h1,6371:12305142,37107744:0,0,0 -k1,6371:31966990,37107744:19661848 -g1,6371:31966990,37107744 -) -(1,6372:7246811,37773922:24720180,404226,101187 -h1,6372:7246811,37773922:0,0,0 -g1,6372:9459831,37773922 -g1,6372:10408269,37773922 -g1,6372:14834310,37773922 -g1,6372:16098894,37773922 -g1,6372:18311914,37773922 -g1,6372:19892643,37773922 -g1,6372:20524935,37773922 -g1,6372:21789518,37773922 -g1,6372:22737955,37773922 -g1,6372:23370247,37773922 -h1,6372:24002539,37773922:0,0,0 -k1,6372:31966991,37773922:7964452 -g1,6372:31966991,37773922 -) -(1,6373:7246811,38440100:24720180,404226,76021 -h1,6373:7246811,38440100:0,0,0 -k1,6373:7246811,38440100:0 -h1,6373:10724413,38440100:0,0,0 -k1,6373:31966991,38440100:21242578 -g1,6373:31966991,38440100 -) -(1,6382:7246811,39171814:24720180,410518,9436 -(1,6375:7246811,39171814:0,0,0 -g1,6375:7246811,39171814 -g1,6375:7246811,39171814 -g1,6375:6919131,39171814 -(1,6375:6919131,39171814:0,0,0 -) -g1,6375:7246811,39171814 -) -g1,6382:8195248,39171814 -g1,6382:9775977,39171814 -g1,6382:10724414,39171814 -h1,6382:11040560,39171814:0,0,0 -k1,6382:31966992,39171814:20926432 -g1,6382:31966992,39171814 -) -(1,6382:7246811,39837992:24720180,410518,76021 -h1,6382:7246811,39837992:0,0,0 -g1,6382:8195248,39837992 -g1,6382:8511394,39837992 -g1,6382:9143686,39837992 -g1,6382:9775978,39837992 -g1,6382:11040561,39837992 -g1,6382:12937435,39837992 -g1,6382:14834309,39837992 -g1,6382:16415038,39837992 -g1,6382:17995767,39837992 -h1,6382:19576495,39837992:0,0,0 -k1,6382:31966991,39837992:12390496 -g1,6382:31966991,39837992 -) -(1,6382:7246811,40504170:24720180,410518,76021 -h1,6382:7246811,40504170:0,0,0 -g1,6382:8195248,40504170 -g1,6382:8511394,40504170 -g1,6382:9143686,40504170 -g1,6382:9775978,40504170 -g1,6382:11040561,40504170 -g1,6382:12937435,40504170 -g1,6382:14518164,40504170 -g1,6382:16098893,40504170 -g1,6382:17679622,40504170 -h1,6382:18944205,40504170:0,0,0 -k1,6382:31966991,40504170:13022786 -g1,6382:31966991,40504170 -) -(1,6382:7246811,41170348:24720180,410518,76021 -h1,6382:7246811,41170348:0,0,0 -g1,6382:8195248,41170348 -g1,6382:8511394,41170348 -g1,6382:9143686,41170348 -g1,6382:9775978,41170348 -g1,6382:11040561,41170348 -g1,6382:12937435,41170348 -g1,6382:14834309,41170348 -g1,6382:16415038,41170348 -g1,6382:17047330,41170348 -h1,6382:18311913,41170348:0,0,0 -k1,6382:31966991,41170348:13655078 -g1,6382:31966991,41170348 -) -(1,6382:7246811,41836526:24720180,410518,76021 -h1,6382:7246811,41836526:0,0,0 -g1,6382:8195248,41836526 -g1,6382:8511394,41836526 -g1,6382:9143686,41836526 -g1,6382:9775978,41836526 -g1,6382:11040561,41836526 -g1,6382:12937435,41836526 -g1,6382:14518164,41836526 -g1,6382:16415038,41836526 -g1,6382:18311912,41836526 -h1,6382:19892640,41836526:0,0,0 -k1,6382:31966991,41836526:12074351 -g1,6382:31966991,41836526 -) -(1,6382:7246811,42502704:24720180,410518,76021 -h1,6382:7246811,42502704:0,0,0 -g1,6382:8195248,42502704 -g1,6382:8511394,42502704 -g1,6382:9143686,42502704 -g1,6382:9775978,42502704 -g1,6382:11040561,42502704 -g1,6382:12937435,42502704 -g1,6382:14518164,42502704 -g1,6382:16415038,42502704 -g1,6382:18311912,42502704 -h1,6382:19892640,42502704:0,0,0 -k1,6382:31966991,42502704:12074351 -g1,6382:31966991,42502704 -) -] -) -g1,6383:31966991,42578725 -g1,6383:7246811,42578725 -g1,6383:7246811,42578725 -g1,6383:31966991,42578725 -g1,6383:31966991,42578725 -) -h1,6383:7246811,42775333:0,0,0 -(1,6387:7246811,44141109:24720180,513147,126483 -h1,6386:7246811,44141109:983040,0,0 -k1,6386:9355155,44141109:171755 -k1,6386:11487747,44141109:171755 -k1,6386:12678586,44141109:171754 -k1,6386:15545837,44141109:171755 -k1,6386:17002098,44141109:171755 -k1,6386:18042205,44141109:171755 -k1,6386:19346421,44141109:171754 -k1,6386:21455420,44141109:171755 -k1,6386:21983035,44141109:171755 -k1,6386:24850286,44141109:171755 -k1,6386:26306546,44141109:171754 -k1,6386:28819247,44141109:171755 -k1,6386:29346862,44141109:171755 -k1,6386:31966991,44141109:0 -) -(1,6387:7246811,44982597:24720180,513147,134348 -g1,6386:9423917,44982597 -g1,6386:10282438,44982597 -g1,6386:12494933,44982597 -k1,6387:31966990,44982597:18899928 -g1,6387:31966990,44982597 -) -] -) -] -r1,6422:32583029,45706769:26214,19322210,0 -) -] -) -) -g1,6422:32583029,45116945 -) -] -(1,6422:32583029,45706769:0,0,0 -g1,6422:32583029,45706769 -) -) -] -(1,6422:6630773,47279633:25952256,0,0 -h1,6422:6630773,47279633:25952256,0,0 -) -] -h1,6422:4262630,4025873:0,0,0 -] -!25633 +] +h1,6428:4262630,4025873:0,0,0 +] +!22850 }120 -Input:903:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:904:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:905:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:906:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:907:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:908:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:909:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:910:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!692 +Input:899:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:900:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:901:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:902:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:903:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:904:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:905:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:906:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!740 {121 -[1,6449:4262630,47279633:28320399,43253760,0 -(1,6449:4262630,4025873:0,0,0 -[1,6449:-473657,4025873:25952256,0,0 -(1,6449:-473657,-710414:25952256,0,0 -h1,6449:-473657,-710414:0,0,0 -(1,6449:-473657,-710414:0,0,0 -(1,6449:-473657,-710414:0,0,0 -g1,6449:-473657,-710414 -(1,6449:-473657,-710414:65781,0,65781 -g1,6449:-407876,-710414 -[1,6449:-407876,-644633:0,0,0 +[1,6438:4262630,47279633:28320399,43253760,0 +(1,6438:4262630,4025873:0,0,0 +[1,6438:-473657,4025873:25952256,0,0 +(1,6438:-473657,-710414:25952256,0,0 +h1,6438:-473657,-710414:0,0,0 +(1,6438:-473657,-710414:0,0,0 +(1,6438:-473657,-710414:0,0,0 +g1,6438:-473657,-710414 +(1,6438:-473657,-710414:65781,0,65781 +g1,6438:-407876,-710414 +[1,6438:-407876,-644633:0,0,0 ] ) -k1,6449:-473657,-710414:-65781 +k1,6438:-473657,-710414:-65781 ) ) -k1,6449:25478599,-710414:25952256 -g1,6449:25478599,-710414 +k1,6438:25478599,-710414:25952256 +g1,6438:25478599,-710414 ) ] ) -[1,6449:6630773,47279633:25952256,43253760,0 -[1,6449:6630773,4812305:25952256,786432,0 -(1,6449:6630773,4812305:25952256,505283,134348 -(1,6449:6630773,4812305:25952256,505283,134348 -g1,6449:3078558,4812305 -[1,6449:3078558,4812305:0,0,0 -(1,6449:3078558,2439708:0,1703936,0 -k1,6449:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6449:2537886,2439708:1179648,16384,0 +[1,6438:6630773,47279633:25952256,43253760,0 +[1,6438:6630773,4812305:25952256,786432,0 +(1,6438:6630773,4812305:25952256,505283,134348 +(1,6438:6630773,4812305:25952256,505283,134348 +g1,6438:3078558,4812305 +[1,6438:3078558,4812305:0,0,0 +(1,6438:3078558,2439708:0,1703936,0 +k1,6438:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6438:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6449:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6438:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6449:3078558,4812305:0,0,0 -(1,6449:3078558,2439708:0,1703936,0 -g1,6449:29030814,2439708 -g1,6449:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6449:36151628,1915420:16384,1179648,0 +[1,6438:3078558,4812305:0,0,0 +(1,6438:3078558,2439708:0,1703936,0 +g1,6438:29030814,2439708 +g1,6438:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6438:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6449:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6438:37855564,2439708:1179648,16384,0 ) ) -k1,6449:3078556,2439708:-34777008 +k1,6438:3078556,2439708:-34777008 ) ] -[1,6449:3078558,4812305:0,0,0 -(1,6449:3078558,49800853:0,16384,2228224 -k1,6449:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6449:2537886,49800853:1179648,16384,0 +[1,6438:3078558,4812305:0,0,0 +(1,6438:3078558,49800853:0,16384,2228224 +k1,6438:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6438:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6449:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6438:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) -] -[1,6449:3078558,4812305:0,0,0 -(1,6449:3078558,49800853:0,16384,2228224 -g1,6449:29030814,49800853 -g1,6449:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6449:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6449:37855564,49800853:1179648,16384,0 -) +] +[1,6438:3078558,4812305:0,0,0 +(1,6438:3078558,49800853:0,16384,2228224 +g1,6438:29030814,49800853 +g1,6438:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6438:36151628,51504789:16384,1179648,0 ) -k1,6449:3078556,49800853:-34777008 -) -] -g1,6449:6630773,4812305 -k1,6449:18752969,4812305:10926819 -g1,6449:20139710,4812305 -g1,6449:20788516,4812305 -g1,6449:24102671,4812305 -g1,6449:28605649,4812305 -g1,6449:30015328,4812305 -) -) -] -[1,6449:6630773,45706769:25952256,40108032,0 -(1,6449:6630773,45706769:25952256,40108032,0 -(1,6449:6630773,45706769:0,0,0 -g1,6449:6630773,45706769 -) -[1,6449:6630773,45706769:25952256,40108032,0 -v1,6422:6630773,6254097:0,393216,0 -(1,6422:6630773,19780530:25952256,13919649,616038 -g1,6422:6630773,19780530 -(1,6422:6630773,19780530:25952256,13919649,616038 -(1,6422:6630773,20396568:25952256,14535687,0 -[1,6422:6630773,20396568:25952256,14535687,0 -(1,6422:6630773,20370354:25952256,14509473,0 -r1,6422:6656987,20370354:26214,14509473,0 -[1,6422:6656987,20370354:25899828,14509473,0 -(1,6422:6656987,19780530:25899828,13329825,0 -[1,6422:7246811,19780530:24720180,13329825,0 -v1,6389:7246811,6843921:0,393216,0 -(1,6395:7246811,8466208:24720180,2015503,196608 -g1,6395:7246811,8466208 -g1,6395:7246811,8466208 -g1,6395:7050203,8466208 -(1,6395:7050203,8466208:0,2015503,196608 -r1,6422:32163599,8466208:25113396,2212111,196608 -k1,6395:7050203,8466208:-25113396 -) -(1,6395:7050203,8466208:25113396,2015503,196608 -[1,6395:7246811,8466208:24720180,1818895,0 -(1,6391:7246811,7057831:24720180,410518,82312 -(1,6390:7246811,7057831:0,0,0 -g1,6390:7246811,7057831 -g1,6390:7246811,7057831 -g1,6390:6919131,7057831 -(1,6390:6919131,7057831:0,0,0 -) -g1,6390:7246811,7057831 -) -g1,6391:11040559,7057831 -g1,6391:11988997,7057831 -g1,6391:15782746,7057831 -g1,6391:17679620,7057831 -g1,6391:18311912,7057831 -g1,6391:20524932,7057831 -h1,6391:20841078,7057831:0,0,0 -k1,6391:31966991,7057831:11125913 -g1,6391:31966991,7057831 -) -(1,6392:7246811,7724009:24720180,404226,82312 -h1,6392:7246811,7724009:0,0,0 -g1,6392:7562957,7724009 -g1,6392:7879103,7724009 -g1,6392:8195249,7724009 -g1,6392:8511395,7724009 -g1,6392:8827541,7724009 -g1,6392:9143687,7724009 -g1,6392:9459833,7724009 -g1,6392:12621291,7724009 -g1,6392:14518165,7724009 -g1,6392:15150457,7724009 -g1,6392:17679623,7724009 -g1,6392:17995769,7724009 -g1,6392:19892643,7724009 -g1,6392:21789517,7724009 -g1,6392:22421809,7724009 -h1,6392:24634829,7724009:0,0,0 -k1,6392:31966991,7724009:7332162 -g1,6392:31966991,7724009 -) -(1,6393:7246811,8390187:24720180,404226,76021 -h1,6393:7246811,8390187:0,0,0 -g1,6393:7562957,8390187 -g1,6393:7879103,8390187 -g1,6393:8195249,8390187 -g1,6393:8511395,8390187 -h1,6393:8827541,8390187:0,0,0 -k1,6393:31966991,8390187:23139450 -g1,6393:31966991,8390187 -) -] -) -g1,6395:31966991,8466208 -g1,6395:7246811,8466208 -g1,6395:7246811,8466208 -g1,6395:31966991,8466208 -g1,6395:31966991,8466208 -) -h1,6395:7246811,8662816:0,0,0 -(1,6399:7246811,10028592:24720180,513147,126483 -h1,6398:7246811,10028592:983040,0,0 -k1,6398:9406154,10028592:222754 -k1,6398:11013028,10028592:222754 -k1,6398:12328267,10028592:222754 -(1,6398:12328267,10028592:0,452978,115847 -r1,6422:15148516,10028592:2820249,568825,115847 -k1,6398:12328267,10028592:-2820249 -) -(1,6398:12328267,10028592:2820249,452978,115847 -k1,6398:12328267,10028592:3277 -h1,6398:15145239,10028592:0,411205,112570 -) -k1,6398:15371270,10028592:222754 -k1,6398:16245452,10028592:222754 -k1,6398:18231780,10028592:222754 -k1,6398:19552261,10028592:222753 -k1,6398:22470511,10028592:222754 -k1,6398:23344693,10028592:222754 -k1,6398:25019069,10028592:222754 -k1,6398:27865229,10028592:222754 -k1,6398:30065860,10028592:222754 -k1,6398:30947906,10028592:222754 -k1,6398:31966991,10028592:0 -) -(1,6399:7246811,10870080:24720180,505283,7863 -k1,6399:31966991,10870080:23552984 -g1,6399:31966991,10870080 -) -v1,6401:7246811,12060546:0,393216,0 -(1,6420:7246811,19059634:24720180,7392304,196608 -g1,6420:7246811,19059634 -g1,6420:7246811,19059634 -g1,6420:7050203,19059634 -(1,6420:7050203,19059634:0,7392304,196608 -r1,6422:32163599,19059634:25113396,7588912,196608 -k1,6420:7050203,19059634:-25113396 -) -(1,6420:7050203,19059634:25113396,7392304,196608 -[1,6420:7246811,19059634:24720180,7195696,0 -(1,6403:7246811,12268164:24720180,404226,101187 -(1,6402:7246811,12268164:0,0,0 -g1,6402:7246811,12268164 -g1,6402:7246811,12268164 -g1,6402:6919131,12268164 -(1,6402:6919131,12268164:0,0,0 -) -g1,6402:7246811,12268164 -) -g1,6403:9459831,12268164 -g1,6403:10408269,12268164 -g1,6403:13253581,12268164 -g1,6403:13885873,12268164 -k1,6403:13885873,12268164:0 -h1,6403:16098893,12268164:0,0,0 -k1,6403:31966991,12268164:15868098 -g1,6403:31966991,12268164 -) -(1,6404:7246811,12934342:24720180,404226,82312 -h1,6404:7246811,12934342:0,0,0 -g1,6404:7562957,12934342 -g1,6404:7879103,12934342 -g1,6404:8195249,12934342 -g1,6404:8511395,12934342 -g1,6404:8827541,12934342 -g1,6404:9143687,12934342 -g1,6404:9459833,12934342 -g1,6404:9775979,12934342 -g1,6404:10092125,12934342 -g1,6404:10408271,12934342 -g1,6404:10724417,12934342 -g1,6404:11040563,12934342 -g1,6404:11356709,12934342 -g1,6404:11672855,12934342 -g1,6404:11989001,12934342 -g1,6404:12305147,12934342 -g1,6404:12621293,12934342 -g1,6404:13885876,12934342 -g1,6404:14518168,12934342 -k1,6404:14518168,12934342:0 -h1,6404:18311916,12934342:0,0,0 -k1,6404:31966991,12934342:13655075 -g1,6404:31966991,12934342 -) -(1,6405:7246811,13600520:24720180,404226,82312 -h1,6405:7246811,13600520:0,0,0 -g1,6405:7562957,13600520 -g1,6405:7879103,13600520 -g1,6405:8195249,13600520 -g1,6405:8511395,13600520 -g1,6405:8827541,13600520 -g1,6405:9143687,13600520 -g1,6405:9459833,13600520 -g1,6405:9775979,13600520 -g1,6405:10092125,13600520 -g1,6405:10408271,13600520 -g1,6405:10724417,13600520 -g1,6405:11040563,13600520 -g1,6405:11356709,13600520 -g1,6405:11672855,13600520 -g1,6405:11989001,13600520 -g1,6405:12305147,13600520 -g1,6405:12621293,13600520 -g1,6405:15782750,13600520 -g1,6405:16415042,13600520 -g1,6405:18628063,13600520 -g1,6405:19260355,13600520 -g1,6405:20208793,13600520 -g1,6405:21157230,13600520 -g1,6405:21789522,13600520 -k1,6405:21789522,13600520:0 -h1,6405:22737960,13600520:0,0,0 -k1,6405:31966991,13600520:9229031 -g1,6405:31966991,13600520 -) -(1,6406:7246811,14266698:24720180,404226,76021 -h1,6406:7246811,14266698:0,0,0 -g1,6406:7562957,14266698 -g1,6406:7879103,14266698 -g1,6406:8195249,14266698 -g1,6406:8511395,14266698 -g1,6406:8827541,14266698 -g1,6406:9143687,14266698 -g1,6406:9459833,14266698 -g1,6406:9775979,14266698 -g1,6406:10092125,14266698 -g1,6406:10408271,14266698 -g1,6406:10724417,14266698 -g1,6406:11040563,14266698 -g1,6406:11356709,14266698 -g1,6406:11672855,14266698 -g1,6406:11989001,14266698 -g1,6406:12305147,14266698 -g1,6406:12621293,14266698 -g1,6406:14518167,14266698 -g1,6406:15150459,14266698 -h1,6406:16731188,14266698:0,0,0 -k1,6406:31966991,14266698:15235803 -g1,6406:31966991,14266698 -) -(1,6407:7246811,14932876:24720180,404226,76021 -h1,6407:7246811,14932876:0,0,0 -k1,6407:7246811,14932876:0 -h1,6407:11356704,14932876:0,0,0 -k1,6407:31966992,14932876:20610288 -g1,6407:31966992,14932876 -) -(1,6411:7246811,15664590:24720180,404226,76021 -(1,6409:7246811,15664590:0,0,0 -g1,6409:7246811,15664590 -g1,6409:7246811,15664590 -g1,6409:6919131,15664590 -(1,6409:6919131,15664590:0,0,0 -) -g1,6409:7246811,15664590 -) -g1,6411:8195248,15664590 -g1,6411:9459831,15664590 -h1,6411:11988996,15664590:0,0,0 -k1,6411:31966992,15664590:19977996 -g1,6411:31966992,15664590 -) -(1,6413:7246811,16986128:24720180,404226,6290 -(1,6412:7246811,16986128:0,0,0 -g1,6412:7246811,16986128 -g1,6412:7246811,16986128 -g1,6412:6919131,16986128 -(1,6412:6919131,16986128:0,0,0 -) -g1,6412:7246811,16986128 -) -h1,6413:9143685,16986128:0,0,0 -k1,6413:31966991,16986128:22823306 -g1,6413:31966991,16986128 -) -(1,6419:7246811,17717842:24720180,404226,82312 -(1,6415:7246811,17717842:0,0,0 -g1,6415:7246811,17717842 -g1,6415:7246811,17717842 -g1,6415:6919131,17717842 -(1,6415:6919131,17717842:0,0,0 -) -g1,6415:7246811,17717842 -) -g1,6419:8195248,17717842 -g1,6419:8511394,17717842 -g1,6419:8827540,17717842 -g1,6419:9143686,17717842 -g1,6419:9459832,17717842 -g1,6419:9775978,17717842 -g1,6419:10092124,17717842 -g1,6419:10408270,17717842 -g1,6419:10724416,17717842 -g1,6419:11040562,17717842 -g1,6419:11356708,17717842 -g1,6419:11672854,17717842 -g1,6419:13253583,17717842 -g1,6419:13569729,17717842 -g1,6419:13885875,17717842 -g1,6419:14202021,17717842 -g1,6419:14518167,17717842 -g1,6419:14834313,17717842 -g1,6419:15150459,17717842 -g1,6419:16731188,17717842 -g1,6419:17047334,17717842 -g1,6419:17363480,17717842 -g1,6419:17679626,17717842 -g1,6419:17995772,17717842 -g1,6419:19576501,17717842 -g1,6419:19892647,17717842 -g1,6419:20208793,17717842 -g1,6419:20524939,17717842 -g1,6419:20841085,17717842 -g1,6419:21157231,17717842 -g1,6419:21473377,17717842 -g1,6419:23054106,17717842 -g1,6419:23370252,17717842 -g1,6419:23686398,17717842 -g1,6419:24002544,17717842 -g1,6419:24318690,17717842 -g1,6419:24634836,17717842 -k1,6419:24634836,17717842:0 -h1,6419:25899419,17717842:0,0,0 -k1,6419:31966991,17717842:6067572 -g1,6419:31966991,17717842 -) -(1,6419:7246811,18384020:24720180,388497,9436 -h1,6419:7246811,18384020:0,0,0 -g1,6419:8195248,18384020 -g1,6419:9775977,18384020 -g1,6419:13253580,18384020 -g1,6419:16731183,18384020 -g1,6419:19576494,18384020 -g1,6419:23054097,18384020 -h1,6419:25899408,18384020:0,0,0 -k1,6419:31966991,18384020:6067583 -g1,6419:31966991,18384020 -) -(1,6419:7246811,19050198:24720180,404226,9436 -h1,6419:7246811,19050198:0,0,0 -g1,6419:8195248,19050198 -g1,6419:9143685,19050198 -g1,6419:9459831,19050198 -g1,6419:9775977,19050198 -g1,6419:10092123,19050198 -g1,6419:13253580,19050198 -g1,6419:13569726,19050198 -g1,6419:16731183,19050198 -g1,6419:19576494,19050198 -g1,6419:19892640,19050198 -g1,6419:23054097,19050198 -g1,6419:23370243,19050198 -h1,6419:25899408,19050198:0,0,0 -k1,6419:31966991,19050198:6067583 -g1,6419:31966991,19050198 -) -] -) -g1,6420:31966991,19059634 -g1,6420:7246811,19059634 -g1,6420:7246811,19059634 -g1,6420:31966991,19059634 -g1,6420:31966991,19059634 -) -h1,6420:7246811,19256242:0,0,0 -] -) -] -r1,6422:32583029,20370354:26214,14509473,0 -) -] -) -) -g1,6422:32583029,19780530 -) -h1,6422:6630773,20396568:0,0,0 -v1,6425:6630773,21762344:0,393216,0 -(1,6426:6630773,25604867:25952256,4235739,616038 -g1,6426:6630773,25604867 -(1,6426:6630773,25604867:25952256,4235739,616038 -(1,6426:6630773,26220905:25952256,4851777,0 -[1,6426:6630773,26220905:25952256,4851777,0 -(1,6426:6630773,26194691:25952256,4799349,0 -r1,6426:6656987,26194691:26214,4799349,0 -[1,6426:6656987,26194691:25899828,4799349,0 -(1,6426:6656987,25604867:25899828,3619701,0 -[1,6426:7246811,25604867:24720180,3619701,0 -(1,6426:7246811,23072540:24720180,1087374,134348 -k1,6425:8649716,23072540:193202 -k1,6425:9660808,23072540:193203 -k1,6425:12932236,23072540:193202 -k1,6425:13741477,23072540:193203 -k1,6425:16213366,23072540:193202 -h1,6425:17582413,23072540:0,0,0 -k1,6425:17775615,23072540:193202 -k1,6425:18778188,23072540:193203 -k1,6425:20469543,23072540:193202 -h1,6425:21266461,23072540:0,0,0 -k1,6425:21633333,23072540:193202 -k1,6425:23381705,23072540:193203 -(1,6425:23381705,23072540:0,459977,115847 -r1,6426:26905377,23072540:3523672,575824,115847 -k1,6425:23381705,23072540:-3523672 -) -(1,6425:23381705,23072540:3523672,459977,115847 -k1,6425:23381705,23072540:3277 -h1,6425:26902100,23072540:0,411205,112570 -) -k1,6425:27098579,23072540:193202 -k1,6425:27823279,23072540:193203 -k1,6425:30399370,23072540:193202 -k1,6425:31966991,23072540:0 -) -(1,6426:7246811,23914028:24720180,513147,126483 -k1,6425:8967604,23914028:165624 -(1,6425:8967604,23914028:0,452978,115847 -r1,6426:10381005,23914028:1413401,568825,115847 -k1,6425:8967604,23914028:-1413401 -) -(1,6425:8967604,23914028:1413401,452978,115847 -k1,6425:8967604,23914028:3277 -h1,6425:10377728,23914028:0,411205,112570 -) -k1,6425:10720298,23914028:165623 -k1,6425:12781223,23914028:165624 -k1,6425:15642343,23914028:165624 -(1,6425:15642343,23914028:0,452978,115847 -r1,6426:20221151,23914028:4578808,568825,115847 -k1,6425:15642343,23914028:-4578808 -) -(1,6425:15642343,23914028:4578808,452978,115847 -k1,6425:15642343,23914028:3277 -h1,6425:20217874,23914028:0,411205,112570 -) -k1,6425:20386774,23914028:165623 -k1,6425:22933976,23914028:165624 -k1,6425:24954923,23914028:165623 -k1,6425:25771975,23914028:165624 -k1,6425:26956684,23914028:165624 -k1,6425:28511670,23914028:165623 -k1,6425:30553590,23914028:165624 -(1,6425:30553590,23914028:0,414482,115847 -r1,6426:31966991,23914028:1413401,530329,115847 -k1,6425:30553590,23914028:-1413401 -) -(1,6425:30553590,23914028:1413401,414482,115847 -k1,6425:30553590,23914028:3277 -h1,6425:31963714,23914028:0,411205,112570 -) -k1,6425:31966991,23914028:0 -) -(1,6426:7246811,24755516:24720180,505283,126483 -k1,6425:10265773,24755516:260552 -k1,6425:11212488,24755516:260553 -k1,6425:14134457,24755516:260552 -k1,6425:15784373,24755516:260553 -k1,6425:16660963,24755516:260552 -k1,6425:17510029,24755516:260553 -k1,6425:18967268,24755516:260552 -k1,6425:20404847,24755516:260552 -k1,6425:21196897,24755516:260553 -k1,6425:22108877,24755516:260552 -k1,6425:24393182,24755516:260553 -k1,6425:25672819,24755516:260552 -k1,6425:27671387,24755516:260553 -k1,6425:29123384,24755516:260552 -k1,6425:31966991,24755516:0 -) -(1,6426:7246811,25597004:24720180,513147,7863 -g1,6425:10395815,25597004 -g1,6425:11542695,25597004 -g1,6425:13193546,25597004 -k1,6426:31966991,25597004:16216886 -g1,6426:31966991,25597004 -) -] -) -] -r1,6426:32583029,26194691:26214,4799349,0 -) -] -) -) -g1,6426:32583029,25604867 -) -h1,6426:6630773,26220905:0,0,0 -(1,6428:6630773,28312165:25952256,564462,147783 -(1,6428:6630773,28312165:2450326,534184,12975 -g1,6428:6630773,28312165 -g1,6428:9081099,28312165 -) -g1,6428:12662511,28312165 -g1,6428:16328989,28312165 -g1,6428:17279130,28312165 -g1,6428:20622646,28312165 -g1,6428:22189874,28312165 -k1,6428:32583029,28312165:8076195 -g1,6428:32583029,28312165 -) -(1,6430:6630773,29546869:25952256,513147,126483 -k1,6429:7539069,29546869:280461 -k1,6429:8838615,29546869:280461 -k1,6429:10503196,29546869:280461 -k1,6429:13445073,29546869:280460 -k1,6429:14593886,29546869:280461 -k1,6429:15966832,29546869:280461 -(1,6429:15966832,29546869:0,452978,115847 -r1,6429:18435369,29546869:2468537,568825,115847 -k1,6429:15966832,29546869:-2468537 -) -(1,6429:15966832,29546869:2468537,452978,115847 -k1,6429:15966832,29546869:3277 -h1,6429:18432092,29546869:0,411205,112570 -) -k1,6429:18715830,29546869:280461 -k1,6429:20187736,29546869:280461 -(1,6429:20187736,29546869:0,452978,115847 -r1,6429:22304561,29546869:2116825,568825,115847 -k1,6429:20187736,29546869:-2116825 -) -(1,6429:20187736,29546869:2116825,452978,115847 -k1,6429:20187736,29546869:3277 -h1,6429:22301284,29546869:0,411205,112570 -) -k1,6429:22585022,29546869:280461 -k1,6429:23516911,29546869:280461 -k1,6429:26585273,29546869:280460 -k1,6429:27884819,29546869:280461 -k1,6429:29903295,29546869:280461 -k1,6429:31131407,29546869:280461 -k1,6429:32583029,29546869:0 -) -(1,6430:6630773,30388357:25952256,513147,115847 -k1,6429:9260012,30388357:246350 -k1,6429:10165655,30388357:246351 -k1,6429:12499982,30388357:246350 -(1,6429:12499982,30388357:0,452978,115847 -r1,6429:15320231,30388357:2820249,568825,115847 -k1,6429:12499982,30388357:-2820249 -) -(1,6429:12499982,30388357:2820249,452978,115847 -k1,6429:12499982,30388357:3277 -h1,6429:15316954,30388357:0,411205,112570 -) -k1,6429:15740252,30388357:246351 -k1,6429:16614437,30388357:246350 -k1,6429:17275584,30388357:246304 -k1,6429:18541019,30388357:246350 -k1,6429:22462629,30388357:246351 -k1,6429:23368271,30388357:246350 -k1,6429:23970482,30388357:246351 -k1,6429:26477824,30388357:246350 -k1,6429:28258373,30388357:246351 -k1,6429:29696168,30388357:246350 -k1,6429:32583029,30388357:0 -) -(1,6430:6630773,31229845:25952256,513147,134348 -k1,6429:8246286,31229845:228116 -k1,6429:10359872,31229845:228115 -k1,6429:10943848,31229845:228116 -k1,6429:13867459,31229845:228115 -k1,6429:14627072,31229845:228116 -k1,6429:17226936,31229845:228116 -k1,6429:18446611,31229845:228115 -k1,6429:20542503,31229845:228116 -k1,6429:23555243,31229845:228116 -k1,6429:24980045,31229845:228115 -k1,6429:28280489,31229845:228116 -k1,6429:30713891,31229845:228115 -k1,6429:31593435,31229845:228116 -k1,6430:32583029,31229845:0 -) -(1,6430:6630773,32071333:25952256,513147,134348 -k1,6429:9350953,32071333:216049 -(1,6429:9350953,32071333:0,414482,115847 -r1,6429:11467778,32071333:2116825,530329,115847 -k1,6429:9350953,32071333:-2116825 -) -(1,6429:9350953,32071333:2116825,414482,115847 -k1,6429:9350953,32071333:3277 -h1,6429:11464501,32071333:0,411205,112570 -) -k1,6429:11683827,32071333:216049 -k1,6429:15474211,32071333:216050 -k1,6429:17077657,32071333:216049 -k1,6429:19179177,32071333:216049 -k1,6429:21649665,32071333:216049 -k1,6429:22884799,32071333:216049 -k1,6429:25796344,32071333:216049 -k1,6429:27144856,32071333:216050 -k1,6429:28108671,32071333:216049 -k1,6429:30870138,32071333:216049 -k1,6429:31563944,32071333:216049 -k1,6429:32583029,32071333:0 -) -(1,6430:6630773,32912821:25952256,513147,134348 -k1,6429:9523345,32912821:197076 -k1,6429:10251918,32912821:197076 -k1,6429:12820742,32912821:197076 -k1,6429:13669246,32912821:197076 -k1,6429:17059236,32912821:197076 -k1,6429:18964180,32912821:197076 -k1,6429:20029607,32912821:197075 -k1,6429:21273948,32912821:197076 -k1,6429:22755530,32912821:197076 -k1,6429:23820958,32912821:197076 -k1,6429:26429104,32912821:197076 -k1,6429:27435550,32912821:197076 -k1,6429:28651711,32912821:197076 -k1,6429:30154920,32912821:197076 -k1,6429:32583029,32912821:0 -) -(1,6430:6630773,33754309:25952256,513147,134348 -k1,6429:8043830,33754309:221612 -k1,6429:8731404,33754309:221613 -k1,6429:9972101,33754309:221612 -k1,6429:12889210,33754309:221613 -k1,6429:13642319,33754309:221612 -k1,6429:16235679,33754309:221612 -k1,6429:17108720,33754309:221613 -k1,6429:20523246,33754309:221612 -k1,6429:23631719,33754309:221612 -k1,6429:25240729,33754309:221613 -k1,6429:26481426,33754309:221612 -k1,6429:28944370,33754309:221613 -k1,6429:31594091,33754309:221612 -k1,6430:32583029,33754309:0 -) -(1,6430:6630773,34595797:25952256,513147,134348 -k1,6429:8211229,34595797:244832 -k1,6429:9560342,34595797:244831 -k1,6429:11280389,34595797:244832 -k1,6429:13276997,34595797:244831 -k1,6429:17370758,34595797:244832 -k1,6429:18807034,34595797:244831 -k1,6429:23276972,34595797:244832 -k1,6429:25172000,34595797:244831 -k1,6429:28175242,34595797:244832 -k1,6429:29047908,34595797:244831 -k1,6429:30311825,34595797:244832 -k1,6429:31923737,34595797:244831 -k1,6429:32583029,34595797:0 -) -(1,6430:6630773,35437285:25952256,513147,126483 -k1,6429:8782572,35437285:171956 -k1,6429:10348479,35437285:171956 -k1,6429:12170633,35437285:171957 -k1,6429:13785036,35437285:171956 -k1,6429:15129431,35437285:171956 -k1,6429:19150316,35437285:171956 -k1,6429:19780370,35437285:171957 -k1,6429:20483823,35437285:171956 -k1,6429:23285739,35437285:171956 -k1,6429:24649140,35437285:171956 -k1,6429:26798318,35437285:171957 -k1,6429:27621702,35437285:171956 -k1,6429:29557232,35437285:171956 -k1,6429:32583029,35437285:0 -) -(1,6430:6630773,36278773:25952256,505283,134348 -g1,6429:8217399,36278773 -g1,6429:11087875,36278773 -g1,6429:13871844,36278773 -g1,6429:14683835,36278773 -k1,6430:32583029,36278773:16235235 -g1,6430:32583029,36278773 -) -v1,6432:6630773,37644549:0,393216,0 -(1,6433:6630773,40762366:25952256,3511033,616038 -g1,6433:6630773,40762366 -(1,6433:6630773,40762366:25952256,3511033,616038 -(1,6433:6630773,41378404:25952256,4127071,0 -[1,6433:6630773,41378404:25952256,4127071,0 -(1,6433:6630773,41352190:25952256,4074643,0 -r1,6433:6656987,41352190:26214,4074643,0 -[1,6433:6656987,41352190:25899828,4074643,0 -(1,6433:6656987,40762366:25899828,2894995,0 -[1,6433:7246811,40762366:24720180,2894995,0 -(1,6433:7246811,38952907:24720180,1085536,298548 -(1,6432:7246811,38952907:0,1085536,298548 -r1,6433:8753226,38952907:1506415,1384084,298548 -k1,6432:7246811,38952907:-1506415 -) -(1,6432:7246811,38952907:1506415,1085536,298548 -) -k1,6432:8922415,38952907:169189 -k1,6432:9579163,38952907:169160 -k1,6432:12995661,38952907:169189 -k1,6432:13974220,38952907:169189 -k1,6432:15162494,38952907:169189 -k1,6432:18027180,38952907:169190 -k1,6432:18847797,38952907:169189 -k1,6432:19764752,38952907:169189 -k1,6432:22305689,38952907:169189 -k1,6432:23006376,38952907:169190 -k1,6432:24460071,38952907:169189 -k1,6432:25648345,38952907:169189 -k1,6432:27795411,38952907:169189 -k1,6432:28647486,38952907:169190 -k1,6432:30834529,38952907:169189 -k1,6432:31966991,38952907:0 -) -(1,6433:7246811,39794395:24720180,513147,134348 -k1,6432:9551763,39794395:175687 -k1,6432:10475216,39794395:175687 -k1,6432:12856190,39794395:175687 -k1,6432:13718038,39794395:175686 -k1,6432:14249585,39794395:175687 -k1,6432:17600491,39794395:175687 -k1,6432:20848506,39794395:175687 -k1,6432:21675621,39794395:175687 -k1,6432:22870393,39794395:175687 -k1,6432:24352212,39794395:175686 -k1,6432:26656508,39794395:175687 -k1,6432:30112927,39794395:175687 -k1,6432:30947906,39794395:175687 -k1,6432:31966991,39794395:0 -) -(1,6433:7246811,40635883:24720180,513147,126483 -g1,6432:9817788,40635883 -k1,6433:31966990,40635883:19280036 -g1,6433:31966990,40635883 -) -] -) -] -r1,6433:32583029,41352190:26214,4074643,0 -) -] -) -) -g1,6433:32583029,40762366 -) -h1,6433:6630773,41378404:0,0,0 -v1,6436:6630773,43093158:0,393216,0 -(1,6445:6630773,45447159:25952256,2747217,196608 -g1,6445:6630773,45447159 -g1,6445:6630773,45447159 -g1,6445:6434165,45447159 -(1,6445:6434165,45447159:0,2747217,196608 -r1,6445:32779637,45447159:26345472,2943825,196608 -k1,6445:6434165,45447159:-26345472 -) -(1,6445:6434165,45447159:26345472,2747217,196608 -[1,6445:6630773,45447159:25952256,2550609,0 -(1,6438:6630773,43307068:25952256,410518,82312 -(1,6437:6630773,43307068:0,0,0 -g1,6437:6630773,43307068 -g1,6437:6630773,43307068 -g1,6437:6303093,43307068 -(1,6437:6303093,43307068:0,0,0 -) -g1,6437:6630773,43307068 -) -g1,6438:9476084,43307068 -g1,6438:10424522,43307068 -g1,6438:16431291,43307068 -g1,6438:18012020,43307068 -g1,6438:18644312,43307068 -h1,6438:19592749,43307068:0,0,0 -k1,6438:32583029,43307068:12990280 -g1,6438:32583029,43307068 -) -(1,6439:6630773,43973246:25952256,404226,101187 -h1,6439:6630773,43973246:0,0,0 -g1,6439:7263065,43973246 -g1,6439:8211503,43973246 -g1,6439:13269834,43973246 -g1,6439:15482854,43973246 -g1,6439:16115146,43973246 -g1,6439:17063584,43973246 -g1,6439:18328167,43973246 -g1,6439:18960459,43973246 -h1,6439:20541187,43973246:0,0,0 -k1,6439:32583029,43973246:12041842 -g1,6439:32583029,43973246 -) -(1,6440:6630773,44639424:25952256,404226,76021 -h1,6440:6630773,44639424:0,0,0 -k1,6440:6630773,44639424:0 -h1,6440:8527647,44639424:0,0,0 -k1,6440:32583029,44639424:24055382 -g1,6440:32583029,44639424 -) -(1,6444:6630773,45371138:25952256,404226,76021 -(1,6442:6630773,45371138:0,0,0 -g1,6442:6630773,45371138 -g1,6442:6630773,45371138 -g1,6442:6303093,45371138 -(1,6442:6303093,45371138:0,0,0 -) -g1,6442:6630773,45371138 -) -g1,6444:7579210,45371138 -g1,6444:7895356,45371138 -g1,6444:9159939,45371138 -g1,6444:11372959,45371138 -g1,6444:13269833,45371138 -g1,6444:15166707,45371138 -g1,6444:17063581,45371138 -g1,6444:18328164,45371138 -g1,6444:20225038,45371138 -h1,6444:21173475,45371138:0,0,0 -k1,6444:32583029,45371138:11409554 -g1,6444:32583029,45371138 -) -] -) -g1,6445:32583029,45447159 -g1,6445:6630773,45447159 -g1,6445:6630773,45447159 -g1,6445:32583029,45447159 -g1,6445:32583029,45447159 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) -h1,6445:6630773,45643767:0,0,0 ] -(1,6449:32583029,45706769:0,0,0 -g1,6449:32583029,45706769 ) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6438:37855564,49800853:1179648,16384,0 ) -] -(1,6449:6630773,47279633:25952256,0,0 -h1,6449:6630773,47279633:25952256,0,0 ) -] -h1,6449:4262630,4025873:0,0,0 -] -!25851 +k1,6438:3078556,49800853:-34777008 +) +] +g1,6438:6630773,4812305 +k1,6438:18771974,4812305:10945824 +g1,6438:20158715,4812305 +g1,6438:20807521,4812305 +g1,6438:24121676,4812305 +g1,6438:28605649,4812305 +g1,6438:30015328,4812305 +) +) +] +[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,6428:6630773,6254097:0,393216,0 +(1,6428:6630773,29053467:25952256,23192586,616038 +g1,6428:6630773,29053467 +(1,6428:6630773,29053467:25952256,23192586,616038 +(1,6428:6630773,29669505:25952256,23808624,0 +[1,6428:6630773,29669505:25952256,23808624,0 +(1,6428:6630773,29643291:25952256,23782410,0 +r1,6428:6656987,29643291:26214,23782410,0 +[1,6428:6656987,29643291:25899828,23782410,0 +(1,6428:6656987,29053467:25899828,22602762,0 +[1,6428:7246811,29053467:24720180,22602762,0 +v1,6375:7246811,6843921:0,393216,0 +(1,6389:7246811,12522520:24720180,6071815,196608 +g1,6389:7246811,12522520 +g1,6389:7246811,12522520 +g1,6389:7050203,12522520 +(1,6389:7050203,12522520:0,6071815,196608 +r1,6428:32163599,12522520:25113396,6268423,196608 +k1,6389:7050203,12522520:-25113396 +) +(1,6389:7050203,12522520:25113396,6071815,196608 +[1,6389:7246811,12522520:24720180,5875207,0 +(1,6377:7246811,7051539:24720180,404226,76021 +(1,6376:7246811,7051539:0,0,0 +g1,6376:7246811,7051539 +g1,6376:7246811,7051539 +g1,6376:6919131,7051539 +(1,6376:6919131,7051539:0,0,0 +) +g1,6376:7246811,7051539 +) +k1,6377:7246811,7051539:0 +h1,6377:12305142,7051539:0,0,0 +k1,6377:31966990,7051539:19661848 +g1,6377:31966990,7051539 +) +(1,6378:7246811,7717717:24720180,404226,101187 +h1,6378:7246811,7717717:0,0,0 +g1,6378:9459831,7717717 +g1,6378:10408269,7717717 +g1,6378:14834310,7717717 +g1,6378:16098894,7717717 +g1,6378:18311914,7717717 +g1,6378:19892643,7717717 +g1,6378:20524935,7717717 +g1,6378:21789518,7717717 +g1,6378:22737955,7717717 +g1,6378:23370247,7717717 +h1,6378:24002539,7717717:0,0,0 +k1,6378:31966991,7717717:7964452 +g1,6378:31966991,7717717 +) +(1,6379:7246811,8383895:24720180,404226,76021 +h1,6379:7246811,8383895:0,0,0 +k1,6379:7246811,8383895:0 +h1,6379:10724413,8383895:0,0,0 +k1,6379:31966991,8383895:21242578 +g1,6379:31966991,8383895 +) +(1,6388:7246811,9115609:24720180,410518,9436 +(1,6381:7246811,9115609:0,0,0 +g1,6381:7246811,9115609 +g1,6381:7246811,9115609 +g1,6381:6919131,9115609 +(1,6381:6919131,9115609:0,0,0 +) +g1,6381:7246811,9115609 +) +g1,6388:8195248,9115609 +g1,6388:9775977,9115609 +g1,6388:10724414,9115609 +h1,6388:11040560,9115609:0,0,0 +k1,6388:31966992,9115609:20926432 +g1,6388:31966992,9115609 +) +(1,6388:7246811,9781787:24720180,410518,76021 +h1,6388:7246811,9781787:0,0,0 +g1,6388:8195248,9781787 +g1,6388:8511394,9781787 +g1,6388:9143686,9781787 +g1,6388:9775978,9781787 +g1,6388:11040561,9781787 +g1,6388:12937435,9781787 +g1,6388:14834309,9781787 +g1,6388:16415038,9781787 +g1,6388:17995767,9781787 +h1,6388:19576495,9781787:0,0,0 +k1,6388:31966991,9781787:12390496 +g1,6388:31966991,9781787 +) +(1,6388:7246811,10447965:24720180,410518,76021 +h1,6388:7246811,10447965:0,0,0 +g1,6388:8195248,10447965 +g1,6388:8511394,10447965 +g1,6388:9143686,10447965 +g1,6388:9775978,10447965 +g1,6388:11040561,10447965 +g1,6388:12937435,10447965 +g1,6388:14518164,10447965 +g1,6388:16098893,10447965 +g1,6388:17679622,10447965 +h1,6388:18944205,10447965:0,0,0 +k1,6388:31966991,10447965:13022786 +g1,6388:31966991,10447965 +) +(1,6388:7246811,11114143:24720180,410518,76021 +h1,6388:7246811,11114143:0,0,0 +g1,6388:8195248,11114143 +g1,6388:8511394,11114143 +g1,6388:9143686,11114143 +g1,6388:9775978,11114143 +g1,6388:11040561,11114143 +g1,6388:12937435,11114143 +g1,6388:14834309,11114143 +g1,6388:16415038,11114143 +g1,6388:17047330,11114143 +h1,6388:18311913,11114143:0,0,0 +k1,6388:31966991,11114143:13655078 +g1,6388:31966991,11114143 +) +(1,6388:7246811,11780321:24720180,410518,76021 +h1,6388:7246811,11780321:0,0,0 +g1,6388:8195248,11780321 +g1,6388:8511394,11780321 +g1,6388:9143686,11780321 +g1,6388:9775978,11780321 +g1,6388:11040561,11780321 +g1,6388:12937435,11780321 +g1,6388:14518164,11780321 +g1,6388:16415038,11780321 +g1,6388:18311912,11780321 +h1,6388:19892640,11780321:0,0,0 +k1,6388:31966991,11780321:12074351 +g1,6388:31966991,11780321 +) +(1,6388:7246811,12446499:24720180,410518,76021 +h1,6388:7246811,12446499:0,0,0 +g1,6388:8195248,12446499 +g1,6388:8511394,12446499 +g1,6388:9143686,12446499 +g1,6388:9775978,12446499 +g1,6388:11040561,12446499 +g1,6388:12937435,12446499 +g1,6388:14518164,12446499 +g1,6388:16415038,12446499 +g1,6388:18311912,12446499 +h1,6388:19892640,12446499:0,0,0 +k1,6388:31966991,12446499:12074351 +g1,6388:31966991,12446499 +) +] +) +g1,6389:31966991,12522520 +g1,6389:7246811,12522520 +g1,6389:7246811,12522520 +g1,6389:31966991,12522520 +g1,6389:31966991,12522520 +) +h1,6389:7246811,12719128:0,0,0 +(1,6393:7246811,14084904:24720180,513147,126483 +h1,6392:7246811,14084904:983040,0,0 +k1,6392:9355155,14084904:171755 +k1,6392:11487747,14084904:171755 +k1,6392:12678586,14084904:171754 +k1,6392:15545837,14084904:171755 +k1,6392:17002098,14084904:171755 +k1,6392:18042205,14084904:171755 +k1,6392:19346421,14084904:171754 +k1,6392:21455420,14084904:171755 +k1,6392:21983035,14084904:171755 +k1,6392:24850286,14084904:171755 +k1,6392:26306546,14084904:171754 +k1,6392:28819247,14084904:171755 +k1,6392:29346862,14084904:171755 +k1,6392:31966991,14084904:0 +) +(1,6393:7246811,14926392:24720180,513147,134348 +g1,6392:9423917,14926392 +g1,6392:10282438,14926392 +g1,6392:12494933,14926392 +k1,6393:31966990,14926392:18899928 +g1,6393:31966990,14926392 +) +v1,6395:7246811,16116858:0,393216,0 +(1,6401:7246811,17739145:24720180,2015503,196608 +g1,6401:7246811,17739145 +g1,6401:7246811,17739145 +g1,6401:7050203,17739145 +(1,6401:7050203,17739145:0,2015503,196608 +r1,6428:32163599,17739145:25113396,2212111,196608 +k1,6401:7050203,17739145:-25113396 +) +(1,6401:7050203,17739145:25113396,2015503,196608 +[1,6401:7246811,17739145:24720180,1818895,0 +(1,6397:7246811,16330768:24720180,410518,82312 +(1,6396:7246811,16330768:0,0,0 +g1,6396:7246811,16330768 +g1,6396:7246811,16330768 +g1,6396:6919131,16330768 +(1,6396:6919131,16330768:0,0,0 +) +g1,6396:7246811,16330768 +) +g1,6397:11040559,16330768 +g1,6397:11988997,16330768 +g1,6397:15782746,16330768 +g1,6397:17679620,16330768 +g1,6397:18311912,16330768 +g1,6397:20524932,16330768 +h1,6397:20841078,16330768:0,0,0 +k1,6397:31966991,16330768:11125913 +g1,6397:31966991,16330768 +) +(1,6398:7246811,16996946:24720180,404226,82312 +h1,6398:7246811,16996946:0,0,0 +g1,6398:7562957,16996946 +g1,6398:7879103,16996946 +g1,6398:8195249,16996946 +g1,6398:8511395,16996946 +g1,6398:8827541,16996946 +g1,6398:9143687,16996946 +g1,6398:9459833,16996946 +g1,6398:12621291,16996946 +g1,6398:14518165,16996946 +g1,6398:15150457,16996946 +g1,6398:17679623,16996946 +g1,6398:17995769,16996946 +g1,6398:19892643,16996946 +g1,6398:21789517,16996946 +g1,6398:22421809,16996946 +h1,6398:24634829,16996946:0,0,0 +k1,6398:31966991,16996946:7332162 +g1,6398:31966991,16996946 +) +(1,6399:7246811,17663124:24720180,404226,76021 +h1,6399:7246811,17663124:0,0,0 +g1,6399:7562957,17663124 +g1,6399:7879103,17663124 +g1,6399:8195249,17663124 +g1,6399:8511395,17663124 +h1,6399:8827541,17663124:0,0,0 +k1,6399:31966991,17663124:23139450 +g1,6399:31966991,17663124 +) +] +) +g1,6401:31966991,17739145 +g1,6401:7246811,17739145 +g1,6401:7246811,17739145 +g1,6401:31966991,17739145 +g1,6401:31966991,17739145 +) +h1,6401:7246811,17935753:0,0,0 +(1,6405:7246811,19301529:24720180,513147,126483 +h1,6404:7246811,19301529:983040,0,0 +k1,6404:9406154,19301529:222754 +k1,6404:11013028,19301529:222754 +k1,6404:12328267,19301529:222754 +(1,6404:12328267,19301529:0,452978,115847 +r1,6428:15148516,19301529:2820249,568825,115847 +k1,6404:12328267,19301529:-2820249 +) +(1,6404:12328267,19301529:2820249,452978,115847 +k1,6404:12328267,19301529:3277 +h1,6404:15145239,19301529:0,411205,112570 +) +k1,6404:15371270,19301529:222754 +k1,6404:16245452,19301529:222754 +k1,6404:18231780,19301529:222754 +k1,6404:19552261,19301529:222753 +k1,6404:22470511,19301529:222754 +k1,6404:23344693,19301529:222754 +k1,6404:25019069,19301529:222754 +k1,6404:27865229,19301529:222754 +k1,6404:30065860,19301529:222754 +k1,6404:30947906,19301529:222754 +k1,6404:31966991,19301529:0 +) +(1,6405:7246811,20143017:24720180,505283,7863 +k1,6405:31966991,20143017:23552984 +g1,6405:31966991,20143017 +) +v1,6407:7246811,21333483:0,393216,0 +(1,6426:7246811,28332571:24720180,7392304,196608 +g1,6426:7246811,28332571 +g1,6426:7246811,28332571 +g1,6426:7050203,28332571 +(1,6426:7050203,28332571:0,7392304,196608 +r1,6428:32163599,28332571:25113396,7588912,196608 +k1,6426:7050203,28332571:-25113396 +) +(1,6426:7050203,28332571:25113396,7392304,196608 +[1,6426:7246811,28332571:24720180,7195696,0 +(1,6409:7246811,21541101:24720180,404226,101187 +(1,6408:7246811,21541101:0,0,0 +g1,6408:7246811,21541101 +g1,6408:7246811,21541101 +g1,6408:6919131,21541101 +(1,6408:6919131,21541101:0,0,0 +) +g1,6408:7246811,21541101 +) +g1,6409:9459831,21541101 +g1,6409:10408269,21541101 +g1,6409:13253581,21541101 +g1,6409:13885873,21541101 +k1,6409:13885873,21541101:0 +h1,6409:16098893,21541101:0,0,0 +k1,6409:31966991,21541101:15868098 +g1,6409:31966991,21541101 +) +(1,6410:7246811,22207279:24720180,404226,82312 +h1,6410:7246811,22207279:0,0,0 +g1,6410:7562957,22207279 +g1,6410:7879103,22207279 +g1,6410:8195249,22207279 +g1,6410:8511395,22207279 +g1,6410:8827541,22207279 +g1,6410:9143687,22207279 +g1,6410:9459833,22207279 +g1,6410:9775979,22207279 +g1,6410:10092125,22207279 +g1,6410:10408271,22207279 +g1,6410:10724417,22207279 +g1,6410:11040563,22207279 +g1,6410:11356709,22207279 +g1,6410:11672855,22207279 +g1,6410:11989001,22207279 +g1,6410:12305147,22207279 +g1,6410:12621293,22207279 +g1,6410:13885876,22207279 +g1,6410:14518168,22207279 +k1,6410:14518168,22207279:0 +h1,6410:18311916,22207279:0,0,0 +k1,6410:31966991,22207279:13655075 +g1,6410:31966991,22207279 +) +(1,6411:7246811,22873457:24720180,404226,82312 +h1,6411:7246811,22873457:0,0,0 +g1,6411:7562957,22873457 +g1,6411:7879103,22873457 +g1,6411:8195249,22873457 +g1,6411:8511395,22873457 +g1,6411:8827541,22873457 +g1,6411:9143687,22873457 +g1,6411:9459833,22873457 +g1,6411:9775979,22873457 +g1,6411:10092125,22873457 +g1,6411:10408271,22873457 +g1,6411:10724417,22873457 +g1,6411:11040563,22873457 +g1,6411:11356709,22873457 +g1,6411:11672855,22873457 +g1,6411:11989001,22873457 +g1,6411:12305147,22873457 +g1,6411:12621293,22873457 +g1,6411:15782750,22873457 +g1,6411:16415042,22873457 +g1,6411:18628063,22873457 +g1,6411:19260355,22873457 +g1,6411:20208793,22873457 +g1,6411:21157230,22873457 +g1,6411:21789522,22873457 +k1,6411:21789522,22873457:0 +h1,6411:22737960,22873457:0,0,0 +k1,6411:31966991,22873457:9229031 +g1,6411:31966991,22873457 +) +(1,6412:7246811,23539635:24720180,404226,76021 +h1,6412:7246811,23539635:0,0,0 +g1,6412:7562957,23539635 +g1,6412:7879103,23539635 +g1,6412:8195249,23539635 +g1,6412:8511395,23539635 +g1,6412:8827541,23539635 +g1,6412:9143687,23539635 +g1,6412:9459833,23539635 +g1,6412:9775979,23539635 +g1,6412:10092125,23539635 +g1,6412:10408271,23539635 +g1,6412:10724417,23539635 +g1,6412:11040563,23539635 +g1,6412:11356709,23539635 +g1,6412:11672855,23539635 +g1,6412:11989001,23539635 +g1,6412:12305147,23539635 +g1,6412:12621293,23539635 +g1,6412:14518167,23539635 +g1,6412:15150459,23539635 +h1,6412:16731188,23539635:0,0,0 +k1,6412:31966991,23539635:15235803 +g1,6412:31966991,23539635 +) +(1,6413:7246811,24205813:24720180,404226,76021 +h1,6413:7246811,24205813:0,0,0 +k1,6413:7246811,24205813:0 +h1,6413:11356704,24205813:0,0,0 +k1,6413:31966992,24205813:20610288 +g1,6413:31966992,24205813 +) +(1,6417:7246811,24937527:24720180,404226,76021 +(1,6415:7246811,24937527:0,0,0 +g1,6415:7246811,24937527 +g1,6415:7246811,24937527 +g1,6415:6919131,24937527 +(1,6415:6919131,24937527:0,0,0 +) +g1,6415:7246811,24937527 +) +g1,6417:8195248,24937527 +g1,6417:9459831,24937527 +h1,6417:11988996,24937527:0,0,0 +k1,6417:31966992,24937527:19977996 +g1,6417:31966992,24937527 +) +(1,6419:7246811,26259065:24720180,404226,6290 +(1,6418:7246811,26259065:0,0,0 +g1,6418:7246811,26259065 +g1,6418:7246811,26259065 +g1,6418:6919131,26259065 +(1,6418:6919131,26259065:0,0,0 +) +g1,6418:7246811,26259065 +) +h1,6419:9143685,26259065:0,0,0 +k1,6419:31966991,26259065:22823306 +g1,6419:31966991,26259065 +) +(1,6425:7246811,26990779:24720180,404226,82312 +(1,6421:7246811,26990779:0,0,0 +g1,6421:7246811,26990779 +g1,6421:7246811,26990779 +g1,6421:6919131,26990779 +(1,6421:6919131,26990779:0,0,0 +) +g1,6421:7246811,26990779 +) +g1,6425:8195248,26990779 +g1,6425:8511394,26990779 +g1,6425:8827540,26990779 +g1,6425:9143686,26990779 +g1,6425:9459832,26990779 +g1,6425:9775978,26990779 +g1,6425:10092124,26990779 +g1,6425:10408270,26990779 +g1,6425:10724416,26990779 +g1,6425:11040562,26990779 +g1,6425:11356708,26990779 +g1,6425:11672854,26990779 +g1,6425:13253583,26990779 +g1,6425:13569729,26990779 +g1,6425:13885875,26990779 +g1,6425:14202021,26990779 +g1,6425:14518167,26990779 +g1,6425:14834313,26990779 +g1,6425:15150459,26990779 +g1,6425:16731188,26990779 +g1,6425:17047334,26990779 +g1,6425:17363480,26990779 +g1,6425:17679626,26990779 +g1,6425:17995772,26990779 +g1,6425:19576501,26990779 +g1,6425:19892647,26990779 +g1,6425:20208793,26990779 +g1,6425:20524939,26990779 +g1,6425:20841085,26990779 +g1,6425:21157231,26990779 +g1,6425:21473377,26990779 +g1,6425:23054106,26990779 +g1,6425:23370252,26990779 +g1,6425:23686398,26990779 +g1,6425:24002544,26990779 +g1,6425:24318690,26990779 +g1,6425:24634836,26990779 +k1,6425:24634836,26990779:0 +h1,6425:25899419,26990779:0,0,0 +k1,6425:31966991,26990779:6067572 +g1,6425:31966991,26990779 +) +(1,6425:7246811,27656957:24720180,388497,9436 +h1,6425:7246811,27656957:0,0,0 +g1,6425:8195248,27656957 +g1,6425:9775977,27656957 +g1,6425:13253580,27656957 +g1,6425:16731183,27656957 +g1,6425:19576494,27656957 +g1,6425:23054097,27656957 +h1,6425:25899408,27656957:0,0,0 +k1,6425:31966991,27656957:6067583 +g1,6425:31966991,27656957 +) +(1,6425:7246811,28323135:24720180,404226,9436 +h1,6425:7246811,28323135:0,0,0 +g1,6425:8195248,28323135 +g1,6425:9143685,28323135 +g1,6425:9459831,28323135 +g1,6425:9775977,28323135 +g1,6425:10092123,28323135 +g1,6425:13253580,28323135 +g1,6425:13569726,28323135 +g1,6425:16731183,28323135 +g1,6425:19576494,28323135 +g1,6425:19892640,28323135 +g1,6425:23054097,28323135 +g1,6425:23370243,28323135 +h1,6425:25899408,28323135:0,0,0 +k1,6425:31966991,28323135:6067583 +g1,6425:31966991,28323135 +) +] +) +g1,6426:31966991,28332571 +g1,6426:7246811,28332571 +g1,6426:7246811,28332571 +g1,6426:31966991,28332571 +g1,6426:31966991,28332571 +) +h1,6426:7246811,28529179:0,0,0 +] +) +] +r1,6428:32583029,29643291:26214,23782410,0 +) +] +) +) +g1,6428:32583029,29053467 +) +h1,6428:6630773,29669505:0,0,0 +v1,6431:6630773,31035281:0,393216,0 +(1,6432:6630773,34877804:25952256,4235739,616038 +g1,6432:6630773,34877804 +(1,6432:6630773,34877804:25952256,4235739,616038 +(1,6432:6630773,35493842:25952256,4851777,0 +[1,6432:6630773,35493842:25952256,4851777,0 +(1,6432:6630773,35467628:25952256,4799349,0 +r1,6432:6656987,35467628:26214,4799349,0 +[1,6432:6656987,35467628:25899828,4799349,0 +(1,6432:6656987,34877804:25899828,3619701,0 +[1,6432:7246811,34877804:24720180,3619701,0 +(1,6432:7246811,32345477:24720180,1087374,134348 +k1,6431:8649716,32345477:193202 +k1,6431:9660808,32345477:193203 +k1,6431:12932236,32345477:193202 +k1,6431:13741477,32345477:193203 +k1,6431:16213366,32345477:193202 +h1,6431:17582413,32345477:0,0,0 +k1,6431:17775615,32345477:193202 +k1,6431:18778188,32345477:193203 +k1,6431:20469543,32345477:193202 +h1,6431:21266461,32345477:0,0,0 +k1,6431:21633333,32345477:193202 +k1,6431:23381705,32345477:193203 +(1,6431:23381705,32345477:0,459977,115847 +r1,6432:26905377,32345477:3523672,575824,115847 +k1,6431:23381705,32345477:-3523672 +) +(1,6431:23381705,32345477:3523672,459977,115847 +k1,6431:23381705,32345477:3277 +h1,6431:26902100,32345477:0,411205,112570 +) +k1,6431:27098579,32345477:193202 +k1,6431:27823279,32345477:193203 +k1,6431:30399370,32345477:193202 +k1,6431:31966991,32345477:0 +) +(1,6432:7246811,33186965:24720180,513147,126483 +k1,6431:8967604,33186965:165624 +(1,6431:8967604,33186965:0,452978,115847 +r1,6432:10381005,33186965:1413401,568825,115847 +k1,6431:8967604,33186965:-1413401 +) +(1,6431:8967604,33186965:1413401,452978,115847 +k1,6431:8967604,33186965:3277 +h1,6431:10377728,33186965:0,411205,112570 +) +k1,6431:10720298,33186965:165623 +k1,6431:12781223,33186965:165624 +k1,6431:15642343,33186965:165624 +(1,6431:15642343,33186965:0,452978,115847 +r1,6432:20221151,33186965:4578808,568825,115847 +k1,6431:15642343,33186965:-4578808 +) +(1,6431:15642343,33186965:4578808,452978,115847 +k1,6431:15642343,33186965:3277 +h1,6431:20217874,33186965:0,411205,112570 +) +k1,6431:20386774,33186965:165623 +k1,6431:22933976,33186965:165624 +k1,6431:24954923,33186965:165623 +k1,6431:25771975,33186965:165624 +k1,6431:26956684,33186965:165624 +k1,6431:28511670,33186965:165623 +k1,6431:30553590,33186965:165624 +(1,6431:30553590,33186965:0,414482,115847 +r1,6432:31966991,33186965:1413401,530329,115847 +k1,6431:30553590,33186965:-1413401 +) +(1,6431:30553590,33186965:1413401,414482,115847 +k1,6431:30553590,33186965:3277 +h1,6431:31963714,33186965:0,411205,112570 +) +k1,6431:31966991,33186965:0 +) +(1,6432:7246811,34028453:24720180,505283,126483 +k1,6431:10265773,34028453:260552 +k1,6431:11212488,34028453:260553 +k1,6431:14134457,34028453:260552 +k1,6431:15784373,34028453:260553 +k1,6431:16660963,34028453:260552 +k1,6431:17510029,34028453:260553 +k1,6431:18967268,34028453:260552 +k1,6431:20404847,34028453:260552 +k1,6431:21196897,34028453:260553 +k1,6431:22108877,34028453:260552 +k1,6431:24393182,34028453:260553 +k1,6431:25672819,34028453:260552 +k1,6431:27671387,34028453:260553 +k1,6431:29123384,34028453:260552 +k1,6431:31966991,34028453:0 +) +(1,6432:7246811,34869941:24720180,513147,7863 +g1,6431:10395815,34869941 +g1,6431:11542695,34869941 +g1,6431:13193546,34869941 +k1,6432:31966991,34869941:16216886 +g1,6432:31966991,34869941 +) +] +) +] +r1,6432:32583029,35467628:26214,4799349,0 +) +] +) +) +g1,6432:32583029,34877804 +) +h1,6432:6630773,35493842:0,0,0 +(1,6434:6630773,37585102:25952256,564462,147783 +(1,6434:6630773,37585102:2450326,534184,12975 +g1,6434:6630773,37585102 +g1,6434:9081099,37585102 +) +g1,6434:12662511,37585102 +g1,6434:16328989,37585102 +g1,6434:17279130,37585102 +g1,6434:20622646,37585102 +g1,6434:22189874,37585102 +k1,6434:32583029,37585102:8076195 +g1,6434:32583029,37585102 +) +(1,6436:6630773,38819806:25952256,513147,126483 +k1,6435:7539069,38819806:280461 +k1,6435:8838615,38819806:280461 +k1,6435:10503196,38819806:280461 +k1,6435:13445073,38819806:280460 +k1,6435:14593886,38819806:280461 +k1,6435:15966832,38819806:280461 +(1,6435:15966832,38819806:0,452978,115847 +r1,6435:18435369,38819806:2468537,568825,115847 +k1,6435:15966832,38819806:-2468537 +) +(1,6435:15966832,38819806:2468537,452978,115847 +k1,6435:15966832,38819806:3277 +h1,6435:18432092,38819806:0,411205,112570 +) +k1,6435:18715830,38819806:280461 +k1,6435:20187736,38819806:280461 +(1,6435:20187736,38819806:0,452978,115847 +r1,6435:22304561,38819806:2116825,568825,115847 +k1,6435:20187736,38819806:-2116825 +) +(1,6435:20187736,38819806:2116825,452978,115847 +k1,6435:20187736,38819806:3277 +h1,6435:22301284,38819806:0,411205,112570 +) +k1,6435:22585022,38819806:280461 +k1,6435:23516911,38819806:280461 +k1,6435:26585273,38819806:280460 +k1,6435:27884819,38819806:280461 +k1,6435:29903295,38819806:280461 +k1,6435:31131407,38819806:280461 +k1,6435:32583029,38819806:0 +) +(1,6436:6630773,39661294:25952256,513147,115847 +k1,6435:9260012,39661294:246350 +k1,6435:10165655,39661294:246351 +k1,6435:12499982,39661294:246350 +(1,6435:12499982,39661294:0,452978,115847 +r1,6435:15320231,39661294:2820249,568825,115847 +k1,6435:12499982,39661294:-2820249 +) +(1,6435:12499982,39661294:2820249,452978,115847 +k1,6435:12499982,39661294:3277 +h1,6435:15316954,39661294:0,411205,112570 +) +k1,6435:15740252,39661294:246351 +k1,6435:16614437,39661294:246350 +k1,6435:17275584,39661294:246304 +k1,6435:18541019,39661294:246350 +k1,6435:22462629,39661294:246351 +k1,6435:23368271,39661294:246350 +k1,6435:23970482,39661294:246351 +k1,6435:26477824,39661294:246350 +k1,6435:28258373,39661294:246351 +k1,6435:29696168,39661294:246350 +k1,6435:32583029,39661294:0 +) +(1,6436:6630773,40502782:25952256,513147,134348 +k1,6435:8246286,40502782:228116 +k1,6435:10359872,40502782:228115 +k1,6435:10943848,40502782:228116 +k1,6435:13867459,40502782:228115 +k1,6435:14627072,40502782:228116 +k1,6435:17226936,40502782:228116 +k1,6435:18446611,40502782:228115 +k1,6435:20542503,40502782:228116 +k1,6435:23555243,40502782:228116 +k1,6435:24980045,40502782:228115 +k1,6435:28280489,40502782:228116 +k1,6435:30713891,40502782:228115 +k1,6435:31593435,40502782:228116 +k1,6436:32583029,40502782:0 +) +(1,6436:6630773,41344270:25952256,513147,134348 +k1,6435:9350953,41344270:216049 +(1,6435:9350953,41344270:0,414482,115847 +r1,6435:11467778,41344270:2116825,530329,115847 +k1,6435:9350953,41344270:-2116825 +) +(1,6435:9350953,41344270:2116825,414482,115847 +k1,6435:9350953,41344270:3277 +h1,6435:11464501,41344270:0,411205,112570 +) +k1,6435:11683827,41344270:216049 +k1,6435:15474211,41344270:216050 +k1,6435:17077657,41344270:216049 +k1,6435:19179177,41344270:216049 +k1,6435:21649665,41344270:216049 +k1,6435:22884799,41344270:216049 +k1,6435:25796344,41344270:216049 +k1,6435:27144856,41344270:216050 +k1,6435:28108671,41344270:216049 +k1,6435:30870138,41344270:216049 +k1,6435:31563944,41344270:216049 +k1,6435:32583029,41344270:0 +) +(1,6436:6630773,42185758:25952256,513147,134348 +k1,6435:9523345,42185758:197076 +k1,6435:10251918,42185758:197076 +k1,6435:12820742,42185758:197076 +k1,6435:13669246,42185758:197076 +k1,6435:17059236,42185758:197076 +k1,6435:18964180,42185758:197076 +k1,6435:20029607,42185758:197075 +k1,6435:21273948,42185758:197076 +k1,6435:22755530,42185758:197076 +k1,6435:23820958,42185758:197076 +k1,6435:26429104,42185758:197076 +k1,6435:27435550,42185758:197076 +k1,6435:28651711,42185758:197076 +k1,6435:30154920,42185758:197076 +k1,6435:32583029,42185758:0 +) +(1,6436:6630773,43027246:25952256,513147,134348 +k1,6435:8043830,43027246:221612 +k1,6435:8731404,43027246:221613 +k1,6435:9972101,43027246:221612 +k1,6435:12889210,43027246:221613 +k1,6435:13642319,43027246:221612 +k1,6435:16235679,43027246:221612 +k1,6435:17108720,43027246:221613 +k1,6435:20523246,43027246:221612 +k1,6435:23631719,43027246:221612 +k1,6435:25240729,43027246:221613 +k1,6435:26481426,43027246:221612 +k1,6435:28944370,43027246:221613 +k1,6435:31594091,43027246:221612 +k1,6436:32583029,43027246:0 +) +(1,6436:6630773,43868734:25952256,513147,134348 +k1,6435:8211229,43868734:244832 +k1,6435:9560342,43868734:244831 +k1,6435:11280389,43868734:244832 +k1,6435:13276997,43868734:244831 +k1,6435:17370758,43868734:244832 +k1,6435:18807034,43868734:244831 +k1,6435:23276972,43868734:244832 +k1,6435:25172000,43868734:244831 +k1,6435:28175242,43868734:244832 +k1,6435:29047908,43868734:244831 +k1,6435:30311825,43868734:244832 +k1,6435:31923737,43868734:244831 +k1,6435:32583029,43868734:0 +) +(1,6436:6630773,44710222:25952256,513147,126483 +k1,6435:8782572,44710222:171956 +k1,6435:10348479,44710222:171956 +k1,6435:12170633,44710222:171957 +k1,6435:13785036,44710222:171956 +k1,6435:15129431,44710222:171956 +k1,6435:19150316,44710222:171956 +k1,6435:19780370,44710222:171957 +k1,6435:20483823,44710222:171956 +k1,6435:23285739,44710222:171956 +k1,6435:24649140,44710222:171956 +k1,6435:26798318,44710222:171957 +k1,6435:27621702,44710222:171956 +k1,6435:29557232,44710222:171956 +k1,6435:32583029,44710222:0 +) +(1,6436:6630773,45551710:25952256,505283,134348 +g1,6435:8217399,45551710 +g1,6435:11087875,45551710 +g1,6435:13871844,45551710 +g1,6435:14683835,45551710 +k1,6436:32583029,45551710:16235235 +g1,6436:32583029,45551710 +) +] +(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 +) +] +h1,6438:4262630,4025873:0,0,0 +] +!26423 }121 -Input:911:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:912:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:913:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:914:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:915:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:916:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:917:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:918:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:919:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:920:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:921:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!947 +Input:907:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:908:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:909:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:910:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:911:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:912:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:913:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!649 {122 -[1,6529:4262630,47279633:28320399,43253760,0 -(1,6529:4262630,4025873:0,0,0 -[1,6529:-473657,4025873:25952256,0,0 -(1,6529:-473657,-710414:25952256,0,0 -h1,6529:-473657,-710414:0,0,0 -(1,6529:-473657,-710414:0,0,0 -(1,6529:-473657,-710414:0,0,0 -g1,6529:-473657,-710414 -(1,6529:-473657,-710414:65781,0,65781 -g1,6529:-407876,-710414 -[1,6529:-407876,-644633:0,0,0 +[1,6512:4262630,47279633:28320399,43253760,0 +(1,6512:4262630,4025873:0,0,0 +[1,6512:-473657,4025873:25952256,0,0 +(1,6512:-473657,-710414:25952256,0,0 +h1,6512:-473657,-710414:0,0,0 +(1,6512:-473657,-710414:0,0,0 +(1,6512:-473657,-710414:0,0,0 +g1,6512:-473657,-710414 +(1,6512:-473657,-710414:65781,0,65781 +g1,6512:-407876,-710414 +[1,6512:-407876,-644633:0,0,0 ] ) -k1,6529:-473657,-710414:-65781 +k1,6512:-473657,-710414:-65781 ) ) -k1,6529:25478599,-710414:25952256 -g1,6529:25478599,-710414 +k1,6512:25478599,-710414:25952256 +g1,6512:25478599,-710414 ) ] ) -[1,6529:6630773,47279633:25952256,43253760,0 -[1,6529:6630773,4812305:25952256,786432,0 -(1,6529:6630773,4812305:25952256,513147,126483 -(1,6529:6630773,4812305:25952256,513147,126483 -g1,6529:3078558,4812305 -[1,6529:3078558,4812305:0,0,0 -(1,6529:3078558,2439708:0,1703936,0 -k1,6529:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6529:2537886,2439708:1179648,16384,0 +[1,6512:6630773,47279633:25952256,43253760,0 +[1,6512:6630773,4812305:25952256,786432,0 +(1,6512:6630773,4812305:25952256,513147,126483 +(1,6512:6630773,4812305:25952256,513147,126483 +g1,6512:3078558,4812305 +[1,6512:3078558,4812305:0,0,0 +(1,6512:3078558,2439708:0,1703936,0 +k1,6512:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6512:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6529:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6512:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6529:3078558,4812305:0,0,0 -(1,6529:3078558,2439708:0,1703936,0 -g1,6529:29030814,2439708 -g1,6529:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6529:36151628,1915420:16384,1179648,0 +[1,6512:3078558,4812305:0,0,0 +(1,6512:3078558,2439708:0,1703936,0 +g1,6512:29030814,2439708 +g1,6512:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6512:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6529:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6512:37855564,2439708:1179648,16384,0 ) ) -k1,6529:3078556,2439708:-34777008 +k1,6512:3078556,2439708:-34777008 ) ] -[1,6529:3078558,4812305:0,0,0 -(1,6529:3078558,49800853:0,16384,2228224 -k1,6529:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6529:2537886,49800853:1179648,16384,0 +[1,6512:3078558,4812305:0,0,0 +(1,6512:3078558,49800853:0,16384,2228224 +k1,6512:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6512:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6529:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6512:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6529:3078558,4812305:0,0,0 -(1,6529:3078558,49800853:0,16384,2228224 -g1,6529:29030814,49800853 -g1,6529:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6529:36151628,51504789:16384,1179648,0 +[1,6512:3078558,4812305:0,0,0 +(1,6512:3078558,49800853:0,16384,2228224 +g1,6512:29030814,49800853 +g1,6512:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6512:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6529:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6512:37855564,49800853:1179648,16384,0 ) ) -k1,6529:3078556,49800853:-34777008 +k1,6512:3078556,49800853:-34777008 ) ] -g1,6529:6630773,4812305 -g1,6529:6630773,4812305 -g1,6529:8671564,4812305 -g1,6529:11756343,4812305 -k1,6529:31387651,4812305:19631308 +g1,6512:6630773,4812305 +g1,6512:6630773,4812305 +g1,6512:8671564,4812305 +g1,6512:11756343,4812305 +k1,6512:31387651,4812305:19631308 ) ) ] -[1,6529:6630773,45706769:25952256,40108032,0 -(1,6529:6630773,45706769:25952256,40108032,0 -(1,6529:6630773,45706769:0,0,0 -g1,6529:6630773,45706769 +[1,6512:6630773,45706769:25952256,40108032,0 +(1,6512:6630773,45706769:25952256,40108032,0 +(1,6512:6630773,45706769:0,0,0 +g1,6512:6630773,45706769 ) -[1,6529:6630773,45706769:25952256,40108032,0 -v1,6449:6630773,6254097:0,393216,0 -(1,6450:6630773,8413644:25952256,2552763,616038 -g1,6450:6630773,8413644 -(1,6450:6630773,8413644:25952256,2552763,616038 -(1,6450:6630773,9029682:25952256,3168801,0 -[1,6450:6630773,9029682:25952256,3168801,0 -(1,6450:6630773,9003468:25952256,3116373,0 -r1,6450:6656987,9003468:26214,3116373,0 -[1,6450:6656987,9003468:25899828,3116373,0 -(1,6450:6656987,8413644:25899828,1936725,0 -[1,6450:7246811,8413644:24720180,1936725,0 -(1,6450:7246811,7564293:24720180,1087374,126483 -k1,6449:8685998,7564293:229484 -k1,6449:11121424,7564293:229484 -k1,6449:12369993,7564293:229484 -k1,6449:15260894,7564293:229484 -k1,6449:17345702,7564293:229484 -k1,6449:18300014,7564293:229484 -k1,6449:19814003,7564293:229483 -k1,6449:20501584,7564293:229484 -k1,6449:23849271,7564293:229484 -k1,6449:25282651,7564293:229484 -k1,6449:27580451,7564293:229484 -k1,6449:30137118,7564293:229484 -k1,6449:31025894,7564293:229484 -k1,6450:31966991,7564293:0 -) -(1,6450:7246811,8405781:24720180,505283,7863 -g1,6449:9100824,8405781 -k1,6450:31966991,8405781:20624180 -g1,6450:31966991,8405781 -) -] -) -] -r1,6450:32583029,9003468:26214,3116373,0 -) -] -) -) -g1,6450:32583029,8413644 -) -h1,6450:6630773,9029682:0,0,0 -v1,6453:6630773,10361971:0,393216,0 -(1,6454:6630773,14330979:25952256,4362224,616038 -g1,6454:6630773,14330979 -(1,6454:6630773,14330979:25952256,4362224,616038 -(1,6454:6630773,14947017:25952256,4978262,0 -[1,6454:6630773,14947017:25952256,4978262,0 -(1,6454:6630773,14920803:25952256,4925834,0 -r1,6454:6656987,14920803:26214,4925834,0 -[1,6454:6656987,14920803:25899828,4925834,0 -(1,6454:6656987,14330979:25899828,3746186,0 -[1,6454:7246811,14330979:24720180,3746186,0 -(1,6454:7246811,11672167:24720180,1087374,134348 -k1,6453:8662973,11672167:206459 -k1,6453:10416081,11672167:206458 -k1,6453:11458124,11672167:206459 -k1,6453:12683667,11672167:206458 -k1,6453:14278179,11672167:206459 -k1,6453:16313091,11672167:206458 -k1,6453:17467201,11672167:206459 -(1,6453:17467201,11672167:0,452978,115847 -r1,6454:19935738,11672167:2468537,568825,115847 -k1,6453:17467201,11672167:-2468537 -) -(1,6453:17467201,11672167:2468537,452978,115847 -k1,6453:17467201,11672167:3277 -h1,6453:19932461,11672167:0,411205,112570 -) -k1,6453:20142197,11672167:206459 -k1,6453:21540100,11672167:206458 -(1,6453:21540100,11672167:0,452978,115847 -r1,6454:23656925,11672167:2116825,568825,115847 -k1,6453:21540100,11672167:-2116825 -) -(1,6453:21540100,11672167:2116825,452978,115847 -k1,6453:21540100,11672167:3277 -h1,6453:23653648,11672167:0,411205,112570 -) -k1,6453:23863384,11672167:206459 -k1,6453:25261287,11672167:206458 -k1,6453:27251636,11672167:206459 -k1,6453:29097149,11672167:206458 -k1,6453:30796518,11672167:206459 -k1,6453:31966991,11672167:0 -) -(1,6454:7246811,12513655:24720180,513147,134348 -k1,6453:11124248,12513655:212664 -k1,6453:12667293,12513655:212664 -k1,6453:16106951,12513655:212665 -k1,6453:19722244,12513655:212664 -k1,6453:21039190,12513655:212664 -k1,6453:21999620,12513655:212664 -k1,6453:24417571,12513655:212664 -k1,6453:25281664,12513655:212665 -k1,6453:26513413,12513655:212664 -k1,6453:29097825,12513655:212664 -k1,6453:31966991,12513655:0 -) -(1,6454:7246811,13355143:24720180,513147,134348 -k1,6453:8735861,13355143:262871 -k1,6453:10169205,13355143:262871 -k1,6453:12229073,13355143:262871 -k1,6453:13788902,13355143:262871 -(1,6453:13788902,13355143:0,452978,115847 -r1,6454:16257439,13355143:2468537,568825,115847 -k1,6453:13788902,13355143:-2468537 -) -(1,6453:13788902,13355143:2468537,452978,115847 -k1,6453:13788902,13355143:3277 -h1,6453:16254162,13355143:0,411205,112570 -) -k1,6453:16520310,13355143:262871 -k1,6453:17990355,13355143:262872 -k1,6453:21109940,13355143:262871 -k1,6453:22024239,13355143:262871 -k1,6453:23762325,13355143:262871 -k1,6453:27305928,13355143:262871 -k1,6453:29637115,13355143:262871 -k1,6453:31350953,13355143:262871 -k1,6453:31966991,13355143:0 -) -(1,6454:7246811,14196631:24720180,513147,134348 -g1,6453:10878816,14196631 -g1,6453:14432178,14196631 -g1,6453:15985381,14196631 -g1,6453:18735271,14196631 -g1,6453:19882151,14196631 -g1,6453:20496223,14196631 -g1,6453:22191639,14196631 -k1,6454:31966991,14196631:7947553 -g1,6454:31966991,14196631 -) -] -) -] -r1,6454:32583029,14920803:26214,4925834,0 -) -] -) -) -g1,6454:32583029,14330979 -) -h1,6454:6630773,14947017:0,0,0 -(1,6457:6630773,16279305:25952256,513147,134348 -h1,6456:6630773,16279305:983040,0,0 -k1,6456:8387880,16279305:296310 -k1,6456:9552542,16279305:296310 -k1,6456:11612426,16279305:296310 -k1,6456:12264597,16279305:296311 -k1,6456:15256403,16279305:296310 -k1,6456:16837219,16279305:296310 -k1,6456:19474475,16279305:296310 -k1,6456:20126645,16279305:296310 -k1,6456:22103298,16279305:296310 -k1,6456:23058900,16279305:296310 -k1,6456:24374296,16279305:296311 -k1,6456:26324079,16279305:296310 -k1,6456:28633655,16279305:296310 -k1,6456:29616127,16279305:296310 -k1,6456:30700835,16279305:296310 -k1,6456:32583029,16279305:0 -) -(1,6457:6630773,17120793:25952256,513147,126483 -k1,6456:8259007,17120793:194306 -k1,6456:9472398,17120793:194306 -k1,6456:13341963,17120793:194306 -k1,6456:14195561,17120793:194306 -k1,6456:15408952,17120793:194306 -k1,6456:17283601,17120793:194306 -k1,6456:20256634,17120793:194306 -k1,6456:21212467,17120793:194305 -(1,6456:21212467,17120793:0,452978,115847 -r1,6456:23681004,17120793:2468537,568825,115847 -k1,6456:21212467,17120793:-2468537 -) -(1,6456:21212467,17120793:2468537,452978,115847 -k1,6456:21212467,17120793:3277 -h1,6456:23677727,17120793:0,411205,112570 -) -k1,6456:23875310,17120793:194306 -k1,6456:25061176,17120793:194306 -k1,6456:26274567,17120793:194306 -k1,6456:28122346,17120793:194306 -k1,6456:29002814,17120793:194306 -k1,6456:30941033,17120793:194306 -k1,6456:31794631,17120793:194306 -k1,6456:32583029,17120793:0 -) -(1,6457:6630773,17962281:25952256,513147,134348 -k1,6456:8719909,17962281:206942 -k1,6456:9880401,17962281:206943 -k1,6456:11353499,17962281:206942 -k1,6456:12176480,17962281:206943 -k1,6456:13402507,17962281:206942 -k1,6456:14993570,17962281:206943 -k1,6456:18365901,17962281:206942 -k1,6456:18928704,17962281:206943 -k1,6456:21573585,17962281:206942 -k1,6456:24476024,17962281:206943 -k1,6456:25967472,17962281:206942 -k1,6456:28515361,17962281:206943 -k1,6456:29510701,17962281:206942 -k1,6456:32583029,17962281:0 -) -(1,6457:6630773,18803769:25952256,505283,134348 -g1,6456:10494775,18803769 -g1,6456:11418832,18803769 -g1,6456:12902567,18803769 -g1,6456:14810320,18803769 -g1,6456:16200994,18803769 -g1,6456:18558979,18803769 -g1,6456:19862490,18803769 -g1,6456:20809485,18803769 -g1,6456:22809643,18803769 -k1,6457:32583029,18803769:6418598 -g1,6457:32583029,18803769 -) -v1,6459:6630773,19960748:0,393216,0 -(1,6471:6630773,24313282:25952256,4745750,196608 -g1,6471:6630773,24313282 -g1,6471:6630773,24313282 -g1,6471:6434165,24313282 -(1,6471:6434165,24313282:0,4745750,196608 -r1,6471:32779637,24313282:26345472,4942358,196608 -k1,6471:6434165,24313282:-26345472 -) -(1,6471:6434165,24313282:26345472,4745750,196608 -[1,6471:6630773,24313282:25952256,4549142,0 -(1,6461:6630773,20168366:25952256,404226,82312 -(1,6460:6630773,20168366:0,0,0 -g1,6460:6630773,20168366 -g1,6460:6630773,20168366 -g1,6460:6303093,20168366 -(1,6460:6303093,20168366:0,0,0 -) -g1,6460:6630773,20168366 -) -g1,6461:11372959,20168366 -g1,6461:12321397,20168366 -g1,6461:17379729,20168366 -g1,6461:18960458,20168366 -g1,6461:19592750,20168366 -g1,6461:20857333,20168366 -g1,6461:21805770,20168366 -g1,6461:22438062,20168366 -g1,6461:23702646,20168366 -g1,6461:25283375,20168366 -g1,6461:25915667,20168366 -h1,6461:26547959,20168366:0,0,0 -k1,6461:32583029,20168366:6035070 -g1,6461:32583029,20168366 -) -(1,6462:6630773,20834544:25952256,404226,107478 -h1,6462:6630773,20834544:0,0,0 -g1,6462:11372959,20834544 -g1,6462:12321397,20834544 -g1,6462:19276602,20834544 -g1,6462:21489622,20834544 -g1,6462:22121914,20834544 -h1,6462:22754206,20834544:0,0,0 -k1,6462:32583029,20834544:9828823 -g1,6462:32583029,20834544 -) -(1,6463:6630773,21500722:25952256,404226,6290 -h1,6463:6630773,21500722:0,0,0 -h1,6463:11056813,21500722:0,0,0 -k1,6463:32583029,21500722:21526216 -g1,6463:32583029,21500722 -) -(1,6470:6630773,22232436:25952256,404226,82312 -(1,6465:6630773,22232436:0,0,0 -g1,6465:6630773,22232436 -g1,6465:6630773,22232436 -g1,6465:6303093,22232436 -(1,6465:6303093,22232436:0,0,0 -) -g1,6465:6630773,22232436 -) -g1,6470:7579210,22232436 -g1,6470:7895356,22232436 -g1,6470:8211502,22232436 -g1,6470:8527648,22232436 -g1,6470:8843794,22232436 -g1,6470:9159940,22232436 -g1,6470:10740669,22232436 -k1,6470:10740669,22232436:0 -h1,6470:12005252,22232436:0,0,0 -k1,6470:32583028,22232436:20577776 -g1,6470:32583028,22232436 -) -(1,6470:6630773,22898614:25952256,404226,82312 -h1,6470:6630773,22898614:0,0,0 -g1,6470:7579210,22898614 -g1,6470:9159938,22898614 -g1,6470:10740667,22898614 -h1,6470:12005250,22898614:0,0,0 -k1,6470:32583030,22898614:20577780 -g1,6470:32583030,22898614 -) -(1,6470:6630773,23564792:25952256,404226,82312 -h1,6470:6630773,23564792:0,0,0 -g1,6470:7579210,23564792 -g1,6470:9159938,23564792 -g1,6470:10740667,23564792 -g1,6470:11056813,23564792 -h1,6470:12005250,23564792:0,0,0 -k1,6470:32583030,23564792:20577780 -g1,6470:32583030,23564792 -) -(1,6470:6630773,24230970:25952256,404226,82312 -h1,6470:6630773,24230970:0,0,0 -g1,6470:7579210,24230970 -g1,6470:9159938,24230970 -g1,6470:9476084,24230970 -g1,6470:10740667,24230970 -h1,6470:12005250,24230970:0,0,0 -k1,6470:32583030,24230970:20577780 -g1,6470:32583030,24230970 -) -] -) -g1,6471:32583029,24313282 -g1,6471:6630773,24313282 -g1,6471:6630773,24313282 -g1,6471:32583029,24313282 -g1,6471:32583029,24313282 -) -h1,6471:6630773,24509890:0,0,0 -v1,6475:6630773,26157669:0,393216,0 -(1,6479:6630773,26472766:25952256,708313,196608 -g1,6479:6630773,26472766 -g1,6479:6630773,26472766 -g1,6479:6434165,26472766 -(1,6479:6434165,26472766:0,708313,196608 -r1,6479:32779637,26472766:26345472,904921,196608 -k1,6479:6434165,26472766:-26345472 -) -(1,6479:6434165,26472766:26345472,708313,196608 -[1,6479:6630773,26472766:25952256,511705,0 -(1,6477:6630773,26371579:25952256,410518,101187 -(1,6476:6630773,26371579:0,0,0 -g1,6476:6630773,26371579 -g1,6476:6630773,26371579 -g1,6476:6303093,26371579 -(1,6476:6303093,26371579:0,0,0 -) -g1,6476:6630773,26371579 -) -g1,6477:9792230,26371579 -g1,6477:10740668,26371579 -g1,6477:14534417,26371579 -h1,6477:15482854,26371579:0,0,0 -k1,6477:32583030,26371579:17100176 -g1,6477:32583030,26371579 -) -] -) -g1,6479:32583029,26472766 -g1,6479:6630773,26472766 -g1,6479:6630773,26472766 -g1,6479:32583029,26472766 -g1,6479:32583029,26472766 -) -h1,6479:6630773,26669374:0,0,0 -v1,6483:6630773,28317154:0,393216,0 -(1,6500:6630773,34063054:25952256,6139116,196608 -g1,6500:6630773,34063054 -g1,6500:6630773,34063054 -g1,6500:6434165,34063054 -(1,6500:6434165,34063054:0,6139116,196608 -r1,6500:32779637,34063054:26345472,6335724,196608 -k1,6500:6434165,34063054:-26345472 -) -(1,6500:6434165,34063054:26345472,6139116,196608 -[1,6500:6630773,34063054:25952256,5942508,0 -(1,6485:6630773,28531064:25952256,410518,101187 -(1,6484:6630773,28531064:0,0,0 -g1,6484:6630773,28531064 -g1,6484:6630773,28531064 -g1,6484:6303093,28531064 -(1,6484:6303093,28531064:0,0,0 -) -g1,6484:6630773,28531064 -) -g1,6485:7263065,28531064 -g1,6485:8211503,28531064 -g1,6485:10740669,28531064 -g1,6485:11372961,28531064 -g1,6485:16431293,28531064 -g1,6485:18644313,28531064 -g1,6485:19276605,28531064 -g1,6485:20225043,28531064 -g1,6485:21489626,28531064 -g1,6485:22121918,28531064 -h1,6485:25283375,28531064:0,0,0 -k1,6485:32583029,28531064:7299654 -g1,6485:32583029,28531064 -) -(1,6486:6630773,29197242:25952256,404226,76021 -h1,6486:6630773,29197242:0,0,0 -k1,6486:6630773,29197242:0 -h1,6486:9159938,29197242:0,0,0 -k1,6486:32583030,29197242:23423092 -g1,6486:32583030,29197242 -) -(1,6490:6630773,29928956:25952256,404226,76021 -(1,6488:6630773,29928956:0,0,0 -g1,6488:6630773,29928956 -g1,6488:6630773,29928956 -g1,6488:6303093,29928956 -(1,6488:6303093,29928956:0,0,0 -) -g1,6488:6630773,29928956 -) -g1,6490:7579210,29928956 -g1,6490:8843793,29928956 -h1,6490:11372958,29928956:0,0,0 -k1,6490:32583030,29928956:21210072 -g1,6490:32583030,29928956 -) -(1,6492:6630773,31250494:25952256,277873,0 -(1,6491:6630773,31250494:0,0,0 -g1,6491:6630773,31250494 -g1,6491:6630773,31250494 -g1,6491:6303093,31250494 -(1,6491:6303093,31250494:0,0,0 -) -g1,6491:6630773,31250494 -) -h1,6492:6946919,31250494:0,0,0 -k1,6492:32583029,31250494:25636110 -g1,6492:32583029,31250494 -) -(1,6499:6630773,31982208:25952256,404226,82312 -(1,6494:6630773,31982208:0,0,0 -g1,6494:6630773,31982208 -g1,6494:6630773,31982208 -g1,6494:6303093,31982208 -(1,6494:6303093,31982208:0,0,0 -) -g1,6494:6630773,31982208 -) -g1,6499:7579210,31982208 -g1,6499:7895356,31982208 -g1,6499:8211502,31982208 -g1,6499:8527648,31982208 -g1,6499:8843794,31982208 -g1,6499:9159940,31982208 -g1,6499:10740669,31982208 -k1,6499:10740669,31982208:0 -h1,6499:12005252,31982208:0,0,0 -k1,6499:32583028,31982208:20577776 -g1,6499:32583028,31982208 -) -(1,6499:6630773,32648386:25952256,404226,82312 -h1,6499:6630773,32648386:0,0,0 -g1,6499:7579210,32648386 -g1,6499:9159938,32648386 -g1,6499:10740667,32648386 -h1,6499:12005250,32648386:0,0,0 -k1,6499:32583030,32648386:20577780 -g1,6499:32583030,32648386 -) -(1,6499:6630773,33314564:25952256,404226,82312 -h1,6499:6630773,33314564:0,0,0 -g1,6499:7579210,33314564 -g1,6499:9159938,33314564 -g1,6499:10740667,33314564 -g1,6499:11056813,33314564 -h1,6499:12005250,33314564:0,0,0 -k1,6499:32583030,33314564:20577780 -g1,6499:32583030,33314564 -) -(1,6499:6630773,33980742:25952256,404226,82312 -h1,6499:6630773,33980742:0,0,0 -g1,6499:7579210,33980742 -g1,6499:9159938,33980742 -g1,6499:9476084,33980742 -g1,6499:10740667,33980742 -h1,6499:12005250,33980742:0,0,0 -k1,6499:32583030,33980742:20577780 -g1,6499:32583030,33980742 -) -] -) -g1,6500:32583029,34063054 -g1,6500:6630773,34063054 -g1,6500:6630773,34063054 -g1,6500:32583029,34063054 -g1,6500:32583029,34063054 -) -h1,6500:6630773,34259662:0,0,0 -(1,6504:6630773,35591950:25952256,513147,134348 -h1,6503:6630773,35591950:983040,0,0 -k1,6503:8442216,35591950:200568 -k1,6503:9661870,35591950:200569 -k1,6503:11833106,35591950:200568 -k1,6503:14062669,35591950:200568 -k1,6503:15131589,35591950:200568 -k1,6503:17537445,35591950:200569 -(1,6503:17537445,35591950:0,435480,115847 -r1,6503:21061118,35591950:3523673,551327,115847 -k1,6503:17537445,35591950:-3523673 -) -(1,6503:17537445,35591950:3523673,435480,115847 -g1,6503:20002705,35591950 -g1,6503:20706129,35591950 -h1,6503:21057841,35591950:0,411205,112570 -) -k1,6503:21435356,35591950:200568 -k1,6503:22708093,35591950:200568 -k1,6503:23374623,35591950:200569 -k1,6503:24443543,35591950:200568 -k1,6503:26081316,35591950:200568 -(1,6503:26081316,35591950:0,435480,115847 -r1,6503:29604989,35591950:3523673,551327,115847 -k1,6503:26081316,35591950:-3523673 -) -(1,6503:26081316,35591950:3523673,435480,115847 -g1,6503:28546576,35591950 -g1,6503:29250000,35591950 -h1,6503:29601712,35591950:0,411205,112570 -) -k1,6503:29979227,35591950:200568 -k1,6503:31048148,35591950:200569 -k1,6503:32227169,35591950:200568 -k1,6503:32583029,35591950:0 -) -(1,6504:6630773,36433438:25952256,513147,134348 -k1,6503:8816305,36433438:174887 -k1,6503:10671536,36433438:174888 -k1,6503:12130929,36433438:174887 -k1,6503:12837313,36433438:174887 -k1,6503:16745787,36433438:174888 -k1,6503:17749704,36433438:174887 -k1,6503:20177719,36433438:174887 -k1,6503:21371692,36433438:174888 -k1,6503:23981897,36433438:174887 -k1,6503:26145147,36433438:174888 -k1,6503:26979326,36433438:174887 -k1,6503:28173298,36433438:174887 -k1,6503:30435508,36433438:174888 -k1,6503:31478747,36433438:174887 -k1,6503:32583029,36433438:0 -) -(1,6504:6630773,37274926:25952256,513147,126483 -g1,6503:9969177,37274926 -g1,6503:11187491,37274926 -g1,6503:13229592,37274926 -g1,6503:14822772,37274926 -g1,6503:17717497,37274926 -(1,6503:17717497,37274926:0,452978,115847 -r1,6503:18779186,37274926:1061689,568825,115847 -k1,6503:17717497,37274926:-1061689 -) -(1,6503:17717497,37274926:1061689,452978,115847 -k1,6503:17717497,37274926:3277 -h1,6503:18775909,37274926:0,411205,112570 -) -k1,6504:32583029,37274926:13630173 -g1,6504:32583029,37274926 -) -v1,6506:6630773,38431905:0,393216,0 -(1,6525:6630773,45510161:25952256,7471472,196608 -g1,6525:6630773,45510161 -g1,6525:6630773,45510161 -g1,6525:6434165,45510161 -(1,6525:6434165,45510161:0,7471472,196608 -r1,6525:32779637,45510161:26345472,7668080,196608 -k1,6525:6434165,45510161:-26345472 -) -(1,6525:6434165,45510161:26345472,7471472,196608 -[1,6525:6630773,45510161:25952256,7274864,0 -(1,6508:6630773,38645815:25952256,410518,101187 -(1,6507:6630773,38645815:0,0,0 -g1,6507:6630773,38645815 -g1,6507:6630773,38645815 -g1,6507:6303093,38645815 -(1,6507:6303093,38645815:0,0,0 -) -g1,6507:6630773,38645815 -) -g1,6508:7263065,38645815 -g1,6508:8211503,38645815 -g1,6508:10740669,38645815 -g1,6508:11372961,38645815 -g1,6508:16431293,38645815 -g1,6508:18644313,38645815 -g1,6508:19276605,38645815 -g1,6508:20225043,38645815 -g1,6508:21489626,38645815 -g1,6508:22121918,38645815 -h1,6508:25283375,38645815:0,0,0 -k1,6508:32583029,38645815:7299654 -g1,6508:32583029,38645815 -) -(1,6509:6630773,39311993:25952256,277873,0 -h1,6509:6630773,39311993:0,0,0 -h1,6509:6946919,39311993:0,0,0 -k1,6509:32583029,39311993:25636110 -g1,6509:32583029,39311993 -) -(1,6515:6630773,40043707:25952256,404226,82312 -(1,6511:6630773,40043707:0,0,0 -g1,6511:6630773,40043707 -g1,6511:6630773,40043707 -g1,6511:6303093,40043707 -(1,6511:6303093,40043707:0,0,0 -) -g1,6511:6630773,40043707 -) -g1,6515:7579210,40043707 -g1,6515:7895356,40043707 -g1,6515:8211502,40043707 -g1,6515:8527648,40043707 -g1,6515:8843794,40043707 -g1,6515:9159940,40043707 -g1,6515:10740669,40043707 -g1,6515:12321398,40043707 -k1,6515:12321398,40043707:0 -h1,6515:13585981,40043707:0,0,0 -k1,6515:32583029,40043707:18997048 -g1,6515:32583029,40043707 -) -(1,6515:6630773,40709885:25952256,404226,82312 -h1,6515:6630773,40709885:0,0,0 -g1,6515:7579210,40709885 -g1,6515:9159938,40709885 -g1,6515:10740667,40709885 -g1,6515:12321396,40709885 -g1,6515:12637542,40709885 -h1,6515:13585979,40709885:0,0,0 -k1,6515:32583029,40709885:18997050 -g1,6515:32583029,40709885 -) -(1,6515:6630773,41376063:25952256,404226,82312 -h1,6515:6630773,41376063:0,0,0 -g1,6515:7579210,41376063 -g1,6515:9159938,41376063 -g1,6515:10740667,41376063 -g1,6515:11056813,41376063 -g1,6515:12321396,41376063 -h1,6515:13585979,41376063:0,0,0 -k1,6515:32583029,41376063:18997050 -g1,6515:32583029,41376063 -) -(1,6517:6630773,42697601:25952256,404226,76021 -(1,6516:6630773,42697601:0,0,0 -g1,6516:6630773,42697601 -g1,6516:6630773,42697601 -g1,6516:6303093,42697601 -(1,6516:6303093,42697601:0,0,0 -) -g1,6516:6630773,42697601 -) -k1,6517:6630773,42697601:0 -h1,6517:7895356,42697601:0,0,0 -k1,6517:32583028,42697601:24687672 -g1,6517:32583028,42697601 -) -(1,6524:6630773,43429315:25952256,404226,82312 -(1,6519:6630773,43429315:0,0,0 -g1,6519:6630773,43429315 -g1,6519:6630773,43429315 -g1,6519:6303093,43429315 -(1,6519:6303093,43429315:0,0,0 -) -g1,6519:6630773,43429315 -) -g1,6524:7579210,43429315 -g1,6524:7895356,43429315 -g1,6524:8211502,43429315 -g1,6524:8527648,43429315 -g1,6524:8843794,43429315 -g1,6524:9159940,43429315 -g1,6524:10740669,43429315 -k1,6524:10740669,43429315:0 -h1,6524:12005252,43429315:0,0,0 -k1,6524:32583028,43429315:20577776 -g1,6524:32583028,43429315 -) -(1,6524:6630773,44095493:25952256,404226,82312 -h1,6524:6630773,44095493:0,0,0 -g1,6524:7579210,44095493 -g1,6524:9159938,44095493 -g1,6524:10740667,44095493 -h1,6524:12005250,44095493:0,0,0 -k1,6524:32583030,44095493:20577780 -g1,6524:32583030,44095493 -) -(1,6524:6630773,44761671:25952256,404226,82312 -h1,6524:6630773,44761671:0,0,0 -g1,6524:7579210,44761671 -g1,6524:9159938,44761671 -g1,6524:10740667,44761671 -g1,6524:11056813,44761671 -h1,6524:12005250,44761671:0,0,0 -k1,6524:32583030,44761671:20577780 -g1,6524:32583030,44761671 -) -(1,6524:6630773,45427849:25952256,404226,82312 -h1,6524:6630773,45427849:0,0,0 -g1,6524:7579210,45427849 -g1,6524:9159938,45427849 -g1,6524:9476084,45427849 -g1,6524:10740667,45427849 -h1,6524:12005250,45427849:0,0,0 -k1,6524:32583030,45427849:20577780 -g1,6524:32583030,45427849 -) -] -) -g1,6525:32583029,45510161 -g1,6525:6630773,45510161 -g1,6525:6630773,45510161 -g1,6525:32583029,45510161 -g1,6525:32583029,45510161 -) -h1,6525:6630773,45706769:0,0,0 -] -(1,6529:32583029,45706769:0,0,0 -g1,6529:32583029,45706769 -) -) -] -(1,6529:6630773,47279633:25952256,0,0 -h1,6529:6630773,47279633:25952256,0,0 -) -] -h1,6529:4262630,4025873:0,0,0 -] -!23302 +[1,6512:6630773,45706769:25952256,40108032,0 +v1,6438:6630773,6254097:0,393216,0 +(1,6439:6630773,9371914:25952256,3511033,616038 +g1,6439:6630773,9371914 +(1,6439:6630773,9371914:25952256,3511033,616038 +(1,6439:6630773,9987952:25952256,4127071,0 +[1,6439:6630773,9987952:25952256,4127071,0 +(1,6439:6630773,9961738:25952256,4074643,0 +r1,6439:6656987,9961738:26214,4074643,0 +[1,6439:6656987,9961738:25899828,4074643,0 +(1,6439:6656987,9371914:25899828,2894995,0 +[1,6439:7246811,9371914:24720180,2894995,0 +(1,6439:7246811,7562455:24720180,1085536,298548 +(1,6438:7246811,7562455:0,1085536,298548 +r1,6439:8753226,7562455:1506415,1384084,298548 +k1,6438:7246811,7562455:-1506415 +) +(1,6438:7246811,7562455:1506415,1085536,298548 +) +k1,6438:8922415,7562455:169189 +k1,6438:9579163,7562455:169160 +k1,6438:12995661,7562455:169189 +k1,6438:13974220,7562455:169189 +k1,6438:15162494,7562455:169189 +k1,6438:18027180,7562455:169190 +k1,6438:18847797,7562455:169189 +k1,6438:19764752,7562455:169189 +k1,6438:22305689,7562455:169189 +k1,6438:23006376,7562455:169190 +k1,6438:24460071,7562455:169189 +k1,6438:25648345,7562455:169189 +k1,6438:27795411,7562455:169189 +k1,6438:28647486,7562455:169190 +k1,6438:30834529,7562455:169189 +k1,6438:31966991,7562455:0 +) +(1,6439:7246811,8403943:24720180,513147,134348 +k1,6438:9551763,8403943:175687 +k1,6438:10475216,8403943:175687 +k1,6438:12856190,8403943:175687 +k1,6438:13718038,8403943:175686 +k1,6438:14249585,8403943:175687 +k1,6438:17600491,8403943:175687 +k1,6438:20848506,8403943:175687 +k1,6438:21675621,8403943:175687 +k1,6438:22870393,8403943:175687 +k1,6438:24352212,8403943:175686 +k1,6438:26656508,8403943:175687 +k1,6438:30112927,8403943:175687 +k1,6438:30947906,8403943:175687 +k1,6438:31966991,8403943:0 +) +(1,6439:7246811,9245431:24720180,513147,126483 +g1,6438:9817788,9245431 +k1,6439:31966990,9245431:19280036 +g1,6439:31966990,9245431 +) +] +) +] +r1,6439:32583029,9961738:26214,4074643,0 +) +] +) +) +g1,6439:32583029,9371914 +) +h1,6439:6630773,9987952:0,0,0 +v1,6442:6630773,11415150:0,393216,0 +(1,6451:6630773,13769151:25952256,2747217,196608 +g1,6451:6630773,13769151 +g1,6451:6630773,13769151 +g1,6451:6434165,13769151 +(1,6451:6434165,13769151:0,2747217,196608 +r1,6451:32779637,13769151:26345472,2943825,196608 +k1,6451:6434165,13769151:-26345472 +) +(1,6451:6434165,13769151:26345472,2747217,196608 +[1,6451:6630773,13769151:25952256,2550609,0 +(1,6444:6630773,11629060:25952256,410518,82312 +(1,6443:6630773,11629060:0,0,0 +g1,6443:6630773,11629060 +g1,6443:6630773,11629060 +g1,6443:6303093,11629060 +(1,6443:6303093,11629060:0,0,0 +) +g1,6443:6630773,11629060 +) +g1,6444:9476084,11629060 +g1,6444:10424522,11629060 +g1,6444:16431291,11629060 +g1,6444:18012020,11629060 +g1,6444:18644312,11629060 +h1,6444:19592749,11629060:0,0,0 +k1,6444:32583029,11629060:12990280 +g1,6444:32583029,11629060 +) +(1,6445:6630773,12295238:25952256,404226,101187 +h1,6445:6630773,12295238:0,0,0 +g1,6445:7263065,12295238 +g1,6445:8211503,12295238 +g1,6445:13269834,12295238 +g1,6445:15482854,12295238 +g1,6445:16115146,12295238 +g1,6445:17063584,12295238 +g1,6445:18328167,12295238 +g1,6445:18960459,12295238 +h1,6445:20541187,12295238:0,0,0 +k1,6445:32583029,12295238:12041842 +g1,6445:32583029,12295238 +) +(1,6446:6630773,12961416:25952256,404226,76021 +h1,6446:6630773,12961416:0,0,0 +k1,6446:6630773,12961416:0 +h1,6446:8527647,12961416:0,0,0 +k1,6446:32583029,12961416:24055382 +g1,6446:32583029,12961416 +) +(1,6450:6630773,13693130:25952256,404226,76021 +(1,6448:6630773,13693130:0,0,0 +g1,6448:6630773,13693130 +g1,6448:6630773,13693130 +g1,6448:6303093,13693130 +(1,6448:6303093,13693130:0,0,0 +) +g1,6448:6630773,13693130 +) +g1,6450:7579210,13693130 +g1,6450:7895356,13693130 +g1,6450:9159939,13693130 +g1,6450:11372959,13693130 +g1,6450:13269833,13693130 +g1,6450:15166707,13693130 +g1,6450:17063581,13693130 +g1,6450:18328164,13693130 +g1,6450:20225038,13693130 +h1,6450:21173475,13693130:0,0,0 +k1,6450:32583029,13693130:11409554 +g1,6450:32583029,13693130 +) +] +) +g1,6451:32583029,13769151 +g1,6451:6630773,13769151 +g1,6451:6630773,13769151 +g1,6451:32583029,13769151 +g1,6451:32583029,13769151 +) +h1,6451:6630773,13965759:0,0,0 +v1,6455:6630773,15568266:0,393216,0 +(1,6456:6630773,17727813:25952256,2552763,616038 +g1,6456:6630773,17727813 +(1,6456:6630773,17727813:25952256,2552763,616038 +(1,6456:6630773,18343851:25952256,3168801,0 +[1,6456:6630773,18343851:25952256,3168801,0 +(1,6456:6630773,18317637:25952256,3116373,0 +r1,6456:6656987,18317637:26214,3116373,0 +[1,6456:6656987,18317637:25899828,3116373,0 +(1,6456:6656987,17727813:25899828,1936725,0 +[1,6456:7246811,17727813:24720180,1936725,0 +(1,6456:7246811,16878462:24720180,1087374,126483 +k1,6455:8670219,16878462:213705 +k1,6455:11089866,16878462:213705 +k1,6455:12322656,16878462:213705 +k1,6455:15197777,16878462:213704 +k1,6455:17266806,16878462:213705 +k1,6455:18205339,16878462:213705 +k1,6455:19703550,16878462:213705 +k1,6455:20375352,16878462:213705 +k1,6455:23707260,16878462:213705 +k1,6455:25124860,16878462:213704 +k1,6455:27406881,16878462:213705 +k1,6455:29947769,16878462:213705 +k1,6455:30820766,16878462:213705 +k1,6456:31966991,16878462:0 +) +(1,6456:7246811,17719950:24720180,355205,7863 +g1,6455:8895696,17719950 +k1,6456:31966991,17719950:20829308 +g1,6456:31966991,17719950 +) +] +) +] +r1,6456:32583029,18317637:26214,3116373,0 +) +] +) +) +g1,6456:32583029,17727813 +) +h1,6456:6630773,18343851:0,0,0 +v1,6459:6630773,19565849:0,393216,0 +(1,6460:6630773,23534857:25952256,4362224,616038 +g1,6460:6630773,23534857 +(1,6460:6630773,23534857:25952256,4362224,616038 +(1,6460:6630773,24150895:25952256,4978262,0 +[1,6460:6630773,24150895:25952256,4978262,0 +(1,6460:6630773,24124681:25952256,4925834,0 +r1,6460:6656987,24124681:26214,4925834,0 +[1,6460:6656987,24124681:25899828,4925834,0 +(1,6460:6656987,23534857:25899828,3746186,0 +[1,6460:7246811,23534857:24720180,3746186,0 +(1,6460:7246811,20876045:24720180,1087374,134348 +k1,6459:8662973,20876045:206459 +k1,6459:10416081,20876045:206458 +k1,6459:11458124,20876045:206459 +k1,6459:12683667,20876045:206458 +k1,6459:14278179,20876045:206459 +k1,6459:16313091,20876045:206458 +k1,6459:17467201,20876045:206459 +(1,6459:17467201,20876045:0,452978,115847 +r1,6460:19935738,20876045:2468537,568825,115847 +k1,6459:17467201,20876045:-2468537 +) +(1,6459:17467201,20876045:2468537,452978,115847 +k1,6459:17467201,20876045:3277 +h1,6459:19932461,20876045:0,411205,112570 +) +k1,6459:20142197,20876045:206459 +k1,6459:21540100,20876045:206458 +(1,6459:21540100,20876045:0,452978,115847 +r1,6460:23656925,20876045:2116825,568825,115847 +k1,6459:21540100,20876045:-2116825 +) +(1,6459:21540100,20876045:2116825,452978,115847 +k1,6459:21540100,20876045:3277 +h1,6459:23653648,20876045:0,411205,112570 +) +k1,6459:23863384,20876045:206459 +k1,6459:25261287,20876045:206458 +k1,6459:27251636,20876045:206459 +k1,6459:29097149,20876045:206458 +k1,6459:30796518,20876045:206459 +k1,6459:31966991,20876045:0 +) +(1,6460:7246811,21717533:24720180,513147,134348 +k1,6459:11124248,21717533:212664 +k1,6459:12667293,21717533:212664 +k1,6459:16106951,21717533:212665 +k1,6459:19722244,21717533:212664 +k1,6459:21039190,21717533:212664 +k1,6459:21999620,21717533:212664 +k1,6459:24417571,21717533:212664 +k1,6459:25281664,21717533:212665 +k1,6459:26513413,21717533:212664 +k1,6459:29097825,21717533:212664 +k1,6459:31966991,21717533:0 +) +(1,6460:7246811,22559021:24720180,513147,134348 +k1,6459:8735861,22559021:262871 +k1,6459:10169205,22559021:262871 +k1,6459:12229073,22559021:262871 +k1,6459:13788902,22559021:262871 +(1,6459:13788902,22559021:0,452978,115847 +r1,6460:16257439,22559021:2468537,568825,115847 +k1,6459:13788902,22559021:-2468537 +) +(1,6459:13788902,22559021:2468537,452978,115847 +k1,6459:13788902,22559021:3277 +h1,6459:16254162,22559021:0,411205,112570 +) +k1,6459:16520310,22559021:262871 +k1,6459:17990355,22559021:262872 +k1,6459:21109940,22559021:262871 +k1,6459:22024239,22559021:262871 +k1,6459:23762325,22559021:262871 +k1,6459:27305928,22559021:262871 +k1,6459:29637115,22559021:262871 +k1,6459:31350953,22559021:262871 +k1,6459:31966991,22559021:0 +) +(1,6460:7246811,23400509:24720180,513147,134348 +g1,6459:10878816,23400509 +g1,6459:14432178,23400509 +g1,6459:15985381,23400509 +g1,6459:18735271,23400509 +g1,6459:19882151,23400509 +g1,6459:20496223,23400509 +g1,6459:22191639,23400509 +k1,6460:31966991,23400509:7947553 +g1,6460:31966991,23400509 +) +] +) +] +r1,6460:32583029,24124681:26214,4925834,0 +) +] +) +) +g1,6460:32583029,23534857 +) +h1,6460:6630773,24150895:0,0,0 +(1,6463:6630773,25372893:25952256,513147,134348 +h1,6462:6630773,25372893:983040,0,0 +k1,6462:8387880,25372893:296310 +k1,6462:9552542,25372893:296310 +k1,6462:11612426,25372893:296310 +k1,6462:12264597,25372893:296311 +k1,6462:15256403,25372893:296310 +k1,6462:16837219,25372893:296310 +k1,6462:19474475,25372893:296310 +k1,6462:20126645,25372893:296310 +k1,6462:22103298,25372893:296310 +k1,6462:23058900,25372893:296310 +k1,6462:24374296,25372893:296311 +k1,6462:26324079,25372893:296310 +k1,6462:28633655,25372893:296310 +k1,6462:29616127,25372893:296310 +k1,6462:30700835,25372893:296310 +k1,6462:32583029,25372893:0 +) +(1,6463:6630773,26214381:25952256,513147,126483 +k1,6462:8259007,26214381:194306 +k1,6462:9472398,26214381:194306 +k1,6462:13341963,26214381:194306 +k1,6462:14195561,26214381:194306 +k1,6462:15408952,26214381:194306 +k1,6462:17283601,26214381:194306 +k1,6462:20256634,26214381:194306 +k1,6462:21212467,26214381:194305 +(1,6462:21212467,26214381:0,452978,115847 +r1,6462:23681004,26214381:2468537,568825,115847 +k1,6462:21212467,26214381:-2468537 +) +(1,6462:21212467,26214381:2468537,452978,115847 +k1,6462:21212467,26214381:3277 +h1,6462:23677727,26214381:0,411205,112570 +) +k1,6462:23875310,26214381:194306 +k1,6462:25061176,26214381:194306 +k1,6462:26274567,26214381:194306 +k1,6462:28122346,26214381:194306 +k1,6462:29002814,26214381:194306 +k1,6462:30941033,26214381:194306 +k1,6462:31794631,26214381:194306 +k1,6462:32583029,26214381:0 +) +(1,6463:6630773,27055869:25952256,513147,134348 +k1,6462:8719909,27055869:206942 +k1,6462:9880401,27055869:206943 +k1,6462:11353499,27055869:206942 +k1,6462:12176480,27055869:206943 +k1,6462:13402507,27055869:206942 +k1,6462:14993570,27055869:206943 +k1,6462:18365901,27055869:206942 +k1,6462:18928704,27055869:206943 +k1,6462:21573585,27055869:206942 +k1,6462:24476024,27055869:206943 +k1,6462:25967472,27055869:206942 +k1,6462:28515361,27055869:206943 +k1,6462:29510701,27055869:206942 +k1,6462:32583029,27055869:0 +) +(1,6463:6630773,27897357:25952256,505283,134348 +g1,6462:10494775,27897357 +g1,6462:11418832,27897357 +g1,6462:12902567,27897357 +g1,6462:14810320,27897357 +g1,6462:16200994,27897357 +g1,6462:18558979,27897357 +g1,6462:19862490,27897357 +g1,6462:20809485,27897357 +g1,6462:22809643,27897357 +k1,6463:32583029,27897357:6418598 +g1,6463:32583029,27897357 +) +v1,6465:6630773,28944045:0,393216,0 +(1,6477:6630773,33296579:25952256,4745750,196608 +g1,6477:6630773,33296579 +g1,6477:6630773,33296579 +g1,6477:6434165,33296579 +(1,6477:6434165,33296579:0,4745750,196608 +r1,6477:32779637,33296579:26345472,4942358,196608 +k1,6477:6434165,33296579:-26345472 +) +(1,6477:6434165,33296579:26345472,4745750,196608 +[1,6477:6630773,33296579:25952256,4549142,0 +(1,6467:6630773,29151663:25952256,404226,82312 +(1,6466:6630773,29151663:0,0,0 +g1,6466:6630773,29151663 +g1,6466:6630773,29151663 +g1,6466:6303093,29151663 +(1,6466:6303093,29151663:0,0,0 +) +g1,6466:6630773,29151663 +) +g1,6467:11372959,29151663 +g1,6467:12321397,29151663 +g1,6467:17379729,29151663 +g1,6467:18960458,29151663 +g1,6467:19592750,29151663 +g1,6467:20857333,29151663 +g1,6467:21805770,29151663 +g1,6467:22438062,29151663 +g1,6467:23702646,29151663 +g1,6467:25283375,29151663 +g1,6467:25915667,29151663 +h1,6467:26547959,29151663:0,0,0 +k1,6467:32583029,29151663:6035070 +g1,6467:32583029,29151663 +) +(1,6468:6630773,29817841:25952256,404226,107478 +h1,6468:6630773,29817841:0,0,0 +g1,6468:11372959,29817841 +g1,6468:12321397,29817841 +g1,6468:19276602,29817841 +g1,6468:21489622,29817841 +g1,6468:22121914,29817841 +h1,6468:22754206,29817841:0,0,0 +k1,6468:32583029,29817841:9828823 +g1,6468:32583029,29817841 +) +(1,6469:6630773,30484019:25952256,404226,6290 +h1,6469:6630773,30484019:0,0,0 +h1,6469:11056813,30484019:0,0,0 +k1,6469:32583029,30484019:21526216 +g1,6469:32583029,30484019 +) +(1,6476:6630773,31215733:25952256,404226,82312 +(1,6471:6630773,31215733:0,0,0 +g1,6471:6630773,31215733 +g1,6471:6630773,31215733 +g1,6471:6303093,31215733 +(1,6471:6303093,31215733:0,0,0 +) +g1,6471:6630773,31215733 +) +g1,6476:7579210,31215733 +g1,6476:7895356,31215733 +g1,6476:8211502,31215733 +g1,6476:8527648,31215733 +g1,6476:8843794,31215733 +g1,6476:9159940,31215733 +g1,6476:10740669,31215733 +k1,6476:10740669,31215733:0 +h1,6476:12005252,31215733:0,0,0 +k1,6476:32583028,31215733:20577776 +g1,6476:32583028,31215733 +) +(1,6476:6630773,31881911:25952256,404226,82312 +h1,6476:6630773,31881911:0,0,0 +g1,6476:7579210,31881911 +g1,6476:9159938,31881911 +g1,6476:10740667,31881911 +h1,6476:12005250,31881911:0,0,0 +k1,6476:32583030,31881911:20577780 +g1,6476:32583030,31881911 +) +(1,6476:6630773,32548089:25952256,404226,82312 +h1,6476:6630773,32548089:0,0,0 +g1,6476:7579210,32548089 +g1,6476:9159938,32548089 +g1,6476:10740667,32548089 +g1,6476:11056813,32548089 +h1,6476:12005250,32548089:0,0,0 +k1,6476:32583030,32548089:20577780 +g1,6476:32583030,32548089 +) +(1,6476:6630773,33214267:25952256,404226,82312 +h1,6476:6630773,33214267:0,0,0 +g1,6476:7579210,33214267 +g1,6476:9159938,33214267 +g1,6476:9476084,33214267 +g1,6476:10740667,33214267 +h1,6476:12005250,33214267:0,0,0 +k1,6476:32583030,33214267:20577780 +g1,6476:32583030,33214267 +) +] +) +g1,6477:32583029,33296579 +g1,6477:6630773,33296579 +g1,6477:6630773,33296579 +g1,6477:32583029,33296579 +g1,6477:32583029,33296579 +) +h1,6477:6630773,33493187:0,0,0 +v1,6481:6630773,34920384:0,393216,0 +(1,6485:6630773,35235481:25952256,708313,196608 +g1,6485:6630773,35235481 +g1,6485:6630773,35235481 +g1,6485:6434165,35235481 +(1,6485:6434165,35235481:0,708313,196608 +r1,6485:32779637,35235481:26345472,904921,196608 +k1,6485:6434165,35235481:-26345472 +) +(1,6485:6434165,35235481:26345472,708313,196608 +[1,6485:6630773,35235481:25952256,511705,0 +(1,6483:6630773,35134294:25952256,410518,101187 +(1,6482:6630773,35134294:0,0,0 +g1,6482:6630773,35134294 +g1,6482:6630773,35134294 +g1,6482:6303093,35134294 +(1,6482:6303093,35134294:0,0,0 +) +g1,6482:6630773,35134294 +) +g1,6483:9792230,35134294 +g1,6483:10740668,35134294 +g1,6483:14534417,35134294 +h1,6483:15482854,35134294:0,0,0 +k1,6483:32583030,35134294:17100176 +g1,6483:32583030,35134294 +) +] +) +g1,6485:32583029,35235481 +g1,6485:6630773,35235481 +g1,6485:6630773,35235481 +g1,6485:32583029,35235481 +g1,6485:32583029,35235481 +) +h1,6485:6630773,35432089:0,0,0 +v1,6489:6630773,36859287:0,393216,0 +(1,6506:6630773,42605187:25952256,6139116,196608 +g1,6506:6630773,42605187 +g1,6506:6630773,42605187 +g1,6506:6434165,42605187 +(1,6506:6434165,42605187:0,6139116,196608 +r1,6506:32779637,42605187:26345472,6335724,196608 +k1,6506:6434165,42605187:-26345472 +) +(1,6506:6434165,42605187:26345472,6139116,196608 +[1,6506:6630773,42605187:25952256,5942508,0 +(1,6491:6630773,37073197:25952256,410518,101187 +(1,6490:6630773,37073197:0,0,0 +g1,6490:6630773,37073197 +g1,6490:6630773,37073197 +g1,6490:6303093,37073197 +(1,6490:6303093,37073197:0,0,0 +) +g1,6490:6630773,37073197 +) +g1,6491:7263065,37073197 +g1,6491:8211503,37073197 +g1,6491:10740669,37073197 +g1,6491:11372961,37073197 +g1,6491:16431293,37073197 +g1,6491:18644313,37073197 +g1,6491:19276605,37073197 +g1,6491:20225043,37073197 +g1,6491:21489626,37073197 +g1,6491:22121918,37073197 +h1,6491:25283375,37073197:0,0,0 +k1,6491:32583029,37073197:7299654 +g1,6491:32583029,37073197 +) +(1,6492:6630773,37739375:25952256,404226,76021 +h1,6492:6630773,37739375:0,0,0 +k1,6492:6630773,37739375:0 +h1,6492:9159938,37739375:0,0,0 +k1,6492:32583030,37739375:23423092 +g1,6492:32583030,37739375 +) +(1,6496:6630773,38471089:25952256,404226,76021 +(1,6494:6630773,38471089:0,0,0 +g1,6494:6630773,38471089 +g1,6494:6630773,38471089 +g1,6494:6303093,38471089 +(1,6494:6303093,38471089:0,0,0 +) +g1,6494:6630773,38471089 +) +g1,6496:7579210,38471089 +g1,6496:8843793,38471089 +h1,6496:11372958,38471089:0,0,0 +k1,6496:32583030,38471089:21210072 +g1,6496:32583030,38471089 +) +(1,6498:6630773,39792627:25952256,277873,0 +(1,6497:6630773,39792627:0,0,0 +g1,6497:6630773,39792627 +g1,6497:6630773,39792627 +g1,6497:6303093,39792627 +(1,6497:6303093,39792627:0,0,0 +) +g1,6497:6630773,39792627 +) +h1,6498:6946919,39792627:0,0,0 +k1,6498:32583029,39792627:25636110 +g1,6498:32583029,39792627 +) +(1,6505:6630773,40524341:25952256,404226,82312 +(1,6500:6630773,40524341:0,0,0 +g1,6500:6630773,40524341 +g1,6500:6630773,40524341 +g1,6500:6303093,40524341 +(1,6500:6303093,40524341:0,0,0 +) +g1,6500:6630773,40524341 +) +g1,6505:7579210,40524341 +g1,6505:7895356,40524341 +g1,6505:8211502,40524341 +g1,6505:8527648,40524341 +g1,6505:8843794,40524341 +g1,6505:9159940,40524341 +g1,6505:10740669,40524341 +k1,6505:10740669,40524341:0 +h1,6505:12005252,40524341:0,0,0 +k1,6505:32583028,40524341:20577776 +g1,6505:32583028,40524341 +) +(1,6505:6630773,41190519:25952256,404226,82312 +h1,6505:6630773,41190519:0,0,0 +g1,6505:7579210,41190519 +g1,6505:9159938,41190519 +g1,6505:10740667,41190519 +h1,6505:12005250,41190519:0,0,0 +k1,6505:32583030,41190519:20577780 +g1,6505:32583030,41190519 +) +(1,6505:6630773,41856697:25952256,404226,82312 +h1,6505:6630773,41856697:0,0,0 +g1,6505:7579210,41856697 +g1,6505:9159938,41856697 +g1,6505:10740667,41856697 +g1,6505:11056813,41856697 +h1,6505:12005250,41856697:0,0,0 +k1,6505:32583030,41856697:20577780 +g1,6505:32583030,41856697 +) +(1,6505:6630773,42522875:25952256,404226,82312 +h1,6505:6630773,42522875:0,0,0 +g1,6505:7579210,42522875 +g1,6505:9159938,42522875 +g1,6505:9476084,42522875 +g1,6505:10740667,42522875 +h1,6505:12005250,42522875:0,0,0 +k1,6505:32583030,42522875:20577780 +g1,6505:32583030,42522875 +) +] +) +g1,6506:32583029,42605187 +g1,6506:6630773,42605187 +g1,6506:6630773,42605187 +g1,6506:32583029,42605187 +g1,6506:32583029,42605187 +) +h1,6506:6630773,42801795:0,0,0 +(1,6510:6630773,44023793:25952256,513147,134348 +h1,6509:6630773,44023793:983040,0,0 +k1,6509:8442216,44023793:200568 +k1,6509:9661870,44023793:200569 +k1,6509:11833106,44023793:200568 +k1,6509:14062669,44023793:200568 +k1,6509:15131589,44023793:200568 +k1,6509:17537445,44023793:200569 +(1,6509:17537445,44023793:0,435480,115847 +r1,6509:21061118,44023793:3523673,551327,115847 +k1,6509:17537445,44023793:-3523673 +) +(1,6509:17537445,44023793:3523673,435480,115847 +g1,6509:20002705,44023793 +g1,6509:20706129,44023793 +h1,6509:21057841,44023793:0,411205,112570 +) +k1,6509:21435356,44023793:200568 +k1,6509:22708093,44023793:200568 +k1,6509:23374623,44023793:200569 +k1,6509:24443543,44023793:200568 +k1,6509:26081316,44023793:200568 +(1,6509:26081316,44023793:0,435480,115847 +r1,6509:29604989,44023793:3523673,551327,115847 +k1,6509:26081316,44023793:-3523673 +) +(1,6509:26081316,44023793:3523673,435480,115847 +g1,6509:28546576,44023793 +g1,6509:29250000,44023793 +h1,6509:29601712,44023793:0,411205,112570 +) +k1,6509:29979227,44023793:200568 +k1,6509:31048148,44023793:200569 +k1,6509:32227169,44023793:200568 +k1,6509:32583029,44023793:0 +) +(1,6510:6630773,44865281:25952256,513147,134348 +k1,6509:8816305,44865281:174887 +k1,6509:10671536,44865281:174888 +k1,6509:12130929,44865281:174887 +k1,6509:12837313,44865281:174887 +k1,6509:16745787,44865281:174888 +k1,6509:17749704,44865281:174887 +k1,6509:20177719,44865281:174887 +k1,6509:21371692,44865281:174888 +k1,6509:23981897,44865281:174887 +k1,6509:26145147,44865281:174888 +k1,6509:26979326,44865281:174887 +k1,6509:28173298,44865281:174887 +k1,6509:30435508,44865281:174888 +k1,6509:31478747,44865281:174887 +k1,6509:32583029,44865281:0 +) +(1,6510:6630773,45706769:25952256,513147,126483 +g1,6509:9969177,45706769 +g1,6509:11187491,45706769 +g1,6509:13229592,45706769 +g1,6509:14822772,45706769 +g1,6509:17717497,45706769 +(1,6509:17717497,45706769:0,452978,115847 +r1,6509:18779186,45706769:1061689,568825,115847 +k1,6509:17717497,45706769:-1061689 +) +(1,6509:17717497,45706769:1061689,452978,115847 +k1,6509:17717497,45706769:3277 +h1,6509:18775909,45706769:0,411205,112570 +) +k1,6510:32583029,45706769:13630173 +g1,6510:32583029,45706769 +) +] +(1,6512:32583029,45706769:0,0,0 +g1,6512:32583029,45706769 +) +) +] +(1,6512:6630773,47279633:25952256,0,0 +h1,6512:6630773,47279633:25952256,0,0 +) +] +h1,6512:4262630,4025873:0,0,0 +] +!23287 }122 -Input:922:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:923:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:924:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:925:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:926:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:927:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!522 +Input:914:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:915:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:916:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:917:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:918:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:919:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:920:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:921:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:922:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:923:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!922 {123 -[1,6586:4262630,47279633:28320399,43253760,0 -(1,6586:4262630,4025873:0,0,0 -[1,6586:-473657,4025873:25952256,0,0 -(1,6586:-473657,-710414:25952256,0,0 -h1,6586:-473657,-710414:0,0,0 -(1,6586:-473657,-710414:0,0,0 -(1,6586:-473657,-710414:0,0,0 -g1,6586:-473657,-710414 -(1,6586:-473657,-710414:65781,0,65781 -g1,6586:-407876,-710414 -[1,6586:-407876,-644633:0,0,0 +[1,6591:4262630,47279633:28320399,43253760,0 +(1,6591:4262630,4025873:0,0,0 +[1,6591:-473657,4025873:25952256,0,0 +(1,6591:-473657,-710414:25952256,0,0 +h1,6591:-473657,-710414:0,0,0 +(1,6591:-473657,-710414:0,0,0 +(1,6591:-473657,-710414:0,0,0 +g1,6591:-473657,-710414 +(1,6591:-473657,-710414:65781,0,65781 +g1,6591:-407876,-710414 +[1,6591:-407876,-644633:0,0,0 ] ) -k1,6586:-473657,-710414:-65781 +k1,6591:-473657,-710414:-65781 ) ) -k1,6586:25478599,-710414:25952256 -g1,6586:25478599,-710414 +k1,6591:25478599,-710414:25952256 +g1,6591:25478599,-710414 ) ] ) -[1,6586:6630773,47279633:25952256,43253760,0 -[1,6586:6630773,4812305:25952256,786432,0 -(1,6586:6630773,4812305:25952256,505283,134348 -(1,6586:6630773,4812305:25952256,505283,134348 -g1,6586:3078558,4812305 -[1,6586:3078558,4812305:0,0,0 -(1,6586:3078558,2439708:0,1703936,0 -k1,6586:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6586:2537886,2439708:1179648,16384,0 +[1,6591:6630773,47279633:25952256,43253760,0 +[1,6591:6630773,4812305:25952256,786432,0 +(1,6591:6630773,4812305:25952256,505283,134348 +(1,6591:6630773,4812305:25952256,505283,134348 +g1,6591:3078558,4812305 +[1,6591:3078558,4812305:0,0,0 +(1,6591:3078558,2439708:0,1703936,0 +k1,6591:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6591:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6586:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6591:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6586:3078558,4812305:0,0,0 -(1,6586:3078558,2439708:0,1703936,0 -g1,6586:29030814,2439708 -g1,6586:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6586:36151628,1915420:16384,1179648,0 +[1,6591:3078558,4812305:0,0,0 +(1,6591:3078558,2439708:0,1703936,0 +g1,6591:29030814,2439708 +g1,6591:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6591:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6586:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6591:37855564,2439708:1179648,16384,0 +) +) +k1,6591:3078556,2439708:-34777008 +) +] +[1,6591:3078558,4812305:0,0,0 +(1,6591:3078558,49800853:0,16384,2228224 +k1,6591:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6591:2537886,49800853:1179648,16384,0 ) +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6591:3078558,51504789:16384,1179648,0 ) -k1,6586:3078556,2439708:-34777008 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] -[1,6586:3078558,4812305:0,0,0 -(1,6586:3078558,49800853:0,16384,2228224 -k1,6586:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6586:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6586:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 ) ] +[1,6591:3078558,4812305:0,0,0 +(1,6591:3078558,49800853:0,16384,2228224 +g1,6591:29030814,49800853 +g1,6591:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6591:36151628,51504789:16384,1179648,0 ) -) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] -[1,6586:3078558,4812305:0,0,0 -(1,6586:3078558,49800853:0,16384,2228224 -g1,6586:29030814,49800853 -g1,6586:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6586:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] -) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6586:37855564,49800853:1179648,16384,0 -) -) -k1,6586:3078556,49800853:-34777008 -) -] -g1,6586:6630773,4812305 -k1,6586:18752969,4812305:10926819 -g1,6586:20139710,4812305 -g1,6586:20788516,4812305 -g1,6586:24102671,4812305 -g1,6586:28605649,4812305 -g1,6586:30015328,4812305 -) -) -] -[1,6586:6630773,45706769:25952256,40108032,0 -(1,6586:6630773,45706769:25952256,40108032,0 -(1,6586:6630773,45706769:0,0,0 -g1,6586:6630773,45706769 -) -[1,6586:6630773,45706769:25952256,40108032,0 -(1,6529:6630773,6254097:25952256,513147,134348 -h1,6528:6630773,6254097:983040,0,0 -k1,6528:8358958,6254097:257557 -k1,6528:10266771,6254097:257616 -k1,6528:13044246,6254097:257616 -k1,6528:16136949,6254097:257616 -k1,6528:17466734,6254097:257616 -k1,6528:20208165,6254097:257616 -k1,6528:21117209,6254097:257616 -k1,6528:23144296,6254097:257615 -k1,6528:25862134,6254097:257616 -k1,6528:28134982,6254097:257616 -k1,6528:29411683,6254097:257616 -k1,6528:30681830,6254097:257616 -k1,6529:32583029,6254097:0 -) -(1,6529:6630773,7095585:25952256,513147,126483 -k1,6528:8147101,7095585:212817 -k1,6528:10435443,7095585:212817 -k1,6528:12677256,7095585:212818 -k1,6528:13421570,7095585:212817 -k1,6528:15332425,7095585:212817 -k1,6528:16413594,7095585:212817 -k1,6528:18389985,7095585:212817 -k1,6528:18958663,7095585:212818 -k1,6528:21866976,7095585:212817 -k1,6528:23364299,7095585:212817 -k1,6528:25918062,7095585:212817 -k1,6528:26486739,7095585:212817 -k1,6528:28379900,7095585:212818 -k1,6528:29252009,7095585:212817 -k1,6528:29820686,7095585:212817 -k1,6528:32583029,7095585:0 -) -(1,6529:6630773,7937073:25952256,505283,134348 -k1,6528:8862875,7937073:218836 -k1,6528:10524157,7937073:218835 -k1,6528:11531391,7937073:218836 -k1,6528:13632420,7937073:218835 -k1,6528:14923425,7937073:218836 -k1,6528:17166668,7937073:218836 -k1,6528:18827950,7937073:218835 -k1,6528:20377167,7937073:218836 -k1,6528:22379237,7937073:218835 -k1,6528:23466425,7937073:218836 -k1,6528:26473162,7937073:218835 -k1,6528:29074887,7937073:218836 -k1,6528:32583029,7937073:0 -) -(1,6529:6630773,8778561:25952256,505283,134348 -(1,6528:6837867,8778561:0,435480,115847 -r1,6528:10361540,8778561:3523673,551327,115847 -k1,6528:6837867,8778561:-3523673 -) -(1,6528:6837867,8778561:3523673,435480,115847 -g1,6528:9303127,8778561 -g1,6528:10006551,8778561 -h1,6528:10358263,8778561:0,411205,112570 -) -k1,6528:11021900,8778561:279596 -k1,6528:11657357,8778561:279597 -k1,6528:14024275,8778561:279596 -k1,6528:14835368,8778561:279596 -k1,6528:18067362,8778561:279597 -k1,6528:19740909,8778561:279596 -k1,6528:21472127,8778561:279596 -k1,6528:24134612,8778561:279596 -k1,6528:27776206,8778561:279597 -k1,6528:29074887,8778561:279596 -k1,6528:32583029,8778561:0 -) -(1,6529:6630773,9620049:25952256,513147,134348 -k1,6528:7765439,9620049:187015 -k1,6528:8971539,9620049:187015 -k1,6528:13782119,9620049:187015 -k1,6528:16352023,9620049:187015 -k1,6528:17155075,9620049:187014 -k1,6528:18361175,9620049:187015 -k1,6528:20983508,9620049:187015 -k1,6528:23257845,9620049:187015 -(1,6528:23464939,9620049:0,452978,115847 -r1,6528:28395459,9620049:4930520,568825,115847 -k1,6528:23464939,9620049:-4930520 -) -(1,6528:23464939,9620049:4930520,452978,115847 -k1,6528:23464939,9620049:3277 -h1,6528:28392182,9620049:0,411205,112570 -) -k1,6528:28963238,9620049:187015 -k1,6528:29778088,9620049:187015 -k1,6528:32583029,9620049:0 -) -(1,6529:6630773,10461537:25952256,505283,126483 -k1,6528:8541285,10461537:212474 -k1,6528:9622110,10461537:212473 -k1,6528:12622486,10461537:212474 -k1,6528:14038856,10461537:212474 -k1,6528:17759472,10461537:212474 -(1,6528:17966566,10461537:0,435480,115847 -r1,6528:21490239,10461537:3523673,551327,115847 -k1,6528:17966566,10461537:-3523673 -) -(1,6528:17966566,10461537:3523673,435480,115847 -g1,6528:20431826,10461537 -g1,6528:21135250,10461537 -h1,6528:21486962,10461537:0,411205,112570 -) -k1,6528:22083476,10461537:212473 -k1,6528:23747572,10461537:212474 -k1,6528:26342935,10461537:212474 -k1,6528:27171447,10461537:212474 -k1,6528:28403005,10461537:212473 -k1,6528:31394206,10461537:212474 -k1,6529:32583029,10461537:0 -) -(1,6529:6630773,11303025:25952256,513147,134348 -k1,6528:8014541,11303025:272277 -k1,6528:10988867,11303025:272277 -k1,6528:12280228,11303025:272276 -k1,6528:16060647,11303025:272277 -k1,6528:17280575,11303025:272277 -k1,6528:18709562,11303025:272277 -k1,6528:20185734,11303025:272276 -k1,6528:21074049,11303025:272277 -k1,6528:22365411,11303025:272277 -k1,6528:25073006,11303025:272277 -k1,6528:27168494,11303025:272276 -k1,6528:29074584,11303025:272277 -k1,6528:32051532,11303025:272277 -k1,6528:32583029,11303025:0 -) -(1,6529:6630773,12144513:25952256,513147,134348 -k1,6528:8105535,12144513:190256 -k1,6528:9057319,12144513:190256 -k1,6528:10982968,12144513:190256 -(1,6528:10982968,12144513:0,452978,115847 -r1,6528:13451505,12144513:2468537,568825,115847 -k1,6528:10982968,12144513:-2468537 -) -(1,6528:10982968,12144513:2468537,452978,115847 -k1,6528:10982968,12144513:3277 -h1,6528:13448228,12144513:0,411205,112570 -) -k1,6528:13641762,12144513:190257 -k1,6528:14851103,12144513:190256 -k1,6528:18386317,12144513:190256 -k1,6528:19235865,12144513:190256 -k1,6528:20445206,12144513:190256 -k1,6528:23070780,12144513:190256 -k1,6528:25348358,12144513:190256 -k1,6528:26221500,12144513:190257 -k1,6528:28061297,12144513:190256 -k1,6528:29638950,12144513:190256 -k1,6528:31714677,12144513:190256 -k1,6528:32583029,12144513:0 -) -(1,6529:6630773,12986001:25952256,505283,134348 -k1,6528:9583753,12986001:165078 -k1,6528:13256972,12986001:165077 -k1,6528:17667472,12986001:165078 -k1,6528:22353224,12986001:165078 -k1,6528:24213062,12986001:165077 -k1,6528:25708521,12986001:165078 -k1,6528:28607106,12986001:165078 -k1,6528:29763743,12986001:165077 -k1,6528:31966991,12986001:165078 -k1,6529:32583029,12986001:0 -) -(1,6529:6630773,13827489:25952256,513147,134348 -k1,6528:7381160,13827489:161874 -k1,6528:9241072,13827489:161874 -k1,6528:12116137,13827489:161874 -k1,6528:14870614,13827489:161873 -k1,6528:16299954,13827489:161874 -k1,6528:16817688,13827489:161874 -k1,6528:18852581,13827489:161874 -k1,6528:20868469,13827489:161874 -k1,6528:22049428,13827489:161874 -k1,6528:23745499,13827489:161873 -k1,6528:26350555,13827489:161874 -k1,6528:29399290,13827489:161874 -k1,6528:31206118,13827489:161874 -k1,6528:32583029,13827489:0 -) -(1,6529:6630773,14668977:25952256,513147,126483 -g1,6528:7849087,14668977 -g1,6528:10356494,14668977 -g1,6528:13334450,14668977 -g1,6528:14295207,14668977 -g1,6528:15513521,14668977 -g1,6528:18084498,14668977 -g1,6528:21152893,14668977 -g1,6528:22343682,14668977 -g1,6528:24581081,14668977 -g1,6528:25466472,14668977 -k1,6529:32583029,14668977:5408689 -g1,6529:32583029,14668977 -) -v1,6531:6630773,15858627:0,393216,0 -(1,6537:6630773,17480914:25952256,2015503,196608 -g1,6537:6630773,17480914 -g1,6537:6630773,17480914 -g1,6537:6434165,17480914 -(1,6537:6434165,17480914:0,2015503,196608 -r1,6537:32779637,17480914:26345472,2212111,196608 -k1,6537:6434165,17480914:-26345472 -) -(1,6537:6434165,17480914:26345472,2015503,196608 -[1,6537:6630773,17480914:25952256,1818895,0 -(1,6533:6630773,16072537:25952256,410518,82312 -(1,6532:6630773,16072537:0,0,0 -g1,6532:6630773,16072537 -g1,6532:6630773,16072537 -g1,6532:6303093,16072537 -(1,6532:6303093,16072537:0,0,0 -) -g1,6532:6630773,16072537 -) -g1,6533:10424521,16072537 -g1,6533:11372959,16072537 -g1,6533:15166708,16072537 -g1,6533:17063582,16072537 -g1,6533:17695874,16072537 -g1,6533:19908894,16072537 -h1,6533:20225040,16072537:0,0,0 -k1,6533:32583029,16072537:12357989 -g1,6533:32583029,16072537 -) -(1,6534:6630773,16738715:25952256,404226,82312 -h1,6534:6630773,16738715:0,0,0 -g1,6534:6946919,16738715 -g1,6534:7263065,16738715 -g1,6534:7579211,16738715 -g1,6534:7895357,16738715 -g1,6534:8211503,16738715 -g1,6534:8527649,16738715 -g1,6534:8843795,16738715 -g1,6534:12005253,16738715 -g1,6534:13902127,16738715 -g1,6534:14534419,16738715 -g1,6534:17063585,16738715 -g1,6534:17379731,16738715 -g1,6534:19276605,16738715 -g1,6534:21173479,16738715 -g1,6534:21805771,16738715 -h1,6534:24018791,16738715:0,0,0 -k1,6534:32583029,16738715:8564238 -g1,6534:32583029,16738715 -) -(1,6535:6630773,17404893:25952256,404226,76021 -h1,6535:6630773,17404893:0,0,0 -g1,6535:6946919,17404893 -g1,6535:7263065,17404893 -g1,6535:7579211,17404893 -g1,6535:7895357,17404893 -h1,6535:8211503,17404893:0,0,0 -k1,6535:32583029,17404893:24371526 -g1,6535:32583029,17404893 -) -] -) -g1,6537:32583029,17480914 -g1,6537:6630773,17480914 -g1,6537:6630773,17480914 -g1,6537:32583029,17480914 -g1,6537:32583029,17480914 -) -h1,6537:6630773,17677522:0,0,0 -v1,6541:6630773,19390644:0,393216,0 -(1,6551:6630773,22410822:25952256,3413394,196608 -g1,6551:6630773,22410822 -g1,6551:6630773,22410822 -g1,6551:6434165,22410822 -(1,6551:6434165,22410822:0,3413394,196608 -r1,6551:32779637,22410822:26345472,3610002,196608 -k1,6551:6434165,22410822:-26345472 -) -(1,6551:6434165,22410822:26345472,3413394,196608 -[1,6551:6630773,22410822:25952256,3216786,0 -(1,6543:6630773,19598262:25952256,404226,101187 -(1,6542:6630773,19598262:0,0,0 -g1,6542:6630773,19598262 -g1,6542:6630773,19598262 -g1,6542:6303093,19598262 -(1,6542:6303093,19598262:0,0,0 -) -g1,6542:6630773,19598262 -) -g1,6543:7263065,19598262 -g1,6543:8211503,19598262 -g1,6543:10740669,19598262 -g1,6543:11372961,19598262 -g1,6543:16431293,19598262 -g1,6543:18644313,19598262 -g1,6543:19276605,19598262 -g1,6543:20225043,19598262 -g1,6543:21489626,19598262 -g1,6543:22121918,19598262 -g1,6543:26231812,19598262 -g1,6543:28128686,19598262 -g1,6543:28760978,19598262 -h1,6543:30341707,19598262:0,0,0 -k1,6543:32583029,19598262:2241322 -g1,6543:32583029,19598262 -) -(1,6544:6630773,20264440:25952256,277873,0 -h1,6544:6630773,20264440:0,0,0 -h1,6544:6946919,20264440:0,0,0 -k1,6544:32583029,20264440:25636110 -g1,6544:32583029,20264440 -) -(1,6550:6630773,20996154:25952256,404226,82312 -(1,6546:6630773,20996154:0,0,0 -g1,6546:6630773,20996154 -g1,6546:6630773,20996154 -g1,6546:6303093,20996154 -(1,6546:6303093,20996154:0,0,0 -) -g1,6546:6630773,20996154 -) -g1,6550:7579210,20996154 -g1,6550:7895356,20996154 -g1,6550:8211502,20996154 -g1,6550:8527648,20996154 -g1,6550:8843794,20996154 -g1,6550:9159940,20996154 -g1,6550:9476086,20996154 -g1,6550:9792232,20996154 -g1,6550:10108378,20996154 -g1,6550:10424524,20996154 -g1,6550:10740670,20996154 -g1,6550:12321399,20996154 -g1,6550:12637545,20996154 -g1,6550:12953691,20996154 -k1,6550:12953691,20996154:0 -h1,6550:14218274,20996154:0,0,0 -k1,6550:32583030,20996154:18364756 -g1,6550:32583030,20996154 -) -(1,6550:6630773,21662332:25952256,404226,82312 -h1,6550:6630773,21662332:0,0,0 -g1,6550:7579210,21662332 -g1,6550:9159938,21662332 -g1,6550:12321395,21662332 -h1,6550:14218269,21662332:0,0,0 -k1,6550:32583029,21662332:18364760 -g1,6550:32583029,21662332 -) -(1,6550:6630773,22328510:25952256,404226,82312 -h1,6550:6630773,22328510:0,0,0 -g1,6550:7579210,22328510 -g1,6550:9159938,22328510 -g1,6550:9476084,22328510 -g1,6550:12321395,22328510 -g1,6550:12637541,22328510 -h1,6550:14218269,22328510:0,0,0 -k1,6550:32583029,22328510:18364760 -g1,6550:32583029,22328510 -) -] -) -g1,6551:32583029,22410822 -g1,6551:6630773,22410822 -g1,6551:6630773,22410822 -g1,6551:32583029,22410822 -g1,6551:32583029,22410822 -) -h1,6551:6630773,22607430:0,0,0 -v1,6555:6630773,24320552:0,393216,0 -(1,6565:6630773,27340730:25952256,3413394,196608 -g1,6565:6630773,27340730 -g1,6565:6630773,27340730 -g1,6565:6434165,27340730 -(1,6565:6434165,27340730:0,3413394,196608 -r1,6565:32779637,27340730:26345472,3610002,196608 -k1,6565:6434165,27340730:-26345472 -) -(1,6565:6434165,27340730:26345472,3413394,196608 -[1,6565:6630773,27340730:25952256,3216786,0 -(1,6557:6630773,24528170:25952256,404226,101187 -(1,6556:6630773,24528170:0,0,0 -g1,6556:6630773,24528170 -g1,6556:6630773,24528170 -g1,6556:6303093,24528170 -(1,6556:6303093,24528170:0,0,0 -) -g1,6556:6630773,24528170 -) -g1,6557:7263065,24528170 -g1,6557:8211503,24528170 -g1,6557:10740669,24528170 -g1,6557:11372961,24528170 -g1,6557:16431293,24528170 -g1,6557:18644313,24528170 -g1,6557:19276605,24528170 -g1,6557:20225043,24528170 -g1,6557:21489626,24528170 -g1,6557:22121918,24528170 -g1,6557:26231812,24528170 -g1,6557:28128686,24528170 -g1,6557:28760978,24528170 -h1,6557:30341707,24528170:0,0,0 -k1,6557:32583029,24528170:2241322 -g1,6557:32583029,24528170 -) -(1,6558:6630773,25194348:25952256,277873,0 -h1,6558:6630773,25194348:0,0,0 -h1,6558:6946919,25194348:0,0,0 -k1,6558:32583029,25194348:25636110 -g1,6558:32583029,25194348 -) -(1,6564:6630773,25926062:25952256,404226,82312 -(1,6560:6630773,25926062:0,0,0 -g1,6560:6630773,25926062 -g1,6560:6630773,25926062 -g1,6560:6303093,25926062 -(1,6560:6303093,25926062:0,0,0 -) -g1,6560:6630773,25926062 -) -g1,6564:7579210,25926062 -g1,6564:7895356,25926062 -g1,6564:8211502,25926062 -g1,6564:8527648,25926062 -g1,6564:8843794,25926062 -g1,6564:9159940,25926062 -g1,6564:9476086,25926062 -g1,6564:9792232,25926062 -g1,6564:10108378,25926062 -g1,6564:10424524,25926062 -g1,6564:10740670,25926062 -g1,6564:11056816,25926062 -g1,6564:12637545,25926062 -g1,6564:12953691,25926062 -g1,6564:13269837,25926062 -g1,6564:13585983,25926062 -g1,6564:13902129,25926062 -g1,6564:15482858,25926062 -g1,6564:15799004,25926062 -g1,6564:16115150,25926062 -g1,6564:16431296,25926062 -g1,6564:16747442,25926062 -k1,6564:16747442,25926062:0 -h1,6564:18012025,25926062:0,0,0 -k1,6564:32583029,25926062:14571004 -g1,6564:32583029,25926062 -) -(1,6564:6630773,26592240:25952256,404226,82312 -h1,6564:6630773,26592240:0,0,0 -g1,6564:7579210,26592240 -g1,6564:9159938,26592240 -g1,6564:12637541,26592240 -g1,6564:15482852,26592240 -h1,6564:18012017,26592240:0,0,0 -k1,6564:32583029,26592240:14571012 -g1,6564:32583029,26592240 -) -(1,6564:6630773,27258418:25952256,404226,82312 -h1,6564:6630773,27258418:0,0,0 -g1,6564:7579210,27258418 -g1,6564:9159938,27258418 -g1,6564:9476084,27258418 -g1,6564:12637541,27258418 -g1,6564:15482852,27258418 -h1,6564:18012017,27258418:0,0,0 -k1,6564:32583029,27258418:14571012 -g1,6564:32583029,27258418 -) -] -) -g1,6565:32583029,27340730 -g1,6565:6630773,27340730 -g1,6565:6630773,27340730 -g1,6565:32583029,27340730 -g1,6565:32583029,27340730 -) -h1,6565:6630773,27537338:0,0,0 -(1,6569:6630773,28902298:25952256,513147,126483 -h1,6568:6630773,28902298:983040,0,0 -k1,6568:8538261,28902298:296613 -k1,6568:9600990,28902298:296613 -k1,6568:12889322,28902298:296613 -k1,6568:15214930,28902298:296613 -k1,6568:16379895,28902298:296613 -k1,6568:18151723,28902298:296613 -k1,6568:19961562,28902298:296613 -k1,6568:22983163,28902298:296614 -k1,6568:26479244,28902298:296613 -k1,6568:29967460,28902298:296613 -k1,6568:30880111,28902298:296613 -k1,6568:31591469,28902298:296515 -k1,6568:32583029,28902298:0 -) -(1,6569:6630773,29743786:25952256,513147,134348 -k1,6568:9870108,29743786:213538 -k1,6568:11477597,29743786:213538 -k1,6568:12863574,29743786:213538 -k1,6568:15205721,29743786:213538 -k1,6568:19030293,29743786:213538 -k1,6568:21129302,29743786:213538 -k1,6568:22447122,29743786:213538 -k1,6568:23408426,29743786:213538 -k1,6568:25489740,29743786:213538 -k1,6568:27438671,29743786:213538 -k1,6568:29063855,29743786:213538 -k1,6568:31966991,29743786:213538 -k1,6568:32583029,29743786:0 -) -(1,6569:6630773,30585274:25952256,505283,134348 -k1,6568:12323269,30585274:197302 -(1,6568:12323269,30585274:0,452978,115847 -r1,6568:14088383,30585274:1765114,568825,115847 -k1,6568:12323269,30585274:-1765114 -) -(1,6568:12323269,30585274:1765114,452978,115847 -g1,6568:13029970,30585274 -g1,6568:13733394,30585274 -h1,6568:14085106,30585274:0,411205,112570 -) -k1,6568:14459355,30585274:197302 -k1,6568:15416875,30585274:197302 -k1,6568:19770470,30585274:197302 -k1,6568:21476411,30585274:197302 -k1,6568:23742029,30585274:197302 -k1,6568:25319519,30585274:197302 -k1,6568:26621103,30585274:197302 -k1,6568:27566171,30585274:197302 -k1,6568:29631249,30585274:197302 -k1,6568:31563944,30585274:197302 -k1,6568:32583029,30585274:0 -) -(1,6569:6630773,31426762:25952256,513147,126483 -k1,6568:8535631,31426762:251385 -k1,6568:10871060,31426762:251384 -k1,6568:11808607,31426762:251385 -k1,6568:13007642,31426762:251384 -k1,6568:15984014,31426762:251385 -k1,6568:19434866,31426762:251384 -k1,6568:20877696,31426762:251385 -k1,6568:25354186,31426762:251384 -k1,6568:26891387,31426762:251385 -k1,6568:29348058,31426762:251384 -k1,6568:30250871,31426762:251385 -k1,6568:31521340,31426762:251384 -(1,6568:31521340,31426762:0,414482,115847 -r1,6568:32583029,31426762:1061689,530329,115847 -k1,6568:31521340,31426762:-1061689 -) -(1,6568:31521340,31426762:1061689,414482,115847 -k1,6568:31521340,31426762:3277 -h1,6568:32579752,31426762:0,411205,112570 -) -k1,6568:32583029,31426762:0 -) -(1,6569:6630773,32268250:25952256,513147,126483 -k1,6568:10128014,32268250:216509 -k1,6568:11003814,32268250:216508 -k1,6568:12983897,32268250:216509 -k1,6568:16399873,32268250:216508 -k1,6568:17103953,32268250:216492 -k1,6568:18332992,32268250:216508 -k1,6568:21384588,32268250:216509 -k1,6568:24906077,32268250:216508 -k1,6568:25774014,32268250:216509 -k1,6568:27009607,32268250:216508 -k1,6568:30563209,32268250:216509 -k1,6569:32583029,32268250:0 -) -(1,6569:6630773,33109738:25952256,513147,126483 -k1,6568:8155222,33109738:256983 -(1,6568:8155222,33109738:0,424981,115847 -r1,6568:12382319,33109738:4227097,540828,115847 -k1,6568:8155222,33109738:-4227097 -) -(1,6568:8155222,33109738:4227097,424981,115847 -g1,6568:11323906,33109738 -g1,6568:12027330,33109738 -h1,6568:12379042,33109738:0,411205,112570 -) -k1,6568:12639302,33109738:256983 -k1,6568:15385341,33109738:256982 -k1,6568:16595873,33109738:256983 -k1,6568:19646656,33109738:256983 -k1,6568:22650253,33109738:256983 -(1,6568:22650253,33109738:0,414482,115847 -r1,6568:23008519,33109738:358266,530329,115847 -k1,6568:22650253,33109738:-358266 -) -(1,6568:22650253,33109738:358266,414482,115847 -k1,6568:22650253,33109738:3277 -h1,6568:23005242,33109738:0,411205,112570 -) -k1,6568:23265501,33109738:256982 -k1,6568:24138522,33109738:256983 -k1,6568:25877929,33109738:256983 -k1,6568:27649449,33109738:256983 -(1,6568:27856543,33109738:0,459977,115847 -r1,6568:28214809,33109738:358266,575824,115847 -k1,6568:27856543,33109738:-358266 -) -(1,6568:27856543,33109738:358266,459977,115847 -k1,6568:27856543,33109738:3277 -h1,6568:28211532,33109738:0,411205,112570 -) -k1,6568:28678885,33109738:256982 -k1,6568:30127313,33109738:256983 -k1,6568:31821501,33109738:256983 -k1,6568:32583029,33109738:0 -) -(1,6569:6630773,33951226:25952256,513147,126483 -g1,6568:8568017,33951226 -g1,6568:9123106,33951226 -g1,6568:12080090,33951226 -g1,6568:12930747,33951226 -g1,6568:13918374,33951226 -g1,6568:16358934,33951226 -g1,6568:18686772,33951226 -g1,6568:22166733,33951226 -(1,6568:22373827,33951226:0,435480,115847 -r1,6568:24490653,33951226:2116826,551327,115847 -k1,6568:22373827,33951226:-2116826 -) -(1,6568:22373827,33951226:2116826,435480,115847 -g1,6568:23432240,33951226 -g1,6568:24135664,33951226 -h1,6568:24487376,33951226:0,411205,112570 -) -k1,6569:32583029,33951226:7711612 -g1,6569:32583029,33951226 -) -v1,6571:6630773,35140876:0,393216,0 -(1,6581:6630773,38154763:25952256,3407103,196608 -g1,6581:6630773,38154763 -g1,6581:6630773,38154763 -g1,6581:6434165,38154763 -(1,6581:6434165,38154763:0,3407103,196608 -r1,6581:32779637,38154763:26345472,3603711,196608 -k1,6581:6434165,38154763:-26345472 -) -(1,6581:6434165,38154763:26345472,3407103,196608 -[1,6581:6630773,38154763:25952256,3210495,0 -(1,6573:6630773,35348494:25952256,404226,107478 -(1,6572:6630773,35348494:0,0,0 -g1,6572:6630773,35348494 -g1,6572:6630773,35348494 -g1,6572:6303093,35348494 -(1,6572:6303093,35348494:0,0,0 -) -g1,6572:6630773,35348494 -) -k1,6573:6630773,35348494:0 -g1,6573:12005250,35348494 -g1,6573:12637542,35348494 -g1,6573:13585979,35348494 -g1,6573:15166708,35348494 -g1,6573:18012019,35348494 -g1,6573:19592748,35348494 -g1,6573:20857331,35348494 -k1,6573:20857331,35348494:1573 -h1,6573:22755778,35348494:0,0,0 -k1,6573:32583029,35348494:9827251 -g1,6573:32583029,35348494 -) -(1,6574:6630773,36014672:25952256,410518,76021 -h1,6574:6630773,36014672:0,0,0 -g1,6574:9476084,36014672 -g1,6574:10424522,36014672 -k1,6574:10424522,36014672:0 -h1,6574:13269833,36014672:0,0,0 -k1,6574:32583029,36014672:19313196 -g1,6574:32583029,36014672 -) -(1,6575:6630773,36680850:25952256,410518,101187 -h1,6575:6630773,36680850:0,0,0 -g1,6575:7263065,36680850 -g1,6575:8211503,36680850 -g1,6575:11056815,36680850 -g1,6575:11689107,36680850 -g1,6575:14850564,36680850 -g1,6575:16115147,36680850 -g1,6575:16747439,36680850 -g1,6575:18328169,36680850 -g1,6575:19276606,36680850 -g1,6575:19908898,36680850 -h1,6575:20541190,36680850:0,0,0 -k1,6575:32583029,36680850:12041839 -g1,6575:32583029,36680850 -) -(1,6576:6630773,37347028:25952256,404226,76021 -h1,6576:6630773,37347028:0,0,0 -k1,6576:6630773,37347028:0 -h1,6576:8527647,37347028:0,0,0 -k1,6576:32583029,37347028:24055382 -g1,6576:32583029,37347028 -) -(1,6580:6630773,38078742:25952256,404226,76021 -(1,6578:6630773,38078742:0,0,0 -g1,6578:6630773,38078742 -g1,6578:6630773,38078742 -g1,6578:6303093,38078742 -(1,6578:6303093,38078742:0,0,0 -) -g1,6578:6630773,38078742 -) -g1,6580:7579210,38078742 -g1,6580:7895356,38078742 -g1,6580:9159939,38078742 -g1,6580:11372959,38078742 -g1,6580:12637542,38078742 -g1,6580:14218271,38078742 -g1,6580:15799000,38078742 -g1,6580:17379729,38078742 -g1,6580:18960458,38078742 -h1,6580:19908895,38078742:0,0,0 -k1,6580:32583029,38078742:12674134 -g1,6580:32583029,38078742 -) -] -) -g1,6581:32583029,38154763 -g1,6581:6630773,38154763 -g1,6581:6630773,38154763 -g1,6581:32583029,38154763 -g1,6581:32583029,38154763 -) -h1,6581:6630773,38351371:0,0,0 -v1,6585:6630773,40239803:0,393216,0 -(1,6586:6630773,45116945:25952256,5270358,589824 -g1,6586:6630773,45116945 -(1,6586:6630773,45116945:25952256,5270358,589824 -(1,6586:6630773,45706769:25952256,5860182,0 -[1,6586:6630773,45706769:25952256,5860182,0 -(1,6586:6630773,45706769:25952256,5833968,0 -r1,6586:6656987,45706769:26214,5833968,0 -[1,6586:6656987,45706769:25899828,5833968,0 -(1,6586:6656987,45116945:25899828,4654320,0 -[1,6586:7246811,45116945:24720180,4654320,0 -(1,6586:7246811,41624510:24720180,1161885,196608 -(1,6585:7246811,41624510:0,1161885,196608 -r1,6586:8794447,41624510:1547636,1358493,196608 -k1,6585:7246811,41624510:-1547636 -) -(1,6585:7246811,41624510:1547636,1161885,196608 -) -k1,6585:9001296,41624510:206849 -k1,6585:11230787,41624510:212293 -k1,6585:14571769,41624510:212293 -k1,6585:15731713,41624510:212293 -k1,6585:17393007,41624510:212293 -k1,6585:21069988,41624510:206850 -k1,6585:23172138,41624510:206849 -k1,6585:26404784,41624510:206849 -k1,6585:28782186,41624510:206850 -k1,6585:31118300,41624510:206849 -k1,6586:31966991,41624510:0 -) -(1,6586:7246811,42465998:24720180,513147,126483 -k1,6585:9198732,42465998:289273 -k1,6585:11819121,42465998:289273 -k1,6585:13853617,42465998:289272 -k1,6585:14829052,42465998:289273 -k1,6585:16498513,42465998:289273 -k1,6585:17779346,42465998:289273 -k1,6585:19281690,42465998:289273 -k1,6585:22045601,42465998:289272 -k1,6585:22822372,42465998:289183 -k1,6585:25236322,42465998:289273 -k1,6585:28187011,42465998:289272 -k1,6585:29007781,42465998:289273 -k1,6585:30316139,42465998:289273 -k1,6586:31966991,42465998:0 -) -(1,6586:7246811,43307486:24720180,505283,134348 -k1,6585:10365252,43307486:255173 -k1,6585:13135042,43307486:255174 -k1,6585:15309109,43307486:255173 -k1,6585:16432634,43307486:255173 -k1,6585:18762678,43307486:255174 -k1,6585:21576377,43307486:255173 -k1,6585:22187411,43307486:255174 -k1,6585:25529330,43307486:255173 -k1,6585:27069009,43307486:255173 -k1,6585:29271913,43307486:255174 -k1,6585:29882946,43307486:255173 -k1,6585:31966991,43307486:0 -) -(1,6586:7246811,44148974:24720180,505283,126483 -k1,6585:9364584,44148974:274901 -k1,6585:12274687,44148974:274900 -k1,6585:15770683,44148974:274901 -k1,6585:16533096,44148974:274825 -k1,6585:19010006,44148974:274900 -k1,6585:20651988,44148974:274901 -k1,6585:21458385,44148974:274900 -k1,6585:22089146,44148974:274901 -k1,6585:24704993,44148974:274901 -k1,6585:26898787,44148974:274900 -k1,6585:30975431,44148974:274901 -k1,6585:31966991,44148974:0 -) -(1,6586:7246811,44990462:24720180,505283,126483 -k1,6585:9000118,44990462:175855 -k1,6585:10563370,44990462:175855 -k1,6585:11095084,44990462:175854 -k1,6585:14344578,44990462:175855 -k1,6585:15804939,44990462:175855 -k1,6585:18030105,44990462:175855 -k1,6585:18818722,44990462:175855 -k1,6585:20446199,44990462:175855 -k1,6585:23512846,44990462:175854 -k1,6585:24885388,44990462:175855 -k1,6585:27773123,44990462:175855 -k1,6585:29140423,44990462:175855 -k1,6585:31966991,44990462:0 -) -] -) -] -r1,6586:32583029,45706769:26214,5833968,0 -) -] -) -) -g1,6586:32583029,45116945 -) -] -(1,6586:32583029,45706769:0,0,0 -g1,6586:32583029,45706769 -) -) -] -(1,6586:6630773,47279633:25952256,0,0 -h1,6586:6630773,47279633:25952256,0,0 -) -] -h1,6586:4262630,4025873:0,0,0 -] -!27049 +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6591:37855564,49800853:1179648,16384,0 +) +) +k1,6591:3078556,49800853:-34777008 +) +] +g1,6591:6630773,4812305 +k1,6591:18771974,4812305:10945824 +g1,6591:20158715,4812305 +g1,6591:20807521,4812305 +g1,6591:24121676,4812305 +g1,6591:28605649,4812305 +g1,6591:30015328,4812305 +) +) +] +[1,6591:6630773,45706769:25952256,40108032,0 +(1,6591:6630773,45706769:25952256,40108032,0 +(1,6591:6630773,45706769:0,0,0 +g1,6591:6630773,45706769 +) +[1,6591:6630773,45706769:25952256,40108032,0 +v1,6512:6630773,6254097:0,393216,0 +(1,6531:6630773,13332353:25952256,7471472,196608 +g1,6531:6630773,13332353 +g1,6531:6630773,13332353 +g1,6531:6434165,13332353 +(1,6531:6434165,13332353:0,7471472,196608 +r1,6531:32779637,13332353:26345472,7668080,196608 +k1,6531:6434165,13332353:-26345472 +) +(1,6531:6434165,13332353:26345472,7471472,196608 +[1,6531:6630773,13332353:25952256,7274864,0 +(1,6514:6630773,6468007:25952256,410518,101187 +(1,6513:6630773,6468007:0,0,0 +g1,6513:6630773,6468007 +g1,6513:6630773,6468007 +g1,6513:6303093,6468007 +(1,6513:6303093,6468007:0,0,0 +) +g1,6513:6630773,6468007 +) +g1,6514:7263065,6468007 +g1,6514:8211503,6468007 +g1,6514:10740669,6468007 +g1,6514:11372961,6468007 +g1,6514:16431293,6468007 +g1,6514:18644313,6468007 +g1,6514:19276605,6468007 +g1,6514:20225043,6468007 +g1,6514:21489626,6468007 +g1,6514:22121918,6468007 +h1,6514:25283375,6468007:0,0,0 +k1,6514:32583029,6468007:7299654 +g1,6514:32583029,6468007 +) +(1,6515:6630773,7134185:25952256,277873,0 +h1,6515:6630773,7134185:0,0,0 +h1,6515:6946919,7134185:0,0,0 +k1,6515:32583029,7134185:25636110 +g1,6515:32583029,7134185 +) +(1,6521:6630773,7865899:25952256,404226,82312 +(1,6517:6630773,7865899:0,0,0 +g1,6517:6630773,7865899 +g1,6517:6630773,7865899 +g1,6517:6303093,7865899 +(1,6517:6303093,7865899:0,0,0 +) +g1,6517:6630773,7865899 +) +g1,6521:7579210,7865899 +g1,6521:7895356,7865899 +g1,6521:8211502,7865899 +g1,6521:8527648,7865899 +g1,6521:8843794,7865899 +g1,6521:9159940,7865899 +g1,6521:10740669,7865899 +g1,6521:12321398,7865899 +k1,6521:12321398,7865899:0 +h1,6521:13585981,7865899:0,0,0 +k1,6521:32583029,7865899:18997048 +g1,6521:32583029,7865899 +) +(1,6521:6630773,8532077:25952256,404226,82312 +h1,6521:6630773,8532077:0,0,0 +g1,6521:7579210,8532077 +g1,6521:9159938,8532077 +g1,6521:10740667,8532077 +g1,6521:12321396,8532077 +g1,6521:12637542,8532077 +h1,6521:13585979,8532077:0,0,0 +k1,6521:32583029,8532077:18997050 +g1,6521:32583029,8532077 +) +(1,6521:6630773,9198255:25952256,404226,82312 +h1,6521:6630773,9198255:0,0,0 +g1,6521:7579210,9198255 +g1,6521:9159938,9198255 +g1,6521:10740667,9198255 +g1,6521:11056813,9198255 +g1,6521:12321396,9198255 +h1,6521:13585979,9198255:0,0,0 +k1,6521:32583029,9198255:18997050 +g1,6521:32583029,9198255 +) +(1,6523:6630773,10519793:25952256,404226,76021 +(1,6522:6630773,10519793:0,0,0 +g1,6522:6630773,10519793 +g1,6522:6630773,10519793 +g1,6522:6303093,10519793 +(1,6522:6303093,10519793:0,0,0 +) +g1,6522:6630773,10519793 +) +k1,6523:6630773,10519793:0 +h1,6523:7895356,10519793:0,0,0 +k1,6523:32583028,10519793:24687672 +g1,6523:32583028,10519793 +) +(1,6530:6630773,11251507:25952256,404226,82312 +(1,6525:6630773,11251507:0,0,0 +g1,6525:6630773,11251507 +g1,6525:6630773,11251507 +g1,6525:6303093,11251507 +(1,6525:6303093,11251507:0,0,0 +) +g1,6525:6630773,11251507 +) +g1,6530:7579210,11251507 +g1,6530:7895356,11251507 +g1,6530:8211502,11251507 +g1,6530:8527648,11251507 +g1,6530:8843794,11251507 +g1,6530:9159940,11251507 +g1,6530:10740669,11251507 +k1,6530:10740669,11251507:0 +h1,6530:12005252,11251507:0,0,0 +k1,6530:32583028,11251507:20577776 +g1,6530:32583028,11251507 +) +(1,6530:6630773,11917685:25952256,404226,82312 +h1,6530:6630773,11917685:0,0,0 +g1,6530:7579210,11917685 +g1,6530:9159938,11917685 +g1,6530:10740667,11917685 +h1,6530:12005250,11917685:0,0,0 +k1,6530:32583030,11917685:20577780 +g1,6530:32583030,11917685 +) +(1,6530:6630773,12583863:25952256,404226,82312 +h1,6530:6630773,12583863:0,0,0 +g1,6530:7579210,12583863 +g1,6530:9159938,12583863 +g1,6530:10740667,12583863 +g1,6530:11056813,12583863 +h1,6530:12005250,12583863:0,0,0 +k1,6530:32583030,12583863:20577780 +g1,6530:32583030,12583863 +) +(1,6530:6630773,13250041:25952256,404226,82312 +h1,6530:6630773,13250041:0,0,0 +g1,6530:7579210,13250041 +g1,6530:9159938,13250041 +g1,6530:9476084,13250041 +g1,6530:10740667,13250041 +h1,6530:12005250,13250041:0,0,0 +k1,6530:32583030,13250041:20577780 +g1,6530:32583030,13250041 +) +] +) +g1,6531:32583029,13332353 +g1,6531:6630773,13332353 +g1,6531:6630773,13332353 +g1,6531:32583029,13332353 +g1,6531:32583029,13332353 +) +h1,6531:6630773,13528961:0,0,0 +(1,6535:6630773,14733368:25952256,513147,134348 +h1,6534:6630773,14733368:983040,0,0 +k1,6534:8358958,14733368:257557 +k1,6534:10266771,14733368:257616 +k1,6534:13044246,14733368:257616 +k1,6534:16136949,14733368:257616 +k1,6534:17466734,14733368:257616 +k1,6534:20208165,14733368:257616 +k1,6534:21117209,14733368:257616 +k1,6534:23144296,14733368:257615 +k1,6534:25862134,14733368:257616 +k1,6534:28134982,14733368:257616 +k1,6534:29411683,14733368:257616 +k1,6534:30681830,14733368:257616 +k1,6535:32583029,14733368:0 +) +(1,6535:6630773,15574856:25952256,513147,126483 +k1,6534:8147101,15574856:212817 +k1,6534:10435443,15574856:212817 +k1,6534:12677256,15574856:212818 +k1,6534:13421570,15574856:212817 +k1,6534:15332425,15574856:212817 +k1,6534:16413594,15574856:212817 +k1,6534:18389985,15574856:212817 +k1,6534:18958663,15574856:212818 +k1,6534:21866976,15574856:212817 +k1,6534:23364299,15574856:212817 +k1,6534:25918062,15574856:212817 +k1,6534:26486739,15574856:212817 +k1,6534:28379900,15574856:212818 +k1,6534:29252009,15574856:212817 +k1,6534:29820686,15574856:212817 +k1,6534:32583029,15574856:0 +) +(1,6535:6630773,16416344:25952256,505283,134348 +k1,6534:8862875,16416344:218836 +k1,6534:10524157,16416344:218835 +k1,6534:11531391,16416344:218836 +k1,6534:13632420,16416344:218835 +k1,6534:14923425,16416344:218836 +k1,6534:17166668,16416344:218836 +k1,6534:18827950,16416344:218835 +k1,6534:20377167,16416344:218836 +k1,6534:22379237,16416344:218835 +k1,6534:23466425,16416344:218836 +k1,6534:26473162,16416344:218835 +k1,6534:29074887,16416344:218836 +k1,6534:32583029,16416344:0 +) +(1,6535:6630773,17257832:25952256,505283,134348 +(1,6534:6837867,17257832:0,435480,115847 +r1,6534:10361540,17257832:3523673,551327,115847 +k1,6534:6837867,17257832:-3523673 +) +(1,6534:6837867,17257832:3523673,435480,115847 +g1,6534:9303127,17257832 +g1,6534:10006551,17257832 +h1,6534:10358263,17257832:0,411205,112570 +) +k1,6534:11021900,17257832:279596 +k1,6534:11657357,17257832:279597 +k1,6534:14024275,17257832:279596 +k1,6534:14835368,17257832:279596 +k1,6534:18067362,17257832:279597 +k1,6534:19740909,17257832:279596 +k1,6534:21472127,17257832:279596 +k1,6534:24134612,17257832:279596 +k1,6534:27776206,17257832:279597 +k1,6534:29074887,17257832:279596 +k1,6534:32583029,17257832:0 +) +(1,6535:6630773,18099320:25952256,513147,134348 +k1,6534:7765439,18099320:187015 +k1,6534:8971539,18099320:187015 +k1,6534:13782119,18099320:187015 +k1,6534:16352023,18099320:187015 +k1,6534:17155075,18099320:187014 +k1,6534:18361175,18099320:187015 +k1,6534:20983508,18099320:187015 +k1,6534:23257845,18099320:187015 +(1,6534:23464939,18099320:0,452978,115847 +r1,6534:28395459,18099320:4930520,568825,115847 +k1,6534:23464939,18099320:-4930520 +) +(1,6534:23464939,18099320:4930520,452978,115847 +k1,6534:23464939,18099320:3277 +h1,6534:28392182,18099320:0,411205,112570 +) +k1,6534:28963238,18099320:187015 +k1,6534:29778088,18099320:187015 +k1,6534:32583029,18099320:0 +) +(1,6535:6630773,18940808:25952256,505283,126483 +k1,6534:8541285,18940808:212474 +k1,6534:9622110,18940808:212473 +k1,6534:12622486,18940808:212474 +k1,6534:14038856,18940808:212474 +k1,6534:17759472,18940808:212474 +(1,6534:17966566,18940808:0,435480,115847 +r1,6534:21490239,18940808:3523673,551327,115847 +k1,6534:17966566,18940808:-3523673 +) +(1,6534:17966566,18940808:3523673,435480,115847 +g1,6534:20431826,18940808 +g1,6534:21135250,18940808 +h1,6534:21486962,18940808:0,411205,112570 +) +k1,6534:22083476,18940808:212473 +k1,6534:23747572,18940808:212474 +k1,6534:26342935,18940808:212474 +k1,6534:27171447,18940808:212474 +k1,6534:28403005,18940808:212473 +k1,6534:31394206,18940808:212474 +k1,6535:32583029,18940808:0 +) +(1,6535:6630773,19782296:25952256,513147,134348 +k1,6534:8014541,19782296:272277 +k1,6534:10988867,19782296:272277 +k1,6534:12280228,19782296:272276 +k1,6534:16060647,19782296:272277 +k1,6534:17280575,19782296:272277 +k1,6534:18709562,19782296:272277 +k1,6534:20185734,19782296:272276 +k1,6534:21074049,19782296:272277 +k1,6534:22365411,19782296:272277 +k1,6534:25073006,19782296:272277 +k1,6534:27168494,19782296:272276 +k1,6534:29074584,19782296:272277 +k1,6534:32051532,19782296:272277 +k1,6534:32583029,19782296:0 +) +(1,6535:6630773,20623784:25952256,513147,134348 +k1,6534:8105535,20623784:190256 +k1,6534:9057319,20623784:190256 +k1,6534:10982968,20623784:190256 +(1,6534:10982968,20623784:0,452978,115847 +r1,6534:13451505,20623784:2468537,568825,115847 +k1,6534:10982968,20623784:-2468537 +) +(1,6534:10982968,20623784:2468537,452978,115847 +k1,6534:10982968,20623784:3277 +h1,6534:13448228,20623784:0,411205,112570 +) +k1,6534:13641762,20623784:190257 +k1,6534:14851103,20623784:190256 +k1,6534:18386317,20623784:190256 +k1,6534:19235865,20623784:190256 +k1,6534:20445206,20623784:190256 +k1,6534:23070780,20623784:190256 +k1,6534:25348358,20623784:190256 +k1,6534:26221500,20623784:190257 +k1,6534:28061297,20623784:190256 +k1,6534:29638950,20623784:190256 +k1,6534:31714677,20623784:190256 +k1,6534:32583029,20623784:0 +) +(1,6535:6630773,21465272:25952256,505283,134348 +k1,6534:9583753,21465272:165078 +k1,6534:13256972,21465272:165077 +k1,6534:17667472,21465272:165078 +k1,6534:22353224,21465272:165078 +k1,6534:24213062,21465272:165077 +k1,6534:25708521,21465272:165078 +k1,6534:28607106,21465272:165078 +k1,6534:29763743,21465272:165077 +k1,6534:31966991,21465272:165078 +k1,6535:32583029,21465272:0 +) +(1,6535:6630773,22306760:25952256,513147,134348 +k1,6534:7381160,22306760:161874 +k1,6534:9241072,22306760:161874 +k1,6534:12116137,22306760:161874 +k1,6534:14870614,22306760:161873 +k1,6534:16299954,22306760:161874 +k1,6534:16817688,22306760:161874 +k1,6534:18852581,22306760:161874 +k1,6534:20868469,22306760:161874 +k1,6534:22049428,22306760:161874 +k1,6534:23745499,22306760:161873 +k1,6534:26350555,22306760:161874 +k1,6534:29399290,22306760:161874 +k1,6534:31206118,22306760:161874 +k1,6534:32583029,22306760:0 +) +(1,6535:6630773,23148248:25952256,513147,126483 +g1,6534:7849087,23148248 +g1,6534:10356494,23148248 +g1,6534:13334450,23148248 +g1,6534:14295207,23148248 +g1,6534:15513521,23148248 +g1,6534:18084498,23148248 +g1,6534:21152893,23148248 +g1,6534:22343682,23148248 +g1,6534:24581081,23148248 +g1,6534:25466472,23148248 +k1,6535:32583029,23148248:5408689 +g1,6535:32583029,23148248 +) +v1,6537:6630773,24177344:0,393216,0 +(1,6543:6630773,25799631:25952256,2015503,196608 +g1,6543:6630773,25799631 +g1,6543:6630773,25799631 +g1,6543:6434165,25799631 +(1,6543:6434165,25799631:0,2015503,196608 +r1,6543:32779637,25799631:26345472,2212111,196608 +k1,6543:6434165,25799631:-26345472 +) +(1,6543:6434165,25799631:26345472,2015503,196608 +[1,6543:6630773,25799631:25952256,1818895,0 +(1,6539:6630773,24391254:25952256,410518,82312 +(1,6538:6630773,24391254:0,0,0 +g1,6538:6630773,24391254 +g1,6538:6630773,24391254 +g1,6538:6303093,24391254 +(1,6538:6303093,24391254:0,0,0 +) +g1,6538:6630773,24391254 +) +g1,6539:10424521,24391254 +g1,6539:11372959,24391254 +g1,6539:15166708,24391254 +g1,6539:17063582,24391254 +g1,6539:17695874,24391254 +g1,6539:19908894,24391254 +h1,6539:20225040,24391254:0,0,0 +k1,6539:32583029,24391254:12357989 +g1,6539:32583029,24391254 +) +(1,6540:6630773,25057432:25952256,404226,82312 +h1,6540:6630773,25057432:0,0,0 +g1,6540:6946919,25057432 +g1,6540:7263065,25057432 +g1,6540:7579211,25057432 +g1,6540:7895357,25057432 +g1,6540:8211503,25057432 +g1,6540:8527649,25057432 +g1,6540:8843795,25057432 +g1,6540:12005253,25057432 +g1,6540:13902127,25057432 +g1,6540:14534419,25057432 +g1,6540:17063585,25057432 +g1,6540:17379731,25057432 +g1,6540:19276605,25057432 +g1,6540:21173479,25057432 +g1,6540:21805771,25057432 +h1,6540:24018791,25057432:0,0,0 +k1,6540:32583029,25057432:8564238 +g1,6540:32583029,25057432 +) +(1,6541:6630773,25723610:25952256,404226,76021 +h1,6541:6630773,25723610:0,0,0 +g1,6541:6946919,25723610 +g1,6541:7263065,25723610 +g1,6541:7579211,25723610 +g1,6541:7895357,25723610 +h1,6541:8211503,25723610:0,0,0 +k1,6541:32583029,25723610:24371526 +g1,6541:32583029,25723610 +) +] +) +g1,6543:32583029,25799631 +g1,6543:6630773,25799631 +g1,6543:6630773,25799631 +g1,6543:32583029,25799631 +g1,6543:32583029,25799631 +) +h1,6543:6630773,25996239:0,0,0 +v1,6547:6630773,27388255:0,393216,0 +(1,6557:6630773,30408433:25952256,3413394,196608 +g1,6557:6630773,30408433 +g1,6557:6630773,30408433 +g1,6557:6434165,30408433 +(1,6557:6434165,30408433:0,3413394,196608 +r1,6557:32779637,30408433:26345472,3610002,196608 +k1,6557:6434165,30408433:-26345472 +) +(1,6557:6434165,30408433:26345472,3413394,196608 +[1,6557:6630773,30408433:25952256,3216786,0 +(1,6549:6630773,27595873:25952256,404226,101187 +(1,6548:6630773,27595873:0,0,0 +g1,6548:6630773,27595873 +g1,6548:6630773,27595873 +g1,6548:6303093,27595873 +(1,6548:6303093,27595873:0,0,0 +) +g1,6548:6630773,27595873 +) +g1,6549:7263065,27595873 +g1,6549:8211503,27595873 +g1,6549:10740669,27595873 +g1,6549:11372961,27595873 +g1,6549:16431293,27595873 +g1,6549:18644313,27595873 +g1,6549:19276605,27595873 +g1,6549:20225043,27595873 +g1,6549:21489626,27595873 +g1,6549:22121918,27595873 +g1,6549:26231812,27595873 +g1,6549:28128686,27595873 +g1,6549:28760978,27595873 +h1,6549:30341707,27595873:0,0,0 +k1,6549:32583029,27595873:2241322 +g1,6549:32583029,27595873 +) +(1,6550:6630773,28262051:25952256,277873,0 +h1,6550:6630773,28262051:0,0,0 +h1,6550:6946919,28262051:0,0,0 +k1,6550:32583029,28262051:25636110 +g1,6550:32583029,28262051 +) +(1,6556:6630773,28993765:25952256,404226,82312 +(1,6552:6630773,28993765:0,0,0 +g1,6552:6630773,28993765 +g1,6552:6630773,28993765 +g1,6552:6303093,28993765 +(1,6552:6303093,28993765:0,0,0 +) +g1,6552:6630773,28993765 +) +g1,6556:7579210,28993765 +g1,6556:7895356,28993765 +g1,6556:8211502,28993765 +g1,6556:8527648,28993765 +g1,6556:8843794,28993765 +g1,6556:9159940,28993765 +g1,6556:9476086,28993765 +g1,6556:9792232,28993765 +g1,6556:10108378,28993765 +g1,6556:10424524,28993765 +g1,6556:10740670,28993765 +g1,6556:12321399,28993765 +g1,6556:12637545,28993765 +g1,6556:12953691,28993765 +k1,6556:12953691,28993765:0 +h1,6556:14218274,28993765:0,0,0 +k1,6556:32583030,28993765:18364756 +g1,6556:32583030,28993765 +) +(1,6556:6630773,29659943:25952256,404226,82312 +h1,6556:6630773,29659943:0,0,0 +g1,6556:7579210,29659943 +g1,6556:9159938,29659943 +g1,6556:12321395,29659943 +h1,6556:14218269,29659943:0,0,0 +k1,6556:32583029,29659943:18364760 +g1,6556:32583029,29659943 +) +(1,6556:6630773,30326121:25952256,404226,82312 +h1,6556:6630773,30326121:0,0,0 +g1,6556:7579210,30326121 +g1,6556:9159938,30326121 +g1,6556:9476084,30326121 +g1,6556:12321395,30326121 +g1,6556:12637541,30326121 +h1,6556:14218269,30326121:0,0,0 +k1,6556:32583029,30326121:18364760 +g1,6556:32583029,30326121 +) +] +) +g1,6557:32583029,30408433 +g1,6557:6630773,30408433 +g1,6557:6630773,30408433 +g1,6557:32583029,30408433 +g1,6557:32583029,30408433 +) +h1,6557:6630773,30605041:0,0,0 +v1,6561:6630773,31997056:0,393216,0 +(1,6571:6630773,35017234:25952256,3413394,196608 +g1,6571:6630773,35017234 +g1,6571:6630773,35017234 +g1,6571:6434165,35017234 +(1,6571:6434165,35017234:0,3413394,196608 +r1,6571:32779637,35017234:26345472,3610002,196608 +k1,6571:6434165,35017234:-26345472 +) +(1,6571:6434165,35017234:26345472,3413394,196608 +[1,6571:6630773,35017234:25952256,3216786,0 +(1,6563:6630773,32204674:25952256,404226,101187 +(1,6562:6630773,32204674:0,0,0 +g1,6562:6630773,32204674 +g1,6562:6630773,32204674 +g1,6562:6303093,32204674 +(1,6562:6303093,32204674:0,0,0 +) +g1,6562:6630773,32204674 +) +g1,6563:7263065,32204674 +g1,6563:8211503,32204674 +g1,6563:10740669,32204674 +g1,6563:11372961,32204674 +g1,6563:16431293,32204674 +g1,6563:18644313,32204674 +g1,6563:19276605,32204674 +g1,6563:20225043,32204674 +g1,6563:21489626,32204674 +g1,6563:22121918,32204674 +g1,6563:26231812,32204674 +g1,6563:28128686,32204674 +g1,6563:28760978,32204674 +h1,6563:30341707,32204674:0,0,0 +k1,6563:32583029,32204674:2241322 +g1,6563:32583029,32204674 +) +(1,6564:6630773,32870852:25952256,277873,0 +h1,6564:6630773,32870852:0,0,0 +h1,6564:6946919,32870852:0,0,0 +k1,6564:32583029,32870852:25636110 +g1,6564:32583029,32870852 +) +(1,6570:6630773,33602566:25952256,404226,82312 +(1,6566:6630773,33602566:0,0,0 +g1,6566:6630773,33602566 +g1,6566:6630773,33602566 +g1,6566:6303093,33602566 +(1,6566:6303093,33602566:0,0,0 +) +g1,6566:6630773,33602566 +) +g1,6570:7579210,33602566 +g1,6570:7895356,33602566 +g1,6570:8211502,33602566 +g1,6570:8527648,33602566 +g1,6570:8843794,33602566 +g1,6570:9159940,33602566 +g1,6570:9476086,33602566 +g1,6570:9792232,33602566 +g1,6570:10108378,33602566 +g1,6570:10424524,33602566 +g1,6570:10740670,33602566 +g1,6570:11056816,33602566 +g1,6570:12637545,33602566 +g1,6570:12953691,33602566 +g1,6570:13269837,33602566 +g1,6570:13585983,33602566 +g1,6570:13902129,33602566 +g1,6570:15482858,33602566 +g1,6570:15799004,33602566 +g1,6570:16115150,33602566 +g1,6570:16431296,33602566 +g1,6570:16747442,33602566 +k1,6570:16747442,33602566:0 +h1,6570:18012025,33602566:0,0,0 +k1,6570:32583029,33602566:14571004 +g1,6570:32583029,33602566 +) +(1,6570:6630773,34268744:25952256,404226,82312 +h1,6570:6630773,34268744:0,0,0 +g1,6570:7579210,34268744 +g1,6570:9159938,34268744 +g1,6570:12637541,34268744 +g1,6570:15482852,34268744 +h1,6570:18012017,34268744:0,0,0 +k1,6570:32583029,34268744:14571012 +g1,6570:32583029,34268744 +) +(1,6570:6630773,34934922:25952256,404226,82312 +h1,6570:6630773,34934922:0,0,0 +g1,6570:7579210,34934922 +g1,6570:9159938,34934922 +g1,6570:9476084,34934922 +g1,6570:12637541,34934922 +g1,6570:15482852,34934922 +h1,6570:18012017,34934922:0,0,0 +k1,6570:32583029,34934922:14571012 +g1,6570:32583029,34934922 +) +] +) +g1,6571:32583029,35017234 +g1,6571:6630773,35017234 +g1,6571:6630773,35017234 +g1,6571:32583029,35017234 +g1,6571:32583029,35017234 +) +h1,6571:6630773,35213842:0,0,0 +(1,6575:6630773,36418249:25952256,513147,126483 +h1,6574:6630773,36418249:983040,0,0 +k1,6574:8538261,36418249:296613 +k1,6574:9600990,36418249:296613 +k1,6574:12889322,36418249:296613 +k1,6574:15214930,36418249:296613 +k1,6574:16379895,36418249:296613 +k1,6574:18151723,36418249:296613 +k1,6574:19961562,36418249:296613 +k1,6574:22983163,36418249:296614 +k1,6574:26479244,36418249:296613 +k1,6574:29967460,36418249:296613 +k1,6574:30880111,36418249:296613 +k1,6574:31591469,36418249:296515 +k1,6574:32583029,36418249:0 +) +(1,6575:6630773,37259737:25952256,513147,134348 +k1,6574:9870108,37259737:213538 +k1,6574:11477597,37259737:213538 +k1,6574:12863574,37259737:213538 +k1,6574:15205721,37259737:213538 +k1,6574:19030293,37259737:213538 +k1,6574:21129302,37259737:213538 +k1,6574:22447122,37259737:213538 +k1,6574:23408426,37259737:213538 +k1,6574:25489740,37259737:213538 +k1,6574:27438671,37259737:213538 +k1,6574:29063855,37259737:213538 +k1,6574:31966991,37259737:213538 +k1,6574:32583029,37259737:0 +) +(1,6575:6630773,38101225:25952256,505283,134348 +k1,6574:12323269,38101225:197302 +(1,6574:12323269,38101225:0,452978,115847 +r1,6574:14088383,38101225:1765114,568825,115847 +k1,6574:12323269,38101225:-1765114 +) +(1,6574:12323269,38101225:1765114,452978,115847 +g1,6574:13029970,38101225 +g1,6574:13733394,38101225 +h1,6574:14085106,38101225:0,411205,112570 +) +k1,6574:14459355,38101225:197302 +k1,6574:15416875,38101225:197302 +k1,6574:19770470,38101225:197302 +k1,6574:21476411,38101225:197302 +k1,6574:23742029,38101225:197302 +k1,6574:25319519,38101225:197302 +k1,6574:26621103,38101225:197302 +k1,6574:27566171,38101225:197302 +k1,6574:29631249,38101225:197302 +k1,6574:31563944,38101225:197302 +k1,6574:32583029,38101225:0 +) +(1,6575:6630773,38942713:25952256,513147,126483 +k1,6574:8535631,38942713:251385 +k1,6574:10871060,38942713:251384 +k1,6574:11808607,38942713:251385 +k1,6574:13007642,38942713:251384 +k1,6574:15984014,38942713:251385 +k1,6574:19434866,38942713:251384 +k1,6574:20877696,38942713:251385 +k1,6574:25354186,38942713:251384 +k1,6574:26891387,38942713:251385 +k1,6574:29348058,38942713:251384 +k1,6574:30250871,38942713:251385 +k1,6574:31521340,38942713:251384 +(1,6574:31521340,38942713:0,414482,115847 +r1,6574:32583029,38942713:1061689,530329,115847 +k1,6574:31521340,38942713:-1061689 +) +(1,6574:31521340,38942713:1061689,414482,115847 +k1,6574:31521340,38942713:3277 +h1,6574:32579752,38942713:0,411205,112570 +) +k1,6574:32583029,38942713:0 +) +(1,6575:6630773,39784201:25952256,513147,126483 +k1,6574:10160368,39784201:248863 +k1,6574:11068522,39784201:248862 +k1,6574:13080959,39784201:248863 +k1,6574:16529289,39784201:248862 +k1,6574:17265690,39784201:248813 +k1,6574:18527083,39784201:248862 +k1,6574:21611033,39784201:248863 +k1,6574:25164876,39784201:248862 +k1,6574:26065167,39784201:248863 +k1,6574:27333114,39784201:248862 +k1,6574:30919070,39784201:248863 +k1,6575:32583029,39784201:0 +) +(1,6575:6630773,40625689:25952256,513147,126483 +k1,6574:8483709,40625689:229609 +(1,6574:8483709,40625689:0,424981,115847 +r1,6574:12710806,40625689:4227097,540828,115847 +k1,6574:8483709,40625689:-4227097 +) +(1,6574:8483709,40625689:4227097,424981,115847 +g1,6574:11652393,40625689 +g1,6574:12355817,40625689 +h1,6574:12707529,40625689:0,411205,112570 +) +k1,6574:12940415,40625689:229609 +k1,6574:15659081,40625689:229609 +k1,6574:16842238,40625689:229608 +k1,6574:19865647,40625689:229609 +k1,6574:22841870,40625689:229609 +(1,6574:22841870,40625689:0,414482,115847 +r1,6574:23200136,40625689:358266,530329,115847 +k1,6574:22841870,40625689:-358266 +) +(1,6574:22841870,40625689:358266,414482,115847 +k1,6574:22841870,40625689:3277 +h1,6574:23196859,40625689:0,411205,112570 +) +k1,6574:23429745,40625689:229609 +k1,6574:24275392,40625689:229609 +k1,6574:25987425,40625689:229609 +k1,6574:27731570,40625689:229608 +(1,6574:27938664,40625689:0,459977,115847 +r1,6574:28296930,40625689:358266,575824,115847 +k1,6574:27938664,40625689:-358266 +) +(1,6574:27938664,40625689:358266,459977,115847 +k1,6574:27938664,40625689:3277 +h1,6574:28293653,40625689:0,411205,112570 +) +k1,6574:28733633,40625689:229609 +k1,6574:30154687,40625689:229609 +k1,6574:31821501,40625689:229609 +k1,6574:32583029,40625689:0 +) +(1,6575:6630773,41467177:25952256,513147,126483 +g1,6574:8568017,41467177 +g1,6574:9123106,41467177 +g1,6574:12080090,41467177 +g1,6574:12930747,41467177 +g1,6574:13918374,41467177 +g1,6574:16358934,41467177 +g1,6574:18686772,41467177 +g1,6574:22166733,41467177 +(1,6574:22373827,41467177:0,435480,115847 +r1,6574:24490653,41467177:2116826,551327,115847 +k1,6574:22373827,41467177:-2116826 +) +(1,6574:22373827,41467177:2116826,435480,115847 +g1,6574:23432240,41467177 +g1,6574:24135664,41467177 +h1,6574:24487376,41467177:0,411205,112570 +) +k1,6575:32583029,41467177:7711612 +g1,6575:32583029,41467177 +) +v1,6577:6630773,42496274:0,393216,0 +(1,6587:6630773,45510161:25952256,3407103,196608 +g1,6587:6630773,45510161 +g1,6587:6630773,45510161 +g1,6587:6434165,45510161 +(1,6587:6434165,45510161:0,3407103,196608 +r1,6587:32779637,45510161:26345472,3603711,196608 +k1,6587:6434165,45510161:-26345472 +) +(1,6587:6434165,45510161:26345472,3407103,196608 +[1,6587:6630773,45510161:25952256,3210495,0 +(1,6579:6630773,42703892:25952256,404226,107478 +(1,6578:6630773,42703892:0,0,0 +g1,6578:6630773,42703892 +g1,6578:6630773,42703892 +g1,6578:6303093,42703892 +(1,6578:6303093,42703892:0,0,0 +) +g1,6578:6630773,42703892 +) +k1,6579:6630773,42703892:0 +g1,6579:12005250,42703892 +g1,6579:12637542,42703892 +g1,6579:13585979,42703892 +g1,6579:15166708,42703892 +g1,6579:18012019,42703892 +g1,6579:19592748,42703892 +g1,6579:20857331,42703892 +k1,6579:20857331,42703892:1573 +h1,6579:22755778,42703892:0,0,0 +k1,6579:32583029,42703892:9827251 +g1,6579:32583029,42703892 +) +(1,6580:6630773,43370070:25952256,410518,76021 +h1,6580:6630773,43370070:0,0,0 +g1,6580:9476084,43370070 +g1,6580:10424522,43370070 +k1,6580:10424522,43370070:0 +h1,6580:13269833,43370070:0,0,0 +k1,6580:32583029,43370070:19313196 +g1,6580:32583029,43370070 +) +(1,6581:6630773,44036248:25952256,410518,101187 +h1,6581:6630773,44036248:0,0,0 +g1,6581:7263065,44036248 +g1,6581:8211503,44036248 +g1,6581:11056815,44036248 +g1,6581:11689107,44036248 +g1,6581:14850564,44036248 +g1,6581:16115147,44036248 +g1,6581:16747439,44036248 +g1,6581:18328169,44036248 +g1,6581:19276606,44036248 +g1,6581:19908898,44036248 +h1,6581:20541190,44036248:0,0,0 +k1,6581:32583029,44036248:12041839 +g1,6581:32583029,44036248 +) +(1,6582:6630773,44702426:25952256,404226,76021 +h1,6582:6630773,44702426:0,0,0 +k1,6582:6630773,44702426:0 +h1,6582:8527647,44702426:0,0,0 +k1,6582:32583029,44702426:24055382 +g1,6582:32583029,44702426 +) +(1,6586:6630773,45434140:25952256,404226,76021 +(1,6584:6630773,45434140:0,0,0 +g1,6584:6630773,45434140 +g1,6584:6630773,45434140 +g1,6584:6303093,45434140 +(1,6584:6303093,45434140:0,0,0 +) +g1,6584:6630773,45434140 +) +g1,6586:7579210,45434140 +g1,6586:7895356,45434140 +g1,6586:9159939,45434140 +g1,6586:11372959,45434140 +g1,6586:12637542,45434140 +g1,6586:14218271,45434140 +g1,6586:15799000,45434140 +g1,6586:17379729,45434140 +g1,6586:18960458,45434140 +h1,6586:19908895,45434140:0,0,0 +k1,6586:32583029,45434140:12674134 +g1,6586:32583029,45434140 +) +] +) +g1,6587:32583029,45510161 +g1,6587:6630773,45510161 +g1,6587:6630773,45510161 +g1,6587:32583029,45510161 +g1,6587:32583029,45510161 +) +h1,6587:6630773,45706769:0,0,0 +] +(1,6591:32583029,45706769:0,0,0 +g1,6591:32583029,45706769 +) +) +] +(1,6591:6630773,47279633:25952256,0,0 +h1,6591:6630773,47279633:25952256,0,0 +) +] +h1,6591:4262630,4025873:0,0,0 +] +!28140 }123 -Input:928:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:929:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:930:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:931:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:932:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:933:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:934:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:935:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:936:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!777 +Input:924:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:925:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:926:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:927:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:928:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:929:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:930:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:931:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!740 {124 [1,6641:4262630,47279633:28320399,43253760,0 (1,6641:4262630,4025873:0,0,0 @@ -126384,19 +126305,19 @@ g1,6641:3078558,4812305 [1,6641:3078558,4812305:0,0,0 (1,6641:3078558,2439708:0,1703936,0 k1,6641:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 r1,6641:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 r1,6641:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) @@ -126407,20 +126328,20 @@ g1,5277:29014430,1915420 (1,6641:3078558,2439708:0,1703936,0 g1,6641:29030814,2439708 g1,6641:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 r1,6641:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 r1,6641:37855564,2439708:1179648,16384,0 ) ) @@ -126430,19 +126351,19 @@ k1,6641:3078556,2439708:-34777008 [1,6641:3078558,4812305:0,0,0 (1,6641:3078558,49800853:0,16384,2228224 k1,6641:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 r1,6641:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 r1,6641:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) @@ -126453,20 +126374,20 @@ g1,5277:29014430,51504789 (1,6641:3078558,49800853:0,16384,2228224 g1,6641:29030814,49800853 g1,6641:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 r1,6641:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 r1,6641:37855564,49800853:1179648,16384,0 ) ) @@ -126490,697 +126411,708 @@ k1,6641:31387652,4812305:13320193 g1,6641:6630773,45706769 ) [1,6641:6630773,45706769:25952256,40108032,0 -v1,6586:6630773,6254097:0,393216,0 -(1,6586:6630773,9614799:25952256,3753918,616038 -g1,6586:6630773,9614799 -(1,6586:6630773,9614799:25952256,3753918,616038 -(1,6586:6630773,10230837:25952256,4369956,0 -[1,6586:6630773,10230837:25952256,4369956,0 -(1,6586:6630773,10204623:25952256,4343742,0 -r1,6586:6656987,10204623:26214,4343742,0 -[1,6586:6656987,10204623:25899828,4343742,0 -(1,6586:6656987,9614799:25899828,3164094,0 -[1,6586:7246811,9614799:24720180,3164094,0 -(1,6586:7246811,6963852:24720180,513147,126483 -k1,6585:9010623,6963852:162112 -k1,6585:11911485,6963852:162112 -k1,6585:15545040,6963852:162113 -k1,6585:16366444,6963852:162112 -k1,6585:17731797,6963852:162112 -k1,6585:19323249,6963852:162112 -k1,6585:20016858,6963852:162112 -k1,6585:21198055,6963852:162112 -k1,6585:24831610,6963852:162113 -k1,6585:25653014,6963852:162112 -k1,6585:29331788,6963852:162112 -k1,6585:31966991,6963852:0 -) -(1,6586:7246811,7805340:24720180,505283,134348 -k1,6585:10788740,7805340:215977 -k1,6585:14132096,7805340:215978 -k1,6585:16164731,7805340:215977 -k1,6585:19372427,7805340:215977 -k1,6585:20579965,7805340:215978 -k1,6585:23157860,7805340:215977 -k1,6585:25847166,7805340:215977 -k1,6585:29571286,7805340:215978 -k1,6585:31280829,7805340:215977 -k1,6585:31966991,7805340:0 -) -(1,6586:7246811,8646828:24720180,513147,134348 -k1,6585:7879334,8646828:276663 -k1,6585:10517914,8646828:276662 -k1,6585:13154528,8646828:276663 -k1,6585:14663268,8646828:276663 -k1,6585:16438083,8646828:276662 -h1,6585:17633460,8646828:0,0,0 -k1,6585:17910123,8646828:276663 -k1,6585:19134437,8646828:276663 -k1,6585:21113070,8646828:276663 -k1,6585:25106934,8646828:276662 -k1,6585:26035025,8646828:276663 -k1,6585:27330773,8646828:276663 -k1,6585:28699920,8646828:276662 -k1,6585:29635875,8646828:276663 -k1,6585:31966991,8646828:0 -) -(1,6586:7246811,9488316:24720180,505283,126483 -g1,6585:10163163,9488316 -k1,6586:31966991,9488316:19677840 -g1,6586:31966991,9488316 -) -] -) -] -r1,6586:32583029,10204623:26214,4343742,0 -) -] -) -) -g1,6586:32583029,9614799 -) -h1,6586:6630773,10230837:0,0,0 -(1,6588:6630773,13038405:25952256,32768,229376 -(1,6588:6630773,13038405:0,32768,229376 -(1,6588:6630773,13038405:5505024,32768,229376 -r1,6588:12135797,13038405:5505024,262144,229376 -) -k1,6588:6630773,13038405:-5505024 -) -(1,6588:6630773,13038405:25952256,32768,0 -r1,6588:32583029,13038405:25952256,32768,0 -) -) -(1,6588:6630773,14642733:25952256,606339,161218 -(1,6588:6630773,14642733:1974731,582746,14155 -g1,6588:6630773,14642733 -g1,6588:8605504,14642733 -) -g1,6588:11443737,14642733 -g1,6588:14255232,14642733 -g1,6588:15964935,14642733 -g1,6588:19924620,14642733 -k1,6588:32583029,14642733:9923985 -g1,6588:32583029,14642733 -) -(1,6591:6630773,15877437:25952256,513147,134348 -k1,6590:7471545,15877437:212937 -k1,6590:8450599,15877437:212938 -k1,6590:12309304,15877437:212937 -k1,6590:15513961,15877437:212938 -k1,6590:17769655,15877437:212937 -k1,6590:19185834,15877437:212938 -k1,6590:21851128,15877437:212937 -k1,6590:22932417,15877437:212937 -k1,6590:24620570,15877437:212938 -k1,6590:26346733,15877437:212937 -k1,6590:28519197,15877437:212938 -k1,6590:30800450,15877437:212937 -k1,6591:32583029,15877437:0 -) -(1,6591:6630773,16718925:25952256,505283,134348 -k1,6590:8006172,16718925:186576 -k1,6590:8878910,16718925:186576 -k1,6590:10925398,16718925:186576 -k1,6590:14086653,16718925:186576 -k1,6590:16469340,16718925:186576 -k1,6590:17271954,16718925:186576 -k1,6590:18477614,16718925:186575 -k1,6590:20160377,16718925:186576 -k1,6590:24290910,16718925:186576 -k1,6590:25105321,16718925:186576 -k1,6590:26993867,16718925:186576 -k1,6590:29309052,16718925:186576 -k1,6590:30514713,16718925:186576 -k1,6590:32583029,16718925:0 -) -(1,6591:6630773,17560413:25952256,513147,134348 -k1,6590:7837815,17560413:215482 -k1,6590:11145287,17560413:215483 -k1,6590:12046931,17560413:215482 -k1,6590:13584275,17560413:215483 -k1,6590:14459049,17560413:215482 -k1,6590:15693616,17560413:215482 -k1,6590:17578956,17560413:215483 -k1,6590:19746100,17560413:215482 -k1,6590:21404030,17560413:215483 -k1,6590:22232274,17560413:215482 -k1,6590:23565800,17560413:215482 -k1,6590:25380361,17560413:215483 -k1,6590:26223678,17560413:215482 -k1,6590:28600538,17560413:215483 -k1,6590:29498905,17560413:215482 -k1,6590:32583029,17560413:0 -) -(1,6591:6630773,18401901:25952256,505283,134348 -k1,6590:7899769,18401901:249911 -k1,6590:10109205,18401901:249910 -k1,6590:12097131,18401901:249911 -k1,6590:12998469,18401901:249910 -k1,6590:13996146,18401901:249911 -k1,6590:17020850,18401901:249910 -k1,6590:18607695,18401901:249911 -k1,6590:20387871,18401901:249910 -k1,6590:21289210,18401901:249911 -k1,6590:22286886,18401901:249910 -k1,6590:25028476,18401901:249911 -k1,6590:25891148,18401901:249910 -k1,6590:27259103,18401901:249911 -k1,6590:28934422,18401901:249911 -k1,6590:30549447,18401901:249910 -k1,6591:32583029,18401901:0 -) -(1,6591:6630773,19243389:25952256,505283,134348 -k1,6590:9460196,19243389:251237 -k1,6590:10459199,19243389:251237 -k1,6590:13494405,19243389:251237 -k1,6590:15121243,19243389:251237 -k1,6590:16058642,19243389:251237 -k1,6590:16665739,19243389:251237 -k1,6590:19891655,19243389:251237 -k1,6590:22008702,19243389:251237 -k1,6590:24298109,19243389:251237 -k1,6590:25165384,19243389:251237 -k1,6590:25772481,19243389:251237 -k1,6590:28708728,19243389:251237 -k1,6590:29587800,19243389:251237 -k1,6590:31042278,19243389:251237 -k1,6590:32583029,19243389:0 -) -(1,6591:6630773,20084877:25952256,513147,126483 -k1,6590:9517128,20084877:190859 -(1,6590:9517128,20084877:0,452978,122846 -r1,6590:12337377,20084877:2820249,575824,122846 -k1,6590:9517128,20084877:-2820249 -) -(1,6590:9517128,20084877:2820249,452978,122846 -k1,6590:9517128,20084877:3277 -h1,6590:12334100,20084877:0,411205,112570 -) -k1,6590:12528236,20084877:190859 -k1,6590:14341111,20084877:190859 -k1,6590:15279736,20084877:190859 -k1,6590:16983821,20084877:190859 -k1,6590:19501863,20084877:190859 -k1,6590:20352015,20084877:190860 -k1,6590:21561959,20084877:190859 -k1,6590:24829733,20084877:190859 -(1,6590:24829733,20084877:0,414482,115847 -r1,6590:25539711,20084877:709978,530329,115847 -k1,6590:24829733,20084877:-709978 -) -(1,6590:24829733,20084877:709978,414482,115847 -k1,6590:24829733,20084877:3277 -h1,6590:25536434,20084877:0,411205,112570 -) -k1,6590:25730570,20084877:190859 -k1,6590:26604314,20084877:190859 -(1,6590:26604314,20084877:0,414482,115847 -r1,6590:27314292,20084877:709978,530329,115847 -k1,6590:26604314,20084877:-709978 -) -(1,6590:26604314,20084877:709978,414482,115847 -k1,6590:26604314,20084877:3277 -h1,6590:27311015,20084877:0,411205,112570 -) -k1,6590:27678821,20084877:190859 -k1,6590:29066367,20084877:190859 -k1,6590:32583029,20084877:0 -) -(1,6591:6630773,20926365:25952256,505283,7863 -g1,6590:8698433,20926365 -g1,6590:12930748,20926365 -g1,6590:13918375,20926365 -k1,6591:32583029,20926365:17398498 -g1,6591:32583029,20926365 -) -(1,6593:6630773,21767853:25952256,473825,134348 -h1,6592:6630773,21767853:983040,0,0 -g1,6592:9248936,21767853 -g1,6592:11183558,21767853 -g1,6592:11738647,21767853 -(1,6592:11738647,21767853:0,452978,115847 -r1,6592:14910607,21767853:3171960,568825,115847 -k1,6592:11738647,21767853:-3171960 -) -(1,6592:11738647,21767853:3171960,452978,115847 -k1,6592:11738647,21767853:3277 -h1,6592:14907330,21767853:0,411205,112570 -) -g1,6592:15109836,21767853 -k1,6593:32583029,21767853:14541768 -g1,6593:32583029,21767853 -) -v1,6595:6630773,22958319:0,393216,0 -(1,6603:6630773,24639850:25952256,2074747,196608 -g1,6603:6630773,24639850 -g1,6603:6630773,24639850 -g1,6603:6434165,24639850 -(1,6603:6434165,24639850:0,2074747,196608 -r1,6603:32779637,24639850:26345472,2271355,196608 -k1,6603:6434165,24639850:-26345472 -) -(1,6603:6434165,24639850:26345472,2074747,196608 -[1,6603:6630773,24639850:25952256,1878139,0 -(1,6597:6630773,23165937:25952256,404226,107478 -(1,6596:6630773,23165937:0,0,0 -g1,6596:6630773,23165937 -g1,6596:6630773,23165937 -g1,6596:6303093,23165937 -(1,6596:6303093,23165937:0,0,0 -) -g1,6596:6630773,23165937 -) -k1,6597:6630773,23165937:0 -g1,6597:10424522,23165937 -h1,6597:12005251,23165937:0,0,0 -k1,6597:32583029,23165937:20577778 -g1,6597:32583029,23165937 -) -(1,6598:6630773,23832115:25952256,284164,4718 -h1,6598:6630773,23832115:0,0,0 -h1,6598:6946919,23832115:0,0,0 -k1,6598:32583029,23832115:25636110 -g1,6598:32583029,23832115 -) -(1,6602:6630773,24563829:25952256,404226,76021 -(1,6600:6630773,24563829:0,0,0 -g1,6600:6630773,24563829 -g1,6600:6630773,24563829 -g1,6600:6303093,24563829 -(1,6600:6303093,24563829:0,0,0 -) -g1,6600:6630773,24563829 -) -g1,6602:7579210,24563829 -g1,6602:8843793,24563829 -h1,6602:10108376,24563829:0,0,0 -k1,6602:32583028,24563829:22474652 -g1,6602:32583028,24563829 -) -] -) -g1,6603:32583029,24639850 -g1,6603:6630773,24639850 -g1,6603:6630773,24639850 -g1,6603:32583029,24639850 -g1,6603:32583029,24639850 -) -h1,6603:6630773,24836458:0,0,0 -(1,6606:6630773,26202234:25952256,505283,134348 -h1,6605:6630773,26202234:983040,0,0 -g1,6605:9274495,26202234 -g1,6605:11209117,26202234 -g1,6605:11764206,26202234 -(1,6605:11764206,26202234:0,452978,115847 -r1,6605:14936166,26202234:3171960,568825,115847 -k1,6605:11764206,26202234:-3171960 -) -(1,6605:11764206,26202234:3171960,452978,115847 -k1,6605:11764206,26202234:3277 -h1,6605:14932889,26202234:0,411205,112570 -) -g1,6605:15135395,26202234 -g1,6605:17014967,26202234 -g1,6605:19252366,26202234 -g1,6605:20067633,26202234 -g1,6605:20622722,26202234 -k1,6606:32583029,26202234:9275297 -g1,6606:32583029,26202234 -) -v1,6608:6630773,27392700:0,393216,0 -(1,6617:6630773,29746701:25952256,2747217,196608 -g1,6617:6630773,29746701 -g1,6617:6630773,29746701 -g1,6617:6434165,29746701 -(1,6617:6434165,29746701:0,2747217,196608 -r1,6617:32779637,29746701:26345472,2943825,196608 -k1,6617:6434165,29746701:-26345472 -) -(1,6617:6434165,29746701:26345472,2747217,196608 -[1,6617:6630773,29746701:25952256,2550609,0 -(1,6610:6630773,27606610:25952256,410518,6290 -(1,6609:6630773,27606610:0,0,0 -g1,6609:6630773,27606610 -g1,6609:6630773,27606610 -g1,6609:6303093,27606610 -(1,6609:6303093,27606610:0,0,0 -) -g1,6609:6630773,27606610 -) -g1,6610:10424521,27606610 -g1,6610:11372959,27606610 -h1,6610:12321396,27606610:0,0,0 -k1,6610:32583028,27606610:20261632 -g1,6610:32583028,27606610 -) -(1,6611:6630773,28272788:25952256,410518,107478 -h1,6611:6630773,28272788:0,0,0 -g1,6611:12953687,28272788 -h1,6611:14534416,28272788:0,0,0 -k1,6611:32583028,28272788:18048612 -g1,6611:32583028,28272788 -) -(1,6612:6630773,28938966:25952256,404226,6290 -h1,6612:6630773,28938966:0,0,0 -h1,6612:6946919,28938966:0,0,0 -k1,6612:32583029,28938966:25636110 -g1,6612:32583029,28938966 -) -(1,6616:6630773,29670680:25952256,404226,76021 -(1,6614:6630773,29670680:0,0,0 -g1,6614:6630773,29670680 -g1,6614:6630773,29670680 -g1,6614:6303093,29670680 -(1,6614:6303093,29670680:0,0,0 -) -g1,6614:6630773,29670680 -) -g1,6616:7579210,29670680 -g1,6616:8843793,29670680 -h1,6616:10108376,29670680:0,0,0 -k1,6616:32583028,29670680:22474652 -g1,6616:32583028,29670680 -) -] -) -g1,6617:32583029,29746701 -g1,6617:6630773,29746701 -g1,6617:6630773,29746701 -g1,6617:32583029,29746701 -g1,6617:32583029,29746701 -) -h1,6617:6630773,29943309:0,0,0 -(1,6621:6630773,31309085:25952256,505283,126483 -h1,6620:6630773,31309085:983040,0,0 -k1,6620:9098405,31309085:287905 -k1,6620:10558748,31309085:287904 -k1,6620:11859184,31309085:287905 -k1,6620:15138807,31309085:287904 -k1,6620:17282036,31309085:287905 -k1,6620:18385209,31309085:287905 -k1,6620:19739384,31309085:287904 -k1,6620:24060375,31309085:287905 -k1,6620:25645238,31309085:287905 -k1,6620:27089852,31309085:287904 -k1,6620:28714691,31309085:287905 -k1,6620:30551211,31309085:287904 -k1,6620:31490544,31309085:287905 -k1,6621:32583029,31309085:0 -) -(1,6621:6630773,32150573:25952256,505283,134348 -(1,6620:6630773,32150573:0,452978,122846 -r1,6620:9451022,32150573:2820249,575824,122846 -k1,6620:6630773,32150573:-2820249 -) -(1,6620:6630773,32150573:2820249,452978,122846 -k1,6620:6630773,32150573:3277 -h1,6620:9447745,32150573:0,411205,112570 -) -k1,6620:9795175,32150573:170483 -k1,6620:12864971,32150573:170483 -k1,6620:16192324,32150573:170484 -k1,6620:18281701,32150573:170483 -k1,6620:19320536,32150573:170483 -k1,6620:20827953,32150573:170483 -k1,6620:22547053,32150573:170484 -k1,6620:23368964,32150573:170483 -k1,6620:24631932,32150573:170483 -k1,6620:27777094,32150573:170483 -k1,6620:30143689,32150573:170484 -k1,6620:30965600,32150573:170483 -k1,6620:32583029,32150573:0 -) -(1,6621:6630773,32992061:25952256,513147,134348 -k1,6620:9017453,32992061:192535 -k1,6620:9892874,32992061:192536 -k1,6620:12783526,32992061:192535 -k1,6620:14935587,32992061:192535 -k1,6620:17196439,32992061:192536 -k1,6620:18380534,32992061:192535 -k1,6620:19178622,32992061:192535 -k1,6620:21069196,32992061:192536 -k1,6620:22130083,32992061:192535 -k1,6620:24004273,32992061:192536 -k1,6620:25907953,32992061:192535 -k1,6620:26751916,32992061:192535 -k1,6620:29374527,32992061:192536 -k1,6620:31635378,32992061:192535 -k1,6620:32583029,32992061:0 -) -(1,6621:6630773,33833549:25952256,505283,134348 -k1,6620:9143674,33833549:223073 -k1,6620:11222727,33833549:223073 -k1,6620:15372717,33833549:223073 -k1,6620:16278675,33833549:223073 -k1,6620:17187910,33833549:223073 -(1,6620:17187910,33833549:0,452978,115847 -r1,6620:20359870,33833549:3171960,568825,115847 -k1,6620:17187910,33833549:-3171960 -) -(1,6620:17187910,33833549:3171960,452978,115847 -k1,6620:17187910,33833549:3277 -h1,6620:20356593,33833549:0,411205,112570 -) -k1,6620:20582943,33833549:223073 -k1,6620:22369051,33833549:223074 -k1,6620:23197677,33833549:223073 -k1,6620:25118788,33833549:223073 -k1,6620:25957899,33833549:223073 -k1,6620:26536832,33833549:223073 -k1,6620:28174827,33833549:223073 -k1,6620:29266252,33833549:223073 -k1,6620:32583029,33833549:0 -) -(1,6621:6630773,34675037:25952256,513147,134348 -k1,6620:7196567,34675037:209934 -k1,6620:9384377,34675037:209933 -k1,6620:10277196,34675037:209934 -k1,6620:11480656,34675037:209934 -k1,6620:12349881,34675037:209933 -k1,6620:14519341,34675037:209934 -k1,6620:16971262,34675037:209934 -k1,6620:17864080,34675037:209933 -k1,6620:18679567,34675037:209934 -k1,6620:19757853,34675037:209934 -k1,6620:22991617,34675037:209933 -k1,6620:23814313,34675037:209934 -k1,6620:26567699,34675037:209934 -k1,6620:28737158,34675037:209933 -k1,6620:31015408,34675037:209934 -k1,6620:32583029,34675037:0 -) -(1,6621:6630773,35516525:25952256,505283,134348 -k1,6620:9529583,35516525:227563 -k1,6620:12731826,35516525:227564 -k1,6620:15155500,35516525:227563 -k1,6620:17237732,35516525:227563 -k1,6620:18274666,35516525:227564 -k1,6620:19891592,35516525:227563 -k1,6620:20802040,35516525:227563 -k1,6620:23715269,35516525:227564 -k1,6620:24430392,35516525:227535 -k1,6620:27435371,35516525:227563 -k1,6620:29030015,35516525:227563 -k1,6620:29789076,35516525:227564 -k1,6620:31714677,35516525:227563 -k1,6620:32583029,35516525:0 -) -(1,6621:6630773,36358013:25952256,513147,134348 -k1,6620:8984130,36358013:171663 -k1,6620:10545156,36358013:171663 -k1,6620:12284441,36358013:171664 -k1,6620:12811964,36358013:171663 -k1,6620:14209806,36358013:171663 -k1,6620:15364509,36358013:171663 -k1,6620:16727618,36358013:171664 -k1,6620:17767633,36358013:171663 -k1,6620:19487912,36358013:171663 -k1,6620:20311003,36358013:171663 -k1,6620:22220682,36358013:171664 -k1,6620:23411430,36358013:171663 -k1,6620:25542619,36358013:171663 -k1,6620:28831174,36358013:171663 -k1,6620:29654266,36358013:171664 -k1,6620:30845014,36358013:171663 -k1,6620:32583029,36358013:0 -) -(1,6621:6630773,37199501:25952256,513147,134348 -k1,6620:7477352,37199501:187287 -k1,6620:8683725,37199501:187288 -k1,6620:9854052,37199501:187287 -k1,6620:10850709,37199501:187287 -k1,6620:12556465,37199501:187287 -k1,6620:13426638,37199501:187288 -k1,6620:13969785,37199501:187287 -k1,6620:17131751,37199501:187287 -k1,6620:19184848,37199501:187287 -k1,6620:20784437,37199501:187288 -k1,6620:22539345,37199501:187287 -k1,6620:23745717,37199501:187287 -k1,6620:26107490,37199501:187288 -k1,6620:26907539,37199501:187287 -k1,6620:28113911,37199501:187287 -k1,6620:29373367,37199501:187287 -k1,6620:30219947,37199501:187288 -k1,6620:31426319,37199501:187287 -k1,6621:32583029,37199501:0 -k1,6621:32583029,37199501:0 -) -(1,6623:6630773,38040989:25952256,513147,126483 -h1,6622:6630773,38040989:983040,0,0 -g1,6622:10417443,38040989 -g1,6622:11983753,38040989 -g1,6622:12714479,38040989 -g1,6622:14611746,38040989 -(1,6622:14611746,38040989:0,452978,115847 -r1,6622:17783706,38040989:3171960,568825,115847 -k1,6622:14611746,38040989:-3171960 -) -(1,6622:14611746,38040989:3171960,452978,115847 -k1,6622:14611746,38040989:3277 -h1,6622:17780429,38040989:0,411205,112570 -) -g1,6622:17982935,38040989 -g1,6622:20192809,38040989 -g1,6622:21383598,38040989 -g1,6622:22601912,38040989 -g1,6622:24644013,38040989 -g1,6622:25502534,38040989 -g1,6622:26057623,38040989 -k1,6623:32583029,38040989:2287848 -g1,6623:32583029,38040989 -) -v1,6625:6630773,39231455:0,393216,0 -(1,6635:6630773,42251634:25952256,3413395,196608 -g1,6635:6630773,42251634 -g1,6635:6630773,42251634 -g1,6635:6434165,42251634 -(1,6635:6434165,42251634:0,3413395,196608 -r1,6635:32779637,42251634:26345472,3610003,196608 -k1,6635:6434165,42251634:-26345472 -) -(1,6635:6434165,42251634:26345472,3413395,196608 -[1,6635:6630773,42251634:25952256,3216787,0 -(1,6627:6630773,39445365:25952256,410518,76021 -(1,6626:6630773,39445365:0,0,0 -g1,6626:6630773,39445365 -g1,6626:6630773,39445365 -g1,6626:6303093,39445365 -(1,6626:6303093,39445365:0,0,0 -) -g1,6626:6630773,39445365 -) -k1,6627:6630773,39445365:0 -g1,6627:7895356,39445365 -g1,6627:8843793,39445365 -g1,6627:9792230,39445365 -g1,6627:11372960,39445365 -h1,6627:11689106,39445365:0,0,0 -k1,6627:32583030,39445365:20893924 -g1,6627:32583030,39445365 -) -(1,6628:6630773,40111543:25952256,404226,107478 -h1,6628:6630773,40111543:0,0,0 -g1,6628:6946919,40111543 -g1,6628:7263065,40111543 -g1,6628:7579211,40111543 -g1,6628:13902125,40111543 -g1,6628:14850563,40111543 -g1,6628:16115146,40111543 -g1,6628:16747438,40111543 -g1,6628:18328167,40111543 -h1,6628:19592751,40111543:0,0,0 -k1,6628:32583029,40111543:12990278 -g1,6628:32583029,40111543 -) -(1,6629:6630773,40777721:25952256,404226,76021 -h1,6629:6630773,40777721:0,0,0 -h1,6629:6946919,40777721:0,0,0 -k1,6629:32583029,40777721:25636110 -g1,6629:32583029,40777721 -) -(1,6630:6630773,41443899:25952256,404226,101187 -h1,6630:6630773,41443899:0,0,0 -g1,6630:10108376,41443899 -g1,6630:10740668,41443899 -h1,6630:12953688,41443899:0,0,0 -k1,6630:32583028,41443899:19629340 -g1,6630:32583028,41443899 -) -(1,6634:6630773,42175613:25952256,404226,76021 -(1,6632:6630773,42175613:0,0,0 -g1,6632:6630773,42175613 -g1,6632:6630773,42175613 -g1,6632:6303093,42175613 -(1,6632:6303093,42175613:0,0,0 -) -g1,6632:6630773,42175613 -) -g1,6634:7579210,42175613 -g1,6634:8843793,42175613 -g1,6634:11056813,42175613 -g1,6634:13269833,42175613 -g1,6634:15482853,42175613 -g1,6634:17695873,42175613 -h1,6634:19592747,42175613:0,0,0 -k1,6634:32583029,42175613:12990282 -g1,6634:32583029,42175613 -) -] -) -g1,6635:32583029,42251634 -g1,6635:6630773,42251634 -g1,6635:6630773,42251634 -g1,6635:32583029,42251634 -g1,6635:32583029,42251634 -) -h1,6635:6630773,42448242:0,0,0 -(1,6639:6630773,43814018:25952256,513147,134348 -h1,6638:6630773,43814018:983040,0,0 -k1,6638:9091095,43814018:280595 -k1,6638:14337353,43814018:280595 -k1,6638:17692242,43814018:280595 -k1,6638:18632129,43814018:280595 -k1,6638:21892646,43814018:280595 -k1,6638:22529101,43814018:280595 -k1,6638:24547711,43814018:280595 -k1,6638:25479734,43814018:280595 -k1,6638:26531032,43814018:280595 -k1,6638:28771153,43814018:280595 -k1,6638:29583245,43814018:280595 -k1,6638:30515268,43814018:280595 -k1,6638:31812326,43814018:280595 -k1,6638:32583029,43814018:0 -) -(1,6639:6630773,44655506:25952256,505283,134348 -k1,6638:8820658,44655506:230359 -k1,6638:10749055,44655506:230359 -k1,6638:11847767,44655506:230360 -k1,6638:13553341,44655506:230359 -k1,6638:16567669,44655506:230359 -k1,6638:17586426,44655506:230359 -k1,6638:19554800,44655506:230359 -k1,6638:20471321,44655506:230359 -k1,6638:21057541,44655506:230360 -k1,6638:24262579,44655506:230359 -k1,6638:26532418,44655506:230359 -k1,6638:27959464,44655506:230359 -k1,6638:32583029,44655506:0 -) -(1,6639:6630773,45496994:25952256,513147,122846 -g1,6638:9525498,45496994 -g1,6638:10256224,45496994 -(1,6638:10256224,45496994:0,452978,122846 -r1,6638:12021337,45496994:1765113,575824,122846 -k1,6638:10256224,45496994:-1765113 -) -(1,6638:10256224,45496994:1765113,452978,122846 -k1,6638:10256224,45496994:3277 -h1,6638:12018060,45496994:0,411205,112570 -) -k1,6639:32583029,45496994:20388022 -g1,6639:32583029,45496994 +v1,6591:6630773,6254097:0,393216,0 +(1,6592:6630773,14497191:25952256,8636310,616038 +g1,6592:6630773,14497191 +(1,6592:6630773,14497191:25952256,8636310,616038 +(1,6592:6630773,15113229:25952256,9252348,0 +[1,6592:6630773,15113229:25952256,9252348,0 +(1,6592:6630773,15087015:25952256,9199920,0 +r1,6592:6656987,15087015:26214,9199920,0 +[1,6592:6656987,15087015:25899828,9199920,0 +(1,6592:6656987,14497191:25899828,8020272,0 +[1,6592:7246811,14497191:24720180,8020272,0 +(1,6592:7246811,7638804:24720180,1161885,196608 +(1,6591:7246811,7638804:0,1161885,196608 +r1,6592:8794447,7638804:1547636,1358493,196608 +k1,6591:7246811,7638804:-1547636 +) +(1,6591:7246811,7638804:1547636,1161885,196608 +) +k1,6591:9001296,7638804:206849 +k1,6591:11230787,7638804:212293 +k1,6591:14571769,7638804:212293 +k1,6591:15731713,7638804:212293 +k1,6591:17393007,7638804:212293 +k1,6591:21069988,7638804:206850 +k1,6591:23172138,7638804:206849 +k1,6591:26404784,7638804:206849 +k1,6591:28782186,7638804:206850 +k1,6591:31118300,7638804:206849 +k1,6592:31966991,7638804:0 +) +(1,6592:7246811,8480292:24720180,513147,126483 +k1,6591:9198732,8480292:289273 +k1,6591:11819121,8480292:289273 +k1,6591:13853617,8480292:289272 +k1,6591:14829052,8480292:289273 +k1,6591:16498513,8480292:289273 +k1,6591:17779346,8480292:289273 +k1,6591:19281690,8480292:289273 +k1,6591:22045601,8480292:289272 +k1,6591:22822372,8480292:289183 +k1,6591:25236322,8480292:289273 +k1,6591:28187011,8480292:289272 +k1,6591:29007781,8480292:289273 +k1,6591:30316139,8480292:289273 +k1,6592:31966991,8480292:0 +) +(1,6592:7246811,9321780:24720180,505283,134348 +k1,6591:10365252,9321780:255173 +k1,6591:13135042,9321780:255174 +k1,6591:15309109,9321780:255173 +k1,6591:16432634,9321780:255173 +k1,6591:18762678,9321780:255174 +k1,6591:21576377,9321780:255173 +k1,6591:22187411,9321780:255174 +k1,6591:25529330,9321780:255173 +k1,6591:27069009,9321780:255173 +k1,6591:29271913,9321780:255174 +k1,6591:29882946,9321780:255173 +k1,6591:31966991,9321780:0 +) +(1,6592:7246811,10163268:24720180,505283,126483 +k1,6591:9364584,10163268:274901 +k1,6591:12274687,10163268:274900 +k1,6591:15770683,10163268:274901 +k1,6591:16533096,10163268:274825 +k1,6591:19010006,10163268:274900 +k1,6591:20651988,10163268:274901 +k1,6591:21458385,10163268:274900 +k1,6591:22089146,10163268:274901 +k1,6591:24704993,10163268:274901 +k1,6591:26898787,10163268:274900 +k1,6591:30975431,10163268:274901 +k1,6591:31966991,10163268:0 +) +(1,6592:7246811,11004756:24720180,505283,126483 +k1,6591:9000118,11004756:175855 +k1,6591:10563370,11004756:175855 +k1,6591:11095084,11004756:175854 +k1,6591:14344578,11004756:175855 +k1,6591:15804939,11004756:175855 +k1,6591:18030105,11004756:175855 +k1,6591:18818722,11004756:175855 +k1,6591:20446199,11004756:175855 +k1,6591:23512846,11004756:175854 +k1,6591:24885388,11004756:175855 +k1,6591:27773123,11004756:175855 +k1,6591:29140423,11004756:175855 +k1,6591:31966991,11004756:0 +) +(1,6592:7246811,11846244:24720180,513147,126483 +k1,6591:9010623,11846244:162112 +k1,6591:11911485,11846244:162112 +k1,6591:15545040,11846244:162113 +k1,6591:16366444,11846244:162112 +k1,6591:17731797,11846244:162112 +k1,6591:19323249,11846244:162112 +k1,6591:20016858,11846244:162112 +k1,6591:21198055,11846244:162112 +k1,6591:24831610,11846244:162113 +k1,6591:25653014,11846244:162112 +k1,6591:29331788,11846244:162112 +k1,6591:31966991,11846244:0 +) +(1,6592:7246811,12687732:24720180,505283,134348 +k1,6591:10788740,12687732:215977 +k1,6591:14132096,12687732:215978 +k1,6591:16164731,12687732:215977 +k1,6591:19372427,12687732:215977 +k1,6591:20579965,12687732:215978 +k1,6591:23157860,12687732:215977 +k1,6591:25847166,12687732:215977 +k1,6591:29571286,12687732:215978 +k1,6591:31280829,12687732:215977 +k1,6591:31966991,12687732:0 +) +(1,6592:7246811,13529220:24720180,513147,134348 +k1,6591:7879334,13529220:276663 +k1,6591:10517914,13529220:276662 +k1,6591:13154528,13529220:276663 +k1,6591:14663268,13529220:276663 +k1,6591:16438083,13529220:276662 +h1,6591:17633460,13529220:0,0,0 +k1,6591:17910123,13529220:276663 +k1,6591:19134437,13529220:276663 +k1,6591:21113070,13529220:276663 +k1,6591:25106934,13529220:276662 +k1,6591:26035025,13529220:276663 +k1,6591:27330773,13529220:276663 +k1,6591:28699920,13529220:276662 +k1,6591:29635875,13529220:276663 +k1,6591:31966991,13529220:0 +) +(1,6592:7246811,14370708:24720180,505283,126483 +g1,6591:10163163,14370708 +k1,6592:31966991,14370708:19677840 +g1,6592:31966991,14370708 +) +] +) +] +r1,6592:32583029,15087015:26214,9199920,0 +) +] +) +) +g1,6592:32583029,14497191 +) +h1,6592:6630773,15113229:0,0,0 +(1,6594:6630773,17920797:25952256,32768,229376 +(1,6594:6630773,17920797:0,32768,229376 +(1,6594:6630773,17920797:5505024,32768,229376 +r1,6594:12135797,17920797:5505024,262144,229376 +) +k1,6594:6630773,17920797:-5505024 +) +(1,6594:6630773,17920797:25952256,32768,0 +r1,6594:32583029,17920797:25952256,32768,0 +) +) +(1,6594:6630773,19525125:25952256,606339,161218 +(1,6594:6630773,19525125:1974731,582746,14155 +g1,6594:6630773,19525125 +g1,6594:8605504,19525125 +) +g1,6594:11443737,19525125 +g1,6594:14255232,19525125 +g1,6594:15964935,19525125 +g1,6594:19924620,19525125 +k1,6594:32583029,19525125:9923985 +g1,6594:32583029,19525125 +) +(1,6597:6630773,20759829:25952256,513147,134348 +k1,6596:7551008,20759829:292400 +k1,6596:8609524,20759829:292400 +k1,6596:12547692,20759829:292400 +k1,6596:15831810,20759829:292399 +k1,6596:18166967,20759829:292400 +k1,6596:19662608,20759829:292400 +k1,6596:22407365,20759829:292400 +k1,6596:23568117,20759829:292400 +k1,6596:25335732,20759829:292400 +k1,6596:27141357,20759829:292399 +k1,6596:29393283,20759829:292400 +k1,6596:31753999,20759829:292400 +k1,6597:32583029,20759829:0 +) +(1,6597:6630773,21601317:25952256,505283,134348 +k1,6596:9068166,21601317:295021 +k1,6596:10049349,21601317:295021 +k1,6596:12204283,21601317:295022 +k1,6596:15473983,21601317:295021 +k1,6596:17965115,21601317:295021 +k1,6596:18876174,21601317:295021 +k1,6596:20190280,21601317:295021 +k1,6596:21981488,21601317:295021 +k1,6596:26220467,21601317:295022 +k1,6596:27143323,21601317:295021 +k1,6596:29140314,21601317:295021 +k1,6596:31563944,21601317:295021 +k1,6596:32583029,21601317:0 +) +(1,6597:6630773,22442805:25952256,513147,126483 +k1,6596:8982292,22442805:283203 +k1,6596:10257055,22442805:283203 +k1,6596:13632247,22442805:283203 +k1,6596:14601612,22442805:283203 +k1,6596:16206676,22442805:283203 +k1,6596:17149171,22442805:283203 +k1,6596:18451459,22442805:283203 +k1,6596:20404518,22442805:283202 +k1,6596:22639383,22442805:283203 +k1,6596:24365033,22442805:283203 +k1,6596:25260998,22442805:283203 +k1,6596:26662245,22442805:283203 +k1,6596:28544526,22442805:283203 +k1,6596:29455564,22442805:283203 +k1,6596:31900144,22442805:283203 +k1,6596:32583029,22442805:0 +) +(1,6597:6630773,23284293:25952256,505283,134348 +k1,6596:10005128,23284293:290231 +k1,6596:11314444,23284293:290231 +k1,6596:13564200,23284293:290230 +k1,6596:15592446,23284293:290231 +k1,6596:16534105,23284293:290231 +k1,6596:17572102,23284293:290231 +k1,6596:20637127,23284293:290231 +k1,6596:22264291,23284293:290230 +k1,6596:24084788,23284293:290231 +k1,6596:25026447,23284293:290231 +k1,6596:26064444,23284293:290231 +k1,6596:28846353,23284293:290230 +k1,6596:29749346,23284293:290231 +k1,6596:31157621,23284293:290231 +k1,6596:32583029,23284293:0 +) +(1,6597:6630773,24125781:25952256,505283,134348 +k1,6596:8232473,24125781:236585 +k1,6596:12867835,24125781:236585 +k1,6596:13852186,24125781:236585 +k1,6596:16872740,24125781:236585 +k1,6596:18484926,24125781:236585 +k1,6596:19407673,24125781:236585 +k1,6596:20000117,24125781:236584 +k1,6596:23211381,24125781:236585 +k1,6596:25313776,24125781:236585 +k1,6596:27588531,24125781:236585 +k1,6596:28441154,24125781:236585 +k1,6596:29033599,24125781:236585 +k1,6596:31955194,24125781:236585 +k1,6596:32583029,24125781:0 +) +(1,6597:6630773,24967269:25952256,513147,126483 +k1,6596:8066431,24967269:232417 +k1,6596:9839599,24967269:232417 +k1,6596:12767512,24967269:232417 +(1,6596:12767512,24967269:0,452978,122846 +r1,6596:15587761,24967269:2820249,575824,122846 +k1,6596:12767512,24967269:-2820249 +) +(1,6596:12767512,24967269:2820249,452978,122846 +k1,6596:12767512,24967269:3277 +h1,6596:15584484,24967269:0,411205,112570 +) +k1,6596:15820178,24967269:232417 +k1,6596:17674611,24967269:232417 +k1,6596:18654794,24967269:232417 +k1,6596:20400437,24967269:232417 +k1,6596:22960037,24967269:232417 +k1,6596:23851746,24967269:232417 +k1,6596:25103248,24967269:232417 +k1,6596:28412580,24967269:232417 +(1,6596:28412580,24967269:0,414482,115847 +r1,6596:29122558,24967269:709978,530329,115847 +k1,6596:28412580,24967269:-709978 +) +(1,6596:28412580,24967269:709978,414482,115847 +k1,6596:28412580,24967269:3277 +h1,6596:29119281,24967269:0,411205,112570 +) +k1,6596:29354975,24967269:232417 +k1,6596:30270277,24967269:232417 +(1,6596:30270277,24967269:0,414482,115847 +r1,6596:30980255,24967269:709978,530329,115847 +k1,6596:30270277,24967269:-709978 +) +(1,6596:30270277,24967269:709978,414482,115847 +k1,6596:30270277,24967269:3277 +h1,6596:30976978,24967269:0,411205,112570 +) +k1,6596:31386342,24967269:232417 +k1,6596:32583029,24967269:0 +) +(1,6597:6630773,25808757:25952256,505283,7863 +g1,6596:10346664,25808757 +g1,6596:12414324,25808757 +g1,6596:16646639,25808757 +g1,6596:17634266,25808757 +k1,6597:32583029,25808757:13682607 +g1,6597:32583029,25808757 +) +(1,6599:6630773,26650245:25952256,473825,134348 +h1,6598:6630773,26650245:983040,0,0 +g1,6598:9248936,26650245 +g1,6598:11183558,26650245 +g1,6598:11738647,26650245 +(1,6598:11738647,26650245:0,452978,115847 +r1,6598:14910607,26650245:3171960,568825,115847 +k1,6598:11738647,26650245:-3171960 +) +(1,6598:11738647,26650245:3171960,452978,115847 +k1,6598:11738647,26650245:3277 +h1,6598:14907330,26650245:0,411205,112570 +) +g1,6598:15109836,26650245 +k1,6599:32583029,26650245:14541768 +g1,6599:32583029,26650245 +) +v1,6601:6630773,27677485:0,393216,0 +(1,6609:6630773,29359016:25952256,2074747,196608 +g1,6609:6630773,29359016 +g1,6609:6630773,29359016 +g1,6609:6434165,29359016 +(1,6609:6434165,29359016:0,2074747,196608 +r1,6609:32779637,29359016:26345472,2271355,196608 +k1,6609:6434165,29359016:-26345472 +) +(1,6609:6434165,29359016:26345472,2074747,196608 +[1,6609:6630773,29359016:25952256,1878139,0 +(1,6603:6630773,27885103:25952256,404226,107478 +(1,6602:6630773,27885103:0,0,0 +g1,6602:6630773,27885103 +g1,6602:6630773,27885103 +g1,6602:6303093,27885103 +(1,6602:6303093,27885103:0,0,0 +) +g1,6602:6630773,27885103 +) +k1,6603:6630773,27885103:0 +g1,6603:10424522,27885103 +h1,6603:12005251,27885103:0,0,0 +k1,6603:32583029,27885103:20577778 +g1,6603:32583029,27885103 +) +(1,6604:6630773,28551281:25952256,284164,4718 +h1,6604:6630773,28551281:0,0,0 +h1,6604:6946919,28551281:0,0,0 +k1,6604:32583029,28551281:25636110 +g1,6604:32583029,28551281 +) +(1,6608:6630773,29282995:25952256,404226,76021 +(1,6606:6630773,29282995:0,0,0 +g1,6606:6630773,29282995 +g1,6606:6630773,29282995 +g1,6606:6303093,29282995 +(1,6606:6303093,29282995:0,0,0 +) +g1,6606:6630773,29282995 +) +g1,6608:7579210,29282995 +g1,6608:8843793,29282995 +h1,6608:10108376,29282995:0,0,0 +k1,6608:32583028,29282995:22474652 +g1,6608:32583028,29282995 +) +] +) +g1,6609:32583029,29359016 +g1,6609:6630773,29359016 +g1,6609:6630773,29359016 +g1,6609:32583029,29359016 +g1,6609:32583029,29359016 +) +h1,6609:6630773,29555624:0,0,0 +(1,6612:6630773,30758174:25952256,505283,134348 +h1,6611:6630773,30758174:983040,0,0 +g1,6611:9274495,30758174 +g1,6611:11209117,30758174 +g1,6611:11764206,30758174 +(1,6611:11764206,30758174:0,452978,115847 +r1,6611:14936166,30758174:3171960,568825,115847 +k1,6611:11764206,30758174:-3171960 +) +(1,6611:11764206,30758174:3171960,452978,115847 +k1,6611:11764206,30758174:3277 +h1,6611:14932889,30758174:0,411205,112570 +) +g1,6611:15135395,30758174 +g1,6611:17014967,30758174 +g1,6611:19252366,30758174 +g1,6611:20067633,30758174 +g1,6611:20622722,30758174 +k1,6612:32583029,30758174:9275297 +g1,6612:32583029,30758174 +) +v1,6614:6630773,31785414:0,393216,0 +(1,6623:6630773,34139415:25952256,2747217,196608 +g1,6623:6630773,34139415 +g1,6623:6630773,34139415 +g1,6623:6434165,34139415 +(1,6623:6434165,34139415:0,2747217,196608 +r1,6623:32779637,34139415:26345472,2943825,196608 +k1,6623:6434165,34139415:-26345472 +) +(1,6623:6434165,34139415:26345472,2747217,196608 +[1,6623:6630773,34139415:25952256,2550609,0 +(1,6616:6630773,31999324:25952256,410518,6290 +(1,6615:6630773,31999324:0,0,0 +g1,6615:6630773,31999324 +g1,6615:6630773,31999324 +g1,6615:6303093,31999324 +(1,6615:6303093,31999324:0,0,0 +) +g1,6615:6630773,31999324 +) +g1,6616:10424521,31999324 +g1,6616:11372959,31999324 +h1,6616:12321396,31999324:0,0,0 +k1,6616:32583028,31999324:20261632 +g1,6616:32583028,31999324 +) +(1,6617:6630773,32665502:25952256,410518,107478 +h1,6617:6630773,32665502:0,0,0 +g1,6617:12953687,32665502 +h1,6617:14534416,32665502:0,0,0 +k1,6617:32583028,32665502:18048612 +g1,6617:32583028,32665502 +) +(1,6618:6630773,33331680:25952256,404226,6290 +h1,6618:6630773,33331680:0,0,0 +h1,6618:6946919,33331680:0,0,0 +k1,6618:32583029,33331680:25636110 +g1,6618:32583029,33331680 +) +(1,6622:6630773,34063394:25952256,404226,76021 +(1,6620:6630773,34063394:0,0,0 +g1,6620:6630773,34063394 +g1,6620:6630773,34063394 +g1,6620:6303093,34063394 +(1,6620:6303093,34063394:0,0,0 +) +g1,6620:6630773,34063394 +) +g1,6622:7579210,34063394 +g1,6622:8843793,34063394 +h1,6622:10108376,34063394:0,0,0 +k1,6622:32583028,34063394:22474652 +g1,6622:32583028,34063394 +) +] +) +g1,6623:32583029,34139415 +g1,6623:6630773,34139415 +g1,6623:6630773,34139415 +g1,6623:32583029,34139415 +g1,6623:32583029,34139415 +) +h1,6623:6630773,34336023:0,0,0 +(1,6627:6630773,35538573:25952256,505283,126483 +h1,6626:6630773,35538573:983040,0,0 +k1,6626:9098405,35538573:287905 +k1,6626:10558748,35538573:287904 +k1,6626:11859184,35538573:287905 +k1,6626:15138807,35538573:287904 +k1,6626:17282036,35538573:287905 +k1,6626:18385209,35538573:287905 +k1,6626:19739384,35538573:287904 +k1,6626:24060375,35538573:287905 +k1,6626:25645238,35538573:287905 +k1,6626:27089852,35538573:287904 +k1,6626:28714691,35538573:287905 +k1,6626:30551211,35538573:287904 +k1,6626:31490544,35538573:287905 +k1,6627:32583029,35538573:0 +) +(1,6627:6630773,36380061:25952256,505283,134348 +(1,6626:6630773,36380061:0,452978,122846 +r1,6626:9451022,36380061:2820249,575824,122846 +k1,6626:6630773,36380061:-2820249 +) +(1,6626:6630773,36380061:2820249,452978,122846 +k1,6626:6630773,36380061:3277 +h1,6626:9447745,36380061:0,411205,112570 +) +k1,6626:9795175,36380061:170483 +k1,6626:12864971,36380061:170483 +k1,6626:16192324,36380061:170484 +k1,6626:18281701,36380061:170483 +k1,6626:19320536,36380061:170483 +k1,6626:20827953,36380061:170483 +k1,6626:22547053,36380061:170484 +k1,6626:23368964,36380061:170483 +k1,6626:24631932,36380061:170483 +k1,6626:27777094,36380061:170483 +k1,6626:30143689,36380061:170484 +k1,6626:30965600,36380061:170483 +k1,6626:32583029,36380061:0 +) +(1,6627:6630773,37221549:25952256,513147,134348 +k1,6626:9017453,37221549:192535 +k1,6626:9892874,37221549:192536 +k1,6626:12783526,37221549:192535 +k1,6626:14935587,37221549:192535 +k1,6626:17196439,37221549:192536 +k1,6626:18380534,37221549:192535 +k1,6626:19178622,37221549:192535 +k1,6626:21069196,37221549:192536 +k1,6626:22130083,37221549:192535 +k1,6626:24004273,37221549:192536 +k1,6626:25907953,37221549:192535 +k1,6626:26751916,37221549:192535 +k1,6626:29374527,37221549:192536 +k1,6626:31635378,37221549:192535 +k1,6626:32583029,37221549:0 +) +(1,6627:6630773,38063037:25952256,505283,134348 +k1,6626:9143674,38063037:223073 +k1,6626:11222727,38063037:223073 +k1,6626:15372717,38063037:223073 +k1,6626:16278675,38063037:223073 +k1,6626:17187910,38063037:223073 +(1,6626:17187910,38063037:0,452978,115847 +r1,6626:20359870,38063037:3171960,568825,115847 +k1,6626:17187910,38063037:-3171960 +) +(1,6626:17187910,38063037:3171960,452978,115847 +k1,6626:17187910,38063037:3277 +h1,6626:20356593,38063037:0,411205,112570 +) +k1,6626:20582943,38063037:223073 +k1,6626:22369051,38063037:223074 +k1,6626:23197677,38063037:223073 +k1,6626:25118788,38063037:223073 +k1,6626:25957899,38063037:223073 +k1,6626:26536832,38063037:223073 +k1,6626:28174827,38063037:223073 +k1,6626:29266252,38063037:223073 +k1,6626:32583029,38063037:0 +) +(1,6627:6630773,38904525:25952256,513147,134348 +k1,6626:7196567,38904525:209934 +k1,6626:9384377,38904525:209933 +k1,6626:10277196,38904525:209934 +k1,6626:11480656,38904525:209934 +k1,6626:12349881,38904525:209933 +k1,6626:14519341,38904525:209934 +k1,6626:16971262,38904525:209934 +k1,6626:17864080,38904525:209933 +k1,6626:18679567,38904525:209934 +k1,6626:19757853,38904525:209934 +k1,6626:22991617,38904525:209933 +k1,6626:23814313,38904525:209934 +k1,6626:26567699,38904525:209934 +k1,6626:28737158,38904525:209933 +k1,6626:31015408,38904525:209934 +k1,6626:32583029,38904525:0 +) +(1,6627:6630773,39746013:25952256,505283,134348 +k1,6626:9529583,39746013:227563 +k1,6626:12731826,39746013:227564 +k1,6626:15155500,39746013:227563 +k1,6626:17237732,39746013:227563 +k1,6626:18274666,39746013:227564 +k1,6626:19891592,39746013:227563 +k1,6626:20802040,39746013:227563 +k1,6626:23715269,39746013:227564 +k1,6626:24430392,39746013:227535 +k1,6626:27435371,39746013:227563 +k1,6626:29030015,39746013:227563 +k1,6626:29789076,39746013:227564 +k1,6626:31714677,39746013:227563 +k1,6626:32583029,39746013:0 +) +(1,6627:6630773,40587501:25952256,513147,134348 +k1,6626:8984130,40587501:171663 +k1,6626:10545156,40587501:171663 +k1,6626:12284441,40587501:171664 +k1,6626:12811964,40587501:171663 +k1,6626:14209806,40587501:171663 +k1,6626:15364509,40587501:171663 +k1,6626:16727618,40587501:171664 +k1,6626:17767633,40587501:171663 +k1,6626:19487912,40587501:171663 +k1,6626:20311003,40587501:171663 +k1,6626:22220682,40587501:171664 +k1,6626:23411430,40587501:171663 +k1,6626:25542619,40587501:171663 +k1,6626:28831174,40587501:171663 +k1,6626:29654266,40587501:171664 +k1,6626:30845014,40587501:171663 +k1,6626:32583029,40587501:0 +) +(1,6627:6630773,41428989:25952256,513147,134348 +k1,6626:7477352,41428989:187287 +k1,6626:8683725,41428989:187288 +k1,6626:9854052,41428989:187287 +k1,6626:10850709,41428989:187287 +k1,6626:12556465,41428989:187287 +k1,6626:13426638,41428989:187288 +k1,6626:13969785,41428989:187287 +k1,6626:17131751,41428989:187287 +k1,6626:19184848,41428989:187287 +k1,6626:20784437,41428989:187288 +k1,6626:22539345,41428989:187287 +k1,6626:23745717,41428989:187287 +k1,6626:26107490,41428989:187288 +k1,6626:26907539,41428989:187287 +k1,6626:28113911,41428989:187287 +k1,6626:29373367,41428989:187287 +k1,6626:30219947,41428989:187288 +k1,6626:31426319,41428989:187287 +k1,6627:32583029,41428989:0 +k1,6627:32583029,41428989:0 +) +(1,6629:6630773,42270477:25952256,513147,126483 +h1,6628:6630773,42270477:983040,0,0 +g1,6628:10417443,42270477 +g1,6628:11983753,42270477 +g1,6628:12714479,42270477 +g1,6628:14611746,42270477 +(1,6628:14611746,42270477:0,452978,115847 +r1,6628:17783706,42270477:3171960,568825,115847 +k1,6628:14611746,42270477:-3171960 +) +(1,6628:14611746,42270477:3171960,452978,115847 +k1,6628:14611746,42270477:3277 +h1,6628:17780429,42270477:0,411205,112570 +) +g1,6628:17982935,42270477 +g1,6628:20192809,42270477 +g1,6628:21383598,42270477 +g1,6628:22601912,42270477 +g1,6628:24644013,42270477 +g1,6628:25502534,42270477 +g1,6628:26057623,42270477 +k1,6629:32583029,42270477:2287848 +g1,6629:32583029,42270477 +) +v1,6631:6630773,43297717:0,393216,0 +(1,6641:6630773,45510161:25952256,2605660,196608 +g1,6641:6630773,45510161 +g1,6641:6630773,45510161 +g1,6641:6434165,45510161 +(1,6641:6434165,45510161:0,2605660,196608 +r1,6641:32779637,45510161:26345472,2802268,196608 +k1,6641:6434165,45510161:-26345472 +) +(1,6641:6434165,45510161:26345472,2605660,196608 +[1,6641:6630773,45510161:25952256,2409052,0 +(1,6633:6630773,43511627:25952256,410518,76021 +(1,6632:6630773,43511627:0,0,0 +g1,6632:6630773,43511627 +g1,6632:6630773,43511627 +g1,6632:6303093,43511627 +(1,6632:6303093,43511627:0,0,0 +) +g1,6632:6630773,43511627 +) +k1,6633:6630773,43511627:0 +g1,6633:7895356,43511627 +g1,6633:8843793,43511627 +g1,6633:9792230,43511627 +g1,6633:11372960,43511627 +h1,6633:11689106,43511627:0,0,0 +k1,6633:32583030,43511627:20893924 +g1,6633:32583030,43511627 +) +(1,6634:6630773,44177805:25952256,404226,107478 +h1,6634:6630773,44177805:0,0,0 +g1,6634:6946919,44177805 +g1,6634:7263065,44177805 +g1,6634:7579211,44177805 +g1,6634:13902125,44177805 +g1,6634:14850563,44177805 +g1,6634:16115146,44177805 +g1,6634:16747438,44177805 +g1,6634:18328167,44177805 +h1,6634:19592751,44177805:0,0,0 +k1,6634:32583029,44177805:12990278 +g1,6634:32583029,44177805 +) +(1,6635:6630773,44843983:25952256,404226,76021 +h1,6635:6630773,44843983:0,0,0 +h1,6635:6946919,44843983:0,0,0 +k1,6635:32583029,44843983:25636110 +g1,6635:32583029,44843983 +) +(1,6636:6630773,45510161:25952256,404226,101187 +h1,6636:6630773,45510161:0,0,0 +g1,6636:10108376,45510161 +g1,6636:10740668,45510161 +h1,6636:12953688,45510161:0,0,0 +k1,6636:32583028,45510161:19629340 +g1,6636:32583028,45510161 +) +] +) +g1,6641:32583029,45510161 +g1,6641:6630773,45510161 +g1,6641:6630773,45510161 +g1,6641:32583029,45510161 +g1,6641:32583029,45510161 ) ] (1,6641:32583029,45706769:0,0,0 @@ -127194,74854 +127126,74847 @@ h1,6641:6630773,47279633:25952256,0,0 ] h1,6641:4262630,4025873:0,0,0 ] -!23694 +!24190 }124 -Input:937:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:938:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:939:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:940:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:941:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:942:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:943:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:944:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!692 +Input:932:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:933:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:934:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:935:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:936:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:937:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:938:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:939:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:940:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!831 {125 -[1,6702:4262630,47279633:28320399,43253760,0 -(1,6702:4262630,4025873:0,0,0 -[1,6702:-473657,4025873:25952256,0,0 -(1,6702:-473657,-710414:25952256,0,0 -h1,6702:-473657,-710414:0,0,0 -(1,6702:-473657,-710414:0,0,0 -(1,6702:-473657,-710414:0,0,0 -g1,6702:-473657,-710414 -(1,6702:-473657,-710414:65781,0,65781 -g1,6702:-407876,-710414 -[1,6702:-407876,-644633:0,0,0 +[1,6694:4262630,47279633:28320399,43253760,0 +(1,6694:4262630,4025873:0,0,0 +[1,6694:-473657,4025873:25952256,0,0 +(1,6694:-473657,-710414:25952256,0,0 +h1,6694:-473657,-710414:0,0,0 +(1,6694:-473657,-710414:0,0,0 +(1,6694:-473657,-710414:0,0,0 +g1,6694:-473657,-710414 +(1,6694:-473657,-710414:65781,0,65781 +g1,6694:-407876,-710414 +[1,6694:-407876,-644633:0,0,0 ] ) -k1,6702:-473657,-710414:-65781 +k1,6694:-473657,-710414:-65781 ) ) -k1,6702:25478599,-710414:25952256 -g1,6702:25478599,-710414 +k1,6694:25478599,-710414:25952256 +g1,6694:25478599,-710414 ) ] ) -[1,6702:6630773,47279633:25952256,43253760,0 -[1,6702:6630773,4812305:25952256,786432,0 -(1,6702:6630773,4812305:25952256,505283,134348 -(1,6702:6630773,4812305:25952256,505283,134348 -g1,6702:3078558,4812305 -[1,6702:3078558,4812305:0,0,0 -(1,6702:3078558,2439708:0,1703936,0 -k1,6702:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6702:2537886,2439708:1179648,16384,0 +[1,6694:6630773,47279633:25952256,43253760,0 +[1,6694:6630773,4812305:25952256,786432,0 +(1,6694:6630773,4812305:25952256,505283,134348 +(1,6694:6630773,4812305:25952256,505283,134348 +g1,6694:3078558,4812305 +[1,6694:3078558,4812305:0,0,0 +(1,6694:3078558,2439708:0,1703936,0 +k1,6694:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6694:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6702:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6694:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6702:3078558,4812305:0,0,0 -(1,6702:3078558,2439708:0,1703936,0 -g1,6702:29030814,2439708 -g1,6702:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6702:36151628,1915420:16384,1179648,0 +[1,6694:3078558,4812305:0,0,0 +(1,6694:3078558,2439708:0,1703936,0 +g1,6694:29030814,2439708 +g1,6694:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6694:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6702:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6694:37855564,2439708:1179648,16384,0 ) ) -k1,6702:3078556,2439708:-34777008 +k1,6694:3078556,2439708:-34777008 ) ] -[1,6702:3078558,4812305:0,0,0 -(1,6702:3078558,49800853:0,16384,2228224 -k1,6702:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6702:2537886,49800853:1179648,16384,0 +[1,6694:3078558,4812305:0,0,0 +(1,6694:3078558,49800853:0,16384,2228224 +k1,6694:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6694:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6702:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6694:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6702:3078558,4812305:0,0,0 -(1,6702:3078558,49800853:0,16384,2228224 -g1,6702:29030814,49800853 -g1,6702:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6702:36151628,51504789:16384,1179648,0 +[1,6694:3078558,4812305:0,0,0 +(1,6694:3078558,49800853:0,16384,2228224 +g1,6694:29030814,49800853 +g1,6694:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6694:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6702:37855564,49800853:1179648,16384,0 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6694:37855564,49800853:1179648,16384,0 ) ) -k1,6702:3078556,49800853:-34777008 +k1,6694:3078556,49800853:-34777008 ) ] -g1,6702:6630773,4812305 -k1,6702:18752969,4812305:10926819 -g1,6702:20139710,4812305 -g1,6702:20788516,4812305 -g1,6702:24102671,4812305 -g1,6702:28605649,4812305 -g1,6702:30015328,4812305 +g1,6694:6630773,4812305 +k1,6694:18771974,4812305:10945824 +g1,6694:20158715,4812305 +g1,6694:20807521,4812305 +g1,6694:24121676,4812305 +g1,6694:28605649,4812305 +g1,6694:30015328,4812305 ) ) ] -[1,6702:6630773,45706769:25952256,40108032,0 -(1,6702:6630773,45706769:25952256,40108032,0 -(1,6702:6630773,45706769:0,0,0 -g1,6702:6630773,45706769 +[1,6694:6630773,45706769:25952256,40108032,0 +(1,6694:6630773,45706769:25952256,40108032,0 +(1,6694:6630773,45706769:0,0,0 +g1,6694:6630773,45706769 ) -[1,6702:6630773,45706769:25952256,40108032,0 +[1,6694:6630773,45706769:25952256,40108032,0 v1,6641:6630773,6254097:0,393216,0 -(1,6654:6630773,9322702:25952256,3461821,196608 -g1,6654:6630773,9322702 -g1,6654:6630773,9322702 -g1,6654:6434165,9322702 -(1,6654:6434165,9322702:0,3461821,196608 -r1,6654:32779637,9322702:26345472,3658429,196608 -k1,6654:6434165,9322702:-26345472 -) -(1,6654:6434165,9322702:26345472,3461821,196608 -[1,6654:6630773,9322702:25952256,3265213,0 -(1,6643:6630773,6461715:25952256,404226,107478 -(1,6642:6630773,6461715:0,0,0 -g1,6642:6630773,6461715 -g1,6642:6630773,6461715 -g1,6642:6303093,6461715 -(1,6642:6303093,6461715:0,0,0 -) -g1,6642:6630773,6461715 -) -k1,6643:6630773,6461715:0 -h1,6643:9159939,6461715:0,0,0 -k1,6643:32583029,6461715:23423090 -g1,6643:32583029,6461715 -) -(1,6647:6630773,7193429:25952256,404226,76021 -(1,6645:6630773,7193429:0,0,0 -g1,6645:6630773,7193429 -g1,6645:6630773,7193429 -g1,6645:6303093,7193429 -(1,6645:6303093,7193429:0,0,0 -) -g1,6645:6630773,7193429 -) -g1,6647:7579210,7193429 -g1,6647:8843793,7193429 -h1,6647:10108376,7193429:0,0,0 -k1,6647:32583028,7193429:22474652 -g1,6647:32583028,7193429 -) -(1,6649:6630773,8514967:25952256,404226,107478 -(1,6648:6630773,8514967:0,0,0 -g1,6648:6630773,8514967 -g1,6648:6630773,8514967 -g1,6648:6303093,8514967 -(1,6648:6303093,8514967:0,0,0 -) -g1,6648:6630773,8514967 -) -k1,6649:6630773,8514967:0 -h1,6649:9159939,8514967:0,0,0 -k1,6649:32583029,8514967:23423090 -g1,6649:32583029,8514967 -) -(1,6653:6630773,9246681:25952256,404226,76021 -(1,6651:6630773,9246681:0,0,0 -g1,6651:6630773,9246681 -g1,6651:6630773,9246681 -g1,6651:6303093,9246681 -(1,6651:6303093,9246681:0,0,0 -) -g1,6651:6630773,9246681 -) -g1,6653:7579210,9246681 -g1,6653:8843793,9246681 -h1,6653:10108376,9246681:0,0,0 -k1,6653:32583028,9246681:22474652 -g1,6653:32583028,9246681 -) -] -) -g1,6654:32583029,9322702 -g1,6654:6630773,9322702 -g1,6654:6630773,9322702 -g1,6654:32583029,9322702 -g1,6654:32583029,9322702 -) -h1,6654:6630773,9519310:0,0,0 -(1,6658:6630773,10879951:25952256,513147,134348 -h1,6657:6630773,10879951:983040,0,0 -k1,6657:8276634,10879951:185064 -k1,6657:9330049,10879951:185063 -k1,6657:10990328,10879951:185064 -k1,6657:13959360,10879951:185063 -k1,6657:14500284,10879951:185064 -k1,6657:17660027,10879951:185064 -k1,6657:19822967,10879951:185063 -k1,6657:23370028,10879951:185064 -k1,6657:25514618,10879951:185064 -k1,6657:27767997,10879951:185063 -k1,6657:29144506,10879951:185064 -k1,6657:30197921,10879951:185063 -k1,6657:31931601,10879951:185064 -k1,6657:32583029,10879951:0 -) -(1,6658:6630773,11721439:25952256,513147,134348 -k1,6657:8788268,11721439:228115 -k1,6657:9372242,11721439:228114 -k1,6657:10593883,11721439:228115 -k1,6657:14183995,11721439:228115 -k1,6657:16108836,11721439:228114 -k1,6657:18626779,11721439:228115 -k1,6657:19723246,11721439:228115 -k1,6657:21055643,11721439:228115 -k1,6657:22376242,11721439:228114 -k1,6657:25299853,11721439:228115 -(1,6657:25299853,11721439:0,452978,122846 -r1,6657:27416678,11721439:2116825,575824,122846 -k1,6657:25299853,11721439:-2116825 -) -(1,6657:25299853,11721439:2116825,452978,122846 -k1,6657:25299853,11721439:3277 -h1,6657:27413401,11721439:0,411205,112570 -) -k1,6657:27818463,11721439:228115 -k1,6657:28674412,11721439:228114 -k1,6657:29921612,11721439:228115 -k1,6657:32583029,11721439:0 -) -(1,6658:6630773,12562927:25952256,513147,134348 -k1,6657:8681662,12562927:182458 -k1,6657:9732473,12562927:182459 -k1,6657:11007416,12562927:182458 -k1,6657:13885371,12562927:182459 -(1,6657:13885371,12562927:0,452978,115847 -r1,6657:15298772,12562927:1413401,568825,115847 -k1,6657:13885371,12562927:-1413401 -) -(1,6657:13885371,12562927:1413401,452978,115847 -k1,6657:13885371,12562927:3277 -h1,6657:15295495,12562927:0,411205,112570 -) -k1,6657:15481230,12562927:182458 -k1,6657:16315116,12562927:182458 -k1,6657:18521327,12562927:182459 -k1,6657:19059645,12562927:182458 -k1,6657:22216782,12562927:182458 -k1,6657:24377118,12562927:182459 -k1,6657:25218868,12562927:182458 -k1,6657:27360853,12562927:182459 -k1,6657:29611627,12562927:182458 -k1,6657:32583029,12562927:0 -) -(1,6658:6630773,13404415:25952256,513147,134348 -g1,6657:7185862,13404415 -g1,6657:9782398,13404415 -g1,6657:12322573,13404415 -g1,6657:13713247,13404415 -g1,6657:15346404,13404415 -g1,6657:17621814,13404415 -g1,6657:18587159,13404415 -g1,6657:20483115,13404415 -g1,6657:22972172,13404415 -g1,6657:24438867,13404415 -g1,6657:24993956,13404415 -k1,6658:32583029,13404415:6421877 -g1,6658:32583029,13404415 -) -v1,6660:6630773,14589745:0,393216,0 -(1,6674:6630773,20242654:25952256,6046125,196608 -g1,6674:6630773,20242654 -g1,6674:6630773,20242654 -g1,6674:6434165,20242654 -(1,6674:6434165,20242654:0,6046125,196608 -r1,6674:32779637,20242654:26345472,6242733,196608 -k1,6674:6434165,20242654:-26345472 -) -(1,6674:6434165,20242654:26345472,6046125,196608 -[1,6674:6630773,20242654:25952256,5849517,0 -(1,6662:6630773,14797363:25952256,404226,107478 -(1,6661:6630773,14797363:0,0,0 -g1,6661:6630773,14797363 -g1,6661:6630773,14797363 -g1,6661:6303093,14797363 -(1,6661:6303093,14797363:0,0,0 -) -g1,6661:6630773,14797363 -) -g1,6662:9792230,14797363 -g1,6662:10740668,14797363 -g1,6662:14218271,14797363 -g1,6662:14850563,14797363 -h1,6662:17063583,14797363:0,0,0 -k1,6662:32583029,14797363:15519446 -g1,6662:32583029,14797363 -) -(1,6663:6630773,15463541:25952256,404226,107478 -h1,6663:6630773,15463541:0,0,0 -g1,6663:9159939,15463541 -g1,6663:10108377,15463541 -k1,6663:10108377,15463541:0 -h1,6663:14850562,15463541:0,0,0 -k1,6663:32583030,15463541:17732468 -g1,6663:32583030,15463541 -) -(1,6664:6630773,16129719:25952256,404226,107478 -h1,6664:6630773,16129719:0,0,0 -k1,6664:6630773,16129719:0 -h1,6664:10424521,16129719:0,0,0 -k1,6664:32583029,16129719:22158508 -g1,6664:32583029,16129719 -) -(1,6673:6630773,16861433:25952256,410518,9436 -(1,6666:6630773,16861433:0,0,0 -g1,6666:6630773,16861433 -g1,6666:6630773,16861433 -g1,6666:6303093,16861433 -(1,6666:6303093,16861433:0,0,0 -) -g1,6666:6630773,16861433 -) -g1,6673:7579210,16861433 -g1,6673:9159939,16861433 -g1,6673:10108376,16861433 -h1,6673:10424522,16861433:0,0,0 -k1,6673:32583030,16861433:22158508 -g1,6673:32583030,16861433 -) -(1,6673:6630773,17527611:25952256,410518,50331 -h1,6673:6630773,17527611:0,0,0 -g1,6673:7579210,17527611 -g1,6673:7895356,17527611 -g1,6673:8527648,17527611 -g1,6673:10424522,17527611 -g1,6673:11689105,17527611 -h1,6673:12005251,17527611:0,0,0 -k1,6673:32583029,17527611:20577778 -g1,6673:32583029,17527611 -) -(1,6673:6630773,18193789:25952256,410518,50331 -h1,6673:6630773,18193789:0,0,0 -g1,6673:7579210,18193789 -g1,6673:7895356,18193789 -g1,6673:8527648,18193789 -g1,6673:10424522,18193789 -g1,6673:11689105,18193789 -h1,6673:12005251,18193789:0,0,0 -k1,6673:32583029,18193789:20577778 -g1,6673:32583029,18193789 -) -(1,6673:6630773,18859967:25952256,410518,50331 -h1,6673:6630773,18859967:0,0,0 -g1,6673:7579210,18859967 -g1,6673:7895356,18859967 -g1,6673:8527648,18859967 -g1,6673:10424522,18859967 -g1,6673:11689105,18859967 -h1,6673:12005251,18859967:0,0,0 -k1,6673:32583029,18859967:20577778 -g1,6673:32583029,18859967 -) -(1,6673:6630773,19526145:25952256,410518,50331 -h1,6673:6630773,19526145:0,0,0 -g1,6673:7579210,19526145 -g1,6673:7895356,19526145 -g1,6673:8527648,19526145 -g1,6673:10424522,19526145 -g1,6673:11689105,19526145 -h1,6673:12321396,19526145:0,0,0 -k1,6673:32583028,19526145:20261632 -g1,6673:32583028,19526145 -) -(1,6673:6630773,20192323:25952256,410518,50331 -h1,6673:6630773,20192323:0,0,0 -g1,6673:7579210,20192323 -g1,6673:7895356,20192323 -g1,6673:8527648,20192323 -g1,6673:10424522,20192323 -g1,6673:11689105,20192323 -h1,6673:12321396,20192323:0,0,0 -k1,6673:32583028,20192323:20261632 -g1,6673:32583028,20192323 -) -] -) -g1,6674:32583029,20242654 -g1,6674:6630773,20242654 -g1,6674:6630773,20242654 -g1,6674:32583029,20242654 -g1,6674:32583029,20242654 -) -h1,6674:6630773,20439262:0,0,0 -v1,6678:6630773,22319055:0,393216,0 -(1,6679:6630773,26476806:25952256,4550967,616038 -g1,6679:6630773,26476806 -(1,6679:6630773,26476806:25952256,4550967,616038 -(1,6679:6630773,27092844:25952256,5167005,0 -[1,6679:6630773,27092844:25952256,5167005,0 -(1,6679:6630773,27066630:25952256,5114577,0 -r1,6679:6656987,27066630:26214,5114577,0 -[1,6679:6656987,27066630:25899828,5114577,0 -(1,6679:6656987,26476806:25899828,3934929,0 -[1,6679:7246811,26476806:24720180,3934929,0 -(1,6679:7246811,23825859:24720180,1283982,196608 -(1,6678:7246811,23825859:0,1283982,196608 -r1,6679:9812056,23825859:2565245,1480590,196608 -k1,6678:7246811,23825859:-2565245 -) -(1,6678:7246811,23825859:2565245,1283982,196608 -) -k1,6678:10104467,23825859:292411 -k1,6678:12254824,23825859:292411 -k1,6678:13206527,23825859:292411 -k1,6678:16128898,23825859:292411 -k1,6678:17844096,23825859:292411 -k1,6678:18795799,23825859:292411 -k1,6678:22114007,23825859:292411 -(1,6678:22114007,23825859:0,452978,122846 -r1,6679:24934256,23825859:2820249,575824,122846 -k1,6678:22114007,23825859:-2820249 -) -(1,6678:22114007,23825859:2820249,452978,122846 -k1,6678:22114007,23825859:3277 -h1,6678:24930979,23825859:0,411205,112570 -) -k1,6678:25400337,23825859:292411 -(1,6678:25400337,23825859:0,452978,122846 -r1,6679:27165450,23825859:1765113,575824,122846 -k1,6678:25400337,23825859:-1765113 -) -(1,6678:25400337,23825859:1765113,452978,122846 -k1,6678:25400337,23825859:3277 -h1,6678:27162173,23825859:0,411205,112570 -) -k1,6678:27457861,23825859:292411 -k1,6678:28941717,23825859:292411 -(1,6678:28941717,23825859:0,452978,122846 -r1,6679:31058542,23825859:2116825,575824,122846 -k1,6678:28941717,23825859:-2116825 -) -(1,6678:28941717,23825859:2116825,452978,122846 -k1,6678:28941717,23825859:3277 -h1,6678:31055265,23825859:0,411205,112570 -) -k1,6678:31350953,23825859:292411 -k1,6678:31966991,23825859:0 -) -(1,6679:7246811,24667347:24720180,513147,126483 -k1,6678:9587616,24667347:179428 -k1,6678:10937518,24667347:179429 -k1,6678:12209431,24667347:179428 -k1,6678:13071744,24667347:179428 -k1,6678:15019989,24667347:179428 -k1,6678:16291903,24667347:179429 -k1,6678:17122759,24667347:179428 -k1,6678:19732262,24667347:179428 -k1,6678:21370522,24667347:179429 -k1,6678:22880331,24667347:179428 -k1,6678:24449122,24667347:179428 -k1,6678:25518529,24667347:179428 -k1,6678:27265579,24667347:179429 -k1,6678:29146977,24667347:179428 -k1,6678:31966991,24667347:0 -) -(1,6679:7246811,25508835:24720180,505283,126483 -k1,6678:9117561,25508835:170746 -k1,6678:9644168,25508835:170747 -k1,6678:11645990,25508835:170746 -k1,6678:12468165,25508835:170747 -k1,6678:16072342,25508835:170746 -k1,6678:17620000,25508835:170747 -k1,6678:18982191,25508835:170746 -k1,6678:22331434,25508835:170747 -k1,6678:23693625,25508835:170746 -k1,6678:25055817,25508835:170747 -k1,6678:27098271,25508835:170746 -k1,6678:28472259,25508835:170747 -k1,6678:30474081,25508835:170746 -k1,6678:31966991,25508835:0 -) -(1,6679:7246811,26350323:24720180,505283,126483 -g1,6678:8465125,26350323 -g1,6678:10507226,26350323 -g1,6678:13747326,26350323 -g1,6678:14708083,26350323 -g1,6678:15926397,26350323 -g1,6678:17956702,26350323 -g1,6678:20814727,26350323 -g1,6678:22472787,26350323 -k1,6679:31966991,26350323:5295968 -g1,6679:31966991,26350323 -) -] -) -] -r1,6679:32583029,27066630:26214,5114577,0 -) -] -) -) -g1,6679:32583029,26476806 -) -h1,6679:6630773,27092844:0,0,0 -(1,6681:6630773,29900412:25952256,32768,229376 -(1,6681:6630773,29900412:0,32768,229376 -(1,6681:6630773,29900412:5505024,32768,229376 -r1,6681:12135797,29900412:5505024,262144,229376 -) -k1,6681:6630773,29900412:-5505024 -) -(1,6681:6630773,29900412:25952256,32768,0 -r1,6681:32583029,29900412:25952256,32768,0 -) -) -(1,6681:6630773,31504740:25952256,615776,151780 -(1,6681:6630773,31504740:1974731,582746,14155 -g1,6681:6630773,31504740 -g1,6681:8605504,31504740 -) -g1,6681:10368685,31504740 -g1,6681:13916280,31504740 -g1,6681:16205584,31504740 -g1,6681:17263335,31504740 -k1,6681:32583029,31504740:13168802 -g1,6681:32583029,31504740 -) -(1,6684:6630773,33277157:25952256,1161885,196608 -(1,6683:6630773,33277157:0,1161885,196608 -r1,6683:8178409,33277157:1547636,1358493,196608 -k1,6683:6630773,33277157:-1547636 -) -(1,6683:6630773,33277157:1547636,1161885,196608 -) -k1,6683:8333150,33277157:154741 -k1,6683:9316921,33277157:154741 -k1,6683:11082538,33277157:154742 -k1,6683:12440520,33277157:154741 -k1,6683:15186555,33277157:154741 -k1,6683:15554244,33277157:154697 -k1,6683:16841447,33277157:154741 -k1,6683:19645809,33277157:154741 -k1,6683:21492690,33277157:154741 -k1,6683:24653567,33277157:154741 -k1,6683:27183334,33277157:154742 -k1,6683:27997367,33277157:154741 -k1,6683:29171193,33277157:154741 -k1,6683:29740733,33277157:154697 -k1,6683:32583029,33277157:0 -) -(1,6684:6630773,34118645:25952256,513147,134348 -k1,6683:8161148,34118645:245869 -k1,6683:9398577,34118645:245869 -k1,6683:11621667,34118645:245869 -k1,6683:13565574,34118645:245869 -k1,6683:16069158,34118645:245869 -k1,6683:19001349,34118645:245870 -k1,6683:22273015,34118645:245869 -k1,6683:23689357,34118645:245869 -k1,6683:24926786,34118645:245869 -k1,6683:26931641,34118645:245869 -k1,6683:29736036,34118645:245869 -k1,6683:31000990,34118645:245869 -k1,6683:32583029,34118645:0 -) -(1,6684:6630773,34960133:25952256,513147,134348 -k1,6683:10824609,34960133:175824 -k1,6683:12170905,34960133:175823 -k1,6683:13479191,34960133:175824 -k1,6683:15203630,34960133:175823 -k1,6683:16030882,34960133:175824 -k1,6683:18217350,34960133:175823 -k1,6683:19044602,34960133:175824 -k1,6683:20423667,34960133:175824 -k1,6683:22878177,34960133:175823 -k1,6683:24567227,34960133:175824 -k1,6683:27145600,34960133:175823 -k1,6683:30069349,34960133:175824 -h1,6683:30467808,34960133:0,0,0 -k1,6683:30643631,34960133:175823 -k1,6683:32010900,34960133:175824 -h1,6683:32409359,34960133:0,0,0 -k1,6683:32583029,34960133:0 -) -(1,6684:6630773,35801621:25952256,513147,134348 -k1,6683:7454966,35801621:196358 -k1,6683:8670410,35801621:196359 -k1,6683:10520241,35801621:196358 -k1,6683:11954574,35801621:196358 -k1,6683:12837094,35801621:196358 -k1,6683:13901805,35801621:196359 -k1,6683:15202445,35801621:196358 -k1,6683:17405515,35801621:196358 -k1,6683:19670189,35801621:196358 -k1,6683:20517976,35801621:196359 -(1,6683:20517976,35801621:0,452978,115847 -r1,6683:22986513,35801621:2468537,568825,115847 -k1,6683:20517976,35801621:-2468537 -) -(1,6683:20517976,35801621:2468537,452978,115847 -k1,6683:20517976,35801621:3277 -h1,6683:22983236,35801621:0,411205,112570 -) -k1,6683:23356541,35801621:196358 -(1,6683:23356541,35801621:0,452978,115847 -r1,6683:26528501,35801621:3171960,568825,115847 -k1,6683:23356541,35801621:-3171960 -) -(1,6683:23356541,35801621:3171960,452978,115847 -k1,6683:23356541,35801621:3277 -h1,6683:26525224,35801621:0,411205,112570 -) -k1,6683:26724859,35801621:196358 -k1,6683:28112662,35801621:196358 -k1,6683:30010991,35801621:196359 -k1,6683:31923737,35801621:196358 -k1,6683:32583029,35801621:0 -) -(1,6684:6630773,36643109:25952256,513147,134348 -k1,6683:9250549,36643109:156278 -k1,6683:10275179,36643109:156278 -k1,6683:11535739,36643109:156278 -k1,6683:13698729,36643109:156278 -k1,6683:15923323,36643109:156278 -k1,6683:16731029,36643109:156278 -k1,6683:19913105,36643109:156279 -k1,6683:21260828,36643109:156278 -k1,6683:25361063,36643109:156278 -k1,6683:26470890,36643109:156278 -k1,6683:27731450,36643109:156278 -k1,6683:29173544,36643109:156278 -k1,6683:31259202,36643109:156278 -k1,6683:32583029,36643109:0 -) -(1,6684:6630773,37484597:25952256,513147,134348 -k1,6683:7516584,37484597:226519 -k1,6683:10768900,37484597:226519 -k1,6683:13205292,37484597:226518 -k1,6683:17375768,37484597:226519 -k1,6683:18798974,37484597:226519 -k1,6683:19440308,37484597:226491 -k1,6683:22509123,37484597:226519 -k1,6683:23836647,37484597:226519 -k1,6683:24419025,37484597:226518 -k1,6683:25999518,37484597:226519 -k1,6683:29506769,37484597:226519 -k1,6683:32583029,37484597:0 -) -(1,6684:6630773,38326085:25952256,513147,134348 -k1,6683:8219541,38326085:194817 -k1,6683:9180473,38326085:194816 -k1,6683:10699117,38326085:194817 -k1,6683:12085379,38326085:194817 -k1,6683:14588373,38326085:194816 -k1,6683:17649079,38326085:194817 -k1,6683:18459934,38326085:194817 -k1,6683:19673835,38326085:194816 -k1,6683:21522125,38326085:194817 -k1,6683:23128588,38326085:194817 -k1,6683:24520091,38326085:194816 -k1,6683:28320043,38326085:194817 -k1,6683:29174152,38326085:194817 -k1,6683:30572209,38326085:194816 -k1,6683:31298523,38326085:194817 -k1,6683:32583029,38326085:0 -) -(1,6684:6630773,39167573:25952256,513147,134348 -k1,6683:7640901,39167573:141776 -k1,6683:8886959,39167573:141776 -k1,6683:11035447,39167573:141776 -k1,6683:13939567,39167573:141777 -k1,6683:17107140,39167573:141776 -k1,6683:17931801,39167573:141776 -k1,6683:21843863,39167573:141776 -k1,6683:22637067,39167573:141776 -k1,6683:23134703,39167573:141776 -k1,6683:24971241,39167573:141777 -k1,6683:27024702,39167573:141776 -k1,6683:28357923,39167573:141776 -k1,6683:32583029,39167573:0 -) -(1,6684:6630773,40009061:25952256,513147,126483 -g1,6683:7288099,40009061 -g1,6683:8018825,40009061 -g1,6683:10848014,40009061 -g1,6683:11698671,40009061 -g1,6683:13512707,40009061 -g1,6683:15457160,40009061 -g1,6683:17043786,40009061 -g1,6683:18566842,40009061 -g1,6683:19425363,40009061 -g1,6683:22650389,40009061 -g1,6683:23532503,40009061 -k1,6684:32583029,40009061:5106569 -g1,6684:32583029,40009061 -) -(1,6686:6630773,40850549:25952256,513147,126483 -h1,6685:6630773,40850549:983040,0,0 -k1,6685:8561312,40850549:319664 -k1,6685:10084218,40850549:319665 -k1,6685:11710015,40850549:319664 -k1,6685:14691097,40850549:319665 -k1,6685:15879113,40850549:319664 -k1,6685:17291263,40850549:319665 -k1,6685:17966787,40850549:319664 -k1,6685:21323390,40850549:319665 -k1,6685:23575055,40850549:319664 -k1,6685:24510758,40850549:319665 -k1,6685:27427614,40850549:319664 -k1,6685:29979435,40850549:319665 -k1,6685:31490544,40850549:319664 -k1,6685:32583029,40850549:0 -) -(1,6686:6630773,41692037:25952256,513147,134348 -k1,6685:9544120,41692037:217851 -(1,6685:9544120,41692037:0,452978,115847 -r1,6685:12716080,41692037:3171960,568825,115847 -k1,6685:9544120,41692037:-3171960 -) -(1,6685:9544120,41692037:3171960,452978,115847 -k1,6685:9544120,41692037:3277 -h1,6685:12712803,41692037:0,411205,112570 -) -k1,6685:12933931,41692037:217851 -k1,6685:13837944,41692037:217851 -k1,6685:14513892,41692037:217851 -k1,6685:17110045,41692037:217851 -k1,6685:19183876,41692037:217851 -k1,6685:22376406,41692037:217851 -k1,6685:24790368,41692037:217851 -k1,6685:25691104,41692037:217851 -k1,6685:28604451,41692037:217851 -k1,6685:30890618,41692037:217851 -k1,6685:31794631,41692037:217851 -k1,6685:32583029,41692037:0 -) -(1,6686:6630773,42533525:25952256,513147,134348 -k1,6685:8129527,42533525:192621 -k1,6685:11568146,42533525:192621 -k1,6685:12714316,42533525:192621 -k1,6685:14930689,42533525:192621 -k1,6685:15479170,42533525:192621 -k1,6685:18291920,42533525:192621 -k1,6685:20462419,42533525:192622 -k1,6685:22048991,42533525:192621 -k1,6685:24400368,42533525:192621 -k1,6685:27546697,42533525:192621 -k1,6685:29133269,42533525:192621 -k1,6685:31394206,42533525:192621 -k1,6686:32583029,42533525:0 -) -(1,6686:6630773,43375013:25952256,513147,134348 -g1,6685:8825573,43375013 -g1,6685:10043887,43375013 -g1,6685:12938612,43375013 -k1,6686:32583029,43375013:17402430 -g1,6686:32583029,43375013 -) -v1,6688:6630773,44560344:0,393216,0 -(1,6702:6630773,45510161:25952256,1343033,196608 -g1,6702:6630773,45510161 -g1,6702:6630773,45510161 -g1,6702:6434165,45510161 -(1,6702:6434165,45510161:0,1343033,196608 -r1,6702:32779637,45510161:26345472,1539641,196608 -k1,6702:6434165,45510161:-26345472 -) -(1,6702:6434165,45510161:26345472,1343033,196608 -[1,6702:6630773,45510161:25952256,1146425,0 -(1,6690:6630773,44767962:25952256,404226,76021 -(1,6689:6630773,44767962:0,0,0 -g1,6689:6630773,44767962 -g1,6689:6630773,44767962 -g1,6689:6303093,44767962 -(1,6689:6303093,44767962:0,0,0 -) -g1,6689:6630773,44767962 -) -g1,6690:7263065,44767962 -g1,6690:8211503,44767962 -k1,6690:8211503,44767962:0 -h1,6690:11056814,44767962:0,0,0 -k1,6690:32583030,44767962:21526216 -g1,6690:32583030,44767962 -) -(1,6691:6630773,45434140:25952256,404226,76021 -h1,6691:6630773,45434140:0,0,0 -g1,6691:9159939,45434140 -g1,6691:10108377,45434140 -k1,6691:10108377,45434140:0 -h1,6691:12953688,45434140:0,0,0 -k1,6691:32583028,45434140:19629340 -g1,6691:32583028,45434140 -) -] -) -g1,6702:32583029,45510161 -g1,6702:6630773,45510161 -g1,6702:6630773,45510161 -g1,6702:32583029,45510161 -g1,6702:32583029,45510161 -) -] -(1,6702:32583029,45706769:0,0,0 -g1,6702:32583029,45706769 -) -) -] -(1,6702:6630773,47279633:25952256,0,0 -h1,6702:6630773,47279633:25952256,0,0 -) -] -h1,6702:4262630,4025873:0,0,0 -] -!23363 +(1,6641:6630773,6537736:25952256,676855,196608 +g1,6641:6630773,6537736 +g1,6641:6630773,6537736 +g1,6641:6434165,6537736 +(1,6641:6434165,6537736:0,676855,196608 +r1,6641:32779637,6537736:26345472,873463,196608 +k1,6641:6434165,6537736:-26345472 +) +(1,6641:6434165,6537736:26345472,676855,196608 +[1,6641:6630773,6537736:25952256,480247,0 +(1,6640:6630773,6461715:25952256,404226,76021 +(1,6638:6630773,6461715:0,0,0 +g1,6638:6630773,6461715 +g1,6638:6630773,6461715 +g1,6638:6303093,6461715 +(1,6638:6303093,6461715:0,0,0 +) +g1,6638:6630773,6461715 +) +g1,6640:7579210,6461715 +g1,6640:8843793,6461715 +g1,6640:11056813,6461715 +g1,6640:13269833,6461715 +g1,6640:15482853,6461715 +g1,6640:17695873,6461715 +h1,6640:19592747,6461715:0,0,0 +k1,6640:32583029,6461715:12990282 +g1,6640:32583029,6461715 +) +] +) +g1,6641:32583029,6537736 +g1,6641:6630773,6537736 +g1,6641:6630773,6537736 +g1,6641:32583029,6537736 +g1,6641:32583029,6537736 +) +h1,6641:6630773,6734344:0,0,0 +(1,6645:6630773,7979241:25952256,513147,134348 +h1,6644:6630773,7979241:983040,0,0 +k1,6644:9091095,7979241:280595 +k1,6644:14337353,7979241:280595 +k1,6644:17692242,7979241:280595 +k1,6644:18632129,7979241:280595 +k1,6644:21892646,7979241:280595 +k1,6644:22529101,7979241:280595 +k1,6644:24547711,7979241:280595 +k1,6644:25479734,7979241:280595 +k1,6644:26531032,7979241:280595 +k1,6644:28771153,7979241:280595 +k1,6644:29583245,7979241:280595 +k1,6644:30515268,7979241:280595 +k1,6644:31812326,7979241:280595 +k1,6644:32583029,7979241:0 +) +(1,6645:6630773,8820729:25952256,505283,134348 +k1,6644:8820658,8820729:230359 +k1,6644:10749055,8820729:230359 +k1,6644:11847767,8820729:230360 +k1,6644:13553341,8820729:230359 +k1,6644:16567669,8820729:230359 +k1,6644:17586426,8820729:230359 +k1,6644:19554800,8820729:230359 +k1,6644:20471321,8820729:230359 +k1,6644:21057541,8820729:230360 +k1,6644:24262579,8820729:230359 +k1,6644:26532418,8820729:230359 +k1,6644:27959464,8820729:230359 +k1,6644:32583029,8820729:0 +) +(1,6645:6630773,9662217:25952256,513147,122846 +g1,6644:9525498,9662217 +g1,6644:10256224,9662217 +(1,6644:10256224,9662217:0,452978,122846 +r1,6644:12021337,9662217:1765113,575824,122846 +k1,6644:10256224,9662217:-1765113 +) +(1,6644:10256224,9662217:1765113,452978,122846 +k1,6644:10256224,9662217:3277 +h1,6644:12018060,9662217:0,411205,112570 +) +k1,6645:32583029,9662217:20388022 +g1,6645:32583029,9662217 +) +v1,6647:6630773,10731804:0,393216,0 +(1,6660:6630773,13800409:25952256,3461821,196608 +g1,6660:6630773,13800409 +g1,6660:6630773,13800409 +g1,6660:6434165,13800409 +(1,6660:6434165,13800409:0,3461821,196608 +r1,6660:32779637,13800409:26345472,3658429,196608 +k1,6660:6434165,13800409:-26345472 +) +(1,6660:6434165,13800409:26345472,3461821,196608 +[1,6660:6630773,13800409:25952256,3265213,0 +(1,6649:6630773,10939422:25952256,404226,107478 +(1,6648:6630773,10939422:0,0,0 +g1,6648:6630773,10939422 +g1,6648:6630773,10939422 +g1,6648:6303093,10939422 +(1,6648:6303093,10939422:0,0,0 +) +g1,6648:6630773,10939422 +) +k1,6649:6630773,10939422:0 +h1,6649:9159939,10939422:0,0,0 +k1,6649:32583029,10939422:23423090 +g1,6649:32583029,10939422 +) +(1,6653:6630773,11671136:25952256,404226,76021 +(1,6651:6630773,11671136:0,0,0 +g1,6651:6630773,11671136 +g1,6651:6630773,11671136 +g1,6651:6303093,11671136 +(1,6651:6303093,11671136:0,0,0 +) +g1,6651:6630773,11671136 +) +g1,6653:7579210,11671136 +g1,6653:8843793,11671136 +h1,6653:10108376,11671136:0,0,0 +k1,6653:32583028,11671136:22474652 +g1,6653:32583028,11671136 +) +(1,6655:6630773,12992674:25952256,404226,107478 +(1,6654:6630773,12992674:0,0,0 +g1,6654:6630773,12992674 +g1,6654:6630773,12992674 +g1,6654:6303093,12992674 +(1,6654:6303093,12992674:0,0,0 +) +g1,6654:6630773,12992674 +) +k1,6655:6630773,12992674:0 +h1,6655:9159939,12992674:0,0,0 +k1,6655:32583029,12992674:23423090 +g1,6655:32583029,12992674 +) +(1,6659:6630773,13724388:25952256,404226,76021 +(1,6657:6630773,13724388:0,0,0 +g1,6657:6630773,13724388 +g1,6657:6630773,13724388 +g1,6657:6303093,13724388 +(1,6657:6303093,13724388:0,0,0 +) +g1,6657:6630773,13724388 +) +g1,6659:7579210,13724388 +g1,6659:8843793,13724388 +h1,6659:10108376,13724388:0,0,0 +k1,6659:32583028,13724388:22474652 +g1,6659:32583028,13724388 +) +] +) +g1,6660:32583029,13800409 +g1,6660:6630773,13800409 +g1,6660:6630773,13800409 +g1,6660:32583029,13800409 +g1,6660:32583029,13800409 +) +h1,6660:6630773,13997017:0,0,0 +(1,6664:6630773,15241913:25952256,513147,134348 +h1,6663:6630773,15241913:983040,0,0 +k1,6663:8276634,15241913:185064 +k1,6663:9330049,15241913:185063 +k1,6663:10990328,15241913:185064 +k1,6663:13959360,15241913:185063 +k1,6663:14500284,15241913:185064 +k1,6663:17660027,15241913:185064 +k1,6663:19822967,15241913:185063 +k1,6663:23370028,15241913:185064 +k1,6663:25514618,15241913:185064 +k1,6663:27767997,15241913:185063 +k1,6663:29144506,15241913:185064 +k1,6663:30197921,15241913:185063 +k1,6663:31931601,15241913:185064 +k1,6663:32583029,15241913:0 +) +(1,6664:6630773,16083401:25952256,513147,134348 +k1,6663:8788268,16083401:228115 +k1,6663:9372242,16083401:228114 +k1,6663:10593883,16083401:228115 +k1,6663:14183995,16083401:228115 +k1,6663:16108836,16083401:228114 +k1,6663:18626779,16083401:228115 +k1,6663:19723246,16083401:228115 +k1,6663:21055643,16083401:228115 +k1,6663:22376242,16083401:228114 +k1,6663:25299853,16083401:228115 +(1,6663:25299853,16083401:0,452978,122846 +r1,6663:27416678,16083401:2116825,575824,122846 +k1,6663:25299853,16083401:-2116825 +) +(1,6663:25299853,16083401:2116825,452978,122846 +k1,6663:25299853,16083401:3277 +h1,6663:27413401,16083401:0,411205,112570 +) +k1,6663:27818463,16083401:228115 +k1,6663:28674412,16083401:228114 +k1,6663:29921612,16083401:228115 +k1,6663:32583029,16083401:0 +) +(1,6664:6630773,16924889:25952256,513147,134348 +k1,6663:8681662,16924889:182458 +k1,6663:9732473,16924889:182459 +k1,6663:11007416,16924889:182458 +k1,6663:13885371,16924889:182459 +(1,6663:13885371,16924889:0,452978,115847 +r1,6663:15298772,16924889:1413401,568825,115847 +k1,6663:13885371,16924889:-1413401 +) +(1,6663:13885371,16924889:1413401,452978,115847 +k1,6663:13885371,16924889:3277 +h1,6663:15295495,16924889:0,411205,112570 +) +k1,6663:15481230,16924889:182458 +k1,6663:16315116,16924889:182458 +k1,6663:18521327,16924889:182459 +k1,6663:19059645,16924889:182458 +k1,6663:22216782,16924889:182458 +k1,6663:24377118,16924889:182459 +k1,6663:25218868,16924889:182458 +k1,6663:27360853,16924889:182459 +k1,6663:29611627,16924889:182458 +k1,6663:32583029,16924889:0 +) +(1,6664:6630773,17766377:25952256,513147,134348 +g1,6663:7185862,17766377 +g1,6663:9782398,17766377 +g1,6663:12322573,17766377 +g1,6663:13713247,17766377 +g1,6663:15346404,17766377 +g1,6663:17621814,17766377 +g1,6663:18587159,17766377 +g1,6663:20483115,17766377 +g1,6663:22972172,17766377 +g1,6663:24438867,17766377 +g1,6663:24993956,17766377 +k1,6664:32583029,17766377:6421877 +g1,6664:32583029,17766377 +) +v1,6666:6630773,18835964:0,393216,0 +(1,6680:6630773,24488873:25952256,6046125,196608 +g1,6680:6630773,24488873 +g1,6680:6630773,24488873 +g1,6680:6434165,24488873 +(1,6680:6434165,24488873:0,6046125,196608 +r1,6680:32779637,24488873:26345472,6242733,196608 +k1,6680:6434165,24488873:-26345472 +) +(1,6680:6434165,24488873:26345472,6046125,196608 +[1,6680:6630773,24488873:25952256,5849517,0 +(1,6668:6630773,19043582:25952256,404226,107478 +(1,6667:6630773,19043582:0,0,0 +g1,6667:6630773,19043582 +g1,6667:6630773,19043582 +g1,6667:6303093,19043582 +(1,6667:6303093,19043582:0,0,0 +) +g1,6667:6630773,19043582 +) +g1,6668:9792230,19043582 +g1,6668:10740668,19043582 +g1,6668:14218271,19043582 +g1,6668:14850563,19043582 +h1,6668:17063583,19043582:0,0,0 +k1,6668:32583029,19043582:15519446 +g1,6668:32583029,19043582 +) +(1,6669:6630773,19709760:25952256,404226,107478 +h1,6669:6630773,19709760:0,0,0 +g1,6669:9159939,19709760 +g1,6669:10108377,19709760 +k1,6669:10108377,19709760:0 +h1,6669:14850562,19709760:0,0,0 +k1,6669:32583030,19709760:17732468 +g1,6669:32583030,19709760 +) +(1,6670:6630773,20375938:25952256,404226,107478 +h1,6670:6630773,20375938:0,0,0 +k1,6670:6630773,20375938:0 +h1,6670:10424521,20375938:0,0,0 +k1,6670:32583029,20375938:22158508 +g1,6670:32583029,20375938 +) +(1,6679:6630773,21107652:25952256,410518,9436 +(1,6672:6630773,21107652:0,0,0 +g1,6672:6630773,21107652 +g1,6672:6630773,21107652 +g1,6672:6303093,21107652 +(1,6672:6303093,21107652:0,0,0 +) +g1,6672:6630773,21107652 +) +g1,6679:7579210,21107652 +g1,6679:9159939,21107652 +g1,6679:10108376,21107652 +h1,6679:10424522,21107652:0,0,0 +k1,6679:32583030,21107652:22158508 +g1,6679:32583030,21107652 +) +(1,6679:6630773,21773830:25952256,410518,50331 +h1,6679:6630773,21773830:0,0,0 +g1,6679:7579210,21773830 +g1,6679:7895356,21773830 +g1,6679:8527648,21773830 +g1,6679:10424522,21773830 +g1,6679:11689105,21773830 +h1,6679:12005251,21773830:0,0,0 +k1,6679:32583029,21773830:20577778 +g1,6679:32583029,21773830 +) +(1,6679:6630773,22440008:25952256,410518,50331 +h1,6679:6630773,22440008:0,0,0 +g1,6679:7579210,22440008 +g1,6679:7895356,22440008 +g1,6679:8527648,22440008 +g1,6679:10424522,22440008 +g1,6679:11689105,22440008 +h1,6679:12005251,22440008:0,0,0 +k1,6679:32583029,22440008:20577778 +g1,6679:32583029,22440008 +) +(1,6679:6630773,23106186:25952256,410518,50331 +h1,6679:6630773,23106186:0,0,0 +g1,6679:7579210,23106186 +g1,6679:7895356,23106186 +g1,6679:8527648,23106186 +g1,6679:10424522,23106186 +g1,6679:11689105,23106186 +h1,6679:12005251,23106186:0,0,0 +k1,6679:32583029,23106186:20577778 +g1,6679:32583029,23106186 +) +(1,6679:6630773,23772364:25952256,410518,50331 +h1,6679:6630773,23772364:0,0,0 +g1,6679:7579210,23772364 +g1,6679:7895356,23772364 +g1,6679:8527648,23772364 +g1,6679:10424522,23772364 +g1,6679:11689105,23772364 +h1,6679:12321396,23772364:0,0,0 +k1,6679:32583028,23772364:20261632 +g1,6679:32583028,23772364 +) +(1,6679:6630773,24438542:25952256,410518,50331 +h1,6679:6630773,24438542:0,0,0 +g1,6679:7579210,24438542 +g1,6679:7895356,24438542 +g1,6679:8527648,24438542 +g1,6679:10424522,24438542 +g1,6679:11689105,24438542 +h1,6679:12321396,24438542:0,0,0 +k1,6679:32583028,24438542:20261632 +g1,6679:32583028,24438542 +) +] +) +g1,6680:32583029,24488873 +g1,6680:6630773,24488873 +g1,6680:6630773,24488873 +g1,6680:32583029,24488873 +g1,6680:32583029,24488873 +) +h1,6680:6630773,24685481:0,0,0 +v1,6684:6630773,26333787:0,393216,0 +(1,6685:6630773,30491538:25952256,4550967,616038 +g1,6685:6630773,30491538 +(1,6685:6630773,30491538:25952256,4550967,616038 +(1,6685:6630773,31107576:25952256,5167005,0 +[1,6685:6630773,31107576:25952256,5167005,0 +(1,6685:6630773,31081362:25952256,5114577,0 +r1,6685:6656987,31081362:26214,5114577,0 +[1,6685:6656987,31081362:25899828,5114577,0 +(1,6685:6656987,30491538:25899828,3934929,0 +[1,6685:7246811,30491538:24720180,3934929,0 +(1,6685:7246811,27840591:24720180,1283982,196608 +(1,6684:7246811,27840591:0,1283982,196608 +r1,6685:9812056,27840591:2565245,1480590,196608 +k1,6684:7246811,27840591:-2565245 +) +(1,6684:7246811,27840591:2565245,1283982,196608 +) +k1,6684:10104467,27840591:292411 +k1,6684:12254824,27840591:292411 +k1,6684:13206527,27840591:292411 +k1,6684:16128898,27840591:292411 +k1,6684:17844096,27840591:292411 +k1,6684:18795799,27840591:292411 +k1,6684:22114007,27840591:292411 +(1,6684:22114007,27840591:0,452978,122846 +r1,6685:24934256,27840591:2820249,575824,122846 +k1,6684:22114007,27840591:-2820249 +) +(1,6684:22114007,27840591:2820249,452978,122846 +k1,6684:22114007,27840591:3277 +h1,6684:24930979,27840591:0,411205,112570 +) +k1,6684:25400337,27840591:292411 +(1,6684:25400337,27840591:0,452978,122846 +r1,6685:27165450,27840591:1765113,575824,122846 +k1,6684:25400337,27840591:-1765113 +) +(1,6684:25400337,27840591:1765113,452978,122846 +k1,6684:25400337,27840591:3277 +h1,6684:27162173,27840591:0,411205,112570 +) +k1,6684:27457861,27840591:292411 +k1,6684:28941717,27840591:292411 +(1,6684:28941717,27840591:0,452978,122846 +r1,6685:31058542,27840591:2116825,575824,122846 +k1,6684:28941717,27840591:-2116825 +) +(1,6684:28941717,27840591:2116825,452978,122846 +k1,6684:28941717,27840591:3277 +h1,6684:31055265,27840591:0,411205,112570 +) +k1,6684:31350953,27840591:292411 +k1,6684:31966991,27840591:0 +) +(1,6685:7246811,28682079:24720180,513147,126483 +k1,6684:9587616,28682079:179428 +k1,6684:10937518,28682079:179429 +k1,6684:12209431,28682079:179428 +k1,6684:13071744,28682079:179428 +k1,6684:15019989,28682079:179428 +k1,6684:16291903,28682079:179429 +k1,6684:17122759,28682079:179428 +k1,6684:19732262,28682079:179428 +k1,6684:21370522,28682079:179429 +k1,6684:22880331,28682079:179428 +k1,6684:24449122,28682079:179428 +k1,6684:25518529,28682079:179428 +k1,6684:27265579,28682079:179429 +k1,6684:29146977,28682079:179428 +k1,6684:31966991,28682079:0 +) +(1,6685:7246811,29523567:24720180,505283,126483 +k1,6684:9117561,29523567:170746 +k1,6684:9644168,29523567:170747 +k1,6684:11645990,29523567:170746 +k1,6684:12468165,29523567:170747 +k1,6684:16072342,29523567:170746 +k1,6684:17620000,29523567:170747 +k1,6684:18982191,29523567:170746 +k1,6684:22331434,29523567:170747 +k1,6684:23693625,29523567:170746 +k1,6684:25055817,29523567:170747 +k1,6684:27098271,29523567:170746 +k1,6684:28472259,29523567:170747 +k1,6684:30474081,29523567:170746 +k1,6684:31966991,29523567:0 +) +(1,6685:7246811,30365055:24720180,505283,126483 +g1,6684:8465125,30365055 +g1,6684:10507226,30365055 +g1,6684:13747326,30365055 +g1,6684:14708083,30365055 +g1,6684:15926397,30365055 +g1,6684:17956702,30365055 +g1,6684:20814727,30365055 +g1,6684:22472787,30365055 +k1,6685:31966991,30365055:5295968 +g1,6685:31966991,30365055 +) +] +) +] +r1,6685:32583029,31081362:26214,5114577,0 +) +] +) +) +g1,6685:32583029,30491538 +) +h1,6685:6630773,31107576:0,0,0 +(1,6687:6630773,33915144:25952256,32768,229376 +(1,6687:6630773,33915144:0,32768,229376 +(1,6687:6630773,33915144:5505024,32768,229376 +r1,6687:12135797,33915144:5505024,262144,229376 +) +k1,6687:6630773,33915144:-5505024 +) +(1,6687:6630773,33915144:25952256,32768,0 +r1,6687:32583029,33915144:25952256,32768,0 +) +) +(1,6687:6630773,35519472:25952256,615776,151780 +(1,6687:6630773,35519472:1974731,582746,14155 +g1,6687:6630773,35519472 +g1,6687:8605504,35519472 +) +g1,6687:10368685,35519472 +g1,6687:13916280,35519472 +g1,6687:16205584,35519472 +g1,6687:17263335,35519472 +k1,6687:32583029,35519472:13168802 +g1,6687:32583029,35519472 +) +(1,6690:6630773,37291889:25952256,1161885,196608 +(1,6689:6630773,37291889:0,1161885,196608 +r1,6689:8178409,37291889:1547636,1358493,196608 +k1,6689:6630773,37291889:-1547636 +) +(1,6689:6630773,37291889:1547636,1161885,196608 +) +k1,6689:8333150,37291889:154741 +k1,6689:9316921,37291889:154741 +k1,6689:11082538,37291889:154742 +k1,6689:12440520,37291889:154741 +k1,6689:15186555,37291889:154741 +k1,6689:15554244,37291889:154697 +k1,6689:16841447,37291889:154741 +k1,6689:19645809,37291889:154741 +k1,6689:21492690,37291889:154741 +k1,6689:24653567,37291889:154741 +k1,6689:27183334,37291889:154742 +k1,6689:27997367,37291889:154741 +k1,6689:29171193,37291889:154741 +k1,6689:29740733,37291889:154697 +k1,6689:32583029,37291889:0 +) +(1,6690:6630773,38133377:25952256,513147,134348 +k1,6689:8161148,38133377:245869 +k1,6689:9398577,38133377:245869 +k1,6689:11621667,38133377:245869 +k1,6689:13565574,38133377:245869 +k1,6689:16069158,38133377:245869 +k1,6689:19001349,38133377:245870 +k1,6689:22273015,38133377:245869 +k1,6689:23689357,38133377:245869 +k1,6689:24926786,38133377:245869 +k1,6689:26931641,38133377:245869 +k1,6689:29736036,38133377:245869 +k1,6689:31000990,38133377:245869 +k1,6689:32583029,38133377:0 +) +(1,6690:6630773,38974865:25952256,513147,134348 +k1,6689:10824609,38974865:175824 +k1,6689:12170905,38974865:175823 +k1,6689:13479191,38974865:175824 +k1,6689:15203630,38974865:175823 +k1,6689:16030882,38974865:175824 +k1,6689:18217350,38974865:175823 +k1,6689:19044602,38974865:175824 +k1,6689:20423667,38974865:175824 +k1,6689:22878177,38974865:175823 +k1,6689:24567227,38974865:175824 +k1,6689:27145600,38974865:175823 +k1,6689:30069349,38974865:175824 +h1,6689:30467808,38974865:0,0,0 +k1,6689:30643631,38974865:175823 +k1,6689:32010900,38974865:175824 +h1,6689:32409359,38974865:0,0,0 +k1,6689:32583029,38974865:0 +) +(1,6690:6630773,39816353:25952256,513147,134348 +k1,6689:7454966,39816353:196358 +k1,6689:8670410,39816353:196359 +k1,6689:10520241,39816353:196358 +k1,6689:11954574,39816353:196358 +k1,6689:12837094,39816353:196358 +k1,6689:13901805,39816353:196359 +k1,6689:15202445,39816353:196358 +k1,6689:17405515,39816353:196358 +k1,6689:19670189,39816353:196358 +k1,6689:20517976,39816353:196359 +(1,6689:20517976,39816353:0,452978,115847 +r1,6689:22986513,39816353:2468537,568825,115847 +k1,6689:20517976,39816353:-2468537 +) +(1,6689:20517976,39816353:2468537,452978,115847 +k1,6689:20517976,39816353:3277 +h1,6689:22983236,39816353:0,411205,112570 +) +k1,6689:23356541,39816353:196358 +(1,6689:23356541,39816353:0,452978,115847 +r1,6689:26528501,39816353:3171960,568825,115847 +k1,6689:23356541,39816353:-3171960 +) +(1,6689:23356541,39816353:3171960,452978,115847 +k1,6689:23356541,39816353:3277 +h1,6689:26525224,39816353:0,411205,112570 +) +k1,6689:26724859,39816353:196358 +k1,6689:28112662,39816353:196358 +k1,6689:30010991,39816353:196359 +k1,6689:31923737,39816353:196358 +k1,6689:32583029,39816353:0 +) +(1,6690:6630773,40657841:25952256,513147,134348 +k1,6689:9250549,40657841:156278 +k1,6689:10275179,40657841:156278 +k1,6689:11535739,40657841:156278 +k1,6689:13698729,40657841:156278 +k1,6689:15923323,40657841:156278 +k1,6689:16731029,40657841:156278 +k1,6689:19913105,40657841:156279 +k1,6689:21260828,40657841:156278 +k1,6689:25361063,40657841:156278 +k1,6689:26470890,40657841:156278 +k1,6689:27731450,40657841:156278 +k1,6689:29173544,40657841:156278 +k1,6689:31259202,40657841:156278 +k1,6689:32583029,40657841:0 +) +(1,6690:6630773,41499329:25952256,513147,134348 +k1,6689:7516584,41499329:226519 +k1,6689:10768900,41499329:226519 +k1,6689:13205292,41499329:226518 +k1,6689:17375768,41499329:226519 +k1,6689:18798974,41499329:226519 +k1,6689:19440308,41499329:226491 +k1,6689:22509123,41499329:226519 +k1,6689:23836647,41499329:226519 +k1,6689:24419025,41499329:226518 +k1,6689:25999518,41499329:226519 +k1,6689:29506769,41499329:226519 +k1,6689:32583029,41499329:0 +) +(1,6690:6630773,42340817:25952256,513147,134348 +k1,6689:8219541,42340817:194817 +k1,6689:9180473,42340817:194816 +k1,6689:10699117,42340817:194817 +k1,6689:12085379,42340817:194817 +k1,6689:14588373,42340817:194816 +k1,6689:17649079,42340817:194817 +k1,6689:18459934,42340817:194817 +k1,6689:19673835,42340817:194816 +k1,6689:21522125,42340817:194817 +k1,6689:23128588,42340817:194817 +k1,6689:24520091,42340817:194816 +k1,6689:28320043,42340817:194817 +k1,6689:29174152,42340817:194817 +k1,6689:30572209,42340817:194816 +k1,6689:31298523,42340817:194817 +k1,6689:32583029,42340817:0 +) +(1,6690:6630773,43182305:25952256,513147,134348 +k1,6689:7640901,43182305:141776 +k1,6689:8886959,43182305:141776 +k1,6689:11035447,43182305:141776 +k1,6689:13939567,43182305:141777 +k1,6689:17107140,43182305:141776 +k1,6689:17931801,43182305:141776 +k1,6689:21843863,43182305:141776 +k1,6689:22637067,43182305:141776 +k1,6689:23134703,43182305:141776 +k1,6689:24971241,43182305:141777 +k1,6689:27024702,43182305:141776 +k1,6689:28357923,43182305:141776 +k1,6689:32583029,43182305:0 +) +(1,6690:6630773,44023793:25952256,513147,126483 +g1,6689:7288099,44023793 +g1,6689:8018825,44023793 +g1,6689:10848014,44023793 +g1,6689:11698671,44023793 +g1,6689:13512707,44023793 +g1,6689:15457160,44023793 +g1,6689:17043786,44023793 +g1,6689:18566842,44023793 +g1,6689:19425363,44023793 +g1,6689:22650389,44023793 +g1,6689:23532503,44023793 +k1,6690:32583029,44023793:5106569 +g1,6690:32583029,44023793 +) +(1,6692:6630773,44865281:25952256,513147,126483 +h1,6691:6630773,44865281:983040,0,0 +k1,6691:8421263,44865281:179615 +k1,6691:9804120,44865281:179616 +k1,6691:11289868,44865281:179615 +k1,6691:14130901,44865281:179616 +k1,6691:15178868,44865281:179615 +k1,6691:16450969,44865281:179616 +k1,6691:16986444,44865281:179615 +k1,6691:20202997,44865281:179615 +k1,6691:22314614,44865281:179616 +k1,6691:23110267,44865281:179615 +k1,6691:25887075,44865281:179616 +k1,6691:28298846,44865281:179615 +k1,6691:29669907,44865281:179616 +k1,6691:30942007,44865281:179615 +k1,6692:32583029,44865281:0 +) +(1,6692:6630773,45706769:25952256,513147,134348 +k1,6691:8108709,45706769:210470 +(1,6691:8108709,45706769:0,452978,115847 +r1,6691:11280669,45706769:3171960,568825,115847 +k1,6691:8108709,45706769:-3171960 +) +(1,6691:8108709,45706769:3171960,452978,115847 +k1,6691:8108709,45706769:3277 +h1,6691:11277392,45706769:0,411205,112570 +) +k1,6691:11491139,45706769:210470 +k1,6691:12387771,45706769:210470 +k1,6691:13056338,45706769:210470 +k1,6691:15645110,45706769:210470 +k1,6691:17711560,45706769:210470 +k1,6691:20896708,45706769:210469 +k1,6691:23303289,45706769:210470 +k1,6691:24196644,45706769:210470 +k1,6691:27102610,45706769:210470 +k1,6691:29381396,45706769:210470 +k1,6691:30278028,45706769:210470 +k1,6691:31276896,45706769:210470 +k1,6691:32583029,45706769:0 +) +] +(1,6694:32583029,45706769:0,0,0 +g1,6694:32583029,45706769 +) +) +] +(1,6694:6630773,47279633:25952256,0,0 +h1,6694:6630773,47279633:25952256,0,0 +) +] +h1,6694:4262630,4025873:0,0,0 +] +!24034 }125 -Input:945:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:946:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:947:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:948:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:949:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:950:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:951:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:952:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:953:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!777 +Input:941:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:942:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:943:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:944:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:945:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:946:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:947:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:948:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:949:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!831 {126 -[1,6780:4262630,47279633:28320399,43253760,0 -(1,6780:4262630,4025873:0,0,0 -[1,6780:-473657,4025873:25952256,0,0 -(1,6780:-473657,-710414:25952256,0,0 -h1,6780:-473657,-710414:0,0,0 -(1,6780:-473657,-710414:0,0,0 -(1,6780:-473657,-710414:0,0,0 -g1,6780:-473657,-710414 -(1,6780:-473657,-710414:65781,0,65781 -g1,6780:-407876,-710414 -[1,6780:-407876,-644633:0,0,0 +[1,6786:4262630,47279633:28320399,43253760,0 +(1,6786:4262630,4025873:0,0,0 +[1,6786:-473657,4025873:25952256,0,0 +(1,6786:-473657,-710414:25952256,0,0 +h1,6786:-473657,-710414:0,0,0 +(1,6786:-473657,-710414:0,0,0 +(1,6786:-473657,-710414:0,0,0 +g1,6786:-473657,-710414 +(1,6786:-473657,-710414:65781,0,65781 +g1,6786:-407876,-710414 +[1,6786:-407876,-644633:0,0,0 ] ) -k1,6780:-473657,-710414:-65781 +k1,6786:-473657,-710414:-65781 ) ) -k1,6780:25478599,-710414:25952256 -g1,6780:25478599,-710414 +k1,6786:25478599,-710414:25952256 +g1,6786:25478599,-710414 ) ] ) -[1,6780:6630773,47279633:25952256,43253760,0 -[1,6780:6630773,4812305:25952256,786432,0 -(1,6780:6630773,4812305:25952256,513147,126483 -(1,6780:6630773,4812305:25952256,513147,126483 -g1,6780:3078558,4812305 -[1,6780:3078558,4812305:0,0,0 -(1,6780:3078558,2439708:0,1703936,0 -k1,6780:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6780:2537886,2439708:1179648,16384,0 +[1,6786:6630773,47279633:25952256,43253760,0 +[1,6786:6630773,4812305:25952256,786432,0 +(1,6786:6630773,4812305:25952256,513147,126483 +(1,6786:6630773,4812305:25952256,513147,126483 +g1,6786:3078558,4812305 +[1,6786:3078558,4812305:0,0,0 +(1,6786:3078558,2439708:0,1703936,0 +k1,6786:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6786:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6780:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6786:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6780:3078558,4812305:0,0,0 -(1,6780:3078558,2439708:0,1703936,0 -g1,6780:29030814,2439708 -g1,6780:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6780:36151628,1915420:16384,1179648,0 +[1,6786:3078558,4812305:0,0,0 +(1,6786:3078558,2439708:0,1703936,0 +g1,6786:29030814,2439708 +g1,6786:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6786:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6780:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6786:37855564,2439708:1179648,16384,0 ) ) -k1,6780:3078556,2439708:-34777008 +k1,6786:3078556,2439708:-34777008 ) ] -[1,6780:3078558,4812305:0,0,0 -(1,6780:3078558,49800853:0,16384,2228224 -k1,6780:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6780:2537886,49800853:1179648,16384,0 +[1,6786:3078558,4812305:0,0,0 +(1,6786:3078558,49800853:0,16384,2228224 +k1,6786:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6786:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6780:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6786:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6780:3078558,4812305:0,0,0 -(1,6780:3078558,49800853:0,16384,2228224 -g1,6780:29030814,49800853 -g1,6780:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6780:36151628,51504789:16384,1179648,0 +[1,6786:3078558,4812305:0,0,0 +(1,6786:3078558,49800853:0,16384,2228224 +g1,6786:29030814,49800853 +g1,6786:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6786:36151628,51504789:16384,1179648,0 ) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) ] ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6780:37855564,49800853:1179648,16384,0 -) -) -k1,6780:3078556,49800853:-34777008 -) -] -g1,6780:6630773,4812305 -g1,6780:6630773,4812305 -g1,6780:8017514,4812305 -g1,6780:10787065,4812305 -g1,6780:12580785,4812305 -g1,6780:13396052,4812305 -g1,6780:15205501,4812305 -k1,6780:31387652,4812305:16182151 -) -) -] -[1,6780:6630773,45706769:25952256,40108032,0 -(1,6780:6630773,45706769:25952256,40108032,0 -(1,6780:6630773,45706769:0,0,0 -g1,6780:6630773,45706769 -) -[1,6780:6630773,45706769:25952256,40108032,0 -v1,6702:6630773,6254097:0,393216,0 -(1,6702:6630773,10540047:25952256,4679166,196608 -g1,6702:6630773,10540047 -g1,6702:6630773,10540047 -g1,6702:6434165,10540047 -(1,6702:6434165,10540047:0,4679166,196608 -r1,6702:32779637,10540047:26345472,4875774,196608 -k1,6702:6434165,10540047:-26345472 -) -(1,6702:6434165,10540047:26345472,4679166,196608 -[1,6702:6630773,10540047:25952256,4482558,0 -(1,6692:6630773,6468007:25952256,410518,82312 -h1,6692:6630773,6468007:0,0,0 -g1,6692:9792230,6468007 -g1,6692:10740668,6468007 -g1,6692:13902126,6468007 -g1,6692:16115146,6468007 -h1,6692:18012020,6468007:0,0,0 -k1,6692:32583029,6468007:14571009 -g1,6692:32583029,6468007 -) -(1,6693:6630773,7134185:25952256,410518,76021 -h1,6693:6630773,7134185:0,0,0 -g1,6693:7895356,7134185 -g1,6693:10424522,7134185 -g1,6693:11372959,7134185 -g1,6693:14850562,7134185 -h1,6693:15166708,7134185:0,0,0 -k1,6693:32583028,7134185:17416320 -g1,6693:32583028,7134185 -) -(1,6694:6630773,7800363:25952256,410518,82312 -h1,6694:6630773,7800363:0,0,0 -g1,6694:6946919,7800363 -g1,6694:7263065,7800363 -g1,6694:7579211,7800363 -g1,6694:13269834,7800363 -g1,6694:14218272,7800363 -g1,6694:19276604,7800363 -k1,6694:19276604,7800363:0 -h1,6694:21805770,7800363:0,0,0 -k1,6694:32583029,7800363:10777259 -g1,6694:32583029,7800363 -) -(1,6695:6630773,8466541:25952256,404226,76021 -h1,6695:6630773,8466541:0,0,0 -g1,6695:6946919,8466541 -g1,6695:7263065,8466541 -g1,6695:7579211,8466541 -h1,6695:7895357,8466541:0,0,0 -k1,6695:32583029,8466541:24687672 -g1,6695:32583029,8466541 -) -(1,6696:6630773,9132719:25952256,404226,6290 -h1,6696:6630773,9132719:0,0,0 -h1,6696:8843793,9132719:0,0,0 -k1,6696:32583029,9132719:23739236 -g1,6696:32583029,9132719 -) -(1,6701:6630773,9864433:25952256,404226,6290 -(1,6698:6630773,9864433:0,0,0 -g1,6698:6630773,9864433 -g1,6698:6630773,9864433 -g1,6698:6303093,9864433 -(1,6698:6303093,9864433:0,0,0 -) -g1,6698:6630773,9864433 -) -g1,6701:7579210,9864433 -g1,6701:7895356,9864433 -g1,6701:8211502,9864433 -g1,6701:8527648,9864433 -g1,6701:8843794,9864433 -g1,6701:9159940,9864433 -g1,6701:9476086,9864433 -g1,6701:11056815,9864433 -g1,6701:11372961,9864433 -g1,6701:11689107,9864433 -g1,6701:12005253,9864433 -g1,6701:12321399,9864433 -g1,6701:12637545,9864433 -g1,6701:12953691,9864433 -g1,6701:13269837,9864433 -g1,6701:14534420,9864433 -g1,6701:14850566,9864433 -g1,6701:15166712,9864433 -g1,6701:15482858,9864433 -g1,6701:15799004,9864433 -g1,6701:16115150,9864433 -g1,6701:16431296,9864433 -g1,6701:16747442,9864433 -h1,6701:17695879,9864433:0,0,0 -k1,6701:32583029,9864433:14887150 -g1,6701:32583029,9864433 -) -(1,6701:6630773,10530611:25952256,388497,9436 -h1,6701:6630773,10530611:0,0,0 -g1,6701:7579210,10530611 -g1,6701:7895356,10530611 -g1,6701:11056813,10530611 -g1,6701:11372959,10530611 -g1,6701:14534416,10530611 -k1,6701:14534416,10530611:0 -h1,6701:17695873,10530611:0,0,0 -k1,6701:32583029,10530611:14887156 -g1,6701:32583029,10530611 -) -] -) -g1,6702:32583029,10540047 -g1,6702:6630773,10540047 -g1,6702:6630773,10540047 -g1,6702:32583029,10540047 -g1,6702:32583029,10540047 -) -h1,6702:6630773,10736655:0,0,0 -(1,6706:6630773,12102431:25952256,513147,134348 -h1,6705:6630773,12102431:983040,0,0 -k1,6705:9559839,12102431:162791 -k1,6705:12937172,12102431:162792 -k1,6705:13455823,12102431:162791 -k1,6705:14518424,12102431:162792 -k1,6705:15297253,12102431:162791 -k1,6705:18368533,12102431:162792 -k1,6705:19147362,12102431:162791 -k1,6705:19666014,12102431:162792 -k1,6705:21417398,12102431:162791 -k1,6705:22448542,12102431:162792 -k1,6705:23912878,12102431:162791 -k1,6705:25094755,12102431:162792 -k1,6705:27934036,12102431:162791 -k1,6705:29381334,12102431:162792 -k1,6705:30412477,12102431:162791 -k1,6705:32583029,12102431:0 -) -(1,6706:6630773,12943919:25952256,513147,134348 -k1,6705:8945112,12943919:283378 -k1,6705:10247574,12943919:283377 -k1,6705:12966270,12943919:283378 -k1,6705:15317963,12943919:283377 -k1,6705:16260633,12943919:283378 -k1,6705:17563095,12943919:283377 -k1,6705:20872270,12943919:283378 -k1,6705:21841809,12943919:283377 -k1,6705:23673803,12943919:283378 -k1,6705:24488677,12943919:283377 -k1,6705:26810225,12943919:283378 -k1,6705:27709640,12943919:283377 -k1,6705:29012103,12943919:283378 -k1,6705:30289007,12943919:283378 -k1,6705:31563944,12943919:283377 -k1,6705:32583029,12943919:0 -) -(1,6706:6630773,13785407:25952256,513147,7863 -k1,6705:10207073,13785407:163840 -k1,6705:11030205,13785407:163840 -k1,6705:12213130,13785407:163840 -k1,6705:15576437,13785407:163839 -k1,6705:16368112,13785407:163840 -k1,6705:17735193,13785407:163840 -k1,6705:19266114,13785407:163840 -k1,6705:20298306,13785407:163840 -k1,6705:21566428,13785407:163840 -k1,6705:23165506,13785407:163840 -k1,6705:24348430,13785407:163839 -k1,6705:27207766,13785407:163840 -k1,6705:30784066,13785407:163840 -k1,6705:31563944,13785407:163840 -k1,6705:32583029,13785407:0 -) -(1,6706:6630773,14626895:25952256,513147,126483 -k1,6705:8260056,14626895:214361 -k1,6705:10985756,14626895:214360 -(1,6705:11192850,14626895:0,459977,115847 -r1,6705:11551116,14626895:358266,575824,115847 -k1,6705:11192850,14626895:-358266 -) -(1,6705:11192850,14626895:358266,459977,115847 -k1,6705:11192850,14626895:3277 -h1,6705:11547839,14626895:0,411205,112570 -) -k1,6705:11765477,14626895:214361 -k1,6705:12595876,14626895:214361 -k1,6705:13829322,14626895:214361 -k1,6705:16014350,14626895:214360 -k1,6705:18304236,14626895:214361 -k1,6705:19710042,14626895:214361 -k1,6705:21024097,14626895:214361 -k1,6705:22257542,14626895:214360 -k1,6705:25497700,14626895:214361 -k1,6705:26473589,14626895:214361 -k1,6705:27780435,14626895:214361 -k1,6705:28654087,14626895:214360 -k1,6705:29887533,14626895:214361 -k1,6705:32583029,14626895:0 -) -(1,6706:6630773,15468383:25952256,505283,126483 -g1,6705:7929696,15468383 -g1,6705:10818523,15468383 -(1,6705:11025617,15468383:0,459977,115847 -r1,6705:12087306,15468383:1061689,575824,115847 -k1,6705:11025617,15468383:-1061689 -) -(1,6705:11025617,15468383:1061689,459977,115847 -k1,6705:11025617,15468383:3277 -h1,6705:12084029,15468383:0,411205,112570 -) -g1,6705:12667299,15468383 -g1,6705:13820077,15468383 -g1,6705:16043058,15468383 -g1,6705:16598147,15468383 -g1,6705:19417505,15468383 -g1,6705:21594611,15468383 -g1,6705:23187791,15468383 -g1,6705:27087838,15468383 -k1,6706:32583029,15468383:2367813 -g1,6706:32583029,15468383 -) -v1,6708:6630773,16658849:0,393216,0 -(1,6720:6630773,21005092:25952256,4739459,196608 -g1,6720:6630773,21005092 -g1,6720:6630773,21005092 -g1,6720:6434165,21005092 -(1,6720:6434165,21005092:0,4739459,196608 -r1,6720:32779637,21005092:26345472,4936067,196608 -k1,6720:6434165,21005092:-26345472 -) -(1,6720:6434165,21005092:26345472,4739459,196608 -[1,6720:6630773,21005092:25952256,4542851,0 -(1,6710:6630773,16866467:25952256,404226,76021 -(1,6709:6630773,16866467:0,0,0 -g1,6709:6630773,16866467 -g1,6709:6630773,16866467 -g1,6709:6303093,16866467 -(1,6709:6303093,16866467:0,0,0 -) -g1,6709:6630773,16866467 -) -g1,6710:9159939,16866467 -g1,6710:10108377,16866467 -k1,6710:10108377,16866467:0 -h1,6710:12953688,16866467:0,0,0 -k1,6710:32583028,16866467:19629340 -g1,6710:32583028,16866467 -) -(1,6711:6630773,17532645:25952256,410518,82312 -h1,6711:6630773,17532645:0,0,0 -g1,6711:8211502,17532645 -g1,6711:9159940,17532645 -g1,6711:12637543,17532645 -g1,6711:14218272,17532645 -h1,6711:15482855,17532645:0,0,0 -k1,6711:32583029,17532645:17100174 -g1,6711:32583029,17532645 -) -(1,6712:6630773,18198823:25952256,410518,76021 -h1,6712:6630773,18198823:0,0,0 -g1,6712:7895356,18198823 -g1,6712:8843793,18198823 -g1,6712:9792230,18198823 -g1,6712:11689104,18198823 -h1,6712:12005250,18198823:0,0,0 -k1,6712:32583030,18198823:20577780 -g1,6712:32583030,18198823 -) -(1,6713:6630773,18865001:25952256,410518,82312 -h1,6713:6630773,18865001:0,0,0 -g1,6713:6946919,18865001 -g1,6713:7263065,18865001 -g1,6713:7579211,18865001 -g1,6713:10108377,18865001 -g1,6713:11056815,18865001 -g1,6713:14534418,18865001 -k1,6713:14534418,18865001:0 -h1,6713:16115147,18865001:0,0,0 -k1,6713:32583029,18865001:16467882 -g1,6713:32583029,18865001 -) -(1,6714:6630773,19531179:25952256,404226,76021 -h1,6714:6630773,19531179:0,0,0 -g1,6714:6946919,19531179 -g1,6714:7263065,19531179 -g1,6714:7579211,19531179 -h1,6714:7895357,19531179:0,0,0 -k1,6714:32583029,19531179:24687672 -g1,6714:32583029,19531179 -) -(1,6715:6630773,20197357:25952256,404226,6290 -h1,6715:6630773,20197357:0,0,0 -h1,6715:8843793,20197357:0,0,0 -k1,6715:32583029,20197357:23739236 -g1,6715:32583029,20197357 -) -(1,6719:6630773,20929071:25952256,404226,76021 -(1,6717:6630773,20929071:0,0,0 -g1,6717:6630773,20929071 -g1,6717:6630773,20929071 -g1,6717:6303093,20929071 -(1,6717:6303093,20929071:0,0,0 -) -g1,6717:6630773,20929071 -) -g1,6719:7579210,20929071 -g1,6719:8843793,20929071 -g1,6719:9159939,20929071 -g1,6719:12321396,20929071 -g1,6719:12637542,20929071 -g1,6719:15798999,20929071 -k1,6719:15798999,20929071:0 -h1,6719:18960456,20929071:0,0,0 -k1,6719:32583029,20929071:13622573 -g1,6719:32583029,20929071 -) -] -) -g1,6720:32583029,21005092 -g1,6720:6630773,21005092 -g1,6720:6630773,21005092 -g1,6720:32583029,21005092 -g1,6720:32583029,21005092 -) -h1,6720:6630773,21201700:0,0,0 -(1,6724:6630773,22567476:25952256,513147,134348 -h1,6723:6630773,22567476:983040,0,0 -k1,6723:8786908,22567476:219546 -k1,6723:10110735,22567476:219545 -k1,6723:11422766,22567476:219546 -k1,6723:11998171,22567476:219545 -k1,6723:14376473,22567476:219546 -k1,6723:15589544,22567476:219545 -k1,6723:16468382,22567476:219546 -k1,6723:19713724,22567476:219545 -k1,6723:20584698,22567476:219546 -k1,6723:22150353,22567476:219545 -k1,6723:23459763,22567476:219546 -k1,6723:25967170,22567476:219545 -k1,6723:26846008,22567476:219546 -k1,6723:28084638,22567476:219545 -k1,6723:30685107,22567476:219546 -k1,6723:31563944,22567476:219545 -k1,6723:32583029,22567476:0 -) -(1,6724:6630773,23408964:25952256,505283,134348 -k1,6723:9226177,23408964:248560 -k1,6723:10428286,23408964:248560 -k1,6723:12700598,23408964:248560 -k1,6723:13305018,23408964:248560 -k1,6723:16173707,23408964:248560 -k1,6723:18400145,23408964:248561 -k1,6723:20042656,23408964:248560 -k1,6723:22449972,23408964:248560 -k1,6723:25652240,23408964:248560 -k1,6723:27294751,23408964:248560 -k1,6723:29611627,23408964:248560 -k1,6723:32583029,23408964:0 -) -(1,6724:6630773,24250452:25952256,505283,134348 -g1,6723:7849087,24250452 -g1,6723:10116632,24250452 -g1,6723:12010622,24250452 -g1,6723:12861279,24250452 -g1,6723:14079593,24250452 -g1,6723:15272348,24250452 -k1,6724:32583029,24250452:14183303 -g1,6724:32583029,24250452 -) -v1,6726:6630773,25440918:0,393216,0 -(1,6739:6630773,30386754:25952256,5339052,196608 -g1,6739:6630773,30386754 -g1,6739:6630773,30386754 -g1,6739:6434165,30386754 -(1,6739:6434165,30386754:0,5339052,196608 -r1,6739:32779637,30386754:26345472,5535660,196608 -k1,6739:6434165,30386754:-26345472 -) -(1,6739:6434165,30386754:26345472,5339052,196608 -[1,6739:6630773,30386754:25952256,5142444,0 -(1,6728:6630773,25648536:25952256,404226,76021 -(1,6727:6630773,25648536:0,0,0 -g1,6727:6630773,25648536 -g1,6727:6630773,25648536 -g1,6727:6303093,25648536 -(1,6727:6303093,25648536:0,0,0 -) -g1,6727:6630773,25648536 -) -g1,6728:9159939,25648536 -g1,6728:10108377,25648536 -k1,6728:10108377,25648536:0 -h1,6728:12953688,25648536:0,0,0 -k1,6728:32583028,25648536:19629340 -g1,6728:32583028,25648536 -) -(1,6729:6630773,26314714:25952256,410518,107478 -h1,6729:6630773,26314714:0,0,0 -g1,6729:8211502,26314714 -g1,6729:9159940,26314714 -g1,6729:13269835,26314714 -g1,6729:13902127,26314714 -g1,6729:15799002,26314714 -g1,6729:18328168,26314714 -g1,6729:18960460,26314714 -g1,6729:20541189,26314714 -g1,6729:23070355,26314714 -g1,6729:23702647,26314714 -h1,6729:24967230,26314714:0,0,0 -k1,6729:32583029,26314714:7615799 -g1,6729:32583029,26314714 -) -(1,6730:6630773,26980892:25952256,410518,76021 -h1,6730:6630773,26980892:0,0,0 -g1,6730:7895356,26980892 -g1,6730:8843793,26980892 -g1,6730:9792230,26980892 -g1,6730:13902124,26980892 -h1,6730:14218270,26980892:0,0,0 -k1,6730:32583030,26980892:18364760 -g1,6730:32583030,26980892 -) -(1,6731:6630773,27647070:25952256,410518,76021 -h1,6731:6630773,27647070:0,0,0 -g1,6731:6946919,27647070 -g1,6731:7263065,27647070 -g1,6731:7579211,27647070 -g1,6731:11689105,27647070 -g1,6731:12637543,27647070 -h1,6731:16431291,27647070:0,0,0 -k1,6731:32583029,27647070:16151738 -g1,6731:32583029,27647070 -) -(1,6732:6630773,28313248:25952256,404226,76021 -h1,6732:6630773,28313248:0,0,0 -g1,6732:6946919,28313248 -g1,6732:7263065,28313248 -g1,6732:7579211,28313248 -h1,6732:7895357,28313248:0,0,0 -k1,6732:32583029,28313248:24687672 -g1,6732:32583029,28313248 -) -(1,6733:6630773,28979426:25952256,404226,6290 -h1,6733:6630773,28979426:0,0,0 -h1,6733:8843793,28979426:0,0,0 -k1,6733:32583029,28979426:23739236 -g1,6733:32583029,28979426 -) -(1,6738:6630773,29711140:25952256,404226,107478 -(1,6735:6630773,29711140:0,0,0 -g1,6735:6630773,29711140 -g1,6735:6630773,29711140 -g1,6735:6303093,29711140 -(1,6735:6303093,29711140:0,0,0 -) -g1,6735:6630773,29711140 -) -g1,6738:7579210,29711140 -g1,6738:7895356,29711140 -g1,6738:8211502,29711140 -g1,6738:8527648,29711140 -g1,6738:11056814,29711140 -g1,6738:11372960,29711140 -g1,6738:11689106,29711140 -g1,6738:12005252,29711140 -g1,6738:14534418,29711140 -g1,6738:14850564,29711140 -g1,6738:15166710,29711140 -g1,6738:15482856,29711140 -h1,6738:17695876,29711140:0,0,0 -k1,6738:32583029,29711140:14887153 -g1,6738:32583029,29711140 -) -(1,6738:6630773,30377318:25952256,388497,9436 -h1,6738:6630773,30377318:0,0,0 -g1,6738:7579210,30377318 -g1,6738:7895356,30377318 -g1,6738:11056813,30377318 -g1,6738:11372959,30377318 -g1,6738:14534416,30377318 -k1,6738:14534416,30377318:0 -h1,6738:17695873,30377318:0,0,0 -k1,6738:32583029,30377318:14887156 -g1,6738:32583029,30377318 -) -] -) -g1,6739:32583029,30386754 -g1,6739:6630773,30386754 -g1,6739:6630773,30386754 -g1,6739:32583029,30386754 -g1,6739:32583029,30386754 -) -h1,6739:6630773,30583362:0,0,0 -(1,6743:6630773,31949138:25952256,513147,134348 -h1,6742:6630773,31949138:983040,0,0 -k1,6742:9323226,31949138:247960 -k1,6742:10102683,31949138:247960 -k1,6742:11121346,31949138:247960 -k1,6742:14030724,31949138:247961 -k1,6742:16014077,31949138:247960 -k1,6742:18249744,31949138:247960 -k1,6742:21545128,31949138:247960 -k1,6742:22746637,31949138:247960 -k1,6742:24087082,31949138:247960 -k1,6742:24690902,31949138:247960 -k1,6742:26353785,31949138:247961 -k1,6742:27253173,31949138:247960 -k1,6742:28188606,31949138:247960 -k1,6742:30091350,31949138:247960 -k1,6742:32583029,31949138:0 -) -(1,6743:6630773,32790626:25952256,513147,134348 -k1,6742:9861318,32790626:216544 -k1,6742:10433723,32790626:216545 -k1,6742:11643793,32790626:216544 -k1,6742:12519630,32790626:216545 -k1,6742:14448630,32790626:216544 -k1,6742:17156854,32790626:216545 -k1,6742:18326947,32790626:216544 -k1,6742:20714044,32790626:216545 -k1,6742:22367793,32790626:216544 -k1,6742:23235766,32790626:216545 -(1,6742:23235766,32790626:0,452978,115847 -r1,6742:25704303,32790626:2468537,568825,115847 -k1,6742:23235766,32790626:-2468537 -) -(1,6742:23235766,32790626:2468537,452978,115847 -k1,6742:23235766,32790626:3277 -h1,6742:25701026,32790626:0,411205,112570 -) -k1,6742:25920847,32790626:216544 -k1,6742:27340633,32790626:216545 -k1,6742:28550703,32790626:216544 -k1,6742:29426540,32790626:216545 -k1,6742:31355540,32790626:216544 -k1,6743:32583029,32790626:0 -) -(1,6743:6630773,33632114:25952256,513147,134348 -k1,6742:8322753,33632114:214798 -k1,6742:9223712,33632114:214797 -k1,6742:9896607,33632114:214798 -k1,6742:12512643,33632114:214797 -k1,6742:14179063,33632114:214798 -k1,6742:16106317,33632114:214798 -k1,6742:18308821,33632114:214797 -k1,6742:19209781,33632114:214798 -k1,6742:19780438,33632114:214797 -k1,6742:22697941,33632114:214798 -k1,6742:25863825,33632114:214798 -k1,6742:29150950,33632114:214797 -k1,6742:30017176,33632114:214798 -k1,6742:31020371,33632114:214797 -(1,6742:31020371,33632114:0,414482,115847 -r1,6742:31378637,33632114:358266,530329,115847 -k1,6742:31020371,33632114:-358266 -) -(1,6742:31020371,33632114:358266,414482,115847 -k1,6742:31020371,33632114:3277 -h1,6742:31375360,33632114:0,411205,112570 -) -k1,6742:31593435,33632114:214798 -k1,6743:32583029,33632114:0 -) -(1,6743:6630773,34473602:25952256,513147,134348 -k1,6742:9481331,34473602:172757 -k1,6742:10607638,34473602:172758 -k1,6742:11884677,34473602:172757 -k1,6742:13035888,34473602:172758 -k1,6742:15497818,34473602:172757 -k1,6742:16873816,34473602:172757 -k1,6742:19723064,34473602:172758 -k1,6742:21631214,34473602:172757 -k1,6742:24499468,34473602:172758 -(1,6742:24499468,34473602:0,452978,115847 -r1,6742:27671428,34473602:3171960,568825,115847 -k1,6742:24499468,34473602:-3171960 -) -(1,6742:24499468,34473602:3171960,452978,115847 -k1,6742:24499468,34473602:3277 -h1,6742:27668151,34473602:0,411205,112570 -) -k1,6742:27844185,34473602:172757 -k1,6742:28668371,34473602:172758 -k1,6742:29940822,34473602:172757 -(1,6742:29940822,34473602:0,452978,115847 -r1,6742:32409359,34473602:2468537,568825,115847 -k1,6742:29940822,34473602:-2468537 -) -(1,6742:29940822,34473602:2468537,452978,115847 -k1,6742:29940822,34473602:3277 -h1,6742:32406082,34473602:0,411205,112570 -) -k1,6742:32583029,34473602:0 -) -(1,6743:6630773,35315090:25952256,513147,134348 -k1,6742:9607089,35315090:186448 -(1,6742:9607089,35315090:0,452978,115847 -r1,6742:12779049,35315090:3171960,568825,115847 -k1,6742:9607089,35315090:-3171960 -) -(1,6742:9607089,35315090:3171960,452978,115847 -k1,6742:9607089,35315090:3277 -h1,6742:12775772,35315090:0,411205,112570 -) -k1,6742:12965497,35315090:186448 -k1,6742:15266793,35315090:186449 -k1,6742:16472326,35315090:186448 -k1,6742:19612482,35315090:186448 -k1,6742:20458222,35315090:186448 -k1,6742:21663756,35315090:186449 -k1,6742:22843730,35315090:186448 -k1,6742:25235465,35315090:186448 -k1,6742:26108075,35315090:186448 -k1,6742:27082922,35315090:186449 -k1,6742:29510701,35315090:186448 -k1,6742:32583029,35315090:0 -) -(1,6743:6630773,36156578:25952256,513147,134348 -k1,6742:7497541,36156578:180606 -k1,6742:10871061,36156578:180606 -k1,6742:14454297,36156578:180607 -k1,6742:15286331,36156578:180606 -k1,6742:16486022,36156578:180606 -k1,6742:19362124,36156578:180606 -k1,6742:21280746,36156578:180607 -k1,6742:23502798,36156578:180606 -k1,6742:25418797,36156578:180606 -k1,6742:27108042,36156578:180606 -k1,6742:29356965,36156578:180607 -k1,6742:30003532,36156578:180606 -k1,6743:32583029,36156578:0 -) -(1,6743:6630773,36998066:25952256,505283,134348 -(1,6742:6630773,36998066:0,452978,115847 -r1,6742:9099310,36998066:2468537,568825,115847 -k1,6742:6630773,36998066:-2468537 -) -(1,6742:6630773,36998066:2468537,452978,115847 -k1,6742:6630773,36998066:3277 -h1,6742:9096033,36998066:0,411205,112570 -) -k1,6742:9306803,36998066:207493 -k1,6742:11915535,36998066:207493 -k1,6742:15074114,36998066:207493 -k1,6742:18684236,36998066:207493 -k1,6742:19616557,36998066:207493 -k1,6742:20692402,36998066:207493 -k1,6742:22430161,36998066:207493 -k1,6742:23289082,36998066:207493 -k1,6742:25851284,36998066:207493 -k1,6742:27077862,36998066:207493 -k1,6742:29353671,36998066:207493 -k1,6742:31966991,36998066:207493 -k1,6743:32583029,36998066:0 -) -(1,6743:6630773,37839554:25952256,452978,115847 -(1,6742:6630773,37839554:0,452978,115847 -r1,6742:9099310,37839554:2468537,568825,115847 -k1,6742:6630773,37839554:-2468537 -) -(1,6742:6630773,37839554:2468537,452978,115847 -k1,6742:6630773,37839554:3277 -h1,6742:9096033,37839554:0,411205,112570 -) -k1,6743:32583028,37839554:23310048 -g1,6743:32583028,37839554 -) -v1,6745:6630773,39030020:0,393216,0 -(1,6780:6630773,45387380:25952256,6750576,196608 -g1,6780:6630773,45387380 -g1,6780:6630773,45387380 -g1,6780:6434165,45387380 -(1,6780:6434165,45387380:0,6750576,196608 -r1,6780:32779637,45387380:26345472,6947184,196608 -k1,6780:6434165,45387380:-26345472 -) -(1,6780:6434165,45387380:26345472,6750576,196608 -[1,6780:6630773,45387380:25952256,6553968,0 -(1,6747:6630773,39243930:25952256,410518,101187 -(1,6746:6630773,39243930:0,0,0 -g1,6746:6630773,39243930 -g1,6746:6630773,39243930 -g1,6746:6303093,39243930 -(1,6746:6303093,39243930:0,0,0 -) -g1,6746:6630773,39243930 -) -g1,6747:9159939,39243930 -g1,6747:10108377,39243930 -g1,6747:14218272,39243930 -g1,6747:14850564,39243930 -g1,6747:16747439,39243930 -g1,6747:17379731,39243930 -g1,6747:18012023,39243930 -g1,6747:19592752,39243930 -g1,6747:20225044,39243930 -g1,6747:23386501,39243930 -g1,6747:24334939,39243930 -h1,6747:25915667,39243930:0,0,0 -k1,6747:32583029,39243930:6667362 -g1,6747:32583029,39243930 -) -(1,6748:6630773,39910108:25952256,404226,76021 -h1,6748:6630773,39910108:0,0,0 -g1,6748:9159939,39910108 -g1,6748:10108377,39910108 -k1,6748:10108377,39910108:0 -h1,6748:12005251,39910108:0,0,0 -k1,6748:32583029,39910108:20577778 -g1,6748:32583029,39910108 -) -(1,6749:6630773,40576286:25952256,404226,107478 -h1,6749:6630773,40576286:0,0,0 -k1,6749:8829401,40576286:301754 -k1,6749:9763446,40576286:301753 -k1,6749:13542803,40576286:301754 -k1,6749:14160702,40576286:301753 -k1,6749:14778602,40576286:301754 -k1,6749:15396502,40576286:301754 -k1,6749:16330547,40576286:301753 -k1,6749:20109903,40576286:301754 -k1,6749:20727802,40576286:301753 -k1,6749:21345702,40576286:301754 -k1,6749:21963602,40576286:301754 -k1,6749:22581501,40576286:301753 -k1,6749:23199401,40576286:301754 -k1,6749:24133446,40576286:301753 -k1,6749:27280511,40576286:301754 -k1,6749:27898411,40576286:301754 -k1,6749:28516310,40576286:301753 -k1,6749:29134210,40576286:301754 -k1,6749:29752109,40576286:301753 -k1,6749:30370009,40576286:301754 -k1,6749:30370009,40576286:0 -h1,6749:32583029,40576286:0,0,0 -k1,6749:32583029,40576286:0 -k1,6749:32583029,40576286:0 -) -(1,6750:6630773,41242464:25952256,410518,76021 -h1,6750:6630773,41242464:0,0,0 -g1,6750:7895356,41242464 -g1,6750:8843793,41242464 -g1,6750:9792230,41242464 -g1,6750:14534415,41242464 -h1,6750:14850561,41242464:0,0,0 -k1,6750:32583029,41242464:17732468 -g1,6750:32583029,41242464 -) -(1,6751:6630773,41908642:25952256,404226,101187 -h1,6751:6630773,41908642:0,0,0 -g1,6751:6946919,41908642 -g1,6751:7263065,41908642 -g1,6751:7579211,41908642 -g1,6751:11689105,41908642 -g1,6751:12637543,41908642 -g1,6751:17695874,41908642 -g1,6751:19276603,41908642 -g1,6751:19908895,41908642 -h1,6751:22438060,41908642:0,0,0 -k1,6751:32583029,41908642:10144969 -g1,6751:32583029,41908642 -) -(1,6752:6630773,42574820:25952256,404226,76021 -h1,6752:6630773,42574820:0,0,0 -g1,6752:6946919,42574820 -g1,6752:7263065,42574820 -g1,6752:7579211,42574820 -h1,6752:7895357,42574820:0,0,0 -k1,6752:32583029,42574820:24687672 -g1,6752:32583029,42574820 -) -(1,6753:6630773,43240998:25952256,404226,82312 -h1,6753:6630773,43240998:0,0,0 -g1,6753:10740667,43240998 -g1,6753:13902124,43240998 -g1,6753:14534416,43240998 -h1,6753:15166708,43240998:0,0,0 -k1,6753:32583028,43240998:17416320 -g1,6753:32583028,43240998 -) -(1,6763:6630773,43972712:25952256,410518,9436 -(1,6755:6630773,43972712:0,0,0 -g1,6755:6630773,43972712 -g1,6755:6630773,43972712 -g1,6755:6303093,43972712 -(1,6755:6303093,43972712:0,0,0 -) -g1,6755:6630773,43972712 -) -g1,6763:7579210,43972712 -g1,6763:9159939,43972712 -g1,6763:10108376,43972712 -h1,6763:10424522,43972712:0,0,0 -k1,6763:32583030,43972712:22158508 -g1,6763:32583030,43972712 -) -(1,6763:6630773,44638890:25952256,410518,31456 -h1,6763:6630773,44638890:0,0,0 -g1,6763:7579210,44638890 -g1,6763:7895356,44638890 -g1,6763:8527648,44638890 -g1,6763:10740668,44638890 -g1,6763:11056814,44638890 -g1,6763:11372960,44638890 -g1,6763:11689106,44638890 -g1,6763:12005252,44638890 -g1,6763:13902126,44638890 -g1,6763:14850563,44638890 -h1,6763:15482854,44638890:0,0,0 -k1,6763:32583030,44638890:17100176 -g1,6763:32583030,44638890 -) -(1,6763:6630773,45305068:25952256,404226,82312 -h1,6763:6630773,45305068:0,0,0 -g1,6763:7579210,45305068 -g1,6763:7895356,45305068 -g1,6763:8211502,45305068 -g1,6763:9476085,45305068 -g1,6763:12005251,45305068 -g1,6763:15166708,45305068 -g1,6763:16431291,45305068 -h1,6763:17695874,45305068:0,0,0 -k1,6763:32583029,45305068:14887155 -g1,6763:32583029,45305068 -) -] -) -g1,6780:32583029,45387380 -g1,6780:6630773,45387380 -g1,6780:6630773,45387380 -g1,6780:32583029,45387380 -g1,6780:32583029,45387380 -) -] -(1,6780:32583029,45706769:0,0,0 -g1,6780:32583029,45706769 -) -) -] -(1,6780:6630773,47279633:25952256,0,0 -h1,6780:6630773,47279633:25952256,0,0 -) -] -h1,6780:4262630,4025873:0,0,0 -] -!27076 +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6786:37855564,49800853:1179648,16384,0 +) +) +k1,6786:3078556,49800853:-34777008 +) +] +g1,6786:6630773,4812305 +g1,6786:6630773,4812305 +g1,6786:8017514,4812305 +g1,6786:10787065,4812305 +g1,6786:12580785,4812305 +g1,6786:13396052,4812305 +g1,6786:15205501,4812305 +k1,6786:31387652,4812305:16182151 +) +) +] +[1,6786:6630773,45706769:25952256,40108032,0 +(1,6786:6630773,45706769:25952256,40108032,0 +(1,6786:6630773,45706769:0,0,0 +g1,6786:6630773,45706769 +) +[1,6786:6630773,45706769:25952256,40108032,0 +(1,6692:6630773,6254097:25952256,505283,134348 +k1,6691:10043590,6254097:166819 +k1,6691:11163958,6254097:166819 +k1,6691:13354528,6254097:166818 +k1,6691:13877207,6254097:166819 +k1,6691:16664155,6254097:166819 +k1,6691:18808851,6254097:166819 +k1,6691:20369621,6254097:166819 +k1,6691:22695196,6254097:166819 +k1,6691:25815722,6254097:166818 +k1,6691:27376492,6254097:166819 +k1,6691:29611627,6254097:166819 +k1,6691:32583029,6254097:0 +) +(1,6692:6630773,7095585:25952256,513147,7863 +g1,6691:7849087,7095585 +g1,6691:10743812,7095585 +k1,6692:32583029,7095585:19597230 +g1,6692:32583029,7095585 +) +v1,6694:6630773,8130500:0,393216,0 +(1,6708:6630773,13742514:25952256,6005230,196608 +g1,6708:6630773,13742514 +g1,6708:6630773,13742514 +g1,6708:6434165,13742514 +(1,6708:6434165,13742514:0,6005230,196608 +r1,6708:32779637,13742514:26345472,6201838,196608 +k1,6708:6434165,13742514:-26345472 +) +(1,6708:6434165,13742514:26345472,6005230,196608 +[1,6708:6630773,13742514:25952256,5808622,0 +(1,6696:6630773,8338118:25952256,404226,76021 +(1,6695:6630773,8338118:0,0,0 +g1,6695:6630773,8338118 +g1,6695:6630773,8338118 +g1,6695:6303093,8338118 +(1,6695:6303093,8338118:0,0,0 +) +g1,6695:6630773,8338118 +) +g1,6696:7263065,8338118 +g1,6696:8211503,8338118 +k1,6696:8211503,8338118:0 +h1,6696:11056814,8338118:0,0,0 +k1,6696:32583030,8338118:21526216 +g1,6696:32583030,8338118 +) +(1,6697:6630773,9004296:25952256,404226,76021 +h1,6697:6630773,9004296:0,0,0 +g1,6697:9159939,9004296 +g1,6697:10108377,9004296 +k1,6697:10108377,9004296:0 +h1,6697:12953688,9004296:0,0,0 +k1,6697:32583028,9004296:19629340 +g1,6697:32583028,9004296 +) +(1,6698:6630773,9670474:25952256,410518,82312 +h1,6698:6630773,9670474:0,0,0 +g1,6698:9792230,9670474 +g1,6698:10740668,9670474 +g1,6698:13902126,9670474 +g1,6698:16115146,9670474 +h1,6698:18012020,9670474:0,0,0 +k1,6698:32583029,9670474:14571009 +g1,6698:32583029,9670474 +) +(1,6699:6630773,10336652:25952256,410518,76021 +h1,6699:6630773,10336652:0,0,0 +g1,6699:7895356,10336652 +g1,6699:10424522,10336652 +g1,6699:11372959,10336652 +g1,6699:14850562,10336652 +h1,6699:15166708,10336652:0,0,0 +k1,6699:32583028,10336652:17416320 +g1,6699:32583028,10336652 +) +(1,6700:6630773,11002830:25952256,410518,82312 +h1,6700:6630773,11002830:0,0,0 +g1,6700:6946919,11002830 +g1,6700:7263065,11002830 +g1,6700:7579211,11002830 +g1,6700:13269834,11002830 +g1,6700:14218272,11002830 +g1,6700:19276604,11002830 +k1,6700:19276604,11002830:0 +h1,6700:21805770,11002830:0,0,0 +k1,6700:32583029,11002830:10777259 +g1,6700:32583029,11002830 +) +(1,6701:6630773,11669008:25952256,404226,76021 +h1,6701:6630773,11669008:0,0,0 +g1,6701:6946919,11669008 +g1,6701:7263065,11669008 +g1,6701:7579211,11669008 +h1,6701:7895357,11669008:0,0,0 +k1,6701:32583029,11669008:24687672 +g1,6701:32583029,11669008 +) +(1,6702:6630773,12335186:25952256,404226,6290 +h1,6702:6630773,12335186:0,0,0 +h1,6702:8843793,12335186:0,0,0 +k1,6702:32583029,12335186:23739236 +g1,6702:32583029,12335186 +) +(1,6707:6630773,13066900:25952256,404226,6290 +(1,6704:6630773,13066900:0,0,0 +g1,6704:6630773,13066900 +g1,6704:6630773,13066900 +g1,6704:6303093,13066900 +(1,6704:6303093,13066900:0,0,0 +) +g1,6704:6630773,13066900 +) +g1,6707:7579210,13066900 +g1,6707:7895356,13066900 +g1,6707:8211502,13066900 +g1,6707:8527648,13066900 +g1,6707:8843794,13066900 +g1,6707:9159940,13066900 +g1,6707:9476086,13066900 +g1,6707:11056815,13066900 +g1,6707:11372961,13066900 +g1,6707:11689107,13066900 +g1,6707:12005253,13066900 +g1,6707:12321399,13066900 +g1,6707:12637545,13066900 +g1,6707:12953691,13066900 +g1,6707:13269837,13066900 +g1,6707:14534420,13066900 +g1,6707:14850566,13066900 +g1,6707:15166712,13066900 +g1,6707:15482858,13066900 +g1,6707:15799004,13066900 +g1,6707:16115150,13066900 +g1,6707:16431296,13066900 +g1,6707:16747442,13066900 +h1,6707:17695879,13066900:0,0,0 +k1,6707:32583029,13066900:14887150 +g1,6707:32583029,13066900 +) +(1,6707:6630773,13733078:25952256,388497,9436 +h1,6707:6630773,13733078:0,0,0 +g1,6707:7579210,13733078 +g1,6707:7895356,13733078 +g1,6707:11056813,13733078 +g1,6707:11372959,13733078 +g1,6707:14534416,13733078 +k1,6707:14534416,13733078:0 +h1,6707:17695873,13733078:0,0,0 +k1,6707:32583029,13733078:14887156 +g1,6707:32583029,13733078 +) +] +) +g1,6708:32583029,13742514 +g1,6708:6630773,13742514 +g1,6708:6630773,13742514 +g1,6708:32583029,13742514 +g1,6708:32583029,13742514 +) +h1,6708:6630773,13939122:0,0,0 +(1,6712:6630773,15149348:25952256,513147,134348 +h1,6711:6630773,15149348:983040,0,0 +k1,6711:9559839,15149348:162791 +k1,6711:12937172,15149348:162792 +k1,6711:13455823,15149348:162791 +k1,6711:14518424,15149348:162792 +k1,6711:15297253,15149348:162791 +k1,6711:18368533,15149348:162792 +k1,6711:19147362,15149348:162791 +k1,6711:19666014,15149348:162792 +k1,6711:21417398,15149348:162791 +k1,6711:22448542,15149348:162792 +k1,6711:23912878,15149348:162791 +k1,6711:25094755,15149348:162792 +k1,6711:27934036,15149348:162791 +k1,6711:29381334,15149348:162792 +k1,6711:30412477,15149348:162791 +k1,6711:32583029,15149348:0 +) +(1,6712:6630773,15990836:25952256,513147,134348 +k1,6711:8945112,15990836:283378 +k1,6711:10247574,15990836:283377 +k1,6711:12966270,15990836:283378 +k1,6711:15317963,15990836:283377 +k1,6711:16260633,15990836:283378 +k1,6711:17563095,15990836:283377 +k1,6711:20872270,15990836:283378 +k1,6711:21841809,15990836:283377 +k1,6711:23673803,15990836:283378 +k1,6711:24488677,15990836:283377 +k1,6711:26810225,15990836:283378 +k1,6711:27709640,15990836:283377 +k1,6711:29012103,15990836:283378 +k1,6711:30289007,15990836:283378 +k1,6711:31563944,15990836:283377 +k1,6711:32583029,15990836:0 +) +(1,6712:6630773,16832324:25952256,513147,102891 +k1,6711:10284708,16832324:241475 +k1,6711:11185475,16832324:241475 +k1,6711:12446035,16832324:241475 +k1,6711:15886977,16832324:241474 +k1,6711:16756287,16832324:241475 +k1,6711:18201003,16832324:241475 +k1,6711:19983229,16832324:241475 +k1,6711:21093056,16832324:241475 +k1,6711:22438813,16832324:241475 +k1,6711:24115525,16832324:241474 +k1,6711:25376085,16832324:241475 +k1,6711:28313056,16832324:241475 +k1,6711:31966991,16832324:241475 +k1,6711:32583029,16832324:0 +) +(1,6712:6630773,17673812:25952256,513147,126483 +k1,6711:7787128,17673812:137270 +k1,6711:9339321,17673812:137271 +k1,6711:11987931,17673812:137270 +(1,6711:12195025,17673812:0,459977,115847 +r1,6711:12553291,17673812:358266,575824,115847 +k1,6711:12195025,17673812:-358266 +) +(1,6711:12195025,17673812:358266,459977,115847 +k1,6711:12195025,17673812:3277 +h1,6711:12550014,17673812:0,411205,112570 +) +k1,6711:12690561,17673812:137270 +k1,6711:13443870,17673812:137271 +k1,6711:14600225,17673812:137270 +k1,6711:16708164,17673812:137271 +k1,6711:18920959,17673812:137270 +k1,6711:20249674,17673812:137270 +k1,6711:21486639,17673812:137271 +k1,6711:22642994,17673812:137270 +k1,6711:25806061,17673812:137270 +k1,6711:26704860,17673812:137271 +k1,6711:27934615,17673812:137270 +k1,6711:28731178,17673812:137271 +k1,6711:29887533,17673812:137270 +k1,6711:32583029,17673812:0 +) +(1,6712:6630773,18515300:25952256,505283,126483 +g1,6711:7929696,18515300 +g1,6711:10818523,18515300 +(1,6711:11025617,18515300:0,459977,115847 +r1,6711:12087306,18515300:1061689,575824,115847 +k1,6711:11025617,18515300:-1061689 +) +(1,6711:11025617,18515300:1061689,459977,115847 +k1,6711:11025617,18515300:3277 +h1,6711:12084029,18515300:0,411205,112570 +) +g1,6711:12667299,18515300 +g1,6711:13820077,18515300 +g1,6711:16043058,18515300 +g1,6711:16598147,18515300 +g1,6711:19417505,18515300 +g1,6711:21594611,18515300 +g1,6711:23187791,18515300 +g1,6711:27087838,18515300 +k1,6712:32583029,18515300:2367813 +g1,6712:32583029,18515300 +) +v1,6714:6630773,19550215:0,393216,0 +(1,6726:6630773,23896458:25952256,4739459,196608 +g1,6726:6630773,23896458 +g1,6726:6630773,23896458 +g1,6726:6434165,23896458 +(1,6726:6434165,23896458:0,4739459,196608 +r1,6726:32779637,23896458:26345472,4936067,196608 +k1,6726:6434165,23896458:-26345472 +) +(1,6726:6434165,23896458:26345472,4739459,196608 +[1,6726:6630773,23896458:25952256,4542851,0 +(1,6716:6630773,19757833:25952256,404226,76021 +(1,6715:6630773,19757833:0,0,0 +g1,6715:6630773,19757833 +g1,6715:6630773,19757833 +g1,6715:6303093,19757833 +(1,6715:6303093,19757833:0,0,0 +) +g1,6715:6630773,19757833 +) +g1,6716:9159939,19757833 +g1,6716:10108377,19757833 +k1,6716:10108377,19757833:0 +h1,6716:12953688,19757833:0,0,0 +k1,6716:32583028,19757833:19629340 +g1,6716:32583028,19757833 +) +(1,6717:6630773,20424011:25952256,410518,82312 +h1,6717:6630773,20424011:0,0,0 +g1,6717:8211502,20424011 +g1,6717:9159940,20424011 +g1,6717:12637543,20424011 +g1,6717:14218272,20424011 +h1,6717:15482855,20424011:0,0,0 +k1,6717:32583029,20424011:17100174 +g1,6717:32583029,20424011 +) +(1,6718:6630773,21090189:25952256,410518,76021 +h1,6718:6630773,21090189:0,0,0 +g1,6718:7895356,21090189 +g1,6718:8843793,21090189 +g1,6718:9792230,21090189 +g1,6718:11689104,21090189 +h1,6718:12005250,21090189:0,0,0 +k1,6718:32583030,21090189:20577780 +g1,6718:32583030,21090189 +) +(1,6719:6630773,21756367:25952256,410518,82312 +h1,6719:6630773,21756367:0,0,0 +g1,6719:6946919,21756367 +g1,6719:7263065,21756367 +g1,6719:7579211,21756367 +g1,6719:10108377,21756367 +g1,6719:11056815,21756367 +g1,6719:14534418,21756367 +k1,6719:14534418,21756367:0 +h1,6719:16115147,21756367:0,0,0 +k1,6719:32583029,21756367:16467882 +g1,6719:32583029,21756367 +) +(1,6720:6630773,22422545:25952256,404226,76021 +h1,6720:6630773,22422545:0,0,0 +g1,6720:6946919,22422545 +g1,6720:7263065,22422545 +g1,6720:7579211,22422545 +h1,6720:7895357,22422545:0,0,0 +k1,6720:32583029,22422545:24687672 +g1,6720:32583029,22422545 +) +(1,6721:6630773,23088723:25952256,404226,6290 +h1,6721:6630773,23088723:0,0,0 +h1,6721:8843793,23088723:0,0,0 +k1,6721:32583029,23088723:23739236 +g1,6721:32583029,23088723 +) +(1,6725:6630773,23820437:25952256,404226,76021 +(1,6723:6630773,23820437:0,0,0 +g1,6723:6630773,23820437 +g1,6723:6630773,23820437 +g1,6723:6303093,23820437 +(1,6723:6303093,23820437:0,0,0 +) +g1,6723:6630773,23820437 +) +g1,6725:7579210,23820437 +g1,6725:8843793,23820437 +g1,6725:9159939,23820437 +g1,6725:12321396,23820437 +g1,6725:12637542,23820437 +g1,6725:15798999,23820437 +k1,6725:15798999,23820437:0 +h1,6725:18960456,23820437:0,0,0 +k1,6725:32583029,23820437:13622573 +g1,6725:32583029,23820437 +) +] +) +g1,6726:32583029,23896458 +g1,6726:6630773,23896458 +g1,6726:6630773,23896458 +g1,6726:32583029,23896458 +g1,6726:32583029,23896458 +) +h1,6726:6630773,24093066:0,0,0 +(1,6730:6630773,25303291:25952256,513147,134348 +h1,6729:6630773,25303291:983040,0,0 +k1,6729:8786908,25303291:219546 +k1,6729:10110735,25303291:219545 +k1,6729:11422766,25303291:219546 +k1,6729:11998171,25303291:219545 +k1,6729:14376473,25303291:219546 +k1,6729:15589544,25303291:219545 +k1,6729:16468382,25303291:219546 +k1,6729:19713724,25303291:219545 +k1,6729:20584698,25303291:219546 +k1,6729:22150353,25303291:219545 +k1,6729:23459763,25303291:219546 +k1,6729:25967170,25303291:219545 +k1,6729:26846008,25303291:219546 +k1,6729:28084638,25303291:219545 +k1,6729:30685107,25303291:219546 +k1,6729:31563944,25303291:219545 +k1,6729:32583029,25303291:0 +) +(1,6730:6630773,26144779:25952256,505283,134348 +k1,6729:9226177,26144779:248560 +k1,6729:10428286,26144779:248560 +k1,6729:12700598,26144779:248560 +k1,6729:13305018,26144779:248560 +k1,6729:16173707,26144779:248560 +k1,6729:18400145,26144779:248561 +k1,6729:20042656,26144779:248560 +k1,6729:22449972,26144779:248560 +k1,6729:25652240,26144779:248560 +k1,6729:27294751,26144779:248560 +k1,6729:29611627,26144779:248560 +k1,6729:32583029,26144779:0 +) +(1,6730:6630773,26986267:25952256,505283,134348 +g1,6729:7849087,26986267 +g1,6729:10116632,26986267 +g1,6729:12010622,26986267 +g1,6729:12861279,26986267 +g1,6729:14079593,26986267 +g1,6729:15272348,26986267 +k1,6730:32583029,26986267:14183303 +g1,6730:32583029,26986267 +) +v1,6732:6630773,28021182:0,393216,0 +(1,6745:6630773,32967018:25952256,5339052,196608 +g1,6745:6630773,32967018 +g1,6745:6630773,32967018 +g1,6745:6434165,32967018 +(1,6745:6434165,32967018:0,5339052,196608 +r1,6745:32779637,32967018:26345472,5535660,196608 +k1,6745:6434165,32967018:-26345472 +) +(1,6745:6434165,32967018:26345472,5339052,196608 +[1,6745:6630773,32967018:25952256,5142444,0 +(1,6734:6630773,28228800:25952256,404226,76021 +(1,6733:6630773,28228800:0,0,0 +g1,6733:6630773,28228800 +g1,6733:6630773,28228800 +g1,6733:6303093,28228800 +(1,6733:6303093,28228800:0,0,0 +) +g1,6733:6630773,28228800 +) +g1,6734:9159939,28228800 +g1,6734:10108377,28228800 +k1,6734:10108377,28228800:0 +h1,6734:12953688,28228800:0,0,0 +k1,6734:32583028,28228800:19629340 +g1,6734:32583028,28228800 +) +(1,6735:6630773,28894978:25952256,410518,107478 +h1,6735:6630773,28894978:0,0,0 +g1,6735:8211502,28894978 +g1,6735:9159940,28894978 +g1,6735:13269835,28894978 +g1,6735:13902127,28894978 +g1,6735:15799002,28894978 +g1,6735:18328168,28894978 +g1,6735:18960460,28894978 +g1,6735:20541189,28894978 +g1,6735:23070355,28894978 +g1,6735:23702647,28894978 +h1,6735:24967230,28894978:0,0,0 +k1,6735:32583029,28894978:7615799 +g1,6735:32583029,28894978 +) +(1,6736:6630773,29561156:25952256,410518,76021 +h1,6736:6630773,29561156:0,0,0 +g1,6736:7895356,29561156 +g1,6736:8843793,29561156 +g1,6736:9792230,29561156 +g1,6736:13902124,29561156 +h1,6736:14218270,29561156:0,0,0 +k1,6736:32583030,29561156:18364760 +g1,6736:32583030,29561156 +) +(1,6737:6630773,30227334:25952256,410518,76021 +h1,6737:6630773,30227334:0,0,0 +g1,6737:6946919,30227334 +g1,6737:7263065,30227334 +g1,6737:7579211,30227334 +g1,6737:11689105,30227334 +g1,6737:12637543,30227334 +h1,6737:16431291,30227334:0,0,0 +k1,6737:32583029,30227334:16151738 +g1,6737:32583029,30227334 +) +(1,6738:6630773,30893512:25952256,404226,76021 +h1,6738:6630773,30893512:0,0,0 +g1,6738:6946919,30893512 +g1,6738:7263065,30893512 +g1,6738:7579211,30893512 +h1,6738:7895357,30893512:0,0,0 +k1,6738:32583029,30893512:24687672 +g1,6738:32583029,30893512 +) +(1,6739:6630773,31559690:25952256,404226,6290 +h1,6739:6630773,31559690:0,0,0 +h1,6739:8843793,31559690:0,0,0 +k1,6739:32583029,31559690:23739236 +g1,6739:32583029,31559690 +) +(1,6744:6630773,32291404:25952256,404226,107478 +(1,6741:6630773,32291404:0,0,0 +g1,6741:6630773,32291404 +g1,6741:6630773,32291404 +g1,6741:6303093,32291404 +(1,6741:6303093,32291404:0,0,0 +) +g1,6741:6630773,32291404 +) +g1,6744:7579210,32291404 +g1,6744:7895356,32291404 +g1,6744:8211502,32291404 +g1,6744:8527648,32291404 +g1,6744:11056814,32291404 +g1,6744:11372960,32291404 +g1,6744:11689106,32291404 +g1,6744:12005252,32291404 +g1,6744:14534418,32291404 +g1,6744:14850564,32291404 +g1,6744:15166710,32291404 +g1,6744:15482856,32291404 +h1,6744:17695876,32291404:0,0,0 +k1,6744:32583029,32291404:14887153 +g1,6744:32583029,32291404 +) +(1,6744:6630773,32957582:25952256,388497,9436 +h1,6744:6630773,32957582:0,0,0 +g1,6744:7579210,32957582 +g1,6744:7895356,32957582 +g1,6744:11056813,32957582 +g1,6744:11372959,32957582 +g1,6744:14534416,32957582 +k1,6744:14534416,32957582:0 +h1,6744:17695873,32957582:0,0,0 +k1,6744:32583029,32957582:14887156 +g1,6744:32583029,32957582 +) +] +) +g1,6745:32583029,32967018 +g1,6745:6630773,32967018 +g1,6745:6630773,32967018 +g1,6745:32583029,32967018 +g1,6745:32583029,32967018 +) +h1,6745:6630773,33163626:0,0,0 +(1,6749:6630773,34373852:25952256,513147,134348 +h1,6748:6630773,34373852:983040,0,0 +k1,6748:9239499,34373852:164233 +k1,6748:9935229,34373852:164233 +k1,6748:10870166,34373852:164234 +k1,6748:13695816,34373852:164233 +k1,6748:15595442,34373852:164233 +k1,6748:17747382,34373852:164233 +k1,6748:20959039,34373852:164233 +k1,6748:22076822,34373852:164234 +k1,6748:23333540,34373852:164233 +k1,6748:23853633,34373852:164233 +k1,6748:25432788,34373852:164233 +k1,6748:26248449,34373852:164233 +k1,6748:27100156,34373852:164234 +k1,6748:28919173,34373852:164233 +k1,6748:31575085,34373852:164233 +k1,6749:32583029,34373852:0 +) +(1,6749:6630773,35215340:25952256,513147,134348 +k1,6748:9035084,35215340:185262 +k1,6748:9576206,35215340:185262 +k1,6748:10754994,35215340:185262 +k1,6748:11599548,35215340:185262 +k1,6748:13497266,35215340:185262 +k1,6748:16174207,35215340:185262 +k1,6748:17313018,35215340:185262 +k1,6748:19668831,35215340:185261 +k1,6748:21291298,35215340:185262 +k1,6748:22127988,35215340:185262 +(1,6748:22127988,35215340:0,452978,115847 +r1,6748:24596525,35215340:2468537,568825,115847 +k1,6748:22127988,35215340:-2468537 +) +(1,6748:22127988,35215340:2468537,452978,115847 +k1,6748:22127988,35215340:3277 +h1,6748:24593248,35215340:0,411205,112570 +) +k1,6748:24781787,35215340:185262 +k1,6748:26170290,35215340:185262 +k1,6748:27349078,35215340:185262 +k1,6748:28193632,35215340:185262 +k1,6748:30091350,35215340:185262 +k1,6748:32583029,35215340:0 +) +(1,6749:6630773,36056828:25952256,513147,134348 +k1,6748:7562289,36056828:245354 +k1,6748:8265740,36056828:245354 +k1,6748:10912333,36056828:245354 +k1,6748:12609309,36056828:245354 +k1,6748:14567119,36056828:245354 +k1,6748:16800180,36056828:245354 +k1,6748:17731697,36056828:245355 +k1,6748:18332911,36056828:245354 +k1,6748:21280970,36056828:245354 +k1,6748:24477410,36056828:245354 +k1,6748:27795092,36056828:245354 +k1,6748:28691874,36056828:245354 +k1,6748:29725626,36056828:245354 +(1,6748:29725626,36056828:0,414482,115847 +r1,6748:30083892,36056828:358266,530329,115847 +k1,6748:29725626,36056828:-358266 +) +(1,6748:29725626,36056828:358266,414482,115847 +k1,6748:29725626,36056828:3277 +h1,6748:30080615,36056828:0,411205,112570 +) +k1,6748:30329246,36056828:245354 +k1,6749:32583029,36056828:0 +) +(1,6749:6630773,36898316:25952256,513147,134348 +k1,6748:8322492,36898316:278107 +k1,6748:9554147,36898316:278106 +k1,6748:10936536,36898316:278107 +k1,6748:12193095,36898316:278106 +k1,6748:14760375,36898316:278107 +k1,6748:16241722,36898316:278106 +k1,6748:19196319,36898316:278107 +k1,6748:21209818,36898316:278106 +k1,6748:24183421,36898316:278107 +(1,6748:24183421,36898316:0,452978,115847 +r1,6748:27355381,36898316:3171960,568825,115847 +k1,6748:24183421,36898316:-3171960 +) +(1,6748:24183421,36898316:3171960,452978,115847 +k1,6748:24183421,36898316:3277 +h1,6748:27352104,36898316:0,411205,112570 +) +k1,6748:27633487,36898316:278106 +k1,6748:28563022,36898316:278107 +k1,6748:29940822,36898316:278106 +(1,6748:29940822,36898316:0,452978,115847 +r1,6748:32409359,36898316:2468537,568825,115847 +k1,6748:29940822,36898316:-2468537 +) +(1,6748:29940822,36898316:2468537,452978,115847 +k1,6748:29940822,36898316:3277 +h1,6748:32406082,36898316:0,411205,112570 +) +k1,6748:32583029,36898316:0 +) +(1,6749:6630773,37739804:25952256,513147,134348 +k1,6748:9607089,37739804:186448 +(1,6748:9607089,37739804:0,452978,115847 +r1,6748:12779049,37739804:3171960,568825,115847 +k1,6748:9607089,37739804:-3171960 +) +(1,6748:9607089,37739804:3171960,452978,115847 +k1,6748:9607089,37739804:3277 +h1,6748:12775772,37739804:0,411205,112570 +) +k1,6748:12965497,37739804:186448 +k1,6748:15266793,37739804:186449 +k1,6748:16472326,37739804:186448 +k1,6748:19612482,37739804:186448 +k1,6748:20458222,37739804:186448 +k1,6748:21663756,37739804:186449 +k1,6748:22843730,37739804:186448 +k1,6748:25235465,37739804:186448 +k1,6748:26108075,37739804:186448 +k1,6748:27082922,37739804:186449 +k1,6748:29510701,37739804:186448 +k1,6748:32583029,37739804:0 +) +(1,6749:6630773,38581292:25952256,513147,134348 +k1,6748:7497541,38581292:180606 +k1,6748:10871061,38581292:180606 +k1,6748:14454297,38581292:180607 +k1,6748:15286331,38581292:180606 +k1,6748:16486022,38581292:180606 +k1,6748:19362124,38581292:180606 +k1,6748:21280746,38581292:180607 +k1,6748:23502798,38581292:180606 +k1,6748:25418797,38581292:180606 +k1,6748:27108042,38581292:180606 +k1,6748:29356965,38581292:180607 +k1,6748:30003532,38581292:180606 +k1,6749:32583029,38581292:0 +) +(1,6749:6630773,39422780:25952256,505283,134348 +(1,6748:6630773,39422780:0,452978,115847 +r1,6748:9099310,39422780:2468537,568825,115847 +k1,6748:6630773,39422780:-2468537 +) +(1,6748:6630773,39422780:2468537,452978,115847 +k1,6748:6630773,39422780:3277 +h1,6748:9096033,39422780:0,411205,112570 +) +k1,6748:9306803,39422780:207493 +k1,6748:11915535,39422780:207493 +k1,6748:15074114,39422780:207493 +k1,6748:18684236,39422780:207493 +k1,6748:19616557,39422780:207493 +k1,6748:20692402,39422780:207493 +k1,6748:22430161,39422780:207493 +k1,6748:23289082,39422780:207493 +k1,6748:25851284,39422780:207493 +k1,6748:27077862,39422780:207493 +k1,6748:29353671,39422780:207493 +k1,6748:31966991,39422780:207493 +k1,6749:32583029,39422780:0 +) +(1,6749:6630773,40264268:25952256,452978,115847 +(1,6748:6630773,40264268:0,452978,115847 +r1,6748:9099310,40264268:2468537,568825,115847 +k1,6748:6630773,40264268:-2468537 +) +(1,6748:6630773,40264268:2468537,452978,115847 +k1,6748:6630773,40264268:3277 +h1,6748:9096033,40264268:0,411205,112570 +) +k1,6749:32583028,40264268:23310048 +g1,6749:32583028,40264268 +) +v1,6751:6630773,41299183:0,393216,0 +(1,6786:6630773,45510161:25952256,4604194,196608 +g1,6786:6630773,45510161 +g1,6786:6630773,45510161 +g1,6786:6434165,45510161 +(1,6786:6434165,45510161:0,4604194,196608 +r1,6786:32779637,45510161:26345472,4800802,196608 +k1,6786:6434165,45510161:-26345472 +) +(1,6786:6434165,45510161:26345472,4604194,196608 +[1,6786:6630773,45510161:25952256,4407586,0 +(1,6753:6630773,41513093:25952256,410518,101187 +(1,6752:6630773,41513093:0,0,0 +g1,6752:6630773,41513093 +g1,6752:6630773,41513093 +g1,6752:6303093,41513093 +(1,6752:6303093,41513093:0,0,0 +) +g1,6752:6630773,41513093 +) +g1,6753:9159939,41513093 +g1,6753:10108377,41513093 +g1,6753:14218272,41513093 +g1,6753:14850564,41513093 +g1,6753:16747439,41513093 +g1,6753:17379731,41513093 +g1,6753:18012023,41513093 +g1,6753:19592752,41513093 +g1,6753:20225044,41513093 +g1,6753:23386501,41513093 +g1,6753:24334939,41513093 +h1,6753:25915667,41513093:0,0,0 +k1,6753:32583029,41513093:6667362 +g1,6753:32583029,41513093 +) +(1,6754:6630773,42179271:25952256,404226,76021 +h1,6754:6630773,42179271:0,0,0 +g1,6754:9159939,42179271 +g1,6754:10108377,42179271 +k1,6754:10108377,42179271:0 +h1,6754:12005251,42179271:0,0,0 +k1,6754:32583029,42179271:20577778 +g1,6754:32583029,42179271 +) +(1,6755:6630773,42845449:25952256,404226,107478 +h1,6755:6630773,42845449:0,0,0 +k1,6755:8829401,42845449:301754 +k1,6755:9763446,42845449:301753 +k1,6755:13542803,42845449:301754 +k1,6755:14160702,42845449:301753 +k1,6755:14778602,42845449:301754 +k1,6755:15396502,42845449:301754 +k1,6755:16330547,42845449:301753 +k1,6755:20109903,42845449:301754 +k1,6755:20727802,42845449:301753 +k1,6755:21345702,42845449:301754 +k1,6755:21963602,42845449:301754 +k1,6755:22581501,42845449:301753 +k1,6755:23199401,42845449:301754 +k1,6755:24133446,42845449:301753 +k1,6755:27280511,42845449:301754 +k1,6755:27898411,42845449:301754 +k1,6755:28516310,42845449:301753 +k1,6755:29134210,42845449:301754 +k1,6755:29752109,42845449:301753 +k1,6755:30370009,42845449:301754 +k1,6755:30370009,42845449:0 +h1,6755:32583029,42845449:0,0,0 +k1,6755:32583029,42845449:0 +k1,6755:32583029,42845449:0 +) +(1,6756:6630773,43511627:25952256,410518,76021 +h1,6756:6630773,43511627:0,0,0 +g1,6756:7895356,43511627 +g1,6756:8843793,43511627 +g1,6756:9792230,43511627 +g1,6756:14534415,43511627 +h1,6756:14850561,43511627:0,0,0 +k1,6756:32583029,43511627:17732468 +g1,6756:32583029,43511627 +) +(1,6757:6630773,44177805:25952256,404226,101187 +h1,6757:6630773,44177805:0,0,0 +g1,6757:6946919,44177805 +g1,6757:7263065,44177805 +g1,6757:7579211,44177805 +g1,6757:11689105,44177805 +g1,6757:12637543,44177805 +g1,6757:17695874,44177805 +g1,6757:19276603,44177805 +g1,6757:19908895,44177805 +h1,6757:22438060,44177805:0,0,0 +k1,6757:32583029,44177805:10144969 +g1,6757:32583029,44177805 +) +(1,6758:6630773,44843983:25952256,404226,76021 +h1,6758:6630773,44843983:0,0,0 +g1,6758:6946919,44843983 +g1,6758:7263065,44843983 +g1,6758:7579211,44843983 +h1,6758:7895357,44843983:0,0,0 +k1,6758:32583029,44843983:24687672 +g1,6758:32583029,44843983 +) +(1,6759:6630773,45510161:25952256,404226,82312 +h1,6759:6630773,45510161:0,0,0 +g1,6759:10740667,45510161 +g1,6759:13902124,45510161 +g1,6759:14534416,45510161 +h1,6759:15166708,45510161:0,0,0 +k1,6759:32583028,45510161:17416320 +g1,6759:32583028,45510161 +) +] +) +g1,6786:32583029,45510161 +g1,6786:6630773,45510161 +g1,6786:6630773,45510161 +g1,6786:32583029,45510161 +g1,6786:32583029,45510161 +) +] +(1,6786:32583029,45706769:0,0,0 +g1,6786:32583029,45706769 +) +) +] +(1,6786:6630773,47279633:25952256,0,0 +h1,6786:6630773,47279633:25952256,0,0 +) +] +h1,6786:4262630,4025873:0,0,0 +] +!27177 }126 -Input:954:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!97 +Input:950:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!103 {127 -[1,6830:4262630,47279633:28320399,43253760,0 -(1,6830:4262630,4025873:0,0,0 -[1,6830:-473657,4025873:25952256,0,0 -(1,6830:-473657,-710414:25952256,0,0 -h1,6830:-473657,-710414:0,0,0 -(1,6830:-473657,-710414:0,0,0 -(1,6830:-473657,-710414:0,0,0 -g1,6830:-473657,-710414 -(1,6830:-473657,-710414:65781,0,65781 -g1,6830:-407876,-710414 -[1,6830:-407876,-644633:0,0,0 +[1,6836:4262630,47279633:28320399,43253760,0 +(1,6836:4262630,4025873:0,0,0 +[1,6836:-473657,4025873:25952256,0,0 +(1,6836:-473657,-710414:25952256,0,0 +h1,6836:-473657,-710414:0,0,0 +(1,6836:-473657,-710414:0,0,0 +(1,6836:-473657,-710414:0,0,0 +g1,6836:-473657,-710414 +(1,6836:-473657,-710414:65781,0,65781 +g1,6836:-407876,-710414 +[1,6836:-407876,-644633:0,0,0 ] ) -k1,6830:-473657,-710414:-65781 +k1,6836:-473657,-710414:-65781 ) ) -k1,6830:25478599,-710414:25952256 -g1,6830:25478599,-710414 +k1,6836:25478599,-710414:25952256 +g1,6836:25478599,-710414 ) ] ) -[1,6830:6630773,47279633:25952256,43253760,0 -[1,6830:6630773,4812305:25952256,786432,0 -(1,6830:6630773,4812305:25952256,505283,134348 -(1,6830:6630773,4812305:25952256,505283,134348 -g1,6830:3078558,4812305 -[1,6830:3078558,4812305:0,0,0 -(1,6830:3078558,2439708:0,1703936,0 -k1,6830:1358238,2439708:-1720320 -(1,5277:1358238,2439708:1720320,1703936,0 -(1,5277:1358238,2439708:1179648,16384,0 -r1,6830:2537886,2439708:1179648,16384,0 +[1,6836:6630773,47279633:25952256,43253760,0 +[1,6836:6630773,4812305:25952256,786432,0 +(1,6836:6630773,4812305:25952256,505283,134348 +(1,6836:6630773,4812305:25952256,505283,134348 +g1,6836:3078558,4812305 +[1,6836:3078558,4812305:0,0,0 +(1,6836:3078558,2439708:0,1703936,0 +k1,6836:1358238,2439708:-1720320 +(1,5283:1358238,2439708:1720320,1703936,0 +(1,5283:1358238,2439708:1179648,16384,0 +r1,6836:2537886,2439708:1179648,16384,0 ) -g1,5277:3062174,2439708 -(1,5277:3062174,2439708:16384,1703936,0 -[1,5277:3062174,2439708:25952256,1703936,0 -(1,5277:3062174,1915420:25952256,1179648,0 -(1,5277:3062174,1915420:16384,1179648,0 -r1,6830:3078558,1915420:16384,1179648,0 +g1,5283:3062174,2439708 +(1,5283:3062174,2439708:16384,1703936,0 +[1,5283:3062174,2439708:25952256,1703936,0 +(1,5283:3062174,1915420:25952256,1179648,0 +(1,5283:3062174,1915420:16384,1179648,0 +r1,6836:3078558,1915420:16384,1179648,0 ) -k1,5277:29014430,1915420:25935872 -g1,5277:29014430,1915420 +k1,5283:29014430,1915420:25935872 +g1,5283:29014430,1915420 ) ] ) ) ) ] -[1,6830:3078558,4812305:0,0,0 -(1,6830:3078558,2439708:0,1703936,0 -g1,6830:29030814,2439708 -g1,6830:36135244,2439708 -(1,5277:36135244,2439708:1720320,1703936,0 -(1,5277:36135244,2439708:16384,1703936,0 -[1,5277:36135244,2439708:25952256,1703936,0 -(1,5277:36135244,1915420:25952256,1179648,0 -(1,5277:36135244,1915420:16384,1179648,0 -r1,6830:36151628,1915420:16384,1179648,0 +[1,6836:3078558,4812305:0,0,0 +(1,6836:3078558,2439708:0,1703936,0 +g1,6836:29030814,2439708 +g1,6836:36135244,2439708 +(1,5283:36135244,2439708:1720320,1703936,0 +(1,5283:36135244,2439708:16384,1703936,0 +[1,5283:36135244,2439708:25952256,1703936,0 +(1,5283:36135244,1915420:25952256,1179648,0 +(1,5283:36135244,1915420:16384,1179648,0 +r1,6836:36151628,1915420:16384,1179648,0 ) -k1,5277:62087500,1915420:25935872 -g1,5277:62087500,1915420 +k1,5283:62087500,1915420:25935872 +g1,5283:62087500,1915420 ) ] ) -g1,5277:36675916,2439708 -(1,5277:36675916,2439708:1179648,16384,0 -r1,6830:37855564,2439708:1179648,16384,0 +g1,5283:36675916,2439708 +(1,5283:36675916,2439708:1179648,16384,0 +r1,6836:37855564,2439708:1179648,16384,0 ) ) -k1,6830:3078556,2439708:-34777008 +k1,6836:3078556,2439708:-34777008 ) ] -[1,6830:3078558,4812305:0,0,0 -(1,6830:3078558,49800853:0,16384,2228224 -k1,6830:1358238,49800853:-1720320 -(1,5277:1358238,49800853:1720320,16384,2228224 -(1,5277:1358238,49800853:1179648,16384,0 -r1,6830:2537886,49800853:1179648,16384,0 +[1,6836:3078558,4812305:0,0,0 +(1,6836:3078558,49800853:0,16384,2228224 +k1,6836:1358238,49800853:-1720320 +(1,5283:1358238,49800853:1720320,16384,2228224 +(1,5283:1358238,49800853:1179648,16384,0 +r1,6836:2537886,49800853:1179648,16384,0 ) -g1,5277:3062174,49800853 -(1,5277:3062174,52029077:16384,1703936,0 -[1,5277:3062174,52029077:25952256,1703936,0 -(1,5277:3062174,51504789:25952256,1179648,0 -(1,5277:3062174,51504789:16384,1179648,0 -r1,6830:3078558,51504789:16384,1179648,0 +g1,5283:3062174,49800853 +(1,5283:3062174,52029077:16384,1703936,0 +[1,5283:3062174,52029077:25952256,1703936,0 +(1,5283:3062174,51504789:25952256,1179648,0 +(1,5283:3062174,51504789:16384,1179648,0 +r1,6836:3078558,51504789:16384,1179648,0 ) -k1,5277:29014430,51504789:25935872 -g1,5277:29014430,51504789 +k1,5283:29014430,51504789:25935872 +g1,5283:29014430,51504789 ) ] ) ) ) ] -[1,6830:3078558,4812305:0,0,0 -(1,6830:3078558,49800853:0,16384,2228224 -g1,6830:29030814,49800853 -g1,6830:36135244,49800853 -(1,5277:36135244,49800853:1720320,16384,2228224 -(1,5277:36135244,52029077:16384,1703936,0 -[1,5277:36135244,52029077:25952256,1703936,0 -(1,5277:36135244,51504789:25952256,1179648,0 -(1,5277:36135244,51504789:16384,1179648,0 -r1,6830:36151628,51504789:16384,1179648,0 -) -k1,5277:62087500,51504789:25935872 -g1,5277:62087500,51504789 -) -] +[1,6836:3078558,4812305:0,0,0 +(1,6836:3078558,49800853:0,16384,2228224 +g1,6836:29030814,49800853 +g1,6836:36135244,49800853 +(1,5283:36135244,49800853:1720320,16384,2228224 +(1,5283:36135244,52029077:16384,1703936,0 +[1,5283:36135244,52029077:25952256,1703936,0 +(1,5283:36135244,51504789:25952256,1179648,0 +(1,5283:36135244,51504789:16384,1179648,0 +r1,6836:36151628,51504789:16384,1179648,0 +) +k1,5283:62087500,51504789:25935872 +g1,5283:62087500,51504789 ) -g1,5277:36675916,49800853 -(1,5277:36675916,49800853:1179648,16384,0 -r1,6830:37855564,49800853:1179648,16384,0 -) -) -k1,6830:3078556,49800853:-34777008 -) -] -g1,6830:6630773,4812305 -k1,6830:18752969,4812305:10926819 -g1,6830:20139710,4812305 -g1,6830:20788516,4812305 -g1,6830:24102671,4812305 -g1,6830:28605649,4812305 -g1,6830:30015328,4812305 -) -) -] -[1,6830:6630773,45706769:25952256,40108032,0 -(1,6830:6630773,45706769:25952256,40108032,0 -(1,6830:6630773,45706769:0,0,0 -g1,6830:6630773,45706769 -) -[1,6830:6630773,45706769:25952256,40108032,0 -v1,6780:6630773,6254097:0,393216,0 -(1,6780:6630773,17289051:25952256,11428170,196608 -g1,6780:6630773,17289051 -g1,6780:6630773,17289051 -g1,6780:6434165,17289051 -(1,6780:6434165,17289051:0,11428170,196608 -r1,6780:32779637,17289051:26345472,11624778,196608 -k1,6780:6434165,17289051:-26345472 -) -(1,6780:6434165,17289051:26345472,11428170,196608 -[1,6780:6630773,17289051:25952256,11231562,0 -(1,6763:6630773,6468007:25952256,410518,107478 -h1,6763:6630773,6468007:0,0,0 -g1,6763:7579210,6468007 -g1,6763:7895356,6468007 -g1,6763:8527648,6468007 -g1,6763:13902125,6468007 -g1,6763:14850562,6468007 -h1,6763:15482853,6468007:0,0,0 -k1,6763:32583029,6468007:17100176 -g1,6763:32583029,6468007 -) -(1,6763:6630773,7134185:25952256,404226,82312 -h1,6763:6630773,7134185:0,0,0 -g1,6763:7579210,7134185 -g1,6763:7895356,7134185 -g1,6763:8211502,7134185 -g1,6763:9476085,7134185 -g1,6763:12005251,7134185 -g1,6763:15166708,7134185 -g1,6763:16431291,7134185 -h1,6763:17695874,7134185:0,0,0 -k1,6763:32583029,7134185:14887155 -g1,6763:32583029,7134185 -) -(1,6763:6630773,7800363:25952256,410518,101187 -h1,6763:6630773,7800363:0,0,0 -g1,6763:7579210,7800363 -g1,6763:7895356,7800363 -g1,6763:8527648,7800363 -g1,6763:11689105,7800363 -g1,6763:12005251,7800363 -g1,6763:13902125,7800363 -g1,6763:14850562,7800363 -h1,6763:15482853,7800363:0,0,0 -k1,6763:32583029,7800363:17100176 -g1,6763:32583029,7800363 -) -(1,6763:6630773,8466541:25952256,404226,82312 -h1,6763:6630773,8466541:0,0,0 -g1,6763:7579210,8466541 -g1,6763:7895356,8466541 -g1,6763:8211502,8466541 -g1,6763:9476085,8466541 -g1,6763:12005251,8466541 -g1,6763:15166708,8466541 -g1,6763:16431291,8466541 -h1,6763:17695874,8466541:0,0,0 -k1,6763:32583029,8466541:14887155 -g1,6763:32583029,8466541 -) -(1,6765:6630773,9788079:25952256,404226,82312 -(1,6764:6630773,9788079:0,0,0 -g1,6764:6630773,9788079 -g1,6764:6630773,9788079 -g1,6764:6303093,9788079 -(1,6764:6303093,9788079:0,0,0 -) -g1,6764:6630773,9788079 -) -k1,6765:6630773,9788079:0 -g1,6765:11372959,9788079 -k1,6765:11372959,9788079:0 -h1,6765:16431290,9788079:0,0,0 -k1,6765:32583029,9788079:16151739 -g1,6765:32583029,9788079 -) -(1,6779:6630773,10519793:25952256,410518,101187 -(1,6767:6630773,10519793:0,0,0 -g1,6767:6630773,10519793 -g1,6767:6630773,10519793 -g1,6767:6303093,10519793 -(1,6767:6303093,10519793:0,0,0 -) -g1,6767:6630773,10519793 -) -g1,6779:7579210,10519793 -g1,6779:10424521,10519793 -g1,6779:11372958,10519793 -g1,6779:14218269,10519793 -h1,6779:15798997,10519793:0,0,0 -k1,6779:32583029,10519793:16784032 -g1,6779:32583029,10519793 -) -(1,6779:6630773,11185971:25952256,379060,0 -h1,6779:6630773,11185971:0,0,0 -h1,6779:7263064,11185971:0,0,0 -k1,6779:32583028,11185971:25319964 -g1,6779:32583028,11185971 -) -(1,6779:6630773,11852149:25952256,404226,101187 -h1,6779:6630773,11852149:0,0,0 -g1,6779:7579210,11852149 -g1,6779:9476084,11852149 -g1,6779:10424521,11852149 -g1,6779:11056813,11852149 -g1,6779:11689105,11852149 -h1,6779:12005251,11852149:0,0,0 -k1,6779:32583029,11852149:20577778 -g1,6779:32583029,11852149 -) -(1,6779:6630773,12518327:25952256,404226,101187 -h1,6779:6630773,12518327:0,0,0 -g1,6779:7579210,12518327 -g1,6779:9476084,12518327 -g1,6779:10424521,12518327 -g1,6779:11056813,12518327 -g1,6779:11689105,12518327 -g1,6779:12321397,12518327 -g1,6779:12953689,12518327 -h1,6779:13269835,12518327:0,0,0 -k1,6779:32583029,12518327:19313194 -g1,6779:32583029,12518327 -) -(1,6779:6630773,13184505:25952256,404226,101187 -h1,6779:6630773,13184505:0,0,0 -g1,6779:7579210,13184505 -g1,6779:9476084,13184505 -g1,6779:10424521,13184505 -g1,6779:11056813,13184505 -g1,6779:11689105,13184505 -g1,6779:12321397,13184505 -g1,6779:12953689,13184505 -h1,6779:14850563,13184505:0,0,0 -k1,6779:32583029,13184505:17732466 -g1,6779:32583029,13184505 -) -(1,6779:6630773,13850683:25952256,410518,101187 -h1,6779:6630773,13850683:0,0,0 -g1,6779:7579210,13850683 -g1,6779:7895356,13850683 -g1,6779:8211502,13850683 -g1,6779:10424522,13850683 -g1,6779:10740668,13850683 -g1,6779:11056814,13850683 -g1,6779:11372960,13850683 -g1,6779:11689106,13850683 -g1,6779:12953689,13850683 -g1,6779:13902126,13850683 -g1,6779:15166709,13850683 -g1,6779:16115146,13850683 -g1,6779:17063583,13850683 -g1,6779:17379729,13850683 -g1,6779:17695875,13850683 -g1,6779:18012021,13850683 -g1,6779:18328167,13850683 -g1,6779:18644313,13850683 -g1,6779:19276605,13850683 -g1,6779:19592751,13850683 -g1,6779:19908897,13850683 -g1,6779:20225043,13850683 -k1,6779:20225043,13850683:0 -h1,6779:22121917,13850683:0,0,0 -k1,6779:32583029,13850683:10461112 -g1,6779:32583029,13850683 -) -(1,6779:6630773,14516861:25952256,388497,9436 -h1,6779:6630773,14516861:0,0,0 -g1,6779:7579210,14516861 -g1,6779:8211502,14516861 -g1,6779:8527648,14516861 -g1,6779:8843794,14516861 -g1,6779:9159940,14516861 -g1,6779:9476086,14516861 -g1,6779:9792232,14516861 -g1,6779:10424524,14516861 -h1,6779:12637544,14516861:0,0,0 -k1,6779:32583028,14516861:19945484 -g1,6779:32583028,14516861 -) -(1,6779:6630773,15183039:25952256,388497,9436 -h1,6779:6630773,15183039:0,0,0 -g1,6779:7579210,15183039 -g1,6779:8211502,15183039 -g1,6779:8527648,15183039 -g1,6779:8843794,15183039 -g1,6779:9159940,15183039 -g1,6779:9476086,15183039 -g1,6779:9792232,15183039 -g1,6779:10424524,15183039 -g1,6779:12953690,15183039 -g1,6779:13902127,15183039 -g1,6779:14218273,15183039 -g1,6779:14534419,15183039 -g1,6779:17063585,15183039 -g1,6779:19276605,15183039 -g1,6779:22438062,15183039 -h1,6779:23386499,15183039:0,0,0 -k1,6779:32583029,15183039:9196530 -g1,6779:32583029,15183039 -) -(1,6779:6630773,15849217:25952256,388497,9436 -h1,6779:6630773,15849217:0,0,0 -g1,6779:7579210,15849217 -g1,6779:8211502,15849217 -g1,6779:8527648,15849217 -g1,6779:8843794,15849217 -g1,6779:9159940,15849217 -g1,6779:9476086,15849217 -g1,6779:9792232,15849217 -g1,6779:10424524,15849217 -g1,6779:12953690,15849217 -g1,6779:13269836,15849217 -g1,6779:13902128,15849217 -g1,6779:14218274,15849217 -g1,6779:14534420,15849217 -g1,6779:14850566,15849217 -g1,6779:17063586,15849217 -g1,6779:19276606,15849217 -g1,6779:22438063,15849217 -h1,6779:23386500,15849217:0,0,0 -k1,6779:32583029,15849217:9196529 -g1,6779:32583029,15849217 -) -(1,6779:6630773,16515395:25952256,379060,0 -h1,6779:6630773,16515395:0,0,0 -g1,6779:7579210,16515395 -k1,6779:7579210,16515395:0 -h1,6779:8527648,16515395:0,0,0 -k1,6779:32583028,16515395:24055380 -g1,6779:32583028,16515395 -) -(1,6779:6630773,17181573:25952256,410518,107478 -h1,6779:6630773,17181573:0,0,0 -g1,6779:7579210,17181573 -g1,6779:10108376,17181573 -g1,6779:12321396,17181573 -g1,6779:12637542,17181573 -g1,6779:13269834,17181573 -g1,6779:15166709,17181573 -g1,6779:17063583,17181573 -g1,6779:18644312,17181573 -g1,6779:20225041,17181573 -g1,6779:21489625,17181573 -g1,6779:23070354,17181573 -g1,6779:24334938,17181573 -g1,6779:25599521,17181573 -g1,6779:26231813,17181573 -g1,6779:26864105,17181573 -h1,6779:27180251,17181573:0,0,0 -k1,6779:32583029,17181573:5402778 -g1,6779:32583029,17181573 -) -] -) -g1,6780:32583029,17289051 -g1,6780:6630773,17289051 -g1,6780:6630773,17289051 -g1,6780:32583029,17289051 -g1,6780:32583029,17289051 -) -h1,6780:6630773,17485659:0,0,0 -(1,6784:6630773,18851435:25952256,513147,126483 -h1,6783:6630773,18851435:983040,0,0 -k1,6783:8273293,18851435:181723 -k1,6783:9323368,18851435:181723 -k1,6783:10696536,18851435:181723 -k1,6783:11687629,18851435:181723 -k1,6783:14144762,18851435:181723 -k1,6783:15418970,18851435:181723 -k1,6783:16548344,18851435:181723 -(1,6783:16548344,18851435:0,452978,115847 -r1,6783:19016881,18851435:2468537,568825,115847 -k1,6783:16548344,18851435:-2468537 -) -(1,6783:16548344,18851435:2468537,452978,115847 -k1,6783:16548344,18851435:3277 -h1,6783:19013604,18851435:0,411205,112570 -) -k1,6783:19198604,18851435:181723 -k1,6783:20248679,18851435:181723 -k1,6783:22199219,18851435:181723 -k1,6783:24519382,18851435:181723 -k1,6783:26343437,18851435:181723 -k1,6783:26881020,18851435:181723 -k1,6783:28056269,18851435:181723 -k1,6783:29631943,18851435:181723 -k1,6783:32583029,18851435:0 -) -(1,6784:6630773,19692923:25952256,505283,134348 -g1,6783:9783710,19692923 -g1,6783:10744467,19692923 -g1,6783:12679089,19692923 -g1,6783:16053537,19692923 -k1,6784:32583029,19692923:13616417 -g1,6784:32583029,19692923 -) -v1,6786:6630773,20883389:0,393216,0 -(1,6820:6630773,37973189:25952256,17483016,196608 -g1,6820:6630773,37973189 -g1,6820:6630773,37973189 -g1,6820:6434165,37973189 -(1,6820:6434165,37973189:0,17483016,196608 -r1,6820:32779637,37973189:26345472,17679624,196608 -k1,6820:6434165,37973189:-26345472 -) -(1,6820:6434165,37973189:26345472,17483016,196608 -[1,6820:6630773,37973189:25952256,17286408,0 -(1,6788:6630773,21091007:25952256,404226,76021 -(1,6787:6630773,21091007:0,0,0 -g1,6787:6630773,21091007 -g1,6787:6630773,21091007 -g1,6787:6303093,21091007 -(1,6787:6303093,21091007:0,0,0 -) -g1,6787:6630773,21091007 -) -g1,6788:9159939,21091007 -g1,6788:10108377,21091007 -k1,6788:10108377,21091007:0 -h1,6788:12005251,21091007:0,0,0 -k1,6788:32583029,21091007:20577778 -g1,6788:32583029,21091007 -) -(1,6789:6630773,21757185:25952256,404226,101187 -h1,6789:6630773,21757185:0,0,0 -g1,6789:8843793,21757185 -g1,6789:9792231,21757185 -g1,6789:12005251,21757185 -g1,6789:12637543,21757185 -g1,6789:13585981,21757185 -g1,6789:14218273,21757185 -g1,6789:14850565,21757185 -g1,6789:15482857,21757185 -g1,6789:16115149,21757185 -g1,6789:17063587,21757185 -g1,6789:17695879,21757185 -g1,6789:18328171,21757185 -g1,6789:18960463,21757185 -g1,6789:19592755,21757185 -k1,6789:19592755,21757185:0 -h1,6789:21805775,21757185:0,0,0 -k1,6789:32583029,21757185:10777254 -g1,6789:32583029,21757185 -) -(1,6790:6630773,22423363:25952256,410518,107478 -h1,6790:6630773,22423363:0,0,0 -g1,6790:7895356,22423363 -g1,6790:8843793,22423363 -g1,6790:9792230,22423363 -g1,6790:14534416,22423363 -g1,6790:15166708,22423363 -g1,6790:18012019,22423363 -h1,6790:18328165,22423363:0,0,0 -k1,6790:32583029,22423363:14254864 -g1,6790:32583029,22423363 -) -(1,6791:6630773,23089541:25952256,404226,101187 -h1,6791:6630773,23089541:0,0,0 -g1,6791:6946919,23089541 -g1,6791:7263065,23089541 -g1,6791:7579211,23089541 -g1,6791:11689105,23089541 -g1,6791:12637543,23089541 -g1,6791:17695874,23089541 -g1,6791:19276603,23089541 -g1,6791:19908895,23089541 -h1,6791:22438060,23089541:0,0,0 -k1,6791:32583029,23089541:10144969 -g1,6791:32583029,23089541 -) -(1,6792:6630773,23755719:25952256,404226,76021 -h1,6792:6630773,23755719:0,0,0 -g1,6792:6946919,23755719 -g1,6792:7263065,23755719 -g1,6792:7579211,23755719 -h1,6792:7895357,23755719:0,0,0 -k1,6792:32583029,23755719:24687672 -g1,6792:32583029,23755719 -) -(1,6793:6630773,24421897:25952256,404226,82312 -h1,6793:6630773,24421897:0,0,0 -g1,6793:10740667,24421897 -g1,6793:13902124,24421897 -g1,6793:14534416,24421897 -h1,6793:15166708,24421897:0,0,0 -k1,6793:32583028,24421897:17416320 -g1,6793:32583028,24421897 -) -(1,6803:6630773,25153611:25952256,410518,9436 -(1,6795:6630773,25153611:0,0,0 -g1,6795:6630773,25153611 -g1,6795:6630773,25153611 -g1,6795:6303093,25153611 -(1,6795:6303093,25153611:0,0,0 -) -g1,6795:6630773,25153611 -) -g1,6803:7579210,25153611 -g1,6803:9159939,25153611 -g1,6803:10108376,25153611 -h1,6803:10424522,25153611:0,0,0 -k1,6803:32583030,25153611:22158508 -g1,6803:32583030,25153611 -) -(1,6803:6630773,25819789:25952256,410518,31456 -h1,6803:6630773,25819789:0,0,0 -g1,6803:7579210,25819789 -g1,6803:7895356,25819789 -g1,6803:8527648,25819789 -g1,6803:10424522,25819789 -g1,6803:11372959,25819789 -h1,6803:12005250,25819789:0,0,0 -k1,6803:32583030,25819789:20577780 -g1,6803:32583030,25819789 -) -(1,6803:6630773,26485967:25952256,404226,82312 -h1,6803:6630773,26485967:0,0,0 -g1,6803:7579210,26485967 -g1,6803:7895356,26485967 -g1,6803:8211502,26485967 -g1,6803:9476085,26485967 -g1,6803:12005251,26485967 -g1,6803:15166708,26485967 -g1,6803:16431291,26485967 -h1,6803:17695874,26485967:0,0,0 -k1,6803:32583029,26485967:14887155 -g1,6803:32583029,26485967 -) -(1,6803:6630773,27152145:25952256,410518,31456 -h1,6803:6630773,27152145:0,0,0 -g1,6803:7579210,27152145 -g1,6803:7895356,27152145 -g1,6803:8527648,27152145 -g1,6803:10424522,27152145 -g1,6803:11372959,27152145 -h1,6803:12005250,27152145:0,0,0 -k1,6803:32583030,27152145:20577780 -g1,6803:32583030,27152145 -) -(1,6803:6630773,27818323:25952256,404226,82312 -h1,6803:6630773,27818323:0,0,0 -g1,6803:7579210,27818323 -g1,6803:7895356,27818323 -g1,6803:8211502,27818323 -g1,6803:9476085,27818323 -g1,6803:12005251,27818323 -g1,6803:15166708,27818323 -g1,6803:16431291,27818323 -h1,6803:17695874,27818323:0,0,0 -k1,6803:32583029,27818323:14887155 -g1,6803:32583029,27818323 -) -(1,6803:6630773,28484501:25952256,410518,31456 -h1,6803:6630773,28484501:0,0,0 -g1,6803:7579210,28484501 -g1,6803:7895356,28484501 -g1,6803:8527648,28484501 -g1,6803:10424522,28484501 -g1,6803:11372959,28484501 -h1,6803:12005250,28484501:0,0,0 -k1,6803:32583030,28484501:20577780 -g1,6803:32583030,28484501 -) -(1,6803:6630773,29150679:25952256,404226,82312 -h1,6803:6630773,29150679:0,0,0 -g1,6803:7579210,29150679 -g1,6803:7895356,29150679 -g1,6803:8211502,29150679 -g1,6803:9476085,29150679 -g1,6803:12005251,29150679 -g1,6803:15166708,29150679 -g1,6803:16431291,29150679 -h1,6803:17695874,29150679:0,0,0 -k1,6803:32583029,29150679:14887155 -g1,6803:32583029,29150679 -) -(1,6805:6630773,30472217:25952256,404226,82312 -(1,6804:6630773,30472217:0,0,0 -g1,6804:6630773,30472217 -g1,6804:6630773,30472217 -g1,6804:6303093,30472217 -(1,6804:6303093,30472217:0,0,0 -) -g1,6804:6630773,30472217 -) -k1,6805:6630773,30472217:0 -g1,6805:11372959,30472217 -h1,6805:13902124,30472217:0,0,0 -k1,6805:32583028,30472217:18680904 -g1,6805:32583028,30472217 -) -(1,6819:6630773,31203931:25952256,410518,101187 -(1,6807:6630773,31203931:0,0,0 -g1,6807:6630773,31203931 -g1,6807:6630773,31203931 -g1,6807:6303093,31203931 -(1,6807:6303093,31203931:0,0,0 -) -g1,6807:6630773,31203931 -) -g1,6819:7579210,31203931 -g1,6819:10424521,31203931 -g1,6819:11372958,31203931 -g1,6819:14218269,31203931 -h1,6819:15798997,31203931:0,0,0 -k1,6819:32583029,31203931:16784032 -g1,6819:32583029,31203931 -) -(1,6819:6630773,31870109:25952256,379060,0 -h1,6819:6630773,31870109:0,0,0 -h1,6819:7263064,31870109:0,0,0 -k1,6819:32583028,31870109:25319964 -g1,6819:32583028,31870109 -) -(1,6819:6630773,32536287:25952256,404226,101187 -h1,6819:6630773,32536287:0,0,0 -g1,6819:7579210,32536287 -g1,6819:9476084,32536287 -g1,6819:10424521,32536287 -g1,6819:11056813,32536287 -g1,6819:11689105,32536287 -h1,6819:12005251,32536287:0,0,0 -k1,6819:32583029,32536287:20577778 -g1,6819:32583029,32536287 -) -(1,6819:6630773,33202465:25952256,404226,101187 -h1,6819:6630773,33202465:0,0,0 -g1,6819:7579210,33202465 -g1,6819:9476084,33202465 -g1,6819:10424521,33202465 -g1,6819:11056813,33202465 -g1,6819:11689105,33202465 -g1,6819:12321397,33202465 -g1,6819:12953689,33202465 -h1,6819:13269835,33202465:0,0,0 -k1,6819:32583029,33202465:19313194 -g1,6819:32583029,33202465 -) -(1,6819:6630773,33868643:25952256,404226,101187 -h1,6819:6630773,33868643:0,0,0 -g1,6819:7579210,33868643 -g1,6819:9476084,33868643 -g1,6819:10424521,33868643 -g1,6819:11056813,33868643 -g1,6819:11689105,33868643 -g1,6819:12321397,33868643 -g1,6819:12953689,33868643 -h1,6819:14850563,33868643:0,0,0 -k1,6819:32583029,33868643:17732466 -g1,6819:32583029,33868643 -) -(1,6819:6630773,34534821:25952256,410518,101187 -h1,6819:6630773,34534821:0,0,0 -g1,6819:7579210,34534821 -g1,6819:7895356,34534821 -g1,6819:8211502,34534821 -g1,6819:10424522,34534821 -g1,6819:10740668,34534821 -g1,6819:11056814,34534821 -g1,6819:11372960,34534821 -g1,6819:11689106,34534821 -g1,6819:12953689,34534821 -g1,6819:13902126,34534821 -g1,6819:15166709,34534821 -g1,6819:16115146,34534821 -g1,6819:17063583,34534821 -g1,6819:17379729,34534821 -g1,6819:17695875,34534821 -g1,6819:18012021,34534821 -g1,6819:18328167,34534821 -g1,6819:18644313,34534821 -g1,6819:19276605,34534821 -g1,6819:19592751,34534821 -g1,6819:19908897,34534821 -g1,6819:20225043,34534821 -k1,6819:20225043,34534821:0 -h1,6819:22121917,34534821:0,0,0 -k1,6819:32583029,34534821:10461112 -g1,6819:32583029,34534821 -) -(1,6819:6630773,35200999:25952256,388497,9436 -h1,6819:6630773,35200999:0,0,0 -g1,6819:7579210,35200999 -g1,6819:8211502,35200999 -g1,6819:8527648,35200999 -g1,6819:8843794,35200999 -g1,6819:9159940,35200999 -g1,6819:9476086,35200999 -g1,6819:9792232,35200999 -g1,6819:10424524,35200999 -h1,6819:12637544,35200999:0,0,0 -k1,6819:32583028,35200999:19945484 -g1,6819:32583028,35200999 -) -(1,6819:6630773,35867177:25952256,388497,9436 -h1,6819:6630773,35867177:0,0,0 -g1,6819:7579210,35867177 -g1,6819:8211502,35867177 -g1,6819:8527648,35867177 -g1,6819:8843794,35867177 -g1,6819:9159940,35867177 -g1,6819:9476086,35867177 -g1,6819:9792232,35867177 -g1,6819:10424524,35867177 -g1,6819:12953690,35867177 -g1,6819:13902127,35867177 -g1,6819:14218273,35867177 -g1,6819:14534419,35867177 -g1,6819:17063585,35867177 -g1,6819:19276605,35867177 -g1,6819:22438062,35867177 -h1,6819:23386499,35867177:0,0,0 -k1,6819:32583029,35867177:9196530 -g1,6819:32583029,35867177 -) -(1,6819:6630773,36533355:25952256,388497,9436 -h1,6819:6630773,36533355:0,0,0 -g1,6819:7579210,36533355 -g1,6819:8211502,36533355 -g1,6819:8527648,36533355 -g1,6819:8843794,36533355 -g1,6819:9159940,36533355 -g1,6819:9476086,36533355 -g1,6819:9792232,36533355 -g1,6819:10424524,36533355 -g1,6819:12953690,36533355 -g1,6819:13269836,36533355 -g1,6819:13902128,36533355 -g1,6819:14218274,36533355 -g1,6819:14534420,36533355 -g1,6819:14850566,36533355 -g1,6819:17063586,36533355 -g1,6819:19276606,36533355 -g1,6819:22438063,36533355 -h1,6819:23386500,36533355:0,0,0 -k1,6819:32583029,36533355:9196529 -g1,6819:32583029,36533355 -) -(1,6819:6630773,37199533:25952256,379060,0 -h1,6819:6630773,37199533:0,0,0 -g1,6819:7579210,37199533 -k1,6819:7579210,37199533:0 -h1,6819:8527648,37199533:0,0,0 -k1,6819:32583028,37199533:24055380 -g1,6819:32583028,37199533 -) -(1,6819:6630773,37865711:25952256,410518,107478 -h1,6819:6630773,37865711:0,0,0 -g1,6819:7579210,37865711 -g1,6819:10108376,37865711 -g1,6819:12321396,37865711 -g1,6819:12637542,37865711 -g1,6819:13269834,37865711 -g1,6819:15166709,37865711 -g1,6819:17063583,37865711 -g1,6819:18644312,37865711 -g1,6819:20225041,37865711 -g1,6819:21489625,37865711 -g1,6819:23070354,37865711 -g1,6819:24334938,37865711 -g1,6819:25599521,37865711 -g1,6819:26231813,37865711 -g1,6819:26864105,37865711 -h1,6819:27180251,37865711:0,0,0 -k1,6819:32583029,37865711:5402778 -g1,6819:32583029,37865711 -) -] -) -g1,6820:32583029,37973189 -g1,6820:6630773,37973189 -g1,6820:6630773,37973189 -g1,6820:32583029,37973189 -g1,6820:32583029,37973189 -) -h1,6820:6630773,38169797:0,0,0 -(1,6823:6630773,40785345:25952256,555811,147783 -(1,6823:6630773,40785345:2450326,534184,12975 -g1,6823:6630773,40785345 -g1,6823:9081099,40785345 -) -g1,6823:12021634,40785345 -k1,6823:32583028,40785345:17814780 -g1,6823:32583028,40785345 -) -(1,6825:6630773,42020049:25952256,513147,134348 -k1,6824:7835329,42020049:162534 -k1,6824:10273274,42020049:162535 -k1,6824:13168659,42020049:162534 -k1,6824:14140564,42020049:162535 -k1,6824:15322183,42020049:162534 -k1,6824:17859743,42020049:162535 -k1,6824:18689433,42020049:162534 -k1,6824:19266774,42020049:162498 -k1,6824:22558652,42020049:162534 -k1,6824:23337225,42020049:162535 -k1,6824:24518844,42020049:162534 -k1,6824:27025602,42020049:162535 -k1,6824:29779430,42020049:162534 -k1,6824:30154920,42020049:162498 -k1,6824:32583029,42020049:0 -) -(1,6825:6630773,42861537:25952256,513147,134348 -k1,6824:7798000,42861537:148142 -k1,6824:9858483,42861537:148142 -k1,6824:11194138,42861537:148143 -k1,6824:12372506,42861537:148142 -k1,6824:13136686,42861537:148142 -k1,6824:13734405,42861537:148142 -k1,6824:18446729,42861537:148397 -k1,6824:19084425,42861537:148142 -k1,6824:20754968,42861537:148142 -k1,6824:21519148,42861537:148142 -k1,6824:24697676,42861537:148143 -k1,6824:27627821,42861537:148142 -k1,6824:29907194,42861537:148142 -k1,6824:32583029,42861537:0 -) -(1,6825:6630773,43703025:25952256,505283,95026 -g1,6824:8021447,43703025 -g1,6824:11343467,43703025 -g1,6824:11992273,43703025 -k1,6825:32583028,43703025:17078680 -g1,6825:32583028,43703025 -) -] -(1,6830:32583029,45706769:0,0,0 -g1,6830:32583029,45706769 -) -) -] -(1,6830:6630773,47279633:25952256,0,0 -h1,6830:6630773,47279633:25952256,0,0 -) -] -h1,6830:4262630,4025873:0,0,0 ] -!23031 +) +g1,5283:36675916,49800853 +(1,5283:36675916,49800853:1179648,16384,0 +r1,6836:37855564,49800853:1179648,16384,0 +) +) +k1,6836:3078556,49800853:-34777008 +) +] +g1,6836:6630773,4812305 +k1,6836:18771974,4812305:10945824 +g1,6836:20158715,4812305 +g1,6836:20807521,4812305 +g1,6836:24121676,4812305 +g1,6836:28605649,4812305 +g1,6836:30015328,4812305 +) +) +] +[1,6836:6630773,45706769:25952256,40108032,0 +(1,6836:6630773,45706769:25952256,40108032,0 +(1,6836:6630773,45706769:0,0,0 +g1,6836:6630773,45706769 +) +[1,6836:6630773,45706769:25952256,40108032,0 +v1,6786:6630773,6254097:0,393216,0 +(1,6786:6630773,19287585:25952256,13426704,196608 +g1,6786:6630773,19287585 +g1,6786:6630773,19287585 +g1,6786:6434165,19287585 +(1,6786:6434165,19287585:0,13426704,196608 +r1,6786:32779637,19287585:26345472,13623312,196608 +k1,6786:6434165,19287585:-26345472 +) +(1,6786:6434165,19287585:26345472,13426704,196608 +[1,6786:6630773,19287585:25952256,13230096,0 +(1,6769:6630773,6468007:25952256,410518,9436 +(1,6761:6630773,6468007:0,0,0 +g1,6761:6630773,6468007 +g1,6761:6630773,6468007 +g1,6761:6303093,6468007 +(1,6761:6303093,6468007:0,0,0 +) +g1,6761:6630773,6468007 +) +g1,6769:7579210,6468007 +g1,6769:9159939,6468007 +g1,6769:10108376,6468007 +h1,6769:10424522,6468007:0,0,0 +k1,6769:32583030,6468007:22158508 +g1,6769:32583030,6468007 +) +(1,6769:6630773,7134185:25952256,410518,31456 +h1,6769:6630773,7134185:0,0,0 +g1,6769:7579210,7134185 +g1,6769:7895356,7134185 +g1,6769:8527648,7134185 +g1,6769:10740668,7134185 +g1,6769:11056814,7134185 +g1,6769:11372960,7134185 +g1,6769:11689106,7134185 +g1,6769:12005252,7134185 +g1,6769:13902126,7134185 +g1,6769:14850563,7134185 +h1,6769:15482854,7134185:0,0,0 +k1,6769:32583030,7134185:17100176 +g1,6769:32583030,7134185 +) +(1,6769:6630773,7800363:25952256,404226,82312 +h1,6769:6630773,7800363:0,0,0 +g1,6769:7579210,7800363 +g1,6769:7895356,7800363 +g1,6769:8211502,7800363 +g1,6769:9476085,7800363 +g1,6769:12005251,7800363 +g1,6769:15166708,7800363 +g1,6769:16431291,7800363 +h1,6769:17695874,7800363:0,0,0 +k1,6769:32583029,7800363:14887155 +g1,6769:32583029,7800363 +) +(1,6769:6630773,8466541:25952256,410518,107478 +h1,6769:6630773,8466541:0,0,0 +g1,6769:7579210,8466541 +g1,6769:7895356,8466541 +g1,6769:8527648,8466541 +g1,6769:13902125,8466541 +g1,6769:14850562,8466541 +h1,6769:15482853,8466541:0,0,0 +k1,6769:32583029,8466541:17100176 +g1,6769:32583029,8466541 +) +(1,6769:6630773,9132719:25952256,404226,82312 +h1,6769:6630773,9132719:0,0,0 +g1,6769:7579210,9132719 +g1,6769:7895356,9132719 +g1,6769:8211502,9132719 +g1,6769:9476085,9132719 +g1,6769:12005251,9132719 +g1,6769:15166708,9132719 +g1,6769:16431291,9132719 +h1,6769:17695874,9132719:0,0,0 +k1,6769:32583029,9132719:14887155 +g1,6769:32583029,9132719 +) +(1,6769:6630773,9798897:25952256,410518,101187 +h1,6769:6630773,9798897:0,0,0 +g1,6769:7579210,9798897 +g1,6769:7895356,9798897 +g1,6769:8527648,9798897 +g1,6769:11689105,9798897 +g1,6769:12005251,9798897 +g1,6769:13902125,9798897 +g1,6769:14850562,9798897 +h1,6769:15482853,9798897:0,0,0 +k1,6769:32583029,9798897:17100176 +g1,6769:32583029,9798897 +) +(1,6769:6630773,10465075:25952256,404226,82312 +h1,6769:6630773,10465075:0,0,0 +g1,6769:7579210,10465075 +g1,6769:7895356,10465075 +g1,6769:8211502,10465075 +g1,6769:9476085,10465075 +g1,6769:12005251,10465075 +g1,6769:15166708,10465075 +g1,6769:16431291,10465075 +h1,6769:17695874,10465075:0,0,0 +k1,6769:32583029,10465075:14887155 +g1,6769:32583029,10465075 +) +(1,6771:6630773,11786613:25952256,404226,82312 +(1,6770:6630773,11786613:0,0,0 +g1,6770:6630773,11786613 +g1,6770:6630773,11786613 +g1,6770:6303093,11786613 +(1,6770:6303093,11786613:0,0,0 +) +g1,6770:6630773,11786613 +) +k1,6771:6630773,11786613:0 +g1,6771:11372959,11786613 +k1,6771:11372959,11786613:0 +h1,6771:16431290,11786613:0,0,0 +k1,6771:32583029,11786613:16151739 +g1,6771:32583029,11786613 +) +(1,6785:6630773,12518327:25952256,410518,101187 +(1,6773:6630773,12518327:0,0,0 +g1,6773:6630773,12518327 +g1,6773:6630773,12518327 +g1,6773:6303093,12518327 +(1,6773:6303093,12518327:0,0,0 +) +g1,6773:6630773,12518327 +) +g1,6785:7579210,12518327 +g1,6785:10424521,12518327 +g1,6785:11372958,12518327 +g1,6785:14218269,12518327 +h1,6785:15798997,12518327:0,0,0 +k1,6785:32583029,12518327:16784032 +g1,6785:32583029,12518327 +) +(1,6785:6630773,13184505:25952256,379060,0 +h1,6785:6630773,13184505:0,0,0 +h1,6785:7263064,13184505:0,0,0 +k1,6785:32583028,13184505:25319964 +g1,6785:32583028,13184505 +) +(1,6785:6630773,13850683:25952256,404226,101187 +h1,6785:6630773,13850683:0,0,0 +g1,6785:7579210,13850683 +g1,6785:9476084,13850683 +g1,6785:10424521,13850683 +g1,6785:11056813,13850683 +g1,6785:11689105,13850683 +h1,6785:12005251,13850683:0,0,0 +k1,6785:32583029,13850683:20577778 +g1,6785:32583029,13850683 +) +(1,6785:6630773,14516861:25952256,404226,101187 +h1,6785:6630773,14516861:0,0,0 +g1,6785:7579210,14516861 +g1,6785:9476084,14516861 +g1,6785:10424521,14516861 +g1,6785:11056813,14516861 +g1,6785:11689105,14516861 +g1,6785:12321397,14516861 +g1,6785:12953689,14516861 +h1,6785:13269835,14516861:0,0,0 +k1,6785:32583029,14516861:19313194 +g1,6785:32583029,14516861 +) +(1,6785:6630773,15183039:25952256,404226,101187 +h1,6785:6630773,15183039:0,0,0 +g1,6785:7579210,15183039 +g1,6785:9476084,15183039 +g1,6785:10424521,15183039 +g1,6785:11056813,15183039 +g1,6785:11689105,15183039 +g1,6785:12321397,15183039 +g1,6785:12953689,15183039 +h1,6785:14850563,15183039:0,0,0 +k1,6785:32583029,15183039:17732466 +g1,6785:32583029,15183039 +) +(1,6785:6630773,15849217:25952256,410518,101187 +h1,6785:6630773,15849217:0,0,0 +g1,6785:7579210,15849217 +g1,6785:7895356,15849217 +g1,6785:8211502,15849217 +g1,6785:10424522,15849217 +g1,6785:10740668,15849217 +g1,6785:11056814,15849217 +g1,6785:11372960,15849217 +g1,6785:11689106,15849217 +g1,6785:12953689,15849217 +g1,6785:13902126,15849217 +g1,6785:15166709,15849217 +g1,6785:16115146,15849217 +g1,6785:17063583,15849217 +g1,6785:17379729,15849217 +g1,6785:17695875,15849217 +g1,6785:18012021,15849217 +g1,6785:18328167,15849217 +g1,6785:18644313,15849217 +g1,6785:19276605,15849217 +g1,6785:19592751,15849217 +g1,6785:19908897,15849217 +g1,6785:20225043,15849217 +k1,6785:20225043,15849217:0 +h1,6785:22121917,15849217:0,0,0 +k1,6785:32583029,15849217:10461112 +g1,6785:32583029,15849217 +) +(1,6785:6630773,16515395:25952256,388497,9436 +h1,6785:6630773,16515395:0,0,0 +g1,6785:7579210,16515395 +g1,6785:8211502,16515395 +g1,6785:8527648,16515395 +g1,6785:8843794,16515395 +g1,6785:9159940,16515395 +g1,6785:9476086,16515395 +g1,6785:9792232,16515395 +g1,6785:10424524,16515395 +h1,6785:12637544,16515395:0,0,0 +k1,6785:32583028,16515395:19945484 +g1,6785:32583028,16515395 +) +(1,6785:6630773,17181573:25952256,388497,9436 +h1,6785:6630773,17181573:0,0,0 +g1,6785:7579210,17181573 +g1,6785:8211502,17181573 +g1,6785:8527648,17181573 +g1,6785:8843794,17181573 +g1,6785:9159940,17181573 +g1,6785:9476086,17181573 +g1,6785:9792232,17181573 +g1,6785:10424524,17181573 +g1,6785:12953690,17181573 +g1,6785:13902127,17181573 +g1,6785:14218273,17181573 +g1,6785:14534419,17181573 +g1,6785:17063585,17181573 +g1,6785:19276605,17181573 +g1,6785:22438062,17181573 +h1,6785:23386499,17181573:0,0,0 +k1,6785:32583029,17181573:9196530 +g1,6785:32583029,17181573 +) +(1,6785:6630773,17847751:25952256,388497,9436 +h1,6785:6630773,17847751:0,0,0 +g1,6785:7579210,17847751 +g1,6785:8211502,17847751 +g1,6785:8527648,17847751 +g1,6785:8843794,17847751 +g1,6785:9159940,17847751 +g1,6785:9476086,17847751 +g1,6785:9792232,17847751 +g1,6785:10424524,17847751 +g1,6785:12953690,17847751 +g1,6785:13269836,17847751 +g1,6785:13902128,17847751 +g1,6785:14218274,17847751 +g1,6785:14534420,17847751 +g1,6785:14850566,17847751 +g1,6785:17063586,17847751 +g1,6785:19276606,17847751 +g1,6785:22438063,17847751 +h1,6785:23386500,17847751:0,0,0 +k1,6785:32583029,17847751:9196529 +g1,6785:32583029,17847751 +) +(1,6785:6630773,18513929:25952256,379060,0 +h1,6785:6630773,18513929:0,0,0 +g1,6785:7579210,18513929 +k1,6785:7579210,18513929:0 +h1,6785:8527648,18513929:0,0,0 +k1,6785:32583028,18513929:24055380 +g1,6785:32583028,18513929 +) +(1,6785:6630773,19180107:25952256,410518,107478 +h1,6785:6630773,19180107:0,0,0 +g1,6785:7579210,19180107 +g1,6785:10108376,19180107 +g1,6785:12321396,19180107 +g1,6785:12637542,19180107 +g1,6785:13269834,19180107 +g1,6785:15166709,19180107 +g1,6785:17063583,19180107 +g1,6785:18644312,19180107 +g1,6785:20225041,19180107 +g1,6785:21489625,19180107 +g1,6785:23070354,19180107 +g1,6785:24334938,19180107 +g1,6785:25599521,19180107 +g1,6785:26231813,19180107 +g1,6785:26864105,19180107 +h1,6785:27180251,19180107:0,0,0 +k1,6785:32583029,19180107:5402778 +g1,6785:32583029,19180107 +) +] +) +g1,6786:32583029,19287585 +g1,6786:6630773,19287585 +g1,6786:6630773,19287585 +g1,6786:32583029,19287585 +g1,6786:32583029,19287585 +) +h1,6786:6630773,19484193:0,0,0 +(1,6790:6630773,20849969:25952256,513147,126483 +h1,6789:6630773,20849969:983040,0,0 +k1,6789:8273293,20849969:181723 +k1,6789:9323368,20849969:181723 +k1,6789:10696536,20849969:181723 +k1,6789:11687629,20849969:181723 +k1,6789:14144762,20849969:181723 +k1,6789:15418970,20849969:181723 +k1,6789:16548344,20849969:181723 +(1,6789:16548344,20849969:0,452978,115847 +r1,6789:19016881,20849969:2468537,568825,115847 +k1,6789:16548344,20849969:-2468537 +) +(1,6789:16548344,20849969:2468537,452978,115847 +k1,6789:16548344,20849969:3277 +h1,6789:19013604,20849969:0,411205,112570 +) +k1,6789:19198604,20849969:181723 +k1,6789:20248679,20849969:181723 +k1,6789:22199219,20849969:181723 +k1,6789:24519382,20849969:181723 +k1,6789:26343437,20849969:181723 +k1,6789:26881020,20849969:181723 +k1,6789:28056269,20849969:181723 +k1,6789:29631943,20849969:181723 +k1,6789:32583029,20849969:0 +) +(1,6790:6630773,21691457:25952256,505283,134348 +g1,6789:9783710,21691457 +g1,6789:10744467,21691457 +g1,6789:12679089,21691457 +g1,6789:16053537,21691457 +k1,6790:32583029,21691457:13616417 +g1,6790:32583029,21691457 +) +v1,6792:6630773,22881923:0,393216,0 +(1,6826:6630773,39971723:25952256,17483016,196608 +g1,6826:6630773,39971723 +g1,6826:6630773,39971723 +g1,6826:6434165,39971723 +(1,6826:6434165,39971723:0,17483016,196608 +r1,6826:32779637,39971723:26345472,17679624,196608 +k1,6826:6434165,39971723:-26345472 +) +(1,6826:6434165,39971723:26345472,17483016,196608 +[1,6826:6630773,39971723:25952256,17286408,0 +(1,6794:6630773,23089541:25952256,404226,76021 +(1,6793:6630773,23089541:0,0,0 +g1,6793:6630773,23089541 +g1,6793:6630773,23089541 +g1,6793:6303093,23089541 +(1,6793:6303093,23089541:0,0,0 +) +g1,6793:6630773,23089541 +) +g1,6794:9159939,23089541 +g1,6794:10108377,23089541 +k1,6794:10108377,23089541:0 +h1,6794:12005251,23089541:0,0,0 +k1,6794:32583029,23089541:20577778 +g1,6794:32583029,23089541 +) +(1,6795:6630773,23755719:25952256,404226,101187 +h1,6795:6630773,23755719:0,0,0 +g1,6795:8843793,23755719 +g1,6795:9792231,23755719 +g1,6795:12005251,23755719 +g1,6795:12637543,23755719 +g1,6795:13585981,23755719 +g1,6795:14218273,23755719 +g1,6795:14850565,23755719 +g1,6795:15482857,23755719 +g1,6795:16115149,23755719 +g1,6795:17063587,23755719 +g1,6795:17695879,23755719 +g1,6795:18328171,23755719 +g1,6795:18960463,23755719 +g1,6795:19592755,23755719 +k1,6795:19592755,23755719:0 +h1,6795:21805775,23755719:0,0,0 +k1,6795:32583029,23755719:10777254 +g1,6795:32583029,23755719 +) +(1,6796:6630773,24421897:25952256,410518,107478 +h1,6796:6630773,24421897:0,0,0 +g1,6796:7895356,24421897 +g1,6796:8843793,24421897 +g1,6796:9792230,24421897 +g1,6796:14534416,24421897 +g1,6796:15166708,24421897 +g1,6796:18012019,24421897 +h1,6796:18328165,24421897:0,0,0 +k1,6796:32583029,24421897:14254864 +g1,6796:32583029,24421897 +) +(1,6797:6630773,25088075:25952256,404226,101187 +h1,6797:6630773,25088075:0,0,0 +g1,6797:6946919,25088075 +g1,6797:7263065,25088075 +g1,6797:7579211,25088075 +g1,6797:11689105,25088075 +g1,6797:12637543,25088075 +g1,6797:17695874,25088075 +g1,6797:19276603,25088075 +g1,6797:19908895,25088075 +h1,6797:22438060,25088075:0,0,0 +k1,6797:32583029,25088075:10144969 +g1,6797:32583029,25088075 +) +(1,6798:6630773,25754253:25952256,404226,76021 +h1,6798:6630773,25754253:0,0,0 +g1,6798:6946919,25754253 +g1,6798:7263065,25754253 +g1,6798:7579211,25754253 +h1,6798:7895357,25754253:0,0,0 +k1,6798:32583029,25754253:24687672 +g1,6798:32583029,25754253 +) +(1,6799:6630773,26420431:25952256,404226,82312 +h1,6799:6630773,26420431:0,0,0 +g1,6799:10740667,26420431 +g1,6799:13902124,26420431 +g1,6799:14534416,26420431 +h1,6799:15166708,26420431:0,0,0 +k1,6799:32583028,26420431:17416320 +g1,6799:32583028,26420431 +) +(1,6809:6630773,27152145:25952256,410518,9436 +(1,6801:6630773,27152145:0,0,0 +g1,6801:6630773,27152145 +g1,6801:6630773,27152145 +g1,6801:6303093,27152145 +(1,6801:6303093,27152145:0,0,0 +) +g1,6801:6630773,27152145 +) +g1,6809:7579210,27152145 +g1,6809:9159939,27152145 +g1,6809:10108376,27152145 +h1,6809:10424522,27152145:0,0,0 +k1,6809:32583030,27152145:22158508 +g1,6809:32583030,27152145 +) +(1,6809:6630773,27818323:25952256,410518,31456 +h1,6809:6630773,27818323:0,0,0 +g1,6809:7579210,27818323 +g1,6809:7895356,27818323 +g1,6809:8527648,27818323 +g1,6809:10424522,27818323 +g1,6809:11372959,27818323 +h1,6809:12005250,27818323:0,0,0 +k1,6809:32583030,27818323:20577780 +g1,6809:32583030,27818323 +) +(1,6809:6630773,28484501:25952256,404226,82312 +h1,6809:6630773,28484501:0,0,0 +g1,6809:7579210,28484501 +g1,6809:7895356,28484501 +g1,6809:8211502,28484501 +g1,6809:9476085,28484501 +g1,6809:12005251,28484501 +g1,6809:15166708,28484501 +g1,6809:16431291,28484501 +h1,6809:17695874,28484501:0,0,0 +k1,6809:32583029,28484501:14887155 +g1,6809:32583029,28484501 +) +(1,6809:6630773,29150679:25952256,410518,31456 +h1,6809:6630773,29150679:0,0,0 +g1,6809:7579210,29150679 +g1,6809:7895356,29150679 +g1,6809:8527648,29150679 +g1,6809:10424522,29150679 +g1,6809:11372959,29150679 +h1,6809:12005250,29150679:0,0,0 +k1,6809:32583030,29150679:20577780 +g1,6809:32583030,29150679 +) +(1,6809:6630773,29816857:25952256,404226,82312 +h1,6809:6630773,29816857:0,0,0 +g1,6809:7579210,29816857 +g1,6809:7895356,29816857 +g1,6809:8211502,29816857 +g1,6809:9476085,29816857 +g1,6809:12005251,29816857 +g1,6809:15166708,29816857 +g1,6809:16431291,29816857 +h1,6809:17695874,29816857:0,0,0 +k1,6809:32583029,29816857:14887155 +g1,6809:32583029,29816857 +) +(1,6809:6630773,30483035:25952256,410518,31456 +h1,6809:6630773,30483035:0,0,0 +g1,6809:7579210,30483035 +g1,6809:7895356,30483035 +g1,6809:8527648,30483035 +g1,6809:10424522,30483035 +g1,6809:11372959,30483035 +h1,6809:12005250,30483035:0,0,0 +k1,6809:32583030,30483035:20577780 +g1,6809:32583030,30483035 +) +(1,6809:6630773,31149213:25952256,404226,82312 +h1,6809:6630773,31149213:0,0,0 +g1,6809:7579210,31149213 +g1,6809:7895356,31149213 +g1,6809:8211502,31149213 +g1,6809:9476085,31149213 +g1,6809:12005251,31149213 +g1,6809:15166708,31149213 +g1,6809:16431291,31149213 +h1,6809:17695874,31149213:0,0,0 +k1,6809:32583029,31149213:14887155 +g1,6809:32583029,31149213 +) +(1,6811:6630773,32470751:25952256,404226,82312 +(1,6810:6630773,32470751:0,0,0 +g1,6810:6630773,32470751 +g1,6810:6630773,32470751 +g1,6810:6303093,32470751 +(1,6810:6303093,32470751:0,0,0 +) +g1,6810:6630773,32470751 +) +k1,6811:6630773,32470751:0 +g1,6811:11372959,32470751 +h1,6811:13902124,32470751:0,0,0 +k1,6811:32583028,32470751:18680904 +g1,6811:32583028,32470751 +) +(1,6825:6630773,33202465:25952256,410518,101187 +(1,6813:6630773,33202465:0,0,0 +g1,6813:6630773,33202465 +g1,6813:6630773,33202465 +g1,6813:6303093,33202465 +(1,6813:6303093,33202465:0,0,0 +) +g1,6813:6630773,33202465 +) +g1,6825:7579210,33202465 +g1,6825:10424521,33202465 +g1,6825:11372958,33202465 +g1,6825:14218269,33202465 +h1,6825:15798997,33202465:0,0,0 +k1,6825:32583029,33202465:16784032 +g1,6825:32583029,33202465 +) +(1,6825:6630773,33868643:25952256,379060,0 +h1,6825:6630773,33868643:0,0,0 +h1,6825:7263064,33868643:0,0,0 +k1,6825:32583028,33868643:25319964 +g1,6825:32583028,33868643 +) +(1,6825:6630773,34534821:25952256,404226,101187 +h1,6825:6630773,34534821:0,0,0 +g1,6825:7579210,34534821 +g1,6825:9476084,34534821 +g1,6825:10424521,34534821 +g1,6825:11056813,34534821 +g1,6825:11689105,34534821 +h1,6825:12005251,34534821:0,0,0 +k1,6825:32583029,34534821:20577778 +g1,6825:32583029,34534821 +) +(1,6825:6630773,35200999:25952256,404226,101187 +h1,6825:6630773,35200999:0,0,0 +g1,6825:7579210,35200999 +g1,6825:9476084,35200999 +g1,6825:10424521,35200999 +g1,6825:11056813,35200999 +g1,6825:11689105,35200999 +g1,6825:12321397,35200999 +g1,6825:12953689,35200999 +h1,6825:13269835,35200999:0,0,0 +k1,6825:32583029,35200999:19313194 +g1,6825:32583029,35200999 +) +(1,6825:6630773,35867177:25952256,404226,101187 +h1,6825:6630773,35867177:0,0,0 +g1,6825:7579210,35867177 +g1,6825:9476084,35867177 +g1,6825:10424521,35867177 +g1,6825:11056813,35867177 +g1,6825:11689105,35867177 +g1,6825:12321397,35867177 +g1,6825:12953689,35867177 +h1,6825:14850563,35867177:0,0,0 +k1,6825:32583029,35867177:17732466 +g1,6825:32583029,35867177 +) +(1,6825:6630773,36533355:25952256,410518,101187 +h1,6825:6630773,36533355:0,0,0 +g1,6825:7579210,36533355 +g1,6825:7895356,36533355 +g1,6825:8211502,36533355 +g1,6825:10424522,36533355 +g1,6825:10740668,36533355 +g1,6825:11056814,36533355 +g1,6825:11372960,36533355 +g1,6825:11689106,36533355 +g1,6825:12953689,36533355 +g1,6825:13902126,36533355 +g1,6825:15166709,36533355 +g1,6825:16115146,36533355 +g1,6825:17063583,36533355 +g1,6825:17379729,36533355 +g1,6825:17695875,36533355 +g1,6825:18012021,36533355 +g1,6825:18328167,36533355 +g1,6825:18644313,36533355 +g1,6825:19276605,36533355 +g1,6825:19592751,36533355 +g1,6825:19908897,36533355 +g1,6825:20225043,36533355 +k1,6825:20225043,36533355:0 +h1,6825:22121917,36533355:0,0,0 +k1,6825:32583029,36533355:10461112 +g1,6825:32583029,36533355 +) +(1,6825:6630773,37199533:25952256,388497,9436 +h1,6825:6630773,37199533:0,0,0 +g1,6825:7579210,37199533 +g1,6825:8211502,37199533 +g1,6825:8527648,37199533 +g1,6825:8843794,37199533 +g1,6825:9159940,37199533 +g1,6825:9476086,37199533 +g1,6825:9792232,37199533 +g1,6825:10424524,37199533 +h1,6825:12637544,37199533:0,0,0 +k1,6825:32583028,37199533:19945484 +g1,6825:32583028,37199533 +) +(1,6825:6630773,37865711:25952256,388497,9436 +h1,6825:6630773,37865711:0,0,0 +g1,6825:7579210,37865711 +g1,6825:8211502,37865711 +g1,6825:8527648,37865711 +g1,6825:8843794,37865711 +g1,6825:9159940,37865711 +g1,6825:9476086,37865711 +g1,6825:9792232,37865711 +g1,6825:10424524,37865711 +g1,6825:12953690,37865711 +g1,6825:13902127,37865711 +g1,6825:14218273,37865711 +g1,6825:14534419,37865711 +g1,6825:17063585,37865711 +g1,6825:19276605,37865711 +g1,6825:22438062,37865711 +h1,6825:23386499,37865711:0,0,0 +k1,6825:32583029,37865711:9196530 +g1,6825:32583029,37865711 +) +(1,6825:6630773,38531889:25952256,388497,9436 +h1,6825:6630773,38531889:0,0,0 +g1,6825:7579210,38531889 +g1,6825:8211502,38531889 +g1,6825:8527648,38531889 +g1,6825:8843794,38531889 +g1,6825:9159940,38531889 +g1,6825:9476086,38531889 +g1,6825:9792232,38531889 +g1,6825:10424524,38531889 +g1,6825:12953690,38531889 +g1,6825:13269836,38531889 +g1,6825:13902128,38531889 +g1,6825:14218274,38531889 +g1,6825:14534420,38531889 +g1,6825:14850566,38531889 +g1,6825:17063586,38531889 +g1,6825:19276606,38531889 +g1,6825:22438063,38531889 +h1,6825:23386500,38531889:0,0,0 +k1,6825:32583029,38531889:9196529 +g1,6825:32583029,38531889 +) +(1,6825:6630773,39198067:25952256,379060,0 +h1,6825:6630773,39198067:0,0,0 +g1,6825:7579210,39198067 +k1,6825:7579210,39198067:0 +h1,6825:8527648,39198067:0,0,0 +k1,6825:32583028,39198067:24055380 +g1,6825:32583028,39198067 +) +(1,6825:6630773,39864245:25952256,410518,107478 +h1,6825:6630773,39864245:0,0,0 +g1,6825:7579210,39864245 +g1,6825:10108376,39864245 +g1,6825:12321396,39864245 +g1,6825:12637542,39864245 +g1,6825:13269834,39864245 +g1,6825:15166709,39864245 +g1,6825:17063583,39864245 +g1,6825:18644312,39864245 +g1,6825:20225041,39864245 +g1,6825:21489625,39864245 +g1,6825:23070354,39864245 +g1,6825:24334938,39864245 +g1,6825:25599521,39864245 +g1,6825:26231813,39864245 +g1,6825:26864105,39864245 +h1,6825:27180251,39864245:0,0,0 +k1,6825:32583029,39864245:5402778 +g1,6825:32583029,39864245 +) +] +) +g1,6826:32583029,39971723 +g1,6826:6630773,39971723 +g1,6826:6630773,39971723 +g1,6826:32583029,39971723 +g1,6826:32583029,39971723 +) +h1,6826:6630773,40168331:0,0,0 +(1,6829:6630773,42783879:25952256,555811,147783 +(1,6829:6630773,42783879:2450326,534184,12975 +g1,6829:6630773,42783879 +g1,6829:9081099,42783879 +) +g1,6829:12021634,42783879 +k1,6829:32583028,42783879:17814780 +g1,6829:32583028,42783879 +) +(1,6831:6630773,44018583:25952256,513147,134348 +k1,6830:7835329,44018583:162534 +k1,6830:10273274,44018583:162535 +k1,6830:13168659,44018583:162534 +k1,6830:14140564,44018583:162535 +k1,6830:15322183,44018583:162534 +k1,6830:17859743,44018583:162535 +k1,6830:18689433,44018583:162534 +k1,6830:19266774,44018583:162498 +k1,6830:22558652,44018583:162534 +k1,6830:23337225,44018583:162535 +k1,6830:24518844,44018583:162534 +k1,6830:27025602,44018583:162535 +k1,6830:29779430,44018583:162534 +k1,6830:30154920,44018583:162498 +k1,6830:32583029,44018583:0 +) +(1,6831:6630773,44860071:25952256,513147,95026 +g1,6830:7849087,44860071 +g1,6830:9960657,44860071 +(1,6830:9960657,44860071:3955753,513147,11795 +) +g1,6830:14115639,44860071 +(1,6830:14322733,44860071:3955753,513147,11795 +) +g1,6830:18684809,44860071 +g1,6830:20075483,44860071 +(1,6830:20075483,44860071:4681892,505283,11795 +) +g1,6830:24956604,44860071 +(1,6830:25163698,44860071:4681892,505283,11795 +) +k1,6831:32583029,44860071:2356675 +g1,6831:32583029,44860071 +) +] +(1,6836:32583029,45706769:0,0,0 +g1,6836:32583029,45706769 +) +) +] +(1,6836:6630773,47279633:25952256,0,0 +h1,6836:6630773,47279633:25952256,0,0 +) +] +h1,6836:4262630,4025873:0,0,0 +] +!23947 }127 -Input:955:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:956:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:957:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:958:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:959:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:960:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:961:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:962:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:963:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:964:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:965:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:966:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:967:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1117 +Input:951:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:952:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:953:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:954:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:955:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:956:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:957:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:958:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:959:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:960:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:961:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:962:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:963:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1195 {128 -[1,6848:4262630,47279633:28320399,43253760,0 -(1,6848:4262630,4025873:0,0,0 -[1,6848:-473657,4025873:25952256,0,0 -(1,6848:-473657,-710414:25952256,0,0 -h1,6848:-473657,-710414:0,0,0 -(1,6848:-473657,-710414:0,0,0 -(1,6848:-473657,-710414:0,0,0 -g1,6848:-473657,-710414 -(1,6848:-473657,-710414:65781,0,65781 -g1,6848:-407876,-710414 -[1,6848:-407876,-644633:0,0,0 +[1,6853:4262630,47279633:28320399,43253760,0 +(1,6853:4262630,4025873:0,0,0 +[1,6853:-473657,4025873:25952256,0,0 +(1,6853:-473657,-710414:25952256,0,0 +h1,6853:-473657,-710414:0,0,0 +(1,6853:-473657,-710414:0,0,0 +(1,6853:-473657,-710414:0,0,0 +g1,6853:-473657,-710414 +(1,6853:-473657,-710414:65781,0,65781 +g1,6853:-407876,-710414 +[1,6853:-407876,-644633:0,0,0 ] ) -k1,6848:-473657,-710414:-65781 +k1,6853:-473657,-710414:-65781 ) ) -k1,6848:25478599,-710414:25952256 -g1,6848:25478599,-710414 +k1,6853:25478599,-710414:25952256 +g1,6853:25478599,-710414 ) ] ) -[1,6848:6630773,47279633:25952256,43253760,0 -[1,6848:6630773,4812305:25952256,786432,0 -(1,6848:6630773,4812305:25952256,0,0 -(1,6848:6630773,4812305:25952256,0,0 -g1,6848:3078558,4812305 -[1,6848:3078558,4812305:0,0,0 -(1,6848:3078558,2439708:0,1703936,0 -k1,6848:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,6848:2537886,2439708:1179648,16384,0 +[1,6853:6630773,47279633:25952256,43253760,0 +[1,6853:6630773,4812305:25952256,786432,0 +(1,6853:6630773,4812305:25952256,0,0 +(1,6853:6630773,4812305:25952256,0,0 +g1,6853:3078558,4812305 +[1,6853:3078558,4812305:0,0,0 +(1,6853:3078558,2439708:0,1703936,0 +k1,6853:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,6853:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,6848:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,6853:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,6848:3078558,4812305:0,0,0 -(1,6848:3078558,2439708:0,1703936,0 -g1,6848:29030814,2439708 -g1,6848:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,6848:36151628,1915420:16384,1179648,0 +[1,6853:3078558,4812305:0,0,0 +(1,6853:3078558,2439708:0,1703936,0 +g1,6853:29030814,2439708 +g1,6853:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,6853:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,6848:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,6853:37855564,2439708:1179648,16384,0 ) ) -k1,6848:3078556,2439708:-34777008 +k1,6853:3078556,2439708:-34777008 ) ] -[1,6848:3078558,4812305:0,0,0 -(1,6848:3078558,49800853:0,16384,2228224 -k1,6848:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,6848:2537886,49800853:1179648,16384,0 +[1,6853:3078558,4812305:0,0,0 +(1,6853:3078558,49800853:0,16384,2228224 +k1,6853:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,6853:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,6848:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,6853:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,6848:3078558,4812305:0,0,0 -(1,6848:3078558,49800853:0,16384,2228224 -g1,6848:29030814,49800853 -g1,6848:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,6848:36151628,51504789:16384,1179648,0 +[1,6853:3078558,4812305:0,0,0 +(1,6853:3078558,49800853:0,16384,2228224 +g1,6853:29030814,49800853 +g1,6853:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,6853:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,6848:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,6853:37855564,49800853:1179648,16384,0 ) ) -k1,6848:3078556,49800853:-34777008 +k1,6853:3078556,49800853:-34777008 ) ] -g1,6848:6630773,4812305 +g1,6853:6630773,4812305 ) ) ] -[1,6848:6630773,45706769:25952256,40108032,0 -(1,6848:6630773,45706769:25952256,40108032,0 -(1,6848:6630773,45706769:0,0,0 -g1,6848:6630773,45706769 +[1,6853:6630773,45706769:25952256,40108032,0 +(1,6853:6630773,45706769:25952256,40108032,0 +(1,6853:6630773,45706769:0,0,0 +g1,6853:6630773,45706769 ) -[1,6848:6630773,45706769:25952256,40108032,0 -[1,6830:6630773,11649578:25952256,6050841,0 -(1,6830:6630773,6619002:25952256,1151337,0 -h1,6830:6630773,6619002:0,0,0 -k1,6830:20096848,6619002:12486181 -k1,6830:32583029,6619002:12486181 +[1,6853:6630773,45706769:25952256,40108032,0 +[1,6836:6630773,11649578:25952256,6050841,0 +(1,6836:6630773,6619002:25952256,1151337,0 +h1,6836:6630773,6619002:0,0,0 +k1,6836:20096848,6619002:12486181 +k1,6836:32583029,6619002:12486181 ) -(1,6830:6630773,7318938:25952256,32768,229376 -(1,6830:6630773,7318938:0,32768,229376 -(1,6830:6630773,7318938:5505024,32768,229376 -r1,6830:12135797,7318938:5505024,262144,229376 +(1,6836:6630773,7318938:25952256,32768,229376 +(1,6836:6630773,7318938:0,32768,229376 +(1,6836:6630773,7318938:5505024,32768,229376 +r1,6836:12135797,7318938:5505024,262144,229376 ) -k1,6830:6630773,7318938:-5505024 +k1,6836:6630773,7318938:-5505024 ) -(1,6830:6630773,7318938:25952256,32768,0 -r1,6830:32583029,7318938:25952256,32768,0 +(1,6836:6630773,7318938:25952256,32768,0 +r1,6836:32583029,7318938:25952256,32768,0 ) ) -(1,6830:6630773,9114634:25952256,909509,241827 -h1,6830:6630773,9114634:0,0,0 -g1,6830:9126908,9114634 -g1,6830:10294760,9114634 -g1,6830:16260240,9114634 -k1,6830:26815141,9114634:5767889 -k1,6830:32583029,9114634:5767888 -) -(1,6830:6630773,9814570:25952256,32768,0 -(1,6830:6630773,9814570:5505024,32768,0 -r1,6830:12135797,9814570:5505024,32768,0 -) -k1,6830:22359413,9814570:10223616 -k1,6830:32583029,9814570:10223616 -) -] -(1,6832:6630773,14542343:25952256,131072,0 -r1,6832:32583029,14542343:25952256,131072,0 -g1,6832:32583029,14542343 -g1,6832:32583029,14542343 -) -(1,6834:6630773,15862244:25952256,513147,134348 -g1,6834:8596853,15862244 -g1,6833:9992769,15862244 -g1,6833:12808851,15862244 -g1,6833:13667372,15862244 -g1,6833:17297411,15862244 -g1,6833:18028137,15862244 -g1,6833:20594526,15862244 -g1,6833:21860026,15862244 -k1,6834:30616949,15862244:5767171 -g1,6834:32583029,15862244 -) -(1,6835:6630773,17490164:25952256,505283,134348 -k1,6835:23887713,17490164:17256940 -h1,6835:23887713,17490164:0,0,0 -g1,6835:26546508,17490164 -g1,6835:27525615,17490164 -g1,6835:30616948,17490164 -g1,6835:32583028,17490164 -) -(1,6836:6630773,18331652:25952256,513147,134348 -k1,6836:13726357,18331652:7095584 -h1,6835:13726357,18331652:0,0,0 -g1,6835:17200420,18331652 -g1,6835:20006016,18331652 -g1,6835:21129303,18331652 -g1,6835:24181314,18331652 -g1,6835:25590993,18331652 -g1,6835:29023113,18331652 -g1,6836:30616949,18331652 -g1,6836:32583029,18331652 -) -(1,6836:6630773,19566356:25952256,131072,0 -r1,6836:32583029,19566356:25952256,131072,0 -g1,6836:32583029,19566356 -g1,6836:34549109,19566356 -) -(1,6838:6630773,22373924:25952256,32768,229376 -(1,6838:6630773,22373924:0,32768,229376 -(1,6838:6630773,22373924:5505024,32768,229376 -r1,6838:12135797,22373924:5505024,262144,229376 -) -k1,6838:6630773,22373924:-5505024 -) -(1,6838:6630773,22373924:25952256,32768,0 -r1,6838:32583029,22373924:25952256,32768,0 -) -) -(1,6838:6630773,23978252:25952256,615776,151780 -(1,6838:6630773,23978252:1974731,575668,0 -g1,6838:6630773,23978252 -g1,6838:8605504,23978252 -) -g1,6838:10904245,23978252 -g1,6838:11961996,23978252 -g1,6838:13695292,23978252 -k1,6838:32583029,23978252:15886712 -g1,6838:32583029,23978252 -) -(1,6841:6630773,25212956:25952256,505283,134348 -k1,6840:8198956,25212956:187339 -k1,6840:10803919,25212956:187340 -k1,6840:12498586,25212956:187339 -k1,6840:13337353,25212956:187339 -k1,6840:14804610,25212956:187339 -k1,6840:16011035,25212956:187340 -k1,6840:18246374,25212956:187339 -k1,6840:19809314,25212956:187339 -k1,6840:20352514,25212956:187340 -k1,6840:22286387,25212956:187339 -k1,6840:26466179,25212956:187339 -k1,6840:27304946,25212956:187339 -k1,6840:30345724,25212956:187340 -k1,6840:31149101,25212956:187339 -k1,6841:32583029,25212956:0 -) -(1,6841:6630773,26054444:25952256,513147,134348 -k1,6840:7464475,26054444:245189 -k1,6840:8395827,26054444:245190 -k1,6840:10295800,26054444:245189 -k1,6840:11532550,26054444:245190 -k1,6840:13529516,26054444:245189 -k1,6840:15358710,26054444:245189 -k1,6840:17160380,26054444:245190 -k1,6840:18214939,26054444:245189 -k1,6840:19479213,26054444:245189 -k1,6840:20816888,26054444:245190 -k1,6840:21729233,26054444:245189 -k1,6840:22389219,26054444:245143 -k1,6840:23582060,26054444:245190 -k1,6840:26589592,26054444:245189 -k1,6840:28594424,26054444:245190 -k1,6840:29498905,26054444:245189 -k1,6840:32583029,26054444:0 -) -(1,6841:6630773,26895932:25952256,513147,134348 -k1,6840:9556956,26895932:225444 -k1,6840:11014476,26895932:225443 -k1,6840:13515330,26895932:225444 -k1,6840:16143324,26895932:225444 -k1,6840:17178137,26895932:225443 -k1,6840:18901734,26895932:225444 -h1,6840:20097111,26895932:0,0,0 -k1,6840:20703319,26895932:225444 -k1,6840:23891645,26895932:225443 -k1,6840:25868866,26895932:225444 -k1,6840:26753602,26895932:225444 -k1,6840:28412973,26895932:225443 -k1,6840:29557232,26895932:225444 -k1,6840:32583029,26895932:0 -) -(1,6841:6630773,27737420:25952256,513147,134348 -k1,6840:7772356,27737420:150023 -k1,6840:10319686,27737420:150023 -k1,6840:11121136,27737420:150022 -k1,6840:12965920,27737420:150023 -k1,6840:16200067,27737420:150023 -k1,6840:20109890,27737420:150023 -k1,6840:21640101,27737420:150023 -k1,6840:22882609,27737420:150023 -k1,6840:23388491,27737420:150022 -k1,6840:26659338,27737420:150023 -k1,6840:29793871,27737420:150023 -k1,6840:30595322,27737420:150023 -k1,6840:32583029,27737420:0 -) -(1,6841:6630773,28578908:25952256,513147,134348 -k1,6840:10838075,28578908:186668 -k1,6840:12216188,28578908:186668 -k1,6840:13350507,28578908:186668 -k1,6840:16538069,28578908:186668 -k1,6840:17743822,28578908:186668 -k1,6840:21139133,28578908:186668 -k1,6840:23336447,28578908:186669 -k1,6840:24807621,28578908:186668 -k1,6840:26098571,28578908:186668 -k1,6840:27033005,28578908:186668 -k1,6840:30718640,28578908:186668 -k1,6840:31261168,28578908:186668 -k1,6840:32583029,28578908:0 -) -(1,6841:6630773,29420396:25952256,513147,134348 -k1,6840:7467408,29420396:177343 -k1,6840:8663836,29420396:177343 -k1,6840:9256001,29420396:177322 -k1,6840:12449311,29420396:177343 -k1,6840:14114977,29420396:177343 -k1,6840:15462794,29420396:177344 -k1,6840:16772599,29420396:177343 -k1,6840:18561472,29420396:177343 -k1,6840:19757900,29420396:177343 -k1,6840:23597396,29420396:177344 -k1,6840:25287965,29420396:177343 -k1,6840:26081346,29420396:177343 -k1,6840:26673511,29420396:177322 -k1,6840:27798505,29420396:177343 -k1,6840:31426974,29420396:177343 -k1,6841:32583029,29420396:0 -) -(1,6841:6630773,30261884:25952256,513147,134348 -k1,6840:8909834,30261884:138000 -k1,6840:12729647,30261884:138000 -k1,6840:16242751,30261884:138000 -k1,6840:21830725,30261884:138000 -k1,6840:24958477,30261884:138000 -k1,6840:28192398,30261884:138000 -k1,6840:30265021,30261884:138000 -k1,6840:32583029,30261884:0 -) -(1,6841:6630773,31103372:25952256,513147,134348 -k1,6840:8044385,31103372:222167 -k1,6840:10884060,31103372:222167 -k1,6840:12172498,31103372:222167 -k1,6840:13916411,31103372:222167 -k1,6840:14797870,31103372:222167 -k1,6840:18931226,31103372:222167 -k1,6840:20106941,31103372:222166 -k1,6840:21461570,31103372:222167 -k1,6840:22776222,31103372:222167 -k1,6840:24811115,31103372:222167 -k1,6840:28687569,31103372:222167 -k1,6840:30770303,31103372:222167 -k1,6840:32583029,31103372:0 -) -(1,6841:6630773,31944860:25952256,505283,134348 -k1,6840:9319570,31944860:197118 -k1,6840:13208985,31944860:197117 -k1,6840:15218829,31944860:197118 -k1,6840:17907626,31944860:197118 -k1,6840:21354673,31944860:197117 -k1,6840:23869799,31944860:197118 -k1,6840:25258362,31944860:197118 -k1,6840:27147619,31944860:197117 -k1,6840:29469414,31944860:197118 -k1,6841:32583029,31944860:0 -) -(1,6841:6630773,32786348:25952256,513147,134348 -k1,6840:7755370,32786348:164495 -k1,6840:10704490,32786348:164495 -k1,6840:11555147,32786348:164495 -k1,6840:14885032,32786348:164496 -k1,6840:15974240,32786348:164495 -k1,6840:17315762,32786348:164495 -k1,6840:18011754,32786348:164495 -k1,6840:20875022,32786348:164495 -k1,6840:22369898,32786348:164495 -k1,6840:23185822,32786348:164496 -k1,6840:25609343,32786348:164495 -k1,6840:28265517,32786348:164495 -k1,6840:31391584,32786348:164495 -k1,6840:32583029,32786348:0 -) -(1,6841:6630773,33627836:25952256,513147,134348 -k1,6840:8208930,33627836:188794 -k1,6840:10084621,33627836:188794 -k1,6840:11464860,33627836:188794 -k1,6840:12984034,33627836:188793 -k1,6840:13824256,33627836:188794 -k1,6840:16044011,33627836:188794 -k1,6840:18995148,33627836:188794 -k1,6840:23111515,33627836:188794 -k1,6840:23959601,33627836:188794 -k1,6840:25167479,33627836:188793 -k1,6840:27646101,33627836:188794 -k1,6840:30613622,33627836:188794 -k1,6840:31563944,33627836:188794 -k1,6840:32583029,33627836:0 -) -(1,6841:6630773,34469324:25952256,513147,134348 -g1,6840:11453567,34469324 -g1,6840:12340269,34469324 -g1,6840:13730943,34469324 -g1,6840:16920580,34469324 -k1,6841:32583029,34469324:12462981 -g1,6841:32583029,34469324 -) -(1,6844:6630773,37276892:25952256,32768,229376 -(1,6844:6630773,37276892:0,32768,229376 -(1,6844:6630773,37276892:5505024,32768,229376 -r1,6844:12135797,37276892:5505024,262144,229376 -) -k1,6844:6630773,37276892:-5505024 -) -(1,6844:6630773,37276892:25952256,32768,0 -r1,6844:32583029,37276892:25952256,32768,0 -) -) -(1,6844:6630773,38881220:25952256,606339,14155 -(1,6844:6630773,38881220:1974731,582746,0 -g1,6844:6630773,38881220 -g1,6844:8605504,38881220 -) -g1,6844:12684727,38881220 -k1,6844:32583029,38881220:15540682 -g1,6844:32583029,38881220 -) -(1,6848:6630773,40115924:25952256,513147,134348 -k1,6847:8643395,40115924:275918 -k1,6847:9938397,40115924:275917 -k1,6847:11806185,40115924:275918 -k1,6847:13820117,40115924:275917 -k1,6847:14755327,40115924:275918 -k1,6847:16050329,40115924:275917 -k1,6847:16741013,40115924:275841 -k1,6847:19859226,40115924:275917 -k1,6847:20751182,40115924:275918 -k1,6847:22416462,40115924:275917 -k1,6847:25246973,40115924:275918 -k1,6847:26714335,40115924:275917 -k1,6847:30017361,40115924:275918 -k1,6847:30708044,40115924:275840 -k1,6848:32583029,40115924:0 -) -(1,6848:6630773,40957412:25952256,513147,134348 -k1,6847:7988202,40957412:259046 -k1,6847:11273045,40957412:259046 -k1,6847:12479741,40957412:259045 -k1,6847:14205483,40957412:259046 -k1,6847:16589206,40957412:259046 -k1,6847:18039697,40957412:259046 -k1,6847:20985064,40957412:259046 -k1,6847:25219524,40957412:259046 -k1,6847:27237555,40957412:259045 -k1,6847:29064222,40957412:259046 -k1,6847:31391584,40957412:259046 -k1,6847:32583029,40957412:0 -) -(1,6848:6630773,41798900:25952256,513147,134348 -k1,6847:9824998,41798900:209715 -k1,6847:10686141,41798900:209715 -k1,6847:12830479,41798900:209715 -k1,6847:14394168,41798900:209715 -k1,6847:17290204,41798900:209715 -k1,6847:19991597,41798900:209714 -k1,6847:22068433,41798900:209715 -k1,6847:23269708,41798900:209715 -k1,6847:26471142,41798900:209715 -k1,6847:27340149,41798900:209715 -k1,6847:30575661,41798900:209715 -k1,6848:32583029,41798900:0 -) -(1,6848:6630773,42640388:25952256,513147,134348 -k1,6847:9495649,42640388:235572 -k1,6847:10750306,42640388:235572 -k1,6847:14457320,42640388:235572 -k1,6847:15352184,42640388:235572 -k1,6847:16606841,42640388:235572 -k1,6847:20147395,42640388:235573 -k1,6847:21896193,42640388:235572 -k1,6847:23521128,42640388:235572 -k1,6847:27264842,42640388:235572 -k1,6847:29238429,42640388:235572 -k1,6847:30156886,42640388:235572 -k1,6847:32583029,42640388:0 -) -(1,6848:6630773,43481876:25952256,505283,115847 -(1,6847:6837867,43481876:0,452978,115847 -r1,6847:8954692,43481876:2116825,568825,115847 -k1,6847:6837867,43481876:-2116825 -) -(1,6847:6837867,43481876:2116825,452978,115847 -k1,6847:6837867,43481876:3277 -h1,6847:8951415,43481876:0,411205,112570 -) -k1,6847:9554390,43481876:218934 -k1,6847:12427531,43481876:218933 -(1,6847:12634625,43481876:0,452978,115847 -r1,6847:14399738,43481876:1765113,568825,115847 -k1,6847:12634625,43481876:-1765113 -) -(1,6847:12634625,43481876:1765113,452978,115847 -k1,6847:12634625,43481876:3277 -h1,6847:14396461,43481876:0,411205,112570 -) -k1,6847:14999436,43481876:218934 -k1,6847:18061977,43481876:218934 -k1,6847:21230685,43481876:218933 -(1,6847:21437779,43481876:0,452978,115847 -r1,6847:22851180,43481876:1413401,568825,115847 -k1,6847:21437779,43481876:-1413401 -) -(1,6847:21437779,43481876:1413401,452978,115847 -k1,6847:21437779,43481876:3277 -h1,6847:22847903,43481876:0,411205,112570 -) -k1,6847:23450878,43481876:218934 -k1,6847:26029763,43481876:218934 -(1,6847:26236857,43481876:0,452978,115847 -r1,6847:29057106,43481876:2820249,568825,115847 -k1,6847:26236857,43481876:-2820249 -) -(1,6847:26236857,43481876:2820249,452978,115847 -k1,6847:26236857,43481876:3277 -h1,6847:29053829,43481876:0,411205,112570 -) -k1,6847:29656803,43481876:218933 -k1,6847:31613752,43481876:218934 -k1,6848:32583029,43481876:0 -) -(1,6848:6630773,44323364:25952256,505283,134348 -k1,6847:8739571,44323364:159757 -k1,6847:11849104,44323364:159758 -(1,6847:12056198,44323364:0,452978,115847 -r1,6847:13821311,44323364:1765113,568825,115847 -k1,6847:12056198,44323364:-1765113 -) -(1,6847:12056198,44323364:1765113,452978,115847 -k1,6847:12056198,44323364:3277 -h1,6847:13818034,44323364:0,411205,112570 -) -k1,6847:14361832,44323364:159757 -k1,6847:16304169,44323364:159758 -(1,6847:16511263,44323364:0,452978,115847 -r1,6847:18628088,44323364:2116825,568825,115847 -k1,6847:16511263,44323364:-2116825 -) -(1,6847:16511263,44323364:2116825,452978,115847 -k1,6847:16511263,44323364:3277 -h1,6847:18624811,44323364:0,411205,112570 -) -k1,6847:19168609,44323364:159757 -k1,6847:22525213,44323364:159758 -(1,6847:22732307,44323364:0,452978,115847 -r1,6847:24497420,44323364:1765113,568825,115847 -k1,6847:22732307,44323364:-1765113 -) -(1,6847:22732307,44323364:1765113,452978,115847 -k1,6847:22732307,44323364:3277 -h1,6847:24494143,44323364:0,411205,112570 -) -k1,6847:25037941,44323364:159757 -k1,6847:28289688,44323364:159758 -(1,6847:28496782,44323364:0,452978,115847 -r1,6847:30261895,44323364:1765113,568825,115847 -k1,6847:28496782,44323364:-1765113 -) -(1,6847:28496782,44323364:1765113,452978,115847 -k1,6847:28496782,44323364:3277 -h1,6847:30258618,44323364:0,411205,112570 -) -k1,6847:30802416,44323364:159757 -k1,6847:32583029,44323364:0 -) -(1,6848:6630773,45164852:25952256,505283,134348 -(1,6847:6837867,45164852:0,452978,122846 -r1,6847:9306404,45164852:2468537,575824,122846 -k1,6847:6837867,45164852:-2468537 -) -(1,6847:6837867,45164852:2468537,452978,122846 -k1,6847:6837867,45164852:3277 -h1,6847:9303127,45164852:0,411205,112570 -) -k1,6847:9854309,45164852:167141 -k1,6847:12952219,45164852:167140 -(1,6847:13159313,45164852:0,452978,115847 -r1,6847:16682985,45164852:3523672,568825,115847 -k1,6847:13159313,45164852:-3523672 +(1,6836:6630773,9114634:25952256,909509,241827 +h1,6836:6630773,9114634:0,0,0 +g1,6836:9126908,9114634 +g1,6836:10294760,9114634 +g1,6836:16260240,9114634 +k1,6836:26879431,9114634:5703598 +k1,6836:32583029,9114634:5703598 +) +(1,6836:6630773,9814570:25952256,32768,0 +(1,6836:6630773,9814570:5505024,32768,0 +r1,6836:12135797,9814570:5505024,32768,0 +) +k1,6836:22359413,9814570:10223616 +k1,6836:32583029,9814570:10223616 +) +] +(1,6838:6630773,14542343:25952256,131072,0 +r1,6838:32583029,14542343:25952256,131072,0 +g1,6838:32583029,14542343 +g1,6838:32583029,14542343 +) +(1,6840:6630773,15862244:25952256,513147,134348 +g1,6840:8596853,15862244 +g1,6839:9992769,15862244 +g1,6839:12808851,15862244 +g1,6839:13667372,15862244 +g1,6839:17297411,15862244 +g1,6839:18028137,15862244 +g1,6839:20594526,15862244 +g1,6839:21860026,15862244 +k1,6840:30616949,15862244:5767171 +g1,6840:32583029,15862244 +) +(1,6841:6630773,17490164:25952256,505283,134348 +k1,6841:23887713,17490164:17256940 +h1,6841:23887713,17490164:0,0,0 +g1,6841:26546508,17490164 +g1,6841:27525615,17490164 +g1,6841:30616948,17490164 +g1,6841:32583028,17490164 +) +(1,6842:6630773,18331652:25952256,513147,134348 +k1,6842:13726357,18331652:7095584 +h1,6841:13726357,18331652:0,0,0 +g1,6841:17200420,18331652 +g1,6841:20006016,18331652 +g1,6841:21129303,18331652 +g1,6841:24181314,18331652 +g1,6841:25590993,18331652 +g1,6841:29023113,18331652 +g1,6842:30616949,18331652 +g1,6842:32583029,18331652 +) +(1,6842:6630773,19566356:25952256,131072,0 +r1,6842:32583029,19566356:25952256,131072,0 +g1,6842:32583029,19566356 +g1,6842:34549109,19566356 +) +(1,6844:6630773,22373924:25952256,32768,229376 +(1,6844:6630773,22373924:0,32768,229376 +(1,6844:6630773,22373924:5505024,32768,229376 +r1,6844:12135797,22373924:5505024,262144,229376 +) +k1,6844:6630773,22373924:-5505024 +) +(1,6844:6630773,22373924:25952256,32768,0 +r1,6844:32583029,22373924:25952256,32768,0 +) +) +(1,6844:6630773,23978252:25952256,615776,151780 +(1,6844:6630773,23978252:1974731,575668,0 +g1,6844:6630773,23978252 +g1,6844:8605504,23978252 +) +g1,6844:10904245,23978252 +g1,6844:11961996,23978252 +g1,6844:13695292,23978252 +k1,6844:32583029,23978252:15886712 +g1,6844:32583029,23978252 +) +(1,6847:6630773,25212956:25952256,505283,134348 +k1,6846:8198956,25212956:187339 +k1,6846:10803919,25212956:187340 +k1,6846:12498586,25212956:187339 +k1,6846:13337353,25212956:187339 +k1,6846:14804610,25212956:187339 +k1,6846:16011035,25212956:187340 +k1,6846:18246374,25212956:187339 +k1,6846:19809314,25212956:187339 +k1,6846:20352514,25212956:187340 +k1,6846:22286387,25212956:187339 +k1,6846:26466179,25212956:187339 +k1,6846:27304946,25212956:187339 +k1,6846:30345724,25212956:187340 +k1,6846:31149101,25212956:187339 +k1,6847:32583029,25212956:0 +) +(1,6847:6630773,26054444:25952256,513147,134348 +k1,6846:7464475,26054444:245189 +k1,6846:8395827,26054444:245190 +k1,6846:10295800,26054444:245189 +k1,6846:11532550,26054444:245190 +k1,6846:13529516,26054444:245189 +k1,6846:15358710,26054444:245189 +k1,6846:17160380,26054444:245190 +k1,6846:18214939,26054444:245189 +k1,6846:19479213,26054444:245189 +k1,6846:20816888,26054444:245190 +k1,6846:21729233,26054444:245189 +k1,6846:22389219,26054444:245143 +k1,6846:23582060,26054444:245190 +k1,6846:26589592,26054444:245189 +k1,6846:28594424,26054444:245190 +k1,6846:29498905,26054444:245189 +k1,6846:32583029,26054444:0 +) +(1,6847:6630773,26895932:25952256,513147,134348 +k1,6846:9556956,26895932:225444 +k1,6846:11014476,26895932:225443 +k1,6846:13515330,26895932:225444 +k1,6846:16143324,26895932:225444 +k1,6846:17178137,26895932:225443 +k1,6846:18901734,26895932:225444 +h1,6846:20097111,26895932:0,0,0 +k1,6846:20703319,26895932:225444 +k1,6846:23891645,26895932:225443 +k1,6846:25868866,26895932:225444 +k1,6846:26753602,26895932:225444 +k1,6846:28412973,26895932:225443 +k1,6846:29557232,26895932:225444 +k1,6846:32583029,26895932:0 +) +(1,6847:6630773,27737420:25952256,513147,134348 +k1,6846:7772356,27737420:150023 +k1,6846:10319686,27737420:150023 +k1,6846:11121136,27737420:150022 +k1,6846:12965920,27737420:150023 +k1,6846:16200067,27737420:150023 +k1,6846:20109890,27737420:150023 +k1,6846:21640101,27737420:150023 +k1,6846:22882609,27737420:150023 +k1,6846:23388491,27737420:150022 +k1,6846:26659338,27737420:150023 +k1,6846:29793871,27737420:150023 +k1,6846:30595322,27737420:150023 +k1,6846:32583029,27737420:0 +) +(1,6847:6630773,28578908:25952256,513147,134348 +k1,6846:10838075,28578908:186668 +k1,6846:12216188,28578908:186668 +k1,6846:13350507,28578908:186668 +k1,6846:16538069,28578908:186668 +k1,6846:17743822,28578908:186668 +k1,6846:21139133,28578908:186668 +k1,6846:23336447,28578908:186669 +k1,6846:24807621,28578908:186668 +k1,6846:26098571,28578908:186668 +k1,6846:27033005,28578908:186668 +k1,6846:30718640,28578908:186668 +k1,6846:31261168,28578908:186668 +k1,6846:32583029,28578908:0 +) +(1,6847:6630773,29420396:25952256,513147,134348 +k1,6846:7467408,29420396:177343 +k1,6846:8663836,29420396:177343 +k1,6846:9256001,29420396:177322 +k1,6846:12449311,29420396:177343 +k1,6846:14114977,29420396:177343 +k1,6846:15462794,29420396:177344 +k1,6846:16772599,29420396:177343 +k1,6846:18561472,29420396:177343 +k1,6846:19757900,29420396:177343 +k1,6846:23597396,29420396:177344 +k1,6846:25287965,29420396:177343 +k1,6846:26081346,29420396:177343 +k1,6846:26673511,29420396:177322 +k1,6846:27798505,29420396:177343 +k1,6846:31426974,29420396:177343 +k1,6847:32583029,29420396:0 +) +(1,6847:6630773,30261884:25952256,513147,134348 +k1,6846:8909834,30261884:138000 +k1,6846:12729647,30261884:138000 +k1,6846:16242751,30261884:138000 +k1,6846:21830725,30261884:138000 +k1,6846:24958477,30261884:138000 +k1,6846:28192398,30261884:138000 +k1,6846:30265021,30261884:138000 +k1,6846:32583029,30261884:0 +) +(1,6847:6630773,31103372:25952256,513147,134348 +k1,6846:8044385,31103372:222167 +k1,6846:10884060,31103372:222167 +k1,6846:12172498,31103372:222167 +k1,6846:13916411,31103372:222167 +k1,6846:14797870,31103372:222167 +k1,6846:18931226,31103372:222167 +k1,6846:20106941,31103372:222166 +k1,6846:21461570,31103372:222167 +k1,6846:22776222,31103372:222167 +k1,6846:24811115,31103372:222167 +k1,6846:28687569,31103372:222167 +k1,6846:30770303,31103372:222167 +k1,6846:32583029,31103372:0 +) +(1,6847:6630773,31944860:25952256,505283,134348 +k1,6846:9319570,31944860:197118 +k1,6846:13208985,31944860:197117 +k1,6846:15218829,31944860:197118 +k1,6846:17907626,31944860:197118 +k1,6846:21354673,31944860:197117 +k1,6846:23869799,31944860:197118 +k1,6846:25258362,31944860:197118 +k1,6846:27147619,31944860:197117 +k1,6846:29469414,31944860:197118 +k1,6847:32583029,31944860:0 +) +(1,6847:6630773,32786348:25952256,513147,134348 +k1,6846:7755370,32786348:164495 +k1,6846:10704490,32786348:164495 +k1,6846:11555147,32786348:164495 +k1,6846:14885032,32786348:164496 +k1,6846:15974240,32786348:164495 +k1,6846:17315762,32786348:164495 +k1,6846:18011754,32786348:164495 +k1,6846:20875022,32786348:164495 +k1,6846:22369898,32786348:164495 +k1,6846:23185822,32786348:164496 +k1,6846:25609343,32786348:164495 +k1,6846:28265517,32786348:164495 +k1,6846:31391584,32786348:164495 +k1,6846:32583029,32786348:0 +) +(1,6847:6630773,33627836:25952256,513147,134348 +k1,6846:8208930,33627836:188794 +k1,6846:10084621,33627836:188794 +k1,6846:11464860,33627836:188794 +k1,6846:12984034,33627836:188793 +k1,6846:13824256,33627836:188794 +k1,6846:16044011,33627836:188794 +k1,6846:18995148,33627836:188794 +k1,6846:23111515,33627836:188794 +k1,6846:23959601,33627836:188794 +k1,6846:25167479,33627836:188793 +k1,6846:27646101,33627836:188794 +k1,6846:30613622,33627836:188794 +k1,6846:31563944,33627836:188794 +k1,6846:32583029,33627836:0 +) +(1,6847:6630773,34469324:25952256,513147,134348 +g1,6846:11453567,34469324 +g1,6846:12340269,34469324 +g1,6846:13730943,34469324 +g1,6846:16920580,34469324 +k1,6847:32583029,34469324:12462981 +g1,6847:32583029,34469324 +) +(1,6850:6630773,37276892:25952256,32768,229376 +(1,6850:6630773,37276892:0,32768,229376 +(1,6850:6630773,37276892:5505024,32768,229376 +r1,6850:12135797,37276892:5505024,262144,229376 +) +k1,6850:6630773,37276892:-5505024 +) +(1,6850:6630773,37276892:25952256,32768,0 +r1,6850:32583029,37276892:25952256,32768,0 +) +) +(1,6850:6630773,38881220:25952256,606339,14155 +(1,6850:6630773,38881220:1974731,582746,0 +g1,6850:6630773,38881220 +g1,6850:8605504,38881220 +) +g1,6850:12684727,38881220 +k1,6850:32583029,38881220:15540682 +g1,6850:32583029,38881220 +) +(1,6853:6630773,40115924:25952256,513147,134348 +k1,6852:8683284,40115924:315807 +k1,6852:10018175,40115924:315806 +k1,6852:11925852,40115924:315807 +k1,6852:13979673,40115924:315806 +k1,6852:14954772,40115924:315807 +k1,6852:16289663,40115924:315806 +k1,6852:17020196,40115924:315690 +k1,6852:20178299,40115924:315807 +k1,6852:21110143,40115924:315806 +k1,6852:22815313,40115924:315807 +k1,6852:25685712,40115924:315806 +k1,6852:27192964,40115924:315807 +k1,6852:30535879,40115924:315807 +k1,6852:31266411,40115924:315689 +k1,6853:32583029,40115924:0 +) +(1,6853:6630773,40957412:25952256,513147,134348 +k1,6852:8495808,40957412:208285 +k1,6852:11729890,40957412:208285 +k1,6852:12885827,40957412:208286 +k1,6852:14560808,40957412:208285 +k1,6852:16893770,40957412:208285 +k1,6852:18293500,40957412:208285 +k1,6852:21188106,40957412:208285 +k1,6852:25371805,40957412:208285 +k1,6852:27339077,40957412:208286 +k1,6852:29114983,40957412:208285 +k1,6852:31391584,40957412:208285 +k1,6852:32583029,40957412:0 +) +(1,6853:6630773,41798900:25952256,513147,134348 +k1,6852:9824998,41798900:209715 +k1,6852:10686141,41798900:209715 +k1,6852:12830479,41798900:209715 +k1,6852:14394168,41798900:209715 +k1,6852:17290204,41798900:209715 +k1,6852:19991597,41798900:209714 +k1,6852:22068433,41798900:209715 +k1,6852:23269708,41798900:209715 +k1,6852:26471142,41798900:209715 +k1,6852:27340149,41798900:209715 +k1,6852:30575661,41798900:209715 +k1,6853:32583029,41798900:0 +) +(1,6853:6630773,42640388:25952256,513147,134348 +k1,6852:9495649,42640388:235572 +k1,6852:10750306,42640388:235572 +k1,6852:14457320,42640388:235572 +k1,6852:15352184,42640388:235572 +k1,6852:16606841,42640388:235572 +k1,6852:20147395,42640388:235573 +k1,6852:21896193,42640388:235572 +k1,6852:23521128,42640388:235572 +k1,6852:27264842,42640388:235572 +k1,6852:29238429,42640388:235572 +k1,6852:30156886,42640388:235572 +k1,6852:32583029,42640388:0 +) +(1,6853:6630773,43481876:25952256,505283,115847 +(1,6852:6837867,43481876:0,452978,115847 +r1,6852:8954692,43481876:2116825,568825,115847 +k1,6852:6837867,43481876:-2116825 +) +(1,6852:6837867,43481876:2116825,452978,115847 +k1,6852:6837867,43481876:3277 +h1,6852:8951415,43481876:0,411205,112570 +) +k1,6852:9554390,43481876:218934 +k1,6852:12427531,43481876:218933 +(1,6852:12634625,43481876:0,452978,115847 +r1,6852:14399738,43481876:1765113,568825,115847 +k1,6852:12634625,43481876:-1765113 +) +(1,6852:12634625,43481876:1765113,452978,115847 +k1,6852:12634625,43481876:3277 +h1,6852:14396461,43481876:0,411205,112570 +) +k1,6852:14999436,43481876:218934 +k1,6852:18061977,43481876:218934 +k1,6852:21230685,43481876:218933 +(1,6852:21437779,43481876:0,452978,115847 +r1,6852:22851180,43481876:1413401,568825,115847 +k1,6852:21437779,43481876:-1413401 +) +(1,6852:21437779,43481876:1413401,452978,115847 +k1,6852:21437779,43481876:3277 +h1,6852:22847903,43481876:0,411205,112570 +) +k1,6852:23450878,43481876:218934 +k1,6852:26029763,43481876:218934 +(1,6852:26236857,43481876:0,452978,115847 +r1,6852:29057106,43481876:2820249,568825,115847 +k1,6852:26236857,43481876:-2820249 +) +(1,6852:26236857,43481876:2820249,452978,115847 +k1,6852:26236857,43481876:3277 +h1,6852:29053829,43481876:0,411205,112570 +) +k1,6852:29656803,43481876:218933 +k1,6852:31613752,43481876:218934 +k1,6853:32583029,43481876:0 +) +(1,6853:6630773,44323364:25952256,505283,134348 +k1,6852:8739571,44323364:159757 +k1,6852:11849104,44323364:159758 +(1,6852:12056198,44323364:0,452978,115847 +r1,6852:13821311,44323364:1765113,568825,115847 +k1,6852:12056198,44323364:-1765113 +) +(1,6852:12056198,44323364:1765113,452978,115847 +k1,6852:12056198,44323364:3277 +h1,6852:13818034,44323364:0,411205,112570 +) +k1,6852:14361832,44323364:159757 +k1,6852:16304169,44323364:159758 +(1,6852:16511263,44323364:0,452978,115847 +r1,6852:18628088,44323364:2116825,568825,115847 +k1,6852:16511263,44323364:-2116825 +) +(1,6852:16511263,44323364:2116825,452978,115847 +k1,6852:16511263,44323364:3277 +h1,6852:18624811,44323364:0,411205,112570 +) +k1,6852:19168609,44323364:159757 +k1,6852:22525213,44323364:159758 +(1,6852:22732307,44323364:0,452978,115847 +r1,6852:24497420,44323364:1765113,568825,115847 +k1,6852:22732307,44323364:-1765113 +) +(1,6852:22732307,44323364:1765113,452978,115847 +k1,6852:22732307,44323364:3277 +h1,6852:24494143,44323364:0,411205,112570 +) +k1,6852:25037941,44323364:159757 +k1,6852:28289688,44323364:159758 +(1,6852:28496782,44323364:0,452978,115847 +r1,6852:30261895,44323364:1765113,568825,115847 +k1,6852:28496782,44323364:-1765113 +) +(1,6852:28496782,44323364:1765113,452978,115847 +k1,6852:28496782,44323364:3277 +h1,6852:30258618,44323364:0,411205,112570 +) +k1,6852:30802416,44323364:159757 +k1,6852:32583029,44323364:0 +) +(1,6853:6630773,45164852:25952256,505283,134348 +(1,6852:6837867,45164852:0,452978,122846 +r1,6852:9306404,45164852:2468537,575824,122846 +k1,6852:6837867,45164852:-2468537 +) +(1,6852:6837867,45164852:2468537,452978,122846 +k1,6852:6837867,45164852:3277 +h1,6852:9303127,45164852:0,411205,112570 +) +k1,6852:9993713,45164852:306545 +k1,6852:13231028,45164852:306545 +(1,6852:13438122,45164852:0,452978,115847 +r1,6852:16961794,45164852:3523672,568825,115847 +k1,6852:13438122,45164852:-3523672 ) -(1,6847:13159313,45164852:3523672,452978,115847 -k1,6847:13159313,45164852:3277 -h1,6847:16679708,45164852:0,411205,112570 +(1,6852:13438122,45164852:3523672,452978,115847 +k1,6852:13438122,45164852:3277 +h1,6852:16958517,45164852:0,411205,112570 ) -k1,6847:17230890,45164852:167141 -k1,6847:19411296,45164852:167140 -(1,6847:19618390,45164852:0,452978,122846 -r1,6847:22438639,45164852:2820249,575824,122846 -k1,6847:19618390,45164852:-2820249 +k1,6852:17649103,45164852:306545 +k1,6852:19968914,45164852:306545 +(1,6852:20176008,45164852:0,452978,122846 +r1,6852:22996257,45164852:2820249,575824,122846 +k1,6852:20176008,45164852:-2820249 ) -(1,6847:19618390,45164852:2820249,452978,122846 -k1,6847:19618390,45164852:3277 -h1,6847:22435362,45164852:0,411205,112570 +(1,6852:20176008,45164852:2820249,452978,122846 +k1,6852:20176008,45164852:3277 +h1,6852:22992980,45164852:0,411205,112570 ) -k1,6847:22986544,45164852:167141 -k1,6847:24345129,45164852:167140 -k1,6847:30029091,45164852:167141 -k1,6848:32583029,45164852:0 +k1,6852:23683566,45164852:306545 +k1,6852:25181556,45164852:306545 +k1,6852:31004922,45164852:306545 +k1,6853:32583029,45164852:0 ) ] -(1,6848:32583029,45706769:0,0,0 -g1,6848:32583029,45706769 +(1,6853:32583029,45706769:0,0,0 +g1,6853:32583029,45706769 ) ) ] -(1,6848:6630773,47279633:25952256,477757,0 -(1,6848:6630773,47279633:25952256,477757,0 -(1,6848:6630773,47279633:0,0,0 -v1,6848:6630773,47279633:0,0,0 +(1,6853:6630773,47279633:25952256,477757,0 +(1,6853:6630773,47279633:25952256,477757,0 +(1,6853:6630773,47279633:0,0,0 +v1,6853:6630773,47279633:0,0,0 ) -g1,6848:6830002,47279633 -k1,6848:31387652,47279633:24557650 +g1,6853:6830002,47279633 +k1,6853:31387652,47279633:24557650 ) ) ] -h1,6848:4262630,4025873:0,0,0 +h1,6853:4262630,4025873:0,0,0 ] -!17834 +!17835 }128 -Input:968:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:969:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:970:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:971:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:972:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:973:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:974:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:975:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:976:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!777 +Input:964:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:965:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:966:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:967:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:968:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:969:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:970:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:971:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:972:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!831 {129 -[1,6896:4262630,47279633:28320399,43253760,0 -(1,6896:4262630,4025873:0,0,0 -[1,6896:-473657,4025873:25952256,0,0 -(1,6896:-473657,-710414:25952256,0,0 -h1,6896:-473657,-710414:0,0,0 -(1,6896:-473657,-710414:0,0,0 -(1,6896:-473657,-710414:0,0,0 -g1,6896:-473657,-710414 -(1,6896:-473657,-710414:65781,0,65781 -g1,6896:-407876,-710414 -[1,6896:-407876,-644633:0,0,0 +[1,6901:4262630,47279633:28320399,43253760,0 +(1,6901:4262630,4025873:0,0,0 +[1,6901:-473657,4025873:25952256,0,0 +(1,6901:-473657,-710414:25952256,0,0 +h1,6901:-473657,-710414:0,0,0 +(1,6901:-473657,-710414:0,0,0 +(1,6901:-473657,-710414:0,0,0 +g1,6901:-473657,-710414 +(1,6901:-473657,-710414:65781,0,65781 +g1,6901:-407876,-710414 +[1,6901:-407876,-644633:0,0,0 ] ) -k1,6896:-473657,-710414:-65781 +k1,6901:-473657,-710414:-65781 ) ) -k1,6896:25478599,-710414:25952256 -g1,6896:25478599,-710414 +k1,6901:25478599,-710414:25952256 +g1,6901:25478599,-710414 ) ] ) -[1,6896:6630773,47279633:25952256,43253760,0 -[1,6896:6630773,4812305:25952256,786432,0 -(1,6896:6630773,4812305:25952256,505283,134348 -(1,6896:6630773,4812305:25952256,505283,134348 -g1,6896:3078558,4812305 -[1,6896:3078558,4812305:0,0,0 -(1,6896:3078558,2439708:0,1703936,0 -k1,6896:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,6896:2537886,2439708:1179648,16384,0 +[1,6901:6630773,47279633:25952256,43253760,0 +[1,6901:6630773,4812305:25952256,786432,0 +(1,6901:6630773,4812305:25952256,505283,134348 +(1,6901:6630773,4812305:25952256,505283,134348 +g1,6901:3078558,4812305 +[1,6901:3078558,4812305:0,0,0 +(1,6901:3078558,2439708:0,1703936,0 +k1,6901:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,6901:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,6896:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,6901:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,6896:3078558,4812305:0,0,0 -(1,6896:3078558,2439708:0,1703936,0 -g1,6896:29030814,2439708 -g1,6896:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,6896:36151628,1915420:16384,1179648,0 +[1,6901:3078558,4812305:0,0,0 +(1,6901:3078558,2439708:0,1703936,0 +g1,6901:29030814,2439708 +g1,6901:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,6901:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,6896:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,6901:37855564,2439708:1179648,16384,0 ) ) -k1,6896:3078556,2439708:-34777008 +k1,6901:3078556,2439708:-34777008 ) ] -[1,6896:3078558,4812305:0,0,0 -(1,6896:3078558,49800853:0,16384,2228224 -k1,6896:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,6896:2537886,49800853:1179648,16384,0 +[1,6901:3078558,4812305:0,0,0 +(1,6901:3078558,49800853:0,16384,2228224 +k1,6901:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,6901:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,6896:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,6901:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,6896:3078558,4812305:0,0,0 -(1,6896:3078558,49800853:0,16384,2228224 -g1,6896:29030814,49800853 -g1,6896:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,6896:36151628,51504789:16384,1179648,0 +[1,6901:3078558,4812305:0,0,0 +(1,6901:3078558,49800853:0,16384,2228224 +g1,6901:29030814,49800853 +g1,6901:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,6901:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,6896:37855564,49800853:1179648,16384,0 -) -) -k1,6896:3078556,49800853:-34777008 -) -] -g1,6896:6630773,4812305 -k1,6896:24573876,4812305:16747726 -g1,6896:25960617,4812305 -g1,6896:26609423,4812305 -g1,6896:29923578,4812305 -) -) -] -[1,6896:6630773,45706769:25952256,40108032,0 -(1,6896:6630773,45706769:25952256,40108032,0 -(1,6896:6630773,45706769:0,0,0 -g1,6896:6630773,45706769 -) -[1,6896:6630773,45706769:25952256,40108032,0 -(1,6848:6630773,6254097:25952256,505283,126483 -k1,6847:8000528,6254097:202559 -(1,6847:8207622,6254097:0,452978,115847 -r1,6847:11379582,6254097:3171960,568825,115847 -k1,6847:8207622,6254097:-3171960 -) -(1,6847:8207622,6254097:3171960,452978,115847 -k1,6847:8207622,6254097:3277 -h1,6847:11376305,6254097:0,411205,112570 -) -k1,6847:11962906,6254097:202560 -k1,6847:13063308,6254097:202559 -k1,6847:14962594,6254097:202559 -k1,6847:17949779,6254097:202560 -k1,6847:20200338,6254097:202559 -k1,6847:23023026,6254097:202559 -k1,6847:25533764,6254097:202560 -k1,6847:26927768,6254097:202559 -k1,6847:29863834,6254097:202559 -k1,6847:30752556,6254097:202560 -k1,6847:31725818,6254097:202559 -k1,6848:32583029,6254097:0 -) -(1,6848:6630773,7095585:25952256,513147,134348 -k1,6847:9425127,7095585:192575 -k1,6847:11334745,7095585:192575 -k1,6847:12186612,7095585:192575 -k1,6847:14018242,7095585:192575 -k1,6847:15496633,7095585:192575 -k1,6847:17164423,7095585:192575 -k1,6847:20769458,7095585:192575 -k1,6847:21909684,7095585:192575 -k1,6847:23804229,7095585:192575 -k1,6847:26229616,7095585:192575 -k1,6847:27915757,7095585:192575 -k1,6847:28794494,7095585:192575 -k1,6847:30376432,7095585:192575 -k1,6847:32583029,7095585:0 -) -(1,6848:6630773,7937073:25952256,513147,134348 -k1,6847:7410091,7937073:163280 -k1,6847:8592455,7937073:163279 -k1,6847:10122816,7937073:163280 -k1,6847:10953251,7937073:163279 -(1,6847:10953251,7937073:0,452978,115847 -r1,6847:14125211,7937073:3171960,568825,115847 -k1,6847:10953251,7937073:-3171960 -) -(1,6847:10953251,7937073:3171960,452978,115847 -k1,6847:10953251,7937073:3277 -h1,6847:14121934,7937073:0,411205,112570 -) -k1,6847:14462161,7937073:163280 -k1,6847:16029222,7937073:163280 -k1,6847:16607309,7937073:163244 -k1,6847:19612884,7937073:163279 -k1,6847:21269074,7937073:163280 -k1,6847:22498624,7937073:163279 -k1,6847:24622741,7937073:163280 -k1,6847:25141881,7937073:163280 -k1,6847:28000656,7937073:163279 -k1,6847:29111587,7937073:163280 -k1,6847:32583029,7937073:0 -) -(1,6848:6630773,8778561:25952256,513147,134348 -k1,6847:7521451,8778561:231386 -k1,6847:8771921,8778561:231385 -k1,6847:11846914,8778561:231386 -k1,6847:13685242,8778561:231385 -k1,6847:14575920,8778561:231386 -k1,6847:15826391,8778561:231386 -k1,6847:17969461,8778561:231385 -k1,6847:20336010,8778561:231386 -k1,6847:21592378,8778561:231385 -k1,6847:24102451,8778561:231386 -h1,6847:25645169,8778561:0,0,0 -k1,6847:25876555,8778561:231386 -k1,6847:26917310,8778561:231385 -k1,6847:28646849,8778561:231386 -h1,6847:29842226,8778561:0,0,0 -k1,6847:30073611,8778561:231385 -k1,6847:31252648,8778561:231386 -k1,6847:32583029,8778561:0 -) -(1,6848:6630773,9620049:25952256,513147,126483 -g1,6847:7481430,9620049 -g1,6847:9641496,9620049 -g1,6847:11299556,9620049 -k1,6848:32583029,9620049:19572328 -g1,6848:32583029,9620049 -) -v1,6850:6630773,10810515:0,393216,0 -(1,6866:6630773,19097727:25952256,8680428,196608 -g1,6866:6630773,19097727 -g1,6866:6630773,19097727 -g1,6866:6434165,19097727 -(1,6866:6434165,19097727:0,8680428,196608 -r1,6866:32779637,19097727:26345472,8877036,196608 -k1,6866:6434165,19097727:-26345472 -) -(1,6866:6434165,19097727:26345472,8680428,196608 -[1,6866:6630773,19097727:25952256,8483820,0 -(1,6852:6630773,11002404:25952256,388497,9436 -(1,6851:6630773,11002404:0,0,0 -g1,6851:6630773,11002404 -g1,6851:6630773,11002404 -g1,6851:6303093,11002404 -(1,6851:6303093,11002404:0,0,0 -) -g1,6851:6630773,11002404 -) -g1,6852:7263065,11002404 -g1,6852:8211503,11002404 -h1,6852:9476086,11002404:0,0,0 -k1,6852:32583030,11002404:23106944 -g1,6852:32583030,11002404 -) -(1,6853:6630773,11668582:25952256,404226,76021 -h1,6853:6630773,11668582:0,0,0 -k1,6853:6630773,11668582:0 -h1,6853:8843793,11668582:0,0,0 -k1,6853:32583029,11668582:23739236 -g1,6853:32583029,11668582 -) -(1,6854:6630773,12334760:25952256,404226,76021 -h1,6854:6630773,12334760:0,0,0 -k1,6854:6630773,12334760:0 -h1,6854:8527647,12334760:0,0,0 -k1,6854:32583029,12334760:24055382 -g1,6854:32583029,12334760 -) -(1,6855:6630773,13000938:25952256,404226,76021 -h1,6855:6630773,13000938:0,0,0 -k1,6855:6630773,13000938:0 -h1,6855:8211501,13000938:0,0,0 -k1,6855:32583029,13000938:24371528 -g1,6855:32583029,13000938 -) -(1,6856:6630773,13667116:25952256,404226,76021 -h1,6856:6630773,13667116:0,0,0 -k1,6856:6630773,13667116:0 -h1,6856:9476084,13667116:0,0,0 -k1,6856:32583028,13667116:23106944 -g1,6856:32583028,13667116 -) -(1,6857:6630773,14333294:25952256,404226,76021 -h1,6857:6630773,14333294:0,0,0 -k1,6857:6630773,14333294:0 -h1,6857:8527647,14333294:0,0,0 -k1,6857:32583029,14333294:24055382 -g1,6857:32583029,14333294 -) -(1,6858:6630773,14999472:25952256,404226,76021 -h1,6858:6630773,14999472:0,0,0 -k1,6858:6630773,14999472:0 -h1,6858:8843793,14999472:0,0,0 -k1,6858:32583029,14999472:23739236 -g1,6858:32583029,14999472 -) -(1,6859:6630773,15665650:25952256,404226,76021 -h1,6859:6630773,15665650:0,0,0 -k1,6859:6630773,15665650:0 -h1,6859:8527647,15665650:0,0,0 -k1,6859:32583029,15665650:24055382 -g1,6859:32583029,15665650 -) -(1,6860:6630773,16331828:25952256,404226,76021 -h1,6860:6630773,16331828:0,0,0 -k1,6860:6630773,16331828:0 -h1,6860:8527647,16331828:0,0,0 -k1,6860:32583029,16331828:24055382 -g1,6860:32583029,16331828 -) -(1,6861:6630773,16998006:25952256,404226,107478 -h1,6861:6630773,16998006:0,0,0 -k1,6861:6630773,16998006:0 -h1,6861:9159938,16998006:0,0,0 -k1,6861:32583030,16998006:23423092 -g1,6861:32583030,16998006 -) -(1,6862:6630773,17664184:25952256,404226,101187 -h1,6862:6630773,17664184:0,0,0 -k1,6862:6630773,17664184:0 -h1,6862:10108375,17664184:0,0,0 -k1,6862:32583029,17664184:22474654 -g1,6862:32583029,17664184 -) -(1,6863:6630773,18330362:25952256,404226,107478 -h1,6863:6630773,18330362:0,0,0 -k1,6863:6630773,18330362:0 -h1,6863:9476084,18330362:0,0,0 -k1,6863:32583028,18330362:23106944 -g1,6863:32583028,18330362 -) -(1,6864:6630773,18996540:25952256,404226,101187 -h1,6864:6630773,18996540:0,0,0 -k1,6864:6630773,18996540:0 -h1,6864:9792230,18996540:0,0,0 -k1,6864:32583030,18996540:22790800 -g1,6864:32583030,18996540 -) -] -) -g1,6866:32583029,19097727 -g1,6866:6630773,19097727 -g1,6866:6630773,19097727 -g1,6866:32583029,19097727 -g1,6866:32583029,19097727 -) -h1,6866:6630773,19294335:0,0,0 -v1,6870:6630773,21184399:0,393216,0 -(1,6871:6630773,25153407:25952256,4362224,616038 -g1,6871:6630773,25153407 -(1,6871:6630773,25153407:25952256,4362224,616038 -(1,6871:6630773,25769445:25952256,4978262,0 -[1,6871:6630773,25769445:25952256,4978262,0 -(1,6871:6630773,25743231:25952256,4925834,0 -r1,6871:6656987,25743231:26214,4925834,0 -[1,6871:6656987,25743231:25899828,4925834,0 -(1,6871:6656987,25153407:25899828,3746186,0 -[1,6871:7246811,25153407:24720180,3746186,0 -(1,6871:7246811,22494595:24720180,1087374,126483 -k1,6870:8610149,22494595:153635 -k1,6870:9391619,22494595:153635 -k1,6870:12176524,22494595:153634 -k1,6870:12981587,22494595:153635 -k1,6870:14886999,22494595:153635 -k1,6870:16742604,22494595:153635 -k1,6870:19887958,22494595:153635 -k1,6870:20657631,22494595:153635 -k1,6870:22014506,22494595:153634 -k1,6870:23923851,22494595:153635 -k1,6870:25096571,22494595:153635 -k1,6870:28758348,22494595:153635 -k1,6870:31966991,22494595:0 -) -(1,6871:7246811,23336083:24720180,505283,134348 -k1,6870:8785456,23336083:144694 -k1,6870:9949235,23336083:144694 -k1,6870:11590116,23336083:144694 -k1,6870:12350848,23336083:144694 -k1,6870:13514627,23336083:144694 -k1,6870:16413799,23336083:144694 -k1,6870:18529161,23336083:144694 -k1,6870:19665415,23336083:144694 -k1,6870:20876380,23336083:144694 -k1,6870:23270270,23336083:144694 -k1,6870:24668668,23336083:144694 -k1,6870:26993745,23336083:144694 -k1,6870:28274178,23336083:144694 -k1,6870:30231598,23336083:144694 -k1,6870:31966991,23336083:0 -) -(1,6871:7246811,24177571:24720180,513147,126483 -k1,6870:9441908,24177571:217220 -(1,6870:9441908,24177571:0,414482,115847 -r1,6871:9800174,24177571:358266,530329,115847 -k1,6870:9441908,24177571:-358266 -) -(1,6870:9441908,24177571:358266,414482,115847 -k1,6870:9441908,24177571:3277 -h1,6870:9796897,24177571:0,411205,112570 -) -k1,6870:10017395,24177571:217221 -k1,6870:10920777,24177571:217220 -k1,6870:13519575,24177571:217220 -k1,6870:15765791,24177571:217221 -k1,6870:17174456,24177571:217220 -k1,6870:18825605,24177571:217221 -k1,6870:20385658,24177571:217220 -k1,6870:21996829,24177571:217220 -k1,6870:23916020,24177571:217221 -k1,6870:25329927,24177571:217220 -k1,6870:26230032,24177571:217220 -k1,6870:29075902,24177571:217221 -k1,6870:30682485,24177571:217220 -k1,6870:31966991,24177571:0 -) -(1,6871:7246811,25019059:24720180,513147,134348 -g1,6870:8616513,25019059 -g1,6870:10152676,25019059 -g1,6870:11618061,25019059 -k1,6871:31966991,25019059:16741828 -g1,6871:31966991,25019059 -) -] -) -] -r1,6871:32583029,25743231:26214,4925834,0 -) -] -) -) -g1,6871:32583029,25153407 -) -h1,6871:6630773,25769445:0,0,0 -(1,6874:6630773,27135221:25952256,513147,134348 -h1,6873:6630773,27135221:983040,0,0 -k1,6873:8634572,27135221:260541 -k1,6873:11334363,27135221:260541 -k1,6873:12060865,27135221:260541 -k1,6873:13340491,27135221:260541 -k1,6873:16673360,27135221:260541 -k1,6873:19635951,27135221:260542 -(1,6873:19635951,27135221:0,414482,115847 -r1,6873:20697640,27135221:1061689,530329,115847 -k1,6873:19635951,27135221:-1061689 -) -(1,6873:19635951,27135221:1061689,414482,115847 -k1,6873:19635951,27135221:3277 -h1,6873:20694363,27135221:0,411205,112570 -) -k1,6873:20958181,27135221:260541 -k1,6873:22915449,27135221:260541 -k1,6873:26201787,27135221:260541 -k1,6873:28472973,27135221:260541 -(1,6873:28472973,27135221:0,414482,115847 -r1,6873:29182951,27135221:709978,530329,115847 -k1,6873:28472973,27135221:-709978 -) -(1,6873:28472973,27135221:709978,414482,115847 -k1,6873:28472973,27135221:3277 -h1,6873:29179674,27135221:0,411205,112570 -) -k1,6873:29617162,27135221:260541 -k1,6873:31074390,27135221:260541 -k1,6873:32583029,27135221:0 -) -(1,6874:6630773,27976709:25952256,513147,102891 -k1,6873:9045529,27976709:215368 -k1,6873:10464137,27976709:215367 -k1,6873:11211002,27976709:215368 -k1,6873:12710875,27976709:215367 -k1,6873:13392204,27976709:215368 -k1,6873:14764282,27976709:215368 -k1,6873:16659992,27976709:215367 -k1,6873:18706436,27976709:215368 -k1,6873:19993973,27976709:215368 -k1,6873:20740837,27976709:215367 -k1,6873:24097346,27976709:215368 -k1,6873:25331799,27976709:215368 -k1,6873:26854609,27976709:215367 -k1,6873:28912849,27976709:215368 -k1,6873:29787508,27976709:215367 -k1,6873:31021961,27976709:215368 -k1,6874:32583029,27976709:0 -) -(1,6874:6630773,28818197:25952256,513147,134348 -k1,6873:9570786,28818197:224201 -k1,6873:10326484,28818197:224201 -k1,6873:13518155,28818197:224201 -k1,6873:14974433,28818197:224201 -k1,6873:16696787,28818197:224201 -h1,6873:17493705,28818197:0,0,0 -k1,6873:17717906,28818197:224201 -k1,6873:18889758,28818197:224201 -k1,6873:21231428,28818197:224202 -k1,6873:22264999,28818197:224201 -k1,6873:23508285,28818197:224201 -k1,6873:24967840,28818197:224201 -k1,6873:25859197,28818197:224201 -(1,6873:25859197,28818197:0,414482,115847 -r1,6873:26569175,28818197:709978,530329,115847 -k1,6873:25859197,28818197:-709978 -) -(1,6873:25859197,28818197:709978,414482,115847 -k1,6873:25859197,28818197:3277 -h1,6873:26565898,28818197:0,411205,112570 -) -k1,6873:26793376,28818197:224201 -k1,6873:27633615,28818197:224201 -k1,6873:28653423,28818197:224201 -k1,6873:31812326,28818197:224201 -k1,6873:32583029,28818197:0 -) -(1,6874:6630773,29659685:25952256,513147,126483 -k1,6873:10045456,29659685:187690 -k1,6873:13513878,29659685:187690 -k1,6873:15569343,29659685:187689 -(1,6873:15569343,29659685:0,452978,115847 -r1,6873:18037880,29659685:2468537,568825,115847 -k1,6873:15569343,29659685:-2468537 -) -(1,6873:15569343,29659685:2468537,452978,115847 -k1,6873:15569343,29659685:3277 -h1,6873:18034603,29659685:0,411205,112570 -) -k1,6873:18225570,29659685:187690 -k1,6873:20425215,29659685:187690 -k1,6873:21358049,29659685:187690 -k1,6873:22197167,29659685:187690 -k1,6873:25029890,29659685:187690 -k1,6873:26420820,29659685:187689 -k1,6873:28874090,29659685:187690 -k1,6873:31821501,29659685:187690 -k1,6873:32583029,29659685:0 -) -(1,6874:6630773,30501173:25952256,513147,134348 -g1,6873:10209694,30501173 -g1,6873:11540730,30501173 -(1,6873:11540730,30501173:0,414482,115847 -r1,6873:12250708,30501173:709978,530329,115847 -k1,6873:11540730,30501173:-709978 -) -(1,6873:11540730,30501173:709978,414482,115847 -k1,6873:11540730,30501173:3277 -h1,6873:12247431,30501173:0,411205,112570 -) -g1,6873:12449937,30501173 -g1,6873:13265204,30501173 -g1,6873:14483518,30501173 -g1,6873:16391271,30501173 -g1,6873:17241928,30501173 -g1,6873:18188923,30501173 -g1,6873:20885729,30501173 -g1,6873:21974937,30501173 -g1,6873:25500118,30501173 -g1,6873:27742104,30501173 -k1,6874:32583029,30501173:1195813 -g1,6874:32583029,30501173 -) -v1,6876:6630773,31691639:0,393216,0 -(1,6890:6630773,35426422:25952256,4127999,196608 -g1,6890:6630773,35426422 -g1,6890:6630773,35426422 -g1,6890:6434165,35426422 -(1,6890:6434165,35426422:0,4127999,196608 -r1,6890:32779637,35426422:26345472,4324607,196608 -k1,6890:6434165,35426422:-26345472 -) -(1,6890:6434165,35426422:26345472,4127999,196608 -[1,6890:6630773,35426422:25952256,3931391,0 -(1,6878:6630773,31899257:25952256,404226,82312 -(1,6877:6630773,31899257:0,0,0 -g1,6877:6630773,31899257 -g1,6877:6630773,31899257 -g1,6877:6303093,31899257 -(1,6877:6303093,31899257:0,0,0 -) -g1,6877:6630773,31899257 -) -g1,6878:7263065,31899257 -g1,6878:8211503,31899257 -g1,6878:10740670,31899257 -h1,6878:11689107,31899257:0,0,0 -k1,6878:32583029,31899257:20893922 -g1,6878:32583029,31899257 -) -(1,6879:6630773,32565435:25952256,404226,76021 -h1,6879:6630773,32565435:0,0,0 -k1,6879:6630773,32565435:0 -h1,6879:8843793,32565435:0,0,0 -k1,6879:32583029,32565435:23739236 -g1,6879:32583029,32565435 -) -(1,6883:6630773,33297149:25952256,404226,76021 -(1,6881:6630773,33297149:0,0,0 -g1,6881:6630773,33297149 -g1,6881:6630773,33297149 -g1,6881:6303093,33297149 -(1,6881:6303093,33297149:0,0,0 -) -g1,6881:6630773,33297149 -) -g1,6883:7579210,33297149 -g1,6883:8843793,33297149 -h1,6883:9476084,33297149:0,0,0 -k1,6883:32583028,33297149:23106944 -g1,6883:32583028,33297149 -) -(1,6885:6630773,34618687:25952256,404226,82312 -(1,6884:6630773,34618687:0,0,0 -g1,6884:6630773,34618687 -g1,6884:6630773,34618687 -g1,6884:6303093,34618687 -(1,6884:6303093,34618687:0,0,0 -) -g1,6884:6630773,34618687 -) -k1,6885:6630773,34618687:0 -g1,6885:9159939,34618687 -g1,6885:11689105,34618687 -g1,6885:12321397,34618687 -h1,6885:13902126,34618687:0,0,0 -k1,6885:32583030,34618687:18680904 -g1,6885:32583030,34618687 -) -(1,6889:6630773,35350401:25952256,404226,76021 -(1,6887:6630773,35350401:0,0,0 -g1,6887:6630773,35350401 -g1,6887:6630773,35350401 -g1,6887:6303093,35350401 -(1,6887:6303093,35350401:0,0,0 -) -g1,6887:6630773,35350401 -) -g1,6889:7579210,35350401 -g1,6889:8843793,35350401 -h1,6889:9476084,35350401:0,0,0 -k1,6889:32583028,35350401:23106944 -g1,6889:32583028,35350401 -) -] -) -g1,6890:32583029,35426422 -g1,6890:6630773,35426422 -g1,6890:6630773,35426422 -g1,6890:32583029,35426422 -g1,6890:32583029,35426422 -) -h1,6890:6630773,35623030:0,0,0 -(1,6893:6630773,38954886:25952256,32768,229376 -(1,6893:6630773,38954886:0,32768,229376 -(1,6893:6630773,38954886:5505024,32768,229376 -r1,6893:12135797,38954886:5505024,262144,229376 -) -k1,6893:6630773,38954886:-5505024 -) -(1,6893:6630773,38954886:25952256,32768,0 -r1,6893:32583029,38954886:25952256,32768,0 -) -) -(1,6893:6630773,40559214:25952256,606339,14155 -(1,6893:6630773,40559214:1974731,582746,14155 -g1,6893:6630773,40559214 -g1,6893:8605504,40559214 -) -k1,6893:32583029,40559214:18769772 -g1,6893:32583029,40559214 -) -(1,6896:6630773,41793918:25952256,513147,134348 -k1,6895:9590543,41793918:371098 -k1,6895:13743067,41793918:371097 -k1,6895:17313632,41793918:371097 -k1,6895:20285199,41793918:371098 -k1,6895:23682094,41793918:371098 -k1,6895:25244636,41793918:371097 -k1,6895:29011154,41793918:371098 -k1,6895:30041543,41793918:371097 -k1,6896:32583029,41793918:0 -) -(1,6896:6630773,42635406:25952256,513147,134348 -k1,6895:9322445,42635406:197372 -k1,6895:11530463,42635406:197373 -k1,6895:12675486,42635406:197372 -k1,6895:15104360,42635406:197373 -k1,6895:18064075,42635406:197372 -k1,6895:22373177,42635406:197373 -k1,6895:23562109,42635406:197372 -k1,6895:25081343,42635406:197373 -k1,6895:25938007,42635406:197372 -k1,6895:27154465,42635406:197373 -k1,6895:27766679,42635406:197371 -k1,6895:30980018,42635406:197372 -k1,6896:32583029,42635406:0 -) -(1,6896:6630773,43476894:25952256,505283,134348 -k1,6895:8100709,43476894:191329 -(1,6895:8100709,43476894:0,452978,115847 -r1,6895:14789787,43476894:6689078,568825,115847 -k1,6895:8100709,43476894:-6689078 -) -(1,6895:8100709,43476894:6689078,452978,115847 -k1,6895:8100709,43476894:3277 -h1,6895:14786510,43476894:0,411205,112570 -) -k1,6895:14981116,43476894:191329 -k1,6895:15785207,43476894:191329 -k1,6895:16995622,43476894:191330 -k1,6895:17601786,43476894:191321 -k1,6895:20194354,43476894:191329 -k1,6895:21518145,43476894:191329 -k1,6895:23286926,43476894:191329 -k1,6895:23834115,43476894:191329 -k1,6895:25413498,43476894:191330 -k1,6895:27102980,43476894:191329 -k1,6895:30606499,43476894:191329 -k1,6895:31563944,43476894:191329 -k1,6895:32583029,43476894:0 -) -(1,6896:6630773,44318382:25952256,513147,7863 -k1,6895:10976575,44318382:234073 -k1,6895:13994617,44318382:234073 -k1,6895:14844727,44318382:234072 -k1,6895:16512728,44318382:234073 -k1,6895:17335314,44318382:234073 -k1,6895:18197222,44318382:234073 -k1,6895:19979910,44318382:234072 -k1,6895:22529370,44318382:234073 -k1,6895:23631795,44318382:234073 -k1,6895:24958353,44318382:234073 -k1,6895:26211510,44318382:234072 -k1,6895:28801602,44318382:234073 -k1,6895:32583029,44318382:0 -) -(1,6896:6630773,45159870:25952256,513147,134348 -k1,6895:7772301,45159870:193877 -k1,6895:8985263,45159870:193877 -k1,6895:12344529,45159870:193877 -k1,6895:13610576,45159870:193878 -k1,6895:15198404,45159870:193877 -k1,6895:17174860,45159870:193877 -k1,6895:20885399,45159870:193877 -k1,6895:21695314,45159870:193877 -k1,6895:23397830,45159870:193877 -k1,6895:27202742,45159870:193878 -k1,6895:28415704,45159870:193877 -k1,6895:31635378,45159870:193877 -k1,6895:32583029,45159870:0 -) -] -(1,6896:32583029,45706769:0,0,0 -g1,6896:32583029,45706769 -) -) -] -(1,6896:6630773,47279633:25952256,0,0 -h1,6896:6630773,47279633:25952256,0,0 -) -] -h1,6896:4262630,4025873:0,0,0 -] -!21196 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,6901:37855564,49800853:1179648,16384,0 +) +) +k1,6901:3078556,49800853:-34777008 +) +] +g1,6901:6630773,4812305 +k1,6901:24502442,4812305:16676292 +g1,6901:25889183,4812305 +g1,6901:26537989,4812305 +g1,6901:29852144,4812305 +) +) +] +[1,6901:6630773,45706769:25952256,40108032,0 +(1,6901:6630773,45706769:25952256,40108032,0 +(1,6901:6630773,45706769:0,0,0 +g1,6901:6630773,45706769 +) +[1,6901:6630773,45706769:25952256,40108032,0 +(1,6853:6630773,6254097:25952256,505283,126483 +k1,6852:8983990,6254097:210190 +(1,6852:9191084,6254097:0,452978,115847 +r1,6852:12363044,6254097:3171960,568825,115847 +k1,6852:9191084,6254097:-3171960 +) +(1,6852:9191084,6254097:3171960,452978,115847 +k1,6852:9191084,6254097:3277 +h1,6852:12359767,6254097:0,411205,112570 +) +k1,6852:12953998,6254097:210190 +k1,6852:14062032,6254097:210191 +k1,6852:15968949,6254097:210190 +k1,6852:18963764,6254097:210190 +k1,6852:21221954,6254097:210190 +k1,6852:24052273,6254097:210190 +k1,6852:26570641,6254097:210190 +k1,6852:27972277,6254097:210191 +k1,6852:30915974,6254097:210190 +k1,6852:31812326,6254097:210190 +k1,6852:32583029,6254097:0 +) +(1,6853:6630773,7095585:25952256,513147,134348 +k1,6852:10019791,7095585:143020 +k1,6852:11879853,7095585:143019 +k1,6852:12682165,7095585:143020 +k1,6852:14464240,7095585:143020 +k1,6852:15893075,7095585:143019 +k1,6852:17511310,7095585:143020 +k1,6852:21066790,7095585:143020 +k1,6852:22157461,7095585:143020 +k1,6852:24002450,7095585:143019 +k1,6852:26378282,7095585:143020 +k1,6852:28014868,7095585:143020 +k1,6852:28844049,7095585:143019 +k1,6852:30376432,7095585:143020 +k1,6852:32583029,7095585:0 +) +(1,6853:6630773,7937073:25952256,513147,134348 +k1,6852:7410091,7937073:163280 +k1,6852:8592455,7937073:163279 +k1,6852:10122816,7937073:163280 +k1,6852:10953251,7937073:163279 +(1,6852:10953251,7937073:0,452978,115847 +r1,6852:14125211,7937073:3171960,568825,115847 +k1,6852:10953251,7937073:-3171960 +) +(1,6852:10953251,7937073:3171960,452978,115847 +k1,6852:10953251,7937073:3277 +h1,6852:14121934,7937073:0,411205,112570 +) +k1,6852:14462161,7937073:163280 +k1,6852:16029222,7937073:163280 +k1,6852:16607309,7937073:163244 +k1,6852:19612884,7937073:163279 +k1,6852:21269074,7937073:163280 +k1,6852:22498624,7937073:163279 +k1,6852:24622741,7937073:163280 +k1,6852:25141881,7937073:163280 +k1,6852:28000656,7937073:163279 +k1,6852:29111587,7937073:163280 +k1,6852:32583029,7937073:0 +) +(1,6853:6630773,8778561:25952256,513147,134348 +k1,6852:7521451,8778561:231386 +k1,6852:8771921,8778561:231385 +k1,6852:11846914,8778561:231386 +k1,6852:13685242,8778561:231385 +k1,6852:14575920,8778561:231386 +k1,6852:15826391,8778561:231386 +k1,6852:17969461,8778561:231385 +k1,6852:20336010,8778561:231386 +k1,6852:21592378,8778561:231385 +k1,6852:24102451,8778561:231386 +h1,6852:25645169,8778561:0,0,0 +k1,6852:25876555,8778561:231386 +k1,6852:26917310,8778561:231385 +k1,6852:28646849,8778561:231386 +h1,6852:29842226,8778561:0,0,0 +k1,6852:30073611,8778561:231385 +k1,6852:31252648,8778561:231386 +k1,6852:32583029,8778561:0 +) +(1,6853:6630773,9620049:25952256,513147,126483 +g1,6852:7481430,9620049 +g1,6852:9641496,9620049 +g1,6852:11299556,9620049 +k1,6853:32583029,9620049:19572328 +g1,6853:32583029,9620049 +) +v1,6855:6630773,10810515:0,393216,0 +(1,6871:6630773,19097727:25952256,8680428,196608 +g1,6871:6630773,19097727 +g1,6871:6630773,19097727 +g1,6871:6434165,19097727 +(1,6871:6434165,19097727:0,8680428,196608 +r1,6871:32779637,19097727:26345472,8877036,196608 +k1,6871:6434165,19097727:-26345472 +) +(1,6871:6434165,19097727:26345472,8680428,196608 +[1,6871:6630773,19097727:25952256,8483820,0 +(1,6857:6630773,11002404:25952256,388497,9436 +(1,6856:6630773,11002404:0,0,0 +g1,6856:6630773,11002404 +g1,6856:6630773,11002404 +g1,6856:6303093,11002404 +(1,6856:6303093,11002404:0,0,0 +) +g1,6856:6630773,11002404 +) +g1,6857:7263065,11002404 +g1,6857:8211503,11002404 +h1,6857:9476086,11002404:0,0,0 +k1,6857:32583030,11002404:23106944 +g1,6857:32583030,11002404 +) +(1,6858:6630773,11668582:25952256,404226,76021 +h1,6858:6630773,11668582:0,0,0 +k1,6858:6630773,11668582:0 +h1,6858:8843793,11668582:0,0,0 +k1,6858:32583029,11668582:23739236 +g1,6858:32583029,11668582 +) +(1,6859:6630773,12334760:25952256,404226,76021 +h1,6859:6630773,12334760:0,0,0 +k1,6859:6630773,12334760:0 +h1,6859:8527647,12334760:0,0,0 +k1,6859:32583029,12334760:24055382 +g1,6859:32583029,12334760 +) +(1,6860:6630773,13000938:25952256,404226,76021 +h1,6860:6630773,13000938:0,0,0 +k1,6860:6630773,13000938:0 +h1,6860:8211501,13000938:0,0,0 +k1,6860:32583029,13000938:24371528 +g1,6860:32583029,13000938 +) +(1,6861:6630773,13667116:25952256,404226,76021 +h1,6861:6630773,13667116:0,0,0 +k1,6861:6630773,13667116:0 +h1,6861:9476084,13667116:0,0,0 +k1,6861:32583028,13667116:23106944 +g1,6861:32583028,13667116 +) +(1,6862:6630773,14333294:25952256,404226,76021 +h1,6862:6630773,14333294:0,0,0 +k1,6862:6630773,14333294:0 +h1,6862:8527647,14333294:0,0,0 +k1,6862:32583029,14333294:24055382 +g1,6862:32583029,14333294 +) +(1,6863:6630773,14999472:25952256,404226,76021 +h1,6863:6630773,14999472:0,0,0 +k1,6863:6630773,14999472:0 +h1,6863:8843793,14999472:0,0,0 +k1,6863:32583029,14999472:23739236 +g1,6863:32583029,14999472 +) +(1,6864:6630773,15665650:25952256,404226,76021 +h1,6864:6630773,15665650:0,0,0 +k1,6864:6630773,15665650:0 +h1,6864:8527647,15665650:0,0,0 +k1,6864:32583029,15665650:24055382 +g1,6864:32583029,15665650 +) +(1,6865:6630773,16331828:25952256,404226,76021 +h1,6865:6630773,16331828:0,0,0 +k1,6865:6630773,16331828:0 +h1,6865:8527647,16331828:0,0,0 +k1,6865:32583029,16331828:24055382 +g1,6865:32583029,16331828 +) +(1,6866:6630773,16998006:25952256,404226,107478 +h1,6866:6630773,16998006:0,0,0 +k1,6866:6630773,16998006:0 +h1,6866:9159938,16998006:0,0,0 +k1,6866:32583030,16998006:23423092 +g1,6866:32583030,16998006 +) +(1,6867:6630773,17664184:25952256,404226,101187 +h1,6867:6630773,17664184:0,0,0 +k1,6867:6630773,17664184:0 +h1,6867:10108375,17664184:0,0,0 +k1,6867:32583029,17664184:22474654 +g1,6867:32583029,17664184 +) +(1,6868:6630773,18330362:25952256,404226,107478 +h1,6868:6630773,18330362:0,0,0 +k1,6868:6630773,18330362:0 +h1,6868:9476084,18330362:0,0,0 +k1,6868:32583028,18330362:23106944 +g1,6868:32583028,18330362 +) +(1,6869:6630773,18996540:25952256,404226,101187 +h1,6869:6630773,18996540:0,0,0 +k1,6869:6630773,18996540:0 +h1,6869:9792230,18996540:0,0,0 +k1,6869:32583030,18996540:22790800 +g1,6869:32583030,18996540 +) +] +) +g1,6871:32583029,19097727 +g1,6871:6630773,19097727 +g1,6871:6630773,19097727 +g1,6871:32583029,19097727 +g1,6871:32583029,19097727 +) +h1,6871:6630773,19294335:0,0,0 +v1,6875:6630773,21184399:0,393216,0 +(1,6876:6630773,25153407:25952256,4362224,616038 +g1,6876:6630773,25153407 +(1,6876:6630773,25153407:25952256,4362224,616038 +(1,6876:6630773,25769445:25952256,4978262,0 +[1,6876:6630773,25769445:25952256,4978262,0 +(1,6876:6630773,25743231:25952256,4925834,0 +r1,6876:6656987,25743231:26214,4925834,0 +[1,6876:6656987,25743231:25899828,4925834,0 +(1,6876:6656987,25153407:25899828,3746186,0 +[1,6876:7246811,25153407:24720180,3746186,0 +(1,6876:7246811,22494595:24720180,1087374,126483 +k1,6875:8610149,22494595:153635 +k1,6875:9391619,22494595:153635 +k1,6875:12176524,22494595:153634 +k1,6875:12981587,22494595:153635 +k1,6875:14886999,22494595:153635 +k1,6875:16742604,22494595:153635 +k1,6875:19887958,22494595:153635 +k1,6875:20657631,22494595:153635 +k1,6875:22014506,22494595:153634 +k1,6875:23923851,22494595:153635 +k1,6875:25096571,22494595:153635 +k1,6875:28758348,22494595:153635 +k1,6875:31966991,22494595:0 +) +(1,6876:7246811,23336083:24720180,505283,134348 +k1,6875:8785456,23336083:144694 +k1,6875:9949235,23336083:144694 +k1,6875:11590116,23336083:144694 +k1,6875:12350848,23336083:144694 +k1,6875:13514627,23336083:144694 +k1,6875:16413799,23336083:144694 +k1,6875:18529161,23336083:144694 +k1,6875:19665415,23336083:144694 +k1,6875:20876380,23336083:144694 +k1,6875:23270270,23336083:144694 +k1,6875:24668668,23336083:144694 +k1,6875:26993745,23336083:144694 +k1,6875:28274178,23336083:144694 +k1,6875:30231598,23336083:144694 +k1,6875:31966991,23336083:0 +) +(1,6876:7246811,24177571:24720180,513147,126483 +k1,6875:9441908,24177571:217220 +(1,6875:9441908,24177571:0,414482,115847 +r1,6876:9800174,24177571:358266,530329,115847 +k1,6875:9441908,24177571:-358266 +) +(1,6875:9441908,24177571:358266,414482,115847 +k1,6875:9441908,24177571:3277 +h1,6875:9796897,24177571:0,411205,112570 +) +k1,6875:10017395,24177571:217221 +k1,6875:10920777,24177571:217220 +k1,6875:13519575,24177571:217220 +k1,6875:15765791,24177571:217221 +k1,6875:17174456,24177571:217220 +k1,6875:18825605,24177571:217221 +k1,6875:20385658,24177571:217220 +k1,6875:21996829,24177571:217220 +k1,6875:23916020,24177571:217221 +k1,6875:25329927,24177571:217220 +k1,6875:26230032,24177571:217220 +k1,6875:29075902,24177571:217221 +k1,6875:30682485,24177571:217220 +k1,6875:31966991,24177571:0 +) +(1,6876:7246811,25019059:24720180,513147,134348 +g1,6875:8616513,25019059 +g1,6875:10152676,25019059 +g1,6875:11618061,25019059 +k1,6876:31966991,25019059:16741828 +g1,6876:31966991,25019059 +) +] +) +] +r1,6876:32583029,25743231:26214,4925834,0 +) +] +) +) +g1,6876:32583029,25153407 +) +h1,6876:6630773,25769445:0,0,0 +(1,6879:6630773,27135221:25952256,513147,134348 +h1,6878:6630773,27135221:983040,0,0 +k1,6878:8634572,27135221:260541 +k1,6878:11334363,27135221:260541 +k1,6878:12060865,27135221:260541 +k1,6878:13340491,27135221:260541 +k1,6878:16673360,27135221:260541 +k1,6878:19635951,27135221:260542 +(1,6878:19635951,27135221:0,414482,115847 +r1,6878:20697640,27135221:1061689,530329,115847 +k1,6878:19635951,27135221:-1061689 +) +(1,6878:19635951,27135221:1061689,414482,115847 +k1,6878:19635951,27135221:3277 +h1,6878:20694363,27135221:0,411205,112570 +) +k1,6878:20958181,27135221:260541 +k1,6878:22915449,27135221:260541 +k1,6878:26201787,27135221:260541 +k1,6878:28472973,27135221:260541 +(1,6878:28472973,27135221:0,414482,115847 +r1,6878:29182951,27135221:709978,530329,115847 +k1,6878:28472973,27135221:-709978 +) +(1,6878:28472973,27135221:709978,414482,115847 +k1,6878:28472973,27135221:3277 +h1,6878:29179674,27135221:0,411205,112570 +) +k1,6878:29617162,27135221:260541 +k1,6878:31074390,27135221:260541 +k1,6878:32583029,27135221:0 +) +(1,6879:6630773,27976709:25952256,513147,102891 +k1,6878:9045529,27976709:215368 +k1,6878:10464137,27976709:215367 +k1,6878:11211002,27976709:215368 +k1,6878:12710875,27976709:215367 +k1,6878:13392204,27976709:215368 +k1,6878:14764282,27976709:215368 +k1,6878:16659992,27976709:215367 +k1,6878:18706436,27976709:215368 +k1,6878:19993973,27976709:215368 +k1,6878:20740837,27976709:215367 +k1,6878:24097346,27976709:215368 +k1,6878:25331799,27976709:215368 +k1,6878:26854609,27976709:215367 +k1,6878:28912849,27976709:215368 +k1,6878:29787508,27976709:215367 +k1,6878:31021961,27976709:215368 +k1,6879:32583029,27976709:0 +) +(1,6879:6630773,28818197:25952256,513147,134348 +k1,6878:9570786,28818197:224201 +k1,6878:10326484,28818197:224201 +k1,6878:13518155,28818197:224201 +k1,6878:14974433,28818197:224201 +k1,6878:16696787,28818197:224201 +h1,6878:17493705,28818197:0,0,0 +k1,6878:17717906,28818197:224201 +k1,6878:18889758,28818197:224201 +k1,6878:21231428,28818197:224202 +k1,6878:22264999,28818197:224201 +k1,6878:23508285,28818197:224201 +k1,6878:24967840,28818197:224201 +k1,6878:25859197,28818197:224201 +(1,6878:25859197,28818197:0,414482,115847 +r1,6878:26569175,28818197:709978,530329,115847 +k1,6878:25859197,28818197:-709978 +) +(1,6878:25859197,28818197:709978,414482,115847 +k1,6878:25859197,28818197:3277 +h1,6878:26565898,28818197:0,411205,112570 +) +k1,6878:26793376,28818197:224201 +k1,6878:27633615,28818197:224201 +k1,6878:28653423,28818197:224201 +k1,6878:31812326,28818197:224201 +k1,6878:32583029,28818197:0 +) +(1,6879:6630773,29659685:25952256,513147,126483 +k1,6878:10045456,29659685:187690 +k1,6878:13513878,29659685:187690 +k1,6878:15569343,29659685:187689 +(1,6878:15569343,29659685:0,452978,115847 +r1,6878:18037880,29659685:2468537,568825,115847 +k1,6878:15569343,29659685:-2468537 +) +(1,6878:15569343,29659685:2468537,452978,115847 +k1,6878:15569343,29659685:3277 +h1,6878:18034603,29659685:0,411205,112570 +) +k1,6878:18225570,29659685:187690 +k1,6878:20425215,29659685:187690 +k1,6878:21358049,29659685:187690 +k1,6878:22197167,29659685:187690 +k1,6878:25029890,29659685:187690 +k1,6878:26420820,29659685:187689 +k1,6878:28874090,29659685:187690 +k1,6878:31821501,29659685:187690 +k1,6878:32583029,29659685:0 +) +(1,6879:6630773,30501173:25952256,513147,134348 +g1,6878:10209694,30501173 +g1,6878:11540730,30501173 +(1,6878:11540730,30501173:0,414482,115847 +r1,6878:12250708,30501173:709978,530329,115847 +k1,6878:11540730,30501173:-709978 +) +(1,6878:11540730,30501173:709978,414482,115847 +k1,6878:11540730,30501173:3277 +h1,6878:12247431,30501173:0,411205,112570 +) +g1,6878:12449937,30501173 +g1,6878:13265204,30501173 +g1,6878:14483518,30501173 +g1,6878:16391271,30501173 +g1,6878:17241928,30501173 +g1,6878:18188923,30501173 +g1,6878:20885729,30501173 +g1,6878:21974937,30501173 +g1,6878:25500118,30501173 +g1,6878:27742104,30501173 +k1,6879:32583029,30501173:1195813 +g1,6879:32583029,30501173 +) +v1,6881:6630773,31691639:0,393216,0 +(1,6895:6630773,35426422:25952256,4127999,196608 +g1,6895:6630773,35426422 +g1,6895:6630773,35426422 +g1,6895:6434165,35426422 +(1,6895:6434165,35426422:0,4127999,196608 +r1,6895:32779637,35426422:26345472,4324607,196608 +k1,6895:6434165,35426422:-26345472 +) +(1,6895:6434165,35426422:26345472,4127999,196608 +[1,6895:6630773,35426422:25952256,3931391,0 +(1,6883:6630773,31899257:25952256,404226,82312 +(1,6882:6630773,31899257:0,0,0 +g1,6882:6630773,31899257 +g1,6882:6630773,31899257 +g1,6882:6303093,31899257 +(1,6882:6303093,31899257:0,0,0 +) +g1,6882:6630773,31899257 +) +g1,6883:7263065,31899257 +g1,6883:8211503,31899257 +g1,6883:10740670,31899257 +h1,6883:11689107,31899257:0,0,0 +k1,6883:32583029,31899257:20893922 +g1,6883:32583029,31899257 +) +(1,6884:6630773,32565435:25952256,404226,76021 +h1,6884:6630773,32565435:0,0,0 +k1,6884:6630773,32565435:0 +h1,6884:8843793,32565435:0,0,0 +k1,6884:32583029,32565435:23739236 +g1,6884:32583029,32565435 +) +(1,6888:6630773,33297149:25952256,404226,76021 +(1,6886:6630773,33297149:0,0,0 +g1,6886:6630773,33297149 +g1,6886:6630773,33297149 +g1,6886:6303093,33297149 +(1,6886:6303093,33297149:0,0,0 +) +g1,6886:6630773,33297149 +) +g1,6888:7579210,33297149 +g1,6888:8843793,33297149 +h1,6888:9476084,33297149:0,0,0 +k1,6888:32583028,33297149:23106944 +g1,6888:32583028,33297149 +) +(1,6890:6630773,34618687:25952256,404226,82312 +(1,6889:6630773,34618687:0,0,0 +g1,6889:6630773,34618687 +g1,6889:6630773,34618687 +g1,6889:6303093,34618687 +(1,6889:6303093,34618687:0,0,0 +) +g1,6889:6630773,34618687 +) +k1,6890:6630773,34618687:0 +g1,6890:9159939,34618687 +g1,6890:11689105,34618687 +g1,6890:12321397,34618687 +h1,6890:13902126,34618687:0,0,0 +k1,6890:32583030,34618687:18680904 +g1,6890:32583030,34618687 +) +(1,6894:6630773,35350401:25952256,404226,76021 +(1,6892:6630773,35350401:0,0,0 +g1,6892:6630773,35350401 +g1,6892:6630773,35350401 +g1,6892:6303093,35350401 +(1,6892:6303093,35350401:0,0,0 +) +g1,6892:6630773,35350401 +) +g1,6894:7579210,35350401 +g1,6894:8843793,35350401 +h1,6894:9476084,35350401:0,0,0 +k1,6894:32583028,35350401:23106944 +g1,6894:32583028,35350401 +) +] +) +g1,6895:32583029,35426422 +g1,6895:6630773,35426422 +g1,6895:6630773,35426422 +g1,6895:32583029,35426422 +g1,6895:32583029,35426422 +) +h1,6895:6630773,35623030:0,0,0 +(1,6898:6630773,38954886:25952256,32768,229376 +(1,6898:6630773,38954886:0,32768,229376 +(1,6898:6630773,38954886:5505024,32768,229376 +r1,6898:12135797,38954886:5505024,262144,229376 +) +k1,6898:6630773,38954886:-5505024 +) +(1,6898:6630773,38954886:25952256,32768,0 +r1,6898:32583029,38954886:25952256,32768,0 +) +) +(1,6898:6630773,40559214:25952256,606339,14155 +(1,6898:6630773,40559214:1974731,582746,14155 +g1,6898:6630773,40559214 +g1,6898:8605504,40559214 +) +k1,6898:32583029,40559214:18769772 +g1,6898:32583029,40559214 +) +(1,6901:6630773,41793918:25952256,513147,134348 +k1,6900:9590543,41793918:371098 +k1,6900:13743067,41793918:371097 +k1,6900:17313632,41793918:371097 +k1,6900:20285199,41793918:371098 +k1,6900:23682094,41793918:371098 +k1,6900:25244636,41793918:371097 +k1,6900:29011154,41793918:371098 +k1,6900:30041543,41793918:371097 +k1,6901:32583029,41793918:0 +) +(1,6901:6630773,42635406:25952256,513147,134348 +k1,6900:9298418,42635406:173345 +k1,6900:11482407,42635406:173344 +k1,6900:12603403,42635406:173345 +k1,6900:15008249,42635406:173345 +k1,6900:17943936,42635406:173344 +k1,6900:22229010,42635406:173345 +k1,6900:23393914,42635406:173344 +k1,6900:24889120,42635406:173345 +k1,6900:25721757,42635406:173345 +k1,6900:26914186,42635406:173344 +k1,6900:27502348,42635406:173319 +k1,6900:30691660,42635406:173345 +k1,6901:32583029,42635406:0 +) +(1,6901:6630773,43476894:25952256,505283,134348 +k1,6900:7834533,43476894:213511 +(1,6900:7834533,43476894:0,452978,115847 +r1,6900:14523611,43476894:6689078,568825,115847 +k1,6900:7834533,43476894:-6689078 +) +(1,6900:7834533,43476894:6689078,452978,115847 +k1,6900:7834533,43476894:3277 +h1,6900:14520334,43476894:0,411205,112570 +) +k1,6900:14737122,43476894:213511 +k1,6900:15563395,43476894:213511 +k1,6900:16795991,43476894:213511 +k1,6900:17424331,43476894:213497 +k1,6900:20039081,43476894:213511 +k1,6900:21385054,43476894:213511 +k1,6900:23176017,43476894:213511 +k1,6900:23745388,43476894:213511 +k1,6900:25346952,43476894:213511 +k1,6900:27058616,43476894:213511 +k1,6900:30584317,43476894:213511 +k1,6900:31563944,43476894:213511 +k1,6900:32583029,43476894:0 +) +(1,6901:6630773,44318382:25952256,513147,7863 +k1,6900:10976575,44318382:234073 +k1,6900:13994617,44318382:234073 +k1,6900:14844727,44318382:234072 +k1,6900:16512728,44318382:234073 +k1,6900:17335314,44318382:234073 +k1,6900:18197222,44318382:234073 +k1,6900:19979910,44318382:234072 +k1,6900:22529370,44318382:234073 +k1,6900:23631795,44318382:234073 +k1,6900:24958353,44318382:234073 +k1,6900:26211510,44318382:234072 +k1,6900:28801602,44318382:234073 +k1,6900:32583029,44318382:0 +) +(1,6901:6630773,45159870:25952256,513147,134348 +k1,6900:7772301,45159870:193877 +k1,6900:8985263,45159870:193877 +k1,6900:12344529,45159870:193877 +k1,6900:13610576,45159870:193878 +k1,6900:15198404,45159870:193877 +k1,6900:17174860,45159870:193877 +k1,6900:20885399,45159870:193877 +k1,6900:21695314,45159870:193877 +k1,6900:23397830,45159870:193877 +k1,6900:27202742,45159870:193878 +k1,6900:28415704,45159870:193877 +k1,6900:31635378,45159870:193877 +k1,6900:32583029,45159870:0 +) +] +(1,6901:32583029,45706769:0,0,0 +g1,6901:32583029,45706769 +) +) +] +(1,6901:6630773,47279633:25952256,0,0 +h1,6901:6630773,47279633:25952256,0,0 +) +] +h1,6901:4262630,4025873:0,0,0 +] +!21165 }129 -Input:977:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:978:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:979:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:980:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:981:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!437 +Input:973:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:974:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:975:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:976:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:977:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!467 {130 -[1,6939:4262630,47279633:28320399,43253760,0 -(1,6939:4262630,4025873:0,0,0 -[1,6939:-473657,4025873:25952256,0,0 -(1,6939:-473657,-710414:25952256,0,0 -h1,6939:-473657,-710414:0,0,0 -(1,6939:-473657,-710414:0,0,0 -(1,6939:-473657,-710414:0,0,0 -g1,6939:-473657,-710414 -(1,6939:-473657,-710414:65781,0,65781 -g1,6939:-407876,-710414 -[1,6939:-407876,-644633:0,0,0 +[1,6944:4262630,47279633:28320399,43253760,0 +(1,6944:4262630,4025873:0,0,0 +[1,6944:-473657,4025873:25952256,0,0 +(1,6944:-473657,-710414:25952256,0,0 +h1,6944:-473657,-710414:0,0,0 +(1,6944:-473657,-710414:0,0,0 +(1,6944:-473657,-710414:0,0,0 +g1,6944:-473657,-710414 +(1,6944:-473657,-710414:65781,0,65781 +g1,6944:-407876,-710414 +[1,6944:-407876,-644633:0,0,0 ] ) -k1,6939:-473657,-710414:-65781 +k1,6944:-473657,-710414:-65781 ) ) -k1,6939:25478599,-710414:25952256 -g1,6939:25478599,-710414 +k1,6944:25478599,-710414:25952256 +g1,6944:25478599,-710414 ) ] ) -[1,6939:6630773,47279633:25952256,43253760,0 -[1,6939:6630773,4812305:25952256,786432,0 -(1,6939:6630773,4812305:25952256,505283,11795 -(1,6939:6630773,4812305:25952256,505283,11795 -g1,6939:3078558,4812305 -[1,6939:3078558,4812305:0,0,0 -(1,6939:3078558,2439708:0,1703936,0 -k1,6939:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,6939:2537886,2439708:1179648,16384,0 +[1,6944:6630773,47279633:25952256,43253760,0 +[1,6944:6630773,4812305:25952256,786432,0 +(1,6944:6630773,4812305:25952256,505283,11795 +(1,6944:6630773,4812305:25952256,505283,11795 +g1,6944:3078558,4812305 +[1,6944:3078558,4812305:0,0,0 +(1,6944:3078558,2439708:0,1703936,0 +k1,6944:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,6944:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,6939:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,6944:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,6939:3078558,4812305:0,0,0 -(1,6939:3078558,2439708:0,1703936,0 -g1,6939:29030814,2439708 -g1,6939:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,6939:36151628,1915420:16384,1179648,0 +[1,6944:3078558,4812305:0,0,0 +(1,6944:3078558,2439708:0,1703936,0 +g1,6944:29030814,2439708 +g1,6944:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,6944:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,6939:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,6944:37855564,2439708:1179648,16384,0 ) ) -k1,6939:3078556,2439708:-34777008 +k1,6944:3078556,2439708:-34777008 ) ] -[1,6939:3078558,4812305:0,0,0 -(1,6939:3078558,49800853:0,16384,2228224 -k1,6939:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,6939:2537886,49800853:1179648,16384,0 +[1,6944:3078558,4812305:0,0,0 +(1,6944:3078558,49800853:0,16384,2228224 +k1,6944:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,6944:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,6939:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,6944:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,6939:3078558,4812305:0,0,0 -(1,6939:3078558,49800853:0,16384,2228224 -g1,6939:29030814,49800853 -g1,6939:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,6939:36151628,51504789:16384,1179648,0 +[1,6944:3078558,4812305:0,0,0 +(1,6944:3078558,49800853:0,16384,2228224 +g1,6944:29030814,49800853 +g1,6944:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,6944:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,6939:37855564,49800853:1179648,16384,0 -) -) -k1,6939:3078556,49800853:-34777008 -) -] -g1,6939:6630773,4812305 -g1,6939:6630773,4812305 -g1,6939:10836873,4812305 -k1,6939:31387653,4812305:20550780 -) -) -] -[1,6939:6630773,45706769:25952256,40108032,0 -(1,6939:6630773,45706769:25952256,40108032,0 -(1,6939:6630773,45706769:0,0,0 -g1,6939:6630773,45706769 -) -[1,6939:6630773,45706769:25952256,40108032,0 -(1,6896:6630773,6254097:25952256,513147,134348 -k1,6895:8514147,6254097:181404 -k1,6895:12097524,6254097:181403 -k1,6895:16390657,6254097:181404 -k1,6895:18557147,6254097:181404 -k1,6895:19094410,6254097:181403 -k1,6895:22556546,6254097:181404 -k1,6895:25118873,6254097:181404 -k1,6895:27814893,6254097:181404 -k1,6895:29038318,6254097:181403 -k1,6895:30671344,6254097:181404 -k1,6896:32583029,6254097:0 -) -(1,6896:6630773,7095585:25952256,513147,115847 -k1,6895:8893243,7095585:179736 -k1,6895:10092064,7095585:179736 -k1,6895:13034143,7095585:179736 -k1,6895:16239676,7095585:179736 -k1,6895:18791160,7095585:179736 -k1,6895:19989981,7095585:179736 -k1,6895:21823189,7095585:179735 -k1,6895:23937548,7095585:179736 -k1,6895:24733322,7095585:179736 -k1,6895:26421697,7095585:179736 -k1,6895:28843420,7095585:179736 -(1,6895:28843420,7095585:0,414482,115847 -r1,6895:30256821,7095585:1413401,530329,115847 -k1,6895:28843420,7095585:-1413401 -) -(1,6895:28843420,7095585:1413401,414482,115847 -k1,6895:28843420,7095585:3277 -h1,6895:30253544,7095585:0,411205,112570 -) -k1,6895:30436557,7095585:179736 -k1,6895:31563944,7095585:179736 -k1,6895:32583029,7095585:0 -) -(1,6896:6630773,7937073:25952256,513147,115847 -k1,6895:9150322,7937073:240862 -k1,6895:13346282,7937073:240862 -(1,6895:13346282,7937073:0,459977,115847 -r1,6895:14759683,7937073:1413401,575824,115847 -k1,6895:13346282,7937073:-1413401 -) -(1,6895:13346282,7937073:1413401,459977,115847 -k1,6895:13346282,7937073:3277 -h1,6895:14756406,7937073:0,411205,112570 -) -k1,6895:15000546,7937073:240863 -k1,6895:16189059,7937073:240862 -k1,6895:17449006,7937073:240862 -k1,6895:20288371,7937073:240862 -k1,6895:24484331,7937073:240862 -k1,6895:25916638,7937073:240862 -k1,6895:26882329,7937073:240863 -k1,6895:28106231,7937073:240862 -k1,6895:29543780,7937073:240862 -k1,6895:31923737,7937073:240862 -k1,6895:32583029,7937073:0 -) -(1,6896:6630773,8778561:25952256,513147,126483 -k1,6895:7888661,8778561:238803 -k1,6895:9865479,8778561:238803 -k1,6895:12966239,8778561:238803 -k1,6895:14224127,8778561:238803 -k1,6895:15849016,8778561:238803 -k1,6895:16747111,8778561:238803 -k1,6895:18996558,8778561:238802 -k1,6895:22187758,8778561:238803 -k1,6895:23447612,8778561:238803 -k1,6895:24634066,8778561:238803 -k1,6895:27378966,8778561:238803 -k1,6895:28622436,8778561:238803 -k1,6895:29808890,8778561:238803 -k1,6895:32583029,8778561:0 -) -(1,6896:6630773,9620049:25952256,513147,126483 -g1,6895:7718670,9620049 -g1,6895:13367873,9620049 -g1,6895:16556854,9620049 -g1,6895:17947528,9620049 -g1,6895:19167808,9620049 -g1,6895:20314688,9620049 -k1,6896:32583029,9620049:8091076 -g1,6896:32583029,9620049 -) -(1,6897:6630773,11711309:25952256,564462,139132 -(1,6897:6630773,11711309:2450326,534184,12975 -g1,6897:6630773,11711309 -g1,6897:9081099,11711309 -) -g1,6897:12118955,11711309 -g1,6897:14118721,11711309 -k1,6897:32583029,11711309:14360968 -g1,6897:32583029,11711309 -) -(1,6900:6630773,12946013:25952256,513147,126483 -k1,6899:10411544,12946013:201195 -k1,6899:14724469,12946013:201196 -k1,6899:15917224,12946013:201195 -k1,6899:18499998,12946013:201196 -k1,6899:19462721,12946013:201195 -k1,6899:23987327,12946013:201196 -k1,6899:27214319,12946013:201195 -k1,6899:28700021,12946013:201196 -k1,6899:30949216,12946013:201195 -k1,6900:32583029,12946013:0 -) -(1,6900:6630773,13787501:25952256,513147,126483 -k1,6899:9018202,13787501:197216 -k1,6899:10499925,13787501:197217 -k1,6899:12985003,13787501:197216 -k1,6899:14201305,13787501:197217 -k1,6899:16057237,13787501:197216 -k1,6899:18123541,13787501:197217 -k1,6899:19512202,13787501:197216 -k1,6899:22439648,13787501:197216 -k1,6899:23264700,13787501:197217 -k1,6899:24481001,13787501:197216 -k1,6899:26045299,13787501:197217 -k1,6899:26901807,13787501:197216 -k1,6899:28118109,13787501:197217 -k1,6899:30671344,13787501:197216 -k1,6900:32583029,13787501:0 -) -(1,6900:6630773,14628989:25952256,505283,134348 -k1,6899:9123107,14628989:235929 -k1,6899:11055764,14628989:235930 -k1,6899:14902727,14628989:235929 -k1,6899:16130217,14628989:235930 -k1,6899:17385231,14628989:235929 -k1,6899:19392598,14628989:235929 -k1,6899:23111767,14628989:235930 -k1,6899:25904255,14628989:235929 -k1,6899:27331630,14628989:235930 -k1,6899:30687728,14628989:235929 -k1,6900:32583029,14628989:0 -) -(1,6900:6630773,15470477:25952256,513147,134348 -k1,6899:8327298,15470477:221965 -k1,6899:9439242,15470477:221965 -k1,6899:10449606,15470477:221966 -k1,6899:12986303,15470477:221965 -k1,6899:14227353,15470477:221965 -k1,6899:17388608,15470477:221965 -k1,6899:21093813,15470477:221966 -k1,6899:22334863,15470477:221965 -k1,6899:24720171,15470477:221965 -k1,6899:27231309,15470477:221965 -k1,6899:28472360,15470477:221966 -k1,6899:30682687,15470477:221965 -k1,6899:31563944,15470477:221965 -k1,6899:32583029,15470477:0 -) -(1,6900:6630773,16311965:25952256,505283,7863 -k1,6900:32583029,16311965:21997158 -g1,6900:32583029,16311965 -) -(1,6902:6630773,17153453:25952256,513147,134348 -h1,6901:6630773,17153453:983040,0,0 -k1,6901:8641277,17153453:198434 -k1,6901:10863462,17153453:198433 -k1,6901:11417756,17153453:198434 -k1,6901:13489209,17153453:198434 -k1,6901:15375849,17153453:198433 -k1,6901:17141904,17153453:198434 -k1,6901:18359422,17153453:198433 -k1,6901:22339283,17153453:198434 -k1,6901:24279009,17153453:198434 -k1,6901:25345794,17153453:198433 -k1,6901:26981433,17153453:198434 -k1,6901:27535727,17153453:198434 -k1,6901:29712037,17153453:198433 -k1,6901:30569763,17153453:198434 -k1,6901:32583029,17153453:0 -) -(1,6902:6630773,17994941:25952256,513147,134348 -g1,6901:7986712,17994941 -g1,6901:8872103,17994941 -g1,6901:9842035,17994941 -g1,6901:13113592,17994941 -g1,6901:14260472,17994941 -(1,6901:14260472,17994941:0,414482,115847 -r1,6901:14618738,17994941:358266,530329,115847 -k1,6901:14260472,17994941:-358266 -) -(1,6901:14260472,17994941:358266,414482,115847 -k1,6901:14260472,17994941:3277 -h1,6901:14615461,17994941:0,411205,112570 -) -k1,6902:32583028,17994941:17790620 -g1,6902:32583028,17994941 -) -v1,6904:6630773,19185407:0,393216,0 -(1,6911:6630773,20200760:25952256,1408569,196608 -g1,6911:6630773,20200760 -g1,6911:6630773,20200760 -g1,6911:6434165,20200760 -(1,6911:6434165,20200760:0,1408569,196608 -r1,6911:32779637,20200760:26345472,1605177,196608 -k1,6911:6434165,20200760:-26345472 -) -(1,6911:6434165,20200760:26345472,1408569,196608 -[1,6911:6630773,20200760:25952256,1211961,0 -(1,6906:6630773,19393025:25952256,404226,82312 -(1,6905:6630773,19393025:0,0,0 -g1,6905:6630773,19393025 -g1,6905:6630773,19393025 -g1,6905:6303093,19393025 -(1,6905:6303093,19393025:0,0,0 -) -g1,6905:6630773,19393025 -) -k1,6906:6630773,19393025:0 -g1,6906:9159939,19393025 -g1,6906:9792231,19393025 -g1,6906:11372960,19393025 -g1,6906:12953689,19393025 -g1,6906:13585981,19393025 -g1,6906:14534419,19393025 -g1,6906:15482856,19393025 -g1,6906:16115148,19393025 -h1,6906:17379731,19393025:0,0,0 -k1,6906:32583029,19393025:15203298 -g1,6906:32583029,19393025 -) -(1,6910:6630773,20124739:25952256,404226,76021 -(1,6908:6630773,20124739:0,0,0 -g1,6908:6630773,20124739 -g1,6908:6630773,20124739 -g1,6908:6303093,20124739 -(1,6908:6303093,20124739:0,0,0 -) -g1,6908:6630773,20124739 -) -g1,6910:7579210,20124739 -g1,6910:8843793,20124739 -h1,6910:11689104,20124739:0,0,0 -k1,6910:32583028,20124739:20893924 -g1,6910:32583028,20124739 -) -] -) -g1,6911:32583029,20200760 -g1,6911:6630773,20200760 -g1,6911:6630773,20200760 -g1,6911:32583029,20200760 -g1,6911:32583029,20200760 -) -h1,6911:6630773,20397368:0,0,0 -(1,6915:6630773,21763144:25952256,505283,134348 -h1,6914:6630773,21763144:983040,0,0 -k1,6914:8618667,21763144:175824 -k1,6914:10818242,21763144:175823 -k1,6914:13665313,21763144:175824 -k1,6914:15851782,21763144:175824 -k1,6914:16895958,21763144:175824 -k1,6914:18176063,21763144:175823 -k1,6914:19789092,21763144:175824 -k1,6914:20320776,21763144:175824 -k1,6914:22521006,21763144:175823 -k1,6914:24674707,21763144:175824 -k1,6914:25536693,21763144:175824 -k1,6914:26483220,21763144:175824 -k1,6914:29905041,21763144:175823 -k1,6914:30898754,21763144:175824 -k1,6915:32583029,21763144:0 -) -(1,6915:6630773,22604632:25952256,513147,134348 -k1,6914:8138581,22604632:187258 -k1,6914:8681699,22604632:187258 -k1,6914:10257666,22604632:187259 -k1,6914:12422801,22604632:187258 -k1,6914:13269351,22604632:187258 -k1,6914:16272691,22604632:187258 -k1,6914:16991446,22604632:187258 -k1,6914:19836190,22604632:187259 -k1,6914:20891800,22604632:187258 -k1,6914:22356355,22604632:187258 -k1,6914:23562698,22604632:187258 -k1,6914:25592828,22604632:187258 -k1,6914:26439379,22604632:187259 -k1,6914:27645722,22604632:187258 -k1,6914:31896867,22604632:187258 -k1,6914:32583029,22604632:0 -) -(1,6915:6630773,23446120:25952256,505283,134348 -k1,6914:7208714,23446120:222081 -k1,6914:8599303,23446120:222082 -(1,6914:8806397,23446120:0,452978,115847 -r1,6914:12330069,23446120:3523672,568825,115847 -k1,6914:8806397,23446120:-3523672 -) -(1,6914:8806397,23446120:3523672,452978,115847 -g1,6914:10568233,23446120 -g1,6914:11271657,23446120 -h1,6914:12326792,23446120:0,411205,112570 -) -k1,6914:12759244,23446120:222081 -k1,6914:14265832,23446120:222082 -k1,6914:16478897,23446120:222081 -k1,6914:17985484,23446120:222081 -k1,6914:19226651,23446120:222082 -k1,6914:20245650,23446120:222081 -k1,6914:23620668,23446120:222081 -k1,6914:25232113,23446120:222082 -k1,6914:27472703,23446120:222081 -k1,6914:28974703,23446120:222082 -k1,6914:30215869,23446120:222081 -k1,6914:32583029,23446120:0 -) -(1,6915:6630773,24287608:25952256,513147,7863 -g1,6914:7489294,24287608 -g1,6914:8044383,24287608 -g1,6914:11814013,24287608 -k1,6915:32583029,24287608:18854054 -g1,6915:32583029,24287608 -) -v1,6917:6630773,25478074:0,393216,0 -(1,6925:6630773,28457883:25952256,3373025,196608 -g1,6925:6630773,28457883 -g1,6925:6630773,28457883 -g1,6925:6434165,28457883 -(1,6925:6434165,28457883:0,3373025,196608 -r1,6925:32779637,28457883:26345472,3569633,196608 -k1,6925:6434165,28457883:-26345472 -) -(1,6925:6434165,28457883:26345472,3373025,196608 -[1,6925:6630773,28457883:25952256,3176417,0 -(1,6919:6630773,25691984:25952256,410518,107478 -(1,6918:6630773,25691984:0,0,0 -g1,6918:6630773,25691984 -g1,6918:6630773,25691984 -g1,6918:6303093,25691984 -(1,6918:6303093,25691984:0,0,0 -) -g1,6918:6630773,25691984 -) -g1,6919:8211502,25691984 -g1,6919:9159940,25691984 -g1,6919:12005252,25691984 -g1,6919:12637544,25691984 -g1,6919:13902128,25691984 -g1,6919:14850565,25691984 -g1,6919:15482857,25691984 -g1,6919:16431295,25691984 -g1,6919:19908898,25691984 -g1,6919:20541190,25691984 -h1,6919:21489627,25691984:0,0,0 -k1,6919:32583029,25691984:11093402 -g1,6919:32583029,25691984 -) -(1,6920:6630773,26358162:25952256,0,0 -h1,6920:6630773,26358162:0,0,0 -h1,6920:6630773,26358162:0,0,0 -k1,6920:32583029,26358162:25952256 -g1,6920:32583029,26358162 -) -(1,6921:6630773,27024340:25952256,410518,101187 -h1,6921:6630773,27024340:0,0,0 -g1,6921:9159939,27024340 -g1,6921:10108377,27024340 -g1,6921:14218272,27024340 -g1,6921:14850564,27024340 -k1,6921:14850564,27024340:0 -h1,6921:16431293,27024340:0,0,0 -k1,6921:32583029,27024340:16151736 -g1,6921:32583029,27024340 -) -(1,6922:6630773,27690518:25952256,404226,101187 -h1,6922:6630773,27690518:0,0,0 -g1,6922:6946919,27690518 -g1,6922:7263065,27690518 -g1,6922:7579211,27690518 -g1,6922:7895357,27690518 -g1,6922:8211503,27690518 -g1,6922:8527649,27690518 -g1,6922:8843795,27690518 -g1,6922:9159941,27690518 -g1,6922:9476087,27690518 -g1,6922:9792233,27690518 -g1,6922:10108379,27690518 -g1,6922:10424525,27690518 -g1,6922:10740671,27690518 -g1,6922:11056817,27690518 -g1,6922:11372963,27690518 -g1,6922:11689109,27690518 -g1,6922:12005255,27690518 -g1,6922:12321401,27690518 -g1,6922:12637547,27690518 -g1,6922:12953693,27690518 -g1,6922:13269839,27690518 -g1,6922:13585985,27690518 -g1,6922:14218277,27690518 -g1,6922:14850569,27690518 -g1,6922:17379735,27690518 -g1,6922:18012027,27690518 -g1,6922:19908902,27690518 -g1,6922:21489631,27690518 -g1,6922:22121923,27690518 -g1,6922:23070361,27690518 -g1,6922:24018798,27690518 -g1,6922:24651090,27690518 -h1,6922:26231818,27690518:0,0,0 -k1,6922:32583029,27690518:6351211 -g1,6922:32583029,27690518 -) -(1,6923:6630773,28356696:25952256,404226,101187 -h1,6923:6630773,28356696:0,0,0 -g1,6923:9792231,28356696 -g1,6923:11372960,28356696 -g1,6923:12005252,28356696 -g1,6923:14850564,28356696 -g1,6923:16431293,28356696 -g1,6923:17063585,28356696 -h1,6923:18328168,28356696:0,0,0 -k1,6923:32583029,28356696:14254861 -g1,6923:32583029,28356696 -) -] -) -g1,6925:32583029,28457883 -g1,6925:6630773,28457883 -g1,6925:6630773,28457883 -g1,6925:32583029,28457883 -g1,6925:32583029,28457883 -) -h1,6925:6630773,28654491:0,0,0 -(1,6928:6630773,43259046:25952256,14014731,0 -k1,6928:12599879,43259046:5969106 -h1,6927:12599879,43259046:0,0,0 -(1,6927:12599879,43259046:14014044,14014731,0 -(1,6927:12599879,43259046:14014766,14014766,0 -(1,6927:12599879,43259046:14014766,14014766,0 -(1,6927:12599879,43259046:0,14014766,0 -(1,6927:12599879,43259046:0,18939904,0 -(1,6927:12599879,43259046:18939904,18939904,0 -) -k1,6927:12599879,43259046:-18939904 -) -) -g1,6927:26614645,43259046 -) -) -) -g1,6928:26613923,43259046 -k1,6928:32583029,43259046:5969106 -) -] -(1,6939:32583029,45706769:0,0,0 -g1,6939:32583029,45706769 -) -) -] -(1,6939:6630773,47279633:25952256,0,0 -h1,6939:6630773,47279633:25952256,0,0 -) -] -h1,6939:4262630,4025873:0,0,0 -] -!16224 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,6944:37855564,49800853:1179648,16384,0 +) +) +k1,6944:3078556,49800853:-34777008 +) +] +g1,6944:6630773,4812305 +g1,6944:6630773,4812305 +g1,6944:10836873,4812305 +k1,6944:31387653,4812305:20550780 +) +) +] +[1,6944:6630773,45706769:25952256,40108032,0 +(1,6944:6630773,45706769:25952256,40108032,0 +(1,6944:6630773,45706769:0,0,0 +g1,6944:6630773,45706769 +) +[1,6944:6630773,45706769:25952256,40108032,0 +(1,6901:6630773,6254097:25952256,513147,134348 +k1,6900:8514147,6254097:181404 +k1,6900:12097524,6254097:181403 +k1,6900:16390657,6254097:181404 +k1,6900:18557147,6254097:181404 +k1,6900:19094410,6254097:181403 +k1,6900:22556546,6254097:181404 +k1,6900:25118873,6254097:181404 +k1,6900:27814893,6254097:181404 +k1,6900:29038318,6254097:181403 +k1,6900:30671344,6254097:181404 +k1,6901:32583029,6254097:0 +) +(1,6901:6630773,7095585:25952256,513147,115847 +k1,6900:8893243,7095585:179736 +k1,6900:10092064,7095585:179736 +k1,6900:13034143,7095585:179736 +k1,6900:16239676,7095585:179736 +k1,6900:18791160,7095585:179736 +k1,6900:19989981,7095585:179736 +k1,6900:21823189,7095585:179735 +k1,6900:23937548,7095585:179736 +k1,6900:24733322,7095585:179736 +k1,6900:26421697,7095585:179736 +k1,6900:28843420,7095585:179736 +(1,6900:28843420,7095585:0,414482,115847 +r1,6900:30256821,7095585:1413401,530329,115847 +k1,6900:28843420,7095585:-1413401 +) +(1,6900:28843420,7095585:1413401,414482,115847 +k1,6900:28843420,7095585:3277 +h1,6900:30253544,7095585:0,411205,112570 +) +k1,6900:30436557,7095585:179736 +k1,6900:31563944,7095585:179736 +k1,6900:32583029,7095585:0 +) +(1,6901:6630773,7937073:25952256,513147,115847 +k1,6900:9150322,7937073:240862 +k1,6900:13346282,7937073:240862 +(1,6900:13346282,7937073:0,459977,115847 +r1,6900:14759683,7937073:1413401,575824,115847 +k1,6900:13346282,7937073:-1413401 +) +(1,6900:13346282,7937073:1413401,459977,115847 +k1,6900:13346282,7937073:3277 +h1,6900:14756406,7937073:0,411205,112570 +) +k1,6900:15000546,7937073:240863 +k1,6900:16189059,7937073:240862 +k1,6900:17449006,7937073:240862 +k1,6900:20288371,7937073:240862 +k1,6900:24484331,7937073:240862 +k1,6900:25916638,7937073:240862 +k1,6900:26882329,7937073:240863 +k1,6900:28106231,7937073:240862 +k1,6900:29543780,7937073:240862 +k1,6900:31923737,7937073:240862 +k1,6900:32583029,7937073:0 +) +(1,6901:6630773,8778561:25952256,513147,126483 +k1,6900:7888661,8778561:238803 +k1,6900:9865479,8778561:238803 +k1,6900:12966239,8778561:238803 +k1,6900:14224127,8778561:238803 +k1,6900:15849016,8778561:238803 +k1,6900:16747111,8778561:238803 +k1,6900:18996558,8778561:238802 +k1,6900:22187758,8778561:238803 +k1,6900:23447612,8778561:238803 +k1,6900:24634066,8778561:238803 +k1,6900:27378966,8778561:238803 +k1,6900:28622436,8778561:238803 +k1,6900:29808890,8778561:238803 +k1,6900:32583029,8778561:0 +) +(1,6901:6630773,9620049:25952256,513147,126483 +g1,6900:7718670,9620049 +g1,6900:13367873,9620049 +g1,6900:16556854,9620049 +g1,6900:17947528,9620049 +g1,6900:19167808,9620049 +g1,6900:20314688,9620049 +k1,6901:32583029,9620049:8091076 +g1,6901:32583029,9620049 +) +(1,6902:6630773,11711309:25952256,564462,139132 +(1,6902:6630773,11711309:2450326,534184,12975 +g1,6902:6630773,11711309 +g1,6902:9081099,11711309 +) +g1,6902:12118955,11711309 +g1,6902:14118721,11711309 +k1,6902:32583029,11711309:14360968 +g1,6902:32583029,11711309 +) +(1,6905:6630773,12946013:25952256,513147,126483 +k1,6904:10483124,12946013:272775 +k1,6904:14867629,12946013:272776 +k1,6904:16131964,12946013:272775 +k1,6904:18786317,12946013:272775 +k1,6904:19820621,12946013:272776 +k1,6904:24416806,12946013:272775 +k1,6904:27715378,12946013:272775 +k1,6904:29272660,12946013:272776 +k1,6904:31593435,12946013:272775 +k1,6905:32583029,12946013:0 +) +(1,6905:6630773,13787501:25952256,513147,126483 +k1,6904:9669724,13787501:204519 +k1,6904:11158749,13787501:204519 +k1,6904:13651130,13787501:204519 +k1,6904:14874734,13787501:204519 +k1,6904:16737969,13787501:204519 +k1,6904:18811575,13787501:204519 +k1,6904:20207539,13787501:204519 +k1,6904:23142288,13787501:204519 +k1,6904:23974642,13787501:204519 +k1,6904:25198246,13787501:204519 +k1,6904:26769846,13787501:204519 +k1,6904:27633657,13787501:204519 +k1,6904:28857261,13787501:204519 +k1,6904:31417799,13787501:204519 +k1,6905:32583029,13787501:0 +) +(1,6905:6630773,14628989:25952256,505283,134348 +k1,6904:9830503,14628989:196870 +k1,6904:11724100,14628989:196870 +k1,6904:15532004,14628989:196870 +k1,6904:16720434,14628989:196870 +k1,6904:17936388,14628989:196869 +k1,6904:19904696,14628989:196870 +k1,6904:23584805,14628989:196870 +k1,6904:26338234,14628989:196870 +k1,6904:27726549,14628989:196870 +k1,6904:31043588,14628989:196870 +k1,6905:32583029,14628989:0 +) +(1,6905:6630773,15470477:25952256,513147,134348 +k1,6904:8655785,15470477:194591 +k1,6904:9740356,15470477:194592 +k1,6904:10723345,15470477:194591 +k1,6904:13232668,15470477:194591 +k1,6904:14446345,15470477:194592 +k1,6904:17580226,15470477:194591 +k1,6904:21258056,15470477:194591 +k1,6904:22471732,15470477:194591 +k1,6904:24829667,15470477:194592 +k1,6904:27313431,15470477:194591 +k1,6904:28527107,15470477:194591 +k1,6904:30710061,15470477:194592 +k1,6904:31563944,15470477:194591 +k1,6904:32583029,15470477:0 +) +(1,6905:6630773,16311965:25952256,505283,7863 +k1,6905:32583029,16311965:21997158 +g1,6905:32583029,16311965 +) +(1,6907:6630773,17153453:25952256,513147,134348 +h1,6906:6630773,17153453:983040,0,0 +k1,6906:8641277,17153453:198434 +k1,6906:10863462,17153453:198433 +k1,6906:11417756,17153453:198434 +k1,6906:13489209,17153453:198434 +k1,6906:15375849,17153453:198433 +k1,6906:17141904,17153453:198434 +k1,6906:18359422,17153453:198433 +k1,6906:22339283,17153453:198434 +k1,6906:24279009,17153453:198434 +k1,6906:25345794,17153453:198433 +k1,6906:26981433,17153453:198434 +k1,6906:27535727,17153453:198434 +k1,6906:29712037,17153453:198433 +k1,6906:30569763,17153453:198434 +k1,6906:32583029,17153453:0 +) +(1,6907:6630773,17994941:25952256,513147,134348 +g1,6906:7986712,17994941 +g1,6906:8872103,17994941 +g1,6906:9842035,17994941 +g1,6906:13113592,17994941 +g1,6906:14260472,17994941 +(1,6906:14260472,17994941:0,414482,115847 +r1,6906:14618738,17994941:358266,530329,115847 +k1,6906:14260472,17994941:-358266 +) +(1,6906:14260472,17994941:358266,414482,115847 +k1,6906:14260472,17994941:3277 +h1,6906:14615461,17994941:0,411205,112570 +) +k1,6907:32583028,17994941:17790620 +g1,6907:32583028,17994941 +) +v1,6909:6630773,19185407:0,393216,0 +(1,6916:6630773,20200760:25952256,1408569,196608 +g1,6916:6630773,20200760 +g1,6916:6630773,20200760 +g1,6916:6434165,20200760 +(1,6916:6434165,20200760:0,1408569,196608 +r1,6916:32779637,20200760:26345472,1605177,196608 +k1,6916:6434165,20200760:-26345472 +) +(1,6916:6434165,20200760:26345472,1408569,196608 +[1,6916:6630773,20200760:25952256,1211961,0 +(1,6911:6630773,19393025:25952256,404226,82312 +(1,6910:6630773,19393025:0,0,0 +g1,6910:6630773,19393025 +g1,6910:6630773,19393025 +g1,6910:6303093,19393025 +(1,6910:6303093,19393025:0,0,0 +) +g1,6910:6630773,19393025 +) +k1,6911:6630773,19393025:0 +g1,6911:9159939,19393025 +g1,6911:9792231,19393025 +g1,6911:11372960,19393025 +g1,6911:12953689,19393025 +g1,6911:13585981,19393025 +g1,6911:14534419,19393025 +g1,6911:15482856,19393025 +g1,6911:16115148,19393025 +h1,6911:17379731,19393025:0,0,0 +k1,6911:32583029,19393025:15203298 +g1,6911:32583029,19393025 +) +(1,6915:6630773,20124739:25952256,404226,76021 +(1,6913:6630773,20124739:0,0,0 +g1,6913:6630773,20124739 +g1,6913:6630773,20124739 +g1,6913:6303093,20124739 +(1,6913:6303093,20124739:0,0,0 +) +g1,6913:6630773,20124739 +) +g1,6915:7579210,20124739 +g1,6915:8843793,20124739 +h1,6915:11689104,20124739:0,0,0 +k1,6915:32583028,20124739:20893924 +g1,6915:32583028,20124739 +) +] +) +g1,6916:32583029,20200760 +g1,6916:6630773,20200760 +g1,6916:6630773,20200760 +g1,6916:32583029,20200760 +g1,6916:32583029,20200760 +) +h1,6916:6630773,20397368:0,0,0 +(1,6920:6630773,21763144:25952256,505283,134348 +h1,6919:6630773,21763144:983040,0,0 +k1,6919:8668895,21763144:226052 +k1,6919:10918700,21763144:226053 +k1,6919:13815999,21763144:226052 +k1,6919:16052696,21763144:226052 +k1,6919:17147101,21763144:226053 +k1,6919:18477435,21763144:226052 +k1,6919:20140692,21763144:226052 +k1,6919:20722605,21763144:226053 +k1,6919:22973064,21763144:226052 +k1,6919:25176994,21763144:226053 +k1,6919:26089208,21763144:226052 +k1,6919:27085963,21763144:226052 +k1,6919:30558014,21763144:226053 +k1,6919:31601955,21763144:226052 +k1,6920:32583029,21763144:0 +) +(1,6920:6630773,22604632:25952256,513147,134348 +k1,6919:8853942,22604632:199417 +k1,6919:9409218,22604632:199416 +k1,6919:10997343,22604632:199417 +k1,6919:13174637,22604632:199417 +k1,6919:14033345,22604632:199416 +k1,6919:17048844,22604632:199417 +k1,6919:17779758,22604632:199417 +k1,6919:20636659,22604632:199416 +k1,6919:21704428,22604632:199417 +k1,6919:23181141,22604632:199416 +k1,6919:24399643,22604632:199417 +k1,6919:26441932,22604632:199417 +k1,6919:27300640,22604632:199416 +k1,6919:28519142,22604632:199417 +k1,6919:32583029,22604632:0 +) +(1,6920:6630773,23446120:25952256,505283,134348 +k1,6919:7474142,23446120:157207 +k1,6919:7987209,23446120:157207 +k1,6919:9312923,23446120:157207 +(1,6919:9520017,23446120:0,452978,115847 +r1,6919:13043689,23446120:3523672,568825,115847 +k1,6919:9520017,23446120:-3523672 +) +(1,6919:9520017,23446120:3523672,452978,115847 +g1,6919:11281853,23446120 +g1,6919:11985277,23446120 +h1,6919:13040412,23446120:0,411205,112570 +) +k1,6919:13407989,23446120:157206 +k1,6919:14849702,23446120:157207 +k1,6919:16997893,23446120:157207 +k1,6919:18439606,23446120:157207 +k1,6919:19615898,23446120:157207 +k1,6919:20570023,23446120:157207 +k1,6919:23880167,23446120:157207 +k1,6919:25426736,23446120:157206 +k1,6919:27602452,23446120:157207 +k1,6919:29039577,23446120:157207 +k1,6919:30215869,23446120:157207 +k1,6919:32583029,23446120:0 +) +(1,6920:6630773,24287608:25952256,513147,7863 +g1,6919:7489294,24287608 +g1,6919:8044383,24287608 +g1,6919:11814013,24287608 +k1,6920:32583029,24287608:18854054 +g1,6920:32583029,24287608 +) +v1,6922:6630773,25478074:0,393216,0 +(1,6930:6630773,28457883:25952256,3373025,196608 +g1,6930:6630773,28457883 +g1,6930:6630773,28457883 +g1,6930:6434165,28457883 +(1,6930:6434165,28457883:0,3373025,196608 +r1,6930:32779637,28457883:26345472,3569633,196608 +k1,6930:6434165,28457883:-26345472 +) +(1,6930:6434165,28457883:26345472,3373025,196608 +[1,6930:6630773,28457883:25952256,3176417,0 +(1,6924:6630773,25691984:25952256,410518,107478 +(1,6923:6630773,25691984:0,0,0 +g1,6923:6630773,25691984 +g1,6923:6630773,25691984 +g1,6923:6303093,25691984 +(1,6923:6303093,25691984:0,0,0 +) +g1,6923:6630773,25691984 +) +g1,6924:8211502,25691984 +g1,6924:9159940,25691984 +g1,6924:12005252,25691984 +g1,6924:12637544,25691984 +g1,6924:13902128,25691984 +g1,6924:14850565,25691984 +g1,6924:15482857,25691984 +g1,6924:16431295,25691984 +g1,6924:19908898,25691984 +g1,6924:20541190,25691984 +h1,6924:21489627,25691984:0,0,0 +k1,6924:32583029,25691984:11093402 +g1,6924:32583029,25691984 +) +(1,6925:6630773,26358162:25952256,0,0 +h1,6925:6630773,26358162:0,0,0 +h1,6925:6630773,26358162:0,0,0 +k1,6925:32583029,26358162:25952256 +g1,6925:32583029,26358162 +) +(1,6926:6630773,27024340:25952256,410518,101187 +h1,6926:6630773,27024340:0,0,0 +g1,6926:9159939,27024340 +g1,6926:10108377,27024340 +g1,6926:14218272,27024340 +g1,6926:14850564,27024340 +k1,6926:14850564,27024340:0 +h1,6926:16431293,27024340:0,0,0 +k1,6926:32583029,27024340:16151736 +g1,6926:32583029,27024340 +) +(1,6927:6630773,27690518:25952256,404226,101187 +h1,6927:6630773,27690518:0,0,0 +g1,6927:6946919,27690518 +g1,6927:7263065,27690518 +g1,6927:7579211,27690518 +g1,6927:7895357,27690518 +g1,6927:8211503,27690518 +g1,6927:8527649,27690518 +g1,6927:8843795,27690518 +g1,6927:9159941,27690518 +g1,6927:9476087,27690518 +g1,6927:9792233,27690518 +g1,6927:10108379,27690518 +g1,6927:10424525,27690518 +g1,6927:10740671,27690518 +g1,6927:11056817,27690518 +g1,6927:11372963,27690518 +g1,6927:11689109,27690518 +g1,6927:12005255,27690518 +g1,6927:12321401,27690518 +g1,6927:12637547,27690518 +g1,6927:12953693,27690518 +g1,6927:13269839,27690518 +g1,6927:13585985,27690518 +g1,6927:14218277,27690518 +g1,6927:14850569,27690518 +g1,6927:17379735,27690518 +g1,6927:18012027,27690518 +g1,6927:19908902,27690518 +g1,6927:21489631,27690518 +g1,6927:22121923,27690518 +g1,6927:23070361,27690518 +g1,6927:24018798,27690518 +g1,6927:24651090,27690518 +h1,6927:26231818,27690518:0,0,0 +k1,6927:32583029,27690518:6351211 +g1,6927:32583029,27690518 +) +(1,6928:6630773,28356696:25952256,404226,101187 +h1,6928:6630773,28356696:0,0,0 +g1,6928:9792231,28356696 +g1,6928:11372960,28356696 +g1,6928:12005252,28356696 +g1,6928:14850564,28356696 +g1,6928:16431293,28356696 +g1,6928:17063585,28356696 +h1,6928:18328168,28356696:0,0,0 +k1,6928:32583029,28356696:14254861 +g1,6928:32583029,28356696 +) +] +) +g1,6930:32583029,28457883 +g1,6930:6630773,28457883 +g1,6930:6630773,28457883 +g1,6930:32583029,28457883 +g1,6930:32583029,28457883 +) +h1,6930:6630773,28654491:0,0,0 +(1,6933:6630773,43259046:25952256,14014731,0 +k1,6933:12599879,43259046:5969106 +h1,6932:12599879,43259046:0,0,0 +(1,6932:12599879,43259046:14014044,14014731,0 +(1,6932:12599879,43259046:14014766,14014766,0 +(1,6932:12599879,43259046:14014766,14014766,0 +(1,6932:12599879,43259046:0,14014766,0 +(1,6932:12599879,43259046:0,18939904,0 +(1,6932:12599879,43259046:18939904,18939904,0 +) +k1,6932:12599879,43259046:-18939904 +) +) +g1,6932:26614645,43259046 +) +) +) +g1,6933:26613923,43259046 +k1,6933:32583029,43259046:5969106 +) +] +(1,6944:32583029,45706769:0,0,0 +g1,6944:32583029,45706769 +) +) +] +(1,6944:6630773,47279633:25952256,0,0 +h1,6944:6630773,47279633:25952256,0,0 +) +] +h1,6944:4262630,4025873:0,0,0 +] +!16223 }130 -Input:982:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:983:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:984:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:985:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!352 +Input:978:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:979:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:980:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:981:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!376 {131 -[1,7008:4262630,47279633:28320399,43253760,0 -(1,7008:4262630,4025873:0,0,0 -[1,7008:-473657,4025873:25952256,0,0 -(1,7008:-473657,-710414:25952256,0,0 -h1,7008:-473657,-710414:0,0,0 -(1,7008:-473657,-710414:0,0,0 -(1,7008:-473657,-710414:0,0,0 -g1,7008:-473657,-710414 -(1,7008:-473657,-710414:65781,0,65781 -g1,7008:-407876,-710414 -[1,7008:-407876,-644633:0,0,0 +[1,7013:4262630,47279633:28320399,43253760,0 +(1,7013:4262630,4025873:0,0,0 +[1,7013:-473657,4025873:25952256,0,0 +(1,7013:-473657,-710414:25952256,0,0 +h1,7013:-473657,-710414:0,0,0 +(1,7013:-473657,-710414:0,0,0 +(1,7013:-473657,-710414:0,0,0 +g1,7013:-473657,-710414 +(1,7013:-473657,-710414:65781,0,65781 +g1,7013:-407876,-710414 +[1,7013:-407876,-644633:0,0,0 ] ) -k1,7008:-473657,-710414:-65781 +k1,7013:-473657,-710414:-65781 ) ) -k1,7008:25478599,-710414:25952256 -g1,7008:25478599,-710414 +k1,7013:25478599,-710414:25952256 +g1,7013:25478599,-710414 ) ] ) -[1,7008:6630773,47279633:25952256,43253760,0 -[1,7008:6630773,4812305:25952256,786432,0 -(1,7008:6630773,4812305:25952256,505283,134348 -(1,7008:6630773,4812305:25952256,505283,134348 -g1,7008:3078558,4812305 -[1,7008:3078558,4812305:0,0,0 -(1,7008:3078558,2439708:0,1703936,0 -k1,7008:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7008:2537886,2439708:1179648,16384,0 +[1,7013:6630773,47279633:25952256,43253760,0 +[1,7013:6630773,4812305:25952256,786432,0 +(1,7013:6630773,4812305:25952256,505283,134348 +(1,7013:6630773,4812305:25952256,505283,134348 +g1,7013:3078558,4812305 +[1,7013:3078558,4812305:0,0,0 +(1,7013:3078558,2439708:0,1703936,0 +k1,7013:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7013:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7008:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7013:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7008:3078558,4812305:0,0,0 -(1,7008:3078558,2439708:0,1703936,0 -g1,7008:29030814,2439708 -g1,7008:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7008:36151628,1915420:16384,1179648,0 +[1,7013:3078558,4812305:0,0,0 +(1,7013:3078558,2439708:0,1703936,0 +g1,7013:29030814,2439708 +g1,7013:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7013:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7008:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7013:37855564,2439708:1179648,16384,0 ) ) -k1,7008:3078556,2439708:-34777008 +k1,7013:3078556,2439708:-34777008 ) ] -[1,7008:3078558,4812305:0,0,0 -(1,7008:3078558,49800853:0,16384,2228224 -k1,7008:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7008:2537886,49800853:1179648,16384,0 +[1,7013:3078558,4812305:0,0,0 +(1,7013:3078558,49800853:0,16384,2228224 +k1,7013:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7013:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7008:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7013:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7008:3078558,4812305:0,0,0 -(1,7008:3078558,49800853:0,16384,2228224 -g1,7008:29030814,49800853 -g1,7008:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7008:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] +[1,7013:3078558,4812305:0,0,0 +(1,7013:3078558,49800853:0,16384,2228224 +g1,7013:29030814,49800853 +g1,7013:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7013:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7008:37855564,49800853:1179648,16384,0 -) -) -k1,7008:3078556,49800853:-34777008 -) -] -g1,7008:6630773,4812305 -k1,7008:24573876,4812305:16747726 -g1,7008:25960617,4812305 -g1,7008:26609423,4812305 -g1,7008:29923578,4812305 -) -) -] -[1,7008:6630773,45706769:25952256,40108032,0 -(1,7008:6630773,45706769:25952256,40108032,0 -(1,7008:6630773,45706769:0,0,0 -g1,7008:6630773,45706769 -) -[1,7008:6630773,45706769:25952256,40108032,0 -(1,6935:6630773,6254097:25952256,564462,139132 -(1,6935:6630773,6254097:2450326,534184,12975 -g1,6935:6630773,6254097 -g1,6935:9081099,6254097 -) -g1,6935:13850548,6254097 -g1,6935:15850314,6254097 -g1,6935:20178574,6254097 -g1,6935:21745802,6254097 -k1,6935:32583029,6254097:7500199 -g1,6935:32583029,6254097 -) -(1,6939:6630773,7488801:25952256,513147,138281 -k1,6938:7353080,7488801:244550 -k1,6938:8465982,7488801:244550 -k1,6938:10185747,7488801:244550 -k1,6938:10786157,7488801:244550 -k1,6938:14259666,7488801:244550 -k1,6938:17104685,7488801:244550 -k1,6938:18217588,7488801:244551 -k1,6938:19566420,7488801:244550 -k1,6938:21197712,7488801:244550 -k1,6938:22277846,7488801:244550 -k1,6938:23541481,7488801:244550 -k1,6938:28409596,7488801:244550 -$1,6938:28409596,7488801 -$1,6938:28877523,7488801 -k1,6938:31015408,7488801:244550 -k1,6938:32583029,7488801:0 -) -(1,6939:6630773,8330289:25952256,505283,102891 -k1,6938:7863724,8330289:213866 -k1,6938:10433609,8330289:213866 -k1,6938:14602573,8330289:213866 -k1,6938:16013125,8330289:213865 -k1,6938:17965006,8330289:213866 -k1,6938:19370317,8330289:213866 -k1,6938:22427790,8330289:213866 -k1,6938:25591431,8330289:213866 -k1,6938:27935217,8330289:213866 -k1,6938:28765120,8330289:213865 -k1,6938:30472552,8330289:213866 -k1,6938:31042278,8330289:213866 -k1,6938:32583029,8330289:0 -) -(1,6939:6630773,9171777:25952256,513147,126483 -k1,6938:8163277,9171777:246688 -k1,6938:9157732,9171777:246689 -k1,6938:12613063,9171777:246688 -k1,6938:14427372,9171777:246688 -k1,6938:15693146,9171777:246689 -k1,6938:17593307,9171777:246688 -k1,6938:21911747,9171777:246688 -k1,6938:24044562,9171777:246689 -k1,6938:25310335,9171777:246688 -k1,6938:26796964,9171777:246688 -k1,6938:30689421,9171777:246689 -k1,6938:31563944,9171777:246688 -k1,6938:32583029,9171777:0 -) -(1,6939:6630773,10013265:25952256,513147,126483 -k1,6938:9452836,10013265:160646 -k1,6938:11655585,10013265:160647 -k1,6938:12684583,10013265:160646 -k1,6938:13937714,10013265:160646 -k1,6938:16858737,10013265:160647 -k1,6938:19030028,10013265:160646 -k1,6938:20138325,10013265:160646 -k1,6938:21065087,10013265:160646 -k1,6938:24836768,10013265:160647 -(1,6938:24836768,10013265:0,414482,115847 -r1,6938:25195034,10013265:358266,530329,115847 -k1,6938:24836768,10013265:-358266 -) -(1,6938:24836768,10013265:358266,414482,115847 -k1,6938:24836768,10013265:3277 -h1,6938:25191757,10013265:0,411205,112570 -) -k1,6938:25529350,10013265:160646 -k1,6938:26709081,10013265:160646 -k1,6938:29643867,10013265:160647 -(1,6938:29643867,10013265:0,414482,115847 -r1,6938:31057268,10013265:1413401,530329,115847 -k1,6938:29643867,10013265:-1413401 -) -(1,6938:29643867,10013265:1413401,414482,115847 -k1,6938:29643867,10013265:3277 -h1,6938:31053991,10013265:0,411205,112570 -) -k1,6938:31391584,10013265:160646 -k1,6939:32583029,10013265:0 -) -(1,6939:6630773,10854753:25952256,505283,115847 -(1,6938:6630773,10854753:0,452978,115847 -r1,6938:7340751,10854753:709978,568825,115847 -k1,6938:6630773,10854753:-709978 -) -(1,6938:6630773,10854753:709978,452978,115847 -k1,6938:6630773,10854753:3277 -h1,6938:7337474,10854753:0,411205,112570 -) -g1,6938:7713650,10854753 -g1,6938:8931964,10854753 -g1,6938:11974800,10854753 -g1,6938:15297475,10854753 -k1,6939:32583029,10854753:16136708 -g1,6939:32583029,10854753 -) -v1,6941:6630773,12045219:0,393216,0 -(1,6972:6630773,21273580:25952256,9621577,196608 -g1,6972:6630773,21273580 -g1,6972:6630773,21273580 -g1,6972:6434165,21273580 -(1,6972:6434165,21273580:0,9621577,196608 -r1,6972:32779637,21273580:26345472,9818185,196608 -k1,6972:6434165,21273580:-26345472 -) -(1,6972:6434165,21273580:26345472,9621577,196608 -[1,6972:6630773,21273580:25952256,9424969,0 -(1,6943:6630773,12252837:25952256,404226,101187 -(1,6942:6630773,12252837:0,0,0 -g1,6942:6630773,12252837 -g1,6942:6630773,12252837 -g1,6942:6303093,12252837 -(1,6942:6303093,12252837:0,0,0 -) -g1,6942:6630773,12252837 -) -k1,6943:6630773,12252837:0 -g1,6943:9159939,12252837 -g1,6943:9792231,12252837 -g1,6943:10740669,12252837 -g1,6943:12321398,12252837 -g1,6943:12953690,12252837 -g1,6943:13902128,12252837 -g1,6943:14850565,12252837 -g1,6943:15482857,12252837 -h1,6943:16115149,12252837:0,0,0 -k1,6943:32583029,12252837:16467880 -g1,6943:32583029,12252837 -) -(1,6947:6630773,12984551:25952256,404226,76021 -(1,6945:6630773,12984551:0,0,0 -g1,6945:6630773,12984551 -g1,6945:6630773,12984551 -g1,6945:6303093,12984551 -(1,6945:6303093,12984551:0,0,0 -) -g1,6945:6630773,12984551 -) -g1,6947:7579210,12984551 -g1,6947:8843793,12984551 -h1,6947:11689104,12984551:0,0,0 -k1,6947:32583028,12984551:20893924 -g1,6947:32583028,12984551 -) -(1,6949:6630773,14306089:25952256,404226,101187 -(1,6948:6630773,14306089:0,0,0 -g1,6948:6630773,14306089 -g1,6948:6630773,14306089 -g1,6948:6303093,14306089 -(1,6948:6303093,14306089:0,0,0 -) -g1,6948:6630773,14306089 -) -k1,6949:6630773,14306089:0 -g1,6949:9159939,14306089 -g1,6949:9792231,14306089 -g1,6949:10740669,14306089 -g1,6949:12321398,14306089 -g1,6949:12953690,14306089 -g1,6949:13902128,14306089 -g1,6949:14850565,14306089 -g1,6949:15482857,14306089 -g1,6949:16431295,14306089 -g1,6949:19908898,14306089 -g1,6949:20541190,14306089 -h1,6949:22438064,14306089:0,0,0 -k1,6949:32583029,14306089:10144965 -g1,6949:32583029,14306089 -) -(1,6953:6630773,15037803:25952256,404226,76021 -(1,6951:6630773,15037803:0,0,0 -g1,6951:6630773,15037803 -g1,6951:6630773,15037803 -g1,6951:6303093,15037803 -(1,6951:6303093,15037803:0,0,0 -) -g1,6951:6630773,15037803 -) -g1,6953:7579210,15037803 -g1,6953:8843793,15037803 -k1,6953:8843793,15037803:0 -h1,6953:12637541,15037803:0,0,0 -k1,6953:32583029,15037803:19945488 -g1,6953:32583029,15037803 -) -(1,6955:6630773,16359341:25952256,404226,101187 -(1,6954:6630773,16359341:0,0,0 -g1,6954:6630773,16359341 -g1,6954:6630773,16359341 -g1,6954:6303093,16359341 -(1,6954:6303093,16359341:0,0,0 -) -g1,6954:6630773,16359341 -) -k1,6955:6630773,16359341:0 -g1,6955:9159939,16359341 -g1,6955:9792231,16359341 -g1,6955:10740669,16359341 -g1,6955:12321398,16359341 -g1,6955:12953690,16359341 -g1,6955:13902128,16359341 -g1,6955:14850565,16359341 -g1,6955:15482857,16359341 -g1,6955:16431295,16359341 -g1,6955:19908898,16359341 -g1,6955:20541190,16359341 -h1,6955:22438064,16359341:0,0,0 -k1,6955:32583029,16359341:10144965 -g1,6955:32583029,16359341 -) -(1,6959:6630773,17091055:25952256,404226,76021 -(1,6957:6630773,17091055:0,0,0 -g1,6957:6630773,17091055 -g1,6957:6630773,17091055 -g1,6957:6303093,17091055 -(1,6957:6303093,17091055:0,0,0 -) -g1,6957:6630773,17091055 -) -g1,6959:7579210,17091055 -g1,6959:8843793,17091055 -h1,6959:11689104,17091055:0,0,0 -k1,6959:32583028,17091055:20893924 -g1,6959:32583028,17091055 -) -(1,6961:6630773,18412593:25952256,404226,101187 -(1,6960:6630773,18412593:0,0,0 -g1,6960:6630773,18412593 -g1,6960:6630773,18412593 -g1,6960:6303093,18412593 -(1,6960:6303093,18412593:0,0,0 -) -g1,6960:6630773,18412593 -) -k1,6961:6630773,18412593:0 -g1,6961:9159939,18412593 -g1,6961:9792231,18412593 -g1,6961:11372961,18412593 -g1,6961:12637545,18412593 -g1,6961:14218274,18412593 -g1,6961:14850566,18412593 -g1,6961:15799004,18412593 -g1,6961:16747441,18412593 -g1,6961:17379733,18412593 -g1,6961:18328171,18412593 -g1,6961:21805774,18412593 -g1,6961:22438066,18412593 -h1,6961:24334940,18412593:0,0,0 -k1,6961:32583029,18412593:8248089 -g1,6961:32583029,18412593 -) -(1,6965:6630773,19144307:25952256,404226,76021 -(1,6963:6630773,19144307:0,0,0 -g1,6963:6630773,19144307 -g1,6963:6630773,19144307 -g1,6963:6303093,19144307 -(1,6963:6303093,19144307:0,0,0 -) -g1,6963:6630773,19144307 -) -g1,6965:7579210,19144307 -g1,6965:8843793,19144307 -g1,6965:12953687,19144307 -k1,6965:12953687,19144307:0 -h1,6965:16747435,19144307:0,0,0 -k1,6965:32583029,19144307:15835594 -g1,6965:32583029,19144307 -) -(1,6967:6630773,20465845:25952256,404226,101187 -(1,6966:6630773,20465845:0,0,0 -g1,6966:6630773,20465845 -g1,6966:6630773,20465845 -g1,6966:6303093,20465845 -(1,6966:6303093,20465845:0,0,0 -) -g1,6966:6630773,20465845 -) -k1,6967:6630773,20465845:0 -g1,6967:9159939,20465845 -g1,6967:9792231,20465845 -g1,6967:10740669,20465845 -g1,6967:12321398,20465845 -g1,6967:12953690,20465845 -g1,6967:13902128,20465845 -g1,6967:14850565,20465845 -g1,6967:15482857,20465845 -g1,6967:17063587,20465845 -g1,6967:18328171,20465845 -g1,6967:21805774,20465845 -g1,6967:22438066,20465845 -h1,6967:24334940,20465845:0,0,0 -k1,6967:32583029,20465845:8248089 -g1,6967:32583029,20465845 -) -(1,6971:6630773,21197559:25952256,404226,76021 -(1,6969:6630773,21197559:0,0,0 -g1,6969:6630773,21197559 -g1,6969:6630773,21197559 -g1,6969:6303093,21197559 -(1,6969:6303093,21197559:0,0,0 -) -g1,6969:6630773,21197559 -) -g1,6971:7579210,21197559 -g1,6971:8843793,21197559 -g1,6971:12953687,21197559 -k1,6971:12953687,21197559:0 -h1,6971:16747435,21197559:0,0,0 -k1,6971:32583029,21197559:15835594 -g1,6971:32583029,21197559 -) -] -) -g1,6972:32583029,21273580 -g1,6972:6630773,21273580 -g1,6972:6630773,21273580 -g1,6972:32583029,21273580 -g1,6972:32583029,21273580 -) -h1,6972:6630773,21470188:0,0,0 -v1,6976:6630773,23360252:0,393216,0 -(1,6977:6630773,31484726:25952256,8517690,616038 -g1,6977:6630773,31484726 -(1,6977:6630773,31484726:25952256,8517690,616038 -(1,6977:6630773,32100764:25952256,9133728,0 -[1,6977:6630773,32100764:25952256,9133728,0 -(1,6977:6630773,32074550:25952256,9081300,0 -r1,6977:6656987,32074550:26214,9081300,0 -[1,6977:6656987,32074550:25899828,9081300,0 -(1,6977:6656987,31484726:25899828,7901652,0 -[1,6977:7246811,31484726:24720180,7901652,0 -(1,6977:7246811,24744959:24720180,1161885,196608 -(1,6976:7246811,24744959:0,1161885,196608 -r1,6977:8794447,24744959:1547636,1358493,196608 -k1,6976:7246811,24744959:-1547636 -) -(1,6976:7246811,24744959:1547636,1161885,196608 -) -k1,6976:8988344,24744959:193897 -k1,6976:9810075,24744959:193896 -k1,6976:11525718,24744959:193897 -k1,6976:12378907,24744959:193897 -k1,6976:16483993,24744959:193897 -k1,6976:19651257,24744959:193896 -$1,6976:19651257,24744959 -$1,6976:20076586,24744959 -k1,6976:22494120,24744959:193897 -k1,6976:23879462,24744959:193897 -$1,6976:23879462,24744959 -$1,6976:24199933,24744959 -k1,6976:26617467,24744959:193897 -k1,6976:27802923,24744959:193896 -k1,6976:31205463,24744959:193897 -k1,6976:31966991,24744959:0 -) -(1,6977:7246811,25586447:24720180,513147,134348 -k1,6976:11125723,25586447:251494 -k1,6976:12944839,25586447:251495 -k1,6976:14215418,25586447:251494 -k1,6976:17353118,25586447:251494 -k1,6976:19342628,25586447:251495 -k1,6976:20541773,25586447:251494 -k1,6976:21949977,25586447:251494 -k1,6976:24094152,25586447:251495 -k1,6976:25028531,25586447:251494 -k1,6976:26445255,25586447:251494 -k1,6976:29470889,25586447:251495 -k1,6976:30741468,25586447:251494 -k1,6977:31966991,25586447:0 -) -(1,6977:7246811,26427935:24720180,513147,126483 -k1,6976:9915854,26427935:242245 -k1,6976:11896114,26427935:242245 -k1,6976:14989175,26427935:242245 -k1,6976:15587280,26427935:242245 -k1,6976:20129342,26427935:242245 -k1,6976:23773560,26427935:242244 -k1,6976:25869819,26427935:242245 -k1,6976:27131149,26427935:242245 -k1,6976:29111409,26427935:242245 -k1,6976:30012946,26427935:242245 -k1,6976:30611051,26427935:242245 -k1,6977:31966991,26427935:0 -) -(1,6977:7246811,27269423:24720180,513147,126483 -k1,6976:8656610,27269423:264885 -k1,6976:11953845,27269423:264884 -k1,6976:13731956,27269423:264885 -k1,6976:14683002,27269423:264884 -k1,6976:18100824,27269423:264885 -k1,6976:19048593,27269423:264884 -k1,6976:20332563,27269423:264885 -k1,6976:22335462,27269423:264884 -k1,6976:25808990,27269423:264885 -k1,6976:27461271,27269423:264884 -k1,6976:28492272,27269423:264885 -k1,6976:31966991,27269423:0 -) -(1,6977:7246811,28110911:24720180,513147,134348 -k1,6976:9424408,28110911:291471 -k1,6976:10734965,28110911:291472 -k1,6976:14765920,28110911:291471 -k1,6976:15716683,28110911:291471 -k1,6976:16817524,28110911:291471 -k1,6976:18879779,28110911:291472 -k1,6976:19830542,28110911:291471 -k1,6976:23803826,28110911:291471 -k1,6976:25286742,28110911:291471 -k1,6976:27012142,28110911:291472 -k1,6976:29894907,28110911:291471 -k1,6976:30947906,28110911:291471 -k1,6976:31966991,28110911:0 -) -(1,6977:7246811,28952399:24720180,505283,138281 -k1,6976:10308899,28952399:218481 -k1,6976:13650825,28952399:218480 -k1,6976:18389980,28952399:218481 -k1,6976:19627545,28952399:218480 -$1,6976:19627545,28952399 -$1,6976:20095472,28952399 -k1,6976:22537590,28952399:218481 -k1,6976:27379635,28952399:218480 -k1,6976:28249544,28952399:218481 -k1,6976:30164751,28952399:218480 -k1,6977:31966991,28952399:0 -) -(1,6977:7246811,29793887:24720180,505283,134348 -k1,6976:8894911,29793887:263980 -$1,6976:8894911,29793887 -$1,6976:9320240,29793887 -k1,6976:11807857,29793887:263980 -k1,6976:13263282,29793887:263980 -$1,6976:13263282,29793887 -$1,6976:13583753,29793887 -k1,6976:16071370,29793887:263980 -k1,6976:17865616,29793887:263980 -k1,6976:18781024,29793887:263980 -k1,6976:19792770,29793887:263980 -k1,6976:22211574,29793887:263980 -k1,6976:23311138,29793887:263980 -k1,6976:25310511,29793887:263980 -(1,6976:25310511,29793887:0,435480,115847 -r1,6977:28130760,29793887:2820249,551327,115847 -k1,6976:25310511,29793887:-2820249 -) -(1,6976:25310511,29793887:2820249,435480,115847 -g1,6976:27072347,29793887 -g1,6976:27775771,29793887 -h1,6976:28127483,29793887:0,411205,112570 -) -k1,6976:28394740,29793887:263980 -k1,6976:29850165,29793887:263980 -(1,6976:29850165,29793887:0,452978,115847 -r1,6977:31966991,29793887:2116826,568825,115847 -k1,6976:29850165,29793887:-2116826 -) -(1,6976:29850165,29793887:2116826,452978,115847 -g1,6976:30908578,29793887 -g1,6976:31612002,29793887 -h1,6976:31963714,29793887:0,411205,112570 -) -k1,6976:31966991,29793887:0 -) -(1,6977:7246811,30635375:24720180,513147,134348 -k1,6976:9215095,30635375:270246 -k1,6976:11575285,30635375:270247 -(1,6976:11575285,30635375:0,452978,115847 -r1,6977:14043822,30635375:2468537,568825,115847 -k1,6976:11575285,30635375:-2468537 -) -(1,6976:11575285,30635375:2468537,452978,115847 -k1,6976:11575285,30635375:3277 -h1,6976:14040545,30635375:0,411205,112570 -) -k1,6976:14314068,30635375:270246 -k1,6976:15267199,30635375:270246 -(1,6976:15267199,30635375:0,452978,115847 -r1,6977:16680600,30635375:1413401,568825,115847 -k1,6976:15267199,30635375:-1413401 -) -(1,6976:15267199,30635375:1413401,452978,115847 -k1,6976:15267199,30635375:3277 -h1,6976:16677323,30635375:0,411205,112570 -) -k1,6976:16950847,30635375:270247 -k1,6976:21191264,30635375:270246 -k1,6976:23335840,30635375:270246 -k1,6976:26911067,30635375:270246 -k1,6976:28694540,30635375:270247 -k1,6976:30975431,30635375:270246 -k1,6976:31966991,30635375:0 -) -(1,6977:7246811,31476863:24720180,513147,7863 -g1,6976:8465125,31476863 -k1,6977:31966992,31476863:20732316 -g1,6977:31966992,31476863 -) -] -) -] -r1,6977:32583029,32074550:26214,9081300,0 -) -] -) -) -g1,6977:32583029,31484726 -) -h1,6977:6630773,32100764:0,0,0 -(1,6979:6630773,34192024:25952256,564462,139132 -(1,6979:6630773,34192024:2450326,534184,12975 -g1,6979:6630773,34192024 -g1,6979:9081099,34192024 -) -g1,6979:12765599,34192024 -g1,6979:14765365,34192024 -g1,6979:19093625,34192024 -g1,6979:20660853,34192024 -k1,6979:32583029,34192024:7350253 -g1,6979:32583029,34192024 -) -(1,6983:6630773,35426728:25952256,513147,126483 -k1,6982:7984293,35426728:156833 -k1,6982:10447337,35426728:156832 -k1,6982:14668057,35426728:156833 -k1,6982:16392510,35426728:156832 -k1,6982:17833849,35426728:156833 -k1,6982:18606720,35426728:156833 -k1,6982:19782637,35426728:156832 -k1,6982:22693948,35426728:156833 -k1,6982:25129468,35426728:156833 -k1,6982:25817797,35426728:156832 -k1,6982:26626058,35426728:156833 -k1,6982:28806642,35426728:156832 -k1,6982:29982560,35426728:156833 -k1,6982:32583029,35426728:0 -) -(1,6983:6630773,36268216:25952256,505283,138281 -k1,6982:11441825,36268216:187487 -k1,6982:12280741,36268216:187488 -k1,6982:12824088,36268216:187487 -k1,6982:15149360,36268216:187488 -$1,6982:15149360,36268216 -$1,6982:15617287,36268216 -k1,6982:17871780,36268216:187487 -k1,6982:19933597,36268216:187487 -k1,6982:23051855,36268216:187488 -k1,6982:24230902,36268216:187487 -k1,6982:27723371,36268216:187488 -k1,6982:28562286,36268216:187487 -k1,6982:29768859,36268216:187488 -k1,6982:31966991,36268216:187487 -k1,6982:32583029,36268216:0 -) -(1,6983:6630773,37109704:25952256,513147,134348 -g1,6982:7849087,37109704 -g1,6982:9944273,37109704 -g1,6982:11656728,37109704 -g1,6982:13889539,37109704 -g1,6982:14740196,37109704 -g1,6982:16963832,37109704 -k1,6983:32583029,37109704:11708008 -g1,6983:32583029,37109704 -) -v1,6985:6630773,38300170:0,393216,0 -(1,7004:6630773,43422027:25952256,5515073,196608 -g1,7004:6630773,43422027 -g1,7004:6630773,43422027 -g1,7004:6434165,43422027 -(1,7004:6434165,43422027:0,5515073,196608 -r1,7004:32779637,43422027:26345472,5711681,196608 -k1,7004:6434165,43422027:-26345472 -) -(1,7004:6434165,43422027:26345472,5515073,196608 -[1,7004:6630773,43422027:25952256,5318465,0 -(1,6987:6630773,38507788:25952256,404226,101187 -(1,6986:6630773,38507788:0,0,0 -g1,6986:6630773,38507788 -g1,6986:6630773,38507788 -g1,6986:6303093,38507788 -(1,6986:6303093,38507788:0,0,0 -) -g1,6986:6630773,38507788 -) -k1,6987:6630773,38507788:0 -g1,6987:9159939,38507788 -g1,6987:9792231,38507788 -g1,6987:11689106,38507788 -g1,6987:13269835,38507788 -g1,6987:13902127,38507788 -g1,6987:14850565,38507788 -g1,6987:15799002,38507788 -g1,6987:16431294,38507788 -h1,6987:17063586,38507788:0,0,0 -k1,6987:32583029,38507788:15519443 -g1,6987:32583029,38507788 -) -(1,6991:6630773,39239502:25952256,404226,76021 -(1,6989:6630773,39239502:0,0,0 -g1,6989:6630773,39239502 -g1,6989:6630773,39239502 -g1,6989:6303093,39239502 -(1,6989:6303093,39239502:0,0,0 -) -g1,6989:6630773,39239502 -) -g1,6991:7579210,39239502 -g1,6991:8843793,39239502 -k1,6991:8843793,39239502:0 -h1,6991:11689104,39239502:0,0,0 -k1,6991:32583028,39239502:20893924 -g1,6991:32583028,39239502 -) -(1,6993:6630773,40561040:25952256,404226,101187 -(1,6992:6630773,40561040:0,0,0 -g1,6992:6630773,40561040 -g1,6992:6630773,40561040 -g1,6992:6303093,40561040 -(1,6992:6303093,40561040:0,0,0 -) -g1,6992:6630773,40561040 -) -k1,6993:6630773,40561040:0 -g1,6993:9159939,40561040 -g1,6993:9792231,40561040 -g1,6993:11689106,40561040 -g1,6993:13269835,40561040 -g1,6993:13902127,40561040 -g1,6993:14850565,40561040 -g1,6993:15799002,40561040 -g1,6993:16431294,40561040 -h1,6993:17063586,40561040:0,0,0 -k1,6993:32583029,40561040:15519443 -g1,6993:32583029,40561040 -) -(1,6997:6630773,41292754:25952256,404226,76021 -(1,6995:6630773,41292754:0,0,0 -g1,6995:6630773,41292754 -g1,6995:6630773,41292754 -g1,6995:6303093,41292754 -(1,6995:6303093,41292754:0,0,0 -) -g1,6995:6630773,41292754 -) -g1,6997:7579210,41292754 -g1,6997:8843793,41292754 -k1,6997:8843793,41292754:0 -h1,6997:11689104,41292754:0,0,0 -k1,6997:32583028,41292754:20893924 -g1,6997:32583028,41292754 -) -(1,6999:6630773,42614292:25952256,404226,101187 -(1,6998:6630773,42614292:0,0,0 -g1,6998:6630773,42614292 -g1,6998:6630773,42614292 -g1,6998:6303093,42614292 -(1,6998:6303093,42614292:0,0,0 -) -g1,6998:6630773,42614292 -) -k1,6999:6630773,42614292:0 -g1,6999:9159939,42614292 -g1,6999:9792231,42614292 -g1,6999:11689106,42614292 -g1,6999:13269835,42614292 -g1,6999:13902127,42614292 -g1,6999:14850565,42614292 -g1,6999:15799002,42614292 -g1,6999:16431294,42614292 -g1,6999:17379732,42614292 -g1,6999:20857335,42614292 -g1,6999:21489627,42614292 -h1,6999:23386501,42614292:0,0,0 -k1,6999:32583029,42614292:9196528 -g1,6999:32583029,42614292 -) -(1,7003:6630773,43346006:25952256,404226,76021 -(1,7001:6630773,43346006:0,0,0 -g1,7001:6630773,43346006 -g1,7001:6630773,43346006 -g1,7001:6303093,43346006 -(1,7001:6303093,43346006:0,0,0 -) -g1,7001:6630773,43346006 -) -g1,7003:7579210,43346006 -g1,7003:8843793,43346006 -h1,7003:11372958,43346006:0,0,0 -k1,7003:32583030,43346006:21210072 -g1,7003:32583030,43346006 -) -] -) -g1,7004:32583029,43422027 -g1,7004:6630773,43422027 -g1,7004:6630773,43422027 -g1,7004:32583029,43422027 -g1,7004:32583029,43422027 -) -h1,7004:6630773,43618635:0,0,0 -] -(1,7008:32583029,45706769:0,0,0 -g1,7008:32583029,45706769 -) -) -] -(1,7008:6630773,47279633:25952256,0,0 -h1,7008:6630773,47279633:25952256,0,0 -) -] -h1,7008:4262630,4025873:0,0,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7013:37855564,49800853:1179648,16384,0 +) +) +k1,7013:3078556,49800853:-34777008 +) +] +g1,7013:6630773,4812305 +k1,7013:24502442,4812305:16676292 +g1,7013:25889183,4812305 +g1,7013:26537989,4812305 +g1,7013:29852144,4812305 +) +) +] +[1,7013:6630773,45706769:25952256,40108032,0 +(1,7013:6630773,45706769:25952256,40108032,0 +(1,7013:6630773,45706769:0,0,0 +g1,7013:6630773,45706769 +) +[1,7013:6630773,45706769:25952256,40108032,0 +(1,6940:6630773,6254097:25952256,564462,139132 +(1,6940:6630773,6254097:2450326,534184,12975 +g1,6940:6630773,6254097 +g1,6940:9081099,6254097 +) +g1,6940:13850548,6254097 +g1,6940:15850314,6254097 +g1,6940:20178574,6254097 +g1,6940:21745802,6254097 +k1,6940:32583029,6254097:7500199 +g1,6940:32583029,6254097 +) +(1,6944:6630773,7488801:25952256,513147,138281 +k1,6943:7353080,7488801:244550 +k1,6943:8465982,7488801:244550 +k1,6943:10185747,7488801:244550 +k1,6943:10786157,7488801:244550 +k1,6943:14259666,7488801:244550 +k1,6943:17104685,7488801:244550 +k1,6943:18217588,7488801:244551 +k1,6943:19566420,7488801:244550 +k1,6943:21197712,7488801:244550 +k1,6943:22277846,7488801:244550 +k1,6943:23541481,7488801:244550 +k1,6943:28409596,7488801:244550 +$1,6943:28409596,7488801 +$1,6943:28877523,7488801 +k1,6943:31015408,7488801:244550 +k1,6943:32583029,7488801:0 +) +(1,6944:6630773,8330289:25952256,505283,102891 +k1,6943:7863724,8330289:213866 +k1,6943:10433609,8330289:213866 +k1,6943:14602573,8330289:213866 +k1,6943:16013125,8330289:213865 +k1,6943:17965006,8330289:213866 +k1,6943:19370317,8330289:213866 +k1,6943:22427790,8330289:213866 +k1,6943:25591431,8330289:213866 +k1,6943:27935217,8330289:213866 +k1,6943:28765120,8330289:213865 +k1,6943:30472552,8330289:213866 +k1,6943:31042278,8330289:213866 +k1,6943:32583029,8330289:0 +) +(1,6944:6630773,9171777:25952256,513147,126483 +k1,6943:8163277,9171777:246688 +k1,6943:9157732,9171777:246689 +k1,6943:12613063,9171777:246688 +k1,6943:14427372,9171777:246688 +k1,6943:15693146,9171777:246689 +k1,6943:17593307,9171777:246688 +k1,6943:21911747,9171777:246688 +k1,6943:24044562,9171777:246689 +k1,6943:25310335,9171777:246688 +k1,6943:26796964,9171777:246688 +k1,6943:30689421,9171777:246689 +k1,6943:31563944,9171777:246688 +k1,6943:32583029,9171777:0 +) +(1,6944:6630773,10013265:25952256,513147,126483 +k1,6943:9452836,10013265:160646 +k1,6943:11655585,10013265:160647 +k1,6943:12684583,10013265:160646 +k1,6943:13937714,10013265:160646 +k1,6943:16858737,10013265:160647 +k1,6943:19030028,10013265:160646 +k1,6943:20138325,10013265:160646 +k1,6943:21065087,10013265:160646 +k1,6943:24836768,10013265:160647 +(1,6943:24836768,10013265:0,414482,115847 +r1,6943:25195034,10013265:358266,530329,115847 +k1,6943:24836768,10013265:-358266 +) +(1,6943:24836768,10013265:358266,414482,115847 +k1,6943:24836768,10013265:3277 +h1,6943:25191757,10013265:0,411205,112570 +) +k1,6943:25529350,10013265:160646 +k1,6943:26709081,10013265:160646 +k1,6943:29643867,10013265:160647 +(1,6943:29643867,10013265:0,414482,115847 +r1,6943:31057268,10013265:1413401,530329,115847 +k1,6943:29643867,10013265:-1413401 +) +(1,6943:29643867,10013265:1413401,414482,115847 +k1,6943:29643867,10013265:3277 +h1,6943:31053991,10013265:0,411205,112570 +) +k1,6943:31391584,10013265:160646 +k1,6944:32583029,10013265:0 +) +(1,6944:6630773,10854753:25952256,505283,115847 +(1,6943:6630773,10854753:0,452978,115847 +r1,6943:7340751,10854753:709978,568825,115847 +k1,6943:6630773,10854753:-709978 +) +(1,6943:6630773,10854753:709978,452978,115847 +k1,6943:6630773,10854753:3277 +h1,6943:7337474,10854753:0,411205,112570 +) +g1,6943:7713650,10854753 +g1,6943:8931964,10854753 +g1,6943:11974800,10854753 +g1,6943:15297475,10854753 +k1,6944:32583029,10854753:16136708 +g1,6944:32583029,10854753 +) +v1,6946:6630773,12045219:0,393216,0 +(1,6977:6630773,21273580:25952256,9621577,196608 +g1,6977:6630773,21273580 +g1,6977:6630773,21273580 +g1,6977:6434165,21273580 +(1,6977:6434165,21273580:0,9621577,196608 +r1,6977:32779637,21273580:26345472,9818185,196608 +k1,6977:6434165,21273580:-26345472 +) +(1,6977:6434165,21273580:26345472,9621577,196608 +[1,6977:6630773,21273580:25952256,9424969,0 +(1,6948:6630773,12252837:25952256,404226,101187 +(1,6947:6630773,12252837:0,0,0 +g1,6947:6630773,12252837 +g1,6947:6630773,12252837 +g1,6947:6303093,12252837 +(1,6947:6303093,12252837:0,0,0 +) +g1,6947:6630773,12252837 +) +k1,6948:6630773,12252837:0 +g1,6948:9159939,12252837 +g1,6948:9792231,12252837 +g1,6948:10740669,12252837 +g1,6948:12321398,12252837 +g1,6948:12953690,12252837 +g1,6948:13902128,12252837 +g1,6948:14850565,12252837 +g1,6948:15482857,12252837 +h1,6948:16115149,12252837:0,0,0 +k1,6948:32583029,12252837:16467880 +g1,6948:32583029,12252837 +) +(1,6952:6630773,12984551:25952256,404226,76021 +(1,6950:6630773,12984551:0,0,0 +g1,6950:6630773,12984551 +g1,6950:6630773,12984551 +g1,6950:6303093,12984551 +(1,6950:6303093,12984551:0,0,0 +) +g1,6950:6630773,12984551 +) +g1,6952:7579210,12984551 +g1,6952:8843793,12984551 +h1,6952:11689104,12984551:0,0,0 +k1,6952:32583028,12984551:20893924 +g1,6952:32583028,12984551 +) +(1,6954:6630773,14306089:25952256,404226,101187 +(1,6953:6630773,14306089:0,0,0 +g1,6953:6630773,14306089 +g1,6953:6630773,14306089 +g1,6953:6303093,14306089 +(1,6953:6303093,14306089:0,0,0 +) +g1,6953:6630773,14306089 +) +k1,6954:6630773,14306089:0 +g1,6954:9159939,14306089 +g1,6954:9792231,14306089 +g1,6954:10740669,14306089 +g1,6954:12321398,14306089 +g1,6954:12953690,14306089 +g1,6954:13902128,14306089 +g1,6954:14850565,14306089 +g1,6954:15482857,14306089 +g1,6954:16431295,14306089 +g1,6954:19908898,14306089 +g1,6954:20541190,14306089 +h1,6954:22438064,14306089:0,0,0 +k1,6954:32583029,14306089:10144965 +g1,6954:32583029,14306089 +) +(1,6958:6630773,15037803:25952256,404226,76021 +(1,6956:6630773,15037803:0,0,0 +g1,6956:6630773,15037803 +g1,6956:6630773,15037803 +g1,6956:6303093,15037803 +(1,6956:6303093,15037803:0,0,0 +) +g1,6956:6630773,15037803 +) +g1,6958:7579210,15037803 +g1,6958:8843793,15037803 +k1,6958:8843793,15037803:0 +h1,6958:12637541,15037803:0,0,0 +k1,6958:32583029,15037803:19945488 +g1,6958:32583029,15037803 +) +(1,6960:6630773,16359341:25952256,404226,101187 +(1,6959:6630773,16359341:0,0,0 +g1,6959:6630773,16359341 +g1,6959:6630773,16359341 +g1,6959:6303093,16359341 +(1,6959:6303093,16359341:0,0,0 +) +g1,6959:6630773,16359341 +) +k1,6960:6630773,16359341:0 +g1,6960:9159939,16359341 +g1,6960:9792231,16359341 +g1,6960:10740669,16359341 +g1,6960:12321398,16359341 +g1,6960:12953690,16359341 +g1,6960:13902128,16359341 +g1,6960:14850565,16359341 +g1,6960:15482857,16359341 +g1,6960:16431295,16359341 +g1,6960:19908898,16359341 +g1,6960:20541190,16359341 +h1,6960:22438064,16359341:0,0,0 +k1,6960:32583029,16359341:10144965 +g1,6960:32583029,16359341 +) +(1,6964:6630773,17091055:25952256,404226,76021 +(1,6962:6630773,17091055:0,0,0 +g1,6962:6630773,17091055 +g1,6962:6630773,17091055 +g1,6962:6303093,17091055 +(1,6962:6303093,17091055:0,0,0 +) +g1,6962:6630773,17091055 +) +g1,6964:7579210,17091055 +g1,6964:8843793,17091055 +h1,6964:11689104,17091055:0,0,0 +k1,6964:32583028,17091055:20893924 +g1,6964:32583028,17091055 +) +(1,6966:6630773,18412593:25952256,404226,101187 +(1,6965:6630773,18412593:0,0,0 +g1,6965:6630773,18412593 +g1,6965:6630773,18412593 +g1,6965:6303093,18412593 +(1,6965:6303093,18412593:0,0,0 +) +g1,6965:6630773,18412593 +) +k1,6966:6630773,18412593:0 +g1,6966:9159939,18412593 +g1,6966:9792231,18412593 +g1,6966:11372961,18412593 +g1,6966:12637545,18412593 +g1,6966:14218274,18412593 +g1,6966:14850566,18412593 +g1,6966:15799004,18412593 +g1,6966:16747441,18412593 +g1,6966:17379733,18412593 +g1,6966:18328171,18412593 +g1,6966:21805774,18412593 +g1,6966:22438066,18412593 +h1,6966:24334940,18412593:0,0,0 +k1,6966:32583029,18412593:8248089 +g1,6966:32583029,18412593 +) +(1,6970:6630773,19144307:25952256,404226,76021 +(1,6968:6630773,19144307:0,0,0 +g1,6968:6630773,19144307 +g1,6968:6630773,19144307 +g1,6968:6303093,19144307 +(1,6968:6303093,19144307:0,0,0 +) +g1,6968:6630773,19144307 +) +g1,6970:7579210,19144307 +g1,6970:8843793,19144307 +g1,6970:12953687,19144307 +k1,6970:12953687,19144307:0 +h1,6970:16747435,19144307:0,0,0 +k1,6970:32583029,19144307:15835594 +g1,6970:32583029,19144307 +) +(1,6972:6630773,20465845:25952256,404226,101187 +(1,6971:6630773,20465845:0,0,0 +g1,6971:6630773,20465845 +g1,6971:6630773,20465845 +g1,6971:6303093,20465845 +(1,6971:6303093,20465845:0,0,0 +) +g1,6971:6630773,20465845 +) +k1,6972:6630773,20465845:0 +g1,6972:9159939,20465845 +g1,6972:9792231,20465845 +g1,6972:10740669,20465845 +g1,6972:12321398,20465845 +g1,6972:12953690,20465845 +g1,6972:13902128,20465845 +g1,6972:14850565,20465845 +g1,6972:15482857,20465845 +g1,6972:17063587,20465845 +g1,6972:18328171,20465845 +g1,6972:21805774,20465845 +g1,6972:22438066,20465845 +h1,6972:24334940,20465845:0,0,0 +k1,6972:32583029,20465845:8248089 +g1,6972:32583029,20465845 +) +(1,6976:6630773,21197559:25952256,404226,76021 +(1,6974:6630773,21197559:0,0,0 +g1,6974:6630773,21197559 +g1,6974:6630773,21197559 +g1,6974:6303093,21197559 +(1,6974:6303093,21197559:0,0,0 +) +g1,6974:6630773,21197559 +) +g1,6976:7579210,21197559 +g1,6976:8843793,21197559 +g1,6976:12953687,21197559 +k1,6976:12953687,21197559:0 +h1,6976:16747435,21197559:0,0,0 +k1,6976:32583029,21197559:15835594 +g1,6976:32583029,21197559 +) +] +) +g1,6977:32583029,21273580 +g1,6977:6630773,21273580 +g1,6977:6630773,21273580 +g1,6977:32583029,21273580 +g1,6977:32583029,21273580 +) +h1,6977:6630773,21470188:0,0,0 +v1,6981:6630773,23360252:0,393216,0 +(1,6982:6630773,31484726:25952256,8517690,616038 +g1,6982:6630773,31484726 +(1,6982:6630773,31484726:25952256,8517690,616038 +(1,6982:6630773,32100764:25952256,9133728,0 +[1,6982:6630773,32100764:25952256,9133728,0 +(1,6982:6630773,32074550:25952256,9081300,0 +r1,6982:6656987,32074550:26214,9081300,0 +[1,6982:6656987,32074550:25899828,9081300,0 +(1,6982:6656987,31484726:25899828,7901652,0 +[1,6982:7246811,31484726:24720180,7901652,0 +(1,6982:7246811,24744959:24720180,1161885,196608 +(1,6981:7246811,24744959:0,1161885,196608 +r1,6982:8794447,24744959:1547636,1358493,196608 +k1,6981:7246811,24744959:-1547636 +) +(1,6981:7246811,24744959:1547636,1161885,196608 +) +k1,6981:8988344,24744959:193897 +k1,6981:9810075,24744959:193896 +k1,6981:11525718,24744959:193897 +k1,6981:12378907,24744959:193897 +k1,6981:16483993,24744959:193897 +k1,6981:19651257,24744959:193896 +$1,6981:19651257,24744959 +$1,6981:20076586,24744959 +k1,6981:22494120,24744959:193897 +k1,6981:23879462,24744959:193897 +$1,6981:23879462,24744959 +$1,6981:24199933,24744959 +k1,6981:26617467,24744959:193897 +k1,6981:27802923,24744959:193896 +k1,6981:31205463,24744959:193897 +k1,6981:31966991,24744959:0 +) +(1,6982:7246811,25586447:24720180,513147,134348 +k1,6981:11125723,25586447:251494 +k1,6981:12944839,25586447:251495 +k1,6981:14215418,25586447:251494 +k1,6981:17353118,25586447:251494 +k1,6981:19342628,25586447:251495 +k1,6981:20541773,25586447:251494 +k1,6981:21949977,25586447:251494 +k1,6981:24094152,25586447:251495 +k1,6981:25028531,25586447:251494 +k1,6981:26445255,25586447:251494 +k1,6981:29470889,25586447:251495 +k1,6981:30741468,25586447:251494 +k1,6982:31966991,25586447:0 +) +(1,6982:7246811,26427935:24720180,513147,126483 +k1,6981:9915854,26427935:242245 +k1,6981:11896114,26427935:242245 +k1,6981:14989175,26427935:242245 +k1,6981:15587280,26427935:242245 +k1,6981:20129342,26427935:242245 +k1,6981:23773560,26427935:242244 +k1,6981:25869819,26427935:242245 +k1,6981:27131149,26427935:242245 +k1,6981:29111409,26427935:242245 +k1,6981:30012946,26427935:242245 +k1,6981:30611051,26427935:242245 +k1,6982:31966991,26427935:0 +) +(1,6982:7246811,27269423:24720180,513147,126483 +k1,6981:8656610,27269423:264885 +k1,6981:11953845,27269423:264884 +k1,6981:13731956,27269423:264885 +k1,6981:14683002,27269423:264884 +k1,6981:18100824,27269423:264885 +k1,6981:19048593,27269423:264884 +k1,6981:20332563,27269423:264885 +k1,6981:22335462,27269423:264884 +k1,6981:25808990,27269423:264885 +k1,6981:27461271,27269423:264884 +k1,6981:28492272,27269423:264885 +k1,6981:31966991,27269423:0 +) +(1,6982:7246811,28110911:24720180,513147,134348 +k1,6981:9424408,28110911:291471 +k1,6981:10734965,28110911:291472 +k1,6981:14765920,28110911:291471 +k1,6981:15716683,28110911:291471 +k1,6981:16817524,28110911:291471 +k1,6981:18879779,28110911:291472 +k1,6981:19830542,28110911:291471 +k1,6981:23803826,28110911:291471 +k1,6981:25286742,28110911:291471 +k1,6981:27012142,28110911:291472 +k1,6981:29894907,28110911:291471 +k1,6981:30947906,28110911:291471 +k1,6981:31966991,28110911:0 +) +(1,6982:7246811,28952399:24720180,505283,138281 +k1,6981:10272854,28952399:182436 +k1,6981:13578735,28952399:182435 +k1,6981:18281845,28952399:182436 +k1,6981:19483366,28952399:182436 +$1,6981:19483366,28952399 +$1,6981:19951293,28952399 +k1,6981:22357366,28952399:182436 +k1,6981:27163367,28952399:182436 +k1,6981:27997230,28952399:182435 +k1,6981:29876393,28952399:182436 +k1,6982:31966991,28952399:0 +) +(1,6982:7246811,29793887:24720180,505283,134348 +k1,6981:8630583,29793887:288010 +$1,6981:8630583,29793887 +$1,6981:9055912,29793887 +k1,6981:11567559,29793887:288010 +k1,6981:13047014,29793887:288010 +$1,6981:13047014,29793887 +$1,6981:13367485,29793887 +k1,6981:15879131,29793887:288009 +k1,6981:17697407,29793887:288010 +k1,6981:18636845,29793887:288010 +k1,6981:19672621,29793887:288010 +k1,6981:22115455,29793887:288010 +k1,6981:23239049,29793887:288010 +k1,6981:25262451,29793887:288009 +(1,6981:25262451,29793887:0,435480,115847 +r1,6982:28082700,29793887:2820249,551327,115847 +k1,6981:25262451,29793887:-2820249 +) +(1,6981:25262451,29793887:2820249,435480,115847 +g1,6981:27024287,29793887 +g1,6981:27727711,29793887 +h1,6981:28079423,29793887:0,411205,112570 +) +k1,6981:28370710,29793887:288010 +k1,6981:29850165,29793887:288010 +(1,6981:29850165,29793887:0,452978,115847 +r1,6982:31966991,29793887:2116826,568825,115847 +k1,6981:29850165,29793887:-2116826 +) +(1,6981:29850165,29793887:2116826,452978,115847 +g1,6981:30908578,29793887 +g1,6981:31612002,29793887 +h1,6981:31963714,29793887:0,411205,112570 +) +k1,6981:31966991,29793887:0 +) +(1,6982:7246811,30635375:24720180,513147,134348 +k1,6981:9215095,30635375:270246 +k1,6981:11575285,30635375:270247 +(1,6981:11575285,30635375:0,452978,115847 +r1,6982:14043822,30635375:2468537,568825,115847 +k1,6981:11575285,30635375:-2468537 +) +(1,6981:11575285,30635375:2468537,452978,115847 +k1,6981:11575285,30635375:3277 +h1,6981:14040545,30635375:0,411205,112570 +) +k1,6981:14314068,30635375:270246 +k1,6981:15267199,30635375:270246 +(1,6981:15267199,30635375:0,452978,115847 +r1,6982:16680600,30635375:1413401,568825,115847 +k1,6981:15267199,30635375:-1413401 +) +(1,6981:15267199,30635375:1413401,452978,115847 +k1,6981:15267199,30635375:3277 +h1,6981:16677323,30635375:0,411205,112570 +) +k1,6981:16950847,30635375:270247 +k1,6981:21191264,30635375:270246 +k1,6981:23335840,30635375:270246 +k1,6981:26911067,30635375:270246 +k1,6981:28694540,30635375:270247 +k1,6981:30975431,30635375:270246 +k1,6981:31966991,30635375:0 +) +(1,6982:7246811,31476863:24720180,513147,7863 +g1,6981:8465125,31476863 +k1,6982:31966992,31476863:20732316 +g1,6982:31966992,31476863 +) +] +) +] +r1,6982:32583029,32074550:26214,9081300,0 +) +] +) +) +g1,6982:32583029,31484726 +) +h1,6982:6630773,32100764:0,0,0 +(1,6984:6630773,34192024:25952256,564462,139132 +(1,6984:6630773,34192024:2450326,534184,12975 +g1,6984:6630773,34192024 +g1,6984:9081099,34192024 +) +g1,6984:12765599,34192024 +g1,6984:14765365,34192024 +g1,6984:19093625,34192024 +g1,6984:20660853,34192024 +k1,6984:32583029,34192024:7350253 +g1,6984:32583029,34192024 +) +(1,6988:6630773,35426728:25952256,513147,126483 +k1,6987:7984293,35426728:156833 +k1,6987:10447337,35426728:156832 +k1,6987:14668057,35426728:156833 +k1,6987:16392510,35426728:156832 +k1,6987:17833849,35426728:156833 +k1,6987:18606720,35426728:156833 +k1,6987:19782637,35426728:156832 +k1,6987:22693948,35426728:156833 +k1,6987:25129468,35426728:156833 +k1,6987:25817797,35426728:156832 +k1,6987:26626058,35426728:156833 +k1,6987:28806642,35426728:156832 +k1,6987:29982560,35426728:156833 +k1,6987:32583029,35426728:0 +) +(1,6988:6630773,36268216:25952256,505283,138281 +k1,6987:11441825,36268216:187487 +k1,6987:12280741,36268216:187488 +k1,6987:12824088,36268216:187487 +k1,6987:15149360,36268216:187488 +$1,6987:15149360,36268216 +$1,6987:15617287,36268216 +k1,6987:17871780,36268216:187487 +k1,6987:19933597,36268216:187487 +k1,6987:23051855,36268216:187488 +k1,6987:24230902,36268216:187487 +k1,6987:27723371,36268216:187488 +k1,6987:28562286,36268216:187487 +k1,6987:29768859,36268216:187488 +k1,6987:31966991,36268216:187487 +k1,6987:32583029,36268216:0 +) +(1,6988:6630773,37109704:25952256,513147,134348 +g1,6987:7849087,37109704 +g1,6987:9944273,37109704 +g1,6987:11656728,37109704 +g1,6987:13889539,37109704 +g1,6987:14740196,37109704 +g1,6987:16963832,37109704 +k1,6988:32583029,37109704:11708008 +g1,6988:32583029,37109704 +) +v1,6990:6630773,38300170:0,393216,0 +(1,7009:6630773,43422027:25952256,5515073,196608 +g1,7009:6630773,43422027 +g1,7009:6630773,43422027 +g1,7009:6434165,43422027 +(1,7009:6434165,43422027:0,5515073,196608 +r1,7009:32779637,43422027:26345472,5711681,196608 +k1,7009:6434165,43422027:-26345472 +) +(1,7009:6434165,43422027:26345472,5515073,196608 +[1,7009:6630773,43422027:25952256,5318465,0 +(1,6992:6630773,38507788:25952256,404226,101187 +(1,6991:6630773,38507788:0,0,0 +g1,6991:6630773,38507788 +g1,6991:6630773,38507788 +g1,6991:6303093,38507788 +(1,6991:6303093,38507788:0,0,0 +) +g1,6991:6630773,38507788 +) +k1,6992:6630773,38507788:0 +g1,6992:9159939,38507788 +g1,6992:9792231,38507788 +g1,6992:11689106,38507788 +g1,6992:13269835,38507788 +g1,6992:13902127,38507788 +g1,6992:14850565,38507788 +g1,6992:15799002,38507788 +g1,6992:16431294,38507788 +h1,6992:17063586,38507788:0,0,0 +k1,6992:32583029,38507788:15519443 +g1,6992:32583029,38507788 +) +(1,6996:6630773,39239502:25952256,404226,76021 +(1,6994:6630773,39239502:0,0,0 +g1,6994:6630773,39239502 +g1,6994:6630773,39239502 +g1,6994:6303093,39239502 +(1,6994:6303093,39239502:0,0,0 +) +g1,6994:6630773,39239502 +) +g1,6996:7579210,39239502 +g1,6996:8843793,39239502 +k1,6996:8843793,39239502:0 +h1,6996:11689104,39239502:0,0,0 +k1,6996:32583028,39239502:20893924 +g1,6996:32583028,39239502 +) +(1,6998:6630773,40561040:25952256,404226,101187 +(1,6997:6630773,40561040:0,0,0 +g1,6997:6630773,40561040 +g1,6997:6630773,40561040 +g1,6997:6303093,40561040 +(1,6997:6303093,40561040:0,0,0 +) +g1,6997:6630773,40561040 +) +k1,6998:6630773,40561040:0 +g1,6998:9159939,40561040 +g1,6998:9792231,40561040 +g1,6998:11689106,40561040 +g1,6998:13269835,40561040 +g1,6998:13902127,40561040 +g1,6998:14850565,40561040 +g1,6998:15799002,40561040 +g1,6998:16431294,40561040 +h1,6998:17063586,40561040:0,0,0 +k1,6998:32583029,40561040:15519443 +g1,6998:32583029,40561040 +) +(1,7002:6630773,41292754:25952256,404226,76021 +(1,7000:6630773,41292754:0,0,0 +g1,7000:6630773,41292754 +g1,7000:6630773,41292754 +g1,7000:6303093,41292754 +(1,7000:6303093,41292754:0,0,0 +) +g1,7000:6630773,41292754 +) +g1,7002:7579210,41292754 +g1,7002:8843793,41292754 +k1,7002:8843793,41292754:0 +h1,7002:11689104,41292754:0,0,0 +k1,7002:32583028,41292754:20893924 +g1,7002:32583028,41292754 +) +(1,7004:6630773,42614292:25952256,404226,101187 +(1,7003:6630773,42614292:0,0,0 +g1,7003:6630773,42614292 +g1,7003:6630773,42614292 +g1,7003:6303093,42614292 +(1,7003:6303093,42614292:0,0,0 +) +g1,7003:6630773,42614292 +) +k1,7004:6630773,42614292:0 +g1,7004:9159939,42614292 +g1,7004:9792231,42614292 +g1,7004:11689106,42614292 +g1,7004:13269835,42614292 +g1,7004:13902127,42614292 +g1,7004:14850565,42614292 +g1,7004:15799002,42614292 +g1,7004:16431294,42614292 +g1,7004:17379732,42614292 +g1,7004:20857335,42614292 +g1,7004:21489627,42614292 +h1,7004:23386501,42614292:0,0,0 +k1,7004:32583029,42614292:9196528 +g1,7004:32583029,42614292 +) +(1,7008:6630773,43346006:25952256,404226,76021 +(1,7006:6630773,43346006:0,0,0 +g1,7006:6630773,43346006 +g1,7006:6630773,43346006 +g1,7006:6303093,43346006 +(1,7006:6303093,43346006:0,0,0 +) +g1,7006:6630773,43346006 +) +g1,7008:7579210,43346006 +g1,7008:8843793,43346006 +h1,7008:11372958,43346006:0,0,0 +k1,7008:32583030,43346006:21210072 +g1,7008:32583030,43346006 +) +] +) +g1,7009:32583029,43422027 +g1,7009:6630773,43422027 +g1,7009:6630773,43422027 +g1,7009:32583029,43422027 +g1,7009:32583029,43422027 +) +h1,7009:6630773,43618635:0,0,0 +] +(1,7013:32583029,45706769:0,0,0 +g1,7013:32583029,45706769 +) +) +] +(1,7013:6630773,47279633:25952256,0,0 +h1,7013:6630773,47279633:25952256,0,0 +) +] +h1,7013:4262630,4025873:0,0,0 ] !22877 }131 -Input:986:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:987:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:988:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!267 +Input:982:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:983:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:984:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!285 {132 -[1,7072:4262630,47279633:28320399,43253760,0 -(1,7072:4262630,4025873:0,0,0 -[1,7072:-473657,4025873:25952256,0,0 -(1,7072:-473657,-710414:25952256,0,0 -h1,7072:-473657,-710414:0,0,0 -(1,7072:-473657,-710414:0,0,0 -(1,7072:-473657,-710414:0,0,0 -g1,7072:-473657,-710414 -(1,7072:-473657,-710414:65781,0,65781 -g1,7072:-407876,-710414 -[1,7072:-407876,-644633:0,0,0 +[1,7077:4262630,47279633:28320399,43253760,0 +(1,7077:4262630,4025873:0,0,0 +[1,7077:-473657,4025873:25952256,0,0 +(1,7077:-473657,-710414:25952256,0,0 +h1,7077:-473657,-710414:0,0,0 +(1,7077:-473657,-710414:0,0,0 +(1,7077:-473657,-710414:0,0,0 +g1,7077:-473657,-710414 +(1,7077:-473657,-710414:65781,0,65781 +g1,7077:-407876,-710414 +[1,7077:-407876,-644633:0,0,0 ] ) -k1,7072:-473657,-710414:-65781 +k1,7077:-473657,-710414:-65781 ) ) -k1,7072:25478599,-710414:25952256 -g1,7072:25478599,-710414 +k1,7077:25478599,-710414:25952256 +g1,7077:25478599,-710414 ) ] ) -[1,7072:6630773,47279633:25952256,43253760,0 -[1,7072:6630773,4812305:25952256,786432,0 -(1,7072:6630773,4812305:25952256,505283,7863 -(1,7072:6630773,4812305:25952256,505283,7863 -g1,7072:3078558,4812305 -[1,7072:3078558,4812305:0,0,0 -(1,7072:3078558,2439708:0,1703936,0 -k1,7072:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7072:2537886,2439708:1179648,16384,0 +[1,7077:6630773,47279633:25952256,43253760,0 +[1,7077:6630773,4812305:25952256,786432,0 +(1,7077:6630773,4812305:25952256,505283,7863 +(1,7077:6630773,4812305:25952256,505283,7863 +g1,7077:3078558,4812305 +[1,7077:3078558,4812305:0,0,0 +(1,7077:3078558,2439708:0,1703936,0 +k1,7077:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7077:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7072:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7077:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7072:3078558,4812305:0,0,0 -(1,7072:3078558,2439708:0,1703936,0 -g1,7072:29030814,2439708 -g1,7072:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7072:36151628,1915420:16384,1179648,0 +[1,7077:3078558,4812305:0,0,0 +(1,7077:3078558,2439708:0,1703936,0 +g1,7077:29030814,2439708 +g1,7077:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7077:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7072:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7077:37855564,2439708:1179648,16384,0 ) ) -k1,7072:3078556,2439708:-34777008 +k1,7077:3078556,2439708:-34777008 ) ] -[1,7072:3078558,4812305:0,0,0 -(1,7072:3078558,49800853:0,16384,2228224 -k1,7072:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7072:2537886,49800853:1179648,16384,0 +[1,7077:3078558,4812305:0,0,0 +(1,7077:3078558,49800853:0,16384,2228224 +k1,7077:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7077:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7072:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7077:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7072:3078558,4812305:0,0,0 -(1,7072:3078558,49800853:0,16384,2228224 -g1,7072:29030814,49800853 -g1,7072:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7072:36151628,51504789:16384,1179648,0 +[1,7077:3078558,4812305:0,0,0 +(1,7077:3078558,49800853:0,16384,2228224 +g1,7077:29030814,49800853 +g1,7077:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7077:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7072:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7077:37855564,49800853:1179648,16384,0 ) ) -k1,7072:3078556,49800853:-34777008 -) -] -g1,7072:6630773,4812305 -g1,7072:6630773,4812305 -g1,7072:10836873,4812305 -k1,7072:31387653,4812305:20550780 -) -) -] -[1,7072:6630773,45706769:25952256,40108032,0 -(1,7072:6630773,45706769:25952256,40108032,0 -(1,7072:6630773,45706769:0,0,0 -g1,7072:6630773,45706769 -) -[1,7072:6630773,45706769:25952256,40108032,0 -v1,7008:6630773,6254097:0,393216,0 -(1,7042:6630773,25566993:25952256,19706112,616038 -g1,7042:6630773,25566993 -(1,7042:6630773,25566993:25952256,19706112,616038 -(1,7042:6630773,26183031:25952256,20322150,0 -[1,7042:6630773,26183031:25952256,20322150,0 -(1,7042:6630773,26156817:25952256,20269722,0 -r1,7042:6656987,26156817:26214,20269722,0 -[1,7042:6656987,26156817:25899828,20269722,0 -(1,7042:6656987,25566993:25899828,19090074,0 -[1,7042:7246811,25566993:24720180,19090074,0 -(1,7009:7246811,7562455:24720180,1085536,298548 -(1,7008:7246811,7562455:0,1085536,298548 -r1,7042:8753226,7562455:1506415,1384084,298548 -k1,7008:7246811,7562455:-1506415 -) -(1,7008:7246811,7562455:1506415,1085536,298548 -) -k1,7008:9036488,7562455:283262 -k1,7008:12025732,7562455:283262 -k1,7008:15334792,7562455:283263 -k1,7008:16764279,7562455:283262 -(1,7008:16764279,7562455:0,452978,115847 -r1,7042:19232816,7562455:2468537,568825,115847 -k1,7008:16764279,7562455:-2468537 -) -(1,7008:16764279,7562455:2468537,452978,115847 -k1,7008:16764279,7562455:3277 -h1,7008:19229539,7562455:0,411205,112570 -) -k1,7008:19516078,7562455:283262 -k1,7008:20990785,7562455:283262 -k1,7008:24759908,7562455:283263 -k1,7008:28068967,7562455:283262 -k1,7008:29498454,7562455:283262 -(1,7008:29498454,7562455:0,452978,115847 -r1,7042:31966991,7562455:2468537,568825,115847 -k1,7008:29498454,7562455:-2468537 -) -(1,7008:29498454,7562455:2468537,452978,115847 -k1,7008:29498454,7562455:3277 -h1,7008:31963714,7562455:0,411205,112570 -) -k1,7008:31966991,7562455:0 -) -(1,7009:7246811,8403943:24720180,513147,134348 -k1,7008:9551002,8403943:174926 -k1,7008:10541197,8403943:174927 -k1,7008:15110312,8403943:174926 -k1,7008:17139908,8403943:174927 -k1,7008:18124204,8403943:174926 -k1,7008:18654990,8403943:174926 -k1,7008:20702936,8403943:174927 -k1,7008:21896947,8403943:174926 -k1,7008:22731166,8403943:174927 -k1,7008:23925177,8403943:174926 -k1,7008:28055202,8403943:174927 -k1,7008:29696824,8403943:174926 -k1,7008:31966991,8403943:0 -) -(1,7009:7246811,9245431:24720180,513147,126483 -k1,7008:7922225,9245431:217317 -k1,7008:8671040,9245431:217318 -k1,7008:11518317,9245431:217317 -k1,7008:12387062,9245431:217317 -k1,7008:14863406,9245431:217318 -k1,7008:16966194,9245431:217317 -k1,7008:18202596,9245431:217317 -k1,7008:19288266,9245431:217318 -k1,7008:20497143,9245431:217317 -k1,7008:23925724,9245431:217317 -k1,7008:24932751,9245431:217318 -k1,7008:25627825,9245431:217317 -k1,7008:26713494,9245431:217317 -k1,7008:27922372,9245431:217318 -k1,7008:31350953,9245431:217317 -k1,7008:31966991,9245431:0 -) -(1,7009:7246811,10086919:24720180,513147,134348 -k1,7008:10476902,10086919:216090 -k1,7008:14979047,10086919:216090 -k1,7008:18125906,10086919:216089 -k1,7008:19289647,10086919:216090 -k1,7008:20972433,10086919:216090 -k1,7008:22711580,10086919:216090 -k1,7008:23796022,10086919:216090 -k1,7008:25542378,10086919:216090 -k1,7008:26409895,10086919:216089 -k1,7008:27441253,10086919:216090 -k1,7008:28860584,10086919:216090 -k1,7008:31966991,10086919:0 -) -(1,7009:7246811,10928407:24720180,513147,134348 -k1,7008:7886590,10928407:162022 -k1,7008:8916964,10928407:162022 -k1,7008:10070547,10928407:162023 -k1,7008:12399845,10928407:162022 -k1,7008:13174629,10928407:162022 -k1,7008:16267421,10928407:162022 -k1,7008:17377094,10928407:162022 -$1,7008:17377094,10928407 -k1,7008:18027081,10928407:182060 -k1,7008:18777338,10928407:182060 -$1,7008:20162114,10928407 -k1,7008:20497807,10928407:162023 -k1,7008:21528181,10928407:162022 -k1,7008:23220469,10928407:162022 -k1,7008:24033919,10928407:162022 -k1,7008:25462097,10928407:162022 -k1,7008:26643205,10928407:162023 -k1,7008:29405696,10928407:162022 -k1,7008:30515369,10928407:162022 -k1,7008:31966991,10928407:0 -) -(1,7009:7246811,11769895:24720180,505283,95027 -g1,7008:8465125,11769895 -g1,7008:10519023,11769895 -g1,7008:11527622,11769895 -$1,7008:11527622,11769895 -g1,7008:12920132,11769895 -g1,7008:13670389,11769895 -$1,7008:15453624,11769895 -k1,7009:31966991,11769895:16339697 -g1,7009:31966991,11769895 -) -v1,7011:7246811,12960361:0,393216,0 -(1,7024:7246811,16028966:24720180,3461821,196608 -g1,7024:7246811,16028966 -g1,7024:7246811,16028966 -g1,7024:7050203,16028966 -(1,7024:7050203,16028966:0,3461821,196608 -r1,7042:32163599,16028966:25113396,3658429,196608 -k1,7024:7050203,16028966:-25113396 -) -(1,7024:7050203,16028966:25113396,3461821,196608 -[1,7024:7246811,16028966:24720180,3265213,0 -(1,7013:7246811,13167979:24720180,404226,101187 -(1,7012:7246811,13167979:0,0,0 -g1,7012:7246811,13167979 -g1,7012:7246811,13167979 -g1,7012:6919131,13167979 -(1,7012:6919131,13167979:0,0,0 -) -g1,7012:7246811,13167979 -) -k1,7013:7246811,13167979:0 -g1,7013:9775977,13167979 -g1,7013:10408269,13167979 -g1,7013:12621289,13167979 -g1,7013:14202018,13167979 -g1,7013:14834310,13167979 -g1,7013:15782748,13167979 -g1,7013:16731185,13167979 -g1,7013:17363477,13167979 -h1,7013:17995769,13167979:0,0,0 -k1,7013:31966991,13167979:13971222 -g1,7013:31966991,13167979 -) -(1,7017:7246811,13899693:24720180,404226,76021 -(1,7015:7246811,13899693:0,0,0 -g1,7015:7246811,13899693 -g1,7015:7246811,13899693 -g1,7015:6919131,13899693 -(1,7015:6919131,13899693:0,0,0 -) -g1,7015:7246811,13899693 -) -g1,7017:8195248,13899693 -g1,7017:9459831,13899693 -k1,7017:9459831,13899693:0 -h1,7017:12305142,13899693:0,0,0 -k1,7017:31966990,13899693:19661848 -g1,7017:31966990,13899693 -) -(1,7019:7246811,15221231:24720180,404226,101187 -(1,7018:7246811,15221231:0,0,0 -g1,7018:7246811,15221231 -g1,7018:7246811,15221231 -g1,7018:6919131,15221231 -(1,7018:6919131,15221231:0,0,0 -) -g1,7018:7246811,15221231 -) -k1,7019:7246811,15221231:0 -g1,7019:9775977,15221231 -g1,7019:10408269,15221231 -g1,7019:12621289,15221231 -g1,7019:14202018,15221231 -g1,7019:14834310,15221231 -g1,7019:15782748,15221231 -g1,7019:16731185,15221231 -g1,7019:17363477,15221231 -g1,7019:18311915,15221231 -g1,7019:21789518,15221231 -g1,7019:22421810,15221231 -h1,7019:24318684,15221231:0,0,0 -k1,7019:31966991,15221231:7648307 -g1,7019:31966991,15221231 -) -(1,7023:7246811,15952945:24720180,404226,76021 -(1,7021:7246811,15952945:0,0,0 -g1,7021:7246811,15952945 -g1,7021:7246811,15952945 -g1,7021:6919131,15952945 -(1,7021:6919131,15952945:0,0,0 -) -g1,7021:7246811,15952945 -) -g1,7023:8195248,15952945 -g1,7023:9459831,15952945 -h1,7023:11988996,15952945:0,0,0 -k1,7023:31966992,15952945:19977996 -g1,7023:31966992,15952945 -) -] -) -g1,7024:31966991,16028966 -g1,7024:7246811,16028966 -g1,7024:7246811,16028966 -g1,7024:31966991,16028966 -g1,7024:31966991,16028966 -) -h1,7024:7246811,16225574:0,0,0 -(1,7028:7246811,17591350:24720180,513147,126483 -h1,7027:7246811,17591350:983040,0,0 -k1,7027:9396190,17591350:212790 -k1,7027:10633964,17591350:212791 -k1,7027:12702078,17591350:212790 -k1,7027:14199375,17591350:212791 -k1,7027:15028203,17591350:212790 -k1,7027:16260078,17591350:212790 -k1,7027:17839950,17591350:212791 -k1,7027:18712032,17591350:212790 -k1,7027:19280682,17591350:212790 -k1,7027:22852193,17591350:212791 -k1,7027:26846410,17591350:212790 -k1,7027:28205426,17591350:212791 -k1,7027:29437301,17591350:212790 -k1,7027:31966991,17591350:0 -) -(1,7028:7246811,18432838:24720180,513147,134348 -k1,7027:8465371,18432838:199475 -k1,7027:11595616,18432838:199475 -k1,7027:12411129,18432838:199475 -k1,7027:13629689,18432838:199475 -k1,7027:15001604,18432838:199476 -k1,7027:16550465,18432838:199475 -k1,7027:18493198,18432838:199475 -k1,7027:20068274,18432838:199475 -k1,7027:20883787,18432838:199475 -k1,7027:22577483,18432838:199475 -k1,7027:24157802,18432838:199475 -k1,7027:24888775,18432838:199476 -k1,7027:26154521,18432838:199475 -k1,7027:27373081,18432838:199475 -k1,7027:28939637,18432838:199475 -k1,7027:30086763,18432838:199475 -k1,7028:31966991,18432838:0 -) -(1,7028:7246811,19274326:24720180,505283,7863 -g1,7027:9493385,19274326 -k1,7028:31966992,19274326:18188208 -g1,7028:31966992,19274326 -) -(1,7030:7246811,20115814:24720180,513147,138281 -h1,7029:7246811,20115814:983040,0,0 -k1,7029:10176876,20115814:163790 -k1,7029:13791791,20115814:163789 -k1,7029:14311441,20115814:163790 -$1,7029:14311441,20115814 -$1,7029:14779368,20115814 -k1,7029:16836492,20115814:163789 -k1,7029:18567903,20115814:163790 -k1,7029:19087553,20115814:163790 -k1,7029:21851811,20115814:163789 -k1,7029:22631639,20115814:163790 -k1,7029:23151289,20115814:163790 -k1,7029:24506523,20115814:163789 -k1,7029:25329605,20115814:163790 -k1,7029:29404583,20115814:163789 -k1,7029:30436725,20115814:163790 -k1,7029:31966991,20115814:0 -) -(1,7030:7246811,20957302:24720180,513147,134348 -k1,7029:8117785,20957302:219546 -k1,7029:9643463,20957302:219545 -k1,7029:11933947,20957302:219546 -k1,7029:14744130,20957302:219545 -k1,7029:15319536,20957302:219546 -k1,7029:18644832,20957302:219545 -k1,7029:19547263,20957302:219546 -k1,7029:23573139,20957302:219545 -k1,7029:24984130,20957302:219546 -k1,7029:25735172,20957302:219545 -k1,7029:28701332,20957302:219546 -k1,7029:30112322,20957302:219545 -k1,7029:30947906,20957302:219546 -k1,7029:31966991,20957302:0 -) -(1,7030:7246811,21798790:24720180,513147,134348 -k1,7029:8774742,21798790:160850 -k1,7029:9594884,21798790:160850 -k1,7029:10111594,21798790:160850 -k1,7029:12145463,21798790:160850 -k1,7029:14026633,21798790:160850 -k1,7029:15552598,21798790:160850 -k1,7029:17598919,21798790:160850 -k1,7029:18778853,21798790:160849 -k1,7029:19471200,21798790:160850 -k1,7029:20291342,21798790:160850 -k1,7029:23069045,21798790:160850 -k1,7029:24271917,21798790:160850 -k1,7029:24788627,21798790:160850 -k1,7029:28055228,21798790:160850 -k1,7029:29407523,21798790:160850 -k1,7029:30436725,21798790:160850 -k1,7029:31966991,21798790:0 -) -(1,7030:7246811,22640278:24720180,505283,126483 -g1,7029:8097468,22640278 -g1,7029:10981707,22640278 -g1,7029:12200021,22640278 -g1,7029:15177977,22640278 -g1,7029:17057549,22640278 -g1,7029:18018306,22640278 -k1,7030:31966991,22640278:13376556 -g1,7030:31966991,22640278 -) -v1,7032:7246811,23830744:0,393216,0 -(1,7039:7246811,24846097:24720180,1408569,196608 -g1,7039:7246811,24846097 -g1,7039:7246811,24846097 -g1,7039:7050203,24846097 -(1,7039:7050203,24846097:0,1408569,196608 -r1,7042:32163599,24846097:25113396,1605177,196608 -k1,7039:7050203,24846097:-25113396 -) -(1,7039:7050203,24846097:25113396,1408569,196608 -[1,7039:7246811,24846097:24720180,1211961,0 -(1,7034:7246811,24038362:24720180,404226,101187 -(1,7033:7246811,24038362:0,0,0 -g1,7033:7246811,24038362 -g1,7033:7246811,24038362 -g1,7033:6919131,24038362 -(1,7033:6919131,24038362:0,0,0 -) -g1,7033:7246811,24038362 -) -k1,7034:7246811,24038362:0 -g1,7034:9775977,24038362 -g1,7034:10408269,24038362 -g1,7034:11356707,24038362 -g1,7034:12937436,24038362 -g1,7034:13569728,24038362 -g1,7034:14518166,24038362 -g1,7034:15466603,24038362 -g1,7034:16098895,24038362 -g1,7034:17047333,24038362 -g1,7034:17679625,24038362 -h1,7034:17995771,24038362:0,0,0 -k1,7034:31966991,24038362:13971220 -g1,7034:31966991,24038362 -) -(1,7038:7246811,24770076:24720180,404226,76021 -(1,7036:7246811,24770076:0,0,0 -g1,7036:7246811,24770076 -g1,7036:7246811,24770076 -g1,7036:6919131,24770076 -(1,7036:6919131,24770076:0,0,0 -) -g1,7036:7246811,24770076 -) -g1,7038:8195248,24770076 -g1,7038:9459831,24770076 -h1,7038:11988996,24770076:0,0,0 -k1,7038:31966992,24770076:19977996 -g1,7038:31966992,24770076 -) -] -) -g1,7039:31966991,24846097 -g1,7039:7246811,24846097 -g1,7039:7246811,24846097 -g1,7039:31966991,24846097 -g1,7039:31966991,24846097 -) -h1,7039:7246811,25042705:0,0,0 -] -) -] -r1,7042:32583029,26156817:26214,20269722,0 -) -] -) -) -g1,7042:32583029,25566993 -) -h1,7042:6630773,26183031:0,0,0 -(1,7044:6630773,28274291:25952256,564462,12975 -(1,7044:6630773,28274291:2450326,534184,12975 -g1,7044:6630773,28274291 -g1,7044:9081099,28274291 -) -g1,7044:12986914,28274291 -g1,7044:15427868,28274291 -g1,7044:17427634,28274291 -g1,7044:18053372,28274291 -k1,7044:32583029,28274291:10236000 -g1,7044:32583029,28274291 -) -(1,7048:6630773,29508995:25952256,505283,134348 -k1,7047:8291992,29508995:176173 -k1,7047:10962464,29508995:176172 -k1,7047:14408884,29508995:176173 -k1,7047:15689338,29508995:176172 -k1,7047:17241112,29508995:176173 -k1,7047:18165050,29508995:176172 -k1,7047:21494160,29508995:176173 -k1,7047:22431860,29508995:176172 -k1,7047:25230784,29508995:176173 -k1,7047:28703417,29508995:176172 -k1,7047:29777433,29508995:176173 -k1,7047:32583029,29508995:0 -) -(1,7048:6630773,30350483:25952256,513147,134348 -k1,7047:9918496,30350483:193113 -k1,7047:13381856,30350483:193113 -k1,7047:14234260,30350483:193112 -k1,7047:17243455,30350483:193113 -k1,7047:20589505,30350483:193113 -k1,7047:21544146,30350483:193113 -k1,7047:25801145,30350483:193112 -k1,7047:26985818,30350483:193113 -k1,7047:28941849,30350483:193113 -k1,7048:32583029,30350483:0 -) -(1,7048:6630773,31191971:25952256,505283,134348 -k1,7047:7612721,31191971:190273 -k1,7047:10634149,31191971:190273 -k1,7047:12204609,31191971:190272 -k1,7047:14131586,31191971:190273 -k1,7047:16013999,31191971:190273 -k1,7047:19500078,31191971:190273 -k1,7047:21084302,31191971:190273 -k1,7047:22582018,31191971:190273 -k1,7047:25266590,31191971:190272 -k1,7047:28727110,31191971:190273 -k1,7047:30367039,31191971:190273 -k1,7047:31173350,31191971:190273 -k1,7048:32583029,31191971:0 -) -(1,7048:6630773,32033459:25952256,505283,126483 -k1,7047:8105988,32033459:207749 -k1,7047:8965165,32033459:207749 -k1,7047:14456427,32033459:207749 -k1,7047:15134069,32033459:207749 -k1,7047:15873315,32033459:207749 -k1,7047:18711023,32033459:207748 -k1,7047:19570200,32033459:207749 -k1,7047:22565851,32033459:207749 -k1,7047:23839871,32033459:207749 -k1,7047:25423221,32033459:207749 -k1,7047:30666756,32033459:207749 -k1,7047:32583029,32033459:0 -) -(1,7048:6630773,32874947:25952256,513147,102891 -k1,7047:8441230,32874947:242836 -k1,7047:9039926,32874947:242836 -k1,7047:11881265,32874947:242836 -k1,7047:15905528,32874947:242836 -k1,7047:17220533,32874947:242836 -k1,7047:18749185,32874947:242836 -k1,7047:20559643,32874947:242837 -k1,7047:21821564,32874947:242836 -k1,7047:24594090,32874947:242836 -$1,7047:24594090,32874947 -$1,7047:24914561,32874947 -k1,7047:25331067,32874947:242836 -$1,7047:25331067,32874947 -$1,7047:25776056,32874947 -k1,7047:26018892,32874947:242836 -k1,7047:27453173,32874947:242836 -k1,7047:29397979,32874947:242836 -k1,7048:32583029,32874947:0 -) -(1,7048:6630773,33716435:25952256,513147,126483 -k1,7047:8120235,33716435:176120 -k1,7047:11531867,33716435:176120 -(1,7047:11531867,33716435:0,414482,115847 -r1,7047:11890133,33716435:358266,530329,115847 -k1,7047:11531867,33716435:-358266 -) -(1,7047:11531867,33716435:358266,414482,115847 -k1,7047:11531867,33716435:3277 -h1,7047:11886856,33716435:0,411205,112570 -) -k1,7047:12066253,33716435:176120 -k1,7047:15104329,33716435:176119 -k1,7047:16299534,33716435:176120 -k1,7047:18961435,33716435:176120 -k1,7047:19796847,33716435:176120 -k1,7047:21983612,33716435:176120 -k1,7047:22811160,33716435:176120 -k1,7047:23735046,33716435:176120 -k1,7047:26085650,33716435:176119 -k1,7047:26944655,33716435:176120 -k1,7047:27909173,33716435:176120 -k1,7047:31563944,33716435:176120 -k1,7047:32583029,33716435:0 -) -(1,7048:6630773,34557923:25952256,513147,134348 -g1,7047:8843268,34557923 -g1,7047:9701789,34557923 -g1,7047:10920103,34557923 -g1,7047:13097209,34557923 -g1,7047:16248835,34557923 -g1,7047:16248835,34557923 -k1,7048:32583029,34557923:16334194 -g1,7048:32583029,34557923 -) -v1,7050:6630773,35748389:0,393216,0 -(1,7064:6630773,39483172:25952256,4127999,196608 -g1,7064:6630773,39483172 -g1,7064:6630773,39483172 -g1,7064:6434165,39483172 -(1,7064:6434165,39483172:0,4127999,196608 -r1,7064:32779637,39483172:26345472,4324607,196608 -k1,7064:6434165,39483172:-26345472 -) -(1,7064:6434165,39483172:26345472,4127999,196608 -[1,7064:6630773,39483172:25952256,3931391,0 -(1,7052:6630773,35956007:25952256,404226,76021 -(1,7051:6630773,35956007:0,0,0 -g1,7051:6630773,35956007 -g1,7051:6630773,35956007 -g1,7051:6303093,35956007 -(1,7051:6303093,35956007:0,0,0 -) -g1,7051:6630773,35956007 -) -k1,7052:6630773,35956007:0 -h1,7052:9159939,35956007:0,0,0 -k1,7052:32583029,35956007:23423090 -g1,7052:32583029,35956007 -) -(1,7056:6630773,36687721:25952256,404226,76021 -(1,7054:6630773,36687721:0,0,0 -g1,7054:6630773,36687721 -g1,7054:6630773,36687721 -g1,7054:6303093,36687721 -(1,7054:6303093,36687721:0,0,0 -) -g1,7054:6630773,36687721 -) -g1,7056:7579210,36687721 -g1,7056:8843793,36687721 -g1,7056:12321396,36687721 -g1,7056:12637542,36687721 -g1,7056:15798999,36687721 -g1,7056:19276602,36687721 -g1,7056:22754205,36687721 -g1,7056:23070351,36687721 -h1,7056:25915662,36687721:0,0,0 -k1,7056:32583029,36687721:6667367 -g1,7056:32583029,36687721 -) -(1,7058:6630773,38009259:25952256,404226,82312 -(1,7057:6630773,38009259:0,0,0 -g1,7057:6630773,38009259 -g1,7057:6630773,38009259 -g1,7057:6303093,38009259 -(1,7057:6303093,38009259:0,0,0 -) -g1,7057:6630773,38009259 -) -k1,7058:6630773,38009259:0 -g1,7058:9159939,38009259 -g1,7058:9792231,38009259 -g1,7058:11056814,38009259 -g1,7058:12637543,38009259 -g1,7058:13269835,38009259 -g1,7058:14534418,38009259 -g1,7058:15482855,38009259 -g1,7058:16115147,38009259 -h1,7058:16747439,38009259:0,0,0 -k1,7058:32583029,38009259:15835590 -g1,7058:32583029,38009259 -) -(1,7063:6630773,38740973:25952256,404226,76021 -(1,7060:6630773,38740973:0,0,0 -g1,7060:6630773,38740973 -g1,7060:6630773,38740973 -g1,7060:6303093,38740973 -(1,7060:6303093,38740973:0,0,0 -) -g1,7060:6630773,38740973 -) -g1,7063:7579210,38740973 -g1,7063:7895356,38740973 -g1,7063:9159939,38740973 -g1,7063:12321396,38740973 -g1,7063:12637542,38740973 -g1,7063:15482853,38740973 -g1,7063:15798999,38740973 -g1,7063:18644310,38740973 -g1,7063:21805767,38740973 -g1,7063:24967224,38740973 -g1,7063:28128681,38740973 -h1,7063:30973992,38740973:0,0,0 -k1,7063:32583029,38740973:1609037 -g1,7063:32583029,38740973 -) -(1,7063:6630773,39407151:25952256,404226,76021 -h1,7063:6630773,39407151:0,0,0 -g1,7063:7579210,39407151 -g1,7063:7895356,39407151 -g1,7063:9159939,39407151 -g1,7063:12321396,39407151 -g1,7063:15482853,39407151 -g1,7063:15798999,39407151 -h1,7063:18328164,39407151:0,0,0 -k1,7063:32583029,39407151:14254865 -g1,7063:32583029,39407151 -) -] -) -g1,7064:32583029,39483172 -g1,7064:6630773,39483172 -g1,7064:6630773,39483172 -g1,7064:32583029,39483172 -g1,7064:32583029,39483172 -) -h1,7064:6630773,39679780:0,0,0 -v1,7068:6630773,41569844:0,393216,0 -(1,7069:6630773,43824419:25952256,2647791,616038 -g1,7069:6630773,43824419 -(1,7069:6630773,43824419:25952256,2647791,616038 -(1,7069:6630773,44440457:25952256,3263829,0 -[1,7069:6630773,44440457:25952256,3263829,0 -(1,7069:6630773,44414243:25952256,3211401,0 -r1,7069:6656987,44414243:26214,3211401,0 -[1,7069:6656987,44414243:25899828,3211401,0 -(1,7069:6656987,43824419:25899828,2031753,0 -[1,7069:7246811,43824419:24720180,2031753,0 -(1,7069:7246811,42880040:24720180,1087374,126483 -k1,7068:8720741,42880040:264227 -k1,7068:10234740,42880040:264227 -k1,7068:11518051,42880040:264226 -k1,7068:14773997,42880040:264227 -k1,7068:15654262,42880040:264227 -k1,7068:18527477,42880040:264227 -h1,7068:20070195,42880040:0,0,0 -k1,7068:20508091,42880040:264226 -h1,7068:22050809,42880040:0,0,0 -k1,7068:22315036,42880040:264227 -k1,7068:23770708,42880040:264227 -h1,7068:25313426,42880040:0,0,0 -k1,7068:25577653,42880040:264227 -k1,7068:26493307,42880040:264226 -k1,7068:27572802,42880040:264227 -k1,7068:31966991,42880040:0 -) -(1,7069:7246811,43721528:24720180,513147,102891 -g1,7068:9300709,43721528 -g1,7068:10309308,43721528 -g1,7068:13270880,43721528 -g1,7068:17755508,43721528 -g1,7068:19448303,43721528 -g1,7068:20333694,43721528 -g1,7068:23503670,43721528 -g1,7068:24109222,43721528 -g1,7068:24741644,43721528 -g1,7068:25623758,43721528 -k1,7069:31966991,43721528:3571060 -g1,7069:31966991,43721528 -) -] -) -] -r1,7069:32583029,44414243:26214,3211401,0 -) -] -) -) -g1,7069:32583029,43824419 -) -h1,7069:6630773,44440457:0,0,0 -] -(1,7072:32583029,45706769:0,0,0 -g1,7072:32583029,45706769 -) -) -] -(1,7072:6630773,47279633:25952256,0,0 -h1,7072:6630773,47279633:25952256,0,0 -) -] -h1,7072:4262630,4025873:0,0,0 -] -!22739 +k1,7077:3078556,49800853:-34777008 +) +] +g1,7077:6630773,4812305 +g1,7077:6630773,4812305 +g1,7077:10836873,4812305 +k1,7077:31387653,4812305:20550780 +) +) +] +[1,7077:6630773,45706769:25952256,40108032,0 +(1,7077:6630773,45706769:25952256,40108032,0 +(1,7077:6630773,45706769:0,0,0 +g1,7077:6630773,45706769 +) +[1,7077:6630773,45706769:25952256,40108032,0 +v1,7013:6630773,6254097:0,393216,0 +(1,7047:6630773,25566993:25952256,19706112,616038 +g1,7047:6630773,25566993 +(1,7047:6630773,25566993:25952256,19706112,616038 +(1,7047:6630773,26183031:25952256,20322150,0 +[1,7047:6630773,26183031:25952256,20322150,0 +(1,7047:6630773,26156817:25952256,20269722,0 +r1,7047:6656987,26156817:26214,20269722,0 +[1,7047:6656987,26156817:25899828,20269722,0 +(1,7047:6656987,25566993:25899828,19090074,0 +[1,7047:7246811,25566993:24720180,19090074,0 +(1,7014:7246811,7562455:24720180,1085536,298548 +(1,7013:7246811,7562455:0,1085536,298548 +r1,7047:8753226,7562455:1506415,1384084,298548 +k1,7013:7246811,7562455:-1506415 +) +(1,7013:7246811,7562455:1506415,1085536,298548 +) +k1,7013:9036488,7562455:283262 +k1,7013:12025732,7562455:283262 +k1,7013:15334792,7562455:283263 +k1,7013:16764279,7562455:283262 +(1,7013:16764279,7562455:0,452978,115847 +r1,7047:19232816,7562455:2468537,568825,115847 +k1,7013:16764279,7562455:-2468537 +) +(1,7013:16764279,7562455:2468537,452978,115847 +k1,7013:16764279,7562455:3277 +h1,7013:19229539,7562455:0,411205,112570 +) +k1,7013:19516078,7562455:283262 +k1,7013:20990785,7562455:283262 +k1,7013:24759908,7562455:283263 +k1,7013:28068967,7562455:283262 +k1,7013:29498454,7562455:283262 +(1,7013:29498454,7562455:0,452978,115847 +r1,7047:31966991,7562455:2468537,568825,115847 +k1,7013:29498454,7562455:-2468537 +) +(1,7013:29498454,7562455:2468537,452978,115847 +k1,7013:29498454,7562455:3277 +h1,7013:31963714,7562455:0,411205,112570 +) +k1,7013:31966991,7562455:0 +) +(1,7014:7246811,8403943:24720180,513147,134348 +k1,7013:9551002,8403943:174926 +k1,7013:10541197,8403943:174927 +k1,7013:15110312,8403943:174926 +k1,7013:17139908,8403943:174927 +k1,7013:18124204,8403943:174926 +k1,7013:18654990,8403943:174926 +k1,7013:20702936,8403943:174927 +k1,7013:21896947,8403943:174926 +k1,7013:22731166,8403943:174927 +k1,7013:23925177,8403943:174926 +k1,7013:28055202,8403943:174927 +k1,7013:29696824,8403943:174926 +k1,7013:31966991,8403943:0 +) +(1,7014:7246811,9245431:24720180,513147,126483 +k1,7013:7922225,9245431:217317 +k1,7013:8671040,9245431:217318 +k1,7013:11518317,9245431:217317 +k1,7013:12387062,9245431:217317 +k1,7013:14863406,9245431:217318 +k1,7013:16966194,9245431:217317 +k1,7013:18202596,9245431:217317 +k1,7013:19288266,9245431:217318 +k1,7013:20497143,9245431:217317 +k1,7013:23925724,9245431:217317 +k1,7013:24932751,9245431:217318 +k1,7013:25627825,9245431:217317 +k1,7013:26713494,9245431:217317 +k1,7013:27922372,9245431:217318 +k1,7013:31350953,9245431:217317 +k1,7013:31966991,9245431:0 +) +(1,7014:7246811,10086919:24720180,513147,134348 +k1,7013:10476902,10086919:216090 +k1,7013:14979047,10086919:216090 +k1,7013:18125906,10086919:216089 +k1,7013:19289647,10086919:216090 +k1,7013:20972433,10086919:216090 +k1,7013:22711580,10086919:216090 +k1,7013:23796022,10086919:216090 +k1,7013:25542378,10086919:216090 +k1,7013:26409895,10086919:216089 +k1,7013:27441253,10086919:216090 +k1,7013:28860584,10086919:216090 +k1,7013:31966991,10086919:0 +) +(1,7014:7246811,10928407:24720180,513147,134348 +k1,7013:7886590,10928407:162022 +k1,7013:8916964,10928407:162022 +k1,7013:10070547,10928407:162023 +k1,7013:12399845,10928407:162022 +k1,7013:13174629,10928407:162022 +k1,7013:16267421,10928407:162022 +k1,7013:17377094,10928407:162022 +$1,7013:17377094,10928407 +k1,7013:18027081,10928407:182060 +k1,7013:18777338,10928407:182060 +$1,7013:20162114,10928407 +k1,7013:20497807,10928407:162023 +k1,7013:21528181,10928407:162022 +k1,7013:23220469,10928407:162022 +k1,7013:24033919,10928407:162022 +k1,7013:25462097,10928407:162022 +k1,7013:26643205,10928407:162023 +k1,7013:29405696,10928407:162022 +k1,7013:30515369,10928407:162022 +k1,7013:31966991,10928407:0 +) +(1,7014:7246811,11769895:24720180,505283,95027 +g1,7013:8465125,11769895 +g1,7013:10519023,11769895 +g1,7013:11527622,11769895 +$1,7013:11527622,11769895 +g1,7013:12920132,11769895 +g1,7013:13670389,11769895 +$1,7013:15453624,11769895 +k1,7014:31966991,11769895:16339697 +g1,7014:31966991,11769895 +) +v1,7016:7246811,12960361:0,393216,0 +(1,7029:7246811,16028966:24720180,3461821,196608 +g1,7029:7246811,16028966 +g1,7029:7246811,16028966 +g1,7029:7050203,16028966 +(1,7029:7050203,16028966:0,3461821,196608 +r1,7047:32163599,16028966:25113396,3658429,196608 +k1,7029:7050203,16028966:-25113396 +) +(1,7029:7050203,16028966:25113396,3461821,196608 +[1,7029:7246811,16028966:24720180,3265213,0 +(1,7018:7246811,13167979:24720180,404226,101187 +(1,7017:7246811,13167979:0,0,0 +g1,7017:7246811,13167979 +g1,7017:7246811,13167979 +g1,7017:6919131,13167979 +(1,7017:6919131,13167979:0,0,0 +) +g1,7017:7246811,13167979 +) +k1,7018:7246811,13167979:0 +g1,7018:9775977,13167979 +g1,7018:10408269,13167979 +g1,7018:12621289,13167979 +g1,7018:14202018,13167979 +g1,7018:14834310,13167979 +g1,7018:15782748,13167979 +g1,7018:16731185,13167979 +g1,7018:17363477,13167979 +h1,7018:17995769,13167979:0,0,0 +k1,7018:31966991,13167979:13971222 +g1,7018:31966991,13167979 +) +(1,7022:7246811,13899693:24720180,404226,76021 +(1,7020:7246811,13899693:0,0,0 +g1,7020:7246811,13899693 +g1,7020:7246811,13899693 +g1,7020:6919131,13899693 +(1,7020:6919131,13899693:0,0,0 +) +g1,7020:7246811,13899693 +) +g1,7022:8195248,13899693 +g1,7022:9459831,13899693 +k1,7022:9459831,13899693:0 +h1,7022:12305142,13899693:0,0,0 +k1,7022:31966990,13899693:19661848 +g1,7022:31966990,13899693 +) +(1,7024:7246811,15221231:24720180,404226,101187 +(1,7023:7246811,15221231:0,0,0 +g1,7023:7246811,15221231 +g1,7023:7246811,15221231 +g1,7023:6919131,15221231 +(1,7023:6919131,15221231:0,0,0 +) +g1,7023:7246811,15221231 +) +k1,7024:7246811,15221231:0 +g1,7024:9775977,15221231 +g1,7024:10408269,15221231 +g1,7024:12621289,15221231 +g1,7024:14202018,15221231 +g1,7024:14834310,15221231 +g1,7024:15782748,15221231 +g1,7024:16731185,15221231 +g1,7024:17363477,15221231 +g1,7024:18311915,15221231 +g1,7024:21789518,15221231 +g1,7024:22421810,15221231 +h1,7024:24318684,15221231:0,0,0 +k1,7024:31966991,15221231:7648307 +g1,7024:31966991,15221231 +) +(1,7028:7246811,15952945:24720180,404226,76021 +(1,7026:7246811,15952945:0,0,0 +g1,7026:7246811,15952945 +g1,7026:7246811,15952945 +g1,7026:6919131,15952945 +(1,7026:6919131,15952945:0,0,0 +) +g1,7026:7246811,15952945 +) +g1,7028:8195248,15952945 +g1,7028:9459831,15952945 +h1,7028:11988996,15952945:0,0,0 +k1,7028:31966992,15952945:19977996 +g1,7028:31966992,15952945 +) +] +) +g1,7029:31966991,16028966 +g1,7029:7246811,16028966 +g1,7029:7246811,16028966 +g1,7029:31966991,16028966 +g1,7029:31966991,16028966 +) +h1,7029:7246811,16225574:0,0,0 +(1,7033:7246811,17591350:24720180,513147,126483 +h1,7032:7246811,17591350:983040,0,0 +k1,7032:9396190,17591350:212790 +k1,7032:10633964,17591350:212791 +k1,7032:12702078,17591350:212790 +k1,7032:14199375,17591350:212791 +k1,7032:15028203,17591350:212790 +k1,7032:16260078,17591350:212790 +k1,7032:17839950,17591350:212791 +k1,7032:18712032,17591350:212790 +k1,7032:19280682,17591350:212790 +k1,7032:22852193,17591350:212791 +k1,7032:26846410,17591350:212790 +k1,7032:28205426,17591350:212791 +k1,7032:29437301,17591350:212790 +k1,7032:31966991,17591350:0 +) +(1,7033:7246811,18432838:24720180,513147,134348 +k1,7032:8465371,18432838:199475 +k1,7032:11595616,18432838:199475 +k1,7032:12411129,18432838:199475 +k1,7032:13629689,18432838:199475 +k1,7032:15001604,18432838:199476 +k1,7032:16550465,18432838:199475 +k1,7032:18493198,18432838:199475 +k1,7032:20068274,18432838:199475 +k1,7032:20883787,18432838:199475 +k1,7032:22577483,18432838:199475 +k1,7032:24157802,18432838:199475 +k1,7032:24888775,18432838:199476 +k1,7032:26154521,18432838:199475 +k1,7032:27373081,18432838:199475 +k1,7032:28939637,18432838:199475 +k1,7032:30086763,18432838:199475 +k1,7033:31966991,18432838:0 +) +(1,7033:7246811,19274326:24720180,505283,7863 +g1,7032:9493385,19274326 +k1,7033:31966992,19274326:18188208 +g1,7033:31966992,19274326 +) +(1,7035:7246811,20115814:24720180,513147,138281 +h1,7034:7246811,20115814:983040,0,0 +k1,7034:10176876,20115814:163790 +k1,7034:13791791,20115814:163789 +k1,7034:14311441,20115814:163790 +$1,7034:14311441,20115814 +$1,7034:14779368,20115814 +k1,7034:16836492,20115814:163789 +k1,7034:18567903,20115814:163790 +k1,7034:19087553,20115814:163790 +k1,7034:21851811,20115814:163789 +k1,7034:22631639,20115814:163790 +k1,7034:23151289,20115814:163790 +k1,7034:24506523,20115814:163789 +k1,7034:25329605,20115814:163790 +k1,7034:29404583,20115814:163789 +k1,7034:30436725,20115814:163790 +k1,7034:31966991,20115814:0 +) +(1,7035:7246811,20957302:24720180,513147,134348 +k1,7034:8117785,20957302:219546 +k1,7034:9643463,20957302:219545 +k1,7034:11933947,20957302:219546 +k1,7034:14744130,20957302:219545 +k1,7034:15319536,20957302:219546 +k1,7034:18644832,20957302:219545 +k1,7034:19547263,20957302:219546 +k1,7034:23573139,20957302:219545 +k1,7034:24984130,20957302:219546 +k1,7034:25735172,20957302:219545 +k1,7034:28701332,20957302:219546 +k1,7034:30112322,20957302:219545 +k1,7034:30947906,20957302:219546 +k1,7034:31966991,20957302:0 +) +(1,7035:7246811,21798790:24720180,513147,134348 +k1,7034:8774742,21798790:160850 +k1,7034:9594884,21798790:160850 +k1,7034:10111594,21798790:160850 +k1,7034:12145463,21798790:160850 +k1,7034:14026633,21798790:160850 +k1,7034:15552598,21798790:160850 +k1,7034:17598919,21798790:160850 +k1,7034:18778853,21798790:160849 +k1,7034:19471200,21798790:160850 +k1,7034:20291342,21798790:160850 +k1,7034:23069045,21798790:160850 +k1,7034:24271917,21798790:160850 +k1,7034:24788627,21798790:160850 +k1,7034:28055228,21798790:160850 +k1,7034:29407523,21798790:160850 +k1,7034:30436725,21798790:160850 +k1,7034:31966991,21798790:0 +) +(1,7035:7246811,22640278:24720180,505283,126483 +g1,7034:8097468,22640278 +g1,7034:10981707,22640278 +g1,7034:12200021,22640278 +g1,7034:15177977,22640278 +g1,7034:17057549,22640278 +g1,7034:18018306,22640278 +k1,7035:31966991,22640278:13376556 +g1,7035:31966991,22640278 +) +v1,7037:7246811,23830744:0,393216,0 +(1,7044:7246811,24846097:24720180,1408569,196608 +g1,7044:7246811,24846097 +g1,7044:7246811,24846097 +g1,7044:7050203,24846097 +(1,7044:7050203,24846097:0,1408569,196608 +r1,7047:32163599,24846097:25113396,1605177,196608 +k1,7044:7050203,24846097:-25113396 +) +(1,7044:7050203,24846097:25113396,1408569,196608 +[1,7044:7246811,24846097:24720180,1211961,0 +(1,7039:7246811,24038362:24720180,404226,101187 +(1,7038:7246811,24038362:0,0,0 +g1,7038:7246811,24038362 +g1,7038:7246811,24038362 +g1,7038:6919131,24038362 +(1,7038:6919131,24038362:0,0,0 +) +g1,7038:7246811,24038362 +) +k1,7039:7246811,24038362:0 +g1,7039:9775977,24038362 +g1,7039:10408269,24038362 +g1,7039:11356707,24038362 +g1,7039:12937436,24038362 +g1,7039:13569728,24038362 +g1,7039:14518166,24038362 +g1,7039:15466603,24038362 +g1,7039:16098895,24038362 +g1,7039:17047333,24038362 +g1,7039:17679625,24038362 +h1,7039:17995771,24038362:0,0,0 +k1,7039:31966991,24038362:13971220 +g1,7039:31966991,24038362 +) +(1,7043:7246811,24770076:24720180,404226,76021 +(1,7041:7246811,24770076:0,0,0 +g1,7041:7246811,24770076 +g1,7041:7246811,24770076 +g1,7041:6919131,24770076 +(1,7041:6919131,24770076:0,0,0 +) +g1,7041:7246811,24770076 +) +g1,7043:8195248,24770076 +g1,7043:9459831,24770076 +h1,7043:11988996,24770076:0,0,0 +k1,7043:31966992,24770076:19977996 +g1,7043:31966992,24770076 +) +] +) +g1,7044:31966991,24846097 +g1,7044:7246811,24846097 +g1,7044:7246811,24846097 +g1,7044:31966991,24846097 +g1,7044:31966991,24846097 +) +h1,7044:7246811,25042705:0,0,0 +] +) +] +r1,7047:32583029,26156817:26214,20269722,0 +) +] +) +) +g1,7047:32583029,25566993 +) +h1,7047:6630773,26183031:0,0,0 +(1,7049:6630773,28274291:25952256,564462,12975 +(1,7049:6630773,28274291:2450326,534184,12975 +g1,7049:6630773,28274291 +g1,7049:9081099,28274291 +) +g1,7049:12986914,28274291 +g1,7049:15427868,28274291 +g1,7049:17427634,28274291 +g1,7049:18053372,28274291 +k1,7049:32583029,28274291:10236000 +g1,7049:32583029,28274291 +) +(1,7053:6630773,29508995:25952256,505283,134348 +k1,7052:8291992,29508995:176173 +k1,7052:10962464,29508995:176172 +k1,7052:14408884,29508995:176173 +k1,7052:15689338,29508995:176172 +k1,7052:17241112,29508995:176173 +k1,7052:18165050,29508995:176172 +k1,7052:21494160,29508995:176173 +k1,7052:22431860,29508995:176172 +k1,7052:25230784,29508995:176173 +k1,7052:28703417,29508995:176172 +k1,7052:29777433,29508995:176173 +k1,7052:32583029,29508995:0 +) +(1,7053:6630773,30350483:25952256,513147,134348 +k1,7052:9918496,30350483:193113 +k1,7052:13381856,30350483:193113 +k1,7052:14234260,30350483:193112 +k1,7052:17243455,30350483:193113 +k1,7052:20589505,30350483:193113 +k1,7052:21544146,30350483:193113 +k1,7052:25801145,30350483:193112 +k1,7052:26985818,30350483:193113 +k1,7052:28941849,30350483:193113 +k1,7053:32583029,30350483:0 +) +(1,7053:6630773,31191971:25952256,505283,134348 +k1,7052:7612721,31191971:190273 +k1,7052:10634149,31191971:190273 +k1,7052:12204609,31191971:190272 +k1,7052:14131586,31191971:190273 +k1,7052:16013999,31191971:190273 +k1,7052:19500078,31191971:190273 +k1,7052:21084302,31191971:190273 +k1,7052:22582018,31191971:190273 +k1,7052:25266590,31191971:190272 +k1,7052:28727110,31191971:190273 +k1,7052:30367039,31191971:190273 +k1,7052:31173350,31191971:190273 +k1,7053:32583029,31191971:0 +) +(1,7053:6630773,32033459:25952256,505283,126483 +k1,7052:8105988,32033459:207749 +k1,7052:8965165,32033459:207749 +k1,7052:14456427,32033459:207749 +k1,7052:15134069,32033459:207749 +k1,7052:15873315,32033459:207749 +k1,7052:18711023,32033459:207748 +k1,7052:19570200,32033459:207749 +k1,7052:22565851,32033459:207749 +k1,7052:23839871,32033459:207749 +k1,7052:25423221,32033459:207749 +k1,7052:30666756,32033459:207749 +k1,7052:32583029,32033459:0 +) +(1,7053:6630773,32874947:25952256,513147,102891 +k1,7052:8476468,32874947:278074 +k1,7052:9110403,32874947:278075 +k1,7052:11986980,32874947:278074 +k1,7052:16046481,32874947:278074 +k1,7052:17396725,32874947:278075 +k1,7052:18960615,32874947:278074 +k1,7052:20806310,32874947:278074 +k1,7052:22103470,32874947:278075 +k1,7052:24911234,32874947:278074 +$1,7052:24911234,32874947 +$1,7052:25231705,32874947 +k1,7052:25683449,32874947:278074 +$1,7052:25683449,32874947 +$1,7052:26128438,32874947 +k1,7052:26406512,32874947:278074 +k1,7052:27876032,32874947:278075 +k1,7052:29856076,32874947:278074 +k1,7053:32583029,32874947:0 +) +(1,7053:6630773,33716435:25952256,513147,126483 +k1,7052:8635032,33716435:232821 +k1,7052:12103364,33716435:232820 +(1,7052:12103364,33716435:0,414482,115847 +r1,7052:12461630,33716435:358266,530329,115847 +k1,7052:12103364,33716435:-358266 +) +(1,7052:12103364,33716435:358266,414482,115847 +k1,7052:12103364,33716435:3277 +h1,7052:12458353,33716435:0,411205,112570 +) +k1,7052:12694451,33716435:232821 +k1,7052:15789228,33716435:232820 +k1,7052:17041134,33716435:232821 +k1,7052:19759735,33716435:232820 +k1,7052:20651848,33716435:232821 +k1,7052:22895313,33716435:232820 +k1,7052:23779562,33716435:232821 +k1,7052:24760148,33716435:232820 +k1,7052:27167454,33716435:232821 +k1,7052:28083159,33716435:232820 +k1,7052:29104378,33716435:232821 +k1,7052:32583029,33716435:0 +) +(1,7053:6630773,34557923:25952256,513147,134348 +g1,7052:7849087,34557923 +g1,7052:10061582,34557923 +g1,7052:10920103,34557923 +g1,7052:12138417,34557923 +g1,7052:14315523,34557923 +g1,7052:17467149,34557923 +g1,7052:17467149,34557923 +k1,7053:32583029,34557923:15115880 +g1,7053:32583029,34557923 +) +v1,7055:6630773,35748389:0,393216,0 +(1,7069:6630773,39483172:25952256,4127999,196608 +g1,7069:6630773,39483172 +g1,7069:6630773,39483172 +g1,7069:6434165,39483172 +(1,7069:6434165,39483172:0,4127999,196608 +r1,7069:32779637,39483172:26345472,4324607,196608 +k1,7069:6434165,39483172:-26345472 +) +(1,7069:6434165,39483172:26345472,4127999,196608 +[1,7069:6630773,39483172:25952256,3931391,0 +(1,7057:6630773,35956007:25952256,404226,76021 +(1,7056:6630773,35956007:0,0,0 +g1,7056:6630773,35956007 +g1,7056:6630773,35956007 +g1,7056:6303093,35956007 +(1,7056:6303093,35956007:0,0,0 +) +g1,7056:6630773,35956007 +) +k1,7057:6630773,35956007:0 +h1,7057:9159939,35956007:0,0,0 +k1,7057:32583029,35956007:23423090 +g1,7057:32583029,35956007 +) +(1,7061:6630773,36687721:25952256,404226,76021 +(1,7059:6630773,36687721:0,0,0 +g1,7059:6630773,36687721 +g1,7059:6630773,36687721 +g1,7059:6303093,36687721 +(1,7059:6303093,36687721:0,0,0 +) +g1,7059:6630773,36687721 +) +g1,7061:7579210,36687721 +g1,7061:8843793,36687721 +g1,7061:12321396,36687721 +g1,7061:12637542,36687721 +g1,7061:15798999,36687721 +g1,7061:19276602,36687721 +g1,7061:22754205,36687721 +g1,7061:23070351,36687721 +h1,7061:25915662,36687721:0,0,0 +k1,7061:32583029,36687721:6667367 +g1,7061:32583029,36687721 +) +(1,7063:6630773,38009259:25952256,404226,82312 +(1,7062:6630773,38009259:0,0,0 +g1,7062:6630773,38009259 +g1,7062:6630773,38009259 +g1,7062:6303093,38009259 +(1,7062:6303093,38009259:0,0,0 +) +g1,7062:6630773,38009259 +) +k1,7063:6630773,38009259:0 +g1,7063:9159939,38009259 +g1,7063:9792231,38009259 +g1,7063:11056814,38009259 +g1,7063:12637543,38009259 +g1,7063:13269835,38009259 +g1,7063:14534418,38009259 +g1,7063:15482855,38009259 +g1,7063:16115147,38009259 +h1,7063:16747439,38009259:0,0,0 +k1,7063:32583029,38009259:15835590 +g1,7063:32583029,38009259 +) +(1,7068:6630773,38740973:25952256,404226,76021 +(1,7065:6630773,38740973:0,0,0 +g1,7065:6630773,38740973 +g1,7065:6630773,38740973 +g1,7065:6303093,38740973 +(1,7065:6303093,38740973:0,0,0 +) +g1,7065:6630773,38740973 +) +g1,7068:7579210,38740973 +g1,7068:7895356,38740973 +g1,7068:9159939,38740973 +g1,7068:12321396,38740973 +g1,7068:12637542,38740973 +g1,7068:15482853,38740973 +g1,7068:15798999,38740973 +g1,7068:18644310,38740973 +g1,7068:21805767,38740973 +g1,7068:24967224,38740973 +g1,7068:28128681,38740973 +h1,7068:30973992,38740973:0,0,0 +k1,7068:32583029,38740973:1609037 +g1,7068:32583029,38740973 +) +(1,7068:6630773,39407151:25952256,404226,76021 +h1,7068:6630773,39407151:0,0,0 +g1,7068:7579210,39407151 +g1,7068:7895356,39407151 +g1,7068:9159939,39407151 +g1,7068:12321396,39407151 +g1,7068:15482853,39407151 +g1,7068:15798999,39407151 +h1,7068:18328164,39407151:0,0,0 +k1,7068:32583029,39407151:14254865 +g1,7068:32583029,39407151 +) +] +) +g1,7069:32583029,39483172 +g1,7069:6630773,39483172 +g1,7069:6630773,39483172 +g1,7069:32583029,39483172 +g1,7069:32583029,39483172 +) +h1,7069:6630773,39679780:0,0,0 +v1,7073:6630773,41569844:0,393216,0 +(1,7074:6630773,43824419:25952256,2647791,616038 +g1,7074:6630773,43824419 +(1,7074:6630773,43824419:25952256,2647791,616038 +(1,7074:6630773,44440457:25952256,3263829,0 +[1,7074:6630773,44440457:25952256,3263829,0 +(1,7074:6630773,44414243:25952256,3211401,0 +r1,7074:6656987,44414243:26214,3211401,0 +[1,7074:6656987,44414243:25899828,3211401,0 +(1,7074:6656987,43824419:25899828,2031753,0 +[1,7074:7246811,43824419:24720180,2031753,0 +(1,7074:7246811,42880040:24720180,1087374,126483 +k1,7073:8720741,42880040:264227 +k1,7073:10234740,42880040:264227 +k1,7073:11518051,42880040:264226 +k1,7073:14773997,42880040:264227 +k1,7073:15654262,42880040:264227 +k1,7073:18527477,42880040:264227 +h1,7073:20070195,42880040:0,0,0 +k1,7073:20508091,42880040:264226 +h1,7073:22050809,42880040:0,0,0 +k1,7073:22315036,42880040:264227 +k1,7073:23770708,42880040:264227 +h1,7073:25313426,42880040:0,0,0 +k1,7073:25577653,42880040:264227 +k1,7073:26493307,42880040:264226 +k1,7073:27572802,42880040:264227 +k1,7073:31966991,42880040:0 +) +(1,7074:7246811,43721528:24720180,513147,102891 +g1,7073:9300709,43721528 +g1,7073:10309308,43721528 +g1,7073:13270880,43721528 +g1,7073:17755508,43721528 +g1,7073:19448303,43721528 +g1,7073:20333694,43721528 +g1,7073:23503670,43721528 +g1,7073:24109222,43721528 +g1,7073:24741644,43721528 +g1,7073:25623758,43721528 +k1,7074:31966991,43721528:3571060 +g1,7074:31966991,43721528 +) +] +) +] +r1,7074:32583029,44414243:26214,3211401,0 +) +] +) +) +g1,7074:32583029,43824419 +) +h1,7074:6630773,44440457:0,0,0 +] +(1,7077:32583029,45706769:0,0,0 +g1,7077:32583029,45706769 +) +) +] +(1,7077:6630773,47279633:25952256,0,0 +h1,7077:6630773,47279633:25952256,0,0 +) +] +h1,7077:4262630,4025873:0,0,0 +] +!22733 }132 -Input:989:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:990:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:991:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:992:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:993:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:994:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:995:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:996:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:997:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:998:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!862 +Input:985:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:986:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:987:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:988:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:989:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:990:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:991:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:992:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:993:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:994:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!922 {133 -[1,7112:4262630,47279633:28320399,43253760,0 -(1,7112:4262630,4025873:0,0,0 -[1,7112:-473657,4025873:25952256,0,0 -(1,7112:-473657,-710414:25952256,0,0 -h1,7112:-473657,-710414:0,0,0 -(1,7112:-473657,-710414:0,0,0 -(1,7112:-473657,-710414:0,0,0 -g1,7112:-473657,-710414 -(1,7112:-473657,-710414:65781,0,65781 -g1,7112:-407876,-710414 -[1,7112:-407876,-644633:0,0,0 +[1,7117:4262630,47279633:28320399,43253760,0 +(1,7117:4262630,4025873:0,0,0 +[1,7117:-473657,4025873:25952256,0,0 +(1,7117:-473657,-710414:25952256,0,0 +h1,7117:-473657,-710414:0,0,0 +(1,7117:-473657,-710414:0,0,0 +(1,7117:-473657,-710414:0,0,0 +g1,7117:-473657,-710414 +(1,7117:-473657,-710414:65781,0,65781 +g1,7117:-407876,-710414 +[1,7117:-407876,-644633:0,0,0 ] ) -k1,7112:-473657,-710414:-65781 +k1,7117:-473657,-710414:-65781 ) ) -k1,7112:25478599,-710414:25952256 -g1,7112:25478599,-710414 +k1,7117:25478599,-710414:25952256 +g1,7117:25478599,-710414 ) ] ) -[1,7112:6630773,47279633:25952256,43253760,0 -[1,7112:6630773,4812305:25952256,786432,0 -(1,7112:6630773,4812305:25952256,505283,134348 -(1,7112:6630773,4812305:25952256,505283,134348 -g1,7112:3078558,4812305 -[1,7112:3078558,4812305:0,0,0 -(1,7112:3078558,2439708:0,1703936,0 -k1,7112:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7112:2537886,2439708:1179648,16384,0 +[1,7117:6630773,47279633:25952256,43253760,0 +[1,7117:6630773,4812305:25952256,786432,0 +(1,7117:6630773,4812305:25952256,505283,134348 +(1,7117:6630773,4812305:25952256,505283,134348 +g1,7117:3078558,4812305 +[1,7117:3078558,4812305:0,0,0 +(1,7117:3078558,2439708:0,1703936,0 +k1,7117:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7117:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7112:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7117:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7112:3078558,4812305:0,0,0 -(1,7112:3078558,2439708:0,1703936,0 -g1,7112:29030814,2439708 -g1,7112:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7112:36151628,1915420:16384,1179648,0 +[1,7117:3078558,4812305:0,0,0 +(1,7117:3078558,2439708:0,1703936,0 +g1,7117:29030814,2439708 +g1,7117:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7117:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7112:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7117:37855564,2439708:1179648,16384,0 ) ) -k1,7112:3078556,2439708:-34777008 +k1,7117:3078556,2439708:-34777008 ) ] -[1,7112:3078558,4812305:0,0,0 -(1,7112:3078558,49800853:0,16384,2228224 -k1,7112:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7112:2537886,49800853:1179648,16384,0 +[1,7117:3078558,4812305:0,0,0 +(1,7117:3078558,49800853:0,16384,2228224 +k1,7117:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7117:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7112:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7117:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7112:3078558,4812305:0,0,0 -(1,7112:3078558,49800853:0,16384,2228224 -g1,7112:29030814,49800853 -g1,7112:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7112:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7112:37855564,49800853:1179648,16384,0 -) -) -k1,7112:3078556,49800853:-34777008 -) -] -g1,7112:6630773,4812305 -k1,7112:24573876,4812305:16747726 -g1,7112:25960617,4812305 -g1,7112:26609423,4812305 -g1,7112:29923578,4812305 -) -) -] -[1,7112:6630773,45706769:25952256,40108032,0 -(1,7112:6630773,45706769:25952256,40108032,0 -(1,7112:6630773,45706769:0,0,0 -g1,7112:6630773,45706769 -) -[1,7112:6630773,45706769:25952256,40108032,0 -v1,7072:6630773,6254097:0,393216,0 -(1,7074:6630773,16188032:25952256,10327151,616038 -g1,7074:6630773,16188032 -(1,7074:6630773,16188032:25952256,10327151,616038 -(1,7074:6630773,16804070:25952256,10943189,0 -[1,7074:6630773,16804070:25952256,10943189,0 -(1,7074:6630773,16777856:25952256,10890761,0 -r1,7074:6656987,16777856:26214,10890761,0 -[1,7074:6656987,16777856:25899828,10890761,0 -(1,7074:6656987,16188032:25899828,9711113,0 -[1,7074:7246811,16188032:24720180,9711113,0 -(1,7074:7246811,7638804:24720180,1161885,196608 -(1,7072:7246811,7638804:0,1161885,196608 -r1,7074:8794447,7638804:1547636,1358493,196608 -k1,7072:7246811,7638804:-1547636 -) -(1,7072:7246811,7638804:1547636,1161885,196608 -) -k1,7072:9013474,7638804:219027 -k1,7072:9013474,7638804:0 -k1,7073:9702393,7638804:219026 -k1,7073:10452917,7638804:219027 -k1,7073:14123069,7638804:219026 -k1,7073:14993524,7638804:219027 -k1,7073:17944746,7638804:219026 -k1,7073:19690107,7638804:219027 -k1,7073:22403433,7638804:219026 -k1,7073:25892707,7638804:219027 -k1,7073:26771025,7638804:219026 -k1,7073:29806134,7638804:219027 -k1,7073:30786688,7638804:219026 -k1,7074:31966991,7638804:0 -) -(1,7074:7246811,8480292:24720180,513147,126483 -k1,7073:8536953,8480292:189137 -k1,7073:9385382,8480292:189137 -k1,7073:9930379,8480292:189137 -k1,7073:14339379,8480292:189137 -k1,7073:16973664,8480292:189137 -k1,7073:18656367,8480292:189137 -k1,7073:19531666,8480292:189137 -k1,7073:20076663,8480292:189137 -k1,7073:24589210,8480292:189137 -k1,7073:29015905,8480292:189137 -k1,7073:31966991,8480292:0 -) -(1,7074:7246811,9321780:24720180,505283,134348 -k1,7073:10530882,9321780:167834 -k1,7073:11384879,9321780:167835 -k1,7073:14705650,9321780:167834 -k1,7073:15635013,9321780:167835 -k1,7073:16217659,9321780:167803 -k1,7073:17576939,9321780:167835 -k1,7073:19446743,9321780:167834 -k1,7073:22690838,9321780:167835 -k1,7073:25931000,9321780:167834 -k1,7073:27090395,9321780:167835 -k1,7073:29462860,9321780:167834 -k1,7073:31966991,9321780:0 -) -(1,7074:7246811,10163268:24720180,513147,134348 -k1,7073:10424361,10163268:232362 -k1,7073:12045430,10163268:232361 -k1,7073:16497655,10163268:232362 -k1,7073:18574854,10163268:232361 -k1,7073:19466508,10163268:232362 -k1,7073:22514951,10163268:232361 -k1,7073:24031819,10163268:232362 -k1,7073:27150386,10163268:232361 -k1,7073:29877048,10163268:232362 -k1,7073:31966991,10163268:0 -) -(1,7074:7246811,11004756:24720180,505283,134348 -k1,7073:10162746,11004756:265004 -k1,7073:12913531,11004756:265004 -k1,7073:16573954,11004756:265003 -k1,7073:18261745,11004756:265004 -k1,7073:18882609,11004756:265004 -k1,7073:20548772,11004756:265004 -k1,7073:22494119,11004756:265004 -k1,7073:24043629,11004756:265004 -k1,7073:27882966,11004756:265003 -k1,7073:30066864,11004756:265004 -k1,7073:30947906,11004756:265004 -k1,7073:31966991,11004756:0 -) -(1,7074:7246811,11846244:24720180,513147,134348 -k1,7073:9282827,11846244:191178 -k1,7073:10342357,11846244:191178 -k1,7073:12195528,11846244:191178 -k1,7073:13583393,11846244:191178 -k1,7073:15495546,11846244:191178 -k1,7073:16924699,11846244:191178 -k1,7073:17775168,11846244:191177 -k1,7073:22283203,11846244:191178 -k1,7073:24656075,11846244:191178 -k1,7073:25866338,11846244:191178 -k1,7073:27737859,11846244:191178 -k1,7073:28588329,11846244:191178 -k1,7073:29798592,11846244:191178 -k1,7073:31435494,11846244:191178 -k1,7073:31966991,11846244:0 -) -(1,7074:7246811,12687732:24720180,513147,134348 -k1,7073:8091268,12687732:193029 -k1,7073:9636960,12687732:193029 -k1,7073:10849073,12687732:193028 -k1,7073:15046352,12687732:193029 -k1,7073:15922266,12687732:193029 -k1,7073:18317305,12687732:193029 -k1,7073:20763461,12687732:193028 -k1,7073:23840074,12687732:193029 -k1,7073:24967646,12687732:193029 -k1,7073:25819967,12687732:193029 -k1,7073:27797540,12687732:193028 -k1,7073:29558190,12687732:193029 -k1,7073:30770304,12687732:193029 -k1,7073:31966991,12687732:0 -) -(1,7074:7246811,13529220:24720180,513147,126483 -k1,7073:8854035,13529220:181816 -k1,7073:10695222,13529220:181815 -k1,7073:11536330,13529220:181816 -k1,7073:12737231,13529220:181816 -k1,7073:16168976,13529220:181815 -k1,7073:19285494,13529220:181816 -k1,7073:20083347,13529220:181815 -k1,7073:21962545,13529220:181816 -k1,7073:23842399,13529220:181816 -k1,7073:24892566,13529220:181815 -k1,7073:26541733,13529220:181816 -k1,7073:27374977,13529220:181816 -k1,7073:29573335,13529220:181815 -k1,7073:30111011,13529220:181816 -k1,7074:31966991,13529220:0 -) -(1,7074:7246811,14370708:24720180,513147,134348 -k1,7073:9272606,14370708:197341 -k1,7073:11205340,14370708:197341 -k1,7073:12421767,14370708:197342 -k1,7073:14272581,14370708:197341 -k1,7073:16314760,14370708:197341 -k1,7073:17171393,14370708:197341 -k1,7073:22404520,14370708:197341 -k1,7073:24786176,14370708:197341 -k1,7073:25851870,14370708:197342 -k1,7073:27153493,14370708:197341 -k1,7073:28443319,14370708:197341 -(1,7073:28443319,14370708:0,452978,115847 -r1,7074:31966991,14370708:3523672,568825,115847 -k1,7073:28443319,14370708:-3523672 -) -(1,7073:28443319,14370708:3523672,452978,115847 -k1,7073:28443319,14370708:3277 -h1,7073:31963714,14370708:0,411205,112570 -) -k1,7073:31966991,14370708:0 -) -(1,7074:7246811,15212196:24720180,505283,134348 -k1,7073:8899780,15212196:259018 -k1,7073:9929502,15212196:259019 -k1,7073:12984941,15212196:259018 -k1,7073:15474150,15212196:259019 -k1,7073:16419330,15212196:259018 -k1,7073:17449052,15212196:259019 -k1,7073:20780398,15212196:259018 -k1,7073:21690845,15212196:259019 -k1,7073:23520106,15212196:259018 -k1,7073:24798210,15212196:259019 -k1,7073:28124968,15212196:259018 -k1,7073:29035415,15212196:259019 -k1,7073:30313518,15212196:259018 -k1,7073:31966991,15212196:0 -) -(1,7074:7246811,16053684:24720180,505283,134348 -g1,7073:9134247,16053684 -g1,7073:9949514,16053684 -g1,7073:11167828,16053684 -g1,7073:14809663,16053684 -g1,7073:19642943,16053684 -k1,7074:31966991,16053684:9210433 -g1,7074:31966991,16053684 -) -] -) -] -r1,7074:32583029,16777856:26214,10890761,0 -) -] -) -) -g1,7074:32583029,16188032 -) -h1,7074:6630773,16804070:0,0,0 -v1,7077:6630773,17938221:0,393216,0 -(1,7078:6630773,25469789:25952256,7924784,616038 -g1,7078:6630773,25469789 -(1,7078:6630773,25469789:25952256,7924784,616038 -(1,7078:6630773,26085827:25952256,8540822,0 -[1,7078:6630773,26085827:25952256,8540822,0 -(1,7078:6630773,26059613:25952256,8488394,0 -r1,7078:6656987,26059613:26214,8488394,0 -[1,7078:6656987,26059613:25899828,8488394,0 -(1,7078:6656987,25469789:25899828,7308746,0 -[1,7078:7246811,25469789:24720180,7308746,0 -(1,7078:7246811,19445025:24720180,1283982,196608 -(1,7077:7246811,19445025:0,1283982,196608 -r1,7078:9812056,19445025:2565245,1480590,196608 -k1,7077:7246811,19445025:-2565245 -) -(1,7077:7246811,19445025:2565245,1283982,196608 -) -k1,7077:10133208,19445025:321152 -k1,7077:12890333,19445025:321152 -k1,7077:14230570,19445025:321152 -k1,7077:17738082,19445025:321152 -(1,7077:17738082,19445025:0,452978,115847 -r1,7078:20558331,19445025:2820249,568825,115847 -k1,7077:17738082,19445025:-2820249 -) -(1,7077:17738082,19445025:2820249,452978,115847 -k1,7077:17738082,19445025:3277 -h1,7077:20555054,19445025:0,411205,112570 -) -k1,7077:20879483,19445025:321152 -k1,7077:21962162,19445025:321151 -k1,7077:23888946,19445025:321152 -k1,7077:26441599,19445025:321152 -k1,7077:28692131,19445025:321152 -k1,7077:31141237,19445025:321152 -k1,7078:31966991,19445025:0 -) -(1,7078:7246811,20286513:24720180,505283,134348 -k1,7077:9973633,20286513:440271 -k1,7077:11065332,20286513:440271 -k1,7077:12524687,20286513:440270 -k1,7077:14975603,20286513:440271 -k1,7077:18381378,20286513:440271 -k1,7077:20994823,20286513:440271 -k1,7077:22454179,20286513:440271 -k1,7077:25628612,20286513:440271 -k1,7077:27141051,20286513:440270 -k1,7077:28911703,20286513:440271 -k1,7078:31966991,20286513:0 -) -(1,7078:7246811,21128001:24720180,513147,134348 -(1,7077:7246811,21128001:0,452978,115847 -r1,7078:12529042,21128001:5282231,568825,115847 -k1,7077:7246811,21128001:-5282231 -) -(1,7077:7246811,21128001:5282231,452978,115847 -k1,7077:7246811,21128001:3277 -h1,7077:12525765,21128001:0,411205,112570 -) -k1,7077:12958024,21128001:428982 -k1,7077:17323754,21128001:428982 -k1,7077:19795493,21128001:428982 -k1,7077:21676098,21128001:428983 -k1,7077:23204774,21128001:428982 -k1,7077:24285184,21128001:428982 -(1,7077:24285184,21128001:0,452978,115847 -r1,7078:27105433,21128001:2820249,568825,115847 -k1,7077:24285184,21128001:-2820249 -) -(1,7077:24285184,21128001:2820249,452978,115847 -k1,7077:24285184,21128001:3277 -h1,7077:27102156,21128001:0,411205,112570 -) -k1,7077:27708085,21128001:428982 -k1,7077:29839037,21128001:428982 -k1,7077:31966991,21128001:0 -) -(1,7078:7246811,21969489:24720180,513147,115847 -k1,7077:10532537,21969489:386413 -k1,7077:11570378,21969489:386413 -k1,7077:12975876,21969489:386413 -k1,7077:15372934,21969489:386413 -k1,7077:18724851,21969489:386413 -k1,7077:20572717,21969489:386413 -k1,7077:23371510,21969489:386413 -(1,7077:23371510,21969489:0,452978,115847 -r1,7078:28653741,21969489:5282231,568825,115847 -k1,7077:23371510,21969489:-5282231 -) -(1,7077:23371510,21969489:5282231,452978,115847 -k1,7077:23371510,21969489:3277 -h1,7077:28650464,21969489:0,411205,112570 -) -k1,7077:29213824,21969489:386413 -k1,7077:31966991,21969489:0 -) -(1,7078:7246811,22810977:24720180,513147,126483 -k1,7077:8348929,22810977:340590 -(1,7077:8348929,22810977:0,452978,115847 -r1,7078:15741431,22810977:7392502,568825,115847 -k1,7077:8348929,22810977:-7392502 -) -(1,7077:8348929,22810977:7392502,452978,115847 -g1,7077:12572748,22810977 -h1,7077:15738154,22810977:0,411205,112570 -) -k1,7077:16255691,22810977:340590 -k1,7077:17787726,22810977:340590 -k1,7077:19562245,22810977:340591 -k1,7077:22315215,22810977:340590 -(1,7077:22315215,22810977:0,452978,115847 -r1,7078:27597446,22810977:5282231,568825,115847 -k1,7077:22315215,22810977:-5282231 -) -(1,7077:22315215,22810977:5282231,452978,115847 -k1,7077:22315215,22810977:3277 -h1,7077:27594169,22810977:0,411205,112570 -) -k1,7077:28111706,22810977:340590 -k1,7077:31205463,22810977:340590 -k1,7078:31966991,22810977:0 -) -(1,7078:7246811,23652465:24720180,513147,134348 -(1,7077:7246811,23652465:0,452978,115847 -r1,7078:10067060,23652465:2820249,568825,115847 -k1,7077:7246811,23652465:-2820249 -) -(1,7077:7246811,23652465:2820249,452978,115847 -k1,7077:7246811,23652465:3277 -h1,7077:10063783,23652465:0,411205,112570 -) -k1,7077:10280150,23652465:213090 -k1,7077:11684685,23652465:213090 -k1,7077:14658150,23652465:213089 -k1,7077:15890325,23652465:213090 -k1,7077:18435841,23652465:213090 -k1,7077:20822105,23652465:213090 -k1,7077:22054280,23652465:213090 -k1,7077:24827862,23652465:213090 -k1,7077:26776344,23652465:213089 -k1,7077:27345294,23652465:213090 -k1,7077:30320727,23652465:213090 -k1,7078:31966991,23652465:0 -) -(1,7078:7246811,24493953:24720180,505283,126483 -k1,7077:9083472,24493953:197606 -k1,7077:9897116,24493953:197606 -k1,7077:11113807,24493953:197606 -k1,7077:12411108,24493953:197607 -k1,7077:13260142,24493953:197606 -(1,7077:13260142,24493953:0,452978,115847 -r1,7078:16783814,24493953:3523672,568825,115847 -k1,7077:13260142,24493953:-3523672 -) -(1,7077:13260142,24493953:3523672,452978,115847 -k1,7077:13260142,24493953:3277 -h1,7077:16780537,24493953:0,411205,112570 -) -k1,7077:17155090,24493953:197606 -k1,7077:19782771,24493953:197606 -k1,7077:20999462,24493953:197606 -k1,7077:23370242,24493953:197606 -k1,7077:24759294,24493953:197607 -k1,7077:27267044,24493953:197606 -k1,7077:28795031,24493953:197606 -(1,7077:28795031,24493953:0,452978,115847 -r1,7078:31966991,24493953:3171960,568825,115847 -k1,7077:28795031,24493953:-3171960 -) -(1,7077:28795031,24493953:3171960,452978,115847 -k1,7077:28795031,24493953:3277 -h1,7077:31963714,24493953:0,411205,112570 -) -k1,7077:31966991,24493953:0 -) -(1,7078:7246811,25335441:24720180,513147,134348 -g1,7077:9555644,25335441 -g1,7077:10773958,25335441 -g1,7077:14368607,25335441 -g1,7077:15227128,25335441 -g1,7077:20462143,25335441 -g1,7077:23477454,25335441 -g1,7077:24292721,25335441 -k1,7078:31966991,25335441:7085757 -g1,7078:31966991,25335441 -) -] -) -] -r1,7078:32583029,26059613:26214,8488394,0 -) -] -) -) -g1,7078:32583029,25469789 -) -h1,7078:6630773,26085827:0,0,0 -(1,7080:6630773,28893395:25952256,32768,229376 -(1,7080:6630773,28893395:0,32768,229376 -(1,7080:6630773,28893395:5505024,32768,229376 -r1,7080:12135797,28893395:5505024,262144,229376 -) -k1,7080:6630773,28893395:-5505024 -) -(1,7080:6630773,28893395:25952256,32768,0 -r1,7080:32583029,28893395:25952256,32768,0 -) -) -(1,7080:6630773,30497723:25952256,606339,161218 -(1,7080:6630773,30497723:1974731,575668,0 -g1,7080:6630773,30497723 -g1,7080:8605504,30497723 -) -g1,7080:12866393,30497723 -k1,7080:32583029,30497723:16097476 -g1,7080:32583029,30497723 -) -(1,7085:6630773,31732427:25952256,513147,134348 -k1,7084:7472801,31732427:214193 -k1,7084:10353000,31732427:214194 -k1,7084:11218621,31732427:214193 -k1,7084:14009034,31732427:214193 -k1,7084:16233873,31732427:214194 -k1,7084:18015687,31732427:214193 -k1,7084:18585740,31732427:214193 -k1,7084:22201908,31732427:214194 -k1,7084:26371199,31732427:214193 -k1,7084:27453744,31732427:214193 -k1,7084:28772220,31732427:214194 -k1,7084:30572384,31732427:214193 -k1,7084:32583029,31732427:0 -) -(1,7085:6630773,32573915:25952256,513147,134348 -k1,7084:8347925,32573915:149531 -k1,7084:9268160,32573915:149532 -k1,7084:11908714,32573915:149531 -k1,7084:12992788,32573915:149531 -k1,7084:13825205,32573915:149532 -k1,7084:17061482,32573915:149531 -k1,7084:17870305,32573915:149531 -k1,7084:20204152,32573915:149532 -k1,7084:21307232,32573915:149531 -k1,7084:22556457,32573915:149531 -k1,7084:23909230,32573915:149532 -k1,7084:27133055,32573915:149531 -k1,7084:32583029,32573915:0 -) -(1,7085:6630773,33415403:25952256,505283,134348 -k1,7084:9896909,33415403:170215 -k1,7084:11263810,33415403:170214 -k1,7084:13350298,33415403:170215 -k1,7084:14624795,33415403:170215 -k1,7084:15542775,33415403:170214 -k1,7084:17290442,33415403:170215 -k1,7084:19316636,33415403:170214 -k1,7084:20880802,33415403:170215 -k1,7084:24988420,33415403:170215 -k1,7084:25841519,33415403:170214 -k1,7084:28471956,33415403:170215 -k1,7084:32583029,33415403:0 -) -(1,7085:6630773,34256891:25952256,513147,134348 -k1,7084:7526432,34256891:267824 -k1,7084:8813340,34256891:267823 -k1,7084:11322495,34256891:267824 -k1,7084:13131070,34256891:267824 -k1,7084:14165010,34256891:267824 -k1,7084:16349106,34256891:267823 -k1,7084:17608490,34256891:267824 -k1,7084:19643820,34256891:267824 -k1,7084:21479265,34256891:267824 -k1,7084:22766173,34256891:267823 -k1,7084:24916846,34256891:267824 -k1,7084:26119213,34256891:267824 -k1,7084:27046329,34256891:267824 -k1,7084:29498467,34256891:267823 -k1,7084:32124932,34256891:267824 -k1,7084:32583029,34256891:0 -) -(1,7085:6630773,35098379:25952256,513147,134348 -k1,7084:9478353,35098379:217620 -k1,7084:10643625,35098379:217621 -k1,7084:11217105,35098379:217620 -k1,7084:13129487,35098379:217621 -k1,7084:15027450,35098379:217620 -k1,7084:15896498,35098379:217620 -k1,7084:16861885,35098379:217621 -k1,7084:19080319,35098379:217620 -k1,7084:20948136,35098379:217620 -k1,7084:22608204,35098379:217621 -k1,7084:24489783,35098379:217620 -k1,7084:25335239,35098379:217621 -k1,7084:26571944,35098379:217620 -k1,7084:29055144,35098379:217620 -k1,7084:30639846,35098379:217621 -k1,7084:31516758,35098379:217620 -k1,7084:32583029,35098379:0 -) -(1,7085:6630773,35939867:25952256,513147,134348 -k1,7084:8610222,35939867:244056 -k1,7084:12965351,35939867:244056 -k1,7084:16870903,35939867:244056 -k1,7084:19031232,35939867:244056 -k1,7084:20266848,35939867:244056 -k1,7084:22278410,35939867:244056 -k1,7084:24090087,35939867:244056 -k1,7084:25353228,35939867:244056 -k1,7084:27607929,35939867:244056 -k1,7084:31069803,35939867:244056 -k1,7084:32583029,35939867:0 -) -(1,7085:6630773,36781355:25952256,505283,134348 -g1,7084:9827619,36781355 -g1,7084:11045933,36781355 -g1,7084:13255807,36781355 -g1,7084:15690469,36781355 -g1,7084:16505736,36781355 -g1,7084:18738547,36781355 -k1,7085:32583029,36781355:11754539 -g1,7085:32583029,36781355 -) -v1,7087:6630773,37740196:0,393216,0 -(1,7107:6630773,43534522:25952256,6187542,196608 -g1,7107:6630773,43534522 -g1,7107:6630773,43534522 -g1,7107:6434165,43534522 -(1,7107:6434165,43534522:0,6187542,196608 -r1,7107:32779637,43534522:26345472,6384150,196608 -k1,7107:6434165,43534522:-26345472 -) -(1,7107:6434165,43534522:26345472,6187542,196608 -[1,7107:6630773,43534522:25952256,5990934,0 -(1,7089:6630773,37947814:25952256,404226,101187 -(1,7088:6630773,37947814:0,0,0 -g1,7088:6630773,37947814 -g1,7088:6630773,37947814 -g1,7088:6303093,37947814 -(1,7088:6303093,37947814:0,0,0 -) -g1,7088:6630773,37947814 -) -k1,7089:6630773,37947814:0 -g1,7089:9476085,37947814 -g1,7089:10108377,37947814 -h1,7089:12637542,37947814:0,0,0 -k1,7089:32583030,37947814:19945488 -g1,7089:32583030,37947814 -) -(1,7094:6630773,38679528:25952256,404226,76021 -(1,7091:6630773,38679528:0,0,0 -g1,7091:6630773,38679528 -g1,7091:6630773,38679528 -g1,7091:6303093,38679528 -(1,7091:6303093,38679528:0,0,0 -) -g1,7091:6630773,38679528 -) -k1,7094:7565503,38679528:302439 -k1,7094:7867943,38679528:302440 -k1,7094:9118819,38679528:302439 -k1,7094:10369695,38679528:302439 -k1,7094:11620571,38679528:302439 -k1,7094:12871448,38679528:302440 -k1,7094:14122324,38679528:302439 -k1,7094:15373200,38679528:302439 -k1,7094:16624077,38679528:302440 -k1,7094:17874953,38679528:302439 -k1,7094:19125829,38679528:302439 -k1,7094:20376705,38679528:302439 -k1,7094:21627582,38679528:302440 -k1,7094:22878458,38679528:302439 -k1,7094:24129334,38679528:302439 -k1,7094:25380211,38679528:302440 -k1,7094:26631087,38679528:302439 -k1,7094:27881963,38679528:302439 -k1,7094:29132839,38679528:302439 -k1,7094:30383716,38679528:302440 -k1,7094:31634592,38679528:302439 -h1,7094:32583029,38679528:0,0,0 -k1,7094:32583029,38679528:0 -k1,7094:32583029,38679528:0 -) -(1,7094:6630773,39345706:25952256,404226,82312 -h1,7094:6630773,39345706:0,0,0 -g1,7094:7579210,39345706 -g1,7094:9159939,39345706 -g1,7094:10424522,39345706 -g1,7094:11689105,39345706 -g1,7094:12953688,39345706 -g1,7094:14218271,39345706 -g1,7094:15482854,39345706 -g1,7094:16747437,39345706 -h1,7094:17695874,39345706:0,0,0 -k1,7094:32583029,39345706:14887155 -g1,7094:32583029,39345706 -) -(1,7096:6630773,40667244:25952256,404226,101187 -(1,7095:6630773,40667244:0,0,0 -g1,7095:6630773,40667244 -g1,7095:6630773,40667244 -g1,7095:6303093,40667244 -(1,7095:6303093,40667244:0,0,0 -) -g1,7095:6630773,40667244 -) -k1,7096:6630773,40667244:0 -g1,7096:9476085,40667244 -g1,7096:10108377,40667244 -g1,7096:12953689,40667244 -g1,7096:14534418,40667244 -g1,7096:15166710,40667244 -h1,7096:16115147,40667244:0,0,0 -k1,7096:32583029,40667244:16467882 -g1,7096:32583029,40667244 -) -(1,7100:6630773,41398958:25952256,404226,82312 -(1,7098:6630773,41398958:0,0,0 -g1,7098:6630773,41398958 -g1,7098:6630773,41398958 -g1,7098:6303093,41398958 -(1,7098:6303093,41398958:0,0,0 -) -g1,7098:6630773,41398958 -) -g1,7100:7579210,41398958 -g1,7100:7895356,41398958 -g1,7100:9159939,41398958 -g1,7100:10424522,41398958 -g1,7100:11689105,41398958 -g1,7100:12953688,41398958 -g1,7100:14218271,41398958 -g1,7100:15482854,41398958 -g1,7100:16747437,41398958 -g1,7100:18012020,41398958 -g1,7100:19276603,41398958 -g1,7100:20541186,41398958 -g1,7100:21805769,41398958 -g1,7100:23070352,41398958 -h1,7100:24018789,41398958:0,0,0 -k1,7100:32583029,41398958:8564240 -g1,7100:32583029,41398958 -) -(1,7102:6630773,42720496:25952256,404226,101187 -(1,7101:6630773,42720496:0,0,0 -g1,7101:6630773,42720496 -g1,7101:6630773,42720496 -g1,7101:6303093,42720496 -(1,7101:6303093,42720496:0,0,0 -) -g1,7101:6630773,42720496 -) -k1,7102:6630773,42720496:0 -g1,7102:9476085,42720496 -g1,7102:10108377,42720496 -g1,7102:12953689,42720496 -g1,7102:14534418,42720496 -g1,7102:15166710,42720496 -g1,7102:16431293,42720496 -g1,7102:18960459,42720496 -g1,7102:19592751,42720496 -h1,7102:21173480,42720496:0,0,0 -k1,7102:32583029,42720496:11409549 -g1,7102:32583029,42720496 -) -(1,7106:6630773,43452210:25952256,404226,82312 -(1,7104:6630773,43452210:0,0,0 -g1,7104:6630773,43452210 -g1,7104:6630773,43452210 -g1,7104:6303093,43452210 -(1,7104:6303093,43452210:0,0,0 -) -g1,7104:6630773,43452210 -) -g1,7106:7579210,43452210 -g1,7106:7895356,43452210 -g1,7106:9159939,43452210 -g1,7106:10424522,43452210 -g1,7106:11689105,43452210 -g1,7106:12953688,43452210 -g1,7106:14218271,43452210 -g1,7106:15482854,43452210 -g1,7106:16747437,43452210 -g1,7106:18012020,43452210 -g1,7106:19276603,43452210 -g1,7106:20541186,43452210 -g1,7106:21805769,43452210 -g1,7106:23070352,43452210 -h1,7106:24018789,43452210:0,0,0 -k1,7106:32583029,43452210:8564240 -g1,7106:32583029,43452210 -) -] -) -g1,7107:32583029,43534522 -g1,7107:6630773,43534522 -g1,7107:6630773,43534522 -g1,7107:32583029,43534522 -g1,7107:32583029,43534522 -) -h1,7107:6630773,43731130:0,0,0 -(1,7112:6630773,44865281:25952256,513147,134348 -h1,7110:6630773,44865281:983040,0,0 -k1,7110:8535845,44865281:294197 -k1,7110:11541266,44865281:294197 -k1,7110:16871249,44865281:294197 -k1,7110:20087696,44865281:294197 -k1,7110:20913390,44865281:294197 -k1,7110:23184809,44865281:294198 -k1,7110:25177044,44865281:294197 -k1,7110:26339593,44865281:294197 -k1,7110:28164056,44865281:294197 -k1,7110:29109681,44865281:294197 -k1,7110:31224468,44865281:294197 -k1,7112:32583029,44865281:0 -) -(1,7112:6630773,45706769:25952256,513147,134348 -k1,7110:8096337,45706769:200719 -k1,7110:8956348,45706769:200719 -k1,7110:13402488,45706769:200718 -k1,7110:14874605,45706769:200719 -k1,7110:16568890,45706769:200719 -k1,7110:18136690,45706769:200719 -k1,7110:18868906,45706769:200719 -k1,7110:22066586,45706769:200719 -k1,7110:25742023,45706769:200718 -k1,7110:26594170,45706769:200719 -k1,7110:30964945,45706769:200719 -k1,7110:32583029,45706769:0 -) -] -(1,7112:32583029,45706769:0,0,0 -g1,7112:32583029,45706769 -) -) -] -(1,7112:6630773,47279633:25952256,0,0 -h1,7112:6630773,47279633:25952256,0,0 -) -] -h1,7112:4262630,4025873:0,0,0 -] -!24687 +[1,7117:3078558,4812305:0,0,0 +(1,7117:3078558,49800853:0,16384,2228224 +g1,7117:29030814,49800853 +g1,7117:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7117:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7117:37855564,49800853:1179648,16384,0 +) +) +k1,7117:3078556,49800853:-34777008 +) +] +g1,7117:6630773,4812305 +k1,7117:24502442,4812305:16676292 +g1,7117:25889183,4812305 +g1,7117:26537989,4812305 +g1,7117:29852144,4812305 +) +) +] +[1,7117:6630773,45706769:25952256,40108032,0 +(1,7117:6630773,45706769:25952256,40108032,0 +(1,7117:6630773,45706769:0,0,0 +g1,7117:6630773,45706769 +) +[1,7117:6630773,45706769:25952256,40108032,0 +v1,7077:6630773,6254097:0,393216,0 +(1,7079:6630773,16188032:25952256,10327151,616038 +g1,7079:6630773,16188032 +(1,7079:6630773,16188032:25952256,10327151,616038 +(1,7079:6630773,16804070:25952256,10943189,0 +[1,7079:6630773,16804070:25952256,10943189,0 +(1,7079:6630773,16777856:25952256,10890761,0 +r1,7079:6656987,16777856:26214,10890761,0 +[1,7079:6656987,16777856:25899828,10890761,0 +(1,7079:6656987,16188032:25899828,9711113,0 +[1,7079:7246811,16188032:24720180,9711113,0 +(1,7079:7246811,7638804:24720180,1161885,196608 +(1,7077:7246811,7638804:0,1161885,196608 +r1,7079:8794447,7638804:1547636,1358493,196608 +k1,7077:7246811,7638804:-1547636 +) +(1,7077:7246811,7638804:1547636,1161885,196608 +) +k1,7077:9111832,7638804:317385 +k1,7077:9111832,7638804:0 +k1,7077:9429217,7638804:317385 +k1,7078:10216495,7638804:317385 +k1,7078:11065377,7638804:317385 +k1,7078:14833888,7638804:317385 +k1,7078:15802702,7638804:317386 +k1,7078:18852283,7638804:317385 +k1,7078:20696002,7638804:317385 +k1,7078:23507687,7638804:317385 +k1,7078:27095319,7638804:317385 +k1,7078:28071996,7638804:317385 +k1,7078:31205463,7638804:317385 +k1,7078:31966991,7638804:0 +) +(1,7079:7246811,8480292:24720180,513147,126483 +k1,7078:9529757,8480292:214630 +k1,7078:10403680,8480292:214631 +k1,7078:10974171,8480292:214631 +k1,7078:15408664,8480292:214630 +k1,7078:18068443,8480292:214631 +k1,7078:19776639,8480292:214630 +k1,7078:20677432,8480292:214631 +k1,7078:21247922,8480292:214630 +k1,7078:25785963,8480292:214631 +k1,7078:30238151,8480292:214630 +k1,7079:31966991,8480292:0 +) +(1,7079:7246811,9321780:24720180,505283,134348 +k1,7078:8947059,9321780:265010 +k1,7078:12328305,9321780:265009 +k1,7078:13279477,9321780:265010 +k1,7078:16697424,9321780:265010 +k1,7078:17723962,9321780:265010 +k1,7078:18403748,9321780:264943 +k1,7078:19860203,9321780:265010 +k1,7078:21827183,9321780:265010 +k1,7078:25168453,9321780:265010 +k1,7078:28505790,9321780:265009 +k1,7078:29762360,9321780:265010 +k1,7078:31966991,9321780:0 +) +(1,7079:7246811,10163268:24720180,513147,134348 +k1,7078:9937283,10163268:186341 +k1,7078:13068811,10163268:186340 +k1,7078:14643860,10163268:186341 +k1,7078:19050064,10163268:186341 +k1,7078:21081242,10163268:186340 +k1,7078:21926875,10163268:186341 +k1,7078:24929298,10163268:186341 +k1,7078:26400144,10163268:186340 +k1,7078:29472691,10163268:186341 +k1,7078:31966991,10163268:0 +) +(1,7079:7246811,11004756:24720180,505283,134348 +k1,7078:9582776,11004756:246022 +k1,7078:12479729,11004756:246022 +k1,7078:15211533,11004756:246023 +k1,7078:18852975,11004756:246022 +k1,7078:20521784,11004756:246022 +k1,7078:21123666,11004756:246022 +k1,7078:22770847,11004756:246022 +k1,7078:24697213,11004756:246023 +k1,7078:26227741,11004756:246022 +k1,7078:30048097,11004756:246022 +k1,7078:31966991,11004756:0 +) +(1,7079:7246811,11846244:24720180,513147,134348 +k1,7078:8078463,11846244:215614 +k1,7078:9313161,11846244:215613 +k1,7078:11373613,11846244:215614 +k1,7078:12457578,11846244:215613 +k1,7078:14335185,11846244:215614 +k1,7078:15747485,11846244:215613 +k1,7078:17684074,11846244:215614 +k1,7078:19137662,11846244:215613 +k1,7078:20012568,11846244:215614 +k1,7078:24545038,11846244:215613 +k1,7078:26942346,11846244:215614 +k1,7078:28177044,11846244:215613 +k1,7078:30073001,11846244:215614 +k1,7078:30947906,11846244:215613 +k1,7078:31966991,11846244:0 +) +(1,7079:7246811,12687732:24720180,513147,134348 +k1,7078:8903914,12687732:211379 +k1,7078:9646790,12687732:211379 +k1,7078:10509597,12687732:211379 +k1,7078:12073638,12687732:211378 +k1,7078:13304102,12687732:211379 +k1,7078:17519731,12687732:211379 +k1,7078:18413995,12687732:211379 +k1,7078:20827384,12687732:211379 +k1,7078:23291891,12687732:211379 +k1,7078:26386853,12687732:211378 +k1,7078:27532775,12687732:211379 +k1,7078:28403446,12687732:211379 +k1,7078:30399370,12687732:211379 +k1,7078:31966991,12687732:0 +) +(1,7079:7246811,13529220:24720180,513147,126483 +k1,7078:8530849,13529220:264953 +k1,7078:9992489,13529220:264953 +k1,7078:11682849,13529220:264952 +k1,7078:13607174,13529220:264953 +k1,7078:14531419,13529220:264953 +k1,7078:15815457,13529220:264953 +k1,7078:19330340,13529220:264953 +k1,7078:22529994,13529220:264952 +k1,7078:23410985,13529220:264953 +k1,7078:25373320,13529220:264953 +k1,7078:27336311,13529220:264953 +k1,7078:28469615,13529220:264952 +k1,7078:30201919,13529220:264953 +k1,7078:31118300,13529220:264953 +k1,7079:31966991,13529220:0 +) +(1,7079:7246811,14370708:24720180,513147,134348 +k1,7078:8820549,14370708:192894 +k1,7078:9369304,14370708:192895 +k1,7078:13033640,14370708:192894 +k1,7078:14961928,14370708:192895 +k1,7078:16173907,14370708:192894 +k1,7078:18020274,14370708:192894 +k1,7078:20058007,14370708:192895 +k1,7078:20910193,14370708:192894 +k1,7078:26138874,14370708:192895 +k1,7078:28516083,14370708:192894 +k1,7078:29577330,14370708:192895 +k1,7078:30874506,14370708:192894 +k1,7079:31966991,14370708:0 +) +(1,7079:7246811,15212196:24720180,505283,134348 +(1,7078:7246811,15212196:0,452978,115847 +r1,7079:10770483,15212196:3523672,568825,115847 +k1,7078:7246811,15212196:-3523672 +) +(1,7078:7246811,15212196:3523672,452978,115847 +k1,7078:7246811,15212196:3277 +h1,7078:10767206,15212196:0,411205,112570 +) +k1,7078:10980160,15212196:209677 +k1,7078:12583788,15212196:209677 +k1,7078:13564169,15212196:209678 +k1,7078:16570267,15212196:209677 +k1,7078:19010134,15212196:209677 +k1,7078:19905973,15212196:209677 +k1,7078:20886353,15212196:209677 +k1,7078:24168358,15212196:209677 +k1,7078:25029464,15212196:209678 +k1,7078:26809384,15212196:209677 +k1,7078:28038146,15212196:209677 +k1,7078:31315563,15212196:209677 +k1,7078:31966991,15212196:0 +) +(1,7079:7246811,16053684:24720180,505283,134348 +g1,7078:8465125,16053684 +g1,7078:10317827,16053684 +g1,7078:12205263,16053684 +g1,7078:13020530,16053684 +g1,7078:14238844,16053684 +g1,7078:17880679,16053684 +g1,7078:22713959,16053684 +k1,7079:31966991,16053684:6139417 +g1,7079:31966991,16053684 +) +] +) +] +r1,7079:32583029,16777856:26214,10890761,0 +) +] +) +) +g1,7079:32583029,16188032 +) +h1,7079:6630773,16804070:0,0,0 +v1,7082:6630773,17938221:0,393216,0 +(1,7083:6630773,25469789:25952256,7924784,616038 +g1,7083:6630773,25469789 +(1,7083:6630773,25469789:25952256,7924784,616038 +(1,7083:6630773,26085827:25952256,8540822,0 +[1,7083:6630773,26085827:25952256,8540822,0 +(1,7083:6630773,26059613:25952256,8488394,0 +r1,7083:6656987,26059613:26214,8488394,0 +[1,7083:6656987,26059613:25899828,8488394,0 +(1,7083:6656987,25469789:25899828,7308746,0 +[1,7083:7246811,25469789:24720180,7308746,0 +(1,7083:7246811,19445025:24720180,1283982,196608 +(1,7082:7246811,19445025:0,1283982,196608 +r1,7083:9812056,19445025:2565245,1480590,196608 +k1,7082:7246811,19445025:-2565245 +) +(1,7082:7246811,19445025:2565245,1283982,196608 +) +k1,7082:10133208,19445025:321152 +k1,7082:12890333,19445025:321152 +k1,7082:14230570,19445025:321152 +k1,7082:17738082,19445025:321152 +(1,7082:17738082,19445025:0,452978,115847 +r1,7083:20558331,19445025:2820249,568825,115847 +k1,7082:17738082,19445025:-2820249 +) +(1,7082:17738082,19445025:2820249,452978,115847 +k1,7082:17738082,19445025:3277 +h1,7082:20555054,19445025:0,411205,112570 +) +k1,7082:20879483,19445025:321152 +k1,7082:21962162,19445025:321151 +k1,7082:23888946,19445025:321152 +k1,7082:26441599,19445025:321152 +k1,7082:28692131,19445025:321152 +k1,7082:31141237,19445025:321152 +k1,7083:31966991,19445025:0 +) +(1,7083:7246811,20286513:24720180,505283,134348 +k1,7082:9973633,20286513:440271 +k1,7082:11065332,20286513:440271 +k1,7082:12524687,20286513:440270 +k1,7082:14975603,20286513:440271 +k1,7082:18381378,20286513:440271 +k1,7082:20994823,20286513:440271 +k1,7082:22454179,20286513:440271 +k1,7082:25628612,20286513:440271 +k1,7082:27141051,20286513:440270 +k1,7082:28911703,20286513:440271 +k1,7083:31966991,20286513:0 +) +(1,7083:7246811,21128001:24720180,513147,134348 +(1,7082:7246811,21128001:0,452978,115847 +r1,7083:12529042,21128001:5282231,568825,115847 +k1,7082:7246811,21128001:-5282231 +) +(1,7082:7246811,21128001:5282231,452978,115847 +k1,7082:7246811,21128001:3277 +h1,7082:12525765,21128001:0,411205,112570 +) +k1,7082:12958024,21128001:428982 +k1,7082:17323754,21128001:428982 +k1,7082:19795493,21128001:428982 +k1,7082:21676098,21128001:428983 +k1,7082:23204774,21128001:428982 +k1,7082:24285184,21128001:428982 +(1,7082:24285184,21128001:0,452978,115847 +r1,7083:27105433,21128001:2820249,568825,115847 +k1,7082:24285184,21128001:-2820249 +) +(1,7082:24285184,21128001:2820249,452978,115847 +k1,7082:24285184,21128001:3277 +h1,7082:27102156,21128001:0,411205,112570 +) +k1,7082:27708085,21128001:428982 +k1,7082:29839037,21128001:428982 +k1,7082:31966991,21128001:0 +) +(1,7083:7246811,21969489:24720180,513147,115847 +k1,7082:10532537,21969489:386413 +k1,7082:11570378,21969489:386413 +k1,7082:12975876,21969489:386413 +k1,7082:15372934,21969489:386413 +k1,7082:18724851,21969489:386413 +k1,7082:20572717,21969489:386413 +k1,7082:23371510,21969489:386413 +(1,7082:23371510,21969489:0,452978,115847 +r1,7083:28653741,21969489:5282231,568825,115847 +k1,7082:23371510,21969489:-5282231 +) +(1,7082:23371510,21969489:5282231,452978,115847 +k1,7082:23371510,21969489:3277 +h1,7082:28650464,21969489:0,411205,112570 +) +k1,7082:29213824,21969489:386413 +k1,7082:31966991,21969489:0 +) +(1,7083:7246811,22810977:24720180,513147,126483 +k1,7082:8348929,22810977:340590 +(1,7082:8348929,22810977:0,452978,115847 +r1,7083:15741431,22810977:7392502,568825,115847 +k1,7082:8348929,22810977:-7392502 +) +(1,7082:8348929,22810977:7392502,452978,115847 +g1,7082:12572748,22810977 +h1,7082:15738154,22810977:0,411205,112570 +) +k1,7082:16255691,22810977:340590 +k1,7082:17787726,22810977:340590 +k1,7082:19562245,22810977:340591 +k1,7082:22315215,22810977:340590 +(1,7082:22315215,22810977:0,452978,115847 +r1,7083:27597446,22810977:5282231,568825,115847 +k1,7082:22315215,22810977:-5282231 +) +(1,7082:22315215,22810977:5282231,452978,115847 +k1,7082:22315215,22810977:3277 +h1,7082:27594169,22810977:0,411205,112570 +) +k1,7082:28111706,22810977:340590 +k1,7082:31205463,22810977:340590 +k1,7083:31966991,22810977:0 +) +(1,7083:7246811,23652465:24720180,513147,134348 +(1,7082:7246811,23652465:0,452978,115847 +r1,7083:10067060,23652465:2820249,568825,115847 +k1,7082:7246811,23652465:-2820249 +) +(1,7082:7246811,23652465:2820249,452978,115847 +k1,7082:7246811,23652465:3277 +h1,7082:10063783,23652465:0,411205,112570 +) +k1,7082:10280150,23652465:213090 +k1,7082:11684685,23652465:213090 +k1,7082:14658150,23652465:213089 +k1,7082:15890325,23652465:213090 +k1,7082:18435841,23652465:213090 +k1,7082:20822105,23652465:213090 +k1,7082:22054280,23652465:213090 +k1,7082:24827862,23652465:213090 +k1,7082:26776344,23652465:213089 +k1,7082:27345294,23652465:213090 +k1,7082:30320727,23652465:213090 +k1,7083:31966991,23652465:0 +) +(1,7083:7246811,24493953:24720180,505283,126483 +k1,7082:9083472,24493953:197606 +k1,7082:9897116,24493953:197606 +k1,7082:11113807,24493953:197606 +k1,7082:12411108,24493953:197607 +k1,7082:13260142,24493953:197606 +(1,7082:13260142,24493953:0,452978,115847 +r1,7083:16783814,24493953:3523672,568825,115847 +k1,7082:13260142,24493953:-3523672 +) +(1,7082:13260142,24493953:3523672,452978,115847 +k1,7082:13260142,24493953:3277 +h1,7082:16780537,24493953:0,411205,112570 +) +k1,7082:17155090,24493953:197606 +k1,7082:19782771,24493953:197606 +k1,7082:20999462,24493953:197606 +k1,7082:23370242,24493953:197606 +k1,7082:24759294,24493953:197607 +k1,7082:27267044,24493953:197606 +k1,7082:28795031,24493953:197606 +(1,7082:28795031,24493953:0,452978,115847 +r1,7083:31966991,24493953:3171960,568825,115847 +k1,7082:28795031,24493953:-3171960 +) +(1,7082:28795031,24493953:3171960,452978,115847 +k1,7082:28795031,24493953:3277 +h1,7082:31963714,24493953:0,411205,112570 +) +k1,7082:31966991,24493953:0 +) +(1,7083:7246811,25335441:24720180,513147,134348 +g1,7082:9555644,25335441 +g1,7082:10773958,25335441 +g1,7082:14368607,25335441 +g1,7082:15227128,25335441 +g1,7082:20462143,25335441 +g1,7082:23477454,25335441 +g1,7082:24292721,25335441 +k1,7083:31966991,25335441:7085757 +g1,7083:31966991,25335441 +) +] +) +] +r1,7083:32583029,26059613:26214,8488394,0 +) +] +) +) +g1,7083:32583029,25469789 +) +h1,7083:6630773,26085827:0,0,0 +(1,7085:6630773,28893395:25952256,32768,229376 +(1,7085:6630773,28893395:0,32768,229376 +(1,7085:6630773,28893395:5505024,32768,229376 +r1,7085:12135797,28893395:5505024,262144,229376 +) +k1,7085:6630773,28893395:-5505024 +) +(1,7085:6630773,28893395:25952256,32768,0 +r1,7085:32583029,28893395:25952256,32768,0 +) +) +(1,7085:6630773,30497723:25952256,606339,161218 +(1,7085:6630773,30497723:1974731,575668,0 +g1,7085:6630773,30497723 +g1,7085:8605504,30497723 +) +g1,7085:12866393,30497723 +k1,7085:32583029,30497723:16097476 +g1,7085:32583029,30497723 +) +(1,7090:6630773,31732427:25952256,513147,134348 +k1,7089:7472801,31732427:214193 +k1,7089:10353000,31732427:214194 +k1,7089:11218621,31732427:214193 +k1,7089:14009034,31732427:214193 +k1,7089:16233873,31732427:214194 +k1,7089:18015687,31732427:214193 +k1,7089:18585740,31732427:214193 +k1,7089:22201908,31732427:214194 +k1,7089:26371199,31732427:214193 +k1,7089:27453744,31732427:214193 +k1,7089:28772220,31732427:214194 +k1,7089:30572384,31732427:214193 +k1,7089:32583029,31732427:0 +) +(1,7090:6630773,32573915:25952256,513147,134348 +k1,7089:8347925,32573915:149531 +k1,7089:9268160,32573915:149532 +k1,7089:11908714,32573915:149531 +k1,7089:12992788,32573915:149531 +k1,7089:13825205,32573915:149532 +k1,7089:17061482,32573915:149531 +k1,7089:17870305,32573915:149531 +k1,7089:20204152,32573915:149532 +k1,7089:21307232,32573915:149531 +k1,7089:22556457,32573915:149531 +k1,7089:23909230,32573915:149532 +k1,7089:27133055,32573915:149531 +k1,7089:32583029,32573915:0 +) +(1,7090:6630773,33415403:25952256,505283,134348 +k1,7089:9896909,33415403:170215 +k1,7089:11263810,33415403:170214 +k1,7089:13350298,33415403:170215 +k1,7089:14624795,33415403:170215 +k1,7089:15542775,33415403:170214 +k1,7089:17290442,33415403:170215 +k1,7089:19316636,33415403:170214 +k1,7089:20880802,33415403:170215 +k1,7089:24988420,33415403:170215 +k1,7089:25841519,33415403:170214 +k1,7089:28471956,33415403:170215 +k1,7089:32583029,33415403:0 +) +(1,7090:6630773,34256891:25952256,513147,134348 +k1,7089:7526432,34256891:267824 +k1,7089:8813340,34256891:267823 +k1,7089:11322495,34256891:267824 +k1,7089:13131070,34256891:267824 +k1,7089:14165010,34256891:267824 +k1,7089:16349106,34256891:267823 +k1,7089:17608490,34256891:267824 +k1,7089:19643820,34256891:267824 +k1,7089:21479265,34256891:267824 +k1,7089:22766173,34256891:267823 +k1,7089:24916846,34256891:267824 +k1,7089:26119213,34256891:267824 +k1,7089:27046329,34256891:267824 +k1,7089:29498467,34256891:267823 +k1,7089:32124932,34256891:267824 +k1,7089:32583029,34256891:0 +) +(1,7090:6630773,35098379:25952256,513147,134348 +k1,7089:9478353,35098379:217620 +k1,7089:10643625,35098379:217621 +k1,7089:11217105,35098379:217620 +k1,7089:13129487,35098379:217621 +k1,7089:15027450,35098379:217620 +k1,7089:15896498,35098379:217620 +k1,7089:16861885,35098379:217621 +k1,7089:19080319,35098379:217620 +k1,7089:20948136,35098379:217620 +k1,7089:22608204,35098379:217621 +k1,7089:24489783,35098379:217620 +k1,7089:25335239,35098379:217621 +k1,7089:26571944,35098379:217620 +k1,7089:29055144,35098379:217620 +k1,7089:30639846,35098379:217621 +k1,7089:31516758,35098379:217620 +k1,7089:32583029,35098379:0 +) +(1,7090:6630773,35939867:25952256,513147,134348 +k1,7089:8610222,35939867:244056 +k1,7089:12965351,35939867:244056 +k1,7089:16870903,35939867:244056 +k1,7089:19031232,35939867:244056 +k1,7089:20266848,35939867:244056 +k1,7089:22278410,35939867:244056 +k1,7089:24090087,35939867:244056 +k1,7089:25353228,35939867:244056 +k1,7089:27607929,35939867:244056 +k1,7089:31069803,35939867:244056 +k1,7089:32583029,35939867:0 +) +(1,7090:6630773,36781355:25952256,505283,134348 +g1,7089:9827619,36781355 +g1,7089:11045933,36781355 +g1,7089:13255807,36781355 +g1,7089:15690469,36781355 +g1,7089:16505736,36781355 +g1,7089:18738547,36781355 +k1,7090:32583029,36781355:11754539 +g1,7090:32583029,36781355 +) +v1,7092:6630773,37740196:0,393216,0 +(1,7112:6630773,43534522:25952256,6187542,196608 +g1,7112:6630773,43534522 +g1,7112:6630773,43534522 +g1,7112:6434165,43534522 +(1,7112:6434165,43534522:0,6187542,196608 +r1,7112:32779637,43534522:26345472,6384150,196608 +k1,7112:6434165,43534522:-26345472 +) +(1,7112:6434165,43534522:26345472,6187542,196608 +[1,7112:6630773,43534522:25952256,5990934,0 +(1,7094:6630773,37947814:25952256,404226,101187 +(1,7093:6630773,37947814:0,0,0 +g1,7093:6630773,37947814 +g1,7093:6630773,37947814 +g1,7093:6303093,37947814 +(1,7093:6303093,37947814:0,0,0 +) +g1,7093:6630773,37947814 +) +k1,7094:6630773,37947814:0 +g1,7094:9476085,37947814 +g1,7094:10108377,37947814 +h1,7094:12637542,37947814:0,0,0 +k1,7094:32583030,37947814:19945488 +g1,7094:32583030,37947814 +) +(1,7099:6630773,38679528:25952256,404226,76021 +(1,7096:6630773,38679528:0,0,0 +g1,7096:6630773,38679528 +g1,7096:6630773,38679528 +g1,7096:6303093,38679528 +(1,7096:6303093,38679528:0,0,0 +) +g1,7096:6630773,38679528 +) +k1,7099:7565503,38679528:302439 +k1,7099:7867943,38679528:302440 +k1,7099:9118819,38679528:302439 +k1,7099:10369695,38679528:302439 +k1,7099:11620571,38679528:302439 +k1,7099:12871448,38679528:302440 +k1,7099:14122324,38679528:302439 +k1,7099:15373200,38679528:302439 +k1,7099:16624077,38679528:302440 +k1,7099:17874953,38679528:302439 +k1,7099:19125829,38679528:302439 +k1,7099:20376705,38679528:302439 +k1,7099:21627582,38679528:302440 +k1,7099:22878458,38679528:302439 +k1,7099:24129334,38679528:302439 +k1,7099:25380211,38679528:302440 +k1,7099:26631087,38679528:302439 +k1,7099:27881963,38679528:302439 +k1,7099:29132839,38679528:302439 +k1,7099:30383716,38679528:302440 +k1,7099:31634592,38679528:302439 +h1,7099:32583029,38679528:0,0,0 +k1,7099:32583029,38679528:0 +k1,7099:32583029,38679528:0 +) +(1,7099:6630773,39345706:25952256,404226,82312 +h1,7099:6630773,39345706:0,0,0 +g1,7099:7579210,39345706 +g1,7099:9159939,39345706 +g1,7099:10424522,39345706 +g1,7099:11689105,39345706 +g1,7099:12953688,39345706 +g1,7099:14218271,39345706 +g1,7099:15482854,39345706 +g1,7099:16747437,39345706 +h1,7099:17695874,39345706:0,0,0 +k1,7099:32583029,39345706:14887155 +g1,7099:32583029,39345706 +) +(1,7101:6630773,40667244:25952256,404226,101187 +(1,7100:6630773,40667244:0,0,0 +g1,7100:6630773,40667244 +g1,7100:6630773,40667244 +g1,7100:6303093,40667244 +(1,7100:6303093,40667244:0,0,0 +) +g1,7100:6630773,40667244 +) +k1,7101:6630773,40667244:0 +g1,7101:9476085,40667244 +g1,7101:10108377,40667244 +g1,7101:12953689,40667244 +g1,7101:14534418,40667244 +g1,7101:15166710,40667244 +h1,7101:16115147,40667244:0,0,0 +k1,7101:32583029,40667244:16467882 +g1,7101:32583029,40667244 +) +(1,7105:6630773,41398958:25952256,404226,82312 +(1,7103:6630773,41398958:0,0,0 +g1,7103:6630773,41398958 +g1,7103:6630773,41398958 +g1,7103:6303093,41398958 +(1,7103:6303093,41398958:0,0,0 +) +g1,7103:6630773,41398958 +) +g1,7105:7579210,41398958 +g1,7105:7895356,41398958 +g1,7105:9159939,41398958 +g1,7105:10424522,41398958 +g1,7105:11689105,41398958 +g1,7105:12953688,41398958 +g1,7105:14218271,41398958 +g1,7105:15482854,41398958 +g1,7105:16747437,41398958 +g1,7105:18012020,41398958 +g1,7105:19276603,41398958 +g1,7105:20541186,41398958 +g1,7105:21805769,41398958 +g1,7105:23070352,41398958 +h1,7105:24018789,41398958:0,0,0 +k1,7105:32583029,41398958:8564240 +g1,7105:32583029,41398958 +) +(1,7107:6630773,42720496:25952256,404226,101187 +(1,7106:6630773,42720496:0,0,0 +g1,7106:6630773,42720496 +g1,7106:6630773,42720496 +g1,7106:6303093,42720496 +(1,7106:6303093,42720496:0,0,0 +) +g1,7106:6630773,42720496 +) +k1,7107:6630773,42720496:0 +g1,7107:9476085,42720496 +g1,7107:10108377,42720496 +g1,7107:12953689,42720496 +g1,7107:14534418,42720496 +g1,7107:15166710,42720496 +g1,7107:16431293,42720496 +g1,7107:18960459,42720496 +g1,7107:19592751,42720496 +h1,7107:21173480,42720496:0,0,0 +k1,7107:32583029,42720496:11409549 +g1,7107:32583029,42720496 +) +(1,7111:6630773,43452210:25952256,404226,82312 +(1,7109:6630773,43452210:0,0,0 +g1,7109:6630773,43452210 +g1,7109:6630773,43452210 +g1,7109:6303093,43452210 +(1,7109:6303093,43452210:0,0,0 +) +g1,7109:6630773,43452210 +) +g1,7111:7579210,43452210 +g1,7111:7895356,43452210 +g1,7111:9159939,43452210 +g1,7111:10424522,43452210 +g1,7111:11689105,43452210 +g1,7111:12953688,43452210 +g1,7111:14218271,43452210 +g1,7111:15482854,43452210 +g1,7111:16747437,43452210 +g1,7111:18012020,43452210 +g1,7111:19276603,43452210 +g1,7111:20541186,43452210 +g1,7111:21805769,43452210 +g1,7111:23070352,43452210 +h1,7111:24018789,43452210:0,0,0 +k1,7111:32583029,43452210:8564240 +g1,7111:32583029,43452210 +) +] +) +g1,7112:32583029,43534522 +g1,7112:6630773,43534522 +g1,7112:6630773,43534522 +g1,7112:32583029,43534522 +g1,7112:32583029,43534522 +) +h1,7112:6630773,43731130:0,0,0 +(1,7117:6630773,44865281:25952256,513147,134348 +h1,7115:6630773,44865281:983040,0,0 +k1,7115:8535845,44865281:294197 +k1,7115:11541266,44865281:294197 +k1,7115:16871249,44865281:294197 +k1,7115:20087696,44865281:294197 +k1,7115:20913390,44865281:294197 +k1,7115:23184809,44865281:294198 +k1,7115:25177044,44865281:294197 +k1,7115:26339593,44865281:294197 +k1,7115:28164056,44865281:294197 +k1,7115:29109681,44865281:294197 +k1,7115:31224468,44865281:294197 +k1,7117:32583029,44865281:0 +) +(1,7117:6630773,45706769:25952256,513147,134348 +k1,7115:8096337,45706769:200719 +k1,7115:8956348,45706769:200719 +k1,7115:13402488,45706769:200718 +k1,7115:14874605,45706769:200719 +k1,7115:16568890,45706769:200719 +k1,7115:18136690,45706769:200719 +k1,7115:18868906,45706769:200719 +k1,7115:22066586,45706769:200719 +k1,7115:25742023,45706769:200718 +k1,7115:26594170,45706769:200719 +k1,7115:30964945,45706769:200719 +k1,7115:32583029,45706769:0 +) +] +(1,7117:32583029,45706769:0,0,0 +g1,7117:32583029,45706769 +) +) +] +(1,7117:6630773,47279633:25952256,0,0 +h1,7117:6630773,47279633:25952256,0,0 +) +] +h1,7117:4262630,4025873:0,0,0 +] +!24701 }133 -Input:999:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1000:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1001:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!269 +Input:995:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:996:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:997:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!285 {134 -[1,7156:4262630,47279633:28320399,43253760,0 -(1,7156:4262630,4025873:0,0,0 -[1,7156:-473657,4025873:25952256,0,0 -(1,7156:-473657,-710414:25952256,0,0 -h1,7156:-473657,-710414:0,0,0 -(1,7156:-473657,-710414:0,0,0 -(1,7156:-473657,-710414:0,0,0 -g1,7156:-473657,-710414 -(1,7156:-473657,-710414:65781,0,65781 -g1,7156:-407876,-710414 -[1,7156:-407876,-644633:0,0,0 +[1,7161:4262630,47279633:28320399,43253760,0 +(1,7161:4262630,4025873:0,0,0 +[1,7161:-473657,4025873:25952256,0,0 +(1,7161:-473657,-710414:25952256,0,0 +h1,7161:-473657,-710414:0,0,0 +(1,7161:-473657,-710414:0,0,0 +(1,7161:-473657,-710414:0,0,0 +g1,7161:-473657,-710414 +(1,7161:-473657,-710414:65781,0,65781 +g1,7161:-407876,-710414 +[1,7161:-407876,-644633:0,0,0 ] ) -k1,7156:-473657,-710414:-65781 +k1,7161:-473657,-710414:-65781 ) ) -k1,7156:25478599,-710414:25952256 -g1,7156:25478599,-710414 +k1,7161:25478599,-710414:25952256 +g1,7161:25478599,-710414 ) ] ) -[1,7156:6630773,47279633:25952256,43253760,0 -[1,7156:6630773,4812305:25952256,786432,0 -(1,7156:6630773,4812305:25952256,505283,11795 -(1,7156:6630773,4812305:25952256,505283,11795 -g1,7156:3078558,4812305 -[1,7156:3078558,4812305:0,0,0 -(1,7156:3078558,2439708:0,1703936,0 -k1,7156:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7156:2537886,2439708:1179648,16384,0 +[1,7161:6630773,47279633:25952256,43253760,0 +[1,7161:6630773,4812305:25952256,786432,0 +(1,7161:6630773,4812305:25952256,505283,11795 +(1,7161:6630773,4812305:25952256,505283,11795 +g1,7161:3078558,4812305 +[1,7161:3078558,4812305:0,0,0 +(1,7161:3078558,2439708:0,1703936,0 +k1,7161:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7161:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7156:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7161:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7156:3078558,4812305:0,0,0 -(1,7156:3078558,2439708:0,1703936,0 -g1,7156:29030814,2439708 -g1,7156:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7156:36151628,1915420:16384,1179648,0 +[1,7161:3078558,4812305:0,0,0 +(1,7161:3078558,2439708:0,1703936,0 +g1,7161:29030814,2439708 +g1,7161:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7161:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7156:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7161:37855564,2439708:1179648,16384,0 ) ) -k1,7156:3078556,2439708:-34777008 +k1,7161:3078556,2439708:-34777008 ) ] -[1,7156:3078558,4812305:0,0,0 -(1,7156:3078558,49800853:0,16384,2228224 -k1,7156:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7156:2537886,49800853:1179648,16384,0 +[1,7161:3078558,4812305:0,0,0 +(1,7161:3078558,49800853:0,16384,2228224 +k1,7161:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7161:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7156:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7161:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7156:3078558,4812305:0,0,0 -(1,7156:3078558,49800853:0,16384,2228224 -g1,7156:29030814,49800853 -g1,7156:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7156:36151628,51504789:16384,1179648,0 +[1,7161:3078558,4812305:0,0,0 +(1,7161:3078558,49800853:0,16384,2228224 +g1,7161:29030814,49800853 +g1,7161:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7161:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7156:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7161:37855564,49800853:1179648,16384,0 ) ) -k1,7156:3078556,49800853:-34777008 +k1,7161:3078556,49800853:-34777008 ) ] -g1,7156:6630773,4812305 -g1,7156:6630773,4812305 -g1,7156:10410889,4812305 -k1,7156:31387653,4812305:20976764 -) -) -] -[1,7156:6630773,45706769:25952256,40108032,0 -(1,7156:6630773,45706769:25952256,40108032,0 -(1,7156:6630773,45706769:0,0,0 -g1,7156:6630773,45706769 -) -[1,7156:6630773,45706769:25952256,40108032,0 -(1,7112:6630773,6254097:25952256,505283,134348 -k1,7110:7479698,6254097:232887 -k1,7110:8483288,6254097:232887 -k1,7110:12325243,6254097:232887 -k1,7110:13241014,6254097:232886 -k1,7110:16284740,6254097:232887 -k1,7110:19044040,6254097:232887 -k1,7110:19928355,6254097:232887 -k1,7110:23096600,6254097:232887 -k1,7110:23945525,6254097:232887 -k1,7110:24534272,6254097:232887 -k1,7110:27039947,6254097:232886 -k1,7110:29877235,6254097:232887 -k1,7110:31202607,6254097:232887 -k1,7110:31966991,6254097:232887 -k1,7110:32583029,6254097:0 -) -(1,7112:6630773,7095585:25952256,505283,134348 -k1,7110:11327665,7095585:187360 -k1,7110:12166454,7095585:187361 -k1,7110:15069626,7095585:187360 -k1,7110:18082898,7095585:187360 -k1,7110:18886297,7095585:187361 -k1,7110:22354389,7095585:187360 -k1,7110:25587862,7095585:187360 -k1,7110:27510616,7095585:187361 -k1,7110:30671344,7095585:187360 -k1,7112:32583029,7095585:0 -) -(1,7112:6630773,7937073:25952256,505283,7863 -g1,7110:9416708,7937073 -k1,7112:32583028,7937073:23166320 -g1,7112:32583028,7937073 -) -(1,7113:6630773,10744641:25952256,32768,229376 -(1,7113:6630773,10744641:0,32768,229376 -(1,7113:6630773,10744641:5505024,32768,229376 -r1,7113:12135797,10744641:5505024,262144,229376 -) -k1,7113:6630773,10744641:-5505024 -) -(1,7113:6630773,10744641:25952256,32768,0 -r1,7113:32583029,10744641:25952256,32768,0 -) -) -(1,7113:6630773,12348969:25952256,606339,14155 -(1,7113:6630773,12348969:1974731,575668,14155 -g1,7113:6630773,12348969 -g1,7113:8605504,12348969 -) -k1,7113:32583030,12348969:19510592 -g1,7113:32583030,12348969 -) -(1,7116:6630773,13583673:25952256,505283,126483 -k1,7115:8249512,13583673:153354 -k1,7115:11871031,13583673:153354 -k1,7115:15449296,13583673:153354 -k1,7115:16794095,13583673:153354 -k1,7115:21852819,13583673:153354 -k1,7115:24091529,13583673:153354 -k1,7115:28114129,13583673:153354 -k1,7115:29458928,13583673:153354 -k1,7115:32583029,13583673:0 -) -(1,7116:6630773,14425161:25952256,513147,126483 -k1,7115:9661158,14425161:245760 -k1,7115:10854569,14425161:245760 -k1,7115:12119414,14425161:245760 -k1,7115:15744210,14425161:245760 -k1,7115:16649262,14425161:245760 -k1,7115:17914106,14425161:245759 -k1,7115:20386779,14425161:245760 -k1,7115:24113156,14425161:245760 -k1,7115:26994119,14425161:245760 -k1,7115:28836336,14425161:245760 -k1,7115:29741388,14425161:245760 -k1,7115:32583029,14425161:0 -) -(1,7116:6630773,15266649:25952256,513147,134348 -k1,7115:7840896,15266649:218563 -k1,7115:10843427,15266649:218562 -k1,7115:11678028,15266649:218563 -k1,7115:13330518,15266649:218562 -k1,7115:14137594,15266649:218563 -k1,7115:15552843,15266649:218562 -k1,7115:18533749,15266649:218563 -k1,7115:21536936,15266649:218562 -k1,7115:22747059,15266649:218563 -k1,7115:25554293,15266649:218562 -k1,7115:26534384,15266649:218563 -k1,7115:29180400,15266649:218562 -k1,7115:32583029,15266649:0 -) -(1,7116:6630773,16108137:25952256,513147,134348 -k1,7115:7506287,16108137:224086 -k1,7115:8086233,16108137:224086 -k1,7115:10183339,16108137:224087 -k1,7115:13276591,16108137:224086 -k1,7115:15275392,16108137:224086 -k1,7115:18510202,16108137:224086 -k1,7115:21188612,16108137:224087 -k1,7115:21944195,16108137:224086 -k1,7115:24022950,16108137:224086 -k1,7115:25056406,16108137:224086 -k1,7115:26299577,16108137:224086 -k1,7115:28445835,16108137:224087 -k1,7115:30680566,16108137:224086 -k1,7115:31563944,16108137:224086 -k1,7115:32583029,16108137:0 -) -(1,7116:6630773,16949625:25952256,513147,134348 -k1,7115:11130713,16949625:254518 -k1,7115:16290601,16949625:254518 -k1,7115:19329743,16949625:254517 -k1,7115:20575821,16949625:254518 -k1,7115:22685008,16949625:254518 -k1,7115:23748896,16949625:254518 -k1,7115:25022499,16949625:254518 -k1,7115:28006592,16949625:254518 -k1,7115:28943994,16949625:254517 -k1,7115:30650134,16949625:254518 -k1,7115:31563944,16949625:254518 -k1,7115:32583029,16949625:0 -) -(1,7116:6630773,17791113:25952256,513147,126483 -k1,7115:11047972,17791113:171777 -k1,7115:12411194,17791113:171777 -k1,7115:16808077,17791113:171777 -k1,7115:18192925,17791113:171777 -k1,7115:20912087,17791113:171778 -k1,7115:21845392,17791113:171777 -k1,7115:26088921,17791113:171777 -k1,7115:27654649,17791113:171777 -k1,7115:30398714,17791113:171777 -k1,7116:32583029,17791113:0 -k1,7116:32583029,17791113:0 -) -(1,7118:6630773,18632601:25952256,513147,126483 -h1,7117:6630773,18632601:983040,0,0 -k1,7117:8843655,18632601:276293 -k1,7117:10426081,18632601:276293 -k1,7117:12078630,18632601:276293 -k1,7117:13546369,18632601:276294 -k1,7117:16191133,18632601:276293 -k1,7117:17486511,18632601:276293 -k1,7117:19152167,18632601:276293 -k1,7117:20363003,18632601:276293 -(1,7117:20363003,18632601:0,414482,115847 -r1,7117:21776404,18632601:1413401,530329,115847 -k1,7117:20363003,18632601:-1413401 -) -(1,7117:20363003,18632601:1413401,414482,115847 -k1,7117:20363003,18632601:3277 -h1,7117:21773127,18632601:0,411205,112570 -) -k1,7117:22052697,18632601:276293 -k1,7117:23896612,18632601:276294 -k1,7117:24587670,18632601:276215 -k1,7117:26749434,18632601:276293 -k1,7117:27894080,18632601:276294 -k1,7117:29302835,18632601:276293 -k1,7117:30671613,18632601:276293 -k1,7117:31563944,18632601:276293 -k1,7117:32583029,18632601:0 -) -(1,7118:6630773,19474089:25952256,513147,134348 -k1,7117:9750882,19474089:285022 -k1,7117:11910234,19474089:285022 -k1,7117:13584618,19474089:285021 -k1,7117:16131287,19474089:285022 -k1,7117:17075601,19474089:285022 -k1,7117:20174084,19474089:285022 -k1,7117:23450169,19474089:285022 -k1,7117:24682842,19474089:285022 -k1,7117:26275962,19474089:285021 -k1,7117:28922902,19474089:285022 -k1,7117:29820686,19474089:285022 -k1,7117:32583029,19474089:0 -) -(1,7118:6630773,20315577:25952256,505283,134348 -g1,7117:9026769,20315577 -g1,7117:9912160,20315577 -g1,7117:13201412,20315577 -g1,7117:14016679,20315577 -g1,7117:15234993,20315577 -g1,7117:20260293,20315577 -g1,7117:23243491,20315577 -g1,7117:24204248,20315577 -g1,7117:27048510,20315577 -(1,7117:27048510,20315577:0,452978,115847 -r1,7117:30572182,20315577:3523672,568825,115847 -k1,7117:27048510,20315577:-3523672 -) -(1,7117:27048510,20315577:3523672,452978,115847 -k1,7117:27048510,20315577:3277 -h1,7117:30568905,20315577:0,411205,112570 -) -k1,7118:32583029,20315577:1630083 -g1,7118:32583029,20315577 -) -v1,7120:6630773,21416329:0,393216,0 -(1,7125:6630773,22391312:25952256,1368199,196608 -g1,7125:6630773,22391312 -g1,7125:6630773,22391312 -g1,7125:6434165,22391312 -(1,7125:6434165,22391312:0,1368199,196608 -r1,7125:32779637,22391312:26345472,1564807,196608 -k1,7125:6434165,22391312:-26345472 -) -(1,7125:6434165,22391312:26345472,1368199,196608 -[1,7125:6630773,22391312:25952256,1171591,0 -(1,7122:6630773,21623947:25952256,404226,76021 -(1,7121:6630773,21623947:0,0,0 -g1,7121:6630773,21623947 -g1,7121:6630773,21623947 -g1,7121:6303093,21623947 -(1,7121:6303093,21623947:0,0,0 -) -g1,7121:6630773,21623947 -) -k1,7122:6630773,21623947:0 -h1,7122:9792230,21623947:0,0,0 -k1,7122:32583030,21623947:22790800 -g1,7122:32583030,21623947 -) -(1,7123:6630773,22290125:25952256,404226,101187 -h1,7123:6630773,22290125:0,0,0 -k1,7123:6630773,22290125:0 -h1,7123:9792230,22290125:0,0,0 -k1,7123:32583030,22290125:22790800 -g1,7123:32583030,22290125 -) -] -) -g1,7125:32583029,22391312 -g1,7125:6630773,22391312 -g1,7125:6630773,22391312 -g1,7125:32583029,22391312 -g1,7125:32583029,22391312 -) -h1,7125:6630773,22587920:0,0,0 -(1,7128:6630773,37102761:25952256,14014731,0 -k1,7128:12599879,37102761:5969106 -h1,7127:12599879,37102761:0,0,0 -(1,7127:12599879,37102761:14014044,14014731,0 -(1,7127:12599879,37102761:14014766,14014766,0 -(1,7127:12599879,37102761:14014766,14014766,0 -(1,7127:12599879,37102761:0,14014766,0 -(1,7127:12599879,37102761:0,18939904,0 -(1,7127:12599879,37102761:18939904,18939904,0 -) -k1,7127:12599879,37102761:-18939904 -) -) -g1,7127:26614645,37102761 -) -) -) -g1,7128:26613923,37102761 -k1,7128:32583029,37102761:5969106 -) -(1,7136:6630773,39194021:25952256,555811,12975 -(1,7136:6630773,39194021:2450326,527696,12975 -g1,7136:6630773,39194021 -g1,7136:9081099,39194021 -) -g1,7136:12750460,39194021 -$1,7136:12750460,39194021 -$1,7136:13239948,39194021 -k1,7136:32583028,39194021:19343080 -g1,7136:32583028,39194021 -) -(1,7141:6630773,40428725:25952256,513147,134348 -k1,7140:9666434,40428725:245793 -(1,7140:9666434,40428725:0,452978,115847 -r1,7140:11431547,40428725:1765113,568825,115847 -k1,7140:9666434,40428725:-1765113 -) -(1,7140:9666434,40428725:1765113,452978,115847 -k1,7140:9666434,40428725:3277 -h1,7140:11428270,40428725:0,411205,112570 -) -k1,7140:11677339,40428725:245792 -k1,7140:13027414,40428725:245793 -k1,7140:14020973,40428725:245793 -k1,7140:16134541,40428725:245792 -k1,7140:17774285,40428725:245793 -k1,7140:19192517,40428725:245793 -k1,7140:21746488,40428725:245793 -k1,7140:22651572,40428725:245792 -k1,7140:23916450,40428725:245793 -k1,7140:25815716,40428725:245793 -k1,7140:28074774,40428725:245792 -k1,7140:29006729,40428725:245793 -k1,7140:32583029,40428725:0 -) -(1,7141:6630773,41270213:25952256,513147,126483 -k1,7140:7474315,41270213:215707 -k1,7140:8709107,41270213:215707 -k1,7140:10291895,41270213:215707 -k1,7140:11166894,41270213:215707 -k1,7140:12401686,41270213:215707 -k1,7140:16085558,41270213:215707 -k1,7140:18808017,41270213:215707 -k1,7140:21651717,41270213:215706 -k1,7140:22735776,41270213:215707 -k1,7140:23766751,41270213:215707 -k1,7140:25048729,41270213:215707 -k1,7140:26794702,41270213:215707 -k1,7140:27661837,41270213:215707 -k1,7140:30307619,41270213:215707 -k1,7140:32583029,41270213:0 -) -(1,7141:6630773,42111701:25952256,513147,134348 -g1,7140:10232631,42111701 -g1,7140:11118022,42111701 -g1,7140:12520492,42111701 -g1,7140:15174044,42111701 -g1,7140:15904770,42111701 -g1,7140:17123084,42111701 -g1,7140:19587893,42111701 -k1,7141:32583029,42111701:11664755 -g1,7141:32583029,42111701 -) -v1,7143:6630773,43212454:0,393216,0 -(1,7150:6630773,44234099:25952256,1414861,196608 -g1,7150:6630773,44234099 -g1,7150:6630773,44234099 -g1,7150:6434165,44234099 -(1,7150:6434165,44234099:0,1414861,196608 -r1,7150:32779637,44234099:26345472,1611469,196608 -k1,7150:6434165,44234099:-26345472 -) -(1,7150:6434165,44234099:26345472,1414861,196608 -[1,7150:6630773,44234099:25952256,1218253,0 -(1,7145:6630773,43426364:25952256,410518,101187 -(1,7144:6630773,43426364:0,0,0 -g1,7144:6630773,43426364 -g1,7144:6630773,43426364 -g1,7144:6303093,43426364 -(1,7144:6303093,43426364:0,0,0 -) -g1,7144:6630773,43426364 -) -k1,7145:6630773,43426364:0 -g1,7145:8527648,43426364 -g1,7145:9159940,43426364 -g1,7145:12953689,43426364 -g1,7145:13585981,43426364 -g1,7145:14218273,43426364 -h1,7145:17379730,43426364:0,0,0 -k1,7145:32583029,43426364:15203299 -g1,7145:32583029,43426364 -) -(1,7149:6630773,44158078:25952256,404226,76021 -(1,7147:6630773,44158078:0,0,0 -g1,7147:6630773,44158078 -g1,7147:6630773,44158078 -g1,7147:6303093,44158078 -(1,7147:6303093,44158078:0,0,0 -) -g1,7147:6630773,44158078 -) -g1,7149:7579210,44158078 -g1,7149:8843793,44158078 -h1,7149:11689104,44158078:0,0,0 -k1,7149:32583028,44158078:20893924 -g1,7149:32583028,44158078 -) -] -) -g1,7150:32583029,44234099 -g1,7150:6630773,44234099 -g1,7150:6630773,44234099 -g1,7150:32583029,44234099 -g1,7150:32583029,44234099 -) -h1,7150:6630773,44430707:0,0,0 -(1,7154:6630773,45706769:25952256,513147,134348 -h1,7153:6630773,45706769:983040,0,0 -k1,7153:8382026,45706769:298320 -k1,7153:9211843,45706769:298320 -k1,7153:10795979,45706769:298320 -k1,7153:13724258,45706769:298319 -k1,7153:14674006,45706769:298320 -k1,7153:16409531,45706769:298320 -k1,7153:17063711,45706769:298320 -k1,7153:18751394,45706769:298320 -k1,7153:20926010,45706769:298320 -k1,7153:22114309,45706769:298320 -k1,7153:22768489,45706769:298320 -k1,7153:25361223,45706769:298319 -k1,7153:26345705,45706769:298320 -k1,7153:27663110,45706769:298320 -k1,7153:29337031,45706769:298320 -k1,7153:32583029,45706769:0 -) -] -(1,7156:32583029,45706769:0,0,0 -g1,7156:32583029,45706769 -) -) -] -(1,7156:6630773,47279633:25952256,0,0 -h1,7156:6630773,47279633:25952256,0,0 -) -] -h1,7156:4262630,4025873:0,0,0 +g1,7161:6630773,4812305 +g1,7161:6630773,4812305 +g1,7161:10410889,4812305 +k1,7161:31387653,4812305:20976764 +) +) +] +[1,7161:6630773,45706769:25952256,40108032,0 +(1,7161:6630773,45706769:25952256,40108032,0 +(1,7161:6630773,45706769:0,0,0 +g1,7161:6630773,45706769 +) +[1,7161:6630773,45706769:25952256,40108032,0 +(1,7117:6630773,6254097:25952256,505283,134348 +k1,7115:7479698,6254097:232887 +k1,7115:8483288,6254097:232887 +k1,7115:12325243,6254097:232887 +k1,7115:13241014,6254097:232886 +k1,7115:16284740,6254097:232887 +k1,7115:19044040,6254097:232887 +k1,7115:19928355,6254097:232887 +k1,7115:23096600,6254097:232887 +k1,7115:23945525,6254097:232887 +k1,7115:24534272,6254097:232887 +k1,7115:27039947,6254097:232886 +k1,7115:29877235,6254097:232887 +k1,7115:31202607,6254097:232887 +k1,7115:31966991,6254097:232887 +k1,7115:32583029,6254097:0 +) +(1,7117:6630773,7095585:25952256,505283,134348 +k1,7115:11327665,7095585:187360 +k1,7115:12166454,7095585:187361 +k1,7115:15069626,7095585:187360 +k1,7115:18082898,7095585:187360 +k1,7115:18886297,7095585:187361 +k1,7115:22354389,7095585:187360 +k1,7115:25587862,7095585:187360 +k1,7115:27510616,7095585:187361 +k1,7115:30671344,7095585:187360 +k1,7117:32583029,7095585:0 +) +(1,7117:6630773,7937073:25952256,505283,7863 +g1,7115:9416708,7937073 +k1,7117:32583028,7937073:23166320 +g1,7117:32583028,7937073 +) +(1,7118:6630773,10744641:25952256,32768,229376 +(1,7118:6630773,10744641:0,32768,229376 +(1,7118:6630773,10744641:5505024,32768,229376 +r1,7118:12135797,10744641:5505024,262144,229376 +) +k1,7118:6630773,10744641:-5505024 +) +(1,7118:6630773,10744641:25952256,32768,0 +r1,7118:32583029,10744641:25952256,32768,0 +) +) +(1,7118:6630773,12348969:25952256,606339,14155 +(1,7118:6630773,12348969:1974731,575668,14155 +g1,7118:6630773,12348969 +g1,7118:8605504,12348969 +) +k1,7118:32583030,12348969:19510592 +g1,7118:32583030,12348969 +) +(1,7121:6630773,13583673:25952256,505283,126483 +k1,7120:8249512,13583673:153354 +k1,7120:11871031,13583673:153354 +k1,7120:15449296,13583673:153354 +k1,7120:16794095,13583673:153354 +k1,7120:21852819,13583673:153354 +k1,7120:24091529,13583673:153354 +k1,7120:28114129,13583673:153354 +k1,7120:29458928,13583673:153354 +k1,7120:32583029,13583673:0 +) +(1,7121:6630773,14425161:25952256,513147,126483 +k1,7120:9661158,14425161:245760 +k1,7120:10854569,14425161:245760 +k1,7120:12119414,14425161:245760 +k1,7120:15744210,14425161:245760 +k1,7120:16649262,14425161:245760 +k1,7120:17914106,14425161:245759 +k1,7120:20386779,14425161:245760 +k1,7120:24113156,14425161:245760 +k1,7120:26994119,14425161:245760 +k1,7120:28836336,14425161:245760 +k1,7120:29741388,14425161:245760 +k1,7120:32583029,14425161:0 +) +(1,7121:6630773,15266649:25952256,513147,134348 +k1,7120:7840896,15266649:218563 +k1,7120:10843427,15266649:218562 +k1,7120:11678028,15266649:218563 +k1,7120:13330518,15266649:218562 +k1,7120:14137594,15266649:218563 +k1,7120:15552843,15266649:218562 +k1,7120:18533749,15266649:218563 +k1,7120:21536936,15266649:218562 +k1,7120:22747059,15266649:218563 +k1,7120:25554293,15266649:218562 +k1,7120:26534384,15266649:218563 +k1,7120:29180400,15266649:218562 +k1,7120:32583029,15266649:0 +) +(1,7121:6630773,16108137:25952256,513147,134348 +k1,7120:7506287,16108137:224086 +k1,7120:8086233,16108137:224086 +k1,7120:10183339,16108137:224087 +k1,7120:13276591,16108137:224086 +k1,7120:15275392,16108137:224086 +k1,7120:18510202,16108137:224086 +k1,7120:21188612,16108137:224087 +k1,7120:21944195,16108137:224086 +k1,7120:24022950,16108137:224086 +k1,7120:25056406,16108137:224086 +k1,7120:26299577,16108137:224086 +k1,7120:28445835,16108137:224087 +k1,7120:30680566,16108137:224086 +k1,7120:31563944,16108137:224086 +k1,7120:32583029,16108137:0 +) +(1,7121:6630773,16949625:25952256,513147,134348 +k1,7120:11130713,16949625:254518 +k1,7120:16290601,16949625:254518 +k1,7120:19329743,16949625:254517 +k1,7120:20575821,16949625:254518 +k1,7120:22685008,16949625:254518 +k1,7120:23748896,16949625:254518 +k1,7120:25022499,16949625:254518 +k1,7120:28006592,16949625:254518 +k1,7120:28943994,16949625:254517 +k1,7120:30650134,16949625:254518 +k1,7120:31563944,16949625:254518 +k1,7120:32583029,16949625:0 +) +(1,7121:6630773,17791113:25952256,513147,126483 +k1,7120:11047972,17791113:171777 +k1,7120:12411194,17791113:171777 +k1,7120:16808077,17791113:171777 +k1,7120:18192925,17791113:171777 +k1,7120:20912087,17791113:171778 +k1,7120:21845392,17791113:171777 +k1,7120:26088921,17791113:171777 +k1,7120:27654649,17791113:171777 +k1,7120:30398714,17791113:171777 +k1,7121:32583029,17791113:0 +k1,7121:32583029,17791113:0 +) +(1,7123:6630773,18632601:25952256,513147,126483 +h1,7122:6630773,18632601:983040,0,0 +k1,7122:8843655,18632601:276293 +k1,7122:10426081,18632601:276293 +k1,7122:12078630,18632601:276293 +k1,7122:13546369,18632601:276294 +k1,7122:16191133,18632601:276293 +k1,7122:17486511,18632601:276293 +k1,7122:19152167,18632601:276293 +k1,7122:20363003,18632601:276293 +(1,7122:20363003,18632601:0,414482,115847 +r1,7122:21776404,18632601:1413401,530329,115847 +k1,7122:20363003,18632601:-1413401 +) +(1,7122:20363003,18632601:1413401,414482,115847 +k1,7122:20363003,18632601:3277 +h1,7122:21773127,18632601:0,411205,112570 +) +k1,7122:22052697,18632601:276293 +k1,7122:23896612,18632601:276294 +k1,7122:24587670,18632601:276215 +k1,7122:26749434,18632601:276293 +k1,7122:27894080,18632601:276294 +k1,7122:29302835,18632601:276293 +k1,7122:30671613,18632601:276293 +k1,7122:31563944,18632601:276293 +k1,7122:32583029,18632601:0 +) +(1,7123:6630773,19474089:25952256,513147,134348 +k1,7122:9750882,19474089:285022 +k1,7122:11910234,19474089:285022 +k1,7122:13584618,19474089:285021 +k1,7122:16131287,19474089:285022 +k1,7122:17075601,19474089:285022 +k1,7122:20174084,19474089:285022 +k1,7122:23450169,19474089:285022 +k1,7122:24682842,19474089:285022 +k1,7122:26275962,19474089:285021 +k1,7122:28922902,19474089:285022 +k1,7122:29820686,19474089:285022 +k1,7122:32583029,19474089:0 +) +(1,7123:6630773,20315577:25952256,505283,134348 +g1,7122:9026769,20315577 +g1,7122:9912160,20315577 +g1,7122:13201412,20315577 +g1,7122:14016679,20315577 +g1,7122:15234993,20315577 +g1,7122:20260293,20315577 +g1,7122:23243491,20315577 +g1,7122:24204248,20315577 +g1,7122:27048510,20315577 +(1,7122:27048510,20315577:0,452978,115847 +r1,7122:30572182,20315577:3523672,568825,115847 +k1,7122:27048510,20315577:-3523672 +) +(1,7122:27048510,20315577:3523672,452978,115847 +k1,7122:27048510,20315577:3277 +h1,7122:30568905,20315577:0,411205,112570 +) +k1,7123:32583029,20315577:1630083 +g1,7123:32583029,20315577 +) +v1,7125:6630773,21416329:0,393216,0 +(1,7130:6630773,22391312:25952256,1368199,196608 +g1,7130:6630773,22391312 +g1,7130:6630773,22391312 +g1,7130:6434165,22391312 +(1,7130:6434165,22391312:0,1368199,196608 +r1,7130:32779637,22391312:26345472,1564807,196608 +k1,7130:6434165,22391312:-26345472 +) +(1,7130:6434165,22391312:26345472,1368199,196608 +[1,7130:6630773,22391312:25952256,1171591,0 +(1,7127:6630773,21623947:25952256,404226,76021 +(1,7126:6630773,21623947:0,0,0 +g1,7126:6630773,21623947 +g1,7126:6630773,21623947 +g1,7126:6303093,21623947 +(1,7126:6303093,21623947:0,0,0 +) +g1,7126:6630773,21623947 +) +k1,7127:6630773,21623947:0 +h1,7127:9792230,21623947:0,0,0 +k1,7127:32583030,21623947:22790800 +g1,7127:32583030,21623947 +) +(1,7128:6630773,22290125:25952256,404226,101187 +h1,7128:6630773,22290125:0,0,0 +k1,7128:6630773,22290125:0 +h1,7128:9792230,22290125:0,0,0 +k1,7128:32583030,22290125:22790800 +g1,7128:32583030,22290125 +) +] +) +g1,7130:32583029,22391312 +g1,7130:6630773,22391312 +g1,7130:6630773,22391312 +g1,7130:32583029,22391312 +g1,7130:32583029,22391312 +) +h1,7130:6630773,22587920:0,0,0 +(1,7133:6630773,37102761:25952256,14014731,0 +k1,7133:12599879,37102761:5969106 +h1,7132:12599879,37102761:0,0,0 +(1,7132:12599879,37102761:14014044,14014731,0 +(1,7132:12599879,37102761:14014766,14014766,0 +(1,7132:12599879,37102761:14014766,14014766,0 +(1,7132:12599879,37102761:0,14014766,0 +(1,7132:12599879,37102761:0,18939904,0 +(1,7132:12599879,37102761:18939904,18939904,0 +) +k1,7132:12599879,37102761:-18939904 +) +) +g1,7132:26614645,37102761 +) +) +) +g1,7133:26613923,37102761 +k1,7133:32583029,37102761:5969106 +) +(1,7141:6630773,39194021:25952256,555811,12975 +(1,7141:6630773,39194021:2450326,527696,12975 +g1,7141:6630773,39194021 +g1,7141:9081099,39194021 +) +g1,7141:12750460,39194021 +$1,7141:12750460,39194021 +$1,7141:13239948,39194021 +k1,7141:32583028,39194021:19343080 +g1,7141:32583028,39194021 +) +(1,7146:6630773,40428725:25952256,513147,134348 +k1,7145:9666434,40428725:245793 +(1,7145:9666434,40428725:0,452978,115847 +r1,7145:11431547,40428725:1765113,568825,115847 +k1,7145:9666434,40428725:-1765113 +) +(1,7145:9666434,40428725:1765113,452978,115847 +k1,7145:9666434,40428725:3277 +h1,7145:11428270,40428725:0,411205,112570 +) +k1,7145:11677339,40428725:245792 +k1,7145:13027414,40428725:245793 +k1,7145:14020973,40428725:245793 +k1,7145:16134541,40428725:245792 +k1,7145:17774285,40428725:245793 +k1,7145:19192517,40428725:245793 +k1,7145:21746488,40428725:245793 +k1,7145:22651572,40428725:245792 +k1,7145:23916450,40428725:245793 +k1,7145:25815716,40428725:245793 +k1,7145:28074774,40428725:245792 +k1,7145:29006729,40428725:245793 +k1,7145:32583029,40428725:0 +) +(1,7146:6630773,41270213:25952256,513147,126483 +k1,7145:7474315,41270213:215707 +k1,7145:8709107,41270213:215707 +k1,7145:10291895,41270213:215707 +k1,7145:11166894,41270213:215707 +k1,7145:12401686,41270213:215707 +k1,7145:16085558,41270213:215707 +k1,7145:18808017,41270213:215707 +k1,7145:21651717,41270213:215706 +k1,7145:22735776,41270213:215707 +k1,7145:23766751,41270213:215707 +k1,7145:25048729,41270213:215707 +k1,7145:26794702,41270213:215707 +k1,7145:27661837,41270213:215707 +k1,7145:30307619,41270213:215707 +k1,7145:32583029,41270213:0 +) +(1,7146:6630773,42111701:25952256,513147,134348 +g1,7145:10232631,42111701 +g1,7145:11118022,42111701 +g1,7145:12520492,42111701 +g1,7145:15174044,42111701 +g1,7145:15904770,42111701 +g1,7145:17123084,42111701 +g1,7145:19587893,42111701 +k1,7146:32583029,42111701:11664755 +g1,7146:32583029,42111701 +) +v1,7148:6630773,43212454:0,393216,0 +(1,7155:6630773,44234099:25952256,1414861,196608 +g1,7155:6630773,44234099 +g1,7155:6630773,44234099 +g1,7155:6434165,44234099 +(1,7155:6434165,44234099:0,1414861,196608 +r1,7155:32779637,44234099:26345472,1611469,196608 +k1,7155:6434165,44234099:-26345472 +) +(1,7155:6434165,44234099:26345472,1414861,196608 +[1,7155:6630773,44234099:25952256,1218253,0 +(1,7150:6630773,43426364:25952256,410518,101187 +(1,7149:6630773,43426364:0,0,0 +g1,7149:6630773,43426364 +g1,7149:6630773,43426364 +g1,7149:6303093,43426364 +(1,7149:6303093,43426364:0,0,0 +) +g1,7149:6630773,43426364 +) +k1,7150:6630773,43426364:0 +g1,7150:8527648,43426364 +g1,7150:9159940,43426364 +g1,7150:12953689,43426364 +g1,7150:13585981,43426364 +g1,7150:14218273,43426364 +h1,7150:17379730,43426364:0,0,0 +k1,7150:32583029,43426364:15203299 +g1,7150:32583029,43426364 +) +(1,7154:6630773,44158078:25952256,404226,76021 +(1,7152:6630773,44158078:0,0,0 +g1,7152:6630773,44158078 +g1,7152:6630773,44158078 +g1,7152:6303093,44158078 +(1,7152:6303093,44158078:0,0,0 +) +g1,7152:6630773,44158078 +) +g1,7154:7579210,44158078 +g1,7154:8843793,44158078 +h1,7154:11689104,44158078:0,0,0 +k1,7154:32583028,44158078:20893924 +g1,7154:32583028,44158078 +) +] +) +g1,7155:32583029,44234099 +g1,7155:6630773,44234099 +g1,7155:6630773,44234099 +g1,7155:32583029,44234099 +g1,7155:32583029,44234099 +) +h1,7155:6630773,44430707:0,0,0 +(1,7159:6630773,45706769:25952256,513147,134348 +h1,7158:6630773,45706769:983040,0,0 +k1,7158:8382026,45706769:298320 +k1,7158:9211843,45706769:298320 +k1,7158:10795979,45706769:298320 +k1,7158:13724258,45706769:298319 +k1,7158:14674006,45706769:298320 +k1,7158:16409531,45706769:298320 +k1,7158:17063711,45706769:298320 +k1,7158:18751394,45706769:298320 +k1,7158:20926010,45706769:298320 +k1,7158:22114309,45706769:298320 +k1,7158:22768489,45706769:298320 +k1,7158:25361223,45706769:298319 +k1,7158:26345705,45706769:298320 +k1,7158:27663110,45706769:298320 +k1,7158:29337031,45706769:298320 +k1,7158:32583029,45706769:0 +) +] +(1,7161:32583029,45706769:0,0,0 +g1,7161:32583029,45706769 +) +) +] +(1,7161:6630773,47279633:25952256,0,0 +h1,7161:6630773,47279633:25952256,0,0 +) +] +h1,7161:4262630,4025873:0,0,0 ] !14950 }134 -Input:1002:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1003:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1004:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1005:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1006:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1007:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1008:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1009:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1010:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1011:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1012:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1013:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1014:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1015:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1016:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1017:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1018:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1474 +Input:998:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:999:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1000:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1001:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1002:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1003:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1004:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1005:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1006:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1007:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1008:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1009:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1010:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1011:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1012:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1013:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1014:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1574 {135 -[1,7230:4262630,47279633:28320399,43253760,0 -(1,7230:4262630,4025873:0,0,0 -[1,7230:-473657,4025873:25952256,0,0 -(1,7230:-473657,-710414:25952256,0,0 -h1,7230:-473657,-710414:0,0,0 -(1,7230:-473657,-710414:0,0,0 -(1,7230:-473657,-710414:0,0,0 -g1,7230:-473657,-710414 -(1,7230:-473657,-710414:65781,0,65781 -g1,7230:-407876,-710414 -[1,7230:-407876,-644633:0,0,0 +[1,7235:4262630,47279633:28320399,43253760,0 +(1,7235:4262630,4025873:0,0,0 +[1,7235:-473657,4025873:25952256,0,0 +(1,7235:-473657,-710414:25952256,0,0 +h1,7235:-473657,-710414:0,0,0 +(1,7235:-473657,-710414:0,0,0 +(1,7235:-473657,-710414:0,0,0 +g1,7235:-473657,-710414 +(1,7235:-473657,-710414:65781,0,65781 +g1,7235:-407876,-710414 +[1,7235:-407876,-644633:0,0,0 ] ) -k1,7230:-473657,-710414:-65781 +k1,7235:-473657,-710414:-65781 ) ) -k1,7230:25478599,-710414:25952256 -g1,7230:25478599,-710414 +k1,7235:25478599,-710414:25952256 +g1,7235:25478599,-710414 ) ] ) -[1,7230:6630773,47279633:25952256,43253760,0 -[1,7230:6630773,4812305:25952256,786432,0 -(1,7230:6630773,4812305:25952256,505283,134348 -(1,7230:6630773,4812305:25952256,505283,134348 -g1,7230:3078558,4812305 -[1,7230:3078558,4812305:0,0,0 -(1,7230:3078558,2439708:0,1703936,0 -k1,7230:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7230:2537886,2439708:1179648,16384,0 +[1,7235:6630773,47279633:25952256,43253760,0 +[1,7235:6630773,4812305:25952256,786432,0 +(1,7235:6630773,4812305:25952256,505283,134348 +(1,7235:6630773,4812305:25952256,505283,134348 +g1,7235:3078558,4812305 +[1,7235:3078558,4812305:0,0,0 +(1,7235:3078558,2439708:0,1703936,0 +k1,7235:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7235:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7230:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7235:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7230:3078558,4812305:0,0,0 -(1,7230:3078558,2439708:0,1703936,0 -g1,7230:29030814,2439708 -g1,7230:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7230:36151628,1915420:16384,1179648,0 +[1,7235:3078558,4812305:0,0,0 +(1,7235:3078558,2439708:0,1703936,0 +g1,7235:29030814,2439708 +g1,7235:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7235:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7230:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7235:37855564,2439708:1179648,16384,0 ) ) -k1,7230:3078556,2439708:-34777008 +k1,7235:3078556,2439708:-34777008 ) ] -[1,7230:3078558,4812305:0,0,0 -(1,7230:3078558,49800853:0,16384,2228224 -k1,7230:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7230:2537886,49800853:1179648,16384,0 +[1,7235:3078558,4812305:0,0,0 +(1,7235:3078558,49800853:0,16384,2228224 +k1,7235:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7235:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7230:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7235:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7230:3078558,4812305:0,0,0 -(1,7230:3078558,49800853:0,16384,2228224 -g1,7230:29030814,49800853 -g1,7230:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7230:36151628,51504789:16384,1179648,0 +[1,7235:3078558,4812305:0,0,0 +(1,7235:3078558,49800853:0,16384,2228224 +g1,7235:29030814,49800853 +g1,7235:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7235:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7230:37855564,49800853:1179648,16384,0 -) -) -k1,7230:3078556,49800853:-34777008 -) -] -g1,7230:6630773,4812305 -k1,7230:24573876,4812305:16747726 -g1,7230:25960617,4812305 -g1,7230:26609423,4812305 -g1,7230:29923578,4812305 -) -) -] -[1,7230:6630773,45706769:25952256,40108032,0 -(1,7230:6630773,45706769:25952256,40108032,0 -(1,7230:6630773,45706769:0,0,0 -g1,7230:6630773,45706769 -) -[1,7230:6630773,45706769:25952256,40108032,0 -(1,7154:6630773,6254097:25952256,513147,126483 -k1,7153:8610414,6254097:196406 -k1,7153:9825905,6254097:196406 -k1,7153:11411675,6254097:196407 -k1,7153:13484377,6254097:196406 -k1,7153:14570762,6254097:196406 -k1,7153:17061583,6254097:196406 -k1,7153:19960039,6254097:196407 -k1,7153:21532046,6254097:196406 -k1,7153:22900891,6254097:196406 -k1,7153:25984158,6254097:196406 -k1,7153:27199650,6254097:196407 -k1,7153:30174783,6254097:196406 -k1,7153:32051532,6254097:196406 -k1,7153:32583029,6254097:0 -) -(1,7154:6630773,7095585:25952256,513147,134348 -g1,7153:10134983,7095585 -g1,7153:10985640,7095585 -g1,7153:12469375,7095585 -g1,7153:13327896,7095585 -g1,7153:15954579,7095585 -g1,7153:17172893,7095585 -g1,7153:18544561,7095585 -g1,7153:21456981,7095585 -g1,7153:25415355,7095585 -g1,7153:26300746,7095585 -k1,7154:32583029,7095585:3800435 -g1,7154:32583029,7095585 -) -v1,7156:6630773,8238035:0,393216,0 -(1,7165:6630773,10519159:25952256,2674340,196608 -g1,7165:6630773,10519159 -g1,7165:6630773,10519159 -g1,7165:6434165,10519159 -(1,7165:6434165,10519159:0,2674340,196608 -r1,7165:32779637,10519159:26345472,2870948,196608 -k1,7165:6434165,10519159:-26345472 -) -(1,7165:6434165,10519159:26345472,2674340,196608 -[1,7165:6630773,10519159:25952256,2477732,0 -(1,7158:6630773,8445653:25952256,404226,76021 -(1,7157:6630773,8445653:0,0,0 -g1,7157:6630773,8445653 -g1,7157:6630773,8445653 -g1,7157:6303093,8445653 -(1,7157:6303093,8445653:0,0,0 -) -g1,7157:6630773,8445653 -) -k1,7158:6630773,8445653:0 -h1,7158:9476084,8445653:0,0,0 -k1,7158:32583028,8445653:23106944 -g1,7158:32583028,8445653 -) -(1,7164:6630773,9177367:25952256,404226,101187 -(1,7160:6630773,9177367:0,0,0 -g1,7160:6630773,9177367 -g1,7160:6630773,9177367 -g1,7160:6303093,9177367 -(1,7160:6303093,9177367:0,0,0 -) -g1,7160:6630773,9177367 -) -g1,7164:7579210,9177367 -g1,7164:7895356,9177367 -g1,7164:8211502,9177367 -g1,7164:8527648,9177367 -g1,7164:8843794,9177367 -g1,7164:9159940,9177367 -g1,7164:9476086,9177367 -g1,7164:9792232,9177367 -g1,7164:10108378,9177367 -g1,7164:10424524,9177367 -g1,7164:10740670,9177367 -g1,7164:12637544,9177367 -g1,7164:12953690,9177367 -g1,7164:13269836,9177367 -g1,7164:13585982,9177367 -g1,7164:13902128,9177367 -g1,7164:14218274,9177367 -h1,7164:15482857,9177367:0,0,0 -k1,7164:32583029,9177367:17100172 -g1,7164:32583029,9177367 -) -(1,7164:6630773,9843545:25952256,404226,101187 -h1,7164:6630773,9843545:0,0,0 -g1,7164:7579210,9843545 -g1,7164:9476084,9843545 -g1,7164:12637541,9843545 -h1,7164:15482852,9843545:0,0,0 -k1,7164:32583028,9843545:17100176 -g1,7164:32583028,9843545 -) -(1,7164:6630773,10509723:25952256,404226,9436 -h1,7164:6630773,10509723:0,0,0 -g1,7164:7579210,10509723 -g1,7164:9159939,10509723 -g1,7164:9476085,10509723 -g1,7164:12637542,10509723 -h1,7164:15482853,10509723:0,0,0 -k1,7164:32583029,10509723:17100176 -g1,7164:32583029,10509723 -) -] -) -g1,7165:32583029,10519159 -g1,7165:6630773,10519159 -g1,7165:6630773,10519159 -g1,7165:32583029,10519159 -g1,7165:32583029,10519159 -) -h1,7165:6630773,10715767:0,0,0 -(1,7169:6630773,12033527:25952256,513147,102891 -h1,7168:6630773,12033527:983040,0,0 -k1,7168:9650618,12033527:253570 -k1,7168:10923272,12033527:253569 -k1,7168:12566205,12033527:253570 -k1,7168:14696071,12033527:253570 -k1,7168:15632525,12033527:253569 -k1,7168:17973417,12033527:253570 -k1,7168:20929036,12033527:253570 -k1,7168:22832802,12033527:253569 -k1,7168:24528819,12033527:253570 -k1,7168:25954828,12033527:253570 -k1,7168:28828526,12033527:253569 -k1,7168:31563944,12033527:253570 -k1,7168:32583029,12033527:0 -) -(1,7169:6630773,12875015:25952256,513147,126483 -k1,7168:9605393,12875015:195893 -k1,7168:11481629,12875015:195893 -k1,7168:12209019,12875015:195893 -k1,7168:12760772,12875015:195893 -k1,7168:15043987,12875015:195893 -k1,7168:15899171,12875015:195892 -k1,7168:19141177,12875015:195893 -k1,7168:19996362,12875015:195893 -k1,7168:22858260,12875015:195893 -k1,7168:26865072,12875015:195893 -k1,7168:29696168,12875015:195893 -k1,7168:32583029,12875015:0 -) -(1,7169:6630773,13716503:25952256,513147,134348 -k1,7168:7842332,13716503:258010 -k1,7168:9498226,13716503:258011 -k1,7168:10848721,13716503:258010 -(1,7168:10848721,13716503:0,452978,115847 -r1,7168:13317258,13716503:2468537,568825,115847 -k1,7168:10848721,13716503:-2468537 -) -(1,7168:10848721,13716503:2468537,452978,115847 -k1,7168:10848721,13716503:3277 -h1,7168:13313981,13716503:0,411205,112570 -) -k1,7168:13575268,13716503:258010 -k1,7168:16923302,13716503:258011 -k1,7168:19036636,13716503:258010 -k1,7168:19946074,13716503:258010 -k1,7168:22133465,13716503:258011 -k1,7168:22747335,13716503:258010 -k1,7168:24394053,13716503:258010 -k1,7168:26629941,13716503:258011 -k1,7168:27547243,13716503:258010 -k1,7168:32583029,13716503:0 -) -(1,7169:6630773,14557991:25952256,513147,115847 -k1,7168:8794653,14557991:153235 -k1,7168:10948703,14557991:153236 -k1,7168:12669559,14557991:153235 -k1,7168:13841879,14557991:153235 -k1,7168:16351134,14557991:153236 -k1,7168:20285796,14557991:153235 -k1,7168:21630476,14557991:153235 -(1,7168:21630476,14557991:0,452978,115847 -r1,7168:24450725,14557991:2820249,568825,115847 -k1,7168:21630476,14557991:-2820249 -) -(1,7168:21630476,14557991:2820249,452978,115847 -k1,7168:21630476,14557991:3277 -h1,7168:24447448,14557991:0,411205,112570 -) -k1,7168:24603960,14557991:153235 -k1,7168:25408624,14557991:153236 -k1,7168:27954578,14557991:153235 -k1,7168:28565910,14557991:153235 -k1,7168:29986612,14557991:153236 -k1,7168:30495707,14557991:153235 -k1,7168:32583029,14557991:0 -) -(1,7169:6630773,15399479:25952256,513147,134348 -g1,7168:8223953,15399479 -g1,7168:10077966,15399479 -g1,7168:12990386,15399479 -g1,7168:14421692,15399479 -g1,7168:16119074,15399479 -h1,7168:16915992,15399479:0,0,0 -g1,7168:17115221,15399479 -g1,7168:18262101,15399479 -g1,7168:20578798,15399479 -g1,7168:22600583,15399479 -g1,7168:23214655,15399479 -k1,7169:32583029,15399479:6254103 -g1,7169:32583029,15399479 -) -v1,7171:6630773,16541928:0,393216,0 -(1,7183:6630773,20821586:25952256,4672874,196608 -g1,7183:6630773,20821586 -g1,7183:6630773,20821586 -g1,7183:6434165,20821586 -(1,7183:6434165,20821586:0,4672874,196608 -r1,7183:32779637,20821586:26345472,4869482,196608 -k1,7183:6434165,20821586:-26345472 -) -(1,7183:6434165,20821586:26345472,4672874,196608 -[1,7183:6630773,20821586:25952256,4476266,0 -(1,7173:6630773,16749546:25952256,404226,101187 -(1,7172:6630773,16749546:0,0,0 -g1,7172:6630773,16749546 -g1,7172:6630773,16749546 -g1,7172:6303093,16749546 -(1,7172:6303093,16749546:0,0,0 -) -g1,7172:6630773,16749546 -) -g1,7173:8843793,16749546 -g1,7173:9792231,16749546 -g1,7173:15482854,16749546 -g1,7173:17063583,16749546 -g1,7173:17695875,16749546 -k1,7173:17695875,16749546:0 -h1,7173:18328167,16749546:0,0,0 -k1,7173:32583029,16749546:14254862 -g1,7173:32583029,16749546 -) -(1,7174:6630773,17415724:25952256,404226,82312 -h1,7174:6630773,17415724:0,0,0 -g1,7174:6946919,17415724 -g1,7174:7263065,17415724 -g1,7174:7579211,17415724 -g1,7174:7895357,17415724 -g1,7174:8211503,17415724 -g1,7174:8527649,17415724 -g1,7174:8843795,17415724 -g1,7174:9159941,17415724 -g1,7174:9476087,17415724 -g1,7174:9792233,17415724 -g1,7174:10108379,17415724 -g1,7174:10424525,17415724 -g1,7174:10740671,17415724 -g1,7174:11056817,17415724 -g1,7174:11372963,17415724 -g1,7174:11689109,17415724 -g1,7174:12005255,17415724 -g1,7174:14850566,17415724 -g1,7174:15482858,17415724 -g1,7174:18644316,17415724 -g1,7174:19276608,17415724 -g1,7174:21173483,17415724 -g1,7174:22754212,17415724 -g1,7174:23386504,17415724 -g1,7174:25599525,17415724 -g1,7174:27180254,17415724 -h1,7174:29077128,17415724:0,0,0 -k1,7174:32583029,17415724:3505901 -g1,7174:32583029,17415724 -) -(1,7175:6630773,18081902:25952256,404226,101187 -h1,7175:6630773,18081902:0,0,0 -k1,7175:6630773,18081902:0 -h1,7175:10108375,18081902:0,0,0 -k1,7175:32583029,18081902:22474654 -g1,7175:32583029,18081902 -) -(1,7182:6630773,18813616:25952256,379060,7863 -(1,7177:6630773,18813616:0,0,0 -g1,7177:6630773,18813616 -g1,7177:6630773,18813616 -g1,7177:6303093,18813616 -(1,7177:6303093,18813616:0,0,0 -) -g1,7177:6630773,18813616 -) -g1,7182:7579210,18813616 -g1,7182:7895356,18813616 -g1,7182:8211502,18813616 -g1,7182:8527648,18813616 -g1,7182:8843794,18813616 -g1,7182:9159940,18813616 -g1,7182:9476086,18813616 -g1,7182:9792232,18813616 -g1,7182:10108378,18813616 -g1,7182:10424524,18813616 -g1,7182:10740670,18813616 -g1,7182:11056816,18813616 -g1,7182:11689108,18813616 -g1,7182:12005254,18813616 -g1,7182:12321400,18813616 -g1,7182:12637546,18813616 -g1,7182:12953692,18813616 -g1,7182:13269838,18813616 -g1,7182:13585984,18813616 -g1,7182:13902130,18813616 -g1,7182:14218276,18813616 -g1,7182:14850568,18813616 -g1,7182:15166714,18813616 -g1,7182:15482860,18813616 -g1,7182:15799006,18813616 -g1,7182:16115152,18813616 -g1,7182:16431298,18813616 -g1,7182:16747444,18813616 -g1,7182:17063590,18813616 -g1,7182:17379736,18813616 -g1,7182:17695882,18813616 -h1,7182:18012028,18813616:0,0,0 -k1,7182:32583029,18813616:14571001 -g1,7182:32583029,18813616 -) -(1,7182:6630773,19479794:25952256,388497,9436 -h1,7182:6630773,19479794:0,0,0 -g1,7182:7579210,19479794 -g1,7182:8211502,19479794 -g1,7182:11689105,19479794 -g1,7182:14850562,19479794 -h1,7182:18012019,19479794:0,0,0 -k1,7182:32583029,19479794:14571010 -g1,7182:32583029,19479794 -) -(1,7182:6630773,20145972:25952256,388497,9436 -h1,7182:6630773,20145972:0,0,0 -g1,7182:7579210,20145972 -g1,7182:8211502,20145972 -g1,7182:11689105,20145972 -g1,7182:14850562,20145972 -h1,7182:18012019,20145972:0,0,0 -k1,7182:32583029,20145972:14571010 -g1,7182:32583029,20145972 -) -(1,7182:6630773,20812150:25952256,388497,9436 -h1,7182:6630773,20812150:0,0,0 -g1,7182:7579210,20812150 -g1,7182:8211502,20812150 -g1,7182:11689105,20812150 -g1,7182:14850562,20812150 -h1,7182:18012019,20812150:0,0,0 -k1,7182:32583029,20812150:14571010 -g1,7182:32583029,20812150 -) -] -) -g1,7183:32583029,20821586 -g1,7183:6630773,20821586 -g1,7183:6630773,20821586 -g1,7183:32583029,20821586 -g1,7183:32583029,20821586 -) -h1,7183:6630773,21018194:0,0,0 -v1,7187:6630773,22812226:0,393216,0 -(1,7188:6630773,25098258:25952256,2679248,616038 -g1,7188:6630773,25098258 -(1,7188:6630773,25098258:25952256,2679248,616038 -(1,7188:6630773,25714296:25952256,3295286,0 -[1,7188:6630773,25714296:25952256,3295286,0 -(1,7188:6630773,25688082:25952256,3242858,0 -r1,7188:6656987,25688082:26214,3242858,0 -[1,7188:6656987,25688082:25899828,3242858,0 -(1,7188:6656987,25098258:25899828,2063210,0 -[1,7188:7246811,25098258:24720180,2063210,0 -(1,7188:7246811,24122422:24720180,1087374,134348 -k1,7187:8723254,24122422:266740 -k1,7187:11195936,24122422:266740 -k1,7187:12481760,24122422:266739 -k1,7187:14244687,24122422:266740 -k1,7187:15127465,24122422:266740 -k1,7187:16413290,24122422:266740 -k1,7187:18650698,24122422:266740 -k1,7187:22854186,24122422:266740 -k1,7187:24976249,24122422:266739 -k1,7187:29257069,24122422:266740 -k1,7187:29879669,24122422:266740 -k1,7187:31966991,24122422:0 -) -(1,7188:7246811,24963910:24720180,505283,134348 -g1,7187:8839991,24963910 -g1,7187:9935753,24963910 -g1,7187:12848173,24963910 -g1,7187:14238847,24963910 -g1,7187:15872004,24963910 -g1,7187:19502043,24963910 -g1,7187:20720357,24963910 -k1,7188:31966991,24963910:7262045 -g1,7188:31966991,24963910 -) -] -) -] -r1,7188:32583029,25688082:26214,3242858,0 -) -] -) -) -g1,7188:32583029,25098258 -) -h1,7188:6630773,25714296:0,0,0 -(1,7191:6630773,27032056:25952256,513147,115847 -h1,7190:6630773,27032056:983040,0,0 -k1,7190:9619605,27032056:231077 -(1,7190:9619605,27032056:0,452978,115847 -r1,7190:11384718,27032056:1765113,568825,115847 -k1,7190:9619605,27032056:-1765113 -) -(1,7190:9619605,27032056:1765113,452978,115847 -k1,7190:9619605,27032056:3277 -h1,7190:11381441,27032056:0,411205,112570 -) -k1,7190:11615795,27032056:231077 -k1,7190:14187817,27032056:231076 -k1,7190:15610339,27032056:231077 -k1,7190:18557228,27032056:231077 -k1,7190:19735956,27032056:231077 -$1,7190:19735956,27032056 -$1,7190:20180945,27032056 -k1,7190:20412022,27032056:231077 -k1,7190:21662183,27032056:231076 -k1,7190:25373877,27032056:231077 -k1,7190:29059357,27032056:231077 -(1,7190:29059357,27032056:0,452978,115847 -r1,7190:32583029,27032056:3523672,568825,115847 -k1,7190:29059357,27032056:-3523672 -) -(1,7190:29059357,27032056:3523672,452978,115847 -k1,7190:29059357,27032056:3277 -h1,7190:32579752,27032056:0,411205,112570 -) -k1,7190:32583029,27032056:0 -) -(1,7191:6630773,27873544:25952256,513147,138281 -g1,7190:8115818,27873544 -g1,7190:11433250,27873544 -g1,7190:12651564,27873544 -$1,7190:12651564,27873544 -$1,7190:12972035,27873544 -g1,7190:15238270,27873544 -$1,7190:15238270,27873544 -$1,7190:15706197,27873544 -g1,7190:17972432,27873544 -g1,7190:19363106,27873544 -g1,7190:22999698,27873544 -g1,7190:25625725,27873544 -g1,7190:26772605,27873544 -g1,7190:27990919,27873544 -k1,7191:32583029,27873544:1702628 -g1,7191:32583029,27873544 -) -v1,7193:6630773,29015993:0,393216,0 -(1,7210:6630773,36632833:25952256,8010056,196608 -g1,7210:6630773,36632833 -g1,7210:6630773,36632833 -g1,7210:6434165,36632833 -(1,7210:6434165,36632833:0,8010056,196608 -r1,7210:32779637,36632833:26345472,8206664,196608 -k1,7210:6434165,36632833:-26345472 -) -(1,7210:6434165,36632833:26345472,8010056,196608 -[1,7210:6630773,36632833:25952256,7813448,0 -(1,7195:6630773,29229903:25952256,410518,101187 -(1,7194:6630773,29229903:0,0,0 -g1,7194:6630773,29229903 -g1,7194:6630773,29229903 -g1,7194:6303093,29229903 -(1,7194:6303093,29229903:0,0,0 -) -g1,7194:6630773,29229903 -) -k1,7195:6630773,29229903:0 -g1,7195:10108376,29229903 -g1,7195:10740668,29229903 -g1,7195:14534417,29229903 -g1,7195:15166709,29229903 -g1,7195:15799001,29229903 -h1,7195:18960458,29229903:0,0,0 -k1,7195:32583029,29229903:13622571 -g1,7195:32583029,29229903 -) -(1,7209:6630773,29961617:25952256,379060,0 -(1,7197:6630773,29961617:0,0,0 -g1,7197:6630773,29961617 -g1,7197:6630773,29961617 -g1,7197:6303093,29961617 -(1,7197:6303093,29961617:0,0,0 -) -g1,7197:6630773,29961617 -) -h1,7209:7263064,29961617:0,0,0 -k1,7209:32583028,29961617:25319964 -g1,7209:32583028,29961617 -) -(1,7209:6630773,30627795:25952256,404226,101187 -h1,7209:6630773,30627795:0,0,0 -g1,7209:7579210,30627795 -g1,7209:7895356,30627795 -g1,7209:11056814,30627795 -g1,7209:15799000,30627795 -h1,7209:19276602,30627795:0,0,0 -k1,7209:32583029,30627795:13306427 -g1,7209:32583029,30627795 -) -(1,7209:6630773,31293973:25952256,379060,0 -h1,7209:6630773,31293973:0,0,0 -h1,7209:7263064,31293973:0,0,0 -k1,7209:32583028,31293973:25319964 -g1,7209:32583028,31293973 -) -(1,7209:6630773,31960151:25952256,410518,101187 -h1,7209:6630773,31960151:0,0,0 -g1,7209:7579210,31960151 -g1,7209:9476084,31960151 -g1,7209:9792230,31960151 -g1,7209:13269833,31960151 -g1,7209:14534416,31960151 -h1,7209:17379727,31960151:0,0,0 -k1,7209:32583029,31960151:15203302 -g1,7209:32583029,31960151 -) -(1,7209:6630773,32626329:25952256,410518,101187 -h1,7209:6630773,32626329:0,0,0 -g1,7209:7579210,32626329 -g1,7209:8211502,32626329 -g1,7209:8843794,32626329 -g1,7209:11056814,32626329 -g1,7209:12005251,32626329 -g1,7209:12637543,32626329 -g1,7209:13902126,32626329 -g1,7209:16431292,32626329 -g1,7209:17063584,32626329 -k1,7209:17063584,32626329:0 -h1,7209:19592749,32626329:0,0,0 -k1,7209:32583029,32626329:12990280 -g1,7209:32583029,32626329 -) -(1,7209:6630773,33292507:25952256,404226,101187 -h1,7209:6630773,33292507:0,0,0 -g1,7209:7579210,33292507 -g1,7209:11372958,33292507 -g1,7209:15166706,33292507 -g1,7209:16747435,33292507 -g1,7209:20541183,33292507 -g1,7209:21489620,33292507 -g1,7209:22754203,33292507 -g1,7209:24651077,33292507 -g1,7209:25599514,33292507 -h1,7209:25915660,33292507:0,0,0 -k1,7209:32583029,33292507:6667369 -g1,7209:32583029,33292507 -) -(1,7209:6630773,33958685:25952256,410518,101187 -h1,7209:6630773,33958685:0,0,0 -g1,7209:7579210,33958685 -g1,7209:8527647,33958685 -g1,7209:11056813,33958685 -g1,7209:14534416,33958685 -h1,7209:17379727,33958685:0,0,0 -k1,7209:32583029,33958685:15203302 -g1,7209:32583029,33958685 -) -(1,7209:6630773,34624863:25952256,388497,9436 -h1,7209:6630773,34624863:0,0,0 -g1,7209:7579210,34624863 -g1,7209:7895356,34624863 -g1,7209:11056813,34624863 -h1,7209:13902124,34624863:0,0,0 -k1,7209:32583028,34624863:18680904 -g1,7209:32583028,34624863 -) -(1,7209:6630773,35291041:25952256,404226,101187 -h1,7209:6630773,35291041:0,0,0 -g1,7209:7579210,35291041 -g1,7209:9792230,35291041 -h1,7209:12953687,35291041:0,0,0 -k1,7209:32583029,35291041:19629342 -g1,7209:32583029,35291041 -) -(1,7209:6630773,35957219:25952256,379060,6290 -h1,7209:6630773,35957219:0,0,0 -g1,7209:7579210,35957219 -g1,7209:7895356,35957219 -g1,7209:8211502,35957219 -g1,7209:8527648,35957219 -g1,7209:8843794,35957219 -g1,7209:9159940,35957219 -g1,7209:9476086,35957219 -h1,7209:10424523,35957219:0,0,0 -k1,7209:32583029,35957219:22158506 -g1,7209:32583029,35957219 -) -(1,7209:6630773,36623397:25952256,388497,9436 -h1,7209:6630773,36623397:0,0,0 -g1,7209:7579210,36623397 -h1,7209:10424521,36623397:0,0,0 -k1,7209:32583029,36623397:22158508 -g1,7209:32583029,36623397 -) -] -) -g1,7210:32583029,36632833 -g1,7210:6630773,36632833 -g1,7210:6630773,36632833 -g1,7210:32583029,36632833 -g1,7210:32583029,36632833 -) -h1,7210:6630773,36829441:0,0,0 -(1,7214:6630773,38147201:25952256,513147,134348 -h1,7213:6630773,38147201:983040,0,0 -k1,7213:8767086,38147201:335384 -k1,7213:12192492,38147201:335383 -k1,7213:14396307,38147201:335384 -k1,7213:15679341,38147201:335383 -k1,7213:18002432,38147201:335384 -k1,7213:20272438,38147201:335383 -k1,7213:21799267,38147201:335384 -$1,7213:21799267,38147201 -$1,7213:22119738,38147201 -k1,7213:24033228,38147201:335383 -(1,7213:24033228,38147201:0,452978,115847 -r1,7213:27556900,38147201:3523672,568825,115847 -k1,7213:24033228,38147201:-3523672 -) -(1,7213:24033228,38147201:3523672,452978,115847 -k1,7213:24033228,38147201:3277 -h1,7213:27553623,38147201:0,411205,112570 -) -k1,7213:27892284,38147201:335384 -k1,7213:29513484,38147201:335384 -k1,7213:32227169,38147201:335383 -k1,7214:32583029,38147201:0 -) -(1,7214:6630773,38988689:25952256,505283,134348 -(1,7213:6630773,38988689:0,459977,115847 -r1,7213:9099310,38988689:2468537,575824,115847 -k1,7213:6630773,38988689:-2468537 -) -(1,7213:6630773,38988689:2468537,459977,115847 -k1,7213:6630773,38988689:3277 -h1,7213:9096033,38988689:0,411205,112570 -) -g1,7213:9298539,38988689 -g1,7213:10868781,38988689 -(1,7213:10868781,38988689:0,452978,115847 -r1,7213:12282182,38988689:1413401,568825,115847 -k1,7213:10868781,38988689:-1413401 -) -(1,7213:10868781,38988689:1413401,452978,115847 -k1,7213:10868781,38988689:3277 -h1,7213:12278905,38988689:0,411205,112570 -) -g1,7213:12481411,38988689 -g1,7213:13366802,38988689 -k1,7214:32583029,38988689:15639927 -g1,7214:32583029,38988689 -) -v1,7216:6630773,40306449:0,393216,0 -(1,7230:6630773,45116945:25952256,5203712,589824 -g1,7230:6630773,45116945 -(1,7230:6630773,45116945:25952256,5203712,589824 -(1,7230:6630773,45706769:25952256,5793536,0 -[1,7230:6630773,45706769:25952256,5793536,0 -(1,7230:6630773,45706769:25952256,5767322,0 -r1,7230:6656987,45706769:26214,5767322,0 -[1,7230:6656987,45706769:25899828,5767322,0 -(1,7230:6656987,45116945:25899828,4587674,0 -[1,7230:7246811,45116945:24720180,4587674,0 -(1,7217:7246811,41616645:24720180,1087374,134348 -k1,7216:8661102,41616645:204588 -k1,7216:11985858,41616645:204587 -(1,7216:11985858,41616645:0,452978,115847 -r1,7230:13750971,41616645:1765113,568825,115847 -k1,7216:11985858,41616645:-1765113 -) -(1,7216:11985858,41616645:1765113,452978,115847 -k1,7216:11985858,41616645:3277 -h1,7216:13747694,41616645:0,411205,112570 -) -k1,7216:13955559,41616645:204588 -k1,7216:15351591,41616645:204587 -(1,7216:15351591,41616645:0,452978,115847 -r1,7230:18875263,41616645:3523672,568825,115847 -k1,7216:15351591,41616645:-3523672 -) -(1,7216:15351591,41616645:3523672,452978,115847 -k1,7216:15351591,41616645:3277 -h1,7216:18871986,41616645:0,411205,112570 -) -k1,7216:19079851,41616645:204588 -k1,7216:21295083,41616645:204587 -k1,7216:21914509,41616645:204583 -k1,7216:24582594,41616645:204587 -k1,7216:26071688,41616645:204588 -k1,7216:27974313,41616645:204587 -k1,7216:29914294,41616645:204588 -k1,7216:30533719,41616645:204582 -k1,7217:31966991,41616645:0 -) -(1,7217:7246811,42458133:24720180,505283,134348 -k1,7216:10167214,42458133:213766 -k1,7216:11359434,42458133:213767 -k1,7216:15890057,42458133:213766 -k1,7216:19054254,42458133:213766 -k1,7216:20077391,42458133:213767 -k1,7216:21310242,42458133:213766 -k1,7216:23759442,42458133:213767 -k1,7216:25244606,42458133:213766 -k1,7216:27638755,42458133:213766 -k1,7216:28600288,42458133:213767 -k1,7216:30682485,42458133:213766 -k1,7217:31966991,42458133:0 -) -(1,7217:7246811,43299621:24720180,513147,126483 -(1,7216:7246811,43299621:0,452978,115847 -r1,7230:9715348,43299621:2468537,568825,115847 -k1,7216:7246811,43299621:-2468537 -) -(1,7216:7246811,43299621:2468537,452978,115847 -k1,7216:7246811,43299621:3277 -h1,7216:9712071,43299621:0,411205,112570 -) -k1,7216:9865921,43299621:150573 -k1,7216:12801118,43299621:150572 -k1,7216:13766959,43299621:150573 -k1,7216:14983803,43299621:150573 -k1,7216:18649726,43299621:150572 -k1,7216:21095370,43299621:150573 -k1,7216:22012058,43299621:150572 -k1,7216:23181716,43299621:150573 -k1,7216:27139275,43299621:150573 -k1,7216:30429677,43299621:150572 -k1,7216:31196288,43299621:150573 -k1,7217:31966991,43299621:0 -) -(1,7217:7246811,44141109:24720180,513147,134348 -k1,7216:7814613,44141109:152959 -k1,7216:10100814,44141109:153004 -k1,7216:11634663,44141109:153005 -k1,7216:12319165,44141109:153005 -k1,7216:14634857,44141109:153004 -k1,7216:16917127,44141109:153005 -k1,7216:18089217,44141109:153005 -k1,7216:19609303,44141109:153005 -k1,7216:20709958,44141109:153004 -k1,7216:23549284,44141109:153005 -k1,7216:25992117,44141109:153005 -k1,7216:27291346,44141109:153004 -k1,7216:29188264,44141109:153005 -k1,7216:31966991,44141109:0 -) -(1,7217:7246811,44982597:24720180,513147,134348 -k1,7216:8180148,44982597:171809 -k1,7216:8766774,44982597:171783 -k1,7216:11964380,44982597:171809 -k1,7216:16559869,44982597:171809 -k1,7216:19815803,44982597:171810 -k1,7216:21683028,44982597:171809 -k1,7216:22672727,44982597:171810 -k1,7216:24238487,44982597:171809 -k1,7216:25542104,44982597:171810 -k1,7216:26128729,44982597:171782 -k1,7216:28260064,44982597:171809 -k1,7216:29300226,44982597:171810 -k1,7216:30576317,44982597:171809 -k1,7216:31966991,44982597:0 -) -] -) -] -r1,7230:32583029,45706769:26214,5767322,0 -) -] -) -) -g1,7230:32583029,45116945 -) -] -(1,7230:32583029,45706769:0,0,0 -g1,7230:32583029,45706769 -) -) -] -(1,7230:6630773,47279633:25952256,0,0 -h1,7230:6630773,47279633:25952256,0,0 -) -] -h1,7230:4262630,4025873:0,0,0 -] -!25316 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7235:37855564,49800853:1179648,16384,0 +) +) +k1,7235:3078556,49800853:-34777008 +) +] +g1,7235:6630773,4812305 +k1,7235:24502442,4812305:16676292 +g1,7235:25889183,4812305 +g1,7235:26537989,4812305 +g1,7235:29852144,4812305 +) +) +] +[1,7235:6630773,45706769:25952256,40108032,0 +(1,7235:6630773,45706769:25952256,40108032,0 +(1,7235:6630773,45706769:0,0,0 +g1,7235:6630773,45706769 +) +[1,7235:6630773,45706769:25952256,40108032,0 +(1,7159:6630773,6254097:25952256,513147,126483 +k1,7158:8610414,6254097:196406 +k1,7158:9825905,6254097:196406 +k1,7158:11411675,6254097:196407 +k1,7158:13484377,6254097:196406 +k1,7158:14570762,6254097:196406 +k1,7158:17061583,6254097:196406 +k1,7158:19960039,6254097:196407 +k1,7158:21532046,6254097:196406 +k1,7158:22900891,6254097:196406 +k1,7158:25984158,6254097:196406 +k1,7158:27199650,6254097:196407 +k1,7158:30174783,6254097:196406 +k1,7158:32051532,6254097:196406 +k1,7158:32583029,6254097:0 +) +(1,7159:6630773,7095585:25952256,513147,134348 +g1,7158:10134983,7095585 +g1,7158:10985640,7095585 +g1,7158:12469375,7095585 +g1,7158:13327896,7095585 +g1,7158:15954579,7095585 +g1,7158:17172893,7095585 +g1,7158:18544561,7095585 +g1,7158:21456981,7095585 +g1,7158:25415355,7095585 +g1,7158:26300746,7095585 +k1,7159:32583029,7095585:3800435 +g1,7159:32583029,7095585 +) +v1,7161:6630773,8238035:0,393216,0 +(1,7170:6630773,10519159:25952256,2674340,196608 +g1,7170:6630773,10519159 +g1,7170:6630773,10519159 +g1,7170:6434165,10519159 +(1,7170:6434165,10519159:0,2674340,196608 +r1,7170:32779637,10519159:26345472,2870948,196608 +k1,7170:6434165,10519159:-26345472 +) +(1,7170:6434165,10519159:26345472,2674340,196608 +[1,7170:6630773,10519159:25952256,2477732,0 +(1,7163:6630773,8445653:25952256,404226,76021 +(1,7162:6630773,8445653:0,0,0 +g1,7162:6630773,8445653 +g1,7162:6630773,8445653 +g1,7162:6303093,8445653 +(1,7162:6303093,8445653:0,0,0 +) +g1,7162:6630773,8445653 +) +k1,7163:6630773,8445653:0 +h1,7163:9476084,8445653:0,0,0 +k1,7163:32583028,8445653:23106944 +g1,7163:32583028,8445653 +) +(1,7169:6630773,9177367:25952256,404226,101187 +(1,7165:6630773,9177367:0,0,0 +g1,7165:6630773,9177367 +g1,7165:6630773,9177367 +g1,7165:6303093,9177367 +(1,7165:6303093,9177367:0,0,0 +) +g1,7165:6630773,9177367 +) +g1,7169:7579210,9177367 +g1,7169:7895356,9177367 +g1,7169:8211502,9177367 +g1,7169:8527648,9177367 +g1,7169:8843794,9177367 +g1,7169:9159940,9177367 +g1,7169:9476086,9177367 +g1,7169:9792232,9177367 +g1,7169:10108378,9177367 +g1,7169:10424524,9177367 +g1,7169:10740670,9177367 +g1,7169:12637544,9177367 +g1,7169:12953690,9177367 +g1,7169:13269836,9177367 +g1,7169:13585982,9177367 +g1,7169:13902128,9177367 +g1,7169:14218274,9177367 +h1,7169:15482857,9177367:0,0,0 +k1,7169:32583029,9177367:17100172 +g1,7169:32583029,9177367 +) +(1,7169:6630773,9843545:25952256,404226,101187 +h1,7169:6630773,9843545:0,0,0 +g1,7169:7579210,9843545 +g1,7169:9476084,9843545 +g1,7169:12637541,9843545 +h1,7169:15482852,9843545:0,0,0 +k1,7169:32583028,9843545:17100176 +g1,7169:32583028,9843545 +) +(1,7169:6630773,10509723:25952256,404226,9436 +h1,7169:6630773,10509723:0,0,0 +g1,7169:7579210,10509723 +g1,7169:9159939,10509723 +g1,7169:9476085,10509723 +g1,7169:12637542,10509723 +h1,7169:15482853,10509723:0,0,0 +k1,7169:32583029,10509723:17100176 +g1,7169:32583029,10509723 +) +] +) +g1,7170:32583029,10519159 +g1,7170:6630773,10519159 +g1,7170:6630773,10519159 +g1,7170:32583029,10519159 +g1,7170:32583029,10519159 +) +h1,7170:6630773,10715767:0,0,0 +(1,7174:6630773,12033527:25952256,513147,102891 +h1,7173:6630773,12033527:983040,0,0 +k1,7173:9650618,12033527:253570 +k1,7173:10923272,12033527:253569 +k1,7173:12566205,12033527:253570 +k1,7173:14696071,12033527:253570 +k1,7173:15632525,12033527:253569 +k1,7173:17973417,12033527:253570 +k1,7173:20929036,12033527:253570 +k1,7173:22832802,12033527:253569 +k1,7173:24528819,12033527:253570 +k1,7173:25954828,12033527:253570 +k1,7173:28828526,12033527:253569 +k1,7173:31563944,12033527:253570 +k1,7173:32583029,12033527:0 +) +(1,7174:6630773,12875015:25952256,513147,126483 +k1,7173:9605393,12875015:195893 +k1,7173:11481629,12875015:195893 +k1,7173:12209019,12875015:195893 +k1,7173:12760772,12875015:195893 +k1,7173:15043987,12875015:195893 +k1,7173:15899171,12875015:195892 +k1,7173:19141177,12875015:195893 +k1,7173:19996362,12875015:195893 +k1,7173:22858260,12875015:195893 +k1,7173:26865072,12875015:195893 +k1,7173:29696168,12875015:195893 +k1,7173:32583029,12875015:0 +) +(1,7174:6630773,13716503:25952256,513147,134348 +k1,7173:7842332,13716503:258010 +k1,7173:9498226,13716503:258011 +k1,7173:10848721,13716503:258010 +(1,7173:10848721,13716503:0,452978,115847 +r1,7173:13317258,13716503:2468537,568825,115847 +k1,7173:10848721,13716503:-2468537 +) +(1,7173:10848721,13716503:2468537,452978,115847 +k1,7173:10848721,13716503:3277 +h1,7173:13313981,13716503:0,411205,112570 +) +k1,7173:13575268,13716503:258010 +k1,7173:16923302,13716503:258011 +k1,7173:19036636,13716503:258010 +k1,7173:19946074,13716503:258010 +k1,7173:22133465,13716503:258011 +k1,7173:22747335,13716503:258010 +k1,7173:24394053,13716503:258010 +k1,7173:26629941,13716503:258011 +k1,7173:27547243,13716503:258010 +k1,7173:32583029,13716503:0 +) +(1,7174:6630773,14557991:25952256,513147,115847 +k1,7173:8794653,14557991:153235 +k1,7173:10948703,14557991:153236 +k1,7173:12669559,14557991:153235 +k1,7173:13841879,14557991:153235 +k1,7173:16351134,14557991:153236 +k1,7173:20285796,14557991:153235 +k1,7173:21630476,14557991:153235 +(1,7173:21630476,14557991:0,452978,115847 +r1,7173:24450725,14557991:2820249,568825,115847 +k1,7173:21630476,14557991:-2820249 +) +(1,7173:21630476,14557991:2820249,452978,115847 +k1,7173:21630476,14557991:3277 +h1,7173:24447448,14557991:0,411205,112570 +) +k1,7173:24603960,14557991:153235 +k1,7173:25408624,14557991:153236 +k1,7173:27954578,14557991:153235 +k1,7173:28565910,14557991:153235 +k1,7173:29986612,14557991:153236 +k1,7173:30495707,14557991:153235 +k1,7173:32583029,14557991:0 +) +(1,7174:6630773,15399479:25952256,513147,134348 +g1,7173:8223953,15399479 +g1,7173:10077966,15399479 +g1,7173:12990386,15399479 +g1,7173:14421692,15399479 +g1,7173:16119074,15399479 +h1,7173:16915992,15399479:0,0,0 +g1,7173:17115221,15399479 +g1,7173:18262101,15399479 +g1,7173:20578798,15399479 +g1,7173:22600583,15399479 +g1,7173:23214655,15399479 +k1,7174:32583029,15399479:6254103 +g1,7174:32583029,15399479 +) +v1,7176:6630773,16541928:0,393216,0 +(1,7188:6630773,20821586:25952256,4672874,196608 +g1,7188:6630773,20821586 +g1,7188:6630773,20821586 +g1,7188:6434165,20821586 +(1,7188:6434165,20821586:0,4672874,196608 +r1,7188:32779637,20821586:26345472,4869482,196608 +k1,7188:6434165,20821586:-26345472 +) +(1,7188:6434165,20821586:26345472,4672874,196608 +[1,7188:6630773,20821586:25952256,4476266,0 +(1,7178:6630773,16749546:25952256,404226,101187 +(1,7177:6630773,16749546:0,0,0 +g1,7177:6630773,16749546 +g1,7177:6630773,16749546 +g1,7177:6303093,16749546 +(1,7177:6303093,16749546:0,0,0 +) +g1,7177:6630773,16749546 +) +g1,7178:8843793,16749546 +g1,7178:9792231,16749546 +g1,7178:15482854,16749546 +g1,7178:17063583,16749546 +g1,7178:17695875,16749546 +k1,7178:17695875,16749546:0 +h1,7178:18328167,16749546:0,0,0 +k1,7178:32583029,16749546:14254862 +g1,7178:32583029,16749546 +) +(1,7179:6630773,17415724:25952256,404226,82312 +h1,7179:6630773,17415724:0,0,0 +g1,7179:6946919,17415724 +g1,7179:7263065,17415724 +g1,7179:7579211,17415724 +g1,7179:7895357,17415724 +g1,7179:8211503,17415724 +g1,7179:8527649,17415724 +g1,7179:8843795,17415724 +g1,7179:9159941,17415724 +g1,7179:9476087,17415724 +g1,7179:9792233,17415724 +g1,7179:10108379,17415724 +g1,7179:10424525,17415724 +g1,7179:10740671,17415724 +g1,7179:11056817,17415724 +g1,7179:11372963,17415724 +g1,7179:11689109,17415724 +g1,7179:12005255,17415724 +g1,7179:14850566,17415724 +g1,7179:15482858,17415724 +g1,7179:18644316,17415724 +g1,7179:19276608,17415724 +g1,7179:21173483,17415724 +g1,7179:22754212,17415724 +g1,7179:23386504,17415724 +g1,7179:25599525,17415724 +g1,7179:27180254,17415724 +h1,7179:29077128,17415724:0,0,0 +k1,7179:32583029,17415724:3505901 +g1,7179:32583029,17415724 +) +(1,7180:6630773,18081902:25952256,404226,101187 +h1,7180:6630773,18081902:0,0,0 +k1,7180:6630773,18081902:0 +h1,7180:10108375,18081902:0,0,0 +k1,7180:32583029,18081902:22474654 +g1,7180:32583029,18081902 +) +(1,7187:6630773,18813616:25952256,379060,7863 +(1,7182:6630773,18813616:0,0,0 +g1,7182:6630773,18813616 +g1,7182:6630773,18813616 +g1,7182:6303093,18813616 +(1,7182:6303093,18813616:0,0,0 +) +g1,7182:6630773,18813616 +) +g1,7187:7579210,18813616 +g1,7187:7895356,18813616 +g1,7187:8211502,18813616 +g1,7187:8527648,18813616 +g1,7187:8843794,18813616 +g1,7187:9159940,18813616 +g1,7187:9476086,18813616 +g1,7187:9792232,18813616 +g1,7187:10108378,18813616 +g1,7187:10424524,18813616 +g1,7187:10740670,18813616 +g1,7187:11056816,18813616 +g1,7187:11689108,18813616 +g1,7187:12005254,18813616 +g1,7187:12321400,18813616 +g1,7187:12637546,18813616 +g1,7187:12953692,18813616 +g1,7187:13269838,18813616 +g1,7187:13585984,18813616 +g1,7187:13902130,18813616 +g1,7187:14218276,18813616 +g1,7187:14850568,18813616 +g1,7187:15166714,18813616 +g1,7187:15482860,18813616 +g1,7187:15799006,18813616 +g1,7187:16115152,18813616 +g1,7187:16431298,18813616 +g1,7187:16747444,18813616 +g1,7187:17063590,18813616 +g1,7187:17379736,18813616 +g1,7187:17695882,18813616 +h1,7187:18012028,18813616:0,0,0 +k1,7187:32583029,18813616:14571001 +g1,7187:32583029,18813616 +) +(1,7187:6630773,19479794:25952256,388497,9436 +h1,7187:6630773,19479794:0,0,0 +g1,7187:7579210,19479794 +g1,7187:8211502,19479794 +g1,7187:11689105,19479794 +g1,7187:14850562,19479794 +h1,7187:18012019,19479794:0,0,0 +k1,7187:32583029,19479794:14571010 +g1,7187:32583029,19479794 +) +(1,7187:6630773,20145972:25952256,388497,9436 +h1,7187:6630773,20145972:0,0,0 +g1,7187:7579210,20145972 +g1,7187:8211502,20145972 +g1,7187:11689105,20145972 +g1,7187:14850562,20145972 +h1,7187:18012019,20145972:0,0,0 +k1,7187:32583029,20145972:14571010 +g1,7187:32583029,20145972 +) +(1,7187:6630773,20812150:25952256,388497,9436 +h1,7187:6630773,20812150:0,0,0 +g1,7187:7579210,20812150 +g1,7187:8211502,20812150 +g1,7187:11689105,20812150 +g1,7187:14850562,20812150 +h1,7187:18012019,20812150:0,0,0 +k1,7187:32583029,20812150:14571010 +g1,7187:32583029,20812150 +) +] +) +g1,7188:32583029,20821586 +g1,7188:6630773,20821586 +g1,7188:6630773,20821586 +g1,7188:32583029,20821586 +g1,7188:32583029,20821586 +) +h1,7188:6630773,21018194:0,0,0 +v1,7192:6630773,22812226:0,393216,0 +(1,7193:6630773,25098258:25952256,2679248,616038 +g1,7193:6630773,25098258 +(1,7193:6630773,25098258:25952256,2679248,616038 +(1,7193:6630773,25714296:25952256,3295286,0 +[1,7193:6630773,25714296:25952256,3295286,0 +(1,7193:6630773,25688082:25952256,3242858,0 +r1,7193:6656987,25688082:26214,3242858,0 +[1,7193:6656987,25688082:25899828,3242858,0 +(1,7193:6656987,25098258:25899828,2063210,0 +[1,7193:7246811,25098258:24720180,2063210,0 +(1,7193:7246811,24122422:24720180,1087374,134348 +k1,7192:8723254,24122422:266740 +k1,7192:11195936,24122422:266740 +k1,7192:12481760,24122422:266739 +k1,7192:14244687,24122422:266740 +k1,7192:15127465,24122422:266740 +k1,7192:16413290,24122422:266740 +k1,7192:18650698,24122422:266740 +k1,7192:22854186,24122422:266740 +k1,7192:24976249,24122422:266739 +k1,7192:29257069,24122422:266740 +k1,7192:29879669,24122422:266740 +k1,7192:31966991,24122422:0 +) +(1,7193:7246811,24963910:24720180,505283,134348 +g1,7192:8839991,24963910 +g1,7192:9935753,24963910 +g1,7192:12848173,24963910 +g1,7192:14238847,24963910 +g1,7192:15872004,24963910 +g1,7192:19502043,24963910 +g1,7192:20720357,24963910 +k1,7193:31966991,24963910:7262045 +g1,7193:31966991,24963910 +) +] +) +] +r1,7193:32583029,25688082:26214,3242858,0 +) +] +) +) +g1,7193:32583029,25098258 +) +h1,7193:6630773,25714296:0,0,0 +(1,7196:6630773,27032056:25952256,513147,115847 +h1,7195:6630773,27032056:983040,0,0 +k1,7195:9619605,27032056:231077 +(1,7195:9619605,27032056:0,452978,115847 +r1,7195:11384718,27032056:1765113,568825,115847 +k1,7195:9619605,27032056:-1765113 +) +(1,7195:9619605,27032056:1765113,452978,115847 +k1,7195:9619605,27032056:3277 +h1,7195:11381441,27032056:0,411205,112570 +) +k1,7195:11615795,27032056:231077 +k1,7195:14187817,27032056:231076 +k1,7195:15610339,27032056:231077 +k1,7195:18557228,27032056:231077 +k1,7195:19735956,27032056:231077 +$1,7195:19735956,27032056 +$1,7195:20180945,27032056 +k1,7195:20412022,27032056:231077 +k1,7195:21662183,27032056:231076 +k1,7195:25373877,27032056:231077 +k1,7195:29059357,27032056:231077 +(1,7195:29059357,27032056:0,452978,115847 +r1,7195:32583029,27032056:3523672,568825,115847 +k1,7195:29059357,27032056:-3523672 +) +(1,7195:29059357,27032056:3523672,452978,115847 +k1,7195:29059357,27032056:3277 +h1,7195:32579752,27032056:0,411205,112570 +) +k1,7195:32583029,27032056:0 +) +(1,7196:6630773,27873544:25952256,513147,138281 +g1,7195:8115818,27873544 +g1,7195:11433250,27873544 +g1,7195:12651564,27873544 +$1,7195:12651564,27873544 +$1,7195:12972035,27873544 +g1,7195:15238270,27873544 +$1,7195:15238270,27873544 +$1,7195:15706197,27873544 +g1,7195:17972432,27873544 +g1,7195:19363106,27873544 +g1,7195:22999698,27873544 +g1,7195:25625725,27873544 +g1,7195:26772605,27873544 +g1,7195:27990919,27873544 +k1,7196:32583029,27873544:1702628 +g1,7196:32583029,27873544 +) +v1,7198:6630773,29015993:0,393216,0 +(1,7215:6630773,36632833:25952256,8010056,196608 +g1,7215:6630773,36632833 +g1,7215:6630773,36632833 +g1,7215:6434165,36632833 +(1,7215:6434165,36632833:0,8010056,196608 +r1,7215:32779637,36632833:26345472,8206664,196608 +k1,7215:6434165,36632833:-26345472 +) +(1,7215:6434165,36632833:26345472,8010056,196608 +[1,7215:6630773,36632833:25952256,7813448,0 +(1,7200:6630773,29229903:25952256,410518,101187 +(1,7199:6630773,29229903:0,0,0 +g1,7199:6630773,29229903 +g1,7199:6630773,29229903 +g1,7199:6303093,29229903 +(1,7199:6303093,29229903:0,0,0 +) +g1,7199:6630773,29229903 +) +k1,7200:6630773,29229903:0 +g1,7200:10108376,29229903 +g1,7200:10740668,29229903 +g1,7200:14534417,29229903 +g1,7200:15166709,29229903 +g1,7200:15799001,29229903 +h1,7200:18960458,29229903:0,0,0 +k1,7200:32583029,29229903:13622571 +g1,7200:32583029,29229903 +) +(1,7214:6630773,29961617:25952256,379060,0 +(1,7202:6630773,29961617:0,0,0 +g1,7202:6630773,29961617 +g1,7202:6630773,29961617 +g1,7202:6303093,29961617 +(1,7202:6303093,29961617:0,0,0 +) +g1,7202:6630773,29961617 +) +h1,7214:7263064,29961617:0,0,0 +k1,7214:32583028,29961617:25319964 +g1,7214:32583028,29961617 +) +(1,7214:6630773,30627795:25952256,404226,101187 +h1,7214:6630773,30627795:0,0,0 +g1,7214:7579210,30627795 +g1,7214:7895356,30627795 +g1,7214:11056814,30627795 +g1,7214:15799000,30627795 +h1,7214:19276602,30627795:0,0,0 +k1,7214:32583029,30627795:13306427 +g1,7214:32583029,30627795 +) +(1,7214:6630773,31293973:25952256,379060,0 +h1,7214:6630773,31293973:0,0,0 +h1,7214:7263064,31293973:0,0,0 +k1,7214:32583028,31293973:25319964 +g1,7214:32583028,31293973 +) +(1,7214:6630773,31960151:25952256,410518,101187 +h1,7214:6630773,31960151:0,0,0 +g1,7214:7579210,31960151 +g1,7214:9476084,31960151 +g1,7214:9792230,31960151 +g1,7214:13269833,31960151 +g1,7214:14534416,31960151 +h1,7214:17379727,31960151:0,0,0 +k1,7214:32583029,31960151:15203302 +g1,7214:32583029,31960151 +) +(1,7214:6630773,32626329:25952256,410518,101187 +h1,7214:6630773,32626329:0,0,0 +g1,7214:7579210,32626329 +g1,7214:8211502,32626329 +g1,7214:8843794,32626329 +g1,7214:11056814,32626329 +g1,7214:12005251,32626329 +g1,7214:12637543,32626329 +g1,7214:13902126,32626329 +g1,7214:16431292,32626329 +g1,7214:17063584,32626329 +k1,7214:17063584,32626329:0 +h1,7214:19592749,32626329:0,0,0 +k1,7214:32583029,32626329:12990280 +g1,7214:32583029,32626329 +) +(1,7214:6630773,33292507:25952256,404226,101187 +h1,7214:6630773,33292507:0,0,0 +g1,7214:7579210,33292507 +g1,7214:11372958,33292507 +g1,7214:15166706,33292507 +g1,7214:16747435,33292507 +g1,7214:20541183,33292507 +g1,7214:21489620,33292507 +g1,7214:22754203,33292507 +g1,7214:24651077,33292507 +g1,7214:25599514,33292507 +h1,7214:25915660,33292507:0,0,0 +k1,7214:32583029,33292507:6667369 +g1,7214:32583029,33292507 +) +(1,7214:6630773,33958685:25952256,410518,101187 +h1,7214:6630773,33958685:0,0,0 +g1,7214:7579210,33958685 +g1,7214:8527647,33958685 +g1,7214:11056813,33958685 +g1,7214:14534416,33958685 +h1,7214:17379727,33958685:0,0,0 +k1,7214:32583029,33958685:15203302 +g1,7214:32583029,33958685 +) +(1,7214:6630773,34624863:25952256,388497,9436 +h1,7214:6630773,34624863:0,0,0 +g1,7214:7579210,34624863 +g1,7214:7895356,34624863 +g1,7214:11056813,34624863 +h1,7214:13902124,34624863:0,0,0 +k1,7214:32583028,34624863:18680904 +g1,7214:32583028,34624863 +) +(1,7214:6630773,35291041:25952256,404226,101187 +h1,7214:6630773,35291041:0,0,0 +g1,7214:7579210,35291041 +g1,7214:9792230,35291041 +h1,7214:12953687,35291041:0,0,0 +k1,7214:32583029,35291041:19629342 +g1,7214:32583029,35291041 +) +(1,7214:6630773,35957219:25952256,379060,6290 +h1,7214:6630773,35957219:0,0,0 +g1,7214:7579210,35957219 +g1,7214:7895356,35957219 +g1,7214:8211502,35957219 +g1,7214:8527648,35957219 +g1,7214:8843794,35957219 +g1,7214:9159940,35957219 +g1,7214:9476086,35957219 +h1,7214:10424523,35957219:0,0,0 +k1,7214:32583029,35957219:22158506 +g1,7214:32583029,35957219 +) +(1,7214:6630773,36623397:25952256,388497,9436 +h1,7214:6630773,36623397:0,0,0 +g1,7214:7579210,36623397 +h1,7214:10424521,36623397:0,0,0 +k1,7214:32583029,36623397:22158508 +g1,7214:32583029,36623397 +) +] +) +g1,7215:32583029,36632833 +g1,7215:6630773,36632833 +g1,7215:6630773,36632833 +g1,7215:32583029,36632833 +g1,7215:32583029,36632833 +) +h1,7215:6630773,36829441:0,0,0 +(1,7219:6630773,38147201:25952256,513147,134348 +h1,7218:6630773,38147201:983040,0,0 +k1,7218:8767086,38147201:335384 +k1,7218:12192492,38147201:335383 +k1,7218:14396307,38147201:335384 +k1,7218:15679341,38147201:335383 +k1,7218:18002432,38147201:335384 +k1,7218:20272438,38147201:335383 +k1,7218:21799267,38147201:335384 +$1,7218:21799267,38147201 +$1,7218:22119738,38147201 +k1,7218:24033228,38147201:335383 +(1,7218:24033228,38147201:0,452978,115847 +r1,7218:27556900,38147201:3523672,568825,115847 +k1,7218:24033228,38147201:-3523672 +) +(1,7218:24033228,38147201:3523672,452978,115847 +k1,7218:24033228,38147201:3277 +h1,7218:27553623,38147201:0,411205,112570 +) +k1,7218:27892284,38147201:335384 +k1,7218:29513484,38147201:335384 +k1,7218:32227169,38147201:335383 +k1,7219:32583029,38147201:0 +) +(1,7219:6630773,38988689:25952256,505283,134348 +(1,7218:6630773,38988689:0,459977,115847 +r1,7218:9099310,38988689:2468537,575824,115847 +k1,7218:6630773,38988689:-2468537 +) +(1,7218:6630773,38988689:2468537,459977,115847 +k1,7218:6630773,38988689:3277 +h1,7218:9096033,38988689:0,411205,112570 +) +g1,7218:9298539,38988689 +g1,7218:10868781,38988689 +(1,7218:10868781,38988689:0,452978,115847 +r1,7218:12282182,38988689:1413401,568825,115847 +k1,7218:10868781,38988689:-1413401 +) +(1,7218:10868781,38988689:1413401,452978,115847 +k1,7218:10868781,38988689:3277 +h1,7218:12278905,38988689:0,411205,112570 +) +g1,7218:12481411,38988689 +g1,7218:13366802,38988689 +k1,7219:32583029,38988689:15639927 +g1,7219:32583029,38988689 +) +v1,7221:6630773,40306449:0,393216,0 +(1,7235:6630773,45116945:25952256,5203712,589824 +g1,7235:6630773,45116945 +(1,7235:6630773,45116945:25952256,5203712,589824 +(1,7235:6630773,45706769:25952256,5793536,0 +[1,7235:6630773,45706769:25952256,5793536,0 +(1,7235:6630773,45706769:25952256,5767322,0 +r1,7235:6656987,45706769:26214,5767322,0 +[1,7235:6656987,45706769:25899828,5767322,0 +(1,7235:6656987,45116945:25899828,4587674,0 +[1,7235:7246811,45116945:24720180,4587674,0 +(1,7222:7246811,41616645:24720180,1087374,134348 +k1,7221:8637074,41616645:180560 +k1,7221:11937803,41616645:180560 +(1,7221:11937803,41616645:0,452978,115847 +r1,7235:13702916,41616645:1765113,568825,115847 +k1,7221:11937803,41616645:-1765113 +) +(1,7221:11937803,41616645:1765113,452978,115847 +k1,7221:11937803,41616645:3277 +h1,7221:13699639,41616645:0,411205,112570 +) +k1,7221:13883476,41616645:180560 +k1,7221:15255480,41616645:180559 +(1,7221:15255480,41616645:0,452978,115847 +r1,7235:18779152,41616645:3523672,568825,115847 +k1,7221:15255480,41616645:-3523672 +) +(1,7221:15255480,41616645:3523672,452978,115847 +k1,7221:15255480,41616645:3277 +h1,7221:18775875,41616645:0,411205,112570 +) +k1,7221:18959712,41616645:180560 +k1,7221:21150917,41616645:180560 +k1,7221:21746301,41616645:180541 +k1,7221:24390359,41616645:180560 +k1,7221:25855425,41616645:180560 +k1,7221:27734023,41616645:180560 +k1,7221:29649976,41616645:180560 +k1,7221:30245360,41616645:180541 +k1,7222:31966991,41616645:0 +) +(1,7222:7246811,42458133:24720180,505283,134348 +k1,7221:9905071,42458133:239981 +k1,7221:11123504,42458133:239980 +k1,7221:15680342,42458133:239981 +k1,7221:18870754,42458133:239981 +k1,7221:19920105,42458133:239981 +k1,7221:21179170,42458133:239980 +k1,7221:23654584,42458133:239981 +k1,7221:25165963,42458133:239981 +k1,7221:27586327,42458133:239981 +k1,7221:28574073,42458133:239980 +k1,7221:30682485,42458133:239981 +k1,7222:31966991,42458133:0 +) +(1,7222:7246811,43299621:24720180,513147,126483 +(1,7221:7246811,43299621:0,452978,115847 +r1,7235:9715348,43299621:2468537,568825,115847 +k1,7221:7246811,43299621:-2468537 +) +(1,7221:7246811,43299621:2468537,452978,115847 +k1,7221:7246811,43299621:3277 +h1,7221:9712071,43299621:0,411205,112570 +) +k1,7221:9865921,43299621:150573 +k1,7221:12801118,43299621:150572 +k1,7221:13766959,43299621:150573 +k1,7221:14983803,43299621:150573 +k1,7221:18649726,43299621:150572 +k1,7221:21095370,43299621:150573 +k1,7221:22012058,43299621:150572 +k1,7221:23181716,43299621:150573 +k1,7221:27139275,43299621:150573 +k1,7221:30429677,43299621:150572 +k1,7221:31196288,43299621:150573 +k1,7222:31966991,43299621:0 +) +(1,7222:7246811,44141109:24720180,513147,134348 +k1,7221:7814613,44141109:152959 +k1,7221:10100814,44141109:153004 +k1,7221:11634663,44141109:153005 +k1,7221:12319165,44141109:153005 +k1,7221:14634857,44141109:153004 +k1,7221:16917127,44141109:153005 +k1,7221:18089217,44141109:153005 +k1,7221:19609303,44141109:153005 +k1,7221:20709958,44141109:153004 +k1,7221:23549284,44141109:153005 +k1,7221:25992117,44141109:153005 +k1,7221:27291346,44141109:153004 +k1,7221:29188264,44141109:153005 +k1,7221:31966991,44141109:0 +) +(1,7222:7246811,44982597:24720180,513147,134348 +k1,7221:8180148,44982597:171809 +k1,7221:8766774,44982597:171783 +k1,7221:11964380,44982597:171809 +k1,7221:16559869,44982597:171809 +k1,7221:19815803,44982597:171810 +k1,7221:21683028,44982597:171809 +k1,7221:22672727,44982597:171810 +k1,7221:24238487,44982597:171809 +k1,7221:25542104,44982597:171810 +k1,7221:26128729,44982597:171782 +k1,7221:28260064,44982597:171809 +k1,7221:29300226,44982597:171810 +k1,7221:30576317,44982597:171809 +k1,7221:31966991,44982597:0 +) +] +) +] +r1,7235:32583029,45706769:26214,5767322,0 +) +] +) +) +g1,7235:32583029,45116945 +) +] +(1,7235:32583029,45706769:0,0,0 +g1,7235:32583029,45706769 +) +) +] +(1,7235:6630773,47279633:25952256,0,0 +h1,7235:6630773,47279633:25952256,0,0 +) +] +h1,7235:4262630,4025873:0,0,0 +] +!25315 }135 -Input:1019:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1020:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1021:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:1015:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1016:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1017:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {136 -[1,7271:4262630,47279633:28320399,43253760,0 -(1,7271:4262630,4025873:0,0,0 -[1,7271:-473657,4025873:25952256,0,0 -(1,7271:-473657,-710414:25952256,0,0 -h1,7271:-473657,-710414:0,0,0 -(1,7271:-473657,-710414:0,0,0 -(1,7271:-473657,-710414:0,0,0 -g1,7271:-473657,-710414 -(1,7271:-473657,-710414:65781,0,65781 -g1,7271:-407876,-710414 -[1,7271:-407876,-644633:0,0,0 +[1,7276:4262630,47279633:28320399,43253760,0 +(1,7276:4262630,4025873:0,0,0 +[1,7276:-473657,4025873:25952256,0,0 +(1,7276:-473657,-710414:25952256,0,0 +h1,7276:-473657,-710414:0,0,0 +(1,7276:-473657,-710414:0,0,0 +(1,7276:-473657,-710414:0,0,0 +g1,7276:-473657,-710414 +(1,7276:-473657,-710414:65781,0,65781 +g1,7276:-407876,-710414 +[1,7276:-407876,-644633:0,0,0 ] ) -k1,7271:-473657,-710414:-65781 +k1,7276:-473657,-710414:-65781 ) ) -k1,7271:25478599,-710414:25952256 -g1,7271:25478599,-710414 +k1,7276:25478599,-710414:25952256 +g1,7276:25478599,-710414 ) ] ) -[1,7271:6630773,47279633:25952256,43253760,0 -[1,7271:6630773,4812305:25952256,786432,0 -(1,7271:6630773,4812305:25952256,505283,134348 -(1,7271:6630773,4812305:25952256,505283,134348 -g1,7271:3078558,4812305 -[1,7271:3078558,4812305:0,0,0 -(1,7271:3078558,2439708:0,1703936,0 -k1,7271:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7271:2537886,2439708:1179648,16384,0 +[1,7276:6630773,47279633:25952256,43253760,0 +[1,7276:6630773,4812305:25952256,786432,0 +(1,7276:6630773,4812305:25952256,505283,134348 +(1,7276:6630773,4812305:25952256,505283,134348 +g1,7276:3078558,4812305 +[1,7276:3078558,4812305:0,0,0 +(1,7276:3078558,2439708:0,1703936,0 +k1,7276:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7276:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7271:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7276:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7271:3078558,4812305:0,0,0 -(1,7271:3078558,2439708:0,1703936,0 -g1,7271:29030814,2439708 -g1,7271:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7271:36151628,1915420:16384,1179648,0 +[1,7276:3078558,4812305:0,0,0 +(1,7276:3078558,2439708:0,1703936,0 +g1,7276:29030814,2439708 +g1,7276:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7276:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7271:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7276:37855564,2439708:1179648,16384,0 ) ) -k1,7271:3078556,2439708:-34777008 +k1,7276:3078556,2439708:-34777008 ) ] -[1,7271:3078558,4812305:0,0,0 -(1,7271:3078558,49800853:0,16384,2228224 -k1,7271:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7271:2537886,49800853:1179648,16384,0 +[1,7276:3078558,4812305:0,0,0 +(1,7276:3078558,49800853:0,16384,2228224 +k1,7276:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7276:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7271:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7276:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) -) -) -] -[1,7271:3078558,4812305:0,0,0 -(1,7271:3078558,49800853:0,16384,2228224 -g1,7271:29030814,49800853 -g1,7271:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7271:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +) +) +] +[1,7276:3078558,4812305:0,0,0 +(1,7276:3078558,49800853:0,16384,2228224 +g1,7276:29030814,49800853 +g1,7276:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7276:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7271:37855564,49800853:1179648,16384,0 -) -) -k1,7271:3078556,49800853:-34777008 -) -] -g1,7271:6630773,4812305 -g1,7271:6630773,4812305 -g1,7271:8843268,4812305 -g1,7271:10880782,4812305 -g1,7271:13281365,4812305 -k1,7271:31387653,4812305:18106288 -) -) -] -[1,7271:6630773,45706769:25952256,40108032,0 -(1,7271:6630773,45706769:25952256,40108032,0 -(1,7271:6630773,45706769:0,0,0 -g1,7271:6630773,45706769 -) -[1,7271:6630773,45706769:25952256,40108032,0 -v1,7230:6630773,6254097:0,393216,0 -(1,7230:6630773,17182151:25952256,11321270,616038 -g1,7230:6630773,17182151 -(1,7230:6630773,17182151:25952256,11321270,616038 -(1,7230:6630773,17798189:25952256,11937308,0 -[1,7230:6630773,17798189:25952256,11937308,0 -(1,7230:6630773,17771975:25952256,11911094,0 -r1,7230:6656987,17771975:26214,11911094,0 -[1,7230:6656987,17771975:25899828,11911094,0 -(1,7230:6656987,17182151:25899828,10731446,0 -[1,7230:7246811,17182151:24720180,10731446,0 -(1,7217:7246811,6963852:24720180,513147,134348 -k1,7216:8486331,6963852:220435 -k1,7216:10549638,6963852:220435 -k1,7216:11429365,6963852:220435 -k1,7216:12420504,6963852:220436 -k1,7216:15195532,6963852:220435 -k1,7216:16683433,6963852:220435 -k1,7216:17259728,6963852:220435 -k1,7216:20165173,6963852:220435 -k1,7216:21203497,6963852:220435 -k1,7216:24513955,6963852:220435 -k1,7216:25350429,6963852:220436 -k1,7216:27849551,6963852:220435 -h1,7216:29218598,6963852:0,0,0 -k1,7216:29439033,6963852:220435 -k1,7216:30468838,6963852:220435 -k1,7216:31966991,6963852:0 -) -(1,7217:7246811,7805340:24720180,513147,134348 -h1,7216:8043729,7805340:0,0,0 -k1,7216:8301082,7805340:257353 -k1,7216:9506086,7805340:257353 -k1,7216:11260937,7805340:257353 -k1,7216:12386642,7805340:257353 -k1,7216:13748277,7805340:257353 -k1,7216:15513613,7805340:257353 -k1,7216:17038432,7805340:257353 -k1,7216:18314870,7805340:257353 -k1,7216:21503648,7805340:257353 -k1,7216:22420293,7805340:257353 -k1,7216:23448349,7805340:257353 -k1,7216:25665228,7805340:257353 -k1,7216:27316532,7805340:257353 -k1,7216:30028208,7805340:257353 -(1,7216:30028208,7805340:0,452978,115847 -r1,7230:31793321,7805340:1765113,568825,115847 -k1,7216:30028208,7805340:-1765113 -) -(1,7216:30028208,7805340:1765113,452978,115847 -k1,7216:30028208,7805340:3277 -h1,7216:31790044,7805340:0,411205,112570 -) -k1,7216:31966991,7805340:0 -) -(1,7217:7246811,8646828:24720180,513147,115847 -k1,7216:8407410,8646828:207050 -k1,7216:9718743,8646828:207051 -k1,7216:11018278,8646828:207050 -(1,7216:11018278,8646828:0,452978,115847 -r1,7230:13486815,8646828:2468537,568825,115847 -k1,7216:11018278,8646828:-2468537 -) -(1,7216:11018278,8646828:2468537,452978,115847 -k1,7216:11018278,8646828:3277 -h1,7216:13483538,8646828:0,411205,112570 -) -k1,7216:13693866,8646828:207051 -k1,7216:15092361,8646828:207050 -(1,7216:15092361,8646828:0,452978,115847 -r1,7230:19319457,8646828:4227096,568825,115847 -k1,7216:15092361,8646828:-4227096 -) -(1,7216:15092361,8646828:4227096,452978,115847 -k1,7216:15092361,8646828:3277 -h1,7216:19316180,8646828:0,411205,112570 -) -k1,7216:19526508,8646828:207051 -k1,7216:20384986,8646828:207050 -k1,7216:22796013,8646828:207051 -k1,7216:25278473,8646828:207050 -k1,7216:29466181,8646828:207051 -k1,7216:30947906,8646828:207050 -k1,7216:31966991,8646828:0 -) -(1,7217:7246811,9488316:24720180,505283,126483 -g1,7216:8942227,9488316 -g1,7216:9757494,9488316 -g1,7216:10975808,9488316 -g1,7216:13145705,9488316 -g1,7216:15213365,9488316 -g1,7216:16064022,9488316 -g1,7216:18936465,9488316 -g1,7216:20684310,9488316 -g1,7216:21415036,9488316 -g1,7216:24102667,9488316 -g1,7216:27080623,9488316 -g1,7216:28041380,9488316 -(1,7216:28041380,9488316:0,452978,115847 -r1,7230:29806493,9488316:1765113,568825,115847 -k1,7216:28041380,9488316:-1765113 -) -(1,7216:28041380,9488316:1765113,452978,115847 -k1,7216:28041380,9488316:3277 -h1,7216:29803216,9488316:0,411205,112570 -) -k1,7217:31966991,9488316:1986828 -g1,7217:31966991,9488316 -) -v1,7219:7246811,10678782:0,393216,0 -(1,7226:7246811,12960955:24720180,2675389,196608 -g1,7226:7246811,12960955 -g1,7226:7246811,12960955 -g1,7226:7050203,12960955 -(1,7226:7050203,12960955:0,2675389,196608 -r1,7230:32163599,12960955:25113396,2871997,196608 -k1,7226:7050203,12960955:-25113396 -) -(1,7226:7050203,12960955:25113396,2675389,196608 -[1,7226:7246811,12960955:24720180,2478781,0 -(1,7221:7246811,10886400:24720180,404226,76021 -(1,7220:7246811,10886400:0,0,0 -g1,7220:7246811,10886400 -g1,7220:7246811,10886400 -g1,7220:6919131,10886400 -(1,7220:6919131,10886400:0,0,0 -) -g1,7220:7246811,10886400 -) -g1,7221:7879103,10886400 -g1,7221:8827541,10886400 -k1,7221:8827541,10886400:0 -h1,7221:11672852,10886400:0,0,0 -k1,7221:31966992,10886400:20294140 -g1,7221:31966992,10886400 -) -(1,7222:7246811,11552578:24720180,404226,76021 -h1,7222:7246811,11552578:0,0,0 -k1,7222:7246811,11552578:0 -h1,7222:9775976,11552578:0,0,0 -k1,7222:31966992,11552578:22191016 -g1,7222:31966992,11552578 -) -(1,7223:7246811,12218756:24720180,404226,76021 -h1,7223:7246811,12218756:0,0,0 -k1,7223:7246811,12218756:0 -h1,7223:11356705,12218756:0,0,0 -k1,7223:31966991,12218756:20610286 -g1,7223:31966991,12218756 -) -(1,7224:7246811,12884934:24720180,404226,76021 -h1,7224:7246811,12884934:0,0,0 -k1,7224:7246811,12884934:0 -h1,7224:9143685,12884934:0,0,0 -k1,7224:31966991,12884934:22823306 -g1,7224:31966991,12884934 -) -] -) -g1,7226:31966991,12960955 -g1,7226:7246811,12960955 -g1,7226:7246811,12960955 -g1,7226:31966991,12960955 -g1,7226:31966991,12960955 -) -h1,7226:7246811,13157563:0,0,0 -(1,7230:7246811,14523339:24720180,513147,126483 -h1,7229:7246811,14523339:983040,0,0 -k1,7229:11159175,14523339:201060 -(1,7229:11159175,14523339:0,452978,115847 -r1,7230:13627712,14523339:2468537,568825,115847 -k1,7229:11159175,14523339:-2468537 -) -(1,7229:11159175,14523339:2468537,452978,115847 -k1,7229:11159175,14523339:3277 -h1,7229:13624435,14523339:0,411205,112570 -) -k1,7229:14002441,14523339:201059 -(1,7229:14002441,14523339:0,452978,115847 -r1,7230:18229537,14523339:4227096,568825,115847 -k1,7229:14002441,14523339:-4227096 -) -(1,7229:14002441,14523339:4227096,452978,115847 -k1,7229:14002441,14523339:3277 -h1,7229:18226260,14523339:0,411205,112570 -) -k1,7229:18430597,14523339:201060 -k1,7229:19823101,14523339:201059 -(1,7229:19823101,14523339:0,452978,115847 -r1,7230:21588214,14523339:1765113,568825,115847 -k1,7229:19823101,14523339:-1765113 -) -(1,7229:19823101,14523339:1765113,452978,115847 -k1,7229:19823101,14523339:3277 -h1,7229:21584937,14523339:0,411205,112570 -) -k1,7229:21789274,14523339:201060 -k1,7229:22981893,14523339:201059 -k1,7229:24536927,14523339:201060 -k1,7229:27594700,14523339:201059 -k1,7229:29377144,14523339:201060 -k1,7229:30862709,14523339:201059 -k1,7229:31966991,14523339:0 -) -(1,7230:7246811,15364827:24720180,505283,134348 -k1,7229:8137271,15364827:142694 -k1,7229:9793191,15364827:142694 -k1,7229:11633922,15364827:142693 -k1,7229:12644968,15364827:142694 -k1,7229:13779222,15364827:142694 -k1,7229:14537954,15364827:142694 -k1,7229:16568085,15364827:142694 -k1,7229:18533334,15364827:142693 -k1,7229:19695113,15364827:142694 -k1,7229:21227170,15364827:142694 -k1,7229:24509694,15364827:142694 -k1,7229:25268426,15364827:142694 -k1,7229:26181822,15364827:142693 -k1,7229:28284042,15364827:142694 -k1,7229:30636610,15364827:142694 -k1,7229:31966991,15364827:0 -) -(1,7230:7246811,16206315:24720180,505283,134348 -k1,7229:7893652,16206315:188744 -k1,7229:8613892,16206315:188743 -k1,7229:12328473,16206315:188744 -k1,7229:15301842,16206315:188744 -k1,7229:16509670,16206315:188743 -k1,7229:19629839,16206315:188744 -k1,7229:21830538,16206315:188744 -k1,7229:22764425,16206315:188743 -k1,7229:23604597,16206315:188744 -k1,7229:26227348,16206315:188744 -k1,7229:27435176,16206315:188743 -k1,7229:29013283,16206315:188744 -k1,7229:31966991,16206315:0 -) -(1,7230:7246811,17047803:24720180,513147,134348 -k1,7229:9854816,17047803:193659 -k1,7229:11616096,17047803:193659 -k1,7229:12828839,17047803:193658 -k1,7229:14982024,17047803:193659 -k1,7229:16873721,17047803:193659 -k1,7229:20505399,17047803:193659 -k1,7229:23585919,17047803:193659 -k1,7229:26564202,17047803:193658 -k1,7229:27749421,17047803:193659 -k1,7229:29009351,17047803:193659 -k1,7230:31966991,17047803:0 -k1,7230:31966991,17047803:0 -) -] -) -] -r1,7230:32583029,17771975:26214,11911094,0 -) -] -) -) -g1,7230:32583029,17182151 -) -h1,7230:6630773,17798189:0,0,0 -(1,7232:6630773,19889449:25952256,555811,139133 -(1,7232:6630773,19889449:2450326,534184,12975 -g1,7232:6630773,19889449 -g1,7232:9081099,19889449 -) -g1,7232:12629350,19889449 -$1,7232:12629350,19889449 -$1,7232:13144791,19889449 -g1,7232:13369711,19889449 -g1,7232:14936939,19889449 -g1,7232:19309895,19889449 -$1,7232:19309895,19889449 -$1,7232:19813801,19889449 -k1,7232:32583029,19889449:12769228 -g1,7232:32583029,19889449 -) -(1,7238:6630773,21124153:25952256,513147,126483 -k1,7237:7773109,21124153:188787 -k1,7237:9054382,21124153:188788 -k1,7237:10262254,21124153:188787 -k1,7237:12104514,21124153:188787 -k1,7237:15319099,21124153:188788 -k1,7237:16194048,21124153:188787 -k1,7237:17330486,21124153:188787 -k1,7237:20529998,21124153:188788 -$1,7237:20529998,21124153 -$1,7237:20974987,21124153 -k1,7237:21163774,21124153:188787 -k1,7237:22424730,21124153:188787 -k1,7237:25510865,21124153:188788 -k1,7237:28089095,21124153:188787 -k1,7237:29296967,21124153:188787 -k1,7237:30578240,21124153:188788 -k1,7237:31426319,21124153:188787 -k1,7237:32583029,21124153:0 -) -(1,7238:6630773,21965641:25952256,513147,134348 -g1,7237:7489294,21965641 -g1,7237:9385250,21965641 -g1,7237:12369104,21965641 -g1,7237:13329861,21965641 -g1,7237:15956544,21965641 -g1,7237:17347218,21965641 -k1,7238:32583029,21965641:11989813 -g1,7238:32583029,21965641 -) -v1,7240:6630773,23131421:0,393216,0 -(1,7253:6630773,26206318:25952256,3468113,196608 -g1,7253:6630773,26206318 -g1,7253:6630773,26206318 -g1,7253:6434165,26206318 -(1,7253:6434165,26206318:0,3468113,196608 -r1,7253:32779637,26206318:26345472,3664721,196608 -k1,7253:6434165,26206318:-26345472 -) -(1,7253:6434165,26206318:26345472,3468113,196608 -[1,7253:6630773,26206318:25952256,3271505,0 -(1,7242:6630773,23345331:25952256,410518,101187 -(1,7241:6630773,23345331:0,0,0 -g1,7241:6630773,23345331 -g1,7241:6630773,23345331 -g1,7241:6303093,23345331 -(1,7241:6303093,23345331:0,0,0 -) -g1,7241:6630773,23345331 -) -k1,7242:6630773,23345331:0 -g1,7242:8527648,23345331 -g1,7242:9159940,23345331 -g1,7242:12953689,23345331 -g1,7242:13585981,23345331 -g1,7242:14218273,23345331 -g1,7242:17695877,23345331 -g1,7242:19908897,23345331 -g1,7242:20541189,23345331 -h1,7242:23702646,23345331:0,0,0 -k1,7242:32583029,23345331:8880383 -g1,7242:32583029,23345331 -) -(1,7246:6630773,24077045:25952256,404226,76021 -(1,7244:6630773,24077045:0,0,0 -g1,7244:6630773,24077045 -g1,7244:6630773,24077045 -g1,7244:6303093,24077045 -(1,7244:6303093,24077045:0,0,0 -) -g1,7244:6630773,24077045 -) -g1,7246:7579210,24077045 -g1,7246:8843793,24077045 -h1,7246:11689104,24077045:0,0,0 -k1,7246:32583028,24077045:20893924 -g1,7246:32583028,24077045 -) -(1,7248:6630773,25398583:25952256,410518,101187 -(1,7247:6630773,25398583:0,0,0 -g1,7247:6630773,25398583 -g1,7247:6630773,25398583 -g1,7247:6303093,25398583 -(1,7247:6303093,25398583:0,0,0 -) -g1,7247:6630773,25398583 -) -k1,7248:6630773,25398583:0 -g1,7248:8527648,25398583 -g1,7248:9159940,25398583 -g1,7248:12953689,25398583 -g1,7248:13585981,25398583 -g1,7248:14218273,25398583 -g1,7248:17695877,25398583 -g1,7248:19908897,25398583 -g1,7248:20541189,25398583 -h1,7248:24018792,25398583:0,0,0 -k1,7248:32583029,25398583:8564237 -g1,7248:32583029,25398583 -) -(1,7252:6630773,26130297:25952256,404226,76021 -(1,7250:6630773,26130297:0,0,0 -g1,7250:6630773,26130297 -g1,7250:6630773,26130297 -g1,7250:6303093,26130297 -(1,7250:6303093,26130297:0,0,0 -) -g1,7250:6630773,26130297 -) -g1,7252:7579210,26130297 -g1,7252:8843793,26130297 -h1,7252:11689104,26130297:0,0,0 -k1,7252:32583028,26130297:20893924 -g1,7252:32583028,26130297 -) -] -) -g1,7253:32583029,26206318 -g1,7253:6630773,26206318 -g1,7253:6630773,26206318 -g1,7253:32583029,26206318 -g1,7253:32583029,26206318 -) -h1,7253:6630773,26402926:0,0,0 -(1,7257:6630773,27744015:25952256,513147,115847 -h1,7256:6630773,27744015:983040,0,0 -k1,7256:10655031,27744015:251350 -(1,7256:10655031,27744015:0,452978,115847 -r1,7256:14178703,27744015:3523672,568825,115847 -k1,7256:10655031,27744015:-3523672 -) -(1,7256:10655031,27744015:3523672,452978,115847 -k1,7256:10655031,27744015:3277 -h1,7256:14175426,27744015:0,411205,112570 -) -k1,7256:14603724,27744015:251351 -k1,7256:17945097,27744015:251350 -k1,7256:20225443,27744015:251351 -k1,7256:21762609,27744015:251350 -k1,7256:24025914,27744015:251350 -k1,7256:25296350,27744015:251351 -k1,7256:27572762,27744015:251350 -k1,7256:28483405,27744015:251351 -k1,7256:31189078,27744015:251350 -k1,7256:32583029,27744015:0 -) -(1,7257:6630773,28585503:25952256,513147,126483 -g1,7256:7849087,28585503 -g1,7256:9701789,28585503 -g1,7256:11985063,28585503 -g1,7256:12870454,28585503 -g1,7256:15145208,28585503 -g1,7256:16292088,28585503 -(1,7256:16292088,28585503:0,452978,115847 -r1,7256:18057201,28585503:1765113,568825,115847 -k1,7256:16292088,28585503:-1765113 -) -(1,7256:16292088,28585503:1765113,452978,115847 -k1,7256:16292088,28585503:3277 -h1,7256:18053924,28585503:0,411205,112570 -) -k1,7257:32583029,28585503:14352158 -g1,7257:32583029,28585503 -) -v1,7259:6630773,29926593:0,393216,0 -(1,7260:6630773,34737089:25952256,5203712,616038 -g1,7260:6630773,34737089 -(1,7260:6630773,34737089:25952256,5203712,616038 -(1,7260:6630773,35353127:25952256,5819750,0 -[1,7260:6630773,35353127:25952256,5819750,0 -(1,7260:6630773,35326913:25952256,5767322,0 -r1,7260:6656987,35326913:26214,5767322,0 -[1,7260:6656987,35326913:25899828,5767322,0 -(1,7260:6656987,34737089:25899828,4587674,0 -[1,7260:7246811,34737089:24720180,4587674,0 -(1,7260:7246811,31236789:24720180,1087374,134348 -k1,7259:8671838,31236789:215324 -k1,7259:11060336,31236789:215324 -k1,7259:12294744,31236789:215323 -k1,7259:15070560,31236789:215324 -k1,7259:15901922,31236789:215324 -k1,7259:17136331,31236789:215324 -k1,7259:21002010,31236789:215324 -k1,7259:25154082,31236789:215324 -k1,7259:27398400,31236789:215323 -k1,7259:28685893,31236789:215324 -k1,7259:30231598,31236789:215324 -k1,7259:31966991,31236789:0 -) -(1,7260:7246811,32078277:24720180,513147,126483 -k1,7259:12448258,32078277:296077 -k1,7259:15702630,32078277:296077 -k1,7259:17419528,32078277:296077 -k1,7259:19208515,32078277:296077 -k1,7259:20523677,32078277:296077 -k1,7259:24626740,32078277:296077 -k1,7259:26960987,32078277:296077 -k1,7259:27873102,32078277:296077 -k1,7259:29188264,32078277:296077 -k1,7260:31966991,32078277:0 -) -(1,7260:7246811,32919765:24720180,513147,134348 -(1,7259:7246811,32919765:0,452978,115847 -r1,7260:9363636,32919765:2116825,568825,115847 -k1,7259:7246811,32919765:-2116825 -) -(1,7259:7246811,32919765:2116825,452978,115847 -k1,7259:7246811,32919765:3277 -h1,7259:9360359,32919765:0,411205,112570 -) -k1,7259:9594202,32919765:230566 -k1,7259:11568027,32919765:230567 -k1,7259:15160590,32919765:230566 -k1,7259:16200526,32919765:230566 -k1,7259:17450177,32919765:230566 -k1,7259:20308738,32919765:230567 -k1,7259:21730749,32919765:230566 -k1,7259:23291696,32919765:230566 -k1,7259:24626544,32919765:230566 -k1,7259:25725463,32919765:230567 -k1,7259:28160005,32919765:230566 -k1,7259:31966991,32919765:0 -) -(1,7260:7246811,33761253:24720180,513147,7863 -k1,7259:9339137,33761253:269770 -k1,7259:10627992,33761253:269770 -k1,7259:13352085,33761253:269770 -k1,7259:15135081,33761253:269770 -k1,7259:16352502,33761253:269770 -k1,7259:20093714,33761253:269770 -k1,7259:21022776,33761253:269770 -k1,7259:22311631,33761253:269770 -k1,7259:26062018,33761253:269770 -k1,7259:27899409,33761253:269770 -k1,7259:29188264,33761253:269770 -k1,7259:31966991,33761253:0 -) -(1,7260:7246811,34602741:24720180,505283,134348 -k1,7260:31966992,34602741:22586984 -g1,7260:31966992,34602741 -) -] -) -] -r1,7260:32583029,35326913:26214,5767322,0 -) -] -) -) -g1,7260:32583029,34737089 -) -h1,7260:6630773,35353127:0,0,0 -(1,7263:6630773,38660297:25952256,32768,229376 -(1,7263:6630773,38660297:0,32768,229376 -(1,7263:6630773,38660297:5505024,32768,229376 -r1,7263:12135797,38660297:5505024,262144,229376 -) -k1,7263:6630773,38660297:-5505024 -) -(1,7263:6630773,38660297:25952256,32768,0 -r1,7263:32583029,38660297:25952256,32768,0 -) -) -(1,7263:6630773,40264625:25952256,606339,161218 -(1,7263:6630773,40264625:1974731,582746,14155 -g1,7263:6630773,40264625 -g1,7263:8605504,40264625 -) -g1,7263:11418572,40264625 -g1,7263:13932009,40264625 -k1,7263:32583029,40264625:15782902 -g1,7263:32583029,40264625 -) -(1,7269:6630773,41499329:25952256,513147,126483 -k1,7268:7402623,41499329:144015 -k1,7268:8135150,41499329:144014 -k1,7268:9298250,41499329:144015 -k1,7268:11760272,41499329:144014 -k1,7268:12555715,41499329:144015 -k1,7268:13447495,41499329:144014 -k1,7268:15303966,41499329:144015 -k1,7268:16439540,41499329:144014 -k1,7268:19673578,41499329:144015 -k1,7268:20579120,41499329:144014 -k1,7268:23010997,41499329:144015 -k1,7268:26328920,41499329:144014 -k1,7268:27966501,41499329:144015 -k1,7268:28796677,41499329:144014 -h1,7268:28796677,41499329:0,0,0 -k1,7268:29477519,41499329:285660 -k1,7268:30158361,41499329:285660 -k1,7268:30697558,41499329:144015 -k1,7268:32583029,41499329:0 -) -(1,7269:6630773,42340817:25952256,513147,138281 -k1,7268:7772317,42340817:273192 -k1,7268:9457809,42340817:273191 -k1,7268:10417163,42340817:273192 -$1,7268:10417163,42340817 -$1,7268:10968976,42340817 -k1,7268:11242167,42340817:273191 -k1,7268:12046856,42340817:273192 -k1,7268:15398273,42340817:273191 -k1,7268:16432993,42340817:273192 -$1,7268:16432993,42340817 -$1,7268:16935654,42340817 -k1,7268:17382515,42340817:273191 -k1,7268:19587053,42340817:273192 -k1,7268:22733998,42340817:273191 -k1,7268:23998750,42340817:273192 -k1,7268:25785167,42340817:273191 -k1,7268:26674397,42340817:273192 -k1,7268:29709931,42340817:273191 -k1,7268:32583029,42340817:0 -) -(1,7269:6630773,43182305:25952256,513147,134348 -k1,7268:8802132,43182305:236736 -k1,7268:9698160,43182305:236736 -k1,7268:12426575,43182305:236736 -k1,7268:15361428,43182305:236736 -k1,7268:16789609,43182305:236736 -k1,7268:18548091,43182305:236736 -k1,7268:19931053,43182305:236737 -$1,7268:19931053,43182305 -$1,7268:20251524,43182305 -k1,7268:22066367,43182305:236736 -k1,7268:23499790,43182305:236736 -k1,7268:25820571,43182305:236736 -k1,7268:26716599,43182305:236736 -k1,7268:28941042,43182305:236736 -k1,7268:32051532,43182305:236736 -k1,7268:32583029,43182305:0 -) -(1,7269:6630773,44023793:25952256,505283,134348 -k1,7268:10144408,44023793:232903 -k1,7268:14002106,44023793:232902 -k1,7268:15668937,44023793:232903 -k1,7268:16316649,44023793:232869 -k1,7268:17740997,44023793:232903 -k1,7268:21198927,44023793:232903 -k1,7268:26004931,44023793:232902 -k1,7268:29498905,44023793:232903 -k1,7268:32583029,44023793:0 -) -(1,7269:6630773,44865281:25952256,505283,134348 -k1,7268:9775463,44865281:209988 -k1,7268:11494090,44865281:209988 -k1,7268:12796563,44865281:209988 -k1,7268:13538048,44865281:209988 -k1,7268:14814307,44865281:209988 -k1,7268:18113008,44865281:209989 -k1,7268:19514441,44865281:209988 -k1,7268:21955930,44865281:209988 -k1,7268:25076372,44865281:209988 -k1,7268:27438562,44865281:209988 -k1,7268:28667635,44865281:209988 -k1,7268:30498984,44865281:209988 -k1,7268:32583029,44865281:0 -) -(1,7269:6630773,45706769:25952256,513147,126483 -g1,7268:7481430,45706769 -g1,7268:9362313,45706769 -g1,7268:10580627,45706769 -g1,7268:14389579,45706769 -g1,7268:15248100,45706769 -g1,7268:17844636,45706769 -g1,7268:19760253,45706769 -g1,7268:20618774,45706769 -k1,7269:32583029,45706769:9472576 -g1,7269:32583029,45706769 -) -] -(1,7271:32583029,45706769:0,0,0 -g1,7271:32583029,45706769 -) -) -] -(1,7271:6630773,47279633:25952256,0,0 -h1,7271:6630773,47279633:25952256,0,0 -) -] -h1,7271:4262630,4025873:0,0,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7276:37855564,49800853:1179648,16384,0 +) +) +k1,7276:3078556,49800853:-34777008 +) +] +g1,7276:6630773,4812305 +g1,7276:6630773,4812305 +g1,7276:8843268,4812305 +g1,7276:10880782,4812305 +g1,7276:13281365,4812305 +k1,7276:31387653,4812305:18106288 +) +) +] +[1,7276:6630773,45706769:25952256,40108032,0 +(1,7276:6630773,45706769:25952256,40108032,0 +(1,7276:6630773,45706769:0,0,0 +g1,7276:6630773,45706769 +) +[1,7276:6630773,45706769:25952256,40108032,0 +v1,7235:6630773,6254097:0,393216,0 +(1,7235:6630773,17182151:25952256,11321270,616038 +g1,7235:6630773,17182151 +(1,7235:6630773,17182151:25952256,11321270,616038 +(1,7235:6630773,17798189:25952256,11937308,0 +[1,7235:6630773,17798189:25952256,11937308,0 +(1,7235:6630773,17771975:25952256,11911094,0 +r1,7235:6656987,17771975:26214,11911094,0 +[1,7235:6656987,17771975:25899828,11911094,0 +(1,7235:6656987,17182151:25899828,10731446,0 +[1,7235:7246811,17182151:24720180,10731446,0 +(1,7222:7246811,6963852:24720180,513147,134348 +k1,7221:8486331,6963852:220435 +k1,7221:10549638,6963852:220435 +k1,7221:11429365,6963852:220435 +k1,7221:12420504,6963852:220436 +k1,7221:15195532,6963852:220435 +k1,7221:16683433,6963852:220435 +k1,7221:17259728,6963852:220435 +k1,7221:20165173,6963852:220435 +k1,7221:21203497,6963852:220435 +k1,7221:24513955,6963852:220435 +k1,7221:25350429,6963852:220436 +k1,7221:27849551,6963852:220435 +h1,7221:29218598,6963852:0,0,0 +k1,7221:29439033,6963852:220435 +k1,7221:30468838,6963852:220435 +k1,7221:31966991,6963852:0 +) +(1,7222:7246811,7805340:24720180,513147,134348 +h1,7221:8043729,7805340:0,0,0 +k1,7221:8301082,7805340:257353 +k1,7221:9506086,7805340:257353 +k1,7221:11260937,7805340:257353 +k1,7221:12386642,7805340:257353 +k1,7221:13748277,7805340:257353 +k1,7221:15513613,7805340:257353 +k1,7221:17038432,7805340:257353 +k1,7221:18314870,7805340:257353 +k1,7221:21503648,7805340:257353 +k1,7221:22420293,7805340:257353 +k1,7221:23448349,7805340:257353 +k1,7221:25665228,7805340:257353 +k1,7221:27316532,7805340:257353 +k1,7221:30028208,7805340:257353 +(1,7221:30028208,7805340:0,452978,115847 +r1,7235:31793321,7805340:1765113,568825,115847 +k1,7221:30028208,7805340:-1765113 +) +(1,7221:30028208,7805340:1765113,452978,115847 +k1,7221:30028208,7805340:3277 +h1,7221:31790044,7805340:0,411205,112570 +) +k1,7221:31966991,7805340:0 +) +(1,7222:7246811,8646828:24720180,513147,115847 +k1,7221:8407410,8646828:207050 +k1,7221:9718743,8646828:207051 +k1,7221:11018278,8646828:207050 +(1,7221:11018278,8646828:0,452978,115847 +r1,7235:13486815,8646828:2468537,568825,115847 +k1,7221:11018278,8646828:-2468537 +) +(1,7221:11018278,8646828:2468537,452978,115847 +k1,7221:11018278,8646828:3277 +h1,7221:13483538,8646828:0,411205,112570 +) +k1,7221:13693866,8646828:207051 +k1,7221:15092361,8646828:207050 +(1,7221:15092361,8646828:0,452978,115847 +r1,7235:19319457,8646828:4227096,568825,115847 +k1,7221:15092361,8646828:-4227096 +) +(1,7221:15092361,8646828:4227096,452978,115847 +k1,7221:15092361,8646828:3277 +h1,7221:19316180,8646828:0,411205,112570 +) +k1,7221:19526508,8646828:207051 +k1,7221:20384986,8646828:207050 +k1,7221:22796013,8646828:207051 +k1,7221:25278473,8646828:207050 +k1,7221:29466181,8646828:207051 +k1,7221:30947906,8646828:207050 +k1,7221:31966991,8646828:0 +) +(1,7222:7246811,9488316:24720180,505283,126483 +g1,7221:8942227,9488316 +g1,7221:9757494,9488316 +g1,7221:10975808,9488316 +g1,7221:13145705,9488316 +g1,7221:15213365,9488316 +g1,7221:16064022,9488316 +g1,7221:18936465,9488316 +g1,7221:20684310,9488316 +g1,7221:21415036,9488316 +g1,7221:24102667,9488316 +g1,7221:27080623,9488316 +g1,7221:28041380,9488316 +(1,7221:28041380,9488316:0,452978,115847 +r1,7235:29806493,9488316:1765113,568825,115847 +k1,7221:28041380,9488316:-1765113 +) +(1,7221:28041380,9488316:1765113,452978,115847 +k1,7221:28041380,9488316:3277 +h1,7221:29803216,9488316:0,411205,112570 +) +k1,7222:31966991,9488316:1986828 +g1,7222:31966991,9488316 +) +v1,7224:7246811,10678782:0,393216,0 +(1,7231:7246811,12960955:24720180,2675389,196608 +g1,7231:7246811,12960955 +g1,7231:7246811,12960955 +g1,7231:7050203,12960955 +(1,7231:7050203,12960955:0,2675389,196608 +r1,7235:32163599,12960955:25113396,2871997,196608 +k1,7231:7050203,12960955:-25113396 +) +(1,7231:7050203,12960955:25113396,2675389,196608 +[1,7231:7246811,12960955:24720180,2478781,0 +(1,7226:7246811,10886400:24720180,404226,76021 +(1,7225:7246811,10886400:0,0,0 +g1,7225:7246811,10886400 +g1,7225:7246811,10886400 +g1,7225:6919131,10886400 +(1,7225:6919131,10886400:0,0,0 +) +g1,7225:7246811,10886400 +) +g1,7226:7879103,10886400 +g1,7226:8827541,10886400 +k1,7226:8827541,10886400:0 +h1,7226:11672852,10886400:0,0,0 +k1,7226:31966992,10886400:20294140 +g1,7226:31966992,10886400 +) +(1,7227:7246811,11552578:24720180,404226,76021 +h1,7227:7246811,11552578:0,0,0 +k1,7227:7246811,11552578:0 +h1,7227:9775976,11552578:0,0,0 +k1,7227:31966992,11552578:22191016 +g1,7227:31966992,11552578 +) +(1,7228:7246811,12218756:24720180,404226,76021 +h1,7228:7246811,12218756:0,0,0 +k1,7228:7246811,12218756:0 +h1,7228:11356705,12218756:0,0,0 +k1,7228:31966991,12218756:20610286 +g1,7228:31966991,12218756 +) +(1,7229:7246811,12884934:24720180,404226,76021 +h1,7229:7246811,12884934:0,0,0 +k1,7229:7246811,12884934:0 +h1,7229:9143685,12884934:0,0,0 +k1,7229:31966991,12884934:22823306 +g1,7229:31966991,12884934 +) +] +) +g1,7231:31966991,12960955 +g1,7231:7246811,12960955 +g1,7231:7246811,12960955 +g1,7231:31966991,12960955 +g1,7231:31966991,12960955 +) +h1,7231:7246811,13157563:0,0,0 +(1,7235:7246811,14523339:24720180,513147,126483 +h1,7234:7246811,14523339:983040,0,0 +k1,7234:11159175,14523339:201060 +(1,7234:11159175,14523339:0,452978,115847 +r1,7235:13627712,14523339:2468537,568825,115847 +k1,7234:11159175,14523339:-2468537 +) +(1,7234:11159175,14523339:2468537,452978,115847 +k1,7234:11159175,14523339:3277 +h1,7234:13624435,14523339:0,411205,112570 +) +k1,7234:14002441,14523339:201059 +(1,7234:14002441,14523339:0,452978,115847 +r1,7235:18229537,14523339:4227096,568825,115847 +k1,7234:14002441,14523339:-4227096 +) +(1,7234:14002441,14523339:4227096,452978,115847 +k1,7234:14002441,14523339:3277 +h1,7234:18226260,14523339:0,411205,112570 +) +k1,7234:18430597,14523339:201060 +k1,7234:19823101,14523339:201059 +(1,7234:19823101,14523339:0,452978,115847 +r1,7235:21588214,14523339:1765113,568825,115847 +k1,7234:19823101,14523339:-1765113 +) +(1,7234:19823101,14523339:1765113,452978,115847 +k1,7234:19823101,14523339:3277 +h1,7234:21584937,14523339:0,411205,112570 +) +k1,7234:21789274,14523339:201060 +k1,7234:22981893,14523339:201059 +k1,7234:24536927,14523339:201060 +k1,7234:27594700,14523339:201059 +k1,7234:29377144,14523339:201060 +k1,7234:30862709,14523339:201059 +k1,7234:31966991,14523339:0 +) +(1,7235:7246811,15364827:24720180,505283,134348 +k1,7234:8137271,15364827:142694 +k1,7234:9793191,15364827:142694 +k1,7234:11633922,15364827:142693 +k1,7234:12644968,15364827:142694 +k1,7234:13779222,15364827:142694 +k1,7234:14537954,15364827:142694 +k1,7234:16568085,15364827:142694 +k1,7234:18533334,15364827:142693 +k1,7234:19695113,15364827:142694 +k1,7234:21227170,15364827:142694 +k1,7234:24509694,15364827:142694 +k1,7234:25268426,15364827:142694 +k1,7234:26181822,15364827:142693 +k1,7234:28284042,15364827:142694 +k1,7234:30636610,15364827:142694 +k1,7234:31966991,15364827:0 +) +(1,7235:7246811,16206315:24720180,505283,134348 +k1,7234:7893652,16206315:188744 +k1,7234:8613892,16206315:188743 +k1,7234:12328473,16206315:188744 +k1,7234:15301842,16206315:188744 +k1,7234:16509670,16206315:188743 +k1,7234:19629839,16206315:188744 +k1,7234:21830538,16206315:188744 +k1,7234:22764425,16206315:188743 +k1,7234:23604597,16206315:188744 +k1,7234:26227348,16206315:188744 +k1,7234:27435176,16206315:188743 +k1,7234:29013283,16206315:188744 +k1,7234:31966991,16206315:0 +) +(1,7235:7246811,17047803:24720180,513147,134348 +k1,7234:9854816,17047803:193659 +k1,7234:11616096,17047803:193659 +k1,7234:12828839,17047803:193658 +k1,7234:14982024,17047803:193659 +k1,7234:16873721,17047803:193659 +k1,7234:20505399,17047803:193659 +k1,7234:23585919,17047803:193659 +k1,7234:26564202,17047803:193658 +k1,7234:27749421,17047803:193659 +k1,7234:29009351,17047803:193659 +k1,7235:31966991,17047803:0 +k1,7235:31966991,17047803:0 +) +] +) +] +r1,7235:32583029,17771975:26214,11911094,0 +) +] +) +) +g1,7235:32583029,17182151 +) +h1,7235:6630773,17798189:0,0,0 +(1,7237:6630773,19889449:25952256,555811,139133 +(1,7237:6630773,19889449:2450326,534184,12975 +g1,7237:6630773,19889449 +g1,7237:9081099,19889449 +) +g1,7237:12629350,19889449 +$1,7237:12629350,19889449 +$1,7237:13144791,19889449 +g1,7237:13369711,19889449 +g1,7237:14936939,19889449 +g1,7237:19309895,19889449 +$1,7237:19309895,19889449 +$1,7237:19813801,19889449 +k1,7237:32583029,19889449:12769228 +g1,7237:32583029,19889449 +) +(1,7243:6630773,21124153:25952256,513147,126483 +k1,7242:7773109,21124153:188787 +k1,7242:9054382,21124153:188788 +k1,7242:10262254,21124153:188787 +k1,7242:12104514,21124153:188787 +k1,7242:15319099,21124153:188788 +k1,7242:16194048,21124153:188787 +k1,7242:17330486,21124153:188787 +k1,7242:20529998,21124153:188788 +$1,7242:20529998,21124153 +$1,7242:20974987,21124153 +k1,7242:21163774,21124153:188787 +k1,7242:22424730,21124153:188787 +k1,7242:25510865,21124153:188788 +k1,7242:28089095,21124153:188787 +k1,7242:29296967,21124153:188787 +k1,7242:30578240,21124153:188788 +k1,7242:31426319,21124153:188787 +k1,7242:32583029,21124153:0 +) +(1,7243:6630773,21965641:25952256,513147,134348 +g1,7242:7489294,21965641 +g1,7242:9385250,21965641 +g1,7242:12369104,21965641 +g1,7242:13329861,21965641 +g1,7242:15956544,21965641 +g1,7242:17347218,21965641 +k1,7243:32583029,21965641:11989813 +g1,7243:32583029,21965641 +) +v1,7245:6630773,23131421:0,393216,0 +(1,7258:6630773,26206318:25952256,3468113,196608 +g1,7258:6630773,26206318 +g1,7258:6630773,26206318 +g1,7258:6434165,26206318 +(1,7258:6434165,26206318:0,3468113,196608 +r1,7258:32779637,26206318:26345472,3664721,196608 +k1,7258:6434165,26206318:-26345472 +) +(1,7258:6434165,26206318:26345472,3468113,196608 +[1,7258:6630773,26206318:25952256,3271505,0 +(1,7247:6630773,23345331:25952256,410518,101187 +(1,7246:6630773,23345331:0,0,0 +g1,7246:6630773,23345331 +g1,7246:6630773,23345331 +g1,7246:6303093,23345331 +(1,7246:6303093,23345331:0,0,0 +) +g1,7246:6630773,23345331 +) +k1,7247:6630773,23345331:0 +g1,7247:8527648,23345331 +g1,7247:9159940,23345331 +g1,7247:12953689,23345331 +g1,7247:13585981,23345331 +g1,7247:14218273,23345331 +g1,7247:17695877,23345331 +g1,7247:19908897,23345331 +g1,7247:20541189,23345331 +h1,7247:23702646,23345331:0,0,0 +k1,7247:32583029,23345331:8880383 +g1,7247:32583029,23345331 +) +(1,7251:6630773,24077045:25952256,404226,76021 +(1,7249:6630773,24077045:0,0,0 +g1,7249:6630773,24077045 +g1,7249:6630773,24077045 +g1,7249:6303093,24077045 +(1,7249:6303093,24077045:0,0,0 +) +g1,7249:6630773,24077045 +) +g1,7251:7579210,24077045 +g1,7251:8843793,24077045 +h1,7251:11689104,24077045:0,0,0 +k1,7251:32583028,24077045:20893924 +g1,7251:32583028,24077045 +) +(1,7253:6630773,25398583:25952256,410518,101187 +(1,7252:6630773,25398583:0,0,0 +g1,7252:6630773,25398583 +g1,7252:6630773,25398583 +g1,7252:6303093,25398583 +(1,7252:6303093,25398583:0,0,0 +) +g1,7252:6630773,25398583 +) +k1,7253:6630773,25398583:0 +g1,7253:8527648,25398583 +g1,7253:9159940,25398583 +g1,7253:12953689,25398583 +g1,7253:13585981,25398583 +g1,7253:14218273,25398583 +g1,7253:17695877,25398583 +g1,7253:19908897,25398583 +g1,7253:20541189,25398583 +h1,7253:24018792,25398583:0,0,0 +k1,7253:32583029,25398583:8564237 +g1,7253:32583029,25398583 +) +(1,7257:6630773,26130297:25952256,404226,76021 +(1,7255:6630773,26130297:0,0,0 +g1,7255:6630773,26130297 +g1,7255:6630773,26130297 +g1,7255:6303093,26130297 +(1,7255:6303093,26130297:0,0,0 +) +g1,7255:6630773,26130297 +) +g1,7257:7579210,26130297 +g1,7257:8843793,26130297 +h1,7257:11689104,26130297:0,0,0 +k1,7257:32583028,26130297:20893924 +g1,7257:32583028,26130297 +) +] +) +g1,7258:32583029,26206318 +g1,7258:6630773,26206318 +g1,7258:6630773,26206318 +g1,7258:32583029,26206318 +g1,7258:32583029,26206318 +) +h1,7258:6630773,26402926:0,0,0 +(1,7262:6630773,27744015:25952256,513147,115847 +h1,7261:6630773,27744015:983040,0,0 +k1,7261:10655031,27744015:251350 +(1,7261:10655031,27744015:0,452978,115847 +r1,7261:14178703,27744015:3523672,568825,115847 +k1,7261:10655031,27744015:-3523672 +) +(1,7261:10655031,27744015:3523672,452978,115847 +k1,7261:10655031,27744015:3277 +h1,7261:14175426,27744015:0,411205,112570 +) +k1,7261:14603724,27744015:251351 +k1,7261:17945097,27744015:251350 +k1,7261:20225443,27744015:251351 +k1,7261:21762609,27744015:251350 +k1,7261:24025914,27744015:251350 +k1,7261:25296350,27744015:251351 +k1,7261:27572762,27744015:251350 +k1,7261:28483405,27744015:251351 +k1,7261:31189078,27744015:251350 +k1,7261:32583029,27744015:0 +) +(1,7262:6630773,28585503:25952256,513147,126483 +g1,7261:7849087,28585503 +g1,7261:9701789,28585503 +g1,7261:11985063,28585503 +g1,7261:12870454,28585503 +g1,7261:15145208,28585503 +g1,7261:16292088,28585503 +(1,7261:16292088,28585503:0,452978,115847 +r1,7261:18057201,28585503:1765113,568825,115847 +k1,7261:16292088,28585503:-1765113 +) +(1,7261:16292088,28585503:1765113,452978,115847 +k1,7261:16292088,28585503:3277 +h1,7261:18053924,28585503:0,411205,112570 +) +k1,7262:32583029,28585503:14352158 +g1,7262:32583029,28585503 +) +v1,7264:6630773,29926593:0,393216,0 +(1,7265:6630773,34737089:25952256,5203712,616038 +g1,7265:6630773,34737089 +(1,7265:6630773,34737089:25952256,5203712,616038 +(1,7265:6630773,35353127:25952256,5819750,0 +[1,7265:6630773,35353127:25952256,5819750,0 +(1,7265:6630773,35326913:25952256,5767322,0 +r1,7265:6656987,35326913:26214,5767322,0 +[1,7265:6656987,35326913:25899828,5767322,0 +(1,7265:6656987,34737089:25899828,4587674,0 +[1,7265:7246811,34737089:24720180,4587674,0 +(1,7265:7246811,31236789:24720180,1087374,134348 +k1,7264:8671838,31236789:215324 +k1,7264:11060336,31236789:215324 +k1,7264:12294744,31236789:215323 +k1,7264:15070560,31236789:215324 +k1,7264:15901922,31236789:215324 +k1,7264:17136331,31236789:215324 +k1,7264:21002010,31236789:215324 +k1,7264:25154082,31236789:215324 +k1,7264:27398400,31236789:215323 +k1,7264:28685893,31236789:215324 +k1,7264:30231598,31236789:215324 +k1,7264:31966991,31236789:0 +) +(1,7265:7246811,32078277:24720180,513147,126483 +k1,7264:12448258,32078277:296077 +k1,7264:15702630,32078277:296077 +k1,7264:17419528,32078277:296077 +k1,7264:19208515,32078277:296077 +k1,7264:20523677,32078277:296077 +k1,7264:24626740,32078277:296077 +k1,7264:26960987,32078277:296077 +k1,7264:27873102,32078277:296077 +k1,7264:29188264,32078277:296077 +k1,7265:31966991,32078277:0 +) +(1,7265:7246811,32919765:24720180,513147,134348 +(1,7264:7246811,32919765:0,452978,115847 +r1,7265:9363636,32919765:2116825,568825,115847 +k1,7264:7246811,32919765:-2116825 +) +(1,7264:7246811,32919765:2116825,452978,115847 +k1,7264:7246811,32919765:3277 +h1,7264:9360359,32919765:0,411205,112570 +) +k1,7264:9594202,32919765:230566 +k1,7264:11568027,32919765:230567 +k1,7264:15160590,32919765:230566 +k1,7264:16200526,32919765:230566 +k1,7264:17450177,32919765:230566 +k1,7264:20308738,32919765:230567 +k1,7264:21730749,32919765:230566 +k1,7264:23291696,32919765:230566 +k1,7264:24626544,32919765:230566 +k1,7264:25725463,32919765:230567 +k1,7264:28160005,32919765:230566 +k1,7264:31966991,32919765:0 +) +(1,7265:7246811,33761253:24720180,513147,7863 +k1,7264:9339137,33761253:269770 +k1,7264:10627992,33761253:269770 +k1,7264:13352085,33761253:269770 +k1,7264:15135081,33761253:269770 +k1,7264:16352502,33761253:269770 +k1,7264:20093714,33761253:269770 +k1,7264:21022776,33761253:269770 +k1,7264:22311631,33761253:269770 +k1,7264:26062018,33761253:269770 +k1,7264:27899409,33761253:269770 +k1,7264:29188264,33761253:269770 +k1,7264:31966991,33761253:0 +) +(1,7265:7246811,34602741:24720180,505283,134348 +k1,7265:31966992,34602741:22586984 +g1,7265:31966992,34602741 +) +] +) +] +r1,7265:32583029,35326913:26214,5767322,0 +) +] +) +) +g1,7265:32583029,34737089 +) +h1,7265:6630773,35353127:0,0,0 +(1,7268:6630773,38660297:25952256,32768,229376 +(1,7268:6630773,38660297:0,32768,229376 +(1,7268:6630773,38660297:5505024,32768,229376 +r1,7268:12135797,38660297:5505024,262144,229376 +) +k1,7268:6630773,38660297:-5505024 +) +(1,7268:6630773,38660297:25952256,32768,0 +r1,7268:32583029,38660297:25952256,32768,0 +) +) +(1,7268:6630773,40264625:25952256,606339,161218 +(1,7268:6630773,40264625:1974731,582746,14155 +g1,7268:6630773,40264625 +g1,7268:8605504,40264625 +) +g1,7268:11418572,40264625 +g1,7268:13932009,40264625 +k1,7268:32583029,40264625:15782902 +g1,7268:32583029,40264625 +) +(1,7274:6630773,41499329:25952256,513147,126483 +k1,7273:7402623,41499329:144015 +k1,7273:8135150,41499329:144014 +k1,7273:9298250,41499329:144015 +k1,7273:11760272,41499329:144014 +k1,7273:12555715,41499329:144015 +k1,7273:13447495,41499329:144014 +k1,7273:15303966,41499329:144015 +k1,7273:16439540,41499329:144014 +k1,7273:19673578,41499329:144015 +k1,7273:20579120,41499329:144014 +k1,7273:23010997,41499329:144015 +k1,7273:26328920,41499329:144014 +k1,7273:27966501,41499329:144015 +k1,7273:28796677,41499329:144014 +h1,7273:28796677,41499329:0,0,0 +k1,7273:29477519,41499329:285660 +k1,7273:30158361,41499329:285660 +k1,7273:30697558,41499329:144015 +k1,7273:32583029,41499329:0 +) +(1,7274:6630773,42340817:25952256,513147,138281 +k1,7273:7772317,42340817:273192 +k1,7273:9457809,42340817:273191 +k1,7273:10417163,42340817:273192 +$1,7273:10417163,42340817 +$1,7273:10968976,42340817 +k1,7273:11242167,42340817:273191 +k1,7273:12046856,42340817:273192 +k1,7273:15398273,42340817:273191 +k1,7273:16432993,42340817:273192 +$1,7273:16432993,42340817 +$1,7273:16935654,42340817 +k1,7273:17382515,42340817:273191 +k1,7273:19587053,42340817:273192 +k1,7273:22733998,42340817:273191 +k1,7273:23998750,42340817:273192 +k1,7273:25785167,42340817:273191 +k1,7273:26674397,42340817:273192 +k1,7273:29709931,42340817:273191 +k1,7273:32583029,42340817:0 +) +(1,7274:6630773,43182305:25952256,513147,134348 +k1,7273:8802132,43182305:236736 +k1,7273:9698160,43182305:236736 +k1,7273:12426575,43182305:236736 +k1,7273:15361428,43182305:236736 +k1,7273:16789609,43182305:236736 +k1,7273:18548091,43182305:236736 +k1,7273:19931053,43182305:236737 +$1,7273:19931053,43182305 +$1,7273:20251524,43182305 +k1,7273:22066367,43182305:236736 +k1,7273:23499790,43182305:236736 +k1,7273:25820571,43182305:236736 +k1,7273:26716599,43182305:236736 +k1,7273:28941042,43182305:236736 +k1,7273:32051532,43182305:236736 +k1,7273:32583029,43182305:0 +) +(1,7274:6630773,44023793:25952256,505283,134348 +k1,7273:10144408,44023793:232903 +k1,7273:14002106,44023793:232902 +k1,7273:15668937,44023793:232903 +k1,7273:16316649,44023793:232869 +k1,7273:17740997,44023793:232903 +k1,7273:21198927,44023793:232903 +k1,7273:26004931,44023793:232902 +k1,7273:29498905,44023793:232903 +k1,7273:32583029,44023793:0 +) +(1,7274:6630773,44865281:25952256,505283,134348 +k1,7273:9775463,44865281:209988 +k1,7273:11494090,44865281:209988 +k1,7273:12796563,44865281:209988 +k1,7273:13538048,44865281:209988 +k1,7273:14814307,44865281:209988 +k1,7273:18113008,44865281:209989 +k1,7273:19514441,44865281:209988 +k1,7273:21955930,44865281:209988 +k1,7273:25076372,44865281:209988 +k1,7273:27438562,44865281:209988 +k1,7273:28667635,44865281:209988 +k1,7273:30498984,44865281:209988 +k1,7273:32583029,44865281:0 +) +(1,7274:6630773,45706769:25952256,513147,126483 +g1,7273:7481430,45706769 +g1,7273:9362313,45706769 +g1,7273:10580627,45706769 +g1,7273:14389579,45706769 +g1,7273:15248100,45706769 +g1,7273:17844636,45706769 +g1,7273:19760253,45706769 +g1,7273:20618774,45706769 +k1,7274:32583029,45706769:9472576 +g1,7274:32583029,45706769 +) +] +(1,7276:32583029,45706769:0,0,0 +g1,7276:32583029,45706769 +) +) +] +(1,7276:6630773,47279633:25952256,0,0 +h1,7276:6630773,47279633:25952256,0,0 +) +] +h1,7276:4262630,4025873:0,0,0 ] !22232 }136 -Input:1022:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1023:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1024:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1025:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1026:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1027:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1028:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1018:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1019:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1020:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1021:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1022:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1023:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1024:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {137 -[1,7321:4262630,47279633:28320399,43253760,0 -(1,7321:4262630,4025873:0,0,0 -[1,7321:-473657,4025873:25952256,0,0 -(1,7321:-473657,-710414:25952256,0,0 -h1,7321:-473657,-710414:0,0,0 -(1,7321:-473657,-710414:0,0,0 -(1,7321:-473657,-710414:0,0,0 -g1,7321:-473657,-710414 -(1,7321:-473657,-710414:65781,0,65781 -g1,7321:-407876,-710414 -[1,7321:-407876,-644633:0,0,0 +[1,7326:4262630,47279633:28320399,43253760,0 +(1,7326:4262630,4025873:0,0,0 +[1,7326:-473657,4025873:25952256,0,0 +(1,7326:-473657,-710414:25952256,0,0 +h1,7326:-473657,-710414:0,0,0 +(1,7326:-473657,-710414:0,0,0 +(1,7326:-473657,-710414:0,0,0 +g1,7326:-473657,-710414 +(1,7326:-473657,-710414:65781,0,65781 +g1,7326:-407876,-710414 +[1,7326:-407876,-644633:0,0,0 ] ) -k1,7321:-473657,-710414:-65781 +k1,7326:-473657,-710414:-65781 ) ) -k1,7321:25478599,-710414:25952256 -g1,7321:25478599,-710414 +k1,7326:25478599,-710414:25952256 +g1,7326:25478599,-710414 ) ] ) -[1,7321:6630773,47279633:25952256,43253760,0 -[1,7321:6630773,4812305:25952256,786432,0 -(1,7321:6630773,4812305:25952256,505283,134348 -(1,7321:6630773,4812305:25952256,505283,134348 -g1,7321:3078558,4812305 -[1,7321:3078558,4812305:0,0,0 -(1,7321:3078558,2439708:0,1703936,0 -k1,7321:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7321:2537886,2439708:1179648,16384,0 +[1,7326:6630773,47279633:25952256,43253760,0 +[1,7326:6630773,4812305:25952256,786432,0 +(1,7326:6630773,4812305:25952256,505283,134348 +(1,7326:6630773,4812305:25952256,505283,134348 +g1,7326:3078558,4812305 +[1,7326:3078558,4812305:0,0,0 +(1,7326:3078558,2439708:0,1703936,0 +k1,7326:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7326:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7321:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7326:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7321:3078558,4812305:0,0,0 -(1,7321:3078558,2439708:0,1703936,0 -g1,7321:29030814,2439708 -g1,7321:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7321:36151628,1915420:16384,1179648,0 +[1,7326:3078558,4812305:0,0,0 +(1,7326:3078558,2439708:0,1703936,0 +g1,7326:29030814,2439708 +g1,7326:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7326:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7321:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7326:37855564,2439708:1179648,16384,0 ) ) -k1,7321:3078556,2439708:-34777008 +k1,7326:3078556,2439708:-34777008 ) ] -[1,7321:3078558,4812305:0,0,0 -(1,7321:3078558,49800853:0,16384,2228224 -k1,7321:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7321:2537886,49800853:1179648,16384,0 +[1,7326:3078558,4812305:0,0,0 +(1,7326:3078558,49800853:0,16384,2228224 +k1,7326:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7326:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7321:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7326:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,7321:3078558,4812305:0,0,0 -(1,7321:3078558,49800853:0,16384,2228224 -g1,7321:29030814,49800853 -g1,7321:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7321:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7321:37855564,49800853:1179648,16384,0 -) -) -k1,7321:3078556,49800853:-34777008 -) -] -g1,7321:6630773,4812305 -k1,7321:24573876,4812305:16747726 -g1,7321:25960617,4812305 -g1,7321:26609423,4812305 -g1,7321:29923578,4812305 -) -) -] -[1,7321:6630773,45706769:25952256,40108032,0 -(1,7321:6630773,45706769:25952256,40108032,0 -(1,7321:6630773,45706769:0,0,0 -g1,7321:6630773,45706769 -) -[1,7321:6630773,45706769:25952256,40108032,0 -(1,7271:6630773,6254097:25952256,513147,134348 -h1,7270:6630773,6254097:983040,0,0 -k1,7270:8701105,6254097:269403 -k1,7270:10572209,6254097:269404 -k1,7270:12833906,6254097:269403 -k1,7270:13719348,6254097:269404 -k1,7270:14577264,6254097:269403 -k1,7270:16834374,6254097:269403 -k1,7270:19977532,6254097:269404 -k1,7270:21351217,6254097:269403 -k1,7270:22368386,6254097:269403 -k1,7270:24675960,6254097:269404 -k1,7270:25561401,6254097:269403 -k1,7270:28846116,6254097:269404 -k1,7270:29743354,6254097:269403 -k1,7270:32583029,6254097:0 -) -(1,7271:6630773,7095585:25952256,513147,126483 -k1,7270:9544655,7095585:220352 -k1,7270:10416435,7095585:220352 -k1,7270:11655873,7095585:220353 -k1,7270:13597200,7095585:220352 -k1,7270:16577273,7095585:220352 -k1,7270:17456917,7095585:220352 -k1,7270:19379240,7095585:220353 -k1,7270:22683716,7095585:220352 -k1,7270:25836804,7095585:220352 -k1,7270:27076241,7095585:220352 -k1,7270:29139466,7095585:220353 -k1,7270:30019110,7095585:220352 -k1,7270:30595322,7095585:220352 -k1,7270:32583029,7095585:0 -) -(1,7271:6630773,7937073:25952256,513147,134348 -k1,7270:7470383,7937073:152137 -k1,7270:8154017,7937073:152137 -k1,7270:11084881,7937073:152137 -k1,7270:11923180,7937073:152137 -k1,7270:12846020,7937073:152137 -k1,7270:15131354,7937073:152137 -k1,7270:18645487,7937073:152136 -k1,7270:19816709,7937073:152137 -k1,7270:22731189,7937073:152137 -k1,7270:26810899,7937073:152137 -k1,7270:27622328,7937073:152137 -k1,7270:28793550,7937073:152137 -k1,7270:29806830,7937073:152137 -k1,7270:31563944,7937073:152137 -k1,7270:32583029,7937073:0 -) -(1,7271:6630773,8778561:25952256,513147,126483 -k1,7270:8826884,8778561:208404 -k1,7270:10136294,8778561:208405 -k1,7270:11854648,8778561:208404 -k1,7270:13949178,8778561:208404 -k1,7270:16919925,8778561:208404 -k1,7270:19912954,8778561:208404 -k1,7270:21803013,8778561:208405 -k1,7270:22756561,8778561:208404 -k1,7270:23616393,8778561:208404 -k1,7270:26028774,8778561:208405 -k1,7270:27889341,8778561:208404 -k1,7270:30307619,8778561:208404 -k1,7270:32583029,8778561:0 -) -(1,7271:6630773,9620049:25952256,513147,134348 -k1,7270:10473531,9620049:250074 -k1,7270:11742691,9620049:250075 -k1,7270:14165939,9620049:250074 -k1,7270:17207848,9620049:250075 -k1,7270:18219450,9620049:250074 -k1,7270:20404147,9620049:250074 -k1,7270:21010082,9620049:250075 -k1,7270:23421533,9620049:250074 -k1,7270:25216947,9620049:250075 -k1,7270:26126313,9620049:250074 -k1,7270:28073115,9620049:250075 -k1,7270:31107814,9620049:250074 -k1,7270:32583029,9620049:0 -) -(1,7271:6630773,10461537:25952256,513147,134348 -k1,7270:12316938,10461537:299106 -k1,7270:13563695,10461537:299106 -k1,7270:15850508,10461537:299106 -k1,7270:16837087,10461537:299106 -k1,7270:19426022,10461537:299107 -k1,7270:20672779,10461537:299106 -k1,7270:23734228,10461537:299106 -k1,7270:25749722,10461537:299106 -k1,7270:26708120,10461537:299106 -k1,7270:30091350,10461537:299106 -k1,7270:32583029,10461537:0 -) -(1,7271:6630773,11303025:25952256,505283,134348 -k1,7270:11361162,11303025:209715 -k1,7270:13119493,11303025:209715 -k1,7270:13860705,11303025:209715 -k1,7270:17160443,11303025:209715 -k1,7270:17986196,11303025:209715 -k1,7270:19399153,11303025:209716 -k1,7270:22026491,11303025:209715 -k1,7270:23971599,11303025:209715 -k1,7270:25994040,11303025:209715 -k1,7270:28521763,11303025:209715 -k1,7270:29417640,11303025:209715 -k1,7270:32583029,11303025:0 -) -(1,7271:6630773,12144513:25952256,513147,126483 -g1,7270:8115818,12144513 -g1,7270:10596355,12144513 -g1,7270:11411622,12144513 -g1,7270:13362628,12144513 -g1,7270:16216720,12144513 -g1,7270:17067377,12144513 -g1,7270:18285691,12144513 -g1,7270:19172393,12144513 -g1,7270:20030914,12144513 -g1,7270:22548151,12144513 -g1,7270:23813651,12144513 -g1,7270:27102903,12144513 -k1,7271:32583029,12144513:3908573 -g1,7271:32583029,12144513 -) -(1,7273:6630773,12986001:25952256,513147,126483 -h1,7272:6630773,12986001:983040,0,0 -k1,7272:9101805,12986001:291305 -k1,7272:9807862,12986001:291214 -k1,7272:12794663,12986001:291305 -(1,7272:12794663,12986001:0,452978,115847 -r1,7272:14208064,12986001:1413401,568825,115847 -k1,7272:12794663,12986001:-1413401 -) -(1,7272:12794663,12986001:1413401,452978,115847 -k1,7272:12794663,12986001:3277 -h1,7272:14204787,12986001:0,411205,112570 -) -k1,7272:14499370,12986001:291306 -k1,7272:15322172,12986001:291305 -k1,7272:17126704,12986001:291306 -k1,7272:18069437,12986001:291305 -k1,7272:19048216,12986001:291306 -k1,7272:21152247,12986001:291305 -k1,7272:23935232,12986001:291306 -k1,7272:24704294,12986001:291305 -k1,7272:26014685,12986001:291306 -k1,7272:30071689,12986001:291305 -k1,7272:32583029,12986001:0 -) -(1,7273:6630773,13827489:25952256,513147,134348 -k1,7272:7436866,13827489:274596 -k1,7272:11455534,13827489:274596 -k1,7272:12749214,13827489:274595 -k1,7272:13711283,13827489:274596 -k1,7272:14517376,13827489:274596 -k1,7272:15147832,13827489:274596 -k1,7272:18912875,13827489:274596 -k1,7272:19665227,13827489:274595 -k1,7272:20958908,13827489:274596 -k1,7272:24999203,13827489:274596 -k1,7272:27785139,13827489:274596 -k1,7272:28591231,13827489:274595 -k1,7272:29221687,13827489:274596 -k1,7272:31563944,13827489:274596 -k1,7272:32583029,13827489:0 -) -(1,7273:6630773,14668977:25952256,513147,126483 -k1,7272:7561287,14668977:243041 -k1,7272:8335825,14668977:243041 -k1,7272:9349569,14668977:243041 -k1,7272:12147204,14668977:243042 -k1,7272:13049537,14668977:243041 -k1,7272:15946786,14668977:243041 -k1,7272:19038633,14668977:242997 -k1,7272:19897712,14668977:243041 -k1,7272:22000665,14668977:243041 -k1,7272:24260250,14668977:243042 -k1,7272:27437993,14668977:243041 -k1,7272:29335818,14668977:243041 -k1,7272:30110356,14668977:243041 -k1,7272:32583029,14668977:0 -) -(1,7273:6630773,15510465:25952256,513147,134348 -k1,7272:9498931,15510465:139894 -k1,7272:10298117,15510465:139894 -k1,7272:13046344,15510465:139894 -k1,7272:16001009,15510465:139894 -k1,7272:17516504,15510465:139894 -k1,7272:18307826,15510465:139894 -k1,7272:19466806,15510465:139895 -k1,7272:21128446,15510465:139894 -k1,7272:21927632,15510465:139894 -k1,7272:25805044,15510465:139894 -k1,7272:27896600,15510465:139894 -k1,7272:28687922,15510465:139894 -k1,7272:29598519,15510465:139894 -k1,7272:32583029,15510465:0 -) -(1,7273:6630773,16351953:25952256,513147,134348 -k1,7272:7463211,16351953:181010 -k1,7272:9631929,16351953:181011 -k1,7272:11921232,16351953:181010 -k1,7272:16622916,16351953:181010 -k1,7272:18755588,16351953:181010 -k1,7272:22819607,16351953:181011 -k1,7272:25173791,16351953:181010 -k1,7272:26302452,16351953:181010 -k1,7272:28005209,16351953:181011 -k1,7272:28845511,16351953:181010 -k1,7272:32583029,16351953:0 -) -(1,7273:6630773,17193441:25952256,513147,134348 -k1,7272:7799079,17193441:220655 -k1,7272:9732189,17193441:220654 -k1,7272:13233576,17193441:220655 -k1,7272:16500343,17193441:220654 -k1,7272:17825280,17193441:220655 -k1,7272:19512630,17193441:220654 -k1,7272:20349323,17193441:220655 -k1,7272:21589062,17193441:220654 -k1,7272:23176798,17193441:220655 -k1,7272:24056744,17193441:220654 -k1,7272:27594176,17193441:220655 -k1,7272:29006275,17193441:220654 -k1,7272:31835263,17193441:220655 -k1,7272:32583029,17193441:0 -) -(1,7273:6630773,18034929:25952256,505283,134348 -k1,7272:10047008,18034929:242326 -k1,7272:10905373,18034929:242327 -k1,7272:11918402,18034929:242326 -k1,7272:14595349,18034929:242284 -k1,7272:16577001,18034929:242326 -k1,7272:17447163,18034929:242327 -k1,7272:18892730,18034929:242326 -k1,7272:21550058,18034929:242326 -k1,7272:24095320,18034929:242327 -k1,7272:27239580,18034929:242326 -k1,7272:29916527,18034929:242284 -k1,7272:32227169,18034929:242326 -k1,7272:32583029,18034929:0 -) -(1,7273:6630773,18876417:25952256,513147,134348 -g1,7272:8021447,18876417 -g1,7272:8879968,18876417 -g1,7272:12816715,18876417 -g1,7272:14870613,18876417 -g1,7272:15879212,18876417 -g1,7272:17097526,18876417 -g1,7272:19123899,18876417 -g1,7272:21958331,18876417 -g1,7272:23754017,18876417 -g1,7272:24612538,18876417 -k1,7273:32583029,18876417:4812311 -g1,7273:32583029,18876417 -) -v1,7275:6630773,20052934:0,393216,0 -(1,7276:6630773,22337128:25952256,2677410,616038 -g1,7276:6630773,22337128 -(1,7276:6630773,22337128:25952256,2677410,616038 -(1,7276:6630773,22953166:25952256,3293448,0 -[1,7276:6630773,22953166:25952256,3293448,0 -(1,7276:6630773,22926952:25952256,3241020,0 -r1,7276:6656987,22926952:26214,3241020,0 -[1,7276:6656987,22926952:25899828,3241020,0 -(1,7276:6656987,22337128:25899828,2061372,0 -[1,7276:7246811,22337128:24720180,2061372,0 -(1,7276:7246811,21361292:24720180,1085536,298548 -(1,7275:7246811,21361292:0,1085536,298548 -r1,7276:8753226,21361292:1506415,1384084,298548 -k1,7275:7246811,21361292:-1506415 -) -(1,7275:7246811,21361292:1506415,1085536,298548 -) -k1,7275:8985902,21361292:232676 -k1,7275:9696336,21361292:232677 -k1,7275:11099485,21361292:232676 -k1,7275:12147429,21361292:232676 -k1,7275:13446376,21361292:232676 -k1,7275:15775550,21361292:232677 -k1,7275:19267331,21361292:232676 -k1,7275:20519092,21361292:232676 -k1,7275:23938128,21361292:232676 -k1,7275:26806008,21361292:232677 -k1,7275:29658813,21361292:232676 -k1,7275:31966991,21361292:0 -) -(1,7276:7246811,22202780:24720180,513147,134348 -g1,7275:8637485,22202780 -g1,7275:11234676,22202780 -g1,7275:12116790,22202780 -g1,7275:13646400,22202780 -g1,7275:15225817,22202780 -g1,7275:16529328,22202780 -g1,7275:17476323,22202780 -g1,7275:20199343,22202780 -g1,7275:22578955,22202780 -g1,7275:24760648,22202780 -g1,7275:27377500,22202780 -h1,7275:27775959,22202780:0,0,0 -g1,7275:27975188,22202780 -g1,7275:28983787,22202780 -g1,7275:30681169,22202780 -h1,7275:31478087,22202780:0,0,0 -k1,7276:31966991,22202780:315234 -g1,7276:31966991,22202780 -) -] -) -] -r1,7276:32583029,22926952:26214,3241020,0 -) -] -) -) -g1,7276:32583029,22337128 -) -h1,7276:6630773,22953166:0,0,0 -(1,7278:6630773,25044426:25952256,555811,147783 -(1,7278:6630773,25044426:2450326,534184,12975 -g1,7278:6630773,25044426 -g1,7278:9081099,25044426 -) -k1,7278:32583029,25044426:19501678 -g1,7278:32583029,25044426 -) -(1,7282:6630773,26279130:25952256,505283,126483 -k1,7281:7466120,26279130:207512 -k1,7281:7466120,26279130:0 -k1,7281:8692716,26279130:207511 -k1,7281:11561645,26279130:207512 -k1,7281:15705904,26279130:207511 -k1,7281:17955518,26279130:207512 -(1,7281:17955518,26279130:0,452978,115847 -r1,7281:19720631,26279130:1765113,568825,115847 -k1,7281:17955518,26279130:-1765113 -) -(1,7281:17955518,26279130:1765113,452978,115847 -k1,7281:17955518,26279130:3277 -h1,7281:19717354,26279130:0,411205,112570 -) -k1,7281:19928143,26279130:207512 -k1,7281:20667151,26279130:207511 -k1,7281:21230523,26279130:207512 -k1,7281:25008435,26279130:207511 -k1,7281:27836076,26279130:207512 -k1,7281:30728597,26279130:207511 -k1,7281:31563944,26279130:207512 -k1,7281:32583029,26279130:0 -) -(1,7282:6630773,27120618:25952256,513147,134348 -k1,7281:9286085,27120618:220649 -k1,7281:11072411,27120618:220671 -k1,7281:14522040,27120618:220670 -k1,7281:15690362,27120618:220671 -k1,7281:16930117,27120618:220670 -k1,7281:19138495,27120618:220671 -k1,7281:20220308,27120618:220670 -k1,7281:21057017,27120618:220671 -k1,7281:22480928,27120618:220670 -k1,7281:24068680,27120618:220671 -k1,7281:24645210,27120618:220670 -k1,7281:26678607,27120618:220671 -k1,7281:30389724,27120618:220670 -k1,7281:31478747,27120618:220671 -k1,7281:32583029,27120618:0 -) -(1,7282:6630773,27962106:25952256,513147,134348 -g1,7281:7854985,27962106 -g1,7281:9338720,27962106 -g1,7281:10557034,27962106 -g1,7281:12268834,27962106 -g1,7281:13415714,27962106 -(1,7281:13415714,27962106:0,452978,115847 -r1,7281:15180827,27962106:1765113,568825,115847 -k1,7281:13415714,27962106:-1765113 -) -(1,7281:13415714,27962106:1765113,452978,115847 -k1,7281:13415714,27962106:3277 -h1,7281:15177550,27962106:0,411205,112570 -) -g1,7281:15380056,27962106 -g1,7281:16680290,27962106 -g1,7281:18255120,27962106 -g1,7281:19611059,27962106 -g1,7281:21935621,27962106 -g1,7281:22794142,27962106 -g1,7281:25676415,27962106 -k1,7282:32583029,27962106:5633249 -g1,7282:32583029,27962106 -) -(1,7285:6630773,28803594:25952256,513147,134348 -h1,7283:6630773,28803594:983040,0,0 -k1,7283:8450623,28803594:208975 -k1,7283:9678683,28803594:208975 -k1,7283:11271778,28803594:208975 -k1,7283:14142171,28803594:208976 -k1,7283:15219498,28803594:208975 -k1,7283:18206544,28803594:208975 -k1,7283:20150912,28803594:208975 -k1,7283:21378972,28803594:208975 -k1,7283:24401408,28803594:208975 -k1,7283:27271146,28803594:208976 -k1,7283:28427772,28803594:208975 -(1,7283:28427772,28803594:0,414482,115847 -r1,7283:29841173,28803594:1413401,530329,115847 -k1,7283:28427772,28803594:-1413401 -) -(1,7283:28427772,28803594:1413401,414482,115847 -k1,7283:28427772,28803594:3277 -h1,7283:29837896,28803594:0,411205,112570 -) -k1,7283:30050148,28803594:208975 -k1,7283:31648486,28803594:208975 -k1,7283:32583029,28803594:0 -) -(1,7285:6630773,29645082:25952256,505283,134348 -g1,7283:9588412,29645082 -g1,7283:10403679,29645082 -g1,7283:11191421,29645082 -g1,7283:13352143,29645082 -g1,7283:14576355,29645082 -g1,7283:15794669,29645082 -g1,7283:17271195,29645082 -g1,7283:18279794,29645082 -g1,7283:19977176,29645082 -h1,7283:21172553,29645082:0,0,0 -g1,7283:21545452,29645082 -k1,7285:32583029,29645082:11037577 -g1,7285:32583029,29645082 -) -v1,7287:6630773,30646289:0,393216,0 -(1,7301:6630773,34381072:25952256,4127999,196608 -g1,7301:6630773,34381072 -g1,7301:6630773,34381072 -g1,7301:6434165,34381072 -(1,7301:6434165,34381072:0,4127999,196608 -r1,7301:32779637,34381072:26345472,4324607,196608 -k1,7301:6434165,34381072:-26345472 -) -(1,7301:6434165,34381072:26345472,4127999,196608 -[1,7301:6630773,34381072:25952256,3931391,0 -(1,7289:6630773,30853907:25952256,404226,76021 -(1,7288:6630773,30853907:0,0,0 -g1,7288:6630773,30853907 -g1,7288:6630773,30853907 -g1,7288:6303093,30853907 -(1,7288:6303093,30853907:0,0,0 -) -g1,7288:6630773,30853907 -) -k1,7289:6630773,30853907:0 -h1,7289:9792230,30853907:0,0,0 -k1,7289:32583030,30853907:22790800 -g1,7289:32583030,30853907 -) -(1,7290:6630773,31520085:25952256,410518,101187 -h1,7290:6630773,31520085:0,0,0 -k1,7290:6630773,31520085:0 -h1,7290:13269832,31520085:0,0,0 -k1,7290:32583028,31520085:19313196 -g1,7290:32583028,31520085 -) -(1,7294:6630773,32251799:25952256,404226,76021 -(1,7292:6630773,32251799:0,0,0 -g1,7292:6630773,32251799 -g1,7292:6630773,32251799 -g1,7292:6303093,32251799 -(1,7292:6303093,32251799:0,0,0 -) -g1,7292:6630773,32251799 -) -g1,7294:7579210,32251799 -g1,7294:8843793,32251799 -h1,7294:10424521,32251799:0,0,0 -k1,7294:32583029,32251799:22158508 -g1,7294:32583029,32251799 -) -(1,7296:6630773,33573337:25952256,410518,101187 -(1,7295:6630773,33573337:0,0,0 -g1,7295:6630773,33573337 -g1,7295:6630773,33573337 -g1,7295:6303093,33573337 -(1,7295:6303093,33573337:0,0,0 -) -g1,7295:6630773,33573337 -) -k1,7296:6630773,33573337:0 -h1,7296:13585978,33573337:0,0,0 -k1,7296:32583030,33573337:18997052 -g1,7296:32583030,33573337 -) -(1,7300:6630773,34305051:25952256,404226,76021 -(1,7298:6630773,34305051:0,0,0 -g1,7298:6630773,34305051 -g1,7298:6630773,34305051 -g1,7298:6303093,34305051 -(1,7298:6303093,34305051:0,0,0 -) -g1,7298:6630773,34305051 -) -g1,7300:7579210,34305051 -g1,7300:8843793,34305051 -h1,7300:10108376,34305051:0,0,0 -k1,7300:32583028,34305051:22474652 -g1,7300:32583028,34305051 -) -] -) -g1,7301:32583029,34381072 -g1,7301:6630773,34381072 -g1,7301:6630773,34381072 -g1,7301:32583029,34381072 -g1,7301:32583029,34381072 -) -h1,7301:6630773,34577680:0,0,0 -(1,7305:6630773,35754198:25952256,513147,138281 -h1,7304:6630773,35754198:983040,0,0 -k1,7304:8785278,35754198:217916 -k1,7304:10437122,35754198:217916 -k1,7304:11342511,35754198:217916 -k1,7304:12579512,35754198:217916 -k1,7304:14922105,35754198:217916 -k1,7304:16952747,35754198:217916 -k1,7304:19158370,35754198:217916 -$1,7304:19158370,35754198 -k1,7304:19926396,35754198:216213 -k1,7304:20710806,35754198:216213 -k1,7304:21378020,35754198:159310 -k1,7304:21806027,35754198:159309 -k1,7304:22363795,35754198:159309 -k1,7304:23091302,35754198:159310 -k1,7304:23694945,35754198:159309 -k1,7304:24122952,35754198:159309 -$1,7304:24625613,35754198 -k1,7304:24843529,35754198:217916 -k1,7304:26980339,35754198:217916 -$1,7304:26980339,35754198 -$1,7304:27532152,35754198 -k1,7304:27750068,35754198:217916 -k1,7304:31931601,35754198:217916 -k1,7304:32583029,35754198:0 -) -(1,7305:6630773,36595686:25952256,513147,134348 -k1,7304:9620171,36595686:175937 -k1,7304:12456871,36595686:175938 -(1,7304:12663965,36595686:0,452978,115847 -r1,7304:14077366,36595686:1413401,568825,115847 -k1,7304:12663965,36595686:-1413401 -) -(1,7304:12663965,36595686:1413401,452978,115847 -k1,7304:12663965,36595686:3277 -h1,7304:14074089,36595686:0,411205,112570 -) -k1,7304:14460397,36595686:175937 -k1,7304:15827780,36595686:175938 -$1,7304:15827780,36595686 -$1,7304:16330441,36595686 -k1,7304:16506378,36595686:175937 -k1,7304:17333744,36595686:175938 -k1,7304:19346000,36595686:175937 -k1,7304:21388403,36595686:175938 -(1,7304:21595497,36595686:0,452978,115847 -r1,7304:23360610,36595686:1765113,568825,115847 -k1,7304:21595497,36595686:-1765113 -) -(1,7304:21595497,36595686:1765113,452978,115847 -k1,7304:21595497,36595686:3277 -h1,7304:23357333,36595686:0,411205,112570 -) -k1,7304:23917311,36595686:175937 -k1,7304:25611718,36595686:175938 -k1,7304:26143515,36595686:175937 -k1,7304:28307160,36595686:175938 -k1,7304:29014594,36595686:175937 -k1,7304:32583029,36595686:0 -) -(1,7305:6630773,37437174:25952256,513147,126483 -k1,7304:7516763,37437174:269952 -k1,7304:8201487,37437174:269881 -k1,7304:9157600,37437174:269951 -h1,7304:9157600,37437174:0,0,0 -k1,7304:11273794,37437174:535466 -k1,7304:12204441,37437174:535465 -k1,7304:13135089,37437174:535466 -k1,7304:14065736,37437174:535465 -k1,7304:16485268,37437174:269952 -k1,7304:17708769,37437174:269952 -k1,7304:19369394,37437174:269951 -k1,7304:20658431,37437174:269952 -k1,7304:22640839,37437174:269952 -k1,7304:24898498,37437174:269952 -k1,7304:25854612,37437174:269952 -(1,7304:25854612,37437174:0,459977,115847 -r1,7304:26916301,37437174:1061689,575824,115847 -k1,7304:25854612,37437174:-1061689 -) -(1,7304:25854612,37437174:1061689,459977,115847 -k1,7304:25854612,37437174:3277 -h1,7304:26913024,37437174:0,411205,112570 -) -k1,7304:27186252,37437174:269951 -k1,7304:28019158,37437174:269952 -k1,7304:31635378,37437174:269952 -k1,7304:32583029,37437174:0 -) -(1,7305:6630773,38278662:25952256,513147,95026 -g1,7304:10743157,38278662 -k1,7305:32583028,38278662:20302396 -g1,7305:32583028,38278662 -) -v1,7307:6630773,39279869:0,393216,0 -(1,7315:6630773,40967692:25952256,2081039,196608 -g1,7315:6630773,40967692 -g1,7315:6630773,40967692 -g1,7315:6434165,40967692 -(1,7315:6434165,40967692:0,2081039,196608 -r1,7315:32779637,40967692:26345472,2277647,196608 -k1,7315:6434165,40967692:-26345472 -) -(1,7315:6434165,40967692:26345472,2081039,196608 -[1,7315:6630773,40967692:25952256,1884431,0 -(1,7309:6630773,39493779:25952256,410518,101187 -(1,7308:6630773,39493779:0,0,0 -g1,7308:6630773,39493779 -g1,7308:6630773,39493779 -g1,7308:6303093,39493779 -(1,7308:6303093,39493779:0,0,0 -) -g1,7308:6630773,39493779 -) -g1,7309:7895356,39493779 -g1,7309:8843794,39493779 -g1,7309:11372959,39493779 -g1,7309:12005251,39493779 -g1,7309:12637543,39493779 -g1,7309:13269835,39493779 -g1,7309:15482855,39493779 -h1,7309:18644312,39493779:0,0,0 -k1,7309:32583029,39493779:13938717 -g1,7309:32583029,39493779 -) -(1,7310:6630773,40159957:25952256,410518,76021 -h1,7310:6630773,40159957:0,0,0 -k1,7310:6630773,40159957:0 -h1,7310:9792229,40159957:0,0,0 -k1,7310:32583029,40159957:22790800 -g1,7310:32583029,40159957 -) -(1,7314:6630773,40891671:25952256,404226,76021 -(1,7312:6630773,40891671:0,0,0 -g1,7312:6630773,40891671 -g1,7312:6630773,40891671 -g1,7312:6303093,40891671 -(1,7312:6303093,40891671:0,0,0 -) -g1,7312:6630773,40891671 -) -g1,7314:7579210,40891671 -g1,7314:8843793,40891671 -h1,7314:10108376,40891671:0,0,0 -k1,7314:32583028,40891671:22474652 -g1,7314:32583028,40891671 -) -] -) -g1,7315:32583029,40967692 -g1,7315:6630773,40967692 -g1,7315:6630773,40967692 -g1,7315:32583029,40967692 -g1,7315:32583029,40967692 -) -h1,7315:6630773,41164300:0,0,0 -(1,7319:6630773,42340817:25952256,513147,134348 -h1,7318:6630773,42340817:983040,0,0 -k1,7318:9021245,42340817:210745 -k1,7318:10616110,42340817:210745 -k1,7318:12182140,42340817:210745 -k1,7318:12924382,42340817:210745 -k1,7318:16158303,42340817:210745 -k1,7318:17028340,42340817:210745 -k1,7318:18258170,42340817:210745 -k1,7318:19330058,42340817:210745 -k1,7318:20664090,42340817:210745 -k1,7318:24944621,42340817:210745 -k1,7318:25814658,42340817:210745 -k1,7318:27044488,42340817:210745 -k1,7318:29067959,42340817:210745 -k1,7318:31266411,42340817:210745 -k1,7319:32583029,42340817:0 -) -(1,7319:6630773,43182305:25952256,513147,134348 -k1,7318:9058466,43182305:275491 -k1,7318:10847182,43182305:275490 -k1,7318:14576420,43182305:275491 -k1,7318:16462785,43182305:275490 -k1,7318:17389704,43182305:275491 -k1,7318:19403210,43182305:275491 -k1,7318:22499370,43182305:275490 -k1,7318:23402696,43182305:275491 -k1,7318:24092953,43182305:275414 -k1,7318:24826541,43182305:275491 -k1,7318:25633528,43182305:275490 -k1,7318:27510719,43182305:275491 -k1,7318:30563625,43182305:275490 -k1,7318:31490544,43182305:275491 -k1,7318:32583029,43182305:0 -) -(1,7319:6630773,44023793:25952256,513147,126483 -k1,7318:8405051,44023793:166680 -k1,7318:9223159,44023793:166680 -k1,7318:10593079,44023793:166679 -k1,7318:12116354,44023793:166680 -k1,7318:13236583,44023793:166680 -k1,7318:15063945,44023793:166680 -k1,7318:16628508,44023793:166680 -k1,7318:18170788,44023793:166679 -k1,7318:19494178,44023793:166680 -k1,7318:20320150,44023793:166680 -k1,7318:21505915,44023793:166680 -k1,7318:23035089,44023793:166680 -k1,7318:24809366,44023793:166679 -k1,7318:27820964,44023793:166680 -k1,7318:31202185,44023793:166680 -k1,7318:32583029,44023793:0 -) -(1,7319:6630773,44865281:25952256,513147,126483 -k1,7318:9408088,44865281:176846 -k1,7318:10446077,44865281:176846 -k1,7318:13223393,44865281:176847 -k1,7318:14677536,44865281:176846 -k1,7318:16866337,44865281:176846 -k1,7318:17788327,44865281:176846 -k1,7318:18616602,44865281:176847 -k1,7318:20817855,44865281:176846 -k1,7318:22325082,44865281:176846 -k1,7318:24285163,44865281:176846 -k1,7318:25481095,44865281:176847 -k1,7318:28552011,44865281:176846 -k1,7318:31015408,44865281:176846 -k1,7318:32583029,44865281:0 -) -(1,7319:6630773,45706769:25952256,505283,134348 -g1,7318:8568017,45706769 -g1,7318:11612164,45706769 -k1,7319:32583029,45706769:17258250 -g1,7319:32583029,45706769 -) -] -(1,7321:32583029,45706769:0,0,0 -g1,7321:32583029,45706769 -) -) -] -(1,7321:6630773,47279633:25952256,0,0 -h1,7321:6630773,47279633:25952256,0,0 -) -] -h1,7321:4262630,4025873:0,0,0 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] +) +) +) +] +[1,7326:3078558,4812305:0,0,0 +(1,7326:3078558,49800853:0,16384,2228224 +g1,7326:29030814,49800853 +g1,7326:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7326:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7326:37855564,49800853:1179648,16384,0 +) +) +k1,7326:3078556,49800853:-34777008 +) +] +g1,7326:6630773,4812305 +k1,7326:24502442,4812305:16676292 +g1,7326:25889183,4812305 +g1,7326:26537989,4812305 +g1,7326:29852144,4812305 +) +) +] +[1,7326:6630773,45706769:25952256,40108032,0 +(1,7326:6630773,45706769:25952256,40108032,0 +(1,7326:6630773,45706769:0,0,0 +g1,7326:6630773,45706769 +) +[1,7326:6630773,45706769:25952256,40108032,0 +(1,7276:6630773,6254097:25952256,513147,134348 +h1,7275:6630773,6254097:983040,0,0 +k1,7275:8701105,6254097:269403 +k1,7275:10572209,6254097:269404 +k1,7275:12833906,6254097:269403 +k1,7275:13719348,6254097:269404 +k1,7275:14577264,6254097:269403 +k1,7275:16834374,6254097:269403 +k1,7275:19977532,6254097:269404 +k1,7275:21351217,6254097:269403 +k1,7275:22368386,6254097:269403 +k1,7275:24675960,6254097:269404 +k1,7275:25561401,6254097:269403 +k1,7275:28846116,6254097:269404 +k1,7275:29743354,6254097:269403 +k1,7275:32583029,6254097:0 +) +(1,7276:6630773,7095585:25952256,513147,126483 +k1,7275:9544655,7095585:220352 +k1,7275:10416435,7095585:220352 +k1,7275:11655873,7095585:220353 +k1,7275:13597200,7095585:220352 +k1,7275:16577273,7095585:220352 +k1,7275:17456917,7095585:220352 +k1,7275:19379240,7095585:220353 +k1,7275:22683716,7095585:220352 +k1,7275:25836804,7095585:220352 +k1,7275:27076241,7095585:220352 +k1,7275:29139466,7095585:220353 +k1,7275:30019110,7095585:220352 +k1,7275:30595322,7095585:220352 +k1,7275:32583029,7095585:0 +) +(1,7276:6630773,7937073:25952256,513147,134348 +k1,7275:7470383,7937073:152137 +k1,7275:8154017,7937073:152137 +k1,7275:11084881,7937073:152137 +k1,7275:11923180,7937073:152137 +k1,7275:12846020,7937073:152137 +k1,7275:15131354,7937073:152137 +k1,7275:18645487,7937073:152136 +k1,7275:19816709,7937073:152137 +k1,7275:22731189,7937073:152137 +k1,7275:26810899,7937073:152137 +k1,7275:27622328,7937073:152137 +k1,7275:28793550,7937073:152137 +k1,7275:29806830,7937073:152137 +k1,7275:31563944,7937073:152137 +k1,7275:32583029,7937073:0 +) +(1,7276:6630773,8778561:25952256,513147,126483 +k1,7275:8826884,8778561:208404 +k1,7275:10136294,8778561:208405 +k1,7275:11854648,8778561:208404 +k1,7275:13949178,8778561:208404 +k1,7275:16919925,8778561:208404 +k1,7275:19912954,8778561:208404 +k1,7275:21803013,8778561:208405 +k1,7275:22756561,8778561:208404 +k1,7275:23616393,8778561:208404 +k1,7275:26028774,8778561:208405 +k1,7275:27889341,8778561:208404 +k1,7275:30307619,8778561:208404 +k1,7275:32583029,8778561:0 +) +(1,7276:6630773,9620049:25952256,513147,134348 +k1,7275:10473531,9620049:250074 +k1,7275:11742691,9620049:250075 +k1,7275:14165939,9620049:250074 +k1,7275:17207848,9620049:250075 +k1,7275:18219450,9620049:250074 +k1,7275:20404147,9620049:250074 +k1,7275:21010082,9620049:250075 +k1,7275:23421533,9620049:250074 +k1,7275:25216947,9620049:250075 +k1,7275:26126313,9620049:250074 +k1,7275:28073115,9620049:250075 +k1,7275:31107814,9620049:250074 +k1,7275:32583029,9620049:0 +) +(1,7276:6630773,10461537:25952256,513147,134348 +k1,7275:12316938,10461537:299106 +k1,7275:13563695,10461537:299106 +k1,7275:15850508,10461537:299106 +k1,7275:16837087,10461537:299106 +k1,7275:19426022,10461537:299107 +k1,7275:20672779,10461537:299106 +k1,7275:23734228,10461537:299106 +k1,7275:25749722,10461537:299106 +k1,7275:26708120,10461537:299106 +k1,7275:30091350,10461537:299106 +k1,7275:32583029,10461537:0 +) +(1,7276:6630773,11303025:25952256,505283,134348 +k1,7275:11361162,11303025:209715 +k1,7275:13119493,11303025:209715 +k1,7275:13860705,11303025:209715 +k1,7275:17160443,11303025:209715 +k1,7275:17986196,11303025:209715 +k1,7275:19399153,11303025:209716 +k1,7275:22026491,11303025:209715 +k1,7275:23971599,11303025:209715 +k1,7275:25994040,11303025:209715 +k1,7275:28521763,11303025:209715 +k1,7275:29417640,11303025:209715 +k1,7275:32583029,11303025:0 +) +(1,7276:6630773,12144513:25952256,513147,126483 +g1,7275:8115818,12144513 +g1,7275:10596355,12144513 +g1,7275:11411622,12144513 +g1,7275:13362628,12144513 +g1,7275:16216720,12144513 +g1,7275:17067377,12144513 +g1,7275:18285691,12144513 +g1,7275:19172393,12144513 +g1,7275:20030914,12144513 +g1,7275:22548151,12144513 +g1,7275:23813651,12144513 +g1,7275:27102903,12144513 +k1,7276:32583029,12144513:3908573 +g1,7276:32583029,12144513 +) +(1,7278:6630773,12986001:25952256,513147,126483 +h1,7277:6630773,12986001:983040,0,0 +k1,7277:9101805,12986001:291305 +k1,7277:9807862,12986001:291214 +k1,7277:12794663,12986001:291305 +(1,7277:12794663,12986001:0,452978,115847 +r1,7277:14208064,12986001:1413401,568825,115847 +k1,7277:12794663,12986001:-1413401 +) +(1,7277:12794663,12986001:1413401,452978,115847 +k1,7277:12794663,12986001:3277 +h1,7277:14204787,12986001:0,411205,112570 +) +k1,7277:14499370,12986001:291306 +k1,7277:15322172,12986001:291305 +k1,7277:17126704,12986001:291306 +k1,7277:18069437,12986001:291305 +k1,7277:19048216,12986001:291306 +k1,7277:21152247,12986001:291305 +k1,7277:23935232,12986001:291306 +k1,7277:24704294,12986001:291305 +k1,7277:26014685,12986001:291306 +k1,7277:30071689,12986001:291305 +k1,7277:32583029,12986001:0 +) +(1,7278:6630773,13827489:25952256,513147,134348 +k1,7277:7436866,13827489:274596 +k1,7277:11455534,13827489:274596 +k1,7277:12749214,13827489:274595 +k1,7277:13711283,13827489:274596 +k1,7277:14517376,13827489:274596 +k1,7277:15147832,13827489:274596 +k1,7277:18912875,13827489:274596 +k1,7277:19665227,13827489:274595 +k1,7277:20958908,13827489:274596 +k1,7277:24999203,13827489:274596 +k1,7277:27785139,13827489:274596 +k1,7277:28591231,13827489:274595 +k1,7277:29221687,13827489:274596 +k1,7277:31563944,13827489:274596 +k1,7277:32583029,13827489:0 +) +(1,7278:6630773,14668977:25952256,513147,126483 +k1,7277:7561287,14668977:243041 +k1,7277:8335825,14668977:243041 +k1,7277:9349569,14668977:243041 +k1,7277:12147204,14668977:243042 +k1,7277:13049537,14668977:243041 +k1,7277:15946786,14668977:243041 +k1,7277:19038633,14668977:242997 +k1,7277:19897712,14668977:243041 +k1,7277:22000665,14668977:243041 +k1,7277:24260250,14668977:243042 +k1,7277:27437993,14668977:243041 +k1,7277:29335818,14668977:243041 +k1,7277:30110356,14668977:243041 +k1,7277:32583029,14668977:0 +) +(1,7278:6630773,15510465:25952256,513147,134348 +k1,7277:9498931,15510465:139894 +k1,7277:10298117,15510465:139894 +k1,7277:13046344,15510465:139894 +k1,7277:16001009,15510465:139894 +k1,7277:17516504,15510465:139894 +k1,7277:18307826,15510465:139894 +k1,7277:19466806,15510465:139895 +k1,7277:21128446,15510465:139894 +k1,7277:21927632,15510465:139894 +k1,7277:25805044,15510465:139894 +k1,7277:27896600,15510465:139894 +k1,7277:28687922,15510465:139894 +k1,7277:29598519,15510465:139894 +k1,7277:32583029,15510465:0 +) +(1,7278:6630773,16351953:25952256,513147,134348 +k1,7277:7463211,16351953:181010 +k1,7277:9631929,16351953:181011 +k1,7277:11921232,16351953:181010 +k1,7277:16622916,16351953:181010 +k1,7277:18755588,16351953:181010 +k1,7277:22819607,16351953:181011 +k1,7277:25173791,16351953:181010 +k1,7277:26302452,16351953:181010 +k1,7277:28005209,16351953:181011 +k1,7277:28845511,16351953:181010 +k1,7277:32583029,16351953:0 +) +(1,7278:6630773,17193441:25952256,513147,134348 +k1,7277:7799079,17193441:220655 +k1,7277:9732189,17193441:220654 +k1,7277:13233576,17193441:220655 +k1,7277:16500343,17193441:220654 +k1,7277:17825280,17193441:220655 +k1,7277:19512630,17193441:220654 +k1,7277:20349323,17193441:220655 +k1,7277:21589062,17193441:220654 +k1,7277:23176798,17193441:220655 +k1,7277:24056744,17193441:220654 +k1,7277:27594176,17193441:220655 +k1,7277:29006275,17193441:220654 +k1,7277:31835263,17193441:220655 +k1,7277:32583029,17193441:0 +) +(1,7278:6630773,18034929:25952256,505283,134348 +k1,7277:10047008,18034929:242326 +k1,7277:10905373,18034929:242327 +k1,7277:11918402,18034929:242326 +k1,7277:14595349,18034929:242284 +k1,7277:16577001,18034929:242326 +k1,7277:17447163,18034929:242327 +k1,7277:18892730,18034929:242326 +k1,7277:21550058,18034929:242326 +k1,7277:24095320,18034929:242327 +k1,7277:27239580,18034929:242326 +k1,7277:29916527,18034929:242284 +k1,7277:32227169,18034929:242326 +k1,7277:32583029,18034929:0 +) +(1,7278:6630773,18876417:25952256,513147,134348 +g1,7277:8021447,18876417 +g1,7277:8879968,18876417 +g1,7277:12816715,18876417 +g1,7277:14870613,18876417 +g1,7277:15879212,18876417 +g1,7277:17097526,18876417 +g1,7277:19123899,18876417 +g1,7277:21958331,18876417 +g1,7277:23754017,18876417 +g1,7277:24612538,18876417 +k1,7278:32583029,18876417:4812311 +g1,7278:32583029,18876417 +) +v1,7280:6630773,20052934:0,393216,0 +(1,7281:6630773,22337128:25952256,2677410,616038 +g1,7281:6630773,22337128 +(1,7281:6630773,22337128:25952256,2677410,616038 +(1,7281:6630773,22953166:25952256,3293448,0 +[1,7281:6630773,22953166:25952256,3293448,0 +(1,7281:6630773,22926952:25952256,3241020,0 +r1,7281:6656987,22926952:26214,3241020,0 +[1,7281:6656987,22926952:25899828,3241020,0 +(1,7281:6656987,22337128:25899828,2061372,0 +[1,7281:7246811,22337128:24720180,2061372,0 +(1,7281:7246811,21361292:24720180,1085536,298548 +(1,7280:7246811,21361292:0,1085536,298548 +r1,7281:8753226,21361292:1506415,1384084,298548 +k1,7280:7246811,21361292:-1506415 +) +(1,7280:7246811,21361292:1506415,1085536,298548 +) +k1,7280:8985902,21361292:232676 +k1,7280:9696336,21361292:232677 +k1,7280:11099485,21361292:232676 +k1,7280:12147429,21361292:232676 +k1,7280:13446376,21361292:232676 +k1,7280:15775550,21361292:232677 +k1,7280:19267331,21361292:232676 +k1,7280:20519092,21361292:232676 +k1,7280:23938128,21361292:232676 +k1,7280:26806008,21361292:232677 +k1,7280:29658813,21361292:232676 +k1,7280:31966991,21361292:0 +) +(1,7281:7246811,22202780:24720180,513147,134348 +g1,7280:8637485,22202780 +g1,7280:11234676,22202780 +g1,7280:12116790,22202780 +g1,7280:13646400,22202780 +g1,7280:15225817,22202780 +g1,7280:16529328,22202780 +g1,7280:17476323,22202780 +g1,7280:20199343,22202780 +g1,7280:22578955,22202780 +g1,7280:24760648,22202780 +g1,7280:27377500,22202780 +h1,7280:27775959,22202780:0,0,0 +g1,7280:27975188,22202780 +g1,7280:28983787,22202780 +g1,7280:30681169,22202780 +h1,7280:31478087,22202780:0,0,0 +k1,7281:31966991,22202780:315234 +g1,7281:31966991,22202780 +) +] +) +] +r1,7281:32583029,22926952:26214,3241020,0 +) +] +) +) +g1,7281:32583029,22337128 +) +h1,7281:6630773,22953166:0,0,0 +(1,7283:6630773,25044426:25952256,555811,147783 +(1,7283:6630773,25044426:2450326,534184,12975 +g1,7283:6630773,25044426 +g1,7283:9081099,25044426 +) +k1,7283:32583029,25044426:19501678 +g1,7283:32583029,25044426 +) +(1,7287:6630773,26279130:25952256,505283,126483 +k1,7286:7466120,26279130:207512 +k1,7286:7466120,26279130:0 +k1,7286:8692716,26279130:207511 +k1,7286:11561645,26279130:207512 +k1,7286:15705904,26279130:207511 +k1,7286:17955518,26279130:207512 +(1,7286:17955518,26279130:0,452978,115847 +r1,7286:19720631,26279130:1765113,568825,115847 +k1,7286:17955518,26279130:-1765113 +) +(1,7286:17955518,26279130:1765113,452978,115847 +k1,7286:17955518,26279130:3277 +h1,7286:19717354,26279130:0,411205,112570 +) +k1,7286:19928143,26279130:207512 +k1,7286:20667151,26279130:207511 +k1,7286:21230523,26279130:207512 +k1,7286:25008435,26279130:207511 +k1,7286:27836076,26279130:207512 +k1,7286:30728597,26279130:207511 +k1,7286:31563944,26279130:207512 +k1,7286:32583029,26279130:0 +) +(1,7287:6630773,27120618:25952256,513147,134348 +k1,7286:9286085,27120618:220649 +k1,7286:11072411,27120618:220671 +k1,7286:14522040,27120618:220670 +k1,7286:15690362,27120618:220671 +k1,7286:16930117,27120618:220670 +k1,7286:19138495,27120618:220671 +k1,7286:20220308,27120618:220670 +k1,7286:21057017,27120618:220671 +k1,7286:22480928,27120618:220670 +k1,7286:24068680,27120618:220671 +k1,7286:24645210,27120618:220670 +k1,7286:26678607,27120618:220671 +k1,7286:30389724,27120618:220670 +k1,7286:31478747,27120618:220671 +k1,7286:32583029,27120618:0 +) +(1,7287:6630773,27962106:25952256,513147,134348 +g1,7286:7854985,27962106 +g1,7286:9338720,27962106 +g1,7286:10557034,27962106 +g1,7286:12268834,27962106 +g1,7286:13415714,27962106 +(1,7286:13415714,27962106:0,452978,115847 +r1,7286:15180827,27962106:1765113,568825,115847 +k1,7286:13415714,27962106:-1765113 +) +(1,7286:13415714,27962106:1765113,452978,115847 +k1,7286:13415714,27962106:3277 +h1,7286:15177550,27962106:0,411205,112570 +) +g1,7286:15380056,27962106 +g1,7286:16680290,27962106 +g1,7286:18255120,27962106 +g1,7286:19611059,27962106 +g1,7286:21935621,27962106 +g1,7286:22794142,27962106 +g1,7286:25676415,27962106 +k1,7287:32583029,27962106:5633249 +g1,7287:32583029,27962106 +) +(1,7290:6630773,28803594:25952256,513147,134348 +h1,7288:6630773,28803594:983040,0,0 +k1,7288:8450623,28803594:208975 +k1,7288:9678683,28803594:208975 +k1,7288:11271778,28803594:208975 +k1,7288:14142171,28803594:208976 +k1,7288:15219498,28803594:208975 +k1,7288:18206544,28803594:208975 +k1,7288:20150912,28803594:208975 +k1,7288:21378972,28803594:208975 +k1,7288:24401408,28803594:208975 +k1,7288:27271146,28803594:208976 +k1,7288:28427772,28803594:208975 +(1,7288:28427772,28803594:0,414482,115847 +r1,7288:29841173,28803594:1413401,530329,115847 +k1,7288:28427772,28803594:-1413401 +) +(1,7288:28427772,28803594:1413401,414482,115847 +k1,7288:28427772,28803594:3277 +h1,7288:29837896,28803594:0,411205,112570 +) +k1,7288:30050148,28803594:208975 +k1,7288:31648486,28803594:208975 +k1,7288:32583029,28803594:0 +) +(1,7290:6630773,29645082:25952256,505283,134348 +g1,7288:9588412,29645082 +g1,7288:10403679,29645082 +g1,7288:11191421,29645082 +g1,7288:13352143,29645082 +g1,7288:14576355,29645082 +g1,7288:15794669,29645082 +g1,7288:17271195,29645082 +g1,7288:18279794,29645082 +g1,7288:19977176,29645082 +h1,7288:21172553,29645082:0,0,0 +g1,7288:21545452,29645082 +k1,7290:32583029,29645082:11037577 +g1,7290:32583029,29645082 +) +v1,7292:6630773,30646289:0,393216,0 +(1,7306:6630773,34381072:25952256,4127999,196608 +g1,7306:6630773,34381072 +g1,7306:6630773,34381072 +g1,7306:6434165,34381072 +(1,7306:6434165,34381072:0,4127999,196608 +r1,7306:32779637,34381072:26345472,4324607,196608 +k1,7306:6434165,34381072:-26345472 +) +(1,7306:6434165,34381072:26345472,4127999,196608 +[1,7306:6630773,34381072:25952256,3931391,0 +(1,7294:6630773,30853907:25952256,404226,76021 +(1,7293:6630773,30853907:0,0,0 +g1,7293:6630773,30853907 +g1,7293:6630773,30853907 +g1,7293:6303093,30853907 +(1,7293:6303093,30853907:0,0,0 +) +g1,7293:6630773,30853907 +) +k1,7294:6630773,30853907:0 +h1,7294:9792230,30853907:0,0,0 +k1,7294:32583030,30853907:22790800 +g1,7294:32583030,30853907 +) +(1,7295:6630773,31520085:25952256,410518,101187 +h1,7295:6630773,31520085:0,0,0 +k1,7295:6630773,31520085:0 +h1,7295:13269832,31520085:0,0,0 +k1,7295:32583028,31520085:19313196 +g1,7295:32583028,31520085 +) +(1,7299:6630773,32251799:25952256,404226,76021 +(1,7297:6630773,32251799:0,0,0 +g1,7297:6630773,32251799 +g1,7297:6630773,32251799 +g1,7297:6303093,32251799 +(1,7297:6303093,32251799:0,0,0 +) +g1,7297:6630773,32251799 +) +g1,7299:7579210,32251799 +g1,7299:8843793,32251799 +h1,7299:10424521,32251799:0,0,0 +k1,7299:32583029,32251799:22158508 +g1,7299:32583029,32251799 +) +(1,7301:6630773,33573337:25952256,410518,101187 +(1,7300:6630773,33573337:0,0,0 +g1,7300:6630773,33573337 +g1,7300:6630773,33573337 +g1,7300:6303093,33573337 +(1,7300:6303093,33573337:0,0,0 +) +g1,7300:6630773,33573337 +) +k1,7301:6630773,33573337:0 +h1,7301:13585978,33573337:0,0,0 +k1,7301:32583030,33573337:18997052 +g1,7301:32583030,33573337 +) +(1,7305:6630773,34305051:25952256,404226,76021 +(1,7303:6630773,34305051:0,0,0 +g1,7303:6630773,34305051 +g1,7303:6630773,34305051 +g1,7303:6303093,34305051 +(1,7303:6303093,34305051:0,0,0 +) +g1,7303:6630773,34305051 +) +g1,7305:7579210,34305051 +g1,7305:8843793,34305051 +h1,7305:10108376,34305051:0,0,0 +k1,7305:32583028,34305051:22474652 +g1,7305:32583028,34305051 +) +] +) +g1,7306:32583029,34381072 +g1,7306:6630773,34381072 +g1,7306:6630773,34381072 +g1,7306:32583029,34381072 +g1,7306:32583029,34381072 +) +h1,7306:6630773,34577680:0,0,0 +(1,7310:6630773,35754198:25952256,513147,138281 +h1,7309:6630773,35754198:983040,0,0 +k1,7309:8785278,35754198:217916 +k1,7309:10437122,35754198:217916 +k1,7309:11342511,35754198:217916 +k1,7309:12579512,35754198:217916 +k1,7309:14922105,35754198:217916 +k1,7309:16952747,35754198:217916 +k1,7309:19158370,35754198:217916 +$1,7309:19158370,35754198 +k1,7309:19926396,35754198:216213 +k1,7309:20710806,35754198:216213 +k1,7309:21378020,35754198:159310 +k1,7309:21806027,35754198:159309 +k1,7309:22363795,35754198:159309 +k1,7309:23091302,35754198:159310 +k1,7309:23694945,35754198:159309 +k1,7309:24122952,35754198:159309 +$1,7309:24625613,35754198 +k1,7309:24843529,35754198:217916 +k1,7309:26980339,35754198:217916 +$1,7309:26980339,35754198 +$1,7309:27532152,35754198 +k1,7309:27750068,35754198:217916 +k1,7309:31931601,35754198:217916 +k1,7309:32583029,35754198:0 +) +(1,7310:6630773,36595686:25952256,513147,134348 +k1,7309:9620171,36595686:175937 +k1,7309:12456871,36595686:175938 +(1,7309:12663965,36595686:0,452978,115847 +r1,7309:14077366,36595686:1413401,568825,115847 +k1,7309:12663965,36595686:-1413401 +) +(1,7309:12663965,36595686:1413401,452978,115847 +k1,7309:12663965,36595686:3277 +h1,7309:14074089,36595686:0,411205,112570 +) +k1,7309:14460397,36595686:175937 +k1,7309:15827780,36595686:175938 +$1,7309:15827780,36595686 +$1,7309:16330441,36595686 +k1,7309:16506378,36595686:175937 +k1,7309:17333744,36595686:175938 +k1,7309:19346000,36595686:175937 +k1,7309:21388403,36595686:175938 +(1,7309:21595497,36595686:0,452978,115847 +r1,7309:23360610,36595686:1765113,568825,115847 +k1,7309:21595497,36595686:-1765113 +) +(1,7309:21595497,36595686:1765113,452978,115847 +k1,7309:21595497,36595686:3277 +h1,7309:23357333,36595686:0,411205,112570 +) +k1,7309:23917311,36595686:175937 +k1,7309:25611718,36595686:175938 +k1,7309:26143515,36595686:175937 +k1,7309:28307160,36595686:175938 +k1,7309:29014594,36595686:175937 +k1,7309:32583029,36595686:0 +) +(1,7310:6630773,37437174:25952256,513147,126483 +k1,7309:7516763,37437174:269952 +k1,7309:8201487,37437174:269881 +k1,7309:9157600,37437174:269951 +h1,7309:9157600,37437174:0,0,0 +k1,7309:11273794,37437174:535466 +k1,7309:12204441,37437174:535465 +k1,7309:13135089,37437174:535466 +k1,7309:14065736,37437174:535465 +k1,7309:16485268,37437174:269952 +k1,7309:17708769,37437174:269952 +k1,7309:19369394,37437174:269951 +k1,7309:20658431,37437174:269952 +k1,7309:22640839,37437174:269952 +k1,7309:24898498,37437174:269952 +k1,7309:25854612,37437174:269952 +(1,7309:25854612,37437174:0,459977,115847 +r1,7309:26916301,37437174:1061689,575824,115847 +k1,7309:25854612,37437174:-1061689 +) +(1,7309:25854612,37437174:1061689,459977,115847 +k1,7309:25854612,37437174:3277 +h1,7309:26913024,37437174:0,411205,112570 +) +k1,7309:27186252,37437174:269951 +k1,7309:28019158,37437174:269952 +k1,7309:31635378,37437174:269952 +k1,7309:32583029,37437174:0 +) +(1,7310:6630773,38278662:25952256,513147,95026 +g1,7309:10743157,38278662 +k1,7310:32583028,38278662:20302396 +g1,7310:32583028,38278662 +) +v1,7312:6630773,39279869:0,393216,0 +(1,7320:6630773,40967692:25952256,2081039,196608 +g1,7320:6630773,40967692 +g1,7320:6630773,40967692 +g1,7320:6434165,40967692 +(1,7320:6434165,40967692:0,2081039,196608 +r1,7320:32779637,40967692:26345472,2277647,196608 +k1,7320:6434165,40967692:-26345472 +) +(1,7320:6434165,40967692:26345472,2081039,196608 +[1,7320:6630773,40967692:25952256,1884431,0 +(1,7314:6630773,39493779:25952256,410518,101187 +(1,7313:6630773,39493779:0,0,0 +g1,7313:6630773,39493779 +g1,7313:6630773,39493779 +g1,7313:6303093,39493779 +(1,7313:6303093,39493779:0,0,0 +) +g1,7313:6630773,39493779 +) +g1,7314:7895356,39493779 +g1,7314:8843794,39493779 +g1,7314:11372959,39493779 +g1,7314:12005251,39493779 +g1,7314:12637543,39493779 +g1,7314:13269835,39493779 +g1,7314:15482855,39493779 +h1,7314:18644312,39493779:0,0,0 +k1,7314:32583029,39493779:13938717 +g1,7314:32583029,39493779 +) +(1,7315:6630773,40159957:25952256,410518,76021 +h1,7315:6630773,40159957:0,0,0 +k1,7315:6630773,40159957:0 +h1,7315:9792229,40159957:0,0,0 +k1,7315:32583029,40159957:22790800 +g1,7315:32583029,40159957 +) +(1,7319:6630773,40891671:25952256,404226,76021 +(1,7317:6630773,40891671:0,0,0 +g1,7317:6630773,40891671 +g1,7317:6630773,40891671 +g1,7317:6303093,40891671 +(1,7317:6303093,40891671:0,0,0 +) +g1,7317:6630773,40891671 +) +g1,7319:7579210,40891671 +g1,7319:8843793,40891671 +h1,7319:10108376,40891671:0,0,0 +k1,7319:32583028,40891671:22474652 +g1,7319:32583028,40891671 +) +] +) +g1,7320:32583029,40967692 +g1,7320:6630773,40967692 +g1,7320:6630773,40967692 +g1,7320:32583029,40967692 +g1,7320:32583029,40967692 +) +h1,7320:6630773,41164300:0,0,0 +(1,7324:6630773,42340817:25952256,513147,134348 +h1,7323:6630773,42340817:983040,0,0 +k1,7323:9021245,42340817:210745 +k1,7323:10616110,42340817:210745 +k1,7323:12182140,42340817:210745 +k1,7323:12924382,42340817:210745 +k1,7323:16158303,42340817:210745 +k1,7323:17028340,42340817:210745 +k1,7323:18258170,42340817:210745 +k1,7323:19330058,42340817:210745 +k1,7323:20664090,42340817:210745 +k1,7323:24944621,42340817:210745 +k1,7323:25814658,42340817:210745 +k1,7323:27044488,42340817:210745 +k1,7323:29067959,42340817:210745 +k1,7323:31266411,42340817:210745 +k1,7324:32583029,42340817:0 +) +(1,7324:6630773,43182305:25952256,513147,134348 +k1,7323:9058466,43182305:275491 +k1,7323:10847182,43182305:275490 +k1,7323:14576420,43182305:275491 +k1,7323:16462785,43182305:275490 +k1,7323:17389704,43182305:275491 +k1,7323:19403210,43182305:275491 +k1,7323:22499370,43182305:275490 +k1,7323:23402696,43182305:275491 +k1,7323:24092953,43182305:275414 +k1,7323:24826541,43182305:275491 +k1,7323:25633528,43182305:275490 +k1,7323:27510719,43182305:275491 +k1,7323:30563625,43182305:275490 +k1,7323:31490544,43182305:275491 +k1,7323:32583029,43182305:0 +) +(1,7324:6630773,44023793:25952256,513147,126483 +k1,7323:8405051,44023793:166680 +k1,7323:9223159,44023793:166680 +k1,7323:10593079,44023793:166679 +k1,7323:12116354,44023793:166680 +k1,7323:13236583,44023793:166680 +k1,7323:15063945,44023793:166680 +k1,7323:16628508,44023793:166680 +k1,7323:18170788,44023793:166679 +k1,7323:19494178,44023793:166680 +k1,7323:20320150,44023793:166680 +k1,7323:21505915,44023793:166680 +k1,7323:23035089,44023793:166680 +k1,7323:24809366,44023793:166679 +k1,7323:27820964,44023793:166680 +k1,7323:31202185,44023793:166680 +k1,7323:32583029,44023793:0 +) +(1,7324:6630773,44865281:25952256,513147,126483 +k1,7323:9408088,44865281:176846 +k1,7323:10446077,44865281:176846 +k1,7323:13223393,44865281:176847 +k1,7323:14677536,44865281:176846 +k1,7323:16866337,44865281:176846 +k1,7323:17788327,44865281:176846 +k1,7323:18616602,44865281:176847 +k1,7323:20817855,44865281:176846 +k1,7323:22325082,44865281:176846 +k1,7323:24285163,44865281:176846 +k1,7323:25481095,44865281:176847 +k1,7323:28552011,44865281:176846 +k1,7323:31015408,44865281:176846 +k1,7323:32583029,44865281:0 +) +(1,7324:6630773,45706769:25952256,505283,134348 +g1,7323:8568017,45706769 +g1,7323:11612164,45706769 +k1,7324:32583029,45706769:17258250 +g1,7324:32583029,45706769 +) +] +(1,7326:32583029,45706769:0,0,0 +g1,7326:32583029,45706769 +) +) +] +(1,7326:6630773,47279633:25952256,0,0 +h1,7326:6630773,47279633:25952256,0,0 +) +] +h1,7326:4262630,4025873:0,0,0 ] !25399 }137 -Input:1029:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1030:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1025:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1026:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {138 -[1,7368:4262630,47279633:28320399,43253760,0 -(1,7368:4262630,4025873:0,0,0 -[1,7368:-473657,4025873:25952256,0,0 -(1,7368:-473657,-710414:25952256,0,0 -h1,7368:-473657,-710414:0,0,0 -(1,7368:-473657,-710414:0,0,0 -(1,7368:-473657,-710414:0,0,0 -g1,7368:-473657,-710414 -(1,7368:-473657,-710414:65781,0,65781 -g1,7368:-407876,-710414 -[1,7368:-407876,-644633:0,0,0 +[1,7373:4262630,47279633:28320399,43253760,0 +(1,7373:4262630,4025873:0,0,0 +[1,7373:-473657,4025873:25952256,0,0 +(1,7373:-473657,-710414:25952256,0,0 +h1,7373:-473657,-710414:0,0,0 +(1,7373:-473657,-710414:0,0,0 +(1,7373:-473657,-710414:0,0,0 +g1,7373:-473657,-710414 +(1,7373:-473657,-710414:65781,0,65781 +g1,7373:-407876,-710414 +[1,7373:-407876,-644633:0,0,0 ] ) -k1,7368:-473657,-710414:-65781 +k1,7373:-473657,-710414:-65781 ) ) -k1,7368:25478599,-710414:25952256 -g1,7368:25478599,-710414 +k1,7373:25478599,-710414:25952256 +g1,7373:25478599,-710414 ) ] ) -[1,7368:6630773,47279633:25952256,43253760,0 -[1,7368:6630773,4812305:25952256,786432,0 -(1,7368:6630773,4812305:25952256,505283,134348 -(1,7368:6630773,4812305:25952256,505283,134348 -g1,7368:3078558,4812305 -[1,7368:3078558,4812305:0,0,0 -(1,7368:3078558,2439708:0,1703936,0 -k1,7368:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7368:2537886,2439708:1179648,16384,0 +[1,7373:6630773,47279633:25952256,43253760,0 +[1,7373:6630773,4812305:25952256,786432,0 +(1,7373:6630773,4812305:25952256,505283,134348 +(1,7373:6630773,4812305:25952256,505283,134348 +g1,7373:3078558,4812305 +[1,7373:3078558,4812305:0,0,0 +(1,7373:3078558,2439708:0,1703936,0 +k1,7373:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7373:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7368:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7373:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7368:3078558,4812305:0,0,0 -(1,7368:3078558,2439708:0,1703936,0 -g1,7368:29030814,2439708 -g1,7368:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7368:36151628,1915420:16384,1179648,0 +[1,7373:3078558,4812305:0,0,0 +(1,7373:3078558,2439708:0,1703936,0 +g1,7373:29030814,2439708 +g1,7373:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7373:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7368:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7373:37855564,2439708:1179648,16384,0 ) ) -k1,7368:3078556,2439708:-34777008 +k1,7373:3078556,2439708:-34777008 ) ] -[1,7368:3078558,4812305:0,0,0 -(1,7368:3078558,49800853:0,16384,2228224 -k1,7368:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7368:2537886,49800853:1179648,16384,0 +[1,7373:3078558,4812305:0,0,0 +(1,7373:3078558,49800853:0,16384,2228224 +k1,7373:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7373:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7368:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7373:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7368:3078558,4812305:0,0,0 -(1,7368:3078558,49800853:0,16384,2228224 -g1,7368:29030814,49800853 -g1,7368:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7368:36151628,51504789:16384,1179648,0 +[1,7373:3078558,4812305:0,0,0 +(1,7373:3078558,49800853:0,16384,2228224 +g1,7373:29030814,49800853 +g1,7373:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7373:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7368:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7373:37855564,49800853:1179648,16384,0 ) ) -k1,7368:3078556,49800853:-34777008 +k1,7373:3078556,49800853:-34777008 ) ] -g1,7368:6630773,4812305 -g1,7368:6630773,4812305 -g1,7368:8843268,4812305 -g1,7368:10880782,4812305 -g1,7368:13281365,4812305 -k1,7368:31387653,4812305:18106288 +g1,7373:6630773,4812305 +g1,7373:6630773,4812305 +g1,7373:8843268,4812305 +g1,7373:10880782,4812305 +g1,7373:13281365,4812305 +k1,7373:31387653,4812305:18106288 ) ) ] -[1,7368:6630773,45706769:25952256,40108032,0 -(1,7368:6630773,45706769:25952256,40108032,0 -(1,7368:6630773,45706769:0,0,0 -g1,7368:6630773,45706769 +[1,7373:6630773,45706769:25952256,40108032,0 +(1,7373:6630773,45706769:25952256,40108032,0 +(1,7373:6630773,45706769:0,0,0 +g1,7373:6630773,45706769 ) -[1,7368:6630773,45706769:25952256,40108032,0 -v1,7321:6630773,6254097:0,393216,0 -(1,7325:6630773,6569194:25952256,708313,196608 -g1,7325:6630773,6569194 -g1,7325:6630773,6569194 -g1,7325:6434165,6569194 -(1,7325:6434165,6569194:0,708313,196608 -r1,7325:32779637,6569194:26345472,904921,196608 -k1,7325:6434165,6569194:-26345472 +[1,7373:6630773,45706769:25952256,40108032,0 +v1,7326:6630773,6254097:0,393216,0 +(1,7330:6630773,6569194:25952256,708313,196608 +g1,7330:6630773,6569194 +g1,7330:6630773,6569194 +g1,7330:6434165,6569194 +(1,7330:6434165,6569194:0,708313,196608 +r1,7330:32779637,6569194:26345472,904921,196608 +k1,7330:6434165,6569194:-26345472 ) -(1,7325:6434165,6569194:26345472,708313,196608 -[1,7325:6630773,6569194:25952256,511705,0 -(1,7323:6630773,6468007:25952256,410518,101187 -(1,7322:6630773,6468007:0,0,0 -g1,7322:6630773,6468007 -g1,7322:6630773,6468007 -g1,7322:6303093,6468007 -(1,7322:6303093,6468007:0,0,0 -) -g1,7322:6630773,6468007 -) -k1,7323:6630773,6468007:0 -g1,7323:9792231,6468007 -g1,7323:11689105,6468007 -g1,7323:12321397,6468007 -h1,7323:12953689,6468007:0,0,0 -k1,7323:32583029,6468007:19629340 -g1,7323:32583029,6468007 -) -] -) -g1,7325:32583029,6569194 -g1,7325:6630773,6569194 -g1,7325:6630773,6569194 -g1,7325:32583029,6569194 -g1,7325:32583029,6569194 -) -h1,7325:6630773,6765802:0,0,0 -(1,7328:6630773,21355476:25952256,14014731,0 -k1,7328:12599879,21355476:5969106 -h1,7327:12599879,21355476:0,0,0 -(1,7327:12599879,21355476:14014044,14014731,0 -(1,7327:12599879,21355476:14014766,14014766,0 -(1,7327:12599879,21355476:14014766,14014766,0 -(1,7327:12599879,21355476:0,14014766,0 -(1,7327:12599879,21355476:0,18939904,0 -(1,7327:12599879,21355476:18939904,18939904,0 -) -k1,7327:12599879,21355476:-18939904 -) -) -g1,7327:26614645,21355476 -) -) -) -g1,7328:26613923,21355476 -k1,7328:32583029,21355476:5969106 -) -(1,7336:6630773,22196964:25952256,513147,134348 -h1,7335:6630773,22196964:983040,0,0 -k1,7335:8505404,22196964:263756 -k1,7335:9788245,22196964:263756 -k1,7335:11419082,22196964:263756 -k1,7335:12342129,22196964:263755 -k1,7335:12961745,22196964:263756 -k1,7335:16715948,22196964:263756 -k1,7335:19069647,22196964:263756 -(1,7335:19069647,22196964:0,452978,115847 -r1,7335:22241607,22196964:3171960,568825,115847 -k1,7335:19069647,22196964:-3171960 -) -(1,7335:19069647,22196964:3171960,452978,115847 -k1,7335:19069647,22196964:3277 -h1,7335:22238330,22196964:0,411205,112570 -) -k1,7335:22505363,22196964:263756 -k1,7335:24163070,22196964:263756 -k1,7335:25445910,22196964:263755 -k1,7335:27422122,22196964:263756 -k1,7335:29673585,22196964:263756 -k1,7335:31896867,22196964:263756 -k1,7335:32583029,22196964:0 -) -(1,7336:6630773,23038452:25952256,513147,134348 -k1,7335:9953650,23038452:250549 -k1,7335:10735696,23038452:250549 -k1,7335:12587945,23038452:250549 -k1,7335:14815716,23038452:250550 -k1,7335:15752427,23038452:250549 -k1,7335:16461073,23038452:250549 -k1,7335:19471998,23038452:250549 -k1,7335:20078407,23038452:250549 -k1,7335:21894611,23038452:250549 -k1,7335:22804453,23038452:250550 -k1,7335:26335734,23038452:250549 -k1,7335:29632396,23038452:250549 -k1,7335:31074390,23038452:250549 -k1,7335:32583029,23038452:0 -) -(1,7336:6630773,23879940:25952256,513147,126483 -k1,7335:8965542,23879940:223854 -k1,7335:12605132,23879940:223854 -k1,7335:14113492,23879940:223854 -k1,7335:15023507,23879940:223853 -k1,7335:15778858,23879940:223854 -k1,7335:17021797,23879940:223854 -k1,7335:18612732,23879940:223854 -k1,7335:19784237,23879940:223854 -k1,7335:21609791,23879940:223854 -k1,7335:22248463,23879940:223829 -k1,7335:25671785,23879940:223854 -k1,7335:26914723,23879940:223853 -k1,7335:28818920,23879940:223854 -k1,7335:31821501,23879940:223854 -k1,7336:32583029,23879940:0 -) -(1,7336:6630773,24721428:25952256,505283,126483 -(1,7335:6630773,24721428:0,452978,115847 -r1,7335:9802733,24721428:3171960,568825,115847 -k1,7335:6630773,24721428:-3171960 -) -(1,7335:6630773,24721428:3171960,452978,115847 -k1,7335:6630773,24721428:3277 -h1,7335:9799456,24721428:0,411205,112570 -) -g1,7335:10001962,24721428 -g1,7335:10732688,24721428 -g1,7335:13282038,24721428 -g1,7335:15179305,24721428 -g1,7335:16246886,24721428 -g1,7335:17545809,24721428 -g1,7335:18948279,24721428 -g1,7335:21601831,24721428 -g1,7335:22413822,24721428 -g1,7335:23632136,24721428 -g1,7335:24246208,24721428 -k1,7336:32583029,24721428:5761911 -g1,7336:32583029,24721428 -) -v1,7338:6630773,25897013:0,393216,0 -(1,7362:6630773,38268850:25952256,12765053,196608 -g1,7362:6630773,38268850 -g1,7362:6630773,38268850 -g1,7362:6434165,38268850 -(1,7362:6434165,38268850:0,12765053,196608 -r1,7362:32779637,38268850:26345472,12961661,196608 -k1,7362:6434165,38268850:-26345472 -) -(1,7362:6434165,38268850:26345472,12765053,196608 -[1,7362:6630773,38268850:25952256,12568445,0 -(1,7340:6630773,26110923:25952256,410518,101187 -(1,7339:6630773,26110923:0,0,0 -g1,7339:6630773,26110923 -g1,7339:6630773,26110923 -g1,7339:6303093,26110923 -(1,7339:6303093,26110923:0,0,0 -) -g1,7339:6630773,26110923 -) -k1,7340:6630773,26110923:0 -h1,7340:10424521,26110923:0,0,0 -k1,7340:32583029,26110923:22158508 -g1,7340:32583029,26110923 -) -(1,7361:6630773,26842637:25952256,379060,0 -(1,7342:6630773,26842637:0,0,0 -g1,7342:6630773,26842637 -g1,7342:6630773,26842637 -g1,7342:6303093,26842637 -(1,7342:6303093,26842637:0,0,0 -) -g1,7342:6630773,26842637 -) -h1,7361:7263064,26842637:0,0,0 -k1,7361:32583028,26842637:25319964 -g1,7361:32583028,26842637 -) -(1,7361:6630773,27508815:25952256,404226,7863 -h1,7361:6630773,27508815:0,0,0 -g1,7361:7579210,27508815 -h1,7361:9159938,27508815:0,0,0 -k1,7361:32583030,27508815:23423092 -g1,7361:32583030,27508815 -) -(1,7361:6630773,28174993:25952256,410518,101187 -h1,7361:6630773,28174993:0,0,0 -g1,7361:7579210,28174993 -g1,7361:11056813,28174993 -g1,7361:11689105,28174993 -g1,7361:13269834,28174993 -g1,7361:13902126,28174993 -g1,7361:14534418,28174993 -g1,7361:15166710,28174993 -g1,7361:17379730,28174993 -g1,7361:18960459,28174993 -g1,7361:19592751,28174993 -h1,7361:21173479,28174993:0,0,0 -k1,7361:32583029,28174993:11409550 -g1,7361:32583029,28174993 -) -(1,7361:6630773,28841171:25952256,379060,0 -h1,7361:6630773,28841171:0,0,0 -h1,7361:7263064,28841171:0,0,0 -k1,7361:32583028,28841171:25319964 -g1,7361:32583028,28841171 -) -(1,7361:6630773,29507349:25952256,404226,6290 -h1,7361:6630773,29507349:0,0,0 -g1,7361:7579210,29507349 -h1,7361:10740667,29507349:0,0,0 -k1,7361:32583029,29507349:21842362 -g1,7361:32583029,29507349 -) -(1,7361:6630773,30173527:25952256,404226,82312 -h1,7361:6630773,30173527:0,0,0 -g1,7361:7579210,30173527 -g1,7361:7895356,30173527 -g1,7361:8211502,30173527 -g1,7361:8527648,30173527 -g1,7361:8843794,30173527 -g1,7361:10108377,30173527 -g1,7361:10424523,30173527 -g1,7361:10740669,30173527 -g1,7361:11056815,30173527 -g1,7361:11372961,30173527 -g1,7361:11689107,30173527 -g1,7361:12637544,30173527 -g1,7361:12953690,30173527 -g1,7361:15166710,30173527 -g1,7361:15482856,30173527 -g1,7361:15799002,30173527 -g1,7361:16115148,30173527 -g1,7361:16431294,30173527 -g1,7361:16747440,30173527 -g1,7361:17695877,30173527 -g1,7361:18012023,30173527 -g1,7361:18328169,30173527 -g1,7361:18644315,30173527 -g1,7361:18960461,30173527 -h1,7361:19908898,30173527:0,0,0 -k1,7361:32583029,30173527:12674131 -g1,7361:32583029,30173527 -) -(1,7361:6630773,30839705:25952256,388497,9436 -h1,7361:6630773,30839705:0,0,0 -g1,7361:7579210,30839705 -g1,7361:10108376,30839705 -g1,7361:10424522,30839705 -g1,7361:12637542,30839705 -g1,7361:12953688,30839705 -g1,7361:15166708,30839705 -g1,7361:15482854,30839705 -g1,7361:15799000,30839705 -g1,7361:17695874,30839705 -g1,7361:18012020,30839705 -h1,7361:19908894,30839705:0,0,0 -k1,7361:32583029,30839705:12674135 -g1,7361:32583029,30839705 -) -(1,7361:6630773,31505883:25952256,379060,0 -h1,7361:6630773,31505883:0,0,0 -h1,7361:7263064,31505883:0,0,0 -k1,7361:32583028,31505883:25319964 -g1,7361:32583028,31505883 -) -(1,7361:6630773,32172061:25952256,410518,7863 -h1,7361:6630773,32172061:0,0,0 -g1,7361:7579210,32172061 -h1,7361:11689104,32172061:0,0,0 -k1,7361:32583028,32172061:20893924 -g1,7361:32583028,32172061 -) -(1,7361:6630773,32838239:25952256,404226,76021 -h1,7361:6630773,32838239:0,0,0 -g1,7361:7579210,32838239 -g1,7361:7895356,32838239 -g1,7361:8211502,32838239 -g1,7361:8527648,32838239 -g1,7361:8843794,32838239 -g1,7361:9159940,32838239 -g1,7361:9476086,32838239 -g1,7361:9792232,32838239 -g1,7361:10108378,32838239 -g1,7361:10424524,32838239 -g1,7361:10740670,32838239 -g1,7361:11056816,32838239 -g1,7361:11372962,32838239 -g1,7361:14218273,32838239 -g1,7361:15799002,32838239 -g1,7361:17695876,32838239 -g1,7361:18328168,32838239 -g1,7361:20225042,32838239 -k1,7361:20225042,32838239:0 -h1,7361:22754207,32838239:0,0,0 -k1,7361:32583029,32838239:9828822 -g1,7361:32583029,32838239 -) -(1,7361:6630773,33504417:25952256,404226,101187 -h1,7361:6630773,33504417:0,0,0 -g1,7361:7579210,33504417 -g1,7361:11372958,33504417 -g1,7361:14218269,33504417 -g1,7361:14534415,33504417 -g1,7361:14850561,33504417 -g1,7361:15166707,33504417 -g1,7361:15482853,33504417 -g1,7361:17695873,33504417 -g1,7361:18012019,33504417 -g1,7361:20225039,33504417 -g1,7361:20541185,33504417 -g1,7361:20857331,33504417 -g1,7361:23070351,33504417 -h1,7361:23386497,33504417:0,0,0 -k1,7361:32583029,33504417:9196532 -g1,7361:32583029,33504417 -) -(1,7361:6630773,34170595:25952256,404226,101187 -h1,7361:6630773,34170595:0,0,0 -g1,7361:7579210,34170595 -g1,7361:9476084,34170595 -g1,7361:9792230,34170595 -g1,7361:10108376,34170595 -g1,7361:10424522,34170595 -g1,7361:10740668,34170595 -g1,7361:11056814,34170595 -g1,7361:11372960,34170595 -g1,7361:11689106,34170595 -g1,7361:12005252,34170595 -g1,7361:14218272,34170595 -g1,7361:14534418,34170595 -g1,7361:14850564,34170595 -g1,7361:15166710,34170595 -g1,7361:15482856,34170595 -g1,7361:17695876,34170595 -g1,7361:18012022,34170595 -g1,7361:18328168,34170595 -g1,7361:20225042,34170595 -g1,7361:23070353,34170595 -h1,7361:24018790,34170595:0,0,0 -k1,7361:32583029,34170595:8564239 -g1,7361:32583029,34170595 -) -(1,7361:6630773,34836773:25952256,379060,0 -h1,7361:6630773,34836773:0,0,0 -g1,7361:7579210,34836773 -k1,7361:7579210,34836773:0 -h1,7361:8527648,34836773:0,0,0 -k1,7361:32583028,34836773:24055380 -g1,7361:32583028,34836773 -) -(1,7361:6630773,35502951:25952256,410518,107478 -h1,7361:6630773,35502951:0,0,0 -g1,7361:7579210,35502951 -g1,7361:10108376,35502951 -g1,7361:12321396,35502951 -g1,7361:12637542,35502951 -g1,7361:13269834,35502951 -g1,7361:15166709,35502951 -g1,7361:17063583,35502951 -g1,7361:18644312,35502951 -g1,7361:20225041,35502951 -g1,7361:21489625,35502951 -g1,7361:23070354,35502951 -g1,7361:24334938,35502951 -g1,7361:25599521,35502951 -g1,7361:26231813,35502951 -g1,7361:26864105,35502951 -h1,7361:27180251,35502951:0,0,0 -k1,7361:32583029,35502951:5402778 -g1,7361:32583029,35502951 -) -(1,7361:6630773,36169129:25952256,379060,0 -h1,7361:6630773,36169129:0,0,0 -h1,7361:7263064,36169129:0,0,0 -k1,7361:32583028,36169129:25319964 -g1,7361:32583028,36169129 -) -(1,7361:6630773,36835307:25952256,410518,107478 -h1,7361:6630773,36835307:0,0,0 -g1,7361:7579210,36835307 -g1,7361:10424521,36835307 -g1,7361:13269832,36835307 -g1,7361:15482852,36835307 -g1,7361:17379726,36835307 -g1,7361:18328163,36835307 -g1,7361:19276600,36835307 -g1,7361:21805766,36835307 -g1,7361:22754203,36835307 -h1,7361:24967223,36835307:0,0,0 -k1,7361:32583029,36835307:7615806 -g1,7361:32583029,36835307 -) -(1,7361:6630773,37501485:25952256,404226,107478 -h1,7361:6630773,37501485:0,0,0 -g1,7361:7579210,37501485 -g1,7361:10424521,37501485 -g1,7361:13902124,37501485 -g1,7361:14218270,37501485 -g1,7361:19276601,37501485 -g1,7361:22754204,37501485 -g1,7361:23070350,37501485 -h1,7361:24967224,37501485:0,0,0 -k1,7361:32583029,37501485:7615805 -g1,7361:32583029,37501485 -) -(1,7361:6630773,38167663:25952256,404226,101187 -h1,7361:6630773,38167663:0,0,0 -g1,7361:7579210,38167663 -g1,7361:11689104,38167663 -g1,7361:13585978,38167663 -g1,7361:14534415,38167663 -g1,7361:15166707,38167663 -g1,7361:16431290,38167663 -g1,7361:17379727,38167663 -g1,7361:18644310,38167663 -g1,7361:18960456,38167663 -g1,7361:21805768,38167663 -k1,7361:21805768,38167663:0 -h1,7361:24334933,38167663:0,0,0 -k1,7361:32583029,38167663:8248096 -g1,7361:32583029,38167663 -) -] -) -g1,7362:32583029,38268850 -g1,7362:6630773,38268850 -g1,7362:6630773,38268850 -g1,7362:32583029,38268850 -g1,7362:32583029,38268850 -) -h1,7362:6630773,38465458:0,0,0 -(1,7366:6630773,39816353:25952256,513147,126483 -h1,7365:6630773,39816353:983040,0,0 -k1,7365:9293803,39816353:206741 -k1,7365:10887286,39816353:206741 -k1,7365:11706789,39816353:206741 -k1,7365:12932614,39816353:206740 -k1,7365:15787665,39816353:206741 -k1,7365:16653698,39816353:206741 -k1,7365:17879524,39816353:206741 -k1,7365:21250343,39816353:206741 -k1,7365:23735771,39816353:206741 -k1,7365:24704039,39816353:206740 -k1,7365:27363137,39816353:206741 -k1,7365:29512365,39816353:206741 -k1,7365:31714677,39816353:206741 -k1,7365:32583029,39816353:0 -) -(1,7366:6630773,40657841:25952256,513147,126483 -k1,7365:8222553,40657841:151954 -h1,7365:8222553,40657841:0,0,0 -k1,7365:10104688,40657841:301407 -k1,7365:10801278,40657841:301408 -k1,7365:11497868,40657841:301408 -k1,7365:12194458,40657841:301408 -k1,7365:14322321,40657841:151953 -k1,7365:15157160,40657841:151954 -k1,7365:16328198,40657841:151953 -k1,7365:20500786,40657841:151954 -k1,7365:21312032,40657841:151954 -k1,7365:22483070,40657841:151953 -k1,7365:24622731,40657841:151954 -k1,7365:26660810,40657841:151953 -k1,7365:28183777,40657841:151954 -k1,7365:29354815,40657841:151953 -k1,7365:30896132,40657841:151954 -k1,7365:32583029,40657841:0 -) -(1,7366:6630773,41499329:25952256,513147,126483 -k1,7365:8754139,41499329:180879 -k1,7365:12759699,41499329:180879 -k1,7365:13808931,41499329:180880 -k1,7365:15255966,41499329:180879 -k1,7365:16455930,41499329:180879 -k1,7365:19713069,41499329:180879 -k1,7365:22698235,41499329:180880 -k1,7365:24070559,41499329:180879 -k1,7365:26611389,41499329:180879 -k1,7365:27451560,41499329:180879 -k1,7365:28651525,41499329:180880 -k1,7365:31900144,41499329:180879 -k1,7365:32583029,41499329:0 -) -(1,7366:6630773,42340817:25952256,513147,11795 -k1,7365:10122466,42340817:211616 -k1,7365:12969284,42340817:211615 -k1,7365:17252652,42340817:211616 -k1,7365:18655712,42340817:211615 -k1,7365:19886413,42340817:211616 -k1,7365:21810484,42340817:211615 -k1,7365:23364277,42340817:211616 -k1,7365:25518379,42340817:211615 -k1,7365:30236906,42340817:211616 -k1,7365:31316873,42340817:211615 -k1,7365:32583029,42340817:0 -) -(1,7366:6630773,43182305:25952256,513147,134348 -k1,7365:7882213,43182305:232355 -k1,7365:11160681,43182305:232355 -k1,7365:12052327,43182305:232354 -k1,7365:13303767,43182305:232355 -k1,7365:15523829,43182305:232355 -k1,7365:19367218,43182305:232355 -k1,7365:20791018,43182305:232355 -k1,7365:22532012,43182305:232355 -k1,7365:25590278,43182305:232354 -k1,7365:27193646,43182305:232355 -k1,7365:32049566,43182305:232355 -$1,7365:32049566,43182305 -$1,7365:32370037,43182305 -k1,7366:32583029,43182305:0 -) -(1,7366:6630773,44023793:25952256,513147,134348 -k1,7365:8529725,44023793:203536 -k1,7365:9477750,44023793:203536 -k1,7365:10700371,44023793:203536 -k1,7365:12086832,44023793:203536 -k1,7365:12949660,44023793:203536 -k1,7365:14172281,44023793:203536 -k1,7365:17366225,44023793:203536 -k1,7365:19224545,44023793:203536 -k1,7365:19959578,44023793:203536 -k1,7365:23970100,44023793:203536 -k1,7365:24983006,44023793:203536 -k1,7365:27642176,44023793:203536 -k1,7365:28505004,44023793:203536 -k1,7365:31391584,44023793:203536 -k1,7365:32583029,44023793:0 -) -(1,7366:6630773,44865281:25952256,615216,95026 -g1,7365:8983515,44865281 -g1,7365:12463476,44865281 -g1,7365:13321997,44865281 -g1,7365:18041244,44865281 -$1,7365:18248338,44865281 -(1,7365:18742479,44590000:311689,339935,0 -) -$1,7365:19054168,44865281 -k1,7366:32583029,44865281:13148097 -g1,7366:32583029,44865281 -) -(1,7368:6630773,45706769:25952256,513147,126484 -h1,7367:6630773,45706769:983040,0,0 -k1,7367:8387836,45706769:296266 -k1,7367:9552455,45706769:296267 -k1,7367:11859366,45706769:296266 -k1,7367:12807060,45706769:296266 -k1,7367:14122411,45706769:296266 -k1,7367:16406385,45706769:296267 -k1,7367:20687240,45706769:296266 -k1,7367:21851858,45706769:296266 -k1,7367:23252406,45706769:296266 -k1,7367:24879054,45706769:296267 -k1,7367:27473668,45706769:296266 -$1,7367:27473668,45706769 -$1,7367:27981572,45706769 -k1,7367:28277838,45706769:296266 -k1,7367:29765550,45706769:296267 -$1,7367:29765550,45706769 -$1,7367:30209884,45706769 -k1,7367:30506150,45706769:296266 -k1,7367:31563944,45706769:296266 -k1,7367:32583029,45706769:0 -) -] -(1,7368:32583029,45706769:0,0,0 -g1,7368:32583029,45706769 -) -) -] -(1,7368:6630773,47279633:25952256,0,0 -h1,7368:6630773,47279633:25952256,0,0 -) -] -h1,7368:4262630,4025873:0,0,0 +(1,7330:6434165,6569194:26345472,708313,196608 +[1,7330:6630773,6569194:25952256,511705,0 +(1,7328:6630773,6468007:25952256,410518,101187 +(1,7327:6630773,6468007:0,0,0 +g1,7327:6630773,6468007 +g1,7327:6630773,6468007 +g1,7327:6303093,6468007 +(1,7327:6303093,6468007:0,0,0 +) +g1,7327:6630773,6468007 +) +k1,7328:6630773,6468007:0 +g1,7328:9792231,6468007 +g1,7328:11689105,6468007 +g1,7328:12321397,6468007 +h1,7328:12953689,6468007:0,0,0 +k1,7328:32583029,6468007:19629340 +g1,7328:32583029,6468007 +) +] +) +g1,7330:32583029,6569194 +g1,7330:6630773,6569194 +g1,7330:6630773,6569194 +g1,7330:32583029,6569194 +g1,7330:32583029,6569194 +) +h1,7330:6630773,6765802:0,0,0 +(1,7333:6630773,21355476:25952256,14014731,0 +k1,7333:12599879,21355476:5969106 +h1,7332:12599879,21355476:0,0,0 +(1,7332:12599879,21355476:14014044,14014731,0 +(1,7332:12599879,21355476:14014766,14014766,0 +(1,7332:12599879,21355476:14014766,14014766,0 +(1,7332:12599879,21355476:0,14014766,0 +(1,7332:12599879,21355476:0,18939904,0 +(1,7332:12599879,21355476:18939904,18939904,0 +) +k1,7332:12599879,21355476:-18939904 +) +) +g1,7332:26614645,21355476 +) +) +) +g1,7333:26613923,21355476 +k1,7333:32583029,21355476:5969106 +) +(1,7341:6630773,22196964:25952256,513147,134348 +h1,7340:6630773,22196964:983040,0,0 +k1,7340:8505404,22196964:263756 +k1,7340:9788245,22196964:263756 +k1,7340:11419082,22196964:263756 +k1,7340:12342129,22196964:263755 +k1,7340:12961745,22196964:263756 +k1,7340:16715948,22196964:263756 +k1,7340:19069647,22196964:263756 +(1,7340:19069647,22196964:0,452978,115847 +r1,7340:22241607,22196964:3171960,568825,115847 +k1,7340:19069647,22196964:-3171960 +) +(1,7340:19069647,22196964:3171960,452978,115847 +k1,7340:19069647,22196964:3277 +h1,7340:22238330,22196964:0,411205,112570 +) +k1,7340:22505363,22196964:263756 +k1,7340:24163070,22196964:263756 +k1,7340:25445910,22196964:263755 +k1,7340:27422122,22196964:263756 +k1,7340:29673585,22196964:263756 +k1,7340:31896867,22196964:263756 +k1,7340:32583029,22196964:0 +) +(1,7341:6630773,23038452:25952256,513147,134348 +k1,7340:9953650,23038452:250549 +k1,7340:10735696,23038452:250549 +k1,7340:12587945,23038452:250549 +k1,7340:14815716,23038452:250550 +k1,7340:15752427,23038452:250549 +k1,7340:16461073,23038452:250549 +k1,7340:19471998,23038452:250549 +k1,7340:20078407,23038452:250549 +k1,7340:21894611,23038452:250549 +k1,7340:22804453,23038452:250550 +k1,7340:26335734,23038452:250549 +k1,7340:29632396,23038452:250549 +k1,7340:31074390,23038452:250549 +k1,7340:32583029,23038452:0 +) +(1,7341:6630773,23879940:25952256,513147,126483 +k1,7340:8965542,23879940:223854 +k1,7340:12605132,23879940:223854 +k1,7340:14113492,23879940:223854 +k1,7340:15023507,23879940:223853 +k1,7340:15778858,23879940:223854 +k1,7340:17021797,23879940:223854 +k1,7340:18612732,23879940:223854 +k1,7340:19784237,23879940:223854 +k1,7340:21609791,23879940:223854 +k1,7340:22248463,23879940:223829 +k1,7340:25671785,23879940:223854 +k1,7340:26914723,23879940:223853 +k1,7340:28818920,23879940:223854 +k1,7340:31821501,23879940:223854 +k1,7341:32583029,23879940:0 +) +(1,7341:6630773,24721428:25952256,505283,126483 +(1,7340:6630773,24721428:0,452978,115847 +r1,7340:9802733,24721428:3171960,568825,115847 +k1,7340:6630773,24721428:-3171960 +) +(1,7340:6630773,24721428:3171960,452978,115847 +k1,7340:6630773,24721428:3277 +h1,7340:9799456,24721428:0,411205,112570 +) +g1,7340:10001962,24721428 +g1,7340:10732688,24721428 +g1,7340:13282038,24721428 +g1,7340:15179305,24721428 +g1,7340:16246886,24721428 +g1,7340:17545809,24721428 +g1,7340:18948279,24721428 +g1,7340:21601831,24721428 +g1,7340:22413822,24721428 +g1,7340:23632136,24721428 +g1,7340:24246208,24721428 +k1,7341:32583029,24721428:5761911 +g1,7341:32583029,24721428 +) +v1,7343:6630773,25897013:0,393216,0 +(1,7367:6630773,38268850:25952256,12765053,196608 +g1,7367:6630773,38268850 +g1,7367:6630773,38268850 +g1,7367:6434165,38268850 +(1,7367:6434165,38268850:0,12765053,196608 +r1,7367:32779637,38268850:26345472,12961661,196608 +k1,7367:6434165,38268850:-26345472 +) +(1,7367:6434165,38268850:26345472,12765053,196608 +[1,7367:6630773,38268850:25952256,12568445,0 +(1,7345:6630773,26110923:25952256,410518,101187 +(1,7344:6630773,26110923:0,0,0 +g1,7344:6630773,26110923 +g1,7344:6630773,26110923 +g1,7344:6303093,26110923 +(1,7344:6303093,26110923:0,0,0 +) +g1,7344:6630773,26110923 +) +k1,7345:6630773,26110923:0 +h1,7345:10424521,26110923:0,0,0 +k1,7345:32583029,26110923:22158508 +g1,7345:32583029,26110923 +) +(1,7366:6630773,26842637:25952256,379060,0 +(1,7347:6630773,26842637:0,0,0 +g1,7347:6630773,26842637 +g1,7347:6630773,26842637 +g1,7347:6303093,26842637 +(1,7347:6303093,26842637:0,0,0 +) +g1,7347:6630773,26842637 +) +h1,7366:7263064,26842637:0,0,0 +k1,7366:32583028,26842637:25319964 +g1,7366:32583028,26842637 +) +(1,7366:6630773,27508815:25952256,404226,7863 +h1,7366:6630773,27508815:0,0,0 +g1,7366:7579210,27508815 +h1,7366:9159938,27508815:0,0,0 +k1,7366:32583030,27508815:23423092 +g1,7366:32583030,27508815 +) +(1,7366:6630773,28174993:25952256,410518,101187 +h1,7366:6630773,28174993:0,0,0 +g1,7366:7579210,28174993 +g1,7366:11056813,28174993 +g1,7366:11689105,28174993 +g1,7366:13269834,28174993 +g1,7366:13902126,28174993 +g1,7366:14534418,28174993 +g1,7366:15166710,28174993 +g1,7366:17379730,28174993 +g1,7366:18960459,28174993 +g1,7366:19592751,28174993 +h1,7366:21173479,28174993:0,0,0 +k1,7366:32583029,28174993:11409550 +g1,7366:32583029,28174993 +) +(1,7366:6630773,28841171:25952256,379060,0 +h1,7366:6630773,28841171:0,0,0 +h1,7366:7263064,28841171:0,0,0 +k1,7366:32583028,28841171:25319964 +g1,7366:32583028,28841171 +) +(1,7366:6630773,29507349:25952256,404226,6290 +h1,7366:6630773,29507349:0,0,0 +g1,7366:7579210,29507349 +h1,7366:10740667,29507349:0,0,0 +k1,7366:32583029,29507349:21842362 +g1,7366:32583029,29507349 +) +(1,7366:6630773,30173527:25952256,404226,82312 +h1,7366:6630773,30173527:0,0,0 +g1,7366:7579210,30173527 +g1,7366:7895356,30173527 +g1,7366:8211502,30173527 +g1,7366:8527648,30173527 +g1,7366:8843794,30173527 +g1,7366:10108377,30173527 +g1,7366:10424523,30173527 +g1,7366:10740669,30173527 +g1,7366:11056815,30173527 +g1,7366:11372961,30173527 +g1,7366:11689107,30173527 +g1,7366:12637544,30173527 +g1,7366:12953690,30173527 +g1,7366:15166710,30173527 +g1,7366:15482856,30173527 +g1,7366:15799002,30173527 +g1,7366:16115148,30173527 +g1,7366:16431294,30173527 +g1,7366:16747440,30173527 +g1,7366:17695877,30173527 +g1,7366:18012023,30173527 +g1,7366:18328169,30173527 +g1,7366:18644315,30173527 +g1,7366:18960461,30173527 +h1,7366:19908898,30173527:0,0,0 +k1,7366:32583029,30173527:12674131 +g1,7366:32583029,30173527 +) +(1,7366:6630773,30839705:25952256,388497,9436 +h1,7366:6630773,30839705:0,0,0 +g1,7366:7579210,30839705 +g1,7366:10108376,30839705 +g1,7366:10424522,30839705 +g1,7366:12637542,30839705 +g1,7366:12953688,30839705 +g1,7366:15166708,30839705 +g1,7366:15482854,30839705 +g1,7366:15799000,30839705 +g1,7366:17695874,30839705 +g1,7366:18012020,30839705 +h1,7366:19908894,30839705:0,0,0 +k1,7366:32583029,30839705:12674135 +g1,7366:32583029,30839705 +) +(1,7366:6630773,31505883:25952256,379060,0 +h1,7366:6630773,31505883:0,0,0 +h1,7366:7263064,31505883:0,0,0 +k1,7366:32583028,31505883:25319964 +g1,7366:32583028,31505883 +) +(1,7366:6630773,32172061:25952256,410518,7863 +h1,7366:6630773,32172061:0,0,0 +g1,7366:7579210,32172061 +h1,7366:11689104,32172061:0,0,0 +k1,7366:32583028,32172061:20893924 +g1,7366:32583028,32172061 +) +(1,7366:6630773,32838239:25952256,404226,76021 +h1,7366:6630773,32838239:0,0,0 +g1,7366:7579210,32838239 +g1,7366:7895356,32838239 +g1,7366:8211502,32838239 +g1,7366:8527648,32838239 +g1,7366:8843794,32838239 +g1,7366:9159940,32838239 +g1,7366:9476086,32838239 +g1,7366:9792232,32838239 +g1,7366:10108378,32838239 +g1,7366:10424524,32838239 +g1,7366:10740670,32838239 +g1,7366:11056816,32838239 +g1,7366:11372962,32838239 +g1,7366:14218273,32838239 +g1,7366:15799002,32838239 +g1,7366:17695876,32838239 +g1,7366:18328168,32838239 +g1,7366:20225042,32838239 +k1,7366:20225042,32838239:0 +h1,7366:22754207,32838239:0,0,0 +k1,7366:32583029,32838239:9828822 +g1,7366:32583029,32838239 +) +(1,7366:6630773,33504417:25952256,404226,101187 +h1,7366:6630773,33504417:0,0,0 +g1,7366:7579210,33504417 +g1,7366:11372958,33504417 +g1,7366:14218269,33504417 +g1,7366:14534415,33504417 +g1,7366:14850561,33504417 +g1,7366:15166707,33504417 +g1,7366:15482853,33504417 +g1,7366:17695873,33504417 +g1,7366:18012019,33504417 +g1,7366:20225039,33504417 +g1,7366:20541185,33504417 +g1,7366:20857331,33504417 +g1,7366:23070351,33504417 +h1,7366:23386497,33504417:0,0,0 +k1,7366:32583029,33504417:9196532 +g1,7366:32583029,33504417 +) +(1,7366:6630773,34170595:25952256,404226,101187 +h1,7366:6630773,34170595:0,0,0 +g1,7366:7579210,34170595 +g1,7366:9476084,34170595 +g1,7366:9792230,34170595 +g1,7366:10108376,34170595 +g1,7366:10424522,34170595 +g1,7366:10740668,34170595 +g1,7366:11056814,34170595 +g1,7366:11372960,34170595 +g1,7366:11689106,34170595 +g1,7366:12005252,34170595 +g1,7366:14218272,34170595 +g1,7366:14534418,34170595 +g1,7366:14850564,34170595 +g1,7366:15166710,34170595 +g1,7366:15482856,34170595 +g1,7366:17695876,34170595 +g1,7366:18012022,34170595 +g1,7366:18328168,34170595 +g1,7366:20225042,34170595 +g1,7366:23070353,34170595 +h1,7366:24018790,34170595:0,0,0 +k1,7366:32583029,34170595:8564239 +g1,7366:32583029,34170595 +) +(1,7366:6630773,34836773:25952256,379060,0 +h1,7366:6630773,34836773:0,0,0 +g1,7366:7579210,34836773 +k1,7366:7579210,34836773:0 +h1,7366:8527648,34836773:0,0,0 +k1,7366:32583028,34836773:24055380 +g1,7366:32583028,34836773 +) +(1,7366:6630773,35502951:25952256,410518,107478 +h1,7366:6630773,35502951:0,0,0 +g1,7366:7579210,35502951 +g1,7366:10108376,35502951 +g1,7366:12321396,35502951 +g1,7366:12637542,35502951 +g1,7366:13269834,35502951 +g1,7366:15166709,35502951 +g1,7366:17063583,35502951 +g1,7366:18644312,35502951 +g1,7366:20225041,35502951 +g1,7366:21489625,35502951 +g1,7366:23070354,35502951 +g1,7366:24334938,35502951 +g1,7366:25599521,35502951 +g1,7366:26231813,35502951 +g1,7366:26864105,35502951 +h1,7366:27180251,35502951:0,0,0 +k1,7366:32583029,35502951:5402778 +g1,7366:32583029,35502951 +) +(1,7366:6630773,36169129:25952256,379060,0 +h1,7366:6630773,36169129:0,0,0 +h1,7366:7263064,36169129:0,0,0 +k1,7366:32583028,36169129:25319964 +g1,7366:32583028,36169129 +) +(1,7366:6630773,36835307:25952256,410518,107478 +h1,7366:6630773,36835307:0,0,0 +g1,7366:7579210,36835307 +g1,7366:10424521,36835307 +g1,7366:13269832,36835307 +g1,7366:15482852,36835307 +g1,7366:17379726,36835307 +g1,7366:18328163,36835307 +g1,7366:19276600,36835307 +g1,7366:21805766,36835307 +g1,7366:22754203,36835307 +h1,7366:24967223,36835307:0,0,0 +k1,7366:32583029,36835307:7615806 +g1,7366:32583029,36835307 +) +(1,7366:6630773,37501485:25952256,404226,107478 +h1,7366:6630773,37501485:0,0,0 +g1,7366:7579210,37501485 +g1,7366:10424521,37501485 +g1,7366:13902124,37501485 +g1,7366:14218270,37501485 +g1,7366:19276601,37501485 +g1,7366:22754204,37501485 +g1,7366:23070350,37501485 +h1,7366:24967224,37501485:0,0,0 +k1,7366:32583029,37501485:7615805 +g1,7366:32583029,37501485 +) +(1,7366:6630773,38167663:25952256,404226,101187 +h1,7366:6630773,38167663:0,0,0 +g1,7366:7579210,38167663 +g1,7366:11689104,38167663 +g1,7366:13585978,38167663 +g1,7366:14534415,38167663 +g1,7366:15166707,38167663 +g1,7366:16431290,38167663 +g1,7366:17379727,38167663 +g1,7366:18644310,38167663 +g1,7366:18960456,38167663 +g1,7366:21805768,38167663 +k1,7366:21805768,38167663:0 +h1,7366:24334933,38167663:0,0,0 +k1,7366:32583029,38167663:8248096 +g1,7366:32583029,38167663 +) +] +) +g1,7367:32583029,38268850 +g1,7367:6630773,38268850 +g1,7367:6630773,38268850 +g1,7367:32583029,38268850 +g1,7367:32583029,38268850 +) +h1,7367:6630773,38465458:0,0,0 +(1,7371:6630773,39816353:25952256,513147,126483 +h1,7370:6630773,39816353:983040,0,0 +k1,7370:9293803,39816353:206741 +k1,7370:10887286,39816353:206741 +k1,7370:11706789,39816353:206741 +k1,7370:12932614,39816353:206740 +k1,7370:15787665,39816353:206741 +k1,7370:16653698,39816353:206741 +k1,7370:17879524,39816353:206741 +k1,7370:21250343,39816353:206741 +k1,7370:23735771,39816353:206741 +k1,7370:24704039,39816353:206740 +k1,7370:27363137,39816353:206741 +k1,7370:29512365,39816353:206741 +k1,7370:31714677,39816353:206741 +k1,7370:32583029,39816353:0 +) +(1,7371:6630773,40657841:25952256,513147,126483 +k1,7370:8222553,40657841:151954 +h1,7370:8222553,40657841:0,0,0 +k1,7370:10104688,40657841:301407 +k1,7370:10801278,40657841:301408 +k1,7370:11497868,40657841:301408 +k1,7370:12194458,40657841:301408 +k1,7370:14322321,40657841:151953 +k1,7370:15157160,40657841:151954 +k1,7370:16328198,40657841:151953 +k1,7370:20500786,40657841:151954 +k1,7370:21312032,40657841:151954 +k1,7370:22483070,40657841:151953 +k1,7370:24622731,40657841:151954 +k1,7370:26660810,40657841:151953 +k1,7370:28183777,40657841:151954 +k1,7370:29354815,40657841:151953 +k1,7370:30896132,40657841:151954 +k1,7370:32583029,40657841:0 +) +(1,7371:6630773,41499329:25952256,513147,126483 +k1,7370:8754139,41499329:180879 +k1,7370:12759699,41499329:180879 +k1,7370:13808931,41499329:180880 +k1,7370:15255966,41499329:180879 +k1,7370:16455930,41499329:180879 +k1,7370:19713069,41499329:180879 +k1,7370:22698235,41499329:180880 +k1,7370:24070559,41499329:180879 +k1,7370:26611389,41499329:180879 +k1,7370:27451560,41499329:180879 +k1,7370:28651525,41499329:180880 +k1,7370:31900144,41499329:180879 +k1,7370:32583029,41499329:0 +) +(1,7371:6630773,42340817:25952256,513147,11795 +k1,7370:10122466,42340817:211616 +k1,7370:12969284,42340817:211615 +k1,7370:17252652,42340817:211616 +k1,7370:18655712,42340817:211615 +k1,7370:19886413,42340817:211616 +k1,7370:21810484,42340817:211615 +k1,7370:23364277,42340817:211616 +k1,7370:25518379,42340817:211615 +k1,7370:30236906,42340817:211616 +k1,7370:31316873,42340817:211615 +k1,7370:32583029,42340817:0 +) +(1,7371:6630773,43182305:25952256,513147,134348 +k1,7370:7882213,43182305:232355 +k1,7370:11160681,43182305:232355 +k1,7370:12052327,43182305:232354 +k1,7370:13303767,43182305:232355 +k1,7370:15523829,43182305:232355 +k1,7370:19367218,43182305:232355 +k1,7370:20791018,43182305:232355 +k1,7370:22532012,43182305:232355 +k1,7370:25590278,43182305:232354 +k1,7370:27193646,43182305:232355 +k1,7370:32049566,43182305:232355 +$1,7370:32049566,43182305 +$1,7370:32370037,43182305 +k1,7371:32583029,43182305:0 +) +(1,7371:6630773,44023793:25952256,513147,134348 +k1,7370:8529725,44023793:203536 +k1,7370:9477750,44023793:203536 +k1,7370:10700371,44023793:203536 +k1,7370:12086832,44023793:203536 +k1,7370:12949660,44023793:203536 +k1,7370:14172281,44023793:203536 +k1,7370:17366225,44023793:203536 +k1,7370:19224545,44023793:203536 +k1,7370:19959578,44023793:203536 +k1,7370:23970100,44023793:203536 +k1,7370:24983006,44023793:203536 +k1,7370:27642176,44023793:203536 +k1,7370:28505004,44023793:203536 +k1,7370:31391584,44023793:203536 +k1,7370:32583029,44023793:0 +) +(1,7371:6630773,44865281:25952256,615216,95026 +g1,7370:8983515,44865281 +g1,7370:12463476,44865281 +g1,7370:13321997,44865281 +g1,7370:18041244,44865281 +$1,7370:18248338,44865281 +(1,7370:18742479,44590000:311689,339935,0 +) +$1,7370:19054168,44865281 +k1,7371:32583029,44865281:13148097 +g1,7371:32583029,44865281 +) +(1,7373:6630773,45706769:25952256,513147,126484 +h1,7372:6630773,45706769:983040,0,0 +k1,7372:8387836,45706769:296266 +k1,7372:9552455,45706769:296267 +k1,7372:11859366,45706769:296266 +k1,7372:12807060,45706769:296266 +k1,7372:14122411,45706769:296266 +k1,7372:16406385,45706769:296267 +k1,7372:20687240,45706769:296266 +k1,7372:21851858,45706769:296266 +k1,7372:23252406,45706769:296266 +k1,7372:24879054,45706769:296267 +k1,7372:27473668,45706769:296266 +$1,7372:27473668,45706769 +$1,7372:27981572,45706769 +k1,7372:28277838,45706769:296266 +k1,7372:29765550,45706769:296267 +$1,7372:29765550,45706769 +$1,7372:30209884,45706769 +k1,7372:30506150,45706769:296266 +k1,7372:31563944,45706769:296266 +k1,7372:32583029,45706769:0 +) +] +(1,7373:32583029,45706769:0,0,0 +g1,7373:32583029,45706769 +) +) +] +(1,7373:6630773,47279633:25952256,0,0 +h1,7373:6630773,47279633:25952256,0,0 +) +] +h1,7373:4262630,4025873:0,0,0 ] !19296 }138 -Input:1031:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1032:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1033:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:1027:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1028:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1029:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {139 -[1,7418:4262630,47279633:28320399,43253760,0 -(1,7418:4262630,4025873:0,0,0 -[1,7418:-473657,4025873:25952256,0,0 -(1,7418:-473657,-710414:25952256,0,0 -h1,7418:-473657,-710414:0,0,0 -(1,7418:-473657,-710414:0,0,0 -(1,7418:-473657,-710414:0,0,0 -g1,7418:-473657,-710414 -(1,7418:-473657,-710414:65781,0,65781 -g1,7418:-407876,-710414 -[1,7418:-407876,-644633:0,0,0 +[1,7423:4262630,47279633:28320399,43253760,0 +(1,7423:4262630,4025873:0,0,0 +[1,7423:-473657,4025873:25952256,0,0 +(1,7423:-473657,-710414:25952256,0,0 +h1,7423:-473657,-710414:0,0,0 +(1,7423:-473657,-710414:0,0,0 +(1,7423:-473657,-710414:0,0,0 +g1,7423:-473657,-710414 +(1,7423:-473657,-710414:65781,0,65781 +g1,7423:-407876,-710414 +[1,7423:-407876,-644633:0,0,0 ] ) -k1,7418:-473657,-710414:-65781 +k1,7423:-473657,-710414:-65781 ) ) -k1,7418:25478599,-710414:25952256 -g1,7418:25478599,-710414 +k1,7423:25478599,-710414:25952256 +g1,7423:25478599,-710414 ) ] ) -[1,7418:6630773,47279633:25952256,43253760,0 -[1,7418:6630773,4812305:25952256,786432,0 -(1,7418:6630773,4812305:25952256,505283,134348 -(1,7418:6630773,4812305:25952256,505283,134348 -g1,7418:3078558,4812305 -[1,7418:3078558,4812305:0,0,0 -(1,7418:3078558,2439708:0,1703936,0 -k1,7418:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7418:2537886,2439708:1179648,16384,0 +[1,7423:6630773,47279633:25952256,43253760,0 +[1,7423:6630773,4812305:25952256,786432,0 +(1,7423:6630773,4812305:25952256,505283,134348 +(1,7423:6630773,4812305:25952256,505283,134348 +g1,7423:3078558,4812305 +[1,7423:3078558,4812305:0,0,0 +(1,7423:3078558,2439708:0,1703936,0 +k1,7423:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7423:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7418:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7423:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7418:3078558,4812305:0,0,0 -(1,7418:3078558,2439708:0,1703936,0 -g1,7418:29030814,2439708 -g1,7418:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7418:36151628,1915420:16384,1179648,0 +[1,7423:3078558,4812305:0,0,0 +(1,7423:3078558,2439708:0,1703936,0 +g1,7423:29030814,2439708 +g1,7423:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7423:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7418:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7423:37855564,2439708:1179648,16384,0 ) ) -k1,7418:3078556,2439708:-34777008 +k1,7423:3078556,2439708:-34777008 ) ] -[1,7418:3078558,4812305:0,0,0 -(1,7418:3078558,49800853:0,16384,2228224 -k1,7418:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7418:2537886,49800853:1179648,16384,0 +[1,7423:3078558,4812305:0,0,0 +(1,7423:3078558,49800853:0,16384,2228224 +k1,7423:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7423:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7418:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,7418:3078558,4812305:0,0,0 -(1,7418:3078558,49800853:0,16384,2228224 -g1,7418:29030814,49800853 -g1,7418:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7418:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7418:37855564,49800853:1179648,16384,0 -) -) -k1,7418:3078556,49800853:-34777008 -) -] -g1,7418:6630773,4812305 -k1,7418:24573876,4812305:16747726 -g1,7418:25960617,4812305 -g1,7418:26609423,4812305 -g1,7418:29923578,4812305 -) -) -] -[1,7418:6630773,45706769:25952256,40108032,0 -(1,7418:6630773,45706769:25952256,40108032,0 -(1,7418:6630773,45706769:0,0,0 -g1,7418:6630773,45706769 -) -[1,7418:6630773,45706769:25952256,40108032,0 -(1,7368:6630773,6254097:25952256,513147,138281 -k1,7367:9846410,6254097:169524 -k1,7367:13029935,6254097:169524 -$1,7367:13029935,6254097 -k1,7367:13763808,6254097:182060 -k1,7367:14514065,6254097:182060 -k1,7367:16547537,6254097:80499 -k1,7367:17196234,6254097:80500 -$1,7367:19083671,6254097 -k1,7367:19426865,6254097:169524 -k1,7367:21396663,6254097:169524 -k1,7367:22585272,6254097:169524 -k1,7367:24832943,6254097:169524 -k1,7367:25661759,6254097:169524 -k1,7367:26850368,6254097:169524 -k1,7367:29870053,6254097:169524 -k1,7367:30907929,6254097:169524 -k1,7367:32583029,6254097:0 -) -(1,7368:6630773,7095585:25952256,513147,134348 -k1,7367:8662842,7095585:216722 -k1,7367:9660099,7095585:216723 -k1,7367:11120694,7095585:216722 -k1,7367:14394016,7095585:216722 -k1,7367:15895245,7095585:216723 -k1,7367:18925428,7095585:216722 -k1,7367:21802912,7095585:216722 -k1,7367:23641650,7095585:216722 -k1,7367:24606139,7095585:216723 -k1,7367:26243026,7095585:216722 -k1,7367:28157786,7095585:216722 -k1,7367:30240974,7095585:216723 -k1,7367:30989193,7095585:216722 -k1,7367:32583029,7095585:0 -) -(1,7368:6630773,7937073:25952256,513147,134348 -k1,7367:8198412,7937073:186795 -k1,7367:11143617,7937073:186795 -k1,7367:12614918,7937073:186795 -k1,7367:13670065,7937073:186795 -k1,7367:16037243,7937073:186795 -k1,7367:17290309,7937073:186795 -k1,7367:20192916,7937073:186795 -k1,7367:21398795,7937073:186794 -k1,7367:23265933,7937073:186795 -k1,7367:24112020,7937073:186795 -$1,7367:24112020,7937073 -$1,7367:24619924,7937073 -k1,7367:24806719,7937073:186795 -k1,7367:26065683,7937073:186795 -k1,7367:28579661,7937073:186795 -k1,7367:29700999,7937073:186795 -$1,7367:29700999,7937073 -k1,7367:30390963,7937073:182060 -k1,7367:31141220,7937073:182060 -$1,7367:31539679,7937073 -k1,7367:31900144,7937073:186795 -k1,7367:32583029,7937073:0 -) -(1,7368:6630773,8778561:25952256,513147,138281 -g1,7367:7446040,8778561 -g1,7367:9347239,8778561 -g1,7367:11675077,8778561 -g1,7367:12561779,8778561 -g1,7367:13780093,8778561 -g1,7367:15967029,8778561 -$1,7367:15967029,8778561 -g1,7367:16700902,8778561 -g1,7367:17451159,8778561 -g1,7367:18041141,8778561 -g1,7367:18455487,8778561 -$1,7367:18958148,8778561 -k1,7368:32583029,8778561:13451211 -g1,7368:32583029,8778561 -) -(1,7370:6630773,9620049:25952256,505283,126483 -h1,7369:6630773,9620049:983040,0,0 -k1,7369:10739771,9620049:191256 -k1,7369:11547066,9620049:191257 -k1,7369:12153158,9620049:191249 -k1,7369:14836093,9620049:191256 -k1,7369:16046435,9620049:191257 -k1,7369:19104891,9620049:191256 -k1,7369:19827645,9620049:191257 -k1,7369:22148166,9620049:191256 -k1,7369:25345559,9620049:191257 -k1,7369:28468896,9620049:191256 -k1,7369:29384981,9620049:191257 -k1,7369:30595322,9620049:191256 -k1,7369:32583029,9620049:0 -) -(1,7370:6630773,10461537:25952256,513147,134348 -k1,7369:8620661,10461537:277432 -k1,7369:10753417,10461537:277432 -k1,7369:12135130,10461537:277431 -k1,7369:13160328,10461537:277432 -k1,7369:17006195,10461537:277432 -k1,7369:17969789,10461537:277432 -h1,7369:17969789,10461537:0,0,0 -k1,7369:20100819,10461537:550302 -k1,7369:21046303,10461537:550302 -k1,7369:25024553,10461537:277432 -k1,7369:25657845,10461537:277432 -k1,7369:28407295,10461537:277432 -(1,7369:28407295,10461537:0,435480,115847 -r1,7369:29468985,10461537:1061690,551327,115847 -k1,7369:28407295,10461537:-1061690 -) -(1,7369:28407295,10461537:1061690,435480,115847 -g1,7369:29113996,10461537 -h1,7369:29465708,10461537:0,411205,112570 -) -k1,7369:29746416,10461537:277431 -k1,7369:31516758,10461537:277432 -k1,7369:32583029,10461537:0 -) -(1,7370:6630773,11303025:25952256,513147,134348 -k1,7369:9089079,11303025:217630 -k1,7369:10325794,11303025:217630 -k1,7369:12704801,11303025:217630 -k1,7369:13751461,11303025:217630 -k1,7369:16403098,11303025:217630 -k1,7369:17639813,11303025:217630 -k1,7369:20724642,11303025:217629 -k1,7369:22509893,11303025:217630 -k1,7369:23746608,11303025:217630 -k1,7369:26718716,11303025:217630 -k1,7369:29097723,11303025:217630 -k1,7369:30183705,11303025:217630 -k1,7369:31931601,11303025:217630 -k1,7369:32583029,11303025:0 -) -(1,7370:6630773,12144513:25952256,513147,134348 -k1,7369:9097510,12144513:207711 -k1,7369:9763319,12144513:207712 -k1,7369:10657192,12144513:207711 -h1,7369:10657192,12144513:0,0,0 -k1,7369:12649927,12144513:412007 -k1,7369:13457117,12144513:412008 -k1,7369:15845034,12144513:412007 -k1,7369:16652223,12144513:412007 -k1,7369:17428786,12144513:207711 -k1,7369:20469619,12144513:207712 -k1,7369:21293368,12144513:207711 -k1,7369:22520164,12144513:207711 -k1,7369:24662499,12144513:207712 -k1,7369:25529502,12144513:207711 -k1,7369:26093073,12144513:207711 -k1,7369:28779357,12144513:207712 -k1,7369:30155575,12144513:207711 -k1,7369:32583029,12144513:0 -) -(1,7370:6630773,12986001:25952256,505283,138281 -g1,7369:9388528,12986001 -g1,7369:10606842,12986001 -g1,7369:12680401,12986001 -$1,7369:12887495,12986001 -g1,7369:13572216,12986001 -g1,7369:14322473,12986001 -$1,7369:14720932,12986001 -g1,7369:15093831,12986001 -$1,7369:15093831,12986001 -g1,7369:15827704,12986001 -g1,7369:16577961,12986001 -$1,7369:16976420,12986001 -k1,7370:32583029,12986001:15225845 -g1,7370:32583029,12986001 -) -v1,7372:6630773,14078062:0,393216,0 -(1,7396:6630773,26449899:25952256,12765053,196608 -g1,7396:6630773,26449899 -g1,7396:6630773,26449899 -g1,7396:6434165,26449899 -(1,7396:6434165,26449899:0,12765053,196608 -r1,7396:32779637,26449899:26345472,12961661,196608 -k1,7396:6434165,26449899:-26345472 -) -(1,7396:6434165,26449899:26345472,12765053,196608 -[1,7396:6630773,26449899:25952256,12568445,0 -(1,7374:6630773,14291972:25952256,410518,101187 -(1,7373:6630773,14291972:0,0,0 -g1,7373:6630773,14291972 -g1,7373:6630773,14291972 -g1,7373:6303093,14291972 -(1,7373:6303093,14291972:0,0,0 -) -g1,7373:6630773,14291972 -) -g1,7374:7895356,14291972 -g1,7374:8843794,14291972 -g1,7374:11372959,14291972 -g1,7374:12005251,14291972 -g1,7374:13902125,14291972 -g1,7374:14534417,14291972 -g1,7374:15482855,14291972 -g1,7374:17063584,14291972 -g1,7374:17695876,14291972 -h1,7374:19276604,14291972:0,0,0 -k1,7374:32583029,14291972:13306425 -g1,7374:32583029,14291972 -) -(1,7375:6630773,14958150:25952256,410518,101187 -h1,7375:6630773,14958150:0,0,0 -k1,7375:6630773,14958150:0 -h1,7375:10424521,14958150:0,0,0 -k1,7375:32583029,14958150:22158508 -g1,7375:32583029,14958150 -) -(1,7395:6630773,15689864:25952256,379060,0 -(1,7377:6630773,15689864:0,0,0 -g1,7377:6630773,15689864 -g1,7377:6630773,15689864 -g1,7377:6303093,15689864 -(1,7377:6303093,15689864:0,0,0 -) -g1,7377:6630773,15689864 -) -h1,7395:7263064,15689864:0,0,0 -k1,7395:32583028,15689864:25319964 -g1,7395:32583028,15689864 -) -(1,7395:6630773,16356042:25952256,404226,7863 -h1,7395:6630773,16356042:0,0,0 -g1,7395:7579210,16356042 -h1,7395:9159938,16356042:0,0,0 -k1,7395:32583030,16356042:23423092 -g1,7395:32583030,16356042 -) -(1,7395:6630773,17022220:25952256,410518,101187 -h1,7395:6630773,17022220:0,0,0 -g1,7395:7579210,17022220 -g1,7395:11056813,17022220 -g1,7395:11689105,17022220 -g1,7395:13269834,17022220 -g1,7395:13902126,17022220 -g1,7395:15799000,17022220 -g1,7395:16431292,17022220 -g1,7395:17379730,17022220 -g1,7395:18960459,17022220 -g1,7395:19592751,17022220 -h1,7395:21173479,17022220:0,0,0 -k1,7395:32583029,17022220:11409550 -g1,7395:32583029,17022220 -) -(1,7395:6630773,17688398:25952256,379060,0 -h1,7395:6630773,17688398:0,0,0 -h1,7395:7263064,17688398:0,0,0 -k1,7395:32583028,17688398:25319964 -g1,7395:32583028,17688398 -) -(1,7395:6630773,18354576:25952256,404226,6290 -h1,7395:6630773,18354576:0,0,0 -g1,7395:7579210,18354576 -h1,7395:10740667,18354576:0,0,0 -k1,7395:32583029,18354576:21842362 -g1,7395:32583029,18354576 -) -(1,7395:6630773,19020754:25952256,404226,82312 -h1,7395:6630773,19020754:0,0,0 -g1,7395:7579210,19020754 -g1,7395:7895356,19020754 -g1,7395:8211502,19020754 -g1,7395:8527648,19020754 -g1,7395:8843794,19020754 -g1,7395:10108377,19020754 -g1,7395:10424523,19020754 -g1,7395:10740669,19020754 -g1,7395:11056815,19020754 -g1,7395:11372961,19020754 -g1,7395:11689107,19020754 -g1,7395:12637544,19020754 -g1,7395:12953690,19020754 -g1,7395:15166710,19020754 -g1,7395:15482856,19020754 -g1,7395:15799002,19020754 -g1,7395:16115148,19020754 -g1,7395:16431294,19020754 -g1,7395:16747440,19020754 -g1,7395:17695877,19020754 -g1,7395:18012023,19020754 -g1,7395:18328169,19020754 -g1,7395:18644315,19020754 -g1,7395:18960461,19020754 -h1,7395:19908898,19020754:0,0,0 -k1,7395:32583029,19020754:12674131 -g1,7395:32583029,19020754 -) -(1,7395:6630773,19686932:25952256,388497,9436 -h1,7395:6630773,19686932:0,0,0 -g1,7395:7579210,19686932 -g1,7395:10108376,19686932 -g1,7395:12637542,19686932 -g1,7395:12953688,19686932 -g1,7395:15166708,19686932 -g1,7395:15482854,19686932 -g1,7395:15799000,19686932 -g1,7395:17695874,19686932 -g1,7395:18012020,19686932 -h1,7395:19908894,19686932:0,0,0 -k1,7395:32583029,19686932:12674135 -g1,7395:32583029,19686932 -) -(1,7395:6630773,20353110:25952256,379060,0 -h1,7395:6630773,20353110:0,0,0 -h1,7395:7263064,20353110:0,0,0 -k1,7395:32583028,20353110:25319964 -g1,7395:32583028,20353110 -) -(1,7395:6630773,21019288:25952256,410518,7863 -h1,7395:6630773,21019288:0,0,0 -g1,7395:7579210,21019288 -h1,7395:11689104,21019288:0,0,0 -k1,7395:32583028,21019288:20893924 -g1,7395:32583028,21019288 -) -(1,7395:6630773,21685466:25952256,404226,76021 -h1,7395:6630773,21685466:0,0,0 -g1,7395:7579210,21685466 -g1,7395:7895356,21685466 -g1,7395:8211502,21685466 -g1,7395:8527648,21685466 -g1,7395:8843794,21685466 -g1,7395:9159940,21685466 -g1,7395:9476086,21685466 -g1,7395:12321397,21685466 -g1,7395:13902126,21685466 -g1,7395:15799000,21685466 -g1,7395:16431292,21685466 -g1,7395:18328166,21685466 -k1,7395:18328166,21685466:0 -h1,7395:20857331,21685466:0,0,0 -k1,7395:32583029,21685466:11725698 -g1,7395:32583029,21685466 -) -(1,7395:6630773,22351644:25952256,404226,101187 -h1,7395:6630773,22351644:0,0,0 -g1,7395:7579210,22351644 -g1,7395:9476084,22351644 -g1,7395:9792230,22351644 -g1,7395:10108376,22351644 -g1,7395:12321396,22351644 -g1,7395:12637542,22351644 -g1,7395:12953688,22351644 -g1,7395:13269834,22351644 -g1,7395:13585980,22351644 -g1,7395:15799000,22351644 -g1,7395:16115146,22351644 -g1,7395:16431292,22351644 -g1,7395:18328166,22351644 -g1,7395:18644312,22351644 -g1,7395:18960458,22351644 -g1,7395:21173478,22351644 -h1,7395:22121915,22351644:0,0,0 -k1,7395:32583029,22351644:10461114 -g1,7395:32583029,22351644 -) -(1,7395:6630773,23017822:25952256,379060,0 -h1,7395:6630773,23017822:0,0,0 -g1,7395:7579210,23017822 -k1,7395:7579210,23017822:0 -h1,7395:8527648,23017822:0,0,0 -k1,7395:32583028,23017822:24055380 -g1,7395:32583028,23017822 -) -(1,7395:6630773,23684000:25952256,410518,107478 -h1,7395:6630773,23684000:0,0,0 -g1,7395:7579210,23684000 -g1,7395:10108376,23684000 -g1,7395:12321396,23684000 -g1,7395:12637542,23684000 -g1,7395:13269834,23684000 -g1,7395:15166709,23684000 -g1,7395:17063583,23684000 -g1,7395:18644312,23684000 -g1,7395:20225041,23684000 -g1,7395:21489625,23684000 -g1,7395:23070354,23684000 -g1,7395:24334938,23684000 -g1,7395:25599521,23684000 -g1,7395:26231813,23684000 -g1,7395:26864105,23684000 -h1,7395:27180251,23684000:0,0,0 -k1,7395:32583029,23684000:5402778 -g1,7395:32583029,23684000 -) -(1,7395:6630773,24350178:25952256,379060,0 -h1,7395:6630773,24350178:0,0,0 -h1,7395:7263064,24350178:0,0,0 -k1,7395:32583028,24350178:25319964 -g1,7395:32583028,24350178 -) -(1,7395:6630773,25016356:25952256,410518,107478 -h1,7395:6630773,25016356:0,0,0 -g1,7395:7579210,25016356 -g1,7395:10424521,25016356 -g1,7395:13269832,25016356 -g1,7395:15482852,25016356 -g1,7395:17379726,25016356 -g1,7395:18328163,25016356 -g1,7395:19276600,25016356 -g1,7395:21805766,25016356 -g1,7395:22754203,25016356 -h1,7395:24967223,25016356:0,0,0 -k1,7395:32583029,25016356:7615806 -g1,7395:32583029,25016356 -) -(1,7395:6630773,25682534:25952256,404226,107478 -h1,7395:6630773,25682534:0,0,0 -g1,7395:7579210,25682534 -g1,7395:10424521,25682534 -g1,7395:13902124,25682534 -g1,7395:14218270,25682534 -g1,7395:19276601,25682534 -g1,7395:22754204,25682534 -g1,7395:23070350,25682534 -h1,7395:24967224,25682534:0,0,0 -k1,7395:32583029,25682534:7615805 -g1,7395:32583029,25682534 -) -(1,7395:6630773,26348712:25952256,404226,101187 -h1,7395:6630773,26348712:0,0,0 -g1,7395:7579210,26348712 -g1,7395:11689104,26348712 -g1,7395:13585978,26348712 -g1,7395:14534415,26348712 -g1,7395:15166707,26348712 -g1,7395:16431290,26348712 -g1,7395:17379727,26348712 -g1,7395:18644310,26348712 -g1,7395:18960456,26348712 -g1,7395:21805768,26348712 -g1,7395:22438060,26348712 -k1,7395:22438060,26348712:0 -h1,7395:24651080,26348712:0,0,0 -k1,7395:32583029,26348712:7931949 -g1,7395:32583029,26348712 -) -] -) -g1,7396:32583029,26449899 -g1,7396:6630773,26449899 -g1,7396:6630773,26449899 -g1,7396:32583029,26449899 -g1,7396:32583029,26449899 -) -h1,7396:6630773,26646507:0,0,0 -(1,7400:6630773,27913877:25952256,513147,126483 -h1,7399:6630773,27913877:983040,0,0 -k1,7399:9193464,27913877:171938 -k1,7399:11020187,27913877:171939 -k1,7399:11723622,27913877:171938 -k1,7399:12704930,27913877:171938 -k1,7399:15592680,27913877:171938 -k1,7399:16712270,27913877:171939 -k1,7399:17903293,27913877:171938 -k1,7399:20942431,27913877:171938 -k1,7399:21730408,27913877:171939 -k1,7399:22921431,27913877:171938 -k1,7399:26257447,27913877:171938 -k1,7399:27804986,27913877:171938 -k1,7399:28747628,27913877:171939 -k1,7399:31635378,27913877:171938 -k1,7399:32583029,27913877:0 -) -(1,7400:6630773,28755365:25952256,505283,126483 -g1,7399:7849087,28755365 -k1,7400:32583029,28755365:22862234 -g1,7400:32583029,28755365 -) -v1,7402:6630773,29847426:0,393216,0 -(1,7406:6630773,30162523:25952256,708313,196608 -g1,7406:6630773,30162523 -g1,7406:6630773,30162523 -g1,7406:6434165,30162523 -(1,7406:6434165,30162523:0,708313,196608 -r1,7406:32779637,30162523:26345472,904921,196608 -k1,7406:6434165,30162523:-26345472 -) -(1,7406:6434165,30162523:26345472,708313,196608 -[1,7406:6630773,30162523:25952256,511705,0 -(1,7404:6630773,30061336:25952256,410518,101187 -(1,7403:6630773,30061336:0,0,0 -g1,7403:6630773,30061336 -g1,7403:6630773,30061336 -g1,7403:6303093,30061336 -(1,7403:6303093,30061336:0,0,0 -) -g1,7403:6630773,30061336 -) -k1,7404:6630773,30061336:0 -g1,7404:9792231,30061336 -g1,7404:11689105,30061336 -g1,7404:12321397,30061336 -h1,7404:12953689,30061336:0,0,0 -k1,7404:32583029,30061336:19629340 -g1,7404:32583029,30061336 -) -] -) -g1,7406:32583029,30162523 -g1,7406:6630773,30162523 -g1,7406:6630773,30162523 -g1,7406:32583029,30162523 -g1,7406:32583029,30162523 -) -h1,7406:6630773,30359131:0,0,0 -(1,7409:6630773,44865281:25952256,14014731,0 -k1,7409:12599879,44865281:5969106 -h1,7408:12599879,44865281:0,0,0 -(1,7408:12599879,44865281:14014044,14014731,0 -(1,7408:12599879,44865281:14014766,14014766,0 -(1,7408:12599879,44865281:14014766,14014766,0 -(1,7408:12599879,44865281:0,14014766,0 -(1,7408:12599879,44865281:0,18939904,0 -(1,7408:12599879,44865281:18939904,18939904,0 -) -k1,7408:12599879,44865281:-18939904 -) -) -g1,7408:26614645,44865281 -) -) -) -g1,7409:26613923,44865281 -k1,7409:32583029,44865281:5969106 -) -(1,7418:6630773,45706769:25952256,513147,138281 -h1,7416:6630773,45706769:983040,0,0 -k1,7416:8962967,45706769:152467 -k1,7416:11905302,45706769:152467 -k1,7416:12717060,45706769:152466 -k1,7416:13888612,45706769:152467 -k1,7416:16282410,45706769:152467 -k1,7416:18147333,45706769:152467 -k1,7416:20287506,45706769:152466 -k1,7416:20971470,45706769:152467 -$1,7416:20971470,45706769 -k1,7416:21705343,45706769:182060 -k1,7416:22455600,45706769:182060 -$1,7416:24343037,45706769 -k1,7416:24669174,45706769:152467 -k1,7416:26013086,45706769:152467 -k1,7416:27733173,45706769:152466 -k1,7416:28904725,45706769:152467 -k1,7416:32124932,45706769:152467 -k1,7416:32583029,45706769:0 -) -] -(1,7418:32583029,45706769:0,0,0 -g1,7418:32583029,45706769 -) -) -] -(1,7418:6630773,47279633:25952256,0,0 -h1,7418:6630773,47279633:25952256,0,0 -) -] -h1,7418:4262630,4025873:0,0,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7423:3078558,51504789:16384,1179648,0 +) +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] +) +) +) +] +[1,7423:3078558,4812305:0,0,0 +(1,7423:3078558,49800853:0,16384,2228224 +g1,7423:29030814,49800853 +g1,7423:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7423:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7423:37855564,49800853:1179648,16384,0 +) +) +k1,7423:3078556,49800853:-34777008 +) +] +g1,7423:6630773,4812305 +k1,7423:24502442,4812305:16676292 +g1,7423:25889183,4812305 +g1,7423:26537989,4812305 +g1,7423:29852144,4812305 +) +) +] +[1,7423:6630773,45706769:25952256,40108032,0 +(1,7423:6630773,45706769:25952256,40108032,0 +(1,7423:6630773,45706769:0,0,0 +g1,7423:6630773,45706769 +) +[1,7423:6630773,45706769:25952256,40108032,0 +(1,7373:6630773,6254097:25952256,513147,138281 +k1,7372:9846410,6254097:169524 +k1,7372:13029935,6254097:169524 +$1,7372:13029935,6254097 +k1,7372:13763808,6254097:182060 +k1,7372:14514065,6254097:182060 +k1,7372:16547537,6254097:80499 +k1,7372:17196234,6254097:80500 +$1,7372:19083671,6254097 +k1,7372:19426865,6254097:169524 +k1,7372:21396663,6254097:169524 +k1,7372:22585272,6254097:169524 +k1,7372:24832943,6254097:169524 +k1,7372:25661759,6254097:169524 +k1,7372:26850368,6254097:169524 +k1,7372:29870053,6254097:169524 +k1,7372:30907929,6254097:169524 +k1,7372:32583029,6254097:0 +) +(1,7373:6630773,7095585:25952256,513147,134348 +k1,7372:8662842,7095585:216722 +k1,7372:9660099,7095585:216723 +k1,7372:11120694,7095585:216722 +k1,7372:14394016,7095585:216722 +k1,7372:15895245,7095585:216723 +k1,7372:18925428,7095585:216722 +k1,7372:21802912,7095585:216722 +k1,7372:23641650,7095585:216722 +k1,7372:24606139,7095585:216723 +k1,7372:26243026,7095585:216722 +k1,7372:28157786,7095585:216722 +k1,7372:30240974,7095585:216723 +k1,7372:30989193,7095585:216722 +k1,7372:32583029,7095585:0 +) +(1,7373:6630773,7937073:25952256,513147,134348 +k1,7372:8198412,7937073:186795 +k1,7372:11143617,7937073:186795 +k1,7372:12614918,7937073:186795 +k1,7372:13670065,7937073:186795 +k1,7372:16037243,7937073:186795 +k1,7372:17290309,7937073:186795 +k1,7372:20192916,7937073:186795 +k1,7372:21398795,7937073:186794 +k1,7372:23265933,7937073:186795 +k1,7372:24112020,7937073:186795 +$1,7372:24112020,7937073 +$1,7372:24619924,7937073 +k1,7372:24806719,7937073:186795 +k1,7372:26065683,7937073:186795 +k1,7372:28579661,7937073:186795 +k1,7372:29700999,7937073:186795 +$1,7372:29700999,7937073 +k1,7372:30390963,7937073:182060 +k1,7372:31141220,7937073:182060 +$1,7372:31539679,7937073 +k1,7372:31900144,7937073:186795 +k1,7372:32583029,7937073:0 +) +(1,7373:6630773,8778561:25952256,513147,138281 +g1,7372:7446040,8778561 +g1,7372:9347239,8778561 +g1,7372:11675077,8778561 +g1,7372:12561779,8778561 +g1,7372:13780093,8778561 +g1,7372:15967029,8778561 +$1,7372:15967029,8778561 +g1,7372:16700902,8778561 +g1,7372:17451159,8778561 +g1,7372:18041141,8778561 +g1,7372:18455487,8778561 +$1,7372:18958148,8778561 +k1,7373:32583029,8778561:13451211 +g1,7373:32583029,8778561 +) +(1,7375:6630773,9620049:25952256,505283,126483 +h1,7374:6630773,9620049:983040,0,0 +k1,7374:10739771,9620049:191256 +k1,7374:11547066,9620049:191257 +k1,7374:12153158,9620049:191249 +k1,7374:14836093,9620049:191256 +k1,7374:16046435,9620049:191257 +k1,7374:19104891,9620049:191256 +k1,7374:19827645,9620049:191257 +k1,7374:22148166,9620049:191256 +k1,7374:25345559,9620049:191257 +k1,7374:28468896,9620049:191256 +k1,7374:29384981,9620049:191257 +k1,7374:30595322,9620049:191256 +k1,7374:32583029,9620049:0 +) +(1,7375:6630773,10461537:25952256,513147,134348 +k1,7374:8620661,10461537:277432 +k1,7374:10753417,10461537:277432 +k1,7374:12135130,10461537:277431 +k1,7374:13160328,10461537:277432 +k1,7374:17006195,10461537:277432 +k1,7374:17969789,10461537:277432 +h1,7374:17969789,10461537:0,0,0 +k1,7374:20100819,10461537:550302 +k1,7374:21046303,10461537:550302 +k1,7374:25024553,10461537:277432 +k1,7374:25657845,10461537:277432 +k1,7374:28407295,10461537:277432 +(1,7374:28407295,10461537:0,435480,115847 +r1,7374:29468985,10461537:1061690,551327,115847 +k1,7374:28407295,10461537:-1061690 +) +(1,7374:28407295,10461537:1061690,435480,115847 +g1,7374:29113996,10461537 +h1,7374:29465708,10461537:0,411205,112570 +) +k1,7374:29746416,10461537:277431 +k1,7374:31516758,10461537:277432 +k1,7374:32583029,10461537:0 +) +(1,7375:6630773,11303025:25952256,513147,134348 +k1,7374:9089079,11303025:217630 +k1,7374:10325794,11303025:217630 +k1,7374:12704801,11303025:217630 +k1,7374:13751461,11303025:217630 +k1,7374:16403098,11303025:217630 +k1,7374:17639813,11303025:217630 +k1,7374:20724642,11303025:217629 +k1,7374:22509893,11303025:217630 +k1,7374:23746608,11303025:217630 +k1,7374:26718716,11303025:217630 +k1,7374:29097723,11303025:217630 +k1,7374:30183705,11303025:217630 +k1,7374:31931601,11303025:217630 +k1,7374:32583029,11303025:0 +) +(1,7375:6630773,12144513:25952256,513147,134348 +k1,7374:9097510,12144513:207711 +k1,7374:9763319,12144513:207712 +k1,7374:10657192,12144513:207711 +h1,7374:10657192,12144513:0,0,0 +k1,7374:12649927,12144513:412007 +k1,7374:13457117,12144513:412008 +k1,7374:15845034,12144513:412007 +k1,7374:16652223,12144513:412007 +k1,7374:17428786,12144513:207711 +k1,7374:20469619,12144513:207712 +k1,7374:21293368,12144513:207711 +k1,7374:22520164,12144513:207711 +k1,7374:24662499,12144513:207712 +k1,7374:25529502,12144513:207711 +k1,7374:26093073,12144513:207711 +k1,7374:28779357,12144513:207712 +k1,7374:30155575,12144513:207711 +k1,7374:32583029,12144513:0 +) +(1,7375:6630773,12986001:25952256,505283,138281 +g1,7374:9388528,12986001 +g1,7374:10606842,12986001 +g1,7374:12680401,12986001 +$1,7374:12887495,12986001 +g1,7374:13572216,12986001 +g1,7374:14322473,12986001 +$1,7374:14720932,12986001 +g1,7374:15093831,12986001 +$1,7374:15093831,12986001 +g1,7374:15827704,12986001 +g1,7374:16577961,12986001 +$1,7374:16976420,12986001 +k1,7375:32583029,12986001:15225845 +g1,7375:32583029,12986001 +) +v1,7377:6630773,14078062:0,393216,0 +(1,7401:6630773,26449899:25952256,12765053,196608 +g1,7401:6630773,26449899 +g1,7401:6630773,26449899 +g1,7401:6434165,26449899 +(1,7401:6434165,26449899:0,12765053,196608 +r1,7401:32779637,26449899:26345472,12961661,196608 +k1,7401:6434165,26449899:-26345472 +) +(1,7401:6434165,26449899:26345472,12765053,196608 +[1,7401:6630773,26449899:25952256,12568445,0 +(1,7379:6630773,14291972:25952256,410518,101187 +(1,7378:6630773,14291972:0,0,0 +g1,7378:6630773,14291972 +g1,7378:6630773,14291972 +g1,7378:6303093,14291972 +(1,7378:6303093,14291972:0,0,0 +) +g1,7378:6630773,14291972 +) +g1,7379:7895356,14291972 +g1,7379:8843794,14291972 +g1,7379:11372959,14291972 +g1,7379:12005251,14291972 +g1,7379:13902125,14291972 +g1,7379:14534417,14291972 +g1,7379:15482855,14291972 +g1,7379:17063584,14291972 +g1,7379:17695876,14291972 +h1,7379:19276604,14291972:0,0,0 +k1,7379:32583029,14291972:13306425 +g1,7379:32583029,14291972 +) +(1,7380:6630773,14958150:25952256,410518,101187 +h1,7380:6630773,14958150:0,0,0 +k1,7380:6630773,14958150:0 +h1,7380:10424521,14958150:0,0,0 +k1,7380:32583029,14958150:22158508 +g1,7380:32583029,14958150 +) +(1,7400:6630773,15689864:25952256,379060,0 +(1,7382:6630773,15689864:0,0,0 +g1,7382:6630773,15689864 +g1,7382:6630773,15689864 +g1,7382:6303093,15689864 +(1,7382:6303093,15689864:0,0,0 +) +g1,7382:6630773,15689864 +) +h1,7400:7263064,15689864:0,0,0 +k1,7400:32583028,15689864:25319964 +g1,7400:32583028,15689864 +) +(1,7400:6630773,16356042:25952256,404226,7863 +h1,7400:6630773,16356042:0,0,0 +g1,7400:7579210,16356042 +h1,7400:9159938,16356042:0,0,0 +k1,7400:32583030,16356042:23423092 +g1,7400:32583030,16356042 +) +(1,7400:6630773,17022220:25952256,410518,101187 +h1,7400:6630773,17022220:0,0,0 +g1,7400:7579210,17022220 +g1,7400:11056813,17022220 +g1,7400:11689105,17022220 +g1,7400:13269834,17022220 +g1,7400:13902126,17022220 +g1,7400:15799000,17022220 +g1,7400:16431292,17022220 +g1,7400:17379730,17022220 +g1,7400:18960459,17022220 +g1,7400:19592751,17022220 +h1,7400:21173479,17022220:0,0,0 +k1,7400:32583029,17022220:11409550 +g1,7400:32583029,17022220 +) +(1,7400:6630773,17688398:25952256,379060,0 +h1,7400:6630773,17688398:0,0,0 +h1,7400:7263064,17688398:0,0,0 +k1,7400:32583028,17688398:25319964 +g1,7400:32583028,17688398 +) +(1,7400:6630773,18354576:25952256,404226,6290 +h1,7400:6630773,18354576:0,0,0 +g1,7400:7579210,18354576 +h1,7400:10740667,18354576:0,0,0 +k1,7400:32583029,18354576:21842362 +g1,7400:32583029,18354576 +) +(1,7400:6630773,19020754:25952256,404226,82312 +h1,7400:6630773,19020754:0,0,0 +g1,7400:7579210,19020754 +g1,7400:7895356,19020754 +g1,7400:8211502,19020754 +g1,7400:8527648,19020754 +g1,7400:8843794,19020754 +g1,7400:10108377,19020754 +g1,7400:10424523,19020754 +g1,7400:10740669,19020754 +g1,7400:11056815,19020754 +g1,7400:11372961,19020754 +g1,7400:11689107,19020754 +g1,7400:12637544,19020754 +g1,7400:12953690,19020754 +g1,7400:15166710,19020754 +g1,7400:15482856,19020754 +g1,7400:15799002,19020754 +g1,7400:16115148,19020754 +g1,7400:16431294,19020754 +g1,7400:16747440,19020754 +g1,7400:17695877,19020754 +g1,7400:18012023,19020754 +g1,7400:18328169,19020754 +g1,7400:18644315,19020754 +g1,7400:18960461,19020754 +h1,7400:19908898,19020754:0,0,0 +k1,7400:32583029,19020754:12674131 +g1,7400:32583029,19020754 +) +(1,7400:6630773,19686932:25952256,388497,9436 +h1,7400:6630773,19686932:0,0,0 +g1,7400:7579210,19686932 +g1,7400:10108376,19686932 +g1,7400:12637542,19686932 +g1,7400:12953688,19686932 +g1,7400:15166708,19686932 +g1,7400:15482854,19686932 +g1,7400:15799000,19686932 +g1,7400:17695874,19686932 +g1,7400:18012020,19686932 +h1,7400:19908894,19686932:0,0,0 +k1,7400:32583029,19686932:12674135 +g1,7400:32583029,19686932 +) +(1,7400:6630773,20353110:25952256,379060,0 +h1,7400:6630773,20353110:0,0,0 +h1,7400:7263064,20353110:0,0,0 +k1,7400:32583028,20353110:25319964 +g1,7400:32583028,20353110 +) +(1,7400:6630773,21019288:25952256,410518,7863 +h1,7400:6630773,21019288:0,0,0 +g1,7400:7579210,21019288 +h1,7400:11689104,21019288:0,0,0 +k1,7400:32583028,21019288:20893924 +g1,7400:32583028,21019288 +) +(1,7400:6630773,21685466:25952256,404226,76021 +h1,7400:6630773,21685466:0,0,0 +g1,7400:7579210,21685466 +g1,7400:7895356,21685466 +g1,7400:8211502,21685466 +g1,7400:8527648,21685466 +g1,7400:8843794,21685466 +g1,7400:9159940,21685466 +g1,7400:9476086,21685466 +g1,7400:12321397,21685466 +g1,7400:13902126,21685466 +g1,7400:15799000,21685466 +g1,7400:16431292,21685466 +g1,7400:18328166,21685466 +k1,7400:18328166,21685466:0 +h1,7400:20857331,21685466:0,0,0 +k1,7400:32583029,21685466:11725698 +g1,7400:32583029,21685466 +) +(1,7400:6630773,22351644:25952256,404226,101187 +h1,7400:6630773,22351644:0,0,0 +g1,7400:7579210,22351644 +g1,7400:9476084,22351644 +g1,7400:9792230,22351644 +g1,7400:10108376,22351644 +g1,7400:12321396,22351644 +g1,7400:12637542,22351644 +g1,7400:12953688,22351644 +g1,7400:13269834,22351644 +g1,7400:13585980,22351644 +g1,7400:15799000,22351644 +g1,7400:16115146,22351644 +g1,7400:16431292,22351644 +g1,7400:18328166,22351644 +g1,7400:18644312,22351644 +g1,7400:18960458,22351644 +g1,7400:21173478,22351644 +h1,7400:22121915,22351644:0,0,0 +k1,7400:32583029,22351644:10461114 +g1,7400:32583029,22351644 +) +(1,7400:6630773,23017822:25952256,379060,0 +h1,7400:6630773,23017822:0,0,0 +g1,7400:7579210,23017822 +k1,7400:7579210,23017822:0 +h1,7400:8527648,23017822:0,0,0 +k1,7400:32583028,23017822:24055380 +g1,7400:32583028,23017822 +) +(1,7400:6630773,23684000:25952256,410518,107478 +h1,7400:6630773,23684000:0,0,0 +g1,7400:7579210,23684000 +g1,7400:10108376,23684000 +g1,7400:12321396,23684000 +g1,7400:12637542,23684000 +g1,7400:13269834,23684000 +g1,7400:15166709,23684000 +g1,7400:17063583,23684000 +g1,7400:18644312,23684000 +g1,7400:20225041,23684000 +g1,7400:21489625,23684000 +g1,7400:23070354,23684000 +g1,7400:24334938,23684000 +g1,7400:25599521,23684000 +g1,7400:26231813,23684000 +g1,7400:26864105,23684000 +h1,7400:27180251,23684000:0,0,0 +k1,7400:32583029,23684000:5402778 +g1,7400:32583029,23684000 +) +(1,7400:6630773,24350178:25952256,379060,0 +h1,7400:6630773,24350178:0,0,0 +h1,7400:7263064,24350178:0,0,0 +k1,7400:32583028,24350178:25319964 +g1,7400:32583028,24350178 +) +(1,7400:6630773,25016356:25952256,410518,107478 +h1,7400:6630773,25016356:0,0,0 +g1,7400:7579210,25016356 +g1,7400:10424521,25016356 +g1,7400:13269832,25016356 +g1,7400:15482852,25016356 +g1,7400:17379726,25016356 +g1,7400:18328163,25016356 +g1,7400:19276600,25016356 +g1,7400:21805766,25016356 +g1,7400:22754203,25016356 +h1,7400:24967223,25016356:0,0,0 +k1,7400:32583029,25016356:7615806 +g1,7400:32583029,25016356 +) +(1,7400:6630773,25682534:25952256,404226,107478 +h1,7400:6630773,25682534:0,0,0 +g1,7400:7579210,25682534 +g1,7400:10424521,25682534 +g1,7400:13902124,25682534 +g1,7400:14218270,25682534 +g1,7400:19276601,25682534 +g1,7400:22754204,25682534 +g1,7400:23070350,25682534 +h1,7400:24967224,25682534:0,0,0 +k1,7400:32583029,25682534:7615805 +g1,7400:32583029,25682534 +) +(1,7400:6630773,26348712:25952256,404226,101187 +h1,7400:6630773,26348712:0,0,0 +g1,7400:7579210,26348712 +g1,7400:11689104,26348712 +g1,7400:13585978,26348712 +g1,7400:14534415,26348712 +g1,7400:15166707,26348712 +g1,7400:16431290,26348712 +g1,7400:17379727,26348712 +g1,7400:18644310,26348712 +g1,7400:18960456,26348712 +g1,7400:21805768,26348712 +g1,7400:22438060,26348712 +k1,7400:22438060,26348712:0 +h1,7400:24651080,26348712:0,0,0 +k1,7400:32583029,26348712:7931949 +g1,7400:32583029,26348712 +) +] +) +g1,7401:32583029,26449899 +g1,7401:6630773,26449899 +g1,7401:6630773,26449899 +g1,7401:32583029,26449899 +g1,7401:32583029,26449899 +) +h1,7401:6630773,26646507:0,0,0 +(1,7405:6630773,27913877:25952256,513147,126483 +h1,7404:6630773,27913877:983040,0,0 +k1,7404:9193464,27913877:171938 +k1,7404:11020187,27913877:171939 +k1,7404:11723622,27913877:171938 +k1,7404:12704930,27913877:171938 +k1,7404:15592680,27913877:171938 +k1,7404:16712270,27913877:171939 +k1,7404:17903293,27913877:171938 +k1,7404:20942431,27913877:171938 +k1,7404:21730408,27913877:171939 +k1,7404:22921431,27913877:171938 +k1,7404:26257447,27913877:171938 +k1,7404:27804986,27913877:171938 +k1,7404:28747628,27913877:171939 +k1,7404:31635378,27913877:171938 +k1,7404:32583029,27913877:0 +) +(1,7405:6630773,28755365:25952256,505283,126483 +g1,7404:7849087,28755365 +k1,7405:32583029,28755365:22862234 +g1,7405:32583029,28755365 +) +v1,7407:6630773,29847426:0,393216,0 +(1,7411:6630773,30162523:25952256,708313,196608 +g1,7411:6630773,30162523 +g1,7411:6630773,30162523 +g1,7411:6434165,30162523 +(1,7411:6434165,30162523:0,708313,196608 +r1,7411:32779637,30162523:26345472,904921,196608 +k1,7411:6434165,30162523:-26345472 +) +(1,7411:6434165,30162523:26345472,708313,196608 +[1,7411:6630773,30162523:25952256,511705,0 +(1,7409:6630773,30061336:25952256,410518,101187 +(1,7408:6630773,30061336:0,0,0 +g1,7408:6630773,30061336 +g1,7408:6630773,30061336 +g1,7408:6303093,30061336 +(1,7408:6303093,30061336:0,0,0 +) +g1,7408:6630773,30061336 +) +k1,7409:6630773,30061336:0 +g1,7409:9792231,30061336 +g1,7409:11689105,30061336 +g1,7409:12321397,30061336 +h1,7409:12953689,30061336:0,0,0 +k1,7409:32583029,30061336:19629340 +g1,7409:32583029,30061336 +) +] +) +g1,7411:32583029,30162523 +g1,7411:6630773,30162523 +g1,7411:6630773,30162523 +g1,7411:32583029,30162523 +g1,7411:32583029,30162523 +) +h1,7411:6630773,30359131:0,0,0 +(1,7414:6630773,44865281:25952256,14014731,0 +k1,7414:12599879,44865281:5969106 +h1,7413:12599879,44865281:0,0,0 +(1,7413:12599879,44865281:14014044,14014731,0 +(1,7413:12599879,44865281:14014766,14014766,0 +(1,7413:12599879,44865281:14014766,14014766,0 +(1,7413:12599879,44865281:0,14014766,0 +(1,7413:12599879,44865281:0,18939904,0 +(1,7413:12599879,44865281:18939904,18939904,0 +) +k1,7413:12599879,44865281:-18939904 +) +) +g1,7413:26614645,44865281 +) +) +) +g1,7414:26613923,44865281 +k1,7414:32583029,44865281:5969106 +) +(1,7423:6630773,45706769:25952256,513147,138281 +h1,7421:6630773,45706769:983040,0,0 +k1,7421:8962967,45706769:152467 +k1,7421:11905302,45706769:152467 +k1,7421:12717060,45706769:152466 +k1,7421:13888612,45706769:152467 +k1,7421:16282410,45706769:152467 +k1,7421:18147333,45706769:152467 +k1,7421:20287506,45706769:152466 +k1,7421:20971470,45706769:152467 +$1,7421:20971470,45706769 +k1,7421:21705343,45706769:182060 +k1,7421:22455600,45706769:182060 +$1,7421:24343037,45706769 +k1,7421:24669174,45706769:152467 +k1,7421:26013086,45706769:152467 +k1,7421:27733173,45706769:152466 +k1,7421:28904725,45706769:152467 +k1,7421:32124932,45706769:152467 +k1,7421:32583029,45706769:0 +) +] +(1,7423:32583029,45706769:0,0,0 +g1,7423:32583029,45706769 +) +) +] +(1,7423:6630773,47279633:25952256,0,0 +h1,7423:6630773,47279633:25952256,0,0 +) +] +h1,7423:4262630,4025873:0,0,0 ] !18757 }139 -Input:1034:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1035:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1036:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1037:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1038:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1039:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1040:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1041:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1042:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 +Input:1030:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1031:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1032:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1033:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1034:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1035:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1036:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1037:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1038:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 {140 -[1,7477:4262630,47279633:28320399,43253760,0 -(1,7477:4262630,4025873:0,0,0 -[1,7477:-473657,4025873:25952256,0,0 -(1,7477:-473657,-710414:25952256,0,0 -h1,7477:-473657,-710414:0,0,0 -(1,7477:-473657,-710414:0,0,0 -(1,7477:-473657,-710414:0,0,0 -g1,7477:-473657,-710414 -(1,7477:-473657,-710414:65781,0,65781 -g1,7477:-407876,-710414 -[1,7477:-407876,-644633:0,0,0 +[1,7482:4262630,47279633:28320399,43253760,0 +(1,7482:4262630,4025873:0,0,0 +[1,7482:-473657,4025873:25952256,0,0 +(1,7482:-473657,-710414:25952256,0,0 +h1,7482:-473657,-710414:0,0,0 +(1,7482:-473657,-710414:0,0,0 +(1,7482:-473657,-710414:0,0,0 +g1,7482:-473657,-710414 +(1,7482:-473657,-710414:65781,0,65781 +g1,7482:-407876,-710414 +[1,7482:-407876,-644633:0,0,0 ] ) -k1,7477:-473657,-710414:-65781 +k1,7482:-473657,-710414:-65781 ) ) -k1,7477:25478599,-710414:25952256 -g1,7477:25478599,-710414 +k1,7482:25478599,-710414:25952256 +g1,7482:25478599,-710414 ) ] ) -[1,7477:6630773,47279633:25952256,43253760,0 -[1,7477:6630773,4812305:25952256,786432,0 -(1,7477:6630773,4812305:25952256,505283,134348 -(1,7477:6630773,4812305:25952256,505283,134348 -g1,7477:3078558,4812305 -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,2439708:0,1703936,0 -k1,7477:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7477:2537886,2439708:1179648,16384,0 +[1,7482:6630773,47279633:25952256,43253760,0 +[1,7482:6630773,4812305:25952256,786432,0 +(1,7482:6630773,4812305:25952256,505283,134348 +(1,7482:6630773,4812305:25952256,505283,134348 +g1,7482:3078558,4812305 +[1,7482:3078558,4812305:0,0,0 +(1,7482:3078558,2439708:0,1703936,0 +k1,7482:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7482:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7477:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7482:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,2439708:0,1703936,0 -g1,7477:29030814,2439708 -g1,7477:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7477:36151628,1915420:16384,1179648,0 +[1,7482:3078558,4812305:0,0,0 +(1,7482:3078558,2439708:0,1703936,0 +g1,7482:29030814,2439708 +g1,7482:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7482:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7477:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7482:37855564,2439708:1179648,16384,0 ) ) -k1,7477:3078556,2439708:-34777008 +k1,7482:3078556,2439708:-34777008 ) ] -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,49800853:0,16384,2228224 -k1,7477:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7477:2537886,49800853:1179648,16384,0 +[1,7482:3078558,4812305:0,0,0 +(1,7482:3078558,49800853:0,16384,2228224 +k1,7482:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7482:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7477:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7482:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7477:3078558,4812305:0,0,0 -(1,7477:3078558,49800853:0,16384,2228224 -g1,7477:29030814,49800853 -g1,7477:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7477:36151628,51504789:16384,1179648,0 +[1,7482:3078558,4812305:0,0,0 +(1,7482:3078558,49800853:0,16384,2228224 +g1,7482:29030814,49800853 +g1,7482:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7482:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7477:37855564,49800853:1179648,16384,0 -) -) -k1,7477:3078556,49800853:-34777008 -) -] -g1,7477:6630773,4812305 -g1,7477:6630773,4812305 -g1,7477:8843268,4812305 -g1,7477:10880782,4812305 -g1,7477:13281365,4812305 -k1,7477:31387653,4812305:18106288 -) -) -] -[1,7477:6630773,45706769:25952256,40108032,0 -(1,7477:6630773,45706769:25952256,40108032,0 -(1,7477:6630773,45706769:0,0,0 -g1,7477:6630773,45706769 -) -[1,7477:6630773,45706769:25952256,40108032,0 -(1,7418:6630773,6254097:25952256,513147,134348 -k1,7416:7916415,6254097:181360 -k1,7416:8845540,6254097:181359 -k1,7416:10466726,6254097:181360 -k1,7416:11932592,6254097:181360 -k1,7416:12572048,6254097:181359 -k1,7416:13284905,6254097:181360 -k1,7416:17159219,6254097:181360 -k1,7416:18026740,6254097:181359 -k1,7416:19227185,6254097:181360 -k1,7416:21887117,6254097:181360 -k1,7416:23236983,6254097:181359 -k1,7416:24911253,6254097:181360 -k1,7416:26158884,6254097:181360 -k1,7416:28325329,6254097:181359 -k1,7416:29525774,6254097:181360 -k1,7416:32583029,6254097:0 -) -(1,7418:6630773,7095585:25952256,513147,126483 -g1,7416:7489294,7095585 -g1,7416:8707608,7095585 -g1,7416:12738072,7095585 -g1,7416:15572504,7095585 -(1,7416:15572504,7095585:0,452978,115847 -r1,7416:16985905,7095585:1413401,568825,115847 -k1,7416:15572504,7095585:-1413401 -) -(1,7416:15572504,7095585:1413401,452978,115847 -k1,7416:15572504,7095585:3277 -h1,7416:16982628,7095585:0,411205,112570 -) -g1,7416:17185134,7095585 -g1,7416:18575808,7095585 -(1,7416:18575808,7095585:0,452978,115847 -r1,7416:20340921,7095585:1765113,568825,115847 -k1,7416:18575808,7095585:-1765113 -) -(1,7416:18575808,7095585:1765113,452978,115847 -k1,7416:18575808,7095585:3277 -h1,7416:20337644,7095585:0,411205,112570 -) -k1,7418:32583029,7095585:12068438 -g1,7418:32583029,7095585 -) -v1,7418:6630773,8251645:0,393216,0 -(1,7477:6630773,45116945:25952256,37258516,589824 -g1,7477:6630773,45116945 -(1,7477:6630773,45116945:25952256,37258516,589824 -(1,7477:6630773,45706769:25952256,37848340,0 -[1,7477:6630773,45706769:25952256,37848340,0 -(1,7477:6630773,45706769:25952256,37822126,0 -r1,7477:6656987,45706769:26214,37822126,0 -[1,7477:6656987,45706769:25899828,37822126,0 -(1,7477:6656987,45116945:25899828,36642478,0 -[1,7477:7246811,45116945:24720180,36642478,0 -(1,7419:7246811,9561841:24720180,1087374,138281 -k1,7418:8625670,9561841:169156 -k1,7418:10048530,9561841:169156 -k1,7418:11350148,9561841:169156 -k1,7418:12849685,9561841:169156 -k1,7418:13706314,9561841:169156 -k1,7418:14231330,9561841:169156 -k1,7418:18980142,9561841:169156 -k1,7418:22895991,9561841:169156 -k1,7418:23421007,9561841:169156 -k1,7418:26352506,9561841:169156 -k1,7418:28334388,9561841:169156 -k1,7418:30664921,9561841:169156 -$1,7418:30664921,9561841 -k1,7418:31398794,9561841:182060 -k1,7419:31966991,9561841:0 -) -(1,7419:7246811,10403329:24720180,615216,134348 -k1,7418:7891666,10403329:136951 -k1,7418:8297316,10403329:136952 -k1,7418:8832726,10403329:136951 -k1,7418:9537875,10403329:136952 -(1,7418:9982209,10501643:311689,334430,0 -) -k1,7418:10430849,10403329:136951 -k1,7418:10836499,10403329:136952 -k1,7418:11476111,10403329:136951 -k1,7418:12181260,10403329:136952 -(1,7418:12625594,10501643:311689,339935,0 -) -k1,7418:13074234,10403329:136951 -k1,7418:13479883,10403329:136951 -(1,7418:13982544,10128048:311689,339935,0 -) -$1,7418:14294233,10403329 -k1,7418:14663167,10403329:195264 -k1,7418:16055118,10403329:195264 -k1,7418:18945878,10403329:195264 -k1,7418:20654367,10403329:195263 -k1,7418:21381128,10403329:195264 -k1,7418:22595477,10403329:195264 -k1,7418:24444214,10403329:195264 -k1,7418:25325639,10403329:195263 -k1,7418:26468554,10403329:195264 -k1,7418:28476544,10403329:195264 -k1,7419:31966991,10403329:0 -) -(1,7419:7246811,11244817:24720180,513147,126483 -(1,7418:7246811,11244817:0,452978,115847 -r1,7477:8660212,11244817:1413401,568825,115847 -k1,7418:7246811,11244817:-1413401 -) -(1,7418:7246811,11244817:1413401,452978,115847 -k1,7418:7246811,11244817:3277 -h1,7418:8656935,11244817:0,411205,112570 -) -k1,7418:8998998,11244817:165116 -k1,7418:10117664,11244817:165117 -k1,7418:11658381,11244817:165116 -k1,7418:13353764,11244817:165117 -k1,7418:14170308,11244817:165116 -k1,7418:15789013,11244817:165116 -k1,7418:16973215,11244817:165117 -k1,7418:20949250,11244817:165116 -k1,7418:21773658,11244817:165116 -k1,7418:22957860,11244817:165117 -k1,7418:25284353,11244817:165116 -k1,7418:26646157,11244817:165117 -k1,7418:29271495,11244817:165116 -k1,7419:31966991,11244817:0 -) -(1,7419:7246811,12086305:24720180,513147,134348 -(1,7418:7246811,12086305:0,452978,115847 -r1,7477:8308500,12086305:1061689,568825,115847 -k1,7418:7246811,12086305:-1061689 -) -(1,7418:7246811,12086305:1061689,452978,115847 -k1,7418:7246811,12086305:3277 -h1,7418:8305223,12086305:0,411205,112570 -) -k1,7418:8468033,12086305:159533 -k1,7418:9159063,12086305:159533 -k1,7418:10831822,12086305:159533 -k1,7418:11642783,12086305:159533 -k1,7418:14100664,12086305:159533 -k1,7418:15048595,12086305:159533 -k1,7418:18280455,12086305:159532 -k1,7418:20007609,12086305:159533 -k1,7418:21905157,12086305:159533 -k1,7418:25654752,12086305:159533 -k1,7418:26500447,12086305:159533 -k1,7418:27981841,12086305:159533 -k1,7418:28800666,12086305:159533 -k1,7418:29979284,12086305:159533 -k1,7418:31966991,12086305:0 -) -(1,7419:7246811,12927793:24720180,513147,134348 -k1,7418:10172100,12927793:208166 -k1,7418:12892916,12927793:208166 -k1,7418:13889480,12927793:208166 -k1,7418:17169974,12927793:208166 -k1,7418:17909637,12927793:208166 -k1,7418:21178991,12927793:208167 -k1,7418:25036202,12927793:208166 -k1,7418:26435813,12927793:208166 -k1,7418:27663064,12927793:208166 -k1,7418:29714102,12927793:208166 -k1,7418:30453765,12927793:208166 -k1,7418:31966991,12927793:0 -) -(1,7419:7246811,13769281:24720180,505283,126483 -g1,7418:8132202,13769281 -g1,7418:9524186,13769281 -g1,7418:10339453,13769281 -g1,7418:11741923,13769281 -g1,7418:13308233,13769281 -g1,7418:15922464,13769281 -g1,7418:19887392,13769281 -k1,7419:31966991,13769281:9394589 -g1,7419:31966991,13769281 -) -v1,7421:7246811,14887926:0,393216,0 -(1,7428:7246811,17176391:24720180,2681681,196608 -g1,7428:7246811,17176391 -g1,7428:7246811,17176391 -g1,7428:7050203,17176391 -(1,7428:7050203,17176391:0,2681681,196608 -r1,7477:32163599,17176391:25113396,2878289,196608 -k1,7428:7050203,17176391:-25113396 -) -(1,7428:7050203,17176391:25113396,2681681,196608 -[1,7428:7246811,17176391:24720180,2485073,0 -(1,7423:7246811,15101836:24720180,410518,101187 -(1,7422:7246811,15101836:0,0,0 -g1,7422:7246811,15101836 -g1,7422:7246811,15101836 -g1,7422:6919131,15101836 -(1,7422:6919131,15101836:0,0,0 -) -g1,7422:7246811,15101836 -) -g1,7423:8511394,15101836 -g1,7423:9459832,15101836 -g1,7423:11988997,15101836 -g1,7423:12621289,15101836 -g1,7423:14518163,15101836 -g1,7423:15150455,15101836 -g1,7423:18944205,15101836 -g1,7423:20524934,15101836 -g1,7423:21157226,15101836 -h1,7423:22737954,15101836:0,0,0 -k1,7423:31966991,15101836:9229037 -g1,7423:31966991,15101836 -) -(1,7424:7246811,15768014:24720180,410518,101187 -h1,7424:7246811,15768014:0,0,0 -g1,7424:10408269,15768014 -g1,7424:12305143,15768014 -g1,7424:12937435,15768014 -h1,7424:13569727,15768014:0,0,0 -k1,7424:31966991,15768014:18397264 -g1,7424:31966991,15768014 -) -(1,7425:7246811,16434192:24720180,410518,101187 -h1,7425:7246811,16434192:0,0,0 -k1,7425:7246811,16434192:0 -h1,7425:11040559,16434192:0,0,0 -k1,7425:31966991,16434192:20926432 -g1,7425:31966991,16434192 -) -(1,7426:7246811,17100370:24720180,410518,76021 -h1,7426:7246811,17100370:0,0,0 -k1,7426:7246811,17100370:0 -h1,7426:10408267,17100370:0,0,0 -k1,7426:31966991,17100370:21558724 -g1,7426:31966991,17100370 -) -] -) -g1,7428:31966991,17176391 -g1,7428:7246811,17176391 -g1,7428:7246811,17176391 -g1,7428:31966991,17176391 -g1,7428:31966991,17176391 -) -h1,7428:7246811,17372999:0,0,0 -(1,7432:7246811,18666953:24720180,513147,134348 -h1,7431:7246811,18666953:983040,0,0 -k1,7431:9787248,18666953:360710 -k1,7431:12401741,18666953:360710 -k1,7431:13449925,18666953:360711 -k1,7431:15546028,18666953:360710 -k1,7431:16677441,18666953:360710 -k1,7431:20531875,18666953:360710 -k1,7431:24465608,18666953:360710 -k1,7431:25930601,18666953:360711 -k1,7431:27039077,18666953:360710 -k1,7431:30231598,18666953:360710 -k1,7431:31966991,18666953:0 -) -(1,7432:7246811,19508441:24720180,513147,134348 -k1,7431:10087337,19508441:145030 -(1,7431:10087337,19508441:0,452978,115847 -r1,7477:12204162,19508441:2116825,568825,115847 -k1,7431:10087337,19508441:-2116825 -) -(1,7431:10087337,19508441:2116825,452978,115847 -k1,7431:10087337,19508441:3277 -h1,7431:12200885,19508441:0,411205,112570 -) -k1,7431:12522862,19508441:145030 -k1,7431:16525996,19508441:145030 -k1,7431:17330318,19508441:145030 -k1,7431:20237690,19508441:145029 -k1,7431:22838354,19508441:145030 -k1,7431:24087666,19508441:145030 -k1,7431:24980462,19508441:145030 -k1,7431:27917326,19508441:145030 -k1,7431:28823884,19508441:145030 -k1,7431:31966991,19508441:0 -) -(1,7432:7246811,20349929:24720180,505283,134348 -k1,7431:8121060,20349929:188087 -k1,7431:9328232,20349929:188087 -k1,7431:11757650,20349929:188087 -k1,7431:15018065,20349929:188087 -k1,7431:15857580,20349929:188087 -(1,7431:15857580,20349929:0,452978,115847 -r1,7477:17974405,20349929:2116825,568825,115847 -k1,7431:15857580,20349929:-2116825 -) -(1,7431:15857580,20349929:2116825,452978,115847 -k1,7431:15857580,20349929:3277 -h1,7431:17971128,20349929:0,411205,112570 -) -k1,7431:18162493,20349929:188088 -k1,7431:19369665,20349929:188087 -k1,7431:24181317,20349929:188087 -k1,7431:26878778,20349929:188087 -k1,7431:29297055,20349929:188087 -k1,7431:31339156,20349929:188087 -k1,7431:31966991,20349929:0 -) -(1,7432:7246811,21191417:24720180,513147,134348 -k1,7431:8619891,21191417:169839 -k1,7431:10156811,21191417:169839 -k1,7431:11345735,21191417:169839 -k1,7431:14277917,21191417:169839 -k1,7431:16290628,21191417:169839 -k1,7431:17119759,21191417:169839 -k1,7431:18308683,21191417:169839 -k1,7431:22051545,21191417:169839 -k1,7431:23212944,21191417:169839 -k1,7431:25563821,21191417:169839 -k1,7431:28414083,21191417:169839 -k1,7431:29199960,21191417:169839 -k1,7431:30388884,21191417:169839 -k1,7432:31966991,21191417:0 -) -(1,7432:7246811,22032905:24720180,355205,126483 -k1,7432:31966990,22032905:22921216 -g1,7432:31966990,22032905 -) -v1,7434:7246811,23151550:0,393216,0 -(1,7440:7246811,24773837:24720180,2015503,196608 -g1,7440:7246811,24773837 -g1,7440:7246811,24773837 -g1,7440:7050203,24773837 -(1,7440:7050203,24773837:0,2015503,196608 -r1,7477:32163599,24773837:25113396,2212111,196608 -k1,7440:7050203,24773837:-25113396 -) -(1,7440:7050203,24773837:25113396,2015503,196608 -[1,7440:7246811,24773837:24720180,1818895,0 -(1,7436:7246811,23365460:24720180,410518,101187 -(1,7435:7246811,23365460:0,0,0 -g1,7435:7246811,23365460 -g1,7435:7246811,23365460 -g1,7435:6919131,23365460 -(1,7435:6919131,23365460:0,0,0 -) -g1,7435:7246811,23365460 -) -g1,7436:8827540,23365460 -g1,7436:9775978,23365460 -g1,7436:12305143,23365460 -g1,7436:12937435,23365460 -g1,7436:16731184,23365460 -g1,7436:17995768,23365460 -g1,7436:19576497,23365460 -g1,7436:20208789,23365460 -h1,7436:21789517,23365460:0,0,0 -k1,7436:31966991,23365460:10177474 -g1,7436:31966991,23365460 -) -(1,7437:7246811,24031638:24720180,410518,101187 -h1,7437:7246811,24031638:0,0,0 -k1,7437:7246811,24031638:0 -h1,7437:11356705,24031638:0,0,0 -k1,7437:31966991,24031638:20610286 -g1,7437:31966991,24031638 -) -(1,7438:7246811,24697816:24720180,410518,76021 -h1,7438:7246811,24697816:0,0,0 -k1,7438:7246811,24697816:0 -h1,7438:10724413,24697816:0,0,0 -k1,7438:31966991,24697816:21242578 -g1,7438:31966991,24697816 -) -] -) -g1,7440:31966991,24773837 -g1,7440:7246811,24773837 -g1,7440:7246811,24773837 -g1,7440:31966991,24773837 -g1,7440:31966991,24773837 -) -h1,7440:7246811,24970445:0,0,0 -(1,7444:7246811,26264400:24720180,513147,134348 -h1,7443:7246811,26264400:983040,0,0 -k1,7443:9400945,26264400:217545 -k1,7443:10722772,26264400:217545 -k1,7443:12226133,26264400:217545 -k1,7443:15204054,26264400:217545 -k1,7443:16594038,26264400:217545 -k1,7443:18799290,26264400:217545 -k1,7443:20034608,26264400:217544 -k1,7443:21987546,26264400:217545 -(1,7443:21987546,26264400:0,452978,115847 -r1,7477:24456083,26264400:2468537,568825,115847 -k1,7443:21987546,26264400:-2468537 -) -(1,7443:21987546,26264400:2468537,452978,115847 -k1,7443:21987546,26264400:3277 -h1,7443:24452806,26264400:0,411205,112570 -) -k1,7443:24847298,26264400:217545 -k1,7443:25716271,26264400:217545 -k1,7443:27125261,26264400:217545 -k1,7443:29933444,26264400:217545 -k1,7443:31307699,26264400:217545 -k1,7443:31966991,26264400:0 -) -(1,7444:7246811,27105888:24720180,505283,126483 -k1,7443:8433294,27105888:167398 -k1,7443:10918700,27105888:167398 -k1,7443:14085680,27105888:167397 -k1,7443:15272163,27105888:167398 -k1,7443:16828924,27105888:167398 -k1,7443:18893589,27105888:167398 -k1,7443:20503433,27105888:167397 -k1,7443:21689916,27105888:167398 -k1,7443:23732954,27105888:167398 -k1,7443:24370245,27105888:167398 -k1,7443:25069140,27105888:167398 -k1,7443:28445835,27105888:167397 -k1,7443:29229271,27105888:167398 -k1,7443:30599910,27105888:167398 -k1,7443:31966991,27105888:0 -) -(1,7444:7246811,27947376:24720180,513147,7863 -k1,7443:8092389,27947376:194150 -k1,7443:9639203,27947376:194151 -k1,7443:11100819,27947376:194150 -k1,7443:15649181,27947376:194150 -k1,7443:16862417,27947376:194151 -k1,7443:19134714,27947376:194150 -k1,7443:19988156,27947376:194150 -k1,7443:21201392,27947376:194151 -k1,7443:24581902,27947376:194150 -k1,7443:27411255,27947376:194150 -k1,7443:28624491,27947376:194151 -k1,7443:30806348,27947376:194150 -k1,7444:31966991,27947376:0 -) -(1,7444:7246811,28788864:24720180,513147,126483 -k1,7443:9530217,28788864:183632 -k1,7443:11315549,28788864:183632 -k1,7443:15274709,28788864:183631 -k1,7443:15924302,28788864:183632 -k1,7443:17488122,28788864:183632 -k1,7443:18776036,28788864:183632 -k1,7443:19707434,28788864:183632 -k1,7443:23481127,28788864:183631 -k1,7443:24350921,28788864:183632 -k1,7443:28376929,28788864:183632 -k1,7443:31966991,28788864:0 -) -(1,7444:7246811,29630352:24720180,505283,7863 -g1,7443:8132202,29630352 -g1,7443:8687291,29630352 -g1,7443:10320448,29630352 -g1,7443:12507384,29630352 -g1,7443:13567756,29630352 -g1,7443:14786070,29630352 -g1,7443:16638772,29630352 -g1,7443:18825708,29630352 -g1,7443:20418888,29630352 -g1,7443:23845110,29630352 -k1,7444:31966991,29630352:6105338 -g1,7444:31966991,29630352 -) -v1,7446:7246811,30748996:0,393216,0 -(1,7450:7246811,31045218:24720180,689438,196608 -g1,7450:7246811,31045218 -g1,7450:7246811,31045218 -g1,7450:7050203,31045218 -(1,7450:7050203,31045218:0,689438,196608 -r1,7477:32163599,31045218:25113396,886046,196608 -k1,7450:7050203,31045218:-25113396 -) -(1,7450:7050203,31045218:25113396,689438,196608 -[1,7450:7246811,31045218:24720180,492830,0 -(1,7448:7246811,30962906:24720180,410518,82312 -(1,7447:7246811,30962906:0,0,0 -g1,7447:7246811,30962906 -g1,7447:7246811,30962906 -g1,7447:6919131,30962906 -(1,7447:6919131,30962906:0,0,0 -) -g1,7447:7246811,30962906 -) -k1,7448:7246811,30962906:0 -g1,7448:10724414,30962906 -h1,7448:11988997,30962906:0,0,0 -k1,7448:31966991,30962906:19977994 -g1,7448:31966991,30962906 -) -] -) -g1,7450:31966991,31045218 -g1,7450:7246811,31045218 -g1,7450:7246811,31045218 -g1,7450:31966991,31045218 -g1,7450:31966991,31045218 -) -h1,7450:7246811,31241826:0,0,0 -(1,7454:7246811,32535781:24720180,505283,134348 -h1,7453:7246811,32535781:983040,0,0 -k1,7453:10346579,32535781:284341 -k1,7453:11313805,32535781:284341 -k1,7453:13248343,32535781:284341 -k1,7453:15850693,32535781:284342 -k1,7453:17239316,32535781:284341 -k1,7453:18809473,32535781:284341 -k1,7453:19841580,32535781:284341 -k1,7453:23307039,32535781:284341 -k1,7453:24207418,32535781:284341 -k1,7453:24847620,32535781:284342 -k1,7453:27004980,32535781:284341 -k1,7453:28389015,32535781:284341 -k1,7453:29324784,32535781:284341 -(1,7453:29324784,32535781:0,452978,115847 -r1,7477:31793321,32535781:2468537,568825,115847 -k1,7453:29324784,32535781:-2468537 -) -(1,7453:29324784,32535781:2468537,452978,115847 -k1,7453:29324784,32535781:3277 -h1,7453:31790044,32535781:0,411205,112570 -) -k1,7453:31966991,32535781:0 -) -(1,7454:7246811,33377269:24720180,513147,134348 -g1,7453:10380742,33377269 -g1,7453:11327737,33377269 -g1,7453:13910510,33377269 -g1,7453:14795901,33377269 -g1,7453:16014215,33377269 -g1,7453:17952770,33377269 -g1,7453:18811291,33377269 -g1,7453:20029605,33377269 -g1,7453:23631463,33377269 -k1,7454:31966991,33377269:5706224 -g1,7454:31966991,33377269 -) -v1,7456:7246811,34495914:0,393216,0 -(1,7461:7246811,35458314:24720180,1355616,196608 -g1,7461:7246811,35458314 -g1,7461:7246811,35458314 -g1,7461:7050203,35458314 -(1,7461:7050203,35458314:0,1355616,196608 -r1,7477:32163599,35458314:25113396,1552224,196608 -k1,7461:7050203,35458314:-25113396 -) -(1,7461:7050203,35458314:25113396,1355616,196608 -[1,7461:7246811,35458314:24720180,1159008,0 -(1,7458:7246811,34709824:24720180,410518,82312 -(1,7457:7246811,34709824:0,0,0 -g1,7457:7246811,34709824 -g1,7457:7246811,34709824 -g1,7457:6919131,34709824 -(1,7457:6919131,34709824:0,0,0 -) -g1,7457:7246811,34709824 -) -k1,7458:7246811,34709824:0 -g1,7458:10724414,34709824 -g1,7458:12305143,34709824 -h1,7458:13885871,34709824:0,0,0 -k1,7458:31966991,34709824:18081120 -g1,7458:31966991,34709824 -) -(1,7459:7246811,35376002:24720180,410518,82312 -h1,7459:7246811,35376002:0,0,0 -g1,7459:10724414,35376002 -g1,7459:12621289,35376002 -h1,7459:13885872,35376002:0,0,0 -k1,7459:31966992,35376002:18081120 -g1,7459:31966992,35376002 -) -] -) -g1,7461:31966991,35458314 -g1,7461:7246811,35458314 -g1,7461:7246811,35458314 -g1,7461:31966991,35458314 -g1,7461:31966991,35458314 -) -h1,7461:7246811,35654922:0,0,0 -(1,7465:7246811,36948876:24720180,513147,134348 -h1,7464:7246811,36948876:983040,0,0 -k1,7464:9363147,36948876:179747 -k1,7464:10647177,36948876:179748 -k1,7464:11919409,36948876:179747 -k1,7464:14861499,36948876:179747 -k1,7464:17314035,36948876:179747 -k1,7464:18145211,36948876:179748 -k1,7464:20540075,36948876:179747 -k1,7464:21738907,36948876:179747 -k1,7464:23853932,36948876:179747 -k1,7464:26195057,36948876:179748 -k1,7464:30112322,36948876:179747 -k1,7464:31966991,36948876:0 -) -(1,7465:7246811,37790364:24720180,513147,138281 -k1,7464:8296768,37790364:240587 -$1,7464:8296768,37790364 -$1,7464:8764695,37790364 -k1,7464:11228918,37790364:240586 -k1,7464:12152390,37790364:240587 -k1,7464:16199963,37790364:240587 -k1,7464:18713338,37790364:240586 -k1,7464:20490744,37790364:240587 -k1,7464:22179677,37790364:240587 -k1,7464:23576277,37790364:240545 -k1,7464:26705035,37790364:240586 -k1,7464:28148208,37790364:240587 -k1,7464:31966991,37790364:0 -) -(1,7465:7246811,38631852:24720180,513147,126483 -k1,7464:10838042,38631852:235788 -k1,7464:12265275,38631852:235788 -k1,7464:13568608,38631852:235751 -k1,7464:17077264,38631852:235788 -k1,7464:21131835,38631852:235788 -k1,7464:24515973,38631852:235788 -k1,7464:25319958,38631852:235788 -k1,7464:26939211,38631852:235788 -k1,7464:30637921,38631852:235788 -k1,7465:31966991,38631852:0 -) -(1,7465:7246811,39473340:24720180,505283,134348 -k1,7464:9120551,39473340:224199 -k1,7464:12578295,39473340:224198 -k1,7464:14087000,39473340:224199 -k1,7464:16993587,39473340:224198 -k1,7464:18236871,39473340:224199 -k1,7464:21294190,39473340:224198 -k1,7464:25125491,39473340:224199 -k1,7464:27204358,39473340:224198 -k1,7464:28237927,39473340:224199 -k1,7464:29481210,39473340:224198 -k1,7464:31966991,39473340:0 -) -(1,7465:7246811,40314828:24720180,513147,126483 -k1,7464:8175767,40314828:269664 -k1,7464:12056464,40314828:269663 -k1,7464:12942166,40314828:269664 -k1,7464:14230914,40314828:269663 -k1,7464:16213034,40314828:269664 -k1,7464:18644074,40314828:269663 -k1,7464:19541573,40314828:269664 -k1,7464:20830321,40314828:269663 -k1,7464:22467066,40314828:269664 -k1,7464:23396021,40314828:269663 -k1,7464:24821669,40314828:269593 -k1,7464:26282778,40314828:269664 -k1,7464:27793693,40314828:269663 -k1,7464:28419217,40314828:269664 -k1,7464:31040967,40314828:269663 -k1,7465:31966991,40314828:0 -) -(1,7465:7246811,41156316:24720180,505283,134348 -k1,7464:8440221,41156316:226099 -k1,7464:9197817,41156316:226099 -k1,7464:11494854,41156316:226099 -k1,7464:12912398,41156316:226099 -k1,7464:15149142,41156316:226099 -k1,7464:18153968,41156316:226099 -k1,7464:19484349,41156316:226099 -k1,7464:20458214,41156316:226099 -k1,7464:22540293,41156316:226099 -k1,7464:25275766,41156316:226099 -k1,7464:26184750,41156316:226099 -k1,7464:29239383,41156316:226099 -k1,7464:30081520,41156316:226099 -k1,7464:31966991,41156316:0 -) -(1,7465:7246811,41997804:24720180,513147,134348 -k1,7464:8845794,41997804:231902 -k1,7464:10727892,41997804:231901 -k1,7464:13614657,41997804:231902 -k1,7464:14378055,41997804:231901 -k1,7464:16680895,41997804:231902 -k1,7464:19982502,41997804:231901 -k1,7464:21162055,41997804:231902 -k1,7464:22860652,41997804:231901 -k1,7464:24160103,41997804:231869 -k1,7464:25583449,41997804:231901 -k1,7464:26971373,41997804:231869 -k1,7464:28194835,41997804:231902 -k1,7464:31205463,41997804:231901 -k1,7465:31966991,41997804:0 -) -(1,7465:7246811,42839292:24720180,505283,126483 -(1,7464:7246811,42839292:0,452978,115847 -r1,7477:9715348,42839292:2468537,568825,115847 -k1,7464:7246811,42839292:-2468537 -) -(1,7464:7246811,42839292:2468537,452978,115847 -k1,7464:7246811,42839292:3277 -h1,7464:9712071,42839292:0,411205,112570 -) -g1,7464:10088247,42839292 -g1,7464:11478921,42839292 -g1,7464:12487520,42839292 -g1,7464:14195388,42839292 -g1,7464:15724998,42839292 -g1,7464:16685755,42839292 -(1,7464:16685755,42839292:0,452978,115847 -r1,7477:18450868,42839292:1765113,568825,115847 -k1,7464:16685755,42839292:-1765113 -) -(1,7464:16685755,42839292:1765113,452978,115847 -k1,7464:16685755,42839292:3277 -h1,7464:18447591,42839292:0,411205,112570 -) -g1,7464:18650097,42839292 -g1,7464:20040771,42839292 -(1,7464:20040771,42839292:0,452978,115847 -r1,7477:21805884,42839292:1765113,568825,115847 -k1,7464:20040771,42839292:-1765113 -) -(1,7464:20040771,42839292:1765113,452978,115847 -k1,7464:20040771,42839292:3277 -h1,7464:21802607,42839292:0,411205,112570 -) -k1,7465:31966991,42839292:10161107 -g1,7465:31966991,42839292 -) -v1,7467:7246811,43957937:0,393216,0 -(1,7472:7246811,44920337:24720180,1355616,196608 -g1,7472:7246811,44920337 -g1,7472:7246811,44920337 -g1,7472:7050203,44920337 -(1,7472:7050203,44920337:0,1355616,196608 -r1,7477:32163599,44920337:25113396,1552224,196608 -k1,7472:7050203,44920337:-25113396 -) -(1,7472:7050203,44920337:25113396,1355616,196608 -[1,7472:7246811,44920337:24720180,1159008,0 -(1,7469:7246811,44171847:24720180,410518,82312 -(1,7468:7246811,44171847:0,0,0 -g1,7468:7246811,44171847 -g1,7468:7246811,44171847 -g1,7468:6919131,44171847 -(1,7468:6919131,44171847:0,0,0 -) -g1,7468:7246811,44171847 -) -k1,7469:7246811,44171847:0 -g1,7469:10092123,44171847 -g1,7469:11672852,44171847 -g1,7469:13253581,44171847 -h1,7469:14834309,44171847:0,0,0 -k1,7469:31966991,44171847:17132682 -g1,7469:31966991,44171847 -) -(1,7470:7246811,44838025:24720180,410518,82312 -h1,7470:7246811,44838025:0,0,0 -g1,7470:10092123,44838025 -g1,7470:11672852,44838025 -g1,7470:13253581,44838025 -h1,7470:14834309,44838025:0,0,0 -k1,7470:31966991,44838025:17132682 -g1,7470:31966991,44838025 -) -] +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7482:37855564,49800853:1179648,16384,0 +) +) +k1,7482:3078556,49800853:-34777008 +) +] +g1,7482:6630773,4812305 +g1,7482:6630773,4812305 +g1,7482:8843268,4812305 +g1,7482:10880782,4812305 +g1,7482:13281365,4812305 +k1,7482:31387653,4812305:18106288 +) +) +] +[1,7482:6630773,45706769:25952256,40108032,0 +(1,7482:6630773,45706769:25952256,40108032,0 +(1,7482:6630773,45706769:0,0,0 +g1,7482:6630773,45706769 +) +[1,7482:6630773,45706769:25952256,40108032,0 +(1,7423:6630773,6254097:25952256,513147,134348 +k1,7421:7916415,6254097:181360 +k1,7421:8845540,6254097:181359 +k1,7421:10466726,6254097:181360 +k1,7421:11932592,6254097:181360 +k1,7421:12572048,6254097:181359 +k1,7421:13284905,6254097:181360 +k1,7421:17159219,6254097:181360 +k1,7421:18026740,6254097:181359 +k1,7421:19227185,6254097:181360 +k1,7421:21887117,6254097:181360 +k1,7421:23236983,6254097:181359 +k1,7421:24911253,6254097:181360 +k1,7421:26158884,6254097:181360 +k1,7421:28325329,6254097:181359 +k1,7421:29525774,6254097:181360 +k1,7421:32583029,6254097:0 +) +(1,7423:6630773,7095585:25952256,513147,126483 +g1,7421:7489294,7095585 +g1,7421:8707608,7095585 +g1,7421:12738072,7095585 +g1,7421:15572504,7095585 +(1,7421:15572504,7095585:0,452978,115847 +r1,7421:16985905,7095585:1413401,568825,115847 +k1,7421:15572504,7095585:-1413401 +) +(1,7421:15572504,7095585:1413401,452978,115847 +k1,7421:15572504,7095585:3277 +h1,7421:16982628,7095585:0,411205,112570 +) +g1,7421:17185134,7095585 +g1,7421:18575808,7095585 +(1,7421:18575808,7095585:0,452978,115847 +r1,7421:20340921,7095585:1765113,568825,115847 +k1,7421:18575808,7095585:-1765113 +) +(1,7421:18575808,7095585:1765113,452978,115847 +k1,7421:18575808,7095585:3277 +h1,7421:20337644,7095585:0,411205,112570 +) +k1,7423:32583029,7095585:12068438 +g1,7423:32583029,7095585 +) +v1,7423:6630773,8251645:0,393216,0 +(1,7482:6630773,45116945:25952256,37258516,589824 +g1,7482:6630773,45116945 +(1,7482:6630773,45116945:25952256,37258516,589824 +(1,7482:6630773,45706769:25952256,37848340,0 +[1,7482:6630773,45706769:25952256,37848340,0 +(1,7482:6630773,45706769:25952256,37822126,0 +r1,7482:6656987,45706769:26214,37822126,0 +[1,7482:6656987,45706769:25899828,37822126,0 +(1,7482:6656987,45116945:25899828,36642478,0 +[1,7482:7246811,45116945:24720180,36642478,0 +(1,7424:7246811,9561841:24720180,1087374,138281 +k1,7423:8625670,9561841:169156 +k1,7423:10048530,9561841:169156 +k1,7423:11350148,9561841:169156 +k1,7423:12849685,9561841:169156 +k1,7423:13706314,9561841:169156 +k1,7423:14231330,9561841:169156 +k1,7423:18980142,9561841:169156 +k1,7423:22895991,9561841:169156 +k1,7423:23421007,9561841:169156 +k1,7423:26352506,9561841:169156 +k1,7423:28334388,9561841:169156 +k1,7423:30664921,9561841:169156 +$1,7423:30664921,9561841 +k1,7423:31398794,9561841:182060 +k1,7424:31966991,9561841:0 +) +(1,7424:7246811,10403329:24720180,615216,134348 +k1,7423:7891666,10403329:136951 +k1,7423:8297316,10403329:136952 +k1,7423:8832726,10403329:136951 +k1,7423:9537875,10403329:136952 +(1,7423:9982209,10501643:311689,334430,0 +) +k1,7423:10430849,10403329:136951 +k1,7423:10836499,10403329:136952 +k1,7423:11476111,10403329:136951 +k1,7423:12181260,10403329:136952 +(1,7423:12625594,10501643:311689,339935,0 +) +k1,7423:13074234,10403329:136951 +k1,7423:13479883,10403329:136951 +(1,7423:13982544,10128048:311689,339935,0 +) +$1,7423:14294233,10403329 +k1,7423:14663167,10403329:195264 +k1,7423:16055118,10403329:195264 +k1,7423:18945878,10403329:195264 +k1,7423:20654367,10403329:195263 +k1,7423:21381128,10403329:195264 +k1,7423:22595477,10403329:195264 +k1,7423:24444214,10403329:195264 +k1,7423:25325639,10403329:195263 +k1,7423:26468554,10403329:195264 +k1,7423:28476544,10403329:195264 +k1,7424:31966991,10403329:0 +) +(1,7424:7246811,11244817:24720180,513147,126483 +(1,7423:7246811,11244817:0,452978,115847 +r1,7482:8660212,11244817:1413401,568825,115847 +k1,7423:7246811,11244817:-1413401 +) +(1,7423:7246811,11244817:1413401,452978,115847 +k1,7423:7246811,11244817:3277 +h1,7423:8656935,11244817:0,411205,112570 +) +k1,7423:8998998,11244817:165116 +k1,7423:10117664,11244817:165117 +k1,7423:11658381,11244817:165116 +k1,7423:13353764,11244817:165117 +k1,7423:14170308,11244817:165116 +k1,7423:15789013,11244817:165116 +k1,7423:16973215,11244817:165117 +k1,7423:20949250,11244817:165116 +k1,7423:21773658,11244817:165116 +k1,7423:22957860,11244817:165117 +k1,7423:25284353,11244817:165116 +k1,7423:26646157,11244817:165117 +k1,7423:29271495,11244817:165116 +k1,7424:31966991,11244817:0 +) +(1,7424:7246811,12086305:24720180,513147,134348 +(1,7423:7246811,12086305:0,452978,115847 +r1,7482:8308500,12086305:1061689,568825,115847 +k1,7423:7246811,12086305:-1061689 +) +(1,7423:7246811,12086305:1061689,452978,115847 +k1,7423:7246811,12086305:3277 +h1,7423:8305223,12086305:0,411205,112570 +) +k1,7423:8468033,12086305:159533 +k1,7423:9159063,12086305:159533 +k1,7423:10831822,12086305:159533 +k1,7423:11642783,12086305:159533 +k1,7423:14100664,12086305:159533 +k1,7423:15048595,12086305:159533 +k1,7423:18280455,12086305:159532 +k1,7423:20007609,12086305:159533 +k1,7423:21905157,12086305:159533 +k1,7423:25654752,12086305:159533 +k1,7423:26500447,12086305:159533 +k1,7423:27981841,12086305:159533 +k1,7423:28800666,12086305:159533 +k1,7423:29979284,12086305:159533 +k1,7423:31966991,12086305:0 +) +(1,7424:7246811,12927793:24720180,513147,134348 +k1,7423:10172100,12927793:208166 +k1,7423:12892916,12927793:208166 +k1,7423:13889480,12927793:208166 +k1,7423:17169974,12927793:208166 +k1,7423:17909637,12927793:208166 +k1,7423:21178991,12927793:208167 +k1,7423:25036202,12927793:208166 +k1,7423:26435813,12927793:208166 +k1,7423:27663064,12927793:208166 +k1,7423:29714102,12927793:208166 +k1,7423:30453765,12927793:208166 +k1,7423:31966991,12927793:0 +) +(1,7424:7246811,13769281:24720180,505283,126483 +g1,7423:8132202,13769281 +g1,7423:9524186,13769281 +g1,7423:10339453,13769281 +g1,7423:11741923,13769281 +g1,7423:13308233,13769281 +g1,7423:15922464,13769281 +g1,7423:19887392,13769281 +k1,7424:31966991,13769281:9394589 +g1,7424:31966991,13769281 +) +v1,7426:7246811,14887926:0,393216,0 +(1,7433:7246811,17176391:24720180,2681681,196608 +g1,7433:7246811,17176391 +g1,7433:7246811,17176391 +g1,7433:7050203,17176391 +(1,7433:7050203,17176391:0,2681681,196608 +r1,7482:32163599,17176391:25113396,2878289,196608 +k1,7433:7050203,17176391:-25113396 +) +(1,7433:7050203,17176391:25113396,2681681,196608 +[1,7433:7246811,17176391:24720180,2485073,0 +(1,7428:7246811,15101836:24720180,410518,101187 +(1,7427:7246811,15101836:0,0,0 +g1,7427:7246811,15101836 +g1,7427:7246811,15101836 +g1,7427:6919131,15101836 +(1,7427:6919131,15101836:0,0,0 +) +g1,7427:7246811,15101836 +) +g1,7428:8511394,15101836 +g1,7428:9459832,15101836 +g1,7428:11988997,15101836 +g1,7428:12621289,15101836 +g1,7428:14518163,15101836 +g1,7428:15150455,15101836 +g1,7428:18944205,15101836 +g1,7428:20524934,15101836 +g1,7428:21157226,15101836 +h1,7428:22737954,15101836:0,0,0 +k1,7428:31966991,15101836:9229037 +g1,7428:31966991,15101836 +) +(1,7429:7246811,15768014:24720180,410518,101187 +h1,7429:7246811,15768014:0,0,0 +g1,7429:10408269,15768014 +g1,7429:12305143,15768014 +g1,7429:12937435,15768014 +h1,7429:13569727,15768014:0,0,0 +k1,7429:31966991,15768014:18397264 +g1,7429:31966991,15768014 +) +(1,7430:7246811,16434192:24720180,410518,101187 +h1,7430:7246811,16434192:0,0,0 +k1,7430:7246811,16434192:0 +h1,7430:11040559,16434192:0,0,0 +k1,7430:31966991,16434192:20926432 +g1,7430:31966991,16434192 +) +(1,7431:7246811,17100370:24720180,410518,76021 +h1,7431:7246811,17100370:0,0,0 +k1,7431:7246811,17100370:0 +h1,7431:10408267,17100370:0,0,0 +k1,7431:31966991,17100370:21558724 +g1,7431:31966991,17100370 +) +] +) +g1,7433:31966991,17176391 +g1,7433:7246811,17176391 +g1,7433:7246811,17176391 +g1,7433:31966991,17176391 +g1,7433:31966991,17176391 +) +h1,7433:7246811,17372999:0,0,0 +(1,7437:7246811,18666953:24720180,513147,134348 +h1,7436:7246811,18666953:983040,0,0 +k1,7436:9605273,18666953:178735 +k1,7436:12037790,18666953:178734 +k1,7436:12903998,18666953:178735 +k1,7436:14818125,18666953:178734 +k1,7436:15767563,18666953:178735 +k1,7436:19440021,18666953:178734 +k1,7436:23191779,18666953:178735 +k1,7436:24474795,18666953:178734 +k1,7436:25401296,18666953:178735 +k1,7436:28411841,18666953:178734 +k1,7436:30325969,18666953:178735 +k1,7437:31966991,18666953:0 +) +(1,7437:7246811,19508441:24720180,513147,134348 +k1,7436:8802110,19508441:287833 +(1,7436:8802110,19508441:0,452978,115847 +r1,7482:10918935,19508441:2116825,568825,115847 +k1,7436:8802110,19508441:-2116825 +) +(1,7436:8802110,19508441:2116825,452978,115847 +k1,7436:8802110,19508441:3277 +h1,7436:10915658,19508441:0,411205,112570 +) +k1,7436:11380438,19508441:287833 +k1,7436:15526375,19508441:287833 +k1,7436:16473500,19508441:287833 +k1,7436:19523676,19508441:287833 +k1,7436:22267142,19508441:287832 +k1,7436:23659257,19508441:287833 +k1,7436:24694856,19508441:287833 +k1,7436:27774523,19508441:287833 +k1,7436:28823884,19508441:287833 +k1,7436:31966991,19508441:0 +) +(1,7437:7246811,20349929:24720180,505283,134348 +k1,7436:8202652,20349929:269679 +k1,7436:9491417,20349929:269680 +k1,7436:12002427,20349929:269679 +k1,7436:15344434,20349929:269679 +k1,7436:16265542,20349929:269680 +(1,7436:16265542,20349929:0,452978,115847 +r1,7482:18382367,20349929:2116825,568825,115847 +k1,7436:16265542,20349929:-2116825 +) +(1,7436:16265542,20349929:2116825,452978,115847 +k1,7436:16265542,20349929:3277 +h1,7436:18379090,20349929:0,411205,112570 +) +k1,7436:18652046,20349929:269679 +k1,7436:19940810,20349929:269679 +k1,7436:24834054,20349929:269679 +k1,7436:27613108,20349929:269680 +k1,7436:30112977,20349929:269679 +k1,7436:31966991,20349929:0 +) +(1,7437:7246811,21191417:24720180,513147,134348 +k1,7436:8104224,21191417:229578 +k1,7436:9537042,21191417:229577 +k1,7436:11307371,21191417:229578 +k1,7436:12556033,21191417:229577 +k1,7436:15547954,21191417:229578 +k1,7436:17620404,21191417:229578 +k1,7436:18509273,21191417:229577 +k1,7436:19757936,21191417:229578 +k1,7436:23560537,21191417:229578 +k1,7436:24781674,21191417:229577 +k1,7436:27192290,21191417:229578 +k1,7436:30102290,21191417:229577 +k1,7436:30947906,21191417:229578 +k1,7436:31966991,21191417:0 +) +(1,7437:7246811,22032905:24720180,355205,126483 +k1,7437:31966991,22032905:21556102 +g1,7437:31966991,22032905 +) +v1,7439:7246811,23151550:0,393216,0 +(1,7445:7246811,24773837:24720180,2015503,196608 +g1,7445:7246811,24773837 +g1,7445:7246811,24773837 +g1,7445:7050203,24773837 +(1,7445:7050203,24773837:0,2015503,196608 +r1,7482:32163599,24773837:25113396,2212111,196608 +k1,7445:7050203,24773837:-25113396 +) +(1,7445:7050203,24773837:25113396,2015503,196608 +[1,7445:7246811,24773837:24720180,1818895,0 +(1,7441:7246811,23365460:24720180,410518,101187 +(1,7440:7246811,23365460:0,0,0 +g1,7440:7246811,23365460 +g1,7440:7246811,23365460 +g1,7440:6919131,23365460 +(1,7440:6919131,23365460:0,0,0 +) +g1,7440:7246811,23365460 +) +g1,7441:8827540,23365460 +g1,7441:9775978,23365460 +g1,7441:12305143,23365460 +g1,7441:12937435,23365460 +g1,7441:16731184,23365460 +g1,7441:17995768,23365460 +g1,7441:19576497,23365460 +g1,7441:20208789,23365460 +h1,7441:21789517,23365460:0,0,0 +k1,7441:31966991,23365460:10177474 +g1,7441:31966991,23365460 +) +(1,7442:7246811,24031638:24720180,410518,101187 +h1,7442:7246811,24031638:0,0,0 +k1,7442:7246811,24031638:0 +h1,7442:11356705,24031638:0,0,0 +k1,7442:31966991,24031638:20610286 +g1,7442:31966991,24031638 +) +(1,7443:7246811,24697816:24720180,410518,76021 +h1,7443:7246811,24697816:0,0,0 +k1,7443:7246811,24697816:0 +h1,7443:10724413,24697816:0,0,0 +k1,7443:31966991,24697816:21242578 +g1,7443:31966991,24697816 +) +] +) +g1,7445:31966991,24773837 +g1,7445:7246811,24773837 +g1,7445:7246811,24773837 +g1,7445:31966991,24773837 +g1,7445:31966991,24773837 +) +h1,7445:7246811,24970445:0,0,0 +(1,7449:7246811,26264400:24720180,513147,134348 +h1,7448:7246811,26264400:983040,0,0 +k1,7448:9400945,26264400:217545 +k1,7448:10722772,26264400:217545 +k1,7448:12226133,26264400:217545 +k1,7448:15204054,26264400:217545 +k1,7448:16594038,26264400:217545 +k1,7448:18799290,26264400:217545 +k1,7448:20034608,26264400:217544 +k1,7448:21987546,26264400:217545 +(1,7448:21987546,26264400:0,452978,115847 +r1,7482:24456083,26264400:2468537,568825,115847 +k1,7448:21987546,26264400:-2468537 +) +(1,7448:21987546,26264400:2468537,452978,115847 +k1,7448:21987546,26264400:3277 +h1,7448:24452806,26264400:0,411205,112570 +) +k1,7448:24847298,26264400:217545 +k1,7448:25716271,26264400:217545 +k1,7448:27125261,26264400:217545 +k1,7448:29933444,26264400:217545 +k1,7448:31307699,26264400:217545 +k1,7448:31966991,26264400:0 +) +(1,7449:7246811,27105888:24720180,505283,126483 +k1,7448:8433294,27105888:167398 +k1,7448:10918700,27105888:167398 +k1,7448:14085680,27105888:167397 +k1,7448:15272163,27105888:167398 +k1,7448:16828924,27105888:167398 +k1,7448:18893589,27105888:167398 +k1,7448:20503433,27105888:167397 +k1,7448:21689916,27105888:167398 +k1,7448:23732954,27105888:167398 +k1,7448:24370245,27105888:167398 +k1,7448:25069140,27105888:167398 +k1,7448:28445835,27105888:167397 +k1,7448:29229271,27105888:167398 +k1,7448:30599910,27105888:167398 +k1,7448:31966991,27105888:0 +) +(1,7449:7246811,27947376:24720180,513147,7863 +k1,7448:8092389,27947376:194150 +k1,7448:9639203,27947376:194151 +k1,7448:11100819,27947376:194150 +k1,7448:15649181,27947376:194150 +k1,7448:16862417,27947376:194151 +k1,7448:19134714,27947376:194150 +k1,7448:19988156,27947376:194150 +k1,7448:21201392,27947376:194151 +k1,7448:24581902,27947376:194150 +k1,7448:27411255,27947376:194150 +k1,7448:28624491,27947376:194151 +k1,7448:30806348,27947376:194150 +k1,7449:31966991,27947376:0 +) +(1,7449:7246811,28788864:24720180,513147,126483 +k1,7448:9530217,28788864:183632 +k1,7448:11315549,28788864:183632 +k1,7448:15274709,28788864:183631 +k1,7448:15924302,28788864:183632 +k1,7448:17488122,28788864:183632 +k1,7448:18776036,28788864:183632 +k1,7448:19707434,28788864:183632 +k1,7448:23481127,28788864:183631 +k1,7448:24350921,28788864:183632 +k1,7448:28376929,28788864:183632 +k1,7448:31966991,28788864:0 +) +(1,7449:7246811,29630352:24720180,505283,7863 +g1,7448:8132202,29630352 +g1,7448:8687291,29630352 +g1,7448:10320448,29630352 +g1,7448:12507384,29630352 +g1,7448:13567756,29630352 +g1,7448:14786070,29630352 +g1,7448:16638772,29630352 +g1,7448:18825708,29630352 +g1,7448:20418888,29630352 +g1,7448:23845110,29630352 +k1,7449:31966991,29630352:6105338 +g1,7449:31966991,29630352 +) +v1,7451:7246811,30748996:0,393216,0 +(1,7455:7246811,31045218:24720180,689438,196608 +g1,7455:7246811,31045218 +g1,7455:7246811,31045218 +g1,7455:7050203,31045218 +(1,7455:7050203,31045218:0,689438,196608 +r1,7482:32163599,31045218:25113396,886046,196608 +k1,7455:7050203,31045218:-25113396 +) +(1,7455:7050203,31045218:25113396,689438,196608 +[1,7455:7246811,31045218:24720180,492830,0 +(1,7453:7246811,30962906:24720180,410518,82312 +(1,7452:7246811,30962906:0,0,0 +g1,7452:7246811,30962906 +g1,7452:7246811,30962906 +g1,7452:6919131,30962906 +(1,7452:6919131,30962906:0,0,0 +) +g1,7452:7246811,30962906 +) +k1,7453:7246811,30962906:0 +g1,7453:10724414,30962906 +h1,7453:11988997,30962906:0,0,0 +k1,7453:31966991,30962906:19977994 +g1,7453:31966991,30962906 +) +] +) +g1,7455:31966991,31045218 +g1,7455:7246811,31045218 +g1,7455:7246811,31045218 +g1,7455:31966991,31045218 +g1,7455:31966991,31045218 +) +h1,7455:7246811,31241826:0,0,0 +(1,7459:7246811,32535781:24720180,505283,134348 +h1,7458:7246811,32535781:983040,0,0 +k1,7458:10346579,32535781:284341 +k1,7458:11313805,32535781:284341 +k1,7458:13248343,32535781:284341 +k1,7458:15850693,32535781:284342 +k1,7458:17239316,32535781:284341 +k1,7458:18809473,32535781:284341 +k1,7458:19841580,32535781:284341 +k1,7458:23307039,32535781:284341 +k1,7458:24207418,32535781:284341 +k1,7458:24847620,32535781:284342 +k1,7458:27004980,32535781:284341 +k1,7458:28389015,32535781:284341 +k1,7458:29324784,32535781:284341 +(1,7458:29324784,32535781:0,452978,115847 +r1,7482:31793321,32535781:2468537,568825,115847 +k1,7458:29324784,32535781:-2468537 +) +(1,7458:29324784,32535781:2468537,452978,115847 +k1,7458:29324784,32535781:3277 +h1,7458:31790044,32535781:0,411205,112570 +) +k1,7458:31966991,32535781:0 +) +(1,7459:7246811,33377269:24720180,513147,134348 +g1,7458:10380742,33377269 +g1,7458:11327737,33377269 +g1,7458:13910510,33377269 +g1,7458:14795901,33377269 +g1,7458:16014215,33377269 +g1,7458:17952770,33377269 +g1,7458:18811291,33377269 +g1,7458:20029605,33377269 +g1,7458:23631463,33377269 +k1,7459:31966991,33377269:5706224 +g1,7459:31966991,33377269 +) +v1,7461:7246811,34495914:0,393216,0 +(1,7466:7246811,35458314:24720180,1355616,196608 +g1,7466:7246811,35458314 +g1,7466:7246811,35458314 +g1,7466:7050203,35458314 +(1,7466:7050203,35458314:0,1355616,196608 +r1,7482:32163599,35458314:25113396,1552224,196608 +k1,7466:7050203,35458314:-25113396 +) +(1,7466:7050203,35458314:25113396,1355616,196608 +[1,7466:7246811,35458314:24720180,1159008,0 +(1,7463:7246811,34709824:24720180,410518,82312 +(1,7462:7246811,34709824:0,0,0 +g1,7462:7246811,34709824 +g1,7462:7246811,34709824 +g1,7462:6919131,34709824 +(1,7462:6919131,34709824:0,0,0 +) +g1,7462:7246811,34709824 +) +k1,7463:7246811,34709824:0 +g1,7463:10724414,34709824 +g1,7463:12305143,34709824 +h1,7463:13885871,34709824:0,0,0 +k1,7463:31966991,34709824:18081120 +g1,7463:31966991,34709824 +) +(1,7464:7246811,35376002:24720180,410518,82312 +h1,7464:7246811,35376002:0,0,0 +g1,7464:10724414,35376002 +g1,7464:12621289,35376002 +h1,7464:13885872,35376002:0,0,0 +k1,7464:31966992,35376002:18081120 +g1,7464:31966992,35376002 +) +] +) +g1,7466:31966991,35458314 +g1,7466:7246811,35458314 +g1,7466:7246811,35458314 +g1,7466:31966991,35458314 +g1,7466:31966991,35458314 +) +h1,7466:7246811,35654922:0,0,0 +(1,7470:7246811,36948876:24720180,513147,134348 +h1,7469:7246811,36948876:983040,0,0 +k1,7469:9363147,36948876:179747 +k1,7469:10647177,36948876:179748 +k1,7469:11919409,36948876:179747 +k1,7469:14861499,36948876:179747 +k1,7469:17314035,36948876:179747 +k1,7469:18145211,36948876:179748 +k1,7469:20540075,36948876:179747 +k1,7469:21738907,36948876:179747 +k1,7469:23853932,36948876:179747 +k1,7469:26195057,36948876:179748 +k1,7469:30112322,36948876:179747 +k1,7469:31966991,36948876:0 +) +(1,7470:7246811,37790364:24720180,513147,138281 +k1,7469:8402226,37790364:346045 +$1,7469:8402226,37790364 +$1,7469:8870153,37790364 +k1,7469:11439834,37790364:346044 +k1,7469:12468764,37790364:346045 +k1,7469:16621795,37790364:346045 +k1,7469:19240628,37790364:346044 +k1,7469:21123492,37790364:346045 +k1,7469:22917883,37790364:346045 +k1,7469:24419835,37790364:345897 +k1,7469:27654051,37790364:346044 +k1,7469:29202682,37790364:346045 +k1,7470:31966991,37790364:0 +) +(1,7470:7246811,38631852:24720180,513147,126483 +k1,7469:8756911,38631852:242634 +k1,7469:12354987,38631852:242633 +k1,7469:13789066,38631852:242634 +k1,7469:15099238,38631852:242590 +k1,7469:18614740,38631852:242634 +k1,7469:22676156,38631852:242633 +k1,7469:26067140,38631852:242634 +k1,7469:26877970,38631852:242633 +k1,7469:28504069,38631852:242634 +k1,7469:31966991,38631852:0 +) +(1,7470:7246811,39473340:24720180,505283,134348 +k1,7469:10207334,39473340:194904 +k1,7469:13635784,39473340:194904 +k1,7469:15115194,39473340:194904 +k1,7469:17992487,39473340:194904 +k1,7469:19206476,39473340:194904 +k1,7469:22234501,39473340:194904 +k1,7469:26036507,39473340:194904 +k1,7469:28086080,39473340:194904 +k1,7469:29090354,39473340:194904 +k1,7469:30304343,39473340:194904 +k1,7470:31966991,39473340:0 +) +(1,7470:7246811,40314828:24720180,513147,126483 +k1,7469:8545258,40314828:262323 +k1,7469:9466873,40314828:262323 +k1,7469:13340230,40314828:262323 +k1,7469:14218591,40314828:262323 +k1,7469:15499999,40314828:262323 +k1,7469:17474778,40314828:262323 +k1,7469:19898478,40314828:262323 +k1,7469:20788636,40314828:262323 +k1,7469:22070044,40314828:262323 +k1,7469:23699448,40314828:262323 +k1,7469:24621063,40314828:262323 +k1,7469:26039378,40314828:262260 +k1,7469:27493146,40314828:262323 +k1,7469:28996721,40314828:262323 +k1,7469:29614904,40314828:262323 +k1,7469:31966991,40314828:0 +) +(1,7470:7246811,41156316:24720180,505283,134348 +k1,7469:9098404,41156316:171250 +k1,7469:9801152,41156316:171251 +k1,7469:12043340,41156316:171250 +k1,7469:13406036,41156316:171251 +k1,7469:15587931,41156316:171250 +k1,7469:18537908,41156316:171250 +k1,7469:19813441,41156316:171251 +k1,7469:20732457,41156316:171250 +k1,7469:22759687,41156316:171250 +k1,7469:25440312,41156316:171251 +k1,7469:26294447,41156316:171250 +k1,7469:29294232,41156316:171251 +k1,7469:30081520,41156316:171250 +k1,7469:31966991,41156316:0 +) +(1,7470:7246811,41997804:24720180,513147,134348 +k1,7469:8845794,41997804:231902 +k1,7469:10727892,41997804:231901 +k1,7469:13614657,41997804:231902 +k1,7469:14378055,41997804:231901 +k1,7469:16680895,41997804:231902 +k1,7469:19982502,41997804:231901 +k1,7469:21162055,41997804:231902 +k1,7469:22860652,41997804:231901 +k1,7469:24160103,41997804:231869 +k1,7469:25583449,41997804:231901 +k1,7469:26971373,41997804:231869 +k1,7469:28194835,41997804:231902 +k1,7469:31205463,41997804:231901 +k1,7470:31966991,41997804:0 +) +(1,7470:7246811,42839292:24720180,505283,126483 +(1,7469:7246811,42839292:0,452978,115847 +r1,7482:9715348,42839292:2468537,568825,115847 +k1,7469:7246811,42839292:-2468537 +) +(1,7469:7246811,42839292:2468537,452978,115847 +k1,7469:7246811,42839292:3277 +h1,7469:9712071,42839292:0,411205,112570 +) +g1,7469:10088247,42839292 +g1,7469:11478921,42839292 +g1,7469:12487520,42839292 +g1,7469:14195388,42839292 +g1,7469:15724998,42839292 +g1,7469:16685755,42839292 +(1,7469:16685755,42839292:0,452978,115847 +r1,7482:18450868,42839292:1765113,568825,115847 +k1,7469:16685755,42839292:-1765113 +) +(1,7469:16685755,42839292:1765113,452978,115847 +k1,7469:16685755,42839292:3277 +h1,7469:18447591,42839292:0,411205,112570 +) +g1,7469:18650097,42839292 +g1,7469:20040771,42839292 +(1,7469:20040771,42839292:0,452978,115847 +r1,7482:21805884,42839292:1765113,568825,115847 +k1,7469:20040771,42839292:-1765113 +) +(1,7469:20040771,42839292:1765113,452978,115847 +k1,7469:20040771,42839292:3277 +h1,7469:21802607,42839292:0,411205,112570 +) +k1,7470:31966991,42839292:10161107 +g1,7470:31966991,42839292 +) +v1,7472:7246811,43957937:0,393216,0 +(1,7477:7246811,44920337:24720180,1355616,196608 +g1,7477:7246811,44920337 +g1,7477:7246811,44920337 +g1,7477:7050203,44920337 +(1,7477:7050203,44920337:0,1355616,196608 +r1,7482:32163599,44920337:25113396,1552224,196608 +k1,7477:7050203,44920337:-25113396 +) +(1,7477:7050203,44920337:25113396,1355616,196608 +[1,7477:7246811,44920337:24720180,1159008,0 +(1,7474:7246811,44171847:24720180,410518,82312 +(1,7473:7246811,44171847:0,0,0 +g1,7473:7246811,44171847 +g1,7473:7246811,44171847 +g1,7473:6919131,44171847 +(1,7473:6919131,44171847:0,0,0 +) +g1,7473:7246811,44171847 +) +k1,7474:7246811,44171847:0 +g1,7474:10092123,44171847 +g1,7474:11672852,44171847 +g1,7474:13253581,44171847 +h1,7474:14834309,44171847:0,0,0 +k1,7474:31966991,44171847:17132682 +g1,7474:31966991,44171847 +) +(1,7475:7246811,44838025:24720180,410518,82312 +h1,7475:7246811,44838025:0,0,0 +g1,7475:10092123,44838025 +g1,7475:11672852,44838025 +g1,7475:13253581,44838025 +h1,7475:14834309,44838025:0,0,0 +k1,7475:31966991,44838025:17132682 +g1,7475:31966991,44838025 +) +] ) -g1,7472:31966991,44920337 -g1,7472:7246811,44920337 -g1,7472:7246811,44920337 -g1,7472:31966991,44920337 -g1,7472:31966991,44920337 +g1,7477:31966991,44920337 +g1,7477:7246811,44920337 +g1,7477:7246811,44920337 +g1,7477:31966991,44920337 +g1,7477:31966991,44920337 ) -h1,7472:7246811,45116945:0,0,0 +h1,7477:7246811,45116945:0,0,0 ] ) ] -r1,7477:32583029,45706769:26214,37822126,0 +r1,7482:32583029,45706769:26214,37822126,0 ) ] ) ) -g1,7477:32583029,45116945 +g1,7482:32583029,45116945 ) ] -(1,7477:32583029,45706769:0,0,0 -g1,7477:32583029,45706769 +(1,7482:32583029,45706769:0,0,0 +g1,7482:32583029,45706769 ) ) ] -(1,7477:6630773,47279633:25952256,0,0 -h1,7477:6630773,47279633:25952256,0,0 +(1,7482:6630773,47279633:25952256,0,0 +h1,7482:6630773,47279633:25952256,0,0 ) ] -h1,7477:4262630,4025873:0,0,0 +h1,7482:4262630,4025873:0,0,0 ] -!25956 +!25949 }140 -Input:1043:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1044:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1045:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1046:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1047:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1048:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1049:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1050:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1051:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1052:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1053:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1054:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1055:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1056:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1057:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 +Input:1039:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1040:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1041:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1042:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1043:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1044:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1045:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1046:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1047:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1048:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1049:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1050:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1051:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1052:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1053:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 {141 -[1,7613:4262630,47279633:28320399,43253760,0 -(1,7613:4262630,4025873:0,0,0 -[1,7613:-473657,4025873:25952256,0,0 -(1,7613:-473657,-710414:25952256,0,0 -h1,7613:-473657,-710414:0,0,0 -(1,7613:-473657,-710414:0,0,0 -(1,7613:-473657,-710414:0,0,0 -g1,7613:-473657,-710414 -(1,7613:-473657,-710414:65781,0,65781 -g1,7613:-407876,-710414 -[1,7613:-407876,-644633:0,0,0 +[1,7618:4262630,47279633:28320399,43253760,0 +(1,7618:4262630,4025873:0,0,0 +[1,7618:-473657,4025873:25952256,0,0 +(1,7618:-473657,-710414:25952256,0,0 +h1,7618:-473657,-710414:0,0,0 +(1,7618:-473657,-710414:0,0,0 +(1,7618:-473657,-710414:0,0,0 +g1,7618:-473657,-710414 +(1,7618:-473657,-710414:65781,0,65781 +g1,7618:-407876,-710414 +[1,7618:-407876,-644633:0,0,0 ] ) -k1,7613:-473657,-710414:-65781 +k1,7618:-473657,-710414:-65781 ) ) -k1,7613:25478599,-710414:25952256 -g1,7613:25478599,-710414 +k1,7618:25478599,-710414:25952256 +g1,7618:25478599,-710414 ) ] ) -[1,7613:6630773,47279633:25952256,43253760,0 -[1,7613:6630773,4812305:25952256,786432,0 -(1,7613:6630773,4812305:25952256,505283,134348 -(1,7613:6630773,4812305:25952256,505283,134348 -g1,7613:3078558,4812305 -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,2439708:0,1703936,0 -k1,7613:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7613:2537886,2439708:1179648,16384,0 +[1,7618:6630773,47279633:25952256,43253760,0 +[1,7618:6630773,4812305:25952256,786432,0 +(1,7618:6630773,4812305:25952256,505283,134348 +(1,7618:6630773,4812305:25952256,505283,134348 +g1,7618:3078558,4812305 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,2439708:0,1703936,0 +k1,7618:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7618:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7613:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7618:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,2439708:0,1703936,0 -g1,7613:29030814,2439708 -g1,7613:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7613:36151628,1915420:16384,1179648,0 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,2439708:0,1703936,0 +g1,7618:29030814,2439708 +g1,7618:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7618:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7613:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7618:37855564,2439708:1179648,16384,0 ) ) -k1,7613:3078556,2439708:-34777008 +k1,7618:3078556,2439708:-34777008 ) ] -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,49800853:0,16384,2228224 -k1,7613:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7613:2537886,49800853:1179648,16384,0 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,49800853:0,16384,2228224 +k1,7618:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7618:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7613:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,49800853:0,16384,2228224 -g1,7613:29030814,49800853 -g1,7613:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7613:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7613:37855564,49800853:1179648,16384,0 -) -) -k1,7613:3078556,49800853:-34777008 -) -] -g1,7613:6630773,4812305 -k1,7613:24573876,4812305:16747726 -g1,7613:25960617,4812305 -g1,7613:26609423,4812305 -g1,7613:29923578,4812305 -) -) -] -[1,7613:6630773,45706769:25952256,40108032,0 -(1,7613:6630773,45706769:25952256,40108032,0 -(1,7613:6630773,45706769:0,0,0 -g1,7613:6630773,45706769 -) -[1,7613:6630773,45706769:25952256,40108032,0 -v1,7477:6630773,6254097:0,393216,0 -(1,7477:6630773,11289911:25952256,5429030,616038 -g1,7477:6630773,11289911 -(1,7477:6630773,11289911:25952256,5429030,616038 -(1,7477:6630773,11905949:25952256,6045068,0 -[1,7477:6630773,11905949:25952256,6045068,0 -(1,7477:6630773,11879735:25952256,6018854,0 -r1,7477:6656987,11879735:26214,6018854,0 -[1,7477:6656987,11879735:25899828,6018854,0 -(1,7477:6656987,11289911:25899828,4839206,0 -[1,7477:7246811,11289911:24720180,4839206,0 -(1,7476:7246811,6955988:24720180,505283,126483 -h1,7475:7246811,6955988:983040,0,0 -k1,7475:10049437,6955988:214609 -k1,7475:11434518,6955988:214608 -k1,7475:13124342,6955988:214609 -k1,7475:14456994,6955988:214608 -k1,7475:15690688,6955988:214609 -k1,7475:17401483,6955988:214608 -k1,7475:18232130,6955988:214609 -k1,7475:19465823,6955988:214608 -k1,7475:21981401,6955988:214609 -k1,7475:24225004,6955988:214608 -k1,7475:25610086,6955988:214609 -k1,7475:26957156,6955988:214608 -k1,7475:27919531,6955988:214609 -k1,7475:29442893,6955988:214608 -k1,7475:30682485,6955988:214609 -k1,7475:31966991,6955988:0 -) -(1,7476:7246811,7797476:24720180,505283,134348 -k1,7475:9116452,7797476:172914 -k1,7475:10944150,7797476:172914 -k1,7475:13389853,7797476:172914 -k1,7475:14378036,7797476:172915 -k1,7475:15617221,7797476:172914 -k1,7475:19305486,7797476:172914 -k1,7475:21191511,7797476:172914 -k1,7475:22173795,7797476:172914 -k1,7475:24232180,7797476:172914 -k1,7475:24936592,7797476:172915 -k1,7475:26128591,7797476:172914 -k1,7475:28236783,7797476:172914 -k1,7475:30571074,7797476:172914 -k1,7475:31966991,7797476:0 -) -(1,7476:7246811,8638964:24720180,513147,138281 -k1,7475:8156029,8638964:293180 -k1,7475:9468294,8638964:293180 -k1,7475:11920230,8638964:293180 -$1,7475:11920230,8638964 -$1,7475:12388157,8638964 -k1,7475:14748343,8638964:293180 -k1,7475:16109010,8638964:293085 -k1,7475:17593635,8638964:293180 -k1,7475:19042776,8638964:293086 -k1,7475:22555739,8638964:293179 -k1,7475:23796570,8638964:293180 -k1,7475:25108835,8638964:293180 -k1,7475:28164358,8638964:293180 -k1,7475:30775546,8638964:293180 -k1,7475:31966991,8638964:0 -) -(1,7476:7246811,9480452:24720180,513147,126483 -k1,7475:10308704,9480452:197314 -k1,7475:12391489,9480452:197314 -k1,7475:14576509,9480452:197313 -k1,7475:15305320,9480452:197314 -k1,7475:17931398,9480452:197314 -k1,7475:18890240,9480452:197314 -k1,7475:20539175,9480452:197313 -k1,7475:21395781,9480452:197314 -k1,7475:22612180,9480452:197314 -k1,7475:24464278,9480452:197314 -k1,7475:27108050,9480452:197313 -k1,7475:27933199,9480452:197314 -k1,7475:30796518,9480452:197314 -k1,7475:31966991,9480452:0 -) -(1,7476:7246811,10321940:24720180,513147,126483 -k1,7475:8559735,10321940:180462 -k1,7475:10688583,10321940:180463 -k1,7475:12153551,10321940:180462 -k1,7475:13353098,10321940:180462 -k1,7475:14705999,10321940:180462 -k1,7475:17648805,10321940:180463 -k1,7475:21970487,10321940:180462 -k1,7475:22810241,10321940:180462 -k1,7475:24009788,10321940:180462 -k1,7475:27221946,10321940:180463 -k1,7475:30975431,10321940:180462 -k1,7475:31966991,10321940:0 -) -(1,7476:7246811,11163428:24720180,505283,126483 -k1,7476:31966990,11163428:21241528 -g1,7476:31966990,11163428 -) -] -) -] -r1,7477:32583029,11879735:26214,6018854,0 -) -] -) -) -g1,7477:32583029,11289911 -) -h1,7477:6630773,11905949:0,0,0 -(1,7480:6630773,13271725:25952256,513147,134348 -h1,7479:6630773,13271725:983040,0,0 -k1,7479:11164094,13271725:191561 -k1,7479:14140281,13271725:191562 -k1,7479:15611760,13271725:191561 -k1,7479:17197928,13271725:191562 -k1,7479:19420450,13271725:191561 -k1,7479:20263440,13271725:191562 -k1,7479:23217344,13271725:191561 -k1,7479:27336479,13271725:191562 -k1,7479:28187332,13271725:191561 -k1,7479:30091350,13271725:191562 -k1,7480:32583029,13271725:0 -) -(1,7480:6630773,14113213:25952256,505283,115847 -(1,7479:6630773,14113213:0,452978,115847 -r1,7479:8747598,14113213:2116825,568825,115847 -k1,7479:6630773,14113213:-2116825 -) -(1,7479:6630773,14113213:2116825,452978,115847 -k1,7479:6630773,14113213:3277 -h1,7479:8744321,14113213:0,411205,112570 -) -k1,7479:8913083,14113213:165485 -k1,7479:11419513,14113213:165484 -k1,7479:12604083,14113213:165485 -k1,7479:19019080,14113213:165484 -k1,7479:21445557,14113213:165485 -(1,7479:21445557,14113213:0,459977,115847 -r1,7479:23562382,14113213:2116825,575824,115847 -k1,7479:21445557,14113213:-2116825 -) -(1,7479:21445557,14113213:2116825,459977,115847 -k1,7479:21445557,14113213:3277 -h1,7479:23559105,14113213:0,411205,112570 -) -k1,7479:23727866,14113213:165484 -k1,7479:25084796,14113213:165485 -k1,7479:26038678,14113213:165484 -k1,7479:27652509,14113213:165485 -(1,7479:27652509,14113213:0,459977,115847 -r1,7479:32583029,14113213:4930520,575824,115847 -k1,7479:27652509,14113213:-4930520 -) -(1,7479:27652509,14113213:4930520,459977,115847 -k1,7479:27652509,14113213:3277 -h1,7479:32579752,14113213:0,411205,112570 -) -k1,7479:32583029,14113213:0 -) -(1,7480:6630773,14954701:25952256,513147,115847 -k1,7479:9021088,14954701:379670 -k1,7479:10419843,14954701:379670 -k1,7479:13845627,14954701:379671 -k1,7479:15172948,14954701:379670 -k1,7479:16571703,14954701:379670 -k1,7479:18663829,14954701:379670 -k1,7479:21031206,14954701:379670 -k1,7479:25195581,14954701:379671 -(1,7479:25195581,14954701:0,459977,115847 -r1,7479:28015830,14954701:2820249,575824,115847 -k1,7479:25195581,14954701:-2820249 -) -(1,7479:25195581,14954701:2820249,459977,115847 -k1,7479:25195581,14954701:3277 -h1,7479:28012553,14954701:0,411205,112570 -) -k1,7479:28395500,14954701:379670 -k1,7479:29966615,14954701:379670 -k1,7479:31134683,14954701:379670 -k1,7480:32583029,14954701:0 -) -(1,7480:6630773,15796189:25952256,513147,115847 -(1,7479:6630773,15796189:0,459977,115847 -r1,7479:11913004,15796189:5282231,575824,115847 -k1,7479:6630773,15796189:-5282231 -) -(1,7479:6630773,15796189:5282231,459977,115847 -k1,7479:6630773,15796189:3277 -h1,7479:11909727,15796189:0,411205,112570 -) -k1,7479:12171668,15796189:258664 -k1,7479:14634308,15796189:258664 -k1,7479:15912056,15796189:258663 -k1,7479:17883176,15796189:258664 -k1,7479:20326155,15796189:258664 -k1,7479:21776264,15796189:258664 -(1,7479:21776264,15796189:0,452978,115847 -r1,7479:24244801,15796189:2468537,568825,115847 -k1,7479:21776264,15796189:-2468537 -) -(1,7479:21776264,15796189:2468537,452978,115847 -k1,7479:21776264,15796189:3277 -h1,7479:24241524,15796189:0,411205,112570 -) -k1,7479:24503465,15796189:258664 -k1,7479:25953573,15796189:258663 -k1,7479:27000635,15796189:258664 -k1,7479:28707645,15796189:258664 -(1,7479:28707645,15796189:0,452978,115847 -r1,7479:32583029,15796189:3875384,568825,115847 -k1,7479:28707645,15796189:-3875384 -) -(1,7479:28707645,15796189:3875384,452978,115847 -k1,7479:28707645,15796189:3277 -h1,7479:32579752,15796189:0,411205,112570 -) -k1,7479:32583029,15796189:0 -) -(1,7480:6630773,16637677:25952256,505283,134348 -g1,7479:7849087,16637677 -g1,7479:12671881,16637677 -g1,7479:15765180,16637677 -g1,7479:16854388,16637677 -k1,7480:32583029,16637677:12067800 -g1,7480:32583029,16637677 -) -v1,7482:6630773,18003453:0,393216,0 -(1,7483:6630773,21123108:25952256,3512871,616038 -g1,7483:6630773,21123108 -(1,7483:6630773,21123108:25952256,3512871,616038 -(1,7483:6630773,21739146:25952256,4128909,0 -[1,7483:6630773,21739146:25952256,4128909,0 -(1,7483:6630773,21712932:25952256,4076481,0 -r1,7483:6656987,21712932:26214,4076481,0 -[1,7483:6656987,21712932:25899828,4076481,0 -(1,7483:6656987,21123108:25899828,2896833,0 -[1,7483:7246811,21123108:24720180,2896833,0 -(1,7483:7246811,19313649:24720180,1087374,126483 -k1,7482:8670629,19313649:214115 -k1,7482:12409926,19313649:214115 -k1,7482:15230408,19313649:214115 -k1,7482:16838474,19313649:214115 -k1,7482:18749317,19313649:214116 -k1,7482:22177973,19313649:214115 -k1,7482:23583533,19313649:214115 -k1,7482:26788056,19313649:214115 -k1,7482:29786796,19313649:214115 -k1,7482:30762439,19313649:214115 -k1,7483:31966991,19313649:0 -) -(1,7483:7246811,20155137:24720180,513147,134348 -k1,7482:8885429,20155137:227628 -k1,7482:10621696,20155137:227628 -k1,7482:15675395,20155137:227628 -k1,7482:17094468,20155137:227628 -k1,7482:18414581,20155137:227628 -k1,7482:20281264,20155137:227628 -k1,7482:21160319,20155137:227627 -k1,7482:23756418,20155137:227628 -(1,7482:23756418,20155137:0,459977,115847 -r1,7483:24818107,20155137:1061689,575824,115847 -k1,7482:23756418,20155137:-1061689 -) -(1,7482:23756418,20155137:1061689,459977,115847 -k1,7482:23756418,20155137:3277 -h1,7482:24814830,20155137:0,411205,112570 -) -k1,7482:25045735,20155137:227628 -k1,7482:26985819,20155137:227628 -k1,7482:29068771,20155137:227628 -k1,7482:29979284,20155137:227628 -k1,7482:31966991,20155137:0 -) -(1,7483:7246811,20996625:24720180,513147,126483 -g1,7482:8463814,20996625 -g1,7482:9314471,20996625 -g1,7482:11215670,20996625 -g1,7482:12804262,20996625 -g1,7482:13662783,20996625 -g1,7482:15320843,20996625 -k1,7483:31966991,20996625:14029295 -g1,7483:31966991,20996625 -) -] -) -] -r1,7483:32583029,21712932:26214,4076481,0 -) -] -) -) -g1,7483:32583029,21123108 -) -h1,7483:6630773,21739146:0,0,0 -v1,7486:6630773,23104922:0,393216,0 -(1,7613:6630773,43228376:25952256,20516670,589824 -g1,7613:6630773,43228376 -(1,7613:6630773,43228376:25952256,20516670,589824 -(1,7613:6630773,43818200:25952256,21106494,0 -[1,7613:6630773,43818200:25952256,21106494,0 -(1,7613:6630773,43818200:25952256,21080280,0 -r1,7613:6656987,43818200:26214,21080280,0 -[1,7613:6656987,43818200:25899828,21080280,0 -(1,7613:6656987,43228376:25899828,19900632,0 -[1,7613:7246811,43228376:24720180,19900632,0 -(1,7487:7246811,24489629:24720180,1161885,196608 -(1,7486:7246811,24489629:0,1161885,196608 -r1,7613:8794447,24489629:1547636,1358493,196608 -k1,7486:7246811,24489629:-1547636 -) -(1,7486:7246811,24489629:1547636,1161885,196608 -) -k1,7486:9010507,24489629:216060 -k1,7486:10423254,24489629:216060 -k1,7486:12929142,24489629:216060 -k1,7486:15923929,24489629:216060 -k1,7486:16901517,24489629:216060 -k1,7486:19105283,24489629:216059 -k1,7486:21255966,24489629:216060 -k1,7486:24497823,24489629:216060 -k1,7486:25705443,24489629:216060 -k1,7486:27873165,24489629:216060 -k1,7486:30775546,24489629:216060 -k1,7486:31966991,24489629:0 -) -(1,7487:7246811,25331117:24720180,513147,134348 -k1,7486:9819049,25331117:200490 -k1,7486:11038623,25331117:200489 -k1,7486:12328977,25331117:200490 -k1,7486:16510124,25331117:200490 -k1,7486:19691190,25331117:200489 -k1,7486:20910765,25331117:200490 -k1,7486:22500618,25331117:200490 -k1,7486:23352536,25331117:200490 -k1,7486:25438496,25331117:200489 -k1,7486:26658071,25331117:200490 -k1,7486:28846268,25331117:200490 -k1,7486:30253930,25331117:200489 -k1,7486:31141893,25331117:200490 -k1,7486:31966991,25331117:0 -) -(1,7487:7246811,26172605:24720180,513147,134348 -k1,7486:8678355,26172605:234857 -k1,7486:11675555,26172605:234857 -k1,7486:14936209,26172605:234857 -k1,7486:18261089,26172605:234857 -k1,7486:20524941,26172605:234857 -k1,7486:22615779,26172605:234858 -k1,7486:25054612,26172605:234857 -k1,7486:26941632,26172605:234857 -k1,7486:27835781,26172605:234857 -k1,7486:29089723,26172605:234857 -k1,7486:31284106,26172605:234857 -k1,7486:31966991,26172605:0 -) -(1,7487:7246811,27014093:24720180,513147,134348 -k1,7486:8281493,27014093:219414 -k1,7486:11727901,27014093:219415 -k1,7486:15749058,27014093:219414 -k1,7486:17159917,27014093:219414 -k1,7486:20806865,27014093:219415 -k1,7486:22880948,27014093:219414 -k1,7486:23909732,27014093:219414 -k1,7486:25941872,27014093:219414 -k1,7486:27993674,27014093:219415 -k1,7486:29204648,27014093:219414 -k1,7486:31966991,27014093:0 -) -(1,7487:7246811,27855581:24720180,513147,134348 -k1,7486:12230347,27855581:244628 -k1,7486:13134267,27855581:244628 -k1,7486:15075622,27855581:244628 -k1,7486:18104875,27855581:244628 -k1,7486:20234974,27855581:244628 -k1,7486:21471162,27855581:244628 -k1,7486:23583566,27855581:244628 -k1,7486:27190191,27855581:244628 -k1,7486:28244189,27855581:244628 -k1,7486:29507902,27855581:244628 -k1,7486:31307699,27855581:244628 -k1,7486:31966991,27855581:0 -) -(1,7487:7246811,28697069:24720180,513147,134348 -g1,7486:8465125,28697069 -g1,7486:11552526,28697069 -g1,7486:13884952,28697069 -g1,7486:15341162,28697069 -g1,7486:17819078,28697069 -h1,7486:18789666,28697069:0,0,0 -g1,7486:18988895,28697069 -g1,7486:19997494,28697069 -g1,7486:21694876,28697069 -h1,7486:22890253,28697069:0,0,0 -k1,7487:31966991,28697069:8695974 -g1,7487:31966991,28697069 -) -v1,7489:7246811,29887535:0,393216,0 -(1,7496:7246811,30909180:24720180,1414861,196608 -g1,7496:7246811,30909180 -g1,7496:7246811,30909180 -g1,7496:7050203,30909180 -(1,7496:7050203,30909180:0,1414861,196608 -r1,7613:32163599,30909180:25113396,1611469,196608 -k1,7496:7050203,30909180:-25113396 -) -(1,7496:7050203,30909180:25113396,1414861,196608 -[1,7496:7246811,30909180:24720180,1218253,0 -(1,7491:7246811,30101445:24720180,410518,76021 -(1,7490:7246811,30101445:0,0,0 -g1,7490:7246811,30101445 -g1,7490:7246811,30101445 -g1,7490:6919131,30101445 -(1,7490:6919131,30101445:0,0,0 -) -g1,7490:7246811,30101445 -) -k1,7491:7246811,30101445:0 -h1,7491:10408267,30101445:0,0,0 -k1,7491:31966991,30101445:21558724 -g1,7491:31966991,30101445 -) -(1,7495:7246811,30833159:24720180,404226,76021 -(1,7493:7246811,30833159:0,0,0 -g1,7493:7246811,30833159 -g1,7493:7246811,30833159 -g1,7493:6919131,30833159 -(1,7493:6919131,30833159:0,0,0 -) -g1,7493:7246811,30833159 -) -g1,7495:8195248,30833159 -g1,7495:9459831,30833159 -h1,7495:10724414,30833159:0,0,0 -k1,7495:31966990,30833159:21242576 -g1,7495:31966990,30833159 -) -] -) -g1,7496:31966991,30909180 -g1,7496:7246811,30909180 -g1,7496:7246811,30909180 -g1,7496:31966991,30909180 -g1,7496:31966991,30909180 -) -h1,7496:7246811,31105788:0,0,0 -(1,7500:7246811,32471564:24720180,513147,134348 -h1,7499:7246811,32471564:983040,0,0 -k1,7499:9362492,32471564:179092 -k1,7499:11387733,32471564:179092 -k1,7499:13097091,32471564:179092 -k1,7499:13927611,32471564:179092 -k1,7499:17039439,32471564:179092 -k1,7499:19587002,32471564:179092 -k1,7499:20785179,32471564:179092 -k1,7499:23895696,32471564:179092 -k1,7499:24734080,32471564:179092 -k1,7499:26609899,32471564:179092 -k1,7499:29677163,32471564:179092 -k1,7499:31966991,32471564:0 -) -(1,7500:7246811,33313052:24720180,513147,134348 -k1,7499:9123049,33313052:178200 -k1,7499:11036643,33313052:178201 -k1,7499:11629665,33313052:178179 -k1,7499:15908453,33313052:178200 -k1,7499:16714488,33313052:178200 -k1,7499:19697630,33313052:178201 -k1,7499:21573868,33313052:178200 -k1,7499:24732645,33313052:178200 -k1,7499:26898552,33313052:178200 -k1,7499:29011376,33313052:178201 -k1,7499:29805614,33313052:178200 -k1,7499:31966991,33313052:0 -) -(1,7500:7246811,34154540:24720180,513147,134348 -k1,7499:8175694,34154540:245998 -k1,7499:11001845,34154540:245999 -k1,7499:12917700,34154540:245998 -k1,7499:14182783,34154540:245998 -k1,7499:15959048,34154540:245999 -k1,7499:16856474,34154540:245998 -k1,7499:20221331,34154540:245999 -k1,7499:22671305,34154540:245998 -k1,7499:25314610,34154540:245998 -k1,7499:28514317,34154540:245999 -k1,7499:30327936,34154540:245998 -k1,7499:31966991,34154540:0 -) -(1,7500:7246811,34996028:24720180,513147,134348 -k1,7499:10170030,34996028:218548 -k1,7499:12038774,34996028:218547 -k1,7499:15735973,34996028:218548 -k1,7499:16772409,34996028:218547 -k1,7499:18384908,34996028:218548 -k1,7499:19735263,34996028:218548 -k1,7499:21655780,34996028:218547 -k1,7499:22289151,34996028:218528 -k1,7499:24467225,34996028:218548 -k1,7499:25554125,34996028:218548 -k1,7499:26876954,34996028:218547 -k1,7499:28187987,34996028:218548 -(1,7499:28187987,34996028:0,452978,115847 -r1,7613:29953100,34996028:1765113,568825,115847 -k1,7499:28187987,34996028:-1765113 -) -(1,7499:28187987,34996028:1765113,452978,115847 -k1,7499:28187987,34996028:3277 -h1,7499:29949823,34996028:0,411205,112570 -) -k1,7499:30171647,34996028:218547 -k1,7499:31041623,34996028:218548 -k1,7500:31966991,34996028:0 -) -(1,7500:7246811,35837516:24720180,505283,126483 -g1,7499:9102135,35837516 -k1,7500:31966991,35837516:21052130 -g1,7500:31966991,35837516 -) -v1,7502:7246811,37027982:0,393216,0 -(1,7506:7246811,37324204:24720180,689438,196608 -g1,7506:7246811,37324204 -g1,7506:7246811,37324204 -g1,7506:7050203,37324204 -(1,7506:7050203,37324204:0,689438,196608 -r1,7613:32163599,37324204:25113396,886046,196608 -k1,7506:7050203,37324204:-25113396 -) -(1,7506:7050203,37324204:25113396,689438,196608 -[1,7506:7246811,37324204:24720180,492830,0 -(1,7504:7246811,37241892:24720180,410518,82312 -(1,7503:7246811,37241892:0,0,0 -g1,7503:7246811,37241892 -g1,7503:7246811,37241892 -g1,7503:6919131,37241892 -(1,7503:6919131,37241892:0,0,0 -) -g1,7503:7246811,37241892 -) -k1,7504:7246811,37241892:0 -g1,7504:10092123,37241892 -g1,7504:13253580,37241892 -g1,7504:13885872,37241892 -g1,7504:14834310,37241892 -g1,7504:15466602,37241892 -g1,7504:16731185,37241892 -k1,7504:16731185,37241892:39846 -h1,7504:19616342,37241892:0,0,0 -k1,7504:31966991,37241892:12350649 -g1,7504:31966991,37241892 -) -] -) -g1,7506:31966991,37324204 -g1,7506:7246811,37324204 -g1,7506:7246811,37324204 -g1,7506:31966991,37324204 -g1,7506:31966991,37324204 -) -h1,7506:7246811,37520812:0,0,0 -(1,7510:7246811,38886588:24720180,513147,126483 -h1,7509:7246811,38886588:983040,0,0 -k1,7509:9459265,38886588:275865 -k1,7509:13040112,38886588:275866 -k1,7509:14691578,38886588:275865 -k1,7509:16354186,38886588:275866 -k1,7509:17242813,38886588:275865 -k1,7509:18537764,38886588:275866 -k1,7509:20972385,38886588:275865 -k1,7509:21915407,38886588:275866 -(1,7509:21915407,38886588:0,452978,115847 -r1,7613:24383944,38886588:2468537,568825,115847 -k1,7509:21915407,38886588:-2468537 -) -(1,7509:21915407,38886588:2468537,452978,115847 -k1,7509:21915407,38886588:3277 -h1,7509:24380667,38886588:0,411205,112570 -) -k1,7509:24659809,38886588:275865 -k1,7509:25621837,38886588:275866 -k1,7509:28903838,38886588:275865 -k1,7509:31966991,38886588:0 -) -(1,7510:7246811,39728076:24720180,505283,134348 -k1,7509:8182376,39728076:174037 -(1,7509:8182376,39728076:0,452978,115847 -r1,7613:10650913,39728076:2468537,568825,115847 -k1,7509:8182376,39728076:-2468537 -) -(1,7509:8182376,39728076:2468537,452978,115847 -k1,7509:8182376,39728076:3277 -h1,7509:10647636,39728076:0,411205,112570 -) -k1,7509:10998620,39728076:174037 -k1,7509:14107359,39728076:174037 -k1,7509:15748092,39728076:174037 -(1,7509:15748092,39728076:0,452978,115847 -r1,7613:18216629,39728076:2468537,568825,115847 -k1,7509:15748092,39728076:-2468537 -) -(1,7509:15748092,39728076:2468537,452978,115847 -k1,7509:15748092,39728076:3277 -h1,7509:18213352,39728076:0,411205,112570 -) -k1,7509:18390666,39728076:174037 -k1,7509:19756149,39728076:174038 -(1,7509:19756149,39728076:0,452978,115847 -r1,7613:22928109,39728076:3171960,568825,115847 -k1,7509:19756149,39728076:-3171960 -) -(1,7509:19756149,39728076:3171960,452978,115847 -k1,7509:19756149,39728076:3277 -h1,7509:22924832,39728076:0,411205,112570 -) -k1,7509:23102146,39728076:174037 -k1,7509:25286828,39728076:174037 -k1,7509:28147186,39728076:174037 -k1,7509:30611051,39728076:174037 -k1,7510:31966991,39728076:0 -) -(1,7510:7246811,40569564:24720180,505283,134348 -k1,7509:9711444,40569564:245584 -k1,7509:12910736,40569564:245584 -k1,7509:14550270,40569564:245583 -k1,7509:16185217,40569564:245584 -k1,7509:17497072,40569564:245584 -k1,7509:20805809,40569564:245584 -k1,7509:21812921,40569564:245584 -k1,7509:23077589,40569564:245583 -k1,7509:26294575,40569564:245584 -(1,7509:26294575,40569564:0,452978,115847 -r1,7613:28763112,40569564:2468537,568825,115847 -k1,7509:26294575,40569564:-2468537 -) -(1,7509:26294575,40569564:2468537,452978,115847 -k1,7509:26294575,40569564:3277 -h1,7509:28759835,40569564:0,411205,112570 -) -k1,7509:29008696,40569564:245584 -k1,7509:31966991,40569564:0 -) -(1,7510:7246811,41411052:24720180,513147,134348 -k1,7509:12127604,41411052:169410 -k1,7509:13500256,41411052:169411 -k1,7509:14201163,41411052:169410 -k1,7509:17675555,41411052:169411 -k1,7509:19995857,41411052:169410 -k1,7509:21863305,41411052:169410 -k1,7509:22901068,41411052:169411 -k1,7509:24619094,41411052:169410 -k1,7509:25439933,41411052:169411 -k1,7509:27465323,41411052:169410 -k1,7509:29929805,41411052:169411 -k1,7509:31118300,41411052:169410 -k1,7510:31966991,41411052:0 -) -(1,7510:7246811,42252540:24720180,513147,126483 -k1,7509:8988009,42252540:203723 -k1,7509:9807771,42252540:203724 -k1,7509:10367354,42252540:203723 -k1,7509:13333420,42252540:203723 -k1,7509:15891197,42252540:203724 -k1,7509:16777805,42252540:203723 -k1,7509:19185505,42252540:203724 -k1,7509:21041391,42252540:203723 -k1,7509:21904406,42252540:203723 -k1,7509:23747185,42252540:203724 -k1,7509:24898559,42252540:203723 -k1,7509:26194767,42252540:203723 -k1,7509:27014529,42252540:203724 -k1,7509:30445245,42252540:203723 -k1,7509:31966991,42252540:0 -) -(1,7510:7246811,43094028:24720180,505283,134348 -g1,7509:8128925,43094028 -g1,7509:12896013,43094028 -g1,7509:14700219,43094028 -g1,7509:16601418,43094028 -g1,7509:17668999,43094028 -g1,7509:18960713,43094028 -(1,7509:18960713,43094028:0,452978,115847 -r1,7613:20725826,43094028:1765113,568825,115847 -k1,7509:18960713,43094028:-1765113 -) -(1,7509:18960713,43094028:1765113,452978,115847 -k1,7509:18960713,43094028:3277 -h1,7509:20722549,43094028:0,411205,112570 -) -g1,7509:20925055,43094028 -g1,7509:21775712,43094028 -g1,7509:23361683,43094028 -g1,7509:24173674,43094028 -g1,7509:25391988,43094028 -k1,7510:31966991,43094028:3469907 -g1,7510:31966991,43094028 -) -] -) -] -r1,7613:32583029,43818200:26214,21080280,0 -) -] -) -) -g1,7613:32583029,43228376 -) -] -(1,7613:32583029,45706769:0,0,0 -g1,7613:32583029,45706769 -) -) -] -(1,7613:6630773,47279633:25952256,0,0 -h1,7613:6630773,47279633:25952256,0,0 -) -] -h1,7613:4262630,4025873:0,0,0 -] -!24389 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7618:3078558,51504789:16384,1179648,0 +) +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] +) +) +) +] +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,49800853:0,16384,2228224 +g1,7618:29030814,49800853 +g1,7618:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7618:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7618:37855564,49800853:1179648,16384,0 +) +) +k1,7618:3078556,49800853:-34777008 +) +] +g1,7618:6630773,4812305 +k1,7618:24502442,4812305:16676292 +g1,7618:25889183,4812305 +g1,7618:26537989,4812305 +g1,7618:29852144,4812305 +) +) +] +[1,7618:6630773,45706769:25952256,40108032,0 +(1,7618:6630773,45706769:25952256,40108032,0 +(1,7618:6630773,45706769:0,0,0 +g1,7618:6630773,45706769 +) +[1,7618:6630773,45706769:25952256,40108032,0 +v1,7482:6630773,6254097:0,393216,0 +(1,7482:6630773,11289911:25952256,5429030,616038 +g1,7482:6630773,11289911 +(1,7482:6630773,11289911:25952256,5429030,616038 +(1,7482:6630773,11905949:25952256,6045068,0 +[1,7482:6630773,11905949:25952256,6045068,0 +(1,7482:6630773,11879735:25952256,6018854,0 +r1,7482:6656987,11879735:26214,6018854,0 +[1,7482:6656987,11879735:25899828,6018854,0 +(1,7482:6656987,11289911:25899828,4839206,0 +[1,7482:7246811,11289911:24720180,4839206,0 +(1,7481:7246811,6955988:24720180,505283,126483 +h1,7480:7246811,6955988:983040,0,0 +k1,7480:10049437,6955988:214609 +k1,7480:11434518,6955988:214608 +k1,7480:13124342,6955988:214609 +k1,7480:14456994,6955988:214608 +k1,7480:15690688,6955988:214609 +k1,7480:17401483,6955988:214608 +k1,7480:18232130,6955988:214609 +k1,7480:19465823,6955988:214608 +k1,7480:21981401,6955988:214609 +k1,7480:24225004,6955988:214608 +k1,7480:25610086,6955988:214609 +k1,7480:26957156,6955988:214608 +k1,7480:27919531,6955988:214609 +k1,7480:29442893,6955988:214608 +k1,7480:30682485,6955988:214609 +k1,7480:31966991,6955988:0 +) +(1,7481:7246811,7797476:24720180,505283,134348 +k1,7480:9116452,7797476:172914 +k1,7480:10944150,7797476:172914 +k1,7480:13389853,7797476:172914 +k1,7480:14378036,7797476:172915 +k1,7480:15617221,7797476:172914 +k1,7480:19305486,7797476:172914 +k1,7480:21191511,7797476:172914 +k1,7480:22173795,7797476:172914 +k1,7480:24232180,7797476:172914 +k1,7480:24936592,7797476:172915 +k1,7480:26128591,7797476:172914 +k1,7480:28236783,7797476:172914 +k1,7480:30571074,7797476:172914 +k1,7480:31966991,7797476:0 +) +(1,7481:7246811,8638964:24720180,513147,138281 +k1,7480:8156029,8638964:293180 +k1,7480:9468294,8638964:293180 +k1,7480:11920230,8638964:293180 +$1,7480:11920230,8638964 +$1,7480:12388157,8638964 +k1,7480:14748343,8638964:293180 +k1,7480:16109010,8638964:293085 +k1,7480:17593635,8638964:293180 +k1,7480:19042776,8638964:293086 +k1,7480:22555739,8638964:293179 +k1,7480:23796570,8638964:293180 +k1,7480:25108835,8638964:293180 +k1,7480:28164358,8638964:293180 +k1,7480:30775546,8638964:293180 +k1,7480:31966991,8638964:0 +) +(1,7481:7246811,9480452:24720180,513147,126483 +k1,7480:10308704,9480452:197314 +k1,7480:12391489,9480452:197314 +k1,7480:14576509,9480452:197313 +k1,7480:15305320,9480452:197314 +k1,7480:17931398,9480452:197314 +k1,7480:18890240,9480452:197314 +k1,7480:20539175,9480452:197313 +k1,7480:21395781,9480452:197314 +k1,7480:22612180,9480452:197314 +k1,7480:24464278,9480452:197314 +k1,7480:27108050,9480452:197313 +k1,7480:27933199,9480452:197314 +k1,7480:30796518,9480452:197314 +k1,7480:31966991,9480452:0 +) +(1,7481:7246811,10321940:24720180,513147,126483 +k1,7480:8559735,10321940:180462 +k1,7480:10688583,10321940:180463 +k1,7480:12153551,10321940:180462 +k1,7480:13353098,10321940:180462 +k1,7480:14705999,10321940:180462 +k1,7480:17648805,10321940:180463 +k1,7480:21970487,10321940:180462 +k1,7480:22810241,10321940:180462 +k1,7480:24009788,10321940:180462 +k1,7480:27221946,10321940:180463 +k1,7480:30975431,10321940:180462 +k1,7480:31966991,10321940:0 +) +(1,7481:7246811,11163428:24720180,505283,126483 +k1,7481:31966990,11163428:21241528 +g1,7481:31966990,11163428 +) +] +) +] +r1,7482:32583029,11879735:26214,6018854,0 +) +] +) +) +g1,7482:32583029,11289911 +) +h1,7482:6630773,11905949:0,0,0 +(1,7485:6630773,13271725:25952256,513147,134348 +h1,7484:6630773,13271725:983040,0,0 +k1,7484:11164094,13271725:191561 +k1,7484:14140281,13271725:191562 +k1,7484:15611760,13271725:191561 +k1,7484:17197928,13271725:191562 +k1,7484:19420450,13271725:191561 +k1,7484:20263440,13271725:191562 +k1,7484:23217344,13271725:191561 +k1,7484:27336479,13271725:191562 +k1,7484:28187332,13271725:191561 +k1,7484:30091350,13271725:191562 +k1,7485:32583029,13271725:0 +) +(1,7485:6630773,14113213:25952256,505283,115847 +(1,7484:6630773,14113213:0,452978,115847 +r1,7484:8747598,14113213:2116825,568825,115847 +k1,7484:6630773,14113213:-2116825 +) +(1,7484:6630773,14113213:2116825,452978,115847 +k1,7484:6630773,14113213:3277 +h1,7484:8744321,14113213:0,411205,112570 +) +k1,7484:8913083,14113213:165485 +k1,7484:11419513,14113213:165484 +k1,7484:12604083,14113213:165485 +k1,7484:19019080,14113213:165484 +k1,7484:21445557,14113213:165485 +(1,7484:21445557,14113213:0,459977,115847 +r1,7484:23562382,14113213:2116825,575824,115847 +k1,7484:21445557,14113213:-2116825 +) +(1,7484:21445557,14113213:2116825,459977,115847 +k1,7484:21445557,14113213:3277 +h1,7484:23559105,14113213:0,411205,112570 +) +k1,7484:23727866,14113213:165484 +k1,7484:25084796,14113213:165485 +k1,7484:26038678,14113213:165484 +k1,7484:27652509,14113213:165485 +(1,7484:27652509,14113213:0,459977,115847 +r1,7484:32583029,14113213:4930520,575824,115847 +k1,7484:27652509,14113213:-4930520 +) +(1,7484:27652509,14113213:4930520,459977,115847 +k1,7484:27652509,14113213:3277 +h1,7484:32579752,14113213:0,411205,112570 +) +k1,7484:32583029,14113213:0 +) +(1,7485:6630773,14954701:25952256,513147,115847 +k1,7484:9021088,14954701:379670 +k1,7484:10419843,14954701:379670 +k1,7484:13845627,14954701:379671 +k1,7484:15172948,14954701:379670 +k1,7484:16571703,14954701:379670 +k1,7484:18663829,14954701:379670 +k1,7484:21031206,14954701:379670 +k1,7484:25195581,14954701:379671 +(1,7484:25195581,14954701:0,459977,115847 +r1,7484:28015830,14954701:2820249,575824,115847 +k1,7484:25195581,14954701:-2820249 +) +(1,7484:25195581,14954701:2820249,459977,115847 +k1,7484:25195581,14954701:3277 +h1,7484:28012553,14954701:0,411205,112570 +) +k1,7484:28395500,14954701:379670 +k1,7484:29966615,14954701:379670 +k1,7484:31134683,14954701:379670 +k1,7485:32583029,14954701:0 +) +(1,7485:6630773,15796189:25952256,513147,115847 +(1,7484:6630773,15796189:0,459977,115847 +r1,7484:11913004,15796189:5282231,575824,115847 +k1,7484:6630773,15796189:-5282231 +) +(1,7484:6630773,15796189:5282231,459977,115847 +k1,7484:6630773,15796189:3277 +h1,7484:11909727,15796189:0,411205,112570 +) +k1,7484:12171668,15796189:258664 +k1,7484:14634308,15796189:258664 +k1,7484:15912056,15796189:258663 +k1,7484:17883176,15796189:258664 +k1,7484:20326155,15796189:258664 +k1,7484:21776264,15796189:258664 +(1,7484:21776264,15796189:0,452978,115847 +r1,7484:24244801,15796189:2468537,568825,115847 +k1,7484:21776264,15796189:-2468537 +) +(1,7484:21776264,15796189:2468537,452978,115847 +k1,7484:21776264,15796189:3277 +h1,7484:24241524,15796189:0,411205,112570 +) +k1,7484:24503465,15796189:258664 +k1,7484:25953573,15796189:258663 +k1,7484:27000635,15796189:258664 +k1,7484:28707645,15796189:258664 +(1,7484:28707645,15796189:0,452978,115847 +r1,7484:32583029,15796189:3875384,568825,115847 +k1,7484:28707645,15796189:-3875384 +) +(1,7484:28707645,15796189:3875384,452978,115847 +k1,7484:28707645,15796189:3277 +h1,7484:32579752,15796189:0,411205,112570 +) +k1,7484:32583029,15796189:0 +) +(1,7485:6630773,16637677:25952256,505283,134348 +g1,7484:7849087,16637677 +g1,7484:12671881,16637677 +g1,7484:15765180,16637677 +g1,7484:16854388,16637677 +k1,7485:32583029,16637677:12067800 +g1,7485:32583029,16637677 +) +v1,7487:6630773,18003453:0,393216,0 +(1,7488:6630773,21123108:25952256,3512871,616038 +g1,7488:6630773,21123108 +(1,7488:6630773,21123108:25952256,3512871,616038 +(1,7488:6630773,21739146:25952256,4128909,0 +[1,7488:6630773,21739146:25952256,4128909,0 +(1,7488:6630773,21712932:25952256,4076481,0 +r1,7488:6656987,21712932:26214,4076481,0 +[1,7488:6656987,21712932:25899828,4076481,0 +(1,7488:6656987,21123108:25899828,2896833,0 +[1,7488:7246811,21123108:24720180,2896833,0 +(1,7488:7246811,19313649:24720180,1087374,126483 +k1,7487:8628555,19313649:172041 +k1,7487:12325778,19313649:172041 +k1,7487:15104186,19313649:172041 +k1,7487:16670178,19313649:172041 +k1,7487:18538946,19313649:172041 +k1,7487:21925528,19313649:172041 +k1,7487:23289014,19313649:172041 +k1,7487:26451463,19313649:172041 +k1,7487:29408129,19313649:172041 +k1,7487:30341698,19313649:172041 +k1,7488:31966991,19313649:0 +) +(1,7488:7246811,20155137:24720180,513147,134348 +k1,7487:8401252,20155137:164192 +k1,7487:10074084,20155137:164193 +k1,7487:15064347,20155137:164192 +k1,7487:16419985,20155137:164193 +k1,7487:17676662,20155137:164192 +k1,7487:19479910,20155137:164193 +k1,7487:20295530,20155137:164192 +k1,7487:22828194,20155137:164193 +(1,7487:22828194,20155137:0,459977,115847 +r1,7488:23889883,20155137:1061689,575824,115847 +k1,7487:22828194,20155137:-1061689 +) +(1,7487:22828194,20155137:1061689,459977,115847 +k1,7487:22828194,20155137:3277 +h1,7487:23886606,20155137:0,411205,112570 +) +k1,7487:24054075,20155137:164192 +k1,7487:25930724,20155137:164193 +k1,7487:27950240,20155137:164192 +k1,7487:28797318,20155137:164193 +k1,7487:30949217,20155137:164192 +k1,7487:31966991,20155137:0 +) +(1,7488:7246811,20996625:24720180,513147,126483 +g1,7487:8097468,20996625 +g1,7487:9998667,20996625 +g1,7487:11587259,20996625 +g1,7487:12445780,20996625 +g1,7487:14103840,20996625 +k1,7488:31966991,20996625:15246298 +g1,7488:31966991,20996625 +) +] +) +] +r1,7488:32583029,21712932:26214,4076481,0 +) +] +) +) +g1,7488:32583029,21123108 +) +h1,7488:6630773,21739146:0,0,0 +v1,7491:6630773,23104922:0,393216,0 +(1,7618:6630773,43228376:25952256,20516670,589824 +g1,7618:6630773,43228376 +(1,7618:6630773,43228376:25952256,20516670,589824 +(1,7618:6630773,43818200:25952256,21106494,0 +[1,7618:6630773,43818200:25952256,21106494,0 +(1,7618:6630773,43818200:25952256,21080280,0 +r1,7618:6656987,43818200:26214,21080280,0 +[1,7618:6656987,43818200:25899828,21080280,0 +(1,7618:6656987,43228376:25899828,19900632,0 +[1,7618:7246811,43228376:24720180,19900632,0 +(1,7492:7246811,24489629:24720180,1161885,196608 +(1,7491:7246811,24489629:0,1161885,196608 +r1,7618:8794447,24489629:1547636,1358493,196608 +k1,7491:7246811,24489629:-1547636 +) +(1,7491:7246811,24489629:1547636,1161885,196608 +) +k1,7491:9010507,24489629:216060 +k1,7491:10423254,24489629:216060 +k1,7491:12929142,24489629:216060 +k1,7491:15923929,24489629:216060 +k1,7491:16901517,24489629:216060 +k1,7491:19105283,24489629:216059 +k1,7491:21255966,24489629:216060 +k1,7491:24497823,24489629:216060 +k1,7491:25705443,24489629:216060 +k1,7491:27873165,24489629:216060 +k1,7491:30775546,24489629:216060 +k1,7491:31966991,24489629:0 +) +(1,7492:7246811,25331117:24720180,513147,134348 +k1,7491:9819049,25331117:200490 +k1,7491:11038623,25331117:200489 +k1,7491:12328977,25331117:200490 +k1,7491:16510124,25331117:200490 +k1,7491:19691190,25331117:200489 +k1,7491:20910765,25331117:200490 +k1,7491:22500618,25331117:200490 +k1,7491:23352536,25331117:200490 +k1,7491:25438496,25331117:200489 +k1,7491:26658071,25331117:200490 +k1,7491:28846268,25331117:200490 +k1,7491:30253930,25331117:200489 +k1,7491:31141893,25331117:200490 +k1,7491:31966991,25331117:0 +) +(1,7492:7246811,26172605:24720180,513147,134348 +k1,7491:8678355,26172605:234857 +k1,7491:11675555,26172605:234857 +k1,7491:14936209,26172605:234857 +k1,7491:18261089,26172605:234857 +k1,7491:20524941,26172605:234857 +k1,7491:22615779,26172605:234858 +k1,7491:25054612,26172605:234857 +k1,7491:26941632,26172605:234857 +k1,7491:27835781,26172605:234857 +k1,7491:29089723,26172605:234857 +k1,7491:31284106,26172605:234857 +k1,7491:31966991,26172605:0 +) +(1,7492:7246811,27014093:24720180,513147,134348 +k1,7491:8281493,27014093:219414 +k1,7491:11727901,27014093:219415 +k1,7491:15749058,27014093:219414 +k1,7491:17159917,27014093:219414 +k1,7491:20806865,27014093:219415 +k1,7491:22880948,27014093:219414 +k1,7491:23909732,27014093:219414 +k1,7491:25941872,27014093:219414 +k1,7491:27993674,27014093:219415 +k1,7491:29204648,27014093:219414 +k1,7491:31966991,27014093:0 +) +(1,7492:7246811,27855581:24720180,513147,134348 +k1,7491:12230347,27855581:244628 +k1,7491:13134267,27855581:244628 +k1,7491:15075622,27855581:244628 +k1,7491:18104875,27855581:244628 +k1,7491:20234974,27855581:244628 +k1,7491:21471162,27855581:244628 +k1,7491:23583566,27855581:244628 +k1,7491:27190191,27855581:244628 +k1,7491:28244189,27855581:244628 +k1,7491:29507902,27855581:244628 +k1,7491:31307699,27855581:244628 +k1,7491:31966991,27855581:0 +) +(1,7492:7246811,28697069:24720180,513147,134348 +g1,7491:8465125,28697069 +g1,7491:11552526,28697069 +g1,7491:13884952,28697069 +g1,7491:15341162,28697069 +g1,7491:17819078,28697069 +h1,7491:18789666,28697069:0,0,0 +g1,7491:18988895,28697069 +g1,7491:19997494,28697069 +g1,7491:21694876,28697069 +h1,7491:22890253,28697069:0,0,0 +k1,7492:31966991,28697069:8695974 +g1,7492:31966991,28697069 +) +v1,7494:7246811,29887535:0,393216,0 +(1,7501:7246811,30909180:24720180,1414861,196608 +g1,7501:7246811,30909180 +g1,7501:7246811,30909180 +g1,7501:7050203,30909180 +(1,7501:7050203,30909180:0,1414861,196608 +r1,7618:32163599,30909180:25113396,1611469,196608 +k1,7501:7050203,30909180:-25113396 +) +(1,7501:7050203,30909180:25113396,1414861,196608 +[1,7501:7246811,30909180:24720180,1218253,0 +(1,7496:7246811,30101445:24720180,410518,76021 +(1,7495:7246811,30101445:0,0,0 +g1,7495:7246811,30101445 +g1,7495:7246811,30101445 +g1,7495:6919131,30101445 +(1,7495:6919131,30101445:0,0,0 +) +g1,7495:7246811,30101445 +) +k1,7496:7246811,30101445:0 +h1,7496:10408267,30101445:0,0,0 +k1,7496:31966991,30101445:21558724 +g1,7496:31966991,30101445 +) +(1,7500:7246811,30833159:24720180,404226,76021 +(1,7498:7246811,30833159:0,0,0 +g1,7498:7246811,30833159 +g1,7498:7246811,30833159 +g1,7498:6919131,30833159 +(1,7498:6919131,30833159:0,0,0 +) +g1,7498:7246811,30833159 +) +g1,7500:8195248,30833159 +g1,7500:9459831,30833159 +h1,7500:10724414,30833159:0,0,0 +k1,7500:31966990,30833159:21242576 +g1,7500:31966990,30833159 +) +] +) +g1,7501:31966991,30909180 +g1,7501:7246811,30909180 +g1,7501:7246811,30909180 +g1,7501:31966991,30909180 +g1,7501:31966991,30909180 +) +h1,7501:7246811,31105788:0,0,0 +(1,7505:7246811,32471564:24720180,513147,134348 +h1,7504:7246811,32471564:983040,0,0 +k1,7504:9362492,32471564:179092 +k1,7504:11387733,32471564:179092 +k1,7504:13097091,32471564:179092 +k1,7504:13927611,32471564:179092 +k1,7504:17039439,32471564:179092 +k1,7504:19587002,32471564:179092 +k1,7504:20785179,32471564:179092 +k1,7504:23895696,32471564:179092 +k1,7504:24734080,32471564:179092 +k1,7504:26609899,32471564:179092 +k1,7504:29677163,32471564:179092 +k1,7504:31966991,32471564:0 +) +(1,7505:7246811,33313052:24720180,513147,134348 +k1,7504:9123049,33313052:178200 +k1,7504:11036643,33313052:178201 +k1,7504:11629665,33313052:178179 +k1,7504:15908453,33313052:178200 +k1,7504:16714488,33313052:178200 +k1,7504:19697630,33313052:178201 +k1,7504:21573868,33313052:178200 +k1,7504:24732645,33313052:178200 +k1,7504:26898552,33313052:178200 +k1,7504:29011376,33313052:178201 +k1,7504:29805614,33313052:178200 +k1,7504:31966991,33313052:0 +) +(1,7505:7246811,34154540:24720180,513147,134348 +k1,7504:8175694,34154540:245998 +k1,7504:11001845,34154540:245999 +k1,7504:12917700,34154540:245998 +k1,7504:14182783,34154540:245998 +k1,7504:15959048,34154540:245999 +k1,7504:16856474,34154540:245998 +k1,7504:20221331,34154540:245999 +k1,7504:22671305,34154540:245998 +k1,7504:25314610,34154540:245998 +k1,7504:28514317,34154540:245999 +k1,7504:30327936,34154540:245998 +k1,7504:31966991,34154540:0 +) +(1,7505:7246811,34996028:24720180,513147,134348 +k1,7504:10170030,34996028:218548 +k1,7504:12038774,34996028:218547 +k1,7504:15735973,34996028:218548 +k1,7504:16772409,34996028:218547 +k1,7504:18384908,34996028:218548 +k1,7504:19735263,34996028:218548 +k1,7504:21655780,34996028:218547 +k1,7504:22289151,34996028:218528 +k1,7504:24467225,34996028:218548 +k1,7504:25554125,34996028:218548 +k1,7504:26876954,34996028:218547 +k1,7504:28187987,34996028:218548 +(1,7504:28187987,34996028:0,452978,115847 +r1,7618:29953100,34996028:1765113,568825,115847 +k1,7504:28187987,34996028:-1765113 +) +(1,7504:28187987,34996028:1765113,452978,115847 +k1,7504:28187987,34996028:3277 +h1,7504:29949823,34996028:0,411205,112570 +) +k1,7504:30171647,34996028:218547 +k1,7504:31041623,34996028:218548 +k1,7505:31966991,34996028:0 +) +(1,7505:7246811,35837516:24720180,505283,126483 +g1,7504:9102135,35837516 +k1,7505:31966991,35837516:21052130 +g1,7505:31966991,35837516 +) +v1,7507:7246811,37027982:0,393216,0 +(1,7511:7246811,37324204:24720180,689438,196608 +g1,7511:7246811,37324204 +g1,7511:7246811,37324204 +g1,7511:7050203,37324204 +(1,7511:7050203,37324204:0,689438,196608 +r1,7618:32163599,37324204:25113396,886046,196608 +k1,7511:7050203,37324204:-25113396 +) +(1,7511:7050203,37324204:25113396,689438,196608 +[1,7511:7246811,37324204:24720180,492830,0 +(1,7509:7246811,37241892:24720180,410518,82312 +(1,7508:7246811,37241892:0,0,0 +g1,7508:7246811,37241892 +g1,7508:7246811,37241892 +g1,7508:6919131,37241892 +(1,7508:6919131,37241892:0,0,0 +) +g1,7508:7246811,37241892 +) +k1,7509:7246811,37241892:0 +g1,7509:10092123,37241892 +g1,7509:13253580,37241892 +g1,7509:13885872,37241892 +g1,7509:14834310,37241892 +g1,7509:15466602,37241892 +g1,7509:16731185,37241892 +k1,7509:16731185,37241892:39846 +h1,7509:19616342,37241892:0,0,0 +k1,7509:31966991,37241892:12350649 +g1,7509:31966991,37241892 +) +] +) +g1,7511:31966991,37324204 +g1,7511:7246811,37324204 +g1,7511:7246811,37324204 +g1,7511:31966991,37324204 +g1,7511:31966991,37324204 +) +h1,7511:7246811,37520812:0,0,0 +(1,7515:7246811,38886588:24720180,513147,126483 +h1,7514:7246811,38886588:983040,0,0 +k1,7514:9459265,38886588:275865 +k1,7514:13040112,38886588:275866 +k1,7514:14691578,38886588:275865 +k1,7514:16354186,38886588:275866 +k1,7514:17242813,38886588:275865 +k1,7514:18537764,38886588:275866 +k1,7514:20972385,38886588:275865 +k1,7514:21915407,38886588:275866 +(1,7514:21915407,38886588:0,452978,115847 +r1,7618:24383944,38886588:2468537,568825,115847 +k1,7514:21915407,38886588:-2468537 +) +(1,7514:21915407,38886588:2468537,452978,115847 +k1,7514:21915407,38886588:3277 +h1,7514:24380667,38886588:0,411205,112570 +) +k1,7514:24659809,38886588:275865 +k1,7514:25621837,38886588:275866 +k1,7514:28903838,38886588:275865 +k1,7514:31966991,38886588:0 +) +(1,7515:7246811,39728076:24720180,505283,134348 +k1,7514:8182376,39728076:174037 +(1,7514:8182376,39728076:0,452978,115847 +r1,7618:10650913,39728076:2468537,568825,115847 +k1,7514:8182376,39728076:-2468537 +) +(1,7514:8182376,39728076:2468537,452978,115847 +k1,7514:8182376,39728076:3277 +h1,7514:10647636,39728076:0,411205,112570 +) +k1,7514:10998620,39728076:174037 +k1,7514:14107359,39728076:174037 +k1,7514:15748092,39728076:174037 +(1,7514:15748092,39728076:0,452978,115847 +r1,7618:18216629,39728076:2468537,568825,115847 +k1,7514:15748092,39728076:-2468537 +) +(1,7514:15748092,39728076:2468537,452978,115847 +k1,7514:15748092,39728076:3277 +h1,7514:18213352,39728076:0,411205,112570 +) +k1,7514:18390666,39728076:174037 +k1,7514:19756149,39728076:174038 +(1,7514:19756149,39728076:0,452978,115847 +r1,7618:22928109,39728076:3171960,568825,115847 +k1,7514:19756149,39728076:-3171960 +) +(1,7514:19756149,39728076:3171960,452978,115847 +k1,7514:19756149,39728076:3277 +h1,7514:22924832,39728076:0,411205,112570 +) +k1,7514:23102146,39728076:174037 +k1,7514:25286828,39728076:174037 +k1,7514:28147186,39728076:174037 +k1,7514:30611051,39728076:174037 +k1,7515:31966991,39728076:0 +) +(1,7515:7246811,40569564:24720180,505283,134348 +k1,7514:9711444,40569564:245584 +k1,7514:12910736,40569564:245584 +k1,7514:14550270,40569564:245583 +k1,7514:16185217,40569564:245584 +k1,7514:17497072,40569564:245584 +k1,7514:20805809,40569564:245584 +k1,7514:21812921,40569564:245584 +k1,7514:23077589,40569564:245583 +k1,7514:26294575,40569564:245584 +(1,7514:26294575,40569564:0,452978,115847 +r1,7618:28763112,40569564:2468537,568825,115847 +k1,7514:26294575,40569564:-2468537 +) +(1,7514:26294575,40569564:2468537,452978,115847 +k1,7514:26294575,40569564:3277 +h1,7514:28759835,40569564:0,411205,112570 +) +k1,7514:29008696,40569564:245584 +k1,7514:31966991,40569564:0 +) +(1,7515:7246811,41411052:24720180,513147,134348 +k1,7514:12127604,41411052:169410 +k1,7514:13500256,41411052:169411 +k1,7514:14201163,41411052:169410 +k1,7514:17675555,41411052:169411 +k1,7514:19995857,41411052:169410 +k1,7514:21863305,41411052:169410 +k1,7514:22901068,41411052:169411 +k1,7514:24619094,41411052:169410 +k1,7514:25439933,41411052:169411 +k1,7514:27465323,41411052:169410 +k1,7514:29929805,41411052:169411 +k1,7514:31118300,41411052:169410 +k1,7515:31966991,41411052:0 +) +(1,7515:7246811,42252540:24720180,513147,126483 +k1,7514:8988009,42252540:203723 +k1,7514:9807771,42252540:203724 +k1,7514:10367354,42252540:203723 +k1,7514:13333420,42252540:203723 +k1,7514:15891197,42252540:203724 +k1,7514:16777805,42252540:203723 +k1,7514:19185505,42252540:203724 +k1,7514:21041391,42252540:203723 +k1,7514:21904406,42252540:203723 +k1,7514:23747185,42252540:203724 +k1,7514:24898559,42252540:203723 +k1,7514:26194767,42252540:203723 +k1,7514:27014529,42252540:203724 +k1,7514:30445245,42252540:203723 +k1,7514:31966991,42252540:0 +) +(1,7515:7246811,43094028:24720180,505283,134348 +g1,7514:8128925,43094028 +g1,7514:12896013,43094028 +g1,7514:14700219,43094028 +g1,7514:16601418,43094028 +g1,7514:17668999,43094028 +g1,7514:18960713,43094028 +(1,7514:18960713,43094028:0,452978,115847 +r1,7618:20725826,43094028:1765113,568825,115847 +k1,7514:18960713,43094028:-1765113 +) +(1,7514:18960713,43094028:1765113,452978,115847 +k1,7514:18960713,43094028:3277 +h1,7514:20722549,43094028:0,411205,112570 +) +g1,7514:20925055,43094028 +g1,7514:21775712,43094028 +g1,7514:23361683,43094028 +g1,7514:24173674,43094028 +g1,7514:25391988,43094028 +k1,7515:31966991,43094028:3469907 +g1,7515:31966991,43094028 +) +] +) +] +r1,7618:32583029,43818200:26214,21080280,0 +) +] +) +) +g1,7618:32583029,43228376 +) +] +(1,7618:32583029,45706769:0,0,0 +g1,7618:32583029,45706769 +) +) +] +(1,7618:6630773,47279633:25952256,0,0 +h1,7618:6630773,47279633:25952256,0,0 +) +] +h1,7618:4262630,4025873:0,0,0 +] +!24396 }141 !12 {142 -[1,7613:4262630,47279633:28320399,43253760,0 -(1,7613:4262630,4025873:0,0,0 -[1,7613:-473657,4025873:25952256,0,0 -(1,7613:-473657,-710414:25952256,0,0 -h1,7613:-473657,-710414:0,0,0 -(1,7613:-473657,-710414:0,0,0 -(1,7613:-473657,-710414:0,0,0 -g1,7613:-473657,-710414 -(1,7613:-473657,-710414:65781,0,65781 -g1,7613:-407876,-710414 -[1,7613:-407876,-644633:0,0,0 +[1,7618:4262630,47279633:28320399,43253760,0 +(1,7618:4262630,4025873:0,0,0 +[1,7618:-473657,4025873:25952256,0,0 +(1,7618:-473657,-710414:25952256,0,0 +h1,7618:-473657,-710414:0,0,0 +(1,7618:-473657,-710414:0,0,0 +(1,7618:-473657,-710414:0,0,0 +g1,7618:-473657,-710414 +(1,7618:-473657,-710414:65781,0,65781 +g1,7618:-407876,-710414 +[1,7618:-407876,-644633:0,0,0 ] ) -k1,7613:-473657,-710414:-65781 +k1,7618:-473657,-710414:-65781 ) ) -k1,7613:25478599,-710414:25952256 -g1,7613:25478599,-710414 +k1,7618:25478599,-710414:25952256 +g1,7618:25478599,-710414 ) ] ) -[1,7613:6630773,47279633:25952256,43253760,0 -[1,7613:6630773,4812305:25952256,786432,0 -(1,7613:6630773,4812305:25952256,505283,134348 -(1,7613:6630773,4812305:25952256,505283,134348 -g1,7613:3078558,4812305 -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,2439708:0,1703936,0 -k1,7613:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7613:2537886,2439708:1179648,16384,0 +[1,7618:6630773,47279633:25952256,43253760,0 +[1,7618:6630773,4812305:25952256,786432,0 +(1,7618:6630773,4812305:25952256,505283,134348 +(1,7618:6630773,4812305:25952256,505283,134348 +g1,7618:3078558,4812305 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,2439708:0,1703936,0 +k1,7618:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7618:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7613:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7618:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,2439708:0,1703936,0 -g1,7613:29030814,2439708 -g1,7613:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7613:36151628,1915420:16384,1179648,0 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,2439708:0,1703936,0 +g1,7618:29030814,2439708 +g1,7618:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7618:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7613:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7618:37855564,2439708:1179648,16384,0 ) ) -k1,7613:3078556,2439708:-34777008 +k1,7618:3078556,2439708:-34777008 ) ] -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,49800853:0,16384,2228224 -k1,7613:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7613:2537886,49800853:1179648,16384,0 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,49800853:0,16384,2228224 +k1,7618:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7618:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7613:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7618:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7613:3078558,4812305:0,0,0 -(1,7613:3078558,49800853:0,16384,2228224 -g1,7613:29030814,49800853 -g1,7613:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7613:36151628,51504789:16384,1179648,0 +[1,7618:3078558,4812305:0,0,0 +(1,7618:3078558,49800853:0,16384,2228224 +g1,7618:29030814,49800853 +g1,7618:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7618:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7613:37855564,49800853:1179648,16384,0 -) -) -k1,7613:3078556,49800853:-34777008 -) -] -g1,7613:6630773,4812305 -g1,7613:6630773,4812305 -g1,7613:8843268,4812305 -g1,7613:10880782,4812305 -g1,7613:13281365,4812305 -k1,7613:31387653,4812305:18106288 -) -) -] -[1,7613:6630773,45706769:25952256,40108032,0 -(1,7613:6630773,45706769:25952256,40108032,0 -(1,7613:6630773,45706769:0,0,0 -g1,7613:6630773,45706769 -) -[1,7613:6630773,45706769:25952256,40108032,0 -v1,7613:6630773,6254097:0,393216,0 -(1,7613:6630773,45116945:25952256,39256064,589824 -g1,7613:6630773,45116945 -(1,7613:6630773,45116945:25952256,39256064,589824 -(1,7613:6630773,45706769:25952256,39845888,0 -[1,7613:6630773,45706769:25952256,39845888,0 -(1,7613:6630773,45706769:25952256,39845888,0 -r1,7613:6656987,45706769:26214,39845888,0 -[1,7613:6656987,45706769:25899828,39845888,0 -(1,7613:6656987,45116945:25899828,38666240,0 -[1,7613:7246811,45116945:24720180,38666240,0 -v1,7512:7246811,6843921:0,393216,0 -(1,7525:7246811,11894091:24720180,5443386,196608 -g1,7525:7246811,11894091 -g1,7525:7246811,11894091 -g1,7525:7050203,11894091 -(1,7525:7050203,11894091:0,5443386,196608 -r1,7613:32163599,11894091:25113396,5639994,196608 -k1,7525:7050203,11894091:-25113396 -) -(1,7525:7050203,11894091:25113396,5443386,196608 -[1,7525:7246811,11894091:24720180,5246778,0 -(1,7514:7246811,7057831:24720180,410518,76021 -(1,7513:7246811,7057831:0,0,0 -g1,7513:7246811,7057831 -g1,7513:7246811,7057831 -g1,7513:6919131,7057831 -(1,7513:6919131,7057831:0,0,0 -) -g1,7513:7246811,7057831 -) -k1,7514:7246811,7057831:0 -k1,7514:7246811,7057831:0 -h1,7514:11988996,7057831:0,0,0 -k1,7514:31966992,7057831:19977996 -g1,7514:31966992,7057831 -) -(1,7524:7246811,7789545:24720180,410518,9436 -(1,7516:7246811,7789545:0,0,0 -g1,7516:7246811,7789545 -g1,7516:7246811,7789545 -g1,7516:6919131,7789545 -(1,7516:6919131,7789545:0,0,0 -) -g1,7516:7246811,7789545 -) -g1,7524:8195248,7789545 -g1,7524:10724414,7789545 -g1,7524:13253580,7789545 -g1,7524:14518163,7789545 -g1,7524:18944204,7789545 -g1,7524:19576496,7789545 -g1,7524:21157225,7789545 -g1,7524:22105662,7789545 -g1,7524:22421808,7789545 -g1,7524:23054100,7789545 -h1,7524:26215557,7789545:0,0,0 -k1,7524:31966991,7789545:5751434 -g1,7524:31966991,7789545 -) -(1,7524:7246811,8455723:24720180,410518,31456 -h1,7524:7246811,8455723:0,0,0 -g1,7524:8195248,8455723 -g1,7524:8511394,8455723 -g1,7524:9143686,8455723 -g1,7524:10092123,8455723 -g1,7524:10408269,8455723 -g1,7524:10724415,8455723 -g1,7524:11040561,8455723 -g1,7524:11356707,8455723 -g1,7524:11988999,8455723 -g1,7524:13253582,8455723 -g1,7524:13569728,8455723 -g1,7524:14202020,8455723 -h1,7524:14834311,8455723:0,0,0 -k1,7524:31966991,8455723:17132680 -g1,7524:31966991,8455723 -) -(1,7524:7246811,9121901:24720180,410518,101187 -h1,7524:7246811,9121901:0,0,0 -g1,7524:8195248,9121901 -g1,7524:8511394,9121901 -g1,7524:9143686,9121901 -g1,7524:10408269,9121901 -g1,7524:11356706,9121901 -g1,7524:11988998,9121901 -g1,7524:13253581,9121901 -g1,7524:13569727,9121901 -g1,7524:15466601,9121901 -h1,7524:17047329,9121901:0,0,0 -k1,7524:31966991,9121901:14919662 -g1,7524:31966991,9121901 -) -(1,7524:7246811,9788079:24720180,410518,101187 -h1,7524:7246811,9788079:0,0,0 -g1,7524:8195248,9788079 -g1,7524:8511394,9788079 -g1,7524:9143686,9788079 -g1,7524:10724415,9788079 -g1,7524:11988998,9788079 -g1,7524:13253581,9788079 -g1,7524:13569727,9788079 -g1,7524:15466601,9788079 -h1,7524:16415038,9788079:0,0,0 -k1,7524:31966991,9788079:15551953 -g1,7524:31966991,9788079 -) -(1,7524:7246811,10454257:24720180,410518,31456 -h1,7524:7246811,10454257:0,0,0 -g1,7524:8195248,10454257 -g1,7524:8511394,10454257 -g1,7524:9143686,10454257 -g1,7524:9775978,10454257 -g1,7524:11988998,10454257 -g1,7524:13253581,10454257 -g1,7524:13569727,10454257 -g1,7524:15150456,10454257 -h1,7524:15782747,10454257:0,0,0 -k1,7524:31966991,10454257:16184244 -g1,7524:31966991,10454257 -) -(1,7524:7246811,11120435:24720180,410518,76021 -h1,7524:7246811,11120435:0,0,0 -g1,7524:8195248,11120435 -g1,7524:8511394,11120435 -g1,7524:9143686,11120435 -g1,7524:11356706,11120435 -g1,7524:11988998,11120435 -g1,7524:13253581,11120435 -g1,7524:13569727,11120435 -g1,7524:16415038,11120435 -h1,7524:17047329,11120435:0,0,0 -k1,7524:31966991,11120435:14919662 -g1,7524:31966991,11120435 -) -(1,7524:7246811,11786613:24720180,410518,107478 -h1,7524:7246811,11786613:0,0,0 -g1,7524:8195248,11786613 -g1,7524:8511394,11786613 -g1,7524:9143686,11786613 -g1,7524:11672852,11786613 -g1,7524:15466600,11786613 -g1,7524:16731183,11786613 -g1,7524:17047329,11786613 -g1,7524:20208786,11786613 -g1,7524:21157223,11786613 -g1,7524:24002534,11786613 -g1,7524:26847845,11786613 -g1,7524:30325448,11786613 -h1,7524:31906176,11786613:0,0,0 -k1,7524:31966991,11786613:60815 -g1,7524:31966991,11786613 -) -] -) -g1,7525:31966991,11894091 -g1,7525:7246811,11894091 -g1,7525:7246811,11894091 -g1,7525:31966991,11894091 -g1,7525:31966991,11894091 -) -h1,7525:7246811,12090699:0,0,0 -v1,7529:7246811,13656174:0,393216,0 -(1,7570:7246811,37353037:24720180,24090079,196608 -g1,7570:7246811,37353037 -g1,7570:7246811,37353037 -g1,7570:7050203,37353037 -(1,7570:7050203,37353037:0,24090079,196608 -r1,7613:32163599,37353037:25113396,24286687,196608 -k1,7570:7050203,37353037:-25113396 -) -(1,7570:7050203,37353037:25113396,24090079,196608 -[1,7570:7246811,37353037:24720180,23893471,0 -(1,7531:7246811,13870084:24720180,410518,101187 -(1,7530:7246811,13870084:0,0,0 -g1,7530:7246811,13870084 -g1,7530:7246811,13870084 -g1,7530:6919131,13870084 -(1,7530:6919131,13870084:0,0,0 -) -g1,7530:7246811,13870084 -) -k1,7531:7246811,13870084:0 -k1,7531:7246811,13870084:0 -h1,7531:12621288,13870084:0,0,0 -k1,7531:31966992,13870084:19345704 -g1,7531:31966992,13870084 -) -(1,7569:7246811,14601798:24720180,410518,6290 -(1,7533:7246811,14601798:0,0,0 -g1,7533:7246811,14601798 -g1,7533:7246811,14601798 -g1,7533:6919131,14601798 -(1,7533:6919131,14601798:0,0,0 -) -g1,7533:7246811,14601798 -) -g1,7569:8195248,14601798 -g1,7569:9775977,14601798 -g1,7569:10724414,14601798 -h1,7569:11356705,14601798:0,0,0 -k1,7569:31966991,14601798:20610286 -g1,7569:31966991,14601798 -) -(1,7569:7246811,15267976:24720180,410518,107478 -h1,7569:7246811,15267976:0,0,0 -g1,7569:8195248,15267976 -g1,7569:8511394,15267976 -g1,7569:9143686,15267976 -g1,7569:10724415,15267976 -g1,7569:11040561,15267976 -g1,7569:11356707,15267976 -g1,7569:11672853,15267976 -g1,7569:11988999,15267976 -g1,7569:12305145,15267976 -g1,7569:12621291,15267976 -g1,7569:12937437,15267976 -g1,7569:13253583,15267976 -g1,7569:13885875,15267976 -g1,7569:16731186,15267976 -g1,7569:20208789,15267976 -g1,7569:20841081,15267976 -g1,7569:22421810,15267976 -g1,7569:23054102,15267976 -g1,7569:23686394,15267976 -g1,7569:24318686,15267976 -g1,7569:26531706,15267976 -g1,7569:28112435,15267976 -g1,7569:28744727,15267976 -h1,7569:30325455,15267976:0,0,0 -k1,7569:31966991,15267976:1641536 -g1,7569:31966991,15267976 -) -(1,7569:7246811,15934154:24720180,410518,107478 -h1,7569:7246811,15934154:0,0,0 -g1,7569:8195248,15934154 -g1,7569:8511394,15934154 -g1,7569:9143686,15934154 -g1,7569:11040560,15934154 -g1,7569:11356706,15934154 -g1,7569:11672852,15934154 -g1,7569:11988998,15934154 -g1,7569:12305144,15934154 -g1,7569:12621290,15934154 -g1,7569:12937436,15934154 -g1,7569:13253582,15934154 -g1,7569:16098893,15934154 -g1,7569:18944205,15934154 -g1,7569:22105663,15934154 -g1,7569:22421809,15934154 -g1,7569:25267120,15934154 -g1,7569:26847849,15934154 -g1,7569:27480141,15934154 -g1,7569:28112433,15934154 -g1,7569:28744725,15934154 -h1,7569:30325453,15934154:0,0,0 -k1,7569:31966991,15934154:1641538 -g1,7569:31966991,15934154 -) -(1,7569:7246811,16600332:24720180,404226,107478 -h1,7569:7246811,16600332:0,0,0 -g1,7569:8195248,16600332 -g1,7569:8511394,16600332 -g1,7569:8827540,16600332 -g1,7569:9775977,16600332 -g1,7569:11040560,16600332 -g1,7569:13569726,16600332 -g1,7569:17995766,16600332 -g1,7569:20841077,16600332 -g1,7569:24318680,16600332 -h1,7569:26215554,16600332:0,0,0 -k1,7569:31966991,16600332:5751437 -g1,7569:31966991,16600332 -) -(1,7569:7246811,17266510:24720180,410518,82312 -h1,7569:7246811,17266510:0,0,0 -g1,7569:8195248,17266510 -g1,7569:8511394,17266510 -g1,7569:8827540,17266510 -g1,7569:9775977,17266510 -g1,7569:11040560,17266510 -g1,7569:13569726,17266510 -g1,7569:17363474,17266510 -g1,7569:18628057,17266510 -g1,7569:20524932,17266510 -g1,7569:21473369,17266510 -g1,7569:22105661,17266510 -h1,7569:22421807,17266510:0,0,0 -k1,7569:31966991,17266510:9545184 -g1,7569:31966991,17266510 -) -(1,7569:7246811,17932688:24720180,410518,82312 -h1,7569:7246811,17932688:0,0,0 -g1,7569:8195248,17932688 -g1,7569:8511394,17932688 -g1,7569:8827540,17932688 -g1,7569:9775977,17932688 -g1,7569:10724414,17932688 -g1,7569:11988997,17932688 -g1,7569:14518163,17932688 -g1,7569:19892640,17932688 -g1,7569:20841077,17932688 -h1,7569:21157223,17932688:0,0,0 -k1,7569:31966991,17932688:10809768 -g1,7569:31966991,17932688 -) -(1,7569:7246811,18598866:24720180,410518,101187 -h1,7569:7246811,18598866:0,0,0 -g1,7569:8195248,18598866 -g1,7569:8511394,18598866 -g1,7569:8827540,18598866 -g1,7569:9775977,18598866 -g1,7569:10724414,18598866 -g1,7569:11672851,18598866 -g1,7569:12937434,18598866 -g1,7569:13569726,18598866 -g1,7569:14834309,18598866 -g1,7569:16731183,18598866 -g1,7569:18944203,18598866 -h1,7569:21157223,18598866:0,0,0 -k1,7569:31966991,18598866:10809768 -g1,7569:31966991,18598866 -) -(1,7569:7246811,19265044:24720180,410518,101187 -h1,7569:7246811,19265044:0,0,0 -g1,7569:8195248,19265044 -g1,7569:8511394,19265044 -g1,7569:8827540,19265044 -g1,7569:9775977,19265044 -g1,7569:10724414,19265044 -g1,7569:11672851,19265044 -g1,7569:12937434,19265044 -g1,7569:13569726,19265044 -g1,7569:14834309,19265044 -h1,7569:17047329,19265044:0,0,0 -k1,7569:31966991,19265044:14919662 -g1,7569:31966991,19265044 -) -(1,7569:7246811,19931222:24720180,404226,101187 -h1,7569:7246811,19931222:0,0,0 -g1,7569:8195248,19931222 -g1,7569:8511394,19931222 -g1,7569:8827540,19931222 -g1,7569:9775977,19931222 -g1,7569:11040560,19931222 -g1,7569:13569726,19931222 -g1,7569:18628057,19931222 -g1,7569:19892640,19931222 -h1,7569:22105660,19931222:0,0,0 -k1,7569:31966991,19931222:9861331 -g1,7569:31966991,19931222 -) -(1,7569:7246811,20597400:24720180,404226,82312 -h1,7569:7246811,20597400:0,0,0 -g1,7569:8195248,20597400 -g1,7569:8511394,20597400 -g1,7569:8827540,20597400 -g1,7569:9775977,20597400 -g1,7569:11040560,20597400 -g1,7569:13569726,20597400 -g1,7569:16731183,20597400 -g1,7569:17995766,20597400 -h1,7569:18311912,20597400:0,0,0 -k1,7569:31966991,20597400:13655079 -g1,7569:31966991,20597400 -) -(1,7569:7246811,21263578:24720180,404226,101187 -h1,7569:7246811,21263578:0,0,0 -g1,7569:8195248,21263578 -g1,7569:8511394,21263578 -g1,7569:8827540,21263578 -g1,7569:9775977,21263578 -g1,7569:11040560,21263578 -g1,7569:13569726,21263578 -g1,7569:17995766,21263578 -g1,7569:19260349,21263578 -h1,7569:19576495,21263578:0,0,0 -k1,7569:31966991,21263578:12390496 -g1,7569:31966991,21263578 -) -(1,7569:7246811,21929756:24720180,404226,101187 -h1,7569:7246811,21929756:0,0,0 -g1,7569:8195248,21929756 -g1,7569:8511394,21929756 -g1,7569:8827540,21929756 -g1,7569:9775977,21929756 -g1,7569:11040560,21929756 -g1,7569:13569726,21929756 -g1,7569:17679620,21929756 -g1,7569:18944203,21929756 -h1,7569:19260349,21929756:0,0,0 -k1,7569:31966991,21929756:12706642 -g1,7569:31966991,21929756 -) -(1,7569:7246811,22595934:24720180,404226,82312 -h1,7569:7246811,22595934:0,0,0 -g1,7569:8195248,22595934 -g1,7569:8511394,22595934 -g1,7569:8827540,22595934 -g1,7569:9775977,22595934 -g1,7569:11040560,22595934 -g1,7569:13569726,22595934 -g1,7569:23054097,22595934 -k1,7569:23054097,22595934:0 -h1,7569:26847845,22595934:0,0,0 -k1,7569:31966991,22595934:5119146 -g1,7569:31966991,22595934 -) -(1,7569:7246811,23262112:24720180,404226,107478 -h1,7569:7246811,23262112:0,0,0 -g1,7569:8195248,23262112 -g1,7569:8511394,23262112 -g1,7569:8827540,23262112 -g1,7569:9775977,23262112 -g1,7569:11040560,23262112 -g1,7569:13569726,23262112 -g1,7569:17679620,23262112 -g1,7569:20524931,23262112 -g1,7569:24002534,23262112 -h1,7569:25899408,23262112:0,0,0 -k1,7569:31966991,23262112:6067583 -g1,7569:31966991,23262112 -) -(1,7569:7246811,23928290:24720180,404226,82312 -h1,7569:7246811,23928290:0,0,0 -g1,7569:8195248,23928290 -g1,7569:8511394,23928290 -g1,7569:8827540,23928290 -g1,7569:9775977,23928290 -g1,7569:11040560,23928290 -g1,7569:13569726,23928290 -g1,7569:18628057,23928290 -g1,7569:20524931,23928290 -g1,7569:21789514,23928290 -g1,7569:23686388,23928290 -g1,7569:26847845,23928290 -h1,7569:29693156,23928290:0,0,0 -k1,7569:31966991,23928290:2273835 -g1,7569:31966991,23928290 -) -(1,7569:7246811,24594468:24720180,404226,101187 -h1,7569:7246811,24594468:0,0,0 -g1,7569:8195248,24594468 -g1,7569:8511394,24594468 -g1,7569:8827540,24594468 -g1,7569:9775977,24594468 -g1,7569:10724414,24594468 -g1,7569:11988997,24594468 -g1,7569:14518163,24594468 -g1,7569:17679620,24594468 -g1,7569:18944203,24594468 -g1,7569:20841077,24594468 -g1,7569:23054097,24594468 -h1,7569:25267117,24594468:0,0,0 -k1,7569:31966991,24594468:6699874 -g1,7569:31966991,24594468 -) -(1,7569:7246811,25260646:24720180,410518,76021 -h1,7569:7246811,25260646:0,0,0 -g1,7569:8195248,25260646 -g1,7569:8511394,25260646 -g1,7569:9143686,25260646 -g1,7569:12305143,25260646 -g1,7569:12621289,25260646 -g1,7569:12937435,25260646 -g1,7569:13253581,25260646 -g1,7569:13885873,25260646 -g1,7569:15782747,25260646 -g1,7569:17047330,25260646 -g1,7569:19260350,25260646 -g1,7569:20841079,25260646 -g1,7569:22737953,25260646 -g1,7569:24634827,25260646 -g1,7569:26531701,25260646 -g1,7569:28112430,25260646 -h1,7569:29060867,25260646:0,0,0 -k1,7569:31966991,25260646:2906124 -g1,7569:31966991,25260646 -) -(1,7569:7246811,25926824:24720180,404226,82312 -h1,7569:7246811,25926824:0,0,0 -g1,7569:8195248,25926824 -g1,7569:8511394,25926824 -g1,7569:8827540,25926824 -g1,7569:10092123,25926824 -g1,7569:12621289,25926824 -g1,7569:15782746,25926824 -g1,7569:17047329,25926824 -g1,7569:19260349,25926824 -g1,7569:20524932,25926824 -g1,7569:21789515,25926824 -g1,7569:23054098,25926824 -g1,7569:24318681,25926824 -h1,7569:25267118,25926824:0,0,0 -k1,7569:31966991,25926824:6699873 -g1,7569:31966991,25926824 -) -(1,7569:7246811,26593002:24720180,410518,82312 -h1,7569:7246811,26593002:0,0,0 -g1,7569:8195248,26593002 -g1,7569:8511394,26593002 -g1,7569:9143686,26593002 -g1,7569:13253580,26593002 -g1,7569:13885872,26593002 -g1,7569:15150455,26593002 -g1,7569:17047330,26593002 -g1,7569:18628059,26593002 -g1,7569:21157225,26593002 -g1,7569:23054099,26593002 -g1,7569:24950973,26593002 -g1,7569:26847847,26593002 -g1,7569:29060867,26593002 -h1,7569:30009304,26593002:0,0,0 -k1,7569:31966991,26593002:1957687 -g1,7569:31966991,26593002 -) -(1,7569:7246811,27259180:24720180,410518,82312 -h1,7569:7246811,27259180:0,0,0 -g1,7569:8195248,27259180 -g1,7569:8511394,27259180 -g1,7569:8827540,27259180 -g1,7569:10092123,27259180 -g1,7569:12621289,27259180 -g1,7569:17995766,27259180 -g1,7569:18944203,27259180 -h1,7569:19260349,27259180:0,0,0 -k1,7569:31966991,27259180:12706642 -g1,7569:31966991,27259180 -) -(1,7569:7246811,27925358:24720180,410518,101187 -h1,7569:7246811,27925358:0,0,0 -g1,7569:8195248,27925358 -g1,7569:8511394,27925358 -g1,7569:8827540,27925358 -g1,7569:9775977,27925358 -g1,7569:11040560,27925358 -g1,7569:11672852,27925358 -g1,7569:12937435,27925358 -g1,7569:14834309,27925358 -g1,7569:19260349,27925358 -h1,7569:21473369,27925358:0,0,0 -k1,7569:31966991,27925358:10493622 -g1,7569:31966991,27925358 -) -(1,7569:7246811,28591536:24720180,410518,76021 -h1,7569:7246811,28591536:0,0,0 -g1,7569:8195248,28591536 -g1,7569:8511394,28591536 -g1,7569:8827540,28591536 -g1,7569:9775977,28591536 -g1,7569:11040560,28591536 -g1,7569:11672852,28591536 -g1,7569:12937435,28591536 -g1,7569:14834309,28591536 -g1,7569:18311912,28591536 -g1,7569:20208786,28591536 -g1,7569:22421806,28591536 -g1,7569:23370243,28591536 -g1,7569:25583263,28591536 -k1,7569:25583263,28591536:0 -h1,7569:28744720,28591536:0,0,0 -k1,7569:31966991,28591536:3222271 -g1,7569:31966991,28591536 -) -(1,7569:7246811,29257714:24720180,410518,107478 -h1,7569:7246811,29257714:0,0,0 -g1,7569:8195248,29257714 -g1,7569:8511394,29257714 -g1,7569:9143686,29257714 -g1,7569:11672852,29257714 -g1,7569:11988998,29257714 -g1,7569:12305144,29257714 -g1,7569:12621290,29257714 -g1,7569:12937436,29257714 -g1,7569:13253582,29257714 -g1,7569:13885874,29257714 -g1,7569:15782748,29257714 -g1,7569:17363477,29257714 -g1,7569:19260351,29257714 -g1,7569:21157225,29257714 -h1,7569:22737953,29257714:0,0,0 -k1,7569:31966991,29257714:9229038 -g1,7569:31966991,29257714 -) -(1,7569:7246811,29923892:24720180,404226,101187 -h1,7569:7246811,29923892:0,0,0 -g1,7569:8195248,29923892 -g1,7569:8511394,29923892 -g1,7569:8827540,29923892 -g1,7569:10092123,29923892 -g1,7569:12621289,29923892 -g1,7569:15782746,29923892 -g1,7569:17047329,29923892 -g1,7569:18944203,29923892 -g1,7569:23370243,29923892 -h1,7569:25583263,29923892:0,0,0 -k1,7569:31966991,29923892:6383728 -g1,7569:31966991,29923892 -) -(1,7569:7246811,30590070:24720180,410518,107478 -h1,7569:7246811,30590070:0,0,0 -g1,7569:8195248,30590070 -g1,7569:8511394,30590070 -g1,7569:9143686,30590070 -g1,7569:11040560,30590070 -g1,7569:11356706,30590070 -g1,7569:11672852,30590070 -g1,7569:11988998,30590070 -g1,7569:12305144,30590070 -g1,7569:12621290,30590070 -g1,7569:12937436,30590070 -g1,7569:13253582,30590070 -g1,7569:13885874,30590070 -g1,7569:15150457,30590070 -h1,7569:16415040,30590070:0,0,0 -k1,7569:31966991,30590070:15551951 -g1,7569:31966991,30590070 -) -(1,7569:7246811,31256248:24720180,410518,76021 -h1,7569:7246811,31256248:0,0,0 -g1,7569:8195248,31256248 -g1,7569:8511394,31256248 -g1,7569:9143686,31256248 -g1,7569:10092123,31256248 -g1,7569:10408269,31256248 -g1,7569:10724415,31256248 -g1,7569:11040561,31256248 -g1,7569:11356707,31256248 -g1,7569:11672853,31256248 -g1,7569:11988999,31256248 -g1,7569:12305145,31256248 -g1,7569:12621291,31256248 -g1,7569:12937437,31256248 -g1,7569:13253583,31256248 -g1,7569:13885875,31256248 -g1,7569:15150458,31256248 -g1,7569:17047332,31256248 -g1,7569:17679624,31256248 -g1,7569:18628061,31256248 -h1,7569:18944207,31256248:0,0,0 -k1,7569:31966991,31256248:13022784 -g1,7569:31966991,31256248 -) -(1,7569:7246811,31922426:24720180,410518,101187 -h1,7569:7246811,31922426:0,0,0 -g1,7569:8195248,31922426 -g1,7569:8511394,31922426 -g1,7569:9143686,31922426 -g1,7569:12305143,31922426 -g1,7569:12621289,31922426 -g1,7569:12937435,31922426 -g1,7569:13253581,31922426 -g1,7569:13885873,31922426 -g1,7569:15150456,31922426 -h1,7569:16731184,31922426:0,0,0 -k1,7569:31966991,31922426:15235807 -g1,7569:31966991,31922426 -) -(1,7569:7246811,32588604:24720180,410518,107478 -h1,7569:7246811,32588604:0,0,0 -g1,7569:8195248,32588604 -g1,7569:8511394,32588604 -g1,7569:9143686,32588604 -g1,7569:13885872,32588604 -g1,7569:15150455,32588604 -h1,7569:16731183,32588604:0,0,0 -k1,7569:31966991,32588604:15235808 -g1,7569:31966991,32588604 -) -(1,7569:7246811,33254782:24720180,410518,76021 -h1,7569:7246811,33254782:0,0,0 -g1,7569:8195248,33254782 -g1,7569:8511394,33254782 -g1,7569:9143686,33254782 -g1,7569:12621289,33254782 -g1,7569:12937435,33254782 -g1,7569:13253581,33254782 -g1,7569:13885873,33254782 -g1,7569:15782747,33254782 -g1,7569:17047330,33254782 -g1,7569:18944204,33254782 -g1,7569:20524933,33254782 -g1,7569:21157225,33254782 -h1,7569:21789516,33254782:0,0,0 -k1,7569:31966991,33254782:10177475 -g1,7569:31966991,33254782 -) -(1,7569:7246811,33920960:24720180,410518,82312 -h1,7569:7246811,33920960:0,0,0 -g1,7569:8195248,33920960 -g1,7569:8511394,33920960 -g1,7569:8827540,33920960 -g1,7569:10092123,33920960 -g1,7569:12621289,33920960 -g1,7569:15782746,33920960 -g1,7569:17047329,33920960 -g1,7569:18944203,33920960 -g1,7569:21473369,33920960 -g1,7569:24002535,33920960 -h1,7569:26215555,33920960:0,0,0 -k1,7569:31966991,33920960:5751436 -g1,7569:31966991,33920960 -) -(1,7569:7246811,34587138:24720180,410518,82312 -h1,7569:7246811,34587138:0,0,0 -g1,7569:8195248,34587138 -g1,7569:8511394,34587138 -g1,7569:9143686,34587138 -g1,7569:13253580,34587138 -g1,7569:13885872,34587138 -g1,7569:15150455,34587138 -g1,7569:17047330,34587138 -g1,7569:18628059,34587138 -g1,7569:21157225,34587138 -g1,7569:24002536,34587138 -g1,7569:26847847,34587138 -h1,7569:29060867,34587138:0,0,0 -k1,7569:31966991,34587138:2906124 -g1,7569:31966991,34587138 -) -(1,7569:7246811,35253316:24720180,410518,82312 -h1,7569:7246811,35253316:0,0,0 -g1,7569:8195248,35253316 -g1,7569:8511394,35253316 -g1,7569:8827540,35253316 -g1,7569:10092123,35253316 -g1,7569:12621289,35253316 -g1,7569:17995766,35253316 -g1,7569:18944203,35253316 -h1,7569:19260349,35253316:0,0,0 -k1,7569:31966991,35253316:12706642 -g1,7569:31966991,35253316 -) -(1,7569:7246811,35919494:24720180,410518,101187 -h1,7569:7246811,35919494:0,0,0 -g1,7569:8195248,35919494 -g1,7569:8511394,35919494 -g1,7569:8827540,35919494 -g1,7569:9775977,35919494 -g1,7569:11040560,35919494 -g1,7569:11672852,35919494 -g1,7569:12937435,35919494 -g1,7569:14834309,35919494 -g1,7569:19260349,35919494 -h1,7569:21473369,35919494:0,0,0 -k1,7569:31966991,35919494:10493622 -g1,7569:31966991,35919494 -) -(1,7569:7246811,36585672:24720180,410518,101187 -h1,7569:7246811,36585672:0,0,0 -g1,7569:8195248,36585672 -g1,7569:8511394,36585672 -g1,7569:8827540,36585672 -g1,7569:9775977,36585672 -g1,7569:11040560,36585672 -g1,7569:11672852,36585672 -g1,7569:12937435,36585672 -g1,7569:14834309,36585672 -g1,7569:19260349,36585672 -h1,7569:21473369,36585672:0,0,0 -k1,7569:31966991,36585672:10493622 -g1,7569:31966991,36585672 -) -(1,7569:7246811,37251850:24720180,404226,101187 -h1,7569:7246811,37251850:0,0,0 -g1,7569:8195248,37251850 -g1,7569:8511394,37251850 -g1,7569:9143686,37251850 -g1,7569:11672852,37251850 -g1,7569:14834309,37251850 -g1,7569:16098892,37251850 -h1,7569:19892640,37251850:0,0,0 -k1,7569:31966991,37251850:12074351 -g1,7569:31966991,37251850 -) -] -) -g1,7570:31966991,37353037 -g1,7570:7246811,37353037 -g1,7570:7246811,37353037 -g1,7570:31966991,37353037 -g1,7570:31966991,37353037 -) -h1,7570:7246811,37549645:0,0,0 -(1,7574:7246811,38840782:24720180,513147,134348 -h1,7573:7246811,38840782:983040,0,0 -k1,7573:10067027,38840782:232199 -k1,7573:11167578,38840782:232199 -k1,7573:13122719,38840782:232199 -k1,7573:14374003,38840782:232199 -k1,7573:17537627,38840782:232199 -k1,7573:18429118,38840782:232199 -k1,7573:19680403,38840782:232200 -k1,7573:21872128,38840782:232199 -k1,7573:23295772,38840782:232199 -k1,7573:24547056,38840782:232199 -k1,7573:26847571,38840782:232199 -k1,7573:27739062,38840782:232199 -k1,7573:31098639,38840782:232199 -k1,7573:31966991,38840782:0 -) -(1,7574:7246811,39682270:24720180,513147,134348 -g1,7573:8550322,39682270 -g1,7573:10887991,39682270 -g1,7573:13291196,39682270 -g1,7573:15129480,39682270 -g1,7573:17064102,39682270 -g1,7573:18282416,39682270 -g1,7573:20202620,39682270 -g1,7573:20816692,39682270 -g1,7573:22601892,39682270 -g1,7573:23748772,39682270 -g1,7573:26571407,39682270 -k1,7574:31966991,39682270:2007373 -g1,7574:31966991,39682270 -) -v1,7576:7246811,40798096:0,393216,0 -(1,7583:7246811,41819741:24720180,1414861,196608 -g1,7583:7246811,41819741 -g1,7583:7246811,41819741 -g1,7583:7050203,41819741 -(1,7583:7050203,41819741:0,1414861,196608 -r1,7613:32163599,41819741:25113396,1611469,196608 -k1,7583:7050203,41819741:-25113396 -) -(1,7583:7050203,41819741:25113396,1414861,196608 -[1,7583:7246811,41819741:24720180,1218253,0 -(1,7578:7246811,41012006:24720180,410518,107478 -(1,7577:7246811,41012006:0,0,0 -g1,7577:7246811,41012006 -g1,7577:7246811,41012006 -g1,7577:6919131,41012006 -(1,7577:6919131,41012006:0,0,0 -) -g1,7577:7246811,41012006 -) -k1,7578:7246811,41012006:0 -h1,7578:15466599,41012006:0,0,0 -k1,7578:31966991,41012006:16500392 -g1,7578:31966991,41012006 -) -(1,7582:7246811,41743720:24720180,404226,76021 -(1,7580:7246811,41743720:0,0,0 -g1,7580:7246811,41743720 -g1,7580:7246811,41743720 -g1,7580:6919131,41743720 -(1,7580:6919131,41743720:0,0,0 -) -g1,7580:7246811,41743720 -) -g1,7582:8195248,41743720 -g1,7582:9459831,41743720 -h1,7582:12305142,41743720:0,0,0 -k1,7582:31966990,41743720:19661848 -g1,7582:31966990,41743720 -) -] -) -g1,7583:31966991,41819741 -g1,7583:7246811,41819741 -g1,7583:7246811,41819741 -g1,7583:31966991,41819741 -g1,7583:31966991,41819741 -) -h1,7583:7246811,42016349:0,0,0 -(1,7587:7246811,43307486:24720180,513147,134348 -h1,7586:7246811,43307486:983040,0,0 -k1,7586:9346735,43307486:298995 -k1,7586:10416434,43307486:298996 -k1,7586:13376846,43307486:298995 -k1,7586:14544194,43307486:298996 -k1,7586:16034634,43307486:298995 -k1,7586:16799590,43307486:298995 -k1,7586:18117671,43307486:298996 -k1,7586:20114704,43307486:298995 -k1,7586:21981320,43307486:298995 -k1,7586:22636176,43307486:298996 -k1,7586:24747897,43307486:298995 -k1,7586:28363670,43307486:298996 -k1,7586:29350138,43307486:298995 -k1,7586:31966991,43307486:0 -) -(1,7587:7246811,44148974:24720180,513147,134348 -g1,7586:11325771,44148974 -g1,7586:13092621,44148974 -g1,7586:13647710,44148974 -g1,7586:16604694,44148974 -g1,7586:18484266,44148974 -g1,7586:21445838,44148974 -g1,7586:23212688,44148974 -g1,7586:24431002,44148974 -g1,7586:26351206,44148974 -k1,7587:31966991,44148974:4021949 -g1,7587:31966991,44148974 -) -(1,7589:7246811,44990462:24720180,513147,126483 -h1,7588:7246811,44990462:983040,0,0 -k1,7588:9706424,44990462:279886 -k1,7588:12978028,44990462:279885 -k1,7588:15113238,44990462:279886 -k1,7588:16384683,44990462:279885 -k1,7588:17612220,44990462:279886 -k1,7588:18247965,44990462:279885 -k1,7588:19767792,44990462:279886 -k1,7588:23519775,44990462:279886 -k1,7588:24458952,44990462:279885 -k1,7588:26436876,44990462:279886 -k1,7588:27284958,44990462:279885 -k1,7588:27963303,44990462:279886 -k1,7588:29434633,44990462:279885 -k1,7588:31098639,44990462:279886 -k1,7588:31966991,44990462:0 -) -] -) -] -r1,7613:32583029,45706769:26214,39845888,0 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7618:37855564,49800853:1179648,16384,0 +) +) +k1,7618:3078556,49800853:-34777008 +) +] +g1,7618:6630773,4812305 +g1,7618:6630773,4812305 +g1,7618:8843268,4812305 +g1,7618:10880782,4812305 +g1,7618:13281365,4812305 +k1,7618:31387653,4812305:18106288 +) +) +] +[1,7618:6630773,45706769:25952256,40108032,0 +(1,7618:6630773,45706769:25952256,40108032,0 +(1,7618:6630773,45706769:0,0,0 +g1,7618:6630773,45706769 +) +[1,7618:6630773,45706769:25952256,40108032,0 +v1,7618:6630773,6254097:0,393216,0 +(1,7618:6630773,45116945:25952256,39256064,589824 +g1,7618:6630773,45116945 +(1,7618:6630773,45116945:25952256,39256064,589824 +(1,7618:6630773,45706769:25952256,39845888,0 +[1,7618:6630773,45706769:25952256,39845888,0 +(1,7618:6630773,45706769:25952256,39845888,0 +r1,7618:6656987,45706769:26214,39845888,0 +[1,7618:6656987,45706769:25899828,39845888,0 +(1,7618:6656987,45116945:25899828,38666240,0 +[1,7618:7246811,45116945:24720180,38666240,0 +v1,7517:7246811,6843921:0,393216,0 +(1,7530:7246811,11894091:24720180,5443386,196608 +g1,7530:7246811,11894091 +g1,7530:7246811,11894091 +g1,7530:7050203,11894091 +(1,7530:7050203,11894091:0,5443386,196608 +r1,7618:32163599,11894091:25113396,5639994,196608 +k1,7530:7050203,11894091:-25113396 +) +(1,7530:7050203,11894091:25113396,5443386,196608 +[1,7530:7246811,11894091:24720180,5246778,0 +(1,7519:7246811,7057831:24720180,410518,76021 +(1,7518:7246811,7057831:0,0,0 +g1,7518:7246811,7057831 +g1,7518:7246811,7057831 +g1,7518:6919131,7057831 +(1,7518:6919131,7057831:0,0,0 +) +g1,7518:7246811,7057831 +) +k1,7519:7246811,7057831:0 +k1,7519:7246811,7057831:0 +h1,7519:11988996,7057831:0,0,0 +k1,7519:31966992,7057831:19977996 +g1,7519:31966992,7057831 +) +(1,7529:7246811,7789545:24720180,410518,9436 +(1,7521:7246811,7789545:0,0,0 +g1,7521:7246811,7789545 +g1,7521:7246811,7789545 +g1,7521:6919131,7789545 +(1,7521:6919131,7789545:0,0,0 +) +g1,7521:7246811,7789545 +) +g1,7529:8195248,7789545 +g1,7529:10724414,7789545 +g1,7529:13253580,7789545 +g1,7529:14518163,7789545 +g1,7529:18944204,7789545 +g1,7529:19576496,7789545 +g1,7529:21157225,7789545 +g1,7529:22105662,7789545 +g1,7529:22421808,7789545 +g1,7529:23054100,7789545 +h1,7529:26215557,7789545:0,0,0 +k1,7529:31966991,7789545:5751434 +g1,7529:31966991,7789545 +) +(1,7529:7246811,8455723:24720180,410518,31456 +h1,7529:7246811,8455723:0,0,0 +g1,7529:8195248,8455723 +g1,7529:8511394,8455723 +g1,7529:9143686,8455723 +g1,7529:10092123,8455723 +g1,7529:10408269,8455723 +g1,7529:10724415,8455723 +g1,7529:11040561,8455723 +g1,7529:11356707,8455723 +g1,7529:11988999,8455723 +g1,7529:13253582,8455723 +g1,7529:13569728,8455723 +g1,7529:14202020,8455723 +h1,7529:14834311,8455723:0,0,0 +k1,7529:31966991,8455723:17132680 +g1,7529:31966991,8455723 +) +(1,7529:7246811,9121901:24720180,410518,101187 +h1,7529:7246811,9121901:0,0,0 +g1,7529:8195248,9121901 +g1,7529:8511394,9121901 +g1,7529:9143686,9121901 +g1,7529:10408269,9121901 +g1,7529:11356706,9121901 +g1,7529:11988998,9121901 +g1,7529:13253581,9121901 +g1,7529:13569727,9121901 +g1,7529:15466601,9121901 +h1,7529:17047329,9121901:0,0,0 +k1,7529:31966991,9121901:14919662 +g1,7529:31966991,9121901 +) +(1,7529:7246811,9788079:24720180,410518,101187 +h1,7529:7246811,9788079:0,0,0 +g1,7529:8195248,9788079 +g1,7529:8511394,9788079 +g1,7529:9143686,9788079 +g1,7529:10724415,9788079 +g1,7529:11988998,9788079 +g1,7529:13253581,9788079 +g1,7529:13569727,9788079 +g1,7529:15466601,9788079 +h1,7529:16415038,9788079:0,0,0 +k1,7529:31966991,9788079:15551953 +g1,7529:31966991,9788079 +) +(1,7529:7246811,10454257:24720180,410518,31456 +h1,7529:7246811,10454257:0,0,0 +g1,7529:8195248,10454257 +g1,7529:8511394,10454257 +g1,7529:9143686,10454257 +g1,7529:9775978,10454257 +g1,7529:11988998,10454257 +g1,7529:13253581,10454257 +g1,7529:13569727,10454257 +g1,7529:15150456,10454257 +h1,7529:15782747,10454257:0,0,0 +k1,7529:31966991,10454257:16184244 +g1,7529:31966991,10454257 +) +(1,7529:7246811,11120435:24720180,410518,76021 +h1,7529:7246811,11120435:0,0,0 +g1,7529:8195248,11120435 +g1,7529:8511394,11120435 +g1,7529:9143686,11120435 +g1,7529:11356706,11120435 +g1,7529:11988998,11120435 +g1,7529:13253581,11120435 +g1,7529:13569727,11120435 +g1,7529:16415038,11120435 +h1,7529:17047329,11120435:0,0,0 +k1,7529:31966991,11120435:14919662 +g1,7529:31966991,11120435 +) +(1,7529:7246811,11786613:24720180,410518,107478 +h1,7529:7246811,11786613:0,0,0 +g1,7529:8195248,11786613 +g1,7529:8511394,11786613 +g1,7529:9143686,11786613 +g1,7529:11672852,11786613 +g1,7529:15466600,11786613 +g1,7529:16731183,11786613 +g1,7529:17047329,11786613 +g1,7529:20208786,11786613 +g1,7529:21157223,11786613 +g1,7529:24002534,11786613 +g1,7529:26847845,11786613 +g1,7529:30325448,11786613 +h1,7529:31906176,11786613:0,0,0 +k1,7529:31966991,11786613:60815 +g1,7529:31966991,11786613 +) +] +) +g1,7530:31966991,11894091 +g1,7530:7246811,11894091 +g1,7530:7246811,11894091 +g1,7530:31966991,11894091 +g1,7530:31966991,11894091 +) +h1,7530:7246811,12090699:0,0,0 +v1,7534:7246811,13656174:0,393216,0 +(1,7575:7246811,37353037:24720180,24090079,196608 +g1,7575:7246811,37353037 +g1,7575:7246811,37353037 +g1,7575:7050203,37353037 +(1,7575:7050203,37353037:0,24090079,196608 +r1,7618:32163599,37353037:25113396,24286687,196608 +k1,7575:7050203,37353037:-25113396 +) +(1,7575:7050203,37353037:25113396,24090079,196608 +[1,7575:7246811,37353037:24720180,23893471,0 +(1,7536:7246811,13870084:24720180,410518,101187 +(1,7535:7246811,13870084:0,0,0 +g1,7535:7246811,13870084 +g1,7535:7246811,13870084 +g1,7535:6919131,13870084 +(1,7535:6919131,13870084:0,0,0 +) +g1,7535:7246811,13870084 +) +k1,7536:7246811,13870084:0 +k1,7536:7246811,13870084:0 +h1,7536:12621288,13870084:0,0,0 +k1,7536:31966992,13870084:19345704 +g1,7536:31966992,13870084 +) +(1,7574:7246811,14601798:24720180,410518,6290 +(1,7538:7246811,14601798:0,0,0 +g1,7538:7246811,14601798 +g1,7538:7246811,14601798 +g1,7538:6919131,14601798 +(1,7538:6919131,14601798:0,0,0 +) +g1,7538:7246811,14601798 +) +g1,7574:8195248,14601798 +g1,7574:9775977,14601798 +g1,7574:10724414,14601798 +h1,7574:11356705,14601798:0,0,0 +k1,7574:31966991,14601798:20610286 +g1,7574:31966991,14601798 +) +(1,7574:7246811,15267976:24720180,410518,107478 +h1,7574:7246811,15267976:0,0,0 +g1,7574:8195248,15267976 +g1,7574:8511394,15267976 +g1,7574:9143686,15267976 +g1,7574:10724415,15267976 +g1,7574:11040561,15267976 +g1,7574:11356707,15267976 +g1,7574:11672853,15267976 +g1,7574:11988999,15267976 +g1,7574:12305145,15267976 +g1,7574:12621291,15267976 +g1,7574:12937437,15267976 +g1,7574:13253583,15267976 +g1,7574:13885875,15267976 +g1,7574:16731186,15267976 +g1,7574:20208789,15267976 +g1,7574:20841081,15267976 +g1,7574:22421810,15267976 +g1,7574:23054102,15267976 +g1,7574:23686394,15267976 +g1,7574:24318686,15267976 +g1,7574:26531706,15267976 +g1,7574:28112435,15267976 +g1,7574:28744727,15267976 +h1,7574:30325455,15267976:0,0,0 +k1,7574:31966991,15267976:1641536 +g1,7574:31966991,15267976 +) +(1,7574:7246811,15934154:24720180,410518,107478 +h1,7574:7246811,15934154:0,0,0 +g1,7574:8195248,15934154 +g1,7574:8511394,15934154 +g1,7574:9143686,15934154 +g1,7574:11040560,15934154 +g1,7574:11356706,15934154 +g1,7574:11672852,15934154 +g1,7574:11988998,15934154 +g1,7574:12305144,15934154 +g1,7574:12621290,15934154 +g1,7574:12937436,15934154 +g1,7574:13253582,15934154 +g1,7574:16098893,15934154 +g1,7574:18944205,15934154 +g1,7574:22105663,15934154 +g1,7574:22421809,15934154 +g1,7574:25267120,15934154 +g1,7574:26847849,15934154 +g1,7574:27480141,15934154 +g1,7574:28112433,15934154 +g1,7574:28744725,15934154 +h1,7574:30325453,15934154:0,0,0 +k1,7574:31966991,15934154:1641538 +g1,7574:31966991,15934154 +) +(1,7574:7246811,16600332:24720180,404226,107478 +h1,7574:7246811,16600332:0,0,0 +g1,7574:8195248,16600332 +g1,7574:8511394,16600332 +g1,7574:8827540,16600332 +g1,7574:9775977,16600332 +g1,7574:11040560,16600332 +g1,7574:13569726,16600332 +g1,7574:17995766,16600332 +g1,7574:20841077,16600332 +g1,7574:24318680,16600332 +h1,7574:26215554,16600332:0,0,0 +k1,7574:31966991,16600332:5751437 +g1,7574:31966991,16600332 +) +(1,7574:7246811,17266510:24720180,410518,82312 +h1,7574:7246811,17266510:0,0,0 +g1,7574:8195248,17266510 +g1,7574:8511394,17266510 +g1,7574:8827540,17266510 +g1,7574:9775977,17266510 +g1,7574:11040560,17266510 +g1,7574:13569726,17266510 +g1,7574:17363474,17266510 +g1,7574:18628057,17266510 +g1,7574:20524932,17266510 +g1,7574:21473369,17266510 +g1,7574:22105661,17266510 +h1,7574:22421807,17266510:0,0,0 +k1,7574:31966991,17266510:9545184 +g1,7574:31966991,17266510 +) +(1,7574:7246811,17932688:24720180,410518,82312 +h1,7574:7246811,17932688:0,0,0 +g1,7574:8195248,17932688 +g1,7574:8511394,17932688 +g1,7574:8827540,17932688 +g1,7574:9775977,17932688 +g1,7574:10724414,17932688 +g1,7574:11988997,17932688 +g1,7574:14518163,17932688 +g1,7574:19892640,17932688 +g1,7574:20841077,17932688 +h1,7574:21157223,17932688:0,0,0 +k1,7574:31966991,17932688:10809768 +g1,7574:31966991,17932688 +) +(1,7574:7246811,18598866:24720180,410518,101187 +h1,7574:7246811,18598866:0,0,0 +g1,7574:8195248,18598866 +g1,7574:8511394,18598866 +g1,7574:8827540,18598866 +g1,7574:9775977,18598866 +g1,7574:10724414,18598866 +g1,7574:11672851,18598866 +g1,7574:12937434,18598866 +g1,7574:13569726,18598866 +g1,7574:14834309,18598866 +g1,7574:16731183,18598866 +g1,7574:18944203,18598866 +h1,7574:21157223,18598866:0,0,0 +k1,7574:31966991,18598866:10809768 +g1,7574:31966991,18598866 +) +(1,7574:7246811,19265044:24720180,410518,101187 +h1,7574:7246811,19265044:0,0,0 +g1,7574:8195248,19265044 +g1,7574:8511394,19265044 +g1,7574:8827540,19265044 +g1,7574:9775977,19265044 +g1,7574:10724414,19265044 +g1,7574:11672851,19265044 +g1,7574:12937434,19265044 +g1,7574:13569726,19265044 +g1,7574:14834309,19265044 +h1,7574:17047329,19265044:0,0,0 +k1,7574:31966991,19265044:14919662 +g1,7574:31966991,19265044 +) +(1,7574:7246811,19931222:24720180,404226,101187 +h1,7574:7246811,19931222:0,0,0 +g1,7574:8195248,19931222 +g1,7574:8511394,19931222 +g1,7574:8827540,19931222 +g1,7574:9775977,19931222 +g1,7574:11040560,19931222 +g1,7574:13569726,19931222 +g1,7574:18628057,19931222 +g1,7574:19892640,19931222 +h1,7574:22105660,19931222:0,0,0 +k1,7574:31966991,19931222:9861331 +g1,7574:31966991,19931222 +) +(1,7574:7246811,20597400:24720180,404226,82312 +h1,7574:7246811,20597400:0,0,0 +g1,7574:8195248,20597400 +g1,7574:8511394,20597400 +g1,7574:8827540,20597400 +g1,7574:9775977,20597400 +g1,7574:11040560,20597400 +g1,7574:13569726,20597400 +g1,7574:16731183,20597400 +g1,7574:17995766,20597400 +h1,7574:18311912,20597400:0,0,0 +k1,7574:31966991,20597400:13655079 +g1,7574:31966991,20597400 +) +(1,7574:7246811,21263578:24720180,404226,101187 +h1,7574:7246811,21263578:0,0,0 +g1,7574:8195248,21263578 +g1,7574:8511394,21263578 +g1,7574:8827540,21263578 +g1,7574:9775977,21263578 +g1,7574:11040560,21263578 +g1,7574:13569726,21263578 +g1,7574:17995766,21263578 +g1,7574:19260349,21263578 +h1,7574:19576495,21263578:0,0,0 +k1,7574:31966991,21263578:12390496 +g1,7574:31966991,21263578 +) +(1,7574:7246811,21929756:24720180,404226,101187 +h1,7574:7246811,21929756:0,0,0 +g1,7574:8195248,21929756 +g1,7574:8511394,21929756 +g1,7574:8827540,21929756 +g1,7574:9775977,21929756 +g1,7574:11040560,21929756 +g1,7574:13569726,21929756 +g1,7574:17679620,21929756 +g1,7574:18944203,21929756 +h1,7574:19260349,21929756:0,0,0 +k1,7574:31966991,21929756:12706642 +g1,7574:31966991,21929756 +) +(1,7574:7246811,22595934:24720180,404226,82312 +h1,7574:7246811,22595934:0,0,0 +g1,7574:8195248,22595934 +g1,7574:8511394,22595934 +g1,7574:8827540,22595934 +g1,7574:9775977,22595934 +g1,7574:11040560,22595934 +g1,7574:13569726,22595934 +g1,7574:23054097,22595934 +k1,7574:23054097,22595934:0 +h1,7574:26847845,22595934:0,0,0 +k1,7574:31966991,22595934:5119146 +g1,7574:31966991,22595934 +) +(1,7574:7246811,23262112:24720180,404226,107478 +h1,7574:7246811,23262112:0,0,0 +g1,7574:8195248,23262112 +g1,7574:8511394,23262112 +g1,7574:8827540,23262112 +g1,7574:9775977,23262112 +g1,7574:11040560,23262112 +g1,7574:13569726,23262112 +g1,7574:17679620,23262112 +g1,7574:20524931,23262112 +g1,7574:24002534,23262112 +h1,7574:25899408,23262112:0,0,0 +k1,7574:31966991,23262112:6067583 +g1,7574:31966991,23262112 +) +(1,7574:7246811,23928290:24720180,404226,82312 +h1,7574:7246811,23928290:0,0,0 +g1,7574:8195248,23928290 +g1,7574:8511394,23928290 +g1,7574:8827540,23928290 +g1,7574:9775977,23928290 +g1,7574:11040560,23928290 +g1,7574:13569726,23928290 +g1,7574:18628057,23928290 +g1,7574:20524931,23928290 +g1,7574:21789514,23928290 +g1,7574:23686388,23928290 +g1,7574:26847845,23928290 +h1,7574:29693156,23928290:0,0,0 +k1,7574:31966991,23928290:2273835 +g1,7574:31966991,23928290 +) +(1,7574:7246811,24594468:24720180,404226,101187 +h1,7574:7246811,24594468:0,0,0 +g1,7574:8195248,24594468 +g1,7574:8511394,24594468 +g1,7574:8827540,24594468 +g1,7574:9775977,24594468 +g1,7574:10724414,24594468 +g1,7574:11988997,24594468 +g1,7574:14518163,24594468 +g1,7574:17679620,24594468 +g1,7574:18944203,24594468 +g1,7574:20841077,24594468 +g1,7574:23054097,24594468 +h1,7574:25267117,24594468:0,0,0 +k1,7574:31966991,24594468:6699874 +g1,7574:31966991,24594468 +) +(1,7574:7246811,25260646:24720180,410518,76021 +h1,7574:7246811,25260646:0,0,0 +g1,7574:8195248,25260646 +g1,7574:8511394,25260646 +g1,7574:9143686,25260646 +g1,7574:12305143,25260646 +g1,7574:12621289,25260646 +g1,7574:12937435,25260646 +g1,7574:13253581,25260646 +g1,7574:13885873,25260646 +g1,7574:15782747,25260646 +g1,7574:17047330,25260646 +g1,7574:19260350,25260646 +g1,7574:20841079,25260646 +g1,7574:22737953,25260646 +g1,7574:24634827,25260646 +g1,7574:26531701,25260646 +g1,7574:28112430,25260646 +h1,7574:29060867,25260646:0,0,0 +k1,7574:31966991,25260646:2906124 +g1,7574:31966991,25260646 +) +(1,7574:7246811,25926824:24720180,404226,82312 +h1,7574:7246811,25926824:0,0,0 +g1,7574:8195248,25926824 +g1,7574:8511394,25926824 +g1,7574:8827540,25926824 +g1,7574:10092123,25926824 +g1,7574:12621289,25926824 +g1,7574:15782746,25926824 +g1,7574:17047329,25926824 +g1,7574:19260349,25926824 +g1,7574:20524932,25926824 +g1,7574:21789515,25926824 +g1,7574:23054098,25926824 +g1,7574:24318681,25926824 +h1,7574:25267118,25926824:0,0,0 +k1,7574:31966991,25926824:6699873 +g1,7574:31966991,25926824 +) +(1,7574:7246811,26593002:24720180,410518,82312 +h1,7574:7246811,26593002:0,0,0 +g1,7574:8195248,26593002 +g1,7574:8511394,26593002 +g1,7574:9143686,26593002 +g1,7574:13253580,26593002 +g1,7574:13885872,26593002 +g1,7574:15150455,26593002 +g1,7574:17047330,26593002 +g1,7574:18628059,26593002 +g1,7574:21157225,26593002 +g1,7574:23054099,26593002 +g1,7574:24950973,26593002 +g1,7574:26847847,26593002 +g1,7574:29060867,26593002 +h1,7574:30009304,26593002:0,0,0 +k1,7574:31966991,26593002:1957687 +g1,7574:31966991,26593002 +) +(1,7574:7246811,27259180:24720180,410518,82312 +h1,7574:7246811,27259180:0,0,0 +g1,7574:8195248,27259180 +g1,7574:8511394,27259180 +g1,7574:8827540,27259180 +g1,7574:10092123,27259180 +g1,7574:12621289,27259180 +g1,7574:17995766,27259180 +g1,7574:18944203,27259180 +h1,7574:19260349,27259180:0,0,0 +k1,7574:31966991,27259180:12706642 +g1,7574:31966991,27259180 +) +(1,7574:7246811,27925358:24720180,410518,101187 +h1,7574:7246811,27925358:0,0,0 +g1,7574:8195248,27925358 +g1,7574:8511394,27925358 +g1,7574:8827540,27925358 +g1,7574:9775977,27925358 +g1,7574:11040560,27925358 +g1,7574:11672852,27925358 +g1,7574:12937435,27925358 +g1,7574:14834309,27925358 +g1,7574:19260349,27925358 +h1,7574:21473369,27925358:0,0,0 +k1,7574:31966991,27925358:10493622 +g1,7574:31966991,27925358 +) +(1,7574:7246811,28591536:24720180,410518,76021 +h1,7574:7246811,28591536:0,0,0 +g1,7574:8195248,28591536 +g1,7574:8511394,28591536 +g1,7574:8827540,28591536 +g1,7574:9775977,28591536 +g1,7574:11040560,28591536 +g1,7574:11672852,28591536 +g1,7574:12937435,28591536 +g1,7574:14834309,28591536 +g1,7574:18311912,28591536 +g1,7574:20208786,28591536 +g1,7574:22421806,28591536 +g1,7574:23370243,28591536 +g1,7574:25583263,28591536 +k1,7574:25583263,28591536:0 +h1,7574:28744720,28591536:0,0,0 +k1,7574:31966991,28591536:3222271 +g1,7574:31966991,28591536 +) +(1,7574:7246811,29257714:24720180,410518,107478 +h1,7574:7246811,29257714:0,0,0 +g1,7574:8195248,29257714 +g1,7574:8511394,29257714 +g1,7574:9143686,29257714 +g1,7574:11672852,29257714 +g1,7574:11988998,29257714 +g1,7574:12305144,29257714 +g1,7574:12621290,29257714 +g1,7574:12937436,29257714 +g1,7574:13253582,29257714 +g1,7574:13885874,29257714 +g1,7574:15782748,29257714 +g1,7574:17363477,29257714 +g1,7574:19260351,29257714 +g1,7574:21157225,29257714 +h1,7574:22737953,29257714:0,0,0 +k1,7574:31966991,29257714:9229038 +g1,7574:31966991,29257714 +) +(1,7574:7246811,29923892:24720180,404226,101187 +h1,7574:7246811,29923892:0,0,0 +g1,7574:8195248,29923892 +g1,7574:8511394,29923892 +g1,7574:8827540,29923892 +g1,7574:10092123,29923892 +g1,7574:12621289,29923892 +g1,7574:15782746,29923892 +g1,7574:17047329,29923892 +g1,7574:18944203,29923892 +g1,7574:23370243,29923892 +h1,7574:25583263,29923892:0,0,0 +k1,7574:31966991,29923892:6383728 +g1,7574:31966991,29923892 +) +(1,7574:7246811,30590070:24720180,410518,107478 +h1,7574:7246811,30590070:0,0,0 +g1,7574:8195248,30590070 +g1,7574:8511394,30590070 +g1,7574:9143686,30590070 +g1,7574:11040560,30590070 +g1,7574:11356706,30590070 +g1,7574:11672852,30590070 +g1,7574:11988998,30590070 +g1,7574:12305144,30590070 +g1,7574:12621290,30590070 +g1,7574:12937436,30590070 +g1,7574:13253582,30590070 +g1,7574:13885874,30590070 +g1,7574:15150457,30590070 +h1,7574:16415040,30590070:0,0,0 +k1,7574:31966991,30590070:15551951 +g1,7574:31966991,30590070 +) +(1,7574:7246811,31256248:24720180,410518,76021 +h1,7574:7246811,31256248:0,0,0 +g1,7574:8195248,31256248 +g1,7574:8511394,31256248 +g1,7574:9143686,31256248 +g1,7574:10092123,31256248 +g1,7574:10408269,31256248 +g1,7574:10724415,31256248 +g1,7574:11040561,31256248 +g1,7574:11356707,31256248 +g1,7574:11672853,31256248 +g1,7574:11988999,31256248 +g1,7574:12305145,31256248 +g1,7574:12621291,31256248 +g1,7574:12937437,31256248 +g1,7574:13253583,31256248 +g1,7574:13885875,31256248 +g1,7574:15150458,31256248 +g1,7574:17047332,31256248 +g1,7574:17679624,31256248 +g1,7574:18628061,31256248 +h1,7574:18944207,31256248:0,0,0 +k1,7574:31966991,31256248:13022784 +g1,7574:31966991,31256248 +) +(1,7574:7246811,31922426:24720180,410518,101187 +h1,7574:7246811,31922426:0,0,0 +g1,7574:8195248,31922426 +g1,7574:8511394,31922426 +g1,7574:9143686,31922426 +g1,7574:12305143,31922426 +g1,7574:12621289,31922426 +g1,7574:12937435,31922426 +g1,7574:13253581,31922426 +g1,7574:13885873,31922426 +g1,7574:15150456,31922426 +h1,7574:16731184,31922426:0,0,0 +k1,7574:31966991,31922426:15235807 +g1,7574:31966991,31922426 +) +(1,7574:7246811,32588604:24720180,410518,107478 +h1,7574:7246811,32588604:0,0,0 +g1,7574:8195248,32588604 +g1,7574:8511394,32588604 +g1,7574:9143686,32588604 +g1,7574:13885872,32588604 +g1,7574:15150455,32588604 +h1,7574:16731183,32588604:0,0,0 +k1,7574:31966991,32588604:15235808 +g1,7574:31966991,32588604 +) +(1,7574:7246811,33254782:24720180,410518,76021 +h1,7574:7246811,33254782:0,0,0 +g1,7574:8195248,33254782 +g1,7574:8511394,33254782 +g1,7574:9143686,33254782 +g1,7574:12621289,33254782 +g1,7574:12937435,33254782 +g1,7574:13253581,33254782 +g1,7574:13885873,33254782 +g1,7574:15782747,33254782 +g1,7574:17047330,33254782 +g1,7574:18944204,33254782 +g1,7574:20524933,33254782 +g1,7574:21157225,33254782 +h1,7574:21789516,33254782:0,0,0 +k1,7574:31966991,33254782:10177475 +g1,7574:31966991,33254782 +) +(1,7574:7246811,33920960:24720180,410518,82312 +h1,7574:7246811,33920960:0,0,0 +g1,7574:8195248,33920960 +g1,7574:8511394,33920960 +g1,7574:8827540,33920960 +g1,7574:10092123,33920960 +g1,7574:12621289,33920960 +g1,7574:15782746,33920960 +g1,7574:17047329,33920960 +g1,7574:18944203,33920960 +g1,7574:21473369,33920960 +g1,7574:24002535,33920960 +h1,7574:26215555,33920960:0,0,0 +k1,7574:31966991,33920960:5751436 +g1,7574:31966991,33920960 +) +(1,7574:7246811,34587138:24720180,410518,82312 +h1,7574:7246811,34587138:0,0,0 +g1,7574:8195248,34587138 +g1,7574:8511394,34587138 +g1,7574:9143686,34587138 +g1,7574:13253580,34587138 +g1,7574:13885872,34587138 +g1,7574:15150455,34587138 +g1,7574:17047330,34587138 +g1,7574:18628059,34587138 +g1,7574:21157225,34587138 +g1,7574:24002536,34587138 +g1,7574:26847847,34587138 +h1,7574:29060867,34587138:0,0,0 +k1,7574:31966991,34587138:2906124 +g1,7574:31966991,34587138 +) +(1,7574:7246811,35253316:24720180,410518,82312 +h1,7574:7246811,35253316:0,0,0 +g1,7574:8195248,35253316 +g1,7574:8511394,35253316 +g1,7574:8827540,35253316 +g1,7574:10092123,35253316 +g1,7574:12621289,35253316 +g1,7574:17995766,35253316 +g1,7574:18944203,35253316 +h1,7574:19260349,35253316:0,0,0 +k1,7574:31966991,35253316:12706642 +g1,7574:31966991,35253316 +) +(1,7574:7246811,35919494:24720180,410518,101187 +h1,7574:7246811,35919494:0,0,0 +g1,7574:8195248,35919494 +g1,7574:8511394,35919494 +g1,7574:8827540,35919494 +g1,7574:9775977,35919494 +g1,7574:11040560,35919494 +g1,7574:11672852,35919494 +g1,7574:12937435,35919494 +g1,7574:14834309,35919494 +g1,7574:19260349,35919494 +h1,7574:21473369,35919494:0,0,0 +k1,7574:31966991,35919494:10493622 +g1,7574:31966991,35919494 +) +(1,7574:7246811,36585672:24720180,410518,101187 +h1,7574:7246811,36585672:0,0,0 +g1,7574:8195248,36585672 +g1,7574:8511394,36585672 +g1,7574:8827540,36585672 +g1,7574:9775977,36585672 +g1,7574:11040560,36585672 +g1,7574:11672852,36585672 +g1,7574:12937435,36585672 +g1,7574:14834309,36585672 +g1,7574:19260349,36585672 +h1,7574:21473369,36585672:0,0,0 +k1,7574:31966991,36585672:10493622 +g1,7574:31966991,36585672 +) +(1,7574:7246811,37251850:24720180,404226,101187 +h1,7574:7246811,37251850:0,0,0 +g1,7574:8195248,37251850 +g1,7574:8511394,37251850 +g1,7574:9143686,37251850 +g1,7574:11672852,37251850 +g1,7574:14834309,37251850 +g1,7574:16098892,37251850 +h1,7574:19892640,37251850:0,0,0 +k1,7574:31966991,37251850:12074351 +g1,7574:31966991,37251850 +) +] +) +g1,7575:31966991,37353037 +g1,7575:7246811,37353037 +g1,7575:7246811,37353037 +g1,7575:31966991,37353037 +g1,7575:31966991,37353037 +) +h1,7575:7246811,37549645:0,0,0 +(1,7579:7246811,38840782:24720180,513147,134348 +h1,7578:7246811,38840782:983040,0,0 +k1,7578:10067027,38840782:232199 +k1,7578:11167578,38840782:232199 +k1,7578:13122719,38840782:232199 +k1,7578:14374003,38840782:232199 +k1,7578:17537627,38840782:232199 +k1,7578:18429118,38840782:232199 +k1,7578:19680403,38840782:232200 +k1,7578:21872128,38840782:232199 +k1,7578:23295772,38840782:232199 +k1,7578:24547056,38840782:232199 +k1,7578:26847571,38840782:232199 +k1,7578:27739062,38840782:232199 +k1,7578:31098639,38840782:232199 +k1,7578:31966991,38840782:0 +) +(1,7579:7246811,39682270:24720180,513147,134348 +g1,7578:8550322,39682270 +g1,7578:10887991,39682270 +g1,7578:13291196,39682270 +g1,7578:15129480,39682270 +g1,7578:17064102,39682270 +g1,7578:18282416,39682270 +g1,7578:20202620,39682270 +g1,7578:20816692,39682270 +g1,7578:22601892,39682270 +g1,7578:23748772,39682270 +g1,7578:26571407,39682270 +k1,7579:31966991,39682270:2007373 +g1,7579:31966991,39682270 +) +v1,7581:7246811,40798096:0,393216,0 +(1,7588:7246811,41819741:24720180,1414861,196608 +g1,7588:7246811,41819741 +g1,7588:7246811,41819741 +g1,7588:7050203,41819741 +(1,7588:7050203,41819741:0,1414861,196608 +r1,7618:32163599,41819741:25113396,1611469,196608 +k1,7588:7050203,41819741:-25113396 +) +(1,7588:7050203,41819741:25113396,1414861,196608 +[1,7588:7246811,41819741:24720180,1218253,0 +(1,7583:7246811,41012006:24720180,410518,107478 +(1,7582:7246811,41012006:0,0,0 +g1,7582:7246811,41012006 +g1,7582:7246811,41012006 +g1,7582:6919131,41012006 +(1,7582:6919131,41012006:0,0,0 +) +g1,7582:7246811,41012006 +) +k1,7583:7246811,41012006:0 +h1,7583:15466599,41012006:0,0,0 +k1,7583:31966991,41012006:16500392 +g1,7583:31966991,41012006 +) +(1,7587:7246811,41743720:24720180,404226,76021 +(1,7585:7246811,41743720:0,0,0 +g1,7585:7246811,41743720 +g1,7585:7246811,41743720 +g1,7585:6919131,41743720 +(1,7585:6919131,41743720:0,0,0 +) +g1,7585:7246811,41743720 +) +g1,7587:8195248,41743720 +g1,7587:9459831,41743720 +h1,7587:12305142,41743720:0,0,0 +k1,7587:31966990,41743720:19661848 +g1,7587:31966990,41743720 +) +] +) +g1,7588:31966991,41819741 +g1,7588:7246811,41819741 +g1,7588:7246811,41819741 +g1,7588:31966991,41819741 +g1,7588:31966991,41819741 +) +h1,7588:7246811,42016349:0,0,0 +(1,7592:7246811,43307486:24720180,513147,134348 +h1,7591:7246811,43307486:983040,0,0 +k1,7591:9346735,43307486:298995 +k1,7591:10416434,43307486:298996 +k1,7591:13376846,43307486:298995 +k1,7591:14544194,43307486:298996 +k1,7591:16034634,43307486:298995 +k1,7591:16799590,43307486:298995 +k1,7591:18117671,43307486:298996 +k1,7591:20114704,43307486:298995 +k1,7591:21981320,43307486:298995 +k1,7591:22636176,43307486:298996 +k1,7591:24747897,43307486:298995 +k1,7591:28363670,43307486:298996 +k1,7591:29350138,43307486:298995 +k1,7591:31966991,43307486:0 +) +(1,7592:7246811,44148974:24720180,513147,134348 +g1,7591:11325771,44148974 +g1,7591:13092621,44148974 +g1,7591:13647710,44148974 +g1,7591:16604694,44148974 +g1,7591:18484266,44148974 +g1,7591:21445838,44148974 +g1,7591:23212688,44148974 +g1,7591:24431002,44148974 +g1,7591:26351206,44148974 +k1,7592:31966991,44148974:4021949 +g1,7592:31966991,44148974 +) +(1,7594:7246811,44990462:24720180,513147,126483 +h1,7593:7246811,44990462:983040,0,0 +k1,7593:9706424,44990462:279886 +k1,7593:12978028,44990462:279885 +k1,7593:15113238,44990462:279886 +k1,7593:16384683,44990462:279885 +k1,7593:17612220,44990462:279886 +k1,7593:18247965,44990462:279885 +k1,7593:19767792,44990462:279886 +k1,7593:23519775,44990462:279886 +k1,7593:24458952,44990462:279885 +k1,7593:26436876,44990462:279886 +k1,7593:27284958,44990462:279885 +k1,7593:27963303,44990462:279886 +k1,7593:29434633,44990462:279885 +k1,7593:31098639,44990462:279886 +k1,7593:31966991,44990462:0 +) +] +) +] +r1,7618:32583029,45706769:26214,39845888,0 ) ] ) ) -g1,7613:32583029,45116945 +g1,7618:32583029,45116945 ) ] -(1,7613:32583029,45706769:0,0,0 -g1,7613:32583029,45706769 +(1,7618:32583029,45706769:0,0,0 +g1,7618:32583029,45706769 ) ) ] -(1,7613:6630773,47279633:25952256,0,0 -h1,7613:6630773,47279633:25952256,0,0 +(1,7618:6630773,47279633:25952256,0,0 +h1,7618:6630773,47279633:25952256,0,0 ) ] -h1,7613:4262630,4025873:0,0,0 +h1,7618:4262630,4025873:0,0,0 ] !28178 }142 -Input:1058:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1059:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1060:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1061:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1062:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1063:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1064:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1065:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1066:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1067:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1068:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1069:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1070:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 +Input:1054:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1055:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1056:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1057:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1058:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1059:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1060:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1061:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1062:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1063:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1064:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1065:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1066:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 {143 -[1,7634:4262630,47279633:28320399,43253760,0 -(1,7634:4262630,4025873:0,0,0 -[1,7634:-473657,4025873:25952256,0,0 -(1,7634:-473657,-710414:25952256,0,0 -h1,7634:-473657,-710414:0,0,0 -(1,7634:-473657,-710414:0,0,0 -(1,7634:-473657,-710414:0,0,0 -g1,7634:-473657,-710414 -(1,7634:-473657,-710414:65781,0,65781 -g1,7634:-407876,-710414 -[1,7634:-407876,-644633:0,0,0 +[1,7639:4262630,47279633:28320399,43253760,0 +(1,7639:4262630,4025873:0,0,0 +[1,7639:-473657,4025873:25952256,0,0 +(1,7639:-473657,-710414:25952256,0,0 +h1,7639:-473657,-710414:0,0,0 +(1,7639:-473657,-710414:0,0,0 +(1,7639:-473657,-710414:0,0,0 +g1,7639:-473657,-710414 +(1,7639:-473657,-710414:65781,0,65781 +g1,7639:-407876,-710414 +[1,7639:-407876,-644633:0,0,0 ] ) -k1,7634:-473657,-710414:-65781 +k1,7639:-473657,-710414:-65781 ) ) -k1,7634:25478599,-710414:25952256 -g1,7634:25478599,-710414 +k1,7639:25478599,-710414:25952256 +g1,7639:25478599,-710414 ) ] ) -[1,7634:6630773,47279633:25952256,43253760,0 -[1,7634:6630773,4812305:25952256,786432,0 -(1,7634:6630773,4812305:25952256,505283,134348 -(1,7634:6630773,4812305:25952256,505283,134348 -g1,7634:3078558,4812305 -[1,7634:3078558,4812305:0,0,0 -(1,7634:3078558,2439708:0,1703936,0 -k1,7634:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7634:2537886,2439708:1179648,16384,0 +[1,7639:6630773,47279633:25952256,43253760,0 +[1,7639:6630773,4812305:25952256,786432,0 +(1,7639:6630773,4812305:25952256,505283,134348 +(1,7639:6630773,4812305:25952256,505283,134348 +g1,7639:3078558,4812305 +[1,7639:3078558,4812305:0,0,0 +(1,7639:3078558,2439708:0,1703936,0 +k1,7639:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7639:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7634:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7639:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7634:3078558,4812305:0,0,0 -(1,7634:3078558,2439708:0,1703936,0 -g1,7634:29030814,2439708 -g1,7634:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7634:36151628,1915420:16384,1179648,0 +[1,7639:3078558,4812305:0,0,0 +(1,7639:3078558,2439708:0,1703936,0 +g1,7639:29030814,2439708 +g1,7639:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7639:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7634:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7639:37855564,2439708:1179648,16384,0 ) ) -k1,7634:3078556,2439708:-34777008 +k1,7639:3078556,2439708:-34777008 ) ] -[1,7634:3078558,4812305:0,0,0 -(1,7634:3078558,49800853:0,16384,2228224 -k1,7634:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7634:2537886,49800853:1179648,16384,0 +[1,7639:3078558,4812305:0,0,0 +(1,7639:3078558,49800853:0,16384,2228224 +k1,7639:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7639:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7634:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,7634:3078558,4812305:0,0,0 -(1,7634:3078558,49800853:0,16384,2228224 -g1,7634:29030814,49800853 -g1,7634:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7634:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7634:37855564,49800853:1179648,16384,0 -) -) -k1,7634:3078556,49800853:-34777008 -) -] -g1,7634:6630773,4812305 -k1,7634:24573876,4812305:16747726 -g1,7634:25960617,4812305 -g1,7634:26609423,4812305 -g1,7634:29923578,4812305 -) -) -] -[1,7634:6630773,45706769:25952256,40108032,0 -(1,7634:6630773,45706769:25952256,40108032,0 -(1,7634:6630773,45706769:0,0,0 -g1,7634:6630773,45706769 -) -[1,7634:6630773,45706769:25952256,40108032,0 -v1,7613:6630773,6254097:0,393216,0 -(1,7613:6630773,22502652:25952256,16641771,616038 -g1,7613:6630773,22502652 -(1,7613:6630773,22502652:25952256,16641771,616038 -(1,7613:6630773,23118690:25952256,17257809,0 -[1,7613:6630773,23118690:25952256,17257809,0 -(1,7613:6630773,23092476:25952256,17231595,0 -r1,7613:6656987,23092476:26214,17231595,0 -[1,7613:6656987,23092476:25899828,17231595,0 -(1,7613:6656987,22502652:25899828,16051947,0 -[1,7613:7246811,22502652:24720180,16051947,0 -(1,7589:7246811,6963852:24720180,513147,126483 -k1,7588:9146874,6963852:239381 -k1,7588:10716636,6963852:239381 -k1,7588:11607446,6963852:239382 -k1,7588:12662095,6963852:239381 -k1,7588:13920561,6963852:239381 -k1,7588:17464923,6963852:239381 -k1,7588:18895749,6963852:239381 -k1,7588:20529082,6963852:239382 -k1,7588:21124323,6963852:239381 -k1,7588:22603645,6963852:239381 -k1,7588:26315123,6963852:239381 -k1,7588:27213796,6963852:239381 -k1,7588:29151216,6963852:239382 -k1,7588:29958794,6963852:239381 -k1,7588:30770304,6963852:239381 -k1,7588:31966991,6963852:0 -) -(1,7589:7246811,7805340:24720180,513147,126483 -k1,7588:10731310,7805340:228670 -k1,7588:11491477,7805340:228670 -k1,7588:14966146,7805340:228671 -k1,7588:15846244,7805340:228670 -k1,7588:17206721,7805340:228670 -k1,7588:20193146,7805340:228670 -k1,7588:22102160,7805340:228671 -k1,7588:23016992,7805340:228670 -k1,7588:23601522,7805340:228670 -k1,7588:25070133,7805340:228670 -k1,7588:28770901,7805340:228671 -k1,7588:29947222,7805340:228670 -k1,7588:31307699,7805340:228670 -k1,7588:31966991,7805340:0 -) -(1,7589:7246811,8646828:24720180,513147,126483 -k1,7588:8497536,8646828:231640 -k1,7588:10441632,8646828:231640 -k1,7588:13954004,8646828:231640 -k1,7588:17231757,8646828:231640 -k1,7588:18411048,8646828:231640 -k1,7588:22260931,8646828:231640 -k1,7588:23427114,8646828:231640 -k1,7588:24057213,8646828:231640 -k1,7588:26222820,8646828:231640 -k1,7588:27651147,8646828:231640 -k1,7588:30874506,8646828:231640 -k1,7588:31966991,8646828:0 -) -(1,7589:7246811,9488316:24720180,513147,134348 -k1,7588:7831485,9488316:228814 -k1,7588:11166051,9488316:228815 -k1,7588:12759980,9488316:228814 -k1,7588:13616629,9488316:228814 -k1,7588:15537583,9488316:228814 -k1,7588:17637451,9488316:228815 -k1,7588:18222125,9488316:228814 -k1,7588:22257270,9488316:228814 -k1,7588:23677530,9488316:228815 -k1,7588:26086727,9488316:228814 -k1,7588:27063307,9488316:228814 -k1,7588:28805347,9488316:228814 -k1,7588:30483818,9488316:228815 -k1,7588:31178593,9488316:228814 -k1,7588:31966991,9488316:0 -) -(1,7589:7246811,10329804:24720180,513147,126483 -k1,7588:9615555,10329804:230960 -k1,7588:10202375,10329804:230960 -k1,7588:12227711,10329804:230960 -k1,7588:13743176,10329804:230959 -k1,7588:16923911,10329804:230960 -k1,7588:17686368,10329804:230960 -k1,7588:20447018,10329804:230960 -k1,7588:21337270,10329804:230960 -k1,7588:24190981,10329804:230960 -k1,7588:26883472,10329804:230959 -k1,7588:29744392,10329804:230960 -k1,7588:31350953,10329804:230960 -k1,7588:31966991,10329804:0 -) -(1,7589:7246811,11171292:24720180,513147,126483 -k1,7588:8601494,11171292:197973 -k1,7588:11658148,11171292:197974 -k1,7588:13449957,11171292:197973 -k1,7588:15215552,11171292:197974 -k1,7588:16432610,11171292:197973 -k1,7588:17870524,11171292:197973 -k1,7588:21714266,11171292:197974 -k1,7588:22595124,11171292:197973 -k1,7588:25322788,11171292:197974 -k1,7588:26896362,11171292:197973 -k1,7588:28251046,11171292:197974 -k1,7588:31307699,11171292:197973 -k1,7588:31966991,11171292:0 -) -(1,7589:7246811,12012780:24720180,513147,126483 -g1,7588:10319794,12012780 -g1,7588:11050520,12012780 -g1,7588:11909041,12012780 -k1,7589:31966991,12012780:17234004 -g1,7589:31966991,12012780 -) -(1,7591:7246811,12854268:24720180,513147,126483 -h1,7590:7246811,12854268:983040,0,0 -k1,7590:9255338,12854268:196457 -k1,7590:12167607,12854268:196457 -k1,7590:13383148,12854268:196456 -k1,7590:15755400,12854268:196457 -k1,7590:16820209,12854268:196457 -k1,7590:18546932,12854268:196457 -k1,7590:19514091,12854268:196456 -k1,7590:22426360,12854268:196457 -k1,7590:23570468,12854268:196457 -k1,7590:24786010,12854268:196457 -k1,7590:28263198,12854268:196456 -k1,7590:29651100,12854268:196457 -k1,7590:30618260,12854268:196457 -k1,7591:31966991,12854268:0 -) -(1,7591:7246811,13695756:24720180,513147,134348 -g1,7590:9026113,13695756 -g1,7590:9884634,13695756 -g1,7590:11102948,13695756 -g1,7590:14145784,13695756 -g1,7590:15951956,13695756 -g1,7590:17098836,13695756 -g1,7590:18501306,13695756 -g1,7590:21416347,13695756 -g1,7590:22807021,13695756 -g1,7590:23794648,13695756 -g1,7590:26449511,13695756 -g1,7590:27308032,13695756 -k1,7591:31966991,13695756:1802245 -g1,7591:31966991,13695756 -) -v1,7593:7246811,14886222:0,393216,0 -(1,7599:7246811,16539966:24720180,2046960,196608 -g1,7599:7246811,16539966 -g1,7599:7246811,16539966 -g1,7599:7050203,16539966 -(1,7599:7050203,16539966:0,2046960,196608 -r1,7613:32163599,16539966:25113396,2243568,196608 -k1,7599:7050203,16539966:-25113396 -) -(1,7599:7050203,16539966:25113396,2046960,196608 -[1,7599:7246811,16539966:24720180,1850352,0 -(1,7595:7246811,15100132:24720180,410518,101187 -(1,7594:7246811,15100132:0,0,0 -g1,7594:7246811,15100132 -g1,7594:7246811,15100132 -g1,7594:6919131,15100132 -(1,7594:6919131,15100132:0,0,0 -) -g1,7594:7246811,15100132 -) -g1,7595:12305142,15100132 -g1,7595:13253580,15100132 -g1,7595:21789514,15100132 -h1,7595:25267117,15100132:0,0,0 -k1,7595:31966991,15100132:6699874 -g1,7595:31966991,15100132 -) -(1,7596:7246811,15766310:24720180,410518,101187 -h1,7596:7246811,15766310:0,0,0 -g1,7596:11356705,15766310 -g1,7596:12305143,15766310 -g1,7596:20841077,15766310 -g1,7596:22737951,15766310 -h1,7596:24950971,15766310:0,0,0 -k1,7596:31966991,15766310:7016020 -g1,7596:31966991,15766310 -) -(1,7597:7246811,16432488:24720180,410518,107478 -h1,7597:7246811,16432488:0,0,0 -g1,7597:13253579,16432488 -g1,7597:14202017,16432488 -k1,7597:14202017,16432488:0 -h1,7597:19892640,16432488:0,0,0 -k1,7597:31966991,16432488:12074351 -g1,7597:31966991,16432488 -) -] -) -g1,7599:31966991,16539966 -g1,7599:7246811,16539966 -g1,7599:7246811,16539966 -g1,7599:31966991,16539966 -g1,7599:31966991,16539966 -) -h1,7599:7246811,16736574:0,0,0 -(1,7603:7246811,18102350:24720180,513147,126483 -h1,7602:7246811,18102350:983040,0,0 -k1,7602:9559425,18102350:132887 -k1,7602:11379209,18102350:132887 -k1,7602:12043593,18102350:132887 -k1,7602:14031148,18102350:132886 -k1,7602:14973405,18102350:132887 -k1,7602:16125377,18102350:132887 -k1,7602:19444624,18102350:132887 -k1,7602:22212714,18102350:132887 -k1,7602:23364686,18102350:132887 -k1,7602:25177915,18102350:132886 -k1,7602:25970094,18102350:132887 -k1,7602:27122066,18102350:132887 -k1,7602:28494894,18102350:132887 -k1,7602:31966991,18102350:0 -) -(1,7603:7246811,18943838:24720180,505283,7863 -g1,7602:8637485,18943838 -g1,7602:9855799,18943838 -k1,7603:31966991,18943838:19221710 -g1,7603:31966991,18943838 -) -v1,7605:7246811,20134304:0,393216,0 -(1,7611:7246811,21781756:24720180,2040668,196608 -g1,7611:7246811,21781756 -g1,7611:7246811,21781756 -g1,7611:7050203,21781756 -(1,7611:7050203,21781756:0,2040668,196608 -r1,7613:32163599,21781756:25113396,2237276,196608 -k1,7611:7050203,21781756:-25113396 -) -(1,7611:7050203,21781756:25113396,2040668,196608 -[1,7611:7246811,21781756:24720180,1844060,0 -(1,7607:7246811,20341922:24720180,404226,101187 -(1,7606:7246811,20341922:0,0,0 -g1,7606:7246811,20341922 -g1,7606:7246811,20341922 -g1,7606:6919131,20341922 -(1,7606:6919131,20341922:0,0,0 -) -g1,7606:7246811,20341922 -) -g1,7607:10092122,20341922 -g1,7607:11040560,20341922 -h1,7607:11356706,20341922:0,0,0 -k1,7607:31966990,20341922:20610284 -g1,7607:31966990,20341922 -) -(1,7608:7246811,21008100:24720180,404226,101187 -h1,7608:7246811,21008100:0,0,0 -g1,7608:9775977,21008100 -g1,7608:10724415,21008100 -g1,7608:16098892,21008100 -g1,7608:16731184,21008100 -g1,7608:19892641,21008100 -g1,7608:20524933,21008100 -h1,7608:24318681,21008100:0,0,0 -k1,7608:31966991,21008100:7648310 -g1,7608:31966991,21008100 -) -(1,7609:7246811,21674278:24720180,410518,107478 -h1,7609:7246811,21674278:0,0,0 -g1,7609:9775977,21674278 -g1,7609:10724415,21674278 -g1,7609:14518163,21674278 -g1,7609:15466600,21674278 -g1,7609:16098892,21674278 -h1,7609:22105660,21674278:0,0,0 -k1,7609:31966991,21674278:9861331 -g1,7609:31966991,21674278 -) -] -) -g1,7611:31966991,21781756 -g1,7611:7246811,21781756 -g1,7611:7246811,21781756 -g1,7611:31966991,21781756 -g1,7611:31966991,21781756 -) -h1,7611:7246811,21978364:0,0,0 -] -) -] -r1,7613:32583029,23092476:26214,17231595,0 -) -] -) -) -g1,7613:32583029,22502652 -) -h1,7613:6630773,23118690:0,0,0 -v1,7616:6630773,24484466:0,393216,0 -(1,7619:6630773,28650082:25952256,4558832,616038 -g1,7619:6630773,28650082 -(1,7619:6630773,28650082:25952256,4558832,616038 -(1,7619:6630773,29266120:25952256,5174870,0 -[1,7619:6630773,29266120:25952256,5174870,0 -(1,7619:6630773,29239906:25952256,5122442,0 -r1,7619:6656987,29239906:26214,5122442,0 -[1,7619:6656987,29239906:25899828,5122442,0 -(1,7619:6656987,28650082:25899828,3942794,0 -[1,7619:7246811,28650082:24720180,3942794,0 -(1,7617:7246811,25991270:24720180,1283982,196608 -(1,7616:7246811,25991270:0,1283982,196608 -r1,7619:9812056,25991270:2565245,1480590,196608 -k1,7616:7246811,25991270:-2565245 -) -(1,7616:7246811,25991270:2565245,1283982,196608 -) -k1,7616:10024972,25991270:212916 -k1,7616:12181685,25991270:212915 -k1,7616:13679107,25991270:212916 -k1,7616:14911108,25991270:212916 -k1,7616:18379852,25991270:212915 -k1,7616:20448092,25991270:212916 -k1,7616:22704420,25991270:212915 -k1,7616:24311287,25991270:212916 -k1,7616:25543288,25991270:212916 -k1,7616:27914959,25991270:212915 -k1,7616:28795031,25991270:212916 -(1,7616:28795031,25991270:0,452978,115847 -r1,7619:31966991,25991270:3171960,568825,115847 -k1,7616:28795031,25991270:-3171960 -) -(1,7616:28795031,25991270:3171960,452978,115847 -k1,7616:28795031,25991270:3277 -h1,7616:31963714,25991270:0,411205,112570 -) -k1,7616:31966991,25991270:0 -) -(1,7617:7246811,26832758:24720180,513147,115847 -g1,7616:9144078,26832758 -g1,7616:10211659,26832758 -g1,7616:11345431,26832758 -(1,7616:11345431,26832758:0,452978,115847 -r1,7619:15924240,26832758:4578809,568825,115847 -k1,7616:11345431,26832758:-4578809 -) -(1,7616:11345431,26832758:4578809,452978,115847 -g1,7616:14514115,26832758 -g1,7616:15569251,26832758 -h1,7616:15920963,26832758:0,411205,112570 -) -g1,7616:16123469,26832758 -g1,7616:18649881,26832758 -g1,7616:19516266,26832758 -(1,7616:19516266,26832758:0,452978,115847 -r1,7619:24095075,26832758:4578809,568825,115847 -k1,7616:19516266,26832758:-4578809 -) -(1,7616:19516266,26832758:4578809,452978,115847 -g1,7616:22684950,26832758 -g1,7616:23740086,26832758 -h1,7616:24091798,26832758:0,411205,112570 -) -k1,7617:31966991,26832758:7698246 -g1,7617:31966991,26832758 -) -(1,7619:7246811,27674246:24720180,513147,134348 -h1,7618:7246811,27674246:983040,0,0 -k1,7618:10589912,27674246:154119 -k1,7618:11763116,27674246:154119 -k1,7618:14578651,27674246:154118 -k1,7618:15457598,27674246:154119 -k1,7618:16297879,27674246:154119 -k1,7618:17103426,27674246:154119 -k1,7618:18448990,27674246:154119 -k1,7618:21193747,27674246:154119 -k1,7618:22366950,27674246:154118 -k1,7618:25388269,27674246:154119 -k1,7618:26073885,27674246:154119 -k1,7618:30107735,27674246:154119 -k1,7618:31966991,27674246:0 -) -(1,7619:7246811,28515734:24720180,513147,134348 -g1,7618:8888487,28515734 -g1,7618:9486175,28515734 -g1,7618:11075423,28515734 -g1,7618:13080169,28515734 -g1,7618:13635258,28515734 -g1,7618:16924510,28515734 -k1,7619:31966991,28515734:13677366 -g1,7619:31966991,28515734 -) -] -) -] -r1,7619:32583029,29239906:26214,5122442,0 -) -] -) -) -g1,7619:32583029,28650082 -) -h1,7619:6630773,29266120:0,0,0 -(1,7622:6630773,30631896:25952256,513147,134348 -h1,7621:6630773,30631896:983040,0,0 -k1,7621:10158738,30631896:146963 -(1,7621:10158738,30631896:0,452978,115847 -r1,7621:13330698,30631896:3171960,568825,115847 -k1,7621:10158738,30631896:-3171960 -) -(1,7621:10158738,30631896:3171960,452978,115847 -k1,7621:10158738,30631896:3277 -h1,7621:13327421,30631896:0,411205,112570 -) -k1,7621:13477661,30631896:146963 -k1,7621:15047410,30631896:146962 -k1,7621:16213458,30631896:146963 -k1,7621:18072877,30631896:146963 -k1,7621:20207547,30631896:146963 -k1,7621:23034933,30631896:146963 -k1,7621:24575847,30631896:146963 -k1,7621:26006004,30631896:146962 -k1,7621:27542330,30631896:146963 -k1,7621:28636944,30631896:146963 -k1,7621:29802992,30631896:146963 -k1,7622:32583029,30631896:0 -) -(1,7622:6630773,31473384:25952256,505283,126483 -k1,7621:8269008,31473384:198409 -k1,7621:11309057,31473384:198408 -k1,7621:12158894,31473384:198409 -k1,7621:15145205,31473384:198409 -k1,7621:19127006,31473384:198408 -k1,7621:20143304,31473384:198409 -(1,7621:20143304,31473384:0,452978,115847 -r1,7621:23315264,31473384:3171960,568825,115847 -k1,7621:20143304,31473384:-3171960 -) -(1,7621:20143304,31473384:3171960,452978,115847 -k1,7621:20143304,31473384:3277 -h1,7621:23311987,31473384:0,411205,112570 -) -k1,7621:23513673,31473384:198409 -k1,7621:26090383,31473384:198408 -k1,7621:27571987,31473384:198409 -k1,7621:29159759,31473384:198409 -k1,7621:30044329,31473384:198408 -k1,7621:32124932,31473384:198409 -k1,7621:32583029,31473384:0 -) -(1,7622:6630773,32314872:25952256,513147,126483 -k1,7621:8851132,32314872:208404 -k1,7621:13211898,32314872:208405 -k1,7621:14611747,32314872:208404 -k1,7621:19077370,32314872:208404 -k1,7621:19937203,32314872:208405 -k1,7621:22156252,32314872:208404 -k1,7621:23023948,32314872:208404 -k1,7621:24251437,32314872:208404 -k1,7621:28466713,32314872:208405 -k1,7621:31516758,32314872:208404 -k1,7621:32583029,32314872:0 -) -(1,7622:6630773,33156360:25952256,513147,134348 -k1,7621:9267243,33156360:230643 -k1,7621:10113924,33156360:230643 -k1,7621:11363652,33156360:230643 -k1,7621:14029612,33156360:230642 -k1,7621:15823289,33156360:230643 -k1,7621:16681767,33156360:230643 -k1,7621:17931495,33156360:230643 -k1,7621:19529219,33156360:230643 -k1,7621:20419154,33156360:230643 -k1,7621:21667571,33156360:230643 -k1,7621:22557506,33156360:230643 -k1,7621:24813866,33156360:230642 -k1,7621:26235954,33156360:230643 -k1,7621:28158737,33156360:230643 -k1,7621:30091350,33156360:230643 -k1,7621:32583029,33156360:0 -) -(1,7622:6630773,33997848:25952256,513147,126483 -k1,7621:9348251,33997848:263155 -(1,7621:9348251,33997848:0,452978,115847 -r1,7621:12520211,33997848:3171960,568825,115847 -k1,7621:9348251,33997848:-3171960 -) -(1,7621:9348251,33997848:3171960,452978,115847 -k1,7621:9348251,33997848:3277 -h1,7621:12516934,33997848:0,411205,112570 -) -k1,7621:12783367,33997848:263156 -k1,7621:15561138,33997848:263155 -k1,7621:16440331,33997848:263155 -k1,7621:19369491,33997848:263155 -k1,7621:20284075,33997848:263156 -k1,7621:21566315,33997848:263155 -k1,7621:25282562,33997848:263155 -k1,7621:28591830,33997848:263155 -k1,7621:29514278,33997848:263156 -k1,7621:30796518,33997848:263155 -k1,7622:32583029,33997848:0 -) -(1,7622:6630773,34839336:25952256,513147,126483 -k1,7621:8737201,34839336:242584 -k1,7621:11189659,34839336:242584 -k1,7621:14711665,34839336:242584 -k1,7621:17885019,34839336:242584 -k1,7621:19324290,34839336:242584 -k1,7621:20850069,34839336:242584 -k1,7621:22482016,34839336:242584 -k1,7621:24346616,34839336:242584 -k1,7621:25336966,34839336:242584 -k1,7621:27617720,34839336:242584 -k1,7621:28476342,34839336:242584 -k1,7621:29074786,34839336:242584 -k1,7621:30706733,34839336:242584 -k1,7621:32583029,34839336:0 -) -(1,7622:6630773,35680824:25952256,513147,134348 -k1,7621:8261964,35680824:237240 -k1,7621:11212395,35680824:237240 -k1,7621:13185029,35680824:237241 -k1,7621:14441354,35680824:237240 -k1,7621:16332067,35680824:237240 -k1,7621:18637623,35680824:237240 -k1,7621:19822515,35680824:237241 -k1,7621:21078840,35680824:237240 -k1,7621:25081779,35680824:237240 -k1,7621:28160660,35680824:237240 -k1,7621:29084063,35680824:237241 -k1,7621:29937341,35680824:237240 -k1,7621:31193666,35680824:237240 -k1,7621:32583029,35680824:0 -) -(1,7622:6630773,36522312:25952256,513147,134348 -k1,7621:8304936,36522312:160937 -k1,7621:9413525,36522312:160938 -k1,7621:10593547,36522312:160937 -k1,7621:11615628,36522312:160938 -k1,7621:12132425,36522312:160937 -k1,7621:15167117,36522312:160938 -k1,7621:17839394,36522312:160937 -k1,7621:18531828,36522312:160937 -k1,7621:19759037,36522312:160938 -k1,7621:22218322,36522312:160937 -k1,7621:23570705,36522312:160938 -k1,7621:26958635,36522312:160937 -k1,7621:29832764,36522312:160938 -k1,7621:30985261,36522312:160937 -k1,7622:32583029,36522312:0 -) -(1,7622:6630773,37363800:25952256,513147,126483 -k1,7621:8018120,37363800:157236 -k1,7621:9579137,37363800:157236 -k1,7621:13502072,37363800:157236 -k1,7621:16500949,37363800:157236 -k1,7621:17274223,37363800:157236 -k1,7621:18450544,37363800:157236 -k1,7621:19890974,37363800:157235 -k1,7621:21437573,37363800:157236 -k1,7621:22699091,37363800:157236 -k1,7621:23604093,37363800:157236 -k1,7621:25617309,37363800:157236 -k1,7621:29344946,37363800:157236 -k1,7621:30185067,37363800:157236 -k1,7621:32583029,37363800:0 -) -(1,7622:6630773,38205288:25952256,505283,134348 -g1,7621:7902171,38205288 -g1,7621:9481588,38205288 -g1,7621:11302833,38205288 -g1,7621:13483215,38205288 -g1,7621:14298482,38205288 -g1,7621:15700952,38205288 -g1,7621:18224743,38205288 -g1,7621:20167885,38205288 -g1,7621:20983152,38205288 -g1,7621:22201466,38205288 -g1,7621:24836013,38205288 -k1,7622:32583029,38205288:5976889 -g1,7622:32583029,38205288 -) -v1,7624:6630773,39571064:0,393216,0 -(1,7625:6630773,43728815:25952256,4550967,616038 -g1,7625:6630773,43728815 -(1,7625:6630773,43728815:25952256,4550967,616038 -(1,7625:6630773,44344853:25952256,5167005,0 -[1,7625:6630773,44344853:25952256,5167005,0 -(1,7625:6630773,44318639:25952256,5114577,0 -r1,7625:6656987,44318639:26214,5114577,0 -[1,7625:6656987,44318639:25899828,5114577,0 -(1,7625:6656987,43728815:25899828,3934929,0 -[1,7625:7246811,43728815:24720180,3934929,0 -(1,7625:7246811,41077868:24720180,1283982,196608 -(1,7624:7246811,41077868:0,1283982,196608 -r1,7625:9812056,41077868:2565245,1480590,196608 -k1,7624:7246811,41077868:-2565245 -) -(1,7624:7246811,41077868:2565245,1283982,196608 -) -k1,7624:10117057,41077868:305001 -k1,7624:12645694,41077868:305000 -k1,7624:14686088,41077868:305001 -k1,7624:16457784,41077868:305000 -(1,7624:16457784,41077868:0,459977,115847 -r1,7625:17519473,41077868:1061689,575824,115847 -k1,7624:16457784,41077868:-1061689 -) -(1,7624:16457784,41077868:1061689,459977,115847 -k1,7624:16457784,41077868:3277 -h1,7624:17516196,41077868:0,411205,112570 -) -k1,7624:17824474,41077868:305001 -k1,7624:19320920,41077868:305001 -(1,7624:19320920,41077868:0,459977,115847 -r1,7625:20382609,41077868:1061689,575824,115847 -k1,7624:19320920,41077868:-1061689 -) -(1,7624:19320920,41077868:1061689,459977,115847 -k1,7624:19320920,41077868:3277 -h1,7624:20379332,41077868:0,411205,112570 -) -k1,7624:20687609,41077868:305000 -k1,7624:22011695,41077868:305001 -k1,7624:24977457,41077868:305000 -k1,7624:27994993,41077868:305001 -k1,7624:28951421,41077868:305000 -k1,7624:30658892,41077868:305001 -k1,7624:31966991,41077868:0 -) -(1,7625:7246811,41919356:24720180,513147,134348 -k1,7624:9866367,41919356:257638 -k1,7624:10736768,41919356:257639 -k1,7624:11566535,41919356:257638 -k1,7624:12396302,41919356:257638 -k1,7624:13624529,41919356:257639 -k1,7624:14852755,41919356:257638 -k1,7624:16080981,41919356:257638 -k1,7624:17530065,41919356:257639 -k1,7624:18584621,41919356:257638 -k1,7624:20471484,41919356:257638 -k1,7624:22537916,41919356:257638 -k1,7624:23814640,41919356:257639 -k1,7624:25460331,41919356:257638 -k1,7624:27216122,41919356:257638 -k1,7624:28421412,41919356:257639 -k1,7624:29698135,41919356:257638 -k1,7624:31966991,41919356:0 -) -(1,7625:7246811,42760844:24720180,513147,134348 -k1,7624:9886913,42760844:185779 -k1,7624:11020343,42760844:185779 -k1,7624:13018848,42760844:185779 -k1,7624:15522635,42760844:185779 -k1,7624:17650901,42760844:185779 -(1,7624:17650901,42760844:0,452978,115847 -r1,7625:23284844,42760844:5633943,568825,115847 -k1,7624:17650901,42760844:-5633943 -) -(1,7624:17650901,42760844:5633943,452978,115847 -k1,7624:17650901,42760844:3277 -h1,7624:23281567,42760844:0,411205,112570 -) -k1,7624:23851387,42760844:185779 -k1,7624:26429230,42760844:185779 -k1,7624:27634094,42760844:185779 -k1,7624:31006233,42760844:185779 -k1,7625:31966991,42760844:0 -) -(1,7625:7246811,43602332:24720180,513147,126483 -g1,7624:9333477,43602332 -(1,7624:9333477,43602332:0,452978,115847 -r1,7625:13560573,43602332:4227096,568825,115847 -k1,7624:9333477,43602332:-4227096 -) -(1,7624:9333477,43602332:4227096,452978,115847 -k1,7624:9333477,43602332:3277 -h1,7624:13557296,43602332:0,411205,112570 -) -g1,7624:13759802,43602332 -g1,7624:15150476,43602332 -(1,7624:15150476,43602332:0,459977,115847 -r1,7625:19377572,43602332:4227096,575824,115847 -k1,7624:15150476,43602332:-4227096 -) -(1,7624:15150476,43602332:4227096,459977,115847 -k1,7624:15150476,43602332:3277 -h1,7624:19374295,43602332:0,411205,112570 -) -g1,7624:19576801,43602332 -g1,7624:21871871,43602332 -g1,7624:23368058,43602332 -g1,7624:24558847,43602332 -g1,7624:26138264,43602332 -g1,7624:27062321,43602332 -k1,7625:31966991,43602332:1815303 -g1,7625:31966991,43602332 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7639:3078558,51504789:16384,1179648,0 +) +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] +) +) +) +] +[1,7639:3078558,4812305:0,0,0 +(1,7639:3078558,49800853:0,16384,2228224 +g1,7639:29030814,49800853 +g1,7639:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7639:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7639:37855564,49800853:1179648,16384,0 +) +) +k1,7639:3078556,49800853:-34777008 +) +] +g1,7639:6630773,4812305 +k1,7639:24502442,4812305:16676292 +g1,7639:25889183,4812305 +g1,7639:26537989,4812305 +g1,7639:29852144,4812305 +) +) +] +[1,7639:6630773,45706769:25952256,40108032,0 +(1,7639:6630773,45706769:25952256,40108032,0 +(1,7639:6630773,45706769:0,0,0 +g1,7639:6630773,45706769 +) +[1,7639:6630773,45706769:25952256,40108032,0 +v1,7618:6630773,6254097:0,393216,0 +(1,7618:6630773,22502652:25952256,16641771,616038 +g1,7618:6630773,22502652 +(1,7618:6630773,22502652:25952256,16641771,616038 +(1,7618:6630773,23118690:25952256,17257809,0 +[1,7618:6630773,23118690:25952256,17257809,0 +(1,7618:6630773,23092476:25952256,17231595,0 +r1,7618:6656987,23092476:26214,17231595,0 +[1,7618:6656987,23092476:25899828,17231595,0 +(1,7618:6656987,22502652:25899828,16051947,0 +[1,7618:7246811,22502652:24720180,16051947,0 +(1,7594:7246811,6963852:24720180,513147,126483 +k1,7593:9146874,6963852:239381 +k1,7593:10716636,6963852:239381 +k1,7593:11607446,6963852:239382 +k1,7593:12662095,6963852:239381 +k1,7593:13920561,6963852:239381 +k1,7593:17464923,6963852:239381 +k1,7593:18895749,6963852:239381 +k1,7593:20529082,6963852:239382 +k1,7593:21124323,6963852:239381 +k1,7593:22603645,6963852:239381 +k1,7593:26315123,6963852:239381 +k1,7593:27213796,6963852:239381 +k1,7593:29151216,6963852:239382 +k1,7593:29958794,6963852:239381 +k1,7593:30770304,6963852:239381 +k1,7593:31966991,6963852:0 +) +(1,7594:7246811,7805340:24720180,513147,126483 +k1,7593:10731310,7805340:228670 +k1,7593:11491477,7805340:228670 +k1,7593:14966146,7805340:228671 +k1,7593:15846244,7805340:228670 +k1,7593:17206721,7805340:228670 +k1,7593:20193146,7805340:228670 +k1,7593:22102160,7805340:228671 +k1,7593:23016992,7805340:228670 +k1,7593:23601522,7805340:228670 +k1,7593:25070133,7805340:228670 +k1,7593:28770901,7805340:228671 +k1,7593:29947222,7805340:228670 +k1,7593:31307699,7805340:228670 +k1,7593:31966991,7805340:0 +) +(1,7594:7246811,8646828:24720180,513147,126483 +k1,7593:8497536,8646828:231640 +k1,7593:10441632,8646828:231640 +k1,7593:13954004,8646828:231640 +k1,7593:17231757,8646828:231640 +k1,7593:18411048,8646828:231640 +k1,7593:22260931,8646828:231640 +k1,7593:23427114,8646828:231640 +k1,7593:24057213,8646828:231640 +k1,7593:26222820,8646828:231640 +k1,7593:27651147,8646828:231640 +k1,7593:30874506,8646828:231640 +k1,7593:31966991,8646828:0 +) +(1,7594:7246811,9488316:24720180,513147,134348 +k1,7593:7831485,9488316:228814 +k1,7593:11166051,9488316:228815 +k1,7593:12759980,9488316:228814 +k1,7593:13616629,9488316:228814 +k1,7593:15537583,9488316:228814 +k1,7593:17637451,9488316:228815 +k1,7593:18222125,9488316:228814 +k1,7593:22257270,9488316:228814 +k1,7593:23677530,9488316:228815 +k1,7593:26086727,9488316:228814 +k1,7593:27063307,9488316:228814 +k1,7593:28805347,9488316:228814 +k1,7593:30483818,9488316:228815 +k1,7593:31178593,9488316:228814 +k1,7593:31966991,9488316:0 +) +(1,7594:7246811,10329804:24720180,513147,126483 +k1,7593:9615555,10329804:230960 +k1,7593:10202375,10329804:230960 +k1,7593:12227711,10329804:230960 +k1,7593:13743176,10329804:230959 +k1,7593:16923911,10329804:230960 +k1,7593:17686368,10329804:230960 +k1,7593:20447018,10329804:230960 +k1,7593:21337270,10329804:230960 +k1,7593:24190981,10329804:230960 +k1,7593:26883472,10329804:230959 +k1,7593:29744392,10329804:230960 +k1,7593:31350953,10329804:230960 +k1,7593:31966991,10329804:0 +) +(1,7594:7246811,11171292:24720180,513147,126483 +k1,7593:8601494,11171292:197973 +k1,7593:11658148,11171292:197974 +k1,7593:13449957,11171292:197973 +k1,7593:15215552,11171292:197974 +k1,7593:16432610,11171292:197973 +k1,7593:17870524,11171292:197973 +k1,7593:21714266,11171292:197974 +k1,7593:22595124,11171292:197973 +k1,7593:25322788,11171292:197974 +k1,7593:26896362,11171292:197973 +k1,7593:28251046,11171292:197974 +k1,7593:31307699,11171292:197973 +k1,7593:31966991,11171292:0 +) +(1,7594:7246811,12012780:24720180,513147,126483 +g1,7593:10319794,12012780 +g1,7593:11050520,12012780 +g1,7593:11909041,12012780 +k1,7594:31966991,12012780:17234004 +g1,7594:31966991,12012780 +) +(1,7596:7246811,12854268:24720180,513147,126483 +h1,7595:7246811,12854268:983040,0,0 +k1,7595:9255338,12854268:196457 +k1,7595:12167607,12854268:196457 +k1,7595:13383148,12854268:196456 +k1,7595:15755400,12854268:196457 +k1,7595:16820209,12854268:196457 +k1,7595:18546932,12854268:196457 +k1,7595:19514091,12854268:196456 +k1,7595:22426360,12854268:196457 +k1,7595:23570468,12854268:196457 +k1,7595:24786010,12854268:196457 +k1,7595:28263198,12854268:196456 +k1,7595:29651100,12854268:196457 +k1,7595:30618260,12854268:196457 +k1,7596:31966991,12854268:0 +) +(1,7596:7246811,13695756:24720180,513147,134348 +g1,7595:9026113,13695756 +g1,7595:9884634,13695756 +g1,7595:11102948,13695756 +g1,7595:14145784,13695756 +g1,7595:15951956,13695756 +g1,7595:17098836,13695756 +g1,7595:18501306,13695756 +g1,7595:21416347,13695756 +g1,7595:22807021,13695756 +g1,7595:23794648,13695756 +g1,7595:26449511,13695756 +g1,7595:27308032,13695756 +k1,7596:31966991,13695756:1802245 +g1,7596:31966991,13695756 +) +v1,7598:7246811,14886222:0,393216,0 +(1,7604:7246811,16539966:24720180,2046960,196608 +g1,7604:7246811,16539966 +g1,7604:7246811,16539966 +g1,7604:7050203,16539966 +(1,7604:7050203,16539966:0,2046960,196608 +r1,7618:32163599,16539966:25113396,2243568,196608 +k1,7604:7050203,16539966:-25113396 +) +(1,7604:7050203,16539966:25113396,2046960,196608 +[1,7604:7246811,16539966:24720180,1850352,0 +(1,7600:7246811,15100132:24720180,410518,101187 +(1,7599:7246811,15100132:0,0,0 +g1,7599:7246811,15100132 +g1,7599:7246811,15100132 +g1,7599:6919131,15100132 +(1,7599:6919131,15100132:0,0,0 +) +g1,7599:7246811,15100132 +) +g1,7600:12305142,15100132 +g1,7600:13253580,15100132 +g1,7600:21789514,15100132 +h1,7600:25267117,15100132:0,0,0 +k1,7600:31966991,15100132:6699874 +g1,7600:31966991,15100132 +) +(1,7601:7246811,15766310:24720180,410518,101187 +h1,7601:7246811,15766310:0,0,0 +g1,7601:11356705,15766310 +g1,7601:12305143,15766310 +g1,7601:20841077,15766310 +g1,7601:22737951,15766310 +h1,7601:24950971,15766310:0,0,0 +k1,7601:31966991,15766310:7016020 +g1,7601:31966991,15766310 +) +(1,7602:7246811,16432488:24720180,410518,107478 +h1,7602:7246811,16432488:0,0,0 +g1,7602:13253579,16432488 +g1,7602:14202017,16432488 +k1,7602:14202017,16432488:0 +h1,7602:19892640,16432488:0,0,0 +k1,7602:31966991,16432488:12074351 +g1,7602:31966991,16432488 +) +] +) +g1,7604:31966991,16539966 +g1,7604:7246811,16539966 +g1,7604:7246811,16539966 +g1,7604:31966991,16539966 +g1,7604:31966991,16539966 +) +h1,7604:7246811,16736574:0,0,0 +(1,7608:7246811,18102350:24720180,513147,126483 +h1,7607:7246811,18102350:983040,0,0 +k1,7607:9559425,18102350:132887 +k1,7607:11379209,18102350:132887 +k1,7607:12043593,18102350:132887 +k1,7607:14031148,18102350:132886 +k1,7607:14973405,18102350:132887 +k1,7607:16125377,18102350:132887 +k1,7607:19444624,18102350:132887 +k1,7607:22212714,18102350:132887 +k1,7607:23364686,18102350:132887 +k1,7607:25177915,18102350:132886 +k1,7607:25970094,18102350:132887 +k1,7607:27122066,18102350:132887 +k1,7607:28494894,18102350:132887 +k1,7607:31966991,18102350:0 +) +(1,7608:7246811,18943838:24720180,505283,7863 +g1,7607:8637485,18943838 +g1,7607:9855799,18943838 +k1,7608:31966991,18943838:19221710 +g1,7608:31966991,18943838 +) +v1,7610:7246811,20134304:0,393216,0 +(1,7616:7246811,21781756:24720180,2040668,196608 +g1,7616:7246811,21781756 +g1,7616:7246811,21781756 +g1,7616:7050203,21781756 +(1,7616:7050203,21781756:0,2040668,196608 +r1,7618:32163599,21781756:25113396,2237276,196608 +k1,7616:7050203,21781756:-25113396 +) +(1,7616:7050203,21781756:25113396,2040668,196608 +[1,7616:7246811,21781756:24720180,1844060,0 +(1,7612:7246811,20341922:24720180,404226,101187 +(1,7611:7246811,20341922:0,0,0 +g1,7611:7246811,20341922 +g1,7611:7246811,20341922 +g1,7611:6919131,20341922 +(1,7611:6919131,20341922:0,0,0 +) +g1,7611:7246811,20341922 +) +g1,7612:10092122,20341922 +g1,7612:11040560,20341922 +h1,7612:11356706,20341922:0,0,0 +k1,7612:31966990,20341922:20610284 +g1,7612:31966990,20341922 +) +(1,7613:7246811,21008100:24720180,404226,101187 +h1,7613:7246811,21008100:0,0,0 +g1,7613:9775977,21008100 +g1,7613:10724415,21008100 +g1,7613:16098892,21008100 +g1,7613:16731184,21008100 +g1,7613:19892641,21008100 +g1,7613:20524933,21008100 +h1,7613:24318681,21008100:0,0,0 +k1,7613:31966991,21008100:7648310 +g1,7613:31966991,21008100 +) +(1,7614:7246811,21674278:24720180,410518,107478 +h1,7614:7246811,21674278:0,0,0 +g1,7614:9775977,21674278 +g1,7614:10724415,21674278 +g1,7614:14518163,21674278 +g1,7614:15466600,21674278 +g1,7614:16098892,21674278 +h1,7614:22105660,21674278:0,0,0 +k1,7614:31966991,21674278:9861331 +g1,7614:31966991,21674278 +) +] +) +g1,7616:31966991,21781756 +g1,7616:7246811,21781756 +g1,7616:7246811,21781756 +g1,7616:31966991,21781756 +g1,7616:31966991,21781756 +) +h1,7616:7246811,21978364:0,0,0 +] +) +] +r1,7618:32583029,23092476:26214,17231595,0 +) +] +) +) +g1,7618:32583029,22502652 +) +h1,7618:6630773,23118690:0,0,0 +v1,7621:6630773,24484466:0,393216,0 +(1,7624:6630773,28650082:25952256,4558832,616038 +g1,7624:6630773,28650082 +(1,7624:6630773,28650082:25952256,4558832,616038 +(1,7624:6630773,29266120:25952256,5174870,0 +[1,7624:6630773,29266120:25952256,5174870,0 +(1,7624:6630773,29239906:25952256,5122442,0 +r1,7624:6656987,29239906:26214,5122442,0 +[1,7624:6656987,29239906:25899828,5122442,0 +(1,7624:6656987,28650082:25899828,3942794,0 +[1,7624:7246811,28650082:24720180,3942794,0 +(1,7622:7246811,25991270:24720180,1283982,196608 +(1,7621:7246811,25991270:0,1283982,196608 +r1,7624:9812056,25991270:2565245,1480590,196608 +k1,7621:7246811,25991270:-2565245 +) +(1,7621:7246811,25991270:2565245,1283982,196608 +) +k1,7621:10024972,25991270:212916 +k1,7621:12181685,25991270:212915 +k1,7621:13679107,25991270:212916 +k1,7621:14911108,25991270:212916 +k1,7621:18379852,25991270:212915 +k1,7621:20448092,25991270:212916 +k1,7621:22704420,25991270:212915 +k1,7621:24311287,25991270:212916 +k1,7621:25543288,25991270:212916 +k1,7621:27914959,25991270:212915 +k1,7621:28795031,25991270:212916 +(1,7621:28795031,25991270:0,452978,115847 +r1,7624:31966991,25991270:3171960,568825,115847 +k1,7621:28795031,25991270:-3171960 +) +(1,7621:28795031,25991270:3171960,452978,115847 +k1,7621:28795031,25991270:3277 +h1,7621:31963714,25991270:0,411205,112570 +) +k1,7621:31966991,25991270:0 +) +(1,7622:7246811,26832758:24720180,513147,115847 +g1,7621:9144078,26832758 +g1,7621:10211659,26832758 +g1,7621:11345431,26832758 +(1,7621:11345431,26832758:0,452978,115847 +r1,7624:15924240,26832758:4578809,568825,115847 +k1,7621:11345431,26832758:-4578809 +) +(1,7621:11345431,26832758:4578809,452978,115847 +g1,7621:14514115,26832758 +g1,7621:15569251,26832758 +h1,7621:15920963,26832758:0,411205,112570 +) +g1,7621:16123469,26832758 +g1,7621:18649881,26832758 +g1,7621:19516266,26832758 +(1,7621:19516266,26832758:0,452978,115847 +r1,7624:24095075,26832758:4578809,568825,115847 +k1,7621:19516266,26832758:-4578809 +) +(1,7621:19516266,26832758:4578809,452978,115847 +g1,7621:22684950,26832758 +g1,7621:23740086,26832758 +h1,7621:24091798,26832758:0,411205,112570 +) +k1,7622:31966991,26832758:7698246 +g1,7622:31966991,26832758 +) +(1,7624:7246811,27674246:24720180,513147,134348 +h1,7623:7246811,27674246:983040,0,0 +k1,7623:10589912,27674246:154119 +k1,7623:11763116,27674246:154119 +k1,7623:14578651,27674246:154118 +k1,7623:15457598,27674246:154119 +k1,7623:16297879,27674246:154119 +k1,7623:17103426,27674246:154119 +k1,7623:18448990,27674246:154119 +k1,7623:21193747,27674246:154119 +k1,7623:22366950,27674246:154118 +k1,7623:25388269,27674246:154119 +k1,7623:26073885,27674246:154119 +k1,7623:30107735,27674246:154119 +k1,7623:31966991,27674246:0 +) +(1,7624:7246811,28515734:24720180,513147,134348 +g1,7623:8888487,28515734 +g1,7623:9486175,28515734 +g1,7623:11075423,28515734 +g1,7623:13080169,28515734 +g1,7623:13635258,28515734 +g1,7623:16924510,28515734 +k1,7624:31966991,28515734:13677366 +g1,7624:31966991,28515734 +) +] +) +] +r1,7624:32583029,29239906:26214,5122442,0 +) +] +) +) +g1,7624:32583029,28650082 +) +h1,7624:6630773,29266120:0,0,0 +(1,7627:6630773,30631896:25952256,513147,134348 +h1,7626:6630773,30631896:983040,0,0 +k1,7626:10158738,30631896:146963 +(1,7626:10158738,30631896:0,452978,115847 +r1,7626:13330698,30631896:3171960,568825,115847 +k1,7626:10158738,30631896:-3171960 +) +(1,7626:10158738,30631896:3171960,452978,115847 +k1,7626:10158738,30631896:3277 +h1,7626:13327421,30631896:0,411205,112570 +) +k1,7626:13477661,30631896:146963 +k1,7626:15047410,30631896:146962 +k1,7626:16213458,30631896:146963 +k1,7626:18072877,30631896:146963 +k1,7626:20207547,30631896:146963 +k1,7626:23034933,30631896:146963 +k1,7626:24575847,30631896:146963 +k1,7626:26006004,30631896:146962 +k1,7626:27542330,30631896:146963 +k1,7626:28636944,30631896:146963 +k1,7626:29802992,30631896:146963 +k1,7627:32583029,30631896:0 +) +(1,7627:6630773,31473384:25952256,505283,126483 +k1,7626:8269008,31473384:198409 +k1,7626:11309057,31473384:198408 +k1,7626:12158894,31473384:198409 +k1,7626:15145205,31473384:198409 +k1,7626:19127006,31473384:198408 +k1,7626:20143304,31473384:198409 +(1,7626:20143304,31473384:0,452978,115847 +r1,7626:23315264,31473384:3171960,568825,115847 +k1,7626:20143304,31473384:-3171960 +) +(1,7626:20143304,31473384:3171960,452978,115847 +k1,7626:20143304,31473384:3277 +h1,7626:23311987,31473384:0,411205,112570 +) +k1,7626:23513673,31473384:198409 +k1,7626:26090383,31473384:198408 +k1,7626:27571987,31473384:198409 +k1,7626:29159759,31473384:198409 +k1,7626:30044329,31473384:198408 +k1,7626:32124932,31473384:198409 +k1,7626:32583029,31473384:0 +) +(1,7627:6630773,32314872:25952256,513147,126483 +k1,7626:8851132,32314872:208404 +k1,7626:13211898,32314872:208405 +k1,7626:14611747,32314872:208404 +k1,7626:19077370,32314872:208404 +k1,7626:19937203,32314872:208405 +k1,7626:22156252,32314872:208404 +k1,7626:23023948,32314872:208404 +k1,7626:24251437,32314872:208404 +k1,7626:28466713,32314872:208405 +k1,7626:31516758,32314872:208404 +k1,7626:32583029,32314872:0 +) +(1,7627:6630773,33156360:25952256,513147,134348 +k1,7626:9267243,33156360:230643 +k1,7626:10113924,33156360:230643 +k1,7626:11363652,33156360:230643 +k1,7626:14029612,33156360:230642 +k1,7626:15823289,33156360:230643 +k1,7626:16681767,33156360:230643 +k1,7626:17931495,33156360:230643 +k1,7626:19529219,33156360:230643 +k1,7626:20419154,33156360:230643 +k1,7626:21667571,33156360:230643 +k1,7626:22557506,33156360:230643 +k1,7626:24813866,33156360:230642 +k1,7626:26235954,33156360:230643 +k1,7626:28158737,33156360:230643 +k1,7626:30091350,33156360:230643 +k1,7626:32583029,33156360:0 +) +(1,7627:6630773,33997848:25952256,513147,126483 +k1,7626:9348251,33997848:263155 +(1,7626:9348251,33997848:0,452978,115847 +r1,7626:12520211,33997848:3171960,568825,115847 +k1,7626:9348251,33997848:-3171960 +) +(1,7626:9348251,33997848:3171960,452978,115847 +k1,7626:9348251,33997848:3277 +h1,7626:12516934,33997848:0,411205,112570 +) +k1,7626:12783367,33997848:263156 +k1,7626:15561138,33997848:263155 +k1,7626:16440331,33997848:263155 +k1,7626:19369491,33997848:263155 +k1,7626:20284075,33997848:263156 +k1,7626:21566315,33997848:263155 +k1,7626:25282562,33997848:263155 +k1,7626:28591830,33997848:263155 +k1,7626:29514278,33997848:263156 +k1,7626:30796518,33997848:263155 +k1,7627:32583029,33997848:0 +) +(1,7627:6630773,34839336:25952256,513147,126483 +k1,7626:8737201,34839336:242584 +k1,7626:11189659,34839336:242584 +k1,7626:14711665,34839336:242584 +k1,7626:17885019,34839336:242584 +k1,7626:19324290,34839336:242584 +k1,7626:20850069,34839336:242584 +k1,7626:22482016,34839336:242584 +k1,7626:24346616,34839336:242584 +k1,7626:25336966,34839336:242584 +k1,7626:27617720,34839336:242584 +k1,7626:28476342,34839336:242584 +k1,7626:29074786,34839336:242584 +k1,7626:30706733,34839336:242584 +k1,7626:32583029,34839336:0 +) +(1,7627:6630773,35680824:25952256,513147,134348 +k1,7626:8261964,35680824:237240 +k1,7626:11212395,35680824:237240 +k1,7626:13185029,35680824:237241 +k1,7626:14441354,35680824:237240 +k1,7626:16332067,35680824:237240 +k1,7626:18637623,35680824:237240 +k1,7626:19822515,35680824:237241 +k1,7626:21078840,35680824:237240 +k1,7626:25081779,35680824:237240 +k1,7626:28160660,35680824:237240 +k1,7626:29084063,35680824:237241 +k1,7626:29937341,35680824:237240 +k1,7626:31193666,35680824:237240 +k1,7626:32583029,35680824:0 +) +(1,7627:6630773,36522312:25952256,513147,126483 +k1,7626:8440221,36522312:296222 +k1,7626:9684095,36522312:296223 +k1,7626:10999402,36522312:296222 +k1,7626:12156768,36522312:296223 +k1,7626:12808850,36522312:296222 +k1,7626:15978827,36522312:296223 +k1,7626:18786389,36522312:296222 +k1,7626:19614109,36522312:296223 +k1,7626:20976602,36522312:296222 +k1,7626:23571173,36522312:296223 +k1,7626:25058840,36522312:296222 +k1,7626:28582056,36522312:296223 +k1,7626:31591469,36522312:296222 +k1,7626:32583029,36522312:0 +) +(1,7627:6630773,37363800:25952256,505283,134348 +k1,7626:9500431,37363800:254771 +k1,7626:11158983,37363800:254771 +k1,7626:15179453,37363800:254771 +k1,7626:18275865,37363800:254771 +k1,7626:19146674,37363800:254771 +k1,7626:20420531,37363800:254772 +k1,7626:21958497,37363800:254771 +k1,7626:23602631,37363800:254771 +k1,7626:24961684,37363800:254771 +k1,7626:25964221,37363800:254771 +k1,7626:28074972,37363800:254771 +k1,7626:31900144,37363800:254771 +k1,7626:32583029,37363800:0 +) +(1,7627:6630773,38205288:25952256,513147,134348 +g1,7626:9227964,38205288 +g1,7626:10499362,38205288 +g1,7626:12078779,38205288 +g1,7626:13900024,38205288 +g1,7626:16080406,38205288 +g1,7626:16895673,38205288 +g1,7626:18298143,38205288 +g1,7626:20821934,38205288 +g1,7626:22765076,38205288 +g1,7626:23580343,38205288 +g1,7626:24798657,38205288 +g1,7626:27433204,38205288 +k1,7627:32583029,38205288:3379698 +g1,7627:32583029,38205288 +) +v1,7629:6630773,39571064:0,393216,0 +(1,7630:6630773,43728815:25952256,4550967,616038 +g1,7630:6630773,43728815 +(1,7630:6630773,43728815:25952256,4550967,616038 +(1,7630:6630773,44344853:25952256,5167005,0 +[1,7630:6630773,44344853:25952256,5167005,0 +(1,7630:6630773,44318639:25952256,5114577,0 +r1,7630:6656987,44318639:26214,5114577,0 +[1,7630:6656987,44318639:25899828,5114577,0 +(1,7630:6656987,43728815:25899828,3934929,0 +[1,7630:7246811,43728815:24720180,3934929,0 +(1,7630:7246811,41077868:24720180,1283982,196608 +(1,7629:7246811,41077868:0,1283982,196608 +r1,7630:9812056,41077868:2565245,1480590,196608 +k1,7629:7246811,41077868:-2565245 +) +(1,7629:7246811,41077868:2565245,1283982,196608 +) +k1,7629:10117057,41077868:305001 +k1,7629:12645694,41077868:305000 +k1,7629:14686088,41077868:305001 +k1,7629:16457784,41077868:305000 +(1,7629:16457784,41077868:0,459977,115847 +r1,7630:17519473,41077868:1061689,575824,115847 +k1,7629:16457784,41077868:-1061689 +) +(1,7629:16457784,41077868:1061689,459977,115847 +k1,7629:16457784,41077868:3277 +h1,7629:17516196,41077868:0,411205,112570 +) +k1,7629:17824474,41077868:305001 +k1,7629:19320920,41077868:305001 +(1,7629:19320920,41077868:0,459977,115847 +r1,7630:20382609,41077868:1061689,575824,115847 +k1,7629:19320920,41077868:-1061689 +) +(1,7629:19320920,41077868:1061689,459977,115847 +k1,7629:19320920,41077868:3277 +h1,7629:20379332,41077868:0,411205,112570 +) +k1,7629:20687609,41077868:305000 +k1,7629:22011695,41077868:305001 +k1,7629:24977457,41077868:305000 +k1,7629:27994993,41077868:305001 +k1,7629:28951421,41077868:305000 +k1,7629:30658892,41077868:305001 +k1,7629:31966991,41077868:0 +) +(1,7630:7246811,41919356:24720180,513147,134348 +k1,7629:9866367,41919356:257638 +k1,7629:10736768,41919356:257639 +k1,7629:11566535,41919356:257638 +k1,7629:12396302,41919356:257638 +k1,7629:13624529,41919356:257639 +k1,7629:14852755,41919356:257638 +k1,7629:16080981,41919356:257638 +k1,7629:17530065,41919356:257639 +k1,7629:18584621,41919356:257638 +k1,7629:20471484,41919356:257638 +k1,7629:22537916,41919356:257638 +k1,7629:23814640,41919356:257639 +k1,7629:25460331,41919356:257638 +k1,7629:27216122,41919356:257638 +k1,7629:28421412,41919356:257639 +k1,7629:29698135,41919356:257638 +k1,7629:31966991,41919356:0 +) +(1,7630:7246811,42760844:24720180,513147,134348 +k1,7629:9886913,42760844:185779 +k1,7629:11020343,42760844:185779 +k1,7629:13018848,42760844:185779 +k1,7629:15522635,42760844:185779 +k1,7629:17650901,42760844:185779 +(1,7629:17650901,42760844:0,452978,115847 +r1,7630:23284844,42760844:5633943,568825,115847 +k1,7629:17650901,42760844:-5633943 +) +(1,7629:17650901,42760844:5633943,452978,115847 +k1,7629:17650901,42760844:3277 +h1,7629:23281567,42760844:0,411205,112570 +) +k1,7629:23851387,42760844:185779 +k1,7629:26429230,42760844:185779 +k1,7629:27634094,42760844:185779 +k1,7629:31006233,42760844:185779 +k1,7630:31966991,42760844:0 +) +(1,7630:7246811,43602332:24720180,513147,126483 +g1,7629:9333477,43602332 +(1,7629:9333477,43602332:0,452978,115847 +r1,7630:13560573,43602332:4227096,568825,115847 +k1,7629:9333477,43602332:-4227096 +) +(1,7629:9333477,43602332:4227096,452978,115847 +k1,7629:9333477,43602332:3277 +h1,7629:13557296,43602332:0,411205,112570 +) +g1,7629:13759802,43602332 +g1,7629:15150476,43602332 +(1,7629:15150476,43602332:0,459977,115847 +r1,7630:19377572,43602332:4227096,575824,115847 +k1,7629:15150476,43602332:-4227096 +) +(1,7629:15150476,43602332:4227096,459977,115847 +k1,7629:15150476,43602332:3277 +h1,7629:19374295,43602332:0,411205,112570 +) +g1,7629:19576801,43602332 +g1,7629:21871871,43602332 +g1,7629:23368058,43602332 +g1,7629:24558847,43602332 +g1,7629:26138264,43602332 +g1,7629:27062321,43602332 +k1,7630:31966991,43602332:1815303 +g1,7630:31966991,43602332 ) -] -) -] -r1,7625:32583029,44318639:26214,5114577,0 +] +) +] +r1,7630:32583029,44318639:26214,5114577,0 ) ] ) ) -g1,7625:32583029,43728815 +g1,7630:32583029,43728815 ) -h1,7625:6630773,44344853:0,0,0 +h1,7630:6630773,44344853:0,0,0 ] -(1,7634:32583029,45706769:0,0,0 -g1,7634:32583029,45706769 +(1,7639:32583029,45706769:0,0,0 +g1,7639:32583029,45706769 ) ) ] -(1,7634:6630773,47279633:25952256,0,0 -h1,7634:6630773,47279633:25952256,0,0 +(1,7639:6630773,47279633:25952256,0,0 +h1,7639:6630773,47279633:25952256,0,0 ) ] -h1,7634:4262630,4025873:0,0,0 +h1,7639:4262630,4025873:0,0,0 ] -!24262 +!24224 }143 -Input:1071:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1072:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1073:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1074:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1075:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1076:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1077:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1078:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1067:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1068:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1069:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1070:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1071:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1072:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1073:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1074:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {144 -[1,7690:4262630,47279633:28320399,43253760,0 -(1,7690:4262630,4025873:0,0,0 -[1,7690:-473657,4025873:25952256,0,0 -(1,7690:-473657,-710414:25952256,0,0 -h1,7690:-473657,-710414:0,0,0 -(1,7690:-473657,-710414:0,0,0 -(1,7690:-473657,-710414:0,0,0 -g1,7690:-473657,-710414 -(1,7690:-473657,-710414:65781,0,65781 -g1,7690:-407876,-710414 -[1,7690:-407876,-644633:0,0,0 +[1,7695:4262630,47279633:28320399,43253760,0 +(1,7695:4262630,4025873:0,0,0 +[1,7695:-473657,4025873:25952256,0,0 +(1,7695:-473657,-710414:25952256,0,0 +h1,7695:-473657,-710414:0,0,0 +(1,7695:-473657,-710414:0,0,0 +(1,7695:-473657,-710414:0,0,0 +g1,7695:-473657,-710414 +(1,7695:-473657,-710414:65781,0,65781 +g1,7695:-407876,-710414 +[1,7695:-407876,-644633:0,0,0 ] ) -k1,7690:-473657,-710414:-65781 +k1,7695:-473657,-710414:-65781 ) ) -k1,7690:25478599,-710414:25952256 -g1,7690:25478599,-710414 +k1,7695:25478599,-710414:25952256 +g1,7695:25478599,-710414 ) ] ) -[1,7690:6630773,47279633:25952256,43253760,0 -[1,7690:6630773,4812305:25952256,786432,0 -(1,7690:6630773,4812305:25952256,505283,134348 -(1,7690:6630773,4812305:25952256,505283,134348 -g1,7690:3078558,4812305 -[1,7690:3078558,4812305:0,0,0 -(1,7690:3078558,2439708:0,1703936,0 -k1,7690:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7690:2537886,2439708:1179648,16384,0 +[1,7695:6630773,47279633:25952256,43253760,0 +[1,7695:6630773,4812305:25952256,786432,0 +(1,7695:6630773,4812305:25952256,505283,134348 +(1,7695:6630773,4812305:25952256,505283,134348 +g1,7695:3078558,4812305 +[1,7695:3078558,4812305:0,0,0 +(1,7695:3078558,2439708:0,1703936,0 +k1,7695:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7695:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7690:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7695:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7690:3078558,4812305:0,0,0 -(1,7690:3078558,2439708:0,1703936,0 -g1,7690:29030814,2439708 -g1,7690:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7690:36151628,1915420:16384,1179648,0 +[1,7695:3078558,4812305:0,0,0 +(1,7695:3078558,2439708:0,1703936,0 +g1,7695:29030814,2439708 +g1,7695:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7695:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7690:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7695:37855564,2439708:1179648,16384,0 ) ) -k1,7690:3078556,2439708:-34777008 +k1,7695:3078556,2439708:-34777008 ) ] -[1,7690:3078558,4812305:0,0,0 -(1,7690:3078558,49800853:0,16384,2228224 -k1,7690:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7690:2537886,49800853:1179648,16384,0 +[1,7695:3078558,4812305:0,0,0 +(1,7695:3078558,49800853:0,16384,2228224 +k1,7695:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7695:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7690:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7695:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7690:3078558,4812305:0,0,0 -(1,7690:3078558,49800853:0,16384,2228224 -g1,7690:29030814,49800853 -g1,7690:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7690:36151628,51504789:16384,1179648,0 +[1,7695:3078558,4812305:0,0,0 +(1,7695:3078558,49800853:0,16384,2228224 +g1,7695:29030814,49800853 +g1,7695:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7695:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7690:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7695:37855564,49800853:1179648,16384,0 ) ) -k1,7690:3078556,49800853:-34777008 -) -] -g1,7690:6630773,4812305 -g1,7690:6630773,4812305 -g1,7690:8843268,4812305 -g1,7690:10880782,4812305 -g1,7690:13281365,4812305 -k1,7690:31387653,4812305:18106288 -) -) -] -[1,7690:6630773,45706769:25952256,40108032,0 -(1,7690:6630773,45706769:25952256,40108032,0 -(1,7690:6630773,45706769:0,0,0 -g1,7690:6630773,45706769 -) -[1,7690:6630773,45706769:25952256,40108032,0 -(1,7627:6630773,6254097:25952256,564462,139132 -(1,7627:6630773,6254097:2450326,534184,12975 -g1,7627:6630773,6254097 -g1,7627:9081099,6254097 -) -g1,7627:12446963,6254097 -g1,7627:13416569,6254097 -g1,7627:16941751,6254097 -k1,7627:32583029,6254097:12800227 -g1,7627:32583029,6254097 -) -(1,7633:6630773,7488801:25952256,505283,134348 -k1,7631:7789750,7488801:205428 -k1,7631:9087664,7488801:205429 -k1,7631:10690975,7488801:205428 -k1,7631:11915488,7488801:205428 -(1,7631:11915488,7488801:0,414482,115847 -r1,7631:16142584,7488801:4227096,530329,115847 -k1,7631:11915488,7488801:-4227096 -) -(1,7631:11915488,7488801:4227096,414482,115847 -k1,7631:11915488,7488801:3277 -h1,7631:16139307,7488801:0,411205,112570 -) -k1,7631:16348013,7488801:205429 -k1,7631:17942804,7488801:205428 -k1,7631:19256446,7488801:205428 -k1,7631:21384700,7488801:205428 -k1,7631:23474289,7488801:205429 -k1,7631:25824710,7488801:205428 -k1,7631:26646176,7488801:205428 -k1,7631:28459203,7488801:205429 -k1,7631:31189078,7488801:205428 -k1,7631:32583029,7488801:0 -) -(1,7633:6630773,8330289:25952256,513147,115847 -g1,7631:9592345,8330289 -g1,7631:13683757,8330289 -g1,7631:14510821,8330289 -g1,7631:16406777,8330289 -g1,7631:18169040,8330289 -(1,7631:18169040,8330289:0,414482,115847 -r1,7631:19934153,8330289:1765113,530329,115847 -k1,7631:18169040,8330289:-1765113 -) -(1,7631:18169040,8330289:1765113,414482,115847 -k1,7631:18169040,8330289:3277 -h1,7631:19930876,8330289:0,411205,112570 -) -g1,7631:20133382,8330289 -g1,7631:20864108,8330289 -g1,7631:21419197,8330289 -g1,7631:23512416,8330289 -g1,7631:25105596,8330289 -g1,7631:26201358,8330289 -k1,7633:32583029,8330289:4415591 -g1,7633:32583029,8330289 -) -(1,7635:6630773,9171777:25952256,513147,134348 -h1,7634:6630773,9171777:983040,0,0 -k1,7634:9011084,9171777:200584 -k1,7634:10311362,9171777:200584 -k1,7634:11043443,9171777:200584 -k1,7634:13468973,9171777:200583 -k1,7634:14688642,9171777:200584 -k1,7634:16542699,9171777:200584 -k1,7634:17429445,9171777:200584 -k1,7634:18649114,9171777:200584 -k1,7634:20006408,9171777:200584 -k1,7634:21154643,9171777:200584 -k1,7634:23167953,9171777:200584 -k1,7634:26858983,9171777:200583 -k1,7634:28435168,9171777:200584 -k1,7634:29654837,9171777:200584 -k1,7634:31923737,9171777:200584 -k1,7634:32583029,9171777:0 -) -(1,7635:6630773,10013265:25952256,513147,11795 -k1,7634:7824788,10013265:174930 -k1,7634:10841360,10013265:174931 -k1,7634:12207735,10013265:174930 -k1,7634:13772029,10013265:174931 -k1,7634:15823255,10013265:174930 -k1,7634:16989746,10013265:174931 -k1,7634:20100689,10013265:174930 -k1,7634:21909433,10013265:174931 -k1,7634:25658697,10013265:174930 -k1,7634:27118134,10013265:174931 -k1,7634:28496305,10013265:174930 -k1,7634:29202733,10013265:174931 -k1,7634:30148366,10013265:174930 -k1,7634:32583029,10013265:0 -) -(1,7635:6630773,10854753:25952256,505283,126483 -g1,7634:7361499,10854753 -g1,7634:8845234,10854753 -(1,7634:8845234,10854753:0,414482,115847 -r1,7634:10610347,10854753:1765113,530329,115847 -k1,7634:8845234,10854753:-1765113 -) -(1,7634:8845234,10854753:1765113,414482,115847 -k1,7634:8845234,10854753:3277 -h1,7634:10607070,10854753:0,411205,112570 -) -g1,7634:10983246,10854753 -g1,7634:12201560,10854753 -g1,7634:16166488,10854753 -g1,7634:19050727,10854753 -g1,7634:19781453,10854753 -g1,7634:20336542,10854753 -(1,7634:20336542,10854753:0,459977,115847 -r1,7634:22453367,10854753:2116825,575824,115847 -k1,7634:20336542,10854753:-2116825 -) -(1,7634:20336542,10854753:2116825,459977,115847 -k1,7634:20336542,10854753:3277 -h1,7634:22450090,10854753:0,411205,112570 -) -k1,7635:32583029,10854753:9955992 -g1,7635:32583029,10854753 -) -v1,7637:6630773,12045219:0,393216,0 -(1,7657:6630773,17833254:25952256,6181251,196608 -g1,7657:6630773,17833254 -g1,7657:6630773,17833254 -g1,7657:6434165,17833254 -(1,7657:6434165,17833254:0,6181251,196608 -r1,7657:32779637,17833254:26345472,6377859,196608 -k1,7657:6434165,17833254:-26345472 -) -(1,7657:6434165,17833254:26345472,6181251,196608 -[1,7657:6630773,17833254:25952256,5984643,0 -(1,7639:6630773,12252837:25952256,404226,101187 -(1,7638:6630773,12252837:0,0,0 -g1,7638:6630773,12252837 -g1,7638:6630773,12252837 -g1,7638:6303093,12252837 -(1,7638:6303093,12252837:0,0,0 -) -g1,7638:6630773,12252837 -) -k1,7639:6630773,12252837:0 -h1,7639:12321396,12252837:0,0,0 -k1,7639:32583028,12252837:20261632 -g1,7639:32583028,12252837 -) -(1,7640:6630773,12919015:25952256,410518,101187 -h1,7640:6630773,12919015:0,0,0 -k1,7640:6630773,12919015:0 -h1,7640:16115144,12919015:0,0,0 -k1,7640:32583029,12919015:16467885 -g1,7640:32583029,12919015 -) -(1,7644:6630773,13650729:25952256,404226,76021 -(1,7642:6630773,13650729:0,0,0 -g1,7642:6630773,13650729 -g1,7642:6630773,13650729 -g1,7642:6303093,13650729 -(1,7642:6303093,13650729:0,0,0 -) -g1,7642:6630773,13650729 -) -g1,7644:7579210,13650729 -g1,7644:8843793,13650729 -h1,7644:10424521,13650729:0,0,0 -k1,7644:32583029,13650729:22158508 -g1,7644:32583029,13650729 -) -(1,7646:6630773,14972267:25952256,410518,101187 -(1,7645:6630773,14972267:0,0,0 -g1,7645:6630773,14972267 -g1,7645:6630773,14972267 -g1,7645:6303093,14972267 -(1,7645:6303093,14972267:0,0,0 -) -g1,7645:6630773,14972267 -) -k1,7646:6630773,14972267:0 -h1,7646:15798998,14972267:0,0,0 -k1,7646:32583030,14972267:16784032 -g1,7646:32583030,14972267 -) -(1,7650:6630773,15703981:25952256,404226,76021 -(1,7648:6630773,15703981:0,0,0 -g1,7648:6630773,15703981 -g1,7648:6630773,15703981 -g1,7648:6303093,15703981 -(1,7648:6303093,15703981:0,0,0 -) -g1,7648:6630773,15703981 -) -g1,7650:7579210,15703981 -g1,7650:8843793,15703981 -h1,7650:10108376,15703981:0,0,0 -k1,7650:32583028,15703981:22474652 -g1,7650:32583028,15703981 -) -(1,7652:6630773,17025519:25952256,410518,101187 -(1,7651:6630773,17025519:0,0,0 -g1,7651:6630773,17025519 -g1,7651:6630773,17025519 -g1,7651:6303093,17025519 -(1,7651:6303093,17025519:0,0,0 -) -g1,7651:6630773,17025519 -) -k1,7652:6630773,17025519:0 -h1,7652:14850561,17025519:0,0,0 -k1,7652:32583029,17025519:17732468 -g1,7652:32583029,17025519 -) -(1,7656:6630773,17757233:25952256,404226,76021 -(1,7654:6630773,17757233:0,0,0 -g1,7654:6630773,17757233 -g1,7654:6630773,17757233 -g1,7654:6303093,17757233 -(1,7654:6303093,17757233:0,0,0 -) -g1,7654:6630773,17757233 -) -g1,7656:7579210,17757233 -g1,7656:8843793,17757233 -g1,7656:10108376,17757233 -g1,7656:11372959,17757233 -g1,7656:12637542,17757233 -g1,7656:13902125,17757233 -g1,7656:15166708,17757233 -h1,7656:16115145,17757233:0,0,0 -k1,7656:32583029,17757233:16467884 -g1,7656:32583029,17757233 -) -] -) -g1,7657:32583029,17833254 -g1,7657:6630773,17833254 -g1,7657:6630773,17833254 -g1,7657:32583029,17833254 -g1,7657:32583029,17833254 -) -h1,7657:6630773,18029862:0,0,0 -(1,7661:6630773,19395638:25952256,513147,134348 -h1,7660:6630773,19395638:983040,0,0 -k1,7660:8740751,19395638:173389 -k1,7660:9601614,19395638:173390 -k1,7660:10794088,19395638:173389 -k1,7660:12955185,19395638:173390 -k1,7660:13744612,19395638:173389 -k1,7660:16142949,19395638:173390 -k1,7660:17335423,19395638:173389 -k1,7660:19162286,19395638:173390 -k1,7660:20573650,19395638:173389 -k1,7660:21433202,19395638:173390 -k1,7660:22554242,19395638:173389 -k1,7660:24540358,19395638:173390 -k1,7660:28204194,19395638:173389 -k1,7660:29396669,19395638:173390 -k1,7660:32583029,19395638:0 -) -(1,7661:6630773,20237126:25952256,513147,134348 -k1,7660:7392383,20237126:230113 -k1,7660:8907003,20237126:230114 -k1,7660:10005468,20237126:230113 -k1,7660:11328067,20237126:230114 -k1,7660:11914040,20237126:230113 -k1,7660:14038143,20237126:230113 -k1,7660:14954419,20237126:230114 -k1,7660:16203617,20237126:230113 -k1,7660:20199429,20237126:230113 -k1,7660:23114553,20237126:230114 -k1,7660:24104884,20237126:230113 -k1,7660:26070391,20237126:230114 -k1,7660:26656364,20237126:230113 -k1,7660:28780467,20237126:230113 -k1,7660:31337764,20237126:230114 -k1,7660:32227169,20237126:230113 -k1,7660:32583029,20237126:0 -) -(1,7661:6630773,21078614:25952256,513147,126483 -g1,7660:9450131,21078614 -g1,7660:11800907,21078614 -g1,7660:12355996,21078614 -g1,7660:15317568,21078614 -g1,7660:17504504,21078614 -g1,7660:19791055,21078614 -g1,7660:20521781,21078614 -g1,7660:22199502,21078614 -g1,7660:23966352,21078614 -g1,7660:24936284,21078614 -g1,7660:28440494,21078614 -k1,7661:32583029,21078614:1425412 -g1,7661:32583029,21078614 -) -v1,7663:6630773,22269080:0,393216,0 -(1,7667:6630773,22584177:25952256,708313,196608 -g1,7667:6630773,22584177 -g1,7667:6630773,22584177 -g1,7667:6434165,22584177 -(1,7667:6434165,22584177:0,708313,196608 -r1,7667:32779637,22584177:26345472,904921,196608 -k1,7667:6434165,22584177:-26345472 -) -(1,7667:6434165,22584177:26345472,708313,196608 -[1,7667:6630773,22584177:25952256,511705,0 -(1,7665:6630773,22482990:25952256,410518,101187 -(1,7664:6630773,22482990:0,0,0 -g1,7664:6630773,22482990 -g1,7664:6630773,22482990 -g1,7664:6303093,22482990 -(1,7664:6303093,22482990:0,0,0 -) -g1,7664:6630773,22482990 -) -g1,7665:7895356,22482990 -g1,7665:8843794,22482990 -g1,7665:11689105,22482990 -g1,7665:12321397,22482990 -g1,7665:14534417,22482990 -g1,7665:16115146,22482990 -g1,7665:16747438,22482990 -h1,7665:20857332,22482990:0,0,0 -k1,7665:32583029,22482990:11725697 -g1,7665:32583029,22482990 -) -] -) -g1,7667:32583029,22584177 -g1,7667:6630773,22584177 -g1,7667:6630773,22584177 -g1,7667:32583029,22584177 -g1,7667:32583029,22584177 -) -h1,7667:6630773,22780785:0,0,0 -(1,7671:6630773,24146561:25952256,513147,134348 -h1,7670:6630773,24146561:983040,0,0 -g1,7670:11178971,24146561 -g1,7670:12985798,24146561 -g1,7670:14176587,24146561 -g1,7670:17167650,24146561 -g1,7670:17982917,24146561 -g1,7670:19201231,24146561 -g1,7670:21053933,24146561 -g1,7670:22491137,24146561 -g1,7670:23376528,24146561 -g1,7670:24523408,24146561 -g1,7670:26535363,24146561 -k1,7671:32583029,24146561:2557219 -g1,7671:32583029,24146561 -) -v1,7673:6630773,25337027:0,393216,0 -(1,7677:6630773,25652124:25952256,708313,196608 -g1,7677:6630773,25652124 -g1,7677:6630773,25652124 -g1,7677:6434165,25652124 -(1,7677:6434165,25652124:0,708313,196608 -r1,7677:32779637,25652124:26345472,904921,196608 -k1,7677:6434165,25652124:-26345472 -) -(1,7677:6434165,25652124:26345472,708313,196608 -[1,7677:6630773,25652124:25952256,511705,0 -(1,7675:6630773,25550937:25952256,410518,101187 -(1,7674:6630773,25550937:0,0,0 -g1,7674:6630773,25550937 -g1,7674:6630773,25550937 -g1,7674:6303093,25550937 -(1,7674:6303093,25550937:0,0,0 -) -g1,7674:6630773,25550937 -) -k1,7675:6630773,25550937:0 -g1,7675:9792231,25550937 -g1,7675:11689105,25550937 -g1,7675:12321397,25550937 -h1,7675:12953689,25550937:0,0,0 -k1,7675:32583029,25550937:19629340 -g1,7675:32583029,25550937 -) -] -) -g1,7677:32583029,25652124 -g1,7677:6630773,25652124 -g1,7677:6630773,25652124 -g1,7677:32583029,25652124 -g1,7677:32583029,25652124 -) -h1,7677:6630773,25848732:0,0,0 -(1,7680:6630773,40453287:25952256,14014731,0 -k1,7680:12599879,40453287:5969106 -h1,7679:12599879,40453287:0,0,0 -(1,7679:12599879,40453287:14014044,14014731,0 -(1,7679:12599879,40453287:14014766,14014766,0 -(1,7679:12599879,40453287:14014766,14014766,0 -(1,7679:12599879,40453287:0,14014766,0 -(1,7679:12599879,40453287:0,18939904,0 -(1,7679:12599879,40453287:18939904,18939904,0 -) -k1,7679:12599879,40453287:-18939904 -) -) -g1,7679:26614645,40453287 -) -) -) -g1,7680:26613923,40453287 -k1,7680:32583029,40453287:5969106 -) -(1,7688:6630773,41294775:25952256,505283,134348 -h1,7687:6630773,41294775:983040,0,0 -k1,7687:8473726,41294775:232078 -k1,7687:11140435,41294775:232046 -k1,7687:12240865,41294775:232078 -k1,7687:13464503,41294775:232078 -k1,7687:15854683,41294775:232079 -k1,7687:19298025,41294775:232078 -k1,7687:20146142,41294775:232079 -k1,7687:22559914,41294775:232078 -k1,7687:26583905,41294775:232078 -k1,7687:28007429,41294775:232079 -(1,7687:28007429,41294775:0,452978,115847 -r1,7687:30475966,41294775:2468537,568825,115847 -k1,7687:28007429,41294775:-2468537 -) -(1,7687:28007429,41294775:2468537,452978,115847 -k1,7687:28007429,41294775:3277 -h1,7687:30472689,41294775:0,411205,112570 -) -k1,7687:30708044,41294775:232078 -k1,7688:32583029,41294775:0 -) -(1,7688:6630773,42136263:25952256,505283,134348 -k1,7687:7950065,42136263:220909 -k1,7687:9190060,42136263:220910 -k1,7687:11012669,42136263:220909 -k1,7687:14667009,42136263:220909 -k1,7687:17220345,42136263:220910 -k1,7687:20231122,42136263:220909 -(1,7687:20231122,42136263:0,452978,115847 -r1,7687:23403082,42136263:3171960,568825,115847 -k1,7687:20231122,42136263:-3171960 -) -(1,7687:20231122,42136263:3171960,452978,115847 -k1,7687:20231122,42136263:3277 -h1,7687:23399805,42136263:0,411205,112570 -) -k1,7687:23623991,42136263:220909 -k1,7687:24949183,42136263:220910 -k1,7687:25917858,42136263:220909 -k1,7687:27651993,42136263:220909 -k1,7687:28524331,42136263:220910 -k1,7687:30949216,42136263:220909 -k1,7688:32583029,42136263:0 -) -(1,7688:6630773,42977751:25952256,513147,138281 -k1,7687:8757562,42977751:266877 -k1,7687:12244223,42977751:266877 -k1,7687:13707787,42977751:266877 -k1,7687:16240244,42977751:266877 -k1,7687:19468692,42977751:266876 -k1,7687:20927014,42977751:266877 -k1,7687:25817456,42977751:266877 -$1,7687:25817456,42977751 -$1,7687:26285383,42977751 -k1,7687:28775897,42977751:266877 -k1,7687:31821501,42977751:266877 -k1,7688:32583029,42977751:0 -) -(1,7688:6630773,43819239:25952256,513147,126483 -(1,7687:6630773,43819239:0,452978,115847 -r1,7687:9802733,43819239:3171960,568825,115847 -k1,7687:6630773,43819239:-3171960 -) -(1,7687:6630773,43819239:3171960,452978,115847 -k1,7687:6630773,43819239:3277 -h1,7687:9799456,43819239:0,411205,112570 -) -k1,7687:9976168,43819239:173435 -k1,7687:11341048,43819239:173435 -k1,7687:15132726,43819239:173435 -k1,7687:16590667,43819239:173435 -k1,7687:18239317,43819239:173435 -k1,7687:19885346,43819239:173435 -k1,7687:20741666,43819239:173435 -k1,7687:21724472,43819239:173436 -k1,7687:23746022,43819239:173435 -k1,7687:26362639,43819239:173435 -k1,7687:27152112,43819239:173435 -k1,7687:28096250,43819239:173435 -k1,7687:30824278,43819239:173435 -k1,7687:31657005,43819239:173435 -k1,7688:32583029,43819239:0 -) -(1,7688:6630773,44660727:25952256,513147,134348 -k1,7687:8950091,44660727:204471 -k1,7687:11944430,44660727:204471 -(1,7687:11944430,44660727:0,452978,115847 -r1,7687:13709543,44660727:1765113,568825,115847 -k1,7687:11944430,44660727:-1765113 -) -(1,7687:11944430,44660727:1765113,452978,115847 -k1,7687:11944430,44660727:3277 -h1,7687:13706266,44660727:0,411205,112570 -) -k1,7687:13914014,44660727:204471 -k1,7687:14649982,44660727:204471 -k1,7687:15210313,44660727:204471 -k1,7687:18057196,44660727:204471 -k1,7687:19071037,44660727:204471 -(1,7687:19071037,44660727:0,452978,115847 -r1,7687:20484438,44660727:1413401,568825,115847 -k1,7687:19071037,44660727:-1413401 -) -(1,7687:19071037,44660727:1413401,452978,115847 -k1,7687:19071037,44660727:3277 -h1,7687:20481161,44660727:0,411205,112570 -) -k1,7687:20688908,44660727:204470 -k1,7687:22177885,44660727:204471 -k1,7687:24723302,44660727:204471 -k1,7687:25698476,44660727:204471 -k1,7687:27862473,44660727:204471 -k1,7687:29351450,44660727:204471 -k1,7687:30317449,44660727:204471 -k1,7687:32583029,44660727:0 -) -(1,7688:6630773,45502215:25952256,513147,126483 -g1,7687:8528040,45502215 -g1,7687:11077390,45502215 -g1,7687:13901991,45502215 -g1,7687:15120305,45502215 -g1,7687:17478290,45502215 -g1,7687:18344675,45502215 -(1,7687:18344675,45502215:0,452978,115847 -r1,7687:20813212,45502215:2468537,568825,115847 -k1,7687:18344675,45502215:-2468537 -) -(1,7687:18344675,45502215:2468537,452978,115847 -k1,7687:18344675,45502215:3277 -h1,7687:20809935,45502215:0,411205,112570 -) -k1,7688:32583029,45502215:11596147 -g1,7688:32583029,45502215 -) -] -(1,7690:32583029,45706769:0,0,0 -g1,7690:32583029,45706769 -) -) -] -(1,7690:6630773,47279633:25952256,0,0 -h1,7690:6630773,47279633:25952256,0,0 -) -] -h1,7690:4262630,4025873:0,0,0 -] -!18691 +k1,7695:3078556,49800853:-34777008 +) +] +g1,7695:6630773,4812305 +g1,7695:6630773,4812305 +g1,7695:8843268,4812305 +g1,7695:10880782,4812305 +g1,7695:13281365,4812305 +k1,7695:31387653,4812305:18106288 +) +) +] +[1,7695:6630773,45706769:25952256,40108032,0 +(1,7695:6630773,45706769:25952256,40108032,0 +(1,7695:6630773,45706769:0,0,0 +g1,7695:6630773,45706769 +) +[1,7695:6630773,45706769:25952256,40108032,0 +(1,7632:6630773,6254097:25952256,564462,139132 +(1,7632:6630773,6254097:2450326,534184,12975 +g1,7632:6630773,6254097 +g1,7632:9081099,6254097 +) +g1,7632:12446963,6254097 +g1,7632:13416569,6254097 +g1,7632:16941751,6254097 +k1,7632:32583029,6254097:12800227 +g1,7632:32583029,6254097 +) +(1,7638:6630773,7488801:25952256,505283,134348 +k1,7636:7789750,7488801:205428 +k1,7636:9087664,7488801:205429 +k1,7636:10690975,7488801:205428 +k1,7636:11915488,7488801:205428 +(1,7636:11915488,7488801:0,414482,115847 +r1,7636:16142584,7488801:4227096,530329,115847 +k1,7636:11915488,7488801:-4227096 +) +(1,7636:11915488,7488801:4227096,414482,115847 +k1,7636:11915488,7488801:3277 +h1,7636:16139307,7488801:0,411205,112570 +) +k1,7636:16348013,7488801:205429 +k1,7636:17942804,7488801:205428 +k1,7636:19256446,7488801:205428 +k1,7636:21384700,7488801:205428 +k1,7636:23474289,7488801:205429 +k1,7636:25824710,7488801:205428 +k1,7636:26646176,7488801:205428 +k1,7636:28459203,7488801:205429 +k1,7636:31189078,7488801:205428 +k1,7636:32583029,7488801:0 +) +(1,7638:6630773,8330289:25952256,513147,115847 +g1,7636:9592345,8330289 +g1,7636:13683757,8330289 +g1,7636:14510821,8330289 +g1,7636:16406777,8330289 +g1,7636:18169040,8330289 +(1,7636:18169040,8330289:0,414482,115847 +r1,7636:19934153,8330289:1765113,530329,115847 +k1,7636:18169040,8330289:-1765113 +) +(1,7636:18169040,8330289:1765113,414482,115847 +k1,7636:18169040,8330289:3277 +h1,7636:19930876,8330289:0,411205,112570 +) +g1,7636:20133382,8330289 +g1,7636:20864108,8330289 +g1,7636:21419197,8330289 +g1,7636:23512416,8330289 +g1,7636:25105596,8330289 +g1,7636:26201358,8330289 +k1,7638:32583029,8330289:4415591 +g1,7638:32583029,8330289 +) +(1,7640:6630773,9171777:25952256,513147,134348 +h1,7639:6630773,9171777:983040,0,0 +k1,7639:9011084,9171777:200584 +k1,7639:10311362,9171777:200584 +k1,7639:11043443,9171777:200584 +k1,7639:13468973,9171777:200583 +k1,7639:14688642,9171777:200584 +k1,7639:16542699,9171777:200584 +k1,7639:17429445,9171777:200584 +k1,7639:18649114,9171777:200584 +k1,7639:20006408,9171777:200584 +k1,7639:21154643,9171777:200584 +k1,7639:23167953,9171777:200584 +k1,7639:26858983,9171777:200583 +k1,7639:28435168,9171777:200584 +k1,7639:29654837,9171777:200584 +k1,7639:31923737,9171777:200584 +k1,7639:32583029,9171777:0 +) +(1,7640:6630773,10013265:25952256,513147,11795 +k1,7639:7824788,10013265:174930 +k1,7639:10841360,10013265:174931 +k1,7639:12207735,10013265:174930 +k1,7639:13772029,10013265:174931 +k1,7639:15823255,10013265:174930 +k1,7639:16989746,10013265:174931 +k1,7639:20100689,10013265:174930 +k1,7639:21909433,10013265:174931 +k1,7639:25658697,10013265:174930 +k1,7639:27118134,10013265:174931 +k1,7639:28496305,10013265:174930 +k1,7639:29202733,10013265:174931 +k1,7639:30148366,10013265:174930 +k1,7639:32583029,10013265:0 +) +(1,7640:6630773,10854753:25952256,505283,126483 +g1,7639:7361499,10854753 +g1,7639:8845234,10854753 +(1,7639:8845234,10854753:0,414482,115847 +r1,7639:10610347,10854753:1765113,530329,115847 +k1,7639:8845234,10854753:-1765113 +) +(1,7639:8845234,10854753:1765113,414482,115847 +k1,7639:8845234,10854753:3277 +h1,7639:10607070,10854753:0,411205,112570 +) +g1,7639:10983246,10854753 +g1,7639:12201560,10854753 +g1,7639:16166488,10854753 +g1,7639:19050727,10854753 +g1,7639:19781453,10854753 +g1,7639:20336542,10854753 +(1,7639:20336542,10854753:0,459977,115847 +r1,7639:22453367,10854753:2116825,575824,115847 +k1,7639:20336542,10854753:-2116825 +) +(1,7639:20336542,10854753:2116825,459977,115847 +k1,7639:20336542,10854753:3277 +h1,7639:22450090,10854753:0,411205,112570 +) +k1,7640:32583029,10854753:9955992 +g1,7640:32583029,10854753 +) +v1,7642:6630773,12045219:0,393216,0 +(1,7662:6630773,17833254:25952256,6181251,196608 +g1,7662:6630773,17833254 +g1,7662:6630773,17833254 +g1,7662:6434165,17833254 +(1,7662:6434165,17833254:0,6181251,196608 +r1,7662:32779637,17833254:26345472,6377859,196608 +k1,7662:6434165,17833254:-26345472 +) +(1,7662:6434165,17833254:26345472,6181251,196608 +[1,7662:6630773,17833254:25952256,5984643,0 +(1,7644:6630773,12252837:25952256,404226,101187 +(1,7643:6630773,12252837:0,0,0 +g1,7643:6630773,12252837 +g1,7643:6630773,12252837 +g1,7643:6303093,12252837 +(1,7643:6303093,12252837:0,0,0 +) +g1,7643:6630773,12252837 +) +k1,7644:6630773,12252837:0 +h1,7644:12321396,12252837:0,0,0 +k1,7644:32583028,12252837:20261632 +g1,7644:32583028,12252837 +) +(1,7645:6630773,12919015:25952256,410518,101187 +h1,7645:6630773,12919015:0,0,0 +k1,7645:6630773,12919015:0 +h1,7645:16115144,12919015:0,0,0 +k1,7645:32583029,12919015:16467885 +g1,7645:32583029,12919015 +) +(1,7649:6630773,13650729:25952256,404226,76021 +(1,7647:6630773,13650729:0,0,0 +g1,7647:6630773,13650729 +g1,7647:6630773,13650729 +g1,7647:6303093,13650729 +(1,7647:6303093,13650729:0,0,0 +) +g1,7647:6630773,13650729 +) +g1,7649:7579210,13650729 +g1,7649:8843793,13650729 +h1,7649:10424521,13650729:0,0,0 +k1,7649:32583029,13650729:22158508 +g1,7649:32583029,13650729 +) +(1,7651:6630773,14972267:25952256,410518,101187 +(1,7650:6630773,14972267:0,0,0 +g1,7650:6630773,14972267 +g1,7650:6630773,14972267 +g1,7650:6303093,14972267 +(1,7650:6303093,14972267:0,0,0 +) +g1,7650:6630773,14972267 +) +k1,7651:6630773,14972267:0 +h1,7651:15798998,14972267:0,0,0 +k1,7651:32583030,14972267:16784032 +g1,7651:32583030,14972267 +) +(1,7655:6630773,15703981:25952256,404226,76021 +(1,7653:6630773,15703981:0,0,0 +g1,7653:6630773,15703981 +g1,7653:6630773,15703981 +g1,7653:6303093,15703981 +(1,7653:6303093,15703981:0,0,0 +) +g1,7653:6630773,15703981 +) +g1,7655:7579210,15703981 +g1,7655:8843793,15703981 +h1,7655:10108376,15703981:0,0,0 +k1,7655:32583028,15703981:22474652 +g1,7655:32583028,15703981 +) +(1,7657:6630773,17025519:25952256,410518,101187 +(1,7656:6630773,17025519:0,0,0 +g1,7656:6630773,17025519 +g1,7656:6630773,17025519 +g1,7656:6303093,17025519 +(1,7656:6303093,17025519:0,0,0 +) +g1,7656:6630773,17025519 +) +k1,7657:6630773,17025519:0 +h1,7657:14850561,17025519:0,0,0 +k1,7657:32583029,17025519:17732468 +g1,7657:32583029,17025519 +) +(1,7661:6630773,17757233:25952256,404226,76021 +(1,7659:6630773,17757233:0,0,0 +g1,7659:6630773,17757233 +g1,7659:6630773,17757233 +g1,7659:6303093,17757233 +(1,7659:6303093,17757233:0,0,0 +) +g1,7659:6630773,17757233 +) +g1,7661:7579210,17757233 +g1,7661:8843793,17757233 +g1,7661:10108376,17757233 +g1,7661:11372959,17757233 +g1,7661:12637542,17757233 +g1,7661:13902125,17757233 +g1,7661:15166708,17757233 +h1,7661:16115145,17757233:0,0,0 +k1,7661:32583029,17757233:16467884 +g1,7661:32583029,17757233 +) +] +) +g1,7662:32583029,17833254 +g1,7662:6630773,17833254 +g1,7662:6630773,17833254 +g1,7662:32583029,17833254 +g1,7662:32583029,17833254 +) +h1,7662:6630773,18029862:0,0,0 +(1,7666:6630773,19395638:25952256,513147,134348 +h1,7665:6630773,19395638:983040,0,0 +k1,7665:8740751,19395638:173389 +k1,7665:9601614,19395638:173390 +k1,7665:10794088,19395638:173389 +k1,7665:12955185,19395638:173390 +k1,7665:13744612,19395638:173389 +k1,7665:16142949,19395638:173390 +k1,7665:17335423,19395638:173389 +k1,7665:19162286,19395638:173390 +k1,7665:20573650,19395638:173389 +k1,7665:21433202,19395638:173390 +k1,7665:22554242,19395638:173389 +k1,7665:24540358,19395638:173390 +k1,7665:28204194,19395638:173389 +k1,7665:29396669,19395638:173390 +k1,7665:32583029,19395638:0 +) +(1,7666:6630773,20237126:25952256,513147,134348 +k1,7665:7392383,20237126:230113 +k1,7665:8907003,20237126:230114 +k1,7665:10005468,20237126:230113 +k1,7665:11328067,20237126:230114 +k1,7665:11914040,20237126:230113 +k1,7665:14038143,20237126:230113 +k1,7665:14954419,20237126:230114 +k1,7665:16203617,20237126:230113 +k1,7665:20199429,20237126:230113 +k1,7665:23114553,20237126:230114 +k1,7665:24104884,20237126:230113 +k1,7665:26070391,20237126:230114 +k1,7665:26656364,20237126:230113 +k1,7665:28780467,20237126:230113 +k1,7665:31337764,20237126:230114 +k1,7665:32227169,20237126:230113 +k1,7665:32583029,20237126:0 +) +(1,7666:6630773,21078614:25952256,513147,126483 +g1,7665:9450131,21078614 +g1,7665:11800907,21078614 +g1,7665:12355996,21078614 +g1,7665:15317568,21078614 +g1,7665:17504504,21078614 +g1,7665:19791055,21078614 +g1,7665:20521781,21078614 +g1,7665:22199502,21078614 +g1,7665:23966352,21078614 +g1,7665:24936284,21078614 +g1,7665:28440494,21078614 +k1,7666:32583029,21078614:1425412 +g1,7666:32583029,21078614 +) +v1,7668:6630773,22269080:0,393216,0 +(1,7672:6630773,22584177:25952256,708313,196608 +g1,7672:6630773,22584177 +g1,7672:6630773,22584177 +g1,7672:6434165,22584177 +(1,7672:6434165,22584177:0,708313,196608 +r1,7672:32779637,22584177:26345472,904921,196608 +k1,7672:6434165,22584177:-26345472 +) +(1,7672:6434165,22584177:26345472,708313,196608 +[1,7672:6630773,22584177:25952256,511705,0 +(1,7670:6630773,22482990:25952256,410518,101187 +(1,7669:6630773,22482990:0,0,0 +g1,7669:6630773,22482990 +g1,7669:6630773,22482990 +g1,7669:6303093,22482990 +(1,7669:6303093,22482990:0,0,0 +) +g1,7669:6630773,22482990 +) +g1,7670:7895356,22482990 +g1,7670:8843794,22482990 +g1,7670:11689105,22482990 +g1,7670:12321397,22482990 +g1,7670:14534417,22482990 +g1,7670:16115146,22482990 +g1,7670:16747438,22482990 +h1,7670:20857332,22482990:0,0,0 +k1,7670:32583029,22482990:11725697 +g1,7670:32583029,22482990 +) +] +) +g1,7672:32583029,22584177 +g1,7672:6630773,22584177 +g1,7672:6630773,22584177 +g1,7672:32583029,22584177 +g1,7672:32583029,22584177 +) +h1,7672:6630773,22780785:0,0,0 +(1,7676:6630773,24146561:25952256,513147,134348 +h1,7675:6630773,24146561:983040,0,0 +g1,7675:11178971,24146561 +g1,7675:12985798,24146561 +g1,7675:14176587,24146561 +g1,7675:17167650,24146561 +g1,7675:17982917,24146561 +g1,7675:19201231,24146561 +g1,7675:21053933,24146561 +g1,7675:22491137,24146561 +g1,7675:23376528,24146561 +g1,7675:24523408,24146561 +g1,7675:26535363,24146561 +k1,7676:32583029,24146561:2557219 +g1,7676:32583029,24146561 +) +v1,7678:6630773,25337027:0,393216,0 +(1,7682:6630773,25652124:25952256,708313,196608 +g1,7682:6630773,25652124 +g1,7682:6630773,25652124 +g1,7682:6434165,25652124 +(1,7682:6434165,25652124:0,708313,196608 +r1,7682:32779637,25652124:26345472,904921,196608 +k1,7682:6434165,25652124:-26345472 +) +(1,7682:6434165,25652124:26345472,708313,196608 +[1,7682:6630773,25652124:25952256,511705,0 +(1,7680:6630773,25550937:25952256,410518,101187 +(1,7679:6630773,25550937:0,0,0 +g1,7679:6630773,25550937 +g1,7679:6630773,25550937 +g1,7679:6303093,25550937 +(1,7679:6303093,25550937:0,0,0 +) +g1,7679:6630773,25550937 +) +k1,7680:6630773,25550937:0 +g1,7680:9792231,25550937 +g1,7680:11689105,25550937 +g1,7680:12321397,25550937 +h1,7680:12953689,25550937:0,0,0 +k1,7680:32583029,25550937:19629340 +g1,7680:32583029,25550937 +) +] +) +g1,7682:32583029,25652124 +g1,7682:6630773,25652124 +g1,7682:6630773,25652124 +g1,7682:32583029,25652124 +g1,7682:32583029,25652124 +) +h1,7682:6630773,25848732:0,0,0 +(1,7685:6630773,40453287:25952256,14014731,0 +k1,7685:12599879,40453287:5969106 +h1,7684:12599879,40453287:0,0,0 +(1,7684:12599879,40453287:14014044,14014731,0 +(1,7684:12599879,40453287:14014766,14014766,0 +(1,7684:12599879,40453287:14014766,14014766,0 +(1,7684:12599879,40453287:0,14014766,0 +(1,7684:12599879,40453287:0,18939904,0 +(1,7684:12599879,40453287:18939904,18939904,0 +) +k1,7684:12599879,40453287:-18939904 +) +) +g1,7684:26614645,40453287 +) +) +) +g1,7685:26613923,40453287 +k1,7685:32583029,40453287:5969106 +) +(1,7693:6630773,41294775:25952256,505283,134348 +h1,7692:6630773,41294775:983040,0,0 +k1,7692:8524492,41294775:282844 +k1,7692:11241914,41294775:282759 +k1,7692:12393110,41294775:282844 +k1,7692:13667514,41294775:282844 +k1,7692:16108458,41294775:282843 +k1,7692:19602566,41294775:282844 +k1,7692:20501448,41294775:282844 +k1,7692:22965985,41294775:282843 +k1,7692:27040742,41294775:282844 +k1,7692:28515030,41294775:282843 +(1,7692:28515030,41294775:0,452978,115847 +r1,7692:30983567,41294775:2468537,568825,115847 +k1,7692:28515030,41294775:-2468537 +) +(1,7692:28515030,41294775:2468537,452978,115847 +k1,7692:28515030,41294775:3277 +h1,7692:30980290,41294775:0,411205,112570 +) +k1,7692:31266411,41294775:282844 +k1,7693:32583029,41294775:0 +) +(1,7693:6630773,42136263:25952256,505283,134348 +k1,7692:8515587,42136263:228064 +k1,7692:9762735,42136263:228063 +k1,7692:11592499,42136263:228064 +k1,7692:15253994,42136263:228064 +k1,7692:17814483,42136263:228063 +k1,7692:20832415,42136263:228064 +(1,7692:20832415,42136263:0,452978,115847 +r1,7692:24004375,42136263:3171960,568825,115847 +k1,7692:20832415,42136263:-3171960 +) +(1,7692:20832415,42136263:3171960,452978,115847 +k1,7692:20832415,42136263:3277 +h1,7692:24001098,42136263:0,411205,112570 +) +k1,7692:24232439,42136263:228064 +k1,7692:25564784,42136263:228063 +k1,7692:26540614,42136263:228064 +k1,7692:28281904,42136263:228064 +k1,7692:29161395,42136263:228063 +k1,7692:31593435,42136263:228064 +k1,7693:32583029,42136263:0 +) +(1,7693:6630773,42977751:25952256,513147,138281 +k1,7692:9330201,42977751:195297 +k1,7692:12745282,42977751:195297 +k1,7692:14137266,42977751:195297 +k1,7692:16598143,42977751:195297 +k1,7692:19755012,42977751:195297 +k1,7692:21141754,42977751:195297 +k1,7692:25960616,42977751:195297 +$1,7692:25960616,42977751 +$1,7692:26428543,42977751 +k1,7692:28847477,42977751:195297 +k1,7692:31821501,42977751:195297 +k1,7693:32583029,42977751:0 +) +(1,7693:6630773,43819239:25952256,513147,126483 +(1,7692:6630773,43819239:0,452978,115847 +r1,7692:9802733,43819239:3171960,568825,115847 +k1,7692:6630773,43819239:-3171960 +) +(1,7692:6630773,43819239:3171960,452978,115847 +k1,7692:6630773,43819239:3277 +h1,7692:9799456,43819239:0,411205,112570 +) +k1,7692:10060742,43819239:258009 +k1,7692:11510196,43819239:258009 +k1,7692:15386448,43819239:258009 +k1,7692:16928962,43819239:258008 +k1,7692:18662186,43819239:258009 +k1,7692:20392789,43819239:258009 +k1,7692:21333683,43819239:258009 +k1,7692:22401062,43819239:258009 +k1,7692:24507186,43819239:258009 +k1,7692:27208376,43819239:258008 +k1,7692:28082423,43819239:258009 +k1,7692:29111135,43819239:258009 +k1,7692:31923737,43819239:258009 +k1,7692:32583029,43819239:0 +) +(1,7693:6630773,44660727:25952256,505283,134348 +k1,7692:9703943,44660727:245291 +k1,7692:12739101,44660727:245290 +(1,7692:12739101,44660727:0,452978,115847 +r1,7692:14504214,44660727:1765113,568825,115847 +k1,7692:12739101,44660727:-1765113 +) +(1,7692:12739101,44660727:1765113,452978,115847 +k1,7692:12739101,44660727:3277 +h1,7692:14500937,44660727:0,411205,112570 +) +k1,7692:14749505,44660727:245291 +k1,7692:15526292,44660727:245290 +k1,7692:16127443,44660727:245291 +k1,7692:19015145,44660727:245290 +k1,7692:20069806,44660727:245291 +(1,7692:20069806,44660727:0,452978,115847 +r1,7692:21483207,44660727:1413401,568825,115847 +k1,7692:20069806,44660727:-1413401 +) +(1,7692:20069806,44660727:1413401,452978,115847 +k1,7692:20069806,44660727:3277 +h1,7692:21479930,44660727:0,411205,112570 +) +k1,7692:21728497,44660727:245290 +k1,7692:23258294,44660727:245291 +k1,7692:25844530,44660727:245290 +k1,7692:26860524,44660727:245291 +k1,7692:29065340,44660727:245290 +k1,7692:30595137,44660727:245291 +k1,7692:31601955,44660727:245290 +k1,7693:32583029,44660727:0 +) +(1,7693:6630773,45502215:25952256,513147,126483 +g1,7692:8327500,45502215 +g1,7692:10224767,45502215 +g1,7692:12774117,45502215 +g1,7692:15598718,45502215 +g1,7692:16817032,45502215 +g1,7692:19175017,45502215 +g1,7692:20041402,45502215 +(1,7692:20041402,45502215:0,452978,115847 +r1,7692:22509939,45502215:2468537,568825,115847 +k1,7692:20041402,45502215:-2468537 +) +(1,7692:20041402,45502215:2468537,452978,115847 +k1,7692:20041402,45502215:3277 +h1,7692:22506662,45502215:0,411205,112570 +) +k1,7693:32583029,45502215:9899420 +g1,7693:32583029,45502215 +) +] +(1,7695:32583029,45706769:0,0,0 +g1,7695:32583029,45706769 +) +) +] +(1,7695:6630773,47279633:25952256,0,0 +h1,7695:6630773,47279633:25952256,0,0 +) +] +h1,7695:4262630,4025873:0,0,0 +] +!18684 }144 -Input:1079:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1080:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1081:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1082:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1083:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1084:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1085:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1086:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1075:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1076:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1077:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1078:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1079:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1080:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1081:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1082:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {145 -[1,7805:4262630,47279633:28320399,43253760,0 -(1,7805:4262630,4025873:0,0,0 -[1,7805:-473657,4025873:25952256,0,0 -(1,7805:-473657,-710414:25952256,0,0 -h1,7805:-473657,-710414:0,0,0 -(1,7805:-473657,-710414:0,0,0 -(1,7805:-473657,-710414:0,0,0 -g1,7805:-473657,-710414 -(1,7805:-473657,-710414:65781,0,65781 -g1,7805:-407876,-710414 -[1,7805:-407876,-644633:0,0,0 +[1,7810:4262630,47279633:28320399,43253760,0 +(1,7810:4262630,4025873:0,0,0 +[1,7810:-473657,4025873:25952256,0,0 +(1,7810:-473657,-710414:25952256,0,0 +h1,7810:-473657,-710414:0,0,0 +(1,7810:-473657,-710414:0,0,0 +(1,7810:-473657,-710414:0,0,0 +g1,7810:-473657,-710414 +(1,7810:-473657,-710414:65781,0,65781 +g1,7810:-407876,-710414 +[1,7810:-407876,-644633:0,0,0 ] ) -k1,7805:-473657,-710414:-65781 +k1,7810:-473657,-710414:-65781 ) ) -k1,7805:25478599,-710414:25952256 -g1,7805:25478599,-710414 +k1,7810:25478599,-710414:25952256 +g1,7810:25478599,-710414 ) ] ) -[1,7805:6630773,47279633:25952256,43253760,0 -[1,7805:6630773,4812305:25952256,786432,0 -(1,7805:6630773,4812305:25952256,505283,134348 -(1,7805:6630773,4812305:25952256,505283,134348 -g1,7805:3078558,4812305 -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,2439708:0,1703936,0 -k1,7805:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7805:2537886,2439708:1179648,16384,0 +[1,7810:6630773,47279633:25952256,43253760,0 +[1,7810:6630773,4812305:25952256,786432,0 +(1,7810:6630773,4812305:25952256,505283,134348 +(1,7810:6630773,4812305:25952256,505283,134348 +g1,7810:3078558,4812305 +[1,7810:3078558,4812305:0,0,0 +(1,7810:3078558,2439708:0,1703936,0 +k1,7810:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7810:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7805:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7810:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,2439708:0,1703936,0 -g1,7805:29030814,2439708 -g1,7805:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7805:36151628,1915420:16384,1179648,0 +[1,7810:3078558,4812305:0,0,0 +(1,7810:3078558,2439708:0,1703936,0 +g1,7810:29030814,2439708 +g1,7810:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7810:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7805:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7810:37855564,2439708:1179648,16384,0 ) ) -k1,7805:3078556,2439708:-34777008 +k1,7810:3078556,2439708:-34777008 ) ] -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,49800853:0,16384,2228224 -k1,7805:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7805:2537886,49800853:1179648,16384,0 +[1,7810:3078558,4812305:0,0,0 +(1,7810:3078558,49800853:0,16384,2228224 +k1,7810:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7810:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7805:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7810:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,49800853:0,16384,2228224 -g1,7805:29030814,49800853 -g1,7805:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7805:36151628,51504789:16384,1179648,0 +[1,7810:3078558,4812305:0,0,0 +(1,7810:3078558,49800853:0,16384,2228224 +g1,7810:29030814,49800853 +g1,7810:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7810:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7805:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7810:37855564,49800853:1179648,16384,0 ) ) -k1,7805:3078556,49800853:-34777008 -) -] -g1,7805:6630773,4812305 -k1,7805:24573876,4812305:16747726 -g1,7805:25960617,4812305 -g1,7805:26609423,4812305 -g1,7805:29923578,4812305 -) -) -] -[1,7805:6630773,45706769:25952256,40108032,0 -(1,7805:6630773,45706769:25952256,40108032,0 -(1,7805:6630773,45706769:0,0,0 -g1,7805:6630773,45706769 -) -[1,7805:6630773,45706769:25952256,40108032,0 -v1,7690:6630773,6254097:0,393216,0 -(1,7704:6630773,11970445:25952256,6109564,196608 -g1,7704:6630773,11970445 -g1,7704:6630773,11970445 -g1,7704:6434165,11970445 -(1,7704:6434165,11970445:0,6109564,196608 -r1,7704:32779637,11970445:26345472,6306172,196608 -k1,7704:6434165,11970445:-26345472 -) -(1,7704:6434165,11970445:26345472,6109564,196608 -[1,7704:6630773,11970445:25952256,5912956,0 -(1,7692:6630773,6468007:25952256,410518,76021 -(1,7691:6630773,6468007:0,0,0 -g1,7691:6630773,6468007 -g1,7691:6630773,6468007 -g1,7691:6303093,6468007 -(1,7691:6303093,6468007:0,0,0 -) -g1,7691:6630773,6468007 -) -k1,7692:6630773,6468007:0 -h1,7692:9792229,6468007:0,0,0 -k1,7692:32583029,6468007:22790800 -g1,7692:32583029,6468007 -) -(1,7703:6630773,7199721:25952256,410518,101187 -(1,7694:6630773,7199721:0,0,0 -g1,7694:6630773,7199721 -g1,7694:6630773,7199721 -g1,7694:6303093,7199721 -(1,7694:6303093,7199721:0,0,0 -) -g1,7694:6630773,7199721 -) -g1,7703:7579210,7199721 -g1,7703:10424521,7199721 -g1,7703:11372958,7199721 -g1,7703:14218269,7199721 -h1,7703:15798997,7199721:0,0,0 -k1,7703:32583029,7199721:16784032 -g1,7703:32583029,7199721 -) -(1,7703:6630773,7865899:25952256,379060,0 -h1,7703:6630773,7865899:0,0,0 -h1,7703:7263064,7865899:0,0,0 -k1,7703:32583028,7865899:25319964 -g1,7703:32583028,7865899 -) -(1,7703:6630773,8532077:25952256,379060,101187 -h1,7703:6630773,8532077:0,0,0 -g1,7703:7579210,8532077 -g1,7703:10740667,8532077 -h1,7703:12321395,8532077:0,0,0 -k1,7703:32583029,8532077:20261634 -g1,7703:32583029,8532077 -) -(1,7703:6630773,9198255:25952256,410518,101187 -h1,7703:6630773,9198255:0,0,0 -g1,7703:7579210,9198255 -g1,7703:7895356,9198255 -g1,7703:8211502,9198255 -g1,7703:8527648,9198255 -g1,7703:8843794,9198255 -g1,7703:9159940,9198255 -g1,7703:9476086,9198255 -g1,7703:9792232,9198255 -g1,7703:10108378,9198255 -g1,7703:10424524,9198255 -g1,7703:10740670,9198255 -g1,7703:11689107,9198255 -g1,7703:12953690,9198255 -g1,7703:13902127,9198255 -g1,7703:15482856,9198255 -g1,7703:16431293,9198255 -g1,7703:17063585,9198255 -g1,7703:18960459,9198255 -g1,7703:19276605,9198255 -g1,7703:19592751,9198255 -g1,7703:19908897,9198255 -k1,7703:19908897,9198255:0 -h1,7703:21805771,9198255:0,0,0 -k1,7703:32583029,9198255:10777258 -g1,7703:32583029,9198255 -) -(1,7703:6630773,9864433:25952256,388497,101187 -h1,7703:6630773,9864433:0,0,0 -g1,7703:7579210,9864433 -g1,7703:9476084,9864433 -g1,7703:9792230,9864433 -g1,7703:10108376,9864433 -g1,7703:10424522,9864433 -g1,7703:10740668,9864433 -g1,7703:11056814,9864433 -g1,7703:11689106,9864433 -g1,7703:13902126,9864433 -g1,7703:14218272,9864433 -g1,7703:16431292,9864433 -g1,7703:16747438,9864433 -g1,7703:18960458,9864433 -g1,7703:19592750,9864433 -g1,7703:22121916,9864433 -h1,7703:23070353,9864433:0,0,0 -k1,7703:32583029,9864433:9512676 -g1,7703:32583029,9864433 -) -(1,7703:6630773,10530611:25952256,404226,9436 -h1,7703:6630773,10530611:0,0,0 -g1,7703:7579210,10530611 -g1,7703:10740667,10530611 -g1,7703:11689104,10530611 -g1,7703:13902124,10530611 -g1,7703:14218270,10530611 -g1,7703:14534416,10530611 -h1,7703:16115144,10530611:0,0,0 -k1,7703:32583029,10530611:16467885 -g1,7703:32583029,10530611 -) -(1,7703:6630773,11196789:25952256,379060,0 -h1,7703:6630773,11196789:0,0,0 -g1,7703:7579210,11196789 -k1,7703:7579210,11196789:0 -h1,7703:8527648,11196789:0,0,0 -k1,7703:32583028,11196789:24055380 -g1,7703:32583028,11196789 -) -(1,7703:6630773,11862967:25952256,410518,107478 -h1,7703:6630773,11862967:0,0,0 -g1,7703:7579210,11862967 -g1,7703:10108376,11862967 -g1,7703:12321396,11862967 -g1,7703:12637542,11862967 -g1,7703:13269834,11862967 -g1,7703:15166709,11862967 -g1,7703:17063583,11862967 -g1,7703:18644312,11862967 -g1,7703:20225041,11862967 -g1,7703:21489625,11862967 -g1,7703:23070354,11862967 -g1,7703:24334938,11862967 -g1,7703:25599521,11862967 -g1,7703:26231813,11862967 -g1,7703:26864105,11862967 -h1,7703:27180251,11862967:0,0,0 -k1,7703:32583029,11862967:5402778 -g1,7703:32583029,11862967 -) -] -) -g1,7704:32583029,11970445 -g1,7704:6630773,11970445 -g1,7704:6630773,11970445 -g1,7704:32583029,11970445 -g1,7704:32583029,11970445 -) -h1,7704:6630773,12167053:0,0,0 -v1,7708:6630773,14057117:0,393216,0 -(1,7805:6630773,37862801:25952256,24198900,589824 -g1,7805:6630773,37862801 -(1,7805:6630773,37862801:25952256,24198900,589824 -(1,7805:6630773,38452625:25952256,24788724,0 -[1,7805:6630773,38452625:25952256,24788724,0 -(1,7805:6630773,38452625:25952256,24762510,0 -r1,7805:6656987,38452625:26214,24762510,0 -[1,7805:6656987,38452625:25899828,24762510,0 -(1,7805:6656987,37862801:25899828,23582862,0 -[1,7805:7246811,37862801:24720180,23582862,0 -(1,7709:7246811,15365475:24720180,1085536,298548 -(1,7708:7246811,15365475:0,1085536,298548 -r1,7805:8753226,15365475:1506415,1384084,298548 -k1,7708:7246811,15365475:-1506415 -) -(1,7708:7246811,15365475:1506415,1085536,298548 -) -k1,7708:9026422,15365475:273196 -k1,7708:10496305,15365475:273196 -k1,7708:13365382,15365475:273196 -k1,7708:15151804,15365475:273196 -k1,7708:16372652,15365475:273197 -k1,7708:18633555,15365475:273196 -k1,7708:19924525,15365475:273196 -k1,7708:21389166,15365475:273196 -k1,7708:24096951,15365475:273122 -k1,7708:28171890,15365475:273196 -k1,7708:29807580,15365475:273196 -k1,7708:31966991,15365475:0 -) -(1,7709:7246811,16206963:24720180,513147,134348 -k1,7708:10723823,16206963:231014 -k1,7708:12787225,16206963:231015 -k1,7708:14519013,16206963:231014 -k1,7708:17512371,16206963:231015 -k1,7708:20548981,16206963:231014 -k1,7708:23096693,16206963:231014 -k1,7708:23987000,16206963:231015 -k1,7708:25913430,16206963:231014 -k1,7708:26803737,16206963:231015 -k1,7708:29679784,16206963:231014 -k1,7708:31966991,16206963:0 -) -(1,7709:7246811,17048451:24720180,505283,134348 -k1,7708:9322891,17048451:208304 -k1,7708:9917856,17048451:208303 -k1,7708:10725814,17048451:208304 -k1,7708:12125563,17048451:208304 -k1,7708:13146512,17048451:208303 -k1,7708:13982651,17048451:208304 -k1,7708:17684679,17048451:208304 -k1,7708:20311917,17048451:208304 -k1,7708:21539305,17048451:208303 -k1,7708:23772671,17048451:208304 -k1,7708:25081980,17048451:208304 -k1,7708:26099653,17048451:208303 -k1,7708:30894822,17048451:208304 -k1,7708:31966991,17048451:0 -) -(1,7709:7246811,17889939:24720180,513147,134348 -k1,7708:10937340,17889939:173867 -k1,7708:12215489,17889939:173867 -k1,7708:13137121,17889939:173866 -k1,7708:16520286,17889939:173867 -k1,7708:17641804,17889939:173867 -k1,7708:21479134,17889939:173867 -k1,7708:24245605,17889939:173867 -k1,7708:25886167,17889939:173866 -k1,7708:28379353,17889939:173867 -k1,7708:29204648,17889939:173867 -k1,7708:31966991,17889939:0 -) -(1,7709:7246811,18731427:24720180,513147,126483 -k1,7708:11344777,18731427:156631 -k1,7708:12420223,18731427:156631 -k1,7708:15016104,18731427:156631 -k1,7708:16558821,18731427:156631 -k1,7708:17102114,18731427:156631 -k1,7708:17790243,18731427:156632 -k1,7708:20234081,18731427:156631 -k1,7708:23889679,18731427:156631 -k1,7708:24697738,18731427:156631 -k1,7708:26720834,18731427:156631 -k1,7708:28960199,18731427:156631 -k1,7708:31966991,18731427:0 -) -(1,7709:7246811,19572915:24720180,513147,126483 -g1,7708:8888487,19572915 -g1,7708:10473802,19572915 -g1,7708:11485677,19572915 -g1,7708:12703991,19572915 -g1,7708:15168800,19572915 -g1,7708:16881255,19572915 -g1,7708:17842012,19572915 -g1,7708:19463372,19572915 -g1,7708:20854046,19572915 -k1,7709:31966991,19572915:9780598 -g1,7709:31966991,19572915 -) -(1,7711:7246811,20414403:24720180,513147,126483 -h1,7710:7246811,20414403:983040,0,0 -k1,7710:9646605,20414403:220067 -k1,7710:12828244,20414403:220067 -k1,7710:14561537,20414403:220067 -k1,7710:16560906,20414403:220067 -k1,7710:17800058,20414403:220067 -k1,7710:21066238,20414403:220067 -k1,7710:24065032,20414403:220067 -k1,7710:25046627,20414403:220067 -(1,7710:25046627,20414403:0,459977,115847 -r1,7805:27163452,20414403:2116825,575824,115847 -k1,7710:25046627,20414403:-2116825 -) -(1,7710:25046627,20414403:2116825,459977,115847 -k1,7710:25046627,20414403:3277 -h1,7710:27160175,20414403:0,411205,112570 -) -k1,7710:27383519,20414403:220067 -k1,7710:28795031,20414403:220067 -(1,7710:28795031,20414403:0,452978,115847 -r1,7805:31966991,20414403:3171960,568825,115847 -k1,7710:28795031,20414403:-3171960 -) -(1,7710:28795031,20414403:3171960,452978,115847 -k1,7710:28795031,20414403:3277 -h1,7710:31963714,20414403:0,411205,112570 -) -k1,7710:31966991,20414403:0 -) -(1,7711:7246811,21255891:24720180,513147,126483 -k1,7710:9811454,21255891:192895 -k1,7710:10655777,21255891:192895 -k1,7710:11619375,21255891:192895 -k1,7710:14246927,21255891:192889 -k1,7710:16427529,21255891:192895 -k1,7710:17481567,21255891:192895 -k1,7710:18871149,21255891:192895 -k1,7710:21329625,21255891:192896 -k1,7710:23035746,21255891:192895 -k1,7710:23844679,21255891:192895 -k1,7710:24452411,21255891:192889 -k1,7710:25176803,21255891:192895 -k1,7710:28132041,21255891:192895 -k1,7710:28976364,21255891:192895 -k1,7710:30453765,21255891:192895 -k1,7710:31966991,21255891:0 -) -(1,7711:7246811,22097379:24720180,513147,134348 -k1,7710:8099076,22097379:236227 -k1,7710:10027444,22097379:236228 -k1,7710:11965641,22097379:236227 -k1,7710:15274197,22097379:236228 -k1,7710:17184214,22097379:236227 -k1,7710:20182785,22097379:236228 -k1,7710:21861459,22097379:236227 -k1,7710:22713725,22097379:236228 -k1,7710:23683955,22097379:236227 -k1,7710:25116870,22097379:236228 -k1,7710:26954797,22097379:236227 -k1,7710:31966991,22097379:0 -) -(1,7711:7246811,22938867:24720180,513147,134348 -k1,7710:8690569,22938867:205783 -k1,7710:9555644,22938867:205783 -k1,7710:11943121,22938867:205783 -k1,7710:12504764,22938867:205783 -k1,7710:15472890,22938867:205783 -k1,7710:17944253,22938867:205783 -k1,7710:19097687,22938867:205783 -k1,7710:19659331,22938867:205784 -k1,7710:21747963,22938867:205783 -k1,7710:23798584,22938867:205783 -k1,7710:24663659,22938867:205783 -k1,7710:26857149,22938867:205783 -k1,7710:28080706,22938867:205783 -k1,7710:28817986,22938867:205783 -k1,7710:29785297,22938867:205783 -k1,7711:31966991,22938867:0 -) -(1,7711:7246811,23780355:24720180,505283,126483 -g1,7710:7860883,23780355 -g1,7710:10142846,23780355 -(1,7710:10142846,23780355:0,414482,115847 -r1,7805:13314806,23780355:3171960,530329,115847 -k1,7710:10142846,23780355:-3171960 -) -(1,7710:10142846,23780355:3171960,414482,115847 -k1,7710:10142846,23780355:3277 -h1,7710:13311529,23780355:0,411205,112570 -) -g1,7710:13687705,23780355 -g1,7710:15772405,23780355 -g1,7710:16839986,23780355 -g1,7710:18437098,23780355 -g1,7710:20011928,23780355 -k1,7711:31966991,23780355:10199353 -g1,7711:31966991,23780355 -) -v1,7713:7246811,24970821:0,393216,0 -(1,7722:7246811,27343696:24720180,2766091,196608 -g1,7722:7246811,27343696 -g1,7722:7246811,27343696 -g1,7722:7050203,27343696 -(1,7722:7050203,27343696:0,2766091,196608 -r1,7805:32163599,27343696:25113396,2962699,196608 -k1,7722:7050203,27343696:-25113396 -) -(1,7722:7050203,27343696:25113396,2766091,196608 -[1,7722:7246811,27343696:24720180,2569483,0 -(1,7715:7246811,25178439:24720180,404226,101187 -(1,7714:7246811,25178439:0,0,0 -g1,7714:7246811,25178439 -g1,7714:7246811,25178439 -g1,7714:6919131,25178439 -(1,7714:6919131,25178439:0,0,0 -) -g1,7714:7246811,25178439 -) -k1,7715:7246811,25178439:0 -h1,7715:13569725,25178439:0,0,0 -k1,7715:31966991,25178439:18397266 -g1,7715:31966991,25178439 -) -(1,7721:7246811,25910153:24720180,410518,31456 -(1,7717:7246811,25910153:0,0,0 -g1,7717:7246811,25910153 -g1,7717:7246811,25910153 -g1,7717:6919131,25910153 -(1,7717:6919131,25910153:0,0,0 -) -g1,7717:7246811,25910153 -) -g1,7721:8195248,25910153 -h1,7721:11356705,25910153:0,0,0 -k1,7721:31966991,25910153:20610286 -g1,7721:31966991,25910153 -) -(1,7721:7246811,26576331:24720180,404226,6290 -h1,7721:7246811,26576331:0,0,0 -g1,7721:8195248,26576331 -g1,7721:8511394,26576331 -g1,7721:8827540,26576331 -g1,7721:9143686,26576331 -g1,7721:9459832,26576331 -g1,7721:9775978,26576331 -g1,7721:10092124,26576331 -g1,7721:10408270,26576331 -g1,7721:10724416,26576331 -g1,7721:13885873,26576331 -g1,7721:14202019,26576331 -g1,7721:14518165,26576331 -g1,7721:14834311,26576331 -g1,7721:15150457,26576331 -g1,7721:15466603,26576331 -g1,7721:15782749,26576331 -g1,7721:16098895,26576331 -g1,7721:16415041,26576331 -g1,7721:16731187,26576331 -g1,7721:17047333,26576331 -h1,7721:19260353,26576331:0,0,0 -k1,7721:31966991,26576331:12706638 -g1,7721:31966991,26576331 -) -(1,7721:7246811,27242509:24720180,404226,101187 -h1,7721:7246811,27242509:0,0,0 -g1,7721:8195248,27242509 -g1,7721:13885871,27242509 -g1,7721:14202017,27242509 -g1,7721:14518163,27242509 -g1,7721:14834309,27242509 -g1,7721:15150455,27242509 -g1,7721:15466601,27242509 -h1,7721:19260349,27242509:0,0,0 -k1,7721:31966991,27242509:12706642 -g1,7721:31966991,27242509 -) -] -) -g1,7722:31966991,27343696 -g1,7722:7246811,27343696 -g1,7722:7246811,27343696 -g1,7722:31966991,27343696 -g1,7722:31966991,27343696 -) -h1,7722:7246811,27540304:0,0,0 -(1,7726:7246811,28906080:24720180,505283,126483 -h1,7725:7246811,28906080:983040,0,0 -k1,7725:8838795,28906080:139051 -k1,7725:9509343,28906080:139051 -k1,7725:10934210,28906080:139051 -k1,7725:13703221,28906080:139051 -k1,7725:14493700,28906080:139051 -k1,7725:16453341,28906080:139051 -k1,7725:17611477,28906080:139051 -k1,7725:20381799,28906080:139051 -k1,7725:21172277,28906080:139050 -k1,7725:22059094,28906080:139051 -k1,7725:23711371,28906080:139051 -k1,7725:24466460,28906080:139051 -k1,7725:25624596,28906080:139051 -k1,7725:26863341,28906080:139051 -k1,7725:27653820,28906080:139051 -(1,7725:27653820,28906080:0,452978,115847 -r1,7805:29418933,28906080:1765113,568825,115847 -k1,7725:27653820,28906080:-1765113 -) -(1,7725:27653820,28906080:1765113,452978,115847 -k1,7725:27653820,28906080:3277 -h1,7725:29415656,28906080:0,411205,112570 -) -k1,7725:29557984,28906080:139051 -k1,7725:30379920,28906080:139051 -(1,7725:30379920,28906080:0,452978,115847 -r1,7805:31793321,28906080:1413401,568825,115847 -k1,7725:30379920,28906080:-1413401 -) -(1,7725:30379920,28906080:1413401,452978,115847 -k1,7725:30379920,28906080:3277 -h1,7725:31790044,28906080:0,411205,112570 -) -k1,7725:31966991,28906080:0 -) -(1,7726:7246811,29747568:24720180,513147,115847 -k1,7725:8615654,29747568:172156 -k1,7725:11227060,29747568:172156 -(1,7725:11227060,29747568:0,414482,115847 -r1,7805:16509291,29747568:5282231,530329,115847 -k1,7725:11227060,29747568:-5282231 -) -(1,7725:11227060,29747568:5282231,414482,115847 -k1,7725:11227060,29747568:3277 -h1,7725:16506014,29747568:0,411205,112570 -) -k1,7725:16681446,29747568:172155 -k1,7725:18276389,29747568:172156 -k1,7725:19467630,29747568:172156 -k1,7725:20945919,29747568:172156 -k1,7725:22580182,29747568:172155 -k1,7725:23411630,29747568:172156 -k1,7725:24602871,29747568:172156 -k1,7725:26669017,29747568:172156 -k1,7725:29867625,29747568:172155 -k1,7725:30691209,29747568:172156 -k1,7725:31611131,29747568:172156 -k1,7725:31966991,29747568:0 -) -(1,7726:7246811,30589056:24720180,513147,134348 -k1,7725:9907966,30589056:166199 -k1,7725:10760327,30589056:166199 -k1,7725:13905793,30589056:166199 -k1,7725:15019643,30589056:166199 -k1,7725:18564878,30589056:166199 -k1,7725:19390370,30589056:166200 -k1,7725:23167603,30589056:166199 -k1,7725:24525247,30589056:166199 -k1,7725:26200085,30589056:166199 -k1,7725:30277473,30589056:166199 -k1,7726:31966991,30589056:0 -) -(1,7726:7246811,31430544:24720180,513147,134348 -(1,7725:7246811,31430544:0,414482,115847 -r1,7805:10418771,31430544:3171960,530329,115847 -k1,7725:7246811,31430544:-3171960 -) -(1,7725:7246811,31430544:3171960,414482,115847 -k1,7725:7246811,31430544:3277 -h1,7725:10415494,31430544:0,411205,112570 -) -k1,7725:10635038,31430544:216267 -k1,7725:12274093,31430544:216268 -k1,7725:13176522,31430544:216267 -k1,7725:16372057,31430544:216268 -k1,7725:17607409,31430544:216267 -k1,7725:19561691,31430544:216267 -k1,7725:20437251,31430544:216268 -k1,7725:21419634,31430544:216267 -k1,7725:23601981,31430544:216267 -k1,7725:24579777,31430544:216268 -k1,7725:26531437,31430544:216267 -k1,7725:27433867,31430544:216268 -k1,7725:30682485,31430544:216267 -k1,7725:31966991,31430544:0 -) -(1,7726:7246811,32272032:24720180,513147,134348 -k1,7725:8505758,32272032:239862 -k1,7725:10110735,32272032:239862 -k1,7725:11009888,32272032:239861 -k1,7725:12268835,32272032:239862 -k1,7725:15789429,32272032:239862 -k1,7725:19075404,32272032:239862 -k1,7725:19846762,32272032:239861 -k1,7725:21814153,32272032:239862 -k1,7725:22705443,32272032:239862 -k1,7725:24539141,32272032:239862 -k1,7725:27952911,32272032:239861 -k1,7725:29396014,32272032:239862 -k1,7725:31966991,32272032:0 -) -(1,7726:7246811,33113520:24720180,513147,138281 -g1,7725:8994656,33113520 -g1,7725:10212970,33113520 -g1,7725:14023233,33113520 -g1,7725:17065414,33113520 -g1,7725:18456088,33113520 -g1,7725:22880423,33113520 -g1,7725:24365468,33113520 -g1,7725:25583782,33113520 -g1,7725:28919564,33113520 -$1,7725:28919564,33113520 -$1,7725:29387491,33113520 -k1,7726:31966991,33113520:182193 -g1,7726:31966991,33113520 -) -v1,7728:7246811,34303986:0,393216,0 -(1,7735:7246811,36617617:24720180,2706847,196608 -g1,7735:7246811,36617617 -g1,7735:7246811,36617617 -g1,7735:7050203,36617617 -(1,7735:7050203,36617617:0,2706847,196608 -r1,7805:32163599,36617617:25113396,2903455,196608 -k1,7735:7050203,36617617:-25113396 -) -(1,7735:7050203,36617617:25113396,2706847,196608 -[1,7735:7246811,36617617:24720180,2510239,0 -(1,7730:7246811,34517896:24720180,410518,101187 -(1,7729:7246811,34517896:0,0,0 -g1,7729:7246811,34517896 -g1,7729:7246811,34517896 -g1,7729:6919131,34517896 -(1,7729:6919131,34517896:0,0,0 -) -g1,7729:7246811,34517896 -) -g1,7730:9775977,34517896 -g1,7730:10724415,34517896 -g1,7730:13569726,34517896 -g1,7730:14202018,34517896 -g1,7730:16415038,34517896 -g1,7730:17995767,34517896 -g1,7730:18628059,34517896 -k1,7730:18628059,34517896:0 -h1,7730:22737953,34517896:0,0,0 -k1,7730:31966991,34517896:9229038 -g1,7730:31966991,34517896 -) -(1,7731:7246811,35184074:24720180,404226,101187 -h1,7731:7246811,35184074:0,0,0 -g1,7731:7562957,35184074 -g1,7731:7879103,35184074 -g1,7731:8195249,35184074 -g1,7731:8511395,35184074 -g1,7731:8827541,35184074 -g1,7731:9143687,35184074 -g1,7731:9459833,35184074 -g1,7731:9775979,35184074 -g1,7731:10092125,35184074 -g1,7731:10408271,35184074 -g1,7731:10724417,35184074 -g1,7731:11040563,35184074 -g1,7731:11356709,35184074 -g1,7731:11672855,35184074 -g1,7731:14834312,35184074 -g1,7731:15466604,35184074 -g1,7731:18944207,35184074 -g1,7731:19576499,35184074 -h1,7731:24950976,35184074:0,0,0 -k1,7731:31966991,35184074:7016015 -g1,7731:31966991,35184074 -) -(1,7732:7246811,35850252:24720180,410518,101187 -h1,7732:7246811,35850252:0,0,0 -g1,7732:9459831,35850252 -g1,7732:9775977,35850252 -g1,7732:10724415,35850252 -g1,7732:13569726,35850252 -g1,7732:14202018,35850252 -g1,7732:16415038,35850252 -g1,7732:17995767,35850252 -g1,7732:18628059,35850252 -k1,7732:18628059,35850252:0 -h1,7732:22737953,35850252:0,0,0 -k1,7732:31966991,35850252:9229038 -g1,7732:31966991,35850252 -) -(1,7733:7246811,36516430:24720180,404226,101187 -h1,7733:7246811,36516430:0,0,0 -g1,7733:7562957,36516430 -g1,7733:7879103,36516430 -g1,7733:8195249,36516430 -g1,7733:8511395,36516430 -g1,7733:8827541,36516430 -g1,7733:9143687,36516430 -g1,7733:9459833,36516430 -g1,7733:9775979,36516430 -g1,7733:10092125,36516430 -g1,7733:10408271,36516430 -g1,7733:10724417,36516430 -g1,7733:11040563,36516430 -g1,7733:11356709,36516430 -g1,7733:11672855,36516430 -g1,7733:14834312,36516430 -g1,7733:15466604,36516430 -g1,7733:18944207,36516430 -g1,7733:19576499,36516430 -h1,7733:23054101,36516430:0,0,0 -k1,7733:31966991,36516430:8912890 -g1,7733:31966991,36516430 -) -] -) -g1,7735:31966991,36617617 -g1,7735:7246811,36617617 -g1,7735:7246811,36617617 -g1,7735:31966991,36617617 -g1,7735:31966991,36617617 -) -h1,7735:7246811,36814225:0,0,0 -] -) -] -r1,7805:32583029,38452625:26214,24762510,0 -) -] -) -) -g1,7805:32583029,37862801 -) -] -(1,7805:32583029,45706769:0,0,0 -g1,7805:32583029,45706769 -) -) -] -(1,7805:6630773,47279633:25952256,0,0 -h1,7805:6630773,47279633:25952256,0,0 -) -] -h1,7805:4262630,4025873:0,0,0 -] -!22760 +k1,7810:3078556,49800853:-34777008 +) +] +g1,7810:6630773,4812305 +k1,7810:24502442,4812305:16676292 +g1,7810:25889183,4812305 +g1,7810:26537989,4812305 +g1,7810:29852144,4812305 +) +) +] +[1,7810:6630773,45706769:25952256,40108032,0 +(1,7810:6630773,45706769:25952256,40108032,0 +(1,7810:6630773,45706769:0,0,0 +g1,7810:6630773,45706769 +) +[1,7810:6630773,45706769:25952256,40108032,0 +v1,7695:6630773,6254097:0,393216,0 +(1,7709:6630773,11970445:25952256,6109564,196608 +g1,7709:6630773,11970445 +g1,7709:6630773,11970445 +g1,7709:6434165,11970445 +(1,7709:6434165,11970445:0,6109564,196608 +r1,7709:32779637,11970445:26345472,6306172,196608 +k1,7709:6434165,11970445:-26345472 +) +(1,7709:6434165,11970445:26345472,6109564,196608 +[1,7709:6630773,11970445:25952256,5912956,0 +(1,7697:6630773,6468007:25952256,410518,76021 +(1,7696:6630773,6468007:0,0,0 +g1,7696:6630773,6468007 +g1,7696:6630773,6468007 +g1,7696:6303093,6468007 +(1,7696:6303093,6468007:0,0,0 +) +g1,7696:6630773,6468007 +) +k1,7697:6630773,6468007:0 +h1,7697:9792229,6468007:0,0,0 +k1,7697:32583029,6468007:22790800 +g1,7697:32583029,6468007 +) +(1,7708:6630773,7199721:25952256,410518,101187 +(1,7699:6630773,7199721:0,0,0 +g1,7699:6630773,7199721 +g1,7699:6630773,7199721 +g1,7699:6303093,7199721 +(1,7699:6303093,7199721:0,0,0 +) +g1,7699:6630773,7199721 +) +g1,7708:7579210,7199721 +g1,7708:10424521,7199721 +g1,7708:11372958,7199721 +g1,7708:14218269,7199721 +h1,7708:15798997,7199721:0,0,0 +k1,7708:32583029,7199721:16784032 +g1,7708:32583029,7199721 +) +(1,7708:6630773,7865899:25952256,379060,0 +h1,7708:6630773,7865899:0,0,0 +h1,7708:7263064,7865899:0,0,0 +k1,7708:32583028,7865899:25319964 +g1,7708:32583028,7865899 +) +(1,7708:6630773,8532077:25952256,379060,101187 +h1,7708:6630773,8532077:0,0,0 +g1,7708:7579210,8532077 +g1,7708:10740667,8532077 +h1,7708:12321395,8532077:0,0,0 +k1,7708:32583029,8532077:20261634 +g1,7708:32583029,8532077 +) +(1,7708:6630773,9198255:25952256,410518,101187 +h1,7708:6630773,9198255:0,0,0 +g1,7708:7579210,9198255 +g1,7708:7895356,9198255 +g1,7708:8211502,9198255 +g1,7708:8527648,9198255 +g1,7708:8843794,9198255 +g1,7708:9159940,9198255 +g1,7708:9476086,9198255 +g1,7708:9792232,9198255 +g1,7708:10108378,9198255 +g1,7708:10424524,9198255 +g1,7708:10740670,9198255 +g1,7708:11689107,9198255 +g1,7708:12953690,9198255 +g1,7708:13902127,9198255 +g1,7708:15482856,9198255 +g1,7708:16431293,9198255 +g1,7708:17063585,9198255 +g1,7708:18960459,9198255 +g1,7708:19276605,9198255 +g1,7708:19592751,9198255 +g1,7708:19908897,9198255 +k1,7708:19908897,9198255:0 +h1,7708:21805771,9198255:0,0,0 +k1,7708:32583029,9198255:10777258 +g1,7708:32583029,9198255 +) +(1,7708:6630773,9864433:25952256,388497,101187 +h1,7708:6630773,9864433:0,0,0 +g1,7708:7579210,9864433 +g1,7708:9476084,9864433 +g1,7708:9792230,9864433 +g1,7708:10108376,9864433 +g1,7708:10424522,9864433 +g1,7708:10740668,9864433 +g1,7708:11056814,9864433 +g1,7708:11689106,9864433 +g1,7708:13902126,9864433 +g1,7708:14218272,9864433 +g1,7708:16431292,9864433 +g1,7708:16747438,9864433 +g1,7708:18960458,9864433 +g1,7708:19592750,9864433 +g1,7708:22121916,9864433 +h1,7708:23070353,9864433:0,0,0 +k1,7708:32583029,9864433:9512676 +g1,7708:32583029,9864433 +) +(1,7708:6630773,10530611:25952256,404226,9436 +h1,7708:6630773,10530611:0,0,0 +g1,7708:7579210,10530611 +g1,7708:10740667,10530611 +g1,7708:11689104,10530611 +g1,7708:13902124,10530611 +g1,7708:14218270,10530611 +g1,7708:14534416,10530611 +h1,7708:16115144,10530611:0,0,0 +k1,7708:32583029,10530611:16467885 +g1,7708:32583029,10530611 +) +(1,7708:6630773,11196789:25952256,379060,0 +h1,7708:6630773,11196789:0,0,0 +g1,7708:7579210,11196789 +k1,7708:7579210,11196789:0 +h1,7708:8527648,11196789:0,0,0 +k1,7708:32583028,11196789:24055380 +g1,7708:32583028,11196789 +) +(1,7708:6630773,11862967:25952256,410518,107478 +h1,7708:6630773,11862967:0,0,0 +g1,7708:7579210,11862967 +g1,7708:10108376,11862967 +g1,7708:12321396,11862967 +g1,7708:12637542,11862967 +g1,7708:13269834,11862967 +g1,7708:15166709,11862967 +g1,7708:17063583,11862967 +g1,7708:18644312,11862967 +g1,7708:20225041,11862967 +g1,7708:21489625,11862967 +g1,7708:23070354,11862967 +g1,7708:24334938,11862967 +g1,7708:25599521,11862967 +g1,7708:26231813,11862967 +g1,7708:26864105,11862967 +h1,7708:27180251,11862967:0,0,0 +k1,7708:32583029,11862967:5402778 +g1,7708:32583029,11862967 +) +] +) +g1,7709:32583029,11970445 +g1,7709:6630773,11970445 +g1,7709:6630773,11970445 +g1,7709:32583029,11970445 +g1,7709:32583029,11970445 +) +h1,7709:6630773,12167053:0,0,0 +v1,7713:6630773,14057117:0,393216,0 +(1,7810:6630773,42395304:25952256,28731403,589824 +g1,7810:6630773,42395304 +(1,7810:6630773,42395304:25952256,28731403,589824 +(1,7810:6630773,42985128:25952256,29321227,0 +[1,7810:6630773,42985128:25952256,29321227,0 +(1,7810:6630773,42985128:25952256,29295013,0 +r1,7810:6656987,42985128:26214,29295013,0 +[1,7810:6656987,42985128:25899828,29295013,0 +(1,7810:6656987,42395304:25899828,28115365,0 +[1,7810:7246811,42395304:24720180,28115365,0 +(1,7714:7246811,15365475:24720180,1085536,298548 +(1,7713:7246811,15365475:0,1085536,298548 +r1,7810:8753226,15365475:1506415,1384084,298548 +k1,7713:7246811,15365475:-1506415 +) +(1,7713:7246811,15365475:1506415,1085536,298548 +) +k1,7713:9026422,15365475:273196 +k1,7713:10496305,15365475:273196 +k1,7713:13365382,15365475:273196 +k1,7713:15151804,15365475:273196 +k1,7713:16372652,15365475:273197 +k1,7713:18633555,15365475:273196 +k1,7713:19924525,15365475:273196 +k1,7713:21389166,15365475:273196 +k1,7713:24096951,15365475:273122 +k1,7713:28171890,15365475:273196 +k1,7713:29807580,15365475:273196 +k1,7713:31966991,15365475:0 +) +(1,7714:7246811,16206963:24720180,513147,134348 +k1,7713:10723823,16206963:231014 +k1,7713:12787225,16206963:231015 +k1,7713:14519013,16206963:231014 +k1,7713:17512371,16206963:231015 +k1,7713:20548981,16206963:231014 +k1,7713:23096693,16206963:231014 +k1,7713:23987000,16206963:231015 +k1,7713:25913430,16206963:231014 +k1,7713:26803737,16206963:231015 +k1,7713:29679784,16206963:231014 +k1,7713:31966991,16206963:0 +) +(1,7714:7246811,17048451:24720180,505283,134348 +k1,7713:9322891,17048451:208304 +k1,7713:9917856,17048451:208303 +k1,7713:10725814,17048451:208304 +k1,7713:12125563,17048451:208304 +k1,7713:13146512,17048451:208303 +k1,7713:13982651,17048451:208304 +k1,7713:17684679,17048451:208304 +k1,7713:20311917,17048451:208304 +k1,7713:21539305,17048451:208303 +k1,7713:23772671,17048451:208304 +k1,7713:25081980,17048451:208304 +k1,7713:26099653,17048451:208303 +k1,7713:30894822,17048451:208304 +k1,7713:31966991,17048451:0 +) +(1,7714:7246811,17889939:24720180,513147,134348 +k1,7713:10937340,17889939:173867 +k1,7713:12215489,17889939:173867 +k1,7713:13137121,17889939:173866 +k1,7713:16520286,17889939:173867 +k1,7713:17641804,17889939:173867 +k1,7713:21479134,17889939:173867 +k1,7713:24245605,17889939:173867 +k1,7713:25886167,17889939:173866 +k1,7713:28379353,17889939:173867 +k1,7713:29204648,17889939:173867 +k1,7713:31966991,17889939:0 +) +(1,7714:7246811,18731427:24720180,513147,126483 +k1,7713:11344777,18731427:156631 +k1,7713:12420223,18731427:156631 +k1,7713:15016104,18731427:156631 +k1,7713:16558821,18731427:156631 +k1,7713:17102114,18731427:156631 +k1,7713:17790243,18731427:156632 +k1,7713:20234081,18731427:156631 +k1,7713:23889679,18731427:156631 +k1,7713:24697738,18731427:156631 +k1,7713:26720834,18731427:156631 +k1,7713:28960199,18731427:156631 +k1,7713:31966991,18731427:0 +) +(1,7714:7246811,19572915:24720180,513147,126483 +g1,7713:8888487,19572915 +g1,7713:10473802,19572915 +g1,7713:11485677,19572915 +g1,7713:12703991,19572915 +g1,7713:15168800,19572915 +g1,7713:16881255,19572915 +g1,7713:17842012,19572915 +g1,7713:19463372,19572915 +g1,7713:20854046,19572915 +k1,7714:31966991,19572915:9780598 +g1,7714:31966991,19572915 +) +(1,7716:7246811,20414403:24720180,513147,126483 +h1,7715:7246811,20414403:983040,0,0 +k1,7715:9646605,20414403:220067 +k1,7715:12828244,20414403:220067 +k1,7715:14561537,20414403:220067 +k1,7715:16560906,20414403:220067 +k1,7715:17800058,20414403:220067 +k1,7715:21066238,20414403:220067 +k1,7715:24065032,20414403:220067 +k1,7715:25046627,20414403:220067 +(1,7715:25046627,20414403:0,459977,115847 +r1,7810:27163452,20414403:2116825,575824,115847 +k1,7715:25046627,20414403:-2116825 +) +(1,7715:25046627,20414403:2116825,459977,115847 +k1,7715:25046627,20414403:3277 +h1,7715:27160175,20414403:0,411205,112570 +) +k1,7715:27383519,20414403:220067 +k1,7715:28795031,20414403:220067 +(1,7715:28795031,20414403:0,452978,115847 +r1,7810:31966991,20414403:3171960,568825,115847 +k1,7715:28795031,20414403:-3171960 +) +(1,7715:28795031,20414403:3171960,452978,115847 +k1,7715:28795031,20414403:3277 +h1,7715:31963714,20414403:0,411205,112570 +) +k1,7715:31966991,20414403:0 +) +(1,7716:7246811,21255891:24720180,513147,126483 +k1,7715:9811454,21255891:192895 +k1,7715:10655777,21255891:192895 +k1,7715:11619375,21255891:192895 +k1,7715:14246927,21255891:192889 +k1,7715:16427529,21255891:192895 +k1,7715:17481567,21255891:192895 +k1,7715:18871149,21255891:192895 +k1,7715:21329625,21255891:192896 +k1,7715:23035746,21255891:192895 +k1,7715:23844679,21255891:192895 +k1,7715:24452411,21255891:192889 +k1,7715:25176803,21255891:192895 +k1,7715:28132041,21255891:192895 +k1,7715:28976364,21255891:192895 +k1,7715:30453765,21255891:192895 +k1,7715:31966991,21255891:0 +) +(1,7716:7246811,22097379:24720180,513147,134348 +k1,7715:8099076,22097379:236227 +k1,7715:10027444,22097379:236228 +k1,7715:11965641,22097379:236227 +k1,7715:15274197,22097379:236228 +k1,7715:17184214,22097379:236227 +k1,7715:20182785,22097379:236228 +k1,7715:21861459,22097379:236227 +k1,7715:22713725,22097379:236228 +k1,7715:23683955,22097379:236227 +k1,7715:25116870,22097379:236228 +k1,7715:26954797,22097379:236227 +k1,7715:31966991,22097379:0 +) +(1,7716:7246811,22938867:24720180,513147,134348 +k1,7715:8690569,22938867:205783 +k1,7715:9555644,22938867:205783 +k1,7715:11943121,22938867:205783 +k1,7715:12504764,22938867:205783 +k1,7715:15472890,22938867:205783 +k1,7715:17944253,22938867:205783 +k1,7715:19097687,22938867:205783 +k1,7715:19659331,22938867:205784 +k1,7715:21747963,22938867:205783 +k1,7715:23798584,22938867:205783 +k1,7715:24663659,22938867:205783 +k1,7715:26857149,22938867:205783 +k1,7715:28080706,22938867:205783 +k1,7715:28817986,22938867:205783 +k1,7715:29785297,22938867:205783 +k1,7716:31966991,22938867:0 +) +(1,7716:7246811,23780355:24720180,505283,126483 +g1,7715:7860883,23780355 +g1,7715:10142846,23780355 +(1,7715:10142846,23780355:0,414482,115847 +r1,7810:13314806,23780355:3171960,530329,115847 +k1,7715:10142846,23780355:-3171960 +) +(1,7715:10142846,23780355:3171960,414482,115847 +k1,7715:10142846,23780355:3277 +h1,7715:13311529,23780355:0,411205,112570 +) +g1,7715:13687705,23780355 +g1,7715:15772405,23780355 +g1,7715:16839986,23780355 +g1,7715:18437098,23780355 +g1,7715:20011928,23780355 +k1,7716:31966991,23780355:10199353 +g1,7716:31966991,23780355 +) +v1,7718:7246811,24970821:0,393216,0 +(1,7727:7246811,27343696:24720180,2766091,196608 +g1,7727:7246811,27343696 +g1,7727:7246811,27343696 +g1,7727:7050203,27343696 +(1,7727:7050203,27343696:0,2766091,196608 +r1,7810:32163599,27343696:25113396,2962699,196608 +k1,7727:7050203,27343696:-25113396 +) +(1,7727:7050203,27343696:25113396,2766091,196608 +[1,7727:7246811,27343696:24720180,2569483,0 +(1,7720:7246811,25178439:24720180,404226,101187 +(1,7719:7246811,25178439:0,0,0 +g1,7719:7246811,25178439 +g1,7719:7246811,25178439 +g1,7719:6919131,25178439 +(1,7719:6919131,25178439:0,0,0 +) +g1,7719:7246811,25178439 +) +k1,7720:7246811,25178439:0 +h1,7720:13569725,25178439:0,0,0 +k1,7720:31966991,25178439:18397266 +g1,7720:31966991,25178439 +) +(1,7726:7246811,25910153:24720180,410518,31456 +(1,7722:7246811,25910153:0,0,0 +g1,7722:7246811,25910153 +g1,7722:7246811,25910153 +g1,7722:6919131,25910153 +(1,7722:6919131,25910153:0,0,0 +) +g1,7722:7246811,25910153 +) +g1,7726:8195248,25910153 +h1,7726:11356705,25910153:0,0,0 +k1,7726:31966991,25910153:20610286 +g1,7726:31966991,25910153 +) +(1,7726:7246811,26576331:24720180,404226,6290 +h1,7726:7246811,26576331:0,0,0 +g1,7726:8195248,26576331 +g1,7726:8511394,26576331 +g1,7726:8827540,26576331 +g1,7726:9143686,26576331 +g1,7726:9459832,26576331 +g1,7726:9775978,26576331 +g1,7726:10092124,26576331 +g1,7726:10408270,26576331 +g1,7726:10724416,26576331 +g1,7726:13885873,26576331 +g1,7726:14202019,26576331 +g1,7726:14518165,26576331 +g1,7726:14834311,26576331 +g1,7726:15150457,26576331 +g1,7726:15466603,26576331 +g1,7726:15782749,26576331 +g1,7726:16098895,26576331 +g1,7726:16415041,26576331 +g1,7726:16731187,26576331 +g1,7726:17047333,26576331 +h1,7726:19260353,26576331:0,0,0 +k1,7726:31966991,26576331:12706638 +g1,7726:31966991,26576331 +) +(1,7726:7246811,27242509:24720180,404226,101187 +h1,7726:7246811,27242509:0,0,0 +g1,7726:8195248,27242509 +g1,7726:13885871,27242509 +g1,7726:14202017,27242509 +g1,7726:14518163,27242509 +g1,7726:14834309,27242509 +g1,7726:15150455,27242509 +g1,7726:15466601,27242509 +h1,7726:19260349,27242509:0,0,0 +k1,7726:31966991,27242509:12706642 +g1,7726:31966991,27242509 +) +] +) +g1,7727:31966991,27343696 +g1,7727:7246811,27343696 +g1,7727:7246811,27343696 +g1,7727:31966991,27343696 +g1,7727:31966991,27343696 +) +h1,7727:7246811,27540304:0,0,0 +(1,7731:7246811,28906080:24720180,505283,126483 +h1,7730:7246811,28906080:983040,0,0 +k1,7730:8838795,28906080:139051 +k1,7730:9509343,28906080:139051 +k1,7730:10934210,28906080:139051 +k1,7730:13703221,28906080:139051 +k1,7730:14493700,28906080:139051 +k1,7730:16453341,28906080:139051 +k1,7730:17611477,28906080:139051 +k1,7730:20381799,28906080:139051 +k1,7730:21172277,28906080:139050 +k1,7730:22059094,28906080:139051 +k1,7730:23711371,28906080:139051 +k1,7730:24466460,28906080:139051 +k1,7730:25624596,28906080:139051 +k1,7730:26863341,28906080:139051 +k1,7730:27653820,28906080:139051 +(1,7730:27653820,28906080:0,452978,115847 +r1,7810:29418933,28906080:1765113,568825,115847 +k1,7730:27653820,28906080:-1765113 +) +(1,7730:27653820,28906080:1765113,452978,115847 +k1,7730:27653820,28906080:3277 +h1,7730:29415656,28906080:0,411205,112570 +) +k1,7730:29557984,28906080:139051 +k1,7730:30379920,28906080:139051 +(1,7730:30379920,28906080:0,452978,115847 +r1,7810:31793321,28906080:1413401,568825,115847 +k1,7730:30379920,28906080:-1413401 +) +(1,7730:30379920,28906080:1413401,452978,115847 +k1,7730:30379920,28906080:3277 +h1,7730:31790044,28906080:0,411205,112570 +) +k1,7730:31966991,28906080:0 +) +(1,7731:7246811,29747568:24720180,513147,115847 +k1,7730:8615654,29747568:172156 +k1,7730:11227060,29747568:172156 +(1,7730:11227060,29747568:0,414482,115847 +r1,7810:16509291,29747568:5282231,530329,115847 +k1,7730:11227060,29747568:-5282231 +) +(1,7730:11227060,29747568:5282231,414482,115847 +k1,7730:11227060,29747568:3277 +h1,7730:16506014,29747568:0,411205,112570 +) +k1,7730:16681446,29747568:172155 +k1,7730:18276389,29747568:172156 +k1,7730:19467630,29747568:172156 +k1,7730:20945919,29747568:172156 +k1,7730:22580182,29747568:172155 +k1,7730:23411630,29747568:172156 +k1,7730:24602871,29747568:172156 +k1,7730:26669017,29747568:172156 +k1,7730:29867625,29747568:172155 +k1,7730:30691209,29747568:172156 +k1,7730:31611131,29747568:172156 +k1,7730:31966991,29747568:0 +) +(1,7731:7246811,30589056:24720180,513147,134348 +k1,7730:9907966,30589056:166199 +k1,7730:10760327,30589056:166199 +k1,7730:13905793,30589056:166199 +k1,7730:15019643,30589056:166199 +k1,7730:18564878,30589056:166199 +k1,7730:19390370,30589056:166200 +k1,7730:23167603,30589056:166199 +k1,7730:24525247,30589056:166199 +k1,7730:26200085,30589056:166199 +k1,7730:30277473,30589056:166199 +k1,7731:31966991,30589056:0 +) +(1,7731:7246811,31430544:24720180,513147,134348 +(1,7730:7246811,31430544:0,414482,115847 +r1,7810:10418771,31430544:3171960,530329,115847 +k1,7730:7246811,31430544:-3171960 +) +(1,7730:7246811,31430544:3171960,414482,115847 +k1,7730:7246811,31430544:3277 +h1,7730:10415494,31430544:0,411205,112570 +) +k1,7730:10635038,31430544:216267 +k1,7730:12274093,31430544:216268 +k1,7730:13176522,31430544:216267 +k1,7730:16372057,31430544:216268 +k1,7730:17607409,31430544:216267 +k1,7730:19561691,31430544:216267 +k1,7730:20437251,31430544:216268 +k1,7730:21419634,31430544:216267 +k1,7730:23601981,31430544:216267 +k1,7730:24579777,31430544:216268 +k1,7730:26531437,31430544:216267 +k1,7730:27433867,31430544:216268 +k1,7730:30682485,31430544:216267 +k1,7730:31966991,31430544:0 +) +(1,7731:7246811,32272032:24720180,513147,134348 +k1,7730:8505758,32272032:239862 +k1,7730:10110735,32272032:239862 +k1,7730:11009888,32272032:239861 +k1,7730:12268835,32272032:239862 +k1,7730:15789429,32272032:239862 +k1,7730:19075404,32272032:239862 +k1,7730:19846762,32272032:239861 +k1,7730:21814153,32272032:239862 +k1,7730:22705443,32272032:239862 +k1,7730:24539141,32272032:239862 +k1,7730:27952911,32272032:239861 +k1,7730:29396014,32272032:239862 +k1,7730:31966991,32272032:0 +) +(1,7731:7246811,33113520:24720180,513147,138281 +g1,7730:8994656,33113520 +g1,7730:10212970,33113520 +g1,7730:14023233,33113520 +g1,7730:17065414,33113520 +g1,7730:18456088,33113520 +g1,7730:22880423,33113520 +g1,7730:24365468,33113520 +g1,7730:25583782,33113520 +g1,7730:28919564,33113520 +$1,7730:28919564,33113520 +$1,7730:29387491,33113520 +k1,7731:31966991,33113520:182193 +g1,7731:31966991,33113520 +) +v1,7733:7246811,34303986:0,393216,0 +(1,7740:7246811,36617617:24720180,2706847,196608 +g1,7740:7246811,36617617 +g1,7740:7246811,36617617 +g1,7740:7050203,36617617 +(1,7740:7050203,36617617:0,2706847,196608 +r1,7810:32163599,36617617:25113396,2903455,196608 +k1,7740:7050203,36617617:-25113396 +) +(1,7740:7050203,36617617:25113396,2706847,196608 +[1,7740:7246811,36617617:24720180,2510239,0 +(1,7735:7246811,34517896:24720180,410518,101187 +(1,7734:7246811,34517896:0,0,0 +g1,7734:7246811,34517896 +g1,7734:7246811,34517896 +g1,7734:6919131,34517896 +(1,7734:6919131,34517896:0,0,0 +) +g1,7734:7246811,34517896 +) +g1,7735:9775977,34517896 +g1,7735:10724415,34517896 +g1,7735:13569726,34517896 +g1,7735:14202018,34517896 +g1,7735:16415038,34517896 +g1,7735:17995767,34517896 +g1,7735:18628059,34517896 +k1,7735:18628059,34517896:0 +h1,7735:22737953,34517896:0,0,0 +k1,7735:31966991,34517896:9229038 +g1,7735:31966991,34517896 +) +(1,7736:7246811,35184074:24720180,404226,101187 +h1,7736:7246811,35184074:0,0,0 +g1,7736:7562957,35184074 +g1,7736:7879103,35184074 +g1,7736:8195249,35184074 +g1,7736:8511395,35184074 +g1,7736:8827541,35184074 +g1,7736:9143687,35184074 +g1,7736:9459833,35184074 +g1,7736:9775979,35184074 +g1,7736:10092125,35184074 +g1,7736:10408271,35184074 +g1,7736:10724417,35184074 +g1,7736:11040563,35184074 +g1,7736:11356709,35184074 +g1,7736:11672855,35184074 +g1,7736:14834312,35184074 +g1,7736:15466604,35184074 +g1,7736:18944207,35184074 +g1,7736:19576499,35184074 +h1,7736:24950976,35184074:0,0,0 +k1,7736:31966991,35184074:7016015 +g1,7736:31966991,35184074 +) +(1,7737:7246811,35850252:24720180,410518,101187 +h1,7737:7246811,35850252:0,0,0 +g1,7737:9459831,35850252 +g1,7737:9775977,35850252 +g1,7737:10724415,35850252 +g1,7737:13569726,35850252 +g1,7737:14202018,35850252 +g1,7737:16415038,35850252 +g1,7737:17995767,35850252 +g1,7737:18628059,35850252 +k1,7737:18628059,35850252:0 +h1,7737:22737953,35850252:0,0,0 +k1,7737:31966991,35850252:9229038 +g1,7737:31966991,35850252 +) +(1,7738:7246811,36516430:24720180,404226,101187 +h1,7738:7246811,36516430:0,0,0 +g1,7738:7562957,36516430 +g1,7738:7879103,36516430 +g1,7738:8195249,36516430 +g1,7738:8511395,36516430 +g1,7738:8827541,36516430 +g1,7738:9143687,36516430 +g1,7738:9459833,36516430 +g1,7738:9775979,36516430 +g1,7738:10092125,36516430 +g1,7738:10408271,36516430 +g1,7738:10724417,36516430 +g1,7738:11040563,36516430 +g1,7738:11356709,36516430 +g1,7738:11672855,36516430 +g1,7738:14834312,36516430 +g1,7738:15466604,36516430 +g1,7738:18944207,36516430 +g1,7738:19576499,36516430 +h1,7738:23054101,36516430:0,0,0 +k1,7738:31966991,36516430:8912890 +g1,7738:31966991,36516430 +) +] +) +g1,7740:31966991,36617617 +g1,7740:7246811,36617617 +g1,7740:7246811,36617617 +g1,7740:31966991,36617617 +g1,7740:31966991,36617617 +) +h1,7740:7246811,36814225:0,0,0 +(1,7744:7246811,38180001:24720180,513147,126483 +h1,7743:7246811,38180001:983040,0,0 +k1,7743:12837211,38180001:150256 +k1,7743:13646759,38180001:150256 +k1,7743:14928822,38180001:150256 +k1,7743:17633671,38180001:150256 +k1,7743:18884932,38180001:150256 +k1,7743:19686617,38180001:150257 +k1,7743:21189536,38180001:150256 +k1,7743:22607258,38180001:150256 +k1,7743:25261645,38180001:150256 +k1,7743:27108628,38180001:150256 +k1,7743:30775546,38180001:150256 +k1,7743:31966991,38180001:0 +) +(1,7744:7246811,39021489:24720180,513147,126483 +k1,7743:9159051,39021489:201095 +k1,7743:11540529,39021489:201095 +k1,7743:12807894,39021489:201094 +k1,7743:13756755,39021489:201095 +k1,7743:17000031,39021489:201095 +k1,7743:17667087,39021489:201095 +k1,7743:20302843,39021489:201093 +k1,7743:22369748,39021489:201095 +k1,7743:25333186,39021489:201095 +k1,7743:27707454,39021489:201094 +k1,7743:28524587,39021489:201095 +k1,7743:30159610,39021489:201095 +k1,7743:30775546,39021489:201093 +k1,7744:31966991,39021489:0 +) +(1,7744:7246811,39862977:24720180,513147,134348 +k1,7743:8861562,39862977:192620 +k1,7743:9737073,39862977:192626 +k1,7743:11088370,39862977:192620 +k1,7743:12975757,39862977:192626 +k1,7743:14187469,39862977:192627 +k1,7743:17142438,39862977:192626 +k1,7743:19051453,39862977:192627 +k1,7743:19903371,39862977:192626 +k1,7743:21791413,39862977:192626 +k1,7743:22643332,39862977:192627 +k1,7743:25307321,39862977:192626 +k1,7743:27186845,39862977:192627 +k1,7743:28576158,39862977:192626 +k1,7744:31966991,39862977:0 +) +(1,7744:7246811,40704465:24720180,513147,134348 +k1,7743:8722682,40704465:208405 +k1,7743:9590379,40704465:208405 +k1,7743:12233438,40704465:208396 +k1,7743:13251213,40704465:208405 +k1,7743:15878552,40704465:208405 +k1,7743:17371463,40704465:208405 +k1,7743:18571428,40704465:208405 +k1,7743:19846105,40704465:208406 +k1,7743:23548234,40704465:208405 +k1,7743:24889101,40704465:208405 +k1,7743:27469254,40704465:208405 +k1,7743:28487029,40704465:208405 +k1,7743:30580905,40704465:208405 +k1,7743:31966991,40704465:0 +) +(1,7744:7246811,41545953:24720180,513147,126483 +k1,7743:8031396,41545953:253088 +k1,7743:9971381,41545953:253088 +k1,7743:10949297,41545953:253088 +k1,7743:12221470,41545953:253088 +k1,7743:15236901,41545953:253088 +k1,7743:17663162,41545953:253087 +k1,7743:18907810,41545953:253088 +k1,7743:20227169,41545953:253088 +k1,7743:23995608,41545953:253088 +k1,7743:28549169,41545953:253088 +k1,7743:30268953,41545953:253088 +k1,7743:31966991,41545953:0 +) +(1,7744:7246811,42387441:24720180,513147,7863 +k1,7744:31966992,42387441:21784168 +g1,7744:31966992,42387441 +) +] +) +] +r1,7810:32583029,42985128:26214,29295013,0 +) +] +) +) +g1,7810:32583029,42395304 +) +] +(1,7810:32583029,45706769:0,0,0 +g1,7810:32583029,45706769 +) +) +] +(1,7810:6630773,47279633:25952256,0,0 +h1,7810:6630773,47279633:25952256,0,0 +) +] +h1,7810:4262630,4025873:0,0,0 +] +!25301 }145 !12 {146 -[1,7805:4262630,47279633:28320399,43253760,0 -(1,7805:4262630,4025873:0,0,0 -[1,7805:-473657,4025873:25952256,0,0 -(1,7805:-473657,-710414:25952256,0,0 -h1,7805:-473657,-710414:0,0,0 -(1,7805:-473657,-710414:0,0,0 -(1,7805:-473657,-710414:0,0,0 -g1,7805:-473657,-710414 -(1,7805:-473657,-710414:65781,0,65781 -g1,7805:-407876,-710414 -[1,7805:-407876,-644633:0,0,0 +[1,7820:4262630,47279633:28320399,43253760,0 +(1,7820:4262630,4025873:0,0,0 +[1,7820:-473657,4025873:25952256,0,0 +(1,7820:-473657,-710414:25952256,0,0 +h1,7820:-473657,-710414:0,0,0 +(1,7820:-473657,-710414:0,0,0 +(1,7820:-473657,-710414:0,0,0 +g1,7820:-473657,-710414 +(1,7820:-473657,-710414:65781,0,65781 +g1,7820:-407876,-710414 +[1,7820:-407876,-644633:0,0,0 ] ) -k1,7805:-473657,-710414:-65781 +k1,7820:-473657,-710414:-65781 ) ) -k1,7805:25478599,-710414:25952256 -g1,7805:25478599,-710414 +k1,7820:25478599,-710414:25952256 +g1,7820:25478599,-710414 ) ] ) -[1,7805:6630773,47279633:25952256,43253760,0 -[1,7805:6630773,4812305:25952256,786432,0 -(1,7805:6630773,4812305:25952256,505283,134348 -(1,7805:6630773,4812305:25952256,505283,134348 -g1,7805:3078558,4812305 -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,2439708:0,1703936,0 -k1,7805:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7805:2537886,2439708:1179648,16384,0 +[1,7820:6630773,47279633:25952256,43253760,0 +[1,7820:6630773,4812305:25952256,786432,0 +(1,7820:6630773,4812305:25952256,505283,134348 +(1,7820:6630773,4812305:25952256,505283,134348 +g1,7820:3078558,4812305 +[1,7820:3078558,4812305:0,0,0 +(1,7820:3078558,2439708:0,1703936,0 +k1,7820:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7820:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7805:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7820:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,2439708:0,1703936,0 -g1,7805:29030814,2439708 -g1,7805:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7805:36151628,1915420:16384,1179648,0 +[1,7820:3078558,4812305:0,0,0 +(1,7820:3078558,2439708:0,1703936,0 +g1,7820:29030814,2439708 +g1,7820:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7820:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7805:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7820:37855564,2439708:1179648,16384,0 ) ) -k1,7805:3078556,2439708:-34777008 +k1,7820:3078556,2439708:-34777008 ) ] -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,49800853:0,16384,2228224 -k1,7805:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7805:2537886,49800853:1179648,16384,0 +[1,7820:3078558,4812305:0,0,0 +(1,7820:3078558,49800853:0,16384,2228224 +k1,7820:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7820:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7805:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7820:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,7805:3078558,4812305:0,0,0 -(1,7805:3078558,49800853:0,16384,2228224 -g1,7805:29030814,49800853 -g1,7805:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7805:36151628,51504789:16384,1179648,0 +[1,7820:3078558,4812305:0,0,0 +(1,7820:3078558,49800853:0,16384,2228224 +g1,7820:29030814,49800853 +g1,7820:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7820:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7805:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7820:37855564,49800853:1179648,16384,0 ) ) -k1,7805:3078556,49800853:-34777008 -) -] -g1,7805:6630773,4812305 -g1,7805:6630773,4812305 -g1,7805:8843268,4812305 -g1,7805:10880782,4812305 -g1,7805:13281365,4812305 -k1,7805:31387653,4812305:18106288 -) -) -] -[1,7805:6630773,45706769:25952256,40108032,0 -(1,7805:6630773,45706769:25952256,40108032,0 -(1,7805:6630773,45706769:0,0,0 -g1,7805:6630773,45706769 -) -[1,7805:6630773,45706769:25952256,40108032,0 -v1,7805:6630773,6254097:0,393216,0 -(1,7805:6630773,45116945:25952256,39256064,589824 -g1,7805:6630773,45116945 -(1,7805:6630773,45116945:25952256,39256064,589824 -(1,7805:6630773,45706769:25952256,39845888,0 -[1,7805:6630773,45706769:25952256,39845888,0 -(1,7805:6630773,45706769:25952256,39845888,0 -r1,7805:6656987,45706769:26214,39845888,0 -[1,7805:6656987,45706769:25899828,39845888,0 -(1,7805:6656987,45116945:25899828,38666240,0 -[1,7805:7246811,45116945:24720180,38666240,0 -v1,7739:7246811,6843921:0,393216,0 -(1,7767:7246811,21880470:24720180,15429765,196608 -g1,7767:7246811,21880470 -g1,7767:7246811,21880470 -g1,7767:7050203,21880470 -(1,7767:7050203,21880470:0,15429765,196608 -r1,7805:32163599,21880470:25113396,15626373,196608 -k1,7767:7050203,21880470:-25113396 -) -(1,7767:7050203,21880470:25113396,15429765,196608 -[1,7767:7246811,21880470:24720180,15233157,0 -(1,7741:7246811,7057831:24720180,410518,101187 -(1,7740:7246811,7057831:0,0,0 -g1,7740:7246811,7057831 -g1,7740:7246811,7057831 -g1,7740:6919131,7057831 -(1,7740:6919131,7057831:0,0,0 -) -g1,7740:7246811,7057831 -) -k1,7741:7246811,7057831:0 -h1,7741:12305142,7057831:0,0,0 -k1,7741:31966990,7057831:19661848 -g1,7741:31966990,7057831 -) -(1,7766:7246811,7789545:24720180,379060,0 -(1,7743:7246811,7789545:0,0,0 -g1,7743:7246811,7789545 -g1,7743:7246811,7789545 -g1,7743:6919131,7789545 -(1,7743:6919131,7789545:0,0,0 -) -g1,7743:7246811,7789545 -) -h1,7766:7879102,7789545:0,0,0 -k1,7766:31966990,7789545:24087888 -g1,7766:31966990,7789545 -) -(1,7766:7246811,8455723:24720180,404226,7863 -h1,7766:7246811,8455723:0,0,0 -g1,7766:8195248,8455723 -h1,7766:9775976,8455723:0,0,0 -k1,7766:31966992,8455723:22191016 -g1,7766:31966992,8455723 -) -(1,7766:7246811,9121901:24720180,410518,101187 -h1,7766:7246811,9121901:0,0,0 -k1,7766:8089866,9121901:210764 -k1,7766:11462087,9121901:210764 -k1,7766:11988997,9121901:210764 -k1,7766:13780489,9121901:210764 -k1,7766:14307399,9121901:210764 -k1,7766:16415037,9121901:210764 -k1,7766:17890384,9121901:210764 -k1,7766:18417294,9121901:210764 -k1,7766:22737952,9121901:210764 -k1,7766:25794027,9121901:210764 -k1,7766:26320937,9121901:210764 -k1,7766:29693158,9121901:210764 -k1,7766:30220068,9121901:210764 -h1,7766:35594545,9121901:0,0,0 -k1,7766:35594545,9121901:0 -k1,7766:35594545,9121901:0 -) -(1,7766:7246811,9788079:24720180,379060,0 -h1,7766:7246811,9788079:0,0,0 -h1,7766:7879102,9788079:0,0,0 -k1,7766:31966990,9788079:24087888 -g1,7766:31966990,9788079 -) -(1,7766:7246811,10454257:24720180,404226,6290 -h1,7766:7246811,10454257:0,0,0 -g1,7766:8195248,10454257 -h1,7766:11356705,10454257:0,0,0 -k1,7766:31966991,10454257:20610286 -g1,7766:31966991,10454257 -) -(1,7766:7246811,11120435:24720180,404226,82312 -h1,7766:7246811,11120435:0,0,0 -g1,7766:8195248,11120435 -g1,7766:8511394,11120435 -g1,7766:8827540,11120435 -g1,7766:9143686,11120435 -g1,7766:10408269,11120435 -g1,7766:10724415,11120435 -g1,7766:11040561,11120435 -g1,7766:11356707,11120435 -g1,7766:11672853,11120435 -g1,7766:12621290,11120435 -g1,7766:14834310,11120435 -g1,7766:15150456,11120435 -g1,7766:15466602,11120435 -g1,7766:15782748,11120435 -g1,7766:16098894,11120435 -g1,7766:17047331,11120435 -g1,7766:17363477,11120435 -g1,7766:17679623,11120435 -g1,7766:17995769,11120435 -h1,7766:18944206,11120435:0,0,0 -k1,7766:31966991,11120435:13022785 -g1,7766:31966991,11120435 -) -(1,7766:7246811,11786613:24720180,388497,9436 -h1,7766:7246811,11786613:0,0,0 -g1,7766:8195248,11786613 -g1,7766:10408268,11786613 -g1,7766:12621288,11786613 -g1,7766:14834308,11786613 -g1,7766:15150454,11786613 -g1,7766:17047328,11786613 -g1,7766:17363474,11786613 -h1,7766:18944202,11786613:0,0,0 -k1,7766:31966991,11786613:13022789 -g1,7766:31966991,11786613 -) -(1,7766:7246811,12452791:24720180,379060,0 -h1,7766:7246811,12452791:0,0,0 -h1,7766:7879102,12452791:0,0,0 -k1,7766:31966990,12452791:24087888 -g1,7766:31966990,12452791 -) -(1,7766:7246811,13118969:24720180,410518,7863 -h1,7766:7246811,13118969:0,0,0 -g1,7766:8195248,13118969 -h1,7766:12305142,13118969:0,0,0 -k1,7766:31966990,13118969:19661848 -g1,7766:31966990,13118969 -) -(1,7766:7246811,13785147:24720180,404226,76021 -h1,7766:7246811,13785147:0,0,0 -g1,7766:8195248,13785147 -g1,7766:8511394,13785147 -g1,7766:8827540,13785147 -g1,7766:9143686,13785147 -g1,7766:9459832,13785147 -g1,7766:9775978,13785147 -g1,7766:10092124,13785147 -g1,7766:10408270,13785147 -g1,7766:10724416,13785147 -g1,7766:11040562,13785147 -g1,7766:11356708,13785147 -g1,7766:11672854,13785147 -g1,7766:11989000,13785147 -g1,7766:14834311,13785147 -g1,7766:16415040,13785147 -g1,7766:18311914,13785147 -g1,7766:18944206,13785147 -g1,7766:20841080,13785147 -k1,7766:20841080,13785147:0 -h1,7766:23370245,13785147:0,0,0 -k1,7766:31966991,13785147:8596746 -g1,7766:31966991,13785147 -) -(1,7766:7246811,14451325:24720180,404226,101187 -h1,7766:7246811,14451325:0,0,0 -g1,7766:8195248,14451325 -g1,7766:11988996,14451325 -g1,7766:12305142,14451325 -g1,7766:14834308,14451325 -g1,7766:15150454,14451325 -g1,7766:15466600,14451325 -g1,7766:15782746,14451325 -g1,7766:16098892,14451325 -g1,7766:18311912,14451325 -g1,7766:18628058,14451325 -g1,7766:20841078,14451325 -g1,7766:21157224,14451325 -g1,7766:21789516,14451325 -g1,7766:23686390,14451325 -h1,7766:24634827,14451325:0,0,0 -k1,7766:31966991,14451325:7332164 -g1,7766:31966991,14451325 -) -(1,7766:7246811,15117503:24720180,388497,101187 -h1,7766:7246811,15117503:0,0,0 -g1,7766:8195248,15117503 -g1,7766:10408268,15117503 -g1,7766:10724414,15117503 -g1,7766:11040560,15117503 -g1,7766:11356706,15117503 -g1,7766:11672852,15117503 -g1,7766:11988998,15117503 -g1,7766:12305144,15117503 -g1,7766:12621290,15117503 -g1,7766:14834310,15117503 -g1,7766:15150456,15117503 -g1,7766:15466602,15117503 -g1,7766:15782748,15117503 -g1,7766:16098894,15117503 -g1,7766:18311914,15117503 -g1,7766:18628060,15117503 -g1,7766:18944206,15117503 -g1,7766:20841080,15117503 -g1,7766:21157226,15117503 -g1,7766:21473372,15117503 -g1,7766:21789518,15117503 -h1,7766:23370246,15117503:0,0,0 -k1,7766:31966991,15117503:8596745 -g1,7766:31966991,15117503 -) -(1,7766:7246811,15783681:24720180,388497,101187 -h1,7766:7246811,15783681:0,0,0 -g1,7766:8195248,15783681 -g1,7766:10408268,15783681 -g1,7766:10724414,15783681 -g1,7766:11040560,15783681 -g1,7766:11356706,15783681 -g1,7766:11672852,15783681 -g1,7766:11988998,15783681 -g1,7766:14834309,15783681 -g1,7766:15150455,15783681 -g1,7766:15466601,15783681 -g1,7766:15782747,15783681 -g1,7766:16098893,15783681 -g1,7766:18311913,15783681 -g1,7766:18628059,15783681 -g1,7766:20841079,15783681 -g1,7766:23686390,15783681 -h1,7766:24634827,15783681:0,0,0 -k1,7766:31966991,15783681:7332164 -g1,7766:31966991,15783681 -) -(1,7766:7246811,16449859:24720180,388497,101187 -h1,7766:7246811,16449859:0,0,0 -g1,7766:8195248,16449859 -g1,7766:10408268,16449859 -g1,7766:10724414,16449859 -g1,7766:11040560,16449859 -g1,7766:11356706,16449859 -g1,7766:11672852,16449859 -g1,7766:11988998,16449859 -g1,7766:12305144,16449859 -g1,7766:14834310,16449859 -g1,7766:15150456,16449859 -g1,7766:15466602,16449859 -g1,7766:15782748,16449859 -g1,7766:16098894,16449859 -g1,7766:18311914,16449859 -g1,7766:18628060,16449859 -g1,7766:20841080,16449859 -g1,7766:23686391,16449859 -h1,7766:24634828,16449859:0,0,0 -k1,7766:31966991,16449859:7332163 -g1,7766:31966991,16449859 -) -(1,7766:7246811,17116037:24720180,388497,101187 -h1,7766:7246811,17116037:0,0,0 -g1,7766:8195248,17116037 -g1,7766:10408268,17116037 -g1,7766:10724414,17116037 -g1,7766:11040560,17116037 -g1,7766:11356706,17116037 -g1,7766:11672852,17116037 -g1,7766:11988998,17116037 -g1,7766:14834309,17116037 -g1,7766:15150455,17116037 -g1,7766:15466601,17116037 -g1,7766:15782747,17116037 -g1,7766:16098893,17116037 -g1,7766:18311913,17116037 -g1,7766:18628059,17116037 -g1,7766:20841079,17116037 -g1,7766:23686390,17116037 -h1,7766:24634827,17116037:0,0,0 -k1,7766:31966991,17116037:7332164 -g1,7766:31966991,17116037 -) -(1,7766:7246811,17782215:24720180,388497,101187 -h1,7766:7246811,17782215:0,0,0 -g1,7766:8195248,17782215 -g1,7766:10408268,17782215 -g1,7766:10724414,17782215 -g1,7766:11040560,17782215 -g1,7766:11356706,17782215 -g1,7766:11672852,17782215 -g1,7766:11988998,17782215 -g1,7766:12305144,17782215 -g1,7766:12621290,17782215 -g1,7766:14834310,17782215 -g1,7766:15150456,17782215 -g1,7766:15466602,17782215 -g1,7766:15782748,17782215 -g1,7766:16098894,17782215 -g1,7766:18311914,17782215 -g1,7766:18628060,17782215 -g1,7766:18944206,17782215 -g1,7766:20841080,17782215 -g1,7766:21157226,17782215 -g1,7766:21473372,17782215 -g1,7766:21789518,17782215 -h1,7766:23370246,17782215:0,0,0 -k1,7766:31966991,17782215:8596745 -g1,7766:31966991,17782215 -) -(1,7766:7246811,18448393:24720180,379060,0 -h1,7766:7246811,18448393:0,0,0 -g1,7766:8195248,18448393 -k1,7766:8195248,18448393:0 -h1,7766:9143686,18448393:0,0,0 -k1,7766:31966990,18448393:22823304 -g1,7766:31966990,18448393 -) -(1,7766:7246811,19114571:24720180,410518,107478 -h1,7766:7246811,19114571:0,0,0 -g1,7766:8195248,19114571 -g1,7766:10724414,19114571 -g1,7766:12937434,19114571 -g1,7766:13253580,19114571 -g1,7766:13885872,19114571 -g1,7766:15782747,19114571 -g1,7766:17679621,19114571 -g1,7766:19260350,19114571 -g1,7766:20841079,19114571 -g1,7766:22105663,19114571 -g1,7766:23686392,19114571 -g1,7766:24950976,19114571 -g1,7766:26215559,19114571 -g1,7766:26847851,19114571 -g1,7766:27480143,19114571 -h1,7766:27796289,19114571:0,0,0 -k1,7766:31966991,19114571:4170702 -g1,7766:31966991,19114571 -) -(1,7766:7246811,19780749:24720180,379060,0 -h1,7766:7246811,19780749:0,0,0 -h1,7766:7879102,19780749:0,0,0 -k1,7766:31966990,19780749:24087888 -g1,7766:31966990,19780749 -) -(1,7766:7246811,20446927:24720180,410518,107478 -h1,7766:7246811,20446927:0,0,0 -g1,7766:8195248,20446927 -g1,7766:11040559,20446927 -g1,7766:13885870,20446927 -g1,7766:16098890,20446927 -g1,7766:17995764,20446927 -g1,7766:18944201,20446927 -g1,7766:19892638,20446927 -g1,7766:22421804,20446927 -g1,7766:23370241,20446927 -h1,7766:25583261,20446927:0,0,0 -k1,7766:31966991,20446927:6383730 -g1,7766:31966991,20446927 -) -(1,7766:7246811,21113105:24720180,404226,107478 -h1,7766:7246811,21113105:0,0,0 -g1,7766:8195248,21113105 -g1,7766:11040559,21113105 -g1,7766:14518162,21113105 -g1,7766:14834308,21113105 -g1,7766:19892639,21113105 -g1,7766:23370242,21113105 -g1,7766:23686388,21113105 -h1,7766:25583262,21113105:0,0,0 -k1,7766:31966991,21113105:6383729 -g1,7766:31966991,21113105 -) -(1,7766:7246811,21779283:24720180,404226,101187 -h1,7766:7246811,21779283:0,0,0 -g1,7766:8195248,21779283 -g1,7766:12305142,21779283 -g1,7766:12621288,21779283 -g1,7766:14202017,21779283 -g1,7766:15150454,21779283 -g1,7766:15782746,21779283 -g1,7766:17047329,21779283 -g1,7766:17995766,21779283 -g1,7766:19260349,21779283 -g1,7766:19576495,21779283 -g1,7766:22421807,21779283 -g1,7766:23054099,21779283 -k1,7766:23054099,21779283:0 -h1,7766:25267119,21779283:0,0,0 -k1,7766:31966991,21779283:6699872 -g1,7766:31966991,21779283 -) -] -) -g1,7767:31966991,21880470 -g1,7767:7246811,21880470 -g1,7767:7246811,21880470 -g1,7767:31966991,21880470 -g1,7767:31966991,21880470 -) -h1,7767:7246811,22077078:0,0,0 -v1,7771:7246811,23492345:0,393216,0 -(1,7799:7246811,38528894:24720180,15429765,196608 -g1,7799:7246811,38528894 -g1,7799:7246811,38528894 -g1,7799:7050203,38528894 -(1,7799:7050203,38528894:0,15429765,196608 -r1,7805:32163599,38528894:25113396,15626373,196608 -k1,7799:7050203,38528894:-25113396 -) -(1,7799:7050203,38528894:25113396,15429765,196608 -[1,7799:7246811,38528894:24720180,15233157,0 -(1,7773:7246811,23706255:24720180,410518,101187 -(1,7772:7246811,23706255:0,0,0 -g1,7772:7246811,23706255 -g1,7772:7246811,23706255 -g1,7772:6919131,23706255 -(1,7772:6919131,23706255:0,0,0 -) -g1,7772:7246811,23706255 -) -k1,7773:7246811,23706255:0 -h1,7773:11988996,23706255:0,0,0 -k1,7773:31966992,23706255:19977996 -g1,7773:31966992,23706255 -) -(1,7798:7246811,24437969:24720180,379060,0 -(1,7775:7246811,24437969:0,0,0 -g1,7775:7246811,24437969 -g1,7775:7246811,24437969 -g1,7775:6919131,24437969 -(1,7775:6919131,24437969:0,0,0 -) -g1,7775:7246811,24437969 -) -h1,7798:7879102,24437969:0,0,0 -k1,7798:31966990,24437969:24087888 -g1,7798:31966990,24437969 -) -(1,7798:7246811,25104147:24720180,404226,7863 -h1,7798:7246811,25104147:0,0,0 -g1,7798:8195248,25104147 -h1,7798:9775976,25104147:0,0,0 -k1,7798:31966992,25104147:22191016 -g1,7798:31966992,25104147 -) -(1,7798:7246811,25770325:24720180,410518,101187 -h1,7798:7246811,25770325:0,0,0 -k1,7798:8089866,25770325:210764 -k1,7798:11462087,25770325:210764 -k1,7798:11988997,25770325:210764 -k1,7798:13780489,25770325:210764 -k1,7798:14307399,25770325:210764 -k1,7798:16415037,25770325:210764 -k1,7798:17890384,25770325:210764 -k1,7798:18417294,25770325:210764 -k1,7798:22737952,25770325:210764 -k1,7798:25794027,25770325:210764 -k1,7798:26320937,25770325:210764 -k1,7798:29693158,25770325:210764 -k1,7798:30220068,25770325:210764 -h1,7798:33697670,25770325:0,0,0 -k1,7798:33697670,25770325:0 -k1,7798:33697670,25770325:0 -) -(1,7798:7246811,26436503:24720180,379060,0 -h1,7798:7246811,26436503:0,0,0 -h1,7798:7879102,26436503:0,0,0 -k1,7798:31966990,26436503:24087888 -g1,7798:31966990,26436503 -) -(1,7798:7246811,27102681:24720180,404226,6290 -h1,7798:7246811,27102681:0,0,0 -g1,7798:8195248,27102681 -h1,7798:11356705,27102681:0,0,0 -k1,7798:31966991,27102681:20610286 -g1,7798:31966991,27102681 -) -(1,7798:7246811,27768859:24720180,404226,82312 -h1,7798:7246811,27768859:0,0,0 -g1,7798:8195248,27768859 -g1,7798:8511394,27768859 -g1,7798:8827540,27768859 -g1,7798:9143686,27768859 -g1,7798:10408269,27768859 -g1,7798:10724415,27768859 -g1,7798:11040561,27768859 -g1,7798:11356707,27768859 -g1,7798:11672853,27768859 -g1,7798:12621290,27768859 -g1,7798:14834310,27768859 -g1,7798:15150456,27768859 -g1,7798:15466602,27768859 -g1,7798:15782748,27768859 -g1,7798:16098894,27768859 -g1,7798:17047331,27768859 -g1,7798:17363477,27768859 -g1,7798:17679623,27768859 -g1,7798:17995769,27768859 -h1,7798:18944206,27768859:0,0,0 -k1,7798:31966991,27768859:13022785 -g1,7798:31966991,27768859 -) -(1,7798:7246811,28435037:24720180,388497,9436 -h1,7798:7246811,28435037:0,0,0 -g1,7798:8195248,28435037 -g1,7798:10408268,28435037 -g1,7798:12621288,28435037 -g1,7798:14834308,28435037 -g1,7798:15150454,28435037 -g1,7798:17047328,28435037 -g1,7798:17363474,28435037 -h1,7798:18944202,28435037:0,0,0 -k1,7798:31966991,28435037:13022789 -g1,7798:31966991,28435037 -) -(1,7798:7246811,29101215:24720180,379060,0 -h1,7798:7246811,29101215:0,0,0 -h1,7798:7879102,29101215:0,0,0 -k1,7798:31966990,29101215:24087888 -g1,7798:31966990,29101215 -) -(1,7798:7246811,29767393:24720180,410518,7863 -h1,7798:7246811,29767393:0,0,0 -g1,7798:8195248,29767393 -h1,7798:12305142,29767393:0,0,0 -k1,7798:31966990,29767393:19661848 -g1,7798:31966990,29767393 -) -(1,7798:7246811,30433571:24720180,404226,76021 -h1,7798:7246811,30433571:0,0,0 -g1,7798:8195248,30433571 -g1,7798:8511394,30433571 -g1,7798:8827540,30433571 -g1,7798:9143686,30433571 -g1,7798:9459832,30433571 -g1,7798:9775978,30433571 -g1,7798:10092124,30433571 -g1,7798:10408270,30433571 -g1,7798:10724416,30433571 -g1,7798:11040562,30433571 -g1,7798:11356708,30433571 -g1,7798:11672854,30433571 -g1,7798:11989000,30433571 -g1,7798:14834311,30433571 -g1,7798:16415040,30433571 -g1,7798:18311914,30433571 -g1,7798:18944206,30433571 -g1,7798:20841080,30433571 -k1,7798:20841080,30433571:0 -h1,7798:23370245,30433571:0,0,0 -k1,7798:31966991,30433571:8596746 -g1,7798:31966991,30433571 -) -(1,7798:7246811,31099749:24720180,404226,101187 -h1,7798:7246811,31099749:0,0,0 -g1,7798:8195248,31099749 -g1,7798:11988996,31099749 -g1,7798:12305142,31099749 -g1,7798:12621288,31099749 -g1,7798:14834308,31099749 -g1,7798:15150454,31099749 -g1,7798:15466600,31099749 -g1,7798:15782746,31099749 -g1,7798:16098892,31099749 -g1,7798:18311912,31099749 -g1,7798:18628058,31099749 -g1,7798:20841078,31099749 -g1,7798:21157224,31099749 -g1,7798:21789516,31099749 -g1,7798:23686390,31099749 -h1,7798:24634827,31099749:0,0,0 -k1,7798:31966991,31099749:7332164 -g1,7798:31966991,31099749 -) -(1,7798:7246811,31765927:24720180,388497,101187 -h1,7798:7246811,31765927:0,0,0 -g1,7798:8195248,31765927 -g1,7798:10408268,31765927 -g1,7798:10724414,31765927 -g1,7798:11040560,31765927 -g1,7798:11356706,31765927 -g1,7798:11672852,31765927 -g1,7798:11988998,31765927 -g1,7798:12305144,31765927 -g1,7798:12621290,31765927 -g1,7798:14834310,31765927 -g1,7798:15150456,31765927 -g1,7798:15466602,31765927 -g1,7798:15782748,31765927 -g1,7798:16098894,31765927 -g1,7798:18311914,31765927 -g1,7798:18628060,31765927 -g1,7798:18944206,31765927 -g1,7798:20841080,31765927 -g1,7798:23686391,31765927 -h1,7798:24634828,31765927:0,0,0 -k1,7798:31966991,31765927:7332163 -g1,7798:31966991,31765927 -) -(1,7798:7246811,32432105:24720180,388497,101187 -h1,7798:7246811,32432105:0,0,0 -g1,7798:8195248,32432105 -g1,7798:10408268,32432105 -g1,7798:10724414,32432105 -g1,7798:11040560,32432105 -g1,7798:11356706,32432105 -g1,7798:11672852,32432105 -g1,7798:11988998,32432105 -g1,7798:12305144,32432105 -g1,7798:12621290,32432105 -g1,7798:14834310,32432105 -g1,7798:15150456,32432105 -g1,7798:15466602,32432105 -g1,7798:15782748,32432105 -g1,7798:16098894,32432105 -g1,7798:18311914,32432105 -g1,7798:18628060,32432105 -g1,7798:18944206,32432105 -g1,7798:20841080,32432105 -g1,7798:23686391,32432105 -h1,7798:24634828,32432105:0,0,0 -k1,7798:31966991,32432105:7332163 -g1,7798:31966991,32432105 -) -(1,7798:7246811,33098283:24720180,388497,101187 -h1,7798:7246811,33098283:0,0,0 -g1,7798:8195248,33098283 -g1,7798:10408268,33098283 -g1,7798:10724414,33098283 -g1,7798:11040560,33098283 -g1,7798:11356706,33098283 -g1,7798:11672852,33098283 -g1,7798:11988998,33098283 -g1,7798:12305144,33098283 -g1,7798:14834310,33098283 -g1,7798:15150456,33098283 -g1,7798:15466602,33098283 -g1,7798:15782748,33098283 -g1,7798:16098894,33098283 -g1,7798:18311914,33098283 -g1,7798:18628060,33098283 -g1,7798:20841080,33098283 -g1,7798:23686391,33098283 -h1,7798:24634828,33098283:0,0,0 -k1,7798:31966991,33098283:7332163 -g1,7798:31966991,33098283 -) -(1,7798:7246811,33764461:24720180,388497,101187 -h1,7798:7246811,33764461:0,0,0 -g1,7798:8195248,33764461 -g1,7798:10408268,33764461 -g1,7798:10724414,33764461 -g1,7798:11040560,33764461 -g1,7798:11356706,33764461 -g1,7798:11672852,33764461 -g1,7798:11988998,33764461 -g1,7798:12305144,33764461 -g1,7798:14834310,33764461 -g1,7798:15150456,33764461 -g1,7798:15466602,33764461 -g1,7798:15782748,33764461 -g1,7798:16098894,33764461 -g1,7798:18311914,33764461 -g1,7798:18628060,33764461 -g1,7798:20841080,33764461 -g1,7798:23686391,33764461 -h1,7798:24634828,33764461:0,0,0 -k1,7798:31966991,33764461:7332163 -g1,7798:31966991,33764461 -) -(1,7798:7246811,34430639:24720180,388497,101187 -h1,7798:7246811,34430639:0,0,0 -g1,7798:8195248,34430639 -g1,7798:10408268,34430639 -g1,7798:10724414,34430639 -g1,7798:11040560,34430639 -g1,7798:11356706,34430639 -g1,7798:11672852,34430639 -g1,7798:11988998,34430639 -g1,7798:12305144,34430639 -g1,7798:14834310,34430639 -g1,7798:15150456,34430639 -g1,7798:15466602,34430639 -g1,7798:15782748,34430639 -g1,7798:16098894,34430639 -g1,7798:18311914,34430639 -g1,7798:18628060,34430639 -g1,7798:20841080,34430639 -g1,7798:23686391,34430639 -h1,7798:24634828,34430639:0,0,0 -k1,7798:31966991,34430639:7332163 -g1,7798:31966991,34430639 -) -(1,7798:7246811,35096817:24720180,379060,0 -h1,7798:7246811,35096817:0,0,0 -g1,7798:8195248,35096817 -k1,7798:8195248,35096817:0 -h1,7798:9143686,35096817:0,0,0 -k1,7798:31966990,35096817:22823304 -g1,7798:31966990,35096817 -) -(1,7798:7246811,35762995:24720180,410518,107478 -h1,7798:7246811,35762995:0,0,0 -g1,7798:8195248,35762995 -g1,7798:10724414,35762995 -g1,7798:12937434,35762995 -g1,7798:13253580,35762995 -g1,7798:13885872,35762995 -g1,7798:15782747,35762995 -g1,7798:17679621,35762995 -g1,7798:19260350,35762995 -g1,7798:20841079,35762995 -g1,7798:22105663,35762995 -g1,7798:23686392,35762995 -g1,7798:24950976,35762995 -g1,7798:26215559,35762995 -g1,7798:26847851,35762995 -g1,7798:27480143,35762995 -h1,7798:27796289,35762995:0,0,0 -k1,7798:31966991,35762995:4170702 -g1,7798:31966991,35762995 -) -(1,7798:7246811,36429173:24720180,379060,0 -h1,7798:7246811,36429173:0,0,0 -h1,7798:7879102,36429173:0,0,0 -k1,7798:31966990,36429173:24087888 -g1,7798:31966990,36429173 -) -(1,7798:7246811,37095351:24720180,410518,107478 -h1,7798:7246811,37095351:0,0,0 -g1,7798:8195248,37095351 -g1,7798:11040559,37095351 -g1,7798:13885870,37095351 -g1,7798:16098890,37095351 -g1,7798:17995764,37095351 -g1,7798:18944201,37095351 -g1,7798:19892638,37095351 -g1,7798:22421804,37095351 -g1,7798:23370241,37095351 -h1,7798:25583261,37095351:0,0,0 -k1,7798:31966991,37095351:6383730 -g1,7798:31966991,37095351 -) -(1,7798:7246811,37761529:24720180,404226,107478 -h1,7798:7246811,37761529:0,0,0 -g1,7798:8195248,37761529 -g1,7798:11040559,37761529 -g1,7798:14518162,37761529 -g1,7798:14834308,37761529 -g1,7798:19892639,37761529 -g1,7798:23370242,37761529 -g1,7798:23686388,37761529 -h1,7798:25583262,37761529:0,0,0 -k1,7798:31966991,37761529:6383729 -g1,7798:31966991,37761529 -) -(1,7798:7246811,38427707:24720180,404226,101187 -h1,7798:7246811,38427707:0,0,0 -g1,7798:8195248,38427707 -g1,7798:12305142,38427707 -g1,7798:12621288,38427707 -g1,7798:14202017,38427707 -g1,7798:15150454,38427707 -g1,7798:15782746,38427707 -g1,7798:17047329,38427707 -g1,7798:17995766,38427707 -g1,7798:19260349,38427707 -g1,7798:19576495,38427707 -g1,7798:22421807,38427707 -g1,7798:23054099,38427707 -k1,7798:23054099,38427707:0 -h1,7798:25267119,38427707:0,0,0 -k1,7798:31966991,38427707:6699872 -g1,7798:31966991,38427707 -) -] -) -g1,7799:31966991,38528894 -g1,7799:7246811,38528894 -g1,7799:7246811,38528894 -g1,7799:31966991,38528894 -g1,7799:31966991,38528894 -) -h1,7799:7246811,38725502:0,0,0 -(1,7803:7246811,39941534:24720180,513147,126483 -h1,7802:7246811,39941534:983040,0,0 -k1,7802:12837211,39941534:150256 -k1,7802:13646759,39941534:150256 -k1,7802:14928822,39941534:150256 -k1,7802:17633671,39941534:150256 -k1,7802:18884932,39941534:150256 -k1,7802:19686617,39941534:150257 -k1,7802:21189536,39941534:150256 -k1,7802:22607258,39941534:150256 -k1,7802:25261645,39941534:150256 -k1,7802:27108628,39941534:150256 -k1,7802:30775546,39941534:150256 -k1,7802:31966991,39941534:0 -) -(1,7803:7246811,40783022:24720180,513147,126483 -k1,7802:9159051,40783022:201095 -k1,7802:11540529,40783022:201095 -k1,7802:12807894,40783022:201094 -k1,7802:13756755,40783022:201095 -k1,7802:17000031,40783022:201095 -k1,7802:17667087,40783022:201095 -k1,7802:20302843,40783022:201093 -k1,7802:22369748,40783022:201095 -k1,7802:25333186,40783022:201095 -k1,7802:27707454,40783022:201094 -k1,7802:28524587,40783022:201095 -k1,7802:30159610,40783022:201095 -k1,7802:30775546,40783022:201093 -k1,7803:31966991,40783022:0 -) -(1,7803:7246811,41624510:24720180,513147,134348 -k1,7802:8861562,41624510:192620 -k1,7802:9737073,41624510:192626 -k1,7802:11088370,41624510:192620 -k1,7802:12975757,41624510:192626 -k1,7802:14187469,41624510:192627 -k1,7802:17142438,41624510:192626 -k1,7802:19051453,41624510:192627 -k1,7802:19903371,41624510:192626 -k1,7802:21791413,41624510:192626 -k1,7802:22643332,41624510:192627 -k1,7802:25307321,41624510:192626 -k1,7802:27186845,41624510:192627 -k1,7802:28576158,41624510:192626 -k1,7803:31966991,41624510:0 -) -(1,7803:7246811,42465998:24720180,513147,134348 -k1,7802:8722682,42465998:208405 -k1,7802:9590379,42465998:208405 -k1,7802:12233438,42465998:208396 -k1,7802:13251213,42465998:208405 -k1,7802:15878552,42465998:208405 -k1,7802:17371463,42465998:208405 -k1,7802:18571428,42465998:208405 -k1,7802:19846105,42465998:208406 -k1,7802:23548234,42465998:208405 -k1,7802:24889101,42465998:208405 -k1,7802:27469254,42465998:208405 -k1,7802:28487029,42465998:208405 -k1,7802:30580905,42465998:208405 -k1,7802:31966991,42465998:0 -) -(1,7803:7246811,43307486:24720180,513147,126483 -k1,7802:8031396,43307486:253088 -k1,7802:9971381,43307486:253088 -k1,7802:10949297,43307486:253088 -k1,7802:12221470,43307486:253088 -k1,7802:15236901,43307486:253088 -k1,7802:17663162,43307486:253087 -k1,7802:18907810,43307486:253088 -k1,7802:20227169,43307486:253088 -k1,7802:23995608,43307486:253088 -k1,7802:28549169,43307486:253088 -k1,7802:30268953,43307486:253088 -k1,7802:31966991,43307486:0 -) -(1,7803:7246811,44148974:24720180,513147,7863 -k1,7803:31966992,44148974:21784168 -g1,7803:31966992,44148974 -) -(1,7805:7246811,44990462:24720180,513147,126483 -h1,7804:7246811,44990462:983040,0,0 -k1,7804:9102850,44990462:245164 -k1,7804:10367100,44990462:245165 -k1,7804:11979345,44990462:245164 -k1,7804:12883801,44990462:245164 -k1,7804:16264208,44990462:245165 -k1,7804:17889560,44990462:245164 -k1,7804:20263990,44990462:245165 -k1,7804:22288456,44990462:245164 -k1,7804:23552705,44990462:245164 -k1,7804:27078602,44990462:245165 -k1,7804:30369879,44990462:245164 -k1,7805:31966991,44990462:0 -) -] -) -] -r1,7805:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,7805:32583029,45116945 -) -] -(1,7805:32583029,45706769:0,0,0 -g1,7805:32583029,45706769 -) -) -] -(1,7805:6630773,47279633:25952256,0,0 -h1,7805:6630773,47279633:25952256,0,0 -) -] -h1,7805:4262630,4025873:0,0,0 -] -!27723 +k1,7820:3078556,49800853:-34777008 +) +] +g1,7820:6630773,4812305 +g1,7820:6630773,4812305 +g1,7820:8843268,4812305 +g1,7820:10880782,4812305 +g1,7820:13281365,4812305 +k1,7820:31387653,4812305:18106288 +) +) +] +[1,7820:6630773,45706769:25952256,40108032,0 +(1,7820:6630773,45706769:25952256,40108032,0 +(1,7820:6630773,45706769:0,0,0 +g1,7820:6630773,45706769 +) +[1,7820:6630773,45706769:25952256,40108032,0 +v1,7810:6630773,6254097:0,393216,0 +(1,7810:6630773,43764580:25952256,37903699,616038 +g1,7810:6630773,43764580 +(1,7810:6630773,43764580:25952256,37903699,616038 +(1,7810:6630773,44380618:25952256,38519737,0 +[1,7810:6630773,44380618:25952256,38519737,0 +(1,7810:6630773,44354404:25952256,38493523,0 +r1,7810:6656987,44354404:26214,38493523,0 +[1,7810:6656987,44354404:25899828,38493523,0 +(1,7810:6656987,43764580:25899828,37313875,0 +[1,7810:7246811,43764580:24720180,37313875,0 +v1,7746:7246811,6843921:0,393216,0 +(1,7774:7246811,21880470:24720180,15429765,196608 +g1,7774:7246811,21880470 +g1,7774:7246811,21880470 +g1,7774:7050203,21880470 +(1,7774:7050203,21880470:0,15429765,196608 +r1,7810:32163599,21880470:25113396,15626373,196608 +k1,7774:7050203,21880470:-25113396 +) +(1,7774:7050203,21880470:25113396,15429765,196608 +[1,7774:7246811,21880470:24720180,15233157,0 +(1,7748:7246811,7057831:24720180,410518,101187 +(1,7747:7246811,7057831:0,0,0 +g1,7747:7246811,7057831 +g1,7747:7246811,7057831 +g1,7747:6919131,7057831 +(1,7747:6919131,7057831:0,0,0 +) +g1,7747:7246811,7057831 +) +k1,7748:7246811,7057831:0 +h1,7748:12305142,7057831:0,0,0 +k1,7748:31966990,7057831:19661848 +g1,7748:31966990,7057831 +) +(1,7773:7246811,7789545:24720180,379060,0 +(1,7750:7246811,7789545:0,0,0 +g1,7750:7246811,7789545 +g1,7750:7246811,7789545 +g1,7750:6919131,7789545 +(1,7750:6919131,7789545:0,0,0 +) +g1,7750:7246811,7789545 +) +h1,7773:7879102,7789545:0,0,0 +k1,7773:31966990,7789545:24087888 +g1,7773:31966990,7789545 +) +(1,7773:7246811,8455723:24720180,404226,7863 +h1,7773:7246811,8455723:0,0,0 +g1,7773:8195248,8455723 +h1,7773:9775976,8455723:0,0,0 +k1,7773:31966992,8455723:22191016 +g1,7773:31966992,8455723 +) +(1,7773:7246811,9121901:24720180,410518,101187 +h1,7773:7246811,9121901:0,0,0 +k1,7773:8089866,9121901:210764 +k1,7773:11462087,9121901:210764 +k1,7773:11988997,9121901:210764 +k1,7773:13780489,9121901:210764 +k1,7773:14307399,9121901:210764 +k1,7773:16415037,9121901:210764 +k1,7773:17890384,9121901:210764 +k1,7773:18417294,9121901:210764 +k1,7773:22737952,9121901:210764 +k1,7773:25794027,9121901:210764 +k1,7773:26320937,9121901:210764 +k1,7773:29693158,9121901:210764 +k1,7773:30220068,9121901:210764 +h1,7773:35594545,9121901:0,0,0 +k1,7773:35594545,9121901:0 +k1,7773:35594545,9121901:0 +) +(1,7773:7246811,9788079:24720180,379060,0 +h1,7773:7246811,9788079:0,0,0 +h1,7773:7879102,9788079:0,0,0 +k1,7773:31966990,9788079:24087888 +g1,7773:31966990,9788079 +) +(1,7773:7246811,10454257:24720180,404226,6290 +h1,7773:7246811,10454257:0,0,0 +g1,7773:8195248,10454257 +h1,7773:11356705,10454257:0,0,0 +k1,7773:31966991,10454257:20610286 +g1,7773:31966991,10454257 +) +(1,7773:7246811,11120435:24720180,404226,82312 +h1,7773:7246811,11120435:0,0,0 +g1,7773:8195248,11120435 +g1,7773:8511394,11120435 +g1,7773:8827540,11120435 +g1,7773:9143686,11120435 +g1,7773:10408269,11120435 +g1,7773:10724415,11120435 +g1,7773:11040561,11120435 +g1,7773:11356707,11120435 +g1,7773:11672853,11120435 +g1,7773:12621290,11120435 +g1,7773:14834310,11120435 +g1,7773:15150456,11120435 +g1,7773:15466602,11120435 +g1,7773:15782748,11120435 +g1,7773:16098894,11120435 +g1,7773:17047331,11120435 +g1,7773:17363477,11120435 +g1,7773:17679623,11120435 +g1,7773:17995769,11120435 +h1,7773:18944206,11120435:0,0,0 +k1,7773:31966991,11120435:13022785 +g1,7773:31966991,11120435 +) +(1,7773:7246811,11786613:24720180,388497,9436 +h1,7773:7246811,11786613:0,0,0 +g1,7773:8195248,11786613 +g1,7773:10408268,11786613 +g1,7773:12621288,11786613 +g1,7773:14834308,11786613 +g1,7773:15150454,11786613 +g1,7773:17047328,11786613 +g1,7773:17363474,11786613 +h1,7773:18944202,11786613:0,0,0 +k1,7773:31966991,11786613:13022789 +g1,7773:31966991,11786613 +) +(1,7773:7246811,12452791:24720180,379060,0 +h1,7773:7246811,12452791:0,0,0 +h1,7773:7879102,12452791:0,0,0 +k1,7773:31966990,12452791:24087888 +g1,7773:31966990,12452791 +) +(1,7773:7246811,13118969:24720180,410518,7863 +h1,7773:7246811,13118969:0,0,0 +g1,7773:8195248,13118969 +h1,7773:12305142,13118969:0,0,0 +k1,7773:31966990,13118969:19661848 +g1,7773:31966990,13118969 +) +(1,7773:7246811,13785147:24720180,404226,76021 +h1,7773:7246811,13785147:0,0,0 +g1,7773:8195248,13785147 +g1,7773:8511394,13785147 +g1,7773:8827540,13785147 +g1,7773:9143686,13785147 +g1,7773:9459832,13785147 +g1,7773:9775978,13785147 +g1,7773:10092124,13785147 +g1,7773:10408270,13785147 +g1,7773:10724416,13785147 +g1,7773:11040562,13785147 +g1,7773:11356708,13785147 +g1,7773:11672854,13785147 +g1,7773:11989000,13785147 +g1,7773:14834311,13785147 +g1,7773:16415040,13785147 +g1,7773:18311914,13785147 +g1,7773:18944206,13785147 +g1,7773:20841080,13785147 +k1,7773:20841080,13785147:0 +h1,7773:23370245,13785147:0,0,0 +k1,7773:31966991,13785147:8596746 +g1,7773:31966991,13785147 +) +(1,7773:7246811,14451325:24720180,404226,101187 +h1,7773:7246811,14451325:0,0,0 +g1,7773:8195248,14451325 +g1,7773:11988996,14451325 +g1,7773:12305142,14451325 +g1,7773:14834308,14451325 +g1,7773:15150454,14451325 +g1,7773:15466600,14451325 +g1,7773:15782746,14451325 +g1,7773:16098892,14451325 +g1,7773:18311912,14451325 +g1,7773:18628058,14451325 +g1,7773:20841078,14451325 +g1,7773:21157224,14451325 +g1,7773:21789516,14451325 +g1,7773:23686390,14451325 +h1,7773:24634827,14451325:0,0,0 +k1,7773:31966991,14451325:7332164 +g1,7773:31966991,14451325 +) +(1,7773:7246811,15117503:24720180,388497,101187 +h1,7773:7246811,15117503:0,0,0 +g1,7773:8195248,15117503 +g1,7773:10408268,15117503 +g1,7773:10724414,15117503 +g1,7773:11040560,15117503 +g1,7773:11356706,15117503 +g1,7773:11672852,15117503 +g1,7773:11988998,15117503 +g1,7773:12305144,15117503 +g1,7773:12621290,15117503 +g1,7773:14834310,15117503 +g1,7773:15150456,15117503 +g1,7773:15466602,15117503 +g1,7773:15782748,15117503 +g1,7773:16098894,15117503 +g1,7773:18311914,15117503 +g1,7773:18628060,15117503 +g1,7773:18944206,15117503 +g1,7773:20841080,15117503 +g1,7773:21157226,15117503 +g1,7773:21473372,15117503 +g1,7773:21789518,15117503 +h1,7773:23370246,15117503:0,0,0 +k1,7773:31966991,15117503:8596745 +g1,7773:31966991,15117503 +) +(1,7773:7246811,15783681:24720180,388497,101187 +h1,7773:7246811,15783681:0,0,0 +g1,7773:8195248,15783681 +g1,7773:10408268,15783681 +g1,7773:10724414,15783681 +g1,7773:11040560,15783681 +g1,7773:11356706,15783681 +g1,7773:11672852,15783681 +g1,7773:11988998,15783681 +g1,7773:14834309,15783681 +g1,7773:15150455,15783681 +g1,7773:15466601,15783681 +g1,7773:15782747,15783681 +g1,7773:16098893,15783681 +g1,7773:18311913,15783681 +g1,7773:18628059,15783681 +g1,7773:20841079,15783681 +g1,7773:23686390,15783681 +h1,7773:24634827,15783681:0,0,0 +k1,7773:31966991,15783681:7332164 +g1,7773:31966991,15783681 +) +(1,7773:7246811,16449859:24720180,388497,101187 +h1,7773:7246811,16449859:0,0,0 +g1,7773:8195248,16449859 +g1,7773:10408268,16449859 +g1,7773:10724414,16449859 +g1,7773:11040560,16449859 +g1,7773:11356706,16449859 +g1,7773:11672852,16449859 +g1,7773:11988998,16449859 +g1,7773:12305144,16449859 +g1,7773:14834310,16449859 +g1,7773:15150456,16449859 +g1,7773:15466602,16449859 +g1,7773:15782748,16449859 +g1,7773:16098894,16449859 +g1,7773:18311914,16449859 +g1,7773:18628060,16449859 +g1,7773:20841080,16449859 +g1,7773:23686391,16449859 +h1,7773:24634828,16449859:0,0,0 +k1,7773:31966991,16449859:7332163 +g1,7773:31966991,16449859 +) +(1,7773:7246811,17116037:24720180,388497,101187 +h1,7773:7246811,17116037:0,0,0 +g1,7773:8195248,17116037 +g1,7773:10408268,17116037 +g1,7773:10724414,17116037 +g1,7773:11040560,17116037 +g1,7773:11356706,17116037 +g1,7773:11672852,17116037 +g1,7773:11988998,17116037 +g1,7773:14834309,17116037 +g1,7773:15150455,17116037 +g1,7773:15466601,17116037 +g1,7773:15782747,17116037 +g1,7773:16098893,17116037 +g1,7773:18311913,17116037 +g1,7773:18628059,17116037 +g1,7773:20841079,17116037 +g1,7773:23686390,17116037 +h1,7773:24634827,17116037:0,0,0 +k1,7773:31966991,17116037:7332164 +g1,7773:31966991,17116037 +) +(1,7773:7246811,17782215:24720180,388497,101187 +h1,7773:7246811,17782215:0,0,0 +g1,7773:8195248,17782215 +g1,7773:10408268,17782215 +g1,7773:10724414,17782215 +g1,7773:11040560,17782215 +g1,7773:11356706,17782215 +g1,7773:11672852,17782215 +g1,7773:11988998,17782215 +g1,7773:12305144,17782215 +g1,7773:12621290,17782215 +g1,7773:14834310,17782215 +g1,7773:15150456,17782215 +g1,7773:15466602,17782215 +g1,7773:15782748,17782215 +g1,7773:16098894,17782215 +g1,7773:18311914,17782215 +g1,7773:18628060,17782215 +g1,7773:18944206,17782215 +g1,7773:20841080,17782215 +g1,7773:21157226,17782215 +g1,7773:21473372,17782215 +g1,7773:21789518,17782215 +h1,7773:23370246,17782215:0,0,0 +k1,7773:31966991,17782215:8596745 +g1,7773:31966991,17782215 +) +(1,7773:7246811,18448393:24720180,379060,0 +h1,7773:7246811,18448393:0,0,0 +g1,7773:8195248,18448393 +k1,7773:8195248,18448393:0 +h1,7773:9143686,18448393:0,0,0 +k1,7773:31966990,18448393:22823304 +g1,7773:31966990,18448393 +) +(1,7773:7246811,19114571:24720180,410518,107478 +h1,7773:7246811,19114571:0,0,0 +g1,7773:8195248,19114571 +g1,7773:10724414,19114571 +g1,7773:12937434,19114571 +g1,7773:13253580,19114571 +g1,7773:13885872,19114571 +g1,7773:15782747,19114571 +g1,7773:17679621,19114571 +g1,7773:19260350,19114571 +g1,7773:20841079,19114571 +g1,7773:22105663,19114571 +g1,7773:23686392,19114571 +g1,7773:24950976,19114571 +g1,7773:26215559,19114571 +g1,7773:26847851,19114571 +g1,7773:27480143,19114571 +h1,7773:27796289,19114571:0,0,0 +k1,7773:31966991,19114571:4170702 +g1,7773:31966991,19114571 +) +(1,7773:7246811,19780749:24720180,379060,0 +h1,7773:7246811,19780749:0,0,0 +h1,7773:7879102,19780749:0,0,0 +k1,7773:31966990,19780749:24087888 +g1,7773:31966990,19780749 +) +(1,7773:7246811,20446927:24720180,410518,107478 +h1,7773:7246811,20446927:0,0,0 +g1,7773:8195248,20446927 +g1,7773:11040559,20446927 +g1,7773:13885870,20446927 +g1,7773:16098890,20446927 +g1,7773:17995764,20446927 +g1,7773:18944201,20446927 +g1,7773:19892638,20446927 +g1,7773:22421804,20446927 +g1,7773:23370241,20446927 +h1,7773:25583261,20446927:0,0,0 +k1,7773:31966991,20446927:6383730 +g1,7773:31966991,20446927 +) +(1,7773:7246811,21113105:24720180,404226,107478 +h1,7773:7246811,21113105:0,0,0 +g1,7773:8195248,21113105 +g1,7773:11040559,21113105 +g1,7773:14518162,21113105 +g1,7773:14834308,21113105 +g1,7773:19892639,21113105 +g1,7773:23370242,21113105 +g1,7773:23686388,21113105 +h1,7773:25583262,21113105:0,0,0 +k1,7773:31966991,21113105:6383729 +g1,7773:31966991,21113105 +) +(1,7773:7246811,21779283:24720180,404226,101187 +h1,7773:7246811,21779283:0,0,0 +g1,7773:8195248,21779283 +g1,7773:12305142,21779283 +g1,7773:12621288,21779283 +g1,7773:14202017,21779283 +g1,7773:15150454,21779283 +g1,7773:15782746,21779283 +g1,7773:17047329,21779283 +g1,7773:17995766,21779283 +g1,7773:19260349,21779283 +g1,7773:19576495,21779283 +g1,7773:22421807,21779283 +g1,7773:23054099,21779283 +k1,7773:23054099,21779283:0 +h1,7773:25267119,21779283:0,0,0 +k1,7773:31966991,21779283:6699872 +g1,7773:31966991,21779283 +) +] +) +g1,7774:31966991,21880470 +g1,7774:7246811,21880470 +g1,7774:7246811,21880470 +g1,7774:31966991,21880470 +g1,7774:31966991,21880470 +) +h1,7774:7246811,22077078:0,0,0 +v1,7778:7246811,23791832:0,393216,0 +(1,7806:7246811,38828381:24720180,15429765,196608 +g1,7806:7246811,38828381 +g1,7806:7246811,38828381 +g1,7806:7050203,38828381 +(1,7806:7050203,38828381:0,15429765,196608 +r1,7810:32163599,38828381:25113396,15626373,196608 +k1,7806:7050203,38828381:-25113396 +) +(1,7806:7050203,38828381:25113396,15429765,196608 +[1,7806:7246811,38828381:24720180,15233157,0 +(1,7780:7246811,24005742:24720180,410518,101187 +(1,7779:7246811,24005742:0,0,0 +g1,7779:7246811,24005742 +g1,7779:7246811,24005742 +g1,7779:6919131,24005742 +(1,7779:6919131,24005742:0,0,0 +) +g1,7779:7246811,24005742 +) +k1,7780:7246811,24005742:0 +h1,7780:11988996,24005742:0,0,0 +k1,7780:31966992,24005742:19977996 +g1,7780:31966992,24005742 +) +(1,7805:7246811,24737456:24720180,379060,0 +(1,7782:7246811,24737456:0,0,0 +g1,7782:7246811,24737456 +g1,7782:7246811,24737456 +g1,7782:6919131,24737456 +(1,7782:6919131,24737456:0,0,0 +) +g1,7782:7246811,24737456 +) +h1,7805:7879102,24737456:0,0,0 +k1,7805:31966990,24737456:24087888 +g1,7805:31966990,24737456 +) +(1,7805:7246811,25403634:24720180,404226,7863 +h1,7805:7246811,25403634:0,0,0 +g1,7805:8195248,25403634 +h1,7805:9775976,25403634:0,0,0 +k1,7805:31966992,25403634:22191016 +g1,7805:31966992,25403634 +) +(1,7805:7246811,26069812:24720180,410518,101187 +h1,7805:7246811,26069812:0,0,0 +k1,7805:8089866,26069812:210764 +k1,7805:11462087,26069812:210764 +k1,7805:11988997,26069812:210764 +k1,7805:13780489,26069812:210764 +k1,7805:14307399,26069812:210764 +k1,7805:16415037,26069812:210764 +k1,7805:17890384,26069812:210764 +k1,7805:18417294,26069812:210764 +k1,7805:22737952,26069812:210764 +k1,7805:25794027,26069812:210764 +k1,7805:26320937,26069812:210764 +k1,7805:29693158,26069812:210764 +k1,7805:30220068,26069812:210764 +h1,7805:33697670,26069812:0,0,0 +k1,7805:33697670,26069812:0 +k1,7805:33697670,26069812:0 +) +(1,7805:7246811,26735990:24720180,379060,0 +h1,7805:7246811,26735990:0,0,0 +h1,7805:7879102,26735990:0,0,0 +k1,7805:31966990,26735990:24087888 +g1,7805:31966990,26735990 +) +(1,7805:7246811,27402168:24720180,404226,6290 +h1,7805:7246811,27402168:0,0,0 +g1,7805:8195248,27402168 +h1,7805:11356705,27402168:0,0,0 +k1,7805:31966991,27402168:20610286 +g1,7805:31966991,27402168 +) +(1,7805:7246811,28068346:24720180,404226,82312 +h1,7805:7246811,28068346:0,0,0 +g1,7805:8195248,28068346 +g1,7805:8511394,28068346 +g1,7805:8827540,28068346 +g1,7805:9143686,28068346 +g1,7805:10408269,28068346 +g1,7805:10724415,28068346 +g1,7805:11040561,28068346 +g1,7805:11356707,28068346 +g1,7805:11672853,28068346 +g1,7805:12621290,28068346 +g1,7805:14834310,28068346 +g1,7805:15150456,28068346 +g1,7805:15466602,28068346 +g1,7805:15782748,28068346 +g1,7805:16098894,28068346 +g1,7805:17047331,28068346 +g1,7805:17363477,28068346 +g1,7805:17679623,28068346 +g1,7805:17995769,28068346 +h1,7805:18944206,28068346:0,0,0 +k1,7805:31966991,28068346:13022785 +g1,7805:31966991,28068346 +) +(1,7805:7246811,28734524:24720180,388497,9436 +h1,7805:7246811,28734524:0,0,0 +g1,7805:8195248,28734524 +g1,7805:10408268,28734524 +g1,7805:12621288,28734524 +g1,7805:14834308,28734524 +g1,7805:15150454,28734524 +g1,7805:17047328,28734524 +g1,7805:17363474,28734524 +h1,7805:18944202,28734524:0,0,0 +k1,7805:31966991,28734524:13022789 +g1,7805:31966991,28734524 +) +(1,7805:7246811,29400702:24720180,379060,0 +h1,7805:7246811,29400702:0,0,0 +h1,7805:7879102,29400702:0,0,0 +k1,7805:31966990,29400702:24087888 +g1,7805:31966990,29400702 +) +(1,7805:7246811,30066880:24720180,410518,7863 +h1,7805:7246811,30066880:0,0,0 +g1,7805:8195248,30066880 +h1,7805:12305142,30066880:0,0,0 +k1,7805:31966990,30066880:19661848 +g1,7805:31966990,30066880 +) +(1,7805:7246811,30733058:24720180,404226,76021 +h1,7805:7246811,30733058:0,0,0 +g1,7805:8195248,30733058 +g1,7805:8511394,30733058 +g1,7805:8827540,30733058 +g1,7805:9143686,30733058 +g1,7805:9459832,30733058 +g1,7805:9775978,30733058 +g1,7805:10092124,30733058 +g1,7805:10408270,30733058 +g1,7805:10724416,30733058 +g1,7805:11040562,30733058 +g1,7805:11356708,30733058 +g1,7805:11672854,30733058 +g1,7805:11989000,30733058 +g1,7805:14834311,30733058 +g1,7805:16415040,30733058 +g1,7805:18311914,30733058 +g1,7805:18944206,30733058 +g1,7805:20841080,30733058 +k1,7805:20841080,30733058:0 +h1,7805:23370245,30733058:0,0,0 +k1,7805:31966991,30733058:8596746 +g1,7805:31966991,30733058 +) +(1,7805:7246811,31399236:24720180,404226,101187 +h1,7805:7246811,31399236:0,0,0 +g1,7805:8195248,31399236 +g1,7805:11988996,31399236 +g1,7805:12305142,31399236 +g1,7805:12621288,31399236 +g1,7805:14834308,31399236 +g1,7805:15150454,31399236 +g1,7805:15466600,31399236 +g1,7805:15782746,31399236 +g1,7805:16098892,31399236 +g1,7805:18311912,31399236 +g1,7805:18628058,31399236 +g1,7805:20841078,31399236 +g1,7805:21157224,31399236 +g1,7805:21789516,31399236 +g1,7805:23686390,31399236 +h1,7805:24634827,31399236:0,0,0 +k1,7805:31966991,31399236:7332164 +g1,7805:31966991,31399236 +) +(1,7805:7246811,32065414:24720180,388497,101187 +h1,7805:7246811,32065414:0,0,0 +g1,7805:8195248,32065414 +g1,7805:10408268,32065414 +g1,7805:10724414,32065414 +g1,7805:11040560,32065414 +g1,7805:11356706,32065414 +g1,7805:11672852,32065414 +g1,7805:11988998,32065414 +g1,7805:12305144,32065414 +g1,7805:12621290,32065414 +g1,7805:14834310,32065414 +g1,7805:15150456,32065414 +g1,7805:15466602,32065414 +g1,7805:15782748,32065414 +g1,7805:16098894,32065414 +g1,7805:18311914,32065414 +g1,7805:18628060,32065414 +g1,7805:18944206,32065414 +g1,7805:20841080,32065414 +g1,7805:23686391,32065414 +h1,7805:24634828,32065414:0,0,0 +k1,7805:31966991,32065414:7332163 +g1,7805:31966991,32065414 +) +(1,7805:7246811,32731592:24720180,388497,101187 +h1,7805:7246811,32731592:0,0,0 +g1,7805:8195248,32731592 +g1,7805:10408268,32731592 +g1,7805:10724414,32731592 +g1,7805:11040560,32731592 +g1,7805:11356706,32731592 +g1,7805:11672852,32731592 +g1,7805:11988998,32731592 +g1,7805:12305144,32731592 +g1,7805:12621290,32731592 +g1,7805:14834310,32731592 +g1,7805:15150456,32731592 +g1,7805:15466602,32731592 +g1,7805:15782748,32731592 +g1,7805:16098894,32731592 +g1,7805:18311914,32731592 +g1,7805:18628060,32731592 +g1,7805:18944206,32731592 +g1,7805:20841080,32731592 +g1,7805:23686391,32731592 +h1,7805:24634828,32731592:0,0,0 +k1,7805:31966991,32731592:7332163 +g1,7805:31966991,32731592 +) +(1,7805:7246811,33397770:24720180,388497,101187 +h1,7805:7246811,33397770:0,0,0 +g1,7805:8195248,33397770 +g1,7805:10408268,33397770 +g1,7805:10724414,33397770 +g1,7805:11040560,33397770 +g1,7805:11356706,33397770 +g1,7805:11672852,33397770 +g1,7805:11988998,33397770 +g1,7805:12305144,33397770 +g1,7805:14834310,33397770 +g1,7805:15150456,33397770 +g1,7805:15466602,33397770 +g1,7805:15782748,33397770 +g1,7805:16098894,33397770 +g1,7805:18311914,33397770 +g1,7805:18628060,33397770 +g1,7805:20841080,33397770 +g1,7805:23686391,33397770 +h1,7805:24634828,33397770:0,0,0 +k1,7805:31966991,33397770:7332163 +g1,7805:31966991,33397770 +) +(1,7805:7246811,34063948:24720180,388497,101187 +h1,7805:7246811,34063948:0,0,0 +g1,7805:8195248,34063948 +g1,7805:10408268,34063948 +g1,7805:10724414,34063948 +g1,7805:11040560,34063948 +g1,7805:11356706,34063948 +g1,7805:11672852,34063948 +g1,7805:11988998,34063948 +g1,7805:12305144,34063948 +g1,7805:14834310,34063948 +g1,7805:15150456,34063948 +g1,7805:15466602,34063948 +g1,7805:15782748,34063948 +g1,7805:16098894,34063948 +g1,7805:18311914,34063948 +g1,7805:18628060,34063948 +g1,7805:20841080,34063948 +g1,7805:23686391,34063948 +h1,7805:24634828,34063948:0,0,0 +k1,7805:31966991,34063948:7332163 +g1,7805:31966991,34063948 +) +(1,7805:7246811,34730126:24720180,388497,101187 +h1,7805:7246811,34730126:0,0,0 +g1,7805:8195248,34730126 +g1,7805:10408268,34730126 +g1,7805:10724414,34730126 +g1,7805:11040560,34730126 +g1,7805:11356706,34730126 +g1,7805:11672852,34730126 +g1,7805:11988998,34730126 +g1,7805:12305144,34730126 +g1,7805:14834310,34730126 +g1,7805:15150456,34730126 +g1,7805:15466602,34730126 +g1,7805:15782748,34730126 +g1,7805:16098894,34730126 +g1,7805:18311914,34730126 +g1,7805:18628060,34730126 +g1,7805:20841080,34730126 +g1,7805:23686391,34730126 +h1,7805:24634828,34730126:0,0,0 +k1,7805:31966991,34730126:7332163 +g1,7805:31966991,34730126 +) +(1,7805:7246811,35396304:24720180,379060,0 +h1,7805:7246811,35396304:0,0,0 +g1,7805:8195248,35396304 +k1,7805:8195248,35396304:0 +h1,7805:9143686,35396304:0,0,0 +k1,7805:31966990,35396304:22823304 +g1,7805:31966990,35396304 +) +(1,7805:7246811,36062482:24720180,410518,107478 +h1,7805:7246811,36062482:0,0,0 +g1,7805:8195248,36062482 +g1,7805:10724414,36062482 +g1,7805:12937434,36062482 +g1,7805:13253580,36062482 +g1,7805:13885872,36062482 +g1,7805:15782747,36062482 +g1,7805:17679621,36062482 +g1,7805:19260350,36062482 +g1,7805:20841079,36062482 +g1,7805:22105663,36062482 +g1,7805:23686392,36062482 +g1,7805:24950976,36062482 +g1,7805:26215559,36062482 +g1,7805:26847851,36062482 +g1,7805:27480143,36062482 +h1,7805:27796289,36062482:0,0,0 +k1,7805:31966991,36062482:4170702 +g1,7805:31966991,36062482 +) +(1,7805:7246811,36728660:24720180,379060,0 +h1,7805:7246811,36728660:0,0,0 +h1,7805:7879102,36728660:0,0,0 +k1,7805:31966990,36728660:24087888 +g1,7805:31966990,36728660 +) +(1,7805:7246811,37394838:24720180,410518,107478 +h1,7805:7246811,37394838:0,0,0 +g1,7805:8195248,37394838 +g1,7805:11040559,37394838 +g1,7805:13885870,37394838 +g1,7805:16098890,37394838 +g1,7805:17995764,37394838 +g1,7805:18944201,37394838 +g1,7805:19892638,37394838 +g1,7805:22421804,37394838 +g1,7805:23370241,37394838 +h1,7805:25583261,37394838:0,0,0 +k1,7805:31966991,37394838:6383730 +g1,7805:31966991,37394838 +) +(1,7805:7246811,38061016:24720180,404226,107478 +h1,7805:7246811,38061016:0,0,0 +g1,7805:8195248,38061016 +g1,7805:11040559,38061016 +g1,7805:14518162,38061016 +g1,7805:14834308,38061016 +g1,7805:19892639,38061016 +g1,7805:23370242,38061016 +g1,7805:23686388,38061016 +h1,7805:25583262,38061016:0,0,0 +k1,7805:31966991,38061016:6383729 +g1,7805:31966991,38061016 +) +(1,7805:7246811,38727194:24720180,404226,101187 +h1,7805:7246811,38727194:0,0,0 +g1,7805:8195248,38727194 +g1,7805:12305142,38727194 +g1,7805:12621288,38727194 +g1,7805:14202017,38727194 +g1,7805:15150454,38727194 +g1,7805:15782746,38727194 +g1,7805:17047329,38727194 +g1,7805:17995766,38727194 +g1,7805:19260349,38727194 +g1,7805:19576495,38727194 +g1,7805:22421807,38727194 +g1,7805:23054099,38727194 +k1,7805:23054099,38727194:0 +h1,7805:25267119,38727194:0,0,0 +k1,7805:31966991,38727194:6699872 +g1,7805:31966991,38727194 +) +] +) +g1,7806:31966991,38828381 +g1,7806:7246811,38828381 +g1,7806:7246811,38828381 +g1,7806:31966991,38828381 +g1,7806:31966991,38828381 +) +h1,7806:7246811,39024989:0,0,0 +(1,7810:7246811,40390765:24720180,513147,126483 +h1,7809:7246811,40390765:983040,0,0 +k1,7809:9102850,40390765:245164 +k1,7809:10367100,40390765:245165 +k1,7809:11979345,40390765:245164 +k1,7809:12883801,40390765:245164 +k1,7809:16264208,40390765:245165 +k1,7809:17889560,40390765:245164 +k1,7809:20263990,40390765:245165 +k1,7809:22288456,40390765:245164 +k1,7809:23552705,40390765:245164 +k1,7809:27078602,40390765:245165 +k1,7809:30369879,40390765:245164 +k1,7810:31966991,40390765:0 +) +(1,7810:7246811,41232253:24720180,513147,134348 +k1,7809:10650931,41232253:215138 +k1,7809:11525362,41232253:215139 +k1,7809:14331138,41232253:215138 +k1,7809:15565361,41232253:215138 +k1,7809:19389567,41232253:215138 +k1,7809:21693338,41232253:215139 +k1,7809:22439973,41232253:215138 +k1,7809:26148835,41232253:215138 +k1,7809:27046858,41232253:215138 +k1,7809:28501938,41232253:215139 +k1,7809:29204648,41232253:215122 +k1,7809:31966991,41232253:0 +) +(1,7810:7246811,42073741:24720180,513147,126483 +k1,7809:8370152,42073741:188798 +k1,7809:9218243,42073741:188799 +k1,7809:12368613,42073741:188798 +k1,7809:14695851,42073741:188798 +k1,7809:16406396,42073741:188799 +k1,7809:16951054,42073741:188798 +k1,7809:19902195,42073741:188798 +k1,7809:21025537,42073741:188799 +k1,7809:21873627,42073741:188798 +k1,7809:24692385,42073741:188798 +k1,7809:28025601,42073741:188799 +k1,7809:30489154,42073741:188798 +k1,7810:31966991,42073741:0 +) +(1,7810:7246811,42915229:24720180,513147,126483 +k1,7809:9472943,42915229:233838 +k1,7809:10516150,42915229:233837 +k1,7809:11769073,42915229:233838 +k1,7809:13704881,42915229:233838 +k1,7809:15718676,42915229:233837 +k1,7809:16767782,42915229:233838 +k1,7809:18067890,42915229:233837 +k1,7809:20081030,42915229:233838 +k1,7809:21333953,42915229:233838 +k1,7809:23133445,42915229:233837 +k1,7809:26146010,42915229:233838 +k1,7809:27141376,42915229:233838 +(1,7809:27141376,42915229:0,452978,115847 +r1,7810:29609913,42915229:2468537,568825,115847 +k1,7809:27141376,42915229:-2468537 +) +(1,7809:27141376,42915229:2468537,452978,115847 +k1,7809:27141376,42915229:3277 +h1,7809:29606636,42915229:0,411205,112570 +) +k1,7809:29843750,42915229:233837 +k1,7809:30763750,42915229:233838 +k1,7809:31966991,42915229:0 +) +(1,7810:7246811,43756717:24720180,513147,7863 +g1,7809:9011695,43756717 +g1,7809:10703834,43756717 +g1,7809:11969334,43756717 +g1,7809:13497633,43756717 +g1,7809:15090813,43756717 +g1,7809:16309127,43756717 +g1,7809:18609440,43756717 +g1,7809:19467961,43756717 +g1,7809:22860104,43756717 +g1,7809:24953323,43756717 +k1,7810:31966991,43756717:5047588 +g1,7810:31966991,43756717 +) +] +) +] +r1,7810:32583029,44354404:26214,38493523,0 +) +] +) +) +g1,7810:32583029,43764580 +) +h1,7810:6630773,44380618:0,0,0 +] +(1,7820:32583029,45706769:0,0,0 +g1,7820:32583029,45706769 +) +) +] +(1,7820:6630773,47279633:25952256,0,0 +h1,7820:6630773,47279633:25952256,0,0 +) +] +h1,7820:4262630,4025873:0,0,0 +] +!27282 }146 -Input:1087:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1088:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1089:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1090:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1091:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1092:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1093:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1083:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1084:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1085:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1086:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1087:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1088:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1089:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {147 -[1,7851:4262630,47279633:28320399,43253760,0 -(1,7851:4262630,4025873:0,0,0 -[1,7851:-473657,4025873:25952256,0,0 -(1,7851:-473657,-710414:25952256,0,0 -h1,7851:-473657,-710414:0,0,0 -(1,7851:-473657,-710414:0,0,0 -(1,7851:-473657,-710414:0,0,0 -g1,7851:-473657,-710414 -(1,7851:-473657,-710414:65781,0,65781 -g1,7851:-407876,-710414 -[1,7851:-407876,-644633:0,0,0 +[1,7876:4262630,47279633:28320399,43253760,0 +(1,7876:4262630,4025873:0,0,0 +[1,7876:-473657,4025873:25952256,0,0 +(1,7876:-473657,-710414:25952256,0,0 +h1,7876:-473657,-710414:0,0,0 +(1,7876:-473657,-710414:0,0,0 +(1,7876:-473657,-710414:0,0,0 +g1,7876:-473657,-710414 +(1,7876:-473657,-710414:65781,0,65781 +g1,7876:-407876,-710414 +[1,7876:-407876,-644633:0,0,0 ] ) -k1,7851:-473657,-710414:-65781 +k1,7876:-473657,-710414:-65781 ) ) -k1,7851:25478599,-710414:25952256 -g1,7851:25478599,-710414 +k1,7876:25478599,-710414:25952256 +g1,7876:25478599,-710414 ) ] ) -[1,7851:6630773,47279633:25952256,43253760,0 -[1,7851:6630773,4812305:25952256,786432,0 -(1,7851:6630773,4812305:25952256,505283,134348 -(1,7851:6630773,4812305:25952256,505283,134348 -g1,7851:3078558,4812305 -[1,7851:3078558,4812305:0,0,0 -(1,7851:3078558,2439708:0,1703936,0 -k1,7851:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7851:2537886,2439708:1179648,16384,0 +[1,7876:6630773,47279633:25952256,43253760,0 +[1,7876:6630773,4812305:25952256,786432,0 +(1,7876:6630773,4812305:25952256,505283,134348 +(1,7876:6630773,4812305:25952256,505283,134348 +g1,7876:3078558,4812305 +[1,7876:3078558,4812305:0,0,0 +(1,7876:3078558,2439708:0,1703936,0 +k1,7876:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7876:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7851:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7876:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7851:3078558,4812305:0,0,0 -(1,7851:3078558,2439708:0,1703936,0 -g1,7851:29030814,2439708 -g1,7851:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7851:36151628,1915420:16384,1179648,0 +[1,7876:3078558,4812305:0,0,0 +(1,7876:3078558,2439708:0,1703936,0 +g1,7876:29030814,2439708 +g1,7876:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7876:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7851:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7876:37855564,2439708:1179648,16384,0 ) ) -k1,7851:3078556,2439708:-34777008 +k1,7876:3078556,2439708:-34777008 ) ] -[1,7851:3078558,4812305:0,0,0 -(1,7851:3078558,49800853:0,16384,2228224 -k1,7851:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7851:2537886,49800853:1179648,16384,0 +[1,7876:3078558,4812305:0,0,0 +(1,7876:3078558,49800853:0,16384,2228224 +k1,7876:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7876:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7851:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,7851:3078558,4812305:0,0,0 -(1,7851:3078558,49800853:0,16384,2228224 -g1,7851:29030814,49800853 -g1,7851:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7851:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7851:37855564,49800853:1179648,16384,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7876:3078558,51504789:16384,1179648,0 ) -) -k1,7851:3078556,49800853:-34777008 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] -g1,7851:6630773,4812305 -k1,7851:24573876,4812305:16747726 -g1,7851:25960617,4812305 -g1,7851:26609423,4812305 -g1,7851:29923578,4812305 ) ) -] -[1,7851:6630773,45706769:25952256,40108032,0 -(1,7851:6630773,45706769:25952256,40108032,0 -(1,7851:6630773,45706769:0,0,0 -g1,7851:6630773,45706769 ) -[1,7851:6630773,45706769:25952256,40108032,0 -v1,7805:6630773,6254097:0,393216,0 -(1,7805:6630773,9496179:25952256,3635298,616038 -g1,7805:6630773,9496179 -(1,7805:6630773,9496179:25952256,3635298,616038 -(1,7805:6630773,10112217:25952256,4251336,0 -[1,7805:6630773,10112217:25952256,4251336,0 -(1,7805:6630773,10086003:25952256,4225122,0 -r1,7805:6656987,10086003:26214,4225122,0 -[1,7805:6656987,10086003:25899828,4225122,0 -(1,7805:6656987,9496179:25899828,3045474,0 -[1,7805:7246811,9496179:24720180,3045474,0 -(1,7805:7246811,6963852:24720180,513147,134348 -k1,7804:10650931,6963852:215138 -k1,7804:11525362,6963852:215139 -k1,7804:14331138,6963852:215138 -k1,7804:15565361,6963852:215138 -k1,7804:19389567,6963852:215138 -k1,7804:21693338,6963852:215139 -k1,7804:22439973,6963852:215138 -k1,7804:26148835,6963852:215138 -k1,7804:27046858,6963852:215138 -k1,7804:28501938,6963852:215139 -k1,7804:29204648,6963852:215122 -k1,7804:31966991,6963852:0 -) -(1,7805:7246811,7805340:24720180,513147,126483 -k1,7804:8370152,7805340:188798 -k1,7804:9218243,7805340:188799 -k1,7804:12368613,7805340:188798 -k1,7804:14695851,7805340:188798 -k1,7804:16406396,7805340:188799 -k1,7804:16951054,7805340:188798 -k1,7804:19902195,7805340:188798 -k1,7804:21025537,7805340:188799 -k1,7804:21873627,7805340:188798 -k1,7804:24692385,7805340:188798 -k1,7804:28025601,7805340:188799 -k1,7804:30489154,7805340:188798 -k1,7805:31966991,7805340:0 -) -(1,7805:7246811,8646828:24720180,513147,126483 -k1,7804:9472943,8646828:233838 -k1,7804:10516150,8646828:233837 -k1,7804:11769073,8646828:233838 -k1,7804:13704881,8646828:233838 -k1,7804:15718676,8646828:233837 -k1,7804:16767782,8646828:233838 -k1,7804:18067890,8646828:233837 -k1,7804:20081030,8646828:233838 -k1,7804:21333953,8646828:233838 -k1,7804:23133445,8646828:233837 -k1,7804:26146010,8646828:233838 -k1,7804:27141376,8646828:233838 -(1,7804:27141376,8646828:0,452978,115847 -r1,7805:29609913,8646828:2468537,568825,115847 -k1,7804:27141376,8646828:-2468537 -) -(1,7804:27141376,8646828:2468537,452978,115847 -k1,7804:27141376,8646828:3277 -h1,7804:29606636,8646828:0,411205,112570 -) -k1,7804:29843750,8646828:233837 -k1,7804:30763750,8646828:233838 -k1,7804:31966991,8646828:0 -) -(1,7805:7246811,9488316:24720180,513147,7863 -g1,7804:9011695,9488316 -g1,7804:10703834,9488316 -g1,7804:11969334,9488316 -g1,7804:13497633,9488316 -g1,7804:15090813,9488316 -g1,7804:16309127,9488316 -g1,7804:18609440,9488316 -g1,7804:19467961,9488316 -g1,7804:22860104,9488316 -g1,7804:24953323,9488316 -k1,7805:31966991,9488316:5047588 -g1,7805:31966991,9488316 -) -] -) -] -r1,7805:32583029,10086003:26214,4225122,0 -) -] -) -) -g1,7805:32583029,9496179 -) -h1,7805:6630773,10112217:0,0,0 -(1,7807:6630773,12203477:25952256,564462,139132 -(1,7807:6630773,12203477:2450326,534184,12975 -g1,7807:6630773,12203477 -g1,7807:9081099,12203477 -) -g1,7807:12446963,12203477 -g1,7807:13416569,12203477 -g1,7807:17776549,12203477 -k1,7807:32583029,12203477:11452872 -g1,7807:32583029,12203477 -) -(1,7815:6630773,13438181:25952256,513147,126483 -k1,7813:8550060,13438181:136052 -k1,7813:9041973,13438181:136053 -k1,7813:10990751,13438181:136052 -k1,7813:13114511,13438181:136053 -k1,7813:15918534,13438181:136052 -k1,7813:17521283,13438181:136053 -k1,7813:21423034,13438181:136052 -k1,7813:23783379,13438181:136053 -k1,7813:25110876,13438181:136052 -k1,7813:28817330,13438181:136053 -k1,7813:32583029,13438181:0 -) -(1,7815:6630773,14279669:25952256,513147,126483 -k1,7813:9781088,14279669:135004 -k1,7813:10784444,14279669:135004 -k1,7813:12256382,14279669:135004 -k1,7813:13491081,14279669:135005 -k1,7813:14084182,14279669:135004 -k1,7813:16750842,14279669:135004 -k1,7813:17501884,14279669:135004 -k1,7813:21055246,14279669:135004 -k1,7813:24668246,14279669:135004 -k1,7813:25999938,14279669:135005 -k1,7813:28678394,14279669:135004 -k1,7813:30897443,14279669:135004 -k1,7813:31563944,14279669:135004 -k1,7813:32583029,14279669:0 -) -(1,7815:6630773,15121157:25952256,513147,126483 -k1,7813:8426677,15121157:142431 -k1,7813:9516760,15121157:142432 -k1,7813:10425307,15121157:142431 -k1,7813:12380465,15121157:142432 -k1,7813:14840904,15121157:142431 -k1,7813:16348450,15121157:142431 -k1,7813:17177044,15121157:142432 -k1,7813:20737178,15121157:142431 -k1,7813:21495648,15121157:142432 -k1,7813:24392557,15121157:142431 -k1,7813:27317648,15121157:142432 -k1,7813:29008695,15121157:142431 -k1,7813:32583029,15121157:0 -) -(1,7815:6630773,15962645:25952256,513147,126483 -k1,7813:7817781,15962645:167923 -k1,7813:9371791,15962645:167924 -k1,7813:10199006,15962645:167923 -k1,7813:12921522,15962645:167923 -k1,7813:13620943,15962645:167924 -k1,7813:14807951,15962645:167923 -k1,7813:17054021,15962645:167923 -k1,7813:17881236,15962645:167923 -k1,7813:19068245,15962645:167924 -k1,7813:23001867,15962645:167923 -k1,7813:26599289,15962645:167923 -k1,7813:27585102,15962645:167924 -k1,7813:28772110,15962645:167923 -k1,7813:32583029,15962645:0 -) -(1,7815:6630773,16804133:25952256,513147,134348 -k1,7813:9386007,16804133:197364 -k1,7813:10602456,16804133:197364 -k1,7813:12626965,16804133:197365 -k1,7813:13633699,16804133:197364 -k1,7813:16228370,16804133:197364 -k1,7813:19087151,16804133:197364 -k1,7813:19816013,16804133:197365 -k1,7813:21881808,16804133:197364 -k1,7813:23275859,16804133:197364 -k1,7813:25065093,16804133:197364 -k1,7813:28107375,16804133:197364 -k1,7813:28964032,16804133:197365 -k1,7813:32051532,16804133:197362 -k1,7813:32583029,16804133:0 -) -(1,7815:6630773,17645621:25952256,513147,126483 -k1,7813:7402272,17645621:155461 -k1,7813:8576817,17645621:155460 -k1,7813:11563433,17645621:155461 -k1,7813:12378186,17645621:155461 -k1,7813:13552732,17645621:155461 -k1,7813:16598985,17645621:155460 -k1,7813:17945891,17645621:155461 -k1,7813:19120437,17645621:155461 -k1,7813:23721204,17645621:155460 -k1,7813:24535957,17645621:155461 -k1,7813:25710503,17645621:155461 -k1,7813:28039138,17645621:155461 -k1,7813:28853890,17645621:155460 -k1,7813:30028436,17645621:155461 -k1,7813:32583029,17645621:0 -) -(1,7815:6630773,18487109:25952256,505283,134348 -g1,7813:8105988,18487109 -g1,7813:10153332,18487109 -g1,7813:12327161,18487109 -k1,7815:32583029,18487109:20255868 -g1,7815:32583029,18487109 -) -(1,7816:6630773,21294677:25952256,32768,229376 -(1,7816:6630773,21294677:0,32768,229376 -(1,7816:6630773,21294677:5505024,32768,229376 -r1,7816:12135797,21294677:5505024,262144,229376 -) -k1,7816:6630773,21294677:-5505024 -) -(1,7816:6630773,21294677:25952256,32768,0 -r1,7816:32583029,21294677:25952256,32768,0 -) -) -(1,7816:6630773,22899005:25952256,606339,14155 -(1,7816:6630773,22899005:1974731,575668,0 -g1,7816:6630773,22899005 -g1,7816:8605504,22899005 -) -g1,7816:13567104,22899005 -g1,7816:16080541,22899005 -k1,7816:32583029,22899005:13634370 -g1,7816:32583029,22899005 -) -(1,7822:6630773,24133709:25952256,513147,126483 -k1,7820:8745474,24133709:142067 -k1,7820:11205550,24133709:142068 -k1,7820:13063350,24133709:142067 -k1,7820:14224503,24133709:142068 -k1,7820:18106054,24133709:142067 -k1,7820:18907414,24133709:142068 -k1,7820:21894399,24133709:142067 -k1,7820:25575411,24133709:142068 -k1,7820:28785218,24133709:142067 -k1,7820:32583029,24133709:0 -) -(1,7822:6630773,24975197:25952256,513147,122846 -k1,7820:8631240,24975197:187741 -k1,7820:11310661,24975197:187742 -k1,7820:13210858,24975197:187741 -k1,7820:14792550,24975197:187741 -k1,7820:17675788,24975197:187742 -(1,7820:17675788,24975197:0,452978,122846 -r1,7820:19440901,24975197:1765113,575824,122846 -k1,7820:17675788,24975197:-1765113 -) -(1,7820:17675788,24975197:1765113,452978,122846 -k1,7820:17675788,24975197:3277 -h1,7820:19437624,24975197:0,411205,112570 -) -k1,7820:19628642,24975197:187741 -k1,7820:20807943,24975197:187741 -k1,7820:22645882,24975197:187742 -k1,7820:25308262,24975197:187741 -k1,7820:26687448,24975197:187741 -k1,7820:28556844,24975197:187742 -k1,7820:29763670,24975197:187741 -k1,7820:32583029,24975197:0 -) -(1,7822:6630773,25816685:25952256,513147,126483 -k1,7820:10707627,25816685:295427 -k1,7820:11654482,25816685:295427 -k1,7820:12697675,25816685:295427 -k1,7820:15581774,25816685:295427 -k1,7820:16563363,25816685:295427 -k1,7820:18137397,25816685:295427 -k1,7820:19118986,25816685:295427 -k1,7820:20433497,25816685:295426 -k1,7820:21942651,25816685:295427 -k1,7820:25107244,25816685:295427 -k1,7821:26444693,25816685:295427 -k1,7821:27759205,25816685:295427 -k1,7821:30609225,25816685:295427 -k1,7821:31563944,25816685:295427 -k1,7822:32583029,25816685:0 -) -(1,7822:6630773,26658173:25952256,505283,134348 -(1,7821:6630773,26658173:0,414482,115847 -r1,7821:10506157,26658173:3875384,530329,115847 -k1,7821:6630773,26658173:-3875384 -) -(1,7821:6630773,26658173:3875384,414482,115847 -k1,7821:6630773,26658173:3277 -h1,7821:10502880,26658173:0,411205,112570 -) -k1,7821:10697611,26658173:191454 -k1,7821:12278428,26658173:191454 -k1,7821:13404426,26658173:191455 -k1,7821:15451204,26658173:191454 -k1,7821:18128439,26658173:191454 -h1,7821:19671157,26658173:0,0,0 -k1,7821:19862611,26658173:191454 -k1,7821:20863436,26658173:191455 -k1,7821:22553043,26658173:191454 -h1,7821:23748420,26658173:0,0,0 -k1,7821:24320638,26658173:191454 -k1,7821:25531177,26658173:191454 -k1,7821:28078651,26658173:191455 -k1,7821:32051532,26658173:191454 -k1,7821:32583029,26658173:0 -) -(1,7822:6630773,27499661:25952256,513147,134348 -k1,7821:7931616,27499661:234572 -k1,7821:8522048,27499661:234572 -k1,7821:10340625,27499661:234572 -k1,7821:15264953,27499661:234572 -k1,7821:16185687,27499661:234572 -k1,7821:18234951,27499661:234572 -k1,7821:19858887,27499661:234573 -k1,7821:22710312,27499661:234572 -k1,7821:24512505,27499661:234572 -k1,7821:25378844,27499661:234572 -k1,7821:26994260,27499661:234572 -k1,7821:28436005,27499661:234572 -k1,7821:30713334,27499661:234572 -k1,7821:31563944,27499661:234572 -k1,7821:32583029,27499661:0 -) -(1,7822:6630773,28341149:25952256,505283,126483 -g1,7821:12358619,28341149 -g1,7821:13835145,28341149 -k1,7822:32583029,28341149:16718889 -g1,7822:32583029,28341149 -) -(1,7824:6630773,29182637:25952256,505283,126483 -h1,7823:6630773,29182637:983040,0,0 -k1,7823:8949327,29182637:293492 -k1,7823:11057511,29182637:293492 -k1,7823:12914037,29182637:293492 -k1,7823:14946199,29182637:293492 -k1,7823:17669766,29182637:293492 -k1,7823:18319119,29182637:293493 -k1,7823:20509878,29182637:293492 -k1,7823:24363941,29182637:293492 -k1,7823:25285268,29182637:293492 -k1,7823:26597845,29182637:293492 -k1,7823:29552754,29182637:293492 -k1,7823:31714677,29182637:293492 -k1,7823:32583029,29182637:0 -) -(1,7824:6630773,30024125:25952256,513147,126483 -k1,7823:7545328,30024125:227082 -k1,7823:8791495,30024125:227082 -k1,7823:10672051,30024125:227083 -k1,7823:12886840,30024125:227082 -k1,7823:13800084,30024125:227082 -k1,7823:16056161,30024125:227082 -k1,7823:17355412,30024125:227082 -k1,7823:18450846,30024125:227082 -k1,7823:21076547,30024125:227083 -k1,7823:21659489,30024125:227082 -k1,7823:26247337,30024125:227082 -k1,7823:30255846,30024125:227082 -k1,7823:32583029,30024125:0 -) -(1,7824:6630773,30865613:25952256,513147,134348 -k1,7823:7569950,30865613:279885 -k1,7823:8868921,30865613:279886 -k1,7823:11678496,30865613:279885 -k1,7823:12586216,30865613:279885 -k1,7823:15532107,30865613:279886 -k1,7823:16463420,30865613:279885 -k1,7823:17762391,30865613:279886 -k1,7823:20029983,30865613:279885 -k1,7823:22853320,30865613:279885 -k1,7823:24001558,30865613:279886 -k1,7823:25811709,30865613:279885 -k1,7823:26743022,30865613:279885 -k1,7823:28460113,30865613:279886 -k1,7823:29510701,30865613:279885 -k1,7823:32583029,30865613:0 -) -(1,7824:6630773,31707101:25952256,513147,134348 -k1,7823:9345987,31707101:156688 -(1,7823:9345987,31707101:0,459977,115847 -r1,7823:11462812,31707101:2116825,575824,115847 -k1,7823:9345987,31707101:-2116825 -) -(1,7823:9345987,31707101:2116825,459977,115847 -k1,7823:9345987,31707101:3277 -h1,7823:11459535,31707101:0,411205,112570 -) -k1,7823:11619500,31707101:156688 -k1,7823:13699015,31707101:156689 -k1,7823:14874788,31707101:156688 -k1,7823:16638419,31707101:156688 -k1,7823:20576534,31707101:156688 -k1,7823:21384650,31707101:156688 -k1,7823:22289104,31707101:156688 -k1,7823:26939597,31707101:156689 -k1,7823:29361865,31707101:156688 -k1,7823:30466204,31707101:156688 -(1,7823:30466204,31707101:0,459977,115847 -r1,7823:32583029,31707101:2116825,575824,115847 -k1,7823:30466204,31707101:-2116825 -) -(1,7823:30466204,31707101:2116825,459977,115847 -k1,7823:30466204,31707101:3277 -h1,7823:32579752,31707101:0,411205,112570 -) -k1,7823:32583029,31707101:0 -) -(1,7824:6630773,32548589:25952256,505283,122846 -g1,7823:7361499,32548589 -(1,7823:7361499,32548589:0,452978,122846 -r1,7823:10181748,32548589:2820249,575824,122846 -k1,7823:7361499,32548589:-2820249 -) -(1,7823:7361499,32548589:2820249,452978,122846 -k1,7823:7361499,32548589:3277 -h1,7823:10178471,32548589:0,411205,112570 -) -g1,7823:10380977,32548589 -g1,7823:11263091,32548589 -g1,7823:13818339,32548589 -k1,7824:32583029,32548589:14809592 -g1,7824:32583029,32548589 -) -v1,7826:6630773,33739055:0,393216,0 -(1,7845:6630773,42780002:25952256,9434163,196608 -g1,7845:6630773,42780002 -g1,7845:6630773,42780002 -g1,7845:6434165,42780002 -(1,7845:6434165,42780002:0,9434163,196608 -r1,7845:32779637,42780002:26345472,9630771,196608 -k1,7845:6434165,42780002:-26345472 -) -(1,7845:6434165,42780002:26345472,9434163,196608 -[1,7845:6630773,42780002:25952256,9237555,0 -(1,7828:6630773,33952965:25952256,410518,107478 -(1,7827:6630773,33952965:0,0,0 -g1,7827:6630773,33952965 -g1,7827:6630773,33952965 -g1,7827:6303093,33952965 -(1,7827:6303093,33952965:0,0,0 -) -g1,7827:6630773,33952965 -) -g1,7828:8211502,33952965 -g1,7828:9159940,33952965 -g1,7828:12321397,33952965 -g1,7828:12953689,33952965 -g1,7828:15166709,33952965 -g1,7828:16747438,33952965 -g1,7828:17379730,33952965 -g1,7828:21805770,33952965 -g1,7828:24018790,33952965 -g1,7828:24651082,33952965 -h1,7828:28760976,33952965:0,0,0 -k1,7828:32583029,33952965:3822053 -g1,7828:32583029,33952965 -) -(1,7829:6630773,34619143:25952256,410518,76021 -h1,7829:6630773,34619143:0,0,0 -k1,7829:6630773,34619143:0 -h1,7829:10108375,34619143:0,0,0 -k1,7829:32583029,34619143:22474654 -g1,7829:32583029,34619143 -) -(1,7844:6630773,35350857:25952256,410518,101187 -(1,7831:6630773,35350857:0,0,0 -g1,7831:6630773,35350857 -g1,7831:6630773,35350857 -g1,7831:6303093,35350857 -(1,7831:6303093,35350857:0,0,0 -) -g1,7831:6630773,35350857 -) -g1,7844:7579210,35350857 -g1,7844:10424521,35350857 -g1,7844:11372958,35350857 -g1,7844:14218269,35350857 -h1,7844:15798997,35350857:0,0,0 -k1,7844:32583029,35350857:16784032 -g1,7844:32583029,35350857 -) -(1,7844:6630773,36017035:25952256,379060,0 -h1,7844:6630773,36017035:0,0,0 -h1,7844:7263064,36017035:0,0,0 -k1,7844:32583028,36017035:25319964 -g1,7844:32583028,36017035 -) -(1,7844:6630773,36683213:25952256,404226,107478 -h1,7844:6630773,36683213:0,0,0 -g1,7844:7579210,36683213 -g1,7844:9792230,36683213 -g1,7844:14218270,36683213 -g1,7844:16115144,36683213 -h1,7844:17063581,36683213:0,0,0 -k1,7844:32583029,36683213:15519448 -g1,7844:32583029,36683213 -) -(1,7844:6630773,37349391:25952256,379060,0 -h1,7844:6630773,37349391:0,0,0 -h1,7844:7263064,37349391:0,0,0 -k1,7844:32583028,37349391:25319964 -g1,7844:32583028,37349391 -) -(1,7844:6630773,38015569:25952256,379060,101187 -h1,7844:6630773,38015569:0,0,0 -g1,7844:7579210,38015569 -g1,7844:10740667,38015569 -h1,7844:12321395,38015569:0,0,0 -k1,7844:32583029,38015569:20261634 -g1,7844:32583029,38015569 -) -(1,7844:6630773,38681747:25952256,379060,0 -h1,7844:6630773,38681747:0,0,0 -h1,7844:7263064,38681747:0,0,0 -k1,7844:32583028,38681747:25319964 -g1,7844:32583028,38681747 -) -(1,7844:6630773,39347925:25952256,410518,101187 -h1,7844:6630773,39347925:0,0,0 -g1,7844:7579210,39347925 -g1,7844:9476084,39347925 -g1,7844:11372958,39347925 -g1,7844:15482852,39347925 -g1,7844:17695872,39347925 -g1,7844:18644309,39347925 -h1,7844:20225037,39347925:0,0,0 -k1,7844:32583029,39347925:12357992 -g1,7844:32583029,39347925 -) -(1,7844:6630773,40014103:25952256,379060,0 -h1,7844:6630773,40014103:0,0,0 -h1,7844:7263064,40014103:0,0,0 -k1,7844:32583028,40014103:25319964 -g1,7844:32583028,40014103 -) -(1,7844:6630773,40680281:25952256,379060,0 -h1,7844:6630773,40680281:0,0,0 -h1,7844:7263064,40680281:0,0,0 -k1,7844:32583028,40680281:25319964 -g1,7844:32583028,40680281 -) -(1,7844:6630773,41346459:25952256,410518,6290 -h1,7844:6630773,41346459:0,0,0 -g1,7844:7579210,41346459 -g1,7844:7895356,41346459 -g1,7844:8211502,41346459 -g1,7844:8527648,41346459 -g1,7844:8843794,41346459 -g1,7844:9159940,41346459 -g1,7844:9476086,41346459 -g1,7844:10424523,41346459 -g1,7844:13269834,41346459 -g1,7844:15482854,41346459 -g1,7844:16431291,41346459 -g1,7844:18644311,41346459 -h1,7844:19592748,41346459:0,0,0 -k1,7844:32583029,41346459:12990281 -g1,7844:32583029,41346459 -) -(1,7844:6630773,42012637:25952256,388497,9436 -h1,7844:6630773,42012637:0,0,0 -g1,7844:7579210,42012637 -g1,7844:9159939,42012637 -g1,7844:9476085,42012637 -g1,7844:9792231,42012637 -g1,7844:10108377,42012637 -g1,7844:10424523,42012637 -g1,7844:10740669,42012637 -g1,7844:11056815,42012637 -g1,7844:11372961,42012637 -g1,7844:11689107,42012637 -g1,7844:12005253,42012637 -g1,7844:12321399,42012637 -g1,7844:12637545,42012637 -g1,7844:12953691,42012637 -g1,7844:13269837,42012637 -g1,7844:13585983,42012637 -g1,7844:13902129,42012637 -g1,7844:14218275,42012637 -g1,7844:14534421,42012637 -g1,7844:14850567,42012637 -g1,7844:15166713,42012637 -g1,7844:15482859,42012637 -g1,7844:16431296,42012637 -g1,7844:16747442,42012637 -g1,7844:17063588,42012637 -g1,7844:17379734,42012637 -g1,7844:17695880,42012637 -h1,7844:19592754,42012637:0,0,0 -k1,7844:32583029,42012637:12990275 -g1,7844:32583029,42012637 -) -(1,7844:6630773,42678815:25952256,388497,101187 -h1,7844:6630773,42678815:0,0,0 -g1,7844:7579210,42678815 -g1,7844:9476084,42678815 -g1,7844:9792230,42678815 -g1,7844:10424522,42678815 -g1,7844:10740668,42678815 -g1,7844:11056814,42678815 -g1,7844:13269834,42678815 -g1,7844:13585980,42678815 -g1,7844:13902126,42678815 -g1,7844:14218272,42678815 -g1,7844:14534418,42678815 -g1,7844:14850564,42678815 -g1,7844:15166710,42678815 -g1,7844:15482856,42678815 -g1,7844:16431293,42678815 -g1,7844:16747439,42678815 -g1,7844:17063585,42678815 -g1,7844:17379731,42678815 -g1,7844:17695877,42678815 -g1,7844:18012023,42678815 -h1,7844:19592751,42678815:0,0,0 -k1,7844:32583029,42678815:12990278 -g1,7844:32583029,42678815 -) -] -) -g1,7845:32583029,42780002 -g1,7845:6630773,42780002 -g1,7845:6630773,42780002 -g1,7845:32583029,42780002 -g1,7845:32583029,42780002 -) -h1,7845:6630773,42976610:0,0,0 -(1,7849:6630773,44342386:25952256,513147,126483 -h1,7848:6630773,44342386:983040,0,0 -k1,7848:8963974,44342386:153474 -k1,7848:11765758,44342386:153474 -k1,7848:13486853,44342386:153474 -k1,7848:14659412,44342386:153474 -(1,7848:14659412,44342386:0,452978,115847 -r1,7848:17127949,44342386:2468537,568825,115847 -k1,7848:14659412,44342386:-2468537 -) -(1,7848:14659412,44342386:2468537,452978,115847 -k1,7848:14659412,44342386:3277 -h1,7848:17124672,44342386:0,411205,112570 -) -k1,7848:17281424,44342386:153475 -k1,7848:19889221,44342386:153474 -k1,7848:20990346,44342386:153474 -k1,7848:22552143,44342386:153428 -k1,7848:23723392,44342386:153475 -k1,7848:24977871,44342386:153474 -k1,7848:26823485,44342386:153474 -k1,7848:30493621,44342386:153474 -k1,7848:31298523,44342386:153474 -k1,7848:32583029,44342386:0 -) -(1,7849:6630773,45183874:25952256,513147,134348 -k1,7848:7750685,45183874:172261 -k1,7848:8851564,45183874:172234 -k1,7848:10215269,45183874:172260 -k1,7848:11147748,45183874:172261 -k1,7848:13759259,45183874:172261 -k1,7848:14740890,45183874:172261 -k1,7848:18650668,45183874:172260 -k1,7848:20014374,45183874:172261 -k1,7848:20718132,45183874:172261 -k1,7848:24272706,45183874:172261 -k1,7848:25131128,45183874:172260 -k1,7848:25659249,45183874:172261 -k1,7848:30557967,45183874:172261 -k1,7848:32583029,45183874:0 -) -] -(1,7851:32583029,45706769:0,0,0 -g1,7851:32583029,45706769 -) -) -] -(1,7851:6630773,47279633:25952256,0,0 -h1,7851:6630773,47279633:25952256,0,0 -) -] -h1,7851:4262630,4025873:0,0,0 -] -!22769 +] +[1,7876:3078558,4812305:0,0,0 +(1,7876:3078558,49800853:0,16384,2228224 +g1,7876:29030814,49800853 +g1,7876:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7876:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7876:37855564,49800853:1179648,16384,0 +) +) +k1,7876:3078556,49800853:-34777008 +) +] +g1,7876:6630773,4812305 +k1,7876:24502442,4812305:16676292 +g1,7876:25889183,4812305 +g1,7876:26537989,4812305 +g1,7876:29852144,4812305 +) +) +] +[1,7876:6630773,45706769:25952256,40108032,0 +(1,7876:6630773,45706769:25952256,40108032,0 +(1,7876:6630773,45706769:0,0,0 +g1,7876:6630773,45706769 +) +[1,7876:6630773,45706769:25952256,40108032,0 +(1,7812:6630773,6254097:25952256,564462,139132 +(1,7812:6630773,6254097:2450326,534184,12975 +g1,7812:6630773,6254097 +g1,7812:9081099,6254097 +) +g1,7812:12446963,6254097 +g1,7812:13416569,6254097 +g1,7812:17776549,6254097 +k1,7812:32583029,6254097:11452872 +g1,7812:32583029,6254097 +) +(1,7820:6630773,7488801:25952256,513147,126483 +k1,7818:8550060,7488801:136052 +k1,7818:9041973,7488801:136053 +k1,7818:10990751,7488801:136052 +k1,7818:13114511,7488801:136053 +k1,7818:15918534,7488801:136052 +k1,7818:17521283,7488801:136053 +k1,7818:21423034,7488801:136052 +k1,7818:23783379,7488801:136053 +k1,7818:25110876,7488801:136052 +k1,7818:28817330,7488801:136053 +k1,7818:32583029,7488801:0 +) +(1,7820:6630773,8330289:25952256,513147,126483 +k1,7818:9781088,8330289:135004 +k1,7818:10784444,8330289:135004 +k1,7818:12256382,8330289:135004 +k1,7818:13491081,8330289:135005 +k1,7818:14084182,8330289:135004 +k1,7818:16750842,8330289:135004 +k1,7818:17501884,8330289:135004 +k1,7818:21055246,8330289:135004 +k1,7818:24668246,8330289:135004 +k1,7818:25999938,8330289:135005 +k1,7818:28678394,8330289:135004 +k1,7818:30897443,8330289:135004 +k1,7818:31563944,8330289:135004 +k1,7818:32583029,8330289:0 +) +(1,7820:6630773,9171777:25952256,513147,126483 +k1,7818:8426677,9171777:142431 +k1,7818:9516760,9171777:142432 +k1,7818:10425307,9171777:142431 +k1,7818:12380465,9171777:142432 +k1,7818:14840904,9171777:142431 +k1,7818:16348450,9171777:142431 +k1,7818:17177044,9171777:142432 +k1,7818:20737178,9171777:142431 +k1,7818:21495648,9171777:142432 +k1,7818:24392557,9171777:142431 +k1,7818:27317648,9171777:142432 +k1,7818:29008695,9171777:142431 +k1,7818:32583029,9171777:0 +) +(1,7820:6630773,10013265:25952256,513147,126483 +k1,7818:7817781,10013265:167923 +k1,7818:9371791,10013265:167924 +k1,7818:10199006,10013265:167923 +k1,7818:12921522,10013265:167923 +k1,7818:13620943,10013265:167924 +k1,7818:14807951,10013265:167923 +k1,7818:17054021,10013265:167923 +k1,7818:17881236,10013265:167923 +k1,7818:19068245,10013265:167924 +k1,7818:23001867,10013265:167923 +k1,7818:26599289,10013265:167923 +k1,7818:27585102,10013265:167924 +k1,7818:28772110,10013265:167923 +k1,7818:32583029,10013265:0 +) +(1,7820:6630773,10854753:25952256,513147,134348 +k1,7818:9386007,10854753:197364 +k1,7818:10602456,10854753:197364 +k1,7818:12626965,10854753:197365 +k1,7818:13633699,10854753:197364 +k1,7818:16228370,10854753:197364 +k1,7818:19087151,10854753:197364 +k1,7818:19816013,10854753:197365 +k1,7818:21881808,10854753:197364 +k1,7818:23275859,10854753:197364 +k1,7818:25065093,10854753:197364 +k1,7818:28107375,10854753:197364 +k1,7818:28964032,10854753:197365 +k1,7818:32051532,10854753:197362 +k1,7818:32583029,10854753:0 +) +(1,7820:6630773,11696241:25952256,513147,126483 +k1,7818:7402272,11696241:155461 +k1,7818:8576817,11696241:155460 +k1,7818:11563433,11696241:155461 +k1,7818:12378186,11696241:155461 +k1,7818:13552732,11696241:155461 +k1,7818:16598985,11696241:155460 +k1,7818:17945891,11696241:155461 +k1,7818:19120437,11696241:155461 +k1,7818:23721204,11696241:155460 +k1,7818:24535957,11696241:155461 +k1,7818:25710503,11696241:155461 +k1,7818:28039138,11696241:155461 +k1,7818:28853890,11696241:155460 +k1,7818:30028436,11696241:155461 +k1,7818:32583029,11696241:0 +) +(1,7820:6630773,12537729:25952256,505283,95026 +(1,7818:6837867,12537729:3527803,505283,11795 +) +g1,7818:10945663,12537729 +k1,7820:32583029,12537729:21637366 +g1,7820:32583029,12537729 +) +(1,7821:6630773,15345297:25952256,32768,229376 +(1,7821:6630773,15345297:0,32768,229376 +(1,7821:6630773,15345297:5505024,32768,229376 +r1,7821:12135797,15345297:5505024,262144,229376 +) +k1,7821:6630773,15345297:-5505024 +) +(1,7821:6630773,15345297:25952256,32768,0 +r1,7821:32583029,15345297:25952256,32768,0 +) +) +(1,7821:6630773,16949625:25952256,606339,14155 +(1,7821:6630773,16949625:1974731,575668,0 +g1,7821:6630773,16949625 +g1,7821:8605504,16949625 +) +g1,7821:13567104,16949625 +g1,7821:16080541,16949625 +k1,7821:32583029,16949625:13634370 +g1,7821:32583029,16949625 +) +(1,7827:6630773,18184329:25952256,513147,126483 +k1,7825:8745474,18184329:142067 +k1,7825:11205550,18184329:142068 +k1,7825:13063350,18184329:142067 +k1,7825:14224503,18184329:142068 +k1,7825:18106054,18184329:142067 +k1,7825:18907414,18184329:142068 +k1,7825:21894399,18184329:142067 +k1,7825:25575411,18184329:142068 +k1,7825:28785218,18184329:142067 +k1,7825:32583029,18184329:0 +) +(1,7827:6630773,19025817:25952256,513147,122846 +k1,7825:8631240,19025817:187741 +k1,7825:11310661,19025817:187742 +k1,7825:13210858,19025817:187741 +k1,7825:14792550,19025817:187741 +k1,7825:17675788,19025817:187742 +(1,7825:17675788,19025817:0,452978,122846 +r1,7825:19440901,19025817:1765113,575824,122846 +k1,7825:17675788,19025817:-1765113 +) +(1,7825:17675788,19025817:1765113,452978,122846 +k1,7825:17675788,19025817:3277 +h1,7825:19437624,19025817:0,411205,112570 +) +k1,7825:19628642,19025817:187741 +k1,7825:20807943,19025817:187741 +k1,7825:22645882,19025817:187742 +k1,7825:25308262,19025817:187741 +k1,7825:26687448,19025817:187741 +k1,7825:28556844,19025817:187742 +k1,7825:29763670,19025817:187741 +k1,7825:32583029,19025817:0 +) +(1,7827:6630773,19867305:25952256,513147,126483 +k1,7825:10707627,19867305:295427 +k1,7825:11654482,19867305:295427 +k1,7825:12697675,19867305:295427 +k1,7825:15581774,19867305:295427 +k1,7825:16563363,19867305:295427 +k1,7825:18137397,19867305:295427 +k1,7825:19118986,19867305:295427 +k1,7825:20433497,19867305:295426 +k1,7825:21942651,19867305:295427 +k1,7825:25107244,19867305:295427 +k1,7826:26444693,19867305:295427 +k1,7826:27759205,19867305:295427 +k1,7826:30609225,19867305:295427 +k1,7826:31563944,19867305:295427 +k1,7827:32583029,19867305:0 +) +(1,7827:6630773,20708793:25952256,505283,134348 +(1,7826:6630773,20708793:0,414482,115847 +r1,7826:10506157,20708793:3875384,530329,115847 +k1,7826:6630773,20708793:-3875384 +) +(1,7826:6630773,20708793:3875384,414482,115847 +k1,7826:6630773,20708793:3277 +h1,7826:10502880,20708793:0,411205,112570 +) +k1,7826:10697611,20708793:191454 +k1,7826:12278428,20708793:191454 +k1,7826:13404426,20708793:191455 +k1,7826:15451204,20708793:191454 +k1,7826:18128439,20708793:191454 +h1,7826:19671157,20708793:0,0,0 +k1,7826:19862611,20708793:191454 +k1,7826:20863436,20708793:191455 +k1,7826:22553043,20708793:191454 +h1,7826:23748420,20708793:0,0,0 +k1,7826:24320638,20708793:191454 +k1,7826:25531177,20708793:191454 +k1,7826:28078651,20708793:191455 +k1,7826:32051532,20708793:191454 +k1,7826:32583029,20708793:0 +) +(1,7827:6630773,21550281:25952256,513147,134348 +k1,7826:7931616,21550281:234572 +k1,7826:8522048,21550281:234572 +k1,7826:10340625,21550281:234572 +k1,7826:15264953,21550281:234572 +k1,7826:16185687,21550281:234572 +k1,7826:18234951,21550281:234572 +k1,7826:19858887,21550281:234573 +k1,7826:22710312,21550281:234572 +k1,7826:24512505,21550281:234572 +k1,7826:25378844,21550281:234572 +k1,7826:26994260,21550281:234572 +k1,7826:28436005,21550281:234572 +k1,7826:30713334,21550281:234572 +k1,7826:31563944,21550281:234572 +k1,7826:32583029,21550281:0 +) +(1,7827:6630773,22391769:25952256,505283,126483 +g1,7826:12358619,22391769 +g1,7826:13835145,22391769 +k1,7827:32583029,22391769:16718889 +g1,7827:32583029,22391769 +) +(1,7829:6630773,23233257:25952256,505283,126483 +h1,7828:6630773,23233257:983040,0,0 +k1,7828:8949327,23233257:293492 +k1,7828:11057511,23233257:293492 +k1,7828:12914037,23233257:293492 +k1,7828:14946199,23233257:293492 +k1,7828:17669766,23233257:293492 +k1,7828:18319119,23233257:293493 +k1,7828:20509878,23233257:293492 +k1,7828:24363941,23233257:293492 +k1,7828:25285268,23233257:293492 +k1,7828:26597845,23233257:293492 +k1,7828:29552754,23233257:293492 +k1,7828:31714677,23233257:293492 +k1,7828:32583029,23233257:0 +) +(1,7829:6630773,24074745:25952256,513147,126483 +k1,7828:7545328,24074745:227082 +k1,7828:8791495,24074745:227082 +k1,7828:10672051,24074745:227083 +k1,7828:12886840,24074745:227082 +k1,7828:13800084,24074745:227082 +k1,7828:16056161,24074745:227082 +k1,7828:17355412,24074745:227082 +k1,7828:18450846,24074745:227082 +k1,7828:21076547,24074745:227083 +k1,7828:21659489,24074745:227082 +k1,7828:26247337,24074745:227082 +k1,7828:30255846,24074745:227082 +k1,7828:32583029,24074745:0 +) +(1,7829:6630773,24916233:25952256,513147,134348 +k1,7828:7569950,24916233:279885 +k1,7828:8868921,24916233:279886 +k1,7828:11678496,24916233:279885 +k1,7828:12586216,24916233:279885 +k1,7828:15532107,24916233:279886 +k1,7828:16463420,24916233:279885 +k1,7828:17762391,24916233:279886 +k1,7828:20029983,24916233:279885 +k1,7828:22853320,24916233:279885 +k1,7828:24001558,24916233:279886 +k1,7828:25811709,24916233:279885 +k1,7828:26743022,24916233:279885 +k1,7828:28460113,24916233:279886 +k1,7828:29510701,24916233:279885 +k1,7828:32583029,24916233:0 +) +(1,7829:6630773,25757721:25952256,513147,134348 +k1,7828:9345987,25757721:156688 +(1,7828:9345987,25757721:0,459977,115847 +r1,7828:11462812,25757721:2116825,575824,115847 +k1,7828:9345987,25757721:-2116825 +) +(1,7828:9345987,25757721:2116825,459977,115847 +k1,7828:9345987,25757721:3277 +h1,7828:11459535,25757721:0,411205,112570 +) +k1,7828:11619500,25757721:156688 +k1,7828:13699015,25757721:156689 +k1,7828:14874788,25757721:156688 +k1,7828:16638419,25757721:156688 +k1,7828:20576534,25757721:156688 +k1,7828:21384650,25757721:156688 +k1,7828:22289104,25757721:156688 +k1,7828:26939597,25757721:156689 +k1,7828:29361865,25757721:156688 +k1,7828:30466204,25757721:156688 +(1,7828:30466204,25757721:0,459977,115847 +r1,7828:32583029,25757721:2116825,575824,115847 +k1,7828:30466204,25757721:-2116825 +) +(1,7828:30466204,25757721:2116825,459977,115847 +k1,7828:30466204,25757721:3277 +h1,7828:32579752,25757721:0,411205,112570 +) +k1,7828:32583029,25757721:0 +) +(1,7829:6630773,26599209:25952256,505283,122846 +g1,7828:7361499,26599209 +(1,7828:7361499,26599209:0,452978,122846 +r1,7828:10181748,26599209:2820249,575824,122846 +k1,7828:7361499,26599209:-2820249 +) +(1,7828:7361499,26599209:2820249,452978,122846 +k1,7828:7361499,26599209:3277 +h1,7828:10178471,26599209:0,411205,112570 +) +g1,7828:10380977,26599209 +g1,7828:11263091,26599209 +g1,7828:13818339,26599209 +k1,7829:32583029,26599209:14809592 +g1,7829:32583029,26599209 +) +v1,7831:6630773,27686576:0,393216,0 +(1,7850:6630773,36727523:25952256,9434163,196608 +g1,7850:6630773,36727523 +g1,7850:6630773,36727523 +g1,7850:6434165,36727523 +(1,7850:6434165,36727523:0,9434163,196608 +r1,7850:32779637,36727523:26345472,9630771,196608 +k1,7850:6434165,36727523:-26345472 +) +(1,7850:6434165,36727523:26345472,9434163,196608 +[1,7850:6630773,36727523:25952256,9237555,0 +(1,7833:6630773,27900486:25952256,410518,107478 +(1,7832:6630773,27900486:0,0,0 +g1,7832:6630773,27900486 +g1,7832:6630773,27900486 +g1,7832:6303093,27900486 +(1,7832:6303093,27900486:0,0,0 +) +g1,7832:6630773,27900486 +) +g1,7833:8211502,27900486 +g1,7833:9159940,27900486 +g1,7833:12321397,27900486 +g1,7833:12953689,27900486 +g1,7833:15166709,27900486 +g1,7833:16747438,27900486 +g1,7833:17379730,27900486 +g1,7833:21805770,27900486 +g1,7833:24018790,27900486 +g1,7833:24651082,27900486 +h1,7833:28760976,27900486:0,0,0 +k1,7833:32583029,27900486:3822053 +g1,7833:32583029,27900486 +) +(1,7834:6630773,28566664:25952256,410518,76021 +h1,7834:6630773,28566664:0,0,0 +k1,7834:6630773,28566664:0 +h1,7834:10108375,28566664:0,0,0 +k1,7834:32583029,28566664:22474654 +g1,7834:32583029,28566664 +) +(1,7849:6630773,29298378:25952256,410518,101187 +(1,7836:6630773,29298378:0,0,0 +g1,7836:6630773,29298378 +g1,7836:6630773,29298378 +g1,7836:6303093,29298378 +(1,7836:6303093,29298378:0,0,0 +) +g1,7836:6630773,29298378 +) +g1,7849:7579210,29298378 +g1,7849:10424521,29298378 +g1,7849:11372958,29298378 +g1,7849:14218269,29298378 +h1,7849:15798997,29298378:0,0,0 +k1,7849:32583029,29298378:16784032 +g1,7849:32583029,29298378 +) +(1,7849:6630773,29964556:25952256,379060,0 +h1,7849:6630773,29964556:0,0,0 +h1,7849:7263064,29964556:0,0,0 +k1,7849:32583028,29964556:25319964 +g1,7849:32583028,29964556 +) +(1,7849:6630773,30630734:25952256,404226,107478 +h1,7849:6630773,30630734:0,0,0 +g1,7849:7579210,30630734 +g1,7849:9792230,30630734 +g1,7849:14218270,30630734 +g1,7849:16115144,30630734 +h1,7849:17063581,30630734:0,0,0 +k1,7849:32583029,30630734:15519448 +g1,7849:32583029,30630734 +) +(1,7849:6630773,31296912:25952256,379060,0 +h1,7849:6630773,31296912:0,0,0 +h1,7849:7263064,31296912:0,0,0 +k1,7849:32583028,31296912:25319964 +g1,7849:32583028,31296912 +) +(1,7849:6630773,31963090:25952256,379060,101187 +h1,7849:6630773,31963090:0,0,0 +g1,7849:7579210,31963090 +g1,7849:10740667,31963090 +h1,7849:12321395,31963090:0,0,0 +k1,7849:32583029,31963090:20261634 +g1,7849:32583029,31963090 +) +(1,7849:6630773,32629268:25952256,379060,0 +h1,7849:6630773,32629268:0,0,0 +h1,7849:7263064,32629268:0,0,0 +k1,7849:32583028,32629268:25319964 +g1,7849:32583028,32629268 +) +(1,7849:6630773,33295446:25952256,410518,101187 +h1,7849:6630773,33295446:0,0,0 +g1,7849:7579210,33295446 +g1,7849:9476084,33295446 +g1,7849:11372958,33295446 +g1,7849:15482852,33295446 +g1,7849:17695872,33295446 +g1,7849:18644309,33295446 +h1,7849:20225037,33295446:0,0,0 +k1,7849:32583029,33295446:12357992 +g1,7849:32583029,33295446 +) +(1,7849:6630773,33961624:25952256,379060,0 +h1,7849:6630773,33961624:0,0,0 +h1,7849:7263064,33961624:0,0,0 +k1,7849:32583028,33961624:25319964 +g1,7849:32583028,33961624 +) +(1,7849:6630773,34627802:25952256,379060,0 +h1,7849:6630773,34627802:0,0,0 +h1,7849:7263064,34627802:0,0,0 +k1,7849:32583028,34627802:25319964 +g1,7849:32583028,34627802 +) +(1,7849:6630773,35293980:25952256,410518,6290 +h1,7849:6630773,35293980:0,0,0 +g1,7849:7579210,35293980 +g1,7849:7895356,35293980 +g1,7849:8211502,35293980 +g1,7849:8527648,35293980 +g1,7849:8843794,35293980 +g1,7849:9159940,35293980 +g1,7849:9476086,35293980 +g1,7849:10424523,35293980 +g1,7849:13269834,35293980 +g1,7849:15482854,35293980 +g1,7849:16431291,35293980 +g1,7849:18644311,35293980 +h1,7849:19592748,35293980:0,0,0 +k1,7849:32583029,35293980:12990281 +g1,7849:32583029,35293980 +) +(1,7849:6630773,35960158:25952256,388497,9436 +h1,7849:6630773,35960158:0,0,0 +g1,7849:7579210,35960158 +g1,7849:9159939,35960158 +g1,7849:9476085,35960158 +g1,7849:9792231,35960158 +g1,7849:10108377,35960158 +g1,7849:10424523,35960158 +g1,7849:10740669,35960158 +g1,7849:11056815,35960158 +g1,7849:11372961,35960158 +g1,7849:11689107,35960158 +g1,7849:12005253,35960158 +g1,7849:12321399,35960158 +g1,7849:12637545,35960158 +g1,7849:12953691,35960158 +g1,7849:13269837,35960158 +g1,7849:13585983,35960158 +g1,7849:13902129,35960158 +g1,7849:14218275,35960158 +g1,7849:14534421,35960158 +g1,7849:14850567,35960158 +g1,7849:15166713,35960158 +g1,7849:15482859,35960158 +g1,7849:16431296,35960158 +g1,7849:16747442,35960158 +g1,7849:17063588,35960158 +g1,7849:17379734,35960158 +g1,7849:17695880,35960158 +h1,7849:19592754,35960158:0,0,0 +k1,7849:32583029,35960158:12990275 +g1,7849:32583029,35960158 +) +(1,7849:6630773,36626336:25952256,388497,101187 +h1,7849:6630773,36626336:0,0,0 +g1,7849:7579210,36626336 +g1,7849:9476084,36626336 +g1,7849:9792230,36626336 +g1,7849:10424522,36626336 +g1,7849:10740668,36626336 +g1,7849:11056814,36626336 +g1,7849:13269834,36626336 +g1,7849:13585980,36626336 +g1,7849:13902126,36626336 +g1,7849:14218272,36626336 +g1,7849:14534418,36626336 +g1,7849:14850564,36626336 +g1,7849:15166710,36626336 +g1,7849:15482856,36626336 +g1,7849:16431293,36626336 +g1,7849:16747439,36626336 +g1,7849:17063585,36626336 +g1,7849:17379731,36626336 +g1,7849:17695877,36626336 +g1,7849:18012023,36626336 +h1,7849:19592751,36626336:0,0,0 +k1,7849:32583029,36626336:12990278 +g1,7849:32583029,36626336 +) +] +) +g1,7850:32583029,36727523 +g1,7850:6630773,36727523 +g1,7850:6630773,36727523 +g1,7850:32583029,36727523 +g1,7850:32583029,36727523 +) +h1,7850:6630773,36924131:0,0,0 +(1,7854:6630773,38186807:25952256,513147,126483 +h1,7853:6630773,38186807:983040,0,0 +k1,7853:8963974,38186807:153474 +k1,7853:11765758,38186807:153474 +k1,7853:13486853,38186807:153474 +k1,7853:14659412,38186807:153474 +(1,7853:14659412,38186807:0,452978,115847 +r1,7853:17127949,38186807:2468537,568825,115847 +k1,7853:14659412,38186807:-2468537 +) +(1,7853:14659412,38186807:2468537,452978,115847 +k1,7853:14659412,38186807:3277 +h1,7853:17124672,38186807:0,411205,112570 +) +k1,7853:17281424,38186807:153475 +k1,7853:19889221,38186807:153474 +k1,7853:20990346,38186807:153474 +k1,7853:22552143,38186807:153428 +k1,7853:23723392,38186807:153475 +k1,7853:24977871,38186807:153474 +k1,7853:26823485,38186807:153474 +k1,7853:30493621,38186807:153474 +k1,7853:31298523,38186807:153474 +k1,7853:32583029,38186807:0 +) +(1,7854:6630773,39028295:25952256,513147,134348 +k1,7853:7750685,39028295:172261 +k1,7853:8851564,39028295:172234 +k1,7853:10215269,39028295:172260 +k1,7853:11147748,39028295:172261 +k1,7853:13759259,39028295:172261 +k1,7853:14740890,39028295:172261 +k1,7853:18650668,39028295:172260 +k1,7853:20014374,39028295:172261 +k1,7853:20718132,39028295:172261 +k1,7853:24272706,39028295:172261 +k1,7853:25131128,39028295:172260 +k1,7853:25659249,39028295:172261 +k1,7853:30557967,39028295:172261 +k1,7853:32583029,39028295:0 +) +(1,7854:6630773,39869783:25952256,513147,134348 +k1,7853:7394973,39869783:232703 +k1,7853:10340211,39869783:232703 +k1,7853:13934911,39869783:232703 +k1,7853:14976984,39869783:232703 +k1,7853:16228772,39869783:232703 +k1,7853:21089628,39869783:232703 +k1,7853:21981623,39869783:232703 +k1,7853:23233411,39869783:232703 +k1,7853:25453821,39869783:232703 +k1,7853:26877969,39869783:232703 +k1,7853:28673706,39869783:232703 +k1,7853:29859958,39869783:232703 +k1,7853:31490544,39869783:232703 +k1,7854:32583029,39869783:0 +) +(1,7854:6630773,40711271:25952256,473825,134348 +(1,7853:6630773,40711271:0,452978,115847 +r1,7853:7692462,40711271:1061689,568825,115847 +k1,7853:6630773,40711271:-1061689 +) +(1,7853:6630773,40711271:1061689,452978,115847 +k1,7853:6630773,40711271:3277 +h1,7853:7689185,40711271:0,411205,112570 +) +g1,7853:7891691,40711271 +g1,7853:8777082,40711271 +g1,7853:9747014,40711271 +g1,7853:13018571,40711271 +g1,7853:13869228,40711271 +g1,7853:16457900,40711271 +g1,7853:17427832,40711271 +$1,7853:17427832,40711271 +$1,7853:17872821,40711271 +k1,7854:32583029,40711271:13132101 +g1,7854:32583029,40711271 +) +v1,7856:6630773,41798638:0,393216,0 +(1,7876:6630773,45510161:25952256,4104739,196608 +g1,7876:6630773,45510161 +g1,7876:6630773,45510161 +g1,7876:6434165,45510161 +(1,7876:6434165,45510161:0,4104739,196608 +r1,7876:32779637,45510161:26345472,4301347,196608 +k1,7876:6434165,45510161:-26345472 +) +(1,7876:6434165,45510161:26345472,4104739,196608 +[1,7876:6630773,45510161:25952256,3908131,0 +(1,7858:6630773,42012548:25952256,410518,82312 +(1,7857:6630773,42012548:0,0,0 +g1,7857:6630773,42012548 +g1,7857:6630773,42012548 +g1,7857:6303093,42012548 +(1,7857:6303093,42012548:0,0,0 +) +g1,7857:6630773,42012548 +) +k1,7858:6630773,42012548:0 +g1,7858:10424521,42012548 +g1,7858:12005250,42012548 +g1,7858:12637542,42012548 +h1,7858:13902125,42012548:0,0,0 +k1,7858:32583029,42012548:18680904 +g1,7858:32583029,42012548 +) +(1,7875:6630773,42744262:25952256,410518,101187 +(1,7860:6630773,42744262:0,0,0 +g1,7860:6630773,42744262 +g1,7860:6630773,42744262 +g1,7860:6303093,42744262 +(1,7860:6303093,42744262:0,0,0 +) +g1,7860:6630773,42744262 +) +g1,7875:7579210,42744262 +g1,7875:10424521,42744262 +g1,7875:11372958,42744262 +g1,7875:14218269,42744262 +h1,7875:15798997,42744262:0,0,0 +k1,7875:32583029,42744262:16784032 +g1,7875:32583029,42744262 +) +(1,7875:6630773,43410440:25952256,379060,0 +h1,7875:6630773,43410440:0,0,0 +h1,7875:7263064,43410440:0,0,0 +k1,7875:32583028,43410440:25319964 +g1,7875:32583028,43410440 +) +(1,7875:6630773,44076618:25952256,404226,107478 +h1,7875:6630773,44076618:0,0,0 +g1,7875:7579210,44076618 +g1,7875:9792230,44076618 +g1,7875:14218270,44076618 +g1,7875:16115144,44076618 +h1,7875:17063581,44076618:0,0,0 +k1,7875:32583029,44076618:15519448 +g1,7875:32583029,44076618 +) +(1,7875:6630773,44742796:25952256,379060,0 +h1,7875:6630773,44742796:0,0,0 +h1,7875:7263064,44742796:0,0,0 +k1,7875:32583028,44742796:25319964 +g1,7875:32583028,44742796 +) +(1,7875:6630773,45408974:25952256,379060,101187 +h1,7875:6630773,45408974:0,0,0 +g1,7875:7579210,45408974 +g1,7875:10740667,45408974 +h1,7875:12321395,45408974:0,0,0 +k1,7875:32583029,45408974:20261634 +g1,7875:32583029,45408974 +) +] +) +g1,7876:32583029,45510161 +g1,7876:6630773,45510161 +g1,7876:6630773,45510161 +g1,7876:32583029,45510161 +g1,7876:32583029,45510161 +) +] +(1,7876:32583029,45706769:0,0,0 +g1,7876:32583029,45706769 +) +) +] +(1,7876:6630773,47279633:25952256,0,0 +h1,7876:6630773,47279633:25952256,0,0 +) +] +h1,7876:4262630,4025873:0,0,0 +] +!23406 }147 -Input:1094:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:1090:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {148 -[1,7946:4262630,47279633:28320399,43253760,0 -(1,7946:4262630,4025873:0,0,0 -[1,7946:-473657,4025873:25952256,0,0 -(1,7946:-473657,-710414:25952256,0,0 -h1,7946:-473657,-710414:0,0,0 -(1,7946:-473657,-710414:0,0,0 -(1,7946:-473657,-710414:0,0,0 -g1,7946:-473657,-710414 -(1,7946:-473657,-710414:65781,0,65781 -g1,7946:-407876,-710414 -[1,7946:-407876,-644633:0,0,0 +[1,7951:4262630,47279633:28320399,43253760,0 +(1,7951:4262630,4025873:0,0,0 +[1,7951:-473657,4025873:25952256,0,0 +(1,7951:-473657,-710414:25952256,0,0 +h1,7951:-473657,-710414:0,0,0 +(1,7951:-473657,-710414:0,0,0 +(1,7951:-473657,-710414:0,0,0 +g1,7951:-473657,-710414 +(1,7951:-473657,-710414:65781,0,65781 +g1,7951:-407876,-710414 +[1,7951:-407876,-644633:0,0,0 ] ) -k1,7946:-473657,-710414:-65781 +k1,7951:-473657,-710414:-65781 ) ) -k1,7946:25478599,-710414:25952256 -g1,7946:25478599,-710414 +k1,7951:25478599,-710414:25952256 +g1,7951:25478599,-710414 ) ] ) -[1,7946:6630773,47279633:25952256,43253760,0 -[1,7946:6630773,4812305:25952256,786432,0 -(1,7946:6630773,4812305:25952256,505283,11795 -(1,7946:6630773,4812305:25952256,505283,11795 -g1,7946:3078558,4812305 -[1,7946:3078558,4812305:0,0,0 -(1,7946:3078558,2439708:0,1703936,0 -k1,7946:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7946:2537886,2439708:1179648,16384,0 +[1,7951:6630773,47279633:25952256,43253760,0 +[1,7951:6630773,4812305:25952256,786432,0 +(1,7951:6630773,4812305:25952256,505283,11795 +(1,7951:6630773,4812305:25952256,505283,11795 +g1,7951:3078558,4812305 +[1,7951:3078558,4812305:0,0,0 +(1,7951:3078558,2439708:0,1703936,0 +k1,7951:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7951:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7946:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7951:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7946:3078558,4812305:0,0,0 -(1,7946:3078558,2439708:0,1703936,0 -g1,7946:29030814,2439708 -g1,7946:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7946:36151628,1915420:16384,1179648,0 +[1,7951:3078558,4812305:0,0,0 +(1,7951:3078558,2439708:0,1703936,0 +g1,7951:29030814,2439708 +g1,7951:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7951:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7946:37855564,2439708:1179648,16384,0 -) +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7951:37855564,2439708:1179648,16384,0 ) -k1,7946:3078556,2439708:-34777008 ) -] -[1,7946:3078558,4812305:0,0,0 -(1,7946:3078558,49800853:0,16384,2228224 -k1,7946:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7946:2537886,49800853:1179648,16384,0 -) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7946:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,7951:3078556,2439708:-34777008 ) ] +[1,7951:3078558,4812305:0,0,0 +(1,7951:3078558,49800853:0,16384,2228224 +k1,7951:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7951:2537886,49800853:1179648,16384,0 ) +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7951:3078558,51504789:16384,1179648,0 ) -) -] -[1,7946:3078558,4812305:0,0,0 -(1,7946:3078558,49800853:0,16384,2228224 -g1,7946:29030814,49800853 -g1,7946:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7946:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7946:37855564,49800853:1179648,16384,0 ) ) -k1,7946:3078556,49800853:-34777008 -) ] -g1,7946:6630773,4812305 -g1,7946:6630773,4812305 -g1,7946:10592424,4812305 -g1,7946:12629938,4812305 -g1,7946:15030521,4812305 -k1,7946:31387652,4812305:16357131 -) -) -] -[1,7946:6630773,45706769:25952256,40108032,0 -(1,7946:6630773,45706769:25952256,40108032,0 -(1,7946:6630773,45706769:0,0,0 -g1,7946:6630773,45706769 -) -[1,7946:6630773,45706769:25952256,40108032,0 -(1,7849:6630773,6254097:25952256,513147,134348 -k1,7848:7394973,6254097:232703 -k1,7848:10340211,6254097:232703 -k1,7848:13934911,6254097:232703 -k1,7848:14976984,6254097:232703 -k1,7848:16228772,6254097:232703 -k1,7848:21089628,6254097:232703 -k1,7848:21981623,6254097:232703 -k1,7848:23233411,6254097:232703 -k1,7848:25453821,6254097:232703 -k1,7848:26877969,6254097:232703 -k1,7848:28673706,6254097:232703 -k1,7848:29859958,6254097:232703 -k1,7848:31490544,6254097:232703 -k1,7849:32583029,6254097:0 -) -(1,7849:6630773,7095585:25952256,473825,134348 -(1,7848:6630773,7095585:0,452978,115847 -r1,7848:7692462,7095585:1061689,568825,115847 -k1,7848:6630773,7095585:-1061689 -) -(1,7848:6630773,7095585:1061689,452978,115847 -k1,7848:6630773,7095585:3277 -h1,7848:7689185,7095585:0,411205,112570 -) -g1,7848:7891691,7095585 -g1,7848:8777082,7095585 -g1,7848:9747014,7095585 -g1,7848:13018571,7095585 -g1,7848:13869228,7095585 -g1,7848:16457900,7095585 -g1,7848:17427832,7095585 -$1,7848:17427832,7095585 -$1,7848:17872821,7095585 -k1,7849:32583029,7095585:13132101 -g1,7849:32583029,7095585 -) -v1,7851:6630773,8286051:0,393216,0 -(1,7871:6630773,17999467:25952256,10106632,196608 -g1,7871:6630773,17999467 -g1,7871:6630773,17999467 -g1,7871:6434165,17999467 -(1,7871:6434165,17999467:0,10106632,196608 -r1,7871:32779637,17999467:26345472,10303240,196608 -k1,7871:6434165,17999467:-26345472 -) -(1,7871:6434165,17999467:26345472,10106632,196608 -[1,7871:6630773,17999467:25952256,9910024,0 -(1,7853:6630773,8499961:25952256,410518,82312 -(1,7852:6630773,8499961:0,0,0 -g1,7852:6630773,8499961 -g1,7852:6630773,8499961 -g1,7852:6303093,8499961 -(1,7852:6303093,8499961:0,0,0 -) -g1,7852:6630773,8499961 -) -k1,7853:6630773,8499961:0 -g1,7853:10424521,8499961 -g1,7853:12005250,8499961 -g1,7853:12637542,8499961 -h1,7853:13902125,8499961:0,0,0 -k1,7853:32583029,8499961:18680904 -g1,7853:32583029,8499961 -) -(1,7870:6630773,9231675:25952256,410518,101187 -(1,7855:6630773,9231675:0,0,0 -g1,7855:6630773,9231675 -g1,7855:6630773,9231675 -g1,7855:6303093,9231675 -(1,7855:6303093,9231675:0,0,0 -) -g1,7855:6630773,9231675 -) -g1,7870:7579210,9231675 -g1,7870:10424521,9231675 -g1,7870:11372958,9231675 -g1,7870:14218269,9231675 -h1,7870:15798997,9231675:0,0,0 -k1,7870:32583029,9231675:16784032 -g1,7870:32583029,9231675 -) -(1,7870:6630773,9897853:25952256,379060,0 -h1,7870:6630773,9897853:0,0,0 -h1,7870:7263064,9897853:0,0,0 -k1,7870:32583028,9897853:25319964 -g1,7870:32583028,9897853 -) -(1,7870:6630773,10564031:25952256,404226,107478 -h1,7870:6630773,10564031:0,0,0 -g1,7870:7579210,10564031 -g1,7870:9792230,10564031 -g1,7870:14218270,10564031 -g1,7870:16115144,10564031 -h1,7870:17063581,10564031:0,0,0 -k1,7870:32583029,10564031:15519448 -g1,7870:32583029,10564031 -) -(1,7870:6630773,11230209:25952256,379060,0 -h1,7870:6630773,11230209:0,0,0 -h1,7870:7263064,11230209:0,0,0 -k1,7870:32583028,11230209:25319964 -g1,7870:32583028,11230209 -) -(1,7870:6630773,11896387:25952256,379060,101187 -h1,7870:6630773,11896387:0,0,0 -g1,7870:7579210,11896387 -g1,7870:10740667,11896387 -h1,7870:12321395,11896387:0,0,0 -k1,7870:32583029,11896387:20261634 -g1,7870:32583029,11896387 -) -(1,7870:6630773,12562565:25952256,379060,0 -h1,7870:6630773,12562565:0,0,0 -h1,7870:7263064,12562565:0,0,0 -k1,7870:32583028,12562565:25319964 -g1,7870:32583028,12562565 -) -(1,7870:6630773,13228743:25952256,410518,101187 -h1,7870:6630773,13228743:0,0,0 -g1,7870:7579210,13228743 -g1,7870:9476084,13228743 -g1,7870:11372958,13228743 -g1,7870:15482852,13228743 -g1,7870:17695872,13228743 -g1,7870:18644309,13228743 -h1,7870:20225037,13228743:0,0,0 -k1,7870:32583029,13228743:12357992 -g1,7870:32583029,13228743 -) -(1,7870:6630773,13894921:25952256,379060,0 -h1,7870:6630773,13894921:0,0,0 -h1,7870:7263064,13894921:0,0,0 -k1,7870:32583028,13894921:25319964 -g1,7870:32583028,13894921 -) -(1,7870:6630773,14561099:25952256,379060,0 -h1,7870:6630773,14561099:0,0,0 -h1,7870:7263064,14561099:0,0,0 -k1,7870:32583028,14561099:25319964 -g1,7870:32583028,14561099 -) -(1,7870:6630773,15227277:25952256,410518,76021 -h1,7870:6630773,15227277:0,0,0 -g1,7870:7579210,15227277 -g1,7870:7895356,15227277 -g1,7870:8211502,15227277 -g1,7870:8527648,15227277 -g1,7870:8843794,15227277 -g1,7870:9159940,15227277 -g1,7870:9476086,15227277 -g1,7870:10424523,15227277 -g1,7870:13269834,15227277 -g1,7870:15482854,15227277 -g1,7870:16431291,15227277 -g1,7870:18644311,15227277 -g1,7870:19908894,15227277 -g1,7870:20225040,15227277 -g1,7870:20541186,15227277 -g1,7870:20857332,15227277 -g1,7870:21173478,15227277 -g1,7870:21489624,15227277 -g1,7870:22121916,15227277 -g1,7870:22438062,15227277 -g1,7870:22754208,15227277 -g1,7870:23070354,15227277 -k1,7870:23070354,15227277:0 -h1,7870:24967228,15227277:0,0,0 -k1,7870:32583029,15227277:7615801 -g1,7870:32583029,15227277 -) -(1,7870:6630773,15893455:25952256,388497,9436 -h1,7870:6630773,15893455:0,0,0 -g1,7870:7579210,15893455 -g1,7870:9159939,15893455 -g1,7870:9476085,15893455 -g1,7870:9792231,15893455 -g1,7870:10108377,15893455 -g1,7870:10424523,15893455 -g1,7870:10740669,15893455 -g1,7870:11056815,15893455 -g1,7870:11372961,15893455 -g1,7870:11689107,15893455 -g1,7870:12005253,15893455 -g1,7870:12321399,15893455 -g1,7870:12637545,15893455 -g1,7870:12953691,15893455 -g1,7870:13269837,15893455 -g1,7870:13585983,15893455 -g1,7870:13902129,15893455 -g1,7870:14218275,15893455 -g1,7870:14534421,15893455 -g1,7870:14850567,15893455 -g1,7870:15166713,15893455 -g1,7870:15482859,15893455 -g1,7870:16431296,15893455 -g1,7870:16747442,15893455 -g1,7870:17063588,15893455 -g1,7870:17379734,15893455 -g1,7870:17695880,15893455 -h1,7870:19592754,15893455:0,0,0 -k1,7870:32583029,15893455:12990275 -g1,7870:32583029,15893455 -) -(1,7870:6630773,16559633:25952256,388497,101187 -h1,7870:6630773,16559633:0,0,0 -g1,7870:7579210,16559633 -g1,7870:9476084,16559633 -g1,7870:9792230,16559633 -g1,7870:10424522,16559633 -g1,7870:10740668,16559633 -g1,7870:11056814,16559633 -g1,7870:13269834,16559633 -g1,7870:13585980,16559633 -g1,7870:13902126,16559633 -g1,7870:14218272,16559633 -g1,7870:14534418,16559633 -g1,7870:14850564,16559633 -g1,7870:15166710,16559633 -g1,7870:15482856,16559633 -g1,7870:16431293,16559633 -g1,7870:16747439,16559633 -g1,7870:17063585,16559633 -g1,7870:17379731,16559633 -g1,7870:17695877,16559633 -g1,7870:18012023,16559633 -g1,7870:19908897,16559633 -g1,7870:22121917,16559633 -g1,7870:22754209,16559633 -g1,7870:25283375,16559633 -h1,7870:26231812,16559633:0,0,0 -k1,7870:32583029,16559633:6351217 -g1,7870:32583029,16559633 -) -(1,7870:6630773,17225811:25952256,379060,0 -h1,7870:6630773,17225811:0,0,0 -g1,7870:7579210,17225811 -k1,7870:7579210,17225811:0 -h1,7870:8527648,17225811:0,0,0 -k1,7870:32583028,17225811:24055380 -g1,7870:32583028,17225811 -) -(1,7870:6630773,17891989:25952256,410518,107478 -h1,7870:6630773,17891989:0,0,0 -g1,7870:7579210,17891989 -g1,7870:10108376,17891989 -g1,7870:12321396,17891989 -g1,7870:12637542,17891989 -g1,7870:13269834,17891989 -g1,7870:15166709,17891989 -g1,7870:17063583,17891989 -g1,7870:18644312,17891989 -g1,7870:20225041,17891989 -g1,7870:21489625,17891989 -g1,7870:23070354,17891989 -g1,7870:24334938,17891989 -g1,7870:25599521,17891989 -g1,7870:26231813,17891989 -g1,7870:26864105,17891989 -h1,7870:27180251,17891989:0,0,0 -k1,7870:32583029,17891989:5402778 -g1,7870:32583029,17891989 -) -] -) -g1,7871:32583029,17999467 -g1,7871:6630773,17999467 -g1,7871:6630773,17999467 -g1,7871:32583029,17999467 -g1,7871:32583029,17999467 -) -h1,7871:6630773,18196075:0,0,0 -(1,7875:6630773,19561851:25952256,513147,134348 -h1,7874:6630773,19561851:983040,0,0 -k1,7874:10244546,19561851:232771 -(1,7874:10244546,19561851:0,452978,115847 -r1,7874:12361371,19561851:2116825,568825,115847 -k1,7874:10244546,19561851:-2116825 -) -(1,7874:10244546,19561851:2116825,452978,115847 -k1,7874:10244546,19561851:3277 -h1,7874:12358094,19561851:0,411205,112570 -) -k1,7874:12594141,19561851:232770 -k1,7874:13513074,19561851:232771 -k1,7874:14693496,19561851:232771 -k1,7874:18939691,19561851:232770 -k1,7874:20363907,19561851:232771 -k1,7874:23547108,19561851:232770 -k1,7874:26803055,19561851:232771 -k1,7874:28817095,19561851:232771 -k1,7874:30003414,19561851:232770 -k1,7874:31896867,19561851:232771 -k1,7874:32583029,19561851:0 -) -(1,7875:6630773,20403339:25952256,513147,126483 -g1,7874:8685326,20403339 -g1,7874:9903640,20403339 -g1,7874:12614864,20403339 -g1,7874:13473385,20403339 -k1,7875:32583029,20403339:16041904 -g1,7875:32583029,20403339 -) -v1,7877:6630773,21593805:0,393216,0 -(1,7881:6630773,21908902:25952256,708313,196608 -g1,7881:6630773,21908902 -g1,7881:6630773,21908902 -g1,7881:6434165,21908902 -(1,7881:6434165,21908902:0,708313,196608 -r1,7881:32779637,21908902:26345472,904921,196608 -k1,7881:6434165,21908902:-26345472 -) -(1,7881:6434165,21908902:26345472,708313,196608 -[1,7881:6630773,21908902:25952256,511705,0 -(1,7879:6630773,21807715:25952256,410518,101187 -(1,7878:6630773,21807715:0,0,0 -g1,7878:6630773,21807715 -g1,7878:6630773,21807715 -g1,7878:6303093,21807715 -(1,7878:6303093,21807715:0,0,0 -) -g1,7878:6630773,21807715 -) -k1,7879:6630773,21807715:0 -g1,7879:10108376,21807715 -g1,7879:12005250,21807715 -g1,7879:12637542,21807715 -h1,7879:13269834,21807715:0,0,0 -k1,7879:32583030,21807715:19313196 -g1,7879:32583030,21807715 -) -] -) -g1,7881:32583029,21908902 -g1,7881:6630773,21908902 -g1,7881:6630773,21908902 -g1,7881:32583029,21908902 -g1,7881:32583029,21908902 -) -h1,7881:6630773,22105510:0,0,0 -(1,7884:6630773,36710065:25952256,14014731,0 -k1,7884:12599879,36710065:5969106 -h1,7883:12599879,36710065:0,0,0 -(1,7883:12599879,36710065:14014044,14014731,0 -(1,7883:12599879,36710065:14014766,14014766,0 -(1,7883:12599879,36710065:14014766,14014766,0 -(1,7883:12599879,36710065:0,14014766,0 -(1,7883:12599879,36710065:0,18939904,0 -(1,7883:12599879,36710065:18939904,18939904,0 -) -k1,7883:12599879,36710065:-18939904 -) -) -g1,7883:26614645,36710065 -) -) -) -g1,7884:26613923,36710065 -k1,7884:32583029,36710065:5969106 -) -(1,7892:6630773,37551553:25952256,513147,126483 -h1,7891:6630773,37551553:983040,0,0 -k1,7891:8806830,37551553:239468 -k1,7891:10150580,37551553:239468 -k1,7891:12594025,37551553:239469 -k1,7891:15595836,37551553:239468 -k1,7891:19762877,37551553:239468 -k1,7891:22770586,37551553:239468 -k1,7891:23696216,37551553:239468 -k1,7891:27025708,37551553:239469 -k1,7891:28212827,37551553:239468 -k1,7891:30265021,37551553:239468 -k1,7891:32583029,37551553:0 -) -(1,7892:6630773,38393041:25952256,505283,134348 -g1,7891:8062079,38393041 -g1,7891:10539995,38393041 -h1,7891:11510583,38393041:0,0,0 -g1,7891:11709812,38393041 -g1,7891:12718411,38393041 -g1,7891:14415793,38393041 -h1,7891:15611170,38393041:0,0,0 -k1,7892:32583029,38393041:16591095 -g1,7892:32583029,38393041 -) -v1,7894:6630773,39583507:0,393216,0 -(1,7946:6630773,45253385:25952256,6063094,196608 -g1,7946:6630773,45253385 -g1,7946:6630773,45253385 -g1,7946:6434165,45253385 -(1,7946:6434165,45253385:0,6063094,196608 -r1,7946:32779637,45253385:26345472,6259702,196608 -k1,7946:6434165,45253385:-26345472 -) -(1,7946:6434165,45253385:26345472,6063094,196608 -[1,7946:6630773,45253385:25952256,5866486,0 -(1,7896:6630773,39797417:25952256,410518,76021 -(1,7895:6630773,39797417:0,0,0 -g1,7895:6630773,39797417 -g1,7895:6630773,39797417 -g1,7895:6303093,39797417 -(1,7895:6303093,39797417:0,0,0 -) -g1,7895:6630773,39797417 -) -k1,7896:6630773,39797417:0 -h1,7896:10108375,39797417:0,0,0 -k1,7896:32583029,39797417:22474654 -g1,7896:32583029,39797417 -) -(1,7900:6630773,40529131:25952256,404226,107478 -(1,7898:6630773,40529131:0,0,0 -g1,7898:6630773,40529131 -g1,7898:6630773,40529131 -g1,7898:6303093,40529131 -(1,7898:6303093,40529131:0,0,0 -) -g1,7898:6630773,40529131 -) -g1,7900:7579210,40529131 -g1,7900:8843793,40529131 -g1,7900:10740667,40529131 -h1,7900:12005250,40529131:0,0,0 -k1,7900:32583030,40529131:20577780 -g1,7900:32583030,40529131 -) -(1,7902:6630773,41850669:25952256,410518,101187 -(1,7901:6630773,41850669:0,0,0 -g1,7901:6630773,41850669 -g1,7901:6630773,41850669 -g1,7901:6303093,41850669 -(1,7901:6303093,41850669:0,0,0 -) -g1,7901:6630773,41850669 -) -k1,7902:6630773,41850669:0 -h1,7902:10740667,41850669:0,0,0 -k1,7902:32583029,41850669:21842362 -g1,7902:32583029,41850669 -) -(1,7931:6630773,42582383:25952256,379060,0 -(1,7904:6630773,42582383:0,0,0 -g1,7904:6630773,42582383 -g1,7904:6630773,42582383 -g1,7904:6303093,42582383 -(1,7904:6303093,42582383:0,0,0 -) -g1,7904:6630773,42582383 -) -h1,7931:7263064,42582383:0,0,0 -k1,7931:32583028,42582383:25319964 -g1,7931:32583028,42582383 -) -(1,7931:6630773,43248561:25952256,404226,7863 -h1,7931:6630773,43248561:0,0,0 -g1,7931:7579210,43248561 -h1,7931:9159938,43248561:0,0,0 -k1,7931:32583030,43248561:23423092 -g1,7931:32583030,43248561 -) -(1,7931:6630773,43914739:25952256,410518,107478 -h1,7931:6630773,43914739:0,0,0 -g1,7931:7579210,43914739 -g1,7931:11372958,43914739 -g1,7931:12005250,43914739 -g1,7931:13902124,43914739 -g1,7931:14534416,43914739 -g1,7931:16747436,43914739 -g1,7931:18960456,43914739 -g1,7931:19592748,43914739 -g1,7931:24018788,43914739 -g1,7931:25599517,43914739 -g1,7931:26231809,43914739 -h1,7931:30341703,43914739:0,0,0 -k1,7931:32583029,43914739:2241326 -g1,7931:32583029,43914739 -) -(1,7931:6630773,44580917:25952256,379060,0 -h1,7931:6630773,44580917:0,0,0 -h1,7931:7263064,44580917:0,0,0 -k1,7931:32583028,44580917:25319964 -g1,7931:32583028,44580917 -) -(1,7931:6630773,45247095:25952256,404226,6290 -h1,7931:6630773,45247095:0,0,0 -g1,7931:7579210,45247095 -g1,7931:10424521,45247095 -h1,7931:13585978,45247095:0,0,0 -k1,7931:32583030,45247095:18997052 -g1,7931:32583030,45247095 -) -] -) -g1,7946:32583029,45253385 -g1,7946:6630773,45253385 -g1,7946:6630773,45253385 -g1,7946:32583029,45253385 -g1,7946:32583029,45253385 -) -] -(1,7946:32583029,45706769:0,0,0 -g1,7946:32583029,45706769 -) -) -] -(1,7946:6630773,47279633:25952256,0,0 -h1,7946:6630773,47279633:25952256,0,0 -) -] -h1,7946:4262630,4025873:0,0,0 -] -!16826 +[1,7951:3078558,4812305:0,0,0 +(1,7951:3078558,49800853:0,16384,2228224 +g1,7951:29030814,49800853 +g1,7951:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7951:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7951:37855564,49800853:1179648,16384,0 +) +) +k1,7951:3078556,49800853:-34777008 +) +] +g1,7951:6630773,4812305 +g1,7951:6630773,4812305 +g1,7951:10592424,4812305 +g1,7951:12629938,4812305 +g1,7951:15030521,4812305 +k1,7951:31387652,4812305:16357131 +) +) +] +[1,7951:6630773,45706769:25952256,40108032,0 +(1,7951:6630773,45706769:25952256,40108032,0 +(1,7951:6630773,45706769:0,0,0 +g1,7951:6630773,45706769 +) +[1,7951:6630773,45706769:25952256,40108032,0 +v1,7876:6630773,6254097:0,393216,0 +(1,7876:6630773,11873451:25952256,6012570,196608 +g1,7876:6630773,11873451 +g1,7876:6630773,11873451 +g1,7876:6434165,11873451 +(1,7876:6434165,11873451:0,6012570,196608 +r1,7876:32779637,11873451:26345472,6209178,196608 +k1,7876:6434165,11873451:-26345472 +) +(1,7876:6434165,11873451:26345472,6012570,196608 +[1,7876:6630773,11873451:25952256,5815962,0 +(1,7875:6630773,6436549:25952256,379060,0 +h1,7875:6630773,6436549:0,0,0 +h1,7875:7263064,6436549:0,0,0 +k1,7875:32583028,6436549:25319964 +g1,7875:32583028,6436549 +) +(1,7875:6630773,7102727:25952256,410518,101187 +h1,7875:6630773,7102727:0,0,0 +g1,7875:7579210,7102727 +g1,7875:9476084,7102727 +g1,7875:11372958,7102727 +g1,7875:15482852,7102727 +g1,7875:17695872,7102727 +g1,7875:18644309,7102727 +h1,7875:20225037,7102727:0,0,0 +k1,7875:32583029,7102727:12357992 +g1,7875:32583029,7102727 +) +(1,7875:6630773,7768905:25952256,379060,0 +h1,7875:6630773,7768905:0,0,0 +h1,7875:7263064,7768905:0,0,0 +k1,7875:32583028,7768905:25319964 +g1,7875:32583028,7768905 +) +(1,7875:6630773,8435083:25952256,379060,0 +h1,7875:6630773,8435083:0,0,0 +h1,7875:7263064,8435083:0,0,0 +k1,7875:32583028,8435083:25319964 +g1,7875:32583028,8435083 +) +(1,7875:6630773,9101261:25952256,410518,76021 +h1,7875:6630773,9101261:0,0,0 +g1,7875:7579210,9101261 +g1,7875:7895356,9101261 +g1,7875:8211502,9101261 +g1,7875:8527648,9101261 +g1,7875:8843794,9101261 +g1,7875:9159940,9101261 +g1,7875:9476086,9101261 +g1,7875:10424523,9101261 +g1,7875:13269834,9101261 +g1,7875:15482854,9101261 +g1,7875:16431291,9101261 +g1,7875:18644311,9101261 +g1,7875:19908894,9101261 +g1,7875:20225040,9101261 +g1,7875:20541186,9101261 +g1,7875:20857332,9101261 +g1,7875:21173478,9101261 +g1,7875:21489624,9101261 +g1,7875:22121916,9101261 +g1,7875:22438062,9101261 +g1,7875:22754208,9101261 +g1,7875:23070354,9101261 +k1,7875:23070354,9101261:0 +h1,7875:24967228,9101261:0,0,0 +k1,7875:32583029,9101261:7615801 +g1,7875:32583029,9101261 +) +(1,7875:6630773,9767439:25952256,388497,9436 +h1,7875:6630773,9767439:0,0,0 +g1,7875:7579210,9767439 +g1,7875:9159939,9767439 +g1,7875:9476085,9767439 +g1,7875:9792231,9767439 +g1,7875:10108377,9767439 +g1,7875:10424523,9767439 +g1,7875:10740669,9767439 +g1,7875:11056815,9767439 +g1,7875:11372961,9767439 +g1,7875:11689107,9767439 +g1,7875:12005253,9767439 +g1,7875:12321399,9767439 +g1,7875:12637545,9767439 +g1,7875:12953691,9767439 +g1,7875:13269837,9767439 +g1,7875:13585983,9767439 +g1,7875:13902129,9767439 +g1,7875:14218275,9767439 +g1,7875:14534421,9767439 +g1,7875:14850567,9767439 +g1,7875:15166713,9767439 +g1,7875:15482859,9767439 +g1,7875:16431296,9767439 +g1,7875:16747442,9767439 +g1,7875:17063588,9767439 +g1,7875:17379734,9767439 +g1,7875:17695880,9767439 +h1,7875:19592754,9767439:0,0,0 +k1,7875:32583029,9767439:12990275 +g1,7875:32583029,9767439 +) +(1,7875:6630773,10433617:25952256,388497,101187 +h1,7875:6630773,10433617:0,0,0 +g1,7875:7579210,10433617 +g1,7875:9476084,10433617 +g1,7875:9792230,10433617 +g1,7875:10424522,10433617 +g1,7875:10740668,10433617 +g1,7875:11056814,10433617 +g1,7875:13269834,10433617 +g1,7875:13585980,10433617 +g1,7875:13902126,10433617 +g1,7875:14218272,10433617 +g1,7875:14534418,10433617 +g1,7875:14850564,10433617 +g1,7875:15166710,10433617 +g1,7875:15482856,10433617 +g1,7875:16431293,10433617 +g1,7875:16747439,10433617 +g1,7875:17063585,10433617 +g1,7875:17379731,10433617 +g1,7875:17695877,10433617 +g1,7875:18012023,10433617 +g1,7875:19908897,10433617 +g1,7875:22121917,10433617 +g1,7875:22754209,10433617 +g1,7875:25283375,10433617 +h1,7875:26231812,10433617:0,0,0 +k1,7875:32583029,10433617:6351217 +g1,7875:32583029,10433617 +) +(1,7875:6630773,11099795:25952256,379060,0 +h1,7875:6630773,11099795:0,0,0 +g1,7875:7579210,11099795 +k1,7875:7579210,11099795:0 +h1,7875:8527648,11099795:0,0,0 +k1,7875:32583028,11099795:24055380 +g1,7875:32583028,11099795 +) +(1,7875:6630773,11765973:25952256,410518,107478 +h1,7875:6630773,11765973:0,0,0 +g1,7875:7579210,11765973 +g1,7875:10108376,11765973 +g1,7875:12321396,11765973 +g1,7875:12637542,11765973 +g1,7875:13269834,11765973 +g1,7875:15166709,11765973 +g1,7875:17063583,11765973 +g1,7875:18644312,11765973 +g1,7875:20225041,11765973 +g1,7875:21489625,11765973 +g1,7875:23070354,11765973 +g1,7875:24334938,11765973 +g1,7875:25599521,11765973 +g1,7875:26231813,11765973 +g1,7875:26864105,11765973 +h1,7875:27180251,11765973:0,0,0 +k1,7875:32583029,11765973:5402778 +g1,7875:32583029,11765973 +) +] +) +g1,7876:32583029,11873451 +g1,7876:6630773,11873451 +g1,7876:6630773,11873451 +g1,7876:32583029,11873451 +g1,7876:32583029,11873451 +) +h1,7876:6630773,12070059:0,0,0 +(1,7880:6630773,13342364:25952256,513147,134348 +h1,7879:6630773,13342364:983040,0,0 +k1,7879:10244546,13342364:232771 +(1,7879:10244546,13342364:0,452978,115847 +r1,7879:12361371,13342364:2116825,568825,115847 +k1,7879:10244546,13342364:-2116825 +) +(1,7879:10244546,13342364:2116825,452978,115847 +k1,7879:10244546,13342364:3277 +h1,7879:12358094,13342364:0,411205,112570 +) +k1,7879:12594141,13342364:232770 +k1,7879:13513074,13342364:232771 +k1,7879:14693496,13342364:232771 +k1,7879:18939691,13342364:232770 +k1,7879:20363907,13342364:232771 +k1,7879:23547108,13342364:232770 +k1,7879:26803055,13342364:232771 +k1,7879:28817095,13342364:232771 +k1,7879:30003414,13342364:232770 +k1,7879:31896867,13342364:232771 +k1,7879:32583029,13342364:0 +) +(1,7880:6630773,14183852:25952256,513147,126483 +g1,7879:8685326,14183852 +g1,7879:9903640,14183852 +g1,7879:12614864,14183852 +g1,7879:13473385,14183852 +k1,7880:32583029,14183852:16041904 +g1,7880:32583029,14183852 +) +v1,7882:6630773,15280846:0,393216,0 +(1,7886:6630773,15595943:25952256,708313,196608 +g1,7886:6630773,15595943 +g1,7886:6630773,15595943 +g1,7886:6434165,15595943 +(1,7886:6434165,15595943:0,708313,196608 +r1,7886:32779637,15595943:26345472,904921,196608 +k1,7886:6434165,15595943:-26345472 +) +(1,7886:6434165,15595943:26345472,708313,196608 +[1,7886:6630773,15595943:25952256,511705,0 +(1,7884:6630773,15494756:25952256,410518,101187 +(1,7883:6630773,15494756:0,0,0 +g1,7883:6630773,15494756 +g1,7883:6630773,15494756 +g1,7883:6303093,15494756 +(1,7883:6303093,15494756:0,0,0 +) +g1,7883:6630773,15494756 +) +k1,7884:6630773,15494756:0 +g1,7884:10108376,15494756 +g1,7884:12005250,15494756 +g1,7884:12637542,15494756 +h1,7884:13269834,15494756:0,0,0 +k1,7884:32583030,15494756:19313196 +g1,7884:32583030,15494756 +) +] +) +g1,7886:32583029,15595943 +g1,7886:6630773,15595943 +g1,7886:6630773,15595943 +g1,7886:32583029,15595943 +g1,7886:32583029,15595943 +) +h1,7886:6630773,15792551:0,0,0 +(1,7889:6630773,30303635:25952256,14014731,0 +k1,7889:12599879,30303635:5969106 +h1,7888:12599879,30303635:0,0,0 +(1,7888:12599879,30303635:14014044,14014731,0 +(1,7888:12599879,30303635:14014766,14014766,0 +(1,7888:12599879,30303635:14014766,14014766,0 +(1,7888:12599879,30303635:0,14014766,0 +(1,7888:12599879,30303635:0,18939904,0 +(1,7888:12599879,30303635:18939904,18939904,0 +) +k1,7888:12599879,30303635:-18939904 +) +) +g1,7888:26614645,30303635 +) +) +) +g1,7889:26613923,30303635 +k1,7889:32583029,30303635:5969106 +) +(1,7897:6630773,31145123:25952256,513147,126483 +h1,7896:6630773,31145123:983040,0,0 +k1,7896:8806830,31145123:239468 +k1,7896:10150580,31145123:239468 +k1,7896:12594025,31145123:239469 +k1,7896:15595836,31145123:239468 +k1,7896:19762877,31145123:239468 +k1,7896:22770586,31145123:239468 +k1,7896:23696216,31145123:239468 +k1,7896:27025708,31145123:239469 +k1,7896:28212827,31145123:239468 +k1,7896:30265021,31145123:239468 +k1,7896:32583029,31145123:0 +) +(1,7897:6630773,31986611:25952256,505283,134348 +g1,7896:8062079,31986611 +g1,7896:10539995,31986611 +h1,7896:11510583,31986611:0,0,0 +g1,7896:11709812,31986611 +g1,7896:12718411,31986611 +g1,7896:14415793,31986611 +h1,7896:15611170,31986611:0,0,0 +k1,7897:32583029,31986611:16591095 +g1,7897:32583029,31986611 +) +v1,7899:6630773,33083606:0,393216,0 +(1,7951:6630773,45510161:25952256,12819771,196608 +g1,7951:6630773,45510161 +g1,7951:6630773,45510161 +g1,7951:6434165,45510161 +(1,7951:6434165,45510161:0,12819771,196608 +r1,7951:32779637,45510161:26345472,13016379,196608 +k1,7951:6434165,45510161:-26345472 +) +(1,7951:6434165,45510161:26345472,12819771,196608 +[1,7951:6630773,45510161:25952256,12623163,0 +(1,7901:6630773,33297516:25952256,410518,76021 +(1,7900:6630773,33297516:0,0,0 +g1,7900:6630773,33297516 +g1,7900:6630773,33297516 +g1,7900:6303093,33297516 +(1,7900:6303093,33297516:0,0,0 +) +g1,7900:6630773,33297516 +) +k1,7901:6630773,33297516:0 +h1,7901:10108375,33297516:0,0,0 +k1,7901:32583029,33297516:22474654 +g1,7901:32583029,33297516 +) +(1,7905:6630773,34029230:25952256,404226,107478 +(1,7903:6630773,34029230:0,0,0 +g1,7903:6630773,34029230 +g1,7903:6630773,34029230 +g1,7903:6303093,34029230 +(1,7903:6303093,34029230:0,0,0 +) +g1,7903:6630773,34029230 +) +g1,7905:7579210,34029230 +g1,7905:8843793,34029230 +g1,7905:10740667,34029230 +h1,7905:12005250,34029230:0,0,0 +k1,7905:32583030,34029230:20577780 +g1,7905:32583030,34029230 +) +(1,7907:6630773,35350768:25952256,410518,101187 +(1,7906:6630773,35350768:0,0,0 +g1,7906:6630773,35350768 +g1,7906:6630773,35350768 +g1,7906:6303093,35350768 +(1,7906:6303093,35350768:0,0,0 +) +g1,7906:6630773,35350768 +) +k1,7907:6630773,35350768:0 +h1,7907:10740667,35350768:0,0,0 +k1,7907:32583029,35350768:21842362 +g1,7907:32583029,35350768 +) +(1,7936:6630773,36082482:25952256,379060,0 +(1,7909:6630773,36082482:0,0,0 +g1,7909:6630773,36082482 +g1,7909:6630773,36082482 +g1,7909:6303093,36082482 +(1,7909:6303093,36082482:0,0,0 +) +g1,7909:6630773,36082482 +) +h1,7936:7263064,36082482:0,0,0 +k1,7936:32583028,36082482:25319964 +g1,7936:32583028,36082482 +) +(1,7936:6630773,36748660:25952256,404226,7863 +h1,7936:6630773,36748660:0,0,0 +g1,7936:7579210,36748660 +h1,7936:9159938,36748660:0,0,0 +k1,7936:32583030,36748660:23423092 +g1,7936:32583030,36748660 +) +(1,7936:6630773,37414838:25952256,410518,107478 +h1,7936:6630773,37414838:0,0,0 +g1,7936:7579210,37414838 +g1,7936:11372958,37414838 +g1,7936:12005250,37414838 +g1,7936:13902124,37414838 +g1,7936:14534416,37414838 +g1,7936:16747436,37414838 +g1,7936:18960456,37414838 +g1,7936:19592748,37414838 +g1,7936:24018788,37414838 +g1,7936:25599517,37414838 +g1,7936:26231809,37414838 +h1,7936:30341703,37414838:0,0,0 +k1,7936:32583029,37414838:2241326 +g1,7936:32583029,37414838 +) +(1,7936:6630773,38081016:25952256,379060,0 +h1,7936:6630773,38081016:0,0,0 +h1,7936:7263064,38081016:0,0,0 +k1,7936:32583028,38081016:25319964 +g1,7936:32583028,38081016 +) +(1,7936:6630773,38747194:25952256,404226,6290 +h1,7936:6630773,38747194:0,0,0 +g1,7936:7579210,38747194 +g1,7936:10424521,38747194 +h1,7936:13585978,38747194:0,0,0 +k1,7936:32583030,38747194:18997052 +g1,7936:32583030,38747194 +) +(1,7936:6630773,39413372:25952256,404226,82312 +h1,7936:6630773,39413372:0,0,0 +g1,7936:7579210,39413372 +g1,7936:7895356,39413372 +g1,7936:8211502,39413372 +g1,7936:8527648,39413372 +g1,7936:8843794,39413372 +g1,7936:10108377,39413372 +g1,7936:10424523,39413372 +g1,7936:10740669,39413372 +g1,7936:11056815,39413372 +g1,7936:11372961,39413372 +g1,7936:11689107,39413372 +g1,7936:12005253,39413372 +g1,7936:12953690,39413372 +g1,7936:13269836,39413372 +g1,7936:13585982,39413372 +g1,7936:15799002,39413372 +g1,7936:16115148,39413372 +g1,7936:16431294,39413372 +g1,7936:16747440,39413372 +g1,7936:17063586,39413372 +g1,7936:17379732,39413372 +g1,7936:17695878,39413372 +g1,7936:18644315,39413372 +g1,7936:18960461,39413372 +g1,7936:19276607,39413372 +g1,7936:19592753,39413372 +g1,7936:19908899,39413372 +g1,7936:20225045,39413372 +h1,7936:21173482,39413372:0,0,0 +k1,7936:32583029,39413372:11409547 +g1,7936:32583029,39413372 +) +(1,7936:6630773,40079550:25952256,388497,9436 +h1,7936:6630773,40079550:0,0,0 +g1,7936:7579210,40079550 +g1,7936:10108376,40079550 +g1,7936:10424522,40079550 +g1,7936:12953688,40079550 +g1,7936:13269834,40079550 +g1,7936:15799000,40079550 +g1,7936:16115146,40079550 +g1,7936:16431292,40079550 +g1,7936:18644312,40079550 +g1,7936:18960458,40079550 +g1,7936:19276604,40079550 +h1,7936:21173478,40079550:0,0,0 +k1,7936:32583029,40079550:11409551 +g1,7936:32583029,40079550 +) +(1,7936:6630773,40745728:25952256,379060,0 +h1,7936:6630773,40745728:0,0,0 +h1,7936:7263064,40745728:0,0,0 +k1,7936:32583028,40745728:25319964 +g1,7936:32583028,40745728 +) +(1,7936:6630773,41411906:25952256,410518,7863 +h1,7936:6630773,41411906:0,0,0 +g1,7936:7579210,41411906 +h1,7936:11689104,41411906:0,0,0 +k1,7936:32583028,41411906:20893924 +g1,7936:32583028,41411906 +) +(1,7936:6630773,42078084:25952256,404226,76021 +h1,7936:6630773,42078084:0,0,0 +g1,7936:7579210,42078084 +g1,7936:7895356,42078084 +g1,7936:8211502,42078084 +g1,7936:8527648,42078084 +g1,7936:8843794,42078084 +g1,7936:9159940,42078084 +g1,7936:9476086,42078084 +g1,7936:9792232,42078084 +g1,7936:10108378,42078084 +g1,7936:10424524,42078084 +g1,7936:10740670,42078084 +g1,7936:11056816,42078084 +g1,7936:11372962,42078084 +g1,7936:14218273,42078084 +g1,7936:15799002,42078084 +g1,7936:17695876,42078084 +g1,7936:18328168,42078084 +g1,7936:20225042,42078084 +k1,7936:20225042,42078084:0 +h1,7936:22754207,42078084:0,0,0 +k1,7936:32583029,42078084:9828822 +g1,7936:32583029,42078084 +) +(1,7936:6630773,42744262:25952256,404226,101187 +h1,7936:6630773,42744262:0,0,0 +g1,7936:7579210,42744262 +g1,7936:11372958,42744262 +g1,7936:11689104,42744262 +g1,7936:14218270,42744262 +g1,7936:14534416,42744262 +g1,7936:14850562,42744262 +g1,7936:15166708,42744262 +g1,7936:17695874,42744262 +g1,7936:18012020,42744262 +g1,7936:20225040,42744262 +g1,7936:20541186,42744262 +g1,7936:21173478,42744262 +g1,7936:23070352,42744262 +h1,7936:24018789,42744262:0,0,0 +k1,7936:32583029,42744262:8564240 +g1,7936:32583029,42744262 +) +(1,7936:6630773,43410440:25952256,388497,101187 +h1,7936:6630773,43410440:0,0,0 +g1,7936:7579210,43410440 +g1,7936:9792230,43410440 +g1,7936:10108376,43410440 +g1,7936:10424522,43410440 +g1,7936:10740668,43410440 +g1,7936:11056814,43410440 +g1,7936:11372960,43410440 +g1,7936:11689106,43410440 +g1,7936:14218272,43410440 +g1,7936:14534418,43410440 +g1,7936:14850564,43410440 +g1,7936:15166710,43410440 +g1,7936:17695876,43410440 +g1,7936:18012022,43410440 +g1,7936:18328168,43410440 +g1,7936:20225042,43410440 +g1,7936:20541188,43410440 +g1,7936:20857334,43410440 +g1,7936:21173480,43410440 +h1,7936:22754208,43410440:0,0,0 +k1,7936:32583029,43410440:9828821 +g1,7936:32583029,43410440 +) +(1,7936:6630773,44076618:25952256,388497,101187 +h1,7936:6630773,44076618:0,0,0 +g1,7936:7579210,44076618 +g1,7936:9792230,44076618 +g1,7936:10108376,44076618 +g1,7936:10424522,44076618 +g1,7936:10740668,44076618 +g1,7936:11056814,44076618 +g1,7936:11372960,44076618 +g1,7936:14218271,44076618 +g1,7936:14534417,44076618 +g1,7936:14850563,44076618 +g1,7936:15166709,44076618 +g1,7936:17695875,44076618 +g1,7936:18012021,44076618 +g1,7936:20225041,44076618 +g1,7936:23070352,44076618 +h1,7936:24018789,44076618:0,0,0 +k1,7936:32583029,44076618:8564240 +g1,7936:32583029,44076618 +) +(1,7936:6630773,44742796:25952256,388497,101187 +h1,7936:6630773,44742796:0,0,0 +g1,7936:7579210,44742796 +g1,7936:9792230,44742796 +g1,7936:10108376,44742796 +g1,7936:10424522,44742796 +g1,7936:10740668,44742796 +g1,7936:11056814,44742796 +g1,7936:11372960,44742796 +g1,7936:14218271,44742796 +g1,7936:14534417,44742796 +g1,7936:14850563,44742796 +g1,7936:15166709,44742796 +g1,7936:17695875,44742796 +g1,7936:18012021,44742796 +g1,7936:20225041,44742796 +g1,7936:23070352,44742796 +h1,7936:24018789,44742796:0,0,0 +k1,7936:32583029,44742796:8564240 +g1,7936:32583029,44742796 +) +(1,7936:6630773,45408974:25952256,388497,101187 +h1,7936:6630773,45408974:0,0,0 +g1,7936:7579210,45408974 +g1,7936:9792230,45408974 +g1,7936:10108376,45408974 +g1,7936:10424522,45408974 +g1,7936:10740668,45408974 +g1,7936:11056814,45408974 +g1,7936:11372960,45408974 +g1,7936:14218271,45408974 +g1,7936:14534417,45408974 +g1,7936:14850563,45408974 +g1,7936:15166709,45408974 +g1,7936:17695875,45408974 +g1,7936:18012021,45408974 +g1,7936:20225041,45408974 +g1,7936:23070352,45408974 +h1,7936:24018789,45408974:0,0,0 +k1,7936:32583029,45408974:8564240 +g1,7936:32583029,45408974 +) +] +) +g1,7951:32583029,45510161 +g1,7951:6630773,45510161 +g1,7951:6630773,45510161 +g1,7951:32583029,45510161 +g1,7951:32583029,45510161 +) +] +(1,7951:32583029,45706769:0,0,0 +g1,7951:32583029,45706769 +) +) +] +(1,7951:6630773,47279633:25952256,0,0 +h1,7951:6630773,47279633:25952256,0,0 +) +] +h1,7951:4262630,4025873:0,0,0 +] +!19290 }148 -Input:1095:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1096:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1097:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1098:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1099:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 +Input:1091:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1092:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1093:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1094:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1095:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 {149 -[1,7993:4262630,47279633:28320399,43253760,0 -(1,7993:4262630,4025873:0,0,0 -[1,7993:-473657,4025873:25952256,0,0 -(1,7993:-473657,-710414:25952256,0,0 -h1,7993:-473657,-710414:0,0,0 -(1,7993:-473657,-710414:0,0,0 -(1,7993:-473657,-710414:0,0,0 -g1,7993:-473657,-710414 -(1,7993:-473657,-710414:65781,0,65781 -g1,7993:-407876,-710414 -[1,7993:-407876,-644633:0,0,0 +[1,7998:4262630,47279633:28320399,43253760,0 +(1,7998:4262630,4025873:0,0,0 +[1,7998:-473657,4025873:25952256,0,0 +(1,7998:-473657,-710414:25952256,0,0 +h1,7998:-473657,-710414:0,0,0 +(1,7998:-473657,-710414:0,0,0 +(1,7998:-473657,-710414:0,0,0 +g1,7998:-473657,-710414 +(1,7998:-473657,-710414:65781,0,65781 +g1,7998:-407876,-710414 +[1,7998:-407876,-644633:0,0,0 ] ) -k1,7993:-473657,-710414:-65781 +k1,7998:-473657,-710414:-65781 ) ) -k1,7993:25478599,-710414:25952256 -g1,7993:25478599,-710414 +k1,7998:25478599,-710414:25952256 +g1,7998:25478599,-710414 ) ] ) -[1,7993:6630773,47279633:25952256,43253760,0 -[1,7993:6630773,4812305:25952256,786432,0 -(1,7993:6630773,4812305:25952256,505283,134348 -(1,7993:6630773,4812305:25952256,505283,134348 -g1,7993:3078558,4812305 -[1,7993:3078558,4812305:0,0,0 -(1,7993:3078558,2439708:0,1703936,0 -k1,7993:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,7993:2537886,2439708:1179648,16384,0 +[1,7998:6630773,47279633:25952256,43253760,0 +[1,7998:6630773,4812305:25952256,786432,0 +(1,7998:6630773,4812305:25952256,505283,134348 +(1,7998:6630773,4812305:25952256,505283,134348 +g1,7998:3078558,4812305 +[1,7998:3078558,4812305:0,0,0 +(1,7998:3078558,2439708:0,1703936,0 +k1,7998:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,7998:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,7993:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,7998:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,7993:3078558,4812305:0,0,0 -(1,7993:3078558,2439708:0,1703936,0 -g1,7993:29030814,2439708 -g1,7993:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,7993:36151628,1915420:16384,1179648,0 +[1,7998:3078558,4812305:0,0,0 +(1,7998:3078558,2439708:0,1703936,0 +g1,7998:29030814,2439708 +g1,7998:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,7998:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,7993:37855564,2439708:1179648,16384,0 -) +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,7998:37855564,2439708:1179648,16384,0 ) -k1,7993:3078556,2439708:-34777008 ) -] -[1,7993:3078558,4812305:0,0,0 -(1,7993:3078558,49800853:0,16384,2228224 -k1,7993:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,7993:2537886,49800853:1179648,16384,0 -) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,7993:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,7993:3078558,4812305:0,0,0 -(1,7993:3078558,49800853:0,16384,2228224 -g1,7993:29030814,49800853 -g1,7993:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,7993:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,7993:37855564,49800853:1179648,16384,0 -) -) -k1,7993:3078556,49800853:-34777008 -) -] -g1,7993:6630773,4812305 -k1,7993:24573876,4812305:16747726 -g1,7993:25960617,4812305 -g1,7993:26609423,4812305 -g1,7993:29923578,4812305 -) -) -] -[1,7993:6630773,45706769:25952256,40108032,0 -(1,7993:6630773,45706769:25952256,40108032,0 -(1,7993:6630773,45706769:0,0,0 -g1,7993:6630773,45706769 -) -[1,7993:6630773,45706769:25952256,40108032,0 -v1,7946:6630773,6254097:0,393216,0 -(1,7946:6630773,25233571:25952256,19372690,196608 -g1,7946:6630773,25233571 -g1,7946:6630773,25233571 -g1,7946:6434165,25233571 -(1,7946:6434165,25233571:0,19372690,196608 -r1,7946:32779637,25233571:26345472,19569298,196608 -k1,7946:6434165,25233571:-26345472 -) -(1,7946:6434165,25233571:26345472,19372690,196608 -[1,7946:6630773,25233571:25952256,19176082,0 -(1,7931:6630773,6461715:25952256,404226,82312 -h1,7931:6630773,6461715:0,0,0 -g1,7931:7579210,6461715 -g1,7931:7895356,6461715 -g1,7931:8211502,6461715 -g1,7931:8527648,6461715 -g1,7931:8843794,6461715 -g1,7931:10108377,6461715 -g1,7931:10424523,6461715 -g1,7931:10740669,6461715 -g1,7931:11056815,6461715 -g1,7931:11372961,6461715 -g1,7931:11689107,6461715 -g1,7931:12005253,6461715 -g1,7931:12953690,6461715 -g1,7931:13269836,6461715 -g1,7931:13585982,6461715 -g1,7931:15799002,6461715 -g1,7931:16115148,6461715 -g1,7931:16431294,6461715 -g1,7931:16747440,6461715 -g1,7931:17063586,6461715 -g1,7931:17379732,6461715 -g1,7931:17695878,6461715 -g1,7931:18644315,6461715 -g1,7931:18960461,6461715 -g1,7931:19276607,6461715 -g1,7931:19592753,6461715 -g1,7931:19908899,6461715 -g1,7931:20225045,6461715 -h1,7931:21173482,6461715:0,0,0 -k1,7931:32583029,6461715:11409547 -g1,7931:32583029,6461715 -) -(1,7931:6630773,7127893:25952256,388497,9436 -h1,7931:6630773,7127893:0,0,0 -g1,7931:7579210,7127893 -g1,7931:10108376,7127893 -g1,7931:10424522,7127893 -g1,7931:12953688,7127893 -g1,7931:13269834,7127893 -g1,7931:15799000,7127893 -g1,7931:16115146,7127893 -g1,7931:16431292,7127893 -g1,7931:18644312,7127893 -g1,7931:18960458,7127893 -g1,7931:19276604,7127893 -h1,7931:21173478,7127893:0,0,0 -k1,7931:32583029,7127893:11409551 -g1,7931:32583029,7127893 -) -(1,7931:6630773,7794071:25952256,379060,0 -h1,7931:6630773,7794071:0,0,0 -h1,7931:7263064,7794071:0,0,0 -k1,7931:32583028,7794071:25319964 -g1,7931:32583028,7794071 -) -(1,7931:6630773,8460249:25952256,410518,7863 -h1,7931:6630773,8460249:0,0,0 -g1,7931:7579210,8460249 -h1,7931:11689104,8460249:0,0,0 -k1,7931:32583028,8460249:20893924 -g1,7931:32583028,8460249 -) -(1,7931:6630773,9126427:25952256,404226,76021 -h1,7931:6630773,9126427:0,0,0 -g1,7931:7579210,9126427 -g1,7931:7895356,9126427 -g1,7931:8211502,9126427 -g1,7931:8527648,9126427 -g1,7931:8843794,9126427 -g1,7931:9159940,9126427 -g1,7931:9476086,9126427 -g1,7931:9792232,9126427 -g1,7931:10108378,9126427 -g1,7931:10424524,9126427 -g1,7931:10740670,9126427 -g1,7931:11056816,9126427 -g1,7931:11372962,9126427 -g1,7931:14218273,9126427 -g1,7931:15799002,9126427 -g1,7931:17695876,9126427 -g1,7931:18328168,9126427 -g1,7931:20225042,9126427 -k1,7931:20225042,9126427:0 -h1,7931:22754207,9126427:0,0,0 -k1,7931:32583029,9126427:9828822 -g1,7931:32583029,9126427 -) -(1,7931:6630773,9792605:25952256,404226,101187 -h1,7931:6630773,9792605:0,0,0 -g1,7931:7579210,9792605 -g1,7931:11372958,9792605 -g1,7931:11689104,9792605 -g1,7931:14218270,9792605 -g1,7931:14534416,9792605 -g1,7931:14850562,9792605 -g1,7931:15166708,9792605 -g1,7931:17695874,9792605 -g1,7931:18012020,9792605 -g1,7931:20225040,9792605 -g1,7931:20541186,9792605 -g1,7931:21173478,9792605 -g1,7931:23070352,9792605 -h1,7931:24018789,9792605:0,0,0 -k1,7931:32583029,9792605:8564240 -g1,7931:32583029,9792605 -) -(1,7931:6630773,10458783:25952256,388497,101187 -h1,7931:6630773,10458783:0,0,0 -g1,7931:7579210,10458783 -g1,7931:9792230,10458783 -g1,7931:10108376,10458783 -g1,7931:10424522,10458783 -g1,7931:10740668,10458783 -g1,7931:11056814,10458783 -g1,7931:11372960,10458783 -g1,7931:11689106,10458783 -g1,7931:14218272,10458783 -g1,7931:14534418,10458783 -g1,7931:14850564,10458783 -g1,7931:15166710,10458783 -g1,7931:17695876,10458783 -g1,7931:18012022,10458783 -g1,7931:18328168,10458783 -g1,7931:20225042,10458783 -g1,7931:20541188,10458783 -g1,7931:20857334,10458783 -g1,7931:21173480,10458783 -h1,7931:22754208,10458783:0,0,0 -k1,7931:32583029,10458783:9828821 -g1,7931:32583029,10458783 -) -(1,7931:6630773,11124961:25952256,388497,101187 -h1,7931:6630773,11124961:0,0,0 -g1,7931:7579210,11124961 -g1,7931:9792230,11124961 -g1,7931:10108376,11124961 -g1,7931:10424522,11124961 -g1,7931:10740668,11124961 -g1,7931:11056814,11124961 -g1,7931:11372960,11124961 -g1,7931:14218271,11124961 -g1,7931:14534417,11124961 -g1,7931:14850563,11124961 -g1,7931:15166709,11124961 -g1,7931:17695875,11124961 -g1,7931:18012021,11124961 -g1,7931:20225041,11124961 -g1,7931:23070352,11124961 -h1,7931:24018789,11124961:0,0,0 -k1,7931:32583029,11124961:8564240 -g1,7931:32583029,11124961 -) -(1,7931:6630773,11791139:25952256,388497,101187 -h1,7931:6630773,11791139:0,0,0 -g1,7931:7579210,11791139 -g1,7931:9792230,11791139 -g1,7931:10108376,11791139 -g1,7931:10424522,11791139 -g1,7931:10740668,11791139 -g1,7931:11056814,11791139 -g1,7931:11372960,11791139 -g1,7931:14218271,11791139 -g1,7931:14534417,11791139 -g1,7931:14850563,11791139 -g1,7931:15166709,11791139 -g1,7931:17695875,11791139 -g1,7931:18012021,11791139 -g1,7931:20225041,11791139 -g1,7931:23070352,11791139 -h1,7931:24018789,11791139:0,0,0 -k1,7931:32583029,11791139:8564240 -g1,7931:32583029,11791139 -) -(1,7931:6630773,12457317:25952256,388497,101187 -h1,7931:6630773,12457317:0,0,0 -g1,7931:7579210,12457317 -g1,7931:9792230,12457317 -g1,7931:10108376,12457317 -g1,7931:10424522,12457317 -g1,7931:10740668,12457317 -g1,7931:11056814,12457317 -g1,7931:11372960,12457317 -g1,7931:14218271,12457317 -g1,7931:14534417,12457317 -g1,7931:14850563,12457317 -g1,7931:15166709,12457317 -g1,7931:17695875,12457317 -g1,7931:18012021,12457317 -g1,7931:20225041,12457317 -g1,7931:23070352,12457317 -h1,7931:24018789,12457317:0,0,0 -k1,7931:32583029,12457317:8564240 -g1,7931:32583029,12457317 -) -(1,7931:6630773,13123495:25952256,388497,101187 -h1,7931:6630773,13123495:0,0,0 -g1,7931:7579210,13123495 -g1,7931:9792230,13123495 -g1,7931:10108376,13123495 -g1,7931:10424522,13123495 -g1,7931:10740668,13123495 -g1,7931:11056814,13123495 -g1,7931:11372960,13123495 -g1,7931:11689106,13123495 -g1,7931:14218272,13123495 -g1,7931:14534418,13123495 -g1,7931:14850564,13123495 -g1,7931:15166710,13123495 -g1,7931:17695876,13123495 -g1,7931:18012022,13123495 -g1,7931:18328168,13123495 -g1,7931:20225042,13123495 -g1,7931:20541188,13123495 -g1,7931:20857334,13123495 -g1,7931:21173480,13123495 -h1,7931:22754208,13123495:0,0,0 -k1,7931:32583029,13123495:9828821 -g1,7931:32583029,13123495 -) -(1,7931:6630773,13789673:25952256,379060,0 -h1,7931:6630773,13789673:0,0,0 -g1,7931:7579210,13789673 -k1,7931:7579210,13789673:0 -h1,7931:8527648,13789673:0,0,0 -k1,7931:32583028,13789673:24055380 -g1,7931:32583028,13789673 -) -(1,7931:6630773,14455851:25952256,410518,107478 -h1,7931:6630773,14455851:0,0,0 -g1,7931:7579210,14455851 -g1,7931:10108376,14455851 -g1,7931:12321396,14455851 -g1,7931:12637542,14455851 -g1,7931:13269834,14455851 -g1,7931:15166709,14455851 -g1,7931:17063583,14455851 -g1,7931:18644312,14455851 -g1,7931:20225041,14455851 -g1,7931:21489625,14455851 -g1,7931:23070354,14455851 -g1,7931:24334938,14455851 -g1,7931:25599521,14455851 -g1,7931:26231813,14455851 -g1,7931:26864105,14455851 -h1,7931:27180251,14455851:0,0,0 -k1,7931:32583029,14455851:5402778 -g1,7931:32583029,14455851 -) -(1,7931:6630773,15122029:25952256,379060,0 -h1,7931:6630773,15122029:0,0,0 -h1,7931:7263064,15122029:0,0,0 -k1,7931:32583028,15122029:25319964 -g1,7931:32583028,15122029 -) -(1,7931:6630773,15788207:25952256,410518,101187 -h1,7931:6630773,15788207:0,0,0 -g1,7931:7579210,15788207 -g1,7931:11372958,15788207 -g1,7931:14534415,15788207 -g1,7931:15798998,15788207 -g1,7931:19908892,15788207 -g1,7931:22121912,15788207 -g1,7931:24018786,15788207 -g1,7931:24967223,15788207 -g1,7931:25915660,15788207 -h1,7931:28760971,15788207:0,0,0 -k1,7931:32583029,15788207:3822058 -g1,7931:32583029,15788207 -) -(1,7931:6630773,16454385:25952256,379060,0 -h1,7931:6630773,16454385:0,0,0 -h1,7931:7263064,16454385:0,0,0 -k1,7931:32583028,16454385:25319964 -g1,7931:32583028,16454385 -) -(1,7931:6630773,17120563:25952256,410518,107478 -h1,7931:6630773,17120563:0,0,0 -g1,7931:7579210,17120563 -g1,7931:7895356,17120563 -g1,7931:8211502,17120563 -g1,7931:8527648,17120563 -g1,7931:8843794,17120563 -g1,7931:10424523,17120563 -g1,7931:13585980,17120563 -g1,7931:16115146,17120563 -g1,7931:16431292,17120563 -g1,7931:17379729,17120563 -g1,7931:18328166,17120563 -g1,7931:18644312,17120563 -g1,7931:21173478,17120563 -g1,7931:22121915,17120563 -h1,7931:24334935,17120563:0,0,0 -k1,7931:32583029,17120563:8248094 -g1,7931:32583029,17120563 -) -(1,7931:6630773,17786741:25952256,410518,107478 -h1,7931:6630773,17786741:0,0,0 -g1,7931:7579210,17786741 -g1,7931:10424521,17786741 -g1,7931:13585978,17786741 -g1,7931:13902124,17786741 -g1,7931:16115144,17786741 -g1,7931:16431290,17786741 -g1,7931:17379727,17786741 -g1,7931:18328164,17786741 -g1,7931:18644310,17786741 -g1,7931:21173476,17786741 -g1,7931:22121913,17786741 -h1,7931:24334933,17786741:0,0,0 -k1,7931:32583029,17786741:8248096 -g1,7931:32583029,17786741 -) -(1,7931:6630773,18452919:25952256,379060,7863 -h1,7931:6630773,18452919:0,0,0 -g1,7931:7579210,18452919 -g1,7931:9159939,18452919 -h1,7931:9792230,18452919:0,0,0 -k1,7931:32583030,18452919:22790800 -g1,7931:32583030,18452919 -) -(1,7931:6630773,19119097:25952256,379060,0 -h1,7931:6630773,19119097:0,0,0 -h1,7931:7263064,19119097:0,0,0 -k1,7931:32583028,19119097:25319964 -g1,7931:32583028,19119097 -) -(1,7931:6630773,19785275:25952256,410518,107478 -h1,7931:6630773,19785275:0,0,0 -g1,7931:7579210,19785275 -g1,7931:9792230,19785275 -g1,7931:10740667,19785275 -g1,7931:12953687,19785275 -g1,7931:15482853,19785275 -g1,7931:19276601,19785275 -h1,7931:19592747,19785275:0,0,0 -k1,7931:32583029,19785275:12990282 -g1,7931:32583029,19785275 -) -(1,7933:6630773,21106813:25952256,410518,76021 -(1,7932:6630773,21106813:0,0,0 -g1,7932:6630773,21106813 -g1,7932:6630773,21106813 -g1,7932:6303093,21106813 -(1,7932:6303093,21106813:0,0,0 -) -g1,7932:6630773,21106813 -) -k1,7933:6630773,21106813:0 -k1,7933:6630773,21106813:0 -h1,7933:13269833,21106813:0,0,0 -k1,7933:32583029,21106813:19313196 -g1,7933:32583029,21106813 -) -(1,7938:6630773,21838527:25952256,388497,9436 -(1,7935:6630773,21838527:0,0,0 -g1,7935:6630773,21838527 -g1,7935:6630773,21838527 -g1,7935:6303093,21838527 -(1,7935:6303093,21838527:0,0,0 -) -g1,7935:6630773,21838527 -) -g1,7938:7579210,21838527 -g1,7938:7895356,21838527 -g1,7938:8211502,21838527 -g1,7938:8527648,21838527 -g1,7938:8843794,21838527 -g1,7938:9159940,21838527 -g1,7938:9476086,21838527 -g1,7938:9792232,21838527 -g1,7938:10108378,21838527 -g1,7938:10424524,21838527 -g1,7938:11056816,21838527 -g1,7938:11372962,21838527 -g1,7938:11689108,21838527 -g1,7938:12005254,21838527 -g1,7938:12321400,21838527 -g1,7938:12637546,21838527 -g1,7938:12953692,21838527 -g1,7938:13269838,21838527 -g1,7938:13585984,21838527 -g1,7938:13902130,21838527 -g1,7938:14534422,21838527 -g1,7938:14850568,21838527 -g1,7938:15166714,21838527 -g1,7938:15482860,21838527 -g1,7938:15799006,21838527 -g1,7938:16115152,21838527 -g1,7938:16431298,21838527 -g1,7938:16747444,21838527 -g1,7938:17063590,21838527 -g1,7938:17379736,21838527 -g1,7938:18012028,21838527 -g1,7938:18328174,21838527 -g1,7938:18644320,21838527 -g1,7938:18960466,21838527 -g1,7938:19276612,21838527 -g1,7938:19592758,21838527 -g1,7938:19908904,21838527 -g1,7938:20225050,21838527 -g1,7938:20541196,21838527 -g1,7938:20857342,21838527 -g1,7938:21489634,21838527 -g1,7938:21805780,21838527 -g1,7938:22121926,21838527 -g1,7938:22438072,21838527 -g1,7938:22754218,21838527 -g1,7938:23070364,21838527 -g1,7938:23386510,21838527 -g1,7938:23702656,21838527 -g1,7938:24018802,21838527 -g1,7938:24334948,21838527 -g1,7938:24967240,21838527 -g1,7938:25283386,21838527 -g1,7938:25599532,21838527 -g1,7938:25915678,21838527 -g1,7938:26231824,21838527 -g1,7938:26547970,21838527 -g1,7938:26864116,21838527 -g1,7938:27180262,21838527 -g1,7938:27496408,21838527 -g1,7938:27812554,21838527 -h1,7938:28128700,21838527:0,0,0 -k1,7938:32583029,21838527:4454329 -g1,7938:32583029,21838527 -) -(1,7938:6630773,22504705:25952256,388497,9436 -h1,7938:6630773,22504705:0,0,0 -g1,7938:7579210,22504705 -g1,7938:11056813,22504705 -g1,7938:14534416,22504705 -g1,7938:14850562,22504705 -g1,7938:18012019,22504705 -g1,7938:21489622,22504705 -g1,7938:24967225,22504705 -k1,7938:24967225,22504705:0 -h1,7938:28128682,22504705:0,0,0 -k1,7938:32583029,22504705:4454347 -g1,7938:32583029,22504705 -) -(1,7940:6630773,23826243:25952256,410518,76021 -(1,7939:6630773,23826243:0,0,0 -g1,7939:6630773,23826243 -g1,7939:6630773,23826243 -g1,7939:6303093,23826243 -(1,7939:6303093,23826243:0,0,0 -) -g1,7939:6630773,23826243 -) -k1,7940:6630773,23826243:0 -k1,7940:6630773,23826243:0 -h1,7940:12321396,23826243:0,0,0 -k1,7940:32583028,23826243:20261632 -g1,7940:32583028,23826243 -) -(1,7945:6630773,24557957:25952256,388497,9436 -(1,7942:6630773,24557957:0,0,0 -g1,7942:6630773,24557957 -g1,7942:6630773,24557957 -g1,7942:6303093,24557957 -(1,7942:6303093,24557957:0,0,0 -) -g1,7942:6630773,24557957 -) -g1,7945:7579210,24557957 -g1,7945:7895356,24557957 -g1,7945:8211502,24557957 -g1,7945:8527648,24557957 -g1,7945:9159940,24557957 -g1,7945:9476086,24557957 -g1,7945:9792232,24557957 -g1,7945:10108378,24557957 -g1,7945:10740670,24557957 -g1,7945:11056816,24557957 -g1,7945:11372962,24557957 -g1,7945:11689108,24557957 -g1,7945:12321400,24557957 -g1,7945:12637546,24557957 -g1,7945:12953692,24557957 -g1,7945:13269838,24557957 -g1,7945:13902130,24557957 -g1,7945:14218276,24557957 -g1,7945:14534422,24557957 -g1,7945:14850568,24557957 -g1,7945:15482860,24557957 -g1,7945:15799006,24557957 -g1,7945:16115152,24557957 -g1,7945:16431298,24557957 -h1,7945:16747444,24557957:0,0,0 -k1,7945:32583029,24557957:15835585 -g1,7945:32583029,24557957 -) -(1,7945:6630773,25224135:25952256,388497,9436 -h1,7945:6630773,25224135:0,0,0 -g1,7945:7579210,25224135 -g1,7945:9159939,25224135 -g1,7945:10740668,25224135 -g1,7945:12321397,25224135 -g1,7945:13902126,25224135 -g1,7945:15482855,25224135 -h1,7945:16747438,25224135:0,0,0 -k1,7945:32583029,25224135:15835591 -g1,7945:32583029,25224135 -) -] -) -g1,7946:32583029,25233571 -g1,7946:6630773,25233571 -g1,7946:6630773,25233571 -g1,7946:32583029,25233571 -g1,7946:32583029,25233571 -) -h1,7946:6630773,25430179:0,0,0 -v1,7950:6630773,26960528:0,393216,0 -(1,7983:6630773,44746300:25952256,18178988,616038 -g1,7983:6630773,44746300 -(1,7983:6630773,44746300:25952256,18178988,616038 -(1,7983:6630773,45362338:25952256,18795026,0 -[1,7983:6630773,45362338:25952256,18795026,0 -(1,7983:6630773,45336124:25952256,18742598,0 -r1,7983:6656987,45336124:26214,18742598,0 -[1,7983:6656987,45336124:25899828,18742598,0 -(1,7983:6656987,44746300:25899828,17562950,0 -[1,7983:7246811,44746300:24720180,17562950,0 -(1,7951:7246811,28345235:24720180,1161885,196608 -(1,7950:7246811,28345235:0,1161885,196608 -r1,7983:8794447,28345235:1547636,1358493,196608 -k1,7950:7246811,28345235:-1547636 -) -(1,7950:7246811,28345235:1547636,1161885,196608 -) -k1,7950:9057315,28345235:262868 -k1,7950:9797939,28345235:262867 -k1,7950:10929159,28345235:262868 -k1,7950:12284511,28345235:262867 -(1,7950:12284511,28345235:0,452978,115847 -r1,7983:14049624,28345235:1765113,568825,115847 -k1,7950:12284511,28345235:-1765113 -) -(1,7950:12284511,28345235:1765113,452978,115847 -k1,7950:12284511,28345235:3277 -h1,7950:14046347,28345235:0,411205,112570 -) -k1,7950:14312492,28345235:262868 -k1,7950:15258244,28345235:262867 -(1,7950:15258244,28345235:0,452978,115847 -r1,7983:17726781,28345235:2468537,568825,115847 -k1,7950:15258244,28345235:-2468537 -) -(1,7950:15258244,28345235:2468537,452978,115847 -k1,7950:15258244,28345235:3277 -h1,7950:17723504,28345235:0,411205,112570 -) -k1,7950:17989649,28345235:262868 -k1,7950:19120869,28345235:262868 -k1,7950:20488018,28345235:262867 -k1,7950:21775869,28345235:262868 -k1,7950:23323242,28345235:262867 -k1,7950:25240894,28345235:262868 -k1,7950:26495321,28345235:262867 -k1,7950:28450329,28345235:262868 -k1,7950:31966991,28345235:0 -) -(1,7951:7246811,29186723:24720180,513147,134348 -k1,7950:8809892,29186723:169130 -k1,7950:11303583,29186723:169129 -k1,7950:12124141,29186723:169130 -k1,7950:14105997,29186723:169130 -k1,7950:16262833,29186723:169129 -k1,7950:17623408,29186723:169130 -k1,7950:18989224,29186723:169129 -k1,7950:21937081,29186723:169130 -k1,7950:24065737,29186723:169130 -k1,7950:24766363,29186723:169129 -k1,7950:25594785,29186723:169130 -k1,7950:26119775,29186723:169130 -k1,7950:29051247,29186723:169129 -k1,7950:30775546,29186723:169130 -k1,7950:31966991,29186723:0 -) -(1,7951:7246811,30028211:24720180,513147,126483 -k1,7950:10128227,30028211:179367 -k1,7950:11999734,30028211:179367 -k1,7950:15132809,30028211:179367 -k1,7950:16378447,30028211:179367 -k1,7950:18963641,30028211:179367 -k1,7950:19759046,30028211:179367 -k1,7950:21751138,30028211:179366 -k1,7950:24422184,30028211:179367 -k1,7950:25951593,30028211:179367 -k1,7950:26790252,30028211:179367 -k1,7950:28666346,30028211:179367 -k1,7950:30320928,30028211:179367 -k1,7950:31151723,30028211:179367 -k1,7950:31966991,30028211:0 -) -(1,7951:7246811,30869699:24720180,513147,126483 -k1,7950:8899192,30869699:258430 -k1,7950:10176706,30869699:258429 -k1,7950:13047401,30869699:258430 -k1,7950:17995586,30869699:258429 -k1,7950:20708339,30869699:258430 -k1,7950:22653665,30869699:258429 -(1,7950:22653665,30869699:0,452978,115847 -r1,7983:24067066,30869699:1413401,568825,115847 -k1,7950:22653665,30869699:-1413401 -) -(1,7950:22653665,30869699:1413401,452978,115847 -k1,7950:22653665,30869699:3277 -h1,7950:24063789,30869699:0,411205,112570 -) -k1,7950:24325496,30869699:258430 -k1,7950:27285974,30869699:258429 -k1,7950:28563489,30869699:258430 -k1,7950:31307699,30869699:258429 -k1,7950:31966991,30869699:0 -) -(1,7951:7246811,31711187:24720180,513147,134348 -g1,7950:10493464,31711187 -g1,7950:12205919,31711187 -g1,7950:13596593,31711187 -(1,7950:13596593,31711187:0,452978,122846 -r1,7983:16768553,31711187:3171960,575824,122846 -k1,7950:13596593,31711187:-3171960 -) -(1,7950:13596593,31711187:3171960,452978,122846 -k1,7950:13596593,31711187:3277 -h1,7950:16765276,31711187:0,411205,112570 -) -g1,7950:16967782,31711187 -g1,7950:18186096,31711187 -g1,7950:20805570,31711187 -g1,7950:21687684,31711187 -g1,7950:22953184,31711187 -g1,7950:23768451,31711187 -g1,7950:26224085,31711187 -g1,7950:26779174,31711187 -k1,7951:31966991,31711187:2401882 -g1,7951:31966991,31711187 -) -v1,7953:7246811,32901653:0,393216,0 -(1,7981:7246811,44025404:24720180,11516967,196608 -g1,7981:7246811,44025404 -g1,7981:7246811,44025404 -g1,7981:7050203,44025404 -(1,7981:7050203,44025404:0,11516967,196608 -r1,7983:32163599,44025404:25113396,11713575,196608 -k1,7981:7050203,44025404:-25113396 -) -(1,7981:7050203,44025404:25113396,11516967,196608 -[1,7981:7246811,44025404:24720180,11320359,0 -(1,7955:7246811,33115563:24720180,410518,76021 -(1,7954:7246811,33115563:0,0,0 -g1,7954:7246811,33115563 -g1,7954:7246811,33115563 -g1,7954:6919131,33115563 -(1,7954:6919131,33115563:0,0,0 -) -g1,7954:7246811,33115563 -) -k1,7955:7246811,33115563:0 -h1,7955:10724413,33115563:0,0,0 -k1,7955:31966991,33115563:21242578 -g1,7955:31966991,33115563 -) -(1,7968:7246811,33847277:24720180,410518,76021 -(1,7957:7246811,33847277:0,0,0 -g1,7957:7246811,33847277 -g1,7957:7246811,33847277 -g1,7957:6919131,33847277 -(1,7957:6919131,33847277:0,0,0 -) -g1,7957:7246811,33847277 -) -g1,7968:8195248,33847277 -g1,7968:8511394,33847277 -g1,7968:9775977,33847277 -g1,7968:14518163,33847277 -g1,7968:14834309,33847277 -g1,7968:15150455,33847277 -g1,7968:15466601,33847277 -g1,7968:15782747,33847277 -g1,7968:16098893,33847277 -g1,7968:19892641,33847277 -g1,7968:20208787,33847277 -g1,7968:20524933,33847277 -g1,7968:20841079,33847277 -g1,7968:21157225,33847277 -g1,7968:21473371,33847277 -g1,7968:21789517,33847277 -g1,7968:22105663,33847277 -g1,7968:22421809,33847277 -h1,7968:27163994,33847277:0,0,0 -k1,7968:31966991,33847277:4802997 -g1,7968:31966991,33847277 -) -(1,7968:7246811,34513455:24720180,410518,76021 -h1,7968:7246811,34513455:0,0,0 -g1,7968:8195248,34513455 -g1,7968:8511394,34513455 -g1,7968:9775977,34513455 -g1,7968:12937434,34513455 -g1,7968:13253580,34513455 -g1,7968:13569726,34513455 -g1,7968:13885872,34513455 -g1,7968:14202018,34513455 -g1,7968:14518164,34513455 -g1,7968:14834310,34513455 -g1,7968:15150456,34513455 -g1,7968:15466602,34513455 -g1,7968:15782748,34513455 -g1,7968:16098894,34513455 -g1,7968:17363477,34513455 -g1,7968:17679623,34513455 -g1,7968:17995769,34513455 -g1,7968:18311915,34513455 -g1,7968:18628061,34513455 -g1,7968:18944207,34513455 -g1,7968:19260353,34513455 -g1,7968:19576499,34513455 -g1,7968:19892645,34513455 -g1,7968:20208791,34513455 -g1,7968:20524937,34513455 -g1,7968:20841083,34513455 -g1,7968:21157229,34513455 -g1,7968:21473375,34513455 -g1,7968:21789521,34513455 -g1,7968:22105667,34513455 -g1,7968:22421813,34513455 -h1,7968:24318687,34513455:0,0,0 -k1,7968:31966991,34513455:7648304 -g1,7968:31966991,34513455 -) -(1,7968:7246811,35179633:24720180,410518,101187 -h1,7968:7246811,35179633:0,0,0 -g1,7968:8195248,35179633 -g1,7968:8511394,35179633 -g1,7968:9775977,35179633 -g1,7968:11356706,35179633 -g1,7968:11672852,35179633 -g1,7968:11988998,35179633 -g1,7968:12305144,35179633 -g1,7968:12621290,35179633 -g1,7968:12937436,35179633 -g1,7968:13253582,35179633 -g1,7968:13569728,35179633 -g1,7968:13885874,35179633 -g1,7968:14202020,35179633 -g1,7968:14518166,35179633 -g1,7968:14834312,35179633 -g1,7968:15150458,35179633 -g1,7968:15466604,35179633 -g1,7968:15782750,35179633 -g1,7968:16098896,35179633 -g1,7968:18944207,35179633 -g1,7968:19260353,35179633 -g1,7968:19576499,35179633 -g1,7968:19892645,35179633 -g1,7968:20208791,35179633 -g1,7968:20524937,35179633 -g1,7968:20841083,35179633 -g1,7968:21157229,35179633 -g1,7968:21473375,35179633 -g1,7968:21789521,35179633 -g1,7968:22105667,35179633 -g1,7968:22421813,35179633 -h1,7968:28428581,35179633:0,0,0 -k1,7968:31966991,35179633:3538410 -g1,7968:31966991,35179633 -) -(1,7968:7246811,35845811:24720180,404226,76021 -h1,7968:7246811,35845811:0,0,0 -g1,7968:8195248,35845811 -g1,7968:9775977,35845811 -g1,7968:13253580,35845811 -g1,7968:13569726,35845811 -g1,7968:13885872,35845811 -g1,7968:14202018,35845811 -g1,7968:14518164,35845811 -g1,7968:14834310,35845811 -g1,7968:15150456,35845811 -g1,7968:15466602,35845811 -g1,7968:15782748,35845811 -g1,7968:16098894,35845811 -g1,7968:17995768,35845811 -g1,7968:18311914,35845811 -g1,7968:18628060,35845811 -g1,7968:18944206,35845811 -g1,7968:19260352,35845811 -g1,7968:19576498,35845811 -g1,7968:19892644,35845811 -g1,7968:20208790,35845811 -g1,7968:20524936,35845811 -g1,7968:20841082,35845811 -g1,7968:21157228,35845811 -g1,7968:21473374,35845811 -g1,7968:21789520,35845811 -g1,7968:22105666,35845811 -g1,7968:22421812,35845811 -h1,7968:27163997,35845811:0,0,0 -k1,7968:31966991,35845811:4802994 -g1,7968:31966991,35845811 -) -(1,7968:7246811,36511989:24720180,404226,107478 -h1,7968:7246811,36511989:0,0,0 -g1,7968:8195248,36511989 -g1,7968:9775977,36511989 -g1,7968:11988997,36511989 -g1,7968:12305143,36511989 -g1,7968:12621289,36511989 -g1,7968:12937435,36511989 -g1,7968:13253581,36511989 -g1,7968:13569727,36511989 -g1,7968:13885873,36511989 -g1,7968:14202019,36511989 -g1,7968:14518165,36511989 -g1,7968:14834311,36511989 -g1,7968:15150457,36511989 -g1,7968:15466603,36511989 -g1,7968:15782749,36511989 -g1,7968:16098895,36511989 -g1,7968:19260352,36511989 -g1,7968:19576498,36511989 -g1,7968:19892644,36511989 -g1,7968:20208790,36511989 -g1,7968:20524936,36511989 -g1,7968:20841082,36511989 -g1,7968:21157228,36511989 -g1,7968:21473374,36511989 -g1,7968:21789520,36511989 -g1,7968:22105666,36511989 -g1,7968:22421812,36511989 -h1,7968:27163997,36511989:0,0,0 -k1,7968:31966991,36511989:4802994 -g1,7968:31966991,36511989 -) -(1,7968:7246811,37178167:24720180,410518,101187 -h1,7968:7246811,37178167:0,0,0 -g1,7968:8195248,37178167 -g1,7968:9775977,37178167 -g1,7968:14202017,37178167 -g1,7968:14518163,37178167 -g1,7968:14834309,37178167 -g1,7968:15150455,37178167 -g1,7968:15466601,37178167 -g1,7968:15782747,37178167 -g1,7968:16098893,37178167 -g1,7968:19260350,37178167 -g1,7968:19576496,37178167 -g1,7968:19892642,37178167 -g1,7968:20208788,37178167 -g1,7968:20524934,37178167 -g1,7968:20841080,37178167 -g1,7968:21157226,37178167 -g1,7968:21473372,37178167 -g1,7968:21789518,37178167 -g1,7968:22105664,37178167 -g1,7968:22421810,37178167 -h1,7968:23370247,37178167:0,0,0 -k1,7968:31966991,37178167:8596744 -g1,7968:31966991,37178167 -) -(1,7968:7246811,37844345:24720180,404226,107478 -h1,7968:7246811,37844345:0,0,0 -g1,7968:8195248,37844345 -g1,7968:9775977,37844345 -g1,7968:13569725,37844345 -g1,7968:13885871,37844345 -g1,7968:14202017,37844345 -g1,7968:14518163,37844345 -g1,7968:14834309,37844345 -g1,7968:15150455,37844345 -g1,7968:15466601,37844345 -g1,7968:15782747,37844345 -g1,7968:16098893,37844345 -g1,7968:19576496,37844345 -g1,7968:19892642,37844345 -g1,7968:20208788,37844345 -g1,7968:20524934,37844345 -g1,7968:20841080,37844345 -g1,7968:21157226,37844345 -g1,7968:21473372,37844345 -g1,7968:21789518,37844345 -g1,7968:22105664,37844345 -g1,7968:22421810,37844345 -h1,7968:24634830,37844345:0,0,0 -k1,7968:31966991,37844345:7332161 -g1,7968:31966991,37844345 -) -(1,7968:7246811,38510523:24720180,410518,76021 -h1,7968:7246811,38510523:0,0,0 -g1,7968:8195248,38510523 -g1,7968:9775977,38510523 -g1,7968:11988997,38510523 -g1,7968:12305143,38510523 -g1,7968:12621289,38510523 -g1,7968:12937435,38510523 -g1,7968:13253581,38510523 -g1,7968:13569727,38510523 -g1,7968:13885873,38510523 -g1,7968:14202019,38510523 -g1,7968:14518165,38510523 -g1,7968:14834311,38510523 -g1,7968:15150457,38510523 -g1,7968:15466603,38510523 -g1,7968:15782749,38510523 -g1,7968:16098895,38510523 -g1,7968:19260352,38510523 -g1,7968:19576498,38510523 -g1,7968:19892644,38510523 -g1,7968:20208790,38510523 -g1,7968:20524936,38510523 -g1,7968:20841082,38510523 -g1,7968:21157228,38510523 -g1,7968:21473374,38510523 -g1,7968:21789520,38510523 -g1,7968:22105666,38510523 -g1,7968:22421812,38510523 -h1,7968:24634832,38510523:0,0,0 -k1,7968:31966991,38510523:7332159 -g1,7968:31966991,38510523 -) -(1,7968:7246811,39176701:24720180,410518,76021 -h1,7968:7246811,39176701:0,0,0 -g1,7968:8195248,39176701 -g1,7968:9775977,39176701 -g1,7968:11988997,39176701 -g1,7968:12305143,39176701 -g1,7968:12621289,39176701 -g1,7968:12937435,39176701 -g1,7968:13253581,39176701 -g1,7968:13569727,39176701 -g1,7968:13885873,39176701 -g1,7968:14202019,39176701 -g1,7968:14518165,39176701 -g1,7968:14834311,39176701 -g1,7968:15150457,39176701 -g1,7968:15466603,39176701 -g1,7968:15782749,39176701 -g1,7968:16098895,39176701 -g1,7968:18944206,39176701 -g1,7968:19260352,39176701 -g1,7968:19576498,39176701 -g1,7968:19892644,39176701 -g1,7968:20208790,39176701 -g1,7968:20524936,39176701 -g1,7968:20841082,39176701 -g1,7968:21157228,39176701 -g1,7968:21473374,39176701 -g1,7968:21789520,39176701 -g1,7968:22105666,39176701 -g1,7968:22421812,39176701 -h1,7968:25267123,39176701:0,0,0 -k1,7968:31966991,39176701:6699868 -g1,7968:31966991,39176701 -) -(1,7968:7246811,39842879:24720180,404226,76021 -h1,7968:7246811,39842879:0,0,0 -g1,7968:8195248,39842879 -g1,7968:9775977,39842879 -g1,7968:12621288,39842879 -g1,7968:12937434,39842879 -g1,7968:13253580,39842879 -g1,7968:13569726,39842879 -g1,7968:13885872,39842879 -g1,7968:14202018,39842879 -g1,7968:14518164,39842879 -g1,7968:14834310,39842879 -g1,7968:15150456,39842879 -g1,7968:15466602,39842879 -g1,7968:15782748,39842879 -g1,7968:16098894,39842879 -g1,7968:19892642,39842879 -g1,7968:20208788,39842879 -g1,7968:20524934,39842879 -g1,7968:20841080,39842879 -g1,7968:21157226,39842879 -g1,7968:21473372,39842879 -g1,7968:21789518,39842879 -g1,7968:22105664,39842879 -g1,7968:22421810,39842879 -h1,7968:25267121,39842879:0,0,0 -k1,7968:31966991,39842879:6699870 -g1,7968:31966991,39842879 -) -(1,7970:7246811,41164417:24720180,410518,107478 -(1,7969:7246811,41164417:0,0,0 -g1,7969:7246811,41164417 -g1,7969:7246811,41164417 -g1,7969:6919131,41164417 -(1,7969:6919131,41164417:0,0,0 -) -g1,7969:7246811,41164417 -) -h1,7970:11672851,41164417:0,0,0 -k1,7970:31966991,41164417:20294140 -g1,7970:31966991,41164417 -) -(1,7974:7246811,41896131:24720180,404226,76021 -(1,7972:7246811,41896131:0,0,0 -g1,7972:7246811,41896131 -g1,7972:7246811,41896131 -g1,7972:6919131,41896131 -(1,7972:6919131,41896131:0,0,0 -) -g1,7972:7246811,41896131 -) -g1,7974:8195248,41896131 -g1,7974:9459831,41896131 -h1,7974:10724414,41896131:0,0,0 -k1,7974:31966990,41896131:21242576 -g1,7974:31966990,41896131 -) -(1,7976:7246811,43217669:24720180,410518,31456 -(1,7975:7246811,43217669:0,0,0 -g1,7975:7246811,43217669 -g1,7975:7246811,43217669 -g1,7975:6919131,43217669 -(1,7975:6919131,43217669:0,0,0 -) -g1,7975:7246811,43217669 -) -h1,7976:10092123,43217669:0,0,0 -k1,7976:31966991,43217669:21874868 -g1,7976:31966991,43217669 -) -(1,7980:7246811,43949383:24720180,404226,76021 -(1,7978:7246811,43949383:0,0,0 -g1,7978:7246811,43949383 -g1,7978:7246811,43949383 -g1,7978:6919131,43949383 -(1,7978:6919131,43949383:0,0,0 -) -g1,7978:7246811,43949383 -) -g1,7980:8195248,43949383 -g1,7980:9459831,43949383 -h1,7980:9775977,43949383:0,0,0 -k1,7980:31966991,43949383:22191014 -g1,7980:31966991,43949383 -) -] -) -g1,7981:31966991,44025404 -g1,7981:7246811,44025404 -g1,7981:7246811,44025404 -g1,7981:31966991,44025404 -g1,7981:31966991,44025404 +k1,7998:3078556,2439708:-34777008 ) -h1,7981:7246811,44222012:0,0,0 ] +[1,7998:3078558,4812305:0,0,0 +(1,7998:3078558,49800853:0,16384,2228224 +k1,7998:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,7998:2537886,49800853:1179648,16384,0 ) -] -r1,7983:32583029,45336124:26214,18742598,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,7998:3078558,51504789:16384,1179648,0 ) -] +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] +) +) +) +] +[1,7998:3078558,4812305:0,0,0 +(1,7998:3078558,49800853:0,16384,2228224 +g1,7998:29030814,49800853 +g1,7998:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,7998:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,7998:37855564,49800853:1179648,16384,0 +) +) +k1,7998:3078556,49800853:-34777008 +) +] +g1,7998:6630773,4812305 +k1,7998:24502442,4812305:16676292 +g1,7998:25889183,4812305 +g1,7998:26537989,4812305 +g1,7998:29852144,4812305 +) +) +] +[1,7998:6630773,45706769:25952256,40108032,0 +(1,7998:6630773,45706769:25952256,40108032,0 +(1,7998:6630773,45706769:0,0,0 +g1,7998:6630773,45706769 +) +[1,7998:6630773,45706769:25952256,40108032,0 +v1,7951:6630773,6254097:0,393216,0 +(1,7951:6630773,18556062:25952256,12695181,196608 +g1,7951:6630773,18556062 +g1,7951:6630773,18556062 +g1,7951:6434165,18556062 +(1,7951:6434165,18556062:0,12695181,196608 +r1,7951:32779637,18556062:26345472,12891789,196608 +k1,7951:6434165,18556062:-26345472 +) +(1,7951:6434165,18556062:26345472,12695181,196608 +[1,7951:6630773,18556062:25952256,12498573,0 +(1,7936:6630773,6445986:25952256,388497,101187 +h1,7936:6630773,6445986:0,0,0 +g1,7936:7579210,6445986 +g1,7936:9792230,6445986 +g1,7936:10108376,6445986 +g1,7936:10424522,6445986 +g1,7936:10740668,6445986 +g1,7936:11056814,6445986 +g1,7936:11372960,6445986 +g1,7936:11689106,6445986 +g1,7936:14218272,6445986 +g1,7936:14534418,6445986 +g1,7936:14850564,6445986 +g1,7936:15166710,6445986 +g1,7936:17695876,6445986 +g1,7936:18012022,6445986 +g1,7936:18328168,6445986 +g1,7936:20225042,6445986 +g1,7936:20541188,6445986 +g1,7936:20857334,6445986 +g1,7936:21173480,6445986 +h1,7936:22754208,6445986:0,0,0 +k1,7936:32583029,6445986:9828821 +g1,7936:32583029,6445986 +) +(1,7936:6630773,7112164:25952256,379060,0 +h1,7936:6630773,7112164:0,0,0 +g1,7936:7579210,7112164 +k1,7936:7579210,7112164:0 +h1,7936:8527648,7112164:0,0,0 +k1,7936:32583028,7112164:24055380 +g1,7936:32583028,7112164 +) +(1,7936:6630773,7778342:25952256,410518,107478 +h1,7936:6630773,7778342:0,0,0 +g1,7936:7579210,7778342 +g1,7936:10108376,7778342 +g1,7936:12321396,7778342 +g1,7936:12637542,7778342 +g1,7936:13269834,7778342 +g1,7936:15166709,7778342 +g1,7936:17063583,7778342 +g1,7936:18644312,7778342 +g1,7936:20225041,7778342 +g1,7936:21489625,7778342 +g1,7936:23070354,7778342 +g1,7936:24334938,7778342 +g1,7936:25599521,7778342 +g1,7936:26231813,7778342 +g1,7936:26864105,7778342 +h1,7936:27180251,7778342:0,0,0 +k1,7936:32583029,7778342:5402778 +g1,7936:32583029,7778342 +) +(1,7936:6630773,8444520:25952256,379060,0 +h1,7936:6630773,8444520:0,0,0 +h1,7936:7263064,8444520:0,0,0 +k1,7936:32583028,8444520:25319964 +g1,7936:32583028,8444520 +) +(1,7936:6630773,9110698:25952256,410518,101187 +h1,7936:6630773,9110698:0,0,0 +g1,7936:7579210,9110698 +g1,7936:11372958,9110698 +g1,7936:14534415,9110698 +g1,7936:15798998,9110698 +g1,7936:19908892,9110698 +g1,7936:22121912,9110698 +g1,7936:24018786,9110698 +g1,7936:24967223,9110698 +g1,7936:25915660,9110698 +h1,7936:28760971,9110698:0,0,0 +k1,7936:32583029,9110698:3822058 +g1,7936:32583029,9110698 +) +(1,7936:6630773,9776876:25952256,379060,0 +h1,7936:6630773,9776876:0,0,0 +h1,7936:7263064,9776876:0,0,0 +k1,7936:32583028,9776876:25319964 +g1,7936:32583028,9776876 +) +(1,7936:6630773,10443054:25952256,410518,107478 +h1,7936:6630773,10443054:0,0,0 +g1,7936:7579210,10443054 +g1,7936:7895356,10443054 +g1,7936:8211502,10443054 +g1,7936:8527648,10443054 +g1,7936:8843794,10443054 +g1,7936:10424523,10443054 +g1,7936:13585980,10443054 +g1,7936:16115146,10443054 +g1,7936:16431292,10443054 +g1,7936:17379729,10443054 +g1,7936:18328166,10443054 +g1,7936:18644312,10443054 +g1,7936:21173478,10443054 +g1,7936:22121915,10443054 +h1,7936:24334935,10443054:0,0,0 +k1,7936:32583029,10443054:8248094 +g1,7936:32583029,10443054 +) +(1,7936:6630773,11109232:25952256,410518,107478 +h1,7936:6630773,11109232:0,0,0 +g1,7936:7579210,11109232 +g1,7936:10424521,11109232 +g1,7936:13585978,11109232 +g1,7936:13902124,11109232 +g1,7936:16115144,11109232 +g1,7936:16431290,11109232 +g1,7936:17379727,11109232 +g1,7936:18328164,11109232 +g1,7936:18644310,11109232 +g1,7936:21173476,11109232 +g1,7936:22121913,11109232 +h1,7936:24334933,11109232:0,0,0 +k1,7936:32583029,11109232:8248096 +g1,7936:32583029,11109232 +) +(1,7936:6630773,11775410:25952256,379060,7863 +h1,7936:6630773,11775410:0,0,0 +g1,7936:7579210,11775410 +g1,7936:9159939,11775410 +h1,7936:9792230,11775410:0,0,0 +k1,7936:32583030,11775410:22790800 +g1,7936:32583030,11775410 +) +(1,7936:6630773,12441588:25952256,379060,0 +h1,7936:6630773,12441588:0,0,0 +h1,7936:7263064,12441588:0,0,0 +k1,7936:32583028,12441588:25319964 +g1,7936:32583028,12441588 +) +(1,7936:6630773,13107766:25952256,410518,107478 +h1,7936:6630773,13107766:0,0,0 +g1,7936:7579210,13107766 +g1,7936:9792230,13107766 +g1,7936:10740667,13107766 +g1,7936:12953687,13107766 +g1,7936:15482853,13107766 +g1,7936:19276601,13107766 +h1,7936:19592747,13107766:0,0,0 +k1,7936:32583029,13107766:12990282 +g1,7936:32583029,13107766 +) +(1,7938:6630773,14429304:25952256,410518,76021 +(1,7937:6630773,14429304:0,0,0 +g1,7937:6630773,14429304 +g1,7937:6630773,14429304 +g1,7937:6303093,14429304 +(1,7937:6303093,14429304:0,0,0 +) +g1,7937:6630773,14429304 +) +k1,7938:6630773,14429304:0 +k1,7938:6630773,14429304:0 +h1,7938:13269833,14429304:0,0,0 +k1,7938:32583029,14429304:19313196 +g1,7938:32583029,14429304 +) +(1,7943:6630773,15161018:25952256,388497,9436 +(1,7940:6630773,15161018:0,0,0 +g1,7940:6630773,15161018 +g1,7940:6630773,15161018 +g1,7940:6303093,15161018 +(1,7940:6303093,15161018:0,0,0 +) +g1,7940:6630773,15161018 +) +g1,7943:7579210,15161018 +g1,7943:7895356,15161018 +g1,7943:8211502,15161018 +g1,7943:8527648,15161018 +g1,7943:8843794,15161018 +g1,7943:9159940,15161018 +g1,7943:9476086,15161018 +g1,7943:9792232,15161018 +g1,7943:10108378,15161018 +g1,7943:10424524,15161018 +g1,7943:11056816,15161018 +g1,7943:11372962,15161018 +g1,7943:11689108,15161018 +g1,7943:12005254,15161018 +g1,7943:12321400,15161018 +g1,7943:12637546,15161018 +g1,7943:12953692,15161018 +g1,7943:13269838,15161018 +g1,7943:13585984,15161018 +g1,7943:13902130,15161018 +g1,7943:14534422,15161018 +g1,7943:14850568,15161018 +g1,7943:15166714,15161018 +g1,7943:15482860,15161018 +g1,7943:15799006,15161018 +g1,7943:16115152,15161018 +g1,7943:16431298,15161018 +g1,7943:16747444,15161018 +g1,7943:17063590,15161018 +g1,7943:17379736,15161018 +g1,7943:18012028,15161018 +g1,7943:18328174,15161018 +g1,7943:18644320,15161018 +g1,7943:18960466,15161018 +g1,7943:19276612,15161018 +g1,7943:19592758,15161018 +g1,7943:19908904,15161018 +g1,7943:20225050,15161018 +g1,7943:20541196,15161018 +g1,7943:20857342,15161018 +g1,7943:21489634,15161018 +g1,7943:21805780,15161018 +g1,7943:22121926,15161018 +g1,7943:22438072,15161018 +g1,7943:22754218,15161018 +g1,7943:23070364,15161018 +g1,7943:23386510,15161018 +g1,7943:23702656,15161018 +g1,7943:24018802,15161018 +g1,7943:24334948,15161018 +g1,7943:24967240,15161018 +g1,7943:25283386,15161018 +g1,7943:25599532,15161018 +g1,7943:25915678,15161018 +g1,7943:26231824,15161018 +g1,7943:26547970,15161018 +g1,7943:26864116,15161018 +g1,7943:27180262,15161018 +g1,7943:27496408,15161018 +g1,7943:27812554,15161018 +h1,7943:28128700,15161018:0,0,0 +k1,7943:32583029,15161018:4454329 +g1,7943:32583029,15161018 +) +(1,7943:6630773,15827196:25952256,388497,9436 +h1,7943:6630773,15827196:0,0,0 +g1,7943:7579210,15827196 +g1,7943:11056813,15827196 +g1,7943:14534416,15827196 +g1,7943:14850562,15827196 +g1,7943:18012019,15827196 +g1,7943:21489622,15827196 +g1,7943:24967225,15827196 +k1,7943:24967225,15827196:0 +h1,7943:28128682,15827196:0,0,0 +k1,7943:32583029,15827196:4454347 +g1,7943:32583029,15827196 +) +(1,7945:6630773,17148734:25952256,410518,76021 +(1,7944:6630773,17148734:0,0,0 +g1,7944:6630773,17148734 +g1,7944:6630773,17148734 +g1,7944:6303093,17148734 +(1,7944:6303093,17148734:0,0,0 +) +g1,7944:6630773,17148734 +) +k1,7945:6630773,17148734:0 +k1,7945:6630773,17148734:0 +h1,7945:12321396,17148734:0,0,0 +k1,7945:32583028,17148734:20261632 +g1,7945:32583028,17148734 +) +(1,7950:6630773,17880448:25952256,388497,9436 +(1,7947:6630773,17880448:0,0,0 +g1,7947:6630773,17880448 +g1,7947:6630773,17880448 +g1,7947:6303093,17880448 +(1,7947:6303093,17880448:0,0,0 +) +g1,7947:6630773,17880448 +) +g1,7950:7579210,17880448 +g1,7950:7895356,17880448 +g1,7950:8211502,17880448 +g1,7950:8527648,17880448 +g1,7950:9159940,17880448 +g1,7950:9476086,17880448 +g1,7950:9792232,17880448 +g1,7950:10108378,17880448 +g1,7950:10740670,17880448 +g1,7950:11056816,17880448 +g1,7950:11372962,17880448 +g1,7950:11689108,17880448 +g1,7950:12321400,17880448 +g1,7950:12637546,17880448 +g1,7950:12953692,17880448 +g1,7950:13269838,17880448 +g1,7950:13902130,17880448 +g1,7950:14218276,17880448 +g1,7950:14534422,17880448 +g1,7950:14850568,17880448 +g1,7950:15482860,17880448 +g1,7950:15799006,17880448 +g1,7950:16115152,17880448 +g1,7950:16431298,17880448 +h1,7950:16747444,17880448:0,0,0 +k1,7950:32583029,17880448:15835585 +g1,7950:32583029,17880448 +) +(1,7950:6630773,18546626:25952256,388497,9436 +h1,7950:6630773,18546626:0,0,0 +g1,7950:7579210,18546626 +g1,7950:9159939,18546626 +g1,7950:10740668,18546626 +g1,7950:12321397,18546626 +g1,7950:13902126,18546626 +g1,7950:15482855,18546626 +h1,7950:16747438,18546626:0,0,0 +k1,7950:32583029,18546626:15835591 +g1,7950:32583029,18546626 +) +] +) +g1,7951:32583029,18556062 +g1,7951:6630773,18556062 +g1,7951:6630773,18556062 +g1,7951:32583029,18556062 +g1,7951:32583029,18556062 +) +h1,7951:6630773,18752670:0,0,0 +v1,7955:6630773,20409300:0,393216,0 +(1,7988:6630773,38195072:25952256,18178988,616038 +g1,7988:6630773,38195072 +(1,7988:6630773,38195072:25952256,18178988,616038 +(1,7988:6630773,38811110:25952256,18795026,0 +[1,7988:6630773,38811110:25952256,18795026,0 +(1,7988:6630773,38784896:25952256,18742598,0 +r1,7988:6656987,38784896:26214,18742598,0 +[1,7988:6656987,38784896:25899828,18742598,0 +(1,7988:6656987,38195072:25899828,17562950,0 +[1,7988:7246811,38195072:24720180,17562950,0 +(1,7956:7246811,21794007:24720180,1161885,196608 +(1,7955:7246811,21794007:0,1161885,196608 +r1,7988:8794447,21794007:1547636,1358493,196608 +k1,7955:7246811,21794007:-1547636 +) +(1,7955:7246811,21794007:1547636,1161885,196608 +) +k1,7955:9057315,21794007:262868 +k1,7955:9797939,21794007:262867 +k1,7955:10929159,21794007:262868 +k1,7955:12284511,21794007:262867 +(1,7955:12284511,21794007:0,452978,115847 +r1,7988:14049624,21794007:1765113,568825,115847 +k1,7955:12284511,21794007:-1765113 +) +(1,7955:12284511,21794007:1765113,452978,115847 +k1,7955:12284511,21794007:3277 +h1,7955:14046347,21794007:0,411205,112570 +) +k1,7955:14312492,21794007:262868 +k1,7955:15258244,21794007:262867 +(1,7955:15258244,21794007:0,452978,115847 +r1,7988:17726781,21794007:2468537,568825,115847 +k1,7955:15258244,21794007:-2468537 +) +(1,7955:15258244,21794007:2468537,452978,115847 +k1,7955:15258244,21794007:3277 +h1,7955:17723504,21794007:0,411205,112570 +) +k1,7955:17989649,21794007:262868 +k1,7955:19120869,21794007:262868 +k1,7955:20488018,21794007:262867 +k1,7955:21775869,21794007:262868 +k1,7955:23323242,21794007:262867 +k1,7955:25240894,21794007:262868 +k1,7955:26495321,21794007:262867 +k1,7955:28450329,21794007:262868 +k1,7955:31966991,21794007:0 +) +(1,7956:7246811,22635495:24720180,513147,134348 +k1,7955:8809892,22635495:169130 +k1,7955:11303583,22635495:169129 +k1,7955:12124141,22635495:169130 +k1,7955:14105997,22635495:169130 +k1,7955:16262833,22635495:169129 +k1,7955:17623408,22635495:169130 +k1,7955:18989224,22635495:169129 +k1,7955:21937081,22635495:169130 +k1,7955:24065737,22635495:169130 +k1,7955:24766363,22635495:169129 +k1,7955:25594785,22635495:169130 +k1,7955:26119775,22635495:169130 +k1,7955:29051247,22635495:169129 +k1,7955:30775546,22635495:169130 +k1,7955:31966991,22635495:0 +) +(1,7956:7246811,23476983:24720180,513147,126483 +k1,7955:10128227,23476983:179367 +k1,7955:11999734,23476983:179367 +k1,7955:15132809,23476983:179367 +k1,7955:16378447,23476983:179367 +k1,7955:18963641,23476983:179367 +k1,7955:19759046,23476983:179367 +k1,7955:21751138,23476983:179366 +k1,7955:24422184,23476983:179367 +k1,7955:25951593,23476983:179367 +k1,7955:26790252,23476983:179367 +k1,7955:28666346,23476983:179367 +k1,7955:30320928,23476983:179367 +k1,7955:31151723,23476983:179367 +k1,7955:31966991,23476983:0 +) +(1,7956:7246811,24318471:24720180,513147,126483 +k1,7955:8899192,24318471:258430 +k1,7955:10176706,24318471:258429 +k1,7955:13047401,24318471:258430 +k1,7955:17995586,24318471:258429 +k1,7955:20708339,24318471:258430 +k1,7955:22653665,24318471:258429 +(1,7955:22653665,24318471:0,452978,115847 +r1,7988:24067066,24318471:1413401,568825,115847 +k1,7955:22653665,24318471:-1413401 +) +(1,7955:22653665,24318471:1413401,452978,115847 +k1,7955:22653665,24318471:3277 +h1,7955:24063789,24318471:0,411205,112570 +) +k1,7955:24325496,24318471:258430 +k1,7955:27285974,24318471:258429 +k1,7955:28563489,24318471:258430 +k1,7955:31307699,24318471:258429 +k1,7955:31966991,24318471:0 +) +(1,7956:7246811,25159959:24720180,513147,134348 +g1,7955:10493464,25159959 +g1,7955:12205919,25159959 +g1,7955:13596593,25159959 +(1,7955:13596593,25159959:0,452978,122846 +r1,7988:16768553,25159959:3171960,575824,122846 +k1,7955:13596593,25159959:-3171960 +) +(1,7955:13596593,25159959:3171960,452978,122846 +k1,7955:13596593,25159959:3277 +h1,7955:16765276,25159959:0,411205,112570 +) +g1,7955:16967782,25159959 +g1,7955:18186096,25159959 +g1,7955:20805570,25159959 +g1,7955:21687684,25159959 +g1,7955:22953184,25159959 +g1,7955:23768451,25159959 +g1,7955:26224085,25159959 +g1,7955:26779174,25159959 +k1,7956:31966991,25159959:2401882 +g1,7956:31966991,25159959 +) +v1,7958:7246811,26350425:0,393216,0 +(1,7986:7246811,37474176:24720180,11516967,196608 +g1,7986:7246811,37474176 +g1,7986:7246811,37474176 +g1,7986:7050203,37474176 +(1,7986:7050203,37474176:0,11516967,196608 +r1,7988:32163599,37474176:25113396,11713575,196608 +k1,7986:7050203,37474176:-25113396 +) +(1,7986:7050203,37474176:25113396,11516967,196608 +[1,7986:7246811,37474176:24720180,11320359,0 +(1,7960:7246811,26564335:24720180,410518,76021 +(1,7959:7246811,26564335:0,0,0 +g1,7959:7246811,26564335 +g1,7959:7246811,26564335 +g1,7959:6919131,26564335 +(1,7959:6919131,26564335:0,0,0 +) +g1,7959:7246811,26564335 +) +k1,7960:7246811,26564335:0 +h1,7960:10724413,26564335:0,0,0 +k1,7960:31966991,26564335:21242578 +g1,7960:31966991,26564335 +) +(1,7973:7246811,27296049:24720180,410518,76021 +(1,7962:7246811,27296049:0,0,0 +g1,7962:7246811,27296049 +g1,7962:7246811,27296049 +g1,7962:6919131,27296049 +(1,7962:6919131,27296049:0,0,0 +) +g1,7962:7246811,27296049 +) +g1,7973:8195248,27296049 +g1,7973:8511394,27296049 +g1,7973:9775977,27296049 +g1,7973:14518163,27296049 +g1,7973:14834309,27296049 +g1,7973:15150455,27296049 +g1,7973:15466601,27296049 +g1,7973:15782747,27296049 +g1,7973:16098893,27296049 +g1,7973:19892641,27296049 +g1,7973:20208787,27296049 +g1,7973:20524933,27296049 +g1,7973:20841079,27296049 +g1,7973:21157225,27296049 +g1,7973:21473371,27296049 +g1,7973:21789517,27296049 +g1,7973:22105663,27296049 +g1,7973:22421809,27296049 +h1,7973:27163994,27296049:0,0,0 +k1,7973:31966991,27296049:4802997 +g1,7973:31966991,27296049 +) +(1,7973:7246811,27962227:24720180,410518,76021 +h1,7973:7246811,27962227:0,0,0 +g1,7973:8195248,27962227 +g1,7973:8511394,27962227 +g1,7973:9775977,27962227 +g1,7973:12937434,27962227 +g1,7973:13253580,27962227 +g1,7973:13569726,27962227 +g1,7973:13885872,27962227 +g1,7973:14202018,27962227 +g1,7973:14518164,27962227 +g1,7973:14834310,27962227 +g1,7973:15150456,27962227 +g1,7973:15466602,27962227 +g1,7973:15782748,27962227 +g1,7973:16098894,27962227 +g1,7973:17363477,27962227 +g1,7973:17679623,27962227 +g1,7973:17995769,27962227 +g1,7973:18311915,27962227 +g1,7973:18628061,27962227 +g1,7973:18944207,27962227 +g1,7973:19260353,27962227 +g1,7973:19576499,27962227 +g1,7973:19892645,27962227 +g1,7973:20208791,27962227 +g1,7973:20524937,27962227 +g1,7973:20841083,27962227 +g1,7973:21157229,27962227 +g1,7973:21473375,27962227 +g1,7973:21789521,27962227 +g1,7973:22105667,27962227 +g1,7973:22421813,27962227 +h1,7973:24318687,27962227:0,0,0 +k1,7973:31966991,27962227:7648304 +g1,7973:31966991,27962227 +) +(1,7973:7246811,28628405:24720180,410518,101187 +h1,7973:7246811,28628405:0,0,0 +g1,7973:8195248,28628405 +g1,7973:8511394,28628405 +g1,7973:9775977,28628405 +g1,7973:11356706,28628405 +g1,7973:11672852,28628405 +g1,7973:11988998,28628405 +g1,7973:12305144,28628405 +g1,7973:12621290,28628405 +g1,7973:12937436,28628405 +g1,7973:13253582,28628405 +g1,7973:13569728,28628405 +g1,7973:13885874,28628405 +g1,7973:14202020,28628405 +g1,7973:14518166,28628405 +g1,7973:14834312,28628405 +g1,7973:15150458,28628405 +g1,7973:15466604,28628405 +g1,7973:15782750,28628405 +g1,7973:16098896,28628405 +g1,7973:18944207,28628405 +g1,7973:19260353,28628405 +g1,7973:19576499,28628405 +g1,7973:19892645,28628405 +g1,7973:20208791,28628405 +g1,7973:20524937,28628405 +g1,7973:20841083,28628405 +g1,7973:21157229,28628405 +g1,7973:21473375,28628405 +g1,7973:21789521,28628405 +g1,7973:22105667,28628405 +g1,7973:22421813,28628405 +h1,7973:28428581,28628405:0,0,0 +k1,7973:31966991,28628405:3538410 +g1,7973:31966991,28628405 +) +(1,7973:7246811,29294583:24720180,404226,76021 +h1,7973:7246811,29294583:0,0,0 +g1,7973:8195248,29294583 +g1,7973:9775977,29294583 +g1,7973:13253580,29294583 +g1,7973:13569726,29294583 +g1,7973:13885872,29294583 +g1,7973:14202018,29294583 +g1,7973:14518164,29294583 +g1,7973:14834310,29294583 +g1,7973:15150456,29294583 +g1,7973:15466602,29294583 +g1,7973:15782748,29294583 +g1,7973:16098894,29294583 +g1,7973:17995768,29294583 +g1,7973:18311914,29294583 +g1,7973:18628060,29294583 +g1,7973:18944206,29294583 +g1,7973:19260352,29294583 +g1,7973:19576498,29294583 +g1,7973:19892644,29294583 +g1,7973:20208790,29294583 +g1,7973:20524936,29294583 +g1,7973:20841082,29294583 +g1,7973:21157228,29294583 +g1,7973:21473374,29294583 +g1,7973:21789520,29294583 +g1,7973:22105666,29294583 +g1,7973:22421812,29294583 +h1,7973:27163997,29294583:0,0,0 +k1,7973:31966991,29294583:4802994 +g1,7973:31966991,29294583 +) +(1,7973:7246811,29960761:24720180,404226,107478 +h1,7973:7246811,29960761:0,0,0 +g1,7973:8195248,29960761 +g1,7973:9775977,29960761 +g1,7973:11988997,29960761 +g1,7973:12305143,29960761 +g1,7973:12621289,29960761 +g1,7973:12937435,29960761 +g1,7973:13253581,29960761 +g1,7973:13569727,29960761 +g1,7973:13885873,29960761 +g1,7973:14202019,29960761 +g1,7973:14518165,29960761 +g1,7973:14834311,29960761 +g1,7973:15150457,29960761 +g1,7973:15466603,29960761 +g1,7973:15782749,29960761 +g1,7973:16098895,29960761 +g1,7973:19260352,29960761 +g1,7973:19576498,29960761 +g1,7973:19892644,29960761 +g1,7973:20208790,29960761 +g1,7973:20524936,29960761 +g1,7973:20841082,29960761 +g1,7973:21157228,29960761 +g1,7973:21473374,29960761 +g1,7973:21789520,29960761 +g1,7973:22105666,29960761 +g1,7973:22421812,29960761 +h1,7973:27163997,29960761:0,0,0 +k1,7973:31966991,29960761:4802994 +g1,7973:31966991,29960761 +) +(1,7973:7246811,30626939:24720180,410518,101187 +h1,7973:7246811,30626939:0,0,0 +g1,7973:8195248,30626939 +g1,7973:9775977,30626939 +g1,7973:14202017,30626939 +g1,7973:14518163,30626939 +g1,7973:14834309,30626939 +g1,7973:15150455,30626939 +g1,7973:15466601,30626939 +g1,7973:15782747,30626939 +g1,7973:16098893,30626939 +g1,7973:19260350,30626939 +g1,7973:19576496,30626939 +g1,7973:19892642,30626939 +g1,7973:20208788,30626939 +g1,7973:20524934,30626939 +g1,7973:20841080,30626939 +g1,7973:21157226,30626939 +g1,7973:21473372,30626939 +g1,7973:21789518,30626939 +g1,7973:22105664,30626939 +g1,7973:22421810,30626939 +h1,7973:23370247,30626939:0,0,0 +k1,7973:31966991,30626939:8596744 +g1,7973:31966991,30626939 +) +(1,7973:7246811,31293117:24720180,404226,107478 +h1,7973:7246811,31293117:0,0,0 +g1,7973:8195248,31293117 +g1,7973:9775977,31293117 +g1,7973:13569725,31293117 +g1,7973:13885871,31293117 +g1,7973:14202017,31293117 +g1,7973:14518163,31293117 +g1,7973:14834309,31293117 +g1,7973:15150455,31293117 +g1,7973:15466601,31293117 +g1,7973:15782747,31293117 +g1,7973:16098893,31293117 +g1,7973:19576496,31293117 +g1,7973:19892642,31293117 +g1,7973:20208788,31293117 +g1,7973:20524934,31293117 +g1,7973:20841080,31293117 +g1,7973:21157226,31293117 +g1,7973:21473372,31293117 +g1,7973:21789518,31293117 +g1,7973:22105664,31293117 +g1,7973:22421810,31293117 +h1,7973:24634830,31293117:0,0,0 +k1,7973:31966991,31293117:7332161 +g1,7973:31966991,31293117 +) +(1,7973:7246811,31959295:24720180,410518,76021 +h1,7973:7246811,31959295:0,0,0 +g1,7973:8195248,31959295 +g1,7973:9775977,31959295 +g1,7973:11988997,31959295 +g1,7973:12305143,31959295 +g1,7973:12621289,31959295 +g1,7973:12937435,31959295 +g1,7973:13253581,31959295 +g1,7973:13569727,31959295 +g1,7973:13885873,31959295 +g1,7973:14202019,31959295 +g1,7973:14518165,31959295 +g1,7973:14834311,31959295 +g1,7973:15150457,31959295 +g1,7973:15466603,31959295 +g1,7973:15782749,31959295 +g1,7973:16098895,31959295 +g1,7973:19260352,31959295 +g1,7973:19576498,31959295 +g1,7973:19892644,31959295 +g1,7973:20208790,31959295 +g1,7973:20524936,31959295 +g1,7973:20841082,31959295 +g1,7973:21157228,31959295 +g1,7973:21473374,31959295 +g1,7973:21789520,31959295 +g1,7973:22105666,31959295 +g1,7973:22421812,31959295 +h1,7973:24634832,31959295:0,0,0 +k1,7973:31966991,31959295:7332159 +g1,7973:31966991,31959295 +) +(1,7973:7246811,32625473:24720180,410518,76021 +h1,7973:7246811,32625473:0,0,0 +g1,7973:8195248,32625473 +g1,7973:9775977,32625473 +g1,7973:11988997,32625473 +g1,7973:12305143,32625473 +g1,7973:12621289,32625473 +g1,7973:12937435,32625473 +g1,7973:13253581,32625473 +g1,7973:13569727,32625473 +g1,7973:13885873,32625473 +g1,7973:14202019,32625473 +g1,7973:14518165,32625473 +g1,7973:14834311,32625473 +g1,7973:15150457,32625473 +g1,7973:15466603,32625473 +g1,7973:15782749,32625473 +g1,7973:16098895,32625473 +g1,7973:18944206,32625473 +g1,7973:19260352,32625473 +g1,7973:19576498,32625473 +g1,7973:19892644,32625473 +g1,7973:20208790,32625473 +g1,7973:20524936,32625473 +g1,7973:20841082,32625473 +g1,7973:21157228,32625473 +g1,7973:21473374,32625473 +g1,7973:21789520,32625473 +g1,7973:22105666,32625473 +g1,7973:22421812,32625473 +h1,7973:25267123,32625473:0,0,0 +k1,7973:31966991,32625473:6699868 +g1,7973:31966991,32625473 +) +(1,7973:7246811,33291651:24720180,404226,76021 +h1,7973:7246811,33291651:0,0,0 +g1,7973:8195248,33291651 +g1,7973:9775977,33291651 +g1,7973:12621288,33291651 +g1,7973:12937434,33291651 +g1,7973:13253580,33291651 +g1,7973:13569726,33291651 +g1,7973:13885872,33291651 +g1,7973:14202018,33291651 +g1,7973:14518164,33291651 +g1,7973:14834310,33291651 +g1,7973:15150456,33291651 +g1,7973:15466602,33291651 +g1,7973:15782748,33291651 +g1,7973:16098894,33291651 +g1,7973:19892642,33291651 +g1,7973:20208788,33291651 +g1,7973:20524934,33291651 +g1,7973:20841080,33291651 +g1,7973:21157226,33291651 +g1,7973:21473372,33291651 +g1,7973:21789518,33291651 +g1,7973:22105664,33291651 +g1,7973:22421810,33291651 +h1,7973:25267121,33291651:0,0,0 +k1,7973:31966991,33291651:6699870 +g1,7973:31966991,33291651 +) +(1,7975:7246811,34613189:24720180,410518,107478 +(1,7974:7246811,34613189:0,0,0 +g1,7974:7246811,34613189 +g1,7974:7246811,34613189 +g1,7974:6919131,34613189 +(1,7974:6919131,34613189:0,0,0 +) +g1,7974:7246811,34613189 +) +h1,7975:11672851,34613189:0,0,0 +k1,7975:31966991,34613189:20294140 +g1,7975:31966991,34613189 +) +(1,7979:7246811,35344903:24720180,404226,76021 +(1,7977:7246811,35344903:0,0,0 +g1,7977:7246811,35344903 +g1,7977:7246811,35344903 +g1,7977:6919131,35344903 +(1,7977:6919131,35344903:0,0,0 +) +g1,7977:7246811,35344903 +) +g1,7979:8195248,35344903 +g1,7979:9459831,35344903 +h1,7979:10724414,35344903:0,0,0 +k1,7979:31966990,35344903:21242576 +g1,7979:31966990,35344903 +) +(1,7981:7246811,36666441:24720180,410518,31456 +(1,7980:7246811,36666441:0,0,0 +g1,7980:7246811,36666441 +g1,7980:7246811,36666441 +g1,7980:6919131,36666441 +(1,7980:6919131,36666441:0,0,0 +) +g1,7980:7246811,36666441 +) +h1,7981:10092123,36666441:0,0,0 +k1,7981:31966991,36666441:21874868 +g1,7981:31966991,36666441 +) +(1,7985:7246811,37398155:24720180,404226,76021 +(1,7983:7246811,37398155:0,0,0 +g1,7983:7246811,37398155 +g1,7983:7246811,37398155 +g1,7983:6919131,37398155 +(1,7983:6919131,37398155:0,0,0 +) +g1,7983:7246811,37398155 +) +g1,7985:8195248,37398155 +g1,7985:9459831,37398155 +h1,7985:9775977,37398155:0,0,0 +k1,7985:31966991,37398155:22191014 +g1,7985:31966991,37398155 +) +] +) +g1,7986:31966991,37474176 +g1,7986:7246811,37474176 +g1,7986:7246811,37474176 +g1,7986:31966991,37474176 +g1,7986:31966991,37474176 +) +h1,7986:7246811,37670784:0,0,0 +] +) +] +r1,7988:32583029,38784896:26214,18742598,0 +) +] +) +) +g1,7988:32583029,38195072 +) +h1,7988:6630773,38811110:0,0,0 +(1,7992:6630773,42026249:25952256,32768,229376 +(1,7992:6630773,42026249:0,32768,229376 +(1,7992:6630773,42026249:5505024,32768,229376 +r1,7992:12135797,42026249:5505024,262144,229376 ) +k1,7992:6630773,42026249:-5505024 ) -g1,7983:32583029,44746300 +(1,7992:6630773,42026249:25952256,32768,0 +r1,7992:32583029,42026249:25952256,32768,0 ) -h1,7983:6630773,45362338:0,0,0 -] -(1,7993:32583029,45706769:0,0,0 -g1,7993:32583029,45706769 ) +(1,7992:6630773,43630577:25952256,606339,161218 +(1,7992:6630773,43630577:1974731,582746,14155 +g1,7992:6630773,43630577 +g1,7992:8605504,43630577 ) -] -(1,7993:6630773,47279633:25952256,0,0 -h1,7993:6630773,47279633:25952256,0,0 +g1,7992:12965483,43630577 +k1,7992:32583029,43630577:15456534 +g1,7992:32583029,43630577 ) -] -h1,7993:4262630,4025873:0,0,0 -] -!32031 -}149 -Input:1100:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1101:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1102:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1103:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1104:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1105:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1106:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1107:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1108:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1109:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1110:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1111:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1112:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1113:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1114:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1115:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1388 -{150 -[1,8005:4262630,47279633:28320399,43253760,0 -(1,8005:4262630,4025873:0,0,0 -[1,8005:-473657,4025873:25952256,0,0 -(1,8005:-473657,-710414:25952256,0,0 -h1,8005:-473657,-710414:0,0,0 -(1,8005:-473657,-710414:0,0,0 -(1,8005:-473657,-710414:0,0,0 -g1,8005:-473657,-710414 -(1,8005:-473657,-710414:65781,0,65781 -g1,8005:-407876,-710414 -[1,8005:-407876,-644633:0,0,0 -] +(1,7998:6630773,44865281:25952256,513147,134348 +k1,7997:9662941,44865281:242300 +(1,7997:9662941,44865281:0,452978,115847 +r1,7997:11428054,44865281:1765113,568825,115847 +k1,7997:9662941,44865281:-1765113 ) -k1,8005:-473657,-710414:-65781 +(1,7997:9662941,44865281:1765113,452978,115847 +k1,7997:9662941,44865281:3277 +h1,7997:11424777,44865281:0,411205,112570 ) +k1,7997:11670354,44865281:242300 +k1,7997:12444151,44865281:242300 +k1,7997:13605266,44865281:242300 +k1,7997:17219393,44865281:242300 +k1,7997:18409345,44865281:242301 +k1,7997:20586268,44865281:242300 +k1,7997:24078498,44865281:242300 +k1,7997:26812477,44865281:242300 +k1,7997:27814995,44865281:242300 +k1,7997:31351135,44865281:242300 +k1,7997:32051532,44865281:242300 +k1,7997:32583029,44865281:0 ) -k1,8005:25478599,-710414:25952256 -g1,8005:25478599,-710414 +(1,7998:6630773,45706769:25952256,505283,134348 +k1,7997:8927941,45706769:302252 +k1,7997:12480123,45706769:302252 +k1,7997:13385306,45706769:302252 +k1,7997:14673219,45706769:302252 +k1,7997:18628447,45706769:302251 +k1,7997:20938722,45706769:302252 +k1,7997:23251619,45706769:302252 +k1,7997:24545431,45706769:302252 +k1,7997:26585698,45706769:302252 +k1,7997:30024503,45706769:302252 +k1,7997:32583029,45706769:0 ) ] +(1,7998:32583029,45706769:0,0,0 +g1,7998:32583029,45706769 ) -[1,8005:6630773,47279633:25952256,43253760,0 -[1,8005:6630773,4812305:25952256,786432,0 -(1,8005:6630773,4812305:25952256,505283,134348 -(1,8005:6630773,4812305:25952256,505283,134348 -g1,8005:3078558,4812305 -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,2439708:0,1703936,0 -k1,8005:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8005:2537886,2439708:1179648,16384,0 -) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8005:3078558,1915420:16384,1179648,0 -) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 ) ] -) -) +(1,7998:6630773,47279633:25952256,0,0 +h1,7998:6630773,47279633:25952256,0,0 ) ] -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,2439708:0,1703936,0 -g1,8005:29030814,2439708 -g1,8005:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8005:36151628,1915420:16384,1179648,0 -) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 -) +h1,7998:4262630,4025873:0,0,0 +] +!28491 +}149 +Input:1096:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1097:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1098:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1099:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1100:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1101:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1102:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1103:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1104:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1105:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1106:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1107:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1108:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1109:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1110:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1111:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 +{150 +[1,8024:4262630,47279633:28320399,43253760,0 +(1,8024:4262630,4025873:0,0,0 +[1,8024:-473657,4025873:25952256,0,0 +(1,8024:-473657,-710414:25952256,0,0 +h1,8024:-473657,-710414:0,0,0 +(1,8024:-473657,-710414:0,0,0 +(1,8024:-473657,-710414:0,0,0 +g1,8024:-473657,-710414 +(1,8024:-473657,-710414:65781,0,65781 +g1,8024:-407876,-710414 +[1,8024:-407876,-644633:0,0,0 ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8005:37855564,2439708:1179648,16384,0 +k1,8024:-473657,-710414:-65781 ) ) -k1,8005:3078556,2439708:-34777008 +k1,8024:25478599,-710414:25952256 +g1,8024:25478599,-710414 ) ] -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,49800853:0,16384,2228224 -k1,8005:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8005:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8005:3078558,51504789:16384,1179648,0 +[1,8024:6630773,47279633:25952256,43253760,0 +[1,8024:6630773,4812305:25952256,786432,0 +(1,8024:6630773,4812305:25952256,505283,134348 +(1,8024:6630773,4812305:25952256,505283,134348 +g1,8024:3078558,4812305 +[1,8024:3078558,4812305:0,0,0 +(1,8024:3078558,2439708:0,1703936,0 +k1,8024:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8024:2537886,2439708:1179648,16384,0 +) +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8024:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8005:3078558,4812305:0,0,0 -(1,8005:3078558,49800853:0,16384,2228224 -g1,8005:29030814,49800853 -g1,8005:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8005:36151628,51504789:16384,1179648,0 +[1,8024:3078558,4812305:0,0,0 +(1,8024:3078558,2439708:0,1703936,0 +g1,8024:29030814,2439708 +g1,8024:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8024:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8005:37855564,49800853:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8024:37855564,2439708:1179648,16384,0 ) ) -k1,8005:3078556,49800853:-34777008 +k1,8024:3078556,2439708:-34777008 ) ] -g1,8005:6630773,4812305 -g1,8005:6630773,4812305 -g1,8005:10153333,4812305 -g1,8005:13588730,4812305 -k1,8005:31387652,4812305:17798922 -) -) -] -[1,8005:6630773,45706769:25952256,40108032,0 -(1,8005:6630773,45706769:25952256,40108032,0 -(1,8005:6630773,45706769:0,0,0 -g1,8005:6630773,45706769 -) -[1,8005:6630773,45706769:25952256,40108032,0 -(1,7987:6630773,6254097:25952256,32768,229376 -(1,7987:6630773,6254097:0,32768,229376 -(1,7987:6630773,6254097:5505024,32768,229376 -r1,7987:12135797,6254097:5505024,262144,229376 -) -k1,7987:6630773,6254097:-5505024 -) -(1,7987:6630773,6254097:25952256,32768,0 -r1,7987:32583029,6254097:25952256,32768,0 -) -) -(1,7987:6630773,7858425:25952256,606339,161218 -(1,7987:6630773,7858425:1974731,582746,14155 -g1,7987:6630773,7858425 -g1,7987:8605504,7858425 -) -g1,7987:12965483,7858425 -k1,7987:32583029,7858425:15456534 -g1,7987:32583029,7858425 -) -(1,7993:6630773,9093129:25952256,513147,134348 -k1,7992:9553510,9093129:132869 -(1,7992:9553510,9093129:0,452978,115847 -r1,7992:11318623,9093129:1765113,568825,115847 -k1,7992:9553510,9093129:-1765113 -) -(1,7992:9553510,9093129:1765113,452978,115847 -k1,7992:9553510,9093129:3277 -h1,7992:11315346,9093129:0,411205,112570 -) -k1,7992:11451492,9093129:132869 -k1,7992:12115858,9093129:132869 -k1,7992:13167542,9093129:132869 -k1,7992:16672238,9093129:132869 -k1,7992:17752758,9093129:132869 -k1,7992:19820251,9093129:132870 -k1,7992:23203050,9093129:132869 -k1,7992:25827598,9093129:132869 -k1,7992:26720685,9093129:132869 -k1,7992:30147394,9093129:132869 -k1,7992:30738360,9093129:132869 -k1,7992:31402726,9093129:132869 -k1,7993:32583029,9093129:0 -) -(1,7993:6630773,9934617:25952256,513147,134348 -k1,7992:7845215,9934617:186837 -k1,7992:11281982,9934617:186837 -k1,7992:12071750,9934617:186837 -k1,7992:13244248,9934617:186837 -k1,7992:17084062,9934617:186837 -k1,7992:19278922,9934617:186837 -k1,7992:21476404,9934617:186837 -k1,7992:22654801,9934617:186837 -k1,7992:24579653,9934617:186837 -k1,7992:27903043,9934617:186837 -k1,7992:30648406,9934617:186837 -k1,7992:32583029,9934617:0 -) -(1,7993:6630773,10776105:25952256,513147,126483 -k1,7992:7833499,10776105:183641 -k1,7992:10004847,10776105:183641 -k1,7992:10839916,10776105:183641 -k1,7992:12586591,10776105:183641 -k1,7992:14151076,10776105:183641 -k1,7992:14866214,10776105:183641 -k1,7992:17812198,10776105:183641 -k1,7992:19563460,10776105:183641 -k1,7992:20766186,10776105:183641 -k1,7992:22818914,10776105:183641 -k1,7992:23661847,10776105:183641 -k1,7992:24864573,10776105:183641 -k1,7992:27743710,10776105:183641 -k1,7992:29625389,10776105:183641 -k1,7993:32583029,10776105:0 -) -(1,7993:6630773,11617593:25952256,513147,134348 -k1,7992:7864340,11617593:164019 -k1,7992:11931682,11617593:164018 -k1,7992:12754993,11617593:164019 -k1,7992:14050818,11617593:164018 -k1,7992:16340170,11617593:164019 -k1,7992:17495748,11617593:164018 -k1,7992:19472493,11617593:164019 -k1,7992:22128190,11617593:164018 -k1,7992:22920044,11617593:164019 -k1,7992:25889003,11617593:164018 -k1,7992:27072107,11617593:164019 -k1,7992:32583029,11617593:0 -) -(1,7993:6630773,12459081:25952256,505283,134348 -k1,7992:9656809,12459081:236168 -k1,7992:11406203,12459081:236168 -k1,7992:12258408,12459081:236167 -k1,7992:15648168,12459081:236168 -k1,7992:17075781,12459081:236168 -k1,7992:18331034,12459081:236168 -k1,7992:21764704,12459081:236168 -k1,7992:24790740,12459081:236168 -k1,7992:26540133,12459081:236167 -k1,7992:27427729,12459081:236168 -k1,7992:30333178,12459081:236168 -k1,7992:32583029,12459081:0 -) -(1,7993:6630773,13300569:25952256,505283,126483 -g1,7992:7821562,13300569 -g1,7992:11270721,13300569 -g1,7992:13787958,13300569 -g1,7992:14603225,13300569 -g1,7992:16311093,13300569 -k1,7993:32583029,13300569:12487232 -g1,7993:32583029,13300569 -) -(1,7995:6630773,14142057:25952256,513147,134348 -h1,7994:6630773,14142057:983040,0,0 -k1,7994:9660502,14142057:271974 -k1,7994:12977935,14142057:271975 -k1,7994:16691204,14142057:271974 -k1,7994:18463952,14142057:271974 -k1,7994:19683578,14142057:271975 -k1,7994:22211957,14142057:271974 -k1,7994:25530044,14142057:271974 -k1,7994:26749669,14142057:271974 -k1,7994:28040729,14142057:271975 -k1,7994:31923737,14142057:271974 -k1,7994:32583029,14142057:0 -) -(1,7995:6630773,14983545:25952256,513147,126483 -k1,7994:8646963,14983545:203464 -k1,7994:11342106,14983545:203464 -k1,7994:12161608,14983545:203464 -k1,7994:13384157,14983545:203464 -k1,7994:14954702,14983545:203464 -k1,7994:15817458,14983545:203464 -k1,7994:19270852,14983545:203464 -k1,7994:21965995,14983545:203464 -k1,7994:23188544,14983545:203464 -k1,7994:26438121,14983545:203464 -k1,7994:27633145,14983545:203464 -k1,7994:30628443,14983545:203464 -k1,7994:31593435,14983545:203464 -k1,7995:32583029,14983545:0 -) -(1,7995:6630773,15825033:25952256,505283,126483 -k1,7994:10915779,15825033:198181 -k1,7994:12155982,15825033:198181 -k1,7994:15399620,15825033:198180 -k1,7994:18714038,15825033:198181 -k1,7994:21958332,15825033:198181 -k1,7994:23260795,15825033:198181 -k1,7994:25588241,15825033:198181 -k1,7994:26534187,15825033:198180 -k1,7994:29697872,15825033:198181 -k1,7994:31966991,15825033:198181 -k1,7994:32583029,15825033:0 -) -(1,7995:6630773,16666521:25952256,513147,134348 -k1,7994:10185053,16666521:199492 -k1,7994:14297043,16666521:199491 -k1,7994:16193917,16666521:199492 -k1,7994:18312302,16666521:199491 -k1,7994:21005439,16666521:199492 -k1,7994:22014301,16666521:199492 -k1,7994:24645833,16666521:199491 -k1,7994:26533532,16666521:199492 -k1,7994:29549105,16666521:199491 -k1,7994:31142548,16666521:199492 -k1,7995:32583029,16666521:0 -) -(1,7995:6630773,17508009:25952256,505283,134348 -k1,7994:7903482,17508009:247726 -k1,7994:11399172,17508009:247726 -k1,7994:15049527,17508009:247726 -k1,7994:18220815,17508009:247727 -k1,7994:20405785,17508009:247726 -k1,7994:21938017,17508009:247726 -k1,7994:24570598,17508009:247726 -k1,7994:29141734,17508009:247726 -k1,7994:32583029,17508009:0 -) -(1,7995:6630773,18349497:25952256,513147,134348 -k1,7994:8185156,18349497:269877 -k1,7994:9446593,18349497:269877 -k1,7994:11256566,18349497:269877 -k1,7994:12474094,18349497:269877 -k1,7994:13940659,18349497:269878 -k1,7994:17200288,18349497:269877 -k1,7994:18512187,18349497:269877 -k1,7994:23802122,18349497:269877 -k1,7994:26863833,18349497:269877 -k1,7994:29692236,18349497:269877 -k1,7994:32583029,18349497:0 -) -(1,7995:6630773,19190985:25952256,513147,134348 -k1,7994:8512639,19190985:184484 -k1,7994:10395160,19190985:184483 -k1,7994:11598729,19190985:184484 -k1,7994:14894207,19190985:184484 -k1,7994:16435942,19190985:184484 -k1,7994:17271853,19190985:184483 -k1,7994:20303221,19190985:184484 -k1,7994:21948503,19190985:184484 -k1,7994:22903690,19190985:184484 -k1,7994:25345888,19190985:184483 -k1,7994:26521932,19190985:184484 -k1,7994:29631943,19190985:184484 -k1,7994:32583029,19190985:0 -) -(1,7995:6630773,20032473:25952256,513147,134348 -k1,7994:9439294,20032473:184459 -k1,7994:13065047,20032473:184458 -k1,7994:15764122,20032473:184459 -k1,7994:16600008,20032473:184458 -k1,7994:19413771,20032473:184459 -k1,7994:20368932,20032473:184458 -k1,7994:22389710,20032473:184459 -k1,7994:24371165,20032473:184458 -k1,7994:25503275,20032473:184459 -k1,7994:26706818,20032473:184458 -k1,7994:28901922,20032473:184459 -k1,7994:29745672,20032473:184458 -k1,7994:30949216,20032473:184459 -k1,7995:32583029,20032473:0 -) -(1,7995:6630773,20873961:25952256,513147,134348 -k1,7994:9028836,20873961:207850 -k1,7994:9888114,20873961:207850 -k1,7994:10843730,20873961:207850 -k1,7994:14361803,20873961:207850 -k1,7994:14925513,20873961:207850 -k1,7994:16930360,20873961:207850 -k1,7994:20443190,20873961:207849 -k1,7994:23412072,20873961:207850 -k1,7994:24381450,20873961:207850 -k1,7994:25608385,20873961:207850 -k1,7994:27370749,20873961:207850 -k1,7994:28206434,20873961:207850 -k1,7994:29865906,20873961:207850 -k1,7994:32583029,20873961:0 -) -(1,7995:6630773,21715449:25952256,505283,134348 -k1,7994:7884073,21715449:234215 -k1,7994:10834101,21715449:234216 -k1,7994:13860150,21715449:234215 -k1,7994:14710404,21715449:234216 -k1,7994:15963704,21715449:234215 -k1,7994:18952397,21715449:234215 -k1,7994:21903736,21715449:234216 -k1,7994:22669448,21715449:234215 -k1,7994:24416889,21715449:234215 -k1,7994:25337267,21715449:234216 -k1,7994:26590567,21715449:234215 -k1,7994:29303355,21715449:234216 -k1,7994:31391584,21715449:234215 -k1,7994:32583029,21715449:0 -) -(1,7995:6630773,22556937:25952256,513147,126483 -k1,7994:8050189,22556937:216175 -k1,7994:10711512,22556937:216175 -k1,7994:11459185,22556937:216176 -k1,7994:14459985,22556937:216175 -k1,7994:15832870,22556937:216175 -k1,7994:17474453,22556937:216175 -k1,7994:19203855,22556937:216176 -k1,7994:22066374,22556937:216175 -k1,7994:23479236,22556937:216175 -k1,7994:27389675,22556937:216175 -k1,7994:28137347,22556937:216175 -k1,7994:29638029,22556937:216176 -k1,7994:31367430,22556937:216175 -k1,7994:31939465,22556937:216175 -k1,7995:32583029,22556937:0 -) -(1,7995:6630773,23398425:25952256,513147,134348 -k1,7994:8028437,23398425:177384 -k1,7994:10691602,23398425:177384 -k1,7994:11528278,23398425:177384 -k1,7994:14753086,23398425:177384 -k1,7994:15949555,23398425:177384 -k1,7994:19237933,23398425:177384 -k1,7994:20547780,23398425:177385 -k1,7994:23582534,23398425:177384 -k1,7994:25027384,23398425:177384 -k1,7994:25560628,23398425:177384 -k1,7994:28350277,23398425:177384 -k1,7994:29812167,23398425:177384 -k1,7994:32583029,23398425:0 -) -(1,7995:6630773,24239913:25952256,513147,126483 -k1,7994:7628836,24239913:250297 -k1,7994:10929179,24239913:250297 -k1,7994:13628556,24239913:250297 -k1,7994:14506688,24239913:250297 -k1,7994:15953672,24239913:250297 -k1,7994:17222398,24239913:250297 -k1,7994:18341048,24239913:250298 -k1,7994:19993815,24239913:250297 -k1,7994:22961235,24239913:250297 -k1,7994:24909570,24239913:250297 -k1,7994:26178952,24239913:250297 -k1,7994:30697609,24239913:250297 -k1,7994:31563944,24239913:250297 -k1,7994:32583029,24239913:0 -) -(1,7995:6630773,25081401:25952256,513147,134348 -k1,7994:7518685,25081401:200439 -k1,7994:8250621,25081401:200439 -k1,7994:10803147,25081401:200439 -k1,7994:12446034,25081401:200440 -k1,7994:13002333,25081401:200439 -k1,7994:15400850,25081401:200439 -k1,7994:18847943,25081401:200439 -k1,7994:19731267,25081401:200439 -k1,7994:21629744,25081401:200439 -k1,7994:22639554,25081401:200440 -k1,7994:26793125,25081401:200439 -k1,7994:28094569,25081401:200439 -k1,7994:29804958,25081401:200439 -k1,7994:32583029,25081401:0 -) -(1,7995:6630773,25922889:25952256,513147,126483 -k1,7994:8347765,25922889:203766 -k1,7994:8907392,25922889:203767 -k1,7994:11309236,25922889:203766 -k1,7994:14709849,25922889:203767 -k1,7994:17399396,25922889:203766 -k1,7994:18262454,25922889:203766 -k1,7994:21687316,25922889:203767 -k1,7994:22518917,25922889:203766 -k1,7994:23741768,25922889:203766 -k1,7994:25251668,25922889:203767 -k1,7994:26996185,25922889:203766 -k1,7994:28068304,25922889:203767 -k1,7994:30559277,25922889:203766 -k1,7994:32583029,25922889:0 -) -(1,7995:6630773,26764377:25952256,505283,134348 -k1,7994:8392240,26764377:177462 -k1,7994:11789486,26764377:177462 -k1,7994:12582986,26764377:177462 -k1,7994:13779533,26764377:177462 -k1,7994:16198326,26764377:177462 -k1,7994:17916539,26764377:177462 -k1,7994:18962353,26764377:177462 -k1,7994:19955084,26764377:177463 -k1,7994:21198817,26764377:177462 -k1,7994:23400031,26764377:177462 -k1,7994:25631391,26764377:177462 -k1,7994:28854966,26764377:177462 -k1,7994:30223873,26764377:177462 -k1,7994:31931601,26764377:177462 -k1,7994:32583029,26764377:0 -) -(1,7995:6630773,27605865:25952256,513147,134348 -k1,7994:8229742,27605865:212227 -k1,7994:9389620,27605865:212227 -k1,7994:12364190,27605865:212227 -k1,7994:14144694,27605865:212227 -k1,7994:15016213,27605865:212227 -k1,7994:18242442,27605865:212228 -k1,7994:20267395,27605865:212227 -k1,7994:22262857,27605865:212227 -k1,7994:26428216,27605865:212227 -k1,7994:28171364,27605865:212227 -k1,7994:29402676,27605865:212227 -k1,7994:30921036,27605865:212227 -k1,7994:32583029,27605865:0 -) -(1,7995:6630773,28447353:25952256,513147,134348 -k1,7994:7509693,28447353:227492 -k1,7994:8552452,28447353:227491 -k1,7994:9311441,28447353:227492 -k1,7994:10190361,28447353:227492 -k1,7994:11324215,28447353:227491 -k1,7994:14314050,28447353:227492 -k1,7994:17020114,28447353:227492 -k1,7994:19258251,28447353:227492 -k1,7994:20677187,28447353:227491 -k1,7994:21370640,28447353:227492 -k1,7994:22801373,28447353:227492 -k1,7994:24314680,28447353:227491 -k1,7994:26073093,28447353:227492 -k1,7994:28358415,28447353:227492 -k1,7994:29237334,28447353:227491 -k1,7994:29820686,28447353:227492 -k1,7994:32583029,28447353:0 -) -(1,7995:6630773,29288841:25952256,505283,134348 -k1,7994:11458090,29288841:202441 -k1,7994:14945194,29288841:202440 -k1,7994:17021965,29288841:202441 -k1,7994:18909991,29288841:202440 -k1,7994:21399639,29288841:202441 -k1,7994:23163802,29288841:202440 -k1,7994:24438412,29288841:202441 -k1,7994:25707123,29288841:202440 -k1,7994:28212499,29288841:202441 -k1,7994:30104457,29288841:202440 -k1,7994:32583029,29288841:0 -) -(1,7995:6630773,30130329:25952256,505283,134348 -k1,7994:8791495,30130329:150077 -k1,7994:9933133,30130329:150078 -k1,7994:10699248,30130329:150077 -k1,7994:12601102,30130329:150077 -k1,7994:14448562,30130329:150078 -k1,7994:16731181,30130329:150077 -k1,7994:18072703,30130329:150077 -k1,7994:18838819,30130329:150078 -k1,7994:20681036,30130329:150077 -k1,7994:22528496,30130329:150078 -k1,7994:25753522,30130329:150077 -k1,7994:27007881,30130329:150077 -k1,7994:27905725,30130329:150078 -k1,7994:30847636,30130329:150077 -k1,7994:32583029,30130329:0 -) -(1,7995:6630773,30971817:25952256,505283,134348 -g1,7994:8685982,30971817 -g1,7994:11834986,30971817 -g1,7994:12717100,30971817 -g1,7994:15961787,30971817 -k1,7995:32583029,30971817:11427514 -g1,7995:32583029,30971817 -) -(1,7997:6630773,31813305:25952256,513147,134348 -h1,7996:6630773,31813305:983040,0,0 -k1,7996:8961378,31813305:305543 -k1,7996:12292719,31813305:305544 -k1,7996:13545913,31813305:305543 -k1,7996:15736927,31813305:305543 -k1,7996:20667347,31813305:305544 -k1,7996:24414185,31813305:305543 -k1,7996:26220502,31813305:305543 -k1,7996:27473697,31813305:305544 -k1,7996:31166796,31813305:305543 -k1,7997:32583029,31813305:0 -) -(1,7997:6630773,32654793:25952256,513147,134348 -k1,7996:8233464,32654793:293937 -k1,7996:11005973,32654793:293937 -k1,7996:13484224,32654793:293936 -k1,7996:14192909,32654793:293842 -k1,7996:17247222,32654793:293937 -k1,7996:17897018,32654793:293936 -k1,7996:21828858,32654793:293937 -k1,7996:23070446,32654793:293937 -k1,7996:26587444,32654793:293937 -k1,7996:27900466,32654793:293937 -k1,7996:30889898,32654793:293936 -k1,7996:31835263,32654793:293937 -k1,7996:32583029,32654793:0 -) -(1,7997:6630773,33496281:25952256,513147,134348 -k1,7996:8592593,33496281:249364 -k1,7996:11522380,33496281:249364 -k1,7996:13165696,33496281:249365 -k1,7996:14434145,33496281:249364 -k1,7996:17379005,33496281:249364 -k1,7996:21003473,33496281:249364 -k1,7996:22271922,33496281:249364 -k1,7996:24999859,33496281:249365 -k1,7996:27433538,33496281:249364 -k1,7996:29557232,33496281:249364 -k1,7996:32583029,33496281:0 -) -(1,7997:6630773,34337769:25952256,513147,134348 -k1,7996:7624532,34337769:225022 -k1,7996:8611083,34337769:225023 -k1,7996:9855190,34337769:225022 -k1,7996:11818228,34337769:225023 -k1,7996:12702542,34337769:225022 -k1,7996:16656564,34337769:225023 -k1,7996:19790074,34337769:225022 -k1,7996:21206541,34337769:225022 -k1,7996:23525439,34337769:225023 -k1,7996:24769546,34337769:225022 -k1,7996:26375413,34337769:225023 -k1,7996:28168056,34337769:225022 -k1,7996:29412164,34337769:225023 -k1,7996:31923737,34337769:225022 -k1,7996:32583029,34337769:0 -) -(1,7997:6630773,35179257:25952256,513147,134348 -k1,7996:9590233,35179257:172214 -k1,7996:10953892,35179257:172214 -k1,7996:14269213,35179257:172214 -k1,7996:16953422,35179257:172214 -k1,7996:19604207,35179257:172213 -k1,7996:21960736,35179257:172214 -k1,7996:23329637,35179257:172214 -k1,7996:27340950,35179257:172214 -k1,7996:30538961,35179257:172214 -k1,7997:32583029,35179257:0 -) -(1,7997:6630773,36020745:25952256,505283,122846 -k1,7996:7789000,36020745:205334 -k1,7996:8610373,36020745:205335 -k1,7996:9230544,36020745:205328 -k1,7996:10427439,36020745:205335 -(1,7996:10427439,36020745:0,452978,115847 -r1,7996:13599399,36020745:3171960,568825,115847 -k1,7996:10427439,36020745:-3171960 -) -(1,7996:10427439,36020745:3171960,452978,115847 -k1,7996:10427439,36020745:3277 -h1,7996:13596122,36020745:0,411205,112570 -) -k1,7996:13978403,36020745:205334 -(1,7996:13978403,36020745:0,459977,115847 -r1,7996:18205499,36020745:4227096,575824,115847 -k1,7996:13978403,36020745:-4227096 -) -(1,7996:13978403,36020745:4227096,459977,115847 -k1,7996:13978403,36020745:3277 -h1,7996:18202222,36020745:0,411205,112570 -) -k1,7996:18584504,36020745:205335 -(1,7996:18584504,36020745:0,452978,122846 -r1,7996:23163312,36020745:4578808,575824,122846 -k1,7996:18584504,36020745:-4578808 -) -(1,7996:18584504,36020745:4578808,452978,122846 -k1,7996:18584504,36020745:3277 -h1,7996:23160035,36020745:0,411205,112570 -) -k1,7996:23542316,36020745:205334 -(1,7996:23542316,36020745:0,452978,115847 -r1,7996:26714276,36020745:3171960,568825,115847 -k1,7996:23542316,36020745:-3171960 -) -(1,7996:23542316,36020745:3171960,452978,115847 -k1,7996:23542316,36020745:3277 -h1,7996:26710999,36020745:0,411205,112570 -) -k1,7996:27093281,36020745:205335 -(1,7996:27093281,36020745:0,459977,115847 -r1,7996:29561818,36020745:2468537,575824,115847 -k1,7996:27093281,36020745:-2468537 -) -(1,7996:27093281,36020745:2468537,459977,115847 -k1,7996:27093281,36020745:3277 -h1,7996:29558541,36020745:0,411205,112570 -) -k1,7996:29940822,36020745:205334 -(1,7996:29940822,36020745:0,459977,115847 -r1,7996:32409359,36020745:2468537,575824,115847 -k1,7996:29940822,36020745:-2468537 -) -(1,7996:29940822,36020745:2468537,459977,115847 -k1,7996:29940822,36020745:3277 -h1,7996:32406082,36020745:0,411205,112570 -) -k1,7997:32583029,36020745:0 -) -(1,7997:6630773,36862233:25952256,505283,122846 -(1,7996:6630773,36862233:0,452978,122846 -r1,7996:10857869,36862233:4227096,575824,122846 -k1,7996:6630773,36862233:-4227096 -) -(1,7996:6630773,36862233:4227096,452978,122846 -k1,7996:6630773,36862233:3277 -h1,7996:10854592,36862233:0,411205,112570 -) -k1,7996:11245608,36862233:214069 -(1,7996:11245608,36862233:0,452978,122846 -r1,7996:14417568,36862233:3171960,575824,122846 -k1,7996:11245608,36862233:-3171960 -) -(1,7996:11245608,36862233:3171960,452978,122846 -k1,7996:11245608,36862233:3277 -h1,7996:14414291,36862233:0,411205,112570 -) -k1,7996:14805308,36862233:214070 -(1,7996:14805308,36862233:0,452978,115847 -r1,7996:18328980,36862233:3523672,568825,115847 -k1,7996:14805308,36862233:-3523672 -) -(1,7996:14805308,36862233:3523672,452978,115847 -k1,7996:14805308,36862233:3277 -h1,7996:18325703,36862233:0,411205,112570 -) -k1,7996:18716719,36862233:214069 -k1,7996:20122233,36862233:214069 -(1,7996:20122233,36862233:0,452978,115847 -r1,7996:23997617,36862233:3875384,568825,115847 -k1,7996:20122233,36862233:-3875384 -) -(1,7996:20122233,36862233:3875384,452978,115847 -k1,7996:20122233,36862233:3277 -h1,7996:23994340,36862233:0,411205,112570 -) -k1,7996:24385356,36862233:214069 -k1,7996:27389294,36862233:214070 -(1,7996:27389294,36862233:0,459977,115847 -r1,7996:31264678,36862233:3875384,575824,115847 -k1,7996:27389294,36862233:-3875384 -) -(1,7996:27389294,36862233:3875384,459977,115847 -k1,7996:27389294,36862233:3277 -h1,7996:31261401,36862233:0,411205,112570 -) -k1,7996:31478747,36862233:214069 -k1,7996:32583029,36862233:0 -) -(1,7997:6630773,37703721:25952256,513147,134348 -k1,7996:7607026,37703721:228487 -k1,7996:9348738,37703721:228486 -k1,7996:10228653,37703721:228487 -k1,7996:12417976,37703721:228486 -k1,7996:13929658,37703721:228487 -k1,7996:15818826,37703721:228486 -k1,7996:16945156,37703721:228487 -k1,7996:18870370,37703721:228487 -k1,7996:22124653,37703721:228486 -k1,7996:23457422,37703721:228487 -k1,7996:24433674,37703721:228486 -k1,7996:26175387,37703721:228487 -k1,7996:28101911,37703721:228486 -k1,7996:30265021,37703721:228487 -k1,7996:32583029,37703721:0 -) -(1,7997:6630773,38545209:25952256,513147,134348 -g1,7996:8223953,38545209 -(1,7996:8223953,38545209:0,452978,115847 -r1,7996:9285642,38545209:1061689,568825,115847 -k1,7996:8223953,38545209:-1061689 -) -(1,7996:8223953,38545209:1061689,452978,115847 -k1,7996:8223953,38545209:3277 -h1,7996:9282365,38545209:0,411205,112570 -) -g1,7996:9484871,38545209 -g1,7996:10366985,38545209 -(1,7996:10366985,38545209:0,452978,115847 -r1,7996:11780386,38545209:1413401,568825,115847 -k1,7996:10366985,38545209:-1413401 -) -(1,7996:10366985,38545209:1413401,452978,115847 -k1,7996:10366985,38545209:3277 -h1,7996:11777109,38545209:0,411205,112570 -) -g1,7996:12153285,38545209 -g1,7996:14487677,38545209 -g1,7996:16508807,38545209 -g1,7996:17727121,38545209 -g1,7996:21156620,38545209 -g1,7996:22743902,38545209 -g1,7996:24771585,38545209 -g1,7996:25918465,38545209 -k1,7997:32583029,38545209:4373425 -g1,7997:32583029,38545209 -) -(1,7999:6630773,39386697:25952256,513147,126483 -h1,7998:6630773,39386697:983040,0,0 -k1,7998:8426968,39386697:185320 -k1,7998:9631374,39386697:185321 -k1,7998:11183775,39386697:185320 -k1,7998:12036252,39386697:185321 -(1,7998:12036252,39386697:0,452978,115847 -r1,7998:13801365,39386697:1765113,568825,115847 -k1,7998:12036252,39386697:-1765113 -) -(1,7998:12036252,39386697:1765113,452978,115847 -k1,7998:12036252,39386697:3277 -h1,7998:13798088,39386697:0,411205,112570 -) -k1,7998:13986685,39386697:185320 -k1,7998:15191091,39386697:185321 -k1,7998:19397045,39386697:185320 -k1,7998:20241658,39386697:185321 -k1,7998:21446063,39386697:185320 -k1,7998:23619091,39386697:185321 -k1,7998:24455839,39386697:185320 -k1,7998:25388926,39386697:185321 -k1,7998:27286702,39386697:185320 -k1,7998:29545582,39386697:185321 -k1,7998:31298523,39386697:185320 -k1,7998:32583029,39386697:0 -) -(1,7999:6630773,40228185:25952256,513147,134348 -k1,7998:8429463,40228185:285464 -k1,7998:9662578,40228185:285464 -k1,7998:11760768,40228185:285464 -k1,7998:14537910,40228185:285463 -k1,7998:15776923,40228185:285464 -k1,7998:17194849,40228185:285464 -k1,7998:18572798,40228185:285464 -k1,7998:19544424,40228185:285464 -k1,7998:20600591,40228185:285464 -k1,7998:23547471,40228185:285463 -k1,7998:25767558,40228185:285464 -k1,7998:27072107,40228185:285464 -k1,7998:32583029,40228185:0 -) -(1,7999:6630773,41069673:25952256,505283,134348 -k1,7998:9652930,41069673:232289 -k1,7998:13197408,41069673:232288 -k1,7998:16022301,41069673:232289 -k1,7998:18732505,41069673:232288 -k1,7998:19580832,41069673:232289 -k1,7998:23962860,41069673:232288 -k1,7998:25386594,41069673:232289 -k1,7998:28946145,41069673:232288 -k1,7998:30375121,41069673:232289 -k1,7999:32583029,41069673:0 -) -(1,7999:6630773,41911161:25952256,513147,134348 -g1,7998:9158496,41911161 -g1,7998:13168644,41911161 -g1,7998:13899370,41911161 -g1,7998:15793360,41911161 -k1,7999:32583029,41911161:15854470 -g1,7999:32583029,41911161 -) -(1,8000:6630773,42752649:25952256,0,0 -h1,8000:6630773,42752649:983040,0,0 -k1,8000:32583029,42752649:24969216 -g1,8000:32583029,42752649 -) -(1,8002:16143754,43782269:16439275,964084,570224 -(1,8002:16143754,43782269:6926295,964084,570224 -g1,8002:16777357,43782269 -g1,8002:17527614,43782269 -(1,8002:17527614,43782269:1646264,964084,479774 -(1,8002:17527614,43782269:1646264,964084,479774 -h1,8002:17527614,43782269:78643,0,0 -[1,8002:17606257,43782269:1488978,964084,479774 -(1,8002:17606257,43323468:1488978,505283,95027 -) -(1,8002:17606257,44254179:1488978,505283,7864 -k1,8002:17980140,44254179:373883 -k1,8002:19095235,44254179:373883 -) -] -h1,8002:19095235,43782269:78643,0,0 -) -) -g1,8002:19355938,43782269 -g1,8002:20106195,43782269 -(1,8002:20106195,43782269:2963854,964084,570224 -(1,8002:20106195,43782269:2963854,964084,570224 -h1,8002:20106195,43782269:78643,0,0 -[1,8002:20184838,43782269:2806568,964084,570224 -(1,8002:20184838,43323468:2806568,505283,103819 -k1,8002:20366793,43323468:181955 -(1,8002:20809162,43421782:971374,248644,5505 -) -k1,8002:22991406,43323468:181955 -) -(1,8002:20184838,44254179:2806568,505283,98314 -(1,8002:20675703,44352493:427295,331678,0 -) -g1,8002:21248646,44254179 -g1,8002:21962491,44254179 -) -] -h1,8002:22991406,43782269:78643,0,0 -) -) -) -(1,8002:31198253,43782269:1384776,505283,95026 -(1,8002:31198253,43782269:1384776,505283,95026 -) -) -) -(1,8005:6630773,45324392:25952256,513147,126483 -h1,8004:6630773,45324392:983040,0,0 -k1,8004:9111608,45324392:301108 -k1,8004:12108212,45324392:301108 -k1,8004:14092285,45324392:301108 -k1,8004:15181791,45324392:301108 -k1,8004:17220914,45324392:301108 -k1,8004:19089643,45324392:301108 -k1,8004:22343803,45324392:301108 -k1,8004:23836356,45324392:301108 -k1,8004:26986314,45324392:301108 -k1,8004:29120464,45324392:301108 -k1,8004:30989193,45324392:301108 -k1,8004:32583029,45324392:0 +[1,8024:3078558,4812305:0,0,0 +(1,8024:3078558,49800853:0,16384,2228224 +k1,8024:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8024:2537886,49800853:1179648,16384,0 ) -] -(1,8005:32583029,45706769:0,0,0 -g1,8005:32583029,45706769 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8024:3078558,51504789:16384,1179648,0 ) +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] -(1,8005:6630773,47279633:25952256,0,0 -h1,8005:6630773,47279633:25952256,0,0 ) -] -h1,8005:4262630,4025873:0,0,0 -] -!27404 +) +) +] +[1,8024:3078558,4812305:0,0,0 +(1,8024:3078558,49800853:0,16384,2228224 +g1,8024:29030814,49800853 +g1,8024:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8024:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8024:37855564,49800853:1179648,16384,0 +) +) +k1,8024:3078556,49800853:-34777008 +) +] +g1,8024:6630773,4812305 +g1,8024:6630773,4812305 +g1,8024:10153333,4812305 +g1,8024:13588730,4812305 +k1,8024:31387652,4812305:17798922 +) +) +] +[1,8024:6630773,45706769:25952256,40108032,0 +(1,8024:6630773,45706769:25952256,40108032,0 +(1,8024:6630773,45706769:0,0,0 +g1,8024:6630773,45706769 +) +[1,8024:6630773,45706769:25952256,40108032,0 +(1,7998:6630773,6254097:25952256,513147,134348 +k1,7997:8972475,6254097:407079 +k1,7997:10398639,6254097:407079 +k1,7997:12793426,6254097:407080 +k1,7997:13851933,6254097:407079 +k1,7997:15822046,6254097:407079 +k1,7997:17609969,6254097:407079 +k1,7997:18548545,6254097:407079 +k1,7997:21717967,6254097:407079 +k1,7997:23692668,6254097:407080 +k1,7997:25118832,6254097:407079 +k1,7997:27394998,6254097:407079 +k1,7997:28461369,6254097:407079 +k1,7997:29887533,6254097:407079 +k1,7997:32583029,6254097:0 +) +(1,7998:6630773,7095585:25952256,513147,134348 +k1,7997:8570579,7095585:241768 +k1,7997:12839534,7095585:241768 +k1,7997:16984626,7095585:241768 +k1,7997:17885686,7095585:241768 +k1,7997:19259261,7095585:241768 +k1,7997:21626363,7095585:241769 +k1,7997:22859691,7095585:241768 +k1,7997:24914185,7095585:241768 +k1,7997:27647632,7095585:241768 +k1,7997:28517235,7095585:241768 +k1,7997:31563944,7095585:241768 +k1,7997:32583029,7095585:0 +) +(1,7998:6630773,7937073:25952256,505283,126483 +k1,7997:12342301,7937073:200606 +k1,7997:15332774,7937073:200605 +k1,7997:17046606,7937073:200606 +k1,7997:17863249,7937073:200605 +k1,7997:21217447,7937073:200606 +k1,7997:22609498,7937073:200606 +k1,7997:23829188,7937073:200605 +k1,7997:27227296,7937073:200606 +k1,7997:30217769,7937073:200605 +k1,7997:31931601,7937073:200606 +k1,7997:32583029,7937073:0 +) +(1,7998:6630773,8778561:25952256,505283,134348 +g1,7997:9499283,8778561 +g1,7997:11948363,8778561 +g1,7997:13139152,8778561 +g1,7997:16588311,8778561 +g1,7997:19105548,8778561 +g1,7997:19920815,8778561 +g1,7997:21628683,8778561 +k1,7998:32583029,8778561:7169642 +g1,7998:32583029,8778561 +) +(1,8000:6630773,9620049:25952256,513147,134348 +h1,7999:6630773,9620049:983040,0,0 +k1,7999:9660502,9620049:271974 +k1,7999:12977935,9620049:271975 +k1,7999:16691204,9620049:271974 +k1,7999:18463952,9620049:271974 +k1,7999:19683578,9620049:271975 +k1,7999:22211957,9620049:271974 +k1,7999:25530044,9620049:271974 +k1,7999:26749669,9620049:271974 +k1,7999:28040729,9620049:271975 +k1,7999:31923737,9620049:271974 +k1,7999:32583029,9620049:0 +) +(1,8000:6630773,10461537:25952256,513147,126483 +k1,7999:8646963,10461537:203464 +k1,7999:11342106,10461537:203464 +k1,7999:12161608,10461537:203464 +k1,7999:13384157,10461537:203464 +k1,7999:14954702,10461537:203464 +k1,7999:15817458,10461537:203464 +k1,7999:19270852,10461537:203464 +k1,7999:21965995,10461537:203464 +k1,7999:23188544,10461537:203464 +k1,7999:26438121,10461537:203464 +k1,7999:27633145,10461537:203464 +k1,7999:30628443,10461537:203464 +k1,7999:31593435,10461537:203464 +k1,8000:32583029,10461537:0 +) +(1,8000:6630773,11303025:25952256,505283,126483 +k1,7999:10915779,11303025:198181 +k1,7999:12155982,11303025:198181 +k1,7999:15399620,11303025:198180 +k1,7999:18714038,11303025:198181 +k1,7999:21958332,11303025:198181 +k1,7999:23260795,11303025:198181 +k1,7999:25588241,11303025:198181 +k1,7999:26534187,11303025:198180 +k1,7999:29697872,11303025:198181 +k1,7999:31966991,11303025:198181 +k1,7999:32583029,11303025:0 +) +(1,8000:6630773,12144513:25952256,513147,134348 +k1,7999:10205172,12144513:219611 +k1,7999:14337282,12144513:219611 +k1,7999:16254275,12144513:219611 +k1,7999:18392780,12144513:219611 +k1,7999:21106037,12144513:219612 +k1,7999:22135018,12144513:219611 +k1,7999:24786670,12144513:219611 +k1,7999:26694488,12144513:219611 +k1,7999:29730181,12144513:219611 +k1,7999:31343743,12144513:219611 +k1,8000:32583029,12144513:0 +) +(1,8000:6630773,12986001:25952256,505283,134348 +k1,7999:8079529,12986001:222577 +k1,7999:11550069,12986001:222576 +k1,7999:15175275,12986001:222577 +k1,7999:18321413,12986001:222577 +k1,7999:20481233,12986001:222576 +k1,7999:21988316,12986001:222577 +k1,7999:24595747,12986001:222576 +k1,7999:29141734,12986001:222577 +k1,7999:32583029,12986001:0 +) +(1,8000:6630773,13827489:25952256,513147,134348 +k1,7999:8185156,13827489:269877 +k1,7999:9446593,13827489:269877 +k1,7999:11256566,13827489:269877 +k1,7999:12474094,13827489:269877 +k1,7999:13940659,13827489:269878 +k1,7999:17200288,13827489:269877 +k1,7999:18512187,13827489:269877 +k1,7999:23802122,13827489:269877 +k1,7999:26863833,13827489:269877 +k1,7999:29692236,13827489:269877 +k1,7999:32583029,13827489:0 +) +(1,8000:6630773,14668977:25952256,513147,134348 +k1,7999:8512639,14668977:184484 +k1,7999:10395160,14668977:184483 +k1,7999:11598729,14668977:184484 +k1,7999:14894207,14668977:184484 +k1,7999:16435942,14668977:184484 +k1,7999:17271853,14668977:184483 +k1,7999:20303221,14668977:184484 +k1,7999:21948503,14668977:184484 +k1,7999:22903690,14668977:184484 +k1,7999:25345888,14668977:184483 +k1,7999:26521932,14668977:184484 +k1,7999:29631943,14668977:184484 +k1,7999:32583029,14668977:0 +) +(1,8000:6630773,15510465:25952256,513147,134348 +k1,7999:9488849,15510465:234014 +k1,7999:13164158,15510465:234014 +k1,7999:15912788,15510465:234014 +k1,7999:16798229,15510465:234013 +k1,7999:19661547,15510465:234014 +k1,7999:20666264,15510465:234014 +k1,7999:22736597,15510465:234014 +k1,7999:24767608,15510465:234014 +k1,7999:25949273,15510465:234014 +k1,7999:27202371,15510465:234013 +k1,7999:29447030,15510465:234014 +k1,7999:30340336,15510465:234014 +k1,7999:31593435,15510465:234014 +k1,8000:32583029,15510465:0 +) +(1,8000:6630773,16351953:25952256,513147,134348 +k1,7999:9623500,16351953:158295 +k1,7999:10433222,16351953:158294 +k1,7999:11339283,16351953:158295 +k1,7999:14807800,16351953:158294 +k1,7999:15321955,16351953:158295 +k1,7999:17277247,16351953:158295 +k1,7999:20740522,16351953:158294 +k1,7999:23659849,16351953:158295 +k1,7999:24579672,16351953:158295 +k1,7999:25757051,16351953:158294 +k1,7999:27469860,16351953:158295 +k1,7999:28255989,16351953:158294 +k1,7999:29865906,16351953:158295 +k1,7999:32583029,16351953:0 +) +(1,8000:6630773,17193441:25952256,505283,134348 +k1,7999:7884073,17193441:234215 +k1,7999:10834101,17193441:234216 +k1,7999:13860150,17193441:234215 +k1,7999:14710404,17193441:234216 +k1,7999:15963704,17193441:234215 +k1,7999:18952397,17193441:234215 +k1,7999:21903736,17193441:234216 +k1,7999:22669448,17193441:234215 +k1,7999:24416889,17193441:234215 +k1,7999:25337267,17193441:234216 +k1,7999:26590567,17193441:234215 +k1,7999:29303355,17193441:234216 +k1,7999:31391584,17193441:234215 +k1,7999:32583029,17193441:0 +) +(1,8000:6630773,18034929:25952256,513147,126483 +k1,7999:8050189,18034929:216175 +k1,7999:10711512,18034929:216175 +k1,7999:11459185,18034929:216176 +k1,7999:14459985,18034929:216175 +k1,7999:15832870,18034929:216175 +k1,7999:17474453,18034929:216175 +k1,7999:19203855,18034929:216176 +k1,7999:22066374,18034929:216175 +k1,7999:23479236,18034929:216175 +k1,7999:27389675,18034929:216175 +k1,7999:28137347,18034929:216175 +k1,7999:29638029,18034929:216176 +k1,7999:31367430,18034929:216175 +k1,7999:31939465,18034929:216175 +k1,8000:32583029,18034929:0 +) +(1,8000:6630773,18876417:25952256,513147,134348 +k1,7999:8028437,18876417:177384 +k1,7999:10691602,18876417:177384 +k1,7999:11528278,18876417:177384 +k1,7999:14753086,18876417:177384 +k1,7999:15949555,18876417:177384 +k1,7999:19237933,18876417:177384 +k1,7999:20547780,18876417:177385 +k1,7999:23582534,18876417:177384 +k1,7999:25027384,18876417:177384 +k1,7999:25560628,18876417:177384 +k1,7999:28350277,18876417:177384 +k1,7999:29812167,18876417:177384 +k1,7999:32583029,18876417:0 +) +(1,8000:6630773,19717905:25952256,513147,126483 +k1,7999:7628836,19717905:250297 +k1,7999:10929179,19717905:250297 +k1,7999:13628556,19717905:250297 +k1,7999:14506688,19717905:250297 +k1,7999:15953672,19717905:250297 +k1,7999:17222398,19717905:250297 +k1,7999:18341048,19717905:250298 +k1,7999:19993815,19717905:250297 +k1,7999:22961235,19717905:250297 +k1,7999:24909570,19717905:250297 +k1,7999:26178952,19717905:250297 +k1,7999:30697609,19717905:250297 +k1,7999:31563944,19717905:250297 +k1,7999:32583029,19717905:0 +) +(1,8000:6630773,20559393:25952256,513147,134348 +k1,7999:7518685,20559393:200439 +k1,7999:8250621,20559393:200439 +k1,7999:10803147,20559393:200439 +k1,7999:12446034,20559393:200440 +k1,7999:13002333,20559393:200439 +k1,7999:15400850,20559393:200439 +k1,7999:18847943,20559393:200439 +k1,7999:19731267,20559393:200439 +k1,7999:21629744,20559393:200439 +k1,7999:22639554,20559393:200440 +k1,7999:26793125,20559393:200439 +k1,7999:28094569,20559393:200439 +k1,7999:29804958,20559393:200439 +k1,7999:32583029,20559393:0 +) +(1,8000:6630773,21400881:25952256,513147,126483 +k1,7999:8347765,21400881:203766 +k1,7999:8907392,21400881:203767 +k1,7999:11309236,21400881:203766 +k1,7999:14709849,21400881:203767 +k1,7999:17399396,21400881:203766 +k1,7999:18262454,21400881:203766 +k1,7999:21687316,21400881:203767 +k1,7999:22518917,21400881:203766 +k1,7999:23741768,21400881:203766 +k1,7999:25251668,21400881:203767 +k1,7999:26996185,21400881:203766 +k1,7999:28068304,21400881:203767 +k1,7999:30559277,21400881:203766 +k1,7999:32583029,21400881:0 +) +(1,8000:6630773,22242369:25952256,505283,134348 +k1,7999:8392240,22242369:177462 +k1,7999:11789486,22242369:177462 +k1,7999:12582986,22242369:177462 +k1,7999:13779533,22242369:177462 +k1,7999:16198326,22242369:177462 +k1,7999:17916539,22242369:177462 +k1,7999:18962353,22242369:177462 +k1,7999:19955084,22242369:177463 +k1,7999:21198817,22242369:177462 +k1,7999:23400031,22242369:177462 +k1,7999:25631391,22242369:177462 +k1,7999:28854966,22242369:177462 +k1,7999:30223873,22242369:177462 +k1,7999:31931601,22242369:177462 +k1,7999:32583029,22242369:0 +) +(1,8000:6630773,23083857:25952256,513147,134348 +k1,7999:8229742,23083857:212227 +k1,7999:9389620,23083857:212227 +k1,7999:12364190,23083857:212227 +k1,7999:14144694,23083857:212227 +k1,7999:15016213,23083857:212227 +k1,7999:18242442,23083857:212228 +k1,7999:20267395,23083857:212227 +k1,7999:22262857,23083857:212227 +k1,7999:26428216,23083857:212227 +k1,7999:28171364,23083857:212227 +k1,7999:29402676,23083857:212227 +k1,7999:30921036,23083857:212227 +k1,7999:32583029,23083857:0 +) +(1,8000:6630773,23925345:25952256,513147,134348 +k1,7999:7509693,23925345:227492 +k1,7999:8552452,23925345:227491 +k1,7999:9311441,23925345:227492 +k1,7999:10190361,23925345:227492 +k1,7999:11324215,23925345:227491 +k1,7999:14314050,23925345:227492 +k1,7999:17020114,23925345:227492 +k1,7999:19258251,23925345:227492 +k1,7999:20677187,23925345:227491 +k1,7999:21370640,23925345:227492 +k1,7999:22801373,23925345:227492 +k1,7999:24314680,23925345:227491 +k1,7999:26073093,23925345:227492 +k1,7999:28358415,23925345:227492 +k1,7999:29237334,23925345:227491 +k1,7999:29820686,23925345:227492 +k1,7999:32583029,23925345:0 +) +(1,8000:6630773,24766833:25952256,505283,134348 +k1,7999:11458090,24766833:202441 +k1,7999:14945194,24766833:202440 +k1,7999:17021965,24766833:202441 +k1,7999:18909991,24766833:202440 +k1,7999:21399639,24766833:202441 +k1,7999:23163802,24766833:202440 +k1,7999:24438412,24766833:202441 +k1,7999:25707123,24766833:202440 +k1,7999:28212499,24766833:202441 +k1,7999:30104457,24766833:202440 +k1,7999:32583029,24766833:0 +) +(1,8000:6630773,25608321:25952256,505283,134348 +k1,7999:8791495,25608321:150077 +k1,7999:9933133,25608321:150078 +k1,7999:10699248,25608321:150077 +k1,7999:12601102,25608321:150077 +k1,7999:14448562,25608321:150078 +k1,7999:16731181,25608321:150077 +k1,7999:18072703,25608321:150077 +k1,7999:18838819,25608321:150078 +k1,7999:20681036,25608321:150077 +k1,7999:22528496,25608321:150078 +k1,7999:25753522,25608321:150077 +k1,7999:27007881,25608321:150077 +k1,7999:27905725,25608321:150078 +k1,7999:30847636,25608321:150077 +k1,7999:32583029,25608321:0 +) +(1,8000:6630773,26449809:25952256,505283,134348 +g1,7999:8685982,26449809 +g1,7999:11834986,26449809 +g1,7999:12717100,26449809 +g1,7999:15961787,26449809 +k1,8000:32583029,26449809:11427514 +g1,8000:32583029,26449809 +) +(1,8002:6630773,27291297:25952256,513147,134348 +h1,8001:6630773,27291297:983040,0,0 +k1,8001:8961378,27291297:305543 +k1,8001:12292719,27291297:305544 +k1,8001:13545913,27291297:305543 +k1,8001:15736927,27291297:305543 +k1,8001:20667347,27291297:305544 +k1,8001:24414185,27291297:305543 +k1,8001:26220502,27291297:305543 +k1,8001:27473697,27291297:305544 +k1,8001:31166796,27291297:305543 +k1,8002:32583029,27291297:0 +) +(1,8002:6630773,28132785:25952256,513147,134348 +k1,8001:8233464,28132785:293937 +k1,8001:11005973,28132785:293937 +k1,8001:13484224,28132785:293936 +k1,8001:14192909,28132785:293842 +k1,8001:17247222,28132785:293937 +k1,8001:17897018,28132785:293936 +k1,8001:21828858,28132785:293937 +k1,8001:23070446,28132785:293937 +k1,8001:26587444,28132785:293937 +k1,8001:27900466,28132785:293937 +k1,8001:30889898,28132785:293936 +k1,8001:31835263,28132785:293937 +k1,8001:32583029,28132785:0 +) +(1,8002:6630773,28974273:25952256,513147,134348 +k1,8001:8592593,28974273:249364 +k1,8001:11522380,28974273:249364 +k1,8001:13165696,28974273:249365 +k1,8001:14434145,28974273:249364 +k1,8001:17379005,28974273:249364 +k1,8001:21003473,28974273:249364 +k1,8001:22271922,28974273:249364 +k1,8001:24999859,28974273:249365 +k1,8001:27433538,28974273:249364 +k1,8001:29557232,28974273:249364 +k1,8001:32583029,28974273:0 +) +(1,8002:6630773,29815761:25952256,513147,134348 +k1,8001:7624532,29815761:225022 +k1,8001:8611083,29815761:225023 +k1,8001:9855190,29815761:225022 +k1,8001:11818228,29815761:225023 +k1,8001:12702542,29815761:225022 +k1,8001:16656564,29815761:225023 +k1,8001:19790074,29815761:225022 +k1,8001:21206541,29815761:225022 +k1,8001:23525439,29815761:225023 +k1,8001:24769546,29815761:225022 +k1,8001:26375413,29815761:225023 +k1,8001:28168056,29815761:225022 +k1,8001:29412164,29815761:225023 +k1,8001:31923737,29815761:225022 +k1,8001:32583029,29815761:0 +) +(1,8002:6630773,30657249:25952256,513147,134348 +k1,8001:9629773,30657249:211754 +k1,8001:11032972,30657249:211754 +k1,8001:14387833,30657249:211754 +k1,8001:17111582,30657249:211754 +k1,8001:19801908,30657249:211754 +k1,8001:22197977,30657249:211754 +k1,8001:23606418,30657249:211754 +k1,8001:27657271,30657249:211754 +k1,8001:30894822,30657249:211754 +k1,8002:32583029,30657249:0 +) +(1,8002:6630773,31498737:25952256,505283,122846 +k1,8001:8105324,31498737:165797 +k1,8001:8887160,31498737:165798 +k1,8001:9467767,31498737:165764 +k1,8001:10625124,31498737:165797 +(1,8001:10625124,31498737:0,452978,115847 +r1,8001:13797084,31498737:3171960,568825,115847 +k1,8001:10625124,31498737:-3171960 +) +(1,8001:10625124,31498737:3171960,452978,115847 +k1,8001:10625124,31498737:3277 +h1,8001:13793807,31498737:0,411205,112570 +) +k1,8001:14136552,31498737:165798 +(1,8001:14136552,31498737:0,459977,115847 +r1,8001:18363648,31498737:4227096,575824,115847 +k1,8001:14136552,31498737:-4227096 +) +(1,8001:14136552,31498737:4227096,459977,115847 +k1,8001:14136552,31498737:3277 +h1,8001:18360371,31498737:0,411205,112570 +) +k1,8001:18703115,31498737:165797 +(1,8001:18703115,31498737:0,452978,122846 +r1,8001:23281923,31498737:4578808,575824,122846 +k1,8001:18703115,31498737:-4578808 +) +(1,8001:18703115,31498737:4578808,452978,122846 +k1,8001:18703115,31498737:3277 +h1,8001:23278646,31498737:0,411205,112570 +) +k1,8001:23621390,31498737:165797 +(1,8001:23621390,31498737:0,452978,115847 +r1,8001:26793350,31498737:3171960,568825,115847 +k1,8001:23621390,31498737:-3171960 +) +(1,8001:23621390,31498737:3171960,452978,115847 +k1,8001:23621390,31498737:3277 +h1,8001:26790073,31498737:0,411205,112570 +) +k1,8001:27132818,31498737:165798 +(1,8001:27132818,31498737:0,459977,115847 +r1,8001:29601355,31498737:2468537,575824,115847 +k1,8001:27132818,31498737:-2468537 +) +(1,8001:27132818,31498737:2468537,459977,115847 +k1,8001:27132818,31498737:3277 +h1,8001:29598078,31498737:0,411205,112570 +) +k1,8001:29940822,31498737:165797 +(1,8001:29940822,31498737:0,459977,115847 +r1,8001:32409359,31498737:2468537,575824,115847 +k1,8001:29940822,31498737:-2468537 +) +(1,8001:29940822,31498737:2468537,459977,115847 +k1,8001:29940822,31498737:3277 +h1,8001:32406082,31498737:0,411205,112570 +) +k1,8002:32583029,31498737:0 +) +(1,8002:6630773,32340225:25952256,505283,122846 +(1,8001:6630773,32340225:0,452978,122846 +r1,8001:10857869,32340225:4227096,575824,122846 +k1,8001:6630773,32340225:-4227096 +) +(1,8001:6630773,32340225:4227096,452978,122846 +k1,8001:6630773,32340225:3277 +h1,8001:10854592,32340225:0,411205,112570 +) +k1,8001:11245608,32340225:214069 +(1,8001:11245608,32340225:0,452978,122846 +r1,8001:14417568,32340225:3171960,575824,122846 +k1,8001:11245608,32340225:-3171960 +) +(1,8001:11245608,32340225:3171960,452978,122846 +k1,8001:11245608,32340225:3277 +h1,8001:14414291,32340225:0,411205,112570 +) +k1,8001:14805308,32340225:214070 +(1,8001:14805308,32340225:0,452978,115847 +r1,8001:18328980,32340225:3523672,568825,115847 +k1,8001:14805308,32340225:-3523672 +) +(1,8001:14805308,32340225:3523672,452978,115847 +k1,8001:14805308,32340225:3277 +h1,8001:18325703,32340225:0,411205,112570 +) +k1,8001:18716719,32340225:214069 +k1,8001:20122233,32340225:214069 +(1,8001:20122233,32340225:0,452978,115847 +r1,8001:23997617,32340225:3875384,568825,115847 +k1,8001:20122233,32340225:-3875384 +) +(1,8001:20122233,32340225:3875384,452978,115847 +k1,8001:20122233,32340225:3277 +h1,8001:23994340,32340225:0,411205,112570 +) +k1,8001:24385356,32340225:214069 +k1,8001:27389294,32340225:214070 +(1,8001:27389294,32340225:0,459977,115847 +r1,8001:31264678,32340225:3875384,575824,115847 +k1,8001:27389294,32340225:-3875384 +) +(1,8001:27389294,32340225:3875384,459977,115847 +k1,8001:27389294,32340225:3277 +h1,8001:31261401,32340225:0,411205,112570 +) +k1,8001:31478747,32340225:214069 +k1,8001:32583029,32340225:0 +) +(1,8002:6630773,33181713:25952256,513147,134348 +k1,8001:7607026,33181713:228487 +k1,8001:9348738,33181713:228486 +k1,8001:10228653,33181713:228487 +k1,8001:12417976,33181713:228486 +k1,8001:13929658,33181713:228487 +k1,8001:15818826,33181713:228486 +k1,8001:16945156,33181713:228487 +k1,8001:18870370,33181713:228487 +k1,8001:22124653,33181713:228486 +k1,8001:23457422,33181713:228487 +k1,8001:24433674,33181713:228486 +k1,8001:26175387,33181713:228487 +k1,8001:28101911,33181713:228486 +k1,8001:30265021,33181713:228487 +k1,8001:32583029,33181713:0 +) +(1,8002:6630773,34023201:25952256,513147,134348 +g1,8001:8223953,34023201 +(1,8001:8223953,34023201:0,452978,115847 +r1,8001:9285642,34023201:1061689,568825,115847 +k1,8001:8223953,34023201:-1061689 +) +(1,8001:8223953,34023201:1061689,452978,115847 +k1,8001:8223953,34023201:3277 +h1,8001:9282365,34023201:0,411205,112570 +) +g1,8001:9484871,34023201 +g1,8001:10366985,34023201 +(1,8001:10366985,34023201:0,452978,115847 +r1,8001:11780386,34023201:1413401,568825,115847 +k1,8001:10366985,34023201:-1413401 +) +(1,8001:10366985,34023201:1413401,452978,115847 +k1,8001:10366985,34023201:3277 +h1,8001:11777109,34023201:0,411205,112570 +) +g1,8001:12153285,34023201 +g1,8001:14487677,34023201 +g1,8001:16508807,34023201 +g1,8001:17727121,34023201 +g1,8001:21156620,34023201 +g1,8001:22743902,34023201 +g1,8001:24771585,34023201 +g1,8001:25918465,34023201 +k1,8002:32583029,34023201:4373425 +g1,8002:32583029,34023201 +) +(1,8004:6630773,34864689:25952256,513147,126483 +h1,8003:6630773,34864689:983040,0,0 +k1,8003:8426968,34864689:185320 +k1,8003:9631374,34864689:185321 +k1,8003:11183775,34864689:185320 +k1,8003:12036252,34864689:185321 +(1,8003:12036252,34864689:0,452978,115847 +r1,8003:13801365,34864689:1765113,568825,115847 +k1,8003:12036252,34864689:-1765113 +) +(1,8003:12036252,34864689:1765113,452978,115847 +k1,8003:12036252,34864689:3277 +h1,8003:13798088,34864689:0,411205,112570 +) +k1,8003:13986685,34864689:185320 +k1,8003:15191091,34864689:185321 +k1,8003:19397045,34864689:185320 +k1,8003:20241658,34864689:185321 +k1,8003:21446063,34864689:185320 +k1,8003:23619091,34864689:185321 +k1,8003:24455839,34864689:185320 +k1,8003:25388926,34864689:185321 +k1,8003:27286702,34864689:185320 +k1,8003:29545582,34864689:185321 +k1,8003:31298523,34864689:185320 +k1,8003:32583029,34864689:0 +) +(1,8004:6630773,35706177:25952256,513147,134348 +k1,8003:8429463,35706177:285464 +k1,8003:9662578,35706177:285464 +k1,8003:11760768,35706177:285464 +k1,8003:14537910,35706177:285463 +k1,8003:15776923,35706177:285464 +k1,8003:17194849,35706177:285464 +k1,8003:18572798,35706177:285464 +k1,8003:19544424,35706177:285464 +k1,8003:20600591,35706177:285464 +k1,8003:23547471,35706177:285463 +k1,8003:25767558,35706177:285464 +k1,8003:27072107,35706177:285464 +k1,8003:32583029,35706177:0 +) +(1,8004:6630773,36547665:25952256,505283,134348 +k1,8003:9652930,36547665:232289 +k1,8003:13197408,36547665:232288 +k1,8003:16022301,36547665:232289 +k1,8003:18732505,36547665:232288 +k1,8003:19580832,36547665:232289 +k1,8003:23962860,36547665:232288 +k1,8003:25386594,36547665:232289 +k1,8003:28946145,36547665:232288 +k1,8003:30375121,36547665:232289 +k1,8004:32583029,36547665:0 +) +(1,8004:6630773,37389153:25952256,513147,134348 +g1,8003:9158496,37389153 +g1,8003:13168644,37389153 +g1,8003:13899370,37389153 +g1,8003:15793360,37389153 +k1,8004:32583029,37389153:15854470 +g1,8004:32583029,37389153 +) +(1,8005:6630773,38230641:25952256,0,0 +h1,8005:6630773,38230641:983040,0,0 +k1,8005:32583029,38230641:24969216 +g1,8005:32583029,38230641 +) +(1,8007:16143754,39260261:16439275,964084,570224 +(1,8007:16143754,39260261:6926295,964084,570224 +g1,8007:16777357,39260261 +g1,8007:17527614,39260261 +(1,8007:17527614,39260261:1646264,964084,479774 +(1,8007:17527614,39260261:1646264,964084,479774 +h1,8007:17527614,39260261:78643,0,0 +[1,8007:17606257,39260261:1488978,964084,479774 +(1,8007:17606257,38801460:1488978,505283,95027 +) +(1,8007:17606257,39732171:1488978,505283,7864 +k1,8007:17980140,39732171:373883 +k1,8007:19095235,39732171:373883 +) +] +h1,8007:19095235,39260261:78643,0,0 +) +) +g1,8007:19355938,39260261 +g1,8007:20106195,39260261 +(1,8007:20106195,39260261:2963854,964084,570224 +(1,8007:20106195,39260261:2963854,964084,570224 +h1,8007:20106195,39260261:78643,0,0 +[1,8007:20184838,39260261:2806568,964084,570224 +(1,8007:20184838,38801460:2806568,505283,103819 +k1,8007:20366793,38801460:181955 +(1,8007:20809162,38899774:971374,248644,5505 +) +k1,8007:22991406,38801460:181955 +) +(1,8007:20184838,39732171:2806568,505283,98314 +(1,8007:20675703,39830485:427295,331678,0 +) +g1,8007:21248646,39732171 +g1,8007:21962491,39732171 +) +] +h1,8007:22991406,39260261:78643,0,0 +) +) +) +(1,8007:31198253,39260261:1384776,505283,95026 +(1,8007:31198253,39260261:1384776,505283,95026 +) +) +) +(1,8010:6630773,40645097:25952256,513147,126483 +h1,8009:6630773,40645097:983040,0,0 +k1,8009:9111608,40645097:301108 +k1,8009:12108212,40645097:301108 +k1,8009:14092285,40645097:301108 +k1,8009:15181791,40645097:301108 +k1,8009:17220914,40645097:301108 +k1,8009:19089643,40645097:301108 +k1,8009:22343803,40645097:301108 +k1,8009:23836356,40645097:301108 +k1,8009:26986314,40645097:301108 +k1,8009:29120464,40645097:301108 +k1,8009:30989193,40645097:301108 +k1,8009:32583029,40645097:0 +) +(1,8010:6630773,41486585:25952256,513147,134348 +(1,8009:6837867,41486585:4367319,505283,95026 +) +k1,8009:11769720,41486585:183770 +k1,8009:12440969,41486585:183661 +k1,8009:16463745,41486585:183677 +k1,8009:19342918,41486585:183677 +k1,8009:23950275,41486585:183677 +k1,8009:25153037,41486585:183677 +k1,8009:30847636,41486585:183677 +k1,8010:32583029,41486585:0 +) +(1,8010:6630773,42328073:25952256,505283,115847 +k1,8009:8114172,42328073:215933 +k1,8009:8861601,42328073:215932 +k1,8009:11861503,42328073:215933 +k1,8009:12693473,42328073:215932 +k1,8009:13324232,42328073:215916 +k1,8009:15426290,42328073:215932 +k1,8009:16661308,42328073:215933 +k1,8009:18615255,42328073:215932 +(1,8009:18615255,42328073:0,452978,115847 +r1,8009:22138927,42328073:3523672,568825,115847 +k1,8009:18615255,42328073:-3523672 +) +(1,8009:18615255,42328073:3523672,452978,115847 +k1,8009:18615255,42328073:3277 +h1,8009:22135650,42328073:0,411205,112570 +) +k1,8009:22354860,42328073:215933 +k1,8009:22354860,42328073:0 +k1,8009:22744462,42328073:215932 +k1,8009:23913944,42328073:215933 +k1,8009:25262338,42328073:215932 +k1,8009:26570756,42328073:215933 +k1,8009:27805773,42328073:215932 +(1,8009:27805773,42328073:0,452978,115847 +r1,8009:30977733,42328073:3171960,568825,115847 +k1,8009:27805773,42328073:-3171960 +) +(1,8009:27805773,42328073:3171960,452978,115847 +k1,8009:27805773,42328073:3277 +h1,8009:30974456,42328073:0,411205,112570 +) +k1,8009:31193666,42328073:215933 +k1,8009:32583029,42328073:0 +) +(1,8010:6630773,43169561:25952256,426639,7863 +k1,8010:32583029,43169561:24844042 +g1,8010:32583029,43169561 +) +v1,8012:6630773,44150311:0,393216,0 +(1,8020:6630773,45510161:25952256,1753066,196608 +g1,8020:6630773,45510161 +g1,8020:6630773,45510161 +g1,8020:6434165,45510161 +(1,8020:6434165,45510161:0,1753066,196608 +r1,8020:32779637,45510161:26345472,1949674,196608 +k1,8020:6434165,45510161:-26345472 +) +(1,8020:6434165,45510161:26345472,1753066,196608 +[1,8020:6630773,45510161:25952256,1556458,0 +(1,8014:6630773,44357929:25952256,404226,101187 +(1,8013:6630773,44357929:0,0,0 +g1,8013:6630773,44357929 +g1,8013:6630773,44357929 +g1,8013:6303093,44357929 +(1,8013:6303093,44357929:0,0,0 +) +g1,8013:6630773,44357929 +) +k1,8014:6630773,44357929:0 +h1,8014:11372958,44357929:0,0,0 +k1,8014:32583030,44357929:21210072 +g1,8014:32583030,44357929 +) +(1,8015:6630773,45024107:25952256,404226,101187 +h1,8015:6630773,45024107:0,0,0 +k1,8015:6630773,45024107:0 +h1,8015:11689103,45024107:0,0,0 +k1,8015:32583029,45024107:20893926 +g1,8015:32583029,45024107 +) +(1,8019:6630773,45434140:25952256,404226,76021 +(1,8017:6630773,45434140:0,0,0 +g1,8017:6630773,45434140 +g1,8017:6630773,45434140 +g1,8017:6303093,45434140 +(1,8017:6303093,45434140:0,0,0 +) +g1,8017:6630773,45434140 +) +g1,8019:7579210,45434140 +g1,8019:8843793,45434140 +g1,8019:11056813,45434140 +g1,8019:11372959,45434140 +g1,8019:13585979,45434140 +g1,8019:13902125,45434140 +h1,8019:16115145,45434140:0,0,0 +k1,8019:32583029,45434140:16467884 +g1,8019:32583029,45434140 +) +] +) +g1,8020:32583029,45510161 +g1,8020:6630773,45510161 +g1,8020:6630773,45510161 +g1,8020:32583029,45510161 +g1,8020:32583029,45510161 +) +h1,8020:6630773,45706769:0,0,0 +] +(1,8024:32583029,45706769:0,0,0 +g1,8024:32583029,45706769 +) +) +] +(1,8024:6630773,47279633:25952256,0,0 +h1,8024:6630773,47279633:25952256,0,0 +) +] +h1,8024:4262630,4025873:0,0,0 +] +!28752 }150 -Input:1116:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1117:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1118:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1119:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1120:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 +Input:1112:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1113:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1114:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1115:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1116:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 {151 -[1,8123:4262630,47279633:28320399,43253760,0 -(1,8123:4262630,4025873:0,0,0 -[1,8123:-473657,4025873:25952256,0,0 -(1,8123:-473657,-710414:25952256,0,0 -h1,8123:-473657,-710414:0,0,0 -(1,8123:-473657,-710414:0,0,0 -(1,8123:-473657,-710414:0,0,0 -g1,8123:-473657,-710414 -(1,8123:-473657,-710414:65781,0,65781 -g1,8123:-407876,-710414 -[1,8123:-407876,-644633:0,0,0 +[1,8128:4262630,47279633:28320399,43253760,0 +(1,8128:4262630,4025873:0,0,0 +[1,8128:-473657,4025873:25952256,0,0 +(1,8128:-473657,-710414:25952256,0,0 +h1,8128:-473657,-710414:0,0,0 +(1,8128:-473657,-710414:0,0,0 +(1,8128:-473657,-710414:0,0,0 +g1,8128:-473657,-710414 +(1,8128:-473657,-710414:65781,0,65781 +g1,8128:-407876,-710414 +[1,8128:-407876,-644633:0,0,0 ] ) -k1,8123:-473657,-710414:-65781 +k1,8128:-473657,-710414:-65781 ) ) -k1,8123:25478599,-710414:25952256 -g1,8123:25478599,-710414 +k1,8128:25478599,-710414:25952256 +g1,8128:25478599,-710414 ) ] ) -[1,8123:6630773,47279633:25952256,43253760,0 -[1,8123:6630773,4812305:25952256,786432,0 -(1,8123:6630773,4812305:25952256,505283,134348 -(1,8123:6630773,4812305:25952256,505283,134348 -g1,8123:3078558,4812305 -[1,8123:3078558,4812305:0,0,0 -(1,8123:3078558,2439708:0,1703936,0 -k1,8123:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8123:2537886,2439708:1179648,16384,0 +[1,8128:6630773,47279633:25952256,43253760,0 +[1,8128:6630773,4812305:25952256,786432,0 +(1,8128:6630773,4812305:25952256,505283,134348 +(1,8128:6630773,4812305:25952256,505283,134348 +g1,8128:3078558,4812305 +[1,8128:3078558,4812305:0,0,0 +(1,8128:3078558,2439708:0,1703936,0 +k1,8128:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8128:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8123:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8128:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8123:3078558,4812305:0,0,0 -(1,8123:3078558,2439708:0,1703936,0 -g1,8123:29030814,2439708 -g1,8123:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8123:36151628,1915420:16384,1179648,0 +[1,8128:3078558,4812305:0,0,0 +(1,8128:3078558,2439708:0,1703936,0 +g1,8128:29030814,2439708 +g1,8128:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8128:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8123:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8128:37855564,2439708:1179648,16384,0 ) ) -k1,8123:3078556,2439708:-34777008 +k1,8128:3078556,2439708:-34777008 ) ] -[1,8123:3078558,4812305:0,0,0 -(1,8123:3078558,49800853:0,16384,2228224 -k1,8123:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8123:2537886,49800853:1179648,16384,0 +[1,8128:3078558,4812305:0,0,0 +(1,8128:3078558,49800853:0,16384,2228224 +k1,8128:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8128:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8123:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8128:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8123:3078558,4812305:0,0,0 -(1,8123:3078558,49800853:0,16384,2228224 -g1,8123:29030814,49800853 -g1,8123:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8123:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] +[1,8128:3078558,4812305:0,0,0 +(1,8128:3078558,49800853:0,16384,2228224 +g1,8128:29030814,49800853 +g1,8128:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8128:36151628,51504789:16384,1179648,0 ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8123:37855564,49800853:1179648,16384,0 -) -) -k1,8123:3078556,49800853:-34777008 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] -g1,8123:6630773,4812305 -k1,8123:24573876,4812305:16747726 -g1,8123:25960617,4812305 -g1,8123:26609423,4812305 -g1,8123:29923578,4812305 -) ) -] -[1,8123:6630773,45706769:25952256,40108032,0 -(1,8123:6630773,45706769:25952256,40108032,0 -(1,8123:6630773,45706769:0,0,0 -g1,8123:6630773,45706769 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8128:37855564,49800853:1179648,16384,0 ) -[1,8123:6630773,45706769:25952256,40108032,0 -(1,8005:6630773,6254097:25952256,513147,134348 -k1,8004:9729069,6254097:250756 -k1,8004:11171269,6254097:250755 -k1,8004:13472647,6254097:250756 -k1,8004:15698311,6254097:251064 -k1,8004:16436603,6254097:250704 -k1,8004:20526457,6254097:250755 -k1,8004:23472709,6254097:250756 -k1,8004:28147144,6254097:250755 -k1,8004:29416985,6254097:250756 -k1,8005:32583029,6254097:0 ) -(1,8005:6630773,7095585:25952256,505283,126483 -k1,8004:9256586,7095585:280935 -k1,8004:12327390,7095585:280936 -k1,8004:13139822,7095585:280935 -k1,8004:16204727,7095585:280936 -k1,8004:17101700,7095585:280935 -k1,8004:17797397,7095585:280854 -k1,8004:19964458,7095585:280935 -k1,8004:21264478,7095585:280935 -k1,8004:23283429,7095585:280936 -(1,8004:23283429,7095585:0,452978,115847 -r1,8004:26807101,7095585:3523672,568825,115847 -k1,8004:23283429,7095585:-3523672 -) -(1,8004:23283429,7095585:3523672,452978,115847 -k1,8004:23283429,7095585:3277 -h1,8004:26803824,7095585:0,411205,112570 -) -k1,8004:27088036,7095585:280935 -k1,8004:27088036,7095585:0 -k1,8004:27542642,7095585:280936 -k1,8004:28777126,7095585:280935 -k1,8004:30190524,7095585:280936 -k1,8004:31563944,7095585:280935 -k1,8005:32583029,7095585:0 -) -(1,8005:6630773,7937073:25952256,505283,115847 -(1,8004:6630773,7937073:0,452978,115847 -r1,8004:9802733,7937073:3171960,568825,115847 -k1,8004:6630773,7937073:-3171960 -) -(1,8004:6630773,7937073:3171960,452978,115847 -k1,8004:6630773,7937073:3277 -h1,8004:9799456,7937073:0,411205,112570 -) -g1,8004:10001962,7937073 -g1,8004:11590554,7937073 -k1,8005:32583028,7937073:19884260 -g1,8005:32583028,7937073 -) -v1,8007:6630773,9035057:0,393216,0 -(1,8015:6630773,10716588:25952256,2074747,196608 -g1,8015:6630773,10716588 -g1,8015:6630773,10716588 -g1,8015:6434165,10716588 -(1,8015:6434165,10716588:0,2074747,196608 -r1,8015:32779637,10716588:26345472,2271355,196608 -k1,8015:6434165,10716588:-26345472 -) -(1,8015:6434165,10716588:26345472,2074747,196608 -[1,8015:6630773,10716588:25952256,1878139,0 -(1,8009:6630773,9242675:25952256,404226,101187 -(1,8008:6630773,9242675:0,0,0 -g1,8008:6630773,9242675 -g1,8008:6630773,9242675 -g1,8008:6303093,9242675 -(1,8008:6303093,9242675:0,0,0 -) -g1,8008:6630773,9242675 -) -k1,8009:6630773,9242675:0 -h1,8009:11372958,9242675:0,0,0 -k1,8009:32583030,9242675:21210072 -g1,8009:32583030,9242675 -) -(1,8010:6630773,9908853:25952256,404226,101187 -h1,8010:6630773,9908853:0,0,0 -k1,8010:6630773,9908853:0 -h1,8010:11689103,9908853:0,0,0 -k1,8010:32583029,9908853:20893926 -g1,8010:32583029,9908853 -) -(1,8014:6630773,10640567:25952256,404226,76021 -(1,8012:6630773,10640567:0,0,0 -g1,8012:6630773,10640567 -g1,8012:6630773,10640567 -g1,8012:6303093,10640567 -(1,8012:6303093,10640567:0,0,0 -) -g1,8012:6630773,10640567 -) -g1,8014:7579210,10640567 -g1,8014:8843793,10640567 -g1,8014:11056813,10640567 -g1,8014:11372959,10640567 -g1,8014:13585979,10640567 -g1,8014:13902125,10640567 -h1,8014:16115145,10640567:0,0,0 -k1,8014:32583029,10640567:16467884 -g1,8014:32583029,10640567 -) -] -) -g1,8015:32583029,10716588 -g1,8015:6630773,10716588 -g1,8015:6630773,10716588 -g1,8015:32583029,10716588 -g1,8015:32583029,10716588 -) -h1,8015:6630773,10913196:0,0,0 -v1,8019:6630773,12442987:0,393216,0 -(1,8024:6630773,13399096:25952256,1349325,196608 -g1,8024:6630773,13399096 -g1,8024:6630773,13399096 -g1,8024:6434165,13399096 -(1,8024:6434165,13399096:0,1349325,196608 -r1,8024:32779637,13399096:26345472,1545933,196608 -k1,8024:6434165,13399096:-26345472 -) -(1,8024:6434165,13399096:26345472,1349325,196608 -[1,8024:6630773,13399096:25952256,1152717,0 -(1,8021:6630773,12656897:25952256,410518,101187 -(1,8020:6630773,12656897:0,0,0 -g1,8020:6630773,12656897 -g1,8020:6630773,12656897 -g1,8020:6303093,12656897 -(1,8020:6303093,12656897:0,0,0 -) -g1,8020:6630773,12656897 -) -g1,8021:8211502,12656897 -g1,8021:9159940,12656897 -g1,8021:12005251,12656897 -g1,8021:12637543,12656897 -g1,8021:17379728,12656897 -g1,8021:18644311,12656897 -g1,8021:19908894,12656897 -g1,8021:21489623,12656897 -g1,8021:22121915,12656897 -k1,8021:22121915,12656897:0 -h1,8021:25283372,12656897:0,0,0 -k1,8021:32583029,12656897:7299657 -g1,8021:32583029,12656897 -) -(1,8022:6630773,13323075:25952256,404226,76021 -h1,8022:6630773,13323075:0,0,0 -g1,8022:6946919,13323075 -g1,8022:7263065,13323075 -g1,8022:7579211,13323075 -g1,8022:7895357,13323075 -g1,8022:8211503,13323075 -g1,8022:8527649,13323075 -g1,8022:8843795,13323075 -g1,8022:9159941,13323075 -g1,8022:9476087,13323075 -g1,8022:9792233,13323075 -g1,8022:10108379,13323075 -g1,8022:10424525,13323075 -g1,8022:12637545,13323075 -g1,8022:13269837,13323075 -g1,8022:15166711,13323075 -g1,8022:16115148,13323075 -h1,8022:19276605,13323075:0,0,0 -k1,8022:32583029,13323075:13306424 -g1,8022:32583029,13323075 -) -] -) -g1,8024:32583029,13399096 -g1,8024:6630773,13399096 -g1,8024:6630773,13399096 -g1,8024:32583029,13399096 -g1,8024:32583029,13399096 -) -h1,8024:6630773,13595704:0,0,0 -(1,8028:6630773,14868998:25952256,513147,126483 -h1,8027:6630773,14868998:983040,0,0 -k1,8027:8806830,14868998:239468 -k1,8027:10150580,14868998:239468 -k1,8027:12594025,14868998:239469 -k1,8027:15595836,14868998:239468 -k1,8027:19762877,14868998:239468 -k1,8027:22770586,14868998:239468 -k1,8027:23696216,14868998:239468 -k1,8027:27025708,14868998:239469 -k1,8027:28212827,14868998:239468 -k1,8027:30265021,14868998:239468 -k1,8027:32583029,14868998:0 -) -(1,8028:6630773,15710486:25952256,505283,134348 -g1,8027:8062079,15710486 -g1,8027:10539995,15710486 -h1,8027:11510583,15710486:0,0,0 -g1,8027:11709812,15710486 -g1,8027:12718411,15710486 -g1,8027:14415793,15710486 -h1,8027:15611170,15710486:0,0,0 -k1,8028:32583029,15710486:16591095 -g1,8028:32583029,15710486 -) -v1,8030:6630773,16808470:0,393216,0 -(1,8074:6630773,36647253:25952256,20231999,196608 -g1,8074:6630773,36647253 -g1,8074:6630773,36647253 -g1,8074:6434165,36647253 -(1,8074:6434165,36647253:0,20231999,196608 -r1,8074:32779637,36647253:26345472,20428607,196608 -k1,8074:6434165,36647253:-26345472 -) -(1,8074:6434165,36647253:26345472,20231999,196608 -[1,8074:6630773,36647253:25952256,20035391,0 -(1,8032:6630773,17022380:25952256,410518,76021 -(1,8031:6630773,17022380:0,0,0 -g1,8031:6630773,17022380 -g1,8031:6630773,17022380 -g1,8031:6303093,17022380 -(1,8031:6303093,17022380:0,0,0 -) -g1,8031:6630773,17022380 -) -k1,8032:6630773,17022380:0 -h1,8032:10108375,17022380:0,0,0 -k1,8032:32583029,17022380:22474654 -g1,8032:32583029,17022380 -) -(1,8036:6630773,17754094:25952256,404226,76021 -(1,8034:6630773,17754094:0,0,0 -g1,8034:6630773,17754094 -g1,8034:6630773,17754094 -g1,8034:6303093,17754094 -(1,8034:6303093,17754094:0,0,0 -) -g1,8034:6630773,17754094 -) -g1,8036:7579210,17754094 -g1,8036:8843793,17754094 -h1,8036:10424521,17754094:0,0,0 -k1,8036:32583029,17754094:22158508 -g1,8036:32583029,17754094 -) -(1,8038:6630773,19075632:25952256,410518,101187 -(1,8037:6630773,19075632:0,0,0 -g1,8037:6630773,19075632 -g1,8037:6630773,19075632 -g1,8037:6303093,19075632 -(1,8037:6303093,19075632:0,0,0 -) -g1,8037:6630773,19075632 -) -k1,8038:6630773,19075632:0 -h1,8038:10740667,19075632:0,0,0 -k1,8038:32583029,19075632:21842362 -g1,8038:32583029,19075632 -) -(1,8055:6630773,19807346:25952256,379060,0 -(1,8040:6630773,19807346:0,0,0 -g1,8040:6630773,19807346 -g1,8040:6630773,19807346 -g1,8040:6303093,19807346 -(1,8040:6303093,19807346:0,0,0 -) -g1,8040:6630773,19807346 -) -h1,8055:7263064,19807346:0,0,0 -k1,8055:32583028,19807346:25319964 -g1,8055:32583028,19807346 -) -(1,8055:6630773,20473524:25952256,404226,82312 -h1,8055:6630773,20473524:0,0,0 -g1,8055:7579210,20473524 -g1,8055:10424521,20473524 -g1,8055:12005250,20473524 -g1,8055:12637542,20473524 -g1,8055:17379728,20473524 -g1,8055:18644311,20473524 -h1,8055:19276602,20473524:0,0,0 -k1,8055:32583029,20473524:13306427 -g1,8055:32583029,20473524 -) -(1,8055:6630773,21139702:25952256,379060,0 -h1,8055:6630773,21139702:0,0,0 -h1,8055:7263064,21139702:0,0,0 -k1,8055:32583028,21139702:25319964 -g1,8055:32583028,21139702 -) -(1,8055:6630773,21805880:25952256,379060,6290 -h1,8055:6630773,21805880:0,0,0 -g1,8055:7579210,21805880 -h1,8055:11056812,21805880:0,0,0 -k1,8055:32583028,21805880:21526216 -g1,8055:32583028,21805880 -) -(1,8055:6630773,22472058:25952256,404226,76021 -h1,8055:6630773,22472058:0,0,0 -g1,8055:7579210,22472058 -g1,8055:7895356,22472058 -g1,8055:8211502,22472058 -g1,8055:8527648,22472058 -g1,8055:8843794,22472058 -g1,8055:11689105,22472058 -g1,8055:13269834,22472058 -g1,8055:15166708,22472058 -g1,8055:15799000,22472058 -g1,8055:17695874,22472058 -k1,8055:17695874,22472058:0 -h1,8055:20225039,22472058:0,0,0 -k1,8055:32583029,22472058:12357990 -g1,8055:32583029,22472058 -) -(1,8055:6630773,23138236:25952256,388497,9436 -h1,8055:6630773,23138236:0,0,0 -g1,8055:7579210,23138236 -g1,8055:8527647,23138236 -g1,8055:11689104,23138236 -g1,8055:12005250,23138236 -g1,8055:15166707,23138236 -g1,8055:15482853,23138236 -g1,8055:17695873,23138236 -g1,8055:20541184,23138236 -h1,8055:21489621,23138236:0,0,0 -k1,8055:32583029,23138236:11093408 -g1,8055:32583029,23138236 -) -(1,8055:6630773,23804414:25952256,388497,9436 -h1,8055:6630773,23804414:0,0,0 -g1,8055:7579210,23804414 -g1,8055:8211502,23804414 -g1,8055:8527648,23804414 -g1,8055:11689105,23804414 -g1,8055:12005251,23804414 -g1,8055:15166708,23804414 -g1,8055:15482854,23804414 -g1,8055:15799000,23804414 -g1,8055:17695874,23804414 -g1,8055:20541185,23804414 -h1,8055:21489622,23804414:0,0,0 -k1,8055:32583029,23804414:11093407 -g1,8055:32583029,23804414 -) -(1,8055:6630773,24470592:25952256,379060,0 -h1,8055:6630773,24470592:0,0,0 -g1,8055:7579210,24470592 -k1,8055:7579210,24470592:0 -h1,8055:8527648,24470592:0,0,0 -k1,8055:32583028,24470592:24055380 -g1,8055:32583028,24470592 -) -(1,8055:6630773,25136770:25952256,410518,107478 -h1,8055:6630773,25136770:0,0,0 -g1,8055:7579210,25136770 -g1,8055:10108376,25136770 -g1,8055:12321396,25136770 -g1,8055:12637542,25136770 -g1,8055:13269834,25136770 -g1,8055:15166709,25136770 -g1,8055:17063583,25136770 -g1,8055:18644312,25136770 -g1,8055:20225041,25136770 -g1,8055:21489625,25136770 -g1,8055:23070354,25136770 -g1,8055:24334938,25136770 -g1,8055:25599521,25136770 -g1,8055:26231813,25136770 -g1,8055:26864105,25136770 -h1,8055:27180251,25136770:0,0,0 -k1,8055:32583029,25136770:5402778 -g1,8055:32583029,25136770 -) -(1,8055:6630773,25802948:25952256,379060,0 -h1,8055:6630773,25802948:0,0,0 -h1,8055:7263064,25802948:0,0,0 -k1,8055:32583028,25802948:25319964 -g1,8055:32583028,25802948 -) -(1,8055:6630773,26469126:25952256,410518,107478 -h1,8055:6630773,26469126:0,0,0 -g1,8055:7579210,26469126 -g1,8055:10424521,26469126 -g1,8055:13269832,26469126 -g1,8055:15482852,26469126 -g1,8055:17379726,26469126 -g1,8055:18328163,26469126 -g1,8055:19276600,26469126 -g1,8055:21805766,26469126 -g1,8055:22754203,26469126 -h1,8055:24967223,26469126:0,0,0 -k1,8055:32583029,26469126:7615806 -g1,8055:32583029,26469126 -) -(1,8055:6630773,27135304:25952256,379060,0 -h1,8055:6630773,27135304:0,0,0 -h1,8055:7263064,27135304:0,0,0 -k1,8055:32583028,27135304:25319964 -g1,8055:32583028,27135304 -) -(1,8055:6630773,27801482:25952256,410518,107478 -h1,8055:6630773,27801482:0,0,0 -g1,8055:7579210,27801482 -g1,8055:9792230,27801482 -g1,8055:10740667,27801482 -g1,8055:14218270,27801482 -g1,8055:15166707,27801482 -g1,8055:19276601,27801482 -h1,8055:19592747,27801482:0,0,0 -k1,8055:32583029,27801482:12990282 -g1,8055:32583029,27801482 -) -(1,8055:6630773,28467660:25952256,404226,107478 -h1,8055:6630773,28467660:0,0,0 -g1,8055:7579210,28467660 -g1,8055:10424521,28467660 -g1,8055:14218269,28467660 -g1,8055:17695872,28467660 -k1,8055:17695872,28467660:0 -h1,8055:20541183,28467660:0,0,0 -k1,8055:32583029,28467660:12041846 -g1,8055:32583029,28467660 -) -(1,8057:6630773,29789198:25952256,410518,76021 -(1,8056:6630773,29789198:0,0,0 -g1,8056:6630773,29789198 -g1,8056:6630773,29789198 -g1,8056:6303093,29789198 -(1,8056:6303093,29789198:0,0,0 -) -g1,8056:6630773,29789198 -) -k1,8057:6630773,29789198:0 -h1,8057:11372958,29789198:0,0,0 -k1,8057:32583030,29789198:21210072 -g1,8057:32583030,29789198 -) -(1,8064:6630773,30520912:25952256,404226,76021 -(1,8059:6630773,30520912:0,0,0 -g1,8059:6630773,30520912 -g1,8059:6630773,30520912 -g1,8059:6303093,30520912 -(1,8059:6303093,30520912:0,0,0 -) -g1,8059:6630773,30520912 -) -g1,8064:7579210,30520912 -g1,8064:7895356,30520912 -g1,8064:9159939,30520912 -g1,8064:9476085,30520912 -g1,8064:12953688,30520912 -g1,8064:13269834,30520912 -g1,8064:16747437,30520912 -g1,8064:17063583,30520912 -g1,8064:20541186,30520912 -g1,8064:20857332,30520912 -g1,8064:21173478,30520912 -g1,8064:24334935,30520912 -g1,8064:28128683,30520912 -g1,8064:28444829,30520912 -g1,8064:28760975,30520912 -h1,8064:31606286,30520912:0,0,0 -k1,8064:32583029,30520912:976743 -g1,8064:32583029,30520912 -) -(1,8064:6630773,31187090:25952256,404226,76021 -h1,8064:6630773,31187090:0,0,0 -g1,8064:7579210,31187090 -g1,8064:7895356,31187090 -g1,8064:9159939,31187090 -g1,8064:9476085,31187090 -g1,8064:12953688,31187090 -g1,8064:16747436,31187090 -g1,8064:17063582,31187090 -g1,8064:17379728,31187090 -g1,8064:20541185,31187090 -g1,8064:20857331,31187090 -g1,8064:24334934,31187090 -g1,8064:24651080,31187090 -g1,8064:24967226,31187090 -g1,8064:28128683,31187090 -g1,8064:28444829,31187090 -k1,8064:28444829,31187090:0 -h1,8064:31606286,31187090:0,0,0 -k1,8064:32583029,31187090:976743 -g1,8064:32583029,31187090 -) -(1,8064:6630773,31853268:25952256,404226,82312 -h1,8064:6630773,31853268:0,0,0 -g1,8064:7579210,31853268 -k1,8064:7579210,31853268:0 -h1,8064:12005249,31853268:0,0,0 -k1,8064:32583029,31853268:20577780 -g1,8064:32583029,31853268 -) -(1,8064:6630773,32519446:25952256,404226,76021 -h1,8064:6630773,32519446:0,0,0 -g1,8064:7579210,32519446 -g1,8064:8843793,32519446 -h1,8064:12321395,32519446:0,0,0 -k1,8064:32583029,32519446:20261634 -g1,8064:32583029,32519446 -) -(1,8066:6630773,33840984:25952256,410518,76021 -(1,8065:6630773,33840984:0,0,0 -g1,8065:6630773,33840984 -g1,8065:6630773,33840984 -g1,8065:6303093,33840984 -(1,8065:6303093,33840984:0,0,0 -) -g1,8065:6630773,33840984 -) -k1,8066:6630773,33840984:0 -h1,8066:10424521,33840984:0,0,0 -k1,8066:32583029,33840984:22158508 -g1,8066:32583029,33840984 -) -(1,8073:6630773,34572698:25952256,404226,76021 -(1,8068:6630773,34572698:0,0,0 -g1,8068:6630773,34572698 -g1,8068:6630773,34572698 -g1,8068:6303093,34572698 -(1,8068:6303093,34572698:0,0,0 -) -g1,8068:6630773,34572698 -) -g1,8073:7579210,34572698 -g1,8073:7895356,34572698 -g1,8073:9159939,34572698 -g1,8073:9476085,34572698 -g1,8073:12005251,34572698 -g1,8073:12321397,34572698 -g1,8073:14850563,34572698 -g1,8073:17695874,34572698 -g1,8073:20541185,34572698 -g1,8073:23386496,34572698 -g1,8073:26231807,34572698 -g1,8073:29077118,34572698 -h1,8073:31606283,34572698:0,0,0 -k1,8073:32583029,34572698:976746 -g1,8073:32583029,34572698 -) -(1,8073:6630773,35238876:25952256,404226,76021 -h1,8073:6630773,35238876:0,0,0 -g1,8073:7579210,35238876 -g1,8073:7895356,35238876 -g1,8073:9159939,35238876 -g1,8073:12005250,35238876 -g1,8073:14850561,35238876 -g1,8073:17695872,35238876 -h1,8073:20225037,35238876:0,0,0 -k1,8073:32583029,35238876:12357992 -g1,8073:32583029,35238876 -) -(1,8073:6630773,35905054:25952256,404226,82312 -h1,8073:6630773,35905054:0,0,0 -g1,8073:7579210,35905054 -k1,8073:7579210,35905054:0 -h1,8073:12005249,35905054:0,0,0 -k1,8073:32583029,35905054:20577780 -g1,8073:32583029,35905054 -) -(1,8073:6630773,36571232:25952256,404226,76021 -h1,8073:6630773,36571232:0,0,0 -g1,8073:7579210,36571232 -g1,8073:8843793,36571232 -g1,8073:11372959,36571232 -h1,8073:13585979,36571232:0,0,0 -k1,8073:32583029,36571232:18997050 -g1,8073:32583029,36571232 -) -] -) -g1,8074:32583029,36647253 -g1,8074:6630773,36647253 -g1,8074:6630773,36647253 -g1,8074:32583029,36647253 -g1,8074:32583029,36647253 -) -h1,8074:6630773,36843861:0,0,0 -v1,8078:6630773,38548962:0,393216,0 -(1,8123:6630773,45116945:25952256,6961199,589824 -g1,8123:6630773,45116945 -(1,8123:6630773,45116945:25952256,6961199,589824 -(1,8123:6630773,45706769:25952256,7551023,0 -[1,8123:6630773,45706769:25952256,7551023,0 -(1,8123:6630773,45706769:25952256,7524809,0 -r1,8123:6656987,45706769:26214,7524809,0 -[1,8123:6656987,45706769:25899828,7524809,0 -(1,8123:6656987,45116945:25899828,6345161,0 -[1,8123:7246811,45116945:24720180,6345161,0 -(1,8079:7246811,39933669:24720180,1161885,196608 -(1,8078:7246811,39933669:0,1161885,196608 -r1,8123:8794447,39933669:1547636,1358493,196608 -k1,8078:7246811,39933669:-1547636 -) -(1,8078:7246811,39933669:1547636,1161885,196608 -) -k1,8078:9078614,39933669:284167 -k1,8078:9840538,39933669:284167 -k1,8078:10993056,39933669:284166 -k1,8078:12369708,39933669:284167 -(1,8078:12369708,39933669:0,452978,115847 -r1,8123:14134821,39933669:1765113,568825,115847 -k1,8078:12369708,39933669:-1765113 -) -(1,8078:12369708,39933669:1765113,452978,115847 -k1,8078:12369708,39933669:3277 -h1,8078:14131544,39933669:0,411205,112570 -) -k1,8078:14418988,39933669:284167 -k1,8078:15386040,39933669:284167 -(1,8078:15386040,39933669:0,452978,115847 -r1,8123:17854577,39933669:2468537,568825,115847 -k1,8078:15386040,39933669:-2468537 -) -(1,8078:15386040,39933669:2468537,452978,115847 -k1,8078:15386040,39933669:3277 -h1,8078:17851300,39933669:0,411205,112570 -) -k1,8078:18138744,39933669:284167 -k1,8078:19291262,39933669:284166 -k1,8078:20679711,39933669:284167 -k1,8078:21988861,39933669:284167 -k1,8078:23557534,39933669:284167 -k1,8078:25496484,39933669:284166 -k1,8078:26772211,39933669:284167 -k1,8078:30573040,39933669:284167 -k1,8078:31966991,39933669:0 -) -(1,8079:7246811,40775157:24720180,513147,134348 -k1,8078:9800967,40775157:229594 -k1,8078:10681990,40775157:229595 -k1,8078:12724310,40775157:229594 -k1,8078:14941612,40775157:229595 -k1,8078:16362651,40775157:229594 -k1,8078:20284544,40775157:229595 -k1,8078:22501845,40775157:229594 -k1,8078:23922884,40775157:229594 -k1,8078:25349166,40775157:229595 -k1,8078:28357487,40775157:229594 -k1,8078:30546608,40775157:229595 -k1,8078:31307699,40775157:229594 -k1,8078:31966991,40775157:0 -) -(1,8079:7246811,41616645:24720180,505283,115847 -k1,8078:9071273,41616645:269293 -(1,8078:9071273,41616645:0,452978,115847 -r1,8123:10132962,41616645:1061689,568825,115847 -k1,8078:9071273,41616645:-1061689 -) -(1,8078:9071273,41616645:1061689,452978,115847 -k1,8078:9071273,41616645:3277 -h1,8078:10129685,41616645:0,411205,112570 -) -k1,8078:10402254,41616645:269292 -k1,8078:11862992,41616645:269293 -k1,8078:14834334,41616645:269293 -k1,8078:16795766,41616645:269292 -k1,8078:18348254,41616645:269293 -k1,8078:21571254,41616645:269292 -k1,8078:23031992,41616645:269293 -k1,8078:24918714,41616645:269293 -k1,8078:27393948,41616645:269292 -k1,8078:29013283,41616645:269293 -k1,8078:31966991,41616645:0 -) -(1,8079:7246811,42458133:24720180,505283,134348 -k1,8078:8523111,42458133:284740 -k1,8078:11029522,42458133:284740 -k1,8078:11965690,42458133:284740 -k1,8078:13269515,42458133:284740 -k1,8078:16166521,42458133:284741 -k1,8078:21141017,42458133:284740 -k1,8078:23880080,42458133:284740 -k1,8078:25851717,42458133:284740 -(1,8078:25851717,42458133:0,452978,115847 -r1,8123:28320254,42458133:2468537,568825,115847 -k1,8078:25851717,42458133:-2468537 -) -(1,8078:25851717,42458133:2468537,452978,115847 -k1,8078:25851717,42458133:3277 -h1,8078:28316977,42458133:0,411205,112570 -) -k1,8078:28604994,42458133:284740 -k1,8078:31966991,42458133:0 -) -(1,8079:7246811,43299621:24720180,513147,134348 -k1,8078:9598295,43299621:234016 -k1,8078:12786019,43299621:234016 -k1,8078:15445522,43299621:234016 -k1,8078:18396662,43299621:234017 -k1,8078:21316343,43299621:234016 -k1,8078:22741804,43299621:234016 -(1,8078:22741804,43299621:0,459977,115847 -r1,8123:25562053,43299621:2820249,575824,115847 -k1,8078:22741804,43299621:-2820249 -) -(1,8078:22741804,43299621:2820249,459977,115847 -k1,8078:22741804,43299621:3277 -h1,8078:25558776,43299621:0,411205,112570 -) -k1,8078:25796069,43299621:234016 -k1,8078:30190310,43299621:234016 -k1,8079:31966991,43299621:0 -) -(1,8079:7246811,44141109:24720180,513147,95026 -k1,8078:9853833,44141109:156631 -k1,8078:11404415,44141109:156631 -k1,8078:13678514,44141109:156631 -k1,8078:16788853,44141109:156631 -k1,8078:18339435,44141109:156631 -k1,8078:22303052,44141109:156631 -k1,8078:23269053,44141109:156631 -k1,8078:24444769,44141109:156631 -k1,8078:27363087,44141109:156631 -k1,8078:28179010,44141109:156631 -k1,8078:29354726,44141109:156631 -k1,8078:31966991,44141109:0 -) -(1,8079:7246811,44982597:24720180,505283,134348 -k1,8079:31966991,44982597:21435516 -g1,8079:31966991,44982597 -) -] -) -] -r1,8123:32583029,45706769:26214,7524809,0 -) -] -) -) -g1,8123:32583029,45116945 -) -] -(1,8123:32583029,45706769:0,0,0 -g1,8123:32583029,45706769 +k1,8128:3078556,49800853:-34777008 +) +] +g1,8128:6630773,4812305 +k1,8128:24502442,4812305:16676292 +g1,8128:25889183,4812305 +g1,8128:26537989,4812305 +g1,8128:29852144,4812305 +) +) +] +[1,8128:6630773,45706769:25952256,40108032,0 +(1,8128:6630773,45706769:25952256,40108032,0 +(1,8128:6630773,45706769:0,0,0 +g1,8128:6630773,45706769 +) +[1,8128:6630773,45706769:25952256,40108032,0 +v1,8024:6630773,6254097:0,393216,0 +(1,8029:6630773,7210206:25952256,1349325,196608 +g1,8029:6630773,7210206 +g1,8029:6630773,7210206 +g1,8029:6434165,7210206 +(1,8029:6434165,7210206:0,1349325,196608 +r1,8029:32779637,7210206:26345472,1545933,196608 +k1,8029:6434165,7210206:-26345472 +) +(1,8029:6434165,7210206:26345472,1349325,196608 +[1,8029:6630773,7210206:25952256,1152717,0 +(1,8026:6630773,6468007:25952256,410518,101187 +(1,8025:6630773,6468007:0,0,0 +g1,8025:6630773,6468007 +g1,8025:6630773,6468007 +g1,8025:6303093,6468007 +(1,8025:6303093,6468007:0,0,0 +) +g1,8025:6630773,6468007 +) +g1,8026:8211502,6468007 +g1,8026:9159940,6468007 +g1,8026:12005251,6468007 +g1,8026:12637543,6468007 +g1,8026:17379728,6468007 +g1,8026:18644311,6468007 +g1,8026:19908894,6468007 +g1,8026:21489623,6468007 +g1,8026:22121915,6468007 +k1,8026:22121915,6468007:0 +h1,8026:25283372,6468007:0,0,0 +k1,8026:32583029,6468007:7299657 +g1,8026:32583029,6468007 +) +(1,8027:6630773,7134185:25952256,404226,76021 +h1,8027:6630773,7134185:0,0,0 +g1,8027:6946919,7134185 +g1,8027:7263065,7134185 +g1,8027:7579211,7134185 +g1,8027:7895357,7134185 +g1,8027:8211503,7134185 +g1,8027:8527649,7134185 +g1,8027:8843795,7134185 +g1,8027:9159941,7134185 +g1,8027:9476087,7134185 +g1,8027:9792233,7134185 +g1,8027:10108379,7134185 +g1,8027:10424525,7134185 +g1,8027:12637545,7134185 +g1,8027:13269837,7134185 +g1,8027:15166711,7134185 +g1,8027:16115148,7134185 +h1,8027:19276605,7134185:0,0,0 +k1,8027:32583029,7134185:13306424 +g1,8027:32583029,7134185 +) +] +) +g1,8029:32583029,7210206 +g1,8029:6630773,7210206 +g1,8029:6630773,7210206 +g1,8029:32583029,7210206 +g1,8029:32583029,7210206 +) +h1,8029:6630773,7406814:0,0,0 +(1,8033:6630773,8772590:25952256,513147,126483 +h1,8032:6630773,8772590:983040,0,0 +k1,8032:8806830,8772590:239468 +k1,8032:10150580,8772590:239468 +k1,8032:12594025,8772590:239469 +k1,8032:15595836,8772590:239468 +k1,8032:19762877,8772590:239468 +k1,8032:22770586,8772590:239468 +k1,8032:23696216,8772590:239468 +k1,8032:27025708,8772590:239469 +k1,8032:28212827,8772590:239468 +k1,8032:30265021,8772590:239468 +k1,8032:32583029,8772590:0 +) +(1,8033:6630773,9614078:25952256,505283,134348 +g1,8032:8062079,9614078 +g1,8032:10539995,9614078 +h1,8032:11510583,9614078:0,0,0 +g1,8032:11709812,9614078 +g1,8032:12718411,9614078 +g1,8032:14415793,9614078 +h1,8032:15611170,9614078:0,0,0 +k1,8033:32583029,9614078:16591095 +g1,8033:32583029,9614078 +) +v1,8035:6630773,10804544:0,393216,0 +(1,8079:6630773,30643327:25952256,20231999,196608 +g1,8079:6630773,30643327 +g1,8079:6630773,30643327 +g1,8079:6434165,30643327 +(1,8079:6434165,30643327:0,20231999,196608 +r1,8079:32779637,30643327:26345472,20428607,196608 +k1,8079:6434165,30643327:-26345472 +) +(1,8079:6434165,30643327:26345472,20231999,196608 +[1,8079:6630773,30643327:25952256,20035391,0 +(1,8037:6630773,11018454:25952256,410518,76021 +(1,8036:6630773,11018454:0,0,0 +g1,8036:6630773,11018454 +g1,8036:6630773,11018454 +g1,8036:6303093,11018454 +(1,8036:6303093,11018454:0,0,0 +) +g1,8036:6630773,11018454 +) +k1,8037:6630773,11018454:0 +h1,8037:10108375,11018454:0,0,0 +k1,8037:32583029,11018454:22474654 +g1,8037:32583029,11018454 +) +(1,8041:6630773,11750168:25952256,404226,76021 +(1,8039:6630773,11750168:0,0,0 +g1,8039:6630773,11750168 +g1,8039:6630773,11750168 +g1,8039:6303093,11750168 +(1,8039:6303093,11750168:0,0,0 +) +g1,8039:6630773,11750168 +) +g1,8041:7579210,11750168 +g1,8041:8843793,11750168 +h1,8041:10424521,11750168:0,0,0 +k1,8041:32583029,11750168:22158508 +g1,8041:32583029,11750168 +) +(1,8043:6630773,13071706:25952256,410518,101187 +(1,8042:6630773,13071706:0,0,0 +g1,8042:6630773,13071706 +g1,8042:6630773,13071706 +g1,8042:6303093,13071706 +(1,8042:6303093,13071706:0,0,0 +) +g1,8042:6630773,13071706 +) +k1,8043:6630773,13071706:0 +h1,8043:10740667,13071706:0,0,0 +k1,8043:32583029,13071706:21842362 +g1,8043:32583029,13071706 +) +(1,8060:6630773,13803420:25952256,379060,0 +(1,8045:6630773,13803420:0,0,0 +g1,8045:6630773,13803420 +g1,8045:6630773,13803420 +g1,8045:6303093,13803420 +(1,8045:6303093,13803420:0,0,0 +) +g1,8045:6630773,13803420 +) +h1,8060:7263064,13803420:0,0,0 +k1,8060:32583028,13803420:25319964 +g1,8060:32583028,13803420 +) +(1,8060:6630773,14469598:25952256,404226,82312 +h1,8060:6630773,14469598:0,0,0 +g1,8060:7579210,14469598 +g1,8060:10424521,14469598 +g1,8060:12005250,14469598 +g1,8060:12637542,14469598 +g1,8060:17379728,14469598 +g1,8060:18644311,14469598 +h1,8060:19276602,14469598:0,0,0 +k1,8060:32583029,14469598:13306427 +g1,8060:32583029,14469598 +) +(1,8060:6630773,15135776:25952256,379060,0 +h1,8060:6630773,15135776:0,0,0 +h1,8060:7263064,15135776:0,0,0 +k1,8060:32583028,15135776:25319964 +g1,8060:32583028,15135776 +) +(1,8060:6630773,15801954:25952256,379060,6290 +h1,8060:6630773,15801954:0,0,0 +g1,8060:7579210,15801954 +h1,8060:11056812,15801954:0,0,0 +k1,8060:32583028,15801954:21526216 +g1,8060:32583028,15801954 +) +(1,8060:6630773,16468132:25952256,404226,76021 +h1,8060:6630773,16468132:0,0,0 +g1,8060:7579210,16468132 +g1,8060:7895356,16468132 +g1,8060:8211502,16468132 +g1,8060:8527648,16468132 +g1,8060:8843794,16468132 +g1,8060:11689105,16468132 +g1,8060:13269834,16468132 +g1,8060:15166708,16468132 +g1,8060:15799000,16468132 +g1,8060:17695874,16468132 +k1,8060:17695874,16468132:0 +h1,8060:20225039,16468132:0,0,0 +k1,8060:32583029,16468132:12357990 +g1,8060:32583029,16468132 +) +(1,8060:6630773,17134310:25952256,388497,9436 +h1,8060:6630773,17134310:0,0,0 +g1,8060:7579210,17134310 +g1,8060:8527647,17134310 +g1,8060:11689104,17134310 +g1,8060:12005250,17134310 +g1,8060:15166707,17134310 +g1,8060:15482853,17134310 +g1,8060:17695873,17134310 +g1,8060:20541184,17134310 +h1,8060:21489621,17134310:0,0,0 +k1,8060:32583029,17134310:11093408 +g1,8060:32583029,17134310 +) +(1,8060:6630773,17800488:25952256,388497,9436 +h1,8060:6630773,17800488:0,0,0 +g1,8060:7579210,17800488 +g1,8060:8211502,17800488 +g1,8060:8527648,17800488 +g1,8060:11689105,17800488 +g1,8060:12005251,17800488 +g1,8060:15166708,17800488 +g1,8060:15482854,17800488 +g1,8060:15799000,17800488 +g1,8060:17695874,17800488 +g1,8060:20541185,17800488 +h1,8060:21489622,17800488:0,0,0 +k1,8060:32583029,17800488:11093407 +g1,8060:32583029,17800488 +) +(1,8060:6630773,18466666:25952256,379060,0 +h1,8060:6630773,18466666:0,0,0 +g1,8060:7579210,18466666 +k1,8060:7579210,18466666:0 +h1,8060:8527648,18466666:0,0,0 +k1,8060:32583028,18466666:24055380 +g1,8060:32583028,18466666 +) +(1,8060:6630773,19132844:25952256,410518,107478 +h1,8060:6630773,19132844:0,0,0 +g1,8060:7579210,19132844 +g1,8060:10108376,19132844 +g1,8060:12321396,19132844 +g1,8060:12637542,19132844 +g1,8060:13269834,19132844 +g1,8060:15166709,19132844 +g1,8060:17063583,19132844 +g1,8060:18644312,19132844 +g1,8060:20225041,19132844 +g1,8060:21489625,19132844 +g1,8060:23070354,19132844 +g1,8060:24334938,19132844 +g1,8060:25599521,19132844 +g1,8060:26231813,19132844 +g1,8060:26864105,19132844 +h1,8060:27180251,19132844:0,0,0 +k1,8060:32583029,19132844:5402778 +g1,8060:32583029,19132844 +) +(1,8060:6630773,19799022:25952256,379060,0 +h1,8060:6630773,19799022:0,0,0 +h1,8060:7263064,19799022:0,0,0 +k1,8060:32583028,19799022:25319964 +g1,8060:32583028,19799022 +) +(1,8060:6630773,20465200:25952256,410518,107478 +h1,8060:6630773,20465200:0,0,0 +g1,8060:7579210,20465200 +g1,8060:10424521,20465200 +g1,8060:13269832,20465200 +g1,8060:15482852,20465200 +g1,8060:17379726,20465200 +g1,8060:18328163,20465200 +g1,8060:19276600,20465200 +g1,8060:21805766,20465200 +g1,8060:22754203,20465200 +h1,8060:24967223,20465200:0,0,0 +k1,8060:32583029,20465200:7615806 +g1,8060:32583029,20465200 +) +(1,8060:6630773,21131378:25952256,379060,0 +h1,8060:6630773,21131378:0,0,0 +h1,8060:7263064,21131378:0,0,0 +k1,8060:32583028,21131378:25319964 +g1,8060:32583028,21131378 +) +(1,8060:6630773,21797556:25952256,410518,107478 +h1,8060:6630773,21797556:0,0,0 +g1,8060:7579210,21797556 +g1,8060:9792230,21797556 +g1,8060:10740667,21797556 +g1,8060:14218270,21797556 +g1,8060:15166707,21797556 +g1,8060:19276601,21797556 +h1,8060:19592747,21797556:0,0,0 +k1,8060:32583029,21797556:12990282 +g1,8060:32583029,21797556 +) +(1,8060:6630773,22463734:25952256,404226,107478 +h1,8060:6630773,22463734:0,0,0 +g1,8060:7579210,22463734 +g1,8060:10424521,22463734 +g1,8060:14218269,22463734 +g1,8060:17695872,22463734 +k1,8060:17695872,22463734:0 +h1,8060:20541183,22463734:0,0,0 +k1,8060:32583029,22463734:12041846 +g1,8060:32583029,22463734 +) +(1,8062:6630773,23785272:25952256,410518,76021 +(1,8061:6630773,23785272:0,0,0 +g1,8061:6630773,23785272 +g1,8061:6630773,23785272 +g1,8061:6303093,23785272 +(1,8061:6303093,23785272:0,0,0 +) +g1,8061:6630773,23785272 +) +k1,8062:6630773,23785272:0 +h1,8062:11372958,23785272:0,0,0 +k1,8062:32583030,23785272:21210072 +g1,8062:32583030,23785272 +) +(1,8069:6630773,24516986:25952256,404226,76021 +(1,8064:6630773,24516986:0,0,0 +g1,8064:6630773,24516986 +g1,8064:6630773,24516986 +g1,8064:6303093,24516986 +(1,8064:6303093,24516986:0,0,0 +) +g1,8064:6630773,24516986 +) +g1,8069:7579210,24516986 +g1,8069:7895356,24516986 +g1,8069:9159939,24516986 +g1,8069:9476085,24516986 +g1,8069:12953688,24516986 +g1,8069:13269834,24516986 +g1,8069:16747437,24516986 +g1,8069:17063583,24516986 +g1,8069:20541186,24516986 +g1,8069:20857332,24516986 +g1,8069:21173478,24516986 +g1,8069:24334935,24516986 +g1,8069:28128683,24516986 +g1,8069:28444829,24516986 +g1,8069:28760975,24516986 +h1,8069:31606286,24516986:0,0,0 +k1,8069:32583029,24516986:976743 +g1,8069:32583029,24516986 +) +(1,8069:6630773,25183164:25952256,404226,76021 +h1,8069:6630773,25183164:0,0,0 +g1,8069:7579210,25183164 +g1,8069:7895356,25183164 +g1,8069:9159939,25183164 +g1,8069:9476085,25183164 +g1,8069:12953688,25183164 +g1,8069:16747436,25183164 +g1,8069:17063582,25183164 +g1,8069:17379728,25183164 +g1,8069:20541185,25183164 +g1,8069:20857331,25183164 +g1,8069:24334934,25183164 +g1,8069:24651080,25183164 +g1,8069:24967226,25183164 +g1,8069:28128683,25183164 +g1,8069:28444829,25183164 +k1,8069:28444829,25183164:0 +h1,8069:31606286,25183164:0,0,0 +k1,8069:32583029,25183164:976743 +g1,8069:32583029,25183164 +) +(1,8069:6630773,25849342:25952256,404226,82312 +h1,8069:6630773,25849342:0,0,0 +g1,8069:7579210,25849342 +k1,8069:7579210,25849342:0 +h1,8069:12005249,25849342:0,0,0 +k1,8069:32583029,25849342:20577780 +g1,8069:32583029,25849342 +) +(1,8069:6630773,26515520:25952256,404226,76021 +h1,8069:6630773,26515520:0,0,0 +g1,8069:7579210,26515520 +g1,8069:8843793,26515520 +h1,8069:12321395,26515520:0,0,0 +k1,8069:32583029,26515520:20261634 +g1,8069:32583029,26515520 +) +(1,8071:6630773,27837058:25952256,410518,76021 +(1,8070:6630773,27837058:0,0,0 +g1,8070:6630773,27837058 +g1,8070:6630773,27837058 +g1,8070:6303093,27837058 +(1,8070:6303093,27837058:0,0,0 +) +g1,8070:6630773,27837058 +) +k1,8071:6630773,27837058:0 +h1,8071:10424521,27837058:0,0,0 +k1,8071:32583029,27837058:22158508 +g1,8071:32583029,27837058 +) +(1,8078:6630773,28568772:25952256,404226,76021 +(1,8073:6630773,28568772:0,0,0 +g1,8073:6630773,28568772 +g1,8073:6630773,28568772 +g1,8073:6303093,28568772 +(1,8073:6303093,28568772:0,0,0 +) +g1,8073:6630773,28568772 +) +g1,8078:7579210,28568772 +g1,8078:7895356,28568772 +g1,8078:9159939,28568772 +g1,8078:9476085,28568772 +g1,8078:12005251,28568772 +g1,8078:12321397,28568772 +g1,8078:14850563,28568772 +g1,8078:17695874,28568772 +g1,8078:20541185,28568772 +g1,8078:23386496,28568772 +g1,8078:26231807,28568772 +g1,8078:29077118,28568772 +h1,8078:31606283,28568772:0,0,0 +k1,8078:32583029,28568772:976746 +g1,8078:32583029,28568772 +) +(1,8078:6630773,29234950:25952256,404226,76021 +h1,8078:6630773,29234950:0,0,0 +g1,8078:7579210,29234950 +g1,8078:7895356,29234950 +g1,8078:9159939,29234950 +g1,8078:12005250,29234950 +g1,8078:14850561,29234950 +g1,8078:17695872,29234950 +h1,8078:20225037,29234950:0,0,0 +k1,8078:32583029,29234950:12357992 +g1,8078:32583029,29234950 +) +(1,8078:6630773,29901128:25952256,404226,82312 +h1,8078:6630773,29901128:0,0,0 +g1,8078:7579210,29901128 +k1,8078:7579210,29901128:0 +h1,8078:12005249,29901128:0,0,0 +k1,8078:32583029,29901128:20577780 +g1,8078:32583029,29901128 +) +(1,8078:6630773,30567306:25952256,404226,76021 +h1,8078:6630773,30567306:0,0,0 +g1,8078:7579210,30567306 +g1,8078:8843793,30567306 +g1,8078:11372959,30567306 +h1,8078:13585979,30567306:0,0,0 +k1,8078:32583029,30567306:18997050 +g1,8078:32583029,30567306 +) +] +) +g1,8079:32583029,30643327 +g1,8079:6630773,30643327 +g1,8079:6630773,30643327 +g1,8079:32583029,30643327 +g1,8079:32583029,30643327 +) +h1,8079:6630773,30839935:0,0,0 +v1,8083:6630773,32729999:0,393216,0 +(1,8128:6630773,39822270:25952256,7485487,589824 +g1,8128:6630773,39822270 +(1,8128:6630773,39822270:25952256,7485487,589824 +(1,8128:6630773,40412094:25952256,8075311,0 +[1,8128:6630773,40412094:25952256,8075311,0 +(1,8128:6630773,40412094:25952256,8049097,0 +r1,8128:6656987,40412094:26214,8049097,0 +[1,8128:6656987,40412094:25899828,8049097,0 +(1,8128:6656987,39822270:25899828,6869449,0 +[1,8128:7246811,39822270:24720180,6869449,0 +(1,8084:7246811,34114706:24720180,1161885,196608 +(1,8083:7246811,34114706:0,1161885,196608 +r1,8128:8794447,34114706:1547636,1358493,196608 +k1,8083:7246811,34114706:-1547636 +) +(1,8083:7246811,34114706:1547636,1161885,196608 +) +k1,8083:9078614,34114706:284167 +k1,8083:9840538,34114706:284167 +k1,8083:10993056,34114706:284166 +k1,8083:12369708,34114706:284167 +(1,8083:12369708,34114706:0,452978,115847 +r1,8128:14134821,34114706:1765113,568825,115847 +k1,8083:12369708,34114706:-1765113 +) +(1,8083:12369708,34114706:1765113,452978,115847 +k1,8083:12369708,34114706:3277 +h1,8083:14131544,34114706:0,411205,112570 +) +k1,8083:14418988,34114706:284167 +k1,8083:15386040,34114706:284167 +(1,8083:15386040,34114706:0,452978,115847 +r1,8128:17854577,34114706:2468537,568825,115847 +k1,8083:15386040,34114706:-2468537 +) +(1,8083:15386040,34114706:2468537,452978,115847 +k1,8083:15386040,34114706:3277 +h1,8083:17851300,34114706:0,411205,112570 +) +k1,8083:18138744,34114706:284167 +k1,8083:19291262,34114706:284166 +k1,8083:20679711,34114706:284167 +k1,8083:21988861,34114706:284167 +k1,8083:23557534,34114706:284167 +k1,8083:25496484,34114706:284166 +k1,8083:26772211,34114706:284167 +k1,8083:30573040,34114706:284167 +k1,8083:31966991,34114706:0 +) +(1,8084:7246811,34956194:24720180,513147,134348 +k1,8083:9800967,34956194:229594 +k1,8083:10681990,34956194:229595 +k1,8083:12724310,34956194:229594 +k1,8083:14941612,34956194:229595 +k1,8083:16362651,34956194:229594 +k1,8083:20284544,34956194:229595 +k1,8083:22501845,34956194:229594 +k1,8083:23922884,34956194:229594 +k1,8083:25349166,34956194:229595 +k1,8083:28357487,34956194:229594 +k1,8083:30546608,34956194:229595 +k1,8083:31307699,34956194:229594 +k1,8083:31966991,34956194:0 +) +(1,8084:7246811,35797682:24720180,505283,115847 +k1,8083:9071273,35797682:269293 +(1,8083:9071273,35797682:0,452978,115847 +r1,8128:10132962,35797682:1061689,568825,115847 +k1,8083:9071273,35797682:-1061689 +) +(1,8083:9071273,35797682:1061689,452978,115847 +k1,8083:9071273,35797682:3277 +h1,8083:10129685,35797682:0,411205,112570 +) +k1,8083:10402254,35797682:269292 +k1,8083:11862992,35797682:269293 +k1,8083:14834334,35797682:269293 +k1,8083:16795766,35797682:269292 +k1,8083:18348254,35797682:269293 +k1,8083:21571254,35797682:269292 +k1,8083:23031992,35797682:269293 +k1,8083:24918714,35797682:269293 +k1,8083:27393948,35797682:269292 +k1,8083:29013283,35797682:269293 +k1,8083:31966991,35797682:0 +) +(1,8084:7246811,36639170:24720180,505283,134348 +k1,8083:8523111,36639170:284740 +k1,8083:11029522,36639170:284740 +k1,8083:11965690,36639170:284740 +k1,8083:13269515,36639170:284740 +k1,8083:16166521,36639170:284741 +k1,8083:21141017,36639170:284740 +k1,8083:23880080,36639170:284740 +k1,8083:25851717,36639170:284740 +(1,8083:25851717,36639170:0,452978,115847 +r1,8128:28320254,36639170:2468537,568825,115847 +k1,8083:25851717,36639170:-2468537 +) +(1,8083:25851717,36639170:2468537,452978,115847 +k1,8083:25851717,36639170:3277 +h1,8083:28316977,36639170:0,411205,112570 +) +k1,8083:28604994,36639170:284740 +k1,8083:31966991,36639170:0 +) +(1,8084:7246811,37480658:24720180,513147,134348 +k1,8083:9598295,37480658:234016 +k1,8083:12786019,37480658:234016 +k1,8083:15445522,37480658:234016 +k1,8083:18396662,37480658:234017 +k1,8083:21316343,37480658:234016 +k1,8083:22741804,37480658:234016 +(1,8083:22741804,37480658:0,459977,115847 +r1,8128:25562053,37480658:2820249,575824,115847 +k1,8083:22741804,37480658:-2820249 +) +(1,8083:22741804,37480658:2820249,459977,115847 +k1,8083:22741804,37480658:3277 +h1,8083:25558776,37480658:0,411205,112570 +) +k1,8083:25796069,37480658:234016 +k1,8083:30190310,37480658:234016 +k1,8084:31966991,37480658:0 +) +(1,8084:7246811,38322146:24720180,513147,95026 +k1,8083:9853833,38322146:156631 +k1,8083:11404415,38322146:156631 +k1,8083:13678514,38322146:156631 +k1,8083:16788853,38322146:156631 +k1,8083:18339435,38322146:156631 +k1,8083:22303052,38322146:156631 +k1,8083:23269053,38322146:156631 +k1,8083:24444769,38322146:156631 +k1,8083:27363087,38322146:156631 +k1,8083:28179010,38322146:156631 +k1,8083:29354726,38322146:156631 +k1,8083:31966991,38322146:0 +) +(1,8084:7246811,39163634:24720180,505283,134348 +k1,8084:31966991,39163634:21435516 +g1,8084:31966991,39163634 +) +] +) +] +r1,8128:32583029,40412094:26214,8049097,0 +) +] +) +) +g1,8128:32583029,39822270 +) +] +(1,8128:32583029,45706769:0,0,0 +g1,8128:32583029,45706769 ) ) ] -(1,8123:6630773,47279633:25952256,0,0 -h1,8123:6630773,47279633:25952256,0,0 +(1,8128:6630773,47279633:25952256,0,0 +h1,8128:6630773,47279633:25952256,0,0 ) ] -h1,8123:4262630,4025873:0,0,0 +h1,8128:4262630,4025873:0,0,0 ] -!23467 +!20306 }151 -Input:1121:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1122:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1123:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1124:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1125:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1126:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1117:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1118:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1119:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1120:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1121:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1122:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {152 -[1,8134:4262630,47279633:28320399,43253760,0 -(1,8134:4262630,4025873:0,0,0 -[1,8134:-473657,4025873:25952256,0,0 -(1,8134:-473657,-710414:25952256,0,0 -h1,8134:-473657,-710414:0,0,0 -(1,8134:-473657,-710414:0,0,0 -(1,8134:-473657,-710414:0,0,0 -g1,8134:-473657,-710414 -(1,8134:-473657,-710414:65781,0,65781 -g1,8134:-407876,-710414 -[1,8134:-407876,-644633:0,0,0 +[1,8139:4262630,47279633:28320399,43253760,0 +(1,8139:4262630,4025873:0,0,0 +[1,8139:-473657,4025873:25952256,0,0 +(1,8139:-473657,-710414:25952256,0,0 +h1,8139:-473657,-710414:0,0,0 +(1,8139:-473657,-710414:0,0,0 +(1,8139:-473657,-710414:0,0,0 +g1,8139:-473657,-710414 +(1,8139:-473657,-710414:65781,0,65781 +g1,8139:-407876,-710414 +[1,8139:-407876,-644633:0,0,0 ] ) -k1,8134:-473657,-710414:-65781 +k1,8139:-473657,-710414:-65781 ) ) -k1,8134:25478599,-710414:25952256 -g1,8134:25478599,-710414 +k1,8139:25478599,-710414:25952256 +g1,8139:25478599,-710414 ) ] ) -[1,8134:6630773,47279633:25952256,43253760,0 -[1,8134:6630773,4812305:25952256,786432,0 -(1,8134:6630773,4812305:25952256,513147,126483 -(1,8134:6630773,4812305:25952256,513147,126483 -g1,8134:3078558,4812305 -[1,8134:3078558,4812305:0,0,0 -(1,8134:3078558,2439708:0,1703936,0 -k1,8134:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8134:2537886,2439708:1179648,16384,0 +[1,8139:6630773,47279633:25952256,43253760,0 +[1,8139:6630773,4812305:25952256,786432,0 +(1,8139:6630773,4812305:25952256,513147,126483 +(1,8139:6630773,4812305:25952256,513147,126483 +g1,8139:3078558,4812305 +[1,8139:3078558,4812305:0,0,0 +(1,8139:3078558,2439708:0,1703936,0 +k1,8139:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8139:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8134:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8139:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8134:3078558,4812305:0,0,0 -(1,8134:3078558,2439708:0,1703936,0 -g1,8134:29030814,2439708 -g1,8134:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8134:36151628,1915420:16384,1179648,0 +[1,8139:3078558,4812305:0,0,0 +(1,8139:3078558,2439708:0,1703936,0 +g1,8139:29030814,2439708 +g1,8139:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8139:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8134:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8139:37855564,2439708:1179648,16384,0 ) ) -k1,8134:3078556,2439708:-34777008 +k1,8139:3078556,2439708:-34777008 ) ] -[1,8134:3078558,4812305:0,0,0 -(1,8134:3078558,49800853:0,16384,2228224 -k1,8134:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8134:2537886,49800853:1179648,16384,0 +[1,8139:3078558,4812305:0,0,0 +(1,8139:3078558,49800853:0,16384,2228224 +k1,8139:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8139:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8134:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8139:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8134:3078558,4812305:0,0,0 -(1,8134:3078558,49800853:0,16384,2228224 -g1,8134:29030814,49800853 -g1,8134:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8134:36151628,51504789:16384,1179648,0 +[1,8139:3078558,4812305:0,0,0 +(1,8139:3078558,49800853:0,16384,2228224 +g1,8139:29030814,49800853 +g1,8139:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8139:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8134:37855564,49800853:1179648,16384,0 -) -) -k1,8134:3078556,49800853:-34777008 -) -] -g1,8134:6630773,4812305 -g1,8134:6630773,4812305 -g1,8134:8691224,4812305 -g1,8134:11722264,4812305 -k1,8134:31387652,4812305:19665388 -) -) -] -[1,8134:6630773,45706769:25952256,40108032,0 -(1,8134:6630773,45706769:25952256,40108032,0 -(1,8134:6630773,45706769:0,0,0 -g1,8134:6630773,45706769 -) -[1,8134:6630773,45706769:25952256,40108032,0 -v1,8123:6630773,6254097:0,393216,0 -(1,8123:6630773,26213133:25952256,20352252,616038 -g1,8123:6630773,26213133 -(1,8123:6630773,26213133:25952256,20352252,616038 -(1,8123:6630773,26829171:25952256,20968290,0 -[1,8123:6630773,26829171:25952256,20968290,0 -(1,8123:6630773,26802957:25952256,20942076,0 -r1,8123:6656987,26802957:26214,20942076,0 -[1,8123:6656987,26802957:25899828,20942076,0 -(1,8123:6656987,26213133:25899828,19762428,0 -[1,8123:7246811,26213133:24720180,19762428,0 -v1,8081:7246811,6843921:0,393216,0 -(1,8097:7246811,13867459:24720180,7416754,196608 -g1,8097:7246811,13867459 -g1,8097:7246811,13867459 -g1,8097:7050203,13867459 -(1,8097:7050203,13867459:0,7416754,196608 -r1,8123:32163599,13867459:25113396,7613362,196608 -k1,8097:7050203,13867459:-25113396 -) -(1,8097:7050203,13867459:25113396,7416754,196608 -[1,8097:7246811,13867459:24720180,7220146,0 -(1,8083:7246811,7057831:24720180,410518,82312 -(1,8082:7246811,7057831:0,0,0 -g1,8082:7246811,7057831 -g1,8082:7246811,7057831 -g1,8082:6919131,7057831 -(1,8082:6919131,7057831:0,0,0 -) -g1,8082:7246811,7057831 -) -k1,8083:7246811,7057831:0 -g1,8083:10408268,7057831 -g1,8083:13569725,7057831 -g1,8083:14202017,7057831 -h1,8083:14834309,7057831:0,0,0 -k1,8083:31966991,7057831:17132682 -g1,8083:31966991,7057831 -) -(1,8096:7246811,7789545:24720180,410518,9436 -(1,8085:7246811,7789545:0,0,0 -g1,8085:7246811,7789545 -g1,8085:7246811,7789545 -g1,8085:6919131,7789545 -(1,8085:6919131,7789545:0,0,0 -) -g1,8085:7246811,7789545 -) -g1,8096:8195248,7789545 -g1,8096:9775977,7789545 -g1,8096:10724414,7789545 -h1,8096:11040560,7789545:0,0,0 -k1,8096:31966992,7789545:20926432 -g1,8096:31966992,7789545 -) -(1,8096:7246811,8455723:24720180,410518,31456 -h1,8096:7246811,8455723:0,0,0 -g1,8096:8195248,8455723 -g1,8096:8511394,8455723 -g1,8096:9143686,8455723 -g1,8096:9775978,8455723 -g1,8096:10092124,8455723 -g1,8096:10408270,8455723 -g1,8096:10724416,8455723 -g1,8096:11040562,8455723 -g1,8096:11356708,8455723 -g1,8096:11672854,8455723 -g1,8096:11989000,8455723 -g1,8096:12305146,8455723 -g1,8096:12621292,8455723 -g1,8096:14518166,8455723 -g1,8096:15466603,8455723 -h1,8096:16098894,8455723:0,0,0 -k1,8096:31966991,8455723:15868097 -g1,8096:31966991,8455723 -) -(1,8096:7246811,9121901:24720180,404226,82312 -h1,8096:7246811,9121901:0,0,0 -g1,8096:8195248,9121901 -g1,8096:8511394,9121901 -g1,8096:8827540,9121901 -g1,8096:10092123,9121901 -g1,8096:12621289,9121901 -g1,8096:15782746,9121901 -g1,8096:17047329,9121901 -h1,8096:20208786,9121901:0,0,0 -k1,8096:31966991,9121901:11758205 -g1,8096:31966991,9121901 -) -(1,8096:7246811,9788079:24720180,410518,31456 -h1,8096:7246811,9788079:0,0,0 -g1,8096:8195248,9788079 -g1,8096:8511394,9788079 -g1,8096:9143686,9788079 -g1,8096:11988997,9788079 -g1,8096:12305143,9788079 -g1,8096:12621289,9788079 -g1,8096:14518163,9788079 -g1,8096:15466600,9788079 -h1,8096:15782746,9788079:0,0,0 -k1,8096:31966991,9788079:16184245 -g1,8096:31966991,9788079 -) -(1,8096:7246811,10454257:24720180,410518,101187 -h1,8096:7246811,10454257:0,0,0 -g1,8096:8195248,10454257 -g1,8096:8511394,10454257 -g1,8096:9143686,10454257 -g1,8096:10724415,10454257 -g1,8096:11040561,10454257 -g1,8096:11356707,10454257 -g1,8096:11672853,10454257 -g1,8096:11988999,10454257 -g1,8096:12305145,10454257 -g1,8096:12621291,10454257 -g1,8096:13253583,10454257 -g1,8096:15466603,10454257 -h1,8096:18311914,10454257:0,0,0 -k1,8096:31966991,10454257:13655077 -g1,8096:31966991,10454257 -) -(1,8096:7246811,11120435:24720180,410518,107478 -h1,8096:7246811,11120435:0,0,0 -k1,8096:8089866,11120435:210764 -k1,8096:8300630,11120435:210764 -k1,8096:8827540,11120435:210764 -k1,8096:10302887,11120435:210764 -k1,8096:10513651,11120435:210764 -k1,8096:10724415,11120435:210764 -k1,8096:10935179,11120435:210764 -k1,8096:11145943,11120435:210764 -k1,8096:11356707,11120435:210764 -k1,8096:11567471,11120435:210764 -k1,8096:12094381,11120435:210764 -k1,8096:14834310,11120435:210764 -k1,8096:18522676,11120435:210764 -k1,8096:19049586,11120435:210764 -k1,8096:20524933,11120435:210764 -k1,8096:21051843,11120435:210764 -k1,8096:25688647,11120435:210764 -k1,8096:26847848,11120435:210764 -k1,8096:28007049,11120435:210764 -k1,8096:29482396,11120435:210764 -k1,8096:30009306,11120435:210764 -k1,8096:33381527,11120435:210764 -k1,8096:35489165,11120435:210764 -k1,8096:36016075,11120435:210764 -k1,8096:37807567,11120435:210764 -k1,8096:38650622,11120435:210764 -k1,8096:38861386,11120435:210764 -k1,8096:39072150,11120435:210764 -k1,8096:39282914,11120435:210764 -k1,8096:39493678,11120435:210764 -k1,8096:39704442,11120435:210764 -k1,8096:43076663,11120435:210764 -k1,8096:46132738,11120435:210764 -k1,8096:46659648,11120435:210764 -k1,8096:48767286,11120435:210764 -k1,8096:53087944,11120435:210764 -h1,8096:54036381,11120435:0,0,0 -k1,8096:54036381,11120435:0 -k1,8096:54036381,11120435:0 -) -(1,8096:7246811,11786613:24720180,410518,31456 -h1,8096:7246811,11786613:0,0,0 -g1,8096:8195248,11786613 -g1,8096:8511394,11786613 -g1,8096:9143686,11786613 -g1,8096:13253580,11786613 -g1,8096:15150454,11786613 -g1,8096:16415037,11786613 -h1,8096:19260348,11786613:0,0,0 -k1,8096:31966991,11786613:12706643 -g1,8096:31966991,11786613 -) -(1,8096:7246811,12452791:24720180,404226,82312 -h1,8096:7246811,12452791:0,0,0 -g1,8096:8195248,12452791 -g1,8096:8511394,12452791 -g1,8096:8827540,12452791 -g1,8096:10092123,12452791 -g1,8096:12621289,12452791 -g1,8096:15782746,12452791 -g1,8096:17047329,12452791 -h1,8096:18944203,12452791:0,0,0 -k1,8096:31966991,12452791:13022788 -g1,8096:31966991,12452791 -) -(1,8096:7246811,13118969:24720180,410518,31456 -h1,8096:7246811,13118969:0,0,0 -g1,8096:8195248,13118969 -g1,8096:8511394,13118969 -g1,8096:9143686,13118969 -g1,8096:11672852,13118969 -g1,8096:11988998,13118969 -g1,8096:12305144,13118969 -g1,8096:12621290,13118969 -g1,8096:14518164,13118969 -g1,8096:15466601,13118969 -h1,8096:15782747,13118969:0,0,0 -k1,8096:31966991,13118969:16184244 -g1,8096:31966991,13118969 -) -(1,8096:7246811,13785147:24720180,404226,82312 -h1,8096:7246811,13785147:0,0,0 -g1,8096:8195248,13785147 -g1,8096:8511394,13785147 -g1,8096:9143686,13785147 -g1,8096:11672852,13785147 -g1,8096:14834309,13785147 -g1,8096:16098892,13785147 -h1,8096:17679620,13785147:0,0,0 -k1,8096:31966991,13785147:14287371 -g1,8096:31966991,13785147 -) -] -) -g1,8097:31966991,13867459 -g1,8097:7246811,13867459 -g1,8097:7246811,13867459 -g1,8097:31966991,13867459 -g1,8097:31966991,13867459 -) -h1,8097:7246811,14064067:0,0,0 -v1,8101:7246811,15778821:0,393216,0 -(1,8121:7246811,25492237:24720180,10106632,196608 -g1,8121:7246811,25492237 -g1,8121:7246811,25492237 -g1,8121:7050203,25492237 -(1,8121:7050203,25492237:0,10106632,196608 -r1,8123:32163599,25492237:25113396,10303240,196608 -k1,8121:7050203,25492237:-25113396 -) -(1,8121:7050203,25492237:25113396,10106632,196608 -[1,8121:7246811,25492237:24720180,9910024,0 -(1,8103:7246811,15992731:24720180,410518,31456 -(1,8102:7246811,15992731:0,0,0 -g1,8102:7246811,15992731 -g1,8102:7246811,15992731 -g1,8102:6919131,15992731 -(1,8102:6919131,15992731:0,0,0 -) -g1,8102:7246811,15992731 -) -h1,8103:11356705,15992731:0,0,0 -k1,8103:31966991,15992731:20610286 -g1,8103:31966991,15992731 -) -(1,8120:7246811,16724445:24720180,410518,31456 -(1,8105:7246811,16724445:0,0,0 -g1,8105:7246811,16724445 -g1,8105:7246811,16724445 -g1,8105:6919131,16724445 -(1,8105:6919131,16724445:0,0,0 -) -g1,8105:7246811,16724445 -) -g1,8120:8195248,16724445 -h1,8120:10408268,16724445:0,0,0 -k1,8120:31966992,16724445:21558724 -g1,8120:31966992,16724445 -) -(1,8120:7246811,17390623:24720180,404226,76021 -h1,8120:7246811,17390623:0,0,0 -g1,8120:8195248,17390623 -g1,8120:9459831,17390623 -h1,8120:10724414,17390623:0,0,0 -k1,8120:31966990,17390623:21242576 -g1,8120:31966990,17390623 -) -(1,8120:7246811,18056801:24720180,379060,0 -h1,8120:7246811,18056801:0,0,0 -h1,8120:7879102,18056801:0,0,0 -k1,8120:31966990,18056801:24087888 -g1,8120:31966990,18056801 -) -(1,8120:7246811,18722979:24720180,410518,31456 -h1,8120:7246811,18722979:0,0,0 -g1,8120:8195248,18722979 -h1,8120:10724413,18722979:0,0,0 -k1,8120:31966991,18722979:21242578 -g1,8120:31966991,18722979 -) -(1,8120:7246811,19389157:24720180,404226,76021 -h1,8120:7246811,19389157:0,0,0 -g1,8120:8195248,19389157 -g1,8120:9459831,19389157 -h1,8120:9775977,19389157:0,0,0 -k1,8120:31966991,19389157:22191014 -g1,8120:31966991,19389157 -) -(1,8120:7246811,20055335:24720180,379060,0 -h1,8120:7246811,20055335:0,0,0 -h1,8120:7879102,20055335:0,0,0 -k1,8120:31966990,20055335:24087888 -g1,8120:31966990,20055335 -) -(1,8120:7246811,20721513:24720180,410518,31456 -h1,8120:7246811,20721513:0,0,0 -g1,8120:8195248,20721513 -h1,8120:10408268,20721513:0,0,0 -k1,8120:31966992,20721513:21558724 -g1,8120:31966992,20721513 -) -(1,8120:7246811,21387691:24720180,404226,76021 -h1,8120:7246811,21387691:0,0,0 -g1,8120:8195248,21387691 -g1,8120:9459831,21387691 -k1,8120:9459831,21387691:0 -h1,8120:13253579,21387691:0,0,0 -k1,8120:31966991,21387691:18713412 -g1,8120:31966991,21387691 -) -(1,8120:7246811,22053869:24720180,379060,0 -h1,8120:7246811,22053869:0,0,0 -h1,8120:7879102,22053869:0,0,0 -k1,8120:31966990,22053869:24087888 -g1,8120:31966990,22053869 -) -(1,8120:7246811,22720047:24720180,410518,101187 -h1,8120:7246811,22720047:0,0,0 -g1,8120:8195248,22720047 -h1,8120:11040559,22720047:0,0,0 -k1,8120:31966991,22720047:20926432 -g1,8120:31966991,22720047 -) -(1,8120:7246811,23386225:24720180,404226,76021 -h1,8120:7246811,23386225:0,0,0 -g1,8120:8195248,23386225 -g1,8120:9459831,23386225 -h1,8120:9775977,23386225:0,0,0 -k1,8120:31966991,23386225:22191014 -g1,8120:31966991,23386225 -) -(1,8120:7246811,24052403:24720180,379060,0 -h1,8120:7246811,24052403:0,0,0 -h1,8120:7879102,24052403:0,0,0 -k1,8120:31966990,24052403:24087888 -g1,8120:31966990,24052403 -) -(1,8120:7246811,24718581:24720180,410518,107478 -h1,8120:7246811,24718581:0,0,0 -g1,8120:8195248,24718581 -h1,8120:11988996,24718581:0,0,0 -k1,8120:31966992,24718581:19977996 -g1,8120:31966992,24718581 -) -(1,8120:7246811,25384759:24720180,404226,107478 -h1,8120:7246811,25384759:0,0,0 -g1,8120:8195248,25384759 -g1,8120:9459831,25384759 -h1,8120:12937433,25384759:0,0,0 -k1,8120:31966991,25384759:19029558 -g1,8120:31966991,25384759 -) -] -) -g1,8121:31966991,25492237 -g1,8121:7246811,25492237 -g1,8121:7246811,25492237 -g1,8121:31966991,25492237 -g1,8121:31966991,25492237 -) -h1,8121:7246811,25688845:0,0,0 -] -) -] -r1,8123:32583029,26802957:26214,20942076,0 -) -] -) -) -g1,8123:32583029,26213133 -) -h1,8123:6630773,26829171:0,0,0 -(1,8127:6630773,30161027:25952256,32768,229376 -(1,8127:6630773,30161027:0,32768,229376 -(1,8127:6630773,30161027:5505024,32768,229376 -r1,8127:12135797,30161027:5505024,262144,229376 -) -k1,8127:6630773,30161027:-5505024 -) -(1,8127:6630773,30161027:25952256,32768,0 -r1,8127:32583029,30161027:25952256,32768,0 -) -) -(1,8127:6630773,31765355:25952256,615776,14155 -(1,8127:6630773,31765355:1974731,582746,14155 -g1,8127:6630773,31765355 -g1,8127:8605504,31765355 -) -g1,8127:11257353,31765355 -k1,8127:32583028,31765355:17770216 -g1,8127:32583028,31765355 -) -(1,8130:6630773,33000059:25952256,513147,126483 -k1,8129:7477145,33000059:218537 -k1,8129:8714767,33000059:218537 -k1,8129:11925023,33000059:218537 -k1,8129:13998885,33000059:218538 -k1,8129:15085774,33000059:218537 -k1,8129:17016767,33000059:218537 -k1,8129:19359981,33000059:218537 -k1,8129:22070197,33000059:218537 -k1,8129:23882570,33000059:218537 -k1,8129:26787429,33000059:218538 -k1,8129:28492978,33000059:218537 -k1,8129:29815797,33000059:218537 -k1,8129:30782100,33000059:218537 -k1,8129:32583029,33000059:0 -) -(1,8130:6630773,33841547:25952256,513147,134348 -k1,8129:10375514,33841547:176306 -k1,8129:12287214,33841547:176307 -k1,8129:13482605,33841547:176306 -k1,8129:15312384,33841547:176306 -k1,8129:17746405,33841547:176306 -k1,8129:19358606,33841547:176307 -k1,8129:20194204,33841547:176306 -k1,8129:21310296,33841547:176306 -k1,8129:22643312,33841547:176306 -k1,8129:23923901,33841547:176307 -k1,8129:25829702,33841547:176306 -k1,8129:27098493,33841547:176306 -k1,8129:27934091,33841547:176306 -k1,8129:30857012,33841547:176307 -(1,8129:30857012,33841547:0,414482,115847 -r1,8129:31215278,33841547:358266,530329,115847 -k1,8129:30857012,33841547:-358266 -) -(1,8129:30857012,33841547:358266,414482,115847 -k1,8129:30857012,33841547:3277 -h1,8129:31212001,33841547:0,411205,112570 -) -k1,8129:31391584,33841547:176306 -k1,8129:32583029,33841547:0 -) -(1,8130:6630773,34683035:25952256,513147,134348 -k1,8129:9718373,34683035:190253 -k1,8129:11869462,34683035:190252 -k1,8129:12825831,34683035:190253 -k1,8129:16208998,34683035:190253 -k1,8129:17991120,34683035:190252 -k1,8129:20282457,34683035:190253 -k1,8129:21664154,34683035:190252 -k1,8129:25650252,34683035:190253 -k1,8129:27575898,34683035:190253 -k1,8129:30843065,34683035:190252 -(1,8129:30843065,34683035:0,414482,115847 -r1,8129:31201331,34683035:358266,530329,115847 -k1,8129:30843065,34683035:-358266 -) -(1,8129:30843065,34683035:358266,414482,115847 -k1,8129:30843065,34683035:3277 -h1,8129:31198054,34683035:0,411205,112570 -) -k1,8129:31391584,34683035:190253 -k1,8130:32583029,34683035:0 -) -(1,8130:6630773,35524523:25952256,513147,134348 -(1,8129:6630773,35524523:0,414482,115847 -r1,8129:6989039,35524523:358266,530329,115847 -k1,8129:6630773,35524523:-358266 -) -(1,8129:6630773,35524523:358266,414482,115847 -k1,8129:6630773,35524523:3277 -h1,8129:6985762,35524523:0,411205,112570 -) -k1,8129:7417831,35524523:255122 -k1,8129:8869639,35524523:255121 -k1,8129:11208806,35524523:255122 -k1,8129:15665440,35524523:255121 -k1,8129:16536600,35524523:255122 -k1,8129:18225650,35524523:255122 -k1,8129:18895558,35524523:255065 -k1,8129:21162635,35524523:255122 -k1,8129:24300685,35524523:255121 -k1,8129:25317335,35524523:255122 -k1,8129:27640772,35524523:255121 -k1,8129:28555186,35524523:255122 -k1,8129:32583029,35524523:0 -) -(1,8130:6630773,36366011:25952256,513147,134348 -k1,8129:7575860,36366011:220259 -k1,8129:8254216,36366011:220259 -k1,8129:9005972,36366011:220259 -k1,8129:10512047,36366011:220259 -k1,8129:13362266,36366011:220259 -k1,8129:14233953,36366011:220259 -k1,8129:16888219,36366011:220259 -k1,8129:18800618,36366011:220259 -k1,8129:22816722,36366011:220259 -k1,8129:23798509,36366011:220259 -k1,8129:27373556,36366011:220259 -k1,8129:28612900,36366011:220259 -k1,8129:29925644,36366011:220259 -k1,8129:30813059,36366011:220259 -(1,8129:30813059,36366011:0,414482,115847 -r1,8129:31171325,36366011:358266,530329,115847 -k1,8129:30813059,36366011:-358266 -) -(1,8129:30813059,36366011:358266,414482,115847 -k1,8129:30813059,36366011:3277 -h1,8129:31168048,36366011:0,411205,112570 -) -k1,8129:31391584,36366011:220259 -k1,8129:32583029,36366011:0 -) -(1,8130:6630773,37207499:25952256,505283,126483 -k1,8130:32583028,37207499:21924412 -g1,8130:32583028,37207499 -) -(1,8132:6630773,38048987:25952256,513147,126483 -h1,8131:6630773,38048987:983040,0,0 -k1,8131:9083487,38048987:272987 -k1,8131:11009947,38048987:272987 -k1,8131:13924691,38048987:272988 -k1,8131:14883840,38048987:272987 -k1,8131:16104478,38048987:272987 -k1,8131:19653610,38048987:272987 -k1,8131:23003512,38048987:272987 -k1,8131:24268059,38048987:272987 -k1,8131:26054273,38048987:272988 -k1,8131:27274911,38048987:272987 -k1,8131:29535605,38048987:272987 -k1,8131:32583029,38048987:0 -) -(1,8132:6630773,38890475:25952256,513147,134348 -k1,8131:8938653,38890475:212694 -k1,8131:9507207,38890475:212694 -k1,8131:12437024,38890475:212694 -k1,8131:15291474,38890475:212694 -k1,8131:16495728,38890475:212694 -k1,8131:20298485,38890475:212695 -k1,8131:23628071,38890475:212694 -k1,8131:24492193,38890475:212694 -k1,8131:27248339,38890475:212694 -k1,8131:29718748,38890475:212694 -k1,8131:31714677,38890475:212694 -k1,8131:32583029,38890475:0 -) -(1,8132:6630773,39731963:25952256,513147,134348 -k1,8131:8544928,39731963:176140 -k1,8131:9491772,39731963:176141 -k1,8131:12944057,39731963:176140 -k1,8131:16194492,39731963:176141 -k1,8131:17655138,39731963:176140 -k1,8131:19600096,39731963:176141 -k1,8131:20524002,39731963:176140 -k1,8131:24290205,39731963:176141 -k1,8131:25152507,39731963:176140 -k1,8131:27066663,39731963:176141 -k1,8131:28564664,39731963:176140 -k1,8131:29400097,39731963:176141 -k1,8131:30595322,39731963:176140 -k1,8131:32583029,39731963:0 -) -(1,8132:6630773,40573451:25952256,513147,126483 -k1,8131:9330856,40573451:156631 -k1,8131:10355838,40573451:156630 -k1,8131:12042735,40573451:156631 -k1,8131:12850794,40573451:156631 -k1,8131:15906081,40573451:156630 -k1,8131:16520809,40573451:156631 -k1,8131:17438968,40573451:156631 -k1,8131:19663914,40573451:156630 -k1,8131:20479837,40573451:156631 -k1,8131:21655553,40573451:156631 -k1,8131:24272405,40573451:156630 -k1,8131:27124532,40573451:156631 -(1,8131:27124532,40573451:0,452978,115847 -r1,8131:28186221,40573451:1061689,568825,115847 -k1,8131:27124532,40573451:-1061689 -) -(1,8131:27124532,40573451:1061689,452978,115847 -k1,8131:27124532,40573451:3277 -h1,8131:28182944,40573451:0,411205,112570 -) -k1,8131:28516522,40573451:156631 -k1,8131:29869839,40573451:156630 -k1,8131:31410590,40573451:156631 -k1,8131:32583029,40573451:0 -) -(1,8132:6630773,41414939:25952256,513147,126483 -k1,8131:9790085,41414939:167593 -k1,8131:11918515,41414939:167593 -k1,8131:14959863,41414939:167594 -k1,8131:16075107,41414939:167593 -k1,8131:18560708,41414939:167593 -k1,8131:20122252,41414939:167593 -k1,8131:21665446,41414939:167593 -k1,8131:22989749,41414939:167593 -k1,8131:26923042,41414939:167594 -k1,8131:29775645,41414939:167593 -k1,8131:31422386,41414939:167593 -k1,8132:32583029,41414939:0 -) -(1,8132:6630773,42256427:25952256,513147,134348 -k1,8131:8739015,42256427:182139 -k1,8131:10067380,42256427:182140 -k1,8131:12119917,42256427:182139 -k1,8131:13321142,42256427:182140 -k1,8131:17268980,42256427:182139 -k1,8131:19962459,42256427:182139 -k1,8131:21277061,42256427:182140 -k1,8131:22206966,42256427:182139 -k1,8131:25597748,42256427:182139 -k1,8131:26589258,42256427:182140 -k1,8131:27790482,42256427:182139 -k1,8131:28768229,42256427:182140 -k1,8131:30648406,42256427:182139 -k1,8131:32583029,42256427:0 -) -(1,8132:6630773,43097915:25952256,513147,126483 -k1,8131:7823965,43097915:174107 -k1,8131:9985779,43097915:174107 -k1,8131:10811314,43097915:174107 -k1,8131:12548455,43097915:174107 -k1,8131:13350397,43097915:174107 -k1,8131:14543589,43097915:174107 -k1,8131:16023829,43097915:174107 -k1,8131:17565018,43097915:174108 -k1,8131:19607556,43097915:174107 -k1,8131:20650015,43097915:174107 -k1,8131:22354388,43097915:174107 -k1,8131:23179923,43097915:174107 -k1,8131:26251377,43097915:174107 -k1,8131:28723832,43097915:174107 -k1,8131:29917024,43097915:174107 -k1,8131:32583029,43097915:0 -) -(1,8132:6630773,43939403:25952256,513147,126483 -k1,8131:7440294,43939403:150229 -k1,8131:8609607,43939403:150228 -k1,8131:9932275,43939403:150229 -k1,8131:12924144,43939403:150228 -k1,8131:14341839,43939403:150229 -k1,8131:16000707,43939403:150229 -k1,8131:17689720,43939403:150228 -k1,8131:20369639,43939403:150229 -k1,8131:23621687,43939403:150229 -k1,8131:25152103,43939403:150228 -k1,8131:27258582,43939403:150229 -k1,8131:28156576,43939403:150228 -k1,8131:31896867,43939403:150229 -k1,8131:32583029,43939403:0 -) -(1,8132:6630773,44780891:25952256,505283,126483 -k1,8131:7995596,44780891:192384 -k1,8131:10890684,44780891:192383 -k1,8131:14848767,44780891:192384 -k1,8131:17882792,44780891:192384 -k1,8131:18691214,44780891:192384 -k1,8131:19902682,44780891:192383 -k1,8131:22256443,44780891:192384 -k1,8131:23076662,44780891:192384 -k1,8131:24288131,44780891:192384 -k1,8131:26721845,44780891:192383 -k1,8131:28454980,44780891:192384 -(1,8131:28454980,44780891:0,452978,122846 -r1,8131:30220093,44780891:1765113,575824,122846 -k1,8131:28454980,44780891:-1765113 -) -(1,8131:28454980,44780891:1765113,452978,122846 -k1,8131:28454980,44780891:3277 -h1,8131:30216816,44780891:0,411205,112570 -) -k1,8131:30412477,44780891:192384 -k1,8131:32583029,44780891:0 -) -] -(1,8134:32583029,45706769:0,0,0 -g1,8134:32583029,45706769 -) -) -] -(1,8134:6630773,47279633:25952256,0,0 -h1,8134:6630773,47279633:25952256,0,0 -) -] -h1,8134:4262630,4025873:0,0,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8139:37855564,49800853:1179648,16384,0 +) +) +k1,8139:3078556,49800853:-34777008 +) +] +g1,8139:6630773,4812305 +g1,8139:6630773,4812305 +g1,8139:8691224,4812305 +g1,8139:11722264,4812305 +k1,8139:31387652,4812305:19665388 +) +) +] +[1,8139:6630773,45706769:25952256,40108032,0 +(1,8139:6630773,45706769:25952256,40108032,0 +(1,8139:6630773,45706769:0,0,0 +g1,8139:6630773,45706769 +) +[1,8139:6630773,45706769:25952256,40108032,0 +v1,8128:6630773,6254097:0,393216,0 +(1,8128:6630773,26213133:25952256,20352252,616038 +g1,8128:6630773,26213133 +(1,8128:6630773,26213133:25952256,20352252,616038 +(1,8128:6630773,26829171:25952256,20968290,0 +[1,8128:6630773,26829171:25952256,20968290,0 +(1,8128:6630773,26802957:25952256,20942076,0 +r1,8128:6656987,26802957:26214,20942076,0 +[1,8128:6656987,26802957:25899828,20942076,0 +(1,8128:6656987,26213133:25899828,19762428,0 +[1,8128:7246811,26213133:24720180,19762428,0 +v1,8086:7246811,6843921:0,393216,0 +(1,8102:7246811,13867459:24720180,7416754,196608 +g1,8102:7246811,13867459 +g1,8102:7246811,13867459 +g1,8102:7050203,13867459 +(1,8102:7050203,13867459:0,7416754,196608 +r1,8128:32163599,13867459:25113396,7613362,196608 +k1,8102:7050203,13867459:-25113396 +) +(1,8102:7050203,13867459:25113396,7416754,196608 +[1,8102:7246811,13867459:24720180,7220146,0 +(1,8088:7246811,7057831:24720180,410518,82312 +(1,8087:7246811,7057831:0,0,0 +g1,8087:7246811,7057831 +g1,8087:7246811,7057831 +g1,8087:6919131,7057831 +(1,8087:6919131,7057831:0,0,0 +) +g1,8087:7246811,7057831 +) +k1,8088:7246811,7057831:0 +g1,8088:10408268,7057831 +g1,8088:13569725,7057831 +g1,8088:14202017,7057831 +h1,8088:14834309,7057831:0,0,0 +k1,8088:31966991,7057831:17132682 +g1,8088:31966991,7057831 +) +(1,8101:7246811,7789545:24720180,410518,9436 +(1,8090:7246811,7789545:0,0,0 +g1,8090:7246811,7789545 +g1,8090:7246811,7789545 +g1,8090:6919131,7789545 +(1,8090:6919131,7789545:0,0,0 +) +g1,8090:7246811,7789545 +) +g1,8101:8195248,7789545 +g1,8101:9775977,7789545 +g1,8101:10724414,7789545 +h1,8101:11040560,7789545:0,0,0 +k1,8101:31966992,7789545:20926432 +g1,8101:31966992,7789545 +) +(1,8101:7246811,8455723:24720180,410518,31456 +h1,8101:7246811,8455723:0,0,0 +g1,8101:8195248,8455723 +g1,8101:8511394,8455723 +g1,8101:9143686,8455723 +g1,8101:9775978,8455723 +g1,8101:10092124,8455723 +g1,8101:10408270,8455723 +g1,8101:10724416,8455723 +g1,8101:11040562,8455723 +g1,8101:11356708,8455723 +g1,8101:11672854,8455723 +g1,8101:11989000,8455723 +g1,8101:12305146,8455723 +g1,8101:12621292,8455723 +g1,8101:14518166,8455723 +g1,8101:15466603,8455723 +h1,8101:16098894,8455723:0,0,0 +k1,8101:31966991,8455723:15868097 +g1,8101:31966991,8455723 +) +(1,8101:7246811,9121901:24720180,404226,82312 +h1,8101:7246811,9121901:0,0,0 +g1,8101:8195248,9121901 +g1,8101:8511394,9121901 +g1,8101:8827540,9121901 +g1,8101:10092123,9121901 +g1,8101:12621289,9121901 +g1,8101:15782746,9121901 +g1,8101:17047329,9121901 +h1,8101:20208786,9121901:0,0,0 +k1,8101:31966991,9121901:11758205 +g1,8101:31966991,9121901 +) +(1,8101:7246811,9788079:24720180,410518,31456 +h1,8101:7246811,9788079:0,0,0 +g1,8101:8195248,9788079 +g1,8101:8511394,9788079 +g1,8101:9143686,9788079 +g1,8101:11988997,9788079 +g1,8101:12305143,9788079 +g1,8101:12621289,9788079 +g1,8101:14518163,9788079 +g1,8101:15466600,9788079 +h1,8101:15782746,9788079:0,0,0 +k1,8101:31966991,9788079:16184245 +g1,8101:31966991,9788079 +) +(1,8101:7246811,10454257:24720180,410518,101187 +h1,8101:7246811,10454257:0,0,0 +g1,8101:8195248,10454257 +g1,8101:8511394,10454257 +g1,8101:9143686,10454257 +g1,8101:10724415,10454257 +g1,8101:11040561,10454257 +g1,8101:11356707,10454257 +g1,8101:11672853,10454257 +g1,8101:11988999,10454257 +g1,8101:12305145,10454257 +g1,8101:12621291,10454257 +g1,8101:13253583,10454257 +g1,8101:15466603,10454257 +h1,8101:18311914,10454257:0,0,0 +k1,8101:31966991,10454257:13655077 +g1,8101:31966991,10454257 +) +(1,8101:7246811,11120435:24720180,410518,107478 +h1,8101:7246811,11120435:0,0,0 +k1,8101:8089866,11120435:210764 +k1,8101:8300630,11120435:210764 +k1,8101:8827540,11120435:210764 +k1,8101:10302887,11120435:210764 +k1,8101:10513651,11120435:210764 +k1,8101:10724415,11120435:210764 +k1,8101:10935179,11120435:210764 +k1,8101:11145943,11120435:210764 +k1,8101:11356707,11120435:210764 +k1,8101:11567471,11120435:210764 +k1,8101:12094381,11120435:210764 +k1,8101:14834310,11120435:210764 +k1,8101:18522676,11120435:210764 +k1,8101:19049586,11120435:210764 +k1,8101:20524933,11120435:210764 +k1,8101:21051843,11120435:210764 +k1,8101:25688647,11120435:210764 +k1,8101:26847848,11120435:210764 +k1,8101:28007049,11120435:210764 +k1,8101:29482396,11120435:210764 +k1,8101:30009306,11120435:210764 +k1,8101:33381527,11120435:210764 +k1,8101:35489165,11120435:210764 +k1,8101:36016075,11120435:210764 +k1,8101:37807567,11120435:210764 +k1,8101:38650622,11120435:210764 +k1,8101:38861386,11120435:210764 +k1,8101:39072150,11120435:210764 +k1,8101:39282914,11120435:210764 +k1,8101:39493678,11120435:210764 +k1,8101:39704442,11120435:210764 +k1,8101:43076663,11120435:210764 +k1,8101:46132738,11120435:210764 +k1,8101:46659648,11120435:210764 +k1,8101:48767286,11120435:210764 +k1,8101:53087944,11120435:210764 +h1,8101:54036381,11120435:0,0,0 +k1,8101:54036381,11120435:0 +k1,8101:54036381,11120435:0 +) +(1,8101:7246811,11786613:24720180,410518,31456 +h1,8101:7246811,11786613:0,0,0 +g1,8101:8195248,11786613 +g1,8101:8511394,11786613 +g1,8101:9143686,11786613 +g1,8101:13253580,11786613 +g1,8101:15150454,11786613 +g1,8101:16415037,11786613 +h1,8101:19260348,11786613:0,0,0 +k1,8101:31966991,11786613:12706643 +g1,8101:31966991,11786613 +) +(1,8101:7246811,12452791:24720180,404226,82312 +h1,8101:7246811,12452791:0,0,0 +g1,8101:8195248,12452791 +g1,8101:8511394,12452791 +g1,8101:8827540,12452791 +g1,8101:10092123,12452791 +g1,8101:12621289,12452791 +g1,8101:15782746,12452791 +g1,8101:17047329,12452791 +h1,8101:18944203,12452791:0,0,0 +k1,8101:31966991,12452791:13022788 +g1,8101:31966991,12452791 +) +(1,8101:7246811,13118969:24720180,410518,31456 +h1,8101:7246811,13118969:0,0,0 +g1,8101:8195248,13118969 +g1,8101:8511394,13118969 +g1,8101:9143686,13118969 +g1,8101:11672852,13118969 +g1,8101:11988998,13118969 +g1,8101:12305144,13118969 +g1,8101:12621290,13118969 +g1,8101:14518164,13118969 +g1,8101:15466601,13118969 +h1,8101:15782747,13118969:0,0,0 +k1,8101:31966991,13118969:16184244 +g1,8101:31966991,13118969 +) +(1,8101:7246811,13785147:24720180,404226,82312 +h1,8101:7246811,13785147:0,0,0 +g1,8101:8195248,13785147 +g1,8101:8511394,13785147 +g1,8101:9143686,13785147 +g1,8101:11672852,13785147 +g1,8101:14834309,13785147 +g1,8101:16098892,13785147 +h1,8101:17679620,13785147:0,0,0 +k1,8101:31966991,13785147:14287371 +g1,8101:31966991,13785147 +) +] +) +g1,8102:31966991,13867459 +g1,8102:7246811,13867459 +g1,8102:7246811,13867459 +g1,8102:31966991,13867459 +g1,8102:31966991,13867459 +) +h1,8102:7246811,14064067:0,0,0 +v1,8106:7246811,15778821:0,393216,0 +(1,8126:7246811,25492237:24720180,10106632,196608 +g1,8126:7246811,25492237 +g1,8126:7246811,25492237 +g1,8126:7050203,25492237 +(1,8126:7050203,25492237:0,10106632,196608 +r1,8128:32163599,25492237:25113396,10303240,196608 +k1,8126:7050203,25492237:-25113396 +) +(1,8126:7050203,25492237:25113396,10106632,196608 +[1,8126:7246811,25492237:24720180,9910024,0 +(1,8108:7246811,15992731:24720180,410518,31456 +(1,8107:7246811,15992731:0,0,0 +g1,8107:7246811,15992731 +g1,8107:7246811,15992731 +g1,8107:6919131,15992731 +(1,8107:6919131,15992731:0,0,0 +) +g1,8107:7246811,15992731 +) +h1,8108:11356705,15992731:0,0,0 +k1,8108:31966991,15992731:20610286 +g1,8108:31966991,15992731 +) +(1,8125:7246811,16724445:24720180,410518,31456 +(1,8110:7246811,16724445:0,0,0 +g1,8110:7246811,16724445 +g1,8110:7246811,16724445 +g1,8110:6919131,16724445 +(1,8110:6919131,16724445:0,0,0 +) +g1,8110:7246811,16724445 +) +g1,8125:8195248,16724445 +h1,8125:10408268,16724445:0,0,0 +k1,8125:31966992,16724445:21558724 +g1,8125:31966992,16724445 +) +(1,8125:7246811,17390623:24720180,404226,76021 +h1,8125:7246811,17390623:0,0,0 +g1,8125:8195248,17390623 +g1,8125:9459831,17390623 +h1,8125:10724414,17390623:0,0,0 +k1,8125:31966990,17390623:21242576 +g1,8125:31966990,17390623 +) +(1,8125:7246811,18056801:24720180,379060,0 +h1,8125:7246811,18056801:0,0,0 +h1,8125:7879102,18056801:0,0,0 +k1,8125:31966990,18056801:24087888 +g1,8125:31966990,18056801 +) +(1,8125:7246811,18722979:24720180,410518,31456 +h1,8125:7246811,18722979:0,0,0 +g1,8125:8195248,18722979 +h1,8125:10724413,18722979:0,0,0 +k1,8125:31966991,18722979:21242578 +g1,8125:31966991,18722979 +) +(1,8125:7246811,19389157:24720180,404226,76021 +h1,8125:7246811,19389157:0,0,0 +g1,8125:8195248,19389157 +g1,8125:9459831,19389157 +h1,8125:9775977,19389157:0,0,0 +k1,8125:31966991,19389157:22191014 +g1,8125:31966991,19389157 +) +(1,8125:7246811,20055335:24720180,379060,0 +h1,8125:7246811,20055335:0,0,0 +h1,8125:7879102,20055335:0,0,0 +k1,8125:31966990,20055335:24087888 +g1,8125:31966990,20055335 +) +(1,8125:7246811,20721513:24720180,410518,31456 +h1,8125:7246811,20721513:0,0,0 +g1,8125:8195248,20721513 +h1,8125:10408268,20721513:0,0,0 +k1,8125:31966992,20721513:21558724 +g1,8125:31966992,20721513 +) +(1,8125:7246811,21387691:24720180,404226,76021 +h1,8125:7246811,21387691:0,0,0 +g1,8125:8195248,21387691 +g1,8125:9459831,21387691 +k1,8125:9459831,21387691:0 +h1,8125:13253579,21387691:0,0,0 +k1,8125:31966991,21387691:18713412 +g1,8125:31966991,21387691 +) +(1,8125:7246811,22053869:24720180,379060,0 +h1,8125:7246811,22053869:0,0,0 +h1,8125:7879102,22053869:0,0,0 +k1,8125:31966990,22053869:24087888 +g1,8125:31966990,22053869 +) +(1,8125:7246811,22720047:24720180,410518,101187 +h1,8125:7246811,22720047:0,0,0 +g1,8125:8195248,22720047 +h1,8125:11040559,22720047:0,0,0 +k1,8125:31966991,22720047:20926432 +g1,8125:31966991,22720047 +) +(1,8125:7246811,23386225:24720180,404226,76021 +h1,8125:7246811,23386225:0,0,0 +g1,8125:8195248,23386225 +g1,8125:9459831,23386225 +h1,8125:9775977,23386225:0,0,0 +k1,8125:31966991,23386225:22191014 +g1,8125:31966991,23386225 +) +(1,8125:7246811,24052403:24720180,379060,0 +h1,8125:7246811,24052403:0,0,0 +h1,8125:7879102,24052403:0,0,0 +k1,8125:31966990,24052403:24087888 +g1,8125:31966990,24052403 +) +(1,8125:7246811,24718581:24720180,410518,107478 +h1,8125:7246811,24718581:0,0,0 +g1,8125:8195248,24718581 +h1,8125:11988996,24718581:0,0,0 +k1,8125:31966992,24718581:19977996 +g1,8125:31966992,24718581 +) +(1,8125:7246811,25384759:24720180,404226,107478 +h1,8125:7246811,25384759:0,0,0 +g1,8125:8195248,25384759 +g1,8125:9459831,25384759 +h1,8125:12937433,25384759:0,0,0 +k1,8125:31966991,25384759:19029558 +g1,8125:31966991,25384759 +) +] +) +g1,8126:31966991,25492237 +g1,8126:7246811,25492237 +g1,8126:7246811,25492237 +g1,8126:31966991,25492237 +g1,8126:31966991,25492237 +) +h1,8126:7246811,25688845:0,0,0 +] +) +] +r1,8128:32583029,26802957:26214,20942076,0 +) +] +) +) +g1,8128:32583029,26213133 +) +h1,8128:6630773,26829171:0,0,0 +(1,8132:6630773,30161027:25952256,32768,229376 +(1,8132:6630773,30161027:0,32768,229376 +(1,8132:6630773,30161027:5505024,32768,229376 +r1,8132:12135797,30161027:5505024,262144,229376 +) +k1,8132:6630773,30161027:-5505024 +) +(1,8132:6630773,30161027:25952256,32768,0 +r1,8132:32583029,30161027:25952256,32768,0 +) +) +(1,8132:6630773,31765355:25952256,615776,14155 +(1,8132:6630773,31765355:1974731,582746,14155 +g1,8132:6630773,31765355 +g1,8132:8605504,31765355 +) +g1,8132:11257353,31765355 +k1,8132:32583028,31765355:17770216 +g1,8132:32583028,31765355 +) +(1,8135:6630773,33000059:25952256,513147,126483 +k1,8134:7477145,33000059:218537 +k1,8134:8714767,33000059:218537 +k1,8134:11925023,33000059:218537 +k1,8134:13998885,33000059:218538 +k1,8134:15085774,33000059:218537 +k1,8134:17016767,33000059:218537 +k1,8134:19359981,33000059:218537 +k1,8134:22070197,33000059:218537 +k1,8134:23882570,33000059:218537 +k1,8134:26787429,33000059:218538 +k1,8134:28492978,33000059:218537 +k1,8134:29815797,33000059:218537 +k1,8134:30782100,33000059:218537 +k1,8134:32583029,33000059:0 +) +(1,8135:6630773,33841547:25952256,513147,134348 +k1,8134:10375514,33841547:176306 +k1,8134:12287214,33841547:176307 +k1,8134:13482605,33841547:176306 +k1,8134:15312384,33841547:176306 +k1,8134:17746405,33841547:176306 +k1,8134:19358606,33841547:176307 +k1,8134:20194204,33841547:176306 +k1,8134:21310296,33841547:176306 +k1,8134:22643312,33841547:176306 +k1,8134:23923901,33841547:176307 +k1,8134:25829702,33841547:176306 +k1,8134:27098493,33841547:176306 +k1,8134:27934091,33841547:176306 +k1,8134:30857012,33841547:176307 +(1,8134:30857012,33841547:0,414482,115847 +r1,8134:31215278,33841547:358266,530329,115847 +k1,8134:30857012,33841547:-358266 +) +(1,8134:30857012,33841547:358266,414482,115847 +k1,8134:30857012,33841547:3277 +h1,8134:31212001,33841547:0,411205,112570 +) +k1,8134:31391584,33841547:176306 +k1,8134:32583029,33841547:0 +) +(1,8135:6630773,34683035:25952256,513147,134348 +k1,8134:9718373,34683035:190253 +k1,8134:11869462,34683035:190252 +k1,8134:12825831,34683035:190253 +k1,8134:16208998,34683035:190253 +k1,8134:17991120,34683035:190252 +k1,8134:20282457,34683035:190253 +k1,8134:21664154,34683035:190252 +k1,8134:25650252,34683035:190253 +k1,8134:27575898,34683035:190253 +k1,8134:30843065,34683035:190252 +(1,8134:30843065,34683035:0,414482,115847 +r1,8134:31201331,34683035:358266,530329,115847 +k1,8134:30843065,34683035:-358266 +) +(1,8134:30843065,34683035:358266,414482,115847 +k1,8134:30843065,34683035:3277 +h1,8134:31198054,34683035:0,411205,112570 +) +k1,8134:31391584,34683035:190253 +k1,8135:32583029,34683035:0 +) +(1,8135:6630773,35524523:25952256,513147,134348 +(1,8134:6630773,35524523:0,414482,115847 +r1,8134:6989039,35524523:358266,530329,115847 +k1,8134:6630773,35524523:-358266 +) +(1,8134:6630773,35524523:358266,414482,115847 +k1,8134:6630773,35524523:3277 +h1,8134:6985762,35524523:0,411205,112570 +) +k1,8134:7417831,35524523:255122 +k1,8134:8869639,35524523:255121 +k1,8134:11208806,35524523:255122 +k1,8134:15665440,35524523:255121 +k1,8134:16536600,35524523:255122 +k1,8134:18225650,35524523:255122 +k1,8134:18895558,35524523:255065 +k1,8134:21162635,35524523:255122 +k1,8134:24300685,35524523:255121 +k1,8134:25317335,35524523:255122 +k1,8134:27640772,35524523:255121 +k1,8134:28555186,35524523:255122 +k1,8134:32583029,35524523:0 +) +(1,8135:6630773,36366011:25952256,513147,134348 +k1,8134:7575860,36366011:220259 +k1,8134:8254216,36366011:220259 +k1,8134:9005972,36366011:220259 +k1,8134:10512047,36366011:220259 +k1,8134:13362266,36366011:220259 +k1,8134:14233953,36366011:220259 +k1,8134:16888219,36366011:220259 +k1,8134:18800618,36366011:220259 +k1,8134:22816722,36366011:220259 +k1,8134:23798509,36366011:220259 +k1,8134:27373556,36366011:220259 +k1,8134:28612900,36366011:220259 +k1,8134:29925644,36366011:220259 +k1,8134:30813059,36366011:220259 +(1,8134:30813059,36366011:0,414482,115847 +r1,8134:31171325,36366011:358266,530329,115847 +k1,8134:30813059,36366011:-358266 +) +(1,8134:30813059,36366011:358266,414482,115847 +k1,8134:30813059,36366011:3277 +h1,8134:31168048,36366011:0,411205,112570 +) +k1,8134:31391584,36366011:220259 +k1,8134:32583029,36366011:0 +) +(1,8135:6630773,37207499:25952256,505283,126483 +k1,8135:32583028,37207499:21924412 +g1,8135:32583028,37207499 +) +(1,8137:6630773,38048987:25952256,513147,126483 +h1,8136:6630773,38048987:983040,0,0 +k1,8136:9083487,38048987:272987 +k1,8136:11009947,38048987:272987 +k1,8136:13924691,38048987:272988 +k1,8136:14883840,38048987:272987 +k1,8136:16104478,38048987:272987 +k1,8136:19653610,38048987:272987 +k1,8136:23003512,38048987:272987 +k1,8136:24268059,38048987:272987 +k1,8136:26054273,38048987:272988 +k1,8136:27274911,38048987:272987 +k1,8136:29535605,38048987:272987 +k1,8136:32583029,38048987:0 +) +(1,8137:6630773,38890475:25952256,513147,134348 +k1,8136:8938653,38890475:212694 +k1,8136:9507207,38890475:212694 +k1,8136:12437024,38890475:212694 +k1,8136:15291474,38890475:212694 +k1,8136:16495728,38890475:212694 +k1,8136:20298485,38890475:212695 +k1,8136:23628071,38890475:212694 +k1,8136:24492193,38890475:212694 +k1,8136:27248339,38890475:212694 +k1,8136:29718748,38890475:212694 +k1,8136:31714677,38890475:212694 +k1,8136:32583029,38890475:0 +) +(1,8137:6630773,39731963:25952256,513147,134348 +k1,8136:8544928,39731963:176140 +k1,8136:9491772,39731963:176141 +k1,8136:12944057,39731963:176140 +k1,8136:16194492,39731963:176141 +k1,8136:17655138,39731963:176140 +k1,8136:19600096,39731963:176141 +k1,8136:20524002,39731963:176140 +k1,8136:24290205,39731963:176141 +k1,8136:25152507,39731963:176140 +k1,8136:27066663,39731963:176141 +k1,8136:28564664,39731963:176140 +k1,8136:29400097,39731963:176141 +k1,8136:30595322,39731963:176140 +k1,8136:32583029,39731963:0 +) +(1,8137:6630773,40573451:25952256,513147,126483 +k1,8136:9330856,40573451:156631 +k1,8136:10355838,40573451:156630 +k1,8136:12042735,40573451:156631 +k1,8136:12850794,40573451:156631 +k1,8136:15906081,40573451:156630 +k1,8136:16520809,40573451:156631 +k1,8136:17438968,40573451:156631 +k1,8136:19663914,40573451:156630 +k1,8136:20479837,40573451:156631 +k1,8136:21655553,40573451:156631 +k1,8136:24272405,40573451:156630 +k1,8136:27124532,40573451:156631 +(1,8136:27124532,40573451:0,452978,115847 +r1,8136:28186221,40573451:1061689,568825,115847 +k1,8136:27124532,40573451:-1061689 +) +(1,8136:27124532,40573451:1061689,452978,115847 +k1,8136:27124532,40573451:3277 +h1,8136:28182944,40573451:0,411205,112570 +) +k1,8136:28516522,40573451:156631 +k1,8136:29869839,40573451:156630 +k1,8136:31410590,40573451:156631 +k1,8136:32583029,40573451:0 +) +(1,8137:6630773,41414939:25952256,513147,126483 +k1,8136:9790085,41414939:167593 +k1,8136:11918515,41414939:167593 +k1,8136:14959863,41414939:167594 +k1,8136:16075107,41414939:167593 +k1,8136:18560708,41414939:167593 +k1,8136:20122252,41414939:167593 +k1,8136:21665446,41414939:167593 +k1,8136:22989749,41414939:167593 +k1,8136:26923042,41414939:167594 +k1,8136:29775645,41414939:167593 +k1,8136:31422386,41414939:167593 +k1,8137:32583029,41414939:0 +) +(1,8137:6630773,42256427:25952256,513147,134348 +k1,8136:8739015,42256427:182139 +k1,8136:10067380,42256427:182140 +k1,8136:12119917,42256427:182139 +k1,8136:13321142,42256427:182140 +k1,8136:17268980,42256427:182139 +k1,8136:19962459,42256427:182139 +k1,8136:21277061,42256427:182140 +k1,8136:22206966,42256427:182139 +k1,8136:25597748,42256427:182139 +k1,8136:26589258,42256427:182140 +k1,8136:27790482,42256427:182139 +k1,8136:28768229,42256427:182140 +k1,8136:30648406,42256427:182139 +k1,8136:32583029,42256427:0 +) +(1,8137:6630773,43097915:25952256,513147,126483 +k1,8136:7823965,43097915:174107 +k1,8136:9985779,43097915:174107 +k1,8136:10811314,43097915:174107 +k1,8136:12548455,43097915:174107 +k1,8136:13350397,43097915:174107 +k1,8136:14543589,43097915:174107 +k1,8136:16023829,43097915:174107 +k1,8136:17565018,43097915:174108 +k1,8136:19607556,43097915:174107 +k1,8136:20650015,43097915:174107 +k1,8136:22354388,43097915:174107 +k1,8136:23179923,43097915:174107 +k1,8136:26251377,43097915:174107 +k1,8136:28723832,43097915:174107 +k1,8136:29917024,43097915:174107 +k1,8136:32583029,43097915:0 +) +(1,8137:6630773,43939403:25952256,513147,126483 +k1,8136:7440294,43939403:150229 +k1,8136:8609607,43939403:150228 +k1,8136:9932275,43939403:150229 +k1,8136:12924144,43939403:150228 +k1,8136:14341839,43939403:150229 +k1,8136:16000707,43939403:150229 +k1,8136:17689720,43939403:150228 +k1,8136:20369639,43939403:150229 +k1,8136:23621687,43939403:150229 +k1,8136:25152103,43939403:150228 +k1,8136:27258582,43939403:150229 +k1,8136:28156576,43939403:150228 +k1,8136:31896867,43939403:150229 +k1,8136:32583029,43939403:0 +) +(1,8137:6630773,44780891:25952256,505283,126483 +k1,8136:7995596,44780891:192384 +k1,8136:10890684,44780891:192383 +k1,8136:14848767,44780891:192384 +k1,8136:17882792,44780891:192384 +k1,8136:18691214,44780891:192384 +k1,8136:19902682,44780891:192383 +k1,8136:22256443,44780891:192384 +k1,8136:23076662,44780891:192384 +k1,8136:24288131,44780891:192384 +k1,8136:26721845,44780891:192383 +k1,8136:28454980,44780891:192384 +(1,8136:28454980,44780891:0,452978,122846 +r1,8136:30220093,44780891:1765113,575824,122846 +k1,8136:28454980,44780891:-1765113 +) +(1,8136:28454980,44780891:1765113,452978,122846 +k1,8136:28454980,44780891:3277 +h1,8136:30216816,44780891:0,411205,112570 +) +k1,8136:30412477,44780891:192384 +k1,8136:32583029,44780891:0 +) +] +(1,8139:32583029,45706769:0,0,0 +g1,8139:32583029,45706769 +) +) +] +(1,8139:6630773,47279633:25952256,0,0 +h1,8139:6630773,47279633:25952256,0,0 +) +] +h1,8139:4262630,4025873:0,0,0 ] !22822 }152 -Input:1127:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1128:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1123:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1124:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {153 -[1,8239:4262630,47279633:28320399,43253760,0 -(1,8239:4262630,4025873:0,0,0 -[1,8239:-473657,4025873:25952256,0,0 -(1,8239:-473657,-710414:25952256,0,0 -h1,8239:-473657,-710414:0,0,0 -(1,8239:-473657,-710414:0,0,0 -(1,8239:-473657,-710414:0,0,0 -g1,8239:-473657,-710414 -(1,8239:-473657,-710414:65781,0,65781 -g1,8239:-407876,-710414 -[1,8239:-407876,-644633:0,0,0 +[1,8244:4262630,47279633:28320399,43253760,0 +(1,8244:4262630,4025873:0,0,0 +[1,8244:-473657,4025873:25952256,0,0 +(1,8244:-473657,-710414:25952256,0,0 +h1,8244:-473657,-710414:0,0,0 +(1,8244:-473657,-710414:0,0,0 +(1,8244:-473657,-710414:0,0,0 +g1,8244:-473657,-710414 +(1,8244:-473657,-710414:65781,0,65781 +g1,8244:-407876,-710414 +[1,8244:-407876,-644633:0,0,0 ] ) -k1,8239:-473657,-710414:-65781 +k1,8244:-473657,-710414:-65781 ) ) -k1,8239:25478599,-710414:25952256 -g1,8239:25478599,-710414 +k1,8244:25478599,-710414:25952256 +g1,8244:25478599,-710414 ) ] ) -[1,8239:6630773,47279633:25952256,43253760,0 -[1,8239:6630773,4812305:25952256,786432,0 -(1,8239:6630773,4812305:25952256,505283,134348 -(1,8239:6630773,4812305:25952256,505283,134348 -g1,8239:3078558,4812305 -[1,8239:3078558,4812305:0,0,0 -(1,8239:3078558,2439708:0,1703936,0 -k1,8239:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8239:2537886,2439708:1179648,16384,0 +[1,8244:6630773,47279633:25952256,43253760,0 +[1,8244:6630773,4812305:25952256,786432,0 +(1,8244:6630773,4812305:25952256,505283,134348 +(1,8244:6630773,4812305:25952256,505283,134348 +g1,8244:3078558,4812305 +[1,8244:3078558,4812305:0,0,0 +(1,8244:3078558,2439708:0,1703936,0 +k1,8244:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8244:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8239:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8244:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8239:3078558,4812305:0,0,0 -(1,8239:3078558,2439708:0,1703936,0 -g1,8239:29030814,2439708 -g1,8239:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8239:36151628,1915420:16384,1179648,0 +[1,8244:3078558,4812305:0,0,0 +(1,8244:3078558,2439708:0,1703936,0 +g1,8244:29030814,2439708 +g1,8244:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8244:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8239:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8244:37855564,2439708:1179648,16384,0 ) ) -k1,8239:3078556,2439708:-34777008 +k1,8244:3078556,2439708:-34777008 ) ] -[1,8239:3078558,4812305:0,0,0 -(1,8239:3078558,49800853:0,16384,2228224 -k1,8239:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8239:2537886,49800853:1179648,16384,0 +[1,8244:3078558,4812305:0,0,0 +(1,8244:3078558,49800853:0,16384,2228224 +k1,8244:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8244:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8239:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8244:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8239:3078558,4812305:0,0,0 -(1,8239:3078558,49800853:0,16384,2228224 -g1,8239:29030814,49800853 -g1,8239:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8239:36151628,51504789:16384,1179648,0 +[1,8244:3078558,4812305:0,0,0 +(1,8244:3078558,49800853:0,16384,2228224 +g1,8244:29030814,49800853 +g1,8244:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8244:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8239:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8244:37855564,49800853:1179648,16384,0 ) ) -k1,8239:3078556,49800853:-34777008 -) -] -g1,8239:6630773,4812305 -k1,8239:24573876,4812305:16747726 -g1,8239:25960617,4812305 -g1,8239:26609423,4812305 -g1,8239:29923578,4812305 -) -) -] -[1,8239:6630773,45706769:25952256,40108032,0 -(1,8239:6630773,45706769:25952256,40108032,0 -(1,8239:6630773,45706769:0,0,0 -g1,8239:6630773,45706769 -) -[1,8239:6630773,45706769:25952256,40108032,0 -(1,8132:6630773,6254097:25952256,513147,126483 -k1,8131:7624845,6254097:246306 -k1,8131:11461213,6254097:246306 -k1,8131:12393681,6254097:246306 -k1,8131:13961848,6254097:246306 -k1,8131:14867446,6254097:246306 -k1,8131:16132837,6254097:246306 -k1,8131:18366850,6254097:246306 -k1,8131:21330279,6254097:246306 -k1,8131:22768030,6254097:246306 -k1,8131:27239442,6254097:246306 -k1,8131:28978658,6254097:246306 -k1,8131:30291235,6254097:246306 -k1,8131:32583029,6254097:0 -) -(1,8132:6630773,7095585:25952256,505283,134348 -g1,8131:10056995,7095585 -g1,8131:13738807,7095585 -g1,8131:16208859,7095585 -g1,8131:17900998,7095585 -g1,8131:19119312,7095585 -g1,8131:22758526,7095585 -g1,8131:25163042,7095585 -g1,8131:26048433,7095585 -g1,8131:27036060,7095585 -k1,8132:32583029,7095585:2300971 -g1,8132:32583029,7095585 -) -v1,8134:6630773,8248020:0,393216,0 -(1,8139:6630773,9229294:25952256,1374490,196608 -g1,8139:6630773,9229294 -g1,8139:6630773,9229294 -g1,8139:6434165,9229294 -(1,8139:6434165,9229294:0,1374490,196608 -r1,8139:32779637,9229294:26345472,1571098,196608 -k1,8139:6434165,9229294:-26345472 -) -(1,8139:6434165,9229294:26345472,1374490,196608 -[1,8139:6630773,9229294:25952256,1177882,0 -(1,8136:6630773,8455638:25952256,404226,101187 -(1,8135:6630773,8455638:0,0,0 -g1,8135:6630773,8455638 -g1,8135:6630773,8455638 -g1,8135:6303093,8455638 -(1,8135:6303093,8455638:0,0,0 -) -g1,8135:6630773,8455638 -) -g1,8136:7263065,8455638 -g1,8136:7895357,8455638 -g1,8136:9476086,8455638 -g1,8136:10108378,8455638 -h1,8136:11056815,8455638:0,0,0 -k1,8136:32583029,8455638:21526214 -g1,8136:32583029,8455638 -) -(1,8137:6630773,9121816:25952256,404226,107478 -h1,8137:6630773,9121816:0,0,0 -g1,8137:7263065,9121816 -g1,8137:7895357,9121816 -g1,8137:10108377,9121816 -g1,8137:10740669,9121816 -h1,8137:11689106,9121816:0,0,0 -k1,8137:32583030,9121816:20893924 -g1,8137:32583030,9121816 -) -] -) -g1,8139:32583029,9229294 -g1,8139:6630773,9229294 -g1,8139:6630773,9229294 -g1,8139:32583029,9229294 -g1,8139:32583029,9229294 -) -h1,8139:6630773,9425902:0,0,0 -(1,8143:6630773,10753647:25952256,513147,134348 -h1,8142:6630773,10753647:983040,0,0 -k1,8142:8200926,10753647:172270 -k1,8142:10916674,10753647:172296 -k1,8142:13173016,10753647:172297 -k1,8142:15357268,10753647:172297 -k1,8142:18916465,10753647:172296 -k1,8142:20657039,10753647:172297 -k1,8142:21776986,10753647:172296 -k1,8142:25198558,10753647:172297 -k1,8142:28836398,10753647:172296 -k1,8142:31025238,10753647:172297 -k1,8142:32583029,10753647:0 -) -(1,8143:6630773,11595135:25952256,513147,134348 -k1,8142:8571221,11595135:258794 -k1,8142:13161945,11595135:258794 -k1,8142:14989016,11595135:258794 -k1,8142:15907102,11595135:258794 -k1,8142:18810930,11595135:258795 -k1,8142:22117148,11595135:258794 -k1,8142:24261413,11595135:258794 -k1,8142:25467858,11595135:258794 -k1,8142:28412973,11595135:258794 -k1,8142:32583029,11595135:0 -) -(1,8143:6630773,12436623:25952256,505283,134348 -k1,8142:9267001,12436623:217294 -k1,8142:11205269,12436623:217293 -k1,8142:13451558,12436623:217294 -k1,8142:14860296,12436623:217293 -k1,8142:16181872,12436623:217294 -k1,8142:19028470,12436623:217294 -k1,8142:21421558,12436623:217293 -k1,8142:22456741,12436623:217294 -k1,8142:24113861,12436623:217294 -k1,8142:26360149,12436623:217293 -k1,8142:29324057,12436623:217294 -(1,8142:29324057,12436623:0,414482,115847 -r1,8142:29682323,12436623:358266,530329,115847 -k1,8142:29324057,12436623:-358266 -) -(1,8142:29324057,12436623:358266,414482,115847 -k1,8142:29324057,12436623:3277 -h1,8142:29679046,12436623:0,411205,112570 -) -k1,8142:29899616,12436623:217293 -k1,8142:31837885,12436623:217294 -k1,8142:32583029,12436623:0 -) -(1,8143:6630773,13278111:25952256,513147,134348 -k1,8142:8368636,13278111:170242 -k1,8142:10657003,13278111:170243 -k1,8142:11478673,13278111:170242 -k1,8142:14546262,13278111:170242 -k1,8142:17248161,13278111:170243 -k1,8142:18184519,13278111:170242 -k1,8142:19373846,13278111:170242 -k1,8142:23009632,13278111:170242 -k1,8142:25022747,13278111:170243 -k1,8142:25809027,13278111:170242 -k1,8142:26335129,13278111:170242 -k1,8142:27595236,13278111:170243 -k1,8142:30421652,13278111:170242 -k1,8143:32583029,13278111:0 -k1,8143:32583029,13278111:0 -) -v1,8145:6630773,14430546:0,393216,0 -(1,8149:6630773,14723622:25952256,686292,196608 -g1,8149:6630773,14723622 -g1,8149:6630773,14723622 -g1,8149:6434165,14723622 -(1,8149:6434165,14723622:0,686292,196608 -r1,8149:32779637,14723622:26345472,882900,196608 -k1,8149:6434165,14723622:-26345472 -) -(1,8149:6434165,14723622:26345472,686292,196608 -[1,8149:6630773,14723622:25952256,489684,0 -(1,8147:6630773,14622435:25952256,388497,101187 -(1,8146:6630773,14622435:0,0,0 -g1,8146:6630773,14622435 -g1,8146:6630773,14622435 -g1,8146:6303093,14622435 -(1,8146:6303093,14622435:0,0,0 -) -g1,8146:6630773,14622435 -) -g1,8147:7263065,14622435 -g1,8147:7895357,14622435 -g1,8147:8843794,14622435 -g1,8147:9476086,14622435 -g1,8147:10424523,14622435 -g1,8147:11056815,14622435 -g1,8147:12005252,14622435 -g1,8147:12637544,14622435 -g1,8147:14534418,14622435 -g1,8147:15166710,14622435 -g1,8147:17063584,14622435 -g1,8147:17695876,14622435 -g1,8147:19592750,14622435 -g1,8147:20225042,14622435 -h1,8147:22754207,14622435:0,0,0 -k1,8147:32583029,14622435:9828822 -g1,8147:32583029,14622435 -) -] -) -g1,8149:32583029,14723622 -g1,8149:6630773,14723622 -g1,8149:6630773,14723622 -g1,8149:32583029,14723622 -g1,8149:32583029,14723622 -) -h1,8149:6630773,14920230:0,0,0 -(1,8153:6630773,16247975:25952256,505283,126483 -h1,8152:6630773,16247975:983040,0,0 -g1,8152:9039221,16247975 -g1,8152:9986216,16247975 -g1,8152:12904534,16247975 -g1,8152:13865291,16247975 -g1,8152:14420380,16247975 -g1,8152:16974973,16247975 -k1,8153:32583029,16247975:12129405 -g1,8153:32583029,16247975 -) -v1,8155:6630773,17400410:0,393216,0 -(1,8159:6630773,17693486:25952256,686292,196608 -g1,8159:6630773,17693486 -g1,8159:6630773,17693486 -g1,8159:6434165,17693486 -(1,8159:6434165,17693486:0,686292,196608 -r1,8159:32779637,17693486:26345472,882900,196608 -k1,8159:6434165,17693486:-26345472 -) -(1,8159:6434165,17693486:26345472,686292,196608 -[1,8159:6630773,17693486:25952256,489684,0 -(1,8157:6630773,17592299:25952256,388497,101187 -(1,8156:6630773,17592299:0,0,0 -g1,8156:6630773,17592299 -g1,8156:6630773,17592299 -g1,8156:6303093,17592299 -(1,8156:6303093,17592299:0,0,0 -) -g1,8156:6630773,17592299 -) -g1,8157:7263065,17592299 -g1,8157:7895357,17592299 -g1,8157:8843794,17592299 -g1,8157:9476086,17592299 -g1,8157:10424523,17592299 -g1,8157:11056815,17592299 -h1,8157:11689106,17592299:0,0,0 -k1,8157:32583030,17592299:20893924 -g1,8157:32583030,17592299 -) -] -) -g1,8159:32583029,17693486 -g1,8159:6630773,17693486 -g1,8159:6630773,17693486 -g1,8159:32583029,17693486 -g1,8159:32583029,17693486 -) -h1,8159:6630773,17890094:0,0,0 -(1,8163:6630773,19217839:25952256,513147,126483 -h1,8162:6630773,19217839:983040,0,0 -k1,8162:9578146,19217839:181098 -k1,8162:10778328,19217839:181097 -k1,8162:12947133,19217839:181098 -k1,8162:13779658,19217839:181097 -k1,8162:14708522,19217839:181098 -k1,8162:17721430,19217839:181097 -k1,8162:19395438,19217839:181098 -k1,8162:20642807,19217839:181098 -k1,8162:23161573,19217839:181097 -k1,8162:24108787,19217839:181098 -k1,8162:26919844,19217839:181097 -k1,8162:30566486,19217839:181098 -k1,8162:32583029,19217839:0 -) -(1,8163:6630773,20059327:25952256,505283,126483 -g1,8162:7698354,20059327 -g1,8162:9001865,20059327 -g1,8162:11912974,20059327 -g1,8162:13131288,20059327 -g1,8162:15685881,20059327 -g1,8162:18574708,20059327 -g1,8162:20167888,20059327 -k1,8163:32583029,20059327:8387298 -g1,8163:32583029,20059327 -) -v1,8165:6630773,21211762:0,393216,0 -(1,8170:6630773,22186745:25952256,1368199,196608 -g1,8170:6630773,22186745 -g1,8170:6630773,22186745 -g1,8170:6434165,22186745 -(1,8170:6434165,22186745:0,1368199,196608 -r1,8170:32779637,22186745:26345472,1564807,196608 -k1,8170:6434165,22186745:-26345472 -) -(1,8170:6434165,22186745:26345472,1368199,196608 -[1,8170:6630773,22186745:25952256,1171591,0 -(1,8167:6630773,21419380:25952256,404226,101187 -(1,8166:6630773,21419380:0,0,0 -g1,8166:6630773,21419380 -g1,8166:6630773,21419380 -g1,8166:6303093,21419380 -(1,8166:6303093,21419380:0,0,0 -) -g1,8166:6630773,21419380 -) -g1,8167:7263065,21419380 -g1,8167:7895357,21419380 -g1,8167:8843794,21419380 -g1,8167:9476086,21419380 -g1,8167:10740669,21419380 -g1,8167:11372961,21419380 -h1,8167:12321398,21419380:0,0,0 -k1,8167:32583030,21419380:20261632 -g1,8167:32583030,21419380 -) -(1,8168:6630773,22085558:25952256,388497,101187 -h1,8168:6630773,22085558:0,0,0 -g1,8168:7263065,22085558 -g1,8168:7895357,22085558 -g1,8168:8843794,22085558 -g1,8168:9476086,22085558 -g1,8168:10424523,22085558 -g1,8168:11056815,22085558 -g1,8168:12005252,22085558 -g1,8168:12637544,22085558 -h1,8168:14218272,22085558:0,0,0 -k1,8168:32583028,22085558:18364756 -g1,8168:32583028,22085558 -) -] -) -g1,8170:32583029,22186745 -g1,8170:6630773,22186745 -g1,8170:6630773,22186745 -g1,8170:32583029,22186745 -g1,8170:32583029,22186745 -) -h1,8170:6630773,22383353:0,0,0 -(1,8174:6630773,23711098:25952256,513147,134348 -h1,8173:6630773,23711098:983040,0,0 -g1,8173:9275150,23711098 -g1,8173:10493464,23711098 -g1,8173:11865132,23711098 -g1,8173:14052068,23711098 -g1,8173:17125051,23711098 -g1,8173:19179604,23711098 -g1,8173:20370393,23711098 -g1,8173:24048273,23711098 -g1,8173:25351784,23711098 -g1,8173:26298779,23711098 -g1,8173:27937834,23711098 -g1,8173:29872456,23711098 -(1,8173:29872456,23711098:0,452978,115847 -r1,8173:32340993,23711098:2468537,568825,115847 -k1,8173:29872456,23711098:-2468537 -) -(1,8173:29872456,23711098:2468537,452978,115847 -k1,8173:29872456,23711098:3277 -h1,8173:32337716,23711098:0,411205,112570 -) -k1,8174:32583029,23711098:242036 -g1,8174:32583029,23711098 -) -v1,8176:6630773,24863533:0,393216,0 -(1,8201:6630773,37844400:25952256,13374083,196608 -g1,8201:6630773,37844400 -g1,8201:6630773,37844400 -g1,8201:6434165,37844400 -(1,8201:6434165,37844400:0,13374083,196608 -r1,8201:32779637,37844400:26345472,13570691,196608 -k1,8201:6434165,37844400:-26345472 -) -(1,8201:6434165,37844400:26345472,13374083,196608 -[1,8201:6630773,37844400:25952256,13177475,0 -(1,8178:6630773,25071151:25952256,404226,101187 -(1,8177:6630773,25071151:0,0,0 -g1,8177:6630773,25071151 -g1,8177:6630773,25071151 -g1,8177:6303093,25071151 -(1,8177:6303093,25071151:0,0,0 -) -g1,8177:6630773,25071151 -) -k1,8178:6630773,25071151:0 -g1,8178:9159938,25071151 -g1,8178:9792230,25071151 -g1,8178:10740667,25071151 -g1,8178:11372959,25071151 -g1,8178:12637542,25071151 -g1,8178:13269834,25071151 -h1,8178:14534417,25071151:0,0,0 -k1,8178:32583029,25071151:18048612 -g1,8178:32583029,25071151 -) -(1,8200:6630773,25802865:25952256,404226,101187 -(1,8180:6630773,25802865:0,0,0 -g1,8180:6630773,25802865 -g1,8180:6630773,25802865 -g1,8180:6303093,25802865 -(1,8180:6303093,25802865:0,0,0 -) -g1,8180:6630773,25802865 -) -g1,8200:7579210,25802865 -g1,8200:8211502,25802865 -g1,8200:8843794,25802865 -g1,8200:9792231,25802865 -g1,8200:10424523,25802865 -g1,8200:11689106,25802865 -g1,8200:12321398,25802865 -h1,8200:13269835,25802865:0,0,0 -k1,8200:32583029,25802865:19313194 -g1,8200:32583029,25802865 -) -(1,8200:6630773,26469043:25952256,404226,82312 -h1,8200:6630773,26469043:0,0,0 -g1,8200:7579210,26469043 -k1,8200:7579210,26469043:0 -h1,8200:13269832,26469043:0,0,0 -k1,8200:32583028,26469043:19313196 -g1,8200:32583028,26469043 -) -(1,8200:6630773,27135221:25952256,404226,101187 -h1,8200:6630773,27135221:0,0,0 -g1,8200:7579210,27135221 -g1,8200:10108376,27135221 -g1,8200:11372959,27135221 -g1,8200:12637542,27135221 -h1,8200:13585979,27135221:0,0,0 -k1,8200:32583029,27135221:18997050 -g1,8200:32583029,27135221 -) -(1,8200:6630773,27801399:25952256,410518,82312 -h1,8200:6630773,27801399:0,0,0 -g1,8200:7579210,27801399 -k1,8200:7579210,27801399:0 -h1,8200:12637540,27801399:0,0,0 -k1,8200:32583028,27801399:19945488 -g1,8200:32583028,27801399 -) -(1,8200:6630773,28467577:25952256,388497,9436 -h1,8200:6630773,28467577:0,0,0 -g1,8200:7579210,28467577 -g1,8200:7895356,28467577 -g1,8200:8211502,28467577 -g1,8200:8527648,28467577 -g1,8200:9476085,28467577 -g1,8200:10424522,28467577 -g1,8200:11372959,28467577 -h1,8200:12953687,28467577:0,0,0 -k1,8200:32583029,28467577:19629342 -g1,8200:32583029,28467577 -) -(1,8200:6630773,29133755:25952256,388497,101187 -h1,8200:6630773,29133755:0,0,0 -g1,8200:7579210,29133755 -g1,8200:8211502,29133755 -g1,8200:8527648,29133755 -g1,8200:8843794,29133755 -g1,8200:9476086,29133755 -g1,8200:9792232,29133755 -g1,8200:10424524,29133755 -g1,8200:10740670,29133755 -g1,8200:11372962,29133755 -g1,8200:11689108,29133755 -g1,8200:12005254,29133755 -g1,8200:12321400,29133755 -g1,8200:12637546,29133755 -h1,8200:12953692,29133755:0,0,0 -k1,8200:32583028,29133755:19629336 -g1,8200:32583028,29133755 -) -(1,8200:6630773,29799933:25952256,388497,9436 -h1,8200:6630773,29799933:0,0,0 -g1,8200:7579210,29799933 -g1,8200:8527647,29799933 -g1,8200:8843793,29799933 -g1,8200:9476085,29799933 -g1,8200:9792231,29799933 -g1,8200:10424523,29799933 -g1,8200:10740669,29799933 -g1,8200:11372961,29799933 -g1,8200:11689107,29799933 -g1,8200:12005253,29799933 -g1,8200:12321399,29799933 -g1,8200:12637545,29799933 -h1,8200:12953691,29799933:0,0,0 -k1,8200:32583029,29799933:19629338 -g1,8200:32583029,29799933 -) -(1,8200:6630773,30466111:25952256,388497,9436 -h1,8200:6630773,30466111:0,0,0 -g1,8200:7579210,30466111 -g1,8200:8527647,30466111 -g1,8200:8843793,30466111 -g1,8200:9476085,30466111 -g1,8200:9792231,30466111 -g1,8200:10424523,30466111 -g1,8200:10740669,30466111 -g1,8200:11372961,30466111 -g1,8200:11689107,30466111 -g1,8200:12005253,30466111 -g1,8200:12321399,30466111 -g1,8200:12637545,30466111 -h1,8200:12953691,30466111:0,0,0 -k1,8200:32583029,30466111:19629338 -g1,8200:32583029,30466111 -) -(1,8200:6630773,31132289:25952256,388497,9436 -h1,8200:6630773,31132289:0,0,0 -g1,8200:7579210,31132289 -g1,8200:8527647,31132289 -g1,8200:8843793,31132289 -g1,8200:9476085,31132289 -g1,8200:9792231,31132289 -g1,8200:10424523,31132289 -g1,8200:10740669,31132289 -g1,8200:11372961,31132289 -g1,8200:11689107,31132289 -g1,8200:12005253,31132289 -g1,8200:12321399,31132289 -g1,8200:12637545,31132289 -h1,8200:12953691,31132289:0,0,0 -k1,8200:32583029,31132289:19629338 -g1,8200:32583029,31132289 -) -(1,8200:6630773,31798467:25952256,404226,82312 -h1,8200:6630773,31798467:0,0,0 -g1,8200:7579210,31798467 -k1,8200:7579210,31798467:0 -h1,8200:13902123,31798467:0,0,0 -k1,8200:32583029,31798467:18680906 -g1,8200:32583029,31798467 -) -(1,8200:6630773,32464645:25952256,404226,76021 -h1,8200:6630773,32464645:0,0,0 -g1,8200:7579210,32464645 -g1,8200:8843793,32464645 -g1,8200:10424522,32464645 -g1,8200:10740668,32464645 -g1,8200:11056814,32464645 -g1,8200:11372960,32464645 -g1,8200:12953689,32464645 -g1,8200:13269835,32464645 -g1,8200:13585981,32464645 -g1,8200:13902127,32464645 -g1,8200:15482856,32464645 -g1,8200:15799002,32464645 -g1,8200:16115148,32464645 -g1,8200:16431294,32464645 -h1,8200:18644314,32464645:0,0,0 -k1,8200:32583029,32464645:13938715 -g1,8200:32583029,32464645 -) -(1,8200:6630773,33130823:25952256,404226,82312 -h1,8200:6630773,33130823:0,0,0 -g1,8200:7579210,33130823 -k1,8200:7579210,33130823:0 -h1,8200:12005249,33130823:0,0,0 -k1,8200:32583029,33130823:20577780 -g1,8200:32583029,33130823 -) -(1,8200:6630773,33797001:25952256,404226,76021 -h1,8200:6630773,33797001:0,0,0 -g1,8200:7579210,33797001 -g1,8200:8843793,33797001 -g1,8200:9476085,33797001 -g1,8200:10108377,33797001 -g1,8200:10740669,33797001 -h1,8200:11056815,33797001:0,0,0 -k1,8200:32583029,33797001:21526214 -g1,8200:32583029,33797001 -) -(1,8200:6630773,34463179:25952256,404226,101187 -h1,8200:6630773,34463179:0,0,0 -g1,8200:7579210,34463179 -k1,8200:7579210,34463179:0 -h1,8200:13269832,34463179:0,0,0 -k1,8200:32583028,34463179:19313196 -g1,8200:32583028,34463179 -) -(1,8200:6630773,35129357:25952256,404226,76021 -h1,8200:6630773,35129357:0,0,0 -g1,8200:7579210,35129357 -g1,8200:8843793,35129357 -h1,8200:9159939,35129357:0,0,0 -k1,8200:32583029,35129357:23423090 -g1,8200:32583029,35129357 -) -(1,8200:6630773,35795535:25952256,404226,101187 -h1,8200:6630773,35795535:0,0,0 -g1,8200:7579210,35795535 -k1,8200:7579210,35795535:0 -h1,8200:12953686,35795535:0,0,0 -k1,8200:32583030,35795535:19629344 -g1,8200:32583030,35795535 -) -(1,8200:6630773,36461713:25952256,404226,76021 -h1,8200:6630773,36461713:0,0,0 -g1,8200:7579210,36461713 -g1,8200:8843793,36461713 -h1,8200:9159939,36461713:0,0,0 -k1,8200:32583029,36461713:23423090 -g1,8200:32583029,36461713 -) -(1,8200:6630773,37127891:25952256,404226,82312 -h1,8200:6630773,37127891:0,0,0 -g1,8200:7579210,37127891 -k1,8200:7579210,37127891:0 -h1,8200:14218269,37127891:0,0,0 -k1,8200:32583029,37127891:18364760 -g1,8200:32583029,37127891 -) -(1,8200:6630773,37794069:25952256,404226,50331 -h1,8200:6630773,37794069:0,0,0 -g1,8200:7579210,37794069 -g1,8200:12005250,37794069 -k1,8200:12005250,37794069:0 -h1,8200:15798998,37794069:0,0,0 -k1,8200:32583030,37794069:16784032 -g1,8200:32583030,37794069 -) -] -) -g1,8201:32583029,37844400 -g1,8201:6630773,37844400 -g1,8201:6630773,37844400 -g1,8201:32583029,37844400 -g1,8201:32583029,37844400 -) -h1,8201:6630773,38041008:0,0,0 -v1,8205:6630773,39679700:0,393216,0 -(1,8210:6630773,40654683:25952256,1368199,196608 -g1,8210:6630773,40654683 -g1,8210:6630773,40654683 -g1,8210:6434165,40654683 -(1,8210:6434165,40654683:0,1368199,196608 -r1,8210:32779637,40654683:26345472,1564807,196608 -k1,8210:6434165,40654683:-26345472 -) -(1,8210:6434165,40654683:26345472,1368199,196608 -[1,8210:6630773,40654683:25952256,1171591,0 -(1,8207:6630773,39887318:25952256,404226,101187 -(1,8206:6630773,39887318:0,0,0 -g1,8206:6630773,39887318 -g1,8206:6630773,39887318 -g1,8206:6303093,39887318 -(1,8206:6303093,39887318:0,0,0 -) -g1,8206:6630773,39887318 -) -g1,8207:7263065,39887318 -g1,8207:7895357,39887318 -g1,8207:8843794,39887318 -g1,8207:9476086,39887318 -g1,8207:10740669,39887318 -g1,8207:11372961,39887318 -h1,8207:12321398,39887318:0,0,0 -k1,8207:32583030,39887318:20261632 -g1,8207:32583030,39887318 -) -(1,8208:6630773,40553496:25952256,388497,101187 -h1,8208:6630773,40553496:0,0,0 -g1,8208:7263065,40553496 -g1,8208:7895357,40553496 -g1,8208:8843794,40553496 -g1,8208:9476086,40553496 -g1,8208:10424523,40553496 -g1,8208:11056815,40553496 -g1,8208:12005252,40553496 -g1,8208:12637544,40553496 -g1,8208:14534418,40553496 -g1,8208:15166710,40553496 -h1,8208:16747438,40553496:0,0,0 -k1,8208:32583029,40553496:15835591 -g1,8208:32583029,40553496 -) -] -) -g1,8210:32583029,40654683 -g1,8210:6630773,40654683 -g1,8210:6630773,40654683 -g1,8210:32583029,40654683 -g1,8210:32583029,40654683 -) -h1,8210:6630773,40851291:0,0,0 -v1,8214:6630773,42489983:0,393216,0 -(1,8239:6630773,45510161:25952256,3413394,196608 -g1,8239:6630773,45510161 -g1,8239:6630773,45510161 -g1,8239:6434165,45510161 -(1,8239:6434165,45510161:0,3413394,196608 -r1,8239:32779637,45510161:26345472,3610002,196608 -k1,8239:6434165,45510161:-26345472 -) -(1,8239:6434165,45510161:26345472,3413394,196608 -[1,8239:6630773,45510161:25952256,3216786,0 -(1,8216:6630773,42697601:25952256,404226,101187 -(1,8215:6630773,42697601:0,0,0 -g1,8215:6630773,42697601 -g1,8215:6630773,42697601 -g1,8215:6303093,42697601 -(1,8215:6303093,42697601:0,0,0 -) -g1,8215:6630773,42697601 -) -k1,8216:6630773,42697601:0 -g1,8216:9159938,42697601 -g1,8216:9792230,42697601 -g1,8216:10740667,42697601 -g1,8216:11372959,42697601 -g1,8216:12637542,42697601 -g1,8216:13269834,42697601 -h1,8216:14534417,42697601:0,0,0 -k1,8216:32583029,42697601:18048612 -g1,8216:32583029,42697601 -) -(1,8238:6630773,43429315:25952256,404226,101187 -(1,8218:6630773,43429315:0,0,0 -g1,8218:6630773,43429315 -g1,8218:6630773,43429315 -g1,8218:6303093,43429315 -(1,8218:6303093,43429315:0,0,0 -) -g1,8218:6630773,43429315 -) -g1,8238:7579210,43429315 -g1,8238:8211502,43429315 -g1,8238:8843794,43429315 -g1,8238:9792231,43429315 -g1,8238:10424523,43429315 -g1,8238:11689106,43429315 -g1,8238:12321398,43429315 -h1,8238:13269835,43429315:0,0,0 -k1,8238:32583029,43429315:19313194 -g1,8238:32583029,43429315 -) -(1,8238:6630773,44095493:25952256,404226,82312 -h1,8238:6630773,44095493:0,0,0 -g1,8238:7579210,44095493 -k1,8238:7579210,44095493:0 -h1,8238:13269832,44095493:0,0,0 -k1,8238:32583028,44095493:19313196 -g1,8238:32583028,44095493 -) -(1,8238:6630773,44761671:25952256,404226,101187 -h1,8238:6630773,44761671:0,0,0 -g1,8238:7579210,44761671 -g1,8238:10108376,44761671 -g1,8238:11372959,44761671 -g1,8238:12637542,44761671 -h1,8238:13585979,44761671:0,0,0 -k1,8238:32583029,44761671:18997050 -g1,8238:32583029,44761671 -) -(1,8238:6630773,45427849:25952256,410518,82312 -h1,8238:6630773,45427849:0,0,0 -g1,8238:7579210,45427849 -k1,8238:7579210,45427849:0 -h1,8238:12637540,45427849:0,0,0 -k1,8238:32583028,45427849:19945488 -g1,8238:32583028,45427849 -) -] -) -g1,8239:32583029,45510161 -g1,8239:6630773,45510161 -g1,8239:6630773,45510161 -g1,8239:32583029,45510161 -g1,8239:32583029,45510161 -) -] -(1,8239:32583029,45706769:0,0,0 -g1,8239:32583029,45706769 -) -) -] -(1,8239:6630773,47279633:25952256,0,0 -h1,8239:6630773,47279633:25952256,0,0 -) -] -h1,8239:4262630,4025873:0,0,0 +k1,8244:3078556,49800853:-34777008 +) +] +g1,8244:6630773,4812305 +k1,8244:24502442,4812305:16676292 +g1,8244:25889183,4812305 +g1,8244:26537989,4812305 +g1,8244:29852144,4812305 +) +) +] +[1,8244:6630773,45706769:25952256,40108032,0 +(1,8244:6630773,45706769:25952256,40108032,0 +(1,8244:6630773,45706769:0,0,0 +g1,8244:6630773,45706769 +) +[1,8244:6630773,45706769:25952256,40108032,0 +(1,8137:6630773,6254097:25952256,513147,126483 +k1,8136:7624845,6254097:246306 +k1,8136:11461213,6254097:246306 +k1,8136:12393681,6254097:246306 +k1,8136:13961848,6254097:246306 +k1,8136:14867446,6254097:246306 +k1,8136:16132837,6254097:246306 +k1,8136:18366850,6254097:246306 +k1,8136:21330279,6254097:246306 +k1,8136:22768030,6254097:246306 +k1,8136:27239442,6254097:246306 +k1,8136:28978658,6254097:246306 +k1,8136:30291235,6254097:246306 +k1,8136:32583029,6254097:0 +) +(1,8137:6630773,7095585:25952256,505283,134348 +g1,8136:10056995,7095585 +g1,8136:13738807,7095585 +g1,8136:16208859,7095585 +g1,8136:17900998,7095585 +g1,8136:19119312,7095585 +g1,8136:22758526,7095585 +g1,8136:25163042,7095585 +g1,8136:26048433,7095585 +g1,8136:27036060,7095585 +k1,8137:32583029,7095585:2300971 +g1,8137:32583029,7095585 +) +v1,8139:6630773,8248020:0,393216,0 +(1,8144:6630773,9229294:25952256,1374490,196608 +g1,8144:6630773,9229294 +g1,8144:6630773,9229294 +g1,8144:6434165,9229294 +(1,8144:6434165,9229294:0,1374490,196608 +r1,8144:32779637,9229294:26345472,1571098,196608 +k1,8144:6434165,9229294:-26345472 +) +(1,8144:6434165,9229294:26345472,1374490,196608 +[1,8144:6630773,9229294:25952256,1177882,0 +(1,8141:6630773,8455638:25952256,404226,101187 +(1,8140:6630773,8455638:0,0,0 +g1,8140:6630773,8455638 +g1,8140:6630773,8455638 +g1,8140:6303093,8455638 +(1,8140:6303093,8455638:0,0,0 +) +g1,8140:6630773,8455638 +) +g1,8141:7263065,8455638 +g1,8141:7895357,8455638 +g1,8141:9476086,8455638 +g1,8141:10108378,8455638 +h1,8141:11056815,8455638:0,0,0 +k1,8141:32583029,8455638:21526214 +g1,8141:32583029,8455638 +) +(1,8142:6630773,9121816:25952256,404226,107478 +h1,8142:6630773,9121816:0,0,0 +g1,8142:7263065,9121816 +g1,8142:7895357,9121816 +g1,8142:10108377,9121816 +g1,8142:10740669,9121816 +h1,8142:11689106,9121816:0,0,0 +k1,8142:32583030,9121816:20893924 +g1,8142:32583030,9121816 +) +] +) +g1,8144:32583029,9229294 +g1,8144:6630773,9229294 +g1,8144:6630773,9229294 +g1,8144:32583029,9229294 +g1,8144:32583029,9229294 +) +h1,8144:6630773,9425902:0,0,0 +(1,8148:6630773,10753647:25952256,513147,134348 +h1,8147:6630773,10753647:983040,0,0 +k1,8147:8200926,10753647:172270 +k1,8147:10916674,10753647:172296 +k1,8147:13173016,10753647:172297 +k1,8147:15357268,10753647:172297 +k1,8147:18916465,10753647:172296 +k1,8147:20657039,10753647:172297 +k1,8147:21776986,10753647:172296 +k1,8147:25198558,10753647:172297 +k1,8147:28836398,10753647:172296 +k1,8147:31025238,10753647:172297 +k1,8147:32583029,10753647:0 +) +(1,8148:6630773,11595135:25952256,513147,134348 +k1,8147:8571221,11595135:258794 +k1,8147:13161945,11595135:258794 +k1,8147:14989016,11595135:258794 +k1,8147:15907102,11595135:258794 +k1,8147:18810930,11595135:258795 +k1,8147:22117148,11595135:258794 +k1,8147:24261413,11595135:258794 +k1,8147:25467858,11595135:258794 +k1,8147:28412973,11595135:258794 +k1,8147:32583029,11595135:0 +) +(1,8148:6630773,12436623:25952256,505283,134348 +k1,8147:9267001,12436623:217294 +k1,8147:11205269,12436623:217293 +k1,8147:13451558,12436623:217294 +k1,8147:14860296,12436623:217293 +k1,8147:16181872,12436623:217294 +k1,8147:19028470,12436623:217294 +k1,8147:21421558,12436623:217293 +k1,8147:22456741,12436623:217294 +k1,8147:24113861,12436623:217294 +k1,8147:26360149,12436623:217293 +k1,8147:29324057,12436623:217294 +(1,8147:29324057,12436623:0,414482,115847 +r1,8147:29682323,12436623:358266,530329,115847 +k1,8147:29324057,12436623:-358266 +) +(1,8147:29324057,12436623:358266,414482,115847 +k1,8147:29324057,12436623:3277 +h1,8147:29679046,12436623:0,411205,112570 +) +k1,8147:29899616,12436623:217293 +k1,8147:31837885,12436623:217294 +k1,8147:32583029,12436623:0 +) +(1,8148:6630773,13278111:25952256,513147,134348 +k1,8147:8368636,13278111:170242 +k1,8147:10657003,13278111:170243 +k1,8147:11478673,13278111:170242 +k1,8147:14546262,13278111:170242 +k1,8147:17248161,13278111:170243 +k1,8147:18184519,13278111:170242 +k1,8147:19373846,13278111:170242 +k1,8147:23009632,13278111:170242 +k1,8147:25022747,13278111:170243 +k1,8147:25809027,13278111:170242 +k1,8147:26335129,13278111:170242 +k1,8147:27595236,13278111:170243 +k1,8147:30421652,13278111:170242 +k1,8148:32583029,13278111:0 +k1,8148:32583029,13278111:0 +) +v1,8150:6630773,14430546:0,393216,0 +(1,8154:6630773,14723622:25952256,686292,196608 +g1,8154:6630773,14723622 +g1,8154:6630773,14723622 +g1,8154:6434165,14723622 +(1,8154:6434165,14723622:0,686292,196608 +r1,8154:32779637,14723622:26345472,882900,196608 +k1,8154:6434165,14723622:-26345472 +) +(1,8154:6434165,14723622:26345472,686292,196608 +[1,8154:6630773,14723622:25952256,489684,0 +(1,8152:6630773,14622435:25952256,388497,101187 +(1,8151:6630773,14622435:0,0,0 +g1,8151:6630773,14622435 +g1,8151:6630773,14622435 +g1,8151:6303093,14622435 +(1,8151:6303093,14622435:0,0,0 +) +g1,8151:6630773,14622435 +) +g1,8152:7263065,14622435 +g1,8152:7895357,14622435 +g1,8152:8843794,14622435 +g1,8152:9476086,14622435 +g1,8152:10424523,14622435 +g1,8152:11056815,14622435 +g1,8152:12005252,14622435 +g1,8152:12637544,14622435 +g1,8152:14534418,14622435 +g1,8152:15166710,14622435 +g1,8152:17063584,14622435 +g1,8152:17695876,14622435 +g1,8152:19592750,14622435 +g1,8152:20225042,14622435 +h1,8152:22754207,14622435:0,0,0 +k1,8152:32583029,14622435:9828822 +g1,8152:32583029,14622435 +) +] +) +g1,8154:32583029,14723622 +g1,8154:6630773,14723622 +g1,8154:6630773,14723622 +g1,8154:32583029,14723622 +g1,8154:32583029,14723622 +) +h1,8154:6630773,14920230:0,0,0 +(1,8158:6630773,16247975:25952256,505283,126483 +h1,8157:6630773,16247975:983040,0,0 +g1,8157:9039221,16247975 +g1,8157:9986216,16247975 +g1,8157:12904534,16247975 +g1,8157:13865291,16247975 +g1,8157:14420380,16247975 +g1,8157:16974973,16247975 +k1,8158:32583029,16247975:12129405 +g1,8158:32583029,16247975 +) +v1,8160:6630773,17400410:0,393216,0 +(1,8164:6630773,17693486:25952256,686292,196608 +g1,8164:6630773,17693486 +g1,8164:6630773,17693486 +g1,8164:6434165,17693486 +(1,8164:6434165,17693486:0,686292,196608 +r1,8164:32779637,17693486:26345472,882900,196608 +k1,8164:6434165,17693486:-26345472 +) +(1,8164:6434165,17693486:26345472,686292,196608 +[1,8164:6630773,17693486:25952256,489684,0 +(1,8162:6630773,17592299:25952256,388497,101187 +(1,8161:6630773,17592299:0,0,0 +g1,8161:6630773,17592299 +g1,8161:6630773,17592299 +g1,8161:6303093,17592299 +(1,8161:6303093,17592299:0,0,0 +) +g1,8161:6630773,17592299 +) +g1,8162:7263065,17592299 +g1,8162:7895357,17592299 +g1,8162:8843794,17592299 +g1,8162:9476086,17592299 +g1,8162:10424523,17592299 +g1,8162:11056815,17592299 +h1,8162:11689106,17592299:0,0,0 +k1,8162:32583030,17592299:20893924 +g1,8162:32583030,17592299 +) +] +) +g1,8164:32583029,17693486 +g1,8164:6630773,17693486 +g1,8164:6630773,17693486 +g1,8164:32583029,17693486 +g1,8164:32583029,17693486 +) +h1,8164:6630773,17890094:0,0,0 +(1,8168:6630773,19217839:25952256,513147,126483 +h1,8167:6630773,19217839:983040,0,0 +k1,8167:9578146,19217839:181098 +k1,8167:10778328,19217839:181097 +k1,8167:12947133,19217839:181098 +k1,8167:13779658,19217839:181097 +k1,8167:14708522,19217839:181098 +k1,8167:17721430,19217839:181097 +k1,8167:19395438,19217839:181098 +k1,8167:20642807,19217839:181098 +k1,8167:23161573,19217839:181097 +k1,8167:24108787,19217839:181098 +k1,8167:26919844,19217839:181097 +k1,8167:30566486,19217839:181098 +k1,8167:32583029,19217839:0 +) +(1,8168:6630773,20059327:25952256,505283,126483 +g1,8167:7698354,20059327 +g1,8167:9001865,20059327 +g1,8167:11912974,20059327 +g1,8167:13131288,20059327 +g1,8167:15685881,20059327 +g1,8167:18574708,20059327 +g1,8167:20167888,20059327 +k1,8168:32583029,20059327:8387298 +g1,8168:32583029,20059327 +) +v1,8170:6630773,21211762:0,393216,0 +(1,8175:6630773,22186745:25952256,1368199,196608 +g1,8175:6630773,22186745 +g1,8175:6630773,22186745 +g1,8175:6434165,22186745 +(1,8175:6434165,22186745:0,1368199,196608 +r1,8175:32779637,22186745:26345472,1564807,196608 +k1,8175:6434165,22186745:-26345472 +) +(1,8175:6434165,22186745:26345472,1368199,196608 +[1,8175:6630773,22186745:25952256,1171591,0 +(1,8172:6630773,21419380:25952256,404226,101187 +(1,8171:6630773,21419380:0,0,0 +g1,8171:6630773,21419380 +g1,8171:6630773,21419380 +g1,8171:6303093,21419380 +(1,8171:6303093,21419380:0,0,0 +) +g1,8171:6630773,21419380 +) +g1,8172:7263065,21419380 +g1,8172:7895357,21419380 +g1,8172:8843794,21419380 +g1,8172:9476086,21419380 +g1,8172:10740669,21419380 +g1,8172:11372961,21419380 +h1,8172:12321398,21419380:0,0,0 +k1,8172:32583030,21419380:20261632 +g1,8172:32583030,21419380 +) +(1,8173:6630773,22085558:25952256,388497,101187 +h1,8173:6630773,22085558:0,0,0 +g1,8173:7263065,22085558 +g1,8173:7895357,22085558 +g1,8173:8843794,22085558 +g1,8173:9476086,22085558 +g1,8173:10424523,22085558 +g1,8173:11056815,22085558 +g1,8173:12005252,22085558 +g1,8173:12637544,22085558 +h1,8173:14218272,22085558:0,0,0 +k1,8173:32583028,22085558:18364756 +g1,8173:32583028,22085558 +) +] +) +g1,8175:32583029,22186745 +g1,8175:6630773,22186745 +g1,8175:6630773,22186745 +g1,8175:32583029,22186745 +g1,8175:32583029,22186745 +) +h1,8175:6630773,22383353:0,0,0 +(1,8179:6630773,23711098:25952256,513147,134348 +h1,8178:6630773,23711098:983040,0,0 +g1,8178:9275150,23711098 +g1,8178:10493464,23711098 +g1,8178:11865132,23711098 +g1,8178:14052068,23711098 +g1,8178:17125051,23711098 +g1,8178:19179604,23711098 +g1,8178:20370393,23711098 +g1,8178:24048273,23711098 +g1,8178:25351784,23711098 +g1,8178:26298779,23711098 +g1,8178:27937834,23711098 +g1,8178:29872456,23711098 +(1,8178:29872456,23711098:0,452978,115847 +r1,8178:32340993,23711098:2468537,568825,115847 +k1,8178:29872456,23711098:-2468537 +) +(1,8178:29872456,23711098:2468537,452978,115847 +k1,8178:29872456,23711098:3277 +h1,8178:32337716,23711098:0,411205,112570 +) +k1,8179:32583029,23711098:242036 +g1,8179:32583029,23711098 +) +v1,8181:6630773,24863533:0,393216,0 +(1,8206:6630773,37844400:25952256,13374083,196608 +g1,8206:6630773,37844400 +g1,8206:6630773,37844400 +g1,8206:6434165,37844400 +(1,8206:6434165,37844400:0,13374083,196608 +r1,8206:32779637,37844400:26345472,13570691,196608 +k1,8206:6434165,37844400:-26345472 +) +(1,8206:6434165,37844400:26345472,13374083,196608 +[1,8206:6630773,37844400:25952256,13177475,0 +(1,8183:6630773,25071151:25952256,404226,101187 +(1,8182:6630773,25071151:0,0,0 +g1,8182:6630773,25071151 +g1,8182:6630773,25071151 +g1,8182:6303093,25071151 +(1,8182:6303093,25071151:0,0,0 +) +g1,8182:6630773,25071151 +) +k1,8183:6630773,25071151:0 +g1,8183:9159938,25071151 +g1,8183:9792230,25071151 +g1,8183:10740667,25071151 +g1,8183:11372959,25071151 +g1,8183:12637542,25071151 +g1,8183:13269834,25071151 +h1,8183:14534417,25071151:0,0,0 +k1,8183:32583029,25071151:18048612 +g1,8183:32583029,25071151 +) +(1,8205:6630773,25802865:25952256,404226,101187 +(1,8185:6630773,25802865:0,0,0 +g1,8185:6630773,25802865 +g1,8185:6630773,25802865 +g1,8185:6303093,25802865 +(1,8185:6303093,25802865:0,0,0 +) +g1,8185:6630773,25802865 +) +g1,8205:7579210,25802865 +g1,8205:8211502,25802865 +g1,8205:8843794,25802865 +g1,8205:9792231,25802865 +g1,8205:10424523,25802865 +g1,8205:11689106,25802865 +g1,8205:12321398,25802865 +h1,8205:13269835,25802865:0,0,0 +k1,8205:32583029,25802865:19313194 +g1,8205:32583029,25802865 +) +(1,8205:6630773,26469043:25952256,404226,82312 +h1,8205:6630773,26469043:0,0,0 +g1,8205:7579210,26469043 +k1,8205:7579210,26469043:0 +h1,8205:13269832,26469043:0,0,0 +k1,8205:32583028,26469043:19313196 +g1,8205:32583028,26469043 +) +(1,8205:6630773,27135221:25952256,404226,101187 +h1,8205:6630773,27135221:0,0,0 +g1,8205:7579210,27135221 +g1,8205:10108376,27135221 +g1,8205:11372959,27135221 +g1,8205:12637542,27135221 +h1,8205:13585979,27135221:0,0,0 +k1,8205:32583029,27135221:18997050 +g1,8205:32583029,27135221 +) +(1,8205:6630773,27801399:25952256,410518,82312 +h1,8205:6630773,27801399:0,0,0 +g1,8205:7579210,27801399 +k1,8205:7579210,27801399:0 +h1,8205:12637540,27801399:0,0,0 +k1,8205:32583028,27801399:19945488 +g1,8205:32583028,27801399 +) +(1,8205:6630773,28467577:25952256,388497,9436 +h1,8205:6630773,28467577:0,0,0 +g1,8205:7579210,28467577 +g1,8205:7895356,28467577 +g1,8205:8211502,28467577 +g1,8205:8527648,28467577 +g1,8205:9476085,28467577 +g1,8205:10424522,28467577 +g1,8205:11372959,28467577 +h1,8205:12953687,28467577:0,0,0 +k1,8205:32583029,28467577:19629342 +g1,8205:32583029,28467577 +) +(1,8205:6630773,29133755:25952256,388497,101187 +h1,8205:6630773,29133755:0,0,0 +g1,8205:7579210,29133755 +g1,8205:8211502,29133755 +g1,8205:8527648,29133755 +g1,8205:8843794,29133755 +g1,8205:9476086,29133755 +g1,8205:9792232,29133755 +g1,8205:10424524,29133755 +g1,8205:10740670,29133755 +g1,8205:11372962,29133755 +g1,8205:11689108,29133755 +g1,8205:12005254,29133755 +g1,8205:12321400,29133755 +g1,8205:12637546,29133755 +h1,8205:12953692,29133755:0,0,0 +k1,8205:32583028,29133755:19629336 +g1,8205:32583028,29133755 +) +(1,8205:6630773,29799933:25952256,388497,9436 +h1,8205:6630773,29799933:0,0,0 +g1,8205:7579210,29799933 +g1,8205:8527647,29799933 +g1,8205:8843793,29799933 +g1,8205:9476085,29799933 +g1,8205:9792231,29799933 +g1,8205:10424523,29799933 +g1,8205:10740669,29799933 +g1,8205:11372961,29799933 +g1,8205:11689107,29799933 +g1,8205:12005253,29799933 +g1,8205:12321399,29799933 +g1,8205:12637545,29799933 +h1,8205:12953691,29799933:0,0,0 +k1,8205:32583029,29799933:19629338 +g1,8205:32583029,29799933 +) +(1,8205:6630773,30466111:25952256,388497,9436 +h1,8205:6630773,30466111:0,0,0 +g1,8205:7579210,30466111 +g1,8205:8527647,30466111 +g1,8205:8843793,30466111 +g1,8205:9476085,30466111 +g1,8205:9792231,30466111 +g1,8205:10424523,30466111 +g1,8205:10740669,30466111 +g1,8205:11372961,30466111 +g1,8205:11689107,30466111 +g1,8205:12005253,30466111 +g1,8205:12321399,30466111 +g1,8205:12637545,30466111 +h1,8205:12953691,30466111:0,0,0 +k1,8205:32583029,30466111:19629338 +g1,8205:32583029,30466111 +) +(1,8205:6630773,31132289:25952256,388497,9436 +h1,8205:6630773,31132289:0,0,0 +g1,8205:7579210,31132289 +g1,8205:8527647,31132289 +g1,8205:8843793,31132289 +g1,8205:9476085,31132289 +g1,8205:9792231,31132289 +g1,8205:10424523,31132289 +g1,8205:10740669,31132289 +g1,8205:11372961,31132289 +g1,8205:11689107,31132289 +g1,8205:12005253,31132289 +g1,8205:12321399,31132289 +g1,8205:12637545,31132289 +h1,8205:12953691,31132289:0,0,0 +k1,8205:32583029,31132289:19629338 +g1,8205:32583029,31132289 +) +(1,8205:6630773,31798467:25952256,404226,82312 +h1,8205:6630773,31798467:0,0,0 +g1,8205:7579210,31798467 +k1,8205:7579210,31798467:0 +h1,8205:13902123,31798467:0,0,0 +k1,8205:32583029,31798467:18680906 +g1,8205:32583029,31798467 +) +(1,8205:6630773,32464645:25952256,404226,76021 +h1,8205:6630773,32464645:0,0,0 +g1,8205:7579210,32464645 +g1,8205:8843793,32464645 +g1,8205:10424522,32464645 +g1,8205:10740668,32464645 +g1,8205:11056814,32464645 +g1,8205:11372960,32464645 +g1,8205:12953689,32464645 +g1,8205:13269835,32464645 +g1,8205:13585981,32464645 +g1,8205:13902127,32464645 +g1,8205:15482856,32464645 +g1,8205:15799002,32464645 +g1,8205:16115148,32464645 +g1,8205:16431294,32464645 +h1,8205:18644314,32464645:0,0,0 +k1,8205:32583029,32464645:13938715 +g1,8205:32583029,32464645 +) +(1,8205:6630773,33130823:25952256,404226,82312 +h1,8205:6630773,33130823:0,0,0 +g1,8205:7579210,33130823 +k1,8205:7579210,33130823:0 +h1,8205:12005249,33130823:0,0,0 +k1,8205:32583029,33130823:20577780 +g1,8205:32583029,33130823 +) +(1,8205:6630773,33797001:25952256,404226,76021 +h1,8205:6630773,33797001:0,0,0 +g1,8205:7579210,33797001 +g1,8205:8843793,33797001 +g1,8205:9476085,33797001 +g1,8205:10108377,33797001 +g1,8205:10740669,33797001 +h1,8205:11056815,33797001:0,0,0 +k1,8205:32583029,33797001:21526214 +g1,8205:32583029,33797001 +) +(1,8205:6630773,34463179:25952256,404226,101187 +h1,8205:6630773,34463179:0,0,0 +g1,8205:7579210,34463179 +k1,8205:7579210,34463179:0 +h1,8205:13269832,34463179:0,0,0 +k1,8205:32583028,34463179:19313196 +g1,8205:32583028,34463179 +) +(1,8205:6630773,35129357:25952256,404226,76021 +h1,8205:6630773,35129357:0,0,0 +g1,8205:7579210,35129357 +g1,8205:8843793,35129357 +h1,8205:9159939,35129357:0,0,0 +k1,8205:32583029,35129357:23423090 +g1,8205:32583029,35129357 +) +(1,8205:6630773,35795535:25952256,404226,101187 +h1,8205:6630773,35795535:0,0,0 +g1,8205:7579210,35795535 +k1,8205:7579210,35795535:0 +h1,8205:12953686,35795535:0,0,0 +k1,8205:32583030,35795535:19629344 +g1,8205:32583030,35795535 +) +(1,8205:6630773,36461713:25952256,404226,76021 +h1,8205:6630773,36461713:0,0,0 +g1,8205:7579210,36461713 +g1,8205:8843793,36461713 +h1,8205:9159939,36461713:0,0,0 +k1,8205:32583029,36461713:23423090 +g1,8205:32583029,36461713 +) +(1,8205:6630773,37127891:25952256,404226,82312 +h1,8205:6630773,37127891:0,0,0 +g1,8205:7579210,37127891 +k1,8205:7579210,37127891:0 +h1,8205:14218269,37127891:0,0,0 +k1,8205:32583029,37127891:18364760 +g1,8205:32583029,37127891 +) +(1,8205:6630773,37794069:25952256,404226,50331 +h1,8205:6630773,37794069:0,0,0 +g1,8205:7579210,37794069 +g1,8205:12005250,37794069 +k1,8205:12005250,37794069:0 +h1,8205:15798998,37794069:0,0,0 +k1,8205:32583030,37794069:16784032 +g1,8205:32583030,37794069 +) +] +) +g1,8206:32583029,37844400 +g1,8206:6630773,37844400 +g1,8206:6630773,37844400 +g1,8206:32583029,37844400 +g1,8206:32583029,37844400 +) +h1,8206:6630773,38041008:0,0,0 +v1,8210:6630773,39679700:0,393216,0 +(1,8215:6630773,40654683:25952256,1368199,196608 +g1,8215:6630773,40654683 +g1,8215:6630773,40654683 +g1,8215:6434165,40654683 +(1,8215:6434165,40654683:0,1368199,196608 +r1,8215:32779637,40654683:26345472,1564807,196608 +k1,8215:6434165,40654683:-26345472 +) +(1,8215:6434165,40654683:26345472,1368199,196608 +[1,8215:6630773,40654683:25952256,1171591,0 +(1,8212:6630773,39887318:25952256,404226,101187 +(1,8211:6630773,39887318:0,0,0 +g1,8211:6630773,39887318 +g1,8211:6630773,39887318 +g1,8211:6303093,39887318 +(1,8211:6303093,39887318:0,0,0 +) +g1,8211:6630773,39887318 +) +g1,8212:7263065,39887318 +g1,8212:7895357,39887318 +g1,8212:8843794,39887318 +g1,8212:9476086,39887318 +g1,8212:10740669,39887318 +g1,8212:11372961,39887318 +h1,8212:12321398,39887318:0,0,0 +k1,8212:32583030,39887318:20261632 +g1,8212:32583030,39887318 +) +(1,8213:6630773,40553496:25952256,388497,101187 +h1,8213:6630773,40553496:0,0,0 +g1,8213:7263065,40553496 +g1,8213:7895357,40553496 +g1,8213:8843794,40553496 +g1,8213:9476086,40553496 +g1,8213:10424523,40553496 +g1,8213:11056815,40553496 +g1,8213:12005252,40553496 +g1,8213:12637544,40553496 +g1,8213:14534418,40553496 +g1,8213:15166710,40553496 +h1,8213:16747438,40553496:0,0,0 +k1,8213:32583029,40553496:15835591 +g1,8213:32583029,40553496 +) +] +) +g1,8215:32583029,40654683 +g1,8215:6630773,40654683 +g1,8215:6630773,40654683 +g1,8215:32583029,40654683 +g1,8215:32583029,40654683 +) +h1,8215:6630773,40851291:0,0,0 +v1,8219:6630773,42489983:0,393216,0 +(1,8244:6630773,45510161:25952256,3413394,196608 +g1,8244:6630773,45510161 +g1,8244:6630773,45510161 +g1,8244:6434165,45510161 +(1,8244:6434165,45510161:0,3413394,196608 +r1,8244:32779637,45510161:26345472,3610002,196608 +k1,8244:6434165,45510161:-26345472 +) +(1,8244:6434165,45510161:26345472,3413394,196608 +[1,8244:6630773,45510161:25952256,3216786,0 +(1,8221:6630773,42697601:25952256,404226,101187 +(1,8220:6630773,42697601:0,0,0 +g1,8220:6630773,42697601 +g1,8220:6630773,42697601 +g1,8220:6303093,42697601 +(1,8220:6303093,42697601:0,0,0 +) +g1,8220:6630773,42697601 +) +k1,8221:6630773,42697601:0 +g1,8221:9159938,42697601 +g1,8221:9792230,42697601 +g1,8221:10740667,42697601 +g1,8221:11372959,42697601 +g1,8221:12637542,42697601 +g1,8221:13269834,42697601 +h1,8221:14534417,42697601:0,0,0 +k1,8221:32583029,42697601:18048612 +g1,8221:32583029,42697601 +) +(1,8243:6630773,43429315:25952256,404226,101187 +(1,8223:6630773,43429315:0,0,0 +g1,8223:6630773,43429315 +g1,8223:6630773,43429315 +g1,8223:6303093,43429315 +(1,8223:6303093,43429315:0,0,0 +) +g1,8223:6630773,43429315 +) +g1,8243:7579210,43429315 +g1,8243:8211502,43429315 +g1,8243:8843794,43429315 +g1,8243:9792231,43429315 +g1,8243:10424523,43429315 +g1,8243:11689106,43429315 +g1,8243:12321398,43429315 +h1,8243:13269835,43429315:0,0,0 +k1,8243:32583029,43429315:19313194 +g1,8243:32583029,43429315 +) +(1,8243:6630773,44095493:25952256,404226,82312 +h1,8243:6630773,44095493:0,0,0 +g1,8243:7579210,44095493 +k1,8243:7579210,44095493:0 +h1,8243:13269832,44095493:0,0,0 +k1,8243:32583028,44095493:19313196 +g1,8243:32583028,44095493 +) +(1,8243:6630773,44761671:25952256,404226,101187 +h1,8243:6630773,44761671:0,0,0 +g1,8243:7579210,44761671 +g1,8243:10108376,44761671 +g1,8243:11372959,44761671 +g1,8243:12637542,44761671 +h1,8243:13585979,44761671:0,0,0 +k1,8243:32583029,44761671:18997050 +g1,8243:32583029,44761671 +) +(1,8243:6630773,45427849:25952256,410518,82312 +h1,8243:6630773,45427849:0,0,0 +g1,8243:7579210,45427849 +k1,8243:7579210,45427849:0 +h1,8243:12637540,45427849:0,0,0 +k1,8243:32583028,45427849:19945488 +g1,8243:32583028,45427849 +) +] +) +g1,8244:32583029,45510161 +g1,8244:6630773,45510161 +g1,8244:6630773,45510161 +g1,8244:32583029,45510161 +g1,8244:32583029,45510161 +) +] +(1,8244:32583029,45706769:0,0,0 +g1,8244:32583029,45706769 +) +) +] +(1,8244:6630773,47279633:25952256,0,0 +h1,8244:6630773,47279633:25952256,0,0 +) +] +h1,8244:4262630,4025873:0,0,0 ] !23810 }153 -Input:1129:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1130:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1131:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1132:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 +Input:1125:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1126:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1127:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1128:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {154 -[1,8299:4262630,47279633:28320399,43253760,0 -(1,8299:4262630,4025873:0,0,0 -[1,8299:-473657,4025873:25952256,0,0 -(1,8299:-473657,-710414:25952256,0,0 -h1,8299:-473657,-710414:0,0,0 -(1,8299:-473657,-710414:0,0,0 -(1,8299:-473657,-710414:0,0,0 -g1,8299:-473657,-710414 -(1,8299:-473657,-710414:65781,0,65781 -g1,8299:-407876,-710414 -[1,8299:-407876,-644633:0,0,0 +[1,8304:4262630,47279633:28320399,43253760,0 +(1,8304:4262630,4025873:0,0,0 +[1,8304:-473657,4025873:25952256,0,0 +(1,8304:-473657,-710414:25952256,0,0 +h1,8304:-473657,-710414:0,0,0 +(1,8304:-473657,-710414:0,0,0 +(1,8304:-473657,-710414:0,0,0 +g1,8304:-473657,-710414 +(1,8304:-473657,-710414:65781,0,65781 +g1,8304:-407876,-710414 +[1,8304:-407876,-644633:0,0,0 ] ) -k1,8299:-473657,-710414:-65781 +k1,8304:-473657,-710414:-65781 ) ) -k1,8299:25478599,-710414:25952256 -g1,8299:25478599,-710414 +k1,8304:25478599,-710414:25952256 +g1,8304:25478599,-710414 ) ] ) -[1,8299:6630773,47279633:25952256,43253760,0 -[1,8299:6630773,4812305:25952256,786432,0 -(1,8299:6630773,4812305:25952256,513147,126483 -(1,8299:6630773,4812305:25952256,513147,126483 -g1,8299:3078558,4812305 -[1,8299:3078558,4812305:0,0,0 -(1,8299:3078558,2439708:0,1703936,0 -k1,8299:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8299:2537886,2439708:1179648,16384,0 +[1,8304:6630773,47279633:25952256,43253760,0 +[1,8304:6630773,4812305:25952256,786432,0 +(1,8304:6630773,4812305:25952256,513147,126483 +(1,8304:6630773,4812305:25952256,513147,126483 +g1,8304:3078558,4812305 +[1,8304:3078558,4812305:0,0,0 +(1,8304:3078558,2439708:0,1703936,0 +k1,8304:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8304:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8299:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8304:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8299:3078558,4812305:0,0,0 -(1,8299:3078558,2439708:0,1703936,0 -g1,8299:29030814,2439708 -g1,8299:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8299:36151628,1915420:16384,1179648,0 +[1,8304:3078558,4812305:0,0,0 +(1,8304:3078558,2439708:0,1703936,0 +g1,8304:29030814,2439708 +g1,8304:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8304:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8299:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8304:37855564,2439708:1179648,16384,0 ) ) -k1,8299:3078556,2439708:-34777008 +k1,8304:3078556,2439708:-34777008 ) ] -[1,8299:3078558,4812305:0,0,0 -(1,8299:3078558,49800853:0,16384,2228224 -k1,8299:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8299:2537886,49800853:1179648,16384,0 +[1,8304:3078558,4812305:0,0,0 +(1,8304:3078558,49800853:0,16384,2228224 +k1,8304:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8304:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8299:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8304:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] -) -) -) -] -[1,8299:3078558,4812305:0,0,0 -(1,8299:3078558,49800853:0,16384,2228224 -g1,8299:29030814,49800853 -g1,8299:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8299:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8299:37855564,49800853:1179648,16384,0 -) -) -k1,8299:3078556,49800853:-34777008 -) -] -g1,8299:6630773,4812305 -g1,8299:6630773,4812305 -g1,8299:8691224,4812305 -g1,8299:11722264,4812305 -k1,8299:31387652,4812305:19665388 -) -) -] -[1,8299:6630773,45706769:25952256,40108032,0 -(1,8299:6630773,45706769:25952256,40108032,0 -(1,8299:6630773,45706769:0,0,0 -g1,8299:6630773,45706769 -) -[1,8299:6630773,45706769:25952256,40108032,0 -v1,8239:6630773,6254097:0,393216,0 -(1,8239:6630773,15822809:25952256,9961928,196608 -g1,8239:6630773,15822809 -g1,8239:6630773,15822809 -g1,8239:6434165,15822809 -(1,8239:6434165,15822809:0,9961928,196608 -r1,8239:32779637,15822809:26345472,10158536,196608 -k1,8239:6434165,15822809:-26345472 -) -(1,8239:6434165,15822809:26345472,9961928,196608 -[1,8239:6630773,15822809:25952256,9765320,0 -(1,8238:6630773,6445986:25952256,388497,9436 -h1,8238:6630773,6445986:0,0,0 -g1,8238:7579210,6445986 -g1,8238:7895356,6445986 -g1,8238:8211502,6445986 -g1,8238:8527648,6445986 -g1,8238:9476085,6445986 -g1,8238:10424522,6445986 -g1,8238:11372959,6445986 -g1,8238:13269833,6445986 -h1,8238:14850561,6445986:0,0,0 -k1,8238:32583029,6445986:17732468 -g1,8238:32583029,6445986 -) -(1,8238:6630773,7112164:25952256,388497,101187 -h1,8238:6630773,7112164:0,0,0 -g1,8238:7579210,7112164 -g1,8238:8211502,7112164 -g1,8238:8527648,7112164 -g1,8238:8843794,7112164 -g1,8238:9476086,7112164 -g1,8238:9792232,7112164 -g1,8238:10424524,7112164 -g1,8238:10740670,7112164 -g1,8238:11372962,7112164 -g1,8238:11689108,7112164 -g1,8238:12005254,7112164 -g1,8238:12321400,7112164 -g1,8238:12637546,7112164 -g1,8238:13269838,7112164 -g1,8238:13585984,7112164 -g1,8238:13902130,7112164 -g1,8238:14218276,7112164 -g1,8238:14534422,7112164 -h1,8238:14850568,7112164:0,0,0 -k1,8238:32583028,7112164:17732460 -g1,8238:32583028,7112164 -) -(1,8238:6630773,7778342:25952256,388497,9436 -h1,8238:6630773,7778342:0,0,0 -g1,8238:7579210,7778342 -g1,8238:8527647,7778342 -g1,8238:8843793,7778342 -g1,8238:9476085,7778342 -g1,8238:9792231,7778342 -g1,8238:10424523,7778342 -g1,8238:10740669,7778342 -g1,8238:11372961,7778342 -g1,8238:11689107,7778342 -g1,8238:12005253,7778342 -g1,8238:12321399,7778342 -g1,8238:12637545,7778342 -g1,8238:13269837,7778342 -g1,8238:13585983,7778342 -g1,8238:13902129,7778342 -g1,8238:14218275,7778342 -g1,8238:14534421,7778342 -h1,8238:14850567,7778342:0,0,0 -k1,8238:32583029,7778342:17732462 -g1,8238:32583029,7778342 -) -(1,8238:6630773,8444520:25952256,388497,9436 -h1,8238:6630773,8444520:0,0,0 -g1,8238:7579210,8444520 -g1,8238:8527647,8444520 -g1,8238:8843793,8444520 -g1,8238:9476085,8444520 -g1,8238:9792231,8444520 -g1,8238:10424523,8444520 -g1,8238:10740669,8444520 -g1,8238:11372961,8444520 -g1,8238:11689107,8444520 -g1,8238:12005253,8444520 -g1,8238:12321399,8444520 -g1,8238:12637545,8444520 -g1,8238:13269837,8444520 -g1,8238:13585983,8444520 -g1,8238:13902129,8444520 -g1,8238:14218275,8444520 -g1,8238:14534421,8444520 -h1,8238:14850567,8444520:0,0,0 -k1,8238:32583029,8444520:17732462 -g1,8238:32583029,8444520 -) -(1,8238:6630773,9110698:25952256,388497,9436 -h1,8238:6630773,9110698:0,0,0 -g1,8238:7579210,9110698 -g1,8238:8527647,9110698 -g1,8238:8843793,9110698 -g1,8238:9476085,9110698 -g1,8238:9792231,9110698 -g1,8238:10424523,9110698 -g1,8238:10740669,9110698 -g1,8238:11372961,9110698 -g1,8238:11689107,9110698 -g1,8238:12005253,9110698 -g1,8238:12321399,9110698 -g1,8238:12637545,9110698 -g1,8238:13269837,9110698 -g1,8238:13585983,9110698 -g1,8238:13902129,9110698 -g1,8238:14218275,9110698 -g1,8238:14534421,9110698 -h1,8238:14850567,9110698:0,0,0 -k1,8238:32583029,9110698:17732462 -g1,8238:32583029,9110698 -) -(1,8238:6630773,9776876:25952256,404226,82312 -h1,8238:6630773,9776876:0,0,0 -g1,8238:7579210,9776876 -k1,8238:7579210,9776876:0 -h1,8238:13902123,9776876:0,0,0 -k1,8238:32583029,9776876:18680906 -g1,8238:32583029,9776876 -) -(1,8238:6630773,10443054:25952256,404226,76021 -h1,8238:6630773,10443054:0,0,0 -g1,8238:7579210,10443054 -g1,8238:8843793,10443054 -g1,8238:10424522,10443054 -g1,8238:10740668,10443054 -g1,8238:11056814,10443054 -g1,8238:11372960,10443054 -g1,8238:12953689,10443054 -g1,8238:13269835,10443054 -g1,8238:13585981,10443054 -g1,8238:13902127,10443054 -g1,8238:15482856,10443054 -g1,8238:15799002,10443054 -g1,8238:16115148,10443054 -g1,8238:16431294,10443054 -g1,8238:18960460,10443054 -h1,8238:21173480,10443054:0,0,0 -k1,8238:32583029,10443054:11409549 -g1,8238:32583029,10443054 -) -(1,8238:6630773,11109232:25952256,404226,82312 -h1,8238:6630773,11109232:0,0,0 -g1,8238:7579210,11109232 -k1,8238:7579210,11109232:0 -h1,8238:12005249,11109232:0,0,0 -k1,8238:32583029,11109232:20577780 -g1,8238:32583029,11109232 -) -(1,8238:6630773,11775410:25952256,404226,76021 -h1,8238:6630773,11775410:0,0,0 -g1,8238:7579210,11775410 -g1,8238:8843793,11775410 -g1,8238:9476085,11775410 -g1,8238:10108377,11775410 -g1,8238:10740669,11775410 -g1,8238:11372961,11775410 -h1,8238:11689107,11775410:0,0,0 -k1,8238:32583029,11775410:20893922 -g1,8238:32583029,11775410 -) -(1,8238:6630773,12441588:25952256,404226,101187 -h1,8238:6630773,12441588:0,0,0 -g1,8238:7579210,12441588 -k1,8238:7579210,12441588:0 -h1,8238:13269832,12441588:0,0,0 -k1,8238:32583028,12441588:19313196 -g1,8238:32583028,12441588 -) -(1,8238:6630773,13107766:25952256,404226,76021 -h1,8238:6630773,13107766:0,0,0 -g1,8238:7579210,13107766 -g1,8238:8843793,13107766 -h1,8238:9159939,13107766:0,0,0 -k1,8238:32583029,13107766:23423090 -g1,8238:32583029,13107766 -) -(1,8238:6630773,13773944:25952256,404226,101187 -h1,8238:6630773,13773944:0,0,0 -g1,8238:7579210,13773944 -k1,8238:7579210,13773944:0 -h1,8238:12953686,13773944:0,0,0 -k1,8238:32583030,13773944:19629344 -g1,8238:32583030,13773944 -) -(1,8238:6630773,14440122:25952256,404226,76021 -h1,8238:6630773,14440122:0,0,0 -g1,8238:7579210,14440122 -g1,8238:8843793,14440122 -h1,8238:9159939,14440122:0,0,0 -k1,8238:32583029,14440122:23423090 -g1,8238:32583029,14440122 -) -(1,8238:6630773,15106300:25952256,404226,82312 -h1,8238:6630773,15106300:0,0,0 -g1,8238:7579210,15106300 -k1,8238:7579210,15106300:0 -h1,8238:14218269,15106300:0,0,0 -k1,8238:32583029,15106300:18364760 -g1,8238:32583029,15106300 -) -(1,8238:6630773,15772478:25952256,404226,50331 -h1,8238:6630773,15772478:0,0,0 -g1,8238:7579210,15772478 -g1,8238:12005250,15772478 -k1,8238:12005250,15772478:0 -h1,8238:15798998,15772478:0,0,0 -k1,8238:32583030,15772478:16784032 -g1,8238:32583030,15772478 -) -] -) -g1,8239:32583029,15822809 -g1,8239:6630773,15822809 -g1,8239:6630773,15822809 -g1,8239:32583029,15822809 -g1,8239:32583029,15822809 -) -h1,8239:6630773,16019417:0,0,0 -(1,8243:6630773,17304666:25952256,513147,126483 -h1,8242:6630773,17304666:983040,0,0 -k1,8242:9000369,17304666:189869 -(1,8242:9000369,17304666:0,424981,115847 -r1,8242:9358635,17304666:358266,540828,115847 -k1,8242:9000369,17304666:-358266 -) -(1,8242:9000369,17304666:358266,424981,115847 -k1,8242:9000369,17304666:3277 -h1,8242:9355358,17304666:0,411205,112570 -) -k1,8242:9548505,17304666:189870 -k1,8242:12484988,17304666:189869 -k1,8242:15435233,17304666:189869 -k1,8242:15980963,17304666:189870 -k1,8242:18526196,17304666:189869 -k1,8242:21405663,17304666:189869 -k1,8242:22246960,17304666:189869 -k1,8242:23921220,17304666:189870 -k1,8242:25130174,17304666:189869 -k1,8242:27059369,17304666:189869 -k1,8242:27908531,17304666:189870 -k1,8242:29117485,17304666:189869 -k1,8242:32583029,17304666:0 -) -(1,8243:6630773,18146154:25952256,513147,7863 -g1,8242:8672874,18146154 -g1,8242:11630513,18146154 -g1,8242:12445780,18146154 -g1,8242:13000869,18146154 -k1,8243:32583028,18146154:16865036 -g1,8243:32583028,18146154 -) -v1,8245:6630773,19256093:0,393216,0 -(1,8250:6630773,20231076:25952256,1368199,196608 -g1,8250:6630773,20231076 -g1,8250:6630773,20231076 -g1,8250:6434165,20231076 -(1,8250:6434165,20231076:0,1368199,196608 -r1,8250:32779637,20231076:26345472,1564807,196608 -k1,8250:6434165,20231076:-26345472 -) -(1,8250:6434165,20231076:26345472,1368199,196608 -[1,8250:6630773,20231076:25952256,1171591,0 -(1,8247:6630773,19463711:25952256,404226,101187 -(1,8246:6630773,19463711:0,0,0 -g1,8246:6630773,19463711 -g1,8246:6630773,19463711 -g1,8246:6303093,19463711 -(1,8246:6303093,19463711:0,0,0 -) -g1,8246:6630773,19463711 -) -g1,8247:7263065,19463711 -g1,8247:7895357,19463711 -g1,8247:9159940,19463711 -g1,8247:9792232,19463711 -g1,8247:10740669,19463711 -g1,8247:11372961,19463711 -h1,8247:12953690,19463711:0,0,0 -k1,8247:32583030,19463711:19629340 -g1,8247:32583030,19463711 -) -(1,8248:6630773,20129889:25952256,388497,101187 -h1,8248:6630773,20129889:0,0,0 -g1,8248:7263065,20129889 -g1,8248:7895357,20129889 -g1,8248:8843794,20129889 -g1,8248:9476086,20129889 -g1,8248:10424523,20129889 -g1,8248:11056815,20129889 -g1,8248:12005252,20129889 -g1,8248:12637544,20129889 -g1,8248:14534418,20129889 -g1,8248:15166710,20129889 -g1,8248:17063584,20129889 -g1,8248:17695876,20129889 -h1,8248:19276604,20129889:0,0,0 -k1,8248:32583029,20129889:13306425 -g1,8248:32583029,20129889 -) -] -) -g1,8250:32583029,20231076 -g1,8250:6630773,20231076 -g1,8250:6630773,20231076 -g1,8250:32583029,20231076 -g1,8250:32583029,20231076 -) -h1,8250:6630773,20427684:0,0,0 -v1,8254:6630773,21981384:0,393216,0 -(1,8279:6630773,34962251:25952256,13374083,196608 -g1,8279:6630773,34962251 -g1,8279:6630773,34962251 -g1,8279:6434165,34962251 -(1,8279:6434165,34962251:0,13374083,196608 -r1,8279:32779637,34962251:26345472,13570691,196608 -k1,8279:6434165,34962251:-26345472 -) -(1,8279:6434165,34962251:26345472,13374083,196608 -[1,8279:6630773,34962251:25952256,13177475,0 -(1,8256:6630773,22189002:25952256,404226,101187 -(1,8255:6630773,22189002:0,0,0 -g1,8255:6630773,22189002 -g1,8255:6630773,22189002 -g1,8255:6303093,22189002 -(1,8255:6303093,22189002:0,0,0 -) -g1,8255:6630773,22189002 -) -k1,8256:6630773,22189002:0 -g1,8256:9159938,22189002 -g1,8256:9792230,22189002 -g1,8256:11056813,22189002 -g1,8256:11689105,22189002 -g1,8256:12637542,22189002 -g1,8256:13269834,22189002 -h1,8256:15166709,22189002:0,0,0 -k1,8256:32583029,22189002:17416320 -g1,8256:32583029,22189002 -) -(1,8278:6630773,22920716:25952256,404226,101187 -(1,8258:6630773,22920716:0,0,0 -g1,8258:6630773,22920716 -g1,8258:6630773,22920716 -g1,8258:6303093,22920716 -(1,8258:6303093,22920716:0,0,0 -) -g1,8258:6630773,22920716 -) -g1,8278:7579210,22920716 -g1,8278:8211502,22920716 -g1,8278:8843794,22920716 -g1,8278:10108377,22920716 -g1,8278:10740669,22920716 -g1,8278:11689106,22920716 -g1,8278:12321398,22920716 -h1,8278:13902126,22920716:0,0,0 -k1,8278:32583030,22920716:18680904 -g1,8278:32583030,22920716 -) -(1,8278:6630773,23586894:25952256,404226,82312 -h1,8278:6630773,23586894:0,0,0 -g1,8278:7579210,23586894 -k1,8278:7579210,23586894:0 -h1,8278:13269832,23586894:0,0,0 -k1,8278:32583028,23586894:19313196 -g1,8278:32583028,23586894 -) -(1,8278:6630773,24253072:25952256,404226,101187 -h1,8278:6630773,24253072:0,0,0 -g1,8278:7579210,24253072 -g1,8278:10108376,24253072 -g1,8278:11372959,24253072 -g1,8278:12637542,24253072 -h1,8278:13585979,24253072:0,0,0 -k1,8278:32583029,24253072:18997050 -g1,8278:32583029,24253072 -) -(1,8278:6630773,24919250:25952256,410518,82312 -h1,8278:6630773,24919250:0,0,0 -g1,8278:7579210,24919250 -k1,8278:7579210,24919250:0 -h1,8278:12637540,24919250:0,0,0 -k1,8278:32583028,24919250:19945488 -g1,8278:32583028,24919250 -) -(1,8278:6630773,25585428:25952256,388497,9436 -h1,8278:6630773,25585428:0,0,0 -g1,8278:7579210,25585428 -g1,8278:7895356,25585428 -g1,8278:8211502,25585428 -g1,8278:8527648,25585428 -g1,8278:9476085,25585428 -g1,8278:10424522,25585428 -g1,8278:11372959,25585428 -g1,8278:13269833,25585428 -g1,8278:15166707,25585428 -h1,8278:16747435,25585428:0,0,0 -k1,8278:32583029,25585428:15835594 -g1,8278:32583029,25585428 -) -(1,8278:6630773,26251606:25952256,388497,101187 -h1,8278:6630773,26251606:0,0,0 -g1,8278:7579210,26251606 -g1,8278:8211502,26251606 -g1,8278:8527648,26251606 -g1,8278:8843794,26251606 -g1,8278:9476086,26251606 -g1,8278:9792232,26251606 -g1,8278:10424524,26251606 -g1,8278:10740670,26251606 -g1,8278:11372962,26251606 -g1,8278:11689108,26251606 -g1,8278:12005254,26251606 -g1,8278:12321400,26251606 -g1,8278:12637546,26251606 -g1,8278:13269838,26251606 -g1,8278:13585984,26251606 -g1,8278:13902130,26251606 -g1,8278:14218276,26251606 -g1,8278:14534422,26251606 -g1,8278:15166714,26251606 -g1,8278:15482860,26251606 -g1,8278:15799006,26251606 -g1,8278:16115152,26251606 -g1,8278:16431298,26251606 -h1,8278:16747444,26251606:0,0,0 -k1,8278:32583029,26251606:15835585 -g1,8278:32583029,26251606 -) -(1,8278:6630773,26917784:25952256,388497,9436 -h1,8278:6630773,26917784:0,0,0 -g1,8278:7579210,26917784 -g1,8278:8527647,26917784 -g1,8278:8843793,26917784 -g1,8278:9476085,26917784 -g1,8278:9792231,26917784 -g1,8278:10424523,26917784 -g1,8278:10740669,26917784 -g1,8278:11372961,26917784 -g1,8278:11689107,26917784 -g1,8278:12005253,26917784 -g1,8278:12321399,26917784 -g1,8278:12637545,26917784 -g1,8278:13269837,26917784 -g1,8278:13585983,26917784 -g1,8278:13902129,26917784 -g1,8278:14218275,26917784 -g1,8278:14534421,26917784 -g1,8278:15166713,26917784 -g1,8278:15482859,26917784 -g1,8278:15799005,26917784 -g1,8278:16115151,26917784 -g1,8278:16431297,26917784 -h1,8278:16747443,26917784:0,0,0 -k1,8278:32583029,26917784:15835586 -g1,8278:32583029,26917784 -) -(1,8278:6630773,27583962:25952256,388497,9436 -h1,8278:6630773,27583962:0,0,0 -g1,8278:7579210,27583962 -g1,8278:8527647,27583962 -g1,8278:8843793,27583962 -g1,8278:9476085,27583962 -g1,8278:9792231,27583962 -g1,8278:10424523,27583962 -g1,8278:10740669,27583962 -g1,8278:11372961,27583962 -g1,8278:11689107,27583962 -g1,8278:12005253,27583962 -g1,8278:12321399,27583962 -g1,8278:12637545,27583962 -g1,8278:13269837,27583962 -g1,8278:13585983,27583962 -g1,8278:13902129,27583962 -g1,8278:14218275,27583962 -g1,8278:14534421,27583962 -g1,8278:15166713,27583962 -g1,8278:15482859,27583962 -g1,8278:15799005,27583962 -g1,8278:16115151,27583962 -g1,8278:16431297,27583962 -h1,8278:16747443,27583962:0,0,0 -k1,8278:32583029,27583962:15835586 -g1,8278:32583029,27583962 -) -(1,8278:6630773,28250140:25952256,388497,9436 -h1,8278:6630773,28250140:0,0,0 -g1,8278:7579210,28250140 -g1,8278:8527647,28250140 -g1,8278:8843793,28250140 -g1,8278:9476085,28250140 -g1,8278:9792231,28250140 -g1,8278:10424523,28250140 -g1,8278:10740669,28250140 -g1,8278:11372961,28250140 -g1,8278:11689107,28250140 -g1,8278:12005253,28250140 -g1,8278:12321399,28250140 -g1,8278:12637545,28250140 -g1,8278:13269837,28250140 -g1,8278:13585983,28250140 -g1,8278:13902129,28250140 -g1,8278:14218275,28250140 -g1,8278:14534421,28250140 -g1,8278:15166713,28250140 -g1,8278:15482859,28250140 -g1,8278:15799005,28250140 -g1,8278:16115151,28250140 -g1,8278:16431297,28250140 -h1,8278:16747443,28250140:0,0,0 -k1,8278:32583029,28250140:15835586 -g1,8278:32583029,28250140 -) -(1,8278:6630773,28916318:25952256,404226,82312 -h1,8278:6630773,28916318:0,0,0 -g1,8278:7579210,28916318 -k1,8278:7579210,28916318:0 -h1,8278:13902123,28916318:0,0,0 -k1,8278:32583029,28916318:18680906 -g1,8278:32583029,28916318 -) -(1,8278:6630773,29582496:25952256,404226,76021 -h1,8278:6630773,29582496:0,0,0 -g1,8278:7579210,29582496 -g1,8278:8843793,29582496 -g1,8278:10424522,29582496 -g1,8278:10740668,29582496 -g1,8278:11056814,29582496 -g1,8278:11372960,29582496 -g1,8278:12953689,29582496 -g1,8278:13269835,29582496 -g1,8278:13585981,29582496 -g1,8278:13902127,29582496 -g1,8278:15482856,29582496 -g1,8278:15799002,29582496 -g1,8278:16115148,29582496 -g1,8278:16431294,29582496 -g1,8278:18960460,29582496 -g1,8278:21489626,29582496 -h1,8278:23702646,29582496:0,0,0 -k1,8278:32583029,29582496:8880383 -g1,8278:32583029,29582496 -) -(1,8278:6630773,30248674:25952256,404226,82312 -h1,8278:6630773,30248674:0,0,0 -g1,8278:7579210,30248674 -k1,8278:7579210,30248674:0 -h1,8278:12005249,30248674:0,0,0 -k1,8278:32583029,30248674:20577780 -g1,8278:32583029,30248674 -) -(1,8278:6630773,30914852:25952256,404226,76021 -h1,8278:6630773,30914852:0,0,0 -g1,8278:7579210,30914852 -g1,8278:8843793,30914852 -g1,8278:9476085,30914852 -g1,8278:10108377,30914852 -g1,8278:10740669,30914852 -g1,8278:11372961,30914852 -g1,8278:12005253,30914852 -h1,8278:12321399,30914852:0,0,0 -k1,8278:32583029,30914852:20261630 -g1,8278:32583029,30914852 -) -(1,8278:6630773,31581030:25952256,404226,101187 -h1,8278:6630773,31581030:0,0,0 -g1,8278:7579210,31581030 -k1,8278:7579210,31581030:0 -h1,8278:13269832,31581030:0,0,0 -k1,8278:32583028,31581030:19313196 -g1,8278:32583028,31581030 -) -(1,8278:6630773,32247208:25952256,404226,76021 -h1,8278:6630773,32247208:0,0,0 -g1,8278:7579210,32247208 -g1,8278:8843793,32247208 -h1,8278:9159939,32247208:0,0,0 -k1,8278:32583029,32247208:23423090 -g1,8278:32583029,32247208 -) -(1,8278:6630773,32913386:25952256,404226,101187 -h1,8278:6630773,32913386:0,0,0 -g1,8278:7579210,32913386 -k1,8278:7579210,32913386:0 -h1,8278:12953686,32913386:0,0,0 -k1,8278:32583030,32913386:19629344 -g1,8278:32583030,32913386 -) -(1,8278:6630773,33579564:25952256,404226,76021 -h1,8278:6630773,33579564:0,0,0 -g1,8278:7579210,33579564 -g1,8278:8843793,33579564 -h1,8278:9159939,33579564:0,0,0 -k1,8278:32583029,33579564:23423090 -g1,8278:32583029,33579564 -) -(1,8278:6630773,34245742:25952256,404226,82312 -h1,8278:6630773,34245742:0,0,0 -g1,8278:7579210,34245742 -k1,8278:7579210,34245742:0 -h1,8278:14218269,34245742:0,0,0 -k1,8278:32583029,34245742:18364760 -g1,8278:32583029,34245742 -) -(1,8278:6630773,34911920:25952256,404226,50331 -h1,8278:6630773,34911920:0,0,0 -g1,8278:7579210,34911920 -g1,8278:12005250,34911920 -k1,8278:12005250,34911920:0 -h1,8278:15798998,34911920:0,0,0 -k1,8278:32583030,34911920:16784032 -g1,8278:32583030,34911920 -) -] -) -g1,8279:32583029,34962251 -g1,8279:6630773,34962251 -g1,8279:6630773,34962251 -g1,8279:32583029,34962251 -g1,8279:32583029,34962251 -) -h1,8279:6630773,35158859:0,0,0 -v1,8283:6630773,36887869:0,393216,0 -(1,8294:6630773,42963994:25952256,6469341,616038 -g1,8294:6630773,42963994 -(1,8294:6630773,42963994:25952256,6469341,616038 -(1,8294:6630773,43580032:25952256,7085379,0 -[1,8294:6630773,43580032:25952256,7085379,0 -(1,8294:6630773,43553818:25952256,7032951,0 -r1,8294:6656987,43553818:26214,7032951,0 -[1,8294:6656987,43553818:25899828,7032951,0 -(1,8294:6656987,42963994:25899828,5853303,0 -[1,8294:7246811,42963994:24720180,5853303,0 -(1,8284:7246811,38394673:24720180,1283982,196608 -(1,8283:7246811,38394673:0,1283982,196608 -r1,8294:9812056,38394673:2565245,1480590,196608 -k1,8283:7246811,38394673:-2565245 -) -(1,8283:7246811,38394673:2565245,1283982,196608 -) -k1,8283:10074658,38394673:262602 -k1,8283:11379281,38394673:262601 -k1,8283:14388497,38394673:262602 -(1,8283:14388497,38394673:0,424981,115847 -r1,8294:14746763,38394673:358266,540828,115847 -k1,8283:14388497,38394673:-358266 -) -(1,8283:14388497,38394673:358266,424981,115847 -k1,8283:14388497,38394673:3277 -h1,8283:14743486,38394673:0,411205,112570 -) -k1,8283:15009364,38394673:262601 -k1,8283:15923394,38394673:262602 -k1,8283:18408976,38394673:262601 -k1,8283:19357740,38394673:262602 -k1,8283:22633031,38394673:262601 -k1,8283:23684031,38394673:262602 -k1,8283:25252765,38394673:262601 -k1,8283:28157779,38394673:262602 -k1,8283:30600764,38394673:262602 -k1,8283:31611131,38394673:262601 -k1,8283:31966991,38394673:0 -) -(1,8284:7246811,39236161:24720180,513147,134348 -k1,8283:9995331,39236161:205068 -k1,8283:11594350,39236161:205068 -k1,8283:12608788,39236161:205068 -k1,8283:16783372,39236161:205068 -k1,8283:19870713,39236161:205068 -k1,8283:21094867,39236161:205069 -k1,8283:23142807,39236161:205068 -k1,8283:24007167,39236161:205068 -k1,8283:27527046,39236161:205068 -k1,8283:29428841,39236161:205068 -k1,8283:30806348,39236161:205068 -k1,8284:31966991,39236161:0 -) -(1,8284:7246811,40077649:24720180,505283,115847 -g1,8283:9372143,40077649 -g1,8283:10965323,40077649 -(1,8283:10965323,40077649:0,452978,115847 -r1,8294:13433860,40077649:2468537,568825,115847 -k1,8283:10965323,40077649:-2468537 -) -(1,8283:10965323,40077649:2468537,452978,115847 -k1,8283:10965323,40077649:3277 -h1,8283:13430583,40077649:0,411205,112570 -) -k1,8284:31966990,40077649:18359460 -g1,8284:31966990,40077649 -) -v1,8286:7246811,41268115:0,393216,0 -(1,8291:7246811,42243098:24720180,1368199,196608 -g1,8291:7246811,42243098 -g1,8291:7246811,42243098 -g1,8291:7050203,42243098 -(1,8291:7050203,42243098:0,1368199,196608 -r1,8294:32163599,42243098:25113396,1564807,196608 -k1,8291:7050203,42243098:-25113396 -) -(1,8291:7050203,42243098:25113396,1368199,196608 -[1,8291:7246811,42243098:24720180,1171591,0 -(1,8288:7246811,41475733:24720180,404226,101187 -(1,8287:7246811,41475733:0,0,0 -g1,8287:7246811,41475733 -g1,8287:7246811,41475733 -g1,8287:6919131,41475733 -(1,8287:6919131,41475733:0,0,0 -) -g1,8287:7246811,41475733 -) -g1,8288:7879103,41475733 -g1,8288:8511395,41475733 -g1,8288:9775978,41475733 -g1,8288:10408270,41475733 -g1,8288:11356707,41475733 -g1,8288:11988999,41475733 -h1,8288:13569728,41475733:0,0,0 -k1,8288:31966992,41475733:18397264 -g1,8288:31966992,41475733 -) -(1,8289:7246811,42141911:24720180,404226,101187 -h1,8289:7246811,42141911:0,0,0 -g1,8289:7879103,42141911 -g1,8289:8511395,42141911 -g1,8289:9775978,42141911 -g1,8289:10408270,42141911 -g1,8289:11356707,42141911 -g1,8289:11988999,42141911 -h1,8289:13569728,42141911:0,0,0 -k1,8289:31966992,42141911:18397264 -g1,8289:31966992,42141911 -) -] -) -g1,8291:31966991,42243098 -g1,8291:7246811,42243098 -g1,8291:7246811,42243098 -g1,8291:31966991,42243098 -g1,8291:31966991,42243098 -) -h1,8291:7246811,42439706:0,0,0 -] -) -] -r1,8294:32583029,43553818:26214,7032951,0 -) -] -) -) -g1,8294:32583029,42963994 -) -h1,8294:6630773,43580032:0,0,0 -(1,8297:6630773,44865281:25952256,513147,134348 -h1,8296:6630773,44865281:983040,0,0 -k1,8296:10666494,44865281:191379 -(1,8296:10666494,44865281:0,452978,115847 -r1,8296:12079895,44865281:1413401,568825,115847 -k1,8296:10666494,44865281:-1413401 -) -(1,8296:10666494,44865281:1413401,452978,115847 -k1,8296:10666494,44865281:3277 -h1,8296:12076618,44865281:0,411205,112570 -) -k1,8296:12271274,44865281:191379 -k1,8296:13566935,44865281:191379 -k1,8296:15044130,44865281:191379 -k1,8296:15983275,44865281:191379 -k1,8296:17687880,44865281:191379 -k1,8296:18565421,44865281:191379 -k1,8296:19112661,44865281:191380 -k1,8296:21994293,44865281:191379 -k1,8296:23133323,44865281:191379 -k1,8296:26305279,44865281:191379 -k1,8296:27872259,44865281:191379 -k1,8296:29755778,44865281:191379 -k1,8296:30606449,44865281:191379 -k1,8296:31563944,44865281:191379 -k1,8296:32583029,44865281:0 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] +) +) +) +] +[1,8304:3078558,4812305:0,0,0 +(1,8304:3078558,49800853:0,16384,2228224 +g1,8304:29030814,49800853 +g1,8304:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8304:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8304:37855564,49800853:1179648,16384,0 +) +) +k1,8304:3078556,49800853:-34777008 +) +] +g1,8304:6630773,4812305 +g1,8304:6630773,4812305 +g1,8304:8691224,4812305 +g1,8304:11722264,4812305 +k1,8304:31387652,4812305:19665388 +) +) +] +[1,8304:6630773,45706769:25952256,40108032,0 +(1,8304:6630773,45706769:25952256,40108032,0 +(1,8304:6630773,45706769:0,0,0 +g1,8304:6630773,45706769 +) +[1,8304:6630773,45706769:25952256,40108032,0 +v1,8244:6630773,6254097:0,393216,0 +(1,8244:6630773,15822809:25952256,9961928,196608 +g1,8244:6630773,15822809 +g1,8244:6630773,15822809 +g1,8244:6434165,15822809 +(1,8244:6434165,15822809:0,9961928,196608 +r1,8244:32779637,15822809:26345472,10158536,196608 +k1,8244:6434165,15822809:-26345472 +) +(1,8244:6434165,15822809:26345472,9961928,196608 +[1,8244:6630773,15822809:25952256,9765320,0 +(1,8243:6630773,6445986:25952256,388497,9436 +h1,8243:6630773,6445986:0,0,0 +g1,8243:7579210,6445986 +g1,8243:7895356,6445986 +g1,8243:8211502,6445986 +g1,8243:8527648,6445986 +g1,8243:9476085,6445986 +g1,8243:10424522,6445986 +g1,8243:11372959,6445986 +g1,8243:13269833,6445986 +h1,8243:14850561,6445986:0,0,0 +k1,8243:32583029,6445986:17732468 +g1,8243:32583029,6445986 +) +(1,8243:6630773,7112164:25952256,388497,101187 +h1,8243:6630773,7112164:0,0,0 +g1,8243:7579210,7112164 +g1,8243:8211502,7112164 +g1,8243:8527648,7112164 +g1,8243:8843794,7112164 +g1,8243:9476086,7112164 +g1,8243:9792232,7112164 +g1,8243:10424524,7112164 +g1,8243:10740670,7112164 +g1,8243:11372962,7112164 +g1,8243:11689108,7112164 +g1,8243:12005254,7112164 +g1,8243:12321400,7112164 +g1,8243:12637546,7112164 +g1,8243:13269838,7112164 +g1,8243:13585984,7112164 +g1,8243:13902130,7112164 +g1,8243:14218276,7112164 +g1,8243:14534422,7112164 +h1,8243:14850568,7112164:0,0,0 +k1,8243:32583028,7112164:17732460 +g1,8243:32583028,7112164 +) +(1,8243:6630773,7778342:25952256,388497,9436 +h1,8243:6630773,7778342:0,0,0 +g1,8243:7579210,7778342 +g1,8243:8527647,7778342 +g1,8243:8843793,7778342 +g1,8243:9476085,7778342 +g1,8243:9792231,7778342 +g1,8243:10424523,7778342 +g1,8243:10740669,7778342 +g1,8243:11372961,7778342 +g1,8243:11689107,7778342 +g1,8243:12005253,7778342 +g1,8243:12321399,7778342 +g1,8243:12637545,7778342 +g1,8243:13269837,7778342 +g1,8243:13585983,7778342 +g1,8243:13902129,7778342 +g1,8243:14218275,7778342 +g1,8243:14534421,7778342 +h1,8243:14850567,7778342:0,0,0 +k1,8243:32583029,7778342:17732462 +g1,8243:32583029,7778342 +) +(1,8243:6630773,8444520:25952256,388497,9436 +h1,8243:6630773,8444520:0,0,0 +g1,8243:7579210,8444520 +g1,8243:8527647,8444520 +g1,8243:8843793,8444520 +g1,8243:9476085,8444520 +g1,8243:9792231,8444520 +g1,8243:10424523,8444520 +g1,8243:10740669,8444520 +g1,8243:11372961,8444520 +g1,8243:11689107,8444520 +g1,8243:12005253,8444520 +g1,8243:12321399,8444520 +g1,8243:12637545,8444520 +g1,8243:13269837,8444520 +g1,8243:13585983,8444520 +g1,8243:13902129,8444520 +g1,8243:14218275,8444520 +g1,8243:14534421,8444520 +h1,8243:14850567,8444520:0,0,0 +k1,8243:32583029,8444520:17732462 +g1,8243:32583029,8444520 +) +(1,8243:6630773,9110698:25952256,388497,9436 +h1,8243:6630773,9110698:0,0,0 +g1,8243:7579210,9110698 +g1,8243:8527647,9110698 +g1,8243:8843793,9110698 +g1,8243:9476085,9110698 +g1,8243:9792231,9110698 +g1,8243:10424523,9110698 +g1,8243:10740669,9110698 +g1,8243:11372961,9110698 +g1,8243:11689107,9110698 +g1,8243:12005253,9110698 +g1,8243:12321399,9110698 +g1,8243:12637545,9110698 +g1,8243:13269837,9110698 +g1,8243:13585983,9110698 +g1,8243:13902129,9110698 +g1,8243:14218275,9110698 +g1,8243:14534421,9110698 +h1,8243:14850567,9110698:0,0,0 +k1,8243:32583029,9110698:17732462 +g1,8243:32583029,9110698 +) +(1,8243:6630773,9776876:25952256,404226,82312 +h1,8243:6630773,9776876:0,0,0 +g1,8243:7579210,9776876 +k1,8243:7579210,9776876:0 +h1,8243:13902123,9776876:0,0,0 +k1,8243:32583029,9776876:18680906 +g1,8243:32583029,9776876 +) +(1,8243:6630773,10443054:25952256,404226,76021 +h1,8243:6630773,10443054:0,0,0 +g1,8243:7579210,10443054 +g1,8243:8843793,10443054 +g1,8243:10424522,10443054 +g1,8243:10740668,10443054 +g1,8243:11056814,10443054 +g1,8243:11372960,10443054 +g1,8243:12953689,10443054 +g1,8243:13269835,10443054 +g1,8243:13585981,10443054 +g1,8243:13902127,10443054 +g1,8243:15482856,10443054 +g1,8243:15799002,10443054 +g1,8243:16115148,10443054 +g1,8243:16431294,10443054 +g1,8243:18960460,10443054 +h1,8243:21173480,10443054:0,0,0 +k1,8243:32583029,10443054:11409549 +g1,8243:32583029,10443054 +) +(1,8243:6630773,11109232:25952256,404226,82312 +h1,8243:6630773,11109232:0,0,0 +g1,8243:7579210,11109232 +k1,8243:7579210,11109232:0 +h1,8243:12005249,11109232:0,0,0 +k1,8243:32583029,11109232:20577780 +g1,8243:32583029,11109232 +) +(1,8243:6630773,11775410:25952256,404226,76021 +h1,8243:6630773,11775410:0,0,0 +g1,8243:7579210,11775410 +g1,8243:8843793,11775410 +g1,8243:9476085,11775410 +g1,8243:10108377,11775410 +g1,8243:10740669,11775410 +g1,8243:11372961,11775410 +h1,8243:11689107,11775410:0,0,0 +k1,8243:32583029,11775410:20893922 +g1,8243:32583029,11775410 +) +(1,8243:6630773,12441588:25952256,404226,101187 +h1,8243:6630773,12441588:0,0,0 +g1,8243:7579210,12441588 +k1,8243:7579210,12441588:0 +h1,8243:13269832,12441588:0,0,0 +k1,8243:32583028,12441588:19313196 +g1,8243:32583028,12441588 +) +(1,8243:6630773,13107766:25952256,404226,76021 +h1,8243:6630773,13107766:0,0,0 +g1,8243:7579210,13107766 +g1,8243:8843793,13107766 +h1,8243:9159939,13107766:0,0,0 +k1,8243:32583029,13107766:23423090 +g1,8243:32583029,13107766 +) +(1,8243:6630773,13773944:25952256,404226,101187 +h1,8243:6630773,13773944:0,0,0 +g1,8243:7579210,13773944 +k1,8243:7579210,13773944:0 +h1,8243:12953686,13773944:0,0,0 +k1,8243:32583030,13773944:19629344 +g1,8243:32583030,13773944 +) +(1,8243:6630773,14440122:25952256,404226,76021 +h1,8243:6630773,14440122:0,0,0 +g1,8243:7579210,14440122 +g1,8243:8843793,14440122 +h1,8243:9159939,14440122:0,0,0 +k1,8243:32583029,14440122:23423090 +g1,8243:32583029,14440122 +) +(1,8243:6630773,15106300:25952256,404226,82312 +h1,8243:6630773,15106300:0,0,0 +g1,8243:7579210,15106300 +k1,8243:7579210,15106300:0 +h1,8243:14218269,15106300:0,0,0 +k1,8243:32583029,15106300:18364760 +g1,8243:32583029,15106300 +) +(1,8243:6630773,15772478:25952256,404226,50331 +h1,8243:6630773,15772478:0,0,0 +g1,8243:7579210,15772478 +g1,8243:12005250,15772478 +k1,8243:12005250,15772478:0 +h1,8243:15798998,15772478:0,0,0 +k1,8243:32583030,15772478:16784032 +g1,8243:32583030,15772478 +) +] +) +g1,8244:32583029,15822809 +g1,8244:6630773,15822809 +g1,8244:6630773,15822809 +g1,8244:32583029,15822809 +g1,8244:32583029,15822809 +) +h1,8244:6630773,16019417:0,0,0 +(1,8248:6630773,17304666:25952256,513147,126483 +h1,8247:6630773,17304666:983040,0,0 +k1,8247:9000369,17304666:189869 +(1,8247:9000369,17304666:0,424981,115847 +r1,8247:9358635,17304666:358266,540828,115847 +k1,8247:9000369,17304666:-358266 +) +(1,8247:9000369,17304666:358266,424981,115847 +k1,8247:9000369,17304666:3277 +h1,8247:9355358,17304666:0,411205,112570 +) +k1,8247:9548505,17304666:189870 +k1,8247:12484988,17304666:189869 +k1,8247:15435233,17304666:189869 +k1,8247:15980963,17304666:189870 +k1,8247:18526196,17304666:189869 +k1,8247:21405663,17304666:189869 +k1,8247:22246960,17304666:189869 +k1,8247:23921220,17304666:189870 +k1,8247:25130174,17304666:189869 +k1,8247:27059369,17304666:189869 +k1,8247:27908531,17304666:189870 +k1,8247:29117485,17304666:189869 +k1,8247:32583029,17304666:0 +) +(1,8248:6630773,18146154:25952256,513147,7863 +g1,8247:8672874,18146154 +g1,8247:11630513,18146154 +g1,8247:12445780,18146154 +g1,8247:13000869,18146154 +k1,8248:32583028,18146154:16865036 +g1,8248:32583028,18146154 +) +v1,8250:6630773,19256093:0,393216,0 +(1,8255:6630773,20231076:25952256,1368199,196608 +g1,8255:6630773,20231076 +g1,8255:6630773,20231076 +g1,8255:6434165,20231076 +(1,8255:6434165,20231076:0,1368199,196608 +r1,8255:32779637,20231076:26345472,1564807,196608 +k1,8255:6434165,20231076:-26345472 +) +(1,8255:6434165,20231076:26345472,1368199,196608 +[1,8255:6630773,20231076:25952256,1171591,0 +(1,8252:6630773,19463711:25952256,404226,101187 +(1,8251:6630773,19463711:0,0,0 +g1,8251:6630773,19463711 +g1,8251:6630773,19463711 +g1,8251:6303093,19463711 +(1,8251:6303093,19463711:0,0,0 +) +g1,8251:6630773,19463711 +) +g1,8252:7263065,19463711 +g1,8252:7895357,19463711 +g1,8252:9159940,19463711 +g1,8252:9792232,19463711 +g1,8252:10740669,19463711 +g1,8252:11372961,19463711 +h1,8252:12953690,19463711:0,0,0 +k1,8252:32583030,19463711:19629340 +g1,8252:32583030,19463711 +) +(1,8253:6630773,20129889:25952256,388497,101187 +h1,8253:6630773,20129889:0,0,0 +g1,8253:7263065,20129889 +g1,8253:7895357,20129889 +g1,8253:8843794,20129889 +g1,8253:9476086,20129889 +g1,8253:10424523,20129889 +g1,8253:11056815,20129889 +g1,8253:12005252,20129889 +g1,8253:12637544,20129889 +g1,8253:14534418,20129889 +g1,8253:15166710,20129889 +g1,8253:17063584,20129889 +g1,8253:17695876,20129889 +h1,8253:19276604,20129889:0,0,0 +k1,8253:32583029,20129889:13306425 +g1,8253:32583029,20129889 +) +] +) +g1,8255:32583029,20231076 +g1,8255:6630773,20231076 +g1,8255:6630773,20231076 +g1,8255:32583029,20231076 +g1,8255:32583029,20231076 +) +h1,8255:6630773,20427684:0,0,0 +v1,8259:6630773,21981384:0,393216,0 +(1,8284:6630773,34962251:25952256,13374083,196608 +g1,8284:6630773,34962251 +g1,8284:6630773,34962251 +g1,8284:6434165,34962251 +(1,8284:6434165,34962251:0,13374083,196608 +r1,8284:32779637,34962251:26345472,13570691,196608 +k1,8284:6434165,34962251:-26345472 +) +(1,8284:6434165,34962251:26345472,13374083,196608 +[1,8284:6630773,34962251:25952256,13177475,0 +(1,8261:6630773,22189002:25952256,404226,101187 +(1,8260:6630773,22189002:0,0,0 +g1,8260:6630773,22189002 +g1,8260:6630773,22189002 +g1,8260:6303093,22189002 +(1,8260:6303093,22189002:0,0,0 +) +g1,8260:6630773,22189002 +) +k1,8261:6630773,22189002:0 +g1,8261:9159938,22189002 +g1,8261:9792230,22189002 +g1,8261:11056813,22189002 +g1,8261:11689105,22189002 +g1,8261:12637542,22189002 +g1,8261:13269834,22189002 +h1,8261:15166709,22189002:0,0,0 +k1,8261:32583029,22189002:17416320 +g1,8261:32583029,22189002 +) +(1,8283:6630773,22920716:25952256,404226,101187 +(1,8263:6630773,22920716:0,0,0 +g1,8263:6630773,22920716 +g1,8263:6630773,22920716 +g1,8263:6303093,22920716 +(1,8263:6303093,22920716:0,0,0 +) +g1,8263:6630773,22920716 +) +g1,8283:7579210,22920716 +g1,8283:8211502,22920716 +g1,8283:8843794,22920716 +g1,8283:10108377,22920716 +g1,8283:10740669,22920716 +g1,8283:11689106,22920716 +g1,8283:12321398,22920716 +h1,8283:13902126,22920716:0,0,0 +k1,8283:32583030,22920716:18680904 +g1,8283:32583030,22920716 +) +(1,8283:6630773,23586894:25952256,404226,82312 +h1,8283:6630773,23586894:0,0,0 +g1,8283:7579210,23586894 +k1,8283:7579210,23586894:0 +h1,8283:13269832,23586894:0,0,0 +k1,8283:32583028,23586894:19313196 +g1,8283:32583028,23586894 +) +(1,8283:6630773,24253072:25952256,404226,101187 +h1,8283:6630773,24253072:0,0,0 +g1,8283:7579210,24253072 +g1,8283:10108376,24253072 +g1,8283:11372959,24253072 +g1,8283:12637542,24253072 +h1,8283:13585979,24253072:0,0,0 +k1,8283:32583029,24253072:18997050 +g1,8283:32583029,24253072 +) +(1,8283:6630773,24919250:25952256,410518,82312 +h1,8283:6630773,24919250:0,0,0 +g1,8283:7579210,24919250 +k1,8283:7579210,24919250:0 +h1,8283:12637540,24919250:0,0,0 +k1,8283:32583028,24919250:19945488 +g1,8283:32583028,24919250 +) +(1,8283:6630773,25585428:25952256,388497,9436 +h1,8283:6630773,25585428:0,0,0 +g1,8283:7579210,25585428 +g1,8283:7895356,25585428 +g1,8283:8211502,25585428 +g1,8283:8527648,25585428 +g1,8283:9476085,25585428 +g1,8283:10424522,25585428 +g1,8283:11372959,25585428 +g1,8283:13269833,25585428 +g1,8283:15166707,25585428 +h1,8283:16747435,25585428:0,0,0 +k1,8283:32583029,25585428:15835594 +g1,8283:32583029,25585428 +) +(1,8283:6630773,26251606:25952256,388497,101187 +h1,8283:6630773,26251606:0,0,0 +g1,8283:7579210,26251606 +g1,8283:8211502,26251606 +g1,8283:8527648,26251606 +g1,8283:8843794,26251606 +g1,8283:9476086,26251606 +g1,8283:9792232,26251606 +g1,8283:10424524,26251606 +g1,8283:10740670,26251606 +g1,8283:11372962,26251606 +g1,8283:11689108,26251606 +g1,8283:12005254,26251606 +g1,8283:12321400,26251606 +g1,8283:12637546,26251606 +g1,8283:13269838,26251606 +g1,8283:13585984,26251606 +g1,8283:13902130,26251606 +g1,8283:14218276,26251606 +g1,8283:14534422,26251606 +g1,8283:15166714,26251606 +g1,8283:15482860,26251606 +g1,8283:15799006,26251606 +g1,8283:16115152,26251606 +g1,8283:16431298,26251606 +h1,8283:16747444,26251606:0,0,0 +k1,8283:32583029,26251606:15835585 +g1,8283:32583029,26251606 +) +(1,8283:6630773,26917784:25952256,388497,9436 +h1,8283:6630773,26917784:0,0,0 +g1,8283:7579210,26917784 +g1,8283:8527647,26917784 +g1,8283:8843793,26917784 +g1,8283:9476085,26917784 +g1,8283:9792231,26917784 +g1,8283:10424523,26917784 +g1,8283:10740669,26917784 +g1,8283:11372961,26917784 +g1,8283:11689107,26917784 +g1,8283:12005253,26917784 +g1,8283:12321399,26917784 +g1,8283:12637545,26917784 +g1,8283:13269837,26917784 +g1,8283:13585983,26917784 +g1,8283:13902129,26917784 +g1,8283:14218275,26917784 +g1,8283:14534421,26917784 +g1,8283:15166713,26917784 +g1,8283:15482859,26917784 +g1,8283:15799005,26917784 +g1,8283:16115151,26917784 +g1,8283:16431297,26917784 +h1,8283:16747443,26917784:0,0,0 +k1,8283:32583029,26917784:15835586 +g1,8283:32583029,26917784 +) +(1,8283:6630773,27583962:25952256,388497,9436 +h1,8283:6630773,27583962:0,0,0 +g1,8283:7579210,27583962 +g1,8283:8527647,27583962 +g1,8283:8843793,27583962 +g1,8283:9476085,27583962 +g1,8283:9792231,27583962 +g1,8283:10424523,27583962 +g1,8283:10740669,27583962 +g1,8283:11372961,27583962 +g1,8283:11689107,27583962 +g1,8283:12005253,27583962 +g1,8283:12321399,27583962 +g1,8283:12637545,27583962 +g1,8283:13269837,27583962 +g1,8283:13585983,27583962 +g1,8283:13902129,27583962 +g1,8283:14218275,27583962 +g1,8283:14534421,27583962 +g1,8283:15166713,27583962 +g1,8283:15482859,27583962 +g1,8283:15799005,27583962 +g1,8283:16115151,27583962 +g1,8283:16431297,27583962 +h1,8283:16747443,27583962:0,0,0 +k1,8283:32583029,27583962:15835586 +g1,8283:32583029,27583962 +) +(1,8283:6630773,28250140:25952256,388497,9436 +h1,8283:6630773,28250140:0,0,0 +g1,8283:7579210,28250140 +g1,8283:8527647,28250140 +g1,8283:8843793,28250140 +g1,8283:9476085,28250140 +g1,8283:9792231,28250140 +g1,8283:10424523,28250140 +g1,8283:10740669,28250140 +g1,8283:11372961,28250140 +g1,8283:11689107,28250140 +g1,8283:12005253,28250140 +g1,8283:12321399,28250140 +g1,8283:12637545,28250140 +g1,8283:13269837,28250140 +g1,8283:13585983,28250140 +g1,8283:13902129,28250140 +g1,8283:14218275,28250140 +g1,8283:14534421,28250140 +g1,8283:15166713,28250140 +g1,8283:15482859,28250140 +g1,8283:15799005,28250140 +g1,8283:16115151,28250140 +g1,8283:16431297,28250140 +h1,8283:16747443,28250140:0,0,0 +k1,8283:32583029,28250140:15835586 +g1,8283:32583029,28250140 +) +(1,8283:6630773,28916318:25952256,404226,82312 +h1,8283:6630773,28916318:0,0,0 +g1,8283:7579210,28916318 +k1,8283:7579210,28916318:0 +h1,8283:13902123,28916318:0,0,0 +k1,8283:32583029,28916318:18680906 +g1,8283:32583029,28916318 +) +(1,8283:6630773,29582496:25952256,404226,76021 +h1,8283:6630773,29582496:0,0,0 +g1,8283:7579210,29582496 +g1,8283:8843793,29582496 +g1,8283:10424522,29582496 +g1,8283:10740668,29582496 +g1,8283:11056814,29582496 +g1,8283:11372960,29582496 +g1,8283:12953689,29582496 +g1,8283:13269835,29582496 +g1,8283:13585981,29582496 +g1,8283:13902127,29582496 +g1,8283:15482856,29582496 +g1,8283:15799002,29582496 +g1,8283:16115148,29582496 +g1,8283:16431294,29582496 +g1,8283:18960460,29582496 +g1,8283:21489626,29582496 +h1,8283:23702646,29582496:0,0,0 +k1,8283:32583029,29582496:8880383 +g1,8283:32583029,29582496 +) +(1,8283:6630773,30248674:25952256,404226,82312 +h1,8283:6630773,30248674:0,0,0 +g1,8283:7579210,30248674 +k1,8283:7579210,30248674:0 +h1,8283:12005249,30248674:0,0,0 +k1,8283:32583029,30248674:20577780 +g1,8283:32583029,30248674 +) +(1,8283:6630773,30914852:25952256,404226,76021 +h1,8283:6630773,30914852:0,0,0 +g1,8283:7579210,30914852 +g1,8283:8843793,30914852 +g1,8283:9476085,30914852 +g1,8283:10108377,30914852 +g1,8283:10740669,30914852 +g1,8283:11372961,30914852 +g1,8283:12005253,30914852 +h1,8283:12321399,30914852:0,0,0 +k1,8283:32583029,30914852:20261630 +g1,8283:32583029,30914852 +) +(1,8283:6630773,31581030:25952256,404226,101187 +h1,8283:6630773,31581030:0,0,0 +g1,8283:7579210,31581030 +k1,8283:7579210,31581030:0 +h1,8283:13269832,31581030:0,0,0 +k1,8283:32583028,31581030:19313196 +g1,8283:32583028,31581030 +) +(1,8283:6630773,32247208:25952256,404226,76021 +h1,8283:6630773,32247208:0,0,0 +g1,8283:7579210,32247208 +g1,8283:8843793,32247208 +h1,8283:9159939,32247208:0,0,0 +k1,8283:32583029,32247208:23423090 +g1,8283:32583029,32247208 +) +(1,8283:6630773,32913386:25952256,404226,101187 +h1,8283:6630773,32913386:0,0,0 +g1,8283:7579210,32913386 +k1,8283:7579210,32913386:0 +h1,8283:12953686,32913386:0,0,0 +k1,8283:32583030,32913386:19629344 +g1,8283:32583030,32913386 +) +(1,8283:6630773,33579564:25952256,404226,76021 +h1,8283:6630773,33579564:0,0,0 +g1,8283:7579210,33579564 +g1,8283:8843793,33579564 +h1,8283:9159939,33579564:0,0,0 +k1,8283:32583029,33579564:23423090 +g1,8283:32583029,33579564 +) +(1,8283:6630773,34245742:25952256,404226,82312 +h1,8283:6630773,34245742:0,0,0 +g1,8283:7579210,34245742 +k1,8283:7579210,34245742:0 +h1,8283:14218269,34245742:0,0,0 +k1,8283:32583029,34245742:18364760 +g1,8283:32583029,34245742 +) +(1,8283:6630773,34911920:25952256,404226,50331 +h1,8283:6630773,34911920:0,0,0 +g1,8283:7579210,34911920 +g1,8283:12005250,34911920 +k1,8283:12005250,34911920:0 +h1,8283:15798998,34911920:0,0,0 +k1,8283:32583030,34911920:16784032 +g1,8283:32583030,34911920 +) +] +) +g1,8284:32583029,34962251 +g1,8284:6630773,34962251 +g1,8284:6630773,34962251 +g1,8284:32583029,34962251 +g1,8284:32583029,34962251 +) +h1,8284:6630773,35158859:0,0,0 +v1,8288:6630773,36887869:0,393216,0 +(1,8299:6630773,42963994:25952256,6469341,616038 +g1,8299:6630773,42963994 +(1,8299:6630773,42963994:25952256,6469341,616038 +(1,8299:6630773,43580032:25952256,7085379,0 +[1,8299:6630773,43580032:25952256,7085379,0 +(1,8299:6630773,43553818:25952256,7032951,0 +r1,8299:6656987,43553818:26214,7032951,0 +[1,8299:6656987,43553818:25899828,7032951,0 +(1,8299:6656987,42963994:25899828,5853303,0 +[1,8299:7246811,42963994:24720180,5853303,0 +(1,8289:7246811,38394673:24720180,1283982,196608 +(1,8288:7246811,38394673:0,1283982,196608 +r1,8299:9812056,38394673:2565245,1480590,196608 +k1,8288:7246811,38394673:-2565245 +) +(1,8288:7246811,38394673:2565245,1283982,196608 +) +k1,8288:10074658,38394673:262602 +k1,8288:11379281,38394673:262601 +k1,8288:14388497,38394673:262602 +(1,8288:14388497,38394673:0,424981,115847 +r1,8299:14746763,38394673:358266,540828,115847 +k1,8288:14388497,38394673:-358266 +) +(1,8288:14388497,38394673:358266,424981,115847 +k1,8288:14388497,38394673:3277 +h1,8288:14743486,38394673:0,411205,112570 +) +k1,8288:15009364,38394673:262601 +k1,8288:15923394,38394673:262602 +k1,8288:18408976,38394673:262601 +k1,8288:19357740,38394673:262602 +k1,8288:22633031,38394673:262601 +k1,8288:23684031,38394673:262602 +k1,8288:25252765,38394673:262601 +k1,8288:28157779,38394673:262602 +k1,8288:30600764,38394673:262602 +k1,8288:31611131,38394673:262601 +k1,8288:31966991,38394673:0 +) +(1,8289:7246811,39236161:24720180,513147,134348 +k1,8288:9995331,39236161:205068 +k1,8288:11594350,39236161:205068 +k1,8288:12608788,39236161:205068 +k1,8288:16783372,39236161:205068 +k1,8288:19870713,39236161:205068 +k1,8288:21094867,39236161:205069 +k1,8288:23142807,39236161:205068 +k1,8288:24007167,39236161:205068 +k1,8288:27527046,39236161:205068 +k1,8288:29428841,39236161:205068 +k1,8288:30806348,39236161:205068 +k1,8289:31966991,39236161:0 +) +(1,8289:7246811,40077649:24720180,505283,115847 +g1,8288:9372143,40077649 +g1,8288:10965323,40077649 +(1,8288:10965323,40077649:0,452978,115847 +r1,8299:13433860,40077649:2468537,568825,115847 +k1,8288:10965323,40077649:-2468537 +) +(1,8288:10965323,40077649:2468537,452978,115847 +k1,8288:10965323,40077649:3277 +h1,8288:13430583,40077649:0,411205,112570 +) +k1,8289:31966990,40077649:18359460 +g1,8289:31966990,40077649 +) +v1,8291:7246811,41268115:0,393216,0 +(1,8296:7246811,42243098:24720180,1368199,196608 +g1,8296:7246811,42243098 +g1,8296:7246811,42243098 +g1,8296:7050203,42243098 +(1,8296:7050203,42243098:0,1368199,196608 +r1,8299:32163599,42243098:25113396,1564807,196608 +k1,8296:7050203,42243098:-25113396 +) +(1,8296:7050203,42243098:25113396,1368199,196608 +[1,8296:7246811,42243098:24720180,1171591,0 +(1,8293:7246811,41475733:24720180,404226,101187 +(1,8292:7246811,41475733:0,0,0 +g1,8292:7246811,41475733 +g1,8292:7246811,41475733 +g1,8292:6919131,41475733 +(1,8292:6919131,41475733:0,0,0 +) +g1,8292:7246811,41475733 +) +g1,8293:7879103,41475733 +g1,8293:8511395,41475733 +g1,8293:9775978,41475733 +g1,8293:10408270,41475733 +g1,8293:11356707,41475733 +g1,8293:11988999,41475733 +h1,8293:13569728,41475733:0,0,0 +k1,8293:31966992,41475733:18397264 +g1,8293:31966992,41475733 +) +(1,8294:7246811,42141911:24720180,404226,101187 +h1,8294:7246811,42141911:0,0,0 +g1,8294:7879103,42141911 +g1,8294:8511395,42141911 +g1,8294:9775978,42141911 +g1,8294:10408270,42141911 +g1,8294:11356707,42141911 +g1,8294:11988999,42141911 +h1,8294:13569728,42141911:0,0,0 +k1,8294:31966992,42141911:18397264 +g1,8294:31966992,42141911 +) +] +) +g1,8296:31966991,42243098 +g1,8296:7246811,42243098 +g1,8296:7246811,42243098 +g1,8296:31966991,42243098 +g1,8296:31966991,42243098 +) +h1,8296:7246811,42439706:0,0,0 +] +) +] +r1,8299:32583029,43553818:26214,7032951,0 +) +] +) +) +g1,8299:32583029,42963994 +) +h1,8299:6630773,43580032:0,0,0 +(1,8302:6630773,44865281:25952256,513147,134348 +h1,8301:6630773,44865281:983040,0,0 +k1,8301:10666494,44865281:191379 +(1,8301:10666494,44865281:0,452978,115847 +r1,8301:12079895,44865281:1413401,568825,115847 +k1,8301:10666494,44865281:-1413401 +) +(1,8301:10666494,44865281:1413401,452978,115847 +k1,8301:10666494,44865281:3277 +h1,8301:12076618,44865281:0,411205,112570 +) +k1,8301:12271274,44865281:191379 +k1,8301:13566935,44865281:191379 +k1,8301:15044130,44865281:191379 +k1,8301:15983275,44865281:191379 +k1,8301:17687880,44865281:191379 +k1,8301:18565421,44865281:191379 +k1,8301:19112661,44865281:191380 +k1,8301:21994293,44865281:191379 +k1,8301:23133323,44865281:191379 +k1,8301:26305279,44865281:191379 +k1,8301:27872259,44865281:191379 +k1,8301:29755778,44865281:191379 +k1,8301:30606449,44865281:191379 +k1,8301:31563944,44865281:191379 +k1,8301:32583029,44865281:0 ) -(1,8297:6630773,45706769:25952256,513147,126483 -g1,8296:9459962,45706769 -g1,8296:13124735,45706769 -g1,8296:15166836,45706769 -g1,8296:15982103,45706769 -g1,8296:16537192,45706769 -k1,8297:32583029,45706769:13328714 -g1,8297:32583029,45706769 +(1,8302:6630773,45706769:25952256,513147,126483 +g1,8301:9459962,45706769 +g1,8301:13124735,45706769 +g1,8301:15166836,45706769 +g1,8301:15982103,45706769 +g1,8301:16537192,45706769 +k1,8302:32583029,45706769:13328714 +g1,8302:32583029,45706769 ) ] -(1,8299:32583029,45706769:0,0,0 -g1,8299:32583029,45706769 +(1,8304:32583029,45706769:0,0,0 +g1,8304:32583029,45706769 ) ) ] -(1,8299:6630773,47279633:25952256,0,0 -h1,8299:6630773,47279633:25952256,0,0 +(1,8304:6630773,47279633:25952256,0,0 +h1,8304:6630773,47279633:25952256,0,0 ) ] -h1,8299:4262630,4025873:0,0,0 +h1,8304:4262630,4025873:0,0,0 ] !25119 }154 -Input:1133:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1134:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1129:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1130:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {155 -[1,8355:4262630,47279633:28320399,43253760,0 -(1,8355:4262630,4025873:0,0,0 -[1,8355:-473657,4025873:25952256,0,0 -(1,8355:-473657,-710414:25952256,0,0 -h1,8355:-473657,-710414:0,0,0 -(1,8355:-473657,-710414:0,0,0 -(1,8355:-473657,-710414:0,0,0 -g1,8355:-473657,-710414 -(1,8355:-473657,-710414:65781,0,65781 -g1,8355:-407876,-710414 -[1,8355:-407876,-644633:0,0,0 +[1,8360:4262630,47279633:28320399,43253760,0 +(1,8360:4262630,4025873:0,0,0 +[1,8360:-473657,4025873:25952256,0,0 +(1,8360:-473657,-710414:25952256,0,0 +h1,8360:-473657,-710414:0,0,0 +(1,8360:-473657,-710414:0,0,0 +(1,8360:-473657,-710414:0,0,0 +g1,8360:-473657,-710414 +(1,8360:-473657,-710414:65781,0,65781 +g1,8360:-407876,-710414 +[1,8360:-407876,-644633:0,0,0 ] ) -k1,8355:-473657,-710414:-65781 +k1,8360:-473657,-710414:-65781 ) ) -k1,8355:25478599,-710414:25952256 -g1,8355:25478599,-710414 +k1,8360:25478599,-710414:25952256 +g1,8360:25478599,-710414 ) ] ) -[1,8355:6630773,47279633:25952256,43253760,0 -[1,8355:6630773,4812305:25952256,786432,0 -(1,8355:6630773,4812305:25952256,505283,134348 -(1,8355:6630773,4812305:25952256,505283,134348 -g1,8355:3078558,4812305 -[1,8355:3078558,4812305:0,0,0 -(1,8355:3078558,2439708:0,1703936,0 -k1,8355:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8355:2537886,2439708:1179648,16384,0 +[1,8360:6630773,47279633:25952256,43253760,0 +[1,8360:6630773,4812305:25952256,786432,0 +(1,8360:6630773,4812305:25952256,505283,134348 +(1,8360:6630773,4812305:25952256,505283,134348 +g1,8360:3078558,4812305 +[1,8360:3078558,4812305:0,0,0 +(1,8360:3078558,2439708:0,1703936,0 +k1,8360:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8360:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8355:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8360:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8355:3078558,4812305:0,0,0 -(1,8355:3078558,2439708:0,1703936,0 -g1,8355:29030814,2439708 -g1,8355:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8355:36151628,1915420:16384,1179648,0 +[1,8360:3078558,4812305:0,0,0 +(1,8360:3078558,2439708:0,1703936,0 +g1,8360:29030814,2439708 +g1,8360:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8360:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8355:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8360:37855564,2439708:1179648,16384,0 ) ) -k1,8355:3078556,2439708:-34777008 +k1,8360:3078556,2439708:-34777008 ) ] -[1,8355:3078558,4812305:0,0,0 -(1,8355:3078558,49800853:0,16384,2228224 -k1,8355:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8355:2537886,49800853:1179648,16384,0 +[1,8360:3078558,4812305:0,0,0 +(1,8360:3078558,49800853:0,16384,2228224 +k1,8360:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8360:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8355:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8360:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8355:3078558,4812305:0,0,0 -(1,8355:3078558,49800853:0,16384,2228224 -g1,8355:29030814,49800853 -g1,8355:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8355:36151628,51504789:16384,1179648,0 +[1,8360:3078558,4812305:0,0,0 +(1,8360:3078558,49800853:0,16384,2228224 +g1,8360:29030814,49800853 +g1,8360:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8360:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8355:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8360:37855564,49800853:1179648,16384,0 ) ) -k1,8355:3078556,49800853:-34777008 +k1,8360:3078556,49800853:-34777008 ) ] -g1,8355:6630773,4812305 -k1,8355:24573876,4812305:16747726 -g1,8355:25960617,4812305 -g1,8355:26609423,4812305 -g1,8355:29923578,4812305 -) -) -] -[1,8355:6630773,45706769:25952256,40108032,0 -(1,8355:6630773,45706769:25952256,40108032,0 -(1,8355:6630773,45706769:0,0,0 -g1,8355:6630773,45706769 +g1,8360:6630773,4812305 +k1,8360:24502442,4812305:16676292 +g1,8360:25889183,4812305 +g1,8360:26537989,4812305 +g1,8360:29852144,4812305 +) +) +] +[1,8360:6630773,45706769:25952256,40108032,0 +(1,8360:6630773,45706769:25952256,40108032,0 +(1,8360:6630773,45706769:0,0,0 +g1,8360:6630773,45706769 ) -[1,8355:6630773,45706769:25952256,40108032,0 -v1,8299:6630773,6254097:0,393216,0 -(1,8303:6630773,6562902:25952256,702021,196608 -g1,8303:6630773,6562902 -g1,8303:6630773,6562902 -g1,8303:6434165,6562902 -(1,8303:6434165,6562902:0,702021,196608 -r1,8303:32779637,6562902:26345472,898629,196608 -k1,8303:6434165,6562902:-26345472 -) -(1,8303:6434165,6562902:26345472,702021,196608 -[1,8303:6630773,6562902:25952256,505413,0 -(1,8301:6630773,6461715:25952256,404226,101187 -(1,8300:6630773,6461715:0,0,0 -g1,8300:6630773,6461715 -g1,8300:6630773,6461715 -g1,8300:6303093,6461715 -(1,8300:6303093,6461715:0,0,0 -) -g1,8300:6630773,6461715 -) -g1,8301:7263065,6461715 -g1,8301:7895357,6461715 -g1,8301:8843794,6461715 -g1,8301:9476086,6461715 -g1,8301:10424523,6461715 -g1,8301:11056815,6461715 -g1,8301:12005252,6461715 -g1,8301:13585981,6461715 -h1,8301:14218272,6461715:0,0,0 -k1,8301:32583028,6461715:18364756 -g1,8301:32583028,6461715 -) -] -) -g1,8303:32583029,6562902 -g1,8303:6630773,6562902 -g1,8303:6630773,6562902 -g1,8303:32583029,6562902 -g1,8303:32583029,6562902 -) -h1,8303:6630773,6759510:0,0,0 -v1,8307:6630773,8474264:0,393216,0 -(1,8331:6630773,20788953:25952256,12707905,196608 -g1,8331:6630773,20788953 -g1,8331:6630773,20788953 -g1,8331:6434165,20788953 -(1,8331:6434165,20788953:0,12707905,196608 -r1,8331:32779637,20788953:26345472,12904513,196608 -k1,8331:6434165,20788953:-26345472 -) -(1,8331:6434165,20788953:26345472,12707905,196608 -[1,8331:6630773,20788953:25952256,12511297,0 -(1,8309:6630773,8681882:25952256,404226,101187 -(1,8308:6630773,8681882:0,0,0 -g1,8308:6630773,8681882 -g1,8308:6630773,8681882 -g1,8308:6303093,8681882 -(1,8308:6303093,8681882:0,0,0 -) -g1,8308:6630773,8681882 -) -k1,8309:6630773,8681882:0 -g1,8309:9159938,8681882 -g1,8309:9792230,8681882 -g1,8309:10740667,8681882 -g1,8309:11372959,8681882 -g1,8309:12321396,8681882 -g1,8309:12953688,8681882 -g1,8309:13902125,8681882 -g1,8309:15482854,8681882 -h1,8309:16431291,8681882:0,0,0 -k1,8309:32583029,8681882:16151738 -g1,8309:32583029,8681882 -) -(1,8330:6630773,9413596:25952256,404226,101187 -(1,8311:6630773,9413596:0,0,0 -g1,8311:6630773,9413596 -g1,8311:6630773,9413596 -g1,8311:6303093,9413596 -(1,8311:6303093,9413596:0,0,0 -) -g1,8311:6630773,9413596 -) -g1,8330:7579210,9413596 -g1,8330:8211502,9413596 -g1,8330:8843794,9413596 -g1,8330:9792231,9413596 -g1,8330:10424523,9413596 -g1,8330:11372960,9413596 -g1,8330:12005252,9413596 -g1,8330:12953689,9413596 -g1,8330:14534418,9413596 -h1,8330:15166709,9413596:0,0,0 -k1,8330:32583029,9413596:17416320 -g1,8330:32583029,9413596 -) -(1,8330:6630773,10079774:25952256,404226,82312 -h1,8330:6630773,10079774:0,0,0 -g1,8330:7579210,10079774 -k1,8330:7579210,10079774:0 -h1,8330:13269832,10079774:0,0,0 -k1,8330:32583028,10079774:19313196 -g1,8330:32583028,10079774 -) -(1,8330:6630773,10745952:25952256,404226,101187 -h1,8330:6630773,10745952:0,0,0 -g1,8330:7579210,10745952 -g1,8330:10108376,10745952 -g1,8330:11372959,10745952 -h1,8330:12321396,10745952:0,0,0 -k1,8330:32583028,10745952:20261632 -g1,8330:32583028,10745952 -) -(1,8330:6630773,11412130:25952256,410518,82312 -h1,8330:6630773,11412130:0,0,0 -g1,8330:7579210,11412130 -k1,8330:7579210,11412130:0 -h1,8330:12637540,11412130:0,0,0 -k1,8330:32583028,11412130:19945488 -g1,8330:32583028,11412130 -) -(1,8330:6630773,12078308:25952256,388497,0 -h1,8330:6630773,12078308:0,0,0 -g1,8330:7579210,12078308 -g1,8330:7895356,12078308 -g1,8330:8211502,12078308 -g1,8330:8527648,12078308 -g1,8330:9476085,12078308 -g1,8330:10424522,12078308 -h1,8330:12005250,12078308:0,0,0 -k1,8330:32583030,12078308:20577780 -g1,8330:32583030,12078308 -) -(1,8330:6630773,12744486:25952256,388497,101187 -h1,8330:6630773,12744486:0,0,0 -g1,8330:7579210,12744486 -g1,8330:8211502,12744486 -g1,8330:8527648,12744486 -g1,8330:8843794,12744486 -g1,8330:9476086,12744486 -g1,8330:9792232,12744486 -g1,8330:10424524,12744486 -g1,8330:10740670,12744486 -g1,8330:11056816,12744486 -g1,8330:11372962,12744486 -g1,8330:11689108,12744486 -h1,8330:12005254,12744486:0,0,0 -k1,8330:32583030,12744486:20577776 -g1,8330:32583030,12744486 -) -(1,8330:6630773,13410664:25952256,388497,9436 -h1,8330:6630773,13410664:0,0,0 -g1,8330:7579210,13410664 -g1,8330:8527647,13410664 -g1,8330:8843793,13410664 -g1,8330:9476085,13410664 -g1,8330:9792231,13410664 -g1,8330:10424523,13410664 -g1,8330:10740669,13410664 -g1,8330:11056815,13410664 -g1,8330:11372961,13410664 -g1,8330:11689107,13410664 -h1,8330:12005253,13410664:0,0,0 -k1,8330:32583029,13410664:20577776 -g1,8330:32583029,13410664 -) -(1,8330:6630773,14076842:25952256,388497,9436 -h1,8330:6630773,14076842:0,0,0 -g1,8330:7579210,14076842 -g1,8330:8527647,14076842 -g1,8330:8843793,14076842 -g1,8330:9476085,14076842 -g1,8330:9792231,14076842 -g1,8330:10424523,14076842 -g1,8330:10740669,14076842 -g1,8330:11056815,14076842 -g1,8330:11372961,14076842 -g1,8330:11689107,14076842 -h1,8330:12005253,14076842:0,0,0 -k1,8330:32583029,14076842:20577776 -g1,8330:32583029,14076842 -) -(1,8330:6630773,14743020:25952256,404226,82312 -h1,8330:6630773,14743020:0,0,0 -g1,8330:7579210,14743020 -k1,8330:7579210,14743020:0 -h1,8330:13902123,14743020:0,0,0 -k1,8330:32583029,14743020:18680906 -g1,8330:32583029,14743020 -) -(1,8330:6630773,15409198:25952256,404226,76021 -h1,8330:6630773,15409198:0,0,0 -g1,8330:7579210,15409198 -g1,8330:8843793,15409198 -g1,8330:10424522,15409198 -g1,8330:10740668,15409198 -g1,8330:11056814,15409198 -g1,8330:11372960,15409198 -g1,8330:12953689,15409198 -g1,8330:13269835,15409198 -g1,8330:13585981,15409198 -g1,8330:13902127,15409198 -h1,8330:16115147,15409198:0,0,0 -k1,8330:32583029,15409198:16467882 -g1,8330:32583029,15409198 -) -(1,8330:6630773,16075376:25952256,404226,82312 -h1,8330:6630773,16075376:0,0,0 -g1,8330:7579210,16075376 -k1,8330:7579210,16075376:0 -h1,8330:12005249,16075376:0,0,0 -k1,8330:32583029,16075376:20577780 -g1,8330:32583029,16075376 -) -(1,8330:6630773,16741554:25952256,404226,76021 -h1,8330:6630773,16741554:0,0,0 -g1,8330:7579210,16741554 -g1,8330:8843793,16741554 -g1,8330:9476085,16741554 -g1,8330:10108377,16741554 -h1,8330:10424523,16741554:0,0,0 -k1,8330:32583029,16741554:22158506 -g1,8330:32583029,16741554 -) -(1,8330:6630773,17407732:25952256,404226,101187 -h1,8330:6630773,17407732:0,0,0 -g1,8330:7579210,17407732 -k1,8330:7579210,17407732:0 -h1,8330:13269832,17407732:0,0,0 -k1,8330:32583028,17407732:19313196 -g1,8330:32583028,17407732 -) -(1,8330:6630773,18073910:25952256,404226,76021 -h1,8330:6630773,18073910:0,0,0 -g1,8330:7579210,18073910 -g1,8330:8843793,18073910 -h1,8330:9159939,18073910:0,0,0 -k1,8330:32583029,18073910:23423090 -g1,8330:32583029,18073910 -) -(1,8330:6630773,18740088:25952256,404226,101187 -h1,8330:6630773,18740088:0,0,0 -g1,8330:7579210,18740088 -k1,8330:7579210,18740088:0 -h1,8330:12953686,18740088:0,0,0 -k1,8330:32583030,18740088:19629344 -g1,8330:32583030,18740088 -) -(1,8330:6630773,19406266:25952256,404226,76021 -h1,8330:6630773,19406266:0,0,0 -g1,8330:7579210,19406266 -g1,8330:8843793,19406266 -h1,8330:9159939,19406266:0,0,0 -k1,8330:32583029,19406266:23423090 -g1,8330:32583029,19406266 -) -(1,8330:6630773,20072444:25952256,404226,82312 -h1,8330:6630773,20072444:0,0,0 -g1,8330:7579210,20072444 -k1,8330:7579210,20072444:0 -h1,8330:14218269,20072444:0,0,0 -k1,8330:32583029,20072444:18364760 -g1,8330:32583029,20072444 -) -(1,8330:6630773,20738622:25952256,404226,50331 -h1,8330:6630773,20738622:0,0,0 -g1,8330:7579210,20738622 -g1,8330:12005250,20738622 -k1,8330:12005250,20738622:0 -h1,8330:15798998,20738622:0,0,0 -k1,8330:32583030,20738622:16784032 -g1,8330:32583030,20738622 -) -] -) -g1,8331:32583029,20788953 -g1,8331:6630773,20788953 -g1,8331:6630773,20788953 -g1,8331:32583029,20788953 -g1,8331:32583029,20788953 -) -h1,8331:6630773,20985561:0,0,0 -v1,8335:6630773,22875625:0,393216,0 -(1,8350:6630773,34119628:25952256,11637219,616038 -g1,8350:6630773,34119628 -(1,8350:6630773,34119628:25952256,11637219,616038 -(1,8350:6630773,34735666:25952256,12253257,0 -[1,8350:6630773,34735666:25952256,12253257,0 -(1,8350:6630773,34709452:25952256,12200829,0 -r1,8350:6656987,34709452:26214,12200829,0 -[1,8350:6656987,34709452:25899828,12200829,0 -(1,8350:6656987,34119628:25899828,11021181,0 -[1,8350:7246811,34119628:24720180,11021181,0 -(1,8336:7246811,24185821:24720180,1087374,134348 -k1,8335:8681965,24185821:225451 -k1,8335:11343388,24185821:225450 -k1,8335:12587924,24185821:225451 -k1,8335:15805093,24185821:225450 -k1,8335:17898975,24185821:225451 -k1,8335:19859818,24185821:225450 -k1,8335:21104354,24185821:225451 -(1,8335:21104354,24185821:0,452978,115847 -r1,8350:22166043,24185821:1061689,568825,115847 -k1,8335:21104354,24185821:-1061689 -) -(1,8335:21104354,24185821:1061689,452978,115847 -k1,8335:21104354,24185821:3277 -h1,8335:22162766,24185821:0,411205,112570 -) -k1,8335:22391493,24185821:225450 -k1,8335:24006307,24185821:225451 -k1,8335:25166300,24185821:225450 -k1,8335:26959372,24185821:225451 -k1,8335:27773335,24185821:225450 -k1,8335:29556577,24185821:225451 -k1,8336:31966991,24185821:0 -) -(1,8336:7246811,25027309:24720180,513147,126483 -k1,8335:9253905,25027309:171431 -k1,8335:10444421,25027309:171431 -k1,8335:11708338,25027309:171432 -k1,8335:12539061,25027309:171431 -k1,8335:15472835,25027309:171431 -k1,8335:17631973,25027309:171431 -k1,8335:20677159,25027309:171432 -k1,8335:21464628,25027309:171431 -k1,8335:24244392,25027309:171431 -k1,8335:25564669,25027309:171431 -k1,8335:27432828,25027309:171432 -k1,8335:30595978,25027309:171431 -k1,8335:31966991,25027309:0 -) -(1,8336:7246811,25868797:24720180,513147,134348 -k1,8335:8974012,25868797:268370 -k1,8335:10572763,25868797:268370 -k1,8335:13997347,25868797:268370 -k1,8335:15075087,25868797:268370 -k1,8335:16362542,25868797:268370 -k1,8335:18284385,25868797:268370 -k1,8335:20539151,25868797:268370 -k1,8335:21458949,25868797:268370 -k1,8335:23369651,25868797:268370 -k1,8335:25096852,25868797:268370 -k1,8335:30020244,25868797:268370 -k1,8335:30947906,25868797:268370 -k1,8335:31966991,25868797:0 -) -(1,8336:7246811,26710285:24720180,513147,126483 -k1,8335:9515396,26710285:184540 -k1,8335:10359227,26710285:184539 -k1,8335:12531474,26710285:184540 -k1,8335:15763438,26710285:184540 -k1,8335:17801335,26710285:184539 -k1,8335:18795245,26710285:184540 -k1,8335:19998869,26710285:184539 -k1,8335:22026281,26710285:184540 -k1,8335:25273974,26710285:184540 -k1,8335:26074551,26710285:184539 -k1,8335:27278176,26710285:184540 -k1,8335:29897364,26710285:184525 -k1,8335:31966991,26710285:0 -) -(1,8336:7246811,27551773:24720180,513147,134348 -k1,8335:8717308,27551773:164364 -k1,8335:10478130,27551773:164365 -k1,8335:11708765,27551773:164364 -k1,8335:13421745,27551773:164364 -k1,8335:15904118,27551773:164365 -k1,8335:17060042,27551773:164364 -k1,8335:18962421,27551773:164364 -k1,8335:20839242,27551773:164365 -k1,8335:21619644,27551773:164364 -k1,8335:23235630,27551773:164364 -k1,8335:24940746,27551773:164365 -k1,8335:25732945,27551773:164364 -k1,8335:26253169,27551773:164364 -k1,8335:28658865,27551773:164365 -k1,8335:30352184,27551773:164364 -k1,8335:31966991,27551773:0 -) -(1,8336:7246811,28393261:24720180,513147,134348 -k1,8335:8843744,28393261:145311 -k1,8335:9648348,28393261:145312 -k1,8335:10812744,28393261:145311 -k1,8335:13276063,28393261:145311 -k1,8335:15156768,28393261:145312 -k1,8335:15657939,28393261:145311 -k1,8335:20126661,28393261:145312 -k1,8335:24256561,28393261:145311 -k1,8335:26677937,28393261:145311 -k1,8335:28503592,28393261:145312 -k1,8335:29979284,28393261:145311 -k1,8335:31966991,28393261:0 -) -(1,8336:7246811,29234749:24720180,513147,126483 -g1,8335:9471102,29234749 -g1,8335:11007265,29234749 -g1,8335:12985796,29234749 -g1,8335:14204110,29234749 -g1,8335:18171004,29234749 -g1,8335:19937854,29234749 -g1,8335:20907786,29234749 -g1,8335:23661608,29234749 -g1,8335:24520129,29234749 -k1,8336:31966991,29234749:4618983 -g1,8336:31966991,29234749 -) -v1,8339:7246811,30425215:0,393216,0 -(1,8347:7246811,33398732:24720180,3366733,196608 -g1,8347:7246811,33398732 -g1,8347:7246811,33398732 -g1,8347:7050203,33398732 -(1,8347:7050203,33398732:0,3366733,196608 -r1,8350:32163599,33398732:25113396,3563341,196608 -k1,8347:7050203,33398732:-25113396 -) -(1,8347:7050203,33398732:25113396,3366733,196608 -[1,8347:7246811,33398732:24720180,3170125,0 -(1,8341:7246811,30632833:24720180,404226,101187 -(1,8340:7246811,30632833:0,0,0 -g1,8340:7246811,30632833 -g1,8340:7246811,30632833 -g1,8340:6919131,30632833 -(1,8340:6919131,30632833:0,0,0 -) -g1,8340:7246811,30632833 -) -k1,8341:7246811,30632833:0 -h1,8341:10092122,30632833:0,0,0 -k1,8341:31966990,30632833:21874868 -g1,8341:31966990,30632833 -) -(1,8342:7246811,31299011:24720180,404226,101187 -h1,8342:7246811,31299011:0,0,0 -g1,8342:11988996,31299011 -g1,8342:12621288,31299011 -g1,8342:13253580,31299011 -g1,8342:13885872,31299011 -g1,8342:14518164,31299011 -g1,8342:15150456,31299011 -g1,8342:16098894,31299011 -g1,8342:17679623,31299011 -g1,8342:18311915,31299011 -h1,8342:19892643,31299011:0,0,0 -k1,8342:31966991,31299011:12074348 -g1,8342:31966991,31299011 -) -(1,8343:7246811,31965189:24720180,404226,101187 -h1,8343:7246811,31965189:0,0,0 -g1,8343:11988996,31965189 -g1,8343:12621288,31965189 -g1,8343:13569725,31965189 -g1,8343:14202017,31965189 -g1,8343:14834309,31965189 -g1,8343:15466601,31965189 -g1,8343:17363476,31965189 -g1,8343:18944205,31965189 -g1,8343:19576497,31965189 -h1,8343:21157225,31965189:0,0,0 -k1,8343:31966991,31965189:10809766 -g1,8343:31966991,31965189 -) -(1,8344:7246811,32631367:24720180,404226,101187 -h1,8344:7246811,32631367:0,0,0 -g1,8344:11988996,32631367 -g1,8344:12621288,32631367 -g1,8344:13253580,32631367 -g1,8344:13885872,32631367 -g1,8344:14518164,32631367 -g1,8344:15150456,32631367 -g1,8344:15782748,32631367 -g1,8344:16415040,32631367 -g1,8344:17047332,32631367 -g1,8344:18628061,32631367 -g1,8344:19260353,32631367 -g1,8344:19892645,32631367 -g1,8344:20524937,32631367 -g1,8344:22105666,32631367 -g1,8344:23054104,32631367 -g1,8344:24634833,32631367 -g1,8344:25267125,32631367 -h1,8344:26847853,32631367:0,0,0 -k1,8344:31966991,32631367:5119138 -g1,8344:31966991,32631367 -) -(1,8345:7246811,33297545:24720180,404226,101187 -h1,8345:7246811,33297545:0,0,0 -g1,8345:11988996,33297545 -g1,8345:12621288,33297545 -g1,8345:13253580,33297545 -g1,8345:13885872,33297545 -g1,8345:14518164,33297545 -g1,8345:15150456,33297545 -g1,8345:15782748,33297545 -g1,8345:16415040,33297545 -g1,8345:17047332,33297545 -g1,8345:18628061,33297545 -g1,8345:19260353,33297545 -g1,8345:19892645,33297545 -g1,8345:20524937,33297545 -g1,8345:22105666,33297545 -g1,8345:23054104,33297545 -g1,8345:24634833,33297545 -g1,8345:25267125,33297545 -h1,8345:26847853,33297545:0,0,0 -k1,8345:31966991,33297545:5119138 -g1,8345:31966991,33297545 -) -] -) -g1,8347:31966991,33398732 -g1,8347:7246811,33398732 -g1,8347:7246811,33398732 -g1,8347:31966991,33398732 -g1,8347:31966991,33398732 -) -h1,8347:7246811,33595340:0,0,0 -] -) -] -r1,8350:32583029,34709452:26214,12200829,0 -) -] -) -) -g1,8350:32583029,34119628 -) -h1,8350:6630773,34735666:0,0,0 -(1,8353:6630773,36101442:25952256,513147,134348 -h1,8352:6630773,36101442:983040,0,0 -k1,8352:10211202,36101442:180421 -k1,8352:11050914,36101442:180420 -k1,8352:13455627,36101442:180421 -k1,8352:14252085,36101442:180420 -k1,8352:18371875,36101442:180421 -k1,8352:20287688,36101442:180420 -k1,8352:24208248,36101442:180420 -k1,8352:26807603,36101442:180421 -k1,8352:28481590,36101442:180421 -k1,8352:29348172,36101442:180420 -k1,8352:32583029,36101442:0 -) -(1,8353:6630773,36942930:25952256,513147,126483 -k1,8352:7478699,36942930:165041 -k1,8352:10428366,36942930:165042 -k1,8352:13801394,36942930:165041 -k1,8352:16139609,36942930:165041 -k1,8352:16920689,36942930:165042 -k1,8352:18104815,36942930:165041 -k1,8352:19800122,36942930:165041 -k1,8352:20616592,36942930:165042 -k1,8352:23569535,36942930:165041 -k1,8352:26961569,36942930:165041 -k1,8352:28733554,36942930:165042 -k1,8352:30915138,36942930:165041 -k1,8353:32583029,36942930:0 -) -(1,8353:6630773,37784418:25952256,513147,134348 -k1,8352:8064279,37784418:154899 -k1,8352:8835216,37784418:154899 -k1,8352:10498754,37784418:154899 -k1,8352:13109287,37784418:154899 -k1,8352:13923478,37784418:154899 -k1,8352:16935091,37784418:154899 -k1,8352:17717825,37784418:154899 -k1,8352:19366290,37784418:154899 -k1,8352:19877049,37784418:154899 -k1,8352:22294251,37784418:154899 -k1,8352:25211493,37784418:154899 -k1,8352:27467476,37784418:154899 -k1,8352:28613935,37784418:154899 -k1,8352:30728360,37784418:154899 -k1,8352:32583029,37784418:0 -) -(1,8353:6630773,38625906:25952256,513147,134348 -k1,8352:7646066,38625906:205923 -k1,8352:10614333,38625906:205924 -k1,8352:12427199,38625906:205923 -k1,8352:14649666,38625906:205924 -k1,8352:17531424,38625906:205923 -k1,8352:20076983,38625906:205924 -k1,8352:22113982,38625906:205923 -k1,8352:23002790,38625906:205923 -k1,8352:24274985,38625906:205924 -k1,8352:25012405,38625906:205923 -k1,8352:25574189,38625906:205924 -k1,8352:28558183,38625906:205923 -k1,8352:29423399,38625906:205924 -k1,8352:30400025,38625906:205923 -k1,8353:32583029,38625906:0 -) -(1,8353:6630773,39467394:25952256,513147,134348 -k1,8352:8613456,39467394:169957 -k1,8352:9253305,39467394:169956 -k1,8352:9954759,39467394:169957 -k1,8352:12616394,39467394:169956 -k1,8352:13472513,39467394:169957 -k1,8352:14964331,39467394:169957 -k1,8352:15793579,39467394:169956 -k1,8352:16982621,39467394:169957 -k1,8352:19241209,39467394:169956 -k1,8352:20070458,39467394:169957 -k1,8352:21259500,39467394:169957 -k1,8352:25038524,39467394:169956 -k1,8352:27063150,39467394:169957 -k1,8352:28042476,39467394:169956 -k1,8352:29231518,39467394:169957 -k1,8352:32583029,39467394:0 -) -(1,8353:6630773,40308882:25952256,513147,134348 -k1,8352:7469199,40308882:179134 -k1,8352:10792750,40308882:179134 -k1,8352:14617652,40308882:179134 -k1,8352:15448214,40308882:179134 -k1,8352:19797403,40308882:179133 -k1,8352:21768291,40308882:179134 -k1,8352:22575260,40308882:179134 -k1,8352:24816137,40308882:179114 -k1,8352:30243394,40308882:179134 -k1,8352:32583029,40308882:0 -) -(1,8353:6630773,41150370:25952256,513147,126483 -k1,8352:8749265,41150370:257925 -k1,8352:9658618,41150370:257925 -k1,8352:10664309,41150370:257925 -k1,8352:14012257,41150370:257925 -k1,8352:15031710,41150370:257925 -k1,8352:17620751,41150370:257925 -k1,8352:20960835,41150370:257926 -k1,8352:21878052,41150370:257925 -k1,8352:23742920,41150370:257925 -k1,8352:25843717,41150370:257925 -k1,8352:26863170,41150370:257925 -k1,8352:29189411,41150370:257925 -k1,8352:30114492,41150370:257925 -(1,8352:30114492,41150370:0,452978,115847 -r1,8352:32583029,41150370:2468537,568825,115847 -k1,8352:30114492,41150370:-2468537 -) -(1,8352:30114492,41150370:2468537,452978,115847 -k1,8352:30114492,41150370:3277 -h1,8352:32579752,41150370:0,411205,112570 -) -k1,8352:32583029,41150370:0 -) -(1,8353:6630773,41991858:25952256,513147,126483 -k1,8352:8938895,41991858:298133 -k1,8352:10256113,41991858:298133 -k1,8352:13271369,41991858:298133 -k1,8352:16974753,41991858:298133 -k1,8352:19085612,41991858:298133 -k1,8352:23652105,41991858:298133 -k1,8352:25663905,41991858:298034 -k1,8352:28280046,41991858:298133 -k1,8352:29569739,41991858:298133 -k1,8352:31469572,41991858:298133 -k1,8353:32583029,41991858:0 -) -(1,8353:6630773,42833346:25952256,513147,134348 -k1,8352:9240810,42833346:205521 -k1,8352:10959557,42833346:205521 -k1,8352:12559028,42833346:205520 -k1,8352:14153912,42833346:205521 -k1,8352:15927054,42833346:205521 -k1,8352:20071944,42833346:205521 -k1,8352:21468910,42833346:205521 -k1,8352:24103850,42833346:205520 -k1,8352:26044764,42833346:205521 -k1,8352:29990425,42833346:205521 -k1,8352:32583029,42833346:0 -) -(1,8353:6630773,43674834:25952256,505283,134348 -k1,8352:7519878,43674834:202943 -k1,8352:11924334,43674834:202943 -k1,8352:12743316,43674834:202944 -k1,8352:15856713,43674834:202943 -k1,8352:17979860,43674834:202943 -k1,8352:19374248,43674834:202943 -k1,8352:21679585,43674834:202943 -k1,8352:23756858,43674834:202943 -k1,8352:25132241,43674834:202944 -k1,8352:28245638,43674834:202943 -k1,8352:29541066,43674834:202943 -k1,8352:31252648,43674834:202943 -k1,8352:32583029,43674834:0 -) -(1,8353:6630773,44516322:25952256,513147,134348 -k1,8352:10319532,44516322:286130 -k1,8352:11257090,44516322:286130 -k1,8352:12562305,44516322:286130 -k1,8352:14836142,44516322:286130 -k1,8352:17665725,44516322:286131 -k1,8352:20035900,44516322:286130 -k1,8352:20973458,44516322:286130 -k1,8352:23928869,44516322:286130 -k1,8352:26554634,44516322:286130 -k1,8352:28032209,44516322:286130 -k1,8352:32583029,44516322:0 -) -(1,8353:6630773,45357810:25952256,513147,126483 -k1,8352:8429409,45357810:234947 -k1,8352:9855800,45357810:234946 -k1,8352:12585047,45357810:234947 -k1,8352:15094748,45357810:234946 -k1,8352:18022569,45357810:234947 -k1,8352:20575523,45357810:234946 -k1,8352:22285685,45357810:234947 -k1,8352:25233166,45357810:234946 -k1,8352:27170083,45357810:234947 -k1,8352:30981329,45357810:234946 -k1,8352:32583029,45357810:0 -) -] -(1,8355:32583029,45706769:0,0,0 -g1,8355:32583029,45706769 -) -) -] -(1,8355:6630773,47279633:25952256,0,0 -h1,8355:6630773,47279633:25952256,0,0 -) -] -h1,8355:4262630,4025873:0,0,0 +[1,8360:6630773,45706769:25952256,40108032,0 +v1,8304:6630773,6254097:0,393216,0 +(1,8308:6630773,6562902:25952256,702021,196608 +g1,8308:6630773,6562902 +g1,8308:6630773,6562902 +g1,8308:6434165,6562902 +(1,8308:6434165,6562902:0,702021,196608 +r1,8308:32779637,6562902:26345472,898629,196608 +k1,8308:6434165,6562902:-26345472 +) +(1,8308:6434165,6562902:26345472,702021,196608 +[1,8308:6630773,6562902:25952256,505413,0 +(1,8306:6630773,6461715:25952256,404226,101187 +(1,8305:6630773,6461715:0,0,0 +g1,8305:6630773,6461715 +g1,8305:6630773,6461715 +g1,8305:6303093,6461715 +(1,8305:6303093,6461715:0,0,0 +) +g1,8305:6630773,6461715 +) +g1,8306:7263065,6461715 +g1,8306:7895357,6461715 +g1,8306:8843794,6461715 +g1,8306:9476086,6461715 +g1,8306:10424523,6461715 +g1,8306:11056815,6461715 +g1,8306:12005252,6461715 +g1,8306:13585981,6461715 +h1,8306:14218272,6461715:0,0,0 +k1,8306:32583028,6461715:18364756 +g1,8306:32583028,6461715 +) +] +) +g1,8308:32583029,6562902 +g1,8308:6630773,6562902 +g1,8308:6630773,6562902 +g1,8308:32583029,6562902 +g1,8308:32583029,6562902 +) +h1,8308:6630773,6759510:0,0,0 +v1,8312:6630773,8474264:0,393216,0 +(1,8336:6630773,20788953:25952256,12707905,196608 +g1,8336:6630773,20788953 +g1,8336:6630773,20788953 +g1,8336:6434165,20788953 +(1,8336:6434165,20788953:0,12707905,196608 +r1,8336:32779637,20788953:26345472,12904513,196608 +k1,8336:6434165,20788953:-26345472 +) +(1,8336:6434165,20788953:26345472,12707905,196608 +[1,8336:6630773,20788953:25952256,12511297,0 +(1,8314:6630773,8681882:25952256,404226,101187 +(1,8313:6630773,8681882:0,0,0 +g1,8313:6630773,8681882 +g1,8313:6630773,8681882 +g1,8313:6303093,8681882 +(1,8313:6303093,8681882:0,0,0 +) +g1,8313:6630773,8681882 +) +k1,8314:6630773,8681882:0 +g1,8314:9159938,8681882 +g1,8314:9792230,8681882 +g1,8314:10740667,8681882 +g1,8314:11372959,8681882 +g1,8314:12321396,8681882 +g1,8314:12953688,8681882 +g1,8314:13902125,8681882 +g1,8314:15482854,8681882 +h1,8314:16431291,8681882:0,0,0 +k1,8314:32583029,8681882:16151738 +g1,8314:32583029,8681882 +) +(1,8335:6630773,9413596:25952256,404226,101187 +(1,8316:6630773,9413596:0,0,0 +g1,8316:6630773,9413596 +g1,8316:6630773,9413596 +g1,8316:6303093,9413596 +(1,8316:6303093,9413596:0,0,0 +) +g1,8316:6630773,9413596 +) +g1,8335:7579210,9413596 +g1,8335:8211502,9413596 +g1,8335:8843794,9413596 +g1,8335:9792231,9413596 +g1,8335:10424523,9413596 +g1,8335:11372960,9413596 +g1,8335:12005252,9413596 +g1,8335:12953689,9413596 +g1,8335:14534418,9413596 +h1,8335:15166709,9413596:0,0,0 +k1,8335:32583029,9413596:17416320 +g1,8335:32583029,9413596 +) +(1,8335:6630773,10079774:25952256,404226,82312 +h1,8335:6630773,10079774:0,0,0 +g1,8335:7579210,10079774 +k1,8335:7579210,10079774:0 +h1,8335:13269832,10079774:0,0,0 +k1,8335:32583028,10079774:19313196 +g1,8335:32583028,10079774 +) +(1,8335:6630773,10745952:25952256,404226,101187 +h1,8335:6630773,10745952:0,0,0 +g1,8335:7579210,10745952 +g1,8335:10108376,10745952 +g1,8335:11372959,10745952 +h1,8335:12321396,10745952:0,0,0 +k1,8335:32583028,10745952:20261632 +g1,8335:32583028,10745952 +) +(1,8335:6630773,11412130:25952256,410518,82312 +h1,8335:6630773,11412130:0,0,0 +g1,8335:7579210,11412130 +k1,8335:7579210,11412130:0 +h1,8335:12637540,11412130:0,0,0 +k1,8335:32583028,11412130:19945488 +g1,8335:32583028,11412130 +) +(1,8335:6630773,12078308:25952256,388497,0 +h1,8335:6630773,12078308:0,0,0 +g1,8335:7579210,12078308 +g1,8335:7895356,12078308 +g1,8335:8211502,12078308 +g1,8335:8527648,12078308 +g1,8335:9476085,12078308 +g1,8335:10424522,12078308 +h1,8335:12005250,12078308:0,0,0 +k1,8335:32583030,12078308:20577780 +g1,8335:32583030,12078308 +) +(1,8335:6630773,12744486:25952256,388497,101187 +h1,8335:6630773,12744486:0,0,0 +g1,8335:7579210,12744486 +g1,8335:8211502,12744486 +g1,8335:8527648,12744486 +g1,8335:8843794,12744486 +g1,8335:9476086,12744486 +g1,8335:9792232,12744486 +g1,8335:10424524,12744486 +g1,8335:10740670,12744486 +g1,8335:11056816,12744486 +g1,8335:11372962,12744486 +g1,8335:11689108,12744486 +h1,8335:12005254,12744486:0,0,0 +k1,8335:32583030,12744486:20577776 +g1,8335:32583030,12744486 +) +(1,8335:6630773,13410664:25952256,388497,9436 +h1,8335:6630773,13410664:0,0,0 +g1,8335:7579210,13410664 +g1,8335:8527647,13410664 +g1,8335:8843793,13410664 +g1,8335:9476085,13410664 +g1,8335:9792231,13410664 +g1,8335:10424523,13410664 +g1,8335:10740669,13410664 +g1,8335:11056815,13410664 +g1,8335:11372961,13410664 +g1,8335:11689107,13410664 +h1,8335:12005253,13410664:0,0,0 +k1,8335:32583029,13410664:20577776 +g1,8335:32583029,13410664 +) +(1,8335:6630773,14076842:25952256,388497,9436 +h1,8335:6630773,14076842:0,0,0 +g1,8335:7579210,14076842 +g1,8335:8527647,14076842 +g1,8335:8843793,14076842 +g1,8335:9476085,14076842 +g1,8335:9792231,14076842 +g1,8335:10424523,14076842 +g1,8335:10740669,14076842 +g1,8335:11056815,14076842 +g1,8335:11372961,14076842 +g1,8335:11689107,14076842 +h1,8335:12005253,14076842:0,0,0 +k1,8335:32583029,14076842:20577776 +g1,8335:32583029,14076842 +) +(1,8335:6630773,14743020:25952256,404226,82312 +h1,8335:6630773,14743020:0,0,0 +g1,8335:7579210,14743020 +k1,8335:7579210,14743020:0 +h1,8335:13902123,14743020:0,0,0 +k1,8335:32583029,14743020:18680906 +g1,8335:32583029,14743020 +) +(1,8335:6630773,15409198:25952256,404226,76021 +h1,8335:6630773,15409198:0,0,0 +g1,8335:7579210,15409198 +g1,8335:8843793,15409198 +g1,8335:10424522,15409198 +g1,8335:10740668,15409198 +g1,8335:11056814,15409198 +g1,8335:11372960,15409198 +g1,8335:12953689,15409198 +g1,8335:13269835,15409198 +g1,8335:13585981,15409198 +g1,8335:13902127,15409198 +h1,8335:16115147,15409198:0,0,0 +k1,8335:32583029,15409198:16467882 +g1,8335:32583029,15409198 +) +(1,8335:6630773,16075376:25952256,404226,82312 +h1,8335:6630773,16075376:0,0,0 +g1,8335:7579210,16075376 +k1,8335:7579210,16075376:0 +h1,8335:12005249,16075376:0,0,0 +k1,8335:32583029,16075376:20577780 +g1,8335:32583029,16075376 +) +(1,8335:6630773,16741554:25952256,404226,76021 +h1,8335:6630773,16741554:0,0,0 +g1,8335:7579210,16741554 +g1,8335:8843793,16741554 +g1,8335:9476085,16741554 +g1,8335:10108377,16741554 +h1,8335:10424523,16741554:0,0,0 +k1,8335:32583029,16741554:22158506 +g1,8335:32583029,16741554 +) +(1,8335:6630773,17407732:25952256,404226,101187 +h1,8335:6630773,17407732:0,0,0 +g1,8335:7579210,17407732 +k1,8335:7579210,17407732:0 +h1,8335:13269832,17407732:0,0,0 +k1,8335:32583028,17407732:19313196 +g1,8335:32583028,17407732 +) +(1,8335:6630773,18073910:25952256,404226,76021 +h1,8335:6630773,18073910:0,0,0 +g1,8335:7579210,18073910 +g1,8335:8843793,18073910 +h1,8335:9159939,18073910:0,0,0 +k1,8335:32583029,18073910:23423090 +g1,8335:32583029,18073910 +) +(1,8335:6630773,18740088:25952256,404226,101187 +h1,8335:6630773,18740088:0,0,0 +g1,8335:7579210,18740088 +k1,8335:7579210,18740088:0 +h1,8335:12953686,18740088:0,0,0 +k1,8335:32583030,18740088:19629344 +g1,8335:32583030,18740088 +) +(1,8335:6630773,19406266:25952256,404226,76021 +h1,8335:6630773,19406266:0,0,0 +g1,8335:7579210,19406266 +g1,8335:8843793,19406266 +h1,8335:9159939,19406266:0,0,0 +k1,8335:32583029,19406266:23423090 +g1,8335:32583029,19406266 +) +(1,8335:6630773,20072444:25952256,404226,82312 +h1,8335:6630773,20072444:0,0,0 +g1,8335:7579210,20072444 +k1,8335:7579210,20072444:0 +h1,8335:14218269,20072444:0,0,0 +k1,8335:32583029,20072444:18364760 +g1,8335:32583029,20072444 +) +(1,8335:6630773,20738622:25952256,404226,50331 +h1,8335:6630773,20738622:0,0,0 +g1,8335:7579210,20738622 +g1,8335:12005250,20738622 +k1,8335:12005250,20738622:0 +h1,8335:15798998,20738622:0,0,0 +k1,8335:32583030,20738622:16784032 +g1,8335:32583030,20738622 +) +] +) +g1,8336:32583029,20788953 +g1,8336:6630773,20788953 +g1,8336:6630773,20788953 +g1,8336:32583029,20788953 +g1,8336:32583029,20788953 +) +h1,8336:6630773,20985561:0,0,0 +v1,8340:6630773,22875625:0,393216,0 +(1,8355:6630773,34119628:25952256,11637219,616038 +g1,8355:6630773,34119628 +(1,8355:6630773,34119628:25952256,11637219,616038 +(1,8355:6630773,34735666:25952256,12253257,0 +[1,8355:6630773,34735666:25952256,12253257,0 +(1,8355:6630773,34709452:25952256,12200829,0 +r1,8355:6656987,34709452:26214,12200829,0 +[1,8355:6656987,34709452:25899828,12200829,0 +(1,8355:6656987,34119628:25899828,11021181,0 +[1,8355:7246811,34119628:24720180,11021181,0 +(1,8341:7246811,24185821:24720180,1087374,134348 +k1,8340:8681965,24185821:225451 +k1,8340:11343388,24185821:225450 +k1,8340:12587924,24185821:225451 +k1,8340:15805093,24185821:225450 +k1,8340:17898975,24185821:225451 +k1,8340:19859818,24185821:225450 +k1,8340:21104354,24185821:225451 +(1,8340:21104354,24185821:0,452978,115847 +r1,8355:22166043,24185821:1061689,568825,115847 +k1,8340:21104354,24185821:-1061689 +) +(1,8340:21104354,24185821:1061689,452978,115847 +k1,8340:21104354,24185821:3277 +h1,8340:22162766,24185821:0,411205,112570 +) +k1,8340:22391493,24185821:225450 +k1,8340:24006307,24185821:225451 +k1,8340:25166300,24185821:225450 +k1,8340:26959372,24185821:225451 +k1,8340:27773335,24185821:225450 +k1,8340:29556577,24185821:225451 +k1,8341:31966991,24185821:0 +) +(1,8341:7246811,25027309:24720180,513147,126483 +k1,8340:9253905,25027309:171431 +k1,8340:10444421,25027309:171431 +k1,8340:11708338,25027309:171432 +k1,8340:12539061,25027309:171431 +k1,8340:15472835,25027309:171431 +k1,8340:17631973,25027309:171431 +k1,8340:20677159,25027309:171432 +k1,8340:21464628,25027309:171431 +k1,8340:24244392,25027309:171431 +k1,8340:25564669,25027309:171431 +k1,8340:27432828,25027309:171432 +k1,8340:30595978,25027309:171431 +k1,8340:31966991,25027309:0 +) +(1,8341:7246811,25868797:24720180,513147,134348 +k1,8340:8974012,25868797:268370 +k1,8340:10572763,25868797:268370 +k1,8340:13997347,25868797:268370 +k1,8340:15075087,25868797:268370 +k1,8340:16362542,25868797:268370 +k1,8340:18284385,25868797:268370 +k1,8340:20539151,25868797:268370 +k1,8340:21458949,25868797:268370 +k1,8340:23369651,25868797:268370 +k1,8340:25096852,25868797:268370 +k1,8340:30020244,25868797:268370 +k1,8340:30947906,25868797:268370 +k1,8340:31966991,25868797:0 +) +(1,8341:7246811,26710285:24720180,513147,126483 +k1,8340:9515396,26710285:184540 +k1,8340:10359227,26710285:184539 +k1,8340:12531474,26710285:184540 +k1,8340:15763438,26710285:184540 +k1,8340:17801335,26710285:184539 +k1,8340:18795245,26710285:184540 +k1,8340:19998869,26710285:184539 +k1,8340:22026281,26710285:184540 +k1,8340:25273974,26710285:184540 +k1,8340:26074551,26710285:184539 +k1,8340:27278176,26710285:184540 +k1,8340:29897364,26710285:184525 +k1,8340:31966991,26710285:0 +) +(1,8341:7246811,27551773:24720180,513147,134348 +k1,8340:8717308,27551773:164364 +k1,8340:10478130,27551773:164365 +k1,8340:11708765,27551773:164364 +k1,8340:13421745,27551773:164364 +k1,8340:15904118,27551773:164365 +k1,8340:17060042,27551773:164364 +k1,8340:18962421,27551773:164364 +k1,8340:20839242,27551773:164365 +k1,8340:21619644,27551773:164364 +k1,8340:23235630,27551773:164364 +k1,8340:24940746,27551773:164365 +k1,8340:25732945,27551773:164364 +k1,8340:26253169,27551773:164364 +k1,8340:28658865,27551773:164365 +k1,8340:30352184,27551773:164364 +k1,8340:31966991,27551773:0 +) +(1,8341:7246811,28393261:24720180,513147,134348 +k1,8340:8843744,28393261:145311 +k1,8340:9648348,28393261:145312 +k1,8340:10812744,28393261:145311 +k1,8340:13276063,28393261:145311 +k1,8340:15156768,28393261:145312 +k1,8340:15657939,28393261:145311 +k1,8340:20126661,28393261:145312 +k1,8340:24256561,28393261:145311 +k1,8340:26677937,28393261:145311 +k1,8340:28503592,28393261:145312 +k1,8340:29979284,28393261:145311 +k1,8340:31966991,28393261:0 +) +(1,8341:7246811,29234749:24720180,513147,126483 +g1,8340:9471102,29234749 +g1,8340:11007265,29234749 +g1,8340:12985796,29234749 +g1,8340:14204110,29234749 +g1,8340:18171004,29234749 +g1,8340:19937854,29234749 +g1,8340:20907786,29234749 +g1,8340:23661608,29234749 +g1,8340:24520129,29234749 +k1,8341:31966991,29234749:4618983 +g1,8341:31966991,29234749 +) +v1,8344:7246811,30425215:0,393216,0 +(1,8352:7246811,33398732:24720180,3366733,196608 +g1,8352:7246811,33398732 +g1,8352:7246811,33398732 +g1,8352:7050203,33398732 +(1,8352:7050203,33398732:0,3366733,196608 +r1,8355:32163599,33398732:25113396,3563341,196608 +k1,8352:7050203,33398732:-25113396 +) +(1,8352:7050203,33398732:25113396,3366733,196608 +[1,8352:7246811,33398732:24720180,3170125,0 +(1,8346:7246811,30632833:24720180,404226,101187 +(1,8345:7246811,30632833:0,0,0 +g1,8345:7246811,30632833 +g1,8345:7246811,30632833 +g1,8345:6919131,30632833 +(1,8345:6919131,30632833:0,0,0 +) +g1,8345:7246811,30632833 +) +k1,8346:7246811,30632833:0 +h1,8346:10092122,30632833:0,0,0 +k1,8346:31966990,30632833:21874868 +g1,8346:31966990,30632833 +) +(1,8347:7246811,31299011:24720180,404226,101187 +h1,8347:7246811,31299011:0,0,0 +g1,8347:11988996,31299011 +g1,8347:12621288,31299011 +g1,8347:13253580,31299011 +g1,8347:13885872,31299011 +g1,8347:14518164,31299011 +g1,8347:15150456,31299011 +g1,8347:16098894,31299011 +g1,8347:17679623,31299011 +g1,8347:18311915,31299011 +h1,8347:19892643,31299011:0,0,0 +k1,8347:31966991,31299011:12074348 +g1,8347:31966991,31299011 +) +(1,8348:7246811,31965189:24720180,404226,101187 +h1,8348:7246811,31965189:0,0,0 +g1,8348:11988996,31965189 +g1,8348:12621288,31965189 +g1,8348:13569725,31965189 +g1,8348:14202017,31965189 +g1,8348:14834309,31965189 +g1,8348:15466601,31965189 +g1,8348:17363476,31965189 +g1,8348:18944205,31965189 +g1,8348:19576497,31965189 +h1,8348:21157225,31965189:0,0,0 +k1,8348:31966991,31965189:10809766 +g1,8348:31966991,31965189 +) +(1,8349:7246811,32631367:24720180,404226,101187 +h1,8349:7246811,32631367:0,0,0 +g1,8349:11988996,32631367 +g1,8349:12621288,32631367 +g1,8349:13253580,32631367 +g1,8349:13885872,32631367 +g1,8349:14518164,32631367 +g1,8349:15150456,32631367 +g1,8349:15782748,32631367 +g1,8349:16415040,32631367 +g1,8349:17047332,32631367 +g1,8349:18628061,32631367 +g1,8349:19260353,32631367 +g1,8349:19892645,32631367 +g1,8349:20524937,32631367 +g1,8349:22105666,32631367 +g1,8349:23054104,32631367 +g1,8349:24634833,32631367 +g1,8349:25267125,32631367 +h1,8349:26847853,32631367:0,0,0 +k1,8349:31966991,32631367:5119138 +g1,8349:31966991,32631367 +) +(1,8350:7246811,33297545:24720180,404226,101187 +h1,8350:7246811,33297545:0,0,0 +g1,8350:11988996,33297545 +g1,8350:12621288,33297545 +g1,8350:13253580,33297545 +g1,8350:13885872,33297545 +g1,8350:14518164,33297545 +g1,8350:15150456,33297545 +g1,8350:15782748,33297545 +g1,8350:16415040,33297545 +g1,8350:17047332,33297545 +g1,8350:18628061,33297545 +g1,8350:19260353,33297545 +g1,8350:19892645,33297545 +g1,8350:20524937,33297545 +g1,8350:22105666,33297545 +g1,8350:23054104,33297545 +g1,8350:24634833,33297545 +g1,8350:25267125,33297545 +h1,8350:26847853,33297545:0,0,0 +k1,8350:31966991,33297545:5119138 +g1,8350:31966991,33297545 +) +] +) +g1,8352:31966991,33398732 +g1,8352:7246811,33398732 +g1,8352:7246811,33398732 +g1,8352:31966991,33398732 +g1,8352:31966991,33398732 +) +h1,8352:7246811,33595340:0,0,0 +] +) +] +r1,8355:32583029,34709452:26214,12200829,0 +) +] +) +) +g1,8355:32583029,34119628 +) +h1,8355:6630773,34735666:0,0,0 +(1,8358:6630773,36101442:25952256,513147,134348 +h1,8357:6630773,36101442:983040,0,0 +k1,8357:10211202,36101442:180421 +k1,8357:11050914,36101442:180420 +k1,8357:13455627,36101442:180421 +k1,8357:14252085,36101442:180420 +k1,8357:18371875,36101442:180421 +k1,8357:20287688,36101442:180420 +k1,8357:24208248,36101442:180420 +k1,8357:26807603,36101442:180421 +k1,8357:28481590,36101442:180421 +k1,8357:29348172,36101442:180420 +k1,8357:32583029,36101442:0 +) +(1,8358:6630773,36942930:25952256,513147,126483 +k1,8357:7454669,36942930:141011 +k1,8357:10380306,36942930:141012 +k1,8357:13729304,36942930:141011 +k1,8357:16043490,36942930:141012 +k1,8357:16800539,36942930:141011 +k1,8357:17960635,36942930:141011 +k1,8357:19631913,36942930:141012 +k1,8357:20424352,36942930:141011 +k1,8357:23353266,36942930:141012 +k1,8357:26721270,36942930:141011 +k1,8357:28469225,36942930:141012 +k1,8357:30626779,36942930:141011 +k1,8358:32583029,36942930:0 +) +(1,8358:6630773,37784418:25952256,513147,134348 +k1,8357:7796518,37784418:175496 +k1,8357:8588052,37784418:175496 +k1,8357:10272187,37784418:175496 +k1,8357:12903317,37784418:175496 +k1,8357:13738105,37784418:175496 +k1,8357:16770315,37784418:175496 +k1,8357:17573646,37784418:175496 +k1,8357:19242708,37784418:175496 +k1,8357:19774064,37784418:175496 +k1,8357:22211863,37784418:175496 +k1,8357:25149702,37784418:175496 +k1,8357:27426282,37784418:175496 +k1,8357:28593338,37784418:175496 +k1,8357:30728360,37784418:175496 +k1,8357:32583029,37784418:0 +) +(1,8358:6630773,38625906:25952256,513147,134348 +k1,8357:7646066,38625906:205923 +k1,8357:10614333,38625906:205924 +k1,8357:12427199,38625906:205923 +k1,8357:14649666,38625906:205924 +k1,8357:17531424,38625906:205923 +k1,8357:20076983,38625906:205924 +k1,8357:22113982,38625906:205923 +k1,8357:23002790,38625906:205923 +k1,8357:24274985,38625906:205924 +k1,8357:25012405,38625906:205923 +k1,8357:25574189,38625906:205924 +k1,8357:28558183,38625906:205923 +k1,8357:29423399,38625906:205924 +k1,8357:30400025,38625906:205923 +k1,8358:32583029,38625906:0 +) +(1,8358:6630773,39467394:25952256,513147,134348 +k1,8357:8613456,39467394:169957 +k1,8357:9253305,39467394:169956 +k1,8357:9954759,39467394:169957 +k1,8357:12616394,39467394:169956 +k1,8357:13472513,39467394:169957 +k1,8357:14964331,39467394:169957 +k1,8357:15793579,39467394:169956 +k1,8357:16982621,39467394:169957 +k1,8357:19241209,39467394:169956 +k1,8357:20070458,39467394:169957 +k1,8357:21259500,39467394:169957 +k1,8357:25038524,39467394:169956 +k1,8357:27063150,39467394:169957 +k1,8357:28042476,39467394:169956 +k1,8357:29231518,39467394:169957 +k1,8357:32583029,39467394:0 +) +(1,8358:6630773,40308882:25952256,513147,134348 +k1,8357:7469199,40308882:179134 +k1,8357:10792750,40308882:179134 +k1,8357:14617652,40308882:179134 +k1,8357:15448214,40308882:179134 +k1,8357:19797403,40308882:179133 +k1,8357:21768291,40308882:179134 +k1,8357:22575260,40308882:179134 +k1,8357:24816137,40308882:179114 +k1,8357:30243394,40308882:179134 +k1,8357:32583029,40308882:0 +) +(1,8358:6630773,41150370:25952256,513147,126483 +k1,8357:8749265,41150370:257925 +k1,8357:9658618,41150370:257925 +k1,8357:10664309,41150370:257925 +k1,8357:14012257,41150370:257925 +k1,8357:15031710,41150370:257925 +k1,8357:17620751,41150370:257925 +k1,8357:20960835,41150370:257926 +k1,8357:21878052,41150370:257925 +k1,8357:23742920,41150370:257925 +k1,8357:25843717,41150370:257925 +k1,8357:26863170,41150370:257925 +k1,8357:29189411,41150370:257925 +k1,8357:30114492,41150370:257925 +(1,8357:30114492,41150370:0,452978,115847 +r1,8357:32583029,41150370:2468537,568825,115847 +k1,8357:30114492,41150370:-2468537 +) +(1,8357:30114492,41150370:2468537,452978,115847 +k1,8357:30114492,41150370:3277 +h1,8357:32579752,41150370:0,411205,112570 +) +k1,8357:32583029,41150370:0 +) +(1,8358:6630773,41991858:25952256,513147,126483 +k1,8357:8938895,41991858:298133 +k1,8357:10256113,41991858:298133 +k1,8357:13271369,41991858:298133 +k1,8357:16974753,41991858:298133 +k1,8357:19085612,41991858:298133 +k1,8357:23652105,41991858:298133 +k1,8357:25663905,41991858:298034 +k1,8357:28280046,41991858:298133 +k1,8357:29569739,41991858:298133 +k1,8357:31469572,41991858:298133 +k1,8358:32583029,41991858:0 +) +(1,8358:6630773,42833346:25952256,513147,134348 +k1,8357:9240810,42833346:205521 +k1,8357:10959557,42833346:205521 +k1,8357:12559028,42833346:205520 +k1,8357:14153912,42833346:205521 +k1,8357:15927054,42833346:205521 +k1,8357:20071944,42833346:205521 +k1,8357:21468910,42833346:205521 +k1,8357:24103850,42833346:205520 +k1,8357:26044764,42833346:205521 +k1,8357:29990425,42833346:205521 +k1,8357:32583029,42833346:0 +) +(1,8358:6630773,43674834:25952256,505283,134348 +k1,8357:7519878,43674834:202943 +k1,8357:11924334,43674834:202943 +k1,8357:12743316,43674834:202944 +k1,8357:15856713,43674834:202943 +k1,8357:17979860,43674834:202943 +k1,8357:19374248,43674834:202943 +k1,8357:21679585,43674834:202943 +k1,8357:23756858,43674834:202943 +k1,8357:25132241,43674834:202944 +k1,8357:28245638,43674834:202943 +k1,8357:29541066,43674834:202943 +k1,8357:31252648,43674834:202943 +k1,8357:32583029,43674834:0 +) +(1,8358:6630773,44516322:25952256,513147,134348 +k1,8357:10319532,44516322:286130 +k1,8357:11257090,44516322:286130 +k1,8357:12562305,44516322:286130 +k1,8357:14836142,44516322:286130 +k1,8357:17665725,44516322:286131 +k1,8357:20035900,44516322:286130 +k1,8357:20973458,44516322:286130 +k1,8357:23928869,44516322:286130 +k1,8357:26554634,44516322:286130 +k1,8357:28032209,44516322:286130 +k1,8357:32583029,44516322:0 +) +(1,8358:6630773,45357810:25952256,513147,126483 +k1,8357:8429409,45357810:234947 +k1,8357:9855800,45357810:234946 +k1,8357:12585047,45357810:234947 +k1,8357:15094748,45357810:234946 +k1,8357:18022569,45357810:234947 +k1,8357:20575523,45357810:234946 +k1,8357:22285685,45357810:234947 +k1,8357:25233166,45357810:234946 +k1,8357:27170083,45357810:234947 +k1,8357:30981329,45357810:234946 +k1,8357:32583029,45357810:0 +) +] +(1,8360:32583029,45706769:0,0,0 +g1,8360:32583029,45706769 +) +) +] +(1,8360:6630773,47279633:25952256,0,0 +h1,8360:6630773,47279633:25952256,0,0 +) +] +h1,8360:4262630,4025873:0,0,0 ] !23766 }155 -Input:1135:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1136:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1137:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1138:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1139:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1140:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1141:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1142:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1143:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1144:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1145:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1146:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1147:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1148:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1149:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 +Input:1131:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1132:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1133:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1134:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1135:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1136:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1137:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1138:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1139:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1140:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1141:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1142:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1143:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1144:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1145:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 {156 -[1,8645:4262630,47279633:28320399,43253760,0 -(1,8645:4262630,4025873:0,0,0 -[1,8645:-473657,4025873:25952256,0,0 -(1,8645:-473657,-710414:25952256,0,0 -h1,8645:-473657,-710414:0,0,0 -(1,8645:-473657,-710414:0,0,0 -(1,8645:-473657,-710414:0,0,0 -g1,8645:-473657,-710414 -(1,8645:-473657,-710414:65781,0,65781 -g1,8645:-407876,-710414 -[1,8645:-407876,-644633:0,0,0 +[1,8650:4262630,47279633:28320399,43253760,0 +(1,8650:4262630,4025873:0,0,0 +[1,8650:-473657,4025873:25952256,0,0 +(1,8650:-473657,-710414:25952256,0,0 +h1,8650:-473657,-710414:0,0,0 +(1,8650:-473657,-710414:0,0,0 +(1,8650:-473657,-710414:0,0,0 +g1,8650:-473657,-710414 +(1,8650:-473657,-710414:65781,0,65781 +g1,8650:-407876,-710414 +[1,8650:-407876,-644633:0,0,0 ] ) -k1,8645:-473657,-710414:-65781 +k1,8650:-473657,-710414:-65781 ) ) -k1,8645:25478599,-710414:25952256 -g1,8645:25478599,-710414 +k1,8650:25478599,-710414:25952256 +g1,8650:25478599,-710414 ) ] ) -[1,8645:6630773,47279633:25952256,43253760,0 -[1,8645:6630773,4812305:25952256,786432,0 -(1,8645:6630773,4812305:25952256,513147,126483 -(1,8645:6630773,4812305:25952256,513147,126483 -g1,8645:3078558,4812305 -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,2439708:0,1703936,0 -k1,8645:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8645:2537886,2439708:1179648,16384,0 +[1,8650:6630773,47279633:25952256,43253760,0 +[1,8650:6630773,4812305:25952256,786432,0 +(1,8650:6630773,4812305:25952256,513147,126483 +(1,8650:6630773,4812305:25952256,513147,126483 +g1,8650:3078558,4812305 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,2439708:0,1703936,0 +k1,8650:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8650:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8645:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8650:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,2439708:0,1703936,0 -g1,8645:29030814,2439708 -g1,8645:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8645:36151628,1915420:16384,1179648,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,2439708:0,1703936,0 +g1,8650:29030814,2439708 +g1,8650:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8650:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8645:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8650:37855564,2439708:1179648,16384,0 ) ) -k1,8645:3078556,2439708:-34777008 +k1,8650:3078556,2439708:-34777008 ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,49800853:0,16384,2228224 -k1,8645:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8645:2537886,49800853:1179648,16384,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,49800853:0,16384,2228224 +k1,8650:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8650:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8645:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8650:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,49800853:0,16384,2228224 -g1,8645:29030814,49800853 -g1,8645:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8645:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8645:37855564,49800853:1179648,16384,0 -) -) -k1,8645:3078556,49800853:-34777008 -) -] -g1,8645:6630773,4812305 -g1,8645:6630773,4812305 -g1,8645:8691224,4812305 -g1,8645:11722264,4812305 -k1,8645:31387652,4812305:19665388 -) -) -] -[1,8645:6630773,45706769:25952256,40108032,0 -(1,8645:6630773,45706769:25952256,40108032,0 -(1,8645:6630773,45706769:0,0,0 -g1,8645:6630773,45706769 -) -[1,8645:6630773,45706769:25952256,40108032,0 -(1,8353:6630773,6254097:25952256,513147,134348 -k1,8352:7469197,6254097:179132 -k1,8352:9287383,6254097:179131 -k1,8352:11863822,6254097:179132 -k1,8352:12694382,6254097:179132 -k1,8352:16066428,6254097:179132 -k1,8352:19329684,6254097:179132 -k1,8352:21383145,6254097:179131 -k1,8352:24964906,6254097:179132 -k1,8352:26174919,6254097:179132 -k1,8352:28719900,6254097:179131 -k1,8352:29918117,6254097:179132 -k1,8352:31923737,6254097:179132 -k1,8352:32583029,6254097:0 -) -(1,8353:6630773,7095585:25952256,505283,7863 -g1,8352:8033243,7095585 -k1,8353:32583029,7095585:22794076 -g1,8353:32583029,7095585 -) -v1,8355:6630773,8446196:0,393216,0 -(1,8381:6630773,26822190:25952256,18769210,616038 -g1,8381:6630773,26822190 -(1,8381:6630773,26822190:25952256,18769210,616038 -(1,8381:6630773,27438228:25952256,19385248,0 -[1,8381:6630773,27438228:25952256,19385248,0 -(1,8381:6630773,27412014:25952256,19332820,0 -r1,8381:6656987,27412014:26214,19332820,0 -[1,8381:6656987,27412014:25899828,19332820,0 -(1,8381:6656987,26822190:25899828,18153172,0 -[1,8381:7246811,26822190:24720180,18153172,0 -(1,8356:7246811,9754554:24720180,1085536,298548 -(1,8355:7246811,9754554:0,1085536,298548 -r1,8381:8753226,9754554:1506415,1384084,298548 -k1,8355:7246811,9754554:-1506415 -) -(1,8355:7246811,9754554:1506415,1085536,298548 -) -k1,8355:8964493,9754554:211267 -k1,8355:9590590,9754554:211254 -k1,8355:10934319,9754554:211267 -k1,8355:13193586,9754554:211267 -k1,8355:14536660,9754554:211267 -k1,8355:18719408,9754554:211266 -k1,8355:21173317,9754554:211267 -k1,8355:23372291,9754554:211267 -k1,8355:26300681,9754554:211267 -k1,8355:27978643,9754554:211266 -k1,8355:29887948,9754554:211267 -k1,8355:31118300,9754554:211267 -k1,8356:31966991,9754554:0 -) -(1,8356:7246811,10596042:24720180,513147,126483 -k1,8355:9019036,10596042:234750 -k1,8355:9913078,10596042:234750 -k1,8355:11166913,10596042:234750 -k1,8355:12089136,10596042:234750 -k1,8355:13315446,10596042:234750 -k1,8355:14616467,10596042:234750 -k1,8355:19155622,10596042:234750 -k1,8355:19860264,10596042:234749 -k1,8355:20626511,10596042:234750 -k1,8355:21846922,10596042:234750 -k1,8355:26231412,10596042:234750 -k1,8355:27082200,10596042:234750 -k1,8355:28302611,10596042:234750 -k1,8355:29886092,10596042:234750 -k1,8355:30720496,10596042:234750 -k1,8356:31966991,10596042:0 -) -(1,8356:7246811,11437530:24720180,513147,134348 -k1,8355:8545473,11437530:238289 -k1,8355:10061059,11437530:238289 -k1,8355:12500701,11437530:238288 -k1,8355:13784945,11437530:238289 -k1,8355:17815802,11437530:238289 -k1,8355:19250778,11437530:238289 -k1,8355:21090767,11437530:238289 -k1,8355:24280141,11437530:238288 -k1,8355:25709875,11437530:238289 -k1,8355:29462860,11437530:238289 -k1,8355:31966991,11437530:0 -) -(1,8356:7246811,12279018:24720180,513147,134348 -k1,8355:8050282,12279018:271974 -k1,8355:11571532,12279018:271975 -k1,8355:12791157,12279018:271974 -k1,8355:15719306,12279018:271975 -k1,8355:20104319,12279018:271974 -k1,8355:22694302,12279018:271975 -k1,8355:24250782,12279018:271974 -k1,8355:25514317,12279018:271975 -k1,8355:28258309,12279018:271974 -k1,8355:31966991,12279018:0 -) -(1,8356:7246811,13120506:24720180,473825,7863 -k1,8356:31966991,13120506:20750664 -g1,8356:31966991,13120506 -) -(1,8358:7246811,13961994:24720180,513147,134348 -h1,8357:7246811,13961994:983040,0,0 -k1,8357:10593243,13961994:299008 -k1,8357:13210259,13961994:299008 -k1,8357:14655492,13961994:299008 -k1,8357:16698413,13961994:299008 -k1,8357:18865852,13961994:299008 -k1,8357:19816289,13961994:299009 -k1,8357:21504660,13961994:299008 -k1,8357:23371289,13961994:299008 -k1,8357:24441000,13961994:299008 -k1,8357:28349076,13961994:299008 -k1,8357:30502753,13961994:299008 -k1,8357:31611131,13961994:299008 -k1,8357:31966991,13961994:0 -) -(1,8358:7246811,14803482:24720180,513147,134348 -k1,8357:10555366,14803482:202804 -k1,8357:13414344,14803482:202804 -k1,8357:15705781,14803482:202805 -k1,8357:18088968,14803482:202804 -k1,8357:19039538,14803482:202804 -k1,8357:21913589,14803482:202804 -k1,8357:22744228,14803482:202804 -k1,8357:24413728,14803482:202804 -k1,8357:26313915,14803482:202805 -k1,8357:28929755,14803482:202804 -k1,8357:30975431,14803482:202804 -k1,8357:31966991,14803482:0 -) -(1,8358:7246811,15644970:24720180,505283,134348 -k1,8357:10066038,15644970:173539 -k1,8357:11929096,15644970:173540 -k1,8357:16095744,15644970:173539 -k1,8357:20479316,15644970:173539 -k1,8357:21937361,15644970:173539 -k1,8357:24448570,15644970:173540 -k1,8357:25641194,15644970:173539 -k1,8357:28286751,15644970:173539 -k1,8357:29972862,15644970:173540 -k1,8357:31137961,15644970:173539 -k1,8358:31966991,15644970:0 -) -(1,8358:7246811,16486458:24720180,513147,126483 -k1,8357:9596168,16486458:206985 -k1,8357:10419190,16486458:206984 -k1,8357:11645260,16486458:206985 -k1,8357:14013621,16486458:206984 -k1,8357:15739075,16486458:206985 -k1,8357:18264068,16486458:206985 -k1,8357:19462612,16486458:206984 -k1,8357:20735868,16486458:206985 -k1,8357:25247257,16486458:206984 -k1,8357:26140404,16486458:206985 -k1,8357:27366473,16486458:206984 -k1,8357:30399370,16486458:206985 -k1,8357:31966991,16486458:0 -) -(1,8358:7246811,17327946:24720180,505283,134348 -k1,8357:8437010,17327946:171114 -k1,8357:11080143,17327946:171115 -k1,8357:13508317,17327946:171114 -k1,8357:15192658,17327946:171115 -k1,8357:17101787,17327946:171114 -k1,8357:20914082,17327946:171115 -k1,8357:23095185,17327946:171114 -k1,8357:24285385,17327946:171115 -k1,8357:27674317,17327946:171114 -k1,8357:29861975,17327946:171115 -k1,8358:31966991,17327946:0 -) -(1,8358:7246811,18169434:24720180,513147,134348 -g1,8357:8693190,18169434 -g1,8357:10401058,18169434 -g1,8357:13460934,18169434 -g1,8357:17397681,18169434 -g1,8357:18788355,18169434 -g1,8357:22268316,18169434 -k1,8358:31966991,18169434:6478891 -g1,8358:31966991,18169434 -) -v1,8360:7246811,19359900:0,393216,0 -(1,8365:7246811,20267250:24720180,1300566,196608 -g1,8365:7246811,20267250 -g1,8365:7246811,20267250 -g1,8365:7050203,20267250 -(1,8365:7050203,20267250:0,1300566,196608 -r1,8381:32163599,20267250:25113396,1497174,196608 -k1,8365:7050203,20267250:-25113396 -) -(1,8365:7050203,20267250:25113396,1300566,196608 -[1,8365:7246811,20267250:24720180,1103958,0 -(1,8362:7246811,19499885:24720180,336593,101187 -(1,8361:7246811,19499885:0,0,0 -g1,8361:7246811,19499885 -g1,8361:7246811,19499885 -g1,8361:6919131,19499885 -(1,8361:6919131,19499885:0,0,0 -) -g1,8361:7246811,19499885 -) -g1,8362:7879103,19499885 -g1,8362:8511395,19499885 -g1,8362:9143687,19499885 -g1,8362:9775979,19499885 -g1,8362:10408271,19499885 -g1,8362:11040563,19499885 -g1,8362:12305147,19499885 -g1,8362:12937439,19499885 -g1,8362:14202023,19499885 -g1,8362:14834315,19499885 -h1,8362:15782753,19499885:0,0,0 -k1,8362:31966991,19499885:16184238 -g1,8362:31966991,19499885 -) -(1,8363:7246811,20166063:24720180,336593,101187 -h1,8363:7246811,20166063:0,0,0 -g1,8363:7879103,20166063 -g1,8363:8511395,20166063 -g1,8363:9143687,20166063 -g1,8363:9775979,20166063 -g1,8363:10408271,20166063 -g1,8363:11040563,20166063 -g1,8363:11672855,20166063 -g1,8363:12305147,20166063 -g1,8363:13569731,20166063 -g1,8363:14202023,20166063 -g1,8363:15466607,20166063 -g1,8363:16098899,20166063 -h1,8363:17679629,20166063:0,0,0 -k1,8363:31966991,20166063:14287362 -g1,8363:31966991,20166063 -) -] -) -g1,8365:31966991,20267250 -g1,8365:7246811,20267250 -g1,8365:7246811,20267250 -g1,8365:31966991,20267250 -g1,8365:31966991,20267250 -) -h1,8365:7246811,20463858:0,0,0 -(1,8369:7246811,21829634:24720180,513147,126483 -h1,8368:7246811,21829634:983040,0,0 -k1,8368:9070459,21829634:212773 -k1,8368:11914504,21829634:212774 -k1,8368:12778705,21829634:212773 -k1,8368:14735392,21829634:212774 -k1,8368:16977160,21829634:212773 -k1,8368:18209019,21829634:212774 -k1,8368:20739800,21829634:212773 -k1,8368:22821004,21829634:212773 -k1,8368:24025338,21829634:212774 -k1,8368:28542516,21829634:212773 -k1,8368:30221986,21829634:212774 -k1,8368:30900720,21829634:212773 -k1,8368:31966991,21829634:0 -) -(1,8369:7246811,22671122:24720180,513147,134348 -g1,8368:9136214,22671122 -g1,8368:11653451,22671122 -g1,8368:13126045,22671122 -g1,8368:16305851,22671122 -g1,8368:17271196,22671122 -g1,8368:20100385,22671122 -k1,8369:31966991,22671122:7689997 -g1,8369:31966991,22671122 -) -v1,8371:7246811,23861588:0,393216,0 -(1,8378:7246811,26101294:24720180,2632922,196608 -g1,8378:7246811,26101294 -g1,8378:7246811,26101294 -g1,8378:7050203,26101294 -(1,8378:7050203,26101294:0,2632922,196608 -r1,8381:32163599,26101294:25113396,2829530,196608 -k1,8378:7050203,26101294:-25113396 -) -(1,8378:7050203,26101294:25113396,2632922,196608 -[1,8378:7246811,26101294:24720180,2436314,0 -(1,8373:7246811,24001573:24720180,336593,101187 -(1,8372:7246811,24001573:0,0,0 -g1,8372:7246811,24001573 -g1,8372:7246811,24001573 -g1,8372:6919131,24001573 -(1,8372:6919131,24001573:0,0,0 -) -g1,8372:7246811,24001573 -) -g1,8373:7879103,24001573 -g1,8373:8511395,24001573 -g1,8373:9143687,24001573 -g1,8373:9775979,24001573 -g1,8373:10408271,24001573 -g1,8373:11040563,24001573 -g1,8373:11672855,24001573 -g1,8373:12305147,24001573 -g1,8373:13569731,24001573 -g1,8373:14202023,24001573 -g1,8373:15466607,24001573 -g1,8373:16098899,24001573 -h1,8373:17047337,24001573:0,0,0 -k1,8373:31966991,24001573:14919654 -g1,8373:31966991,24001573 -) -(1,8374:7246811,24667751:24720180,404226,101187 -h1,8374:7246811,24667751:0,0,0 -g1,8374:7879103,24667751 -g1,8374:8511395,24667751 -g1,8374:9459832,24667751 -g1,8374:10092124,24667751 -g1,8374:10724416,24667751 -g1,8374:11356708,24667751 -h1,8374:12621291,24667751:0,0,0 -k1,8374:31966991,24667751:19345700 -g1,8374:31966991,24667751 -) -(1,8375:7246811,25333929:24720180,336593,101187 -h1,8375:7246811,25333929:0,0,0 -g1,8375:7879103,25333929 -g1,8375:8511395,25333929 -g1,8375:9143687,25333929 -g1,8375:9775979,25333929 -g1,8375:10408271,25333929 -g1,8375:11040563,25333929 -g1,8375:11672855,25333929 -g1,8375:12305147,25333929 -h1,8375:13253585,25333929:0,0,0 -k1,8375:31966991,25333929:18713406 -g1,8375:31966991,25333929 -) -(1,8376:7246811,26000107:24720180,336593,101187 -h1,8376:7246811,26000107:0,0,0 -g1,8376:7879103,26000107 -g1,8376:8511395,26000107 -g1,8376:9143687,26000107 -g1,8376:9775979,26000107 -g1,8376:10408271,26000107 -g1,8376:11040563,26000107 -h1,8376:11356709,26000107:0,0,0 -k1,8376:31966991,26000107:20610282 -g1,8376:31966991,26000107 -) -] -) -g1,8378:31966991,26101294 -g1,8378:7246811,26101294 -g1,8378:7246811,26101294 -g1,8378:31966991,26101294 -g1,8378:31966991,26101294 -) -h1,8378:7246811,26297902:0,0,0 -] -) -] -r1,8381:32583029,27412014:26214,19332820,0 -) -] -) -) -g1,8381:32583029,26822190 -) -h1,8381:6630773,27438228:0,0,0 -(1,8384:6630773,28788839:25952256,505283,134348 -h1,8383:6630773,28788839:983040,0,0 -k1,8383:8727510,28788839:295808 -k1,8383:10463145,28788839:295809 -k1,8383:11374991,28788839:295808 -k1,8383:14088423,28788839:295809 -h1,8383:14486882,28788839:0,0,0 -k1,8383:14956360,28788839:295808 -k1,8383:17414857,28788839:295809 -k1,8383:21073973,28788839:295808 -k1,8383:21985819,28788839:295808 -k1,8383:23300713,28788839:295809 -k1,8383:24011267,28788839:295711 -k1,8383:27149372,28788839:295809 -k1,8383:27976677,28788839:295808 -k1,8383:29043189,28788839:295809 -k1,8383:31298523,28788839:295808 -k1,8383:32583029,28788839:0 -) -(1,8384:6630773,29630327:25952256,513147,134348 -k1,8383:7954491,29630327:219436 -k1,8383:8921694,29630327:219437 -k1,8383:11179300,29630327:219436 -k1,8383:12590181,29630327:219436 -k1,8383:16996712,29630327:219436 -k1,8383:19147495,29630327:219437 -k1,8383:22240685,29630327:219436 -k1,8383:23451681,29630327:219436 -k1,8383:24956933,29630327:219436 -k1,8383:27639868,29630327:219437 -k1,8383:30149132,29630327:219436 -k1,8383:31027860,29630327:219436 -k1,8384:32583029,29630327:0 -) -(1,8384:6630773,30471815:25952256,459977,115847 -(1,8383:6630773,30471815:0,459977,115847 -r1,8383:9802733,30471815:3171960,575824,115847 -k1,8383:6630773,30471815:-3171960 -) -(1,8383:6630773,30471815:3171960,459977,115847 -k1,8383:6630773,30471815:3277 -h1,8383:9799456,30471815:0,411205,112570 -) -k1,8384:32583029,30471815:22606626 -g1,8384:32583029,30471815 -) -v1,8386:6630773,31647116:0,393216,0 -(1,8393:6630773,32662469:25952256,1408569,196608 -g1,8393:6630773,32662469 -g1,8393:6630773,32662469 -g1,8393:6434165,32662469 -(1,8393:6434165,32662469:0,1408569,196608 -r1,8393:32779637,32662469:26345472,1605177,196608 -k1,8393:6434165,32662469:-26345472 -) -(1,8393:6434165,32662469:26345472,1408569,196608 -[1,8393:6630773,32662469:25952256,1211961,0 -(1,8388:6630773,31854734:25952256,404226,101187 -(1,8387:6630773,31854734:0,0,0 -g1,8387:6630773,31854734 -g1,8387:6630773,31854734 -g1,8387:6303093,31854734 -(1,8387:6303093,31854734:0,0,0 -) -g1,8387:6630773,31854734 -) -k1,8388:6630773,31854734:0 -g1,8388:9159938,31854734 -g1,8388:9792230,31854734 -h1,8388:10424521,31854734:0,0,0 -k1,8388:32583029,31854734:22158508 -g1,8388:32583029,31854734 -) -(1,8392:6630773,32586448:25952256,410518,76021 -(1,8390:6630773,32586448:0,0,0 -g1,8390:6630773,32586448 -g1,8390:6630773,32586448 -g1,8390:6303093,32586448 -(1,8390:6303093,32586448:0,0,0 -) -g1,8390:6630773,32586448 -) -g1,8392:7579210,32586448 -g1,8392:8843793,32586448 -h1,8392:11689104,32586448:0,0,0 -k1,8392:32583028,32586448:20893924 -g1,8392:32583028,32586448 -) -] -) -g1,8393:32583029,32662469 -g1,8393:6630773,32662469 -g1,8393:6630773,32662469 -g1,8393:32583029,32662469 -g1,8393:32583029,32662469 -) -h1,8393:6630773,32859077:0,0,0 -v1,8397:6630773,34543501:0,393216,0 -(1,8405:6630773,36114407:25952256,1964122,196608 -g1,8405:6630773,36114407 -g1,8405:6630773,36114407 -g1,8405:6434165,36114407 -(1,8405:6434165,36114407:0,1964122,196608 -r1,8405:32779637,36114407:26345472,2160730,196608 -k1,8405:6434165,36114407:-26345472 -) -(1,8405:6434165,36114407:26345472,1964122,196608 -[1,8405:6630773,36114407:25952256,1767514,0 -(1,8399:6630773,34640494:25952256,293601,101187 -(1,8398:6630773,34640494:0,0,0 -g1,8398:6630773,34640494 -g1,8398:6630773,34640494 -g1,8398:6303093,34640494 -(1,8398:6303093,34640494:0,0,0 -) -g1,8398:6630773,34640494 -) -g1,8399:7263065,34640494 -g1,8399:8211503,34640494 -g1,8399:8843795,34640494 -g1,8399:9476087,34640494 -h1,8399:9792233,34640494:0,0,0 -k1,8399:32583029,34640494:22790796 -g1,8399:32583029,34640494 -) -(1,8400:6630773,35306672:25952256,404226,76021 -h1,8400:6630773,35306672:0,0,0 -k1,8400:6630773,35306672:0 -h1,8400:9159938,35306672:0,0,0 -k1,8400:32583030,35306672:23423092 -g1,8400:32583030,35306672 -) -(1,8404:6630773,36038386:25952256,410518,76021 -(1,8402:6630773,36038386:0,0,0 -g1,8402:6630773,36038386 -g1,8402:6630773,36038386 -g1,8402:6303093,36038386 -(1,8402:6303093,36038386:0,0,0 -) -g1,8402:6630773,36038386 -) -g1,8404:7579210,36038386 -g1,8404:8843793,36038386 -h1,8404:11689104,36038386:0,0,0 -k1,8404:32583028,36038386:20893924 -g1,8404:32583028,36038386 -) -] -) -g1,8405:32583029,36114407 -g1,8405:6630773,36114407 -g1,8405:6630773,36114407 -g1,8405:32583029,36114407 -g1,8405:32583029,36114407 -) -h1,8405:6630773,36311015:0,0,0 -(1,8409:6630773,37661626:25952256,513147,126483 -h1,8408:6630773,37661626:983040,0,0 -k1,8408:9659889,37661626:213689 -k1,8408:10405076,37661626:213690 -k1,8408:11428135,37661626:213689 -k1,8408:14096148,37661626:213690 -(1,8408:14096148,37661626:0,459977,115847 -r1,8408:18323244,37661626:4227096,575824,115847 -k1,8408:14096148,37661626:-4227096 -) -(1,8408:14096148,37661626:4227096,459977,115847 -k1,8408:14096148,37661626:3277 -h1,8408:18319967,37661626:0,411205,112570 -) -k1,8408:18536933,37661626:213689 -k1,8408:19366660,37661626:213689 -k1,8408:21014278,37661626:213690 -k1,8408:21816480,37661626:213689 -k1,8408:23102339,37661626:213690 -k1,8408:24184380,37661626:213689 -k1,8408:25502351,37661626:213689 -k1,8408:27516970,37661626:213690 -k1,8408:28922104,37661626:213689 -k1,8408:30154879,37661626:213690 -k1,8408:31923737,37661626:213689 -k1,8408:32583029,37661626:0 -) -(1,8409:6630773,38503114:25952256,505283,134348 -g1,8408:7600705,38503114 -g1,8408:9759460,38503114 -g1,8408:11352640,38503114 -(1,8408:11352640,38503114:0,452978,115847 -r1,8408:14876312,38503114:3523672,568825,115847 -k1,8408:11352640,38503114:-3523672 -) -(1,8408:11352640,38503114:3523672,452978,115847 -k1,8408:11352640,38503114:3277 -h1,8408:14873035,38503114:0,411205,112570 -) -k1,8409:32583030,38503114:17533048 -g1,8409:32583030,38503114 -) -v1,8411:6630773,39678415:0,393216,0 -(1,8418:6630773,40700060:25952256,1414861,196608 -g1,8418:6630773,40700060 -g1,8418:6630773,40700060 -g1,8418:6434165,40700060 -(1,8418:6434165,40700060:0,1414861,196608 -r1,8418:32779637,40700060:26345472,1611469,196608 -k1,8418:6434165,40700060:-26345472 -) -(1,8418:6434165,40700060:26345472,1414861,196608 -[1,8418:6630773,40700060:25952256,1218253,0 -(1,8413:6630773,39892325:25952256,410518,82312 -(1,8412:6630773,39892325:0,0,0 -g1,8412:6630773,39892325 -g1,8412:6630773,39892325 -g1,8412:6303093,39892325 -(1,8412:6303093,39892325:0,0,0 -) -g1,8412:6630773,39892325 -) -k1,8413:6630773,39892325:0 -g1,8413:10424521,39892325 -h1,8413:13585978,39892325:0,0,0 -k1,8413:32583030,39892325:18997052 -g1,8413:32583030,39892325 -) -(1,8417:6630773,40624039:25952256,404226,76021 -(1,8415:6630773,40624039:0,0,0 -g1,8415:6630773,40624039 -g1,8415:6630773,40624039 -g1,8415:6303093,40624039 -(1,8415:6303093,40624039:0,0,0 -) -g1,8415:6630773,40624039 -) -g1,8417:7579210,40624039 -g1,8417:8843793,40624039 -h1,8417:10108376,40624039:0,0,0 -k1,8417:32583028,40624039:22474652 -g1,8417:32583028,40624039 -) -] -) -g1,8418:32583029,40700060 -g1,8418:6630773,40700060 -g1,8418:6630773,40700060 -g1,8418:32583029,40700060 -g1,8418:32583029,40700060 -) -h1,8418:6630773,40896668:0,0,0 -v1,8422:6630773,42756402:0,393216,0 -(1,8645:6630773,45116945:25952256,2753759,589824 -g1,8645:6630773,45116945 -(1,8645:6630773,45116945:25952256,2753759,589824 -(1,8645:6630773,45706769:25952256,3343583,0 -[1,8645:6630773,45706769:25952256,3343583,0 -(1,8645:6630773,45706769:25952256,3317369,0 -r1,8645:6656987,45706769:26214,3317369,0 -[1,8645:6656987,45706769:25899828,3317369,0 -(1,8645:6656987,45116945:25899828,2137721,0 -[1,8645:7246811,45116945:24720180,2137721,0 -(1,8423:7246811,44141109:24720180,1161885,196608 -(1,8422:7246811,44141109:0,1161885,196608 -r1,8645:8794447,44141109:1547636,1358493,196608 -k1,8422:7246811,44141109:-1547636 -) -(1,8422:7246811,44141109:1547636,1161885,196608 -) -k1,8422:8972858,44141109:178411 -k1,8422:8972858,44141109:0 -k1,8422:13488549,44141109:183106 -k1,8422:14348642,44141109:183106 -k1,8422:16578437,44141109:183106 -k1,8422:19893401,44141109:178411 -k1,8422:22600191,44141109:178411 -k1,8422:23981843,44141109:178411 -k1,8422:24691751,44141109:178411 -k1,8422:25226022,44141109:178411 -k1,8422:26986472,44141109:178411 -k1,8422:28987439,44141109:178411 -k1,8422:30184935,44141109:178411 -k1,8422:30778168,44141109:178390 -k1,8423:31966991,44141109:0 -) -(1,8423:7246811,44982597:24720180,513147,134348 -k1,8422:9472056,44982597:185109 -k1,8422:10115263,44982597:185110 -k1,8422:10831869,44982597:185109 -k1,8422:13965443,44982597:185109 -k1,8422:14801980,44982597:185109 -k1,8422:17656371,44982597:185110 -k1,8422:19171861,44982597:185109 -k1,8422:22230724,44982597:185109 -k1,8422:23520115,44982597:185109 -k1,8422:24452991,44982597:185110 -k1,8422:28825195,44982597:185109 -k1,8422:31966991,44982597:0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,49800853:0,16384,2228224 +g1,8650:29030814,49800853 +g1,8650:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8650:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8650:37855564,49800853:1179648,16384,0 +) +) +k1,8650:3078556,49800853:-34777008 +) +] +g1,8650:6630773,4812305 +g1,8650:6630773,4812305 +g1,8650:8691224,4812305 +g1,8650:11722264,4812305 +k1,8650:31387652,4812305:19665388 +) +) +] +[1,8650:6630773,45706769:25952256,40108032,0 +(1,8650:6630773,45706769:25952256,40108032,0 +(1,8650:6630773,45706769:0,0,0 +g1,8650:6630773,45706769 +) +[1,8650:6630773,45706769:25952256,40108032,0 +(1,8358:6630773,6254097:25952256,513147,134348 +k1,8357:7469197,6254097:179132 +k1,8357:9287383,6254097:179131 +k1,8357:11863822,6254097:179132 +k1,8357:12694382,6254097:179132 +k1,8357:16066428,6254097:179132 +k1,8357:19329684,6254097:179132 +k1,8357:21383145,6254097:179131 +k1,8357:24964906,6254097:179132 +k1,8357:26174919,6254097:179132 +k1,8357:28719900,6254097:179131 +k1,8357:29918117,6254097:179132 +k1,8357:31923737,6254097:179132 +k1,8357:32583029,6254097:0 +) +(1,8358:6630773,7095585:25952256,505283,7863 +g1,8357:8033243,7095585 +k1,8358:32583029,7095585:22794076 +g1,8358:32583029,7095585 +) +v1,8360:6630773,8446196:0,393216,0 +(1,8386:6630773,26822190:25952256,18769210,616038 +g1,8386:6630773,26822190 +(1,8386:6630773,26822190:25952256,18769210,616038 +(1,8386:6630773,27438228:25952256,19385248,0 +[1,8386:6630773,27438228:25952256,19385248,0 +(1,8386:6630773,27412014:25952256,19332820,0 +r1,8386:6656987,27412014:26214,19332820,0 +[1,8386:6656987,27412014:25899828,19332820,0 +(1,8386:6656987,26822190:25899828,18153172,0 +[1,8386:7246811,26822190:24720180,18153172,0 +(1,8361:7246811,9754554:24720180,1085536,298548 +(1,8360:7246811,9754554:0,1085536,298548 +r1,8386:8753226,9754554:1506415,1384084,298548 +k1,8360:7246811,9754554:-1506415 +) +(1,8360:7246811,9754554:1506415,1085536,298548 +) +k1,8360:8964493,9754554:211267 +k1,8360:9590590,9754554:211254 +k1,8360:10934319,9754554:211267 +k1,8360:13193586,9754554:211267 +k1,8360:14536660,9754554:211267 +k1,8360:18719408,9754554:211266 +k1,8360:21173317,9754554:211267 +k1,8360:23372291,9754554:211267 +k1,8360:26300681,9754554:211267 +k1,8360:27978643,9754554:211266 +k1,8360:29887948,9754554:211267 +k1,8360:31118300,9754554:211267 +k1,8361:31966991,9754554:0 +) +(1,8361:7246811,10596042:24720180,513147,126483 +k1,8360:9038260,10596042:253974 +k1,8360:9951526,10596042:253974 +k1,8360:11224585,10596042:253974 +k1,8360:12166031,10596042:253973 +k1,8360:13411565,10596042:253974 +k1,8360:14731810,10596042:253974 +k1,8360:19290189,10596042:253974 +k1,8360:20014056,10596042:253974 +k1,8360:20799527,10596042:253974 +k1,8360:22039162,10596042:253974 +k1,8360:26442876,10596042:253974 +k1,8360:27312887,10596042:253973 +k1,8360:28552522,10596042:253974 +k1,8360:30155227,10596042:253974 +k1,8360:31008855,10596042:253974 +k1,8361:31966991,10596042:0 +) +(1,8361:7246811,11437530:24720180,513147,134348 +k1,8360:8804995,11437530:209453 +k1,8360:10291745,11437530:209453 +k1,8360:12702552,11437530:209453 +k1,8360:13957960,11437530:209453 +k1,8360:17959981,11437530:209453 +k1,8360:19366121,11437530:209453 +k1,8360:21177274,11437530:209453 +k1,8360:24337813,11437530:209453 +k1,8360:25738711,11437530:209453 +k1,8360:29462860,11437530:209453 +k1,8360:31966991,11437530:0 +) +(1,8361:7246811,12279018:24720180,513147,134348 +k1,8360:8050282,12279018:271974 +k1,8360:11571532,12279018:271975 +k1,8360:12791157,12279018:271974 +k1,8360:15719306,12279018:271975 +k1,8360:20104319,12279018:271974 +k1,8360:22694302,12279018:271975 +k1,8360:24250782,12279018:271974 +k1,8360:25514317,12279018:271975 +k1,8360:28258309,12279018:271974 +k1,8360:31966991,12279018:0 +) +(1,8361:7246811,13120506:24720180,473825,7863 +k1,8361:31966991,13120506:20750664 +g1,8361:31966991,13120506 +) +(1,8363:7246811,13961994:24720180,513147,134348 +h1,8362:7246811,13961994:983040,0,0 +k1,8362:10593243,13961994:299008 +k1,8362:13210259,13961994:299008 +k1,8362:14655492,13961994:299008 +k1,8362:16698413,13961994:299008 +k1,8362:18865852,13961994:299008 +k1,8362:19816289,13961994:299009 +k1,8362:21504660,13961994:299008 +k1,8362:23371289,13961994:299008 +k1,8362:24441000,13961994:299008 +k1,8362:28349076,13961994:299008 +k1,8362:30502753,13961994:299008 +k1,8362:31611131,13961994:299008 +k1,8362:31966991,13961994:0 +) +(1,8363:7246811,14803482:24720180,513147,134348 +k1,8362:10555366,14803482:202804 +k1,8362:13414344,14803482:202804 +k1,8362:15705781,14803482:202805 +k1,8362:18088968,14803482:202804 +k1,8362:19039538,14803482:202804 +k1,8362:21913589,14803482:202804 +k1,8362:22744228,14803482:202804 +k1,8362:24413728,14803482:202804 +k1,8362:26313915,14803482:202805 +k1,8362:28929755,14803482:202804 +k1,8362:30975431,14803482:202804 +k1,8362:31966991,14803482:0 +) +(1,8363:7246811,15644970:24720180,505283,134348 +k1,8362:10066038,15644970:173539 +k1,8362:11929096,15644970:173540 +k1,8362:16095744,15644970:173539 +k1,8362:20479316,15644970:173539 +k1,8362:21937361,15644970:173539 +k1,8362:24448570,15644970:173540 +k1,8362:25641194,15644970:173539 +k1,8362:28286751,15644970:173539 +k1,8362:29972862,15644970:173540 +k1,8362:31137961,15644970:173539 +k1,8363:31966991,15644970:0 +) +(1,8363:7246811,16486458:24720180,513147,126483 +k1,8362:9596168,16486458:206985 +k1,8362:10419190,16486458:206984 +k1,8362:11645260,16486458:206985 +k1,8362:14013621,16486458:206984 +k1,8362:15739075,16486458:206985 +k1,8362:18264068,16486458:206985 +k1,8362:19462612,16486458:206984 +k1,8362:20735868,16486458:206985 +k1,8362:25247257,16486458:206984 +k1,8362:26140404,16486458:206985 +k1,8362:27366473,16486458:206984 +k1,8362:30399370,16486458:206985 +k1,8362:31966991,16486458:0 +) +(1,8363:7246811,17327946:24720180,505283,134348 +k1,8362:8530989,17327946:265093 +k1,8362:11268100,17327946:265093 +k1,8362:13790253,17327946:265093 +k1,8362:15568572,17327946:265093 +k1,8362:17571681,17327946:265094 +k1,8362:21477954,17327946:265093 +k1,8362:23753036,17327946:265093 +k1,8362:25037214,17327946:265093 +k1,8362:28520125,17327946:265093 +k1,8362:30801761,17327946:265093 +k1,8363:31966991,17327946:0 +) +(1,8363:7246811,18169434:24720180,513147,134348 +g1,8362:9632976,18169434 +g1,8362:11340844,18169434 +g1,8362:14400720,18169434 +g1,8362:18337467,18169434 +g1,8362:19728141,18169434 +g1,8362:23208102,18169434 +k1,8363:31966991,18169434:5539105 +g1,8363:31966991,18169434 +) +v1,8365:7246811,19359900:0,393216,0 +(1,8370:7246811,20267250:24720180,1300566,196608 +g1,8370:7246811,20267250 +g1,8370:7246811,20267250 +g1,8370:7050203,20267250 +(1,8370:7050203,20267250:0,1300566,196608 +r1,8386:32163599,20267250:25113396,1497174,196608 +k1,8370:7050203,20267250:-25113396 +) +(1,8370:7050203,20267250:25113396,1300566,196608 +[1,8370:7246811,20267250:24720180,1103958,0 +(1,8367:7246811,19499885:24720180,336593,101187 +(1,8366:7246811,19499885:0,0,0 +g1,8366:7246811,19499885 +g1,8366:7246811,19499885 +g1,8366:6919131,19499885 +(1,8366:6919131,19499885:0,0,0 +) +g1,8366:7246811,19499885 +) +g1,8367:7879103,19499885 +g1,8367:8511395,19499885 +g1,8367:9143687,19499885 +g1,8367:9775979,19499885 +g1,8367:10408271,19499885 +g1,8367:11040563,19499885 +g1,8367:12305147,19499885 +g1,8367:12937439,19499885 +g1,8367:14202023,19499885 +g1,8367:14834315,19499885 +h1,8367:15782753,19499885:0,0,0 +k1,8367:31966991,19499885:16184238 +g1,8367:31966991,19499885 +) +(1,8368:7246811,20166063:24720180,336593,101187 +h1,8368:7246811,20166063:0,0,0 +g1,8368:7879103,20166063 +g1,8368:8511395,20166063 +g1,8368:9143687,20166063 +g1,8368:9775979,20166063 +g1,8368:10408271,20166063 +g1,8368:11040563,20166063 +g1,8368:11672855,20166063 +g1,8368:12305147,20166063 +g1,8368:13569731,20166063 +g1,8368:14202023,20166063 +g1,8368:15466607,20166063 +g1,8368:16098899,20166063 +h1,8368:17679629,20166063:0,0,0 +k1,8368:31966991,20166063:14287362 +g1,8368:31966991,20166063 +) +] +) +g1,8370:31966991,20267250 +g1,8370:7246811,20267250 +g1,8370:7246811,20267250 +g1,8370:31966991,20267250 +g1,8370:31966991,20267250 +) +h1,8370:7246811,20463858:0,0,0 +(1,8374:7246811,21829634:24720180,513147,126483 +h1,8373:7246811,21829634:983040,0,0 +k1,8373:9070459,21829634:212773 +k1,8373:11914504,21829634:212774 +k1,8373:12778705,21829634:212773 +k1,8373:14735392,21829634:212774 +k1,8373:16977160,21829634:212773 +k1,8373:18209019,21829634:212774 +k1,8373:20739800,21829634:212773 +k1,8373:22821004,21829634:212773 +k1,8373:24025338,21829634:212774 +k1,8373:28542516,21829634:212773 +k1,8373:30221986,21829634:212774 +k1,8373:30900720,21829634:212773 +k1,8373:31966991,21829634:0 +) +(1,8374:7246811,22671122:24720180,513147,134348 +g1,8373:9136214,22671122 +g1,8373:11653451,22671122 +g1,8373:13126045,22671122 +g1,8373:16305851,22671122 +g1,8373:17271196,22671122 +g1,8373:20100385,22671122 +k1,8374:31966991,22671122:7689997 +g1,8374:31966991,22671122 +) +v1,8376:7246811,23861588:0,393216,0 +(1,8383:7246811,26101294:24720180,2632922,196608 +g1,8383:7246811,26101294 +g1,8383:7246811,26101294 +g1,8383:7050203,26101294 +(1,8383:7050203,26101294:0,2632922,196608 +r1,8386:32163599,26101294:25113396,2829530,196608 +k1,8383:7050203,26101294:-25113396 +) +(1,8383:7050203,26101294:25113396,2632922,196608 +[1,8383:7246811,26101294:24720180,2436314,0 +(1,8378:7246811,24001573:24720180,336593,101187 +(1,8377:7246811,24001573:0,0,0 +g1,8377:7246811,24001573 +g1,8377:7246811,24001573 +g1,8377:6919131,24001573 +(1,8377:6919131,24001573:0,0,0 +) +g1,8377:7246811,24001573 +) +g1,8378:7879103,24001573 +g1,8378:8511395,24001573 +g1,8378:9143687,24001573 +g1,8378:9775979,24001573 +g1,8378:10408271,24001573 +g1,8378:11040563,24001573 +g1,8378:11672855,24001573 +g1,8378:12305147,24001573 +g1,8378:13569731,24001573 +g1,8378:14202023,24001573 +g1,8378:15466607,24001573 +g1,8378:16098899,24001573 +h1,8378:17047337,24001573:0,0,0 +k1,8378:31966991,24001573:14919654 +g1,8378:31966991,24001573 +) +(1,8379:7246811,24667751:24720180,404226,101187 +h1,8379:7246811,24667751:0,0,0 +g1,8379:7879103,24667751 +g1,8379:8511395,24667751 +g1,8379:9459832,24667751 +g1,8379:10092124,24667751 +g1,8379:10724416,24667751 +g1,8379:11356708,24667751 +h1,8379:12621291,24667751:0,0,0 +k1,8379:31966991,24667751:19345700 +g1,8379:31966991,24667751 +) +(1,8380:7246811,25333929:24720180,336593,101187 +h1,8380:7246811,25333929:0,0,0 +g1,8380:7879103,25333929 +g1,8380:8511395,25333929 +g1,8380:9143687,25333929 +g1,8380:9775979,25333929 +g1,8380:10408271,25333929 +g1,8380:11040563,25333929 +g1,8380:11672855,25333929 +g1,8380:12305147,25333929 +h1,8380:13253585,25333929:0,0,0 +k1,8380:31966991,25333929:18713406 +g1,8380:31966991,25333929 +) +(1,8381:7246811,26000107:24720180,336593,101187 +h1,8381:7246811,26000107:0,0,0 +g1,8381:7879103,26000107 +g1,8381:8511395,26000107 +g1,8381:9143687,26000107 +g1,8381:9775979,26000107 +g1,8381:10408271,26000107 +g1,8381:11040563,26000107 +h1,8381:11356709,26000107:0,0,0 +k1,8381:31966991,26000107:20610282 +g1,8381:31966991,26000107 +) +] +) +g1,8383:31966991,26101294 +g1,8383:7246811,26101294 +g1,8383:7246811,26101294 +g1,8383:31966991,26101294 +g1,8383:31966991,26101294 +) +h1,8383:7246811,26297902:0,0,0 +] +) +] +r1,8386:32583029,27412014:26214,19332820,0 +) +] +) +) +g1,8386:32583029,26822190 +) +h1,8386:6630773,27438228:0,0,0 +(1,8389:6630773,28788839:25952256,505283,134348 +h1,8388:6630773,28788839:983040,0,0 +k1,8388:8727510,28788839:295808 +k1,8388:10463145,28788839:295809 +k1,8388:11374991,28788839:295808 +k1,8388:14088423,28788839:295809 +h1,8388:14486882,28788839:0,0,0 +k1,8388:14956360,28788839:295808 +k1,8388:17414857,28788839:295809 +k1,8388:21073973,28788839:295808 +k1,8388:21985819,28788839:295808 +k1,8388:23300713,28788839:295809 +k1,8388:24011267,28788839:295711 +k1,8388:27149372,28788839:295809 +k1,8388:27976677,28788839:295808 +k1,8388:29043189,28788839:295809 +k1,8388:31298523,28788839:295808 +k1,8388:32583029,28788839:0 +) +(1,8389:6630773,29630327:25952256,513147,134348 +k1,8388:7954491,29630327:219436 +k1,8388:8921694,29630327:219437 +k1,8388:11179300,29630327:219436 +k1,8388:12590181,29630327:219436 +k1,8388:16996712,29630327:219436 +k1,8388:19147495,29630327:219437 +k1,8388:22240685,29630327:219436 +k1,8388:23451681,29630327:219436 +k1,8388:24956933,29630327:219436 +k1,8388:27639868,29630327:219437 +k1,8388:30149132,29630327:219436 +k1,8388:31027860,29630327:219436 +k1,8389:32583029,29630327:0 +) +(1,8389:6630773,30471815:25952256,459977,115847 +(1,8388:6630773,30471815:0,459977,115847 +r1,8388:9802733,30471815:3171960,575824,115847 +k1,8388:6630773,30471815:-3171960 +) +(1,8388:6630773,30471815:3171960,459977,115847 +k1,8388:6630773,30471815:3277 +h1,8388:9799456,30471815:0,411205,112570 +) +k1,8389:32583029,30471815:22606626 +g1,8389:32583029,30471815 +) +v1,8391:6630773,31647116:0,393216,0 +(1,8398:6630773,32662469:25952256,1408569,196608 +g1,8398:6630773,32662469 +g1,8398:6630773,32662469 +g1,8398:6434165,32662469 +(1,8398:6434165,32662469:0,1408569,196608 +r1,8398:32779637,32662469:26345472,1605177,196608 +k1,8398:6434165,32662469:-26345472 +) +(1,8398:6434165,32662469:26345472,1408569,196608 +[1,8398:6630773,32662469:25952256,1211961,0 +(1,8393:6630773,31854734:25952256,404226,101187 +(1,8392:6630773,31854734:0,0,0 +g1,8392:6630773,31854734 +g1,8392:6630773,31854734 +g1,8392:6303093,31854734 +(1,8392:6303093,31854734:0,0,0 +) +g1,8392:6630773,31854734 +) +k1,8393:6630773,31854734:0 +g1,8393:9159938,31854734 +g1,8393:9792230,31854734 +h1,8393:10424521,31854734:0,0,0 +k1,8393:32583029,31854734:22158508 +g1,8393:32583029,31854734 +) +(1,8397:6630773,32586448:25952256,410518,76021 +(1,8395:6630773,32586448:0,0,0 +g1,8395:6630773,32586448 +g1,8395:6630773,32586448 +g1,8395:6303093,32586448 +(1,8395:6303093,32586448:0,0,0 +) +g1,8395:6630773,32586448 +) +g1,8397:7579210,32586448 +g1,8397:8843793,32586448 +h1,8397:11689104,32586448:0,0,0 +k1,8397:32583028,32586448:20893924 +g1,8397:32583028,32586448 +) +] +) +g1,8398:32583029,32662469 +g1,8398:6630773,32662469 +g1,8398:6630773,32662469 +g1,8398:32583029,32662469 +g1,8398:32583029,32662469 +) +h1,8398:6630773,32859077:0,0,0 +v1,8402:6630773,34543501:0,393216,0 +(1,8410:6630773,36114407:25952256,1964122,196608 +g1,8410:6630773,36114407 +g1,8410:6630773,36114407 +g1,8410:6434165,36114407 +(1,8410:6434165,36114407:0,1964122,196608 +r1,8410:32779637,36114407:26345472,2160730,196608 +k1,8410:6434165,36114407:-26345472 +) +(1,8410:6434165,36114407:26345472,1964122,196608 +[1,8410:6630773,36114407:25952256,1767514,0 +(1,8404:6630773,34640494:25952256,293601,101187 +(1,8403:6630773,34640494:0,0,0 +g1,8403:6630773,34640494 +g1,8403:6630773,34640494 +g1,8403:6303093,34640494 +(1,8403:6303093,34640494:0,0,0 +) +g1,8403:6630773,34640494 +) +g1,8404:7263065,34640494 +g1,8404:8211503,34640494 +g1,8404:8843795,34640494 +g1,8404:9476087,34640494 +h1,8404:9792233,34640494:0,0,0 +k1,8404:32583029,34640494:22790796 +g1,8404:32583029,34640494 +) +(1,8405:6630773,35306672:25952256,404226,76021 +h1,8405:6630773,35306672:0,0,0 +k1,8405:6630773,35306672:0 +h1,8405:9159938,35306672:0,0,0 +k1,8405:32583030,35306672:23423092 +g1,8405:32583030,35306672 +) +(1,8409:6630773,36038386:25952256,410518,76021 +(1,8407:6630773,36038386:0,0,0 +g1,8407:6630773,36038386 +g1,8407:6630773,36038386 +g1,8407:6303093,36038386 +(1,8407:6303093,36038386:0,0,0 +) +g1,8407:6630773,36038386 +) +g1,8409:7579210,36038386 +g1,8409:8843793,36038386 +h1,8409:11689104,36038386:0,0,0 +k1,8409:32583028,36038386:20893924 +g1,8409:32583028,36038386 +) +] +) +g1,8410:32583029,36114407 +g1,8410:6630773,36114407 +g1,8410:6630773,36114407 +g1,8410:32583029,36114407 +g1,8410:32583029,36114407 +) +h1,8410:6630773,36311015:0,0,0 +(1,8414:6630773,37661626:25952256,513147,126483 +h1,8413:6630773,37661626:983040,0,0 +k1,8413:9659889,37661626:213689 +k1,8413:10405076,37661626:213690 +k1,8413:11428135,37661626:213689 +k1,8413:14096148,37661626:213690 +(1,8413:14096148,37661626:0,459977,115847 +r1,8413:18323244,37661626:4227096,575824,115847 +k1,8413:14096148,37661626:-4227096 +) +(1,8413:14096148,37661626:4227096,459977,115847 +k1,8413:14096148,37661626:3277 +h1,8413:18319967,37661626:0,411205,112570 +) +k1,8413:18536933,37661626:213689 +k1,8413:19366660,37661626:213689 +k1,8413:21014278,37661626:213690 +k1,8413:21816480,37661626:213689 +k1,8413:23102339,37661626:213690 +k1,8413:24184380,37661626:213689 +k1,8413:25502351,37661626:213689 +k1,8413:27516970,37661626:213690 +k1,8413:28922104,37661626:213689 +k1,8413:30154879,37661626:213690 +k1,8413:31923737,37661626:213689 +k1,8413:32583029,37661626:0 +) +(1,8414:6630773,38503114:25952256,505283,134348 +g1,8413:7600705,38503114 +g1,8413:9759460,38503114 +g1,8413:11352640,38503114 +(1,8413:11352640,38503114:0,452978,115847 +r1,8413:14876312,38503114:3523672,568825,115847 +k1,8413:11352640,38503114:-3523672 +) +(1,8413:11352640,38503114:3523672,452978,115847 +k1,8413:11352640,38503114:3277 +h1,8413:14873035,38503114:0,411205,112570 +) +k1,8414:32583030,38503114:17533048 +g1,8414:32583030,38503114 +) +v1,8416:6630773,39678415:0,393216,0 +(1,8423:6630773,40700060:25952256,1414861,196608 +g1,8423:6630773,40700060 +g1,8423:6630773,40700060 +g1,8423:6434165,40700060 +(1,8423:6434165,40700060:0,1414861,196608 +r1,8423:32779637,40700060:26345472,1611469,196608 +k1,8423:6434165,40700060:-26345472 +) +(1,8423:6434165,40700060:26345472,1414861,196608 +[1,8423:6630773,40700060:25952256,1218253,0 +(1,8418:6630773,39892325:25952256,410518,82312 +(1,8417:6630773,39892325:0,0,0 +g1,8417:6630773,39892325 +g1,8417:6630773,39892325 +g1,8417:6303093,39892325 +(1,8417:6303093,39892325:0,0,0 +) +g1,8417:6630773,39892325 +) +k1,8418:6630773,39892325:0 +g1,8418:10424521,39892325 +h1,8418:13585978,39892325:0,0,0 +k1,8418:32583030,39892325:18997052 +g1,8418:32583030,39892325 +) +(1,8422:6630773,40624039:25952256,404226,76021 +(1,8420:6630773,40624039:0,0,0 +g1,8420:6630773,40624039 +g1,8420:6630773,40624039 +g1,8420:6303093,40624039 +(1,8420:6303093,40624039:0,0,0 +) +g1,8420:6630773,40624039 +) +g1,8422:7579210,40624039 +g1,8422:8843793,40624039 +h1,8422:10108376,40624039:0,0,0 +k1,8422:32583028,40624039:22474652 +g1,8422:32583028,40624039 +) +] +) +g1,8423:32583029,40700060 +g1,8423:6630773,40700060 +g1,8423:6630773,40700060 +g1,8423:32583029,40700060 +g1,8423:32583029,40700060 +) +h1,8423:6630773,40896668:0,0,0 +v1,8427:6630773,42756402:0,393216,0 +(1,8650:6630773,45116945:25952256,2753759,589824 +g1,8650:6630773,45116945 +(1,8650:6630773,45116945:25952256,2753759,589824 +(1,8650:6630773,45706769:25952256,3343583,0 +[1,8650:6630773,45706769:25952256,3343583,0 +(1,8650:6630773,45706769:25952256,3317369,0 +r1,8650:6656987,45706769:26214,3317369,0 +[1,8650:6656987,45706769:25899828,3317369,0 +(1,8650:6656987,45116945:25899828,2137721,0 +[1,8650:7246811,45116945:24720180,2137721,0 +(1,8428:7246811,44141109:24720180,1161885,196608 +(1,8427:7246811,44141109:0,1161885,196608 +r1,8650:8794447,44141109:1547636,1358493,196608 +k1,8427:7246811,44141109:-1547636 +) +(1,8427:7246811,44141109:1547636,1161885,196608 +) +k1,8427:8972858,44141109:178411 +k1,8427:8972858,44141109:0 +k1,8427:13488549,44141109:183106 +k1,8427:14348642,44141109:183106 +k1,8427:16578437,44141109:183106 +k1,8427:19893401,44141109:178411 +k1,8427:22600191,44141109:178411 +k1,8427:23981843,44141109:178411 +k1,8427:24691751,44141109:178411 +k1,8427:25226022,44141109:178411 +k1,8427:26986472,44141109:178411 +k1,8427:28987439,44141109:178411 +k1,8427:30184935,44141109:178411 +k1,8427:30778168,44141109:178390 +k1,8428:31966991,44141109:0 +) +(1,8428:7246811,44982597:24720180,513147,134348 +k1,8427:9472056,44982597:185109 +k1,8427:10115263,44982597:185110 +k1,8427:10831869,44982597:185109 +k1,8427:13965443,44982597:185109 +k1,8427:14801980,44982597:185109 +k1,8427:17656371,44982597:185110 +k1,8427:19171861,44982597:185109 +k1,8427:22230724,44982597:185109 +k1,8427:23520115,44982597:185109 +k1,8427:24452991,44982597:185110 +k1,8427:28825195,44982597:185109 +k1,8427:31966991,44982597:0 ) ] ) -] -r1,8645:32583029,45706769:26214,3317369,0 +] +r1,8650:32583029,45706769:26214,3317369,0 ) ] ) ) -g1,8645:32583029,45116945 +g1,8650:32583029,45116945 ) ] -(1,8645:32583029,45706769:0,0,0 -g1,8645:32583029,45706769 +(1,8650:32583029,45706769:0,0,0 +g1,8650:32583029,45706769 ) ) ] -(1,8645:6630773,47279633:25952256,0,0 -h1,8645:6630773,47279633:25952256,0,0 +(1,8650:6630773,47279633:25952256,0,0 +h1,8650:6630773,47279633:25952256,0,0 ) ] -h1,8645:4262630,4025873:0,0,0 +h1,8650:4262630,4025873:0,0,0 ] !22282 }156 !12 {157 -[1,8645:4262630,47279633:28320399,43253760,0 -(1,8645:4262630,4025873:0,0,0 -[1,8645:-473657,4025873:25952256,0,0 -(1,8645:-473657,-710414:25952256,0,0 -h1,8645:-473657,-710414:0,0,0 -(1,8645:-473657,-710414:0,0,0 -(1,8645:-473657,-710414:0,0,0 -g1,8645:-473657,-710414 -(1,8645:-473657,-710414:65781,0,65781 -g1,8645:-407876,-710414 -[1,8645:-407876,-644633:0,0,0 +[1,8650:4262630,47279633:28320399,43253760,0 +(1,8650:4262630,4025873:0,0,0 +[1,8650:-473657,4025873:25952256,0,0 +(1,8650:-473657,-710414:25952256,0,0 +h1,8650:-473657,-710414:0,0,0 +(1,8650:-473657,-710414:0,0,0 +(1,8650:-473657,-710414:0,0,0 +g1,8650:-473657,-710414 +(1,8650:-473657,-710414:65781,0,65781 +g1,8650:-407876,-710414 +[1,8650:-407876,-644633:0,0,0 ] ) -k1,8645:-473657,-710414:-65781 +k1,8650:-473657,-710414:-65781 ) ) -k1,8645:25478599,-710414:25952256 -g1,8645:25478599,-710414 +k1,8650:25478599,-710414:25952256 +g1,8650:25478599,-710414 ) ] ) -[1,8645:6630773,47279633:25952256,43253760,0 -[1,8645:6630773,4812305:25952256,786432,0 -(1,8645:6630773,4812305:25952256,505283,134348 -(1,8645:6630773,4812305:25952256,505283,134348 -g1,8645:3078558,4812305 -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,2439708:0,1703936,0 -k1,8645:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8645:2537886,2439708:1179648,16384,0 +[1,8650:6630773,47279633:25952256,43253760,0 +[1,8650:6630773,4812305:25952256,786432,0 +(1,8650:6630773,4812305:25952256,505283,134348 +(1,8650:6630773,4812305:25952256,505283,134348 +g1,8650:3078558,4812305 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,2439708:0,1703936,0 +k1,8650:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8650:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8645:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8650:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,2439708:0,1703936,0 -g1,8645:29030814,2439708 -g1,8645:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8645:36151628,1915420:16384,1179648,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,2439708:0,1703936,0 +g1,8650:29030814,2439708 +g1,8650:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8650:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8645:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8650:37855564,2439708:1179648,16384,0 ) ) -k1,8645:3078556,2439708:-34777008 +k1,8650:3078556,2439708:-34777008 ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,49800853:0,16384,2228224 -k1,8645:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8645:2537886,49800853:1179648,16384,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,49800853:0,16384,2228224 +k1,8650:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8650:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8645:3078558,51504789:16384,1179648,0 -) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 -) -] +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8650:3078558,51504789:16384,1179648,0 +) +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 +) +] ) -) -) -] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,49800853:0,16384,2228224 -g1,8645:29030814,49800853 -g1,8645:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8645:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8645:37855564,49800853:1179648,16384,0 -) -) -k1,8645:3078556,49800853:-34777008 -) -] -g1,8645:6630773,4812305 -k1,8645:24573876,4812305:16747726 -g1,8645:25960617,4812305 -g1,8645:26609423,4812305 -g1,8645:29923578,4812305 -) -) -] -[1,8645:6630773,45706769:25952256,40108032,0 -(1,8645:6630773,45706769:25952256,40108032,0 -(1,8645:6630773,45706769:0,0,0 -g1,8645:6630773,45706769 -) -[1,8645:6630773,45706769:25952256,40108032,0 -v1,8645:6630773,6254097:0,393216,0 -(1,8645:6630773,45116945:25952256,39256064,589824 -g1,8645:6630773,45116945 -(1,8645:6630773,45116945:25952256,39256064,589824 -(1,8645:6630773,45706769:25952256,39845888,0 -[1,8645:6630773,45706769:25952256,39845888,0 -(1,8645:6630773,45706769:25952256,39845888,0 -r1,8645:6656987,45706769:26214,39845888,0 -[1,8645:6656987,45706769:25899828,39845888,0 -(1,8645:6656987,45116945:25899828,38666240,0 -[1,8645:7246811,45116945:24720180,38666240,0 -(1,8423:7246811,6955988:24720180,505283,134348 -k1,8422:8086330,6955988:153357 -k1,8422:9371495,6955988:153358 -k1,8422:11226822,6955988:153357 -k1,8422:11794977,6955988:153312 -k1,8422:14411832,6955988:153357 -k1,8422:15669471,6955988:153357 -k1,8422:16570595,6955988:153358 -k1,8422:18535367,6955988:153357 -k1,8422:19304762,6955988:153357 -k1,8422:22299760,6955988:153357 -k1,8422:25433695,6955988:153358 -k1,8422:27084550,6955988:153357 -k1,8422:28620061,6955988:153357 -k1,8422:29304916,6955988:153358 -k1,8422:30661514,6955988:153357 -k1,8423:31966991,6955988:0 -) -(1,8423:7246811,7797476:24720180,513147,126483 -k1,8422:8687901,7797476:229329 -k1,8422:9959252,7797476:229329 -k1,8422:13023668,7797476:229329 -k1,8422:13718959,7797476:229330 -k1,8422:14816640,7797476:229329 -k1,8422:16594585,7797476:229329 -k1,8422:17475342,7797476:229329 -k1,8422:18392144,7797476:229329 -k1,8422:20852974,7797476:229329 -k1,8422:23844646,7797476:229329 -k1,8422:26391984,7797476:229330 -k1,8422:27272741,7797476:229329 -k1,8422:28521155,7797476:229329 -k1,8422:30403957,7797476:229329 -k1,8422:31966991,7797476:0 -) -(1,8423:7246811,8638964:24720180,513147,134348 -k1,8422:8292560,8638964:177397 -k1,8422:9574240,8638964:177398 -k1,8422:11366444,8638964:177397 -k1,8422:11899701,8638964:177397 -(1,8422:11899701,8638964:0,459977,115847 -r1,8645:12961390,8638964:1061689,575824,115847 -k1,8422:11899701,8638964:-1061689 -) -(1,8422:11899701,8638964:1061689,459977,115847 -k1,8422:11899701,8638964:3277 -h1,8422:12958113,8638964:0,411205,112570 -) -k1,8422:13138788,8638964:177398 -k1,8422:14731107,8638964:177397 -k1,8422:16193011,8638964:177398 -k1,8422:18175270,8638964:177397 -k1,8422:20911193,8638964:177397 -k1,8422:21444451,8638964:177398 -k1,8422:22615374,8638964:177397 -k1,8422:23452063,8638964:177397 -k1,8422:25617168,8638964:177398 -k1,8422:28841989,8638964:177397 -k1,8422:29816960,8638964:177398 -k1,8422:30862709,8638964:177397 -k1,8422:31966991,8638964:0 -) -(1,8423:7246811,9480452:24720180,513147,134348 -g1,8422:9060847,9480452 -g1,8422:9615936,9480452 -g1,8422:12510661,9480452 -g1,8422:13994396,9480452 -g1,8422:16571927,9480452 -g1,8422:17927866,9480452 -g1,8422:18809980,9480452 -g1,8422:20659406,9480452 -g1,8422:23732389,9480452 -g1,8422:24617780,9480452 -k1,8423:31966991,9480452:3772911 -g1,8423:31966991,9480452 -) -(1,8425:7246811,10321940:24720180,513147,126483 -h1,8424:7246811,10321940:983040,0,0 -k1,8424:9608119,10321940:181581 -k1,8424:10882185,10321940:181581 -k1,8424:11730922,10321940:181581 -(1,8424:11730922,10321940:0,459977,115847 -r1,8645:12792611,10321940:1061689,575824,115847 -k1,8424:11730922,10321940:-1061689 -) -(1,8424:11730922,10321940:1061689,459977,115847 -k1,8424:11730922,10321940:3277 -h1,8424:12789334,10321940:0,411205,112570 -) -k1,8424:12974192,10321940:181581 -k1,8424:14788931,10321940:181581 -k1,8424:15918163,10321940:181581 -k1,8424:18816868,10321940:181582 -k1,8424:20385846,10321940:181581 -k1,8424:20923287,10321940:181581 -k1,8424:22098394,10321940:181581 -k1,8424:22939267,10321940:181581 -k1,8424:25108555,10321940:181581 -k1,8424:28163890,10321940:181581 -k1,8424:28876968,10321940:181581 -k1,8424:31966991,10321940:0 -) -(1,8425:7246811,11163428:24720180,485622,134348 -g1,8424:8062078,11163428 -g1,8424:10539994,11163428 -h1,8424:11510582,11163428:0,0,0 -g1,8424:11709811,11163428 -g1,8424:12718410,11163428 -g1,8424:14415792,11163428 -h1,8424:15611169,11163428:0,0,0 -k1,8425:31966991,11163428:16182152 -g1,8425:31966991,11163428 -) -v1,8427:7246811,12257911:0,393216,0 -(1,8446:7246811,21279983:24720180,9415288,196608 -g1,8446:7246811,21279983 -g1,8446:7246811,21279983 -g1,8446:7050203,21279983 -(1,8446:7050203,21279983:0,9415288,196608 -r1,8645:32163599,21279983:25113396,9611896,196608 -k1,8446:7050203,21279983:-25113396 -) -(1,8446:7050203,21279983:25113396,9415288,196608 -[1,8446:7246811,21279983:24720180,9218680,0 -(1,8429:7246811,12471821:24720180,410518,101187 -(1,8428:7246811,12471821:0,0,0 -g1,8428:7246811,12471821 -g1,8428:7246811,12471821 -g1,8428:6919131,12471821 -(1,8428:6919131,12471821:0,0,0 -) -g1,8428:7246811,12471821 -) -g1,8429:9775977,12471821 -g1,8429:10724415,12471821 -g1,8429:14834310,12471821 -g1,8429:15466602,12471821 -g1,8429:17363477,12471821 -g1,8429:17995769,12471821 -g1,8429:18628061,12471821 -g1,8429:20841082,12471821 -g1,8429:21473374,12471821 -g1,8429:22105666,12471821 -g1,8429:22737958,12471821 -k1,8429:22737958,12471821:0 -h1,8429:25899414,12471821:0,0,0 -k1,8429:31966991,12471821:6067577 -g1,8429:31966991,12471821 -) -(1,8430:7246811,13137999:24720180,404226,76021 -h1,8430:7246811,13137999:0,0,0 -g1,8430:9459831,13137999 -g1,8430:10408269,13137999 -k1,8430:10408269,13137999:0 -h1,8430:12305143,13137999:0,0,0 -k1,8430:31966991,13137999:19661848 -g1,8430:31966991,13137999 -) -(1,8431:7246811,13804177:24720180,410518,101187 -h1,8431:7246811,13804177:0,0,0 -g1,8431:10092122,13804177 -g1,8431:11040560,13804177 -g1,8431:13253581,13804177 -g1,8431:13885873,13804177 -g1,8431:14518165,13804177 -g1,8431:15150457,13804177 -g1,8431:15782749,13804177 -g1,8431:16415041,13804177 -g1,8431:17363479,13804177 -g1,8431:17995771,13804177 -g1,8431:18628063,13804177 -g1,8431:19260355,13804177 -g1,8431:19892647,13804177 -g1,8431:20841085,13804177 -g1,8431:21473377,13804177 -g1,8431:22105669,13804177 -g1,8431:22737961,13804177 -g1,8431:23370253,13804177 -g1,8431:24002545,13804177 -g1,8431:24634837,13804177 -h1,8431:25899421,13804177:0,0,0 -k1,8431:31966991,13804177:6067570 -g1,8431:31966991,13804177 -) -(1,8432:7246811,14470355:24720180,410518,76021 -h1,8432:7246811,14470355:0,0,0 -g1,8432:8511394,14470355 -g1,8432:11356705,14470355 -g1,8432:12305142,14470355 -g1,8432:15466599,14470355 -h1,8432:15782745,14470355:0,0,0 -k1,8432:31966991,14470355:16184246 -g1,8432:31966991,14470355 -) -(1,8433:7246811,15136533:24720180,410518,101187 -h1,8433:7246811,15136533:0,0,0 -g1,8433:7562957,15136533 -g1,8433:9775977,15136533 -g1,8433:10724415,15136533 -g1,8433:13885873,15136533 -g1,8433:19260350,15136533 -g1,8433:20841079,15136533 -g1,8433:21473371,15136533 -h1,8433:24634828,15136533:0,0,0 -k1,8433:31966991,15136533:7332163 -g1,8433:31966991,15136533 -) -(1,8434:7246811,15802711:24720180,404226,76021 -h1,8434:7246811,15802711:0,0,0 -g1,8434:7562957,15802711 -h1,8434:7879103,15802711:0,0,0 -k1,8434:31966991,15802711:24087888 -g1,8434:31966991,15802711 -) -(1,8435:7246811,16468889:24720180,404226,82312 -h1,8435:7246811,16468889:0,0,0 -g1,8435:11040560,16468889 -g1,8435:14202017,16468889 -g1,8435:14834309,16468889 -h1,8435:15466601,16468889:0,0,0 -k1,8435:31966991,16468889:16500390 -g1,8435:31966991,16468889 -) -(1,8445:7246811,17200603:24720180,410518,9436 -(1,8437:7246811,17200603:0,0,0 -g1,8437:7246811,17200603 -g1,8437:7246811,17200603 -g1,8437:6919131,17200603 -(1,8437:6919131,17200603:0,0,0 -) -g1,8437:7246811,17200603 -) -g1,8445:8195248,17200603 -g1,8445:9775977,17200603 -g1,8445:10724414,17200603 -h1,8445:11040560,17200603:0,0,0 -k1,8445:31966992,17200603:20926432 -g1,8445:31966992,17200603 -) -(1,8445:7246811,17866781:24720180,410518,31456 -h1,8445:7246811,17866781:0,0,0 -g1,8445:8195248,17866781 -g1,8445:8511394,17866781 -g1,8445:9143686,17866781 -g1,8445:11040560,17866781 -g1,8445:11988997,17866781 -h1,8445:12621288,17866781:0,0,0 -k1,8445:31966992,17866781:19345704 -g1,8445:31966992,17866781 -) -(1,8445:7246811,18532959:24720180,404226,82312 -h1,8445:7246811,18532959:0,0,0 -g1,8445:8195248,18532959 -g1,8445:8511394,18532959 -g1,8445:8827540,18532959 -g1,8445:10092123,18532959 -g1,8445:12621289,18532959 -g1,8445:15782746,18532959 -g1,8445:17047329,18532959 -h1,8445:18311912,18532959:0,0,0 -k1,8445:31966991,18532959:13655079 -g1,8445:31966991,18532959 -) -(1,8445:7246811,19199137:24720180,410518,31456 -h1,8445:7246811,19199137:0,0,0 -g1,8445:8195248,19199137 -g1,8445:8511394,19199137 -g1,8445:9143686,19199137 -g1,8445:11040560,19199137 -g1,8445:11988997,19199137 -h1,8445:12621288,19199137:0,0,0 -k1,8445:31966992,19199137:19345704 -g1,8445:31966992,19199137 -) -(1,8445:7246811,19865315:24720180,404226,82312 -h1,8445:7246811,19865315:0,0,0 -g1,8445:8195248,19865315 -g1,8445:8511394,19865315 -g1,8445:8827540,19865315 -g1,8445:10092123,19865315 -g1,8445:12621289,19865315 -g1,8445:15782746,19865315 -g1,8445:17047329,19865315 -h1,8445:18311912,19865315:0,0,0 -k1,8445:31966991,19865315:13655079 -g1,8445:31966991,19865315 -) -(1,8445:7246811,20531493:24720180,410518,31456 -h1,8445:7246811,20531493:0,0,0 -g1,8445:8195248,20531493 -g1,8445:8511394,20531493 -g1,8445:9143686,20531493 -g1,8445:11040560,20531493 -g1,8445:11988997,20531493 -h1,8445:12621288,20531493:0,0,0 -k1,8445:31966992,20531493:19345704 -g1,8445:31966992,20531493 -) -(1,8445:7246811,21197671:24720180,404226,82312 -h1,8445:7246811,21197671:0,0,0 -g1,8445:8195248,21197671 -g1,8445:8511394,21197671 -g1,8445:8827540,21197671 -g1,8445:10092123,21197671 -g1,8445:12621289,21197671 -g1,8445:15782746,21197671 -g1,8445:17047329,21197671 -h1,8445:18311912,21197671:0,0,0 -k1,8445:31966991,21197671:13655079 -g1,8445:31966991,21197671 -) -] -) -g1,8446:31966991,21279983 -g1,8446:7246811,21279983 -g1,8446:7246811,21279983 -g1,8446:31966991,21279983 -g1,8446:31966991,21279983 -) -h1,8446:7246811,21476591:0,0,0 -(1,8450:7246811,22746384:24720180,505283,126483 -h1,8449:7246811,22746384:983040,0,0 -k1,8449:9388069,22746384:340329 -k1,8449:11497214,22746384:340328 -k1,8449:12585309,22746384:340329 -k1,8449:15938327,22746384:340328 -k1,8449:16634516,22746384:340329 -k1,8449:20451529,22746384:340328 -k1,8449:24498574,22746384:340329 -k1,8449:25370399,22746384:340328 -k1,8449:28494697,22746384:340329 -k1,8449:30228976,22746384:340328 -k1,8450:31966991,22746384:0 -) -(1,8450:7246811,23587872:24720180,513147,126483 -(1,8449:7246811,23587872:0,459977,115847 -r1,8645:11473907,23587872:4227096,575824,115847 -k1,8449:7246811,23587872:-4227096 -) -(1,8449:7246811,23587872:4227096,459977,115847 -k1,8449:7246811,23587872:3277 -h1,8449:11470630,23587872:0,411205,112570 -) -k1,8449:11918536,23587872:270959 -k1,8449:12659389,23587872:270960 -k1,8449:13461845,23587872:270959 -k1,8449:15710025,23587872:270959 -k1,8449:17679023,23587872:270960 -k1,8449:20823736,23587872:270959 -k1,8449:22086256,23587872:270960 -k1,8449:24065739,23587872:270959 -k1,8449:28263615,23587872:270959 -k1,8449:29296103,23587872:270960 -k1,8449:30586147,23587872:270959 -k1,8449:31966991,23587872:0 -) -(1,8450:7246811,24429360:24720180,513147,134348 -k1,8449:8186049,24429360:256353 -k1,8449:9854703,24429360:256353 -k1,8449:11678677,24429360:256353 -k1,8449:13161209,24429360:256353 -k1,8449:14904574,24429360:256353 -k1,8449:16640075,24429360:256353 -(1,8449:16640075,24429360:0,459977,115847 -r1,8645:20867171,24429360:4227096,575824,115847 -k1,8449:16640075,24429360:-4227096 -) -(1,8449:16640075,24429360:4227096,459977,115847 -k1,8449:16640075,24429360:3277 -h1,8449:20863894,24429360:0,411205,112570 -) -k1,8449:21123524,24429360:256353 -k1,8449:22248229,24429360:256353 -k1,8449:23608864,24429360:256353 -k1,8449:26257936,24429360:256353 -k1,8449:26870149,24429360:256353 -k1,8449:30101181,24429360:256353 -k1,8449:31966991,24429360:0 -) -(1,8450:7246811,25270848:24720180,513147,7863 -g1,8449:8713506,25270848 -g1,8449:9268595,25270848 -k1,8450:31966990,25270848:19981272 -g1,8450:31966990,25270848 -) -v1,8452:7246811,26365331:0,393216,0 -(1,8466:7246811,31977345:24720180,6005230,196608 -g1,8466:7246811,31977345 -g1,8466:7246811,31977345 -g1,8466:7050203,31977345 -(1,8466:7050203,31977345:0,6005230,196608 -r1,8645:32163599,31977345:25113396,6201838,196608 -k1,8466:7050203,31977345:-25113396 -) -(1,8466:7050203,31977345:25113396,6005230,196608 -[1,8466:7246811,31977345:24720180,5808622,0 -(1,8454:7246811,26572949:24720180,404226,107478 -(1,8453:7246811,26572949:0,0,0 -g1,8453:7246811,26572949 -g1,8453:7246811,26572949 -g1,8453:6919131,26572949 -(1,8453:6919131,26572949:0,0,0 -) -g1,8453:7246811,26572949 -) -g1,8454:10408268,26572949 -g1,8454:11356706,26572949 -g1,8454:12305143,26572949 -g1,8454:12937435,26572949 -h1,8454:13569726,26572949:0,0,0 -k1,8454:31966990,26572949:18397264 -g1,8454:31966990,26572949 -) -(1,8455:7246811,27239127:24720180,410518,107478 -h1,8455:7246811,27239127:0,0,0 -g1,8455:15466599,27239127 -g1,8455:17047328,27239127 -g1,8455:17679620,27239127 -h1,8455:20208785,27239127:0,0,0 -k1,8455:31966991,27239127:11758206 -g1,8455:31966991,27239127 -) -(1,8465:7246811,27970841:24720180,379060,0 -(1,8457:7246811,27970841:0,0,0 -g1,8457:7246811,27970841 -g1,8457:7246811,27970841 -g1,8457:6919131,27970841 -(1,8457:6919131,27970841:0,0,0 -) -g1,8457:7246811,27970841 -) -h1,8465:7879102,27970841:0,0,0 -k1,8465:31966990,27970841:24087888 -g1,8465:31966990,27970841 -) -(1,8465:7246811,28637019:24720180,404226,7863 -h1,8465:7246811,28637019:0,0,0 -g1,8465:8195248,28637019 -h1,8465:9775976,28637019:0,0,0 -k1,8465:31966992,28637019:22191016 -g1,8465:31966992,28637019 -) -(1,8465:7246811,29303197:24720180,410518,107478 -h1,8465:7246811,29303197:0,0,0 -g1,8465:8195248,29303197 -g1,8465:11672851,29303197 -g1,8465:12305143,29303197 -g1,8465:19576494,29303197 -g1,8465:21157223,29303197 -g1,8465:21789515,29303197 -h1,8465:24318680,29303197:0,0,0 -k1,8465:31966991,29303197:7648311 -g1,8465:31966991,29303197 -) -(1,8465:7246811,29969375:24720180,379060,0 -h1,8465:7246811,29969375:0,0,0 -h1,8465:7879102,29969375:0,0,0 -k1,8465:31966990,29969375:24087888 -g1,8465:31966990,29969375 -) -(1,8465:7246811,30635553:24720180,410518,7863 -h1,8465:7246811,30635553:0,0,0 -g1,8465:8195248,30635553 -h1,8465:12305142,30635553:0,0,0 -k1,8465:31966990,30635553:19661848 -g1,8465:31966990,30635553 -) -(1,8465:7246811,31301731:24720180,404226,101187 -h1,8465:7246811,31301731:0,0,0 -g1,8465:8195248,31301731 -g1,8465:11988996,31301731 -g1,8465:12305142,31301731 -g1,8465:12621288,31301731 -g1,8465:12937434,31301731 -g1,8465:13253580,31301731 -g1,8465:13569726,31301731 -g1,8465:13885872,31301731 -g1,8465:14202018,31301731 -g1,8465:14518164,31301731 -g1,8465:14834310,31301731 -g1,8465:15150456,31301731 -g1,8465:15466602,31301731 -h1,8465:15782748,31301731:0,0,0 -k1,8465:31966991,31301731:16184243 -g1,8465:31966991,31301731 -) -(1,8465:7246811,31967909:24720180,388497,9436 -h1,8465:7246811,31967909:0,0,0 -g1,8465:8195248,31967909 -g1,8465:8511394,31967909 -g1,8465:8827540,31967909 -g1,8465:9143686,31967909 -g1,8465:9459832,31967909 -g1,8465:9775978,31967909 -g1,8465:11988998,31967909 -g1,8465:12305144,31967909 -g1,8465:12621290,31967909 -g1,8465:12937436,31967909 -g1,8465:13253582,31967909 -g1,8465:13569728,31967909 -g1,8465:13885874,31967909 -h1,8465:15782748,31967909:0,0,0 -k1,8465:31966991,31967909:16184243 -g1,8465:31966991,31967909 -) -] -) -g1,8466:31966991,31977345 -g1,8466:7246811,31977345 -g1,8466:7246811,31977345 -g1,8466:31966991,31977345 -g1,8466:31966991,31977345 -) -h1,8466:7246811,32173953:0,0,0 -(1,8470:7246811,33443747:24720180,513147,134348 -h1,8469:7246811,33443747:983040,0,0 -k1,8469:9225879,33443747:178139 -k1,8469:11058802,33443747:178139 -k1,8469:12228500,33443747:178138 -k1,8469:14158416,33443747:178139 -k1,8469:17362352,33443747:178139 -k1,8469:18488142,33443747:178139 -k1,8469:19685366,33443747:178139 -k1,8469:24119413,33443747:178139 -k1,8469:24956843,33443747:178138 -k1,8469:28109661,33443747:178139 -k1,8469:30483911,33443747:178139 -k1,8470:31966991,33443747:0 -) -(1,8470:7246811,34285235:24720180,513147,134348 -k1,8469:8972321,34285235:211628 -k1,8469:9799986,34285235:211627 -k1,8469:11445542,34285235:211628 -k1,8469:12072000,34285235:211615 -k1,8469:13475072,34285235:211627 -k1,8469:16245226,34285235:211628 -k1,8469:19529181,34285235:211627 -k1,8469:22824933,34285235:211628 -k1,8469:23494657,34285235:211627 -k1,8469:24237782,34285235:211628 -k1,8469:29461603,34285235:211627 -k1,8469:30324659,34285235:211628 -k1,8469:31966991,34285235:0 -) -(1,8470:7246811,35126723:24720180,513147,134348 -k1,8469:9372033,35126723:137515 -k1,8469:12383302,35126723:137515 -k1,8469:18157568,35126723:137514 -k1,8469:18981245,35126723:137515 -k1,8469:21488542,35126723:137515 -k1,8469:22579606,35126723:137515 -k1,8469:23821403,35126723:137515 -k1,8469:25051402,35126723:137514 -k1,8469:28214714,35126723:137515 -k1,8469:29498454,35126723:137515 -(1,8469:29498454,35126723:0,452978,115847 -r1,8645:31966991,35126723:2468537,568825,115847 -k1,8469:29498454,35126723:-2468537 -) -(1,8469:29498454,35126723:2468537,452978,115847 -k1,8469:29498454,35126723:3277 -h1,8469:31963714,35126723:0,411205,112570 -) -k1,8469:31966991,35126723:0 -) -(1,8470:7246811,35968211:24720180,513147,115847 -k1,8469:8132341,35968211:234102 -k1,8469:11303112,35968211:234103 -k1,8469:11893074,35968211:234102 -k1,8469:14670628,35968211:234102 -k1,8469:15590892,35968211:234102 -k1,8469:17224844,35968211:234103 -k1,8469:18650391,35968211:234102 -k1,8469:20318421,35968211:234102 -k1,8469:21645009,35968211:234103 -(1,8469:21645009,35968211:0,459977,115847 -r1,8645:25872105,35968211:4227096,575824,115847 -k1,8469:21645009,35968211:-4227096 -) -(1,8469:21645009,35968211:4227096,459977,115847 -k1,8469:21645009,35968211:3277 -h1,8469:25868828,35968211:0,411205,112570 -) -k1,8469:26106207,35968211:234102 -k1,8469:26991737,35968211:234102 -k1,8469:29618558,35968211:234102 -k1,8469:30310758,35968211:234103 -k1,8469:31196288,35968211:234102 -k1,8469:31966991,35968211:0 -) -(1,8470:7246811,36809699:24720180,513147,134348 -g1,8469:9405566,36809699 -g1,8469:10264087,36809699 -g1,8469:12018485,36809699 -(1,8469:12018485,36809699:0,459977,115847 -r1,8645:14487022,36809699:2468537,575824,115847 -k1,8469:12018485,36809699:-2468537 -) -(1,8469:12018485,36809699:2468537,459977,115847 -k1,8469:12018485,36809699:3277 -h1,8469:14483745,36809699:0,411205,112570 -) -g1,8469:14859921,36809699 -g1,8469:17113048,36809699 -g1,8469:18259928,36809699 -g1,8469:20393780,36809699 -g1,8469:20948869,36809699 -k1,8470:31966991,36809699:8856745 -g1,8470:31966991,36809699 -) -v1,8472:7246811,37904182:0,393216,0 -(1,8486:7246811,43516196:24720180,6005230,196608 -g1,8486:7246811,43516196 -g1,8486:7246811,43516196 -g1,8486:7050203,43516196 -(1,8486:7050203,43516196:0,6005230,196608 -r1,8645:32163599,43516196:25113396,6201838,196608 -k1,8486:7050203,43516196:-25113396 -) -(1,8486:7050203,43516196:25113396,6005230,196608 -[1,8486:7246811,43516196:24720180,5808622,0 -(1,8474:7246811,38111800:24720180,404226,107478 -(1,8473:7246811,38111800:0,0,0 -g1,8473:7246811,38111800 -g1,8473:7246811,38111800 -g1,8473:6919131,38111800 -(1,8473:6919131,38111800:0,0,0 -) -g1,8473:7246811,38111800 -) -g1,8474:10408268,38111800 -g1,8474:11356706,38111800 -g1,8474:14834309,38111800 -g1,8474:16415038,38111800 -g1,8474:17679621,38111800 -g1,8474:18311913,38111800 -h1,8474:19576496,38111800:0,0,0 -k1,8474:31966991,38111800:12390495 -g1,8474:31966991,38111800 -) -(1,8475:7246811,38777978:24720180,410518,107478 -h1,8475:7246811,38777978:0,0,0 -g1,8475:15466599,38777978 -g1,8475:17047328,38777978 -g1,8475:17679620,38777978 -h1,8475:20208785,38777978:0,0,0 -k1,8475:31966991,38777978:11758206 -g1,8475:31966991,38777978 -) -(1,8485:7246811,39509692:24720180,379060,0 -(1,8477:7246811,39509692:0,0,0 -g1,8477:7246811,39509692 -g1,8477:7246811,39509692 -g1,8477:6919131,39509692 -(1,8477:6919131,39509692:0,0,0 -) -g1,8477:7246811,39509692 -) -h1,8485:7879102,39509692:0,0,0 -k1,8485:31966990,39509692:24087888 -g1,8485:31966990,39509692 -) -(1,8485:7246811,40175870:24720180,404226,7863 -h1,8485:7246811,40175870:0,0,0 -g1,8485:8195248,40175870 -h1,8485:9775976,40175870:0,0,0 -k1,8485:31966992,40175870:22191016 -g1,8485:31966992,40175870 -) -(1,8485:7246811,40842048:24720180,410518,107478 -h1,8485:7246811,40842048:0,0,0 -g1,8485:8195248,40842048 -g1,8485:11672851,40842048 -g1,8485:12305143,40842048 -g1,8485:19576494,40842048 -g1,8485:21157223,40842048 -g1,8485:21789515,40842048 -h1,8485:24318680,40842048:0,0,0 -k1,8485:31966991,40842048:7648311 -g1,8485:31966991,40842048 -) -(1,8485:7246811,41508226:24720180,379060,0 -h1,8485:7246811,41508226:0,0,0 -h1,8485:7879102,41508226:0,0,0 -k1,8485:31966990,41508226:24087888 -g1,8485:31966990,41508226 -) -(1,8485:7246811,42174404:24720180,410518,7863 -h1,8485:7246811,42174404:0,0,0 -g1,8485:8195248,42174404 -h1,8485:12305142,42174404:0,0,0 -k1,8485:31966990,42174404:19661848 -g1,8485:31966990,42174404 -) -(1,8485:7246811,42840582:24720180,404226,101187 -h1,8485:7246811,42840582:0,0,0 -g1,8485:8195248,42840582 -g1,8485:11988996,42840582 -g1,8485:12305142,42840582 -g1,8485:12621288,42840582 -g1,8485:12937434,42840582 -g1,8485:13253580,42840582 -g1,8485:13569726,42840582 -g1,8485:13885872,42840582 -g1,8485:14202018,42840582 -g1,8485:14518164,42840582 -g1,8485:14834310,42840582 -g1,8485:15150456,42840582 -g1,8485:15466602,42840582 -h1,8485:15782748,42840582:0,0,0 -k1,8485:31966991,42840582:16184243 -g1,8485:31966991,42840582 -) -(1,8485:7246811,43506760:24720180,388497,9436 -h1,8485:7246811,43506760:0,0,0 -g1,8485:8195248,43506760 -g1,8485:8511394,43506760 -g1,8485:8827540,43506760 -g1,8485:9143686,43506760 -g1,8485:9459832,43506760 -g1,8485:9775978,43506760 -g1,8485:11988998,43506760 -g1,8485:12305144,43506760 -g1,8485:12621290,43506760 -g1,8485:12937436,43506760 -g1,8485:13253582,43506760 -g1,8485:13569728,43506760 -g1,8485:13885874,43506760 -h1,8485:15782748,43506760:0,0,0 -k1,8485:31966991,43506760:16184243 -g1,8485:31966991,43506760 -) -] -) -g1,8486:31966991,43516196 -g1,8486:7246811,43516196 -g1,8486:7246811,43516196 -g1,8486:31966991,43516196 -g1,8486:31966991,43516196 -) -h1,8486:7246811,43712804:0,0,0 -(1,8490:7246811,44982597:24720180,513147,134348 -h1,8489:7246811,44982597:983040,0,0 -k1,8489:9550838,44982597:278965 -k1,8489:10848888,44982597:278965 -k1,8489:13434066,44982597:278966 -k1,8489:16787325,44982597:278965 -k1,8489:17725582,44982597:278965 -k1,8489:21387515,44982597:278965 -k1,8489:22022340,44982597:278965 -k1,8489:24844757,44982597:278965 -k1,8489:26391189,44982597:278966 -k1,8489:27026014,44982597:278965 -k1,8489:29344459,44982597:278965 -k1,8489:30491776,44982597:278965 -k1,8489:31966991,44982597:0 -) -] -) -] -r1,8645:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,8645:32583029,45116945 -) -] -(1,8645:32583029,45706769:0,0,0 -g1,8645:32583029,45706769 -) -) -] -(1,8645:6630773,47279633:25952256,0,0 -h1,8645:6630773,47279633:25952256,0,0 -) -] -h1,8645:4262630,4025873:0,0,0 +) +) +] +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,49800853:0,16384,2228224 +g1,8650:29030814,49800853 +g1,8650:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8650:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8650:37855564,49800853:1179648,16384,0 +) +) +k1,8650:3078556,49800853:-34777008 +) +] +g1,8650:6630773,4812305 +k1,8650:24502442,4812305:16676292 +g1,8650:25889183,4812305 +g1,8650:26537989,4812305 +g1,8650:29852144,4812305 +) +) +] +[1,8650:6630773,45706769:25952256,40108032,0 +(1,8650:6630773,45706769:25952256,40108032,0 +(1,8650:6630773,45706769:0,0,0 +g1,8650:6630773,45706769 +) +[1,8650:6630773,45706769:25952256,40108032,0 +v1,8650:6630773,6254097:0,393216,0 +(1,8650:6630773,45116945:25952256,39256064,589824 +g1,8650:6630773,45116945 +(1,8650:6630773,45116945:25952256,39256064,589824 +(1,8650:6630773,45706769:25952256,39845888,0 +[1,8650:6630773,45706769:25952256,39845888,0 +(1,8650:6630773,45706769:25952256,39845888,0 +r1,8650:6656987,45706769:26214,39845888,0 +[1,8650:6656987,45706769:25899828,39845888,0 +(1,8650:6656987,45116945:25899828,38666240,0 +[1,8650:7246811,45116945:24720180,38666240,0 +(1,8428:7246811,6955988:24720180,505283,134348 +k1,8427:8086330,6955988:153357 +k1,8427:9371495,6955988:153358 +k1,8427:11226822,6955988:153357 +k1,8427:11794977,6955988:153312 +k1,8427:14411832,6955988:153357 +k1,8427:15669471,6955988:153357 +k1,8427:16570595,6955988:153358 +k1,8427:18535367,6955988:153357 +k1,8427:19304762,6955988:153357 +k1,8427:22299760,6955988:153357 +k1,8427:25433695,6955988:153358 +k1,8427:27084550,6955988:153357 +k1,8427:28620061,6955988:153357 +k1,8427:29304916,6955988:153358 +k1,8427:30661514,6955988:153357 +k1,8428:31966991,6955988:0 +) +(1,8428:7246811,7797476:24720180,513147,126483 +k1,8427:8687901,7797476:229329 +k1,8427:9959252,7797476:229329 +k1,8427:13023668,7797476:229329 +k1,8427:13718959,7797476:229330 +k1,8427:14816640,7797476:229329 +k1,8427:16594585,7797476:229329 +k1,8427:17475342,7797476:229329 +k1,8427:18392144,7797476:229329 +k1,8427:20852974,7797476:229329 +k1,8427:23844646,7797476:229329 +k1,8427:26391984,7797476:229330 +k1,8427:27272741,7797476:229329 +k1,8427:28521155,7797476:229329 +k1,8427:30403957,7797476:229329 +k1,8427:31966991,7797476:0 +) +(1,8428:7246811,8638964:24720180,513147,134348 +k1,8427:8292560,8638964:177397 +k1,8427:9574240,8638964:177398 +k1,8427:11366444,8638964:177397 +k1,8427:11899701,8638964:177397 +(1,8427:11899701,8638964:0,459977,115847 +r1,8650:12961390,8638964:1061689,575824,115847 +k1,8427:11899701,8638964:-1061689 +) +(1,8427:11899701,8638964:1061689,459977,115847 +k1,8427:11899701,8638964:3277 +h1,8427:12958113,8638964:0,411205,112570 +) +k1,8427:13138788,8638964:177398 +k1,8427:14731107,8638964:177397 +k1,8427:16193011,8638964:177398 +k1,8427:18175270,8638964:177397 +k1,8427:20911193,8638964:177397 +k1,8427:21444451,8638964:177398 +k1,8427:22615374,8638964:177397 +k1,8427:23452063,8638964:177397 +k1,8427:25617168,8638964:177398 +k1,8427:28841989,8638964:177397 +k1,8427:29816960,8638964:177398 +k1,8427:30862709,8638964:177397 +k1,8427:31966991,8638964:0 +) +(1,8428:7246811,9480452:24720180,513147,134348 +g1,8427:9060847,9480452 +g1,8427:9615936,9480452 +g1,8427:12510661,9480452 +g1,8427:13994396,9480452 +g1,8427:16571927,9480452 +g1,8427:17927866,9480452 +g1,8427:18809980,9480452 +g1,8427:20659406,9480452 +g1,8427:23732389,9480452 +g1,8427:24617780,9480452 +k1,8428:31966991,9480452:3772911 +g1,8428:31966991,9480452 +) +(1,8430:7246811,10321940:24720180,513147,126483 +h1,8429:7246811,10321940:983040,0,0 +k1,8429:9608119,10321940:181581 +k1,8429:10882185,10321940:181581 +k1,8429:11730922,10321940:181581 +(1,8429:11730922,10321940:0,459977,115847 +r1,8650:12792611,10321940:1061689,575824,115847 +k1,8429:11730922,10321940:-1061689 +) +(1,8429:11730922,10321940:1061689,459977,115847 +k1,8429:11730922,10321940:3277 +h1,8429:12789334,10321940:0,411205,112570 +) +k1,8429:12974192,10321940:181581 +k1,8429:14788931,10321940:181581 +k1,8429:15918163,10321940:181581 +k1,8429:18816868,10321940:181582 +k1,8429:20385846,10321940:181581 +k1,8429:20923287,10321940:181581 +k1,8429:22098394,10321940:181581 +k1,8429:22939267,10321940:181581 +k1,8429:25108555,10321940:181581 +k1,8429:28163890,10321940:181581 +k1,8429:28876968,10321940:181581 +k1,8429:31966991,10321940:0 +) +(1,8430:7246811,11163428:24720180,485622,134348 +g1,8429:8062078,11163428 +g1,8429:10539994,11163428 +h1,8429:11510582,11163428:0,0,0 +g1,8429:11709811,11163428 +g1,8429:12718410,11163428 +g1,8429:14415792,11163428 +h1,8429:15611169,11163428:0,0,0 +k1,8430:31966991,11163428:16182152 +g1,8430:31966991,11163428 +) +v1,8432:7246811,12257911:0,393216,0 +(1,8451:7246811,21279983:24720180,9415288,196608 +g1,8451:7246811,21279983 +g1,8451:7246811,21279983 +g1,8451:7050203,21279983 +(1,8451:7050203,21279983:0,9415288,196608 +r1,8650:32163599,21279983:25113396,9611896,196608 +k1,8451:7050203,21279983:-25113396 +) +(1,8451:7050203,21279983:25113396,9415288,196608 +[1,8451:7246811,21279983:24720180,9218680,0 +(1,8434:7246811,12471821:24720180,410518,101187 +(1,8433:7246811,12471821:0,0,0 +g1,8433:7246811,12471821 +g1,8433:7246811,12471821 +g1,8433:6919131,12471821 +(1,8433:6919131,12471821:0,0,0 +) +g1,8433:7246811,12471821 +) +g1,8434:9775977,12471821 +g1,8434:10724415,12471821 +g1,8434:14834310,12471821 +g1,8434:15466602,12471821 +g1,8434:17363477,12471821 +g1,8434:17995769,12471821 +g1,8434:18628061,12471821 +g1,8434:20841082,12471821 +g1,8434:21473374,12471821 +g1,8434:22105666,12471821 +g1,8434:22737958,12471821 +k1,8434:22737958,12471821:0 +h1,8434:25899414,12471821:0,0,0 +k1,8434:31966991,12471821:6067577 +g1,8434:31966991,12471821 +) +(1,8435:7246811,13137999:24720180,404226,76021 +h1,8435:7246811,13137999:0,0,0 +g1,8435:9459831,13137999 +g1,8435:10408269,13137999 +k1,8435:10408269,13137999:0 +h1,8435:12305143,13137999:0,0,0 +k1,8435:31966991,13137999:19661848 +g1,8435:31966991,13137999 +) +(1,8436:7246811,13804177:24720180,410518,101187 +h1,8436:7246811,13804177:0,0,0 +g1,8436:10092122,13804177 +g1,8436:11040560,13804177 +g1,8436:13253581,13804177 +g1,8436:13885873,13804177 +g1,8436:14518165,13804177 +g1,8436:15150457,13804177 +g1,8436:15782749,13804177 +g1,8436:16415041,13804177 +g1,8436:17363479,13804177 +g1,8436:17995771,13804177 +g1,8436:18628063,13804177 +g1,8436:19260355,13804177 +g1,8436:19892647,13804177 +g1,8436:20841085,13804177 +g1,8436:21473377,13804177 +g1,8436:22105669,13804177 +g1,8436:22737961,13804177 +g1,8436:23370253,13804177 +g1,8436:24002545,13804177 +g1,8436:24634837,13804177 +h1,8436:25899421,13804177:0,0,0 +k1,8436:31966991,13804177:6067570 +g1,8436:31966991,13804177 +) +(1,8437:7246811,14470355:24720180,410518,76021 +h1,8437:7246811,14470355:0,0,0 +g1,8437:8511394,14470355 +g1,8437:11356705,14470355 +g1,8437:12305142,14470355 +g1,8437:15466599,14470355 +h1,8437:15782745,14470355:0,0,0 +k1,8437:31966991,14470355:16184246 +g1,8437:31966991,14470355 +) +(1,8438:7246811,15136533:24720180,410518,101187 +h1,8438:7246811,15136533:0,0,0 +g1,8438:7562957,15136533 +g1,8438:9775977,15136533 +g1,8438:10724415,15136533 +g1,8438:13885873,15136533 +g1,8438:19260350,15136533 +g1,8438:20841079,15136533 +g1,8438:21473371,15136533 +h1,8438:24634828,15136533:0,0,0 +k1,8438:31966991,15136533:7332163 +g1,8438:31966991,15136533 +) +(1,8439:7246811,15802711:24720180,404226,76021 +h1,8439:7246811,15802711:0,0,0 +g1,8439:7562957,15802711 +h1,8439:7879103,15802711:0,0,0 +k1,8439:31966991,15802711:24087888 +g1,8439:31966991,15802711 +) +(1,8440:7246811,16468889:24720180,404226,82312 +h1,8440:7246811,16468889:0,0,0 +g1,8440:11040560,16468889 +g1,8440:14202017,16468889 +g1,8440:14834309,16468889 +h1,8440:15466601,16468889:0,0,0 +k1,8440:31966991,16468889:16500390 +g1,8440:31966991,16468889 +) +(1,8450:7246811,17200603:24720180,410518,9436 +(1,8442:7246811,17200603:0,0,0 +g1,8442:7246811,17200603 +g1,8442:7246811,17200603 +g1,8442:6919131,17200603 +(1,8442:6919131,17200603:0,0,0 +) +g1,8442:7246811,17200603 +) +g1,8450:8195248,17200603 +g1,8450:9775977,17200603 +g1,8450:10724414,17200603 +h1,8450:11040560,17200603:0,0,0 +k1,8450:31966992,17200603:20926432 +g1,8450:31966992,17200603 +) +(1,8450:7246811,17866781:24720180,410518,31456 +h1,8450:7246811,17866781:0,0,0 +g1,8450:8195248,17866781 +g1,8450:8511394,17866781 +g1,8450:9143686,17866781 +g1,8450:11040560,17866781 +g1,8450:11988997,17866781 +h1,8450:12621288,17866781:0,0,0 +k1,8450:31966992,17866781:19345704 +g1,8450:31966992,17866781 +) +(1,8450:7246811,18532959:24720180,404226,82312 +h1,8450:7246811,18532959:0,0,0 +g1,8450:8195248,18532959 +g1,8450:8511394,18532959 +g1,8450:8827540,18532959 +g1,8450:10092123,18532959 +g1,8450:12621289,18532959 +g1,8450:15782746,18532959 +g1,8450:17047329,18532959 +h1,8450:18311912,18532959:0,0,0 +k1,8450:31966991,18532959:13655079 +g1,8450:31966991,18532959 +) +(1,8450:7246811,19199137:24720180,410518,31456 +h1,8450:7246811,19199137:0,0,0 +g1,8450:8195248,19199137 +g1,8450:8511394,19199137 +g1,8450:9143686,19199137 +g1,8450:11040560,19199137 +g1,8450:11988997,19199137 +h1,8450:12621288,19199137:0,0,0 +k1,8450:31966992,19199137:19345704 +g1,8450:31966992,19199137 +) +(1,8450:7246811,19865315:24720180,404226,82312 +h1,8450:7246811,19865315:0,0,0 +g1,8450:8195248,19865315 +g1,8450:8511394,19865315 +g1,8450:8827540,19865315 +g1,8450:10092123,19865315 +g1,8450:12621289,19865315 +g1,8450:15782746,19865315 +g1,8450:17047329,19865315 +h1,8450:18311912,19865315:0,0,0 +k1,8450:31966991,19865315:13655079 +g1,8450:31966991,19865315 +) +(1,8450:7246811,20531493:24720180,410518,31456 +h1,8450:7246811,20531493:0,0,0 +g1,8450:8195248,20531493 +g1,8450:8511394,20531493 +g1,8450:9143686,20531493 +g1,8450:11040560,20531493 +g1,8450:11988997,20531493 +h1,8450:12621288,20531493:0,0,0 +k1,8450:31966992,20531493:19345704 +g1,8450:31966992,20531493 +) +(1,8450:7246811,21197671:24720180,404226,82312 +h1,8450:7246811,21197671:0,0,0 +g1,8450:8195248,21197671 +g1,8450:8511394,21197671 +g1,8450:8827540,21197671 +g1,8450:10092123,21197671 +g1,8450:12621289,21197671 +g1,8450:15782746,21197671 +g1,8450:17047329,21197671 +h1,8450:18311912,21197671:0,0,0 +k1,8450:31966991,21197671:13655079 +g1,8450:31966991,21197671 +) +] +) +g1,8451:31966991,21279983 +g1,8451:7246811,21279983 +g1,8451:7246811,21279983 +g1,8451:31966991,21279983 +g1,8451:31966991,21279983 +) +h1,8451:7246811,21476591:0,0,0 +(1,8455:7246811,22746384:24720180,505283,126483 +h1,8454:7246811,22746384:983040,0,0 +k1,8454:9388069,22746384:340329 +k1,8454:11497214,22746384:340328 +k1,8454:12585309,22746384:340329 +k1,8454:15938327,22746384:340328 +k1,8454:16634516,22746384:340329 +k1,8454:20451529,22746384:340328 +k1,8454:24498574,22746384:340329 +k1,8454:25370399,22746384:340328 +k1,8454:28494697,22746384:340329 +k1,8454:30228976,22746384:340328 +k1,8455:31966991,22746384:0 +) +(1,8455:7246811,23587872:24720180,513147,126483 +(1,8454:7246811,23587872:0,459977,115847 +r1,8650:11473907,23587872:4227096,575824,115847 +k1,8454:7246811,23587872:-4227096 +) +(1,8454:7246811,23587872:4227096,459977,115847 +k1,8454:7246811,23587872:3277 +h1,8454:11470630,23587872:0,411205,112570 +) +k1,8454:11918536,23587872:270959 +k1,8454:12659389,23587872:270960 +k1,8454:13461845,23587872:270959 +k1,8454:15710025,23587872:270959 +k1,8454:17679023,23587872:270960 +k1,8454:20823736,23587872:270959 +k1,8454:22086256,23587872:270960 +k1,8454:24065739,23587872:270959 +k1,8454:28263615,23587872:270959 +k1,8454:29296103,23587872:270960 +k1,8454:30586147,23587872:270959 +k1,8454:31966991,23587872:0 +) +(1,8455:7246811,24429360:24720180,513147,134348 +k1,8454:8186049,24429360:256353 +k1,8454:9854703,24429360:256353 +k1,8454:11678677,24429360:256353 +k1,8454:13161209,24429360:256353 +k1,8454:14904574,24429360:256353 +k1,8454:16640075,24429360:256353 +(1,8454:16640075,24429360:0,459977,115847 +r1,8650:20867171,24429360:4227096,575824,115847 +k1,8454:16640075,24429360:-4227096 +) +(1,8454:16640075,24429360:4227096,459977,115847 +k1,8454:16640075,24429360:3277 +h1,8454:20863894,24429360:0,411205,112570 +) +k1,8454:21123524,24429360:256353 +k1,8454:22248229,24429360:256353 +k1,8454:23608864,24429360:256353 +k1,8454:26257936,24429360:256353 +k1,8454:26870149,24429360:256353 +k1,8454:30101181,24429360:256353 +k1,8454:31966991,24429360:0 +) +(1,8455:7246811,25270848:24720180,513147,7863 +g1,8454:8713506,25270848 +g1,8454:9268595,25270848 +k1,8455:31966990,25270848:19981272 +g1,8455:31966990,25270848 +) +v1,8457:7246811,26365331:0,393216,0 +(1,8471:7246811,31977345:24720180,6005230,196608 +g1,8471:7246811,31977345 +g1,8471:7246811,31977345 +g1,8471:7050203,31977345 +(1,8471:7050203,31977345:0,6005230,196608 +r1,8650:32163599,31977345:25113396,6201838,196608 +k1,8471:7050203,31977345:-25113396 +) +(1,8471:7050203,31977345:25113396,6005230,196608 +[1,8471:7246811,31977345:24720180,5808622,0 +(1,8459:7246811,26572949:24720180,404226,107478 +(1,8458:7246811,26572949:0,0,0 +g1,8458:7246811,26572949 +g1,8458:7246811,26572949 +g1,8458:6919131,26572949 +(1,8458:6919131,26572949:0,0,0 +) +g1,8458:7246811,26572949 +) +g1,8459:10408268,26572949 +g1,8459:11356706,26572949 +g1,8459:12305143,26572949 +g1,8459:12937435,26572949 +h1,8459:13569726,26572949:0,0,0 +k1,8459:31966990,26572949:18397264 +g1,8459:31966990,26572949 +) +(1,8460:7246811,27239127:24720180,410518,107478 +h1,8460:7246811,27239127:0,0,0 +g1,8460:15466599,27239127 +g1,8460:17047328,27239127 +g1,8460:17679620,27239127 +h1,8460:20208785,27239127:0,0,0 +k1,8460:31966991,27239127:11758206 +g1,8460:31966991,27239127 +) +(1,8470:7246811,27970841:24720180,379060,0 +(1,8462:7246811,27970841:0,0,0 +g1,8462:7246811,27970841 +g1,8462:7246811,27970841 +g1,8462:6919131,27970841 +(1,8462:6919131,27970841:0,0,0 +) +g1,8462:7246811,27970841 +) +h1,8470:7879102,27970841:0,0,0 +k1,8470:31966990,27970841:24087888 +g1,8470:31966990,27970841 +) +(1,8470:7246811,28637019:24720180,404226,7863 +h1,8470:7246811,28637019:0,0,0 +g1,8470:8195248,28637019 +h1,8470:9775976,28637019:0,0,0 +k1,8470:31966992,28637019:22191016 +g1,8470:31966992,28637019 +) +(1,8470:7246811,29303197:24720180,410518,107478 +h1,8470:7246811,29303197:0,0,0 +g1,8470:8195248,29303197 +g1,8470:11672851,29303197 +g1,8470:12305143,29303197 +g1,8470:19576494,29303197 +g1,8470:21157223,29303197 +g1,8470:21789515,29303197 +h1,8470:24318680,29303197:0,0,0 +k1,8470:31966991,29303197:7648311 +g1,8470:31966991,29303197 +) +(1,8470:7246811,29969375:24720180,379060,0 +h1,8470:7246811,29969375:0,0,0 +h1,8470:7879102,29969375:0,0,0 +k1,8470:31966990,29969375:24087888 +g1,8470:31966990,29969375 +) +(1,8470:7246811,30635553:24720180,410518,7863 +h1,8470:7246811,30635553:0,0,0 +g1,8470:8195248,30635553 +h1,8470:12305142,30635553:0,0,0 +k1,8470:31966990,30635553:19661848 +g1,8470:31966990,30635553 +) +(1,8470:7246811,31301731:24720180,404226,101187 +h1,8470:7246811,31301731:0,0,0 +g1,8470:8195248,31301731 +g1,8470:11988996,31301731 +g1,8470:12305142,31301731 +g1,8470:12621288,31301731 +g1,8470:12937434,31301731 +g1,8470:13253580,31301731 +g1,8470:13569726,31301731 +g1,8470:13885872,31301731 +g1,8470:14202018,31301731 +g1,8470:14518164,31301731 +g1,8470:14834310,31301731 +g1,8470:15150456,31301731 +g1,8470:15466602,31301731 +h1,8470:15782748,31301731:0,0,0 +k1,8470:31966991,31301731:16184243 +g1,8470:31966991,31301731 +) +(1,8470:7246811,31967909:24720180,388497,9436 +h1,8470:7246811,31967909:0,0,0 +g1,8470:8195248,31967909 +g1,8470:8511394,31967909 +g1,8470:8827540,31967909 +g1,8470:9143686,31967909 +g1,8470:9459832,31967909 +g1,8470:9775978,31967909 +g1,8470:11988998,31967909 +g1,8470:12305144,31967909 +g1,8470:12621290,31967909 +g1,8470:12937436,31967909 +g1,8470:13253582,31967909 +g1,8470:13569728,31967909 +g1,8470:13885874,31967909 +h1,8470:15782748,31967909:0,0,0 +k1,8470:31966991,31967909:16184243 +g1,8470:31966991,31967909 +) +] +) +g1,8471:31966991,31977345 +g1,8471:7246811,31977345 +g1,8471:7246811,31977345 +g1,8471:31966991,31977345 +g1,8471:31966991,31977345 +) +h1,8471:7246811,32173953:0,0,0 +(1,8475:7246811,33443747:24720180,513147,134348 +h1,8474:7246811,33443747:983040,0,0 +k1,8474:9207231,33443747:159491 +k1,8474:11021506,33443747:159491 +k1,8474:12172557,33443747:159491 +k1,8474:14083825,33443747:159491 +k1,8474:17269113,33443747:159491 +k1,8474:18376254,33443747:159490 +k1,8474:19554830,33443747:159491 +k1,8474:23970229,33443747:159491 +k1,8474:24789012,33443747:159491 +k1,8474:27923182,33443747:159491 +k1,8474:30278784,33443747:159491 +k1,8475:31966991,33443747:0 +) +(1,8475:7246811,34285235:24720180,513147,134348 +k1,8474:8784288,34285235:228723 +k1,8474:9629049,34285235:228723 +k1,8474:11291700,34285235:228723 +k1,8474:11935236,34285235:228693 +k1,8474:13355404,34285235:228723 +k1,8474:16142653,34285235:228723 +k1,8474:19443704,34285235:228723 +k1,8474:22756551,34285235:228723 +k1,8474:23443371,34285235:228723 +k1,8474:24203591,34285235:228723 +k1,8474:29444508,34285235:228723 +k1,8474:30324659,34285235:228723 +k1,8474:31966991,34285235:0 +) +(1,8475:7246811,35126723:24720180,513147,134348 +k1,8474:9372033,35126723:137515 +k1,8474:12383302,35126723:137515 +k1,8474:18157568,35126723:137514 +k1,8474:18981245,35126723:137515 +k1,8474:21488542,35126723:137515 +k1,8474:22579606,35126723:137515 +k1,8474:23821403,35126723:137515 +k1,8474:25051402,35126723:137514 +k1,8474:28214714,35126723:137515 +k1,8474:29498454,35126723:137515 +(1,8474:29498454,35126723:0,452978,115847 +r1,8650:31966991,35126723:2468537,568825,115847 +k1,8474:29498454,35126723:-2468537 +) +(1,8474:29498454,35126723:2468537,452978,115847 +k1,8474:29498454,35126723:3277 +h1,8474:31963714,35126723:0,411205,112570 +) +k1,8474:31966991,35126723:0 +) +(1,8475:7246811,35968211:24720180,513147,115847 +k1,8474:8132341,35968211:234102 +k1,8474:11303112,35968211:234103 +k1,8474:11893074,35968211:234102 +k1,8474:14670628,35968211:234102 +k1,8474:15590892,35968211:234102 +k1,8474:17224844,35968211:234103 +k1,8474:18650391,35968211:234102 +k1,8474:20318421,35968211:234102 +k1,8474:21645009,35968211:234103 +(1,8474:21645009,35968211:0,459977,115847 +r1,8650:25872105,35968211:4227096,575824,115847 +k1,8474:21645009,35968211:-4227096 +) +(1,8474:21645009,35968211:4227096,459977,115847 +k1,8474:21645009,35968211:3277 +h1,8474:25868828,35968211:0,411205,112570 +) +k1,8474:26106207,35968211:234102 +k1,8474:26991737,35968211:234102 +k1,8474:29618558,35968211:234102 +k1,8474:30310758,35968211:234103 +k1,8474:31196288,35968211:234102 +k1,8474:31966991,35968211:0 +) +(1,8475:7246811,36809699:24720180,513147,134348 +g1,8474:9405566,36809699 +g1,8474:10264087,36809699 +g1,8474:12018485,36809699 +(1,8474:12018485,36809699:0,459977,115847 +r1,8650:14487022,36809699:2468537,575824,115847 +k1,8474:12018485,36809699:-2468537 +) +(1,8474:12018485,36809699:2468537,459977,115847 +k1,8474:12018485,36809699:3277 +h1,8474:14483745,36809699:0,411205,112570 +) +g1,8474:14859921,36809699 +g1,8474:17113048,36809699 +g1,8474:18259928,36809699 +g1,8474:20393780,36809699 +g1,8474:20948869,36809699 +k1,8475:31966991,36809699:8856745 +g1,8475:31966991,36809699 +) +v1,8477:7246811,37904182:0,393216,0 +(1,8491:7246811,43516196:24720180,6005230,196608 +g1,8491:7246811,43516196 +g1,8491:7246811,43516196 +g1,8491:7050203,43516196 +(1,8491:7050203,43516196:0,6005230,196608 +r1,8650:32163599,43516196:25113396,6201838,196608 +k1,8491:7050203,43516196:-25113396 +) +(1,8491:7050203,43516196:25113396,6005230,196608 +[1,8491:7246811,43516196:24720180,5808622,0 +(1,8479:7246811,38111800:24720180,404226,107478 +(1,8478:7246811,38111800:0,0,0 +g1,8478:7246811,38111800 +g1,8478:7246811,38111800 +g1,8478:6919131,38111800 +(1,8478:6919131,38111800:0,0,0 +) +g1,8478:7246811,38111800 +) +g1,8479:10408268,38111800 +g1,8479:11356706,38111800 +g1,8479:14834309,38111800 +g1,8479:16415038,38111800 +g1,8479:17679621,38111800 +g1,8479:18311913,38111800 +h1,8479:19576496,38111800:0,0,0 +k1,8479:31966991,38111800:12390495 +g1,8479:31966991,38111800 +) +(1,8480:7246811,38777978:24720180,410518,107478 +h1,8480:7246811,38777978:0,0,0 +g1,8480:15466599,38777978 +g1,8480:17047328,38777978 +g1,8480:17679620,38777978 +h1,8480:20208785,38777978:0,0,0 +k1,8480:31966991,38777978:11758206 +g1,8480:31966991,38777978 +) +(1,8490:7246811,39509692:24720180,379060,0 +(1,8482:7246811,39509692:0,0,0 +g1,8482:7246811,39509692 +g1,8482:7246811,39509692 +g1,8482:6919131,39509692 +(1,8482:6919131,39509692:0,0,0 +) +g1,8482:7246811,39509692 +) +h1,8490:7879102,39509692:0,0,0 +k1,8490:31966990,39509692:24087888 +g1,8490:31966990,39509692 +) +(1,8490:7246811,40175870:24720180,404226,7863 +h1,8490:7246811,40175870:0,0,0 +g1,8490:8195248,40175870 +h1,8490:9775976,40175870:0,0,0 +k1,8490:31966992,40175870:22191016 +g1,8490:31966992,40175870 +) +(1,8490:7246811,40842048:24720180,410518,107478 +h1,8490:7246811,40842048:0,0,0 +g1,8490:8195248,40842048 +g1,8490:11672851,40842048 +g1,8490:12305143,40842048 +g1,8490:19576494,40842048 +g1,8490:21157223,40842048 +g1,8490:21789515,40842048 +h1,8490:24318680,40842048:0,0,0 +k1,8490:31966991,40842048:7648311 +g1,8490:31966991,40842048 +) +(1,8490:7246811,41508226:24720180,379060,0 +h1,8490:7246811,41508226:0,0,0 +h1,8490:7879102,41508226:0,0,0 +k1,8490:31966990,41508226:24087888 +g1,8490:31966990,41508226 +) +(1,8490:7246811,42174404:24720180,410518,7863 +h1,8490:7246811,42174404:0,0,0 +g1,8490:8195248,42174404 +h1,8490:12305142,42174404:0,0,0 +k1,8490:31966990,42174404:19661848 +g1,8490:31966990,42174404 +) +(1,8490:7246811,42840582:24720180,404226,101187 +h1,8490:7246811,42840582:0,0,0 +g1,8490:8195248,42840582 +g1,8490:11988996,42840582 +g1,8490:12305142,42840582 +g1,8490:12621288,42840582 +g1,8490:12937434,42840582 +g1,8490:13253580,42840582 +g1,8490:13569726,42840582 +g1,8490:13885872,42840582 +g1,8490:14202018,42840582 +g1,8490:14518164,42840582 +g1,8490:14834310,42840582 +g1,8490:15150456,42840582 +g1,8490:15466602,42840582 +h1,8490:15782748,42840582:0,0,0 +k1,8490:31966991,42840582:16184243 +g1,8490:31966991,42840582 +) +(1,8490:7246811,43506760:24720180,388497,9436 +h1,8490:7246811,43506760:0,0,0 +g1,8490:8195248,43506760 +g1,8490:8511394,43506760 +g1,8490:8827540,43506760 +g1,8490:9143686,43506760 +g1,8490:9459832,43506760 +g1,8490:9775978,43506760 +g1,8490:11988998,43506760 +g1,8490:12305144,43506760 +g1,8490:12621290,43506760 +g1,8490:12937436,43506760 +g1,8490:13253582,43506760 +g1,8490:13569728,43506760 +g1,8490:13885874,43506760 +h1,8490:15782748,43506760:0,0,0 +k1,8490:31966991,43506760:16184243 +g1,8490:31966991,43506760 +) +] +) +g1,8491:31966991,43516196 +g1,8491:7246811,43516196 +g1,8491:7246811,43516196 +g1,8491:31966991,43516196 +g1,8491:31966991,43516196 +) +h1,8491:7246811,43712804:0,0,0 +(1,8495:7246811,44982597:24720180,513147,134348 +h1,8494:7246811,44982597:983040,0,0 +k1,8494:9550838,44982597:278965 +k1,8494:10848888,44982597:278965 +k1,8494:13434066,44982597:278966 +k1,8494:16787325,44982597:278965 +k1,8494:17725582,44982597:278965 +k1,8494:21387515,44982597:278965 +k1,8494:22022340,44982597:278965 +k1,8494:24844757,44982597:278965 +k1,8494:26391189,44982597:278966 +k1,8494:27026014,44982597:278965 +k1,8494:29344459,44982597:278965 +k1,8494:30491776,44982597:278965 +k1,8494:31966991,44982597:0 +) +] +) +] +r1,8650:32583029,45706769:26214,39845888,0 +) +] +) +) +g1,8650:32583029,45116945 +) +] +(1,8650:32583029,45706769:0,0,0 +g1,8650:32583029,45706769 +) +) +] +(1,8650:6630773,47279633:25952256,0,0 +h1,8650:6630773,47279633:25952256,0,0 +) +] +h1,8650:4262630,4025873:0,0,0 ] !25298 }157 !12 {158 -[1,8645:4262630,47279633:28320399,43253760,0 -(1,8645:4262630,4025873:0,0,0 -[1,8645:-473657,4025873:25952256,0,0 -(1,8645:-473657,-710414:25952256,0,0 -h1,8645:-473657,-710414:0,0,0 -(1,8645:-473657,-710414:0,0,0 -(1,8645:-473657,-710414:0,0,0 -g1,8645:-473657,-710414 -(1,8645:-473657,-710414:65781,0,65781 -g1,8645:-407876,-710414 -[1,8645:-407876,-644633:0,0,0 +[1,8650:4262630,47279633:28320399,43253760,0 +(1,8650:4262630,4025873:0,0,0 +[1,8650:-473657,4025873:25952256,0,0 +(1,8650:-473657,-710414:25952256,0,0 +h1,8650:-473657,-710414:0,0,0 +(1,8650:-473657,-710414:0,0,0 +(1,8650:-473657,-710414:0,0,0 +g1,8650:-473657,-710414 +(1,8650:-473657,-710414:65781,0,65781 +g1,8650:-407876,-710414 +[1,8650:-407876,-644633:0,0,0 ] ) -k1,8645:-473657,-710414:-65781 +k1,8650:-473657,-710414:-65781 ) ) -k1,8645:25478599,-710414:25952256 -g1,8645:25478599,-710414 +k1,8650:25478599,-710414:25952256 +g1,8650:25478599,-710414 ) ] ) -[1,8645:6630773,47279633:25952256,43253760,0 -[1,8645:6630773,4812305:25952256,786432,0 -(1,8645:6630773,4812305:25952256,513147,126483 -(1,8645:6630773,4812305:25952256,513147,126483 -g1,8645:3078558,4812305 -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,2439708:0,1703936,0 -k1,8645:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8645:2537886,2439708:1179648,16384,0 +[1,8650:6630773,47279633:25952256,43253760,0 +[1,8650:6630773,4812305:25952256,786432,0 +(1,8650:6630773,4812305:25952256,513147,126483 +(1,8650:6630773,4812305:25952256,513147,126483 +g1,8650:3078558,4812305 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,2439708:0,1703936,0 +k1,8650:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8650:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8645:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8650:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,2439708:0,1703936,0 -g1,8645:29030814,2439708 -g1,8645:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8645:36151628,1915420:16384,1179648,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,2439708:0,1703936,0 +g1,8650:29030814,2439708 +g1,8650:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8650:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8645:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8650:37855564,2439708:1179648,16384,0 ) ) -k1,8645:3078556,2439708:-34777008 +k1,8650:3078556,2439708:-34777008 ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,49800853:0,16384,2228224 -k1,8645:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8645:2537886,49800853:1179648,16384,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,49800853:0,16384,2228224 +k1,8650:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8650:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8645:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8650:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8645:3078558,4812305:0,0,0 -(1,8645:3078558,49800853:0,16384,2228224 -g1,8645:29030814,49800853 -g1,8645:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8645:36151628,51504789:16384,1179648,0 +[1,8650:3078558,4812305:0,0,0 +(1,8650:3078558,49800853:0,16384,2228224 +g1,8650:29030814,49800853 +g1,8650:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8650:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8645:37855564,49800853:1179648,16384,0 -) -) -k1,8645:3078556,49800853:-34777008 -) -] -g1,8645:6630773,4812305 -g1,8645:6630773,4812305 -g1,8645:8691224,4812305 -g1,8645:11722264,4812305 -k1,8645:31387652,4812305:19665388 -) -) -] -[1,8645:6630773,45706769:25952256,40108032,0 -(1,8645:6630773,45706769:25952256,40108032,0 -(1,8645:6630773,45706769:0,0,0 -g1,8645:6630773,45706769 -) -[1,8645:6630773,45706769:25952256,40108032,0 -v1,8645:6630773,6254097:0,393216,0 -(1,8645:6630773,45116945:25952256,39256064,589824 -g1,8645:6630773,45116945 -(1,8645:6630773,45116945:25952256,39256064,589824 -(1,8645:6630773,45706769:25952256,39845888,0 -[1,8645:6630773,45706769:25952256,39845888,0 -(1,8645:6630773,45706769:25952256,39845888,0 -r1,8645:6656987,45706769:26214,39845888,0 -[1,8645:6656987,45706769:25899828,39845888,0 -(1,8645:6656987,45116945:25899828,38666240,0 -[1,8645:7246811,45116945:24720180,38666240,0 -(1,8490:7246811,6963852:24720180,513147,115847 -k1,8489:10296584,6963852:265804 -k1,8489:13347013,6963852:265804 -(1,8489:13347013,6963852:0,452978,115847 -r1,8645:18277533,6963852:4930520,568825,115847 -k1,8489:13347013,6963852:-4930520 -) -(1,8489:13347013,6963852:4930520,452978,115847 -k1,8489:13347013,6963852:3277 -h1,8489:18274256,6963852:0,411205,112570 -) -k1,8489:18543338,6963852:265805 -k1,8489:20000587,6963852:265804 -(1,8489:20000587,6963852:0,459977,115847 -r1,8645:22820836,6963852:2820249,575824,115847 -k1,8489:20000587,6963852:-2820249 -) -(1,8489:20000587,6963852:2820249,459977,115847 -k1,8489:20000587,6963852:3277 -h1,8489:22817559,6963852:0,411205,112570 -) -k1,8489:23260310,6963852:265804 -k1,8489:24722801,6963852:265804 -k1,8489:26294739,6963852:265805 -k1,8489:27219835,6963852:265804 -k1,8489:29182366,6963852:265804 -k1,8489:31966991,6963852:0 -) -(1,8490:7246811,7805340:24720180,513147,134348 -k1,8489:9755470,7805340:167713 -k1,8489:10279042,7805340:167712 -k1,8489:13421434,7805340:167713 -k1,8489:15567023,7805340:167712 -k1,8489:19096733,7805340:167713 -k1,8489:20283530,7805340:167712 -k1,8489:24378816,7805340:167713 -k1,8489:25205820,7805340:167712 -k1,8489:26392618,7805340:167713 -k1,8489:29103782,7805340:167712 -k1,8489:29957657,7805340:167713 -k1,8490:31966991,7805340:0 -) -(1,8490:7246811,8646828:24720180,513147,134348 -k1,8489:8832225,8646828:188842 -k1,8489:11390848,8646828:188841 -k1,8489:13269208,8646828:188842 -(1,8489:13269208,8646828:0,459977,115847 -r1,8645:16089457,8646828:2820249,575824,115847 -k1,8489:13269208,8646828:-2820249 -) -(1,8489:13269208,8646828:2820249,459977,115847 -k1,8489:13269208,8646828:3277 -h1,8489:16086180,8646828:0,411205,112570 -) -k1,8489:16278298,8646828:188841 -k1,8489:18808086,8646828:188842 -k1,8489:19352787,8646828:188841 -k1,8489:21414648,8646828:188842 -k1,8489:24578168,8646828:188841 -k1,8489:26632820,8646828:188842 -k1,8489:28215612,8646828:188841 -k1,8489:29423539,8646828:188842 -k1,8489:31966991,8646828:0 -) -(1,8490:7246811,9488316:24720180,513147,134348 -g1,8489:10651406,9488316 -g1,8489:11798286,9488316 -k1,8490:31966991,9488316:17422746 -g1,8490:31966991,9488316 -) -v1,8492:7246811,10545884:0,393216,0 -(1,8506:7246811,14312125:24720180,4159457,196608 -g1,8506:7246811,14312125 -g1,8506:7246811,14312125 -g1,8506:7050203,14312125 -(1,8506:7050203,14312125:0,4159457,196608 -r1,8645:32163599,14312125:25113396,4356065,196608 -k1,8506:7050203,14312125:-25113396 -) -(1,8506:7050203,14312125:25113396,4159457,196608 -[1,8506:7246811,14312125:24720180,3962849,0 -(1,8494:7246811,10759794:24720180,410518,107478 -(1,8493:7246811,10759794:0,0,0 -g1,8493:7246811,10759794 -g1,8493:7246811,10759794 -g1,8493:6919131,10759794 -(1,8493:6919131,10759794:0,0,0 -) -g1,8493:7246811,10759794 -) -g1,8494:12621288,10759794 -g1,8494:13569726,10759794 -g1,8494:16415037,10759794 -g1,8494:17047329,10759794 -h1,8494:17679620,10759794:0,0,0 -k1,8494:31966991,10759794:14287371 -g1,8494:31966991,10759794 -) -(1,8495:7246811,11425972:24720180,410518,107478 -h1,8495:7246811,11425972:0,0,0 -h1,8495:12305142,11425972:0,0,0 -k1,8495:31966990,11425972:19661848 -g1,8495:31966990,11425972 -) -(1,8499:7246811,12157686:24720180,404226,101187 -(1,8497:7246811,12157686:0,0,0 -g1,8497:7246811,12157686 -g1,8497:7246811,12157686 -g1,8497:6919131,12157686 -(1,8497:6919131,12157686:0,0,0 -) -g1,8497:7246811,12157686 -) -g1,8499:8195248,12157686 -g1,8499:9459831,12157686 -g1,8499:10408268,12157686 -g1,8499:11040560,12157686 -h1,8499:11672851,12157686:0,0,0 -k1,8499:31966991,12157686:20294140 -g1,8499:31966991,12157686 -) -(1,8501:7246811,13479224:24720180,410518,107478 -(1,8500:7246811,13479224:0,0,0 -g1,8500:7246811,13479224 -g1,8500:7246811,13479224 -g1,8500:6919131,13479224 -(1,8500:6919131,13479224:0,0,0 -) -g1,8500:7246811,13479224 -) -k1,8501:7246811,13479224:0 -h1,8501:16098890,13479224:0,0,0 -k1,8501:31966991,13479224:15868101 -g1,8501:31966991,13479224 -) -(1,8505:7246811,14210938:24720180,379060,101187 -(1,8503:7246811,14210938:0,0,0 -g1,8503:7246811,14210938 -g1,8503:7246811,14210938 -g1,8503:6919131,14210938 -(1,8503:6919131,14210938:0,0,0 -) -g1,8503:7246811,14210938 -) -g1,8505:8195248,14210938 -g1,8505:8827540,14210938 -g1,8505:9459832,14210938 -h1,8505:9775978,14210938:0,0,0 -k1,8505:31966990,14210938:22191012 -g1,8505:31966990,14210938 -) -] -) -g1,8506:31966991,14312125 -g1,8506:7246811,14312125 -g1,8506:7246811,14312125 -g1,8506:31966991,14312125 -g1,8506:31966991,14312125 -) -h1,8506:7246811,14508733:0,0,0 -(1,8510:7246811,15741612:24720180,513147,134348 -h1,8509:7246811,15741612:983040,0,0 -k1,8509:8914180,15741612:214436 -k1,8509:9660113,15741612:214436 -k1,8509:11160365,15741612:214436 -k1,8509:14004761,15741612:214436 -k1,8509:14870625,15741612:214436 -k1,8509:16294855,15741612:214436 -k1,8509:19052743,15741612:214436 -k1,8509:21557007,15741612:214436 -k1,8509:23165394,15741612:214436 -k1,8509:25834153,15741612:214436 -(1,8509:25834153,15741612:0,452978,115847 -r1,8645:28654402,15741612:2820249,568825,115847 -k1,8509:25834153,15741612:-2820249 -) -(1,8509:25834153,15741612:2820249,452978,115847 -k1,8509:25834153,15741612:3277 -h1,8509:28651125,15741612:0,411205,112570 -) -k1,8509:29042508,15741612:214436 -k1,8509:29884779,15741612:214436 -k1,8509:31118300,15741612:214436 -k1,8510:31966991,15741612:0 -) -(1,8510:7246811,16583100:24720180,513147,134348 -k1,8509:10701415,16583100:152900 -k1,8509:13571439,16583100:152901 -k1,8509:14080199,16583100:152900 -k1,8509:15305268,16583100:152900 -k1,8509:16562451,16583100:152901 -k1,8509:19013699,16583100:152900 -k1,8509:21022579,16583100:152900 -k1,8509:22194564,16583100:152900 -k1,8509:25240880,16583100:152901 -k1,8509:26693359,16583100:152900 -k1,8509:28210719,16583100:152900 -k1,8509:29046505,16583100:152901 -k1,8509:30218490,16583100:152900 -k1,8510:31966991,16583100:0 -) -(1,8510:7246811,17424588:24720180,513147,134348 -k1,8509:9008519,17424588:155421 -k1,8509:10463519,17424588:155421 -k1,8509:12066631,17424588:155422 -k1,8509:12881344,17424588:155421 -k1,8509:14055850,17424588:155421 -k1,8509:16702294,17424588:155421 -k1,8509:19401168,17424588:155422 -k1,8509:20172627,17424588:155421 -k1,8509:21347133,17424588:155421 -k1,8509:25439957,17424588:155421 -k1,8509:28312502,17424588:155422 -k1,8509:29421472,17424588:155421 -k1,8509:30681175,17424588:155421 -k1,8509:31966991,17424588:0 -) -(1,8510:7246811,18266076:24720180,505283,134348 -k1,8509:9841432,18266076:239912 -k1,8509:11924216,18266076:239912 -k1,8509:12850290,18266076:239912 -k1,8509:14194484,18266076:239912 -k1,8509:15182162,18266076:239912 -k1,8509:16861900,18266076:239912 -k1,8509:19143915,18266076:239913 -k1,8509:20011662,18266076:239912 -k1,8509:21943714,18266076:239912 -k1,8509:23881008,18266076:239912 -k1,8509:25140005,18266076:239912 -k1,8509:26452086,18266076:239912 -k1,8509:31315563,18266076:239912 -k1,8509:31966991,18266076:0 -) -(1,8510:7246811,19107564:24720180,505283,134348 -g1,8509:8465125,19107564 -g1,8509:9614626,19107564 -g1,8509:10918137,19107564 -g1,8509:11865132,19107564 -g1,8509:14735608,19107564 -g1,8509:16007006,19107564 -g1,8509:19186812,19107564 -g1,8509:19844138,19107564 -g1,8509:22089401,19107564 -g1,8509:23307715,19107564 -g1,8509:25590989,19107564 -k1,8510:31966991,19107564:4036367 -g1,8510:31966991,19107564 -) -v1,8512:7246811,20165132:0,393216,0 -(1,8544:7246811,30091129:24720180,10319213,196608 -g1,8544:7246811,30091129 -g1,8544:7246811,30091129 -g1,8544:7050203,30091129 -(1,8544:7050203,30091129:0,10319213,196608 -r1,8645:32163599,30091129:25113396,10515821,196608 -k1,8544:7050203,30091129:-25113396 -) -(1,8544:7050203,30091129:25113396,10319213,196608 -[1,8544:7246811,30091129:24720180,10122605,0 -(1,8514:7246811,20379042:24720180,410518,101187 -(1,8513:7246811,20379042:0,0,0 -g1,8513:7246811,20379042 -g1,8513:7246811,20379042 -g1,8513:6919131,20379042 -(1,8513:6919131,20379042:0,0,0 -) -g1,8513:7246811,20379042 -) -g1,8514:10724414,20379042 -g1,8514:11672852,20379042 -g1,8514:12305144,20379042 -g1,8514:12937436,20379042 -g1,8514:13885873,20379042 -g1,8514:14518165,20379042 -h1,8514:15150456,20379042:0,0,0 -k1,8514:31966992,20379042:16816536 -g1,8514:31966992,20379042 -) -(1,8515:7246811,21045220:24720180,410518,101187 -h1,8515:7246811,21045220:0,0,0 -g1,8515:13253579,21045220 -g1,8515:13885871,21045220 -g1,8515:14518163,21045220 -g1,8515:15150455,21045220 -g1,8515:15782747,21045220 -h1,8515:16731184,21045220:0,0,0 -k1,8515:31966991,21045220:15235807 -g1,8515:31966991,21045220 -) -(1,8519:7246811,21776934:24720180,388497,101187 -(1,8517:7246811,21776934:0,0,0 -g1,8517:7246811,21776934 -g1,8517:7246811,21776934 -g1,8517:6919131,21776934 -(1,8517:6919131,21776934:0,0,0 -) -g1,8517:7246811,21776934 -) -g1,8519:8195248,21776934 -g1,8519:8827540,21776934 -g1,8519:9459832,21776934 -g1,8519:10408269,21776934 -g1,8519:11040561,21776934 -g1,8519:11988998,21776934 -g1,8519:12621290,21776934 -h1,8519:13253581,21776934:0,0,0 -k1,8519:31966991,21776934:18713410 -g1,8519:31966991,21776934 -) -(1,8521:7246811,23098472:24720180,410518,101187 -(1,8520:7246811,23098472:0,0,0 -g1,8520:7246811,23098472 -g1,8520:7246811,23098472 -g1,8520:6919131,23098472 -(1,8520:6919131,23098472:0,0,0 -) -g1,8520:7246811,23098472 -) -k1,8521:7246811,23098472:0 -g1,8521:13253579,23098472 -g1,8521:13885871,23098472 -g1,8521:14518163,23098472 -g1,8521:15150455,23098472 -g1,8521:15782747,23098472 -h1,8521:16731184,23098472:0,0,0 -k1,8521:31966991,23098472:15235807 -g1,8521:31966991,23098472 -) -(1,8525:7246811,23830186:24720180,388497,101187 -(1,8523:7246811,23830186:0,0,0 -g1,8523:7246811,23830186 -g1,8523:7246811,23830186 -g1,8523:6919131,23830186 -(1,8523:6919131,23830186:0,0,0 -) -g1,8523:7246811,23830186 -) -g1,8525:8195248,23830186 -g1,8525:8827540,23830186 -g1,8525:9459832,23830186 -h1,8525:10092123,23830186:0,0,0 -k1,8525:31966991,23830186:21874868 -g1,8525:31966991,23830186 -) -(1,8527:7246811,25151724:24720180,410518,101187 -(1,8526:7246811,25151724:0,0,0 -g1,8526:7246811,25151724 -g1,8526:7246811,25151724 -g1,8526:6919131,25151724 -(1,8526:6919131,25151724:0,0,0 -) -g1,8526:7246811,25151724 -) -k1,8527:7246811,25151724:0 -g1,8527:13253579,25151724 -g1,8527:13885871,25151724 -g1,8527:14518163,25151724 -h1,8527:15466600,25151724:0,0,0 -k1,8527:31966991,25151724:16500391 -g1,8527:31966991,25151724 -) -(1,8531:7246811,25883438:24720180,388497,101187 -(1,8529:7246811,25883438:0,0,0 -g1,8529:7246811,25883438 -g1,8529:7246811,25883438 -g1,8529:6919131,25883438 -(1,8529:6919131,25883438:0,0,0 -) -g1,8529:7246811,25883438 -) -g1,8531:8195248,25883438 -g1,8531:8827540,25883438 -g1,8531:9459832,25883438 -h1,8531:10092123,25883438:0,0,0 -k1,8531:31966991,25883438:21874868 -g1,8531:31966991,25883438 -) -(1,8533:7246811,27204976:24720180,410518,101187 -(1,8532:7246811,27204976:0,0,0 -g1,8532:7246811,27204976 -g1,8532:7246811,27204976 -g1,8532:6919131,27204976 -(1,8532:6919131,27204976:0,0,0 -) -g1,8532:7246811,27204976 -) -k1,8533:7246811,27204976:0 -g1,8533:13253579,27204976 -g1,8533:13885871,27204976 -g1,8533:14518163,27204976 -h1,8533:15150454,27204976:0,0,0 -k1,8533:31966990,27204976:16816536 -g1,8533:31966990,27204976 -) -(1,8537:7246811,27936690:24720180,388497,0 -(1,8535:7246811,27936690:0,0,0 -g1,8535:7246811,27936690 -g1,8535:7246811,27936690 -g1,8535:6919131,27936690 -(1,8535:6919131,27936690:0,0,0 -) -g1,8535:7246811,27936690 -) -g1,8537:8195248,27936690 -g1,8537:8827540,27936690 -g1,8537:9459832,27936690 -g1,8537:10408269,27936690 -g1,8537:11040561,27936690 -h1,8537:11672852,27936690:0,0,0 -k1,8537:31966992,27936690:20294140 -g1,8537:31966992,27936690 -) -(1,8539:7246811,29258228:24720180,410518,101187 -(1,8538:7246811,29258228:0,0,0 -g1,8538:7246811,29258228 -g1,8538:7246811,29258228 -g1,8538:6919131,29258228 -(1,8538:6919131,29258228:0,0,0 -) -g1,8538:7246811,29258228 -) -k1,8539:7246811,29258228:0 -g1,8539:13253579,29258228 -g1,8539:13885871,29258228 -g1,8539:14518163,29258228 -g1,8539:15150455,29258228 -g1,8539:15782747,29258228 -h1,8539:16415038,29258228:0,0,0 -k1,8539:31966991,29258228:15551953 -g1,8539:31966991,29258228 -) -(1,8543:7246811,29989942:24720180,388497,101187 -(1,8541:7246811,29989942:0,0,0 -g1,8541:7246811,29989942 -g1,8541:7246811,29989942 -g1,8541:6919131,29989942 -(1,8541:6919131,29989942:0,0,0 -) -g1,8541:7246811,29989942 -) -g1,8543:8195248,29989942 -g1,8543:8827540,29989942 -g1,8543:9459832,29989942 -g1,8543:10092124,29989942 -g1,8543:10724416,29989942 -g1,8543:11672853,29989942 -g1,8543:12305145,29989942 -h1,8543:12937436,29989942:0,0,0 -k1,8543:31966992,29989942:19029556 -g1,8543:31966992,29989942 -) -] -) -g1,8544:31966991,30091129 -g1,8544:7246811,30091129 -g1,8544:7246811,30091129 -g1,8544:31966991,30091129 -g1,8544:31966991,30091129 -) -h1,8544:7246811,30287737:0,0,0 -(1,8548:7246811,31520615:24720180,513147,134348 -h1,8547:7246811,31520615:983040,0,0 -k1,8547:8893931,31520615:219091 -k1,8547:11873418,31520615:219111 -k1,8547:15172721,31520615:219111 -k1,8547:18417629,31520615:219111 -k1,8547:19584391,31520615:219111 -k1,8547:21791209,31520615:219111 -k1,8547:25015146,31520615:219111 -k1,8547:29581260,31520615:219111 -k1,8547:31552148,31520615:219111 -k1,8548:31966991,31520615:0 -) -(1,8548:7246811,32362103:24720180,513147,126483 -k1,8547:9243311,32362103:285355 -k1,8547:10661127,32362103:285354 -k1,8547:12792631,32362103:285355 -k1,8547:14608252,32362103:285355 -k1,8547:15545034,32362103:285354 -k1,8547:17056568,32362103:285355 -k1,8547:19329630,32362103:285355 -k1,8547:22488738,32362103:285354 -k1,8547:23390131,32362103:285355 -k1,8547:25184125,32362103:285355 -k1,8547:27804527,32362103:285354 -k1,8547:29131904,32362103:285355 -k1,8547:31966991,32362103:0 -) -(1,8548:7246811,33203591:24720180,505283,126483 -g1,8547:10414166,33203591 -g1,8547:12601102,33203591 -g1,8547:15631486,33203591 -g1,8547:16362212,33203591 -g1,8547:19191401,33203591 -g1,8547:20784581,33203591 -g1,8547:21398653,33203591 -g1,8547:24052205,33203591 -(1,8547:24052205,33203591:0,452978,115847 -r1,8645:26169030,33203591:2116825,568825,115847 -k1,8547:24052205,33203591:-2116825 -) -(1,8547:24052205,33203591:2116825,452978,115847 -k1,8547:24052205,33203591:3277 -h1,8547:26165753,33203591:0,411205,112570 -) -k1,8548:31966991,33203591:5624291 -g1,8548:31966991,33203591 -) -(1,8550:7246811,34045079:24720180,513147,126483 -h1,8549:7246811,34045079:983040,0,0 -k1,8549:8987055,34045079:269616 -k1,8549:11344063,34045079:269686 -k1,8549:12273042,34045079:269687 -k1,8549:14979357,34045079:269686 -k1,8549:18860078,34045079:269687 -k1,8549:20234046,34045079:269686 -k1,8549:21251499,34045079:269687 -k1,8549:23904074,34045079:269686 -k1,8549:25741382,34045079:269687 -k1,8549:26366928,34045079:269686 -k1,8549:28624322,34045079:269687 -k1,8549:31611131,34045079:269686 -k1,8549:31966991,34045079:0 -) -(1,8550:7246811,34886567:24720180,513147,126483 -g1,8549:8832126,34886567 -g1,8549:9690647,34886567 -g1,8549:12694817,34886567 -g1,8549:14085491,34886567 -g1,8549:15303805,34886567 -g1,8549:16892397,34886567 -g1,8549:18039277,34886567 -g1,8549:19257591,34886567 -g1,8549:23222519,34886567 -k1,8550:31966991,34886567:5729161 -g1,8550:31966991,34886567 -) -v1,8552:7246811,35944136:0,393216,0 -(1,8569:7246811,43560976:24720180,8010056,196608 -g1,8569:7246811,43560976 -g1,8569:7246811,43560976 -g1,8569:7050203,43560976 -(1,8569:7050203,43560976:0,8010056,196608 -r1,8645:32163599,43560976:25113396,8206664,196608 -k1,8569:7050203,43560976:-25113396 -) -(1,8569:7050203,43560976:25113396,8010056,196608 -[1,8569:7246811,43560976:24720180,7813448,0 -(1,8554:7246811,36158046:24720180,410518,101187 -(1,8553:7246811,36158046:0,0,0 -g1,8553:7246811,36158046 -g1,8553:7246811,36158046 -g1,8553:6919131,36158046 -(1,8553:6919131,36158046:0,0,0 -) -g1,8553:7246811,36158046 -) -g1,8554:10408268,36158046 -g1,8554:11356706,36158046 -g1,8554:15466601,36158046 -g1,8554:16098893,36158046 -g1,8554:20208788,36158046 -g1,8554:22421809,36158046 -g1,8554:24002539,36158046 -k1,8554:24002539,36158046:0 -h1,8554:25267122,36158046:0,0,0 -k1,8554:31966991,36158046:6699869 -g1,8554:31966991,36158046 -) -(1,8555:7246811,36824224:24720180,404226,101187 -h1,8555:7246811,36824224:0,0,0 -g1,8555:7562957,36824224 -g1,8555:7879103,36824224 -g1,8555:8195249,36824224 -g1,8555:8511395,36824224 -g1,8555:8827541,36824224 -g1,8555:9143687,36824224 -g1,8555:9459833,36824224 -g1,8555:9775979,36824224 -g1,8555:10092125,36824224 -g1,8555:10408271,36824224 -g1,8555:10724417,36824224 -g1,8555:11040563,36824224 -g1,8555:11356709,36824224 -g1,8555:11672855,36824224 -g1,8555:11989001,36824224 -g1,8555:12305147,36824224 -g1,8555:12621293,36824224 -g1,8555:12937439,36824224 -g1,8555:13253585,36824224 -g1,8555:13569731,36824224 -g1,8555:13885877,36824224 -g1,8555:14202023,36824224 -g1,8555:14518169,36824224 -g1,8555:14834315,36824224 -g1,8555:15466607,36824224 -g1,8555:16098899,36824224 -g1,8555:20841086,36824224 -g1,8555:24002544,36824224 -h1,8555:24950981,36824224:0,0,0 -k1,8555:31966991,36824224:7016010 -g1,8555:31966991,36824224 -) -(1,8556:7246811,37490402:24720180,410518,6290 -h1,8556:7246811,37490402:0,0,0 -h1,8556:10092122,37490402:0,0,0 -k1,8556:31966990,37490402:21874868 -g1,8556:31966990,37490402 -) -(1,8568:7246811,38222116:24720180,379060,0 -(1,8558:7246811,38222116:0,0,0 -g1,8558:7246811,38222116 -g1,8558:7246811,38222116 -g1,8558:6919131,38222116 -(1,8558:6919131,38222116:0,0,0 -) -g1,8558:7246811,38222116 -) -g1,8568:8195248,38222116 -g1,8568:8511394,38222116 -g1,8568:8827540,38222116 -g1,8568:9143686,38222116 -g1,8568:9459832,38222116 -g1,8568:10092124,38222116 -g1,8568:10408270,38222116 -g1,8568:10724416,38222116 -g1,8568:11040562,38222116 -g1,8568:11356708,38222116 -h1,8568:11672854,38222116:0,0,0 -k1,8568:31966990,38222116:20294136 -g1,8568:31966990,38222116 -) -(1,8568:7246811,38888294:24720180,404226,101187 -h1,8568:7246811,38888294:0,0,0 -g1,8568:8195248,38888294 -g1,8568:8827540,38888294 -g1,8568:10092123,38888294 -h1,8568:11672851,38888294:0,0,0 -k1,8568:31966991,38888294:20294140 -g1,8568:31966991,38888294 -) -(1,8568:7246811,39554472:24720180,404226,101187 -h1,8568:7246811,39554472:0,0,0 -g1,8568:8195248,39554472 -g1,8568:8827540,39554472 -g1,8568:10092123,39554472 -h1,8568:11672851,39554472:0,0,0 -k1,8568:31966991,39554472:20294140 -g1,8568:31966991,39554472 -) -(1,8568:7246811,40220650:24720180,404226,101187 -h1,8568:7246811,40220650:0,0,0 -g1,8568:8195248,40220650 -g1,8568:8827540,40220650 -g1,8568:10092123,40220650 -h1,8568:11672851,40220650:0,0,0 -k1,8568:31966991,40220650:20294140 -g1,8568:31966991,40220650 -) -(1,8568:7246811,40886828:24720180,404226,101187 -h1,8568:7246811,40886828:0,0,0 -g1,8568:8195248,40886828 -g1,8568:8827540,40886828 -g1,8568:10092123,40886828 -h1,8568:11672851,40886828:0,0,0 -k1,8568:31966991,40886828:20294140 -g1,8568:31966991,40886828 -) -(1,8568:7246811,41553006:24720180,404226,9436 -h1,8568:7246811,41553006:0,0,0 -g1,8568:8195248,41553006 -g1,8568:8827540,41553006 -g1,8568:9143686,41553006 -g1,8568:10092123,41553006 -h1,8568:11672851,41553006:0,0,0 -k1,8568:31966991,41553006:20294140 -g1,8568:31966991,41553006 -) -(1,8568:7246811,42219184:24720180,404226,9436 -h1,8568:7246811,42219184:0,0,0 -g1,8568:8195248,42219184 -g1,8568:8827540,42219184 -g1,8568:9143686,42219184 -g1,8568:10092123,42219184 -h1,8568:11672851,42219184:0,0,0 -k1,8568:31966991,42219184:20294140 -g1,8568:31966991,42219184 -) -(1,8568:7246811,42885362:24720180,404226,6290 -h1,8568:7246811,42885362:0,0,0 -g1,8568:8195248,42885362 -g1,8568:8827540,42885362 -g1,8568:9143686,42885362 -g1,8568:10092123,42885362 -h1,8568:11672851,42885362:0,0,0 -k1,8568:31966991,42885362:20294140 -g1,8568:31966991,42885362 -) -(1,8568:7246811,43551540:24720180,404226,9436 -h1,8568:7246811,43551540:0,0,0 -g1,8568:8195248,43551540 -g1,8568:8827540,43551540 -g1,8568:9143686,43551540 -g1,8568:10092123,43551540 -h1,8568:11672851,43551540:0,0,0 -k1,8568:31966991,43551540:20294140 -g1,8568:31966991,43551540 -) -] -) -g1,8569:31966991,43560976 -g1,8569:7246811,43560976 -g1,8569:7246811,43560976 -g1,8569:31966991,43560976 -g1,8569:31966991,43560976 -) -h1,8569:7246811,43757584:0,0,0 -(1,8573:7246811,44990462:24720180,513147,126483 -h1,8572:7246811,44990462:983040,0,0 -g1,8572:9625767,44990462 -g1,8572:12090576,44990462 -g1,8572:15251377,44990462 -g1,8572:17166994,44990462 -g1,8572:20276677,44990462 -g1,8572:21091944,44990462 -k1,8573:31966991,44990462:9608891 -g1,8573:31966991,44990462 -) -] -) -] -r1,8645:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,8645:32583029,45116945 -) -] -(1,8645:32583029,45706769:0,0,0 -g1,8645:32583029,45706769 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8650:37855564,49800853:1179648,16384,0 +) +) +k1,8650:3078556,49800853:-34777008 +) +] +g1,8650:6630773,4812305 +g1,8650:6630773,4812305 +g1,8650:8691224,4812305 +g1,8650:11722264,4812305 +k1,8650:31387652,4812305:19665388 +) +) +] +[1,8650:6630773,45706769:25952256,40108032,0 +(1,8650:6630773,45706769:25952256,40108032,0 +(1,8650:6630773,45706769:0,0,0 +g1,8650:6630773,45706769 +) +[1,8650:6630773,45706769:25952256,40108032,0 +v1,8650:6630773,6254097:0,393216,0 +(1,8650:6630773,45116945:25952256,39256064,589824 +g1,8650:6630773,45116945 +(1,8650:6630773,45116945:25952256,39256064,589824 +(1,8650:6630773,45706769:25952256,39845888,0 +[1,8650:6630773,45706769:25952256,39845888,0 +(1,8650:6630773,45706769:25952256,39845888,0 +r1,8650:6656987,45706769:26214,39845888,0 +[1,8650:6656987,45706769:25899828,39845888,0 +(1,8650:6656987,45116945:25899828,38666240,0 +[1,8650:7246811,45116945:24720180,38666240,0 +(1,8495:7246811,6963852:24720180,513147,115847 +k1,8494:10296584,6963852:265804 +k1,8494:13347013,6963852:265804 +(1,8494:13347013,6963852:0,452978,115847 +r1,8650:18277533,6963852:4930520,568825,115847 +k1,8494:13347013,6963852:-4930520 +) +(1,8494:13347013,6963852:4930520,452978,115847 +k1,8494:13347013,6963852:3277 +h1,8494:18274256,6963852:0,411205,112570 +) +k1,8494:18543338,6963852:265805 +k1,8494:20000587,6963852:265804 +(1,8494:20000587,6963852:0,459977,115847 +r1,8650:22820836,6963852:2820249,575824,115847 +k1,8494:20000587,6963852:-2820249 +) +(1,8494:20000587,6963852:2820249,459977,115847 +k1,8494:20000587,6963852:3277 +h1,8494:22817559,6963852:0,411205,112570 +) +k1,8494:23260310,6963852:265804 +k1,8494:24722801,6963852:265804 +k1,8494:26294739,6963852:265805 +k1,8494:27219835,6963852:265804 +k1,8494:29182366,6963852:265804 +k1,8494:31966991,6963852:0 +) +(1,8495:7246811,7805340:24720180,513147,134348 +k1,8494:9806230,7805340:218473 +k1,8494:10380563,7805340:218473 +k1,8494:13573716,7805340:218474 +k1,8494:15770066,7805340:218473 +k1,8494:19350536,7805340:218473 +k1,8494:20588094,7805340:218473 +k1,8494:24734140,7805340:218473 +k1,8494:25611905,7805340:218473 +k1,8494:26849464,7805340:218474 +k1,8494:29611389,7805340:218473 +k1,8494:30516024,7805340:218473 +k1,8495:31966991,7805340:0 +) +(1,8495:7246811,8646828:24720180,513147,134348 +k1,8494:9339831,8646828:138081 +k1,8494:11847694,8646828:138081 +k1,8494:13675293,8646828:138081 +(1,8494:13675293,8646828:0,459977,115847 +r1,8650:16495542,8646828:2820249,575824,115847 +k1,8494:13675293,8646828:-2820249 +) +(1,8494:13675293,8646828:2820249,459977,115847 +k1,8494:13675293,8646828:3277 +h1,8494:16492265,8646828:0,411205,112570 +) +k1,8494:16633623,8646828:138081 +k1,8494:19112650,8646828:138081 +k1,8494:19606590,8646828:138080 +k1,8494:21617690,8646828:138081 +k1,8494:24730450,8646828:138081 +k1,8494:26734341,8646828:138081 +k1,8494:28266373,8646828:138081 +k1,8494:29423539,8646828:138081 +k1,8494:31966991,8646828:0 +) +(1,8495:7246811,9488316:24720180,513147,134348 +g1,8494:10651406,9488316 +g1,8494:11798286,9488316 +k1,8495:31966991,9488316:17422746 +g1,8495:31966991,9488316 +) +v1,8497:7246811,10545884:0,393216,0 +(1,8511:7246811,14312125:24720180,4159457,196608 +g1,8511:7246811,14312125 +g1,8511:7246811,14312125 +g1,8511:7050203,14312125 +(1,8511:7050203,14312125:0,4159457,196608 +r1,8650:32163599,14312125:25113396,4356065,196608 +k1,8511:7050203,14312125:-25113396 +) +(1,8511:7050203,14312125:25113396,4159457,196608 +[1,8511:7246811,14312125:24720180,3962849,0 +(1,8499:7246811,10759794:24720180,410518,107478 +(1,8498:7246811,10759794:0,0,0 +g1,8498:7246811,10759794 +g1,8498:7246811,10759794 +g1,8498:6919131,10759794 +(1,8498:6919131,10759794:0,0,0 +) +g1,8498:7246811,10759794 +) +g1,8499:12621288,10759794 +g1,8499:13569726,10759794 +g1,8499:16415037,10759794 +g1,8499:17047329,10759794 +h1,8499:17679620,10759794:0,0,0 +k1,8499:31966991,10759794:14287371 +g1,8499:31966991,10759794 +) +(1,8500:7246811,11425972:24720180,410518,107478 +h1,8500:7246811,11425972:0,0,0 +h1,8500:12305142,11425972:0,0,0 +k1,8500:31966990,11425972:19661848 +g1,8500:31966990,11425972 +) +(1,8504:7246811,12157686:24720180,404226,101187 +(1,8502:7246811,12157686:0,0,0 +g1,8502:7246811,12157686 +g1,8502:7246811,12157686 +g1,8502:6919131,12157686 +(1,8502:6919131,12157686:0,0,0 +) +g1,8502:7246811,12157686 +) +g1,8504:8195248,12157686 +g1,8504:9459831,12157686 +g1,8504:10408268,12157686 +g1,8504:11040560,12157686 +h1,8504:11672851,12157686:0,0,0 +k1,8504:31966991,12157686:20294140 +g1,8504:31966991,12157686 +) +(1,8506:7246811,13479224:24720180,410518,107478 +(1,8505:7246811,13479224:0,0,0 +g1,8505:7246811,13479224 +g1,8505:7246811,13479224 +g1,8505:6919131,13479224 +(1,8505:6919131,13479224:0,0,0 +) +g1,8505:7246811,13479224 +) +k1,8506:7246811,13479224:0 +h1,8506:16098890,13479224:0,0,0 +k1,8506:31966991,13479224:15868101 +g1,8506:31966991,13479224 +) +(1,8510:7246811,14210938:24720180,379060,101187 +(1,8508:7246811,14210938:0,0,0 +g1,8508:7246811,14210938 +g1,8508:7246811,14210938 +g1,8508:6919131,14210938 +(1,8508:6919131,14210938:0,0,0 +) +g1,8508:7246811,14210938 +) +g1,8510:8195248,14210938 +g1,8510:8827540,14210938 +g1,8510:9459832,14210938 +h1,8510:9775978,14210938:0,0,0 +k1,8510:31966990,14210938:22191012 +g1,8510:31966990,14210938 +) +] +) +g1,8511:31966991,14312125 +g1,8511:7246811,14312125 +g1,8511:7246811,14312125 +g1,8511:31966991,14312125 +g1,8511:31966991,14312125 +) +h1,8511:7246811,14508733:0,0,0 +(1,8515:7246811,15741612:24720180,513147,134348 +h1,8514:7246811,15741612:983040,0,0 +k1,8514:8914180,15741612:214436 +k1,8514:9660113,15741612:214436 +k1,8514:11160365,15741612:214436 +k1,8514:14004761,15741612:214436 +k1,8514:14870625,15741612:214436 +k1,8514:16294855,15741612:214436 +k1,8514:19052743,15741612:214436 +k1,8514:21557007,15741612:214436 +k1,8514:23165394,15741612:214436 +k1,8514:25834153,15741612:214436 +(1,8514:25834153,15741612:0,452978,115847 +r1,8650:28654402,15741612:2820249,568825,115847 +k1,8514:25834153,15741612:-2820249 +) +(1,8514:25834153,15741612:2820249,452978,115847 +k1,8514:25834153,15741612:3277 +h1,8514:28651125,15741612:0,411205,112570 +) +k1,8514:29042508,15741612:214436 +k1,8514:29884779,15741612:214436 +k1,8514:31118300,15741612:214436 +k1,8515:31966991,15741612:0 +) +(1,8515:7246811,16583100:24720180,513147,134348 +k1,8514:10701415,16583100:152900 +k1,8514:13571439,16583100:152901 +k1,8514:14080199,16583100:152900 +k1,8514:15305268,16583100:152900 +k1,8514:16562451,16583100:152901 +k1,8514:19013699,16583100:152900 +k1,8514:21022579,16583100:152900 +k1,8514:22194564,16583100:152900 +k1,8514:25240880,16583100:152901 +k1,8514:26693359,16583100:152900 +k1,8514:28210719,16583100:152900 +k1,8514:29046505,16583100:152901 +k1,8514:30218490,16583100:152900 +k1,8515:31966991,16583100:0 +) +(1,8515:7246811,17424588:24720180,513147,134348 +k1,8514:9008519,17424588:155421 +k1,8514:10463519,17424588:155421 +k1,8514:12066631,17424588:155422 +k1,8514:12881344,17424588:155421 +k1,8514:14055850,17424588:155421 +k1,8514:16702294,17424588:155421 +k1,8514:19401168,17424588:155422 +k1,8514:20172627,17424588:155421 +k1,8514:21347133,17424588:155421 +k1,8514:25439957,17424588:155421 +k1,8514:28312502,17424588:155422 +k1,8514:29421472,17424588:155421 +k1,8514:30681175,17424588:155421 +k1,8514:31966991,17424588:0 +) +(1,8515:7246811,18266076:24720180,505283,134348 +k1,8514:9841432,18266076:239912 +k1,8514:11924216,18266076:239912 +k1,8514:12850290,18266076:239912 +k1,8514:14194484,18266076:239912 +k1,8514:15182162,18266076:239912 +k1,8514:16861900,18266076:239912 +k1,8514:19143915,18266076:239913 +k1,8514:20011662,18266076:239912 +k1,8514:21943714,18266076:239912 +k1,8514:23881008,18266076:239912 +k1,8514:25140005,18266076:239912 +k1,8514:26452086,18266076:239912 +k1,8514:31315563,18266076:239912 +k1,8514:31966991,18266076:0 +) +(1,8515:7246811,19107564:24720180,505283,134348 +g1,8514:8465125,19107564 +g1,8514:9614626,19107564 +g1,8514:10918137,19107564 +g1,8514:11865132,19107564 +g1,8514:14735608,19107564 +g1,8514:16007006,19107564 +g1,8514:19186812,19107564 +g1,8514:19844138,19107564 +g1,8514:22089401,19107564 +g1,8514:23307715,19107564 +g1,8514:25590989,19107564 +k1,8515:31966991,19107564:4036367 +g1,8515:31966991,19107564 +) +v1,8517:7246811,20165132:0,393216,0 +(1,8549:7246811,30091129:24720180,10319213,196608 +g1,8549:7246811,30091129 +g1,8549:7246811,30091129 +g1,8549:7050203,30091129 +(1,8549:7050203,30091129:0,10319213,196608 +r1,8650:32163599,30091129:25113396,10515821,196608 +k1,8549:7050203,30091129:-25113396 +) +(1,8549:7050203,30091129:25113396,10319213,196608 +[1,8549:7246811,30091129:24720180,10122605,0 +(1,8519:7246811,20379042:24720180,410518,101187 +(1,8518:7246811,20379042:0,0,0 +g1,8518:7246811,20379042 +g1,8518:7246811,20379042 +g1,8518:6919131,20379042 +(1,8518:6919131,20379042:0,0,0 +) +g1,8518:7246811,20379042 +) +g1,8519:10724414,20379042 +g1,8519:11672852,20379042 +g1,8519:12305144,20379042 +g1,8519:12937436,20379042 +g1,8519:13885873,20379042 +g1,8519:14518165,20379042 +h1,8519:15150456,20379042:0,0,0 +k1,8519:31966992,20379042:16816536 +g1,8519:31966992,20379042 +) +(1,8520:7246811,21045220:24720180,410518,101187 +h1,8520:7246811,21045220:0,0,0 +g1,8520:13253579,21045220 +g1,8520:13885871,21045220 +g1,8520:14518163,21045220 +g1,8520:15150455,21045220 +g1,8520:15782747,21045220 +h1,8520:16731184,21045220:0,0,0 +k1,8520:31966991,21045220:15235807 +g1,8520:31966991,21045220 +) +(1,8524:7246811,21776934:24720180,388497,101187 +(1,8522:7246811,21776934:0,0,0 +g1,8522:7246811,21776934 +g1,8522:7246811,21776934 +g1,8522:6919131,21776934 +(1,8522:6919131,21776934:0,0,0 +) +g1,8522:7246811,21776934 +) +g1,8524:8195248,21776934 +g1,8524:8827540,21776934 +g1,8524:9459832,21776934 +g1,8524:10408269,21776934 +g1,8524:11040561,21776934 +g1,8524:11988998,21776934 +g1,8524:12621290,21776934 +h1,8524:13253581,21776934:0,0,0 +k1,8524:31966991,21776934:18713410 +g1,8524:31966991,21776934 +) +(1,8526:7246811,23098472:24720180,410518,101187 +(1,8525:7246811,23098472:0,0,0 +g1,8525:7246811,23098472 +g1,8525:7246811,23098472 +g1,8525:6919131,23098472 +(1,8525:6919131,23098472:0,0,0 +) +g1,8525:7246811,23098472 +) +k1,8526:7246811,23098472:0 +g1,8526:13253579,23098472 +g1,8526:13885871,23098472 +g1,8526:14518163,23098472 +g1,8526:15150455,23098472 +g1,8526:15782747,23098472 +h1,8526:16731184,23098472:0,0,0 +k1,8526:31966991,23098472:15235807 +g1,8526:31966991,23098472 +) +(1,8530:7246811,23830186:24720180,388497,101187 +(1,8528:7246811,23830186:0,0,0 +g1,8528:7246811,23830186 +g1,8528:7246811,23830186 +g1,8528:6919131,23830186 +(1,8528:6919131,23830186:0,0,0 +) +g1,8528:7246811,23830186 +) +g1,8530:8195248,23830186 +g1,8530:8827540,23830186 +g1,8530:9459832,23830186 +h1,8530:10092123,23830186:0,0,0 +k1,8530:31966991,23830186:21874868 +g1,8530:31966991,23830186 +) +(1,8532:7246811,25151724:24720180,410518,101187 +(1,8531:7246811,25151724:0,0,0 +g1,8531:7246811,25151724 +g1,8531:7246811,25151724 +g1,8531:6919131,25151724 +(1,8531:6919131,25151724:0,0,0 +) +g1,8531:7246811,25151724 +) +k1,8532:7246811,25151724:0 +g1,8532:13253579,25151724 +g1,8532:13885871,25151724 +g1,8532:14518163,25151724 +h1,8532:15466600,25151724:0,0,0 +k1,8532:31966991,25151724:16500391 +g1,8532:31966991,25151724 +) +(1,8536:7246811,25883438:24720180,388497,101187 +(1,8534:7246811,25883438:0,0,0 +g1,8534:7246811,25883438 +g1,8534:7246811,25883438 +g1,8534:6919131,25883438 +(1,8534:6919131,25883438:0,0,0 +) +g1,8534:7246811,25883438 +) +g1,8536:8195248,25883438 +g1,8536:8827540,25883438 +g1,8536:9459832,25883438 +h1,8536:10092123,25883438:0,0,0 +k1,8536:31966991,25883438:21874868 +g1,8536:31966991,25883438 +) +(1,8538:7246811,27204976:24720180,410518,101187 +(1,8537:7246811,27204976:0,0,0 +g1,8537:7246811,27204976 +g1,8537:7246811,27204976 +g1,8537:6919131,27204976 +(1,8537:6919131,27204976:0,0,0 +) +g1,8537:7246811,27204976 +) +k1,8538:7246811,27204976:0 +g1,8538:13253579,27204976 +g1,8538:13885871,27204976 +g1,8538:14518163,27204976 +h1,8538:15150454,27204976:0,0,0 +k1,8538:31966990,27204976:16816536 +g1,8538:31966990,27204976 +) +(1,8542:7246811,27936690:24720180,388497,0 +(1,8540:7246811,27936690:0,0,0 +g1,8540:7246811,27936690 +g1,8540:7246811,27936690 +g1,8540:6919131,27936690 +(1,8540:6919131,27936690:0,0,0 +) +g1,8540:7246811,27936690 +) +g1,8542:8195248,27936690 +g1,8542:8827540,27936690 +g1,8542:9459832,27936690 +g1,8542:10408269,27936690 +g1,8542:11040561,27936690 +h1,8542:11672852,27936690:0,0,0 +k1,8542:31966992,27936690:20294140 +g1,8542:31966992,27936690 +) +(1,8544:7246811,29258228:24720180,410518,101187 +(1,8543:7246811,29258228:0,0,0 +g1,8543:7246811,29258228 +g1,8543:7246811,29258228 +g1,8543:6919131,29258228 +(1,8543:6919131,29258228:0,0,0 +) +g1,8543:7246811,29258228 +) +k1,8544:7246811,29258228:0 +g1,8544:13253579,29258228 +g1,8544:13885871,29258228 +g1,8544:14518163,29258228 +g1,8544:15150455,29258228 +g1,8544:15782747,29258228 +h1,8544:16415038,29258228:0,0,0 +k1,8544:31966991,29258228:15551953 +g1,8544:31966991,29258228 +) +(1,8548:7246811,29989942:24720180,388497,101187 +(1,8546:7246811,29989942:0,0,0 +g1,8546:7246811,29989942 +g1,8546:7246811,29989942 +g1,8546:6919131,29989942 +(1,8546:6919131,29989942:0,0,0 +) +g1,8546:7246811,29989942 +) +g1,8548:8195248,29989942 +g1,8548:8827540,29989942 +g1,8548:9459832,29989942 +g1,8548:10092124,29989942 +g1,8548:10724416,29989942 +g1,8548:11672853,29989942 +g1,8548:12305145,29989942 +h1,8548:12937436,29989942:0,0,0 +k1,8548:31966992,29989942:19029556 +g1,8548:31966992,29989942 +) +] +) +g1,8549:31966991,30091129 +g1,8549:7246811,30091129 +g1,8549:7246811,30091129 +g1,8549:31966991,30091129 +g1,8549:31966991,30091129 +) +h1,8549:7246811,30287737:0,0,0 +(1,8553:7246811,31520615:24720180,513147,134348 +h1,8552:7246811,31520615:983040,0,0 +k1,8552:8893931,31520615:219091 +k1,8552:11873418,31520615:219111 +k1,8552:15172721,31520615:219111 +k1,8552:18417629,31520615:219111 +k1,8552:19584391,31520615:219111 +k1,8552:21791209,31520615:219111 +k1,8552:25015146,31520615:219111 +k1,8552:29581260,31520615:219111 +k1,8552:31552148,31520615:219111 +k1,8553:31966991,31520615:0 +) +(1,8553:7246811,32362103:24720180,513147,126483 +k1,8552:9243311,32362103:285355 +k1,8552:10661127,32362103:285354 +k1,8552:12792631,32362103:285355 +k1,8552:14608252,32362103:285355 +k1,8552:15545034,32362103:285354 +k1,8552:17056568,32362103:285355 +k1,8552:19329630,32362103:285355 +k1,8552:22488738,32362103:285354 +k1,8552:23390131,32362103:285355 +k1,8552:25184125,32362103:285355 +k1,8552:27804527,32362103:285354 +k1,8552:29131904,32362103:285355 +k1,8552:31966991,32362103:0 +) +(1,8553:7246811,33203591:24720180,505283,126483 +g1,8552:10414166,33203591 +g1,8552:12601102,33203591 +g1,8552:15631486,33203591 +g1,8552:16362212,33203591 +g1,8552:19191401,33203591 +g1,8552:20784581,33203591 +g1,8552:21398653,33203591 +g1,8552:24052205,33203591 +(1,8552:24052205,33203591:0,452978,115847 +r1,8650:26169030,33203591:2116825,568825,115847 +k1,8552:24052205,33203591:-2116825 +) +(1,8552:24052205,33203591:2116825,452978,115847 +k1,8552:24052205,33203591:3277 +h1,8552:26165753,33203591:0,411205,112570 +) +k1,8553:31966991,33203591:5624291 +g1,8553:31966991,33203591 +) +(1,8555:7246811,34045079:24720180,513147,126483 +h1,8554:7246811,34045079:983040,0,0 +k1,8554:8987055,34045079:269616 +k1,8554:11344063,34045079:269686 +k1,8554:12273042,34045079:269687 +k1,8554:14979357,34045079:269686 +k1,8554:18860078,34045079:269687 +k1,8554:20234046,34045079:269686 +k1,8554:21251499,34045079:269687 +k1,8554:23904074,34045079:269686 +k1,8554:25741382,34045079:269687 +k1,8554:26366928,34045079:269686 +k1,8554:28624322,34045079:269687 +k1,8554:31611131,34045079:269686 +k1,8554:31966991,34045079:0 +) +(1,8555:7246811,34886567:24720180,513147,126483 +g1,8554:8832126,34886567 +g1,8554:9690647,34886567 +g1,8554:12694817,34886567 +g1,8554:14085491,34886567 +g1,8554:15303805,34886567 +g1,8554:16892397,34886567 +g1,8554:18039277,34886567 +g1,8554:19257591,34886567 +g1,8554:23222519,34886567 +k1,8555:31966991,34886567:5729161 +g1,8555:31966991,34886567 +) +v1,8557:7246811,35944136:0,393216,0 +(1,8574:7246811,43560976:24720180,8010056,196608 +g1,8574:7246811,43560976 +g1,8574:7246811,43560976 +g1,8574:7050203,43560976 +(1,8574:7050203,43560976:0,8010056,196608 +r1,8650:32163599,43560976:25113396,8206664,196608 +k1,8574:7050203,43560976:-25113396 +) +(1,8574:7050203,43560976:25113396,8010056,196608 +[1,8574:7246811,43560976:24720180,7813448,0 +(1,8559:7246811,36158046:24720180,410518,101187 +(1,8558:7246811,36158046:0,0,0 +g1,8558:7246811,36158046 +g1,8558:7246811,36158046 +g1,8558:6919131,36158046 +(1,8558:6919131,36158046:0,0,0 +) +g1,8558:7246811,36158046 +) +g1,8559:10408268,36158046 +g1,8559:11356706,36158046 +g1,8559:15466601,36158046 +g1,8559:16098893,36158046 +g1,8559:20208788,36158046 +g1,8559:22421809,36158046 +g1,8559:24002539,36158046 +k1,8559:24002539,36158046:0 +h1,8559:25267122,36158046:0,0,0 +k1,8559:31966991,36158046:6699869 +g1,8559:31966991,36158046 +) +(1,8560:7246811,36824224:24720180,404226,101187 +h1,8560:7246811,36824224:0,0,0 +g1,8560:7562957,36824224 +g1,8560:7879103,36824224 +g1,8560:8195249,36824224 +g1,8560:8511395,36824224 +g1,8560:8827541,36824224 +g1,8560:9143687,36824224 +g1,8560:9459833,36824224 +g1,8560:9775979,36824224 +g1,8560:10092125,36824224 +g1,8560:10408271,36824224 +g1,8560:10724417,36824224 +g1,8560:11040563,36824224 +g1,8560:11356709,36824224 +g1,8560:11672855,36824224 +g1,8560:11989001,36824224 +g1,8560:12305147,36824224 +g1,8560:12621293,36824224 +g1,8560:12937439,36824224 +g1,8560:13253585,36824224 +g1,8560:13569731,36824224 +g1,8560:13885877,36824224 +g1,8560:14202023,36824224 +g1,8560:14518169,36824224 +g1,8560:14834315,36824224 +g1,8560:15466607,36824224 +g1,8560:16098899,36824224 +g1,8560:20841086,36824224 +g1,8560:24002544,36824224 +h1,8560:24950981,36824224:0,0,0 +k1,8560:31966991,36824224:7016010 +g1,8560:31966991,36824224 +) +(1,8561:7246811,37490402:24720180,410518,6290 +h1,8561:7246811,37490402:0,0,0 +h1,8561:10092122,37490402:0,0,0 +k1,8561:31966990,37490402:21874868 +g1,8561:31966990,37490402 +) +(1,8573:7246811,38222116:24720180,379060,0 +(1,8563:7246811,38222116:0,0,0 +g1,8563:7246811,38222116 +g1,8563:7246811,38222116 +g1,8563:6919131,38222116 +(1,8563:6919131,38222116:0,0,0 +) +g1,8563:7246811,38222116 +) +g1,8573:8195248,38222116 +g1,8573:8511394,38222116 +g1,8573:8827540,38222116 +g1,8573:9143686,38222116 +g1,8573:9459832,38222116 +g1,8573:10092124,38222116 +g1,8573:10408270,38222116 +g1,8573:10724416,38222116 +g1,8573:11040562,38222116 +g1,8573:11356708,38222116 +h1,8573:11672854,38222116:0,0,0 +k1,8573:31966990,38222116:20294136 +g1,8573:31966990,38222116 +) +(1,8573:7246811,38888294:24720180,404226,101187 +h1,8573:7246811,38888294:0,0,0 +g1,8573:8195248,38888294 +g1,8573:8827540,38888294 +g1,8573:10092123,38888294 +h1,8573:11672851,38888294:0,0,0 +k1,8573:31966991,38888294:20294140 +g1,8573:31966991,38888294 +) +(1,8573:7246811,39554472:24720180,404226,101187 +h1,8573:7246811,39554472:0,0,0 +g1,8573:8195248,39554472 +g1,8573:8827540,39554472 +g1,8573:10092123,39554472 +h1,8573:11672851,39554472:0,0,0 +k1,8573:31966991,39554472:20294140 +g1,8573:31966991,39554472 +) +(1,8573:7246811,40220650:24720180,404226,101187 +h1,8573:7246811,40220650:0,0,0 +g1,8573:8195248,40220650 +g1,8573:8827540,40220650 +g1,8573:10092123,40220650 +h1,8573:11672851,40220650:0,0,0 +k1,8573:31966991,40220650:20294140 +g1,8573:31966991,40220650 +) +(1,8573:7246811,40886828:24720180,404226,101187 +h1,8573:7246811,40886828:0,0,0 +g1,8573:8195248,40886828 +g1,8573:8827540,40886828 +g1,8573:10092123,40886828 +h1,8573:11672851,40886828:0,0,0 +k1,8573:31966991,40886828:20294140 +g1,8573:31966991,40886828 +) +(1,8573:7246811,41553006:24720180,404226,9436 +h1,8573:7246811,41553006:0,0,0 +g1,8573:8195248,41553006 +g1,8573:8827540,41553006 +g1,8573:9143686,41553006 +g1,8573:10092123,41553006 +h1,8573:11672851,41553006:0,0,0 +k1,8573:31966991,41553006:20294140 +g1,8573:31966991,41553006 +) +(1,8573:7246811,42219184:24720180,404226,9436 +h1,8573:7246811,42219184:0,0,0 +g1,8573:8195248,42219184 +g1,8573:8827540,42219184 +g1,8573:9143686,42219184 +g1,8573:10092123,42219184 +h1,8573:11672851,42219184:0,0,0 +k1,8573:31966991,42219184:20294140 +g1,8573:31966991,42219184 +) +(1,8573:7246811,42885362:24720180,404226,6290 +h1,8573:7246811,42885362:0,0,0 +g1,8573:8195248,42885362 +g1,8573:8827540,42885362 +g1,8573:9143686,42885362 +g1,8573:10092123,42885362 +h1,8573:11672851,42885362:0,0,0 +k1,8573:31966991,42885362:20294140 +g1,8573:31966991,42885362 +) +(1,8573:7246811,43551540:24720180,404226,9436 +h1,8573:7246811,43551540:0,0,0 +g1,8573:8195248,43551540 +g1,8573:8827540,43551540 +g1,8573:9143686,43551540 +g1,8573:10092123,43551540 +h1,8573:11672851,43551540:0,0,0 +k1,8573:31966991,43551540:20294140 +g1,8573:31966991,43551540 +) +] +) +g1,8574:31966991,43560976 +g1,8574:7246811,43560976 +g1,8574:7246811,43560976 +g1,8574:31966991,43560976 +g1,8574:31966991,43560976 +) +h1,8574:7246811,43757584:0,0,0 +(1,8578:7246811,44990462:24720180,513147,126483 +h1,8577:7246811,44990462:983040,0,0 +g1,8577:9625767,44990462 +g1,8577:12090576,44990462 +g1,8577:15251377,44990462 +g1,8577:17166994,44990462 +g1,8577:20276677,44990462 +g1,8577:21091944,44990462 +k1,8578:31966991,44990462:9608891 +g1,8578:31966991,44990462 +) +] +) +] +r1,8650:32583029,45706769:26214,39845888,0 +) +] +) +) +g1,8650:32583029,45116945 +) +] +(1,8650:32583029,45706769:0,0,0 +g1,8650:32583029,45706769 ) ) ] -(1,8645:6630773,47279633:25952256,0,0 -h1,8645:6630773,47279633:25952256,0,0 +(1,8650:6630773,47279633:25952256,0,0 +h1,8650:6630773,47279633:25952256,0,0 ) ] -h1,8645:4262630,4025873:0,0,0 +h1,8650:4262630,4025873:0,0,0 ] !23722 }158 !12 {159 -[1,8651:4262630,47279633:28320399,43253760,0 -(1,8651:4262630,4025873:0,0,0 -[1,8651:-473657,4025873:25952256,0,0 -(1,8651:-473657,-710414:25952256,0,0 -h1,8651:-473657,-710414:0,0,0 -(1,8651:-473657,-710414:0,0,0 -(1,8651:-473657,-710414:0,0,0 -g1,8651:-473657,-710414 -(1,8651:-473657,-710414:65781,0,65781 -g1,8651:-407876,-710414 -[1,8651:-407876,-644633:0,0,0 +[1,8656:4262630,47279633:28320399,43253760,0 +(1,8656:4262630,4025873:0,0,0 +[1,8656:-473657,4025873:25952256,0,0 +(1,8656:-473657,-710414:25952256,0,0 +h1,8656:-473657,-710414:0,0,0 +(1,8656:-473657,-710414:0,0,0 +(1,8656:-473657,-710414:0,0,0 +g1,8656:-473657,-710414 +(1,8656:-473657,-710414:65781,0,65781 +g1,8656:-407876,-710414 +[1,8656:-407876,-644633:0,0,0 ] ) -k1,8651:-473657,-710414:-65781 +k1,8656:-473657,-710414:-65781 ) ) -k1,8651:25478599,-710414:25952256 -g1,8651:25478599,-710414 +k1,8656:25478599,-710414:25952256 +g1,8656:25478599,-710414 ) ] ) -[1,8651:6630773,47279633:25952256,43253760,0 -[1,8651:6630773,4812305:25952256,786432,0 -(1,8651:6630773,4812305:25952256,505283,134348 -(1,8651:6630773,4812305:25952256,505283,134348 -g1,8651:3078558,4812305 -[1,8651:3078558,4812305:0,0,0 -(1,8651:3078558,2439708:0,1703936,0 -k1,8651:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8651:2537886,2439708:1179648,16384,0 +[1,8656:6630773,47279633:25952256,43253760,0 +[1,8656:6630773,4812305:25952256,786432,0 +(1,8656:6630773,4812305:25952256,505283,134348 +(1,8656:6630773,4812305:25952256,505283,134348 +g1,8656:3078558,4812305 +[1,8656:3078558,4812305:0,0,0 +(1,8656:3078558,2439708:0,1703936,0 +k1,8656:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8656:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8651:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8656:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8651:3078558,4812305:0,0,0 -(1,8651:3078558,2439708:0,1703936,0 -g1,8651:29030814,2439708 -g1,8651:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8651:36151628,1915420:16384,1179648,0 +[1,8656:3078558,4812305:0,0,0 +(1,8656:3078558,2439708:0,1703936,0 +g1,8656:29030814,2439708 +g1,8656:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8656:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8651:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8656:37855564,2439708:1179648,16384,0 ) ) -k1,8651:3078556,2439708:-34777008 +k1,8656:3078556,2439708:-34777008 ) ] -[1,8651:3078558,4812305:0,0,0 -(1,8651:3078558,49800853:0,16384,2228224 -k1,8651:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8651:2537886,49800853:1179648,16384,0 +[1,8656:3078558,4812305:0,0,0 +(1,8656:3078558,49800853:0,16384,2228224 +k1,8656:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8656:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8651:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8656:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8651:3078558,4812305:0,0,0 -(1,8651:3078558,49800853:0,16384,2228224 -g1,8651:29030814,49800853 -g1,8651:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8651:36151628,51504789:16384,1179648,0 +[1,8656:3078558,4812305:0,0,0 +(1,8656:3078558,49800853:0,16384,2228224 +g1,8656:29030814,49800853 +g1,8656:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8656:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8651:37855564,49800853:1179648,16384,0 -) -) -k1,8651:3078556,49800853:-34777008 -) -] -g1,8651:6630773,4812305 -k1,8651:24573876,4812305:16747726 -g1,8651:25960617,4812305 -g1,8651:26609423,4812305 -g1,8651:29923578,4812305 -) -) -] -[1,8651:6630773,45706769:25952256,40108032,0 -(1,8651:6630773,45706769:25952256,40108032,0 -(1,8651:6630773,45706769:0,0,0 -g1,8651:6630773,45706769 -) -[1,8651:6630773,45706769:25952256,40108032,0 -v1,8645:6630773,6254097:0,393216,0 -(1,8645:6630773,40487354:25952256,34626473,616038 -g1,8645:6630773,40487354 -(1,8645:6630773,40487354:25952256,34626473,616038 -(1,8645:6630773,41103392:25952256,35242511,0 -[1,8645:6630773,41103392:25952256,35242511,0 -(1,8645:6630773,41077178:25952256,35216297,0 -r1,8645:6656987,41077178:26214,35216297,0 -[1,8645:6656987,41077178:25899828,35216297,0 -(1,8645:6656987,40487354:25899828,34036649,0 -[1,8645:7246811,40487354:24720180,34036649,0 -v1,8575:7246811,6843921:0,393216,0 -(1,8584:7246811,9216796:24720180,2766091,196608 -g1,8584:7246811,9216796 -g1,8584:7246811,9216796 -g1,8584:7050203,9216796 -(1,8584:7050203,9216796:0,2766091,196608 -r1,8645:32163599,9216796:25113396,2962699,196608 -k1,8584:7050203,9216796:-25113396 -) -(1,8584:7050203,9216796:25113396,2766091,196608 -[1,8584:7246811,9216796:24720180,2569483,0 -(1,8577:7246811,7051539:24720180,404226,101187 -(1,8576:7246811,7051539:0,0,0 -g1,8576:7246811,7051539 -g1,8576:7246811,7051539 -g1,8576:6919131,7051539 -(1,8576:6919131,7051539:0,0,0 -) -g1,8576:7246811,7051539 -) -k1,8577:7246811,7051539:0 -h1,8577:13569725,7051539:0,0,0 -k1,8577:31966991,7051539:18397266 -g1,8577:31966991,7051539 -) -(1,8583:7246811,7783253:24720180,410518,31456 -(1,8579:7246811,7783253:0,0,0 -g1,8579:7246811,7783253 -g1,8579:7246811,7783253 -g1,8579:6919131,7783253 -(1,8579:6919131,7783253:0,0,0 -) -g1,8579:7246811,7783253 -) -g1,8583:8195248,7783253 -h1,8583:11356705,7783253:0,0,0 -k1,8583:31966991,7783253:20610286 -g1,8583:31966991,7783253 -) -(1,8583:7246811,8449431:24720180,404226,6290 -h1,8583:7246811,8449431:0,0,0 -g1,8583:8195248,8449431 -g1,8583:8511394,8449431 -g1,8583:8827540,8449431 -g1,8583:9143686,8449431 -g1,8583:9459832,8449431 -g1,8583:9775978,8449431 -g1,8583:10092124,8449431 -g1,8583:10408270,8449431 -g1,8583:10724416,8449431 -g1,8583:13885873,8449431 -g1,8583:14202019,8449431 -g1,8583:14518165,8449431 -g1,8583:14834311,8449431 -g1,8583:15150457,8449431 -g1,8583:15466603,8449431 -g1,8583:15782749,8449431 -g1,8583:16098895,8449431 -g1,8583:16415041,8449431 -g1,8583:16731187,8449431 -g1,8583:17047333,8449431 -h1,8583:19260353,8449431:0,0,0 -k1,8583:31966991,8449431:12706638 -g1,8583:31966991,8449431 -) -(1,8583:7246811,9115609:24720180,404226,101187 -h1,8583:7246811,9115609:0,0,0 -g1,8583:8195248,9115609 -g1,8583:13885871,9115609 -g1,8583:14202017,9115609 -g1,8583:14518163,9115609 -g1,8583:14834309,9115609 -g1,8583:15150455,9115609 -g1,8583:15466601,9115609 -h1,8583:19260349,9115609:0,0,0 -k1,8583:31966991,9115609:12706642 -g1,8583:31966991,9115609 -) -] -) -g1,8584:31966991,9216796 -g1,8584:7246811,9216796 -g1,8584:7246811,9216796 -g1,8584:31966991,9216796 -g1,8584:31966991,9216796 -) -h1,8584:7246811,9413404:0,0,0 -(1,8588:7246811,10779180:24720180,513147,134348 -h1,8587:7246811,10779180:983040,0,0 -k1,8587:8992368,10779180:274929 -k1,8587:11255080,10779180:275005 -k1,8587:13617407,10779180:275005 -k1,8587:14840063,10779180:275005 -k1,8587:15470928,10779180:275005 -k1,8587:17733640,10779180:275005 -k1,8587:18956296,10779180:275005 -k1,8587:19587161,10779180:275005 -k1,8587:22485572,10779180:275005 -k1,8587:25416751,10779180:275005 -k1,8587:27780388,10779180:275005 -k1,8587:29449344,10779180:275005 -k1,8587:30533719,10779180:275005 -k1,8588:31966991,10779180:0 -) -(1,8588:7246811,11620668:24720180,473825,7863 -g1,8587:9691303,11620668 -k1,8588:31966992,11620668:20589448 -g1,8588:31966992,11620668 -) -v1,8590:7246811,12811134:0,393216,0 -(1,8613:7246811,24491627:24720180,12073709,196608 -g1,8613:7246811,24491627 -g1,8613:7246811,24491627 -g1,8613:7050203,24491627 -(1,8613:7050203,24491627:0,12073709,196608 -r1,8645:32163599,24491627:25113396,12270317,196608 -k1,8613:7050203,24491627:-25113396 -) -(1,8613:7050203,24491627:25113396,12073709,196608 -[1,8613:7246811,24491627:24720180,11877101,0 -(1,8592:7246811,13025044:24720180,410518,82312 -(1,8591:7246811,13025044:0,0,0 -g1,8591:7246811,13025044 -g1,8591:7246811,13025044 -g1,8591:6919131,13025044 -(1,8591:6919131,13025044:0,0,0 -) -g1,8591:7246811,13025044 -) -k1,8592:7246811,13025044:0 -g1,8592:11988997,13025044 -g1,8592:12621289,13025044 -g1,8592:13253581,13025044 -g1,8592:14202019,13025044 -h1,8592:17363476,13025044:0,0,0 -k1,8592:31966991,13025044:14603515 -g1,8592:31966991,13025044 -) -(1,8612:7246811,13756758:24720180,404226,101187 -(1,8594:7246811,13756758:0,0,0 -g1,8594:7246811,13756758 -g1,8594:7246811,13756758 -g1,8594:6919131,13756758 -(1,8594:6919131,13756758:0,0,0 -) -g1,8594:7246811,13756758 -) -g1,8612:8195248,13756758 -g1,8612:8511394,13756758 -g1,8612:8827540,13756758 -g1,8612:12621288,13756758 -g1,8612:14202017,13756758 -h1,8612:16098891,13756758:0,0,0 -k1,8612:31966991,13756758:15868100 -g1,8612:31966991,13756758 -) -(1,8612:7246811,14422936:24720180,388497,0 -h1,8612:7246811,14422936:0,0,0 -g1,8612:8195248,14422936 -g1,8612:8827540,14422936 -g1,8612:9143686,14422936 -g1,8612:9459832,14422936 -g1,8612:9775978,14422936 -g1,8612:10092124,14422936 -g1,8612:10408270,14422936 -g1,8612:10724416,14422936 -g1,8612:11040562,14422936 -g1,8612:11356708,14422936 -g1,8612:11672854,14422936 -g1,8612:11989000,14422936 -g1,8612:12621292,14422936 -g1,8612:12937438,14422936 -g1,8612:13253584,14422936 -g1,8612:13569730,14422936 -g1,8612:14202022,14422936 -g1,8612:14518168,14422936 -g1,8612:14834314,14422936 -g1,8612:15150460,14422936 -g1,8612:15466606,14422936 -g1,8612:15782752,14422936 -h1,8612:16098898,14422936:0,0,0 -k1,8612:31966991,14422936:15868093 -g1,8612:31966991,14422936 -) -(1,8612:7246811,15089114:24720180,388497,9436 -h1,8612:7246811,15089114:0,0,0 -g1,8612:8195248,15089114 -g1,8612:8827540,15089114 -g1,8612:9143686,15089114 -g1,8612:9459832,15089114 -g1,8612:9775978,15089114 -g1,8612:10092124,15089114 -g1,8612:10408270,15089114 -g1,8612:10724416,15089114 -g1,8612:11040562,15089114 -g1,8612:11356708,15089114 -g1,8612:11672854,15089114 -g1,8612:11989000,15089114 -g1,8612:12621292,15089114 -g1,8612:12937438,15089114 -g1,8612:13253584,15089114 -g1,8612:13569730,15089114 -g1,8612:14202022,15089114 -g1,8612:14518168,15089114 -g1,8612:14834314,15089114 -g1,8612:15150460,15089114 -g1,8612:15466606,15089114 -g1,8612:15782752,15089114 -h1,8612:16098898,15089114:0,0,0 -k1,8612:31966991,15089114:15868093 -g1,8612:31966991,15089114 -) -(1,8612:7246811,15755292:24720180,388497,9436 -h1,8612:7246811,15755292:0,0,0 -g1,8612:8195248,15755292 -g1,8612:8827540,15755292 -g1,8612:9143686,15755292 -g1,8612:9459832,15755292 -g1,8612:9775978,15755292 -g1,8612:10092124,15755292 -g1,8612:10408270,15755292 -g1,8612:10724416,15755292 -g1,8612:11040562,15755292 -g1,8612:11356708,15755292 -g1,8612:11672854,15755292 -g1,8612:11989000,15755292 -g1,8612:12621292,15755292 -g1,8612:12937438,15755292 -g1,8612:13253584,15755292 -g1,8612:13569730,15755292 -g1,8612:14202022,15755292 -g1,8612:14518168,15755292 -g1,8612:14834314,15755292 -g1,8612:15150460,15755292 -g1,8612:15466606,15755292 -g1,8612:15782752,15755292 -h1,8612:16098898,15755292:0,0,0 -k1,8612:31966991,15755292:15868093 -g1,8612:31966991,15755292 -) -(1,8612:7246811,16421470:24720180,388497,9436 -h1,8612:7246811,16421470:0,0,0 -g1,8612:8195248,16421470 -g1,8612:8827540,16421470 -g1,8612:9143686,16421470 -g1,8612:9459832,16421470 -g1,8612:9775978,16421470 -g1,8612:10092124,16421470 -g1,8612:10408270,16421470 -g1,8612:10724416,16421470 -g1,8612:11040562,16421470 -g1,8612:11356708,16421470 -g1,8612:11672854,16421470 -g1,8612:11989000,16421470 -g1,8612:12621292,16421470 -g1,8612:12937438,16421470 -g1,8612:13253584,16421470 -g1,8612:13569730,16421470 -g1,8612:14202022,16421470 -g1,8612:14518168,16421470 -g1,8612:14834314,16421470 -g1,8612:15150460,16421470 -g1,8612:15466606,16421470 -g1,8612:15782752,16421470 -h1,8612:16098898,16421470:0,0,0 -k1,8612:31966991,16421470:15868093 -g1,8612:31966991,16421470 -) -(1,8612:7246811,17087648:24720180,388497,9436 -h1,8612:7246811,17087648:0,0,0 -g1,8612:8195248,17087648 -g1,8612:8827540,17087648 -g1,8612:9143686,17087648 -g1,8612:9459832,17087648 -g1,8612:9775978,17087648 -g1,8612:10092124,17087648 -g1,8612:10408270,17087648 -g1,8612:10724416,17087648 -g1,8612:11040562,17087648 -g1,8612:11356708,17087648 -g1,8612:11672854,17087648 -g1,8612:11989000,17087648 -g1,8612:12621292,17087648 -g1,8612:12937438,17087648 -g1,8612:13253584,17087648 -g1,8612:13569730,17087648 -g1,8612:14202022,17087648 -g1,8612:14518168,17087648 -g1,8612:14834314,17087648 -g1,8612:15150460,17087648 -g1,8612:15466606,17087648 -g1,8612:15782752,17087648 -h1,8612:16098898,17087648:0,0,0 -k1,8612:31966991,17087648:15868093 -g1,8612:31966991,17087648 -) -(1,8612:7246811,17753826:24720180,388497,9436 -h1,8612:7246811,17753826:0,0,0 -g1,8612:8195248,17753826 -g1,8612:8827540,17753826 -g1,8612:9143686,17753826 -g1,8612:9459832,17753826 -g1,8612:9775978,17753826 -g1,8612:10092124,17753826 -g1,8612:10408270,17753826 -g1,8612:10724416,17753826 -g1,8612:11040562,17753826 -g1,8612:11356708,17753826 -g1,8612:11672854,17753826 -g1,8612:11989000,17753826 -g1,8612:12621292,17753826 -g1,8612:12937438,17753826 -g1,8612:13253584,17753826 -g1,8612:13569730,17753826 -g1,8612:14202022,17753826 -g1,8612:14518168,17753826 -g1,8612:14834314,17753826 -g1,8612:15150460,17753826 -g1,8612:15466606,17753826 -g1,8612:15782752,17753826 -h1,8612:16098898,17753826:0,0,0 -k1,8612:31966991,17753826:15868093 -g1,8612:31966991,17753826 -) -(1,8612:7246811,18420004:24720180,388497,9436 -h1,8612:7246811,18420004:0,0,0 -g1,8612:8195248,18420004 -g1,8612:8827540,18420004 -g1,8612:9143686,18420004 -g1,8612:9459832,18420004 -g1,8612:9775978,18420004 -g1,8612:10092124,18420004 -g1,8612:10408270,18420004 -g1,8612:10724416,18420004 -g1,8612:11040562,18420004 -g1,8612:11356708,18420004 -g1,8612:11672854,18420004 -g1,8612:11989000,18420004 -g1,8612:12621292,18420004 -g1,8612:12937438,18420004 -g1,8612:13253584,18420004 -g1,8612:13569730,18420004 -g1,8612:14202022,18420004 -g1,8612:14518168,18420004 -g1,8612:14834314,18420004 -g1,8612:15150460,18420004 -g1,8612:15466606,18420004 -g1,8612:15782752,18420004 -h1,8612:16098898,18420004:0,0,0 -k1,8612:31966991,18420004:15868093 -g1,8612:31966991,18420004 -) -(1,8612:7246811,19086182:24720180,388497,9436 -h1,8612:7246811,19086182:0,0,0 -g1,8612:8195248,19086182 -g1,8612:8827540,19086182 -g1,8612:9143686,19086182 -g1,8612:9459832,19086182 -g1,8612:9775978,19086182 -g1,8612:10092124,19086182 -g1,8612:10408270,19086182 -g1,8612:10724416,19086182 -g1,8612:11040562,19086182 -g1,8612:11356708,19086182 -g1,8612:11672854,19086182 -g1,8612:11989000,19086182 -g1,8612:12621292,19086182 -g1,8612:12937438,19086182 -g1,8612:13253584,19086182 -g1,8612:13569730,19086182 -g1,8612:14202022,19086182 -g1,8612:14518168,19086182 -g1,8612:14834314,19086182 -g1,8612:15150460,19086182 -g1,8612:15466606,19086182 -g1,8612:15782752,19086182 -h1,8612:16098898,19086182:0,0,0 -k1,8612:31966991,19086182:15868093 -g1,8612:31966991,19086182 -) -(1,8612:7246811,19752360:24720180,404226,107478 -h1,8612:7246811,19752360:0,0,0 -g1,8612:8195248,19752360 -k1,8612:8195248,19752360:0 -h1,8612:12937433,19752360:0,0,0 -k1,8612:31966991,19752360:19029558 -g1,8612:31966991,19752360 -) -(1,8612:7246811,20418538:24720180,404226,76021 -h1,8612:7246811,20418538:0,0,0 -g1,8612:8195248,20418538 -g1,8612:9459831,20418538 -g1,8612:10092123,20418538 -g1,8612:10724415,20418538 -h1,8612:11040561,20418538:0,0,0 -k1,8612:31966991,20418538:20926430 -g1,8612:31966991,20418538 -) -(1,8612:7246811,21084716:24720180,404226,82312 -h1,8612:7246811,21084716:0,0,0 -g1,8612:8195248,21084716 -k1,8612:8195248,21084716:0 -h1,8612:13885870,21084716:0,0,0 -k1,8612:31966990,21084716:18081120 -g1,8612:31966990,21084716 -) -(1,8612:7246811,21750894:24720180,410518,82312 -h1,8612:7246811,21750894:0,0,0 -g1,8612:8195248,21750894 -k1,8612:8195248,21750894:0 -h1,8612:14518161,21750894:0,0,0 -k1,8612:31966991,21750894:17448830 -g1,8612:31966991,21750894 -) -(1,8612:7246811,22417072:24720180,404226,76021 -h1,8612:7246811,22417072:0,0,0 -g1,8612:8195248,22417072 -g1,8612:9459831,22417072 -h1,8612:14834308,22417072:0,0,0 -k1,8612:31966992,22417072:17132684 -g1,8612:31966992,22417072 -) -(1,8612:7246811,23083250:24720180,379060,0 -h1,8612:7246811,23083250:0,0,0 -h1,8612:7879102,23083250:0,0,0 -k1,8612:31966990,23083250:24087888 -g1,8612:31966990,23083250 -) -(1,8612:7246811,23749428:24720180,410518,82312 -h1,8612:7246811,23749428:0,0,0 -g1,8612:8195248,23749428 -k1,8612:8195248,23749428:0 -h1,8612:14518161,23749428:0,0,0 -k1,8612:31966991,23749428:17448830 -g1,8612:31966991,23749428 -) -(1,8612:7246811,24415606:24720180,404226,76021 -h1,8612:7246811,24415606:0,0,0 -g1,8612:8195248,24415606 -g1,8612:9459831,24415606 -h1,8612:14834308,24415606:0,0,0 -k1,8612:31966992,24415606:17132684 -g1,8612:31966992,24415606 -) -] -) -g1,8613:31966991,24491627 -g1,8613:7246811,24491627 -g1,8613:7246811,24491627 -g1,8613:31966991,24491627 -g1,8613:31966991,24491627 -) -h1,8613:7246811,24688235:0,0,0 -(1,8617:7246811,26054011:24720180,513147,134348 -h1,8616:7246811,26054011:983040,0,0 -k1,8616:8913443,26054011:196004 -k1,8616:11097158,26054011:196008 -k1,8616:13380487,26054011:196007 -k1,8616:14524146,26054011:196008 -k1,8616:15076013,26054011:196007 -k1,8616:17259728,26054011:196008 -k1,8616:18403386,26054011:196007 -k1,8616:18955254,26054011:196008 -k1,8616:21774667,26054011:196007 -k1,8616:24626849,26054011:196008 -k1,8616:26911488,26054011:196007 -k1,8616:28501447,26054011:196008 -k1,8616:31966991,26054011:0 -) -(1,8617:7246811,26895499:24720180,426639,7863 -k1,8617:31966992,26895499:23033940 -g1,8617:31966992,26895499 -) -v1,8619:7246811,28085965:0,393216,0 -(1,8642:7246811,39766458:24720180,12073709,196608 -g1,8642:7246811,39766458 -g1,8642:7246811,39766458 -g1,8642:7050203,39766458 -(1,8642:7050203,39766458:0,12073709,196608 -r1,8645:32163599,39766458:25113396,12270317,196608 -k1,8642:7050203,39766458:-25113396 -) -(1,8642:7050203,39766458:25113396,12073709,196608 -[1,8642:7246811,39766458:24720180,11877101,0 -(1,8621:7246811,28299875:24720180,410518,82312 -(1,8620:7246811,28299875:0,0,0 -g1,8620:7246811,28299875 -g1,8620:7246811,28299875 -g1,8620:6919131,28299875 -(1,8620:6919131,28299875:0,0,0 -) -g1,8620:7246811,28299875 -) -k1,8621:7246811,28299875:0 -g1,8621:11988997,28299875 -g1,8621:12621289,28299875 -g1,8621:13253581,28299875 -g1,8621:14202019,28299875 -h1,8621:17363476,28299875:0,0,0 -k1,8621:31966991,28299875:14603515 -g1,8621:31966991,28299875 -) -(1,8641:7246811,29031589:24720180,404226,101187 -(1,8623:7246811,29031589:0,0,0 -g1,8623:7246811,29031589 -g1,8623:7246811,29031589 -g1,8623:6919131,29031589 -(1,8623:6919131,29031589:0,0,0 -) -g1,8623:7246811,29031589 -) -g1,8641:8195248,29031589 -g1,8641:8511394,29031589 -g1,8641:8827540,29031589 -g1,8641:12621288,29031589 -g1,8641:14202017,29031589 -g1,8641:16415037,29031589 -h1,8641:19892639,29031589:0,0,0 -k1,8641:31966991,29031589:12074352 -g1,8641:31966991,29031589 -) -(1,8641:7246811,29697767:24720180,388497,0 -h1,8641:7246811,29697767:0,0,0 -g1,8641:8195248,29697767 -g1,8641:8827540,29697767 -g1,8641:9143686,29697767 -g1,8641:9459832,29697767 -g1,8641:9775978,29697767 -g1,8641:10092124,29697767 -g1,8641:10408270,29697767 -g1,8641:10724416,29697767 -g1,8641:11040562,29697767 -g1,8641:11356708,29697767 -g1,8641:11672854,29697767 -g1,8641:11989000,29697767 -g1,8641:12621292,29697767 -g1,8641:12937438,29697767 -g1,8641:13253584,29697767 -g1,8641:13569730,29697767 -g1,8641:14202022,29697767 -g1,8641:14518168,29697767 -g1,8641:14834314,29697767 -g1,8641:15150460,29697767 -g1,8641:15466606,29697767 -g1,8641:15782752,29697767 -g1,8641:16415044,29697767 -g1,8641:16731190,29697767 -g1,8641:17047336,29697767 -g1,8641:17363482,29697767 -g1,8641:17679628,29697767 -g1,8641:17995774,29697767 -g1,8641:18311920,29697767 -g1,8641:18628066,29697767 -g1,8641:18944212,29697767 -g1,8641:19260358,29697767 -g1,8641:19576504,29697767 -h1,8641:19892650,29697767:0,0,0 -k1,8641:31966991,29697767:12074341 -g1,8641:31966991,29697767 -) -(1,8641:7246811,30363945:24720180,388497,9436 -h1,8641:7246811,30363945:0,0,0 -g1,8641:8195248,30363945 -g1,8641:8827540,30363945 -g1,8641:9143686,30363945 -g1,8641:9459832,30363945 -g1,8641:9775978,30363945 -g1,8641:10092124,30363945 -g1,8641:10408270,30363945 -g1,8641:10724416,30363945 -g1,8641:11040562,30363945 -g1,8641:11356708,30363945 -g1,8641:11672854,30363945 -g1,8641:11989000,30363945 -g1,8641:12621292,30363945 -g1,8641:12937438,30363945 -g1,8641:13253584,30363945 -g1,8641:13569730,30363945 -g1,8641:14202022,30363945 -g1,8641:14518168,30363945 -g1,8641:14834314,30363945 -g1,8641:15150460,30363945 -g1,8641:15466606,30363945 -g1,8641:15782752,30363945 -g1,8641:16415044,30363945 -g1,8641:16731190,30363945 -g1,8641:17047336,30363945 -g1,8641:17363482,30363945 -g1,8641:17679628,30363945 -g1,8641:17995774,30363945 -g1,8641:18311920,30363945 -g1,8641:18628066,30363945 -g1,8641:18944212,30363945 -g1,8641:19260358,30363945 -g1,8641:19576504,30363945 -h1,8641:19892650,30363945:0,0,0 -k1,8641:31966991,30363945:12074341 -g1,8641:31966991,30363945 -) -(1,8641:7246811,31030123:24720180,388497,9436 -h1,8641:7246811,31030123:0,0,0 -g1,8641:8195248,31030123 -g1,8641:8827540,31030123 -g1,8641:9143686,31030123 -g1,8641:9459832,31030123 -g1,8641:9775978,31030123 -g1,8641:10092124,31030123 -g1,8641:10408270,31030123 -g1,8641:10724416,31030123 -g1,8641:11040562,31030123 -g1,8641:11356708,31030123 -g1,8641:11672854,31030123 -g1,8641:11989000,31030123 -g1,8641:12621292,31030123 -g1,8641:12937438,31030123 -g1,8641:13253584,31030123 -g1,8641:13569730,31030123 -g1,8641:14202022,31030123 -g1,8641:14518168,31030123 -g1,8641:14834314,31030123 -g1,8641:15150460,31030123 -g1,8641:15466606,31030123 -g1,8641:15782752,31030123 -g1,8641:16415044,31030123 -g1,8641:16731190,31030123 -g1,8641:17047336,31030123 -g1,8641:17363482,31030123 -g1,8641:17679628,31030123 -g1,8641:17995774,31030123 -g1,8641:18311920,31030123 -g1,8641:18628066,31030123 -g1,8641:18944212,31030123 -g1,8641:19260358,31030123 -g1,8641:19576504,31030123 -h1,8641:19892650,31030123:0,0,0 -k1,8641:31966991,31030123:12074341 -g1,8641:31966991,31030123 -) -(1,8641:7246811,31696301:24720180,388497,9436 -h1,8641:7246811,31696301:0,0,0 -g1,8641:8195248,31696301 -g1,8641:8827540,31696301 -g1,8641:9143686,31696301 -g1,8641:9459832,31696301 -g1,8641:9775978,31696301 -g1,8641:10092124,31696301 -g1,8641:10408270,31696301 -g1,8641:10724416,31696301 -g1,8641:11040562,31696301 -g1,8641:11356708,31696301 -g1,8641:11672854,31696301 -g1,8641:11989000,31696301 -g1,8641:12621292,31696301 -g1,8641:12937438,31696301 -g1,8641:13253584,31696301 -g1,8641:13569730,31696301 -g1,8641:14202022,31696301 -g1,8641:14518168,31696301 -g1,8641:14834314,31696301 -g1,8641:15150460,31696301 -g1,8641:15466606,31696301 -g1,8641:15782752,31696301 -g1,8641:16415044,31696301 -g1,8641:16731190,31696301 -g1,8641:17047336,31696301 -g1,8641:17363482,31696301 -g1,8641:17679628,31696301 -g1,8641:17995774,31696301 -g1,8641:18311920,31696301 -g1,8641:18628066,31696301 -g1,8641:18944212,31696301 -g1,8641:19260358,31696301 -g1,8641:19576504,31696301 -h1,8641:19892650,31696301:0,0,0 -k1,8641:31966991,31696301:12074341 -g1,8641:31966991,31696301 -) -(1,8641:7246811,32362479:24720180,388497,9436 -h1,8641:7246811,32362479:0,0,0 -g1,8641:8195248,32362479 -g1,8641:8827540,32362479 -g1,8641:9143686,32362479 -g1,8641:9459832,32362479 -g1,8641:9775978,32362479 -g1,8641:10092124,32362479 -g1,8641:10408270,32362479 -g1,8641:10724416,32362479 -g1,8641:11040562,32362479 -g1,8641:11356708,32362479 -g1,8641:11672854,32362479 -g1,8641:11989000,32362479 -g1,8641:12621292,32362479 -g1,8641:12937438,32362479 -g1,8641:13253584,32362479 -g1,8641:13569730,32362479 -g1,8641:14202022,32362479 -g1,8641:14518168,32362479 -g1,8641:14834314,32362479 -g1,8641:15150460,32362479 -g1,8641:15466606,32362479 -g1,8641:15782752,32362479 -g1,8641:16415044,32362479 -g1,8641:16731190,32362479 -g1,8641:17047336,32362479 -g1,8641:17363482,32362479 -g1,8641:17679628,32362479 -g1,8641:17995774,32362479 -g1,8641:18311920,32362479 -g1,8641:18628066,32362479 -g1,8641:18944212,32362479 -g1,8641:19260358,32362479 -g1,8641:19576504,32362479 -h1,8641:19892650,32362479:0,0,0 -k1,8641:31966991,32362479:12074341 -g1,8641:31966991,32362479 -) -(1,8641:7246811,33028657:24720180,388497,9436 -h1,8641:7246811,33028657:0,0,0 -g1,8641:8195248,33028657 -g1,8641:8827540,33028657 -g1,8641:9143686,33028657 -g1,8641:9459832,33028657 -g1,8641:9775978,33028657 -g1,8641:10092124,33028657 -g1,8641:10408270,33028657 -g1,8641:10724416,33028657 -g1,8641:11040562,33028657 -g1,8641:11356708,33028657 -g1,8641:11672854,33028657 -g1,8641:11989000,33028657 -g1,8641:12621292,33028657 -g1,8641:12937438,33028657 -g1,8641:13253584,33028657 -g1,8641:13569730,33028657 -g1,8641:14202022,33028657 -g1,8641:14518168,33028657 -g1,8641:14834314,33028657 -g1,8641:15150460,33028657 -g1,8641:15466606,33028657 -g1,8641:15782752,33028657 -g1,8641:16415044,33028657 -g1,8641:16731190,33028657 -g1,8641:17047336,33028657 -g1,8641:17363482,33028657 -g1,8641:17679628,33028657 -g1,8641:17995774,33028657 -g1,8641:18311920,33028657 -g1,8641:18628066,33028657 -g1,8641:18944212,33028657 -g1,8641:19260358,33028657 -g1,8641:19576504,33028657 -h1,8641:19892650,33028657:0,0,0 -k1,8641:31966991,33028657:12074341 -g1,8641:31966991,33028657 -) -(1,8641:7246811,33694835:24720180,388497,9436 -h1,8641:7246811,33694835:0,0,0 -g1,8641:8195248,33694835 -g1,8641:8827540,33694835 -g1,8641:9143686,33694835 -g1,8641:9459832,33694835 -g1,8641:9775978,33694835 -g1,8641:10092124,33694835 -g1,8641:10408270,33694835 -g1,8641:10724416,33694835 -g1,8641:11040562,33694835 -g1,8641:11356708,33694835 -g1,8641:11672854,33694835 -g1,8641:11989000,33694835 -g1,8641:12621292,33694835 -g1,8641:12937438,33694835 -g1,8641:13253584,33694835 -g1,8641:13569730,33694835 -g1,8641:14202022,33694835 -g1,8641:14518168,33694835 -g1,8641:14834314,33694835 -g1,8641:15150460,33694835 -g1,8641:15466606,33694835 -g1,8641:15782752,33694835 -g1,8641:16415044,33694835 -g1,8641:16731190,33694835 -g1,8641:17047336,33694835 -g1,8641:17363482,33694835 -g1,8641:17679628,33694835 -g1,8641:17995774,33694835 -g1,8641:18311920,33694835 -g1,8641:18628066,33694835 -g1,8641:18944212,33694835 -g1,8641:19260358,33694835 -g1,8641:19576504,33694835 -h1,8641:19892650,33694835:0,0,0 -k1,8641:31966991,33694835:12074341 -g1,8641:31966991,33694835 -) -(1,8641:7246811,34361013:24720180,388497,9436 -h1,8641:7246811,34361013:0,0,0 -g1,8641:8195248,34361013 -g1,8641:8827540,34361013 -g1,8641:9143686,34361013 -g1,8641:9459832,34361013 -g1,8641:9775978,34361013 -g1,8641:10092124,34361013 -g1,8641:10408270,34361013 -g1,8641:10724416,34361013 -g1,8641:11040562,34361013 -g1,8641:11356708,34361013 -g1,8641:11672854,34361013 -g1,8641:11989000,34361013 -g1,8641:12621292,34361013 -g1,8641:12937438,34361013 -g1,8641:13253584,34361013 -g1,8641:13569730,34361013 -g1,8641:14202022,34361013 -g1,8641:14518168,34361013 -g1,8641:14834314,34361013 -g1,8641:15150460,34361013 -g1,8641:15466606,34361013 -g1,8641:15782752,34361013 -g1,8641:16415044,34361013 -g1,8641:16731190,34361013 -g1,8641:17047336,34361013 -g1,8641:17363482,34361013 -g1,8641:17679628,34361013 -g1,8641:17995774,34361013 -g1,8641:18311920,34361013 -g1,8641:18628066,34361013 -g1,8641:18944212,34361013 -g1,8641:19260358,34361013 -g1,8641:19576504,34361013 -h1,8641:19892650,34361013:0,0,0 -k1,8641:31966991,34361013:12074341 -g1,8641:31966991,34361013 -) -(1,8641:7246811,35027191:24720180,404226,107478 -h1,8641:7246811,35027191:0,0,0 -g1,8641:8195248,35027191 -k1,8641:8195248,35027191:0 -h1,8641:12937433,35027191:0,0,0 -k1,8641:31966991,35027191:19029558 -g1,8641:31966991,35027191 -) -(1,8641:7246811,35693369:24720180,404226,76021 -h1,8641:7246811,35693369:0,0,0 -g1,8641:8195248,35693369 -g1,8641:9459831,35693369 -g1,8641:10092123,35693369 -g1,8641:10724415,35693369 -g1,8641:11356707,35693369 -h1,8641:11672853,35693369:0,0,0 -k1,8641:31966991,35693369:20294138 -g1,8641:31966991,35693369 -) -(1,8641:7246811,36359547:24720180,404226,82312 -h1,8641:7246811,36359547:0,0,0 -g1,8641:8195248,36359547 -k1,8641:8195248,36359547:0 -h1,8641:13885870,36359547:0,0,0 -k1,8641:31966990,36359547:18081120 -g1,8641:31966990,36359547 -) -(1,8641:7246811,37025725:24720180,410518,82312 -h1,8641:7246811,37025725:0,0,0 -g1,8641:8195248,37025725 -k1,8641:8195248,37025725:0 -h1,8641:14518161,37025725:0,0,0 -k1,8641:31966991,37025725:17448830 -g1,8641:31966991,37025725 -) -(1,8641:7246811,37691903:24720180,404226,76021 -h1,8641:7246811,37691903:0,0,0 -g1,8641:8195248,37691903 -g1,8641:9459831,37691903 -h1,8641:14834308,37691903:0,0,0 -k1,8641:31966992,37691903:17132684 -g1,8641:31966992,37691903 -) -(1,8641:7246811,38358081:24720180,379060,0 -h1,8641:7246811,38358081:0,0,0 -h1,8641:7879102,38358081:0,0,0 -k1,8641:31966990,38358081:24087888 -g1,8641:31966990,38358081 -) -(1,8641:7246811,39024259:24720180,410518,82312 -h1,8641:7246811,39024259:0,0,0 -g1,8641:8195248,39024259 -k1,8641:8195248,39024259:0 -h1,8641:14518161,39024259:0,0,0 -k1,8641:31966991,39024259:17448830 -g1,8641:31966991,39024259 -) -(1,8641:7246811,39690437:24720180,404226,76021 -h1,8641:7246811,39690437:0,0,0 -g1,8641:8195248,39690437 -g1,8641:9459831,39690437 -h1,8641:14834308,39690437:0,0,0 -k1,8641:31966992,39690437:17132684 -g1,8641:31966992,39690437 -) -] -) -g1,8642:31966991,39766458 -g1,8642:7246811,39766458 -g1,8642:7246811,39766458 -g1,8642:31966991,39766458 -g1,8642:31966991,39766458 -) -h1,8642:7246811,39963066:0,0,0 -] -) -] -r1,8645:32583029,41077178:26214,35216297,0 -) -] -) -) -g1,8645:32583029,40487354 -) -h1,8645:6630773,41103392:0,0,0 -] -(1,8651:32583029,45706769:0,0,0 -g1,8651:32583029,45706769 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8656:37855564,49800853:1179648,16384,0 +) +) +k1,8656:3078556,49800853:-34777008 +) +] +g1,8656:6630773,4812305 +k1,8656:24502442,4812305:16676292 +g1,8656:25889183,4812305 +g1,8656:26537989,4812305 +g1,8656:29852144,4812305 +) +) +] +[1,8656:6630773,45706769:25952256,40108032,0 +(1,8656:6630773,45706769:25952256,40108032,0 +(1,8656:6630773,45706769:0,0,0 +g1,8656:6630773,45706769 +) +[1,8656:6630773,45706769:25952256,40108032,0 +v1,8650:6630773,6254097:0,393216,0 +(1,8650:6630773,40487354:25952256,34626473,616038 +g1,8650:6630773,40487354 +(1,8650:6630773,40487354:25952256,34626473,616038 +(1,8650:6630773,41103392:25952256,35242511,0 +[1,8650:6630773,41103392:25952256,35242511,0 +(1,8650:6630773,41077178:25952256,35216297,0 +r1,8650:6656987,41077178:26214,35216297,0 +[1,8650:6656987,41077178:25899828,35216297,0 +(1,8650:6656987,40487354:25899828,34036649,0 +[1,8650:7246811,40487354:24720180,34036649,0 +v1,8580:7246811,6843921:0,393216,0 +(1,8589:7246811,9216796:24720180,2766091,196608 +g1,8589:7246811,9216796 +g1,8589:7246811,9216796 +g1,8589:7050203,9216796 +(1,8589:7050203,9216796:0,2766091,196608 +r1,8650:32163599,9216796:25113396,2962699,196608 +k1,8589:7050203,9216796:-25113396 +) +(1,8589:7050203,9216796:25113396,2766091,196608 +[1,8589:7246811,9216796:24720180,2569483,0 +(1,8582:7246811,7051539:24720180,404226,101187 +(1,8581:7246811,7051539:0,0,0 +g1,8581:7246811,7051539 +g1,8581:7246811,7051539 +g1,8581:6919131,7051539 +(1,8581:6919131,7051539:0,0,0 +) +g1,8581:7246811,7051539 +) +k1,8582:7246811,7051539:0 +h1,8582:13569725,7051539:0,0,0 +k1,8582:31966991,7051539:18397266 +g1,8582:31966991,7051539 +) +(1,8588:7246811,7783253:24720180,410518,31456 +(1,8584:7246811,7783253:0,0,0 +g1,8584:7246811,7783253 +g1,8584:7246811,7783253 +g1,8584:6919131,7783253 +(1,8584:6919131,7783253:0,0,0 +) +g1,8584:7246811,7783253 +) +g1,8588:8195248,7783253 +h1,8588:11356705,7783253:0,0,0 +k1,8588:31966991,7783253:20610286 +g1,8588:31966991,7783253 +) +(1,8588:7246811,8449431:24720180,404226,6290 +h1,8588:7246811,8449431:0,0,0 +g1,8588:8195248,8449431 +g1,8588:8511394,8449431 +g1,8588:8827540,8449431 +g1,8588:9143686,8449431 +g1,8588:9459832,8449431 +g1,8588:9775978,8449431 +g1,8588:10092124,8449431 +g1,8588:10408270,8449431 +g1,8588:10724416,8449431 +g1,8588:13885873,8449431 +g1,8588:14202019,8449431 +g1,8588:14518165,8449431 +g1,8588:14834311,8449431 +g1,8588:15150457,8449431 +g1,8588:15466603,8449431 +g1,8588:15782749,8449431 +g1,8588:16098895,8449431 +g1,8588:16415041,8449431 +g1,8588:16731187,8449431 +g1,8588:17047333,8449431 +h1,8588:19260353,8449431:0,0,0 +k1,8588:31966991,8449431:12706638 +g1,8588:31966991,8449431 +) +(1,8588:7246811,9115609:24720180,404226,101187 +h1,8588:7246811,9115609:0,0,0 +g1,8588:8195248,9115609 +g1,8588:13885871,9115609 +g1,8588:14202017,9115609 +g1,8588:14518163,9115609 +g1,8588:14834309,9115609 +g1,8588:15150455,9115609 +g1,8588:15466601,9115609 +h1,8588:19260349,9115609:0,0,0 +k1,8588:31966991,9115609:12706642 +g1,8588:31966991,9115609 +) +] +) +g1,8589:31966991,9216796 +g1,8589:7246811,9216796 +g1,8589:7246811,9216796 +g1,8589:31966991,9216796 +g1,8589:31966991,9216796 +) +h1,8589:7246811,9413404:0,0,0 +(1,8593:7246811,10779180:24720180,513147,134348 +h1,8592:7246811,10779180:983040,0,0 +k1,8592:8917222,10779180:199783 +k1,8592:11104713,10779180:199784 +k1,8592:13391819,10779180:199784 +k1,8592:14539254,10779180:199784 +k1,8592:15094898,10779180:199784 +k1,8592:17282389,10779180:199784 +k1,8592:18429824,10779180:199784 +k1,8592:18985468,10779180:199784 +k1,8592:21808658,10779180:199784 +k1,8592:24664616,10779180:199784 +k1,8592:26953032,10779180:199784 +k1,8592:28546767,10779180:199784 +k1,8592:29555921,10779180:199784 +k1,8593:31966991,10779180:0 +) +(1,8593:7246811,11620668:24720180,473825,7863 +g1,8592:8713506,11620668 +k1,8593:31966991,11620668:21567244 +g1,8593:31966991,11620668 +) +v1,8595:7246811,12811134:0,393216,0 +(1,8618:7246811,24491627:24720180,12073709,196608 +g1,8618:7246811,24491627 +g1,8618:7246811,24491627 +g1,8618:7050203,24491627 +(1,8618:7050203,24491627:0,12073709,196608 +r1,8650:32163599,24491627:25113396,12270317,196608 +k1,8618:7050203,24491627:-25113396 +) +(1,8618:7050203,24491627:25113396,12073709,196608 +[1,8618:7246811,24491627:24720180,11877101,0 +(1,8597:7246811,13025044:24720180,410518,82312 +(1,8596:7246811,13025044:0,0,0 +g1,8596:7246811,13025044 +g1,8596:7246811,13025044 +g1,8596:6919131,13025044 +(1,8596:6919131,13025044:0,0,0 +) +g1,8596:7246811,13025044 +) +k1,8597:7246811,13025044:0 +g1,8597:11988997,13025044 +g1,8597:12621289,13025044 +g1,8597:13253581,13025044 +g1,8597:14202019,13025044 +h1,8597:17363476,13025044:0,0,0 +k1,8597:31966991,13025044:14603515 +g1,8597:31966991,13025044 +) +(1,8617:7246811,13756758:24720180,404226,101187 +(1,8599:7246811,13756758:0,0,0 +g1,8599:7246811,13756758 +g1,8599:7246811,13756758 +g1,8599:6919131,13756758 +(1,8599:6919131,13756758:0,0,0 +) +g1,8599:7246811,13756758 +) +g1,8617:8195248,13756758 +g1,8617:8511394,13756758 +g1,8617:8827540,13756758 +g1,8617:12621288,13756758 +g1,8617:14202017,13756758 +h1,8617:16098891,13756758:0,0,0 +k1,8617:31966991,13756758:15868100 +g1,8617:31966991,13756758 +) +(1,8617:7246811,14422936:24720180,388497,0 +h1,8617:7246811,14422936:0,0,0 +g1,8617:8195248,14422936 +g1,8617:8827540,14422936 +g1,8617:9143686,14422936 +g1,8617:9459832,14422936 +g1,8617:9775978,14422936 +g1,8617:10092124,14422936 +g1,8617:10408270,14422936 +g1,8617:10724416,14422936 +g1,8617:11040562,14422936 +g1,8617:11356708,14422936 +g1,8617:11672854,14422936 +g1,8617:11989000,14422936 +g1,8617:12621292,14422936 +g1,8617:12937438,14422936 +g1,8617:13253584,14422936 +g1,8617:13569730,14422936 +g1,8617:14202022,14422936 +g1,8617:14518168,14422936 +g1,8617:14834314,14422936 +g1,8617:15150460,14422936 +g1,8617:15466606,14422936 +g1,8617:15782752,14422936 +h1,8617:16098898,14422936:0,0,0 +k1,8617:31966991,14422936:15868093 +g1,8617:31966991,14422936 +) +(1,8617:7246811,15089114:24720180,388497,9436 +h1,8617:7246811,15089114:0,0,0 +g1,8617:8195248,15089114 +g1,8617:8827540,15089114 +g1,8617:9143686,15089114 +g1,8617:9459832,15089114 +g1,8617:9775978,15089114 +g1,8617:10092124,15089114 +g1,8617:10408270,15089114 +g1,8617:10724416,15089114 +g1,8617:11040562,15089114 +g1,8617:11356708,15089114 +g1,8617:11672854,15089114 +g1,8617:11989000,15089114 +g1,8617:12621292,15089114 +g1,8617:12937438,15089114 +g1,8617:13253584,15089114 +g1,8617:13569730,15089114 +g1,8617:14202022,15089114 +g1,8617:14518168,15089114 +g1,8617:14834314,15089114 +g1,8617:15150460,15089114 +g1,8617:15466606,15089114 +g1,8617:15782752,15089114 +h1,8617:16098898,15089114:0,0,0 +k1,8617:31966991,15089114:15868093 +g1,8617:31966991,15089114 +) +(1,8617:7246811,15755292:24720180,388497,9436 +h1,8617:7246811,15755292:0,0,0 +g1,8617:8195248,15755292 +g1,8617:8827540,15755292 +g1,8617:9143686,15755292 +g1,8617:9459832,15755292 +g1,8617:9775978,15755292 +g1,8617:10092124,15755292 +g1,8617:10408270,15755292 +g1,8617:10724416,15755292 +g1,8617:11040562,15755292 +g1,8617:11356708,15755292 +g1,8617:11672854,15755292 +g1,8617:11989000,15755292 +g1,8617:12621292,15755292 +g1,8617:12937438,15755292 +g1,8617:13253584,15755292 +g1,8617:13569730,15755292 +g1,8617:14202022,15755292 +g1,8617:14518168,15755292 +g1,8617:14834314,15755292 +g1,8617:15150460,15755292 +g1,8617:15466606,15755292 +g1,8617:15782752,15755292 +h1,8617:16098898,15755292:0,0,0 +k1,8617:31966991,15755292:15868093 +g1,8617:31966991,15755292 +) +(1,8617:7246811,16421470:24720180,388497,9436 +h1,8617:7246811,16421470:0,0,0 +g1,8617:8195248,16421470 +g1,8617:8827540,16421470 +g1,8617:9143686,16421470 +g1,8617:9459832,16421470 +g1,8617:9775978,16421470 +g1,8617:10092124,16421470 +g1,8617:10408270,16421470 +g1,8617:10724416,16421470 +g1,8617:11040562,16421470 +g1,8617:11356708,16421470 +g1,8617:11672854,16421470 +g1,8617:11989000,16421470 +g1,8617:12621292,16421470 +g1,8617:12937438,16421470 +g1,8617:13253584,16421470 +g1,8617:13569730,16421470 +g1,8617:14202022,16421470 +g1,8617:14518168,16421470 +g1,8617:14834314,16421470 +g1,8617:15150460,16421470 +g1,8617:15466606,16421470 +g1,8617:15782752,16421470 +h1,8617:16098898,16421470:0,0,0 +k1,8617:31966991,16421470:15868093 +g1,8617:31966991,16421470 +) +(1,8617:7246811,17087648:24720180,388497,9436 +h1,8617:7246811,17087648:0,0,0 +g1,8617:8195248,17087648 +g1,8617:8827540,17087648 +g1,8617:9143686,17087648 +g1,8617:9459832,17087648 +g1,8617:9775978,17087648 +g1,8617:10092124,17087648 +g1,8617:10408270,17087648 +g1,8617:10724416,17087648 +g1,8617:11040562,17087648 +g1,8617:11356708,17087648 +g1,8617:11672854,17087648 +g1,8617:11989000,17087648 +g1,8617:12621292,17087648 +g1,8617:12937438,17087648 +g1,8617:13253584,17087648 +g1,8617:13569730,17087648 +g1,8617:14202022,17087648 +g1,8617:14518168,17087648 +g1,8617:14834314,17087648 +g1,8617:15150460,17087648 +g1,8617:15466606,17087648 +g1,8617:15782752,17087648 +h1,8617:16098898,17087648:0,0,0 +k1,8617:31966991,17087648:15868093 +g1,8617:31966991,17087648 +) +(1,8617:7246811,17753826:24720180,388497,9436 +h1,8617:7246811,17753826:0,0,0 +g1,8617:8195248,17753826 +g1,8617:8827540,17753826 +g1,8617:9143686,17753826 +g1,8617:9459832,17753826 +g1,8617:9775978,17753826 +g1,8617:10092124,17753826 +g1,8617:10408270,17753826 +g1,8617:10724416,17753826 +g1,8617:11040562,17753826 +g1,8617:11356708,17753826 +g1,8617:11672854,17753826 +g1,8617:11989000,17753826 +g1,8617:12621292,17753826 +g1,8617:12937438,17753826 +g1,8617:13253584,17753826 +g1,8617:13569730,17753826 +g1,8617:14202022,17753826 +g1,8617:14518168,17753826 +g1,8617:14834314,17753826 +g1,8617:15150460,17753826 +g1,8617:15466606,17753826 +g1,8617:15782752,17753826 +h1,8617:16098898,17753826:0,0,0 +k1,8617:31966991,17753826:15868093 +g1,8617:31966991,17753826 +) +(1,8617:7246811,18420004:24720180,388497,9436 +h1,8617:7246811,18420004:0,0,0 +g1,8617:8195248,18420004 +g1,8617:8827540,18420004 +g1,8617:9143686,18420004 +g1,8617:9459832,18420004 +g1,8617:9775978,18420004 +g1,8617:10092124,18420004 +g1,8617:10408270,18420004 +g1,8617:10724416,18420004 +g1,8617:11040562,18420004 +g1,8617:11356708,18420004 +g1,8617:11672854,18420004 +g1,8617:11989000,18420004 +g1,8617:12621292,18420004 +g1,8617:12937438,18420004 +g1,8617:13253584,18420004 +g1,8617:13569730,18420004 +g1,8617:14202022,18420004 +g1,8617:14518168,18420004 +g1,8617:14834314,18420004 +g1,8617:15150460,18420004 +g1,8617:15466606,18420004 +g1,8617:15782752,18420004 +h1,8617:16098898,18420004:0,0,0 +k1,8617:31966991,18420004:15868093 +g1,8617:31966991,18420004 +) +(1,8617:7246811,19086182:24720180,388497,9436 +h1,8617:7246811,19086182:0,0,0 +g1,8617:8195248,19086182 +g1,8617:8827540,19086182 +g1,8617:9143686,19086182 +g1,8617:9459832,19086182 +g1,8617:9775978,19086182 +g1,8617:10092124,19086182 +g1,8617:10408270,19086182 +g1,8617:10724416,19086182 +g1,8617:11040562,19086182 +g1,8617:11356708,19086182 +g1,8617:11672854,19086182 +g1,8617:11989000,19086182 +g1,8617:12621292,19086182 +g1,8617:12937438,19086182 +g1,8617:13253584,19086182 +g1,8617:13569730,19086182 +g1,8617:14202022,19086182 +g1,8617:14518168,19086182 +g1,8617:14834314,19086182 +g1,8617:15150460,19086182 +g1,8617:15466606,19086182 +g1,8617:15782752,19086182 +h1,8617:16098898,19086182:0,0,0 +k1,8617:31966991,19086182:15868093 +g1,8617:31966991,19086182 +) +(1,8617:7246811,19752360:24720180,404226,107478 +h1,8617:7246811,19752360:0,0,0 +g1,8617:8195248,19752360 +k1,8617:8195248,19752360:0 +h1,8617:12937433,19752360:0,0,0 +k1,8617:31966991,19752360:19029558 +g1,8617:31966991,19752360 +) +(1,8617:7246811,20418538:24720180,404226,76021 +h1,8617:7246811,20418538:0,0,0 +g1,8617:8195248,20418538 +g1,8617:9459831,20418538 +g1,8617:10092123,20418538 +g1,8617:10724415,20418538 +h1,8617:11040561,20418538:0,0,0 +k1,8617:31966991,20418538:20926430 +g1,8617:31966991,20418538 +) +(1,8617:7246811,21084716:24720180,404226,82312 +h1,8617:7246811,21084716:0,0,0 +g1,8617:8195248,21084716 +k1,8617:8195248,21084716:0 +h1,8617:13885870,21084716:0,0,0 +k1,8617:31966990,21084716:18081120 +g1,8617:31966990,21084716 +) +(1,8617:7246811,21750894:24720180,410518,82312 +h1,8617:7246811,21750894:0,0,0 +g1,8617:8195248,21750894 +k1,8617:8195248,21750894:0 +h1,8617:14518161,21750894:0,0,0 +k1,8617:31966991,21750894:17448830 +g1,8617:31966991,21750894 +) +(1,8617:7246811,22417072:24720180,404226,76021 +h1,8617:7246811,22417072:0,0,0 +g1,8617:8195248,22417072 +g1,8617:9459831,22417072 +h1,8617:14834308,22417072:0,0,0 +k1,8617:31966992,22417072:17132684 +g1,8617:31966992,22417072 +) +(1,8617:7246811,23083250:24720180,379060,0 +h1,8617:7246811,23083250:0,0,0 +h1,8617:7879102,23083250:0,0,0 +k1,8617:31966990,23083250:24087888 +g1,8617:31966990,23083250 +) +(1,8617:7246811,23749428:24720180,410518,82312 +h1,8617:7246811,23749428:0,0,0 +g1,8617:8195248,23749428 +k1,8617:8195248,23749428:0 +h1,8617:14518161,23749428:0,0,0 +k1,8617:31966991,23749428:17448830 +g1,8617:31966991,23749428 +) +(1,8617:7246811,24415606:24720180,404226,76021 +h1,8617:7246811,24415606:0,0,0 +g1,8617:8195248,24415606 +g1,8617:9459831,24415606 +h1,8617:14834308,24415606:0,0,0 +k1,8617:31966992,24415606:17132684 +g1,8617:31966992,24415606 +) +] +) +g1,8618:31966991,24491627 +g1,8618:7246811,24491627 +g1,8618:7246811,24491627 +g1,8618:31966991,24491627 +g1,8618:31966991,24491627 +) +h1,8618:7246811,24688235:0,0,0 +(1,8622:7246811,26054011:24720180,513147,134348 +h1,8621:7246811,26054011:983040,0,0 +k1,8621:8913443,26054011:196004 +k1,8621:11097158,26054011:196008 +k1,8621:13380487,26054011:196007 +k1,8621:14524146,26054011:196008 +k1,8621:15076013,26054011:196007 +k1,8621:17259728,26054011:196008 +k1,8621:18403386,26054011:196007 +k1,8621:18955254,26054011:196008 +k1,8621:21774667,26054011:196007 +k1,8621:24626849,26054011:196008 +k1,8621:26911488,26054011:196007 +k1,8621:28501447,26054011:196008 +k1,8621:31966991,26054011:0 +) +(1,8622:7246811,26895499:24720180,426639,7863 +k1,8622:31966992,26895499:23033940 +g1,8622:31966992,26895499 +) +v1,8624:7246811,28085965:0,393216,0 +(1,8647:7246811,39766458:24720180,12073709,196608 +g1,8647:7246811,39766458 +g1,8647:7246811,39766458 +g1,8647:7050203,39766458 +(1,8647:7050203,39766458:0,12073709,196608 +r1,8650:32163599,39766458:25113396,12270317,196608 +k1,8647:7050203,39766458:-25113396 +) +(1,8647:7050203,39766458:25113396,12073709,196608 +[1,8647:7246811,39766458:24720180,11877101,0 +(1,8626:7246811,28299875:24720180,410518,82312 +(1,8625:7246811,28299875:0,0,0 +g1,8625:7246811,28299875 +g1,8625:7246811,28299875 +g1,8625:6919131,28299875 +(1,8625:6919131,28299875:0,0,0 +) +g1,8625:7246811,28299875 +) +k1,8626:7246811,28299875:0 +g1,8626:11988997,28299875 +g1,8626:12621289,28299875 +g1,8626:13253581,28299875 +g1,8626:14202019,28299875 +h1,8626:17363476,28299875:0,0,0 +k1,8626:31966991,28299875:14603515 +g1,8626:31966991,28299875 +) +(1,8646:7246811,29031589:24720180,404226,101187 +(1,8628:7246811,29031589:0,0,0 +g1,8628:7246811,29031589 +g1,8628:7246811,29031589 +g1,8628:6919131,29031589 +(1,8628:6919131,29031589:0,0,0 +) +g1,8628:7246811,29031589 +) +g1,8646:8195248,29031589 +g1,8646:8511394,29031589 +g1,8646:8827540,29031589 +g1,8646:12621288,29031589 +g1,8646:14202017,29031589 +g1,8646:16415037,29031589 +h1,8646:19892639,29031589:0,0,0 +k1,8646:31966991,29031589:12074352 +g1,8646:31966991,29031589 +) +(1,8646:7246811,29697767:24720180,388497,0 +h1,8646:7246811,29697767:0,0,0 +g1,8646:8195248,29697767 +g1,8646:8827540,29697767 +g1,8646:9143686,29697767 +g1,8646:9459832,29697767 +g1,8646:9775978,29697767 +g1,8646:10092124,29697767 +g1,8646:10408270,29697767 +g1,8646:10724416,29697767 +g1,8646:11040562,29697767 +g1,8646:11356708,29697767 +g1,8646:11672854,29697767 +g1,8646:11989000,29697767 +g1,8646:12621292,29697767 +g1,8646:12937438,29697767 +g1,8646:13253584,29697767 +g1,8646:13569730,29697767 +g1,8646:14202022,29697767 +g1,8646:14518168,29697767 +g1,8646:14834314,29697767 +g1,8646:15150460,29697767 +g1,8646:15466606,29697767 +g1,8646:15782752,29697767 +g1,8646:16415044,29697767 +g1,8646:16731190,29697767 +g1,8646:17047336,29697767 +g1,8646:17363482,29697767 +g1,8646:17679628,29697767 +g1,8646:17995774,29697767 +g1,8646:18311920,29697767 +g1,8646:18628066,29697767 +g1,8646:18944212,29697767 +g1,8646:19260358,29697767 +g1,8646:19576504,29697767 +h1,8646:19892650,29697767:0,0,0 +k1,8646:31966991,29697767:12074341 +g1,8646:31966991,29697767 +) +(1,8646:7246811,30363945:24720180,388497,9436 +h1,8646:7246811,30363945:0,0,0 +g1,8646:8195248,30363945 +g1,8646:8827540,30363945 +g1,8646:9143686,30363945 +g1,8646:9459832,30363945 +g1,8646:9775978,30363945 +g1,8646:10092124,30363945 +g1,8646:10408270,30363945 +g1,8646:10724416,30363945 +g1,8646:11040562,30363945 +g1,8646:11356708,30363945 +g1,8646:11672854,30363945 +g1,8646:11989000,30363945 +g1,8646:12621292,30363945 +g1,8646:12937438,30363945 +g1,8646:13253584,30363945 +g1,8646:13569730,30363945 +g1,8646:14202022,30363945 +g1,8646:14518168,30363945 +g1,8646:14834314,30363945 +g1,8646:15150460,30363945 +g1,8646:15466606,30363945 +g1,8646:15782752,30363945 +g1,8646:16415044,30363945 +g1,8646:16731190,30363945 +g1,8646:17047336,30363945 +g1,8646:17363482,30363945 +g1,8646:17679628,30363945 +g1,8646:17995774,30363945 +g1,8646:18311920,30363945 +g1,8646:18628066,30363945 +g1,8646:18944212,30363945 +g1,8646:19260358,30363945 +g1,8646:19576504,30363945 +h1,8646:19892650,30363945:0,0,0 +k1,8646:31966991,30363945:12074341 +g1,8646:31966991,30363945 +) +(1,8646:7246811,31030123:24720180,388497,9436 +h1,8646:7246811,31030123:0,0,0 +g1,8646:8195248,31030123 +g1,8646:8827540,31030123 +g1,8646:9143686,31030123 +g1,8646:9459832,31030123 +g1,8646:9775978,31030123 +g1,8646:10092124,31030123 +g1,8646:10408270,31030123 +g1,8646:10724416,31030123 +g1,8646:11040562,31030123 +g1,8646:11356708,31030123 +g1,8646:11672854,31030123 +g1,8646:11989000,31030123 +g1,8646:12621292,31030123 +g1,8646:12937438,31030123 +g1,8646:13253584,31030123 +g1,8646:13569730,31030123 +g1,8646:14202022,31030123 +g1,8646:14518168,31030123 +g1,8646:14834314,31030123 +g1,8646:15150460,31030123 +g1,8646:15466606,31030123 +g1,8646:15782752,31030123 +g1,8646:16415044,31030123 +g1,8646:16731190,31030123 +g1,8646:17047336,31030123 +g1,8646:17363482,31030123 +g1,8646:17679628,31030123 +g1,8646:17995774,31030123 +g1,8646:18311920,31030123 +g1,8646:18628066,31030123 +g1,8646:18944212,31030123 +g1,8646:19260358,31030123 +g1,8646:19576504,31030123 +h1,8646:19892650,31030123:0,0,0 +k1,8646:31966991,31030123:12074341 +g1,8646:31966991,31030123 +) +(1,8646:7246811,31696301:24720180,388497,9436 +h1,8646:7246811,31696301:0,0,0 +g1,8646:8195248,31696301 +g1,8646:8827540,31696301 +g1,8646:9143686,31696301 +g1,8646:9459832,31696301 +g1,8646:9775978,31696301 +g1,8646:10092124,31696301 +g1,8646:10408270,31696301 +g1,8646:10724416,31696301 +g1,8646:11040562,31696301 +g1,8646:11356708,31696301 +g1,8646:11672854,31696301 +g1,8646:11989000,31696301 +g1,8646:12621292,31696301 +g1,8646:12937438,31696301 +g1,8646:13253584,31696301 +g1,8646:13569730,31696301 +g1,8646:14202022,31696301 +g1,8646:14518168,31696301 +g1,8646:14834314,31696301 +g1,8646:15150460,31696301 +g1,8646:15466606,31696301 +g1,8646:15782752,31696301 +g1,8646:16415044,31696301 +g1,8646:16731190,31696301 +g1,8646:17047336,31696301 +g1,8646:17363482,31696301 +g1,8646:17679628,31696301 +g1,8646:17995774,31696301 +g1,8646:18311920,31696301 +g1,8646:18628066,31696301 +g1,8646:18944212,31696301 +g1,8646:19260358,31696301 +g1,8646:19576504,31696301 +h1,8646:19892650,31696301:0,0,0 +k1,8646:31966991,31696301:12074341 +g1,8646:31966991,31696301 +) +(1,8646:7246811,32362479:24720180,388497,9436 +h1,8646:7246811,32362479:0,0,0 +g1,8646:8195248,32362479 +g1,8646:8827540,32362479 +g1,8646:9143686,32362479 +g1,8646:9459832,32362479 +g1,8646:9775978,32362479 +g1,8646:10092124,32362479 +g1,8646:10408270,32362479 +g1,8646:10724416,32362479 +g1,8646:11040562,32362479 +g1,8646:11356708,32362479 +g1,8646:11672854,32362479 +g1,8646:11989000,32362479 +g1,8646:12621292,32362479 +g1,8646:12937438,32362479 +g1,8646:13253584,32362479 +g1,8646:13569730,32362479 +g1,8646:14202022,32362479 +g1,8646:14518168,32362479 +g1,8646:14834314,32362479 +g1,8646:15150460,32362479 +g1,8646:15466606,32362479 +g1,8646:15782752,32362479 +g1,8646:16415044,32362479 +g1,8646:16731190,32362479 +g1,8646:17047336,32362479 +g1,8646:17363482,32362479 +g1,8646:17679628,32362479 +g1,8646:17995774,32362479 +g1,8646:18311920,32362479 +g1,8646:18628066,32362479 +g1,8646:18944212,32362479 +g1,8646:19260358,32362479 +g1,8646:19576504,32362479 +h1,8646:19892650,32362479:0,0,0 +k1,8646:31966991,32362479:12074341 +g1,8646:31966991,32362479 +) +(1,8646:7246811,33028657:24720180,388497,9436 +h1,8646:7246811,33028657:0,0,0 +g1,8646:8195248,33028657 +g1,8646:8827540,33028657 +g1,8646:9143686,33028657 +g1,8646:9459832,33028657 +g1,8646:9775978,33028657 +g1,8646:10092124,33028657 +g1,8646:10408270,33028657 +g1,8646:10724416,33028657 +g1,8646:11040562,33028657 +g1,8646:11356708,33028657 +g1,8646:11672854,33028657 +g1,8646:11989000,33028657 +g1,8646:12621292,33028657 +g1,8646:12937438,33028657 +g1,8646:13253584,33028657 +g1,8646:13569730,33028657 +g1,8646:14202022,33028657 +g1,8646:14518168,33028657 +g1,8646:14834314,33028657 +g1,8646:15150460,33028657 +g1,8646:15466606,33028657 +g1,8646:15782752,33028657 +g1,8646:16415044,33028657 +g1,8646:16731190,33028657 +g1,8646:17047336,33028657 +g1,8646:17363482,33028657 +g1,8646:17679628,33028657 +g1,8646:17995774,33028657 +g1,8646:18311920,33028657 +g1,8646:18628066,33028657 +g1,8646:18944212,33028657 +g1,8646:19260358,33028657 +g1,8646:19576504,33028657 +h1,8646:19892650,33028657:0,0,0 +k1,8646:31966991,33028657:12074341 +g1,8646:31966991,33028657 +) +(1,8646:7246811,33694835:24720180,388497,9436 +h1,8646:7246811,33694835:0,0,0 +g1,8646:8195248,33694835 +g1,8646:8827540,33694835 +g1,8646:9143686,33694835 +g1,8646:9459832,33694835 +g1,8646:9775978,33694835 +g1,8646:10092124,33694835 +g1,8646:10408270,33694835 +g1,8646:10724416,33694835 +g1,8646:11040562,33694835 +g1,8646:11356708,33694835 +g1,8646:11672854,33694835 +g1,8646:11989000,33694835 +g1,8646:12621292,33694835 +g1,8646:12937438,33694835 +g1,8646:13253584,33694835 +g1,8646:13569730,33694835 +g1,8646:14202022,33694835 +g1,8646:14518168,33694835 +g1,8646:14834314,33694835 +g1,8646:15150460,33694835 +g1,8646:15466606,33694835 +g1,8646:15782752,33694835 +g1,8646:16415044,33694835 +g1,8646:16731190,33694835 +g1,8646:17047336,33694835 +g1,8646:17363482,33694835 +g1,8646:17679628,33694835 +g1,8646:17995774,33694835 +g1,8646:18311920,33694835 +g1,8646:18628066,33694835 +g1,8646:18944212,33694835 +g1,8646:19260358,33694835 +g1,8646:19576504,33694835 +h1,8646:19892650,33694835:0,0,0 +k1,8646:31966991,33694835:12074341 +g1,8646:31966991,33694835 +) +(1,8646:7246811,34361013:24720180,388497,9436 +h1,8646:7246811,34361013:0,0,0 +g1,8646:8195248,34361013 +g1,8646:8827540,34361013 +g1,8646:9143686,34361013 +g1,8646:9459832,34361013 +g1,8646:9775978,34361013 +g1,8646:10092124,34361013 +g1,8646:10408270,34361013 +g1,8646:10724416,34361013 +g1,8646:11040562,34361013 +g1,8646:11356708,34361013 +g1,8646:11672854,34361013 +g1,8646:11989000,34361013 +g1,8646:12621292,34361013 +g1,8646:12937438,34361013 +g1,8646:13253584,34361013 +g1,8646:13569730,34361013 +g1,8646:14202022,34361013 +g1,8646:14518168,34361013 +g1,8646:14834314,34361013 +g1,8646:15150460,34361013 +g1,8646:15466606,34361013 +g1,8646:15782752,34361013 +g1,8646:16415044,34361013 +g1,8646:16731190,34361013 +g1,8646:17047336,34361013 +g1,8646:17363482,34361013 +g1,8646:17679628,34361013 +g1,8646:17995774,34361013 +g1,8646:18311920,34361013 +g1,8646:18628066,34361013 +g1,8646:18944212,34361013 +g1,8646:19260358,34361013 +g1,8646:19576504,34361013 +h1,8646:19892650,34361013:0,0,0 +k1,8646:31966991,34361013:12074341 +g1,8646:31966991,34361013 +) +(1,8646:7246811,35027191:24720180,404226,107478 +h1,8646:7246811,35027191:0,0,0 +g1,8646:8195248,35027191 +k1,8646:8195248,35027191:0 +h1,8646:12937433,35027191:0,0,0 +k1,8646:31966991,35027191:19029558 +g1,8646:31966991,35027191 +) +(1,8646:7246811,35693369:24720180,404226,76021 +h1,8646:7246811,35693369:0,0,0 +g1,8646:8195248,35693369 +g1,8646:9459831,35693369 +g1,8646:10092123,35693369 +g1,8646:10724415,35693369 +g1,8646:11356707,35693369 +h1,8646:11672853,35693369:0,0,0 +k1,8646:31966991,35693369:20294138 +g1,8646:31966991,35693369 +) +(1,8646:7246811,36359547:24720180,404226,82312 +h1,8646:7246811,36359547:0,0,0 +g1,8646:8195248,36359547 +k1,8646:8195248,36359547:0 +h1,8646:13885870,36359547:0,0,0 +k1,8646:31966990,36359547:18081120 +g1,8646:31966990,36359547 +) +(1,8646:7246811,37025725:24720180,410518,82312 +h1,8646:7246811,37025725:0,0,0 +g1,8646:8195248,37025725 +k1,8646:8195248,37025725:0 +h1,8646:14518161,37025725:0,0,0 +k1,8646:31966991,37025725:17448830 +g1,8646:31966991,37025725 +) +(1,8646:7246811,37691903:24720180,404226,76021 +h1,8646:7246811,37691903:0,0,0 +g1,8646:8195248,37691903 +g1,8646:9459831,37691903 +h1,8646:14834308,37691903:0,0,0 +k1,8646:31966992,37691903:17132684 +g1,8646:31966992,37691903 +) +(1,8646:7246811,38358081:24720180,379060,0 +h1,8646:7246811,38358081:0,0,0 +h1,8646:7879102,38358081:0,0,0 +k1,8646:31966990,38358081:24087888 +g1,8646:31966990,38358081 +) +(1,8646:7246811,39024259:24720180,410518,82312 +h1,8646:7246811,39024259:0,0,0 +g1,8646:8195248,39024259 +k1,8646:8195248,39024259:0 +h1,8646:14518161,39024259:0,0,0 +k1,8646:31966991,39024259:17448830 +g1,8646:31966991,39024259 +) +(1,8646:7246811,39690437:24720180,404226,76021 +h1,8646:7246811,39690437:0,0,0 +g1,8646:8195248,39690437 +g1,8646:9459831,39690437 +h1,8646:14834308,39690437:0,0,0 +k1,8646:31966992,39690437:17132684 +g1,8646:31966992,39690437 +) +] +) +g1,8647:31966991,39766458 +g1,8647:7246811,39766458 +g1,8647:7246811,39766458 +g1,8647:31966991,39766458 +g1,8647:31966991,39766458 +) +h1,8647:7246811,39963066:0,0,0 +] +) +] +r1,8650:32583029,41077178:26214,35216297,0 +) +] +) +) +g1,8650:32583029,40487354 +) +h1,8650:6630773,41103392:0,0,0 +] +(1,8656:32583029,45706769:0,0,0 +g1,8656:32583029,45706769 ) ) ] -(1,8651:6630773,47279633:25952256,0,0 -h1,8651:6630773,47279633:25952256,0,0 +(1,8656:6630773,47279633:25952256,0,0 +h1,8656:6630773,47279633:25952256,0,0 ) ] -h1,8651:4262630,4025873:0,0,0 +h1,8656:4262630,4025873:0,0,0 ] !28107 }159 -Input:1150:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1151:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1152:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1153:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1154:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1155:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1146:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1147:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1148:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1149:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1150:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1151:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {160 -[1,8714:4262630,47279633:28320399,43253760,0 -(1,8714:4262630,4025873:0,0,0 -[1,8714:-473657,4025873:25952256,0,0 -(1,8714:-473657,-710414:25952256,0,0 -h1,8714:-473657,-710414:0,0,0 -(1,8714:-473657,-710414:0,0,0 -(1,8714:-473657,-710414:0,0,0 -g1,8714:-473657,-710414 -(1,8714:-473657,-710414:65781,0,65781 -g1,8714:-407876,-710414 -[1,8714:-407876,-644633:0,0,0 +[1,8719:4262630,47279633:28320399,43253760,0 +(1,8719:4262630,4025873:0,0,0 +[1,8719:-473657,4025873:25952256,0,0 +(1,8719:-473657,-710414:25952256,0,0 +h1,8719:-473657,-710414:0,0,0 +(1,8719:-473657,-710414:0,0,0 +(1,8719:-473657,-710414:0,0,0 +g1,8719:-473657,-710414 +(1,8719:-473657,-710414:65781,0,65781 +g1,8719:-407876,-710414 +[1,8719:-407876,-644633:0,0,0 ] ) -k1,8714:-473657,-710414:-65781 +k1,8719:-473657,-710414:-65781 ) ) -k1,8714:25478599,-710414:25952256 -g1,8714:25478599,-710414 +k1,8719:25478599,-710414:25952256 +g1,8719:25478599,-710414 ) ] ) -[1,8714:6630773,47279633:25952256,43253760,0 -[1,8714:6630773,4812305:25952256,786432,0 -(1,8714:6630773,4812305:25952256,485622,11795 -(1,8714:6630773,4812305:25952256,485622,11795 -g1,8714:3078558,4812305 -[1,8714:3078558,4812305:0,0,0 -(1,8714:3078558,2439708:0,1703936,0 -k1,8714:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8714:2537886,2439708:1179648,16384,0 +[1,8719:6630773,47279633:25952256,43253760,0 +[1,8719:6630773,4812305:25952256,786432,0 +(1,8719:6630773,4812305:25952256,485622,11795 +(1,8719:6630773,4812305:25952256,485622,11795 +g1,8719:3078558,4812305 +[1,8719:3078558,4812305:0,0,0 +(1,8719:3078558,2439708:0,1703936,0 +k1,8719:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8719:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8714:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8719:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8714:3078558,4812305:0,0,0 -(1,8714:3078558,2439708:0,1703936,0 -g1,8714:29030814,2439708 -g1,8714:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8714:36151628,1915420:16384,1179648,0 +[1,8719:3078558,4812305:0,0,0 +(1,8719:3078558,2439708:0,1703936,0 +g1,8719:29030814,2439708 +g1,8719:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8719:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8714:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8719:37855564,2439708:1179648,16384,0 ) ) -k1,8714:3078556,2439708:-34777008 +k1,8719:3078556,2439708:-34777008 ) ] -[1,8714:3078558,4812305:0,0,0 -(1,8714:3078558,49800853:0,16384,2228224 -k1,8714:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8714:2537886,49800853:1179648,16384,0 +[1,8719:3078558,4812305:0,0,0 +(1,8719:3078558,49800853:0,16384,2228224 +k1,8719:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8719:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8714:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8719:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8714:3078558,4812305:0,0,0 -(1,8714:3078558,49800853:0,16384,2228224 -g1,8714:29030814,49800853 -g1,8714:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8714:36151628,51504789:16384,1179648,0 +[1,8719:3078558,4812305:0,0,0 +(1,8719:3078558,49800853:0,16384,2228224 +g1,8719:29030814,49800853 +g1,8719:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8719:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8714:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8719:37855564,49800853:1179648,16384,0 ) ) -k1,8714:3078556,49800853:-34777008 -) -] -g1,8714:6630773,4812305 -g1,8714:6630773,4812305 -g1,8714:8412041,4812305 -g1,8714:10364358,4812305 -k1,8714:31387652,4812305:21023294 -) -) -] -[1,8714:6630773,45706769:25952256,40108032,0 -(1,8714:6630773,45706769:25952256,40108032,0 -(1,8714:6630773,45706769:0,0,0 -g1,8714:6630773,45706769 -) -[1,8714:6630773,45706769:25952256,40108032,0 -(1,8648:6630773,6254097:25952256,32768,229376 -(1,8648:6630773,6254097:0,32768,229376 -(1,8648:6630773,6254097:5505024,32768,229376 -r1,8648:12135797,6254097:5505024,262144,229376 -) -k1,8648:6630773,6254097:-5505024 -) -(1,8648:6630773,6254097:25952256,32768,0 -r1,8648:32583029,6254097:25952256,32768,0 -) -) -(1,8648:6630773,7858425:25952256,606339,14155 -(1,8648:6630773,7858425:2464678,582746,14155 -g1,8648:6630773,7858425 -g1,8648:9095451,7858425 -) -g1,8648:11360375,7858425 -k1,8648:32583029,7858425:18895602 -g1,8648:32583029,7858425 -) -(1,8651:6630773,9093129:25952256,513147,134348 -k1,8650:10883142,9093129:233046 -k1,8650:12505551,9093129:233046 -k1,8650:15000244,9093129:233046 -k1,8650:15892582,9093129:233046 -k1,8650:18910253,9093129:233046 -k1,8650:23990341,9093129:233045 -k1,8650:26510594,9093129:233046 -k1,8650:28321092,9093129:233046 -k1,8650:29941535,9093129:233046 -k1,8650:31773659,9093129:233046 -k1,8650:32583029,9093129:0 -) -(1,8651:6630773,9934617:25952256,505283,134348 -k1,8650:7862457,9934617:212599 -k1,8650:9728528,9934617:212598 -k1,8650:14111183,9934617:212599 -k1,8650:16115536,9934617:212599 -k1,8650:20347458,9934617:212599 -k1,8650:22123090,9934617:212598 -k1,8650:24033727,9934617:212599 -k1,8650:27423511,9934617:212599 -k1,8650:28445479,9934617:212598 -k1,8650:30889579,9934617:212599 -k1,8651:32583029,9934617:0 -) -(1,8651:6630773,10776105:25952256,505283,126483 -k1,8650:9539857,10776105:219486 -k1,8650:11377427,10776105:219486 -k1,8650:12209674,10776105:219485 -k1,8650:13880782,10776105:219486 -k1,8650:15525676,10776105:219486 -k1,8650:17607040,10776105:219486 -k1,8650:18818086,10776105:219486 -k1,8650:20905348,10776105:219486 -k1,8650:23909458,10776105:219485 -k1,8650:28975987,10776105:219486 -k1,8650:30884991,10776105:219486 -k1,8650:32583029,10776105:0 -) -(1,8651:6630773,11617593:25952256,513147,126483 -k1,8650:7893703,11617593:196659 -k1,8650:11441217,11617593:196658 -k1,8650:13018064,11617593:196659 -k1,8650:14206282,11617593:196658 -k1,8650:16270717,11617593:196659 -k1,8650:17892783,11617593:196658 -k1,8650:20107951,11617593:196659 -k1,8650:21737226,11617593:196658 -k1,8650:22348725,11617593:196656 -k1,8650:25305759,11617593:196658 -k1,8650:27696563,11617593:196659 -k1,8650:30419634,11617593:196658 -k1,8650:31563944,11617593:196659 -k1,8650:32583029,11617593:0 -) -(1,8651:6630773,12459081:25952256,513147,126483 -k1,8650:9427253,12459081:241887 -k1,8650:10328433,12459081:241888 -k1,8650:11995728,12459081:241887 -k1,8650:14082453,12459081:241887 -k1,8650:15887375,12459081:241888 -k1,8650:17818780,12459081:241887 -k1,8650:20845293,12459081:241888 -k1,8650:25760552,12459081:241887 -k1,8650:27106721,12459081:241887 -k1,8650:28096375,12459081:241888 -k1,8650:31189078,12459081:241887 -k1,8650:32583029,12459081:0 -) -(1,8651:6630773,13300569:25952256,513147,102891 -g1,8650:8947470,13300569 -g1,8650:10959425,13300569 -g1,8650:13650333,13300569 -g1,8650:18117922,13300569 -g1,8650:20808830,13300569 -g1,8650:22199504,13300569 -g1,8650:24959880,13300569 -k1,8651:32583029,13300569:5131470 -g1,8651:32583029,13300569 -) -(1,8653:6630773,14142057:25952256,505283,126483 -h1,8652:6630773,14142057:983040,0,0 -k1,8652:9431913,14142057:215089 -k1,8652:11491840,14142057:215089 -k1,8652:13096292,14142057:215089 -k1,8652:14302942,14142057:215090 -k1,8652:15907394,14142057:215089 -k1,8652:18966746,14142057:215089 -k1,8652:19797873,14142057:215089 -k1,8652:21506528,14142057:215089 -k1,8652:22077477,14142057:215089 -k1,8652:23530541,14142057:215089 -k1,8652:25030136,14142057:215089 -k1,8652:26900010,14142057:215090 -k1,8652:27646596,14142057:215089 -k1,8652:29237286,14142057:215089 -k1,8652:30609085,14142057:215089 -k1,8653:32583029,14142057:0 -) -(1,8653:6630773,14983545:25952256,513147,126483 -k1,8652:9049434,14983545:264493 -k1,8652:11957648,14983545:264492 -k1,8652:12881433,14983545:264493 -k1,8652:15817172,14983545:264492 -k1,8652:19096976,14983545:264493 -k1,8652:22145438,14983545:264493 -k1,8652:23022692,14983545:264492 -k1,8652:24738807,14983545:264493 -k1,8652:26691506,14983545:264492 -k1,8652:27572037,14983545:264493 -k1,8652:29435607,14983545:264492 -k1,8652:31080944,14983545:264493 -k1,8652:32583029,14983545:0 -) -(1,8653:6630773,15825033:25952256,513147,126483 -k1,8652:9099077,15825033:189617 -k1,8652:12691323,15825033:189617 -k1,8652:14256542,15825033:189618 -k1,8652:15465244,15825033:189617 -k1,8652:17256561,15825033:189617 -k1,8652:19067539,15825033:189617 -k1,8652:21632182,15825033:189618 -k1,8652:22481091,15825033:189617 -k1,8652:26153947,15825033:189617 -k1,8652:29071828,15825033:189617 -k1,8652:29889281,15825033:189618 -k1,8652:31680598,15825033:189617 -k1,8653:32583029,15825033:0 -) -(1,8653:6630773,16666521:25952256,513147,134348 -k1,8652:7847449,16666521:208732 -k1,8652:9481589,16666521:208732 -k1,8652:11375907,16666521:208732 -k1,8652:12576199,16666521:208732 -k1,8652:13444223,16666521:208732 -k1,8652:16251458,16666521:208732 -k1,8652:19207458,16666521:208731 -k1,8652:20607635,16666521:208732 -k1,8652:22581252,16666521:208732 -k1,8652:25803985,16666521:208732 -k1,8652:27898188,16666521:208732 -k1,8652:31193666,16666521:208732 -k1,8652:32583029,16666521:0 -) -(1,8653:6630773,17508009:25952256,513147,134348 -k1,8652:9656026,17508009:223589 -k1,8652:11071060,17508009:223589 -k1,8652:13815818,17508009:223588 -k1,8652:14454226,17508009:223565 -k1,8652:15744085,17508009:223588 -k1,8652:17343275,17508009:223589 -k1,8652:20327240,17508009:223589 -k1,8652:23335454,17508009:223589 -k1,8652:24506694,17508009:223589 -k1,8652:25749367,17508009:223588 -k1,8652:28527549,17508009:223589 -k1,8652:29942583,17508009:223589 -k1,8653:32583029,17508009:0 -) -(1,8653:6630773,18349497:25952256,513147,134348 -k1,8652:8708391,18349497:249164 -k1,8652:9616846,18349497:249163 -k1,8652:13522919,18349497:249164 -k1,8652:14844252,18349497:249164 -k1,8652:16379231,18349497:249163 -k1,8652:16984255,18349497:249164 -k1,8652:20786781,18349497:249164 -k1,8652:22591113,18349497:249163 -k1,8652:23787928,18349497:249164 -k1,8652:25545731,18349497:249164 -k1,8652:28316064,18349497:249163 -(1,8652:28316064,18349497:0,452978,115847 -r1,8652:29729465,18349497:1413401,568825,115847 -k1,8652:28316064,18349497:-1413401 -) -(1,8652:28316064,18349497:1413401,452978,115847 -k1,8652:28316064,18349497:3277 -h1,8652:29726188,18349497:0,411205,112570 -) -k1,8652:30152299,18349497:249164 -k1,8652:32583029,18349497:0 -) -(1,8653:6630773,19190985:25952256,505283,134348 -k1,8652:8299655,19190985:243474 -k1,8652:10228715,19190985:243474 -k1,8652:12153843,19190985:243474 -k1,8652:14047515,19190985:243475 -k1,8652:17006146,19190985:243474 -k1,8652:21495042,19190985:243474 -k1,8652:22094376,19190985:243474 -(1,8652:22094376,19190985:0,414482,115847 -r1,8652:22804354,19190985:709978,530329,115847 -k1,8652:22094376,19190985:-709978 -) -(1,8652:22094376,19190985:709978,414482,115847 -k1,8652:22094376,19190985:3277 -h1,8652:22801077,19190985:0,411205,112570 -) -k1,8652:23047828,19190985:243474 -k1,8652:25250828,19190985:243474 -k1,8652:26987213,19190985:243475 -k1,8652:28296958,19190985:243474 -k1,8652:30070698,19190985:243474 -k1,8652:30965600,19190985:243474 -k1,8652:32583029,19190985:0 -) -(1,8653:6630773,20032473:25952256,513147,102891 -k1,8652:8291102,20032473:234921 -k1,8652:10536669,20032473:234922 -k1,8652:11719241,20032473:234921 -k1,8652:13405785,20032473:234922 -k1,8652:17382156,20032473:234921 -k1,8652:18689246,20032473:234921 -k1,8652:21251351,20032473:234922 -k1,8652:21842132,20032473:234921 -k1,8652:26064919,20032473:234921 -k1,8652:26959133,20032473:234922 -k1,8652:28366493,20032473:234921 -k1,8652:29260707,20032473:234922 -k1,8652:30983951,20032473:234921 -k1,8652:32583029,20032473:0 -) -(1,8653:6630773,20873961:25952256,505283,126483 -g1,8652:8185287,20873961 -g1,8652:9653293,20873961 -g1,8652:11043967,20873961 -g1,8652:12426121,20873961 -k1,8653:32583029,20873961:18557830 -g1,8653:32583029,20873961 -) -(1,8655:6630773,21715449:25952256,513147,134348 -h1,8654:6630773,21715449:983040,0,0 -k1,8654:8816680,21715449:249318 -k1,8654:10554320,21715449:249317 -k1,8654:11565166,21715449:249318 -k1,8654:14386772,21715449:249318 -k1,8654:14991950,21715449:249318 -k1,8654:16666675,21715449:249317 -k1,8654:18760831,21715449:249318 -k1,8654:20577770,21715449:249318 -k1,8654:21182947,21715449:249317 -k1,8654:24052394,21715449:249318 -k1,8654:26453259,21715449:249318 -k1,8654:27462795,21715449:249318 -k1,8654:29216163,21715449:249317 -k1,8654:30635954,21715449:249318 -k1,8654:32583029,21715449:0 -) -(1,8655:6630773,22556937:25952256,505283,134348 -k1,8654:9356784,22556937:160932 -k1,8654:10802223,22556937:160933 -k1,8654:12133628,22556937:160932 -k1,8654:13824826,22556937:160932 -k1,8654:14637187,22556937:160933 -k1,8654:15890604,22556937:160932 -k1,8654:16407396,22556937:160932 -k1,8654:20275044,22556937:160932 -k1,8654:22303753,22556937:160933 -(1,8654:22303753,22556937:0,452978,115847 -r1,8654:23717154,22556937:1413401,568825,115847 -k1,8654:22303753,22556937:-1413401 -) -(1,8654:22303753,22556937:1413401,452978,115847 -k1,8654:22303753,22556937:3277 -h1,8654:23713877,22556937:0,411205,112570 -) -k1,8654:23878086,22556937:160932 -k1,8654:24721903,22556937:160932 -k1,8654:25238696,22556937:160933 -k1,8654:28876313,22556937:160932 -k1,8654:32583029,22556937:0 -) -(1,8655:6630773,23398425:25952256,505283,134348 -k1,8654:8684967,23398425:186418 -(1,8654:8684967,23398425:0,452978,115847 -r1,8654:11153504,23398425:2468537,568825,115847 -k1,8654:8684967,23398425:-2468537 -) -(1,8654:8684967,23398425:2468537,452978,115847 -k1,8654:8684967,23398425:3277 -h1,8654:11150227,23398425:0,411205,112570 -) -k1,8654:11339921,23398425:186417 -k1,8654:12717784,23398425:186418 -k1,8654:14188707,23398425:186417 -k1,8654:15545598,23398425:186418 -k1,8654:16836297,23398425:186417 -k1,8654:18409457,23398425:186418 -k1,8654:19431459,23398425:186418 -k1,8654:20636961,23398425:186417 -k1,8654:24226008,23398425:186418 -k1,8654:25792613,23398425:186417 -k1,8654:28027031,23398425:186418 -k1,8654:28974976,23398425:186417 -k1,8654:31563944,23398425:186418 -k1,8654:32583029,23398425:0 -) -(1,8655:6630773,24239913:25952256,505283,134348 -g1,8654:11453567,24239913 -g1,8654:13040849,24239913 -k1,8655:32583030,24239913:17540056 -g1,8655:32583030,24239913 -) -(1,8657:6630773,25081401:25952256,513147,126483 -h1,8656:6630773,25081401:983040,0,0 -g1,8656:8855064,25081401 -g1,8656:11715710,25081401 -g1,8656:12862590,25081401 -g1,8656:13417679,25081401 -g1,8656:15042316,25081401 -g1,8656:17086383,25081401 -g1,8656:17944904,25081401 -g1,8656:20811448,25081401 -g1,8656:23021322,25081401 -g1,8656:24088903,25081401 -g1,8656:26056949,25081401 -k1,8657:32583029,25081401:5259924 -g1,8657:32583029,25081401 -) -v1,8659:6630773,26271867:0,393216,0 -(1,8673:6630773,30006650:25952256,4127999,196608 -g1,8673:6630773,30006650 -g1,8673:6630773,30006650 -g1,8673:6434165,30006650 -(1,8673:6434165,30006650:0,4127999,196608 -r1,8673:32779637,30006650:26345472,4324607,196608 -k1,8673:6434165,30006650:-26345472 -) -(1,8673:6434165,30006650:26345472,4127999,196608 -[1,8673:6630773,30006650:25952256,3931391,0 -(1,8661:6630773,26479485:25952256,404226,101187 -(1,8660:6630773,26479485:0,0,0 -g1,8660:6630773,26479485 -g1,8660:6630773,26479485 -g1,8660:6303093,26479485 -(1,8660:6303093,26479485:0,0,0 -) -g1,8660:6630773,26479485 -) -g1,8661:8527647,26479485 -g1,8661:9476085,26479485 -g1,8661:12321397,26479485 -g1,8661:14218271,26479485 -g1,8661:14850563,26479485 -g1,8661:16747438,26479485 -g1,8661:18960458,26479485 -g1,8661:19592750,26479485 -h1,8661:21173479,26479485:0,0,0 -k1,8661:32583029,26479485:11409550 -g1,8661:32583029,26479485 -) -(1,8662:6630773,27145663:25952256,404226,101187 -h1,8662:6630773,27145663:0,0,0 -k1,8662:6630773,27145663:0 -h1,8662:10424521,27145663:0,0,0 -k1,8662:32583029,27145663:22158508 -g1,8662:32583029,27145663 -) -(1,8666:6630773,27877377:25952256,404226,76021 -(1,8664:6630773,27877377:0,0,0 -g1,8664:6630773,27877377 -g1,8664:6630773,27877377 -g1,8664:6303093,27877377 -(1,8664:6303093,27877377:0,0,0 -) -g1,8664:6630773,27877377 -) -g1,8666:7579210,27877377 -g1,8666:8843793,27877377 -h1,8666:10108376,27877377:0,0,0 -k1,8666:32583028,27877377:22474652 -g1,8666:32583028,27877377 -) -(1,8668:6630773,29198915:25952256,404226,101187 -(1,8667:6630773,29198915:0,0,0 -g1,8667:6630773,29198915 -g1,8667:6630773,29198915 -g1,8667:6303093,29198915 -(1,8667:6303093,29198915:0,0,0 -) -g1,8667:6630773,29198915 -) -k1,8668:6630773,29198915:0 -h1,8668:9792230,29198915:0,0,0 -k1,8668:32583030,29198915:22790800 -g1,8668:32583030,29198915 -) -(1,8672:6630773,29930629:25952256,410518,76021 -(1,8670:6630773,29930629:0,0,0 -g1,8670:6630773,29930629 -g1,8670:6630773,29930629 -g1,8670:6303093,29930629 -(1,8670:6303093,29930629:0,0,0 -) -g1,8670:6630773,29930629 -) -g1,8672:7579210,29930629 -g1,8672:7895356,29930629 -g1,8672:11689105,29930629 -g1,8672:13902125,29930629 -g1,8672:15482854,29930629 -g1,8672:17063583,29930629 -g1,8672:18012020,29930629 -g1,8672:19908894,29930629 -g1,8672:20541186,29930629 -g1,8672:21173478,29930629 -g1,8672:21805770,29930629 -g1,8672:22438062,29930629 -g1,8672:23070354,29930629 -g1,8672:23702646,29930629 -g1,8672:24334938,29930629 -g1,8672:24967230,29930629 -g1,8672:25599522,29930629 -h1,8672:26231813,29930629:0,0,0 -k1,8672:32583029,29930629:6351216 -g1,8672:32583029,29930629 -) -] -) -g1,8673:32583029,30006650 -g1,8673:6630773,30006650 -g1,8673:6630773,30006650 -g1,8673:32583029,30006650 -g1,8673:32583029,30006650 -) -h1,8673:6630773,30203258:0,0,0 -(1,8677:6630773,31569034:25952256,513147,115847 -h1,8676:6630773,31569034:983040,0,0 -k1,8676:8801621,31569034:234259 -k1,8676:10420000,31569034:234259 -k1,8676:11746744,31569034:234259 -k1,8676:13000088,31569034:234259 -k1,8676:14623710,31569034:234259 -k1,8676:15792512,31569034:234259 -(1,8676:15792512,31569034:0,414482,115847 -r1,8676:18261049,31569034:2468537,530329,115847 -k1,8676:15792512,31569034:-2468537 -) -(1,8676:15792512,31569034:2468537,414482,115847 -k1,8676:15792512,31569034:3277 -h1,8676:18257772,31569034:0,411205,112570 -) -k1,8676:18495308,31569034:234259 -k1,8676:20123517,31569034:234258 -k1,8676:21747139,31569034:234259 -k1,8676:22790768,31569034:234259 -k1,8676:24044112,31569034:234259 -k1,8676:26764152,31569034:234259 -k1,8676:27657703,31569034:234259 -k1,8676:31202841,31569034:234259 -k1,8677:32583029,31569034:0 -) -(1,8677:6630773,32410522:25952256,505283,7863 -g1,8676:8600129,32410522 -g1,8676:9990803,32410522 -g1,8676:12948442,32410522 -g1,8676:13763709,32410522 -k1,8677:32583030,32410522:18230808 -g1,8677:32583030,32410522 -) -v1,8679:6630773,33600988:0,393216,0 -(1,8692:6630773,36669593:25952256,3461821,196608 -g1,8692:6630773,36669593 -g1,8692:6630773,36669593 -g1,8692:6434165,36669593 -(1,8692:6434165,36669593:0,3461821,196608 -r1,8692:32779637,36669593:26345472,3658429,196608 -k1,8692:6434165,36669593:-26345472 -) -(1,8692:6434165,36669593:26345472,3461821,196608 -[1,8692:6630773,36669593:25952256,3265213,0 -(1,8681:6630773,33808606:25952256,404226,76021 -(1,8680:6630773,33808606:0,0,0 -g1,8680:6630773,33808606 -g1,8680:6630773,33808606 -g1,8680:6303093,33808606 -(1,8680:6303093,33808606:0,0,0 -) -g1,8680:6630773,33808606 -) -k1,8681:6630773,33808606:0 -h1,8681:11056812,33808606:0,0,0 -k1,8681:32583028,33808606:21526216 -g1,8681:32583028,33808606 -) -(1,8685:6630773,34540320:25952256,404226,76021 -(1,8683:6630773,34540320:0,0,0 -g1,8683:6630773,34540320 -g1,8683:6630773,34540320 -g1,8683:6303093,34540320 -(1,8683:6303093,34540320:0,0,0 -) -g1,8683:6630773,34540320 -) -g1,8685:7579210,34540320 -g1,8685:8843793,34540320 -h1,8685:10108376,34540320:0,0,0 -k1,8685:32583028,34540320:22474652 -g1,8685:32583028,34540320 -) -(1,8687:6630773,35861858:25952256,404226,76021 -(1,8686:6630773,35861858:0,0,0 -g1,8686:6630773,35861858 -g1,8686:6630773,35861858 -g1,8686:6303093,35861858 -(1,8686:6303093,35861858:0,0,0 -) -g1,8686:6630773,35861858 -) -k1,8687:6630773,35861858:0 -h1,8687:11056812,35861858:0,0,0 -k1,8687:32583028,35861858:21526216 -g1,8687:32583028,35861858 -) -(1,8691:6630773,36593572:25952256,404226,76021 -(1,8689:6630773,36593572:0,0,0 -g1,8689:6630773,36593572 -g1,8689:6630773,36593572 -g1,8689:6303093,36593572 -(1,8689:6303093,36593572:0,0,0 -) -g1,8689:6630773,36593572 -) -g1,8691:7579210,36593572 -g1,8691:8843793,36593572 -h1,8691:10108376,36593572:0,0,0 -k1,8691:32583028,36593572:22474652 -g1,8691:32583028,36593572 -) -] -) -g1,8692:32583029,36669593 -g1,8692:6630773,36669593 -g1,8692:6630773,36669593 -g1,8692:32583029,36669593 -g1,8692:32583029,36669593 -) -h1,8692:6630773,36866201:0,0,0 -(1,8698:6630773,38231977:25952256,505283,134348 -h1,8697:6630773,38231977:983040,0,0 -g1,8697:9416053,38231977 -g1,8697:11460120,38231977 -(1,8697:11460120,38231977:0,414482,115847 -r1,8697:13928657,38231977:2468537,530329,115847 -k1,8697:11460120,38231977:-2468537 -) -(1,8697:11460120,38231977:2468537,414482,115847 -k1,8697:11460120,38231977:3277 -h1,8697:13925380,38231977:0,411205,112570 -) -g1,8697:14127886,38231977 -g1,8697:14858612,38231977 -g1,8697:18489961,38231977 -g1,8697:19450718,38231977 -g1,8697:20669032,38231977 -g1,8697:24129988,38231977 -k1,8698:32583029,38231977:6551186 -g1,8698:32583029,38231977 -) -v1,8700:6630773,39422443:0,393216,0 -(1,8704:6630773,39731248:25952256,702021,196608 -g1,8704:6630773,39731248 -g1,8704:6630773,39731248 -g1,8704:6434165,39731248 -(1,8704:6434165,39731248:0,702021,196608 -r1,8704:32779637,39731248:26345472,898629,196608 -k1,8704:6434165,39731248:-26345472 -) -(1,8704:6434165,39731248:26345472,702021,196608 -[1,8704:6630773,39731248:25952256,505413,0 -(1,8702:6630773,39630061:25952256,404226,101187 -(1,8701:6630773,39630061:0,0,0 -g1,8701:6630773,39630061 -g1,8701:6630773,39630061 -g1,8701:6303093,39630061 -(1,8701:6303093,39630061:0,0,0 +k1,8719:3078556,49800853:-34777008 +) +] +g1,8719:6630773,4812305 +g1,8719:6630773,4812305 +g1,8719:8412041,4812305 +g1,8719:10364358,4812305 +k1,8719:31387652,4812305:21023294 +) +) +] +[1,8719:6630773,45706769:25952256,40108032,0 +(1,8719:6630773,45706769:25952256,40108032,0 +(1,8719:6630773,45706769:0,0,0 +g1,8719:6630773,45706769 +) +[1,8719:6630773,45706769:25952256,40108032,0 +(1,8653:6630773,6254097:25952256,32768,229376 +(1,8653:6630773,6254097:0,32768,229376 +(1,8653:6630773,6254097:5505024,32768,229376 +r1,8653:12135797,6254097:5505024,262144,229376 +) +k1,8653:6630773,6254097:-5505024 +) +(1,8653:6630773,6254097:25952256,32768,0 +r1,8653:32583029,6254097:25952256,32768,0 +) +) +(1,8653:6630773,7858425:25952256,606339,14155 +(1,8653:6630773,7858425:2464678,582746,14155 +g1,8653:6630773,7858425 +g1,8653:9095451,7858425 +) +g1,8653:11360375,7858425 +k1,8653:32583029,7858425:18895602 +g1,8653:32583029,7858425 +) +(1,8656:6630773,9093129:25952256,513147,134348 +k1,8655:10883142,9093129:233046 +k1,8655:12505551,9093129:233046 +k1,8655:15000244,9093129:233046 +k1,8655:15892582,9093129:233046 +k1,8655:18910253,9093129:233046 +k1,8655:23990341,9093129:233045 +k1,8655:26510594,9093129:233046 +k1,8655:28321092,9093129:233046 +k1,8655:29941535,9093129:233046 +k1,8655:31773659,9093129:233046 +k1,8655:32583029,9093129:0 +) +(1,8656:6630773,9934617:25952256,505283,134348 +k1,8655:7833621,9934617:183763 +k1,8655:9670857,9934617:183763 +k1,8655:14024675,9934617:183762 +k1,8655:16000192,9934617:183763 +k1,8655:20203278,9934617:183763 +k1,8655:21950075,9934617:183763 +k1,8655:23831876,9934617:183763 +k1,8655:27192823,9934617:183762 +k1,8655:28185956,9934617:183763 +k1,8655:30601220,9934617:183763 +k1,8656:32583029,9934617:0 +) +(1,8656:6630773,10776105:25952256,505283,126483 +k1,8655:9277712,10776105:245700 +k1,8655:11141497,10776105:245701 +k1,8655:11999959,10776105:245700 +k1,8655:13697281,10776105:245700 +k1,8655:15368389,10776105:245700 +k1,8655:17475968,10776105:245701 +k1,8655:18713228,10776105:245700 +k1,8655:20826704,10776105:245700 +k1,8655:23857029,10776105:245700 +k1,8655:28949773,10776105:245701 +k1,8655:30884991,10776105:245700 +k1,8655:32583029,10776105:0 +) +(1,8656:6630773,11617593:25952256,513147,126483 +k1,8655:7893703,11617593:196659 +k1,8655:11441217,11617593:196658 +k1,8655:13018064,11617593:196659 +k1,8655:14206282,11617593:196658 +k1,8655:16270717,11617593:196659 +k1,8655:17892783,11617593:196658 +k1,8655:20107951,11617593:196659 +k1,8655:21737226,11617593:196658 +k1,8655:22348725,11617593:196656 +k1,8655:25305759,11617593:196658 +k1,8655:27696563,11617593:196659 +k1,8655:30419634,11617593:196658 +k1,8655:31563944,11617593:196659 +k1,8655:32583029,11617593:0 +) +(1,8656:6630773,12459081:25952256,513147,126483 +k1,8655:9427253,12459081:241887 +k1,8655:10328433,12459081:241888 +k1,8655:11995728,12459081:241887 +k1,8655:14082453,12459081:241887 +k1,8655:15887375,12459081:241888 +k1,8655:17818780,12459081:241887 +k1,8655:20845293,12459081:241888 +k1,8655:25760552,12459081:241887 +k1,8655:27106721,12459081:241887 +k1,8655:28096375,12459081:241888 +k1,8655:31189078,12459081:241887 +k1,8655:32583029,12459081:0 +) +(1,8656:6630773,13300569:25952256,513147,102891 +g1,8655:8947470,13300569 +g1,8655:10959425,13300569 +g1,8655:13650333,13300569 +g1,8655:18117922,13300569 +g1,8655:20808830,13300569 +g1,8655:22199504,13300569 +g1,8655:24959880,13300569 +k1,8656:32583029,13300569:5131470 +g1,8656:32583029,13300569 +) +(1,8658:6630773,14142057:25952256,505283,126483 +h1,8657:6630773,14142057:983040,0,0 +k1,8657:9384378,14142057:167554 +k1,8657:11396769,14142057:167553 +k1,8657:12953686,14142057:167554 +k1,8657:14112800,14142057:167554 +k1,8657:15669716,14142057:167553 +k1,8657:18681533,14142057:167554 +k1,8657:19465125,14142057:167554 +k1,8657:21126244,14142057:167553 +k1,8657:21649658,14142057:167554 +k1,8657:23055187,14142057:167554 +k1,8657:24507246,14142057:167553 +k1,8657:26329584,14142057:167554 +k1,8657:27028635,14142057:167554 +k1,8657:28571789,14142057:167553 +k1,8657:29896053,14142057:167554 +k1,8658:32583029,14142057:0 +) +(1,8658:6630773,14983545:25952256,513147,126483 +k1,8657:8276735,14983545:204825 +k1,8657:11125283,14983545:204826 +k1,8657:11989400,14983545:204825 +k1,8657:14865472,14983545:204825 +k1,8657:18085609,14983545:204826 +k1,8657:21074403,14983545:204825 +k1,8657:21891990,14983545:204825 +k1,8657:23548437,14983545:204825 +k1,8657:25441470,14983545:204826 +k1,8657:26262333,14983545:204825 +k1,8657:28066236,14983545:204825 +k1,8657:29651906,14983545:204826 +k1,8657:31358816,14983545:204825 +k1,8658:32583029,14983545:0 +) +(1,8658:6630773,15825033:25952256,513147,126483 +k1,8657:8105879,15825033:207640 +k1,8657:11716148,15825033:207640 +k1,8657:13299388,15825033:207639 +k1,8657:14526113,15825033:207640 +k1,8657:16335453,15825033:207640 +k1,8657:18164454,15825033:207640 +k1,8657:20747118,15825033:207639 +k1,8657:21614050,15825033:207640 +k1,8657:25304929,15825033:207640 +k1,8657:28240833,15825033:207640 +k1,8657:29076307,15825033:207639 +k1,8657:30885647,15825033:207640 +k1,8657:32583029,15825033:0 +) +(1,8658:6630773,16666521:25952256,513147,134348 +k1,8657:8232363,16666521:176182 +k1,8657:10094132,16666521:176183 +k1,8657:11261874,16666521:176182 +k1,8657:12097349,16666521:176183 +k1,8657:14872034,16666521:176182 +k1,8657:17795485,16666521:176182 +k1,8657:19163113,16666521:176183 +k1,8657:21104180,16666521:176182 +k1,8657:24294364,16666521:176183 +k1,8657:26356017,16666521:176182 +k1,8657:29618946,16666521:176183 +k1,8657:31184491,16666521:176182 +k1,8658:32583029,16666521:0 +) +(1,8658:6630773,17508009:25952256,513147,134348 +k1,8657:8434652,17508009:187761 +k1,8657:9813859,17508009:187762 +k1,8657:12522790,17508009:187761 +k1,8657:13125383,17508009:187750 +k1,8657:14379415,17508009:187761 +k1,8657:15942778,17508009:187762 +k1,8657:18890915,17508009:187761 +k1,8657:21863302,17508009:187762 +k1,8657:22998714,17508009:187761 +k1,8657:24205560,17508009:187761 +k1,8657:26947915,17508009:187762 +k1,8657:28327121,17508009:187761 +k1,8657:32583029,17508009:0 +) +(1,8658:6630773,18349497:25952256,513147,134348 +k1,8657:7572816,18349497:282751 +k1,8657:11512476,18349497:282751 +k1,8657:12867396,18349497:282751 +k1,8657:14435962,18349497:282750 +k1,8657:15074573,18349497:282751 +k1,8657:18910686,18349497:282751 +k1,8657:20748606,18349497:282751 +k1,8657:21979008,18349497:282751 +k1,8657:23770398,18349497:282751 +k1,8657:26574318,18349497:282750 +(1,8657:26574318,18349497:0,452978,115847 +r1,8657:27987719,18349497:1413401,568825,115847 +k1,8657:26574318,18349497:-1413401 +) +(1,8657:26574318,18349497:1413401,452978,115847 +k1,8657:26574318,18349497:3277 +h1,8657:27984442,18349497:0,411205,112570 +) +k1,8657:28444140,18349497:282751 +k1,8657:31157621,18349497:282751 +k1,8657:32583029,18349497:0 +) +(1,8658:6630773,19190985:25952256,505283,134348 +k1,8657:8559833,19190985:243474 +k1,8657:10484961,19190985:243474 +k1,8657:12378632,19190985:243474 +k1,8657:15337264,19190985:243475 +k1,8657:19826160,19190985:243474 +k1,8657:20425494,19190985:243474 +(1,8657:20425494,19190985:0,414482,115847 +r1,8657:21135472,19190985:709978,530329,115847 +k1,8657:20425494,19190985:-709978 +) +(1,8657:20425494,19190985:709978,414482,115847 +k1,8657:20425494,19190985:3277 +h1,8657:21132195,19190985:0,411205,112570 +) +k1,8657:21378946,19190985:243474 +k1,8657:23581946,19190985:243474 +k1,8657:25318330,19190985:243474 +k1,8657:26628076,19190985:243475 +k1,8657:28401816,19190985:243474 +k1,8657:29296718,19190985:243474 +k1,8657:31157621,19190985:243474 +k1,8657:32583029,19190985:0 +) +(1,8658:6630773,20032473:25952256,513147,126483 +k1,8657:8881733,20032473:240315 +k1,8657:10069700,20032473:240316 +k1,8657:11761637,20032473:240315 +k1,8657:15743403,20032473:240316 +k1,8657:17055887,20032473:240315 +k1,8657:19623386,20032473:240316 +k1,8657:20219561,20032473:240315 +k1,8657:24447743,20032473:240316 +k1,8657:25347350,20032473:240315 +k1,8657:26760105,20032473:240316 +k1,8657:27659712,20032473:240315 +k1,8657:29388351,20032473:240316 +k1,8657:31227744,20032473:240315 +k1,8657:32583029,20032473:0 +) +(1,8658:6630773,20873961:25952256,505283,7863 +g1,8657:8098779,20873961 +g1,8657:9489453,20873961 +g1,8657:10871607,20873961 +k1,8658:32583029,20873961:20112344 +g1,8658:32583029,20873961 +) +(1,8660:6630773,21715449:25952256,513147,134348 +h1,8659:6630773,21715449:983040,0,0 +k1,8659:8816680,21715449:249318 +k1,8659:10554320,21715449:249317 +k1,8659:11565166,21715449:249318 +k1,8659:14386772,21715449:249318 +k1,8659:14991950,21715449:249318 +k1,8659:16666675,21715449:249317 +k1,8659:18760831,21715449:249318 +k1,8659:20577770,21715449:249318 +k1,8659:21182947,21715449:249317 +k1,8659:24052394,21715449:249318 +k1,8659:26453259,21715449:249318 +k1,8659:27462795,21715449:249318 +k1,8659:29216163,21715449:249317 +k1,8659:30635954,21715449:249318 +k1,8659:32583029,21715449:0 +) +(1,8660:6630773,22556937:25952256,505283,134348 +k1,8659:9356784,22556937:160932 +k1,8659:10802223,22556937:160933 +k1,8659:12133628,22556937:160932 +k1,8659:13824826,22556937:160932 +k1,8659:14637187,22556937:160933 +k1,8659:15890604,22556937:160932 +k1,8659:16407396,22556937:160932 +k1,8659:20275044,22556937:160932 +k1,8659:22303753,22556937:160933 +(1,8659:22303753,22556937:0,452978,115847 +r1,8659:23717154,22556937:1413401,568825,115847 +k1,8659:22303753,22556937:-1413401 +) +(1,8659:22303753,22556937:1413401,452978,115847 +k1,8659:22303753,22556937:3277 +h1,8659:23713877,22556937:0,411205,112570 +) +k1,8659:23878086,22556937:160932 +k1,8659:24721903,22556937:160932 +k1,8659:25238696,22556937:160933 +k1,8659:28876313,22556937:160932 +k1,8659:32583029,22556937:0 +) +(1,8660:6630773,23398425:25952256,505283,134348 +k1,8659:8684967,23398425:186418 +(1,8659:8684967,23398425:0,452978,115847 +r1,8659:11153504,23398425:2468537,568825,115847 +k1,8659:8684967,23398425:-2468537 +) +(1,8659:8684967,23398425:2468537,452978,115847 +k1,8659:8684967,23398425:3277 +h1,8659:11150227,23398425:0,411205,112570 +) +k1,8659:11339921,23398425:186417 +k1,8659:12717784,23398425:186418 +k1,8659:14188707,23398425:186417 +k1,8659:15545598,23398425:186418 +k1,8659:16836297,23398425:186417 +k1,8659:18409457,23398425:186418 +k1,8659:19431459,23398425:186418 +k1,8659:20636961,23398425:186417 +k1,8659:24226008,23398425:186418 +k1,8659:25792613,23398425:186417 +k1,8659:28027031,23398425:186418 +k1,8659:28974976,23398425:186417 +k1,8659:31563944,23398425:186418 +k1,8659:32583029,23398425:0 +) +(1,8660:6630773,24239913:25952256,505283,134348 +g1,8659:11453567,24239913 +g1,8659:13040849,24239913 +k1,8660:32583030,24239913:17540056 +g1,8660:32583030,24239913 +) +(1,8662:6630773,25081401:25952256,513147,126483 +h1,8661:6630773,25081401:983040,0,0 +g1,8661:8855064,25081401 +g1,8661:11715710,25081401 +g1,8661:12862590,25081401 +g1,8661:13417679,25081401 +g1,8661:15042316,25081401 +g1,8661:17086383,25081401 +g1,8661:17944904,25081401 +g1,8661:20811448,25081401 +g1,8661:23021322,25081401 +g1,8661:24088903,25081401 +g1,8661:26056949,25081401 +k1,8662:32583029,25081401:5259924 +g1,8662:32583029,25081401 +) +v1,8664:6630773,26271867:0,393216,0 +(1,8678:6630773,30006650:25952256,4127999,196608 +g1,8678:6630773,30006650 +g1,8678:6630773,30006650 +g1,8678:6434165,30006650 +(1,8678:6434165,30006650:0,4127999,196608 +r1,8678:32779637,30006650:26345472,4324607,196608 +k1,8678:6434165,30006650:-26345472 +) +(1,8678:6434165,30006650:26345472,4127999,196608 +[1,8678:6630773,30006650:25952256,3931391,0 +(1,8666:6630773,26479485:25952256,404226,101187 +(1,8665:6630773,26479485:0,0,0 +g1,8665:6630773,26479485 +g1,8665:6630773,26479485 +g1,8665:6303093,26479485 +(1,8665:6303093,26479485:0,0,0 +) +g1,8665:6630773,26479485 +) +g1,8666:8527647,26479485 +g1,8666:9476085,26479485 +g1,8666:12321397,26479485 +g1,8666:14218271,26479485 +g1,8666:14850563,26479485 +g1,8666:16747438,26479485 +g1,8666:18960458,26479485 +g1,8666:19592750,26479485 +h1,8666:21173479,26479485:0,0,0 +k1,8666:32583029,26479485:11409550 +g1,8666:32583029,26479485 +) +(1,8667:6630773,27145663:25952256,404226,101187 +h1,8667:6630773,27145663:0,0,0 +k1,8667:6630773,27145663:0 +h1,8667:10424521,27145663:0,0,0 +k1,8667:32583029,27145663:22158508 +g1,8667:32583029,27145663 +) +(1,8671:6630773,27877377:25952256,404226,76021 +(1,8669:6630773,27877377:0,0,0 +g1,8669:6630773,27877377 +g1,8669:6630773,27877377 +g1,8669:6303093,27877377 +(1,8669:6303093,27877377:0,0,0 +) +g1,8669:6630773,27877377 +) +g1,8671:7579210,27877377 +g1,8671:8843793,27877377 +h1,8671:10108376,27877377:0,0,0 +k1,8671:32583028,27877377:22474652 +g1,8671:32583028,27877377 +) +(1,8673:6630773,29198915:25952256,404226,101187 +(1,8672:6630773,29198915:0,0,0 +g1,8672:6630773,29198915 +g1,8672:6630773,29198915 +g1,8672:6303093,29198915 +(1,8672:6303093,29198915:0,0,0 +) +g1,8672:6630773,29198915 +) +k1,8673:6630773,29198915:0 +h1,8673:9792230,29198915:0,0,0 +k1,8673:32583030,29198915:22790800 +g1,8673:32583030,29198915 +) +(1,8677:6630773,29930629:25952256,410518,76021 +(1,8675:6630773,29930629:0,0,0 +g1,8675:6630773,29930629 +g1,8675:6630773,29930629 +g1,8675:6303093,29930629 +(1,8675:6303093,29930629:0,0,0 +) +g1,8675:6630773,29930629 +) +g1,8677:7579210,29930629 +g1,8677:7895356,29930629 +g1,8677:11689105,29930629 +g1,8677:13902125,29930629 +g1,8677:15482854,29930629 +g1,8677:17063583,29930629 +g1,8677:18012020,29930629 +g1,8677:19908894,29930629 +g1,8677:20541186,29930629 +g1,8677:21173478,29930629 +g1,8677:21805770,29930629 +g1,8677:22438062,29930629 +g1,8677:23070354,29930629 +g1,8677:23702646,29930629 +g1,8677:24334938,29930629 +g1,8677:24967230,29930629 +g1,8677:25599522,29930629 +h1,8677:26231813,29930629:0,0,0 +k1,8677:32583029,29930629:6351216 +g1,8677:32583029,29930629 +) +] +) +g1,8678:32583029,30006650 +g1,8678:6630773,30006650 +g1,8678:6630773,30006650 +g1,8678:32583029,30006650 +g1,8678:32583029,30006650 +) +h1,8678:6630773,30203258:0,0,0 +(1,8682:6630773,31569034:25952256,513147,115847 +h1,8681:6630773,31569034:983040,0,0 +k1,8681:8801621,31569034:234259 +k1,8681:10420000,31569034:234259 +k1,8681:11746744,31569034:234259 +k1,8681:13000088,31569034:234259 +k1,8681:14623710,31569034:234259 +k1,8681:15792512,31569034:234259 +(1,8681:15792512,31569034:0,414482,115847 +r1,8681:18261049,31569034:2468537,530329,115847 +k1,8681:15792512,31569034:-2468537 +) +(1,8681:15792512,31569034:2468537,414482,115847 +k1,8681:15792512,31569034:3277 +h1,8681:18257772,31569034:0,411205,112570 +) +k1,8681:18495308,31569034:234259 +k1,8681:20123517,31569034:234258 +k1,8681:21747139,31569034:234259 +k1,8681:22790768,31569034:234259 +k1,8681:24044112,31569034:234259 +k1,8681:26764152,31569034:234259 +k1,8681:27657703,31569034:234259 +k1,8681:31202841,31569034:234259 +k1,8682:32583029,31569034:0 +) +(1,8682:6630773,32410522:25952256,505283,7863 +g1,8681:8600129,32410522 +g1,8681:9990803,32410522 +g1,8681:12948442,32410522 +g1,8681:13763709,32410522 +k1,8682:32583030,32410522:18230808 +g1,8682:32583030,32410522 +) +v1,8684:6630773,33600988:0,393216,0 +(1,8697:6630773,36669593:25952256,3461821,196608 +g1,8697:6630773,36669593 +g1,8697:6630773,36669593 +g1,8697:6434165,36669593 +(1,8697:6434165,36669593:0,3461821,196608 +r1,8697:32779637,36669593:26345472,3658429,196608 +k1,8697:6434165,36669593:-26345472 +) +(1,8697:6434165,36669593:26345472,3461821,196608 +[1,8697:6630773,36669593:25952256,3265213,0 +(1,8686:6630773,33808606:25952256,404226,76021 +(1,8685:6630773,33808606:0,0,0 +g1,8685:6630773,33808606 +g1,8685:6630773,33808606 +g1,8685:6303093,33808606 +(1,8685:6303093,33808606:0,0,0 +) +g1,8685:6630773,33808606 +) +k1,8686:6630773,33808606:0 +h1,8686:11056812,33808606:0,0,0 +k1,8686:32583028,33808606:21526216 +g1,8686:32583028,33808606 +) +(1,8690:6630773,34540320:25952256,404226,76021 +(1,8688:6630773,34540320:0,0,0 +g1,8688:6630773,34540320 +g1,8688:6630773,34540320 +g1,8688:6303093,34540320 +(1,8688:6303093,34540320:0,0,0 +) +g1,8688:6630773,34540320 +) +g1,8690:7579210,34540320 +g1,8690:8843793,34540320 +h1,8690:10108376,34540320:0,0,0 +k1,8690:32583028,34540320:22474652 +g1,8690:32583028,34540320 +) +(1,8692:6630773,35861858:25952256,404226,76021 +(1,8691:6630773,35861858:0,0,0 +g1,8691:6630773,35861858 +g1,8691:6630773,35861858 +g1,8691:6303093,35861858 +(1,8691:6303093,35861858:0,0,0 +) +g1,8691:6630773,35861858 +) +k1,8692:6630773,35861858:0 +h1,8692:11056812,35861858:0,0,0 +k1,8692:32583028,35861858:21526216 +g1,8692:32583028,35861858 +) +(1,8696:6630773,36593572:25952256,404226,76021 +(1,8694:6630773,36593572:0,0,0 +g1,8694:6630773,36593572 +g1,8694:6630773,36593572 +g1,8694:6303093,36593572 +(1,8694:6303093,36593572:0,0,0 +) +g1,8694:6630773,36593572 +) +g1,8696:7579210,36593572 +g1,8696:8843793,36593572 +h1,8696:10108376,36593572:0,0,0 +k1,8696:32583028,36593572:22474652 +g1,8696:32583028,36593572 +) +] +) +g1,8697:32583029,36669593 +g1,8697:6630773,36669593 +g1,8697:6630773,36669593 +g1,8697:32583029,36669593 +g1,8697:32583029,36669593 +) +h1,8697:6630773,36866201:0,0,0 +(1,8703:6630773,38231977:25952256,505283,134348 +h1,8702:6630773,38231977:983040,0,0 +g1,8702:9416053,38231977 +g1,8702:11460120,38231977 +(1,8702:11460120,38231977:0,414482,115847 +r1,8702:13928657,38231977:2468537,530329,115847 +k1,8702:11460120,38231977:-2468537 +) +(1,8702:11460120,38231977:2468537,414482,115847 +k1,8702:11460120,38231977:3277 +h1,8702:13925380,38231977:0,411205,112570 +) +g1,8702:14127886,38231977 +g1,8702:14858612,38231977 +g1,8702:18489961,38231977 +g1,8702:19450718,38231977 +g1,8702:20669032,38231977 +g1,8702:24129988,38231977 +k1,8703:32583029,38231977:6551186 +g1,8703:32583029,38231977 +) +v1,8705:6630773,39422443:0,393216,0 +(1,8709:6630773,39731248:25952256,702021,196608 +g1,8709:6630773,39731248 +g1,8709:6630773,39731248 +g1,8709:6434165,39731248 +(1,8709:6434165,39731248:0,702021,196608 +r1,8709:32779637,39731248:26345472,898629,196608 +k1,8709:6434165,39731248:-26345472 +) +(1,8709:6434165,39731248:26345472,702021,196608 +[1,8709:6630773,39731248:25952256,505413,0 +(1,8707:6630773,39630061:25952256,404226,101187 +(1,8706:6630773,39630061:0,0,0 +g1,8706:6630773,39630061 +g1,8706:6630773,39630061 +g1,8706:6303093,39630061 +(1,8706:6303093,39630061:0,0,0 ) -g1,8701:6630773,39630061 -) -k1,8702:6630773,39630061:0 -h1,8702:10740667,39630061:0,0,0 -k1,8702:32583029,39630061:21842362 -g1,8702:32583029,39630061 +g1,8706:6630773,39630061 +) +k1,8707:6630773,39630061:0 +h1,8707:10740667,39630061:0,0,0 +k1,8707:32583029,39630061:21842362 +g1,8707:32583029,39630061 ) ] ) -g1,8704:32583029,39731248 -g1,8704:6630773,39731248 -g1,8704:6630773,39731248 -g1,8704:32583029,39731248 -g1,8704:32583029,39731248 -) -h1,8704:6630773,39927856:0,0,0 +g1,8709:32583029,39731248 +g1,8709:6630773,39731248 +g1,8709:6630773,39731248 +g1,8709:32583029,39731248 +g1,8709:32583029,39731248 +) +h1,8709:6630773,39927856:0,0,0 ] -(1,8714:32583029,45706769:0,0,0 -g1,8714:32583029,45706769 +(1,8719:32583029,45706769:0,0,0 +g1,8719:32583029,45706769 ) ) ] -(1,8714:6630773,47279633:25952256,0,0 -h1,8714:6630773,47279633:25952256,0,0 +(1,8719:6630773,47279633:25952256,0,0 +h1,8719:6630773,47279633:25952256,0,0 ) ] -h1,8714:4262630,4025873:0,0,0 +h1,8719:4262630,4025873:0,0,0 ] -!20999 +!21005 }160 -Input:1156:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:1152:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {161 -[1,8768:4262630,47279633:28320399,43253760,0 -(1,8768:4262630,4025873:0,0,0 -[1,8768:-473657,4025873:25952256,0,0 -(1,8768:-473657,-710414:25952256,0,0 -h1,8768:-473657,-710414:0,0,0 -(1,8768:-473657,-710414:0,0,0 -(1,8768:-473657,-710414:0,0,0 -g1,8768:-473657,-710414 -(1,8768:-473657,-710414:65781,0,65781 -g1,8768:-407876,-710414 -[1,8768:-407876,-644633:0,0,0 +[1,8773:4262630,47279633:28320399,43253760,0 +(1,8773:4262630,4025873:0,0,0 +[1,8773:-473657,4025873:25952256,0,0 +(1,8773:-473657,-710414:25952256,0,0 +h1,8773:-473657,-710414:0,0,0 +(1,8773:-473657,-710414:0,0,0 +(1,8773:-473657,-710414:0,0,0 +g1,8773:-473657,-710414 +(1,8773:-473657,-710414:65781,0,65781 +g1,8773:-407876,-710414 +[1,8773:-407876,-644633:0,0,0 ] ) -k1,8768:-473657,-710414:-65781 +k1,8773:-473657,-710414:-65781 ) ) -k1,8768:25478599,-710414:25952256 -g1,8768:25478599,-710414 +k1,8773:25478599,-710414:25952256 +g1,8773:25478599,-710414 ) ] ) -[1,8768:6630773,47279633:25952256,43253760,0 -[1,8768:6630773,4812305:25952256,786432,0 -(1,8768:6630773,4812305:25952256,505283,134348 -(1,8768:6630773,4812305:25952256,505283,134348 -g1,8768:3078558,4812305 -[1,8768:3078558,4812305:0,0,0 -(1,8768:3078558,2439708:0,1703936,0 -k1,8768:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8768:2537886,2439708:1179648,16384,0 +[1,8773:6630773,47279633:25952256,43253760,0 +[1,8773:6630773,4812305:25952256,786432,0 +(1,8773:6630773,4812305:25952256,505283,134348 +(1,8773:6630773,4812305:25952256,505283,134348 +g1,8773:3078558,4812305 +[1,8773:3078558,4812305:0,0,0 +(1,8773:3078558,2439708:0,1703936,0 +k1,8773:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8773:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8768:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8773:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8768:3078558,4812305:0,0,0 -(1,8768:3078558,2439708:0,1703936,0 -g1,8768:29030814,2439708 -g1,8768:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8768:36151628,1915420:16384,1179648,0 +[1,8773:3078558,4812305:0,0,0 +(1,8773:3078558,2439708:0,1703936,0 +g1,8773:29030814,2439708 +g1,8773:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8773:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8768:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8773:37855564,2439708:1179648,16384,0 ) ) -k1,8768:3078556,2439708:-34777008 +k1,8773:3078556,2439708:-34777008 ) ] -[1,8768:3078558,4812305:0,0,0 -(1,8768:3078558,49800853:0,16384,2228224 -k1,8768:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8768:2537886,49800853:1179648,16384,0 +[1,8773:3078558,4812305:0,0,0 +(1,8773:3078558,49800853:0,16384,2228224 +k1,8773:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8773:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8768:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8773:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8768:3078558,4812305:0,0,0 -(1,8768:3078558,49800853:0,16384,2228224 -g1,8768:29030814,49800853 -g1,8768:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8768:36151628,51504789:16384,1179648,0 +[1,8773:3078558,4812305:0,0,0 +(1,8773:3078558,49800853:0,16384,2228224 +g1,8773:29030814,49800853 +g1,8773:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8773:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8768:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8773:37855564,49800853:1179648,16384,0 ) ) -k1,8768:3078556,49800853:-34777008 +k1,8773:3078556,49800853:-34777008 ) ] -g1,8768:6630773,4812305 -k1,8768:24573876,4812305:16747726 -g1,8768:25960617,4812305 -g1,8768:26609423,4812305 -g1,8768:29923578,4812305 +g1,8773:6630773,4812305 +k1,8773:24502442,4812305:16676292 +g1,8773:25889183,4812305 +g1,8773:26537989,4812305 +g1,8773:29852144,4812305 ) ) ] -[1,8768:6630773,45706769:25952256,40108032,0 -(1,8768:6630773,45706769:25952256,40108032,0 -(1,8768:6630773,45706769:0,0,0 -g1,8768:6630773,45706769 +[1,8773:6630773,45706769:25952256,40108032,0 +(1,8773:6630773,45706769:25952256,40108032,0 +(1,8773:6630773,45706769:0,0,0 +g1,8773:6630773,45706769 ) -[1,8768:6630773,45706769:25952256,40108032,0 -(1,8707:6630773,14661426:25952256,9062689,0 -k1,8707:10523651,14661426:3892878 -h1,8706:10523651,14661426:0,0,0 -(1,8706:10523651,14661426:18166500,9062689,0 -(1,8706:10523651,14661426:18167381,9062712,0 -(1,8706:10523651,14661426:18167381,9062712,0 -(1,8706:10523651,14661426:0,9062712,0 -(1,8706:10523651,14661426:0,14155776,0 -(1,8706:10523651,14661426:28377088,14155776,0 +[1,8773:6630773,45706769:25952256,40108032,0 +(1,8712:6630773,14661426:25952256,9062689,0 +k1,8712:10523651,14661426:3892878 +h1,8711:10523651,14661426:0,0,0 +(1,8711:10523651,14661426:18166500,9062689,0 +(1,8711:10523651,14661426:18167381,9062712,0 +(1,8711:10523651,14661426:18167381,9062712,0 +(1,8711:10523651,14661426:0,9062712,0 +(1,8711:10523651,14661426:0,14155776,0 +(1,8711:10523651,14661426:28377088,14155776,0 ) -k1,8706:10523651,14661426:-28377088 +k1,8711:10523651,14661426:-28377088 ) ) -g1,8706:28691032,14661426 -) -) -) -g1,8707:28690151,14661426 -k1,8707:32583029,14661426:3892878 -) -(1,8715:6630773,15502914:25952256,513147,134348 -h1,8714:6630773,15502914:983040,0,0 -k1,8714:8330421,15502914:229020 -k1,8714:11321814,15502914:229050 -k1,8714:14385951,15502914:229050 -k1,8714:16350394,15502914:229050 -k1,8714:17968808,15502914:229051 -k1,8714:19132401,15502914:229050 -(1,8714:19132401,15502914:0,414482,115847 -r1,8714:21249226,15502914:2116825,530329,115847 -k1,8714:19132401,15502914:-2116825 -) -(1,8714:19132401,15502914:2116825,414482,115847 -k1,8714:19132401,15502914:3277 -h1,8714:21245949,15502914:0,411205,112570 -) -k1,8714:21478276,15502914:229050 -k1,8714:25069323,15502914:229050 -k1,8714:30016965,15502914:229050 -k1,8714:31635378,15502914:229050 -k1,8714:32583029,15502914:0 -) -(1,8715:6630773,16344402:25952256,513147,134348 -k1,8714:10768716,16344402:182845 -k1,8714:12942546,16344402:182846 -k1,8714:13481251,16344402:182845 -k1,8714:15194363,16344402:182846 -k1,8714:17145369,16344402:182845 -k1,8714:21099156,16344402:182845 -k1,8714:22478689,16344402:182846 -k1,8714:24822911,16344402:182845 -k1,8714:26586485,16344402:182846 -k1,8714:27428622,16344402:182845 -k1,8714:29349483,16344402:182846 -k1,8714:30377742,16344402:182845 -k1,8715:32583029,16344402:0 +g1,8711:28691032,14661426 +) +) +) +g1,8712:28690151,14661426 +k1,8712:32583029,14661426:3892878 +) +(1,8720:6630773,15502914:25952256,513147,134348 +h1,8719:6630773,15502914:983040,0,0 +k1,8719:8330421,15502914:229020 +k1,8719:11321814,15502914:229050 +k1,8719:14385951,15502914:229050 +k1,8719:16350394,15502914:229050 +k1,8719:17968808,15502914:229051 +k1,8719:19132401,15502914:229050 +(1,8719:19132401,15502914:0,414482,115847 +r1,8719:21249226,15502914:2116825,530329,115847 +k1,8719:19132401,15502914:-2116825 +) +(1,8719:19132401,15502914:2116825,414482,115847 +k1,8719:19132401,15502914:3277 +h1,8719:21245949,15502914:0,411205,112570 +) +k1,8719:21478276,15502914:229050 +k1,8719:25069323,15502914:229050 +k1,8719:30016965,15502914:229050 +k1,8719:31635378,15502914:229050 +k1,8719:32583029,15502914:0 +) +(1,8720:6630773,16344402:25952256,513147,134348 +k1,8719:10832723,16344402:246852 +k1,8719:13070560,16344402:246853 +k1,8719:13673272,16344402:246852 +k1,8719:15450390,16344402:246852 +k1,8719:17465403,16344402:246852 +k1,8719:21483198,16344402:246853 +k1,8719:22926737,16344402:246852 +k1,8719:25334966,16344402:246852 +k1,8719:27162546,16344402:246852 +k1,8719:28068691,16344402:246853 +k1,8719:30053558,16344402:246852 +k1,8719:31145824,16344402:246852 +k1,8720:32583029,16344402:0 ) -(1,8715:6630773,17185890:25952256,505283,134348 -g1,8714:9111966,17185890 -g1,8714:10134327,17185890 -g1,8714:12789190,17185890 -g1,8714:16596176,17185890 -g1,8714:17326902,17185890 -g1,8714:19056397,17185890 -g1,8714:20953664,17185890 -g1,8714:22542256,17185890 -g1,8714:23733045,17185890 -k1,8715:32583029,17185890:6374034 -g1,8715:32583029,17185890 -) -v1,8717:6630773,18376356:0,393216,0 -(1,8728:6630773,21404591:25952256,3421451,196608 -g1,8728:6630773,21404591 -g1,8728:6630773,21404591 -g1,8728:6434165,21404591 -(1,8728:6434165,21404591:0,3421451,196608 -r1,8728:32779637,21404591:26345472,3618059,196608 -k1,8728:6434165,21404591:-26345472 -) -(1,8728:6434165,21404591:26345472,3421451,196608 -[1,8728:6630773,21404591:25952256,3224843,0 -(1,8719:6630773,18583974:25952256,404226,76021 -(1,8718:6630773,18583974:0,0,0 -g1,8718:6630773,18583974 -g1,8718:6630773,18583974 -g1,8718:6303093,18583974 -(1,8718:6303093,18583974:0,0,0 -) -g1,8718:6630773,18583974 -) -k1,8719:6630773,18583974:0 -h1,8719:10424521,18583974:0,0,0 -k1,8719:32583029,18583974:22158508 -g1,8719:32583029,18583974 -) -(1,8720:6630773,19250152:25952256,404226,76021 -h1,8720:6630773,19250152:0,0,0 -k1,8720:6630773,19250152:0 -h1,8720:10740666,19250152:0,0,0 -k1,8720:32583030,19250152:21842364 -g1,8720:32583030,19250152 -) -(1,8724:6630773,19981866:25952256,404226,76021 -(1,8722:6630773,19981866:0,0,0 -g1,8722:6630773,19981866 -g1,8722:6630773,19981866 -g1,8722:6303093,19981866 -(1,8722:6303093,19981866:0,0,0 -) -g1,8722:6630773,19981866 -) -g1,8724:7579210,19981866 -g1,8724:8843793,19981866 -h1,8724:10108376,19981866:0,0,0 -k1,8724:32583028,19981866:22474652 -g1,8724:32583028,19981866 -) -(1,8726:6630773,21303404:25952256,404226,101187 -(1,8725:6630773,21303404:0,0,0 -g1,8725:6630773,21303404 -g1,8725:6630773,21303404 -g1,8725:6303093,21303404 -(1,8725:6303093,21303404:0,0,0 -) -g1,8725:6630773,21303404 -) -k1,8726:6630773,21303404:0 -h1,8726:10424521,21303404:0,0,0 -k1,8726:32583029,21303404:22158508 -g1,8726:32583029,21303404 -) -] -) -g1,8728:32583029,21404591 -g1,8728:6630773,21404591 -g1,8728:6630773,21404591 -g1,8728:32583029,21404591 -g1,8728:32583029,21404591 -) -h1,8728:6630773,21601199:0,0,0 -(1,8731:6630773,31253712:25952256,9062689,0 -k1,8731:10523651,31253712:3892878 -h1,8730:10523651,31253712:0,0,0 -(1,8730:10523651,31253712:18166500,9062689,0 -(1,8730:10523651,31253712:18167381,9062712,0 -(1,8730:10523651,31253712:18167381,9062712,0 -(1,8730:10523651,31253712:0,9062712,0 -(1,8730:10523651,31253712:0,14155776,0 -(1,8730:10523651,31253712:28377088,14155776,0 -) -k1,8730:10523651,31253712:-28377088 -) -) -g1,8730:28691032,31253712 -) -) -) -g1,8731:28690151,31253712 -k1,8731:32583029,31253712:3892878 -) -(1,8739:6630773,32095200:25952256,513147,126483 -h1,8738:6630773,32095200:983040,0,0 -k1,8738:8487244,32095200:245596 -k1,8738:9751925,32095200:245596 -k1,8738:11381641,32095200:245596 -k1,8738:12799676,32095200:245596 -k1,8738:14541459,32095200:245596 -k1,8738:17261695,32095200:245597 -k1,8738:18679730,32095200:245596 -k1,8738:21687669,32095200:245596 -k1,8738:25595417,32095200:245596 -k1,8738:26492441,32095200:245596 -k1,8738:28163445,32095200:245596 -k1,8738:30253879,32095200:245596 -k1,8739:32583029,32095200:0 -) -(1,8739:6630773,32936688:25952256,513147,134348 -k1,8738:9475341,32936688:230337 -k1,8738:10697238,32936688:230337 -k1,8738:12614472,32936688:230337 -k1,8738:13472644,32936688:230337 -k1,8738:14722066,32936688:230337 -k1,8738:16258536,32936688:230337 -k1,8738:17645583,32936688:230337 -k1,8738:18744273,32936688:230338 -k1,8738:20067095,32936688:230337 -k1,8738:20653292,32936688:230337 -k1,8738:23245547,32936688:230337 -k1,8738:25902027,32936688:230337 -k1,8738:26783792,32936688:230337 -k1,8738:29431752,32936688:230337 -k1,8738:30681174,32936688:230337 -k1,8738:32583029,32936688:0 -) -(1,8739:6630773,33778176:25952256,513147,134348 -k1,8738:8528742,33778176:208451 -k1,8738:9353231,33778176:208451 -k1,8738:10580768,33778176:208452 -k1,8738:13030550,33778176:208451 -k1,8738:16223511,33778176:208451 -k1,8738:17300314,33778176:208451 -k1,8738:18601251,33778176:208452 -k1,8738:20577208,33778176:208451 -k1,8738:21348613,33778176:208451 -k1,8738:23968134,33778176:208451 -k1,8738:25917877,33778176:208451 -k1,8738:27838785,33778176:208452 -k1,8738:28808764,33778176:208451 -k1,8738:30511436,33778176:208451 -k1,8739:32583029,33778176:0 -) -(1,8739:6630773,34619664:25952256,513147,134348 -k1,8738:7891142,34619664:235386 -k1,8738:11650400,34619664:235387 -k1,8738:12833437,34619664:235386 -k1,8738:14087908,34619664:235386 -k1,8738:19227354,34619664:235387 -k1,8738:19818600,34619664:235386 -k1,8738:22508310,34619664:235387 -k1,8738:23691347,34619664:235386 -k1,8738:25812204,34619664:235386 -k1,8738:27066676,34619664:235387 -k1,8738:30070303,34619664:235386 -k1,8738:31460397,34619664:235350 -k1,8739:32583029,34619664:0 -) -(1,8739:6630773,35461152:25952256,513147,134348 -k1,8738:8944313,35461152:257020 -k1,8738:10392778,35461152:257020 -k1,8738:12555585,35461152:257020 -k1,8738:17542994,35461152:257020 -k1,8738:19535407,35461152:257020 -k1,8738:21767028,35461152:257021 -k1,8738:22555545,35461152:257020 -k1,8738:24499462,35461152:257020 -k1,8738:24499462,35461152:0 -k1,8738:24756482,35461152:257020 -k1,8738:27054948,35461152:257020 -k1,8738:31563944,35461152:257020 -k1,8738:32583029,35461152:0 -) -(1,8739:6630773,36302640:25952256,505283,134348 -g1,8738:10313241,36302640 -g1,8738:11380822,36302640 -g1,8738:14645170,36302640 -g1,8738:15863484,36302640 -g1,8738:20336971,36302640 -g1,8738:21152238,36302640 -g1,8738:23807101,36302640 -k1,8739:32583029,36302640:6317673 -g1,8739:32583029,36302640 -) -v1,8741:6630773,37493106:0,393216,0 -(1,8745:6630773,37776745:25952256,676855,196608 -g1,8745:6630773,37776745 -g1,8745:6630773,37776745 -g1,8745:6434165,37776745 -(1,8745:6434165,37776745:0,676855,196608 -r1,8745:32779637,37776745:26345472,873463,196608 -k1,8745:6434165,37776745:-26345472 -) -(1,8745:6434165,37776745:26345472,676855,196608 -[1,8745:6630773,37776745:25952256,480247,0 -(1,8743:6630773,37700724:25952256,404226,76021 -(1,8742:6630773,37700724:0,0,0 -g1,8742:6630773,37700724 -g1,8742:6630773,37700724 -g1,8742:6303093,37700724 -(1,8742:6303093,37700724:0,0,0 -) -g1,8742:6630773,37700724 -) -g1,8743:11372959,37700724 -g1,8743:12321397,37700724 -g1,8743:14850563,37700724 -g1,8743:15482855,37700724 -g1,8743:16747438,37700724 -g1,8743:17379730,37700724 -h1,8743:18328168,37700724:0,0,0 -k1,8743:32583029,37700724:14254861 -g1,8743:32583029,37700724 -) -] -) -g1,8745:32583029,37776745 -g1,8745:6630773,37776745 -g1,8745:6630773,37776745 -g1,8745:32583029,37776745 -g1,8745:32583029,37776745 -) -h1,8745:6630773,37973353:0,0,0 -(1,8749:6630773,39339129:25952256,505283,126483 -h1,8748:6630773,39339129:983040,0,0 -g1,8748:8766591,39339129 -g1,8748:9900363,39339129 -g1,8748:11118677,39339129 -g1,8748:14052068,39339129 -g1,8748:16724626,39339129 -g1,8748:17575283,39339129 -g1,8748:18172971,39339129 -g1,8748:20977256,39339129 -g1,8748:22195570,39339129 -g1,8748:25486788,39339129 -k1,8749:32583029,39339129:4106489 -g1,8749:32583029,39339129 -) -v1,8752:6630773,40529595:0,393216,0 -(1,8757:6630773,41504578:25952256,1368199,196608 -g1,8757:6630773,41504578 -g1,8757:6630773,41504578 -g1,8757:6434165,41504578 -(1,8757:6434165,41504578:0,1368199,196608 -r1,8757:32779637,41504578:26345472,1564807,196608 -k1,8757:6434165,41504578:-26345472 -) -(1,8757:6434165,41504578:26345472,1368199,196608 -[1,8757:6630773,41504578:25952256,1171591,0 -(1,8754:6630773,40737213:25952256,404226,82312 -(1,8753:6630773,40737213:0,0,0 -g1,8753:6630773,40737213 -g1,8753:6630773,40737213 -g1,8753:6303093,40737213 -(1,8753:6303093,40737213:0,0,0 -) -g1,8753:6630773,40737213 -) -g1,8754:10108376,40737213 -g1,8754:11056814,40737213 -g1,8754:17379728,40737213 -g1,8754:20225039,40737213 -g1,8754:20857331,40737213 -h1,8754:21489623,40737213:0,0,0 -k1,8754:32583029,40737213:11093406 -g1,8754:32583029,40737213 -) -(1,8755:6630773,41403391:25952256,404226,101187 -h1,8755:6630773,41403391:0,0,0 -k1,8755:6630773,41403391:0 -h1,8755:11689104,41403391:0,0,0 -k1,8755:32583028,41403391:20893924 -g1,8755:32583028,41403391 -) -] -) -g1,8757:32583029,41504578 -g1,8757:6630773,41504578 -g1,8757:6630773,41504578 -g1,8757:32583029,41504578 -g1,8757:32583029,41504578 -) -h1,8757:6630773,41701186:0,0,0 -] -(1,8768:32583029,45706769:0,0,0 -g1,8768:32583029,45706769 -) -) -] -(1,8768:6630773,47279633:25952256,0,0 -h1,8768:6630773,47279633:25952256,0,0 -) -] -h1,8768:4262630,4025873:0,0,0 -] -!13192 +(1,8720:6630773,17185890:25952256,505283,134348 +g1,8719:9880048,17185890 +g1,8719:10902409,17185890 +g1,8719:13557272,17185890 +g1,8719:17364258,17185890 +g1,8719:18094984,17185890 +g1,8719:19824479,17185890 +g1,8719:21721746,17185890 +g1,8719:23310338,17185890 +g1,8719:24501127,17185890 +k1,8720:32583029,17185890:5605952 +g1,8720:32583029,17185890 +) +v1,8722:6630773,18376356:0,393216,0 +(1,8733:6630773,21404591:25952256,3421451,196608 +g1,8733:6630773,21404591 +g1,8733:6630773,21404591 +g1,8733:6434165,21404591 +(1,8733:6434165,21404591:0,3421451,196608 +r1,8733:32779637,21404591:26345472,3618059,196608 +k1,8733:6434165,21404591:-26345472 +) +(1,8733:6434165,21404591:26345472,3421451,196608 +[1,8733:6630773,21404591:25952256,3224843,0 +(1,8724:6630773,18583974:25952256,404226,76021 +(1,8723:6630773,18583974:0,0,0 +g1,8723:6630773,18583974 +g1,8723:6630773,18583974 +g1,8723:6303093,18583974 +(1,8723:6303093,18583974:0,0,0 +) +g1,8723:6630773,18583974 +) +k1,8724:6630773,18583974:0 +h1,8724:10424521,18583974:0,0,0 +k1,8724:32583029,18583974:22158508 +g1,8724:32583029,18583974 +) +(1,8725:6630773,19250152:25952256,404226,76021 +h1,8725:6630773,19250152:0,0,0 +k1,8725:6630773,19250152:0 +h1,8725:10740666,19250152:0,0,0 +k1,8725:32583030,19250152:21842364 +g1,8725:32583030,19250152 +) +(1,8729:6630773,19981866:25952256,404226,76021 +(1,8727:6630773,19981866:0,0,0 +g1,8727:6630773,19981866 +g1,8727:6630773,19981866 +g1,8727:6303093,19981866 +(1,8727:6303093,19981866:0,0,0 +) +g1,8727:6630773,19981866 +) +g1,8729:7579210,19981866 +g1,8729:8843793,19981866 +h1,8729:10108376,19981866:0,0,0 +k1,8729:32583028,19981866:22474652 +g1,8729:32583028,19981866 +) +(1,8731:6630773,21303404:25952256,404226,101187 +(1,8730:6630773,21303404:0,0,0 +g1,8730:6630773,21303404 +g1,8730:6630773,21303404 +g1,8730:6303093,21303404 +(1,8730:6303093,21303404:0,0,0 +) +g1,8730:6630773,21303404 +) +k1,8731:6630773,21303404:0 +h1,8731:10424521,21303404:0,0,0 +k1,8731:32583029,21303404:22158508 +g1,8731:32583029,21303404 +) +] +) +g1,8733:32583029,21404591 +g1,8733:6630773,21404591 +g1,8733:6630773,21404591 +g1,8733:32583029,21404591 +g1,8733:32583029,21404591 +) +h1,8733:6630773,21601199:0,0,0 +(1,8736:6630773,31253712:25952256,9062689,0 +k1,8736:10523651,31253712:3892878 +h1,8735:10523651,31253712:0,0,0 +(1,8735:10523651,31253712:18166500,9062689,0 +(1,8735:10523651,31253712:18167381,9062712,0 +(1,8735:10523651,31253712:18167381,9062712,0 +(1,8735:10523651,31253712:0,9062712,0 +(1,8735:10523651,31253712:0,14155776,0 +(1,8735:10523651,31253712:28377088,14155776,0 +) +k1,8735:10523651,31253712:-28377088 +) +) +g1,8735:28691032,31253712 +) +) +) +g1,8736:28690151,31253712 +k1,8736:32583029,31253712:3892878 +) +(1,8744:6630773,32095200:25952256,513147,126483 +h1,8743:6630773,32095200:983040,0,0 +k1,8743:8487244,32095200:245596 +k1,8743:9751925,32095200:245596 +k1,8743:11381641,32095200:245596 +k1,8743:12799676,32095200:245596 +k1,8743:14541459,32095200:245596 +k1,8743:17261695,32095200:245597 +k1,8743:18679730,32095200:245596 +k1,8743:21687669,32095200:245596 +k1,8743:25595417,32095200:245596 +k1,8743:26492441,32095200:245596 +k1,8743:28163445,32095200:245596 +k1,8743:30253879,32095200:245596 +k1,8744:32583029,32095200:0 +) +(1,8744:6630773,32936688:25952256,513147,134348 +k1,8743:9475341,32936688:230337 +k1,8743:10697238,32936688:230337 +k1,8743:12614472,32936688:230337 +k1,8743:13472644,32936688:230337 +k1,8743:14722066,32936688:230337 +k1,8743:16258536,32936688:230337 +k1,8743:17645583,32936688:230337 +k1,8743:18744273,32936688:230338 +k1,8743:20067095,32936688:230337 +k1,8743:20653292,32936688:230337 +k1,8743:23245547,32936688:230337 +k1,8743:25902027,32936688:230337 +k1,8743:26783792,32936688:230337 +k1,8743:29431752,32936688:230337 +k1,8743:30681174,32936688:230337 +k1,8743:32583029,32936688:0 +) +(1,8744:6630773,33778176:25952256,513147,134348 +k1,8743:8470743,33778176:150452 +k1,8743:9237233,33778176:150452 +k1,8743:10406770,33778176:150452 +k1,8743:12798552,33778176:150451 +k1,8743:15933514,33778176:150452 +k1,8743:16952318,33778176:150452 +k1,8743:18195255,33778176:150452 +k1,8743:20113213,33778176:150452 +k1,8743:20826619,33778176:150452 +k1,8743:23388141,33778176:150452 +k1,8743:25279884,33778176:150451 +k1,8743:27142792,33778176:150452 +k1,8743:28054772,33778176:150452 +k1,8743:29699445,33778176:150452 +k1,8743:32583029,33778176:0 +) +(1,8744:6630773,34619664:25952256,513147,134348 +k1,8743:10337014,34619664:182370 +k1,8743:11467036,34619664:182371 +k1,8743:12668491,34619664:182370 +k1,8743:17754920,34619664:182370 +k1,8743:18293150,34619664:182370 +k1,8743:20929844,34619664:182371 +k1,8743:22059865,34619664:182370 +k1,8743:24127706,34619664:182370 +k1,8743:25329161,34619664:182370 +k1,8743:28279773,34619664:182371 +k1,8743:29616870,34619664:182353 +k1,8743:32583029,34619664:0 +) +(1,8744:6630773,35461152:25952256,513147,134348 +k1,8743:8117249,35461152:295031 +k1,8743:10318067,35461152:295031 +k1,8743:15343487,35461152:295031 +k1,8743:17373911,35461152:295031 +k1,8743:19643542,35461152:295031 +k1,8743:20470070,35461152:295031 +k1,8743:22451998,35461152:295031 +k1,8743:22451998,35461152:0 +k1,8743:22747029,35461152:295031 +k1,8743:25083506,35461152:295031 +k1,8743:29630513,35461152:295031 +k1,8743:30944629,35461152:295031 +k1,8744:32583029,35461152:0 +) +(1,8744:6630773,36302640:25952256,505283,134348 +g1,8743:8674840,36302640 +g1,8743:9742421,36302640 +g1,8743:13006769,36302640 +g1,8743:14225083,36302640 +g1,8743:18698570,36302640 +g1,8743:19513837,36302640 +g1,8743:22168700,36302640 +k1,8744:32583029,36302640:7956074 +g1,8744:32583029,36302640 +) +v1,8746:6630773,37493106:0,393216,0 +(1,8750:6630773,37776745:25952256,676855,196608 +g1,8750:6630773,37776745 +g1,8750:6630773,37776745 +g1,8750:6434165,37776745 +(1,8750:6434165,37776745:0,676855,196608 +r1,8750:32779637,37776745:26345472,873463,196608 +k1,8750:6434165,37776745:-26345472 +) +(1,8750:6434165,37776745:26345472,676855,196608 +[1,8750:6630773,37776745:25952256,480247,0 +(1,8748:6630773,37700724:25952256,404226,76021 +(1,8747:6630773,37700724:0,0,0 +g1,8747:6630773,37700724 +g1,8747:6630773,37700724 +g1,8747:6303093,37700724 +(1,8747:6303093,37700724:0,0,0 +) +g1,8747:6630773,37700724 +) +g1,8748:11372959,37700724 +g1,8748:12321397,37700724 +g1,8748:14850563,37700724 +g1,8748:15482855,37700724 +g1,8748:16747438,37700724 +g1,8748:17379730,37700724 +h1,8748:18328168,37700724:0,0,0 +k1,8748:32583029,37700724:14254861 +g1,8748:32583029,37700724 +) +] +) +g1,8750:32583029,37776745 +g1,8750:6630773,37776745 +g1,8750:6630773,37776745 +g1,8750:32583029,37776745 +g1,8750:32583029,37776745 +) +h1,8750:6630773,37973353:0,0,0 +(1,8754:6630773,39339129:25952256,505283,126483 +h1,8753:6630773,39339129:983040,0,0 +g1,8753:8766591,39339129 +g1,8753:9900363,39339129 +g1,8753:11118677,39339129 +g1,8753:14052068,39339129 +g1,8753:16724626,39339129 +g1,8753:17575283,39339129 +g1,8753:18172971,39339129 +g1,8753:20977256,39339129 +g1,8753:22195570,39339129 +g1,8753:25486788,39339129 +k1,8754:32583029,39339129:4106489 +g1,8754:32583029,39339129 +) +v1,8757:6630773,40529595:0,393216,0 +(1,8762:6630773,41504578:25952256,1368199,196608 +g1,8762:6630773,41504578 +g1,8762:6630773,41504578 +g1,8762:6434165,41504578 +(1,8762:6434165,41504578:0,1368199,196608 +r1,8762:32779637,41504578:26345472,1564807,196608 +k1,8762:6434165,41504578:-26345472 +) +(1,8762:6434165,41504578:26345472,1368199,196608 +[1,8762:6630773,41504578:25952256,1171591,0 +(1,8759:6630773,40737213:25952256,404226,82312 +(1,8758:6630773,40737213:0,0,0 +g1,8758:6630773,40737213 +g1,8758:6630773,40737213 +g1,8758:6303093,40737213 +(1,8758:6303093,40737213:0,0,0 +) +g1,8758:6630773,40737213 +) +g1,8759:10108376,40737213 +g1,8759:11056814,40737213 +g1,8759:17379728,40737213 +g1,8759:20225039,40737213 +g1,8759:20857331,40737213 +h1,8759:21489623,40737213:0,0,0 +k1,8759:32583029,40737213:11093406 +g1,8759:32583029,40737213 +) +(1,8760:6630773,41403391:25952256,404226,101187 +h1,8760:6630773,41403391:0,0,0 +k1,8760:6630773,41403391:0 +h1,8760:11689104,41403391:0,0,0 +k1,8760:32583028,41403391:20893924 +g1,8760:32583028,41403391 +) +] +) +g1,8762:32583029,41504578 +g1,8762:6630773,41504578 +g1,8762:6630773,41504578 +g1,8762:32583029,41504578 +g1,8762:32583029,41504578 +) +h1,8762:6630773,41701186:0,0,0 +] +(1,8773:32583029,45706769:0,0,0 +g1,8773:32583029,45706769 +) +) +] +(1,8773:6630773,47279633:25952256,0,0 +h1,8773:6630773,47279633:25952256,0,0 +) +] +h1,8773:4262630,4025873:0,0,0 +] +!13159 }161 -Input:1157:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1158:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1159:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1160:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1161:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1162:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1163:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1153:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1154:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1155:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1156:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1157:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1158:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1159:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {162 -[1,8856:4262630,47279633:28320399,43253760,0 -(1,8856:4262630,4025873:0,0,0 -[1,8856:-473657,4025873:25952256,0,0 -(1,8856:-473657,-710414:25952256,0,0 -h1,8856:-473657,-710414:0,0,0 -(1,8856:-473657,-710414:0,0,0 -(1,8856:-473657,-710414:0,0,0 -g1,8856:-473657,-710414 -(1,8856:-473657,-710414:65781,0,65781 -g1,8856:-407876,-710414 -[1,8856:-407876,-644633:0,0,0 +[1,8861:4262630,47279633:28320399,43253760,0 +(1,8861:4262630,4025873:0,0,0 +[1,8861:-473657,4025873:25952256,0,0 +(1,8861:-473657,-710414:25952256,0,0 +h1,8861:-473657,-710414:0,0,0 +(1,8861:-473657,-710414:0,0,0 +(1,8861:-473657,-710414:0,0,0 +g1,8861:-473657,-710414 +(1,8861:-473657,-710414:65781,0,65781 +g1,8861:-407876,-710414 +[1,8861:-407876,-644633:0,0,0 ] ) -k1,8856:-473657,-710414:-65781 +k1,8861:-473657,-710414:-65781 ) ) -k1,8856:25478599,-710414:25952256 -g1,8856:25478599,-710414 +k1,8861:25478599,-710414:25952256 +g1,8861:25478599,-710414 ) ] ) -[1,8856:6630773,47279633:25952256,43253760,0 -[1,8856:6630773,4812305:25952256,786432,0 -(1,8856:6630773,4812305:25952256,505283,11795 -(1,8856:6630773,4812305:25952256,505283,11795 -g1,8856:3078558,4812305 -[1,8856:3078558,4812305:0,0,0 -(1,8856:3078558,2439708:0,1703936,0 -k1,8856:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8856:2537886,2439708:1179648,16384,0 +[1,8861:6630773,47279633:25952256,43253760,0 +[1,8861:6630773,4812305:25952256,786432,0 +(1,8861:6630773,4812305:25952256,505283,11795 +(1,8861:6630773,4812305:25952256,505283,11795 +g1,8861:3078558,4812305 +[1,8861:3078558,4812305:0,0,0 +(1,8861:3078558,2439708:0,1703936,0 +k1,8861:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8861:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8856:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8861:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8856:3078558,4812305:0,0,0 -(1,8856:3078558,2439708:0,1703936,0 -g1,8856:29030814,2439708 -g1,8856:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8856:36151628,1915420:16384,1179648,0 +[1,8861:3078558,4812305:0,0,0 +(1,8861:3078558,2439708:0,1703936,0 +g1,8861:29030814,2439708 +g1,8861:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8861:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8856:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8861:37855564,2439708:1179648,16384,0 ) ) -k1,8856:3078556,2439708:-34777008 +k1,8861:3078556,2439708:-34777008 ) ] -[1,8856:3078558,4812305:0,0,0 -(1,8856:3078558,49800853:0,16384,2228224 -k1,8856:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8856:2537886,49800853:1179648,16384,0 +[1,8861:3078558,4812305:0,0,0 +(1,8861:3078558,49800853:0,16384,2228224 +k1,8861:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8861:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8856:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8861:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8856:3078558,4812305:0,0,0 -(1,8856:3078558,49800853:0,16384,2228224 -g1,8856:29030814,49800853 -g1,8856:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8856:36151628,51504789:16384,1179648,0 +[1,8861:3078558,4812305:0,0,0 +(1,8861:3078558,49800853:0,16384,2228224 +g1,8861:29030814,49800853 +g1,8861:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8861:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8856:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8861:37855564,49800853:1179648,16384,0 ) ) -k1,8856:3078556,49800853:-34777008 +k1,8861:3078556,49800853:-34777008 ) ] -g1,8856:6630773,4812305 -g1,8856:6630773,4812305 -g1,8856:10653372,4812305 -g1,8856:13512052,4812305 -k1,8856:31387652,4812305:17875600 +g1,8861:6630773,4812305 +g1,8861:6630773,4812305 +g1,8861:10653372,4812305 +g1,8861:13512052,4812305 +k1,8861:31387652,4812305:17875600 ) ) ] -[1,8856:6630773,45706769:25952256,40108032,0 -(1,8856:6630773,45706769:25952256,40108032,0 -(1,8856:6630773,45706769:0,0,0 -g1,8856:6630773,45706769 +[1,8861:6630773,45706769:25952256,40108032,0 +(1,8861:6630773,45706769:25952256,40108032,0 +(1,8861:6630773,45706769:0,0,0 +g1,8861:6630773,45706769 ) -[1,8856:6630773,45706769:25952256,40108032,0 -(1,8760:6630773,20745176:25952256,15146439,0 -k1,8760:10523651,20745176:3892878 -h1,8759:10523651,20745176:0,0,0 -(1,8759:10523651,20745176:18166500,15146439,0 -(1,8759:10523651,20745176:18167381,15146477,0 -(1,8759:10523651,20745176:18167381,15146477,0 -(1,8759:10523651,20745176:0,15146477,0 -(1,8759:10523651,20745176:0,23658496,0 -(1,8759:10523651,20745176:28377088,23658496,0 +[1,8861:6630773,45706769:25952256,40108032,0 +(1,8765:6630773,20745176:25952256,15146439,0 +k1,8765:10523651,20745176:3892878 +h1,8764:10523651,20745176:0,0,0 +(1,8764:10523651,20745176:18166500,15146439,0 +(1,8764:10523651,20745176:18167381,15146477,0 +(1,8764:10523651,20745176:18167381,15146477,0 +(1,8764:10523651,20745176:0,15146477,0 +(1,8764:10523651,20745176:0,23658496,0 +(1,8764:10523651,20745176:28377088,23658496,0 ) -k1,8759:10523651,20745176:-28377088 -) -) -g1,8759:28691032,20745176 -) -) -) -g1,8760:28690151,20745176 -k1,8760:32583029,20745176:3892878 -) -v1,8768:6630773,22110952:0,393216,0 -(1,8778:6630773,29003399:25952256,7285663,616038 -g1,8778:6630773,29003399 -(1,8778:6630773,29003399:25952256,7285663,616038 -(1,8778:6630773,29619437:25952256,7901701,0 -[1,8778:6630773,29619437:25952256,7901701,0 -(1,8778:6630773,29593223:25952256,7849273,0 -r1,8778:6656987,29593223:26214,7849273,0 -[1,8778:6656987,29593223:25899828,7849273,0 -(1,8778:6656987,29003399:25899828,6669625,0 -[1,8778:7246811,29003399:24720180,6669625,0 -(1,8769:7246811,23617756:24720180,1283982,196608 -(1,8768:7246811,23617756:0,1283982,196608 -r1,8778:9812056,23617756:2565245,1480590,196608 -k1,8768:7246811,23617756:-2565245 -) -(1,8768:7246811,23617756:2565245,1283982,196608 -) -k1,8768:10082556,23617756:270500 -k1,8768:10822949,23617756:270500 -k1,8768:11624945,23617756:270499 -k1,8768:15328876,23617756:270500 -k1,8768:16250804,23617756:270500 -k1,8768:18889775,23617756:270500 -k1,8768:20179359,23617756:270499 -k1,8768:22005028,23617756:270500 -k1,8768:23466973,23617756:270500 -k1,8768:26668898,23617756:270500 -k1,8768:27598690,23617756:270500 -k1,8768:28888274,23617756:270499 -k1,8768:31118300,23617756:270500 -k1,8769:31966991,23617756:0 +k1,8764:10523651,20745176:-28377088 +) +) +g1,8764:28691032,20745176 +) +) +) +g1,8765:28690151,20745176 +k1,8765:32583029,20745176:3892878 +) +v1,8773:6630773,22110952:0,393216,0 +(1,8783:6630773,29003399:25952256,7285663,616038 +g1,8783:6630773,29003399 +(1,8783:6630773,29003399:25952256,7285663,616038 +(1,8783:6630773,29619437:25952256,7901701,0 +[1,8783:6630773,29619437:25952256,7901701,0 +(1,8783:6630773,29593223:25952256,7849273,0 +r1,8783:6656987,29593223:26214,7849273,0 +[1,8783:6656987,29593223:25899828,7849273,0 +(1,8783:6656987,29003399:25899828,6669625,0 +[1,8783:7246811,29003399:24720180,6669625,0 +(1,8774:7246811,23617756:24720180,1283982,196608 +(1,8773:7246811,23617756:0,1283982,196608 +r1,8783:9812056,23617756:2565245,1480590,196608 +k1,8773:7246811,23617756:-2565245 +) +(1,8773:7246811,23617756:2565245,1283982,196608 +) +k1,8773:10082556,23617756:270500 +k1,8773:10822949,23617756:270500 +k1,8773:11624945,23617756:270499 +k1,8773:15328876,23617756:270500 +k1,8773:16250804,23617756:270500 +k1,8773:18889775,23617756:270500 +k1,8773:20179359,23617756:270499 +k1,8773:22005028,23617756:270500 +k1,8773:23466973,23617756:270500 +k1,8773:26668898,23617756:270500 +k1,8773:27598690,23617756:270500 +k1,8773:28888274,23617756:270499 +k1,8773:31118300,23617756:270500 +k1,8774:31966991,23617756:0 ) -(1,8769:7246811,24459244:24720180,505283,126483 -k1,8768:9612314,24459244:222476 -k1,8768:10596318,24459244:222476 -(1,8768:10596318,24459244:0,452978,115847 -r1,8778:12361431,24459244:1765113,568825,115847 -k1,8768:10596318,24459244:-1765113 +(1,8774:7246811,24459244:24720180,505283,126483 +k1,8773:9612314,24459244:222476 +k1,8773:10596318,24459244:222476 +(1,8773:10596318,24459244:0,452978,115847 +r1,8783:12361431,24459244:1765113,568825,115847 +k1,8773:10596318,24459244:-1765113 ) -(1,8768:10596318,24459244:1765113,452978,115847 -k1,8768:10596318,24459244:3277 -h1,8768:12358154,24459244:0,411205,112570 -) -k1,8768:12757576,24459244:222475 -k1,8768:13666214,24459244:222476 -k1,8768:14757042,24459244:222476 -k1,8768:16316452,24459244:222476 -k1,8768:18087543,24459244:222475 -k1,8768:18961447,24459244:222476 -k1,8768:21387899,24459244:222476 -k1,8768:25711618,24459244:222476 -k1,8768:27208768,24459244:222475 -k1,8768:28450329,24459244:222476 -k1,8768:31966991,24459244:0 -) -(1,8769:7246811,25300732:24720180,513147,126483 -k1,8768:9349752,25300732:234510 -k1,8768:10235689,25300732:234509 -k1,8768:11736355,25300732:234510 -k1,8768:13210805,25300732:234509 -k1,8768:14636760,25300732:234510 -k1,8768:16305198,25300732:234510 -k1,8768:17817004,25300732:234509 -k1,8768:21244428,25300732:234510 -k1,8768:25406510,25300732:234509 -k1,8768:27208641,25300732:234510 -k1,8768:28462235,25300732:234509 -k1,8768:30122153,25300732:234510 -k1,8768:31966991,25300732:0 -) -(1,8769:7246811,26142220:24720180,505283,126483 -k1,8769:31966990,26142220:19816120 -g1,8769:31966990,26142220 -) -v1,8771:7246811,27332686:0,393216,0 -(1,8776:7246811,28282503:24720180,1343033,196608 -g1,8776:7246811,28282503 -g1,8776:7246811,28282503 -g1,8776:7050203,28282503 -(1,8776:7050203,28282503:0,1343033,196608 -r1,8778:32163599,28282503:25113396,1539641,196608 -k1,8776:7050203,28282503:-25113396 -) -(1,8776:7050203,28282503:25113396,1343033,196608 -[1,8776:7246811,28282503:24720180,1146425,0 -(1,8773:7246811,27540304:24720180,404226,76021 -(1,8772:7246811,27540304:0,0,0 -g1,8772:7246811,27540304 -g1,8772:7246811,27540304 -g1,8772:6919131,27540304 -(1,8772:6919131,27540304:0,0,0 -) -g1,8772:7246811,27540304 -) -k1,8773:7246811,27540304:0 -h1,8773:12621287,27540304:0,0,0 -k1,8773:31966991,27540304:19345704 -g1,8773:31966991,27540304 -) -(1,8774:7246811,28206482:24720180,404226,76021 -h1,8774:7246811,28206482:0,0,0 -k1,8774:7246811,28206482:0 -h1,8774:11988996,28206482:0,0,0 -k1,8774:31966992,28206482:19977996 -g1,8774:31966992,28206482 -) -] -) -g1,8776:31966991,28282503 -g1,8776:7246811,28282503 -g1,8776:7246811,28282503 -g1,8776:31966991,28282503 -g1,8776:31966991,28282503 -) -h1,8776:7246811,28479111:0,0,0 -] -) -] -r1,8778:32583029,29593223:26214,7849273,0 -) -] -) -) -g1,8778:32583029,29003399 -) -h1,8778:6630773,29619437:0,0,0 -(1,8782:6630773,32951293:25952256,32768,229376 -(1,8782:6630773,32951293:0,32768,229376 -(1,8782:6630773,32951293:5505024,32768,229376 -r1,8782:12135797,32951293:5505024,262144,229376 -) -k1,8782:6630773,32951293:-5505024 -) -(1,8782:6630773,32951293:25952256,32768,0 -r1,8782:32583029,32951293:25952256,32768,0 -) -) -(1,8782:6630773,34555621:25952256,606339,9436 -(1,8782:6630773,34555621:2464678,575668,0 -g1,8782:6630773,34555621 -g1,8782:9095451,34555621 -) -g1,8782:14141199,34555621 -k1,8782:32583029,34555621:14913896 -g1,8782:32583029,34555621 -) -(1,8785:6630773,35860449:25952256,564462,139132 -(1,8785:6630773,35860449:2899444,527696,0 -g1,8785:6630773,35860449 -g1,8785:9530217,35860449 -) -g1,8785:14155486,35860449 -g1,8785:17349056,35860449 -g1,8785:18318662,35860449 -k1,8785:32583029,35860449:11155142 -g1,8785:32583029,35860449 -) -(1,8789:6630773,37095153:25952256,505283,126483 -k1,8788:10593407,37095153:158269 -k1,8788:13536301,37095153:158269 -k1,8788:15047234,37095153:158270 -k1,8788:16472969,37095153:158269 -k1,8788:19135369,37095153:158269 -k1,8788:21525139,37095153:158269 -k1,8788:24557163,37095153:158270 -k1,8788:27557073,37095153:158269 -k1,8788:32583029,37095153:0 -) -(1,8789:6630773,37936641:25952256,513147,134348 -k1,8788:7607494,37936641:290559 -k1,8788:9219913,37936641:290558 -k1,8788:10169764,37936641:290559 -k1,8788:10816182,37936641:290558 -k1,8788:12979760,37936641:290559 -k1,8788:15998582,37936641:290558 -k1,8788:16916976,37936641:290559 -k1,8788:19745088,37936641:290558 -k1,8788:20493744,37936641:290559 -k1,8788:21315799,37936641:290558 -k1,8788:23327333,37936641:290559 -k1,8788:24269319,37936641:290558 -k1,8788:25652363,37936641:290559 -k1,8788:29672575,37936641:290558 -k1,8788:32583029,37936641:0 -) -(1,8789:6630773,38778129:25952256,513147,126483 -k1,8788:7834810,38778129:256386 -k1,8788:11951922,38778129:256386 -k1,8788:13597671,38778129:256386 -k1,8788:16408650,38778129:256386 -k1,8788:17281074,38778129:256386 -k1,8788:18125973,38778129:256386 -k1,8788:20453298,38778129:256387 -k1,8788:21657335,38778129:256386 -k1,8788:24038398,38778129:256386 -k1,8788:26165837,38778129:256386 -k1,8788:27375772,38778129:256386 -k1,8788:28764620,38778129:256386 -k1,8788:30407748,38778129:256386 -k1,8788:31970267,38778129:256386 -k1,8788:32583029,38778129:0 -) -(1,8789:6630773,39619617:25952256,505283,126483 -k1,8788:10688841,39619617:182924 -k1,8788:13306411,39619617:182907 -k1,8788:14172220,39619617:182924 -k1,8788:17527087,39619617:182924 -k1,8788:18337845,39619617:182923 -k1,8788:19539854,39619617:182924 -k1,8788:21376251,39619617:182924 -k1,8788:22797150,39619617:182924 -k1,8788:23666235,39619617:182923 -(1,8788:23666235,39619617:0,452978,115847 -r1,8788:25431348,39619617:1765113,568825,115847 -k1,8788:23666235,39619617:-1765113 -) -(1,8788:23666235,39619617:1765113,452978,115847 -k1,8788:23666235,39619617:3277 -h1,8788:25428071,39619617:0,411205,112570 -) -k1,8788:25614272,39619617:182924 -k1,8788:26328693,39619617:182924 -k1,8788:26867477,39619617:182924 -k1,8788:29692812,39619617:182923 -k1,8788:31160242,39619617:182924 -k1,8788:32583029,39619617:0 -) -(1,8789:6630773,40461105:25952256,505283,126483 -g1,8788:9880703,40461105 -(1,8788:9880703,40461105:0,452978,115847 -r1,8788:11294104,40461105:1413401,568825,115847 -k1,8788:9880703,40461105:-1413401 -) -(1,8788:9880703,40461105:1413401,452978,115847 -k1,8788:9880703,40461105:3277 -h1,8788:11290827,40461105:0,411205,112570 -) -g1,8788:11667003,40461105 -(1,8788:11667003,40461105:0,452978,115847 -r1,8788:14487252,40461105:2820249,568825,115847 -k1,8788:11667003,40461105:-2820249 -) -(1,8788:11667003,40461105:2820249,452978,115847 -k1,8788:11667003,40461105:3277 -h1,8788:14483975,40461105:0,411205,112570 -) -g1,8788:14686481,40461105 -g1,8788:15417207,40461105 -g1,8788:15972296,40461105 -g1,8788:18813937,40461105 -g1,8788:20297672,40461105 -g1,8788:21919688,40461105 -g1,8788:25169618,40461105 -(1,8788:25169618,40461105:0,452978,115847 -r1,8788:26934731,40461105:1765113,568825,115847 -k1,8788:25169618,40461105:-1765113 -) -(1,8788:25169618,40461105:1765113,452978,115847 -k1,8788:25169618,40461105:3277 -h1,8788:26931454,40461105:0,411205,112570 -) -k1,8789:32583029,40461105:5474628 -g1,8789:32583029,40461105 -) -(1,8791:6630773,41302593:25952256,513147,134348 -h1,8790:6630773,41302593:983040,0,0 -k1,8790:11778700,41302593:360522 -k1,8790:14126929,41302593:360522 -k1,8790:17361206,41302593:360523 -k1,8790:18337766,41302593:360522 -k1,8790:20132216,41302593:360522 -k1,8790:20907419,41302593:360360 -k1,8790:23559735,41302593:360522 -k1,8790:24939343,41302593:360523 -k1,8790:26392350,41302593:360522 -k1,8790:27412164,41302593:360522 -k1,8790:30155575,41302593:360522 -k1,8790:32583029,41302593:0 -) -(1,8791:6630773,42144081:25952256,513147,126483 -(1,8790:6837867,42144081:0,452978,115847 -r1,8790:9306404,42144081:2468537,568825,115847 -k1,8790:6837867,42144081:-2468537 -) -(1,8790:6837867,42144081:2468537,452978,115847 -k1,8790:6837867,42144081:3277 -h1,8790:9303127,42144081:0,411205,112570 -) -k1,8790:9733765,42144081:220267 -k1,8790:10763402,42144081:220267 -k1,8790:12002754,42144081:220267 -k1,8790:15116435,42144081:220266 -k1,8790:16636281,42144081:220267 -k1,8790:18221008,42144081:220267 -k1,8790:19100567,42144081:220267 -k1,8790:20339919,42144081:220267 -k1,8790:22547893,42144081:220267 -k1,8790:25485282,42144081:220266 -k1,8790:26747571,42144081:220267 -k1,8790:27986923,42144081:220267 -k1,8790:29591310,42144081:220267 -k1,8790:32583029,42144081:0 -) -(1,8791:6630773,42985569:25952256,513147,134348 -k1,8790:7682862,42985569:183737 -k1,8790:8959083,42985569:183736 -k1,8790:10161905,42985569:183737 -k1,8790:13975026,42985569:183737 -(1,8790:13975026,42985569:0,452978,115847 -r1,8790:15388427,42985569:1413401,568825,115847 -k1,8790:13975026,42985569:-1413401 -) -(1,8790:13975026,42985569:1413401,452978,115847 -k1,8790:13975026,42985569:3277 -h1,8790:15385150,42985569:0,411205,112570 -) -k1,8790:15572164,42985569:183737 -k1,8790:17145263,42985569:183736 -k1,8790:18437214,42985569:183737 -k1,8790:21982948,42985569:183737 -k1,8790:23435462,42985569:183737 -k1,8790:28292570,42985569:183736 -k1,8790:29423958,42985569:183737 -k1,8790:31923737,42985569:183737 -k1,8790:32583029,42985569:0 -) -(1,8791:6630773,43827057:25952256,513147,126483 -g1,8790:8002441,43827057 -g1,8790:10512469,43827057 -g1,8790:11370990,43827057 -k1,8791:32583029,43827057:20039600 -g1,8791:32583029,43827057 -) -v1,8793:6630773,45017523:0,393216,0 -] -(1,8856:32583029,45706769:0,0,0 -g1,8856:32583029,45706769 -) -) -] -(1,8856:6630773,47279633:25952256,0,0 -h1,8856:6630773,47279633:25952256,0,0 -) -] -h1,8856:4262630,4025873:0,0,0 +(1,8773:10596318,24459244:1765113,452978,115847 +k1,8773:10596318,24459244:3277 +h1,8773:12358154,24459244:0,411205,112570 +) +k1,8773:12757576,24459244:222475 +k1,8773:13666214,24459244:222476 +k1,8773:14757042,24459244:222476 +k1,8773:16316452,24459244:222476 +k1,8773:18087543,24459244:222475 +k1,8773:18961447,24459244:222476 +k1,8773:21387899,24459244:222476 +k1,8773:25711618,24459244:222476 +k1,8773:27208768,24459244:222475 +k1,8773:28450329,24459244:222476 +k1,8773:31966991,24459244:0 +) +(1,8774:7246811,25300732:24720180,513147,126483 +k1,8773:9349752,25300732:234510 +k1,8773:10235689,25300732:234509 +k1,8773:11736355,25300732:234510 +k1,8773:13210805,25300732:234509 +k1,8773:14636760,25300732:234510 +k1,8773:16305198,25300732:234510 +k1,8773:17817004,25300732:234509 +k1,8773:21244428,25300732:234510 +k1,8773:25406510,25300732:234509 +k1,8773:27208641,25300732:234510 +k1,8773:28462235,25300732:234509 +k1,8773:30122153,25300732:234510 +k1,8773:31966991,25300732:0 +) +(1,8774:7246811,26142220:24720180,505283,126483 +k1,8774:31966990,26142220:19816120 +g1,8774:31966990,26142220 +) +v1,8776:7246811,27332686:0,393216,0 +(1,8781:7246811,28282503:24720180,1343033,196608 +g1,8781:7246811,28282503 +g1,8781:7246811,28282503 +g1,8781:7050203,28282503 +(1,8781:7050203,28282503:0,1343033,196608 +r1,8783:32163599,28282503:25113396,1539641,196608 +k1,8781:7050203,28282503:-25113396 +) +(1,8781:7050203,28282503:25113396,1343033,196608 +[1,8781:7246811,28282503:24720180,1146425,0 +(1,8778:7246811,27540304:24720180,404226,76021 +(1,8777:7246811,27540304:0,0,0 +g1,8777:7246811,27540304 +g1,8777:7246811,27540304 +g1,8777:6919131,27540304 +(1,8777:6919131,27540304:0,0,0 +) +g1,8777:7246811,27540304 +) +k1,8778:7246811,27540304:0 +h1,8778:12621287,27540304:0,0,0 +k1,8778:31966991,27540304:19345704 +g1,8778:31966991,27540304 +) +(1,8779:7246811,28206482:24720180,404226,76021 +h1,8779:7246811,28206482:0,0,0 +k1,8779:7246811,28206482:0 +h1,8779:11988996,28206482:0,0,0 +k1,8779:31966992,28206482:19977996 +g1,8779:31966992,28206482 +) +] +) +g1,8781:31966991,28282503 +g1,8781:7246811,28282503 +g1,8781:7246811,28282503 +g1,8781:31966991,28282503 +g1,8781:31966991,28282503 +) +h1,8781:7246811,28479111:0,0,0 +] +) +] +r1,8783:32583029,29593223:26214,7849273,0 +) +] +) +) +g1,8783:32583029,29003399 +) +h1,8783:6630773,29619437:0,0,0 +(1,8787:6630773,32951293:25952256,32768,229376 +(1,8787:6630773,32951293:0,32768,229376 +(1,8787:6630773,32951293:5505024,32768,229376 +r1,8787:12135797,32951293:5505024,262144,229376 +) +k1,8787:6630773,32951293:-5505024 +) +(1,8787:6630773,32951293:25952256,32768,0 +r1,8787:32583029,32951293:25952256,32768,0 +) +) +(1,8787:6630773,34555621:25952256,606339,9436 +(1,8787:6630773,34555621:2464678,575668,0 +g1,8787:6630773,34555621 +g1,8787:9095451,34555621 +) +g1,8787:14141199,34555621 +k1,8787:32583029,34555621:14913896 +g1,8787:32583029,34555621 +) +(1,8790:6630773,35860449:25952256,564462,139132 +(1,8790:6630773,35860449:2899444,527696,0 +g1,8790:6630773,35860449 +g1,8790:9530217,35860449 +) +g1,8790:14155486,35860449 +g1,8790:17349056,35860449 +g1,8790:18318662,35860449 +k1,8790:32583029,35860449:11155142 +g1,8790:32583029,35860449 +) +(1,8794:6630773,37095153:25952256,505283,126483 +k1,8793:10593407,37095153:158269 +k1,8793:13536301,37095153:158269 +k1,8793:15047234,37095153:158270 +k1,8793:16472969,37095153:158269 +k1,8793:19135369,37095153:158269 +k1,8793:21525139,37095153:158269 +k1,8793:24557163,37095153:158270 +k1,8793:27557073,37095153:158269 +k1,8793:32583029,37095153:0 +) +(1,8794:6630773,37936641:25952256,513147,134348 +k1,8793:7607494,37936641:290559 +k1,8793:9219913,37936641:290558 +k1,8793:10169764,37936641:290559 +k1,8793:10816182,37936641:290558 +k1,8793:12979760,37936641:290559 +k1,8793:15998582,37936641:290558 +k1,8793:16916976,37936641:290559 +k1,8793:19745088,37936641:290558 +k1,8793:20493744,37936641:290559 +k1,8793:21315799,37936641:290558 +k1,8793:23327333,37936641:290559 +k1,8793:24269319,37936641:290558 +k1,8793:25652363,37936641:290559 +k1,8793:29672575,37936641:290558 +k1,8793:32583029,37936641:0 +) +(1,8794:6630773,38778129:25952256,513147,126483 +k1,8793:7834810,38778129:256386 +k1,8793:11951922,38778129:256386 +k1,8793:13597671,38778129:256386 +k1,8793:16408650,38778129:256386 +k1,8793:17281074,38778129:256386 +k1,8793:18125973,38778129:256386 +k1,8793:20453298,38778129:256387 +k1,8793:21657335,38778129:256386 +k1,8793:24038398,38778129:256386 +k1,8793:26165837,38778129:256386 +k1,8793:27375772,38778129:256386 +k1,8793:28764620,38778129:256386 +k1,8793:30407748,38778129:256386 +k1,8793:31970267,38778129:256386 +k1,8793:32583029,38778129:0 +) +(1,8794:6630773,39619617:25952256,505283,126483 +k1,8793:10688841,39619617:182924 +k1,8793:13306411,39619617:182907 +k1,8793:14172220,39619617:182924 +k1,8793:17527087,39619617:182924 +k1,8793:18337845,39619617:182923 +k1,8793:19539854,39619617:182924 +k1,8793:21376251,39619617:182924 +k1,8793:22797150,39619617:182924 +k1,8793:23666235,39619617:182923 +(1,8793:23666235,39619617:0,452978,115847 +r1,8793:25431348,39619617:1765113,568825,115847 +k1,8793:23666235,39619617:-1765113 +) +(1,8793:23666235,39619617:1765113,452978,115847 +k1,8793:23666235,39619617:3277 +h1,8793:25428071,39619617:0,411205,112570 +) +k1,8793:25614272,39619617:182924 +k1,8793:26328693,39619617:182924 +k1,8793:26867477,39619617:182924 +k1,8793:29692812,39619617:182923 +k1,8793:31160242,39619617:182924 +k1,8793:32583029,39619617:0 +) +(1,8794:6630773,40461105:25952256,505283,126483 +g1,8793:9880703,40461105 +(1,8793:9880703,40461105:0,452978,115847 +r1,8793:11294104,40461105:1413401,568825,115847 +k1,8793:9880703,40461105:-1413401 +) +(1,8793:9880703,40461105:1413401,452978,115847 +k1,8793:9880703,40461105:3277 +h1,8793:11290827,40461105:0,411205,112570 +) +g1,8793:11667003,40461105 +(1,8793:11667003,40461105:0,452978,115847 +r1,8793:14487252,40461105:2820249,568825,115847 +k1,8793:11667003,40461105:-2820249 +) +(1,8793:11667003,40461105:2820249,452978,115847 +k1,8793:11667003,40461105:3277 +h1,8793:14483975,40461105:0,411205,112570 +) +g1,8793:14686481,40461105 +g1,8793:15417207,40461105 +g1,8793:15972296,40461105 +g1,8793:18813937,40461105 +g1,8793:20297672,40461105 +g1,8793:21919688,40461105 +g1,8793:25169618,40461105 +(1,8793:25169618,40461105:0,452978,115847 +r1,8793:26934731,40461105:1765113,568825,115847 +k1,8793:25169618,40461105:-1765113 +) +(1,8793:25169618,40461105:1765113,452978,115847 +k1,8793:25169618,40461105:3277 +h1,8793:26931454,40461105:0,411205,112570 +) +k1,8794:32583029,40461105:5474628 +g1,8794:32583029,40461105 +) +(1,8796:6630773,41302593:25952256,513147,134348 +h1,8795:6630773,41302593:983040,0,0 +k1,8795:11778700,41302593:360522 +k1,8795:14126929,41302593:360522 +k1,8795:17361206,41302593:360523 +k1,8795:18337766,41302593:360522 +k1,8795:20132216,41302593:360522 +k1,8795:20907419,41302593:360360 +k1,8795:23559735,41302593:360522 +k1,8795:24939343,41302593:360523 +k1,8795:26392350,41302593:360522 +k1,8795:27412164,41302593:360522 +k1,8795:30155575,41302593:360522 +k1,8795:32583029,41302593:0 +) +(1,8796:6630773,42144081:25952256,513147,126483 +(1,8795:6837867,42144081:0,452978,115847 +r1,8795:9306404,42144081:2468537,568825,115847 +k1,8795:6837867,42144081:-2468537 +) +(1,8795:6837867,42144081:2468537,452978,115847 +k1,8795:6837867,42144081:3277 +h1,8795:9303127,42144081:0,411205,112570 +) +k1,8795:9733765,42144081:220267 +k1,8795:10763402,42144081:220267 +k1,8795:12002754,42144081:220267 +k1,8795:15116435,42144081:220266 +k1,8795:16636281,42144081:220267 +k1,8795:18221008,42144081:220267 +k1,8795:19100567,42144081:220267 +k1,8795:20339919,42144081:220267 +k1,8795:22547893,42144081:220267 +k1,8795:25485282,42144081:220266 +k1,8795:26747571,42144081:220267 +k1,8795:27986923,42144081:220267 +k1,8795:29591310,42144081:220267 +k1,8795:32583029,42144081:0 +) +(1,8796:6630773,42985569:25952256,513147,134348 +k1,8795:7682862,42985569:183737 +k1,8795:8959083,42985569:183736 +k1,8795:10161905,42985569:183737 +k1,8795:13975026,42985569:183737 +(1,8795:13975026,42985569:0,452978,115847 +r1,8795:15388427,42985569:1413401,568825,115847 +k1,8795:13975026,42985569:-1413401 +) +(1,8795:13975026,42985569:1413401,452978,115847 +k1,8795:13975026,42985569:3277 +h1,8795:15385150,42985569:0,411205,112570 +) +k1,8795:15572164,42985569:183737 +k1,8795:17145263,42985569:183736 +k1,8795:18437214,42985569:183737 +k1,8795:21982948,42985569:183737 +k1,8795:23435462,42985569:183737 +k1,8795:28292570,42985569:183736 +k1,8795:29423958,42985569:183737 +k1,8795:31923737,42985569:183737 +k1,8795:32583029,42985569:0 +) +(1,8796:6630773,43827057:25952256,513147,126483 +g1,8795:8002441,43827057 +g1,8795:10512469,43827057 +g1,8795:11370990,43827057 +k1,8796:32583029,43827057:20039600 +g1,8796:32583029,43827057 +) +v1,8798:6630773,45017523:0,393216,0 +] +(1,8861:32583029,45706769:0,0,0 +g1,8861:32583029,45706769 +) +) +] +(1,8861:6630773,47279633:25952256,0,0 +h1,8861:6630773,47279633:25952256,0,0 +) +] +h1,8861:4262630,4025873:0,0,0 ] !13901 }162 !12 {163 -[1,8885:4262630,47279633:28320399,43253760,0 -(1,8885:4262630,4025873:0,0,0 -[1,8885:-473657,4025873:25952256,0,0 -(1,8885:-473657,-710414:25952256,0,0 -h1,8885:-473657,-710414:0,0,0 -(1,8885:-473657,-710414:0,0,0 -(1,8885:-473657,-710414:0,0,0 -g1,8885:-473657,-710414 -(1,8885:-473657,-710414:65781,0,65781 -g1,8885:-407876,-710414 -[1,8885:-407876,-644633:0,0,0 +[1,8890:4262630,47279633:28320399,43253760,0 +(1,8890:4262630,4025873:0,0,0 +[1,8890:-473657,4025873:25952256,0,0 +(1,8890:-473657,-710414:25952256,0,0 +h1,8890:-473657,-710414:0,0,0 +(1,8890:-473657,-710414:0,0,0 +(1,8890:-473657,-710414:0,0,0 +g1,8890:-473657,-710414 +(1,8890:-473657,-710414:65781,0,65781 +g1,8890:-407876,-710414 +[1,8890:-407876,-644633:0,0,0 ] ) -k1,8885:-473657,-710414:-65781 +k1,8890:-473657,-710414:-65781 ) ) -k1,8885:25478599,-710414:25952256 -g1,8885:25478599,-710414 +k1,8890:25478599,-710414:25952256 +g1,8890:25478599,-710414 ) ] ) -[1,8885:6630773,47279633:25952256,43253760,0 -[1,8885:6630773,4812305:25952256,786432,0 -(1,8885:6630773,4812305:25952256,505283,134348 -(1,8885:6630773,4812305:25952256,505283,134348 -g1,8885:3078558,4812305 -[1,8885:3078558,4812305:0,0,0 -(1,8885:3078558,2439708:0,1703936,0 -k1,8885:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8885:2537886,2439708:1179648,16384,0 +[1,8890:6630773,47279633:25952256,43253760,0 +[1,8890:6630773,4812305:25952256,786432,0 +(1,8890:6630773,4812305:25952256,505283,134348 +(1,8890:6630773,4812305:25952256,505283,134348 +g1,8890:3078558,4812305 +[1,8890:3078558,4812305:0,0,0 +(1,8890:3078558,2439708:0,1703936,0 +k1,8890:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8890:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8885:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8890:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8885:3078558,4812305:0,0,0 -(1,8885:3078558,2439708:0,1703936,0 -g1,8885:29030814,2439708 -g1,8885:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8885:36151628,1915420:16384,1179648,0 +[1,8890:3078558,4812305:0,0,0 +(1,8890:3078558,2439708:0,1703936,0 +g1,8890:29030814,2439708 +g1,8890:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8890:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8885:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8890:37855564,2439708:1179648,16384,0 ) ) -k1,8885:3078556,2439708:-34777008 +k1,8890:3078556,2439708:-34777008 ) ] -[1,8885:3078558,4812305:0,0,0 -(1,8885:3078558,49800853:0,16384,2228224 -k1,8885:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8885:2537886,49800853:1179648,16384,0 +[1,8890:3078558,4812305:0,0,0 +(1,8890:3078558,49800853:0,16384,2228224 +k1,8890:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8890:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8885:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8890:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8885:3078558,4812305:0,0,0 -(1,8885:3078558,49800853:0,16384,2228224 -g1,8885:29030814,49800853 -g1,8885:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8885:36151628,51504789:16384,1179648,0 +[1,8890:3078558,4812305:0,0,0 +(1,8890:3078558,49800853:0,16384,2228224 +g1,8890:29030814,49800853 +g1,8890:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8890:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8885:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8890:37855564,49800853:1179648,16384,0 ) ) -k1,8885:3078556,49800853:-34777008 -) -] -g1,8885:6630773,4812305 -k1,8885:24573876,4812305:16747726 -g1,8885:25960617,4812305 -g1,8885:26609423,4812305 -g1,8885:29923578,4812305 -) -) -] -[1,8885:6630773,45706769:25952256,40108032,0 -(1,8885:6630773,45706769:25952256,40108032,0 -(1,8885:6630773,45706769:0,0,0 -g1,8885:6630773,45706769 -) -[1,8885:6630773,45706769:25952256,40108032,0 -v1,8856:6630773,6254097:0,393216,0 -(1,8856:6630773,42656768:25952256,36795887,196608 -g1,8856:6630773,42656768 -g1,8856:6630773,42656768 -g1,8856:6434165,42656768 -(1,8856:6434165,42656768:0,36795887,196608 -r1,8856:32779637,42656768:26345472,36992495,196608 -k1,8856:6434165,42656768:-26345472 -) -(1,8856:6434165,42656768:26345472,36795887,196608 -[1,8856:6630773,42656768:25952256,36599279,0 -(1,8795:6630773,6461715:25952256,404226,76021 -(1,8794:6630773,6461715:0,0,0 -g1,8794:6630773,6461715 -g1,8794:6630773,6461715 -g1,8794:6303093,6461715 -(1,8794:6303093,6461715:0,0,0 -) -g1,8794:6630773,6461715 -) -k1,8795:6630773,6461715:0 -h1,8795:9792230,6461715:0,0,0 -k1,8795:32583030,6461715:22790800 -g1,8795:32583030,6461715 -) -(1,8796:6630773,7127893:25952256,410518,107478 -h1,8796:6630773,7127893:0,0,0 -g1,8796:8211502,7127893 -g1,8796:9159940,7127893 -g1,8796:16431291,7127893 -g1,8796:20541185,7127893 -g1,8796:21173477,7127893 -g1,8796:21489623,7127893 -g1,8796:24334935,7127893 -g1,8796:25915664,7127893 -g1,8796:26547956,7127893 -h1,8796:28128684,7127893:0,0,0 -k1,8796:32583029,7127893:4454345 -g1,8796:32583029,7127893 -) -(1,8797:6630773,7794071:25952256,410518,76021 -h1,8797:6630773,7794071:0,0,0 -k1,8797:6630773,7794071:0 -h1,8797:10108375,7794071:0,0,0 -k1,8797:32583029,7794071:22474654 -g1,8797:32583029,7794071 -) -(1,8808:6630773,8525785:25952256,410518,101187 -(1,8799:6630773,8525785:0,0,0 -g1,8799:6630773,8525785 -g1,8799:6630773,8525785 -g1,8799:6303093,8525785 -(1,8799:6303093,8525785:0,0,0 -) -g1,8799:6630773,8525785 -) -g1,8808:7579210,8525785 -g1,8808:10424521,8525785 -g1,8808:11372958,8525785 -g1,8808:14218269,8525785 -h1,8808:15798997,8525785:0,0,0 -k1,8808:32583029,8525785:16784032 -g1,8808:32583029,8525785 -) -(1,8808:6630773,9191963:25952256,379060,0 -h1,8808:6630773,9191963:0,0,0 -h1,8808:7263064,9191963:0,0,0 -k1,8808:32583028,9191963:25319964 -g1,8808:32583028,9191963 -) -(1,8808:6630773,9858141:25952256,410518,101187 -h1,8808:6630773,9858141:0,0,0 -g1,8808:7579210,9858141 -g1,8808:7895356,9858141 -g1,8808:8211502,9858141 -g1,8808:8527648,9858141 -g1,8808:8843794,9858141 -g1,8808:9159940,9858141 -g1,8808:9476086,9858141 -g1,8808:9792232,9858141 -g1,8808:10108378,9858141 -g1,8808:10424524,9858141 -g1,8808:10740670,9858141 -g1,8808:11056816,9858141 -g1,8808:11372962,9858141 -g1,8808:11689108,9858141 -g1,8808:12637545,9858141 -g1,8808:12953691,9858141 -g1,8808:15166711,9858141 -g1,8808:17379731,9858141 -g1,8808:18012023,9858141 -g1,8808:19276606,9858141 -g1,8808:20225043,9858141 -g1,8808:21489626,9858141 -g1,8808:22438063,9858141 -g1,8808:22754209,9858141 -g1,8808:23070355,9858141 -g1,8808:23386501,9858141 -k1,8808:23386501,9858141:0 -h1,8808:25283375,9858141:0,0,0 -k1,8808:32583029,9858141:7299654 -g1,8808:32583029,9858141 -) -(1,8808:6630773,10524319:25952256,404226,101187 -h1,8808:6630773,10524319:0,0,0 -g1,8808:7579210,10524319 -g1,8808:11372958,10524319 -g1,8808:11689104,10524319 -g1,8808:12005250,10524319 -g1,8808:12637542,10524319 -g1,8808:15166708,10524319 -g1,8808:15482854,10524319 -g1,8808:15799000,10524319 -g1,8808:18012020,10524319 -g1,8808:18328166,10524319 -g1,8808:18644312,10524319 -g1,8808:18960458,10524319 -g1,8808:19276604,10524319 -g1,8808:19592750,10524319 -g1,8808:20225042,10524319 -g1,8808:20541188,10524319 -g1,8808:20857334,10524319 -g1,8808:21173480,10524319 -g1,8808:22438063,10524319 -g1,8808:23070355,10524319 -g1,8808:25599521,10524319 -h1,8808:26547958,10524319:0,0,0 -k1,8808:32583029,10524319:6035071 -g1,8808:32583029,10524319 -) -(1,8808:6630773,11190497:25952256,404226,101187 -h1,8808:6630773,11190497:0,0,0 -g1,8808:7579210,11190497 -g1,8808:10108376,11190497 -g1,8808:10424522,11190497 -g1,8808:10740668,11190497 -g1,8808:11056814,11190497 -g1,8808:11372960,11190497 -g1,8808:11689106,11190497 -g1,8808:12005252,11190497 -g1,8808:12637544,11190497 -g1,8808:15166710,11190497 -g1,8808:15482856,11190497 -g1,8808:15799002,11190497 -g1,8808:16115148,11190497 -g1,8808:16431294,11190497 -g1,8808:18012023,11190497 -g1,8808:18328169,11190497 -g1,8808:18644315,11190497 -g1,8808:18960461,11190497 -g1,8808:19276607,11190497 -g1,8808:19592753,11190497 -g1,8808:20225045,11190497 -g1,8808:20541191,11190497 -g1,8808:20857337,11190497 -g1,8808:21173483,11190497 -g1,8808:22438066,11190497 -g1,8808:23070358,11190497 -g1,8808:25599524,11190497 -h1,8808:26547961,11190497:0,0,0 -k1,8808:32583029,11190497:6035068 -g1,8808:32583029,11190497 -) -(1,8808:6630773,11856675:25952256,404226,6290 -h1,8808:6630773,11856675:0,0,0 -g1,8808:7579210,11856675 -g1,8808:10740667,11856675 -g1,8808:11056813,11856675 -g1,8808:11372959,11856675 -h1,8808:12321396,11856675:0,0,0 -k1,8808:32583028,11856675:20261632 -g1,8808:32583028,11856675 -) -(1,8808:6630773,12522853:25952256,379060,0 -h1,8808:6630773,12522853:0,0,0 -g1,8808:7579210,12522853 -k1,8808:7579210,12522853:0 -h1,8808:8527648,12522853:0,0,0 -k1,8808:32583028,12522853:24055380 -g1,8808:32583028,12522853 -) -(1,8808:6630773,13189031:25952256,410518,107478 -h1,8808:6630773,13189031:0,0,0 -g1,8808:7579210,13189031 -g1,8808:10108376,13189031 -g1,8808:12321396,13189031 -g1,8808:12637542,13189031 -g1,8808:13269834,13189031 -g1,8808:15166709,13189031 -g1,8808:17063583,13189031 -g1,8808:18644312,13189031 -g1,8808:20225041,13189031 -g1,8808:21489625,13189031 -g1,8808:23070354,13189031 -g1,8808:24334938,13189031 -g1,8808:25599521,13189031 -g1,8808:26231813,13189031 -g1,8808:26864105,13189031 -h1,8808:27180251,13189031:0,0,0 -k1,8808:32583029,13189031:5402778 -g1,8808:32583029,13189031 -) -(1,8810:6630773,14510569:25952256,410518,101187 -(1,8809:6630773,14510569:0,0,0 -g1,8809:6630773,14510569 -g1,8809:6630773,14510569 -g1,8809:6303093,14510569 -(1,8809:6303093,14510569:0,0,0 -) -g1,8809:6630773,14510569 -) -k1,8810:6630773,14510569:0 -h1,8810:10740667,14510569:0,0,0 -k1,8810:32583029,14510569:21842362 -g1,8810:32583029,14510569 -) -(1,8855:6630773,15242283:25952256,404226,107478 -(1,8812:6630773,15242283:0,0,0 -g1,8812:6630773,15242283 -g1,8812:6630773,15242283 -g1,8812:6303093,15242283 -(1,8812:6303093,15242283:0,0,0 -) -g1,8812:6630773,15242283 -) -g1,8855:7579210,15242283 -g1,8855:10424521,15242283 -g1,8855:14534415,15242283 -h1,8855:14850561,15242283:0,0,0 -k1,8855:32583029,15242283:17732468 -g1,8855:32583029,15242283 -) -(1,8855:6630773,15908461:25952256,379060,0 -h1,8855:6630773,15908461:0,0,0 -h1,8855:7263064,15908461:0,0,0 -k1,8855:32583028,15908461:25319964 -g1,8855:32583028,15908461 -) -(1,8855:6630773,16574639:25952256,404226,7863 -h1,8855:6630773,16574639:0,0,0 -g1,8855:7579210,16574639 -h1,8855:9159938,16574639:0,0,0 -k1,8855:32583030,16574639:23423092 -g1,8855:32583030,16574639 -) -(1,8855:6630773,17240817:25952256,410518,107478 -h1,8855:6630773,17240817:0,0,0 -g1,8855:7579210,17240817 -g1,8855:11056813,17240817 -g1,8855:11689105,17240817 -g1,8855:15798999,17240817 -g1,8855:16431291,17240817 -g1,8855:19276603,17240817 -g1,8855:20857332,17240817 -g1,8855:21489624,17240817 -h1,8855:23070352,17240817:0,0,0 -k1,8855:32583029,17240817:9512677 -g1,8855:32583029,17240817 -) -(1,8855:6630773,17906995:25952256,379060,0 -h1,8855:6630773,17906995:0,0,0 -h1,8855:7263064,17906995:0,0,0 -k1,8855:32583028,17906995:25319964 -g1,8855:32583028,17906995 -) -(1,8855:6630773,18573173:25952256,404226,6290 -h1,8855:6630773,18573173:0,0,0 -g1,8855:7579210,18573173 -h1,8855:10740667,18573173:0,0,0 -k1,8855:32583029,18573173:21842362 -g1,8855:32583029,18573173 -) -(1,8855:6630773,19239351:25952256,404226,82312 -h1,8855:6630773,19239351:0,0,0 -g1,8855:7579210,19239351 -g1,8855:7895356,19239351 -g1,8855:8211502,19239351 -g1,8855:8527648,19239351 -g1,8855:9792231,19239351 -g1,8855:10108377,19239351 -g1,8855:10424523,19239351 -g1,8855:10740669,19239351 -g1,8855:11056815,19239351 -g1,8855:12005252,19239351 -g1,8855:14218272,19239351 -g1,8855:14534418,19239351 -g1,8855:14850564,19239351 -g1,8855:15166710,19239351 -g1,8855:15482856,19239351 -g1,8855:16431293,19239351 -g1,8855:16747439,19239351 -g1,8855:17063585,19239351 -g1,8855:17379731,19239351 -h1,8855:18328168,19239351:0,0,0 -k1,8855:32583029,19239351:14254861 -g1,8855:32583029,19239351 -) -(1,8855:6630773,19905529:25952256,388497,9436 -h1,8855:6630773,19905529:0,0,0 -g1,8855:7579210,19905529 -g1,8855:9792230,19905529 -g1,8855:12005250,19905529 -g1,8855:12321396,19905529 -g1,8855:14218270,19905529 -g1,8855:14534416,19905529 -g1,8855:16431290,19905529 -g1,8855:16747436,19905529 -h1,8855:18328164,19905529:0,0,0 -k1,8855:32583029,19905529:14254865 -g1,8855:32583029,19905529 -) -(1,8855:6630773,20571707:25952256,379060,0 -h1,8855:6630773,20571707:0,0,0 -h1,8855:7263064,20571707:0,0,0 -k1,8855:32583028,20571707:25319964 -g1,8855:32583028,20571707 -) -(1,8855:6630773,21237885:25952256,410518,7863 -h1,8855:6630773,21237885:0,0,0 -g1,8855:7579210,21237885 -h1,8855:11689104,21237885:0,0,0 -k1,8855:32583028,21237885:20893924 -g1,8855:32583028,21237885 -) -(1,8855:6630773,21904063:25952256,404226,76021 -h1,8855:6630773,21904063:0,0,0 -g1,8855:7579210,21904063 -g1,8855:7895356,21904063 -g1,8855:8211502,21904063 -g1,8855:8527648,21904063 -g1,8855:8843794,21904063 -g1,8855:9159940,21904063 -g1,8855:9476086,21904063 -g1,8855:9792232,21904063 -g1,8855:10108378,21904063 -g1,8855:10424524,21904063 -g1,8855:10740670,21904063 -g1,8855:11056816,21904063 -g1,8855:11372962,21904063 -g1,8855:11689108,21904063 -g1,8855:12005254,21904063 -g1,8855:12321400,21904063 -g1,8855:12637546,21904063 -g1,8855:12953692,21904063 -g1,8855:13269838,21904063 -g1,8855:16115149,21904063 -g1,8855:17695878,21904063 -g1,8855:19592752,21904063 -g1,8855:20225044,21904063 -g1,8855:22121918,21904063 -k1,8855:22121918,21904063:0 -h1,8855:24651083,21904063:0,0,0 -k1,8855:32583029,21904063:7931946 -g1,8855:32583029,21904063 -) -(1,8855:6630773,22570241:25952256,404226,101187 -h1,8855:6630773,22570241:0,0,0 -g1,8855:7579210,22570241 -g1,8855:11372958,22570241 -g1,8855:11689104,22570241 -g1,8855:12005250,22570241 -g1,8855:12321396,22570241 -g1,8855:12637542,22570241 -g1,8855:12953688,22570241 -g1,8855:13269834,22570241 -g1,8855:13585980,22570241 -g1,8855:16115146,22570241 -g1,8855:16431292,22570241 -g1,8855:16747438,22570241 -g1,8855:17063584,22570241 -g1,8855:19592750,22570241 -g1,8855:19908896,22570241 -g1,8855:20225042,22570241 -g1,8855:22121916,22570241 -g1,8855:22438062,22570241 -g1,8855:22754208,22570241 -g1,8855:24967228,22570241 -h1,8855:25915665,22570241:0,0,0 -k1,8855:32583029,22570241:6667364 -g1,8855:32583029,22570241 -) -(1,8855:6630773,23236419:25952256,404226,101187 -h1,8855:6630773,23236419:0,0,0 -g1,8855:7579210,23236419 -g1,8855:13269833,23236419 -g1,8855:13585979,23236419 -g1,8855:16115145,23236419 -g1,8855:16431291,23236419 -g1,8855:16747437,23236419 -g1,8855:17063583,23236419 -g1,8855:19592749,23236419 -g1,8855:19908895,23236419 -g1,8855:20225041,23236419 -g1,8855:22121915,23236419 -g1,8855:22438061,23236419 -g1,8855:22754207,23236419 -g1,8855:24967227,23236419 -h1,8855:25915664,23236419:0,0,0 -k1,8855:32583029,23236419:6667365 -g1,8855:32583029,23236419 -) -(1,8855:6630773,23902597:25952256,404226,107478 -h1,8855:6630773,23902597:0,0,0 -g1,8855:7579210,23902597 -g1,8855:12953687,23902597 -g1,8855:13269833,23902597 -g1,8855:13585979,23902597 -g1,8855:16115145,23902597 -g1,8855:16431291,23902597 -g1,8855:16747437,23902597 -g1,8855:17063583,23902597 -g1,8855:19592749,23902597 -g1,8855:19908895,23902597 -g1,8855:20225041,23902597 -g1,8855:22121915,23902597 -g1,8855:22438061,23902597 -g1,8855:22754207,23902597 -g1,8855:24967227,23902597 -h1,8855:25915664,23902597:0,0,0 -k1,8855:32583029,23902597:6667365 -g1,8855:32583029,23902597 -) -(1,8855:6630773,24568775:25952256,379060,0 -h1,8855:6630773,24568775:0,0,0 -g1,8855:7579210,24568775 -k1,8855:7579210,24568775:0 -h1,8855:8527648,24568775:0,0,0 -k1,8855:32583028,24568775:24055380 -g1,8855:32583028,24568775 -) -(1,8855:6630773,25234953:25952256,410518,107478 -h1,8855:6630773,25234953:0,0,0 -g1,8855:7579210,25234953 -g1,8855:10108376,25234953 -g1,8855:12321396,25234953 -g1,8855:12637542,25234953 -g1,8855:13269834,25234953 -g1,8855:15166709,25234953 -g1,8855:17063583,25234953 -g1,8855:18644312,25234953 -g1,8855:20225041,25234953 -g1,8855:21489625,25234953 -g1,8855:23070354,25234953 -g1,8855:24334938,25234953 -g1,8855:25599521,25234953 -g1,8855:26231813,25234953 -g1,8855:26864105,25234953 -h1,8855:27180251,25234953:0,0,0 -k1,8855:32583029,25234953:5402778 -g1,8855:32583029,25234953 -) -(1,8855:6630773,25901131:25952256,379060,0 -h1,8855:6630773,25901131:0,0,0 -h1,8855:7263064,25901131:0,0,0 -k1,8855:32583028,25901131:25319964 -g1,8855:32583028,25901131 -) -(1,8855:6630773,26567309:25952256,410518,107478 -h1,8855:6630773,26567309:0,0,0 -g1,8855:7579210,26567309 -g1,8855:10424521,26567309 -g1,8855:13269832,26567309 -g1,8855:15482852,26567309 -g1,8855:17695872,26567309 -g1,8855:18644309,26567309 -g1,8855:19908892,26567309 -g1,8855:22438058,26567309 -g1,8855:23386495,26567309 -h1,8855:25599515,26567309:0,0,0 -k1,8855:32583029,26567309:6983514 -g1,8855:32583029,26567309 -) -(1,8855:6630773,27233487:25952256,404226,107478 -h1,8855:6630773,27233487:0,0,0 -g1,8855:7579210,27233487 -g1,8855:10424521,27233487 -g1,8855:13902124,27233487 -g1,8855:14218270,27233487 -g1,8855:19276601,27233487 -g1,8855:22754204,27233487 -g1,8855:23070350,27233487 -h1,8855:24967224,27233487:0,0,0 -k1,8855:32583029,27233487:7615805 -g1,8855:32583029,27233487 -) -(1,8855:6630773,27899665:25952256,404226,101187 -h1,8855:6630773,27899665:0,0,0 -g1,8855:7579210,27899665 -g1,8855:11689104,27899665 -g1,8855:12005250,27899665 -g1,8855:13585979,27899665 -g1,8855:14534416,27899665 -g1,8855:15166708,27899665 -g1,8855:16431291,27899665 -g1,8855:17695874,27899665 -g1,8855:18960457,27899665 -g1,8855:19276603,27899665 -g1,8855:22121915,27899665 -g1,8855:22754207,27899665 -k1,8855:22754207,27899665:0 -h1,8855:24967227,27899665:0,0,0 -k1,8855:32583029,27899665:7615802 -g1,8855:32583029,27899665 -) -(1,8855:6630773,28565843:25952256,379060,0 -h1,8855:6630773,28565843:0,0,0 -h1,8855:7263064,28565843:0,0,0 -k1,8855:32583028,28565843:25319964 -g1,8855:32583028,28565843 -) -(1,8855:6630773,29232021:25952256,379060,0 -h1,8855:6630773,29232021:0,0,0 -h1,8855:7263064,29232021:0,0,0 -k1,8855:32583028,29232021:25319964 -g1,8855:32583028,29232021 -) -(1,8855:6630773,29898199:25952256,404226,101187 -h1,8855:6630773,29898199:0,0,0 -g1,8855:7579210,29898199 -g1,8855:10424521,29898199 -g1,8855:14218269,29898199 -h1,8855:14534415,29898199:0,0,0 -k1,8855:32583029,29898199:18048614 -g1,8855:32583029,29898199 -) -(1,8855:6630773,30564377:25952256,379060,0 -h1,8855:6630773,30564377:0,0,0 -h1,8855:7263064,30564377:0,0,0 -k1,8855:32583028,30564377:25319964 -g1,8855:32583028,30564377 -) -(1,8855:6630773,31230555:25952256,404226,7863 -h1,8855:6630773,31230555:0,0,0 -g1,8855:7579210,31230555 -h1,8855:9159938,31230555:0,0,0 -k1,8855:32583030,31230555:23423092 -g1,8855:32583030,31230555 -) -(1,8855:6630773,31896733:25952256,410518,101187 -h1,8855:6630773,31896733:0,0,0 -g1,8855:7579210,31896733 -g1,8855:11056813,31896733 -g1,8855:11689105,31896733 -g1,8855:15482853,31896733 -g1,8855:16115145,31896733 -g1,8855:18960457,31896733 -g1,8855:20541186,31896733 -g1,8855:21173478,31896733 -h1,8855:22754206,31896733:0,0,0 -k1,8855:32583029,31896733:9828823 -g1,8855:32583029,31896733 -) -(1,8855:6630773,32562911:25952256,379060,0 -h1,8855:6630773,32562911:0,0,0 -h1,8855:7263064,32562911:0,0,0 -k1,8855:32583028,32562911:25319964 -g1,8855:32583028,32562911 -) -(1,8855:6630773,33229089:25952256,404226,6290 -h1,8855:6630773,33229089:0,0,0 -g1,8855:7579210,33229089 -h1,8855:10740667,33229089:0,0,0 -k1,8855:32583029,33229089:21842362 -g1,8855:32583029,33229089 -) -(1,8855:6630773,33895267:25952256,404226,82312 -h1,8855:6630773,33895267:0,0,0 -g1,8855:7579210,33895267 -g1,8855:7895356,33895267 -g1,8855:8211502,33895267 -g1,8855:8527648,33895267 -g1,8855:9792231,33895267 -g1,8855:10108377,33895267 -g1,8855:10424523,33895267 -g1,8855:10740669,33895267 -g1,8855:11056815,33895267 -g1,8855:12005252,33895267 -g1,8855:14218272,33895267 -g1,8855:14534418,33895267 -g1,8855:14850564,33895267 -g1,8855:15166710,33895267 -g1,8855:15482856,33895267 -g1,8855:16431293,33895267 -g1,8855:16747439,33895267 -g1,8855:17063585,33895267 -g1,8855:17379731,33895267 -h1,8855:18328168,33895267:0,0,0 -k1,8855:32583029,33895267:14254861 -g1,8855:32583029,33895267 -) -(1,8855:6630773,34561445:25952256,388497,9436 -h1,8855:6630773,34561445:0,0,0 -g1,8855:7579210,34561445 -g1,8855:9792230,34561445 -g1,8855:12005250,34561445 -g1,8855:14218270,34561445 -g1,8855:14534416,34561445 -g1,8855:16431290,34561445 -g1,8855:16747436,34561445 -h1,8855:18328164,34561445:0,0,0 -k1,8855:32583029,34561445:14254865 -g1,8855:32583029,34561445 -) -(1,8855:6630773,35227623:25952256,379060,0 -h1,8855:6630773,35227623:0,0,0 -h1,8855:7263064,35227623:0,0,0 -k1,8855:32583028,35227623:25319964 -g1,8855:32583028,35227623 -) -(1,8855:6630773,35893801:25952256,410518,7863 -h1,8855:6630773,35893801:0,0,0 -g1,8855:7579210,35893801 -h1,8855:11689104,35893801:0,0,0 -k1,8855:32583028,35893801:20893924 -g1,8855:32583028,35893801 -) -(1,8855:6630773,36559979:25952256,404226,76021 -h1,8855:6630773,36559979:0,0,0 -g1,8855:7579210,36559979 -g1,8855:7895356,36559979 -g1,8855:8211502,36559979 -g1,8855:8527648,36559979 -g1,8855:8843794,36559979 -g1,8855:9159940,36559979 -g1,8855:9476086,36559979 -g1,8855:9792232,36559979 -g1,8855:10108378,36559979 -g1,8855:10424524,36559979 -g1,8855:10740670,36559979 -g1,8855:11056816,36559979 -g1,8855:11372962,36559979 -g1,8855:11689108,36559979 -g1,8855:12005254,36559979 -g1,8855:12321400,36559979 -g1,8855:12637546,36559979 -g1,8855:12953692,36559979 -g1,8855:13269838,36559979 -g1,8855:16115149,36559979 -g1,8855:17695878,36559979 -g1,8855:19592752,36559979 -g1,8855:20225044,36559979 -g1,8855:22121918,36559979 -k1,8855:22121918,36559979:0 -h1,8855:24651083,36559979:0,0,0 -k1,8855:32583029,36559979:7931946 -g1,8855:32583029,36559979 -) -(1,8855:6630773,37226157:25952256,404226,101187 -h1,8855:6630773,37226157:0,0,0 -g1,8855:7579210,37226157 -g1,8855:11372958,37226157 -g1,8855:11689104,37226157 -g1,8855:12005250,37226157 -g1,8855:12321396,37226157 -g1,8855:12637542,37226157 -g1,8855:12953688,37226157 -g1,8855:13269834,37226157 -g1,8855:13585980,37226157 -g1,8855:16115146,37226157 -g1,8855:16431292,37226157 -g1,8855:16747438,37226157 -g1,8855:17063584,37226157 -g1,8855:19592750,37226157 -g1,8855:19908896,37226157 -g1,8855:20225042,37226157 -g1,8855:20541188,37226157 -g1,8855:22121917,37226157 -g1,8855:24967228,37226157 -h1,8855:25915665,37226157:0,0,0 -k1,8855:32583029,37226157:6667364 -g1,8855:32583029,37226157 -) -(1,8855:6630773,37892335:25952256,404226,101187 -h1,8855:6630773,37892335:0,0,0 -g1,8855:7579210,37892335 -g1,8855:13269833,37892335 -g1,8855:13585979,37892335 -g1,8855:16115145,37892335 -g1,8855:16431291,37892335 -g1,8855:16747437,37892335 -g1,8855:17063583,37892335 -g1,8855:19592749,37892335 -g1,8855:19908895,37892335 -g1,8855:20225041,37892335 -g1,8855:22121915,37892335 -g1,8855:22438061,37892335 -g1,8855:23070353,37892335 -g1,8855:24967227,37892335 -h1,8855:25915664,37892335:0,0,0 -k1,8855:32583029,37892335:6667365 -g1,8855:32583029,37892335 -) -(1,8855:6630773,38558513:25952256,404226,107478 -h1,8855:6630773,38558513:0,0,0 -g1,8855:7579210,38558513 -g1,8855:12953687,38558513 -g1,8855:13269833,38558513 -g1,8855:13585979,38558513 -g1,8855:16115145,38558513 -g1,8855:16431291,38558513 -g1,8855:16747437,38558513 -g1,8855:17063583,38558513 -g1,8855:19592749,38558513 -g1,8855:19908895,38558513 -g1,8855:20225041,38558513 -g1,8855:22121915,38558513 -g1,8855:22438061,38558513 -g1,8855:23070353,38558513 -g1,8855:24967227,38558513 -h1,8855:25915664,38558513:0,0,0 -k1,8855:32583029,38558513:6667365 -g1,8855:32583029,38558513 -) -(1,8855:6630773,39224691:25952256,379060,0 -h1,8855:6630773,39224691:0,0,0 -g1,8855:7579210,39224691 -k1,8855:7579210,39224691:0 -h1,8855:8527648,39224691:0,0,0 -k1,8855:32583028,39224691:24055380 -g1,8855:32583028,39224691 -) -(1,8855:6630773,39890869:25952256,410518,107478 -h1,8855:6630773,39890869:0,0,0 -g1,8855:7579210,39890869 -g1,8855:10108376,39890869 -g1,8855:12321396,39890869 -g1,8855:12637542,39890869 -g1,8855:13269834,39890869 -g1,8855:15166709,39890869 -g1,8855:17063583,39890869 -g1,8855:18644312,39890869 -g1,8855:20225041,39890869 -g1,8855:21489625,39890869 -g1,8855:23070354,39890869 -g1,8855:24334938,39890869 -g1,8855:25599521,39890869 -g1,8855:26231813,39890869 -g1,8855:26864105,39890869 -h1,8855:27180251,39890869:0,0,0 -k1,8855:32583029,39890869:5402778 -g1,8855:32583029,39890869 -) -(1,8855:6630773,40557047:25952256,379060,0 -h1,8855:6630773,40557047:0,0,0 -h1,8855:7263064,40557047:0,0,0 -k1,8855:32583028,40557047:25319964 -g1,8855:32583028,40557047 -) -(1,8855:6630773,41223225:25952256,410518,107478 -h1,8855:6630773,41223225:0,0,0 -g1,8855:7579210,41223225 -g1,8855:10424521,41223225 -g1,8855:13269832,41223225 -g1,8855:15482852,41223225 -g1,8855:17695872,41223225 -g1,8855:18644309,41223225 -g1,8855:19908892,41223225 -g1,8855:22438058,41223225 -g1,8855:23386495,41223225 -h1,8855:25599515,41223225:0,0,0 -k1,8855:32583029,41223225:6983514 -g1,8855:32583029,41223225 -) -(1,8855:6630773,41889403:25952256,404226,107478 -h1,8855:6630773,41889403:0,0,0 -g1,8855:7579210,41889403 -g1,8855:10424521,41889403 -g1,8855:13902124,41889403 -g1,8855:14218270,41889403 -g1,8855:19276601,41889403 -g1,8855:22754204,41889403 -g1,8855:23070350,41889403 -h1,8855:24967224,41889403:0,0,0 -k1,8855:32583029,41889403:7615805 -g1,8855:32583029,41889403 -) -(1,8855:6630773,42555581:25952256,404226,101187 -h1,8855:6630773,42555581:0,0,0 -g1,8855:7579210,42555581 -g1,8855:11689104,42555581 -g1,8855:12005250,42555581 -g1,8855:12321396,42555581 -g1,8855:13585979,42555581 -g1,8855:14534416,42555581 -g1,8855:15166708,42555581 -g1,8855:16431291,42555581 -g1,8855:17695874,42555581 -g1,8855:18960457,42555581 -g1,8855:19276603,42555581 -g1,8855:22121915,42555581 -g1,8855:22754207,42555581 -k1,8855:22754207,42555581:0 -h1,8855:24967227,42555581:0,0,0 -k1,8855:32583029,42555581:7615802 -g1,8855:32583029,42555581 -) -] -) -g1,8856:32583029,42656768 -g1,8856:6630773,42656768 -g1,8856:6630773,42656768 -g1,8856:32583029,42656768 -g1,8856:32583029,42656768 -) -h1,8856:6630773,42853376:0,0,0 -v1,8860:6630773,44568130:0,393216,0 -(1,8885:6630773,45448218:25952256,1273304,196608 -g1,8885:6630773,45448218 -g1,8885:6630773,45448218 -g1,8885:6434165,45448218 -(1,8885:6434165,45448218:0,1273304,196608 -r1,8885:32779637,45448218:26345472,1469912,196608 -k1,8885:6434165,45448218:-26345472 -) -(1,8885:6434165,45448218:26345472,1273304,196608 -[1,8885:6630773,45448218:25952256,1076696,0 -(1,8862:6630773,44782040:25952256,410518,107478 -(1,8861:6630773,44782040:0,0,0 -g1,8861:6630773,44782040 -g1,8861:6630773,44782040 -g1,8861:6303093,44782040 -(1,8861:6303093,44782040:0,0,0 -) -g1,8861:6630773,44782040 -) -g1,8862:8211502,44782040 -g1,8862:9159940,44782040 -g1,8862:17695874,44782040 -g1,8862:21805768,44782040 -g1,8862:22438060,44782040 -g1,8862:22754206,44782040 -g1,8862:25599518,44782040 -g1,8862:27180247,44782040 -g1,8862:27812539,44782040 -h1,8862:29393267,44782040:0,0,0 -k1,8862:32583029,44782040:3189762 -g1,8862:32583029,44782040 -) -(1,8863:6630773,45448218:25952256,410518,76021 -h1,8863:6630773,45448218:0,0,0 -k1,8863:6630773,45448218:0 -h1,8863:10108375,45448218:0,0,0 -k1,8863:32583029,45448218:22474654 -g1,8863:32583029,45448218 -) -] -) -g1,8885:32583029,45448218 -g1,8885:6630773,45448218 -g1,8885:6630773,45448218 -g1,8885:32583029,45448218 -g1,8885:32583029,45448218 -) -] -(1,8885:32583029,45706769:0,0,0 -g1,8885:32583029,45706769 -) -) -] -(1,8885:6630773,47279633:25952256,0,0 -h1,8885:6630773,47279633:25952256,0,0 -) -] -h1,8885:4262630,4025873:0,0,0 +k1,8890:3078556,49800853:-34777008 +) +] +g1,8890:6630773,4812305 +k1,8890:24502442,4812305:16676292 +g1,8890:25889183,4812305 +g1,8890:26537989,4812305 +g1,8890:29852144,4812305 +) +) +] +[1,8890:6630773,45706769:25952256,40108032,0 +(1,8890:6630773,45706769:25952256,40108032,0 +(1,8890:6630773,45706769:0,0,0 +g1,8890:6630773,45706769 +) +[1,8890:6630773,45706769:25952256,40108032,0 +v1,8861:6630773,6254097:0,393216,0 +(1,8861:6630773,42656768:25952256,36795887,196608 +g1,8861:6630773,42656768 +g1,8861:6630773,42656768 +g1,8861:6434165,42656768 +(1,8861:6434165,42656768:0,36795887,196608 +r1,8861:32779637,42656768:26345472,36992495,196608 +k1,8861:6434165,42656768:-26345472 +) +(1,8861:6434165,42656768:26345472,36795887,196608 +[1,8861:6630773,42656768:25952256,36599279,0 +(1,8800:6630773,6461715:25952256,404226,76021 +(1,8799:6630773,6461715:0,0,0 +g1,8799:6630773,6461715 +g1,8799:6630773,6461715 +g1,8799:6303093,6461715 +(1,8799:6303093,6461715:0,0,0 +) +g1,8799:6630773,6461715 +) +k1,8800:6630773,6461715:0 +h1,8800:9792230,6461715:0,0,0 +k1,8800:32583030,6461715:22790800 +g1,8800:32583030,6461715 +) +(1,8801:6630773,7127893:25952256,410518,107478 +h1,8801:6630773,7127893:0,0,0 +g1,8801:8211502,7127893 +g1,8801:9159940,7127893 +g1,8801:16431291,7127893 +g1,8801:20541185,7127893 +g1,8801:21173477,7127893 +g1,8801:21489623,7127893 +g1,8801:24334935,7127893 +g1,8801:25915664,7127893 +g1,8801:26547956,7127893 +h1,8801:28128684,7127893:0,0,0 +k1,8801:32583029,7127893:4454345 +g1,8801:32583029,7127893 +) +(1,8802:6630773,7794071:25952256,410518,76021 +h1,8802:6630773,7794071:0,0,0 +k1,8802:6630773,7794071:0 +h1,8802:10108375,7794071:0,0,0 +k1,8802:32583029,7794071:22474654 +g1,8802:32583029,7794071 +) +(1,8813:6630773,8525785:25952256,410518,101187 +(1,8804:6630773,8525785:0,0,0 +g1,8804:6630773,8525785 +g1,8804:6630773,8525785 +g1,8804:6303093,8525785 +(1,8804:6303093,8525785:0,0,0 +) +g1,8804:6630773,8525785 +) +g1,8813:7579210,8525785 +g1,8813:10424521,8525785 +g1,8813:11372958,8525785 +g1,8813:14218269,8525785 +h1,8813:15798997,8525785:0,0,0 +k1,8813:32583029,8525785:16784032 +g1,8813:32583029,8525785 +) +(1,8813:6630773,9191963:25952256,379060,0 +h1,8813:6630773,9191963:0,0,0 +h1,8813:7263064,9191963:0,0,0 +k1,8813:32583028,9191963:25319964 +g1,8813:32583028,9191963 +) +(1,8813:6630773,9858141:25952256,410518,101187 +h1,8813:6630773,9858141:0,0,0 +g1,8813:7579210,9858141 +g1,8813:7895356,9858141 +g1,8813:8211502,9858141 +g1,8813:8527648,9858141 +g1,8813:8843794,9858141 +g1,8813:9159940,9858141 +g1,8813:9476086,9858141 +g1,8813:9792232,9858141 +g1,8813:10108378,9858141 +g1,8813:10424524,9858141 +g1,8813:10740670,9858141 +g1,8813:11056816,9858141 +g1,8813:11372962,9858141 +g1,8813:11689108,9858141 +g1,8813:12637545,9858141 +g1,8813:12953691,9858141 +g1,8813:15166711,9858141 +g1,8813:17379731,9858141 +g1,8813:18012023,9858141 +g1,8813:19276606,9858141 +g1,8813:20225043,9858141 +g1,8813:21489626,9858141 +g1,8813:22438063,9858141 +g1,8813:22754209,9858141 +g1,8813:23070355,9858141 +g1,8813:23386501,9858141 +k1,8813:23386501,9858141:0 +h1,8813:25283375,9858141:0,0,0 +k1,8813:32583029,9858141:7299654 +g1,8813:32583029,9858141 +) +(1,8813:6630773,10524319:25952256,404226,101187 +h1,8813:6630773,10524319:0,0,0 +g1,8813:7579210,10524319 +g1,8813:11372958,10524319 +g1,8813:11689104,10524319 +g1,8813:12005250,10524319 +g1,8813:12637542,10524319 +g1,8813:15166708,10524319 +g1,8813:15482854,10524319 +g1,8813:15799000,10524319 +g1,8813:18012020,10524319 +g1,8813:18328166,10524319 +g1,8813:18644312,10524319 +g1,8813:18960458,10524319 +g1,8813:19276604,10524319 +g1,8813:19592750,10524319 +g1,8813:20225042,10524319 +g1,8813:20541188,10524319 +g1,8813:20857334,10524319 +g1,8813:21173480,10524319 +g1,8813:22438063,10524319 +g1,8813:23070355,10524319 +g1,8813:25599521,10524319 +h1,8813:26547958,10524319:0,0,0 +k1,8813:32583029,10524319:6035071 +g1,8813:32583029,10524319 +) +(1,8813:6630773,11190497:25952256,404226,101187 +h1,8813:6630773,11190497:0,0,0 +g1,8813:7579210,11190497 +g1,8813:10108376,11190497 +g1,8813:10424522,11190497 +g1,8813:10740668,11190497 +g1,8813:11056814,11190497 +g1,8813:11372960,11190497 +g1,8813:11689106,11190497 +g1,8813:12005252,11190497 +g1,8813:12637544,11190497 +g1,8813:15166710,11190497 +g1,8813:15482856,11190497 +g1,8813:15799002,11190497 +g1,8813:16115148,11190497 +g1,8813:16431294,11190497 +g1,8813:18012023,11190497 +g1,8813:18328169,11190497 +g1,8813:18644315,11190497 +g1,8813:18960461,11190497 +g1,8813:19276607,11190497 +g1,8813:19592753,11190497 +g1,8813:20225045,11190497 +g1,8813:20541191,11190497 +g1,8813:20857337,11190497 +g1,8813:21173483,11190497 +g1,8813:22438066,11190497 +g1,8813:23070358,11190497 +g1,8813:25599524,11190497 +h1,8813:26547961,11190497:0,0,0 +k1,8813:32583029,11190497:6035068 +g1,8813:32583029,11190497 +) +(1,8813:6630773,11856675:25952256,404226,6290 +h1,8813:6630773,11856675:0,0,0 +g1,8813:7579210,11856675 +g1,8813:10740667,11856675 +g1,8813:11056813,11856675 +g1,8813:11372959,11856675 +h1,8813:12321396,11856675:0,0,0 +k1,8813:32583028,11856675:20261632 +g1,8813:32583028,11856675 +) +(1,8813:6630773,12522853:25952256,379060,0 +h1,8813:6630773,12522853:0,0,0 +g1,8813:7579210,12522853 +k1,8813:7579210,12522853:0 +h1,8813:8527648,12522853:0,0,0 +k1,8813:32583028,12522853:24055380 +g1,8813:32583028,12522853 +) +(1,8813:6630773,13189031:25952256,410518,107478 +h1,8813:6630773,13189031:0,0,0 +g1,8813:7579210,13189031 +g1,8813:10108376,13189031 +g1,8813:12321396,13189031 +g1,8813:12637542,13189031 +g1,8813:13269834,13189031 +g1,8813:15166709,13189031 +g1,8813:17063583,13189031 +g1,8813:18644312,13189031 +g1,8813:20225041,13189031 +g1,8813:21489625,13189031 +g1,8813:23070354,13189031 +g1,8813:24334938,13189031 +g1,8813:25599521,13189031 +g1,8813:26231813,13189031 +g1,8813:26864105,13189031 +h1,8813:27180251,13189031:0,0,0 +k1,8813:32583029,13189031:5402778 +g1,8813:32583029,13189031 +) +(1,8815:6630773,14510569:25952256,410518,101187 +(1,8814:6630773,14510569:0,0,0 +g1,8814:6630773,14510569 +g1,8814:6630773,14510569 +g1,8814:6303093,14510569 +(1,8814:6303093,14510569:0,0,0 +) +g1,8814:6630773,14510569 +) +k1,8815:6630773,14510569:0 +h1,8815:10740667,14510569:0,0,0 +k1,8815:32583029,14510569:21842362 +g1,8815:32583029,14510569 +) +(1,8860:6630773,15242283:25952256,404226,107478 +(1,8817:6630773,15242283:0,0,0 +g1,8817:6630773,15242283 +g1,8817:6630773,15242283 +g1,8817:6303093,15242283 +(1,8817:6303093,15242283:0,0,0 +) +g1,8817:6630773,15242283 +) +g1,8860:7579210,15242283 +g1,8860:10424521,15242283 +g1,8860:14534415,15242283 +h1,8860:14850561,15242283:0,0,0 +k1,8860:32583029,15242283:17732468 +g1,8860:32583029,15242283 +) +(1,8860:6630773,15908461:25952256,379060,0 +h1,8860:6630773,15908461:0,0,0 +h1,8860:7263064,15908461:0,0,0 +k1,8860:32583028,15908461:25319964 +g1,8860:32583028,15908461 +) +(1,8860:6630773,16574639:25952256,404226,7863 +h1,8860:6630773,16574639:0,0,0 +g1,8860:7579210,16574639 +h1,8860:9159938,16574639:0,0,0 +k1,8860:32583030,16574639:23423092 +g1,8860:32583030,16574639 +) +(1,8860:6630773,17240817:25952256,410518,107478 +h1,8860:6630773,17240817:0,0,0 +g1,8860:7579210,17240817 +g1,8860:11056813,17240817 +g1,8860:11689105,17240817 +g1,8860:15798999,17240817 +g1,8860:16431291,17240817 +g1,8860:19276603,17240817 +g1,8860:20857332,17240817 +g1,8860:21489624,17240817 +h1,8860:23070352,17240817:0,0,0 +k1,8860:32583029,17240817:9512677 +g1,8860:32583029,17240817 +) +(1,8860:6630773,17906995:25952256,379060,0 +h1,8860:6630773,17906995:0,0,0 +h1,8860:7263064,17906995:0,0,0 +k1,8860:32583028,17906995:25319964 +g1,8860:32583028,17906995 +) +(1,8860:6630773,18573173:25952256,404226,6290 +h1,8860:6630773,18573173:0,0,0 +g1,8860:7579210,18573173 +h1,8860:10740667,18573173:0,0,0 +k1,8860:32583029,18573173:21842362 +g1,8860:32583029,18573173 +) +(1,8860:6630773,19239351:25952256,404226,82312 +h1,8860:6630773,19239351:0,0,0 +g1,8860:7579210,19239351 +g1,8860:7895356,19239351 +g1,8860:8211502,19239351 +g1,8860:8527648,19239351 +g1,8860:9792231,19239351 +g1,8860:10108377,19239351 +g1,8860:10424523,19239351 +g1,8860:10740669,19239351 +g1,8860:11056815,19239351 +g1,8860:12005252,19239351 +g1,8860:14218272,19239351 +g1,8860:14534418,19239351 +g1,8860:14850564,19239351 +g1,8860:15166710,19239351 +g1,8860:15482856,19239351 +g1,8860:16431293,19239351 +g1,8860:16747439,19239351 +g1,8860:17063585,19239351 +g1,8860:17379731,19239351 +h1,8860:18328168,19239351:0,0,0 +k1,8860:32583029,19239351:14254861 +g1,8860:32583029,19239351 +) +(1,8860:6630773,19905529:25952256,388497,9436 +h1,8860:6630773,19905529:0,0,0 +g1,8860:7579210,19905529 +g1,8860:9792230,19905529 +g1,8860:12005250,19905529 +g1,8860:12321396,19905529 +g1,8860:14218270,19905529 +g1,8860:14534416,19905529 +g1,8860:16431290,19905529 +g1,8860:16747436,19905529 +h1,8860:18328164,19905529:0,0,0 +k1,8860:32583029,19905529:14254865 +g1,8860:32583029,19905529 +) +(1,8860:6630773,20571707:25952256,379060,0 +h1,8860:6630773,20571707:0,0,0 +h1,8860:7263064,20571707:0,0,0 +k1,8860:32583028,20571707:25319964 +g1,8860:32583028,20571707 +) +(1,8860:6630773,21237885:25952256,410518,7863 +h1,8860:6630773,21237885:0,0,0 +g1,8860:7579210,21237885 +h1,8860:11689104,21237885:0,0,0 +k1,8860:32583028,21237885:20893924 +g1,8860:32583028,21237885 +) +(1,8860:6630773,21904063:25952256,404226,76021 +h1,8860:6630773,21904063:0,0,0 +g1,8860:7579210,21904063 +g1,8860:7895356,21904063 +g1,8860:8211502,21904063 +g1,8860:8527648,21904063 +g1,8860:8843794,21904063 +g1,8860:9159940,21904063 +g1,8860:9476086,21904063 +g1,8860:9792232,21904063 +g1,8860:10108378,21904063 +g1,8860:10424524,21904063 +g1,8860:10740670,21904063 +g1,8860:11056816,21904063 +g1,8860:11372962,21904063 +g1,8860:11689108,21904063 +g1,8860:12005254,21904063 +g1,8860:12321400,21904063 +g1,8860:12637546,21904063 +g1,8860:12953692,21904063 +g1,8860:13269838,21904063 +g1,8860:16115149,21904063 +g1,8860:17695878,21904063 +g1,8860:19592752,21904063 +g1,8860:20225044,21904063 +g1,8860:22121918,21904063 +k1,8860:22121918,21904063:0 +h1,8860:24651083,21904063:0,0,0 +k1,8860:32583029,21904063:7931946 +g1,8860:32583029,21904063 +) +(1,8860:6630773,22570241:25952256,404226,101187 +h1,8860:6630773,22570241:0,0,0 +g1,8860:7579210,22570241 +g1,8860:11372958,22570241 +g1,8860:11689104,22570241 +g1,8860:12005250,22570241 +g1,8860:12321396,22570241 +g1,8860:12637542,22570241 +g1,8860:12953688,22570241 +g1,8860:13269834,22570241 +g1,8860:13585980,22570241 +g1,8860:16115146,22570241 +g1,8860:16431292,22570241 +g1,8860:16747438,22570241 +g1,8860:17063584,22570241 +g1,8860:19592750,22570241 +g1,8860:19908896,22570241 +g1,8860:20225042,22570241 +g1,8860:22121916,22570241 +g1,8860:22438062,22570241 +g1,8860:22754208,22570241 +g1,8860:24967228,22570241 +h1,8860:25915665,22570241:0,0,0 +k1,8860:32583029,22570241:6667364 +g1,8860:32583029,22570241 +) +(1,8860:6630773,23236419:25952256,404226,101187 +h1,8860:6630773,23236419:0,0,0 +g1,8860:7579210,23236419 +g1,8860:13269833,23236419 +g1,8860:13585979,23236419 +g1,8860:16115145,23236419 +g1,8860:16431291,23236419 +g1,8860:16747437,23236419 +g1,8860:17063583,23236419 +g1,8860:19592749,23236419 +g1,8860:19908895,23236419 +g1,8860:20225041,23236419 +g1,8860:22121915,23236419 +g1,8860:22438061,23236419 +g1,8860:22754207,23236419 +g1,8860:24967227,23236419 +h1,8860:25915664,23236419:0,0,0 +k1,8860:32583029,23236419:6667365 +g1,8860:32583029,23236419 +) +(1,8860:6630773,23902597:25952256,404226,107478 +h1,8860:6630773,23902597:0,0,0 +g1,8860:7579210,23902597 +g1,8860:12953687,23902597 +g1,8860:13269833,23902597 +g1,8860:13585979,23902597 +g1,8860:16115145,23902597 +g1,8860:16431291,23902597 +g1,8860:16747437,23902597 +g1,8860:17063583,23902597 +g1,8860:19592749,23902597 +g1,8860:19908895,23902597 +g1,8860:20225041,23902597 +g1,8860:22121915,23902597 +g1,8860:22438061,23902597 +g1,8860:22754207,23902597 +g1,8860:24967227,23902597 +h1,8860:25915664,23902597:0,0,0 +k1,8860:32583029,23902597:6667365 +g1,8860:32583029,23902597 +) +(1,8860:6630773,24568775:25952256,379060,0 +h1,8860:6630773,24568775:0,0,0 +g1,8860:7579210,24568775 +k1,8860:7579210,24568775:0 +h1,8860:8527648,24568775:0,0,0 +k1,8860:32583028,24568775:24055380 +g1,8860:32583028,24568775 +) +(1,8860:6630773,25234953:25952256,410518,107478 +h1,8860:6630773,25234953:0,0,0 +g1,8860:7579210,25234953 +g1,8860:10108376,25234953 +g1,8860:12321396,25234953 +g1,8860:12637542,25234953 +g1,8860:13269834,25234953 +g1,8860:15166709,25234953 +g1,8860:17063583,25234953 +g1,8860:18644312,25234953 +g1,8860:20225041,25234953 +g1,8860:21489625,25234953 +g1,8860:23070354,25234953 +g1,8860:24334938,25234953 +g1,8860:25599521,25234953 +g1,8860:26231813,25234953 +g1,8860:26864105,25234953 +h1,8860:27180251,25234953:0,0,0 +k1,8860:32583029,25234953:5402778 +g1,8860:32583029,25234953 +) +(1,8860:6630773,25901131:25952256,379060,0 +h1,8860:6630773,25901131:0,0,0 +h1,8860:7263064,25901131:0,0,0 +k1,8860:32583028,25901131:25319964 +g1,8860:32583028,25901131 +) +(1,8860:6630773,26567309:25952256,410518,107478 +h1,8860:6630773,26567309:0,0,0 +g1,8860:7579210,26567309 +g1,8860:10424521,26567309 +g1,8860:13269832,26567309 +g1,8860:15482852,26567309 +g1,8860:17695872,26567309 +g1,8860:18644309,26567309 +g1,8860:19908892,26567309 +g1,8860:22438058,26567309 +g1,8860:23386495,26567309 +h1,8860:25599515,26567309:0,0,0 +k1,8860:32583029,26567309:6983514 +g1,8860:32583029,26567309 +) +(1,8860:6630773,27233487:25952256,404226,107478 +h1,8860:6630773,27233487:0,0,0 +g1,8860:7579210,27233487 +g1,8860:10424521,27233487 +g1,8860:13902124,27233487 +g1,8860:14218270,27233487 +g1,8860:19276601,27233487 +g1,8860:22754204,27233487 +g1,8860:23070350,27233487 +h1,8860:24967224,27233487:0,0,0 +k1,8860:32583029,27233487:7615805 +g1,8860:32583029,27233487 +) +(1,8860:6630773,27899665:25952256,404226,101187 +h1,8860:6630773,27899665:0,0,0 +g1,8860:7579210,27899665 +g1,8860:11689104,27899665 +g1,8860:12005250,27899665 +g1,8860:13585979,27899665 +g1,8860:14534416,27899665 +g1,8860:15166708,27899665 +g1,8860:16431291,27899665 +g1,8860:17695874,27899665 +g1,8860:18960457,27899665 +g1,8860:19276603,27899665 +g1,8860:22121915,27899665 +g1,8860:22754207,27899665 +k1,8860:22754207,27899665:0 +h1,8860:24967227,27899665:0,0,0 +k1,8860:32583029,27899665:7615802 +g1,8860:32583029,27899665 +) +(1,8860:6630773,28565843:25952256,379060,0 +h1,8860:6630773,28565843:0,0,0 +h1,8860:7263064,28565843:0,0,0 +k1,8860:32583028,28565843:25319964 +g1,8860:32583028,28565843 +) +(1,8860:6630773,29232021:25952256,379060,0 +h1,8860:6630773,29232021:0,0,0 +h1,8860:7263064,29232021:0,0,0 +k1,8860:32583028,29232021:25319964 +g1,8860:32583028,29232021 +) +(1,8860:6630773,29898199:25952256,404226,101187 +h1,8860:6630773,29898199:0,0,0 +g1,8860:7579210,29898199 +g1,8860:10424521,29898199 +g1,8860:14218269,29898199 +h1,8860:14534415,29898199:0,0,0 +k1,8860:32583029,29898199:18048614 +g1,8860:32583029,29898199 +) +(1,8860:6630773,30564377:25952256,379060,0 +h1,8860:6630773,30564377:0,0,0 +h1,8860:7263064,30564377:0,0,0 +k1,8860:32583028,30564377:25319964 +g1,8860:32583028,30564377 +) +(1,8860:6630773,31230555:25952256,404226,7863 +h1,8860:6630773,31230555:0,0,0 +g1,8860:7579210,31230555 +h1,8860:9159938,31230555:0,0,0 +k1,8860:32583030,31230555:23423092 +g1,8860:32583030,31230555 +) +(1,8860:6630773,31896733:25952256,410518,101187 +h1,8860:6630773,31896733:0,0,0 +g1,8860:7579210,31896733 +g1,8860:11056813,31896733 +g1,8860:11689105,31896733 +g1,8860:15482853,31896733 +g1,8860:16115145,31896733 +g1,8860:18960457,31896733 +g1,8860:20541186,31896733 +g1,8860:21173478,31896733 +h1,8860:22754206,31896733:0,0,0 +k1,8860:32583029,31896733:9828823 +g1,8860:32583029,31896733 +) +(1,8860:6630773,32562911:25952256,379060,0 +h1,8860:6630773,32562911:0,0,0 +h1,8860:7263064,32562911:0,0,0 +k1,8860:32583028,32562911:25319964 +g1,8860:32583028,32562911 +) +(1,8860:6630773,33229089:25952256,404226,6290 +h1,8860:6630773,33229089:0,0,0 +g1,8860:7579210,33229089 +h1,8860:10740667,33229089:0,0,0 +k1,8860:32583029,33229089:21842362 +g1,8860:32583029,33229089 +) +(1,8860:6630773,33895267:25952256,404226,82312 +h1,8860:6630773,33895267:0,0,0 +g1,8860:7579210,33895267 +g1,8860:7895356,33895267 +g1,8860:8211502,33895267 +g1,8860:8527648,33895267 +g1,8860:9792231,33895267 +g1,8860:10108377,33895267 +g1,8860:10424523,33895267 +g1,8860:10740669,33895267 +g1,8860:11056815,33895267 +g1,8860:12005252,33895267 +g1,8860:14218272,33895267 +g1,8860:14534418,33895267 +g1,8860:14850564,33895267 +g1,8860:15166710,33895267 +g1,8860:15482856,33895267 +g1,8860:16431293,33895267 +g1,8860:16747439,33895267 +g1,8860:17063585,33895267 +g1,8860:17379731,33895267 +h1,8860:18328168,33895267:0,0,0 +k1,8860:32583029,33895267:14254861 +g1,8860:32583029,33895267 +) +(1,8860:6630773,34561445:25952256,388497,9436 +h1,8860:6630773,34561445:0,0,0 +g1,8860:7579210,34561445 +g1,8860:9792230,34561445 +g1,8860:12005250,34561445 +g1,8860:14218270,34561445 +g1,8860:14534416,34561445 +g1,8860:16431290,34561445 +g1,8860:16747436,34561445 +h1,8860:18328164,34561445:0,0,0 +k1,8860:32583029,34561445:14254865 +g1,8860:32583029,34561445 +) +(1,8860:6630773,35227623:25952256,379060,0 +h1,8860:6630773,35227623:0,0,0 +h1,8860:7263064,35227623:0,0,0 +k1,8860:32583028,35227623:25319964 +g1,8860:32583028,35227623 +) +(1,8860:6630773,35893801:25952256,410518,7863 +h1,8860:6630773,35893801:0,0,0 +g1,8860:7579210,35893801 +h1,8860:11689104,35893801:0,0,0 +k1,8860:32583028,35893801:20893924 +g1,8860:32583028,35893801 +) +(1,8860:6630773,36559979:25952256,404226,76021 +h1,8860:6630773,36559979:0,0,0 +g1,8860:7579210,36559979 +g1,8860:7895356,36559979 +g1,8860:8211502,36559979 +g1,8860:8527648,36559979 +g1,8860:8843794,36559979 +g1,8860:9159940,36559979 +g1,8860:9476086,36559979 +g1,8860:9792232,36559979 +g1,8860:10108378,36559979 +g1,8860:10424524,36559979 +g1,8860:10740670,36559979 +g1,8860:11056816,36559979 +g1,8860:11372962,36559979 +g1,8860:11689108,36559979 +g1,8860:12005254,36559979 +g1,8860:12321400,36559979 +g1,8860:12637546,36559979 +g1,8860:12953692,36559979 +g1,8860:13269838,36559979 +g1,8860:16115149,36559979 +g1,8860:17695878,36559979 +g1,8860:19592752,36559979 +g1,8860:20225044,36559979 +g1,8860:22121918,36559979 +k1,8860:22121918,36559979:0 +h1,8860:24651083,36559979:0,0,0 +k1,8860:32583029,36559979:7931946 +g1,8860:32583029,36559979 +) +(1,8860:6630773,37226157:25952256,404226,101187 +h1,8860:6630773,37226157:0,0,0 +g1,8860:7579210,37226157 +g1,8860:11372958,37226157 +g1,8860:11689104,37226157 +g1,8860:12005250,37226157 +g1,8860:12321396,37226157 +g1,8860:12637542,37226157 +g1,8860:12953688,37226157 +g1,8860:13269834,37226157 +g1,8860:13585980,37226157 +g1,8860:16115146,37226157 +g1,8860:16431292,37226157 +g1,8860:16747438,37226157 +g1,8860:17063584,37226157 +g1,8860:19592750,37226157 +g1,8860:19908896,37226157 +g1,8860:20225042,37226157 +g1,8860:20541188,37226157 +g1,8860:22121917,37226157 +g1,8860:24967228,37226157 +h1,8860:25915665,37226157:0,0,0 +k1,8860:32583029,37226157:6667364 +g1,8860:32583029,37226157 +) +(1,8860:6630773,37892335:25952256,404226,101187 +h1,8860:6630773,37892335:0,0,0 +g1,8860:7579210,37892335 +g1,8860:13269833,37892335 +g1,8860:13585979,37892335 +g1,8860:16115145,37892335 +g1,8860:16431291,37892335 +g1,8860:16747437,37892335 +g1,8860:17063583,37892335 +g1,8860:19592749,37892335 +g1,8860:19908895,37892335 +g1,8860:20225041,37892335 +g1,8860:22121915,37892335 +g1,8860:22438061,37892335 +g1,8860:23070353,37892335 +g1,8860:24967227,37892335 +h1,8860:25915664,37892335:0,0,0 +k1,8860:32583029,37892335:6667365 +g1,8860:32583029,37892335 +) +(1,8860:6630773,38558513:25952256,404226,107478 +h1,8860:6630773,38558513:0,0,0 +g1,8860:7579210,38558513 +g1,8860:12953687,38558513 +g1,8860:13269833,38558513 +g1,8860:13585979,38558513 +g1,8860:16115145,38558513 +g1,8860:16431291,38558513 +g1,8860:16747437,38558513 +g1,8860:17063583,38558513 +g1,8860:19592749,38558513 +g1,8860:19908895,38558513 +g1,8860:20225041,38558513 +g1,8860:22121915,38558513 +g1,8860:22438061,38558513 +g1,8860:23070353,38558513 +g1,8860:24967227,38558513 +h1,8860:25915664,38558513:0,0,0 +k1,8860:32583029,38558513:6667365 +g1,8860:32583029,38558513 +) +(1,8860:6630773,39224691:25952256,379060,0 +h1,8860:6630773,39224691:0,0,0 +g1,8860:7579210,39224691 +k1,8860:7579210,39224691:0 +h1,8860:8527648,39224691:0,0,0 +k1,8860:32583028,39224691:24055380 +g1,8860:32583028,39224691 +) +(1,8860:6630773,39890869:25952256,410518,107478 +h1,8860:6630773,39890869:0,0,0 +g1,8860:7579210,39890869 +g1,8860:10108376,39890869 +g1,8860:12321396,39890869 +g1,8860:12637542,39890869 +g1,8860:13269834,39890869 +g1,8860:15166709,39890869 +g1,8860:17063583,39890869 +g1,8860:18644312,39890869 +g1,8860:20225041,39890869 +g1,8860:21489625,39890869 +g1,8860:23070354,39890869 +g1,8860:24334938,39890869 +g1,8860:25599521,39890869 +g1,8860:26231813,39890869 +g1,8860:26864105,39890869 +h1,8860:27180251,39890869:0,0,0 +k1,8860:32583029,39890869:5402778 +g1,8860:32583029,39890869 +) +(1,8860:6630773,40557047:25952256,379060,0 +h1,8860:6630773,40557047:0,0,0 +h1,8860:7263064,40557047:0,0,0 +k1,8860:32583028,40557047:25319964 +g1,8860:32583028,40557047 +) +(1,8860:6630773,41223225:25952256,410518,107478 +h1,8860:6630773,41223225:0,0,0 +g1,8860:7579210,41223225 +g1,8860:10424521,41223225 +g1,8860:13269832,41223225 +g1,8860:15482852,41223225 +g1,8860:17695872,41223225 +g1,8860:18644309,41223225 +g1,8860:19908892,41223225 +g1,8860:22438058,41223225 +g1,8860:23386495,41223225 +h1,8860:25599515,41223225:0,0,0 +k1,8860:32583029,41223225:6983514 +g1,8860:32583029,41223225 +) +(1,8860:6630773,41889403:25952256,404226,107478 +h1,8860:6630773,41889403:0,0,0 +g1,8860:7579210,41889403 +g1,8860:10424521,41889403 +g1,8860:13902124,41889403 +g1,8860:14218270,41889403 +g1,8860:19276601,41889403 +g1,8860:22754204,41889403 +g1,8860:23070350,41889403 +h1,8860:24967224,41889403:0,0,0 +k1,8860:32583029,41889403:7615805 +g1,8860:32583029,41889403 +) +(1,8860:6630773,42555581:25952256,404226,101187 +h1,8860:6630773,42555581:0,0,0 +g1,8860:7579210,42555581 +g1,8860:11689104,42555581 +g1,8860:12005250,42555581 +g1,8860:12321396,42555581 +g1,8860:13585979,42555581 +g1,8860:14534416,42555581 +g1,8860:15166708,42555581 +g1,8860:16431291,42555581 +g1,8860:17695874,42555581 +g1,8860:18960457,42555581 +g1,8860:19276603,42555581 +g1,8860:22121915,42555581 +g1,8860:22754207,42555581 +k1,8860:22754207,42555581:0 +h1,8860:24967227,42555581:0,0,0 +k1,8860:32583029,42555581:7615802 +g1,8860:32583029,42555581 +) +] +) +g1,8861:32583029,42656768 +g1,8861:6630773,42656768 +g1,8861:6630773,42656768 +g1,8861:32583029,42656768 +g1,8861:32583029,42656768 +) +h1,8861:6630773,42853376:0,0,0 +v1,8865:6630773,44568130:0,393216,0 +(1,8890:6630773,45448218:25952256,1273304,196608 +g1,8890:6630773,45448218 +g1,8890:6630773,45448218 +g1,8890:6434165,45448218 +(1,8890:6434165,45448218:0,1273304,196608 +r1,8890:32779637,45448218:26345472,1469912,196608 +k1,8890:6434165,45448218:-26345472 +) +(1,8890:6434165,45448218:26345472,1273304,196608 +[1,8890:6630773,45448218:25952256,1076696,0 +(1,8867:6630773,44782040:25952256,410518,107478 +(1,8866:6630773,44782040:0,0,0 +g1,8866:6630773,44782040 +g1,8866:6630773,44782040 +g1,8866:6303093,44782040 +(1,8866:6303093,44782040:0,0,0 +) +g1,8866:6630773,44782040 +) +g1,8867:8211502,44782040 +g1,8867:9159940,44782040 +g1,8867:17695874,44782040 +g1,8867:21805768,44782040 +g1,8867:22438060,44782040 +g1,8867:22754206,44782040 +g1,8867:25599518,44782040 +g1,8867:27180247,44782040 +g1,8867:27812539,44782040 +h1,8867:29393267,44782040:0,0,0 +k1,8867:32583029,44782040:3189762 +g1,8867:32583029,44782040 +) +(1,8868:6630773,45448218:25952256,410518,76021 +h1,8868:6630773,45448218:0,0,0 +k1,8868:6630773,45448218:0 +h1,8868:10108375,45448218:0,0,0 +k1,8868:32583029,45448218:22474654 +g1,8868:32583029,45448218 +) +] +) +g1,8890:32583029,45448218 +g1,8890:6630773,45448218 +g1,8890:6630773,45448218 +g1,8890:32583029,45448218 +g1,8890:32583029,45448218 +) +] +(1,8890:32583029,45706769:0,0,0 +g1,8890:32583029,45706769 +) +) +] +(1,8890:6630773,47279633:25952256,0,0 +h1,8890:6630773,47279633:25952256,0,0 +) +] +h1,8890:4262630,4025873:0,0,0 ] !26180 }163 -Input:1164:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1165:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1166:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1167:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1168:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1169:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1170:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1171:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1172:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1173:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1174:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1175:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1176:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 +Input:1160:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1161:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1162:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1163:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1164:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1165:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1166:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1167:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1168:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1169:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1170:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1171:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1172:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 {164 -[1,8940:4262630,47279633:28320399,43253760,0 -(1,8940:4262630,4025873:0,0,0 -[1,8940:-473657,4025873:25952256,0,0 -(1,8940:-473657,-710414:25952256,0,0 -h1,8940:-473657,-710414:0,0,0 -(1,8940:-473657,-710414:0,0,0 -(1,8940:-473657,-710414:0,0,0 -g1,8940:-473657,-710414 -(1,8940:-473657,-710414:65781,0,65781 -g1,8940:-407876,-710414 -[1,8940:-407876,-644633:0,0,0 +[1,8945:4262630,47279633:28320399,43253760,0 +(1,8945:4262630,4025873:0,0,0 +[1,8945:-473657,4025873:25952256,0,0 +(1,8945:-473657,-710414:25952256,0,0 +h1,8945:-473657,-710414:0,0,0 +(1,8945:-473657,-710414:0,0,0 +(1,8945:-473657,-710414:0,0,0 +g1,8945:-473657,-710414 +(1,8945:-473657,-710414:65781,0,65781 +g1,8945:-407876,-710414 +[1,8945:-407876,-644633:0,0,0 ] ) -k1,8940:-473657,-710414:-65781 +k1,8945:-473657,-710414:-65781 ) ) -k1,8940:25478599,-710414:25952256 -g1,8940:25478599,-710414 +k1,8945:25478599,-710414:25952256 +g1,8945:25478599,-710414 ) ] ) -[1,8940:6630773,47279633:25952256,43253760,0 -[1,8940:6630773,4812305:25952256,786432,0 -(1,8940:6630773,4812305:25952256,505283,11795 -(1,8940:6630773,4812305:25952256,505283,11795 -g1,8940:3078558,4812305 -[1,8940:3078558,4812305:0,0,0 -(1,8940:3078558,2439708:0,1703936,0 -k1,8940:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8940:2537886,2439708:1179648,16384,0 +[1,8945:6630773,47279633:25952256,43253760,0 +[1,8945:6630773,4812305:25952256,786432,0 +(1,8945:6630773,4812305:25952256,505283,11795 +(1,8945:6630773,4812305:25952256,505283,11795 +g1,8945:3078558,4812305 +[1,8945:3078558,4812305:0,0,0 +(1,8945:3078558,2439708:0,1703936,0 +k1,8945:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8945:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8940:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8945:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8940:3078558,4812305:0,0,0 -(1,8940:3078558,2439708:0,1703936,0 -g1,8940:29030814,2439708 -g1,8940:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8940:36151628,1915420:16384,1179648,0 +[1,8945:3078558,4812305:0,0,0 +(1,8945:3078558,2439708:0,1703936,0 +g1,8945:29030814,2439708 +g1,8945:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8945:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8940:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8945:37855564,2439708:1179648,16384,0 ) ) -k1,8940:3078556,2439708:-34777008 +k1,8945:3078556,2439708:-34777008 ) ] -[1,8940:3078558,4812305:0,0,0 -(1,8940:3078558,49800853:0,16384,2228224 -k1,8940:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8940:2537886,49800853:1179648,16384,0 +[1,8945:3078558,4812305:0,0,0 +(1,8945:3078558,49800853:0,16384,2228224 +k1,8945:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8945:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8940:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8945:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8940:3078558,4812305:0,0,0 -(1,8940:3078558,49800853:0,16384,2228224 -g1,8940:29030814,49800853 -g1,8940:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8940:36151628,51504789:16384,1179648,0 -) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 -) -] -) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8940:37855564,49800853:1179648,16384,0 -) -) -k1,8940:3078556,49800853:-34777008 -) -] -g1,8940:6630773,4812305 -g1,8940:6630773,4812305 -g1,8940:10653372,4812305 -g1,8940:13512052,4812305 -k1,8940:31387652,4812305:17875600 -) -) -] -[1,8940:6630773,45706769:25952256,40108032,0 -(1,8940:6630773,45706769:25952256,40108032,0 -(1,8940:6630773,45706769:0,0,0 -g1,8940:6630773,45706769 -) -[1,8940:6630773,45706769:25952256,40108032,0 -v1,8885:6630773,6254097:0,393216,0 -(1,8885:6630773,15956695:25952256,10095814,196608 -g1,8885:6630773,15956695 -g1,8885:6630773,15956695 -g1,8885:6434165,15956695 -(1,8885:6434165,15956695:0,10095814,196608 -r1,8885:32779637,15956695:26345472,10292422,196608 -k1,8885:6434165,15956695:-26345472 -) -(1,8885:6434165,15956695:26345472,10095814,196608 -[1,8885:6630773,15956695:25952256,9899206,0 -(1,8874:6630773,6468007:25952256,410518,101187 -(1,8865:6630773,6468007:0,0,0 -g1,8865:6630773,6468007 -g1,8865:6630773,6468007 -g1,8865:6303093,6468007 -(1,8865:6303093,6468007:0,0,0 -) -g1,8865:6630773,6468007 -) -g1,8874:7579210,6468007 -g1,8874:10424521,6468007 -g1,8874:11372958,6468007 -g1,8874:14218269,6468007 -h1,8874:15798997,6468007:0,0,0 -k1,8874:32583029,6468007:16784032 -g1,8874:32583029,6468007 -) -(1,8874:6630773,7134185:25952256,379060,0 -h1,8874:6630773,7134185:0,0,0 -h1,8874:7263064,7134185:0,0,0 -k1,8874:32583028,7134185:25319964 -g1,8874:32583028,7134185 -) -(1,8874:6630773,7800363:25952256,410518,101187 -h1,8874:6630773,7800363:0,0,0 -g1,8874:7579210,7800363 -g1,8874:7895356,7800363 -g1,8874:8211502,7800363 -g1,8874:8527648,7800363 -g1,8874:8843794,7800363 -g1,8874:9159940,7800363 -g1,8874:9476086,7800363 -g1,8874:9792232,7800363 -g1,8874:10108378,7800363 -g1,8874:10424524,7800363 -g1,8874:10740670,7800363 -g1,8874:11056816,7800363 -g1,8874:11372962,7800363 -g1,8874:11689108,7800363 -g1,8874:12637545,7800363 -g1,8874:12953691,7800363 -g1,8874:15166711,7800363 -g1,8874:17379731,7800363 -g1,8874:18012023,7800363 -g1,8874:19276606,7800363 -g1,8874:20225043,7800363 -g1,8874:21489626,7800363 -g1,8874:22438063,7800363 -g1,8874:22754209,7800363 -g1,8874:23070355,7800363 -g1,8874:23386501,7800363 -k1,8874:23386501,7800363:0 -h1,8874:25283375,7800363:0,0,0 -k1,8874:32583029,7800363:7299654 -g1,8874:32583029,7800363 -) -(1,8874:6630773,8466541:25952256,404226,101187 -h1,8874:6630773,8466541:0,0,0 -g1,8874:7579210,8466541 -g1,8874:11372958,8466541 -g1,8874:11689104,8466541 -g1,8874:12005250,8466541 -g1,8874:12637542,8466541 -g1,8874:15166708,8466541 -g1,8874:15482854,8466541 -g1,8874:15799000,8466541 -g1,8874:18012020,8466541 -g1,8874:18328166,8466541 -g1,8874:18644312,8466541 -g1,8874:18960458,8466541 -g1,8874:19276604,8466541 -g1,8874:19592750,8466541 -g1,8874:20225042,8466541 -g1,8874:20541188,8466541 -g1,8874:20857334,8466541 -g1,8874:21173480,8466541 -g1,8874:22438063,8466541 -g1,8874:23070355,8466541 -g1,8874:25599521,8466541 -h1,8874:26547958,8466541:0,0,0 -k1,8874:32583029,8466541:6035071 -g1,8874:32583029,8466541 -) -(1,8874:6630773,9132719:25952256,404226,101187 -h1,8874:6630773,9132719:0,0,0 -g1,8874:7579210,9132719 -g1,8874:10108376,9132719 -g1,8874:10424522,9132719 -g1,8874:10740668,9132719 -g1,8874:11056814,9132719 -g1,8874:11372960,9132719 -g1,8874:11689106,9132719 -g1,8874:12005252,9132719 -g1,8874:12637544,9132719 -g1,8874:15166710,9132719 -g1,8874:15482856,9132719 -g1,8874:15799002,9132719 -g1,8874:16115148,9132719 -g1,8874:16431294,9132719 -g1,8874:18012023,9132719 -g1,8874:18328169,9132719 -g1,8874:18644315,9132719 -g1,8874:18960461,9132719 -g1,8874:19276607,9132719 -g1,8874:19592753,9132719 -g1,8874:20225045,9132719 -g1,8874:20541191,9132719 -g1,8874:20857337,9132719 -g1,8874:21173483,9132719 -g1,8874:22438066,9132719 -g1,8874:23070358,9132719 -g1,8874:25599524,9132719 -h1,8874:26547961,9132719:0,0,0 -k1,8874:32583029,9132719:6035068 -g1,8874:32583029,9132719 -) -(1,8874:6630773,9798897:25952256,404226,6290 -h1,8874:6630773,9798897:0,0,0 -g1,8874:7579210,9798897 -g1,8874:10740667,9798897 -g1,8874:11056813,9798897 -g1,8874:11372959,9798897 -h1,8874:12321396,9798897:0,0,0 -k1,8874:32583028,9798897:20261632 -g1,8874:32583028,9798897 -) -(1,8874:6630773,10465075:25952256,379060,0 -h1,8874:6630773,10465075:0,0,0 -g1,8874:7579210,10465075 -k1,8874:7579210,10465075:0 -h1,8874:8527648,10465075:0,0,0 -k1,8874:32583028,10465075:24055380 -g1,8874:32583028,10465075 -) -(1,8874:6630773,11131253:25952256,410518,107478 -h1,8874:6630773,11131253:0,0,0 -g1,8874:7579210,11131253 -g1,8874:10108376,11131253 -g1,8874:12321396,11131253 -g1,8874:12637542,11131253 -g1,8874:13269834,11131253 -g1,8874:15166709,11131253 -g1,8874:17063583,11131253 -g1,8874:18644312,11131253 -g1,8874:20225041,11131253 -g1,8874:21489625,11131253 -g1,8874:23070354,11131253 -g1,8874:24334938,11131253 -g1,8874:25599521,11131253 -g1,8874:26231813,11131253 -g1,8874:26864105,11131253 -h1,8874:27180251,11131253:0,0,0 -k1,8874:32583029,11131253:5402778 -g1,8874:32583029,11131253 -) -(1,8876:6630773,12452791:25952256,410518,101187 -(1,8875:6630773,12452791:0,0,0 -g1,8875:6630773,12452791 -g1,8875:6630773,12452791 -g1,8875:6303093,12452791 -(1,8875:6303093,12452791:0,0,0 -) -g1,8875:6630773,12452791 -) -k1,8876:6630773,12452791:0 -h1,8876:10740667,12452791:0,0,0 -k1,8876:32583029,12452791:21842362 -g1,8876:32583029,12452791 -) -(1,8884:6630773,13184505:25952256,410518,101187 -(1,8878:6630773,13184505:0,0,0 -g1,8878:6630773,13184505 -g1,8878:6630773,13184505 -g1,8878:6303093,13184505 -(1,8878:6303093,13184505:0,0,0 -) -g1,8878:6630773,13184505 -) -g1,8884:7579210,13184505 -g1,8884:7895356,13184505 -g1,8884:8211502,13184505 -g1,8884:8527648,13184505 -g1,8884:8843794,13184505 -g1,8884:9159940,13184505 -g1,8884:9476086,13184505 -g1,8884:9792232,13184505 -g1,8884:10108378,13184505 -g1,8884:10424524,13184505 -g1,8884:10740670,13184505 -g1,8884:11056816,13184505 -g1,8884:12005253,13184505 -g1,8884:14218273,13184505 -g1,8884:16431293,13184505 -g1,8884:17063585,13184505 -g1,8884:18328168,13184505 -g1,8884:19276605,13184505 -g1,8884:20541188,13184505 -g1,8884:21489625,13184505 -g1,8884:21805771,13184505 -g1,8884:22121917,13184505 -g1,8884:22438063,13184505 -k1,8884:22438063,13184505:0 -h1,8884:24334937,13184505:0,0,0 -k1,8884:32583029,13184505:8248092 -g1,8884:32583029,13184505 -) -(1,8884:6630773,13850683:25952256,404226,101187 -h1,8884:6630773,13850683:0,0,0 -g1,8884:7579210,13850683 -g1,8884:10108376,13850683 -g1,8884:10424522,13850683 -g1,8884:10740668,13850683 -g1,8884:11056814,13850683 -g1,8884:11372960,13850683 -g1,8884:12005252,13850683 -g1,8884:14218272,13850683 -g1,8884:14534418,13850683 -g1,8884:14850564,13850683 -g1,8884:17063584,13850683 -g1,8884:17379730,13850683 -g1,8884:17695876,13850683 -g1,8884:18012022,13850683 -g1,8884:18328168,13850683 -g1,8884:18644314,13850683 -g1,8884:19276606,13850683 -g1,8884:19592752,13850683 -g1,8884:19908898,13850683 -g1,8884:20225044,13850683 -g1,8884:21489627,13850683 -g1,8884:22121919,13850683 -g1,8884:24651085,13850683 -h1,8884:25599522,13850683:0,0,0 -k1,8884:32583029,13850683:6983507 -g1,8884:32583029,13850683 -) -(1,8884:6630773,14516861:25952256,404226,6290 -h1,8884:6630773,14516861:0,0,0 -g1,8884:7579210,14516861 -g1,8884:10740667,14516861 -h1,8884:11689104,14516861:0,0,0 -k1,8884:32583028,14516861:20893924 -g1,8884:32583028,14516861 -) -(1,8884:6630773,15183039:25952256,379060,0 -h1,8884:6630773,15183039:0,0,0 -g1,8884:7579210,15183039 -k1,8884:7579210,15183039:0 -h1,8884:8527648,15183039:0,0,0 -k1,8884:32583028,15183039:24055380 -g1,8884:32583028,15183039 -) -(1,8884:6630773,15849217:25952256,410518,107478 -h1,8884:6630773,15849217:0,0,0 -g1,8884:7579210,15849217 -g1,8884:10108376,15849217 -g1,8884:12321396,15849217 -g1,8884:12637542,15849217 -g1,8884:13269834,15849217 -g1,8884:15166709,15849217 -g1,8884:17063583,15849217 -g1,8884:18644312,15849217 -g1,8884:20225041,15849217 -g1,8884:21489625,15849217 -g1,8884:23070354,15849217 -g1,8884:24334938,15849217 -g1,8884:25599521,15849217 -g1,8884:26231813,15849217 -g1,8884:26864105,15849217 -h1,8884:27180251,15849217:0,0,0 -k1,8884:32583029,15849217:5402778 -g1,8884:32583029,15849217 -) -] -) -g1,8885:32583029,15956695 -g1,8885:6630773,15956695 -g1,8885:6630773,15956695 -g1,8885:32583029,15956695 -g1,8885:32583029,15956695 -) -h1,8885:6630773,16153303:0,0,0 -v1,8889:6630773,18043367:0,393216,0 -(1,8891:6630773,22082498:25952256,4432347,616038 -g1,8891:6630773,22082498 -(1,8891:6630773,22082498:25952256,4432347,616038 -(1,8891:6630773,22698536:25952256,5048385,0 -[1,8891:6630773,22698536:25952256,5048385,0 -(1,8891:6630773,22672322:25952256,4995957,0 -r1,8891:6656987,22672322:26214,4995957,0 -[1,8891:6656987,22672322:25899828,4995957,0 -(1,8891:6656987,22082498:25899828,3816309,0 -[1,8891:7246811,22082498:24720180,3816309,0 -(1,8891:7246811,19550171:24720180,1283982,196608 -(1,8889:7246811,19550171:0,1283982,196608 -r1,8891:9812056,19550171:2565245,1480590,196608 -k1,8889:7246811,19550171:-2565245 -) -(1,8889:7246811,19550171:2565245,1283982,196608 -) -k1,8889:10021009,19550171:208953 -k1,8889:12435904,19550171:208953 -k1,8889:13663942,19550171:208953 -k1,8889:16534311,19550171:208952 -k1,8889:18598588,19550171:208953 -k1,8889:19458969,19550171:208953 -k1,8889:20760407,19550171:208953 -(1,8889:20760407,19550171:0,452978,115847 -r1,8891:22525520,19550171:1765113,568825,115847 -k1,8889:20760407,19550171:-1765113 -) -(1,8889:20760407,19550171:1765113,452978,115847 -k1,8889:20760407,19550171:3277 -h1,8889:22522243,19550171:0,411205,112570 -) -k1,8889:22734473,19550171:208953 -k1,8889:25270609,19550171:208953 -k1,8889:26146717,19550171:208952 -(1,8889:26146717,19550171:0,452978,115847 -r1,8891:28966966,19550171:2820249,568825,115847 -k1,8889:26146717,19550171:-2820249 -) -(1,8889:26146717,19550171:2820249,452978,115847 -k1,8889:26146717,19550171:3277 -h1,8889:28963689,19550171:0,411205,112570 -) -k1,8889:29175919,19550171:208953 -k1,8889:30576317,19550171:208953 -k1,8889:31966991,19550171:0 -) -(1,8891:7246811,20391659:24720180,505283,115847 -k1,8889:8447226,20391659:181330 -k1,8889:10471428,20391659:181330 -k1,8889:11304186,20391659:181330 -k1,8889:11841376,20391659:181330 -k1,8889:14534046,20391659:181330 -k1,8889:16874131,20391659:181329 -(1,8889:16874131,20391659:0,459977,115847 -r1,8891:18287532,20391659:1413401,575824,115847 -k1,8889:16874131,20391659:-1413401 -) -(1,8889:16874131,20391659:1413401,459977,115847 -k1,8889:16874131,20391659:3277 -h1,8889:18284255,20391659:0,411205,112570 -) -k1,8889:18642532,20391659:181330 -k1,8890:18642532,20391659:0 -k1,8890:19972708,20391659:181330 -(1,8890:19972708,20391659:0,452978,115847 -r1,8891:22441245,20391659:2468537,568825,115847 -k1,8890:19972708,20391659:-2468537 -) -(1,8890:19972708,20391659:2468537,452978,115847 -k1,8890:19972708,20391659:3277 -h1,8890:22437968,20391659:0,411205,112570 -) -k1,8890:22796245,20391659:181330 -(1,8890:22796245,20391659:0,452978,115847 -r1,8891:27023341,20391659:4227096,568825,115847 -k1,8890:22796245,20391659:-4227096 -) -(1,8890:22796245,20391659:4227096,452978,115847 -k1,8890:22796245,20391659:3277 -h1,8890:27020064,20391659:0,411205,112570 -) -k1,8890:27378341,20391659:181330 -(1,8890:27378341,20391659:0,452978,115847 -r1,8891:29846878,20391659:2468537,568825,115847 -k1,8890:27378341,20391659:-2468537 -) -(1,8890:27378341,20391659:2468537,452978,115847 -k1,8890:27378341,20391659:3277 -h1,8890:29843601,20391659:0,411205,112570 -) -k1,8890:30201878,20391659:181330 -(1,8890:30201878,20391659:0,452978,115847 -r1,8891:31966991,20391659:1765113,568825,115847 -k1,8890:30201878,20391659:-1765113 -) -(1,8890:30201878,20391659:1765113,452978,115847 -k1,8890:30201878,20391659:3277 -h1,8890:31963714,20391659:0,411205,112570 -) -k1,8890:31966991,20391659:0 -) -(1,8891:7246811,21233147:24720180,513147,134348 -k1,8890:8697340,21233147:259084 -k1,8890:12170964,21233147:259083 -k1,8890:13089340,21233147:259084 -k1,8890:16302132,21233147:259084 -k1,8890:17212643,21233147:259083 -k1,8890:19840198,21233147:259084 -k1,8890:22389110,21233147:259084 -(1,8890:22389110,21233147:0,459977,115847 -r1,8891:23802511,21233147:1413401,575824,115847 -k1,8890:22389110,21233147:-1413401 -) -(1,8890:22389110,21233147:1413401,459977,115847 -k1,8890:22389110,21233147:3277 -h1,8890:23799234,21233147:0,411205,112570 -) -k1,8890:24235264,21233147:259083 -(1,8890:24235264,21233147:0,459977,115847 -r1,8891:25648665,21233147:1413401,575824,115847 -k1,8890:24235264,21233147:-1413401 -) -(1,8890:24235264,21233147:1413401,459977,115847 -k1,8890:24235264,21233147:3277 -h1,8890:25645388,21233147:0,411205,112570 -) -k1,8890:25907749,21233147:259084 -k1,8890:27358278,21233147:259084 -(1,8890:27358278,21233147:0,459977,115847 -r1,8891:28771679,21233147:1413401,575824,115847 -k1,8890:27358278,21233147:-1413401 -) -(1,8890:27358278,21233147:1413401,459977,115847 -k1,8890:27358278,21233147:3277 -h1,8890:28768402,21233147:0,411205,112570 -) -k1,8890:29204432,21233147:259083 -k1,8890:30586803,21233147:259084 -k1,8890:31966991,21233147:0 -) -(1,8891:7246811,22074635:24720180,513147,7863 -k1,8891:31966990,22074635:21630812 -g1,8891:31966990,22074635 -) -] -) -] -r1,8891:32583029,22672322:26214,4995957,0 -) -] -) -) -g1,8891:32583029,22082498 -) -h1,8891:6630773,22698536:0,0,0 -(1,8895:6630773,25314084:25952256,555811,139132 -(1,8895:6630773,25314084:2899444,534184,0 -g1,8895:6630773,25314084 -g1,8895:9530217,25314084 -) -g1,8895:12966008,25314084 -g1,8895:17643903,25314084 -k1,8895:32583029,25314084:11970476 -g1,8895:32583029,25314084 -) -(1,8899:6630773,26548788:25952256,513147,134348 -k1,8898:9664219,26548788:237025 -k1,8898:13828817,26548788:237025 -k1,8898:16620435,26548788:237025 -k1,8898:18590194,26548788:236987 -k1,8898:19358716,26548788:237025 -k1,8898:21108968,26548788:237026 -k1,8898:21997421,26548788:237025 -k1,8898:24838847,26548788:237025 -k1,8898:25431732,26548788:237025 -k1,8898:27058120,26548788:237025 -k1,8898:28229688,26548788:237025 -k1,8898:29228241,26548788:237025 -k1,8898:32583029,26548788:0 -) -(1,8899:6630773,27390276:25952256,505283,126483 -k1,8898:9664971,27390276:192557 -k1,8898:11251478,27390276:192556 -k1,8898:13646045,27390276:192557 -k1,8898:15030046,27390276:192556 -k1,8898:17903681,27390276:192557 -k1,8898:20855958,27390276:192556 -k1,8898:22315981,27390276:192557 -k1,8898:25350178,27390276:192556 -k1,8898:29643978,27390276:192557 -k1,8898:30581023,27390276:192556 -k1,8898:31129440,27390276:192557 -k1,8898:32583029,27390276:0 -) -(1,8899:6630773,28231764:25952256,513147,134348 -k1,8898:8623832,28231764:154774 -k1,8898:9646958,28231764:154774 -k1,8898:13106713,28231764:154774 -k1,8898:14167850,28231764:154774 -k1,8898:14974052,28231764:154774 -k1,8898:17950806,28231764:154774 -k1,8898:19802308,28231764:154775 -k1,8898:23884655,28231764:154774 -k1,8898:24655467,28231764:154774 -k1,8898:27274395,28231764:154774 -k1,8898:28080597,28231764:154774 -k1,8898:30373155,28231764:154774 -k1,8898:32583029,28231764:0 -) -(1,8899:6630773,29073252:25952256,513147,126483 -k1,8898:9590644,29073252:140512 -k1,8898:13738027,29073252:140512 -k1,8898:16893850,29073252:140512 -k1,8898:18466979,29073252:140512 -k1,8898:19526307,29073252:140513 -k1,8898:22362315,29073252:140512 -(1,8898:22362315,29073252:0,452978,115847 -r1,8898:25182564,29073252:2820249,568825,115847 -k1,8898:22362315,29073252:-2820249 -) -(1,8898:22362315,29073252:2820249,452978,115847 -k1,8898:22362315,29073252:3277 -h1,8898:25179287,29073252:0,411205,112570 -) -k1,8898:25323076,29073252:140512 -k1,8898:28581791,29073252:140512 -k1,8898:29741388,29073252:140512 -k1,8898:32583029,29073252:0 -) -(1,8899:6630773,29914740:25952256,513147,134348 -g1,8898:10757575,29914740 -g1,8898:12148249,29914740 -g1,8898:14725780,29914740 -g1,8898:18152002,29914740 -g1,8898:21753860,29914740 -g1,8898:22900740,29914740 -g1,8898:26078580,29914740 -g1,8898:27469254,29914740 -k1,8899:32583029,29914740:2724988 -g1,8899:32583029,29914740 -) -v1,8901:6630773,31105206:0,393216,0 -(1,8908:6630773,33387379:25952256,2675389,196608 -g1,8908:6630773,33387379 -g1,8908:6630773,33387379 -g1,8908:6434165,33387379 -(1,8908:6434165,33387379:0,2675389,196608 -r1,8908:32779637,33387379:26345472,2871997,196608 -k1,8908:6434165,33387379:-26345472 -) -(1,8908:6434165,33387379:26345472,2675389,196608 -[1,8908:6630773,33387379:25952256,2478781,0 -(1,8903:6630773,31312824:25952256,404226,107478 -(1,8902:6630773,31312824:0,0,0 -g1,8902:6630773,31312824 -g1,8902:6630773,31312824 -g1,8902:6303093,31312824 -(1,8902:6303093,31312824:0,0,0 -) -g1,8902:6630773,31312824 -) -g1,8903:7579210,31312824 -g1,8903:8527648,31312824 -g1,8903:18012020,31312824 -k1,8903:18012020,31312824:0 -h1,8903:22438060,31312824:0,0,0 -k1,8903:32583029,31312824:10144969 -g1,8903:32583029,31312824 -) -(1,8904:6630773,31979002:25952256,404226,107478 -h1,8904:6630773,31979002:0,0,0 -g1,8904:6946919,31979002 -g1,8904:7263065,31979002 -g1,8904:7579211,31979002 -g1,8904:7895357,31979002 -g1,8904:8211503,31979002 -g1,8904:8527649,31979002 -g1,8904:8843795,31979002 -g1,8904:9159941,31979002 -g1,8904:9476087,31979002 -g1,8904:9792233,31979002 -g1,8904:10108379,31979002 -g1,8904:10424525,31979002 -g1,8904:10740671,31979002 -g1,8904:11056817,31979002 -g1,8904:11372963,31979002 -g1,8904:11689109,31979002 -g1,8904:12005255,31979002 -g1,8904:12321401,31979002 -g1,8904:12637547,31979002 -g1,8904:12953693,31979002 -g1,8904:18012025,31979002 -k1,8904:18012025,31979002:0 -h1,8904:23070356,31979002:0,0,0 -k1,8904:32583029,31979002:9512673 -g1,8904:32583029,31979002 -) -(1,8905:6630773,32645180:25952256,369623,82312 -h1,8905:6630773,32645180:0,0,0 -g1,8905:6946919,32645180 -g1,8905:7263065,32645180 -g1,8905:7579211,32645180 -g1,8905:7895357,32645180 -g1,8905:8211503,32645180 -g1,8905:8527649,32645180 -g1,8905:8843795,32645180 -g1,8905:9159941,32645180 -g1,8905:9476087,32645180 -g1,8905:9792233,32645180 -g1,8905:10108379,32645180 -g1,8905:10424525,32645180 -g1,8905:10740671,32645180 -g1,8905:12953691,32645180 -g1,8905:13585983,32645180 -k1,8905:13585983,32645180:0 -h1,8905:15166712,32645180:0,0,0 -k1,8905:32583028,32645180:17416316 -g1,8905:32583028,32645180 -) -(1,8906:6630773,33311358:25952256,404226,76021 -h1,8906:6630773,33311358:0,0,0 -g1,8906:6946919,33311358 -g1,8906:7263065,33311358 -g1,8906:7579211,33311358 -g1,8906:7895357,33311358 -g1,8906:8211503,33311358 -g1,8906:8527649,33311358 -g1,8906:8843795,33311358 -g1,8906:9159941,33311358 -g1,8906:9476087,33311358 -g1,8906:9792233,33311358 -g1,8906:10108379,33311358 -g1,8906:10424525,33311358 -g1,8906:10740671,33311358 -g1,8906:12637545,33311358 -g1,8906:13269837,33311358 -h1,8906:14850566,33311358:0,0,0 -k1,8906:32583030,33311358:17732464 -g1,8906:32583030,33311358 -) -] -) -g1,8908:32583029,33387379 -g1,8908:6630773,33387379 -g1,8908:6630773,33387379 -g1,8908:32583029,33387379 -g1,8908:32583029,33387379 -) -h1,8908:6630773,33583987:0,0,0 -(1,8913:6630773,34774453:25952256,513147,134348 -h1,8911:6630773,34774453:983040,0,0 -k1,8911:8581780,34774453:207749 -k1,8911:11361817,34774453:207749 -k1,8911:12588651,34774453:207749 -k1,8911:15575127,34774453:207749 -k1,8911:17742402,34774453:207749 -k1,8911:18818503,34774453:207749 -k1,8911:20130534,34774453:207749 -k1,8911:21363266,34774453:207749 -k1,8911:22590100,34774453:207749 -k1,8911:25494656,34774453:207749 -k1,8911:26361697,34774453:207749 -k1,8911:28021068,34774453:207749 -k1,8911:30740157,34774453:207749 -k1,8911:31563944,34774453:207749 -k1,8911:32583029,34774453:0 -) -(1,8913:6630773,35440631:25952256,505283,126483 -g1,8911:9671643,35440631 -g1,8911:13798445,35440631 -(1,8911:13798445,35440631:0,435480,115847 -r1,8911:14508423,35440631:709978,551327,115847 -k1,8911:13798445,35440631:-709978 -) -(1,8911:13798445,35440631:709978,435480,115847 -k1,8911:13798445,35440631:3277 -h1,8911:14505146,35440631:0,411205,112570 -) -g1,8911:14707652,35440631 -g1,8911:15558309,35440631 -(1,8911:15558309,35440631:0,424981,115847 -r1,8911:16268287,35440631:709978,540828,115847 -k1,8911:15558309,35440631:-709978 -) -(1,8911:15558309,35440631:709978,424981,115847 -k1,8911:15558309,35440631:3277 -h1,8911:16265010,35440631:0,411205,112570 -) -g1,8911:16641186,35440631 -k1,8913:32583029,35440631:15941843 -g1,8913:32583029,35440631 -) -v1,8913:6630773,36631097:0,393216,0 -(1,8934:6630773,44962541:25952256,8724660,196608 -g1,8934:6630773,44962541 -g1,8934:6630773,44962541 -g1,8934:6434165,44962541 -(1,8934:6434165,44962541:0,8724660,196608 -r1,8934:32779637,44962541:26345472,8921268,196608 -k1,8934:6434165,44962541:-26345472 -) -(1,8934:6434165,44962541:26345472,8724660,196608 -[1,8934:6630773,44962541:25952256,8528052,0 -(1,8915:6630773,36838715:25952256,404226,101187 -(1,8914:6630773,36838715:0,0,0 -g1,8914:6630773,36838715 -g1,8914:6630773,36838715 -g1,8914:6303093,36838715 -(1,8914:6303093,36838715:0,0,0 -) -g1,8914:6630773,36838715 -) -k1,8915:6630773,36838715:0 -h1,8915:9476084,36838715:0,0,0 -k1,8915:32583028,36838715:23106944 -g1,8915:32583028,36838715 -) -(1,8919:6630773,37570429:25952256,404226,101187 -(1,8917:6630773,37570429:0,0,0 -g1,8917:6630773,37570429 -g1,8917:6630773,37570429 -g1,8917:6303093,37570429 -(1,8917:6303093,37570429:0,0,0 -) -g1,8917:6630773,37570429 -) -g1,8919:7579210,37570429 -g1,8919:8843793,37570429 -h1,8919:11372958,37570429:0,0,0 -k1,8919:32583030,37570429:21210072 -g1,8919:32583030,37570429 -) -(1,8921:6630773,38891967:25952256,284164,101187 -(1,8920:6630773,38891967:0,0,0 -g1,8920:6630773,38891967 -g1,8920:6630773,38891967 -g1,8920:6303093,38891967 -(1,8920:6303093,38891967:0,0,0 -) -g1,8920:6630773,38891967 -) -h1,8921:7263064,38891967:0,0,0 -k1,8921:32583028,38891967:25319964 -g1,8921:32583028,38891967 -) -(1,8933:6630773,39623681:25952256,404226,101187 -(1,8923:6630773,39623681:0,0,0 -g1,8923:6630773,39623681 -g1,8923:6630773,39623681 -g1,8923:6303093,39623681 -(1,8923:6303093,39623681:0,0,0 -) -g1,8923:6630773,39623681 -) -g1,8933:7579210,39623681 -g1,8933:10424521,39623681 -g1,8933:13902124,39623681 -g1,8933:15166707,39623681 -g1,8933:16431290,39623681 -h1,8933:18012018,39623681:0,0,0 -k1,8933:32583029,39623681:14571011 -g1,8933:32583029,39623681 -) -(1,8933:6630773,40289859:25952256,404226,76021 -h1,8933:6630773,40289859:0,0,0 -g1,8933:7579210,40289859 -g1,8933:8843793,40289859 -g1,8933:12005250,40289859 -g1,8933:15166707,40289859 -g1,8933:18328164,40289859 -h1,8933:21173475,40289859:0,0,0 -k1,8933:32583029,40289859:11409554 -g1,8933:32583029,40289859 -) -(1,8933:6630773,40956037:25952256,379060,0 -h1,8933:6630773,40956037:0,0,0 -h1,8933:7263064,40956037:0,0,0 -k1,8933:32583028,40956037:25319964 -g1,8933:32583028,40956037 -) -(1,8933:6630773,41622215:25952256,404226,76021 -h1,8933:6630773,41622215:0,0,0 -g1,8933:7579210,41622215 -g1,8933:10424521,41622215 -g1,8933:11372958,41622215 -g1,8933:12005250,41622215 -g1,8933:12953687,41622215 -g1,8933:13585979,41622215 -g1,8933:14534416,41622215 -g1,8933:15166708,41622215 -h1,8933:16115145,41622215:0,0,0 -k1,8933:32583029,41622215:16467884 -g1,8933:32583029,41622215 -) -(1,8933:6630773,42288393:25952256,388497,9436 -h1,8933:6630773,42288393:0,0,0 -g1,8933:7579210,42288393 -g1,8933:7895356,42288393 -g1,8933:8211502,42288393 -g1,8933:8527648,42288393 -g1,8933:8843794,42288393 -g1,8933:9159940,42288393 -g1,8933:9476086,42288393 -g1,8933:9792232,42288393 -g1,8933:10108378,42288393 -g1,8933:10424524,42288393 -g1,8933:10740670,42288393 -g1,8933:11056816,42288393 -g1,8933:11372962,42288393 -g1,8933:11689108,42288393 -g1,8933:12005254,42288393 -g1,8933:12321400,42288393 -g1,8933:12637546,42288393 -g1,8933:12953692,42288393 -g1,8933:13269838,42288393 -g1,8933:13585984,42288393 -g1,8933:13902130,42288393 -g1,8933:15166713,42288393 -g1,8933:15482859,42288393 -g1,8933:15799005,42288393 -g1,8933:16115151,42288393 -g1,8933:16431297,42288393 -g1,8933:16747443,42288393 -g1,8933:17063589,42288393 -g1,8933:17379735,42288393 -g1,8933:17695881,42288393 -g1,8933:18960464,42288393 -g1,8933:19276610,42288393 -g1,8933:19592756,42288393 -g1,8933:19908902,42288393 -g1,8933:20225048,42288393 -g1,8933:20541194,42288393 -g1,8933:20857340,42288393 -g1,8933:21173486,42288393 -g1,8933:22438069,42288393 -g1,8933:22754215,42288393 -g1,8933:23070361,42288393 -g1,8933:23386507,42288393 -g1,8933:23702653,42288393 -g1,8933:24018799,42288393 -g1,8933:24334945,42288393 -g1,8933:24651091,42288393 -h1,8933:25599528,42288393:0,0,0 -k1,8933:32583029,42288393:6983501 -g1,8933:32583029,42288393 -) -(1,8933:6630773,42954571:25952256,404226,107478 -h1,8933:6630773,42954571:0,0,0 -g1,8933:7579210,42954571 -g1,8933:11689104,42954571 -g1,8933:12005250,42954571 -g1,8933:15166707,42954571 -g1,8933:18960455,42954571 -g1,8933:19276601,42954571 -g1,8933:22438058,42954571 -g1,8933:22754204,42954571 -h1,8933:25599515,42954571:0,0,0 -k1,8933:32583029,42954571:6983514 -g1,8933:32583029,42954571 -) -(1,8933:6630773,43620749:25952256,404226,101187 -h1,8933:6630773,43620749:0,0,0 -g1,8933:7579210,43620749 -g1,8933:11372958,43620749 -g1,8933:11689104,43620749 -g1,8933:15166707,43620749 -g1,8933:18960455,43620749 -g1,8933:22438058,43620749 -k1,8933:22438058,43620749:0 -h1,8933:25599515,43620749:0,0,0 -k1,8933:32583029,43620749:6983514 -g1,8933:32583029,43620749 -) -(1,8933:6630773,44286927:25952256,404226,107478 -h1,8933:6630773,44286927:0,0,0 -g1,8933:7579210,44286927 -g1,8933:11689104,44286927 -g1,8933:12005250,44286927 -g1,8933:15166707,44286927 -g1,8933:18960455,44286927 -g1,8933:22438058,44286927 -k1,8933:22438058,44286927:0 -h1,8933:25599515,44286927:0,0,0 -k1,8933:32583029,44286927:6983514 -g1,8933:32583029,44286927 -) -(1,8933:6630773,44953105:25952256,404226,9436 -h1,8933:6630773,44953105:0,0,0 -g1,8933:7579210,44953105 -g1,8933:11372958,44953105 -g1,8933:11689104,44953105 -g1,8933:12005250,44953105 -g1,8933:15166707,44953105 -g1,8933:18960455,44953105 -g1,8933:22438058,44953105 -g1,8933:22754204,44953105 -h1,8933:25599515,44953105:0,0,0 -k1,8933:32583029,44953105:6983514 -g1,8933:32583029,44953105 -) -] -) -g1,8934:32583029,44962541 -g1,8934:6630773,44962541 -g1,8934:6630773,44962541 -g1,8934:32583029,44962541 -g1,8934:32583029,44962541 -) -h1,8934:6630773,45159149:0,0,0 -] -(1,8940:32583029,45706769:0,0,0 -g1,8940:32583029,45706769 -) -) -] -(1,8940:6630773,47279633:25952256,0,0 -h1,8940:6630773,47279633:25952256,0,0 -) -] -h1,8940:4262630,4025873:0,0,0 +[1,8945:3078558,4812305:0,0,0 +(1,8945:3078558,49800853:0,16384,2228224 +g1,8945:29030814,49800853 +g1,8945:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8945:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 +) +] +) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8945:37855564,49800853:1179648,16384,0 +) +) +k1,8945:3078556,49800853:-34777008 +) +] +g1,8945:6630773,4812305 +g1,8945:6630773,4812305 +g1,8945:10653372,4812305 +g1,8945:13512052,4812305 +k1,8945:31387652,4812305:17875600 +) +) +] +[1,8945:6630773,45706769:25952256,40108032,0 +(1,8945:6630773,45706769:25952256,40108032,0 +(1,8945:6630773,45706769:0,0,0 +g1,8945:6630773,45706769 +) +[1,8945:6630773,45706769:25952256,40108032,0 +v1,8890:6630773,6254097:0,393216,0 +(1,8890:6630773,15956695:25952256,10095814,196608 +g1,8890:6630773,15956695 +g1,8890:6630773,15956695 +g1,8890:6434165,15956695 +(1,8890:6434165,15956695:0,10095814,196608 +r1,8890:32779637,15956695:26345472,10292422,196608 +k1,8890:6434165,15956695:-26345472 +) +(1,8890:6434165,15956695:26345472,10095814,196608 +[1,8890:6630773,15956695:25952256,9899206,0 +(1,8879:6630773,6468007:25952256,410518,101187 +(1,8870:6630773,6468007:0,0,0 +g1,8870:6630773,6468007 +g1,8870:6630773,6468007 +g1,8870:6303093,6468007 +(1,8870:6303093,6468007:0,0,0 +) +g1,8870:6630773,6468007 +) +g1,8879:7579210,6468007 +g1,8879:10424521,6468007 +g1,8879:11372958,6468007 +g1,8879:14218269,6468007 +h1,8879:15798997,6468007:0,0,0 +k1,8879:32583029,6468007:16784032 +g1,8879:32583029,6468007 +) +(1,8879:6630773,7134185:25952256,379060,0 +h1,8879:6630773,7134185:0,0,0 +h1,8879:7263064,7134185:0,0,0 +k1,8879:32583028,7134185:25319964 +g1,8879:32583028,7134185 +) +(1,8879:6630773,7800363:25952256,410518,101187 +h1,8879:6630773,7800363:0,0,0 +g1,8879:7579210,7800363 +g1,8879:7895356,7800363 +g1,8879:8211502,7800363 +g1,8879:8527648,7800363 +g1,8879:8843794,7800363 +g1,8879:9159940,7800363 +g1,8879:9476086,7800363 +g1,8879:9792232,7800363 +g1,8879:10108378,7800363 +g1,8879:10424524,7800363 +g1,8879:10740670,7800363 +g1,8879:11056816,7800363 +g1,8879:11372962,7800363 +g1,8879:11689108,7800363 +g1,8879:12637545,7800363 +g1,8879:12953691,7800363 +g1,8879:15166711,7800363 +g1,8879:17379731,7800363 +g1,8879:18012023,7800363 +g1,8879:19276606,7800363 +g1,8879:20225043,7800363 +g1,8879:21489626,7800363 +g1,8879:22438063,7800363 +g1,8879:22754209,7800363 +g1,8879:23070355,7800363 +g1,8879:23386501,7800363 +k1,8879:23386501,7800363:0 +h1,8879:25283375,7800363:0,0,0 +k1,8879:32583029,7800363:7299654 +g1,8879:32583029,7800363 +) +(1,8879:6630773,8466541:25952256,404226,101187 +h1,8879:6630773,8466541:0,0,0 +g1,8879:7579210,8466541 +g1,8879:11372958,8466541 +g1,8879:11689104,8466541 +g1,8879:12005250,8466541 +g1,8879:12637542,8466541 +g1,8879:15166708,8466541 +g1,8879:15482854,8466541 +g1,8879:15799000,8466541 +g1,8879:18012020,8466541 +g1,8879:18328166,8466541 +g1,8879:18644312,8466541 +g1,8879:18960458,8466541 +g1,8879:19276604,8466541 +g1,8879:19592750,8466541 +g1,8879:20225042,8466541 +g1,8879:20541188,8466541 +g1,8879:20857334,8466541 +g1,8879:21173480,8466541 +g1,8879:22438063,8466541 +g1,8879:23070355,8466541 +g1,8879:25599521,8466541 +h1,8879:26547958,8466541:0,0,0 +k1,8879:32583029,8466541:6035071 +g1,8879:32583029,8466541 +) +(1,8879:6630773,9132719:25952256,404226,101187 +h1,8879:6630773,9132719:0,0,0 +g1,8879:7579210,9132719 +g1,8879:10108376,9132719 +g1,8879:10424522,9132719 +g1,8879:10740668,9132719 +g1,8879:11056814,9132719 +g1,8879:11372960,9132719 +g1,8879:11689106,9132719 +g1,8879:12005252,9132719 +g1,8879:12637544,9132719 +g1,8879:15166710,9132719 +g1,8879:15482856,9132719 +g1,8879:15799002,9132719 +g1,8879:16115148,9132719 +g1,8879:16431294,9132719 +g1,8879:18012023,9132719 +g1,8879:18328169,9132719 +g1,8879:18644315,9132719 +g1,8879:18960461,9132719 +g1,8879:19276607,9132719 +g1,8879:19592753,9132719 +g1,8879:20225045,9132719 +g1,8879:20541191,9132719 +g1,8879:20857337,9132719 +g1,8879:21173483,9132719 +g1,8879:22438066,9132719 +g1,8879:23070358,9132719 +g1,8879:25599524,9132719 +h1,8879:26547961,9132719:0,0,0 +k1,8879:32583029,9132719:6035068 +g1,8879:32583029,9132719 +) +(1,8879:6630773,9798897:25952256,404226,6290 +h1,8879:6630773,9798897:0,0,0 +g1,8879:7579210,9798897 +g1,8879:10740667,9798897 +g1,8879:11056813,9798897 +g1,8879:11372959,9798897 +h1,8879:12321396,9798897:0,0,0 +k1,8879:32583028,9798897:20261632 +g1,8879:32583028,9798897 +) +(1,8879:6630773,10465075:25952256,379060,0 +h1,8879:6630773,10465075:0,0,0 +g1,8879:7579210,10465075 +k1,8879:7579210,10465075:0 +h1,8879:8527648,10465075:0,0,0 +k1,8879:32583028,10465075:24055380 +g1,8879:32583028,10465075 +) +(1,8879:6630773,11131253:25952256,410518,107478 +h1,8879:6630773,11131253:0,0,0 +g1,8879:7579210,11131253 +g1,8879:10108376,11131253 +g1,8879:12321396,11131253 +g1,8879:12637542,11131253 +g1,8879:13269834,11131253 +g1,8879:15166709,11131253 +g1,8879:17063583,11131253 +g1,8879:18644312,11131253 +g1,8879:20225041,11131253 +g1,8879:21489625,11131253 +g1,8879:23070354,11131253 +g1,8879:24334938,11131253 +g1,8879:25599521,11131253 +g1,8879:26231813,11131253 +g1,8879:26864105,11131253 +h1,8879:27180251,11131253:0,0,0 +k1,8879:32583029,11131253:5402778 +g1,8879:32583029,11131253 +) +(1,8881:6630773,12452791:25952256,410518,101187 +(1,8880:6630773,12452791:0,0,0 +g1,8880:6630773,12452791 +g1,8880:6630773,12452791 +g1,8880:6303093,12452791 +(1,8880:6303093,12452791:0,0,0 +) +g1,8880:6630773,12452791 +) +k1,8881:6630773,12452791:0 +h1,8881:10740667,12452791:0,0,0 +k1,8881:32583029,12452791:21842362 +g1,8881:32583029,12452791 +) +(1,8889:6630773,13184505:25952256,410518,101187 +(1,8883:6630773,13184505:0,0,0 +g1,8883:6630773,13184505 +g1,8883:6630773,13184505 +g1,8883:6303093,13184505 +(1,8883:6303093,13184505:0,0,0 +) +g1,8883:6630773,13184505 +) +g1,8889:7579210,13184505 +g1,8889:7895356,13184505 +g1,8889:8211502,13184505 +g1,8889:8527648,13184505 +g1,8889:8843794,13184505 +g1,8889:9159940,13184505 +g1,8889:9476086,13184505 +g1,8889:9792232,13184505 +g1,8889:10108378,13184505 +g1,8889:10424524,13184505 +g1,8889:10740670,13184505 +g1,8889:11056816,13184505 +g1,8889:12005253,13184505 +g1,8889:14218273,13184505 +g1,8889:16431293,13184505 +g1,8889:17063585,13184505 +g1,8889:18328168,13184505 +g1,8889:19276605,13184505 +g1,8889:20541188,13184505 +g1,8889:21489625,13184505 +g1,8889:21805771,13184505 +g1,8889:22121917,13184505 +g1,8889:22438063,13184505 +k1,8889:22438063,13184505:0 +h1,8889:24334937,13184505:0,0,0 +k1,8889:32583029,13184505:8248092 +g1,8889:32583029,13184505 +) +(1,8889:6630773,13850683:25952256,404226,101187 +h1,8889:6630773,13850683:0,0,0 +g1,8889:7579210,13850683 +g1,8889:10108376,13850683 +g1,8889:10424522,13850683 +g1,8889:10740668,13850683 +g1,8889:11056814,13850683 +g1,8889:11372960,13850683 +g1,8889:12005252,13850683 +g1,8889:14218272,13850683 +g1,8889:14534418,13850683 +g1,8889:14850564,13850683 +g1,8889:17063584,13850683 +g1,8889:17379730,13850683 +g1,8889:17695876,13850683 +g1,8889:18012022,13850683 +g1,8889:18328168,13850683 +g1,8889:18644314,13850683 +g1,8889:19276606,13850683 +g1,8889:19592752,13850683 +g1,8889:19908898,13850683 +g1,8889:20225044,13850683 +g1,8889:21489627,13850683 +g1,8889:22121919,13850683 +g1,8889:24651085,13850683 +h1,8889:25599522,13850683:0,0,0 +k1,8889:32583029,13850683:6983507 +g1,8889:32583029,13850683 +) +(1,8889:6630773,14516861:25952256,404226,6290 +h1,8889:6630773,14516861:0,0,0 +g1,8889:7579210,14516861 +g1,8889:10740667,14516861 +h1,8889:11689104,14516861:0,0,0 +k1,8889:32583028,14516861:20893924 +g1,8889:32583028,14516861 +) +(1,8889:6630773,15183039:25952256,379060,0 +h1,8889:6630773,15183039:0,0,0 +g1,8889:7579210,15183039 +k1,8889:7579210,15183039:0 +h1,8889:8527648,15183039:0,0,0 +k1,8889:32583028,15183039:24055380 +g1,8889:32583028,15183039 +) +(1,8889:6630773,15849217:25952256,410518,107478 +h1,8889:6630773,15849217:0,0,0 +g1,8889:7579210,15849217 +g1,8889:10108376,15849217 +g1,8889:12321396,15849217 +g1,8889:12637542,15849217 +g1,8889:13269834,15849217 +g1,8889:15166709,15849217 +g1,8889:17063583,15849217 +g1,8889:18644312,15849217 +g1,8889:20225041,15849217 +g1,8889:21489625,15849217 +g1,8889:23070354,15849217 +g1,8889:24334938,15849217 +g1,8889:25599521,15849217 +g1,8889:26231813,15849217 +g1,8889:26864105,15849217 +h1,8889:27180251,15849217:0,0,0 +k1,8889:32583029,15849217:5402778 +g1,8889:32583029,15849217 +) +] +) +g1,8890:32583029,15956695 +g1,8890:6630773,15956695 +g1,8890:6630773,15956695 +g1,8890:32583029,15956695 +g1,8890:32583029,15956695 +) +h1,8890:6630773,16153303:0,0,0 +v1,8894:6630773,18043367:0,393216,0 +(1,8896:6630773,22082498:25952256,4432347,616038 +g1,8896:6630773,22082498 +(1,8896:6630773,22082498:25952256,4432347,616038 +(1,8896:6630773,22698536:25952256,5048385,0 +[1,8896:6630773,22698536:25952256,5048385,0 +(1,8896:6630773,22672322:25952256,4995957,0 +r1,8896:6656987,22672322:26214,4995957,0 +[1,8896:6656987,22672322:25899828,4995957,0 +(1,8896:6656987,22082498:25899828,3816309,0 +[1,8896:7246811,22082498:24720180,3816309,0 +(1,8896:7246811,19550171:24720180,1283982,196608 +(1,8894:7246811,19550171:0,1283982,196608 +r1,8896:9812056,19550171:2565245,1480590,196608 +k1,8894:7246811,19550171:-2565245 +) +(1,8894:7246811,19550171:2565245,1283982,196608 +) +k1,8894:10021009,19550171:208953 +k1,8894:12435904,19550171:208953 +k1,8894:13663942,19550171:208953 +k1,8894:16534311,19550171:208952 +k1,8894:18598588,19550171:208953 +k1,8894:19458969,19550171:208953 +k1,8894:20760407,19550171:208953 +(1,8894:20760407,19550171:0,452978,115847 +r1,8896:22525520,19550171:1765113,568825,115847 +k1,8894:20760407,19550171:-1765113 +) +(1,8894:20760407,19550171:1765113,452978,115847 +k1,8894:20760407,19550171:3277 +h1,8894:22522243,19550171:0,411205,112570 +) +k1,8894:22734473,19550171:208953 +k1,8894:25270609,19550171:208953 +k1,8894:26146717,19550171:208952 +(1,8894:26146717,19550171:0,452978,115847 +r1,8896:28966966,19550171:2820249,568825,115847 +k1,8894:26146717,19550171:-2820249 +) +(1,8894:26146717,19550171:2820249,452978,115847 +k1,8894:26146717,19550171:3277 +h1,8894:28963689,19550171:0,411205,112570 +) +k1,8894:29175919,19550171:208953 +k1,8894:30576317,19550171:208953 +k1,8894:31966991,19550171:0 +) +(1,8896:7246811,20391659:24720180,505283,115847 +k1,8894:8447226,20391659:181330 +k1,8894:10471428,20391659:181330 +k1,8894:11304186,20391659:181330 +k1,8894:11841376,20391659:181330 +k1,8894:14534046,20391659:181330 +k1,8894:16874131,20391659:181329 +(1,8894:16874131,20391659:0,459977,115847 +r1,8896:18287532,20391659:1413401,575824,115847 +k1,8894:16874131,20391659:-1413401 +) +(1,8894:16874131,20391659:1413401,459977,115847 +k1,8894:16874131,20391659:3277 +h1,8894:18284255,20391659:0,411205,112570 +) +k1,8894:18642532,20391659:181330 +k1,8895:18642532,20391659:0 +k1,8895:19972708,20391659:181330 +(1,8895:19972708,20391659:0,452978,115847 +r1,8896:22441245,20391659:2468537,568825,115847 +k1,8895:19972708,20391659:-2468537 +) +(1,8895:19972708,20391659:2468537,452978,115847 +k1,8895:19972708,20391659:3277 +h1,8895:22437968,20391659:0,411205,112570 +) +k1,8895:22796245,20391659:181330 +(1,8895:22796245,20391659:0,452978,115847 +r1,8896:27023341,20391659:4227096,568825,115847 +k1,8895:22796245,20391659:-4227096 +) +(1,8895:22796245,20391659:4227096,452978,115847 +k1,8895:22796245,20391659:3277 +h1,8895:27020064,20391659:0,411205,112570 +) +k1,8895:27378341,20391659:181330 +(1,8895:27378341,20391659:0,452978,115847 +r1,8896:29846878,20391659:2468537,568825,115847 +k1,8895:27378341,20391659:-2468537 +) +(1,8895:27378341,20391659:2468537,452978,115847 +k1,8895:27378341,20391659:3277 +h1,8895:29843601,20391659:0,411205,112570 +) +k1,8895:30201878,20391659:181330 +(1,8895:30201878,20391659:0,452978,115847 +r1,8896:31966991,20391659:1765113,568825,115847 +k1,8895:30201878,20391659:-1765113 +) +(1,8895:30201878,20391659:1765113,452978,115847 +k1,8895:30201878,20391659:3277 +h1,8895:31963714,20391659:0,411205,112570 +) +k1,8895:31966991,20391659:0 +) +(1,8896:7246811,21233147:24720180,513147,134348 +k1,8895:8697340,21233147:259084 +k1,8895:12170964,21233147:259083 +k1,8895:13089340,21233147:259084 +k1,8895:16302132,21233147:259084 +k1,8895:17212643,21233147:259083 +k1,8895:19840198,21233147:259084 +k1,8895:22389110,21233147:259084 +(1,8895:22389110,21233147:0,459977,115847 +r1,8896:23802511,21233147:1413401,575824,115847 +k1,8895:22389110,21233147:-1413401 +) +(1,8895:22389110,21233147:1413401,459977,115847 +k1,8895:22389110,21233147:3277 +h1,8895:23799234,21233147:0,411205,112570 +) +k1,8895:24235264,21233147:259083 +(1,8895:24235264,21233147:0,459977,115847 +r1,8896:25648665,21233147:1413401,575824,115847 +k1,8895:24235264,21233147:-1413401 +) +(1,8895:24235264,21233147:1413401,459977,115847 +k1,8895:24235264,21233147:3277 +h1,8895:25645388,21233147:0,411205,112570 +) +k1,8895:25907749,21233147:259084 +k1,8895:27358278,21233147:259084 +(1,8895:27358278,21233147:0,459977,115847 +r1,8896:28771679,21233147:1413401,575824,115847 +k1,8895:27358278,21233147:-1413401 +) +(1,8895:27358278,21233147:1413401,459977,115847 +k1,8895:27358278,21233147:3277 +h1,8895:28768402,21233147:0,411205,112570 +) +k1,8895:29204432,21233147:259083 +k1,8895:30586803,21233147:259084 +k1,8895:31966991,21233147:0 +) +(1,8896:7246811,22074635:24720180,513147,7863 +k1,8896:31966990,22074635:21630812 +g1,8896:31966990,22074635 +) +] +) +] +r1,8896:32583029,22672322:26214,4995957,0 +) +] +) +) +g1,8896:32583029,22082498 +) +h1,8896:6630773,22698536:0,0,0 +(1,8900:6630773,25314084:25952256,555811,139132 +(1,8900:6630773,25314084:2899444,534184,0 +g1,8900:6630773,25314084 +g1,8900:9530217,25314084 +) +g1,8900:12966008,25314084 +g1,8900:17643903,25314084 +k1,8900:32583029,25314084:11970476 +g1,8900:32583029,25314084 +) +(1,8904:6630773,26548788:25952256,513147,134348 +k1,8903:9664219,26548788:237025 +k1,8903:13828817,26548788:237025 +k1,8903:16620435,26548788:237025 +k1,8903:18590194,26548788:236987 +k1,8903:19358716,26548788:237025 +k1,8903:21108968,26548788:237026 +k1,8903:21997421,26548788:237025 +k1,8903:24838847,26548788:237025 +k1,8903:25431732,26548788:237025 +k1,8903:27058120,26548788:237025 +k1,8903:28229688,26548788:237025 +k1,8903:29228241,26548788:237025 +k1,8903:32583029,26548788:0 +) +(1,8904:6630773,27390276:25952256,505283,126483 +k1,8903:9664971,27390276:192557 +k1,8903:11251478,27390276:192556 +k1,8903:13646045,27390276:192557 +k1,8903:15030046,27390276:192556 +k1,8903:17903681,27390276:192557 +k1,8903:20855958,27390276:192556 +k1,8903:22315981,27390276:192557 +k1,8903:25350178,27390276:192556 +k1,8903:29643978,27390276:192557 +k1,8903:30581023,27390276:192556 +k1,8903:31129440,27390276:192557 +k1,8903:32583029,27390276:0 +) +(1,8904:6630773,28231764:25952256,513147,134348 +k1,8903:8623832,28231764:154774 +k1,8903:9646958,28231764:154774 +k1,8903:13106713,28231764:154774 +k1,8903:14167850,28231764:154774 +k1,8903:14974052,28231764:154774 +k1,8903:17950806,28231764:154774 +k1,8903:19802308,28231764:154775 +k1,8903:23884655,28231764:154774 +k1,8903:24655467,28231764:154774 +k1,8903:27274395,28231764:154774 +k1,8903:28080597,28231764:154774 +k1,8903:30373155,28231764:154774 +k1,8903:32583029,28231764:0 +) +(1,8904:6630773,29073252:25952256,513147,126483 +k1,8903:9590644,29073252:140512 +k1,8903:13738027,29073252:140512 +k1,8903:16893850,29073252:140512 +k1,8903:18466979,29073252:140512 +k1,8903:19526307,29073252:140513 +k1,8903:22362315,29073252:140512 +(1,8903:22362315,29073252:0,452978,115847 +r1,8903:25182564,29073252:2820249,568825,115847 +k1,8903:22362315,29073252:-2820249 +) +(1,8903:22362315,29073252:2820249,452978,115847 +k1,8903:22362315,29073252:3277 +h1,8903:25179287,29073252:0,411205,112570 +) +k1,8903:25323076,29073252:140512 +k1,8903:28581791,29073252:140512 +k1,8903:29741388,29073252:140512 +k1,8903:32583029,29073252:0 +) +(1,8904:6630773,29914740:25952256,513147,134348 +g1,8903:10757575,29914740 +g1,8903:12148249,29914740 +g1,8903:14725780,29914740 +g1,8903:18152002,29914740 +g1,8903:21753860,29914740 +g1,8903:22900740,29914740 +g1,8903:26078580,29914740 +g1,8903:27469254,29914740 +k1,8904:32583029,29914740:2724988 +g1,8904:32583029,29914740 +) +v1,8906:6630773,31105206:0,393216,0 +(1,8913:6630773,33387379:25952256,2675389,196608 +g1,8913:6630773,33387379 +g1,8913:6630773,33387379 +g1,8913:6434165,33387379 +(1,8913:6434165,33387379:0,2675389,196608 +r1,8913:32779637,33387379:26345472,2871997,196608 +k1,8913:6434165,33387379:-26345472 +) +(1,8913:6434165,33387379:26345472,2675389,196608 +[1,8913:6630773,33387379:25952256,2478781,0 +(1,8908:6630773,31312824:25952256,404226,107478 +(1,8907:6630773,31312824:0,0,0 +g1,8907:6630773,31312824 +g1,8907:6630773,31312824 +g1,8907:6303093,31312824 +(1,8907:6303093,31312824:0,0,0 +) +g1,8907:6630773,31312824 +) +g1,8908:7579210,31312824 +g1,8908:8527648,31312824 +g1,8908:18012020,31312824 +k1,8908:18012020,31312824:0 +h1,8908:22438060,31312824:0,0,0 +k1,8908:32583029,31312824:10144969 +g1,8908:32583029,31312824 +) +(1,8909:6630773,31979002:25952256,404226,107478 +h1,8909:6630773,31979002:0,0,0 +g1,8909:6946919,31979002 +g1,8909:7263065,31979002 +g1,8909:7579211,31979002 +g1,8909:7895357,31979002 +g1,8909:8211503,31979002 +g1,8909:8527649,31979002 +g1,8909:8843795,31979002 +g1,8909:9159941,31979002 +g1,8909:9476087,31979002 +g1,8909:9792233,31979002 +g1,8909:10108379,31979002 +g1,8909:10424525,31979002 +g1,8909:10740671,31979002 +g1,8909:11056817,31979002 +g1,8909:11372963,31979002 +g1,8909:11689109,31979002 +g1,8909:12005255,31979002 +g1,8909:12321401,31979002 +g1,8909:12637547,31979002 +g1,8909:12953693,31979002 +g1,8909:18012025,31979002 +k1,8909:18012025,31979002:0 +h1,8909:23070356,31979002:0,0,0 +k1,8909:32583029,31979002:9512673 +g1,8909:32583029,31979002 +) +(1,8910:6630773,32645180:25952256,369623,82312 +h1,8910:6630773,32645180:0,0,0 +g1,8910:6946919,32645180 +g1,8910:7263065,32645180 +g1,8910:7579211,32645180 +g1,8910:7895357,32645180 +g1,8910:8211503,32645180 +g1,8910:8527649,32645180 +g1,8910:8843795,32645180 +g1,8910:9159941,32645180 +g1,8910:9476087,32645180 +g1,8910:9792233,32645180 +g1,8910:10108379,32645180 +g1,8910:10424525,32645180 +g1,8910:10740671,32645180 +g1,8910:12953691,32645180 +g1,8910:13585983,32645180 +k1,8910:13585983,32645180:0 +h1,8910:15166712,32645180:0,0,0 +k1,8910:32583028,32645180:17416316 +g1,8910:32583028,32645180 +) +(1,8911:6630773,33311358:25952256,404226,76021 +h1,8911:6630773,33311358:0,0,0 +g1,8911:6946919,33311358 +g1,8911:7263065,33311358 +g1,8911:7579211,33311358 +g1,8911:7895357,33311358 +g1,8911:8211503,33311358 +g1,8911:8527649,33311358 +g1,8911:8843795,33311358 +g1,8911:9159941,33311358 +g1,8911:9476087,33311358 +g1,8911:9792233,33311358 +g1,8911:10108379,33311358 +g1,8911:10424525,33311358 +g1,8911:10740671,33311358 +g1,8911:12637545,33311358 +g1,8911:13269837,33311358 +h1,8911:14850566,33311358:0,0,0 +k1,8911:32583030,33311358:17732464 +g1,8911:32583030,33311358 +) +] +) +g1,8913:32583029,33387379 +g1,8913:6630773,33387379 +g1,8913:6630773,33387379 +g1,8913:32583029,33387379 +g1,8913:32583029,33387379 +) +h1,8913:6630773,33583987:0,0,0 +(1,8918:6630773,34774453:25952256,513147,134348 +h1,8916:6630773,34774453:983040,0,0 +k1,8916:8581780,34774453:207749 +k1,8916:11361817,34774453:207749 +k1,8916:12588651,34774453:207749 +k1,8916:15575127,34774453:207749 +k1,8916:17742402,34774453:207749 +k1,8916:18818503,34774453:207749 +k1,8916:20130534,34774453:207749 +k1,8916:21363266,34774453:207749 +k1,8916:22590100,34774453:207749 +k1,8916:25494656,34774453:207749 +k1,8916:26361697,34774453:207749 +k1,8916:28021068,34774453:207749 +k1,8916:30740157,34774453:207749 +k1,8916:31563944,34774453:207749 +k1,8916:32583029,34774453:0 +) +(1,8918:6630773,35440631:25952256,505283,126483 +g1,8916:9671643,35440631 +g1,8916:13798445,35440631 +(1,8916:13798445,35440631:0,435480,115847 +r1,8916:14508423,35440631:709978,551327,115847 +k1,8916:13798445,35440631:-709978 +) +(1,8916:13798445,35440631:709978,435480,115847 +k1,8916:13798445,35440631:3277 +h1,8916:14505146,35440631:0,411205,112570 +) +g1,8916:14707652,35440631 +g1,8916:15558309,35440631 +(1,8916:15558309,35440631:0,424981,115847 +r1,8916:16268287,35440631:709978,540828,115847 +k1,8916:15558309,35440631:-709978 +) +(1,8916:15558309,35440631:709978,424981,115847 +k1,8916:15558309,35440631:3277 +h1,8916:16265010,35440631:0,411205,112570 +) +g1,8916:16641186,35440631 +k1,8918:32583029,35440631:15941843 +g1,8918:32583029,35440631 +) +v1,8918:6630773,36631097:0,393216,0 +(1,8939:6630773,44962541:25952256,8724660,196608 +g1,8939:6630773,44962541 +g1,8939:6630773,44962541 +g1,8939:6434165,44962541 +(1,8939:6434165,44962541:0,8724660,196608 +r1,8939:32779637,44962541:26345472,8921268,196608 +k1,8939:6434165,44962541:-26345472 +) +(1,8939:6434165,44962541:26345472,8724660,196608 +[1,8939:6630773,44962541:25952256,8528052,0 +(1,8920:6630773,36838715:25952256,404226,101187 +(1,8919:6630773,36838715:0,0,0 +g1,8919:6630773,36838715 +g1,8919:6630773,36838715 +g1,8919:6303093,36838715 +(1,8919:6303093,36838715:0,0,0 +) +g1,8919:6630773,36838715 +) +k1,8920:6630773,36838715:0 +h1,8920:9476084,36838715:0,0,0 +k1,8920:32583028,36838715:23106944 +g1,8920:32583028,36838715 +) +(1,8924:6630773,37570429:25952256,404226,101187 +(1,8922:6630773,37570429:0,0,0 +g1,8922:6630773,37570429 +g1,8922:6630773,37570429 +g1,8922:6303093,37570429 +(1,8922:6303093,37570429:0,0,0 +) +g1,8922:6630773,37570429 +) +g1,8924:7579210,37570429 +g1,8924:8843793,37570429 +h1,8924:11372958,37570429:0,0,0 +k1,8924:32583030,37570429:21210072 +g1,8924:32583030,37570429 +) +(1,8926:6630773,38891967:25952256,284164,101187 +(1,8925:6630773,38891967:0,0,0 +g1,8925:6630773,38891967 +g1,8925:6630773,38891967 +g1,8925:6303093,38891967 +(1,8925:6303093,38891967:0,0,0 +) +g1,8925:6630773,38891967 +) +h1,8926:7263064,38891967:0,0,0 +k1,8926:32583028,38891967:25319964 +g1,8926:32583028,38891967 +) +(1,8938:6630773,39623681:25952256,404226,101187 +(1,8928:6630773,39623681:0,0,0 +g1,8928:6630773,39623681 +g1,8928:6630773,39623681 +g1,8928:6303093,39623681 +(1,8928:6303093,39623681:0,0,0 +) +g1,8928:6630773,39623681 +) +g1,8938:7579210,39623681 +g1,8938:10424521,39623681 +g1,8938:13902124,39623681 +g1,8938:15166707,39623681 +g1,8938:16431290,39623681 +h1,8938:18012018,39623681:0,0,0 +k1,8938:32583029,39623681:14571011 +g1,8938:32583029,39623681 +) +(1,8938:6630773,40289859:25952256,404226,76021 +h1,8938:6630773,40289859:0,0,0 +g1,8938:7579210,40289859 +g1,8938:8843793,40289859 +g1,8938:12005250,40289859 +g1,8938:15166707,40289859 +g1,8938:18328164,40289859 +h1,8938:21173475,40289859:0,0,0 +k1,8938:32583029,40289859:11409554 +g1,8938:32583029,40289859 +) +(1,8938:6630773,40956037:25952256,379060,0 +h1,8938:6630773,40956037:0,0,0 +h1,8938:7263064,40956037:0,0,0 +k1,8938:32583028,40956037:25319964 +g1,8938:32583028,40956037 +) +(1,8938:6630773,41622215:25952256,404226,76021 +h1,8938:6630773,41622215:0,0,0 +g1,8938:7579210,41622215 +g1,8938:10424521,41622215 +g1,8938:11372958,41622215 +g1,8938:12005250,41622215 +g1,8938:12953687,41622215 +g1,8938:13585979,41622215 +g1,8938:14534416,41622215 +g1,8938:15166708,41622215 +h1,8938:16115145,41622215:0,0,0 +k1,8938:32583029,41622215:16467884 +g1,8938:32583029,41622215 +) +(1,8938:6630773,42288393:25952256,388497,9436 +h1,8938:6630773,42288393:0,0,0 +g1,8938:7579210,42288393 +g1,8938:7895356,42288393 +g1,8938:8211502,42288393 +g1,8938:8527648,42288393 +g1,8938:8843794,42288393 +g1,8938:9159940,42288393 +g1,8938:9476086,42288393 +g1,8938:9792232,42288393 +g1,8938:10108378,42288393 +g1,8938:10424524,42288393 +g1,8938:10740670,42288393 +g1,8938:11056816,42288393 +g1,8938:11372962,42288393 +g1,8938:11689108,42288393 +g1,8938:12005254,42288393 +g1,8938:12321400,42288393 +g1,8938:12637546,42288393 +g1,8938:12953692,42288393 +g1,8938:13269838,42288393 +g1,8938:13585984,42288393 +g1,8938:13902130,42288393 +g1,8938:15166713,42288393 +g1,8938:15482859,42288393 +g1,8938:15799005,42288393 +g1,8938:16115151,42288393 +g1,8938:16431297,42288393 +g1,8938:16747443,42288393 +g1,8938:17063589,42288393 +g1,8938:17379735,42288393 +g1,8938:17695881,42288393 +g1,8938:18960464,42288393 +g1,8938:19276610,42288393 +g1,8938:19592756,42288393 +g1,8938:19908902,42288393 +g1,8938:20225048,42288393 +g1,8938:20541194,42288393 +g1,8938:20857340,42288393 +g1,8938:21173486,42288393 +g1,8938:22438069,42288393 +g1,8938:22754215,42288393 +g1,8938:23070361,42288393 +g1,8938:23386507,42288393 +g1,8938:23702653,42288393 +g1,8938:24018799,42288393 +g1,8938:24334945,42288393 +g1,8938:24651091,42288393 +h1,8938:25599528,42288393:0,0,0 +k1,8938:32583029,42288393:6983501 +g1,8938:32583029,42288393 +) +(1,8938:6630773,42954571:25952256,404226,107478 +h1,8938:6630773,42954571:0,0,0 +g1,8938:7579210,42954571 +g1,8938:11689104,42954571 +g1,8938:12005250,42954571 +g1,8938:15166707,42954571 +g1,8938:18960455,42954571 +g1,8938:19276601,42954571 +g1,8938:22438058,42954571 +g1,8938:22754204,42954571 +h1,8938:25599515,42954571:0,0,0 +k1,8938:32583029,42954571:6983514 +g1,8938:32583029,42954571 +) +(1,8938:6630773,43620749:25952256,404226,101187 +h1,8938:6630773,43620749:0,0,0 +g1,8938:7579210,43620749 +g1,8938:11372958,43620749 +g1,8938:11689104,43620749 +g1,8938:15166707,43620749 +g1,8938:18960455,43620749 +g1,8938:22438058,43620749 +k1,8938:22438058,43620749:0 +h1,8938:25599515,43620749:0,0,0 +k1,8938:32583029,43620749:6983514 +g1,8938:32583029,43620749 +) +(1,8938:6630773,44286927:25952256,404226,107478 +h1,8938:6630773,44286927:0,0,0 +g1,8938:7579210,44286927 +g1,8938:11689104,44286927 +g1,8938:12005250,44286927 +g1,8938:15166707,44286927 +g1,8938:18960455,44286927 +g1,8938:22438058,44286927 +k1,8938:22438058,44286927:0 +h1,8938:25599515,44286927:0,0,0 +k1,8938:32583029,44286927:6983514 +g1,8938:32583029,44286927 +) +(1,8938:6630773,44953105:25952256,404226,9436 +h1,8938:6630773,44953105:0,0,0 +g1,8938:7579210,44953105 +g1,8938:11372958,44953105 +g1,8938:11689104,44953105 +g1,8938:12005250,44953105 +g1,8938:15166707,44953105 +g1,8938:18960455,44953105 +g1,8938:22438058,44953105 +g1,8938:22754204,44953105 +h1,8938:25599515,44953105:0,0,0 +k1,8938:32583029,44953105:6983514 +g1,8938:32583029,44953105 +) +] +) +g1,8939:32583029,44962541 +g1,8939:6630773,44962541 +g1,8939:6630773,44962541 +g1,8939:32583029,44962541 +g1,8939:32583029,44962541 +) +h1,8939:6630773,45159149:0,0,0 +] +(1,8945:32583029,45706769:0,0,0 +g1,8945:32583029,45706769 +) +) +] +(1,8945:6630773,47279633:25952256,0,0 +h1,8945:6630773,47279633:25952256,0,0 +) +] +h1,8945:4262630,4025873:0,0,0 ] !28186 }164 -Input:1177:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1178:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1173:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1174:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {165 -[1,8992:4262630,47279633:28320399,43253760,0 -(1,8992:4262630,4025873:0,0,0 -[1,8992:-473657,4025873:25952256,0,0 -(1,8992:-473657,-710414:25952256,0,0 -h1,8992:-473657,-710414:0,0,0 -(1,8992:-473657,-710414:0,0,0 -(1,8992:-473657,-710414:0,0,0 -g1,8992:-473657,-710414 -(1,8992:-473657,-710414:65781,0,65781 -g1,8992:-407876,-710414 -[1,8992:-407876,-644633:0,0,0 +[1,8997:4262630,47279633:28320399,43253760,0 +(1,8997:4262630,4025873:0,0,0 +[1,8997:-473657,4025873:25952256,0,0 +(1,8997:-473657,-710414:25952256,0,0 +h1,8997:-473657,-710414:0,0,0 +(1,8997:-473657,-710414:0,0,0 +(1,8997:-473657,-710414:0,0,0 +g1,8997:-473657,-710414 +(1,8997:-473657,-710414:65781,0,65781 +g1,8997:-407876,-710414 +[1,8997:-407876,-644633:0,0,0 ] ) -k1,8992:-473657,-710414:-65781 +k1,8997:-473657,-710414:-65781 ) ) -k1,8992:25478599,-710414:25952256 -g1,8992:25478599,-710414 +k1,8997:25478599,-710414:25952256 +g1,8997:25478599,-710414 ) ] ) -[1,8992:6630773,47279633:25952256,43253760,0 -[1,8992:6630773,4812305:25952256,786432,0 -(1,8992:6630773,4812305:25952256,505283,134348 -(1,8992:6630773,4812305:25952256,505283,134348 -g1,8992:3078558,4812305 -[1,8992:3078558,4812305:0,0,0 -(1,8992:3078558,2439708:0,1703936,0 -k1,8992:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,8992:2537886,2439708:1179648,16384,0 +[1,8997:6630773,47279633:25952256,43253760,0 +[1,8997:6630773,4812305:25952256,786432,0 +(1,8997:6630773,4812305:25952256,505283,134348 +(1,8997:6630773,4812305:25952256,505283,134348 +g1,8997:3078558,4812305 +[1,8997:3078558,4812305:0,0,0 +(1,8997:3078558,2439708:0,1703936,0 +k1,8997:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,8997:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,8992:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,8997:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,8992:3078558,4812305:0,0,0 -(1,8992:3078558,2439708:0,1703936,0 -g1,8992:29030814,2439708 -g1,8992:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,8992:36151628,1915420:16384,1179648,0 +[1,8997:3078558,4812305:0,0,0 +(1,8997:3078558,2439708:0,1703936,0 +g1,8997:29030814,2439708 +g1,8997:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,8997:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,8992:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,8997:37855564,2439708:1179648,16384,0 ) ) -k1,8992:3078556,2439708:-34777008 +k1,8997:3078556,2439708:-34777008 ) ] -[1,8992:3078558,4812305:0,0,0 -(1,8992:3078558,49800853:0,16384,2228224 -k1,8992:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,8992:2537886,49800853:1179648,16384,0 +[1,8997:3078558,4812305:0,0,0 +(1,8997:3078558,49800853:0,16384,2228224 +k1,8997:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,8997:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,8992:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,8997:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,8992:3078558,4812305:0,0,0 -(1,8992:3078558,49800853:0,16384,2228224 -g1,8992:29030814,49800853 -g1,8992:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,8992:36151628,51504789:16384,1179648,0 +[1,8997:3078558,4812305:0,0,0 +(1,8997:3078558,49800853:0,16384,2228224 +g1,8997:29030814,49800853 +g1,8997:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,8997:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,8992:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,8997:37855564,49800853:1179648,16384,0 ) ) -k1,8992:3078556,49800853:-34777008 -) -] -g1,8992:6630773,4812305 -k1,8992:24573876,4812305:16747726 -g1,8992:25960617,4812305 -g1,8992:26609423,4812305 -g1,8992:29923578,4812305 -) -) -] -[1,8992:6630773,45706769:25952256,40108032,0 -(1,8992:6630773,45706769:25952256,40108032,0 -(1,8992:6630773,45706769:0,0,0 -g1,8992:6630773,45706769 -) -[1,8992:6630773,45706769:25952256,40108032,0 -(1,8938:6630773,6254097:25952256,513147,126483 -h1,8937:6630773,6254097:983040,0,0 -k1,8937:8508183,6254097:266535 -k1,8937:9793803,6254097:266535 -k1,8937:13224415,6254097:266534 -k1,8937:14510035,6254097:266535 -k1,8937:16310768,6254097:266535 -k1,8937:20306957,6254097:266535 -k1,8937:21232784,6254097:266535 -k1,8937:24554606,6254097:266534 -k1,8937:26012586,6254097:266535 -k1,8937:30208004,6254097:266535 -k1,8938:32583029,6254097:0 -) -(1,8938:6630773,7095585:25952256,513147,126483 -k1,8937:8438732,7095585:240338 -k1,8937:9670631,7095585:240339 -k1,8937:11512669,7095585:240338 -k1,8937:15455136,7095585:240338 -k1,8937:16354767,7095585:240339 -k1,8937:17614190,7095585:240338 -k1,8937:21826666,7095585:240339 -k1,8937:22726296,7095585:240338 -k1,8937:24418256,7095585:240338 -k1,8937:27500236,7095585:240339 -k1,8937:31337845,7095585:240338 -k1,8937:32583029,7095585:0 -) -(1,8938:6630773,7937073:25952256,505283,134348 -g1,8937:7481430,7937073 -g1,8937:10981052,7937073 -g1,8937:12199366,7937073 -g1,8937:15224507,7937073 -g1,8937:17583147,7937073 -k1,8938:32583029,7937073:10754460 -g1,8938:32583029,7937073 -) -v1,8940:6630773,9127539:0,393216,0 -(1,8951:6630773,12832770:25952256,4098447,196608 -g1,8951:6630773,12832770 -g1,8951:6630773,12832770 -g1,8951:6434165,12832770 -(1,8951:6434165,12832770:0,4098447,196608 -r1,8951:32779637,12832770:26345472,4295055,196608 -k1,8951:6434165,12832770:-26345472 -) -(1,8951:6434165,12832770:26345472,4098447,196608 -[1,8951:6630773,12832770:25952256,3901839,0 -(1,8942:6630773,9335157:25952256,404226,101187 -(1,8941:6630773,9335157:0,0,0 -g1,8941:6630773,9335157 -g1,8941:6630773,9335157 -g1,8941:6303093,9335157 -(1,8941:6303093,9335157:0,0,0 -) -g1,8941:6630773,9335157 -) -k1,8942:6630773,9335157:0 -h1,8942:10108376,9335157:0,0,0 -k1,8942:32583028,9335157:22474652 -g1,8942:32583028,9335157 -) -(1,8950:6630773,10066871:25952256,410518,101187 -(1,8944:6630773,10066871:0,0,0 -g1,8944:6630773,10066871 -g1,8944:6630773,10066871 -g1,8944:6303093,10066871 -(1,8944:6303093,10066871:0,0,0 -) -g1,8944:6630773,10066871 -) -g1,8950:7579210,10066871 -g1,8950:11056813,10066871 -g1,8950:12005250,10066871 -h1,8950:15482852,10066871:0,0,0 -k1,8950:32583028,10066871:17100176 -g1,8950:32583028,10066871 -) -(1,8950:6630773,10733049:25952256,388497,9436 -h1,8950:6630773,10733049:0,0,0 -g1,8950:7579210,10733049 -g1,8950:7895356,10733049 -g1,8950:8211502,10733049 -g1,8950:8527648,10733049 -g1,8950:8843794,10733049 -g1,8950:9159940,10733049 -g1,8950:9476086,10733049 -g1,8950:9792232,10733049 -g1,8950:10108378,10733049 -g1,8950:10424524,10733049 -g1,8950:10740670,10733049 -g1,8950:11056816,10733049 -g1,8950:11372962,10733049 -g1,8950:11689108,10733049 -g1,8950:12005254,10733049 -g1,8950:12321400,10733049 -g1,8950:12637546,10733049 -g1,8950:12953692,10733049 -g1,8950:13269838,10733049 -g1,8950:13585984,10733049 -g1,8950:13902130,10733049 -g1,8950:14218276,10733049 -g1,8950:14534422,10733049 -g1,8950:14850568,10733049 -g1,8950:15166714,10733049 -g1,8950:15482860,10733049 -g1,8950:15799006,10733049 -g1,8950:17063589,10733049 -g1,8950:17379735,10733049 -g1,8950:17695881,10733049 -g1,8950:18012027,10733049 -g1,8950:19276610,10733049 -g1,8950:19592756,10733049 -g1,8950:19908902,10733049 -g1,8950:20225048,10733049 -g1,8950:20541194,10733049 -g1,8950:21805777,10733049 -g1,8950:22121923,10733049 -g1,8950:22438069,10733049 -g1,8950:22754215,10733049 -g1,8950:23070361,10733049 -h1,8950:24018798,10733049:0,0,0 -k1,8950:32583029,10733049:8564231 -g1,8950:32583029,10733049 -) -(1,8950:6630773,11399227:25952256,404226,9436 -h1,8950:6630773,11399227:0,0,0 -g1,8950:7579210,11399227 -g1,8950:10424521,11399227 -g1,8950:13585978,11399227 -g1,8950:13902124,11399227 -g1,8950:14218270,11399227 -g1,8950:14534416,11399227 -g1,8950:14850562,11399227 -g1,8950:17063582,11399227 -g1,8950:19276602,11399227 -g1,8950:21805768,11399227 -h1,8950:24018788,11399227:0,0,0 -k1,8950:32583029,11399227:8564241 -g1,8950:32583029,11399227 -) -(1,8950:6630773,12065405:25952256,410518,101187 -h1,8950:6630773,12065405:0,0,0 -g1,8950:7579210,12065405 -g1,8950:11056813,12065405 -g1,8950:12005250,12065405 -g1,8950:14850561,12065405 -g1,8950:17063581,12065405 -g1,8950:19276601,12065405 -g1,8950:21805767,12065405 -h1,8950:24018787,12065405:0,0,0 -k1,8950:32583029,12065405:8564242 -g1,8950:32583029,12065405 -) -(1,8950:6630773,12731583:25952256,404226,101187 -h1,8950:6630773,12731583:0,0,0 -g1,8950:7579210,12731583 -g1,8950:11056813,12731583 -g1,8950:14534416,12731583 -g1,8950:14850562,12731583 -g1,8950:17063582,12731583 -g1,8950:19276602,12731583 -g1,8950:21805768,12731583 -h1,8950:24018788,12731583:0,0,0 -k1,8950:32583029,12731583:8564241 -g1,8950:32583029,12731583 -) -] -) -g1,8951:32583029,12832770 -g1,8951:6630773,12832770 -g1,8951:6630773,12832770 -g1,8951:32583029,12832770 -g1,8951:32583029,12832770 -) -h1,8951:6630773,13029378:0,0,0 -(1,8957:6630773,14395154:25952256,505283,126483 -h1,8956:6630773,14395154:983040,0,0 -k1,8956:10254658,14395154:242883 -(1,8956:10254658,14395154:0,452978,115847 -r1,8956:13074907,14395154:2820249,568825,115847 -k1,8956:10254658,14395154:-2820249 -) -(1,8956:10254658,14395154:2820249,452978,115847 -k1,8956:10254658,14395154:3277 -h1,8956:13071630,14395154:0,411205,112570 -) -k1,8956:13317790,14395154:242883 -k1,8956:16511104,14395154:242883 -k1,8956:17109847,14395154:242883 -k1,8956:18630026,14395154:242882 -k1,8956:20266860,14395154:242883 -k1,8956:21666453,14395154:242883 -k1,8956:24750977,14395154:242883 -k1,8956:28591131,14395154:242883 -k1,8956:30079154,14395154:242839 -k1,8956:31131407,14395154:242883 -k1,8956:32583029,14395154:0 -) -(1,8957:6630773,15236642:25952256,513147,134348 -g1,8956:8256065,15236642 -g1,8956:9826307,15236642 -g1,8956:12203953,15236642 -g1,8956:13350833,15236642 -g1,8956:14569147,15236642 -k1,8957:32583029,15236642:15143405 -g1,8957:32583029,15236642 -) -v1,8959:6630773,16427108:0,393216,0 -(1,8963:6630773,16735913:25952256,702021,196608 -g1,8963:6630773,16735913 -g1,8963:6630773,16735913 -g1,8963:6434165,16735913 -(1,8963:6434165,16735913:0,702021,196608 -r1,8963:32779637,16735913:26345472,898629,196608 -k1,8963:6434165,16735913:-26345472 -) -(1,8963:6434165,16735913:26345472,702021,196608 -[1,8963:6630773,16735913:25952256,505413,0 -(1,8961:6630773,16634726:25952256,404226,101187 -(1,8960:6630773,16634726:0,0,0 -g1,8960:6630773,16634726 -g1,8960:6630773,16634726 -g1,8960:6303093,16634726 -(1,8960:6303093,16634726:0,0,0 -) -g1,8960:6630773,16634726 -) -k1,8961:6630773,16634726:0 -h1,8961:9792230,16634726:0,0,0 -k1,8961:32583030,16634726:22790800 -g1,8961:32583030,16634726 -) -] -) -g1,8963:32583029,16735913 -g1,8963:6630773,16735913 -g1,8963:6630773,16735913 -g1,8963:32583029,16735913 -g1,8963:32583029,16735913 -) -h1,8963:6630773,16932521:0,0,0 -(1,8966:6630773,35689681:25952256,18167336,0 -k1,8966:10523651,35689681:3892878 -h1,8965:10523651,35689681:0,0,0 -(1,8965:10523651,35689681:18166500,18167336,0 -(1,8965:10523651,35689681:18167381,18167381,0 -(1,8965:10523651,35689681:18167381,18167381,0 -(1,8965:10523651,35689681:0,18167381,0 -(1,8965:10523651,35689681:0,28377088,0 -(1,8965:10523651,35689681:28377088,28377088,0 -) -k1,8965:10523651,35689681:-28377088 -) -) -g1,8965:28691032,35689681 -) -) -) -g1,8966:28690151,35689681 -k1,8966:32583029,35689681:3892878 -) -(1,8976:6630773,36531169:25952256,513147,134348 -h1,8975:6630773,36531169:983040,0,0 -k1,8975:10194858,36531169:183083 -(1,8975:10194858,36531169:0,452978,115847 -r1,8975:12311683,36531169:2116825,568825,115847 -k1,8975:10194858,36531169:-2116825 -) -(1,8975:10194858,36531169:2116825,452978,115847 -k1,8975:10194858,36531169:3277 -h1,8975:12308406,36531169:0,411205,112570 -) -k1,8975:12494765,36531169:183082 -k1,8975:15740345,36531169:183083 -k1,8975:16279287,36531169:183082 -k1,8975:17507014,36531169:183083 -k1,8975:18967393,36531169:183082 -k1,8975:19809768,36531169:183083 -k1,8975:22977360,36531169:183082 -k1,8975:27784008,36531169:183083 -k1,8975:28618518,36531169:183082 -k1,8975:29820686,36531169:183083 -k1,8975:32583029,36531169:0 -) -(1,8976:6630773,37372657:25952256,426639,126483 -k1,8976:32583028,37372657:21851012 -g1,8976:32583028,37372657 -) -v1,8978:6630773,38563123:0,393216,0 -(1,8982:6630773,38871928:25952256,702021,196608 -g1,8982:6630773,38871928 -g1,8982:6630773,38871928 -g1,8982:6434165,38871928 -(1,8982:6434165,38871928:0,702021,196608 -r1,8982:32779637,38871928:26345472,898629,196608 -k1,8982:6434165,38871928:-26345472 +k1,8997:3078556,49800853:-34777008 +) +] +g1,8997:6630773,4812305 +k1,8997:24502442,4812305:16676292 +g1,8997:25889183,4812305 +g1,8997:26537989,4812305 +g1,8997:29852144,4812305 +) +) +] +[1,8997:6630773,45706769:25952256,40108032,0 +(1,8997:6630773,45706769:25952256,40108032,0 +(1,8997:6630773,45706769:0,0,0 +g1,8997:6630773,45706769 +) +[1,8997:6630773,45706769:25952256,40108032,0 +(1,8943:6630773,6254097:25952256,513147,126483 +h1,8942:6630773,6254097:983040,0,0 +k1,8942:8508183,6254097:266535 +k1,8942:9793803,6254097:266535 +k1,8942:13224415,6254097:266534 +k1,8942:14510035,6254097:266535 +k1,8942:16310768,6254097:266535 +k1,8942:20306957,6254097:266535 +k1,8942:21232784,6254097:266535 +k1,8942:24554606,6254097:266534 +k1,8942:26012586,6254097:266535 +k1,8942:30208004,6254097:266535 +k1,8943:32583029,6254097:0 +) +(1,8943:6630773,7095585:25952256,513147,126483 +k1,8942:8438732,7095585:240338 +k1,8942:9670631,7095585:240339 +k1,8942:11512669,7095585:240338 +k1,8942:15455136,7095585:240338 +k1,8942:16354767,7095585:240339 +k1,8942:17614190,7095585:240338 +k1,8942:21826666,7095585:240339 +k1,8942:22726296,7095585:240338 +k1,8942:24418256,7095585:240338 +k1,8942:27500236,7095585:240339 +k1,8942:31337845,7095585:240338 +k1,8942:32583029,7095585:0 +) +(1,8943:6630773,7937073:25952256,505283,134348 +g1,8942:7481430,7937073 +g1,8942:10981052,7937073 +g1,8942:12199366,7937073 +g1,8942:15224507,7937073 +g1,8942:17583147,7937073 +k1,8943:32583029,7937073:10754460 +g1,8943:32583029,7937073 +) +v1,8945:6630773,9127539:0,393216,0 +(1,8956:6630773,12832770:25952256,4098447,196608 +g1,8956:6630773,12832770 +g1,8956:6630773,12832770 +g1,8956:6434165,12832770 +(1,8956:6434165,12832770:0,4098447,196608 +r1,8956:32779637,12832770:26345472,4295055,196608 +k1,8956:6434165,12832770:-26345472 +) +(1,8956:6434165,12832770:26345472,4098447,196608 +[1,8956:6630773,12832770:25952256,3901839,0 +(1,8947:6630773,9335157:25952256,404226,101187 +(1,8946:6630773,9335157:0,0,0 +g1,8946:6630773,9335157 +g1,8946:6630773,9335157 +g1,8946:6303093,9335157 +(1,8946:6303093,9335157:0,0,0 +) +g1,8946:6630773,9335157 +) +k1,8947:6630773,9335157:0 +h1,8947:10108376,9335157:0,0,0 +k1,8947:32583028,9335157:22474652 +g1,8947:32583028,9335157 +) +(1,8955:6630773,10066871:25952256,410518,101187 +(1,8949:6630773,10066871:0,0,0 +g1,8949:6630773,10066871 +g1,8949:6630773,10066871 +g1,8949:6303093,10066871 +(1,8949:6303093,10066871:0,0,0 +) +g1,8949:6630773,10066871 +) +g1,8955:7579210,10066871 +g1,8955:11056813,10066871 +g1,8955:12005250,10066871 +h1,8955:15482852,10066871:0,0,0 +k1,8955:32583028,10066871:17100176 +g1,8955:32583028,10066871 +) +(1,8955:6630773,10733049:25952256,388497,9436 +h1,8955:6630773,10733049:0,0,0 +g1,8955:7579210,10733049 +g1,8955:7895356,10733049 +g1,8955:8211502,10733049 +g1,8955:8527648,10733049 +g1,8955:8843794,10733049 +g1,8955:9159940,10733049 +g1,8955:9476086,10733049 +g1,8955:9792232,10733049 +g1,8955:10108378,10733049 +g1,8955:10424524,10733049 +g1,8955:10740670,10733049 +g1,8955:11056816,10733049 +g1,8955:11372962,10733049 +g1,8955:11689108,10733049 +g1,8955:12005254,10733049 +g1,8955:12321400,10733049 +g1,8955:12637546,10733049 +g1,8955:12953692,10733049 +g1,8955:13269838,10733049 +g1,8955:13585984,10733049 +g1,8955:13902130,10733049 +g1,8955:14218276,10733049 +g1,8955:14534422,10733049 +g1,8955:14850568,10733049 +g1,8955:15166714,10733049 +g1,8955:15482860,10733049 +g1,8955:15799006,10733049 +g1,8955:17063589,10733049 +g1,8955:17379735,10733049 +g1,8955:17695881,10733049 +g1,8955:18012027,10733049 +g1,8955:19276610,10733049 +g1,8955:19592756,10733049 +g1,8955:19908902,10733049 +g1,8955:20225048,10733049 +g1,8955:20541194,10733049 +g1,8955:21805777,10733049 +g1,8955:22121923,10733049 +g1,8955:22438069,10733049 +g1,8955:22754215,10733049 +g1,8955:23070361,10733049 +h1,8955:24018798,10733049:0,0,0 +k1,8955:32583029,10733049:8564231 +g1,8955:32583029,10733049 +) +(1,8955:6630773,11399227:25952256,404226,9436 +h1,8955:6630773,11399227:0,0,0 +g1,8955:7579210,11399227 +g1,8955:10424521,11399227 +g1,8955:13585978,11399227 +g1,8955:13902124,11399227 +g1,8955:14218270,11399227 +g1,8955:14534416,11399227 +g1,8955:14850562,11399227 +g1,8955:17063582,11399227 +g1,8955:19276602,11399227 +g1,8955:21805768,11399227 +h1,8955:24018788,11399227:0,0,0 +k1,8955:32583029,11399227:8564241 +g1,8955:32583029,11399227 +) +(1,8955:6630773,12065405:25952256,410518,101187 +h1,8955:6630773,12065405:0,0,0 +g1,8955:7579210,12065405 +g1,8955:11056813,12065405 +g1,8955:12005250,12065405 +g1,8955:14850561,12065405 +g1,8955:17063581,12065405 +g1,8955:19276601,12065405 +g1,8955:21805767,12065405 +h1,8955:24018787,12065405:0,0,0 +k1,8955:32583029,12065405:8564242 +g1,8955:32583029,12065405 +) +(1,8955:6630773,12731583:25952256,404226,101187 +h1,8955:6630773,12731583:0,0,0 +g1,8955:7579210,12731583 +g1,8955:11056813,12731583 +g1,8955:14534416,12731583 +g1,8955:14850562,12731583 +g1,8955:17063582,12731583 +g1,8955:19276602,12731583 +g1,8955:21805768,12731583 +h1,8955:24018788,12731583:0,0,0 +k1,8955:32583029,12731583:8564241 +g1,8955:32583029,12731583 +) +] +) +g1,8956:32583029,12832770 +g1,8956:6630773,12832770 +g1,8956:6630773,12832770 +g1,8956:32583029,12832770 +g1,8956:32583029,12832770 +) +h1,8956:6630773,13029378:0,0,0 +(1,8962:6630773,14395154:25952256,505283,126483 +h1,8961:6630773,14395154:983040,0,0 +k1,8961:10254658,14395154:242883 +(1,8961:10254658,14395154:0,452978,115847 +r1,8961:13074907,14395154:2820249,568825,115847 +k1,8961:10254658,14395154:-2820249 +) +(1,8961:10254658,14395154:2820249,452978,115847 +k1,8961:10254658,14395154:3277 +h1,8961:13071630,14395154:0,411205,112570 +) +k1,8961:13317790,14395154:242883 +k1,8961:16511104,14395154:242883 +k1,8961:17109847,14395154:242883 +k1,8961:18630026,14395154:242882 +k1,8961:20266860,14395154:242883 +k1,8961:21666453,14395154:242883 +k1,8961:24750977,14395154:242883 +k1,8961:28591131,14395154:242883 +k1,8961:30079154,14395154:242839 +k1,8961:31131407,14395154:242883 +k1,8961:32583029,14395154:0 +) +(1,8962:6630773,15236642:25952256,513147,134348 +g1,8961:8256065,15236642 +g1,8961:9826307,15236642 +g1,8961:12203953,15236642 +g1,8961:13350833,15236642 +g1,8961:14569147,15236642 +k1,8962:32583029,15236642:15143405 +g1,8962:32583029,15236642 +) +v1,8964:6630773,16427108:0,393216,0 +(1,8968:6630773,16735913:25952256,702021,196608 +g1,8968:6630773,16735913 +g1,8968:6630773,16735913 +g1,8968:6434165,16735913 +(1,8968:6434165,16735913:0,702021,196608 +r1,8968:32779637,16735913:26345472,898629,196608 +k1,8968:6434165,16735913:-26345472 +) +(1,8968:6434165,16735913:26345472,702021,196608 +[1,8968:6630773,16735913:25952256,505413,0 +(1,8966:6630773,16634726:25952256,404226,101187 +(1,8965:6630773,16634726:0,0,0 +g1,8965:6630773,16634726 +g1,8965:6630773,16634726 +g1,8965:6303093,16634726 +(1,8965:6303093,16634726:0,0,0 +) +g1,8965:6630773,16634726 +) +k1,8966:6630773,16634726:0 +h1,8966:9792230,16634726:0,0,0 +k1,8966:32583030,16634726:22790800 +g1,8966:32583030,16634726 +) +] +) +g1,8968:32583029,16735913 +g1,8968:6630773,16735913 +g1,8968:6630773,16735913 +g1,8968:32583029,16735913 +g1,8968:32583029,16735913 +) +h1,8968:6630773,16932521:0,0,0 +(1,8971:6630773,35689681:25952256,18167336,0 +k1,8971:10523651,35689681:3892878 +h1,8970:10523651,35689681:0,0,0 +(1,8970:10523651,35689681:18166500,18167336,0 +(1,8970:10523651,35689681:18167381,18167381,0 +(1,8970:10523651,35689681:18167381,18167381,0 +(1,8970:10523651,35689681:0,18167381,0 +(1,8970:10523651,35689681:0,28377088,0 +(1,8970:10523651,35689681:28377088,28377088,0 +) +k1,8970:10523651,35689681:-28377088 +) +) +g1,8970:28691032,35689681 +) +) +) +g1,8971:28690151,35689681 +k1,8971:32583029,35689681:3892878 +) +(1,8981:6630773,36531169:25952256,513147,134348 +h1,8980:6630773,36531169:983040,0,0 +k1,8980:10194858,36531169:183083 +(1,8980:10194858,36531169:0,452978,115847 +r1,8980:12311683,36531169:2116825,568825,115847 +k1,8980:10194858,36531169:-2116825 +) +(1,8980:10194858,36531169:2116825,452978,115847 +k1,8980:10194858,36531169:3277 +h1,8980:12308406,36531169:0,411205,112570 +) +k1,8980:12494765,36531169:183082 +k1,8980:15740345,36531169:183083 +k1,8980:16279287,36531169:183082 +k1,8980:17507014,36531169:183083 +k1,8980:18967393,36531169:183082 +k1,8980:19809768,36531169:183083 +k1,8980:22977360,36531169:183082 +k1,8980:27784008,36531169:183083 +k1,8980:28618518,36531169:183082 +k1,8980:29820686,36531169:183083 +k1,8980:32583029,36531169:0 +) +(1,8981:6630773,37372657:25952256,426639,126483 +k1,8981:32583028,37372657:21851012 +g1,8981:32583028,37372657 +) +v1,8983:6630773,38563123:0,393216,0 +(1,8987:6630773,38871928:25952256,702021,196608 +g1,8987:6630773,38871928 +g1,8987:6630773,38871928 +g1,8987:6434165,38871928 +(1,8987:6434165,38871928:0,702021,196608 +r1,8987:32779637,38871928:26345472,898629,196608 +k1,8987:6434165,38871928:-26345472 ) -(1,8982:6434165,38871928:26345472,702021,196608 -[1,8982:6630773,38871928:25952256,505413,0 -(1,8980:6630773,38770741:25952256,404226,101187 -(1,8979:6630773,38770741:0,0,0 -g1,8979:6630773,38770741 -g1,8979:6630773,38770741 -g1,8979:6303093,38770741 -(1,8979:6303093,38770741:0,0,0 +(1,8987:6434165,38871928:26345472,702021,196608 +[1,8987:6630773,38871928:25952256,505413,0 +(1,8985:6630773,38770741:25952256,404226,101187 +(1,8984:6630773,38770741:0,0,0 +g1,8984:6630773,38770741 +g1,8984:6630773,38770741 +g1,8984:6303093,38770741 +(1,8984:6303093,38770741:0,0,0 ) -g1,8979:6630773,38770741 +g1,8984:6630773,38770741 ) -k1,8980:6630773,38770741:0 -h1,8980:9159939,38770741:0,0,0 -k1,8980:32583029,38770741:23423090 -g1,8980:32583029,38770741 +k1,8985:6630773,38770741:0 +h1,8985:9159939,38770741:0,0,0 +k1,8985:32583029,38770741:23423090 +g1,8985:32583029,38770741 ) ] ) -g1,8982:32583029,38871928 -g1,8982:6630773,38871928 -g1,8982:6630773,38871928 -g1,8982:32583029,38871928 -g1,8982:32583029,38871928 +g1,8987:32583029,38871928 +g1,8987:6630773,38871928 +g1,8987:6630773,38871928 +g1,8987:32583029,38871928 +g1,8987:32583029,38871928 ) -h1,8982:6630773,39068536:0,0,0 +h1,8987:6630773,39068536:0,0,0 ] -(1,8992:32583029,45706769:0,0,0 -g1,8992:32583029,45706769 +(1,8997:32583029,45706769:0,0,0 +g1,8997:32583029,45706769 ) ) ] -(1,8992:6630773,47279633:25952256,0,0 -h1,8992:6630773,47279633:25952256,0,0 +(1,8997:6630773,47279633:25952256,0,0 +h1,8997:6630773,47279633:25952256,0,0 ) ] -h1,8992:4262630,4025873:0,0,0 +h1,8997:4262630,4025873:0,0,0 ] !12230 }165 -Input:1179:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1180:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1181:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1182:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 +Input:1175:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1176:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1177:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1178:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {166 -[1,9069:4262630,47279633:28320399,43253760,0 -(1,9069:4262630,4025873:0,0,0 -[1,9069:-473657,4025873:25952256,0,0 -(1,9069:-473657,-710414:25952256,0,0 -h1,9069:-473657,-710414:0,0,0 -(1,9069:-473657,-710414:0,0,0 -(1,9069:-473657,-710414:0,0,0 -g1,9069:-473657,-710414 -(1,9069:-473657,-710414:65781,0,65781 -g1,9069:-407876,-710414 -[1,9069:-407876,-644633:0,0,0 +[1,9074:4262630,47279633:28320399,43253760,0 +(1,9074:4262630,4025873:0,0,0 +[1,9074:-473657,4025873:25952256,0,0 +(1,9074:-473657,-710414:25952256,0,0 +h1,9074:-473657,-710414:0,0,0 +(1,9074:-473657,-710414:0,0,0 +(1,9074:-473657,-710414:0,0,0 +g1,9074:-473657,-710414 +(1,9074:-473657,-710414:65781,0,65781 +g1,9074:-407876,-710414 +[1,9074:-407876,-644633:0,0,0 ] ) -k1,9069:-473657,-710414:-65781 +k1,9074:-473657,-710414:-65781 ) ) -k1,9069:25478599,-710414:25952256 -g1,9069:25478599,-710414 +k1,9074:25478599,-710414:25952256 +g1,9074:25478599,-710414 ) ] ) -[1,9069:6630773,47279633:25952256,43253760,0 -[1,9069:6630773,4812305:25952256,786432,0 -(1,9069:6630773,4812305:25952256,505283,11795 -(1,9069:6630773,4812305:25952256,505283,11795 -g1,9069:3078558,4812305 -[1,9069:3078558,4812305:0,0,0 -(1,9069:3078558,2439708:0,1703936,0 -k1,9069:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,9069:2537886,2439708:1179648,16384,0 +[1,9074:6630773,47279633:25952256,43253760,0 +[1,9074:6630773,4812305:25952256,786432,0 +(1,9074:6630773,4812305:25952256,505283,11795 +(1,9074:6630773,4812305:25952256,505283,11795 +g1,9074:3078558,4812305 +[1,9074:3078558,4812305:0,0,0 +(1,9074:3078558,2439708:0,1703936,0 +k1,9074:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,9074:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,9069:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,9074:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,9069:3078558,4812305:0,0,0 -(1,9069:3078558,2439708:0,1703936,0 -g1,9069:29030814,2439708 -g1,9069:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,9069:36151628,1915420:16384,1179648,0 +[1,9074:3078558,4812305:0,0,0 +(1,9074:3078558,2439708:0,1703936,0 +g1,9074:29030814,2439708 +g1,9074:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,9074:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,9069:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,9074:37855564,2439708:1179648,16384,0 ) ) -k1,9069:3078556,2439708:-34777008 +k1,9074:3078556,2439708:-34777008 ) ] -[1,9069:3078558,4812305:0,0,0 -(1,9069:3078558,49800853:0,16384,2228224 -k1,9069:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,9069:2537886,49800853:1179648,16384,0 +[1,9074:3078558,4812305:0,0,0 +(1,9074:3078558,49800853:0,16384,2228224 +k1,9074:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,9074:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,9069:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,9074:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,9069:3078558,4812305:0,0,0 -(1,9069:3078558,49800853:0,16384,2228224 -g1,9069:29030814,49800853 -g1,9069:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,9069:36151628,51504789:16384,1179648,0 +[1,9074:3078558,4812305:0,0,0 +(1,9074:3078558,49800853:0,16384,2228224 +g1,9074:29030814,49800853 +g1,9074:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,9074:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,9069:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,9074:37855564,49800853:1179648,16384,0 ) ) -k1,9069:3078556,49800853:-34777008 +k1,9074:3078556,49800853:-34777008 ) ] -g1,9069:6630773,4812305 -g1,9069:6630773,4812305 -g1,9069:10653372,4812305 -g1,9069:13512052,4812305 -k1,9069:31387652,4812305:17875600 -) -) -] -[1,9069:6630773,45706769:25952256,40108032,0 -(1,9069:6630773,45706769:25952256,40108032,0 -(1,9069:6630773,45706769:0,0,0 -g1,9069:6630773,45706769 -) -[1,9069:6630773,45706769:25952256,40108032,0 -(1,8985:6630773,16073415:25952256,10474678,0 -k1,8985:12599879,16073415:5969106 -h1,8984:12599879,16073415:0,0,0 -(1,8984:12599879,16073415:14014044,10474678,0 -(1,8984:12599879,16073415:14014766,10474704,0 -(1,8984:12599879,16073415:14014766,10474704,0 -(1,8984:12599879,16073415:0,10474704,0 -(1,8984:12599879,16073415:0,14155776,0 -(1,8984:12599879,16073415:18939904,14155776,0 -) -k1,8984:12599879,16073415:-18939904 -) -) -g1,8984:26614645,16073415 -) -) -) -g1,8985:26613923,16073415 -k1,8985:32583029,16073415:5969106 -) -(1,8993:6630773,16914903:25952256,513147,134348 -h1,8992:6630773,16914903:983040,0,0 -k1,8992:10383823,16914903:238354 -k1,8992:12272374,16914903:238354 -k1,8992:15462470,16914903:238354 -k1,8992:17308422,16914903:238354 -k1,8992:18206069,16914903:238355 -k1,8992:19463508,16914903:238354 -k1,8992:22543503,16914903:238354 -k1,8992:26709430,16914903:238354 -k1,8992:28139229,16914903:238354 -k1,8992:29886222,16914903:238354 -k1,8992:32583029,16914903:0 -) -(1,8993:6630773,17756391:25952256,505283,134348 -k1,8992:7980105,17756391:245050 -k1,8992:8972921,17756391:245050 -k1,8992:12009805,17756391:245050 -k1,8992:13990248,17756391:245050 -k1,8992:17145752,17756391:245050 -k1,8992:19804492,17756391:245050 -k1,8992:23139564,17756391:245049 -k1,8992:24000652,17756391:245050 -k1,8992:26663325,17756391:245050 -h1,8992:27061784,17756391:0,0,0 -k1,8992:27306834,17756391:245050 -k1,8992:30030456,17756391:245050 -k1,8992:31084876,17756391:245050 -k1,8992:32583029,17756391:0 -) -(1,8993:6630773,18597879:25952256,513147,134348 -h1,8992:7826150,18597879:0,0,0 -k1,8992:8151511,18597879:151691 -k1,8992:10838134,18597879:151690 -k1,8992:14081813,18597879:151691 -k1,8992:15424949,18597879:151691 -k1,8992:18156791,18597879:151690 -k1,8992:21324448,18597879:151691 -k1,8992:23628341,18597879:151691 -k1,8992:26193722,18597879:151691 -k1,8992:27070240,18597879:151690 -k1,8992:27908093,18597879:151691 -k1,8992:28711212,18597879:151691 -k1,8992:30578635,18597879:151690 -k1,8992:31188423,18597879:151691 -k1,8992:32583029,18597879:0 -) -(1,8993:6630773,19439367:25952256,505283,134348 -g1,8992:7481430,19439367 -g1,8992:8957956,19439367 -g1,8992:11998826,19439367 -g1,8992:16125628,19439367 -g1,8992:17516302,19439367 -g1,8992:19224170,19439367 -k1,8993:32583029,19439367:10488382 -g1,8993:32583029,19439367 -) -v1,8995:6630773,20805143:0,393216,0 -(1,8996:6630773,25615639:25952256,5203712,616038 -g1,8996:6630773,25615639 -(1,8996:6630773,25615639:25952256,5203712,616038 -(1,8996:6630773,26231677:25952256,5819750,0 -[1,8996:6630773,26231677:25952256,5819750,0 -(1,8996:6630773,26205463:25952256,5767322,0 -r1,8996:6656987,26205463:26214,5767322,0 -[1,8996:6656987,26205463:25899828,5767322,0 -(1,8996:6656987,25615639:25899828,4587674,0 -[1,8996:7246811,25615639:24720180,4587674,0 -(1,8996:7246811,22115339:24720180,1087374,134348 -k1,8995:8668270,22115339:211756 -k1,8995:9922048,22115339:211756 -k1,8995:12383655,22115339:211756 -k1,8995:13786856,22115339:211756 -k1,8995:18601206,22115339:211756 -k1,8995:20375995,22115339:211755 -k1,8995:20943611,22115339:211756 -k1,8995:27179436,22115339:211756 -k1,8995:28495474,22115339:211756 -k1,8995:29454996,22115339:211756 -k1,8995:31966991,22115339:0 -) -(1,8996:7246811,22956827:24720180,513147,134348 -k1,8995:9164216,22956827:222644 -k1,8995:10671365,22956827:222643 -k1,8995:13548217,22956827:222644 -k1,8995:14302357,22956827:222643 -k1,8995:17829982,22956827:222644 -k1,8995:22088332,22956827:222643 -k1,8995:22962404,22956827:222644 -k1,8995:24204132,22956827:222643 -k1,8995:27832682,22956827:222644 -k1,8995:28714617,22956827:222643 -k1,8995:29956346,22956827:222644 -k1,8995:31966991,22956827:0 -) -(1,8996:7246811,23798315:24720180,513147,134348 -k1,8995:10728466,23798315:183228 -k1,8995:11865242,23798315:183227 -k1,8995:13661311,23798315:183228 -k1,8995:14530701,23798315:183228 -k1,8995:15484632,23798315:183228 -k1,8995:18228351,23798315:183227 -k1,8995:19063007,23798315:183228 -k1,8995:21262778,23798315:183228 -k1,8995:22465091,23798315:183228 -k1,8995:24503642,23798315:183227 -k1,8995:27241463,23798315:183228 -k1,8995:29160084,23798315:183228 -k1,8996:31966991,23798315:0 -) -(1,8996:7246811,24639803:24720180,513147,126483 -k1,8995:8861064,24639803:226200 -k1,8995:11097909,24639803:226200 -k1,8995:12271760,24639803:226200 -k1,8995:13517044,24639803:226199 -k1,8995:17418503,24639803:226200 -k1,8995:18303995,24639803:226200 -k1,8995:20446468,24639803:226200 -k1,8995:21864113,24639803:226200 -k1,8995:24253656,24639803:226200 -k1,8995:25900676,24639803:226199 -k1,8995:27910111,24639803:226200 -k1,8995:29629221,24639803:226200 -k1,8995:30874506,24639803:226200 -k1,8995:31966991,24639803:0 -) -(1,8996:7246811,25481291:24720180,513147,134348 -g1,8995:8105332,25481291 -g1,8995:13472075,25481291 -g1,8995:15911980,25481291 -g1,8995:17130294,25481291 -g1,8995:20091210,25481291 -g1,8995:20949731,25481291 -g1,8995:22168045,25481291 -k1,8996:31966991,25481291:6917328 -g1,8996:31966991,25481291 -) -] -) -] -r1,8996:32583029,26205463:26214,5767322,0 -) -] -) -) -g1,8996:32583029,25615639 -) -h1,8996:6630773,26231677:0,0,0 -v1,8999:6630773,27597453:0,393216,0 -(1,9008:6630773,32165912:25952256,4961675,616038 -g1,9008:6630773,32165912 -(1,9008:6630773,32165912:25952256,4961675,616038 -(1,9008:6630773,32781950:25952256,5577713,0 -[1,9008:6630773,32781950:25952256,5577713,0 -(1,9008:6630773,32755736:25952256,5525285,0 -r1,9008:6656987,32755736:26214,5525285,0 -[1,9008:6656987,32755736:25899828,5525285,0 -(1,9008:6656987,32165912:25899828,4345637,0 -[1,9008:7246811,32165912:24720180,4345637,0 -(1,9000:7246811,29104257:24720180,1283982,196608 -(1,8999:7246811,29104257:0,1283982,196608 -r1,9008:9812056,29104257:2565245,1480590,196608 -k1,8999:7246811,29104257:-2565245 -) -(1,8999:7246811,29104257:2565245,1283982,196608 -) -k1,8999:10034663,29104257:222607 -k1,8999:11075159,29104257:222607 -k1,8999:12245418,29104257:222608 -k1,8999:14169995,29104257:222607 -k1,8999:16105058,29104257:222607 -k1,8999:18819344,29104257:222607 -k1,8999:20061036,29104257:222607 -k1,8999:22243169,29104257:222607 -k1,8999:25244504,29104257:222608 -k1,8999:26228639,29104257:222607 -k1,8999:29146742,29104257:222607 -(1,8999:29146742,29104257:0,452978,115847 -r1,9008:31966991,29104257:2820249,568825,115847 -k1,8999:29146742,29104257:-2820249 -) -(1,8999:29146742,29104257:2820249,452978,115847 -k1,8999:29146742,29104257:3277 -h1,8999:31963714,29104257:0,411205,112570 -) -k1,8999:31966991,29104257:0 -) -(1,9000:7246811,29945745:24720180,505283,126483 -g1,8999:7977537,29945745 -g1,8999:8532626,29945745 -g1,8999:9725381,29945745 -g1,8999:11318561,29945745 -g1,8999:14189037,29945745 -k1,9000:31966991,29945745:13676711 -g1,9000:31966991,29945745 -) -v1,9002:7246811,31136211:0,393216,0 -(1,9006:7246811,31445016:24720180,702021,196608 -g1,9006:7246811,31445016 -g1,9006:7246811,31445016 -g1,9006:7050203,31445016 -(1,9006:7050203,31445016:0,702021,196608 -r1,9008:32163599,31445016:25113396,898629,196608 -k1,9006:7050203,31445016:-25113396 -) -(1,9006:7050203,31445016:25113396,702021,196608 -[1,9006:7246811,31445016:24720180,505413,0 -(1,9004:7246811,31343829:24720180,404226,101187 -(1,9003:7246811,31343829:0,0,0 -g1,9003:7246811,31343829 -g1,9003:7246811,31343829 -g1,9003:6919131,31343829 -(1,9003:6919131,31343829:0,0,0 -) -g1,9003:7246811,31343829 -) -k1,9004:7246811,31343829:0 -g1,9004:9775977,31343829 -g1,9004:12937434,31343829 -g1,9004:13569726,31343829 -h1,9004:14202018,31343829:0,0,0 -k1,9004:31966990,31343829:17764972 -g1,9004:31966990,31343829 -) -] -) -g1,9006:31966991,31445016 -g1,9006:7246811,31445016 -g1,9006:7246811,31445016 -g1,9006:31966991,31445016 -g1,9006:31966991,31445016 -) -h1,9006:7246811,31641624:0,0,0 -] -) -] -r1,9008:32583029,32755736:26214,5525285,0 -) -] -) -) -g1,9008:32583029,32165912 -) -h1,9008:6630773,32781950:0,0,0 -(1,9012:6630773,35397498:25952256,555811,147783 -(1,9012:6630773,35397498:2899444,534184,12975 -g1,9012:6630773,35397498 -g1,9012:9530217,35397498 -) -g1,9012:16068744,35397498 -k1,9012:32583029,35397498:13973847 -g1,9012:32583029,35397498 -) -(1,9017:6630773,36632202:25952256,513147,134348 -k1,9015:7976083,36632202:148623 -k1,9015:9301733,36632202:148623 -k1,9015:10109648,36632202:148623 -k1,9015:15862255,36632202:148623 -k1,9015:18225996,36632202:148624 -k1,9015:20210887,36632202:148572 -k1,9015:20891008,36632202:148624 -k1,9015:21691059,36632202:148623 -k1,9015:24642657,36632202:148623 -k1,9015:25407318,36632202:148623 -k1,9015:26457666,36632202:148573 -k1,9015:28394111,36632202:148623 -k1,9015:29561819,36632202:148623 -k1,9015:32583029,36632202:0 -) -(1,9017:6630773,37473690:25952256,513147,126483 -k1,9015:9461273,37473690:195297 -k1,9015:11253027,37473690:195297 -k1,9015:12107616,37473690:195297 -k1,9015:16548335,37473690:195297 -k1,9015:17940319,37473690:195297 -k1,9015:20146261,37473690:195297 -k1,9015:21289210,37473690:195298 -k1,9015:22503592,37473690:195297 -k1,9015:25585095,37473690:195297 -k1,9015:29036221,37473690:195297 -k1,9015:30223078,37473690:195297 -k1,9015:31931601,37473690:195297 -k1,9015:32583029,37473690:0 -) -(1,9017:6630773,38315178:25952256,513147,134348 -k1,9015:9555696,38315178:137021 -k1,9015:10048576,38315178:137020 -k1,9015:12889612,38315178:137021 -k1,9015:13685925,38315178:137021 -k1,9015:16483707,38315178:137020 -k1,9015:18780139,38315178:137021 -k1,9015:20513617,38315178:137021 -k1,9015:21309930,38315178:137021 -k1,9015:25692372,38315178:137020 -k1,9015:27026080,38315178:137021 -k1,9015:29241248,38315178:137021 -k1,9015:30037560,38315178:137020 -k1,9015:31193666,38315178:137021 -k1,9015:32583029,38315178:0 -) -(1,9017:6630773,39156666:25952256,513147,11795 -k1,9015:7999772,39156666:236537 -k1,9015:11144798,39156666:236538 -k1,9015:12929951,39156666:236537 -k1,9015:15827250,39156666:236537 -k1,9015:18111133,39156666:236538 -k1,9015:18879167,39156666:236537 -k1,9015:20717404,39156666:236537 -k1,9015:24829741,39156666:236538 -k1,9016:26108300,39156666:236537 -k1,9016:27766931,39156666:236500 -k1,9016:28871820,39156666:236537 -k1,9016:30596681,39156666:236538 -k1,9016:32227169,39156666:236537 -k1,9016:32583029,39156666:0 -) -(1,9017:6630773,39998154:25952256,513147,134348 -k1,9016:8888816,39998154:170721 -k1,9016:9718829,39998154:170721 -k1,9016:12880614,39998154:170722 -k1,9016:15210746,39998154:170721 -k1,9016:19626889,39998154:170721 -k1,9016:20751159,39998154:170721 -k1,9016:22054343,39998154:170722 -k1,9016:23491220,39998154:170721 -k1,9016:24609592,39998154:170721 -k1,9016:25799398,39998154:170721 -k1,9016:28805207,39998154:170722 -k1,9016:31966991,39998154:170721 -k1,9016:32583029,39998154:0 -) -(1,9017:6630773,40839642:25952256,513147,134348 -g1,9016:10213626,40839642 -g1,9016:13048058,40839642 -g1,9016:16752152,40839642 -g1,9016:19838242,40839642 -g1,9016:20653509,40839642 -g1,9016:23089482,40839642 -g1,9016:24856332,40839642 -g1,9016:26444924,40839642 -g1,9016:27578696,40839642 -(1,9016:27578696,40839642:0,452978,115847 -r1,9016:30398945,40839642:2820249,568825,115847 -k1,9016:27578696,40839642:-2820249 -) -(1,9016:27578696,40839642:2820249,452978,115847 -k1,9016:27578696,40839642:3277 -h1,9016:30395668,40839642:0,411205,112570 -) -k1,9017:32583029,40839642:2010414 -g1,9017:32583029,40839642 -) -v1,9019:6630773,42030108:0,393216,0 -(1,9023:6630773,42313747:25952256,676855,196608 -g1,9023:6630773,42313747 -g1,9023:6630773,42313747 -g1,9023:6434165,42313747 -(1,9023:6434165,42313747:0,676855,196608 -r1,9023:32779637,42313747:26345472,873463,196608 -k1,9023:6434165,42313747:-26345472 -) -(1,9023:6434165,42313747:26345472,676855,196608 -[1,9023:6630773,42313747:25952256,480247,0 -(1,9021:6630773,42237726:25952256,404226,76021 -(1,9020:6630773,42237726:0,0,0 -g1,9020:6630773,42237726 -g1,9020:6630773,42237726 -g1,9020:6303093,42237726 -(1,9020:6303093,42237726:0,0,0 -) -g1,9020:6630773,42237726 -) -g1,9021:7895356,42237726 -g1,9021:8843794,42237726 -k1,9021:8843794,42237726:0 -h1,9021:14534416,42237726:0,0,0 -k1,9021:32583028,42237726:18048612 -g1,9021:32583028,42237726 -) -] -) -g1,9023:32583029,42313747 -g1,9023:6630773,42313747 -g1,9023:6630773,42313747 -g1,9023:32583029,42313747 -g1,9023:32583029,42313747 -) -h1,9023:6630773,42510355:0,0,0 -(1,9027:6630773,43876131:25952256,513147,134348 -h1,9026:6630773,43876131:983040,0,0 -k1,9026:8777363,43876131:210001 -k1,9026:10091646,43876131:210001 -k1,9026:11326629,43876131:210000 -k1,9026:12821136,43876131:210001 -k1,9026:14050222,43876131:210001 -k1,9026:17038950,43876131:210001 -k1,9026:19208476,43876131:210000 -(1,9026:19208476,43876131:0,452978,115847 -r1,9026:20270165,43876131:1061689,568825,115847 -k1,9026:19208476,43876131:-1061689 -) -(1,9026:19208476,43876131:1061689,452978,115847 -k1,9026:19208476,43876131:3277 -h1,9026:20266888,43876131:0,411205,112570 -) -k1,9026:20480166,43876131:210001 -k1,9026:21221664,43876131:210001 -k1,9026:21787525,43876131:210001 -(1,9026:21787525,43876131:0,452978,115847 -r1,9026:23904350,43876131:2116825,568825,115847 -k1,9026:21787525,43876131:-2116825 -) -(1,9026:21787525,43876131:2116825,452978,115847 -k1,9026:21787525,43876131:3277 -h1,9026:23901073,43876131:0,411205,112570 -) -k1,9026:24288020,43876131:210000 -k1,9026:25891972,43876131:210001 -k1,9026:28170289,43876131:210001 -k1,9026:29327941,43876131:210001 -k1,9026:30694651,43876131:210000 -k1,9026:31563944,43876131:210001 -k1,9026:32583029,43876131:0 -) -(1,9027:6630773,44717619:25952256,505283,7863 -k1,9027:32583030,44717619:22103328 -g1,9027:32583030,44717619 -) -v1,9029:6630773,45908085:0,393216,0 -] -(1,9069:32583029,45706769:0,0,0 -g1,9069:32583029,45706769 -) -) -] -(1,9069:6630773,47279633:25952256,0,0 -h1,9069:6630773,47279633:25952256,0,0 -) -] -h1,9069:4262630,4025873:0,0,0 -] -!16548 +g1,9074:6630773,4812305 +g1,9074:6630773,4812305 +g1,9074:10653372,4812305 +g1,9074:13512052,4812305 +k1,9074:31387652,4812305:17875600 +) +) +] +[1,9074:6630773,45706769:25952256,40108032,0 +(1,9074:6630773,45706769:25952256,40108032,0 +(1,9074:6630773,45706769:0,0,0 +g1,9074:6630773,45706769 +) +[1,9074:6630773,45706769:25952256,40108032,0 +(1,8990:6630773,16073415:25952256,10474678,0 +k1,8990:12599879,16073415:5969106 +h1,8989:12599879,16073415:0,0,0 +(1,8989:12599879,16073415:14014044,10474678,0 +(1,8989:12599879,16073415:14014766,10474704,0 +(1,8989:12599879,16073415:14014766,10474704,0 +(1,8989:12599879,16073415:0,10474704,0 +(1,8989:12599879,16073415:0,14155776,0 +(1,8989:12599879,16073415:18939904,14155776,0 +) +k1,8989:12599879,16073415:-18939904 +) +) +g1,8989:26614645,16073415 +) +) +) +g1,8990:26613923,16073415 +k1,8990:32583029,16073415:5969106 +) +(1,8998:6630773,16914903:25952256,513147,134348 +h1,8997:6630773,16914903:983040,0,0 +k1,8997:10383823,16914903:238354 +k1,8997:12272374,16914903:238354 +k1,8997:15462470,16914903:238354 +k1,8997:17308422,16914903:238354 +k1,8997:18206069,16914903:238355 +k1,8997:19463508,16914903:238354 +k1,8997:22543503,16914903:238354 +k1,8997:26709430,16914903:238354 +k1,8997:28139229,16914903:238354 +k1,8997:29886222,16914903:238354 +k1,8997:32583029,16914903:0 +) +(1,8998:6630773,17756391:25952256,505283,134348 +k1,8997:7980105,17756391:245050 +k1,8997:8972921,17756391:245050 +k1,8997:12009805,17756391:245050 +k1,8997:13990248,17756391:245050 +k1,8997:17145752,17756391:245050 +k1,8997:19804492,17756391:245050 +k1,8997:23139564,17756391:245049 +k1,8997:24000652,17756391:245050 +k1,8997:26663325,17756391:245050 +h1,8997:27061784,17756391:0,0,0 +k1,8997:27306834,17756391:245050 +k1,8997:30030456,17756391:245050 +k1,8997:31084876,17756391:245050 +k1,8997:32583029,17756391:0 +) +(1,8998:6630773,18597879:25952256,513147,134348 +h1,8997:7826150,18597879:0,0,0 +k1,8997:8151511,18597879:151691 +k1,8997:10838134,18597879:151690 +k1,8997:14081813,18597879:151691 +k1,8997:15424949,18597879:151691 +k1,8997:18156791,18597879:151690 +k1,8997:21324448,18597879:151691 +k1,8997:23628341,18597879:151691 +k1,8997:26193722,18597879:151691 +k1,8997:27070240,18597879:151690 +k1,8997:27908093,18597879:151691 +k1,8997:28711212,18597879:151691 +k1,8997:30578635,18597879:151690 +k1,8997:31188423,18597879:151691 +k1,8997:32583029,18597879:0 +) +(1,8998:6630773,19439367:25952256,505283,134348 +g1,8997:7481430,19439367 +g1,8997:8957956,19439367 +g1,8997:11998826,19439367 +g1,8997:16125628,19439367 +g1,8997:17516302,19439367 +g1,8997:19224170,19439367 +k1,8998:32583029,19439367:10488382 +g1,8998:32583029,19439367 +) +v1,9000:6630773,20805143:0,393216,0 +(1,9001:6630773,25615639:25952256,5203712,616038 +g1,9001:6630773,25615639 +(1,9001:6630773,25615639:25952256,5203712,616038 +(1,9001:6630773,26231677:25952256,5819750,0 +[1,9001:6630773,26231677:25952256,5819750,0 +(1,9001:6630773,26205463:25952256,5767322,0 +r1,9001:6656987,26205463:26214,5767322,0 +[1,9001:6656987,26205463:25899828,5767322,0 +(1,9001:6656987,25615639:25899828,4587674,0 +[1,9001:7246811,25615639:24720180,4587674,0 +(1,9001:7246811,22115339:24720180,1087374,134348 +k1,9000:8668270,22115339:211756 +k1,9000:9922048,22115339:211756 +k1,9000:12383655,22115339:211756 +k1,9000:13786856,22115339:211756 +k1,9000:18601206,22115339:211756 +k1,9000:20375995,22115339:211755 +k1,9000:20943611,22115339:211756 +k1,9000:27179436,22115339:211756 +k1,9000:28495474,22115339:211756 +k1,9000:29454996,22115339:211756 +k1,9000:31966991,22115339:0 +) +(1,9001:7246811,22956827:24720180,513147,134348 +k1,9000:9164216,22956827:222644 +k1,9000:10671365,22956827:222643 +k1,9000:13548217,22956827:222644 +k1,9000:14302357,22956827:222643 +k1,9000:17829982,22956827:222644 +k1,9000:22088332,22956827:222643 +k1,9000:22962404,22956827:222644 +k1,9000:24204132,22956827:222643 +k1,9000:27832682,22956827:222644 +k1,9000:28714617,22956827:222643 +k1,9000:29956346,22956827:222644 +k1,9000:31966991,22956827:0 +) +(1,9001:7246811,23798315:24720180,505283,134348 +k1,9000:10807437,23798315:262199 +k1,9000:12023184,23798315:262198 +k1,9000:13898224,23798315:262199 +k1,9000:14846585,23798315:262199 +k1,9000:15879486,23798315:262198 +k1,9000:18702177,23798315:262199 +k1,9000:19615804,23798315:262199 +k1,9000:21894545,23798315:262198 +k1,9000:23175829,23798315:262199 +k1,9000:25293352,23798315:262199 +k1,9000:28110143,23798315:262198 +k1,9000:30107735,23798315:262199 +k1,9001:31966991,23798315:0 +) +(1,9001:7246811,24639803:24720180,513147,126483 +k1,9000:9839633,24639803:257119 +k1,9000:12107398,24639803:257120 +k1,9000:13312168,24639803:257119 +k1,9000:14588373,24639803:257120 +k1,9000:18520751,24639803:257119 +k1,9000:19437163,24639803:257120 +k1,9000:21610555,24639803:257119 +k1,9000:23059119,24639803:257119 +k1,9000:25479582,24639803:257120 +k1,9000:27157522,24639803:257119 +k1,9000:29197877,24639803:257120 +k1,9000:30947906,24639803:257119 +k1,9000:31966991,24639803:0 +) +(1,9001:7246811,25481291:24720180,513147,134348 +g1,9000:8538525,25481291 +g1,9000:9397046,25481291 +g1,9000:14763789,25481291 +g1,9000:17203694,25481291 +g1,9000:18422008,25481291 +g1,9000:21382924,25481291 +g1,9000:22241445,25481291 +g1,9000:23459759,25481291 +k1,9001:31966991,25481291:5625614 +g1,9001:31966991,25481291 +) +] +) +] +r1,9001:32583029,26205463:26214,5767322,0 +) +] +) +) +g1,9001:32583029,25615639 +) +h1,9001:6630773,26231677:0,0,0 +v1,9004:6630773,27597453:0,393216,0 +(1,9013:6630773,32165912:25952256,4961675,616038 +g1,9013:6630773,32165912 +(1,9013:6630773,32165912:25952256,4961675,616038 +(1,9013:6630773,32781950:25952256,5577713,0 +[1,9013:6630773,32781950:25952256,5577713,0 +(1,9013:6630773,32755736:25952256,5525285,0 +r1,9013:6656987,32755736:26214,5525285,0 +[1,9013:6656987,32755736:25899828,5525285,0 +(1,9013:6656987,32165912:25899828,4345637,0 +[1,9013:7246811,32165912:24720180,4345637,0 +(1,9005:7246811,29104257:24720180,1283982,196608 +(1,9004:7246811,29104257:0,1283982,196608 +r1,9013:9812056,29104257:2565245,1480590,196608 +k1,9004:7246811,29104257:-2565245 +) +(1,9004:7246811,29104257:2565245,1283982,196608 +) +k1,9004:10034663,29104257:222607 +k1,9004:11075159,29104257:222607 +k1,9004:12245418,29104257:222608 +k1,9004:14169995,29104257:222607 +k1,9004:16105058,29104257:222607 +k1,9004:18819344,29104257:222607 +k1,9004:20061036,29104257:222607 +k1,9004:22243169,29104257:222607 +k1,9004:25244504,29104257:222608 +k1,9004:26228639,29104257:222607 +k1,9004:29146742,29104257:222607 +(1,9004:29146742,29104257:0,452978,115847 +r1,9013:31966991,29104257:2820249,568825,115847 +k1,9004:29146742,29104257:-2820249 +) +(1,9004:29146742,29104257:2820249,452978,115847 +k1,9004:29146742,29104257:3277 +h1,9004:31963714,29104257:0,411205,112570 +) +k1,9004:31966991,29104257:0 +) +(1,9005:7246811,29945745:24720180,505283,126483 +g1,9004:7977537,29945745 +g1,9004:8532626,29945745 +g1,9004:9725381,29945745 +g1,9004:11318561,29945745 +g1,9004:14189037,29945745 +k1,9005:31966991,29945745:13676711 +g1,9005:31966991,29945745 +) +v1,9007:7246811,31136211:0,393216,0 +(1,9011:7246811,31445016:24720180,702021,196608 +g1,9011:7246811,31445016 +g1,9011:7246811,31445016 +g1,9011:7050203,31445016 +(1,9011:7050203,31445016:0,702021,196608 +r1,9013:32163599,31445016:25113396,898629,196608 +k1,9011:7050203,31445016:-25113396 +) +(1,9011:7050203,31445016:25113396,702021,196608 +[1,9011:7246811,31445016:24720180,505413,0 +(1,9009:7246811,31343829:24720180,404226,101187 +(1,9008:7246811,31343829:0,0,0 +g1,9008:7246811,31343829 +g1,9008:7246811,31343829 +g1,9008:6919131,31343829 +(1,9008:6919131,31343829:0,0,0 +) +g1,9008:7246811,31343829 +) +k1,9009:7246811,31343829:0 +g1,9009:9775977,31343829 +g1,9009:12937434,31343829 +g1,9009:13569726,31343829 +h1,9009:14202018,31343829:0,0,0 +k1,9009:31966990,31343829:17764972 +g1,9009:31966990,31343829 +) +] +) +g1,9011:31966991,31445016 +g1,9011:7246811,31445016 +g1,9011:7246811,31445016 +g1,9011:31966991,31445016 +g1,9011:31966991,31445016 +) +h1,9011:7246811,31641624:0,0,0 +] +) +] +r1,9013:32583029,32755736:26214,5525285,0 +) +] +) +) +g1,9013:32583029,32165912 +) +h1,9013:6630773,32781950:0,0,0 +(1,9017:6630773,35397498:25952256,555811,147783 +(1,9017:6630773,35397498:2899444,534184,12975 +g1,9017:6630773,35397498 +g1,9017:9530217,35397498 +) +g1,9017:16068744,35397498 +k1,9017:32583029,35397498:13973847 +g1,9017:32583029,35397498 +) +(1,9022:6630773,36632202:25952256,513147,134348 +k1,9020:7976083,36632202:148623 +k1,9020:9301733,36632202:148623 +k1,9020:10109648,36632202:148623 +k1,9020:15862255,36632202:148623 +k1,9020:18225996,36632202:148624 +k1,9020:20210887,36632202:148572 +k1,9020:20891008,36632202:148624 +k1,9020:21691059,36632202:148623 +k1,9020:24642657,36632202:148623 +k1,9020:25407318,36632202:148623 +k1,9020:26457666,36632202:148573 +k1,9020:28394111,36632202:148623 +k1,9020:29561819,36632202:148623 +k1,9020:32583029,36632202:0 +) +(1,9022:6630773,37473690:25952256,513147,126483 +k1,9020:9461273,37473690:195297 +k1,9020:11253027,37473690:195297 +k1,9020:12107616,37473690:195297 +k1,9020:16548335,37473690:195297 +k1,9020:17940319,37473690:195297 +k1,9020:20146261,37473690:195297 +k1,9020:21289210,37473690:195298 +k1,9020:22503592,37473690:195297 +k1,9020:25585095,37473690:195297 +k1,9020:29036221,37473690:195297 +k1,9020:30223078,37473690:195297 +k1,9020:31931601,37473690:195297 +k1,9020:32583029,37473690:0 +) +(1,9022:6630773,38315178:25952256,513147,134348 +k1,9020:9555696,38315178:137021 +k1,9020:10048576,38315178:137020 +k1,9020:12889612,38315178:137021 +k1,9020:13685925,38315178:137021 +k1,9020:16483707,38315178:137020 +k1,9020:18780139,38315178:137021 +k1,9020:20513617,38315178:137021 +k1,9020:21309930,38315178:137021 +k1,9020:25692372,38315178:137020 +k1,9020:27026080,38315178:137021 +k1,9020:29241248,38315178:137021 +k1,9020:30037560,38315178:137020 +k1,9020:31193666,38315178:137021 +k1,9020:32583029,38315178:0 +) +(1,9022:6630773,39156666:25952256,513147,11795 +k1,9020:7999772,39156666:236537 +k1,9020:11144798,39156666:236538 +k1,9020:12929951,39156666:236537 +k1,9020:15827250,39156666:236537 +k1,9020:18111133,39156666:236538 +k1,9020:18879167,39156666:236537 +k1,9020:20717404,39156666:236537 +k1,9020:24829741,39156666:236538 +k1,9021:26108300,39156666:236537 +k1,9021:27766931,39156666:236500 +k1,9021:28871820,39156666:236537 +k1,9021:30596681,39156666:236538 +k1,9021:32227169,39156666:236537 +k1,9021:32583029,39156666:0 +) +(1,9022:6630773,39998154:25952256,513147,134348 +k1,9021:8888816,39998154:170721 +k1,9021:9718829,39998154:170721 +k1,9021:12880614,39998154:170722 +k1,9021:15210746,39998154:170721 +k1,9021:19626889,39998154:170721 +k1,9021:20751159,39998154:170721 +k1,9021:22054343,39998154:170722 +k1,9021:23491220,39998154:170721 +k1,9021:24609592,39998154:170721 +k1,9021:25799398,39998154:170721 +k1,9021:28805207,39998154:170722 +k1,9021:31966991,39998154:170721 +k1,9021:32583029,39998154:0 +) +(1,9022:6630773,40839642:25952256,513147,134348 +g1,9021:10213626,40839642 +g1,9021:13048058,40839642 +g1,9021:16752152,40839642 +g1,9021:19838242,40839642 +g1,9021:20653509,40839642 +g1,9021:23089482,40839642 +g1,9021:24856332,40839642 +g1,9021:26444924,40839642 +g1,9021:27578696,40839642 +(1,9021:27578696,40839642:0,452978,115847 +r1,9021:30398945,40839642:2820249,568825,115847 +k1,9021:27578696,40839642:-2820249 +) +(1,9021:27578696,40839642:2820249,452978,115847 +k1,9021:27578696,40839642:3277 +h1,9021:30395668,40839642:0,411205,112570 +) +k1,9022:32583029,40839642:2010414 +g1,9022:32583029,40839642 +) +v1,9024:6630773,42030108:0,393216,0 +(1,9028:6630773,42313747:25952256,676855,196608 +g1,9028:6630773,42313747 +g1,9028:6630773,42313747 +g1,9028:6434165,42313747 +(1,9028:6434165,42313747:0,676855,196608 +r1,9028:32779637,42313747:26345472,873463,196608 +k1,9028:6434165,42313747:-26345472 +) +(1,9028:6434165,42313747:26345472,676855,196608 +[1,9028:6630773,42313747:25952256,480247,0 +(1,9026:6630773,42237726:25952256,404226,76021 +(1,9025:6630773,42237726:0,0,0 +g1,9025:6630773,42237726 +g1,9025:6630773,42237726 +g1,9025:6303093,42237726 +(1,9025:6303093,42237726:0,0,0 +) +g1,9025:6630773,42237726 +) +g1,9026:7895356,42237726 +g1,9026:8843794,42237726 +k1,9026:8843794,42237726:0 +h1,9026:14534416,42237726:0,0,0 +k1,9026:32583028,42237726:18048612 +g1,9026:32583028,42237726 +) +] +) +g1,9028:32583029,42313747 +g1,9028:6630773,42313747 +g1,9028:6630773,42313747 +g1,9028:32583029,42313747 +g1,9028:32583029,42313747 +) +h1,9028:6630773,42510355:0,0,0 +(1,9032:6630773,43876131:25952256,513147,134348 +h1,9031:6630773,43876131:983040,0,0 +k1,9031:8777363,43876131:210001 +k1,9031:10091646,43876131:210001 +k1,9031:11326629,43876131:210000 +k1,9031:12821136,43876131:210001 +k1,9031:14050222,43876131:210001 +k1,9031:17038950,43876131:210001 +k1,9031:19208476,43876131:210000 +(1,9031:19208476,43876131:0,452978,115847 +r1,9031:20270165,43876131:1061689,568825,115847 +k1,9031:19208476,43876131:-1061689 +) +(1,9031:19208476,43876131:1061689,452978,115847 +k1,9031:19208476,43876131:3277 +h1,9031:20266888,43876131:0,411205,112570 +) +k1,9031:20480166,43876131:210001 +k1,9031:21221664,43876131:210001 +k1,9031:21787525,43876131:210001 +(1,9031:21787525,43876131:0,452978,115847 +r1,9031:23904350,43876131:2116825,568825,115847 +k1,9031:21787525,43876131:-2116825 +) +(1,9031:21787525,43876131:2116825,452978,115847 +k1,9031:21787525,43876131:3277 +h1,9031:23901073,43876131:0,411205,112570 +) +k1,9031:24288020,43876131:210000 +k1,9031:25891972,43876131:210001 +k1,9031:28170289,43876131:210001 +k1,9031:29327941,43876131:210001 +k1,9031:30694651,43876131:210000 +k1,9031:31563944,43876131:210001 +k1,9031:32583029,43876131:0 +) +(1,9032:6630773,44717619:25952256,505283,7863 +k1,9032:32583030,44717619:22103328 +g1,9032:32583030,44717619 +) +v1,9034:6630773,45908085:0,393216,0 +] +(1,9074:32583029,45706769:0,0,0 +g1,9074:32583029,45706769 +) +) +] +(1,9074:6630773,47279633:25952256,0,0 +h1,9074:6630773,47279633:25952256,0,0 +) +] +h1,9074:4262630,4025873:0,0,0 +] +!16540 }166 -Input:1183:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1184:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1179:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1180:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {167 -[1,9096:4262630,47279633:28320399,43253760,0 -(1,9096:4262630,4025873:0,0,0 -[1,9096:-473657,4025873:25952256,0,0 -(1,9096:-473657,-710414:25952256,0,0 -h1,9096:-473657,-710414:0,0,0 -(1,9096:-473657,-710414:0,0,0 -(1,9096:-473657,-710414:0,0,0 -g1,9096:-473657,-710414 -(1,9096:-473657,-710414:65781,0,65781 -g1,9096:-407876,-710414 -[1,9096:-407876,-644633:0,0,0 +[1,9101:4262630,47279633:28320399,43253760,0 +(1,9101:4262630,4025873:0,0,0 +[1,9101:-473657,4025873:25952256,0,0 +(1,9101:-473657,-710414:25952256,0,0 +h1,9101:-473657,-710414:0,0,0 +(1,9101:-473657,-710414:0,0,0 +(1,9101:-473657,-710414:0,0,0 +g1,9101:-473657,-710414 +(1,9101:-473657,-710414:65781,0,65781 +g1,9101:-407876,-710414 +[1,9101:-407876,-644633:0,0,0 ] ) -k1,9096:-473657,-710414:-65781 +k1,9101:-473657,-710414:-65781 ) ) -k1,9096:25478599,-710414:25952256 -g1,9096:25478599,-710414 +k1,9101:25478599,-710414:25952256 +g1,9101:25478599,-710414 ) ] ) -[1,9096:6630773,47279633:25952256,43253760,0 -[1,9096:6630773,4812305:25952256,786432,0 -(1,9096:6630773,4812305:25952256,505283,134348 -(1,9096:6630773,4812305:25952256,505283,134348 -g1,9096:3078558,4812305 -[1,9096:3078558,4812305:0,0,0 -(1,9096:3078558,2439708:0,1703936,0 -k1,9096:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,9096:2537886,2439708:1179648,16384,0 +[1,9101:6630773,47279633:25952256,43253760,0 +[1,9101:6630773,4812305:25952256,786432,0 +(1,9101:6630773,4812305:25952256,505283,134348 +(1,9101:6630773,4812305:25952256,505283,134348 +g1,9101:3078558,4812305 +[1,9101:3078558,4812305:0,0,0 +(1,9101:3078558,2439708:0,1703936,0 +k1,9101:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,9101:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,9096:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,9101:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,9096:3078558,4812305:0,0,0 -(1,9096:3078558,2439708:0,1703936,0 -g1,9096:29030814,2439708 -g1,9096:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,9096:36151628,1915420:16384,1179648,0 +[1,9101:3078558,4812305:0,0,0 +(1,9101:3078558,2439708:0,1703936,0 +g1,9101:29030814,2439708 +g1,9101:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,9101:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,9096:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,9101:37855564,2439708:1179648,16384,0 ) ) -k1,9096:3078556,2439708:-34777008 +k1,9101:3078556,2439708:-34777008 ) ] -[1,9096:3078558,4812305:0,0,0 -(1,9096:3078558,49800853:0,16384,2228224 -k1,9096:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,9096:2537886,49800853:1179648,16384,0 +[1,9101:3078558,4812305:0,0,0 +(1,9101:3078558,49800853:0,16384,2228224 +k1,9101:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,9101:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,9096:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,9101:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,9096:3078558,4812305:0,0,0 -(1,9096:3078558,49800853:0,16384,2228224 -g1,9096:29030814,49800853 -g1,9096:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,9096:36151628,51504789:16384,1179648,0 +[1,9101:3078558,4812305:0,0,0 +(1,9101:3078558,49800853:0,16384,2228224 +g1,9101:29030814,49800853 +g1,9101:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,9101:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,9096:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,9101:37855564,49800853:1179648,16384,0 ) ) -k1,9096:3078556,49800853:-34777008 +k1,9101:3078556,49800853:-34777008 ) ] -g1,9096:6630773,4812305 -k1,9096:24573876,4812305:16747726 -g1,9096:25960617,4812305 -g1,9096:26609423,4812305 -g1,9096:29923578,4812305 +g1,9101:6630773,4812305 +k1,9101:24502442,4812305:16676292 +g1,9101:25889183,4812305 +g1,9101:26537989,4812305 +g1,9101:29852144,4812305 ) ) ] -[1,9096:6630773,45706769:25952256,40108032,0 -(1,9096:6630773,45706769:25952256,40108032,0 -(1,9096:6630773,45706769:0,0,0 -g1,9096:6630773,45706769 +[1,9101:6630773,45706769:25952256,40108032,0 +(1,9101:6630773,45706769:25952256,40108032,0 +(1,9101:6630773,45706769:0,0,0 +g1,9101:6630773,45706769 ) -[1,9096:6630773,45706769:25952256,40108032,0 -v1,9069:6630773,6254097:0,393216,0 -(1,9069:6630773,23453333:25952256,17592452,196608 -g1,9069:6630773,23453333 -g1,9069:6630773,23453333 -g1,9069:6434165,23453333 -(1,9069:6434165,23453333:0,17592452,196608 -r1,9069:32779637,23453333:26345472,17789060,196608 -k1,9069:6434165,23453333:-26345472 +[1,9101:6630773,45706769:25952256,40108032,0 +v1,9074:6630773,6254097:0,393216,0 +(1,9074:6630773,23453333:25952256,17592452,196608 +g1,9074:6630773,23453333 +g1,9074:6630773,23453333 +g1,9074:6434165,23453333 +(1,9074:6434165,23453333:0,17592452,196608 +r1,9074:32779637,23453333:26345472,17789060,196608 +k1,9074:6434165,23453333:-26345472 ) -(1,9069:6434165,23453333:26345472,17592452,196608 -[1,9069:6630773,23453333:25952256,17395844,0 -(1,9031:6630773,6461715:25952256,404226,76021 -(1,9030:6630773,6461715:0,0,0 -g1,9030:6630773,6461715 -g1,9030:6630773,6461715 -g1,9030:6303093,6461715 -(1,9030:6303093,6461715:0,0,0 -) -g1,9030:6630773,6461715 -) -k1,9031:6630773,6461715:0 -h1,9031:9792229,6461715:0,0,0 -k1,9031:32583029,6461715:22790800 -g1,9031:32583029,6461715 -) -(1,9035:6630773,7193429:25952256,404226,76021 -(1,9033:6630773,7193429:0,0,0 -g1,9033:6630773,7193429 -g1,9033:6630773,7193429 -g1,9033:6303093,7193429 -(1,9033:6303093,7193429:0,0,0 -) -g1,9033:6630773,7193429 -) -g1,9035:7579210,7193429 -g1,9035:8843793,7193429 -h1,9035:11372958,7193429:0,0,0 -k1,9035:32583030,7193429:21210072 -g1,9035:32583030,7193429 -) -(1,9037:6630773,8514967:25952256,404226,76021 -(1,9036:6630773,8514967:0,0,0 -g1,9036:6630773,8514967 -g1,9036:6630773,8514967 -g1,9036:6303093,8514967 -(1,9036:6303093,8514967:0,0,0 -) -g1,9036:6630773,8514967 -) -k1,9037:6630773,8514967:0 -h1,9037:9159938,8514967:0,0,0 -k1,9037:32583030,8514967:23423092 -g1,9037:32583030,8514967 -) -(1,9041:6630773,9246681:25952256,404226,76021 -(1,9039:6630773,9246681:0,0,0 -g1,9039:6630773,9246681 -g1,9039:6630773,9246681 -g1,9039:6303093,9246681 -(1,9039:6303093,9246681:0,0,0 -) -g1,9039:6630773,9246681 -) -g1,9041:7579210,9246681 -g1,9041:8843793,9246681 -g1,9041:9792230,9246681 -g1,9041:10108376,9246681 -h1,9041:10424522,9246681:0,0,0 -k1,9041:32583030,9246681:22158508 -g1,9041:32583030,9246681 -) -(1,9043:6630773,10568219:25952256,404226,76021 -(1,9042:6630773,10568219:0,0,0 -g1,9042:6630773,10568219 -g1,9042:6630773,10568219 -g1,9042:6303093,10568219 -(1,9042:6303093,10568219:0,0,0 -) -g1,9042:6630773,10568219 -) -k1,9043:6630773,10568219:0 -h1,9043:10740666,10568219:0,0,0 -k1,9043:32583030,10568219:21842364 -g1,9043:32583030,10568219 -) -(1,9056:6630773,11299933:25952256,404226,76021 -(1,9045:6630773,11299933:0,0,0 -g1,9045:6630773,11299933 -g1,9045:6630773,11299933 -g1,9045:6303093,11299933 -(1,9045:6303093,11299933:0,0,0 -) -g1,9045:6630773,11299933 -) -g1,9056:7579210,11299933 -h1,9056:9159938,11299933:0,0,0 -k1,9056:32583030,11299933:23423092 -g1,9056:32583030,11299933 -) -(1,9056:6630773,11966111:25952256,404226,76021 -h1,9056:6630773,11966111:0,0,0 -g1,9056:7579210,11966111 -g1,9056:7895356,11966111 -g1,9056:9159939,11966111 -g1,9056:12005250,11966111 -g1,9056:12321396,11966111 -g1,9056:12637542,11966111 -g1,9056:12953688,11966111 -g1,9056:13269834,11966111 -g1,9056:13585980,11966111 -g1,9056:13902126,11966111 -g1,9056:14218272,11966111 -g1,9056:14534418,11966111 -g1,9056:14850564,11966111 -g1,9056:18644312,11966111 -g1,9056:18960458,11966111 -g1,9056:19276604,11966111 -g1,9056:19592750,11966111 -g1,9056:19908896,11966111 -g1,9056:20225042,11966111 -g1,9056:20541188,11966111 -g1,9056:24018791,11966111 -g1,9056:24334937,11966111 -g1,9056:24651083,11966111 -g1,9056:24967229,11966111 -g1,9056:25283375,11966111 -g1,9056:25599521,11966111 -g1,9056:25915667,11966111 -g1,9056:26231813,11966111 -h1,9056:28760978,11966111:0,0,0 -k1,9056:32583029,11966111:3822051 -g1,9056:32583029,11966111 -) -(1,9056:6630773,12632289:25952256,404226,107478 -h1,9056:6630773,12632289:0,0,0 -g1,9056:7579210,12632289 -g1,9056:7895356,12632289 -g1,9056:9159939,12632289 -g1,9056:12953687,12632289 -g1,9056:13269833,12632289 -g1,9056:13585979,12632289 -g1,9056:13902125,12632289 -g1,9056:14218271,12632289 -g1,9056:14534417,12632289 -g1,9056:14850563,12632289 -g1,9056:18012020,12632289 -g1,9056:18328166,12632289 -g1,9056:18644312,12632289 -g1,9056:18960458,12632289 -g1,9056:19276604,12632289 -g1,9056:19592750,12632289 -g1,9056:19908896,12632289 -g1,9056:20225042,12632289 -g1,9056:20541188,12632289 -g1,9056:24651082,12632289 -g1,9056:24967228,12632289 -g1,9056:25283374,12632289 -g1,9056:25599520,12632289 -g1,9056:25915666,12632289 -g1,9056:26231812,12632289 -h1,9056:28760977,12632289:0,0,0 -k1,9056:32583029,12632289:3822052 -g1,9056:32583029,12632289 -) -(1,9056:6630773,13298467:25952256,410518,107478 -h1,9056:6630773,13298467:0,0,0 -g1,9056:7579210,13298467 -g1,9056:7895356,13298467 -g1,9056:9159939,13298467 -g1,9056:12953687,13298467 -g1,9056:13269833,13298467 -g1,9056:13585979,13298467 -g1,9056:13902125,13298467 -g1,9056:14218271,13298467 -g1,9056:14534417,13298467 -g1,9056:14850563,13298467 -g1,9056:18012020,13298467 -g1,9056:18328166,13298467 -g1,9056:18644312,13298467 -g1,9056:18960458,13298467 -g1,9056:19276604,13298467 -g1,9056:19592750,13298467 -g1,9056:19908896,13298467 -g1,9056:20225042,13298467 -g1,9056:20541188,13298467 -g1,9056:22438062,13298467 -g1,9056:23386499,13298467 -g1,9056:26231810,13298467 -h1,9056:28760975,13298467:0,0,0 -k1,9056:32583029,13298467:3822054 -g1,9056:32583029,13298467 -) -(1,9056:6630773,13964645:25952256,404226,101187 -h1,9056:6630773,13964645:0,0,0 -g1,9056:7579210,13964645 -g1,9056:9159939,13964645 -g1,9056:11689105,13964645 -g1,9056:12005251,13964645 -g1,9056:12321397,13964645 -g1,9056:12637543,13964645 -g1,9056:12953689,13964645 -g1,9056:13269835,13964645 -g1,9056:13585981,13964645 -g1,9056:13902127,13964645 -g1,9056:14218273,13964645 -g1,9056:14534419,13964645 -g1,9056:14850565,13964645 -g1,9056:17695876,13964645 -g1,9056:18012022,13964645 -g1,9056:18328168,13964645 -g1,9056:18644314,13964645 -g1,9056:18960460,13964645 -g1,9056:19276606,13964645 -g1,9056:19592752,13964645 -g1,9056:19908898,13964645 -g1,9056:20225044,13964645 -g1,9056:20541190,13964645 -g1,9056:24651084,13964645 -g1,9056:24967230,13964645 -g1,9056:25283376,13964645 -g1,9056:25599522,13964645 -g1,9056:25915668,13964645 -g1,9056:26231814,13964645 -h1,9056:28444834,13964645:0,0,0 -k1,9056:32583029,13964645:4138195 -g1,9056:32583029,13964645 -) -(1,9056:6630773,14630823:25952256,404226,76021 -h1,9056:6630773,14630823:0,0,0 -g1,9056:7579210,14630823 -g1,9056:9159939,14630823 -g1,9056:12005250,14630823 -g1,9056:12321396,14630823 -g1,9056:12637542,14630823 -g1,9056:12953688,14630823 -g1,9056:13269834,14630823 -g1,9056:13585980,14630823 -g1,9056:13902126,14630823 -g1,9056:14218272,14630823 -g1,9056:14534418,14630823 -g1,9056:14850564,14630823 -g1,9056:17379730,14630823 -g1,9056:17695876,14630823 -g1,9056:18012022,14630823 -g1,9056:18328168,14630823 -g1,9056:18644314,14630823 -g1,9056:18960460,14630823 -g1,9056:19276606,14630823 -g1,9056:19592752,14630823 -g1,9056:19908898,14630823 -g1,9056:20225044,14630823 -g1,9056:20541190,14630823 -g1,9056:22754210,14630823 -g1,9056:23070356,14630823 -g1,9056:23386502,14630823 -g1,9056:23702648,14630823 -g1,9056:24018794,14630823 -g1,9056:24334940,14630823 -g1,9056:24651086,14630823 -g1,9056:24967232,14630823 -g1,9056:25283378,14630823 -g1,9056:25599524,14630823 -g1,9056:25915670,14630823 -g1,9056:26231816,14630823 -h1,9056:29709418,14630823:0,0,0 -k1,9056:32583029,14630823:2873611 -g1,9056:32583029,14630823 -) -(1,9056:6630773,15297001:25952256,404226,76021 -h1,9056:6630773,15297001:0,0,0 -g1,9056:7579210,15297001 -g1,9056:9159939,15297001 -h1,9056:11689104,15297001:0,0,0 -k1,9056:32583028,15297001:20893924 -g1,9056:32583028,15297001 -) -(1,9056:6630773,15963179:25952256,379060,0 -h1,9056:6630773,15963179:0,0,0 -h1,9056:7263064,15963179:0,0,0 -k1,9056:32583028,15963179:25319964 -g1,9056:32583028,15963179 -) -(1,9056:6630773,16629357:25952256,404226,76021 -h1,9056:6630773,16629357:0,0,0 -g1,9056:7579210,16629357 -h1,9056:9159938,16629357:0,0,0 -k1,9056:32583030,16629357:23423092 -g1,9056:32583030,16629357 -) -(1,9056:6630773,17295535:25952256,379060,7863 -h1,9056:6630773,17295535:0,0,0 -g1,9056:7579210,17295535 -h1,9056:8843793,17295535:0,0,0 -k1,9056:32583029,17295535:23739236 -g1,9056:32583029,17295535 -) -(1,9058:6630773,18617073:25952256,404226,76021 -(1,9057:6630773,18617073:0,0,0 -g1,9057:6630773,18617073 -g1,9057:6630773,18617073 -g1,9057:6303093,18617073 -(1,9057:6303093,18617073:0,0,0 -) -g1,9057:6630773,18617073 -) -k1,9058:6630773,18617073:0 -h1,9058:9476084,18617073:0,0,0 -k1,9058:32583028,18617073:23106944 -g1,9058:32583028,18617073 -) -(1,9068:6630773,19348787:25952256,404226,82312 -(1,9060:6630773,19348787:0,0,0 -g1,9060:6630773,19348787 -g1,9060:6630773,19348787 -g1,9060:6303093,19348787 -(1,9060:6303093,19348787:0,0,0 -) -g1,9060:6630773,19348787 -) -g1,9068:7579210,19348787 -g1,9068:7895356,19348787 -g1,9068:8211502,19348787 -g1,9068:8527648,19348787 -g1,9068:8843794,19348787 -g1,9068:9159940,19348787 -g1,9068:9476086,19348787 -g1,9068:9792232,19348787 -g1,9068:10108378,19348787 -g1,9068:10424524,19348787 -g1,9068:10740670,19348787 -g1,9068:11056816,19348787 -g1,9068:11372962,19348787 -g1,9068:11689108,19348787 -g1,9068:12005254,19348787 -g1,9068:12321400,19348787 -g1,9068:12637546,19348787 -g1,9068:14218275,19348787 -g1,9068:14534421,19348787 -g1,9068:14850567,19348787 -g1,9068:15166713,19348787 -g1,9068:15482859,19348787 -g1,9068:15799005,19348787 -k1,9068:15799005,19348787:0 -h1,9068:17063588,19348787:0,0,0 -k1,9068:32583029,19348787:15519441 -g1,9068:32583029,19348787 -) -(1,9068:6630773,20014965:25952256,404226,9436 -h1,9068:6630773,20014965:0,0,0 -g1,9068:7579210,20014965 -g1,9068:9792230,20014965 -g1,9068:10108376,20014965 -g1,9068:10424522,20014965 -g1,9068:10740668,20014965 -g1,9068:14218271,20014965 -h1,9068:17063582,20014965:0,0,0 -k1,9068:32583029,20014965:15519447 -g1,9068:32583029,20014965 -) -(1,9068:6630773,20681143:25952256,404226,9436 -h1,9068:6630773,20681143:0,0,0 -g1,9068:7579210,20681143 -g1,9068:10740667,20681143 -g1,9068:14218270,20681143 -g1,9068:14534416,20681143 -h1,9068:17063581,20681143:0,0,0 -k1,9068:32583029,20681143:15519448 -g1,9068:32583029,20681143 -) -(1,9068:6630773,21347321:25952256,404226,9436 -h1,9068:6630773,21347321:0,0,0 -g1,9068:7579210,21347321 -g1,9068:10424521,21347321 -g1,9068:10740667,21347321 -g1,9068:11056813,21347321 -g1,9068:11372959,21347321 -g1,9068:14218270,21347321 -k1,9068:14218270,21347321:0 -h1,9068:17063581,21347321:0,0,0 -k1,9068:32583029,21347321:15519448 -g1,9068:32583029,21347321 -) -(1,9068:6630773,22013499:25952256,404226,9436 -h1,9068:6630773,22013499:0,0,0 -g1,9068:7579210,22013499 -g1,9068:9792230,22013499 -g1,9068:10108376,22013499 -g1,9068:10424522,22013499 -g1,9068:10740668,22013499 -g1,9068:11056814,22013499 -g1,9068:14218271,22013499 -k1,9068:14218271,22013499:0 -h1,9068:17063582,22013499:0,0,0 -k1,9068:32583029,22013499:15519447 -g1,9068:32583029,22013499 -) -(1,9068:6630773,22679677:25952256,404226,107478 -h1,9068:6630773,22679677:0,0,0 -g1,9068:7579210,22679677 -g1,9068:10740667,22679677 -g1,9068:14218270,22679677 -k1,9068:14218270,22679677:0 -h1,9068:17063581,22679677:0,0,0 -k1,9068:32583029,22679677:15519448 -g1,9068:32583029,22679677 -) -(1,9068:6630773,23345855:25952256,404226,107478 -h1,9068:6630773,23345855:0,0,0 -g1,9068:7579210,23345855 -g1,9068:10108376,23345855 -g1,9068:10424522,23345855 -g1,9068:10740668,23345855 -g1,9068:11056814,23345855 -g1,9068:14218271,23345855 -k1,9068:14218271,23345855:0 -h1,9068:17063582,23345855:0,0,0 -k1,9068:32583029,23345855:15519447 -g1,9068:32583029,23345855 -) -] -) -g1,9069:32583029,23453333 -g1,9069:6630773,23453333 -g1,9069:6630773,23453333 -g1,9069:32583029,23453333 -g1,9069:32583029,23453333 -) -h1,9069:6630773,23649941:0,0,0 -(1,9073:6630773,25015717:25952256,513147,102891 -h1,9072:6630773,25015717:983040,0,0 -k1,9072:8612628,25015717:169785 -k1,9072:10498146,25015717:169785 -k1,9072:11687016,25015717:169785 -k1,9072:13352987,25015717:169784 -k1,9072:15393170,25015717:169785 -k1,9072:16214383,25015717:169785 -k1,9072:17970139,25015717:169785 -k1,9072:19312363,25015717:169785 -k1,9072:21790326,25015717:169785 -k1,9072:22951671,25015717:169785 -k1,9072:24427588,25015717:169784 -k1,9072:27569431,25015717:169785 -k1,9072:29306837,25015717:169785 -k1,9072:30495707,25015717:169785 -k1,9072:32583029,25015717:0 -) -(1,9073:6630773,25857205:25952256,513147,126483 -k1,9072:8011521,25857205:189303 -k1,9072:10359580,25857205:189303 -(1,9072:10359580,25857205:0,414482,115847 -r1,9072:10717846,25857205:358266,530329,115847 -k1,9072:10359580,25857205:-358266 -) -(1,9072:10359580,25857205:358266,414482,115847 -k1,9072:10359580,25857205:3277 -h1,9072:10714569,25857205:0,411205,112570 -) -k1,9072:10907149,25857205:189303 -k1,9072:12287897,25857205:189303 -(1,9072:12287897,25857205:0,414482,115847 -r1,9072:12646163,25857205:358266,530329,115847 -k1,9072:12287897,25857205:-358266 -) -(1,9072:12287897,25857205:358266,414482,115847 -k1,9072:12287897,25857205:3277 -h1,9072:12642886,25857205:0,411205,112570 -) -k1,9072:13009136,25857205:189303 -k1,9072:14151988,25857205:189303 -k1,9072:15969861,25857205:189303 -k1,9072:18203887,25857205:189303 -k1,9072:19044618,25857205:189303 -k1,9072:21780650,25857205:189303 -k1,9072:22694781,25857205:189303 -k1,9072:24168590,25857205:189303 -k1,9072:27348956,25857205:189303 -k1,9072:28347629,25857205:189303 -k1,9072:30003628,25857205:189303 -k1,9072:31591469,25857205:189303 -k1,9072:32583029,25857205:0 -) -(1,9073:6630773,26698693:25952256,505283,126483 -k1,9073:32583029,26698693:22056796 -g1,9073:32583029,26698693 -) -v1,9077:6630773,27889159:0,393216,0 -(1,9085:6630773,30862676:25952256,3366733,196608 -g1,9085:6630773,30862676 -g1,9085:6630773,30862676 -g1,9085:6434165,30862676 -(1,9085:6434165,30862676:0,3366733,196608 -r1,9085:32779637,30862676:26345472,3563341,196608 -k1,9085:6434165,30862676:-26345472 -) -(1,9085:6434165,30862676:26345472,3366733,196608 -[1,9085:6630773,30862676:25952256,3170125,0 -(1,9079:6630773,28096777:25952256,404226,82312 -(1,9078:6630773,28096777:0,0,0 -g1,9078:6630773,28096777 -g1,9078:6630773,28096777 -g1,9078:6303093,28096777 -(1,9078:6303093,28096777:0,0,0 -) -g1,9078:6630773,28096777 -) -g1,9079:7263065,28096777 -g1,9079:8211503,28096777 -g1,9079:10108378,28096777 -h1,9079:10740670,28096777:0,0,0 -k1,9079:32583030,28096777:21842360 -g1,9079:32583030,28096777 -) -(1,9080:6630773,28762955:25952256,404226,107478 -h1,9080:6630773,28762955:0,0,0 -g1,9080:7263065,28762955 -g1,9080:8211503,28762955 -g1,9080:10424524,28762955 -g1,9080:11372962,28762955 -g1,9080:12005254,28762955 -g1,9080:14218274,28762955 -g1,9080:15799003,28762955 -g1,9080:16747440,28762955 -g1,9080:18644314,28762955 -g1,9080:19592751,28762955 -g1,9080:20541188,28762955 -g1,9080:21805771,28762955 -k1,9080:21805771,28762955:9437 -h1,9080:22763645,28762955:0,0,0 -k1,9080:32583029,28762955:9819384 -g1,9080:32583029,28762955 -) -(1,9081:6630773,29429133:25952256,404226,101187 -h1,9081:6630773,29429133:0,0,0 -g1,9081:9159939,29429133 -g1,9081:10108377,29429133 -g1,9081:11689106,29429133 -g1,9081:12321398,29429133 -g1,9081:13902127,29429133 -g1,9081:15166710,29429133 -g1,9081:15799002,29429133 -k1,9081:15799002,29429133:0 -h1,9081:16431294,29429133:0,0,0 -k1,9081:32583029,29429133:16151735 -g1,9081:32583029,29429133 -) -(1,9082:6630773,30095311:25952256,404226,76021 -h1,9082:6630773,30095311:0,0,0 -g1,9082:6946919,30095311 -g1,9082:7263065,30095311 -g1,9082:7579211,30095311 -g1,9082:7895357,30095311 -g1,9082:8211503,30095311 -g1,9082:9792232,30095311 -g1,9082:10424524,30095311 -h1,9082:17063584,30095311:0,0,0 -k1,9082:32583029,30095311:15519445 -g1,9082:32583029,30095311 -) -(1,9083:6630773,30761489:25952256,404226,101187 -h1,9083:6630773,30761489:0,0,0 -g1,9083:9159939,30761489 -g1,9083:10108377,30761489 -g1,9083:14850562,30761489 -g1,9083:16115145,30761489 -g1,9083:16747437,30761489 -h1,9083:18012020,30761489:0,0,0 -k1,9083:32583029,30761489:14571009 -g1,9083:32583029,30761489 -) -] -) -g1,9085:32583029,30862676 -g1,9085:6630773,30862676 -g1,9085:6630773,30862676 -g1,9085:32583029,30862676 -g1,9085:32583029,30862676 -) -h1,9085:6630773,31059284:0,0,0 -] -(1,9096:32583029,45706769:0,0,0 -g1,9096:32583029,45706769 -) -) -] -(1,9096:6630773,47279633:25952256,0,0 -h1,9096:6630773,47279633:25952256,0,0 -) -] -h1,9096:4262630,4025873:0,0,0 +(1,9074:6434165,23453333:26345472,17592452,196608 +[1,9074:6630773,23453333:25952256,17395844,0 +(1,9036:6630773,6461715:25952256,404226,76021 +(1,9035:6630773,6461715:0,0,0 +g1,9035:6630773,6461715 +g1,9035:6630773,6461715 +g1,9035:6303093,6461715 +(1,9035:6303093,6461715:0,0,0 +) +g1,9035:6630773,6461715 +) +k1,9036:6630773,6461715:0 +h1,9036:9792229,6461715:0,0,0 +k1,9036:32583029,6461715:22790800 +g1,9036:32583029,6461715 +) +(1,9040:6630773,7193429:25952256,404226,76021 +(1,9038:6630773,7193429:0,0,0 +g1,9038:6630773,7193429 +g1,9038:6630773,7193429 +g1,9038:6303093,7193429 +(1,9038:6303093,7193429:0,0,0 +) +g1,9038:6630773,7193429 +) +g1,9040:7579210,7193429 +g1,9040:8843793,7193429 +h1,9040:11372958,7193429:0,0,0 +k1,9040:32583030,7193429:21210072 +g1,9040:32583030,7193429 +) +(1,9042:6630773,8514967:25952256,404226,76021 +(1,9041:6630773,8514967:0,0,0 +g1,9041:6630773,8514967 +g1,9041:6630773,8514967 +g1,9041:6303093,8514967 +(1,9041:6303093,8514967:0,0,0 +) +g1,9041:6630773,8514967 +) +k1,9042:6630773,8514967:0 +h1,9042:9159938,8514967:0,0,0 +k1,9042:32583030,8514967:23423092 +g1,9042:32583030,8514967 +) +(1,9046:6630773,9246681:25952256,404226,76021 +(1,9044:6630773,9246681:0,0,0 +g1,9044:6630773,9246681 +g1,9044:6630773,9246681 +g1,9044:6303093,9246681 +(1,9044:6303093,9246681:0,0,0 +) +g1,9044:6630773,9246681 +) +g1,9046:7579210,9246681 +g1,9046:8843793,9246681 +g1,9046:9792230,9246681 +g1,9046:10108376,9246681 +h1,9046:10424522,9246681:0,0,0 +k1,9046:32583030,9246681:22158508 +g1,9046:32583030,9246681 +) +(1,9048:6630773,10568219:25952256,404226,76021 +(1,9047:6630773,10568219:0,0,0 +g1,9047:6630773,10568219 +g1,9047:6630773,10568219 +g1,9047:6303093,10568219 +(1,9047:6303093,10568219:0,0,0 +) +g1,9047:6630773,10568219 +) +k1,9048:6630773,10568219:0 +h1,9048:10740666,10568219:0,0,0 +k1,9048:32583030,10568219:21842364 +g1,9048:32583030,10568219 +) +(1,9061:6630773,11299933:25952256,404226,76021 +(1,9050:6630773,11299933:0,0,0 +g1,9050:6630773,11299933 +g1,9050:6630773,11299933 +g1,9050:6303093,11299933 +(1,9050:6303093,11299933:0,0,0 +) +g1,9050:6630773,11299933 +) +g1,9061:7579210,11299933 +h1,9061:9159938,11299933:0,0,0 +k1,9061:32583030,11299933:23423092 +g1,9061:32583030,11299933 +) +(1,9061:6630773,11966111:25952256,404226,76021 +h1,9061:6630773,11966111:0,0,0 +g1,9061:7579210,11966111 +g1,9061:7895356,11966111 +g1,9061:9159939,11966111 +g1,9061:12005250,11966111 +g1,9061:12321396,11966111 +g1,9061:12637542,11966111 +g1,9061:12953688,11966111 +g1,9061:13269834,11966111 +g1,9061:13585980,11966111 +g1,9061:13902126,11966111 +g1,9061:14218272,11966111 +g1,9061:14534418,11966111 +g1,9061:14850564,11966111 +g1,9061:18644312,11966111 +g1,9061:18960458,11966111 +g1,9061:19276604,11966111 +g1,9061:19592750,11966111 +g1,9061:19908896,11966111 +g1,9061:20225042,11966111 +g1,9061:20541188,11966111 +g1,9061:24018791,11966111 +g1,9061:24334937,11966111 +g1,9061:24651083,11966111 +g1,9061:24967229,11966111 +g1,9061:25283375,11966111 +g1,9061:25599521,11966111 +g1,9061:25915667,11966111 +g1,9061:26231813,11966111 +h1,9061:28760978,11966111:0,0,0 +k1,9061:32583029,11966111:3822051 +g1,9061:32583029,11966111 +) +(1,9061:6630773,12632289:25952256,404226,107478 +h1,9061:6630773,12632289:0,0,0 +g1,9061:7579210,12632289 +g1,9061:7895356,12632289 +g1,9061:9159939,12632289 +g1,9061:12953687,12632289 +g1,9061:13269833,12632289 +g1,9061:13585979,12632289 +g1,9061:13902125,12632289 +g1,9061:14218271,12632289 +g1,9061:14534417,12632289 +g1,9061:14850563,12632289 +g1,9061:18012020,12632289 +g1,9061:18328166,12632289 +g1,9061:18644312,12632289 +g1,9061:18960458,12632289 +g1,9061:19276604,12632289 +g1,9061:19592750,12632289 +g1,9061:19908896,12632289 +g1,9061:20225042,12632289 +g1,9061:20541188,12632289 +g1,9061:24651082,12632289 +g1,9061:24967228,12632289 +g1,9061:25283374,12632289 +g1,9061:25599520,12632289 +g1,9061:25915666,12632289 +g1,9061:26231812,12632289 +h1,9061:28760977,12632289:0,0,0 +k1,9061:32583029,12632289:3822052 +g1,9061:32583029,12632289 +) +(1,9061:6630773,13298467:25952256,410518,107478 +h1,9061:6630773,13298467:0,0,0 +g1,9061:7579210,13298467 +g1,9061:7895356,13298467 +g1,9061:9159939,13298467 +g1,9061:12953687,13298467 +g1,9061:13269833,13298467 +g1,9061:13585979,13298467 +g1,9061:13902125,13298467 +g1,9061:14218271,13298467 +g1,9061:14534417,13298467 +g1,9061:14850563,13298467 +g1,9061:18012020,13298467 +g1,9061:18328166,13298467 +g1,9061:18644312,13298467 +g1,9061:18960458,13298467 +g1,9061:19276604,13298467 +g1,9061:19592750,13298467 +g1,9061:19908896,13298467 +g1,9061:20225042,13298467 +g1,9061:20541188,13298467 +g1,9061:22438062,13298467 +g1,9061:23386499,13298467 +g1,9061:26231810,13298467 +h1,9061:28760975,13298467:0,0,0 +k1,9061:32583029,13298467:3822054 +g1,9061:32583029,13298467 +) +(1,9061:6630773,13964645:25952256,404226,101187 +h1,9061:6630773,13964645:0,0,0 +g1,9061:7579210,13964645 +g1,9061:9159939,13964645 +g1,9061:11689105,13964645 +g1,9061:12005251,13964645 +g1,9061:12321397,13964645 +g1,9061:12637543,13964645 +g1,9061:12953689,13964645 +g1,9061:13269835,13964645 +g1,9061:13585981,13964645 +g1,9061:13902127,13964645 +g1,9061:14218273,13964645 +g1,9061:14534419,13964645 +g1,9061:14850565,13964645 +g1,9061:17695876,13964645 +g1,9061:18012022,13964645 +g1,9061:18328168,13964645 +g1,9061:18644314,13964645 +g1,9061:18960460,13964645 +g1,9061:19276606,13964645 +g1,9061:19592752,13964645 +g1,9061:19908898,13964645 +g1,9061:20225044,13964645 +g1,9061:20541190,13964645 +g1,9061:24651084,13964645 +g1,9061:24967230,13964645 +g1,9061:25283376,13964645 +g1,9061:25599522,13964645 +g1,9061:25915668,13964645 +g1,9061:26231814,13964645 +h1,9061:28444834,13964645:0,0,0 +k1,9061:32583029,13964645:4138195 +g1,9061:32583029,13964645 +) +(1,9061:6630773,14630823:25952256,404226,76021 +h1,9061:6630773,14630823:0,0,0 +g1,9061:7579210,14630823 +g1,9061:9159939,14630823 +g1,9061:12005250,14630823 +g1,9061:12321396,14630823 +g1,9061:12637542,14630823 +g1,9061:12953688,14630823 +g1,9061:13269834,14630823 +g1,9061:13585980,14630823 +g1,9061:13902126,14630823 +g1,9061:14218272,14630823 +g1,9061:14534418,14630823 +g1,9061:14850564,14630823 +g1,9061:17379730,14630823 +g1,9061:17695876,14630823 +g1,9061:18012022,14630823 +g1,9061:18328168,14630823 +g1,9061:18644314,14630823 +g1,9061:18960460,14630823 +g1,9061:19276606,14630823 +g1,9061:19592752,14630823 +g1,9061:19908898,14630823 +g1,9061:20225044,14630823 +g1,9061:20541190,14630823 +g1,9061:22754210,14630823 +g1,9061:23070356,14630823 +g1,9061:23386502,14630823 +g1,9061:23702648,14630823 +g1,9061:24018794,14630823 +g1,9061:24334940,14630823 +g1,9061:24651086,14630823 +g1,9061:24967232,14630823 +g1,9061:25283378,14630823 +g1,9061:25599524,14630823 +g1,9061:25915670,14630823 +g1,9061:26231816,14630823 +h1,9061:29709418,14630823:0,0,0 +k1,9061:32583029,14630823:2873611 +g1,9061:32583029,14630823 +) +(1,9061:6630773,15297001:25952256,404226,76021 +h1,9061:6630773,15297001:0,0,0 +g1,9061:7579210,15297001 +g1,9061:9159939,15297001 +h1,9061:11689104,15297001:0,0,0 +k1,9061:32583028,15297001:20893924 +g1,9061:32583028,15297001 +) +(1,9061:6630773,15963179:25952256,379060,0 +h1,9061:6630773,15963179:0,0,0 +h1,9061:7263064,15963179:0,0,0 +k1,9061:32583028,15963179:25319964 +g1,9061:32583028,15963179 +) +(1,9061:6630773,16629357:25952256,404226,76021 +h1,9061:6630773,16629357:0,0,0 +g1,9061:7579210,16629357 +h1,9061:9159938,16629357:0,0,0 +k1,9061:32583030,16629357:23423092 +g1,9061:32583030,16629357 +) +(1,9061:6630773,17295535:25952256,379060,7863 +h1,9061:6630773,17295535:0,0,0 +g1,9061:7579210,17295535 +h1,9061:8843793,17295535:0,0,0 +k1,9061:32583029,17295535:23739236 +g1,9061:32583029,17295535 +) +(1,9063:6630773,18617073:25952256,404226,76021 +(1,9062:6630773,18617073:0,0,0 +g1,9062:6630773,18617073 +g1,9062:6630773,18617073 +g1,9062:6303093,18617073 +(1,9062:6303093,18617073:0,0,0 +) +g1,9062:6630773,18617073 +) +k1,9063:6630773,18617073:0 +h1,9063:9476084,18617073:0,0,0 +k1,9063:32583028,18617073:23106944 +g1,9063:32583028,18617073 +) +(1,9073:6630773,19348787:25952256,404226,82312 +(1,9065:6630773,19348787:0,0,0 +g1,9065:6630773,19348787 +g1,9065:6630773,19348787 +g1,9065:6303093,19348787 +(1,9065:6303093,19348787:0,0,0 +) +g1,9065:6630773,19348787 +) +g1,9073:7579210,19348787 +g1,9073:7895356,19348787 +g1,9073:8211502,19348787 +g1,9073:8527648,19348787 +g1,9073:8843794,19348787 +g1,9073:9159940,19348787 +g1,9073:9476086,19348787 +g1,9073:9792232,19348787 +g1,9073:10108378,19348787 +g1,9073:10424524,19348787 +g1,9073:10740670,19348787 +g1,9073:11056816,19348787 +g1,9073:11372962,19348787 +g1,9073:11689108,19348787 +g1,9073:12005254,19348787 +g1,9073:12321400,19348787 +g1,9073:12637546,19348787 +g1,9073:14218275,19348787 +g1,9073:14534421,19348787 +g1,9073:14850567,19348787 +g1,9073:15166713,19348787 +g1,9073:15482859,19348787 +g1,9073:15799005,19348787 +k1,9073:15799005,19348787:0 +h1,9073:17063588,19348787:0,0,0 +k1,9073:32583029,19348787:15519441 +g1,9073:32583029,19348787 +) +(1,9073:6630773,20014965:25952256,404226,9436 +h1,9073:6630773,20014965:0,0,0 +g1,9073:7579210,20014965 +g1,9073:9792230,20014965 +g1,9073:10108376,20014965 +g1,9073:10424522,20014965 +g1,9073:10740668,20014965 +g1,9073:14218271,20014965 +h1,9073:17063582,20014965:0,0,0 +k1,9073:32583029,20014965:15519447 +g1,9073:32583029,20014965 +) +(1,9073:6630773,20681143:25952256,404226,9436 +h1,9073:6630773,20681143:0,0,0 +g1,9073:7579210,20681143 +g1,9073:10740667,20681143 +g1,9073:14218270,20681143 +g1,9073:14534416,20681143 +h1,9073:17063581,20681143:0,0,0 +k1,9073:32583029,20681143:15519448 +g1,9073:32583029,20681143 +) +(1,9073:6630773,21347321:25952256,404226,9436 +h1,9073:6630773,21347321:0,0,0 +g1,9073:7579210,21347321 +g1,9073:10424521,21347321 +g1,9073:10740667,21347321 +g1,9073:11056813,21347321 +g1,9073:11372959,21347321 +g1,9073:14218270,21347321 +k1,9073:14218270,21347321:0 +h1,9073:17063581,21347321:0,0,0 +k1,9073:32583029,21347321:15519448 +g1,9073:32583029,21347321 +) +(1,9073:6630773,22013499:25952256,404226,9436 +h1,9073:6630773,22013499:0,0,0 +g1,9073:7579210,22013499 +g1,9073:9792230,22013499 +g1,9073:10108376,22013499 +g1,9073:10424522,22013499 +g1,9073:10740668,22013499 +g1,9073:11056814,22013499 +g1,9073:14218271,22013499 +k1,9073:14218271,22013499:0 +h1,9073:17063582,22013499:0,0,0 +k1,9073:32583029,22013499:15519447 +g1,9073:32583029,22013499 +) +(1,9073:6630773,22679677:25952256,404226,107478 +h1,9073:6630773,22679677:0,0,0 +g1,9073:7579210,22679677 +g1,9073:10740667,22679677 +g1,9073:14218270,22679677 +k1,9073:14218270,22679677:0 +h1,9073:17063581,22679677:0,0,0 +k1,9073:32583029,22679677:15519448 +g1,9073:32583029,22679677 +) +(1,9073:6630773,23345855:25952256,404226,107478 +h1,9073:6630773,23345855:0,0,0 +g1,9073:7579210,23345855 +g1,9073:10108376,23345855 +g1,9073:10424522,23345855 +g1,9073:10740668,23345855 +g1,9073:11056814,23345855 +g1,9073:14218271,23345855 +k1,9073:14218271,23345855:0 +h1,9073:17063582,23345855:0,0,0 +k1,9073:32583029,23345855:15519447 +g1,9073:32583029,23345855 +) +] +) +g1,9074:32583029,23453333 +g1,9074:6630773,23453333 +g1,9074:6630773,23453333 +g1,9074:32583029,23453333 +g1,9074:32583029,23453333 +) +h1,9074:6630773,23649941:0,0,0 +(1,9078:6630773,25015717:25952256,513147,102891 +h1,9077:6630773,25015717:983040,0,0 +k1,9077:8612628,25015717:169785 +k1,9077:10498146,25015717:169785 +k1,9077:11687016,25015717:169785 +k1,9077:13352987,25015717:169784 +k1,9077:15393170,25015717:169785 +k1,9077:16214383,25015717:169785 +k1,9077:17970139,25015717:169785 +k1,9077:19312363,25015717:169785 +k1,9077:21790326,25015717:169785 +k1,9077:22951671,25015717:169785 +k1,9077:24427588,25015717:169784 +k1,9077:27569431,25015717:169785 +k1,9077:29306837,25015717:169785 +k1,9077:30495707,25015717:169785 +k1,9077:32583029,25015717:0 +) +(1,9078:6630773,25857205:25952256,513147,126483 +k1,9077:8011521,25857205:189303 +k1,9077:10359580,25857205:189303 +(1,9077:10359580,25857205:0,414482,115847 +r1,9077:10717846,25857205:358266,530329,115847 +k1,9077:10359580,25857205:-358266 +) +(1,9077:10359580,25857205:358266,414482,115847 +k1,9077:10359580,25857205:3277 +h1,9077:10714569,25857205:0,411205,112570 +) +k1,9077:10907149,25857205:189303 +k1,9077:12287897,25857205:189303 +(1,9077:12287897,25857205:0,414482,115847 +r1,9077:12646163,25857205:358266,530329,115847 +k1,9077:12287897,25857205:-358266 +) +(1,9077:12287897,25857205:358266,414482,115847 +k1,9077:12287897,25857205:3277 +h1,9077:12642886,25857205:0,411205,112570 +) +k1,9077:13009136,25857205:189303 +k1,9077:14151988,25857205:189303 +k1,9077:15969861,25857205:189303 +k1,9077:18203887,25857205:189303 +k1,9077:19044618,25857205:189303 +k1,9077:21780650,25857205:189303 +k1,9077:22694781,25857205:189303 +k1,9077:24168590,25857205:189303 +k1,9077:27348956,25857205:189303 +k1,9077:28347629,25857205:189303 +k1,9077:30003628,25857205:189303 +k1,9077:31591469,25857205:189303 +k1,9077:32583029,25857205:0 +) +(1,9078:6630773,26698693:25952256,505283,126483 +k1,9078:32583029,26698693:22056796 +g1,9078:32583029,26698693 +) +v1,9082:6630773,27889159:0,393216,0 +(1,9090:6630773,30862676:25952256,3366733,196608 +g1,9090:6630773,30862676 +g1,9090:6630773,30862676 +g1,9090:6434165,30862676 +(1,9090:6434165,30862676:0,3366733,196608 +r1,9090:32779637,30862676:26345472,3563341,196608 +k1,9090:6434165,30862676:-26345472 +) +(1,9090:6434165,30862676:26345472,3366733,196608 +[1,9090:6630773,30862676:25952256,3170125,0 +(1,9084:6630773,28096777:25952256,404226,82312 +(1,9083:6630773,28096777:0,0,0 +g1,9083:6630773,28096777 +g1,9083:6630773,28096777 +g1,9083:6303093,28096777 +(1,9083:6303093,28096777:0,0,0 +) +g1,9083:6630773,28096777 +) +g1,9084:7263065,28096777 +g1,9084:8211503,28096777 +g1,9084:10108378,28096777 +h1,9084:10740670,28096777:0,0,0 +k1,9084:32583030,28096777:21842360 +g1,9084:32583030,28096777 +) +(1,9085:6630773,28762955:25952256,404226,107478 +h1,9085:6630773,28762955:0,0,0 +g1,9085:7263065,28762955 +g1,9085:8211503,28762955 +g1,9085:10424524,28762955 +g1,9085:11372962,28762955 +g1,9085:12005254,28762955 +g1,9085:14218274,28762955 +g1,9085:15799003,28762955 +g1,9085:16747440,28762955 +g1,9085:18644314,28762955 +g1,9085:19592751,28762955 +g1,9085:20541188,28762955 +g1,9085:21805771,28762955 +k1,9085:21805771,28762955:9437 +h1,9085:22763645,28762955:0,0,0 +k1,9085:32583029,28762955:9819384 +g1,9085:32583029,28762955 +) +(1,9086:6630773,29429133:25952256,404226,101187 +h1,9086:6630773,29429133:0,0,0 +g1,9086:9159939,29429133 +g1,9086:10108377,29429133 +g1,9086:11689106,29429133 +g1,9086:12321398,29429133 +g1,9086:13902127,29429133 +g1,9086:15166710,29429133 +g1,9086:15799002,29429133 +k1,9086:15799002,29429133:0 +h1,9086:16431294,29429133:0,0,0 +k1,9086:32583029,29429133:16151735 +g1,9086:32583029,29429133 +) +(1,9087:6630773,30095311:25952256,404226,76021 +h1,9087:6630773,30095311:0,0,0 +g1,9087:6946919,30095311 +g1,9087:7263065,30095311 +g1,9087:7579211,30095311 +g1,9087:7895357,30095311 +g1,9087:8211503,30095311 +g1,9087:9792232,30095311 +g1,9087:10424524,30095311 +h1,9087:17063584,30095311:0,0,0 +k1,9087:32583029,30095311:15519445 +g1,9087:32583029,30095311 +) +(1,9088:6630773,30761489:25952256,404226,101187 +h1,9088:6630773,30761489:0,0,0 +g1,9088:9159939,30761489 +g1,9088:10108377,30761489 +g1,9088:14850562,30761489 +g1,9088:16115145,30761489 +g1,9088:16747437,30761489 +h1,9088:18012020,30761489:0,0,0 +k1,9088:32583029,30761489:14571009 +g1,9088:32583029,30761489 +) +] +) +g1,9090:32583029,30862676 +g1,9090:6630773,30862676 +g1,9090:6630773,30862676 +g1,9090:32583029,30862676 +g1,9090:32583029,30862676 +) +h1,9090:6630773,31059284:0,0,0 +] +(1,9101:32583029,45706769:0,0,0 +g1,9101:32583029,45706769 +) +) +] +(1,9101:6630773,47279633:25952256,0,0 +h1,9101:6630773,47279633:25952256,0,0 +) +] +h1,9101:4262630,4025873:0,0,0 ] !18802 }167 -Input:1185:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1186:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1187:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1188:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1189:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 +Input:1181:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1182:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1183:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1184:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 {168 -[1,9120:4262630,47279633:28320399,43253760,0 -(1,9120:4262630,4025873:0,0,0 -[1,9120:-473657,4025873:25952256,0,0 -(1,9120:-473657,-710414:25952256,0,0 -h1,9120:-473657,-710414:0,0,0 -(1,9120:-473657,-710414:0,0,0 -(1,9120:-473657,-710414:0,0,0 -g1,9120:-473657,-710414 -(1,9120:-473657,-710414:65781,0,65781 -g1,9120:-407876,-710414 -[1,9120:-407876,-644633:0,0,0 +[1,9125:4262630,47279633:28320399,43253760,0 +(1,9125:4262630,4025873:0,0,0 +[1,9125:-473657,4025873:25952256,0,0 +(1,9125:-473657,-710414:25952256,0,0 +h1,9125:-473657,-710414:0,0,0 +(1,9125:-473657,-710414:0,0,0 +(1,9125:-473657,-710414:0,0,0 +g1,9125:-473657,-710414 +(1,9125:-473657,-710414:65781,0,65781 +g1,9125:-407876,-710414 +[1,9125:-407876,-644633:0,0,0 ] ) -k1,9120:-473657,-710414:-65781 +k1,9125:-473657,-710414:-65781 ) ) -k1,9120:25478599,-710414:25952256 -g1,9120:25478599,-710414 +k1,9125:25478599,-710414:25952256 +g1,9125:25478599,-710414 ) ] ) -[1,9120:6630773,47279633:25952256,43253760,0 -[1,9120:6630773,4812305:25952256,786432,0 -(1,9120:6630773,4812305:25952256,505283,11795 -(1,9120:6630773,4812305:25952256,505283,11795 -g1,9120:3078558,4812305 -[1,9120:3078558,4812305:0,0,0 -(1,9120:3078558,2439708:0,1703936,0 -k1,9120:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,9120:2537886,2439708:1179648,16384,0 +[1,9125:6630773,47279633:25952256,43253760,0 +[1,9125:6630773,4812305:25952256,786432,0 +(1,9125:6630773,4812305:25952256,505283,11795 +(1,9125:6630773,4812305:25952256,505283,11795 +g1,9125:3078558,4812305 +[1,9125:3078558,4812305:0,0,0 +(1,9125:3078558,2439708:0,1703936,0 +k1,9125:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,9125:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,9120:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,9125:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,9120:3078558,4812305:0,0,0 -(1,9120:3078558,2439708:0,1703936,0 -g1,9120:29030814,2439708 -g1,9120:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,9120:36151628,1915420:16384,1179648,0 +[1,9125:3078558,4812305:0,0,0 +(1,9125:3078558,2439708:0,1703936,0 +g1,9125:29030814,2439708 +g1,9125:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,9125:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,9120:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,9125:37855564,2439708:1179648,16384,0 ) ) -k1,9120:3078556,2439708:-34777008 +k1,9125:3078556,2439708:-34777008 ) ] -[1,9120:3078558,4812305:0,0,0 -(1,9120:3078558,49800853:0,16384,2228224 -k1,9120:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,9120:2537886,49800853:1179648,16384,0 +[1,9125:3078558,4812305:0,0,0 +(1,9125:3078558,49800853:0,16384,2228224 +k1,9125:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,9125:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,9120:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,9125:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,9120:3078558,4812305:0,0,0 -(1,9120:3078558,49800853:0,16384,2228224 -g1,9120:29030814,49800853 -g1,9120:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,9120:36151628,51504789:16384,1179648,0 +[1,9125:3078558,4812305:0,0,0 +(1,9125:3078558,49800853:0,16384,2228224 +g1,9125:29030814,49800853 +g1,9125:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,9125:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,9120:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,9125:37855564,49800853:1179648,16384,0 ) ) -k1,9120:3078556,49800853:-34777008 +k1,9125:3078556,49800853:-34777008 ) ] -g1,9120:6630773,4812305 -g1,9120:6630773,4812305 -g1,9120:10653372,4812305 -g1,9120:13512052,4812305 -k1,9120:31387652,4812305:17875600 +g1,9125:6630773,4812305 +g1,9125:6630773,4812305 +g1,9125:10653372,4812305 +g1,9125:13512052,4812305 +k1,9125:31387652,4812305:17875600 ) ) ] -[1,9120:6630773,45706769:25952256,40108032,0 -(1,9120:6630773,45706769:25952256,40108032,0 -(1,9120:6630773,45706769:0,0,0 -g1,9120:6630773,45706769 +[1,9125:6630773,45706769:25952256,40108032,0 +(1,9125:6630773,45706769:25952256,40108032,0 +(1,9125:6630773,45706769:0,0,0 +g1,9125:6630773,45706769 ) -[1,9120:6630773,45706769:25952256,40108032,0 -(1,9088:6630773,23766073:25952256,18167336,0 -k1,9088:10523651,23766073:3892878 -h1,9087:10523651,23766073:0,0,0 -(1,9087:10523651,23766073:18166500,18167336,0 -(1,9087:10523651,23766073:18167381,18167381,0 -(1,9087:10523651,23766073:18167381,18167381,0 -(1,9087:10523651,23766073:0,18167381,0 -(1,9087:10523651,23766073:0,28377088,0 -(1,9087:10523651,23766073:28377088,28377088,0 +[1,9125:6630773,45706769:25952256,40108032,0 +(1,9093:6630773,23766073:25952256,18167336,0 +k1,9093:10523651,23766073:3892878 +h1,9092:10523651,23766073:0,0,0 +(1,9092:10523651,23766073:18166500,18167336,0 +(1,9092:10523651,23766073:18167381,18167381,0 +(1,9092:10523651,23766073:18167381,18167381,0 +(1,9092:10523651,23766073:0,18167381,0 +(1,9092:10523651,23766073:0,28377088,0 +(1,9092:10523651,23766073:28377088,28377088,0 ) -k1,9087:10523651,23766073:-28377088 -) -) -g1,9087:28691032,23766073 -) -) -) -g1,9088:28690151,23766073 -k1,9088:32583029,23766073:3892878 -) -v1,9096:6630773,24991553:0,393216,0 -(1,9097:6630773,31555148:25952256,6956811,616038 -g1,9097:6630773,31555148 -(1,9097:6630773,31555148:25952256,6956811,616038 -(1,9097:6630773,32171186:25952256,7572849,0 -[1,9097:6630773,32171186:25952256,7572849,0 -(1,9097:6630773,32144972:25952256,7520421,0 -r1,9097:6656987,32144972:26214,7520421,0 -[1,9097:6656987,32144972:25899828,7520421,0 -(1,9097:6656987,31555148:25899828,6340773,0 -[1,9097:7246811,31555148:24720180,6340773,0 -(1,9097:7246811,26498357:24720180,1283982,196608 -(1,9096:7246811,26498357:0,1283982,196608 -r1,9097:9812056,26498357:2565245,1480590,196608 -k1,9096:7246811,26498357:-2565245 -) -(1,9096:7246811,26498357:2565245,1283982,196608 -) -k1,9096:10006802,26498357:194746 -k1,9096:11597465,26498357:194746 -k1,9096:13181574,26498357:194746 -k1,9096:14185690,26498357:194746 -k1,9096:15399521,26498357:194746 -k1,9096:17332281,26498357:194745 -k1,9096:19688404,26498357:194746 -k1,9096:24000777,26498357:194746 -k1,9096:25933538,26498357:194746 -k1,9096:28289661,26498357:194746 -k1,9096:30775546,26498357:194746 -k1,9096:31966991,26498357:0 -) -(1,9097:7246811,27339845:24720180,513147,126483 -k1,9096:9188439,27339845:203613 -k1,9096:11877833,27339845:203613 -k1,9096:12740738,27339845:203613 -k1,9096:14880285,27339845:203613 -k1,9096:16551904,27339845:203613 -k1,9096:17368279,27339845:203613 -k1,9096:19023514,27339845:203613 -k1,9096:19886418,27339845:203612 -k1,9096:21109116,27339845:203613 -k1,9096:24199590,27339845:203613 -k1,9096:25019241,27339845:203613 -k1,9096:26241939,27339845:203613 -(1,9096:26241939,27339845:0,452978,115847 -r1,9097:29062188,27339845:2820249,568825,115847 -k1,9096:26241939,27339845:-2820249 -) -(1,9096:26241939,27339845:2820249,452978,115847 -k1,9096:26241939,27339845:3277 -h1,9096:29058911,27339845:0,411205,112570 -) -k1,9096:29265801,27339845:203613 -k1,9096:30858777,27339845:203613 -k1,9096:31966991,27339845:0 -) -(1,9097:7246811,28181333:24720180,513147,134348 -k1,9096:9081840,28181333:199906 -k1,9096:12069648,28181333:199906 -k1,9096:14781548,28181333:199905 -k1,9096:17642216,28181333:199906 -k1,9096:20393439,28181333:199906 -k1,9096:21540996,28181333:199906 -k1,9096:24575989,28181333:199906 -k1,9096:26511287,28181333:199905 -k1,9096:29406689,28181333:199906 -(1,9096:29406689,28181333:0,452978,115847 -r1,9097:30820090,28181333:1413401,568825,115847 -k1,9096:29406689,28181333:-1413401 -) -(1,9096:29406689,28181333:1413401,452978,115847 -k1,9096:29406689,28181333:3277 -h1,9096:30816813,28181333:0,411205,112570 -) -k1,9096:31193666,28181333:199906 -k1,9097:31966991,28181333:0 -) -(1,9097:7246811,29022821:24720180,505283,126483 -k1,9096:9176697,29022821:214153 -k1,9096:10483334,29022821:214152 -k1,9096:12119603,29022821:214138 -k1,9096:12985183,29022821:214152 -k1,9096:16002311,29022821:214153 -k1,9096:17546844,29022821:214152 -k1,9096:19963007,29022821:214153 -k1,9096:21196244,29022821:214152 -k1,9096:24297258,29022821:214153 -k1,9096:25502970,29022821:214152 -k1,9096:27111074,29022821:214153 -k1,9096:29649788,29022821:214152 -k1,9096:30515369,29022821:214153 -k1,9096:31966991,29022821:0 -) -(1,9097:7246811,29864309:24720180,513147,7863 -k1,9096:8071254,29864309:165151 -k1,9096:9255490,29864309:165151 -k1,9096:11075424,29864309:165150 -k1,9096:14255886,29864309:165151 -k1,9096:16507703,29864309:165151 -k1,9096:17028714,29864309:165151 -k1,9096:19897879,29864309:165150 -k1,9096:20722322,29864309:165151 -k1,9096:23548235,29864309:165151 -k1,9096:24997892,29864309:165151 -k1,9096:26846007,29864309:165150 -k1,9096:28278624,29864309:165151 -k1,9096:30947906,29864309:165151 -k1,9096:31966991,29864309:0 -) -(1,9097:7246811,30705797:24720180,513147,11795 -k1,9096:9071991,30705797:170396 -k1,9096:11562362,30705797:170396 -k1,9096:14574398,30705797:170395 -k1,9096:15936239,30705797:170396 -k1,9096:17199120,30705797:170396 -k1,9096:18791618,30705797:170367 -k1,9096:19613442,30705797:170396 -k1,9096:21049994,30705797:170396 -k1,9096:22550771,30705797:170396 -k1,9096:24957910,30705797:170395 -k1,9096:26147391,30705797:170396 -k1,9096:29080130,30705797:170396 -k1,9096:31966991,30705797:0 -) -(1,9097:7246811,31547285:24720180,355205,7863 -k1,9097:31966991,31547285:23554950 -g1,9097:31966991,31547285 -) -] -) -] -r1,9097:32583029,32144972:26214,7520421,0 -) -] -) -) -g1,9097:32583029,31555148 -) -h1,9097:6630773,32171186:0,0,0 -(1,9101:6630773,34646438:25952256,555811,139132 -(1,9101:6630773,34646438:2899444,527696,0 -g1,9101:6630773,34646438 -g1,9101:9530217,34646438 -) -g1,9101:12369827,34646438 -k1,9101:32583029,34646438:17244552 -g1,9101:32583029,34646438 -) -(1,9105:6630773,35881142:25952256,505283,134348 -k1,9104:7564115,35881142:305507 -k1,9104:10046073,35881142:305507 -k1,9104:13079843,35881142:305506 -k1,9104:14404435,35881142:305507 -k1,9104:15886969,35881142:305507 -k1,9104:16723973,35881142:305507 -k1,9104:17680907,35881142:305506 -k1,9104:19879094,35881142:305507 -k1,9104:24256353,35881142:305507 -k1,9104:25829326,35881142:305507 -k1,9104:28660590,35881142:305506 -k1,9104:31189078,35881142:305507 -k1,9104:32583029,35881142:0 -) -(1,9105:6630773,36722630:25952256,513147,134348 -k1,9104:9607500,36722630:253706 -k1,9104:12345676,36722630:253706 -k1,9104:16726184,36722630:253706 -k1,9104:18171336,36722630:253707 -k1,9104:21621888,36722630:253706 -k1,9104:26738365,36722630:253706 -k1,9104:30682403,36722630:253706 -k1,9104:31563944,36722630:253706 -k1,9104:32583029,36722630:0 -) -(1,9105:6630773,37564118:25952256,513147,134348 -k1,9104:8188396,37564118:173503 -k1,9104:11023316,37564118:173503 -k1,9104:12065171,37564118:173503 -k1,9104:13331159,37564118:173503 -k1,9104:16200158,37564118:173503 -(1,9104:16200158,37564118:0,452978,115847 -r1,9104:19020407,37564118:2820249,568825,115847 -k1,9104:16200158,37564118:-2820249 -) -(1,9104:16200158,37564118:2820249,452978,115847 -k1,9104:16200158,37564118:3277 -h1,9104:19017130,37564118:0,411205,112570 -) -k1,9104:19193910,37564118:173503 -k1,9104:20935034,37564118:173503 -k1,9104:22127622,37564118:173503 -k1,9104:24362863,37564118:173478 -k1,9104:27116518,37564118:173503 -k1,9104:29330156,37564118:173503 -k1,9104:30457208,37564118:173503 -k1,9104:31896867,37564118:173503 -k1,9104:32583029,37564118:0 -) -(1,9105:6630773,38405606:25952256,505283,126483 -k1,9104:8901249,38405606:241481 -k1,9104:10161814,38405606:241480 -(1,9104:10161814,38405606:0,452978,115847 -r1,9104:12982063,38405606:2820249,568825,115847 -k1,9104:10161814,38405606:-2820249 -) -(1,9104:10161814,38405606:2820249,452978,115847 -k1,9104:10161814,38405606:3277 -h1,9104:12978786,38405606:0,411205,112570 -) -k1,9104:13223544,38405606:241481 -k1,9104:14854387,38405606:241480 -k1,9104:16981339,38405606:241481 -k1,9104:19637166,38405606:241481 -k1,9104:22639022,38405606:241480 -k1,9104:26045237,38405606:241481 -k1,9104:26914552,38405606:241480 -k1,9104:28858003,38405606:241481 -k1,9104:30796865,38405606:241480 -k1,9104:31394206,38405606:241481 -k1,9105:32583029,38405606:0 -) -(1,9105:6630773,39247094:25952256,513147,126483 -k1,9104:7995506,39247094:253242 -k1,9104:8908040,39247094:253242 -k1,9104:12152345,39247094:253242 -k1,9104:15040789,39247094:253241 -k1,9104:16890488,39247094:253242 -k1,9104:17803022,39247094:253242 -k1,9104:22128016,39247094:253242 -k1,9104:24241825,39247094:253242 -k1,9104:25146495,39247094:253242 -k1,9104:26147502,39247094:253241 -k1,9104:27706877,39247094:253242 -k1,9104:31189078,39247094:253242 -k1,9104:32583029,39247094:0 -) -(1,9105:6630773,40088582:25952256,513147,126483 -g1,9104:9525498,40088582 -(1,9104:9525498,40088582:0,452978,115847 -r1,9104:10938899,40088582:1413401,568825,115847 -k1,9104:9525498,40088582:-1413401 -) -(1,9104:9525498,40088582:1413401,452978,115847 -k1,9104:9525498,40088582:3277 -h1,9104:10935622,40088582:0,411205,112570 -) -g1,9104:11138128,40088582 -g1,9104:13222828,40088582 -g1,9104:16278771,40088582 -g1,9104:18709501,40088582 -k1,9105:32583029,40088582:10915233 -g1,9105:32583029,40088582 -) -v1,9107:6630773,41138752:0,393216,0 -(1,9120:6630773,45510161:25952256,4764625,196608 -g1,9120:6630773,45510161 -g1,9120:6630773,45510161 -g1,9120:6434165,45510161 -(1,9120:6434165,45510161:0,4764625,196608 -r1,9120:32779637,45510161:26345472,4961233,196608 -k1,9120:6434165,45510161:-26345472 -) -(1,9120:6434165,45510161:26345472,4764625,196608 -[1,9120:6630773,45510161:25952256,4568017,0 -(1,9109:6630773,41346370:25952256,404226,76021 -(1,9108:6630773,41346370:0,0,0 -g1,9108:6630773,41346370 -g1,9108:6630773,41346370 -g1,9108:6303093,41346370 -(1,9108:6303093,41346370:0,0,0 -) -g1,9108:6630773,41346370 -) -g1,9109:7579210,41346370 -g1,9109:8527648,41346370 -k1,9109:8527648,41346370:0 -h1,9109:13585979,41346370:0,0,0 -k1,9109:32583029,41346370:18997050 -g1,9109:32583029,41346370 -) -(1,9110:6630773,42012548:25952256,404226,101187 -h1,9110:6630773,42012548:0,0,0 -k1,9110:6630773,42012548:0 -h1,9110:9476084,42012548:0,0,0 -k1,9110:32583028,42012548:23106944 -g1,9110:32583028,42012548 -) -(1,9119:6630773,42744262:25952256,379060,0 -(1,9112:6630773,42744262:0,0,0 -g1,9112:6630773,42744262 -g1,9112:6630773,42744262 -g1,9112:6303093,42744262 -(1,9112:6303093,42744262:0,0,0 -) -g1,9112:6630773,42744262 -) -h1,9119:7263064,42744262:0,0,0 -k1,9119:32583028,42744262:25319964 -g1,9119:32583028,42744262 -) -(1,9119:6630773,43410440:25952256,404226,7863 -h1,9119:6630773,43410440:0,0,0 -g1,9119:7579210,43410440 -h1,9119:9159938,43410440:0,0,0 -k1,9119:32583030,43410440:23423092 -g1,9119:32583030,43410440 -) -(1,9119:6630773,44076618:25952256,404226,76021 -h1,9119:6630773,44076618:0,0,0 -g1,9119:7579210,44076618 -g1,9119:10424521,44076618 -g1,9119:11056813,44076618 -h1,9119:13902124,44076618:0,0,0 -k1,9119:32583028,44076618:18680904 -g1,9119:32583028,44076618 -) -(1,9119:6630773,44742796:25952256,379060,0 -h1,9119:6630773,44742796:0,0,0 -h1,9119:7263064,44742796:0,0,0 -k1,9119:32583028,44742796:25319964 -g1,9119:32583028,44742796 -) -(1,9119:6630773,45408974:25952256,404226,101187 -h1,9119:6630773,45408974:0,0,0 -g1,9119:7579210,45408974 -g1,9119:10108376,45408974 -g1,9119:12321396,45408974 -g1,9119:12637542,45408974 -g1,9119:12953688,45408974 -g1,9119:13585980,45408974 -h1,9119:16115145,45408974:0,0,0 -k1,9119:32583029,45408974:16467884 -g1,9119:32583029,45408974 -) -] -) -g1,9120:32583029,45510161 -g1,9120:6630773,45510161 -g1,9120:6630773,45510161 -g1,9120:32583029,45510161 -g1,9120:32583029,45510161 -) -] -(1,9120:32583029,45706769:0,0,0 -g1,9120:32583029,45706769 -) -) -] -(1,9120:6630773,47279633:25952256,0,0 -h1,9120:6630773,47279633:25952256,0,0 -) -] -h1,9120:4262630,4025873:0,0,0 +k1,9092:10523651,23766073:-28377088 +) +) +g1,9092:28691032,23766073 +) +) +) +g1,9093:28690151,23766073 +k1,9093:32583029,23766073:3892878 +) +v1,9101:6630773,24991553:0,393216,0 +(1,9102:6630773,31555148:25952256,6956811,616038 +g1,9102:6630773,31555148 +(1,9102:6630773,31555148:25952256,6956811,616038 +(1,9102:6630773,32171186:25952256,7572849,0 +[1,9102:6630773,32171186:25952256,7572849,0 +(1,9102:6630773,32144972:25952256,7520421,0 +r1,9102:6656987,32144972:26214,7520421,0 +[1,9102:6656987,32144972:25899828,7520421,0 +(1,9102:6656987,31555148:25899828,6340773,0 +[1,9102:7246811,31555148:24720180,6340773,0 +(1,9102:7246811,26498357:24720180,1283982,196608 +(1,9101:7246811,26498357:0,1283982,196608 +r1,9102:9812056,26498357:2565245,1480590,196608 +k1,9101:7246811,26498357:-2565245 +) +(1,9101:7246811,26498357:2565245,1283982,196608 +) +k1,9101:10006802,26498357:194746 +k1,9101:11597465,26498357:194746 +k1,9101:13181574,26498357:194746 +k1,9101:14185690,26498357:194746 +k1,9101:15399521,26498357:194746 +k1,9101:17332281,26498357:194745 +k1,9101:19688404,26498357:194746 +k1,9101:24000777,26498357:194746 +k1,9101:25933538,26498357:194746 +k1,9101:28289661,26498357:194746 +k1,9101:30775546,26498357:194746 +k1,9101:31966991,26498357:0 +) +(1,9102:7246811,27339845:24720180,513147,126483 +k1,9101:9188439,27339845:203613 +k1,9101:11877833,27339845:203613 +k1,9101:12740738,27339845:203613 +k1,9101:14880285,27339845:203613 +k1,9101:16551904,27339845:203613 +k1,9101:17368279,27339845:203613 +k1,9101:19023514,27339845:203613 +k1,9101:19886418,27339845:203612 +k1,9101:21109116,27339845:203613 +k1,9101:24199590,27339845:203613 +k1,9101:25019241,27339845:203613 +k1,9101:26241939,27339845:203613 +(1,9101:26241939,27339845:0,452978,115847 +r1,9102:29062188,27339845:2820249,568825,115847 +k1,9101:26241939,27339845:-2820249 +) +(1,9101:26241939,27339845:2820249,452978,115847 +k1,9101:26241939,27339845:3277 +h1,9101:29058911,27339845:0,411205,112570 +) +k1,9101:29265801,27339845:203613 +k1,9101:30858777,27339845:203613 +k1,9101:31966991,27339845:0 +) +(1,9102:7246811,28181333:24720180,513147,134348 +k1,9101:9081840,28181333:199906 +k1,9101:12069648,28181333:199906 +k1,9101:14781548,28181333:199905 +k1,9101:17642216,28181333:199906 +k1,9101:20393439,28181333:199906 +k1,9101:21540996,28181333:199906 +k1,9101:24575989,28181333:199906 +k1,9101:26511287,28181333:199905 +k1,9101:29406689,28181333:199906 +(1,9101:29406689,28181333:0,452978,115847 +r1,9102:30820090,28181333:1413401,568825,115847 +k1,9101:29406689,28181333:-1413401 +) +(1,9101:29406689,28181333:1413401,452978,115847 +k1,9101:29406689,28181333:3277 +h1,9101:30816813,28181333:0,411205,112570 +) +k1,9101:31193666,28181333:199906 +k1,9102:31966991,28181333:0 +) +(1,9102:7246811,29022821:24720180,505283,126483 +k1,9101:9176697,29022821:214153 +k1,9101:10483334,29022821:214152 +k1,9101:12119603,29022821:214138 +k1,9101:12985183,29022821:214152 +k1,9101:16002311,29022821:214153 +k1,9101:17546844,29022821:214152 +k1,9101:19963007,29022821:214153 +k1,9101:21196244,29022821:214152 +k1,9101:24297258,29022821:214153 +k1,9101:25502970,29022821:214152 +k1,9101:27111074,29022821:214153 +k1,9101:29649788,29022821:214152 +k1,9101:30515369,29022821:214153 +k1,9101:31966991,29022821:0 +) +(1,9102:7246811,29864309:24720180,513147,7863 +k1,9101:8071254,29864309:165151 +k1,9101:9255490,29864309:165151 +k1,9101:11075424,29864309:165150 +k1,9101:14255886,29864309:165151 +k1,9101:16507703,29864309:165151 +k1,9101:17028714,29864309:165151 +k1,9101:19897879,29864309:165150 +k1,9101:20722322,29864309:165151 +k1,9101:23548235,29864309:165151 +k1,9101:24997892,29864309:165151 +k1,9101:26846007,29864309:165150 +k1,9101:28278624,29864309:165151 +k1,9101:30947906,29864309:165151 +k1,9101:31966991,29864309:0 +) +(1,9102:7246811,30705797:24720180,513147,11795 +k1,9101:9071991,30705797:170396 +k1,9101:11562362,30705797:170396 +k1,9101:14574398,30705797:170395 +k1,9101:15936239,30705797:170396 +k1,9101:17199120,30705797:170396 +k1,9101:18791618,30705797:170367 +k1,9101:19613442,30705797:170396 +k1,9101:21049994,30705797:170396 +k1,9101:22550771,30705797:170396 +k1,9101:24957910,30705797:170395 +k1,9101:26147391,30705797:170396 +k1,9101:29080130,30705797:170396 +k1,9101:31966991,30705797:0 +) +(1,9102:7246811,31547285:24720180,355205,7863 +k1,9102:31966991,31547285:23554950 +g1,9102:31966991,31547285 +) +] +) +] +r1,9102:32583029,32144972:26214,7520421,0 +) +] +) +) +g1,9102:32583029,31555148 +) +h1,9102:6630773,32171186:0,0,0 +(1,9106:6630773,34646438:25952256,555811,139132 +(1,9106:6630773,34646438:2899444,527696,0 +g1,9106:6630773,34646438 +g1,9106:9530217,34646438 +) +g1,9106:12369827,34646438 +k1,9106:32583029,34646438:17244552 +g1,9106:32583029,34646438 +) +(1,9110:6630773,35881142:25952256,505283,134348 +k1,9109:7564115,35881142:305507 +k1,9109:10046073,35881142:305507 +k1,9109:13079843,35881142:305506 +k1,9109:14404435,35881142:305507 +k1,9109:15886969,35881142:305507 +k1,9109:16723973,35881142:305507 +k1,9109:17680907,35881142:305506 +k1,9109:19879094,35881142:305507 +k1,9109:24256353,35881142:305507 +k1,9109:25829326,35881142:305507 +k1,9109:28660590,35881142:305506 +k1,9109:31189078,35881142:305507 +k1,9109:32583029,35881142:0 +) +(1,9110:6630773,36722630:25952256,513147,134348 +k1,9109:9607500,36722630:253706 +k1,9109:12345676,36722630:253706 +k1,9109:16726184,36722630:253706 +k1,9109:18171336,36722630:253707 +k1,9109:21621888,36722630:253706 +k1,9109:26738365,36722630:253706 +k1,9109:30682403,36722630:253706 +k1,9109:31563944,36722630:253706 +k1,9109:32583029,36722630:0 +) +(1,9110:6630773,37564118:25952256,513147,134348 +k1,9109:8188396,37564118:173503 +k1,9109:11023316,37564118:173503 +k1,9109:12065171,37564118:173503 +k1,9109:13331159,37564118:173503 +k1,9109:16200158,37564118:173503 +(1,9109:16200158,37564118:0,452978,115847 +r1,9109:19020407,37564118:2820249,568825,115847 +k1,9109:16200158,37564118:-2820249 +) +(1,9109:16200158,37564118:2820249,452978,115847 +k1,9109:16200158,37564118:3277 +h1,9109:19017130,37564118:0,411205,112570 +) +k1,9109:19193910,37564118:173503 +k1,9109:20935034,37564118:173503 +k1,9109:22127622,37564118:173503 +k1,9109:24362863,37564118:173478 +k1,9109:27116518,37564118:173503 +k1,9109:29330156,37564118:173503 +k1,9109:30457208,37564118:173503 +k1,9109:31896867,37564118:173503 +k1,9109:32583029,37564118:0 +) +(1,9110:6630773,38405606:25952256,505283,126483 +k1,9109:8901249,38405606:241481 +k1,9109:10161814,38405606:241480 +(1,9109:10161814,38405606:0,452978,115847 +r1,9109:12982063,38405606:2820249,568825,115847 +k1,9109:10161814,38405606:-2820249 +) +(1,9109:10161814,38405606:2820249,452978,115847 +k1,9109:10161814,38405606:3277 +h1,9109:12978786,38405606:0,411205,112570 +) +k1,9109:13223544,38405606:241481 +k1,9109:14854387,38405606:241480 +k1,9109:16981339,38405606:241481 +k1,9109:19637166,38405606:241481 +k1,9109:22639022,38405606:241480 +k1,9109:26045237,38405606:241481 +k1,9109:26914552,38405606:241480 +k1,9109:28858003,38405606:241481 +k1,9109:30796865,38405606:241480 +k1,9109:31394206,38405606:241481 +k1,9110:32583029,38405606:0 +) +(1,9110:6630773,39247094:25952256,513147,126483 +k1,9109:7995506,39247094:253242 +k1,9109:8908040,39247094:253242 +k1,9109:12152345,39247094:253242 +k1,9109:15040789,39247094:253241 +k1,9109:16890488,39247094:253242 +k1,9109:17803022,39247094:253242 +k1,9109:22128016,39247094:253242 +k1,9109:24241825,39247094:253242 +k1,9109:25146495,39247094:253242 +k1,9109:26147502,39247094:253241 +k1,9109:27706877,39247094:253242 +k1,9109:31189078,39247094:253242 +k1,9109:32583029,39247094:0 +) +(1,9110:6630773,40088582:25952256,513147,126483 +g1,9109:9525498,40088582 +(1,9109:9525498,40088582:0,452978,115847 +r1,9109:10938899,40088582:1413401,568825,115847 +k1,9109:9525498,40088582:-1413401 +) +(1,9109:9525498,40088582:1413401,452978,115847 +k1,9109:9525498,40088582:3277 +h1,9109:10935622,40088582:0,411205,112570 +) +g1,9109:11138128,40088582 +g1,9109:13222828,40088582 +g1,9109:16278771,40088582 +g1,9109:18709501,40088582 +k1,9110:32583029,40088582:10915233 +g1,9110:32583029,40088582 +) +v1,9112:6630773,41138752:0,393216,0 +(1,9125:6630773,45510161:25952256,4764625,196608 +g1,9125:6630773,45510161 +g1,9125:6630773,45510161 +g1,9125:6434165,45510161 +(1,9125:6434165,45510161:0,4764625,196608 +r1,9125:32779637,45510161:26345472,4961233,196608 +k1,9125:6434165,45510161:-26345472 +) +(1,9125:6434165,45510161:26345472,4764625,196608 +[1,9125:6630773,45510161:25952256,4568017,0 +(1,9114:6630773,41346370:25952256,404226,76021 +(1,9113:6630773,41346370:0,0,0 +g1,9113:6630773,41346370 +g1,9113:6630773,41346370 +g1,9113:6303093,41346370 +(1,9113:6303093,41346370:0,0,0 +) +g1,9113:6630773,41346370 +) +g1,9114:7579210,41346370 +g1,9114:8527648,41346370 +k1,9114:8527648,41346370:0 +h1,9114:13585979,41346370:0,0,0 +k1,9114:32583029,41346370:18997050 +g1,9114:32583029,41346370 +) +(1,9115:6630773,42012548:25952256,404226,101187 +h1,9115:6630773,42012548:0,0,0 +k1,9115:6630773,42012548:0 +h1,9115:9476084,42012548:0,0,0 +k1,9115:32583028,42012548:23106944 +g1,9115:32583028,42012548 +) +(1,9124:6630773,42744262:25952256,379060,0 +(1,9117:6630773,42744262:0,0,0 +g1,9117:6630773,42744262 +g1,9117:6630773,42744262 +g1,9117:6303093,42744262 +(1,9117:6303093,42744262:0,0,0 +) +g1,9117:6630773,42744262 +) +h1,9124:7263064,42744262:0,0,0 +k1,9124:32583028,42744262:25319964 +g1,9124:32583028,42744262 +) +(1,9124:6630773,43410440:25952256,404226,7863 +h1,9124:6630773,43410440:0,0,0 +g1,9124:7579210,43410440 +h1,9124:9159938,43410440:0,0,0 +k1,9124:32583030,43410440:23423092 +g1,9124:32583030,43410440 +) +(1,9124:6630773,44076618:25952256,404226,76021 +h1,9124:6630773,44076618:0,0,0 +g1,9124:7579210,44076618 +g1,9124:10424521,44076618 +g1,9124:11056813,44076618 +h1,9124:13902124,44076618:0,0,0 +k1,9124:32583028,44076618:18680904 +g1,9124:32583028,44076618 +) +(1,9124:6630773,44742796:25952256,379060,0 +h1,9124:6630773,44742796:0,0,0 +h1,9124:7263064,44742796:0,0,0 +k1,9124:32583028,44742796:25319964 +g1,9124:32583028,44742796 +) +(1,9124:6630773,45408974:25952256,404226,101187 +h1,9124:6630773,45408974:0,0,0 +g1,9124:7579210,45408974 +g1,9124:10108376,45408974 +g1,9124:12321396,45408974 +g1,9124:12637542,45408974 +g1,9124:12953688,45408974 +g1,9124:13585980,45408974 +h1,9124:16115145,45408974:0,0,0 +k1,9124:32583029,45408974:16467884 +g1,9124:32583029,45408974 +) +] +) +g1,9125:32583029,45510161 +g1,9125:6630773,45510161 +g1,9125:6630773,45510161 +g1,9125:32583029,45510161 +g1,9125:32583029,45510161 +) +] +(1,9125:32583029,45706769:0,0,0 +g1,9125:32583029,45706769 +) +) +] +(1,9125:6630773,47279633:25952256,0,0 +h1,9125:6630773,47279633:25952256,0,0 +) +] +h1,9125:4262630,4025873:0,0,0 ] !14020 }168 -Input:1190:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1191:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {169 -[1,9177:4262630,47279633:28320399,43253760,0 -(1,9177:4262630,4025873:0,0,0 -[1,9177:-473657,4025873:25952256,0,0 -(1,9177:-473657,-710414:25952256,0,0 -h1,9177:-473657,-710414:0,0,0 -(1,9177:-473657,-710414:0,0,0 -(1,9177:-473657,-710414:0,0,0 -g1,9177:-473657,-710414 -(1,9177:-473657,-710414:65781,0,65781 -g1,9177:-407876,-710414 -[1,9177:-407876,-644633:0,0,0 +[1,9182:4262630,47279633:28320399,43253760,0 +(1,9182:4262630,4025873:0,0,0 +[1,9182:-473657,4025873:25952256,0,0 +(1,9182:-473657,-710414:25952256,0,0 +h1,9182:-473657,-710414:0,0,0 +(1,9182:-473657,-710414:0,0,0 +(1,9182:-473657,-710414:0,0,0 +g1,9182:-473657,-710414 +(1,9182:-473657,-710414:65781,0,65781 +g1,9182:-407876,-710414 +[1,9182:-407876,-644633:0,0,0 ] ) -k1,9177:-473657,-710414:-65781 +k1,9182:-473657,-710414:-65781 ) ) -k1,9177:25478599,-710414:25952256 -g1,9177:25478599,-710414 +k1,9182:25478599,-710414:25952256 +g1,9182:25478599,-710414 ) ] ) -[1,9177:6630773,47279633:25952256,43253760,0 -[1,9177:6630773,4812305:25952256,786432,0 -(1,9177:6630773,4812305:25952256,505283,134348 -(1,9177:6630773,4812305:25952256,505283,134348 -g1,9177:3078558,4812305 -[1,9177:3078558,4812305:0,0,0 -(1,9177:3078558,2439708:0,1703936,0 -k1,9177:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,9177:2537886,2439708:1179648,16384,0 +[1,9182:6630773,47279633:25952256,43253760,0 +[1,9182:6630773,4812305:25952256,786432,0 +(1,9182:6630773,4812305:25952256,505283,134348 +(1,9182:6630773,4812305:25952256,505283,134348 +g1,9182:3078558,4812305 +[1,9182:3078558,4812305:0,0,0 +(1,9182:3078558,2439708:0,1703936,0 +k1,9182:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,9182:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,9177:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,9182:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,9177:3078558,4812305:0,0,0 -(1,9177:3078558,2439708:0,1703936,0 -g1,9177:29030814,2439708 -g1,9177:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,9177:36151628,1915420:16384,1179648,0 +[1,9182:3078558,4812305:0,0,0 +(1,9182:3078558,2439708:0,1703936,0 +g1,9182:29030814,2439708 +g1,9182:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,9182:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,9177:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,9182:37855564,2439708:1179648,16384,0 ) ) -k1,9177:3078556,2439708:-34777008 +k1,9182:3078556,2439708:-34777008 ) ] -[1,9177:3078558,4812305:0,0,0 -(1,9177:3078558,49800853:0,16384,2228224 -k1,9177:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,9177:2537886,49800853:1179648,16384,0 +[1,9182:3078558,4812305:0,0,0 +(1,9182:3078558,49800853:0,16384,2228224 +k1,9182:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,9182:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,9177:3078558,51504789:16384,1179648,0 +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,9182:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] ) ) ) ] -[1,9177:3078558,4812305:0,0,0 -(1,9177:3078558,49800853:0,16384,2228224 -g1,9177:29030814,49800853 -g1,9177:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,9177:36151628,51504789:16384,1179648,0 +[1,9182:3078558,4812305:0,0,0 +(1,9182:3078558,49800853:0,16384,2228224 +g1,9182:29030814,49800853 +g1,9182:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,9182:36151628,51504789:16384,1179648,0 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,9177:37855564,49800853:1179648,16384,0 +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,9182:37855564,49800853:1179648,16384,0 ) ) -k1,9177:3078556,49800853:-34777008 +k1,9182:3078556,49800853:-34777008 ) ] -g1,9177:6630773,4812305 -k1,9177:24573876,4812305:16747726 -g1,9177:25960617,4812305 -g1,9177:26609423,4812305 -g1,9177:29923578,4812305 +g1,9182:6630773,4812305 +k1,9182:24502442,4812305:16676292 +g1,9182:25889183,4812305 +g1,9182:26537989,4812305 +g1,9182:29852144,4812305 ) ) ] -[1,9177:6630773,45706769:25952256,40108032,0 -(1,9177:6630773,45706769:25952256,40108032,0 -(1,9177:6630773,45706769:0,0,0 -g1,9177:6630773,45706769 +[1,9182:6630773,45706769:25952256,40108032,0 +(1,9182:6630773,45706769:25952256,40108032,0 +(1,9182:6630773,45706769:0,0,0 +g1,9182:6630773,45706769 ) -[1,9177:6630773,45706769:25952256,40108032,0 -v1,9120:6630773,6254097:0,393216,0 -(1,9120:6630773,6575485:25952256,714604,196608 -g1,9120:6630773,6575485 -g1,9120:6630773,6575485 -g1,9120:6434165,6575485 -(1,9120:6434165,6575485:0,714604,196608 -r1,9120:32779637,6575485:26345472,911212,196608 -k1,9120:6434165,6575485:-26345472 +[1,9182:6630773,45706769:25952256,40108032,0 +v1,9125:6630773,6254097:0,393216,0 +(1,9125:6630773,6575485:25952256,714604,196608 +g1,9125:6630773,6575485 +g1,9125:6630773,6575485 +g1,9125:6434165,6575485 +(1,9125:6434165,6575485:0,714604,196608 +r1,9125:32779637,6575485:26345472,911212,196608 +k1,9125:6434165,6575485:-26345472 ) -(1,9120:6434165,6575485:26345472,714604,196608 -[1,9120:6630773,6575485:25952256,517996,0 -(1,9119:6630773,6468007:25952256,410518,107478 -h1,9119:6630773,6468007:0,0,0 -g1,9119:7579210,6468007 -g1,9119:9792230,6468007 -g1,9119:10740667,6468007 -g1,9119:13585978,6468007 -h1,9119:14218269,6468007:0,0,0 -k1,9119:32583029,6468007:18364760 -g1,9119:32583029,6468007 +(1,9125:6434165,6575485:26345472,714604,196608 +[1,9125:6630773,6575485:25952256,517996,0 +(1,9124:6630773,6468007:25952256,410518,107478 +h1,9124:6630773,6468007:0,0,0 +g1,9124:7579210,6468007 +g1,9124:9792230,6468007 +g1,9124:10740667,6468007 +g1,9124:13585978,6468007 +h1,9124:14218269,6468007:0,0,0 +k1,9124:32583029,6468007:18364760 +g1,9124:32583029,6468007 ) ] ) -g1,9120:32583029,6575485 -g1,9120:6630773,6575485 -g1,9120:6630773,6575485 -g1,9120:32583029,6575485 -g1,9120:32583029,6575485 +g1,9125:32583029,6575485 +g1,9125:6630773,6575485 +g1,9125:6630773,6575485 +g1,9125:32583029,6575485 +g1,9125:32583029,6575485 ) -h1,9120:6630773,6772093:0,0,0 -v1,9124:6630773,8371958:0,393216,0 -(1,9128:6630773,8680763:25952256,702021,196608 -g1,9128:6630773,8680763 -g1,9128:6630773,8680763 -g1,9128:6434165,8680763 -(1,9128:6434165,8680763:0,702021,196608 -r1,9128:32779637,8680763:26345472,898629,196608 -k1,9128:6434165,8680763:-26345472 -) -(1,9128:6434165,8680763:26345472,702021,196608 -[1,9128:6630773,8680763:25952256,505413,0 -(1,9126:6630773,8579576:25952256,404226,101187 -(1,9125:6630773,8579576:0,0,0 -g1,9125:6630773,8579576 -g1,9125:6630773,8579576 -g1,9125:6303093,8579576 -(1,9125:6303093,8579576:0,0,0 -) -g1,9125:6630773,8579576 -) -k1,9126:6630773,8579576:0 -h1,9126:9159939,8579576:0,0,0 -k1,9126:32583029,8579576:23423090 -g1,9126:32583029,8579576 -) -] -) -g1,9128:32583029,8680763 -g1,9128:6630773,8680763 -g1,9128:6630773,8680763 -g1,9128:32583029,8680763 -g1,9128:32583029,8680763 -) -h1,9128:6630773,8877371:0,0,0 -(1,9131:6630773,27577086:25952256,18167336,0 -k1,9131:10523651,27577086:3892878 -h1,9130:10523651,27577086:0,0,0 -(1,9130:10523651,27577086:18166500,18167336,0 -(1,9130:10523651,27577086:18167381,18167381,0 -(1,9130:10523651,27577086:18167381,18167381,0 -(1,9130:10523651,27577086:0,18167381,0 -(1,9130:10523651,27577086:0,28377088,0 -(1,9130:10523651,27577086:28377088,28377088,0 -) -k1,9130:10523651,27577086:-28377088 -) -) -g1,9130:28691032,27577086 -) -) -) -g1,9131:28690151,27577086 -k1,9131:32583029,27577086:3892878 -) -(1,9139:6630773,28418574:25952256,513147,134348 -h1,9138:6630773,28418574:983040,0,0 -k1,9138:8791057,28418574:223695 -k1,9138:10119034,28418574:223695 -k1,9138:11435214,28418574:223695 -(1,9138:11435214,28418574:0,452978,115847 -r1,9138:14255463,28418574:2820249,568825,115847 -k1,9138:11435214,28418574:-2820249 -) -(1,9138:11435214,28418574:2820249,452978,115847 -k1,9138:11435214,28418574:3277 -h1,9138:14252186,28418574:0,411205,112570 -) -k1,9138:14479158,28418574:223695 -k1,9138:15354281,28418574:223695 -k1,9138:17062366,28418574:223695 -k1,9138:18305146,28418574:223695 -k1,9138:21014622,28418574:223695 -k1,9138:21897609,28418574:223695 -k1,9138:24628056,28418574:223695 -k1,9138:25613279,28418574:223695 -k1,9138:28251320,28418574:223695 -k1,9138:30902469,28418574:223695 -k1,9138:31812326,28418574:223695 -k1,9138:32583029,28418574:0 -) -(1,9139:6630773,29260062:25952256,513147,134348 -g1,9138:9902330,29260062 -g1,9138:11120644,29260062 -g1,9138:13675892,29260062 -g1,9138:16360902,29260062 -g1,9138:17219423,29260062 -g1,9138:19925404,29260062 -g1,9138:20807518,29260062 -g1,9138:22025832,29260062 -g1,9138:24234395,29260062 -g1,9138:25046386,29260062 -g1,9138:27131086,29260062 -g1,9138:27981743,29260062 -g1,9138:29186294,29260062 -g1,9138:30404608,29260062 -k1,9139:32583029,29260062:764809 -g1,9139:32583029,29260062 -) -v1,9141:6630773,30393084:0,393216,0 -(1,9157:6630773,37337454:25952256,7337586,196608 -g1,9157:6630773,37337454 -g1,9157:6630773,37337454 -g1,9157:6434165,37337454 -(1,9157:6434165,37337454:0,7337586,196608 -r1,9157:32779637,37337454:26345472,7534194,196608 -k1,9157:6434165,37337454:-26345472 -) -(1,9157:6434165,37337454:26345472,7337586,196608 -[1,9157:6630773,37337454:25952256,7140978,0 -(1,9143:6630773,30600702:25952256,404226,82312 -(1,9142:6630773,30600702:0,0,0 -g1,9142:6630773,30600702 -g1,9142:6630773,30600702 -g1,9142:6303093,30600702 -(1,9142:6303093,30600702:0,0,0 -) -g1,9142:6630773,30600702 -) -k1,9143:6630773,30600702:0 -g1,9143:10108376,30600702 -g1,9143:10740668,30600702 -g1,9143:11372960,30600702 -h1,9143:12005252,30600702:0,0,0 -k1,9143:32583028,30600702:20577776 -g1,9143:32583028,30600702 -) -(1,9156:6630773,31332416:25952256,404226,107478 -(1,9145:6630773,31332416:0,0,0 -g1,9145:6630773,31332416 -g1,9145:6630773,31332416 -g1,9145:6303093,31332416 -(1,9145:6303093,31332416:0,0,0 -) -g1,9145:6630773,31332416 -) -g1,9156:7579210,31332416 -g1,9156:7895356,31332416 -g1,9156:8211502,31332416 -g1,9156:8527648,31332416 -g1,9156:8843794,31332416 -g1,9156:9159940,31332416 -g1,9156:9476086,31332416 -g1,9156:9792232,31332416 -g1,9156:10108378,31332416 -g1,9156:10424524,31332416 -g1,9156:12637544,31332416 -g1,9156:12953690,31332416 -g1,9156:13269836,31332416 -g1,9156:13585982,31332416 -g1,9156:13902128,31332416 -g1,9156:14218274,31332416 -g1,9156:14534420,31332416 -g1,9156:17695877,31332416 -g1,9156:18012023,31332416 -g1,9156:18328169,31332416 -g1,9156:18644315,31332416 -g1,9156:18960461,31332416 -g1,9156:19276607,31332416 -g1,9156:19592753,31332416 -g1,9156:19908899,31332416 -g1,9156:22754210,31332416 -g1,9156:23070356,31332416 -g1,9156:23386502,31332416 -g1,9156:23702648,31332416 -g1,9156:24018794,31332416 -g1,9156:24334940,31332416 -g1,9156:24651086,31332416 -g1,9156:24967232,31332416 -g1,9156:25283378,31332416 -g1,9156:25599524,31332416 -g1,9156:27812544,31332416 -g1,9156:28128690,31332416 -g1,9156:28444836,31332416 -g1,9156:28760982,31332416 -g1,9156:29077128,31332416 -g1,9156:29393274,31332416 -g1,9156:29709420,31332416 -h1,9156:32554731,31332416:0,0,0 -k1,9156:32583029,31332416:28298 -g1,9156:32583029,31332416 -) -(1,9156:6630773,31998594:25952256,388497,9436 -h1,9156:6630773,31998594:0,0,0 -g1,9156:7579210,31998594 -g1,9156:7895356,31998594 -g1,9156:8211502,31998594 -g1,9156:8527648,31998594 -g1,9156:8843794,31998594 -g1,9156:9159940,31998594 -g1,9156:9476086,31998594 -g1,9156:9792232,31998594 -g1,9156:10108378,31998594 -g1,9156:10424524,31998594 -g1,9156:10740670,31998594 -g1,9156:11056816,31998594 -g1,9156:11372962,31998594 -g1,9156:11689108,31998594 -g1,9156:12005254,31998594 -g1,9156:12637546,31998594 -g1,9156:12953692,31998594 -g1,9156:13269838,31998594 -g1,9156:13585984,31998594 -g1,9156:13902130,31998594 -g1,9156:14218276,31998594 -g1,9156:14534422,31998594 -g1,9156:14850568,31998594 -g1,9156:15166714,31998594 -g1,9156:15482860,31998594 -g1,9156:15799006,31998594 -g1,9156:16115152,31998594 -g1,9156:16431298,31998594 -g1,9156:16747444,31998594 -g1,9156:17063590,31998594 -g1,9156:17695882,31998594 -g1,9156:18012028,31998594 -g1,9156:18328174,31998594 -g1,9156:18644320,31998594 -g1,9156:18960466,31998594 -g1,9156:19276612,31998594 -g1,9156:19592758,31998594 -g1,9156:19908904,31998594 -g1,9156:20225050,31998594 -g1,9156:20541196,31998594 -g1,9156:20857342,31998594 -g1,9156:21173488,31998594 -g1,9156:21489634,31998594 -g1,9156:21805780,31998594 -g1,9156:22121926,31998594 -g1,9156:22754218,31998594 -g1,9156:23070364,31998594 -g1,9156:23386510,31998594 -g1,9156:23702656,31998594 -g1,9156:24018802,31998594 -g1,9156:24334948,31998594 -g1,9156:24651094,31998594 -g1,9156:24967240,31998594 -g1,9156:25283386,31998594 -g1,9156:25599532,31998594 -g1,9156:25915678,31998594 -g1,9156:26231824,31998594 -g1,9156:26547970,31998594 -g1,9156:26864116,31998594 -g1,9156:27180262,31998594 -g1,9156:27812554,31998594 -g1,9156:28128700,31998594 -g1,9156:28444846,31998594 -g1,9156:28760992,31998594 -g1,9156:29077138,31998594 -g1,9156:29393284,31998594 -g1,9156:29709430,31998594 -g1,9156:30025576,31998594 -g1,9156:30341722,31998594 -g1,9156:30657868,31998594 -g1,9156:30974014,31998594 -g1,9156:31290160,31998594 -g1,9156:31606306,31998594 -g1,9156:31922452,31998594 -g1,9156:32238598,31998594 -h1,9156:32554744,31998594:0,0,0 -k1,9156:32583029,31998594:28285 -g1,9156:32583029,31998594 -) -(1,9156:6630773,32664772:25952256,404226,107478 -h1,9156:6630773,32664772:0,0,0 -g1,9156:7579210,32664772 -g1,9156:7895356,32664772 -g1,9156:8211502,32664772 -g1,9156:8527648,32664772 -g1,9156:8843794,32664772 -g1,9156:9159940,32664772 -g1,9156:9476086,32664772 -g1,9156:9792232,32664772 -g1,9156:10108378,32664772 -g1,9156:12637544,32664772 -g1,9156:12953690,32664772 -g1,9156:13269836,32664772 -g1,9156:13585982,32664772 -g1,9156:13902128,32664772 -g1,9156:14218274,32664772 -g1,9156:17695877,32664772 -g1,9156:18012023,32664772 -g1,9156:18328169,32664772 -g1,9156:18644315,32664772 -g1,9156:18960461,32664772 -g1,9156:19276607,32664772 -g1,9156:19592753,32664772 -g1,9156:19908899,32664772 -g1,9156:20225045,32664772 -g1,9156:20541191,32664772 -g1,9156:22754211,32664772 -g1,9156:23070357,32664772 -g1,9156:23386503,32664772 -g1,9156:23702649,32664772 -g1,9156:24018795,32664772 -g1,9156:24334941,32664772 -g1,9156:24651087,32664772 -g1,9156:27812544,32664772 -g1,9156:28128690,32664772 -g1,9156:28444836,32664772 -g1,9156:28760982,32664772 -g1,9156:29077128,32664772 -g1,9156:29393274,32664772 -g1,9156:29709420,32664772 -g1,9156:30025566,32664772 -g1,9156:30341712,32664772 -h1,9156:32554732,32664772:0,0,0 -k1,9156:32583029,32664772:28297 -g1,9156:32583029,32664772 -) -(1,9156:6630773,33330950:25952256,388497,9436 -h1,9156:6630773,33330950:0,0,0 -g1,9156:7579210,33330950 -g1,9156:7895356,33330950 -g1,9156:8211502,33330950 -g1,9156:8527648,33330950 -g1,9156:8843794,33330950 -g1,9156:9159940,33330950 -g1,9156:9476086,33330950 -g1,9156:9792232,33330950 -g1,9156:10108378,33330950 -g1,9156:10424524,33330950 -g1,9156:10740670,33330950 -g1,9156:11056816,33330950 -g1,9156:11372962,33330950 -g1,9156:11689108,33330950 -g1,9156:12005254,33330950 -g1,9156:12637546,33330950 -g1,9156:12953692,33330950 -g1,9156:13269838,33330950 -g1,9156:13585984,33330950 -g1,9156:13902130,33330950 -g1,9156:14218276,33330950 -g1,9156:14534422,33330950 -g1,9156:14850568,33330950 -g1,9156:15166714,33330950 -g1,9156:15482860,33330950 -g1,9156:15799006,33330950 -g1,9156:16115152,33330950 -g1,9156:16431298,33330950 -g1,9156:16747444,33330950 -g1,9156:17063590,33330950 -g1,9156:17695882,33330950 -g1,9156:18012028,33330950 -g1,9156:18328174,33330950 -g1,9156:18644320,33330950 -g1,9156:18960466,33330950 -g1,9156:19276612,33330950 -g1,9156:19592758,33330950 -g1,9156:19908904,33330950 -g1,9156:20225050,33330950 -g1,9156:20541196,33330950 -g1,9156:20857342,33330950 -g1,9156:21173488,33330950 -g1,9156:21489634,33330950 -g1,9156:21805780,33330950 -g1,9156:22121926,33330950 -g1,9156:22754218,33330950 -g1,9156:23070364,33330950 -g1,9156:23386510,33330950 -g1,9156:23702656,33330950 -g1,9156:24018802,33330950 -g1,9156:24334948,33330950 -g1,9156:24651094,33330950 -g1,9156:24967240,33330950 -g1,9156:25283386,33330950 -g1,9156:25599532,33330950 -g1,9156:25915678,33330950 -g1,9156:26231824,33330950 -g1,9156:26547970,33330950 -g1,9156:26864116,33330950 -g1,9156:27180262,33330950 -g1,9156:27812554,33330950 -g1,9156:28128700,33330950 -g1,9156:28444846,33330950 -g1,9156:28760992,33330950 -g1,9156:29077138,33330950 -g1,9156:29393284,33330950 -g1,9156:29709430,33330950 -g1,9156:30025576,33330950 -g1,9156:30341722,33330950 -g1,9156:30657868,33330950 -g1,9156:30974014,33330950 -g1,9156:31290160,33330950 -g1,9156:31606306,33330950 -g1,9156:31922452,33330950 -g1,9156:32238598,33330950 -h1,9156:32554744,33330950:0,0,0 -k1,9156:32583029,33330950:28285 -g1,9156:32583029,33330950 -) -(1,9156:6630773,33997128:25952256,410518,101187 -h1,9156:6630773,33997128:0,0,0 -g1,9156:7579210,33997128 -g1,9156:9159939,33997128 -g1,9156:10108376,33997128 -g1,9156:12637542,33997128 -g1,9156:12953688,33997128 -g1,9156:13269834,33997128 -g1,9156:13585980,33997128 -g1,9156:13902126,33997128 -g1,9156:14218272,33997128 -g1,9156:14534418,33997128 -g1,9156:14850564,33997128 -g1,9156:15166710,33997128 -g1,9156:15482856,33997128 -g1,9156:17695876,33997128 -g1,9156:18012022,33997128 -g1,9156:18328168,33997128 -g1,9156:18644314,33997128 -g1,9156:18960460,33997128 -g1,9156:19276606,33997128 -g1,9156:19592752,33997128 -g1,9156:19908898,33997128 -g1,9156:20225044,33997128 -g1,9156:20541190,33997128 -g1,9156:20857336,33997128 -g1,9156:22754210,33997128 -g1,9156:23070356,33997128 -g1,9156:23386502,33997128 -g1,9156:23702648,33997128 -g1,9156:24018794,33997128 -g1,9156:24334940,33997128 -g1,9156:24651086,33997128 -g1,9156:24967232,33997128 -g1,9156:25283378,33997128 -g1,9156:25599524,33997128 -g1,9156:27812544,33997128 -g1,9156:28128690,33997128 -g1,9156:28444836,33997128 -g1,9156:28760982,33997128 -g1,9156:29077128,33997128 -g1,9156:29393274,33997128 -h1,9156:32554731,33997128:0,0,0 -k1,9156:32583029,33997128:28298 -g1,9156:32583029,33997128 -) -(1,9156:6630773,34663306:25952256,388497,9436 -h1,9156:6630773,34663306:0,0,0 -g1,9156:7579210,34663306 -g1,9156:7895356,34663306 -g1,9156:8211502,34663306 -g1,9156:8527648,34663306 -g1,9156:8843794,34663306 -g1,9156:9159940,34663306 -g1,9156:9476086,34663306 -g1,9156:9792232,34663306 -g1,9156:10108378,34663306 -g1,9156:10424524,34663306 -g1,9156:10740670,34663306 -g1,9156:11056816,34663306 -g1,9156:11372962,34663306 -g1,9156:11689108,34663306 -g1,9156:12005254,34663306 -g1,9156:12637546,34663306 -g1,9156:12953692,34663306 -g1,9156:13269838,34663306 -g1,9156:13585984,34663306 -g1,9156:13902130,34663306 -g1,9156:14218276,34663306 -g1,9156:14534422,34663306 -g1,9156:14850568,34663306 -g1,9156:15166714,34663306 -g1,9156:15482860,34663306 -g1,9156:15799006,34663306 -g1,9156:16115152,34663306 -g1,9156:16431298,34663306 -g1,9156:16747444,34663306 -g1,9156:17063590,34663306 -g1,9156:17695882,34663306 -g1,9156:18012028,34663306 -g1,9156:18328174,34663306 -g1,9156:18644320,34663306 -g1,9156:18960466,34663306 -g1,9156:19276612,34663306 -g1,9156:19592758,34663306 -g1,9156:19908904,34663306 -g1,9156:20225050,34663306 -g1,9156:20541196,34663306 -g1,9156:20857342,34663306 -g1,9156:21173488,34663306 -g1,9156:21489634,34663306 -g1,9156:21805780,34663306 -g1,9156:22121926,34663306 -g1,9156:22754218,34663306 -g1,9156:23070364,34663306 -g1,9156:23386510,34663306 -g1,9156:23702656,34663306 -g1,9156:24018802,34663306 -g1,9156:24334948,34663306 -g1,9156:24651094,34663306 -g1,9156:24967240,34663306 -g1,9156:25283386,34663306 -g1,9156:25599532,34663306 -g1,9156:25915678,34663306 -g1,9156:26231824,34663306 -g1,9156:26547970,34663306 -g1,9156:26864116,34663306 -g1,9156:27180262,34663306 -g1,9156:27812554,34663306 -g1,9156:28128700,34663306 -g1,9156:28444846,34663306 -g1,9156:28760992,34663306 -g1,9156:29077138,34663306 -g1,9156:29393284,34663306 -g1,9156:29709430,34663306 -g1,9156:30025576,34663306 -g1,9156:30341722,34663306 -g1,9156:30657868,34663306 -g1,9156:30974014,34663306 -g1,9156:31290160,34663306 -g1,9156:31606306,34663306 -g1,9156:31922452,34663306 -g1,9156:32238598,34663306 -h1,9156:32554744,34663306:0,0,0 -k1,9156:32583029,34663306:28285 -g1,9156:32583029,34663306 -) -(1,9156:6630773,35329484:25952256,404226,7863 -h1,9156:6630773,35329484:0,0,0 -g1,9156:7579210,35329484 -g1,9156:7895356,35329484 -g1,9156:8211502,35329484 -g1,9156:8527648,35329484 -g1,9156:8843794,35329484 -g1,9156:9159940,35329484 -g1,9156:9476086,35329484 -g1,9156:9792232,35329484 -g1,9156:10108378,35329484 -g1,9156:10424524,35329484 -g1,9156:10740670,35329484 -g1,9156:12637544,35329484 -g1,9156:12953690,35329484 -g1,9156:13269836,35329484 -g1,9156:13585982,35329484 -g1,9156:13902128,35329484 -g1,9156:14218274,35329484 -g1,9156:14534420,35329484 -g1,9156:14850566,35329484 -g1,9156:15166712,35329484 -g1,9156:15482858,35329484 -g1,9156:17695878,35329484 -g1,9156:18012024,35329484 -g1,9156:18328170,35329484 -g1,9156:18644316,35329484 -g1,9156:18960462,35329484 -g1,9156:19276608,35329484 -g1,9156:19592754,35329484 -g1,9156:19908900,35329484 -g1,9156:20225046,35329484 -g1,9156:20541192,35329484 -g1,9156:20857338,35329484 -g1,9156:22754212,35329484 -g1,9156:23070358,35329484 -g1,9156:23386504,35329484 -g1,9156:23702650,35329484 -g1,9156:24018796,35329484 -g1,9156:24334942,35329484 -g1,9156:24651088,35329484 -g1,9156:24967234,35329484 -g1,9156:25283380,35329484 -g1,9156:25599526,35329484 -g1,9156:25915672,35329484 -g1,9156:26231818,35329484 -g1,9156:27812547,35329484 -g1,9156:28128693,35329484 -g1,9156:28444839,35329484 -g1,9156:28760985,35329484 -g1,9156:29077131,35329484 -g1,9156:29393277,35329484 -g1,9156:29709423,35329484 -h1,9156:32554734,35329484:0,0,0 -k1,9156:32583029,35329484:28295 -g1,9156:32583029,35329484 -) -(1,9156:6630773,35995662:25952256,388497,9436 -h1,9156:6630773,35995662:0,0,0 -g1,9156:7579210,35995662 -g1,9156:7895356,35995662 -g1,9156:8211502,35995662 -g1,9156:8527648,35995662 -g1,9156:8843794,35995662 -g1,9156:9159940,35995662 -g1,9156:9476086,35995662 -g1,9156:9792232,35995662 -g1,9156:10108378,35995662 -g1,9156:10424524,35995662 -g1,9156:10740670,35995662 -g1,9156:11056816,35995662 -g1,9156:11372962,35995662 -g1,9156:11689108,35995662 -g1,9156:12005254,35995662 -g1,9156:12637546,35995662 -g1,9156:12953692,35995662 -g1,9156:13269838,35995662 -g1,9156:13585984,35995662 -g1,9156:13902130,35995662 -g1,9156:14218276,35995662 -g1,9156:14534422,35995662 -g1,9156:14850568,35995662 -g1,9156:15166714,35995662 -g1,9156:15482860,35995662 -g1,9156:15799006,35995662 -g1,9156:16115152,35995662 -g1,9156:16431298,35995662 -g1,9156:16747444,35995662 -g1,9156:17063590,35995662 -g1,9156:17695882,35995662 -g1,9156:18012028,35995662 -g1,9156:18328174,35995662 -g1,9156:18644320,35995662 -g1,9156:18960466,35995662 -g1,9156:19276612,35995662 -g1,9156:19592758,35995662 -g1,9156:19908904,35995662 -g1,9156:20225050,35995662 -g1,9156:20541196,35995662 -g1,9156:20857342,35995662 -g1,9156:21173488,35995662 -g1,9156:21489634,35995662 -g1,9156:21805780,35995662 -g1,9156:22121926,35995662 -g1,9156:22754218,35995662 -g1,9156:23070364,35995662 -g1,9156:23386510,35995662 -g1,9156:23702656,35995662 -g1,9156:24018802,35995662 -g1,9156:24334948,35995662 -g1,9156:24651094,35995662 -g1,9156:24967240,35995662 -g1,9156:25283386,35995662 -g1,9156:25599532,35995662 -g1,9156:25915678,35995662 -g1,9156:26231824,35995662 -g1,9156:26547970,35995662 -g1,9156:26864116,35995662 -g1,9156:27180262,35995662 -g1,9156:27812554,35995662 -g1,9156:28128700,35995662 -g1,9156:28444846,35995662 -g1,9156:28760992,35995662 -g1,9156:29077138,35995662 -g1,9156:29393284,35995662 -g1,9156:29709430,35995662 -g1,9156:30025576,35995662 -g1,9156:30341722,35995662 -g1,9156:30657868,35995662 -g1,9156:30974014,35995662 -g1,9156:31290160,35995662 -g1,9156:31606306,35995662 -g1,9156:31922452,35995662 -g1,9156:32238598,35995662 -h1,9156:32554744,35995662:0,0,0 -k1,9156:32583029,35995662:28285 -g1,9156:32583029,35995662 -) -(1,9156:6630773,36661840:25952256,404226,6290 -h1,9156:6630773,36661840:0,0,0 -g1,9156:7579210,36661840 -g1,9156:7895356,36661840 -g1,9156:8211502,36661840 -g1,9156:8527648,36661840 -g1,9156:8843794,36661840 -g1,9156:9159940,36661840 -g1,9156:9476086,36661840 -g1,9156:9792232,36661840 -g1,9156:10108378,36661840 -g1,9156:10424524,36661840 -h1,9156:12321398,36661840:0,0,0 -k1,9156:32583030,36661840:20261632 -g1,9156:32583030,36661840 -) -(1,9156:6630773,37328018:25952256,388497,9436 -h1,9156:6630773,37328018:0,0,0 -g1,9156:7579210,37328018 -g1,9156:7895356,37328018 -g1,9156:8211502,37328018 -g1,9156:8527648,37328018 -g1,9156:8843794,37328018 -g1,9156:9159940,37328018 -g1,9156:9476086,37328018 -g1,9156:9792232,37328018 -g1,9156:10108378,37328018 -g1,9156:10424524,37328018 -g1,9156:10740670,37328018 -g1,9156:11056816,37328018 -g1,9156:11372962,37328018 -g1,9156:11689108,37328018 -g1,9156:12005254,37328018 -h1,9156:12321400,37328018:0,0,0 -k1,9156:32583028,37328018:20261628 -g1,9156:32583028,37328018 -) -] -) -g1,9157:32583029,37337454 -g1,9157:6630773,37337454 -g1,9157:6630773,37337454 -g1,9157:32583029,37337454 -g1,9157:32583029,37337454 -) -h1,9157:6630773,37534062:0,0,0 -(1,9162:6630773,38667083:25952256,513147,134348 -h1,9160:6630773,38667083:983040,0,0 -k1,9160:8984915,38667083:174415 -k1,9160:11118857,38667083:174416 -k1,9160:14071999,38667083:174415 -k1,9160:15007943,38667083:174416 -(1,9160:15007943,38667083:0,452978,115847 -r1,9160:17828192,38667083:2820249,568825,115847 -k1,9160:15007943,38667083:-2820249 -) -(1,9160:15007943,38667083:2820249,452978,115847 -k1,9160:15007943,38667083:3277 -h1,9160:17824915,38667083:0,411205,112570 -) -k1,9160:18002607,38667083:174415 -k1,9160:20879072,38667083:174416 -k1,9160:23170955,38667083:174415 -k1,9160:24004663,38667083:174416 -k1,9160:25198163,38667083:174415 -k1,9160:27215451,38667083:174416 -k1,9160:28049158,38667083:174415 -k1,9160:29242659,38667083:174416 -k1,9160:32583029,38667083:0 -) -(1,9162:6630773,39333261:25952256,513147,134348 -g1,9160:8715473,39333261 -g1,9160:10926657,39333261 -g1,9160:13401296,39333261 -g1,9160:17856433,39333261 -g1,9160:19247107,39333261 -g1,9160:22144453,39333261 -k1,9162:32583029,39333261:10438576 -g1,9162:32583029,39333261 -) -v1,9162:6630773,40466283:0,393216,0 -(1,9177:6630773,45510161:25952256,5437094,196608 -g1,9177:6630773,45510161 -g1,9177:6630773,45510161 -g1,9177:6434165,45510161 -(1,9177:6434165,45510161:0,5437094,196608 -r1,9177:32779637,45510161:26345472,5633702,196608 -k1,9177:6434165,45510161:-26345472 -) -(1,9177:6434165,45510161:26345472,5437094,196608 -[1,9177:6630773,45510161:25952256,5240486,0 -(1,9164:6630773,40673901:25952256,404226,76021 -(1,9163:6630773,40673901:0,0,0 -g1,9163:6630773,40673901 -g1,9163:6630773,40673901 -g1,9163:6303093,40673901 -(1,9163:6303093,40673901:0,0,0 -) -g1,9163:6630773,40673901 -) -k1,9164:6630773,40673901:0 -h1,9164:8843793,40673901:0,0,0 -k1,9164:32583029,40673901:23739236 -g1,9164:32583029,40673901 -) -(1,9176:6630773,41405615:25952256,410518,6290 -(1,9166:6630773,41405615:0,0,0 -g1,9166:6630773,41405615 -g1,9166:6630773,41405615 -g1,9166:6303093,41405615 -(1,9166:6303093,41405615:0,0,0 -) -g1,9166:6630773,41405615 -) -g1,9176:7579210,41405615 -g1,9176:9159939,41405615 -g1,9176:10108376,41405615 -h1,9176:10424522,41405615:0,0,0 -k1,9176:32583030,41405615:22158508 -g1,9176:32583030,41405615 -) -(1,9176:6630773,42071793:25952256,410518,107478 -h1,9176:6630773,42071793:0,0,0 -g1,9176:7579210,42071793 -g1,9176:7895356,42071793 -g1,9176:8527648,42071793 -g1,9176:10424522,42071793 -g1,9176:10740668,42071793 -g1,9176:11056814,42071793 -g1,9176:11372960,42071793 -g1,9176:11689106,42071793 -g1,9176:12005252,42071793 -g1,9176:12637544,42071793 -g1,9176:13902127,42071793 -g1,9176:16115147,42071793 -g1,9176:17695876,42071793 -g1,9176:18644313,42071793 -g1,9176:19592750,42071793 -g1,9176:20541187,42071793 -g1,9176:21489624,42071793 -g1,9176:22754207,42071793 -g1,9176:24018790,42071793 -g1,9176:24967227,42071793 -g1,9176:25915664,42071793 -g1,9176:26864101,42071793 -g1,9176:28128684,42071793 -h1,9176:29077121,42071793:0,0,0 -k1,9176:32583029,42071793:3505908 -g1,9176:32583029,42071793 -) -(1,9176:6630773,42737971:25952256,410518,107478 -h1,9176:6630773,42737971:0,0,0 -g1,9176:7579210,42737971 -g1,9176:7895356,42737971 -g1,9176:8527648,42737971 -g1,9176:10740668,42737971 -g1,9176:11056814,42737971 -g1,9176:11372960,42737971 -g1,9176:11689106,42737971 -g1,9176:12005252,42737971 -g1,9176:12637544,42737971 -g1,9176:13902127,42737971 -g1,9176:16115147,42737971 -g1,9176:17379730,42737971 -g1,9176:18644313,42737971 -g1,9176:19908896,42737971 -g1,9176:21173479,42737971 -g1,9176:22438062,42737971 -g1,9176:23702645,42737971 -g1,9176:24967228,42737971 -g1,9176:26231811,42737971 -g1,9176:27496394,42737971 -g1,9176:28760977,42737971 -h1,9176:29709414,42737971:0,0,0 -k1,9176:32583029,42737971:2873615 -g1,9176:32583029,42737971 -) -(1,9176:6630773,43404149:25952256,410518,76021 -h1,9176:6630773,43404149:0,0,0 -g1,9176:7579210,43404149 -g1,9176:7895356,43404149 -g1,9176:8527648,43404149 -g1,9176:10424522,43404149 -g1,9176:10740668,43404149 -g1,9176:11056814,43404149 -g1,9176:11372960,43404149 -g1,9176:11689106,43404149 -g1,9176:12005252,43404149 -g1,9176:12637544,43404149 -g1,9176:13902127,43404149 -g1,9176:16115147,43404149 -g1,9176:16747439,43404149 -g1,9176:17695876,43404149 -g1,9176:18328168,43404149 -g1,9176:19276605,43404149 -g1,9176:20225042,43404149 -g1,9176:21173479,43404149 -g1,9176:21805771,43404149 -g1,9176:22754208,43404149 -g1,9176:23702645,43404149 -g1,9176:24334937,43404149 -h1,9176:25283374,43404149:0,0,0 -k1,9176:32583029,43404149:7299655 -g1,9176:32583029,43404149 -) -(1,9176:6630773,44070327:25952256,410518,76021 -h1,9176:6630773,44070327:0,0,0 -g1,9176:7579210,44070327 -g1,9176:7895356,44070327 -g1,9176:8527648,44070327 -g1,9176:10740668,44070327 -g1,9176:11056814,44070327 -g1,9176:11372960,44070327 -g1,9176:11689106,44070327 -g1,9176:12005252,44070327 -g1,9176:12637544,44070327 -g1,9176:13902127,44070327 -g1,9176:16115147,44070327 -g1,9176:18960458,44070327 -g1,9176:22754206,44070327 -g1,9176:26231809,44070327 -g1,9176:29077120,44070327 -h1,9176:30025557,44070327:0,0,0 -k1,9176:32583029,44070327:2557472 -g1,9176:32583029,44070327 -) -(1,9176:6630773,44736505:25952256,410518,101187 -h1,9176:6630773,44736505:0,0,0 -g1,9176:7579210,44736505 -g1,9176:7895356,44736505 -g1,9176:8527648,44736505 -g1,9176:10740668,44736505 -g1,9176:11056814,44736505 -g1,9176:11372960,44736505 -g1,9176:11689106,44736505 -g1,9176:12005252,44736505 -g1,9176:12637544,44736505 -g1,9176:13902127,44736505 -h1,9176:17063584,44736505:0,0,0 -k1,9176:32583029,44736505:15519445 -g1,9176:32583029,44736505 -) -(1,9176:6630773,45402683:25952256,410518,107478 -h1,9176:6630773,45402683:0,0,0 -g1,9176:7579210,45402683 -g1,9176:7895356,45402683 -g1,9176:8527648,45402683 -g1,9176:10108377,45402683 -g1,9176:10424523,45402683 -g1,9176:10740669,45402683 -g1,9176:11056815,45402683 -g1,9176:11372961,45402683 -g1,9176:11689107,45402683 -g1,9176:12005253,45402683 -g1,9176:12637545,45402683 -g1,9176:15482856,45402683 -g1,9176:18328167,45402683 -g1,9176:18960459,45402683 -h1,9176:21805770,45402683:0,0,0 -k1,9176:32583029,45402683:10777259 -g1,9176:32583029,45402683 -) -] -) -g1,9177:32583029,45510161 -g1,9177:6630773,45510161 -g1,9177:6630773,45510161 -g1,9177:32583029,45510161 -g1,9177:32583029,45510161 -) -] -(1,9177:32583029,45706769:0,0,0 -g1,9177:32583029,45706769 -) -) -] -(1,9177:6630773,47279633:25952256,0,0 -h1,9177:6630773,47279633:25952256,0,0 -) -] -h1,9177:4262630,4025873:0,0,0 +h1,9125:6630773,6772093:0,0,0 +v1,9129:6630773,8371958:0,393216,0 +(1,9133:6630773,8680763:25952256,702021,196608 +g1,9133:6630773,8680763 +g1,9133:6630773,8680763 +g1,9133:6434165,8680763 +(1,9133:6434165,8680763:0,702021,196608 +r1,9133:32779637,8680763:26345472,898629,196608 +k1,9133:6434165,8680763:-26345472 +) +(1,9133:6434165,8680763:26345472,702021,196608 +[1,9133:6630773,8680763:25952256,505413,0 +(1,9131:6630773,8579576:25952256,404226,101187 +(1,9130:6630773,8579576:0,0,0 +g1,9130:6630773,8579576 +g1,9130:6630773,8579576 +g1,9130:6303093,8579576 +(1,9130:6303093,8579576:0,0,0 +) +g1,9130:6630773,8579576 +) +k1,9131:6630773,8579576:0 +h1,9131:9159939,8579576:0,0,0 +k1,9131:32583029,8579576:23423090 +g1,9131:32583029,8579576 +) +] +) +g1,9133:32583029,8680763 +g1,9133:6630773,8680763 +g1,9133:6630773,8680763 +g1,9133:32583029,8680763 +g1,9133:32583029,8680763 +) +h1,9133:6630773,8877371:0,0,0 +(1,9136:6630773,27577086:25952256,18167336,0 +k1,9136:10523651,27577086:3892878 +h1,9135:10523651,27577086:0,0,0 +(1,9135:10523651,27577086:18166500,18167336,0 +(1,9135:10523651,27577086:18167381,18167381,0 +(1,9135:10523651,27577086:18167381,18167381,0 +(1,9135:10523651,27577086:0,18167381,0 +(1,9135:10523651,27577086:0,28377088,0 +(1,9135:10523651,27577086:28377088,28377088,0 +) +k1,9135:10523651,27577086:-28377088 +) +) +g1,9135:28691032,27577086 +) +) +) +g1,9136:28690151,27577086 +k1,9136:32583029,27577086:3892878 +) +(1,9144:6630773,28418574:25952256,513147,134348 +h1,9143:6630773,28418574:983040,0,0 +k1,9143:8791057,28418574:223695 +k1,9143:10119034,28418574:223695 +k1,9143:11435214,28418574:223695 +(1,9143:11435214,28418574:0,452978,115847 +r1,9143:14255463,28418574:2820249,568825,115847 +k1,9143:11435214,28418574:-2820249 +) +(1,9143:11435214,28418574:2820249,452978,115847 +k1,9143:11435214,28418574:3277 +h1,9143:14252186,28418574:0,411205,112570 +) +k1,9143:14479158,28418574:223695 +k1,9143:15354281,28418574:223695 +k1,9143:17062366,28418574:223695 +k1,9143:18305146,28418574:223695 +k1,9143:21014622,28418574:223695 +k1,9143:21897609,28418574:223695 +k1,9143:24628056,28418574:223695 +k1,9143:25613279,28418574:223695 +k1,9143:28251320,28418574:223695 +k1,9143:30902469,28418574:223695 +k1,9143:31812326,28418574:223695 +k1,9143:32583029,28418574:0 +) +(1,9144:6630773,29260062:25952256,513147,134348 +g1,9143:9902330,29260062 +g1,9143:11120644,29260062 +g1,9143:13675892,29260062 +g1,9143:16360902,29260062 +g1,9143:17219423,29260062 +g1,9143:19925404,29260062 +g1,9143:20807518,29260062 +g1,9143:22025832,29260062 +g1,9143:24234395,29260062 +g1,9143:25046386,29260062 +g1,9143:27131086,29260062 +g1,9143:27981743,29260062 +g1,9143:29186294,29260062 +g1,9143:30404608,29260062 +k1,9144:32583029,29260062:764809 +g1,9144:32583029,29260062 +) +v1,9146:6630773,30393084:0,393216,0 +(1,9162:6630773,37337454:25952256,7337586,196608 +g1,9162:6630773,37337454 +g1,9162:6630773,37337454 +g1,9162:6434165,37337454 +(1,9162:6434165,37337454:0,7337586,196608 +r1,9162:32779637,37337454:26345472,7534194,196608 +k1,9162:6434165,37337454:-26345472 +) +(1,9162:6434165,37337454:26345472,7337586,196608 +[1,9162:6630773,37337454:25952256,7140978,0 +(1,9148:6630773,30600702:25952256,404226,82312 +(1,9147:6630773,30600702:0,0,0 +g1,9147:6630773,30600702 +g1,9147:6630773,30600702 +g1,9147:6303093,30600702 +(1,9147:6303093,30600702:0,0,0 +) +g1,9147:6630773,30600702 +) +k1,9148:6630773,30600702:0 +g1,9148:10108376,30600702 +g1,9148:10740668,30600702 +g1,9148:11372960,30600702 +h1,9148:12005252,30600702:0,0,0 +k1,9148:32583028,30600702:20577776 +g1,9148:32583028,30600702 +) +(1,9161:6630773,31332416:25952256,404226,107478 +(1,9150:6630773,31332416:0,0,0 +g1,9150:6630773,31332416 +g1,9150:6630773,31332416 +g1,9150:6303093,31332416 +(1,9150:6303093,31332416:0,0,0 +) +g1,9150:6630773,31332416 +) +g1,9161:7579210,31332416 +g1,9161:7895356,31332416 +g1,9161:8211502,31332416 +g1,9161:8527648,31332416 +g1,9161:8843794,31332416 +g1,9161:9159940,31332416 +g1,9161:9476086,31332416 +g1,9161:9792232,31332416 +g1,9161:10108378,31332416 +g1,9161:10424524,31332416 +g1,9161:12637544,31332416 +g1,9161:12953690,31332416 +g1,9161:13269836,31332416 +g1,9161:13585982,31332416 +g1,9161:13902128,31332416 +g1,9161:14218274,31332416 +g1,9161:14534420,31332416 +g1,9161:17695877,31332416 +g1,9161:18012023,31332416 +g1,9161:18328169,31332416 +g1,9161:18644315,31332416 +g1,9161:18960461,31332416 +g1,9161:19276607,31332416 +g1,9161:19592753,31332416 +g1,9161:19908899,31332416 +g1,9161:22754210,31332416 +g1,9161:23070356,31332416 +g1,9161:23386502,31332416 +g1,9161:23702648,31332416 +g1,9161:24018794,31332416 +g1,9161:24334940,31332416 +g1,9161:24651086,31332416 +g1,9161:24967232,31332416 +g1,9161:25283378,31332416 +g1,9161:25599524,31332416 +g1,9161:27812544,31332416 +g1,9161:28128690,31332416 +g1,9161:28444836,31332416 +g1,9161:28760982,31332416 +g1,9161:29077128,31332416 +g1,9161:29393274,31332416 +g1,9161:29709420,31332416 +h1,9161:32554731,31332416:0,0,0 +k1,9161:32583029,31332416:28298 +g1,9161:32583029,31332416 +) +(1,9161:6630773,31998594:25952256,388497,9436 +h1,9161:6630773,31998594:0,0,0 +g1,9161:7579210,31998594 +g1,9161:7895356,31998594 +g1,9161:8211502,31998594 +g1,9161:8527648,31998594 +g1,9161:8843794,31998594 +g1,9161:9159940,31998594 +g1,9161:9476086,31998594 +g1,9161:9792232,31998594 +g1,9161:10108378,31998594 +g1,9161:10424524,31998594 +g1,9161:10740670,31998594 +g1,9161:11056816,31998594 +g1,9161:11372962,31998594 +g1,9161:11689108,31998594 +g1,9161:12005254,31998594 +g1,9161:12637546,31998594 +g1,9161:12953692,31998594 +g1,9161:13269838,31998594 +g1,9161:13585984,31998594 +g1,9161:13902130,31998594 +g1,9161:14218276,31998594 +g1,9161:14534422,31998594 +g1,9161:14850568,31998594 +g1,9161:15166714,31998594 +g1,9161:15482860,31998594 +g1,9161:15799006,31998594 +g1,9161:16115152,31998594 +g1,9161:16431298,31998594 +g1,9161:16747444,31998594 +g1,9161:17063590,31998594 +g1,9161:17695882,31998594 +g1,9161:18012028,31998594 +g1,9161:18328174,31998594 +g1,9161:18644320,31998594 +g1,9161:18960466,31998594 +g1,9161:19276612,31998594 +g1,9161:19592758,31998594 +g1,9161:19908904,31998594 +g1,9161:20225050,31998594 +g1,9161:20541196,31998594 +g1,9161:20857342,31998594 +g1,9161:21173488,31998594 +g1,9161:21489634,31998594 +g1,9161:21805780,31998594 +g1,9161:22121926,31998594 +g1,9161:22754218,31998594 +g1,9161:23070364,31998594 +g1,9161:23386510,31998594 +g1,9161:23702656,31998594 +g1,9161:24018802,31998594 +g1,9161:24334948,31998594 +g1,9161:24651094,31998594 +g1,9161:24967240,31998594 +g1,9161:25283386,31998594 +g1,9161:25599532,31998594 +g1,9161:25915678,31998594 +g1,9161:26231824,31998594 +g1,9161:26547970,31998594 +g1,9161:26864116,31998594 +g1,9161:27180262,31998594 +g1,9161:27812554,31998594 +g1,9161:28128700,31998594 +g1,9161:28444846,31998594 +g1,9161:28760992,31998594 +g1,9161:29077138,31998594 +g1,9161:29393284,31998594 +g1,9161:29709430,31998594 +g1,9161:30025576,31998594 +g1,9161:30341722,31998594 +g1,9161:30657868,31998594 +g1,9161:30974014,31998594 +g1,9161:31290160,31998594 +g1,9161:31606306,31998594 +g1,9161:31922452,31998594 +g1,9161:32238598,31998594 +h1,9161:32554744,31998594:0,0,0 +k1,9161:32583029,31998594:28285 +g1,9161:32583029,31998594 +) +(1,9161:6630773,32664772:25952256,404226,107478 +h1,9161:6630773,32664772:0,0,0 +g1,9161:7579210,32664772 +g1,9161:7895356,32664772 +g1,9161:8211502,32664772 +g1,9161:8527648,32664772 +g1,9161:8843794,32664772 +g1,9161:9159940,32664772 +g1,9161:9476086,32664772 +g1,9161:9792232,32664772 +g1,9161:10108378,32664772 +g1,9161:12637544,32664772 +g1,9161:12953690,32664772 +g1,9161:13269836,32664772 +g1,9161:13585982,32664772 +g1,9161:13902128,32664772 +g1,9161:14218274,32664772 +g1,9161:17695877,32664772 +g1,9161:18012023,32664772 +g1,9161:18328169,32664772 +g1,9161:18644315,32664772 +g1,9161:18960461,32664772 +g1,9161:19276607,32664772 +g1,9161:19592753,32664772 +g1,9161:19908899,32664772 +g1,9161:20225045,32664772 +g1,9161:20541191,32664772 +g1,9161:22754211,32664772 +g1,9161:23070357,32664772 +g1,9161:23386503,32664772 +g1,9161:23702649,32664772 +g1,9161:24018795,32664772 +g1,9161:24334941,32664772 +g1,9161:24651087,32664772 +g1,9161:27812544,32664772 +g1,9161:28128690,32664772 +g1,9161:28444836,32664772 +g1,9161:28760982,32664772 +g1,9161:29077128,32664772 +g1,9161:29393274,32664772 +g1,9161:29709420,32664772 +g1,9161:30025566,32664772 +g1,9161:30341712,32664772 +h1,9161:32554732,32664772:0,0,0 +k1,9161:32583029,32664772:28297 +g1,9161:32583029,32664772 +) +(1,9161:6630773,33330950:25952256,388497,9436 +h1,9161:6630773,33330950:0,0,0 +g1,9161:7579210,33330950 +g1,9161:7895356,33330950 +g1,9161:8211502,33330950 +g1,9161:8527648,33330950 +g1,9161:8843794,33330950 +g1,9161:9159940,33330950 +g1,9161:9476086,33330950 +g1,9161:9792232,33330950 +g1,9161:10108378,33330950 +g1,9161:10424524,33330950 +g1,9161:10740670,33330950 +g1,9161:11056816,33330950 +g1,9161:11372962,33330950 +g1,9161:11689108,33330950 +g1,9161:12005254,33330950 +g1,9161:12637546,33330950 +g1,9161:12953692,33330950 +g1,9161:13269838,33330950 +g1,9161:13585984,33330950 +g1,9161:13902130,33330950 +g1,9161:14218276,33330950 +g1,9161:14534422,33330950 +g1,9161:14850568,33330950 +g1,9161:15166714,33330950 +g1,9161:15482860,33330950 +g1,9161:15799006,33330950 +g1,9161:16115152,33330950 +g1,9161:16431298,33330950 +g1,9161:16747444,33330950 +g1,9161:17063590,33330950 +g1,9161:17695882,33330950 +g1,9161:18012028,33330950 +g1,9161:18328174,33330950 +g1,9161:18644320,33330950 +g1,9161:18960466,33330950 +g1,9161:19276612,33330950 +g1,9161:19592758,33330950 +g1,9161:19908904,33330950 +g1,9161:20225050,33330950 +g1,9161:20541196,33330950 +g1,9161:20857342,33330950 +g1,9161:21173488,33330950 +g1,9161:21489634,33330950 +g1,9161:21805780,33330950 +g1,9161:22121926,33330950 +g1,9161:22754218,33330950 +g1,9161:23070364,33330950 +g1,9161:23386510,33330950 +g1,9161:23702656,33330950 +g1,9161:24018802,33330950 +g1,9161:24334948,33330950 +g1,9161:24651094,33330950 +g1,9161:24967240,33330950 +g1,9161:25283386,33330950 +g1,9161:25599532,33330950 +g1,9161:25915678,33330950 +g1,9161:26231824,33330950 +g1,9161:26547970,33330950 +g1,9161:26864116,33330950 +g1,9161:27180262,33330950 +g1,9161:27812554,33330950 +g1,9161:28128700,33330950 +g1,9161:28444846,33330950 +g1,9161:28760992,33330950 +g1,9161:29077138,33330950 +g1,9161:29393284,33330950 +g1,9161:29709430,33330950 +g1,9161:30025576,33330950 +g1,9161:30341722,33330950 +g1,9161:30657868,33330950 +g1,9161:30974014,33330950 +g1,9161:31290160,33330950 +g1,9161:31606306,33330950 +g1,9161:31922452,33330950 +g1,9161:32238598,33330950 +h1,9161:32554744,33330950:0,0,0 +k1,9161:32583029,33330950:28285 +g1,9161:32583029,33330950 +) +(1,9161:6630773,33997128:25952256,410518,101187 +h1,9161:6630773,33997128:0,0,0 +g1,9161:7579210,33997128 +g1,9161:9159939,33997128 +g1,9161:10108376,33997128 +g1,9161:12637542,33997128 +g1,9161:12953688,33997128 +g1,9161:13269834,33997128 +g1,9161:13585980,33997128 +g1,9161:13902126,33997128 +g1,9161:14218272,33997128 +g1,9161:14534418,33997128 +g1,9161:14850564,33997128 +g1,9161:15166710,33997128 +g1,9161:15482856,33997128 +g1,9161:17695876,33997128 +g1,9161:18012022,33997128 +g1,9161:18328168,33997128 +g1,9161:18644314,33997128 +g1,9161:18960460,33997128 +g1,9161:19276606,33997128 +g1,9161:19592752,33997128 +g1,9161:19908898,33997128 +g1,9161:20225044,33997128 +g1,9161:20541190,33997128 +g1,9161:20857336,33997128 +g1,9161:22754210,33997128 +g1,9161:23070356,33997128 +g1,9161:23386502,33997128 +g1,9161:23702648,33997128 +g1,9161:24018794,33997128 +g1,9161:24334940,33997128 +g1,9161:24651086,33997128 +g1,9161:24967232,33997128 +g1,9161:25283378,33997128 +g1,9161:25599524,33997128 +g1,9161:27812544,33997128 +g1,9161:28128690,33997128 +g1,9161:28444836,33997128 +g1,9161:28760982,33997128 +g1,9161:29077128,33997128 +g1,9161:29393274,33997128 +h1,9161:32554731,33997128:0,0,0 +k1,9161:32583029,33997128:28298 +g1,9161:32583029,33997128 +) +(1,9161:6630773,34663306:25952256,388497,9436 +h1,9161:6630773,34663306:0,0,0 +g1,9161:7579210,34663306 +g1,9161:7895356,34663306 +g1,9161:8211502,34663306 +g1,9161:8527648,34663306 +g1,9161:8843794,34663306 +g1,9161:9159940,34663306 +g1,9161:9476086,34663306 +g1,9161:9792232,34663306 +g1,9161:10108378,34663306 +g1,9161:10424524,34663306 +g1,9161:10740670,34663306 +g1,9161:11056816,34663306 +g1,9161:11372962,34663306 +g1,9161:11689108,34663306 +g1,9161:12005254,34663306 +g1,9161:12637546,34663306 +g1,9161:12953692,34663306 +g1,9161:13269838,34663306 +g1,9161:13585984,34663306 +g1,9161:13902130,34663306 +g1,9161:14218276,34663306 +g1,9161:14534422,34663306 +g1,9161:14850568,34663306 +g1,9161:15166714,34663306 +g1,9161:15482860,34663306 +g1,9161:15799006,34663306 +g1,9161:16115152,34663306 +g1,9161:16431298,34663306 +g1,9161:16747444,34663306 +g1,9161:17063590,34663306 +g1,9161:17695882,34663306 +g1,9161:18012028,34663306 +g1,9161:18328174,34663306 +g1,9161:18644320,34663306 +g1,9161:18960466,34663306 +g1,9161:19276612,34663306 +g1,9161:19592758,34663306 +g1,9161:19908904,34663306 +g1,9161:20225050,34663306 +g1,9161:20541196,34663306 +g1,9161:20857342,34663306 +g1,9161:21173488,34663306 +g1,9161:21489634,34663306 +g1,9161:21805780,34663306 +g1,9161:22121926,34663306 +g1,9161:22754218,34663306 +g1,9161:23070364,34663306 +g1,9161:23386510,34663306 +g1,9161:23702656,34663306 +g1,9161:24018802,34663306 +g1,9161:24334948,34663306 +g1,9161:24651094,34663306 +g1,9161:24967240,34663306 +g1,9161:25283386,34663306 +g1,9161:25599532,34663306 +g1,9161:25915678,34663306 +g1,9161:26231824,34663306 +g1,9161:26547970,34663306 +g1,9161:26864116,34663306 +g1,9161:27180262,34663306 +g1,9161:27812554,34663306 +g1,9161:28128700,34663306 +g1,9161:28444846,34663306 +g1,9161:28760992,34663306 +g1,9161:29077138,34663306 +g1,9161:29393284,34663306 +g1,9161:29709430,34663306 +g1,9161:30025576,34663306 +g1,9161:30341722,34663306 +g1,9161:30657868,34663306 +g1,9161:30974014,34663306 +g1,9161:31290160,34663306 +g1,9161:31606306,34663306 +g1,9161:31922452,34663306 +g1,9161:32238598,34663306 +h1,9161:32554744,34663306:0,0,0 +k1,9161:32583029,34663306:28285 +g1,9161:32583029,34663306 +) +(1,9161:6630773,35329484:25952256,404226,7863 +h1,9161:6630773,35329484:0,0,0 +g1,9161:7579210,35329484 +g1,9161:7895356,35329484 +g1,9161:8211502,35329484 +g1,9161:8527648,35329484 +g1,9161:8843794,35329484 +g1,9161:9159940,35329484 +g1,9161:9476086,35329484 +g1,9161:9792232,35329484 +g1,9161:10108378,35329484 +g1,9161:10424524,35329484 +g1,9161:10740670,35329484 +g1,9161:12637544,35329484 +g1,9161:12953690,35329484 +g1,9161:13269836,35329484 +g1,9161:13585982,35329484 +g1,9161:13902128,35329484 +g1,9161:14218274,35329484 +g1,9161:14534420,35329484 +g1,9161:14850566,35329484 +g1,9161:15166712,35329484 +g1,9161:15482858,35329484 +g1,9161:17695878,35329484 +g1,9161:18012024,35329484 +g1,9161:18328170,35329484 +g1,9161:18644316,35329484 +g1,9161:18960462,35329484 +g1,9161:19276608,35329484 +g1,9161:19592754,35329484 +g1,9161:19908900,35329484 +g1,9161:20225046,35329484 +g1,9161:20541192,35329484 +g1,9161:20857338,35329484 +g1,9161:22754212,35329484 +g1,9161:23070358,35329484 +g1,9161:23386504,35329484 +g1,9161:23702650,35329484 +g1,9161:24018796,35329484 +g1,9161:24334942,35329484 +g1,9161:24651088,35329484 +g1,9161:24967234,35329484 +g1,9161:25283380,35329484 +g1,9161:25599526,35329484 +g1,9161:25915672,35329484 +g1,9161:26231818,35329484 +g1,9161:27812547,35329484 +g1,9161:28128693,35329484 +g1,9161:28444839,35329484 +g1,9161:28760985,35329484 +g1,9161:29077131,35329484 +g1,9161:29393277,35329484 +g1,9161:29709423,35329484 +h1,9161:32554734,35329484:0,0,0 +k1,9161:32583029,35329484:28295 +g1,9161:32583029,35329484 +) +(1,9161:6630773,35995662:25952256,388497,9436 +h1,9161:6630773,35995662:0,0,0 +g1,9161:7579210,35995662 +g1,9161:7895356,35995662 +g1,9161:8211502,35995662 +g1,9161:8527648,35995662 +g1,9161:8843794,35995662 +g1,9161:9159940,35995662 +g1,9161:9476086,35995662 +g1,9161:9792232,35995662 +g1,9161:10108378,35995662 +g1,9161:10424524,35995662 +g1,9161:10740670,35995662 +g1,9161:11056816,35995662 +g1,9161:11372962,35995662 +g1,9161:11689108,35995662 +g1,9161:12005254,35995662 +g1,9161:12637546,35995662 +g1,9161:12953692,35995662 +g1,9161:13269838,35995662 +g1,9161:13585984,35995662 +g1,9161:13902130,35995662 +g1,9161:14218276,35995662 +g1,9161:14534422,35995662 +g1,9161:14850568,35995662 +g1,9161:15166714,35995662 +g1,9161:15482860,35995662 +g1,9161:15799006,35995662 +g1,9161:16115152,35995662 +g1,9161:16431298,35995662 +g1,9161:16747444,35995662 +g1,9161:17063590,35995662 +g1,9161:17695882,35995662 +g1,9161:18012028,35995662 +g1,9161:18328174,35995662 +g1,9161:18644320,35995662 +g1,9161:18960466,35995662 +g1,9161:19276612,35995662 +g1,9161:19592758,35995662 +g1,9161:19908904,35995662 +g1,9161:20225050,35995662 +g1,9161:20541196,35995662 +g1,9161:20857342,35995662 +g1,9161:21173488,35995662 +g1,9161:21489634,35995662 +g1,9161:21805780,35995662 +g1,9161:22121926,35995662 +g1,9161:22754218,35995662 +g1,9161:23070364,35995662 +g1,9161:23386510,35995662 +g1,9161:23702656,35995662 +g1,9161:24018802,35995662 +g1,9161:24334948,35995662 +g1,9161:24651094,35995662 +g1,9161:24967240,35995662 +g1,9161:25283386,35995662 +g1,9161:25599532,35995662 +g1,9161:25915678,35995662 +g1,9161:26231824,35995662 +g1,9161:26547970,35995662 +g1,9161:26864116,35995662 +g1,9161:27180262,35995662 +g1,9161:27812554,35995662 +g1,9161:28128700,35995662 +g1,9161:28444846,35995662 +g1,9161:28760992,35995662 +g1,9161:29077138,35995662 +g1,9161:29393284,35995662 +g1,9161:29709430,35995662 +g1,9161:30025576,35995662 +g1,9161:30341722,35995662 +g1,9161:30657868,35995662 +g1,9161:30974014,35995662 +g1,9161:31290160,35995662 +g1,9161:31606306,35995662 +g1,9161:31922452,35995662 +g1,9161:32238598,35995662 +h1,9161:32554744,35995662:0,0,0 +k1,9161:32583029,35995662:28285 +g1,9161:32583029,35995662 +) +(1,9161:6630773,36661840:25952256,404226,6290 +h1,9161:6630773,36661840:0,0,0 +g1,9161:7579210,36661840 +g1,9161:7895356,36661840 +g1,9161:8211502,36661840 +g1,9161:8527648,36661840 +g1,9161:8843794,36661840 +g1,9161:9159940,36661840 +g1,9161:9476086,36661840 +g1,9161:9792232,36661840 +g1,9161:10108378,36661840 +g1,9161:10424524,36661840 +h1,9161:12321398,36661840:0,0,0 +k1,9161:32583030,36661840:20261632 +g1,9161:32583030,36661840 +) +(1,9161:6630773,37328018:25952256,388497,9436 +h1,9161:6630773,37328018:0,0,0 +g1,9161:7579210,37328018 +g1,9161:7895356,37328018 +g1,9161:8211502,37328018 +g1,9161:8527648,37328018 +g1,9161:8843794,37328018 +g1,9161:9159940,37328018 +g1,9161:9476086,37328018 +g1,9161:9792232,37328018 +g1,9161:10108378,37328018 +g1,9161:10424524,37328018 +g1,9161:10740670,37328018 +g1,9161:11056816,37328018 +g1,9161:11372962,37328018 +g1,9161:11689108,37328018 +g1,9161:12005254,37328018 +h1,9161:12321400,37328018:0,0,0 +k1,9161:32583028,37328018:20261628 +g1,9161:32583028,37328018 +) +] +) +g1,9162:32583029,37337454 +g1,9162:6630773,37337454 +g1,9162:6630773,37337454 +g1,9162:32583029,37337454 +g1,9162:32583029,37337454 +) +h1,9162:6630773,37534062:0,0,0 +(1,9167:6630773,38667083:25952256,513147,134348 +h1,9165:6630773,38667083:983040,0,0 +k1,9165:8984915,38667083:174415 +k1,9165:11118857,38667083:174416 +k1,9165:14071999,38667083:174415 +k1,9165:15007943,38667083:174416 +(1,9165:15007943,38667083:0,452978,115847 +r1,9165:17828192,38667083:2820249,568825,115847 +k1,9165:15007943,38667083:-2820249 +) +(1,9165:15007943,38667083:2820249,452978,115847 +k1,9165:15007943,38667083:3277 +h1,9165:17824915,38667083:0,411205,112570 +) +k1,9165:18002607,38667083:174415 +k1,9165:20879072,38667083:174416 +k1,9165:23170955,38667083:174415 +k1,9165:24004663,38667083:174416 +k1,9165:25198163,38667083:174415 +k1,9165:27215451,38667083:174416 +k1,9165:28049158,38667083:174415 +k1,9165:29242659,38667083:174416 +k1,9165:32583029,38667083:0 +) +(1,9167:6630773,39333261:25952256,513147,134348 +g1,9165:8715473,39333261 +g1,9165:10926657,39333261 +g1,9165:13401296,39333261 +g1,9165:17856433,39333261 +g1,9165:19247107,39333261 +g1,9165:22144453,39333261 +k1,9167:32583029,39333261:10438576 +g1,9167:32583029,39333261 +) +v1,9167:6630773,40466283:0,393216,0 +(1,9182:6630773,45510161:25952256,5437094,196608 +g1,9182:6630773,45510161 +g1,9182:6630773,45510161 +g1,9182:6434165,45510161 +(1,9182:6434165,45510161:0,5437094,196608 +r1,9182:32779637,45510161:26345472,5633702,196608 +k1,9182:6434165,45510161:-26345472 +) +(1,9182:6434165,45510161:26345472,5437094,196608 +[1,9182:6630773,45510161:25952256,5240486,0 +(1,9169:6630773,40673901:25952256,404226,76021 +(1,9168:6630773,40673901:0,0,0 +g1,9168:6630773,40673901 +g1,9168:6630773,40673901 +g1,9168:6303093,40673901 +(1,9168:6303093,40673901:0,0,0 +) +g1,9168:6630773,40673901 +) +k1,9169:6630773,40673901:0 +h1,9169:8843793,40673901:0,0,0 +k1,9169:32583029,40673901:23739236 +g1,9169:32583029,40673901 +) +(1,9181:6630773,41405615:25952256,410518,6290 +(1,9171:6630773,41405615:0,0,0 +g1,9171:6630773,41405615 +g1,9171:6630773,41405615 +g1,9171:6303093,41405615 +(1,9171:6303093,41405615:0,0,0 +) +g1,9171:6630773,41405615 +) +g1,9181:7579210,41405615 +g1,9181:9159939,41405615 +g1,9181:10108376,41405615 +h1,9181:10424522,41405615:0,0,0 +k1,9181:32583030,41405615:22158508 +g1,9181:32583030,41405615 +) +(1,9181:6630773,42071793:25952256,410518,107478 +h1,9181:6630773,42071793:0,0,0 +g1,9181:7579210,42071793 +g1,9181:7895356,42071793 +g1,9181:8527648,42071793 +g1,9181:10424522,42071793 +g1,9181:10740668,42071793 +g1,9181:11056814,42071793 +g1,9181:11372960,42071793 +g1,9181:11689106,42071793 +g1,9181:12005252,42071793 +g1,9181:12637544,42071793 +g1,9181:13902127,42071793 +g1,9181:16115147,42071793 +g1,9181:17695876,42071793 +g1,9181:18644313,42071793 +g1,9181:19592750,42071793 +g1,9181:20541187,42071793 +g1,9181:21489624,42071793 +g1,9181:22754207,42071793 +g1,9181:24018790,42071793 +g1,9181:24967227,42071793 +g1,9181:25915664,42071793 +g1,9181:26864101,42071793 +g1,9181:28128684,42071793 +h1,9181:29077121,42071793:0,0,0 +k1,9181:32583029,42071793:3505908 +g1,9181:32583029,42071793 +) +(1,9181:6630773,42737971:25952256,410518,107478 +h1,9181:6630773,42737971:0,0,0 +g1,9181:7579210,42737971 +g1,9181:7895356,42737971 +g1,9181:8527648,42737971 +g1,9181:10740668,42737971 +g1,9181:11056814,42737971 +g1,9181:11372960,42737971 +g1,9181:11689106,42737971 +g1,9181:12005252,42737971 +g1,9181:12637544,42737971 +g1,9181:13902127,42737971 +g1,9181:16115147,42737971 +g1,9181:17379730,42737971 +g1,9181:18644313,42737971 +g1,9181:19908896,42737971 +g1,9181:21173479,42737971 +g1,9181:22438062,42737971 +g1,9181:23702645,42737971 +g1,9181:24967228,42737971 +g1,9181:26231811,42737971 +g1,9181:27496394,42737971 +g1,9181:28760977,42737971 +h1,9181:29709414,42737971:0,0,0 +k1,9181:32583029,42737971:2873615 +g1,9181:32583029,42737971 +) +(1,9181:6630773,43404149:25952256,410518,76021 +h1,9181:6630773,43404149:0,0,0 +g1,9181:7579210,43404149 +g1,9181:7895356,43404149 +g1,9181:8527648,43404149 +g1,9181:10424522,43404149 +g1,9181:10740668,43404149 +g1,9181:11056814,43404149 +g1,9181:11372960,43404149 +g1,9181:11689106,43404149 +g1,9181:12005252,43404149 +g1,9181:12637544,43404149 +g1,9181:13902127,43404149 +g1,9181:16115147,43404149 +g1,9181:16747439,43404149 +g1,9181:17695876,43404149 +g1,9181:18328168,43404149 +g1,9181:19276605,43404149 +g1,9181:20225042,43404149 +g1,9181:21173479,43404149 +g1,9181:21805771,43404149 +g1,9181:22754208,43404149 +g1,9181:23702645,43404149 +g1,9181:24334937,43404149 +h1,9181:25283374,43404149:0,0,0 +k1,9181:32583029,43404149:7299655 +g1,9181:32583029,43404149 +) +(1,9181:6630773,44070327:25952256,410518,76021 +h1,9181:6630773,44070327:0,0,0 +g1,9181:7579210,44070327 +g1,9181:7895356,44070327 +g1,9181:8527648,44070327 +g1,9181:10740668,44070327 +g1,9181:11056814,44070327 +g1,9181:11372960,44070327 +g1,9181:11689106,44070327 +g1,9181:12005252,44070327 +g1,9181:12637544,44070327 +g1,9181:13902127,44070327 +g1,9181:16115147,44070327 +g1,9181:18960458,44070327 +g1,9181:22754206,44070327 +g1,9181:26231809,44070327 +g1,9181:29077120,44070327 +h1,9181:30025557,44070327:0,0,0 +k1,9181:32583029,44070327:2557472 +g1,9181:32583029,44070327 +) +(1,9181:6630773,44736505:25952256,410518,101187 +h1,9181:6630773,44736505:0,0,0 +g1,9181:7579210,44736505 +g1,9181:7895356,44736505 +g1,9181:8527648,44736505 +g1,9181:10740668,44736505 +g1,9181:11056814,44736505 +g1,9181:11372960,44736505 +g1,9181:11689106,44736505 +g1,9181:12005252,44736505 +g1,9181:12637544,44736505 +g1,9181:13902127,44736505 +h1,9181:17063584,44736505:0,0,0 +k1,9181:32583029,44736505:15519445 +g1,9181:32583029,44736505 +) +(1,9181:6630773,45402683:25952256,410518,107478 +h1,9181:6630773,45402683:0,0,0 +g1,9181:7579210,45402683 +g1,9181:7895356,45402683 +g1,9181:8527648,45402683 +g1,9181:10108377,45402683 +g1,9181:10424523,45402683 +g1,9181:10740669,45402683 +g1,9181:11056815,45402683 +g1,9181:11372961,45402683 +g1,9181:11689107,45402683 +g1,9181:12005253,45402683 +g1,9181:12637545,45402683 +g1,9181:15482856,45402683 +g1,9181:18328167,45402683 +g1,9181:18960459,45402683 +h1,9181:21805770,45402683:0,0,0 +k1,9181:32583029,45402683:10777259 +g1,9181:32583029,45402683 +) +] +) +g1,9182:32583029,45510161 +g1,9182:6630773,45510161 +g1,9182:6630773,45510161 +g1,9182:32583029,45510161 +g1,9182:32583029,45510161 +) +] +(1,9182:32583029,45706769:0,0,0 +g1,9182:32583029,45706769 +) +) +] +(1,9182:6630773,47279633:25952256,0,0 +h1,9182:6630773,47279633:25952256,0,0 +) +] +h1,9182:4262630,4025873:0,0,0 ] !28606 }169 !12 {170 -[1,9201:4262630,47279633:28320399,43253760,0 -(1,9201:4262630,4025873:0,0,0 -[1,9201:-473657,4025873:25952256,0,0 -(1,9201:-473657,-710414:25952256,0,0 -h1,9201:-473657,-710414:0,0,0 -(1,9201:-473657,-710414:0,0,0 -(1,9201:-473657,-710414:0,0,0 -g1,9201:-473657,-710414 -(1,9201:-473657,-710414:65781,0,65781 -g1,9201:-407876,-710414 -[1,9201:-407876,-644633:0,0,0 +[1,9206:4262630,47279633:28320399,43253760,0 +(1,9206:4262630,4025873:0,0,0 +[1,9206:-473657,4025873:25952256,0,0 +(1,9206:-473657,-710414:25952256,0,0 +h1,9206:-473657,-710414:0,0,0 +(1,9206:-473657,-710414:0,0,0 +(1,9206:-473657,-710414:0,0,0 +g1,9206:-473657,-710414 +(1,9206:-473657,-710414:65781,0,65781 +g1,9206:-407876,-710414 +[1,9206:-407876,-644633:0,0,0 ] ) -k1,9201:-473657,-710414:-65781 +k1,9206:-473657,-710414:-65781 ) ) -k1,9201:25478599,-710414:25952256 -g1,9201:25478599,-710414 +k1,9206:25478599,-710414:25952256 +g1,9206:25478599,-710414 ) ] ) -[1,9201:6630773,47279633:25952256,43253760,0 -[1,9201:6630773,4812305:25952256,786432,0 -(1,9201:6630773,4812305:25952256,505283,134348 -(1,9201:6630773,4812305:25952256,505283,134348 -g1,9201:3078558,4812305 -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,2439708:0,1703936,0 -k1,9201:1358238,2439708:-1720320 -(1,6830:1358238,2439708:1720320,1703936,0 -(1,6830:1358238,2439708:1179648,16384,0 -r1,9201:2537886,2439708:1179648,16384,0 +[1,9206:6630773,47279633:25952256,43253760,0 +[1,9206:6630773,4812305:25952256,786432,0 +(1,9206:6630773,4812305:25952256,505283,134348 +(1,9206:6630773,4812305:25952256,505283,134348 +g1,9206:3078558,4812305 +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,2439708:0,1703936,0 +k1,9206:1358238,2439708:-1720320 +(1,6836:1358238,2439708:1720320,1703936,0 +(1,6836:1358238,2439708:1179648,16384,0 +r1,9206:2537886,2439708:1179648,16384,0 ) -g1,6830:3062174,2439708 -(1,6830:3062174,2439708:16384,1703936,0 -[1,6830:3062174,2439708:25952256,1703936,0 -(1,6830:3062174,1915420:25952256,1179648,0 -(1,6830:3062174,1915420:16384,1179648,0 -r1,9201:3078558,1915420:16384,1179648,0 +g1,6836:3062174,2439708 +(1,6836:3062174,2439708:16384,1703936,0 +[1,6836:3062174,2439708:25952256,1703936,0 +(1,6836:3062174,1915420:25952256,1179648,0 +(1,6836:3062174,1915420:16384,1179648,0 +r1,9206:3078558,1915420:16384,1179648,0 ) -k1,6830:29014430,1915420:25935872 -g1,6830:29014430,1915420 +k1,6836:29014430,1915420:25935872 +g1,6836:29014430,1915420 ) ] ) ) ) ] -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,2439708:0,1703936,0 -g1,9201:29030814,2439708 -g1,9201:36135244,2439708 -(1,6830:36135244,2439708:1720320,1703936,0 -(1,6830:36135244,2439708:16384,1703936,0 -[1,6830:36135244,2439708:25952256,1703936,0 -(1,6830:36135244,1915420:25952256,1179648,0 -(1,6830:36135244,1915420:16384,1179648,0 -r1,9201:36151628,1915420:16384,1179648,0 +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,2439708:0,1703936,0 +g1,9206:29030814,2439708 +g1,9206:36135244,2439708 +(1,6836:36135244,2439708:1720320,1703936,0 +(1,6836:36135244,2439708:16384,1703936,0 +[1,6836:36135244,2439708:25952256,1703936,0 +(1,6836:36135244,1915420:25952256,1179648,0 +(1,6836:36135244,1915420:16384,1179648,0 +r1,9206:36151628,1915420:16384,1179648,0 ) -k1,6830:62087500,1915420:25935872 -g1,6830:62087500,1915420 +k1,6836:62087500,1915420:25935872 +g1,6836:62087500,1915420 ) ] ) -g1,6830:36675916,2439708 -(1,6830:36675916,2439708:1179648,16384,0 -r1,9201:37855564,2439708:1179648,16384,0 +g1,6836:36675916,2439708 +(1,6836:36675916,2439708:1179648,16384,0 +r1,9206:37855564,2439708:1179648,16384,0 +) ) +k1,9206:3078556,2439708:-34777008 ) -k1,9201:3078556,2439708:-34777008 +] +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,49800853:0,16384,2228224 +k1,9206:1358238,49800853:-1720320 +(1,6836:1358238,49800853:1720320,16384,2228224 +(1,6836:1358238,49800853:1179648,16384,0 +r1,9206:2537886,49800853:1179648,16384,0 +) +g1,6836:3062174,49800853 +(1,6836:3062174,52029077:16384,1703936,0 +[1,6836:3062174,52029077:25952256,1703936,0 +(1,6836:3062174,51504789:25952256,1179648,0 +(1,6836:3062174,51504789:16384,1179648,0 +r1,9206:3078558,51504789:16384,1179648,0 +) +k1,6836:29014430,51504789:25935872 +g1,6836:29014430,51504789 ) ] -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,49800853:0,16384,2228224 -k1,9201:1358238,49800853:-1720320 -(1,6830:1358238,49800853:1720320,16384,2228224 -(1,6830:1358238,49800853:1179648,16384,0 -r1,9201:2537886,49800853:1179648,16384,0 ) -g1,6830:3062174,49800853 -(1,6830:3062174,52029077:16384,1703936,0 -[1,6830:3062174,52029077:25952256,1703936,0 -(1,6830:3062174,51504789:25952256,1179648,0 -(1,6830:3062174,51504789:16384,1179648,0 -r1,9201:3078558,51504789:16384,1179648,0 ) -k1,6830:29014430,51504789:25935872 -g1,6830:29014430,51504789 +) +] +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,49800853:0,16384,2228224 +g1,9206:29030814,49800853 +g1,9206:36135244,49800853 +(1,6836:36135244,49800853:1720320,16384,2228224 +(1,6836:36135244,52029077:16384,1703936,0 +[1,6836:36135244,52029077:25952256,1703936,0 +(1,6836:36135244,51504789:25952256,1179648,0 +(1,6836:36135244,51504789:16384,1179648,0 +r1,9206:36151628,51504789:16384,1179648,0 +) +k1,6836:62087500,51504789:25935872 +g1,6836:62087500,51504789 ) ] ) +g1,6836:36675916,49800853 +(1,6836:36675916,49800853:1179648,16384,0 +r1,9206:37855564,49800853:1179648,16384,0 ) ) +k1,9206:3078556,49800853:-34777008 +) ] -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,49800853:0,16384,2228224 -g1,9201:29030814,49800853 -g1,9201:36135244,49800853 -(1,6830:36135244,49800853:1720320,16384,2228224 -(1,6830:36135244,52029077:16384,1703936,0 -[1,6830:36135244,52029077:25952256,1703936,0 -(1,6830:36135244,51504789:25952256,1179648,0 -(1,6830:36135244,51504789:16384,1179648,0 -r1,9201:36151628,51504789:16384,1179648,0 +g1,9206:6630773,4812305 +g1,9206:6630773,4812305 +g1,9206:9205682,4812305 +g1,9206:11846782,4812305 +k1,9206:31387652,4812305:19540870 ) -k1,6830:62087500,51504789:25935872 -g1,6830:62087500,51504789 ) ] +[1,9206:6630773,45706769:25952256,40108032,0 +(1,9206:6630773,45706769:25952256,40108032,0 +(1,9206:6630773,45706769:0,0,0 +g1,9206:6630773,45706769 +) +[1,9206:6630773,45706769:25952256,40108032,0 +v1,9182:6630773,6254097:0,393216,0 +(1,9182:6630773,7216497:25952256,1355616,196608 +g1,9182:6630773,7216497 +g1,9182:6630773,7216497 +g1,9182:6434165,7216497 +(1,9182:6434165,7216497:0,1355616,196608 +r1,9182:32779637,7216497:26345472,1552224,196608 +k1,9182:6434165,7216497:-26345472 ) -g1,6830:36675916,49800853 -(1,6830:36675916,49800853:1179648,16384,0 -r1,9201:37855564,49800853:1179648,16384,0 +(1,9182:6434165,7216497:26345472,1355616,196608 +[1,9182:6630773,7216497:25952256,1159008,0 +(1,9181:6630773,6468007:25952256,410518,31456 +h1,9181:6630773,6468007:0,0,0 +g1,9181:7579210,6468007 +g1,9181:7895356,6468007 +g1,9181:8527648,6468007 +g1,9181:12637542,6468007 +h1,9181:13902125,6468007:0,0,0 +k1,9181:32583029,6468007:18680904 +g1,9181:32583029,6468007 ) +(1,9181:6630773,7134185:25952256,404226,82312 +h1,9181:6630773,7134185:0,0,0 +g1,9181:7579210,7134185 +g1,9181:7895356,7134185 +g1,9181:8527648,7134185 +g1,9181:11056814,7134185 +g1,9181:14218271,7134185 +g1,9181:15482854,7134185 +h1,9181:18012019,7134185:0,0,0 +k1,9181:32583029,7134185:14571010 +g1,9181:32583029,7134185 ) -k1,9201:3078556,49800853:-34777008 +] +) +g1,9182:32583029,7216497 +g1,9182:6630773,7216497 +g1,9182:6630773,7216497 +g1,9182:32583029,7216497 +g1,9182:32583029,7216497 +) +h1,9182:6630773,7413105:0,0,0 +(1,9196:6630773,10744961:25952256,32768,229376 +(1,9196:6630773,10744961:0,32768,229376 +(1,9196:6630773,10744961:5505024,32768,229376 +r1,9196:12135797,10744961:5505024,262144,229376 +) +k1,9196:6630773,10744961:-5505024 +) +(1,9196:6630773,10744961:25952256,32768,0 +r1,9196:32583029,10744961:25952256,32768,0 +) +) +(1,9196:6630773,12349289:25952256,606339,161218 +(1,9196:6630773,12349289:2464678,582746,0 +g1,9196:6630773,12349289 +g1,9196:9095451,12349289 +) +g1,9196:12303307,12349289 +k1,9196:32583029,12349289:17283416 +g1,9196:32583029,12349289 +) +(1,9199:6630773,13583993:25952256,513147,134348 +k1,9198:8257650,13583993:276835 +k1,9198:10522847,13583993:276835 +k1,9198:12025860,13583993:276834 +k1,9198:14215036,13583993:276835 +k1,9198:15301241,13583993:276835 +k1,9198:18605184,13583993:276835 +k1,9198:21857353,13583993:276834 +k1,9198:22490048,13583993:276835 +k1,9198:25252664,13583993:276835 +k1,9198:28687679,13583993:276835 +k1,9198:30155958,13583993:276834 +k1,9198:32168186,13583993:276835 +k1,9199:32583029,13583993:0 +) +(1,9199:6630773,14425481:25952256,513147,126483 +k1,9198:7871954,14425481:293530 +k1,9198:11330873,14425481:293530 +k1,9198:12615963,14425481:293530 +(1,9198:12615963,14425481:3117548,505283,11795 +) +k1,9198:16027041,14425481:293530 +(1,9198:16234135,14425481:3117548,505283,11795 +) +k1,9198:19852308,14425481:293531 +k1,9198:21337283,14425481:293530 +(1,9198:21337283,14425481:4118938,505283,11795 +) +k1,9198:25749751,14425481:293530 +(1,9198:25956845,14425481:4118938,505283,11795 +) +k1,9198:30750642,14425481:294095 +k1,9198:32583029,14425481:0 +) +(1,9199:6630773,15266969:25952256,513147,134348 +k1,9198:9910350,15266969:287858 +k1,9198:10857501,15266969:287859 +k1,9198:13057700,15266969:287858 +k1,9198:17060795,15266969:287859 +k1,9198:20432777,15266969:287858 +k1,9198:25114825,15266969:287859 +k1,9198:26018721,15266969:287858 +k1,9198:26721334,15266969:287770 +k1,9198:28000752,15266969:287858 +(1,9198:28000752,15266969:4582277,505283,134348 +) +k1,9198:32583029,15266969:0 +) +(1,9199:6630773,16108457:25952256,505283,134348 +(1,9198:6837867,16108457:4582277,505283,134348 +) +k1,9198:12069349,16108457:268441 +(1,9198:12069349,16108457:3851551,505283,11795 +) +k1,9198:16189134,16108457:268234 +(1,9198:16396228,16108457:3851551,505283,11795 +) +k1,9198:20723107,16108457:268234 +k1,9198:22182787,16108457:268235 +(1,9198:22182787,16108457:3211919,485622,11795 +) +k1,9198:25662940,16108457:268234 +(1,9198:25870034,16108457:3211919,485622,11795 +) +k1,9198:29731365,16108457:268648 +k1,9198:31593435,16108457:268234 +k1,9199:32583029,16108457:0 +) +(1,9199:6630773,16949945:25952256,513147,126483 +k1,9198:9248609,16949945:388301 +k1,9198:11549250,16949945:388300 +k1,9198:12929111,16949945:388301 +k1,9198:16101380,16949945:388300 +k1,9198:17883632,16949945:388301 +k1,9198:20827182,16949945:388301 +k1,9198:25155506,16949945:388300 +k1,9198:27886064,16949945:388301 +k1,9198:29990752,16949945:388300 +k1,9198:31038345,16949945:388301 +k1,9199:32583029,16949945:0 +) +(1,9199:6630773,17791433:25952256,513147,134348 +k1,9198:8383337,17791433:383517 +k1,9198:9382891,17791433:383516 +k1,9198:10354921,17791433:383517 +k1,9198:13719015,17791433:383517 +k1,9198:17055584,17791433:383517 +k1,9198:21379124,17791433:383516 +k1,9198:22421933,17791433:383517 +k1,9198:23824535,17791433:383517 +k1,9198:26992676,17791433:383516 +k1,9198:29409120,17791433:383517 +k1,9198:32583029,17791433:0 +) +(1,9199:6630773,18632921:25952256,513147,126483 +k1,9198:7598084,18632921:351273 +k1,9198:9152598,18632921:351273 +k1,9198:12095164,18632921:351272 +k1,9198:14135955,18632921:351273 +k1,9198:17478947,18632921:351273 +k1,9198:18489512,18632921:351273 +k1,9198:20753126,18632921:351273 +k1,9198:22498350,18632921:351273 +k1,9198:24709534,18632921:351272 +k1,9198:26887295,18632921:351273 +k1,9198:28230128,18632921:351273 +(1,9198:28230128,18632921:4352901,505283,126483 +) +k1,9198:32583029,18632921:0 +) +(1,9199:6630773,19474409:25952256,513147,126483 +(1,9198:6837867,19474409:4352901,505283,126483 +) +k1,9198:11749098,19474409:351236 +k1,9198:13291779,19474409:351236 +k1,9198:14662100,19474409:351236 +k1,9198:17103279,19474409:351236 +k1,9198:20433782,19474409:351236 +(1,9198:20433782,19474409:4632085,505283,11795 +) +k1,9198:25417103,19474409:351236 +(1,9198:25624197,19474409:4632085,505283,11795 +) +k1,9198:30989193,19474409:352147 +k1,9198:32583029,19474409:0 +) +(1,9199:6630773,20315897:25952256,513147,134348 +k1,9198:9279902,20315897:251822 +k1,9198:11444065,20315897:251822 +k1,9198:12687447,20315897:251822 +k1,9198:14225085,20315897:251822 +k1,9198:17260876,20315897:251822 +k1,9198:19080319,20315897:251822 +k1,9198:21217612,20315897:251822 +k1,9198:21825294,20315897:251822 +k1,9198:23210234,20315897:251822 +k1,9198:27231031,20315897:251822 +k1,9198:28430504,20315897:251822 +k1,9198:30957736,20315897:251822 +k1,9199:32583029,20315897:0 +) +(1,9199:6630773,21157385:25952256,505283,134348 +k1,9198:7927623,21157385:306601 +k1,9198:9225784,21157385:306601 +(1,9198:9225784,21157385:3851551,505283,11795 +) +k1,9198:13383936,21157385:306601 +(1,9198:13591030,21157385:3851551,505283,11795 +) +k1,9198:18130267,21157385:306922 +(1,9198:18130267,21157385:4417127,485622,126483 +) +k1,9198:22853995,21157385:306601 +(1,9198:23061089,21157385:4417127,485622,126483 +) +k1,9198:28165902,21157385:306922 +(1,9198:28165902,21157385:4417127,485622,126483 +) +k1,9198:32583029,21157385:0 +) +(1,9199:6630773,21998873:25952256,505283,126483 +(1,9198:6837867,21998873:4417127,485622,126483 +) +g1,9198:11834987,21998873 +(1,9198:11834987,21998873:4394189,505283,11795 +) +g1,9198:16428405,21998873 +(1,9198:16635499,21998873:4394189,505283,11795 +) +g1,9198:21436011,21998873 +g1,9198:22826685,21998873 +(1,9198:22826685,21998873:3495035,505283,11795 +) +g1,9198:26520949,21998873 +(1,9198:26728043,21998873:3495035,505283,11795 +) +k1,9199:32583029,21998873:1979187 +g1,9199:32583029,21998873 ) ] -g1,9201:6630773,4812305 -g1,9201:6630773,4812305 -g1,9201:9205682,4812305 -g1,9201:11846782,4812305 -k1,9201:31387652,4812305:19540870 +(1,9206:32583029,45706769:0,0,0 +g1,9206:32583029,45706769 ) ) ] -[1,9201:6630773,45706769:25952256,40108032,0 -(1,9201:6630773,45706769:25952256,40108032,0 -(1,9201:6630773,45706769:0,0,0 -g1,9201:6630773,45706769 +(1,9206:6630773,47279633:25952256,0,0 +h1,9206:6630773,47279633:25952256,0,0 ) -[1,9201:6630773,45706769:25952256,40108032,0 -v1,9177:6630773,6254097:0,393216,0 -(1,9177:6630773,7216497:25952256,1355616,196608 -g1,9177:6630773,7216497 -g1,9177:6630773,7216497 -g1,9177:6434165,7216497 -(1,9177:6434165,7216497:0,1355616,196608 -r1,9177:32779637,7216497:26345472,1552224,196608 -k1,9177:6434165,7216497:-26345472 -) -(1,9177:6434165,7216497:26345472,1355616,196608 -[1,9177:6630773,7216497:25952256,1159008,0 -(1,9176:6630773,6468007:25952256,410518,31456 -h1,9176:6630773,6468007:0,0,0 -g1,9176:7579210,6468007 -g1,9176:7895356,6468007 -g1,9176:8527648,6468007 -g1,9176:12637542,6468007 -h1,9176:13902125,6468007:0,0,0 -k1,9176:32583029,6468007:18680904 -g1,9176:32583029,6468007 -) -(1,9176:6630773,7134185:25952256,404226,82312 -h1,9176:6630773,7134185:0,0,0 -g1,9176:7579210,7134185 -g1,9176:7895356,7134185 -g1,9176:8527648,7134185 -g1,9176:11056814,7134185 -g1,9176:14218271,7134185 -g1,9176:15482854,7134185 -h1,9176:18012019,7134185:0,0,0 -k1,9176:32583029,7134185:14571010 -g1,9176:32583029,7134185 -) -] -) -g1,9177:32583029,7216497 -g1,9177:6630773,7216497 -g1,9177:6630773,7216497 -g1,9177:32583029,7216497 -g1,9177:32583029,7216497 -) -h1,9177:6630773,7413105:0,0,0 -(1,9191:6630773,10744961:25952256,32768,229376 -(1,9191:6630773,10744961:0,32768,229376 -(1,9191:6630773,10744961:5505024,32768,229376 -r1,9191:12135797,10744961:5505024,262144,229376 -) -k1,9191:6630773,10744961:-5505024 -) -(1,9191:6630773,10744961:25952256,32768,0 -r1,9191:32583029,10744961:25952256,32768,0 -) -) -(1,9191:6630773,12349289:25952256,606339,161218 -(1,9191:6630773,12349289:2464678,582746,0 -g1,9191:6630773,12349289 -g1,9191:9095451,12349289 -) -g1,9191:12303307,12349289 -k1,9191:32583029,12349289:17283416 -g1,9191:32583029,12349289 -) -(1,9194:6630773,13583993:25952256,513147,134348 -k1,9193:8257650,13583993:276835 -k1,9193:10522847,13583993:276835 -k1,9193:12025860,13583993:276834 -k1,9193:14215036,13583993:276835 -k1,9193:15301241,13583993:276835 -k1,9193:18605184,13583993:276835 -k1,9193:21857353,13583993:276834 -k1,9193:22490048,13583993:276835 -k1,9193:25252664,13583993:276835 -k1,9193:28687679,13583993:276835 -k1,9193:30155958,13583993:276834 -k1,9193:32168186,13583993:276835 -k1,9194:32583029,13583993:0 -) -(1,9194:6630773,14425481:25952256,513147,126483 -k1,9193:7817296,14425481:238872 -k1,9193:11221557,14425481:238872 -k1,9193:12451989,14425481:238872 -k1,9193:15889673,14425481:238872 -k1,9193:18882368,14425481:238872 -k1,9193:20770125,14425481:238871 -k1,9193:21613239,14425481:238872 -k1,9193:22586849,14425481:238951 -k1,9193:24626650,14425481:238872 -k1,9193:26056967,14425481:238872 -k1,9193:28689214,14425481:238872 -k1,9193:31658971,14425481:238872 -k1,9193:32583029,14425481:0 -) -(1,9194:6630773,15266969:25952256,513147,134348 -k1,9193:9264509,15266969:240361 -k1,9193:11816980,15266969:240361 -k1,9193:14666985,15266969:240361 -k1,9193:16098791,15266969:240361 -k1,9193:18295402,15266969:240361 -k1,9193:20510610,15266969:240608 -k1,9193:22583358,15266969:240361 -k1,9193:25815438,15266969:240361 -k1,9193:26715091,15266969:240361 -k1,9193:28867793,15266969:240361 -k1,9193:32583029,15266969:0 -) -(1,9194:6630773,16108457:25952256,505283,134348 -k1,9193:9936643,16108457:221746 -k1,9193:14552578,16108457:221746 -k1,9193:15390362,16108457:221746 -k1,9193:16026928,16108457:221723 -k1,9193:17240234,16108457:221746 -k1,9193:21400037,16108457:221745 -k1,9193:24352668,16108457:221746 -k1,9193:25937563,16108457:221746 -k1,9193:26608886,16108457:221746 -k1,9193:29897062,16108457:221746 -k1,9193:32093475,16108457:221813 -k1,9193:32583029,16108457:0 -) -(1,9194:6630773,16949945:25952256,513147,134348 -k1,9193:10101390,16949945:260008 -k1,9193:10977436,16949945:260008 -k1,9193:14267829,16949945:260008 -k1,9193:17300664,16949945:260007 -k1,9193:19322935,16949945:260008 -k1,9193:20032520,16949945:260008 -k1,9193:21072528,16949945:260129 -k1,9193:21861534,16949945:260130 -k1,9193:24200344,16949945:260008 -k1,9193:25651796,16949945:260007 -k1,9193:28581085,16949945:260008 -k1,9193:30642022,16949945:260008 -k1,9193:32093475,16949945:260008 -k1,9193:32583029,16949945:0 -) -(1,9194:6630773,17791433:25952256,505283,134348 -k1,9193:10124424,17791433:236512 -k1,9193:12196598,17791433:236511 -k1,9193:13032764,17791433:236512 -k1,9193:13718852,17791433:236511 -k1,9193:15695345,17791433:236512 -k1,9193:16536098,17791433:236511 -k1,9193:17507343,17791433:236586 -k1,9193:19718678,17791433:236735 -k1,9193:21549026,17791433:236512 -k1,9193:24791673,17791433:236511 -k1,9193:26940526,17791433:236512 -k1,9193:28168597,17791433:236511 -k1,9193:31189078,17791433:236512 -k1,9193:32583029,17791433:0 -) -(1,9194:6630773,18632921:25952256,513147,134348 -k1,9193:9420510,18632921:234488 -k1,9193:13595022,18632921:234488 -k1,9193:16171766,18632921:234487 -k1,9193:18122642,18632921:234488 -k1,9193:19016422,18632921:234488 -k1,9193:21951649,18632921:234488 -k1,9193:22802175,18632921:234488 -k1,9193:23625175,18632921:234487 -k1,9193:26840240,18632921:234488 -k1,9193:30027780,18632921:234488 -k1,9194:32583029,18632921:0 -) -(1,9194:6630773,19474409:25952256,513147,126483 -k1,9193:8480308,19474409:251767 -k1,9193:9391368,19474409:251768 -k1,9193:10662220,19474409:251767 -k1,9193:13698612,19474409:251767 -k1,9193:15983306,19474409:251767 -k1,9193:19408983,19474409:251768 -k1,9193:20276788,19474409:251767 -k1,9193:21731796,19474409:251767 -k1,9193:24574857,19474409:251767 -k1,9193:26516143,19474409:251768 -k1,9193:29759629,19474409:251767 -k1,9193:30670688,19474409:251767 -k1,9193:32583029,19474409:0 -) -(1,9194:6630773,20315897:25952256,513147,126483 -k1,9193:8217601,20315897:192877 -k1,9193:10270391,20315897:192878 -k1,9193:12289756,20315897:192877 -k1,9193:13474194,20315897:192878 -k1,9193:14854583,20315897:192877 -k1,9193:15497037,20315897:192877 -k1,9193:17210350,20315897:192878 -k1,9193:20144598,20315897:192877 -k1,9193:22138404,20315897:192877 -k1,9193:23522727,20315897:192878 -k1,9193:24734689,20315897:192877 -k1,9193:27017510,20315897:192878 -k1,9193:30189654,20315897:192877 -k1,9193:32583029,20315897:0 -) -(1,9194:6630773,21157385:25952256,513147,126483 -k1,9193:9254823,21157385:220845 -k1,9193:12206554,21157385:220846 -k1,9193:13790548,21157385:220845 -k1,9193:14422304,21157385:220845 -k1,9193:17709579,21157385:220845 -k1,9193:19121870,21157385:220846 -k1,9193:21323213,21157385:220845 -k1,9193:23518788,21157385:220975 -k1,9193:25333469,21157385:220845 -k1,9193:27951621,21157385:220845 -k1,9193:30084808,21157385:220846 -k1,9193:31297213,21157385:220845 -k1,9193:32583029,21157385:0 -) -(1,9194:6630773,21998873:25952256,513147,134348 -k1,9193:9620580,21998873:205838 -k1,9193:11394038,21998873:205837 -k1,9193:13485347,21998873:205838 -k1,9193:14047045,21998873:205838 -k1,9193:15386000,21998873:205837 -k1,9193:19360813,21998873:205838 -k1,9193:20514302,21998873:205838 -k1,9193:22995549,21998873:205837 -k1,9193:25603937,21998873:205838 -k1,9193:26801335,21998873:205838 -k1,9193:27910258,21998873:205837 -k1,9193:31983375,21998873:205838 -k1,9193:32583029,21998873:0 -) -(1,9194:6630773,22840361:25952256,505283,126483 -k1,9193:9254229,22840361:220251 -k1,9193:13297850,22840361:220251 -k1,9193:16140851,22840361:220250 -k1,9193:17724251,22840361:220251 -k1,9193:18394079,22840361:220251 -k1,9193:19394251,22840361:220293 -k1,9193:21693304,22840361:220251 -k1,9193:23105000,22840361:220251 -k1,9193:25994531,22840361:220250 -k1,9193:28189445,22840361:220314 -k1,9193:30433448,22840361:220251 -k1,9193:32583029,22840361:0 -) -(1,9194:6630773,23681849:25952256,505283,134348 -k1,9193:8160135,23681849:166213 -k1,9193:8775924,23681849:166212 -k1,9193:11746423,23681849:166213 -k1,9193:13887335,23681849:166312 -k1,9193:17142260,23681849:166213 -k1,9193:18294133,23681849:166212 -k1,9193:20298631,23681849:166213 -k1,9193:22377840,23681849:166213 -k1,9193:23907201,23681849:166212 -k1,9193:24696826,23681849:166378 -k1,9193:28524534,23681849:166212 -k1,9193:30702801,23681849:166312 -k1,9193:32583029,23681849:0 -) -(1,9194:6630773,24523337:25952256,513147,134348 -k1,9193:8820167,24523337:200376 -k1,9193:10230992,24523337:200375 -k1,9193:15136198,24523337:200376 -k1,9193:18572741,24523337:200375 -k1,9193:20997409,24523337:200376 -k1,9193:24002070,24523337:200375 -k1,9193:26177049,24523337:200379 -k1,9193:30433448,24523337:200376 -k1,9193:32583029,24523337:0 -) -(1,9194:6630773,25364825:25952256,505283,95026 -k1,9193:7453850,25364825:220146 -k1,9193:8033789,25364825:220146 -k1,9193:9464385,25364825:220146 -k1,9193:11542477,25364825:220146 -k1,9193:14607541,25364825:220146 -k1,9193:16019133,25364825:220147 -k1,9193:17928797,25364825:220146 -k1,9193:19949872,25364825:220146 -k1,9193:21361463,25364825:220146 -k1,9193:25344031,25364825:220146 -k1,9193:28167267,25364825:220146 -k1,9193:30559932,25364825:220146 -k1,9193:32583029,25364825:0 -) -(1,9194:6630773,26206313:25952256,505283,95026 -k1,9194:32583029,26206313:23977656 -g1,9194:32583029,26206313 -) -] -(1,9201:32583029,45706769:0,0,0 -g1,9201:32583029,45706769 -) -) -] -(1,9201:6630773,47279633:25952256,0,0 -h1,9201:6630773,47279633:25952256,0,0 -) -] -h1,9201:4262630,4025873:0,0,0 -] -!12070 +] +h1,9206:4262630,4025873:0,0,0 +] +!10324 }170 !12 {171 -[1,9201:4262630,47279633:28320399,43253760,0 -(1,9201:4262630,4025873:0,0,0 -[1,9201:-473657,4025873:25952256,0,0 -(1,9201:-473657,-710414:25952256,0,0 -h1,9201:-473657,-710414:0,0,0 -(1,9201:-473657,-710414:0,0,0 -(1,9201:-473657,-710414:0,0,0 -g1,9201:-473657,-710414 -(1,9201:-473657,-710414:65781,0,65781 -g1,9201:-407876,-710414 -[1,9201:-407876,-644633:0,0,0 +[1,9206:4262630,47279633:28320399,43253760,0 +(1,9206:4262630,4025873:0,0,0 +[1,9206:-473657,4025873:25952256,0,0 +(1,9206:-473657,-710414:25952256,0,0 +h1,9206:-473657,-710414:0,0,0 +(1,9206:-473657,-710414:0,0,0 +(1,9206:-473657,-710414:0,0,0 +g1,9206:-473657,-710414 +(1,9206:-473657,-710414:65781,0,65781 +g1,9206:-407876,-710414 +[1,9206:-407876,-644633:0,0,0 ] ) -k1,9201:-473657,-710414:-65781 +k1,9206:-473657,-710414:-65781 ) ) -k1,9201:25478599,-710414:25952256 -g1,9201:25478599,-710414 +k1,9206:25478599,-710414:25952256 +g1,9206:25478599,-710414 ) ] ) -[1,9201:6630773,47279633:25952256,43253760,0 -[1,9201:6630773,4812305:25952256,786432,0 -(1,9201:6630773,4812305:25952256,0,0 -(1,9201:6630773,4812305:25952256,0,0 -g1,9201:3078558,4812305 -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,2439708:0,1703936,0 -k1,9201:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9201:2537886,2439708:1179648,16384,0 +[1,9206:6630773,47279633:25952256,43253760,0 +[1,9206:6630773,4812305:25952256,786432,0 +(1,9206:6630773,4812305:25952256,0,0 +(1,9206:6630773,4812305:25952256,0,0 +g1,9206:3078558,4812305 +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,2439708:0,1703936,0 +k1,9206:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9206:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9201:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9206:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,2439708:0,1703936,0 -g1,9201:29030814,2439708 -g1,9201:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9201:36151628,1915420:16384,1179648,0 +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,2439708:0,1703936,0 +g1,9206:29030814,2439708 +g1,9206:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9206:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9201:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9206:37855564,2439708:1179648,16384,0 ) ) -k1,9201:3078556,2439708:-34777008 +k1,9206:3078556,2439708:-34777008 ) ] -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,49800853:0,16384,2228224 -k1,9201:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9201:2537886,49800853:1179648,16384,0 +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,49800853:0,16384,2228224 +k1,9206:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9206:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9201:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9206:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9201:3078558,4812305:0,0,0 -(1,9201:3078558,49800853:0,16384,2228224 -g1,9201:29030814,49800853 -g1,9201:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9201:36151628,51504789:16384,1179648,0 +[1,9206:3078558,4812305:0,0,0 +(1,9206:3078558,49800853:0,16384,2228224 +g1,9206:29030814,49800853 +g1,9206:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9206:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9201:37855564,49800853:1179648,16384,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9206:37855564,49800853:1179648,16384,0 ) ) -k1,9201:3078556,49800853:-34777008 +k1,9206:3078556,49800853:-34777008 ) ] -g1,9201:6630773,4812305 +g1,9206:6630773,4812305 ) ) ] -[1,9201:6630773,45706769:0,40108032,0 -(1,9201:6630773,45706769:0,40108032,0 -(1,9201:6630773,45706769:0,0,0 -g1,9201:6630773,45706769 +[1,9206:6630773,45706769:0,40108032,0 +(1,9206:6630773,45706769:0,40108032,0 +(1,9206:6630773,45706769:0,0,0 +g1,9206:6630773,45706769 ) -[1,9201:6630773,45706769:0,40108032,0 -h1,9201:6630773,6254097:0,0,0 +[1,9206:6630773,45706769:0,40108032,0 +h1,9206:6630773,6254097:0,0,0 ] -(1,9201:6630773,45706769:0,0,0 -g1,9201:6630773,45706769 +(1,9206:6630773,45706769:0,0,0 +g1,9206:6630773,45706769 ) ) ] -(1,9201:6630773,47279633:25952256,0,0 -h1,9201:6630773,47279633:25952256,0,0 +(1,9206:6630773,47279633:25952256,0,0 +h1,9206:6630773,47279633:25952256,0,0 ) ] -h1,9201:4262630,4025873:0,0,0 +h1,9206:4262630,4025873:0,0,0 ] !3329 }171 !11 {172 -[1,9222:4262630,47279633:28320399,43253760,11795 -(1,9222:4262630,4025873:0,0,0 -[1,9222:-473657,4025873:25952256,0,0 -(1,9222:-473657,-710414:25952256,0,0 -h1,9222:-473657,-710414:0,0,0 -(1,9222:-473657,-710414:0,0,0 -(1,9222:-473657,-710414:0,0,0 -g1,9222:-473657,-710414 -(1,9222:-473657,-710414:65781,0,65781 -g1,9222:-407876,-710414 -[1,9222:-407876,-644633:0,0,0 +[1,9227:4262630,47279633:28320399,43253760,11795 +(1,9227:4262630,4025873:0,0,0 +[1,9227:-473657,4025873:25952256,0,0 +(1,9227:-473657,-710414:25952256,0,0 +h1,9227:-473657,-710414:0,0,0 +(1,9227:-473657,-710414:0,0,0 +(1,9227:-473657,-710414:0,0,0 +g1,9227:-473657,-710414 +(1,9227:-473657,-710414:65781,0,65781 +g1,9227:-407876,-710414 +[1,9227:-407876,-644633:0,0,0 ] ) -k1,9222:-473657,-710414:-65781 +k1,9227:-473657,-710414:-65781 ) ) -k1,9222:25478599,-710414:25952256 -g1,9222:25478599,-710414 +k1,9227:25478599,-710414:25952256 +g1,9227:25478599,-710414 ) ] ) -[1,9222:6630773,47279633:25952256,43253760,11795 -[1,9222:6630773,4812305:25952256,786432,0 -(1,9222:6630773,4812305:25952256,0,0 -(1,9222:6630773,4812305:25952256,0,0 -g1,9222:3078558,4812305 -[1,9222:3078558,4812305:0,0,0 -(1,9222:3078558,2439708:0,1703936,0 -k1,9222:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9222:2537886,2439708:1179648,16384,0 +[1,9227:6630773,47279633:25952256,43253760,11795 +[1,9227:6630773,4812305:25952256,786432,0 +(1,9227:6630773,4812305:25952256,0,0 +(1,9227:6630773,4812305:25952256,0,0 +g1,9227:3078558,4812305 +[1,9227:3078558,4812305:0,0,0 +(1,9227:3078558,2439708:0,1703936,0 +k1,9227:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9227:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9222:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9227:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9222:3078558,4812305:0,0,0 -(1,9222:3078558,2439708:0,1703936,0 -g1,9222:29030814,2439708 -g1,9222:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9222:36151628,1915420:16384,1179648,0 +[1,9227:3078558,4812305:0,0,0 +(1,9227:3078558,2439708:0,1703936,0 +g1,9227:29030814,2439708 +g1,9227:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9227:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9222:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9227:37855564,2439708:1179648,16384,0 ) ) -k1,9222:3078556,2439708:-34777008 +k1,9227:3078556,2439708:-34777008 ) ] -[1,9222:3078558,4812305:0,0,0 -(1,9222:3078558,49800853:0,16384,2228224 -k1,9222:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9222:2537886,49800853:1179648,16384,0 +[1,9227:3078558,4812305:0,0,0 +(1,9227:3078558,49800853:0,16384,2228224 +k1,9227:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9227:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9222:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9227:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9222:3078558,4812305:0,0,0 -(1,9222:3078558,49800853:0,16384,2228224 -g1,9222:29030814,49800853 -g1,9222:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9222:36151628,51504789:16384,1179648,0 +[1,9227:3078558,4812305:0,0,0 +(1,9227:3078558,49800853:0,16384,2228224 +g1,9227:29030814,49800853 +g1,9227:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9227:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9222:37855564,49800853:1179648,16384,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9227:37855564,49800853:1179648,16384,0 ) ) -k1,9222:3078556,49800853:-34777008 +k1,9227:3078556,49800853:-34777008 ) ] -g1,9222:6630773,4812305 +g1,9227:6630773,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,9227:6630773,45706769:25952256,40108032,0 +(1,9227:6630773,45706769:25952256,40108032,0 +(1,9227:6630773,45706769:0,0,0 +g1,9227:6630773,45706769 ) -[1,9222:6630773,45706769:25952256,40108032,0 -[1,9201:6630773,11635422:25952256,6036685,0 -(1,9201:6630773,6604846:25952256,1137181,28311 -h1,9201:6630773,6604846:0,0,0 -k1,9201:20096848,6604846:12486181 -k1,9201:32583029,6604846:12486181 +[1,9227:6630773,45706769:25952256,40108032,0 +[1,9206:6630773,11635422:25952256,6036685,0 +(1,9206:6630773,6604846:25952256,1137181,28311 +h1,9206:6630773,6604846:0,0,0 +k1,9206:20096848,6604846:12486181 +k1,9206:32583029,6604846:12486181 ) -(1,9201:6630773,7304782:25952256,32768,229376 -(1,9201:6630773,7304782:0,32768,229376 -(1,9201:6630773,7304782:5505024,32768,229376 -r1,9201:12135797,7304782:5505024,262144,229376 +(1,9206:6630773,7304782:25952256,32768,229376 +(1,9206:6630773,7304782:0,32768,229376 +(1,9206:6630773,7304782:5505024,32768,229376 +r1,9206:12135797,7304782:5505024,262144,229376 ) -k1,9201:6630773,7304782:-5505024 +k1,9206:6630773,7304782:-5505024 ) -(1,9201:6630773,7304782:25952256,32768,0 -r1,9201:32583029,7304782:25952256,32768,0 +(1,9206:6630773,7304782:25952256,32768,0 +r1,9206:32583029,7304782:25952256,32768,0 ) ) -(1,9201:6630773,9100478:25952256,909509,241827 -h1,9201:6630773,9100478:0,0,0 -g1,9201:9126908,9100478 -g1,9201:10294760,9100478 -g1,9201:16260240,9100478 -g1,9201:20565955,9100478 -g1,9201:23229600,9100478 -k1,9201:30145877,9100478:2437153 -k1,9201:32583029,9100478:2437152 +(1,9206:6630773,9100478:25952256,909509,241827 +h1,9206:6630773,9100478:0,0,0 +g1,9206:9126908,9100478 +g1,9206:10294760,9100478 +g1,9206:16260240,9100478 +g1,9206:20729926,9100478 +g1,9206:23393571,9100478 +k1,9206:30227862,9100478:2355167 +k1,9206:32583029,9100478:2355167 ) -(1,9201:6630773,9800414:25952256,32768,0 -(1,9201:6630773,9800414:5505024,32768,0 -r1,9201:12135797,9800414:5505024,32768,0 +(1,9206:6630773,9800414:25952256,32768,0 +(1,9206:6630773,9800414:5505024,32768,0 +r1,9206:12135797,9800414:5505024,32768,0 ) -k1,9201:22359413,9800414:10223616 -k1,9201:32583029,9800414:10223616 -) -] -(1,9203:6630773,14528187:25952256,131072,0 -r1,9203:32583029,14528187:25952256,131072,0 -g1,9203:32583029,14528187 -g1,9203:32583029,14528187 -) -(1,9205:6630773,15848088:25952256,513147,134348 -k1,9205:8596853,15848088:1966080 -k1,9204:11936713,15848088:141703 -k1,9204:14411498,15848088:141703 -k1,9204:15084699,15848088:141704 -k1,9204:15582262,15848088:141703 -k1,9204:18032143,15848088:141703 -k1,9204:18833138,15848088:141703 -k1,9204:25791242,15848088:141704 -k1,9204:26952030,15848088:141703 -k1,9204:28629242,15848088:141703 -k1,9204:32583029,15848088:1966080 -) -(1,9205:6630773,16689576:25952256,513147,134348 -k1,9205:8596853,16689576:1966080 -k1,9204:9742013,16689576:197509 -k1,9204:10295382,16689576:197509 -k1,9204:13169381,16689576:197509 -k1,9204:14558335,16689576:197509 -k1,9204:17402843,16689576:197509 -k1,9204:18619437,16689576:197509 -k1,9204:22567571,16689576:197509 -k1,9204:27151405,16689576:197509 -k1,9204:32583029,16689576:1966080 -) -(1,9205:6630773,17531064:25952256,505283,7863 -g1,9205:8596853,17531064 -g1,9204:9447510,17531064 -g1,9204:11281207,17531064 -k1,9205:30616950,17531064:18703976 -g1,9205:32583030,17531064 -) -(1,9206:6630773,19158984:25952256,513147,126483 -k1,9206:19232037,19158984:12601264 -h1,9206:19232037,19158984:0,0,0 -g1,9206:21445187,19158984 -g1,9206:22276183,19158984 -g1,9206:23772370,19158984 -g1,9206:25163044,19158984 -g1,9206:27468600,19158984 -g1,9206:28344816,19158984 -g1,9206:30616949,19158984 -g1,9206:32583029,19158984 -) -(1,9207:6630773,20000472:25952256,513147,126483 -k1,9207:18169042,20000472:11538269 -h1,9206:18169042,20000472:0,0,0 -g1,9206:22210647,20000472 -g1,9206:23025914,20000472 -g1,9206:26370216,20000472 -g1,9206:29023113,20000472 -g1,9207:30616949,20000472 -g1,9207:32583029,20000472 -) -(1,9207:6630773,21235176:25952256,131072,0 -r1,9207:32583029,21235176:25952256,131072,0 -g1,9207:32583029,21235176 -g1,9207:34549109,21235176 -) -(1,9211:6630773,24042744:25952256,32768,229376 -(1,9211:6630773,24042744:0,32768,229376 -(1,9211:6630773,24042744:5505024,32768,229376 -r1,9211:12135797,24042744:5505024,262144,229376 -) -k1,9211:6630773,24042744:-5505024 -) -(1,9211:6630773,24042744:25952256,32768,0 -r1,9211:32583029,24042744:25952256,32768,0 -) -) -(1,9211:6630773,25647072:25952256,615776,151780 -(1,9211:6630773,25647072:1974731,573309,14155 -g1,9211:6630773,25647072 -g1,9211:8605504,25647072 -) -g1,9211:10904245,25647072 -g1,9211:11961996,25647072 -g1,9211:13695292,25647072 -k1,9211:32583029,25647072:15886712 -g1,9211:32583029,25647072 -) -(1,9214:6630773,26881776:25952256,513147,126483 -k1,9213:7553667,26881776:295059 -k1,9213:9882308,26881776:295059 -k1,9213:12925293,26881776:295060 -k1,9213:14088704,26881776:295059 -k1,9213:15858978,26881776:295059 -k1,9213:17529638,26881776:295059 -k1,9213:19337924,26881776:295060 -k1,9213:21066911,26881776:295059 -k1,9213:21776717,26881776:294963 -k1,9213:24851158,26881776:295059 -k1,9213:25774052,26881776:295059 -k1,9213:27272353,26881776:295060 -k1,9213:29985035,26881776:295059 -k1,9213:31450567,26881776:295059 -k1,9213:32583029,26881776:0 -) -(1,9214:6630773,27723264:25952256,513147,134348 -k1,9213:8418376,27723264:176073 -k1,9213:9924831,27723264:176074 -k1,9213:10752332,27723264:176073 -k1,9213:13252967,27723264:176073 -k1,9213:14448126,27723264:176074 -k1,9213:16404812,27723264:176073 -k1,9213:17240177,27723264:176073 -k1,9213:20021962,27723264:176074 -k1,9213:23155675,27723264:176073 -k1,9213:23959583,27723264:176073 -k1,9213:25154742,27723264:176074 -k1,9213:26636948,27723264:176073 -k1,9213:28134882,27723264:176073 -k1,9213:28970248,27723264:176074 -k1,9213:30165406,27723264:176073 -k1,9213:32583029,27723264:0 -) -(1,9214:6630773,28564752:25952256,513147,134348 -k1,9213:7744612,28564752:245487 -k1,9213:9122561,28564752:245487 -k1,9213:11106063,28564752:245487 -k1,9213:12160919,28564752:245486 -k1,9213:14141799,28564752:245487 -k1,9213:16878309,28564752:245487 -k1,9213:20034250,28564752:245487 -k1,9213:21471182,28564752:245487 -k1,9213:23047050,28564752:245487 -k1,9213:24672724,28564752:245486 -k1,9213:27242773,28564752:245487 -k1,9213:28507345,28564752:245487 -k1,9213:32583029,28564752:0 -) -(1,9214:6630773,29406240:25952256,513147,126483 -k1,9213:7588628,29406240:290699 -k1,9213:8467840,29406240:290699 -k1,9213:9386374,29406240:290699 -k1,9213:10696158,29406240:290699 -k1,9213:13228188,29406240:290699 -k1,9213:14840748,29406240:290699 -k1,9213:16301920,29406240:290699 -k1,9213:17725081,29406240:290699 -k1,9213:19627310,29406240:290699 -k1,9213:21248390,29406240:290699 -k1,9213:22190517,29406240:290699 -k1,9213:24442053,29406240:290699 -k1,9213:26015947,29406240:290699 -k1,9213:29506114,29406240:290699 -k1,9213:32583029,29406240:0 -) -(1,9214:6630773,30247728:25952256,513147,126483 -k1,9213:8065302,30247728:243084 -k1,9213:10714868,30247728:243084 -k1,9213:11911501,30247728:243084 -k1,9213:13287046,30247728:243083 -k1,9213:14596401,30247728:243084 -k1,9213:17570370,30247728:243084 -k1,9213:18832539,30247728:243084 -k1,9213:22458591,30247728:243084 -k1,9213:23773844,30247728:243084 -k1,9213:25667124,30247728:243083 -k1,9213:28916344,30247728:243084 -k1,9213:31923737,30247728:243084 -k1,9213:32583029,30247728:0 -) -(1,9214:6630773,31089216:25952256,513147,134348 -g1,9213:10053063,31089216 -g1,9213:13278089,31089216 -g1,9213:14668763,31089216 -g1,9213:17100804,31089216 -g1,9213:18567499,31089216 -g1,9213:20049923,31089216 -g1,9213:20663995,31089216 -k1,9214:32583029,31089216:8834910 -g1,9214:32583029,31089216 -) -(1,9215:6630773,33896784:25952256,32768,229376 -(1,9215:6630773,33896784:0,32768,229376 -(1,9215:6630773,33896784:5505024,32768,229376 -r1,9215:12135797,33896784:5505024,262144,229376 -) -k1,9215:6630773,33896784:-5505024 -) -(1,9215:6630773,33896784:25952256,32768,0 -r1,9215:32583029,33896784:25952256,32768,0 -) -) -(1,9215:6630773,35501112:25952256,606339,161218 -(1,9215:6630773,35501112:1974731,582746,14155 -g1,9215:6630773,35501112 -g1,9215:8605504,35501112 -) -k1,9215:32583030,35501112:20355220 -g1,9215:32583030,35501112 -) -(1,9217:6630773,36805940:25952256,564462,147783 -(1,9217:6630773,36805940:2450326,534184,12975 -g1,9217:6630773,36805940 -g1,9217:9081099,36805940 -) -g1,9217:12049749,36805940 -g1,9217:13033052,36805940 -g1,9217:17211366,36805940 -k1,9217:32583029,36805940:11465127 -g1,9217:32583029,36805940 -) -(1,9220:6630773,38040644:25952256,513147,134348 -k1,9219:7995890,38040644:168430 -k1,9219:9766019,38040644:168429 -k1,9219:12236073,38040644:168430 -k1,9219:13642478,38040644:168430 -k1,9219:14470199,38040644:168429 -k1,9219:16826221,38040644:168430 -k1,9219:18277846,38040644:168430 -k1,9219:21051986,38040644:168429 -k1,9219:21903301,38040644:168430 -k1,9219:25681454,38040644:168430 -k1,9219:26501312,38040644:168430 -k1,9219:27084554,38040644:168399 -k1,9219:27784480,38040644:168429 -k1,9219:30511436,38040644:168430 -k1,9220:32583029,38040644:0 -) -(1,9220:6630773,38882132:25952256,505283,134348 -k1,9219:8093287,38882132:236991 -k1,9219:9711122,38882132:236991 -k1,9219:10479610,38882132:236991 -k1,9219:13176823,38882132:236991 -k1,9219:15301251,38882132:236991 -k1,9219:16557327,38882132:236991 -k1,9219:18129287,38882132:236992 -k1,9219:22004181,38882132:236991 -k1,9219:23939210,38882132:236991 -k1,9219:25872928,38882132:236991 -k1,9219:29512548,38882132:236991 -k1,9219:30400967,38882132:236991 -k1,9219:31052763,38882132:236953 -k1,9219:32583029,38882132:0 -) -(1,9220:6630773,39723620:25952256,513147,102891 -k1,9219:7477779,39723620:195578 -k1,9219:8421123,39723620:195578 -k1,9219:10947817,39723620:195578 -k1,9219:14078098,39723620:195579 -k1,9219:14889714,39723620:195578 -k1,9219:16686992,39723620:195578 -k1,9219:20039439,39723620:195578 -k1,9219:20693114,39723620:195578 -k1,9219:21420189,39723620:195578 -k1,9219:22901583,39723620:195578 -k1,9219:24116247,39723620:195579 -k1,9219:25646793,39723620:195578 -k1,9219:29480274,39723620:195578 -k1,9219:30623503,39723620:195578 -k1,9220:32583029,39723620:0 -) -(1,9220:6630773,40565108:25952256,505283,134348 -k1,9219:8217751,40565108:222518 -k1,9219:9936456,40565108:222518 -k1,9219:11443480,40565108:222518 -k1,9219:12798460,40565108:222518 -k1,9219:13768744,40565108:222518 -k1,9219:16140189,40565108:222519 -k1,9219:17829403,40565108:222518 -k1,9219:18813449,40565108:222518 -k1,9219:19391827,40565108:222518 -k1,9219:21487364,40565108:222518 -k1,9219:23905993,40565108:222518 -k1,9219:25515908,40565108:222518 -k1,9219:27337504,40565108:222518 -k1,9219:27974842,40565108:222495 -k1,9219:31107814,40565108:222518 -k1,9219:32583029,40565108:0 -) -(1,9220:6630773,41406596:25952256,513147,102891 -k1,9219:8521421,41406596:223412 -k1,9219:10330804,41406596:223412 -k1,9219:12376772,41406596:223412 -k1,9219:14108823,41406596:223412 -k1,9219:17255141,41406596:223412 -k1,9219:18461593,41406596:223412 -k1,9219:21790101,41406596:223412 -k1,9219:23204958,41406596:223412 -k1,9219:28428112,41406596:223412 -k1,9219:30536995,41406596:223412 -k1,9219:32583029,41406596:0 -) -(1,9220:6630773,42248084:25952256,513147,134348 -k1,9219:7303282,42248084:214412 -k1,9219:10147654,42248084:214412 -k1,9219:12521477,42248084:214412 -k1,9219:14437859,42248084:214412 -k1,9219:16644565,42248084:214412 -k1,9219:17806628,42248084:214412 -k1,9219:19040124,42248084:214411 -k1,9219:21834688,42248084:214412 -k1,9219:26875171,42248084:214412 -k1,9219:27741011,42248084:214412 -k1,9219:28703189,42248084:214412 -k1,9219:31315563,42248084:214412 -k1,9220:32583029,42248084:0 -) -(1,9220:6630773,43089572:25952256,513147,134348 -k1,9219:7735289,43089572:185701 -k1,9219:9309043,43089572:185701 -k1,9219:11740662,43089572:185700 -k1,9219:13624401,43089572:185701 -k1,9219:14165962,43089572:185701 -k1,9219:16931815,43089572:185701 -k1,9219:17649012,43089572:185700 -k1,9219:20152721,43089572:185701 -k1,9219:21817570,43089572:185701 -k1,9219:22359131,43089572:185701 -k1,9219:23677950,43089572:185701 -k1,9219:27449125,43089572:185700 -k1,9219:30545280,43089572:185701 -k1,9219:31835263,43089572:185701 -k1,9219:32583029,43089572:0 -) -(1,9220:6630773,43931060:25952256,505283,126483 -g1,9219:9116553,43931060 -g1,9219:10040610,43931060 -g1,9219:11524345,43931060 -g1,9219:13103762,43931060 -g1,9219:14435453,43931060 -g1,9219:16231139,43931060 -g1,9219:17239738,43931060 -g1,9219:18570774,43931060 -g1,9219:21846263,43931060 -g1,9219:23964386,43931060 -g1,9219:24578458,43931060 -k1,9220:32583029,43931060:6382555 -g1,9220:32583029,43931060 -) -(1,9222:6630773,44772548:25952256,513147,134348 -h1,9221:6630773,44772548:983040,0,0 -k1,9221:10776471,44772548:297424 -k1,9221:12178177,44772548:297424 -k1,9221:13223367,44772548:297424 -k1,9221:15678236,44772548:297424 -k1,9221:16661822,44772548:297424 -k1,9221:19068196,44772548:297425 -k1,9221:20048505,44772548:297424 -k1,9221:22367715,44772548:297424 -k1,9221:25245291,44772548:297424 -k1,9221:27029727,44772548:297424 -k1,9221:28676537,44772548:297424 -k1,9221:29921612,44772548:297424 -k1,9221:32583029,44772548:0 -) -(1,9222:6630773,45614036:25952256,513147,134348 -k1,9221:9372749,45614036:183450 -k1,9221:11672357,45614036:183450 -k1,9221:14790510,45614036:183451 -k1,9221:15921611,45614036:183450 -k1,9221:18484673,45614036:183450 -k1,9221:21578577,45614036:183450 -k1,9221:23992218,45614036:183451 -k1,9221:24633765,45614036:183450 -k1,9221:25348712,45614036:183450 -k1,9221:26867130,45614036:183450 -k1,9221:27702009,45614036:183451 -k1,9221:30109096,45614036:183450 -k1,9221:31931601,45614036:183450 -k1,9221:32583029,45614036:0 -) -] -(1,9222:32583029,45706769:0,0,0 -g1,9222:32583029,45706769 -) -) -] -(1,9222:6630773,47279633:25952256,485622,11795 -(1,9222:6630773,47279633:25952256,485622,11795 -(1,9222:6630773,47279633:0,0,0 -v1,9222:6630773,47279633:0,0,0 -) -g1,9222:6830002,47279633 -k1,9222:31387652,47279633:24557650 -) -) -] -h1,9222:4262630,4025873:0,0,0 -] -!15553 +k1,9206:22359413,9800414:10223616 +k1,9206:32583029,9800414:10223616 +) +] +(1,9208:6630773,14528187:25952256,131072,0 +r1,9208:32583029,14528187:25952256,131072,0 +g1,9208:32583029,14528187 +g1,9208:32583029,14528187 +) +(1,9210:6630773,15848088:25952256,513147,134348 +k1,9210:8596853,15848088:1966080 +k1,9209:11936713,15848088:141703 +k1,9209:14411498,15848088:141703 +k1,9209:15084699,15848088:141704 +k1,9209:15582262,15848088:141703 +k1,9209:18032143,15848088:141703 +k1,9209:18833138,15848088:141703 +k1,9209:25791242,15848088:141704 +k1,9209:26952030,15848088:141703 +k1,9209:28629242,15848088:141703 +k1,9209:32583029,15848088:1966080 +) +(1,9210:6630773,16689576:25952256,513147,134348 +k1,9210:8596853,16689576:1966080 +k1,9209:9742013,16689576:197509 +k1,9209:10295382,16689576:197509 +k1,9209:13169381,16689576:197509 +k1,9209:14558335,16689576:197509 +k1,9209:17402843,16689576:197509 +k1,9209:18619437,16689576:197509 +k1,9209:22567571,16689576:197509 +k1,9209:27151405,16689576:197509 +k1,9209:32583029,16689576:1966080 +) +(1,9210:6630773,17531064:25952256,505283,7863 +g1,9210:8596853,17531064 +g1,9209:9447510,17531064 +g1,9209:11281207,17531064 +k1,9210:30616950,17531064:18703976 +g1,9210:32583030,17531064 +) +(1,9211:6630773,19158984:25952256,513147,126483 +k1,9211:19232037,19158984:12601264 +h1,9211:19232037,19158984:0,0,0 +g1,9211:21445187,19158984 +g1,9211:22276183,19158984 +g1,9211:23772370,19158984 +g1,9211:25163044,19158984 +g1,9211:27468600,19158984 +g1,9211:28344816,19158984 +g1,9211:30616949,19158984 +g1,9211:32583029,19158984 +) +(1,9212:6630773,20000472:25952256,513147,126483 +k1,9212:18169042,20000472:11538269 +h1,9211:18169042,20000472:0,0,0 +g1,9211:22210647,20000472 +g1,9211:23025914,20000472 +g1,9211:26370216,20000472 +g1,9211:29023113,20000472 +g1,9212:30616949,20000472 +g1,9212:32583029,20000472 +) +(1,9212:6630773,21235176:25952256,131072,0 +r1,9212:32583029,21235176:25952256,131072,0 +g1,9212:32583029,21235176 +g1,9212:34549109,21235176 +) +(1,9216:6630773,24042744:25952256,32768,229376 +(1,9216:6630773,24042744:0,32768,229376 +(1,9216:6630773,24042744:5505024,32768,229376 +r1,9216:12135797,24042744:5505024,262144,229376 +) +k1,9216:6630773,24042744:-5505024 +) +(1,9216:6630773,24042744:25952256,32768,0 +r1,9216:32583029,24042744:25952256,32768,0 +) +) +(1,9216:6630773,25647072:25952256,615776,151780 +(1,9216:6630773,25647072:1974731,573309,14155 +g1,9216:6630773,25647072 +g1,9216:8605504,25647072 +) +g1,9216:10904245,25647072 +g1,9216:11961996,25647072 +g1,9216:13695292,25647072 +k1,9216:32583029,25647072:15886712 +g1,9216:32583029,25647072 +) +(1,9219:6630773,26881776:25952256,513147,126483 +k1,9218:7553667,26881776:295059 +k1,9218:9882308,26881776:295059 +k1,9218:12925293,26881776:295060 +k1,9218:14088704,26881776:295059 +k1,9218:15858978,26881776:295059 +k1,9218:17529638,26881776:295059 +k1,9218:19337924,26881776:295060 +k1,9218:21066911,26881776:295059 +k1,9218:21776717,26881776:294963 +k1,9218:24851158,26881776:295059 +k1,9218:25774052,26881776:295059 +k1,9218:27272353,26881776:295060 +k1,9218:29985035,26881776:295059 +k1,9218:31450567,26881776:295059 +k1,9218:32583029,26881776:0 +) +(1,9219:6630773,27723264:25952256,513147,134348 +k1,9218:8418376,27723264:176073 +k1,9218:9924831,27723264:176074 +k1,9218:10752332,27723264:176073 +k1,9218:13252967,27723264:176073 +k1,9218:14448126,27723264:176074 +k1,9218:16404812,27723264:176073 +k1,9218:17240177,27723264:176073 +k1,9218:20021962,27723264:176074 +k1,9218:23155675,27723264:176073 +k1,9218:23959583,27723264:176073 +k1,9218:25154742,27723264:176074 +k1,9218:26636948,27723264:176073 +k1,9218:28134882,27723264:176073 +k1,9218:28970248,27723264:176074 +k1,9218:30165406,27723264:176073 +k1,9218:32583029,27723264:0 +) +(1,9219:6630773,28564752:25952256,513147,134348 +k1,9218:7744612,28564752:245487 +k1,9218:9122561,28564752:245487 +k1,9218:11106063,28564752:245487 +k1,9218:12160919,28564752:245486 +k1,9218:14141799,28564752:245487 +k1,9218:16878309,28564752:245487 +k1,9218:20034250,28564752:245487 +k1,9218:21471182,28564752:245487 +k1,9218:23047050,28564752:245487 +k1,9218:24672724,28564752:245486 +k1,9218:27242773,28564752:245487 +k1,9218:28507345,28564752:245487 +k1,9218:32583029,28564752:0 +) +(1,9219:6630773,29406240:25952256,513147,126483 +k1,9218:7588628,29406240:290699 +k1,9218:8467840,29406240:290699 +k1,9218:9386374,29406240:290699 +k1,9218:10696158,29406240:290699 +k1,9218:13228188,29406240:290699 +k1,9218:14840748,29406240:290699 +k1,9218:16301920,29406240:290699 +k1,9218:17725081,29406240:290699 +k1,9218:19627310,29406240:290699 +k1,9218:21248390,29406240:290699 +k1,9218:22190517,29406240:290699 +k1,9218:24442053,29406240:290699 +k1,9218:26015947,29406240:290699 +k1,9218:29506114,29406240:290699 +k1,9218:32583029,29406240:0 +) +(1,9219:6630773,30247728:25952256,513147,126483 +k1,9218:8065302,30247728:243084 +k1,9218:10714868,30247728:243084 +k1,9218:11911501,30247728:243084 +k1,9218:13287046,30247728:243083 +k1,9218:14596401,30247728:243084 +k1,9218:17570370,30247728:243084 +k1,9218:18832539,30247728:243084 +k1,9218:22458591,30247728:243084 +k1,9218:23773844,30247728:243084 +k1,9218:25667124,30247728:243083 +k1,9218:28916344,30247728:243084 +k1,9218:31923737,30247728:243084 +k1,9218:32583029,30247728:0 +) +(1,9219:6630773,31089216:25952256,513147,134348 +g1,9218:10053063,31089216 +g1,9218:13278089,31089216 +g1,9218:14668763,31089216 +g1,9218:17100804,31089216 +g1,9218:18567499,31089216 +g1,9218:20049923,31089216 +g1,9218:20663995,31089216 +k1,9219:32583029,31089216:8834910 +g1,9219:32583029,31089216 +) +(1,9220:6630773,33896784:25952256,32768,229376 +(1,9220:6630773,33896784:0,32768,229376 +(1,9220:6630773,33896784:5505024,32768,229376 +r1,9220:12135797,33896784:5505024,262144,229376 +) +k1,9220:6630773,33896784:-5505024 +) +(1,9220:6630773,33896784:25952256,32768,0 +r1,9220:32583029,33896784:25952256,32768,0 +) +) +(1,9220:6630773,35501112:25952256,606339,161218 +(1,9220:6630773,35501112:1974731,582746,14155 +g1,9220:6630773,35501112 +g1,9220:8605504,35501112 +) +k1,9220:32583030,35501112:20355220 +g1,9220:32583030,35501112 +) +(1,9222:6630773,36805940:25952256,564462,147783 +(1,9222:6630773,36805940:2450326,534184,12975 +g1,9222:6630773,36805940 +g1,9222:9081099,36805940 +) +g1,9222:12049749,36805940 +g1,9222:13033052,36805940 +g1,9222:17211366,36805940 +k1,9222:32583029,36805940:11465127 +g1,9222:32583029,36805940 +) +(1,9225:6630773,38040644:25952256,513147,134348 +k1,9224:8021306,38040644:193846 +k1,9224:9816853,38040644:193847 +k1,9224:12312323,38040644:193846 +k1,9224:13744145,38040644:193847 +k1,9224:14597283,38040644:193846 +k1,9224:16978722,38040644:193847 +k1,9224:18455763,38040644:193846 +k1,9224:21255321,38040644:193847 +k1,9224:22132052,38040644:193846 +k1,9224:25935622,38040644:193847 +k1,9224:26780896,38040644:193846 +k1,9224:27389580,38040644:193841 +k1,9224:28114924,38040644:193847 +k1,9224:30867296,38040644:193846 +k1,9225:32583029,38040644:0 +) +(1,9225:6630773,38882132:25952256,505283,134348 +k1,9224:8421772,38882132:209615 +k1,9224:10012231,38882132:209615 +k1,9224:10753343,38882132:209615 +k1,9224:13423180,38882132:209615 +k1,9224:15520232,38882132:209615 +k1,9224:16748932,38882132:209615 +k1,9224:18293515,38882132:209615 +k1,9224:22141033,38882132:209615 +k1,9224:24048686,38882132:209615 +k1,9224:25955028,38882132:209615 +k1,9224:29567272,38882132:209615 +k1,9224:30428315,38882132:209615 +k1,9224:31052763,38882132:209605 +k1,9224:32583029,38882132:0 +) +(1,9225:6630773,39723620:25952256,513147,102891 +k1,9224:7503198,39723620:220997 +k1,9224:8471960,39723620:220996 +k1,9224:11024073,39723620:220997 +k1,9224:14179772,39723620:220997 +k1,9224:15016807,39723620:220997 +k1,9224:16839503,39723620:220996 +k1,9224:20217369,39723620:220997 +k1,9224:20896463,39723620:220997 +k1,9224:21648956,39723620:220996 +k1,9224:23155769,39723620:220997 +k1,9224:24395851,39723620:220997 +k1,9224:25951816,39723620:220997 +k1,9224:29810715,39723620:220996 +k1,9224:30979363,39723620:220997 +k1,9225:32583029,39723620:0 +) +(1,9225:6630773,40565108:25952256,505283,134348 +k1,9224:8549886,40565108:198793 +k1,9224:10244865,40565108:198792 +k1,9224:11728164,40565108:198793 +k1,9224:13059418,40565108:198792 +k1,9224:14005977,40565108:198793 +k1,9224:16353695,40565108:198792 +k1,9224:18019184,40565108:198793 +k1,9224:18979504,40565108:198792 +k1,9224:19534157,40565108:198793 +k1,9224:21605969,40565108:198793 +k1,9224:24000872,40565108:198792 +k1,9224:25587062,40565108:198793 +k1,9224:27384932,40565108:198792 +k1,9224:27998567,40565108:198792 +k1,9224:31107814,40565108:198793 +k1,9224:32583029,40565108:0 +) +(1,9225:6630773,41406596:25952256,513147,102891 +k1,9224:8521421,41406596:223412 +k1,9224:10330804,41406596:223412 +k1,9224:12376772,41406596:223412 +k1,9224:14108823,41406596:223412 +k1,9224:17255141,41406596:223412 +k1,9224:18461593,41406596:223412 +k1,9224:21790101,41406596:223412 +k1,9224:23204958,41406596:223412 +k1,9224:28428112,41406596:223412 +k1,9224:30536995,41406596:223412 +k1,9224:32583029,41406596:0 +) +(1,9225:6630773,42248084:25952256,513147,134348 +k1,9224:7303282,42248084:214412 +k1,9224:10147654,42248084:214412 +k1,9224:12521477,42248084:214412 +k1,9224:14437859,42248084:214412 +k1,9224:16644565,42248084:214412 +k1,9224:17806628,42248084:214412 +k1,9224:19040124,42248084:214411 +k1,9224:21834688,42248084:214412 +k1,9224:26875171,42248084:214412 +k1,9224:27741011,42248084:214412 +k1,9224:28703189,42248084:214412 +k1,9224:31315563,42248084:214412 +k1,9225:32583029,42248084:0 +) +(1,9225:6630773,43089572:25952256,513147,134348 +k1,9224:7735289,43089572:185701 +k1,9224:9309043,43089572:185701 +k1,9224:11740662,43089572:185700 +k1,9224:13624401,43089572:185701 +k1,9224:14165962,43089572:185701 +k1,9224:16931815,43089572:185701 +k1,9224:17649012,43089572:185700 +k1,9224:20152721,43089572:185701 +k1,9224:21817570,43089572:185701 +k1,9224:22359131,43089572:185701 +k1,9224:23677950,43089572:185701 +k1,9224:27449125,43089572:185700 +k1,9224:30545280,43089572:185701 +k1,9224:31835263,43089572:185701 +k1,9224:32583029,43089572:0 +) +(1,9225:6630773,43931060:25952256,505283,126483 +g1,9224:9116553,43931060 +g1,9224:10040610,43931060 +g1,9224:11524345,43931060 +g1,9224:13103762,43931060 +g1,9224:14435453,43931060 +g1,9224:16231139,43931060 +g1,9224:17239738,43931060 +g1,9224:18570774,43931060 +g1,9224:21846263,43931060 +g1,9224:23964386,43931060 +g1,9224:24578458,43931060 +k1,9225:32583029,43931060:6382555 +g1,9225:32583029,43931060 +) +(1,9227:6630773,44772548:25952256,513147,134348 +h1,9226:6630773,44772548:983040,0,0 +k1,9226:10776471,44772548:297424 +k1,9226:12178177,44772548:297424 +k1,9226:13223367,44772548:297424 +k1,9226:15678236,44772548:297424 +k1,9226:16661822,44772548:297424 +k1,9226:19068196,44772548:297425 +k1,9226:20048505,44772548:297424 +k1,9226:22367715,44772548:297424 +k1,9226:25245291,44772548:297424 +k1,9226:27029727,44772548:297424 +k1,9226:28676537,44772548:297424 +k1,9226:29921612,44772548:297424 +k1,9226:32583029,44772548:0 +) +(1,9227:6630773,45614036:25952256,513147,134348 +k1,9226:9442322,45614036:253023 +k1,9226:11811504,45614036:253024 +k1,9226:14999229,45614036:253023 +k1,9226:16199904,45614036:253024 +k1,9226:18832539,45614036:253023 +k1,9226:21996017,45614036:253024 +k1,9226:24479230,45614036:253023 +k1,9226:25190350,45614036:253023 +k1,9226:25974871,45614036:253024 +k1,9226:27562862,45614036:253023 +k1,9226:28467314,45614036:253024 +k1,9226:30943974,45614036:253023 +k1,9226:32583029,45614036:0 +) +] +(1,9227:32583029,45706769:0,0,0 +g1,9227:32583029,45706769 +) +) +] +(1,9227:6630773,47279633:25952256,485622,11795 +(1,9227:6630773,47279633:25952256,485622,11795 +(1,9227:6630773,47279633:0,0,0 +v1,9227:6630773,47279633:0,0,0 +) +g1,9227:6830002,47279633 +k1,9227:31387652,47279633:24557650 +) +) +] +h1,9227:4262630,4025873:0,0,0 +] +!15522 }172 -Input:1192:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1193:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {173 -[1,9232:4262630,47279633:28320399,43253760,0 -(1,9232:4262630,4025873:0,0,0 -[1,9232:-473657,4025873:25952256,0,0 -(1,9232:-473657,-710414:25952256,0,0 -h1,9232:-473657,-710414:0,0,0 -(1,9232:-473657,-710414:0,0,0 -(1,9232:-473657,-710414:0,0,0 -g1,9232:-473657,-710414 -(1,9232:-473657,-710414:65781,0,65781 -g1,9232:-407876,-710414 -[1,9232:-407876,-644633:0,0,0 +[1,9237:4262630,47279633:28320399,43253760,0 +(1,9237:4262630,4025873:0,0,0 +[1,9237:-473657,4025873:25952256,0,0 +(1,9237:-473657,-710414:25952256,0,0 +h1,9237:-473657,-710414:0,0,0 +(1,9237:-473657,-710414:0,0,0 +(1,9237:-473657,-710414:0,0,0 +g1,9237:-473657,-710414 +(1,9237:-473657,-710414:65781,0,65781 +g1,9237:-407876,-710414 +[1,9237:-407876,-644633:0,0,0 ] ) -k1,9232:-473657,-710414:-65781 +k1,9237:-473657,-710414:-65781 ) ) -k1,9232:25478599,-710414:25952256 -g1,9232:25478599,-710414 +k1,9237:25478599,-710414:25952256 +g1,9237:25478599,-710414 ) ] ) -[1,9232:6630773,47279633:25952256,43253760,0 -[1,9232:6630773,4812305:25952256,786432,0 -(1,9232:6630773,4812305:25952256,505283,134348 -(1,9232:6630773,4812305:25952256,505283,134348 -g1,9232:3078558,4812305 -[1,9232:3078558,4812305:0,0,0 -(1,9232:3078558,2439708:0,1703936,0 -k1,9232:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9232:2537886,2439708:1179648,16384,0 +[1,9237:6630773,47279633:25952256,43253760,0 +[1,9237:6630773,4812305:25952256,786432,0 +(1,9237:6630773,4812305:25952256,505283,134348 +(1,9237:6630773,4812305:25952256,505283,134348 +g1,9237:3078558,4812305 +[1,9237:3078558,4812305:0,0,0 +(1,9237:3078558,2439708:0,1703936,0 +k1,9237:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9237:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9232:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9237:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9232:3078558,4812305:0,0,0 -(1,9232:3078558,2439708:0,1703936,0 -g1,9232:29030814,2439708 -g1,9232:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9232:36151628,1915420:16384,1179648,0 +[1,9237:3078558,4812305:0,0,0 +(1,9237:3078558,2439708:0,1703936,0 +g1,9237:29030814,2439708 +g1,9237:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9237:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9232:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9237:37855564,2439708:1179648,16384,0 ) ) -k1,9232:3078556,2439708:-34777008 +k1,9237:3078556,2439708:-34777008 ) ] -[1,9232:3078558,4812305:0,0,0 -(1,9232:3078558,49800853:0,16384,2228224 -k1,9232:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9232:2537886,49800853:1179648,16384,0 +[1,9237:3078558,4812305:0,0,0 +(1,9237:3078558,49800853:0,16384,2228224 +k1,9237:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9237:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9232:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9237:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 -) -] -) -) -) -] -[1,9232:3078558,4812305:0,0,0 -(1,9232:3078558,49800853:0,16384,2228224 -g1,9232:29030814,49800853 -g1,9232:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9232:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] -) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9232:37855564,49800853:1179648,16384,0 -) -) -k1,9232:3078556,49800853:-34777008 -) -] -g1,9232:6630773,4812305 -k1,9232:20873058,4812305:13046908 -g1,9232:22259799,4812305 -g1,9232:22908605,4812305 -g1,9232:26222760,4812305 -g1,9232:28614824,4812305 -g1,9232:30094627,4812305 -) -) -] -[1,9232:6630773,45706769:25952256,40108032,0 -(1,9232:6630773,45706769:25952256,40108032,0 -(1,9232:6630773,45706769:0,0,0 -g1,9232:6630773,45706769 -) -[1,9232:6630773,45706769:25952256,40108032,0 -(1,9222:6630773,6254097:25952256,513147,134348 -k1,9221:7196147,6254097:209514 -k1,9221:10862686,6254097:209515 -k1,9221:12268887,6254097:209514 -k1,9221:14636503,6254097:209515 -k1,9221:16821927,6254097:209514 -k1,9221:20314795,6254097:209514 -k1,9221:21191466,6254097:209515 -k1,9221:21815813,6254097:209504 -k1,9221:24935781,6254097:209514 -k1,9221:25676793,6254097:209515 -k1,9221:27754083,6254097:209514 -k1,9221:30017496,6254097:209515 -k1,9221:30997713,6254097:209514 -k1,9222:32583029,6254097:0 -) -(1,9222:6630773,7095585:25952256,513147,134348 -k1,9221:8211504,7095585:184814 -k1,9221:9343969,7095585:184814 -k1,9221:14468232,7095585:184814 -k1,9221:15098021,7095585:184800 -k1,9221:17712910,7095585:184814 -k1,9221:20764270,7095585:184815 -k1,9221:23814318,7095585:184814 -k1,9221:26783101,7095585:184814 -k1,9221:29526441,7095585:184814 -k1,9221:31591469,7095585:184800 -k1,9221:32583029,7095585:0 -) -(1,9222:6630773,7937073:25952256,513147,134348 -k1,9221:10381486,7937073:174413 -k1,9221:11207327,7937073:174413 -k1,9221:13151867,7937073:174413 -k1,9221:13942319,7937073:174414 -k1,9221:15135817,7937073:174413 -k1,9221:17080357,7937073:174413 -k1,9221:17914062,7937073:174413 -k1,9221:19154746,7937073:174413 -k1,9221:21346357,7937073:174413 -k1,9221:22652577,7937073:174413 -k1,9221:24348736,7937073:174413 -k1,9221:26001642,7937073:174414 -k1,9221:27443521,7937073:174413 -k1,9221:28637019,7937073:174413 -k1,9221:31391584,7937073:174413 -k1,9221:32583029,7937073:0 -) -(1,9222:6630773,8778561:25952256,505283,134348 -k1,9221:7923908,8778561:226864 -k1,9221:10863962,8778561:226863 -k1,9221:11773711,8778561:226864 -k1,9221:14686896,8778561:226864 -k1,9221:18993375,8778561:226863 -k1,9221:20778030,8778561:226864 -k1,9221:21996454,8778561:226864 -k1,9221:24182843,8778561:226863 -k1,9221:26127406,8778561:226864 -k1,9221:27040432,8778561:226864 -k1,9221:28647483,8778561:226863 -k1,9221:30211281,8778561:226864 -k1,9221:32583029,8778561:0 -) -(1,9222:6630773,9620049:25952256,505283,134348 -k1,9221:7712008,9620049:271865 -k1,9221:9685843,9620049:271865 -k1,9221:12868162,9620049:271865 -k1,9221:15148050,9620049:271865 -k1,9221:16916102,9620049:271865 -k1,9221:18320429,9620049:271865 -k1,9221:20832970,9620049:271865 -k1,9221:22802873,9620049:271865 -k1,9221:25885577,9620049:271865 -k1,9221:26785277,9620049:271865 -k1,9221:29524573,9620049:271865 -k1,9221:31563944,9620049:271865 -k1,9221:32583029,9620049:0 -) -(1,9222:6630773,10461537:25952256,513147,134348 -g1,9221:9315783,10461537 -g1,9221:10174304,10461537 -g1,9221:13283987,10461537 -g1,9221:16267185,10461537 -g1,9221:19024940,10461537 -g1,9221:21104397,10461537 -g1,9221:23508913,10461537 -g1,9221:24727227,10461537 -g1,9221:27092421,10461537 -k1,9222:32583029,10461537:3660187 -g1,9222:32583029,10461537 -) -(1,9224:6630773,11303025:25952256,513147,134348 -h1,9223:6630773,11303025:983040,0,0 -k1,9223:8331145,11303025:229744 -k1,9223:9661926,11303025:229776 -k1,9223:13175055,11303025:229775 -k1,9223:14352481,11303025:229775 -k1,9223:19239900,11303025:229775 -k1,9223:20863626,11303025:229775 -k1,9223:21508214,11303025:229745 -k1,9223:22269486,11303025:229775 -k1,9223:26919664,11303025:229775 -k1,9223:30511436,11303025:229775 -k1,9224:32583029,11303025:0 -) -(1,9224:6630773,12144513:25952256,505283,134348 -k1,9223:7899878,12144513:217252 -k1,9223:9401635,12144513:217251 -k1,9223:11056092,12144513:217252 -k1,9223:12940580,12144513:217252 -k1,9223:15357220,12144513:217252 -k1,9223:17269887,12144513:217251 -k1,9223:20372034,12144513:217252 -k1,9223:25059497,12144513:217252 -k1,9223:26377753,12144513:217251 -k1,9223:30205383,12144513:217252 -k1,9224:32583029,12144513:0 -) -(1,9224:6630773,12986001:25952256,513147,134348 -k1,9223:7880981,12986001:157723 -k1,9223:9230149,12986001:157723 -k1,9223:9743732,12986001:157723 -k1,9223:12147375,12986001:157724 -k1,9223:13252749,12986001:157723 -k1,9223:14906659,12986001:157723 -k1,9223:16468163,12986001:157723 -k1,9223:18688304,12986001:157723 -k1,9223:19793678,12986001:157723 -k1,9223:23035526,12986001:157724 -k1,9223:25067579,12986001:157723 -k1,9223:29672575,12986001:157723 -k1,9223:32583029,12986001:0 -) -(1,9224:6630773,13827489:25952256,505283,134348 -k1,9223:7849328,13827489:226995 -k1,9223:10860292,13827489:226995 -k1,9223:13645814,13827489:226996 -k1,9223:15753009,13827489:226967 -k1,9223:16662889,13827489:226995 -k1,9223:18591854,13827489:226995 -k1,9223:22619937,13827489:226995 -k1,9223:24038377,13827489:226995 -k1,9223:26026981,13827489:226996 -k1,9223:26866738,13827489:226995 -k1,9223:28112818,13827489:226995 -k1,9223:32583029,13827489:0 -) -(1,9224:6630773,14668977:25952256,513147,126483 -k1,9223:9432699,14668977:223740 -k1,9223:10284274,14668977:223740 -k1,9223:12200154,14668977:223740 -k1,9223:14121275,14668977:223739 -k1,9223:15515488,14668977:223740 -k1,9223:17076162,14668977:223740 -k1,9223:18830168,14668977:223740 -k1,9223:19736793,14668977:223740 -k1,9223:21509149,14668977:223740 -k1,9223:22384317,14668977:223740 -k1,9223:24577414,14668977:223740 -k1,9223:26014224,14668977:223739 -k1,9223:28133921,14668977:223740 -k1,9223:29853848,14668977:223740 -k1,9223:31645209,14668977:223740 -k1,9223:32583029,14668977:0 -) -(1,9224:6630773,15510465:25952256,505283,126483 -k1,9223:10623226,15510465:191365 -k1,9223:12308157,15510465:191365 -k1,9223:13185684,15510465:191365 -k1,9223:16041088,15510465:191365 -k1,9223:17431107,15510465:191365 -k1,9223:19508597,15510465:191364 -k1,9223:23832007,15510465:191365 -k1,9223:25089643,15510465:191365 -k1,9223:26246353,15510465:191365 -k1,9223:29686338,15510465:191365 -k1,9223:30529131,15510465:191365 -k1,9223:32583029,15510465:0 -) -(1,9224:6630773,16351953:25952256,513147,134348 -k1,9223:8607815,16351953:185288 -k1,9223:9812188,16351953:185288 -k1,9223:12577629,16351953:185289 -k1,9223:15800510,16351953:185288 -k1,9223:16854150,16351953:185288 -k1,9223:18143720,16351953:185288 -k1,9223:20298365,16351953:185288 -k1,9223:23394107,16351953:185288 -k1,9223:25993742,16351953:185289 -k1,9223:27746651,16351953:185288 -k1,9223:30363980,16351953:185288 -k1,9224:32583029,16351953:0 -) -(1,9224:6630773,17193441:25952256,513147,126483 -k1,9223:7829308,17193441:201732 -k1,9223:9222484,17193441:201731 -k1,9223:11126186,17193441:201732 -k1,9223:12824104,17193441:201731 -k1,9223:16826924,17193441:201732 -k1,9223:18883324,17193441:201731 -k1,9223:19894426,17193441:201732 -k1,9223:21178156,17193441:201731 -k1,9223:25314670,17193441:201732 -k1,9223:27084022,17193441:201731 -k1,9223:28781941,17193441:201732 -k1,9223:32583029,17193441:0 -) -(1,9224:6630773,18034929:25952256,513147,126483 -k1,9223:7859523,18034929:237190 -k1,9223:10225978,18034929:237190 -k1,9223:14386152,18034929:237189 -k1,9223:16190963,18034929:237190 -k1,9223:18867403,18034929:237190 -k1,9223:20336670,18034929:237190 -k1,9223:22823055,18034929:237189 -k1,9223:23530138,18034929:237190 -k1,9223:24298825,18034929:237190 -k1,9223:25195307,18034929:237190 -k1,9223:27541445,18034929:237189 -k1,9223:29064451,18034929:237190 -k1,9223:31931601,18034929:237190 -k1,9223:32583029,18034929:0 -) -(1,9224:6630773,18876417:25952256,513147,134348 -g1,9223:8799359,18876417 -g1,9223:11909042,18876417 -g1,9223:13675892,18876417 -g1,9223:15369342,18876417 -g1,9223:16881913,18876417 -g1,9223:18530798,18876417 -g1,9223:20243253,18876417 -g1,9223:20798342,18876417 -g1,9223:23364076,18876417 -k1,9224:32583029,18876417:5710811 -g1,9224:32583029,18876417 -) -(1,9226:6630773,19717905:25952256,513147,134348 -h1,9225:6630773,19717905:983040,0,0 -k1,9225:9116957,19717905:231746 -k1,9225:10932707,19717905:231745 -k1,9225:12402428,19717905:231746 -k1,9225:13293465,19717905:231745 -k1,9225:16126990,19717905:231746 -k1,9225:17689116,19717905:231745 -k1,9225:18939947,19717905:231746 -k1,9225:22574321,19717905:231745 -k1,9225:25656883,19717905:231746 -k1,9225:26650156,19717905:231745 -k1,9225:27237762,19717905:231746 -k1,9225:30049659,19717905:231745 -k1,9225:32051532,19717905:231746 -k1,9225:32583029,19717905:0 -) -(1,9226:6630773,20559393:25952256,513147,134348 -k1,9225:7612552,20559393:220251 -k1,9225:12432121,20559393:220252 -k1,9225:14046323,20559393:220251 -k1,9225:16079300,20559393:220251 -k1,9225:18082787,20559393:220252 -k1,9225:20038431,20559393:220251 -k1,9225:20614542,20559393:220251 -k1,9225:23530289,20559393:220251 -k1,9225:24618893,20559393:220252 -k1,9225:25830704,20559393:220251 -k1,9225:27117226,20559393:220251 -k1,9225:28302823,20559393:220252 -k1,9225:31015408,20559393:220251 -k1,9225:32583029,20559393:0 -) -(1,9226:6630773,21400881:25952256,513147,134348 -k1,9225:9211160,21400881:203396 -k1,9225:10027317,21400881:203395 -k1,9225:11019111,21400881:203396 -k1,9225:12610559,21400881:203395 -k1,9225:13465383,21400881:203396 -k1,9225:15490679,21400881:203395 -k1,9225:16460191,21400881:203396 -k1,9225:17451984,21400881:203395 -k1,9225:20261091,21400881:203396 -k1,9225:21596948,21400881:203395 -k1,9225:24124906,21400881:203396 -k1,9225:25787132,21400881:203395 -k1,9225:29175578,21400881:203396 -k1,9225:30799794,21400881:203395 -k1,9225:32583029,21400881:0 -) -(1,9226:6630773,22242369:25952256,513147,134348 -k1,9225:11619300,22242369:162456 -k1,9225:12313254,22242369:162457 -k1,9225:15234120,22242369:162456 -k1,9225:16790528,22242369:162457 -k1,9225:19863438,22242369:162456 -k1,9225:22079793,22242369:162457 -k1,9225:23931767,22242369:162456 -k1,9225:28920295,22242369:162457 -k1,9225:29742043,22242369:162456 -k1,9225:32583029,22242369:0 -) -(1,9226:6630773,23083857:25952256,513147,134348 -k1,9225:9132086,23083857:211485 -k1,9225:9875067,23083857:211484 -k1,9225:13071717,23083857:211485 -k1,9225:15034978,23083857:211484 -k1,9225:18156917,23083857:211485 -k1,9225:20879741,23083857:211484 -k1,9225:21707264,23083857:211485 -k1,9225:24758423,23083857:211484 -k1,9225:29787460,23083857:211485 -k1,9225:31379788,23083857:211484 -k1,9226:32583029,23083857:0 -) -(1,9226:6630773,23925345:25952256,513147,134348 -k1,9225:7899345,23925345:170189 -k1,9225:8752419,23925345:170189 -k1,9225:11241271,23925345:170188 -k1,9225:12097622,23925345:170189 -k1,9225:15237247,23925345:170189 -k1,9225:15877329,23925345:170189 -k1,9225:16579015,23925345:170189 -k1,9225:17815474,23925345:170188 -k1,9225:20536324,23925345:170189 -k1,9225:21357941,23925345:170189 -k1,9225:23599068,23925345:170189 -k1,9225:25654728,23925345:170189 -k1,9225:28405069,23925345:170189 -k1,9225:29226685,23925345:170188 -k1,9225:30489359,23925345:170189 -k1,9225:32227169,23925345:170189 -k1,9225:32583029,23925345:0 -) -(1,9226:6630773,24766833:25952256,513147,126483 -k1,9225:7768578,24766833:203262 -k1,9225:8631133,24766833:203263 -k1,9225:12551597,24766833:203262 -k1,9225:14609529,24766833:203263 -k1,9225:15622161,24766833:203262 -k1,9225:16844508,24766833:203262 -k1,9225:19247159,24766833:203263 -k1,9225:20109713,24766833:203262 -k1,9225:23096944,24766833:203262 -k1,9225:28299949,24766833:203263 -k1,9225:29131046,24766833:203262 -k1,9225:30353394,24766833:203263 -k1,9225:31923737,24766833:203262 -k1,9225:32583029,24766833:0 -) -(1,9226:6630773,25608321:25952256,513147,134348 -k1,9225:9785414,25608321:244187 -k1,9225:12217193,25608321:244187 -k1,9225:15428851,25608321:244188 -k1,9225:16956233,25608321:244187 -k1,9225:21449774,25608321:244187 -k1,9225:23074149,25608321:244187 -k1,9225:24655270,25608321:244187 -k1,9225:25647224,25608321:244188 -k1,9225:29862237,25608321:244187 -k1,9225:30722462,25608321:244187 -k1,9225:32583029,25608321:0 -) -(1,9226:6630773,26449809:25952256,513147,126483 -k1,9225:7450573,26449809:203762 -k1,9225:8010195,26449809:203762 -k1,9225:9969668,26449809:203763 -k1,9225:13888011,26449809:203762 -k1,9225:17083492,26449809:203762 -k1,9225:18278814,26449809:203762 -k1,9225:22538599,26449809:203762 -k1,9225:24891942,26449809:203762 -k1,9225:25698636,26449809:203763 -k1,9225:26262191,26449809:203762 -k1,9225:27676403,26449809:203762 -k1,9225:29738111,26449809:203762 -k1,9225:32583029,26449809:0 -) -(1,9226:6630773,27291297:25952256,505283,102891 -k1,9225:8038593,27291297:216375 -k1,9225:9944487,27291297:216376 -k1,9225:12135513,27291297:216426 -k1,9225:14612311,27291297:216461 -k1,9225:18652056,27291297:216375 -k1,9225:20402630,27291297:216376 -k1,9225:24669130,27291297:216375 -k1,9225:26248654,27291297:216375 -k1,9225:26914606,27291297:216375 -k1,9225:29374280,27291297:216376 -k1,9225:31391584,27291297:216375 -k1,9225:32583029,27291297:0 -) -(1,9226:6630773,28132785:25952256,513147,134348 -g1,9225:9378697,28132785 -g1,9225:11918872,28132785 -g1,9225:14928940,28132785 -g1,9225:16052227,28132785 -g1,9225:17785654,28132785 -g1,9225:20630572,28132785 -g1,9225:23961111,28132785 -g1,9225:25351785,28132785 -g1,9225:27704527,28132785 -k1,9226:32583029,28132785:2903902 -g1,9226:32583029,28132785 -) -(1,9227:6630773,30224045:25952256,555811,147783 -(1,9227:6630773,30224045:2450326,534184,12975 -g1,9227:6630773,30224045 -g1,9227:9081099,30224045 -) -g1,9227:10960475,30224045 -g1,9227:14533236,30224045 -k1,9227:32583029,30224045:16166092 -g1,9227:32583029,30224045 -) -(1,9230:6630773,31458749:25952256,513147,134348 -k1,9229:8065053,31458749:237593 -k1,9229:12434691,31458749:237593 -k1,9229:13331576,31458749:237593 -k1,9229:16479623,31458749:237593 -k1,9229:17248713,31458749:237593 -k1,9229:19825286,31458749:237593 -k1,9229:21081965,31458749:237594 -k1,9229:23146046,31458749:237593 -k1,9229:24042931,31458749:237593 -k1,9229:25299609,31458749:237593 -k1,9229:27881425,31458749:237593 -k1,9229:29874728,31458749:237593 -k1,9229:31303766,31458749:237593 -k1,9230:32583029,31458749:0 -) -(1,9230:6630773,32300237:25952256,505283,134348 -k1,9229:9385200,32300237:301414 -k1,9229:12764841,32300237:301415 -k1,9229:13682293,32300237:301414 -k1,9229:15002793,32300237:301415 -k1,9229:16886246,32300237:301414 -k1,9229:17637237,32300237:301414 -k1,9229:20846485,32300237:301415 -k1,9229:24279209,32300237:301414 -k1,9229:26555836,32300237:302027 -k1,9229:29791952,32300237:301414 -k1,9229:30551464,32300237:301415 -k1,9229:31384375,32300237:301414 -k1,9229:32583029,32300237:0 -) -(1,9230:6630773,33141725:25952256,513147,134348 -k1,9229:10408151,33141725:212219 -k1,9229:14260239,33141725:212218 -k1,9229:14828318,33141725:212219 -k1,9229:16173655,33141725:212219 -k1,9229:18378167,33141725:212218 -k1,9229:20412942,33141725:212219 -k1,9229:21644245,33141725:212218 -k1,9229:25988509,33141725:212219 -k1,9229:26867884,33141725:212219 -k1,9229:27494932,33141725:212205 -k1,9229:30791275,33141725:212219 -k1,9230:32583029,33141725:0 -) -(1,9230:6630773,33983213:25952256,513147,134348 -k1,9229:9231382,33983213:176432 -k1,9229:9865911,33983213:176432 -k1,9229:10573840,33983213:176432 -k1,9229:13675800,33983213:176433 -k1,9229:15246838,33983213:176432 -k1,9229:16074698,33983213:176432 -k1,9229:18744120,33983213:176432 -k1,9229:20379383,33983213:176432 -k1,9229:21886196,33983213:176432 -k1,9229:25146752,33983213:176432 -k1,9229:28188419,33983213:176433 -k1,9229:29469133,33983213:176432 -k1,9229:30393331,33983213:176432 -k1,9229:31229055,33983213:176432 -k1,9229:32583029,33983213:0 -) -(1,9230:6630773,34824701:25952256,513147,134348 -k1,9229:9588890,34824701:195774 -k1,9229:11383742,34824701:195774 -k1,9229:12770961,34824701:195774 -k1,9229:16645926,34824701:195774 -k1,9229:19706934,34824701:195774 -k1,9229:20995192,34824701:195773 -k1,9229:21546826,34824701:195774 -k1,9229:24668127,34824701:195774 -k1,9229:26349602,34824701:195774 -k1,9229:29476801,34824701:195774 -k1,9229:30331867,34824701:195774 -k1,9229:32583029,34824701:0 -) -(1,9230:6630773,35666189:25952256,513147,134348 -k1,9229:7814812,35666189:236388 -k1,9229:10311537,35666189:236388 -k1,9229:11567011,35666189:236389 -k1,9229:14565742,35666189:236388 -k1,9229:16518518,35666189:236388 -k1,9229:17414198,35666189:236388 -k1,9229:19137598,35666189:236388 -k1,9229:22354564,35666189:236389 -k1,9229:27417023,35666189:236388 -k1,9229:31189078,35666189:236388 -k1,9230:32583029,35666189:0 -) -(1,9230:6630773,36507677:25952256,513147,134348 -k1,9229:7795610,36507677:246022 -k1,9229:10349155,36507677:246022 -k1,9229:11983230,36507677:246022 -k1,9229:14648841,36507677:246022 -k1,9229:16275707,36507677:246022 -k1,9229:18533683,36507677:246021 -k1,9229:23605776,36507677:246022 -k1,9229:24799449,36507677:246022 -k1,9229:28775125,36507677:246022 -k1,9229:31931601,36507677:246022 -k1,9229:32583029,36507677:0 -) -(1,9230:6630773,37349165:25952256,505283,134348 -k1,9229:7587951,37349165:209412 -k1,9229:11230140,37349165:209413 -k1,9229:13421361,37349165:209412 -k1,9229:14282202,37349165:209413 -k1,9229:15410429,37349165:209412 -k1,9229:17007895,37349165:209413 -k1,9229:19463226,37349165:209412 -k1,9229:21370677,37349165:209413 -k1,9229:24490543,37349165:209412 -k1,9229:25691516,37349165:209413 -k1,9229:28218936,37349165:209412 -k1,9229:29056184,37349165:209413 -k1,9229:31931601,37349165:209412 -k1,9230:32583029,37349165:0 -) -(1,9230:6630773,38190653:25952256,513147,134348 -k1,9229:7218355,38190653:172739 -k1,9229:9060977,38190653:172765 -k1,9229:12144196,38190653:172765 -k1,9229:13421243,38190653:172765 -k1,9229:14693702,38190653:172765 -k1,9229:17892264,38190653:172765 -k1,9229:19256474,38190653:172765 -k1,9229:22077549,38190653:172765 -k1,9229:24536865,38190653:172765 -k1,9229:25325668,38190653:172765 -k1,9229:26125612,38190653:172765 -k1,9229:27755242,38190653:172765 -k1,9229:31142548,38190653:172765 -k1,9230:32583029,38190653:0 -) -(1,9230:6630773,39032141:25952256,513147,134348 -k1,9229:9199683,39032141:230586 -k1,9229:10715430,39032141:230586 -k1,9229:12018184,39032141:230585 -k1,9229:13940910,39032141:230586 -k1,9229:15600836,39032141:230586 -k1,9229:16490714,39032141:230586 -k1,9229:18663131,39032141:230585 -k1,9229:19425214,39032141:230586 -k1,9229:22127818,39032141:230586 -k1,9229:23044566,39032141:230586 -k1,9229:25970647,39032141:230585 -k1,9229:27300927,39032141:230586 -k1,9229:31391584,39032141:230586 -k1,9229:32583029,39032141:0 -) -(1,9230:6630773,39873629:25952256,505283,134348 -k1,9229:8587568,39873629:186668 -k1,9229:11796102,39873629:186669 -k1,9229:14354518,39873629:186668 -k1,9229:15350556,39873629:186668 -k1,9229:16556310,39873629:186669 -k1,9229:21095224,39873629:186668 -k1,9229:24297859,39873629:186668 -k1,9229:25675973,39873629:186669 -k1,9229:26478679,39873629:186668 -k1,9229:28417124,39873629:186668 -k1,9229:30301175,39873629:186669 -k1,9229:31773659,39873629:186668 -k1,9229:32583029,39873629:0 -) -(1,9230:6630773,40715117:25952256,505283,134348 -k1,9229:7805938,40715117:156080 -k1,9229:10772857,40715117:156080 -k1,9229:12615834,40715117:156080 -k1,9229:13813935,40715117:156079 -k1,9229:15426880,40715117:156080 -k1,9229:16602045,40715117:156080 -k1,9229:18681606,40715117:156080 -k1,9229:19252486,40715117:156037 -k1,9229:21988718,40715117:156080 -k1,9229:24190831,40715117:156079 -k1,9229:25365996,40715117:156080 -k1,9229:28106816,40715117:156080 -k1,9229:31188423,40715117:156080 -k1,9229:32583029,40715117:0 -) -(1,9230:6630773,41556605:25952256,513147,134348 -k1,9229:11052369,41556605:220738 -k1,9229:13247836,41556605:220867 -k1,9229:14096410,41556605:220739 -k1,9229:15336233,41556605:220738 -k1,9229:16924052,41556605:220738 -k1,9229:17811946,41556605:220738 -k1,9229:20371008,41556605:220738 -k1,9229:21006568,41556605:220717 -k1,9229:23807458,41556605:220738 -k1,9229:27346284,41556605:220739 -k1,9229:29613056,41556605:220738 -k1,9229:31923737,41556605:220738 -k1,9230:32583029,41556605:0 -) -(1,9230:6630773,42398093:25952256,513147,134348 -k1,9229:8974012,42398093:178585 -k1,9229:11937223,42398093:178586 -k1,9229:13307253,42398093:178585 -k1,9229:16438891,42398093:178586 -k1,9229:17276768,42398093:178585 -k1,9229:18844717,42398093:178586 -k1,9229:20591579,42398093:178585 -k1,9229:21961610,42398093:178586 -k1,9229:22598292,42398093:178585 -k1,9229:23308375,42398093:178586 -k1,9229:24765567,42398093:178585 -k1,9229:28238648,42398093:178586 -k1,9229:29178761,42398093:178585 -k1,9229:31955194,42398093:178586 -k1,9229:32583029,42398093:0 -) -(1,9230:6630773,43239581:25952256,513147,134348 -k1,9229:7867571,43239581:217713 -k1,9229:9452365,43239581:217713 -k1,9229:10337234,43239581:217713 -k1,9229:11821758,43239581:217713 -k1,9229:12907823,43239581:217713 -k1,9229:14229818,43239581:217713 -k1,9229:15540017,43239581:217714 -k1,9229:18337882,43239581:217713 -k1,9229:20584589,43239581:217713 -k1,9229:23303156,43239581:217713 -k1,9229:24562891,43239581:217713 -k1,9229:25234094,43239581:217694 -k1,9229:26643252,43239581:217713 -k1,9229:30075506,43239581:217713 -k1,9229:30708044,43239581:217695 -k1,9230:32583029,43239581:0 -) -(1,9230:6630773,44081069:25952256,513147,134348 -k1,9229:7925814,44081069:196658 -k1,9229:9141558,44081069:196659 -k1,9229:13413900,44081069:196658 -k1,9229:16082576,44081069:196658 -k1,9229:17351404,44081069:196659 -k1,9229:18567147,44081069:196658 -k1,9229:21573989,44081069:196658 -k1,9229:23631214,44081069:196658 -k1,9229:25520013,44081069:196659 -k1,9229:26493273,44081069:196658 -k1,9229:27832879,44081069:196658 -k1,9229:30168633,44081069:196659 -k1,9229:30981329,44081069:196658 -k1,9229:32583029,44081069:0 -) -(1,9230:6630773,44922557:25952256,355205,7863 -k1,9230:32583030,44922557:24081204 -g1,9230:32583030,44922557 -) -] -(1,9232:32583029,45706769:0,0,0 -g1,9232:32583029,45706769 -) -) -] -(1,9232:6630773,47279633:25952256,0,0 -h1,9232:6630773,47279633:25952256,0,0 -) -] -h1,9232:4262630,4025873:0,0,0 -] -!24006 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 +) +] +) +) +) +] +[1,9237:3078558,4812305:0,0,0 +(1,9237:3078558,49800853:0,16384,2228224 +g1,9237:29030814,49800853 +g1,9237:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9237:36151628,51504789:16384,1179648,0 +) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 +) +] +) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9237:37855564,49800853:1179648,16384,0 +) +) +k1,9237:3078556,49800853:-34777008 +) +] +g1,9237:6630773,4812305 +k1,9237:20781963,4812305:12955813 +g1,9237:22168704,4812305 +g1,9237:22817510,4812305 +g1,9237:26131665,4812305 +g1,9237:28614824,4812305 +g1,9237:30094627,4812305 +) +) +] +[1,9237:6630773,45706769:25952256,40108032,0 +(1,9237:6630773,45706769:25952256,40108032,0 +(1,9237:6630773,45706769:0,0,0 +g1,9237:6630773,45706769 +) +[1,9237:6630773,45706769:25952256,40108032,0 +(1,9227:6630773,6254097:25952256,513147,134348 +k1,9226:7563559,6254097:281358 +k1,9226:8200776,6254097:281357 +k1,9226:11939158,6254097:281358 +k1,9226:13417202,6254097:281357 +k1,9226:15856661,6254097:281358 +k1,9226:18113928,6254097:281357 +k1,9226:21678640,6254097:281358 +k1,9226:22627153,6254097:281357 +k1,9226:23323271,6254097:281275 +k1,9226:26515083,6254097:281358 +k1,9226:27327937,6254097:281357 +k1,9226:29477071,6254097:281358 +k1,9226:31812326,6254097:281357 +k1,9226:32583029,6254097:0 +) +(1,9227:6630773,7095585:25952256,513147,134348 +k1,9226:9562057,7095585:163043 +k1,9226:10672751,7095585:163043 +k1,9226:15775242,7095585:163042 +k1,9226:16383238,7095585:163007 +k1,9226:18976356,7095585:163043 +k1,9226:22005944,7095585:163043 +k1,9226:25034220,7095585:163042 +k1,9226:27981232,7095585:163043 +k1,9226:30702801,7095585:163043 +k1,9226:32583029,7095585:0 +) +(1,9227:6630773,7937073:25952256,513147,134348 +k1,9226:7810072,7937073:187739 +k1,9226:11574111,7937073:187739 +k1,9226:12413277,7937073:187738 +k1,9226:14371143,7937073:187739 +k1,9226:15174920,7937073:187739 +k1,9226:16381744,7937073:187739 +k1,9226:18339610,7937073:187739 +k1,9226:19186640,7937073:187738 +k1,9226:20440650,7937073:187739 +k1,9226:22645587,7937073:187739 +k1,9226:23965133,7937073:187739 +k1,9226:25674618,7937073:187739 +k1,9226:27340848,7937073:187738 +k1,9226:28796053,7937073:187739 +k1,9226:30002877,7937073:187739 +k1,9226:32583029,7937073:0 +) +(1,9227:6630773,8778561:25952256,505283,134348 +k1,9226:8046956,8778561:224738 +k1,9226:9337965,8778561:224738 +k1,9226:12275894,8778561:224738 +k1,9226:13183517,8778561:224738 +k1,9226:16094576,8778561:224738 +k1,9226:20398930,8778561:224738 +k1,9226:22181458,8778561:224737 +k1,9226:23397756,8778561:224738 +k1,9226:25582020,8778561:224738 +k1,9226:27524457,8778561:224738 +k1,9226:28435357,8778561:224738 +k1,9226:30040283,8778561:224738 +k1,9226:31601955,8778561:224738 +k1,9227:32583029,8778561:0 +) +(1,9227:6630773,9620049:25952256,505283,134348 +k1,9226:8457589,9620049:223150 +k1,9226:9490109,9620049:223150 +k1,9226:11415229,9620049:223150 +k1,9226:14548833,9620049:223150 +k1,9226:16780006,9620049:223150 +k1,9226:18499343,9620049:223150 +k1,9226:19854954,9620049:223149 +k1,9226:22318780,9620049:223150 +k1,9226:24239968,9620049:223150 +k1,9226:27273957,9620049:223150 +k1,9226:28124942,9620049:223150 +k1,9226:30815523,9620049:223150 +k1,9226:32583029,9620049:0 +) +(1,9227:6630773,10461537:25952256,513147,134348 +g1,9226:7849087,10461537 +g1,9226:10534097,10461537 +g1,9226:11392618,10461537 +g1,9226:14502301,10461537 +g1,9226:17485499,10461537 +g1,9226:20243254,10461537 +g1,9226:22322711,10461537 +g1,9226:24727227,10461537 +g1,9226:25945541,10461537 +g1,9226:28310735,10461537 +k1,9227:32583029,10461537:2441873 +g1,9227:32583029,10461537 +) +(1,9229:6630773,11303025:25952256,513147,134348 +h1,9228:6630773,11303025:983040,0,0 +k1,9228:8247241,11303025:145840 +k1,9228:9494140,11303025:145894 +k1,9228:12923387,11303025:145893 +k1,9228:14016932,11303025:145894 +k1,9228:18820469,11303025:145893 +k1,9228:20360314,11303025:145894 +k1,9228:20920997,11303025:145840 +k1,9228:21598388,11303025:145894 +k1,9228:26164684,11303025:145893 +k1,9228:29672575,11303025:145894 +k1,9228:32583029,11303025:0 +) +(1,9229:6630773,12144513:25952256,505283,134348 +k1,9228:8175821,12144513:260542 +k1,9228:9873568,12144513:260542 +k1,9228:11801346,12144513:260542 +k1,9228:14261276,12144513:260542 +k1,9228:16217233,12144513:260541 +k1,9228:19362670,12144513:260542 +k1,9228:24093423,12144513:260542 +k1,9228:25454970,12144513:260542 +k1,9228:29325890,12144513:260542 +k1,9228:32583029,12144513:0 +) +(1,9229:6630773,12986001:25952256,513147,134348 +k1,9228:7988352,12986001:166134 +k1,9228:8510345,12986001:166133 +k1,9228:10922398,12986001:166134 +k1,9228:12036182,12986001:166133 +k1,9228:13698503,12986001:166134 +k1,9228:15268417,12986001:166133 +k1,9228:17496969,12986001:166134 +k1,9228:18610754,12986001:166134 +k1,9228:21861011,12986001:166133 +k1,9228:23901475,12986001:166134 +k1,9228:28514881,12986001:166133 +k1,9228:31591469,12986001:166134 +k1,9228:32583029,12986001:0 +) +(1,9229:6630773,13827489:25952256,505283,134348 +k1,9228:9597172,13827489:182430 +k1,9228:12338127,13827489:182429 +k1,9228:14400768,13827489:182413 +k1,9228:15266083,13827489:182430 +k1,9228:17150483,13827489:182430 +k1,9228:21134000,13827489:182429 +k1,9228:22507875,13827489:182430 +k1,9228:24451913,13827489:182430 +k1,9228:25247105,13827489:182430 +k1,9228:26448619,13827489:182429 +k1,9228:31101260,13827489:182430 +k1,9229:32583029,13827489:0 +) +(1,9229:6630773,14668977:25952256,513147,126483 +k1,9228:8104595,14668977:164413 +k1,9228:8896844,14668977:164414 +k1,9228:10753397,14668977:164413 +k1,9228:12615192,14668977:164413 +k1,9228:13950079,14668977:164414 +k1,9228:15451426,14668977:164413 +k1,9228:17146106,14668977:164414 +k1,9228:17993404,14668977:164413 +k1,9228:19706433,14668977:164413 +k1,9228:20522275,14668977:164414 +k1,9228:22656045,14668977:164413 +k1,9228:24033529,14668977:164413 +k1,9228:26093900,14668977:164414 +k1,9228:27754500,14668977:164413 +k1,9228:29486535,14668977:164414 +k1,9228:30588768,14668977:164413 +k1,9229:32583029,14668977:0 +) +(1,9229:6630773,15510465:25952256,505283,134348 +k1,9228:8825137,15510465:174544 +k1,9228:10493247,15510465:174544 +k1,9228:11353953,15510465:174544 +k1,9228:14192536,15510465:174544 +k1,9228:15565734,15510465:174544 +k1,9228:17626404,15510465:174544 +k1,9228:21932993,15510465:174544 +k1,9228:23173808,15510465:174544 +k1,9228:24313697,15510465:174544 +k1,9228:27736861,15510465:174544 +k1,9228:28562833,15510465:174544 +k1,9228:30791275,15510465:174544 +k1,9228:32583029,15510465:0 +) +(1,9229:6630773,16351953:25952256,513147,134348 +k1,9228:7818464,16351953:168606 +k1,9228:10567222,16351953:168606 +k1,9228:13773422,16351953:168607 +k1,9228:14810380,16351953:168606 +k1,9228:16083268,16351953:168606 +k1,9228:18221231,16351953:168606 +k1,9228:21300291,16351953:168606 +k1,9228:23883243,16351953:168606 +k1,9228:25619471,16351953:168607 +k1,9228:28220118,16351953:168606 +k1,9228:31391584,16351953:168606 +k1,9228:32583029,16351953:0 +) +(1,9229:6630773,17193441:25952256,513147,126483 +k1,9228:8572903,17193441:240160 +k1,9228:10309249,17193441:240159 +k1,9228:14350497,17193441:240160 +k1,9228:16445325,17193441:240159 +k1,9228:17494855,17193441:240160 +k1,9228:18817013,17193441:240159 +k1,9228:22991955,17193441:240160 +k1,9228:24799735,17193441:240159 +k1,9228:26536082,17193441:240160 +k1,9228:30577329,17193441:240159 +k1,9228:31809049,17193441:240160 +k1,9229:32583029,17193441:0 +) +(1,9229:6630773,18034929:25952256,513147,126483 +k1,9228:8404178,18034929:205128 +k1,9228:12532290,18034929:205127 +k1,9228:14305039,18034929:205128 +k1,9228:16949416,18034929:205127 +k1,9228:18386621,18034929:205128 +k1,9228:20840944,18034929:205127 +k1,9228:21515965,18034929:205128 +k1,9228:22252589,18034929:205127 +k1,9228:23117009,18034929:205128 +k1,9228:25431085,18034929:205127 +k1,9228:26922029,18034929:205128 +k1,9228:29757116,18034929:205127 +k1,9228:30613672,18034929:205128 +k1,9228:32583029,18034929:0 +) +(1,9229:6630773,18876417:25952256,513147,134348 +g1,9228:9740456,18876417 +g1,9228:11507306,18876417 +g1,9228:13200756,18876417 +g1,9228:14713327,18876417 +g1,9228:16362212,18876417 +g1,9228:18074667,18876417 +g1,9228:18629756,18876417 +g1,9228:21195490,18876417 +k1,9229:32583029,18876417:7879397 +g1,9229:32583029,18876417 +) +(1,9231:6630773,19717905:25952256,513147,134348 +h1,9230:6630773,19717905:983040,0,0 +k1,9230:9046008,19717905:160797 +k1,9230:10790811,19717905:160798 +k1,9230:12189583,19717905:160797 +k1,9230:13009673,19717905:160798 +k1,9230:15772249,19717905:160797 +k1,9230:17263428,19717905:160798 +k1,9230:18443310,19717905:160797 +k1,9230:22006736,19717905:160797 +k1,9230:25018350,19717905:160798 +k1,9230:25940675,19717905:160797 +k1,9230:26457333,19717905:160798 +k1,9230:29198282,19717905:160797 +k1,9230:31129207,19717905:160798 +k1,9230:31821501,19717905:160797 +k1,9230:32583029,19717905:0 +) +(1,9231:6630773,20559393:25952256,513147,134348 +k1,9230:11385864,20559393:155774 +k1,9230:12935589,20559393:155774 +k1,9230:14904089,20559393:155774 +k1,9230:16843098,20559393:155774 +k1,9230:18734265,20559393:155774 +k1,9230:19245899,20559393:155774 +k1,9230:22097168,20559393:155773 +k1,9230:23121294,20559393:155774 +k1,9230:24268628,20559393:155774 +k1,9230:25490673,20559393:155774 +k1,9230:26611792,20559393:155774 +k1,9230:29259900,20559393:155774 +k1,9230:30983295,20559393:155774 +k1,9231:32583029,20559393:0 +) +(1,9231:6630773,21400881:25952256,513147,134348 +k1,9230:7784862,21400881:163840 +k1,9230:8561464,21400881:163840 +k1,9230:9513702,21400881:163840 +k1,9230:11065594,21400881:163839 +k1,9230:11880862,21400881:163840 +k1,9230:13866603,21400881:163840 +k1,9230:14796559,21400881:163840 +k1,9230:15748797,21400881:163840 +k1,9230:18518348,21400881:163840 +k1,9230:19814650,21400881:163840 +k1,9230:22303052,21400881:163840 +k1,9230:23925722,21400881:163839 +k1,9230:27274612,21400881:163840 +k1,9230:28859273,21400881:163840 +k1,9230:30806348,21400881:163840 +k1,9231:32583029,21400881:0 +) +(1,9231:6630773,22242369:25952256,513147,134348 +k1,9230:10094940,22242369:201785 +k1,9230:10828223,22242369:201786 +k1,9230:13788418,22242369:201785 +k1,9230:15384154,22242369:201785 +k1,9230:18496394,22242369:201786 +k1,9230:20752077,22242369:201785 +k1,9230:22643380,22242369:201785 +k1,9230:27671236,22242369:201785 +k1,9230:28532314,22242369:201786 +k1,9230:31575085,22242369:201785 +k1,9231:32583029,22242369:0 +) +(1,9231:6630773,23083857:25952256,513147,134348 +k1,9230:8328090,23083857:202441 +k1,9230:9062027,23083857:202440 +k1,9230:12249633,23083857:202441 +k1,9230:14203850,23083857:202440 +k1,9230:17316745,23083857:202441 +k1,9230:20030526,23083857:202441 +k1,9230:20849004,23083857:202440 +k1,9230:23891120,23083857:202441 +k1,9230:28911112,23083857:202440 +k1,9230:30494397,23083857:202441 +k1,9230:32583029,23083857:0 +) +(1,9231:6630773,23925345:25952256,513147,134348 +k1,9230:7568418,23925345:254760 +k1,9230:10141843,23925345:254761 +k1,9230:11082765,23925345:254760 +k1,9230:14306961,23925345:254760 +k1,9230:15031614,23925345:254760 +k1,9230:15817872,23925345:254761 +k1,9230:17138903,23925345:254760 +k1,9230:19944324,23925345:254760 +k1,9230:20850512,23925345:254760 +k1,9230:23176211,23925345:254761 +k1,9230:25316442,23925345:254760 +k1,9230:28151354,23925345:254760 +k1,9230:29057542,23925345:254760 +k1,9230:30404788,23925345:254761 +k1,9230:32227169,23925345:254760 +k1,9230:32583029,23925345:0 +) +(1,9231:6630773,24766833:25952256,513147,126483 +k1,9230:7768578,24766833:203262 +k1,9230:8631133,24766833:203263 +k1,9230:12551597,24766833:203262 +k1,9230:14609529,24766833:203263 +k1,9230:15622161,24766833:203262 +k1,9230:16844508,24766833:203262 +k1,9230:19247159,24766833:203263 +k1,9230:20109713,24766833:203262 +k1,9230:23096944,24766833:203262 +k1,9230:28299949,24766833:203263 +k1,9230:29131046,24766833:203262 +k1,9230:30353394,24766833:203263 +k1,9230:31923737,24766833:203262 +k1,9230:32583029,24766833:0 +) +(1,9231:6630773,25608321:25952256,513147,134348 +k1,9230:9785414,25608321:244187 +k1,9230:12217193,25608321:244187 +k1,9230:15428851,25608321:244188 +k1,9230:16956233,25608321:244187 +k1,9230:21449774,25608321:244187 +k1,9230:23074149,25608321:244187 +k1,9230:24655270,25608321:244187 +k1,9230:25647224,25608321:244188 +k1,9230:29862237,25608321:244187 +k1,9230:30722462,25608321:244187 +k1,9230:32583029,25608321:0 +) +(1,9231:6630773,26449809:25952256,505283,126483 +k1,9230:7545536,26449809:298725 +k1,9230:8200121,26449809:298725 +k1,9230:10254555,26449809:298724 +k1,9230:14267861,26449809:298725 +k1,9230:17558305,26449809:298725 +k1,9230:18848590,26449809:298725 +(1,9230:18848590,26449809:4394189,505283,11795 +) +k1,9230:23541504,26449809:298725 +(1,9230:23748598,26449809:4394189,505283,11795 +) +k1,9230:28822573,26449809:299022 +(1,9230:28822573,26449809:3760456,505283,11795 +) +k1,9230:32583029,26449809:0 +) +(1,9231:6630773,27291297:25952256,505283,95026 +(1,9230:6837867,27291297:3760456,505283,11795 +) +g1,9230:11004646,27291297 +g1,9230:12395320,27291297 +(1,9230:12395320,27291297:4681892,505283,11795 +) +g1,9230:17276441,27291297 +(1,9230:17483535,27291297:4681892,505283,11795 +) +k1,9231:32583029,27291297:10036838 +g1,9231:32583029,27291297 +) +(1,9232:6630773,29382557:25952256,555811,147783 +(1,9232:6630773,29382557:2450326,534184,12975 +g1,9232:6630773,29382557 +g1,9232:9081099,29382557 +) +g1,9232:10960475,29382557 +g1,9232:14533236,29382557 +k1,9232:32583029,29382557:16166092 +g1,9232:32583029,29382557 +) +(1,9235:6630773,30617261:25952256,513147,134348 +k1,9234:8042872,30617261:215412 +k1,9234:12390328,30617261:215411 +k1,9234:13265032,30617261:215412 +k1,9234:16390898,30617261:215412 +k1,9234:17137806,30617261:215411 +k1,9234:19692198,30617261:215412 +k1,9234:20926695,30617261:215412 +k1,9234:22968595,30617261:215412 +k1,9234:23843298,30617261:215411 +k1,9234:25077795,30617261:215412 +k1,9234:27637430,30617261:215412 +k1,9234:29608551,30617261:215411 +k1,9234:31015408,30617261:215412 +k1,9235:32583029,30617261:0 +) +(1,9235:6630773,31458749:25952256,505283,134348 +k1,9234:9037164,31458749:241737 +k1,9234:12357126,31458749:241736 +k1,9234:13214901,31458749:241737 +k1,9234:14475723,31458749:241737 +k1,9234:16299499,31458749:241737 +(1,9234:16299499,31458749:4681892,505283,11795 +) +k1,9234:21223127,31458749:241736 +(1,9234:21430221,31458749:4681892,505283,11795 +) +k1,9234:26734869,31458749:241992 +k1,9234:29911308,31458749:241737 +k1,9234:30611141,31458749:241736 +k1,9234:31384375,31458749:241737 +k1,9234:32583029,31458749:0 +) +(1,9235:6630773,32300237:25952256,513147,134348 +k1,9234:10408151,32300237:212219 +k1,9234:14260239,32300237:212218 +k1,9234:14828318,32300237:212219 +k1,9234:16173655,32300237:212219 +k1,9234:18378167,32300237:212218 +k1,9234:20412942,32300237:212219 +k1,9234:21644245,32300237:212218 +k1,9234:25988509,32300237:212219 +k1,9234:26867884,32300237:212219 +k1,9234:27494932,32300237:212205 +k1,9234:30791275,32300237:212219 +k1,9235:32583029,32300237:0 +) +(1,9235:6630773,33141725:25952256,513147,134348 +k1,9234:9231382,33141725:176432 +k1,9234:9865911,33141725:176432 +k1,9234:10573840,33141725:176432 +k1,9234:13675800,33141725:176433 +k1,9234:15246838,33141725:176432 +k1,9234:16074698,33141725:176432 +k1,9234:18744120,33141725:176432 +k1,9234:20379383,33141725:176432 +k1,9234:21886196,33141725:176432 +k1,9234:25146752,33141725:176432 +k1,9234:28188419,33141725:176433 +k1,9234:29469133,33141725:176432 +k1,9234:30393331,33141725:176432 +k1,9234:31229055,33141725:176432 +k1,9234:32583029,33141725:0 +) +(1,9235:6630773,33983213:25952256,513147,134348 +k1,9234:9588890,33983213:195774 +k1,9234:11383742,33983213:195774 +k1,9234:12770961,33983213:195774 +k1,9234:16645926,33983213:195774 +k1,9234:19706934,33983213:195774 +k1,9234:20995192,33983213:195773 +k1,9234:21546826,33983213:195774 +k1,9234:24668127,33983213:195774 +k1,9234:26349602,33983213:195774 +k1,9234:29476801,33983213:195774 +k1,9234:30331867,33983213:195774 +k1,9234:32583029,33983213:0 +) +(1,9235:6630773,34824701:25952256,513147,134348 +k1,9234:7814812,34824701:236388 +k1,9234:10311537,34824701:236388 +k1,9234:11567011,34824701:236389 +k1,9234:14565742,34824701:236388 +k1,9234:16518518,34824701:236388 +k1,9234:17414198,34824701:236388 +k1,9234:19137598,34824701:236388 +k1,9234:22354564,34824701:236389 +k1,9234:27417023,34824701:236388 +k1,9234:31189078,34824701:236388 +k1,9235:32583029,34824701:0 +) +(1,9235:6630773,35666189:25952256,513147,134348 +k1,9234:7795610,35666189:246022 +k1,9234:10349155,35666189:246022 +k1,9234:11983230,35666189:246022 +k1,9234:14648841,35666189:246022 +k1,9234:16275707,35666189:246022 +k1,9234:18533683,35666189:246021 +k1,9234:23605776,35666189:246022 +k1,9234:24799449,35666189:246022 +k1,9234:28775125,35666189:246022 +k1,9234:31931601,35666189:246022 +k1,9234:32583029,35666189:0 +) +(1,9235:6630773,36507677:25952256,505283,134348 +k1,9234:7587951,36507677:209412 +k1,9234:11230140,36507677:209413 +k1,9234:13421361,36507677:209412 +k1,9234:14282202,36507677:209413 +k1,9234:15410429,36507677:209412 +k1,9234:17007895,36507677:209413 +k1,9234:19463226,36507677:209412 +k1,9234:21370677,36507677:209413 +k1,9234:24490543,36507677:209412 +k1,9234:25691516,36507677:209413 +k1,9234:28218936,36507677:209412 +k1,9234:29056184,36507677:209413 +k1,9234:31931601,36507677:209412 +k1,9235:32583029,36507677:0 +) +(1,9235:6630773,37349165:25952256,513147,134348 +k1,9234:7218355,37349165:172739 +k1,9234:9060977,37349165:172765 +k1,9234:12144196,37349165:172765 +k1,9234:13421243,37349165:172765 +k1,9234:14693702,37349165:172765 +k1,9234:17892264,37349165:172765 +k1,9234:19256474,37349165:172765 +k1,9234:22077549,37349165:172765 +k1,9234:24536865,37349165:172765 +k1,9234:25325668,37349165:172765 +k1,9234:26125612,37349165:172765 +k1,9234:27755242,37349165:172765 +k1,9234:31142548,37349165:172765 +k1,9235:32583029,37349165:0 +) +(1,9235:6630773,38190653:25952256,513147,134348 +k1,9234:9199683,38190653:230586 +k1,9234:10715430,38190653:230586 +k1,9234:12018184,38190653:230585 +k1,9234:13940910,38190653:230586 +k1,9234:15600836,38190653:230586 +k1,9234:16490714,38190653:230586 +k1,9234:18663131,38190653:230585 +k1,9234:19425214,38190653:230586 +k1,9234:22127818,38190653:230586 +k1,9234:23044566,38190653:230586 +k1,9234:25970647,38190653:230585 +k1,9234:27300927,38190653:230586 +k1,9234:31391584,38190653:230586 +k1,9234:32583029,38190653:0 +) +(1,9235:6630773,39032141:25952256,505283,134348 +k1,9234:8587568,39032141:186668 +k1,9234:11796102,39032141:186669 +k1,9234:14354518,39032141:186668 +k1,9234:15350556,39032141:186668 +k1,9234:16556310,39032141:186669 +k1,9234:21095224,39032141:186668 +k1,9234:24297859,39032141:186668 +k1,9234:25675973,39032141:186669 +k1,9234:26478679,39032141:186668 +k1,9234:28417124,39032141:186668 +k1,9234:30301175,39032141:186669 +k1,9234:31773659,39032141:186668 +k1,9234:32583029,39032141:0 +) +(1,9235:6630773,39873629:25952256,505283,134348 +k1,9234:7805938,39873629:156080 +k1,9234:10772857,39873629:156080 +k1,9234:12615834,39873629:156080 +k1,9234:13813935,39873629:156079 +k1,9234:15426880,39873629:156080 +k1,9234:16602045,39873629:156080 +k1,9234:18681606,39873629:156080 +k1,9234:19252486,39873629:156037 +k1,9234:21988718,39873629:156080 +k1,9234:24190831,39873629:156079 +k1,9234:25365996,39873629:156080 +k1,9234:28106816,39873629:156080 +k1,9234:31188423,39873629:156080 +k1,9234:32583029,39873629:0 +) +(1,9235:6630773,40715117:25952256,513147,134348 +(1,9234:6837867,40715117:5770445,505283,11795 +) +k1,9234:13213407,40715117:224331 +k1,9234:14065424,40715117:224182 +k1,9234:15308690,40715117:224181 +k1,9234:16899953,40715117:224182 +k1,9234:17791290,40715117:224181 +k1,9234:20353796,40715117:224182 +k1,9234:20992795,40715117:224156 +k1,9234:23797129,40715117:224182 +k1,9234:27339397,40715117:224181 +k1,9234:29609613,40715117:224182 +k1,9234:31923737,40715117:224181 +k1,9235:32583029,40715117:0 +) +(1,9235:6630773,41556605:25952256,513147,134348 +k1,9234:9036045,41556605:240618 +k1,9234:12061288,41556605:240618 +k1,9234:13493351,41556605:240618 +k1,9234:16687020,41556605:240617 +k1,9234:17586930,41556605:240618 +k1,9234:19216911,41556605:240618 +k1,9234:21025806,41556605:240618 +k1,9234:22457869,41556605:240618 +k1,9234:23156584,41556605:240618 +k1,9234:23928698,41556605:240617 +k1,9234:25447923,41556605:240618 +k1,9234:28983036,41556605:240618 +k1,9234:29985182,41556605:240618 +k1,9234:32583029,41556605:0 +) +(1,9235:6630773,42398093:25952256,513147,134348 +k1,9234:7458370,42398093:199762 +k1,9234:8677217,42398093:199762 +k1,9234:10244060,42398093:199762 +k1,9234:11110978,42398093:199762 +k1,9234:12577551,42398093:199762 +k1,9234:13645665,42398093:199762 +k1,9234:14949709,42398093:199762 +k1,9234:16241956,42398093:199762 +k1,9234:19021870,42398093:199762 +k1,9234:21250626,42398093:199762 +k1,9234:23951242,42398093:199762 +k1,9234:25193026,42398093:199762 +k1,9234:25846297,42398093:199762 +k1,9234:27237504,42398093:199762 +k1,9234:30651807,42398093:199762 +k1,9234:31266411,42398093:199761 +k1,9235:32583029,42398093:0 +) +(1,9235:6630773,43239581:25952256,513147,134348 +k1,9234:8441230,43239581:153707 +k1,9234:9614022,43239581:153707 +k1,9234:13843413,43239581:153707 +k1,9234:16469138,43239581:153707 +k1,9234:17695014,43239581:153707 +k1,9234:18867806,43239581:153707 +k1,9234:21831697,43239581:153707 +k1,9234:23845971,43239581:153707 +k1,9234:25691818,43239581:153707 +k1,9234:26622127,43239581:153707 +k1,9234:27918782,43239581:153707 +k1,9234:30211584,43239581:153707 +k1,9234:30981329,43239581:153707 +k1,9234:32583029,43239581:0 +) +(1,9235:6630773,44081069:25952256,355205,7863 +k1,9235:32583030,44081069:24081204 +g1,9235:32583030,44081069 +) +(1,9237:6630773,44922557:25952256,505283,134348 +h1,9236:6630773,44922557:983040,0,0 +k1,9236:9321845,44922557:217743 +k1,9236:11829417,44922557:217744 +k1,9236:14888146,44922557:217743 +k1,9236:15867417,44922557:217743 +k1,9236:16441020,44922557:217743 +k1,9236:19238916,44922557:217744 +k1,9236:20741165,44922557:217743 +k1,9236:22059913,44922557:217743 +k1,9236:23787606,44922557:217743 +k1,9236:26747376,44922557:217744 +k1,9236:27956679,44922557:217743 +k1,9236:30217179,44922557:217743 +k1,9236:32583029,44922557:0 +) +] +(1,9237:32583029,45706769:0,0,0 +g1,9237:32583029,45706769 +) +) +] +(1,9237:6630773,47279633:25952256,0,0 +h1,9237:6630773,47279633:25952256,0,0 +) +] +h1,9237:4262630,4025873:0,0,0 +] +!24228 }173 -Input:1194:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1195:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1196:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1197:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1198:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1199:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1200:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {174 -[1,9247:4262630,47279633:28320399,43253760,0 -(1,9247:4262630,4025873:0,0,0 -[1,9247:-473657,4025873:25952256,0,0 -(1,9247:-473657,-710414:25952256,0,0 -h1,9247:-473657,-710414:0,0,0 -(1,9247:-473657,-710414:0,0,0 -(1,9247:-473657,-710414:0,0,0 -g1,9247:-473657,-710414 -(1,9247:-473657,-710414:65781,0,65781 -g1,9247:-407876,-710414 -[1,9247:-407876,-644633:0,0,0 +[1,9252:4262630,47279633:28320399,43253760,0 +(1,9252:4262630,4025873:0,0,0 +[1,9252:-473657,4025873:25952256,0,0 +(1,9252:-473657,-710414:25952256,0,0 +h1,9252:-473657,-710414:0,0,0 +(1,9252:-473657,-710414:0,0,0 +(1,9252:-473657,-710414:0,0,0 +g1,9252:-473657,-710414 +(1,9252:-473657,-710414:65781,0,65781 +g1,9252:-407876,-710414 +[1,9252:-407876,-644633:0,0,0 ] ) -k1,9247:-473657,-710414:-65781 +k1,9252:-473657,-710414:-65781 ) ) -k1,9247:25478599,-710414:25952256 -g1,9247:25478599,-710414 +k1,9252:25478599,-710414:25952256 +g1,9252:25478599,-710414 ) ] ) -[1,9247:6630773,47279633:25952256,43253760,0 -[1,9247:6630773,4812305:25952256,786432,0 -(1,9247:6630773,4812305:25952256,505283,134348 -(1,9247:6630773,4812305:25952256,505283,134348 -g1,9247:3078558,4812305 -[1,9247:3078558,4812305:0,0,0 -(1,9247:3078558,2439708:0,1703936,0 -k1,9247:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9247:2537886,2439708:1179648,16384,0 +[1,9252:6630773,47279633:25952256,43253760,0 +[1,9252:6630773,4812305:25952256,786432,0 +(1,9252:6630773,4812305:25952256,505283,134348 +(1,9252:6630773,4812305:25952256,505283,134348 +g1,9252:3078558,4812305 +[1,9252:3078558,4812305:0,0,0 +(1,9252:3078558,2439708:0,1703936,0 +k1,9252:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9252:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9247:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9252:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9247:3078558,4812305:0,0,0 -(1,9247:3078558,2439708:0,1703936,0 -g1,9247:29030814,2439708 -g1,9247:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9247:36151628,1915420:16384,1179648,0 +[1,9252:3078558,4812305:0,0,0 +(1,9252:3078558,2439708:0,1703936,0 +g1,9252:29030814,2439708 +g1,9252:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9252:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9247:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9252:37855564,2439708:1179648,16384,0 ) ) -k1,9247:3078556,2439708:-34777008 +k1,9252:3078556,2439708:-34777008 ) ] -[1,9247:3078558,4812305:0,0,0 -(1,9247:3078558,49800853:0,16384,2228224 -k1,9247:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9247:2537886,49800853:1179648,16384,0 +[1,9252:3078558,4812305:0,0,0 +(1,9252:3078558,49800853:0,16384,2228224 +k1,9252:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9252:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9247:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9252:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9247:3078558,4812305:0,0,0 -(1,9247:3078558,49800853:0,16384,2228224 -g1,9247:29030814,49800853 -g1,9247:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9247:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] -) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9247:37855564,49800853:1179648,16384,0 -) -) -k1,9247:3078556,49800853:-34777008 -) -] -g1,9247:6630773,4812305 -g1,9247:6630773,4812305 -g1,9247:9714897,4812305 -k1,9247:31387653,4812305:21672756 -) -) -] -[1,9247:6630773,45706769:25952256,40108032,0 -(1,9247:6630773,45706769:25952256,40108032,0 -(1,9247:6630773,45706769:0,0,0 -g1,9247:6630773,45706769 -) -[1,9247:6630773,45706769:25952256,40108032,0 -(1,9232:6630773,6254097:25952256,505283,134348 -h1,9231:6630773,6254097:983040,0,0 -k1,9231:9321845,6254097:217743 -k1,9231:11829417,6254097:217744 -k1,9231:14888146,6254097:217743 -k1,9231:15867417,6254097:217743 -k1,9231:16441020,6254097:217743 -k1,9231:19238916,6254097:217744 -k1,9231:20741165,6254097:217743 -k1,9231:22059913,6254097:217743 -k1,9231:23787606,6254097:217743 -k1,9231:26747376,6254097:217744 -k1,9231:27956679,6254097:217743 -k1,9231:30217179,6254097:217743 -k1,9231:32583029,6254097:0 -) -(1,9232:6630773,7095585:25952256,505283,134348 -k1,9231:7681433,7095585:262262 -k1,9231:9274075,7095585:262261 -k1,9231:13235844,7095585:262262 -k1,9231:16024518,7095585:262261 -k1,9231:17478225,7095585:262262 -k1,9231:20704679,7095585:262261 -k1,9231:21322801,7095585:262262 -k1,9231:24165214,7095585:262261 -k1,9231:25821427,7095585:262262 -(1,9231:25821427,7095585:0,452978,115847 -r1,9231:28993387,7095585:3171960,568825,115847 -k1,9231:25821427,7095585:-3171960 -) -(1,9231:25821427,7095585:3171960,452978,115847 -k1,9231:25821427,7095585:3277 -h1,9231:28990110,7095585:0,411205,112570 -) -k1,9231:29255648,7095585:262261 -k1,9231:31563944,7095585:262262 -k1,9231:32583029,7095585:0 -) -(1,9232:6630773,7937073:25952256,505283,134348 -k1,9231:9687551,7937073:215792 -k1,9231:12193171,7937073:215792 -k1,9231:15366603,7937073:215792 -k1,9231:18678316,7937073:215792 -k1,9231:19249968,7937073:215792 -k1,9231:22045913,7937073:215793 -k1,9231:23789349,7937073:215792 -k1,9231:25024226,7937073:215792 -k1,9231:27529846,7937073:215792 -k1,9231:30586624,7937073:215792 -k1,9231:31563944,7937073:215792 -k1,9231:32583029,7937073:0 -) -(1,9232:6630773,8778561:25952256,505283,134348 -k1,9231:9442670,8778561:231745 -k1,9231:10325843,8778561:231745 -k1,9231:11576674,8778561:231746 -k1,9231:13878701,8778561:231745 -k1,9231:15558792,8778561:231745 -k1,9231:16515365,8778561:231745 -k1,9231:18031617,8778561:231746 -k1,9231:19643550,8778561:231745 -k1,9231:20979577,8778561:231745 -k1,9231:21959088,8778561:231745 -k1,9231:24989877,8778561:231746 -k1,9231:27681844,8778561:231745 -k1,9231:31563944,8778561:231745 -k1,9231:32583029,8778561:0 -) -(1,9232:6630773,9620049:25952256,513147,134348 -k1,9231:8532930,9620049:164142 -k1,9231:9356365,9620049:164143 -k1,9231:10539592,9620049:164142 -k1,9231:14403241,9620049:164142 -k1,9231:16112723,9620049:164143 -k1,9231:19187319,9620049:164142 -k1,9231:20166729,9620049:164142 -k1,9231:21397142,9620049:164142 -k1,9231:23634189,9620049:164143 -k1,9231:24564447,9620049:164142 -k1,9231:25747674,9620049:164142 -k1,9231:28937614,9620049:164143 -k1,9231:30293201,9620049:164142 -k1,9231:32583029,9620049:0 -) -(1,9232:6630773,10461537:25952256,513147,126483 -k1,9231:9308876,10461537:296525 -k1,9231:10221439,10461537:296525 -k1,9231:12026604,10461537:296526 -k1,9231:13992986,10461537:296525 -k1,9231:15981651,10461537:296525 -k1,9231:17269736,10461537:296525 -k1,9231:18983806,10461537:296526 -k1,9231:21938471,10461537:296525 -k1,9231:22851034,10461537:296525 -k1,9231:24749259,10461537:296525 -k1,9231:26743167,10461537:296526 -k1,9231:29569382,10461537:296525 -k1,9231:31246095,10461537:296525 -k1,9231:32583029,10461537:0 -) -(1,9232:6630773,11303025:25952256,513147,134348 -k1,9231:9137287,11303025:265838 -k1,9231:10086009,11303025:265837 -k1,9231:11099613,11303025:265838 -k1,9231:14140901,11303025:265838 -k1,9231:15022776,11303025:265837 -k1,9231:17275666,11303025:265838 -k1,9231:20379212,11303025:265837 -k1,9231:23179983,11303025:265838 -k1,9231:27301959,11303025:265838 -k1,9231:28672078,11303025:265837 -k1,9231:29685682,11303025:265838 -k1,9231:32583029,11303025:0 -) -(1,9232:6630773,12144513:25952256,513147,134348 -k1,9231:8072365,12144513:250147 -k1,9231:9608329,12144513:250148 -k1,9231:12832500,12144513:250147 -k1,9231:14476598,12144513:250147 -k1,9231:17422241,12144513:250147 -(1,9231:17422241,12144513:0,452978,115847 -r1,9231:20242490,12144513:2820249,568825,115847 -k1,9231:17422241,12144513:-2820249 -) -(1,9231:17422241,12144513:2820249,452978,115847 -k1,9231:17422241,12144513:3277 -h1,9231:20239213,12144513:0,411205,112570 -) -k1,9231:20492638,12144513:250148 -k1,9231:22478178,12144513:250147 -k1,9231:23084185,12144513:250147 -k1,9231:25683142,12144513:250147 -k1,9231:28695633,12144513:250148 -k1,9231:31635378,12144513:250147 -k1,9231:32583029,12144513:0 -) -(1,9232:6630773,12986001:25952256,513147,134348 -k1,9231:7878780,12986001:228922 -k1,9231:11180030,12986001:228922 -k1,9231:12976573,12986001:228922 -k1,9231:14490002,12986001:228923 -k1,9231:16604395,12986001:228922 -k1,9231:17701669,12986001:228922 -k1,9231:21020614,12986001:228922 -k1,9231:22197187,12986001:228922 -k1,9231:23815472,12986001:228922 -k1,9231:26250992,12986001:228923 -k1,9231:27095952,12986001:228922 -k1,9231:29603561,12986001:228922 -h1,9231:31544737,12986001:0,0,0 -k1,9231:31773659,12986001:228922 -k1,9231:32583029,12986001:0 -) -(1,9232:6630773,13827489:25952256,477757,134348 -g1,9231:8328155,13827489 -h1,9231:9125073,13827489:0,0,0 -k1,9232:32583029,13827489:23284286 -g1,9232:32583029,13827489 -) -(1,9233:6630773,15918749:25952256,555811,104529 -(1,9233:6630773,15918749:2450326,534184,12975 -g1,9233:6630773,15918749 -g1,9233:9081099,15918749 -) -g1,9233:13170022,15918749 -g1,9233:17460075,15918749 -g1,9233:19027303,15918749 -k1,9233:32583029,15918749:12301367 -g1,9233:32583029,15918749 -) -(1,9237:6630773,17153453:25952256,505283,134348 -k1,9236:7429961,17153453:171353 -k1,9236:8016130,17153453:171326 -k1,9236:10207959,17153453:171354 -k1,9236:13080051,17153453:171353 -k1,9236:13782901,17153453:171353 -k1,9236:14973340,17153453:171354 -k1,9236:17701252,17153453:171353 -k1,9236:19791500,17153453:171354 -k1,9236:22873307,17153453:171353 -k1,9236:24036221,17153453:171354 -k1,9236:27118683,17153453:171353 -k1,9236:30155271,17153453:171354 -k1,9236:31318184,17153453:171353 -k1,9236:32583029,17153453:0 -) -(1,9237:6630773,17994941:25952256,513147,126483 -k1,9236:7549205,17994941:259140 -k1,9236:11007813,17994941:259140 -k1,9236:12458398,17994941:259140 -k1,9236:14280572,17994941:259140 -k1,9236:16937019,17994941:259140 -k1,9236:18143810,17994941:259140 -k1,9236:20095090,17994941:259140 -k1,9236:23475054,17994941:259140 -k1,9236:26524717,17994941:259140 -k1,9236:28068363,17994941:259140 -k1,9236:29431785,17994941:259140 -k1,9236:30438691,17994941:259140 -k1,9236:32583029,17994941:0 -) -(1,9237:6630773,18836429:25952256,505283,126483 -k1,9236:8168047,18836429:269808 -k1,9236:9208558,18836429:269808 -k1,9236:9893138,18836429:269737 -k1,9236:12511756,18836429:269808 -k1,9236:13432992,18836429:269808 -k1,9236:15418533,18836429:269808 -k1,9236:17327396,18836429:269808 -k1,9236:20381173,18836429:269808 -k1,9236:21375809,18836429:269808 -k1,9236:22930123,18836429:269808 -k1,9236:24580119,18836429:269808 -k1,9236:25954209,18836429:269808 -k1,9236:26971783,18836429:269808 -k1,9236:28754817,18836429:269808 -k1,9236:29640663,18836429:269808 -k1,9236:30929556,18836429:269808 -k1,9236:32583029,18836429:0 -) -(1,9237:6630773,19677917:25952256,513147,126483 -k1,9236:8116897,19677917:248149 -k1,9236:9051209,19677917:248150 -k1,9236:11606881,19677917:248149 -k1,9236:12269825,19677917:248101 -k1,9236:15543771,19677917:248149 -k1,9236:16983366,19677917:248150 -k1,9236:18794549,19677917:248149 -k1,9236:21832566,19677917:248149 -(1,9236:21832566,19677917:0,452978,115847 -r1,9236:25004526,19677917:3171960,568825,115847 -k1,9236:21832566,19677917:-3171960 -) -(1,9236:21832566,19677917:3171960,452978,115847 -k1,9236:21832566,19677917:3277 -h1,9236:25001249,19677917:0,411205,112570 -) -k1,9236:25252676,19677917:248150 -k1,9236:26032322,19677917:248149 -k1,9236:27793698,19677917:248150 -k1,9236:28693275,19677917:248149 -k1,9236:30317681,19677917:248150 -k1,9236:31757275,19677917:248149 -k1,9237:32583029,19677917:0 -) -(1,9237:6630773,20519405:25952256,513147,134348 -k1,9236:8175508,20519405:183552 -k1,9236:11269515,20519405:183553 -k1,9236:12737573,20519405:183552 -k1,9236:13912685,20519405:183552 -k1,9236:16430629,20519405:183552 -k1,9236:19351621,20519405:183553 -k1,9236:20151211,20519405:183552 -k1,9236:21353848,20519405:183552 -k1,9236:23031621,20519405:183552 -k1,9236:23630001,20519405:183537 -k1,9236:26087652,20519405:183552 -k1,9236:26899040,20519405:183553 -k1,9236:29887533,20519405:183552 -k1,9237:32583029,20519405:0 -) -(1,9237:6630773,21360893:25952256,505283,134348 -(1,9236:6630773,21360893:0,452978,122846 -r1,9236:12968140,21360893:6337367,575824,122846 -k1,9236:6630773,21360893:-6337367 -) -(1,9236:6630773,21360893:6337367,452978,122846 -k1,9236:6630773,21360893:3277 -h1,9236:12964863,21360893:0,411205,112570 -) -k1,9236:13219378,21360893:251238 -k1,9236:14002113,21360893:251238 -k1,9236:15766576,21360893:251237 -k1,9236:16669242,21360893:251238 -k1,9236:18889837,21360893:251238 -k1,9236:22225199,21360893:251238 -k1,9236:24259672,21360893:251238 -k1,9236:26246303,21360893:251238 -k1,9236:28921717,21360893:251237 -k1,9236:29631052,21360893:251238 -k1,9236:30413787,21360893:251238 -k1,9236:32583029,21360893:0 -) -(1,9237:6630773,22202381:25952256,505283,122846 -k1,9236:7514603,22202381:232402 -k1,9236:8839490,22202381:232402 -k1,9236:11496069,22202381:232402 -k1,9236:13855770,22202381:232402 -k1,9236:16180738,22202381:232403 -k1,9236:17512834,22202381:232402 -(1,9236:17512834,22202381:0,452978,122846 -r1,9236:23850201,22202381:6337367,575824,122846 -k1,9236:17512834,22202381:-6337367 -) -(1,9236:17512834,22202381:6337367,452978,122846 -k1,9236:17512834,22202381:3277 -h1,9236:23846924,22202381:0,411205,112570 -) -k1,9236:24082603,22202381:232402 -k1,9236:25506450,22202381:232402 -(1,9236:25506450,22202381:0,452978,122846 -r1,9236:31492105,22202381:5985655,575824,122846 -k1,9236:25506450,22202381:-5985655 -) -(1,9236:25506450,22202381:5985655,452978,122846 -k1,9236:25506450,22202381:3277 -h1,9236:31488828,22202381:0,411205,112570 -) -k1,9236:31931601,22202381:232402 -k1,9236:32583029,22202381:0 -) -(1,9237:6630773,23043869:25952256,505283,134348 -g1,9236:8799359,23043869 -g1,9236:9681473,23043869 -g1,9236:12097130,23043869 -k1,9237:32583030,23043869:17401776 -g1,9237:32583030,23043869 -) -v1,9239:6630773,24409645:0,393216,0 -(1,9240:6630773,26687812:25952256,2671383,616038 -g1,9240:6630773,26687812 -(1,9240:6630773,26687812:25952256,2671383,616038 -(1,9240:6630773,27303850:25952256,3287421,0 -[1,9240:6630773,27303850:25952256,3287421,0 -(1,9240:6630773,27277636:25952256,3234993,0 -r1,9240:6656987,27277636:26214,3234993,0 -[1,9240:6656987,27277636:25899828,3234993,0 -(1,9240:6656987,26687812:25899828,2055345,0 -[1,9240:7246811,26687812:24720180,2055345,0 -(1,9240:7246811,25719841:24720180,1087374,134348 -k1,9239:8624580,25719841:168066 -k1,9239:9941492,25719841:168066 -(1,9239:9941492,25719841:0,452978,115847 -r1,9240:11354893,25719841:1413401,568825,115847 -k1,9239:9941492,25719841:-1413401 -) -(1,9239:9941492,25719841:1413401,452978,115847 -k1,9239:9941492,25719841:3277 -h1,9239:11351616,25719841:0,411205,112570 -) -k1,9239:11522959,25719841:168066 -k1,9239:12342453,25719841:168066 -k1,9239:13897261,25719841:168066 -k1,9239:14900910,25719841:168065 -k1,9239:16088061,25719841:168066 -k1,9239:17644180,25719841:168066 -k1,9239:19640700,25719841:168066 -k1,9239:20756417,25719841:168066 -(1,9239:20756417,25719841:0,452978,122846 -r1,9240:27093784,25719841:6337367,575824,122846 -k1,9239:20756417,25719841:-6337367 -) -(1,9239:20756417,25719841:6337367,452978,122846 -k1,9239:20756417,25719841:3277 -h1,9239:27090507,25719841:0,411205,112570 -) -k1,9239:27261850,25719841:168066 -k1,9239:28621361,25719841:168066 -(1,9239:28621361,25719841:0,452978,115847 -r1,9240:31793321,25719841:3171960,568825,115847 -k1,9239:28621361,25719841:-3171960 -) -(1,9239:28621361,25719841:3171960,452978,115847 -k1,9239:28621361,25719841:3277 -h1,9239:31790044,25719841:0,411205,112570 -) -k1,9239:31966991,25719841:0 -) -(1,9240:7246811,26561329:24720180,505283,126483 -g1,9239:8637485,26561329 -g1,9239:11146858,26561329 -g1,9239:12894703,26561329 -g1,9239:14113017,26561329 -g1,9239:15808433,26561329 -g1,9239:16623700,26561329 -g1,9239:17842014,26561329 -g1,9239:19425363,26561329 -g1,9239:21595260,26561329 -k1,9240:31966991,26561329:8705150 -g1,9240:31966991,26561329 -) -] -) -] -r1,9240:32583029,27277636:26214,3234993,0 -) -] -) -) -g1,9240:32583029,26687812 -) -h1,9240:6630773,27303850:0,0,0 -(1,9243:6630773,28669626:25952256,513147,134348 -h1,9242:6630773,28669626:983040,0,0 -k1,9242:8284358,28669626:255702 -k1,9242:11450571,28669626:255759 -k1,9242:12810612,28669626:255759 -k1,9242:13814137,28669626:255759 -k1,9242:16807335,28669626:255759 -k1,9242:18919074,28669626:255759 -k1,9242:20742454,28669626:255759 -k1,9242:23611132,28669626:255758 -k1,9242:24549776,28669626:255759 -k1,9242:26373156,28669626:255759 -k1,9242:28963307,28669626:255759 -k1,9242:30697558,28669626:255759 -k1,9243:32583029,28669626:0 -) -(1,9243:6630773,29511114:25952256,513147,134348 -k1,9242:8507725,29511114:235930 -k1,9242:11715056,29511114:235929 -k1,9242:13518607,29511114:235930 -k1,9242:16367456,29511114:235929 -k1,9242:19965383,29511114:235930 -k1,9242:21010682,29511114:235929 -k1,9242:22265697,29511114:235930 -k1,9242:25255449,29511114:235929 -k1,9242:26828313,29511114:235930 -k1,9242:29356036,29511114:235929 -k1,9242:32583029,29511114:0 -) -(1,9243:6630773,30352602:25952256,513147,102891 -k1,9242:9530205,30352602:140366 -k1,9242:10321999,30352602:140366 -k1,9242:11210131,30352602:140366 -k1,9242:14308137,30352602:140366 -k1,9242:16390990,30352602:140366 -k1,9242:20645050,30352602:140366 -k1,9242:21804501,30352602:140366 -k1,9242:24243215,30352602:140366 -k1,9242:26059992,30352602:140366 -k1,9242:29690150,30352602:140366 -k1,9242:31021961,30352602:140366 -k1,9243:32583029,30352602:0 -) -(1,9243:6630773,31194090:25952256,513147,134348 -k1,9242:8627374,31194090:203536 -k1,9242:9822470,31194090:203536 -k1,9242:11092277,31194090:203536 -k1,9242:14079782,31194090:203536 -k1,9242:14969480,31194090:203536 -k1,9242:16494877,31194090:203536 -k1,9242:17357706,31194090:203537 -k1,9242:18580327,31194090:203536 -k1,9242:21837841,31194090:203536 -k1,9242:24460966,31194090:203536 -k1,9242:27635904,31194090:203536 -k1,9242:29478495,31194090:203536 -k1,9242:30213528,31194090:203536 -k1,9242:31483335,31194090:203536 -k1,9243:32583029,31194090:0 -) -(1,9243:6630773,32035578:25952256,513147,134348 -k1,9242:8546664,32035578:274869 -k1,9242:9507695,32035578:274869 -k1,9242:11162751,32035578:274868 -k1,9242:12429180,32035578:274869 -k1,9242:15488018,32035578:274869 -k1,9242:19820221,32035578:274869 -k1,9242:20711127,32035578:274868 -k1,9242:23921354,32035578:274869 -k1,9242:25573790,32035578:274869 -k1,9242:26981121,32035578:274869 -k1,9242:28786255,32035578:274868 -k1,9242:31391584,32035578:274869 -k1,9243:32583029,32035578:0 -) -(1,9243:6630773,32877066:25952256,513147,173670 -(1,9242:6630773,32877066:1181614,473825,0 -) -(1,9242:8117325,33050736:355205,473825,0 -) -k1,9242:9391219,32877066:209590 -k1,9242:10070701,32877066:209589 -k1,9242:10811788,32877066:209590 -k1,9242:12891776,32877066:209590 -k1,9242:13752793,32877066:209589 -k1,9242:15931740,32877066:209590 -k1,9242:19051784,32877066:209590 -k1,9242:20828994,32877066:209589 -k1,9242:23060370,32877066:209590 -k1,9242:24850688,32877066:209590 -k1,9242:26373619,32877066:209589 -k1,9242:28469335,32877066:209590 -k1,9242:32583029,32877066:0 -) -(1,9243:6630773,33718554:25952256,505283,126483 -k1,9242:8817955,33718554:244695 -k1,9242:10823602,33718554:244695 -k1,9242:12669997,33718554:244695 -k1,9242:14496076,33718554:244695 -k1,9242:15873233,33718554:244695 -k1,9242:16865694,33718554:244695 -k1,9242:20068029,33718554:244695 -k1,9242:20995609,33718554:244695 -k1,9242:22594278,33718554:244695 -k1,9242:24233579,33718554:244695 -k1,9242:25129702,33718554:244695 -k1,9242:27517424,33718554:244695 -k1,9242:28486947,33718554:244695 -k1,9242:29189739,33718554:244695 -k1,9242:29965931,33718554:244695 -k1,9242:31931601,33718554:244695 -k1,9242:32583029,33718554:0 -) -(1,9243:6630773,34560042:25952256,513147,134348 -k1,9242:8852660,34560042:252530 -k1,9242:12015643,34560042:252529 -k1,9242:13835794,34560042:252530 -k1,9242:16701243,34560042:252529 -k1,9242:17995795,34560042:252530 -k1,9242:19120692,34560042:262443 -k1,9242:19783423,34560042:252476 -k1,9242:22124585,34560042:252530 -k1,9242:23837256,34560042:252529 -k1,9242:25108871,34560042:252530 -k1,9242:28187968,34560042:252529 -k1,9242:28971995,34560042:252530 -k1,9242:32583029,34560042:0 -) -(1,9243:6630773,35401530:25952256,513147,134348 -k1,9242:10524048,35401530:255372 -k1,9242:11257177,35401530:255372 -k1,9242:12531634,35401530:255372 -k1,9242:14368389,35401530:255371 -k1,9242:15615321,35401530:255372 -k1,9242:18828333,35401530:255372 -k1,9242:21994159,35401530:255372 -k1,9242:23353813,35401530:255372 -k1,9242:24356950,35401530:255371 -k1,9242:25966296,35401530:255372 -k1,9242:28022597,35401530:255372 -k1,9242:31015408,35401530:255372 -k1,9242:32583029,35401530:0 -) -(1,9243:6630773,36243018:25952256,513147,134348 -k1,9242:9246970,36243018:176947 -k1,9242:10991538,36243018:176947 -k1,9242:13178475,36243018:176948 -k1,9242:15953269,36243018:176947 -k1,9242:19064918,36243018:176947 -k1,9242:21781385,36243018:176947 -k1,9242:22949892,36243018:176947 -k1,9242:24074490,36243018:176947 -k1,9242:25853138,36243018:176948 -k1,9242:28940539,36243018:176947 -k1,9242:30403302,36243018:176947 -k1,9242:32583029,36243018:0 -) -(1,9243:6630773,37084506:25952256,505283,7863 -k1,9243:32583029,37084506:22994616 -g1,9243:32583029,37084506 -) -(1,9244:6630773,39175766:25952256,555811,147783 -(1,9244:6630773,39175766:2450326,534184,12975 -g1,9244:6630773,39175766 -g1,9244:9081099,39175766 -) -g1,9244:12040378,39175766 -g1,9244:15130860,39175766 -k1,9244:32583029,39175766:14104328 -g1,9244:32583029,39175766 -) -(1,9247:6630773,40410470:25952256,513147,134348 -k1,9246:8064281,40410470:168008 -k1,9246:8883717,40410470:168008 -k1,9246:10070811,40410470:168009 -k1,9246:11809717,40410470:168008 -k1,9246:14463506,40410470:168008 -k1,9246:15290806,40410470:168008 -k1,9246:19188469,40410470:168009 -k1,9246:19771289,40410470:167977 -k1,9246:22849751,40410470:168008 -k1,9246:23475856,40410470:168008 -k1,9246:24748146,40410470:168008 -k1,9246:28364004,40410470:168009 -k1,9246:29279778,40410470:168008 -k1,9246:31931601,40410470:168008 -k1,9246:32583029,40410470:0 -) -(1,9247:6630773,41251958:25952256,513147,134348 -k1,9246:8087947,41251958:191018 -k1,9246:8634825,41251958:191018 -k1,9246:11337838,41251958:191018 -k1,9246:14109008,41251958:191018 -k1,9246:15247677,41251958:191018 -k1,9246:15794555,41251958:191018 -k1,9246:17321197,41251958:191018 -k1,9246:18124977,41251958:191018 -k1,9246:20095954,41251958:191019 -k1,9246:20756865,41251958:191018 -k1,9246:21479380,41251958:191018 -k1,9246:23254403,41251958:191018 -k1,9246:24096849,41251958:191018 -k1,9246:25594000,41251958:191018 -k1,9246:27606919,41251958:191018 -k1,9246:28263898,41251958:191018 -k1,9246:29474001,41251958:191018 -k1,9246:32583029,41251958:0 -) -(1,9247:6630773,42093446:25952256,505283,134348 -k1,9246:10016371,42093446:293609 -k1,9246:10841477,42093446:293609 -k1,9246:13469478,42093446:293609 -k1,9246:15241580,42093446:293610 -k1,9246:16802655,42093446:293609 -k1,9246:18530192,42093446:293609 -k1,9246:19412314,42093446:293609 -k1,9246:21138540,42093446:293609 -k1,9246:21846898,42093446:293515 -k1,9246:23511520,42093446:293609 -k1,9246:24824214,42093446:293609 -k1,9246:29672575,42093446:293609 -k1,9246:32583029,42093446:0 -) -(1,9247:6630773,42934934:25952256,513147,134348 -k1,9246:9775191,42934934:199885 -k1,9246:11673114,42934934:199885 -k1,9246:12287841,42934934:199884 -k1,9246:13019223,42934934:199885 -k1,9246:16163641,42934934:199885 -k1,9246:18084500,42934934:199884 -k1,9246:18640245,42934934:199885 -k1,9246:19696686,42934934:199885 -k1,9246:20555863,42934934:199885 -k1,9246:23236941,42934934:199885 -k1,9246:24265856,42934934:199885 -k1,9246:26895815,42934934:199884 -k1,9246:28485063,42934934:199885 -k1,9246:30420341,42934934:199885 -k1,9246:32583029,42934934:0 -) -(1,9247:6630773,43776422:25952256,513147,126483 -k1,9246:7995636,43776422:233056 -k1,9246:8887984,43776422:233056 -k1,9246:10140125,43776422:233056 -k1,9246:12023378,43776422:233056 -k1,9246:15033850,43776422:233056 -k1,9246:18351030,43776422:233056 -k1,9246:21368711,43776422:233056 -k1,9246:23094677,43776422:233056 -k1,9246:24394004,43776422:233056 -k1,9246:26918854,43776422:233056 -k1,9246:28170995,43776422:233056 -k1,9246:29496536,43776422:233056 -k1,9246:30388884,43776422:233056 -k1,9246:32583029,43776422:0 -) -(1,9247:6630773,44617910:25952256,513147,134348 -k1,9246:9926824,44617910:211927 -k1,9246:13785174,44617910:211927 -k1,9246:17726755,44617910:211927 -k1,9246:20849136,44617910:211927 -k1,9246:24017392,44617910:211927 -k1,9246:24912204,44617910:211927 -k1,9246:27276333,44617910:211927 -k1,9246:28507345,44617910:211927 -k1,9246:32583029,44617910:0 -) -(1,9247:6630773,45459398:25952256,513147,134348 -k1,9246:7406628,45459398:159817 -k1,9246:9000373,45459398:159817 -k1,9246:9574994,45459398:159778 -k1,9246:11128762,45459398:159817 -k1,9246:14701039,45459398:159817 -k1,9246:16644090,45459398:159816 -k1,9246:17960617,45459398:159817 -k1,9246:21181621,45459398:159817 -k1,9246:22360523,45459398:159817 -k1,9246:23612825,45459398:159817 -k1,9246:24431934,45459398:159817 -k1,9246:26310760,45459398:159817 -k1,9246:27153462,45459398:159817 -k1,9246:30866641,45459398:159817 -k1,9246:32583029,45459398:0 -) -] -(1,9247:32583029,45706769:0,0,0 -g1,9247:32583029,45706769 -) -) -] -(1,9247:6630773,47279633:25952256,0,0 -h1,9247:6630773,47279633:25952256,0,0 -) -] -h1,9247:4262630,4025873:0,0,0 -] -!24246 +[1,9252:3078558,4812305:0,0,0 +(1,9252:3078558,49800853:0,16384,2228224 +g1,9252:29030814,49800853 +g1,9252:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9252:36151628,51504789:16384,1179648,0 +) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 +) +] +) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9252:37855564,49800853:1179648,16384,0 +) +) +k1,9252:3078556,49800853:-34777008 +) +] +g1,9252:6630773,4812305 +g1,9252:6630773,4812305 +g1,9252:9714897,4812305 +k1,9252:31387653,4812305:21672756 +) +) +] +[1,9252:6630773,45706769:25952256,40108032,0 +(1,9252:6630773,45706769:25952256,40108032,0 +(1,9252:6630773,45706769:0,0,0 +g1,9252:6630773,45706769 +) +[1,9252:6630773,45706769:25952256,40108032,0 +(1,9237:6630773,6254097:25952256,505283,134348 +k1,9236:7681433,6254097:262262 +k1,9236:9274075,6254097:262261 +k1,9236:13235844,6254097:262262 +k1,9236:16024518,6254097:262261 +k1,9236:17478225,6254097:262262 +k1,9236:20704679,6254097:262261 +k1,9236:21322801,6254097:262262 +k1,9236:24165214,6254097:262261 +k1,9236:25821427,6254097:262262 +(1,9236:25821427,6254097:0,452978,115847 +r1,9236:28993387,6254097:3171960,568825,115847 +k1,9236:25821427,6254097:-3171960 +) +(1,9236:25821427,6254097:3171960,452978,115847 +k1,9236:25821427,6254097:3277 +h1,9236:28990110,6254097:0,411205,112570 +) +k1,9236:29255648,6254097:262261 +k1,9236:31563944,6254097:262262 +k1,9236:32583029,6254097:0 +) +(1,9237:6630773,7095585:25952256,505283,134348 +k1,9236:9687551,7095585:215792 +k1,9236:12193171,7095585:215792 +k1,9236:15366603,7095585:215792 +k1,9236:18678316,7095585:215792 +k1,9236:19249968,7095585:215792 +k1,9236:22045913,7095585:215793 +k1,9236:23789349,7095585:215792 +k1,9236:25024226,7095585:215792 +k1,9236:27529846,7095585:215792 +k1,9236:30586624,7095585:215792 +k1,9236:31563944,7095585:215792 +k1,9236:32583029,7095585:0 +) +(1,9237:6630773,7937073:25952256,505283,134348 +k1,9236:9442670,7937073:231745 +k1,9236:10325843,7937073:231745 +k1,9236:11576674,7937073:231746 +k1,9236:13878701,7937073:231745 +k1,9236:15558792,7937073:231745 +k1,9236:16515365,7937073:231745 +k1,9236:18031617,7937073:231746 +k1,9236:19643550,7937073:231745 +k1,9236:20979577,7937073:231745 +k1,9236:21959088,7937073:231745 +k1,9236:24989877,7937073:231746 +k1,9236:27681844,7937073:231745 +k1,9236:31563944,7937073:231745 +k1,9236:32583029,7937073:0 +) +(1,9237:6630773,8778561:25952256,513147,134348 +k1,9236:8532930,8778561:164142 +k1,9236:9356365,8778561:164143 +k1,9236:10539592,8778561:164142 +k1,9236:14403241,8778561:164142 +k1,9236:16112723,8778561:164143 +k1,9236:19187319,8778561:164142 +k1,9236:20166729,8778561:164142 +k1,9236:21397142,8778561:164142 +k1,9236:23634189,8778561:164143 +k1,9236:24564447,8778561:164142 +k1,9236:25747674,8778561:164142 +k1,9236:28937614,8778561:164143 +k1,9236:30293201,8778561:164142 +k1,9236:32583029,8778561:0 +) +(1,9237:6630773,9620049:25952256,513147,126483 +k1,9236:9308876,9620049:296525 +k1,9236:10221439,9620049:296525 +k1,9236:12026604,9620049:296526 +k1,9236:13992986,9620049:296525 +k1,9236:15981651,9620049:296525 +k1,9236:17269736,9620049:296525 +k1,9236:18983806,9620049:296526 +k1,9236:21938471,9620049:296525 +k1,9236:22851034,9620049:296525 +k1,9236:24749259,9620049:296525 +k1,9236:26743167,9620049:296526 +k1,9236:29569382,9620049:296525 +k1,9236:31246095,9620049:296525 +k1,9236:32583029,9620049:0 +) +(1,9237:6630773,10461537:25952256,513147,134348 +k1,9236:9137287,10461537:265838 +k1,9236:10086009,10461537:265837 +k1,9236:11099613,10461537:265838 +k1,9236:14140901,10461537:265838 +k1,9236:15022776,10461537:265837 +k1,9236:17275666,10461537:265838 +k1,9236:20379212,10461537:265837 +k1,9236:23179983,10461537:265838 +k1,9236:27301959,10461537:265838 +k1,9236:28672078,10461537:265837 +k1,9236:29685682,10461537:265838 +k1,9236:32583029,10461537:0 +) +(1,9237:6630773,11303025:25952256,513147,134348 +k1,9236:8072365,11303025:250147 +k1,9236:9608329,11303025:250148 +k1,9236:12832500,11303025:250147 +k1,9236:14476598,11303025:250147 +k1,9236:17422241,11303025:250147 +(1,9236:17422241,11303025:0,452978,115847 +r1,9236:20242490,11303025:2820249,568825,115847 +k1,9236:17422241,11303025:-2820249 +) +(1,9236:17422241,11303025:2820249,452978,115847 +k1,9236:17422241,11303025:3277 +h1,9236:20239213,11303025:0,411205,112570 +) +k1,9236:20492638,11303025:250148 +k1,9236:22478178,11303025:250147 +k1,9236:23084185,11303025:250147 +k1,9236:25683142,11303025:250147 +k1,9236:28695633,11303025:250148 +k1,9236:31635378,11303025:250147 +k1,9236:32583029,11303025:0 +) +(1,9237:6630773,12144513:25952256,513147,134348 +k1,9236:7878780,12144513:228922 +k1,9236:11180030,12144513:228922 +k1,9236:12976573,12144513:228922 +k1,9236:14490002,12144513:228923 +k1,9236:16604395,12144513:228922 +k1,9236:17701669,12144513:228922 +k1,9236:21020614,12144513:228922 +k1,9236:22197187,12144513:228922 +k1,9236:23815472,12144513:228922 +k1,9236:26250992,12144513:228923 +k1,9236:27095952,12144513:228922 +k1,9236:29603561,12144513:228922 +h1,9236:31544737,12144513:0,0,0 +k1,9236:31773659,12144513:228922 +k1,9236:32583029,12144513:0 +) +(1,9237:6630773,12986001:25952256,477757,134348 +g1,9236:8328155,12986001 +h1,9236:9125073,12986001:0,0,0 +k1,9237:32583029,12986001:23284286 +g1,9237:32583029,12986001 +) +(1,9238:6630773,15077261:25952256,555811,104529 +(1,9238:6630773,15077261:2450326,534184,12975 +g1,9238:6630773,15077261 +g1,9238:9081099,15077261 +) +g1,9238:13170022,15077261 +g1,9238:17460075,15077261 +g1,9238:19027303,15077261 +k1,9238:32583029,15077261:12301367 +g1,9238:32583029,15077261 +) +(1,9242:6630773,16311965:25952256,505283,134348 +k1,9241:7429961,16311965:171353 +k1,9241:8016130,16311965:171326 +k1,9241:10207959,16311965:171354 +k1,9241:13080051,16311965:171353 +k1,9241:13782901,16311965:171353 +k1,9241:14973340,16311965:171354 +k1,9241:17701252,16311965:171353 +k1,9241:19791500,16311965:171354 +k1,9241:22873307,16311965:171353 +k1,9241:24036221,16311965:171354 +k1,9241:27118683,16311965:171353 +k1,9241:30155271,16311965:171354 +k1,9241:31318184,16311965:171353 +k1,9241:32583029,16311965:0 +) +(1,9242:6630773,17153453:25952256,513147,126483 +k1,9241:7549205,17153453:259140 +k1,9241:11007813,17153453:259140 +k1,9241:12458398,17153453:259140 +k1,9241:14280572,17153453:259140 +k1,9241:16937019,17153453:259140 +k1,9241:18143810,17153453:259140 +k1,9241:20095090,17153453:259140 +k1,9241:23475054,17153453:259140 +k1,9241:26524717,17153453:259140 +k1,9241:28068363,17153453:259140 +k1,9241:29431785,17153453:259140 +k1,9241:30438691,17153453:259140 +k1,9241:32583029,17153453:0 +) +(1,9242:6630773,17994941:25952256,505283,126483 +k1,9241:8168047,17994941:269808 +k1,9241:9208558,17994941:269808 +k1,9241:9893138,17994941:269737 +k1,9241:12511756,17994941:269808 +k1,9241:13432992,17994941:269808 +k1,9241:15418533,17994941:269808 +k1,9241:17327396,17994941:269808 +k1,9241:20381173,17994941:269808 +k1,9241:21375809,17994941:269808 +k1,9241:22930123,17994941:269808 +k1,9241:24580119,17994941:269808 +k1,9241:25954209,17994941:269808 +k1,9241:26971783,17994941:269808 +k1,9241:28754817,17994941:269808 +k1,9241:29640663,17994941:269808 +k1,9241:30929556,17994941:269808 +k1,9241:32583029,17994941:0 +) +(1,9242:6630773,18836429:25952256,513147,126483 +k1,9241:8116897,18836429:248149 +k1,9241:9051209,18836429:248150 +k1,9241:11606881,18836429:248149 +k1,9241:12269825,18836429:248101 +k1,9241:15543771,18836429:248149 +k1,9241:16983366,18836429:248150 +k1,9241:18794549,18836429:248149 +k1,9241:21832566,18836429:248149 +(1,9241:21832566,18836429:0,452978,115847 +r1,9241:25004526,18836429:3171960,568825,115847 +k1,9241:21832566,18836429:-3171960 +) +(1,9241:21832566,18836429:3171960,452978,115847 +k1,9241:21832566,18836429:3277 +h1,9241:25001249,18836429:0,411205,112570 +) +k1,9241:25252676,18836429:248150 +k1,9241:26032322,18836429:248149 +k1,9241:27793698,18836429:248150 +k1,9241:28693275,18836429:248149 +k1,9241:30317681,18836429:248150 +k1,9241:31757275,18836429:248149 +k1,9242:32583029,18836429:0 +) +(1,9242:6630773,19677917:25952256,513147,134348 +k1,9241:8175508,19677917:183552 +k1,9241:11269515,19677917:183553 +k1,9241:12737573,19677917:183552 +k1,9241:13912685,19677917:183552 +k1,9241:16430629,19677917:183552 +k1,9241:19351621,19677917:183553 +k1,9241:20151211,19677917:183552 +k1,9241:21353848,19677917:183552 +k1,9241:23031621,19677917:183552 +k1,9241:23630001,19677917:183537 +k1,9241:26087652,19677917:183552 +k1,9241:26899040,19677917:183553 +k1,9241:29887533,19677917:183552 +k1,9242:32583029,19677917:0 +) +(1,9242:6630773,20519405:25952256,505283,134348 +(1,9241:6630773,20519405:0,452978,122846 +r1,9241:12968140,20519405:6337367,575824,122846 +k1,9241:6630773,20519405:-6337367 +) +(1,9241:6630773,20519405:6337367,452978,122846 +k1,9241:6630773,20519405:3277 +h1,9241:12964863,20519405:0,411205,112570 +) +k1,9241:13219378,20519405:251238 +k1,9241:14002113,20519405:251238 +k1,9241:15766576,20519405:251237 +k1,9241:16669242,20519405:251238 +k1,9241:18889837,20519405:251238 +k1,9241:22225199,20519405:251238 +k1,9241:24259672,20519405:251238 +k1,9241:26246303,20519405:251238 +k1,9241:28921717,20519405:251237 +k1,9241:29631052,20519405:251238 +k1,9241:30413787,20519405:251238 +k1,9241:32583029,20519405:0 +) +(1,9242:6630773,21360893:25952256,505283,122846 +k1,9241:7514603,21360893:232402 +k1,9241:8839490,21360893:232402 +k1,9241:11496069,21360893:232402 +k1,9241:13855770,21360893:232402 +k1,9241:16180738,21360893:232403 +k1,9241:17512834,21360893:232402 +(1,9241:17512834,21360893:0,452978,122846 +r1,9241:23850201,21360893:6337367,575824,122846 +k1,9241:17512834,21360893:-6337367 +) +(1,9241:17512834,21360893:6337367,452978,122846 +k1,9241:17512834,21360893:3277 +h1,9241:23846924,21360893:0,411205,112570 +) +k1,9241:24082603,21360893:232402 +k1,9241:25506450,21360893:232402 +(1,9241:25506450,21360893:0,452978,122846 +r1,9241:31492105,21360893:5985655,575824,122846 +k1,9241:25506450,21360893:-5985655 +) +(1,9241:25506450,21360893:5985655,452978,122846 +k1,9241:25506450,21360893:3277 +h1,9241:31488828,21360893:0,411205,112570 +) +k1,9241:31931601,21360893:232402 +k1,9241:32583029,21360893:0 +) +(1,9242:6630773,22202381:25952256,505283,134348 +g1,9241:8799359,22202381 +g1,9241:9681473,22202381 +g1,9241:12097130,22202381 +k1,9242:32583030,22202381:17401776 +g1,9242:32583030,22202381 +) +v1,9244:6630773,23568157:0,393216,0 +(1,9245:6630773,25846324:25952256,2671383,616038 +g1,9245:6630773,25846324 +(1,9245:6630773,25846324:25952256,2671383,616038 +(1,9245:6630773,26462362:25952256,3287421,0 +[1,9245:6630773,26462362:25952256,3287421,0 +(1,9245:6630773,26436148:25952256,3234993,0 +r1,9245:6656987,26436148:26214,3234993,0 +[1,9245:6656987,26436148:25899828,3234993,0 +(1,9245:6656987,25846324:25899828,2055345,0 +[1,9245:7246811,25846324:24720180,2055345,0 +(1,9245:7246811,24878353:24720180,1087374,134348 +k1,9244:8624580,24878353:168066 +k1,9244:9941492,24878353:168066 +(1,9244:9941492,24878353:0,452978,115847 +r1,9245:11354893,24878353:1413401,568825,115847 +k1,9244:9941492,24878353:-1413401 +) +(1,9244:9941492,24878353:1413401,452978,115847 +k1,9244:9941492,24878353:3277 +h1,9244:11351616,24878353:0,411205,112570 +) +k1,9244:11522959,24878353:168066 +k1,9244:12342453,24878353:168066 +k1,9244:13897261,24878353:168066 +k1,9244:14900910,24878353:168065 +k1,9244:16088061,24878353:168066 +k1,9244:17644180,24878353:168066 +k1,9244:19640700,24878353:168066 +k1,9244:20756417,24878353:168066 +(1,9244:20756417,24878353:0,452978,122846 +r1,9245:27093784,24878353:6337367,575824,122846 +k1,9244:20756417,24878353:-6337367 +) +(1,9244:20756417,24878353:6337367,452978,122846 +k1,9244:20756417,24878353:3277 +h1,9244:27090507,24878353:0,411205,112570 +) +k1,9244:27261850,24878353:168066 +k1,9244:28621361,24878353:168066 +(1,9244:28621361,24878353:0,452978,115847 +r1,9245:31793321,24878353:3171960,568825,115847 +k1,9244:28621361,24878353:-3171960 +) +(1,9244:28621361,24878353:3171960,452978,115847 +k1,9244:28621361,24878353:3277 +h1,9244:31790044,24878353:0,411205,112570 +) +k1,9244:31966991,24878353:0 +) +(1,9245:7246811,25719841:24720180,505283,126483 +g1,9244:8637485,25719841 +g1,9244:11146858,25719841 +g1,9244:12894703,25719841 +g1,9244:14113017,25719841 +g1,9244:15808433,25719841 +g1,9244:16623700,25719841 +g1,9244:17842014,25719841 +g1,9244:19425363,25719841 +g1,9244:21595260,25719841 +k1,9245:31966991,25719841:8705150 +g1,9245:31966991,25719841 +) +] +) +] +r1,9245:32583029,26436148:26214,3234993,0 +) +] +) +) +g1,9245:32583029,25846324 +) +h1,9245:6630773,26462362:0,0,0 +(1,9248:6630773,27828138:25952256,513147,134348 +h1,9247:6630773,27828138:983040,0,0 +k1,9247:8284358,27828138:255702 +k1,9247:11450571,27828138:255759 +k1,9247:12810612,27828138:255759 +k1,9247:13814137,27828138:255759 +k1,9247:16807335,27828138:255759 +k1,9247:18919074,27828138:255759 +k1,9247:20742454,27828138:255759 +k1,9247:23611132,27828138:255758 +k1,9247:24549776,27828138:255759 +k1,9247:26373156,27828138:255759 +k1,9247:28963307,27828138:255759 +k1,9247:30697558,27828138:255759 +k1,9248:32583029,27828138:0 +) +(1,9248:6630773,28669626:25952256,513147,134348 +k1,9247:8507725,28669626:235930 +k1,9247:11715056,28669626:235929 +k1,9247:13518607,28669626:235930 +k1,9247:16367456,28669626:235929 +k1,9247:19965383,28669626:235930 +k1,9247:21010682,28669626:235929 +k1,9247:22265697,28669626:235930 +k1,9247:25255449,28669626:235929 +k1,9247:26828313,28669626:235930 +k1,9247:29356036,28669626:235929 +k1,9247:32583029,28669626:0 +) +(1,9248:6630773,29511114:25952256,513147,102891 +k1,9247:9530205,29511114:140366 +k1,9247:10321999,29511114:140366 +k1,9247:11210131,29511114:140366 +k1,9247:14308137,29511114:140366 +k1,9247:16390990,29511114:140366 +k1,9247:20645050,29511114:140366 +k1,9247:21804501,29511114:140366 +k1,9247:24243215,29511114:140366 +k1,9247:26059992,29511114:140366 +k1,9247:29690150,29511114:140366 +k1,9247:31021961,29511114:140366 +k1,9248:32583029,29511114:0 +) +(1,9248:6630773,30352602:25952256,513147,134348 +k1,9247:8627374,30352602:203536 +k1,9247:9822470,30352602:203536 +k1,9247:11092277,30352602:203536 +k1,9247:14079782,30352602:203536 +k1,9247:14969480,30352602:203536 +k1,9247:16494877,30352602:203536 +k1,9247:17357706,30352602:203537 +k1,9247:18580327,30352602:203536 +k1,9247:21837841,30352602:203536 +k1,9247:24460966,30352602:203536 +k1,9247:27635904,30352602:203536 +k1,9247:29478495,30352602:203536 +k1,9247:30213528,30352602:203536 +k1,9247:31483335,30352602:203536 +k1,9248:32583029,30352602:0 +) +(1,9248:6630773,31194090:25952256,513147,134348 +k1,9247:8546664,31194090:274869 +k1,9247:9507695,31194090:274869 +k1,9247:11162751,31194090:274868 +k1,9247:12429180,31194090:274869 +k1,9247:15488018,31194090:274869 +k1,9247:19820221,31194090:274869 +k1,9247:20711127,31194090:274868 +k1,9247:23921354,31194090:274869 +k1,9247:25573790,31194090:274869 +k1,9247:26981121,31194090:274869 +k1,9247:28786255,31194090:274868 +k1,9247:31391584,31194090:274869 +k1,9248:32583029,31194090:0 +) +(1,9248:6630773,32035578:25952256,513147,173670 +(1,9247:6630773,32035578:1181614,473825,0 +) +(1,9247:8117325,32209248:355205,473825,0 +) +k1,9247:9391219,32035578:209590 +k1,9247:10070701,32035578:209589 +k1,9247:10811788,32035578:209590 +k1,9247:12891776,32035578:209590 +k1,9247:13752793,32035578:209589 +k1,9247:15931740,32035578:209590 +k1,9247:19051784,32035578:209590 +k1,9247:20828994,32035578:209589 +k1,9247:23060370,32035578:209590 +k1,9247:24850688,32035578:209590 +k1,9247:26373619,32035578:209589 +k1,9247:28469335,32035578:209590 +k1,9247:32583029,32035578:0 +) +(1,9248:6630773,32877066:25952256,505283,126483 +k1,9247:8817955,32877066:244695 +k1,9247:10823602,32877066:244695 +k1,9247:12669997,32877066:244695 +k1,9247:14496076,32877066:244695 +k1,9247:15873233,32877066:244695 +k1,9247:16865694,32877066:244695 +k1,9247:20068029,32877066:244695 +k1,9247:20995609,32877066:244695 +k1,9247:22594278,32877066:244695 +k1,9247:24233579,32877066:244695 +k1,9247:25129702,32877066:244695 +k1,9247:27517424,32877066:244695 +k1,9247:28486947,32877066:244695 +k1,9247:29189739,32877066:244695 +k1,9247:29965931,32877066:244695 +k1,9247:31931601,32877066:244695 +k1,9247:32583029,32877066:0 +) +(1,9248:6630773,33718554:25952256,513147,134348 +k1,9247:8852660,33718554:252530 +k1,9247:12015643,33718554:252529 +k1,9247:13835794,33718554:252530 +k1,9247:16701243,33718554:252529 +k1,9247:17995795,33718554:252530 +k1,9247:19120692,33718554:262443 +k1,9247:19783423,33718554:252476 +k1,9247:22124585,33718554:252530 +k1,9247:23837256,33718554:252529 +k1,9247:25108871,33718554:252530 +k1,9247:28187968,33718554:252529 +k1,9247:28971995,33718554:252530 +k1,9247:32583029,33718554:0 +) +(1,9248:6630773,34560042:25952256,513147,134348 +k1,9247:10524048,34560042:255372 +k1,9247:11257177,34560042:255372 +k1,9247:12531634,34560042:255372 +k1,9247:14368389,34560042:255371 +k1,9247:15615321,34560042:255372 +k1,9247:18828333,34560042:255372 +k1,9247:21994159,34560042:255372 +k1,9247:23353813,34560042:255372 +k1,9247:24356950,34560042:255371 +k1,9247:25966296,34560042:255372 +k1,9247:28022597,34560042:255372 +k1,9247:31015408,34560042:255372 +k1,9247:32583029,34560042:0 +) +(1,9248:6630773,35401530:25952256,513147,134348 +k1,9247:9246970,35401530:176947 +k1,9247:10991538,35401530:176947 +k1,9247:13178475,35401530:176948 +k1,9247:15953269,35401530:176947 +k1,9247:19064918,35401530:176947 +k1,9247:21781385,35401530:176947 +k1,9247:22949892,35401530:176947 +k1,9247:24074490,35401530:176947 +k1,9247:25853138,35401530:176948 +k1,9247:28940539,35401530:176947 +k1,9247:30403302,35401530:176947 +k1,9247:32583029,35401530:0 +) +(1,9248:6630773,36243018:25952256,505283,7863 +k1,9248:32583029,36243018:22994616 +g1,9248:32583029,36243018 +) +(1,9249:6630773,38334278:25952256,555811,147783 +(1,9249:6630773,38334278:2450326,534184,12975 +g1,9249:6630773,38334278 +g1,9249:9081099,38334278 +) +g1,9249:12040378,38334278 +g1,9249:15130860,38334278 +k1,9249:32583029,38334278:14104328 +g1,9249:32583029,38334278 +) +(1,9252:6630773,39568982:25952256,513147,134348 +k1,9251:8064281,39568982:168008 +k1,9251:8883717,39568982:168008 +k1,9251:10070811,39568982:168009 +k1,9251:11809717,39568982:168008 +k1,9251:14463506,39568982:168008 +k1,9251:15290806,39568982:168008 +k1,9251:19188469,39568982:168009 +k1,9251:19771289,39568982:167977 +k1,9251:22849751,39568982:168008 +k1,9251:23475856,39568982:168008 +k1,9251:24748146,39568982:168008 +k1,9251:28364004,39568982:168009 +k1,9251:29279778,39568982:168008 +k1,9251:31931601,39568982:168008 +k1,9251:32583029,39568982:0 +) +(1,9252:6630773,40410470:25952256,513147,134348 +k1,9251:8087947,40410470:191018 +k1,9251:8634825,40410470:191018 +k1,9251:11337838,40410470:191018 +k1,9251:14109008,40410470:191018 +k1,9251:15247677,40410470:191018 +k1,9251:15794555,40410470:191018 +k1,9251:17321197,40410470:191018 +k1,9251:18124977,40410470:191018 +k1,9251:20095954,40410470:191019 +k1,9251:20756865,40410470:191018 +k1,9251:21479380,40410470:191018 +k1,9251:23254403,40410470:191018 +k1,9251:24096849,40410470:191018 +k1,9251:25594000,40410470:191018 +k1,9251:27606919,40410470:191018 +k1,9251:28263898,40410470:191018 +k1,9251:29474001,40410470:191018 +k1,9251:32583029,40410470:0 +) +(1,9252:6630773,41251958:25952256,505283,134348 +k1,9251:10016371,41251958:293609 +k1,9251:10841477,41251958:293609 +k1,9251:13469478,41251958:293609 +k1,9251:15241580,41251958:293610 +k1,9251:16802655,41251958:293609 +k1,9251:18530192,41251958:293609 +k1,9251:19412314,41251958:293609 +k1,9251:21138540,41251958:293609 +k1,9251:21846898,41251958:293515 +k1,9251:23511520,41251958:293609 +k1,9251:24824214,41251958:293609 +k1,9251:29672575,41251958:293609 +k1,9251:32583029,41251958:0 +) +(1,9252:6630773,42093446:25952256,513147,134348 +k1,9251:9775191,42093446:199885 +k1,9251:11673114,42093446:199885 +k1,9251:12287841,42093446:199884 +k1,9251:13019223,42093446:199885 +k1,9251:16163641,42093446:199885 +k1,9251:18084500,42093446:199884 +k1,9251:18640245,42093446:199885 +k1,9251:19696686,42093446:199885 +k1,9251:20555863,42093446:199885 +k1,9251:23236941,42093446:199885 +k1,9251:24265856,42093446:199885 +k1,9251:26895815,42093446:199884 +k1,9251:28485063,42093446:199885 +k1,9251:30420341,42093446:199885 +k1,9251:32583029,42093446:0 +) +(1,9252:6630773,42934934:25952256,513147,126483 +k1,9251:7995636,42934934:233056 +k1,9251:8887984,42934934:233056 +k1,9251:10140125,42934934:233056 +k1,9251:12023378,42934934:233056 +k1,9251:15033850,42934934:233056 +k1,9251:18351030,42934934:233056 +k1,9251:21368711,42934934:233056 +k1,9251:23094677,42934934:233056 +k1,9251:24394004,42934934:233056 +k1,9251:26918854,42934934:233056 +k1,9251:28170995,42934934:233056 +k1,9251:29496536,42934934:233056 +k1,9251:30388884,42934934:233056 +k1,9251:32583029,42934934:0 +) +(1,9252:6630773,43776422:25952256,513147,134348 +k1,9251:9926824,43776422:211927 +k1,9251:13785174,43776422:211927 +k1,9251:17726755,43776422:211927 +k1,9251:20849136,43776422:211927 +k1,9251:24017392,43776422:211927 +k1,9251:24912204,43776422:211927 +k1,9251:27276333,43776422:211927 +k1,9251:28507345,43776422:211927 +k1,9251:32583029,43776422:0 +) +(1,9252:6630773,44617910:25952256,513147,134348 +k1,9251:7406628,44617910:159817 +k1,9251:9000373,44617910:159817 +k1,9251:9574994,44617910:159778 +k1,9251:11128762,44617910:159817 +k1,9251:14701039,44617910:159817 +k1,9251:16644090,44617910:159816 +k1,9251:17960617,44617910:159817 +k1,9251:21181621,44617910:159817 +k1,9251:22360523,44617910:159817 +k1,9251:23612825,44617910:159817 +k1,9251:24431934,44617910:159817 +k1,9251:26310760,44617910:159817 +k1,9251:27153462,44617910:159817 +k1,9251:30866641,44617910:159817 +k1,9251:32583029,44617910:0 +) +(1,9252:6630773,45459398:25952256,513147,134348 +k1,9251:7464744,45459398:174679 +k1,9251:9028785,45459398:174678 +k1,9251:11931728,45459398:174679 +k1,9251:13125491,45459398:174678 +k1,9251:14392655,45459398:174679 +k1,9251:15226625,45459398:174678 +k1,9251:19130958,45459398:174679 +k1,9251:22216090,45459398:174678 +k1,9251:23495051,45459398:174679 +k1,9251:24417495,45459398:174678 +k1,9251:28633779,45459398:174679 +k1,9251:30298746,45459398:174678 +k1,9251:31089463,45459398:174679 +k1,9251:32583029,45459398:0 +) +] +(1,9252:32583029,45706769:0,0,0 +g1,9252:32583029,45706769 +) +) +] +(1,9252:6630773,47279633:25952256,0,0 +h1,9252:6630773,47279633:25952256,0,0 +) +] +h1,9252:4262630,4025873:0,0,0 +] +!24242 }174 !12 {175 -[1,9264:4262630,47279633:28320399,43253760,0 -(1,9264:4262630,4025873:0,0,0 -[1,9264:-473657,4025873:25952256,0,0 -(1,9264:-473657,-710414:25952256,0,0 -h1,9264:-473657,-710414:0,0,0 -(1,9264:-473657,-710414:0,0,0 -(1,9264:-473657,-710414:0,0,0 -g1,9264:-473657,-710414 -(1,9264:-473657,-710414:65781,0,65781 -g1,9264:-407876,-710414 -[1,9264:-407876,-644633:0,0,0 +[1,9270:4262630,47279633:28320399,43253760,0 +(1,9270:4262630,4025873:0,0,0 +[1,9270:-473657,4025873:25952256,0,0 +(1,9270:-473657,-710414:25952256,0,0 +h1,9270:-473657,-710414:0,0,0 +(1,9270:-473657,-710414:0,0,0 +(1,9270:-473657,-710414:0,0,0 +g1,9270:-473657,-710414 +(1,9270:-473657,-710414:65781,0,65781 +g1,9270:-407876,-710414 +[1,9270:-407876,-644633:0,0,0 ] ) -k1,9264:-473657,-710414:-65781 +k1,9270:-473657,-710414:-65781 ) ) -k1,9264:25478599,-710414:25952256 -g1,9264:25478599,-710414 +k1,9270:25478599,-710414:25952256 +g1,9270:25478599,-710414 ) ] ) -[1,9264:6630773,47279633:25952256,43253760,0 -[1,9264:6630773,4812305:25952256,786432,0 -(1,9264:6630773,4812305:25952256,505283,134348 -(1,9264:6630773,4812305:25952256,505283,134348 -g1,9264:3078558,4812305 -[1,9264:3078558,4812305:0,0,0 -(1,9264:3078558,2439708:0,1703936,0 -k1,9264:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9264:2537886,2439708:1179648,16384,0 +[1,9270:6630773,47279633:25952256,43253760,0 +[1,9270:6630773,4812305:25952256,786432,0 +(1,9270:6630773,4812305:25952256,505283,134348 +(1,9270:6630773,4812305:25952256,505283,134348 +g1,9270:3078558,4812305 +[1,9270:3078558,4812305:0,0,0 +(1,9270:3078558,2439708:0,1703936,0 +k1,9270:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9270:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9264:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9270:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9264:3078558,4812305:0,0,0 -(1,9264:3078558,2439708:0,1703936,0 -g1,9264:29030814,2439708 -g1,9264:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9264:36151628,1915420:16384,1179648,0 +[1,9270:3078558,4812305:0,0,0 +(1,9270:3078558,2439708:0,1703936,0 +g1,9270:29030814,2439708 +g1,9270:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9270:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9264:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9270:37855564,2439708:1179648,16384,0 ) ) -k1,9264:3078556,2439708:-34777008 +k1,9270:3078556,2439708:-34777008 ) ] -[1,9264:3078558,4812305:0,0,0 -(1,9264:3078558,49800853:0,16384,2228224 -k1,9264:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9264:2537886,49800853:1179648,16384,0 +[1,9270:3078558,4812305:0,0,0 +(1,9270:3078558,49800853:0,16384,2228224 +k1,9270:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9270:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9264:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9270:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) -) -) -] -[1,9264:3078558,4812305:0,0,0 -(1,9264:3078558,49800853:0,16384,2228224 -g1,9264:29030814,49800853 -g1,9264:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9264:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] -) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9264:37855564,49800853:1179648,16384,0 -) -) -k1,9264:3078556,49800853:-34777008 -) -] -g1,9264:6630773,4812305 -k1,9264:20873058,4812305:13046908 -g1,9264:22259799,4812305 -g1,9264:22908605,4812305 -g1,9264:26222760,4812305 -g1,9264:28614824,4812305 -g1,9264:30094627,4812305 -) -) -] -[1,9264:6630773,45706769:25952256,40108032,0 -(1,9264:6630773,45706769:25952256,40108032,0 -(1,9264:6630773,45706769:0,0,0 -g1,9264:6630773,45706769 -) -[1,9264:6630773,45706769:25952256,40108032,0 -(1,9247:6630773,6254097:25952256,513147,134348 -k1,9246:7464744,6254097:174679 -k1,9246:9028785,6254097:174678 -k1,9246:11931728,6254097:174679 -k1,9246:13125491,6254097:174678 -k1,9246:14392655,6254097:174679 -k1,9246:15226625,6254097:174678 -k1,9246:19130958,6254097:174679 -k1,9246:22216090,6254097:174678 -k1,9246:23495051,6254097:174679 -k1,9246:24417495,6254097:174678 -k1,9246:28633779,6254097:174679 -k1,9246:30298746,6254097:174678 -k1,9246:31089463,6254097:174679 -k1,9246:32583029,6254097:0 -) -(1,9247:6630773,7095585:25952256,513147,102891 -k1,9246:8762105,7095585:260279 -k1,9246:9480480,7095585:260278 -k1,9246:10272256,7095585:260279 -k1,9246:11598806,7095585:260279 -k1,9246:14409745,7095585:260278 -k1,9246:15321452,7095585:260279 -k1,9246:17056946,7095585:260279 -k1,9246:21034427,7095585:260279 -k1,9246:21946133,7095585:260278 -k1,9246:24421529,7095585:260279 -k1,9246:26249429,7095585:260279 -k1,9246:28519696,7095585:260278 -k1,9246:29799060,7095585:260279 -k1,9246:32583029,7095585:0 -) -(1,9247:6630773,7937073:25952256,513147,134348 -k1,9246:10641380,7937073:280953 -k1,9246:14006457,7937073:280953 -k1,9246:17760162,7937073:280952 -k1,9246:20264096,7937073:280953 -k1,9246:21227934,7937073:280953 -k1,9246:23389770,7937073:280953 -k1,9246:24330015,7937073:280953 -k1,9246:27521421,7937073:280952 -k1,9246:28793934,7937073:280953 -k1,9246:31931601,7937073:280953 -k1,9246:32583029,7937073:0 -) -(1,9247:6630773,8778561:25952256,505283,134348 -g1,9246:8426459,8778561 -g1,9246:9904295,8778561 -k1,9247:32583028,8778561:19824640 -g1,9247:32583028,8778561 -) -(1,9249:6630773,9620049:25952256,505283,126483 -h1,9248:6630773,9620049:983040,0,0 -k1,9248:9183773,9620049:373273 -k1,9248:11437099,9620049:373098 -k1,9248:15093726,9620049:373273 -k1,9248:16568005,9620049:373274 -k1,9248:18295252,9620049:373273 -k1,9248:20528437,9620049:373273 -k1,9248:22728198,9620049:373273 -k1,9248:24292916,9620049:373273 -k1,9248:27334160,9620049:373273 -k1,9248:28063293,9620049:373273 -k1,9248:30715253,9620049:373273 -k1,9248:32583029,9620049:0 -) -(1,9249:6630773,10461537:25952256,513147,134348 -k1,9248:9404618,10461537:242845 -k1,9248:10062261,10461537:242800 -k1,9248:12062126,10461537:242845 -k1,9248:13296531,10461537:242845 -k1,9248:14808152,10461537:242844 -k1,9248:16879451,10461537:242845 -k1,9248:20195279,10461537:242845 -k1,9248:23655941,10461537:242844 -k1,9248:25222613,10461537:242845 -k1,9248:26124749,10461537:242844 -k1,9248:29278048,10461537:242845 -k1,9248:32583029,10461537:0 -) -(1,9249:6630773,11303025:25952256,513147,134348 -k1,9248:8388627,11303025:244628 -k1,9248:10643244,11303025:244628 -k1,9248:11243732,11303025:244628 -k1,9248:13183121,11303025:244628 -k1,9248:14831530,11303025:244628 -k1,9248:15735450,11303025:244628 -k1,9248:18859730,11303025:244628 -k1,9248:22830080,11303025:244628 -k1,9248:23757593,11303025:244628 -k1,9248:26399528,11303025:244628 -k1,9248:30708699,11303025:244628 -k1,9248:32583029,11303025:0 -) -(1,9249:6630773,12144513:25952256,513147,126484 -k1,9248:8629369,12144513:241576 -k1,9248:9862504,12144513:241575 -k1,9248:12098341,12144513:241576 -k1,9248:13531361,12144513:241575 -k1,9248:16410106,12144513:241576 -k1,9248:17413209,12144513:241575 -k1,9248:20417128,12144513:241576 -k1,9248:23071739,12144513:241575 -k1,9248:24871106,12144513:241576 -k1,9248:26216963,12144513:241575 -k1,9248:27206305,12144513:241576 -k1,9248:29357599,12144513:241575 -k1,9248:30211937,12144513:241576 -$1,9248:30211937,12144513 -k1,9248:32187847,12144513:0 -k1,9249:32583029,12144513:0 -) -(1,9249:6630773,12986001:25952256,505283,134349 -g1,9248:7025955,12986001 -g1,9248:7421137,12986001 -g1,9248:9001865,12986001 -g1,9248:9397047,12986001 -(1,9248:10187411,13084315:32768,0,0 -) -g1,9248:12986453,12986001 -g1,9248:13381635,12986001 -g1,9248:14567181,12986001 -g1,9248:14962363,12986001 -g1,9248:16147909,12986001 -g1,9248:16543091,12986001 -$1,9248:18914183,12986001 -k1,9249:32583029,12986001:13495176 -g1,9249:32583029,12986001 -) -(1,9251:6630773,13827489:25952256,513147,126483 -h1,9250:6630773,13827489:983040,0,0 -k1,9250:9077166,13827489:266666 -k1,9250:13590565,13827489:266666 -k1,9250:17140585,13827489:266666 -k1,9250:20870173,13827489:266666 -k1,9250:21752877,13827489:266666 -k1,9250:26677187,13827489:266666 -k1,9250:28337804,13827489:266666 -k1,9250:29192983,13827489:266666 -k1,9250:29929542,13827489:266666 -k1,9250:31482024,13827489:266666 -k1,9250:32583029,13827489:0 -) -(1,9251:6630773,14668977:25952256,513147,126483 -k1,9250:7204813,14668977:218180 -k1,9250:9701681,14668977:218181 -k1,9250:11313812,14668977:218180 -k1,9250:13889322,14668977:218180 -k1,9250:15298947,14668977:218180 -k1,9250:17527117,14668977:218181 -k1,9250:18377064,14668977:218180 -k1,9250:22535268,14668977:218180 -k1,9250:23412740,14668977:218180 -k1,9250:26393264,14668977:218181 -k1,9250:28000807,14668977:218180 -k1,9250:30773580,14668977:218180 -k1,9251:32583029,14668977:0 -) -(1,9251:6630773,15510465:25952256,513147,134348 -k1,9250:8755942,15510465:271155 -k1,9250:10223784,15510465:271155 -k1,9250:13771740,15510465:271156 -k1,9250:15034455,15510465:271155 -k1,9250:18413327,15510465:271155 -k1,9250:20268487,15510465:271155 -k1,9250:21225804,15510465:271155 -k1,9250:22877147,15510465:271155 -k1,9250:25049502,15510465:271156 -k1,9250:27206128,15510465:271155 -k1,9250:28742128,15510465:271155 -k1,9250:29672575,15510465:271155 -k1,9250:32583029,15510465:0 -) -(1,9251:6630773,16351953:25952256,513147,134348 -k1,9250:8486971,16351953:259741 -k1,9250:10025319,16351953:259741 -k1,9250:13139153,16351953:259741 -k1,9250:15273224,16351953:259741 -k1,9250:17289986,16351953:259742 -k1,9250:18654009,16351953:259741 -k1,9250:19661516,16351953:259741 -k1,9250:21830976,16351953:259741 -k1,9250:22703479,16351953:259741 -$1,9250:22703479,16351953 -k1,9250:24679389,16351953:0 -k1,9250:25074571,16351953:0 -k1,9250:25469753,16351953:0 -k1,9250:25864935,16351953:0 -k1,9250:27050481,16351953:0 -k1,9250:27445663,16351953:0 -k1,9250:32187847,16351953:0 -k1,9251:32583029,16351953:0 -) -(1,9251:6630773,17193441:25952256,505283,134349 -g1,9250:7816319,17193441 -g1,9250:8211501,17193441 -g1,9250:11372957,17193441 -g1,9250:11768139,17193441 -g1,9250:14534413,17193441 -g1,9250:14929595,17193441 -g1,9250:18486233,17193441 -g1,9250:18881415,17193441 -$1,9250:20462143,17193441 -k1,9251:32583029,17193441:11947216 -g1,9251:32583029,17193441 -) -(1,9253:6630773,18034929:25952256,513147,134348 -h1,9252:6630773,18034929:983040,0,0 -k1,9252:10795467,18034929:218771 -k1,9252:14041346,18034929:218771 -k1,9252:15753027,18034929:218771 -k1,9252:17038069,18034929:218771 -k1,9252:18764823,18034929:218771 -k1,9252:19339454,18034929:218771 -k1,9252:22260930,18034929:218771 -k1,9252:25059853,18034929:218771 -k1,9252:28561978,18034929:218771 -k1,9252:29728400,18034929:218771 -k1,9252:30966256,18034929:218771 -k1,9253:32583029,18034929:0 -) -(1,9253:6630773,18876417:25952256,513147,134349 -k1,9252:9721713,18876417:260440 -k1,9252:13066278,18876417:260441 -k1,9252:14706906,18876417:260440 -k1,9252:15782614,18876417:260440 -k1,9252:17551038,18876417:260441 -k1,9252:18582181,18876417:260440 -k1,9252:20591777,18876417:260440 -k1,9252:21511509,18876417:260440 -k1,9252:23411005,18876417:260441 -k1,9252:24284207,18876417:260440 -$1,9252:24284207,18876417 -k1,9252:26260117,18876417:0 -k1,9252:26655299,18876417:0 -k1,9252:27050481,18876417:0 -k1,9252:27445663,18876417:0 -k1,9252:30607119,18876417:0 -k1,9252:31002301,18876417:0 -k1,9252:32187847,18876417:0 -k1,9253:32583029,18876417:0 -) -(1,9253:6630773,19717905:25952256,505283,134349 -$1,9252:10187411,19717905 -k1,9253:32583029,19717905:22221948 -g1,9253:32583029,19717905 -) -(1,9255:6630773,20559393:25952256,513147,134348 -h1,9254:6630773,20559393:983040,0,0 -k1,9254:9062272,20559393:251772 -k1,9254:11194219,20559393:251719 -k1,9254:14729345,20559393:251772 -k1,9254:16819402,20559393:251772 -k1,9254:17841876,20559393:251771 -k1,9254:20391996,20559393:251772 -k1,9254:21303060,20559393:251772 -k1,9254:23588414,20559393:251772 -k1,9254:26504225,20559393:251772 -k1,9254:27415288,20559393:251771 -k1,9254:30751184,20559393:251772 -k1,9254:31812326,20559393:251772 -k1,9254:32583029,20559393:0 -) -(1,9255:6630773,21400881:25952256,513147,134349 -k1,9254:9979914,21400881:156227 -k1,9254:12716293,21400881:156227 -k1,9254:14664274,21400881:156227 -k1,9254:18557321,21400881:156184 -$1,9254:18764415,21400881 -k1,9254:20740325,21400881:0 -k1,9254:21135507,21400881:0 -k1,9254:21530689,21400881:0 -k1,9254:21925871,21400881:0 -k1,9254:23111417,21400881:0 -k1,9254:23506599,21400881:0 -(1,9254:24296963,21499195:32768,0,0 -) -k1,9254:25515277,21400881:0 -k1,9254:25910459,21400881:0 -$1,9254:27491187,21400881 -k1,9254:27854508,21400881:156227 -k1,9254:28542232,21400881:156227 -k1,9254:29469162,21400881:156227 -k1,9254:31923737,21400881:156227 -k1,9254:32583029,21400881:0 -) -(1,9255:6630773,22242369:25952256,513147,126483 -k1,9254:10820621,22242369:215089 -k1,9254:12320216,22242369:215089 -k1,9254:14373590,22242369:215089 -k1,9254:14944539,22242369:215089 -k1,9254:18141516,22242369:215089 -k1,9254:20429509,22242369:215089 -k1,9254:21330760,22242369:215089 -k1,9254:24794469,22242369:215089 -k1,9254:26577179,22242369:215089 -k1,9254:28846166,22242369:215089 -k1,9254:32583029,22242369:0 -) -(1,9255:6630773,23083857:25952256,513147,134348 -k1,9254:8339051,23083857:285491 -k1,9254:8980403,23083857:285492 -k1,9254:12028237,23083857:285491 -k1,9254:14384011,23083857:285492 -k1,9254:16769276,23083857:285491 -k1,9254:18497215,23083857:285492 -k1,9254:20662847,23083857:285404 -k1,9254:22727641,23083857:285492 -k1,9254:25371773,23083857:285491 -k1,9254:26115362,23083857:285492 -k1,9254:28271251,23083857:285491 -k1,9254:29208171,23083857:285492 -k1,9254:31563944,23083857:285491 -k1,9254:32583029,23083857:0 -) -(1,9255:6630773,23925345:25952256,505283,126483 -g1,9254:8712851,23925345 -k1,9255:32583029,23925345:20413154 -g1,9255:32583029,23925345 -) -(1,9256:6630773,26732913:25952256,32768,229376 -(1,9256:6630773,26732913:0,32768,229376 -(1,9256:6630773,26732913:5505024,32768,229376 -r1,9256:12135797,26732913:5505024,262144,229376 -) -k1,9256:6630773,26732913:-5505024 -) -(1,9256:6630773,26732913:25952256,32768,0 -r1,9256:32583029,26732913:25952256,32768,0 -) -) -(1,9256:6630773,28337241:25952256,615776,161218 -(1,9256:6630773,28337241:1974731,582746,14155 -g1,9256:6630773,28337241 -g1,9256:8605504,28337241 -) -g1,9256:12201071,28337241 -g1,9256:16200864,28337241 -g1,9256:17910567,28337241 -k1,9256:32583029,28337241:10865345 -g1,9256:32583029,28337241 -) -(1,9260:6630773,29571945:25952256,513147,134348 -k1,9259:10459744,29571945:198276 -k1,9259:11762302,29571945:198276 -k1,9259:12708344,29571945:198276 -k1,9259:15288198,29571945:198276 -k1,9259:16172636,29571945:198276 -k1,9259:19716525,29571945:198276 -k1,9259:20933886,29571945:198276 -k1,9259:25203258,29571945:198276 -k1,9259:28697340,29571945:198276 -k1,9259:30463237,29571945:198276 -k1,9259:31680598,29571945:198276 -k1,9260:32583029,29571945:0 -) -(1,9260:6630773,30413433:25952256,513147,134348 -k1,9259:9353279,30413433:186918 -k1,9259:11200879,30413433:186918 -k1,9259:12459966,30413433:186918 -k1,9259:15660885,30413433:186918 -k1,9259:16866888,30413433:186918 -k1,9259:18791821,30413433:186918 -k1,9259:20546360,30413433:186918 -k1,9259:21089138,30413433:186918 -k1,9259:22970817,30413433:186918 -k1,9259:25135612,30413433:186918 -k1,9259:25981822,30413433:186918 -k1,9259:28984822,30413433:186918 -k1,9259:29703237,30413433:186918 -k1,9259:30660858,30413433:186918 -k1,9259:32583029,30413433:0 -) -(1,9260:6630773,31254921:25952256,513147,126483 -k1,9259:10082792,31254921:204055 -k1,9259:12119234,31254921:204055 -k1,9259:13427572,31254921:204056 -k1,9259:14379393,31254921:204055 -k1,9259:16335225,31254921:204055 -k1,9259:18032846,31254921:204055 -k1,9259:21641496,31254921:204055 -k1,9259:22654921,31254921:204055 -k1,9259:25621320,31254921:204056 -k1,9259:28445504,31254921:204055 -k1,9259:31131407,31254921:204055 -k1,9259:32583029,31254921:0 -) -(1,9260:6630773,32096409:25952256,513147,134348 -k1,9259:7987166,32096409:199683 -k1,9259:8542709,32096409:199683 -k1,9259:11139699,32096409:199683 -k1,9259:12880134,32096409:199684 -k1,9259:14863052,32096409:199683 -k1,9259:15931087,32096409:199683 -k1,9259:18800051,32096409:199683 -k1,9259:19770437,32096409:199683 -k1,9259:23081114,32096409:199683 -k1,9259:24228449,32096409:199684 -k1,9259:27858942,32096409:199683 -k1,9259:29077710,32096409:199683 -k1,9259:31015408,32096409:199683 -k1,9259:32583029,32096409:0 -) -(1,9260:6630773,32937897:25952256,513147,126483 -k1,9259:7916449,32937897:153869 -k1,9259:10690447,32937897:153869 -k1,9259:12822194,32937897:153870 -k1,9259:13844415,32937897:153869 -k1,9259:15473499,32937897:153869 -k1,9259:17977489,32937897:153869 -k1,9259:19150443,32937897:153869 -k1,9259:22893064,32937897:153870 -k1,9259:23706225,32937897:153869 -k1,9259:25803891,32937897:153869 -k1,9259:26585595,32937897:153869 -k1,9259:27758550,32937897:153870 -k1,9259:29565892,32937897:153869 -k1,9259:31131407,32937897:153869 -k1,9259:32583029,32937897:0 -) -(1,9260:6630773,33779385:25952256,513147,126483 -k1,9259:8222844,33779385:166663 -k1,9259:9257859,33779385:166663 -k1,9259:12127227,33779385:166663 -k1,9259:15698485,33779385:166663 -k1,9259:17432769,33779385:166663 -k1,9259:19996739,33779385:166663 -k1,9259:21552766,33779385:166664 -k1,9259:22587781,33779385:166663 -k1,9259:24683824,33779385:166663 -k1,9259:25206347,33779385:166663 -k1,9259:26656205,33779385:166663 -k1,9259:30585290,33779385:166663 -k1,9259:31379788,33779385:166663 -k1,9259:32583029,33779385:0 -) -(1,9260:6630773,34620873:25952256,513147,126483 -k1,9259:8849345,34620873:274774 -k1,9259:12149917,34620873:274775 -k1,9259:13416251,34620873:274774 -k1,9259:17610079,34620873:274775 -k1,9259:18544145,34620873:274774 -k1,9259:22223515,34620873:274775 -k1,9259:23181174,34620873:274774 -k1,9259:25916826,34620873:274775 -k1,9259:27571788,34620873:274774 -k1,9259:28838123,34620873:274775 -k1,9259:30259122,34620873:274774 -k1,9259:32583029,34620873:0 -) -(1,9260:6630773,35462361:25952256,513147,134348 -g1,9259:10142192,35462361 -g1,9259:12628628,35462361 -g1,9259:16096793,35462361 -g1,9259:17863643,35462361 -k1,9260:32583029,35462361:12586189 -g1,9260:32583029,35462361 -) -(1,9262:6630773,36303849:25952256,513147,134348 -h1,9261:6630773,36303849:983040,0,0 -k1,9261:9063116,36303849:252616 -k1,9261:10907602,36303849:252616 -k1,9261:12395572,36303849:252616 -k1,9261:13307480,36303849:252616 -k1,9261:16585893,36303849:252616 -k1,9261:17370006,36303849:252616 -k1,9261:18907129,36303849:252617 -k1,9261:19819037,36303849:252616 -k1,9261:23144636,36303849:252616 -k1,9261:24167955,36303849:252616 -k1,9261:28009322,36303849:252616 -k1,9261:30933841,36303849:252616 -k1,9261:31931601,36303849:252616 -k1,9261:32583029,36303849:0 -) -(1,9262:6630773,37145337:25952256,513147,134348 -k1,9261:8609781,37145337:249513 -k1,9261:11866087,37145337:249514 -k1,9261:14172120,37145337:249513 -k1,9261:15080925,37145337:249513 -k1,9261:16826625,37145337:249513 -k1,9261:19506214,37145337:249514 -k1,9261:20415019,37145337:249513 -k1,9261:24388288,37145337:249513 -k1,9261:27391624,37145337:249513 -k1,9261:28660223,37145337:249514 -k1,9261:30563209,37145337:249513 -k1,9262:32583029,37145337:0 -) -(1,9262:6630773,37986825:25952256,513147,126483 -k1,9261:8457614,37986825:229073 -k1,9261:9496058,37986825:229074 -k1,9261:12487474,37986825:229073 -k1,9261:14279582,37986825:229074 -k1,9261:15705342,37986825:229073 -k1,9261:18395947,37986825:229073 -k1,9261:19276449,37986825:229074 -k1,9261:21235017,37986825:229073 -k1,9261:24593434,37986825:229073 -k1,9261:25481800,37986825:229074 -k1,9261:27912883,37986825:229073 -k1,9261:30198477,37986825:229074 -k1,9261:31086842,37986825:229073 -k1,9261:32583029,37986825:0 -) -(1,9262:6630773,38828313:25952256,513147,134348 -k1,9261:10398328,38828313:250893 -k1,9261:11640782,38828313:250894 -k1,9261:13176182,38828313:250894 -k1,9261:14032628,38828313:250893 -k1,9261:14749482,38828313:250893 -k1,9261:16019461,38828313:250894 -k1,9261:19381349,38828313:250894 -k1,9261:20315127,38828313:250893 -k1,9261:25622778,38828313:250893 -k1,9261:27734239,38828313:250894 -k1,9261:28636561,38828313:250894 -k1,9261:29635220,38828313:250893 -k1,9262:32583029,38828313:0 -) -(1,9262:6630773,39669801:25952256,513147,134348 -k1,9261:8116912,39669801:243576 -k1,9261:9011915,39669801:243575 -k1,9261:10051098,39669801:243576 -k1,9261:10650533,39669801:243575 -k1,9261:12083587,39669801:243576 -k1,9261:13010047,39669801:243575 -k1,9261:15974022,39669801:243576 -k1,9261:16749094,39669801:243575 -k1,9261:18327638,39669801:243576 -k1,9261:19222641,39669801:243575 -k1,9261:21181950,39669801:243576 -k1,9261:22982005,39669801:243575 -k1,9261:23841619,39669801:243576 -k1,9261:24441054,39669801:243575 -k1,9261:26557649,39669801:243576 -k1,9261:28637543,39669801:243575 -k1,9261:29486672,39669801:243576 -k1,9261:31900144,39669801:243575 -k1,9261:32583029,39669801:0 -) -(1,9262:6630773,40511289:25952256,513147,134348 -k1,9261:8289251,40511289:204889 -k1,9261:10474638,40511289:204889 -k1,9261:11338819,40511289:204889 -k1,9261:14328333,40511289:204889 -k1,9261:16029409,40511289:204889 -k1,9261:17338581,40511289:204890 -k1,9261:19986652,40511289:204889 -k1,9261:22953884,40511289:204889 -k1,9261:25478092,40511289:204889 -k1,9261:26334409,40511289:204889 -k1,9261:31391584,40511289:204889 -k1,9261:32583029,40511289:0 -) -(1,9262:6630773,41352777:25952256,513147,134348 -k1,9261:11031754,41352777:216507 -k1,9261:12941711,41352777:216507 -k1,9261:13763772,41352777:216508 -k1,9261:17569030,41352777:216507 -k1,9261:18976982,41352777:216507 -k1,9261:21714659,41352777:216507 -k1,9261:22590458,41352777:216507 -k1,9261:23162825,41352777:216507 -k1,9261:26055823,41352777:216508 -k1,9261:27539796,41352777:216507 -k1,9261:30108390,41352777:216507 -k1,9261:32583029,41352777:0 -) -(1,9262:6630773,42194265:25952256,505283,134348 -k1,9261:9080032,42194265:260356 -k1,9261:11058743,42194265:260357 -k1,9261:12713050,42194265:260356 -k1,9261:15471639,42194265:260357 -k1,9261:16751080,42194265:260356 -k1,9261:18507624,42194265:260357 -k1,9261:23741507,42194265:260356 -k1,9261:24653292,42194265:260357 -k1,9261:27637980,42194265:260356 -k1,9261:28503890,42194265:260357 -k1,9261:30966256,42194265:260356 -k1,9262:32583029,42194265:0 -) -(1,9262:6630773,43035753:25952256,513147,134348 -k1,9261:8608769,43035753:252433 -k1,9261:10907235,43035753:252432 -k1,9261:12178753,43035753:252433 -k1,9261:14262262,43035753:252433 -k1,9261:15497734,43035753:252432 -k1,9261:17948245,43035753:252433 -k1,9261:19392122,43035753:252432 -k1,9261:20847796,43035753:252433 -k1,9261:23146263,43035753:252433 -k1,9261:26894385,43035753:252432 -k1,9261:31297868,43035753:252433 -k1,9261:32583029,43035753:0 -) -(1,9262:6630773,43877241:25952256,505283,126483 -g1,9261:8480199,43877241 -g1,9261:11218948,43877241 -g1,9261:12609622,43877241 -g1,9261:14415794,43877241 -k1,9262:32583029,43877241:16127755 -g1,9262:32583029,43877241 -) -(1,9264:6630773,44718729:25952256,513147,134348 -h1,9263:6630773,44718729:983040,0,0 -k1,9263:9247532,44718729:212898 -k1,9263:10275699,44718729:212899 -k1,9263:11530619,44718729:212898 -k1,9263:12359555,44718729:212898 -k1,9263:15283678,44718729:212899 -k1,9263:17226071,44718729:212898 -k1,9263:20445762,44718729:212899 -k1,9263:21847483,44718729:212898 -k1,9263:22719673,44718729:212898 -k1,9263:24755784,44718729:212899 -k1,9263:25922231,44718729:212898 -k1,9263:27749936,44718729:212898 -k1,9263:28318695,44718729:212899 -k1,9263:31227089,44718729:212898 -k1,9264:32583029,44718729:0 -) -(1,9264:6630773,45560217:25952256,505283,134348 -k1,9263:9060333,45560217:210511 -k1,9263:10289929,45560217:210511 -k1,9263:14017101,45560217:210510 -k1,9263:15512118,45560217:210511 -k1,9263:16590981,45560217:210511 -k1,9263:18757742,45560217:210511 -k1,9263:20498519,45560217:210511 -k1,9263:21360457,45560217:210510 -k1,9263:23761181,45560217:210511 -k1,9263:25163137,45560217:210511 -k1,9263:26827237,45560217:210511 -k1,9263:27906099,45560217:210510 -k1,9263:29246450,45560217:210511 -k1,9263:31563944,45560217:210511 -k1,9263:32583029,45560217:0 -) -] -(1,9264:32583029,45706769:0,0,0 -g1,9264:32583029,45706769 -) -) -] -(1,9264:6630773,47279633:25952256,0,0 -h1,9264:6630773,47279633:25952256,0,0 -) -] -h1,9264:4262630,4025873:0,0,0 -] -!23088 +) +) +] +[1,9270:3078558,4812305:0,0,0 +(1,9270:3078558,49800853:0,16384,2228224 +g1,9270:29030814,49800853 +g1,9270:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9270:36151628,51504789:16384,1179648,0 +) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 +) +] +) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9270:37855564,49800853:1179648,16384,0 +) +) +k1,9270:3078556,49800853:-34777008 +) +] +g1,9270:6630773,4812305 +k1,9270:20781963,4812305:12955813 +g1,9270:22168704,4812305 +g1,9270:22817510,4812305 +g1,9270:26131665,4812305 +g1,9270:28614824,4812305 +g1,9270:30094627,4812305 +) +) +] +[1,9270:6630773,45706769:25952256,40108032,0 +(1,9270:6630773,45706769:25952256,40108032,0 +(1,9270:6630773,45706769:0,0,0 +g1,9270:6630773,45706769 +) +[1,9270:6630773,45706769:25952256,40108032,0 +(1,9252:6630773,6254097:25952256,513147,102891 +k1,9251:8762105,6254097:260279 +k1,9251:9480480,6254097:260278 +k1,9251:10272256,6254097:260279 +k1,9251:11598806,6254097:260279 +k1,9251:14409745,6254097:260278 +k1,9251:15321452,6254097:260279 +k1,9251:17056946,6254097:260279 +k1,9251:21034427,6254097:260279 +k1,9251:21946133,6254097:260278 +k1,9251:24421529,6254097:260279 +k1,9251:26249429,6254097:260279 +k1,9251:28519696,6254097:260278 +k1,9251:29799060,6254097:260279 +k1,9251:32583029,6254097:0 +) +(1,9252:6630773,7095585:25952256,513147,134348 +k1,9251:10641380,7095585:280953 +k1,9251:14006457,7095585:280953 +k1,9251:17760162,7095585:280952 +k1,9251:20264096,7095585:280953 +k1,9251:21227934,7095585:280953 +k1,9251:23389770,7095585:280953 +k1,9251:24330015,7095585:280953 +k1,9251:27521421,7095585:280952 +k1,9251:28793934,7095585:280953 +k1,9251:31931601,7095585:280953 +k1,9251:32583029,7095585:0 +) +(1,9252:6630773,7937073:25952256,505283,134348 +g1,9251:8426459,7937073 +g1,9251:9904295,7937073 +k1,9252:32583028,7937073:19824640 +g1,9252:32583028,7937073 +) +(1,9254:6630773,8778561:25952256,505283,126483 +h1,9253:6630773,8778561:983040,0,0 +k1,9253:9183773,8778561:373273 +k1,9253:11437099,8778561:373098 +k1,9253:15093726,8778561:373273 +k1,9253:16568005,8778561:373274 +k1,9253:18295252,8778561:373273 +k1,9253:20528437,8778561:373273 +k1,9253:22728198,8778561:373273 +k1,9253:24292916,8778561:373273 +k1,9253:27334160,8778561:373273 +k1,9253:28063293,8778561:373273 +k1,9253:30715253,8778561:373273 +k1,9253:32583029,8778561:0 +) +(1,9254:6630773,9620049:25952256,513147,134348 +k1,9253:9404618,9620049:242845 +k1,9253:10062261,9620049:242800 +k1,9253:12062126,9620049:242845 +k1,9253:13296531,9620049:242845 +k1,9253:14808152,9620049:242844 +k1,9253:16879451,9620049:242845 +k1,9253:20195279,9620049:242845 +k1,9253:23655941,9620049:242844 +k1,9253:25222613,9620049:242845 +k1,9253:26124749,9620049:242844 +k1,9253:29278048,9620049:242845 +k1,9253:32583029,9620049:0 +) +(1,9254:6630773,10461537:25952256,513147,134348 +k1,9253:8388627,10461537:244628 +k1,9253:10643244,10461537:244628 +k1,9253:11243732,10461537:244628 +k1,9253:13183121,10461537:244628 +k1,9253:14831530,10461537:244628 +k1,9253:15735450,10461537:244628 +k1,9253:18859730,10461537:244628 +k1,9253:22830080,10461537:244628 +k1,9253:23757593,10461537:244628 +k1,9253:26399528,10461537:244628 +k1,9253:30708699,10461537:244628 +k1,9253:32583029,10461537:0 +) +(1,9254:6630773,11303025:25952256,513147,126484 +k1,9253:8629369,11303025:241576 +k1,9253:9862504,11303025:241575 +k1,9253:12098341,11303025:241576 +k1,9253:13531361,11303025:241575 +k1,9253:16410106,11303025:241576 +k1,9253:17413209,11303025:241575 +k1,9253:20417128,11303025:241576 +k1,9253:23071739,11303025:241575 +k1,9253:24871106,11303025:241576 +k1,9253:26216963,11303025:241575 +k1,9253:27206305,11303025:241576 +k1,9253:29357599,11303025:241575 +k1,9253:30211937,11303025:241576 +$1,9253:30211937,11303025 +k1,9253:32187847,11303025:0 +k1,9254:32583029,11303025:0 +) +(1,9254:6630773,12144513:25952256,505283,134349 +g1,9253:7025955,12144513 +g1,9253:7421137,12144513 +g1,9253:9001865,12144513 +g1,9253:9397047,12144513 +(1,9253:10187411,12242827:32768,0,0 +) +g1,9253:12986453,12144513 +g1,9253:13381635,12144513 +g1,9253:14567181,12144513 +g1,9253:14962363,12144513 +g1,9253:16147909,12144513 +g1,9253:16543091,12144513 +$1,9253:18914183,12144513 +k1,9254:32583029,12144513:13495176 +g1,9254:32583029,12144513 +) +(1,9256:6630773,12986001:25952256,513147,126483 +h1,9255:6630773,12986001:983040,0,0 +k1,9255:9077166,12986001:266666 +k1,9255:13590565,12986001:266666 +k1,9255:17140585,12986001:266666 +k1,9255:20870173,12986001:266666 +k1,9255:21752877,12986001:266666 +k1,9255:26677187,12986001:266666 +k1,9255:28337804,12986001:266666 +k1,9255:29192983,12986001:266666 +k1,9255:29929542,12986001:266666 +k1,9255:31482024,12986001:266666 +k1,9255:32583029,12986001:0 +) +(1,9256:6630773,13827489:25952256,513147,126483 +k1,9255:7204813,13827489:218180 +k1,9255:9701681,13827489:218181 +k1,9255:11313812,13827489:218180 +k1,9255:13889322,13827489:218180 +k1,9255:15298947,13827489:218180 +k1,9255:17527117,13827489:218181 +k1,9255:18377064,13827489:218180 +k1,9255:22535268,13827489:218180 +k1,9255:23412740,13827489:218180 +k1,9255:26393264,13827489:218181 +k1,9255:28000807,13827489:218180 +k1,9255:30773580,13827489:218180 +k1,9256:32583029,13827489:0 +) +(1,9256:6630773,14668977:25952256,513147,134348 +k1,9255:8755942,14668977:271155 +k1,9255:10223784,14668977:271155 +k1,9255:13771740,14668977:271156 +k1,9255:15034455,14668977:271155 +k1,9255:18413327,14668977:271155 +k1,9255:20268487,14668977:271155 +k1,9255:21225804,14668977:271155 +k1,9255:22877147,14668977:271155 +k1,9255:25049502,14668977:271156 +k1,9255:27206128,14668977:271155 +k1,9255:28742128,14668977:271155 +k1,9255:29672575,14668977:271155 +k1,9255:32583029,14668977:0 +) +(1,9256:6630773,15510465:25952256,513147,134348 +k1,9255:8486971,15510465:259741 +k1,9255:10025319,15510465:259741 +k1,9255:13139153,15510465:259741 +k1,9255:15273224,15510465:259741 +k1,9255:17289986,15510465:259742 +k1,9255:18654009,15510465:259741 +k1,9255:19661516,15510465:259741 +k1,9255:21830976,15510465:259741 +k1,9255:22703479,15510465:259741 +$1,9255:22703479,15510465 +k1,9255:24679389,15510465:0 +k1,9255:25074571,15510465:0 +k1,9255:25469753,15510465:0 +k1,9255:25864935,15510465:0 +k1,9255:27050481,15510465:0 +k1,9255:27445663,15510465:0 +k1,9255:32187847,15510465:0 +k1,9256:32583029,15510465:0 +) +(1,9256:6630773,16351953:25952256,505283,134349 +g1,9255:7816319,16351953 +g1,9255:8211501,16351953 +g1,9255:11372957,16351953 +g1,9255:11768139,16351953 +g1,9255:14534413,16351953 +g1,9255:14929595,16351953 +g1,9255:18486233,16351953 +g1,9255:18881415,16351953 +$1,9255:20462143,16351953 +k1,9256:32583029,16351953:11947216 +g1,9256:32583029,16351953 +) +(1,9258:6630773,17193441:25952256,513147,134348 +h1,9257:6630773,17193441:983040,0,0 +k1,9257:10795467,17193441:218771 +k1,9257:14041346,17193441:218771 +k1,9257:15753027,17193441:218771 +k1,9257:17038069,17193441:218771 +k1,9257:18764823,17193441:218771 +k1,9257:19339454,17193441:218771 +k1,9257:22260930,17193441:218771 +k1,9257:25059853,17193441:218771 +k1,9257:28561978,17193441:218771 +k1,9257:29728400,17193441:218771 +k1,9257:30966256,17193441:218771 +k1,9258:32583029,17193441:0 +) +(1,9258:6630773,18034929:25952256,513147,134349 +k1,9257:9721713,18034929:260440 +k1,9257:13066278,18034929:260441 +k1,9257:14706906,18034929:260440 +k1,9257:15782614,18034929:260440 +k1,9257:17551038,18034929:260441 +k1,9257:18582181,18034929:260440 +k1,9257:20591777,18034929:260440 +k1,9257:21511509,18034929:260440 +k1,9257:23411005,18034929:260441 +k1,9257:24284207,18034929:260440 +$1,9257:24284207,18034929 +k1,9257:26260117,18034929:0 +k1,9257:26655299,18034929:0 +k1,9257:27050481,18034929:0 +k1,9257:27445663,18034929:0 +k1,9257:30607119,18034929:0 +k1,9257:31002301,18034929:0 +k1,9257:32187847,18034929:0 +k1,9258:32583029,18034929:0 +) +(1,9258:6630773,18876417:25952256,505283,134349 +$1,9257:10187411,18876417 +k1,9258:32583029,18876417:22221948 +g1,9258:32583029,18876417 +) +(1,9260:6630773,19717905:25952256,513147,134348 +h1,9259:6630773,19717905:983040,0,0 +k1,9259:9062272,19717905:251772 +k1,9259:11194219,19717905:251719 +k1,9259:14729345,19717905:251772 +k1,9259:16819402,19717905:251772 +k1,9259:17841876,19717905:251771 +k1,9259:20391996,19717905:251772 +k1,9259:21303060,19717905:251772 +k1,9259:23588414,19717905:251772 +k1,9259:26504225,19717905:251772 +k1,9259:27415288,19717905:251771 +k1,9259:30751184,19717905:251772 +k1,9259:31812326,19717905:251772 +k1,9259:32583029,19717905:0 +) +(1,9260:6630773,20559393:25952256,513147,134349 +k1,9259:9979914,20559393:156227 +k1,9259:12716293,20559393:156227 +k1,9259:14664274,20559393:156227 +k1,9259:18557321,20559393:156184 +$1,9259:18764415,20559393 +k1,9259:20740325,20559393:0 +k1,9259:21135507,20559393:0 +k1,9259:21530689,20559393:0 +k1,9259:21925871,20559393:0 +k1,9259:23111417,20559393:0 +k1,9259:23506599,20559393:0 +(1,9259:24296963,20657707:32768,0,0 +) +k1,9259:25515277,20559393:0 +k1,9259:25910459,20559393:0 +$1,9259:27491187,20559393 +k1,9259:27854508,20559393:156227 +k1,9259:28542232,20559393:156227 +k1,9259:29469162,20559393:156227 +k1,9259:31923737,20559393:156227 +k1,9259:32583029,20559393:0 +) +(1,9260:6630773,21400881:25952256,513147,126483 +k1,9259:10820621,21400881:215089 +k1,9259:12320216,21400881:215089 +k1,9259:14373590,21400881:215089 +k1,9259:14944539,21400881:215089 +k1,9259:18141516,21400881:215089 +k1,9259:20429509,21400881:215089 +k1,9259:21330760,21400881:215089 +k1,9259:24794469,21400881:215089 +k1,9259:26577179,21400881:215089 +k1,9259:28846166,21400881:215089 +k1,9259:32583029,21400881:0 +) +(1,9260:6630773,22242369:25952256,513147,134348 +k1,9259:8339051,22242369:285491 +k1,9259:8980403,22242369:285492 +k1,9259:12028237,22242369:285491 +k1,9259:14384011,22242369:285492 +k1,9259:16769276,22242369:285491 +k1,9259:18497215,22242369:285492 +k1,9259:20662847,22242369:285404 +k1,9259:22727641,22242369:285492 +k1,9259:25371773,22242369:285491 +k1,9259:26115362,22242369:285492 +k1,9259:28271251,22242369:285491 +k1,9259:29208171,22242369:285492 +k1,9259:31563944,22242369:285491 +k1,9259:32583029,22242369:0 +) +(1,9260:6630773,23083857:25952256,505283,126483 +g1,9259:8712851,23083857 +k1,9260:32583029,23083857:20413154 +g1,9260:32583029,23083857 +) +(1,9261:6630773,25891425:25952256,32768,229376 +(1,9261:6630773,25891425:0,32768,229376 +(1,9261:6630773,25891425:5505024,32768,229376 +r1,9261:12135797,25891425:5505024,262144,229376 +) +k1,9261:6630773,25891425:-5505024 +) +(1,9261:6630773,25891425:25952256,32768,0 +r1,9261:32583029,25891425:25952256,32768,0 +) +) +(1,9261:6630773,27495753:25952256,615776,161218 +(1,9261:6630773,27495753:1974731,582746,14155 +g1,9261:6630773,27495753 +g1,9261:8605504,27495753 +) +g1,9261:12201071,27495753 +g1,9261:16200864,27495753 +g1,9261:17910567,27495753 +k1,9261:32583029,27495753:10865345 +g1,9261:32583029,27495753 +) +(1,9265:6630773,28730457:25952256,513147,134348 +k1,9264:10459744,28730457:198276 +k1,9264:11762302,28730457:198276 +k1,9264:12708344,28730457:198276 +k1,9264:15288198,28730457:198276 +k1,9264:16172636,28730457:198276 +k1,9264:19716525,28730457:198276 +k1,9264:20933886,28730457:198276 +k1,9264:25203258,28730457:198276 +k1,9264:28697340,28730457:198276 +k1,9264:30463237,28730457:198276 +k1,9264:31680598,28730457:198276 +k1,9265:32583029,28730457:0 +) +(1,9265:6630773,29571945:25952256,513147,134348 +k1,9264:9353279,29571945:186918 +k1,9264:11200879,29571945:186918 +k1,9264:12459966,29571945:186918 +k1,9264:15660885,29571945:186918 +k1,9264:16866888,29571945:186918 +k1,9264:18791821,29571945:186918 +k1,9264:20546360,29571945:186918 +k1,9264:21089138,29571945:186918 +k1,9264:22970817,29571945:186918 +k1,9264:25135612,29571945:186918 +k1,9264:25981822,29571945:186918 +k1,9264:28984822,29571945:186918 +k1,9264:29703237,29571945:186918 +k1,9264:30660858,29571945:186918 +k1,9264:32583029,29571945:0 +) +(1,9265:6630773,30413433:25952256,513147,126483 +k1,9264:10082792,30413433:204055 +k1,9264:12119234,30413433:204055 +k1,9264:13427572,30413433:204056 +k1,9264:14379393,30413433:204055 +k1,9264:16335225,30413433:204055 +k1,9264:18032846,30413433:204055 +k1,9264:21641496,30413433:204055 +k1,9264:22654921,30413433:204055 +k1,9264:25621320,30413433:204056 +k1,9264:28445504,30413433:204055 +k1,9264:31131407,30413433:204055 +k1,9264:32583029,30413433:0 +) +(1,9265:6630773,31254921:25952256,513147,134348 +k1,9264:7987166,31254921:199683 +k1,9264:8542709,31254921:199683 +k1,9264:11139699,31254921:199683 +k1,9264:12880134,31254921:199684 +k1,9264:14863052,31254921:199683 +k1,9264:15931087,31254921:199683 +k1,9264:18800051,31254921:199683 +k1,9264:19770437,31254921:199683 +k1,9264:23081114,31254921:199683 +k1,9264:24228449,31254921:199684 +k1,9264:27858942,31254921:199683 +k1,9264:29077710,31254921:199683 +k1,9264:31015408,31254921:199683 +k1,9264:32583029,31254921:0 +) +(1,9265:6630773,32096409:25952256,513147,126483 +k1,9264:7916449,32096409:153869 +k1,9264:10690447,32096409:153869 +k1,9264:12822194,32096409:153870 +k1,9264:13844415,32096409:153869 +k1,9264:15473499,32096409:153869 +k1,9264:17977489,32096409:153869 +k1,9264:19150443,32096409:153869 +k1,9264:22893064,32096409:153870 +k1,9264:23706225,32096409:153869 +k1,9264:25803891,32096409:153869 +k1,9264:26585595,32096409:153869 +k1,9264:27758550,32096409:153870 +k1,9264:29565892,32096409:153869 +k1,9264:31131407,32096409:153869 +k1,9264:32583029,32096409:0 +) +(1,9265:6630773,32937897:25952256,513147,126483 +k1,9264:8222844,32937897:166663 +k1,9264:9257859,32937897:166663 +k1,9264:12127227,32937897:166663 +k1,9264:15698485,32937897:166663 +k1,9264:17432769,32937897:166663 +k1,9264:19996739,32937897:166663 +k1,9264:21552766,32937897:166664 +k1,9264:22587781,32937897:166663 +k1,9264:24683824,32937897:166663 +k1,9264:25206347,32937897:166663 +k1,9264:26656205,32937897:166663 +k1,9264:30585290,32937897:166663 +k1,9264:31379788,32937897:166663 +k1,9264:32583029,32937897:0 +) +(1,9265:6630773,33779385:25952256,513147,126483 +k1,9264:8849345,33779385:274774 +k1,9264:12149917,33779385:274775 +k1,9264:13416251,33779385:274774 +k1,9264:17610079,33779385:274775 +k1,9264:18544145,33779385:274774 +k1,9264:22223515,33779385:274775 +k1,9264:23181174,33779385:274774 +k1,9264:25916826,33779385:274775 +k1,9264:27571788,33779385:274774 +k1,9264:28838123,33779385:274775 +k1,9264:30259122,33779385:274774 +k1,9264:32583029,33779385:0 +) +(1,9265:6630773,34620873:25952256,513147,134348 +g1,9264:10142192,34620873 +g1,9264:12628628,34620873 +g1,9264:16096793,34620873 +g1,9264:17863643,34620873 +k1,9265:32583029,34620873:12586189 +g1,9265:32583029,34620873 +) +(1,9267:6630773,35462361:25952256,513147,134348 +h1,9266:6630773,35462361:983040,0,0 +k1,9266:9063116,35462361:252616 +k1,9266:10907602,35462361:252616 +k1,9266:12395572,35462361:252616 +k1,9266:13307480,35462361:252616 +k1,9266:16585893,35462361:252616 +k1,9266:17370006,35462361:252616 +k1,9266:18907129,35462361:252617 +k1,9266:19819037,35462361:252616 +k1,9266:23144636,35462361:252616 +k1,9266:24167955,35462361:252616 +k1,9266:28009322,35462361:252616 +k1,9266:30933841,35462361:252616 +k1,9266:31931601,35462361:252616 +k1,9266:32583029,35462361:0 +) +(1,9267:6630773,36303849:25952256,513147,134348 +k1,9266:8609781,36303849:249513 +k1,9266:11866087,36303849:249514 +k1,9266:14172120,36303849:249513 +k1,9266:15080925,36303849:249513 +k1,9266:16826625,36303849:249513 +k1,9266:19506214,36303849:249514 +k1,9266:20415019,36303849:249513 +k1,9266:24388288,36303849:249513 +k1,9266:27391624,36303849:249513 +k1,9266:28660223,36303849:249514 +k1,9266:30563209,36303849:249513 +k1,9267:32583029,36303849:0 +) +(1,9267:6630773,37145337:25952256,513147,126483 +k1,9266:8457614,37145337:229073 +k1,9266:9496058,37145337:229074 +k1,9266:12487474,37145337:229073 +k1,9266:14279582,37145337:229074 +k1,9266:15705342,37145337:229073 +k1,9266:18395947,37145337:229073 +k1,9266:19276449,37145337:229074 +k1,9266:21235017,37145337:229073 +k1,9266:24593434,37145337:229073 +k1,9266:25481800,37145337:229074 +k1,9266:27912883,37145337:229073 +k1,9266:30198477,37145337:229074 +k1,9266:31086842,37145337:229073 +k1,9266:32583029,37145337:0 +) +(1,9267:6630773,37986825:25952256,513147,134348 +k1,9266:10398328,37986825:250893 +k1,9266:11640782,37986825:250894 +k1,9266:13176182,37986825:250894 +k1,9266:14032628,37986825:250893 +k1,9266:14749482,37986825:250893 +k1,9266:16019461,37986825:250894 +k1,9266:19381349,37986825:250894 +k1,9266:20315127,37986825:250893 +k1,9266:25622778,37986825:250893 +k1,9266:27734239,37986825:250894 +k1,9266:28636561,37986825:250894 +k1,9266:29635220,37986825:250893 +k1,9267:32583029,37986825:0 +) +(1,9267:6630773,38828313:25952256,513147,134348 +k1,9266:8116912,38828313:243576 +k1,9266:9011915,38828313:243575 +k1,9266:10051098,38828313:243576 +k1,9266:10650533,38828313:243575 +k1,9266:12083587,38828313:243576 +k1,9266:13010047,38828313:243575 +k1,9266:15974022,38828313:243576 +k1,9266:16749094,38828313:243575 +k1,9266:18327638,38828313:243576 +k1,9266:19222641,38828313:243575 +k1,9266:21181950,38828313:243576 +k1,9266:22982005,38828313:243575 +k1,9266:23841619,38828313:243576 +k1,9266:24441054,38828313:243575 +k1,9266:26557649,38828313:243576 +k1,9266:28637543,38828313:243575 +k1,9266:29486672,38828313:243576 +k1,9266:31900144,38828313:243575 +k1,9266:32583029,38828313:0 +) +(1,9267:6630773,39669801:25952256,513147,134348 +k1,9266:8289251,39669801:204889 +k1,9266:10474638,39669801:204889 +k1,9266:11338819,39669801:204889 +k1,9266:14328333,39669801:204889 +k1,9266:16029409,39669801:204889 +k1,9266:17338581,39669801:204890 +k1,9266:19986652,39669801:204889 +k1,9266:22953884,39669801:204889 +k1,9266:25478092,39669801:204889 +k1,9266:26334409,39669801:204889 +k1,9266:31391584,39669801:204889 +k1,9266:32583029,39669801:0 +) +(1,9267:6630773,40511289:25952256,513147,134348 +k1,9266:11031754,40511289:216507 +k1,9266:12941711,40511289:216507 +k1,9266:13763772,40511289:216508 +k1,9266:17569030,40511289:216507 +k1,9266:18976982,40511289:216507 +k1,9266:21714659,40511289:216507 +k1,9266:22590458,40511289:216507 +k1,9266:23162825,40511289:216507 +k1,9266:26055823,40511289:216508 +k1,9266:27539796,40511289:216507 +k1,9266:30108390,40511289:216507 +k1,9266:32583029,40511289:0 +) +(1,9267:6630773,41352777:25952256,505283,134348 +k1,9266:9080032,41352777:260356 +k1,9266:11058743,41352777:260357 +k1,9266:12713050,41352777:260356 +k1,9266:15471639,41352777:260357 +k1,9266:16751080,41352777:260356 +k1,9266:18507624,41352777:260357 +k1,9266:23741507,41352777:260356 +k1,9266:24653292,41352777:260357 +k1,9266:27637980,41352777:260356 +k1,9266:28503890,41352777:260357 +k1,9266:30966256,41352777:260356 +k1,9267:32583029,41352777:0 +) +(1,9267:6630773,42194265:25952256,513147,134348 +k1,9266:8608769,42194265:252433 +k1,9266:10907235,42194265:252432 +k1,9266:12178753,42194265:252433 +k1,9266:14262262,42194265:252433 +k1,9266:15497734,42194265:252432 +k1,9266:17948245,42194265:252433 +k1,9266:19392122,42194265:252432 +k1,9266:20847796,42194265:252433 +k1,9266:23146263,42194265:252433 +k1,9266:26894385,42194265:252432 +k1,9266:31297868,42194265:252433 +k1,9266:32583029,42194265:0 +) +(1,9267:6630773,43035753:25952256,505283,126483 +g1,9266:8480199,43035753 +g1,9266:11218948,43035753 +g1,9266:12609622,43035753 +g1,9266:14415794,43035753 +k1,9267:32583029,43035753:16127755 +g1,9267:32583029,43035753 +) +(1,9269:6630773,43877241:25952256,513147,134348 +h1,9268:6630773,43877241:983040,0,0 +k1,9268:9247532,43877241:212898 +k1,9268:10275699,43877241:212899 +k1,9268:11530619,43877241:212898 +k1,9268:12359555,43877241:212898 +k1,9268:15283678,43877241:212899 +k1,9268:17226071,43877241:212898 +k1,9268:20445762,43877241:212899 +k1,9268:21847483,43877241:212898 +k1,9268:22719673,43877241:212898 +k1,9268:24755784,43877241:212899 +k1,9268:25922231,43877241:212898 +k1,9268:27749936,43877241:212898 +k1,9268:28318695,43877241:212899 +k1,9268:31227089,43877241:212898 +k1,9269:32583029,43877241:0 +) +(1,9269:6630773,44718729:25952256,505283,134348 +k1,9268:9060333,44718729:210511 +k1,9268:10289929,44718729:210511 +k1,9268:14017101,44718729:210510 +k1,9268:15512118,44718729:210511 +k1,9268:16590981,44718729:210511 +k1,9268:18757742,44718729:210511 +k1,9268:20498519,44718729:210511 +k1,9268:21360457,44718729:210510 +k1,9268:23761181,44718729:210511 +k1,9268:25163137,44718729:210511 +k1,9268:26827237,44718729:210511 +k1,9268:27906099,44718729:210510 +k1,9268:29246450,44718729:210511 +k1,9268:31563944,44718729:210511 +k1,9268:32583029,44718729:0 +) +(1,9269:6630773,45560217:25952256,513147,134348 +k1,9268:9495588,45560217:169319 +k1,9268:10280945,45560217:169319 +k1,9268:11958903,45560217:169319 +k1,9268:13964541,45560217:169319 +k1,9268:15087409,45560217:169319 +k1,9268:16731943,45560217:169319 +k1,9268:18411212,45560217:169319 +k1,9268:20670474,45560217:169319 +k1,9268:21254607,45560217:169290 +k1,9268:24449723,45560217:169319 +k1,9268:25301927,45560217:169319 +k1,9268:28548161,45560217:169319 +k1,9268:29333518,45560217:169319 +k1,9268:31665525,45560217:169319 +k1,9269:32583029,45560217:0 +) +] +(1,9270:32583029,45706769:0,0,0 +g1,9270:32583029,45706769 +) +) +] +(1,9270:6630773,47279633:25952256,0,0 +h1,9270:6630773,47279633:25952256,0,0 +) +] +h1,9270:4262630,4025873:0,0,0 +] +!23124 }175 -Input:1201:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1202:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1203:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1204:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1205:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1206:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1207:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1208:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1209:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 +Input:1197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 {176 -[1,9347:4262630,47279633:28320399,43253760,0 -(1,9347:4262630,4025873:0,0,0 -[1,9347:-473657,4025873:25952256,0,0 -(1,9347:-473657,-710414:25952256,0,0 -h1,9347:-473657,-710414:0,0,0 -(1,9347:-473657,-710414:0,0,0 -(1,9347:-473657,-710414:0,0,0 -g1,9347:-473657,-710414 -(1,9347:-473657,-710414:65781,0,65781 -g1,9347:-407876,-710414 -[1,9347:-407876,-644633:0,0,0 +[1,9352:4262630,47279633:28320399,43253760,0 +(1,9352:4262630,4025873:0,0,0 +[1,9352:-473657,4025873:25952256,0,0 +(1,9352:-473657,-710414:25952256,0,0 +h1,9352:-473657,-710414:0,0,0 +(1,9352:-473657,-710414:0,0,0 +(1,9352:-473657,-710414:0,0,0 +g1,9352:-473657,-710414 +(1,9352:-473657,-710414:65781,0,65781 +g1,9352:-407876,-710414 +[1,9352:-407876,-644633:0,0,0 ] ) -k1,9347:-473657,-710414:-65781 +k1,9352:-473657,-710414:-65781 ) ) -k1,9347:25478599,-710414:25952256 -g1,9347:25478599,-710414 +k1,9352:25478599,-710414:25952256 +g1,9352:25478599,-710414 ) ] ) -[1,9347:6630773,47279633:25952256,43253760,0 -[1,9347:6630773,4812305:25952256,786432,0 -(1,9347:6630773,4812305:25952256,513147,134348 -(1,9347:6630773,4812305:25952256,513147,134348 -g1,9347:3078558,4812305 -[1,9347:3078558,4812305:0,0,0 -(1,9347:3078558,2439708:0,1703936,0 -k1,9347:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9347:2537886,2439708:1179648,16384,0 +[1,9352:6630773,47279633:25952256,43253760,0 +[1,9352:6630773,4812305:25952256,786432,0 +(1,9352:6630773,4812305:25952256,513147,134348 +(1,9352:6630773,4812305:25952256,513147,134348 +g1,9352:3078558,4812305 +[1,9352:3078558,4812305:0,0,0 +(1,9352:3078558,2439708:0,1703936,0 +k1,9352:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9352:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9347:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9352:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9347:3078558,4812305:0,0,0 -(1,9347:3078558,2439708:0,1703936,0 -g1,9347:29030814,2439708 -g1,9347:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9347:36151628,1915420:16384,1179648,0 +[1,9352:3078558,4812305:0,0,0 +(1,9352:3078558,2439708:0,1703936,0 +g1,9352:29030814,2439708 +g1,9352:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9352:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9347:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9352:37855564,2439708:1179648,16384,0 +) +) +k1,9352:3078556,2439708:-34777008 +) +] +[1,9352:3078558,4812305:0,0,0 +(1,9352:3078558,49800853:0,16384,2228224 +k1,9352:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9352:2537886,49800853:1179648,16384,0 ) +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9352:3078558,51504789:16384,1179648,0 ) -k1,9347:3078556,2439708:-34777008 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] -[1,9347:3078558,4812305:0,0,0 -(1,9347:3078558,49800853:0,16384,2228224 -k1,9347:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9347:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9347:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 ) ] +[1,9352:3078558,4812305:0,0,0 +(1,9352:3078558,49800853:0,16384,2228224 +g1,9352:29030814,49800853 +g1,9352:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9352:36151628,51504789:16384,1179648,0 ) -) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] -[1,9347:3078558,4812305:0,0,0 -(1,9347:3078558,49800853:0,16384,2228224 -g1,9347:29030814,49800853 -g1,9347:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9347:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] -) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9347:37855564,49800853:1179648,16384,0 -) -) -k1,9347:3078556,49800853:-34777008 -) -] -g1,9347:6630773,4812305 -g1,9347:6630773,4812305 -g1,9347:9499939,4812305 -g1,9347:12584718,4812305 -g1,9347:13994397,4812305 -g1,9347:17201073,4812305 -k1,9347:31387652,4812305:14186579 -) -) -] -[1,9347:6630773,45706769:25952256,40108032,0 -(1,9347:6630773,45706769:25952256,40108032,0 -(1,9347:6630773,45706769:0,0,0 -g1,9347:6630773,45706769 -) -[1,9347:6630773,45706769:25952256,40108032,0 -(1,9264:6630773,6254097:25952256,513147,134348 -k1,9263:9579192,6254097:252923 -k1,9263:10448152,6254097:252922 -k1,9263:12209714,6254097:252923 -k1,9263:14298956,6254097:252923 -k1,9263:15505427,6254097:252922 -k1,9263:17233565,6254097:252923 -k1,9263:18996438,6254097:252923 -k1,9263:21339303,6254097:252922 -k1,9263:22007015,6254097:252869 -k1,9263:25285735,6254097:252923 -k1,9263:26221543,6254097:252923 -k1,9263:29551380,6254097:252922 -k1,9263:30420341,6254097:252923 -k1,9263:32583029,6254097:0 -) -(1,9264:6630773,7095585:25952256,513147,126483 -k1,9263:8554299,7095585:222211 -k1,9263:11437926,7095585:222210 -k1,9263:12276175,7095585:222211 -k1,9263:13701627,7095585:222211 -k1,9263:15679547,7095585:222210 -k1,9263:17450374,7095585:222211 -k1,9263:18540937,7095585:222211 -k1,9263:19895609,7095585:222210 -k1,9263:21501940,7095585:222211 -k1,9263:23615520,7095585:222211 -k1,9263:24369227,7095585:222210 -k1,9263:25921819,7095585:222211 -k1,9263:26795458,7095585:222211 -k1,9263:28978505,7095585:222210 -k1,9263:30483911,7095585:222211 -k1,9264:32583029,7095585:0 -) -(1,9264:6630773,7937073:25952256,513147,7863 -g1,9263:7969673,7937073 -g1,9263:8828194,7937073 -g1,9263:10125151,7937073 -k1,9264:32583030,7937073:20953828 -g1,9264:32583030,7937073 -) -(1,9266:6630773,8778561:25952256,513147,134348 -h1,9265:6630773,8778561:983040,0,0 -k1,9265:9155370,8778561:181030 -k1,9265:12362198,8778561:181031 -k1,9265:13734673,8778561:181030 -k1,9265:16992618,8778561:181030 -k1,9265:18165208,8778561:181030 -k1,9265:20727817,8778561:181031 -k1,9265:22644240,8778561:181030 -k1,9265:25520766,8778561:181030 -(1,9265:25520766,8778561:0,459977,115847 -r1,9265:29044438,8778561:3523672,575824,115847 -k1,9265:25520766,8778561:-3523672 -) -(1,9265:25520766,8778561:3523672,459977,115847 -k1,9265:25520766,8778561:3277 -h1,9265:29041161,8778561:0,411205,112570 -) -k1,9265:29399139,8778561:181031 -k1,9265:30771614,8778561:181030 -k1,9265:32583029,8778561:0 -) -(1,9266:6630773,9620049:25952256,505283,134348 -k1,9265:7963252,9620049:186254 -k1,9265:9281313,9620049:186254 -k1,9265:11169537,9620049:186254 -k1,9265:13315318,9620049:186255 -k1,9265:14117610,9620049:186254 -k1,9265:14718694,9620049:186241 -k1,9265:15666476,9620049:186254 -k1,9265:19498498,9620049:186254 -k1,9265:20336180,9620049:186254 -k1,9265:20878294,9620049:186254 -k1,9265:23575888,9620049:186254 -k1,9265:25673828,9620049:186255 -k1,9265:26487917,9620049:186254 -k1,9265:27693256,9620049:186254 -k1,9265:30540927,9620049:186254 -k1,9266:32583029,9620049:0 -) -(1,9266:6630773,10461537:25952256,513147,134348 -(1,9265:6630773,10461537:0,414482,115847 -r1,9265:6989039,10461537:358266,530329,115847 -k1,9265:6630773,10461537:-358266 -) -(1,9265:6630773,10461537:358266,414482,115847 -k1,9265:6630773,10461537:3277 -h1,9265:6985762,10461537:0,411205,112570 -) -k1,9265:7163770,10461537:174731 -k1,9265:8529946,10461537:174731 -(1,9265:8529946,10461537:0,414482,115847 -r1,9265:8888212,10461537:358266,530329,115847 -k1,9265:8529946,10461537:-358266 -) -(1,9265:8529946,10461537:358266,414482,115847 -k1,9265:8529946,10461537:3277 -h1,9265:8884935,10461537:0,411205,112570 -) -k1,9265:9062943,10461537:174731 -k1,9265:10229234,10461537:174731 -k1,9265:11870661,10461537:174731 -k1,9265:14174001,10461537:174731 -k1,9265:18133436,10461537:174731 -k1,9265:18991052,10461537:174731 -k1,9265:21234099,10461537:174731 -k1,9265:22922056,10461537:174731 -k1,9265:25106776,10461537:174731 -k1,9265:26300592,10461537:174731 -k1,9265:29170819,10461537:174731 -k1,9265:30293201,10461537:174731 -k1,9265:32583029,10461537:0 -) -(1,9266:6630773,11303025:25952256,513147,134348 -k1,9265:8144561,11303025:229282 -k1,9265:9506306,11303025:229283 -k1,9265:10483354,11303025:229282 -k1,9265:13473668,11303025:229282 -k1,9265:14389112,11303025:229282 -k1,9265:18047894,11303025:229283 -k1,9265:19975214,11303025:229282 -k1,9265:21223581,11303025:229282 -k1,9265:24148360,11303025:229283 -k1,9265:24909139,11303025:229282 -k1,9265:27179867,11303025:229282 -k1,9265:28680547,11303025:229282 -k1,9265:30014112,11303025:229283 -k1,9265:31923737,11303025:229282 -k1,9265:32583029,11303025:0 -) -(1,9266:6630773,12144513:25952256,513147,134348 -k1,9265:10159112,12144513:247607 -k1,9265:12475035,12144513:247607 -k1,9265:13408803,12144513:247606 -k1,9265:17720297,12144513:247607 -k1,9265:18915555,12144513:247607 -k1,9265:21085333,12144513:247607 -k1,9265:23343585,12144513:247607 -k1,9265:24242620,12144513:247607 -k1,9265:25237992,12144513:247606 -k1,9265:28246631,12144513:247607 -k1,9265:29180400,12144513:247607 -k1,9265:32583029,12144513:0 -) -(1,9266:6630773,12986001:25952256,513147,134348 -g1,9265:8528040,12986001 -g1,9265:10817212,12986001 -g1,9265:12035526,12986001 -k1,9266:32583028,12986001:17678336 -g1,9266:32583028,12986001 -) -v1,9268:6630773,14176467:0,393216,0 -(1,9276:6630773,15864290:25952256,2081039,196608 -g1,9276:6630773,15864290 -g1,9276:6630773,15864290 -g1,9276:6434165,15864290 -(1,9276:6434165,15864290:0,2081039,196608 -r1,9276:32779637,15864290:26345472,2277647,196608 -k1,9276:6434165,15864290:-26345472 -) -(1,9276:6434165,15864290:26345472,2081039,196608 -[1,9276:6630773,15864290:25952256,1884431,0 -(1,9270:6630773,14390377:25952256,410518,101187 -(1,9269:6630773,14390377:0,0,0 -g1,9269:6630773,14390377 -g1,9269:6630773,14390377 -g1,9269:6303093,14390377 -(1,9269:6303093,14390377:0,0,0 -) -g1,9269:6630773,14390377 -) -g1,9270:9159939,14390377 -g1,9270:10108377,14390377 -g1,9270:13902126,14390377 -g1,9270:15482855,14390377 -g1,9270:16115147,14390377 -h1,9270:16747438,14390377:0,0,0 -k1,9270:32583029,14390377:15835591 -g1,9270:32583029,14390377 -) -(1,9271:6630773,15056555:25952256,404226,101187 -h1,9271:6630773,15056555:0,0,0 -g1,9271:10108377,15056555 -h1,9271:10740669,15056555:0,0,0 -k1,9271:32583029,15056555:21842360 -g1,9271:32583029,15056555 -) -(1,9275:6630773,15788269:25952256,404226,76021 -(1,9273:6630773,15788269:0,0,0 -g1,9273:6630773,15788269 -g1,9273:6630773,15788269 -g1,9273:6303093,15788269 -(1,9273:6303093,15788269:0,0,0 -) -g1,9273:6630773,15788269 -) -g1,9275:7579210,15788269 -g1,9275:8843793,15788269 -h1,9275:9476084,15788269:0,0,0 -k1,9275:32583028,15788269:23106944 -g1,9275:32583028,15788269 -) -] -) -g1,9276:32583029,15864290 -g1,9276:6630773,15864290 -g1,9276:6630773,15864290 -g1,9276:32583029,15864290 -g1,9276:32583029,15864290 -) -h1,9276:6630773,16060898:0,0,0 -v1,9280:6630773,17950962:0,393216,0 -(1,9299:6630773,37789017:25952256,20231271,616038 -g1,9299:6630773,37789017 -(1,9299:6630773,37789017:25952256,20231271,616038 -(1,9299:6630773,38405055:25952256,20847309,0 -[1,9299:6630773,38405055:25952256,20847309,0 -(1,9299:6630773,38378841:25952256,20794881,0 -r1,9299:6656987,38378841:26214,20794881,0 -[1,9299:6656987,38378841:25899828,20794881,0 -(1,9299:6656987,37789017:25899828,19615233,0 -[1,9299:7246811,37789017:24720180,19615233,0 -(1,9281:7246811,19259320:24720180,1085536,298548 -(1,9280:7246811,19259320:0,1085536,298548 -r1,9299:8753226,19259320:1506415,1384084,298548 -k1,9280:7246811,19259320:-1506415 -) -(1,9280:7246811,19259320:1506415,1085536,298548 -) -k1,9280:8951316,19259320:198090 -k1,9280:9777240,19259320:198089 -k1,9280:11409258,19259320:198090 -k1,9280:12195861,19259320:198090 -k1,9280:15796579,19259320:198089 -k1,9280:16646097,19259320:198090 -k1,9280:19869984,19259320:198090 -k1,9280:21059634,19259320:198090 -k1,9280:23463010,19259320:198089 -k1,9280:24422628,19259320:198090 -k1,9280:26304338,19259320:198090 -k1,9280:27883271,19259320:198089 -k1,9280:28612858,19259320:198090 -k1,9280:31966991,19259320:0 -) -(1,9281:7246811,20100808:24720180,513147,126483 -k1,9280:8886045,20100808:285260 -k1,9280:12380604,20100808:285261 -k1,9280:13317292,20100808:285260 -k1,9280:17035328,20100808:285260 -k1,9280:20294612,20100808:285260 -k1,9280:21750346,20100808:285261 -k1,9280:22850874,20100808:285260 -k1,9280:25146123,20100808:285260 -k1,9280:25787243,20100808:285260 -k1,9280:28768000,20100808:285261 -k1,9280:29704688,20100808:285260 -k1,9280:31966991,20100808:0 -) -(1,9281:7246811,20942296:24720180,513147,134348 -k1,9280:8294374,20942296:276860 -k1,9280:11817231,20942296:276859 -k1,9280:12882489,20942296:276860 -k1,9280:14839692,20942296:276860 -k1,9280:17482402,20942296:276860 -k1,9280:18778346,20942296:276859 -k1,9280:21750702,20942296:276860 -k1,9280:23160024,20942296:276860 -k1,9280:25664453,20942296:276860 -k1,9280:28518188,20942296:276859 -k1,9280:30924313,20942296:276860 -k1,9281:31966991,20942296:0 -) -(1,9281:7246811,21783784:24720180,513147,134348 -k1,9280:10278387,21783784:196489 -k1,9280:11309805,21783784:196489 -k1,9280:13208264,21783784:196489 -k1,9280:16751021,21783784:196489 -k1,9280:20350139,21783784:196489 -k1,9280:21650909,21783784:196488 -k1,9280:23133214,21783784:196489 -k1,9280:24077469,21783784:196489 -k1,9280:26479245,21783784:196489 -k1,9280:27437262,21783784:196489 -k1,9280:30786688,21783784:196489 -k1,9281:31966991,21783784:0 -) -(1,9281:7246811,22625272:24720180,513147,134348 -k1,9280:9199620,22625272:191857 -k1,9280:10675982,22625272:191856 -k1,9280:14843908,22625272:191857 -k1,9280:15687193,22625272:191857 -k1,9280:16234910,22625272:191857 -k1,9280:18555375,22625272:191856 -k1,9280:22027964,22625272:191857 -k1,9280:24229810,22625272:191857 -k1,9280:25440752,22625272:191857 -k1,9280:27209404,22625272:191856 -k1,9280:28060553,22625272:191857 -k1,9280:29271495,22625272:191857 -k1,9280:31966991,22625272:0 -) -(1,9281:7246811,23466760:24720180,513147,134348 -k1,9280:8523214,23466760:284843 -k1,9280:12208065,23466760:284843 -k1,9280:13144337,23466760:284844 -k1,9280:14448265,23466760:284843 -k1,9280:17805436,23466760:284843 -k1,9280:19281724,23466760:284843 -k1,9280:21828870,23466760:284843 -k1,9280:22745480,23466760:284843 -k1,9280:24548793,23466760:284844 -k1,9280:28589504,23466760:284843 -k1,9280:30975431,23466760:284843 -k1,9280:31966991,23466760:0 -) -(1,9281:7246811,24308248:24720180,513147,126483 -k1,9280:10788931,24308248:237139 -k1,9280:12893847,24308248:237140 -k1,9280:14430565,24308248:237139 -k1,9280:16768789,24308248:237140 -k1,9280:17665220,24308248:237139 -k1,9280:18258220,24308248:237140 -k1,9280:19768724,24308248:237139 -k1,9280:20475757,24308248:237140 -k1,9280:21244393,24308248:237139 -k1,9280:24111493,24308248:237140 -k1,9280:25000060,24308248:237139 -k1,9280:27476565,24308248:237140 -k1,9280:29207270,24308248:237139 -k1,9280:31966991,24308248:0 -) -(1,9281:7246811,25149736:24720180,505283,134348 -k1,9280:8097173,25149736:234324 -k1,9280:8746305,25149736:234289 -k1,9280:10716022,25149736:234324 -k1,9280:12642486,25149736:234324 -k1,9280:15719106,25149736:234324 -k1,9280:18422827,25149736:234324 -k1,9280:19848596,25149736:234324 -k1,9280:24481697,25149736:234324 -k1,9280:26408161,25149736:234324 -k1,9280:29552939,25149736:234324 -k1,9280:31280829,25149736:234324 -k1,9280:31966991,25149736:0 -) -(1,9281:7246811,25991224:24720180,513147,134348 -g1,9280:10956147,25991224 -g1,9280:11970644,25991224 -g1,9280:14130710,25991224 -g1,9280:17355736,25991224 -g1,9280:18839471,25991224 -g1,9280:20131185,25991224 -g1,9280:22757868,25991224 -g1,9280:23616389,25991224 -g1,9280:27218247,25991224 -g1,9280:28179004,25991224 -k1,9281:31966991,25991224:427956 -g1,9281:31966991,25991224 -) -v1,9283:7246811,27181690:0,393216,0 -(1,9293:7246811,30201869:24720180,3413395,196608 -g1,9293:7246811,30201869 -g1,9293:7246811,30201869 -g1,9293:7050203,30201869 -(1,9293:7050203,30201869:0,3413395,196608 -r1,9299:32163599,30201869:25113396,3610003,196608 -k1,9293:7050203,30201869:-25113396 -) -(1,9293:7050203,30201869:25113396,3413395,196608 -[1,9293:7246811,30201869:24720180,3216787,0 -(1,9285:7246811,27395600:24720180,410518,107478 -(1,9284:7246811,27395600:0,0,0 -g1,9284:7246811,27395600 -g1,9284:7246811,27395600 -g1,9284:6919131,27395600 -(1,9284:6919131,27395600:0,0,0 -) -g1,9284:7246811,27395600 -) -g1,9285:10408268,27395600 -g1,9285:11356706,27395600 -g1,9285:15782746,27395600 -g1,9285:16731184,27395600 -h1,9285:17679621,27395600:0,0,0 -k1,9285:31966991,27395600:14287370 -g1,9285:31966991,27395600 -) -(1,9286:7246811,28061778:24720180,388497,4718 -h1,9286:7246811,28061778:0,0,0 -g1,9286:7879103,28061778 -g1,9286:8827541,28061778 -h1,9286:9143687,28061778:0,0,0 -k1,9286:31966991,28061778:22823304 -g1,9286:31966991,28061778 -) -(1,9287:7246811,28727956:24720180,404226,107478 -h1,9287:7246811,28727956:0,0,0 -k1,9287:7246811,28727956:0 -h1,9287:11040559,28727956:0,0,0 -k1,9287:31966991,28727956:20926432 -g1,9287:31966991,28727956 -) -(1,9288:7246811,29394134:24720180,284164,4718 -h1,9288:7246811,29394134:0,0,0 -h1,9288:7562957,29394134:0,0,0 -k1,9288:31966991,29394134:24404034 -g1,9288:31966991,29394134 -) -(1,9292:7246811,30125848:24720180,404226,76021 -(1,9290:7246811,30125848:0,0,0 -g1,9290:7246811,30125848 -g1,9290:7246811,30125848 -g1,9290:6919131,30125848 -(1,9290:6919131,30125848:0,0,0 -) -g1,9290:7246811,30125848 -) -g1,9292:8195248,30125848 -g1,9292:9459831,30125848 -h1,9292:9775977,30125848:0,0,0 -k1,9292:31966991,30125848:22191014 -g1,9292:31966991,30125848 -) -] -) -g1,9293:31966991,30201869 -g1,9293:7246811,30201869 -g1,9293:7246811,30201869 -g1,9293:31966991,30201869 -g1,9293:31966991,30201869 -) -h1,9293:7246811,30398477:0,0,0 -(1,9297:7246811,31764253:24720180,513147,134348 -h1,9296:7246811,31764253:983040,0,0 -k1,9296:9063961,31764253:206275 -k1,9296:11776987,31764253:206274 -k1,9296:13115069,31764253:206275 -k1,9296:15164215,31764253:206274 -k1,9296:16654996,31764253:206275 -k1,9296:18721837,31764253:206274 -k1,9296:19579540,31764253:206275 -k1,9296:20533580,31764253:206274 -k1,9296:22483768,31764253:206275 -k1,9296:25474011,31764253:206274 -k1,9296:28046136,31764253:206275 -k1,9296:29271495,31764253:206274 -k1,9296:31966991,31764253:0 -) -(1,9297:7246811,32605741:24720180,513147,134348 -k1,9296:9124527,32605741:255700 -k1,9296:10127992,32605741:255699 -k1,9296:13162419,32605741:255700 -k1,9296:14179647,32605741:255700 -k1,9296:15454431,32605741:255699 -k1,9296:19743872,32605741:255700 -k1,9296:22896919,32605741:255700 -k1,9296:25927412,32605741:255699 -k1,9296:26834540,32605741:255700 -k1,9296:27860943,32605741:255700 -k1,9296:30076168,32605741:255699 -k1,9296:30947906,32605741:255700 -k1,9296:31966991,32605741:0 -) -(1,9297:7246811,33447229:24720180,513147,134348 -g1,9296:10462007,33447229 -g1,9296:14718570,33447229 -g1,9296:16194440,33447229 -g1,9296:18129062,33447229 -(1,9296:18129062,33447229:0,414482,115847 -r1,9299:19190751,33447229:1061689,530329,115847 -k1,9296:18129062,33447229:-1061689 -) -(1,9296:18129062,33447229:1061689,414482,115847 -k1,9296:18129062,33447229:3277 -h1,9296:19187474,33447229:0,411205,112570 -) -g1,9296:19389980,33447229 -g1,9296:20272094,33447229 -(1,9296:20272094,33447229:0,452978,122846 -r1,9299:23092343,33447229:2820249,575824,122846 -k1,9296:20272094,33447229:-2820249 -) -(1,9296:20272094,33447229:2820249,452978,122846 -k1,9296:20272094,33447229:3277 -h1,9296:23089066,33447229:0,411205,112570 -) -g1,9296:23498666,33447229 -g1,9296:24384057,33447229 -g1,9296:24939146,33447229 -g1,9296:26437954,33447229 -k1,9297:31966991,33447229:3584584 -g1,9297:31966991,33447229 -) -(1,9299:7246811,34288717:24720180,513147,134348 -h1,9298:7246811,34288717:983040,0,0 -k1,9298:9004242,34288717:286803 -k1,9298:11986629,34288717:286891 -k1,9298:13377802,34288717:286891 -k1,9298:15040294,34288717:286891 -k1,9298:17337830,34288717:286891 -k1,9298:17980582,34288717:286892 -k1,9298:20140492,34288717:286891 -k1,9298:22560580,34288717:286891 -k1,9298:23572299,34288717:286891 -k1,9298:25557228,34288717:286891 -k1,9298:28515366,34288717:286891 -k1,9298:30975431,34288717:286891 -k1,9298:31966991,34288717:0 -) -(1,9299:7246811,35130205:24720180,505283,134348 -k1,9298:10543172,35130205:255490 -k1,9298:12178849,35130205:255489 -k1,9298:13964605,35130205:255490 -k1,9298:14871522,35130205:255489 -k1,9298:15874778,35130205:255490 -k1,9298:18974530,35130205:255489 -k1,9298:20497486,35130205:255490 -k1,9298:21108835,35130205:255489 -k1,9298:23237344,35130205:255490 -k1,9298:25626030,35130205:255489 -k1,9298:26509355,35130205:255490 -k1,9298:28516622,35130205:255490 -k1,9298:30643164,35130205:255489 -k1,9298:31966991,35130205:0 -) -(1,9299:7246811,35971693:24720180,505283,134348 -k1,9298:8416019,35971693:177648 -k1,9298:10106892,35971693:177647 -k1,9298:10935968,35971693:177648 -k1,9298:13189797,35971693:177648 -k1,9298:14133560,35971693:177647 -k1,9298:15330293,35971693:177648 -k1,9298:17518585,35971693:177647 -k1,9298:18347661,35971693:177648 -k1,9298:19273075,35971693:177648 -k1,9298:22229449,35971693:177647 -k1,9298:23674563,35971693:177648 -k1,9298:25008921,35971693:177648 -k1,9298:25601390,35971693:177626 -k1,9298:27912234,35971693:177647 -k1,9298:29131904,35971693:177648 -k1,9298:31966991,35971693:0 -) -(1,9299:7246811,36813181:24720180,513147,134348 -k1,9298:9484378,36813181:249860 -k1,9298:10421710,36813181:249859 -k1,9298:13697367,36813181:249860 -k1,9298:15093451,36813181:249859 -(1,9298:15093451,36813181:0,452978,115847 -r1,9299:16506852,36813181:1413401,568825,115847 -k1,9298:15093451,36813181:-1413401 -) -(1,9298:15093451,36813181:1413401,452978,115847 -k1,9298:15093451,36813181:3277 -h1,9298:16503575,36813181:0,411205,112570 -) -k1,9298:16930382,36813181:249860 -k1,9298:20309586,36813181:249860 -k1,9298:21175483,36813181:249859 -k1,9298:23704030,36813181:249860 -h1,9298:24674618,36813181:0,0,0 -k1,9298:24924478,36813181:249860 -k1,9298:25983707,36813181:249859 -k1,9298:27731720,36813181:249860 -h1,9298:28927097,36813181:0,0,0 -k1,9298:29350626,36813181:249859 -k1,9298:31611131,36813181:249860 -k1,9298:31966991,36813181:0 -) -(1,9299:7246811,37654669:24720180,505283,134348 -g1,9298:10132361,37654669 -g1,9298:11325116,37654669 -g1,9298:12918296,37654669 -g1,9298:17790242,37654669 -g1,9298:20148227,37654669 -k1,9299:31966991,37654669:8691386 -g1,9299:31966991,37654669 -) -] -) -] -r1,9299:32583029,38378841:26214,20794881,0 -) -] -) -) -g1,9299:32583029,37789017 -) -h1,9299:6630773,38405055:0,0,0 -v1,9302:6630773,39770831:0,393216,0 -(1,9347:6630773,44573462:25952256,5195847,589824 -g1,9347:6630773,44573462 -(1,9347:6630773,44573462:25952256,5195847,589824 -(1,9347:6630773,45163286:25952256,5785671,0 -[1,9347:6630773,45163286:25952256,5785671,0 -(1,9347:6630773,45163286:25952256,5759457,0 -r1,9347:6656987,45163286:26214,5759457,0 -[1,9347:6656987,45163286:25899828,5759457,0 -(1,9347:6656987,44573462:25899828,4579809,0 -[1,9347:7246811,44573462:24720180,4579809,0 -(1,9305:7246811,41081027:24720180,1087374,115847 -k1,9302:8773993,41081027:317479 -k1,9302:10874707,41081027:317479 -k1,9302:13887682,41081027:317479 -(1,9302:13887682,41081027:0,452978,115847 -r1,9347:16707931,41081027:2820249,568825,115847 -k1,9302:13887682,41081027:-2820249 -) -(1,9302:13887682,41081027:2820249,452978,115847 -k1,9302:13887682,41081027:3277 -h1,9302:16704654,41081027:0,411205,112570 -) -k1,9302:17025410,41081027:317479 -k1,9302:17874386,41081027:317479 -k1,9302:20059642,41081027:317480 -k1,9302:22387110,41081027:317479 -k1,9302:23060449,41081027:317479 -k1,9302:26247094,41081027:317479 -k1,9302:27914615,41081027:317479 -k1,9302:28891386,41081027:317479 -k1,9302:31966991,41081027:0 -) -(1,9305:7246811,41922515:24720180,513147,134348 -k1,9302:9512808,41922515:256008 -k1,9302:10787900,41922515:256007 -k1,9302:13739404,41922515:256008 -k1,9302:15728183,41922515:256007 -k1,9302:17175636,41922515:256008 -k1,9302:18450729,41922515:256008 -k1,9302:21779064,41922515:256007 -k1,9302:24240359,41922515:256008 -k1,9303:24240359,41922515:0 -k1,9303:25147794,41922515:256007 -(1,9303:25147794,41922515:0,452978,115847 -r1,9347:27968043,41922515:2820249,568825,115847 -k1,9303:25147794,41922515:-2820249 -) -(1,9303:25147794,41922515:2820249,452978,115847 -k1,9303:25147794,41922515:3277 -h1,9303:27964766,41922515:0,411205,112570 -) -k1,9303:28224051,41922515:256008 -k1,9303:29011555,41922515:256007 -k1,9303:30286648,41922515:256008 -k1,9303:31966991,41922515:0 -) -(1,9305:7246811,42764003:24720180,513147,126483 -k1,9303:10215736,42764003:190198 -k1,9303:11167463,42764003:190199 -k1,9303:12376746,42764003:190198 -k1,9303:15262441,42764003:190199 -k1,9303:16726004,42764003:190198 -k1,9303:17544038,42764003:190199 -k1,9303:20539177,42764003:190198 -k1,9303:21195337,42764003:190199 -k1,9303:24081031,42764003:190198 -(1,9303:24081031,42764003:0,452978,115847 -r1,9347:26901280,42764003:2820249,568825,115847 -k1,9303:24081031,42764003:-2820249 -) -(1,9303:24081031,42764003:2820249,452978,115847 -k1,9303:24081031,42764003:3277 -h1,9303:26898003,42764003:0,411205,112570 -) -k1,9303:27091479,42764003:190199 -k1,9303:27813174,42764003:190198 -k1,9303:29069644,42764003:190199 -k1,9303:31966991,42764003:0 -) -(1,9305:7246811,43605491:24720180,513147,126483 -k1,9304:9498628,43605491:210371 -k1,9304:10728083,43605491:210370 -k1,9304:12618797,43605491:210371 -k1,9304:15607894,43605491:210370 -k1,9304:16579793,43605491:210371 -k1,9304:17809248,43605491:210370 -k1,9304:20715115,43605491:210371 -k1,9304:22025179,43605491:210370 -k1,9304:22767047,43605491:210371 -k1,9304:24261923,43605491:210370 -k1,9304:27251021,43605491:210371 -k1,9304:28222919,43605491:210370 -k1,9304:29452375,43605491:210371 -k1,9304:30810936,43605491:210370 -k1,9305:31966991,43605491:0 -) -(1,9305:7246811,44446979:24720180,513147,126483 -g1,9304:9689337,44446979 -g1,9304:12639767,44446979 -g1,9304:14848985,44446979 -g1,9304:16067299,44446979 -g1,9304:17843324,44446979 -g1,9304:18701845,44446979 -g1,9304:19920159,44446979 -k1,9305:31966991,44446979:9177666 -g1,9305:31966991,44446979 -) -] -) -] -r1,9347:32583029,45163286:26214,5759457,0 -) -] -) -) -g1,9347:32583029,44573462 -) -] -(1,9347:32583029,45706769:0,0,0 -g1,9347:32583029,45706769 -) -) -] -(1,9347:6630773,47279633:25952256,0,0 -h1,9347:6630773,47279633:25952256,0,0 -) -] -h1,9347:4262630,4025873:0,0,0 -] -!24455 +) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9352:37855564,49800853:1179648,16384,0 +) +) +k1,9352:3078556,49800853:-34777008 +) +] +g1,9352:6630773,4812305 +g1,9352:6630773,4812305 +g1,9352:9499939,4812305 +g1,9352:12584718,4812305 +g1,9352:13994397,4812305 +g1,9352:17201073,4812305 +k1,9352:31387652,4812305:14186579 +) +) +] +[1,9352:6630773,45706769:25952256,40108032,0 +(1,9352:6630773,45706769:25952256,40108032,0 +(1,9352:6630773,45706769:0,0,0 +g1,9352:6630773,45706769 +) +[1,9352:6630773,45706769:25952256,40108032,0 +(1,9269:6630773,6254097:25952256,513147,126483 +k1,9268:7834976,6254097:207400 +k1,9268:10703792,6254097:207399 +k1,9268:11527230,6254097:207400 +k1,9268:12937870,6254097:207399 +k1,9268:14900980,6254097:207400 +k1,9268:16656995,6254097:207399 +k1,9268:17732747,6254097:207400 +k1,9268:19072608,6254097:207399 +k1,9268:20664128,6254097:207400 +k1,9268:22762896,6254097:207399 +k1,9268:23501793,6254097:207400 +k1,9268:25039573,6254097:207399 +k1,9268:25898401,6254097:207400 +k1,9268:28066637,6254097:207399 +k1,9268:29557232,6254097:207400 +k1,9268:32583029,6254097:0 +) +(1,9269:6630773,7095585:25952256,513147,7863 +g1,9268:7489294,7095585 +g1,9268:8786251,7095585 +k1,9269:32583030,7095585:22292728 +g1,9269:32583030,7095585 +) +(1,9271:6630773,7937073:25952256,513147,134348 +h1,9270:6630773,7937073:983040,0,0 +k1,9270:9155370,7937073:181030 +k1,9270:12362198,7937073:181031 +k1,9270:13734673,7937073:181030 +k1,9270:16992618,7937073:181030 +k1,9270:18165208,7937073:181030 +k1,9270:20727817,7937073:181031 +k1,9270:22644240,7937073:181030 +k1,9270:25520766,7937073:181030 +(1,9270:25520766,7937073:0,459977,115847 +r1,9270:29044438,7937073:3523672,575824,115847 +k1,9270:25520766,7937073:-3523672 +) +(1,9270:25520766,7937073:3523672,459977,115847 +k1,9270:25520766,7937073:3277 +h1,9270:29041161,7937073:0,411205,112570 +) +k1,9270:29399139,7937073:181031 +k1,9270:30771614,7937073:181030 +k1,9270:32583029,7937073:0 +) +(1,9271:6630773,8778561:25952256,505283,134348 +k1,9270:7963252,8778561:186254 +k1,9270:9281313,8778561:186254 +k1,9270:11169537,8778561:186254 +k1,9270:13315318,8778561:186255 +k1,9270:14117610,8778561:186254 +k1,9270:14718694,8778561:186241 +k1,9270:15666476,8778561:186254 +k1,9270:19498498,8778561:186254 +k1,9270:20336180,8778561:186254 +k1,9270:20878294,8778561:186254 +k1,9270:23575888,8778561:186254 +k1,9270:25673828,8778561:186255 +k1,9270:26487917,8778561:186254 +k1,9270:27693256,8778561:186254 +k1,9270:30540927,8778561:186254 +k1,9271:32583029,8778561:0 +) +(1,9271:6630773,9620049:25952256,513147,134348 +(1,9270:6630773,9620049:0,414482,115847 +r1,9270:6989039,9620049:358266,530329,115847 +k1,9270:6630773,9620049:-358266 +) +(1,9270:6630773,9620049:358266,414482,115847 +k1,9270:6630773,9620049:3277 +h1,9270:6985762,9620049:0,411205,112570 +) +k1,9270:7163770,9620049:174731 +k1,9270:8529946,9620049:174731 +(1,9270:8529946,9620049:0,414482,115847 +r1,9270:8888212,9620049:358266,530329,115847 +k1,9270:8529946,9620049:-358266 +) +(1,9270:8529946,9620049:358266,414482,115847 +k1,9270:8529946,9620049:3277 +h1,9270:8884935,9620049:0,411205,112570 +) +k1,9270:9062943,9620049:174731 +k1,9270:10229234,9620049:174731 +k1,9270:11870661,9620049:174731 +k1,9270:14174001,9620049:174731 +k1,9270:18133436,9620049:174731 +k1,9270:18991052,9620049:174731 +k1,9270:21234099,9620049:174731 +k1,9270:22922056,9620049:174731 +k1,9270:25106776,9620049:174731 +k1,9270:26300592,9620049:174731 +k1,9270:29170819,9620049:174731 +k1,9270:30293201,9620049:174731 +k1,9270:32583029,9620049:0 +) +(1,9271:6630773,10461537:25952256,513147,134348 +k1,9270:8144561,10461537:229282 +k1,9270:9506306,10461537:229283 +k1,9270:10483354,10461537:229282 +k1,9270:13473668,10461537:229282 +k1,9270:14389112,10461537:229282 +k1,9270:18047894,10461537:229283 +k1,9270:19975214,10461537:229282 +k1,9270:21223581,10461537:229282 +k1,9270:24148360,10461537:229283 +k1,9270:24909139,10461537:229282 +k1,9270:27179867,10461537:229282 +k1,9270:28680547,10461537:229282 +k1,9270:30014112,10461537:229283 +k1,9270:31923737,10461537:229282 +k1,9270:32583029,10461537:0 +) +(1,9271:6630773,11303025:25952256,513147,134348 +k1,9270:10159112,11303025:247607 +k1,9270:12475035,11303025:247607 +k1,9270:13408803,11303025:247606 +k1,9270:17720297,11303025:247607 +k1,9270:18915555,11303025:247607 +k1,9270:21085333,11303025:247607 +k1,9270:23343585,11303025:247607 +k1,9270:24242620,11303025:247607 +k1,9270:25237992,11303025:247606 +k1,9270:28246631,11303025:247607 +k1,9270:29180400,11303025:247607 +k1,9270:32583029,11303025:0 +) +(1,9271:6630773,12144513:25952256,513147,134348 +g1,9270:8528040,12144513 +g1,9270:10817212,12144513 +g1,9270:12035526,12144513 +k1,9271:32583028,12144513:17678336 +g1,9271:32583028,12144513 +) +v1,9273:6630773,13334979:0,393216,0 +(1,9281:6630773,15022802:25952256,2081039,196608 +g1,9281:6630773,15022802 +g1,9281:6630773,15022802 +g1,9281:6434165,15022802 +(1,9281:6434165,15022802:0,2081039,196608 +r1,9281:32779637,15022802:26345472,2277647,196608 +k1,9281:6434165,15022802:-26345472 +) +(1,9281:6434165,15022802:26345472,2081039,196608 +[1,9281:6630773,15022802:25952256,1884431,0 +(1,9275:6630773,13548889:25952256,410518,101187 +(1,9274:6630773,13548889:0,0,0 +g1,9274:6630773,13548889 +g1,9274:6630773,13548889 +g1,9274:6303093,13548889 +(1,9274:6303093,13548889:0,0,0 +) +g1,9274:6630773,13548889 +) +g1,9275:9159939,13548889 +g1,9275:10108377,13548889 +g1,9275:13902126,13548889 +g1,9275:15482855,13548889 +g1,9275:16115147,13548889 +h1,9275:16747438,13548889:0,0,0 +k1,9275:32583029,13548889:15835591 +g1,9275:32583029,13548889 +) +(1,9276:6630773,14215067:25952256,404226,101187 +h1,9276:6630773,14215067:0,0,0 +g1,9276:10108377,14215067 +h1,9276:10740669,14215067:0,0,0 +k1,9276:32583029,14215067:21842360 +g1,9276:32583029,14215067 +) +(1,9280:6630773,14946781:25952256,404226,76021 +(1,9278:6630773,14946781:0,0,0 +g1,9278:6630773,14946781 +g1,9278:6630773,14946781 +g1,9278:6303093,14946781 +(1,9278:6303093,14946781:0,0,0 +) +g1,9278:6630773,14946781 +) +g1,9280:7579210,14946781 +g1,9280:8843793,14946781 +h1,9280:9476084,14946781:0,0,0 +k1,9280:32583028,14946781:23106944 +g1,9280:32583028,14946781 +) +] +) +g1,9281:32583029,15022802 +g1,9281:6630773,15022802 +g1,9281:6630773,15022802 +g1,9281:32583029,15022802 +g1,9281:32583029,15022802 +) +h1,9281:6630773,15219410:0,0,0 +v1,9285:6630773,17109474:0,393216,0 +(1,9304:6630773,36947529:25952256,20231271,616038 +g1,9304:6630773,36947529 +(1,9304:6630773,36947529:25952256,20231271,616038 +(1,9304:6630773,37563567:25952256,20847309,0 +[1,9304:6630773,37563567:25952256,20847309,0 +(1,9304:6630773,37537353:25952256,20794881,0 +r1,9304:6656987,37537353:26214,20794881,0 +[1,9304:6656987,37537353:25899828,20794881,0 +(1,9304:6656987,36947529:25899828,19615233,0 +[1,9304:7246811,36947529:24720180,19615233,0 +(1,9286:7246811,18417832:24720180,1085536,298548 +(1,9285:7246811,18417832:0,1085536,298548 +r1,9304:8753226,18417832:1506415,1384084,298548 +k1,9285:7246811,18417832:-1506415 +) +(1,9285:7246811,18417832:1506415,1085536,298548 +) +k1,9285:9062777,18417832:309551 +k1,9285:10000164,18417832:309552 +k1,9285:11743643,18417832:309551 +k1,9285:12641707,18417832:309551 +k1,9285:16353888,18417832:309552 +k1,9285:17314867,18417832:309551 +k1,9285:20650215,18417832:309551 +k1,9285:21951327,18417832:309552 +k1,9285:24466165,18417832:309551 +k1,9285:25537244,18417832:309551 +k1,9285:27530415,18417832:309551 +k1,9285:29220811,18417832:309552 +k1,9285:30061859,18417832:309551 +k1,9286:31966991,18417832:0 +) +(1,9286:7246811,19259320:24720180,513147,134348 +k1,9285:9082966,19259320:174162 +k1,9285:10611102,19259320:174162 +k1,9285:13994562,19259320:174162 +k1,9285:14820152,19259320:174162 +k1,9285:18427090,19259320:174162 +k1,9285:21575275,19259320:174161 +k1,9285:22919910,19259320:174162 +k1,9285:23909340,19259320:174162 +k1,9285:26093491,19259320:174162 +k1,9285:26623513,19259320:174162 +k1,9285:29493171,19259320:174162 +k1,9285:30318761,19259320:174162 +k1,9286:31966991,19259320:0 +) +(1,9286:7246811,20100808:24720180,513147,134348 +k1,9285:8370336,20100808:296461 +k1,9285:9437500,20100808:296461 +k1,9285:12979959,20100808:296461 +k1,9285:14064818,20100808:296461 +k1,9285:16041622,20100808:296461 +k1,9285:18703933,20100808:296461 +k1,9285:20019479,20100808:296461 +k1,9285:23011436,20100808:296461 +k1,9285:24440359,20100808:296461 +k1,9285:26964389,20100808:296461 +k1,9285:29837726,20100808:296461 +k1,9285:31966991,20100808:0 +) +(1,9286:7246811,20942296:24720180,513147,134348 +k1,9285:11162784,20942296:251200 +k1,9285:12248912,20942296:251199 +k1,9285:14202082,20942296:251200 +k1,9285:17799549,20942296:251199 +k1,9285:21453378,20942296:251200 +k1,9285:22808859,20942296:251199 +k1,9285:24345875,20942296:251200 +k1,9285:25344840,20942296:251199 +k1,9285:27801327,20942296:251200 +k1,9285:28814054,20942296:251199 +k1,9285:31966991,20942296:0 +) +(1,9286:7246811,21783784:24720180,513147,134348 +k1,9285:10174195,21783784:199120 +k1,9285:11657821,21783784:199120 +k1,9285:15833011,21783784:199121 +k1,9285:16683559,21783784:199120 +k1,9285:17238539,21783784:199120 +k1,9285:19566268,21783784:199120 +k1,9285:23046121,21783784:199121 +k1,9285:25255230,21783784:199120 +k1,9285:26473435,21783784:199120 +k1,9285:28249351,21783784:199120 +k1,9285:29107764,21783784:199121 +k1,9285:30325969,21783784:199120 +k1,9286:31966991,21783784:0 +) +(1,9286:7246811,22625272:24720180,513147,134348 +k1,9285:8669761,22625272:155484 +k1,9285:9816805,22625272:155484 +k1,9285:13372297,22625272:155484 +k1,9285:14179209,22625272:155484 +k1,9285:15353778,22625272:155484 +k1,9285:18581590,22625272:155484 +k1,9285:19928520,22625272:155485 +k1,9285:22346307,22625272:155484 +k1,9285:23133558,22625272:155484 +k1,9285:24807511,22625272:155484 +k1,9285:28718863,22625272:155484 +k1,9285:30975431,22625272:155484 +k1,9285:31966991,22625272:0 +) +(1,9286:7246811,23466760:24720180,513147,126483 +k1,9285:10788931,23466760:237139 +k1,9285:12893847,23466760:237140 +k1,9285:14430565,23466760:237139 +k1,9285:16768789,23466760:237140 +k1,9285:17665220,23466760:237139 +k1,9285:18258220,23466760:237140 +k1,9285:19768724,23466760:237139 +k1,9285:20475757,23466760:237140 +k1,9285:21244393,23466760:237139 +k1,9285:24111493,23466760:237140 +k1,9285:25000060,23466760:237139 +k1,9285:27476565,23466760:237140 +k1,9285:29207270,23466760:237139 +k1,9285:31966991,23466760:0 +) +(1,9286:7246811,24308248:24720180,505283,134348 +k1,9285:8097173,24308248:234324 +k1,9285:8746305,24308248:234289 +k1,9285:10716022,24308248:234324 +k1,9285:12642486,24308248:234324 +k1,9285:15719106,24308248:234324 +k1,9285:18422827,24308248:234324 +k1,9285:19848596,24308248:234324 +k1,9285:24481697,24308248:234324 +k1,9285:26408161,24308248:234324 +k1,9285:29552939,24308248:234324 +k1,9285:31280829,24308248:234324 +k1,9285:31966991,24308248:0 +) +(1,9286:7246811,25149736:24720180,513147,134348 +g1,9285:10956147,25149736 +g1,9285:11970644,25149736 +g1,9285:14130710,25149736 +g1,9285:17355736,25149736 +g1,9285:18839471,25149736 +g1,9285:20131185,25149736 +g1,9285:22757868,25149736 +g1,9285:23616389,25149736 +g1,9285:27218247,25149736 +g1,9285:28179004,25149736 +k1,9286:31966991,25149736:427956 +g1,9286:31966991,25149736 +) +v1,9288:7246811,26340202:0,393216,0 +(1,9298:7246811,29360381:24720180,3413395,196608 +g1,9298:7246811,29360381 +g1,9298:7246811,29360381 +g1,9298:7050203,29360381 +(1,9298:7050203,29360381:0,3413395,196608 +r1,9304:32163599,29360381:25113396,3610003,196608 +k1,9298:7050203,29360381:-25113396 +) +(1,9298:7050203,29360381:25113396,3413395,196608 +[1,9298:7246811,29360381:24720180,3216787,0 +(1,9290:7246811,26554112:24720180,410518,107478 +(1,9289:7246811,26554112:0,0,0 +g1,9289:7246811,26554112 +g1,9289:7246811,26554112 +g1,9289:6919131,26554112 +(1,9289:6919131,26554112:0,0,0 +) +g1,9289:7246811,26554112 +) +g1,9290:10408268,26554112 +g1,9290:11356706,26554112 +g1,9290:15782746,26554112 +g1,9290:16731184,26554112 +h1,9290:17679621,26554112:0,0,0 +k1,9290:31966991,26554112:14287370 +g1,9290:31966991,26554112 +) +(1,9291:7246811,27220290:24720180,388497,4718 +h1,9291:7246811,27220290:0,0,0 +g1,9291:7879103,27220290 +g1,9291:8827541,27220290 +h1,9291:9143687,27220290:0,0,0 +k1,9291:31966991,27220290:22823304 +g1,9291:31966991,27220290 +) +(1,9292:7246811,27886468:24720180,404226,107478 +h1,9292:7246811,27886468:0,0,0 +k1,9292:7246811,27886468:0 +h1,9292:11040559,27886468:0,0,0 +k1,9292:31966991,27886468:20926432 +g1,9292:31966991,27886468 +) +(1,9293:7246811,28552646:24720180,284164,4718 +h1,9293:7246811,28552646:0,0,0 +h1,9293:7562957,28552646:0,0,0 +k1,9293:31966991,28552646:24404034 +g1,9293:31966991,28552646 +) +(1,9297:7246811,29284360:24720180,404226,76021 +(1,9295:7246811,29284360:0,0,0 +g1,9295:7246811,29284360 +g1,9295:7246811,29284360 +g1,9295:6919131,29284360 +(1,9295:6919131,29284360:0,0,0 +) +g1,9295:7246811,29284360 +) +g1,9297:8195248,29284360 +g1,9297:9459831,29284360 +h1,9297:9775977,29284360:0,0,0 +k1,9297:31966991,29284360:22191014 +g1,9297:31966991,29284360 +) +] +) +g1,9298:31966991,29360381 +g1,9298:7246811,29360381 +g1,9298:7246811,29360381 +g1,9298:31966991,29360381 +g1,9298:31966991,29360381 +) +h1,9298:7246811,29556989:0,0,0 +(1,9302:7246811,30922765:24720180,513147,134348 +h1,9301:7246811,30922765:983040,0,0 +k1,9301:9063961,30922765:206275 +k1,9301:11776987,30922765:206274 +k1,9301:13115069,30922765:206275 +k1,9301:15164215,30922765:206274 +k1,9301:16654996,30922765:206275 +k1,9301:18721837,30922765:206274 +k1,9301:19579540,30922765:206275 +k1,9301:20533580,30922765:206274 +k1,9301:22483768,30922765:206275 +k1,9301:25474011,30922765:206274 +k1,9301:28046136,30922765:206275 +k1,9301:29271495,30922765:206274 +k1,9301:31966991,30922765:0 +) +(1,9302:7246811,31764253:24720180,513147,134348 +k1,9301:9124527,31764253:255700 +k1,9301:10127992,31764253:255699 +k1,9301:13162419,31764253:255700 +k1,9301:14179647,31764253:255700 +k1,9301:15454431,31764253:255699 +k1,9301:19743872,31764253:255700 +k1,9301:22896919,31764253:255700 +k1,9301:25927412,31764253:255699 +k1,9301:26834540,31764253:255700 +k1,9301:27860943,31764253:255700 +k1,9301:30076168,31764253:255699 +k1,9301:30947906,31764253:255700 +k1,9301:31966991,31764253:0 +) +(1,9302:7246811,32605741:24720180,513147,134348 +g1,9301:10462007,32605741 +g1,9301:14718570,32605741 +g1,9301:16194440,32605741 +g1,9301:18129062,32605741 +(1,9301:18129062,32605741:0,414482,115847 +r1,9304:19190751,32605741:1061689,530329,115847 +k1,9301:18129062,32605741:-1061689 +) +(1,9301:18129062,32605741:1061689,414482,115847 +k1,9301:18129062,32605741:3277 +h1,9301:19187474,32605741:0,411205,112570 +) +g1,9301:19389980,32605741 +g1,9301:20272094,32605741 +(1,9301:20272094,32605741:0,452978,122846 +r1,9304:23092343,32605741:2820249,575824,122846 +k1,9301:20272094,32605741:-2820249 +) +(1,9301:20272094,32605741:2820249,452978,122846 +k1,9301:20272094,32605741:3277 +h1,9301:23089066,32605741:0,411205,112570 +) +g1,9301:23498666,32605741 +g1,9301:24384057,32605741 +g1,9301:24939146,32605741 +g1,9301:26437954,32605741 +k1,9302:31966991,32605741:3584584 +g1,9302:31966991,32605741 +) +(1,9304:7246811,33447229:24720180,513147,134348 +h1,9303:7246811,33447229:983040,0,0 +k1,9303:9004242,33447229:286803 +k1,9303:11986629,33447229:286891 +k1,9303:13377802,33447229:286891 +k1,9303:15040294,33447229:286891 +k1,9303:17337830,33447229:286891 +k1,9303:17980582,33447229:286892 +k1,9303:20140492,33447229:286891 +k1,9303:22560580,33447229:286891 +k1,9303:23572299,33447229:286891 +k1,9303:25557228,33447229:286891 +k1,9303:28515366,33447229:286891 +k1,9303:30975431,33447229:286891 +k1,9303:31966991,33447229:0 +) +(1,9304:7246811,34288717:24720180,505283,134348 +k1,9303:10543172,34288717:255490 +k1,9303:12178849,34288717:255489 +k1,9303:13964605,34288717:255490 +k1,9303:14871522,34288717:255489 +k1,9303:15874778,34288717:255490 +k1,9303:18974530,34288717:255489 +k1,9303:20497486,34288717:255490 +k1,9303:21108835,34288717:255489 +k1,9303:23237344,34288717:255490 +k1,9303:25626030,34288717:255489 +k1,9303:26509355,34288717:255490 +k1,9303:28516622,34288717:255490 +k1,9303:30643164,34288717:255489 +k1,9303:31966991,34288717:0 +) +(1,9304:7246811,35130205:24720180,505283,134348 +k1,9303:8416019,35130205:177648 +k1,9303:10106892,35130205:177647 +k1,9303:10935968,35130205:177648 +k1,9303:13189797,35130205:177648 +k1,9303:14133560,35130205:177647 +k1,9303:15330293,35130205:177648 +k1,9303:17518585,35130205:177647 +k1,9303:18347661,35130205:177648 +k1,9303:19273075,35130205:177648 +k1,9303:22229449,35130205:177647 +k1,9303:23674563,35130205:177648 +k1,9303:25008921,35130205:177648 +k1,9303:25601390,35130205:177626 +k1,9303:27912234,35130205:177647 +k1,9303:29131904,35130205:177648 +k1,9303:31966991,35130205:0 +) +(1,9304:7246811,35971693:24720180,513147,134348 +k1,9303:9484378,35971693:249860 +k1,9303:10421710,35971693:249859 +k1,9303:13697367,35971693:249860 +k1,9303:15093451,35971693:249859 +(1,9303:15093451,35971693:0,452978,115847 +r1,9304:16506852,35971693:1413401,568825,115847 +k1,9303:15093451,35971693:-1413401 +) +(1,9303:15093451,35971693:1413401,452978,115847 +k1,9303:15093451,35971693:3277 +h1,9303:16503575,35971693:0,411205,112570 +) +k1,9303:16930382,35971693:249860 +k1,9303:20309586,35971693:249860 +k1,9303:21175483,35971693:249859 +k1,9303:23704030,35971693:249860 +h1,9303:24674618,35971693:0,0,0 +k1,9303:24924478,35971693:249860 +k1,9303:25983707,35971693:249859 +k1,9303:27731720,35971693:249860 +h1,9303:28927097,35971693:0,0,0 +k1,9303:29350626,35971693:249859 +k1,9303:31611131,35971693:249860 +k1,9303:31966991,35971693:0 +) +(1,9304:7246811,36813181:24720180,505283,134348 +g1,9303:10132361,36813181 +g1,9303:11325116,36813181 +g1,9303:12918296,36813181 +g1,9303:17790242,36813181 +g1,9303:20148227,36813181 +k1,9304:31966991,36813181:8691386 +g1,9304:31966991,36813181 +) +] +) +] +r1,9304:32583029,37537353:26214,20794881,0 +) +] +) +) +g1,9304:32583029,36947529 +) +h1,9304:6630773,37563567:0,0,0 +v1,9307:6630773,38929343:0,393216,0 +(1,9352:6630773,43731974:25952256,5195847,589824 +g1,9352:6630773,43731974 +(1,9352:6630773,43731974:25952256,5195847,589824 +(1,9352:6630773,44321798:25952256,5785671,0 +[1,9352:6630773,44321798:25952256,5785671,0 +(1,9352:6630773,44321798:25952256,5759457,0 +r1,9352:6656987,44321798:26214,5759457,0 +[1,9352:6656987,44321798:25899828,5759457,0 +(1,9352:6656987,43731974:25899828,4579809,0 +[1,9352:7246811,43731974:24720180,4579809,0 +(1,9310:7246811,40239539:24720180,1087374,115847 +k1,9307:8773993,40239539:317479 +k1,9307:10874707,40239539:317479 +k1,9307:13887682,40239539:317479 +(1,9307:13887682,40239539:0,452978,115847 +r1,9352:16707931,40239539:2820249,568825,115847 +k1,9307:13887682,40239539:-2820249 +) +(1,9307:13887682,40239539:2820249,452978,115847 +k1,9307:13887682,40239539:3277 +h1,9307:16704654,40239539:0,411205,112570 +) +k1,9307:17025410,40239539:317479 +k1,9307:17874386,40239539:317479 +k1,9307:20059642,40239539:317480 +k1,9307:22387110,40239539:317479 +k1,9307:23060449,40239539:317479 +k1,9307:26247094,40239539:317479 +k1,9307:27914615,40239539:317479 +k1,9307:28891386,40239539:317479 +k1,9307:31966991,40239539:0 +) +(1,9310:7246811,41081027:24720180,513147,134348 +k1,9307:9512808,41081027:256008 +k1,9307:10787900,41081027:256007 +k1,9307:13739404,41081027:256008 +k1,9307:15728183,41081027:256007 +k1,9307:17175636,41081027:256008 +k1,9307:18450729,41081027:256008 +k1,9307:21779064,41081027:256007 +k1,9307:24240359,41081027:256008 +k1,9308:24240359,41081027:0 +k1,9308:25147794,41081027:256007 +(1,9308:25147794,41081027:0,452978,115847 +r1,9352:27968043,41081027:2820249,568825,115847 +k1,9308:25147794,41081027:-2820249 +) +(1,9308:25147794,41081027:2820249,452978,115847 +k1,9308:25147794,41081027:3277 +h1,9308:27964766,41081027:0,411205,112570 +) +k1,9308:28224051,41081027:256008 +k1,9308:29011555,41081027:256007 +k1,9308:30286648,41081027:256008 +k1,9308:31966991,41081027:0 +) +(1,9310:7246811,41922515:24720180,513147,126483 +k1,9308:10283348,41922515:257810 +k1,9308:11302686,41922515:257810 +k1,9308:12579581,41922515:257810 +k1,9308:15532886,41922515:257809 +k1,9308:17064061,41922515:257810 +k1,9308:17949706,41922515:257810 +k1,9308:21012457,41922515:257810 +k1,9308:21736228,41922515:257810 +k1,9308:24689534,41922515:257810 +(1,9308:24689534,41922515:0,452978,115847 +r1,9352:27509783,41922515:2820249,568825,115847 +k1,9308:24689534,41922515:-2820249 +) +(1,9308:24689534,41922515:2820249,452978,115847 +k1,9308:24689534,41922515:3277 +h1,9308:27506506,41922515:0,411205,112570 +) +k1,9308:27767592,41922515:257809 +k1,9308:28556899,41922515:257810 +k1,9308:29880980,41922515:257810 +k1,9310:31966991,41922515:0 +) +(1,9310:7246811,42764003:24720180,513147,126483 +k1,9308:8490919,42764003:219780 +k1,9309:10752144,42764003:219779 +k1,9309:11991009,42764003:219780 +k1,9309:13891131,42764003:219779 +k1,9309:16889638,42764003:219780 +k1,9309:17870945,42764003:219779 +k1,9309:19109810,42764003:219780 +k1,9309:22025086,42764003:219780 +k1,9309:23344559,42764003:219779 +k1,9309:24095836,42764003:219780 +k1,9309:25600121,42764003:219779 +k1,9309:28598628,42764003:219780 +k1,9309:29579935,42764003:219779 +k1,9309:30818800,42764003:219780 +k1,9309:31966991,42764003:0 +) +(1,9310:7246811,43605491:24720180,513147,126483 +g1,9309:10632400,43605491 +g1,9309:13582830,43605491 +g1,9309:15792048,43605491 +g1,9309:17010362,43605491 +g1,9309:18786387,43605491 +g1,9309:19644908,43605491 +g1,9309:20863222,43605491 +k1,9310:31966991,43605491:8234603 +g1,9310:31966991,43605491 +) +] +) +] +r1,9352:32583029,44321798:26214,5759457,0 +) +] +) +) +g1,9352:32583029,43731974 +) +] +(1,9352:32583029,45706769:0,0,0 +g1,9352:32583029,45706769 +) +) +] +(1,9352:6630773,47279633:25952256,0,0 +h1,9352:6630773,47279633:25952256,0,0 +) +] +h1,9352:4262630,4025873:0,0,0 +] +!23945 }176 -Input:1210:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1211:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1212:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:1206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {177 -[1,9392:4262630,47279633:28320399,43253760,0 -(1,9392:4262630,4025873:0,0,0 -[1,9392:-473657,4025873:25952256,0,0 -(1,9392:-473657,-710414:25952256,0,0 -h1,9392:-473657,-710414:0,0,0 -(1,9392:-473657,-710414:0,0,0 -(1,9392:-473657,-710414:0,0,0 -g1,9392:-473657,-710414 -(1,9392:-473657,-710414:65781,0,65781 -g1,9392:-407876,-710414 -[1,9392:-407876,-644633:0,0,0 +[1,9397:4262630,47279633:28320399,43253760,0 +(1,9397:4262630,4025873:0,0,0 +[1,9397:-473657,4025873:25952256,0,0 +(1,9397:-473657,-710414:25952256,0,0 +h1,9397:-473657,-710414:0,0,0 +(1,9397:-473657,-710414:0,0,0 +(1,9397:-473657,-710414:0,0,0 +g1,9397:-473657,-710414 +(1,9397:-473657,-710414:65781,0,65781 +g1,9397:-407876,-710414 +[1,9397:-407876,-644633:0,0,0 ] ) -k1,9392:-473657,-710414:-65781 +k1,9397:-473657,-710414:-65781 ) ) -k1,9392:25478599,-710414:25952256 -g1,9392:25478599,-710414 +k1,9397:25478599,-710414:25952256 +g1,9397:25478599,-710414 ) ] ) -[1,9392:6630773,47279633:25952256,43253760,0 -[1,9392:6630773,4812305:25952256,786432,0 -(1,9392:6630773,4812305:25952256,505283,134348 -(1,9392:6630773,4812305:25952256,505283,134348 -g1,9392:3078558,4812305 -[1,9392:3078558,4812305:0,0,0 -(1,9392:3078558,2439708:0,1703936,0 -k1,9392:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9392:2537886,2439708:1179648,16384,0 +[1,9397:6630773,47279633:25952256,43253760,0 +[1,9397:6630773,4812305:25952256,786432,0 +(1,9397:6630773,4812305:25952256,505283,134348 +(1,9397:6630773,4812305:25952256,505283,134348 +g1,9397:3078558,4812305 +[1,9397:3078558,4812305:0,0,0 +(1,9397:3078558,2439708:0,1703936,0 +k1,9397:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9397:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9392:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9397:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9392:3078558,4812305:0,0,0 -(1,9392:3078558,2439708:0,1703936,0 -g1,9392:29030814,2439708 -g1,9392:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9392:36151628,1915420:16384,1179648,0 +[1,9397:3078558,4812305:0,0,0 +(1,9397:3078558,2439708:0,1703936,0 +g1,9397:29030814,2439708 +g1,9397:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9397:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9392:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9397:37855564,2439708:1179648,16384,0 ) ) -k1,9392:3078556,2439708:-34777008 +k1,9397:3078556,2439708:-34777008 ) ] -[1,9392:3078558,4812305:0,0,0 -(1,9392:3078558,49800853:0,16384,2228224 -k1,9392:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9392:2537886,49800853:1179648,16384,0 +[1,9397:3078558,4812305:0,0,0 +(1,9397:3078558,49800853:0,16384,2228224 +k1,9397:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9397:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9392:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9397:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9392:3078558,4812305:0,0,0 -(1,9392:3078558,49800853:0,16384,2228224 -g1,9392:29030814,49800853 -g1,9392:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9392:36151628,51504789:16384,1179648,0 +[1,9397:3078558,4812305:0,0,0 +(1,9397:3078558,49800853:0,16384,2228224 +g1,9397:29030814,49800853 +g1,9397:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9397:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9392:37855564,49800853:1179648,16384,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9397:37855564,49800853:1179648,16384,0 ) ) -k1,9392:3078556,49800853:-34777008 +k1,9397:3078556,49800853:-34777008 ) ] -g1,9392:6630773,4812305 -k1,9392:20873058,4812305:13046908 -g1,9392:22259799,4812305 -g1,9392:22908605,4812305 -g1,9392:26222760,4812305 -g1,9392:28614824,4812305 -g1,9392:30094627,4812305 -) +g1,9397:6630773,4812305 +k1,9397:20781963,4812305:12955813 +g1,9397:22168704,4812305 +g1,9397:22817510,4812305 +g1,9397:26131665,4812305 +g1,9397:28614824,4812305 +g1,9397:30094627,4812305 +) ) ] -[1,9392:6630773,45706769:25952256,40108032,0 -(1,9392:6630773,45706769:25952256,40108032,0 -(1,9392:6630773,45706769:0,0,0 -g1,9392:6630773,45706769 +[1,9397:6630773,45706769:25952256,40108032,0 +(1,9397:6630773,45706769:25952256,40108032,0 +(1,9397:6630773,45706769:0,0,0 +g1,9397:6630773,45706769 ) -[1,9392:6630773,45706769:25952256,40108032,0 -v1,9347:6630773,6254097:0,393216,0 -(1,9347:6630773,20728380:25952256,14867499,616038 -g1,9347:6630773,20728380 -(1,9347:6630773,20728380:25952256,14867499,616038 -(1,9347:6630773,21344418:25952256,15483537,0 -[1,9347:6630773,21344418:25952256,15483537,0 -(1,9347:6630773,21318204:25952256,15457323,0 -r1,9347:6656987,21318204:26214,15457323,0 -[1,9347:6656987,21318204:25899828,15457323,0 -(1,9347:6656987,20728380:25899828,14277675,0 -[1,9347:7246811,20728380:24720180,14277675,0 -v1,9308:7246811,6843921:0,393216,0 -(1,9345:7246811,20007484:24720180,13556779,196608 -g1,9345:7246811,20007484 -g1,9345:7246811,20007484 -g1,9345:7050203,20007484 -(1,9345:7050203,20007484:0,13556779,196608 -r1,9347:32163599,20007484:25113396,13753387,196608 -k1,9345:7050203,20007484:-25113396 -) -(1,9345:7050203,20007484:25113396,13556779,196608 -[1,9345:7246811,20007484:24720180,13360171,0 -(1,9310:7246811,7057831:24720180,410518,101187 -(1,9309:7246811,7057831:0,0,0 -g1,9309:7246811,7057831 -g1,9309:7246811,7057831 -g1,9309:6919131,7057831 -(1,9309:6919131,7057831:0,0,0 -) -g1,9309:7246811,7057831 -) -g1,9310:10408268,7057831 -g1,9310:11356706,7057831 -k1,9310:11356706,7057831:0 -h1,9310:17995765,7057831:0,0,0 -k1,9310:31966991,7057831:13971226 -g1,9310:31966991,7057831 -) -(1,9311:7246811,7724009:24720180,404226,101187 -h1,9311:7246811,7724009:0,0,0 -k1,9311:7246811,7724009:0 -h1,9311:12621288,7724009:0,0,0 -k1,9311:31966992,7724009:19345704 -g1,9311:31966992,7724009 -) -(1,9315:7246811,8455723:24720180,404226,76021 -(1,9313:7246811,8455723:0,0,0 -g1,9313:7246811,8455723 -g1,9313:7246811,8455723 -g1,9313:6919131,8455723 -(1,9313:6919131,8455723:0,0,0 -) -g1,9313:7246811,8455723 -) -g1,9315:8195248,8455723 -g1,9315:9459831,8455723 -h1,9315:11356705,8455723:0,0,0 -k1,9315:31966991,8455723:20610286 -g1,9315:31966991,8455723 -) -(1,9317:7246811,9777261:24720180,410518,101187 -(1,9316:7246811,9777261:0,0,0 -g1,9316:7246811,9777261 -g1,9316:7246811,9777261 -g1,9316:6919131,9777261 -(1,9316:6919131,9777261:0,0,0 -) -g1,9316:7246811,9777261 -) -g1,9317:10408268,9777261 -g1,9317:11356706,9777261 -g1,9317:18311911,9777261 -k1,9317:18311911,9777261:0 -h1,9317:21473368,9777261:0,0,0 -k1,9317:31966991,9777261:10493623 -g1,9317:31966991,9777261 -) -(1,9318:7246811,10443439:24720180,404226,101187 -h1,9318:7246811,10443439:0,0,0 -k1,9318:7246811,10443439:0 -h1,9318:12621288,10443439:0,0,0 -k1,9318:31966992,10443439:19345704 -g1,9318:31966992,10443439 -) -(1,9323:7246811,11175153:24720180,404226,76021 -(1,9320:7246811,11175153:0,0,0 -g1,9320:7246811,11175153 -g1,9320:7246811,11175153 -g1,9320:6919131,11175153 -(1,9320:6919131,11175153:0,0,0 -) -g1,9320:7246811,11175153 -) -g1,9323:8195248,11175153 -g1,9323:9459831,11175153 -h1,9323:11356705,11175153:0,0,0 -k1,9323:31966991,11175153:20610286 -g1,9323:31966991,11175153 -) -(1,9323:7246811,11841331:24720180,404226,76021 -h1,9323:7246811,11841331:0,0,0 -g1,9323:8195248,11841331 -g1,9323:9459831,11841331 -h1,9323:11356705,11841331:0,0,0 -k1,9323:31966991,11841331:20610286 -g1,9323:31966991,11841331 -) -(1,9325:7246811,13162869:24720180,410518,101187 -(1,9324:7246811,13162869:0,0,0 -g1,9324:7246811,13162869 -g1,9324:7246811,13162869 -g1,9324:6919131,13162869 -(1,9324:6919131,13162869:0,0,0 -) -g1,9324:7246811,13162869 -) -g1,9325:10408268,13162869 -g1,9325:11356706,13162869 -g1,9325:18628057,13162869 -k1,9325:18628057,13162869:0 -h1,9325:21473368,13162869:0,0,0 -k1,9325:31966991,13162869:10493623 -g1,9325:31966991,13162869 -) -(1,9326:7246811,13829047:24720180,404226,101187 -h1,9326:7246811,13829047:0,0,0 -k1,9326:7246811,13829047:0 -h1,9326:12621288,13829047:0,0,0 -k1,9326:31966992,13829047:19345704 -g1,9326:31966992,13829047 -) -(1,9330:7246811,14560761:24720180,404226,76021 -(1,9328:7246811,14560761:0,0,0 -g1,9328:7246811,14560761 -g1,9328:7246811,14560761 -g1,9328:6919131,14560761 -(1,9328:6919131,14560761:0,0,0 -) -g1,9328:7246811,14560761 -) -g1,9330:8195248,14560761 -g1,9330:9459831,14560761 -h1,9330:11356705,14560761:0,0,0 -k1,9330:31966991,14560761:20610286 -g1,9330:31966991,14560761 -) -(1,9332:7246811,15882299:24720180,410518,101187 -(1,9331:7246811,15882299:0,0,0 -g1,9331:7246811,15882299 -g1,9331:7246811,15882299 -g1,9331:6919131,15882299 -(1,9331:6919131,15882299:0,0,0 -) -g1,9331:7246811,15882299 -) -g1,9332:10408268,15882299 -g1,9332:11356706,15882299 -g1,9332:18311911,15882299 -k1,9332:18311911,15882299:0 -h1,9332:21157222,15882299:0,0,0 -k1,9332:31966991,15882299:10809769 -g1,9332:31966991,15882299 -) -(1,9333:7246811,16548477:24720180,404226,101187 -h1,9333:7246811,16548477:0,0,0 -k1,9333:7246811,16548477:0 -h1,9333:12621288,16548477:0,0,0 -k1,9333:31966992,16548477:19345704 -g1,9333:31966992,16548477 -) -(1,9337:7246811,17280191:24720180,379060,7863 -(1,9335:7246811,17280191:0,0,0 -g1,9335:7246811,17280191 -g1,9335:7246811,17280191 -g1,9335:6919131,17280191 -(1,9335:6919131,17280191:0,0,0 -) -g1,9335:7246811,17280191 -) -g1,9337:8195248,17280191 -h1,9337:9459831,17280191:0,0,0 -k1,9337:31966991,17280191:22507160 -g1,9337:31966991,17280191 -) -(1,9339:7246811,18601729:24720180,410518,101187 -(1,9338:7246811,18601729:0,0,0 -g1,9338:7246811,18601729 -g1,9338:7246811,18601729 -g1,9338:6919131,18601729 -(1,9338:6919131,18601729:0,0,0 -) -g1,9338:7246811,18601729 -) -g1,9339:10408268,18601729 -g1,9339:11356706,18601729 -k1,9339:11356706,18601729:0 -h1,9339:15782746,18601729:0,0,0 -k1,9339:31966991,18601729:16184245 -g1,9339:31966991,18601729 -) -(1,9340:7246811,19267907:24720180,404226,101187 -h1,9340:7246811,19267907:0,0,0 -k1,9340:7246811,19267907:0 -h1,9340:12621288,19267907:0,0,0 -k1,9340:31966992,19267907:19345704 -g1,9340:31966992,19267907 -) -(1,9344:7246811,19999621:24720180,379060,7863 -(1,9342:7246811,19999621:0,0,0 -g1,9342:7246811,19999621 -g1,9342:7246811,19999621 -g1,9342:6919131,19999621 -(1,9342:6919131,19999621:0,0,0 -) -g1,9342:7246811,19999621 -) -g1,9344:8195248,19999621 -h1,9344:9459831,19999621:0,0,0 -k1,9344:31966991,19999621:22507160 -g1,9344:31966991,19999621 -) -] -) -g1,9345:31966991,20007484 -g1,9345:7246811,20007484 -g1,9345:7246811,20007484 -g1,9345:31966991,20007484 -g1,9345:31966991,20007484 -) -h1,9345:7246811,20204092:0,0,0 -] -) -] -r1,9347:32583029,21318204:26214,15457323,0 -) -] -) -) -g1,9347:32583029,20728380 -) -h1,9347:6630773,21344418:0,0,0 -v1,9350:6630773,22710194:0,393216,0 -(1,9351:6630773,26867945:25952256,4550967,616038 -g1,9351:6630773,26867945 -(1,9351:6630773,26867945:25952256,4550967,616038 -(1,9351:6630773,27483983:25952256,5167005,0 -[1,9351:6630773,27483983:25952256,5167005,0 -(1,9351:6630773,27457769:25952256,5114577,0 -r1,9351:6656987,27457769:26214,5114577,0 -[1,9351:6656987,27457769:25899828,5114577,0 -(1,9351:6656987,26867945:25899828,3934929,0 -[1,9351:7246811,26867945:24720180,3934929,0 -(1,9351:7246811,24216998:24720180,1283982,196608 -(1,9350:7246811,24216998:0,1283982,196608 -r1,9351:9812056,24216998:2565245,1480590,196608 -k1,9350:7246811,24216998:-2565245 -) -(1,9350:7246811,24216998:2565245,1283982,196608 -) -k1,9350:10065943,24216998:253887 -k1,9350:11688878,24216998:253888 -k1,9350:12961850,24216998:253887 -k1,9350:15975459,24216998:253888 -k1,9350:16888638,24216998:253887 -k1,9350:20168322,24216998:253887 -(1,9350:20168322,24216998:0,452978,115847 -r1,9351:24043706,24216998:3875384,568825,115847 -k1,9350:20168322,24216998:-3875384 -) -(1,9350:20168322,24216998:3875384,452978,115847 -k1,9350:20168322,24216998:3277 -h1,9350:24040429,24216998:0,411205,112570 -) -k1,9350:24297594,24216998:253888 -k1,9350:25742926,24216998:253887 -(1,9350:25742926,24216998:0,452978,115847 -r1,9351:29618310,24216998:3875384,568825,115847 -k1,9350:25742926,24216998:-3875384 -) -(1,9350:25742926,24216998:3875384,452978,115847 -k1,9350:25742926,24216998:3277 -h1,9350:29615033,24216998:0,411205,112570 -) -k1,9350:30045868,24216998:253888 -k1,9350:30985917,24216998:253887 -k1,9351:31966991,24216998:0 -) -(1,9351:7246811,25058486:24720180,513147,126483 -k1,9350:9126534,25058486:266227 -k1,9350:11421757,25058486:266228 -k1,9350:13154680,25058486:266227 -k1,9350:14033670,25058486:266228 -k1,9350:15318982,25058486:266227 -k1,9350:18744700,25058486:266227 -k1,9350:21585838,25058486:266228 -k1,9350:23043510,25058486:266227 -k1,9350:23925775,25058486:266227 -k1,9350:24547863,25058486:266228 -k1,9350:26818836,25058486:266227 -k1,9350:28281751,25058486:266228 -k1,9350:31307699,25058486:266227 -k1,9350:31966991,25058486:0 -) -(1,9351:7246811,25899974:24720180,513147,126483 -k1,9350:8607478,25899974:203957 -k1,9350:9470728,25899974:203958 -k1,9350:11371412,25899974:203957 -k1,9350:14601166,25899974:203957 -k1,9350:15937586,25899974:203958 -k1,9350:16889309,25899974:203957 -k1,9350:19855610,25899974:203958 -k1,9350:21757605,25899974:203957 -k1,9350:22980647,25899974:203957 -k1,9350:25015681,25899974:203958 -k1,9350:25751135,25899974:203957 -k1,9350:28484782,25899974:203957 -k1,9350:30131187,25899974:203958 -k1,9350:30947906,25899974:203957 -k1,9350:31966991,25899974:0 -) -(1,9351:7246811,26741462:24720180,505283,126483 -g1,9350:10605531,26741462 -g1,9350:13379670,26741462 -g1,9350:15912636,26741462 -k1,9351:31966991,26741462:14583727 -g1,9351:31966991,26741462 -) -] -) -] -r1,9351:32583029,27457769:26214,5114577,0 -) -] -) -) -g1,9351:32583029,26867945 -) -h1,9351:6630773,27483983:0,0,0 -(1,9354:6630773,28849759:25952256,505283,134348 -h1,9353:6630773,28849759:983040,0,0 -k1,9353:11050652,28849759:316670 -k1,9353:12842537,28849759:316670 -k1,9353:14667846,28849759:316670 -k1,9353:16314897,28849759:316670 -k1,9353:18631726,28849759:316670 -k1,9353:20211929,28849759:316669 -k1,9353:22596915,28849759:316670 -k1,9353:25263706,28849759:316670 -k1,9353:26341904,28849759:316670 -k1,9353:28937261,28849759:316670 -k1,9353:32583029,28849759:0 -) -(1,9354:6630773,29691247:25952256,513147,126483 -k1,9353:8844404,29691247:203642 -k1,9353:10067131,29691247:203642 -k1,9353:11847569,29691247:203642 -k1,9353:12710504,29691247:203643 -k1,9353:13270006,29691247:203642 -k1,9353:16169144,29691247:203642 -k1,9353:17364346,29691247:203642 -k1,9353:19610745,29691247:203642 -k1,9353:21189988,29691247:203642 -k1,9353:23403619,29691247:203642 -k1,9353:24626346,29691247:203642 -k1,9353:26406785,29691247:203643 -k1,9353:27269719,29691247:203642 -k1,9353:28492446,29691247:203642 -k1,9353:31391584,29691247:203642 -k1,9353:32583029,29691247:0 -) -(1,9354:6630773,30532735:25952256,513147,126483 -k1,9353:10000231,30532735:228317 -k1,9353:11926586,30532735:228317 -k1,9353:13173988,30532735:228317 -k1,9353:16097802,30532735:228318 -k1,9353:18667065,30532735:228317 -k1,9353:20463003,30532735:228317 -k1,9353:21710405,30532735:228317 -k1,9353:23212087,30532735:228317 -k1,9353:24068239,30532735:228317 -k1,9353:26575244,30532735:228318 -k1,9353:28069717,30532735:228317 -k1,9353:31323831,30532735:228317 -k1,9353:32168186,30532735:228317 -k1,9354:32583029,30532735:0 -) -(1,9354:6630773,31374223:25952256,513147,134348 -k1,9353:7677442,31374223:231401 -k1,9353:8975115,31374223:231402 -k1,9353:10985818,31374223:231401 -k1,9353:12725858,31374223:231401 -k1,9353:17014594,31374223:231402 -k1,9353:19804521,31374223:231401 -k1,9353:21335502,31374223:231402 -k1,9353:23841658,31374223:231401 -k1,9353:25630850,31374223:231401 -k1,9353:28084578,31374223:231402 -k1,9353:30024503,31374223:231401 -k1,9353:32583029,31374223:0 -) -(1,9354:6630773,32215711:25952256,513147,134348 -k1,9353:10302886,32215711:269484 -k1,9353:11763815,32215711:269484 -k1,9353:14043944,32215711:269484 -k1,9353:14669287,32215711:269483 -k1,9353:16619114,32215711:269484 -k1,9353:17574760,32215711:269484 -k1,9353:18863329,32215711:269484 -k1,9353:20975685,32215711:269484 -k1,9353:21904461,32215711:269484 -k1,9353:23193030,32215711:269484 -k1,9353:24735879,32215711:269484 -k1,9353:26386206,32215711:269483 -k1,9353:28336033,32215711:269484 -k1,9353:29709799,32215711:269484 -k1,9353:30727049,32215711:269484 -k1,9353:32583029,32215711:0 -) -(1,9354:6630773,33057199:25952256,513147,134348 -g1,9353:9180123,33057199 -g1,9353:10062237,33057199 -g1,9353:13036260,33057199 -g1,9353:13921651,33057199 -g1,9353:14989232,33057199 -g1,9353:16663676,33057199 -g1,9353:18302731,33057199 -g1,9353:20199998,33057199 -g1,9353:22134620,33057199 -g1,9353:25359646,33057199 -k1,9354:32583029,33057199:5016130 -g1,9354:32583029,33057199 -) -(1,9355:6630773,35148459:25952256,564462,139132 -(1,9355:6630773,35148459:2450326,534184,12975 -g1,9355:6630773,35148459 -g1,9355:9081099,35148459 -) -g1,9355:12604118,35148459 -k1,9355:32583029,35148459:16537353 -g1,9355:32583029,35148459 -) -(1,9359:6630773,36383163:25952256,513147,126483 -k1,9358:8436524,36383163:160797 -k1,9358:9616406,36383163:160797 -k1,9358:10789735,36383163:160798 -k1,9358:13942251,36383163:160797 -k1,9358:16132043,36383163:160797 -k1,9358:17161192,36383163:160797 -k1,9358:18454451,36383163:160797 -k1,9358:20576086,36383163:160798 -k1,9358:21092743,36383163:160797 -k1,9358:22969928,36383163:160797 -k1,9358:24202894,36383163:160797 -k1,9358:26340913,36383163:160798 -k1,9358:29370876,36383163:160797 -k1,9358:29887533,36383163:160797 -k1,9358:32583029,36383163:0 -) -(1,9359:6630773,37224651:25952256,513147,134348 -k1,9358:7727039,37224651:148615 -k1,9358:11326781,37224651:148616 -k1,9358:12494481,37224651:148615 -k1,9358:15486704,37224651:148616 -k1,9358:17242262,37224651:148615 -k1,9358:18050170,37224651:148616 -k1,9358:19217870,37224651:148615 -k1,9358:21104501,37224651:148616 -k1,9358:22820737,37224651:148615 -k1,9358:23325213,37224651:148616 -k1,9358:26093957,37224651:148615 -k1,9358:28394119,37224651:148615 -k1,9358:29739422,37224651:148616 -k1,9358:32583029,37224651:0 -) -(1,9359:6630773,38066139:25952256,639543,134348 -k1,9358:8505836,38066139:268120 -k1,9358:9305452,38066139:268119 -k1,9358:11268333,38066139:268120 -k1,9358:12297981,38066139:268120 -$1,9358:12297981,38066139 -[1,9358:12678090,38164453:384631,359203,5505 -(1,9358:13007473,38158948:0,353698,0 -) -(1,9358:12678090,38164453:351863,248644,5505 -) -] -k1,9358:13370689,38066139:307968 -k1,9358:14246855,38066139:307969 -(1,9358:14246855,38066139:2195193,639543,119364 -[1,9358:14246855,37479024:595722,26214,706479 -] -[1,9358:14842577,38066139:1599471,639543,95027 -(1,9358:14842577,38066139:1599471,530010,95027 -(1,9358:15271182,37876064:311689,339935,0 -) -) -] -) -$1,9358:16442048,38066139 -k1,9358:16883838,38066139:268120 -k1,9358:18105506,38066139:268119 -k1,9358:19477908,38066139:268120 -k1,9358:22557523,38066139:268120 -k1,9358:24028883,38066139:268119 -k1,9358:25564469,38066139:268120 -k1,9358:26851674,38066139:268120 -k1,9358:30201952,38066139:268120 -k1,9358:31129363,38066139:268119 -k1,9358:32168186,38066139:268120 -k1,9359:32583029,38066139:0 -) -(1,9359:6630773,38907627:25952256,513147,115847 -g1,9358:9525498,38907627 -g1,9358:11592503,38907627 -(1,9358:11592503,38907627:0,414482,115847 -r1,9358:12654192,38907627:1061689,530329,115847 -k1,9358:11592503,38907627:-1061689 -) -(1,9358:11592503,38907627:1061689,414482,115847 -k1,9358:11592503,38907627:3277 -h1,9358:12650915,38907627:0,411205,112570 -) -k1,9359:32583030,38907627:19755168 -g1,9359:32583030,38907627 -) -v1,9361:6630773,40098093:0,393216,0 -(1,9365:6630773,40419481:25952256,714604,196608 -g1,9365:6630773,40419481 -g1,9365:6630773,40419481 -g1,9365:6434165,40419481 -(1,9365:6434165,40419481:0,714604,196608 -r1,9365:32779637,40419481:26345472,911212,196608 -k1,9365:6434165,40419481:-26345472 -) -(1,9365:6434165,40419481:26345472,714604,196608 -[1,9365:6630773,40419481:25952256,517996,0 -(1,9363:6630773,40312003:25952256,410518,107478 -(1,9362:6630773,40312003:0,0,0 -g1,9362:6630773,40312003 -g1,9362:6630773,40312003 -g1,9362:6303093,40312003 -(1,9362:6303093,40312003:0,0,0 -) -g1,9362:6630773,40312003 -) -g1,9363:7895356,40312003 -g1,9363:8843794,40312003 -g1,9363:16431291,40312003 -g1,9363:17063583,40312003 -k1,9363:17063583,40312003:0 -h1,9363:20541185,40312003:0,0,0 -k1,9363:32583029,40312003:12041844 -g1,9363:32583029,40312003 -) -] -) -g1,9365:32583029,40419481 -g1,9365:6630773,40419481 -g1,9365:6630773,40419481 -g1,9365:32583029,40419481 -g1,9365:32583029,40419481 -) -h1,9365:6630773,40616089:0,0,0 -(1,9369:6630773,41981865:25952256,513147,7863 -h1,9368:6630773,41981865:983040,0,0 -g1,9368:8766591,41981865 -g1,9368:10070102,41981865 -g1,9368:11460776,41981865 -g1,9368:12757733,41981865 -k1,9369:32583029,41981865:16956130 -g1,9369:32583029,41981865 -) -v1,9371:6630773,43172331:0,393216,0 -(1,9392:6630773,45444019:25952256,2664904,196608 -g1,9392:6630773,45444019 -g1,9392:6630773,45444019 -g1,9392:6434165,45444019 -(1,9392:6434165,45444019:0,2664904,196608 -r1,9392:32779637,45444019:26345472,2861512,196608 -k1,9392:6434165,45444019:-26345472 -) -(1,9392:6434165,45444019:26345472,2664904,196608 -[1,9392:6630773,45444019:25952256,2468296,0 -(1,9373:6630773,43379949:25952256,404226,82312 -(1,9372:6630773,43379949:0,0,0 -g1,9372:6630773,43379949 -g1,9372:6630773,43379949 -g1,9372:6303093,43379949 -(1,9372:6303093,43379949:0,0,0 -) -g1,9372:6630773,43379949 -) -g1,9373:7263065,43379949 -g1,9373:8211503,43379949 -g1,9373:9792233,43379949 -g1,9373:10740671,43379949 -g1,9373:11689109,43379949 -k1,9373:11689109,43379949:0 -h1,9373:12637547,43379949:0,0,0 -k1,9373:32583029,43379949:19945482 -g1,9373:32583029,43379949 -) -(1,9374:6630773,44046127:25952256,404226,82312 -h1,9374:6630773,44046127:0,0,0 -g1,9374:8211502,44046127 -g1,9374:9159940,44046127 -g1,9374:10740669,44046127 -h1,9374:11689106,44046127:0,0,0 -k1,9374:32583030,44046127:20893924 -g1,9374:32583030,44046127 -) -(1,9375:6630773,44712305:25952256,404226,76021 -h1,9375:6630773,44712305:0,0,0 -g1,9375:8527648,44712305 -g1,9375:9159940,44712305 -h1,9375:9792231,44712305:0,0,0 -k1,9375:32583029,44712305:22790798 -g1,9375:32583029,44712305 -) -(1,9379:6630773,45444019:25952256,404226,76021 -(1,9377:6630773,45444019:0,0,0 -g1,9377:6630773,45444019 -g1,9377:6630773,45444019 -g1,9377:6303093,45444019 -(1,9377:6303093,45444019:0,0,0 -) -g1,9377:6630773,45444019 -) -g1,9379:7579210,45444019 -g1,9379:8843793,45444019 -h1,9379:11372958,45444019:0,0,0 -k1,9379:32583030,45444019:21210072 -g1,9379:32583030,45444019 -) -] -) -g1,9392:32583029,45444019 -g1,9392:6630773,45444019 -g1,9392:6630773,45444019 -g1,9392:32583029,45444019 -g1,9392:32583029,45444019 -) -] -(1,9392:32583029,45706769:0,0,0 -g1,9392:32583029,45706769 -) -) -] -(1,9392:6630773,47279633:25952256,0,0 -h1,9392:6630773,47279633:25952256,0,0 -) -] -h1,9392:4262630,4025873:0,0,0 +[1,9397:6630773,45706769:25952256,40108032,0 +v1,9352:6630773,6254097:0,393216,0 +(1,9352:6630773,20728380:25952256,14867499,616038 +g1,9352:6630773,20728380 +(1,9352:6630773,20728380:25952256,14867499,616038 +(1,9352:6630773,21344418:25952256,15483537,0 +[1,9352:6630773,21344418:25952256,15483537,0 +(1,9352:6630773,21318204:25952256,15457323,0 +r1,9352:6656987,21318204:26214,15457323,0 +[1,9352:6656987,21318204:25899828,15457323,0 +(1,9352:6656987,20728380:25899828,14277675,0 +[1,9352:7246811,20728380:24720180,14277675,0 +v1,9313:7246811,6843921:0,393216,0 +(1,9350:7246811,20007484:24720180,13556779,196608 +g1,9350:7246811,20007484 +g1,9350:7246811,20007484 +g1,9350:7050203,20007484 +(1,9350:7050203,20007484:0,13556779,196608 +r1,9352:32163599,20007484:25113396,13753387,196608 +k1,9350:7050203,20007484:-25113396 +) +(1,9350:7050203,20007484:25113396,13556779,196608 +[1,9350:7246811,20007484:24720180,13360171,0 +(1,9315:7246811,7057831:24720180,410518,101187 +(1,9314:7246811,7057831:0,0,0 +g1,9314:7246811,7057831 +g1,9314:7246811,7057831 +g1,9314:6919131,7057831 +(1,9314:6919131,7057831:0,0,0 +) +g1,9314:7246811,7057831 +) +g1,9315:10408268,7057831 +g1,9315:11356706,7057831 +k1,9315:11356706,7057831:0 +h1,9315:17995765,7057831:0,0,0 +k1,9315:31966991,7057831:13971226 +g1,9315:31966991,7057831 +) +(1,9316:7246811,7724009:24720180,404226,101187 +h1,9316:7246811,7724009:0,0,0 +k1,9316:7246811,7724009:0 +h1,9316:12621288,7724009:0,0,0 +k1,9316:31966992,7724009:19345704 +g1,9316:31966992,7724009 +) +(1,9320:7246811,8455723:24720180,404226,76021 +(1,9318:7246811,8455723:0,0,0 +g1,9318:7246811,8455723 +g1,9318:7246811,8455723 +g1,9318:6919131,8455723 +(1,9318:6919131,8455723:0,0,0 +) +g1,9318:7246811,8455723 +) +g1,9320:8195248,8455723 +g1,9320:9459831,8455723 +h1,9320:11356705,8455723:0,0,0 +k1,9320:31966991,8455723:20610286 +g1,9320:31966991,8455723 +) +(1,9322:7246811,9777261:24720180,410518,101187 +(1,9321:7246811,9777261:0,0,0 +g1,9321:7246811,9777261 +g1,9321:7246811,9777261 +g1,9321:6919131,9777261 +(1,9321:6919131,9777261:0,0,0 +) +g1,9321:7246811,9777261 +) +g1,9322:10408268,9777261 +g1,9322:11356706,9777261 +g1,9322:18311911,9777261 +k1,9322:18311911,9777261:0 +h1,9322:21473368,9777261:0,0,0 +k1,9322:31966991,9777261:10493623 +g1,9322:31966991,9777261 +) +(1,9323:7246811,10443439:24720180,404226,101187 +h1,9323:7246811,10443439:0,0,0 +k1,9323:7246811,10443439:0 +h1,9323:12621288,10443439:0,0,0 +k1,9323:31966992,10443439:19345704 +g1,9323:31966992,10443439 +) +(1,9328:7246811,11175153:24720180,404226,76021 +(1,9325:7246811,11175153:0,0,0 +g1,9325:7246811,11175153 +g1,9325:7246811,11175153 +g1,9325:6919131,11175153 +(1,9325:6919131,11175153:0,0,0 +) +g1,9325:7246811,11175153 +) +g1,9328:8195248,11175153 +g1,9328:9459831,11175153 +h1,9328:11356705,11175153:0,0,0 +k1,9328:31966991,11175153:20610286 +g1,9328:31966991,11175153 +) +(1,9328:7246811,11841331:24720180,404226,76021 +h1,9328:7246811,11841331:0,0,0 +g1,9328:8195248,11841331 +g1,9328:9459831,11841331 +h1,9328:11356705,11841331:0,0,0 +k1,9328:31966991,11841331:20610286 +g1,9328:31966991,11841331 +) +(1,9330:7246811,13162869:24720180,410518,101187 +(1,9329:7246811,13162869:0,0,0 +g1,9329:7246811,13162869 +g1,9329:7246811,13162869 +g1,9329:6919131,13162869 +(1,9329:6919131,13162869:0,0,0 +) +g1,9329:7246811,13162869 +) +g1,9330:10408268,13162869 +g1,9330:11356706,13162869 +g1,9330:18628057,13162869 +k1,9330:18628057,13162869:0 +h1,9330:21473368,13162869:0,0,0 +k1,9330:31966991,13162869:10493623 +g1,9330:31966991,13162869 +) +(1,9331:7246811,13829047:24720180,404226,101187 +h1,9331:7246811,13829047:0,0,0 +k1,9331:7246811,13829047:0 +h1,9331:12621288,13829047:0,0,0 +k1,9331:31966992,13829047:19345704 +g1,9331:31966992,13829047 +) +(1,9335:7246811,14560761:24720180,404226,76021 +(1,9333:7246811,14560761:0,0,0 +g1,9333:7246811,14560761 +g1,9333:7246811,14560761 +g1,9333:6919131,14560761 +(1,9333:6919131,14560761:0,0,0 +) +g1,9333:7246811,14560761 +) +g1,9335:8195248,14560761 +g1,9335:9459831,14560761 +h1,9335:11356705,14560761:0,0,0 +k1,9335:31966991,14560761:20610286 +g1,9335:31966991,14560761 +) +(1,9337:7246811,15882299:24720180,410518,101187 +(1,9336:7246811,15882299:0,0,0 +g1,9336:7246811,15882299 +g1,9336:7246811,15882299 +g1,9336:6919131,15882299 +(1,9336:6919131,15882299:0,0,0 +) +g1,9336:7246811,15882299 +) +g1,9337:10408268,15882299 +g1,9337:11356706,15882299 +g1,9337:18311911,15882299 +k1,9337:18311911,15882299:0 +h1,9337:21157222,15882299:0,0,0 +k1,9337:31966991,15882299:10809769 +g1,9337:31966991,15882299 +) +(1,9338:7246811,16548477:24720180,404226,101187 +h1,9338:7246811,16548477:0,0,0 +k1,9338:7246811,16548477:0 +h1,9338:12621288,16548477:0,0,0 +k1,9338:31966992,16548477:19345704 +g1,9338:31966992,16548477 +) +(1,9342:7246811,17280191:24720180,379060,7863 +(1,9340:7246811,17280191:0,0,0 +g1,9340:7246811,17280191 +g1,9340:7246811,17280191 +g1,9340:6919131,17280191 +(1,9340:6919131,17280191:0,0,0 +) +g1,9340:7246811,17280191 +) +g1,9342:8195248,17280191 +h1,9342:9459831,17280191:0,0,0 +k1,9342:31966991,17280191:22507160 +g1,9342:31966991,17280191 +) +(1,9344:7246811,18601729:24720180,410518,101187 +(1,9343:7246811,18601729:0,0,0 +g1,9343:7246811,18601729 +g1,9343:7246811,18601729 +g1,9343:6919131,18601729 +(1,9343:6919131,18601729:0,0,0 +) +g1,9343:7246811,18601729 +) +g1,9344:10408268,18601729 +g1,9344:11356706,18601729 +k1,9344:11356706,18601729:0 +h1,9344:15782746,18601729:0,0,0 +k1,9344:31966991,18601729:16184245 +g1,9344:31966991,18601729 +) +(1,9345:7246811,19267907:24720180,404226,101187 +h1,9345:7246811,19267907:0,0,0 +k1,9345:7246811,19267907:0 +h1,9345:12621288,19267907:0,0,0 +k1,9345:31966992,19267907:19345704 +g1,9345:31966992,19267907 +) +(1,9349:7246811,19999621:24720180,379060,7863 +(1,9347:7246811,19999621:0,0,0 +g1,9347:7246811,19999621 +g1,9347:7246811,19999621 +g1,9347:6919131,19999621 +(1,9347:6919131,19999621:0,0,0 +) +g1,9347:7246811,19999621 +) +g1,9349:8195248,19999621 +h1,9349:9459831,19999621:0,0,0 +k1,9349:31966991,19999621:22507160 +g1,9349:31966991,19999621 +) +] +) +g1,9350:31966991,20007484 +g1,9350:7246811,20007484 +g1,9350:7246811,20007484 +g1,9350:31966991,20007484 +g1,9350:31966991,20007484 +) +h1,9350:7246811,20204092:0,0,0 +] +) +] +r1,9352:32583029,21318204:26214,15457323,0 +) +] +) +) +g1,9352:32583029,20728380 +) +h1,9352:6630773,21344418:0,0,0 +v1,9355:6630773,22710194:0,393216,0 +(1,9356:6630773,26867945:25952256,4550967,616038 +g1,9356:6630773,26867945 +(1,9356:6630773,26867945:25952256,4550967,616038 +(1,9356:6630773,27483983:25952256,5167005,0 +[1,9356:6630773,27483983:25952256,5167005,0 +(1,9356:6630773,27457769:25952256,5114577,0 +r1,9356:6656987,27457769:26214,5114577,0 +[1,9356:6656987,27457769:25899828,5114577,0 +(1,9356:6656987,26867945:25899828,3934929,0 +[1,9356:7246811,26867945:24720180,3934929,0 +(1,9356:7246811,24216998:24720180,1283982,196608 +(1,9355:7246811,24216998:0,1283982,196608 +r1,9356:9812056,24216998:2565245,1480590,196608 +k1,9355:7246811,24216998:-2565245 +) +(1,9355:7246811,24216998:2565245,1283982,196608 +) +k1,9355:10065943,24216998:253887 +k1,9355:11688878,24216998:253888 +k1,9355:12961850,24216998:253887 +k1,9355:15975459,24216998:253888 +k1,9355:16888638,24216998:253887 +k1,9355:20168322,24216998:253887 +(1,9355:20168322,24216998:0,452978,115847 +r1,9356:24043706,24216998:3875384,568825,115847 +k1,9355:20168322,24216998:-3875384 +) +(1,9355:20168322,24216998:3875384,452978,115847 +k1,9355:20168322,24216998:3277 +h1,9355:24040429,24216998:0,411205,112570 +) +k1,9355:24297594,24216998:253888 +k1,9355:25742926,24216998:253887 +(1,9355:25742926,24216998:0,452978,115847 +r1,9356:29618310,24216998:3875384,568825,115847 +k1,9355:25742926,24216998:-3875384 +) +(1,9355:25742926,24216998:3875384,452978,115847 +k1,9355:25742926,24216998:3277 +h1,9355:29615033,24216998:0,411205,112570 +) +k1,9355:30045868,24216998:253888 +k1,9355:30985917,24216998:253887 +k1,9356:31966991,24216998:0 +) +(1,9356:7246811,25058486:24720180,513147,126483 +k1,9355:9126534,25058486:266227 +k1,9355:11421757,25058486:266228 +k1,9355:13154680,25058486:266227 +k1,9355:14033670,25058486:266228 +k1,9355:15318982,25058486:266227 +k1,9355:18744700,25058486:266227 +k1,9355:21585838,25058486:266228 +k1,9355:23043510,25058486:266227 +k1,9355:23925775,25058486:266227 +k1,9355:24547863,25058486:266228 +k1,9355:26818836,25058486:266227 +k1,9355:28281751,25058486:266228 +k1,9355:31307699,25058486:266227 +k1,9355:31966991,25058486:0 +) +(1,9356:7246811,25899974:24720180,513147,126483 +k1,9355:8607478,25899974:203957 +k1,9355:9470728,25899974:203958 +k1,9355:11371412,25899974:203957 +k1,9355:14601166,25899974:203957 +k1,9355:15937586,25899974:203958 +k1,9355:16889309,25899974:203957 +k1,9355:19855610,25899974:203958 +k1,9355:21757605,25899974:203957 +k1,9355:22980647,25899974:203957 +k1,9355:25015681,25899974:203958 +k1,9355:25751135,25899974:203957 +k1,9355:28484782,25899974:203957 +k1,9355:30131187,25899974:203958 +k1,9355:30947906,25899974:203957 +k1,9355:31966991,25899974:0 +) +(1,9356:7246811,26741462:24720180,505283,126483 +g1,9355:10605531,26741462 +g1,9355:13379670,26741462 +g1,9355:15912636,26741462 +k1,9356:31966991,26741462:14583727 +g1,9356:31966991,26741462 +) +] +) +] +r1,9356:32583029,27457769:26214,5114577,0 +) +] +) +) +g1,9356:32583029,26867945 +) +h1,9356:6630773,27483983:0,0,0 +(1,9359:6630773,28849759:25952256,505283,134348 +h1,9358:6630773,28849759:983040,0,0 +k1,9358:11050652,28849759:316670 +k1,9358:12842537,28849759:316670 +k1,9358:14667846,28849759:316670 +k1,9358:16314897,28849759:316670 +k1,9358:18631726,28849759:316670 +k1,9358:20211929,28849759:316669 +k1,9358:22596915,28849759:316670 +k1,9358:25263706,28849759:316670 +k1,9358:26341904,28849759:316670 +k1,9358:28937261,28849759:316670 +k1,9358:32583029,28849759:0 +) +(1,9359:6630773,29691247:25952256,513147,126483 +k1,9358:8844404,29691247:203642 +k1,9358:10067131,29691247:203642 +k1,9358:11847569,29691247:203642 +k1,9358:12710504,29691247:203643 +k1,9358:13270006,29691247:203642 +k1,9358:16169144,29691247:203642 +k1,9358:17364346,29691247:203642 +k1,9358:19610745,29691247:203642 +k1,9358:21189988,29691247:203642 +k1,9358:23403619,29691247:203642 +k1,9358:24626346,29691247:203642 +k1,9358:26406785,29691247:203643 +k1,9358:27269719,29691247:203642 +k1,9358:28492446,29691247:203642 +k1,9358:31391584,29691247:203642 +k1,9358:32583029,29691247:0 +) +(1,9359:6630773,30532735:25952256,513147,126483 +k1,9358:10000231,30532735:228317 +k1,9358:11926586,30532735:228317 +k1,9358:13173988,30532735:228317 +k1,9358:16097802,30532735:228318 +k1,9358:18667065,30532735:228317 +k1,9358:20463003,30532735:228317 +k1,9358:21710405,30532735:228317 +k1,9358:23212087,30532735:228317 +k1,9358:24068239,30532735:228317 +k1,9358:26575244,30532735:228318 +k1,9358:28069717,30532735:228317 +k1,9358:31323831,30532735:228317 +k1,9358:32168186,30532735:228317 +k1,9359:32583029,30532735:0 +) +(1,9359:6630773,31374223:25952256,513147,134348 +k1,9358:7677442,31374223:231401 +k1,9358:8975115,31374223:231402 +k1,9358:10985818,31374223:231401 +k1,9358:12725858,31374223:231401 +k1,9358:17014594,31374223:231402 +k1,9358:19804521,31374223:231401 +k1,9358:21335502,31374223:231402 +k1,9358:23841658,31374223:231401 +k1,9358:25630850,31374223:231401 +k1,9358:28084578,31374223:231402 +k1,9358:30024503,31374223:231401 +k1,9358:32583029,31374223:0 +) +(1,9359:6630773,32215711:25952256,513147,134348 +k1,9358:10302886,32215711:269484 +k1,9358:11763815,32215711:269484 +k1,9358:14043944,32215711:269484 +k1,9358:14669287,32215711:269483 +k1,9358:16619114,32215711:269484 +k1,9358:17574760,32215711:269484 +k1,9358:18863329,32215711:269484 +k1,9358:20975685,32215711:269484 +k1,9358:21904461,32215711:269484 +k1,9358:23193030,32215711:269484 +k1,9358:24735879,32215711:269484 +k1,9358:26386206,32215711:269483 +k1,9358:28336033,32215711:269484 +k1,9358:29709799,32215711:269484 +k1,9358:30727049,32215711:269484 +k1,9358:32583029,32215711:0 +) +(1,9359:6630773,33057199:25952256,513147,134348 +g1,9358:9180123,33057199 +g1,9358:10062237,33057199 +g1,9358:13036260,33057199 +g1,9358:13921651,33057199 +g1,9358:14989232,33057199 +g1,9358:16663676,33057199 +g1,9358:18302731,33057199 +g1,9358:20199998,33057199 +g1,9358:22134620,33057199 +g1,9358:25359646,33057199 +k1,9359:32583029,33057199:5016130 +g1,9359:32583029,33057199 +) +(1,9360:6630773,35148459:25952256,564462,139132 +(1,9360:6630773,35148459:2450326,534184,12975 +g1,9360:6630773,35148459 +g1,9360:9081099,35148459 +) +g1,9360:12604118,35148459 +k1,9360:32583029,35148459:16537353 +g1,9360:32583029,35148459 +) +(1,9364:6630773,36383163:25952256,513147,126483 +k1,9363:8436524,36383163:160797 +k1,9363:9616406,36383163:160797 +k1,9363:10789735,36383163:160798 +k1,9363:13942251,36383163:160797 +k1,9363:16132043,36383163:160797 +k1,9363:17161192,36383163:160797 +k1,9363:18454451,36383163:160797 +k1,9363:20576086,36383163:160798 +k1,9363:21092743,36383163:160797 +k1,9363:22969928,36383163:160797 +k1,9363:24202894,36383163:160797 +k1,9363:26340913,36383163:160798 +k1,9363:29370876,36383163:160797 +k1,9363:29887533,36383163:160797 +k1,9363:32583029,36383163:0 +) +(1,9364:6630773,37224651:25952256,513147,134348 +k1,9363:7727039,37224651:148615 +k1,9363:11326781,37224651:148616 +k1,9363:12494481,37224651:148615 +k1,9363:15486704,37224651:148616 +k1,9363:17242262,37224651:148615 +k1,9363:18050170,37224651:148616 +k1,9363:19217870,37224651:148615 +k1,9363:21104501,37224651:148616 +k1,9363:22820737,37224651:148615 +k1,9363:23325213,37224651:148616 +k1,9363:26093957,37224651:148615 +k1,9363:28394119,37224651:148615 +k1,9363:29739422,37224651:148616 +k1,9363:32583029,37224651:0 +) +(1,9364:6630773,38066139:25952256,639543,134348 +k1,9363:8505836,38066139:268120 +k1,9363:9305452,38066139:268119 +k1,9363:11268333,38066139:268120 +k1,9363:12297981,38066139:268120 +$1,9363:12297981,38066139 +[1,9363:12678090,38164453:384631,359203,5505 +(1,9363:13007473,38158948:0,353698,0 +) +(1,9363:12678090,38164453:351863,248644,5505 +) +] +k1,9363:13370689,38066139:307968 +k1,9363:14246855,38066139:307969 +(1,9363:14246855,38066139:2195193,639543,119364 +[1,9363:14246855,37479024:595722,26214,706479 +] +[1,9363:14842577,38066139:1599471,639543,95027 +(1,9363:14842577,38066139:1599471,530010,95027 +(1,9363:15271182,37876064:311689,339935,0 +) +) +] +) +$1,9363:16442048,38066139 +k1,9363:16883838,38066139:268120 +k1,9363:18105506,38066139:268119 +k1,9363:19477908,38066139:268120 +k1,9363:22557523,38066139:268120 +k1,9363:24028883,38066139:268119 +k1,9363:25564469,38066139:268120 +k1,9363:26851674,38066139:268120 +k1,9363:30201952,38066139:268120 +k1,9363:31129363,38066139:268119 +k1,9363:32168186,38066139:268120 +k1,9364:32583029,38066139:0 +) +(1,9364:6630773,38907627:25952256,513147,115847 +g1,9363:9525498,38907627 +g1,9363:11592503,38907627 +(1,9363:11592503,38907627:0,414482,115847 +r1,9363:12654192,38907627:1061689,530329,115847 +k1,9363:11592503,38907627:-1061689 +) +(1,9363:11592503,38907627:1061689,414482,115847 +k1,9363:11592503,38907627:3277 +h1,9363:12650915,38907627:0,411205,112570 +) +k1,9364:32583030,38907627:19755168 +g1,9364:32583030,38907627 +) +v1,9366:6630773,40098093:0,393216,0 +(1,9370:6630773,40419481:25952256,714604,196608 +g1,9370:6630773,40419481 +g1,9370:6630773,40419481 +g1,9370:6434165,40419481 +(1,9370:6434165,40419481:0,714604,196608 +r1,9370:32779637,40419481:26345472,911212,196608 +k1,9370:6434165,40419481:-26345472 +) +(1,9370:6434165,40419481:26345472,714604,196608 +[1,9370:6630773,40419481:25952256,517996,0 +(1,9368:6630773,40312003:25952256,410518,107478 +(1,9367:6630773,40312003:0,0,0 +g1,9367:6630773,40312003 +g1,9367:6630773,40312003 +g1,9367:6303093,40312003 +(1,9367:6303093,40312003:0,0,0 +) +g1,9367:6630773,40312003 +) +g1,9368:7895356,40312003 +g1,9368:8843794,40312003 +g1,9368:16431291,40312003 +g1,9368:17063583,40312003 +k1,9368:17063583,40312003:0 +h1,9368:20541185,40312003:0,0,0 +k1,9368:32583029,40312003:12041844 +g1,9368:32583029,40312003 +) +] +) +g1,9370:32583029,40419481 +g1,9370:6630773,40419481 +g1,9370:6630773,40419481 +g1,9370:32583029,40419481 +g1,9370:32583029,40419481 +) +h1,9370:6630773,40616089:0,0,0 +(1,9374:6630773,41981865:25952256,513147,7863 +h1,9373:6630773,41981865:983040,0,0 +g1,9373:8766591,41981865 +g1,9373:10070102,41981865 +g1,9373:11460776,41981865 +g1,9373:12757733,41981865 +k1,9374:32583029,41981865:16956130 +g1,9374:32583029,41981865 +) +v1,9376:6630773,43172331:0,393216,0 +(1,9397:6630773,45444019:25952256,2664904,196608 +g1,9397:6630773,45444019 +g1,9397:6630773,45444019 +g1,9397:6434165,45444019 +(1,9397:6434165,45444019:0,2664904,196608 +r1,9397:32779637,45444019:26345472,2861512,196608 +k1,9397:6434165,45444019:-26345472 +) +(1,9397:6434165,45444019:26345472,2664904,196608 +[1,9397:6630773,45444019:25952256,2468296,0 +(1,9378:6630773,43379949:25952256,404226,82312 +(1,9377:6630773,43379949:0,0,0 +g1,9377:6630773,43379949 +g1,9377:6630773,43379949 +g1,9377:6303093,43379949 +(1,9377:6303093,43379949:0,0,0 +) +g1,9377:6630773,43379949 +) +g1,9378:7263065,43379949 +g1,9378:8211503,43379949 +g1,9378:9792233,43379949 +g1,9378:10740671,43379949 +g1,9378:11689109,43379949 +k1,9378:11689109,43379949:0 +h1,9378:12637547,43379949:0,0,0 +k1,9378:32583029,43379949:19945482 +g1,9378:32583029,43379949 +) +(1,9379:6630773,44046127:25952256,404226,82312 +h1,9379:6630773,44046127:0,0,0 +g1,9379:8211502,44046127 +g1,9379:9159940,44046127 +g1,9379:10740669,44046127 +h1,9379:11689106,44046127:0,0,0 +k1,9379:32583030,44046127:20893924 +g1,9379:32583030,44046127 +) +(1,9380:6630773,44712305:25952256,404226,76021 +h1,9380:6630773,44712305:0,0,0 +g1,9380:8527648,44712305 +g1,9380:9159940,44712305 +h1,9380:9792231,44712305:0,0,0 +k1,9380:32583029,44712305:22790798 +g1,9380:32583029,44712305 +) +(1,9384:6630773,45444019:25952256,404226,76021 +(1,9382:6630773,45444019:0,0,0 +g1,9382:6630773,45444019 +g1,9382:6630773,45444019 +g1,9382:6303093,45444019 +(1,9382:6303093,45444019:0,0,0 +) +g1,9382:6630773,45444019 +) +g1,9384:7579210,45444019 +g1,9384:8843793,45444019 +h1,9384:11372958,45444019:0,0,0 +k1,9384:32583030,45444019:21210072 +g1,9384:32583030,45444019 +) +] +) +g1,9397:32583029,45444019 +g1,9397:6630773,45444019 +g1,9397:6630773,45444019 +g1,9397:32583029,45444019 +g1,9397:32583029,45444019 +) +] +(1,9397:32583029,45706769:0,0,0 +g1,9397:32583029,45706769 +) +) +] +(1,9397:6630773,47279633:25952256,0,0 +h1,9397:6630773,47279633:25952256,0,0 +) +] +h1,9397:4262630,4025873:0,0,0 ] !21141 }177 -Input:1213:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1214:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1215:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1216:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1217:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1218:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1219:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1220:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1221:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1222:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1223:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1224:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1225:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1226:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1227:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1228:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1388 +Input:1209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 {178 -[1,9469:4262630,47279633:28320399,43253760,0 -(1,9469:4262630,4025873:0,0,0 -[1,9469:-473657,4025873:25952256,0,0 -(1,9469:-473657,-710414:25952256,0,0 -h1,9469:-473657,-710414:0,0,0 -(1,9469:-473657,-710414:0,0,0 -(1,9469:-473657,-710414:0,0,0 -g1,9469:-473657,-710414 -(1,9469:-473657,-710414:65781,0,65781 -g1,9469:-407876,-710414 -[1,9469:-407876,-644633:0,0,0 +[1,9474:4262630,47279633:28320399,43253760,0 +(1,9474:4262630,4025873:0,0,0 +[1,9474:-473657,4025873:25952256,0,0 +(1,9474:-473657,-710414:25952256,0,0 +h1,9474:-473657,-710414:0,0,0 +(1,9474:-473657,-710414:0,0,0 +(1,9474:-473657,-710414:0,0,0 +g1,9474:-473657,-710414 +(1,9474:-473657,-710414:65781,0,65781 +g1,9474:-407876,-710414 +[1,9474:-407876,-644633:0,0,0 ] ) -k1,9469:-473657,-710414:-65781 +k1,9474:-473657,-710414:-65781 ) ) -k1,9469:25478599,-710414:25952256 -g1,9469:25478599,-710414 +k1,9474:25478599,-710414:25952256 +g1,9474:25478599,-710414 ) ] ) -[1,9469:6630773,47279633:25952256,43253760,0 -[1,9469:6630773,4812305:25952256,786432,0 -(1,9469:6630773,4812305:25952256,513147,134348 -(1,9469:6630773,4812305:25952256,513147,134348 -g1,9469:3078558,4812305 -[1,9469:3078558,4812305:0,0,0 -(1,9469:3078558,2439708:0,1703936,0 -k1,9469:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9469:2537886,2439708:1179648,16384,0 +[1,9474:6630773,47279633:25952256,43253760,0 +[1,9474:6630773,4812305:25952256,786432,0 +(1,9474:6630773,4812305:25952256,513147,134348 +(1,9474:6630773,4812305:25952256,513147,134348 +g1,9474:3078558,4812305 +[1,9474:3078558,4812305:0,0,0 +(1,9474:3078558,2439708:0,1703936,0 +k1,9474:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9474:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9469:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9474:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9469:3078558,4812305:0,0,0 -(1,9469:3078558,2439708:0,1703936,0 -g1,9469:29030814,2439708 -g1,9469:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9469:36151628,1915420:16384,1179648,0 +[1,9474:3078558,4812305:0,0,0 +(1,9474:3078558,2439708:0,1703936,0 +g1,9474:29030814,2439708 +g1,9474:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9474:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9469:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9474:37855564,2439708:1179648,16384,0 ) ) -k1,9469:3078556,2439708:-34777008 +k1,9474:3078556,2439708:-34777008 ) ] -[1,9469:3078558,4812305:0,0,0 -(1,9469:3078558,49800853:0,16384,2228224 -k1,9469:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9469:2537886,49800853:1179648,16384,0 +[1,9474:3078558,4812305:0,0,0 +(1,9474:3078558,49800853:0,16384,2228224 +k1,9474:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9474:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9469:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9474:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9469:3078558,4812305:0,0,0 -(1,9469:3078558,49800853:0,16384,2228224 -g1,9469:29030814,49800853 -g1,9469:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9469:36151628,51504789:16384,1179648,0 +[1,9474:3078558,4812305:0,0,0 +(1,9474:3078558,49800853:0,16384,2228224 +g1,9474:29030814,49800853 +g1,9474:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9474:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9469:37855564,49800853:1179648,16384,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9474:37855564,49800853:1179648,16384,0 ) ) -k1,9469:3078556,49800853:-34777008 +k1,9474:3078556,49800853:-34777008 ) ] -g1,9469:6630773,4812305 -g1,9469:6630773,4812305 -g1,9469:9499939,4812305 -g1,9469:12584718,4812305 -g1,9469:13994397,4812305 -g1,9469:17201073,4812305 -k1,9469:31387652,4812305:14186579 +g1,9474:6630773,4812305 +g1,9474:6630773,4812305 +g1,9474:9499939,4812305 +g1,9474:12584718,4812305 +g1,9474:13994397,4812305 +g1,9474:17201073,4812305 +k1,9474:31387652,4812305:14186579 ) ) ] -[1,9469:6630773,45706769:25952256,40108032,0 -(1,9469:6630773,45706769:25952256,40108032,0 -(1,9469:6630773,45706769:0,0,0 -g1,9469:6630773,45706769 +[1,9474:6630773,45706769:25952256,40108032,0 +(1,9474:6630773,45706769:25952256,40108032,0 +(1,9474:6630773,45706769:0,0,0 +g1,9474:6630773,45706769 ) -[1,9469:6630773,45706769:25952256,40108032,0 -v1,9392:6630773,6254097:0,393216,0 -(1,9392:6630773,9322702:25952256,3461821,196608 -g1,9392:6630773,9322702 -g1,9392:6630773,9322702 -g1,9392:6434165,9322702 -(1,9392:6434165,9322702:0,3461821,196608 -r1,9392:32779637,9322702:26345472,3658429,196608 -k1,9392:6434165,9322702:-26345472 +[1,9474:6630773,45706769:25952256,40108032,0 +v1,9397:6630773,6254097:0,393216,0 +(1,9397:6630773,9322702:25952256,3461821,196608 +g1,9397:6630773,9322702 +g1,9397:6630773,9322702 +g1,9397:6434165,9322702 +(1,9397:6434165,9322702:0,3461821,196608 +r1,9397:32779637,9322702:26345472,3658429,196608 +k1,9397:6434165,9322702:-26345472 ) -(1,9392:6434165,9322702:26345472,3461821,196608 -[1,9392:6630773,9322702:25952256,3265213,0 -(1,9381:6630773,6461715:25952256,404226,76021 -(1,9380:6630773,6461715:0,0,0 -g1,9380:6630773,6461715 -g1,9380:6630773,6461715 -g1,9380:6303093,6461715 -(1,9380:6303093,6461715:0,0,0 +(1,9397:6434165,9322702:26345472,3461821,196608 +[1,9397:6630773,9322702:25952256,3265213,0 +(1,9386:6630773,6461715:25952256,404226,76021 +(1,9385:6630773,6461715:0,0,0 +g1,9385:6630773,6461715 +g1,9385:6630773,6461715 +g1,9385:6303093,6461715 +(1,9385:6303093,6461715:0,0,0 ) -g1,9380:6630773,6461715 +g1,9385:6630773,6461715 ) -k1,9381:6630773,6461715:0 -h1,9381:8527647,6461715:0,0,0 -k1,9381:32583029,6461715:24055382 -g1,9381:32583029,6461715 +k1,9386:6630773,6461715:0 +h1,9386:8527647,6461715:0,0,0 +k1,9386:32583029,6461715:24055382 +g1,9386:32583029,6461715 ) -(1,9385:6630773,7193429:25952256,404226,76021 -(1,9383:6630773,7193429:0,0,0 -g1,9383:6630773,7193429 -g1,9383:6630773,7193429 -g1,9383:6303093,7193429 -(1,9383:6303093,7193429:0,0,0 -) -g1,9383:6630773,7193429 -) -g1,9385:7579210,7193429 -g1,9385:8843793,7193429 -h1,9385:11372958,7193429:0,0,0 -k1,9385:32583030,7193429:21210072 -g1,9385:32583030,7193429 -) -(1,9387:6630773,8514967:25952256,404226,76021 -(1,9386:6630773,8514967:0,0,0 -g1,9386:6630773,8514967 -g1,9386:6630773,8514967 -g1,9386:6303093,8514967 -(1,9386:6303093,8514967:0,0,0 -) -g1,9386:6630773,8514967 -) -k1,9387:6630773,8514967:0 -h1,9387:9476084,8514967:0,0,0 -k1,9387:32583028,8514967:23106944 -g1,9387:32583028,8514967 -) -(1,9391:6630773,9246681:25952256,404226,76021 -(1,9389:6630773,9246681:0,0,0 -g1,9389:6630773,9246681 -g1,9389:6630773,9246681 -g1,9389:6303093,9246681 -(1,9389:6303093,9246681:0,0,0 -) -g1,9389:6630773,9246681 -) -g1,9391:7579210,9246681 -g1,9391:8843793,9246681 -h1,9391:9476084,9246681:0,0,0 -k1,9391:32583028,9246681:23106944 -g1,9391:32583028,9246681 -) -] -) -g1,9392:32583029,9322702 -g1,9392:6630773,9322702 -g1,9392:6630773,9322702 -g1,9392:32583029,9322702 -g1,9392:32583029,9322702 -) -h1,9392:6630773,9519310:0,0,0 -(1,9396:6630773,10865711:25952256,513147,134348 -h1,9395:6630773,10865711:983040,0,0 -g1,9395:8855064,10865711 -g1,9395:11715710,10865711 -g1,9395:12530977,10865711 -(1,9395:12530977,10865711:0,452978,115847 -r1,9395:14647802,10865711:2116825,568825,115847 -k1,9395:12530977,10865711:-2116825 -) -(1,9395:12530977,10865711:2116825,452978,115847 -k1,9395:12530977,10865711:3277 -h1,9395:14644525,10865711:0,411205,112570 -) -g1,9395:14847031,10865711 -g1,9395:15914612,10865711 -g1,9395:17105401,10865711 -g1,9395:19394573,10865711 -g1,9395:22289298,10865711 -(1,9395:22289298,10865711:0,452978,115847 -r1,9395:24054411,10865711:1765113,568825,115847 -k1,9395:22289298,10865711:-1765113 -) -(1,9395:22289298,10865711:1765113,452978,115847 -k1,9395:22289298,10865711:3277 -h1,9395:24051134,10865711:0,411205,112570 -) -g1,9395:24253640,10865711 -g1,9395:25846820,10865711 -(1,9395:25846820,10865711:0,414482,115847 -r1,9395:26205086,10865711:358266,530329,115847 -k1,9395:25846820,10865711:-358266 -) -(1,9395:25846820,10865711:358266,414482,115847 -k1,9395:25846820,10865711:3277 -h1,9395:26201809,10865711:0,411205,112570 -) -g1,9395:26404315,10865711 -g1,9395:27289706,10865711 -g1,9395:28259638,10865711 -k1,9396:32583029,10865711:1077393 -g1,9396:32583029,10865711 -) -(1,9398:6630773,11707199:25952256,513147,134348 -h1,9397:6630773,11707199:983040,0,0 -k1,9397:9033085,11707199:222585 -k1,9397:11951167,11707199:222586 -k1,9397:13042104,11707199:222585 -k1,9397:15646267,11707199:222585 -k1,9397:17724177,11707199:222586 -k1,9397:19079224,11707199:222585 -k1,9397:21431074,11707199:222585 -k1,9397:22933578,11707199:222586 -k1,9397:24175248,11707199:222585 -k1,9397:26640475,11707199:222585 -k1,9397:29120776,11707199:222586 -k1,9397:31873051,11707199:222585 -(1,9397:31873051,11707199:0,414482,115847 -r1,9397:32583029,11707199:709978,530329,115847 -k1,9397:31873051,11707199:-709978 -) -(1,9397:31873051,11707199:709978,414482,115847 -k1,9397:31873051,11707199:3277 -h1,9397:32579752,11707199:0,411205,112570 -) -k1,9397:32583029,11707199:0 -) -(1,9398:6630773,12548687:25952256,505283,134348 -k1,9397:8842555,12548687:201137 -k1,9397:9659730,12548687:201137 -k1,9397:10879952,12548687:201137 -k1,9397:12789613,12548687:201137 -k1,9397:14123212,12548687:201137 -k1,9397:16453614,12548687:201137 -k1,9397:18497623,12548687:201137 -k1,9397:19314797,12548687:201136 -k1,9397:20286637,12548687:201137 -(1,9397:20286637,12548687:0,414482,115847 -r1,9397:20996615,12548687:709978,530329,115847 -k1,9397:20286637,12548687:-709978 -) -(1,9397:20286637,12548687:709978,414482,115847 -k1,9397:20286637,12548687:3277 -h1,9397:20993338,12548687:0,411205,112570 -) -k1,9397:21197752,12548687:201137 -k1,9397:23136904,12548687:201137 -k1,9397:26290438,12548687:201137 -k1,9397:27688262,12548687:201137 -k1,9397:30565889,12548687:201137 -k1,9397:31298523,12548687:201137 -k1,9397:32583029,12548687:0 -) -(1,9398:6630773,13390175:25952256,513147,126483 -k1,9397:8786221,13390175:179538 -k1,9397:9884575,13390175:179539 -k1,9397:13089910,13390175:179538 -k1,9397:14415674,13390175:179539 -(1,9397:14415674,13390175:0,452978,115847 -r1,9397:16180787,13390175:1765113,568825,115847 -k1,9397:14415674,13390175:-1765113 -) -(1,9397:14415674,13390175:1765113,452978,115847 -k1,9397:14415674,13390175:3277 -h1,9397:16177510,13390175:0,411205,112570 -) -k1,9397:16533995,13390175:179538 -k1,9397:18368318,13390175:179539 -k1,9397:19079353,13390175:179538 -k1,9397:20068262,13390175:179539 -k1,9397:22330534,13390175:179538 -k1,9397:23161501,13390175:179539 -k1,9397:24813633,13390175:179538 -(1,9397:24813633,13390175:0,414482,115847 -r1,9397:25523611,13390175:709978,530329,115847 -k1,9397:24813633,13390175:-709978 -) -(1,9397:24813633,13390175:709978,414482,115847 -k1,9397:24813633,13390175:3277 -h1,9397:25520334,13390175:0,411205,112570 -) -k1,9397:25703150,13390175:179539 -k1,9397:27893333,13390175:179538 -k1,9397:28688910,13390175:179539 -k1,9397:29887533,13390175:179538 -k1,9397:32583029,13390175:0 -) -(1,9398:6630773,14231663:25952256,513147,7863 -g1,9397:7698354,14231663 -k1,9398:32583029,14231663:22329426 -g1,9398:32583029,14231663 -) -(1,9400:6630773,15073151:25952256,513147,134348 -h1,9399:6630773,15073151:983040,0,0 -k1,9399:9202368,15073151:207711 -k1,9399:11178897,15073151:207712 -k1,9399:12134374,15073151:207711 -k1,9399:16543599,15073151:207712 -k1,9399:17512838,15073151:207711 -k1,9399:19908142,15073151:207712 -k1,9399:20471713,15073151:207711 -k1,9399:22920755,15073151:207711 -k1,9399:26409199,15073151:207712 -(1,9399:26409199,15073151:0,452978,115847 -r1,9399:28877736,15073151:2468537,568825,115847 -k1,9399:26409199,15073151:-2468537 -) -(1,9399:26409199,15073151:2468537,452978,115847 -k1,9399:26409199,15073151:3277 -h1,9399:28874459,15073151:0,411205,112570 -) -k1,9399:29085447,15073151:207711 -k1,9399:29944587,15073151:207712 -k1,9399:31171383,15073151:207711 -k1,9400:32583029,15073151:0 -) -(1,9400:6630773,15914639:25952256,513147,134348 -k1,9399:8670544,15914639:156266 -k1,9399:9486102,15914639:156266 -k1,9399:10740096,15914639:156266 -k1,9399:13591859,15914639:156267 -k1,9399:14939570,15914639:156266 -k1,9399:17523290,15914639:156266 -k1,9399:18467954,15914639:156266 -k1,9399:21696548,15914639:156266 -k1,9399:22504242,15914639:156266 -k1,9399:23679593,15914639:156266 -k1,9399:24935553,15914639:156266 -k1,9399:25743248,15914639:156267 -(1,9399:25743248,15914639:0,452978,115847 -r1,9399:27508361,15914639:1765113,568825,115847 -k1,9399:25743248,15914639:-1765113 -) -(1,9399:25743248,15914639:1765113,452978,115847 -k1,9399:25743248,15914639:3277 -h1,9399:27505084,15914639:0,411205,112570 -) -k1,9399:27664627,15914639:156266 -k1,9399:29830882,15914639:156266 -k1,9399:31006233,15914639:156266 -k1,9399:32583029,15914639:0 -) -(1,9400:6630773,16756127:25952256,513147,134348 -k1,9399:7452140,16756127:154211 -(1,9399:7452140,16756127:0,452978,115847 -r1,9399:9217253,16756127:1765113,568825,115847 -k1,9399:7452140,16756127:-1765113 -) -(1,9399:7452140,16756127:1765113,452978,115847 -k1,9399:7452140,16756127:3277 -h1,9399:9213976,16756127:0,411205,112570 -) -k1,9399:9545134,16756127:154211 -k1,9399:12634048,16756127:154212 -k1,9399:13439687,16756127:154211 -k1,9399:15323393,16756127:154211 -k1,9399:18478498,16756127:154211 -k1,9399:20625659,16756127:154211 -k1,9399:22790516,16756127:154212 -k1,9399:23813079,16756127:154211 -k1,9399:25497556,16756127:154211 -k1,9399:26303195,16756127:154211 -k1,9399:28173140,16756127:154212 -k1,9399:29708195,16756127:154211 -(1,9399:29708195,16756127:0,414482,115847 -r1,9399:30418173,16756127:709978,530329,115847 -k1,9399:29708195,16756127:-709978 -) -(1,9399:29708195,16756127:709978,414482,115847 -k1,9399:29708195,16756127:3277 -h1,9399:30414896,16756127:0,411205,112570 -) -k1,9399:30572384,16756127:154211 -k1,9399:32583029,16756127:0 -) -(1,9400:6630773,17597615:25952256,513147,134348 -g1,9399:7821562,17597615 -g1,9399:9306607,17597615 -g1,9399:12281286,17597615 -g1,9399:14523272,17597615 -g1,9399:17527442,17597615 -g1,9399:18745756,17597615 -g1,9399:21430766,17597615 -g1,9399:22289287,17597615 -g1,9399:26560268,17597615 -g1,9399:28153448,17597615 -(1,9399:28153448,17597615:0,452978,122846 -r1,9399:30973697,17597615:2820249,575824,122846 -k1,9399:28153448,17597615:-2820249 -) -(1,9399:28153448,17597615:2820249,452978,122846 -k1,9399:28153448,17597615:3277 -h1,9399:30970420,17597615:0,411205,112570 -) -k1,9400:32583029,17597615:1435662 -g1,9400:32583029,17597615 -) -(1,9402:6630773,18439103:25952256,513147,134348 -h1,9401:6630773,18439103:983040,0,0 -k1,9401:8250683,18439103:149282 -k1,9401:11121070,18439103:149332 -k1,9401:12508377,18439103:149332 -k1,9401:13317001,18439103:149332 -k1,9401:17890013,18439103:149332 -k1,9401:19242586,18439103:149332 -k1,9401:20007956,18439103:149332 -k1,9401:21653475,18439103:149332 -k1,9401:22334304,18439103:149332 -k1,9401:23135064,18439103:149332 -k1,9401:25245233,18439103:149332 -k1,9401:26413650,18439103:149332 -k1,9401:29258478,18439103:149332 -k1,9401:30093972,18439103:149332 -k1,9402:32583029,18439103:0 -k1,9402:32583029,18439103:0 -) -v1,9404:6630773,19610194:0,393216,0 -(1,9413:6630773,23231015:25952256,4014037,196608 -g1,9413:6630773,23231015 -g1,9413:6630773,23231015 -g1,9413:6434165,23231015 -(1,9413:6434165,23231015:0,4014037,196608 -r1,9413:32779637,23231015:26345472,4210645,196608 -k1,9413:6434165,23231015:-26345472 -) -(1,9413:6434165,23231015:26345472,4014037,196608 -[1,9413:6630773,23231015:25952256,3817429,0 -(1,9406:6630773,19824104:25952256,410518,82312 -(1,9405:6630773,19824104:0,0,0 -g1,9405:6630773,19824104 -g1,9405:6630773,19824104 -g1,9405:6303093,19824104 -(1,9405:6303093,19824104:0,0,0 -) -g1,9405:6630773,19824104 -) -g1,9406:7895356,19824104 -g1,9406:8843794,19824104 -g1,9406:12637543,19824104 -g1,9406:15166709,19824104 -g1,9406:15799001,19824104 -g1,9406:18012021,19824104 -h1,9406:18328167,19824104:0,0,0 -k1,9406:32583029,19824104:14254862 -g1,9406:32583029,19824104 -) -(1,9407:6630773,20490282:25952256,410518,76021 -h1,9407:6630773,20490282:0,0,0 -g1,9407:6946919,20490282 -g1,9407:7895356,20490282 -g1,9407:11056813,20490282 -h1,9407:11372959,20490282:0,0,0 -k1,9407:32583029,20490282:21210070 -g1,9407:32583029,20490282 -) -(1,9408:6630773,21156460:25952256,404226,76021 -h1,9408:6630773,21156460:0,0,0 -g1,9408:6946919,21156460 -g1,9408:7263065,21156460 -g1,9408:7579211,21156460 -g1,9408:8211503,21156460 -g1,9408:9159941,21156460 -k1,9408:9159941,21156460:0 -h1,9408:12321398,21156460:0,0,0 -k1,9408:32583030,21156460:20261632 -g1,9408:32583030,21156460 -) -(1,9409:6630773,21822638:25952256,404226,76021 -h1,9409:6630773,21822638:0,0,0 -g1,9409:6946919,21822638 -h1,9409:7263065,21822638:0,0,0 -k1,9409:32583029,21822638:25319964 -g1,9409:32583029,21822638 -) -(1,9410:6630773,22488816:25952256,404226,107478 -h1,9410:6630773,22488816:0,0,0 -g1,9410:6946919,22488816 -k1,9410:6946919,22488816:0 -h1,9410:13902125,22488816:0,0,0 -k1,9410:32583029,22488816:18680904 -g1,9410:32583029,22488816 -) -(1,9411:6630773,23154994:25952256,404226,76021 -h1,9411:6630773,23154994:0,0,0 -h1,9411:6946919,23154994:0,0,0 -k1,9411:32583029,23154994:25636110 -g1,9411:32583029,23154994 -) -] -) -g1,9413:32583029,23231015 -g1,9413:6630773,23231015 -g1,9413:6630773,23231015 -g1,9413:32583029,23231015 -g1,9413:32583029,23231015 -) -h1,9413:6630773,23427623:0,0,0 -v1,9417:6630773,25103628:0,393216,0 -(1,9436:6630773,30225485:25952256,5515073,196608 -g1,9436:6630773,30225485 -g1,9436:6630773,30225485 -g1,9436:6434165,30225485 -(1,9436:6434165,30225485:0,5515073,196608 -r1,9436:32779637,30225485:26345472,5711681,196608 -k1,9436:6434165,30225485:-26345472 -) -(1,9436:6434165,30225485:26345472,5515073,196608 -[1,9436:6630773,30225485:25952256,5318465,0 -(1,9419:6630773,25311246:25952256,404226,76021 -(1,9418:6630773,25311246:0,0,0 -g1,9418:6630773,25311246 -g1,9418:6630773,25311246 -g1,9418:6303093,25311246 -(1,9418:6303093,25311246:0,0,0 -) -g1,9418:6630773,25311246 -) -k1,9419:6630773,25311246:0 -g1,9419:8527648,25311246 -g1,9419:9159940,25311246 -h1,9419:9792231,25311246:0,0,0 -k1,9419:32583029,25311246:22790798 -g1,9419:32583029,25311246 -) -(1,9423:6630773,26042960:25952256,404226,76021 -(1,9421:6630773,26042960:0,0,0 -g1,9421:6630773,26042960 -g1,9421:6630773,26042960 -g1,9421:6303093,26042960 -(1,9421:6303093,26042960:0,0,0 -) -g1,9421:6630773,26042960 -) -g1,9423:7579210,26042960 -g1,9423:8843793,26042960 -h1,9423:11372958,26042960:0,0,0 -k1,9423:32583030,26042960:21210072 -g1,9423:32583030,26042960 -) -(1,9425:6630773,27364498:25952256,404226,76021 -(1,9424:6630773,27364498:0,0,0 -g1,9424:6630773,27364498 -g1,9424:6630773,27364498 -g1,9424:6303093,27364498 -(1,9424:6303093,27364498:0,0,0 -) -g1,9424:6630773,27364498 -) -k1,9425:6630773,27364498:0 -g1,9425:8527648,27364498 -g1,9425:9159940,27364498 -h1,9425:10740668,27364498:0,0,0 -k1,9425:32583028,27364498:21842360 -g1,9425:32583028,27364498 -) -(1,9429:6630773,28096212:25952256,404226,76021 -(1,9427:6630773,28096212:0,0,0 -g1,9427:6630773,28096212 -g1,9427:6630773,28096212 -g1,9427:6303093,28096212 -(1,9427:6303093,28096212:0,0,0 -) -g1,9427:6630773,28096212 -) -g1,9429:7579210,28096212 -g1,9429:8843793,28096212 -h1,9429:9476084,28096212:0,0,0 -k1,9429:32583028,28096212:23106944 -g1,9429:32583028,28096212 -) -(1,9431:6630773,29417750:25952256,404226,82312 -(1,9430:6630773,29417750:0,0,0 -g1,9430:6630773,29417750 -g1,9430:6630773,29417750 -g1,9430:6303093,29417750 -(1,9430:6303093,29417750:0,0,0 -) -g1,9430:6630773,29417750 -) -k1,9431:6630773,29417750:0 -g1,9431:8527648,29417750 -g1,9431:9159940,29417750 -g1,9431:11056815,29417750 -g1,9431:13585981,29417750 -g1,9431:14218273,29417750 -h1,9431:15799002,29417750:0,0,0 -k1,9431:32583030,29417750:16784028 -g1,9431:32583030,29417750 -) -(1,9435:6630773,30149464:25952256,404226,76021 -(1,9433:6630773,30149464:0,0,0 -g1,9433:6630773,30149464 -g1,9433:6630773,30149464 -g1,9433:6303093,30149464 -(1,9433:6303093,30149464:0,0,0 -) -g1,9433:6630773,30149464 -) -g1,9435:7579210,30149464 -g1,9435:8843793,30149464 -h1,9435:11372958,30149464:0,0,0 -k1,9435:32583030,30149464:21210072 -g1,9435:32583030,30149464 -) -] -) -g1,9436:32583029,30225485 -g1,9436:6630773,30225485 -g1,9436:6630773,30225485 -g1,9436:32583029,30225485 -g1,9436:32583029,30225485 -) -h1,9436:6630773,30422093:0,0,0 -(1,9440:6630773,31768494:25952256,513147,134348 -h1,9439:6630773,31768494:983040,0,0 -k1,9439:8201413,31768494:172757 -k1,9439:9867105,31768494:172782 -k1,9439:11106159,31768494:172783 -k1,9439:13709017,31768494:172783 -k1,9439:14237660,31768494:172783 -k1,9439:17105939,31768494:172783 -k1,9439:18226372,31768494:172782 -k1,9439:21242762,31768494:172783 -k1,9439:23196158,31768494:172783 -k1,9439:24093769,31768494:172783 -k1,9439:25285637,31768494:172783 -k1,9439:28153915,31768494:172782 -k1,9439:30182022,31768494:172783 -k1,9439:30886302,31768494:172783 -k1,9440:32583029,31768494:0 -) -(1,9440:6630773,32609982:25952256,513147,134348 -k1,9439:8190421,32609982:144070 -k1,9439:10485382,32609982:144069 -k1,9439:11429647,32609982:144070 -k1,9439:12954561,32609982:144070 -k1,9439:15908815,32609982:144070 -k1,9439:16584381,32609982:144069 -k1,9439:20009183,32609982:144070 -k1,9439:21547204,32609982:144070 -k1,9439:22975780,32609982:144070 -k1,9439:23779141,32609982:144069 -k1,9439:27745926,32609982:144070 -k1,9439:30092006,32609982:144070 -k1,9439:32583029,32609982:0 -) -(1,9440:6630773,33451470:25952256,513147,126483 -g1,9439:10029470,33451470 -g1,9439:11182248,33451470 -g1,9439:12856692,33451470 -g1,9439:15021346,33451470 -g1,9439:15576435,33451470 -g1,9439:17058859,33451470 -g1,9439:18882726,33451470 -g1,9439:19733383,33451470 -g1,9439:20951697,33451470 -g1,9439:21565769,33451470 -g1,9439:25231853,33451470 -g1,9439:28215051,33451470 -g1,9439:29065708,33451470 -k1,9440:32583029,33451470:2598506 -g1,9440:32583029,33451470 -) -(1,9442:6630773,34292958:25952256,513147,134348 -h1,9441:6630773,34292958:983040,0,0 -k1,9441:8374634,34292958:132986 -k1,9441:9526705,34292958:132986 -k1,9441:12741848,34292958:132985 -k1,9441:13541990,34292958:132986 -(1,9441:13541990,34292958:0,452978,115847 -r1,9441:15307103,34292958:1765113,568825,115847 -k1,9441:13541990,34292958:-1765113 -) -(1,9441:13541990,34292958:1765113,452978,115847 -k1,9441:13541990,34292958:3277 -h1,9441:15303826,34292958:0,411205,112570 -) -k1,9441:15440089,34292958:132986 -k1,9441:16441427,34292958:132986 -k1,9441:17508955,34292958:132985 -k1,9441:17997801,34292958:132986 -k1,9441:20396367,34292958:132986 -k1,9441:23601681,34292958:132986 -k1,9441:24682317,34292958:132985 -k1,9441:28096035,34292958:132986 -(1,9441:28096035,34292958:0,452978,115847 -r1,9441:30564572,34292958:2468537,568825,115847 -k1,9441:28096035,34292958:-2468537 -) -(1,9441:28096035,34292958:2468537,452978,115847 -k1,9441:28096035,34292958:3277 -h1,9441:30561295,34292958:0,411205,112570 -) -k1,9441:30697558,34292958:132986 -k1,9441:32583029,34292958:0 -) -(1,9442:6630773,35134446:25952256,505283,134348 -g1,9441:7361499,35134446 -g1,9441:9073954,35134446 -g1,9441:11315940,35134446 -g1,9441:12534254,35134446 -g1,9441:14114327,35134446 -g1,9441:17210903,35134446 -g1,9441:19524979,35134446 -g1,9441:20494911,35134446 -g1,9441:23766468,35134446 -g1,9441:24617125,35134446 -g1,9441:26019595,35134446 -k1,9442:32583029,35134446:3109031 -g1,9442:32583029,35134446 -) -v1,9448:6630773,36480847:0,393216,0 -(1,9449:6630773,38759014:25952256,2671383,616038 -g1,9449:6630773,38759014 -(1,9449:6630773,38759014:25952256,2671383,616038 -(1,9449:6630773,39375052:25952256,3287421,0 -[1,9449:6630773,39375052:25952256,3287421,0 -(1,9449:6630773,39348838:25952256,3234993,0 -r1,9449:6656987,39348838:26214,3234993,0 -[1,9449:6656987,39348838:25899828,3234993,0 -(1,9449:6656987,38759014:25899828,2055345,0 -[1,9449:7246811,38759014:24720180,2055345,0 -(1,9449:7246811,37791043:24720180,1087374,126483 -k1,9448:8663832,37791043:207318 -k1,9448:10914563,37791043:207318 -k1,9448:12580712,37791043:207318 -k1,9448:14118411,37791043:207318 -k1,9448:17021225,37791043:207318 -k1,9448:17879971,37791043:207318 -k1,9448:20895507,37791043:207318 -k1,9448:22121910,37791043:207318 -k1,9448:24067243,37791043:207318 -k1,9448:24890599,37791043:207318 -k1,9448:25453777,37791043:207318 -k1,9448:27863105,37791043:207318 -k1,9448:29308398,37791043:207318 -k1,9448:30201878,37791043:207318 -(1,9448:30201878,37791043:0,452978,115847 -r1,9449:31966991,37791043:1765113,568825,115847 -k1,9448:30201878,37791043:-1765113 -) -(1,9448:30201878,37791043:1765113,452978,115847 -k1,9448:30201878,37791043:3277 -h1,9448:31963714,37791043:0,411205,112570 -) -k1,9448:31966991,37791043:0 -) -(1,9449:7246811,38632531:24720180,513147,126483 -g1,9448:8653213,38632531 -g1,9448:11234020,38632531 -g1,9448:13462244,38632531 -g1,9448:15213366,38632531 -g1,9448:18108091,38632531 -(1,9448:18108091,38632531:0,452978,115847 -r1,9449:19873204,38632531:1765113,568825,115847 -k1,9448:18108091,38632531:-1765113 -) -(1,9448:18108091,38632531:1765113,452978,115847 -k1,9448:18108091,38632531:3277 -h1,9448:19869927,38632531:0,411205,112570 -) -g1,9448:20072433,38632531 -g1,9448:22040479,38632531 -g1,9448:22987474,38632531 -g1,9448:23845995,38632531 -k1,9449:31966991,38632531:6559273 -g1,9449:31966991,38632531 -) -] -) -] -r1,9449:32583029,39348838:26214,3234993,0 -) -] -) -) -g1,9449:32583029,38759014 -) -h1,9449:6630773,39375052:0,0,0 -(1,9452:6630773,40721454:25952256,505283,134348 -h1,9451:6630773,40721454:983040,0,0 -k1,9451:10982232,40721454:248250 -k1,9451:12334764,40721454:248250 -k1,9451:14058230,40721454:248251 -k1,9451:16089715,40721454:248250 -k1,9451:17988162,40721454:248250 -k1,9451:20922733,40721454:248250 -k1,9451:22362428,40721454:248250 -k1,9451:24469935,40721454:248251 -k1,9451:28131955,40721454:248250 -k1,9451:31896867,40721454:248250 -k1,9451:32583029,40721454:0 -) -(1,9452:6630773,41562942:25952256,513147,126483 -k1,9451:8430556,41562942:291144 -k1,9451:10298495,41562942:291143 -k1,9451:12032086,41562942:291144 -k1,9451:14067143,41562942:291144 -k1,9451:14974324,41562942:291143 -k1,9451:16284553,41562942:291144 -k1,9451:19567416,41562942:291144 -k1,9451:21887554,41562942:291143 -k1,9451:24273884,41562942:291144 -k1,9451:25335731,41562942:291144 -k1,9451:29240529,41562942:291143 -k1,9451:29887533,41562942:291144 -k1,9451:32583029,41562942:0 -) -(1,9452:6630773,42404430:25952256,513147,126483 -k1,9451:8634461,42404430:265673 -k1,9451:11653301,42404430:265673 -k1,9451:12680502,42404430:265673 -k1,9451:16800347,42404430:265673 -k1,9451:17597517,42404430:265673 -k1,9451:21453252,42404430:265673 -k1,9451:22405086,42404430:265672 -k1,9451:23026619,42404430:265673 -k1,9451:24391986,42404430:265673 -k1,9451:25309087,42404430:265673 -k1,9451:26593845,42404430:265673 -k1,9451:29728684,42404430:265673 -k1,9451:31191044,42404430:265673 -k1,9451:32583029,42404430:0 -) -(1,9452:6630773,43245918:25952256,513147,134348 -g1,9451:8568017,43245918 -g1,9451:9426538,43245918 -g1,9451:9981627,43245918 -g1,9451:12876352,43245918 -g1,9451:15402764,43245918 -g1,9451:17212213,43245918 -g1,9451:19442403,43245918 -g1,9451:20293060,43245918 -g1,9451:21280687,43245918 -k1,9452:32583029,43245918:8046513 -g1,9452:32583029,43245918 -) -(1,9454:6630773,44087406:25952256,513147,126483 -h1,9453:6630773,44087406:983040,0,0 -k1,9453:8878440,44087406:311078 -k1,9453:10495650,44087406:311077 -k1,9453:12388767,44087406:311078 -k1,9453:16120168,44087406:311077 -k1,9453:17450331,44087406:311078 -k1,9453:20843566,44087406:311077 -k1,9453:21813936,44087406:311078 -k1,9453:23222741,44087406:311077 -k1,9453:26229315,44087406:311078 -k1,9453:28108013,44087406:311077 -k1,9453:30452673,44087406:311078 -k1,9453:31379788,44087406:311077 -k1,9453:32583029,44087406:0 -) -(1,9454:6630773,44928894:25952256,473825,7863 -k1,9454:32583030,44928894:23499900 -g1,9454:32583030,44928894 -) -v1,9456:6630773,46099985:0,393216,0 -] -(1,9469:32583029,45706769:0,0,0 -g1,9469:32583029,45706769 -) -) -] -(1,9469:6630773,47279633:25952256,0,0 -h1,9469:6630773,47279633:25952256,0,0 -) -] -h1,9469:4262630,4025873:0,0,0 -] -!25545 +(1,9390:6630773,7193429:25952256,404226,76021 +(1,9388:6630773,7193429:0,0,0 +g1,9388:6630773,7193429 +g1,9388:6630773,7193429 +g1,9388:6303093,7193429 +(1,9388:6303093,7193429:0,0,0 +) +g1,9388:6630773,7193429 +) +g1,9390:7579210,7193429 +g1,9390:8843793,7193429 +h1,9390:11372958,7193429:0,0,0 +k1,9390:32583030,7193429:21210072 +g1,9390:32583030,7193429 +) +(1,9392:6630773,8514967:25952256,404226,76021 +(1,9391:6630773,8514967:0,0,0 +g1,9391:6630773,8514967 +g1,9391:6630773,8514967 +g1,9391:6303093,8514967 +(1,9391:6303093,8514967:0,0,0 +) +g1,9391:6630773,8514967 +) +k1,9392:6630773,8514967:0 +h1,9392:9476084,8514967:0,0,0 +k1,9392:32583028,8514967:23106944 +g1,9392:32583028,8514967 +) +(1,9396:6630773,9246681:25952256,404226,76021 +(1,9394:6630773,9246681:0,0,0 +g1,9394:6630773,9246681 +g1,9394:6630773,9246681 +g1,9394:6303093,9246681 +(1,9394:6303093,9246681:0,0,0 +) +g1,9394:6630773,9246681 +) +g1,9396:7579210,9246681 +g1,9396:8843793,9246681 +h1,9396:9476084,9246681:0,0,0 +k1,9396:32583028,9246681:23106944 +g1,9396:32583028,9246681 +) +] +) +g1,9397:32583029,9322702 +g1,9397:6630773,9322702 +g1,9397:6630773,9322702 +g1,9397:32583029,9322702 +g1,9397:32583029,9322702 +) +h1,9397:6630773,9519310:0,0,0 +(1,9401:6630773,10865711:25952256,513147,134348 +h1,9400:6630773,10865711:983040,0,0 +g1,9400:8855064,10865711 +g1,9400:11715710,10865711 +g1,9400:12530977,10865711 +(1,9400:12530977,10865711:0,452978,115847 +r1,9400:14647802,10865711:2116825,568825,115847 +k1,9400:12530977,10865711:-2116825 +) +(1,9400:12530977,10865711:2116825,452978,115847 +k1,9400:12530977,10865711:3277 +h1,9400:14644525,10865711:0,411205,112570 +) +g1,9400:14847031,10865711 +g1,9400:15914612,10865711 +g1,9400:17105401,10865711 +g1,9400:19394573,10865711 +g1,9400:22289298,10865711 +(1,9400:22289298,10865711:0,452978,115847 +r1,9400:24054411,10865711:1765113,568825,115847 +k1,9400:22289298,10865711:-1765113 +) +(1,9400:22289298,10865711:1765113,452978,115847 +k1,9400:22289298,10865711:3277 +h1,9400:24051134,10865711:0,411205,112570 +) +g1,9400:24253640,10865711 +g1,9400:25846820,10865711 +(1,9400:25846820,10865711:0,414482,115847 +r1,9400:26205086,10865711:358266,530329,115847 +k1,9400:25846820,10865711:-358266 +) +(1,9400:25846820,10865711:358266,414482,115847 +k1,9400:25846820,10865711:3277 +h1,9400:26201809,10865711:0,411205,112570 +) +g1,9400:26404315,10865711 +g1,9400:27289706,10865711 +g1,9400:28259638,10865711 +k1,9401:32583029,10865711:1077393 +g1,9401:32583029,10865711 +) +(1,9403:6630773,11707199:25952256,513147,134348 +h1,9402:6630773,11707199:983040,0,0 +k1,9402:9033085,11707199:222585 +k1,9402:11951167,11707199:222586 +k1,9402:13042104,11707199:222585 +k1,9402:15646267,11707199:222585 +k1,9402:17724177,11707199:222586 +k1,9402:19079224,11707199:222585 +k1,9402:21431074,11707199:222585 +k1,9402:22933578,11707199:222586 +k1,9402:24175248,11707199:222585 +k1,9402:26640475,11707199:222585 +k1,9402:29120776,11707199:222586 +k1,9402:31873051,11707199:222585 +(1,9402:31873051,11707199:0,414482,115847 +r1,9402:32583029,11707199:709978,530329,115847 +k1,9402:31873051,11707199:-709978 +) +(1,9402:31873051,11707199:709978,414482,115847 +k1,9402:31873051,11707199:3277 +h1,9402:32579752,11707199:0,411205,112570 +) +k1,9402:32583029,11707199:0 +) +(1,9403:6630773,12548687:25952256,505283,134348 +k1,9402:8842555,12548687:201137 +k1,9402:9659730,12548687:201137 +k1,9402:10879952,12548687:201137 +k1,9402:12789613,12548687:201137 +k1,9402:14123212,12548687:201137 +k1,9402:16453614,12548687:201137 +k1,9402:18497623,12548687:201137 +k1,9402:19314797,12548687:201136 +k1,9402:20286637,12548687:201137 +(1,9402:20286637,12548687:0,414482,115847 +r1,9402:20996615,12548687:709978,530329,115847 +k1,9402:20286637,12548687:-709978 +) +(1,9402:20286637,12548687:709978,414482,115847 +k1,9402:20286637,12548687:3277 +h1,9402:20993338,12548687:0,411205,112570 +) +k1,9402:21197752,12548687:201137 +k1,9402:23136904,12548687:201137 +k1,9402:26290438,12548687:201137 +k1,9402:27688262,12548687:201137 +k1,9402:30565889,12548687:201137 +k1,9402:31298523,12548687:201137 +k1,9402:32583029,12548687:0 +) +(1,9403:6630773,13390175:25952256,513147,126483 +k1,9402:8786221,13390175:179538 +k1,9402:9884575,13390175:179539 +k1,9402:13089910,13390175:179538 +k1,9402:14415674,13390175:179539 +(1,9402:14415674,13390175:0,452978,115847 +r1,9402:16180787,13390175:1765113,568825,115847 +k1,9402:14415674,13390175:-1765113 +) +(1,9402:14415674,13390175:1765113,452978,115847 +k1,9402:14415674,13390175:3277 +h1,9402:16177510,13390175:0,411205,112570 +) +k1,9402:16533995,13390175:179538 +k1,9402:18368318,13390175:179539 +k1,9402:19079353,13390175:179538 +k1,9402:20068262,13390175:179539 +k1,9402:22330534,13390175:179538 +k1,9402:23161501,13390175:179539 +k1,9402:24813633,13390175:179538 +(1,9402:24813633,13390175:0,414482,115847 +r1,9402:25523611,13390175:709978,530329,115847 +k1,9402:24813633,13390175:-709978 +) +(1,9402:24813633,13390175:709978,414482,115847 +k1,9402:24813633,13390175:3277 +h1,9402:25520334,13390175:0,411205,112570 +) +k1,9402:25703150,13390175:179539 +k1,9402:27893333,13390175:179538 +k1,9402:28688910,13390175:179539 +k1,9402:29887533,13390175:179538 +k1,9402:32583029,13390175:0 +) +(1,9403:6630773,14231663:25952256,513147,7863 +g1,9402:7698354,14231663 +k1,9403:32583029,14231663:22329426 +g1,9403:32583029,14231663 +) +(1,9405:6630773,15073151:25952256,513147,134348 +h1,9404:6630773,15073151:983040,0,0 +k1,9404:9202368,15073151:207711 +k1,9404:11178897,15073151:207712 +k1,9404:12134374,15073151:207711 +k1,9404:16543599,15073151:207712 +k1,9404:17512838,15073151:207711 +k1,9404:19908142,15073151:207712 +k1,9404:20471713,15073151:207711 +k1,9404:22920755,15073151:207711 +k1,9404:26409199,15073151:207712 +(1,9404:26409199,15073151:0,452978,115847 +r1,9404:28877736,15073151:2468537,568825,115847 +k1,9404:26409199,15073151:-2468537 +) +(1,9404:26409199,15073151:2468537,452978,115847 +k1,9404:26409199,15073151:3277 +h1,9404:28874459,15073151:0,411205,112570 +) +k1,9404:29085447,15073151:207711 +k1,9404:29944587,15073151:207712 +k1,9404:31171383,15073151:207711 +k1,9405:32583029,15073151:0 +) +(1,9405:6630773,15914639:25952256,513147,134348 +k1,9404:8670544,15914639:156266 +k1,9404:9486102,15914639:156266 +k1,9404:10740096,15914639:156266 +k1,9404:13591859,15914639:156267 +k1,9404:14939570,15914639:156266 +k1,9404:17523290,15914639:156266 +k1,9404:18467954,15914639:156266 +k1,9404:21696548,15914639:156266 +k1,9404:22504242,15914639:156266 +k1,9404:23679593,15914639:156266 +k1,9404:24935553,15914639:156266 +k1,9404:25743248,15914639:156267 +(1,9404:25743248,15914639:0,452978,115847 +r1,9404:27508361,15914639:1765113,568825,115847 +k1,9404:25743248,15914639:-1765113 +) +(1,9404:25743248,15914639:1765113,452978,115847 +k1,9404:25743248,15914639:3277 +h1,9404:27505084,15914639:0,411205,112570 +) +k1,9404:27664627,15914639:156266 +k1,9404:29830882,15914639:156266 +k1,9404:31006233,15914639:156266 +k1,9404:32583029,15914639:0 +) +(1,9405:6630773,16756127:25952256,513147,134348 +k1,9404:7452140,16756127:154211 +(1,9404:7452140,16756127:0,452978,115847 +r1,9404:9217253,16756127:1765113,568825,115847 +k1,9404:7452140,16756127:-1765113 +) +(1,9404:7452140,16756127:1765113,452978,115847 +k1,9404:7452140,16756127:3277 +h1,9404:9213976,16756127:0,411205,112570 +) +k1,9404:9545134,16756127:154211 +k1,9404:12634048,16756127:154212 +k1,9404:13439687,16756127:154211 +k1,9404:15323393,16756127:154211 +k1,9404:18478498,16756127:154211 +k1,9404:20625659,16756127:154211 +k1,9404:22790516,16756127:154212 +k1,9404:23813079,16756127:154211 +k1,9404:25497556,16756127:154211 +k1,9404:26303195,16756127:154211 +k1,9404:28173140,16756127:154212 +k1,9404:29708195,16756127:154211 +(1,9404:29708195,16756127:0,414482,115847 +r1,9404:30418173,16756127:709978,530329,115847 +k1,9404:29708195,16756127:-709978 +) +(1,9404:29708195,16756127:709978,414482,115847 +k1,9404:29708195,16756127:3277 +h1,9404:30414896,16756127:0,411205,112570 +) +k1,9404:30572384,16756127:154211 +k1,9404:32583029,16756127:0 +) +(1,9405:6630773,17597615:25952256,513147,134348 +g1,9404:7821562,17597615 +g1,9404:9306607,17597615 +g1,9404:12281286,17597615 +g1,9404:14523272,17597615 +g1,9404:17527442,17597615 +g1,9404:18745756,17597615 +g1,9404:21430766,17597615 +g1,9404:22289287,17597615 +g1,9404:26560268,17597615 +g1,9404:28153448,17597615 +(1,9404:28153448,17597615:0,452978,122846 +r1,9404:30973697,17597615:2820249,575824,122846 +k1,9404:28153448,17597615:-2820249 +) +(1,9404:28153448,17597615:2820249,452978,122846 +k1,9404:28153448,17597615:3277 +h1,9404:30970420,17597615:0,411205,112570 +) +k1,9405:32583029,17597615:1435662 +g1,9405:32583029,17597615 +) +(1,9407:6630773,18439103:25952256,513147,134348 +h1,9406:6630773,18439103:983040,0,0 +k1,9406:8250683,18439103:149282 +k1,9406:11121070,18439103:149332 +k1,9406:12508377,18439103:149332 +k1,9406:13317001,18439103:149332 +k1,9406:17890013,18439103:149332 +k1,9406:19242586,18439103:149332 +k1,9406:20007956,18439103:149332 +k1,9406:21653475,18439103:149332 +k1,9406:22334304,18439103:149332 +k1,9406:23135064,18439103:149332 +k1,9406:25245233,18439103:149332 +k1,9406:26413650,18439103:149332 +k1,9406:29258478,18439103:149332 +k1,9406:30093972,18439103:149332 +k1,9407:32583029,18439103:0 +k1,9407:32583029,18439103:0 +) +v1,9409:6630773,19610194:0,393216,0 +(1,9418:6630773,23231015:25952256,4014037,196608 +g1,9418:6630773,23231015 +g1,9418:6630773,23231015 +g1,9418:6434165,23231015 +(1,9418:6434165,23231015:0,4014037,196608 +r1,9418:32779637,23231015:26345472,4210645,196608 +k1,9418:6434165,23231015:-26345472 +) +(1,9418:6434165,23231015:26345472,4014037,196608 +[1,9418:6630773,23231015:25952256,3817429,0 +(1,9411:6630773,19824104:25952256,410518,82312 +(1,9410:6630773,19824104:0,0,0 +g1,9410:6630773,19824104 +g1,9410:6630773,19824104 +g1,9410:6303093,19824104 +(1,9410:6303093,19824104:0,0,0 +) +g1,9410:6630773,19824104 +) +g1,9411:7895356,19824104 +g1,9411:8843794,19824104 +g1,9411:12637543,19824104 +g1,9411:15166709,19824104 +g1,9411:15799001,19824104 +g1,9411:18012021,19824104 +h1,9411:18328167,19824104:0,0,0 +k1,9411:32583029,19824104:14254862 +g1,9411:32583029,19824104 +) +(1,9412:6630773,20490282:25952256,410518,76021 +h1,9412:6630773,20490282:0,0,0 +g1,9412:6946919,20490282 +g1,9412:7895356,20490282 +g1,9412:11056813,20490282 +h1,9412:11372959,20490282:0,0,0 +k1,9412:32583029,20490282:21210070 +g1,9412:32583029,20490282 +) +(1,9413:6630773,21156460:25952256,404226,76021 +h1,9413:6630773,21156460:0,0,0 +g1,9413:6946919,21156460 +g1,9413:7263065,21156460 +g1,9413:7579211,21156460 +g1,9413:8211503,21156460 +g1,9413:9159941,21156460 +k1,9413:9159941,21156460:0 +h1,9413:12321398,21156460:0,0,0 +k1,9413:32583030,21156460:20261632 +g1,9413:32583030,21156460 +) +(1,9414:6630773,21822638:25952256,404226,76021 +h1,9414:6630773,21822638:0,0,0 +g1,9414:6946919,21822638 +h1,9414:7263065,21822638:0,0,0 +k1,9414:32583029,21822638:25319964 +g1,9414:32583029,21822638 +) +(1,9415:6630773,22488816:25952256,404226,107478 +h1,9415:6630773,22488816:0,0,0 +g1,9415:6946919,22488816 +k1,9415:6946919,22488816:0 +h1,9415:13902125,22488816:0,0,0 +k1,9415:32583029,22488816:18680904 +g1,9415:32583029,22488816 +) +(1,9416:6630773,23154994:25952256,404226,76021 +h1,9416:6630773,23154994:0,0,0 +h1,9416:6946919,23154994:0,0,0 +k1,9416:32583029,23154994:25636110 +g1,9416:32583029,23154994 +) +] +) +g1,9418:32583029,23231015 +g1,9418:6630773,23231015 +g1,9418:6630773,23231015 +g1,9418:32583029,23231015 +g1,9418:32583029,23231015 +) +h1,9418:6630773,23427623:0,0,0 +v1,9422:6630773,25103628:0,393216,0 +(1,9441:6630773,30225485:25952256,5515073,196608 +g1,9441:6630773,30225485 +g1,9441:6630773,30225485 +g1,9441:6434165,30225485 +(1,9441:6434165,30225485:0,5515073,196608 +r1,9441:32779637,30225485:26345472,5711681,196608 +k1,9441:6434165,30225485:-26345472 +) +(1,9441:6434165,30225485:26345472,5515073,196608 +[1,9441:6630773,30225485:25952256,5318465,0 +(1,9424:6630773,25311246:25952256,404226,76021 +(1,9423:6630773,25311246:0,0,0 +g1,9423:6630773,25311246 +g1,9423:6630773,25311246 +g1,9423:6303093,25311246 +(1,9423:6303093,25311246:0,0,0 +) +g1,9423:6630773,25311246 +) +k1,9424:6630773,25311246:0 +g1,9424:8527648,25311246 +g1,9424:9159940,25311246 +h1,9424:9792231,25311246:0,0,0 +k1,9424:32583029,25311246:22790798 +g1,9424:32583029,25311246 +) +(1,9428:6630773,26042960:25952256,404226,76021 +(1,9426:6630773,26042960:0,0,0 +g1,9426:6630773,26042960 +g1,9426:6630773,26042960 +g1,9426:6303093,26042960 +(1,9426:6303093,26042960:0,0,0 +) +g1,9426:6630773,26042960 +) +g1,9428:7579210,26042960 +g1,9428:8843793,26042960 +h1,9428:11372958,26042960:0,0,0 +k1,9428:32583030,26042960:21210072 +g1,9428:32583030,26042960 +) +(1,9430:6630773,27364498:25952256,404226,76021 +(1,9429:6630773,27364498:0,0,0 +g1,9429:6630773,27364498 +g1,9429:6630773,27364498 +g1,9429:6303093,27364498 +(1,9429:6303093,27364498:0,0,0 +) +g1,9429:6630773,27364498 +) +k1,9430:6630773,27364498:0 +g1,9430:8527648,27364498 +g1,9430:9159940,27364498 +h1,9430:10740668,27364498:0,0,0 +k1,9430:32583028,27364498:21842360 +g1,9430:32583028,27364498 +) +(1,9434:6630773,28096212:25952256,404226,76021 +(1,9432:6630773,28096212:0,0,0 +g1,9432:6630773,28096212 +g1,9432:6630773,28096212 +g1,9432:6303093,28096212 +(1,9432:6303093,28096212:0,0,0 +) +g1,9432:6630773,28096212 +) +g1,9434:7579210,28096212 +g1,9434:8843793,28096212 +h1,9434:9476084,28096212:0,0,0 +k1,9434:32583028,28096212:23106944 +g1,9434:32583028,28096212 +) +(1,9436:6630773,29417750:25952256,404226,82312 +(1,9435:6630773,29417750:0,0,0 +g1,9435:6630773,29417750 +g1,9435:6630773,29417750 +g1,9435:6303093,29417750 +(1,9435:6303093,29417750:0,0,0 +) +g1,9435:6630773,29417750 +) +k1,9436:6630773,29417750:0 +g1,9436:8527648,29417750 +g1,9436:9159940,29417750 +g1,9436:11056815,29417750 +g1,9436:13585981,29417750 +g1,9436:14218273,29417750 +h1,9436:15799002,29417750:0,0,0 +k1,9436:32583030,29417750:16784028 +g1,9436:32583030,29417750 +) +(1,9440:6630773,30149464:25952256,404226,76021 +(1,9438:6630773,30149464:0,0,0 +g1,9438:6630773,30149464 +g1,9438:6630773,30149464 +g1,9438:6303093,30149464 +(1,9438:6303093,30149464:0,0,0 +) +g1,9438:6630773,30149464 +) +g1,9440:7579210,30149464 +g1,9440:8843793,30149464 +h1,9440:11372958,30149464:0,0,0 +k1,9440:32583030,30149464:21210072 +g1,9440:32583030,30149464 +) +] +) +g1,9441:32583029,30225485 +g1,9441:6630773,30225485 +g1,9441:6630773,30225485 +g1,9441:32583029,30225485 +g1,9441:32583029,30225485 +) +h1,9441:6630773,30422093:0,0,0 +(1,9445:6630773,31768494:25952256,513147,134348 +h1,9444:6630773,31768494:983040,0,0 +k1,9444:8180796,31768494:152140 +k1,9444:9825894,31768494:152188 +k1,9444:11044352,31768494:152187 +k1,9444:13626614,31768494:152187 +k1,9444:14134661,31768494:152187 +k1,9444:16982344,31768494:152187 +k1,9444:18082183,31768494:152188 +k1,9444:21077977,31768494:152187 +k1,9444:23010777,31768494:152187 +k1,9444:23887792,31768494:152187 +k1,9444:25059064,31768494:152187 +k1,9444:27906748,31768494:152188 +k1,9444:29914259,31768494:152187 +k1,9444:30597943,31768494:152187 +k1,9445:32583029,31768494:0 +) +(1,9445:6630773,32609982:25952256,513147,134348 +k1,9444:7926092,32609982:168100 +k1,9444:10245083,32609982:168099 +k1,9444:11213378,32609982:168100 +k1,9444:12762322,32609982:168100 +k1,9444:15740605,32609982:168099 +k1,9444:16440202,32609982:168100 +k1,9444:19889034,32609982:168100 +k1,9444:21451084,32609982:168099 +k1,9444:22903690,32609982:168100 +k1,9444:23731082,32609982:168100 +k1,9444:27721896,32609982:168099 +k1,9444:30092006,32609982:168100 +k1,9444:32583029,32609982:0 +) +(1,9445:6630773,33451470:25952256,513147,126483 +g1,9444:10029470,33451470 +g1,9444:11182248,33451470 +g1,9444:12856692,33451470 +g1,9444:15021346,33451470 +g1,9444:15576435,33451470 +g1,9444:17058859,33451470 +g1,9444:18882726,33451470 +g1,9444:19733383,33451470 +g1,9444:20951697,33451470 +g1,9444:21565769,33451470 +g1,9444:25231853,33451470 +g1,9444:28215051,33451470 +g1,9444:29065708,33451470 +k1,9445:32583029,33451470:2598506 +g1,9445:32583029,33451470 +) +(1,9447:6630773,34292958:25952256,513147,134348 +h1,9446:6630773,34292958:983040,0,0 +k1,9446:8374634,34292958:132986 +k1,9446:9526705,34292958:132986 +k1,9446:12741848,34292958:132985 +k1,9446:13541990,34292958:132986 +(1,9446:13541990,34292958:0,452978,115847 +r1,9446:15307103,34292958:1765113,568825,115847 +k1,9446:13541990,34292958:-1765113 +) +(1,9446:13541990,34292958:1765113,452978,115847 +k1,9446:13541990,34292958:3277 +h1,9446:15303826,34292958:0,411205,112570 +) +k1,9446:15440089,34292958:132986 +k1,9446:16441427,34292958:132986 +k1,9446:17508955,34292958:132985 +k1,9446:17997801,34292958:132986 +k1,9446:20396367,34292958:132986 +k1,9446:23601681,34292958:132986 +k1,9446:24682317,34292958:132985 +k1,9446:28096035,34292958:132986 +(1,9446:28096035,34292958:0,452978,115847 +r1,9446:30564572,34292958:2468537,568825,115847 +k1,9446:28096035,34292958:-2468537 +) +(1,9446:28096035,34292958:2468537,452978,115847 +k1,9446:28096035,34292958:3277 +h1,9446:30561295,34292958:0,411205,112570 +) +k1,9446:30697558,34292958:132986 +k1,9446:32583029,34292958:0 +) +(1,9447:6630773,35134446:25952256,505283,134348 +g1,9446:7361499,35134446 +g1,9446:9073954,35134446 +g1,9446:11315940,35134446 +g1,9446:12534254,35134446 +g1,9446:14114327,35134446 +g1,9446:17210903,35134446 +g1,9446:19524979,35134446 +g1,9446:20494911,35134446 +g1,9446:23766468,35134446 +g1,9446:24617125,35134446 +g1,9446:26019595,35134446 +k1,9447:32583029,35134446:3109031 +g1,9447:32583029,35134446 +) +v1,9453:6630773,36480847:0,393216,0 +(1,9454:6630773,38759014:25952256,2671383,616038 +g1,9454:6630773,38759014 +(1,9454:6630773,38759014:25952256,2671383,616038 +(1,9454:6630773,39375052:25952256,3287421,0 +[1,9454:6630773,39375052:25952256,3287421,0 +(1,9454:6630773,39348838:25952256,3234993,0 +r1,9454:6656987,39348838:26214,3234993,0 +[1,9454:6656987,39348838:25899828,3234993,0 +(1,9454:6656987,38759014:25899828,2055345,0 +[1,9454:7246811,38759014:24720180,2055345,0 +(1,9454:7246811,37791043:24720180,1087374,126483 +k1,9453:8663832,37791043:207318 +k1,9453:10914563,37791043:207318 +k1,9453:12580712,37791043:207318 +k1,9453:14118411,37791043:207318 +k1,9453:17021225,37791043:207318 +k1,9453:17879971,37791043:207318 +k1,9453:20895507,37791043:207318 +k1,9453:22121910,37791043:207318 +k1,9453:24067243,37791043:207318 +k1,9453:24890599,37791043:207318 +k1,9453:25453777,37791043:207318 +k1,9453:27863105,37791043:207318 +k1,9453:29308398,37791043:207318 +k1,9453:30201878,37791043:207318 +(1,9453:30201878,37791043:0,452978,115847 +r1,9454:31966991,37791043:1765113,568825,115847 +k1,9453:30201878,37791043:-1765113 +) +(1,9453:30201878,37791043:1765113,452978,115847 +k1,9453:30201878,37791043:3277 +h1,9453:31963714,37791043:0,411205,112570 +) +k1,9453:31966991,37791043:0 +) +(1,9454:7246811,38632531:24720180,513147,126483 +g1,9453:8653213,38632531 +g1,9453:11234020,38632531 +g1,9453:13462244,38632531 +g1,9453:15213366,38632531 +g1,9453:18108091,38632531 +(1,9453:18108091,38632531:0,452978,115847 +r1,9454:19873204,38632531:1765113,568825,115847 +k1,9453:18108091,38632531:-1765113 +) +(1,9453:18108091,38632531:1765113,452978,115847 +k1,9453:18108091,38632531:3277 +h1,9453:19869927,38632531:0,411205,112570 +) +g1,9453:20072433,38632531 +g1,9453:22040479,38632531 +g1,9453:22987474,38632531 +g1,9453:23845995,38632531 +k1,9454:31966991,38632531:6559273 +g1,9454:31966991,38632531 +) +] +) +] +r1,9454:32583029,39348838:26214,3234993,0 +) +] +) +) +g1,9454:32583029,38759014 +) +h1,9454:6630773,39375052:0,0,0 +(1,9457:6630773,40721454:25952256,505283,134348 +h1,9456:6630773,40721454:983040,0,0 +k1,9456:10982232,40721454:248250 +k1,9456:12334764,40721454:248250 +k1,9456:14058230,40721454:248251 +k1,9456:16089715,40721454:248250 +k1,9456:17988162,40721454:248250 +k1,9456:20922733,40721454:248250 +k1,9456:22362428,40721454:248250 +k1,9456:24469935,40721454:248251 +k1,9456:28131955,40721454:248250 +k1,9456:31896867,40721454:248250 +k1,9456:32583029,40721454:0 +) +(1,9457:6630773,41562942:25952256,513147,126483 +k1,9456:8430556,41562942:291144 +k1,9456:10298495,41562942:291143 +k1,9456:12032086,41562942:291144 +k1,9456:14067143,41562942:291144 +k1,9456:14974324,41562942:291143 +k1,9456:16284553,41562942:291144 +k1,9456:19567416,41562942:291144 +k1,9456:21887554,41562942:291143 +k1,9456:24273884,41562942:291144 +k1,9456:25335731,41562942:291144 +k1,9456:29240529,41562942:291143 +k1,9456:29887533,41562942:291144 +k1,9456:32583029,41562942:0 +) +(1,9457:6630773,42404430:25952256,513147,126483 +k1,9456:8634461,42404430:265673 +k1,9456:11653301,42404430:265673 +k1,9456:12680502,42404430:265673 +k1,9456:16800347,42404430:265673 +k1,9456:17597517,42404430:265673 +k1,9456:21453252,42404430:265673 +k1,9456:22405086,42404430:265672 +k1,9456:23026619,42404430:265673 +k1,9456:24391986,42404430:265673 +k1,9456:25309087,42404430:265673 +k1,9456:26593845,42404430:265673 +k1,9456:29728684,42404430:265673 +k1,9456:31191044,42404430:265673 +k1,9456:32583029,42404430:0 +) +(1,9457:6630773,43245918:25952256,513147,134348 +g1,9456:8568017,43245918 +g1,9456:9426538,43245918 +g1,9456:9981627,43245918 +g1,9456:12876352,43245918 +g1,9456:15402764,43245918 +g1,9456:17212213,43245918 +g1,9456:19442403,43245918 +g1,9456:20293060,43245918 +g1,9456:21280687,43245918 +k1,9457:32583029,43245918:8046513 +g1,9457:32583029,43245918 +) +(1,9459:6630773,44087406:25952256,513147,126483 +h1,9458:6630773,44087406:983040,0,0 +k1,9458:8760340,44087406:192978 +k1,9458:10259451,44087406:192978 +k1,9458:12034469,44087406:192979 +k1,9458:15647771,44087406:192978 +k1,9458:16859834,44087406:192978 +k1,9458:20134970,44087406:192978 +k1,9458:20987241,44087406:192979 +k1,9458:22277947,44087406:192978 +k1,9458:25166421,44087406:192978 +k1,9458:26927020,44087406:192978 +k1,9458:29153581,44087406:192979 +k1,9458:29962597,44087406:192978 +k1,9458:31358816,44087406:192978 +k1,9459:32583029,44087406:0 +) +(1,9459:6630773,44928894:25952256,473825,7863 +k1,9459:32583030,44928894:24511120 +g1,9459:32583030,44928894 +) +v1,9461:6630773,46099985:0,393216,0 +] +(1,9474:32583029,45706769:0,0,0 +g1,9474:32583029,45706769 +) +) +] +(1,9474:6630773,47279633:25952256,0,0 +h1,9474:6630773,47279633:25952256,0,0 +) +] +h1,9474:4262630,4025873:0,0,0 +] +!25578 }178 -Input:1229:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1230:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:1225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {179 -[1,9555:4262630,47279633:28320399,43253760,0 -(1,9555:4262630,4025873:0,0,0 -[1,9555:-473657,4025873:25952256,0,0 -(1,9555:-473657,-710414:25952256,0,0 -h1,9555:-473657,-710414:0,0,0 -(1,9555:-473657,-710414:0,0,0 -(1,9555:-473657,-710414:0,0,0 -g1,9555:-473657,-710414 -(1,9555:-473657,-710414:65781,0,65781 -g1,9555:-407876,-710414 -[1,9555:-407876,-644633:0,0,0 +[1,9560:4262630,47279633:28320399,43253760,0 +(1,9560:4262630,4025873:0,0,0 +[1,9560:-473657,4025873:25952256,0,0 +(1,9560:-473657,-710414:25952256,0,0 +h1,9560:-473657,-710414:0,0,0 +(1,9560:-473657,-710414:0,0,0 +(1,9560:-473657,-710414:0,0,0 +g1,9560:-473657,-710414 +(1,9560:-473657,-710414:65781,0,65781 +g1,9560:-407876,-710414 +[1,9560:-407876,-644633:0,0,0 ] ) -k1,9555:-473657,-710414:-65781 +k1,9560:-473657,-710414:-65781 ) ) -k1,9555:25478599,-710414:25952256 -g1,9555:25478599,-710414 +k1,9560:25478599,-710414:25952256 +g1,9560:25478599,-710414 ) ] ) -[1,9555:6630773,47279633:25952256,43253760,0 -[1,9555:6630773,4812305:25952256,786432,0 -(1,9555:6630773,4812305:25952256,505283,134348 -(1,9555:6630773,4812305:25952256,505283,134348 -g1,9555:3078558,4812305 -[1,9555:3078558,4812305:0,0,0 -(1,9555:3078558,2439708:0,1703936,0 -k1,9555:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9555:2537886,2439708:1179648,16384,0 +[1,9560:6630773,47279633:25952256,43253760,0 +[1,9560:6630773,4812305:25952256,786432,0 +(1,9560:6630773,4812305:25952256,505283,134348 +(1,9560:6630773,4812305:25952256,505283,134348 +g1,9560:3078558,4812305 +[1,9560:3078558,4812305:0,0,0 +(1,9560:3078558,2439708:0,1703936,0 +k1,9560:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9560:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9555:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9560:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9555:3078558,4812305:0,0,0 -(1,9555:3078558,2439708:0,1703936,0 -g1,9555:29030814,2439708 -g1,9555:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9555:36151628,1915420:16384,1179648,0 +[1,9560:3078558,4812305:0,0,0 +(1,9560:3078558,2439708:0,1703936,0 +g1,9560:29030814,2439708 +g1,9560:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9560:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9555:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9560:37855564,2439708:1179648,16384,0 ) ) -k1,9555:3078556,2439708:-34777008 +k1,9560:3078556,2439708:-34777008 ) ] -[1,9555:3078558,4812305:0,0,0 -(1,9555:3078558,49800853:0,16384,2228224 -k1,9555:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9555:2537886,49800853:1179648,16384,0 +[1,9560:3078558,4812305:0,0,0 +(1,9560:3078558,49800853:0,16384,2228224 +k1,9560:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9560:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9555:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9560:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9555:3078558,4812305:0,0,0 -(1,9555:3078558,49800853:0,16384,2228224 -g1,9555:29030814,49800853 -g1,9555:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9555:36151628,51504789:16384,1179648,0 +[1,9560:3078558,4812305:0,0,0 +(1,9560:3078558,49800853:0,16384,2228224 +g1,9560:29030814,49800853 +g1,9560:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9560:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9555:37855564,49800853:1179648,16384,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9560:37855564,49800853:1179648,16384,0 ) ) -k1,9555:3078556,49800853:-34777008 +k1,9560:3078556,49800853:-34777008 ) ] -g1,9555:6630773,4812305 -k1,9555:20873058,4812305:13046908 -g1,9555:22259799,4812305 -g1,9555:22908605,4812305 -g1,9555:26222760,4812305 -g1,9555:28614824,4812305 -g1,9555:30094627,4812305 -) -) -] -[1,9555:6630773,45706769:25952256,40108032,0 -(1,9555:6630773,45706769:25952256,40108032,0 -(1,9555:6630773,45706769:0,0,0 -g1,9555:6630773,45706769 +g1,9560:6630773,4812305 +k1,9560:20781963,4812305:12955813 +g1,9560:22168704,4812305 +g1,9560:22817510,4812305 +g1,9560:26131665,4812305 +g1,9560:28614824,4812305 +g1,9560:30094627,4812305 +) +) +] +[1,9560:6630773,45706769:25952256,40108032,0 +(1,9560:6630773,45706769:25952256,40108032,0 +(1,9560:6630773,45706769:0,0,0 +g1,9560:6630773,45706769 ) -[1,9555:6630773,45706769:25952256,40108032,0 -v1,9469:6630773,6254097:0,393216,0 -(1,9469:6630773,11171622:25952256,5310741,196608 -g1,9469:6630773,11171622 -g1,9469:6630773,11171622 -g1,9469:6434165,11171622 -(1,9469:6434165,11171622:0,5310741,196608 -r1,9469:32779637,11171622:26345472,5507349,196608 -k1,9469:6434165,11171622:-26345472 +[1,9560:6630773,45706769:25952256,40108032,0 +v1,9474:6630773,6254097:0,393216,0 +(1,9474:6630773,11171622:25952256,5310741,196608 +g1,9474:6630773,11171622 +g1,9474:6630773,11171622 +g1,9474:6434165,11171622 +(1,9474:6434165,11171622:0,5310741,196608 +r1,9474:32779637,11171622:26345472,5507349,196608 +k1,9474:6434165,11171622:-26345472 ) -(1,9469:6434165,11171622:26345472,5310741,196608 -[1,9469:6630773,11171622:25952256,5114133,0 -(1,9458:6630773,6341653:25952256,284164,6290 -(1,9457:6630773,6341653:0,0,0 -g1,9457:6630773,6341653 -g1,9457:6630773,6341653 -g1,9457:6303093,6341653 -(1,9457:6303093,6341653:0,0,0 -) -g1,9457:6630773,6341653 -) -h1,9458:7579210,6341653:0,0,0 -k1,9458:32583030,6341653:25003820 -g1,9458:32583030,6341653 -) -(1,9468:6630773,7073367:25952256,410518,82312 -(1,9460:6630773,7073367:0,0,0 -g1,9460:6630773,7073367 -g1,9460:6630773,7073367 -g1,9460:6303093,7073367 -(1,9460:6303093,7073367:0,0,0 -) -g1,9460:6630773,7073367 -) -g1,9468:7579210,7073367 -g1,9468:11372959,7073367 -g1,9468:13902125,7073367 -g1,9468:14534417,7073367 -g1,9468:16747437,7073367 -h1,9468:17063583,7073367:0,0,0 -k1,9468:32583029,7073367:15519446 -g1,9468:32583029,7073367 -) -(1,9468:6630773,7739545:25952256,410518,76021 -h1,9468:6630773,7739545:0,0,0 -g1,9468:7579210,7739545 -g1,9468:7895356,7739545 -g1,9468:8843793,7739545 -g1,9468:12005250,7739545 -h1,9468:12321396,7739545:0,0,0 -k1,9468:32583028,7739545:20261632 -g1,9468:32583028,7739545 -) -(1,9468:6630773,8405723:25952256,404226,76021 -h1,9468:6630773,8405723:0,0,0 -g1,9468:7579210,8405723 -g1,9468:7895356,8405723 -g1,9468:8211502,8405723 -g1,9468:8527648,8405723 -g1,9468:9159940,8405723 -g1,9468:10108378,8405723 -h1,9468:13269835,8405723:0,0,0 -k1,9468:32583029,8405723:19313194 -g1,9468:32583029,8405723 -) -(1,9468:6630773,9071901:25952256,404226,76021 -h1,9468:6630773,9071901:0,0,0 -g1,9468:7579210,9071901 -g1,9468:7895356,9071901 -h1,9468:8211502,9071901:0,0,0 -k1,9468:32583030,9071901:24371528 -g1,9468:32583030,9071901 -) -(1,9468:6630773,9738079:25952256,404226,107478 -h1,9468:6630773,9738079:0,0,0 -g1,9468:7579210,9738079 -g1,9468:7895356,9738079 -h1,9468:14850561,9738079:0,0,0 -k1,9468:32583029,9738079:17732468 -g1,9468:32583029,9738079 -) -(1,9468:6630773,10404257:25952256,404226,76021 -h1,9468:6630773,10404257:0,0,0 -g1,9468:7579210,10404257 -h1,9468:7895356,10404257:0,0,0 -k1,9468:32583028,10404257:24687672 -g1,9468:32583028,10404257 -) -(1,9468:6630773,11070435:25952256,404226,101187 -h1,9468:6630773,11070435:0,0,0 -g1,9468:7579210,11070435 -g1,9468:11056813,11070435 -k1,9468:11056813,11070435:0 -h1,9468:17063581,11070435:0,0,0 -k1,9468:32583029,11070435:15519448 -g1,9468:32583029,11070435 -) -] -) -g1,9469:32583029,11171622 -g1,9469:6630773,11171622 -g1,9469:6630773,11171622 -g1,9469:32583029,11171622 -g1,9469:32583029,11171622 -) -h1,9469:6630773,11368230:0,0,0 -(1,9473:6630773,12609425:25952256,513147,134348 -h1,9472:6630773,12609425:983040,0,0 -k1,9472:9331982,12609425:256716 -k1,9472:10457049,12609425:256715 -k1,9472:12295804,12609425:256716 -k1,9472:13571604,12609425:256715 -k1,9472:16910478,12609425:256716 -k1,9472:17834350,12609425:256716 -k1,9472:19009880,12609425:256715 -k1,9472:21079322,12609425:256716 -k1,9472:23323745,12609425:256716 -k1,9472:25515083,12609425:256715 -k1,9472:28467295,12609425:256716 -(1,9472:28467295,12609425:0,452978,115847 -r1,9472:29880696,12609425:1413401,568825,115847 -k1,9472:28467295,12609425:-1413401 -) -(1,9472:28467295,12609425:1413401,452978,115847 -k1,9472:28467295,12609425:3277 -h1,9472:29877419,12609425:0,411205,112570 -) -k1,9472:30311081,12609425:256715 -k1,9472:31923737,12609425:256716 -k1,9473:32583029,12609425:0 -) -(1,9473:6630773,13450913:25952256,505283,134348 -(1,9472:6630773,13450913:0,452978,115847 -r1,9472:8044174,13450913:1413401,568825,115847 -k1,9472:6630773,13450913:-1413401 -) -(1,9472:6630773,13450913:1413401,452978,115847 -k1,9472:6630773,13450913:3277 -h1,9472:8040897,13450913:0,411205,112570 -) -g1,9472:8243403,13450913 -g1,9472:8974129,13450913 -g1,9472:12263381,13450913 -g1,9472:13078648,13450913 -g1,9472:15556564,13450913 -h1,9472:16527152,13450913:0,0,0 -g1,9472:16726381,13450913 -g1,9472:17734980,13450913 -g1,9472:19432362,13450913 -h1,9472:20627739,13450913:0,0,0 -k1,9473:32583029,13450913:11574526 -g1,9473:32583029,13450913 -) -v1,9475:6630773,14516798:0,393216,0 -(1,9555:6630773,45510161:25952256,31386579,196608 -g1,9555:6630773,45510161 -g1,9555:6630773,45510161 -g1,9555:6434165,45510161 -(1,9555:6434165,45510161:0,31386579,196608 -r1,9555:32779637,45510161:26345472,31583187,196608 -k1,9555:6434165,45510161:-26345472 -) -(1,9555:6434165,45510161:26345472,31386579,196608 -[1,9555:6630773,45510161:25952256,31189971,0 -(1,9477:6630773,14724416:25952256,404226,0 -(1,9476:6630773,14724416:0,0,0 -g1,9476:6630773,14724416 -g1,9476:6630773,14724416 -g1,9476:6303093,14724416 -(1,9476:6303093,14724416:0,0,0 -) -g1,9476:6630773,14724416 -) -h1,9477:7263064,14724416:0,0,0 -k1,9477:32583028,14724416:25319964 -g1,9477:32583028,14724416 -) -(1,9554:6630773,15456130:25952256,410518,107478 -(1,9479:6630773,15456130:0,0,0 -g1,9479:6630773,15456130 -g1,9479:6630773,15456130 -g1,9479:6303093,15456130 -(1,9479:6303093,15456130:0,0,0 -) -g1,9479:6630773,15456130 -) -g1,9554:7579210,15456130 -g1,9554:10424521,15456130 -g1,9554:13585978,15456130 -g1,9554:15482853,15456130 -g1,9554:18012019,15456130 -g1,9554:20857331,15456130 -g1,9554:24334934,15456130 -g1,9554:26547954,15456130 -g1,9554:27180246,15456130 -k1,9554:27180246,15456130:0 -h1,9554:28760975,15456130:0,0,0 -k1,9554:32583029,15456130:3822054 -g1,9554:32583029,15456130 -) -(1,9554:6630773,16122308:25952256,404226,107478 -h1,9554:6630773,16122308:0,0,0 -g1,9554:7579210,16122308 -g1,9554:7895356,16122308 -g1,9554:8211502,16122308 -g1,9554:8527648,16122308 -g1,9554:8843794,16122308 -g1,9554:10740668,16122308 -g1,9554:11372960,16122308 -g1,9554:13269835,16122308 -g1,9554:13902127,16122308 -g1,9554:14534419,16122308 -g1,9554:16747439,16122308 -g1,9554:17379731,16122308 -g1,9554:18012023,16122308 -g1,9554:20225043,16122308 -g1,9554:21173480,16122308 -g1,9554:21805772,16122308 -g1,9554:23702647,16122308 -g1,9554:27496395,16122308 -g1,9554:28128687,16122308 -k1,9554:28128687,16122308:0 -h1,9554:29709416,16122308:0,0,0 -k1,9554:32583029,16122308:2873613 -g1,9554:32583029,16122308 -) -(1,9554:6630773,16788486:25952256,410518,82312 -h1,9554:6630773,16788486:0,0,0 -g1,9554:7579210,16788486 -g1,9554:7895356,16788486 -g1,9554:8211502,16788486 -g1,9554:8527648,16788486 -g1,9554:8843794,16788486 -g1,9554:12005251,16788486 -g1,9554:12637543,16788486 -g1,9554:14534418,16788486 -g1,9554:17063584,16788486 -h1,9554:18328167,16788486:0,0,0 -k1,9554:32583029,16788486:14254862 -g1,9554:32583029,16788486 -) -(1,9554:6630773,17454664:25952256,404226,76021 -h1,9554:6630773,17454664:0,0,0 -g1,9554:7579210,17454664 -h1,9554:7895356,17454664:0,0,0 -k1,9554:32583028,17454664:24687672 -g1,9554:32583028,17454664 -) -(1,9554:6630773,18120842:25952256,379060,6290 -h1,9554:6630773,18120842:0,0,0 -g1,9554:7579210,18120842 -g1,9554:7895356,18120842 -g1,9554:8211502,18120842 -g1,9554:8527648,18120842 -g1,9554:8843794,18120842 -g1,9554:10740668,18120842 -g1,9554:11689106,18120842 -h1,9554:12005252,18120842:0,0,0 -k1,9554:32583028,18120842:20577776 -g1,9554:32583028,18120842 -) -(1,9554:6630773,18787020:25952256,379060,101187 -h1,9554:6630773,18787020:0,0,0 -g1,9554:7579210,18787020 -g1,9554:7895356,18787020 -g1,9554:8211502,18787020 -g1,9554:8527648,18787020 -g1,9554:8843794,18787020 -g1,9554:10740668,18787020 -g1,9554:11689106,18787020 -h1,9554:12005252,18787020:0,0,0 -k1,9554:32583028,18787020:20577776 -g1,9554:32583028,18787020 -) -(1,9554:6630773,19453198:25952256,404226,76021 -h1,9554:6630773,19453198:0,0,0 -g1,9554:7579210,19453198 -g1,9554:7895356,19453198 -g1,9554:8211502,19453198 -g1,9554:8527648,19453198 -g1,9554:8843794,19453198 -g1,9554:9792231,19453198 -g1,9554:10740669,19453198 -h1,9554:14534417,19453198:0,0,0 -k1,9554:32583029,19453198:18048612 -g1,9554:32583029,19453198 -) -(1,9554:6630773,20119376:25952256,410518,101187 -h1,9554:6630773,20119376:0,0,0 -g1,9554:7579210,20119376 -g1,9554:7895356,20119376 -g1,9554:8211502,20119376 -g1,9554:8527648,20119376 -g1,9554:8843794,20119376 -g1,9554:9792231,20119376 -g1,9554:10740669,20119376 -g1,9554:18012020,20119376 -g1,9554:18644312,20119376 -h1,9554:20541186,20119376:0,0,0 -k1,9554:32583029,20119376:12041843 -g1,9554:32583029,20119376 -) -(1,9554:6630773,20785554:25952256,410518,107478 -h1,9554:6630773,20785554:0,0,0 -g1,9554:7579210,20785554 -g1,9554:7895356,20785554 -g1,9554:8211502,20785554 -g1,9554:8527648,20785554 -g1,9554:8843794,20785554 -g1,9554:9476086,20785554 -g1,9554:10424524,20785554 -g1,9554:16431293,20785554 -g1,9554:18960459,20785554 -g1,9554:22121916,20785554 -g1,9554:25599519,20785554 -k1,9554:25599519,20785554:0 -h1,9554:29393267,20785554:0,0,0 -k1,9554:32583029,20785554:3189762 -g1,9554:32583029,20785554 -) -(1,9554:6630773,21451732:25952256,410518,82312 -h1,9554:6630773,21451732:0,0,0 -g1,9554:7579210,21451732 -g1,9554:7895356,21451732 -g1,9554:8211502,21451732 -g1,9554:8527648,21451732 -g1,9554:8843794,21451732 -g1,9554:9159940,21451732 -g1,9554:9476086,21451732 -g1,9554:9792232,21451732 -g1,9554:10108378,21451732 -g1,9554:13585981,21451732 -g1,9554:17063584,21451732 -h1,9554:18012021,21451732:0,0,0 -k1,9554:32583029,21451732:14571008 -g1,9554:32583029,21451732 -) -(1,9554:6630773,22117910:25952256,410518,82312 -h1,9554:6630773,22117910:0,0,0 -g1,9554:7579210,22117910 -g1,9554:7895356,22117910 -g1,9554:8211502,22117910 -g1,9554:8527648,22117910 -g1,9554:8843794,22117910 -g1,9554:9792231,22117910 -g1,9554:10740669,22117910 -g1,9554:13585981,22117910 -h1,9554:14534418,22117910:0,0,0 -k1,9554:32583030,22117910:18048612 -g1,9554:32583030,22117910 -) -(1,9554:6630773,22784088:25952256,410518,101187 -h1,9554:6630773,22784088:0,0,0 -g1,9554:7579210,22784088 -g1,9554:7895356,22784088 -g1,9554:8211502,22784088 -g1,9554:8527648,22784088 -g1,9554:8843794,22784088 -g1,9554:15798999,22784088 -g1,9554:16747437,22784088 -h1,9554:18012020,22784088:0,0,0 -k1,9554:32583029,22784088:14571009 -g1,9554:32583029,22784088 -) -(1,9554:6630773,23450266:25952256,410518,101187 -h1,9554:6630773,23450266:0,0,0 -g1,9554:7579210,23450266 -g1,9554:7895356,23450266 -g1,9554:8211502,23450266 -g1,9554:8527648,23450266 -g1,9554:8843794,23450266 -g1,9554:11689105,23450266 -g1,9554:12637543,23450266 -h1,9554:20541185,23450266:0,0,0 -k1,9554:32583029,23450266:12041844 -g1,9554:32583029,23450266 -) -(1,9554:6630773,24116444:25952256,410518,101187 -h1,9554:6630773,24116444:0,0,0 -g1,9554:7579210,24116444 -g1,9554:7895356,24116444 -g1,9554:8211502,24116444 -g1,9554:8527648,24116444 -g1,9554:8843794,24116444 -g1,9554:9792231,24116444 -g1,9554:10740669,24116444 -g1,9554:13585981,24116444 -h1,9554:18328166,24116444:0,0,0 -k1,9554:32583029,24116444:14254863 -g1,9554:32583029,24116444 -) -(1,9554:6630773,24782622:25952256,410518,76021 -h1,9554:6630773,24782622:0,0,0 -g1,9554:7579210,24782622 -g1,9554:7895356,24782622 -g1,9554:8211502,24782622 -g1,9554:8527648,24782622 -g1,9554:8843794,24782622 -g1,9554:9792231,24782622 -g1,9554:12321397,24782622 -g1,9554:13269834,24782622 -h1,9554:17695874,24782622:0,0,0 -k1,9554:32583029,24782622:14887155 -g1,9554:32583029,24782622 -) -(1,9554:6630773,25448800:25952256,410518,76021 -h1,9554:6630773,25448800:0,0,0 -g1,9554:7579210,25448800 -g1,9554:7895356,25448800 -g1,9554:8211502,25448800 -g1,9554:8527648,25448800 -g1,9554:8843794,25448800 -g1,9554:9159940,25448800 -g1,9554:9476086,25448800 -g1,9554:9792232,25448800 -g1,9554:10108378,25448800 -h1,9554:13269835,25448800:0,0,0 -k1,9554:32583029,25448800:19313194 -g1,9554:32583029,25448800 -) -(1,9554:6630773,26114978:25952256,410518,101187 -h1,9554:6630773,26114978:0,0,0 -g1,9554:7579210,26114978 -g1,9554:7895356,26114978 -g1,9554:8211502,26114978 -g1,9554:8527648,26114978 -g1,9554:8843794,26114978 -g1,9554:10424523,26114978 -g1,9554:11372960,26114978 -g1,9554:13902126,26114978 -g1,9554:14850563,26114978 -h1,9554:16431291,26114978:0,0,0 -k1,9554:32583029,26114978:16151738 -g1,9554:32583029,26114978 -) -(1,9554:6630773,26781156:25952256,410518,107478 -h1,9554:6630773,26781156:0,0,0 -g1,9554:7579210,26781156 -g1,9554:7895356,26781156 -g1,9554:8211502,26781156 -g1,9554:8527648,26781156 -g1,9554:8843794,26781156 -g1,9554:9159940,26781156 -g1,9554:9476086,26781156 -g1,9554:9792232,26781156 -g1,9554:10108378,26781156 -g1,9554:18012020,26781156 -g1,9554:18644312,26781156 -g1,9554:20225041,26781156 -g1,9554:21173478,26781156 -g1,9554:22438061,26781156 -g1,9554:25915664,26781156 -g1,9554:27812538,26781156 -k1,9554:27812538,26781156:0 -h1,9554:29709413,26781156:0,0,0 -k1,9554:32583029,26781156:2873616 -g1,9554:32583029,26781156 -) -(1,9554:6630773,27447334:25952256,404226,82312 -h1,9554:6630773,27447334:0,0,0 -g1,9554:7579210,27447334 -g1,9554:7895356,27447334 -g1,9554:8211502,27447334 -g1,9554:8527648,27447334 -g1,9554:8843794,27447334 -g1,9554:9159940,27447334 -g1,9554:9476086,27447334 -g1,9554:9792232,27447334 -g1,9554:10108378,27447334 -g1,9554:10424524,27447334 -g1,9554:10740670,27447334 -g1,9554:11056816,27447334 -g1,9554:11372962,27447334 -g1,9554:14218274,27447334 -g1,9554:16431294,27447334 -g1,9554:17063586,27447334 -h1,9554:18012023,27447334:0,0,0 -k1,9554:32583029,27447334:14571006 -g1,9554:32583029,27447334 -) -(1,9554:6630773,28113512:25952256,410518,82312 -h1,9554:6630773,28113512:0,0,0 -g1,9554:7579210,28113512 -g1,9554:7895356,28113512 -g1,9554:8211502,28113512 -g1,9554:8527648,28113512 -g1,9554:8843794,28113512 -g1,9554:9792231,28113512 -g1,9554:10740669,28113512 -g1,9554:13585981,28113512 -h1,9554:16115146,28113512:0,0,0 -k1,9554:32583029,28113512:16467883 -g1,9554:32583029,28113512 -) -(1,9554:6630773,28779690:25952256,410518,101187 -h1,9554:6630773,28779690:0,0,0 -g1,9554:7579210,28779690 -g1,9554:7895356,28779690 -g1,9554:8211502,28779690 -g1,9554:8527648,28779690 -g1,9554:8843794,28779690 -g1,9554:9476086,28779690 -g1,9554:10424524,28779690 -g1,9554:16431293,28779690 -h1,9554:19592750,28779690:0,0,0 -k1,9554:32583029,28779690:12990279 -g1,9554:32583029,28779690 -) -(1,9554:6630773,29445868:25952256,410518,107478 -h1,9554:6630773,29445868:0,0,0 -g1,9554:7579210,29445868 -g1,9554:7895356,29445868 -g1,9554:8211502,29445868 -g1,9554:8527648,29445868 -g1,9554:8843794,29445868 -g1,9554:9476086,29445868 -g1,9554:10424524,29445868 -h1,9554:19276603,29445868:0,0,0 -k1,9554:32583029,29445868:13306426 -g1,9554:32583029,29445868 -) -(1,9554:6630773,30112046:25952256,410518,76021 -h1,9554:6630773,30112046:0,0,0 -g1,9554:7579210,30112046 -g1,9554:7895356,30112046 -g1,9554:8211502,30112046 -g1,9554:8527648,30112046 -g1,9554:8843794,30112046 -g1,9554:9792231,30112046 -g1,9554:13902125,30112046 -g1,9554:14850562,30112046 -h1,9554:19592747,30112046:0,0,0 -k1,9554:32583029,30112046:12990282 -g1,9554:32583029,30112046 -) -(1,9554:6630773,30778224:25952256,404226,107478 -h1,9554:6630773,30778224:0,0,0 -g1,9554:7579210,30778224 -g1,9554:7895356,30778224 -g1,9554:8211502,30778224 -g1,9554:8527648,30778224 -g1,9554:8843794,30778224 -g1,9554:9159940,30778224 -g1,9554:9476086,30778224 -g1,9554:9792232,30778224 -g1,9554:10108378,30778224 -g1,9554:15166710,30778224 -g1,9554:16747439,30778224 -g1,9554:17695876,30778224 -g1,9554:18328168,30778224 -g1,9554:20857334,30778224 -h1,9554:23386499,30778224:0,0,0 -k1,9554:32583029,30778224:9196530 -g1,9554:32583029,30778224 -) -(1,9554:6630773,31444402:25952256,410518,76021 -h1,9554:6630773,31444402:0,0,0 -g1,9554:7579210,31444402 -g1,9554:7895356,31444402 -g1,9554:8211502,31444402 -g1,9554:8527648,31444402 -g1,9554:8843794,31444402 -g1,9554:11056814,31444402 -g1,9554:12005252,31444402 -h1,9554:17063583,31444402:0,0,0 -k1,9554:32583029,31444402:15519446 -g1,9554:32583029,31444402 -) -(1,9554:6630773,32110580:25952256,404226,101187 -h1,9554:6630773,32110580:0,0,0 -g1,9554:7579210,32110580 -g1,9554:7895356,32110580 -g1,9554:8211502,32110580 -g1,9554:8527648,32110580 -g1,9554:8843794,32110580 -g1,9554:10108377,32110580 -g1,9554:11056815,32110580 -h1,9554:14850563,32110580:0,0,0 -k1,9554:32583029,32110580:17732466 -g1,9554:32583029,32110580 -) -(1,9554:6630773,32776758:25952256,410518,101187 -h1,9554:6630773,32776758:0,0,0 -g1,9554:7579210,32776758 -g1,9554:7895356,32776758 -g1,9554:8211502,32776758 -g1,9554:8527648,32776758 -g1,9554:8843794,32776758 -g1,9554:9792231,32776758 -g1,9554:10740669,32776758 -g1,9554:11689106,32776758 -h1,9554:13269834,32776758:0,0,0 -k1,9554:32583030,32776758:19313196 -g1,9554:32583030,32776758 -) -(1,9554:6630773,33442936:25952256,404226,101187 -h1,9554:6630773,33442936:0,0,0 -g1,9554:7579210,33442936 -g1,9554:7895356,33442936 -g1,9554:8211502,33442936 -g1,9554:8527648,33442936 -g1,9554:8843794,33442936 -g1,9554:9159940,33442936 -g1,9554:9476086,33442936 -g1,9554:9792232,33442936 -g1,9554:10108378,33442936 -h1,9554:12321398,33442936:0,0,0 -k1,9554:32583030,33442936:20261632 -g1,9554:32583030,33442936 -) -(1,9554:6630773,34109114:25952256,404226,107478 -h1,9554:6630773,34109114:0,0,0 -g1,9554:7579210,34109114 -g1,9554:7895356,34109114 -g1,9554:8211502,34109114 -g1,9554:8527648,34109114 -g1,9554:8843794,34109114 -g1,9554:10424523,34109114 -h1,9554:13269834,34109114:0,0,0 -k1,9554:32583030,34109114:19313196 -g1,9554:32583030,34109114 -) -(1,9554:6630773,34775292:25952256,410518,76021 -h1,9554:6630773,34775292:0,0,0 -g1,9554:7579210,34775292 -g1,9554:7895356,34775292 -g1,9554:8211502,34775292 -g1,9554:8527648,34775292 -g1,9554:8843794,34775292 -g1,9554:9792231,34775292 -g1,9554:15798999,34775292 -h1,9554:16115145,34775292:0,0,0 -k1,9554:32583029,34775292:16467884 -g1,9554:32583029,34775292 -) -(1,9554:6630773,35441470:25952256,410518,76021 -h1,9554:6630773,35441470:0,0,0 -g1,9554:7579210,35441470 -g1,9554:7895356,35441470 -g1,9554:8211502,35441470 -g1,9554:8527648,35441470 -g1,9554:8843794,35441470 -g1,9554:9159940,35441470 -g1,9554:9476086,35441470 -g1,9554:9792232,35441470 -g1,9554:10108378,35441470 -g1,9554:11056815,35441470 -h1,9554:12953689,35441470:0,0,0 -k1,9554:32583029,35441470:19629340 -g1,9554:32583029,35441470 -) -(1,9554:6630773,36107648:25952256,410518,76021 -h1,9554:6630773,36107648:0,0,0 -g1,9554:7579210,36107648 -g1,9554:7895356,36107648 -g1,9554:8211502,36107648 -g1,9554:8527648,36107648 -g1,9554:8843794,36107648 -g1,9554:9159940,36107648 -g1,9554:9476086,36107648 -g1,9554:9792232,36107648 -g1,9554:10108378,36107648 -g1,9554:10424524,36107648 -g1,9554:10740670,36107648 -g1,9554:11056816,36107648 -g1,9554:11372962,36107648 -g1,9554:13585982,36107648 -g1,9554:14534420,36107648 -h1,9554:19908897,36107648:0,0,0 -k1,9554:32583029,36107648:12674132 -g1,9554:32583029,36107648 -) -(1,9554:6630773,36773826:25952256,410518,101187 -h1,9554:6630773,36773826:0,0,0 -g1,9554:7579210,36773826 -g1,9554:7895356,36773826 -g1,9554:8211502,36773826 -g1,9554:8527648,36773826 -g1,9554:8843794,36773826 -g1,9554:9159940,36773826 -g1,9554:9476086,36773826 -g1,9554:9792232,36773826 -g1,9554:10108378,36773826 -g1,9554:11056815,36773826 -g1,9554:15482855,36773826 -g1,9554:16431292,36773826 -h1,9554:17379729,36773826:0,0,0 -k1,9554:32583029,36773826:15203300 -g1,9554:32583029,36773826 -) -(1,9554:6630773,37440004:25952256,410518,107478 -h1,9554:6630773,37440004:0,0,0 -k1,9554:7473828,37440004:210764 -k1,9554:7684592,37440004:210764 -k1,9554:7895356,37440004:210764 -k1,9554:8106120,37440004:210764 -k1,9554:8316884,37440004:210764 -k1,9554:8527648,37440004:210764 -k1,9554:8738412,37440004:210764 -k1,9554:8949176,37440004:210764 -k1,9554:9159940,37440004:210764 -k1,9554:9370704,37440004:210764 -k1,9554:9581468,37440004:210764 -k1,9554:9792232,37440004:210764 -k1,9554:10002996,37440004:210764 -k1,9554:16852819,37440004:210764 -k1,9554:17695874,37440004:210764 -k1,9554:20119658,37440004:210764 -k1,9554:20962713,37440004:210764 -k1,9554:22121914,37440004:210764 -k1,9554:24229552,37440004:210764 -k1,9554:26021044,37440004:210764 -k1,9554:26864099,37440004:210764 -k1,9554:29287883,37440004:210764 -k1,9554:30130938,37440004:210764 -k1,9554:30130938,37440004:0 -h1,9554:34873124,37440004:0,0,0 -k1,9554:34873124,37440004:0 -k1,9554:34873124,37440004:0 -) -(1,9554:6630773,38106182:25952256,410518,101187 -h1,9554:6630773,38106182:0,0,0 -g1,9554:7579210,38106182 -g1,9554:7895356,38106182 -g1,9554:8211502,38106182 -g1,9554:8527648,38106182 -g1,9554:8843794,38106182 -g1,9554:9159940,38106182 -g1,9554:9476086,38106182 -g1,9554:9792232,38106182 -g1,9554:10108378,38106182 -g1,9554:10424524,38106182 -g1,9554:10740670,38106182 -g1,9554:11056816,38106182 -g1,9554:11372962,38106182 -g1,9554:11689108,38106182 -g1,9554:12005254,38106182 -g1,9554:12321400,38106182 -g1,9554:12637546,38106182 -g1,9554:17063586,38106182 -g1,9554:18644315,38106182 -g1,9554:20857335,38106182 -g1,9554:21489627,38106182 -h1,9554:22438064,38106182:0,0,0 -k1,9554:32583029,38106182:10144965 -g1,9554:32583029,38106182 -) -(1,9554:6630773,38772360:25952256,404226,76021 -h1,9554:6630773,38772360:0,0,0 -g1,9554:7579210,38772360 -g1,9554:7895356,38772360 -g1,9554:8211502,38772360 -g1,9554:8527648,38772360 -g1,9554:8843794,38772360 -h1,9554:9159940,38772360:0,0,0 -k1,9554:32583028,38772360:23423088 -g1,9554:32583028,38772360 -) -(1,9554:6630773,39438538:25952256,410518,101187 -h1,9554:6630773,39438538:0,0,0 -g1,9554:7579210,39438538 -g1,9554:7895356,39438538 -g1,9554:8211502,39438538 -g1,9554:8527648,39438538 -g1,9554:8843794,39438538 -g1,9554:9792231,39438538 -g1,9554:16431291,39438538 -h1,9554:16747437,39438538:0,0,0 -k1,9554:32583029,39438538:15835592 -g1,9554:32583029,39438538 -) -(1,9554:6630773,40104716:25952256,379060,7863 -h1,9554:6630773,40104716:0,0,0 -g1,9554:7579210,40104716 -g1,9554:7895356,40104716 -g1,9554:8211502,40104716 -g1,9554:8527648,40104716 -g1,9554:8843794,40104716 -g1,9554:9159940,40104716 -g1,9554:9476086,40104716 -g1,9554:9792232,40104716 -g1,9554:10108378,40104716 -g1,9554:10740670,40104716 -g1,9554:11689108,40104716 -h1,9554:12953691,40104716:0,0,0 -k1,9554:32583029,40104716:19629338 -g1,9554:32583029,40104716 -) -(1,9554:6630773,40770894:25952256,410518,82312 -h1,9554:6630773,40770894:0,0,0 -g1,9554:7579210,40770894 -g1,9554:7895356,40770894 -g1,9554:8211502,40770894 -g1,9554:8527648,40770894 -g1,9554:8843794,40770894 -g1,9554:9159940,40770894 -g1,9554:9476086,40770894 -g1,9554:9792232,40770894 -g1,9554:10108378,40770894 -g1,9554:10740670,40770894 -g1,9554:11689108,40770894 -g1,9554:17379731,40770894 -g1,9554:18012023,40770894 -g1,9554:18960460,40770894 -g1,9554:20857334,40770894 -g1,9554:26231811,40770894 -k1,9554:26231811,40770894:0 -h1,9554:26864103,40770894:0,0,0 -k1,9554:32583029,40770894:5718926 -g1,9554:32583029,40770894 -) -(1,9554:6630773,41437072:25952256,410518,101187 -h1,9554:6630773,41437072:0,0,0 -g1,9554:7579210,41437072 -g1,9554:7895356,41437072 -g1,9554:8211502,41437072 -g1,9554:8527648,41437072 -g1,9554:8843794,41437072 -g1,9554:9159940,41437072 -g1,9554:9476086,41437072 -g1,9554:9792232,41437072 -g1,9554:10108378,41437072 -g1,9554:10424524,41437072 -g1,9554:10740670,41437072 -g1,9554:11056816,41437072 -g1,9554:11372962,41437072 -g1,9554:14218273,41437072 -g1,9554:15799002,41437072 -g1,9554:19276605,41437072 -g1,9554:22438062,41437072 -g1,9554:23070354,41437072 -g1,9554:24018792,41437072 -g1,9554:28444832,41437072 -g1,9554:29077124,41437072 -g1,9554:29709416,41437072 -h1,9554:30025562,41437072:0,0,0 -k1,9554:32583029,41437072:2557467 -g1,9554:32583029,41437072 -) -(1,9554:6630773,42103250:25952256,410518,107478 -h1,9554:6630773,42103250:0,0,0 -g1,9554:7579210,42103250 -g1,9554:7895356,42103250 -g1,9554:8211502,42103250 -g1,9554:8527648,42103250 -g1,9554:8843794,42103250 -g1,9554:9159940,42103250 -g1,9554:9476086,42103250 -g1,9554:9792232,42103250 -g1,9554:10108378,42103250 -g1,9554:10424524,42103250 -g1,9554:10740670,42103250 -g1,9554:11056816,42103250 -g1,9554:11372962,42103250 -g1,9554:12321400,42103250 -g1,9554:14850566,42103250 -g1,9554:15482858,42103250 -g1,9554:16431296,42103250 -g1,9554:18012025,42103250 -g1,9554:18644317,42103250 -g1,9554:19908900,42103250 -g1,9554:23702648,42103250 -g1,9554:24334940,42103250 -g1,9554:25283377,42103250 -g1,9554:29709417,42103250 -g1,9554:31606291,42103250 -h1,9554:32238582,42103250:0,0,0 -k1,9554:32583029,42103250:344447 -g1,9554:32583029,42103250 -) -(1,9554:6630773,42769428:25952256,404226,101187 -h1,9554:6630773,42769428:0,0,0 -g1,9554:7579210,42769428 -g1,9554:7895356,42769428 -g1,9554:8211502,42769428 -g1,9554:8527648,42769428 -g1,9554:8843794,42769428 -g1,9554:9159940,42769428 -g1,9554:9476086,42769428 -g1,9554:9792232,42769428 -g1,9554:10108378,42769428 -g1,9554:10424524,42769428 -g1,9554:10740670,42769428 -g1,9554:11056816,42769428 -g1,9554:11372962,42769428 -g1,9554:12321399,42769428 -g1,9554:13902128,42769428 -h1,9554:14850565,42769428:0,0,0 -k1,9554:32583029,42769428:17732464 -g1,9554:32583029,42769428 -) -(1,9554:6630773,43435606:25952256,410518,76021 -h1,9554:6630773,43435606:0,0,0 -g1,9554:7579210,43435606 -g1,9554:7895356,43435606 -g1,9554:8211502,43435606 -g1,9554:8527648,43435606 -g1,9554:8843794,43435606 -g1,9554:9159940,43435606 -g1,9554:9476086,43435606 -g1,9554:9792232,43435606 -g1,9554:10108378,43435606 -g1,9554:11056815,43435606 -g1,9554:17063583,43435606 -h1,9554:17379729,43435606:0,0,0 -k1,9554:32583029,43435606:15203300 -g1,9554:32583029,43435606 -) -(1,9554:6630773,44101784:25952256,410518,31456 -h1,9554:6630773,44101784:0,0,0 -g1,9554:7579210,44101784 -g1,9554:7895356,44101784 -g1,9554:8211502,44101784 -g1,9554:8527648,44101784 -g1,9554:8843794,44101784 -g1,9554:9159940,44101784 -g1,9554:9476086,44101784 -g1,9554:9792232,44101784 -g1,9554:10108378,44101784 -g1,9554:10424524,44101784 -g1,9554:10740670,44101784 -g1,9554:11056816,44101784 -g1,9554:11372962,44101784 -g1,9554:16431293,44101784 -g1,9554:17379731,44101784 -h1,9554:19276605,44101784:0,0,0 -k1,9554:32583029,44101784:13306424 -g1,9554:32583029,44101784 -) -(1,9554:6630773,44767962:25952256,410518,101187 -h1,9554:6630773,44767962:0,0,0 -g1,9554:7579210,44767962 -g1,9554:7895356,44767962 -g1,9554:8211502,44767962 -g1,9554:8527648,44767962 -g1,9554:8843794,44767962 -g1,9554:9159940,44767962 -g1,9554:9476086,44767962 -g1,9554:9792232,44767962 -g1,9554:10108378,44767962 -g1,9554:10424524,44767962 -g1,9554:10740670,44767962 -g1,9554:11056816,44767962 -g1,9554:11372962,44767962 -g1,9554:15166710,44767962 -g1,9554:16115148,44767962 -g1,9554:16747440,44767962 -g1,9554:17379732,44767962 -h1,9554:19276606,44767962:0,0,0 -k1,9554:32583029,44767962:13306423 -g1,9554:32583029,44767962 -) -(1,9554:6630773,45434140:25952256,404226,76021 -h1,9554:6630773,45434140:0,0,0 -g1,9554:7579210,45434140 -g1,9554:7895356,45434140 -g1,9554:8211502,45434140 -g1,9554:8527648,45434140 -g1,9554:8843794,45434140 -g1,9554:9159940,45434140 -g1,9554:9476086,45434140 -g1,9554:9792232,45434140 -g1,9554:10108378,45434140 -h1,9554:10424524,45434140:0,0,0 -k1,9554:32583028,45434140:22158504 -g1,9554:32583028,45434140 -) -] -) -g1,9555:32583029,45510161 -g1,9555:6630773,45510161 -g1,9555:6630773,45510161 -g1,9555:32583029,45510161 -g1,9555:32583029,45510161 -) -] -(1,9555:32583029,45706769:0,0,0 -g1,9555:32583029,45706769 -) -) -] -(1,9555:6630773,47279633:25952256,0,0 -h1,9555:6630773,47279633:25952256,0,0 -) -] -h1,9555:4262630,4025873:0,0,0 +(1,9474:6434165,11171622:26345472,5310741,196608 +[1,9474:6630773,11171622:25952256,5114133,0 +(1,9463:6630773,6341653:25952256,284164,6290 +(1,9462:6630773,6341653:0,0,0 +g1,9462:6630773,6341653 +g1,9462:6630773,6341653 +g1,9462:6303093,6341653 +(1,9462:6303093,6341653:0,0,0 +) +g1,9462:6630773,6341653 +) +h1,9463:7579210,6341653:0,0,0 +k1,9463:32583030,6341653:25003820 +g1,9463:32583030,6341653 +) +(1,9473:6630773,7073367:25952256,410518,82312 +(1,9465:6630773,7073367:0,0,0 +g1,9465:6630773,7073367 +g1,9465:6630773,7073367 +g1,9465:6303093,7073367 +(1,9465:6303093,7073367:0,0,0 +) +g1,9465:6630773,7073367 +) +g1,9473:7579210,7073367 +g1,9473:11372959,7073367 +g1,9473:13902125,7073367 +g1,9473:14534417,7073367 +g1,9473:16747437,7073367 +h1,9473:17063583,7073367:0,0,0 +k1,9473:32583029,7073367:15519446 +g1,9473:32583029,7073367 +) +(1,9473:6630773,7739545:25952256,410518,76021 +h1,9473:6630773,7739545:0,0,0 +g1,9473:7579210,7739545 +g1,9473:7895356,7739545 +g1,9473:8843793,7739545 +g1,9473:12005250,7739545 +h1,9473:12321396,7739545:0,0,0 +k1,9473:32583028,7739545:20261632 +g1,9473:32583028,7739545 +) +(1,9473:6630773,8405723:25952256,404226,76021 +h1,9473:6630773,8405723:0,0,0 +g1,9473:7579210,8405723 +g1,9473:7895356,8405723 +g1,9473:8211502,8405723 +g1,9473:8527648,8405723 +g1,9473:9159940,8405723 +g1,9473:10108378,8405723 +h1,9473:13269835,8405723:0,0,0 +k1,9473:32583029,8405723:19313194 +g1,9473:32583029,8405723 +) +(1,9473:6630773,9071901:25952256,404226,76021 +h1,9473:6630773,9071901:0,0,0 +g1,9473:7579210,9071901 +g1,9473:7895356,9071901 +h1,9473:8211502,9071901:0,0,0 +k1,9473:32583030,9071901:24371528 +g1,9473:32583030,9071901 +) +(1,9473:6630773,9738079:25952256,404226,107478 +h1,9473:6630773,9738079:0,0,0 +g1,9473:7579210,9738079 +g1,9473:7895356,9738079 +h1,9473:14850561,9738079:0,0,0 +k1,9473:32583029,9738079:17732468 +g1,9473:32583029,9738079 +) +(1,9473:6630773,10404257:25952256,404226,76021 +h1,9473:6630773,10404257:0,0,0 +g1,9473:7579210,10404257 +h1,9473:7895356,10404257:0,0,0 +k1,9473:32583028,10404257:24687672 +g1,9473:32583028,10404257 +) +(1,9473:6630773,11070435:25952256,404226,101187 +h1,9473:6630773,11070435:0,0,0 +g1,9473:7579210,11070435 +g1,9473:11056813,11070435 +k1,9473:11056813,11070435:0 +h1,9473:17063581,11070435:0,0,0 +k1,9473:32583029,11070435:15519448 +g1,9473:32583029,11070435 +) +] +) +g1,9474:32583029,11171622 +g1,9474:6630773,11171622 +g1,9474:6630773,11171622 +g1,9474:32583029,11171622 +g1,9474:32583029,11171622 +) +h1,9474:6630773,11368230:0,0,0 +(1,9478:6630773,12609425:25952256,513147,134348 +h1,9477:6630773,12609425:983040,0,0 +k1,9477:9331982,12609425:256716 +k1,9477:10457049,12609425:256715 +k1,9477:12295804,12609425:256716 +k1,9477:13571604,12609425:256715 +k1,9477:16910478,12609425:256716 +k1,9477:17834350,12609425:256716 +k1,9477:19009880,12609425:256715 +k1,9477:21079322,12609425:256716 +k1,9477:23323745,12609425:256716 +k1,9477:25515083,12609425:256715 +k1,9477:28467295,12609425:256716 +(1,9477:28467295,12609425:0,452978,115847 +r1,9477:29880696,12609425:1413401,568825,115847 +k1,9477:28467295,12609425:-1413401 +) +(1,9477:28467295,12609425:1413401,452978,115847 +k1,9477:28467295,12609425:3277 +h1,9477:29877419,12609425:0,411205,112570 +) +k1,9477:30311081,12609425:256715 +k1,9477:31923737,12609425:256716 +k1,9478:32583029,12609425:0 +) +(1,9478:6630773,13450913:25952256,505283,134348 +(1,9477:6630773,13450913:0,452978,115847 +r1,9477:8044174,13450913:1413401,568825,115847 +k1,9477:6630773,13450913:-1413401 +) +(1,9477:6630773,13450913:1413401,452978,115847 +k1,9477:6630773,13450913:3277 +h1,9477:8040897,13450913:0,411205,112570 +) +g1,9477:8243403,13450913 +g1,9477:8974129,13450913 +g1,9477:12263381,13450913 +g1,9477:13078648,13450913 +g1,9477:15556564,13450913 +h1,9477:16527152,13450913:0,0,0 +g1,9477:16726381,13450913 +g1,9477:17734980,13450913 +g1,9477:19432362,13450913 +h1,9477:20627739,13450913:0,0,0 +k1,9478:32583029,13450913:11574526 +g1,9478:32583029,13450913 +) +v1,9480:6630773,14516798:0,393216,0 +(1,9560:6630773,45510161:25952256,31386579,196608 +g1,9560:6630773,45510161 +g1,9560:6630773,45510161 +g1,9560:6434165,45510161 +(1,9560:6434165,45510161:0,31386579,196608 +r1,9560:32779637,45510161:26345472,31583187,196608 +k1,9560:6434165,45510161:-26345472 +) +(1,9560:6434165,45510161:26345472,31386579,196608 +[1,9560:6630773,45510161:25952256,31189971,0 +(1,9482:6630773,14724416:25952256,404226,0 +(1,9481:6630773,14724416:0,0,0 +g1,9481:6630773,14724416 +g1,9481:6630773,14724416 +g1,9481:6303093,14724416 +(1,9481:6303093,14724416:0,0,0 +) +g1,9481:6630773,14724416 +) +h1,9482:7263064,14724416:0,0,0 +k1,9482:32583028,14724416:25319964 +g1,9482:32583028,14724416 +) +(1,9559:6630773,15456130:25952256,410518,107478 +(1,9484:6630773,15456130:0,0,0 +g1,9484:6630773,15456130 +g1,9484:6630773,15456130 +g1,9484:6303093,15456130 +(1,9484:6303093,15456130:0,0,0 +) +g1,9484:6630773,15456130 +) +g1,9559:7579210,15456130 +g1,9559:10424521,15456130 +g1,9559:13585978,15456130 +g1,9559:15482853,15456130 +g1,9559:18012019,15456130 +g1,9559:20857331,15456130 +g1,9559:24334934,15456130 +g1,9559:26547954,15456130 +g1,9559:27180246,15456130 +k1,9559:27180246,15456130:0 +h1,9559:28760975,15456130:0,0,0 +k1,9559:32583029,15456130:3822054 +g1,9559:32583029,15456130 +) +(1,9559:6630773,16122308:25952256,404226,107478 +h1,9559:6630773,16122308:0,0,0 +g1,9559:7579210,16122308 +g1,9559:7895356,16122308 +g1,9559:8211502,16122308 +g1,9559:8527648,16122308 +g1,9559:8843794,16122308 +g1,9559:10740668,16122308 +g1,9559:11372960,16122308 +g1,9559:13269835,16122308 +g1,9559:13902127,16122308 +g1,9559:14534419,16122308 +g1,9559:16747439,16122308 +g1,9559:17379731,16122308 +g1,9559:18012023,16122308 +g1,9559:20225043,16122308 +g1,9559:21173480,16122308 +g1,9559:21805772,16122308 +g1,9559:23702647,16122308 +g1,9559:27496395,16122308 +g1,9559:28128687,16122308 +k1,9559:28128687,16122308:0 +h1,9559:29709416,16122308:0,0,0 +k1,9559:32583029,16122308:2873613 +g1,9559:32583029,16122308 +) +(1,9559:6630773,16788486:25952256,410518,82312 +h1,9559:6630773,16788486:0,0,0 +g1,9559:7579210,16788486 +g1,9559:7895356,16788486 +g1,9559:8211502,16788486 +g1,9559:8527648,16788486 +g1,9559:8843794,16788486 +g1,9559:12005251,16788486 +g1,9559:12637543,16788486 +g1,9559:14534418,16788486 +g1,9559:17063584,16788486 +h1,9559:18328167,16788486:0,0,0 +k1,9559:32583029,16788486:14254862 +g1,9559:32583029,16788486 +) +(1,9559:6630773,17454664:25952256,404226,76021 +h1,9559:6630773,17454664:0,0,0 +g1,9559:7579210,17454664 +h1,9559:7895356,17454664:0,0,0 +k1,9559:32583028,17454664:24687672 +g1,9559:32583028,17454664 +) +(1,9559:6630773,18120842:25952256,379060,6290 +h1,9559:6630773,18120842:0,0,0 +g1,9559:7579210,18120842 +g1,9559:7895356,18120842 +g1,9559:8211502,18120842 +g1,9559:8527648,18120842 +g1,9559:8843794,18120842 +g1,9559:10740668,18120842 +g1,9559:11689106,18120842 +h1,9559:12005252,18120842:0,0,0 +k1,9559:32583028,18120842:20577776 +g1,9559:32583028,18120842 +) +(1,9559:6630773,18787020:25952256,379060,101187 +h1,9559:6630773,18787020:0,0,0 +g1,9559:7579210,18787020 +g1,9559:7895356,18787020 +g1,9559:8211502,18787020 +g1,9559:8527648,18787020 +g1,9559:8843794,18787020 +g1,9559:10740668,18787020 +g1,9559:11689106,18787020 +h1,9559:12005252,18787020:0,0,0 +k1,9559:32583028,18787020:20577776 +g1,9559:32583028,18787020 +) +(1,9559:6630773,19453198:25952256,404226,76021 +h1,9559:6630773,19453198:0,0,0 +g1,9559:7579210,19453198 +g1,9559:7895356,19453198 +g1,9559:8211502,19453198 +g1,9559:8527648,19453198 +g1,9559:8843794,19453198 +g1,9559:9792231,19453198 +g1,9559:10740669,19453198 +h1,9559:14534417,19453198:0,0,0 +k1,9559:32583029,19453198:18048612 +g1,9559:32583029,19453198 +) +(1,9559:6630773,20119376:25952256,410518,101187 +h1,9559:6630773,20119376:0,0,0 +g1,9559:7579210,20119376 +g1,9559:7895356,20119376 +g1,9559:8211502,20119376 +g1,9559:8527648,20119376 +g1,9559:8843794,20119376 +g1,9559:9792231,20119376 +g1,9559:10740669,20119376 +g1,9559:18012020,20119376 +g1,9559:18644312,20119376 +h1,9559:20541186,20119376:0,0,0 +k1,9559:32583029,20119376:12041843 +g1,9559:32583029,20119376 +) +(1,9559:6630773,20785554:25952256,410518,107478 +h1,9559:6630773,20785554:0,0,0 +g1,9559:7579210,20785554 +g1,9559:7895356,20785554 +g1,9559:8211502,20785554 +g1,9559:8527648,20785554 +g1,9559:8843794,20785554 +g1,9559:9476086,20785554 +g1,9559:10424524,20785554 +g1,9559:16431293,20785554 +g1,9559:18960459,20785554 +g1,9559:22121916,20785554 +g1,9559:25599519,20785554 +k1,9559:25599519,20785554:0 +h1,9559:29393267,20785554:0,0,0 +k1,9559:32583029,20785554:3189762 +g1,9559:32583029,20785554 +) +(1,9559:6630773,21451732:25952256,410518,82312 +h1,9559:6630773,21451732:0,0,0 +g1,9559:7579210,21451732 +g1,9559:7895356,21451732 +g1,9559:8211502,21451732 +g1,9559:8527648,21451732 +g1,9559:8843794,21451732 +g1,9559:9159940,21451732 +g1,9559:9476086,21451732 +g1,9559:9792232,21451732 +g1,9559:10108378,21451732 +g1,9559:13585981,21451732 +g1,9559:17063584,21451732 +h1,9559:18012021,21451732:0,0,0 +k1,9559:32583029,21451732:14571008 +g1,9559:32583029,21451732 +) +(1,9559:6630773,22117910:25952256,410518,82312 +h1,9559:6630773,22117910:0,0,0 +g1,9559:7579210,22117910 +g1,9559:7895356,22117910 +g1,9559:8211502,22117910 +g1,9559:8527648,22117910 +g1,9559:8843794,22117910 +g1,9559:9792231,22117910 +g1,9559:10740669,22117910 +g1,9559:13585981,22117910 +h1,9559:14534418,22117910:0,0,0 +k1,9559:32583030,22117910:18048612 +g1,9559:32583030,22117910 +) +(1,9559:6630773,22784088:25952256,410518,101187 +h1,9559:6630773,22784088:0,0,0 +g1,9559:7579210,22784088 +g1,9559:7895356,22784088 +g1,9559:8211502,22784088 +g1,9559:8527648,22784088 +g1,9559:8843794,22784088 +g1,9559:15798999,22784088 +g1,9559:16747437,22784088 +h1,9559:18012020,22784088:0,0,0 +k1,9559:32583029,22784088:14571009 +g1,9559:32583029,22784088 +) +(1,9559:6630773,23450266:25952256,410518,101187 +h1,9559:6630773,23450266:0,0,0 +g1,9559:7579210,23450266 +g1,9559:7895356,23450266 +g1,9559:8211502,23450266 +g1,9559:8527648,23450266 +g1,9559:8843794,23450266 +g1,9559:11689105,23450266 +g1,9559:12637543,23450266 +h1,9559:20541185,23450266:0,0,0 +k1,9559:32583029,23450266:12041844 +g1,9559:32583029,23450266 +) +(1,9559:6630773,24116444:25952256,410518,101187 +h1,9559:6630773,24116444:0,0,0 +g1,9559:7579210,24116444 +g1,9559:7895356,24116444 +g1,9559:8211502,24116444 +g1,9559:8527648,24116444 +g1,9559:8843794,24116444 +g1,9559:9792231,24116444 +g1,9559:10740669,24116444 +g1,9559:13585981,24116444 +h1,9559:18328166,24116444:0,0,0 +k1,9559:32583029,24116444:14254863 +g1,9559:32583029,24116444 +) +(1,9559:6630773,24782622:25952256,410518,76021 +h1,9559:6630773,24782622:0,0,0 +g1,9559:7579210,24782622 +g1,9559:7895356,24782622 +g1,9559:8211502,24782622 +g1,9559:8527648,24782622 +g1,9559:8843794,24782622 +g1,9559:9792231,24782622 +g1,9559:12321397,24782622 +g1,9559:13269834,24782622 +h1,9559:17695874,24782622:0,0,0 +k1,9559:32583029,24782622:14887155 +g1,9559:32583029,24782622 +) +(1,9559:6630773,25448800:25952256,410518,76021 +h1,9559:6630773,25448800:0,0,0 +g1,9559:7579210,25448800 +g1,9559:7895356,25448800 +g1,9559:8211502,25448800 +g1,9559:8527648,25448800 +g1,9559:8843794,25448800 +g1,9559:9159940,25448800 +g1,9559:9476086,25448800 +g1,9559:9792232,25448800 +g1,9559:10108378,25448800 +h1,9559:13269835,25448800:0,0,0 +k1,9559:32583029,25448800:19313194 +g1,9559:32583029,25448800 +) +(1,9559:6630773,26114978:25952256,410518,101187 +h1,9559:6630773,26114978:0,0,0 +g1,9559:7579210,26114978 +g1,9559:7895356,26114978 +g1,9559:8211502,26114978 +g1,9559:8527648,26114978 +g1,9559:8843794,26114978 +g1,9559:10424523,26114978 +g1,9559:11372960,26114978 +g1,9559:13902126,26114978 +g1,9559:14850563,26114978 +h1,9559:16431291,26114978:0,0,0 +k1,9559:32583029,26114978:16151738 +g1,9559:32583029,26114978 +) +(1,9559:6630773,26781156:25952256,410518,107478 +h1,9559:6630773,26781156:0,0,0 +g1,9559:7579210,26781156 +g1,9559:7895356,26781156 +g1,9559:8211502,26781156 +g1,9559:8527648,26781156 +g1,9559:8843794,26781156 +g1,9559:9159940,26781156 +g1,9559:9476086,26781156 +g1,9559:9792232,26781156 +g1,9559:10108378,26781156 +g1,9559:18012020,26781156 +g1,9559:18644312,26781156 +g1,9559:20225041,26781156 +g1,9559:21173478,26781156 +g1,9559:22438061,26781156 +g1,9559:25915664,26781156 +g1,9559:27812538,26781156 +k1,9559:27812538,26781156:0 +h1,9559:29709413,26781156:0,0,0 +k1,9559:32583029,26781156:2873616 +g1,9559:32583029,26781156 +) +(1,9559:6630773,27447334:25952256,404226,82312 +h1,9559:6630773,27447334:0,0,0 +g1,9559:7579210,27447334 +g1,9559:7895356,27447334 +g1,9559:8211502,27447334 +g1,9559:8527648,27447334 +g1,9559:8843794,27447334 +g1,9559:9159940,27447334 +g1,9559:9476086,27447334 +g1,9559:9792232,27447334 +g1,9559:10108378,27447334 +g1,9559:10424524,27447334 +g1,9559:10740670,27447334 +g1,9559:11056816,27447334 +g1,9559:11372962,27447334 +g1,9559:14218274,27447334 +g1,9559:16431294,27447334 +g1,9559:17063586,27447334 +h1,9559:18012023,27447334:0,0,0 +k1,9559:32583029,27447334:14571006 +g1,9559:32583029,27447334 +) +(1,9559:6630773,28113512:25952256,410518,82312 +h1,9559:6630773,28113512:0,0,0 +g1,9559:7579210,28113512 +g1,9559:7895356,28113512 +g1,9559:8211502,28113512 +g1,9559:8527648,28113512 +g1,9559:8843794,28113512 +g1,9559:9792231,28113512 +g1,9559:10740669,28113512 +g1,9559:13585981,28113512 +h1,9559:16115146,28113512:0,0,0 +k1,9559:32583029,28113512:16467883 +g1,9559:32583029,28113512 +) +(1,9559:6630773,28779690:25952256,410518,101187 +h1,9559:6630773,28779690:0,0,0 +g1,9559:7579210,28779690 +g1,9559:7895356,28779690 +g1,9559:8211502,28779690 +g1,9559:8527648,28779690 +g1,9559:8843794,28779690 +g1,9559:9476086,28779690 +g1,9559:10424524,28779690 +g1,9559:16431293,28779690 +h1,9559:19592750,28779690:0,0,0 +k1,9559:32583029,28779690:12990279 +g1,9559:32583029,28779690 +) +(1,9559:6630773,29445868:25952256,410518,107478 +h1,9559:6630773,29445868:0,0,0 +g1,9559:7579210,29445868 +g1,9559:7895356,29445868 +g1,9559:8211502,29445868 +g1,9559:8527648,29445868 +g1,9559:8843794,29445868 +g1,9559:9476086,29445868 +g1,9559:10424524,29445868 +h1,9559:19276603,29445868:0,0,0 +k1,9559:32583029,29445868:13306426 +g1,9559:32583029,29445868 +) +(1,9559:6630773,30112046:25952256,410518,76021 +h1,9559:6630773,30112046:0,0,0 +g1,9559:7579210,30112046 +g1,9559:7895356,30112046 +g1,9559:8211502,30112046 +g1,9559:8527648,30112046 +g1,9559:8843794,30112046 +g1,9559:9792231,30112046 +g1,9559:13902125,30112046 +g1,9559:14850562,30112046 +h1,9559:19592747,30112046:0,0,0 +k1,9559:32583029,30112046:12990282 +g1,9559:32583029,30112046 +) +(1,9559:6630773,30778224:25952256,404226,107478 +h1,9559:6630773,30778224:0,0,0 +g1,9559:7579210,30778224 +g1,9559:7895356,30778224 +g1,9559:8211502,30778224 +g1,9559:8527648,30778224 +g1,9559:8843794,30778224 +g1,9559:9159940,30778224 +g1,9559:9476086,30778224 +g1,9559:9792232,30778224 +g1,9559:10108378,30778224 +g1,9559:15166710,30778224 +g1,9559:16747439,30778224 +g1,9559:17695876,30778224 +g1,9559:18328168,30778224 +g1,9559:20857334,30778224 +h1,9559:23386499,30778224:0,0,0 +k1,9559:32583029,30778224:9196530 +g1,9559:32583029,30778224 +) +(1,9559:6630773,31444402:25952256,410518,76021 +h1,9559:6630773,31444402:0,0,0 +g1,9559:7579210,31444402 +g1,9559:7895356,31444402 +g1,9559:8211502,31444402 +g1,9559:8527648,31444402 +g1,9559:8843794,31444402 +g1,9559:11056814,31444402 +g1,9559:12005252,31444402 +h1,9559:17063583,31444402:0,0,0 +k1,9559:32583029,31444402:15519446 +g1,9559:32583029,31444402 +) +(1,9559:6630773,32110580:25952256,404226,101187 +h1,9559:6630773,32110580:0,0,0 +g1,9559:7579210,32110580 +g1,9559:7895356,32110580 +g1,9559:8211502,32110580 +g1,9559:8527648,32110580 +g1,9559:8843794,32110580 +g1,9559:10108377,32110580 +g1,9559:11056815,32110580 +h1,9559:14850563,32110580:0,0,0 +k1,9559:32583029,32110580:17732466 +g1,9559:32583029,32110580 +) +(1,9559:6630773,32776758:25952256,410518,101187 +h1,9559:6630773,32776758:0,0,0 +g1,9559:7579210,32776758 +g1,9559:7895356,32776758 +g1,9559:8211502,32776758 +g1,9559:8527648,32776758 +g1,9559:8843794,32776758 +g1,9559:9792231,32776758 +g1,9559:10740669,32776758 +g1,9559:11689106,32776758 +h1,9559:13269834,32776758:0,0,0 +k1,9559:32583030,32776758:19313196 +g1,9559:32583030,32776758 +) +(1,9559:6630773,33442936:25952256,404226,101187 +h1,9559:6630773,33442936:0,0,0 +g1,9559:7579210,33442936 +g1,9559:7895356,33442936 +g1,9559:8211502,33442936 +g1,9559:8527648,33442936 +g1,9559:8843794,33442936 +g1,9559:9159940,33442936 +g1,9559:9476086,33442936 +g1,9559:9792232,33442936 +g1,9559:10108378,33442936 +h1,9559:12321398,33442936:0,0,0 +k1,9559:32583030,33442936:20261632 +g1,9559:32583030,33442936 +) +(1,9559:6630773,34109114:25952256,404226,107478 +h1,9559:6630773,34109114:0,0,0 +g1,9559:7579210,34109114 +g1,9559:7895356,34109114 +g1,9559:8211502,34109114 +g1,9559:8527648,34109114 +g1,9559:8843794,34109114 +g1,9559:10424523,34109114 +h1,9559:13269834,34109114:0,0,0 +k1,9559:32583030,34109114:19313196 +g1,9559:32583030,34109114 +) +(1,9559:6630773,34775292:25952256,410518,76021 +h1,9559:6630773,34775292:0,0,0 +g1,9559:7579210,34775292 +g1,9559:7895356,34775292 +g1,9559:8211502,34775292 +g1,9559:8527648,34775292 +g1,9559:8843794,34775292 +g1,9559:9792231,34775292 +g1,9559:15798999,34775292 +h1,9559:16115145,34775292:0,0,0 +k1,9559:32583029,34775292:16467884 +g1,9559:32583029,34775292 +) +(1,9559:6630773,35441470:25952256,410518,76021 +h1,9559:6630773,35441470:0,0,0 +g1,9559:7579210,35441470 +g1,9559:7895356,35441470 +g1,9559:8211502,35441470 +g1,9559:8527648,35441470 +g1,9559:8843794,35441470 +g1,9559:9159940,35441470 +g1,9559:9476086,35441470 +g1,9559:9792232,35441470 +g1,9559:10108378,35441470 +g1,9559:11056815,35441470 +h1,9559:12953689,35441470:0,0,0 +k1,9559:32583029,35441470:19629340 +g1,9559:32583029,35441470 +) +(1,9559:6630773,36107648:25952256,410518,76021 +h1,9559:6630773,36107648:0,0,0 +g1,9559:7579210,36107648 +g1,9559:7895356,36107648 +g1,9559:8211502,36107648 +g1,9559:8527648,36107648 +g1,9559:8843794,36107648 +g1,9559:9159940,36107648 +g1,9559:9476086,36107648 +g1,9559:9792232,36107648 +g1,9559:10108378,36107648 +g1,9559:10424524,36107648 +g1,9559:10740670,36107648 +g1,9559:11056816,36107648 +g1,9559:11372962,36107648 +g1,9559:13585982,36107648 +g1,9559:14534420,36107648 +h1,9559:19908897,36107648:0,0,0 +k1,9559:32583029,36107648:12674132 +g1,9559:32583029,36107648 +) +(1,9559:6630773,36773826:25952256,410518,101187 +h1,9559:6630773,36773826:0,0,0 +g1,9559:7579210,36773826 +g1,9559:7895356,36773826 +g1,9559:8211502,36773826 +g1,9559:8527648,36773826 +g1,9559:8843794,36773826 +g1,9559:9159940,36773826 +g1,9559:9476086,36773826 +g1,9559:9792232,36773826 +g1,9559:10108378,36773826 +g1,9559:11056815,36773826 +g1,9559:15482855,36773826 +g1,9559:16431292,36773826 +h1,9559:17379729,36773826:0,0,0 +k1,9559:32583029,36773826:15203300 +g1,9559:32583029,36773826 +) +(1,9559:6630773,37440004:25952256,410518,107478 +h1,9559:6630773,37440004:0,0,0 +k1,9559:7473828,37440004:210764 +k1,9559:7684592,37440004:210764 +k1,9559:7895356,37440004:210764 +k1,9559:8106120,37440004:210764 +k1,9559:8316884,37440004:210764 +k1,9559:8527648,37440004:210764 +k1,9559:8738412,37440004:210764 +k1,9559:8949176,37440004:210764 +k1,9559:9159940,37440004:210764 +k1,9559:9370704,37440004:210764 +k1,9559:9581468,37440004:210764 +k1,9559:9792232,37440004:210764 +k1,9559:10002996,37440004:210764 +k1,9559:16852819,37440004:210764 +k1,9559:17695874,37440004:210764 +k1,9559:20119658,37440004:210764 +k1,9559:20962713,37440004:210764 +k1,9559:22121914,37440004:210764 +k1,9559:24229552,37440004:210764 +k1,9559:26021044,37440004:210764 +k1,9559:26864099,37440004:210764 +k1,9559:29287883,37440004:210764 +k1,9559:30130938,37440004:210764 +k1,9559:30130938,37440004:0 +h1,9559:34873124,37440004:0,0,0 +k1,9559:34873124,37440004:0 +k1,9559:34873124,37440004:0 +) +(1,9559:6630773,38106182:25952256,410518,101187 +h1,9559:6630773,38106182:0,0,0 +g1,9559:7579210,38106182 +g1,9559:7895356,38106182 +g1,9559:8211502,38106182 +g1,9559:8527648,38106182 +g1,9559:8843794,38106182 +g1,9559:9159940,38106182 +g1,9559:9476086,38106182 +g1,9559:9792232,38106182 +g1,9559:10108378,38106182 +g1,9559:10424524,38106182 +g1,9559:10740670,38106182 +g1,9559:11056816,38106182 +g1,9559:11372962,38106182 +g1,9559:11689108,38106182 +g1,9559:12005254,38106182 +g1,9559:12321400,38106182 +g1,9559:12637546,38106182 +g1,9559:17063586,38106182 +g1,9559:18644315,38106182 +g1,9559:20857335,38106182 +g1,9559:21489627,38106182 +h1,9559:22438064,38106182:0,0,0 +k1,9559:32583029,38106182:10144965 +g1,9559:32583029,38106182 +) +(1,9559:6630773,38772360:25952256,404226,76021 +h1,9559:6630773,38772360:0,0,0 +g1,9559:7579210,38772360 +g1,9559:7895356,38772360 +g1,9559:8211502,38772360 +g1,9559:8527648,38772360 +g1,9559:8843794,38772360 +h1,9559:9159940,38772360:0,0,0 +k1,9559:32583028,38772360:23423088 +g1,9559:32583028,38772360 +) +(1,9559:6630773,39438538:25952256,410518,101187 +h1,9559:6630773,39438538:0,0,0 +g1,9559:7579210,39438538 +g1,9559:7895356,39438538 +g1,9559:8211502,39438538 +g1,9559:8527648,39438538 +g1,9559:8843794,39438538 +g1,9559:9792231,39438538 +g1,9559:16431291,39438538 +h1,9559:16747437,39438538:0,0,0 +k1,9559:32583029,39438538:15835592 +g1,9559:32583029,39438538 +) +(1,9559:6630773,40104716:25952256,379060,7863 +h1,9559:6630773,40104716:0,0,0 +g1,9559:7579210,40104716 +g1,9559:7895356,40104716 +g1,9559:8211502,40104716 +g1,9559:8527648,40104716 +g1,9559:8843794,40104716 +g1,9559:9159940,40104716 +g1,9559:9476086,40104716 +g1,9559:9792232,40104716 +g1,9559:10108378,40104716 +g1,9559:10740670,40104716 +g1,9559:11689108,40104716 +h1,9559:12953691,40104716:0,0,0 +k1,9559:32583029,40104716:19629338 +g1,9559:32583029,40104716 +) +(1,9559:6630773,40770894:25952256,410518,82312 +h1,9559:6630773,40770894:0,0,0 +g1,9559:7579210,40770894 +g1,9559:7895356,40770894 +g1,9559:8211502,40770894 +g1,9559:8527648,40770894 +g1,9559:8843794,40770894 +g1,9559:9159940,40770894 +g1,9559:9476086,40770894 +g1,9559:9792232,40770894 +g1,9559:10108378,40770894 +g1,9559:10740670,40770894 +g1,9559:11689108,40770894 +g1,9559:17379731,40770894 +g1,9559:18012023,40770894 +g1,9559:18960460,40770894 +g1,9559:20857334,40770894 +g1,9559:26231811,40770894 +k1,9559:26231811,40770894:0 +h1,9559:26864103,40770894:0,0,0 +k1,9559:32583029,40770894:5718926 +g1,9559:32583029,40770894 +) +(1,9559:6630773,41437072:25952256,410518,101187 +h1,9559:6630773,41437072:0,0,0 +g1,9559:7579210,41437072 +g1,9559:7895356,41437072 +g1,9559:8211502,41437072 +g1,9559:8527648,41437072 +g1,9559:8843794,41437072 +g1,9559:9159940,41437072 +g1,9559:9476086,41437072 +g1,9559:9792232,41437072 +g1,9559:10108378,41437072 +g1,9559:10424524,41437072 +g1,9559:10740670,41437072 +g1,9559:11056816,41437072 +g1,9559:11372962,41437072 +g1,9559:14218273,41437072 +g1,9559:15799002,41437072 +g1,9559:19276605,41437072 +g1,9559:22438062,41437072 +g1,9559:23070354,41437072 +g1,9559:24018792,41437072 +g1,9559:28444832,41437072 +g1,9559:29077124,41437072 +g1,9559:29709416,41437072 +h1,9559:30025562,41437072:0,0,0 +k1,9559:32583029,41437072:2557467 +g1,9559:32583029,41437072 +) +(1,9559:6630773,42103250:25952256,410518,107478 +h1,9559:6630773,42103250:0,0,0 +g1,9559:7579210,42103250 +g1,9559:7895356,42103250 +g1,9559:8211502,42103250 +g1,9559:8527648,42103250 +g1,9559:8843794,42103250 +g1,9559:9159940,42103250 +g1,9559:9476086,42103250 +g1,9559:9792232,42103250 +g1,9559:10108378,42103250 +g1,9559:10424524,42103250 +g1,9559:10740670,42103250 +g1,9559:11056816,42103250 +g1,9559:11372962,42103250 +g1,9559:12321400,42103250 +g1,9559:14850566,42103250 +g1,9559:15482858,42103250 +g1,9559:16431296,42103250 +g1,9559:18012025,42103250 +g1,9559:18644317,42103250 +g1,9559:19908900,42103250 +g1,9559:23702648,42103250 +g1,9559:24334940,42103250 +g1,9559:25283377,42103250 +g1,9559:29709417,42103250 +g1,9559:31606291,42103250 +h1,9559:32238582,42103250:0,0,0 +k1,9559:32583029,42103250:344447 +g1,9559:32583029,42103250 +) +(1,9559:6630773,42769428:25952256,404226,101187 +h1,9559:6630773,42769428:0,0,0 +g1,9559:7579210,42769428 +g1,9559:7895356,42769428 +g1,9559:8211502,42769428 +g1,9559:8527648,42769428 +g1,9559:8843794,42769428 +g1,9559:9159940,42769428 +g1,9559:9476086,42769428 +g1,9559:9792232,42769428 +g1,9559:10108378,42769428 +g1,9559:10424524,42769428 +g1,9559:10740670,42769428 +g1,9559:11056816,42769428 +g1,9559:11372962,42769428 +g1,9559:12321399,42769428 +g1,9559:13902128,42769428 +h1,9559:14850565,42769428:0,0,0 +k1,9559:32583029,42769428:17732464 +g1,9559:32583029,42769428 +) +(1,9559:6630773,43435606:25952256,410518,76021 +h1,9559:6630773,43435606:0,0,0 +g1,9559:7579210,43435606 +g1,9559:7895356,43435606 +g1,9559:8211502,43435606 +g1,9559:8527648,43435606 +g1,9559:8843794,43435606 +g1,9559:9159940,43435606 +g1,9559:9476086,43435606 +g1,9559:9792232,43435606 +g1,9559:10108378,43435606 +g1,9559:11056815,43435606 +g1,9559:17063583,43435606 +h1,9559:17379729,43435606:0,0,0 +k1,9559:32583029,43435606:15203300 +g1,9559:32583029,43435606 +) +(1,9559:6630773,44101784:25952256,410518,31456 +h1,9559:6630773,44101784:0,0,0 +g1,9559:7579210,44101784 +g1,9559:7895356,44101784 +g1,9559:8211502,44101784 +g1,9559:8527648,44101784 +g1,9559:8843794,44101784 +g1,9559:9159940,44101784 +g1,9559:9476086,44101784 +g1,9559:9792232,44101784 +g1,9559:10108378,44101784 +g1,9559:10424524,44101784 +g1,9559:10740670,44101784 +g1,9559:11056816,44101784 +g1,9559:11372962,44101784 +g1,9559:16431293,44101784 +g1,9559:17379731,44101784 +h1,9559:19276605,44101784:0,0,0 +k1,9559:32583029,44101784:13306424 +g1,9559:32583029,44101784 +) +(1,9559:6630773,44767962:25952256,410518,101187 +h1,9559:6630773,44767962:0,0,0 +g1,9559:7579210,44767962 +g1,9559:7895356,44767962 +g1,9559:8211502,44767962 +g1,9559:8527648,44767962 +g1,9559:8843794,44767962 +g1,9559:9159940,44767962 +g1,9559:9476086,44767962 +g1,9559:9792232,44767962 +g1,9559:10108378,44767962 +g1,9559:10424524,44767962 +g1,9559:10740670,44767962 +g1,9559:11056816,44767962 +g1,9559:11372962,44767962 +g1,9559:15166710,44767962 +g1,9559:16115148,44767962 +g1,9559:16747440,44767962 +g1,9559:17379732,44767962 +h1,9559:19276606,44767962:0,0,0 +k1,9559:32583029,44767962:13306423 +g1,9559:32583029,44767962 +) +(1,9559:6630773,45434140:25952256,404226,76021 +h1,9559:6630773,45434140:0,0,0 +g1,9559:7579210,45434140 +g1,9559:7895356,45434140 +g1,9559:8211502,45434140 +g1,9559:8527648,45434140 +g1,9559:8843794,45434140 +g1,9559:9159940,45434140 +g1,9559:9476086,45434140 +g1,9559:9792232,45434140 +g1,9559:10108378,45434140 +h1,9559:10424524,45434140:0,0,0 +k1,9559:32583028,45434140:22158504 +g1,9559:32583028,45434140 +) +] +) +g1,9560:32583029,45510161 +g1,9560:6630773,45510161 +g1,9560:6630773,45510161 +g1,9560:32583029,45510161 +g1,9560:32583029,45510161 +) +] +(1,9560:32583029,45706769:0,0,0 +g1,9560:32583029,45706769 +) +) +] +(1,9560:6630773,47279633:25952256,0,0 +h1,9560:6630773,47279633:25952256,0,0 +) +] +h1,9560:4262630,4025873:0,0,0 ] !29623 }179 -Input:1231:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1232:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1233:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1234:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1235:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 +Input:1227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 {180 -[1,9600:4262630,47279633:28320399,43253760,0 -(1,9600:4262630,4025873:0,0,0 -[1,9600:-473657,4025873:25952256,0,0 -(1,9600:-473657,-710414:25952256,0,0 -h1,9600:-473657,-710414:0,0,0 -(1,9600:-473657,-710414:0,0,0 -(1,9600:-473657,-710414:0,0,0 -g1,9600:-473657,-710414 -(1,9600:-473657,-710414:65781,0,65781 -g1,9600:-407876,-710414 -[1,9600:-407876,-644633:0,0,0 +[1,9605:4262630,47279633:28320399,43253760,0 +(1,9605:4262630,4025873:0,0,0 +[1,9605:-473657,4025873:25952256,0,0 +(1,9605:-473657,-710414:25952256,0,0 +h1,9605:-473657,-710414:0,0,0 +(1,9605:-473657,-710414:0,0,0 +(1,9605:-473657,-710414:0,0,0 +g1,9605:-473657,-710414 +(1,9605:-473657,-710414:65781,0,65781 +g1,9605:-407876,-710414 +[1,9605:-407876,-644633:0,0,0 ] ) -k1,9600:-473657,-710414:-65781 +k1,9605:-473657,-710414:-65781 ) ) -k1,9600:25478599,-710414:25952256 -g1,9600:25478599,-710414 +k1,9605:25478599,-710414:25952256 +g1,9605:25478599,-710414 ) ] ) -[1,9600:6630773,47279633:25952256,43253760,0 -[1,9600:6630773,4812305:25952256,786432,0 -(1,9600:6630773,4812305:25952256,513147,134348 -(1,9600:6630773,4812305:25952256,513147,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,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9600:2537886,2439708:1179648,16384,0 +[1,9605:6630773,47279633:25952256,43253760,0 +[1,9605:6630773,4812305:25952256,786432,0 +(1,9605:6630773,4812305:25952256,513147,134348 +(1,9605:6630773,4812305:25952256,513147,134348 +g1,9605:3078558,4812305 +[1,9605:3078558,4812305:0,0,0 +(1,9605:3078558,2439708:0,1703936,0 +k1,9605:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9605:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9600:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9605:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9600:3078558,4812305:0,0,0 -(1,9600:3078558,2439708:0,1703936,0 -g1,9600:29030814,2439708 -g1,9600:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9600:36151628,1915420:16384,1179648,0 +[1,9605:3078558,4812305:0,0,0 +(1,9605:3078558,2439708:0,1703936,0 +g1,9605:29030814,2439708 +g1,9605:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9605:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9600:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9605:37855564,2439708:1179648,16384,0 ) ) -k1,9600:3078556,2439708:-34777008 +k1,9605:3078556,2439708:-34777008 ) ] -[1,9600:3078558,4812305:0,0,0 -(1,9600:3078558,49800853:0,16384,2228224 -k1,9600:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9600:2537886,49800853:1179648,16384,0 +[1,9605:3078558,4812305:0,0,0 +(1,9605:3078558,49800853:0,16384,2228224 +k1,9605:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9605:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9600:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9605:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) -) -] -[1,9600:3078558,4812305:0,0,0 -(1,9600:3078558,49800853:0,16384,2228224 -g1,9600:29030814,49800853 -g1,9600:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9600:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] -) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9600:37855564,49800853:1179648,16384,0 -) -) -k1,9600:3078556,49800853:-34777008 -) -] -g1,9600:6630773,4812305 -g1,9600:6630773,4812305 -g1,9600:9499939,4812305 -g1,9600:12584718,4812305 -g1,9600:13994397,4812305 -g1,9600:17201073,4812305 -k1,9600:31387652,4812305:14186579 -) -) -] -[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,9555:6630773,6254097:0,393216,0 -(1,9555:6630773,24549708:25952256,18688827,196608 -g1,9555:6630773,24549708 -g1,9555:6630773,24549708 -g1,9555:6434165,24549708 -(1,9555:6434165,24549708:0,18688827,196608 -r1,9555:32779637,24549708:26345472,18885435,196608 -k1,9555:6434165,24549708:-26345472 -) -(1,9555:6434165,24549708:26345472,18688827,196608 -[1,9555:6630773,24549708:25952256,18492219,0 -(1,9554:6630773,6461715:25952256,404226,76021 -h1,9554:6630773,6461715:0,0,0 -g1,9554:7579210,6461715 -g1,9554:7895356,6461715 -g1,9554:8211502,6461715 -g1,9554:8527648,6461715 -g1,9554:8843794,6461715 -h1,9554:9159940,6461715:0,0,0 -k1,9554:32583028,6461715:23423088 -g1,9554:32583028,6461715 -) -(1,9554:6630773,7127893:25952256,404226,76021 -h1,9554:6630773,7127893:0,0,0 -g1,9554:7579210,7127893 -g1,9554:7895356,7127893 -g1,9554:8211502,7127893 -g1,9554:8527648,7127893 -g1,9554:8843794,7127893 -g1,9554:10424523,7127893 -h1,9554:10740669,7127893:0,0,0 -k1,9554:32583029,7127893:21842360 -g1,9554:32583029,7127893 -) -(1,9554:6630773,7794071:25952256,410518,82312 -h1,9554:6630773,7794071:0,0,0 -g1,9554:7579210,7794071 -g1,9554:7895356,7794071 -g1,9554:8211502,7794071 -g1,9554:8527648,7794071 -g1,9554:8843794,7794071 -g1,9554:9159940,7794071 -g1,9554:9476086,7794071 -g1,9554:9792232,7794071 -g1,9554:10108378,7794071 -g1,9554:10740670,7794071 -g1,9554:11689108,7794071 -g1,9554:17063585,7794071 -g1,9554:18328168,7794071 -h1,9554:21489625,7794071:0,0,0 -k1,9554:32583029,7794071:11093404 -g1,9554:32583029,7794071 -) -(1,9554:6630773,8460249:25952256,410518,76021 -h1,9554:6630773,8460249:0,0,0 -g1,9554:7579210,8460249 -g1,9554:7895356,8460249 -g1,9554:8211502,8460249 -g1,9554:8527648,8460249 -g1,9554:8843794,8460249 -g1,9554:9159940,8460249 -g1,9554:9476086,8460249 -g1,9554:9792232,8460249 -g1,9554:10108378,8460249 -g1,9554:10740670,8460249 -g1,9554:11689108,8460249 -g1,9554:12637545,8460249 -h1,9554:16431293,8460249:0,0,0 -k1,9554:32583029,8460249:16151736 -g1,9554:32583029,8460249 -) -(1,9554:6630773,9126427:25952256,410518,107478 -h1,9554:6630773,9126427:0,0,0 -g1,9554:7579210,9126427 -g1,9554:7895356,9126427 -g1,9554:8211502,9126427 -g1,9554:8527648,9126427 -g1,9554:8843794,9126427 -g1,9554:9159940,9126427 -g1,9554:9476086,9126427 -g1,9554:9792232,9126427 -g1,9554:10108378,9126427 -g1,9554:10424524,9126427 -g1,9554:10740670,9126427 -g1,9554:11056816,9126427 -g1,9554:11372962,9126427 -g1,9554:14534419,9126427 -g1,9554:15482857,9126427 -g1,9554:17695877,9126427 -g1,9554:18328169,9126427 -g1,9554:20857335,9126427 -g1,9554:24651083,9126427 -g1,9554:25283375,9126427 -k1,9554:25283375,9126427:0 -h1,9554:29077123,9126427:0,0,0 -k1,9554:32583029,9126427:3505906 -g1,9554:32583029,9126427 -) -(1,9554:6630773,9792605:25952256,404226,76021 -h1,9554:6630773,9792605:0,0,0 -g1,9554:7579210,9792605 -g1,9554:7895356,9792605 -g1,9554:8211502,9792605 -g1,9554:8527648,9792605 -g1,9554:8843794,9792605 -g1,9554:9159940,9792605 -g1,9554:9476086,9792605 -g1,9554:9792232,9792605 -g1,9554:10108378,9792605 -g1,9554:10424524,9792605 -g1,9554:10740670,9792605 -g1,9554:11056816,9792605 -g1,9554:11372962,9792605 -g1,9554:11689108,9792605 -g1,9554:12005254,9792605 -g1,9554:12321400,9792605 -g1,9554:12637546,9792605 -h1,9554:13902129,9792605:0,0,0 -k1,9554:32583029,9792605:18680900 -g1,9554:32583029,9792605 -) -(1,9554:6630773,10458783:25952256,410518,107478 -h1,9554:6630773,10458783:0,0,0 -g1,9554:7579210,10458783 -g1,9554:7895356,10458783 -g1,9554:8211502,10458783 -g1,9554:8527648,10458783 -g1,9554:8843794,10458783 -g1,9554:9159940,10458783 -g1,9554:9476086,10458783 -g1,9554:9792232,10458783 -g1,9554:10108378,10458783 -g1,9554:11689107,10458783 -g1,9554:15166710,10458783 -g1,9554:16115148,10458783 -g1,9554:17063586,10458783 -g1,9554:19276606,10458783 -g1,9554:19908898,10458783 -g1,9554:22438064,10458783 -g1,9554:26231812,10458783 -g1,9554:26864104,10458783 -k1,9554:26864104,10458783:0 -h1,9554:30657852,10458783:0,0,0 -k1,9554:32583029,10458783:1925177 -g1,9554:32583029,10458783 -) -(1,9554:6630773,11124961:25952256,404226,76021 -h1,9554:6630773,11124961:0,0,0 -g1,9554:7579210,11124961 -g1,9554:7895356,11124961 -g1,9554:8211502,11124961 -g1,9554:8527648,11124961 -g1,9554:8843794,11124961 -g1,9554:9159940,11124961 -g1,9554:9476086,11124961 -g1,9554:9792232,11124961 -g1,9554:10108378,11124961 -g1,9554:10424524,11124961 -g1,9554:10740670,11124961 -g1,9554:11056816,11124961 -g1,9554:11372962,11124961 -h1,9554:12637545,11124961:0,0,0 -k1,9554:32583029,11124961:19945484 -g1,9554:32583029,11124961 -) -(1,9554:6630773,11791139:25952256,404226,76021 -h1,9554:6630773,11791139:0,0,0 -g1,9554:7579210,11791139 -g1,9554:7895356,11791139 -g1,9554:8211502,11791139 -g1,9554:8527648,11791139 -g1,9554:8843794,11791139 -h1,9554:9159940,11791139:0,0,0 -k1,9554:32583028,11791139:23423088 -g1,9554:32583028,11791139 -) -(1,9554:6630773,12457317:25952256,410518,82312 -h1,9554:6630773,12457317:0,0,0 -g1,9554:7579210,12457317 -g1,9554:7895356,12457317 -g1,9554:8211502,12457317 -g1,9554:8527648,12457317 -g1,9554:8843794,12457317 -g1,9554:11689105,12457317 -g1,9554:12637543,12457317 -g1,9554:14218272,12457317 -g1,9554:16115146,12457317 -g1,9554:18328166,12457317 -h1,9554:19908894,12457317:0,0,0 -k1,9554:32583029,12457317:12674135 -g1,9554:32583029,12457317 -) -(1,9554:6630773,13123495:25952256,410518,82312 -h1,9554:6630773,13123495:0,0,0 -g1,9554:7579210,13123495 -g1,9554:7895356,13123495 -g1,9554:8211502,13123495 -g1,9554:8527648,13123495 -g1,9554:8843794,13123495 -g1,9554:12637542,13123495 -g1,9554:13585980,13123495 -g1,9554:16431292,13123495 -h1,9554:20225040,13123495:0,0,0 -k1,9554:32583029,13123495:12357989 -g1,9554:32583029,13123495 -) -(1,9554:6630773,13789673:25952256,410518,31456 -h1,9554:6630773,13789673:0,0,0 -g1,9554:7579210,13789673 -g1,9554:7895356,13789673 -g1,9554:8211502,13789673 -g1,9554:8527648,13789673 -g1,9554:8843794,13789673 -g1,9554:11689105,13789673 -g1,9554:12637543,13789673 -h1,9554:14534417,13789673:0,0,0 -k1,9554:32583029,13789673:18048612 -g1,9554:32583029,13789673 -) -(1,9554:6630773,14455851:25952256,410518,82312 -h1,9554:6630773,14455851:0,0,0 -g1,9554:7579210,14455851 -g1,9554:7895356,14455851 -g1,9554:8211502,14455851 -g1,9554:8527648,14455851 -g1,9554:8843794,14455851 -g1,9554:12637542,14455851 -g1,9554:13585980,14455851 -g1,9554:16115146,14455851 -h1,9554:19908894,14455851:0,0,0 -k1,9554:32583029,14455851:12674135 -g1,9554:32583029,14455851 -) -(1,9554:6630773,15122029:25952256,410518,107478 -h1,9554:6630773,15122029:0,0,0 -g1,9554:7579210,15122029 -g1,9554:7895356,15122029 -g1,9554:8211502,15122029 -g1,9554:8527648,15122029 -g1,9554:8843794,15122029 -g1,9554:12005251,15122029 -g1,9554:12953689,15122029 -g1,9554:18012021,15122029 -h1,9554:18960458,15122029:0,0,0 -k1,9554:32583029,15122029:13622571 -g1,9554:32583029,15122029 -) -(1,9554:6630773,15788207:25952256,410518,31456 -h1,9554:6630773,15788207:0,0,0 -g1,9554:7579210,15788207 -g1,9554:7895356,15788207 -g1,9554:8211502,15788207 -g1,9554:8527648,15788207 -g1,9554:8843794,15788207 -g1,9554:11056814,15788207 -g1,9554:12005252,15788207 -h1,9554:12637543,15788207:0,0,0 -k1,9554:32583029,15788207:19945486 -g1,9554:32583029,15788207 -) -(1,9554:6630773,16454385:25952256,410518,31456 -h1,9554:6630773,16454385:0,0,0 -g1,9554:7579210,16454385 -g1,9554:7895356,16454385 -g1,9554:8211502,16454385 -g1,9554:8527648,16454385 -g1,9554:8843794,16454385 -g1,9554:11372960,16454385 -g1,9554:12321398,16454385 -h1,9554:12953689,16454385:0,0,0 -k1,9554:32583029,16454385:19629340 -g1,9554:32583029,16454385 -) -(1,9554:6630773,17120563:25952256,410518,76021 -h1,9554:6630773,17120563:0,0,0 -g1,9554:7579210,17120563 -g1,9554:7895356,17120563 -g1,9554:8211502,17120563 -g1,9554:8527648,17120563 -g1,9554:8843794,17120563 -g1,9554:9792231,17120563 -h1,9554:12005251,17120563:0,0,0 -k1,9554:32583029,17120563:20577778 -g1,9554:32583029,17120563 -) -(1,9554:6630773,17786741:25952256,410518,31456 -h1,9554:6630773,17786741:0,0,0 -g1,9554:7579210,17786741 -g1,9554:7895356,17786741 -g1,9554:8211502,17786741 -g1,9554:8527648,17786741 -g1,9554:8843794,17786741 -g1,9554:9159940,17786741 -g1,9554:9476086,17786741 -g1,9554:9792232,17786741 -g1,9554:10108378,17786741 -g1,9554:12637544,17786741 -g1,9554:13585982,17786741 -h1,9554:14218273,17786741:0,0,0 -k1,9554:32583029,17786741:18364756 -g1,9554:32583029,17786741 -) -(1,9554:6630773,18452919:25952256,410518,76021 -h1,9554:6630773,18452919:0,0,0 -g1,9554:7579210,18452919 -g1,9554:7895356,18452919 -g1,9554:8211502,18452919 -g1,9554:8527648,18452919 -g1,9554:8843794,18452919 -g1,9554:9792231,18452919 -h1,9554:12005251,18452919:0,0,0 -k1,9554:32583029,18452919:20577778 -g1,9554:32583029,18452919 -) -(1,9554:6630773,19119097:25952256,410518,31456 -h1,9554:6630773,19119097:0,0,0 -g1,9554:7579210,19119097 -g1,9554:7895356,19119097 -g1,9554:8211502,19119097 -g1,9554:8527648,19119097 -g1,9554:8843794,19119097 -g1,9554:9159940,19119097 -g1,9554:9476086,19119097 -g1,9554:9792232,19119097 -g1,9554:10108378,19119097 -g1,9554:11372961,19119097 -g1,9554:12321399,19119097 -h1,9554:12637545,19119097:0,0,0 -k1,9554:32583029,19119097:19945484 -g1,9554:32583029,19119097 -) -(1,9554:6630773,19785275:25952256,410518,101187 -h1,9554:6630773,19785275:0,0,0 -g1,9554:7579210,19785275 -g1,9554:7895356,19785275 -g1,9554:8211502,19785275 -g1,9554:8527648,19785275 -g1,9554:8843794,19785275 -g1,9554:9792231,19785275 -h1,9554:12005251,19785275:0,0,0 -k1,9554:32583029,19785275:20577778 -g1,9554:32583029,19785275 -) -(1,9554:6630773,20451453:25952256,410518,101187 -h1,9554:6630773,20451453:0,0,0 -g1,9554:7579210,20451453 -g1,9554:7895356,20451453 -g1,9554:8211502,20451453 -g1,9554:8527648,20451453 -g1,9554:8843794,20451453 -g1,9554:9159940,20451453 -g1,9554:9476086,20451453 -g1,9554:9792232,20451453 -g1,9554:10108378,20451453 -g1,9554:11372961,20451453 -g1,9554:12321399,20451453 -h1,9554:12637545,20451453:0,0,0 -k1,9554:32583029,20451453:19945484 -g1,9554:32583029,20451453 -) -(1,9554:6630773,21117631:25952256,410518,101187 -h1,9554:6630773,21117631:0,0,0 -g1,9554:7579210,21117631 -g1,9554:7895356,21117631 -g1,9554:8211502,21117631 -g1,9554:8527648,21117631 -g1,9554:8843794,21117631 -g1,9554:9792231,21117631 -h1,9554:11372959,21117631:0,0,0 -k1,9554:32583029,21117631:21210070 -g1,9554:32583029,21117631 -) -(1,9554:6630773,21783809:25952256,410518,101187 -h1,9554:6630773,21783809:0,0,0 -g1,9554:7579210,21783809 -g1,9554:7895356,21783809 -g1,9554:8211502,21783809 -g1,9554:8527648,21783809 -g1,9554:8843794,21783809 -g1,9554:9159940,21783809 -g1,9554:9476086,21783809 -g1,9554:9792232,21783809 -g1,9554:10108378,21783809 -g1,9554:11689107,21783809 -g1,9554:12637545,21783809 -h1,9554:13902128,21783809:0,0,0 -k1,9554:32583028,21783809:18680900 -g1,9554:32583028,21783809 -) -(1,9554:6630773,22449987:25952256,379060,0 -h1,9554:6630773,22449987:0,0,0 -g1,9554:7579210,22449987 -g1,9554:7895356,22449987 -g1,9554:8211502,22449987 -g1,9554:8527648,22449987 -g1,9554:8843794,22449987 -h1,9554:9159940,22449987:0,0,0 -k1,9554:32583028,22449987:23423088 -g1,9554:32583028,22449987 -) -(1,9554:6630773,23116165:25952256,404226,76021 -h1,9554:6630773,23116165:0,0,0 -g1,9554:7579210,23116165 -h1,9554:7895356,23116165:0,0,0 -k1,9554:32583028,23116165:24687672 -g1,9554:32583028,23116165 -) -(1,9554:6630773,23782343:25952256,404226,101187 -h1,9554:6630773,23782343:0,0,0 -g1,9554:7579210,23782343 -g1,9554:11056813,23782343 -k1,9554:11056813,23782343:0 -h1,9554:17063581,23782343:0,0,0 -k1,9554:32583029,23782343:15519448 -g1,9554:32583029,23782343 -) -(1,9554:6630773,24448521:25952256,404226,101187 -h1,9554:6630773,24448521:0,0,0 -g1,9554:7579210,24448521 -g1,9554:12005250,24448521 -k1,9554:12005250,24448521:0 -h1,9554:17063581,24448521:0,0,0 -k1,9554:32583029,24448521:15519448 -g1,9554:32583029,24448521 -) -] -) -g1,9555:32583029,24549708 -g1,9555:6630773,24549708 -g1,9555:6630773,24549708 -g1,9555:32583029,24549708 -g1,9555:32583029,24549708 -) -h1,9555:6630773,24746316:0,0,0 -(1,9559:6630773,26112092:25952256,513147,134348 -h1,9558:6630773,26112092:983040,0,0 -k1,9558:8627409,26112092:195707 -k1,9558:9927398,26112092:195707 -k1,9558:10870871,26112092:195707 -k1,9558:12506404,26112092:195707 -k1,9558:13314873,26112092:195707 -k1,9558:14529665,26112092:195707 -k1,9558:15908297,26112092:195707 -k1,9558:16763296,26112092:195707 -k1,9558:17978088,26112092:195707 -k1,9558:20331240,26112092:195707 -k1,9558:21730188,26112092:195707 -k1,9558:24621391,26112092:195707 -k1,9558:27103649,26112092:195707 -k1,9558:27915394,26112092:195707 -k1,9558:29130186,26112092:195707 -k1,9558:29740733,26112092:195704 -k1,9558:32583029,26112092:0 -) -(1,9559:6630773,26953580:25952256,513147,126483 -k1,9558:7930399,26953580:198621 -k1,9558:9638969,26953580:198620 -k1,9558:14359574,26953580:198621 -k1,9558:15283023,26953580:198621 -k1,9558:16766150,26953580:198621 -k1,9558:17422867,26953580:198620 -k1,9558:20364170,26953580:198621 -k1,9558:22579989,26953580:198621 -k1,9558:25898778,26953580:198620 -k1,9558:27381905,26953580:198621 -k1,9558:28572086,26953580:198621 -k1,9558:30092568,26953580:198621 -k1,9558:30950480,26953580:198620 -k1,9558:32168186,26953580:198621 -k1,9559:32583029,26953580:0 -) -(1,9559:6630773,27795068:25952256,505283,134348 -k1,9558:9888621,27795068:241881 -k1,9558:11202672,27795068:241882 -k1,9558:12729059,27795068:241881 -k1,9558:13962500,27795068:241881 -k1,9558:15270653,27795068:241882 -k1,9558:17429462,27795068:241881 -k1,9558:19406737,27795068:241882 -k1,9558:20667703,27795068:241881 -k1,9558:21324385,27795068:241839 -k1,9558:24582233,27795068:241881 -k1,9558:25815674,27795068:241881 -k1,9558:27925332,27795068:241882 -k1,9558:31391584,27795068:241881 -k1,9558:32583029,27795068:0 -) -(1,9559:6630773,28636556:25952256,513147,134348 -k1,9558:8437222,28636556:297810 -k1,9558:9824897,28636556:297811 -k1,9558:13204865,28636556:297810 -k1,9558:15673227,28636556:297810 -k1,9558:16718804,28636556:297811 -k1,9558:19815657,28636556:297810 -k1,9558:22671994,28636556:297811 -k1,9558:24478443,28636556:297810 -k1,9558:26514268,28636556:297810 -k1,9558:28138528,28636556:297811 -(1,9558:28138528,28636556:0,452978,115847 -r1,9558:29903641,28636556:1765113,568825,115847 -k1,9558:28138528,28636556:-1765113 -) -(1,9558:28138528,28636556:1765113,452978,115847 -k1,9558:28138528,28636556:3277 -h1,9558:29900364,28636556:0,411205,112570 -) -k1,9558:30201451,28636556:297810 -k1,9558:32583029,28636556:0 -) -(1,9559:6630773,29478044:25952256,505283,95026 -k1,9559:32583029,29478044:23716168 -g1,9559:32583029,29478044 -) -v1,9561:6630773,30668510:0,393216,0 -(1,9568:6630773,31683863:25952256,1408569,196608 -g1,9568:6630773,31683863 -g1,9568:6630773,31683863 -g1,9568:6434165,31683863 -(1,9568:6434165,31683863:0,1408569,196608 -r1,9568:32779637,31683863:26345472,1605177,196608 -k1,9568:6434165,31683863:-26345472 -) -(1,9568:6434165,31683863:26345472,1408569,196608 -[1,9568:6630773,31683863:25952256,1211961,0 -(1,9563:6630773,30876128:25952256,404226,6290 -(1,9562:6630773,30876128:0,0,0 -g1,9562:6630773,30876128 -g1,9562:6630773,30876128 -g1,9562:6303093,30876128 -(1,9562:6303093,30876128:0,0,0 -) -g1,9562:6630773,30876128 -) -h1,9563:7895356,30876128:0,0,0 -k1,9563:32583028,30876128:24687672 -g1,9563:32583028,30876128 -) -(1,9567:6630773,31607842:25952256,410518,76021 -(1,9565:6630773,31607842:0,0,0 -g1,9565:6630773,31607842 -g1,9565:6630773,31607842 -g1,9565:6303093,31607842 -(1,9565:6303093,31607842:0,0,0 -) -g1,9565:6630773,31607842 -) -g1,9567:7579210,31607842 -g1,9567:10424521,31607842 -g1,9567:12321395,31607842 -g1,9567:12637541,31607842 -h1,9567:18328163,31607842:0,0,0 -k1,9567:32583029,31607842:14254866 -g1,9567:32583029,31607842 -) -] -) -g1,9568:32583029,31683863 -g1,9568:6630773,31683863 -g1,9568:6630773,31683863 -g1,9568:32583029,31683863 -g1,9568:32583029,31683863 -) -h1,9568:6630773,31880471:0,0,0 -(1,9571:6630773,34496019:25952256,534184,139132 -(1,9571:6630773,34496019:2450326,534184,12975 -g1,9571:6630773,34496019 -g1,9571:9081099,34496019 -) -k1,9571:32583030,34496019:19872940 -g1,9571:32583030,34496019 -) -(1,9575:6630773,35730723:25952256,513147,134348 -k1,9574:10031032,35730723:208656 -k1,9574:11231249,35730723:208657 -k1,9574:14465702,35730723:208656 -k1,9574:15958865,35730723:208657 -k1,9574:17260006,35730723:208656 -k1,9574:17824523,35730723:208657 -k1,9574:20795522,35730723:208656 -k1,9574:23088224,35730723:208657 -k1,9574:24244531,35730723:208656 -k1,9574:26191203,35730723:208657 -k1,9574:28441305,35730723:208656 -k1,9574:29127719,35730723:208657 -k1,9574:30845014,35730723:208656 -k1,9574:32583029,35730723:0 -) -(1,9575:6630773,36572211:25952256,513147,126483 -k1,9574:7331958,36572211:169688 -k1,9574:10295446,36572211:169688 -k1,9574:11081171,36572211:169687 -k1,9574:12733283,36572211:169688 -k1,9574:14417508,36572211:169688 -k1,9574:15967384,36572211:169688 -k1,9574:17241353,36572211:169687 -k1,9574:18158807,36572211:169688 -k1,9574:20196271,36572211:169688 -k1,9574:21052121,36572211:169688 -k1,9574:23946795,36572211:169687 -k1,9574:27315951,36572211:169688 -k1,9574:29506114,36572211:169688 -k1,9574:32583029,36572211:0 -) -(1,9575:6630773,37413699:25952256,513147,126483 -k1,9574:7951027,37413699:174029 -(1,9574:7951027,37413699:0,414482,115847 -r1,9574:8309293,37413699:358266,530329,115847 -k1,9574:7951027,37413699:-358266 -) -(1,9574:7951027,37413699:358266,414482,115847 -k1,9574:7951027,37413699:3277 -h1,9574:8306016,37413699:0,411205,112570 -) -k1,9574:8483322,37413699:174029 -k1,9574:10132566,37413699:174029 -k1,9574:11479034,37413699:174029 -k1,9574:13781672,37413699:174029 -k1,9574:17740405,37413699:174029 -k1,9574:19105878,37413699:174028 -k1,9574:21114915,37413699:174029 -k1,9574:24365859,37413699:174029 -k1,9574:25686113,37413699:174029 -k1,9574:27695150,37413699:174029 -(1,9574:27695150,37413699:0,414482,115847 -r1,9574:28053416,37413699:358266,530329,115847 -k1,9574:27695150,37413699:-358266 -) -(1,9574:27695150,37413699:358266,414482,115847 -k1,9574:27695150,37413699:3277 -h1,9574:28050139,37413699:0,411205,112570 -) -k1,9574:28227445,37413699:174029 -k1,9574:29876689,37413699:174029 -k1,9574:31426319,37413699:174029 -k1,9574:32583029,37413699:0 -) -(1,9575:6630773,38255187:25952256,513147,126483 -k1,9574:8974814,38255187:215432 -k1,9574:12644650,38255187:215433 -k1,9574:14056769,38255187:215432 -k1,9574:17883235,38255187:215432 -k1,9574:18757959,38255187:215432 -k1,9574:20725169,38255187:215433 -k1,9574:22962387,38255187:215432 -k1,9574:23592646,38255187:215416 -k1,9574:26884993,38255187:215432 -k1,9574:28091985,38255187:215432 -k1,9574:30466174,38255187:215433 -(1,9574:30466174,38255187:0,435480,115847 -r1,9574:31176152,38255187:709978,551327,115847 -k1,9574:30466174,38255187:-709978 -) -(1,9574:30466174,38255187:709978,435480,115847 -k1,9574:30466174,38255187:3277 -h1,9574:31172875,38255187:0,411205,112570 -) -k1,9574:31391584,38255187:215432 -k1,9575:32583029,38255187:0 -) -(1,9575:6630773,39096675:25952256,435480,115847 -(1,9574:6630773,39096675:0,435480,115847 -r1,9574:7340751,39096675:709978,551327,115847 -k1,9574:6630773,39096675:-709978 -) -(1,9574:6630773,39096675:709978,435480,115847 -k1,9574:6630773,39096675:3277 -h1,9574:7337474,39096675:0,411205,112570 -) -k1,9575:32583029,39096675:25068608 -g1,9575:32583029,39096675 -) -v1,9577:6630773,40287141:0,393216,0 -(1,9596:6630773,45408998:25952256,5515073,196608 -g1,9596:6630773,45408998 -g1,9596:6630773,45408998 -g1,9596:6434165,45408998 -(1,9596:6434165,45408998:0,5515073,196608 -r1,9596:32779637,45408998:26345472,5711681,196608 -k1,9596:6434165,45408998:-26345472 -) -(1,9596:6434165,45408998:26345472,5515073,196608 -[1,9596:6630773,45408998:25952256,5318465,0 -(1,9579:6630773,40494759:25952256,404226,76021 -(1,9578:6630773,40494759:0,0,0 -g1,9578:6630773,40494759 -g1,9578:6630773,40494759 -g1,9578:6303093,40494759 -(1,9578:6303093,40494759:0,0,0 -) -g1,9578:6630773,40494759 -) -g1,9579:7263065,40494759 -g1,9579:7895357,40494759 -h1,9579:8211503,40494759:0,0,0 -k1,9579:32583029,40494759:24371526 -g1,9579:32583029,40494759 -) -(1,9583:6630773,41226473:25952256,404226,76021 -(1,9581:6630773,41226473:0,0,0 -g1,9581:6630773,41226473 -g1,9581:6630773,41226473 -g1,9581:6303093,41226473 -(1,9581:6303093,41226473:0,0,0 -) -g1,9581:6630773,41226473 -) -g1,9583:7579210,41226473 -g1,9583:8843793,41226473 -h1,9583:9792230,41226473:0,0,0 -k1,9583:32583030,41226473:22790800 -g1,9583:32583030,41226473 -) -(1,9585:6630773,42548011:25952256,410518,82312 -(1,9584:6630773,42548011:0,0,0 -g1,9584:6630773,42548011 -g1,9584:6630773,42548011 -g1,9584:6303093,42548011 -(1,9584:6303093,42548011:0,0,0 -) -g1,9584:6630773,42548011 -) -k1,9585:6630773,42548011:0 -g1,9585:8527649,42548011 -g1,9585:9159941,42548011 -h1,9585:9792233,42548011:0,0,0 -k1,9585:32583029,42548011:22790796 -g1,9585:32583029,42548011 -) -(1,9589:6630773,43279725:25952256,404226,76021 -(1,9587:6630773,43279725:0,0,0 -g1,9587:6630773,43279725 -g1,9587:6630773,43279725 -g1,9587:6303093,43279725 -(1,9587:6303093,43279725:0,0,0 -) -g1,9587:6630773,43279725 -) -g1,9589:7579210,43279725 -g1,9589:8843793,43279725 -h1,9589:9792230,43279725:0,0,0 -k1,9589:32583030,43279725:22790800 -g1,9589:32583030,43279725 -) -(1,9591:6630773,44601263:25952256,410518,82312 -(1,9590:6630773,44601263:0,0,0 -g1,9590:6630773,44601263 -g1,9590:6630773,44601263 -g1,9590:6303093,44601263 -(1,9590:6303093,44601263:0,0,0 -) -g1,9590:6630773,44601263 -) -k1,9591:6630773,44601263:0 -g1,9591:8843794,44601263 -g1,9591:9476086,44601263 -g1,9591:10108378,44601263 -g1,9591:10740670,44601263 -g1,9591:11689107,44601263 -g1,9591:12321399,44601263 -h1,9591:12953691,44601263:0,0,0 -k1,9591:32583029,44601263:19629338 -g1,9591:32583029,44601263 -) -(1,9595:6630773,45332977:25952256,404226,76021 -(1,9593:6630773,45332977:0,0,0 -g1,9593:6630773,45332977 -g1,9593:6630773,45332977 -g1,9593:6303093,45332977 -(1,9593:6303093,45332977:0,0,0 -) -g1,9593:6630773,45332977 -) -g1,9595:7579210,45332977 -g1,9595:8843793,45332977 -h1,9595:9792230,45332977:0,0,0 -k1,9595:32583030,45332977:22790800 -g1,9595:32583030,45332977 -) -] -) -g1,9596:32583029,45408998 -g1,9596:6630773,45408998 -g1,9596:6630773,45408998 -g1,9596:32583029,45408998 -g1,9596:32583029,45408998 -) -h1,9596:6630773,45605606:0,0,0 +) +] +[1,9605:3078558,4812305:0,0,0 +(1,9605:3078558,49800853:0,16384,2228224 +g1,9605:29030814,49800853 +g1,9605:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9605:36151628,51504789:16384,1179648,0 +) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 +) +] +) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9605:37855564,49800853:1179648,16384,0 +) +) +k1,9605:3078556,49800853:-34777008 +) +] +g1,9605:6630773,4812305 +g1,9605:6630773,4812305 +g1,9605:9499939,4812305 +g1,9605:12584718,4812305 +g1,9605:13994397,4812305 +g1,9605:17201073,4812305 +k1,9605:31387652,4812305:14186579 +) +) +] +[1,9605:6630773,45706769:25952256,40108032,0 +(1,9605:6630773,45706769:25952256,40108032,0 +(1,9605:6630773,45706769:0,0,0 +g1,9605:6630773,45706769 +) +[1,9605:6630773,45706769:25952256,40108032,0 +v1,9560:6630773,6254097:0,393216,0 +(1,9560:6630773,24549708:25952256,18688827,196608 +g1,9560:6630773,24549708 +g1,9560:6630773,24549708 +g1,9560:6434165,24549708 +(1,9560:6434165,24549708:0,18688827,196608 +r1,9560:32779637,24549708:26345472,18885435,196608 +k1,9560:6434165,24549708:-26345472 +) +(1,9560:6434165,24549708:26345472,18688827,196608 +[1,9560:6630773,24549708:25952256,18492219,0 +(1,9559:6630773,6461715:25952256,404226,76021 +h1,9559:6630773,6461715:0,0,0 +g1,9559:7579210,6461715 +g1,9559:7895356,6461715 +g1,9559:8211502,6461715 +g1,9559:8527648,6461715 +g1,9559:8843794,6461715 +h1,9559:9159940,6461715:0,0,0 +k1,9559:32583028,6461715:23423088 +g1,9559:32583028,6461715 +) +(1,9559:6630773,7127893:25952256,404226,76021 +h1,9559:6630773,7127893:0,0,0 +g1,9559:7579210,7127893 +g1,9559:7895356,7127893 +g1,9559:8211502,7127893 +g1,9559:8527648,7127893 +g1,9559:8843794,7127893 +g1,9559:10424523,7127893 +h1,9559:10740669,7127893:0,0,0 +k1,9559:32583029,7127893:21842360 +g1,9559:32583029,7127893 +) +(1,9559:6630773,7794071:25952256,410518,82312 +h1,9559:6630773,7794071:0,0,0 +g1,9559:7579210,7794071 +g1,9559:7895356,7794071 +g1,9559:8211502,7794071 +g1,9559:8527648,7794071 +g1,9559:8843794,7794071 +g1,9559:9159940,7794071 +g1,9559:9476086,7794071 +g1,9559:9792232,7794071 +g1,9559:10108378,7794071 +g1,9559:10740670,7794071 +g1,9559:11689108,7794071 +g1,9559:17063585,7794071 +g1,9559:18328168,7794071 +h1,9559:21489625,7794071:0,0,0 +k1,9559:32583029,7794071:11093404 +g1,9559:32583029,7794071 +) +(1,9559:6630773,8460249:25952256,410518,76021 +h1,9559:6630773,8460249:0,0,0 +g1,9559:7579210,8460249 +g1,9559:7895356,8460249 +g1,9559:8211502,8460249 +g1,9559:8527648,8460249 +g1,9559:8843794,8460249 +g1,9559:9159940,8460249 +g1,9559:9476086,8460249 +g1,9559:9792232,8460249 +g1,9559:10108378,8460249 +g1,9559:10740670,8460249 +g1,9559:11689108,8460249 +g1,9559:12637545,8460249 +h1,9559:16431293,8460249:0,0,0 +k1,9559:32583029,8460249:16151736 +g1,9559:32583029,8460249 +) +(1,9559:6630773,9126427:25952256,410518,107478 +h1,9559:6630773,9126427:0,0,0 +g1,9559:7579210,9126427 +g1,9559:7895356,9126427 +g1,9559:8211502,9126427 +g1,9559:8527648,9126427 +g1,9559:8843794,9126427 +g1,9559:9159940,9126427 +g1,9559:9476086,9126427 +g1,9559:9792232,9126427 +g1,9559:10108378,9126427 +g1,9559:10424524,9126427 +g1,9559:10740670,9126427 +g1,9559:11056816,9126427 +g1,9559:11372962,9126427 +g1,9559:14534419,9126427 +g1,9559:15482857,9126427 +g1,9559:17695877,9126427 +g1,9559:18328169,9126427 +g1,9559:20857335,9126427 +g1,9559:24651083,9126427 +g1,9559:25283375,9126427 +k1,9559:25283375,9126427:0 +h1,9559:29077123,9126427:0,0,0 +k1,9559:32583029,9126427:3505906 +g1,9559:32583029,9126427 +) +(1,9559:6630773,9792605:25952256,404226,76021 +h1,9559:6630773,9792605:0,0,0 +g1,9559:7579210,9792605 +g1,9559:7895356,9792605 +g1,9559:8211502,9792605 +g1,9559:8527648,9792605 +g1,9559:8843794,9792605 +g1,9559:9159940,9792605 +g1,9559:9476086,9792605 +g1,9559:9792232,9792605 +g1,9559:10108378,9792605 +g1,9559:10424524,9792605 +g1,9559:10740670,9792605 +g1,9559:11056816,9792605 +g1,9559:11372962,9792605 +g1,9559:11689108,9792605 +g1,9559:12005254,9792605 +g1,9559:12321400,9792605 +g1,9559:12637546,9792605 +h1,9559:13902129,9792605:0,0,0 +k1,9559:32583029,9792605:18680900 +g1,9559:32583029,9792605 +) +(1,9559:6630773,10458783:25952256,410518,107478 +h1,9559:6630773,10458783:0,0,0 +g1,9559:7579210,10458783 +g1,9559:7895356,10458783 +g1,9559:8211502,10458783 +g1,9559:8527648,10458783 +g1,9559:8843794,10458783 +g1,9559:9159940,10458783 +g1,9559:9476086,10458783 +g1,9559:9792232,10458783 +g1,9559:10108378,10458783 +g1,9559:11689107,10458783 +g1,9559:15166710,10458783 +g1,9559:16115148,10458783 +g1,9559:17063586,10458783 +g1,9559:19276606,10458783 +g1,9559:19908898,10458783 +g1,9559:22438064,10458783 +g1,9559:26231812,10458783 +g1,9559:26864104,10458783 +k1,9559:26864104,10458783:0 +h1,9559:30657852,10458783:0,0,0 +k1,9559:32583029,10458783:1925177 +g1,9559:32583029,10458783 +) +(1,9559:6630773,11124961:25952256,404226,76021 +h1,9559:6630773,11124961:0,0,0 +g1,9559:7579210,11124961 +g1,9559:7895356,11124961 +g1,9559:8211502,11124961 +g1,9559:8527648,11124961 +g1,9559:8843794,11124961 +g1,9559:9159940,11124961 +g1,9559:9476086,11124961 +g1,9559:9792232,11124961 +g1,9559:10108378,11124961 +g1,9559:10424524,11124961 +g1,9559:10740670,11124961 +g1,9559:11056816,11124961 +g1,9559:11372962,11124961 +h1,9559:12637545,11124961:0,0,0 +k1,9559:32583029,11124961:19945484 +g1,9559:32583029,11124961 +) +(1,9559:6630773,11791139:25952256,404226,76021 +h1,9559:6630773,11791139:0,0,0 +g1,9559:7579210,11791139 +g1,9559:7895356,11791139 +g1,9559:8211502,11791139 +g1,9559:8527648,11791139 +g1,9559:8843794,11791139 +h1,9559:9159940,11791139:0,0,0 +k1,9559:32583028,11791139:23423088 +g1,9559:32583028,11791139 +) +(1,9559:6630773,12457317:25952256,410518,82312 +h1,9559:6630773,12457317:0,0,0 +g1,9559:7579210,12457317 +g1,9559:7895356,12457317 +g1,9559:8211502,12457317 +g1,9559:8527648,12457317 +g1,9559:8843794,12457317 +g1,9559:11689105,12457317 +g1,9559:12637543,12457317 +g1,9559:14218272,12457317 +g1,9559:16115146,12457317 +g1,9559:18328166,12457317 +h1,9559:19908894,12457317:0,0,0 +k1,9559:32583029,12457317:12674135 +g1,9559:32583029,12457317 +) +(1,9559:6630773,13123495:25952256,410518,82312 +h1,9559:6630773,13123495:0,0,0 +g1,9559:7579210,13123495 +g1,9559:7895356,13123495 +g1,9559:8211502,13123495 +g1,9559:8527648,13123495 +g1,9559:8843794,13123495 +g1,9559:12637542,13123495 +g1,9559:13585980,13123495 +g1,9559:16431292,13123495 +h1,9559:20225040,13123495:0,0,0 +k1,9559:32583029,13123495:12357989 +g1,9559:32583029,13123495 +) +(1,9559:6630773,13789673:25952256,410518,31456 +h1,9559:6630773,13789673:0,0,0 +g1,9559:7579210,13789673 +g1,9559:7895356,13789673 +g1,9559:8211502,13789673 +g1,9559:8527648,13789673 +g1,9559:8843794,13789673 +g1,9559:11689105,13789673 +g1,9559:12637543,13789673 +h1,9559:14534417,13789673:0,0,0 +k1,9559:32583029,13789673:18048612 +g1,9559:32583029,13789673 +) +(1,9559:6630773,14455851:25952256,410518,82312 +h1,9559:6630773,14455851:0,0,0 +g1,9559:7579210,14455851 +g1,9559:7895356,14455851 +g1,9559:8211502,14455851 +g1,9559:8527648,14455851 +g1,9559:8843794,14455851 +g1,9559:12637542,14455851 +g1,9559:13585980,14455851 +g1,9559:16115146,14455851 +h1,9559:19908894,14455851:0,0,0 +k1,9559:32583029,14455851:12674135 +g1,9559:32583029,14455851 +) +(1,9559:6630773,15122029:25952256,410518,107478 +h1,9559:6630773,15122029:0,0,0 +g1,9559:7579210,15122029 +g1,9559:7895356,15122029 +g1,9559:8211502,15122029 +g1,9559:8527648,15122029 +g1,9559:8843794,15122029 +g1,9559:12005251,15122029 +g1,9559:12953689,15122029 +g1,9559:18012021,15122029 +h1,9559:18960458,15122029:0,0,0 +k1,9559:32583029,15122029:13622571 +g1,9559:32583029,15122029 +) +(1,9559:6630773,15788207:25952256,410518,31456 +h1,9559:6630773,15788207:0,0,0 +g1,9559:7579210,15788207 +g1,9559:7895356,15788207 +g1,9559:8211502,15788207 +g1,9559:8527648,15788207 +g1,9559:8843794,15788207 +g1,9559:11056814,15788207 +g1,9559:12005252,15788207 +h1,9559:12637543,15788207:0,0,0 +k1,9559:32583029,15788207:19945486 +g1,9559:32583029,15788207 +) +(1,9559:6630773,16454385:25952256,410518,31456 +h1,9559:6630773,16454385:0,0,0 +g1,9559:7579210,16454385 +g1,9559:7895356,16454385 +g1,9559:8211502,16454385 +g1,9559:8527648,16454385 +g1,9559:8843794,16454385 +g1,9559:11372960,16454385 +g1,9559:12321398,16454385 +h1,9559:12953689,16454385:0,0,0 +k1,9559:32583029,16454385:19629340 +g1,9559:32583029,16454385 +) +(1,9559:6630773,17120563:25952256,410518,76021 +h1,9559:6630773,17120563:0,0,0 +g1,9559:7579210,17120563 +g1,9559:7895356,17120563 +g1,9559:8211502,17120563 +g1,9559:8527648,17120563 +g1,9559:8843794,17120563 +g1,9559:9792231,17120563 +h1,9559:12005251,17120563:0,0,0 +k1,9559:32583029,17120563:20577778 +g1,9559:32583029,17120563 +) +(1,9559:6630773,17786741:25952256,410518,31456 +h1,9559:6630773,17786741:0,0,0 +g1,9559:7579210,17786741 +g1,9559:7895356,17786741 +g1,9559:8211502,17786741 +g1,9559:8527648,17786741 +g1,9559:8843794,17786741 +g1,9559:9159940,17786741 +g1,9559:9476086,17786741 +g1,9559:9792232,17786741 +g1,9559:10108378,17786741 +g1,9559:12637544,17786741 +g1,9559:13585982,17786741 +h1,9559:14218273,17786741:0,0,0 +k1,9559:32583029,17786741:18364756 +g1,9559:32583029,17786741 +) +(1,9559:6630773,18452919:25952256,410518,76021 +h1,9559:6630773,18452919:0,0,0 +g1,9559:7579210,18452919 +g1,9559:7895356,18452919 +g1,9559:8211502,18452919 +g1,9559:8527648,18452919 +g1,9559:8843794,18452919 +g1,9559:9792231,18452919 +h1,9559:12005251,18452919:0,0,0 +k1,9559:32583029,18452919:20577778 +g1,9559:32583029,18452919 +) +(1,9559:6630773,19119097:25952256,410518,31456 +h1,9559:6630773,19119097:0,0,0 +g1,9559:7579210,19119097 +g1,9559:7895356,19119097 +g1,9559:8211502,19119097 +g1,9559:8527648,19119097 +g1,9559:8843794,19119097 +g1,9559:9159940,19119097 +g1,9559:9476086,19119097 +g1,9559:9792232,19119097 +g1,9559:10108378,19119097 +g1,9559:11372961,19119097 +g1,9559:12321399,19119097 +h1,9559:12637545,19119097:0,0,0 +k1,9559:32583029,19119097:19945484 +g1,9559:32583029,19119097 +) +(1,9559:6630773,19785275:25952256,410518,101187 +h1,9559:6630773,19785275:0,0,0 +g1,9559:7579210,19785275 +g1,9559:7895356,19785275 +g1,9559:8211502,19785275 +g1,9559:8527648,19785275 +g1,9559:8843794,19785275 +g1,9559:9792231,19785275 +h1,9559:12005251,19785275:0,0,0 +k1,9559:32583029,19785275:20577778 +g1,9559:32583029,19785275 +) +(1,9559:6630773,20451453:25952256,410518,101187 +h1,9559:6630773,20451453:0,0,0 +g1,9559:7579210,20451453 +g1,9559:7895356,20451453 +g1,9559:8211502,20451453 +g1,9559:8527648,20451453 +g1,9559:8843794,20451453 +g1,9559:9159940,20451453 +g1,9559:9476086,20451453 +g1,9559:9792232,20451453 +g1,9559:10108378,20451453 +g1,9559:11372961,20451453 +g1,9559:12321399,20451453 +h1,9559:12637545,20451453:0,0,0 +k1,9559:32583029,20451453:19945484 +g1,9559:32583029,20451453 +) +(1,9559:6630773,21117631:25952256,410518,101187 +h1,9559:6630773,21117631:0,0,0 +g1,9559:7579210,21117631 +g1,9559:7895356,21117631 +g1,9559:8211502,21117631 +g1,9559:8527648,21117631 +g1,9559:8843794,21117631 +g1,9559:9792231,21117631 +h1,9559:11372959,21117631:0,0,0 +k1,9559:32583029,21117631:21210070 +g1,9559:32583029,21117631 +) +(1,9559:6630773,21783809:25952256,410518,101187 +h1,9559:6630773,21783809:0,0,0 +g1,9559:7579210,21783809 +g1,9559:7895356,21783809 +g1,9559:8211502,21783809 +g1,9559:8527648,21783809 +g1,9559:8843794,21783809 +g1,9559:9159940,21783809 +g1,9559:9476086,21783809 +g1,9559:9792232,21783809 +g1,9559:10108378,21783809 +g1,9559:11689107,21783809 +g1,9559:12637545,21783809 +h1,9559:13902128,21783809:0,0,0 +k1,9559:32583028,21783809:18680900 +g1,9559:32583028,21783809 +) +(1,9559:6630773,22449987:25952256,379060,0 +h1,9559:6630773,22449987:0,0,0 +g1,9559:7579210,22449987 +g1,9559:7895356,22449987 +g1,9559:8211502,22449987 +g1,9559:8527648,22449987 +g1,9559:8843794,22449987 +h1,9559:9159940,22449987:0,0,0 +k1,9559:32583028,22449987:23423088 +g1,9559:32583028,22449987 +) +(1,9559:6630773,23116165:25952256,404226,76021 +h1,9559:6630773,23116165:0,0,0 +g1,9559:7579210,23116165 +h1,9559:7895356,23116165:0,0,0 +k1,9559:32583028,23116165:24687672 +g1,9559:32583028,23116165 +) +(1,9559:6630773,23782343:25952256,410518,101187 +h1,9559:6630773,23782343:0,0,0 +g1,9559:7579210,23782343 +g1,9559:11056813,23782343 +k1,9559:11056813,23782343:0 +h1,9559:17063581,23782343:0,0,0 +k1,9559:32583029,23782343:15519448 +g1,9559:32583029,23782343 +) +(1,9559:6630773,24448521:25952256,404226,101187 +h1,9559:6630773,24448521:0,0,0 +g1,9559:7579210,24448521 +g1,9559:12005250,24448521 +k1,9559:12005250,24448521:0 +h1,9559:17063581,24448521:0,0,0 +k1,9559:32583029,24448521:15519448 +g1,9559:32583029,24448521 +) +] +) +g1,9560:32583029,24549708 +g1,9560:6630773,24549708 +g1,9560:6630773,24549708 +g1,9560:32583029,24549708 +g1,9560:32583029,24549708 +) +h1,9560:6630773,24746316:0,0,0 +(1,9564:6630773,26112092:25952256,513147,134348 +h1,9563:6630773,26112092:983040,0,0 +k1,9563:8627409,26112092:195707 +k1,9563:9927398,26112092:195707 +k1,9563:10870871,26112092:195707 +k1,9563:12506404,26112092:195707 +k1,9563:13314873,26112092:195707 +k1,9563:14529665,26112092:195707 +k1,9563:15908297,26112092:195707 +k1,9563:16763296,26112092:195707 +k1,9563:17978088,26112092:195707 +k1,9563:20331240,26112092:195707 +k1,9563:21730188,26112092:195707 +k1,9563:24621391,26112092:195707 +k1,9563:27103649,26112092:195707 +k1,9563:27915394,26112092:195707 +k1,9563:29130186,26112092:195707 +k1,9563:29740733,26112092:195704 +k1,9563:32583029,26112092:0 +) +(1,9564:6630773,26953580:25952256,513147,126483 +k1,9563:7930399,26953580:198621 +k1,9563:9638969,26953580:198620 +k1,9563:14359574,26953580:198621 +k1,9563:15283023,26953580:198621 +k1,9563:16766150,26953580:198621 +k1,9563:17422867,26953580:198620 +k1,9563:20364170,26953580:198621 +k1,9563:22579989,26953580:198621 +k1,9563:25898778,26953580:198620 +k1,9563:27381905,26953580:198621 +k1,9563:28572086,26953580:198621 +k1,9563:30092568,26953580:198621 +k1,9563:30950480,26953580:198620 +k1,9563:32168186,26953580:198621 +k1,9564:32583029,26953580:0 +) +(1,9564:6630773,27795068:25952256,505283,134348 +k1,9563:9888621,27795068:241881 +k1,9563:11202672,27795068:241882 +k1,9563:12729059,27795068:241881 +k1,9563:13962500,27795068:241881 +k1,9563:15270653,27795068:241882 +k1,9563:17429462,27795068:241881 +k1,9563:19406737,27795068:241882 +k1,9563:20667703,27795068:241881 +k1,9563:21324385,27795068:241839 +k1,9563:24582233,27795068:241881 +k1,9563:25815674,27795068:241881 +k1,9563:27925332,27795068:241882 +k1,9563:31391584,27795068:241881 +k1,9563:32583029,27795068:0 +) +(1,9564:6630773,28636556:25952256,513147,134348 +k1,9563:8437222,28636556:297810 +k1,9563:9824897,28636556:297811 +k1,9563:13204865,28636556:297810 +k1,9563:15673227,28636556:297810 +k1,9563:16718804,28636556:297811 +k1,9563:19815657,28636556:297810 +k1,9563:22671994,28636556:297811 +k1,9563:24478443,28636556:297810 +k1,9563:26514268,28636556:297810 +k1,9563:28138528,28636556:297811 +(1,9563:28138528,28636556:0,452978,115847 +r1,9563:29903641,28636556:1765113,568825,115847 +k1,9563:28138528,28636556:-1765113 +) +(1,9563:28138528,28636556:1765113,452978,115847 +k1,9563:28138528,28636556:3277 +h1,9563:29900364,28636556:0,411205,112570 +) +k1,9563:30201451,28636556:297810 +k1,9563:32583029,28636556:0 +) +(1,9564:6630773,29478044:25952256,505283,95026 +k1,9564:32583029,29478044:23716168 +g1,9564:32583029,29478044 +) +v1,9566:6630773,30668510:0,393216,0 +(1,9573:6630773,31683863:25952256,1408569,196608 +g1,9573:6630773,31683863 +g1,9573:6630773,31683863 +g1,9573:6434165,31683863 +(1,9573:6434165,31683863:0,1408569,196608 +r1,9573:32779637,31683863:26345472,1605177,196608 +k1,9573:6434165,31683863:-26345472 +) +(1,9573:6434165,31683863:26345472,1408569,196608 +[1,9573:6630773,31683863:25952256,1211961,0 +(1,9568:6630773,30876128:25952256,404226,6290 +(1,9567:6630773,30876128:0,0,0 +g1,9567:6630773,30876128 +g1,9567:6630773,30876128 +g1,9567:6303093,30876128 +(1,9567:6303093,30876128:0,0,0 +) +g1,9567:6630773,30876128 +) +h1,9568:7895356,30876128:0,0,0 +k1,9568:32583028,30876128:24687672 +g1,9568:32583028,30876128 +) +(1,9572:6630773,31607842:25952256,410518,76021 +(1,9570:6630773,31607842:0,0,0 +g1,9570:6630773,31607842 +g1,9570:6630773,31607842 +g1,9570:6303093,31607842 +(1,9570:6303093,31607842:0,0,0 +) +g1,9570:6630773,31607842 +) +g1,9572:7579210,31607842 +g1,9572:10424521,31607842 +g1,9572:12321395,31607842 +g1,9572:12637541,31607842 +h1,9572:18328163,31607842:0,0,0 +k1,9572:32583029,31607842:14254866 +g1,9572:32583029,31607842 +) +] +) +g1,9573:32583029,31683863 +g1,9573:6630773,31683863 +g1,9573:6630773,31683863 +g1,9573:32583029,31683863 +g1,9573:32583029,31683863 +) +h1,9573:6630773,31880471:0,0,0 +(1,9576:6630773,34496019:25952256,534184,139132 +(1,9576:6630773,34496019:2450326,534184,12975 +g1,9576:6630773,34496019 +g1,9576:9081099,34496019 +) +k1,9576:32583030,34496019:19872940 +g1,9576:32583030,34496019 +) +(1,9580:6630773,35730723:25952256,513147,134348 +k1,9579:10031032,35730723:208656 +k1,9579:11231249,35730723:208657 +k1,9579:14465702,35730723:208656 +k1,9579:15958865,35730723:208657 +k1,9579:17260006,35730723:208656 +k1,9579:17824523,35730723:208657 +k1,9579:20795522,35730723:208656 +k1,9579:23088224,35730723:208657 +k1,9579:24244531,35730723:208656 +k1,9579:26191203,35730723:208657 +k1,9579:28441305,35730723:208656 +k1,9579:29127719,35730723:208657 +k1,9579:30845014,35730723:208656 +k1,9579:32583029,35730723:0 +) +(1,9580:6630773,36572211:25952256,513147,126483 +k1,9579:7331958,36572211:169688 +k1,9579:10295446,36572211:169688 +k1,9579:11081171,36572211:169687 +k1,9579:12733283,36572211:169688 +k1,9579:14417508,36572211:169688 +k1,9579:15967384,36572211:169688 +k1,9579:17241353,36572211:169687 +k1,9579:18158807,36572211:169688 +k1,9579:20196271,36572211:169688 +k1,9579:21052121,36572211:169688 +k1,9579:23946795,36572211:169687 +k1,9579:27315951,36572211:169688 +k1,9579:29506114,36572211:169688 +k1,9579:32583029,36572211:0 +) +(1,9580:6630773,37413699:25952256,513147,126483 +k1,9579:7951027,37413699:174029 +(1,9579:7951027,37413699:0,414482,115847 +r1,9579:8309293,37413699:358266,530329,115847 +k1,9579:7951027,37413699:-358266 +) +(1,9579:7951027,37413699:358266,414482,115847 +k1,9579:7951027,37413699:3277 +h1,9579:8306016,37413699:0,411205,112570 +) +k1,9579:8483322,37413699:174029 +k1,9579:10132566,37413699:174029 +k1,9579:11479034,37413699:174029 +k1,9579:13781672,37413699:174029 +k1,9579:17740405,37413699:174029 +k1,9579:19105878,37413699:174028 +k1,9579:21114915,37413699:174029 +k1,9579:24365859,37413699:174029 +k1,9579:25686113,37413699:174029 +k1,9579:27695150,37413699:174029 +(1,9579:27695150,37413699:0,414482,115847 +r1,9579:28053416,37413699:358266,530329,115847 +k1,9579:27695150,37413699:-358266 +) +(1,9579:27695150,37413699:358266,414482,115847 +k1,9579:27695150,37413699:3277 +h1,9579:28050139,37413699:0,411205,112570 +) +k1,9579:28227445,37413699:174029 +k1,9579:29876689,37413699:174029 +k1,9579:31426319,37413699:174029 +k1,9579:32583029,37413699:0 +) +(1,9580:6630773,38255187:25952256,513147,126483 +k1,9579:8974814,38255187:215432 +k1,9579:12644650,38255187:215433 +k1,9579:14056769,38255187:215432 +k1,9579:17883235,38255187:215432 +k1,9579:18757959,38255187:215432 +k1,9579:20725169,38255187:215433 +k1,9579:22962387,38255187:215432 +k1,9579:23592646,38255187:215416 +k1,9579:26884993,38255187:215432 +k1,9579:28091985,38255187:215432 +k1,9579:30466174,38255187:215433 +(1,9579:30466174,38255187:0,435480,115847 +r1,9579:31176152,38255187:709978,551327,115847 +k1,9579:30466174,38255187:-709978 +) +(1,9579:30466174,38255187:709978,435480,115847 +k1,9579:30466174,38255187:3277 +h1,9579:31172875,38255187:0,411205,112570 +) +k1,9579:31391584,38255187:215432 +k1,9580:32583029,38255187:0 +) +(1,9580:6630773,39096675:25952256,435480,115847 +(1,9579:6630773,39096675:0,435480,115847 +r1,9579:7340751,39096675:709978,551327,115847 +k1,9579:6630773,39096675:-709978 +) +(1,9579:6630773,39096675:709978,435480,115847 +k1,9579:6630773,39096675:3277 +h1,9579:7337474,39096675:0,411205,112570 +) +k1,9580:32583029,39096675:25068608 +g1,9580:32583029,39096675 +) +v1,9582:6630773,40287141:0,393216,0 +(1,9601:6630773,45408998:25952256,5515073,196608 +g1,9601:6630773,45408998 +g1,9601:6630773,45408998 +g1,9601:6434165,45408998 +(1,9601:6434165,45408998:0,5515073,196608 +r1,9601:32779637,45408998:26345472,5711681,196608 +k1,9601:6434165,45408998:-26345472 +) +(1,9601:6434165,45408998:26345472,5515073,196608 +[1,9601:6630773,45408998:25952256,5318465,0 +(1,9584:6630773,40494759:25952256,404226,76021 +(1,9583:6630773,40494759:0,0,0 +g1,9583:6630773,40494759 +g1,9583:6630773,40494759 +g1,9583:6303093,40494759 +(1,9583:6303093,40494759:0,0,0 +) +g1,9583:6630773,40494759 +) +g1,9584:7263065,40494759 +g1,9584:7895357,40494759 +h1,9584:8211503,40494759:0,0,0 +k1,9584:32583029,40494759:24371526 +g1,9584:32583029,40494759 +) +(1,9588:6630773,41226473:25952256,404226,76021 +(1,9586:6630773,41226473:0,0,0 +g1,9586:6630773,41226473 +g1,9586:6630773,41226473 +g1,9586:6303093,41226473 +(1,9586:6303093,41226473:0,0,0 +) +g1,9586:6630773,41226473 +) +g1,9588:7579210,41226473 +g1,9588:8843793,41226473 +h1,9588:9792230,41226473:0,0,0 +k1,9588:32583030,41226473:22790800 +g1,9588:32583030,41226473 +) +(1,9590:6630773,42548011:25952256,410518,82312 +(1,9589:6630773,42548011:0,0,0 +g1,9589:6630773,42548011 +g1,9589:6630773,42548011 +g1,9589:6303093,42548011 +(1,9589:6303093,42548011:0,0,0 +) +g1,9589:6630773,42548011 +) +k1,9590:6630773,42548011:0 +g1,9590:8527649,42548011 +g1,9590:9159941,42548011 +h1,9590:9792233,42548011:0,0,0 +k1,9590:32583029,42548011:22790796 +g1,9590:32583029,42548011 +) +(1,9594:6630773,43279725:25952256,404226,76021 +(1,9592:6630773,43279725:0,0,0 +g1,9592:6630773,43279725 +g1,9592:6630773,43279725 +g1,9592:6303093,43279725 +(1,9592:6303093,43279725:0,0,0 +) +g1,9592:6630773,43279725 +) +g1,9594:7579210,43279725 +g1,9594:8843793,43279725 +h1,9594:9792230,43279725:0,0,0 +k1,9594:32583030,43279725:22790800 +g1,9594:32583030,43279725 +) +(1,9596:6630773,44601263:25952256,410518,82312 +(1,9595:6630773,44601263:0,0,0 +g1,9595:6630773,44601263 +g1,9595:6630773,44601263 +g1,9595:6303093,44601263 +(1,9595:6303093,44601263:0,0,0 +) +g1,9595:6630773,44601263 +) +k1,9596:6630773,44601263:0 +g1,9596:8843794,44601263 +g1,9596:9476086,44601263 +g1,9596:10108378,44601263 +g1,9596:10740670,44601263 +g1,9596:11689107,44601263 +g1,9596:12321399,44601263 +h1,9596:12953691,44601263:0,0,0 +k1,9596:32583029,44601263:19629338 +g1,9596:32583029,44601263 +) +(1,9600:6630773,45332977:25952256,404226,76021 +(1,9598:6630773,45332977:0,0,0 +g1,9598:6630773,45332977 +g1,9598:6630773,45332977 +g1,9598:6303093,45332977 +(1,9598:6303093,45332977:0,0,0 +) +g1,9598:6630773,45332977 +) +g1,9600:7579210,45332977 +g1,9600:8843793,45332977 +h1,9600:9792230,45332977:0,0,0 +k1,9600:32583030,45332977:22790800 +g1,9600:32583030,45332977 +) +] +) +g1,9601:32583029,45408998 +g1,9601:6630773,45408998 +g1,9601:6630773,45408998 +g1,9601:32583029,45408998 +g1,9601:32583029,45408998 +) +h1,9601:6630773,45605606:0,0,0 ] -(1,9600:32583029,45706769:0,0,0 -g1,9600:32583029,45706769 -) +(1,9605:32583029,45706769:0,0,0 +g1,9605:32583029,45706769 +) ) ] -(1,9600:6630773,47279633:25952256,0,0 -h1,9600:6630773,47279633:25952256,0,0 +(1,9605:6630773,47279633:25952256,0,0 +h1,9605:6630773,47279633:25952256,0,0 ) ] -h1,9600:4262630,4025873:0,0,0 +h1,9605:4262630,4025873:0,0,0 ] !24947 }180 -Input:1236:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1237:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1238:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:1232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {181 -[1,9663:4262630,47279633:28320399,43253760,0 -(1,9663:4262630,4025873:0,0,0 -[1,9663:-473657,4025873:25952256,0,0 -(1,9663:-473657,-710414:25952256,0,0 -h1,9663:-473657,-710414:0,0,0 -(1,9663:-473657,-710414:0,0,0 -(1,9663:-473657,-710414:0,0,0 -g1,9663:-473657,-710414 -(1,9663:-473657,-710414:65781,0,65781 -g1,9663:-407876,-710414 -[1,9663:-407876,-644633:0,0,0 +[1,9668:4262630,47279633:28320399,43253760,0 +(1,9668:4262630,4025873:0,0,0 +[1,9668:-473657,4025873:25952256,0,0 +(1,9668:-473657,-710414:25952256,0,0 +h1,9668:-473657,-710414:0,0,0 +(1,9668:-473657,-710414:0,0,0 +(1,9668:-473657,-710414:0,0,0 +g1,9668:-473657,-710414 +(1,9668:-473657,-710414:65781,0,65781 +g1,9668:-407876,-710414 +[1,9668:-407876,-644633:0,0,0 ] ) -k1,9663:-473657,-710414:-65781 +k1,9668:-473657,-710414:-65781 ) ) -k1,9663:25478599,-710414:25952256 -g1,9663:25478599,-710414 +k1,9668:25478599,-710414:25952256 +g1,9668:25478599,-710414 ) ] ) -[1,9663:6630773,47279633:25952256,43253760,0 -[1,9663:6630773,4812305:25952256,786432,0 -(1,9663:6630773,4812305:25952256,505283,134348 -(1,9663:6630773,4812305:25952256,505283,134348 -g1,9663:3078558,4812305 -[1,9663:3078558,4812305:0,0,0 -(1,9663:3078558,2439708:0,1703936,0 -k1,9663:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9663:2537886,2439708:1179648,16384,0 +[1,9668:6630773,47279633:25952256,43253760,0 +[1,9668:6630773,4812305:25952256,786432,0 +(1,9668:6630773,4812305:25952256,505283,134348 +(1,9668:6630773,4812305:25952256,505283,134348 +g1,9668:3078558,4812305 +[1,9668:3078558,4812305:0,0,0 +(1,9668:3078558,2439708:0,1703936,0 +k1,9668:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9668:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9663:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9668:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9663:3078558,4812305:0,0,0 -(1,9663:3078558,2439708:0,1703936,0 -g1,9663:29030814,2439708 -g1,9663:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9663:36151628,1915420:16384,1179648,0 +[1,9668:3078558,4812305:0,0,0 +(1,9668:3078558,2439708:0,1703936,0 +g1,9668:29030814,2439708 +g1,9668:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9668:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9663:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9668:37855564,2439708:1179648,16384,0 ) ) -k1,9663:3078556,2439708:-34777008 +k1,9668:3078556,2439708:-34777008 ) ] -[1,9663:3078558,4812305:0,0,0 -(1,9663:3078558,49800853:0,16384,2228224 -k1,9663:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9663:2537886,49800853:1179648,16384,0 +[1,9668:3078558,4812305:0,0,0 +(1,9668:3078558,49800853:0,16384,2228224 +k1,9668:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9668:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9663:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9668:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 -) -] -) -) -) -] -[1,9663:3078558,4812305:0,0,0 -(1,9663:3078558,49800853:0,16384,2228224 -g1,9663:29030814,49800853 -g1,9663:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9663:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] -) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9663:37855564,49800853:1179648,16384,0 -) -) -k1,9663:3078556,49800853:-34777008 -) -] -g1,9663:6630773,4812305 -k1,9663:20873058,4812305:13046908 -g1,9663:22259799,4812305 -g1,9663:22908605,4812305 -g1,9663:26222760,4812305 -g1,9663:28614824,4812305 -g1,9663:30094627,4812305 -) -) -] -[1,9663:6630773,45706769:25952256,40108032,0 -(1,9663:6630773,45706769:25952256,40108032,0 -(1,9663:6630773,45706769:0,0,0 -g1,9663:6630773,45706769 -) -[1,9663:6630773,45706769:25952256,40108032,0 -(1,9600:6630773,6254097:25952256,513147,134348 -h1,9599:6630773,6254097:983040,0,0 -k1,9599:8666911,6254097:150667 -k1,9599:12026876,6254097:150667 -k1,9599:16260437,6254097:150668 -k1,9599:17070396,6254097:150667 -k1,9599:18240148,6254097:150667 -k1,9599:21693830,6254097:150667 -k1,9599:22503789,6254097:150667 -k1,9599:24744400,6254097:150668 -k1,9599:27971982,6254097:150667 -k1,9599:29858042,6254097:150667 -k1,9599:32583029,6254097:0 -) -(1,9600:6630773,7095585:25952256,513147,134348 -k1,9599:8912175,7095585:197357 -k1,9599:9641029,7095585:197357 -k1,9599:11122892,7095585:197357 -k1,9599:14397164,7095585:197357 -k1,9599:15698803,7095585:197357 -k1,9599:16643926,7095585:197357 -k1,9599:18354508,7095585:197356 -k1,9599:19238027,7095585:197357 -k1,9599:22838013,7095585:197357 -k1,9599:23686798,7095585:197357 -k1,9599:25676565,7095585:197357 -k1,9599:28899719,7095585:197357 -k1,9599:29713114,7095585:197357 -k1,9599:30929556,7095585:197357 -k1,9599:32583029,7095585:0 -) -(1,9600:6630773,7937073:25952256,513147,134348 -k1,9599:8103962,7937073:235214 -k1,9599:9025339,7937073:235215 -k1,9599:11985540,7937073:235214 -k1,9599:15420223,7937073:235215 -k1,9599:17438672,7937073:235214 -k1,9599:20101341,7937073:235215 -k1,9599:23083169,7937073:235214 -k1,9599:25386700,7937073:235215 -k1,9599:26308076,7937073:235214 -k1,9599:29945920,7937073:235215 -k1,9599:30832562,7937073:235214 -k1,9600:32583029,7937073:0 -) -(1,9600:6630773,8778561:25952256,513147,134348 -k1,9599:9823949,8778561:167379 -k1,9599:10859680,8778561:167379 -k1,9599:12402660,8778561:167379 -k1,9599:14100304,8778561:167378 -k1,9599:14919111,8778561:167379 -k1,9599:17459549,8778561:167379 -k1,9599:19265983,8778561:167379 -k1,9599:20049400,8778561:167379 -k1,9599:21699203,8778561:167379 -k1,9599:23381119,8778561:167379 -k1,9599:24780575,8778561:167379 -k1,9599:27226640,8778561:167378 -h1,9599:28197228,8778561:0,0,0 -k1,9599:28364607,8778561:167379 -k1,9599:29341356,8778561:167379 -k1,9599:31006888,8778561:167379 -h1,9599:32202265,8778561:0,0,0 -k1,9600:32583029,8778561:0 -k1,9600:32583029,8778561:0 -) -(1,9602:6630773,9620049:25952256,513147,126483 -h1,9601:6630773,9620049:983040,0,0 -k1,9601:8991098,9620049:180598 -k1,9601:10909712,9620049:180599 -k1,9601:11851838,9620049:180598 -k1,9601:13638069,9620049:180599 -k1,9601:15010112,9620049:180598 -k1,9601:17984511,9620049:180599 -k1,9601:18781147,9620049:180598 -k1,9601:20444170,9620049:180599 -k1,9601:22139305,9620049:180598 -k1,9601:24331859,9620049:180599 -k1,9601:25257601,9620049:180598 -k1,9601:26089628,9620049:180599 -k1,9601:28301187,9620049:180598 -k1,9601:29500871,9620049:180599 -k1,9601:32583029,9620049:0 -) -(1,9602:6630773,10461537:25952256,513147,126483 -g1,9601:7489294,10461537 -g1,9601:8459226,10461537 -k1,9602:32583030,10461537:21203520 -g1,9602:32583030,10461537 -) -v1,9604:6630773,11638835:0,393216,0 -(1,9611:6630773,12666771:25952256,1421152,196608 -g1,9611:6630773,12666771 -g1,9611:6630773,12666771 -g1,9611:6434165,12666771 -(1,9611:6434165,12666771:0,1421152,196608 -r1,9611:32779637,12666771:26345472,1617760,196608 -k1,9611:6434165,12666771:-26345472 -) -(1,9611:6434165,12666771:26345472,1421152,196608 -[1,9611:6630773,12666771:25952256,1224544,0 -(1,9606:6630773,11852745:25952256,410518,76021 -(1,9605:6630773,11852745:0,0,0 -g1,9605:6630773,11852745 -g1,9605:6630773,11852745 -g1,9605:6303093,11852745 -(1,9605:6303093,11852745:0,0,0 -) -g1,9605:6630773,11852745 -) -h1,9606:7579211,11852745:0,0,0 -k1,9606:32583029,11852745:25003818 -g1,9606:32583029,11852745 -) -(1,9610:6630773,12584459:25952256,410518,82312 -(1,9608:6630773,12584459:0,0,0 -g1,9608:6630773,12584459 -g1,9608:6630773,12584459 -g1,9608:6303093,12584459 -(1,9608:6303093,12584459:0,0,0 -) -g1,9608:6630773,12584459 -) -g1,9610:7579210,12584459 -g1,9610:10424521,12584459 -g1,9610:12005250,12584459 -g1,9610:13269833,12584459 -g1,9610:13585979,12584459 -h1,9610:18328164,12584459:0,0,0 -k1,9610:32583029,12584459:14254865 -g1,9610:32583029,12584459 -) -] -) -g1,9611:32583029,12666771 -g1,9611:6630773,12666771 -g1,9611:6630773,12666771 -g1,9611:32583029,12666771 -g1,9611:32583029,12666771 -) -h1,9611:6630773,12863379:0,0,0 -v1,9615:6630773,14727106:0,393216,0 -(1,9655:6630773,33553715:25952256,19219825,616038 -g1,9655:6630773,33553715 -(1,9655:6630773,33553715:25952256,19219825,616038 -(1,9655:6630773,34169753:25952256,19835863,0 -[1,9655:6630773,34169753:25952256,19835863,0 -(1,9655:6630773,34143539:25952256,19783435,0 -r1,9655:6656987,34143539:26214,19783435,0 -[1,9655:6656987,34143539:25899828,19783435,0 -(1,9655:6656987,33553715:25899828,18603787,0 -[1,9655:7246811,33553715:24720180,18603787,0 -(1,9616:7246811,16111813:24720180,1161885,196608 -(1,9615:7246811,16111813:0,1161885,196608 -r1,9655:8794447,16111813:1547636,1358493,196608 -k1,9615:7246811,16111813:-1547636 -) -(1,9615:7246811,16111813:1547636,1161885,196608 -) -k1,9615:9050564,16111813:256117 -k1,9615:12105255,16111813:262857 -k1,9615:12732492,16111813:262857 -k1,9615:14368984,16111813:262857 -k1,9615:17627961,16111813:256117 -k1,9615:18837627,16111813:256117 -k1,9615:20226206,16111813:256117 -k1,9615:22443160,16111813:256117 -k1,9615:23055137,16111813:256117 -k1,9615:25333039,16111813:256116 -k1,9615:28335770,16111813:256117 -k1,9615:30794552,16111813:256117 -k1,9615:31966991,16111813:0 -) -(1,9616:7246811,16953301:24720180,513147,134348 -k1,9615:11074605,16953301:218071 -k1,9615:12577182,16953301:218071 -k1,9615:15762723,16953301:218071 -k1,9615:17548415,16953301:218071 -k1,9615:18785571,16953301:218071 -k1,9615:21819725,16953301:218072 -k1,9615:22653834,16953301:218071 -k1,9615:23227765,16953301:218071 -k1,9615:25423713,16953301:218071 -k1,9615:26660869,16953301:218071 -k1,9615:28616955,16953301:218071 -k1,9615:29494318,16953301:218071 -k1,9615:31966991,16953301:0 -) -(1,9616:7246811,17794789:24720180,513147,102891 -k1,9615:9628998,17794789:230640 -k1,9615:11295532,17794789:230640 -k1,9615:12394524,17794789:230640 -k1,9615:14155430,17794789:230640 -k1,9615:14741930,17794789:230640 -k1,9615:17484565,17794789:230640 -k1,9615:19626890,17794789:230640 -k1,9615:20929699,17794789:230640 -k1,9615:22028691,17794789:230640 -k1,9615:23734546,17794789:230640 -k1,9615:25178257,17794789:230640 -k1,9615:28091941,17794789:230640 -k1,9615:29008743,17794789:230640 -k1,9615:31307699,17794789:230640 -k1,9615:31966991,17794789:0 -) -(1,9616:7246811,18636277:24720180,513147,134348 -k1,9615:11404732,18636277:182507 -k1,9615:14664153,18636277:182506 -k1,9615:16468676,18636277:182507 -k1,9615:17398949,18636277:182507 -k1,9615:20375255,18636277:182506 -k1,9615:21173800,18636277:182507 -k1,9615:23765409,18636277:182506 -k1,9615:25772438,18636277:182507 -k1,9615:26908494,18636277:182507 -k1,9615:28223462,18636277:182506 -k1,9615:29498454,18636277:182507 -(1,9615:29498454,18636277:0,435480,115847 -r1,9655:31966991,18636277:2468537,551327,115847 -k1,9615:29498454,18636277:-2468537 -) -(1,9615:29498454,18636277:2468537,435480,115847 -k1,9615:29498454,18636277:3277 -h1,9615:31963714,18636277:0,411205,112570 -) -k1,9615:31966991,18636277:0 -) -(1,9616:7246811,19477765:24720180,513147,126483 -k1,9615:8618611,19477765:180355 -k1,9615:9485128,19477765:180355 -k1,9615:11059434,19477765:180355 -k1,9615:12371596,19477765:180355 -k1,9615:14674662,19477765:180355 -k1,9615:16798814,19477765:180355 -k1,9615:17847521,19477765:180355 -k1,9615:19558141,19477765:180354 -k1,9615:20389924,19477765:180355 -k1,9615:22943338,19477765:180355 -k1,9615:23581790,19477765:180355 -k1,9615:24378183,19477765:180355 -k1,9615:27652493,19477765:180355 -k1,9615:29819900,19477765:180355 -k1,9615:30947906,19477765:180355 -k1,9615:31966991,19477765:0 -) -(1,9616:7246811,20319253:24720180,473825,134348 -k1,9616:31966991,20319253:20900742 -g1,9616:31966991,20319253 -) -v1,9618:7246811,21509719:0,393216,0 -(1,9624:7246811,23132006:24720180,2015503,196608 -g1,9624:7246811,23132006 -g1,9624:7246811,23132006 -g1,9624:7050203,23132006 -(1,9624:7050203,23132006:0,2015503,196608 -r1,9655:32163599,23132006:25113396,2212111,196608 -k1,9624:7050203,23132006:-25113396 -) -(1,9624:7050203,23132006:25113396,2015503,196608 -[1,9624:7246811,23132006:24720180,1818895,0 -(1,9620:7246811,21723629:24720180,410518,82312 -(1,9619:7246811,21723629:0,0,0 -g1,9619:7246811,21723629 -g1,9619:7246811,21723629 -g1,9619:6919131,21723629 -(1,9619:6919131,21723629:0,0,0 -) -g1,9619:7246811,21723629 -) -k1,9620:7246811,21723629:0 -g1,9620:10408268,21723629 -g1,9620:11356706,21723629 -g1,9620:15466600,21723629 -g1,9620:16731183,21723629 -h1,9620:17047329,21723629:0,0,0 -k1,9620:31966991,21723629:14919662 -g1,9620:31966991,21723629 -) -(1,9621:7246811,22389807:24720180,404226,76021 -h1,9621:7246811,22389807:0,0,0 -g1,9621:7562957,22389807 -g1,9621:7879103,22389807 -g1,9621:8827540,22389807 -g1,9621:9459832,22389807 -k1,9621:9459832,22389807:0 -h1,9621:11988998,22389807:0,0,0 -k1,9621:31966990,22389807:19977992 -g1,9621:31966990,22389807 -) -(1,9622:7246811,23055985:24720180,404226,76021 -h1,9622:7246811,23055985:0,0,0 -h1,9622:7562957,23055985:0,0,0 -k1,9622:31966991,23055985:24404034 -g1,9622:31966991,23055985 -) -] -) -g1,9624:31966991,23132006 -g1,9624:7246811,23132006 -g1,9624:7246811,23132006 -g1,9624:31966991,23132006 -g1,9624:31966991,23132006 -) -h1,9624:7246811,23328614:0,0,0 -(1,9628:7246811,24694390:24720180,505283,126483 -h1,9627:7246811,24694390:983040,0,0 -g1,9627:9382629,24694390 -g1,9627:10686140,24694390 -g1,9627:12319297,24694390 -g1,9627:13611011,24694390 -g1,9627:14907968,24694390 -g1,9627:16390392,24694390 -g1,9627:19336235,24694390 -g1,9627:20151502,24694390 -g1,9627:20706591,24694390 -k1,9628:31966991,24694390:8425313 -g1,9628:31966991,24694390 -) -v1,9630:7246811,25884856:0,393216,0 -(1,9637:7246811,26884480:24720180,1392840,196608 -g1,9637:7246811,26884480 -g1,9637:7246811,26884480 -g1,9637:7050203,26884480 -(1,9637:7050203,26884480:0,1392840,196608 -r1,9655:32163599,26884480:25113396,1589448,196608 -k1,9637:7050203,26884480:-25113396 -) -(1,9637:7050203,26884480:25113396,1392840,196608 -[1,9637:7246811,26884480:24720180,1196232,0 -(1,9632:7246811,26076745:24720180,388497,9436 -(1,9631:7246811,26076745:0,0,0 -g1,9631:7246811,26076745 -g1,9631:7246811,26076745 -g1,9631:6919131,26076745 -(1,9631:6919131,26076745:0,0,0 -) -g1,9631:7246811,26076745 -) -g1,9632:9143685,26076745 -g1,9632:11672851,26076745 -h1,9632:12937434,26076745:0,0,0 -k1,9632:31966990,26076745:19029556 -g1,9632:31966990,26076745 -) -(1,9636:7246811,26808459:24720180,404226,76021 -(1,9634:7246811,26808459:0,0,0 -g1,9634:7246811,26808459 -g1,9634:7246811,26808459 -g1,9634:6919131,26808459 -(1,9634:6919131,26808459:0,0,0 -) -g1,9634:7246811,26808459 -) -g1,9636:8195248,26808459 -g1,9636:9459831,26808459 -g1,9636:11040560,26808459 -g1,9636:11356706,26808459 -g1,9636:12621289,26808459 -g1,9636:12937435,26808459 -g1,9636:14202018,26808459 -g1,9636:14518164,26808459 -g1,9636:15782747,26808459 -g1,9636:16098893,26808459 -g1,9636:17363476,26808459 -g1,9636:17679622,26808459 -h1,9636:18628059,26808459:0,0,0 -k1,9636:31966991,26808459:13338932 -g1,9636:31966991,26808459 -) -] -) -g1,9637:31966991,26884480 -g1,9637:7246811,26884480 -g1,9637:7246811,26884480 -g1,9637:31966991,26884480 -g1,9637:31966991,26884480 -) -h1,9637:7246811,27081088:0,0,0 -(1,9641:7246811,28446864:24720180,513147,126483 -h1,9640:7246811,28446864:983040,0,0 -k1,9640:9302524,28446864:243643 -k1,9640:11128205,28446864:243642 -k1,9640:12390933,28446864:243643 -k1,9640:15890405,28446864:243643 -k1,9640:17002399,28446864:243642 -k1,9640:19619101,28446864:243643 -k1,9640:20881829,28446864:243643 -k1,9640:22863487,28446864:243643 -k1,9640:23766421,28446864:243642 -k1,9640:25107792,28446864:243643 -k1,9640:26634630,28446864:243643 -k1,9640:29624886,28446864:243642 -k1,9640:30484567,28446864:243643 -k1,9640:31966991,28446864:0 -) -(1,9641:7246811,29288352:24720180,505283,126483 -g1,9640:10685485,29288352 -g1,9640:11753066,29288352 -g1,9640:13427510,29288352 -g1,9640:15371307,29288352 -g1,9640:16589621,29288352 -g1,9640:18982995,29288352 -k1,9641:31966991,29288352:11072311 -g1,9641:31966991,29288352 -) -v1,9643:7246811,30478818:0,393216,0 -(1,9652:7246811,32832819:24720180,2747217,196608 -g1,9652:7246811,32832819 -g1,9652:7246811,32832819 -g1,9652:7050203,32832819 -(1,9652:7050203,32832819:0,2747217,196608 -r1,9655:32163599,32832819:25113396,2943825,196608 -k1,9652:7050203,32832819:-25113396 -) -(1,9652:7050203,32832819:25113396,2747217,196608 -[1,9652:7246811,32832819:24720180,2550609,0 -(1,9645:7246811,30692728:24720180,410518,9436 -(1,9644:7246811,30692728:0,0,0 -g1,9644:7246811,30692728 -g1,9644:7246811,30692728 -g1,9644:6919131,30692728 -(1,9644:6919131,30692728:0,0,0 -) -g1,9644:7246811,30692728 -) -k1,9645:7246811,30692728:0 -h1,9645:10092123,30692728:0,0,0 -k1,9645:31966991,30692728:21874868 -g1,9645:31966991,30692728 -) -(1,9651:7246811,31424442:24720180,410518,82312 -(1,9647:7246811,31424442:0,0,0 -g1,9647:7246811,31424442 -g1,9647:7246811,31424442 -g1,9647:6919131,31424442 -(1,9647:6919131,31424442:0,0,0 -) -g1,9647:7246811,31424442 -) -g1,9651:8195248,31424442 -g1,9651:12305142,31424442 -g1,9651:13569725,31424442 -h1,9651:13885871,31424442:0,0,0 -k1,9651:31966991,31424442:18081120 -g1,9651:31966991,31424442 -) -(1,9651:7246811,32090620:24720180,404226,76021 -h1,9651:7246811,32090620:0,0,0 -g1,9651:8195248,32090620 -g1,9651:8511394,32090620 -g1,9651:8827540,32090620 -g1,9651:9775977,32090620 -g1,9651:10408269,32090620 -h1,9651:12937434,32090620:0,0,0 -k1,9651:31966990,32090620:19029556 -g1,9651:31966990,32090620 -) -(1,9651:7246811,32756798:24720180,404226,76021 -h1,9651:7246811,32756798:0,0,0 -g1,9651:8195248,32756798 -h1,9651:8511394,32756798:0,0,0 -k1,9651:31966990,32756798:23455596 -g1,9651:31966990,32756798 -) -] -) -g1,9652:31966991,32832819 -g1,9652:7246811,32832819 -g1,9652:7246811,32832819 -g1,9652:31966991,32832819 -g1,9652:31966991,32832819 -) -h1,9652:7246811,33029427:0,0,0 -] -) -] -r1,9655:32583029,34143539:26214,19783435,0 -) -] -) -) -g1,9655:32583029,33553715 -) -h1,9655:6630773,34169753:0,0,0 -(1,9657:6630773,36977321:25952256,32768,229376 -(1,9657:6630773,36977321:0,32768,229376 -(1,9657:6630773,36977321:5505024,32768,229376 -r1,9657:12135797,36977321:5505024,262144,229376 -) -k1,9657:6630773,36977321:-5505024 -) -(1,9657:6630773,36977321:25952256,32768,0 -r1,9657:32583029,36977321:25952256,32768,0 -) -) -(1,9657:6630773,38581649:25952256,606339,161218 -(1,9657:6630773,38581649:1974731,575668,14155 -g1,9657:6630773,38581649 -g1,9657:8605504,38581649 -) -g1,9657:12064232,38581649 -g1,9657:15314556,38581649 -g1,9657:17024259,38581649 -k1,9657:32583029,38581649:12125994 -g1,9657:32583029,38581649 -) -(1,9661:6630773,39816353:25952256,513147,134348 -k1,9660:8138806,39816353:147506 -k1,9660:10519125,39816353:147507 -k1,9660:11658191,39816353:147506 -k1,9660:14650616,39816353:147507 -k1,9660:17179700,39816353:147506 -k1,9660:19337195,39816353:147506 -k1,9660:22395156,39816353:147507 -k1,9660:24494324,39816353:147506 -k1,9660:26084277,39816353:147506 -k1,9660:26847822,39816353:147507 -k1,9660:28376172,39816353:147506 -k1,9660:30858727,39816353:147507 -k1,9660:31835263,39816353:147506 -k1,9660:32583029,39816353:0 -) -(1,9661:6630773,40657841:25952256,513147,134348 -k1,9660:8599222,40657841:205531 -k1,9660:10781974,40657841:205531 -k1,9660:15411185,40657841:205531 -k1,9660:15972576,40657841:205531 -k1,9660:17461302,40657841:205531 -k1,9660:19222002,40657841:205531 -k1,9660:22035212,40657841:205532 -k1,9660:23307014,40657841:205531 -k1,9660:24888146,40657841:205531 -k1,9660:27697422,40657841:205531 -k1,9660:28258813,40657841:205531 -k1,9660:30019513,40657841:205531 -k1,9660:31297213,40657841:205531 -k1,9660:32583029,40657841:0 -) -(1,9661:6630773,41499329:25952256,513147,134348 -k1,9660:7244607,41499329:257974 -k1,9660:8437123,41499329:257973 -k1,9660:9354389,41499329:257974 -k1,9660:13165724,41499329:257973 -k1,9660:16449495,41499329:257974 -k1,9660:17390353,41499329:257973 -k1,9660:20329405,41499329:257974 -k1,9660:21871884,41499329:257973 -k1,9660:25563289,41499329:257974 -k1,9660:29225858,41499329:257974 -k1,9660:30293201,41499329:257973 -k1,9660:32583029,41499329:0 -) -(1,9661:6630773,42340817:25952256,513147,134348 -k1,9660:9999324,42340817:241828 -k1,9660:10892579,42340817:241827 -k1,9660:12153492,42340817:241828 -k1,9660:13678515,42340817:241828 -k1,9660:15649183,42340817:241828 -k1,9660:20129223,42340817:241827 -k1,9660:21141754,42340817:241828 -k1,9660:26038604,42340817:241828 -k1,9660:26939724,42340817:241828 -k1,9660:28511932,42340817:241827 -k1,9660:30986572,42340817:241828 -k1,9660:32583029,42340817:0 -) -(1,9661:6630773,43182305:25952256,513147,126483 -k1,9660:7363728,43182305:201458 -k1,9660:10774483,43182305:201457 -k1,9660:12442637,43182305:201458 -k1,9660:13110055,43182305:201457 -k1,9660:14687114,43182305:201458 -k1,9660:16242546,43182305:201458 -k1,9660:20329633,43182305:201457 -k1,9660:20886951,43182305:201458 -k1,9660:22469252,43182305:201457 -k1,9660:23803172,43182305:201458 -k1,9660:25965467,43182305:201458 -k1,9660:26522784,43182305:201457 -k1,9660:28007437,43182305:201458 -k1,9660:30663217,43182305:201457 -k1,9660:31812326,43182305:201458 -k1,9660:32583029,43182305:0 -) -(1,9661:6630773,44023793:25952256,505283,134348 -g1,9660:9321025,44023793 -g1,9660:11075423,44023793 -g1,9660:13284641,44023793 -g1,9660:13839730,44023793 -k1,9661:32583029,44023793:16738553 -g1,9661:32583029,44023793 -) -(1,9663:6630773,44865281:25952256,513147,134348 -h1,9662:6630773,44865281:983040,0,0 -k1,9662:10201320,44865281:232798 -k1,9662:11425678,44865281:232798 -k1,9662:15751200,44865281:232799 -k1,9662:17056167,44865281:232798 -k1,9662:21208018,44865281:232798 -k1,9662:24753006,44865281:232798 -k1,9662:26004890,44865281:232799 -k1,9662:28395133,44865281:232798 -k1,9662:31923737,44865281:232798 -k1,9662:32583029,44865281:0 -) -(1,9663:6630773,45706769:25952256,513147,134348 -k1,9662:9149372,45706769:201901 -k1,9662:10034158,45706769:201901 -k1,9662:12459040,45706769:201901 -k1,9662:13320234,45706769:201902 -k1,9662:15724145,45706769:201901 -k1,9662:18389544,45706769:201901 -k1,9662:19219280,45706769:201901 -k1,9662:20624422,45706769:201901 -k1,9662:22770121,45706769:201901 -k1,9662:25204835,45706769:201902 -k1,9662:26398296,45706769:201901 -k1,9662:30519250,45706769:201901 -k1,9662:31380443,45706769:201901 -k1,9663:32583029,45706769:0 -) -] -(1,9663:32583029,45706769:0,0,0 -g1,9663:32583029,45706769 -) -) -] -(1,9663:6630773,47279633:25952256,0,0 -h1,9663:6630773,47279633:25952256,0,0 -) -] -h1,9663:4262630,4025873:0,0,0 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 +) +] +) +) +) +] +[1,9668:3078558,4812305:0,0,0 +(1,9668:3078558,49800853:0,16384,2228224 +g1,9668:29030814,49800853 +g1,9668:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9668:36151628,51504789:16384,1179648,0 +) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 +) +] +) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9668:37855564,49800853:1179648,16384,0 +) +) +k1,9668:3078556,49800853:-34777008 +) +] +g1,9668:6630773,4812305 +k1,9668:20781963,4812305:12955813 +g1,9668:22168704,4812305 +g1,9668:22817510,4812305 +g1,9668:26131665,4812305 +g1,9668:28614824,4812305 +g1,9668:30094627,4812305 +) +) +] +[1,9668:6630773,45706769:25952256,40108032,0 +(1,9668:6630773,45706769:25952256,40108032,0 +(1,9668:6630773,45706769:0,0,0 +g1,9668:6630773,45706769 +) +[1,9668:6630773,45706769:25952256,40108032,0 +(1,9605:6630773,6254097:25952256,513147,134348 +h1,9604:6630773,6254097:983040,0,0 +k1,9604:8666911,6254097:150667 +k1,9604:12026876,6254097:150667 +k1,9604:16260437,6254097:150668 +k1,9604:17070396,6254097:150667 +k1,9604:18240148,6254097:150667 +k1,9604:21693830,6254097:150667 +k1,9604:22503789,6254097:150667 +k1,9604:24744400,6254097:150668 +k1,9604:27971982,6254097:150667 +k1,9604:29858042,6254097:150667 +k1,9604:32583029,6254097:0 +) +(1,9605:6630773,7095585:25952256,513147,134348 +k1,9604:8912175,7095585:197357 +k1,9604:9641029,7095585:197357 +k1,9604:11122892,7095585:197357 +k1,9604:14397164,7095585:197357 +k1,9604:15698803,7095585:197357 +k1,9604:16643926,7095585:197357 +k1,9604:18354508,7095585:197356 +k1,9604:19238027,7095585:197357 +k1,9604:22838013,7095585:197357 +k1,9604:23686798,7095585:197357 +k1,9604:25676565,7095585:197357 +k1,9604:28899719,7095585:197357 +k1,9604:29713114,7095585:197357 +k1,9604:30929556,7095585:197357 +k1,9604:32583029,7095585:0 +) +(1,9605:6630773,7937073:25952256,513147,134348 +k1,9604:8103962,7937073:235214 +k1,9604:9025339,7937073:235215 +k1,9604:11985540,7937073:235214 +k1,9604:15420223,7937073:235215 +k1,9604:17438672,7937073:235214 +k1,9604:20101341,7937073:235215 +k1,9604:23083169,7937073:235214 +k1,9604:25386700,7937073:235215 +k1,9604:26308076,7937073:235214 +k1,9604:29945920,7937073:235215 +k1,9604:30832562,7937073:235214 +k1,9605:32583029,7937073:0 +) +(1,9605:6630773,8778561:25952256,513147,134348 +k1,9604:9823949,8778561:167379 +k1,9604:10859680,8778561:167379 +k1,9604:12402660,8778561:167379 +k1,9604:14100304,8778561:167378 +k1,9604:14919111,8778561:167379 +k1,9604:17459549,8778561:167379 +k1,9604:19265983,8778561:167379 +k1,9604:20049400,8778561:167379 +k1,9604:21699203,8778561:167379 +k1,9604:23381119,8778561:167379 +k1,9604:24780575,8778561:167379 +k1,9604:27226640,8778561:167378 +h1,9604:28197228,8778561:0,0,0 +k1,9604:28364607,8778561:167379 +k1,9604:29341356,8778561:167379 +k1,9604:31006888,8778561:167379 +h1,9604:32202265,8778561:0,0,0 +k1,9605:32583029,8778561:0 +k1,9605:32583029,8778561:0 +) +(1,9607:6630773,9620049:25952256,513147,126483 +h1,9606:6630773,9620049:983040,0,0 +k1,9606:8991098,9620049:180598 +k1,9606:10909712,9620049:180599 +k1,9606:11851838,9620049:180598 +k1,9606:13638069,9620049:180599 +k1,9606:15010112,9620049:180598 +k1,9606:17984511,9620049:180599 +k1,9606:18781147,9620049:180598 +k1,9606:20444170,9620049:180599 +k1,9606:22139305,9620049:180598 +k1,9606:24331859,9620049:180599 +k1,9606:25257601,9620049:180598 +k1,9606:26089628,9620049:180599 +k1,9606:28301187,9620049:180598 +k1,9606:29500871,9620049:180599 +k1,9606:32583029,9620049:0 +) +(1,9607:6630773,10461537:25952256,513147,126483 +g1,9606:7489294,10461537 +g1,9606:8459226,10461537 +k1,9607:32583030,10461537:21203520 +g1,9607:32583030,10461537 +) +v1,9609:6630773,11638835:0,393216,0 +(1,9616:6630773,12666771:25952256,1421152,196608 +g1,9616:6630773,12666771 +g1,9616:6630773,12666771 +g1,9616:6434165,12666771 +(1,9616:6434165,12666771:0,1421152,196608 +r1,9616:32779637,12666771:26345472,1617760,196608 +k1,9616:6434165,12666771:-26345472 +) +(1,9616:6434165,12666771:26345472,1421152,196608 +[1,9616:6630773,12666771:25952256,1224544,0 +(1,9611:6630773,11852745:25952256,410518,76021 +(1,9610:6630773,11852745:0,0,0 +g1,9610:6630773,11852745 +g1,9610:6630773,11852745 +g1,9610:6303093,11852745 +(1,9610:6303093,11852745:0,0,0 +) +g1,9610:6630773,11852745 +) +h1,9611:7579211,11852745:0,0,0 +k1,9611:32583029,11852745:25003818 +g1,9611:32583029,11852745 +) +(1,9615:6630773,12584459:25952256,410518,82312 +(1,9613:6630773,12584459:0,0,0 +g1,9613:6630773,12584459 +g1,9613:6630773,12584459 +g1,9613:6303093,12584459 +(1,9613:6303093,12584459:0,0,0 +) +g1,9613:6630773,12584459 +) +g1,9615:7579210,12584459 +g1,9615:10424521,12584459 +g1,9615:12005250,12584459 +g1,9615:13269833,12584459 +g1,9615:13585979,12584459 +h1,9615:18328164,12584459:0,0,0 +k1,9615:32583029,12584459:14254865 +g1,9615:32583029,12584459 +) +] +) +g1,9616:32583029,12666771 +g1,9616:6630773,12666771 +g1,9616:6630773,12666771 +g1,9616:32583029,12666771 +g1,9616:32583029,12666771 +) +h1,9616:6630773,12863379:0,0,0 +v1,9620:6630773,14727106:0,393216,0 +(1,9660:6630773,33553715:25952256,19219825,616038 +g1,9660:6630773,33553715 +(1,9660:6630773,33553715:25952256,19219825,616038 +(1,9660:6630773,34169753:25952256,19835863,0 +[1,9660:6630773,34169753:25952256,19835863,0 +(1,9660:6630773,34143539:25952256,19783435,0 +r1,9660:6656987,34143539:26214,19783435,0 +[1,9660:6656987,34143539:25899828,19783435,0 +(1,9660:6656987,33553715:25899828,18603787,0 +[1,9660:7246811,33553715:24720180,18603787,0 +(1,9621:7246811,16111813:24720180,1161885,196608 +(1,9620:7246811,16111813:0,1161885,196608 +r1,9660:8794447,16111813:1547636,1358493,196608 +k1,9620:7246811,16111813:-1547636 +) +(1,9620:7246811,16111813:1547636,1161885,196608 +) +k1,9620:9050564,16111813:256117 +k1,9620:12105255,16111813:262857 +k1,9620:12732492,16111813:262857 +k1,9620:14368984,16111813:262857 +k1,9620:17627961,16111813:256117 +k1,9620:18837627,16111813:256117 +k1,9620:20226206,16111813:256117 +k1,9620:22443160,16111813:256117 +k1,9620:23055137,16111813:256117 +k1,9620:25333039,16111813:256116 +k1,9620:28335770,16111813:256117 +k1,9620:30794552,16111813:256117 +k1,9620:31966991,16111813:0 +) +(1,9621:7246811,16953301:24720180,513147,134348 +k1,9620:11074605,16953301:218071 +k1,9620:12577182,16953301:218071 +k1,9620:15762723,16953301:218071 +k1,9620:17548415,16953301:218071 +k1,9620:18785571,16953301:218071 +k1,9620:21819725,16953301:218072 +k1,9620:22653834,16953301:218071 +k1,9620:23227765,16953301:218071 +k1,9620:25423713,16953301:218071 +k1,9620:26660869,16953301:218071 +k1,9620:28616955,16953301:218071 +k1,9620:29494318,16953301:218071 +k1,9620:31966991,16953301:0 +) +(1,9621:7246811,17794789:24720180,513147,102891 +k1,9620:9628998,17794789:230640 +k1,9620:11295532,17794789:230640 +k1,9620:12394524,17794789:230640 +k1,9620:14155430,17794789:230640 +k1,9620:14741930,17794789:230640 +k1,9620:17484565,17794789:230640 +k1,9620:19626890,17794789:230640 +k1,9620:20929699,17794789:230640 +k1,9620:22028691,17794789:230640 +k1,9620:23734546,17794789:230640 +k1,9620:25178257,17794789:230640 +k1,9620:28091941,17794789:230640 +k1,9620:29008743,17794789:230640 +k1,9620:31307699,17794789:230640 +k1,9620:31966991,17794789:0 +) +(1,9621:7246811,18636277:24720180,513147,134348 +k1,9620:11404732,18636277:182507 +k1,9620:14664153,18636277:182506 +k1,9620:16468676,18636277:182507 +k1,9620:17398949,18636277:182507 +k1,9620:20375255,18636277:182506 +k1,9620:21173800,18636277:182507 +k1,9620:23765409,18636277:182506 +k1,9620:25772438,18636277:182507 +k1,9620:26908494,18636277:182507 +k1,9620:28223462,18636277:182506 +k1,9620:29498454,18636277:182507 +(1,9620:29498454,18636277:0,435480,115847 +r1,9660:31966991,18636277:2468537,551327,115847 +k1,9620:29498454,18636277:-2468537 +) +(1,9620:29498454,18636277:2468537,435480,115847 +k1,9620:29498454,18636277:3277 +h1,9620:31963714,18636277:0,411205,112570 +) +k1,9620:31966991,18636277:0 +) +(1,9621:7246811,19477765:24720180,513147,126483 +k1,9620:8618611,19477765:180355 +k1,9620:9485128,19477765:180355 +k1,9620:11059434,19477765:180355 +k1,9620:12371596,19477765:180355 +k1,9620:14674662,19477765:180355 +k1,9620:16798814,19477765:180355 +k1,9620:17847521,19477765:180355 +k1,9620:19558141,19477765:180354 +k1,9620:20389924,19477765:180355 +k1,9620:22943338,19477765:180355 +k1,9620:23581790,19477765:180355 +k1,9620:24378183,19477765:180355 +k1,9620:27652493,19477765:180355 +k1,9620:29819900,19477765:180355 +k1,9620:30947906,19477765:180355 +k1,9620:31966991,19477765:0 +) +(1,9621:7246811,20319253:24720180,473825,134348 +k1,9621:31966991,20319253:20900742 +g1,9621:31966991,20319253 +) +v1,9623:7246811,21509719:0,393216,0 +(1,9629:7246811,23132006:24720180,2015503,196608 +g1,9629:7246811,23132006 +g1,9629:7246811,23132006 +g1,9629:7050203,23132006 +(1,9629:7050203,23132006:0,2015503,196608 +r1,9660:32163599,23132006:25113396,2212111,196608 +k1,9629:7050203,23132006:-25113396 +) +(1,9629:7050203,23132006:25113396,2015503,196608 +[1,9629:7246811,23132006:24720180,1818895,0 +(1,9625:7246811,21723629:24720180,410518,82312 +(1,9624:7246811,21723629:0,0,0 +g1,9624:7246811,21723629 +g1,9624:7246811,21723629 +g1,9624:6919131,21723629 +(1,9624:6919131,21723629:0,0,0 +) +g1,9624:7246811,21723629 +) +k1,9625:7246811,21723629:0 +g1,9625:10408268,21723629 +g1,9625:11356706,21723629 +g1,9625:15466600,21723629 +g1,9625:16731183,21723629 +h1,9625:17047329,21723629:0,0,0 +k1,9625:31966991,21723629:14919662 +g1,9625:31966991,21723629 +) +(1,9626:7246811,22389807:24720180,404226,76021 +h1,9626:7246811,22389807:0,0,0 +g1,9626:7562957,22389807 +g1,9626:7879103,22389807 +g1,9626:8827540,22389807 +g1,9626:9459832,22389807 +k1,9626:9459832,22389807:0 +h1,9626:11988998,22389807:0,0,0 +k1,9626:31966990,22389807:19977992 +g1,9626:31966990,22389807 +) +(1,9627:7246811,23055985:24720180,404226,76021 +h1,9627:7246811,23055985:0,0,0 +h1,9627:7562957,23055985:0,0,0 +k1,9627:31966991,23055985:24404034 +g1,9627:31966991,23055985 +) +] +) +g1,9629:31966991,23132006 +g1,9629:7246811,23132006 +g1,9629:7246811,23132006 +g1,9629:31966991,23132006 +g1,9629:31966991,23132006 +) +h1,9629:7246811,23328614:0,0,0 +(1,9633:7246811,24694390:24720180,505283,126483 +h1,9632:7246811,24694390:983040,0,0 +g1,9632:9382629,24694390 +g1,9632:10686140,24694390 +g1,9632:12319297,24694390 +g1,9632:13611011,24694390 +g1,9632:14907968,24694390 +g1,9632:16390392,24694390 +g1,9632:19336235,24694390 +g1,9632:20151502,24694390 +g1,9632:20706591,24694390 +k1,9633:31966991,24694390:8425313 +g1,9633:31966991,24694390 +) +v1,9635:7246811,25884856:0,393216,0 +(1,9642:7246811,26884480:24720180,1392840,196608 +g1,9642:7246811,26884480 +g1,9642:7246811,26884480 +g1,9642:7050203,26884480 +(1,9642:7050203,26884480:0,1392840,196608 +r1,9660:32163599,26884480:25113396,1589448,196608 +k1,9642:7050203,26884480:-25113396 +) +(1,9642:7050203,26884480:25113396,1392840,196608 +[1,9642:7246811,26884480:24720180,1196232,0 +(1,9637:7246811,26076745:24720180,388497,9436 +(1,9636:7246811,26076745:0,0,0 +g1,9636:7246811,26076745 +g1,9636:7246811,26076745 +g1,9636:6919131,26076745 +(1,9636:6919131,26076745:0,0,0 +) +g1,9636:7246811,26076745 +) +g1,9637:9143685,26076745 +g1,9637:11672851,26076745 +h1,9637:12937434,26076745:0,0,0 +k1,9637:31966990,26076745:19029556 +g1,9637:31966990,26076745 +) +(1,9641:7246811,26808459:24720180,404226,76021 +(1,9639:7246811,26808459:0,0,0 +g1,9639:7246811,26808459 +g1,9639:7246811,26808459 +g1,9639:6919131,26808459 +(1,9639:6919131,26808459:0,0,0 +) +g1,9639:7246811,26808459 +) +g1,9641:8195248,26808459 +g1,9641:9459831,26808459 +g1,9641:11040560,26808459 +g1,9641:11356706,26808459 +g1,9641:12621289,26808459 +g1,9641:12937435,26808459 +g1,9641:14202018,26808459 +g1,9641:14518164,26808459 +g1,9641:15782747,26808459 +g1,9641:16098893,26808459 +g1,9641:17363476,26808459 +g1,9641:17679622,26808459 +h1,9641:18628059,26808459:0,0,0 +k1,9641:31966991,26808459:13338932 +g1,9641:31966991,26808459 +) +] +) +g1,9642:31966991,26884480 +g1,9642:7246811,26884480 +g1,9642:7246811,26884480 +g1,9642:31966991,26884480 +g1,9642:31966991,26884480 +) +h1,9642:7246811,27081088:0,0,0 +(1,9646:7246811,28446864:24720180,513147,126483 +h1,9645:7246811,28446864:983040,0,0 +k1,9645:9302524,28446864:243643 +k1,9645:11128205,28446864:243642 +k1,9645:12390933,28446864:243643 +k1,9645:15890405,28446864:243643 +k1,9645:17002399,28446864:243642 +k1,9645:19619101,28446864:243643 +k1,9645:20881829,28446864:243643 +k1,9645:22863487,28446864:243643 +k1,9645:23766421,28446864:243642 +k1,9645:25107792,28446864:243643 +k1,9645:26634630,28446864:243643 +k1,9645:29624886,28446864:243642 +k1,9645:30484567,28446864:243643 +k1,9645:31966991,28446864:0 +) +(1,9646:7246811,29288352:24720180,505283,126483 +g1,9645:10685485,29288352 +g1,9645:11753066,29288352 +g1,9645:13427510,29288352 +g1,9645:15371307,29288352 +g1,9645:16589621,29288352 +g1,9645:18982995,29288352 +k1,9646:31966991,29288352:11072311 +g1,9646:31966991,29288352 +) +v1,9648:7246811,30478818:0,393216,0 +(1,9657:7246811,32832819:24720180,2747217,196608 +g1,9657:7246811,32832819 +g1,9657:7246811,32832819 +g1,9657:7050203,32832819 +(1,9657:7050203,32832819:0,2747217,196608 +r1,9660:32163599,32832819:25113396,2943825,196608 +k1,9657:7050203,32832819:-25113396 +) +(1,9657:7050203,32832819:25113396,2747217,196608 +[1,9657:7246811,32832819:24720180,2550609,0 +(1,9650:7246811,30692728:24720180,410518,9436 +(1,9649:7246811,30692728:0,0,0 +g1,9649:7246811,30692728 +g1,9649:7246811,30692728 +g1,9649:6919131,30692728 +(1,9649:6919131,30692728:0,0,0 +) +g1,9649:7246811,30692728 +) +k1,9650:7246811,30692728:0 +h1,9650:10092123,30692728:0,0,0 +k1,9650:31966991,30692728:21874868 +g1,9650:31966991,30692728 +) +(1,9656:7246811,31424442:24720180,410518,82312 +(1,9652:7246811,31424442:0,0,0 +g1,9652:7246811,31424442 +g1,9652:7246811,31424442 +g1,9652:6919131,31424442 +(1,9652:6919131,31424442:0,0,0 +) +g1,9652:7246811,31424442 +) +g1,9656:8195248,31424442 +g1,9656:12305142,31424442 +g1,9656:13569725,31424442 +h1,9656:13885871,31424442:0,0,0 +k1,9656:31966991,31424442:18081120 +g1,9656:31966991,31424442 +) +(1,9656:7246811,32090620:24720180,404226,76021 +h1,9656:7246811,32090620:0,0,0 +g1,9656:8195248,32090620 +g1,9656:8511394,32090620 +g1,9656:8827540,32090620 +g1,9656:9775977,32090620 +g1,9656:10408269,32090620 +h1,9656:12937434,32090620:0,0,0 +k1,9656:31966990,32090620:19029556 +g1,9656:31966990,32090620 +) +(1,9656:7246811,32756798:24720180,404226,76021 +h1,9656:7246811,32756798:0,0,0 +g1,9656:8195248,32756798 +h1,9656:8511394,32756798:0,0,0 +k1,9656:31966990,32756798:23455596 +g1,9656:31966990,32756798 +) +] +) +g1,9657:31966991,32832819 +g1,9657:7246811,32832819 +g1,9657:7246811,32832819 +g1,9657:31966991,32832819 +g1,9657:31966991,32832819 +) +h1,9657:7246811,33029427:0,0,0 +] +) +] +r1,9660:32583029,34143539:26214,19783435,0 +) +] +) +) +g1,9660:32583029,33553715 +) +h1,9660:6630773,34169753:0,0,0 +(1,9662:6630773,36977321:25952256,32768,229376 +(1,9662:6630773,36977321:0,32768,229376 +(1,9662:6630773,36977321:5505024,32768,229376 +r1,9662:12135797,36977321:5505024,262144,229376 +) +k1,9662:6630773,36977321:-5505024 +) +(1,9662:6630773,36977321:25952256,32768,0 +r1,9662:32583029,36977321:25952256,32768,0 +) +) +(1,9662:6630773,38581649:25952256,606339,161218 +(1,9662:6630773,38581649:1974731,575668,14155 +g1,9662:6630773,38581649 +g1,9662:8605504,38581649 +) +g1,9662:12064232,38581649 +g1,9662:15314556,38581649 +g1,9662:17024259,38581649 +k1,9662:32583029,38581649:12125994 +g1,9662:32583029,38581649 +) +(1,9666:6630773,39816353:25952256,513147,134348 +k1,9665:8138806,39816353:147506 +k1,9665:10519125,39816353:147507 +k1,9665:11658191,39816353:147506 +k1,9665:14650616,39816353:147507 +k1,9665:17179700,39816353:147506 +k1,9665:19337195,39816353:147506 +k1,9665:22395156,39816353:147507 +k1,9665:24494324,39816353:147506 +k1,9665:26084277,39816353:147506 +k1,9665:26847822,39816353:147507 +k1,9665:28376172,39816353:147506 +k1,9665:30858727,39816353:147507 +k1,9665:31835263,39816353:147506 +k1,9665:32583029,39816353:0 +) +(1,9666:6630773,40657841:25952256,513147,134348 +k1,9665:8599222,40657841:205531 +k1,9665:10781974,40657841:205531 +k1,9665:15411185,40657841:205531 +k1,9665:15972576,40657841:205531 +k1,9665:17461302,40657841:205531 +k1,9665:19222002,40657841:205531 +k1,9665:22035212,40657841:205532 +k1,9665:23307014,40657841:205531 +k1,9665:24888146,40657841:205531 +k1,9665:27697422,40657841:205531 +k1,9665:28258813,40657841:205531 +k1,9665:30019513,40657841:205531 +k1,9665:31297213,40657841:205531 +k1,9665:32583029,40657841:0 +) +(1,9666:6630773,41499329:25952256,513147,134348 +k1,9665:7244607,41499329:257974 +k1,9665:8437123,41499329:257973 +k1,9665:9354389,41499329:257974 +k1,9665:13165724,41499329:257973 +k1,9665:16449495,41499329:257974 +k1,9665:17390353,41499329:257973 +k1,9665:20329405,41499329:257974 +k1,9665:21871884,41499329:257973 +k1,9665:25563289,41499329:257974 +k1,9665:29225858,41499329:257974 +k1,9665:30293201,41499329:257973 +k1,9665:32583029,41499329:0 +) +(1,9666:6630773,42340817:25952256,513147,134348 +k1,9665:9999324,42340817:241828 +k1,9665:10892579,42340817:241827 +k1,9665:12153492,42340817:241828 +k1,9665:13678515,42340817:241828 +k1,9665:15649183,42340817:241828 +k1,9665:20129223,42340817:241827 +k1,9665:21141754,42340817:241828 +k1,9665:26038604,42340817:241828 +k1,9665:26939724,42340817:241828 +k1,9665:28511932,42340817:241827 +k1,9665:30986572,42340817:241828 +k1,9665:32583029,42340817:0 +) +(1,9666:6630773,43182305:25952256,513147,126483 +k1,9665:7363728,43182305:201458 +k1,9665:10774483,43182305:201457 +k1,9665:12442637,43182305:201458 +k1,9665:13110055,43182305:201457 +k1,9665:14687114,43182305:201458 +k1,9665:16242546,43182305:201458 +k1,9665:20329633,43182305:201457 +k1,9665:20886951,43182305:201458 +k1,9665:22469252,43182305:201457 +k1,9665:23803172,43182305:201458 +k1,9665:25965467,43182305:201458 +k1,9665:26522784,43182305:201457 +k1,9665:28007437,43182305:201458 +k1,9665:30663217,43182305:201457 +k1,9665:31812326,43182305:201458 +k1,9665:32583029,43182305:0 +) +(1,9666:6630773,44023793:25952256,505283,134348 +g1,9665:9321025,44023793 +g1,9665:11075423,44023793 +g1,9665:13284641,44023793 +g1,9665:13839730,44023793 +k1,9666:32583029,44023793:16738553 +g1,9666:32583029,44023793 +) +(1,9668:6630773,44865281:25952256,513147,134348 +h1,9667:6630773,44865281:983040,0,0 +k1,9667:10201320,44865281:232798 +k1,9667:11425678,44865281:232798 +k1,9667:15751200,44865281:232799 +k1,9667:17056167,44865281:232798 +k1,9667:21208018,44865281:232798 +k1,9667:24753006,44865281:232798 +k1,9667:26004890,44865281:232799 +k1,9667:28395133,44865281:232798 +k1,9667:31923737,44865281:232798 +k1,9667:32583029,44865281:0 +) +(1,9668:6630773,45706769:25952256,513147,134348 +k1,9667:9149372,45706769:201901 +k1,9667:10034158,45706769:201901 +k1,9667:12459040,45706769:201901 +k1,9667:13320234,45706769:201902 +k1,9667:15724145,45706769:201901 +k1,9667:18389544,45706769:201901 +k1,9667:19219280,45706769:201901 +k1,9667:20624422,45706769:201901 +k1,9667:22770121,45706769:201901 +k1,9667:25204835,45706769:201902 +k1,9667:26398296,45706769:201901 +k1,9667:30519250,45706769:201901 +k1,9667:31380443,45706769:201901 +k1,9668:32583029,45706769:0 +) +] +(1,9668:32583029,45706769:0,0,0 +g1,9668:32583029,45706769 +) +) +] +(1,9668:6630773,47279633:25952256,0,0 +h1,9668:6630773,47279633:25952256,0,0 +) +] +h1,9668:4262630,4025873:0,0,0 ] !21278 }181 -Input:1239:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1240:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1241:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1242:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1243:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1244:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {182 -[1,9719:4262630,47279633:28320399,43253760,0 -(1,9719:4262630,4025873:0,0,0 -[1,9719:-473657,4025873:25952256,0,0 -(1,9719:-473657,-710414:25952256,0,0 -h1,9719:-473657,-710414:0,0,0 -(1,9719:-473657,-710414:0,0,0 -(1,9719:-473657,-710414:0,0,0 -g1,9719:-473657,-710414 -(1,9719:-473657,-710414:65781,0,65781 -g1,9719:-407876,-710414 -[1,9719:-407876,-644633:0,0,0 +[1,9724:4262630,47279633:28320399,43253760,0 +(1,9724:4262630,4025873:0,0,0 +[1,9724:-473657,4025873:25952256,0,0 +(1,9724:-473657,-710414:25952256,0,0 +h1,9724:-473657,-710414:0,0,0 +(1,9724:-473657,-710414:0,0,0 +(1,9724:-473657,-710414:0,0,0 +g1,9724:-473657,-710414 +(1,9724:-473657,-710414:65781,0,65781 +g1,9724:-407876,-710414 +[1,9724:-407876,-644633:0,0,0 ] ) -k1,9719:-473657,-710414:-65781 +k1,9724:-473657,-710414:-65781 ) ) -k1,9719:25478599,-710414:25952256 -g1,9719:25478599,-710414 +k1,9724:25478599,-710414:25952256 +g1,9724:25478599,-710414 ) ] ) -[1,9719:6630773,47279633:25952256,43253760,0 -[1,9719:6630773,4812305:25952256,786432,0 -(1,9719:6630773,4812305:25952256,505283,134348 -(1,9719:6630773,4812305:25952256,505283,134348 -g1,9719:3078558,4812305 -[1,9719:3078558,4812305:0,0,0 -(1,9719:3078558,2439708:0,1703936,0 -k1,9719:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9719:2537886,2439708:1179648,16384,0 +[1,9724:6630773,47279633:25952256,43253760,0 +[1,9724:6630773,4812305:25952256,786432,0 +(1,9724:6630773,4812305:25952256,505283,134348 +(1,9724:6630773,4812305:25952256,505283,134348 +g1,9724:3078558,4812305 +[1,9724:3078558,4812305:0,0,0 +(1,9724:3078558,2439708:0,1703936,0 +k1,9724:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9724:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9719:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9724:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9719:3078558,4812305:0,0,0 -(1,9719:3078558,2439708:0,1703936,0 -g1,9719:29030814,2439708 -g1,9719:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9719:36151628,1915420:16384,1179648,0 +[1,9724:3078558,4812305:0,0,0 +(1,9724:3078558,2439708:0,1703936,0 +g1,9724:29030814,2439708 +g1,9724:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9724:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9719:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9724:37855564,2439708:1179648,16384,0 ) ) -k1,9719:3078556,2439708:-34777008 +k1,9724:3078556,2439708:-34777008 ) ] -[1,9719:3078558,4812305:0,0,0 -(1,9719:3078558,49800853:0,16384,2228224 -k1,9719:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9719:2537886,49800853:1179648,16384,0 +[1,9724:3078558,4812305:0,0,0 +(1,9724:3078558,49800853:0,16384,2228224 +k1,9724:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9724:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9719:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9724:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 -) -] -) -) -) -] -[1,9719:3078558,4812305:0,0,0 -(1,9719:3078558,49800853:0,16384,2228224 -g1,9719:29030814,49800853 -g1,9719:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9719:36151628,51504789:16384,1179648,0 -) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 -) -] +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 +) +] +) +) +) +] +[1,9724:3078558,4812305:0,0,0 +(1,9724:3078558,49800853:0,16384,2228224 +g1,9724:29030814,49800853 +g1,9724:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9724:36151628,51504789:16384,1179648,0 +) +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 +) +] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9719:37855564,49800853:1179648,16384,0 -) -) -k1,9719:3078556,49800853:-34777008 -) -] -g1,9719:6630773,4812305 -g1,9719:6630773,4812305 -g1,9719:9311850,4812305 -g1,9719:11796319,4812305 -g1,9719:13205998,4812305 -g1,9719:16063367,4812305 -k1,9719:31387652,4812305:15324285 -) -) -] -[1,9719:6630773,45706769:25952256,40108032,0 -(1,9719:6630773,45706769:25952256,40108032,0 -(1,9719:6630773,45706769:0,0,0 -g1,9719:6630773,45706769 -) -[1,9719:6630773,45706769:25952256,40108032,0 -(1,9663:6630773,6254097:25952256,505283,134348 -k1,9662:8552803,6254097:178117 -k1,9662:10111109,6254097:178118 -k1,9662:11280786,6254097:178117 -k1,9662:12605128,6254097:178117 -k1,9662:15352912,6254097:178117 -k1,9662:16147068,6254097:178118 -k1,9662:18616979,6254097:178117 -k1,9662:21811063,6254097:178117 -k1,9662:23622994,6254097:178118 -k1,9662:24669463,6254097:178117 -k1,9662:26871332,6254097:178117 -k1,9662:28443400,6254097:178117 -k1,9662:30854330,6254097:178118 -k1,9662:31563944,6254097:178117 -k1,9662:32583029,6254097:0 -) -(1,9663:6630773,7095585:25952256,513147,134348 -k1,9662:10073380,7095585:139592 -k1,9662:10872263,7095585:139591 -k1,9662:13615600,7095585:139592 -k1,9662:16426439,7095585:139592 -k1,9662:19230069,7095585:139591 -k1,9662:20028953,7095585:139592 -k1,9662:23194341,7095585:139591 -k1,9662:24223912,7095585:139592 -k1,9662:27251676,7095585:139592 -k1,9662:29770879,7095585:139591 -k1,9662:30929556,7095585:139592 -k1,9662:32583029,7095585:0 -) -(1,9663:6630773,7937073:25952256,513147,134348 -k1,9662:8550373,7937073:181585 -k1,9662:9804127,7937073:181585 -k1,9662:12455764,7937073:181585 -k1,9662:13288777,7937073:181585 -k1,9662:15881432,7937073:181585 -k1,9662:16872387,7937073:181585 -k1,9662:19343799,7937073:181584 -k1,9662:22652107,7937073:181585 -k1,9662:23485120,7937073:181585 -k1,9662:26429048,7937073:181585 -k1,9662:29017115,7937073:181585 -k1,9662:30152249,7937073:181585 -k1,9662:31809049,7937073:181585 -k1,9663:32583029,7937073:0 -) -(1,9663:6630773,8778561:25952256,513147,134348 -k1,9662:8620249,8778561:216072 -k1,9662:10346271,8778561:216072 -k1,9662:12297736,8778561:216072 -k1,9662:15298433,8778561:216072 -k1,9662:16908456,8778561:216072 -k1,9662:19795775,8778561:216072 -k1,9662:24587571,8778561:216072 -k1,9662:28428439,8778561:216072 -k1,9662:29663596,8778561:216072 -k1,9662:31635378,8778561:216072 -k1,9662:32583029,8778561:0 -) -(1,9663:6630773,9620049:25952256,505283,126483 -g1,9662:9491419,9620049 -(1,9662:9491419,9620049:0,452978,115847 -r1,9662:11608244,9620049:2116825,568825,115847 -k1,9662:9491419,9620049:-2116825 -) -(1,9662:9491419,9620049:2116825,452978,115847 -k1,9662:9491419,9620049:3277 -h1,9662:11604967,9620049:0,411205,112570 -) -g1,9662:11807473,9620049 -g1,9662:13198147,9620049 -(1,9662:13198147,9620049:0,452978,115847 -r1,9662:16370107,9620049:3171960,568825,115847 -k1,9662:13198147,9620049:-3171960 -) -(1,9662:13198147,9620049:3171960,452978,115847 -k1,9662:13198147,9620049:3277 -h1,9662:16366830,9620049:0,411205,112570 -) -k1,9663:32583029,9620049:16039252 -g1,9663:32583029,9620049 -) -(1,9665:6630773,10461537:25952256,513147,134348 -h1,9664:6630773,10461537:983040,0,0 -g1,9664:8766591,10461537 -g1,9664:10454143,10461537 -g1,9664:12047323,10461537 -g1,9664:12602412,10461537 -g1,9664:15895596,10461537 -g1,9664:17662446,10461537 -g1,9664:18221468,10461537 -g1,9664:20454934,10461537 -g1,9664:22708717,10461537 -g1,9664:24675452,10461537 -g1,9664:26372834,10461537 -k1,9665:32583029,10461537:5032513 -g1,9665:32583029,10461537 -) -(1,9671:7202902,11827313:24807998,513147,134348 -(1,9665:7202902,11827313:983040,0,0 -g1,9665:8185942,11827313 -g1,9665:6875222,11827313 -g1,9665:6547542,11827313 -(1,9665:6547542,11827313:1310720,0,0 -k1,9665:7858262,11827313:1310720 -) -g1,9665:8185942,11827313 -) -k1,9666:9703458,11827313:320829 -k1,9666:11349424,11827313:320828 -k1,9666:12329545,11827313:320829 -k1,9666:17494139,11827313:320828 -k1,9666:22167214,11827313:320829 -k1,9666:23019539,11827313:320828 -k1,9666:25638716,11827313:320829 -k1,9666:27031713,11827313:320828 -k1,9666:29497535,11827313:320829 -k1,9666:30174224,11827313:320829 -k1,9666:31351608,11827313:320828 -k1,9666:32010900,11827313:0 -) -(1,9671:7202902,12668801:24807998,513147,134348 -k1,9666:9691819,12668801:199744 -k1,9667:11883858,12668801:199745 -k1,9667:13102687,12668801:199744 -k1,9667:15185281,12668801:199745 -k1,9667:17220688,12668801:199744 -k1,9667:17886394,12668801:199745 -k1,9667:19256611,12668801:199744 -k1,9667:20733652,12668801:199744 -k1,9667:21289257,12668801:199745 -k1,9667:23381681,12668801:199744 -k1,9667:24240718,12668801:199745 -k1,9667:26576280,12668801:199744 -k1,9667:28793223,12668801:199745 -k1,9667:29940618,12668801:199744 -k1,9667:32010900,12668801:0 -) -(1,9671:7202902,13510289:24807998,513147,126483 -k1,9667:8820931,13510289:184101 -k1,9668:10175506,13510289:184102 -k1,9668:12315857,13510289:184101 -k1,9668:14570897,13510289:184102 -k1,9668:16206620,13510289:184101 -k1,9668:17042149,13510289:184101 -k1,9668:18318736,13510289:184102 -k1,9668:19312207,13510289:184101 -k1,9668:21778928,13510289:184102 -k1,9668:25713654,13510289:184101 -k1,9668:26845407,13510289:184102 -k1,9668:28314014,13510289:184101 -k1,9668:32010900,13510289:0 -) -(1,9671:7202902,14351777:24807998,513147,134348 -k1,9668:8584894,14351777:186615 -k1,9669:11477490,14351777:186614 -k1,9669:12122202,14351777:186615 -k1,9669:12840313,14351777:186614 -k1,9669:15656888,14351777:186615 -k1,9669:16791153,14351777:186614 -k1,9669:18192137,14351777:186602 -k1,9669:20668580,14351777:186615 -k1,9669:21506622,14351777:186614 -k1,9669:22671690,14351777:186615 -k1,9669:25343429,14351777:186614 -k1,9669:29846901,14351777:186615 -k1,9671:32010900,14351777:0 -) -(1,9671:7202902,15193265:24807998,513147,134348 -g1,9669:8813121,15193265 -g1,9669:9821720,15193265 -g1,9670:11569565,15193265 -g1,9670:13323963,15193265 -g1,9670:14182484,15193265 -g1,9670:16341239,15193265 -g1,9670:17920656,15193265 -k1,9671:32010900,15193265:12925014 -g1,9671:32010900,15193265 -) -(1,9674:6630773,16559041:25952256,513147,134348 -h1,9673:6630773,16559041:983040,0,0 -k1,9673:8729639,16559041:162277 -k1,9673:9939181,16559041:162277 -k1,9673:11385964,16559041:162277 -k1,9673:13945548,16559041:162277 -k1,9673:16892450,16559041:162277 -k1,9673:18046287,16559041:162277 -k1,9673:21620369,16559041:162278 -k1,9673:23637315,16559041:162277 -k1,9673:24608962,16559041:162277 -k1,9673:25790324,16559041:162277 -k1,9673:27507770,16559041:162277 -k1,9673:28329339,16559041:162277 -k1,9673:29510701,16559041:162277 -k1,9673:32583029,16559041:0 -) -(1,9674:6630773,17400529:25952256,513147,134348 -k1,9673:9271975,17400529:262245 -k1,9673:11088734,17400529:262245 -k1,9673:14031402,17400529:262245 -k1,9673:15687597,17400529:262244 -k1,9673:16968927,17400529:262245 -k1,9673:18902995,17400529:262245 -k1,9673:20551326,17400529:262245 -k1,9673:22965773,17400529:262245 -k1,9673:23895174,17400529:262245 -k1,9673:24745932,17400529:262245 -k1,9673:27020131,17400529:262244 -k1,9673:29540091,17400529:262245 -k1,9673:31298523,17400529:262245 -k1,9673:32583029,17400529:0 -) -(1,9674:6630773,18242017:25952256,513147,134348 -k1,9673:9925804,18242017:269234 -k1,9673:10881199,18242017:269233 -k1,9673:13989453,18242017:269234 -k1,9673:15068057,18242017:269234 -k1,9673:18099633,18242017:269233 -k1,9673:20085255,18242017:269234 -k1,9673:21013780,18242017:269233 -k1,9673:23746512,18242017:269234 -k1,9673:25258309,18242017:269234 -k1,9673:28502221,18242017:269233 -k1,9673:29962900,18242017:269234 -k1,9673:32583029,18242017:0 -) -(1,9674:6630773,19083505:25952256,426639,7863 -k1,9674:32583029,19083505:23470408 -g1,9674:32583029,19083505 -) -(1,9676:6630773,19924993:25952256,513147,134348 -h1,9675:6630773,19924993:983040,0,0 -k1,9675:8288183,19924993:259527 -k1,9675:9648775,19924993:259587 -k1,9675:11492368,19924993:259588 -k1,9675:14278368,19924993:259587 -k1,9675:15485607,19924993:259588 -k1,9675:16764279,19924993:259587 -k1,9675:21867633,19924993:259588 -k1,9675:26479466,19924993:259587 -k1,9675:29949663,19924993:259588 -k1,9675:31281420,19924993:259588 -k1,9675:32227169,19924993:259587 -k1,9675:32583029,19924993:0 -) -(1,9676:6630773,20766481:25952256,505283,126483 -k1,9675:9052986,20766481:176294 -k1,9675:10513786,20766481:176294 -k1,9675:11791084,20766481:176293 -k1,9675:14396798,20766481:176294 -k1,9675:15960489,20766481:176294 -k1,9675:17155868,20766481:176294 -k1,9675:19188797,20766481:176294 -k1,9675:22275544,20766481:176293 -k1,9675:22866658,20766481:176271 -k1,9675:25899666,20766481:176294 -k1,9675:28747207,20766481:176294 -k1,9675:32583029,20766481:0 -) -(1,9676:6630773,21607969:25952256,513147,126483 -k1,9675:8036052,21607969:208592 -k1,9675:9443297,21607969:208591 -k1,9675:11253589,21607969:208592 -k1,9675:13962379,21607969:208591 -k1,9675:17155481,21607969:208592 -k1,9675:17895569,21607969:208591 -k1,9675:19971937,21607969:208592 -k1,9675:21107863,21607969:208592 -k1,9675:22507899,21607969:208591 -k1,9675:23072351,21607969:208592 -k1,9675:24931139,21607969:208591 -k1,9675:27128093,21607969:208592 -k1,9675:28528129,21607969:208591 -k1,9675:31593435,21607969:208592 -k1,9676:32583029,21607969:0 -) -(1,9676:6630773,22449457:25952256,513147,134348 -k1,9675:9198286,22449457:185935 -k1,9675:10778172,22449457:185935 -k1,9675:13050773,22449457:185935 -k1,9675:17486062,22449457:185935 -k1,9675:18203494,22449457:185935 -k1,9675:20257205,22449457:185935 -k1,9675:21370474,22449457:185935 -k1,9675:22753096,22449457:185935 -k1,9675:25272113,22449457:185935 -k1,9675:26783186,22449457:185935 -k1,9675:27500618,22449457:185935 -k1,9675:28971059,22449457:185935 -k1,9675:29512854,22449457:185935 -k1,9675:31436804,22449457:185935 -k1,9675:32583029,22449457:0 -) -(1,9676:6630773,23290945:25952256,513147,134348 -k1,9675:8679777,23290945:171398 -k1,9675:9955456,23290945:171397 -k1,9675:10874620,23290945:171398 -k1,9675:12559244,23290945:171398 -k1,9675:13416803,23290945:171397 -k1,9675:13944061,23290945:171398 -k1,9675:16422326,23290945:171398 -k1,9675:18505408,23290945:171397 -k1,9675:19868251,23290945:171398 -k1,9675:21324155,23290945:171398 -k1,9675:22514637,23290945:171397 -k1,9675:25083342,23290945:171398 -k1,9675:27588477,23290945:171398 -k1,9675:28427030,23290945:171397 -(1,9675:28427030,23290945:0,452978,115847 -r1,9675:30543855,23290945:2116825,568825,115847 -k1,9675:28427030,23290945:-2116825 -) -(1,9675:28427030,23290945:2116825,452978,115847 -k1,9675:28427030,23290945:3277 -h1,9675:30540578,23290945:0,411205,112570 -) -k1,9675:30715253,23290945:171398 -k1,9675:32583029,23290945:0 -) -(1,9676:6630773,24132433:25952256,513147,134348 -k1,9675:9566130,24132433:233308 -k1,9675:10608808,24132433:233308 -k1,9675:11861201,24132433:233308 -k1,9675:15497138,24132433:233308 -k1,9675:16389738,24132433:233308 -k1,9675:17642131,24132433:233308 -k1,9675:19148805,24132433:233309 -k1,9675:21173867,24132433:233308 -k1,9675:24837985,24132433:233308 -k1,9675:26914165,24132433:233308 -k1,9675:28015825,24132433:233308 -k1,9675:30017950,24132433:233308 -k1,9675:31298523,24132433:233308 -k1,9675:32583029,24132433:0 -) -(1,9676:6630773,24973921:25952256,513147,134348 -k1,9675:7875792,24973921:225934 -k1,9675:10439396,24973921:225934 -k1,9675:11332487,24973921:225935 -(1,9675:11332487,24973921:0,452978,115847 -r1,9675:13449312,24973921:2116825,568825,115847 -k1,9675:11332487,24973921:-2116825 -) -(1,9675:11332487,24973921:2116825,452978,115847 -k1,9675:11332487,24973921:3277 -h1,9675:13446035,24973921:0,411205,112570 -) -k1,9675:13675246,24973921:225934 -k1,9675:17312984,24973921:225934 -k1,9675:18558003,24973921:225934 -k1,9675:21219255,24973921:225934 -k1,9675:22544883,24973921:225934 -k1,9675:23422246,24973921:225935 -k1,9675:26410523,24973921:225934 -k1,9675:29033764,24973921:225934 -k1,9675:31923737,24973921:225934 -k1,9676:32583029,24973921:0 -) -(1,9676:6630773,25815409:25952256,513147,134348 -(1,9675:6630773,25815409:0,452978,115847 -r1,9675:8747598,25815409:2116825,568825,115847 -k1,9675:6630773,25815409:-2116825 -) -(1,9675:6630773,25815409:2116825,452978,115847 -k1,9675:6630773,25815409:3277 -h1,9675:8744321,25815409:0,411205,112570 -) -k1,9675:9006683,25815409:259085 -k1,9675:11120436,25815409:259084 -k1,9675:12188891,25815409:259085 -k1,9675:13467060,25815409:259084 -k1,9675:15281314,25815409:259085 -k1,9675:16199691,25815409:259085 -k1,9675:17477860,25815409:259084 -k1,9675:21139574,25815409:259085 -k1,9675:23777615,25815409:259084 -k1,9675:24790364,25815409:259085 -k1,9675:27356315,25815409:259084 -k1,9675:30641197,25815409:259085 -k1,9676:32583029,25815409:0 -) -(1,9676:6630773,26656897:25952256,513147,134348 -k1,9675:7993781,26656897:184015 -k1,9675:8939325,26656897:184016 -k1,9675:11562590,26656897:184015 -k1,9675:13601275,26656897:184016 -k1,9675:15160891,26656897:184015 -k1,9675:16154277,26656897:184016 -k1,9675:17357377,26656897:184015 -k1,9675:20613721,26656897:184016 -k1,9675:23003023,26656897:184015 -k1,9675:23838467,26656897:184016 -k1,9675:24378342,26656897:184015 -k1,9675:26435377,26656897:184016 -k1,9675:30073795,26656897:184015 -k1,9675:31276896,26656897:184016 -k1,9675:32583029,26656897:0 -) -(1,9676:6630773,27498385:25952256,513147,134348 -k1,9675:8235094,27498385:273940 -k1,9675:9262699,27498385:273941 -k1,9675:11843506,27498385:273940 -k1,9675:15143243,27498385:273940 -k1,9675:16521466,27498385:273941 -k1,9675:19529568,27498385:273940 -k1,9675:20822593,27498385:273940 -k1,9675:22196228,27498385:273941 -k1,9675:24324837,27498385:273940 -k1,9675:25408147,27498385:273940 -k1,9675:26701173,27498385:273941 -k1,9675:30377742,27498385:273940 -k1,9675:32583029,27498385:0 -) -(1,9676:6630773,28339873:25952256,513147,134348 -k1,9675:7539801,28339873:257600 -k1,9675:9447598,28339873:257600 -k1,9675:11147646,28339873:257601 -k1,9675:12561956,28339873:257600 -k1,9675:16100288,28339873:257600 -k1,9675:17549333,28339873:257600 -k1,9675:18826018,28339873:257600 -k1,9675:22015044,28339873:257601 -k1,9675:22931936,28339873:257600 -k1,9675:24208621,28339873:257600 -k1,9675:26756049,28339873:257600 -k1,9675:27672941,28339873:257600 -k1,9675:28286402,28339873:257601 -k1,9675:30238763,28339873:257600 -k1,9675:32051532,28339873:257600 -k1,9675:32583029,28339873:0 -) -(1,9676:6630773,29181361:25952256,513147,134348 -k1,9675:9000202,29181361:231645 -k1,9675:9883274,29181361:231644 -k1,9675:11134004,29181361:231645 -k1,9675:14996998,29181361:231644 -k1,9675:15856478,29181361:231645 -k1,9675:16841786,29181361:231644 -k1,9675:20272899,29181361:231645 -k1,9675:21523628,29181361:231644 -k1,9675:26494181,29181361:231645 -k1,9675:27385117,29181361:231644 -k1,9675:27972622,29181361:231645 -k1,9675:30511133,29181361:231644 -k1,9675:31734338,29181361:231645 -k1,9676:32583029,29181361:0 -) -(1,9676:6630773,30022849:25952256,513147,134348 -k1,9675:13096101,30022849:212538 -k1,9675:14684241,30022849:212539 -k1,9675:15658307,30022849:212538 -k1,9675:17379485,30022849:212539 -k1,9675:19503708,30022849:212538 -k1,9675:21039418,30022849:212538 -k1,9675:22271042,30022849:212539 -k1,9675:24038749,30022849:212538 -k1,9675:24910579,30022849:212538 -k1,9675:25893821,30022849:212539 -k1,9675:28065885,30022849:212538 -k1,9675:29039952,30022849:212539 -k1,9675:29608350,30022849:212538 -k1,9675:32583029,30022849:0 -) -(1,9676:6630773,30864337:25952256,505283,134348 -g1,9675:8695812,30864337 -g1,9675:10933211,30864337 -g1,9675:11818602,30864337 -g1,9675:12788534,30864337 -g1,9675:15766490,30864337 -g1,9675:16617147,30864337 -g1,9675:17835461,30864337 -k1,9676:32583029,30864337:12614371 -g1,9676:32583029,30864337 -) -(1,9678:6630773,31705825:25952256,513147,126483 -h1,9677:6630773,31705825:983040,0,0 -k1,9677:8833539,31705825:266177 -k1,9677:10405849,31705825:266177 -k1,9677:13040497,31705825:266177 -k1,9677:14463384,31705825:266177 -k1,9677:15388853,31705825:266177 -k1,9677:16674115,31705825:266177 -k1,9677:19724918,31705825:266178 -k1,9677:22325487,31705825:266177 -k1,9677:25375633,31705825:266177 -k1,9677:26257848,31705825:266177 -k1,9677:27112538,31705825:266177 -k1,9677:28575402,31705825:266177 -k1,9677:31923737,31705825:266177 -k1,9678:32583029,31705825:0 -) -(1,9678:6630773,32547313:25952256,513147,134348 -(1,9677:6630773,32547313:0,414482,115847 -r1,9677:8044174,32547313:1413401,530329,115847 -k1,9677:6630773,32547313:-1413401 -) -(1,9677:6630773,32547313:1413401,414482,115847 -k1,9677:6630773,32547313:3277 -h1,9677:8040897,32547313:0,411205,112570 -) -g1,9677:8243403,32547313 -g1,9677:10433616,32547313 -g1,9677:11917351,32547313 -g1,9677:12574677,32547313 -g1,9677:13305403,32547313 -g1,9677:14523717,32547313 -g1,9677:17029813,32547313 -g1,9677:18176693,32547313 -g1,9677:18731782,32547313 -k1,9678:32583029,32547313:11223253 -g1,9678:32583029,32547313 -) -v1,9680:6630773,33737779:0,393216,0 -(1,9690:6630773,36656770:25952256,3312207,196608 -g1,9690:6630773,36656770 -g1,9690:6630773,36656770 -g1,9690:6434165,36656770 -(1,9690:6434165,36656770:0,3312207,196608 -r1,9690:32779637,36656770:26345472,3508815,196608 -k1,9690:6434165,36656770:-26345472 -) -(1,9690:6434165,36656770:26345472,3312207,196608 -[1,9690:6630773,36656770:25952256,3115599,0 -(1,9682:6630773,33825335:25952256,284164,6290 -(1,9681:6630773,33825335:0,0,0 -g1,9681:6630773,33825335 -g1,9681:6630773,33825335 -g1,9681:6303093,33825335 -(1,9681:6303093,33825335:0,0,0 -) -g1,9681:6630773,33825335 -) -h1,9682:7895356,33825335:0,0,0 -k1,9682:32583028,33825335:24687672 -g1,9682:32583028,33825335 -) -(1,9689:6630773,34557049:25952256,410518,82312 -(1,9684:6630773,34557049:0,0,0 -g1,9684:6630773,34557049 -g1,9684:6630773,34557049 -g1,9684:6303093,34557049 -(1,9684:6303093,34557049:0,0,0 -) -g1,9684:6630773,34557049 -) -g1,9689:7579210,34557049 -g1,9689:10424521,34557049 -g1,9689:11689104,34557049 -h1,9689:12953687,34557049:0,0,0 -k1,9689:32583029,34557049:19629342 -g1,9689:32583029,34557049 -) -(1,9689:6630773,35223227:25952256,404226,76021 -h1,9689:6630773,35223227:0,0,0 -g1,9689:7579210,35223227 -h1,9689:12953687,35223227:0,0,0 -k1,9689:32583029,35223227:19629342 -g1,9689:32583029,35223227 -) -(1,9689:6630773,35889405:25952256,404226,101187 -h1,9689:6630773,35889405:0,0,0 -g1,9689:7579210,35889405 -g1,9689:11056813,35889405 -k1,9689:11056813,35889405:0 -h1,9689:17063581,35889405:0,0,0 -k1,9689:32583029,35889405:15519448 -g1,9689:32583029,35889405 -) -(1,9689:6630773,36555583:25952256,404226,101187 -h1,9689:6630773,36555583:0,0,0 -g1,9689:7579210,36555583 -g1,9689:12005250,36555583 -k1,9689:12005250,36555583:0 -h1,9689:16747436,36555583:0,0,0 -k1,9689:32583029,36555583:15835593 -g1,9689:32583029,36555583 -) -] -) -g1,9690:32583029,36656770 -g1,9690:6630773,36656770 -g1,9690:6630773,36656770 -g1,9690:32583029,36656770 -g1,9690:32583029,36656770 -) -h1,9690:6630773,36853378:0,0,0 -(1,9694:6630773,38219154:25952256,513147,126483 -h1,9693:6630773,38219154:983040,0,0 -k1,9693:8824536,38219154:257174 -k1,9693:10185992,38219154:257174 -k1,9693:11709322,38219154:257174 -k1,9693:13032767,38219154:257174 -k1,9693:15175412,38219154:257174 -k1,9693:20171494,38219154:257174 -k1,9693:21087961,38219154:257175 -k1,9693:23799458,38219154:257174 -k1,9693:25048192,38219154:257174 -k1,9693:28089335,38219154:257174 -k1,9693:28962547,38219154:257174 -k1,9693:30238806,38219154:257174 -k1,9693:32583029,38219154:0 -) -(1,9694:6630773,39060642:25952256,505283,134348 -g1,9693:8900284,39060642 -g1,9693:10547859,39060642 -g1,9693:12482481,39060642 -(1,9693:12482481,39060642:0,452978,115847 -r1,9693:15654441,39060642:3171960,568825,115847 -k1,9693:12482481,39060642:-3171960 -) -(1,9693:12482481,39060642:3171960,452978,115847 -k1,9693:12482481,39060642:3277 -h1,9693:15651164,39060642:0,411205,112570 -) -k1,9694:32583029,39060642:16754918 -g1,9694:32583029,39060642 -) -v1,9696:6630773,40251108:0,393216,0 -(1,9704:6630773,41964096:25952256,2106204,196608 -g1,9704:6630773,41964096 -g1,9704:6630773,41964096 -g1,9704:6434165,41964096 -(1,9704:6434165,41964096:0,2106204,196608 -r1,9704:32779637,41964096:26345472,2302812,196608 -k1,9704:6434165,41964096:-26345472 -) -(1,9704:6434165,41964096:26345472,2106204,196608 -[1,9704:6630773,41964096:25952256,1909596,0 -(1,9698:6630773,40458726:25952256,404226,76021 -(1,9697:6630773,40458726:0,0,0 -g1,9697:6630773,40458726 -g1,9697:6630773,40458726 -g1,9697:6303093,40458726 -(1,9697:6303093,40458726:0,0,0 -) -g1,9697:6630773,40458726 -) -k1,9698:6630773,40458726:0 -h1,9698:10740667,40458726:0,0,0 -k1,9698:32583029,40458726:21842362 -g1,9698:32583029,40458726 -) -(1,9703:6630773,41190440:25952256,410518,76021 -(1,9700:6630773,41190440:0,0,0 -g1,9700:6630773,41190440 -g1,9700:6630773,41190440 -g1,9700:6303093,41190440 -(1,9700:6303093,41190440:0,0,0 -) -g1,9700:6630773,41190440 -) -g1,9703:7579210,41190440 -g1,9703:8843793,41190440 -g1,9703:12005250,41190440 -g1,9703:12321396,41190440 -g1,9703:12637542,41190440 -g1,9703:12953688,41190440 -g1,9703:13269834,41190440 -g1,9703:17379728,41190440 -g1,9703:17695874,41190440 -g1,9703:22121914,41190440 -g1,9703:26231808,41190440 -g1,9703:26547954,41190440 -h1,9703:30341702,41190440:0,0,0 -k1,9703:32583029,41190440:2241327 -g1,9703:32583029,41190440 -) -(1,9703:6630773,41856618:25952256,410518,107478 -h1,9703:6630773,41856618:0,0,0 -g1,9703:7579210,41856618 -g1,9703:8843793,41856618 -g1,9703:12321396,41856618 -g1,9703:13585979,41856618 -g1,9703:16747436,41856618 -g1,9703:18328165,41856618 -g1,9703:19592748,41856618 -g1,9703:21805768,41856618 -h1,9703:23070351,41856618:0,0,0 -k1,9703:32583029,41856618:9512678 -g1,9703:32583029,41856618 -) -] -) -g1,9704:32583029,41964096 -g1,9704:6630773,41964096 -g1,9704:6630773,41964096 -g1,9704:32583029,41964096 -g1,9704:32583029,41964096 -) -h1,9704:6630773,42160704:0,0,0 -(1,9708:6630773,43526480:25952256,513147,134348 -h1,9707:6630773,43526480:983040,0,0 -k1,9707:8799775,43526480:232413 -k1,9707:10136470,43526480:232413 -k1,9707:11654698,43526480:232412 -k1,9707:12979596,43526480:232413 -(1,9707:12979596,43526480:0,452978,115847 -r1,9707:16151556,43526480:3171960,568825,115847 -k1,9707:12979596,43526480:-3171960 -) -(1,9707:12979596,43526480:3171960,452978,115847 -k1,9707:12979596,43526480:3277 -h1,9707:16148279,43526480:0,411205,112570 -) -k1,9707:16383969,43526480:232413 -k1,9707:17267810,43526480:232413 -k1,9707:19316226,43526480:232413 -k1,9707:20314755,43526480:232413 -k1,9707:23505462,43526480:232412 -k1,9707:26718452,43526480:232413 -k1,9707:30201451,43526480:232413 -k1,9707:32583029,43526480:0 -) -(1,9708:6630773,44367968:25952256,513147,134348 -g1,9707:7777653,44367968 -g1,9707:10266710,44367968 -g1,9707:11125231,44367968 -g1,9707:11680320,44367968 -g1,9707:13574310,44367968 -k1,9708:32583030,44367968:17279880 -g1,9708:32583030,44367968 -) -v1,9710:6630773,45558434:0,393216,0 -] -(1,9719:32583029,45706769:0,0,0 -g1,9719:32583029,45706769 -) -) -] -(1,9719:6630773,47279633:25952256,0,0 -h1,9719:6630773,47279633:25952256,0,0 -) -] -h1,9719:4262630,4025873:0,0,0 -] -!24998 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9724:37855564,49800853:1179648,16384,0 +) +) +k1,9724:3078556,49800853:-34777008 +) +] +g1,9724:6630773,4812305 +g1,9724:6630773,4812305 +g1,9724:9311850,4812305 +g1,9724:11796319,4812305 +g1,9724:13205998,4812305 +g1,9724:16063367,4812305 +k1,9724:31387652,4812305:15324285 +) +) +] +[1,9724:6630773,45706769:25952256,40108032,0 +(1,9724:6630773,45706769:25952256,40108032,0 +(1,9724:6630773,45706769:0,0,0 +g1,9724:6630773,45706769 +) +[1,9724:6630773,45706769:25952256,40108032,0 +(1,9668:6630773,6254097:25952256,505283,134348 +k1,9667:8552803,6254097:178117 +k1,9667:10111109,6254097:178118 +k1,9667:11280786,6254097:178117 +k1,9667:12605128,6254097:178117 +k1,9667:15352912,6254097:178117 +k1,9667:16147068,6254097:178118 +k1,9667:18616979,6254097:178117 +k1,9667:21811063,6254097:178117 +k1,9667:23622994,6254097:178118 +k1,9667:24669463,6254097:178117 +k1,9667:26871332,6254097:178117 +k1,9667:28443400,6254097:178117 +k1,9667:30854330,6254097:178118 +k1,9667:31563944,6254097:178117 +k1,9667:32583029,6254097:0 +) +(1,9668:6630773,7095585:25952256,513147,134348 +k1,9667:10073380,7095585:139592 +k1,9667:10872263,7095585:139591 +k1,9667:13615600,7095585:139592 +k1,9667:16426439,7095585:139592 +k1,9667:19230069,7095585:139591 +k1,9667:20028953,7095585:139592 +k1,9667:23194341,7095585:139591 +k1,9667:24223912,7095585:139592 +k1,9667:27251676,7095585:139592 +k1,9667:29770879,7095585:139591 +k1,9667:30929556,7095585:139592 +k1,9667:32583029,7095585:0 +) +(1,9668:6630773,7937073:25952256,513147,134348 +k1,9667:8550373,7937073:181585 +k1,9667:9804127,7937073:181585 +k1,9667:12455764,7937073:181585 +k1,9667:13288777,7937073:181585 +k1,9667:15881432,7937073:181585 +k1,9667:16872387,7937073:181585 +k1,9667:19343799,7937073:181584 +k1,9667:22652107,7937073:181585 +k1,9667:23485120,7937073:181585 +k1,9667:26429048,7937073:181585 +k1,9667:29017115,7937073:181585 +k1,9667:30152249,7937073:181585 +k1,9667:31809049,7937073:181585 +k1,9668:32583029,7937073:0 +) +(1,9668:6630773,8778561:25952256,513147,134348 +k1,9667:8620249,8778561:216072 +k1,9667:10346271,8778561:216072 +k1,9667:12297736,8778561:216072 +k1,9667:15298433,8778561:216072 +k1,9667:16908456,8778561:216072 +k1,9667:19795775,8778561:216072 +k1,9667:24587571,8778561:216072 +k1,9667:28428439,8778561:216072 +k1,9667:29663596,8778561:216072 +k1,9667:31635378,8778561:216072 +k1,9667:32583029,8778561:0 +) +(1,9668:6630773,9620049:25952256,505283,126483 +g1,9667:9491419,9620049 +(1,9667:9491419,9620049:0,452978,115847 +r1,9667:11608244,9620049:2116825,568825,115847 +k1,9667:9491419,9620049:-2116825 +) +(1,9667:9491419,9620049:2116825,452978,115847 +k1,9667:9491419,9620049:3277 +h1,9667:11604967,9620049:0,411205,112570 +) +g1,9667:11807473,9620049 +g1,9667:13198147,9620049 +(1,9667:13198147,9620049:0,452978,115847 +r1,9667:16370107,9620049:3171960,568825,115847 +k1,9667:13198147,9620049:-3171960 +) +(1,9667:13198147,9620049:3171960,452978,115847 +k1,9667:13198147,9620049:3277 +h1,9667:16366830,9620049:0,411205,112570 +) +k1,9668:32583029,9620049:16039252 +g1,9668:32583029,9620049 +) +(1,9670:6630773,10461537:25952256,513147,126483 +h1,9669:6630773,10461537:983040,0,0 +g1,9669:8766591,10461537 +g1,9669:10454143,10461537 +g1,9669:12047323,10461537 +g1,9669:12602412,10461537 +g1,9669:15895596,10461537 +g1,9669:17662446,10461537 +(1,9669:17662446,10461537:3555328,485622,11795 +) +g1,9669:21417003,10461537 +(1,9669:21624097,10461537:3555328,485622,11795 +) +k1,9670:32583029,10461537:7022840 +g1,9670:32583029,10461537 +) +(1,9676:7202902,11827313:24807998,513147,134348 +(1,9670:7202902,11827313:983040,0,0 +g1,9670:8185942,11827313 +g1,9670:6875222,11827313 +g1,9670:6547542,11827313 +(1,9670:6547542,11827313:1310720,0,0 +k1,9670:7858262,11827313:1310720 +) +g1,9670:8185942,11827313 +) +k1,9671:9703458,11827313:320829 +k1,9671:11349424,11827313:320828 +k1,9671:12329545,11827313:320829 +k1,9671:17494139,11827313:320828 +k1,9671:22167214,11827313:320829 +k1,9671:23019539,11827313:320828 +k1,9671:25638716,11827313:320829 +k1,9671:27031713,11827313:320828 +k1,9671:29497535,11827313:320829 +k1,9671:30174224,11827313:320829 +k1,9671:31351608,11827313:320828 +k1,9671:32010900,11827313:0 +) +(1,9676:7202902,12668801:24807998,513147,134348 +k1,9671:9691819,12668801:199744 +k1,9672:11883858,12668801:199745 +k1,9672:13102687,12668801:199744 +k1,9672:15185281,12668801:199745 +k1,9672:17220688,12668801:199744 +k1,9672:17886394,12668801:199745 +k1,9672:19256611,12668801:199744 +k1,9672:20733652,12668801:199744 +k1,9672:21289257,12668801:199745 +k1,9672:23381681,12668801:199744 +k1,9672:24240718,12668801:199745 +k1,9672:26576280,12668801:199744 +k1,9672:28793223,12668801:199745 +k1,9672:29940618,12668801:199744 +k1,9672:32010900,12668801:0 +) +(1,9676:7202902,13510289:24807998,513147,126483 +k1,9672:8820931,13510289:184101 +k1,9673:10175506,13510289:184102 +k1,9673:12315857,13510289:184101 +k1,9673:14570897,13510289:184102 +k1,9673:16206620,13510289:184101 +k1,9673:17042149,13510289:184101 +k1,9673:18318736,13510289:184102 +k1,9673:19312207,13510289:184101 +k1,9673:21778928,13510289:184102 +k1,9673:25713654,13510289:184101 +k1,9673:26845407,13510289:184102 +k1,9673:28314014,13510289:184101 +k1,9673:32010900,13510289:0 +) +(1,9676:7202902,14351777:24807998,513147,134348 +k1,9673:8549835,14351777:151556 +k1,9674:11407372,14351777:151555 +k1,9674:12017025,14351777:151556 +k1,9674:12700078,14351777:151556 +k1,9674:15481593,14351777:151555 +k1,9674:16580800,14351777:151556 +k1,9674:17946690,14351777:151508 +k1,9674:20388074,14351777:151556 +k1,9674:21191058,14351777:151556 +k1,9674:22321067,14351777:151556 +k1,9674:24957747,14351777:151555 +k1,9674:29426160,14351777:151556 +k1,9676:32010900,14351777:0 +) +(1,9676:7202902,15193265:24807998,513147,134348 +g1,9674:8392380,15193265 +g1,9674:9400979,15193265 +g1,9675:11148824,15193265 +g1,9675:12903222,15193265 +g1,9675:13761743,15193265 +g1,9675:15920498,15193265 +g1,9675:17499915,15193265 +k1,9676:32010900,15193265:13345755 +g1,9676:32010900,15193265 +) +(1,9679:6630773,16559041:25952256,513147,134348 +h1,9678:6630773,16559041:983040,0,0 +k1,9678:8729639,16559041:162277 +k1,9678:9939181,16559041:162277 +k1,9678:11385964,16559041:162277 +k1,9678:13945548,16559041:162277 +k1,9678:16892450,16559041:162277 +k1,9678:18046287,16559041:162277 +k1,9678:21620369,16559041:162278 +k1,9678:23637315,16559041:162277 +k1,9678:24608962,16559041:162277 +k1,9678:25790324,16559041:162277 +k1,9678:27507770,16559041:162277 +k1,9678:28329339,16559041:162277 +k1,9678:29510701,16559041:162277 +k1,9678:32583029,16559041:0 +) +(1,9679:6630773,17400529:25952256,513147,134348 +k1,9678:9271975,17400529:262245 +k1,9678:11088734,17400529:262245 +k1,9678:14031402,17400529:262245 +k1,9678:15687597,17400529:262244 +k1,9678:16968927,17400529:262245 +k1,9678:18902995,17400529:262245 +k1,9678:20551326,17400529:262245 +k1,9678:22965773,17400529:262245 +k1,9678:23895174,17400529:262245 +k1,9678:24745932,17400529:262245 +k1,9678:27020131,17400529:262244 +k1,9678:29540091,17400529:262245 +k1,9678:31298523,17400529:262245 +k1,9678:32583029,17400529:0 +) +(1,9679:6630773,18242017:25952256,513147,134348 +k1,9678:9925804,18242017:269234 +k1,9678:10881199,18242017:269233 +k1,9678:13989453,18242017:269234 +k1,9678:15068057,18242017:269234 +k1,9678:18099633,18242017:269233 +k1,9678:20085255,18242017:269234 +k1,9678:21013780,18242017:269233 +k1,9678:23746512,18242017:269234 +k1,9678:25258309,18242017:269234 +k1,9678:28502221,18242017:269233 +k1,9678:29962900,18242017:269234 +k1,9678:32583029,18242017:0 +) +(1,9679:6630773,19083505:25952256,426639,7863 +k1,9679:32583029,19083505:23470408 +g1,9679:32583029,19083505 +) +(1,9681:6630773,19924993:25952256,513147,134348 +h1,9680:6630773,19924993:983040,0,0 +k1,9680:8288183,19924993:259527 +k1,9680:9648775,19924993:259587 +k1,9680:11492368,19924993:259588 +k1,9680:14278368,19924993:259587 +k1,9680:15485607,19924993:259588 +k1,9680:16764279,19924993:259587 +k1,9680:21867633,19924993:259588 +k1,9680:26479466,19924993:259587 +k1,9680:29949663,19924993:259588 +k1,9680:31281420,19924993:259588 +k1,9680:32227169,19924993:259587 +k1,9680:32583029,19924993:0 +) +(1,9681:6630773,20766481:25952256,505283,126483 +k1,9680:9052986,20766481:176294 +k1,9680:10513786,20766481:176294 +k1,9680:11791084,20766481:176293 +k1,9680:14396798,20766481:176294 +k1,9680:15960489,20766481:176294 +k1,9680:17155868,20766481:176294 +k1,9680:19188797,20766481:176294 +k1,9680:22275544,20766481:176293 +k1,9680:22866658,20766481:176271 +k1,9680:25899666,20766481:176294 +k1,9680:28747207,20766481:176294 +k1,9680:32583029,20766481:0 +) +(1,9681:6630773,21607969:25952256,513147,126483 +k1,9680:8036052,21607969:208592 +k1,9680:9443297,21607969:208591 +k1,9680:11253589,21607969:208592 +k1,9680:13962379,21607969:208591 +k1,9680:17155481,21607969:208592 +k1,9680:17895569,21607969:208591 +k1,9680:19971937,21607969:208592 +k1,9680:21107863,21607969:208592 +k1,9680:22507899,21607969:208591 +k1,9680:23072351,21607969:208592 +k1,9680:24931139,21607969:208591 +k1,9680:27128093,21607969:208592 +k1,9680:28528129,21607969:208591 +k1,9680:31593435,21607969:208592 +k1,9681:32583029,21607969:0 +) +(1,9681:6630773,22449457:25952256,513147,134348 +k1,9680:9198286,22449457:185935 +k1,9680:10778172,22449457:185935 +k1,9680:13050773,22449457:185935 +k1,9680:17486062,22449457:185935 +k1,9680:18203494,22449457:185935 +k1,9680:20257205,22449457:185935 +k1,9680:21370474,22449457:185935 +k1,9680:22753096,22449457:185935 +k1,9680:25272113,22449457:185935 +k1,9680:26783186,22449457:185935 +k1,9680:27500618,22449457:185935 +k1,9680:28971059,22449457:185935 +k1,9680:29512854,22449457:185935 +k1,9680:31436804,22449457:185935 +k1,9680:32583029,22449457:0 +) +(1,9681:6630773,23290945:25952256,513147,134348 +k1,9680:8679777,23290945:171398 +k1,9680:9955456,23290945:171397 +k1,9680:10874620,23290945:171398 +k1,9680:12559244,23290945:171398 +k1,9680:13416803,23290945:171397 +k1,9680:13944061,23290945:171398 +k1,9680:16422326,23290945:171398 +k1,9680:18505408,23290945:171397 +k1,9680:19868251,23290945:171398 +k1,9680:21324155,23290945:171398 +k1,9680:22514637,23290945:171397 +k1,9680:25083342,23290945:171398 +k1,9680:27588477,23290945:171398 +k1,9680:28427030,23290945:171397 +(1,9680:28427030,23290945:0,452978,115847 +r1,9680:30543855,23290945:2116825,568825,115847 +k1,9680:28427030,23290945:-2116825 +) +(1,9680:28427030,23290945:2116825,452978,115847 +k1,9680:28427030,23290945:3277 +h1,9680:30540578,23290945:0,411205,112570 +) +k1,9680:30715253,23290945:171398 +k1,9680:32583029,23290945:0 +) +(1,9681:6630773,24132433:25952256,513147,134348 +k1,9680:9566130,24132433:233308 +k1,9680:10608808,24132433:233308 +k1,9680:11861201,24132433:233308 +k1,9680:15497138,24132433:233308 +k1,9680:16389738,24132433:233308 +k1,9680:17642131,24132433:233308 +k1,9680:19148805,24132433:233309 +k1,9680:21173867,24132433:233308 +k1,9680:24837985,24132433:233308 +k1,9680:26914165,24132433:233308 +k1,9680:28015825,24132433:233308 +k1,9680:30017950,24132433:233308 +k1,9680:31298523,24132433:233308 +k1,9680:32583029,24132433:0 +) +(1,9681:6630773,24973921:25952256,513147,134348 +k1,9680:7875792,24973921:225934 +k1,9680:10439396,24973921:225934 +k1,9680:11332487,24973921:225935 +(1,9680:11332487,24973921:0,452978,115847 +r1,9680:13449312,24973921:2116825,568825,115847 +k1,9680:11332487,24973921:-2116825 +) +(1,9680:11332487,24973921:2116825,452978,115847 +k1,9680:11332487,24973921:3277 +h1,9680:13446035,24973921:0,411205,112570 +) +k1,9680:13675246,24973921:225934 +k1,9680:17312984,24973921:225934 +k1,9680:18558003,24973921:225934 +k1,9680:21219255,24973921:225934 +k1,9680:22544883,24973921:225934 +k1,9680:23422246,24973921:225935 +k1,9680:26410523,24973921:225934 +k1,9680:29033764,24973921:225934 +k1,9680:31923737,24973921:225934 +k1,9681:32583029,24973921:0 +) +(1,9681:6630773,25815409:25952256,513147,134348 +(1,9680:6630773,25815409:0,452978,115847 +r1,9680:8747598,25815409:2116825,568825,115847 +k1,9680:6630773,25815409:-2116825 +) +(1,9680:6630773,25815409:2116825,452978,115847 +k1,9680:6630773,25815409:3277 +h1,9680:8744321,25815409:0,411205,112570 +) +k1,9680:8926183,25815409:178585 +k1,9680:10959436,25815409:178584 +k1,9680:11947391,25815409:178585 +k1,9680:13145060,25815409:178584 +k1,9680:14878814,25815409:178585 +k1,9680:15716690,25815409:178584 +k1,9680:16914360,25815409:178585 +k1,9680:20495574,25815409:178585 +k1,9680:23053115,25815409:178584 +k1,9680:23985364,25815409:178585 +k1,9680:26470815,25815409:178584 +k1,9680:29675197,25815409:178585 +k1,9680:32583029,25815409:0 +) +(1,9681:6630773,26656897:25952256,513147,134348 +k1,9680:7681163,26656897:288862 +k1,9680:10409276,26656897:288863 +k1,9680:12552807,26656897:288862 +k1,9680:14217270,26656897:288862 +k1,9680:15315503,26656897:288863 +k1,9680:16623450,26656897:288862 +k1,9680:19984640,26656897:288862 +k1,9680:22478789,26656897:288862 +k1,9680:23419080,26656897:288863 +k1,9680:24063802,26656897:288862 +k1,9680:26225683,26656897:288862 +k1,9680:29968949,26656897:288863 +k1,9680:31276896,26656897:288862 +k1,9680:32583029,26656897:0 +) +(1,9681:6630773,27498385:25952256,513147,134348 +k1,9680:8235094,27498385:273940 +k1,9680:9262699,27498385:273941 +k1,9680:11843506,27498385:273940 +k1,9680:15143243,27498385:273940 +k1,9680:16521466,27498385:273941 +k1,9680:19529568,27498385:273940 +k1,9680:20822593,27498385:273940 +k1,9680:22196228,27498385:273941 +k1,9680:24324837,27498385:273940 +k1,9680:25408147,27498385:273940 +k1,9680:26701173,27498385:273941 +k1,9680:30377742,27498385:273940 +k1,9680:32583029,27498385:0 +) +(1,9681:6630773,28339873:25952256,513147,134348 +k1,9680:7539801,28339873:257600 +k1,9680:9447598,28339873:257600 +k1,9680:11147646,28339873:257601 +k1,9680:12561956,28339873:257600 +k1,9680:16100288,28339873:257600 +k1,9680:17549333,28339873:257600 +k1,9680:18826018,28339873:257600 +k1,9680:22015044,28339873:257601 +k1,9680:22931936,28339873:257600 +k1,9680:24208621,28339873:257600 +k1,9680:26756049,28339873:257600 +k1,9680:27672941,28339873:257600 +k1,9680:28286402,28339873:257601 +k1,9680:30238763,28339873:257600 +k1,9680:32051532,28339873:257600 +k1,9680:32583029,28339873:0 +) +(1,9681:6630773,29181361:25952256,513147,134348 +k1,9680:8974542,29181361:205985 +k1,9680:9831954,29181361:205984 +k1,9680:11057024,29181361:205985 +k1,9680:14894358,29181361:205984 +k1,9680:15728178,29181361:205985 +k1,9680:16687827,29181361:205985 +k1,9680:20093279,29181361:205984 +k1,9680:21318349,29181361:205985 +k1,9680:26263242,29181361:205985 +k1,9680:27128518,29181361:205984 +k1,9680:27690363,29181361:205985 +k1,9680:30203214,29181361:205984 +k1,9680:31400759,29181361:205985 +k1,9681:32583029,29181361:0 +) +(1,9681:6630773,30022849:25952256,513147,134348 +k1,9680:12788183,30022849:238198 +k1,9680:14401982,30022849:238198 +k1,9680:15401709,30022849:238199 +k1,9680:17148546,30022849:238198 +k1,9680:19298429,30022849:238198 +k1,9680:20859799,30022849:238198 +k1,9680:22117083,30022849:238199 +k1,9680:23910450,30022849:238198 +k1,9680:24807940,30022849:238198 +k1,9680:25816841,30022849:238198 +k1,9680:28014566,30022849:238199 +k1,9680:29014292,30022849:238198 +k1,9680:29608350,30022849:238198 +k1,9680:32583029,30022849:0 +) +(1,9681:6630773,30864337:25952256,505283,134348 +g1,9680:8695812,30864337 +g1,9680:10933211,30864337 +g1,9680:11818602,30864337 +g1,9680:12788534,30864337 +g1,9680:15766490,30864337 +g1,9680:16617147,30864337 +g1,9680:17835461,30864337 +k1,9681:32583029,30864337:12614371 +g1,9681:32583029,30864337 +) +(1,9683:6630773,31705825:25952256,513147,126483 +h1,9682:6630773,31705825:983040,0,0 +k1,9682:8833539,31705825:266177 +k1,9682:10405849,31705825:266177 +k1,9682:13040497,31705825:266177 +k1,9682:14463384,31705825:266177 +k1,9682:15388853,31705825:266177 +k1,9682:16674115,31705825:266177 +k1,9682:19724918,31705825:266178 +k1,9682:22325487,31705825:266177 +k1,9682:25375633,31705825:266177 +k1,9682:26257848,31705825:266177 +k1,9682:27112538,31705825:266177 +k1,9682:28575402,31705825:266177 +k1,9682:31923737,31705825:266177 +k1,9683:32583029,31705825:0 +) +(1,9683:6630773,32547313:25952256,513147,134348 +(1,9682:6630773,32547313:0,414482,115847 +r1,9682:8044174,32547313:1413401,530329,115847 +k1,9682:6630773,32547313:-1413401 +) +(1,9682:6630773,32547313:1413401,414482,115847 +k1,9682:6630773,32547313:3277 +h1,9682:8040897,32547313:0,411205,112570 +) +g1,9682:8243403,32547313 +g1,9682:10433616,32547313 +g1,9682:11917351,32547313 +g1,9682:12574677,32547313 +g1,9682:13305403,32547313 +g1,9682:14523717,32547313 +g1,9682:17029813,32547313 +g1,9682:18176693,32547313 +g1,9682:18731782,32547313 +k1,9683:32583029,32547313:11223253 +g1,9683:32583029,32547313 +) +v1,9685:6630773,33737779:0,393216,0 +(1,9695:6630773,36656770:25952256,3312207,196608 +g1,9695:6630773,36656770 +g1,9695:6630773,36656770 +g1,9695:6434165,36656770 +(1,9695:6434165,36656770:0,3312207,196608 +r1,9695:32779637,36656770:26345472,3508815,196608 +k1,9695:6434165,36656770:-26345472 +) +(1,9695:6434165,36656770:26345472,3312207,196608 +[1,9695:6630773,36656770:25952256,3115599,0 +(1,9687:6630773,33825335:25952256,284164,6290 +(1,9686:6630773,33825335:0,0,0 +g1,9686:6630773,33825335 +g1,9686:6630773,33825335 +g1,9686:6303093,33825335 +(1,9686:6303093,33825335:0,0,0 +) +g1,9686:6630773,33825335 +) +h1,9687:7895356,33825335:0,0,0 +k1,9687:32583028,33825335:24687672 +g1,9687:32583028,33825335 +) +(1,9694:6630773,34557049:25952256,410518,82312 +(1,9689:6630773,34557049:0,0,0 +g1,9689:6630773,34557049 +g1,9689:6630773,34557049 +g1,9689:6303093,34557049 +(1,9689:6303093,34557049:0,0,0 +) +g1,9689:6630773,34557049 +) +g1,9694:7579210,34557049 +g1,9694:10424521,34557049 +g1,9694:11689104,34557049 +h1,9694:12953687,34557049:0,0,0 +k1,9694:32583029,34557049:19629342 +g1,9694:32583029,34557049 +) +(1,9694:6630773,35223227:25952256,404226,76021 +h1,9694:6630773,35223227:0,0,0 +g1,9694:7579210,35223227 +h1,9694:12953687,35223227:0,0,0 +k1,9694:32583029,35223227:19629342 +g1,9694:32583029,35223227 +) +(1,9694:6630773,35889405:25952256,410518,101187 +h1,9694:6630773,35889405:0,0,0 +g1,9694:7579210,35889405 +g1,9694:11056813,35889405 +k1,9694:11056813,35889405:0 +h1,9694:17063581,35889405:0,0,0 +k1,9694:32583029,35889405:15519448 +g1,9694:32583029,35889405 +) +(1,9694:6630773,36555583:25952256,404226,101187 +h1,9694:6630773,36555583:0,0,0 +g1,9694:7579210,36555583 +g1,9694:12005250,36555583 +k1,9694:12005250,36555583:0 +h1,9694:16747436,36555583:0,0,0 +k1,9694:32583029,36555583:15835593 +g1,9694:32583029,36555583 +) +] +) +g1,9695:32583029,36656770 +g1,9695:6630773,36656770 +g1,9695:6630773,36656770 +g1,9695:32583029,36656770 +g1,9695:32583029,36656770 +) +h1,9695:6630773,36853378:0,0,0 +(1,9699:6630773,38219154:25952256,513147,126483 +h1,9698:6630773,38219154:983040,0,0 +k1,9698:8824536,38219154:257174 +k1,9698:10185992,38219154:257174 +k1,9698:11709322,38219154:257174 +k1,9698:13032767,38219154:257174 +k1,9698:15175412,38219154:257174 +k1,9698:20171494,38219154:257174 +k1,9698:21087961,38219154:257175 +k1,9698:23799458,38219154:257174 +k1,9698:25048192,38219154:257174 +k1,9698:28089335,38219154:257174 +k1,9698:28962547,38219154:257174 +k1,9698:30238806,38219154:257174 +k1,9698:32583029,38219154:0 +) +(1,9699:6630773,39060642:25952256,505283,134348 +g1,9698:8900284,39060642 +g1,9698:10547859,39060642 +g1,9698:12482481,39060642 +(1,9698:12482481,39060642:0,452978,115847 +r1,9698:15654441,39060642:3171960,568825,115847 +k1,9698:12482481,39060642:-3171960 +) +(1,9698:12482481,39060642:3171960,452978,115847 +k1,9698:12482481,39060642:3277 +h1,9698:15651164,39060642:0,411205,112570 +) +k1,9699:32583029,39060642:16754918 +g1,9699:32583029,39060642 +) +v1,9701:6630773,40251108:0,393216,0 +(1,9709:6630773,41964096:25952256,2106204,196608 +g1,9709:6630773,41964096 +g1,9709:6630773,41964096 +g1,9709:6434165,41964096 +(1,9709:6434165,41964096:0,2106204,196608 +r1,9709:32779637,41964096:26345472,2302812,196608 +k1,9709:6434165,41964096:-26345472 +) +(1,9709:6434165,41964096:26345472,2106204,196608 +[1,9709:6630773,41964096:25952256,1909596,0 +(1,9703:6630773,40458726:25952256,404226,76021 +(1,9702:6630773,40458726:0,0,0 +g1,9702:6630773,40458726 +g1,9702:6630773,40458726 +g1,9702:6303093,40458726 +(1,9702:6303093,40458726:0,0,0 +) +g1,9702:6630773,40458726 +) +k1,9703:6630773,40458726:0 +h1,9703:10740667,40458726:0,0,0 +k1,9703:32583029,40458726:21842362 +g1,9703:32583029,40458726 +) +(1,9708:6630773,41190440:25952256,410518,76021 +(1,9705:6630773,41190440:0,0,0 +g1,9705:6630773,41190440 +g1,9705:6630773,41190440 +g1,9705:6303093,41190440 +(1,9705:6303093,41190440:0,0,0 +) +g1,9705:6630773,41190440 +) +g1,9708:7579210,41190440 +g1,9708:8843793,41190440 +g1,9708:12005250,41190440 +g1,9708:12321396,41190440 +g1,9708:12637542,41190440 +g1,9708:12953688,41190440 +g1,9708:13269834,41190440 +g1,9708:17379728,41190440 +g1,9708:17695874,41190440 +g1,9708:22121914,41190440 +g1,9708:26231808,41190440 +g1,9708:26547954,41190440 +h1,9708:30341702,41190440:0,0,0 +k1,9708:32583029,41190440:2241327 +g1,9708:32583029,41190440 +) +(1,9708:6630773,41856618:25952256,410518,107478 +h1,9708:6630773,41856618:0,0,0 +g1,9708:7579210,41856618 +g1,9708:8843793,41856618 +g1,9708:12321396,41856618 +g1,9708:13585979,41856618 +g1,9708:16747436,41856618 +g1,9708:18328165,41856618 +g1,9708:19592748,41856618 +g1,9708:21805768,41856618 +h1,9708:23070351,41856618:0,0,0 +k1,9708:32583029,41856618:9512678 +g1,9708:32583029,41856618 +) +] +) +g1,9709:32583029,41964096 +g1,9709:6630773,41964096 +g1,9709:6630773,41964096 +g1,9709:32583029,41964096 +g1,9709:32583029,41964096 +) +h1,9709:6630773,42160704:0,0,0 +(1,9713:6630773,43526480:25952256,513147,134348 +h1,9712:6630773,43526480:983040,0,0 +k1,9712:8799775,43526480:232413 +k1,9712:10136470,43526480:232413 +k1,9712:11654698,43526480:232412 +k1,9712:12979596,43526480:232413 +(1,9712:12979596,43526480:0,452978,115847 +r1,9712:16151556,43526480:3171960,568825,115847 +k1,9712:12979596,43526480:-3171960 +) +(1,9712:12979596,43526480:3171960,452978,115847 +k1,9712:12979596,43526480:3277 +h1,9712:16148279,43526480:0,411205,112570 +) +k1,9712:16383969,43526480:232413 +k1,9712:17267810,43526480:232413 +k1,9712:19316226,43526480:232413 +k1,9712:20314755,43526480:232413 +k1,9712:23505462,43526480:232412 +k1,9712:26718452,43526480:232413 +k1,9712:30201451,43526480:232413 +k1,9712:32583029,43526480:0 +) +(1,9713:6630773,44367968:25952256,513147,134348 +g1,9712:7777653,44367968 +g1,9712:10266710,44367968 +g1,9712:11125231,44367968 +g1,9712:11680320,44367968 +g1,9712:13574310,44367968 +k1,9713:32583030,44367968:17279880 +g1,9713:32583030,44367968 +) +v1,9715:6630773,45558434:0,393216,0 +] +(1,9724:32583029,45706769:0,0,0 +g1,9724:32583029,45706769 +) +) +] +(1,9724:6630773,47279633:25952256,0,0 +h1,9724:6630773,47279633:25952256,0,0 +) +] +h1,9724:4262630,4025873:0,0,0 +] +!24960 }182 -Input:1245:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1246:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1247:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1248:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1249:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1250:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {183 -[1,9893:4262630,47279633:28320399,43253760,0 -(1,9893:4262630,4025873:0,0,0 -[1,9893:-473657,4025873:25952256,0,0 -(1,9893:-473657,-710414:25952256,0,0 -h1,9893:-473657,-710414:0,0,0 -(1,9893:-473657,-710414:0,0,0 -(1,9893:-473657,-710414:0,0,0 -g1,9893:-473657,-710414 -(1,9893:-473657,-710414:65781,0,65781 -g1,9893:-407876,-710414 -[1,9893:-407876,-644633:0,0,0 +[1,9898:4262630,47279633:28320399,43253760,0 +(1,9898:4262630,4025873:0,0,0 +[1,9898:-473657,4025873:25952256,0,0 +(1,9898:-473657,-710414:25952256,0,0 +h1,9898:-473657,-710414:0,0,0 +(1,9898:-473657,-710414:0,0,0 +(1,9898:-473657,-710414:0,0,0 +g1,9898:-473657,-710414 +(1,9898:-473657,-710414:65781,0,65781 +g1,9898:-407876,-710414 +[1,9898:-407876,-644633:0,0,0 ] ) -k1,9893:-473657,-710414:-65781 +k1,9898:-473657,-710414:-65781 ) ) -k1,9893:25478599,-710414:25952256 -g1,9893:25478599,-710414 +k1,9898:25478599,-710414:25952256 +g1,9898:25478599,-710414 ) ] ) -[1,9893:6630773,47279633:25952256,43253760,0 -[1,9893:6630773,4812305:25952256,786432,0 -(1,9893:6630773,4812305:25952256,505283,134348 -(1,9893:6630773,4812305:25952256,505283,134348 -g1,9893:3078558,4812305 -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,2439708:0,1703936,0 -k1,9893:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9893:2537886,2439708:1179648,16384,0 +[1,9898:6630773,47279633:25952256,43253760,0 +[1,9898:6630773,4812305:25952256,786432,0 +(1,9898:6630773,4812305:25952256,505283,134348 +(1,9898:6630773,4812305:25952256,505283,134348 +g1,9898:3078558,4812305 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,2439708:0,1703936,0 +k1,9898:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9898:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9893:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9898:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,2439708:0,1703936,0 -g1,9893:29030814,2439708 -g1,9893:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9893:36151628,1915420:16384,1179648,0 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,2439708:0,1703936,0 +g1,9898:29030814,2439708 +g1,9898:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9898:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9893:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9898:37855564,2439708:1179648,16384,0 ) ) -k1,9893:3078556,2439708:-34777008 +k1,9898:3078556,2439708:-34777008 ) ] -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,49800853:0,16384,2228224 -k1,9893:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9893:2537886,49800853:1179648,16384,0 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,49800853:0,16384,2228224 +k1,9898:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9898:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9893:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9898:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,49800853:0,16384,2228224 -g1,9893:29030814,49800853 -g1,9893:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9893:36151628,51504789:16384,1179648,0 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,49800853:0,16384,2228224 +g1,9898:29030814,49800853 +g1,9898:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9898:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9893:37855564,49800853:1179648,16384,0 -) -) -k1,9893:3078556,49800853:-34777008 -) -] -g1,9893:6630773,4812305 -k1,9893:20873058,4812305:13046908 -g1,9893:22259799,4812305 -g1,9893:22908605,4812305 -g1,9893:26222760,4812305 -g1,9893:28614824,4812305 -g1,9893:30094627,4812305 -) -) -] -[1,9893:6630773,45706769:25952256,40108032,0 -(1,9893:6630773,45706769:25952256,40108032,0 -(1,9893:6630773,45706769:0,0,0 -g1,9893:6630773,45706769 -) -[1,9893:6630773,45706769:25952256,40108032,0 -v1,9719:6630773,6254097:0,393216,0 -(1,9719:6630773,8633263:25952256,2772382,196608 -g1,9719:6630773,8633263 -g1,9719:6630773,8633263 -g1,9719:6434165,8633263 -(1,9719:6434165,8633263:0,2772382,196608 -r1,9719:32779637,8633263:26345472,2968990,196608 -k1,9719:6434165,8633263:-26345472 -) -(1,9719:6434165,8633263:26345472,2772382,196608 -[1,9719:6630773,8633263:25952256,2575774,0 -(1,9712:6630773,6461715:25952256,404226,76021 -(1,9711:6630773,6461715:0,0,0 -g1,9711:6630773,6461715 -g1,9711:6630773,6461715 -g1,9711:6303093,6461715 -(1,9711:6303093,6461715:0,0,0 -) -g1,9711:6630773,6461715 -) -k1,9712:6630773,6461715:0 -g1,9712:11056813,6461715 -g1,9712:11689105,6461715 -h1,9712:13902125,6461715:0,0,0 -k1,9712:32583029,6461715:18680904 -g1,9712:32583029,6461715 -) -(1,9718:6630773,7193429:25952256,410518,101187 -(1,9714:6630773,7193429:0,0,0 -g1,9714:6630773,7193429 -g1,9714:6630773,7193429 -g1,9714:6303093,7193429 -(1,9714:6303093,7193429:0,0,0 -) -g1,9714:6630773,7193429 -) -g1,9718:7579210,7193429 -g1,9718:8843793,7193429 -g1,9718:12005250,7193429 -g1,9718:12321396,7193429 -g1,9718:12637542,7193429 -g1,9718:12953688,7193429 -g1,9718:13269834,7193429 -g1,9718:17695874,7193429 -g1,9718:19908894,7193429 -g1,9718:20225040,7193429 -g1,9718:20541186,7193429 -g1,9718:20857332,7193429 -g1,9718:21173478,7193429 -g1,9718:21489624,7193429 -g1,9718:21805770,7193429 -g1,9718:22121916,7193429 -g1,9718:23386499,7193429 -g1,9718:23702645,7193429 -g1,9718:24018791,7193429 -g1,9718:24334937,7193429 -g1,9718:24651083,7193429 -g1,9718:24967229,7193429 -g1,9718:25283375,7193429 -g1,9718:25599521,7193429 -g1,9718:25915667,7193429 -g1,9718:26231813,7193429 -g1,9718:26547959,7193429 -h1,9718:28444833,7193429:0,0,0 -k1,9718:32583029,7193429:4138196 -g1,9718:32583029,7193429 -) -(1,9718:6630773,7859607:25952256,404226,101187 -h1,9718:6630773,7859607:0,0,0 -g1,9718:7579210,7859607 -g1,9718:8843793,7859607 -g1,9718:12953687,7859607 -g1,9718:13269833,7859607 -h1,9718:15166707,7859607:0,0,0 -k1,9718:32583029,7859607:17416322 -g1,9718:32583029,7859607 -) -(1,9718:6630773,8525785:25952256,410518,107478 -h1,9718:6630773,8525785:0,0,0 -g1,9718:7579210,8525785 -g1,9718:8843793,8525785 -g1,9718:12321396,8525785 -g1,9718:13585979,8525785 -g1,9718:16747436,8525785 -g1,9718:18328165,8525785 -g1,9718:19592748,8525785 -g1,9718:21805768,8525785 -h1,9718:23070351,8525785:0,0,0 -k1,9718:32583029,8525785:9512678 -g1,9718:32583029,8525785 -) -] -) -g1,9719:32583029,8633263 -g1,9719:6630773,8633263 -g1,9719:6630773,8633263 -g1,9719:32583029,8633263 -g1,9719:32583029,8633263 -) -h1,9719:6630773,8829871:0,0,0 -(1,9723:6630773,10195647:25952256,513147,11795 -h1,9722:6630773,10195647:983040,0,0 -k1,9722:8697888,10195647:330411 -k1,9722:10583467,10195647:330410 -k1,9722:14720864,10195647:330411 -k1,9722:15582772,10195647:330411 -k1,9722:17951352,10195647:330410 -k1,9722:18967925,10195647:330411 -k1,9722:19654196,10195647:330411 -k1,9722:22959285,10195647:330410 -k1,9722:25267573,10195647:330411 -k1,9722:26214022,10195647:330411 -k1,9722:27315135,10195647:330410 -k1,9722:30424273,10195647:330411 -k1,9723:32583029,10195647:0 -) -(1,9723:6630773,11037135:25952256,513147,134348 -(1,9722:6630773,11037135:0,452978,115847 -r1,9722:9099310,11037135:2468537,568825,115847 -k1,9722:6630773,11037135:-2468537 -) -(1,9722:6630773,11037135:2468537,452978,115847 -k1,9722:6630773,11037135:3277 -h1,9722:9096033,11037135:0,411205,112570 -) -k1,9722:9536973,11037135:263993 -k1,9722:10997652,11037135:263992 -k1,9722:12863345,11037135:263993 -k1,9722:14748699,11037135:263993 -k1,9722:17997201,11037135:263992 -k1,9722:18912622,11037135:263993 -k1,9722:21769219,11037135:263993 -k1,9722:22692503,11037135:263992 -k1,9722:23727199,11037135:263993 -k1,9722:25950718,11037135:263993 -k1,9722:26874002,11037135:263992 -k1,9722:27493855,11037135:263993 -k1,9722:29041043,11037135:263993 -k1,9722:30058699,11037135:263992 -k1,9722:32051532,11037135:263993 -k1,9722:32583029,11037135:0 -) -(1,9723:6630773,11878623:25952256,513147,134348 -k1,9722:7462425,11878623:180224 -k1,9722:8839992,11878623:180224 -k1,9722:10039301,11878623:180224 -k1,9722:11502720,11878623:180224 -k1,9722:13238113,11878623:180224 -k1,9722:15156352,11878623:180224 -k1,9722:15988004,11878623:180224 -k1,9722:17187312,11878623:180223 -k1,9722:18922705,11878623:180224 -k1,9722:21881656,11878623:180224 -k1,9722:22721172,11878623:180224 -k1,9722:23920481,11878623:180224 -k1,9722:26233902,11878623:180224 -k1,9722:27232015,11878623:180224 -k1,9722:28431324,11878623:180224 -k1,9722:31027860,11878623:180224 -k1,9722:32583029,11878623:0 -) -(1,9723:6630773,12720111:25952256,513147,134348 -k1,9722:9851025,12720111:214771 -k1,9722:10597292,12720111:214770 -k1,9722:12506824,12720111:214771 -k1,9722:13483123,12720111:214771 -k1,9722:14716979,12720111:214771 -k1,9722:16671075,12720111:214770 -k1,9722:17545138,12720111:214771 -k1,9722:18778994,12720111:214771 -k1,9722:21947472,12720111:214770 -k1,9722:22821535,12720111:214771 -k1,9722:24055391,12720111:214771 -k1,9722:27244841,12720111:214771 -k1,9722:29611158,12720111:214770 -k1,9722:30845014,12720111:214771 -k1,9722:32583029,12720111:0 -) -(1,9723:6630773,13561599:25952256,513147,134348 -k1,9722:7526363,13561599:236298 -k1,9722:8781746,13561599:236298 -k1,9722:10301239,13561599:236298 -k1,9722:12092707,13561599:236299 -k1,9722:13951021,13561599:236298 -k1,9722:14935085,13561599:236298 -k1,9722:17136808,13561599:236298 -k1,9722:17985868,13561599:236298 -k1,9722:19241251,13561599:236298 -k1,9722:21016334,13561599:236298 -k1,9722:21911924,13561599:236298 -k1,9722:23167308,13561599:236299 -k1,9722:25555153,13561599:236298 -k1,9722:27281740,13561599:236298 -k1,9722:29788205,13561599:236298 -k1,9722:31227744,13561599:236298 -k1,9722:32583029,13561599:0 -) -(1,9723:6630773,14403087:25952256,505283,126483 -k1,9722:7924407,14403087:189352 -k1,9722:8861525,14403087:189352 -k1,9722:10628329,14403087:189352 -k1,9722:11503844,14403087:189353 -k1,9722:13768721,14403087:189352 -k1,9722:15529626,14403087:189352 -k1,9722:16335016,14403087:189352 -k1,9722:19061922,14403087:189352 -k1,9722:20454515,14403087:189352 -k1,9722:21999152,14403087:189352 -k1,9722:24144755,14403087:189353 -k1,9722:27179025,14403087:189352 -k1,9722:28721040,14403087:189352 -k1,9722:30573040,14403087:189352 -k1,9722:32583029,14403087:0 -) -(1,9723:6630773,15244575:25952256,513147,134348 -k1,9722:7186619,15244575:199986 -k1,9722:11011400,15244575:199985 -k1,9722:13906882,15244575:199986 -k1,9722:15298312,15244575:199985 -k1,9722:16517383,15244575:199986 -k1,9722:18000563,15244575:199985 -k1,9722:19929389,15244575:199986 -k1,9722:20595335,15244575:199985 -k1,9722:23176899,15244575:199986 -k1,9722:25386873,15244575:199985 -k1,9722:25942719,15244575:199986 -k1,9722:28896527,15244575:199985 -k1,9722:31052763,15244575:199986 -k1,9722:32583029,15244575:0 -) -(1,9723:6630773,16086063:25952256,505283,134348 -k1,9722:7535498,16086063:253297 -k1,9722:8536560,16086063:253296 -k1,9722:12165616,16086063:253297 -k1,9722:13372461,16086063:253296 -k1,9722:15286440,16086063:253297 -k1,9722:16937619,16086063:253296 -k1,9722:18394157,16086063:253297 -k1,9722:22139867,16086063:253296 -k1,9722:25054581,16086063:253297 -k1,9722:25959305,16086063:253296 -k1,9722:30245688,16086063:253297 -k1,9722:31829365,16086063:253296 -k1,9722:32583029,16086063:0 -) -(1,9723:6630773,16927551:25952256,505283,126483 -g1,9722:9062814,16927551 -g1,9722:10253603,16927551 -g1,9722:14654345,16927551 -g1,9722:15469612,16927551 -k1,9723:32583029,16927551:16524904 -g1,9723:32583029,16927551 -) -v1,9725:6630773,18118017:0,393216,0 -(1,9740:6630773,22528415:25952256,4803614,196608 -g1,9740:6630773,22528415 -g1,9740:6630773,22528415 -g1,9740:6434165,22528415 -(1,9740:6434165,22528415:0,4803614,196608 -r1,9740:32779637,22528415:26345472,5000222,196608 -k1,9740:6434165,22528415:-26345472 -) -(1,9740:6434165,22528415:26345472,4803614,196608 -[1,9740:6630773,22528415:25952256,4607006,0 -(1,9727:6630773,18309906:25952256,388497,9436 -(1,9726:6630773,18309906:0,0,0 -g1,9726:6630773,18309906 -g1,9726:6630773,18309906 -g1,9726:6303093,18309906 -(1,9726:6303093,18309906:0,0,0 -) -g1,9726:6630773,18309906 -) -g1,9727:7263065,18309906 -g1,9727:8211503,18309906 -h1,9727:9159940,18309906:0,0,0 -k1,9727:32583028,18309906:23423088 -g1,9727:32583028,18309906 -) -(1,9728:6630773,18976084:25952256,404226,76021 -h1,9728:6630773,18976084:0,0,0 -k1,9728:6630773,18976084:0 -h1,9728:9159938,18976084:0,0,0 -k1,9728:32583030,18976084:23423092 -g1,9728:32583030,18976084 -) -(1,9732:6630773,19707798:25952256,404226,76021 -(1,9730:6630773,19707798:0,0,0 -g1,9730:6630773,19707798 -g1,9730:6630773,19707798 -g1,9730:6303093,19707798 -(1,9730:6303093,19707798:0,0,0 -) -g1,9730:6630773,19707798 -) -g1,9732:7579210,19707798 -g1,9732:8843793,19707798 -h1,9732:11689104,19707798:0,0,0 -k1,9732:32583028,19707798:20893924 -g1,9732:32583028,19707798 -) -(1,9734:6630773,21029336:25952256,404226,101187 -(1,9733:6630773,21029336:0,0,0 -g1,9733:6630773,21029336 -g1,9733:6630773,21029336 -g1,9733:6303093,21029336 -(1,9733:6303093,21029336:0,0,0 -) -g1,9733:6630773,21029336 -) -k1,9734:6630773,21029336:0 -g1,9734:9476084,21029336 -g1,9734:10424522,21029336 -g1,9734:14534417,21029336 -k1,9734:14534417,21029336:0 -h1,9734:17379728,21029336:0,0,0 -k1,9734:32583029,21029336:15203301 -g1,9734:32583029,21029336 -) -(1,9735:6630773,21695514:25952256,404226,76021 -h1,9735:6630773,21695514:0,0,0 -k1,9735:6630773,21695514:0 -h1,9735:9159938,21695514:0,0,0 -k1,9735:32583030,21695514:23423092 -g1,9735:32583030,21695514 -) -(1,9739:6630773,22427228:25952256,404226,101187 -(1,9737:6630773,22427228:0,0,0 -g1,9737:6630773,22427228 -g1,9737:6630773,22427228 -g1,9737:6303093,22427228 -(1,9737:6303093,22427228:0,0,0 -) -g1,9737:6630773,22427228 -) -g1,9739:7579210,22427228 -g1,9739:8843793,22427228 -g1,9739:12005250,22427228 -h1,9739:14850561,22427228:0,0,0 -k1,9739:32583029,22427228:17732468 -g1,9739:32583029,22427228 -) -] -) -g1,9740:32583029,22528415 -g1,9740:6630773,22528415 -g1,9740:6630773,22528415 -g1,9740:32583029,22528415 -g1,9740:32583029,22528415 -) -h1,9740:6630773,22725023:0,0,0 -(1,9744:6630773,24090799:25952256,513147,134348 -h1,9743:6630773,24090799:983040,0,0 -k1,9743:9251938,24090799:230412 -k1,9743:10350702,24090799:230412 -k1,9743:12510495,24090799:230413 -k1,9743:13096767,24090799:230412 -k1,9743:14909218,24090799:230412 -k1,9743:17593953,24090799:230412 -k1,9743:20221673,24090799:230413 -k1,9743:21103513,24090799:230412 -(1,9743:21103513,24090799:0,452978,115847 -r1,9743:24275473,24090799:3171960,568825,115847 -k1,9743:21103513,24090799:-3171960 -) -(1,9743:21103513,24090799:3171960,452978,115847 -k1,9743:21103513,24090799:3277 -h1,9743:24272196,24090799:0,411205,112570 -) -k1,9743:24505885,24090799:230412 -k1,9743:27199796,24090799:230413 -k1,9743:30492705,24090799:230412 -k1,9743:31591469,24090799:230412 -k1,9743:32583029,24090799:0 -) -(1,9744:6630773,24932287:25952256,513147,134348 -k1,9743:8588285,24932287:222119 -k1,9743:11505900,24932287:222119 -(1,9743:11505900,24932287:0,459977,115847 -r1,9743:14677860,24932287:3171960,575824,115847 -k1,9743:11505900,24932287:-3171960 -) -(1,9743:11505900,24932287:3171960,459977,115847 -k1,9743:11505900,24932287:3277 -h1,9743:14674583,24932287:0,411205,112570 -) -k1,9743:14899978,24932287:222118 -k1,9743:16313542,24932287:222119 -k1,9743:17483312,24932287:222119 -k1,9743:18724516,24932287:222119 -k1,9743:21127018,24932287:222119 -k1,9743:24159320,24932287:222118 -k1,9743:25032867,24932287:222119 -k1,9743:26851443,24932287:222119 -k1,9743:27941914,24932287:222119 -k1,9743:29694298,24932287:222118 -k1,9743:30567845,24932287:222119 -k1,9743:32227169,24932287:222119 -k1,9744:32583029,24932287:0 -) -(1,9744:6630773,25773775:25952256,505283,134348 -(1,9743:6630773,25773775:0,452978,115847 -r1,9743:9099310,25773775:2468537,568825,115847 -k1,9743:6630773,25773775:-2468537 -) -(1,9743:6630773,25773775:2468537,452978,115847 -k1,9743:6630773,25773775:3277 -h1,9743:9096033,25773775:0,411205,112570 -) -k1,9743:9322388,25773775:223078 -k1,9743:11225808,25773775:223077 -k1,9743:12135048,25773775:223078 -k1,9743:13128829,25773775:223078 -k1,9743:18149141,25773775:223077 -k1,9743:21431440,25773775:223078 -(1,9743:21431440,25773775:0,459977,115847 -r1,9743:24603400,25773775:3171960,575824,115847 -k1,9743:21431440,25773775:-3171960 -) -(1,9743:21431440,25773775:3171960,459977,115847 -k1,9743:21431440,25773775:3277 -h1,9743:24600123,25773775:0,411205,112570 -) -k1,9743:24826477,25773775:223077 -k1,9743:26542465,25773775:223078 -k1,9743:27831814,25773775:223078 -k1,9743:30378142,25773775:223077 -k1,9743:31931601,25773775:223078 -k1,9743:32583029,25773775:0 -) -(1,9744:6630773,26615263:25952256,513147,134348 -g1,9743:8988758,26615263 -g1,9743:11477815,26615263 -g1,9743:12336336,26615263 -g1,9743:13554650,26615263 -g1,9743:15309048,26615263 -g1,9743:16376629,26615263 -g1,9743:18051073,26615263 -g1,9743:19479102,26615263 -k1,9744:32583029,26615263:10580136 -g1,9744:32583029,26615263 -) -v1,9746:6630773,27805729:0,393216,0 -(1,9752:6630773,29428016:25952256,2015503,196608 -g1,9752:6630773,29428016 -g1,9752:6630773,29428016 -g1,9752:6434165,29428016 -(1,9752:6434165,29428016:0,2015503,196608 -r1,9752:32779637,29428016:26345472,2212111,196608 -k1,9752:6434165,29428016:-26345472 -) -(1,9752:6434165,29428016:26345472,2015503,196608 -[1,9752:6630773,29428016:25952256,1818895,0 -(1,9748:6630773,28019639:25952256,410518,101187 -(1,9747:6630773,28019639:0,0,0 -g1,9747:6630773,28019639 -g1,9747:6630773,28019639 -g1,9747:6303093,28019639 -(1,9747:6303093,28019639:0,0,0 -) -g1,9747:6630773,28019639 -) -g1,9748:11056813,28019639 -g1,9748:12005251,28019639 -g1,9748:15799000,28019639 -h1,9748:16115146,28019639:0,0,0 -k1,9748:32583029,28019639:16467883 -g1,9748:32583029,28019639 -) -(1,9749:6630773,28685817:25952256,410518,101187 -h1,9749:6630773,28685817:0,0,0 -g1,9749:6946919,28685817 -g1,9749:7263065,28685817 -g1,9749:7579211,28685817 -g1,9749:7895357,28685817 -g1,9749:13902126,28685817 -g1,9749:16115146,28685817 -k1,9749:16115146,28685817:0 -h1,9749:20541186,28685817:0,0,0 -k1,9749:32583029,28685817:12041843 -g1,9749:32583029,28685817 -) -(1,9750:6630773,29351995:25952256,404226,76021 -h1,9750:6630773,29351995:0,0,0 -h1,9750:6946919,29351995:0,0,0 -k1,9750:32583029,29351995:25636110 -g1,9750:32583029,29351995 -) -] -) -g1,9752:32583029,29428016 -g1,9752:6630773,29428016 -g1,9752:6630773,29428016 -g1,9752:32583029,29428016 -g1,9752:32583029,29428016 -) -h1,9752:6630773,29624624:0,0,0 -(1,9756:6630773,30990400:25952256,513147,134348 -h1,9755:6630773,30990400:983040,0,0 -k1,9755:9431170,30990400:212380 -k1,9755:9999411,30990400:212381 -k1,9755:13765153,30990400:212380 -k1,9755:16431856,30990400:212380 -k1,9755:18475312,30990400:212380 -k1,9755:19635344,30990400:212381 -k1,9755:20203584,30990400:212380 -k1,9755:22144804,30990400:212380 -k1,9755:22815281,30990400:212380 -k1,9755:24160124,30990400:212381 -k1,9755:25120270,30990400:212380 -k1,9755:26845876,30990400:212380 -k1,9755:28005907,30990400:212380 -k1,9755:30508116,30990400:212381 -k1,9755:31379788,30990400:212380 -k1,9755:32583029,30990400:0 -) -(1,9756:6630773,31831888:25952256,505283,7863 -k1,9756:32583029,31831888:24223416 -g1,9756:32583029,31831888 -) -v1,9758:6630773,33022354:0,393216,0 -(1,9771:6630773,36090959:25952256,3461821,196608 -g1,9771:6630773,36090959 -g1,9771:6630773,36090959 -g1,9771:6434165,36090959 -(1,9771:6434165,36090959:0,3461821,196608 -r1,9771:32779637,36090959:26345472,3658429,196608 -k1,9771:6434165,36090959:-26345472 -) -(1,9771:6434165,36090959:26345472,3461821,196608 -[1,9771:6630773,36090959:25952256,3265213,0 -(1,9760:6630773,33229972:25952256,404226,101187 -(1,9759:6630773,33229972:0,0,0 -g1,9759:6630773,33229972 -g1,9759:6630773,33229972 -g1,9759:6303093,33229972 -(1,9759:6303093,33229972:0,0,0 -) -g1,9759:6630773,33229972 -) -k1,9760:6630773,33229972:0 -h1,9760:9159938,33229972:0,0,0 -k1,9760:32583030,33229972:23423092 -g1,9760:32583030,33229972 -) -(1,9764:6630773,33961686:25952256,404226,101187 -(1,9762:6630773,33961686:0,0,0 -g1,9762:6630773,33961686 -g1,9762:6630773,33961686 -g1,9762:6303093,33961686 -(1,9762:6303093,33961686:0,0,0 -) -g1,9762:6630773,33961686 -) -g1,9764:7579210,33961686 -g1,9764:8843793,33961686 -g1,9764:12321396,33961686 -h1,9764:13585979,33961686:0,0,0 -k1,9764:32583029,33961686:18997050 -g1,9764:32583029,33961686 -) -(1,9766:6630773,35283224:25952256,404226,101187 -(1,9765:6630773,35283224:0,0,0 -g1,9765:6630773,35283224 -g1,9765:6630773,35283224 -g1,9765:6303093,35283224 -(1,9765:6303093,35283224:0,0,0 -) -g1,9765:6630773,35283224 -) -k1,9766:6630773,35283224:0 -k1,9766:6630773,35283224:0 -h1,9766:12953687,35283224:0,0,0 -k1,9766:32583029,35283224:19629342 -g1,9766:32583029,35283224 -) -(1,9770:6630773,36014938:25952256,404226,76021 -(1,9768:6630773,36014938:0,0,0 -g1,9768:6630773,36014938 -g1,9768:6630773,36014938 -g1,9768:6303093,36014938 -(1,9768:6303093,36014938:0,0,0 -) -g1,9768:6630773,36014938 -) -g1,9770:7579210,36014938 -g1,9770:8843793,36014938 -h1,9770:9792230,36014938:0,0,0 -k1,9770:32583030,36014938:22790800 -g1,9770:32583030,36014938 -) -] -) -g1,9771:32583029,36090959 -g1,9771:6630773,36090959 -g1,9771:6630773,36090959 -g1,9771:32583029,36090959 -g1,9771:32583029,36090959 -) -h1,9771:6630773,36287567:0,0,0 -v1,9775:6630773,38177631:0,393216,0 -(1,9893:6630773,44619129:25952256,6834714,589824 -g1,9893:6630773,44619129 -(1,9893:6630773,44619129:25952256,6834714,589824 -(1,9893:6630773,45208953:25952256,7424538,0 -[1,9893:6630773,45208953:25952256,7424538,0 -(1,9893:6630773,45208953:25952256,7398324,0 -r1,9893:6656987,45208953:26214,7398324,0 -[1,9893:6656987,45208953:25899828,7398324,0 -(1,9893:6656987,44619129:25899828,6218676,0 -[1,9893:7246811,44619129:24720180,6218676,0 -(1,9776:7246811,39562338:24720180,1161885,196608 -(1,9775:7246811,39562338:0,1161885,196608 -r1,9893:8794447,39562338:1547636,1358493,196608 -k1,9775:7246811,39562338:-1547636 -) -(1,9775:7246811,39562338:1547636,1161885,196608 -) -k1,9775:9008422,39562338:213975 -k1,9775:10419084,39562338:213975 -k1,9775:11386722,39562338:213974 -k1,9775:13155866,39562338:213975 -k1,9775:15615760,39562338:213975 -k1,9775:16361232,39562338:213975 -k1,9775:20743296,39562338:213974 -k1,9775:21573309,39562338:213975 -k1,9775:23071790,39562338:213975 -k1,9775:23743862,39562338:213975 -k1,9775:25485480,39562338:213974 -k1,9775:27053429,39562338:213975 -k1,9775:28739998,39562338:213975 -k1,9775:31966991,39562338:0 -) -(1,9776:7246811,40403826:24720180,513147,134348 -k1,9775:11462540,40403826:151842 -k1,9775:13164308,40403826:151842 -k1,9775:14388319,40403826:151842 -k1,9775:14998257,40403826:151841 -k1,9775:15681596,40403826:151842 -k1,9775:17785100,40403826:151842 -k1,9775:20574111,40403826:151842 -k1,9775:21341991,40403826:151842 -k1,9775:22778339,40403826:151842 -k1,9775:24531880,40403826:151841 -k1,9775:25343014,40403826:151842 -k1,9775:26513941,40403826:151842 -k1,9775:31019340,40403826:151842 -k1,9775:31966991,40403826:0 -) -(1,9776:7246811,41245314:24720180,513147,134348 -k1,9775:11211739,41245314:246415 -k1,9775:12649600,41245314:246416 -k1,9775:16561444,41245314:246415 -k1,9775:17467151,41245314:246415 -k1,9775:18732652,41245314:246416 -k1,9775:22965622,41245314:246415 -k1,9775:24278308,41245314:246415 -k1,9775:27142886,41245314:246415 -k1,9775:28224886,41245314:246416 -k1,9775:31205463,41245314:246415 -k1,9775:31966991,41245314:0 -) -(1,9776:7246811,42086802:24720180,513147,134348 -k1,9775:10717664,42086802:231408 -k1,9775:13974868,42086802:231407 -k1,9775:14889161,42086802:231408 -k1,9775:17487074,42086802:231408 -k1,9775:18074342,42086802:231408 -k1,9775:20885901,42086802:231407 -k1,9775:24180462,42086802:231408 -k1,9775:27437667,42086802:231408 -k1,9775:29063025,42086802:231407 -k1,9775:30313518,42086802:231408 -k1,9775:31966991,42086802:0 -) -(1,9776:7246811,42928290:24720180,505283,126483 -g1,9775:9357725,42928290 -g1,9775:10842115,42928290 -g1,9775:11572841,42928290 -g1,9775:12838341,42928290 -g1,9775:15627553,42928290 -g1,9775:16588310,42928290 -g1,9775:17806624,42928290 -g1,9775:18420696,42928290 -k1,9776:31966991,42928290:9914945 -g1,9776:31966991,42928290 -) -(1,9778:7246811,43769778:24720180,513147,134348 -h1,9777:7246811,43769778:983040,0,0 -k1,9777:11209629,43769778:293457 -k1,9777:11858947,43769778:293458 -k1,9777:13435599,43769778:293457 -k1,9777:14482720,43769778:293457 -k1,9777:17083045,43769778:293458 -k1,9777:17907999,43769778:293457 -k1,9777:19487272,43769778:293457 -k1,9777:21405368,43769778:293458 -k1,9777:23997173,43769778:293457 -k1,9777:24778124,43769778:293363 -k1,9777:27378448,43769778:293457 -k1,9777:30126229,43769778:293458 -k1,9777:31611131,43769778:293457 -k1,9777:31966991,43769778:0 -) -(1,9778:7246811,44611266:24720180,513147,7863 -g1,9777:9711620,44611266 -g1,9777:12365172,44611266 -g1,9777:14094667,44611266 -g1,9777:14945324,44611266 -g1,9777:15892319,44611266 -k1,9778:31966991,44611266:13550881 -g1,9778:31966991,44611266 -) -] -) -] -r1,9893:32583029,45208953:26214,7398324,0 -) -] -) -) -g1,9893:32583029,44619129 -) -] -(1,9893:32583029,45706769:0,0,0 -g1,9893:32583029,45706769 -) -) -] -(1,9893:6630773,47279633:25952256,0,0 -h1,9893:6630773,47279633:25952256,0,0 -) -] -h1,9893:4262630,4025873:0,0,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9898:37855564,49800853:1179648,16384,0 +) +) +k1,9898:3078556,49800853:-34777008 +) +] +g1,9898:6630773,4812305 +k1,9898:20781963,4812305:12955813 +g1,9898:22168704,4812305 +g1,9898:22817510,4812305 +g1,9898:26131665,4812305 +g1,9898:28614824,4812305 +g1,9898:30094627,4812305 +) +) +] +[1,9898:6630773,45706769:25952256,40108032,0 +(1,9898:6630773,45706769:25952256,40108032,0 +(1,9898:6630773,45706769:0,0,0 +g1,9898:6630773,45706769 +) +[1,9898:6630773,45706769:25952256,40108032,0 +v1,9724:6630773,6254097:0,393216,0 +(1,9724:6630773,8633263:25952256,2772382,196608 +g1,9724:6630773,8633263 +g1,9724:6630773,8633263 +g1,9724:6434165,8633263 +(1,9724:6434165,8633263:0,2772382,196608 +r1,9724:32779637,8633263:26345472,2968990,196608 +k1,9724:6434165,8633263:-26345472 +) +(1,9724:6434165,8633263:26345472,2772382,196608 +[1,9724:6630773,8633263:25952256,2575774,0 +(1,9717:6630773,6461715:25952256,404226,76021 +(1,9716:6630773,6461715:0,0,0 +g1,9716:6630773,6461715 +g1,9716:6630773,6461715 +g1,9716:6303093,6461715 +(1,9716:6303093,6461715:0,0,0 +) +g1,9716:6630773,6461715 +) +k1,9717:6630773,6461715:0 +g1,9717:11056813,6461715 +g1,9717:11689105,6461715 +h1,9717:13902125,6461715:0,0,0 +k1,9717:32583029,6461715:18680904 +g1,9717:32583029,6461715 +) +(1,9723:6630773,7193429:25952256,410518,101187 +(1,9719:6630773,7193429:0,0,0 +g1,9719:6630773,7193429 +g1,9719:6630773,7193429 +g1,9719:6303093,7193429 +(1,9719:6303093,7193429:0,0,0 +) +g1,9719:6630773,7193429 +) +g1,9723:7579210,7193429 +g1,9723:8843793,7193429 +g1,9723:12005250,7193429 +g1,9723:12321396,7193429 +g1,9723:12637542,7193429 +g1,9723:12953688,7193429 +g1,9723:13269834,7193429 +g1,9723:17695874,7193429 +g1,9723:19908894,7193429 +g1,9723:20225040,7193429 +g1,9723:20541186,7193429 +g1,9723:20857332,7193429 +g1,9723:21173478,7193429 +g1,9723:21489624,7193429 +g1,9723:21805770,7193429 +g1,9723:22121916,7193429 +g1,9723:23386499,7193429 +g1,9723:23702645,7193429 +g1,9723:24018791,7193429 +g1,9723:24334937,7193429 +g1,9723:24651083,7193429 +g1,9723:24967229,7193429 +g1,9723:25283375,7193429 +g1,9723:25599521,7193429 +g1,9723:25915667,7193429 +g1,9723:26231813,7193429 +g1,9723:26547959,7193429 +h1,9723:28444833,7193429:0,0,0 +k1,9723:32583029,7193429:4138196 +g1,9723:32583029,7193429 +) +(1,9723:6630773,7859607:25952256,404226,101187 +h1,9723:6630773,7859607:0,0,0 +g1,9723:7579210,7859607 +g1,9723:8843793,7859607 +g1,9723:12953687,7859607 +g1,9723:13269833,7859607 +h1,9723:15166707,7859607:0,0,0 +k1,9723:32583029,7859607:17416322 +g1,9723:32583029,7859607 +) +(1,9723:6630773,8525785:25952256,410518,107478 +h1,9723:6630773,8525785:0,0,0 +g1,9723:7579210,8525785 +g1,9723:8843793,8525785 +g1,9723:12321396,8525785 +g1,9723:13585979,8525785 +g1,9723:16747436,8525785 +g1,9723:18328165,8525785 +g1,9723:19592748,8525785 +g1,9723:21805768,8525785 +h1,9723:23070351,8525785:0,0,0 +k1,9723:32583029,8525785:9512678 +g1,9723:32583029,8525785 +) +] +) +g1,9724:32583029,8633263 +g1,9724:6630773,8633263 +g1,9724:6630773,8633263 +g1,9724:32583029,8633263 +g1,9724:32583029,8633263 +) +h1,9724:6630773,8829871:0,0,0 +(1,9728:6630773,10195647:25952256,513147,11795 +h1,9727:6630773,10195647:983040,0,0 +k1,9727:8697888,10195647:330411 +k1,9727:10583467,10195647:330410 +k1,9727:14720864,10195647:330411 +k1,9727:15582772,10195647:330411 +k1,9727:17951352,10195647:330410 +k1,9727:18967925,10195647:330411 +k1,9727:19654196,10195647:330411 +k1,9727:22959285,10195647:330410 +k1,9727:25267573,10195647:330411 +k1,9727:26214022,10195647:330411 +k1,9727:27315135,10195647:330410 +k1,9727:30424273,10195647:330411 +k1,9728:32583029,10195647:0 +) +(1,9728:6630773,11037135:25952256,513147,134348 +(1,9727:6630773,11037135:0,452978,115847 +r1,9727:9099310,11037135:2468537,568825,115847 +k1,9727:6630773,11037135:-2468537 +) +(1,9727:6630773,11037135:2468537,452978,115847 +k1,9727:6630773,11037135:3277 +h1,9727:9096033,11037135:0,411205,112570 +) +k1,9727:9536973,11037135:263993 +k1,9727:10997652,11037135:263992 +k1,9727:12863345,11037135:263993 +k1,9727:14748699,11037135:263993 +k1,9727:17997201,11037135:263992 +k1,9727:18912622,11037135:263993 +k1,9727:21769219,11037135:263993 +k1,9727:22692503,11037135:263992 +k1,9727:23727199,11037135:263993 +k1,9727:25950718,11037135:263993 +k1,9727:26874002,11037135:263992 +k1,9727:27493855,11037135:263993 +k1,9727:29041043,11037135:263993 +k1,9727:30058699,11037135:263992 +k1,9727:32051532,11037135:263993 +k1,9727:32583029,11037135:0 +) +(1,9728:6630773,11878623:25952256,513147,134348 +k1,9727:7462425,11878623:180224 +k1,9727:8839992,11878623:180224 +k1,9727:10039301,11878623:180224 +k1,9727:11502720,11878623:180224 +k1,9727:13238113,11878623:180224 +k1,9727:15156352,11878623:180224 +k1,9727:15988004,11878623:180224 +k1,9727:17187312,11878623:180223 +k1,9727:18922705,11878623:180224 +k1,9727:21881656,11878623:180224 +k1,9727:22721172,11878623:180224 +k1,9727:23920481,11878623:180224 +k1,9727:26233902,11878623:180224 +k1,9727:27232015,11878623:180224 +k1,9727:28431324,11878623:180224 +k1,9727:31027860,11878623:180224 +k1,9727:32583029,11878623:0 +) +(1,9728:6630773,12720111:25952256,513147,134348 +k1,9727:9851025,12720111:214771 +k1,9727:10597292,12720111:214770 +k1,9727:12506824,12720111:214771 +k1,9727:13483123,12720111:214771 +k1,9727:14716979,12720111:214771 +k1,9727:16671075,12720111:214770 +k1,9727:17545138,12720111:214771 +k1,9727:18778994,12720111:214771 +k1,9727:21947472,12720111:214770 +k1,9727:22821535,12720111:214771 +k1,9727:24055391,12720111:214771 +k1,9727:27244841,12720111:214771 +k1,9727:29611158,12720111:214770 +k1,9727:30845014,12720111:214771 +k1,9727:32583029,12720111:0 +) +(1,9728:6630773,13561599:25952256,513147,134348 +k1,9727:7526363,13561599:236298 +k1,9727:8781746,13561599:236298 +k1,9727:10301239,13561599:236298 +k1,9727:12092707,13561599:236299 +k1,9727:13951021,13561599:236298 +k1,9727:14935085,13561599:236298 +k1,9727:17136808,13561599:236298 +k1,9727:17985868,13561599:236298 +k1,9727:19241251,13561599:236298 +k1,9727:21016334,13561599:236298 +k1,9727:21911924,13561599:236298 +k1,9727:23167308,13561599:236299 +k1,9727:25555153,13561599:236298 +k1,9727:27281740,13561599:236298 +k1,9727:29788205,13561599:236298 +k1,9727:31227744,13561599:236298 +k1,9727:32583029,13561599:0 +) +(1,9728:6630773,14403087:25952256,505283,126483 +k1,9727:7924407,14403087:189352 +k1,9727:8861525,14403087:189352 +k1,9727:10628329,14403087:189352 +k1,9727:11503844,14403087:189353 +k1,9727:13768721,14403087:189352 +k1,9727:15529626,14403087:189352 +k1,9727:16335016,14403087:189352 +k1,9727:19061922,14403087:189352 +k1,9727:20454515,14403087:189352 +k1,9727:21999152,14403087:189352 +k1,9727:24144755,14403087:189353 +k1,9727:27179025,14403087:189352 +k1,9727:28721040,14403087:189352 +k1,9727:30573040,14403087:189352 +k1,9727:32583029,14403087:0 +) +(1,9728:6630773,15244575:25952256,513147,134348 +k1,9727:7186619,15244575:199986 +k1,9727:11011400,15244575:199985 +k1,9727:13906882,15244575:199986 +k1,9727:15298312,15244575:199985 +k1,9727:16517383,15244575:199986 +k1,9727:18000563,15244575:199985 +k1,9727:19929389,15244575:199986 +k1,9727:20595335,15244575:199985 +k1,9727:23176899,15244575:199986 +k1,9727:25386873,15244575:199985 +k1,9727:25942719,15244575:199986 +k1,9727:28896527,15244575:199985 +k1,9727:31052763,15244575:199986 +k1,9727:32583029,15244575:0 +) +(1,9728:6630773,16086063:25952256,505283,134348 +k1,9727:7535498,16086063:253297 +k1,9727:8536560,16086063:253296 +k1,9727:12165616,16086063:253297 +k1,9727:13372461,16086063:253296 +k1,9727:15286440,16086063:253297 +k1,9727:16937619,16086063:253296 +k1,9727:18394157,16086063:253297 +k1,9727:22139867,16086063:253296 +k1,9727:25054581,16086063:253297 +k1,9727:25959305,16086063:253296 +k1,9727:30245688,16086063:253297 +k1,9727:31829365,16086063:253296 +k1,9727:32583029,16086063:0 +) +(1,9728:6630773,16927551:25952256,505283,126483 +g1,9727:9062814,16927551 +g1,9727:10253603,16927551 +g1,9727:14654345,16927551 +g1,9727:15469612,16927551 +k1,9728:32583029,16927551:16524904 +g1,9728:32583029,16927551 +) +v1,9730:6630773,18118017:0,393216,0 +(1,9745:6630773,22528415:25952256,4803614,196608 +g1,9745:6630773,22528415 +g1,9745:6630773,22528415 +g1,9745:6434165,22528415 +(1,9745:6434165,22528415:0,4803614,196608 +r1,9745:32779637,22528415:26345472,5000222,196608 +k1,9745:6434165,22528415:-26345472 +) +(1,9745:6434165,22528415:26345472,4803614,196608 +[1,9745:6630773,22528415:25952256,4607006,0 +(1,9732:6630773,18309906:25952256,388497,9436 +(1,9731:6630773,18309906:0,0,0 +g1,9731:6630773,18309906 +g1,9731:6630773,18309906 +g1,9731:6303093,18309906 +(1,9731:6303093,18309906:0,0,0 +) +g1,9731:6630773,18309906 +) +g1,9732:7263065,18309906 +g1,9732:8211503,18309906 +h1,9732:9159940,18309906:0,0,0 +k1,9732:32583028,18309906:23423088 +g1,9732:32583028,18309906 +) +(1,9733:6630773,18976084:25952256,404226,76021 +h1,9733:6630773,18976084:0,0,0 +k1,9733:6630773,18976084:0 +h1,9733:9159938,18976084:0,0,0 +k1,9733:32583030,18976084:23423092 +g1,9733:32583030,18976084 +) +(1,9737:6630773,19707798:25952256,404226,76021 +(1,9735:6630773,19707798:0,0,0 +g1,9735:6630773,19707798 +g1,9735:6630773,19707798 +g1,9735:6303093,19707798 +(1,9735:6303093,19707798:0,0,0 +) +g1,9735:6630773,19707798 +) +g1,9737:7579210,19707798 +g1,9737:8843793,19707798 +h1,9737:11689104,19707798:0,0,0 +k1,9737:32583028,19707798:20893924 +g1,9737:32583028,19707798 +) +(1,9739:6630773,21029336:25952256,404226,101187 +(1,9738:6630773,21029336:0,0,0 +g1,9738:6630773,21029336 +g1,9738:6630773,21029336 +g1,9738:6303093,21029336 +(1,9738:6303093,21029336:0,0,0 +) +g1,9738:6630773,21029336 +) +k1,9739:6630773,21029336:0 +g1,9739:9476084,21029336 +g1,9739:10424522,21029336 +g1,9739:14534417,21029336 +k1,9739:14534417,21029336:0 +h1,9739:17379728,21029336:0,0,0 +k1,9739:32583029,21029336:15203301 +g1,9739:32583029,21029336 +) +(1,9740:6630773,21695514:25952256,404226,76021 +h1,9740:6630773,21695514:0,0,0 +k1,9740:6630773,21695514:0 +h1,9740:9159938,21695514:0,0,0 +k1,9740:32583030,21695514:23423092 +g1,9740:32583030,21695514 +) +(1,9744:6630773,22427228:25952256,404226,101187 +(1,9742:6630773,22427228:0,0,0 +g1,9742:6630773,22427228 +g1,9742:6630773,22427228 +g1,9742:6303093,22427228 +(1,9742:6303093,22427228:0,0,0 +) +g1,9742:6630773,22427228 +) +g1,9744:7579210,22427228 +g1,9744:8843793,22427228 +g1,9744:12005250,22427228 +h1,9744:14850561,22427228:0,0,0 +k1,9744:32583029,22427228:17732468 +g1,9744:32583029,22427228 +) +] +) +g1,9745:32583029,22528415 +g1,9745:6630773,22528415 +g1,9745:6630773,22528415 +g1,9745:32583029,22528415 +g1,9745:32583029,22528415 +) +h1,9745:6630773,22725023:0,0,0 +(1,9749:6630773,24090799:25952256,513147,134348 +h1,9748:6630773,24090799:983040,0,0 +k1,9748:9251938,24090799:230412 +k1,9748:10350702,24090799:230412 +k1,9748:12510495,24090799:230413 +k1,9748:13096767,24090799:230412 +k1,9748:14909218,24090799:230412 +k1,9748:17593953,24090799:230412 +k1,9748:20221673,24090799:230413 +k1,9748:21103513,24090799:230412 +(1,9748:21103513,24090799:0,452978,115847 +r1,9748:24275473,24090799:3171960,568825,115847 +k1,9748:21103513,24090799:-3171960 +) +(1,9748:21103513,24090799:3171960,452978,115847 +k1,9748:21103513,24090799:3277 +h1,9748:24272196,24090799:0,411205,112570 +) +k1,9748:24505885,24090799:230412 +k1,9748:27199796,24090799:230413 +k1,9748:30492705,24090799:230412 +k1,9748:31591469,24090799:230412 +k1,9748:32583029,24090799:0 +) +(1,9749:6630773,24932287:25952256,513147,134348 +k1,9748:8588285,24932287:222119 +k1,9748:11505900,24932287:222119 +(1,9748:11505900,24932287:0,459977,115847 +r1,9748:14677860,24932287:3171960,575824,115847 +k1,9748:11505900,24932287:-3171960 +) +(1,9748:11505900,24932287:3171960,459977,115847 +k1,9748:11505900,24932287:3277 +h1,9748:14674583,24932287:0,411205,112570 +) +k1,9748:14899978,24932287:222118 +k1,9748:16313542,24932287:222119 +k1,9748:17483312,24932287:222119 +k1,9748:18724516,24932287:222119 +k1,9748:21127018,24932287:222119 +k1,9748:24159320,24932287:222118 +k1,9748:25032867,24932287:222119 +k1,9748:26851443,24932287:222119 +k1,9748:27941914,24932287:222119 +k1,9748:29694298,24932287:222118 +k1,9748:30567845,24932287:222119 +k1,9748:32227169,24932287:222119 +k1,9749:32583029,24932287:0 +) +(1,9749:6630773,25773775:25952256,505283,134348 +(1,9748:6630773,25773775:0,452978,115847 +r1,9748:9099310,25773775:2468537,568825,115847 +k1,9748:6630773,25773775:-2468537 +) +(1,9748:6630773,25773775:2468537,452978,115847 +k1,9748:6630773,25773775:3277 +h1,9748:9096033,25773775:0,411205,112570 +) +k1,9748:9322388,25773775:223078 +k1,9748:11225808,25773775:223077 +k1,9748:12135048,25773775:223078 +k1,9748:13128829,25773775:223078 +k1,9748:18149141,25773775:223077 +k1,9748:21431440,25773775:223078 +(1,9748:21431440,25773775:0,459977,115847 +r1,9748:24603400,25773775:3171960,575824,115847 +k1,9748:21431440,25773775:-3171960 +) +(1,9748:21431440,25773775:3171960,459977,115847 +k1,9748:21431440,25773775:3277 +h1,9748:24600123,25773775:0,411205,112570 +) +k1,9748:24826477,25773775:223077 +k1,9748:26542465,25773775:223078 +k1,9748:27831814,25773775:223078 +k1,9748:30378142,25773775:223077 +k1,9748:31931601,25773775:223078 +k1,9748:32583029,25773775:0 +) +(1,9749:6630773,26615263:25952256,513147,134348 +g1,9748:8988758,26615263 +g1,9748:11477815,26615263 +g1,9748:12336336,26615263 +g1,9748:13554650,26615263 +g1,9748:15309048,26615263 +g1,9748:16376629,26615263 +g1,9748:18051073,26615263 +g1,9748:19479102,26615263 +k1,9749:32583029,26615263:10580136 +g1,9749:32583029,26615263 +) +v1,9751:6630773,27805729:0,393216,0 +(1,9757:6630773,29428016:25952256,2015503,196608 +g1,9757:6630773,29428016 +g1,9757:6630773,29428016 +g1,9757:6434165,29428016 +(1,9757:6434165,29428016:0,2015503,196608 +r1,9757:32779637,29428016:26345472,2212111,196608 +k1,9757:6434165,29428016:-26345472 +) +(1,9757:6434165,29428016:26345472,2015503,196608 +[1,9757:6630773,29428016:25952256,1818895,0 +(1,9753:6630773,28019639:25952256,410518,101187 +(1,9752:6630773,28019639:0,0,0 +g1,9752:6630773,28019639 +g1,9752:6630773,28019639 +g1,9752:6303093,28019639 +(1,9752:6303093,28019639:0,0,0 +) +g1,9752:6630773,28019639 +) +g1,9753:11056813,28019639 +g1,9753:12005251,28019639 +g1,9753:15799000,28019639 +h1,9753:16115146,28019639:0,0,0 +k1,9753:32583029,28019639:16467883 +g1,9753:32583029,28019639 +) +(1,9754:6630773,28685817:25952256,410518,101187 +h1,9754:6630773,28685817:0,0,0 +g1,9754:6946919,28685817 +g1,9754:7263065,28685817 +g1,9754:7579211,28685817 +g1,9754:7895357,28685817 +g1,9754:13902126,28685817 +g1,9754:16115146,28685817 +k1,9754:16115146,28685817:0 +h1,9754:20541186,28685817:0,0,0 +k1,9754:32583029,28685817:12041843 +g1,9754:32583029,28685817 +) +(1,9755:6630773,29351995:25952256,404226,76021 +h1,9755:6630773,29351995:0,0,0 +h1,9755:6946919,29351995:0,0,0 +k1,9755:32583029,29351995:25636110 +g1,9755:32583029,29351995 +) +] +) +g1,9757:32583029,29428016 +g1,9757:6630773,29428016 +g1,9757:6630773,29428016 +g1,9757:32583029,29428016 +g1,9757:32583029,29428016 +) +h1,9757:6630773,29624624:0,0,0 +(1,9761:6630773,30990400:25952256,513147,134348 +h1,9760:6630773,30990400:983040,0,0 +k1,9760:9431170,30990400:212380 +k1,9760:9999411,30990400:212381 +k1,9760:13765153,30990400:212380 +k1,9760:16431856,30990400:212380 +k1,9760:18475312,30990400:212380 +k1,9760:19635344,30990400:212381 +k1,9760:20203584,30990400:212380 +k1,9760:22144804,30990400:212380 +k1,9760:22815281,30990400:212380 +k1,9760:24160124,30990400:212381 +k1,9760:25120270,30990400:212380 +k1,9760:26845876,30990400:212380 +k1,9760:28005907,30990400:212380 +k1,9760:30508116,30990400:212381 +k1,9760:31379788,30990400:212380 +k1,9760:32583029,30990400:0 +) +(1,9761:6630773,31831888:25952256,505283,7863 +k1,9761:32583029,31831888:24223416 +g1,9761:32583029,31831888 +) +v1,9763:6630773,33022354:0,393216,0 +(1,9776:6630773,36090959:25952256,3461821,196608 +g1,9776:6630773,36090959 +g1,9776:6630773,36090959 +g1,9776:6434165,36090959 +(1,9776:6434165,36090959:0,3461821,196608 +r1,9776:32779637,36090959:26345472,3658429,196608 +k1,9776:6434165,36090959:-26345472 +) +(1,9776:6434165,36090959:26345472,3461821,196608 +[1,9776:6630773,36090959:25952256,3265213,0 +(1,9765:6630773,33229972:25952256,404226,101187 +(1,9764:6630773,33229972:0,0,0 +g1,9764:6630773,33229972 +g1,9764:6630773,33229972 +g1,9764:6303093,33229972 +(1,9764:6303093,33229972:0,0,0 +) +g1,9764:6630773,33229972 +) +k1,9765:6630773,33229972:0 +h1,9765:9159938,33229972:0,0,0 +k1,9765:32583030,33229972:23423092 +g1,9765:32583030,33229972 +) +(1,9769:6630773,33961686:25952256,404226,101187 +(1,9767:6630773,33961686:0,0,0 +g1,9767:6630773,33961686 +g1,9767:6630773,33961686 +g1,9767:6303093,33961686 +(1,9767:6303093,33961686:0,0,0 +) +g1,9767:6630773,33961686 +) +g1,9769:7579210,33961686 +g1,9769:8843793,33961686 +g1,9769:12321396,33961686 +h1,9769:13585979,33961686:0,0,0 +k1,9769:32583029,33961686:18997050 +g1,9769:32583029,33961686 +) +(1,9771:6630773,35283224:25952256,404226,101187 +(1,9770:6630773,35283224:0,0,0 +g1,9770:6630773,35283224 +g1,9770:6630773,35283224 +g1,9770:6303093,35283224 +(1,9770:6303093,35283224:0,0,0 +) +g1,9770:6630773,35283224 +) +k1,9771:6630773,35283224:0 +k1,9771:6630773,35283224:0 +h1,9771:12953687,35283224:0,0,0 +k1,9771:32583029,35283224:19629342 +g1,9771:32583029,35283224 +) +(1,9775:6630773,36014938:25952256,404226,76021 +(1,9773:6630773,36014938:0,0,0 +g1,9773:6630773,36014938 +g1,9773:6630773,36014938 +g1,9773:6303093,36014938 +(1,9773:6303093,36014938:0,0,0 +) +g1,9773:6630773,36014938 +) +g1,9775:7579210,36014938 +g1,9775:8843793,36014938 +h1,9775:9792230,36014938:0,0,0 +k1,9775:32583030,36014938:22790800 +g1,9775:32583030,36014938 +) +] +) +g1,9776:32583029,36090959 +g1,9776:6630773,36090959 +g1,9776:6630773,36090959 +g1,9776:32583029,36090959 +g1,9776:32583029,36090959 +) +h1,9776:6630773,36287567:0,0,0 +v1,9780:6630773,38177631:0,393216,0 +(1,9898:6630773,44619129:25952256,6834714,589824 +g1,9898:6630773,44619129 +(1,9898:6630773,44619129:25952256,6834714,589824 +(1,9898:6630773,45208953:25952256,7424538,0 +[1,9898:6630773,45208953:25952256,7424538,0 +(1,9898:6630773,45208953:25952256,7398324,0 +r1,9898:6656987,45208953:26214,7398324,0 +[1,9898:6656987,45208953:25899828,7398324,0 +(1,9898:6656987,44619129:25899828,6218676,0 +[1,9898:7246811,44619129:24720180,6218676,0 +(1,9781:7246811,39562338:24720180,1161885,196608 +(1,9780:7246811,39562338:0,1161885,196608 +r1,9898:8794447,39562338:1547636,1358493,196608 +k1,9780:7246811,39562338:-1547636 +) +(1,9780:7246811,39562338:1547636,1161885,196608 +) +k1,9780:9008422,39562338:213975 +k1,9780:10419084,39562338:213975 +k1,9780:11386722,39562338:213974 +k1,9780:13155866,39562338:213975 +k1,9780:15615760,39562338:213975 +k1,9780:16361232,39562338:213975 +k1,9780:20743296,39562338:213974 +k1,9780:21573309,39562338:213975 +k1,9780:23071790,39562338:213975 +k1,9780:23743862,39562338:213975 +k1,9780:25485480,39562338:213974 +k1,9780:27053429,39562338:213975 +k1,9780:28739998,39562338:213975 +k1,9780:31966991,39562338:0 +) +(1,9781:7246811,40403826:24720180,513147,134348 +k1,9780:11462540,40403826:151842 +k1,9780:13164308,40403826:151842 +k1,9780:14388319,40403826:151842 +k1,9780:14998257,40403826:151841 +k1,9780:15681596,40403826:151842 +k1,9780:17785100,40403826:151842 +k1,9780:20574111,40403826:151842 +k1,9780:21341991,40403826:151842 +k1,9780:22778339,40403826:151842 +k1,9780:24531880,40403826:151841 +k1,9780:25343014,40403826:151842 +k1,9780:26513941,40403826:151842 +k1,9780:31019340,40403826:151842 +k1,9780:31966991,40403826:0 +) +(1,9781:7246811,41245314:24720180,513147,134348 +k1,9780:11211739,41245314:246415 +k1,9780:12649600,41245314:246416 +k1,9780:16561444,41245314:246415 +k1,9780:17467151,41245314:246415 +k1,9780:18732652,41245314:246416 +k1,9780:22965622,41245314:246415 +k1,9780:24278308,41245314:246415 +k1,9780:27142886,41245314:246415 +k1,9780:28224886,41245314:246416 +k1,9780:31205463,41245314:246415 +k1,9780:31966991,41245314:0 +) +(1,9781:7246811,42086802:24720180,513147,134348 +k1,9780:10717664,42086802:231408 +k1,9780:13974868,42086802:231407 +k1,9780:14889161,42086802:231408 +k1,9780:17487074,42086802:231408 +k1,9780:18074342,42086802:231408 +k1,9780:20885901,42086802:231407 +k1,9780:24180462,42086802:231408 +k1,9780:27437667,42086802:231408 +k1,9780:29063025,42086802:231407 +k1,9780:30313518,42086802:231408 +k1,9780:31966991,42086802:0 +) +(1,9781:7246811,42928290:24720180,505283,126483 +g1,9780:9357725,42928290 +g1,9780:10842115,42928290 +g1,9780:11572841,42928290 +g1,9780:12838341,42928290 +g1,9780:15627553,42928290 +g1,9780:16588310,42928290 +g1,9780:17806624,42928290 +g1,9780:18420696,42928290 +k1,9781:31966991,42928290:9914945 +g1,9781:31966991,42928290 +) +(1,9783:7246811,43769778:24720180,513147,134348 +h1,9782:7246811,43769778:983040,0,0 +k1,9782:11209629,43769778:293457 +k1,9782:11858947,43769778:293458 +k1,9782:13435599,43769778:293457 +k1,9782:14482720,43769778:293457 +k1,9782:17083045,43769778:293458 +k1,9782:17907999,43769778:293457 +k1,9782:19487272,43769778:293457 +k1,9782:21405368,43769778:293458 +k1,9782:23997173,43769778:293457 +k1,9782:24778124,43769778:293363 +k1,9782:27378448,43769778:293457 +k1,9782:30126229,43769778:293458 +k1,9782:31611131,43769778:293457 +k1,9782:31966991,43769778:0 +) +(1,9783:7246811,44611266:24720180,513147,7863 +g1,9782:9711620,44611266 +g1,9782:12365172,44611266 +g1,9782:14094667,44611266 +g1,9782:14945324,44611266 +g1,9782:15892319,44611266 +k1,9783:31966991,44611266:13550881 +g1,9783:31966991,44611266 +) +] +) +] +r1,9898:32583029,45208953:26214,7398324,0 +) +] +) +) +g1,9898:32583029,44619129 +) +] +(1,9898:32583029,45706769:0,0,0 +g1,9898:32583029,45706769 +) +) +] +(1,9898:6630773,47279633:25952256,0,0 +h1,9898:6630773,47279633:25952256,0,0 +) +] +h1,9898:4262630,4025873:0,0,0 ] !23912 }183 !12 {184 -[1,9893:4262630,47279633:28320399,43253760,0 -(1,9893:4262630,4025873:0,0,0 -[1,9893:-473657,4025873:25952256,0,0 -(1,9893:-473657,-710414:25952256,0,0 -h1,9893:-473657,-710414:0,0,0 -(1,9893:-473657,-710414:0,0,0 -(1,9893:-473657,-710414:0,0,0 -g1,9893:-473657,-710414 -(1,9893:-473657,-710414:65781,0,65781 -g1,9893:-407876,-710414 -[1,9893:-407876,-644633:0,0,0 +[1,9898:4262630,47279633:28320399,43253760,0 +(1,9898:4262630,4025873:0,0,0 +[1,9898:-473657,4025873:25952256,0,0 +(1,9898:-473657,-710414:25952256,0,0 +h1,9898:-473657,-710414:0,0,0 +(1,9898:-473657,-710414:0,0,0 +(1,9898:-473657,-710414:0,0,0 +g1,9898:-473657,-710414 +(1,9898:-473657,-710414:65781,0,65781 +g1,9898:-407876,-710414 +[1,9898:-407876,-644633:0,0,0 ] ) -k1,9893:-473657,-710414:-65781 +k1,9898:-473657,-710414:-65781 ) ) -k1,9893:25478599,-710414:25952256 -g1,9893:25478599,-710414 +k1,9898:25478599,-710414:25952256 +g1,9898:25478599,-710414 ) ] ) -[1,9893:6630773,47279633:25952256,43253760,0 -[1,9893:6630773,4812305:25952256,786432,0 -(1,9893:6630773,4812305:25952256,505283,134348 -(1,9893:6630773,4812305:25952256,505283,134348 -g1,9893:3078558,4812305 -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,2439708:0,1703936,0 -k1,9893:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9893:2537886,2439708:1179648,16384,0 +[1,9898:6630773,47279633:25952256,43253760,0 +[1,9898:6630773,4812305:25952256,786432,0 +(1,9898:6630773,4812305:25952256,505283,134348 +(1,9898:6630773,4812305:25952256,505283,134348 +g1,9898:3078558,4812305 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,2439708:0,1703936,0 +k1,9898:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9898:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9893:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9898:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,2439708:0,1703936,0 -g1,9893:29030814,2439708 -g1,9893:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9893:36151628,1915420:16384,1179648,0 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,2439708:0,1703936,0 +g1,9898:29030814,2439708 +g1,9898:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9898:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9893:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9898:37855564,2439708:1179648,16384,0 ) ) -k1,9893:3078556,2439708:-34777008 +k1,9898:3078556,2439708:-34777008 ) ] -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,49800853:0,16384,2228224 -k1,9893:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9893:2537886,49800853:1179648,16384,0 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,49800853:0,16384,2228224 +k1,9898:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9898:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9893:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9898:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9893:3078558,4812305:0,0,0 -(1,9893:3078558,49800853:0,16384,2228224 -g1,9893:29030814,49800853 -g1,9893:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9893:36151628,51504789:16384,1179648,0 +[1,9898:3078558,4812305:0,0,0 +(1,9898:3078558,49800853:0,16384,2228224 +g1,9898:29030814,49800853 +g1,9898:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9898:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9893:37855564,49800853:1179648,16384,0 -) -) -k1,9893:3078556,49800853:-34777008 -) -] -g1,9893:6630773,4812305 -g1,9893:6630773,4812305 -g1,9893:9311850,4812305 -g1,9893:11796319,4812305 -g1,9893:13205998,4812305 -g1,9893:16063367,4812305 -k1,9893:31387652,4812305:15324285 -) -) -] -[1,9893:6630773,45706769:25952256,40108032,0 -(1,9893:6630773,45706769:25952256,40108032,0 -(1,9893:6630773,45706769:0,0,0 -g1,9893:6630773,45706769 -) -[1,9893:6630773,45706769:25952256,40108032,0 -v1,9893:6630773,6254097:0,393216,0 -(1,9893:6630773,45116945:25952256,39256064,589824 -g1,9893:6630773,45116945 -(1,9893:6630773,45116945:25952256,39256064,589824 -(1,9893:6630773,45706769:25952256,39845888,0 -[1,9893:6630773,45706769:25952256,39845888,0 -(1,9893:6630773,45706769:25952256,39845888,0 -r1,9893:6656987,45706769:26214,39845888,0 -[1,9893:6656987,45706769:25899828,39845888,0 -(1,9893:6656987,45116945:25899828,38666240,0 -[1,9893:7246811,45116945:24720180,38666240,0 -v1,9780:7246811,6843921:0,393216,0 -(1,9791:7246811,11797098:24720180,5346393,196608 -g1,9791:7246811,11797098 -g1,9791:7246811,11797098 -g1,9791:7050203,11797098 -(1,9791:7050203,11797098:0,5346393,196608 -r1,9893:32163599,11797098:25113396,5543001,196608 -k1,9791:7050203,11797098:-25113396 -) -(1,9791:7050203,11797098:25113396,5346393,196608 -[1,9791:7246811,11797098:24720180,5149785,0 -(1,9782:7246811,7057831:24720180,410518,101187 -(1,9781:7246811,7057831:0,0,0 -g1,9781:7246811,7057831 -g1,9781:7246811,7057831 -g1,9781:6919131,7057831 -(1,9781:6919131,7057831:0,0,0 -) -g1,9781:7246811,7057831 -) -g1,9782:10092122,7057831 -g1,9782:11040560,7057831 -g1,9782:13885871,7057831 -g1,9782:15150455,7057831 -g1,9782:16731184,7057831 -h1,9782:17047330,7057831:0,0,0 -k1,9782:31966991,7057831:14919661 -g1,9782:31966991,7057831 -) -(1,9783:7246811,7724009:24720180,404226,101187 -h1,9783:7246811,7724009:0,0,0 -g1,9783:7562957,7724009 -g1,9783:7879103,7724009 -g1,9783:8195249,7724009 -g1,9783:15150455,7724009 -h1,9783:15782746,7724009:0,0,0 -k1,9783:31966991,7724009:16184245 -g1,9783:31966991,7724009 -) -(1,9784:7246811,8390187:24720180,404226,76021 -h1,9784:7246811,8390187:0,0,0 -g1,9784:7562957,8390187 -h1,9784:7879103,8390187:0,0,0 -k1,9784:31966991,8390187:24087888 -g1,9784:31966991,8390187 -) -(1,9785:7246811,9056365:24720180,0,0 -h1,9785:7246811,9056365:0,0,0 -h1,9785:7246811,9056365:0,0,0 -k1,9785:31966991,9056365:24720180 -g1,9785:31966991,9056365 -) -(1,9786:7246811,9722543:24720180,410518,101187 -h1,9786:7246811,9722543:0,0,0 -g1,9786:12621288,9722543 -g1,9786:13569726,9722543 -g1,9786:17363475,9722543 -g1,9786:18944204,9722543 -h1,9786:19260350,9722543:0,0,0 -k1,9786:31966991,9722543:12706641 -g1,9786:31966991,9722543 -) -(1,9787:7246811,10388721:24720180,404226,101187 -h1,9787:7246811,10388721:0,0,0 -g1,9787:7562957,10388721 -g1,9787:7879103,10388721 -g1,9787:8195249,10388721 -k1,9787:8195249,10388721:0 -h1,9787:12937434,10388721:0,0,0 -k1,9787:31966990,10388721:19029556 -g1,9787:31966990,10388721 -) -(1,9788:7246811,11054899:24720180,404226,101187 -h1,9788:7246811,11054899:0,0,0 -g1,9788:7562957,11054899 -g1,9788:7879103,11054899 -g1,9788:8195249,11054899 -g1,9788:11040560,11054899 -h1,9788:12305143,11054899:0,0,0 -k1,9788:31966991,11054899:19661848 -g1,9788:31966991,11054899 -) -(1,9789:7246811,11721077:24720180,404226,76021 -h1,9789:7246811,11721077:0,0,0 -h1,9789:7562957,11721077:0,0,0 -k1,9789:31966991,11721077:24404034 -g1,9789:31966991,11721077 -) -] -) -g1,9791:31966991,11797098 -g1,9791:7246811,11797098 -g1,9791:7246811,11797098 -g1,9791:31966991,11797098 -g1,9791:31966991,11797098 -) -h1,9791:7246811,11993706:0,0,0 -v1,9795:7246811,14673220:0,393216,0 -(1,9810:7246811,19074181:24720180,4794177,196608 -g1,9810:7246811,19074181 -g1,9810:7246811,19074181 -g1,9810:7050203,19074181 -(1,9810:7050203,19074181:0,4794177,196608 -r1,9893:32163599,19074181:25113396,4990785,196608 -k1,9810:7050203,19074181:-25113396 -) -(1,9810:7050203,19074181:25113396,4794177,196608 -[1,9810:7246811,19074181:24720180,4597569,0 -(1,9797:7246811,14880838:24720180,404226,101187 -(1,9796:7246811,14880838:0,0,0 -g1,9796:7246811,14880838 -g1,9796:7246811,14880838 -g1,9796:6919131,14880838 -(1,9796:6919131,14880838:0,0,0 -) -g1,9796:7246811,14880838 -) -k1,9797:7246811,14880838:0 -h1,9797:11356705,14880838:0,0,0 -k1,9797:31966991,14880838:20610286 -g1,9797:31966991,14880838 -) -(1,9802:7246811,15612552:24720180,404226,76021 -(1,9799:7246811,15612552:0,0,0 -g1,9799:7246811,15612552 -g1,9799:7246811,15612552 -g1,9799:6919131,15612552 -(1,9799:6919131,15612552:0,0,0 -) -g1,9799:7246811,15612552 -) -g1,9802:8195248,15612552 -g1,9802:9459831,15612552 -h1,9802:12305142,15612552:0,0,0 -k1,9802:31966990,15612552:19661848 -g1,9802:31966990,15612552 -) -(1,9802:7246811,16278730:24720180,404226,76021 -h1,9802:7246811,16278730:0,0,0 -g1,9802:8195248,16278730 -g1,9802:9459831,16278730 -h1,9802:10408268,16278730:0,0,0 -k1,9802:31966992,16278730:21558724 -g1,9802:31966992,16278730 -) -(1,9804:7246811,17600268:24720180,404226,101187 -(1,9803:7246811,17600268:0,0,0 -g1,9803:7246811,17600268 -g1,9803:7246811,17600268 -g1,9803:6919131,17600268 -(1,9803:6919131,17600268:0,0,0 -) -g1,9803:7246811,17600268 -) -k1,9804:7246811,17600268:0 -h1,9804:11988996,17600268:0,0,0 -k1,9804:31966992,17600268:19977996 -g1,9804:31966992,17600268 -) -(1,9809:7246811,18331982:24720180,404226,76021 -(1,9806:7246811,18331982:0,0,0 -g1,9806:7246811,18331982 -g1,9806:7246811,18331982 -g1,9806:6919131,18331982 -(1,9806:6919131,18331982:0,0,0 -) -g1,9806:7246811,18331982 -) -g1,9809:8195248,18331982 -g1,9809:9459831,18331982 -h1,9809:12937433,18331982:0,0,0 -k1,9809:31966991,18331982:19029558 -g1,9809:31966991,18331982 -) -(1,9809:7246811,18998160:24720180,404226,76021 -h1,9809:7246811,18998160:0,0,0 -g1,9809:8195248,18998160 -g1,9809:9459831,18998160 -h1,9809:11040559,18998160:0,0,0 -k1,9809:31966991,18998160:20926432 -g1,9809:31966991,18998160 -) -] -) -g1,9810:31966991,19074181 -g1,9810:7246811,19074181 -g1,9810:7246811,19074181 -g1,9810:31966991,19074181 -g1,9810:31966991,19074181 -) -h1,9810:7246811,19270789:0,0,0 -(1,9814:7246811,21360136:24720180,513147,126483 -h1,9813:7246811,21360136:983040,0,0 -k1,9813:9380734,21360136:258938 -k1,9813:10291101,21360136:258939 -k1,9813:12054090,21360136:258938 -(1,9813:12054090,21360136:0,452978,115847 -r1,9893:15577762,21360136:3523672,568825,115847 -k1,9813:12054090,21360136:-3523672 -) -(1,9813:12054090,21360136:3523672,452978,115847 -k1,9813:12054090,21360136:3277 -h1,9813:15574485,21360136:0,411205,112570 -) -k1,9813:16010371,21360136:258939 -k1,9813:17370314,21360136:258938 -k1,9813:18438622,21360136:258938 -k1,9813:23279838,21360136:258939 -k1,9813:24492325,21360136:258938 -k1,9813:26081645,21360136:258939 -k1,9813:27955390,21360136:258938 -k1,9813:29371039,21360136:258939 -k1,9813:30577628,21360136:258938 -k1,9813:31966991,21360136:0 -) -(1,9814:7246811,22201624:24720180,513147,7863 -k1,9814:31966991,22201624:22339912 -g1,9814:31966991,22201624 -) -v1,9816:7246811,23874470:0,393216,0 -(1,9823:7246811,26162935:24720180,2681681,196608 -g1,9823:7246811,26162935 -g1,9823:7246811,26162935 -g1,9823:7050203,26162935 -(1,9823:7050203,26162935:0,2681681,196608 -r1,9893:32163599,26162935:25113396,2878289,196608 -k1,9823:7050203,26162935:-25113396 -) -(1,9823:7050203,26162935:25113396,2681681,196608 -[1,9823:7246811,26162935:24720180,2485073,0 -(1,9818:7246811,24088380:24720180,410518,101187 -(1,9817:7246811,24088380:0,0,0 -g1,9817:7246811,24088380 -g1,9817:7246811,24088380 -g1,9817:6919131,24088380 -(1,9817:6919131,24088380:0,0,0 -) -g1,9817:7246811,24088380 -) -g1,9818:13569725,24088380 -g1,9818:14518163,24088380 -g1,9818:18311912,24088380 -g1,9818:19892641,24088380 -g1,9818:20524933,24088380 -g1,9818:22105663,24088380 -g1,9818:23686392,24088380 -h1,9818:24002538,24088380:0,0,0 -k1,9818:31966991,24088380:7964453 -g1,9818:31966991,24088380 -) -(1,9819:7246811,24754558:24720180,404226,101187 -h1,9819:7246811,24754558:0,0,0 -g1,9819:7562957,24754558 -g1,9819:7879103,24754558 -g1,9819:8195249,24754558 -g1,9819:12621289,24754558 -g1,9819:13569727,24754558 -h1,9819:14834310,24754558:0,0,0 -k1,9819:31966990,24754558:17132680 -g1,9819:31966990,24754558 -) -(1,9820:7246811,25420736:24720180,404226,76021 -h1,9820:7246811,25420736:0,0,0 -g1,9820:7562957,25420736 -g1,9820:7879103,25420736 -g1,9820:8195249,25420736 -k1,9820:8195249,25420736:0 -h1,9820:11988997,25420736:0,0,0 -k1,9820:31966991,25420736:19977994 -g1,9820:31966991,25420736 -) -(1,9821:7246811,26086914:24720180,404226,76021 -h1,9821:7246811,26086914:0,0,0 -h1,9821:7562957,26086914:0,0,0 -k1,9821:31966991,26086914:24404034 -g1,9821:31966991,26086914 -) -] -) -g1,9823:31966991,26162935 -g1,9823:7246811,26162935 -g1,9823:7246811,26162935 -g1,9823:31966991,26162935 -g1,9823:31966991,26162935 -) -h1,9823:7246811,26359543:0,0,0 -(1,9827:7246811,28448889:24720180,513147,126483 -h1,9826:7246811,28448889:983040,0,0 -k1,9826:9490943,28448889:307543 -k1,9826:10995828,28448889:307542 -k1,9826:12322456,28448889:307543 -k1,9826:14871329,28448889:307542 -k1,9826:18365232,28448889:307543 -k1,9826:19397602,28448889:307542 -k1,9826:20989651,28448889:307543 -k1,9826:22316278,28448889:307542 -k1,9826:25319317,28448889:307543 -k1,9826:28299418,28448889:307543 -k1,9826:30947906,28448889:307542 -k1,9826:31966991,28448889:0 -) -(1,9827:7246811,29290377:24720180,513147,126483 -k1,9826:9408937,29290377:279277 -k1,9826:11077577,29290377:279277 -k1,9826:13406820,29290377:279277 -k1,9826:15637760,29290377:279278 -k1,9826:17359484,29290377:279277 -k1,9826:18657846,29290377:279277 -k1,9826:20435931,29290377:279277 -k1,9826:23238999,29290377:279277 -k1,9826:24471825,29290377:279277 -k1,9826:26081483,29290377:279277 -k1,9826:27176029,29290377:279278 -k1,9826:27811166,29290377:279277 -k1,9826:29836977,29290377:279277 -k1,9826:31307699,29290377:279277 -k1,9826:31966991,29290377:0 -) -(1,9827:7246811,30131865:24720180,513147,7863 -g1,9826:8465125,30131865 -k1,9827:31966991,30131865:20632700 -g1,9827:31966991,30131865 -) -v1,9829:7246811,31804711:0,393216,0 -(1,9841:7246811,36084369:24720180,4672874,196608 -g1,9841:7246811,36084369 -g1,9841:7246811,36084369 -g1,9841:7050203,36084369 -(1,9841:7050203,36084369:0,4672874,196608 -r1,9893:32163599,36084369:25113396,4869482,196608 -k1,9841:7050203,36084369:-25113396 -) -(1,9841:7050203,36084369:25113396,4672874,196608 -[1,9841:7246811,36084369:24720180,4476266,0 -(1,9831:7246811,32012329:24720180,404226,101187 -(1,9830:7246811,32012329:0,0,0 -g1,9830:7246811,32012329 -g1,9830:7246811,32012329 -g1,9830:6919131,32012329 -(1,9830:6919131,32012329:0,0,0 -) -g1,9830:7246811,32012329 -) -k1,9831:7246811,32012329:0 -h1,9831:11672850,32012329:0,0,0 -k1,9831:31966990,32012329:20294140 -g1,9831:31966990,32012329 -) -(1,9840:7246811,32744043:24720180,404226,101187 -(1,9833:7246811,32744043:0,0,0 -g1,9833:7246811,32744043 -g1,9833:7246811,32744043 -g1,9833:6919131,32744043 -(1,9833:6919131,32744043:0,0,0 -) -g1,9833:7246811,32744043 -) -g1,9840:8195248,32744043 -g1,9840:8511394,32744043 -g1,9840:8827540,32744043 -g1,9840:10724414,32744043 -h1,9840:11988997,32744043:0,0,0 -k1,9840:31966991,32744043:19977994 -g1,9840:31966991,32744043 -) -(1,9840:7246811,33410221:24720180,388497,0 -h1,9840:7246811,33410221:0,0,0 -g1,9840:8195248,33410221 -g1,9840:8827540,33410221 -g1,9840:9143686,33410221 -g1,9840:9459832,33410221 -g1,9840:9775978,33410221 -g1,9840:10092124,33410221 -g1,9840:10724416,33410221 -g1,9840:11040562,33410221 -g1,9840:11356708,33410221 -g1,9840:11672854,33410221 -h1,9840:11989000,33410221:0,0,0 -k1,9840:31966992,33410221:19977992 -g1,9840:31966992,33410221 -) -(1,9840:7246811,34076399:24720180,388497,9436 -h1,9840:7246811,34076399:0,0,0 -g1,9840:8195248,34076399 -g1,9840:8827540,34076399 -g1,9840:9143686,34076399 -g1,9840:9459832,34076399 -g1,9840:9775978,34076399 -g1,9840:10092124,34076399 -g1,9840:10724416,34076399 -g1,9840:11040562,34076399 -g1,9840:11356708,34076399 -h1,9840:11988999,34076399:0,0,0 -k1,9840:31966991,34076399:19977992 -g1,9840:31966991,34076399 -) -(1,9840:7246811,34742577:24720180,388497,9436 -h1,9840:7246811,34742577:0,0,0 -g1,9840:8195248,34742577 -g1,9840:8827540,34742577 -g1,9840:9143686,34742577 -g1,9840:9459832,34742577 -g1,9840:9775978,34742577 -g1,9840:10092124,34742577 -g1,9840:10724416,34742577 -g1,9840:11040562,34742577 -g1,9840:11356708,34742577 -g1,9840:11672854,34742577 -h1,9840:11989000,34742577:0,0,0 -k1,9840:31966992,34742577:19977992 -g1,9840:31966992,34742577 -) -(1,9840:7246811,35408755:24720180,388497,0 -h1,9840:7246811,35408755:0,0,0 -g1,9840:8195248,35408755 -g1,9840:8827540,35408755 -g1,9840:9143686,35408755 -g1,9840:9459832,35408755 -g1,9840:9775978,35408755 -g1,9840:10092124,35408755 -g1,9840:10724416,35408755 -g1,9840:11040562,35408755 -g1,9840:11356708,35408755 -h1,9840:11988999,35408755:0,0,0 -k1,9840:31966991,35408755:19977992 -g1,9840:31966991,35408755 -) -(1,9840:7246811,36074933:24720180,388497,9436 -h1,9840:7246811,36074933:0,0,0 -g1,9840:8195248,36074933 -g1,9840:8827540,36074933 -g1,9840:9143686,36074933 -g1,9840:9459832,36074933 -g1,9840:9775978,36074933 -g1,9840:10092124,36074933 -g1,9840:10724416,36074933 -g1,9840:11040562,36074933 -g1,9840:11356708,36074933 -h1,9840:11988999,36074933:0,0,0 -k1,9840:31966991,36074933:19977992 -g1,9840:31966991,36074933 -) -] -) -g1,9841:31966991,36084369 -g1,9841:7246811,36084369 -g1,9841:7246811,36084369 -g1,9841:31966991,36084369 -g1,9841:31966991,36084369 -) -h1,9841:7246811,36280977:0,0,0 -v1,9845:7246811,38960492:0,393216,0 -(1,9855:7246811,41907794:24720180,3340518,196608 -g1,9855:7246811,41907794 -g1,9855:7246811,41907794 -g1,9855:7050203,41907794 -(1,9855:7050203,41907794:0,3340518,196608 -r1,9893:32163599,41907794:25113396,3537126,196608 -k1,9855:7050203,41907794:-25113396 -) -(1,9855:7050203,41907794:25113396,3340518,196608 -[1,9855:7246811,41907794:24720180,3143910,0 -(1,9847:7246811,39168110:24720180,404226,101187 -(1,9846:7246811,39168110:0,0,0 -g1,9846:7246811,39168110 -g1,9846:7246811,39168110 -g1,9846:6919131,39168110 -(1,9846:6919131,39168110:0,0,0 -) -g1,9846:7246811,39168110 -) -k1,9847:7246811,39168110:0 -g1,9847:11988996,39168110 -h1,9847:13569725,39168110:0,0,0 -k1,9847:31966991,39168110:18397266 -g1,9847:31966991,39168110 -) -(1,9854:7246811,39899824:24720180,404226,101187 -(1,9849:7246811,39899824:0,0,0 -g1,9849:7246811,39899824 -g1,9849:7246811,39899824 -g1,9849:6919131,39899824 -(1,9849:6919131,39899824:0,0,0 -) -g1,9849:7246811,39899824 -) -g1,9854:8195248,39899824 -g1,9854:8511394,39899824 -g1,9854:8827540,39899824 -g1,9854:9143686,39899824 -g1,9854:11040560,39899824 -h1,9854:12305143,39899824:0,0,0 -k1,9854:31966991,39899824:19661848 -g1,9854:31966991,39899824 -) -(1,9854:7246811,40566002:24720180,388497,9436 -h1,9854:7246811,40566002:0,0,0 -g1,9854:8195248,40566002 -g1,9854:8827540,40566002 -g1,9854:9143686,40566002 -g1,9854:9459832,40566002 -g1,9854:9775978,40566002 -g1,9854:10092124,40566002 -g1,9854:11040561,40566002 -g1,9854:11356707,40566002 -g1,9854:11672853,40566002 -h1,9854:12305144,40566002:0,0,0 -k1,9854:31966992,40566002:19661848 -g1,9854:31966992,40566002 -) -(1,9854:7246811,41232180:24720180,388497,9436 -h1,9854:7246811,41232180:0,0,0 -g1,9854:8195248,41232180 -g1,9854:8827540,41232180 -g1,9854:9143686,41232180 -g1,9854:9459832,41232180 -g1,9854:9775978,41232180 -g1,9854:10092124,41232180 -g1,9854:11040561,41232180 -g1,9854:11356707,41232180 -g1,9854:11672853,41232180 -h1,9854:12305144,41232180:0,0,0 -k1,9854:31966992,41232180:19661848 -g1,9854:31966992,41232180 -) -(1,9854:7246811,41898358:24720180,388497,9436 -h1,9854:7246811,41898358:0,0,0 -g1,9854:8195248,41898358 -g1,9854:9143685,41898358 -g1,9854:9459831,41898358 -g1,9854:9775977,41898358 -g1,9854:10092123,41898358 -g1,9854:11040560,41898358 -g1,9854:11356706,41898358 -g1,9854:11672852,41898358 -h1,9854:12305143,41898358:0,0,0 -k1,9854:31966991,41898358:19661848 -g1,9854:31966991,41898358 -) -] -) -g1,9855:31966991,41907794 -g1,9855:7246811,41907794 -g1,9855:7246811,41907794 -g1,9855:31966991,41907794 -g1,9855:31966991,41907794 -) -h1,9855:7246811,42104402:0,0,0 -] -) -] -r1,9893:32583029,45706769:26214,39845888,0 -) +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9898:37855564,49800853:1179648,16384,0 +) +) +k1,9898:3078556,49800853:-34777008 +) +] +g1,9898:6630773,4812305 +g1,9898:6630773,4812305 +g1,9898:9311850,4812305 +g1,9898:11796319,4812305 +g1,9898:13205998,4812305 +g1,9898:16063367,4812305 +k1,9898:31387652,4812305:15324285 +) +) +] +[1,9898:6630773,45706769:25952256,40108032,0 +(1,9898:6630773,45706769:25952256,40108032,0 +(1,9898:6630773,45706769:0,0,0 +g1,9898:6630773,45706769 +) +[1,9898:6630773,45706769:25952256,40108032,0 +v1,9898:6630773,6254097:0,393216,0 +(1,9898:6630773,45116945:25952256,39256064,589824 +g1,9898:6630773,45116945 +(1,9898:6630773,45116945:25952256,39256064,589824 +(1,9898:6630773,45706769:25952256,39845888,0 +[1,9898:6630773,45706769:25952256,39845888,0 +(1,9898:6630773,45706769:25952256,39845888,0 +r1,9898:6656987,45706769:26214,39845888,0 +[1,9898:6656987,45706769:25899828,39845888,0 +(1,9898:6656987,45116945:25899828,38666240,0 +[1,9898:7246811,45116945:24720180,38666240,0 +v1,9785:7246811,6843921:0,393216,0 +(1,9796:7246811,11797098:24720180,5346393,196608 +g1,9796:7246811,11797098 +g1,9796:7246811,11797098 +g1,9796:7050203,11797098 +(1,9796:7050203,11797098:0,5346393,196608 +r1,9898:32163599,11797098:25113396,5543001,196608 +k1,9796:7050203,11797098:-25113396 +) +(1,9796:7050203,11797098:25113396,5346393,196608 +[1,9796:7246811,11797098:24720180,5149785,0 +(1,9787:7246811,7057831:24720180,410518,101187 +(1,9786:7246811,7057831:0,0,0 +g1,9786:7246811,7057831 +g1,9786:7246811,7057831 +g1,9786:6919131,7057831 +(1,9786:6919131,7057831:0,0,0 +) +g1,9786:7246811,7057831 +) +g1,9787:10092122,7057831 +g1,9787:11040560,7057831 +g1,9787:13885871,7057831 +g1,9787:15150455,7057831 +g1,9787:16731184,7057831 +h1,9787:17047330,7057831:0,0,0 +k1,9787:31966991,7057831:14919661 +g1,9787:31966991,7057831 +) +(1,9788:7246811,7724009:24720180,404226,101187 +h1,9788:7246811,7724009:0,0,0 +g1,9788:7562957,7724009 +g1,9788:7879103,7724009 +g1,9788:8195249,7724009 +g1,9788:15150455,7724009 +h1,9788:15782746,7724009:0,0,0 +k1,9788:31966991,7724009:16184245 +g1,9788:31966991,7724009 +) +(1,9789:7246811,8390187:24720180,404226,76021 +h1,9789:7246811,8390187:0,0,0 +g1,9789:7562957,8390187 +h1,9789:7879103,8390187:0,0,0 +k1,9789:31966991,8390187:24087888 +g1,9789:31966991,8390187 +) +(1,9790:7246811,9056365:24720180,0,0 +h1,9790:7246811,9056365:0,0,0 +h1,9790:7246811,9056365:0,0,0 +k1,9790:31966991,9056365:24720180 +g1,9790:31966991,9056365 +) +(1,9791:7246811,9722543:24720180,410518,101187 +h1,9791:7246811,9722543:0,0,0 +g1,9791:12621288,9722543 +g1,9791:13569726,9722543 +g1,9791:17363475,9722543 +g1,9791:18944204,9722543 +h1,9791:19260350,9722543:0,0,0 +k1,9791:31966991,9722543:12706641 +g1,9791:31966991,9722543 +) +(1,9792:7246811,10388721:24720180,404226,101187 +h1,9792:7246811,10388721:0,0,0 +g1,9792:7562957,10388721 +g1,9792:7879103,10388721 +g1,9792:8195249,10388721 +k1,9792:8195249,10388721:0 +h1,9792:12937434,10388721:0,0,0 +k1,9792:31966990,10388721:19029556 +g1,9792:31966990,10388721 +) +(1,9793:7246811,11054899:24720180,404226,101187 +h1,9793:7246811,11054899:0,0,0 +g1,9793:7562957,11054899 +g1,9793:7879103,11054899 +g1,9793:8195249,11054899 +g1,9793:11040560,11054899 +h1,9793:12305143,11054899:0,0,0 +k1,9793:31966991,11054899:19661848 +g1,9793:31966991,11054899 +) +(1,9794:7246811,11721077:24720180,404226,76021 +h1,9794:7246811,11721077:0,0,0 +h1,9794:7562957,11721077:0,0,0 +k1,9794:31966991,11721077:24404034 +g1,9794:31966991,11721077 +) +] +) +g1,9796:31966991,11797098 +g1,9796:7246811,11797098 +g1,9796:7246811,11797098 +g1,9796:31966991,11797098 +g1,9796:31966991,11797098 +) +h1,9796:7246811,11993706:0,0,0 +v1,9800:7246811,14673220:0,393216,0 +(1,9815:7246811,19074181:24720180,4794177,196608 +g1,9815:7246811,19074181 +g1,9815:7246811,19074181 +g1,9815:7050203,19074181 +(1,9815:7050203,19074181:0,4794177,196608 +r1,9898:32163599,19074181:25113396,4990785,196608 +k1,9815:7050203,19074181:-25113396 +) +(1,9815:7050203,19074181:25113396,4794177,196608 +[1,9815:7246811,19074181:24720180,4597569,0 +(1,9802:7246811,14880838:24720180,404226,101187 +(1,9801:7246811,14880838:0,0,0 +g1,9801:7246811,14880838 +g1,9801:7246811,14880838 +g1,9801:6919131,14880838 +(1,9801:6919131,14880838:0,0,0 +) +g1,9801:7246811,14880838 +) +k1,9802:7246811,14880838:0 +h1,9802:11356705,14880838:0,0,0 +k1,9802:31966991,14880838:20610286 +g1,9802:31966991,14880838 +) +(1,9807:7246811,15612552:24720180,404226,76021 +(1,9804:7246811,15612552:0,0,0 +g1,9804:7246811,15612552 +g1,9804:7246811,15612552 +g1,9804:6919131,15612552 +(1,9804:6919131,15612552:0,0,0 +) +g1,9804:7246811,15612552 +) +g1,9807:8195248,15612552 +g1,9807:9459831,15612552 +h1,9807:12305142,15612552:0,0,0 +k1,9807:31966990,15612552:19661848 +g1,9807:31966990,15612552 +) +(1,9807:7246811,16278730:24720180,404226,76021 +h1,9807:7246811,16278730:0,0,0 +g1,9807:8195248,16278730 +g1,9807:9459831,16278730 +h1,9807:10408268,16278730:0,0,0 +k1,9807:31966992,16278730:21558724 +g1,9807:31966992,16278730 +) +(1,9809:7246811,17600268:24720180,404226,101187 +(1,9808:7246811,17600268:0,0,0 +g1,9808:7246811,17600268 +g1,9808:7246811,17600268 +g1,9808:6919131,17600268 +(1,9808:6919131,17600268:0,0,0 +) +g1,9808:7246811,17600268 +) +k1,9809:7246811,17600268:0 +h1,9809:11988996,17600268:0,0,0 +k1,9809:31966992,17600268:19977996 +g1,9809:31966992,17600268 +) +(1,9814:7246811,18331982:24720180,404226,76021 +(1,9811:7246811,18331982:0,0,0 +g1,9811:7246811,18331982 +g1,9811:7246811,18331982 +g1,9811:6919131,18331982 +(1,9811:6919131,18331982:0,0,0 +) +g1,9811:7246811,18331982 +) +g1,9814:8195248,18331982 +g1,9814:9459831,18331982 +h1,9814:12937433,18331982:0,0,0 +k1,9814:31966991,18331982:19029558 +g1,9814:31966991,18331982 +) +(1,9814:7246811,18998160:24720180,404226,76021 +h1,9814:7246811,18998160:0,0,0 +g1,9814:8195248,18998160 +g1,9814:9459831,18998160 +h1,9814:11040559,18998160:0,0,0 +k1,9814:31966991,18998160:20926432 +g1,9814:31966991,18998160 +) +] +) +g1,9815:31966991,19074181 +g1,9815:7246811,19074181 +g1,9815:7246811,19074181 +g1,9815:31966991,19074181 +g1,9815:31966991,19074181 +) +h1,9815:7246811,19270789:0,0,0 +(1,9819:7246811,21360136:24720180,513147,126483 +h1,9818:7246811,21360136:983040,0,0 +k1,9818:9380734,21360136:258938 +k1,9818:10291101,21360136:258939 +k1,9818:12054090,21360136:258938 +(1,9818:12054090,21360136:0,452978,115847 +r1,9898:15577762,21360136:3523672,568825,115847 +k1,9818:12054090,21360136:-3523672 +) +(1,9818:12054090,21360136:3523672,452978,115847 +k1,9818:12054090,21360136:3277 +h1,9818:15574485,21360136:0,411205,112570 +) +k1,9818:16010371,21360136:258939 +k1,9818:17370314,21360136:258938 +k1,9818:18438622,21360136:258938 +k1,9818:23279838,21360136:258939 +k1,9818:24492325,21360136:258938 +k1,9818:26081645,21360136:258939 +k1,9818:27955390,21360136:258938 +k1,9818:29371039,21360136:258939 +k1,9818:30577628,21360136:258938 +k1,9818:31966991,21360136:0 +) +(1,9819:7246811,22201624:24720180,513147,7863 +k1,9819:31966991,22201624:22339912 +g1,9819:31966991,22201624 +) +v1,9821:7246811,23874470:0,393216,0 +(1,9828:7246811,26162935:24720180,2681681,196608 +g1,9828:7246811,26162935 +g1,9828:7246811,26162935 +g1,9828:7050203,26162935 +(1,9828:7050203,26162935:0,2681681,196608 +r1,9898:32163599,26162935:25113396,2878289,196608 +k1,9828:7050203,26162935:-25113396 +) +(1,9828:7050203,26162935:25113396,2681681,196608 +[1,9828:7246811,26162935:24720180,2485073,0 +(1,9823:7246811,24088380:24720180,410518,101187 +(1,9822:7246811,24088380:0,0,0 +g1,9822:7246811,24088380 +g1,9822:7246811,24088380 +g1,9822:6919131,24088380 +(1,9822:6919131,24088380:0,0,0 +) +g1,9822:7246811,24088380 +) +g1,9823:13569725,24088380 +g1,9823:14518163,24088380 +g1,9823:18311912,24088380 +g1,9823:19892641,24088380 +g1,9823:20524933,24088380 +g1,9823:22105663,24088380 +g1,9823:23686392,24088380 +h1,9823:24002538,24088380:0,0,0 +k1,9823:31966991,24088380:7964453 +g1,9823:31966991,24088380 +) +(1,9824:7246811,24754558:24720180,404226,101187 +h1,9824:7246811,24754558:0,0,0 +g1,9824:7562957,24754558 +g1,9824:7879103,24754558 +g1,9824:8195249,24754558 +g1,9824:12621289,24754558 +g1,9824:13569727,24754558 +h1,9824:14834310,24754558:0,0,0 +k1,9824:31966990,24754558:17132680 +g1,9824:31966990,24754558 +) +(1,9825:7246811,25420736:24720180,404226,76021 +h1,9825:7246811,25420736:0,0,0 +g1,9825:7562957,25420736 +g1,9825:7879103,25420736 +g1,9825:8195249,25420736 +k1,9825:8195249,25420736:0 +h1,9825:11988997,25420736:0,0,0 +k1,9825:31966991,25420736:19977994 +g1,9825:31966991,25420736 +) +(1,9826:7246811,26086914:24720180,404226,76021 +h1,9826:7246811,26086914:0,0,0 +h1,9826:7562957,26086914:0,0,0 +k1,9826:31966991,26086914:24404034 +g1,9826:31966991,26086914 +) +] +) +g1,9828:31966991,26162935 +g1,9828:7246811,26162935 +g1,9828:7246811,26162935 +g1,9828:31966991,26162935 +g1,9828:31966991,26162935 +) +h1,9828:7246811,26359543:0,0,0 +(1,9832:7246811,28448889:24720180,513147,126483 +h1,9831:7246811,28448889:983040,0,0 +k1,9831:9490943,28448889:307543 +k1,9831:10995828,28448889:307542 +k1,9831:12322456,28448889:307543 +k1,9831:14871329,28448889:307542 +k1,9831:18365232,28448889:307543 +k1,9831:19397602,28448889:307542 +k1,9831:20989651,28448889:307543 +k1,9831:22316278,28448889:307542 +k1,9831:25319317,28448889:307543 +k1,9831:28299418,28448889:307543 +k1,9831:30947906,28448889:307542 +k1,9831:31966991,28448889:0 +) +(1,9832:7246811,29290377:24720180,513147,126483 +k1,9831:9408937,29290377:279277 +k1,9831:11077577,29290377:279277 +k1,9831:13406820,29290377:279277 +k1,9831:15637760,29290377:279278 +k1,9831:17359484,29290377:279277 +k1,9831:18657846,29290377:279277 +k1,9831:20435931,29290377:279277 +k1,9831:23238999,29290377:279277 +k1,9831:24471825,29290377:279277 +k1,9831:26081483,29290377:279277 +k1,9831:27176029,29290377:279278 +k1,9831:27811166,29290377:279277 +k1,9831:29836977,29290377:279277 +k1,9831:31307699,29290377:279277 +k1,9831:31966991,29290377:0 +) +(1,9832:7246811,30131865:24720180,513147,7863 +g1,9831:8465125,30131865 +k1,9832:31966991,30131865:20632700 +g1,9832:31966991,30131865 +) +v1,9834:7246811,31804711:0,393216,0 +(1,9846:7246811,36084369:24720180,4672874,196608 +g1,9846:7246811,36084369 +g1,9846:7246811,36084369 +g1,9846:7050203,36084369 +(1,9846:7050203,36084369:0,4672874,196608 +r1,9898:32163599,36084369:25113396,4869482,196608 +k1,9846:7050203,36084369:-25113396 +) +(1,9846:7050203,36084369:25113396,4672874,196608 +[1,9846:7246811,36084369:24720180,4476266,0 +(1,9836:7246811,32012329:24720180,404226,101187 +(1,9835:7246811,32012329:0,0,0 +g1,9835:7246811,32012329 +g1,9835:7246811,32012329 +g1,9835:6919131,32012329 +(1,9835:6919131,32012329:0,0,0 +) +g1,9835:7246811,32012329 +) +k1,9836:7246811,32012329:0 +h1,9836:11672850,32012329:0,0,0 +k1,9836:31966990,32012329:20294140 +g1,9836:31966990,32012329 +) +(1,9845:7246811,32744043:24720180,404226,101187 +(1,9838:7246811,32744043:0,0,0 +g1,9838:7246811,32744043 +g1,9838:7246811,32744043 +g1,9838:6919131,32744043 +(1,9838:6919131,32744043:0,0,0 +) +g1,9838:7246811,32744043 +) +g1,9845:8195248,32744043 +g1,9845:8511394,32744043 +g1,9845:8827540,32744043 +g1,9845:10724414,32744043 +h1,9845:11988997,32744043:0,0,0 +k1,9845:31966991,32744043:19977994 +g1,9845:31966991,32744043 +) +(1,9845:7246811,33410221:24720180,388497,0 +h1,9845:7246811,33410221:0,0,0 +g1,9845:8195248,33410221 +g1,9845:8827540,33410221 +g1,9845:9143686,33410221 +g1,9845:9459832,33410221 +g1,9845:9775978,33410221 +g1,9845:10092124,33410221 +g1,9845:10724416,33410221 +g1,9845:11040562,33410221 +g1,9845:11356708,33410221 +g1,9845:11672854,33410221 +h1,9845:11989000,33410221:0,0,0 +k1,9845:31966992,33410221:19977992 +g1,9845:31966992,33410221 +) +(1,9845:7246811,34076399:24720180,388497,9436 +h1,9845:7246811,34076399:0,0,0 +g1,9845:8195248,34076399 +g1,9845:8827540,34076399 +g1,9845:9143686,34076399 +g1,9845:9459832,34076399 +g1,9845:9775978,34076399 +g1,9845:10092124,34076399 +g1,9845:10724416,34076399 +g1,9845:11040562,34076399 +g1,9845:11356708,34076399 +h1,9845:11988999,34076399:0,0,0 +k1,9845:31966991,34076399:19977992 +g1,9845:31966991,34076399 +) +(1,9845:7246811,34742577:24720180,388497,9436 +h1,9845:7246811,34742577:0,0,0 +g1,9845:8195248,34742577 +g1,9845:8827540,34742577 +g1,9845:9143686,34742577 +g1,9845:9459832,34742577 +g1,9845:9775978,34742577 +g1,9845:10092124,34742577 +g1,9845:10724416,34742577 +g1,9845:11040562,34742577 +g1,9845:11356708,34742577 +g1,9845:11672854,34742577 +h1,9845:11989000,34742577:0,0,0 +k1,9845:31966992,34742577:19977992 +g1,9845:31966992,34742577 +) +(1,9845:7246811,35408755:24720180,388497,0 +h1,9845:7246811,35408755:0,0,0 +g1,9845:8195248,35408755 +g1,9845:8827540,35408755 +g1,9845:9143686,35408755 +g1,9845:9459832,35408755 +g1,9845:9775978,35408755 +g1,9845:10092124,35408755 +g1,9845:10724416,35408755 +g1,9845:11040562,35408755 +g1,9845:11356708,35408755 +h1,9845:11988999,35408755:0,0,0 +k1,9845:31966991,35408755:19977992 +g1,9845:31966991,35408755 +) +(1,9845:7246811,36074933:24720180,388497,9436 +h1,9845:7246811,36074933:0,0,0 +g1,9845:8195248,36074933 +g1,9845:8827540,36074933 +g1,9845:9143686,36074933 +g1,9845:9459832,36074933 +g1,9845:9775978,36074933 +g1,9845:10092124,36074933 +g1,9845:10724416,36074933 +g1,9845:11040562,36074933 +g1,9845:11356708,36074933 +h1,9845:11988999,36074933:0,0,0 +k1,9845:31966991,36074933:19977992 +g1,9845:31966991,36074933 +) +] +) +g1,9846:31966991,36084369 +g1,9846:7246811,36084369 +g1,9846:7246811,36084369 +g1,9846:31966991,36084369 +g1,9846:31966991,36084369 +) +h1,9846:7246811,36280977:0,0,0 +v1,9850:7246811,38960492:0,393216,0 +(1,9860:7246811,41907794:24720180,3340518,196608 +g1,9860:7246811,41907794 +g1,9860:7246811,41907794 +g1,9860:7050203,41907794 +(1,9860:7050203,41907794:0,3340518,196608 +r1,9898:32163599,41907794:25113396,3537126,196608 +k1,9860:7050203,41907794:-25113396 +) +(1,9860:7050203,41907794:25113396,3340518,196608 +[1,9860:7246811,41907794:24720180,3143910,0 +(1,9852:7246811,39168110:24720180,404226,101187 +(1,9851:7246811,39168110:0,0,0 +g1,9851:7246811,39168110 +g1,9851:7246811,39168110 +g1,9851:6919131,39168110 +(1,9851:6919131,39168110:0,0,0 +) +g1,9851:7246811,39168110 +) +k1,9852:7246811,39168110:0 +g1,9852:11988996,39168110 +h1,9852:13569725,39168110:0,0,0 +k1,9852:31966991,39168110:18397266 +g1,9852:31966991,39168110 +) +(1,9859:7246811,39899824:24720180,404226,101187 +(1,9854:7246811,39899824:0,0,0 +g1,9854:7246811,39899824 +g1,9854:7246811,39899824 +g1,9854:6919131,39899824 +(1,9854:6919131,39899824:0,0,0 +) +g1,9854:7246811,39899824 +) +g1,9859:8195248,39899824 +g1,9859:8511394,39899824 +g1,9859:8827540,39899824 +g1,9859:9143686,39899824 +g1,9859:11040560,39899824 +h1,9859:12305143,39899824:0,0,0 +k1,9859:31966991,39899824:19661848 +g1,9859:31966991,39899824 +) +(1,9859:7246811,40566002:24720180,388497,9436 +h1,9859:7246811,40566002:0,0,0 +g1,9859:8195248,40566002 +g1,9859:8827540,40566002 +g1,9859:9143686,40566002 +g1,9859:9459832,40566002 +g1,9859:9775978,40566002 +g1,9859:10092124,40566002 +g1,9859:11040561,40566002 +g1,9859:11356707,40566002 +g1,9859:11672853,40566002 +h1,9859:12305144,40566002:0,0,0 +k1,9859:31966992,40566002:19661848 +g1,9859:31966992,40566002 +) +(1,9859:7246811,41232180:24720180,388497,9436 +h1,9859:7246811,41232180:0,0,0 +g1,9859:8195248,41232180 +g1,9859:8827540,41232180 +g1,9859:9143686,41232180 +g1,9859:9459832,41232180 +g1,9859:9775978,41232180 +g1,9859:10092124,41232180 +g1,9859:11040561,41232180 +g1,9859:11356707,41232180 +g1,9859:11672853,41232180 +h1,9859:12305144,41232180:0,0,0 +k1,9859:31966992,41232180:19661848 +g1,9859:31966992,41232180 +) +(1,9859:7246811,41898358:24720180,388497,9436 +h1,9859:7246811,41898358:0,0,0 +g1,9859:8195248,41898358 +g1,9859:9143685,41898358 +g1,9859:9459831,41898358 +g1,9859:9775977,41898358 +g1,9859:10092123,41898358 +g1,9859:11040560,41898358 +g1,9859:11356706,41898358 +g1,9859:11672852,41898358 +h1,9859:12305143,41898358:0,0,0 +k1,9859:31966991,41898358:19661848 +g1,9859:31966991,41898358 +) +] +) +g1,9860:31966991,41907794 +g1,9860:7246811,41907794 +g1,9860:7246811,41907794 +g1,9860:31966991,41907794 +g1,9860:31966991,41907794 +) +h1,9860:7246811,42104402:0,0,0 +] +) +] +r1,9898:32583029,45706769:26214,39845888,0 +) ] ) ) -g1,9893:32583029,45116945 +g1,9898:32583029,45116945 ) ] -(1,9893:32583029,45706769:0,0,0 -g1,9893:32583029,45706769 +(1,9898:32583029,45706769:0,0,0 +g1,9898:32583029,45706769 ) ) ] -(1,9893:6630773,47279633:25952256,0,0 -h1,9893:6630773,47279633:25952256,0,0 +(1,9898:6630773,47279633:25952256,0,0 +h1,9898:6630773,47279633:25952256,0,0 ) ] -h1,9893:4262630,4025873:0,0,0 +h1,9898:4262630,4025873:0,0,0 ] !18682 }184 -Input:1251:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:1247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {185 -[1,9936:4262630,47279633:28320399,43253760,0 -(1,9936:4262630,4025873:0,0,0 -[1,9936:-473657,4025873:25952256,0,0 -(1,9936:-473657,-710414:25952256,0,0 -h1,9936:-473657,-710414:0,0,0 -(1,9936:-473657,-710414:0,0,0 -(1,9936:-473657,-710414:0,0,0 -g1,9936:-473657,-710414 -(1,9936:-473657,-710414:65781,0,65781 -g1,9936:-407876,-710414 -[1,9936:-407876,-644633:0,0,0 +[1,9941:4262630,47279633:28320399,43253760,0 +(1,9941:4262630,4025873:0,0,0 +[1,9941:-473657,4025873:25952256,0,0 +(1,9941:-473657,-710414:25952256,0,0 +h1,9941:-473657,-710414:0,0,0 +(1,9941:-473657,-710414:0,0,0 +(1,9941:-473657,-710414:0,0,0 +g1,9941:-473657,-710414 +(1,9941:-473657,-710414:65781,0,65781 +g1,9941:-407876,-710414 +[1,9941:-407876,-644633:0,0,0 ] ) -k1,9936:-473657,-710414:-65781 +k1,9941:-473657,-710414:-65781 ) ) -k1,9936:25478599,-710414:25952256 -g1,9936:25478599,-710414 +k1,9941:25478599,-710414:25952256 +g1,9941:25478599,-710414 ) ] ) -[1,9936:6630773,47279633:25952256,43253760,0 -[1,9936:6630773,4812305:25952256,786432,0 -(1,9936:6630773,4812305:25952256,505283,134348 -(1,9936:6630773,4812305:25952256,505283,134348 -g1,9936:3078558,4812305 -[1,9936:3078558,4812305:0,0,0 -(1,9936:3078558,2439708:0,1703936,0 -k1,9936:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9936:2537886,2439708:1179648,16384,0 +[1,9941:6630773,47279633:25952256,43253760,0 +[1,9941:6630773,4812305:25952256,786432,0 +(1,9941:6630773,4812305:25952256,505283,134348 +(1,9941:6630773,4812305:25952256,505283,134348 +g1,9941:3078558,4812305 +[1,9941:3078558,4812305:0,0,0 +(1,9941:3078558,2439708:0,1703936,0 +k1,9941:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9941:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9936:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9941:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9936:3078558,4812305:0,0,0 -(1,9936:3078558,2439708:0,1703936,0 -g1,9936:29030814,2439708 -g1,9936:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9936: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,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9941:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9936:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9941:37855564,2439708:1179648,16384,0 ) ) -k1,9936:3078556,2439708:-34777008 +k1,9941:3078556,2439708:-34777008 ) ] -[1,9936:3078558,4812305:0,0,0 -(1,9936:3078558,49800853:0,16384,2228224 -k1,9936:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9936: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,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9941:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9936:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9941:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9936:3078558,4812305:0,0,0 -(1,9936:3078558,49800853:0,16384,2228224 -g1,9936:29030814,49800853 -g1,9936:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9936: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,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9941:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9936:37855564,49800853:1179648,16384,0 -) -) -k1,9936:3078556,49800853:-34777008 -) -] -g1,9936:6630773,4812305 -k1,9936:20873058,4812305:13046908 -g1,9936:22259799,4812305 -g1,9936:22908605,4812305 -g1,9936:26222760,4812305 -g1,9936:28614824,4812305 -g1,9936:30094627,4812305 -) -) -] -[1,9936:6630773,45706769:25952256,40108032,0 -(1,9936:6630773,45706769:25952256,40108032,0 -(1,9936:6630773,45706769:0,0,0 -g1,9936:6630773,45706769 -) -[1,9936:6630773,45706769:25952256,40108032,0 -v1,9893:6630773,6254097:0,393216,0 -(1,9893:6630773,17349920:25952256,11489039,616038 -g1,9893:6630773,17349920 -(1,9893:6630773,17349920:25952256,11489039,616038 -(1,9893:6630773,17965958:25952256,12105077,0 -[1,9893:6630773,17965958:25952256,12105077,0 -(1,9893:6630773,17939744:25952256,12078863,0 -r1,9893:6656987,17939744:26214,12078863,0 -[1,9893:6656987,17939744:25899828,12078863,0 -(1,9893:6656987,17349920:25899828,10899215,0 -[1,9893:7246811,17349920:24720180,10899215,0 -v1,9859:7246811,6843921:0,393216,0 -(1,9885:7246811,16629024:24720180,10178319,196608 -g1,9885:7246811,16629024 -g1,9885:7246811,16629024 -g1,9885:7050203,16629024 -(1,9885:7050203,16629024:0,10178319,196608 -r1,9893:32163599,16629024:25113396,10374927,196608 -k1,9885:7050203,16629024:-25113396 -) -(1,9885:7050203,16629024:25113396,10178319,196608 -[1,9885:7246811,16629024:24720180,9981711,0 -(1,9861:7246811,7051539:24720180,404226,101187 -(1,9860:7246811,7051539:0,0,0 -g1,9860:7246811,7051539 -g1,9860:7246811,7051539 -g1,9860:6919131,7051539 -(1,9860:6919131,7051539:0,0,0 -) -g1,9860:7246811,7051539 -) -g1,9861:7879103,7051539 -g1,9861:8827541,7051539 -k1,9861:8827541,7051539:0 -h1,9861:13253580,7051539:0,0,0 -k1,9861:31966992,7051539:18713412 -g1,9861:31966992,7051539 -) -(1,9870:7246811,7783253:24720180,404226,101187 -(1,9863:7246811,7783253:0,0,0 -g1,9863:7246811,7783253 -g1,9863:7246811,7783253 -g1,9863:6919131,7783253 -(1,9863:6919131,7783253:0,0,0 -) -g1,9863:7246811,7783253 -) -g1,9870:8195248,7783253 -g1,9870:8511394,7783253 -g1,9870:8827540,7783253 -g1,9870:10724414,7783253 -h1,9870:11988997,7783253:0,0,0 -k1,9870:31966991,7783253:19977994 -g1,9870:31966991,7783253 -) -(1,9870:7246811,8449431:24720180,388497,0 -h1,9870:7246811,8449431:0,0,0 -g1,9870:8195248,8449431 -g1,9870:8827540,8449431 -g1,9870:9143686,8449431 -g1,9870:9459832,8449431 -g1,9870:9775978,8449431 -g1,9870:10092124,8449431 -g1,9870:10724416,8449431 -g1,9870:11040562,8449431 -g1,9870:11356708,8449431 -g1,9870:11672854,8449431 -h1,9870:11989000,8449431:0,0,0 -k1,9870:31966992,8449431:19977992 -g1,9870:31966992,8449431 -) -(1,9870:7246811,9115609:24720180,388497,9436 -h1,9870:7246811,9115609:0,0,0 -g1,9870:8195248,9115609 -g1,9870:8827540,9115609 -g1,9870:9143686,9115609 -g1,9870:9459832,9115609 -g1,9870:9775978,9115609 -g1,9870:10092124,9115609 -g1,9870:10724416,9115609 -g1,9870:11040562,9115609 -g1,9870:11356708,9115609 -h1,9870:11988999,9115609:0,0,0 -k1,9870:31966991,9115609:19977992 -g1,9870:31966991,9115609 -) -(1,9870:7246811,9781787:24720180,388497,9436 -h1,9870:7246811,9781787:0,0,0 -g1,9870:8195248,9781787 -g1,9870:8827540,9781787 -g1,9870:9143686,9781787 -g1,9870:9459832,9781787 -g1,9870:9775978,9781787 -g1,9870:10092124,9781787 -g1,9870:10724416,9781787 -g1,9870:11040562,9781787 -g1,9870:11356708,9781787 -g1,9870:11672854,9781787 -h1,9870:11989000,9781787:0,0,0 -k1,9870:31966992,9781787:19977992 -g1,9870:31966992,9781787 -) -(1,9870:7246811,10447965:24720180,388497,0 -h1,9870:7246811,10447965:0,0,0 -g1,9870:8195248,10447965 -g1,9870:8827540,10447965 -g1,9870:9143686,10447965 -g1,9870:9459832,10447965 -g1,9870:9775978,10447965 -g1,9870:10092124,10447965 -g1,9870:10724416,10447965 -g1,9870:11040562,10447965 -g1,9870:11356708,10447965 -h1,9870:11988999,10447965:0,0,0 -k1,9870:31966991,10447965:19977992 -g1,9870:31966991,10447965 -) -(1,9870:7246811,11114143:24720180,388497,9436 -h1,9870:7246811,11114143:0,0,0 -g1,9870:8195248,11114143 -g1,9870:8827540,11114143 -g1,9870:9143686,11114143 -g1,9870:9459832,11114143 -g1,9870:9775978,11114143 -g1,9870:10092124,11114143 -g1,9870:10724416,11114143 -g1,9870:11040562,11114143 -g1,9870:11356708,11114143 -h1,9870:11988999,11114143:0,0,0 -k1,9870:31966991,11114143:19977992 -g1,9870:31966991,11114143 -) -(1,9872:7246811,12435681:24720180,404226,76021 -(1,9871:7246811,12435681:0,0,0 -g1,9871:7246811,12435681 -g1,9871:7246811,12435681 -g1,9871:6919131,12435681 -(1,9871:6919131,12435681:0,0,0 -) -g1,9871:7246811,12435681 -) -k1,9872:7246811,12435681:0 -h1,9872:9143685,12435681:0,0,0 -k1,9872:31966991,12435681:22823306 -g1,9872:31966991,12435681 -) -(1,9878:7246811,13167395:24720180,410518,9436 -(1,9874:7246811,13167395:0,0,0 -g1,9874:7246811,13167395 -g1,9874:7246811,13167395 -g1,9874:6919131,13167395 -(1,9874:6919131,13167395:0,0,0 -) -g1,9874:7246811,13167395 -) -g1,9878:8195248,13167395 -g1,9878:12621289,13167395 -g1,9878:13569726,13167395 -g1,9878:15150455,13167395 -g1,9878:16098892,13167395 -g1,9878:16415038,13167395 -g1,9878:17047330,13167395 -h1,9878:20208787,13167395:0,0,0 -k1,9878:31966991,13167395:11758204 -g1,9878:31966991,13167395 -) -(1,9878:7246811,13833573:24720180,410518,101187 -h1,9878:7246811,13833573:0,0,0 -g1,9878:8195248,13833573 -g1,9878:8511394,13833573 -g1,9878:9143686,13833573 -g1,9878:11356706,13833573 -g1,9878:12621289,13833573 -g1,9878:12937435,13833573 -g1,9878:13569727,13833573 -g1,9878:14202019,13833573 -g1,9878:14834311,13833573 -g1,9878:15466603,13833573 -g1,9878:16098895,13833573 -g1,9878:16731187,13833573 -g1,9878:17679624,13833573 -g1,9878:18628061,13833573 -g1,9878:19576498,13833573 -g1,9878:20524935,13833573 -h1,9878:21473372,13833573:0,0,0 -k1,9878:31966991,13833573:10493619 -g1,9878:31966991,13833573 -) -(1,9878:7246811,14499751:24720180,410518,31456 -h1,9878:7246811,14499751:0,0,0 -g1,9878:8195248,14499751 -g1,9878:8511394,14499751 -g1,9878:9143686,14499751 -g1,9878:10724415,14499751 -g1,9878:11356707,14499751 -g1,9878:12621290,14499751 -g1,9878:12937436,14499751 -g1,9878:13569728,14499751 -g1,9878:14518165,14499751 -g1,9878:15150457,14499751 -g1,9878:16098894,14499751 -g1,9878:17047331,14499751 -g1,9878:17995768,14499751 -g1,9878:18944205,14499751 -g1,9878:19892642,14499751 -g1,9878:20841079,14499751 -g1,9878:21789516,14499751 -h1,9878:22737953,14499751:0,0,0 -k1,9878:31966991,14499751:9229038 -g1,9878:31966991,14499751 -) -(1,9880:7246811,15821289:24720180,410518,101187 -(1,9879:7246811,15821289:0,0,0 -g1,9879:7246811,15821289 -g1,9879:7246811,15821289 -g1,9879:6919131,15821289 -(1,9879:6919131,15821289:0,0,0 -) -g1,9879:7246811,15821289 -) -k1,9880:7246811,15821289:0 -g1,9880:9775977,15821289 -g1,9880:10724414,15821289 -g1,9880:14202017,15821289 -g1,9880:14834309,15821289 -g1,9880:16098892,15821289 -g1,9880:17363475,15821289 -g1,9880:19260349,15821289 -g1,9880:20841078,15821289 -g1,9880:22737952,15821289 -k1,9880:22737952,15821289:24117 -h1,9880:25607380,15821289:0,0,0 -k1,9880:31966991,15821289:6359611 -g1,9880:31966991,15821289 -) -(1,9884:7246811,16553003:24720180,404226,76021 -(1,9882:7246811,16553003:0,0,0 -g1,9882:7246811,16553003 -g1,9882:7246811,16553003 -g1,9882:6919131,16553003 -(1,9882:6919131,16553003:0,0,0 -) -g1,9882:7246811,16553003 -) -g1,9884:8195248,16553003 -g1,9884:9459831,16553003 -h1,9884:10724414,16553003:0,0,0 -k1,9884:31966990,16553003:21242576 -g1,9884:31966990,16553003 -) -] -) -g1,9885:31966991,16629024 -g1,9885:7246811,16629024 -g1,9885:7246811,16629024 -g1,9885:31966991,16629024 -g1,9885:31966991,16629024 -) -h1,9885:7246811,16825632:0,0,0 -] -) -] -r1,9893:32583029,17939744:26214,12078863,0 -) -] -) -) -g1,9893:32583029,17349920 -) -h1,9893:6630773,17965958:0,0,0 -(1,9895:6630773,20773526:25952256,32768,229376 -(1,9895:6630773,20773526:0,32768,229376 -(1,9895:6630773,20773526:5505024,32768,229376 -r1,9895:12135797,20773526:5505024,262144,229376 -) -k1,9895:6630773,20773526:-5505024 -) -(1,9895:6630773,20773526:25952256,32768,0 -r1,9895:32583029,20773526:25952256,32768,0 -) -) -(1,9895:6630773,22377854:25952256,615776,151780 -(1,9895:6630773,22377854:1974731,568590,14155 -g1,9895:6630773,22377854 -g1,9895:8605504,22377854 -) -g1,9895:11153544,22377854 -g1,9895:12211295,22377854 -k1,9895:32583029,22377854:17805606 -g1,9895:32583029,22377854 -) -(1,9899:6630773,23612558:25952256,513147,134348 -k1,9898:8047240,23612558:219780 -k1,9898:10982831,23612558:219779 -k1,9898:11861903,23612558:219780 -k1,9898:14149999,23612558:219780 -k1,9898:14901276,23612558:219780 -k1,9898:18785828,23612558:219779 -k1,9898:19767136,23612558:219780 -k1,9898:21006001,23612558:219780 -k1,9898:23596217,23612558:219779 -k1,9898:25377065,23612558:219780 -k1,9898:26256137,23612558:219780 -k1,9898:26831777,23612558:219780 -k1,9898:30067523,23612558:219779 -k1,9898:31483990,23612558:219780 -k1,9899:32583029,23612558:0 -) -(1,9899:6630773,24454046:25952256,505283,134348 -k1,9898:8604314,24454046:221108 -k1,9898:9897591,24454046:221108 -k1,9898:11184970,24454046:221108 -k1,9898:12425164,24454046:221109 -k1,9898:14021873,24454046:221108 -k1,9898:17069549,24454046:221108 -k1,9898:18988695,24454046:221108 -k1,9898:21679200,24454046:221108 -k1,9898:23486279,24454046:221108 -k1,9898:26006391,24454046:221109 -k1,9898:26758996,24454046:221108 -k1,9898:28678142,24454046:221108 -k1,9898:31189078,24454046:221108 -k1,9898:32583029,24454046:0 -) -(1,9899:6630773,25295534:25952256,513147,126483 -k1,9898:7825120,25295534:175262 -k1,9898:9653855,25295534:175262 -k1,9898:11567132,25295534:175262 -k1,9898:14144944,25295534:175262 -k1,9898:14948041,25295534:175262 -k1,9898:16616869,25295534:175262 -k1,9898:17147990,25295534:175261 -k1,9898:20149820,25295534:175262 -k1,9898:21481792,25295534:175262 -k1,9898:22789516,25295534:175262 -k1,9898:23712544,25295534:175262 -k1,9898:27072856,25295534:175262 -k1,9898:28009646,25295534:175262 -k1,9898:28973306,25295534:175262 -k1,9898:32583029,25295534:0 -) -(1,9899:6630773,26137022:25952256,513147,134348 -k1,9898:8544374,26137022:175586 -k1,9898:9911405,26137022:175586 -k1,9898:11106076,26137022:175586 -k1,9898:12983632,26137022:175586 -k1,9898:15378922,26137022:175586 -k1,9898:16626677,26137022:175586 -k1,9898:19445984,26137022:175585 -k1,9898:22806620,26137022:175586 -k1,9898:23743734,26137022:175586 -k1,9898:27116822,26137022:175586 -k1,9898:28311493,26137022:175586 -k1,9898:30225094,26137022:175586 -k1,9898:31794631,26137022:175586 -k1,9898:32583029,26137022:0 -) -(1,9899:6630773,26978510:25952256,355205,126483 -g1,9898:8568017,26978510 -k1,9899:32583030,26978510:22053520 -g1,9899:32583030,26978510 -) -(1,9901:6630773,27819998:25952256,513147,134348 -h1,9900:6630773,27819998:983040,0,0 -k1,9900:8619690,27819998:187988 -k1,9900:9826763,27819998:187988 -k1,9900:10429584,27819998:187978 -k1,9900:13459868,27819998:187988 -k1,9900:14748861,27819998:187988 -k1,9900:16069967,27819998:187988 -k1,9900:18984909,27819998:187989 -k1,9900:21127836,27819998:187988 -k1,9900:22263475,27819998:187988 -k1,9900:24336934,27819998:187988 -k1,9900:25334293,27819998:187989 -k1,9900:29240138,27819998:187988 -k1,9900:29959623,27819998:187988 -k1,9900:32583029,27819998:0 -) -(1,9901:6630773,28661486:25952256,513147,134348 -k1,9900:7685200,28661486:186075 -k1,9900:10051659,28661486:186076 -k1,9900:11590397,28661486:186075 -k1,9900:13101610,28661486:186075 -k1,9900:14353957,28661486:186076 -k1,9900:15191460,28661486:186075 -k1,9900:19168793,28661486:186075 -k1,9900:21083053,28661486:186076 -k1,9900:23337444,28661486:186075 -k1,9900:24808026,28661486:186076 -k1,9900:25985661,28661486:186075 -k1,9900:27493597,28661486:186075 -k1,9900:28338965,28661486:186076 -k1,9900:31541007,28661486:186075 -k1,9900:32583029,28661486:0 -) -(1,9901:6630773,29502974:25952256,513147,126483 -k1,9900:9482931,29502974:190741 -(1,9900:9482931,29502974:0,452978,115847 -r1,9900:10192909,29502974:709978,568825,115847 -k1,9900:9482931,29502974:-709978 -) -(1,9900:9482931,29502974:709978,452978,115847 -k1,9900:9482931,29502974:3277 -h1,9900:10189632,29502974:0,411205,112570 -) -k1,9900:10383650,29502974:190741 -k1,9900:11105889,29502974:190742 -k1,9900:11652490,29502974:190741 -k1,9900:14600986,29502974:190741 -k1,9900:17173305,29502974:190741 -k1,9900:17980085,29502974:190742 -k1,9900:18585661,29502974:190733 -k1,9900:20170353,29502974:190741 -k1,9900:21380179,29502974:190741 -k1,9900:23251263,29502974:190741 -k1,9900:24101297,29502974:190742 -k1,9900:25311123,29502974:190741 -k1,9900:29825274,29502974:190741 -k1,9900:32583029,29502974:0 -) -(1,9901:6630773,30344462:25952256,513147,134348 -$1,9900:7210111,30344462 -k1,9900:7528004,30344462:144223 -k1,9900:8149984,30344462:144223 -k1,9900:9162559,30344462:144223 -k1,9900:10399267,30344462:144223 -k1,9900:11562575,30344462:144223 -k1,9900:13360271,30344462:144223 -k1,9900:15242509,30344462:144223 -k1,9900:16334382,30344462:144222 -k1,9900:17635315,30344462:144223 -k1,9900:18438830,30344462:144223 -k1,9900:19680781,30344462:144223 -k1,9900:22840315,30344462:144223 -k1,9900:24003623,30344462:144223 -k1,9900:26583164,30344462:144223 -k1,9900:29809545,30344462:144223 -k1,9900:32583029,30344462:0 -) -(1,9901:6630773,31185950:25952256,505283,7863 -k1,9901:32583028,31185950:23558880 -g1,9901:32583028,31185950 -) -v1,9903:6630773,32376416:0,393216,0 -(1,9930:6630773,40883881:25952256,8900681,196608 -g1,9930:6630773,40883881 -g1,9930:6630773,40883881 -g1,9930:6434165,40883881 -(1,9930:6434165,40883881:0,8900681,196608 -r1,9930:32779637,40883881:26345472,9097289,196608 -k1,9930:6434165,40883881:-26345472 -) -(1,9930:6434165,40883881:26345472,8900681,196608 -[1,9930:6630773,40883881:25952256,8704073,0 -(1,9905:6630773,32584034:25952256,404226,101187 -(1,9904:6630773,32584034:0,0,0 -g1,9904:6630773,32584034 -g1,9904:6630773,32584034 -g1,9904:6303093,32584034 -(1,9904:6303093,32584034:0,0,0 -) -g1,9904:6630773,32584034 -) -h1,9905:7263064,32584034:0,0,0 -k1,9905:32583028,32584034:25319964 -g1,9905:32583028,32584034 -) -(1,9909:6630773,33315748:25952256,404226,76021 -(1,9907:6630773,33315748:0,0,0 -g1,9907:6630773,33315748 -g1,9907:6630773,33315748 -g1,9907:6303093,33315748 -(1,9907:6303093,33315748:0,0,0 -) -g1,9907:6630773,33315748 -) -g1,9909:7579210,33315748 -g1,9909:8843793,33315748 -h1,9909:11372958,33315748:0,0,0 -k1,9909:32583030,33315748:21210072 -g1,9909:32583030,33315748 -) -(1,9911:6630773,34637286:25952256,404226,101187 -(1,9910:6630773,34637286:0,0,0 -g1,9910:6630773,34637286 -g1,9910:6630773,34637286 -g1,9910:6303093,34637286 -(1,9910:6303093,34637286:0,0,0 -) -g1,9910:6630773,34637286 -) -g1,9911:7579210,34637286 -g1,9911:8527648,34637286 -g1,9911:10740668,34637286 -h1,9911:12005251,34637286:0,0,0 -k1,9911:32583029,34637286:20577778 -g1,9911:32583029,34637286 -) -(1,9912:6630773,35303464:25952256,404226,101187 -h1,9912:6630773,35303464:0,0,0 -h1,9912:7263064,35303464:0,0,0 -k1,9912:32583028,35303464:25319964 -g1,9912:32583028,35303464 -) -(1,9916:6630773,36035178:25952256,404226,101187 -(1,9914:6630773,36035178:0,0,0 -g1,9914:6630773,36035178 -g1,9914:6630773,36035178 -g1,9914:6303093,36035178 -(1,9914:6303093,36035178:0,0,0 -) -g1,9914:6630773,36035178 -) -g1,9916:7579210,36035178 -g1,9916:8843793,36035178 -g1,9916:11056813,36035178 -h1,9916:12321396,36035178:0,0,0 -k1,9916:32583028,36035178:20261632 -g1,9916:32583028,36035178 -) -(1,9918:6630773,37356716:25952256,404226,101187 -(1,9917:6630773,37356716:0,0,0 -g1,9917:6630773,37356716 -g1,9917:6630773,37356716 -g1,9917:6303093,37356716 -(1,9917:6303093,37356716:0,0,0 -) -g1,9917:6630773,37356716 -) -k1,9918:6630773,37356716:0 -h1,9918:8527647,37356716:0,0,0 -k1,9918:32583029,37356716:24055382 -g1,9918:32583029,37356716 -) -(1,9919:6630773,38022894:25952256,404226,101187 -h1,9919:6630773,38022894:0,0,0 -h1,9919:7263064,38022894:0,0,0 -k1,9919:32583028,38022894:25319964 -g1,9919:32583028,38022894 -) -(1,9923:6630773,38754608:25952256,404226,76021 -(1,9921:6630773,38754608:0,0,0 -g1,9921:6630773,38754608 -g1,9921:6630773,38754608 -g1,9921:6303093,38754608 -(1,9921:6303093,38754608:0,0,0 -) -g1,9921:6630773,38754608 -) -g1,9923:7579210,38754608 -g1,9923:8843793,38754608 -h1,9923:11372958,38754608:0,0,0 -k1,9923:32583030,38754608:21210072 -g1,9923:32583030,38754608 -) -(1,9925:6630773,40076146:25952256,404226,101187 -(1,9924:6630773,40076146:0,0,0 -g1,9924:6630773,40076146 -g1,9924:6630773,40076146 -g1,9924:6303093,40076146 -(1,9924:6303093,40076146:0,0,0 -) -g1,9924:6630773,40076146 -) -k1,9925:6630773,40076146:0 -h1,9925:10424522,40076146:0,0,0 -k1,9925:32583030,40076146:22158508 -g1,9925:32583030,40076146 -) -(1,9929:6630773,40807860:25952256,404226,76021 -(1,9927:6630773,40807860:0,0,0 -g1,9927:6630773,40807860 -g1,9927:6630773,40807860 -g1,9927:6303093,40807860 -(1,9927:6303093,40807860:0,0,0 -) -g1,9927:6630773,40807860 -) -g1,9929:7579210,40807860 -g1,9929:8843793,40807860 -h1,9929:10108376,40807860:0,0,0 -k1,9929:32583028,40807860:22474652 -g1,9929:32583028,40807860 -) -] -) -g1,9930:32583029,40883881 -g1,9930:6630773,40883881 -g1,9930:6630773,40883881 -g1,9930:32583029,40883881 -g1,9930:32583029,40883881 -) -h1,9930:6630773,41080489:0,0,0 -(1,9934:6630773,42446265:25952256,513147,126483 -h1,9933:6630773,42446265:983040,0,0 -k1,9933:8389890,42446265:148242 -k1,9933:9557218,42446265:148243 -k1,9933:12366877,42446265:148242 -k1,9933:14544114,42446265:148242 -k1,9933:15711442,42446265:148243 -k1,9933:17032123,42446265:148242 -k1,9933:20022006,42446265:148242 -k1,9933:21161809,42446265:148243 -k1,9933:22376322,42446265:148242 -k1,9933:24906142,42446265:148242 -k1,9933:25670423,42446265:148243 -k1,9933:26837750,42446265:148242 -k1,9933:28639465,42446265:148242 -k1,9933:30787867,42446265:148243 -k1,9933:31563944,42446265:148242 -k1,9933:32583029,42446265:0 -) -(1,9934:6630773,43287753:25952256,505283,134348 -k1,9933:9504480,43287753:212290 -k1,9933:11585201,43287753:212290 -k1,9933:12665843,43287753:212290 -k1,9933:14884845,43287753:212290 -k1,9933:15452995,43287753:212290 -k1,9933:16948480,43287753:212290 -k1,9933:18841113,43287753:212290 -k1,9933:19704830,43287753:212289 -k1,9933:20272980,43287753:212290 -k1,9933:22996610,43287753:212290 -k1,9933:24077252,43287753:212290 -k1,9933:25764757,43287753:212290 -k1,9933:28010629,43287753:212290 -k1,9933:30573040,43287753:212290 -k1,9933:32583029,43287753:0 -) -(1,9934:6630773,44129241:25952256,505283,134348 -k1,9933:7855510,44129241:205652 -k1,9933:9714635,44129241:205652 -k1,9933:11920446,44129241:205652 -k1,9933:13317543,44129241:205652 -k1,9933:17748301,44129241:205652 -k1,9933:18973037,44129241:205651 -k1,9933:21420020,44129241:205652 -k1,9933:25271440,44129241:205652 -k1,9933:28983268,44129241:205652 -k1,9933:31140582,44129241:205652 -k1,9933:32583029,44129241:0 -) -(1,9934:6630773,44970729:25952256,513147,134348 -g1,9933:8718094,44970729 -g1,9933:9936408,44970729 -g1,9933:12626660,44970729 -k1,9934:32583029,44970729:16700540 -g1,9934:32583029,44970729 -) -] -(1,9936:32583029,45706769:0,0,0 -g1,9936:32583029,45706769 -) -) -] -(1,9936:6630773,47279633:25952256,0,0 -h1,9936:6630773,47279633:25952256,0,0 -) -] -h1,9936:4262630,4025873:0,0,0 -] -!21206 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9941:37855564,49800853:1179648,16384,0 +) +) +k1,9941:3078556,49800853:-34777008 +) +] +g1,9941:6630773,4812305 +k1,9941:20781963,4812305:12955813 +g1,9941:22168704,4812305 +g1,9941:22817510,4812305 +g1,9941:26131665,4812305 +g1,9941:28614824,4812305 +g1,9941:30094627,4812305 +) +) +] +[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,9898:6630773,6254097:0,393216,0 +(1,9898:6630773,17349920:25952256,11489039,616038 +g1,9898:6630773,17349920 +(1,9898:6630773,17349920:25952256,11489039,616038 +(1,9898:6630773,17965958:25952256,12105077,0 +[1,9898:6630773,17965958:25952256,12105077,0 +(1,9898:6630773,17939744:25952256,12078863,0 +r1,9898:6656987,17939744:26214,12078863,0 +[1,9898:6656987,17939744:25899828,12078863,0 +(1,9898:6656987,17349920:25899828,10899215,0 +[1,9898:7246811,17349920:24720180,10899215,0 +v1,9864:7246811,6843921:0,393216,0 +(1,9890:7246811,16629024:24720180,10178319,196608 +g1,9890:7246811,16629024 +g1,9890:7246811,16629024 +g1,9890:7050203,16629024 +(1,9890:7050203,16629024:0,10178319,196608 +r1,9898:32163599,16629024:25113396,10374927,196608 +k1,9890:7050203,16629024:-25113396 +) +(1,9890:7050203,16629024:25113396,10178319,196608 +[1,9890:7246811,16629024:24720180,9981711,0 +(1,9866:7246811,7051539:24720180,404226,101187 +(1,9865:7246811,7051539:0,0,0 +g1,9865:7246811,7051539 +g1,9865:7246811,7051539 +g1,9865:6919131,7051539 +(1,9865:6919131,7051539:0,0,0 +) +g1,9865:7246811,7051539 +) +g1,9866:7879103,7051539 +g1,9866:8827541,7051539 +k1,9866:8827541,7051539:0 +h1,9866:13253580,7051539:0,0,0 +k1,9866:31966992,7051539:18713412 +g1,9866:31966992,7051539 +) +(1,9875:7246811,7783253:24720180,404226,101187 +(1,9868:7246811,7783253:0,0,0 +g1,9868:7246811,7783253 +g1,9868:7246811,7783253 +g1,9868:6919131,7783253 +(1,9868:6919131,7783253:0,0,0 +) +g1,9868:7246811,7783253 +) +g1,9875:8195248,7783253 +g1,9875:8511394,7783253 +g1,9875:8827540,7783253 +g1,9875:10724414,7783253 +h1,9875:11988997,7783253:0,0,0 +k1,9875:31966991,7783253:19977994 +g1,9875:31966991,7783253 +) +(1,9875:7246811,8449431:24720180,388497,0 +h1,9875:7246811,8449431:0,0,0 +g1,9875:8195248,8449431 +g1,9875:8827540,8449431 +g1,9875:9143686,8449431 +g1,9875:9459832,8449431 +g1,9875:9775978,8449431 +g1,9875:10092124,8449431 +g1,9875:10724416,8449431 +g1,9875:11040562,8449431 +g1,9875:11356708,8449431 +g1,9875:11672854,8449431 +h1,9875:11989000,8449431:0,0,0 +k1,9875:31966992,8449431:19977992 +g1,9875:31966992,8449431 +) +(1,9875:7246811,9115609:24720180,388497,9436 +h1,9875:7246811,9115609:0,0,0 +g1,9875:8195248,9115609 +g1,9875:8827540,9115609 +g1,9875:9143686,9115609 +g1,9875:9459832,9115609 +g1,9875:9775978,9115609 +g1,9875:10092124,9115609 +g1,9875:10724416,9115609 +g1,9875:11040562,9115609 +g1,9875:11356708,9115609 +h1,9875:11988999,9115609:0,0,0 +k1,9875:31966991,9115609:19977992 +g1,9875:31966991,9115609 +) +(1,9875:7246811,9781787:24720180,388497,9436 +h1,9875:7246811,9781787:0,0,0 +g1,9875:8195248,9781787 +g1,9875:8827540,9781787 +g1,9875:9143686,9781787 +g1,9875:9459832,9781787 +g1,9875:9775978,9781787 +g1,9875:10092124,9781787 +g1,9875:10724416,9781787 +g1,9875:11040562,9781787 +g1,9875:11356708,9781787 +g1,9875:11672854,9781787 +h1,9875:11989000,9781787:0,0,0 +k1,9875:31966992,9781787:19977992 +g1,9875:31966992,9781787 +) +(1,9875:7246811,10447965:24720180,388497,0 +h1,9875:7246811,10447965:0,0,0 +g1,9875:8195248,10447965 +g1,9875:8827540,10447965 +g1,9875:9143686,10447965 +g1,9875:9459832,10447965 +g1,9875:9775978,10447965 +g1,9875:10092124,10447965 +g1,9875:10724416,10447965 +g1,9875:11040562,10447965 +g1,9875:11356708,10447965 +h1,9875:11988999,10447965:0,0,0 +k1,9875:31966991,10447965:19977992 +g1,9875:31966991,10447965 +) +(1,9875:7246811,11114143:24720180,388497,9436 +h1,9875:7246811,11114143:0,0,0 +g1,9875:8195248,11114143 +g1,9875:8827540,11114143 +g1,9875:9143686,11114143 +g1,9875:9459832,11114143 +g1,9875:9775978,11114143 +g1,9875:10092124,11114143 +g1,9875:10724416,11114143 +g1,9875:11040562,11114143 +g1,9875:11356708,11114143 +h1,9875:11988999,11114143:0,0,0 +k1,9875:31966991,11114143:19977992 +g1,9875:31966991,11114143 +) +(1,9877:7246811,12435681:24720180,404226,76021 +(1,9876:7246811,12435681:0,0,0 +g1,9876:7246811,12435681 +g1,9876:7246811,12435681 +g1,9876:6919131,12435681 +(1,9876:6919131,12435681:0,0,0 +) +g1,9876:7246811,12435681 +) +k1,9877:7246811,12435681:0 +h1,9877:9143685,12435681:0,0,0 +k1,9877:31966991,12435681:22823306 +g1,9877:31966991,12435681 +) +(1,9883:7246811,13167395:24720180,410518,9436 +(1,9879:7246811,13167395:0,0,0 +g1,9879:7246811,13167395 +g1,9879:7246811,13167395 +g1,9879:6919131,13167395 +(1,9879:6919131,13167395:0,0,0 +) +g1,9879:7246811,13167395 +) +g1,9883:8195248,13167395 +g1,9883:12621289,13167395 +g1,9883:13569726,13167395 +g1,9883:15150455,13167395 +g1,9883:16098892,13167395 +g1,9883:16415038,13167395 +g1,9883:17047330,13167395 +h1,9883:20208787,13167395:0,0,0 +k1,9883:31966991,13167395:11758204 +g1,9883:31966991,13167395 +) +(1,9883:7246811,13833573:24720180,410518,101187 +h1,9883:7246811,13833573:0,0,0 +g1,9883:8195248,13833573 +g1,9883:8511394,13833573 +g1,9883:9143686,13833573 +g1,9883:11356706,13833573 +g1,9883:12621289,13833573 +g1,9883:12937435,13833573 +g1,9883:13569727,13833573 +g1,9883:14202019,13833573 +g1,9883:14834311,13833573 +g1,9883:15466603,13833573 +g1,9883:16098895,13833573 +g1,9883:16731187,13833573 +g1,9883:17679624,13833573 +g1,9883:18628061,13833573 +g1,9883:19576498,13833573 +g1,9883:20524935,13833573 +h1,9883:21473372,13833573:0,0,0 +k1,9883:31966991,13833573:10493619 +g1,9883:31966991,13833573 +) +(1,9883:7246811,14499751:24720180,410518,31456 +h1,9883:7246811,14499751:0,0,0 +g1,9883:8195248,14499751 +g1,9883:8511394,14499751 +g1,9883:9143686,14499751 +g1,9883:10724415,14499751 +g1,9883:11356707,14499751 +g1,9883:12621290,14499751 +g1,9883:12937436,14499751 +g1,9883:13569728,14499751 +g1,9883:14518165,14499751 +g1,9883:15150457,14499751 +g1,9883:16098894,14499751 +g1,9883:17047331,14499751 +g1,9883:17995768,14499751 +g1,9883:18944205,14499751 +g1,9883:19892642,14499751 +g1,9883:20841079,14499751 +g1,9883:21789516,14499751 +h1,9883:22737953,14499751:0,0,0 +k1,9883:31966991,14499751:9229038 +g1,9883:31966991,14499751 +) +(1,9885:7246811,15821289:24720180,410518,101187 +(1,9884:7246811,15821289:0,0,0 +g1,9884:7246811,15821289 +g1,9884:7246811,15821289 +g1,9884:6919131,15821289 +(1,9884:6919131,15821289:0,0,0 +) +g1,9884:7246811,15821289 +) +k1,9885:7246811,15821289:0 +g1,9885:9775977,15821289 +g1,9885:10724414,15821289 +g1,9885:14202017,15821289 +g1,9885:14834309,15821289 +g1,9885:16098892,15821289 +g1,9885:17363475,15821289 +g1,9885:19260349,15821289 +g1,9885:20841078,15821289 +g1,9885:22737952,15821289 +k1,9885:22737952,15821289:24117 +h1,9885:25607380,15821289:0,0,0 +k1,9885:31966991,15821289:6359611 +g1,9885:31966991,15821289 +) +(1,9889:7246811,16553003:24720180,404226,76021 +(1,9887:7246811,16553003:0,0,0 +g1,9887:7246811,16553003 +g1,9887:7246811,16553003 +g1,9887:6919131,16553003 +(1,9887:6919131,16553003:0,0,0 +) +g1,9887:7246811,16553003 +) +g1,9889:8195248,16553003 +g1,9889:9459831,16553003 +h1,9889:10724414,16553003:0,0,0 +k1,9889:31966990,16553003:21242576 +g1,9889:31966990,16553003 +) +] +) +g1,9890:31966991,16629024 +g1,9890:7246811,16629024 +g1,9890:7246811,16629024 +g1,9890:31966991,16629024 +g1,9890:31966991,16629024 +) +h1,9890:7246811,16825632:0,0,0 +] +) +] +r1,9898:32583029,17939744:26214,12078863,0 +) +] +) +) +g1,9898:32583029,17349920 +) +h1,9898:6630773,17965958:0,0,0 +(1,9900:6630773,20773526:25952256,32768,229376 +(1,9900:6630773,20773526:0,32768,229376 +(1,9900:6630773,20773526:5505024,32768,229376 +r1,9900:12135797,20773526:5505024,262144,229376 +) +k1,9900:6630773,20773526:-5505024 +) +(1,9900:6630773,20773526:25952256,32768,0 +r1,9900:32583029,20773526:25952256,32768,0 +) +) +(1,9900:6630773,22377854:25952256,615776,151780 +(1,9900:6630773,22377854:1974731,568590,14155 +g1,9900:6630773,22377854 +g1,9900:8605504,22377854 +) +g1,9900:11153544,22377854 +g1,9900:12211295,22377854 +k1,9900:32583029,22377854:17805606 +g1,9900:32583029,22377854 +) +(1,9904:6630773,23612558:25952256,513147,134348 +k1,9903:8001224,23612558:173764 +k1,9903:10890800,23612558:173764 +k1,9903:11723856,23612558:173764 +k1,9903:13965936,23612558:173764 +k1,9903:14671197,23612558:173764 +k1,9903:18509734,23612558:173764 +k1,9903:19445026,23612558:173764 +k1,9903:20637876,23612558:173765 +k1,9903:23182077,23612558:173764 +k1,9903:24916909,23612558:173764 +k1,9903:25749965,23612558:173764 +k1,9903:26279589,23612558:173764 +k1,9903:29469320,23612558:173764 +k1,9903:30839771,23612558:173764 +k1,9904:32583029,23612558:0 +) +(1,9904:6630773,24454046:25952256,505283,134348 +k1,9903:7917526,24454046:178539 +k1,9903:9168233,24454046:178538 +k1,9903:10413043,24454046:178539 +k1,9903:11610666,24454046:178538 +k1,9903:13164806,24454046:178539 +k1,9903:16169912,24454046:178538 +k1,9903:18046489,24454046:178539 +k1,9903:20694425,24454046:178539 +k1,9903:22458934,24454046:178538 +k1,9903:24936476,24454046:178539 +k1,9903:25646511,24454046:178538 +k1,9903:27523088,24454046:178539 +k1,9903:29991454,24454046:178538 +k1,9903:31563944,24454046:178539 +k1,9903:32583029,24454046:0 +) +(1,9904:6630773,25295534:25952256,513147,126483 +k1,9903:8551381,25295534:267135 +k1,9903:10556531,25295534:267135 +k1,9903:13226215,25295534:267134 +k1,9903:14121185,25295534:267135 +k1,9903:15881886,25295534:267135 +k1,9903:16504881,25295534:267135 +k1,9903:19598583,25295534:267134 +k1,9903:21022428,25295534:267135 +k1,9903:22422025,25295534:267135 +k1,9903:23436926,25295534:267135 +k1,9903:26889111,25295534:267135 +k1,9903:27917773,25295534:267134 +k1,9903:28973306,25295534:267135 +k1,9903:32583029,25295534:0 +) +(1,9904:6630773,26137022:25952256,513147,134348 +k1,9903:8544374,26137022:175586 +k1,9903:9911405,26137022:175586 +k1,9903:11106076,26137022:175586 +k1,9903:12983632,26137022:175586 +k1,9903:15378922,26137022:175586 +k1,9903:16626677,26137022:175586 +k1,9903:19445984,26137022:175585 +k1,9903:22806620,26137022:175586 +k1,9903:23743734,26137022:175586 +k1,9903:27116822,26137022:175586 +k1,9903:28311493,26137022:175586 +k1,9903:30225094,26137022:175586 +k1,9903:31794631,26137022:175586 +k1,9903:32583029,26137022:0 +) +(1,9904:6630773,26978510:25952256,355205,126483 +g1,9903:8568017,26978510 +k1,9904:32583030,26978510:22053520 +g1,9904:32583030,26978510 +) +(1,9906:6630773,27819998:25952256,513147,134348 +h1,9905:6630773,27819998:983040,0,0 +k1,9905:8619690,27819998:187988 +k1,9905:9826763,27819998:187988 +k1,9905:10429584,27819998:187978 +k1,9905:13459868,27819998:187988 +k1,9905:14748861,27819998:187988 +k1,9905:16069967,27819998:187988 +k1,9905:18984909,27819998:187989 +k1,9905:21127836,27819998:187988 +k1,9905:22263475,27819998:187988 +k1,9905:24336934,27819998:187988 +k1,9905:25334293,27819998:187989 +k1,9905:29240138,27819998:187988 +k1,9905:29959623,27819998:187988 +k1,9905:32583029,27819998:0 +) +(1,9906:6630773,28661486:25952256,513147,134348 +k1,9905:7685200,28661486:186075 +k1,9905:10051659,28661486:186076 +k1,9905:11590397,28661486:186075 +k1,9905:13101610,28661486:186075 +k1,9905:14353957,28661486:186076 +k1,9905:15191460,28661486:186075 +k1,9905:19168793,28661486:186075 +k1,9905:21083053,28661486:186076 +k1,9905:23337444,28661486:186075 +k1,9905:24808026,28661486:186076 +k1,9905:25985661,28661486:186075 +k1,9905:27493597,28661486:186075 +k1,9905:28338965,28661486:186076 +k1,9905:31541007,28661486:186075 +k1,9905:32583029,28661486:0 +) +(1,9906:6630773,29502974:25952256,513147,126483 +k1,9905:9482931,29502974:190741 +(1,9905:9482931,29502974:0,452978,115847 +r1,9905:10192909,29502974:709978,568825,115847 +k1,9905:9482931,29502974:-709978 +) +(1,9905:9482931,29502974:709978,452978,115847 +k1,9905:9482931,29502974:3277 +h1,9905:10189632,29502974:0,411205,112570 +) +k1,9905:10383650,29502974:190741 +k1,9905:11105889,29502974:190742 +k1,9905:11652490,29502974:190741 +k1,9905:14600986,29502974:190741 +k1,9905:17173305,29502974:190741 +k1,9905:17980085,29502974:190742 +k1,9905:18585661,29502974:190733 +k1,9905:20170353,29502974:190741 +k1,9905:21380179,29502974:190741 +k1,9905:23251263,29502974:190741 +k1,9905:24101297,29502974:190742 +k1,9905:25311123,29502974:190741 +k1,9905:29825274,29502974:190741 +k1,9905:32583029,29502974:0 +) +(1,9906:6630773,30344462:25952256,513147,134348 +$1,9905:7210111,30344462 +k1,9905:7528004,30344462:144223 +k1,9905:8149984,30344462:144223 +k1,9905:9162559,30344462:144223 +k1,9905:10399267,30344462:144223 +k1,9905:11562575,30344462:144223 +k1,9905:13360271,30344462:144223 +k1,9905:15242509,30344462:144223 +k1,9905:16334382,30344462:144222 +k1,9905:17635315,30344462:144223 +k1,9905:18438830,30344462:144223 +k1,9905:19680781,30344462:144223 +k1,9905:22840315,30344462:144223 +k1,9905:24003623,30344462:144223 +k1,9905:26583164,30344462:144223 +k1,9905:29809545,30344462:144223 +k1,9905:32583029,30344462:0 +) +(1,9906:6630773,31185950:25952256,505283,7863 +k1,9906:32583028,31185950:23558880 +g1,9906:32583028,31185950 +) +v1,9908:6630773,32376416:0,393216,0 +(1,9935:6630773,40883881:25952256,8900681,196608 +g1,9935:6630773,40883881 +g1,9935:6630773,40883881 +g1,9935:6434165,40883881 +(1,9935:6434165,40883881:0,8900681,196608 +r1,9935:32779637,40883881:26345472,9097289,196608 +k1,9935:6434165,40883881:-26345472 +) +(1,9935:6434165,40883881:26345472,8900681,196608 +[1,9935:6630773,40883881:25952256,8704073,0 +(1,9910:6630773,32584034:25952256,404226,101187 +(1,9909:6630773,32584034:0,0,0 +g1,9909:6630773,32584034 +g1,9909:6630773,32584034 +g1,9909:6303093,32584034 +(1,9909:6303093,32584034:0,0,0 +) +g1,9909:6630773,32584034 +) +h1,9910:7263064,32584034:0,0,0 +k1,9910:32583028,32584034:25319964 +g1,9910:32583028,32584034 +) +(1,9914:6630773,33315748:25952256,404226,76021 +(1,9912:6630773,33315748:0,0,0 +g1,9912:6630773,33315748 +g1,9912:6630773,33315748 +g1,9912:6303093,33315748 +(1,9912:6303093,33315748:0,0,0 +) +g1,9912:6630773,33315748 +) +g1,9914:7579210,33315748 +g1,9914:8843793,33315748 +h1,9914:11372958,33315748:0,0,0 +k1,9914:32583030,33315748:21210072 +g1,9914:32583030,33315748 +) +(1,9916:6630773,34637286:25952256,404226,101187 +(1,9915:6630773,34637286:0,0,0 +g1,9915:6630773,34637286 +g1,9915:6630773,34637286 +g1,9915:6303093,34637286 +(1,9915:6303093,34637286:0,0,0 +) +g1,9915:6630773,34637286 +) +g1,9916:7579210,34637286 +g1,9916:8527648,34637286 +g1,9916:10740668,34637286 +h1,9916:12005251,34637286:0,0,0 +k1,9916:32583029,34637286:20577778 +g1,9916:32583029,34637286 +) +(1,9917:6630773,35303464:25952256,404226,101187 +h1,9917:6630773,35303464:0,0,0 +h1,9917:7263064,35303464:0,0,0 +k1,9917:32583028,35303464:25319964 +g1,9917:32583028,35303464 +) +(1,9921:6630773,36035178:25952256,404226,101187 +(1,9919:6630773,36035178:0,0,0 +g1,9919:6630773,36035178 +g1,9919:6630773,36035178 +g1,9919:6303093,36035178 +(1,9919:6303093,36035178:0,0,0 +) +g1,9919:6630773,36035178 +) +g1,9921:7579210,36035178 +g1,9921:8843793,36035178 +g1,9921:11056813,36035178 +h1,9921:12321396,36035178:0,0,0 +k1,9921:32583028,36035178:20261632 +g1,9921:32583028,36035178 +) +(1,9923:6630773,37356716:25952256,404226,101187 +(1,9922:6630773,37356716:0,0,0 +g1,9922:6630773,37356716 +g1,9922:6630773,37356716 +g1,9922:6303093,37356716 +(1,9922:6303093,37356716:0,0,0 +) +g1,9922:6630773,37356716 +) +k1,9923:6630773,37356716:0 +h1,9923:8527647,37356716:0,0,0 +k1,9923:32583029,37356716:24055382 +g1,9923:32583029,37356716 +) +(1,9924:6630773,38022894:25952256,404226,101187 +h1,9924:6630773,38022894:0,0,0 +h1,9924:7263064,38022894:0,0,0 +k1,9924:32583028,38022894:25319964 +g1,9924:32583028,38022894 +) +(1,9928:6630773,38754608:25952256,404226,76021 +(1,9926:6630773,38754608:0,0,0 +g1,9926:6630773,38754608 +g1,9926:6630773,38754608 +g1,9926:6303093,38754608 +(1,9926:6303093,38754608:0,0,0 +) +g1,9926:6630773,38754608 +) +g1,9928:7579210,38754608 +g1,9928:8843793,38754608 +h1,9928:11372958,38754608:0,0,0 +k1,9928:32583030,38754608:21210072 +g1,9928:32583030,38754608 +) +(1,9930:6630773,40076146:25952256,404226,101187 +(1,9929:6630773,40076146:0,0,0 +g1,9929:6630773,40076146 +g1,9929:6630773,40076146 +g1,9929:6303093,40076146 +(1,9929:6303093,40076146:0,0,0 +) +g1,9929:6630773,40076146 +) +k1,9930:6630773,40076146:0 +h1,9930:10424522,40076146:0,0,0 +k1,9930:32583030,40076146:22158508 +g1,9930:32583030,40076146 +) +(1,9934:6630773,40807860:25952256,404226,76021 +(1,9932:6630773,40807860:0,0,0 +g1,9932:6630773,40807860 +g1,9932:6630773,40807860 +g1,9932:6303093,40807860 +(1,9932:6303093,40807860:0,0,0 +) +g1,9932:6630773,40807860 +) +g1,9934:7579210,40807860 +g1,9934:8843793,40807860 +h1,9934:10108376,40807860:0,0,0 +k1,9934:32583028,40807860:22474652 +g1,9934:32583028,40807860 +) +] +) +g1,9935:32583029,40883881 +g1,9935:6630773,40883881 +g1,9935:6630773,40883881 +g1,9935:32583029,40883881 +g1,9935:32583029,40883881 +) +h1,9935:6630773,41080489:0,0,0 +(1,9939:6630773,42446265:25952256,513147,126483 +h1,9938:6630773,42446265:983040,0,0 +k1,9938:8389890,42446265:148242 +k1,9938:9557218,42446265:148243 +k1,9938:12366877,42446265:148242 +k1,9938:14544114,42446265:148242 +k1,9938:15711442,42446265:148243 +k1,9938:17032123,42446265:148242 +k1,9938:20022006,42446265:148242 +k1,9938:21161809,42446265:148243 +k1,9938:22376322,42446265:148242 +k1,9938:24906142,42446265:148242 +k1,9938:25670423,42446265:148243 +k1,9938:26837750,42446265:148242 +k1,9938:28639465,42446265:148242 +k1,9938:30787867,42446265:148243 +k1,9938:31563944,42446265:148242 +k1,9938:32583029,42446265:0 +) +(1,9939:6630773,43287753:25952256,505283,134348 +k1,9938:9504480,43287753:212290 +k1,9938:11585201,43287753:212290 +k1,9938:12665843,43287753:212290 +k1,9938:14884845,43287753:212290 +k1,9938:15452995,43287753:212290 +k1,9938:16948480,43287753:212290 +k1,9938:18841113,43287753:212290 +k1,9938:19704830,43287753:212289 +k1,9938:20272980,43287753:212290 +k1,9938:22996610,43287753:212290 +k1,9938:24077252,43287753:212290 +k1,9938:25764757,43287753:212290 +k1,9938:28010629,43287753:212290 +k1,9938:30573040,43287753:212290 +k1,9938:32583029,43287753:0 +) +(1,9939:6630773,44129241:25952256,505283,134348 +k1,9938:7855510,44129241:205652 +k1,9938:9714635,44129241:205652 +k1,9938:11920446,44129241:205652 +k1,9938:13317543,44129241:205652 +k1,9938:17748301,44129241:205652 +k1,9938:18973037,44129241:205651 +k1,9938:21420020,44129241:205652 +k1,9938:25271440,44129241:205652 +k1,9938:28983268,44129241:205652 +k1,9938:31140582,44129241:205652 +k1,9938:32583029,44129241:0 +) +(1,9939:6630773,44970729:25952256,513147,134348 +g1,9938:8718094,44970729 +g1,9938:9936408,44970729 +g1,9938:12626660,44970729 +k1,9939:32583029,44970729:16700540 +g1,9939:32583029,44970729 +) +] +(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 +) +] +h1,9941:4262630,4025873:0,0,0 +] +!21208 }185 !12 {186 -[1,9979:4262630,47279633:28320399,43253760,0 -(1,9979:4262630,4025873:0,0,0 -[1,9979:-473657,4025873:25952256,0,0 -(1,9979:-473657,-710414:25952256,0,0 -h1,9979:-473657,-710414:0,0,0 -(1,9979:-473657,-710414:0,0,0 -(1,9979:-473657,-710414:0,0,0 -g1,9979:-473657,-710414 -(1,9979:-473657,-710414:65781,0,65781 -g1,9979:-407876,-710414 -[1,9979:-407876,-644633:0,0,0 +[1,9984:4262630,47279633:28320399,43253760,0 +(1,9984:4262630,4025873:0,0,0 +[1,9984:-473657,4025873:25952256,0,0 +(1,9984:-473657,-710414:25952256,0,0 +h1,9984:-473657,-710414:0,0,0 +(1,9984:-473657,-710414:0,0,0 +(1,9984:-473657,-710414:0,0,0 +g1,9984:-473657,-710414 +(1,9984:-473657,-710414:65781,0,65781 +g1,9984:-407876,-710414 +[1,9984:-407876,-644633:0,0,0 ] ) -k1,9979:-473657,-710414:-65781 +k1,9984:-473657,-710414:-65781 ) ) -k1,9979:25478599,-710414:25952256 -g1,9979:25478599,-710414 +k1,9984:25478599,-710414:25952256 +g1,9984:25478599,-710414 ) ] ) -[1,9979:6630773,47279633:25952256,43253760,0 -[1,9979:6630773,4812305:25952256,786432,0 -(1,9979:6630773,4812305:25952256,505283,134348 -(1,9979:6630773,4812305:25952256,505283,134348 -g1,9979:3078558,4812305 -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,2439708:0,1703936,0 -k1,9979:1358238,2439708:-1720320 -(1,9201:1358238,2439708:1720320,1703936,0 -(1,9201:1358238,2439708:1179648,16384,0 -r1,9979:2537886,2439708:1179648,16384,0 +[1,9984:6630773,47279633:25952256,43253760,0 +[1,9984:6630773,4812305:25952256,786432,0 +(1,9984:6630773,4812305:25952256,505283,134348 +(1,9984:6630773,4812305:25952256,505283,134348 +g1,9984:3078558,4812305 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,2439708:0,1703936,0 +k1,9984:1358238,2439708:-1720320 +(1,9206:1358238,2439708:1720320,1703936,0 +(1,9206:1358238,2439708:1179648,16384,0 +r1,9984:2537886,2439708:1179648,16384,0 ) -g1,9201:3062174,2439708 -(1,9201:3062174,2439708:16384,1703936,0 -[1,9201:3062174,2439708:25952256,1703936,0 -(1,9201:3062174,1915420:25952256,1179648,0 -(1,9201:3062174,1915420:16384,1179648,0 -r1,9979:3078558,1915420:16384,1179648,0 +g1,9206:3062174,2439708 +(1,9206:3062174,2439708:16384,1703936,0 +[1,9206:3062174,2439708:25952256,1703936,0 +(1,9206:3062174,1915420:25952256,1179648,0 +(1,9206:3062174,1915420:16384,1179648,0 +r1,9984:3078558,1915420:16384,1179648,0 ) -k1,9201:29014430,1915420:25935872 -g1,9201:29014430,1915420 +k1,9206:29014430,1915420:25935872 +g1,9206:29014430,1915420 ) ] ) ) ) ] -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,2439708:0,1703936,0 -g1,9979:29030814,2439708 -g1,9979:36135244,2439708 -(1,9201:36135244,2439708:1720320,1703936,0 -(1,9201:36135244,2439708:16384,1703936,0 -[1,9201:36135244,2439708:25952256,1703936,0 -(1,9201:36135244,1915420:25952256,1179648,0 -(1,9201:36135244,1915420:16384,1179648,0 -r1,9979:36151628,1915420:16384,1179648,0 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,2439708:0,1703936,0 +g1,9984:29030814,2439708 +g1,9984:36135244,2439708 +(1,9206:36135244,2439708:1720320,1703936,0 +(1,9206:36135244,2439708:16384,1703936,0 +[1,9206:36135244,2439708:25952256,1703936,0 +(1,9206:36135244,1915420:25952256,1179648,0 +(1,9206:36135244,1915420:16384,1179648,0 +r1,9984:36151628,1915420:16384,1179648,0 ) -k1,9201:62087500,1915420:25935872 -g1,9201:62087500,1915420 +k1,9206:62087500,1915420:25935872 +g1,9206:62087500,1915420 ) ] ) -g1,9201:36675916,2439708 -(1,9201:36675916,2439708:1179648,16384,0 -r1,9979:37855564,2439708:1179648,16384,0 +g1,9206:36675916,2439708 +(1,9206:36675916,2439708:1179648,16384,0 +r1,9984:37855564,2439708:1179648,16384,0 ) ) -k1,9979:3078556,2439708:-34777008 +k1,9984:3078556,2439708:-34777008 ) ] -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,49800853:0,16384,2228224 -k1,9979:1358238,49800853:-1720320 -(1,9201:1358238,49800853:1720320,16384,2228224 -(1,9201:1358238,49800853:1179648,16384,0 -r1,9979:2537886,49800853:1179648,16384,0 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,49800853:0,16384,2228224 +k1,9984:1358238,49800853:-1720320 +(1,9206:1358238,49800853:1720320,16384,2228224 +(1,9206:1358238,49800853:1179648,16384,0 +r1,9984:2537886,49800853:1179648,16384,0 ) -g1,9201:3062174,49800853 -(1,9201:3062174,52029077:16384,1703936,0 -[1,9201:3062174,52029077:25952256,1703936,0 -(1,9201:3062174,51504789:25952256,1179648,0 -(1,9201:3062174,51504789:16384,1179648,0 -r1,9979:3078558,51504789:16384,1179648,0 +g1,9206:3062174,49800853 +(1,9206:3062174,52029077:16384,1703936,0 +[1,9206:3062174,52029077:25952256,1703936,0 +(1,9206:3062174,51504789:25952256,1179648,0 +(1,9206:3062174,51504789:16384,1179648,0 +r1,9984:3078558,51504789:16384,1179648,0 ) -k1,9201:29014430,51504789:25935872 -g1,9201:29014430,51504789 +k1,9206:29014430,51504789:25935872 +g1,9206:29014430,51504789 ) ] ) ) ) ] -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,49800853:0,16384,2228224 -g1,9979:29030814,49800853 -g1,9979:36135244,49800853 -(1,9201:36135244,49800853:1720320,16384,2228224 -(1,9201:36135244,52029077:16384,1703936,0 -[1,9201:36135244,52029077:25952256,1703936,0 -(1,9201:36135244,51504789:25952256,1179648,0 -(1,9201:36135244,51504789:16384,1179648,0 -r1,9979:36151628,51504789:16384,1179648,0 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,49800853:0,16384,2228224 +g1,9984:29030814,49800853 +g1,9984:36135244,49800853 +(1,9206:36135244,49800853:1720320,16384,2228224 +(1,9206:36135244,52029077:16384,1703936,0 +[1,9206:36135244,52029077:25952256,1703936,0 +(1,9206:36135244,51504789:25952256,1179648,0 +(1,9206:36135244,51504789:16384,1179648,0 +r1,9984:36151628,51504789:16384,1179648,0 ) -k1,9201:62087500,51504789:25935872 -g1,9201:62087500,51504789 +k1,9206:62087500,51504789:25935872 +g1,9206:62087500,51504789 ) ] ) -g1,9201:36675916,49800853 -(1,9201:36675916,49800853:1179648,16384,0 -r1,9979:37855564,49800853:1179648,16384,0 +g1,9206:36675916,49800853 +(1,9206:36675916,49800853:1179648,16384,0 +r1,9984:37855564,49800853:1179648,16384,0 ) ) -k1,9979:3078556,49800853:-34777008 +k1,9984:3078556,49800853:-34777008 ) ] -g1,9979:6630773,4812305 -g1,9979:6630773,4812305 -g1,9979:9205682,4812305 -g1,9979:11846782,4812305 -k1,9979:31387652,4812305:19540870 +g1,9984:6630773,4812305 +g1,9984:6630773,4812305 +g1,9984:9205682,4812305 +g1,9984:11846782,4812305 +k1,9984:31387652,4812305:19540870 ) ) ] -[1,9979:6630773,45706769:25952256,40108032,0 -(1,9979:6630773,45706769:25952256,40108032,0 -(1,9979:6630773,45706769:0,0,0 -g1,9979:6630773,45706769 +[1,9984:6630773,45706769:25952256,40108032,0 +(1,9984:6630773,45706769:25952256,40108032,0 +(1,9984:6630773,45706769:0,0,0 +g1,9984:6630773,45706769 ) -[1,9979:6630773,45706769:25952256,40108032,0 -v1,9936:6630773,6254097:0,393216,0 -(1,9958:6630773,13374488:25952256,7513607,196608 -g1,9958:6630773,13374488 -g1,9958:6630773,13374488 -g1,9958:6434165,13374488 -(1,9958:6434165,13374488:0,7513607,196608 -r1,9958:32779637,13374488:26345472,7710215,196608 -k1,9958:6434165,13374488:-26345472 +[1,9984:6630773,45706769:25952256,40108032,0 +v1,9941:6630773,6254097:0,393216,0 +(1,9963:6630773,13374488:25952256,7513607,196608 +g1,9963:6630773,13374488 +g1,9963:6630773,13374488 +g1,9963:6434165,13374488 +(1,9963:6434165,13374488:0,7513607,196608 +r1,9963:32779637,13374488:26345472,7710215,196608 +k1,9963:6434165,13374488:-26345472 ) -(1,9958:6434165,13374488:26345472,7513607,196608 -[1,9958:6630773,13374488:25952256,7316999,0 -(1,9938:6630773,6461715:25952256,404226,101187 -(1,9937:6630773,6461715:0,0,0 -g1,9937:6630773,6461715 -g1,9937:6630773,6461715 -g1,9937:6303093,6461715 -(1,9937:6303093,6461715:0,0,0 -) -g1,9937:6630773,6461715 -) -g1,9938:8843793,6461715 -g1,9938:9792231,6461715 -g1,9938:13269834,6461715 -h1,9938:14534417,6461715:0,0,0 -k1,9938:32583029,6461715:18048612 -g1,9938:32583029,6461715 +(1,9963:6434165,13374488:26345472,7513607,196608 +[1,9963:6630773,13374488:25952256,7316999,0 +(1,9943:6630773,6461715:25952256,404226,101187 +(1,9942:6630773,6461715:0,0,0 +g1,9942:6630773,6461715 +g1,9942:6630773,6461715 +g1,9942:6303093,6461715 +(1,9942:6303093,6461715:0,0,0 +) +g1,9942:6630773,6461715 +) +g1,9943:8843793,6461715 +g1,9943:9792231,6461715 +g1,9943:13269834,6461715 +h1,9943:14534417,6461715:0,0,0 +k1,9943:32583029,6461715:18048612 +g1,9943:32583029,6461715 ) -(1,9939:6630773,7127893:25952256,404226,101187 -h1,9939:6630773,7127893:0,0,0 -h1,9939:8527647,7127893:0,0,0 -k1,9939:32583029,7127893:24055382 -g1,9939:32583029,7127893 -) -(1,9943:6630773,7859607:25952256,404226,101187 -(1,9941:6630773,7859607:0,0,0 -g1,9941:6630773,7859607 -g1,9941:6630773,7859607 -g1,9941:6303093,7859607 -(1,9941:6303093,7859607:0,0,0 -) -g1,9941:6630773,7859607 -) -g1,9943:7579210,7859607 -g1,9943:8843793,7859607 -g1,9943:12321396,7859607 -h1,9943:13585979,7859607:0,0,0 -k1,9943:32583029,7859607:18997050 -g1,9943:32583029,7859607 -) -(1,9945:6630773,9181145:25952256,404226,101187 -(1,9944:6630773,9181145:0,0,0 -g1,9944:6630773,9181145 -g1,9944:6630773,9181145 -g1,9944:6303093,9181145 -(1,9944:6303093,9181145:0,0,0 -) -g1,9944:6630773,9181145 -) -g1,9945:8843793,9181145 -g1,9945:9792231,9181145 -g1,9945:12005251,9181145 -h1,9945:13269834,9181145:0,0,0 -k1,9945:32583030,9181145:19313196 -g1,9945:32583030,9181145 -) -(1,9946:6630773,9847323:25952256,404226,101187 -h1,9946:6630773,9847323:0,0,0 -h1,9946:8527647,9847323:0,0,0 -k1,9946:32583029,9847323:24055382 -g1,9946:32583029,9847323 -) -(1,9950:6630773,10579037:25952256,404226,101187 -(1,9948:6630773,10579037:0,0,0 -g1,9948:6630773,10579037 -g1,9948:6630773,10579037 -g1,9948:6303093,10579037 -(1,9948:6303093,10579037:0,0,0 -) -g1,9948:6630773,10579037 -) -g1,9950:7579210,10579037 -g1,9950:8843793,10579037 -g1,9950:11056813,10579037 -h1,9950:12321396,10579037:0,0,0 -k1,9950:32583028,10579037:20261632 -g1,9950:32583028,10579037 -) -(1,9952:6630773,11900575:25952256,404226,101187 -(1,9951:6630773,11900575:0,0,0 -g1,9951:6630773,11900575 -g1,9951:6630773,11900575 -g1,9951:6303093,11900575 -(1,9951:6303093,11900575:0,0,0 -) -g1,9951:6630773,11900575 -) -k1,9952:6630773,11900575:0 -h1,9952:9792229,11900575:0,0,0 -k1,9952:32583029,11900575:22790800 -g1,9952:32583029,11900575 -) -(1,9953:6630773,12566753:25952256,404226,101187 -h1,9953:6630773,12566753:0,0,0 -k1,9953:6630773,12566753:0 -h1,9953:11689104,12566753:0,0,0 -k1,9953:32583028,12566753:20893924 -g1,9953:32583028,12566753 -) -(1,9957:6630773,13298467:25952256,404226,76021 -(1,9955:6630773,13298467:0,0,0 -g1,9955:6630773,13298467 -g1,9955:6630773,13298467 -g1,9955:6303093,13298467 -(1,9955:6303093,13298467:0,0,0 -) -g1,9955:6630773,13298467 -) -g1,9957:7579210,13298467 -g1,9957:8843793,13298467 -h1,9957:10424521,13298467:0,0,0 -k1,9957:32583029,13298467:22158508 -g1,9957:32583029,13298467 -) -] -) -g1,9958:32583029,13374488 -g1,9958:6630773,13374488 -g1,9958:6630773,13374488 -g1,9958:32583029,13374488 -g1,9958:32583029,13374488 -) -h1,9958:6630773,13571096:0,0,0 -(1,9962:6630773,14936872:25952256,513147,134348 -h1,9961:6630773,14936872:983040,0,0 -k1,9961:8674571,14936872:158327 -k1,9961:12059892,14936872:158328 -k1,9961:15427517,14936872:158327 -k1,9961:17247837,14936872:158327 -k1,9961:18057593,14936872:158328 -k1,9961:21475025,14936872:158327 -k1,9961:22164849,14936872:158327 -k1,9961:23607682,14936872:158327 -k1,9961:24180812,14936872:158287 -k1,9961:27249593,14936872:158327 -k1,9961:29368758,14936872:158328 -k1,9961:30293201,14936872:158327 -k1,9961:32583029,14936872:0 -) -(1,9962:6630773,15778360:25952256,513147,134348 -k1,9961:8907645,15778360:266883 -k1,9961:9530388,15778360:266883 -k1,9961:13311310,15778360:266882 -k1,9961:14972144,15778360:266883 -k1,9961:16258112,15778360:266883 -k1,9961:18178468,15778360:266883 -k1,9961:20183365,15778360:266882 -k1,9961:21136410,15778360:266883 -k1,9961:22422378,15778360:266883 -k1,9961:25269413,15778360:266883 -k1,9961:27315597,15778360:266882 -k1,9961:28963324,15778360:266883 -k1,9961:31298523,15778360:266883 -k1,9961:32583029,15778360:0 -) -(1,9962:6630773,16619848:25952256,513147,134348 -k1,9961:8605794,16619848:276983 -k1,9961:9751130,16619848:276984 -k1,9961:11756297,16619848:276983 -k1,9961:12389140,16619848:276983 -k1,9961:14404139,16619848:276984 -k1,9961:17062700,16619848:276983 -k1,9961:17955722,16619848:276984 -k1,9961:18588565,16619848:276983 -k1,9961:21619371,16619848:276983 -k1,9961:22684753,16619848:276984 -k1,9961:26043894,16619848:276983 -k1,9961:26936915,16619848:276983 -k1,9961:28232984,16619848:276984 -k1,9961:31090119,16619848:276983 -k1,9961:32583029,16619848:0 -) -(1,9962:6630773,17461336:25952256,505283,134348 -k1,9961:7932373,17461336:235329 -k1,9961:9146154,17461336:235328 -k1,9961:13229102,17461336:235329 -k1,9961:14536599,17461336:235328 -k1,9961:17272782,17461336:235329 -k1,9961:18883712,17461336:235329 -k1,9961:21338744,17461336:235328 -k1,9961:22765518,17461336:235329 -k1,9961:24199500,17461336:235328 -k1,9961:27619879,17461336:235329 -k1,9961:29590600,17461336:235328 -k1,9961:30845014,17461336:235329 -k1,9961:32583029,17461336:0 -) -(1,9962:6630773,18302824:25952256,513147,134348 -g1,9961:9600864,18302824 -g1,9961:10561621,18302824 -g1,9961:14411205,18302824 -g1,9961:15629519,18302824 -g1,9961:17566763,18302824 -g1,9961:18425284,18302824 -g1,9961:19643598,18302824 -g1,9961:22422979,18302824 -g1,9961:25375375,18302824 -g1,9961:26336132,18302824 -g1,9961:27707800,18302824 -k1,9962:32583029,18302824:2628655 -g1,9962:32583029,18302824 -) -(1,9964:6630773,19144312:25952256,513147,134348 -h1,9963:6630773,19144312:983040,0,0 -k1,9963:8332289,19144312:240719 -k1,9963:9745447,19144312:240719 -k1,9963:12896619,19144312:240718 -k1,9963:15098175,19144312:240719 -k1,9963:17628722,19144312:240719 -k1,9963:19263392,19144312:240719 -k1,9963:20523195,19144312:240718 -k1,9963:22417387,19144312:240719 -k1,9963:24569791,19144312:240719 -k1,9963:26244438,19144312:240719 -k1,9963:28370627,19144312:240718 -k1,9963:29768056,19144312:240719 -k1,9963:30540272,19144312:240719 -k1,9963:32583029,19144312:0 -) -(1,9964:6630773,19985800:25952256,513147,134348 -k1,9963:9524641,19985800:191819 -k1,9963:10525830,19985800:191819 -k1,9963:11736733,19985800:191818 -k1,9963:13667878,19985800:191819 -k1,9963:14475735,19985800:191819 -k1,9963:16553025,19985800:191819 -k1,9963:17763928,19985800:191818 -k1,9963:20866201,19985800:191819 -k1,9963:22562071,19985800:191819 -k1,9963:25669587,19985800:191819 -k1,9963:26690435,19985800:191818 -k1,9963:28611749,19985800:191819 -k1,9963:31966991,19985800:191819 -k1,9963:32583029,19985800:0 -) -(1,9964:6630773,20827288:25952256,513147,134348 -k1,9963:8284481,20827288:160142 -k1,9963:10315676,20827288:160142 -k1,9963:11091856,20827288:160142 -k1,9963:13413374,20827288:160141 -k1,9963:14105013,20827288:160142 -k1,9963:15600123,20827288:160142 -k1,9963:16411693,20827288:160142 -k1,9963:17664320,20827288:160142 -k1,9963:18843547,20827288:160142 -k1,9963:21783726,20827288:160142 -k1,9963:24012183,20827288:160141 -k1,9963:25119976,20827288:160142 -k1,9963:27370061,20827288:160142 -k1,9963:28996899,20827288:160142 -k1,9964:32583029,20827288:0 -k1,9964:32583029,20827288:0 -) -(1,9965:6630773,23634856:25952256,32768,229376 -(1,9965:6630773,23634856:0,32768,229376 -(1,9965:6630773,23634856:5505024,32768,229376 -r1,9965:12135797,23634856:5505024,262144,229376 -) -k1,9965:6630773,23634856:-5505024 -) -(1,9965:6630773,23634856:25952256,32768,0 -r1,9965:32583029,23634856:25952256,32768,0 -) -) -(1,9965:6630773,25239184:25952256,606339,161218 -(1,9965:6630773,25239184:1974731,582746,14155 -g1,9965:6630773,25239184 -g1,9965:8605504,25239184 -) -g1,9965:11813360,25239184 -k1,9965:32583030,25239184:17773364 -g1,9965:32583030,25239184 -) -(1,9968:6630773,26473888:25952256,513147,134348 -k1,9967:7747687,26473888:214483 -k1,9967:10651768,26473888:214483 -k1,9967:14238077,26473888:214482 -k1,9967:15111852,26473888:214483 -k1,9967:20170101,26473888:214483 -k1,9967:24736830,26473888:214483 -k1,9967:25567350,26473888:214482 -k1,9967:26196661,26473888:214468 -k1,9967:26942641,26473888:214483 -k1,9967:29522973,26473888:214482 -k1,9967:30756541,26473888:214483 -k1,9967:32583029,26473888:0 -) -(1,9968:6630773,27315376:25952256,513147,134348 -k1,9967:7568108,27315376:278043 -k1,9967:9049392,27315376:278043 -k1,9967:11083145,27315376:278043 -k1,9967:12403210,27315376:278043 -k1,9967:13700338,27315376:278043 -k1,9967:19413282,27315376:278043 -k1,9967:21245839,27315376:278043 -k1,9967:21879742,27315376:278043 -k1,9967:23779146,27315376:278043 -k1,9967:28712211,27315376:278043 -k1,9967:29657410,27315376:278043 -k1,9967:30350217,27315376:277964 -k1,9967:32583029,27315376:0 -) -(1,9968:6630773,28156864:25952256,513147,102891 -k1,9967:7959516,28156864:224461 -k1,9967:8931742,28156864:224460 -k1,9967:11307095,28156864:224461 -k1,9967:12998252,28156864:224461 -k1,9967:13688673,28156864:224460 -k1,9967:14675318,28156864:224461 -k1,9967:15582663,28156864:224460 -k1,9967:16899609,28156864:224461 -k1,9967:18616980,28156864:224461 -k1,9967:19907711,28156864:224460 -k1,9967:22188036,28156864:224461 -k1,9967:23063925,28156864:224461 -k1,9967:25217765,28156864:224460 -k1,9967:26725421,28156864:224461 -k1,9967:29356363,28156864:224460 -k1,9967:30961668,28156864:224461 -k1,9967:32583029,28156864:0 -) -(1,9968:6630773,28998352:25952256,505283,134348 -k1,9967:10235102,28998352:186626 -k1,9967:10953225,28998352:186626 -k1,9967:12688468,28998352:186627 -k1,9967:13743446,28998352:186626 -k1,9967:16419129,28998352:186626 -k1,9967:17221793,28998352:186626 -k1,9967:18611661,28998352:186627 -k1,9967:21389581,28998352:186626 -k1,9967:23832612,28998352:186626 -k1,9967:25931579,28998352:186626 -k1,9967:28787487,28998352:186627 -k1,9967:29590151,28998352:186626 -k1,9967:31563944,28998352:186626 -k1,9967:32583029,28998352:0 -) -(1,9968:6630773,29839840:25952256,513147,134348 -k1,9967:9651192,29839840:258076 -k1,9967:11464436,29839840:258075 -k1,9967:14298732,29839840:258076 -k1,9967:17340777,29839840:258076 -k1,9967:18790298,29839840:258076 -k1,9967:20378754,29839840:258075 -k1,9967:21288258,29839840:258076 -k1,9967:22638819,29839840:258076 -k1,9967:24535950,29839840:258076 -k1,9967:25410063,29839840:258075 -k1,9967:26082923,29839840:258017 -k1,9967:29425123,29839840:258076 -k1,9967:30725220,29839840:258075 -k1,9967:31753999,29839840:258076 -k1,9968:32583029,29839840:0 -) -(1,9968:6630773,30681328:25952256,513147,134348 -k1,9967:8761050,30681328:269710 -k1,9967:12175178,30681328:269711 -k1,9967:13104180,30681328:269710 -k1,9967:14392975,30681328:269710 -k1,9967:16972830,30681328:269711 -k1,9967:19249252,30681328:269710 -k1,9967:21869084,30681328:269711 -k1,9967:23157879,30681328:269710 -k1,9967:25339930,30681328:269710 -k1,9967:28732432,30681328:269711 -k1,9967:29451719,30681328:269710 -k1,9967:32583029,30681328:0 -) -(1,9968:6630773,31522816:25952256,505283,134348 -g1,9967:8630931,31522816 -g1,9967:10021605,31522816 -g1,9967:13309546,31522816 -g1,9967:13958352,31522816 -g1,9967:17577250,31522816 -k1,9968:32583029,31522816:13031179 -g1,9968:32583029,31522816 -) -(1,9970:6630773,32364304:25952256,513147,134348 -h1,9969:6630773,32364304:983040,0,0 -k1,9969:9101003,32364304:290503 -k1,9969:13523551,32364304:290503 -k1,9969:14473347,32364304:290504 -k1,9969:17674304,32364304:290503 -k1,9969:18496304,32364304:290503 -k1,9969:22306090,32364304:290503 -k1,9969:25686616,32364304:290503 -k1,9969:26593157,32364304:290503 -k1,9969:27902746,32364304:290504 -k1,9969:29775288,32364304:290503 -k1,9969:30515368,32364304:290503 -k1,9970:32583029,32364304:0 -) -(1,9970:6630773,33205792:25952256,513147,134348 -k1,9969:7877979,33205792:201906 -k1,9969:11211194,33205792:201905 -k1,9969:13214029,33205792:201906 -k1,9969:14607380,33205792:201906 -k1,9969:15579988,33205792:201905 -k1,9969:18471492,33205792:201906 -k1,9969:22283120,33205792:201905 -k1,9969:23152182,33205792:201906 -k1,9969:23768928,33205792:201903 -k1,9969:25538455,33205792:201906 -k1,9969:26759445,33205792:201905 -k1,9969:31313597,33205792:201906 -k1,9970:32583029,33205792:0 -) -(1,9970:6630773,34047280:25952256,505283,134348 -k1,9969:9449868,34047280:224525 -k1,9969:10205889,34047280:224524 -k1,9969:12125175,34047280:224525 -k1,9969:12965738,34047280:224525 -k1,9969:14209348,34047280:224525 -k1,9969:16015911,34047280:224524 -k1,9969:19363227,34047280:224525 -k1,9969:20037329,34047280:224525 -k1,9969:23393164,34047280:224525 -k1,9969:25592440,34047280:224676 -k1,9969:27013652,34047280:224525 -k1,9969:28820215,34047280:224524 -k1,9969:32133452,34047280:224525 -k1,9970:32583029,34047280:0 -) -(1,9970:6630773,34888768:25952256,505283,134348 -g1,9969:10249671,34888768 -g1,9969:12249829,34888768 -g1,9969:14500335,34888768 -g1,9969:16166260,34888768 -k1,9970:32583029,34888768:13602653 -g1,9970:32583029,34888768 -) -] -(1,9979:32583029,45706769:0,0,0 -g1,9979:32583029,45706769 -) -) -] -(1,9979:6630773,47279633:25952256,0,0 -h1,9979:6630773,47279633:25952256,0,0 -) -] -h1,9979:4262630,4025873:0,0,0 -] -!16214 +(1,9944:6630773,7127893:25952256,404226,101187 +h1,9944:6630773,7127893:0,0,0 +h1,9944:8527647,7127893:0,0,0 +k1,9944:32583029,7127893:24055382 +g1,9944:32583029,7127893 +) +(1,9948:6630773,7859607:25952256,404226,101187 +(1,9946:6630773,7859607:0,0,0 +g1,9946:6630773,7859607 +g1,9946:6630773,7859607 +g1,9946:6303093,7859607 +(1,9946:6303093,7859607:0,0,0 +) +g1,9946:6630773,7859607 +) +g1,9948:7579210,7859607 +g1,9948:8843793,7859607 +g1,9948:12321396,7859607 +h1,9948:13585979,7859607:0,0,0 +k1,9948:32583029,7859607:18997050 +g1,9948:32583029,7859607 +) +(1,9950:6630773,9181145:25952256,404226,101187 +(1,9949:6630773,9181145:0,0,0 +g1,9949:6630773,9181145 +g1,9949:6630773,9181145 +g1,9949:6303093,9181145 +(1,9949:6303093,9181145:0,0,0 +) +g1,9949:6630773,9181145 +) +g1,9950:8843793,9181145 +g1,9950:9792231,9181145 +g1,9950:12005251,9181145 +h1,9950:13269834,9181145:0,0,0 +k1,9950:32583030,9181145:19313196 +g1,9950:32583030,9181145 +) +(1,9951:6630773,9847323:25952256,404226,101187 +h1,9951:6630773,9847323:0,0,0 +h1,9951:8527647,9847323:0,0,0 +k1,9951:32583029,9847323:24055382 +g1,9951:32583029,9847323 +) +(1,9955:6630773,10579037:25952256,404226,101187 +(1,9953:6630773,10579037:0,0,0 +g1,9953:6630773,10579037 +g1,9953:6630773,10579037 +g1,9953:6303093,10579037 +(1,9953:6303093,10579037:0,0,0 +) +g1,9953:6630773,10579037 +) +g1,9955:7579210,10579037 +g1,9955:8843793,10579037 +g1,9955:11056813,10579037 +h1,9955:12321396,10579037:0,0,0 +k1,9955:32583028,10579037:20261632 +g1,9955:32583028,10579037 +) +(1,9957:6630773,11900575:25952256,404226,101187 +(1,9956:6630773,11900575:0,0,0 +g1,9956:6630773,11900575 +g1,9956:6630773,11900575 +g1,9956:6303093,11900575 +(1,9956:6303093,11900575:0,0,0 +) +g1,9956:6630773,11900575 +) +k1,9957:6630773,11900575:0 +h1,9957:9792229,11900575:0,0,0 +k1,9957:32583029,11900575:22790800 +g1,9957:32583029,11900575 +) +(1,9958:6630773,12566753:25952256,404226,101187 +h1,9958:6630773,12566753:0,0,0 +k1,9958:6630773,12566753:0 +h1,9958:11689104,12566753:0,0,0 +k1,9958:32583028,12566753:20893924 +g1,9958:32583028,12566753 +) +(1,9962:6630773,13298467:25952256,404226,76021 +(1,9960:6630773,13298467:0,0,0 +g1,9960:6630773,13298467 +g1,9960:6630773,13298467 +g1,9960:6303093,13298467 +(1,9960:6303093,13298467:0,0,0 +) +g1,9960:6630773,13298467 +) +g1,9962:7579210,13298467 +g1,9962:8843793,13298467 +h1,9962:10424521,13298467:0,0,0 +k1,9962:32583029,13298467:22158508 +g1,9962:32583029,13298467 +) +] +) +g1,9963:32583029,13374488 +g1,9963:6630773,13374488 +g1,9963:6630773,13374488 +g1,9963:32583029,13374488 +g1,9963:32583029,13374488 +) +h1,9963:6630773,13571096:0,0,0 +(1,9967:6630773,14936872:25952256,513147,134348 +h1,9966:6630773,14936872:983040,0,0 +k1,9966:8674571,14936872:158327 +k1,9966:12059892,14936872:158328 +k1,9966:15427517,14936872:158327 +k1,9966:17247837,14936872:158327 +k1,9966:18057593,14936872:158328 +k1,9966:21475025,14936872:158327 +k1,9966:22164849,14936872:158327 +k1,9966:23607682,14936872:158327 +k1,9966:24180812,14936872:158287 +k1,9966:27249593,14936872:158327 +k1,9966:29368758,14936872:158328 +k1,9966:30293201,14936872:158327 +k1,9966:32583029,14936872:0 +) +(1,9967:6630773,15778360:25952256,513147,134348 +k1,9966:8907645,15778360:266883 +k1,9966:9530388,15778360:266883 +k1,9966:13311310,15778360:266882 +k1,9966:14972144,15778360:266883 +k1,9966:16258112,15778360:266883 +k1,9966:18178468,15778360:266883 +k1,9966:20183365,15778360:266882 +k1,9966:21136410,15778360:266883 +k1,9966:22422378,15778360:266883 +k1,9966:25269413,15778360:266883 +k1,9966:27315597,15778360:266882 +k1,9966:28963324,15778360:266883 +k1,9966:31298523,15778360:266883 +k1,9966:32583029,15778360:0 +) +(1,9967:6630773,16619848:25952256,513147,134348 +k1,9966:8605794,16619848:276983 +k1,9966:9751130,16619848:276984 +k1,9966:11756297,16619848:276983 +k1,9966:12389140,16619848:276983 +k1,9966:14404139,16619848:276984 +k1,9966:17062700,16619848:276983 +k1,9966:17955722,16619848:276984 +k1,9966:18588565,16619848:276983 +k1,9966:21619371,16619848:276983 +k1,9966:22684753,16619848:276984 +k1,9966:26043894,16619848:276983 +k1,9966:26936915,16619848:276983 +k1,9966:28232984,16619848:276984 +k1,9966:31090119,16619848:276983 +k1,9966:32583029,16619848:0 +) +(1,9967:6630773,17461336:25952256,505283,134348 +k1,9966:7932373,17461336:235329 +k1,9966:9146154,17461336:235328 +k1,9966:13229102,17461336:235329 +k1,9966:14536599,17461336:235328 +k1,9966:17272782,17461336:235329 +k1,9966:18883712,17461336:235329 +k1,9966:21338744,17461336:235328 +k1,9966:22765518,17461336:235329 +k1,9966:24199500,17461336:235328 +k1,9966:27619879,17461336:235329 +k1,9966:29590600,17461336:235328 +k1,9966:30845014,17461336:235329 +k1,9966:32583029,17461336:0 +) +(1,9967:6630773,18302824:25952256,513147,134348 +g1,9966:9600864,18302824 +g1,9966:10561621,18302824 +g1,9966:14411205,18302824 +g1,9966:15629519,18302824 +g1,9966:17566763,18302824 +g1,9966:18425284,18302824 +g1,9966:19643598,18302824 +g1,9966:22422979,18302824 +g1,9966:25375375,18302824 +g1,9966:26336132,18302824 +g1,9966:27707800,18302824 +k1,9967:32583029,18302824:2628655 +g1,9967:32583029,18302824 +) +(1,9969:6630773,19144312:25952256,513147,134348 +h1,9968:6630773,19144312:983040,0,0 +k1,9968:8332289,19144312:240719 +k1,9968:9745447,19144312:240719 +k1,9968:12896619,19144312:240718 +k1,9968:15098175,19144312:240719 +k1,9968:17628722,19144312:240719 +k1,9968:19263392,19144312:240719 +k1,9968:20523195,19144312:240718 +k1,9968:22417387,19144312:240719 +k1,9968:24569791,19144312:240719 +k1,9968:26244438,19144312:240719 +k1,9968:28370627,19144312:240718 +k1,9968:29768056,19144312:240719 +k1,9968:30540272,19144312:240719 +k1,9968:32583029,19144312:0 +) +(1,9969:6630773,19985800:25952256,513147,134348 +k1,9968:9524641,19985800:191819 +k1,9968:10525830,19985800:191819 +k1,9968:11736733,19985800:191818 +k1,9968:13667878,19985800:191819 +k1,9968:14475735,19985800:191819 +k1,9968:16553025,19985800:191819 +k1,9968:17763928,19985800:191818 +k1,9968:20866201,19985800:191819 +k1,9968:22562071,19985800:191819 +k1,9968:25669587,19985800:191819 +k1,9968:26690435,19985800:191818 +k1,9968:28611749,19985800:191819 +k1,9968:31966991,19985800:191819 +k1,9968:32583029,19985800:0 +) +(1,9969:6630773,20827288:25952256,513147,134348 +k1,9968:8284481,20827288:160142 +k1,9968:10315676,20827288:160142 +k1,9968:11091856,20827288:160142 +k1,9968:13413374,20827288:160141 +k1,9968:14105013,20827288:160142 +k1,9968:15600123,20827288:160142 +k1,9968:16411693,20827288:160142 +k1,9968:17664320,20827288:160142 +k1,9968:18843547,20827288:160142 +k1,9968:21783726,20827288:160142 +k1,9968:24012183,20827288:160141 +k1,9968:25119976,20827288:160142 +k1,9968:27370061,20827288:160142 +k1,9968:28996899,20827288:160142 +k1,9969:32583029,20827288:0 +k1,9969:32583029,20827288:0 +) +(1,9970:6630773,23634856:25952256,32768,229376 +(1,9970:6630773,23634856:0,32768,229376 +(1,9970:6630773,23634856:5505024,32768,229376 +r1,9970:12135797,23634856:5505024,262144,229376 +) +k1,9970:6630773,23634856:-5505024 +) +(1,9970:6630773,23634856:25952256,32768,0 +r1,9970:32583029,23634856:25952256,32768,0 +) +) +(1,9970:6630773,25239184:25952256,606339,161218 +(1,9970:6630773,25239184:1974731,582746,14155 +g1,9970:6630773,25239184 +g1,9970:8605504,25239184 +) +g1,9970:11813360,25239184 +k1,9970:32583030,25239184:17773364 +g1,9970:32583030,25239184 +) +(1,9973:6630773,26473888:25952256,513147,134348 +k1,9972:7747687,26473888:214483 +k1,9972:10651768,26473888:214483 +k1,9972:14238077,26473888:214482 +k1,9972:15111852,26473888:214483 +k1,9972:20170101,26473888:214483 +k1,9972:24736830,26473888:214483 +k1,9972:25567350,26473888:214482 +k1,9972:26196661,26473888:214468 +k1,9972:26942641,26473888:214483 +k1,9972:29522973,26473888:214482 +k1,9972:30756541,26473888:214483 +k1,9972:32583029,26473888:0 +) +(1,9973:6630773,27315376:25952256,513147,134348 +k1,9972:7461771,27315376:171706 +k1,9972:8836719,27315376:171707 +k1,9972:10764135,27315376:171706 +k1,9972:11977863,27315376:171706 +k1,9972:13168655,27315376:171707 +k1,9972:18775262,27315376:171706 +k1,9972:20501482,27315376:171706 +k1,9972:21029049,27315376:171707 +k1,9972:22822116,27315376:171706 +k1,9972:27648844,27315376:171706 +k1,9972:28487707,27315376:171707 +k1,9972:29074229,27315376:171679 +k1,9972:31478747,27315376:171706 +k1,9972:32583029,27315376:0 +) +(1,9973:6630773,28156864:25952256,513147,102891 +k1,9972:7538201,28156864:159662 +k1,9972:9848755,28156864:159662 +k1,9972:11475113,28156864:159662 +k1,9972:12100736,28156864:159662 +k1,9972:13022582,28156864:159662 +k1,9972:13865129,28156864:159662 +k1,9972:15117276,28156864:159662 +k1,9972:16769847,28156864:159661 +k1,9972:17995780,28156864:159662 +k1,9972:20211306,28156864:159662 +k1,9972:21022396,28156864:159662 +k1,9972:23111438,28156864:159662 +k1,9972:24554295,28156864:159662 +k1,9972:27120439,28156864:159662 +k1,9972:28660945,28156864:159662 +k1,9972:30441968,28156864:159662 +k1,9973:32583029,28156864:0 +) +(1,9973:6630773,28998352:25952256,513147,134348 +k1,9972:8352872,28998352:232466 +k1,9972:9116834,28998352:232465 +k1,9972:10897916,28998352:232466 +k1,9972:11998733,28998352:232465 +k1,9972:14720256,28998352:232466 +k1,9972:15568759,28998352:232465 +k1,9972:17004466,28998352:232466 +k1,9972:19828225,28998352:232465 +k1,9972:22317096,28998352:232466 +k1,9972:24461902,28998352:232465 +k1,9972:27363649,28998352:232466 +k1,9972:28212152,28998352:232465 +k1,9972:30231785,28998352:232466 +k1,9972:31483335,28998352:232465 +k1,9973:32583029,28998352:0 +) +(1,9973:6630773,29839840:25952256,513147,134348 +k1,9972:8735697,29839840:185374 +k1,9972:10476241,29839840:185375 +k1,9972:13237835,29839840:185374 +k1,9972:16207178,29839840:185374 +k1,9972:17583997,29839840:185374 +k1,9972:19099753,29839840:185375 +k1,9972:19936555,29839840:185374 +k1,9972:21214414,29839840:185374 +k1,9972:23038843,29839840:185374 +k1,9972:23840256,29839840:185375 +k1,9972:24440459,29839840:185360 +k1,9972:27709957,29839840:185374 +k1,9972:28937354,29839840:185375 +k1,9972:29893431,29839840:185374 +k1,9972:32583029,29839840:0 +) +(1,9973:6630773,30681328:25952256,513147,134348 +k1,9972:9969977,30681328:194787 +k1,9972:10824057,30681328:194788 +k1,9972:12037929,30681328:194787 +k1,9972:14542861,30681328:194788 +k1,9972:16744360,30681328:194787 +k1,9972:19289269,30681328:194788 +k1,9972:20503141,30681328:194787 +k1,9972:22610270,30681328:194788 +(1,9972:22610270,30681328:4681892,505283,11795 +) +k1,9972:27486949,30681328:194787 +(1,9972:27694043,30681328:4681892,505283,11795 +) +k1,9972:32583029,30681328:0 +) +(1,9973:6630773,31522816:25952256,505283,95026 +g1,9972:8021447,31522816 +(1,9972:8021447,31522816:4959765,505283,11795 +) +g1,9972:13180441,31522816 +(1,9972:13387535,31522816:4959765,505283,11795 +) +k1,9973:32583029,31522816:13854965 +g1,9973:32583029,31522816 +) +(1,9975:6630773,32364304:25952256,513147,134348 +h1,9974:6630773,32364304:983040,0,0 +k1,9974:9445253,32364304:634753 +k1,9974:14212050,32364304:634752 +k1,9974:15506095,32364304:634753 +k1,9974:19051301,32364304:634752 +k1,9974:20217551,32364304:634753 +k1,9974:24371586,32364304:634752 +k1,9974:28096362,32364304:634753 +k1,9974:29347152,32364304:634752 +k1,9974:31000990,32364304:634753 +k1,9974:32583029,32364304:0 +) +(1,9975:6630773,33205792:25952256,513147,126483 +(1,9974:6630773,33205792:4681892,505283,11795 +) +k1,9974:11784263,33205792:471598 +(1,9974:11991357,33205792:4681892,505283,11795 +) +k1,9974:17351941,33205792:471598 +k1,9974:19014985,33205792:471599 +k1,9974:20257286,33205792:471598 +k1,9974:23418482,33205792:471598 +k1,9974:27499803,33205792:471598 +k1,9974:28638557,33205792:471598 +k1,9974:29524725,33205792:471325 +k1,9974:31563944,33205792:471598 +k1,9974:32583029,33205792:0 +) +(1,9975:6630773,34047280:25952256,505283,134348 +k1,9974:11302261,34047280:319242 +k1,9974:15272514,34047280:319242 +k1,9974:16123253,34047280:319242 +k1,9974:18137256,34047280:319242 +k1,9974:19072537,34047280:319243 +k1,9974:20410864,34047280:319242 +k1,9974:22312145,34047280:319242 +(1,9974:22312145,34047280:4681892,505283,11795 +) +k1,9974:27313279,34047280:319242 +(1,9974:27520373,34047280:4681892,505283,11795 +) +k1,9974:32583029,34047280:0 +) +(1,9975:6630773,34888768:25952256,505283,134348 +g1,9974:8026689,34888768 +g1,9974:9807957,34888768 +(1,9974:9807957,34888768:4959765,505283,11795 +) +g1,9974:14966951,34888768 +(1,9974:15174045,34888768:4959765,505283,11795 +) +g1,9974:20540133,34888768 +g1,9974:22790639,34888768 +g1,9974:24456564,34888768 +k1,9975:32583029,34888768:5312349 +g1,9975:32583029,34888768 +) +] +(1,9984:32583029,45706769:0,0,0 +g1,9984:32583029,45706769 +) +) +] +(1,9984:6630773,47279633:25952256,0,0 +h1,9984:6630773,47279633:25952256,0,0 +) +] +h1,9984:4262630,4025873:0,0,0 +] +!16341 }186 !12 {187 -[1,9979:4262630,47279633:28320399,43253760,0 -(1,9979:4262630,4025873:0,0,0 -[1,9979:-473657,4025873:25952256,0,0 -(1,9979:-473657,-710414:25952256,0,0 -h1,9979:-473657,-710414:0,0,0 -(1,9979:-473657,-710414:0,0,0 -(1,9979:-473657,-710414:0,0,0 -g1,9979:-473657,-710414 -(1,9979:-473657,-710414:65781,0,65781 -g1,9979:-407876,-710414 -[1,9979:-407876,-644633:0,0,0 +[1,9984:4262630,47279633:28320399,43253760,0 +(1,9984:4262630,4025873:0,0,0 +[1,9984:-473657,4025873:25952256,0,0 +(1,9984:-473657,-710414:25952256,0,0 +h1,9984:-473657,-710414:0,0,0 +(1,9984:-473657,-710414:0,0,0 +(1,9984:-473657,-710414:0,0,0 +g1,9984:-473657,-710414 +(1,9984:-473657,-710414:65781,0,65781 +g1,9984:-407876,-710414 +[1,9984:-407876,-644633:0,0,0 ] ) -k1,9979:-473657,-710414:-65781 +k1,9984:-473657,-710414:-65781 ) ) -k1,9979:25478599,-710414:25952256 -g1,9979:25478599,-710414 +k1,9984:25478599,-710414:25952256 +g1,9984:25478599,-710414 ) ] ) -[1,9979:6630773,47279633:25952256,43253760,0 -[1,9979:6630773,4812305:25952256,786432,0 -(1,9979:6630773,4812305:25952256,0,0 -(1,9979:6630773,4812305:25952256,0,0 -g1,9979:3078558,4812305 -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,2439708:0,1703936,0 -k1,9979:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,9979:2537886,2439708:1179648,16384,0 +[1,9984:6630773,47279633:25952256,43253760,0 +[1,9984:6630773,4812305:25952256,786432,0 +(1,9984:6630773,4812305:25952256,0,0 +(1,9984:6630773,4812305:25952256,0,0 +g1,9984:3078558,4812305 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,2439708:0,1703936,0 +k1,9984:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,9984:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,9979:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,9984:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,2439708:0,1703936,0 -g1,9979:29030814,2439708 -g1,9979:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,9979:36151628,1915420:16384,1179648,0 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,2439708:0,1703936,0 +g1,9984:29030814,2439708 +g1,9984:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,9984:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,9979:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,9984:37855564,2439708:1179648,16384,0 ) ) -k1,9979:3078556,2439708:-34777008 +k1,9984:3078556,2439708:-34777008 ) ] -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,49800853:0,16384,2228224 -k1,9979:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,9979:2537886,49800853:1179648,16384,0 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,49800853:0,16384,2228224 +k1,9984:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,9984:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,9979:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,9984:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,9979:3078558,4812305:0,0,0 -(1,9979:3078558,49800853:0,16384,2228224 -g1,9979:29030814,49800853 -g1,9979:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,9979:36151628,51504789:16384,1179648,0 +[1,9984:3078558,4812305:0,0,0 +(1,9984:3078558,49800853:0,16384,2228224 +g1,9984:29030814,49800853 +g1,9984:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,9984:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,9979:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,9984:37855564,49800853:1179648,16384,0 ) ) -k1,9979:3078556,49800853:-34777008 +k1,9984:3078556,49800853:-34777008 ) ] -g1,9979:6630773,4812305 +g1,9984:6630773,4812305 ) ) ] -[1,9979:6630773,45706769:0,40108032,0 -(1,9979:6630773,45706769:0,40108032,0 -(1,9979:6630773,45706769:0,0,0 -g1,9979:6630773,45706769 +[1,9984:6630773,45706769:0,40108032,0 +(1,9984:6630773,45706769:0,40108032,0 +(1,9984:6630773,45706769:0,0,0 +g1,9984:6630773,45706769 ) -[1,9979:6630773,45706769:0,40108032,0 -h1,9979:6630773,6254097:0,0,0 +[1,9984:6630773,45706769:0,40108032,0 +h1,9984:6630773,6254097:0,0,0 ] -(1,9979:6630773,45706769:0,0,0 -g1,9979:6630773,45706769 +(1,9984:6630773,45706769:0,0,0 +g1,9984:6630773,45706769 ) ) ] -(1,9979:6630773,47279633:25952256,0,0 -h1,9979:6630773,47279633:25952256,0,0 +(1,9984:6630773,47279633:25952256,0,0 +h1,9984:6630773,47279633:25952256,0,0 ) ] -h1,9979:4262630,4025873:0,0,0 +h1,9984:4262630,4025873:0,0,0 ] !3329 }187 !11 {188 -[1,9996:4262630,47279633:28320399,43253760,0 -(1,9996:4262630,4025873:0,0,0 -[1,9996:-473657,4025873:25952256,0,0 -(1,9996:-473657,-710414:25952256,0,0 -h1,9996:-473657,-710414:0,0,0 -(1,9996:-473657,-710414:0,0,0 -(1,9996:-473657,-710414:0,0,0 -g1,9996:-473657,-710414 -(1,9996:-473657,-710414:65781,0,65781 -g1,9996:-407876,-710414 -[1,9996:-407876,-644633:0,0,0 +[1,10001:4262630,47279633:28320399,43253760,0 +(1,10001:4262630,4025873:0,0,0 +[1,10001:-473657,4025873:25952256,0,0 +(1,10001:-473657,-710414:25952256,0,0 +h1,10001:-473657,-710414:0,0,0 +(1,10001:-473657,-710414:0,0,0 +(1,10001:-473657,-710414:0,0,0 +g1,10001:-473657,-710414 +(1,10001:-473657,-710414:65781,0,65781 +g1,10001:-407876,-710414 +[1,10001:-407876,-644633:0,0,0 ] ) -k1,9996:-473657,-710414:-65781 +k1,10001:-473657,-710414:-65781 ) ) -k1,9996:25478599,-710414:25952256 -g1,9996:25478599,-710414 +k1,10001:25478599,-710414:25952256 +g1,10001:25478599,-710414 ) ] ) -[1,9996:6630773,47279633:25952256,43253760,0 -[1,9996:6630773,4812305:25952256,786432,0 -(1,9996:6630773,4812305:25952256,0,0 -(1,9996:6630773,4812305:25952256,0,0 -g1,9996:3078558,4812305 -[1,9996:3078558,4812305:0,0,0 -(1,9996:3078558,2439708:0,1703936,0 -k1,9996:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,9996:2537886,2439708:1179648,16384,0 +[1,10001:6630773,47279633:25952256,43253760,0 +[1,10001:6630773,4812305:25952256,786432,0 +(1,10001:6630773,4812305:25952256,0,0 +(1,10001:6630773,4812305:25952256,0,0 +g1,10001:3078558,4812305 +[1,10001:3078558,4812305:0,0,0 +(1,10001:3078558,2439708:0,1703936,0 +k1,10001:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10001:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,9996:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10001:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,9996:3078558,4812305:0,0,0 -(1,9996:3078558,2439708:0,1703936,0 -g1,9996:29030814,2439708 -g1,9996:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,9996:36151628,1915420:16384,1179648,0 +[1,10001:3078558,4812305:0,0,0 +(1,10001:3078558,2439708:0,1703936,0 +g1,10001:29030814,2439708 +g1,10001:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10001:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,9996:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10001:37855564,2439708:1179648,16384,0 ) ) -k1,9996:3078556,2439708:-34777008 +k1,10001:3078556,2439708:-34777008 ) ] -[1,9996:3078558,4812305:0,0,0 -(1,9996:3078558,49800853:0,16384,2228224 -k1,9996:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,9996:2537886,49800853:1179648,16384,0 +[1,10001:3078558,4812305:0,0,0 +(1,10001:3078558,49800853:0,16384,2228224 +k1,10001:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10001:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,9996:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10001:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,9996:3078558,4812305:0,0,0 -(1,9996:3078558,49800853:0,16384,2228224 -g1,9996:29030814,49800853 -g1,9996:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,9996:36151628,51504789:16384,1179648,0 +[1,10001:3078558,4812305:0,0,0 +(1,10001:3078558,49800853:0,16384,2228224 +g1,10001:29030814,49800853 +g1,10001:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10001:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,9996:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10001:37855564,49800853:1179648,16384,0 ) ) -k1,9996:3078556,49800853:-34777008 +k1,10001:3078556,49800853:-34777008 ) ] -g1,9996:6630773,4812305 +g1,10001:6630773,4812305 ) ) ] -[1,9996:6630773,45706769:25952256,40108032,0 -(1,9996:6630773,45706769:25952256,40108032,0 -(1,9996:6630773,45706769:0,0,0 -g1,9996:6630773,45706769 +[1,10001:6630773,45706769:25952256,40108032,0 +(1,10001:6630773,45706769:25952256,40108032,0 +(1,10001:6630773,45706769:0,0,0 +g1,10001:6630773,45706769 ) -[1,9996:6630773,45706769:25952256,40108032,0 -[1,9979:6630773,11663733:25952256,6064996,0 -(1,9979:6630773,6633157:25952256,1165492,28311 -h1,9979:6630773,6633157:0,0,0 -k1,9979:20096848,6633157:12486181 -k1,9979:32583029,6633157:12486181 +[1,10001:6630773,45706769:25952256,40108032,0 +[1,9984:6630773,11663733:25952256,6064996,0 +(1,9984:6630773,6633157:25952256,1165492,28311 +h1,9984:6630773,6633157:0,0,0 +k1,9984:20096848,6633157:12486181 +k1,9984:32583029,6633157:12486181 ) -(1,9979:6630773,7333093:25952256,32768,229376 -(1,9979:6630773,7333093:0,32768,229376 -(1,9979:6630773,7333093:5505024,32768,229376 -r1,9979:12135797,7333093:5505024,262144,229376 +(1,9984:6630773,7333093:25952256,32768,229376 +(1,9984:6630773,7333093:0,32768,229376 +(1,9984:6630773,7333093:5505024,32768,229376 +r1,9984:12135797,7333093:5505024,262144,229376 ) -k1,9979:6630773,7333093:-5505024 +k1,9984:6630773,7333093:-5505024 ) -(1,9979:6630773,7333093:25952256,32768,0 -r1,9979:32583029,7333093:25952256,32768,0 +(1,9984:6630773,7333093:25952256,32768,0 +r1,9984:32583029,7333093:25952256,32768,0 ) ) -(1,9979:6630773,9128789:25952256,923664,241827 -h1,9979:6630773,9128789:0,0,0 -g1,9979:9448952,9128789 -g1,9979:15807255,9128789 -g1,9979:17274737,9128789 -k1,9979:26214110,9128789:6368920 -k1,9979:32583029,9128789:6368919 -) -(1,9979:6630773,9828725:25952256,32768,0 -(1,9979:6630773,9828725:5505024,32768,0 -r1,9979:12135797,9828725:5505024,32768,0 -) -k1,9979:22359413,9828725:10223616 -k1,9979:32583029,9828725:10223616 +(1,9984:6630773,9128789:25952256,923664,241827 +h1,9984:6630773,9128789:0,0,0 +g1,9984:9448952,9128789 +g1,9984:15807255,9128789 +g1,9984:17274737,9128789 +k1,9984:26214110,9128789:6368920 +k1,9984:32583029,9128789:6368919 +) +(1,9984:6630773,9828725:25952256,32768,0 +(1,9984:6630773,9828725:5505024,32768,0 +r1,9984:12135797,9828725:5505024,32768,0 +) +k1,9984:22359413,9828725:10223616 +k1,9984:32583029,9828725:10223616 ) ] -(1,9981:6630773,14556498:25952256,131072,0 -r1,9981:32583029,14556498:25952256,131072,0 -g1,9981:32583029,14556498 -g1,9981:32583029,14556498 -) -(1,9983:6630773,15876399:25952256,513147,134348 -k1,9983:8596853,15876399:1966080 -k1,9982:12214495,15876399:238606 -k1,9982:15816408,15876399:238605 -k1,9982:16671052,15876399:238606 -k1,9982:18297711,15876399:238606 -k1,9982:19483967,15876399:238605 -k1,9982:22551107,15876399:238606 -k1,9982:23145573,15876399:238606 -k1,9982:24483872,15876399:238605 -k1,9982:25373906,15876399:238606 -k1,9982:25968372,15876399:238606 -k1,9982:29076143,15876399:238605 -k1,9982:29846246,15876399:238606 -k1,9982:32583029,15876399:1966080 -) -(1,9983:6630773,16717887:25952256,513147,134348 -k1,9983:8596853,16717887:1966080 -k1,9982:10057351,16717887:246116 -k1,9982:12436710,16717887:246162 -k1,9982:13954271,16717887:246163 -k1,9982:17315359,16717887:246162 -k1,9982:18093019,16717887:246163 -k1,9982:19623688,16717887:246163 -k1,9982:21084185,16717887:246115 -k1,9982:22431353,16717887:246163 -k1,9982:27629415,16717887:246162 -k1,9982:29256422,16717887:246163 -k1,9983:32583029,16717887:1966080 -) -(1,9983:6630773,17559375:25952256,513147,134348 -k1,9983:8596853,17559375:1966080 -k1,9982:12095619,17559375:207548 -k1,9982:14349201,17559375:207548 -k1,9982:14912609,17559375:207548 -k1,9982:15976713,17559375:207548 -k1,9982:16843554,17559375:207549 -k1,9982:19043396,17559375:207548 -k1,9982:21880904,17559375:207548 -k1,9982:22704490,17559375:207548 -k1,9982:24126412,17559375:207540 -k1,9982:25618466,17559375:207548 -k1,9982:26817574,17559375:207548 -k1,9982:28091393,17559375:207548 -k1,9982:28914979,17559375:207548 -k1,9982:32583029,17559375:1966080 -) -(1,9983:6630773,18400863:25952256,505283,134348 -g1,9983:8596853,18400863 -k1,9983:30616949,18400863:18673828 -g1,9983:32583029,18400863 -) -(1,9984:6630773,20028783:25952256,505283,95026 -k1,9984:25716823,20028783:19086050 -h1,9984:25716823,20028783:0,0,0 -g1,9984:28120028,20028783 -g1,9984:28769489,20028783 -g1,9984:30616949,20028783 -g1,9984:32583029,20028783 -) -(1,9985:6630773,20870271:25952256,485622,126483 -k1,9985:26098897,20870271:19468124 -h1,9984:26098897,20870271:0,0,0 -g1,9984:26657919,20870271 -g1,9984:29023112,20870271 -g1,9985:30616948,20870271 -g1,9985:32583028,20870271 -) -(1,9985:6630773,22104975:25952256,131072,0 -r1,9985:32583029,22104975:25952256,131072,0 -g1,9985:32583029,22104975 -g1,9985:34549109,22104975 -) -(1,9989:6630773,24912543:25952256,32768,229376 -(1,9989:6630773,24912543:0,32768,229376 -(1,9989:6630773,24912543:5505024,32768,229376 -r1,9989:12135797,24912543:5505024,262144,229376 -) -k1,9989:6630773,24912543:-5505024 -) -(1,9989:6630773,24912543:25952256,32768,0 -r1,9989:32583029,24912543:25952256,32768,0 -) -) -(1,9989:6630773,26516871:25952256,615776,151780 -(1,9989:6630773,26516871:1974731,582746,14155 -g1,9989:6630773,26516871 -g1,9989:8605504,26516871 -) -g1,9989:10904245,26516871 -g1,9989:11961996,26516871 -g1,9989:13695292,26516871 -k1,9989:32583029,26516871:15886712 -g1,9989:32583029,26516871 -) -(1,9992:6630773,27751575:25952256,513147,134348 -k1,9991:8347431,27751575:284041 -k1,9991:9046231,27751575:283957 -k1,9991:10521717,27751575:284041 -k1,9991:11824844,27751575:284042 -k1,9991:16663637,27751575:284041 -k1,9991:20020006,27751575:284041 -k1,9991:23214502,27751575:284042 -k1,9991:26443076,27751575:284041 -k1,9991:27488646,27751575:284042 -k1,9991:30245360,27751575:284041 -k1,9991:32583029,27751575:0 -) -(1,9992:6630773,28593063:25952256,513147,134348 -k1,9991:8577907,28593063:195357 -k1,9991:11799062,28593063:195358 -k1,9991:12942070,28593063:195357 -k1,9991:17373019,28593063:195357 -k1,9991:19131410,28593063:195357 -k1,9991:20523455,28593063:195358 -k1,9991:21133651,28593063:195353 -k1,9991:25110435,28593063:195357 -k1,9991:27976384,28593063:195357 -k1,9991:28527602,28593063:195358 -k1,9991:31648486,28593063:195357 -k1,9991:32583029,28593063:0 -) -(1,9992:6630773,29434551:25952256,513147,126483 -k1,9991:7499423,29434551:209358 -k1,9991:10734577,29434551:209357 -k1,9991:12135380,29434551:209358 -k1,9991:15421653,29434551:209358 -k1,9991:16915516,29434551:209357 -k1,9991:18806528,29434551:209358 -k1,9991:19782001,29434551:209357 -k1,9991:21010444,29434551:209358 -k1,9991:22940777,29434551:209358 -k1,9991:24539497,29434551:209357 -k1,9991:29004763,29434551:209358 -k1,9991:32583029,29434551:0 -) -(1,9992:6630773,30276039:25952256,513147,126483 -k1,9991:8666143,30276039:161040 -k1,9991:11852979,30276039:161039 -k1,9991:13489234,30276039:161040 -k1,9991:15546231,30276039:161040 -k1,9991:16898716,30276039:161040 -k1,9991:21641377,30276039:161039 -k1,9991:24735808,30276039:161040 -k1,9991:25621676,30276039:161040 -k1,9991:27162904,30276039:161040 -k1,9991:29504326,30276039:161039 -k1,9991:30413132,30276039:161040 -k1,9992:32583029,30276039:0 -) -(1,9992:6630773,31117527:25952256,513147,134348 -k1,9991:7891635,31117527:204422 -k1,9991:10138814,31117527:204422 -k1,9991:12035376,31117527:204422 -k1,9991:12899090,31117527:204422 -k1,9991:14612151,31117527:204422 -k1,9991:18254592,31117527:204422 -k1,9991:20514877,31117527:204421 -k1,9991:21738384,31117527:204422 -k1,9991:23035291,31117527:204422 -k1,9991:23899005,31117527:204422 -k1,9991:27820629,31117527:204422 -k1,9991:30406629,31117527:204422 -k1,9991:31227089,31117527:204422 -k1,9992:32583029,31117527:0 -) -(1,9992:6630773,31959015:25952256,505283,134348 -k1,9991:9448876,31959015:231397 -k1,9991:12764396,31959015:231396 -k1,9991:13623628,31959015:231397 -k1,9991:14874109,31959015:231396 -k1,9991:17511333,31959015:231397 -k1,9991:20160352,31959015:231396 -k1,9991:21260101,31959015:231397 -k1,9991:22668524,31959015:231396 -k1,9991:23512683,31959015:231397 -k1,9991:27056269,31959015:231396 -k1,9991:28306751,31959015:231397 -k1,9991:29821342,31959015:231396 -k1,9991:32583029,31959015:0 -) -(1,9992:6630773,32800503:25952256,513147,134348 -k1,9991:10298944,32800503:175102 -k1,9991:11235575,32800503:175103 -k1,9991:12429762,32800503:175102 -k1,9991:14206564,32800503:175102 -k1,9991:16881865,32800503:175102 -k1,9991:17716260,32800503:175103 -k1,9991:19588089,32800503:175102 -k1,9991:23492845,32800503:175102 -k1,9991:24082766,32800503:175078 -k1,9991:27330197,32800503:175103 -k1,9991:30415753,32800503:175102 -k1,9991:32583029,32800503:0 -) -(1,9992:6630773,33641991:25952256,513147,134348 -k1,9991:7492353,33641991:248818 -k1,9991:10624756,33641991:248819 -k1,9991:13367874,33641991:248818 -k1,9991:16888905,33641991:248818 -k1,9991:18294434,33641991:248819 -k1,9991:20587975,33641991:248818 -k1,9991:21449555,33641991:248818 -k1,9991:22717459,33641991:248819 -k1,9991:25539220,33641991:248818 -k1,9991:26447330,33641991:248818 -k1,9991:29375916,33641991:248819 -k1,9991:30240772,33641991:248818 -k1,9991:32583029,33641991:0 -) -(1,9992:6630773,34483479:25952256,505283,134348 -k1,9991:8405905,34483479:206855 -k1,9991:9943142,34483479:206856 -k1,9991:11018349,34483479:206855 -k1,9991:12329486,34483479:206855 -k1,9991:16129026,34483479:206856 -k1,9991:17725244,34483479:206855 -k1,9991:18548138,34483479:206856 -k1,9991:19343506,34483479:206855 -k1,9991:21424691,34483479:206855 -k1,9991:26204649,34483479:206856 -k1,9991:29672575,34483479:206855 -k1,9991:32583029,34483479:0 -) -(1,9992:6630773,35324967:25952256,505283,134348 -k1,9991:8953065,35324967:170090 -k1,9991:10142239,35324967:170089 -k1,9991:10727143,35324967:170061 -k1,9991:13739528,35324967:170089 -k1,9991:14975889,35324967:170090 -k1,9991:16521580,35324967:170090 -k1,9991:17453197,35324967:170089 -k1,9991:19810879,35324967:170090 -k1,9991:21264163,35324967:170089 -k1,9991:23989502,35324967:170090 -k1,9991:24811020,35324967:170090 -k1,9991:25439206,35324967:170089 -k1,9991:26681465,35324967:170090 -k1,9991:27613082,35324967:170089 -k1,9991:31299834,35324967:170090 -k1,9991:32583029,35324967:0 -) -(1,9992:6630773,36166455:25952256,513147,134348 -k1,9991:8338277,36166455:139227 -k1,9991:9136797,36166455:139228 -k1,9991:13455255,36166455:139227 -k1,9991:17080343,36166455:139228 -k1,9991:21499726,36166455:139227 -k1,9991:24711937,36166455:139228 -k1,9991:26134359,36166455:139227 -k1,9991:30106788,36166455:139228 -k1,9991:31193666,36166455:139227 -k1,9991:32583029,36166455:0 -) -(1,9992:6630773,37007943:25952256,505283,126483 -k1,9992:32583029,37007943:21522678 -g1,9992:32583029,37007943 -) -(1,9993:6630773,39815511:25952256,32768,229376 -(1,9993:6630773,39815511:0,32768,229376 -(1,9993:6630773,39815511:5505024,32768,229376 -r1,9993:12135797,39815511:5505024,262144,229376 -) -k1,9993:6630773,39815511:-5505024 -) -(1,9993:6630773,39815511:25952256,32768,0 -r1,9993:32583029,39815511:25952256,32768,0 -) -) -(1,9993:6630773,41419839:25952256,606339,14155 -(1,9993:6630773,41419839:1974731,582746,14155 -g1,9993:6630773,41419839 -g1,9993:8605504,41419839 -) -k1,9993:32583029,41419839:19020644 -g1,9993:32583029,41419839 -) -(1,9996:6630773,42654543:25952256,513147,134348 -k1,9995:7600762,42654543:209771 -k1,9995:10213082,42654543:209770 -k1,9995:13177331,42654543:209771 -k1,9995:16308697,42654543:209771 -k1,9995:17688940,42654543:209770 -k1,9995:19373926,42654543:209771 -k1,9995:21918088,42654543:209770 -k1,9995:24571041,42654543:209771 -k1,9995:27273146,42654543:209771 -k1,9995:28876867,42654543:209770 -k1,9995:30520566,42654543:209771 -k1,9995:31145169,42654543:209760 -k1,9996:32583029,42654543:0 -) -(1,9996:6630773,43496031:25952256,513147,134348 -k1,9995:8004705,43496031:192318 -k1,9995:11155318,43496031:192318 -k1,9995:14373434,43496031:192319 -k1,9995:15757197,43496031:192318 -k1,9995:19026430,43496031:192318 -k1,9995:20166399,43496031:192318 -k1,9995:22619054,43496031:192318 -k1,9995:24002817,43496031:192318 -k1,9995:28430728,43496031:192319 -k1,9995:30186080,43496031:192318 -k1,9995:31923737,43496031:192318 -k1,9995:32583029,43496031:0 -) -(1,9996:6630773,44337519:25952256,513147,134348 -k1,9995:8516517,44337519:189017 -k1,9995:9896978,44337519:189016 -k1,9995:11595945,44337519:189017 -k1,9995:14786510,44337519:189016 -k1,9995:17832241,44337519:189017 -k1,9995:18672685,44337519:189016 -k1,9995:21485764,44337519:189017 -k1,9995:24695335,44337519:189017 -k1,9995:25693721,44337519:189016 -k1,9995:27834400,44337519:189017 -k1,9995:29739804,44337519:189016 -k1,9995:31318184,44337519:189017 -k1,9995:32583029,44337519:0 -) -(1,9996:6630773,45179007:25952256,513147,134348 -k1,9995:8021157,45179007:158307 -k1,9995:10441111,45179007:158307 -k1,9995:12574262,45179007:158551 -k1,9995:13929256,45179007:158307 -k1,9995:14502365,45179007:158266 -k1,9995:19717430,45179007:158307 -k1,9995:20976742,45179007:158307 -k1,9995:22644999,45179007:158307 -k1,9995:25853351,45179007:158306 -k1,9995:27399055,45179007:158307 -k1,9995:28576447,45179007:158307 -k1,9995:30417719,45179007:158307 -k1,9996:32583029,45179007:0 -) -] -(1,9996:32583029,45706769:0,0,0 -g1,9996:32583029,45706769 -) -) -] -(1,9996:6630773,47279633:25952256,477757,0 -(1,9996:6630773,47279633:25952256,477757,0 -(1,9996:6630773,47279633:0,0,0 -v1,9996:6630773,47279633:0,0,0 -) -g1,9996:6830002,47279633 -k1,9996:31387652,47279633:24557650 -) -) -] -h1,9996:4262630,4025873:0,0,0 -] -!14813 +(1,9986:6630773,14556498:25952256,131072,0 +r1,9986:32583029,14556498:25952256,131072,0 +g1,9986:32583029,14556498 +g1,9986:32583029,14556498 +) +(1,9988:6630773,15876399:25952256,513147,134348 +k1,9988:8596853,15876399:1966080 +k1,9987:12214495,15876399:238606 +k1,9987:15816408,15876399:238605 +k1,9987:16671052,15876399:238606 +k1,9987:18297711,15876399:238606 +k1,9987:19483967,15876399:238605 +k1,9987:22551107,15876399:238606 +k1,9987:23145573,15876399:238606 +k1,9987:24483872,15876399:238605 +k1,9987:25373906,15876399:238606 +k1,9987:25968372,15876399:238606 +k1,9987:29076143,15876399:238605 +k1,9987:29846246,15876399:238606 +k1,9987:32583029,15876399:1966080 +) +(1,9988:6630773,16717887:25952256,513147,134348 +k1,9988:8596853,16717887:1966080 +k1,9987:10057351,16717887:246116 +k1,9987:12436710,16717887:246162 +k1,9987:13954271,16717887:246163 +k1,9987:17315359,16717887:246162 +k1,9987:18093019,16717887:246163 +k1,9987:19623688,16717887:246163 +k1,9987:21084185,16717887:246115 +k1,9987:22431353,16717887:246163 +k1,9987:27629415,16717887:246162 +k1,9987:29256422,16717887:246163 +k1,9988:32583029,16717887:1966080 +) +(1,9988:6630773,17559375:25952256,513147,134348 +k1,9988:8596853,17559375:1966080 +k1,9987:12095619,17559375:207548 +k1,9987:14349201,17559375:207548 +k1,9987:14912609,17559375:207548 +k1,9987:15976713,17559375:207548 +k1,9987:16843554,17559375:207549 +k1,9987:19043396,17559375:207548 +k1,9987:21880904,17559375:207548 +k1,9987:22704490,17559375:207548 +k1,9987:24126412,17559375:207540 +k1,9987:25618466,17559375:207548 +k1,9987:26817574,17559375:207548 +k1,9987:28091393,17559375:207548 +k1,9987:28914979,17559375:207548 +k1,9987:32583029,17559375:1966080 +) +(1,9988:6630773,18400863:25952256,505283,134348 +g1,9988:8596853,18400863 +k1,9988:30616949,18400863:18673828 +g1,9988:32583029,18400863 +) +(1,9989:6630773,20028783:25952256,505283,95026 +k1,9989:25716823,20028783:19086050 +h1,9989:25716823,20028783:0,0,0 +g1,9989:28120028,20028783 +g1,9989:28769489,20028783 +g1,9989:30616949,20028783 +g1,9989:32583029,20028783 +) +(1,9990:6630773,20870271:25952256,485622,126483 +k1,9990:26098897,20870271:19468124 +h1,9989:26098897,20870271:0,0,0 +g1,9989:26657919,20870271 +g1,9989:29023112,20870271 +g1,9990:30616948,20870271 +g1,9990:32583028,20870271 +) +(1,9990:6630773,22104975:25952256,131072,0 +r1,9990:32583029,22104975:25952256,131072,0 +g1,9990:32583029,22104975 +g1,9990:34549109,22104975 +) +(1,9994:6630773,24912543:25952256,32768,229376 +(1,9994:6630773,24912543:0,32768,229376 +(1,9994:6630773,24912543:5505024,32768,229376 +r1,9994:12135797,24912543:5505024,262144,229376 +) +k1,9994:6630773,24912543:-5505024 +) +(1,9994:6630773,24912543:25952256,32768,0 +r1,9994:32583029,24912543:25952256,32768,0 +) +) +(1,9994:6630773,26516871:25952256,615776,151780 +(1,9994:6630773,26516871:1974731,582746,14155 +g1,9994:6630773,26516871 +g1,9994:8605504,26516871 +) +g1,9994:10904245,26516871 +g1,9994:11961996,26516871 +g1,9994:13695292,26516871 +k1,9994:32583029,26516871:15886712 +g1,9994:32583029,26516871 +) +(1,9997:6630773,27751575:25952256,513147,134348 +k1,9996:8347431,27751575:284041 +k1,9996:9046231,27751575:283957 +k1,9996:10521717,27751575:284041 +k1,9996:11824844,27751575:284042 +k1,9996:16663637,27751575:284041 +k1,9996:20020006,27751575:284041 +k1,9996:23214502,27751575:284042 +k1,9996:26443076,27751575:284041 +k1,9996:27488646,27751575:284042 +k1,9996:30245360,27751575:284041 +k1,9996:32583029,27751575:0 +) +(1,9997:6630773,28593063:25952256,513147,134348 +k1,9996:8577907,28593063:195357 +k1,9996:11799062,28593063:195358 +k1,9996:12942070,28593063:195357 +k1,9996:17373019,28593063:195357 +k1,9996:19131410,28593063:195357 +k1,9996:20523455,28593063:195358 +k1,9996:21133651,28593063:195353 +k1,9996:25110435,28593063:195357 +k1,9996:27976384,28593063:195357 +k1,9996:28527602,28593063:195358 +k1,9996:31648486,28593063:195357 +k1,9996:32583029,28593063:0 +) +(1,9997:6630773,29434551:25952256,513147,126483 +k1,9996:7499423,29434551:209358 +k1,9996:10734577,29434551:209357 +k1,9996:12135380,29434551:209358 +k1,9996:15421653,29434551:209358 +k1,9996:16915516,29434551:209357 +k1,9996:18806528,29434551:209358 +k1,9996:19782001,29434551:209357 +k1,9996:21010444,29434551:209358 +k1,9996:22940777,29434551:209358 +k1,9996:24539497,29434551:209357 +k1,9996:29004763,29434551:209358 +k1,9996:32583029,29434551:0 +) +(1,9997:6630773,30276039:25952256,513147,126483 +k1,9996:8748003,30276039:242900 +k1,9996:12016700,30276039:242900 +k1,9996:13734816,30276039:242901 +k1,9996:15873673,30276039:242900 +k1,9996:17308018,30276039:242900 +k1,9996:22132540,30276039:242900 +k1,9996:25308831,30276039:242900 +k1,9996:26276559,30276039:242900 +k1,9996:27899648,30276039:242901 +k1,9996:30322931,30276039:242900 +k1,9996:31313597,30276039:242900 +k1,9997:32583029,30276039:0 +) +(1,9997:6630773,31117527:25952256,513147,134348 +k1,9996:8847091,31117527:259413 +k1,9996:11149262,31117527:259414 +k1,9996:13100815,31117527:259413 +k1,9996:14019520,31117527:259413 +k1,9996:15787573,31117527:259414 +k1,9996:19485005,31117527:259413 +k1,9996:21800282,31117527:259413 +k1,9996:23078781,31117527:259414 +k1,9996:24430679,31117527:259413 +k1,9996:25349384,31117527:259413 +k1,9996:29326000,31117527:259414 +k1,9996:31966991,31117527:259413 +k1,9996:32583029,31117527:0 +) +(1,9997:6630773,31959015:25952256,505283,134348 +k1,9996:10616782,31959015:256355 +k1,9996:13957260,31959015:256354 +k1,9996:14841450,31959015:256355 +k1,9996:16116890,31959015:256355 +k1,9996:18779072,31959015:256355 +k1,9996:21453049,31959015:256354 +k1,9996:22577756,31959015:256355 +k1,9996:24011138,31959015:256355 +k1,9996:24880255,31959015:256355 +k1,9996:28448800,31959015:256355 +k1,9996:29724239,31959015:256354 +k1,9996:31263789,31959015:256355 +k1,9997:32583029,31959015:0 +) +(1,9997:6630773,32800503:25952256,513147,134348 +k1,9996:8507845,32800503:221633 +k1,9996:12222547,32800503:221633 +k1,9996:13205707,32800503:221632 +k1,9996:14446425,32800503:221633 +k1,9996:16269758,32800503:221633 +k1,9996:18991590,32800503:221633 +k1,9996:19872514,32800503:221632 +k1,9996:21790874,32800503:221633 +k1,9996:25742161,32800503:221633 +k1,9996:26378614,32800503:221610 +k1,9996:29672575,32800503:221633 +k1,9996:32583029,32800503:0 +) +(1,9997:6630773,33641991:25952256,513147,134348 +k1,9996:8947774,33641991:149725 +k1,9996:9710260,33641991:149724 +k1,9996:12743569,33641991:149725 +k1,9996:15387593,33641991:149724 +k1,9996:18809531,33641991:149725 +k1,9996:20115965,33641991:149724 +k1,9996:22310413,33641991:149725 +k1,9996:23072899,33641991:149724 +k1,9996:24241709,33641991:149725 +k1,9996:26964376,33641991:149724 +k1,9996:27773393,33641991:149725 +k1,9996:30602884,33641991:149724 +k1,9996:31368647,33641991:149725 +k1,9997:32583029,33641991:0 +) +(1,9997:6630773,34483479:25952256,505283,126483 +k1,9996:8149079,34483479:177439 +k1,9996:9894794,34483479:177438 +k1,9996:11402614,34483479:177439 +k1,9996:12448404,34483479:177438 +k1,9996:13730125,34483479:177439 +k1,9996:17500247,34483479:177438 +k1,9996:19067049,34483479:177439 +k1,9996:19860526,34483479:177439 +k1,9996:20626477,34483479:177438 +k1,9996:22678246,34483479:177439 +k1,9996:27428786,34483479:177438 +k1,9996:30867296,34483479:177439 +k1,9997:32583029,34483479:0 +) +(1,9997:6630773,35324967:25952256,505283,134348 +k1,9996:8200275,35324967:161789 +k1,9996:10514266,35324967:161789 +k1,9996:11695140,35324967:161789 +k1,9996:12271735,35324967:161752 +k1,9996:15275820,35324967:161789 +k1,9996:16503879,35324967:161788 +k1,9996:18041269,35324967:161789 +k1,9996:18964586,35324967:161789 +k1,9996:21313967,35324967:161789 +k1,9996:22758951,35324967:161789 +k1,9996:25475989,35324967:161789 +k1,9996:26289206,35324967:161789 +k1,9996:26909092,35324967:161789 +k1,9996:28143050,35324967:161789 +k1,9996:29066367,35324967:161789 +k1,9996:32583029,35324967:0 +) +(1,9997:6630773,36166455:25952256,513147,134348 +k1,9996:8064992,36166455:151024 +k1,9996:9784293,36166455:151024 +k1,9996:10594609,36166455:151024 +k1,9996:14924864,36166455:151024 +k1,9996:18561747,36166455:151023 +k1,9996:22992927,36166455:151024 +k1,9996:26216934,36166455:151024 +k1,9996:27651153,36166455:151024 +k1,9996:31635378,36166455:151024 +k1,9996:32583029,36166455:0 +) +(1,9997:6630773,37007943:25952256,505283,126483 +g1,9996:8219365,37007943 +k1,9997:32583029,37007943:19934086 +g1,9997:32583029,37007943 +) +(1,9998:6630773,39815511:25952256,32768,229376 +(1,9998:6630773,39815511:0,32768,229376 +(1,9998:6630773,39815511:5505024,32768,229376 +r1,9998:12135797,39815511:5505024,262144,229376 +) +k1,9998:6630773,39815511:-5505024 +) +(1,9998:6630773,39815511:25952256,32768,0 +r1,9998:32583029,39815511:25952256,32768,0 +) +) +(1,9998:6630773,41419839:25952256,606339,14155 +(1,9998:6630773,41419839:1974731,582746,14155 +g1,9998:6630773,41419839 +g1,9998:8605504,41419839 +) +k1,9998:32583029,41419839:19020644 +g1,9998:32583029,41419839 +) +(1,10001:6630773,42654543:25952256,513147,134348 +k1,10000:7750545,42654543:359554 +k1,10000:10512650,42654543:359555 +k1,10000:13626682,42654543:359554 +k1,10000:16907831,42654543:359554 +k1,10000:18437858,42654543:359554 +k1,10000:20272628,42654543:359555 +k1,10000:22966574,42654543:359554 +k1,10000:25769310,42654543:359554 +k1,10000:28621198,42654543:359554 +k1,10000:30374704,42654543:359555 +k1,10000:32168186,42654543:359554 +k1,10001:32583029,42654543:0 +) +(1,10001:6630773,43496031:25952256,513147,134348 +k1,10000:9192247,43496031:154992 +k1,10000:12305535,43496031:154993 +k1,10000:15486324,43496031:154992 +k1,10000:16832762,43496031:154993 +k1,10000:20064669,43496031:154992 +k1,10000:21167312,43496031:154992 +k1,10000:23582642,43496031:154993 +k1,10000:24929079,43496031:154992 +k1,10000:29319664,43496031:154993 +k1,10000:31037690,43496031:154992 +k1,10000:32583029,43496031:0 +) +(1,10001:6630773,44337519:25952256,513147,134348 +k1,10000:7529544,44337519:239479 +k1,10000:9465751,44337519:239480 +k1,10000:10896675,44337519:239479 +k1,10000:12646104,44337519:239479 +k1,10000:15887133,44337519:239480 +k1,10000:18983326,44337519:239479 +k1,10000:19874233,44337519:239479 +k1,10000:22737775,44337519:239480 +k1,10000:25997808,44337519:239479 +k1,10000:27046657,44337519:239479 +k1,10000:29237799,44337519:239480 +k1,10000:31193666,44337519:239479 +k1,10000:32583029,44337519:0 +) +(1,10001:6630773,45179007:25952256,513147,134348 +k1,10000:8132543,45179007:236925 +(1,10000:8339637,45179007:3955753,513147,11795 +) +k1,10000:12913305,45179007:237151 +k1,10000:14346917,45179007:236925 +k1,10000:14998647,45179007:236887 +k1,10000:20292331,45179007:236926 +k1,10000:21630261,45179007:236925 +k1,10000:23377136,45179007:236925 +k1,10000:26664107,45179007:236925 +k1,10000:28288429,45179007:236925 +k1,10000:29544439,45179007:236925 +k1,10000:31464329,45179007:236925 +k1,10001:32583029,45179007:0 +) +] +(1,10001:32583029,45706769:0,0,0 +g1,10001:32583029,45706769 +) +) +] +(1,10001:6630773,47279633:25952256,477757,0 +(1,10001:6630773,47279633:25952256,477757,0 +(1,10001:6630773,47279633:0,0,0 +v1,10001:6630773,47279633:0,0,0 +) +g1,10001:6830002,47279633 +k1,10001:31387652,47279633:24557650 +) +) +] +h1,10001:4262630,4025873:0,0,0 +] +!14930 }188 -Input:1252:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1253:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1254:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1255:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1256:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1257:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1258:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1259:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1260:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 +Input:1248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 {189 -[1,10006:4262630,47279633:28320399,43253760,0 -(1,10006:4262630,4025873:0,0,0 -[1,10006:-473657,4025873:25952256,0,0 -(1,10006:-473657,-710414:25952256,0,0 -h1,10006:-473657,-710414:0,0,0 -(1,10006:-473657,-710414:0,0,0 -(1,10006:-473657,-710414:0,0,0 -g1,10006:-473657,-710414 -(1,10006:-473657,-710414:65781,0,65781 -g1,10006:-407876,-710414 -[1,10006:-407876,-644633:0,0,0 +[1,10011:4262630,47279633:28320399,43253760,0 +(1,10011:4262630,4025873:0,0,0 +[1,10011:-473657,4025873:25952256,0,0 +(1,10011:-473657,-710414:25952256,0,0 +h1,10011:-473657,-710414:0,0,0 +(1,10011:-473657,-710414:0,0,0 +(1,10011:-473657,-710414:0,0,0 +g1,10011:-473657,-710414 +(1,10011:-473657,-710414:65781,0,65781 +g1,10011:-407876,-710414 +[1,10011:-407876,-644633:0,0,0 ] ) -k1,10006:-473657,-710414:-65781 +k1,10011:-473657,-710414:-65781 ) ) -k1,10006:25478599,-710414:25952256 -g1,10006:25478599,-710414 +k1,10011:25478599,-710414:25952256 +g1,10011:25478599,-710414 ) ] ) -[1,10006:6630773,47279633:25952256,43253760,0 -[1,10006:6630773,4812305:25952256,786432,0 -(1,10006:6630773,4812305:25952256,513147,134348 -(1,10006:6630773,4812305:25952256,513147,134348 -g1,10006:3078558,4812305 -[1,10006:3078558,4812305:0,0,0 -(1,10006:3078558,2439708:0,1703936,0 -k1,10006:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10006:2537886,2439708:1179648,16384,0 +[1,10011:6630773,47279633:25952256,43253760,0 +[1,10011:6630773,4812305:25952256,786432,0 +(1,10011:6630773,4812305:25952256,513147,134348 +(1,10011:6630773,4812305:25952256,513147,134348 +g1,10011:3078558,4812305 +[1,10011:3078558,4812305:0,0,0 +(1,10011:3078558,2439708:0,1703936,0 +k1,10011:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10011:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10006:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10011:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10006:3078558,4812305:0,0,0 -(1,10006:3078558,2439708:0,1703936,0 -g1,10006:29030814,2439708 -g1,10006:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10006:36151628,1915420:16384,1179648,0 +[1,10011:3078558,4812305:0,0,0 +(1,10011:3078558,2439708:0,1703936,0 +g1,10011:29030814,2439708 +g1,10011:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10011:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10006:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10011:37855564,2439708:1179648,16384,0 ) ) -k1,10006:3078556,2439708:-34777008 +k1,10011:3078556,2439708:-34777008 ) ] -[1,10006:3078558,4812305:0,0,0 -(1,10006:3078558,49800853:0,16384,2228224 -k1,10006:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10006:2537886,49800853:1179648,16384,0 +[1,10011:3078558,4812305:0,0,0 +(1,10011:3078558,49800853:0,16384,2228224 +k1,10011:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10011:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10006:3078558,51504789:16384,1179648,0 -) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10011:3078558,51504789:16384,1179648,0 +) +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) -) -) -] -[1,10006:3078558,4812305:0,0,0 -(1,10006:3078558,49800853:0,16384,2228224 -g1,10006:29030814,49800853 -g1,10006:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10006:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10006:37855564,49800853:1179648,16384,0 -) -) -k1,10006:3078556,49800853:-34777008 -) -] -g1,10006:6630773,4812305 -k1,10006:25241686,4812305:17415536 -g1,10006:26807341,4812305 -g1,10006:30339731,4812305 -g1,10006:31154998,4812305 -) -) -] -[1,10006:6630773,45706769:25952256,40108032,0 -(1,10006:6630773,45706769:25952256,40108032,0 -(1,10006:6630773,45706769:0,0,0 -g1,10006:6630773,45706769 -) -[1,10006:6630773,45706769:25952256,40108032,0 -(1,9996:6630773,6254097:25952256,513147,126483 -k1,9995:8730481,6254097:172294 -k1,9995:9518813,6254097:172294 -k1,9995:13940461,6254097:172294 -k1,9995:15304200,6254097:172294 -k1,9995:20214747,6254097:172294 -k1,9995:23018313,6254097:172295 -k1,9995:23806645,6254097:172294 -k1,9995:27385500,6254097:172294 -k1,9995:28658799,6254097:172294 -k1,9995:31274275,6254097:172294 -k1,9996:32583029,6254097:0 -) -(1,9996:6630773,7095585:25952256,513147,134348 -k1,9995:8414108,7095585:197364 -k1,9995:10970114,7095585:197365 -k1,9995:14745088,7095585:197364 -k1,9995:17677269,7095585:197364 -k1,9995:18636162,7095585:197365 -k1,9995:19852611,7095585:197364 -k1,9995:22485294,7095585:197365 -k1,9995:24771290,7095585:197364 -k1,9995:25635810,7095585:197364 -k1,9995:26248016,7095585:197363 -k1,9995:27658451,7095585:197364 -k1,9995:30504126,7095585:197365 -k1,9995:31773659,7095585:197364 -k1,9995:32583029,7095585:0 -) -(1,9996:6630773,7937073:25952256,513147,126483 -k1,9995:7859976,7937073:210118 -k1,9995:9772065,7937073:210119 -k1,9995:11762141,7937073:210118 -k1,9995:12991345,7937073:210119 -k1,9995:14470240,7937073:210118 -k1,9995:15339651,7937073:210119 -k1,9995:16939132,7937073:210118 -k1,9995:18414096,7937073:210119 -k1,9995:19725219,7937073:210118 -k1,9995:21221154,7937073:210119 -k1,9995:24644502,7937073:210118 -k1,9995:26571664,7937073:210119 -k1,9995:30511436,7937073:210118 -k1,9996:32583029,7937073:0 -) -(1,9996:6630773,8778561:25952256,513147,134348 -k1,9995:7953945,8778561:271319 -k1,9995:9700479,8778561:271319 -k1,9995:11916906,8778561:271318 -k1,9995:12800987,8778561:271319 -k1,9995:16344519,8778561:271319 -k1,9995:20691522,8778561:271319 -k1,9995:21724369,8778561:271319 -k1,9995:24187866,8778561:271318 -k1,9995:25268555,8778561:271319 -k1,9995:28302217,8778561:271319 -k1,9995:32583029,8778561:0 -) -(1,9996:6630773,9620049:25952256,513147,126483 -g1,9995:9465205,9620049 -g1,9995:12565057,9620049 -g1,9995:14630751,9620049 -g1,9995:16021425,9620049 -g1,9995:19244485,9620049 -g1,9995:20886161,9620049 -g1,9995:22598616,9620049 -g1,9995:23745496,9620049 -g1,9995:25378653,9620049 -k1,9996:32583029,9620049:6615863 -g1,9996:32583029,9620049 -) -(1,9998:6630773,10461537:25952256,513147,134348 -h1,9997:6630773,10461537:983040,0,0 -k1,9997:10433172,10461537:284426 -k1,9997:14227706,10461537:284427 -k1,9997:15043629,10461537:284426 -k1,9997:16347140,10461537:284426 -k1,9997:17966535,10461537:284427 -k1,9997:20912378,10461537:284426 -k1,9997:21856096,10461537:284426 -k1,9997:22911225,10461537:284426 -k1,9997:26582553,10461537:284427 -k1,9997:31923737,10461537:284426 -k1,9997:32583029,10461537:0 -) -(1,9998:6630773,11303025:25952256,513147,134348 -k1,9997:8270584,11303025:250448 -k1,9997:10868533,11303025:250449 -k1,9997:12403487,11303025:250448 -k1,9997:16084745,11303025:250448 -k1,9997:17354279,11303025:250449 -k1,9997:19471192,11303025:250448 -k1,9997:20380932,11303025:250448 -k1,9997:24066777,11303025:250448 -k1,9997:25264877,11303025:250449 -k1,9997:27086223,11303025:250448 -k1,9997:28726034,11303025:250448 -k1,9997:30241328,11303025:250449 -k1,9997:32227169,11303025:250448 -k1,9997:32583029,11303025:0 -) -(1,9998:6630773,12144513:25952256,505283,134348 -k1,9997:8106589,12144513:192621 -k1,9997:11489503,12144513:192621 -k1,9997:12873570,12144513:192622 -k1,9997:16000893,12144513:192621 -k1,9997:16549374,12144513:192621 -k1,9997:18025190,12144513:192621 -k1,9997:20475527,12144513:192622 -k1,9997:21621697,12144513:192621 -k1,9997:23583135,12144513:192621 -k1,9997:24823021,12144513:192621 -k1,9997:26300149,12144513:192622 -k1,9997:29072922,12144513:192621 -k1,9997:32583029,12144513:0 -) -(1,9998:6630773,12986001:25952256,513147,134348 -k1,9997:7452469,12986001:290199 -k1,9997:9597338,12986001:290200 -k1,9997:10696907,12986001:290199 -k1,9997:11342967,12986001:290200 -k1,9997:14835910,12986001:290199 -k1,9997:15785402,12986001:290200 -k1,9997:17765119,12986001:290199 -k1,9997:19339824,12986001:290199 -k1,9997:20161521,12986001:290200 -k1,9997:23214063,12986001:290199 -k1,9997:25071884,12986001:290200 -k1,9997:26646589,12986001:290199 -k1,9997:27552827,12986001:290200 -k1,9997:28862111,12986001:290199 -k1,9997:29567062,12986001:290108 -k1,9997:32583029,12986001:0 -) -(1,9998:6630773,13827489:25952256,513147,126483 -k1,9997:8081172,13827489:253712 -k1,9997:12285393,13827489:253711 -k1,9997:13155143,13827489:253712 -k1,9997:14612096,13827489:253712 -k1,9997:16232889,13827489:253712 -k1,9997:17587605,13827489:253711 -k1,9997:19351267,13827489:253712 -k1,9997:20624064,13827489:253712 -k1,9997:21970261,13827489:253712 -k1,9997:22883264,13827489:253711 -k1,9997:23492836,13827489:253712 -k1,9997:24959619,13827489:253712 -k1,9997:27864918,13827489:253712 -k1,9997:30376344,13827489:253711 -k1,9997:31821501,13827489:253712 -k1,9997:32583029,13827489:0 -) -(1,9998:6630773,14668977:25952256,513147,134348 -k1,9997:10172448,14668977:285846 -k1,9997:11109722,14668977:285846 -k1,9997:12495263,14668977:285847 -k1,9997:13542637,14668977:285846 -k1,9997:16807750,14668977:285846 -k1,9997:17752888,14668977:285846 -k1,9997:21441363,14668977:285846 -k1,9997:24054392,14668977:285846 -k1,9997:24999531,14668977:285847 -k1,9997:26046905,14668977:285846 -k1,9997:28016371,14668977:285846 -k1,9997:31563944,14668977:285846 -k1,9997:32583029,14668977:0 -) -(1,9998:6630773,15510465:25952256,513147,134348 -g1,9997:11783868,15510465 -g1,9997:12642389,15510465 -g1,9997:13860703,15510465 -g1,9997:16185265,15510465 -g1,9997:17043786,15510465 -g1,9997:18739202,15510465 -g1,9997:21542176,15510465 -g1,9997:23024600,15510465 -k1,9998:32583029,15510465:6358961 -g1,9998:32583029,15510465 -) -(1,10000:6630773,16351953:25952256,513147,134348 -h1,9999:6630773,16351953:983040,0,0 -k1,9999:9658060,16351953:261012 -k1,9999:10274932,16351953:261012 -k1,9999:14599831,16351953:261012 -k1,9999:17528814,16351953:261012 -k1,9999:18145686,16351953:261012 -k1,9999:20127018,16351953:261012 -k1,9999:21047322,16351953:261012 -k1,9999:24586445,16351953:261012 -k1,9999:28425723,16351953:261012 -k1,9999:29152696,16351953:261012 -k1,9999:31149101,16351953:261012 -k1,10000:32583029,16351953:0 -) -(1,10000:6630773,17193441:25952256,505283,126483 -k1,9999:7433220,17193441:213934 -k1,9999:8515506,17193441:213934 -k1,9999:9833722,17193441:213934 -k1,9999:11903636,17193441:213934 -k1,9999:13734999,17193441:213934 -k1,9999:14561695,17193441:213934 -k1,9999:16227251,17193441:213934 -k1,9999:17796470,17193441:213934 -k1,9999:18626442,17193441:213934 -k1,9999:19859461,17193441:213934 -k1,9999:24137282,17193441:213934 -k1,9999:25370301,17193441:213934 -k1,9999:28362962,17193441:213934 -k1,9999:30257239,17193441:213934 -k1,9999:31087211,17193441:213934 -k1,9999:31657005,17193441:213934 -k1,10000:32583029,17193441:0 -) -(1,10000:6630773,18034929:25952256,513147,126483 -k1,9999:8872377,18034929:269626 -k1,9999:9824888,18034929:269626 -k1,9999:11443900,18034929:269626 -k1,9999:14384773,18034929:269626 -k1,9999:17349895,18034929:269626 -k1,9999:19223187,18034929:269626 -k1,9999:20689500,18034929:269626 -k1,9999:22265259,18034929:269626 -k1,9999:25519395,18034929:269626 -k1,9999:26320518,18034929:269626 -k1,9999:29229279,18034929:269626 -k1,9999:30571074,18034929:269626 -k1,9999:32583029,18034929:0 -) -(1,10000:6630773,18876417:25952256,513147,126483 -k1,9999:9619870,18876417:268042 -k1,9999:12222960,18876417:268042 -k1,9999:15598720,18876417:268043 -k1,9999:16332723,18876417:268042 -k1,9999:19112105,18876417:268042 -k1,9999:21448463,18876417:268042 -k1,9999:22708065,18876417:268042 -k1,9999:24942187,18876417:268042 -k1,9999:27619333,18876417:268043 -k1,9999:29084062,18876417:268042 -k1,9999:31593435,18876417:268042 -k1,10000:32583029,18876417:0 -) -(1,10000:6630773,19717905:25952256,513147,134348 -k1,9999:9052469,19717905:213788 -k1,9999:12039740,19717905:213787 -k1,9999:13607502,19717905:213788 -k1,9999:16305105,19717905:213788 -k1,9999:17564847,19717905:213787 -k1,9999:19190936,19717905:213788 -k1,9999:20090886,19717905:213788 -k1,9999:21838871,19717905:213787 -k1,9999:22738821,19717905:213788 -k1,9999:24607392,19717905:213787 -k1,9999:25352677,19717905:213788 -k1,9999:27216662,19717905:213788 -k1,9999:28872896,19717905:213787 -k1,9999:30243394,19717905:213788 -k1,9999:32583029,19717905:0 -) -(1,10000:6630773,20559393:25952256,513147,126483 -k1,9999:8442541,20559393:175989 -k1,9999:11595176,20559393:175990 -k1,9999:12422593,20559393:175989 -k1,9999:13864738,20559393:175989 -k1,9999:14811431,20559393:175990 -k1,9999:18374321,20559393:175989 -k1,9999:20634355,20559393:175989 -k1,9999:22285559,20559393:175989 -k1,9999:25516837,20559393:175990 -k1,9999:26711911,20559393:175989 -k1,9999:29389409,20559393:175989 -k1,9999:30224691,20559393:175990 -k1,9999:31790043,20559393:175989 -k1,10000:32583029,20559393:0 -) -(1,10000:6630773,21400881:25952256,513147,134348 -k1,9999:7871366,21400881:191361 -k1,9999:9630348,21400881:191361 -k1,9999:11273987,21400881:191361 -k1,9999:13298390,21400881:191361 -k1,9999:17177462,21400881:191361 -k1,9999:18560267,21400881:191360 -k1,9999:21112890,21400881:191361 -k1,9999:23278898,21400881:191408 -k1,9999:27655388,21400881:191361 -k1,9999:29131255,21400881:191361 -k1,9999:29780713,21400881:191361 -k1,9999:31073079,21400881:191361 -k1,9999:32583029,21400881:0 -) -(1,10000:6630773,22242369:25952256,513147,134348 -k1,9999:9433899,22242369:173166 -k1,9999:10258493,22242369:173166 -k1,9999:12046466,22242369:173166 -k1,9999:15130086,22242369:173166 -k1,9999:16587758,22242369:173166 -k1,9999:18721761,22242369:173166 -k1,9999:19914013,22242369:173167 -k1,9999:23164094,22242369:173166 -k1,9999:25635608,22242369:173166 -k1,9999:26460202,22242369:173166 -k1,9999:28431021,22242369:173166 -k1,9999:29807428,22242369:173166 -k1,9999:31263789,22242369:173166 -k1,10000:32583029,22242369:0 -) -(1,10000:6630773,23083857:25952256,513147,134348 -k1,9999:7823227,23083857:214657 -k1,9999:8689311,23083857:214656 -k1,9999:9318796,23083857:214642 -k1,9999:10064949,23083857:214656 -k1,9999:10635466,23083857:214657 -k1,9999:14033207,23083857:214657 -k1,9999:14899292,23083857:214657 -k1,9999:15902346,23083857:214656 -k1,9999:19091027,23083857:214657 -k1,9999:20497129,23083857:214657 -k1,9999:24774363,23083857:214657 -k1,9999:26339061,23083857:214656 -k1,9999:29637842,23083857:214657 -k1,9999:32583029,23083857:0 -) -(1,10000:6630773,23925345:25952256,513147,126483 -g1,9999:8021447,23925345 -g1,9999:10557033,23925345 -g1,9999:12717099,23925345 -g1,9999:15993243,23925345 -g1,9999:17140123,23925345 -g1,9999:20797031,23925345 -k1,10000:32583029,23925345:9528283 -g1,10000:32583029,23925345 -) -(1,10002:6630773,24766833:25952256,513147,126483 -h1,10001:6630773,24766833:983040,0,0 -k1,10001:8291822,24766833:190421 -k1,10001:11244595,24766833:190430 -k1,10001:13479748,24766833:190430 -k1,10001:14329470,24766833:190430 -k1,10001:15538985,24766833:190430 -k1,10001:16144250,24766833:190422 -k1,10001:18418725,24766833:190430 -k1,10001:19140652,24766833:190430 -k1,10001:22545623,24766833:190430 -k1,10001:23395345,24766833:190430 -k1,10001:26539483,24766833:190430 -k1,10001:28297534,24766833:190430 -k1,10001:29811791,24766833:190430 -k1,10001:31193666,24766833:190430 -k1,10001:32583029,24766833:0 -) -(1,10002:6630773,25608321:25952256,513147,126483 -k1,10001:9022915,25608321:185545 -k1,10001:9969988,25608321:185545 -k1,10001:12067218,25608321:185545 -k1,10001:13685380,25608321:185545 -k1,10001:14285755,25608321:185532 -k1,10001:17231676,25608321:185545 -k1,10001:18589660,25608321:185545 -k1,10001:21537548,25608321:185545 -k1,10001:24800008,25608321:185545 -k1,10001:25933205,25608321:185546 -k1,10001:27495661,25608321:185545 -(1,10001:27495661,25608321:0,459977,115847 -r1,10001:27853927,25608321:358266,575824,115847 -k1,10001:27495661,25608321:-358266 -) -(1,10001:27495661,25608321:358266,459977,115847 -k1,10001:27495661,25608321:3277 -h1,10001:27850650,25608321:0,411205,112570 -) -k1,10001:28039472,25608321:185545 -k1,10001:29416462,25608321:185545 -(1,10001:29416462,25608321:0,452978,115847 -r1,10001:30829863,25608321:1413401,568825,115847 -k1,10001:29416462,25608321:-1413401 -) -(1,10001:29416462,25608321:1413401,452978,115847 -k1,10001:29416462,25608321:3277 -h1,10001:30826586,25608321:0,411205,112570 -) -k1,10001:31189078,25608321:185545 -k1,10001:32583029,25608321:0 -) -(1,10002:6630773,26449809:25952256,513147,126483 -k1,10001:9697918,26449809:304802 -k1,10001:12260435,26449809:304802 -k1,10001:14439566,26449809:304801 -k1,10001:15916807,26449809:304802 -k1,10001:19298524,26449809:304802 -k1,10001:20889142,26449809:304802 -k1,10001:22937202,26449809:304802 -k1,10001:23858042,26449809:304802 -k1,10001:25493224,26449809:304801 -k1,10001:29205243,26449809:304802 -k1,10001:31591469,26449809:304802 -k1,10001:32583029,26449809:0 -) -(1,10002:6630773,27291297:25952256,513147,134348 -k1,10001:9600108,27291297:216168 -k1,10001:12351209,27291297:216168 -k1,10001:14729409,27291297:216168 -k1,10001:16729467,27291297:216168 -k1,10001:18148876,27291297:216168 -k1,10001:20449089,27291297:216168 -k1,10001:21612907,27291297:216167 -k1,10001:22599778,27291297:216168 -k1,10001:26202847,27291297:216168 -k1,10001:27070443,27291297:216168 -k1,10001:28720539,27291297:216168 -k1,10001:29855522,27291297:216168 -k1,10001:31461053,27291297:216168 -k1,10002:32583029,27291297:0 -) -(1,10002:6630773,28132785:25952256,513147,134348 -k1,10001:8329617,28132785:227561 -k1,10001:10162155,28132785:227561 -k1,10001:12265356,28132785:227561 -k1,10001:12848778,28132785:227562 -k1,10001:14359534,28132785:227561 -k1,10001:16671140,28132785:227561 -k1,10001:18910656,28132785:227561 -k1,10001:20421412,28132785:227561 -k1,10001:24724657,28132785:227561 -k1,10001:25564981,28132785:227562 -k1,10001:26811627,28132785:227561 -k1,10001:29612131,28132785:227561 -k1,10001:30498984,28132785:227561 -k1,10001:32583029,28132785:0 -) -(1,10002:6630773,28974273:25952256,513147,134348 -k1,10001:11676156,28974273:220622 -k1,10001:13290729,28974273:220622 -k1,10001:14945279,28974273:220622 -k1,10001:15580723,28974273:220601 -k1,10001:18059060,28974273:220622 -k1,10001:20684198,28974273:220622 -k1,10001:21564112,28974273:220622 -k1,10001:23339903,28974273:220622 -(1,10001:23339903,28974273:0,452978,115847 -r1,10001:24753304,28974273:1413401,568825,115847 -k1,10001:23339903,28974273:-1413401 -) -(1,10001:23339903,28974273:1413401,452978,115847 -k1,10001:23339903,28974273:3277 -h1,10001:24750027,28974273:0,411205,112570 -) -k1,10001:24973927,28974273:220623 -k1,10001:26698600,28974273:220622 -k1,10001:28205038,28974273:220622 -k1,10001:29196363,28974273:220622 -k1,10001:31931601,28974273:220622 -k1,10001:32583029,28974273:0 -) -(1,10002:6630773,29815761:25952256,513147,134348 -k1,10001:9484429,29815761:224352 -k1,10001:13784464,29815761:224351 -k1,10001:17189934,29815761:224352 -k1,10001:18065714,29815761:224352 -k1,10001:20579893,29815761:224351 -k1,10001:21463537,29815761:224352 -k1,10001:23243058,29815761:224352 -(1,10001:23243058,29815761:0,459977,115847 -r1,10001:27470154,29815761:4227096,575824,115847 -k1,10001:23243058,29815761:-4227096 -) -(1,10001:23243058,29815761:4227096,459977,115847 -k1,10001:23243058,29815761:3277 -h1,10001:27466877,29815761:0,411205,112570 -) -k1,10001:27868176,29815761:224352 -k1,10001:28507345,29815761:224326 -k1,10001:32583029,29815761:0 -) -(1,10002:6630773,30657249:25952256,513147,134348 -k1,10001:8000773,30657249:268995 -k1,10001:11319815,30657249:268996 -k1,10001:12204848,30657249:268995 -k1,10001:14462205,30657249:268995 -k1,10001:17283173,30657249:268996 -k1,10001:18743613,30657249:268995 -k1,10001:22096733,30657249:268996 -k1,10001:23832424,30657249:268995 -k1,10001:26371586,30657249:268995 -k1,10001:30716266,30657249:268996 -k1,10001:31516758,30657249:268995 -k1,10001:32583029,30657249:0 -) -(1,10002:6630773,31498737:25952256,513147,134348 -k1,10001:7846869,31498737:197011 -k1,10001:9871024,31498737:197011 -k1,10001:13430032,31498737:197011 -k1,10001:14436413,31498737:197011 -k1,10001:15652509,31498737:197011 -k1,10001:19254115,31498737:197011 -k1,10001:20642572,31498737:197012 -k1,10001:22402617,31498737:197011 -k1,10001:24455608,31498737:197011 -k1,10001:25571434,31498737:197011 -k1,10001:27157808,31498737:197011 -k1,10001:29561416,31498737:197011 -k1,10001:30441312,31498737:197011 -k1,10001:32583029,31498737:0 -) -(1,10002:6630773,32340225:25952256,513147,126483 -g1,10001:9454064,32340225 -k1,10002:32583030,32340225:21058028 -g1,10002:32583030,32340225 -) -(1,10004:6630773,33181713:25952256,513147,126483 -h1,10003:6630773,33181713:983040,0,0 -k1,10003:9242418,33181713:195988 -k1,10003:9853245,33181713:195984 -k1,10003:12744729,33181713:195988 -(1,10003:12744729,33181713:0,452978,115847 -r1,10003:15564978,33181713:2820249,568825,115847 -k1,10003:12744729,33181713:-2820249 -) -(1,10003:12744729,33181713:2820249,452978,115847 -k1,10003:12744729,33181713:3277 -h1,10003:15561701,33181713:0,411205,112570 -) -k1,10003:15760966,33181713:195988 -k1,10003:17057959,33181713:195988 -k1,10003:18024650,33181713:195988 -k1,10003:20771299,33181713:195988 -k1,10003:23225002,33181713:195988 -k1,10003:24107151,33181713:195987 -k1,10003:24761236,33181713:195988 -k1,10003:27927971,33181713:195988 -k1,10003:29143044,33181713:195988 -k1,10003:32583029,33181713:0 -) -(1,10004:6630773,34023201:25952256,513147,134348 -k1,10003:9088046,34023201:251986 -k1,10003:10026194,34023201:251986 -k1,10003:11297264,34023201:251985 -k1,10003:13790581,34023201:251986 -k1,10003:17114895,34023201:251986 -k1,10003:19376870,34023201:251986 -k1,10003:20647940,34023201:251985 -k1,10003:24425763,34023201:251986 -k1,10003:25337041,34023201:251986 -k1,10003:26608112,34023201:251986 -k1,10003:28249460,34023201:251985 -k1,10003:30377742,34023201:251986 -k1,10003:32583029,34023201:0 -) -(1,10004:6630773,34864689:25952256,513147,134348 -k1,10003:7610162,34864689:293227 -k1,10003:8691786,34864689:293226 -k1,10003:10291146,34864689:293227 -k1,10003:13656701,34864689:293227 -k1,10003:15182004,34864689:293226 -h1,10003:17123180,34864689:0,0,0 -k1,10003:17416407,34864689:293227 -k1,10003:18519004,34864689:293227 -k1,10003:20310383,34864689:293226 -h1,10003:21107301,34864689:0,0,0 -k1,10003:21781292,34864689:293227 -k1,10003:23455362,34864689:293226 -k1,10003:25469564,34864689:293227 -k1,10003:27791786,34864689:293227 -k1,10003:28697774,34864689:293226 -k1,10003:30010086,34864689:293227 -k1,10003:32583029,34864689:0 -) -(1,10004:6630773,35706177:25952256,513147,134348 -k1,10003:7541559,35706177:251494 -k1,10003:11054781,35706177:251495 -k1,10003:12325360,35706177:251494 -k1,10003:13789270,35706177:251494 -k1,10003:14700057,35706177:251495 -k1,10003:16645001,35706177:251494 -k1,10003:17582657,35706177:251494 -k1,10003:18595680,35706177:251495 -k1,10003:21249724,35706177:251494 -k1,10003:22520303,35706177:251494 -k1,10003:23871491,35706177:251494 -k1,10003:24774414,35706177:251495 -k1,10003:27279691,35706177:251494 -k1,10003:27989282,35706177:251494 -k1,10003:28772274,35706177:251495 -k1,10003:30090039,35706177:251494 -k1,10003:32583029,35706177:0 -) -(1,10004:6630773,36547665:25952256,513147,115847 -k1,10003:8729763,36547665:213519 -k1,10003:11011597,36547665:213518 -k1,10003:12216676,36547665:213519 -k1,10003:15121102,36547665:213518 -k1,10003:15950659,36547665:213519 -k1,10003:17183262,36547665:213518 -k1,10003:21454115,36547665:213519 -k1,10003:22334789,36547665:213518 -(1,10003:22334789,36547665:0,452978,115847 -r1,10003:25155038,36547665:2820249,568825,115847 -k1,10003:22334789,36547665:-2820249 -) -(1,10003:22334789,36547665:2820249,452978,115847 -k1,10003:22334789,36547665:3277 -h1,10003:25151761,36547665:0,411205,112570 -) -k1,10003:25368557,36547665:213519 -k1,10003:26773520,36547665:213518 -k1,10003:28872510,36547665:213519 -k1,10003:30573040,36547665:213518 -k1,10003:32583029,36547665:0 -) -(1,10004:6630773,37389153:25952256,513147,134348 -k1,10003:7653353,37389153:234182 -k1,10003:9193668,37389153:234182 -k1,10003:14225085,37389153:234182 -k1,10003:15145429,37389153:234182 -k1,10003:17762500,37389153:234182 -k1,10003:20064998,37389153:234182 -k1,10003:20915218,37389153:234182 -k1,10003:22168485,37389153:234182 -k1,10003:23792030,37389153:234182 -k1,10003:26076178,37389153:234182 -k1,10003:26938195,37389153:234182 -k1,10003:30012052,37389153:234182 -k1,10003:32583029,37389153:0 -) -(1,10004:6630773,38230641:25952256,505283,134348 -k1,10003:10067294,38230641:287516 -k1,10003:10970847,38230641:287515 -k1,10003:11614223,38230641:287516 -k1,10003:13732815,38230641:287516 -k1,10003:15124613,38230641:287516 -k1,10003:17652804,38230641:287515 -k1,10003:19270701,38230641:287516 -k1,10003:19914077,38230641:287516 -k1,10003:21301286,38230641:287515 -k1,10003:22240230,38230641:287516 -k1,10003:24607859,38230641:287516 -k1,10003:25426872,38230641:287516 -k1,10003:29478120,38230641:287515 -k1,10003:30393471,38230641:287516 -k1,10003:32583029,38230641:0 -) -(1,10004:6630773,39072129:25952256,513147,126483 -k1,10003:9004647,39072129:293761 -k1,10003:9829905,39072129:293761 -k1,10003:10479526,39072129:293761 -k1,10003:13415700,39072129:293762 -k1,10003:16404957,39072129:293761 -k1,10003:18177210,39072129:293761 -k1,10003:19280341,39072129:293761 -k1,10003:20646271,39072129:293761 -k1,10003:21599324,39072129:293761 -k1,10003:22912170,39072129:293761 -k1,10003:26420472,39072129:293761 -k1,10003:29460848,39072129:293762 -(1,10003:29460848,39072129:0,452978,115847 -r1,10003:30170826,39072129:709978,568825,115847 -k1,10003:29460848,39072129:-709978 -) -(1,10003:29460848,39072129:709978,452978,115847 -k1,10003:29460848,39072129:3277 -h1,10003:30167549,39072129:0,411205,112570 -) -k1,10003:30638257,39072129:293761 -k1,10003:31401911,39072129:293761 -k1,10003:32227169,39072129:293761 -k1,10003:32583029,39072129:0 -) -(1,10004:6630773,39913617:25952256,513147,126483 -k1,10003:10790398,39913617:253024 -k1,10003:13912587,39913617:253023 -k1,10003:16333542,39913617:253024 -k1,10003:19410511,39913617:253023 -k1,10003:20314963,39913617:253024 -k1,10003:21315753,39913617:253024 -k1,10003:23082002,39913617:253023 -k1,10003:23947788,39913617:253024 -k1,10003:25219896,39913617:253023 -k1,10003:28066835,39913617:253024 -k1,10003:30271520,39913617:253023 -k1,10003:31966991,39913617:253024 -k1,10003:32583029,39913617:0 -) -(1,10004:6630773,40755105:25952256,513147,134348 -k1,10003:8973644,40755105:181494 -k1,10003:9838023,40755105:181494 -k1,10003:12599668,40755105:181493 -k1,10003:14451019,40755105:181494 -k1,10003:15461543,40755105:181494 -k1,10003:17847013,40755105:181494 -k1,10003:19562705,40755105:181494 -k1,10003:21311819,40755105:181493 -k1,10003:21849173,40755105:181494 -k1,10003:23420030,40755105:181494 -k1,10003:25477820,40755105:181494 -k1,10003:26117411,40755105:181494 -k1,10003:26830402,40755105:181494 -k1,10003:29141160,40755105:181493 -k1,10003:30657622,40755105:181494 -k1,10003:31490544,40755105:181494 -k1,10003:32583029,40755105:0 -) -(1,10004:6630773,41596593:25952256,505283,126483 -g1,10003:7849087,41596593 -(1,10003:7849087,41596593:0,452978,115847 -r1,10003:9614201,41596593:1765114,568825,115847 -k1,10003:7849087,41596593:-1765114 -) -(1,10003:7849087,41596593:1765114,452978,115847 -g1,10003:8555788,41596593 -g1,10003:9259212,41596593 -h1,10003:9610924,41596593:0,411205,112570 -) -g1,10003:9813430,41596593 -k1,10004:32583030,41596593:19849316 -g1,10004:32583030,41596593 -) -(1,10006:6630773,42438081:25952256,513147,134348 -h1,10005:6630773,42438081:983040,0,0 -k1,10005:10402370,42438081:253624 -k1,10005:12628628,42438081:253625 -k1,10005:15642628,42438081:253624 -k1,10005:19802853,42438081:253624 -k1,10005:23082275,42438081:253625 -k1,10005:24620405,42438081:253624 -k1,10005:26470487,42438081:253625 -k1,10005:27340149,42438081:253624 -k1,10005:27949633,42438081:253624 -k1,10005:30405268,42438081:253625 -k1,10005:31896867,42438081:253624 -k1,10005:32583029,42438081:0 -) -(1,10006:6630773,43279569:25952256,513147,134348 -k1,10005:8290073,43279569:225372 -k1,10005:8930261,43279569:225345 -(1,10005:8930261,43279569:0,452978,115847 -r1,10005:11750510,43279569:2820249,568825,115847 -k1,10005:8930261,43279569:-2820249 -) -(1,10005:8930261,43279569:2820249,452978,115847 -k1,10005:8930261,43279569:3277 -h1,10005:11747233,43279569:0,411205,112570 -) -k1,10005:12149552,43279569:225372 -k1,10005:15206079,43279569:225372 -k1,10005:16047488,43279569:225371 -k1,10005:18025293,43279569:225372 -k1,10005:20914704,43279569:225372 -k1,10005:22790272,43279569:225371 -k1,10005:25053814,43279569:225372 -k1,10005:26660030,43279569:225372 -k1,10005:29465553,43279569:225371 -k1,10005:30791930,43279569:225372 -k1,10006:32583029,43279569:0 -) -(1,10006:6630773,44121057:25952256,505283,134348 -k1,10005:7837139,44121057:149926 -k1,10005:9611703,44121057:149926 -k1,10005:11948565,44121057:149926 -k1,10005:14669469,44121057:149927 -k1,10005:16933586,44121057:149926 -k1,10005:17871910,44121057:149926 -k1,10005:22153881,44121057:149926 -k1,10005:23697758,44121057:149926 -k1,10005:26172246,44121057:149926 -k1,10005:26973601,44121057:149927 -k1,10005:28453908,44121057:149926 -k1,10005:29255262,44121057:149926 -k1,10005:31563944,44121057:149926 -k1,10005:32583029,44121057:0 -) -(1,10006:6630773,44962545:25952256,513147,134348 -k1,10005:9585017,44962545:184037 -k1,10005:11971719,44962545:184037 -k1,10005:12917284,44962545:184037 -k1,10005:16488877,44962545:184037 -k1,10005:17332206,44962545:184037 -k1,10005:18535327,44962545:184036 -k1,10005:22776698,44962545:184037 -k1,10005:24879629,44962545:184037 -k1,10005:27131982,44962545:184037 -k1,10005:29496402,44962545:184037 -k1,10005:30428205,44962545:184037 -k1,10005:32583029,44962545:0 -) -] -(1,10006:32583029,45706769:0,0,0 -g1,10006:32583029,45706769 -) -) -] -(1,10006:6630773,47279633:25952256,0,0 -h1,10006:6630773,47279633:25952256,0,0 -) -] -h1,10006:4262630,4025873:0,0,0 -] -!28334 +) +) +] +[1,10011:3078558,4812305:0,0,0 +(1,10011:3078558,49800853:0,16384,2228224 +g1,10011:29030814,49800853 +g1,10011:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10011:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10011:37855564,49800853:1179648,16384,0 +) +) +k1,10011:3078556,49800853:-34777008 +) +] +g1,10011:6630773,4812305 +k1,10011:25241686,4812305:17415536 +g1,10011:26807341,4812305 +g1,10011:30339731,4812305 +g1,10011:31154998,4812305 +) +) +] +[1,10011:6630773,45706769:25952256,40108032,0 +(1,10011:6630773,45706769:25952256,40108032,0 +(1,10011:6630773,45706769:0,0,0 +g1,10011:6630773,45706769 +) +[1,10011:6630773,45706769:25952256,40108032,0 +(1,10001:6630773,6254097:25952256,513147,126483 +k1,10000:9825362,6254097:220565 +k1,10000:10661965,6254097:220565 +k1,10000:15131884,6254097:220565 +k1,10000:16543894,6254097:220565 +k1,10000:21502712,6254097:220565 +k1,10000:24354548,6254097:220565 +k1,10000:25191151,6254097:220565 +k1,10000:28818277,6254097:220565 +k1,10000:30139847,6254097:220565 +k1,10000:32583029,6254097:0 +) +(1,10001:6630773,7095585:25952256,513147,134348 +k1,10000:9502452,7095585:189946 +k1,10000:12051039,7095585:189946 +k1,10000:15818595,7095585:189946 +k1,10000:18743358,7095585:189946 +k1,10000:19694832,7095585:189946 +k1,10000:20903863,7095585:189946 +k1,10000:23529127,7095585:189946 +k1,10000:25807705,7095585:189946 +k1,10000:26664807,7095585:189946 +k1,10000:27269587,7095585:189937 +k1,10000:28672604,7095585:189946 +k1,10000:31510860,7095585:189946 +k1,10000:32583029,7095585:0 +) +(1,10001:6630773,7937073:25952256,513147,126483 +k1,10000:7602859,7937073:162716 +k1,10000:8784661,7937073:162717 +k1,10000:10649347,7937073:162716 +k1,10000:12592022,7937073:162717 +k1,10000:13773823,7937073:162716 +k1,10000:15205317,7937073:162717 +k1,10000:16027325,7937073:162716 +k1,10000:17579404,7937073:162716 +k1,10000:19006966,7937073:162717 +k1,10000:20270687,7937073:162716 +k1,10000:21719220,7937073:162717 +k1,10000:25095166,7937073:162716 +k1,10000:26974926,7937073:162717 +k1,10000:30867296,7937073:162716 +k1,10001:32583029,7937073:0 +) +(1,10001:6630773,8778561:25952256,513147,134348 +k1,10000:8274219,8778561:235733 +k1,10000:9985167,8778561:235733 +k1,10000:12166008,8778561:235732 +k1,10000:13014503,8778561:235733 +k1,10000:16522449,8778561:235733 +k1,10000:20833866,8778561:235733 +k1,10000:21831127,8778561:235733 +k1,10000:24259038,8778561:235732 +k1,10000:25304141,8778561:235733 +k1,10000:28302217,8778561:235733 +k1,10000:32583029,8778561:0 +) +(1,10001:6630773,9620049:25952256,513147,126483 +g1,10000:9465205,9620049 +g1,10000:12565057,9620049 +g1,10000:14630751,9620049 +g1,10000:16021425,9620049 +g1,10000:19244485,9620049 +g1,10000:20886161,9620049 +g1,10000:22598616,9620049 +g1,10000:23745496,9620049 +g1,10000:25378653,9620049 +k1,10001:32583029,9620049:6615863 +g1,10001:32583029,9620049 +) +(1,10003:6630773,10461537:25952256,513147,134348 +h1,10002:6630773,10461537:983040,0,0 +k1,10002:10433172,10461537:284426 +k1,10002:14227706,10461537:284427 +k1,10002:15043629,10461537:284426 +k1,10002:16347140,10461537:284426 +k1,10002:17966535,10461537:284427 +k1,10002:20912378,10461537:284426 +k1,10002:21856096,10461537:284426 +k1,10002:22911225,10461537:284426 +k1,10002:26582553,10461537:284427 +k1,10002:31923737,10461537:284426 +k1,10002:32583029,10461537:0 +) +(1,10003:6630773,11303025:25952256,513147,134348 +k1,10002:8270584,11303025:250448 +k1,10002:10868533,11303025:250449 +k1,10002:12403487,11303025:250448 +k1,10002:16084745,11303025:250448 +k1,10002:17354279,11303025:250449 +k1,10002:19471192,11303025:250448 +k1,10002:20380932,11303025:250448 +k1,10002:24066777,11303025:250448 +k1,10002:25264877,11303025:250449 +k1,10002:27086223,11303025:250448 +k1,10002:28726034,11303025:250448 +k1,10002:30241328,11303025:250449 +k1,10002:32227169,11303025:250448 +k1,10002:32583029,11303025:0 +) +(1,10003:6630773,12144513:25952256,505283,134348 +k1,10002:8106589,12144513:192621 +k1,10002:11489503,12144513:192621 +k1,10002:12873570,12144513:192622 +k1,10002:16000893,12144513:192621 +k1,10002:16549374,12144513:192621 +k1,10002:18025190,12144513:192621 +k1,10002:20475527,12144513:192622 +k1,10002:21621697,12144513:192621 +k1,10002:23583135,12144513:192621 +k1,10002:24823021,12144513:192621 +k1,10002:26300149,12144513:192622 +k1,10002:29072922,12144513:192621 +k1,10002:32583029,12144513:0 +) +(1,10003:6630773,12986001:25952256,513147,134348 +k1,10002:7452469,12986001:290199 +k1,10002:9597338,12986001:290200 +k1,10002:10696907,12986001:290199 +k1,10002:11342967,12986001:290200 +k1,10002:14835910,12986001:290199 +k1,10002:15785402,12986001:290200 +k1,10002:17765119,12986001:290199 +k1,10002:19339824,12986001:290199 +k1,10002:20161521,12986001:290200 +k1,10002:23214063,12986001:290199 +k1,10002:25071884,12986001:290200 +k1,10002:26646589,12986001:290199 +k1,10002:27552827,12986001:290200 +k1,10002:28862111,12986001:290199 +k1,10002:29567062,12986001:290108 +k1,10002:32583029,12986001:0 +) +(1,10003:6630773,13827489:25952256,513147,126483 +k1,10002:8081172,13827489:253712 +k1,10002:12285393,13827489:253711 +k1,10002:13155143,13827489:253712 +k1,10002:14612096,13827489:253712 +k1,10002:16232889,13827489:253712 +k1,10002:17587605,13827489:253711 +k1,10002:19351267,13827489:253712 +k1,10002:20624064,13827489:253712 +k1,10002:21970261,13827489:253712 +k1,10002:22883264,13827489:253711 +k1,10002:23492836,13827489:253712 +k1,10002:24959619,13827489:253712 +k1,10002:27864918,13827489:253712 +k1,10002:30376344,13827489:253711 +k1,10002:31821501,13827489:253712 +k1,10002:32583029,13827489:0 +) +(1,10003:6630773,14668977:25952256,513147,134348 +k1,10002:10172448,14668977:285846 +k1,10002:11109722,14668977:285846 +k1,10002:12495263,14668977:285847 +k1,10002:13542637,14668977:285846 +k1,10002:16807750,14668977:285846 +k1,10002:17752888,14668977:285846 +k1,10002:21441363,14668977:285846 +k1,10002:24054392,14668977:285846 +k1,10002:24999531,14668977:285847 +k1,10002:26046905,14668977:285846 +k1,10002:28016371,14668977:285846 +k1,10002:31563944,14668977:285846 +k1,10002:32583029,14668977:0 +) +(1,10003:6630773,15510465:25952256,513147,134348 +g1,10002:11783868,15510465 +g1,10002:12642389,15510465 +g1,10002:13860703,15510465 +g1,10002:16185265,15510465 +g1,10002:17043786,15510465 +g1,10002:18739202,15510465 +g1,10002:21542176,15510465 +g1,10002:23024600,15510465 +k1,10003:32583029,15510465:6358961 +g1,10003:32583029,15510465 +) +(1,10005:6630773,16351953:25952256,513147,134348 +h1,10004:6630773,16351953:983040,0,0 +k1,10004:9658060,16351953:261012 +k1,10004:10274932,16351953:261012 +k1,10004:14599831,16351953:261012 +k1,10004:17528814,16351953:261012 +k1,10004:18145686,16351953:261012 +k1,10004:20127018,16351953:261012 +k1,10004:21047322,16351953:261012 +k1,10004:24586445,16351953:261012 +k1,10004:28425723,16351953:261012 +k1,10004:29152696,16351953:261012 +k1,10004:31149101,16351953:261012 +k1,10005:32583029,16351953:0 +) +(1,10005:6630773,17193441:25952256,505283,126483 +k1,10004:7509217,17193441:289931 +k1,10004:8667500,17193441:289931 +k1,10004:10061714,17193441:289932 +k1,10004:12207625,17193441:289931 +k1,10004:14114985,17193441:289931 +k1,10004:15017678,17193441:289931 +k1,10004:16759231,17193441:289931 +k1,10004:18404448,17193441:289932 +k1,10004:19310417,17193441:289931 +k1,10004:20619433,17193441:289931 +k1,10004:24973251,17193441:289931 +k1,10004:26282267,17193441:289931 +k1,10004:29350926,17193441:289932 +k1,10004:31321200,17193441:289931 +k1,10004:32227169,17193441:289931 +k1,10004:32583029,17193441:0 +) +(1,10005:6630773,18034929:25952256,513147,126483 +k1,10004:9525990,18034929:210207 +k1,10004:10419081,18034929:210206 +k1,10004:11978674,18034929:210207 +k1,10004:14860128,18034929:210207 +k1,10004:17765830,18034929:210206 +k1,10004:19579703,18034929:210207 +k1,10004:20986597,18034929:210207 +k1,10004:22502936,18034929:210206 +k1,10004:25697653,18034929:210207 +k1,10004:26439357,18034929:210207 +k1,10004:29288698,18034929:210206 +k1,10004:30571074,18034929:210207 +k1,10004:32583029,18034929:0 +) +(1,10005:6630773,18876417:25952256,513147,126483 +k1,10004:9619870,18876417:268042 +k1,10004:12222960,18876417:268042 +k1,10004:15598720,18876417:268043 +k1,10004:16332723,18876417:268042 +k1,10004:19112105,18876417:268042 +k1,10004:21448463,18876417:268042 +k1,10004:22708065,18876417:268042 +k1,10004:24942187,18876417:268042 +k1,10004:27619333,18876417:268043 +k1,10004:29084062,18876417:268042 +k1,10004:31593435,18876417:268042 +k1,10005:32583029,18876417:0 +) +(1,10005:6630773,19717905:25952256,513147,134348 +k1,10004:9052469,19717905:213788 +k1,10004:12039740,19717905:213787 +k1,10004:13607502,19717905:213788 +k1,10004:16305105,19717905:213788 +k1,10004:17564847,19717905:213787 +k1,10004:19190936,19717905:213788 +k1,10004:20090886,19717905:213788 +k1,10004:21838871,19717905:213787 +k1,10004:22738821,19717905:213788 +k1,10004:24607392,19717905:213787 +k1,10004:25352677,19717905:213788 +k1,10004:27216662,19717905:213788 +k1,10004:28872896,19717905:213787 +k1,10004:30243394,19717905:213788 +k1,10004:32583029,19717905:0 +) +(1,10005:6630773,20559393:25952256,513147,126483 +k1,10004:8523289,20559393:256737 +k1,10004:11756672,20559393:256738 +k1,10004:12664837,20559393:256737 +k1,10004:14187730,20559393:256737 +k1,10004:15215170,20559393:256737 +k1,10004:18858809,20559393:256738 +k1,10004:21199591,20559393:256737 +k1,10004:22931543,20559393:256737 +k1,10004:26243568,20559393:256737 +k1,10004:27519391,20559393:256738 +k1,10004:30277637,20559393:256737 +k1,10004:31193666,20559393:256737 +k1,10004:32583029,20559393:0 +) +(1,10005:6630773,21400881:25952256,513147,134348 +k1,10004:8512940,21400881:245077 +k1,10004:10325638,21400881:245077 +k1,10004:12022992,21400881:245076 +k1,10004:14101111,21400881:245077 +(1,10004:14308205,21400881:5254677,505283,134348 +) +k1,10004:20188998,21400881:245352 +k1,10004:24619204,21400881:245077 +k1,10004:26148787,21400881:245077 +k1,10004:26851960,21400881:245076 +k1,10004:28198042,21400881:245077 +k1,10004:29953069,21400881:245077 +k1,10004:32583029,21400881:0 +) +(1,10005:6630773,22242369:25952256,513147,134348 +k1,10004:7450106,22242369:167905 +k1,10004:9232818,22242369:167905 +k1,10004:12311177,22242369:167905 +k1,10004:13763589,22242369:167906 +k1,10004:15892331,22242369:167905 +k1,10004:17079321,22242369:167905 +k1,10004:20324141,22242369:167905 +k1,10004:22790394,22242369:167905 +k1,10004:23609727,22242369:167905 +k1,10004:25575285,22242369:167905 +k1,10004:26946432,22242369:167906 +k1,10004:28397532,22242369:167905 +k1,10004:30649482,22242369:167905 +k1,10004:31468815,22242369:167905 +k1,10004:32051532,22242369:167874 +k1,10004:32583029,22242369:0 +) +(1,10005:6630773,23083857:25952256,513147,134348 +k1,10004:7153750,23083857:167117 +k1,10004:10503951,23083857:167117 +k1,10004:11322495,23083857:167116 +k1,10004:12278010,23083857:167117 +k1,10004:15419151,23083857:167117 +k1,10004:16777713,23083857:167117 +k1,10004:21007407,23083857:167117 +k1,10004:22524566,23083857:167117 +k1,10004:25775806,23083857:167116 +k1,10004:28888110,23083857:167117 +k1,10004:30246672,23083857:167117 +k1,10004:32583029,23083857:0 +) +(1,10005:6630773,23925345:25952256,513147,126483 +g1,10004:8790839,23925345 +g1,10004:12066983,23925345 +g1,10004:13213863,23925345 +g1,10004:16870771,23925345 +k1,10005:32583029,23925345:13454543 +g1,10005:32583029,23925345 +) +(1,10007:6630773,24766833:25952256,513147,126483 +h1,10006:6630773,24766833:983040,0,0 +k1,10006:8291822,24766833:190421 +k1,10006:11244595,24766833:190430 +k1,10006:13479748,24766833:190430 +k1,10006:14329470,24766833:190430 +k1,10006:15538985,24766833:190430 +k1,10006:16144250,24766833:190422 +k1,10006:18418725,24766833:190430 +k1,10006:19140652,24766833:190430 +k1,10006:22545623,24766833:190430 +k1,10006:23395345,24766833:190430 +k1,10006:26539483,24766833:190430 +k1,10006:28297534,24766833:190430 +k1,10006:29811791,24766833:190430 +k1,10006:31193666,24766833:190430 +k1,10006:32583029,24766833:0 +) +(1,10007:6630773,25608321:25952256,513147,126483 +k1,10006:9022915,25608321:185545 +k1,10006:9969988,25608321:185545 +k1,10006:12067218,25608321:185545 +k1,10006:13685380,25608321:185545 +k1,10006:14285755,25608321:185532 +k1,10006:17231676,25608321:185545 +k1,10006:18589660,25608321:185545 +k1,10006:21537548,25608321:185545 +k1,10006:24800008,25608321:185545 +k1,10006:25933205,25608321:185546 +k1,10006:27495661,25608321:185545 +(1,10006:27495661,25608321:0,459977,115847 +r1,10006:27853927,25608321:358266,575824,115847 +k1,10006:27495661,25608321:-358266 +) +(1,10006:27495661,25608321:358266,459977,115847 +k1,10006:27495661,25608321:3277 +h1,10006:27850650,25608321:0,411205,112570 +) +k1,10006:28039472,25608321:185545 +k1,10006:29416462,25608321:185545 +(1,10006:29416462,25608321:0,452978,115847 +r1,10006:30829863,25608321:1413401,568825,115847 +k1,10006:29416462,25608321:-1413401 +) +(1,10006:29416462,25608321:1413401,452978,115847 +k1,10006:29416462,25608321:3277 +h1,10006:30826586,25608321:0,411205,112570 +) +k1,10006:31189078,25608321:185545 +k1,10006:32583029,25608321:0 +) +(1,10007:6630773,26449809:25952256,513147,126483 +k1,10006:9555973,26449809:162857 +k1,10006:11976545,26449809:162857 +k1,10006:14013732,26449809:162857 +k1,10006:15349027,26449809:162856 +k1,10006:18588799,26449809:162857 +k1,10006:20037472,26449809:162857 +k1,10006:21943587,26449809:162857 +k1,10006:22722482,26449809:162857 +k1,10006:24215719,26449809:162856 +k1,10006:27785793,26449809:162857 +k1,10006:30030074,26449809:162857 +k1,10006:31184491,26449809:162857 +k1,10007:32583029,26449809:0 +) +(1,10007:6630773,27291297:25952256,513147,134348 +k1,10006:8408966,27291297:210572 +k1,10006:11154471,27291297:210572 +k1,10006:13527075,27291297:210572 +k1,10006:15521537,27291297:210572 +k1,10006:16935350,27291297:210572 +k1,10006:19229967,27291297:210572 +k1,10006:20388191,27291297:210573 +k1,10006:21369466,27291297:210572 +k1,10006:24966939,27291297:210572 +k1,10006:25828939,27291297:210572 +k1,10006:27473439,27291297:210572 +k1,10006:28602826,27291297:210572 +k1,10006:30202761,27291297:210572 +k1,10006:32583029,27291297:0 +) +(1,10007:6630773,28132785:25952256,513147,134348 +k1,10006:8512715,28132785:276965 +k1,10006:10665320,28132785:276965 +k1,10006:11298146,28132785:276966 +k1,10006:12858306,28132785:276965 +k1,10006:15219316,28132785:276965 +k1,10006:17508236,28132785:276965 +k1,10006:19068397,28132785:276966 +k1,10006:23421046,28132785:276965 +k1,10006:24310773,28132785:276965 +k1,10006:25606823,28132785:276965 +k1,10006:28456732,28132785:276966 +k1,10006:29392989,28132785:276965 +k1,10006:31753999,28132785:276965 +k1,10007:32583029,28132785:0 +) +(1,10007:6630773,28974273:25952256,513147,134348 +k1,10006:11107508,28974273:268013 +k1,10006:12769473,28974273:268014 +k1,10006:14471414,28974273:268013 +k1,10006:15154202,28974273:267945 +k1,10006:17679930,28974273:268013 +k1,10006:20352459,28974273:268013 +k1,10006:21279765,28974273:268014 +k1,10006:23102947,28974273:268013 +(1,10006:23102947,28974273:0,452978,115847 +r1,10006:24516348,28974273:1413401,568825,115847 +k1,10006:23102947,28974273:-1413401 +) +(1,10006:23102947,28974273:1413401,452978,115847 +k1,10006:23102947,28974273:3277 +h1,10006:24513071,28974273:0,411205,112570 +) +k1,10006:24784361,28974273:268013 +k1,10006:26556426,28974273:268014 +k1,10006:28110255,28974273:268013 +k1,10006:29148972,28974273:268014 +k1,10006:31931601,28974273:268013 +k1,10006:32583029,28974273:0 +) +(1,10007:6630773,29815761:25952256,513147,134348 +k1,10006:9484429,29815761:224352 +k1,10006:13784464,29815761:224351 +k1,10006:17189934,29815761:224352 +k1,10006:18065714,29815761:224352 +k1,10006:20579893,29815761:224351 +k1,10006:21463537,29815761:224352 +k1,10006:23243058,29815761:224352 +(1,10006:23243058,29815761:0,459977,115847 +r1,10006:27470154,29815761:4227096,575824,115847 +k1,10006:23243058,29815761:-4227096 +) +(1,10006:23243058,29815761:4227096,459977,115847 +k1,10006:23243058,29815761:3277 +h1,10006:27466877,29815761:0,411205,112570 +) +k1,10006:27868176,29815761:224352 +k1,10006:28507345,29815761:224326 +k1,10006:32583029,29815761:0 +) +(1,10007:6630773,30657249:25952256,513147,134348 +k1,10006:8000773,30657249:268995 +k1,10006:11319815,30657249:268996 +k1,10006:12204848,30657249:268995 +k1,10006:14462205,30657249:268995 +k1,10006:17283173,30657249:268996 +k1,10006:18743613,30657249:268995 +k1,10006:22096733,30657249:268996 +k1,10006:23832424,30657249:268995 +k1,10006:26371586,30657249:268995 +k1,10006:30716266,30657249:268996 +k1,10006:31516758,30657249:268995 +k1,10006:32583029,30657249:0 +) +(1,10007:6630773,31498737:25952256,513147,134348 +k1,10006:7846869,31498737:197011 +k1,10006:9871024,31498737:197011 +k1,10006:13430032,31498737:197011 +k1,10006:14436413,31498737:197011 +k1,10006:15652509,31498737:197011 +k1,10006:19254115,31498737:197011 +k1,10006:20642572,31498737:197012 +k1,10006:22402617,31498737:197011 +k1,10006:24455608,31498737:197011 +k1,10006:25571434,31498737:197011 +k1,10006:27157808,31498737:197011 +k1,10006:29561416,31498737:197011 +k1,10006:30441312,31498737:197011 +k1,10006:32583029,31498737:0 +) +(1,10007:6630773,32340225:25952256,513147,126483 +g1,10006:9454064,32340225 +k1,10007:32583030,32340225:21058028 +g1,10007:32583030,32340225 +) +(1,10009:6630773,33181713:25952256,513147,126483 +h1,10008:6630773,33181713:983040,0,0 +k1,10008:9242418,33181713:195988 +k1,10008:9853245,33181713:195984 +k1,10008:12744729,33181713:195988 +(1,10008:12744729,33181713:0,452978,115847 +r1,10008:15564978,33181713:2820249,568825,115847 +k1,10008:12744729,33181713:-2820249 +) +(1,10008:12744729,33181713:2820249,452978,115847 +k1,10008:12744729,33181713:3277 +h1,10008:15561701,33181713:0,411205,112570 +) +k1,10008:15760966,33181713:195988 +k1,10008:17057959,33181713:195988 +k1,10008:18024650,33181713:195988 +k1,10008:20771299,33181713:195988 +k1,10008:23225002,33181713:195988 +k1,10008:24107151,33181713:195987 +k1,10008:24761236,33181713:195988 +k1,10008:27927971,33181713:195988 +k1,10008:29143044,33181713:195988 +k1,10008:32583029,33181713:0 +) +(1,10009:6630773,34023201:25952256,513147,134348 +k1,10008:9088046,34023201:251986 +k1,10008:10026194,34023201:251986 +k1,10008:11297264,34023201:251985 +k1,10008:13790581,34023201:251986 +k1,10008:17114895,34023201:251986 +k1,10008:19376870,34023201:251986 +k1,10008:20647940,34023201:251985 +k1,10008:24425763,34023201:251986 +k1,10008:25337041,34023201:251986 +k1,10008:26608112,34023201:251986 +k1,10008:28249460,34023201:251985 +k1,10008:30377742,34023201:251986 +k1,10008:32583029,34023201:0 +) +(1,10009:6630773,34864689:25952256,513147,134348 +k1,10008:7610162,34864689:293227 +k1,10008:8691786,34864689:293226 +k1,10008:10291146,34864689:293227 +k1,10008:13656701,34864689:293227 +k1,10008:15182004,34864689:293226 +h1,10008:17123180,34864689:0,0,0 +k1,10008:17416407,34864689:293227 +k1,10008:18519004,34864689:293227 +k1,10008:20310383,34864689:293226 +h1,10008:21107301,34864689:0,0,0 +k1,10008:21781292,34864689:293227 +k1,10008:23455362,34864689:293226 +k1,10008:25469564,34864689:293227 +k1,10008:27791786,34864689:293227 +k1,10008:28697774,34864689:293226 +k1,10008:30010086,34864689:293227 +k1,10008:32583029,34864689:0 +) +(1,10009:6630773,35706177:25952256,513147,134348 +k1,10008:7541559,35706177:251494 +k1,10008:11054781,35706177:251495 +k1,10008:12325360,35706177:251494 +k1,10008:13789270,35706177:251494 +k1,10008:14700057,35706177:251495 +k1,10008:16645001,35706177:251494 +k1,10008:17582657,35706177:251494 +k1,10008:18595680,35706177:251495 +k1,10008:21249724,35706177:251494 +k1,10008:22520303,35706177:251494 +k1,10008:23871491,35706177:251494 +k1,10008:24774414,35706177:251495 +k1,10008:27279691,35706177:251494 +k1,10008:27989282,35706177:251494 +k1,10008:28772274,35706177:251495 +k1,10008:30090039,35706177:251494 +k1,10008:32583029,35706177:0 +) +(1,10009:6630773,36547665:25952256,513147,115847 +k1,10008:8729763,36547665:213519 +k1,10008:11011597,36547665:213518 +k1,10008:12216676,36547665:213519 +k1,10008:15121102,36547665:213518 +k1,10008:15950659,36547665:213519 +k1,10008:17183262,36547665:213518 +k1,10008:21454115,36547665:213519 +k1,10008:22334789,36547665:213518 +(1,10008:22334789,36547665:0,452978,115847 +r1,10008:25155038,36547665:2820249,568825,115847 +k1,10008:22334789,36547665:-2820249 +) +(1,10008:22334789,36547665:2820249,452978,115847 +k1,10008:22334789,36547665:3277 +h1,10008:25151761,36547665:0,411205,112570 +) +k1,10008:25368557,36547665:213519 +k1,10008:26773520,36547665:213518 +k1,10008:28872510,36547665:213519 +k1,10008:30573040,36547665:213518 +k1,10008:32583029,36547665:0 +) +(1,10009:6630773,37389153:25952256,513147,134348 +k1,10008:7653353,37389153:234182 +k1,10008:9193668,37389153:234182 +k1,10008:14225085,37389153:234182 +k1,10008:15145429,37389153:234182 +k1,10008:17762500,37389153:234182 +k1,10008:20064998,37389153:234182 +k1,10008:20915218,37389153:234182 +k1,10008:22168485,37389153:234182 +k1,10008:23792030,37389153:234182 +k1,10008:26076178,37389153:234182 +k1,10008:26938195,37389153:234182 +k1,10008:30012052,37389153:234182 +k1,10008:32583029,37389153:0 +) +(1,10009:6630773,38230641:25952256,505283,134348 +k1,10008:10067294,38230641:287516 +k1,10008:10970847,38230641:287515 +k1,10008:11614223,38230641:287516 +k1,10008:13732815,38230641:287516 +k1,10008:15124613,38230641:287516 +k1,10008:17652804,38230641:287515 +k1,10008:19270701,38230641:287516 +k1,10008:19914077,38230641:287516 +k1,10008:21301286,38230641:287515 +k1,10008:22240230,38230641:287516 +k1,10008:24607859,38230641:287516 +k1,10008:25426872,38230641:287516 +k1,10008:29478120,38230641:287515 +k1,10008:30393471,38230641:287516 +k1,10008:32583029,38230641:0 +) +(1,10009:6630773,39072129:25952256,513147,126483 +k1,10008:9004647,39072129:293761 +k1,10008:9829905,39072129:293761 +k1,10008:10479526,39072129:293761 +k1,10008:13415700,39072129:293762 +k1,10008:16404957,39072129:293761 +k1,10008:18177210,39072129:293761 +k1,10008:19280341,39072129:293761 +k1,10008:20646271,39072129:293761 +k1,10008:21599324,39072129:293761 +k1,10008:22912170,39072129:293761 +k1,10008:26420472,39072129:293761 +k1,10008:29460848,39072129:293762 +(1,10008:29460848,39072129:0,452978,115847 +r1,10008:30170826,39072129:709978,568825,115847 +k1,10008:29460848,39072129:-709978 +) +(1,10008:29460848,39072129:709978,452978,115847 +k1,10008:29460848,39072129:3277 +h1,10008:30167549,39072129:0,411205,112570 +) +k1,10008:30638257,39072129:293761 +k1,10008:31401911,39072129:293761 +k1,10008:32227169,39072129:293761 +k1,10008:32583029,39072129:0 +) +(1,10009:6630773,39913617:25952256,513147,126483 +k1,10008:10790398,39913617:253024 +k1,10008:13912587,39913617:253023 +k1,10008:16333542,39913617:253024 +k1,10008:19410511,39913617:253023 +k1,10008:20314963,39913617:253024 +k1,10008:21315753,39913617:253024 +k1,10008:23082002,39913617:253023 +k1,10008:23947788,39913617:253024 +k1,10008:25219896,39913617:253023 +k1,10008:28066835,39913617:253024 +k1,10008:30271520,39913617:253023 +k1,10008:31966991,39913617:253024 +k1,10008:32583029,39913617:0 +) +(1,10009:6630773,40755105:25952256,513147,134348 +k1,10008:8973644,40755105:181494 +k1,10008:9838023,40755105:181494 +k1,10008:12599668,40755105:181493 +k1,10008:14451019,40755105:181494 +k1,10008:15461543,40755105:181494 +k1,10008:17847013,40755105:181494 +k1,10008:19562705,40755105:181494 +k1,10008:21311819,40755105:181493 +k1,10008:21849173,40755105:181494 +k1,10008:23420030,40755105:181494 +k1,10008:25477820,40755105:181494 +k1,10008:26117411,40755105:181494 +k1,10008:26830402,40755105:181494 +k1,10008:29141160,40755105:181493 +k1,10008:30657622,40755105:181494 +k1,10008:31490544,40755105:181494 +k1,10008:32583029,40755105:0 +) +(1,10009:6630773,41596593:25952256,505283,126483 +g1,10008:7849087,41596593 +(1,10008:7849087,41596593:0,452978,115847 +r1,10008:9614201,41596593:1765114,568825,115847 +k1,10008:7849087,41596593:-1765114 +) +(1,10008:7849087,41596593:1765114,452978,115847 +g1,10008:8555788,41596593 +g1,10008:9259212,41596593 +h1,10008:9610924,41596593:0,411205,112570 +) +g1,10008:9813430,41596593 +k1,10009:32583030,41596593:19849316 +g1,10009:32583030,41596593 +) +(1,10011:6630773,42438081:25952256,513147,134348 +h1,10010:6630773,42438081:983040,0,0 +k1,10010:10402370,42438081:253624 +k1,10010:12628628,42438081:253625 +k1,10010:15642628,42438081:253624 +k1,10010:19802853,42438081:253624 +k1,10010:23082275,42438081:253625 +k1,10010:24620405,42438081:253624 +k1,10010:26470487,42438081:253625 +k1,10010:27340149,42438081:253624 +k1,10010:27949633,42438081:253624 +k1,10010:30405268,42438081:253625 +k1,10010:31896867,42438081:253624 +k1,10010:32583029,42438081:0 +) +(1,10011:6630773,43279569:25952256,513147,134348 +k1,10010:8337426,43279569:272725 +k1,10010:9024921,43279569:272652 +(1,10010:9024921,43279569:0,452978,115847 +r1,10010:11845170,43279569:2820249,568825,115847 +k1,10010:9024921,43279569:-2820249 +) +(1,10010:9024921,43279569:2820249,452978,115847 +k1,10010:9024921,43279569:3277 +h1,10010:11841893,43279569:0,411205,112570 +) +k1,10010:12291565,43279569:272725 +k1,10010:15395446,43279569:272726 +k1,10010:16284209,43279569:272725 +k1,10010:18309368,43279569:272726 +k1,10010:21246132,43279569:272725 +k1,10010:23169054,43279569:272725 +k1,10010:25479950,43279569:272726 +k1,10010:27133519,43279569:272725 +k1,10010:29986397,43279569:272726 +k1,10010:31360127,43279569:272725 +k1,10011:32583029,43279569:0 +) +(1,10011:6630773,44121057:25952256,513147,134348 +k1,10010:8495655,44121057:196335 +k1,10010:10316628,44121057:196335 +k1,10010:12699898,44121057:196334 +k1,10010:15467210,44121057:196335 +k1,10010:17777736,44121057:196335 +k1,10010:18762469,44121057:196335 +k1,10010:23090849,44121057:196335 +k1,10010:24681135,44121057:196335 +k1,10010:27202031,44121057:196334 +k1,10010:28049794,44121057:196335 +k1,10010:29576510,44121057:196335 +k1,10010:30424273,44121057:196335 +k1,10010:32583029,44121057:0 +) +(1,10011:6630773,44962545:25952256,513147,134348 +k1,10010:7937144,44962545:287286 +k1,10010:10994637,44962545:287286 +k1,10010:13484588,44962545:287286 +k1,10010:14533402,44962545:287286 +k1,10010:18208244,44962545:287286 +k1,10010:19154822,44962545:287286 +k1,10010:20461192,44962545:287285 +k1,10010:24805812,44962545:287286 +k1,10010:27011992,44962545:287286 +k1,10010:29367594,44962545:287286 +k1,10010:31835263,44962545:287286 +k1,10010:32583029,44962545:0 +) +] +(1,10011:32583029,45706769:0,0,0 +g1,10011:32583029,45706769 +) +) +] +(1,10011:6630773,47279633:25952256,0,0 +h1,10011:6630773,47279633:25952256,0,0 +) +] +h1,10011:4262630,4025873:0,0,0 +] +!28462 }189 -Input:1261:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:1257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {190 -[1,10041:4262630,47279633:28320399,43253760,0 -(1,10041:4262630,4025873:0,0,0 -[1,10041:-473657,4025873:25952256,0,0 -(1,10041:-473657,-710414:25952256,0,0 -h1,10041:-473657,-710414:0,0,0 -(1,10041:-473657,-710414:0,0,0 -(1,10041:-473657,-710414:0,0,0 -g1,10041:-473657,-710414 -(1,10041:-473657,-710414:65781,0,65781 -g1,10041:-407876,-710414 -[1,10041:-407876,-644633:0,0,0 +[1,10046:4262630,47279633:28320399,43253760,0 +(1,10046:4262630,4025873:0,0,0 +[1,10046:-473657,4025873:25952256,0,0 +(1,10046:-473657,-710414:25952256,0,0 +h1,10046:-473657,-710414:0,0,0 +(1,10046:-473657,-710414:0,0,0 +(1,10046:-473657,-710414:0,0,0 +g1,10046:-473657,-710414 +(1,10046:-473657,-710414:65781,0,65781 +g1,10046:-407876,-710414 +[1,10046:-407876,-644633:0,0,0 ] ) -k1,10041:-473657,-710414:-65781 +k1,10046:-473657,-710414:-65781 ) ) -k1,10041:25478599,-710414:25952256 -g1,10041:25478599,-710414 +k1,10046:25478599,-710414:25952256 +g1,10046:25478599,-710414 ) ] ) -[1,10041:6630773,47279633:25952256,43253760,0 -[1,10041:6630773,4812305:25952256,786432,0 -(1,10041:6630773,4812305:25952256,505283,134348 -(1,10041:6630773,4812305:25952256,505283,134348 -g1,10041:3078558,4812305 -[1,10041:3078558,4812305:0,0,0 -(1,10041:3078558,2439708:0,1703936,0 -k1,10041:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10041:2537886,2439708:1179648,16384,0 +[1,10046:6630773,47279633:25952256,43253760,0 +[1,10046:6630773,4812305:25952256,786432,0 +(1,10046:6630773,4812305:25952256,505283,134348 +(1,10046:6630773,4812305:25952256,505283,134348 +g1,10046:3078558,4812305 +[1,10046:3078558,4812305:0,0,0 +(1,10046:3078558,2439708:0,1703936,0 +k1,10046:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10046:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10041:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10046:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10041:3078558,4812305:0,0,0 -(1,10041:3078558,2439708:0,1703936,0 -g1,10041:29030814,2439708 -g1,10041:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10041:36151628,1915420:16384,1179648,0 +[1,10046:3078558,4812305:0,0,0 +(1,10046:3078558,2439708:0,1703936,0 +g1,10046:29030814,2439708 +g1,10046:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10046:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10041:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10046:37855564,2439708:1179648,16384,0 ) ) -k1,10041:3078556,2439708:-34777008 +k1,10046:3078556,2439708:-34777008 ) ] -[1,10041:3078558,4812305:0,0,0 -(1,10041:3078558,49800853:0,16384,2228224 -k1,10041:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10041:2537886,49800853:1179648,16384,0 +[1,10046:3078558,4812305:0,0,0 +(1,10046:3078558,49800853:0,16384,2228224 +k1,10046:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10046:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10041:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10046:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 -) -] -) -) -) -] -[1,10041:3078558,4812305:0,0,0 -(1,10041:3078558,49800853:0,16384,2228224 -g1,10041:29030814,49800853 -g1,10041:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10041:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10041:37855564,49800853:1179648,16384,0 -) -) -k1,10041:3078556,49800853:-34777008 -) -] -g1,10041:6630773,4812305 -g1,10041:6630773,4812305 -g1,10041:9714897,4812305 -g1,10041:11353297,4812305 -g1,10041:12155457,4812305 -g1,10041:13478628,4812305 -g1,10041:16087616,4812305 -k1,10041:31387652,4812305:15300036 -) -) -] -[1,10041:6630773,45706769:25952256,40108032,0 -(1,10041:6630773,45706769:25952256,40108032,0 -(1,10041:6630773,45706769:0,0,0 -g1,10041:6630773,45706769 -) -[1,10041:6630773,45706769:25952256,40108032,0 -(1,10006:6630773,6254097:25952256,513147,134348 -k1,10005:7901328,6254097:261301 -k1,10005:9995017,6254097:261302 -k1,10005:10787815,6254097:261301 -k1,10005:11858486,6254097:261301 -k1,10005:13514394,6254097:261302 -k1,10005:16207081,6254097:261301 -k1,10005:16824243,6254097:261302 -k1,10005:20262729,6254097:261301 -k1,10005:22608075,6254097:261301 -k1,10005:24528749,6254097:261302 -k1,10005:25441478,6254097:261301 -k1,10005:29062154,6254097:261301 -k1,10005:30514901,6254097:261302 -k1,10005:31132062,6254097:261301 -k1,10005:32583029,6254097:0 -) -(1,10006:6630773,7095585:25952256,513147,134348 -k1,10005:9634234,7095585:171650 -k1,10005:11889928,7095585:171649 -k1,10005:12593075,7095585:171650 -k1,10005:15403859,7095585:171649 -k1,10005:17720502,7095585:171650 -k1,10005:20556190,7095585:171649 -k1,10005:21387132,7095585:171650 -k1,10005:22577867,7095585:171650 -k1,10005:25329668,7095585:171649 -k1,10005:28994387,7095585:171650 -k1,10005:29521896,7095585:171649 -k1,10005:31263789,7095585:171650 -k1,10006:32583029,7095585:0 -) -(1,10006:6630773,7937073:25952256,513147,134348 -k1,10005:7820251,7937073:211681 -k1,10005:8683361,7937073:211682 -k1,10005:11252372,7937073:211681 -k1,10005:11819913,7937073:211681 -k1,10005:14386958,7937073:211681 -k1,10005:15836615,7937073:211682 -k1,10005:16707588,7937073:211681 -k1,10005:20168544,7937073:211681 -k1,10005:22299119,7937073:211681 -k1,10005:23162229,7937073:211682 -k1,10005:24760652,7937073:211681 -k1,10005:25807917,7937073:211681 -k1,10005:28261585,7937073:211681 -k1,10005:29397980,7937073:211682 -k1,10005:32051532,7937073:211681 -k1,10005:32583029,7937073:0 -) -(1,10006:6630773,8778561:25952256,513147,134348 -k1,10005:8122524,8778561:207245 -k1,10005:9277420,8778561:207245 -k1,10005:10980852,8778561:207245 -k1,10005:12472602,8778561:207244 -k1,10005:14540414,8778561:207245 -k1,10005:15399087,8778561:207245 -k1,10005:16354098,8778561:207245 -k1,10005:18532666,8778561:207245 -k1,10005:21090687,8778561:207245 -k1,10005:22489376,8778561:207244 -k1,10005:25316750,8778561:207245 -k1,10005:29586572,8778561:207245 -k1,10005:31966991,8778561:207245 -k1,10005:32583029,8778561:0 -) -(1,10006:6630773,9620049:25952256,513147,134348 -k1,10005:7846774,9620049:196916 -k1,10005:10204413,9620049:196917 -k1,10005:11269681,9620049:196916 -k1,10005:13646980,9620049:196916 -k1,10005:14791547,9620049:196916 -k1,10005:16007549,9620049:196917 -k1,10005:17629873,9620049:196916 -k1,10005:19564804,9620049:196916 -k1,10005:21718626,9620049:196917 -k1,10005:23349470,9620049:196916 -k1,10005:24134899,9620049:196916 -k1,10005:25373838,9620049:196917 -k1,10005:27066941,9620049:196916 -k1,10005:28548363,9620049:196916 -k1,10005:29276776,9620049:196916 -k1,10005:30125121,9620049:196917 -k1,10005:31069803,9620049:196916 -k1,10005:32583029,9620049:0 -) -(1,10006:6630773,10461537:25952256,513147,126483 -k1,10005:8480242,10461537:185510 -k1,10005:9348638,10461537:185511 -k1,10005:10481799,10461537:185510 -k1,10005:12552781,10461537:185511 -k1,10005:17473923,10461537:185510 -k1,10005:18763716,10461537:185511 -k1,10005:21320974,10461537:185510 -k1,10005:22315855,10461537:185511 -k1,10005:23520450,10461537:185510 -k1,10005:24798446,10461537:185511 -k1,10005:25643248,10461537:185510 -k1,10005:26184619,10461537:185511 -k1,10005:28767436,10461537:185510 -k1,10005:30180436,10461537:185511 -k1,10005:31048831,10461537:185510 -k1,10005:32583029,10461537:0 -) -(1,10006:6630773,11303025:25952256,513147,126483 -k1,10005:7518131,11303025:235930 -k1,10005:8501826,11303025:235929 -k1,10005:9965245,11303025:235930 -k1,10005:12534911,11303025:235929 -k1,10005:13430133,11303025:235930 -k1,10005:15812366,11303025:235930 -k1,10005:16731180,11303025:235929 -k1,10005:18852581,11303025:235930 -k1,10005:19620007,11303025:235929 -k1,10005:20922208,11303025:235930 -k1,10005:21513998,11303025:235930 -k1,10005:24036478,11303025:235929 -k1,10005:24923836,11303025:235930 -k1,10005:27549863,11303025:235929 -k1,10005:28804878,11303025:235930 -k1,10005:32583029,11303025:0 -) -(1,10006:6630773,12144513:25952256,513147,134348 -g1,10005:8021447,12144513 -g1,10005:10192654,12144513 -g1,10005:11051175,12144513 -g1,10005:12269489,12144513 -g1,10005:13751913,12144513 -g1,10005:16035187,12144513 -g1,10005:17366878,12144513 -g1,10005:18313873,12144513 -g1,10005:19283805,12144513 -k1,10006:32583029,12144513:9886764 -g1,10006:32583029,12144513 -) -(1,10008:6630773,12986001:25952256,513147,134348 -h1,10007:6630773,12986001:983040,0,0 -k1,10007:8419414,12986001:177766 -k1,10007:9800422,12986001:177767 -k1,10007:12395811,12986001:177766 -k1,10007:13744050,12986001:177766 -k1,10007:15054279,12986001:177767 -k1,10007:17675227,12986001:177766 -k1,10007:20345327,12986001:177766 -k1,10007:21917045,12986001:177767 -k1,10007:25481712,12986001:177766 -k1,10007:29192524,12986001:177766 -k1,10007:30029583,12986001:177767 -k1,10007:31896867,12986001:177766 -k1,10007:32583029,12986001:0 -) -(1,10008:6630773,13827489:25952256,513147,134348 -k1,10007:10983734,13827489:151448 -k1,10007:11751219,13827489:151447 -k1,10007:13594807,13827489:151448 -k1,10007:14405546,13827489:151447 -k1,10007:15576079,13827489:151448 -k1,10007:18637980,13827489:151447 -k1,10007:20073934,13827489:151448 -k1,10007:22296319,13827489:151447 -k1,10007:23730962,13827489:151448 -k1,10007:27544561,13827489:151447 -k1,10007:28347437,13827489:151448 -k1,10007:32583029,13827489:0 -) -(1,10008:6630773,14668977:25952256,513147,126483 -k1,10007:8205931,14668977:185795 -k1,10007:9007765,14668977:185796 -k1,10007:9782073,14668977:185795 -k1,10007:10785757,14668977:185795 -k1,10007:11587591,14668977:185796 -k1,10007:14527864,14668977:185795 -k1,10007:17461584,14668977:185795 -k1,10007:17860358,14668977:185782 -k1,10007:19178616,14668977:185796 -k1,10007:21102426,14668977:185795 -k1,10007:22938418,14668977:185795 -k1,10007:23933584,14668977:185796 -k1,10007:25138464,14668977:185795 -k1,10007:28108228,14668977:185795 -k1,10007:29875408,14668977:185796 -k1,10007:31252648,14668977:185795 -k1,10007:32583029,14668977:0 -) -(1,10008:6630773,15510465:25952256,513147,126483 -k1,10007:7450706,15510465:168505 -k1,10007:8711695,15510465:168504 -k1,10007:10519255,15510465:168505 -k1,10007:12130206,15510465:168504 -k1,10007:13108081,15510465:168505 -k1,10007:14785224,15510465:168504 -k1,10007:16189083,15510465:168505 -k1,10007:16973625,15510465:168504 -k1,10007:18161215,15510465:168505 -k1,10007:20884312,15510465:168504 -k1,10007:21712109,15510465:168505 -k1,10007:23443647,15510465:168504 -k1,10007:24808839,15510465:168505 -k1,10007:26889684,15510465:168504 -k1,10007:27507766,15510465:168505 -k1,10007:28600328,15510465:168504 -k1,10007:30303031,15510465:168505 -k1,10008:32583029,15510465:0 -) -(1,10008:6630773,16351953:25952256,513147,134348 -k1,10007:9939685,16351953:177602 -k1,10007:11308733,16351953:177603 -k1,10007:15071810,16351953:177602 -k1,10007:17050341,16351953:177602 -k1,10007:18419388,16351953:177602 -k1,10007:19046568,16351953:177603 -k1,10007:23614427,16351953:177602 -k1,10007:24716087,16351953:177602 -k1,10007:26427887,16351953:177602 -k1,10007:28885488,16351953:177603 -k1,10007:30782100,16351953:177602 -k1,10007:32583029,16351953:0 -) -(1,10008:6630773,17193441:25952256,513147,134348 -g1,10007:8718094,17193441 -g1,10007:10638298,17193441 -g1,10007:11856612,17193441 -g1,10007:13709314,17193441 -g1,10007:16548989,17193441 -g1,10007:18315839,17193441 -g1,10007:19534153,17193441 -g1,10007:23384393,17193441 -g1,10007:24242914,17193441 -g1,10007:25831506,17193441 -k1,10008:32583029,17193441:4023259 -g1,10008:32583029,17193441 -) -(1,10009:6630773,20001009:25952256,32768,229376 -(1,10009:6630773,20001009:0,32768,229376 -(1,10009:6630773,20001009:5505024,32768,229376 -r1,10009:12135797,20001009:5505024,262144,229376 -) -k1,10009:6630773,20001009:-5505024 -) -(1,10009:6630773,20001009:25952256,32768,0 -r1,10009:32583029,20001009:25952256,32768,0 -) -) -(1,10009:6630773,21605337:25952256,606339,161218 -(1,10009:6630773,21605337:1974731,582746,14155 -g1,10009:6630773,21605337 -g1,10009:8605504,21605337 -) -g1,10009:12473177,21605337 -g1,10009:14599689,21605337 -g1,10009:15614973,21605337 -g1,10009:17348269,21605337 -k1,10009:32583029,21605337:12233735 -g1,10009:32583029,21605337 -) -v1,10012:6630773,23189019:0,393216,0 -(1,10016:6630773,23504115:25952256,708312,196608 -g1,10016:6630773,23504115 -g1,10016:6630773,23504115 -g1,10016:6434165,23504115 -(1,10016:6434165,23504115:0,708312,196608 -r1,10016:32779637,23504115:26345472,904920,196608 -k1,10016:6434165,23504115:-26345472 -) -(1,10016:6434165,23504115:26345472,708312,196608 -[1,10016:6630773,23504115:25952256,511704,0 -(1,10014:6630773,23396637:25952256,404226,107478 -(1,10013:6630773,23396637:0,0,0 -g1,10013:6630773,23396637 -g1,10013:6630773,23396637 -g1,10013:6303093,23396637 -(1,10013:6303093,23396637:0,0,0 -) -g1,10013:6630773,23396637 -) -k1,10014:6630773,23396637:0 -h1,10014:19908891,23396637:0,0,0 -k1,10014:32583029,23396637:12674138 -g1,10014:32583029,23396637 -) -] -) -g1,10016:32583029,23504115 -g1,10016:6630773,23504115 -g1,10016:6630773,23504115 -g1,10016:32583029,23504115 -g1,10016:32583029,23504115 -) -h1,10016:6630773,23700723:0,0,0 -(1,10020:6630773,25066499:25952256,513147,126483 -h1,10019:6630773,25066499:983040,0,0 -k1,10019:8588848,25066499:146005 -k1,10019:9852896,25066499:146004 -k1,10019:11017986,25066499:146005 -k1,10019:14155710,25066499:146005 -k1,10019:17060125,25066499:146005 -k1,10019:17822167,25066499:146004 -k1,10019:19171413,25066499:146005 -k1,10019:21908712,25066499:146005 -k1,10019:23225189,25066499:146004 -k1,10019:24901460,25066499:146005 -k1,10019:26353598,25066499:146005 -k1,10019:27151031,25066499:146005 -k1,10019:28673291,25066499:146004 -k1,10019:30511436,25066499:146005 -k1,10020:32583029,25066499:0 -) -(1,10020:6630773,25907987:25952256,513147,134348 -k1,10019:7825904,25907987:143278 -k1,10019:9536803,25907987:143278 -k1,10019:10699166,25907987:143278 -k1,10019:12942873,25907987:143278 -k1,10019:14318228,25907987:143278 -k1,10019:16740193,25907987:143278 -h1,10019:17710781,25907987:0,0,0 -k1,10019:17854059,25907987:143278 -k1,10019:18806706,25907987:143277 -k1,10019:20448137,25907987:143278 -h1,10019:21643514,25907987:0,0,0 -k1,10019:21786792,25907987:143278 -k1,10019:22877721,25907987:143278 -k1,10019:25138467,25907987:143278 -k1,10019:26091115,25907987:143278 -k1,10019:27253478,25907987:143278 -k1,10019:28489241,25907987:143278 -k1,10019:29291811,25907987:143278 -k1,10020:32583029,25907987:0 -k1,10020:32583029,25907987:0 -) -v1,10022:6630773,27098453:0,393216,0 -(1,10033:6630773,32070504:25952256,5365267,196608 -g1,10033:6630773,32070504 -g1,10033:6630773,32070504 -g1,10033:6434165,32070504 -(1,10033:6434165,32070504:0,5365267,196608 -r1,10033:32779637,32070504:26345472,5561875,196608 -k1,10033:6434165,32070504:-26345472 -) -(1,10033:6434165,32070504:26345472,5365267,196608 -[1,10033:6630773,32070504:25952256,5168659,0 -(1,10024:6630773,27306071:25952256,404226,101187 -(1,10023:6630773,27306071:0,0,0 -g1,10023:6630773,27306071 -g1,10023:6630773,27306071 -g1,10023:6303093,27306071 -(1,10023:6303093,27306071:0,0,0 -) -g1,10023:6630773,27306071 -) -k1,10024:6630773,27306071:0 -h1,10024:12637541,27306071:0,0,0 -k1,10024:32583029,27306071:19945488 -g1,10024:32583029,27306071 -) -(1,10025:6630773,27972249:25952256,404226,101187 -h1,10025:6630773,27972249:0,0,0 -k1,10025:6630773,27972249:0 -h1,10025:11372958,27972249:0,0,0 -k1,10025:32583030,27972249:21210072 -g1,10025:32583030,27972249 -) -(1,10026:6630773,28638427:25952256,404226,107478 -h1,10026:6630773,28638427:0,0,0 -k1,10026:6630773,28638427:0 -h1,10026:12005250,28638427:0,0,0 -k1,10026:32583030,28638427:20577780 -g1,10026:32583030,28638427 -) -(1,10027:6630773,29304605:25952256,404226,101187 -h1,10027:6630773,29304605:0,0,0 -k1,10027:6630773,29304605:0 -h1,10027:11056813,29304605:0,0,0 -k1,10027:32583029,29304605:21526216 -g1,10027:32583029,29304605 -) -(1,10028:6630773,29970783:25952256,404226,107478 -h1,10028:6630773,29970783:0,0,0 -k1,10028:6630773,29970783:0 -h1,10028:11689104,29970783:0,0,0 -k1,10028:32583028,29970783:20893924 -g1,10028:32583028,29970783 -) -(1,10029:6630773,30636961:25952256,404226,101187 -h1,10029:6630773,30636961:0,0,0 -k1,10029:6630773,30636961:0 -h1,10029:11056813,30636961:0,0,0 -k1,10029:32583029,30636961:21526216 -g1,10029:32583029,30636961 -) -(1,10030:6630773,31303139:25952256,404226,101187 -h1,10030:6630773,31303139:0,0,0 -k1,10030:6630773,31303139:0 -h1,10030:11056813,31303139:0,0,0 -k1,10030:32583029,31303139:21526216 -g1,10030:32583029,31303139 -) -(1,10031:6630773,31969317:25952256,404226,101187 -h1,10031:6630773,31969317:0,0,0 -k1,10031:6630773,31969317:0 -h1,10031:12321395,31969317:0,0,0 -k1,10031:32583029,31969317:20261634 -g1,10031:32583029,31969317 -) -] -) -g1,10033:32583029,32070504 -g1,10033:6630773,32070504 -g1,10033:6630773,32070504 -g1,10033:32583029,32070504 -g1,10033:32583029,32070504 -) -h1,10033:6630773,32267112:0,0,0 -(1,10036:6630773,35598968:25952256,32768,229376 -(1,10036:6630773,35598968:0,32768,229376 -(1,10036:6630773,35598968:5505024,32768,229376 -r1,10036:12135797,35598968:5505024,262144,229376 -) -k1,10036:6630773,35598968:-5505024 -) -(1,10036:6630773,35598968:25952256,32768,0 -r1,10036:32583029,35598968:25952256,32768,0 -) -) -(1,10036:6630773,37203296:25952256,615776,151780 -(1,10036:6630773,37203296:1974731,582746,14155 -g1,10036:6630773,37203296 -g1,10036:8605504,37203296 -) -g1,10036:14366905,37203296 -g1,10036:15787988,37203296 -(1,10036:15787988,37203296:0,551318,138361 -r1,10036:20015084,37203296:4227096,689679,138361 -k1,10036:15787988,37203296:-4227096 -) -(1,10036:15787988,37203296:4227096,551318,138361 -k1,10036:15787988,37203296:3277 -h1,10036:20011807,37203296:0,493446,135084 -) -k1,10036:32583029,37203296:12567945 -g1,10036:32583029,37203296 -) -(1,10038:6630773,38508124:25952256,555811,12975 -(1,10038:6630773,38508124:2450326,534184,12975 -g1,10038:6630773,38508124 -g1,10038:9081099,38508124 -) -k1,10038:32583029,38508124:19473564 -g1,10038:32583029,38508124 -) -(1,10040:6630773,39742828:25952256,513147,134348 -k1,10039:8117287,39742828:289827 -k1,10039:11102610,39742828:289827 -k1,10039:12492132,39742828:289828 -k1,10039:15972252,39742828:289827 -k1,10039:16921371,39742828:289827 -k1,10039:18230283,39742828:289827 -k1,10039:18934863,39742828:289737 -k1,10039:22066986,39742828:289827 -k1,10039:22888310,39742828:289827 -k1,10039:24462643,39742828:289827 -k1,10039:28155100,39742828:289828 -k1,10039:29436487,39742828:289827 -k1,10039:31931601,39742828:289827 -k1,10039:32583029,39742828:0 -) -(1,10040:6630773,40584316:25952256,513147,134348 -k1,10039:9913925,40584316:257355 -k1,10039:10932808,40584316:257355 -k1,10039:12873783,40584316:257355 -k1,10039:13608895,40584316:257355 -k1,10039:14885335,40584316:257355 -k1,10039:18545319,40584316:257355 -k1,10039:19794233,40584316:257354 -k1,10039:22886675,40584316:257355 -k1,10039:25154019,40584316:257355 -k1,10039:26430459,40584316:257355 -k1,10039:28184001,40584316:257355 -k1,10039:29100648,40584316:257355 -k1,10039:29713863,40584316:257355 -k1,10039:32583029,40584316:0 -) -(1,10040:6630773,41425804:25952256,513147,134348 -k1,10039:8645707,41425804:318207 -k1,10039:11534891,41425804:318207 -k1,10039:12844658,41425804:318207 -k1,10039:14657086,41425804:318207 -k1,10039:15626721,41425804:318207 -k1,10039:16964014,41425804:318208 -k1,10039:20151387,41425804:318207 -k1,10039:20947351,41425804:318207 -k1,10039:25467071,41425804:318207 -k1,10039:28201590,41425804:318207 -k1,10039:29723038,41425804:318207 -k1,10039:32583029,41425804:0 -) -(1,10040:6630773,42267292:25952256,513147,134348 -k1,10039:8775969,42267292:188946 -k1,10039:11278991,42267292:188946 -k1,10039:11823797,42267292:188946 -k1,10039:13563980,42267292:188946 -k1,10039:14814609,42267292:188946 -k1,10039:15812926,42267292:188947 -k1,10039:20251226,42267292:188946 -k1,10039:23284435,42267292:188946 -k1,10039:23888214,42267292:188936 -k1,10039:24693198,42267292:188946 -k1,10039:26483844,42267292:188946 -k1,10039:29829659,42267292:188946 -k1,10039:31394206,42267292:188946 -k1,10040:32583029,42267292:0 -) -(1,10040:6630773,43108780:25952256,513147,134348 -k1,10039:7927075,43108780:226099 -k1,10039:8509034,43108780:226099 -k1,10039:10245083,43108780:226099 -k1,10039:10937143,43108780:226099 -k1,10039:12354687,43108780:226099 -k1,10039:14278824,43108780:226099 -k1,10039:15524007,43108780:226098 -k1,10039:17430449,43108780:226099 -k1,10039:20401196,43108780:226099 -k1,10039:25147969,43108780:226099 -k1,10039:26321719,43108780:226099 -k1,10039:29033599,43108780:226099 -k1,10039:31923737,43108780:226099 -k1,10040:32583029,43108780:0 -) -(1,10040:6630773,43950268:25952256,513147,134348 -k1,10039:7285238,43950268:239622 -k1,10039:9410373,43950268:239664 -k1,10039:10641596,43950268:239663 -k1,10039:12235233,43950268:239663 -k1,10039:14058901,43950268:239663 -k1,10039:14911326,43950268:239663 -k1,10039:17870733,43950268:239663 -k1,10039:22049110,43950268:239663 -k1,10039:24788972,43950268:239663 -k1,10039:25687927,43950268:239663 -k1,10039:28391088,43950268:239663 -k1,10039:29649836,43950268:239663 -k1,10039:32168186,43950268:239663 -k1,10040:32583029,43950268:0 -) -(1,10040:6630773,44791756:25952256,513147,134348 -k1,10039:10106934,44791756:285868 -k1,10039:11493807,44791756:285868 -k1,10039:13155276,44791756:285868 -k1,10039:13797004,44791756:285868 -k1,10039:17113912,44791756:285868 -k1,10039:20054643,44791756:285868 -k1,10039:22528758,44791756:285868 -k1,10039:23623996,44791756:285868 -k1,10039:28159218,44791756:285868 -k1,10039:31379788,44791756:285868 -k1,10039:32583029,44791756:0 -) -(1,10040:6630773,45633244:25952256,513147,134348 -k1,10039:9054013,45633244:234993 -k1,10039:10393288,45633244:234993 -k1,10039:11826936,45633244:234994 -k1,10039:12809695,45633244:234993 -k1,10039:13400548,45633244:234993 -k1,10039:16312031,45633244:234993 -k1,10039:17233187,45633244:234994 -k1,10039:21492091,45633244:234993 -k1,10039:22258581,45633244:234993 -k1,10039:25224459,45633244:234993 -k1,10039:26072214,45633244:234993 -k1,10039:27326293,45633244:234994 -k1,10039:29520812,45633244:234993 -k1,10039:31391584,45633244:234993 -k1,10039:32583029,45633244:0 -) -] -(1,10041:32583029,45706769:0,0,0 -g1,10041:32583029,45706769 -) -) -] -(1,10041:6630773,47279633:25952256,0,0 -h1,10041:6630773,47279633:25952256,0,0 -) -] -h1,10041:4262630,4025873:0,0,0 -] -!21224 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,10046:3078558,4812305:0,0,0 +(1,10046:3078558,49800853:0,16384,2228224 +g1,10046:29030814,49800853 +g1,10046:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10046:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10046:37855564,49800853:1179648,16384,0 +) +) +k1,10046:3078556,49800853:-34777008 +) +] +g1,10046:6630773,4812305 +g1,10046:6630773,4812305 +g1,10046:9714897,4812305 +g1,10046:11353297,4812305 +g1,10046:12155457,4812305 +g1,10046:13478628,4812305 +g1,10046:16087616,4812305 +k1,10046:31387652,4812305:15300036 +) +) +] +[1,10046:6630773,45706769:25952256,40108032,0 +(1,10046:6630773,45706769:25952256,40108032,0 +(1,10046:6630773,45706769:0,0,0 +g1,10046:6630773,45706769 +) +[1,10046:6630773,45706769:25952256,40108032,0 +(1,10011:6630773,6254097:25952256,513147,134348 +k1,10010:9040229,6254097:254632 +k1,10010:10304116,6254097:254633 +k1,10010:12391135,6254097:254632 +k1,10010:13177265,6254097:254633 +k1,10010:14241267,6254097:254632 +k1,10010:15890506,6254097:254633 +k1,10010:18576524,6254097:254632 +k1,10010:19187017,6254097:254633 +k1,10010:22618834,6254097:254632 +k1,10010:24957512,6254097:254633 +k1,10010:26871516,6254097:254632 +k1,10010:27777577,6254097:254633 +k1,10010:31391584,6254097:254632 +k1,10010:32583029,6254097:0 +) +(1,10011:6630773,7095585:25952256,513147,134348 +k1,10010:7248504,7095585:261871 +k1,10010:8961342,7095585:261871 +k1,10010:12055024,7095585:261871 +k1,10010:14400940,7095585:261871 +k1,10010:15194308,7095585:261871 +k1,10010:18095314,7095585:261871 +k1,10010:20502177,7095585:261870 +k1,10010:23428087,7095585:261871 +k1,10010:24349250,7095585:261871 +k1,10010:25630206,7095585:261871 +k1,10010:28472229,7095585:261871 +k1,10010:32227169,7095585:261871 +k1,10010:32583029,7095585:0 +) +(1,10011:6630773,7937073:25952256,513147,134348 +k1,10010:8449023,7937073:248007 +k1,10010:10781075,7937073:248007 +k1,10010:11680510,7937073:248007 +k1,10010:14285846,7937073:248006 +k1,10010:14889713,7937073:248007 +k1,10010:17493084,7937073:248007 +k1,10010:18979066,7937073:248007 +k1,10010:19886365,7937073:248007 +k1,10010:23383647,7937073:248007 +k1,10010:25550548,7937073:248007 +k1,10010:26449982,7937073:248006 +k1,10010:28084731,7937073:248007 +k1,10010:29168322,7937073:248007 +k1,10010:31658316,7937073:248007 +k1,10010:32583029,7937073:0 +) +(1,10011:6630773,8778561:25952256,513147,134348 +k1,10010:9265723,8778561:193079 +k1,10010:9990299,8778561:193079 +k1,10010:11467884,8778561:193079 +k1,10010:12608614,8778561:193079 +k1,10010:14297880,8778561:193079 +k1,10010:15775465,8778561:193079 +k1,10010:17829111,8778561:193079 +k1,10010:18673618,8778561:193079 +k1,10010:19614463,8778561:193079 +k1,10010:21778865,8778561:193079 +k1,10010:24322720,8778561:193079 +k1,10010:25707244,8778561:193079 +k1,10010:28520452,8778561:193079 +k1,10010:32583029,8778561:0 +) +(1,10011:6630773,9620049:25952256,513147,134348 +k1,10010:9020871,9620049:216924 +k1,10010:9853833,9620049:216924 +k1,10010:11089842,9620049:216924 +k1,10010:13467488,9620049:216924 +k1,10010:14552764,9620049:216924 +k1,10010:16950071,9620049:216924 +k1,10010:18114646,9620049:216924 +k1,10010:19350656,9620049:216925 +k1,10010:20992988,9620049:216924 +k1,10010:22947927,9620049:216924 +k1,10010:25121756,9620049:216924 +k1,10010:26772608,9620049:216924 +k1,10010:27578045,9620049:216924 +k1,10010:28836991,9620049:216924 +k1,10010:30550102,9620049:216924 +k1,10010:32051532,9620049:216924 +k1,10010:32583029,9620049:0 +) +(1,10011:6630773,10461537:25952256,513147,126483 +k1,10010:7503188,10461537:220987 +k1,10010:8471942,10461537:220988 +k1,10010:10206155,10461537:220987 +k1,10010:12091101,10461537:220987 +k1,10010:12994973,10461537:220987 +k1,10010:14163612,10461537:220988 +k1,10010:16270070,10461537:220987 +k1,10010:21226689,10461537:220987 +k1,10010:22551958,10461537:220987 +k1,10010:25144694,10461537:220988 +k1,10010:26175051,10461537:220987 +k1,10010:27415123,10461537:220987 +k1,10010:28728595,10461537:220987 +k1,10010:29608875,10461537:220988 +k1,10010:30185722,10461537:220987 +k1,10010:32583029,10461537:0 +) +(1,10011:6630773,11303025:25952256,513147,126483 +k1,10010:8086057,11303025:227795 +k1,10010:8996738,11303025:227796 +k1,10010:10758731,11303025:227795 +k1,10010:11637955,11303025:227796 +k1,10010:12613516,11303025:227795 +k1,10010:14068801,11303025:227796 +k1,10010:16630333,11303025:227795 +k1,10010:17517421,11303025:227796 +k1,10010:19891519,11303025:227795 +k1,10010:20802200,11303025:227796 +k1,10010:22915466,11303025:227795 +k1,10010:23674759,11303025:227796 +k1,10010:24968825,11303025:227795 +k1,10010:25552481,11303025:227796 +k1,10010:28066827,11303025:227795 +k1,10010:28946051,11303025:227796 +k1,10010:31563944,11303025:227795 +k1,10010:32583029,11303025:0 +) +(1,10011:6630773,12144513:25952256,513147,134348 +g1,10010:10608153,12144513 +g1,10010:11998827,12144513 +g1,10010:14170034,12144513 +g1,10010:15028555,12144513 +g1,10010:16246869,12144513 +g1,10010:17729293,12144513 +g1,10010:20012567,12144513 +g1,10010:21344258,12144513 +g1,10010:22291253,12144513 +g1,10010:23261185,12144513 +k1,10011:32583029,12144513:5909384 +g1,10011:32583029,12144513 +) +(1,10013:6630773,12986001:25952256,513147,134348 +h1,10012:6630773,12986001:983040,0,0 +k1,10012:8419414,12986001:177766 +k1,10012:9800422,12986001:177767 +k1,10012:12395811,12986001:177766 +k1,10012:13744050,12986001:177766 +k1,10012:15054279,12986001:177767 +k1,10012:17675227,12986001:177766 +k1,10012:20345327,12986001:177766 +k1,10012:21917045,12986001:177767 +k1,10012:25481712,12986001:177766 +k1,10012:29192524,12986001:177766 +k1,10012:30029583,12986001:177767 +k1,10012:31896867,12986001:177766 +k1,10012:32583029,12986001:0 +) +(1,10013:6630773,13827489:25952256,513147,134348 +k1,10012:10983734,13827489:151448 +k1,10012:11751219,13827489:151447 +k1,10012:13594807,13827489:151448 +k1,10012:14405546,13827489:151447 +k1,10012:15576079,13827489:151448 +k1,10012:18637980,13827489:151447 +k1,10012:20073934,13827489:151448 +k1,10012:22296319,13827489:151447 +k1,10012:23730962,13827489:151448 +k1,10012:27544561,13827489:151447 +k1,10012:28347437,13827489:151448 +k1,10012:32583029,13827489:0 +) +(1,10013:6630773,14668977:25952256,513147,126483 +k1,10012:8205931,14668977:185795 +k1,10012:9007765,14668977:185796 +k1,10012:9782073,14668977:185795 +k1,10012:10785757,14668977:185795 +k1,10012:11587591,14668977:185796 +k1,10012:14527864,14668977:185795 +k1,10012:17461584,14668977:185795 +k1,10012:17860358,14668977:185782 +k1,10012:19178616,14668977:185796 +k1,10012:21102426,14668977:185795 +k1,10012:22938418,14668977:185795 +k1,10012:23933584,14668977:185796 +k1,10012:25138464,14668977:185795 +k1,10012:28108228,14668977:185795 +k1,10012:29875408,14668977:185796 +k1,10012:31252648,14668977:185795 +k1,10012:32583029,14668977:0 +) +(1,10013:6630773,15510465:25952256,513147,126483 +k1,10012:7522952,15510465:240751 +k1,10012:8856188,15510465:240751 +k1,10012:10735994,15510465:240751 +k1,10012:12419193,15510465:240752 +k1,10012:13469314,15510465:240751 +k1,10012:15218704,15510465:240751 +k1,10012:16694809,15510465:240751 +k1,10012:17551598,15510465:240751 +k1,10012:18811434,15510465:240751 +k1,10012:21606778,15510465:240751 +k1,10012:22506822,15510465:240752 +k1,10012:24310607,15510465:240751 +k1,10012:25748045,15510465:240751 +k1,10012:27901137,15510465:240751 +(1,10012:27901137,15510465:4681892,505283,11795 +) +k1,10012:32583029,15510465:0 +) +(1,10013:6630773,16351953:25952256,513147,134348 +(1,10012:6837867,16351953:4681892,505283,11795 +) +k1,10012:11983608,16351953:256755 +k1,10012:13431808,16351953:256755 +(1,10012:13431808,16351953:3225027,485622,134348 +) +k1,10012:16913591,16351953:256756 +(1,10012:17120685,16351953:3225027,485622,134348 +) +k1,10012:20809561,16351953:256755 +k1,10012:22954408,16351953:256755 +k1,10012:24932138,16351953:256755 +k1,10012:26207979,16351953:256756 +k1,10012:28118207,16351953:256755 +k1,10012:31015408,16351953:256755 +k1,10012:32583029,16351953:0 +) +(1,10013:6630773,17193441:25952256,513147,126483 +g1,10012:7849087,17193441 +g1,10012:11699327,17193441 +g1,10012:12557848,17193441 +g1,10012:14146440,17193441 +k1,10013:32583029,17193441:15708325 +g1,10013:32583029,17193441 +) +(1,10014:6630773,20001009:25952256,32768,229376 +(1,10014:6630773,20001009:0,32768,229376 +(1,10014:6630773,20001009:5505024,32768,229376 +r1,10014:12135797,20001009:5505024,262144,229376 +) +k1,10014:6630773,20001009:-5505024 +) +(1,10014:6630773,20001009:25952256,32768,0 +r1,10014:32583029,20001009:25952256,32768,0 +) +) +(1,10014:6630773,21605337:25952256,606339,161218 +(1,10014:6630773,21605337:1974731,582746,14155 +g1,10014:6630773,21605337 +g1,10014:8605504,21605337 +) +g1,10014:12473177,21605337 +g1,10014:14599689,21605337 +g1,10014:15614973,21605337 +g1,10014:17348269,21605337 +k1,10014:32583029,21605337:12233735 +g1,10014:32583029,21605337 +) +v1,10017:6630773,23189019:0,393216,0 +(1,10021:6630773,23504115:25952256,708312,196608 +g1,10021:6630773,23504115 +g1,10021:6630773,23504115 +g1,10021:6434165,23504115 +(1,10021:6434165,23504115:0,708312,196608 +r1,10021:32779637,23504115:26345472,904920,196608 +k1,10021:6434165,23504115:-26345472 +) +(1,10021:6434165,23504115:26345472,708312,196608 +[1,10021:6630773,23504115:25952256,511704,0 +(1,10019:6630773,23396637:25952256,404226,107478 +(1,10018:6630773,23396637:0,0,0 +g1,10018:6630773,23396637 +g1,10018:6630773,23396637 +g1,10018:6303093,23396637 +(1,10018:6303093,23396637:0,0,0 +) +g1,10018:6630773,23396637 +) +k1,10019:6630773,23396637:0 +h1,10019:19908891,23396637:0,0,0 +k1,10019:32583029,23396637:12674138 +g1,10019:32583029,23396637 +) +] +) +g1,10021:32583029,23504115 +g1,10021:6630773,23504115 +g1,10021:6630773,23504115 +g1,10021:32583029,23504115 +g1,10021:32583029,23504115 +) +h1,10021:6630773,23700723:0,0,0 +(1,10025:6630773,25066499:25952256,513147,126483 +h1,10024:6630773,25066499:983040,0,0 +k1,10024:8614266,25066499:171423 +k1,10024:9903734,25066499:171424 +k1,10024:11094242,25066499:171423 +k1,10024:14257384,25066499:171423 +k1,10024:17187217,25066499:171423 +k1,10024:17974679,25066499:171424 +k1,10024:19349343,25066499:171423 +k1,10024:22112060,25066499:171423 +k1,10024:23453957,25066499:171424 +k1,10024:25155646,25066499:171423 +k1,10024:26633202,25066499:171423 +k1,10024:27456053,25066499:171423 +k1,10024:29003733,25066499:171424 +k1,10024:30867296,25066499:171423 +k1,10025:32583029,25066499:0 +) +(1,10025:6630773,25907987:25952256,513147,134348 +k1,10024:8257991,25907987:219505 +k1,10024:10045116,25907987:219504 +k1,10024:11283706,25907987:219505 +k1,10024:13603639,25907987:219504 +k1,10024:15055221,25907987:219505 +k1,10024:17553412,25907987:219504 +h1,10024:18524000,25907987:0,0,0 +k1,10024:18743505,25907987:219505 +k1,10024:19772379,25907987:219504 +k1,10024:21490037,25907987:219505 +h1,10024:22685414,25907987:0,0,0 +k1,10024:22904918,25907987:219504 +k1,10024:24072074,25907987:219505 +k1,10024:26409046,25907987:219504 +k1,10024:27437921,25907987:219505 +k1,10024:28676510,25907987:219504 +k1,10024:29988500,25907987:219505 +k1,10024:30867296,25907987:219504 +k1,10025:32583029,25907987:0 +) +(1,10025:6630773,26749475:25952256,505283,134348 +k1,10025:32583029,26749475:24163778 +g1,10025:32583029,26749475 +) +v1,10027:6630773,27939941:0,393216,0 +(1,10038:6630773,32911992:25952256,5365267,196608 +g1,10038:6630773,32911992 +g1,10038:6630773,32911992 +g1,10038:6434165,32911992 +(1,10038:6434165,32911992:0,5365267,196608 +r1,10038:32779637,32911992:26345472,5561875,196608 +k1,10038:6434165,32911992:-26345472 +) +(1,10038:6434165,32911992:26345472,5365267,196608 +[1,10038:6630773,32911992:25952256,5168659,0 +(1,10029:6630773,28147559:25952256,404226,101187 +(1,10028:6630773,28147559:0,0,0 +g1,10028:6630773,28147559 +g1,10028:6630773,28147559 +g1,10028:6303093,28147559 +(1,10028:6303093,28147559:0,0,0 +) +g1,10028:6630773,28147559 +) +k1,10029:6630773,28147559:0 +h1,10029:12637541,28147559:0,0,0 +k1,10029:32583029,28147559:19945488 +g1,10029:32583029,28147559 +) +(1,10030:6630773,28813737:25952256,404226,101187 +h1,10030:6630773,28813737:0,0,0 +k1,10030:6630773,28813737:0 +h1,10030:11372958,28813737:0,0,0 +k1,10030:32583030,28813737:21210072 +g1,10030:32583030,28813737 +) +(1,10031:6630773,29479915:25952256,404226,107478 +h1,10031:6630773,29479915:0,0,0 +k1,10031:6630773,29479915:0 +h1,10031:12005250,29479915:0,0,0 +k1,10031:32583030,29479915:20577780 +g1,10031:32583030,29479915 +) +(1,10032:6630773,30146093:25952256,404226,101187 +h1,10032:6630773,30146093:0,0,0 +k1,10032:6630773,30146093:0 +h1,10032:11056813,30146093:0,0,0 +k1,10032:32583029,30146093:21526216 +g1,10032:32583029,30146093 +) +(1,10033:6630773,30812271:25952256,404226,107478 +h1,10033:6630773,30812271:0,0,0 +k1,10033:6630773,30812271:0 +h1,10033:11689104,30812271:0,0,0 +k1,10033:32583028,30812271:20893924 +g1,10033:32583028,30812271 +) +(1,10034:6630773,31478449:25952256,404226,101187 +h1,10034:6630773,31478449:0,0,0 +k1,10034:6630773,31478449:0 +h1,10034:11056813,31478449:0,0,0 +k1,10034:32583029,31478449:21526216 +g1,10034:32583029,31478449 +) +(1,10035:6630773,32144627:25952256,404226,101187 +h1,10035:6630773,32144627:0,0,0 +k1,10035:6630773,32144627:0 +h1,10035:11056813,32144627:0,0,0 +k1,10035:32583029,32144627:21526216 +g1,10035:32583029,32144627 +) +(1,10036:6630773,32810805:25952256,404226,101187 +h1,10036:6630773,32810805:0,0,0 +k1,10036:6630773,32810805:0 +h1,10036:12321395,32810805:0,0,0 +k1,10036:32583029,32810805:20261634 +g1,10036:32583029,32810805 +) +] +) +g1,10038:32583029,32911992 +g1,10038:6630773,32911992 +g1,10038:6630773,32911992 +g1,10038:32583029,32911992 +g1,10038:32583029,32911992 +) +h1,10038:6630773,33108600:0,0,0 +(1,10041:6630773,36440456:25952256,32768,229376 +(1,10041:6630773,36440456:0,32768,229376 +(1,10041:6630773,36440456:5505024,32768,229376 +r1,10041:12135797,36440456:5505024,262144,229376 +) +k1,10041:6630773,36440456:-5505024 +) +(1,10041:6630773,36440456:25952256,32768,0 +r1,10041:32583029,36440456:25952256,32768,0 +) +) +(1,10041:6630773,38044784:25952256,615776,151780 +(1,10041:6630773,38044784:1974731,582746,14155 +g1,10041:6630773,38044784 +g1,10041:8605504,38044784 +) +g1,10041:14366905,38044784 +g1,10041:15787988,38044784 +(1,10041:15787988,38044784:0,551318,138361 +r1,10041:20015084,38044784:4227096,689679,138361 +k1,10041:15787988,38044784:-4227096 +) +(1,10041:15787988,38044784:4227096,551318,138361 +k1,10041:15787988,38044784:3277 +h1,10041:20011807,38044784:0,493446,135084 +) +k1,10041:32583029,38044784:12567945 +g1,10041:32583029,38044784 +) +(1,10043:6630773,39349612:25952256,555811,12975 +(1,10043:6630773,39349612:2450326,534184,12975 +g1,10043:6630773,39349612 +g1,10043:9081099,39349612 +) +k1,10043:32583029,39349612:19473564 +g1,10043:32583029,39349612 +) +(1,10045:6630773,40584316:25952256,513147,134348 +k1,10044:7979366,40584316:151906 +k1,10044:10826769,40584316:151907 +k1,10044:12078369,40584316:151906 +k1,10044:15420568,40584316:151906 +k1,10044:16231766,40584316:151906 +k1,10044:17402758,40584316:151907 +k1,10044:17969460,40584316:151859 +k1,10044:20963662,40584316:151906 +k1,10044:21647066,40584316:151907 +k1,10044:23083478,40584316:151906 +k1,10044:26638013,40584316:151906 +k1,10044:27781479,40584316:151906 +k1,10044:30138673,40584316:151907 +k1,10044:30942007,40584316:151906 +k1,10045:32583029,40584316:0 +) +(1,10045:6630773,41425804:25952256,513147,134348 +k1,10044:8448321,41425804:219780 +k1,10044:9429628,41425804:219779 +k1,10044:11333028,41425804:219780 +k1,10044:12030565,41425804:219780 +k1,10044:13269430,41425804:219780 +k1,10044:16891838,41425804:219779 +k1,10044:18103178,41425804:219780 +k1,10044:21158045,41425804:219780 +k1,10044:23387813,41425804:219779 +k1,10044:24626678,41425804:219780 +k1,10044:26342645,41425804:219780 +k1,10044:27221717,41425804:219780 +k1,10044:27797356,41425804:219779 +k1,10044:30886302,41425804:219780 +k1,10044:32583029,41425804:0 +) +(1,10045:6630773,42267292:25952256,513147,134348 +k1,10044:9385633,42267292:183883 +k1,10044:10561076,42267292:183883 +k1,10044:12239180,42267292:183883 +k1,10044:13074491,42267292:183883 +k1,10044:14277459,42267292:183883 +k1,10044:17330508,42267292:183883 +k1,10044:17992149,42267292:183884 +k1,10044:22377545,42267292:183883 +k1,10044:24977740,42267292:183883 +k1,10044:26364864,42267292:183883 +k1,10044:29408738,42267292:183883 +k1,10044:31548871,42267292:183883 +k1,10045:32583029,42267292:0 +) +(1,10045:6630773,43108780:25952256,513147,134348 +k1,10044:8303019,43108780:179336 +k1,10044:8838215,43108780:179336 +k1,10044:10568788,43108780:179336 +k1,10044:11809807,43108780:179336 +k1,10044:12798513,43108780:179336 +k1,10044:17227203,43108780:179336 +k1,10044:20250802,43108780:179336 +k1,10044:20844961,43108780:179316 +k1,10044:21640335,43108780:179336 +k1,10044:23421371,43108780:179336 +k1,10044:26757576,43108780:179336 +k1,10044:28312513,43108780:179336 +k1,10044:30537883,43108780:179336 +k1,10044:31073079,43108780:179336 +k1,10044:32583029,43108780:0 +) +(1,10045:6630773,43950268:25952256,513147,134348 +k1,10044:7294854,43950268:198120 +k1,10044:8684419,43950268:198120 +k1,10044:10580577,43950268:198120 +k1,10044:11797783,43950268:198121 +k1,10044:13676246,43950268:198120 +k1,10044:16619014,43950268:198120 +k1,10044:21337808,43950268:198120 +k1,10044:22483579,43950268:198120 +k1,10044:25167480,43950268:198120 +k1,10044:28029640,43950268:198121 +k1,10044:28894916,43950268:198120 +k1,10044:29507878,43950268:198119 +k1,10044:31591469,43950268:198120 +k1,10044:32583029,43950268:0 +) +(1,10045:6630773,44791756:25952256,513147,134348 +k1,10044:8161095,44791756:176348 +k1,10044:9921448,44791756:176348 +k1,10044:10710558,44791756:176348 +k1,10044:13606651,44791756:176349 +k1,10044:17721713,44791756:176348 +k1,10044:20398260,44791756:176348 +k1,10044:21233900,44791756:176348 +k1,10044:23873746,44791756:176348 +k1,10044:25069179,44791756:176348 +k1,10044:27524214,44791756:176348 +k1,10044:28115383,44791756:176326 +k1,10044:31482024,44791756:176348 +k1,10044:32583029,44791756:0 +) +(1,10045:6630773,45633244:25952256,513147,134348 +k1,10044:8248083,45633244:241709 +k1,10044:8845651,45633244:241708 +k1,10044:12118400,45633244:241709 +k1,10044:15014972,45633244:241709 +k1,10044:17444927,45633244:241708 +k1,10044:18496006,45633244:241709 +k1,10044:22987068,45633244:241708 +k1,10044:26163479,45633244:241709 +k1,10044:27608429,45633244:241709 +k1,10044:30038384,45633244:241708 +k1,10044:31384375,45633244:241709 +k1,10044:32583029,45633244:0 +) +] +(1,10046:32583029,45706769:0,0,0 +g1,10046:32583029,45706769 +) +) +] +(1,10046:6630773,47279633:25952256,0,0 +h1,10046:6630773,47279633:25952256,0,0 +) +] +h1,10046:4262630,4025873:0,0,0 +] +!20757 }190 -Input:1262:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1263:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1264:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1265:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1266:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1267:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1268:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {191 -[1,10084:4262630,47279633:28320399,43253760,0 -(1,10084:4262630,4025873:0,0,0 -[1,10084:-473657,4025873:25952256,0,0 -(1,10084:-473657,-710414:25952256,0,0 -h1,10084:-473657,-710414:0,0,0 -(1,10084:-473657,-710414:0,0,0 -(1,10084:-473657,-710414:0,0,0 -g1,10084:-473657,-710414 -(1,10084:-473657,-710414:65781,0,65781 -g1,10084:-407876,-710414 -[1,10084:-407876,-644633:0,0,0 +[1,10089:4262630,47279633:28320399,43253760,0 +(1,10089:4262630,4025873:0,0,0 +[1,10089:-473657,4025873:25952256,0,0 +(1,10089:-473657,-710414:25952256,0,0 +h1,10089:-473657,-710414:0,0,0 +(1,10089:-473657,-710414:0,0,0 +(1,10089:-473657,-710414:0,0,0 +g1,10089:-473657,-710414 +(1,10089:-473657,-710414:65781,0,65781 +g1,10089:-407876,-710414 +[1,10089:-407876,-644633:0,0,0 ] ) -k1,10084:-473657,-710414:-65781 +k1,10089:-473657,-710414:-65781 ) ) -k1,10084:25478599,-710414:25952256 -g1,10084:25478599,-710414 +k1,10089:25478599,-710414:25952256 +g1,10089:25478599,-710414 ) ] ) -[1,10084:6630773,47279633:25952256,43253760,0 -[1,10084:6630773,4812305:25952256,786432,0 -(1,10084:6630773,4812305:25952256,513147,134348 -(1,10084:6630773,4812305:25952256,513147,134348 -g1,10084:3078558,4812305 -[1,10084:3078558,4812305:0,0,0 -(1,10084:3078558,2439708:0,1703936,0 -k1,10084:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10084:2537886,2439708:1179648,16384,0 +[1,10089:6630773,47279633:25952256,43253760,0 +[1,10089:6630773,4812305:25952256,786432,0 +(1,10089:6630773,4812305:25952256,513147,134348 +(1,10089:6630773,4812305:25952256,513147,134348 +g1,10089:3078558,4812305 +[1,10089:3078558,4812305:0,0,0 +(1,10089:3078558,2439708:0,1703936,0 +k1,10089:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10089:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10084:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10089:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10084:3078558,4812305:0,0,0 -(1,10084:3078558,2439708:0,1703936,0 -g1,10084:29030814,2439708 -g1,10084:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10084:36151628,1915420:16384,1179648,0 +[1,10089:3078558,4812305:0,0,0 +(1,10089:3078558,2439708:0,1703936,0 +g1,10089:29030814,2439708 +g1,10089:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10089:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10084:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10089:37855564,2439708:1179648,16384,0 ) ) -k1,10084:3078556,2439708:-34777008 +k1,10089:3078556,2439708:-34777008 ) ] -[1,10084:3078558,4812305:0,0,0 -(1,10084:3078558,49800853:0,16384,2228224 -k1,10084:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10084:2537886,49800853:1179648,16384,0 +[1,10089:3078558,4812305:0,0,0 +(1,10089:3078558,49800853:0,16384,2228224 +k1,10089:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10089:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10084:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10089:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) -) -) -] -[1,10084:3078558,4812305:0,0,0 -(1,10084:3078558,49800853:0,16384,2228224 -g1,10084:29030814,49800853 -g1,10084:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10084:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10084:37855564,49800853:1179648,16384,0 -) -) -k1,10084:3078556,49800853:-34777008 -) -] -g1,10084:6630773,4812305 -k1,10084:25241686,4812305:17415536 -g1,10084:26807341,4812305 -g1,10084:30339731,4812305 -g1,10084:31154998,4812305 -) -) -] -[1,10084:6630773,45706769:25952256,40108032,0 -(1,10084:6630773,45706769:25952256,40108032,0 -(1,10084:6630773,45706769:0,0,0 -g1,10084:6630773,45706769 -) -[1,10084:6630773,45706769:25952256,40108032,0 -(1,10040:6630773,6254097:25952256,513147,134348 -k1,10039:10998489,6254097:142610 -k1,10039:11555886,6254097:142554 -k1,10039:13035430,6254097:142610 -k1,10039:14893773,6254097:142610 -k1,10039:17064067,6254097:142610 -k1,10039:17865969,6254097:142610 -k1,10039:18364439,6254097:142610 -k1,10039:20389898,6254097:142610 -k1,10039:21921871,6254097:142610 -k1,10039:23940778,6254097:142611 -k1,10039:25781426,6254097:142610 -k1,10039:27299637,6254097:142610 -k1,10039:29452892,6254097:142610 -k1,10039:30211540,6254097:142610 -k1,10039:30710010,6254097:142610 -k1,10039:32583029,6254097:0 -) -(1,10040:6630773,7095585:25952256,505283,134348 -g1,10039:9212891,7095585 -g1,10039:10095005,7095585 -g1,10039:11760930,7095585 -g1,10039:13188959,7095585 -g1,10039:14158891,7095585 -g1,10039:17136847,7095585 -g1,10039:18811291,7095585 -k1,10040:32583029,7095585:10936651 -g1,10040:32583029,7095585 -) -(1,10042:6630773,7937073:25952256,513147,134348 -h1,10041:6630773,7937073:983040,0,0 -k1,10041:10934595,7937073:200613 -k1,10041:12326653,7937073:200613 -k1,10041:15311891,7937073:200613 -k1,10041:17080125,7937073:200613 -k1,10041:19860891,7937073:200614 -k1,10041:23571611,7937073:200613 -k1,10041:24864709,7937073:200613 -k1,10041:28467951,7937073:200613 -k1,10041:29430092,7937073:200613 -k1,10041:32583029,7937073:0 -) -(1,10042:6630773,8778561:25952256,513147,134348 -k1,10041:9507934,8778561:157417 -k1,10041:12023993,8778561:157418 -k1,10041:13313217,8778561:157417 -k1,10041:15671989,8778561:157418 -k1,10041:18764108,8778561:157417 -k1,10041:20053332,8778561:157417 -k1,10041:24186819,8778561:157418 -k1,10041:26354225,8778561:157417 -k1,10041:28208370,8778561:157418 -k1,10041:31391584,8778561:157417 -k1,10041:32583029,8778561:0 -) -(1,10042:6630773,9620049:25952256,513147,134348 -k1,10041:9659192,9620049:243794 -k1,10041:12165288,9620049:243793 -k1,10041:13428167,9620049:243794 -k1,10041:16183301,9620049:243794 -k1,10041:18632381,9620049:243793 -k1,10041:19562337,9620049:243794 -k1,10041:20576833,9620049:243793 -k1,10041:24066625,9620049:243794 -k1,10041:25691263,9620049:243794 -k1,10041:29021802,9620049:243793 -k1,10041:30284681,9620049:243794 -k1,10041:32583029,9620049:0 -) -(1,10042:6630773,10461537:25952256,513147,134348 -k1,10041:8384385,10461537:231866 -k1,10041:9563903,10461537:231867 -k1,10041:12254024,10461537:231866 -k1,10041:14986089,10461537:231866 -k1,10041:16409400,10461537:231866 -k1,10041:17927083,10461537:231867 -k1,10041:18920477,10461537:231866 -k1,10041:21872087,10461537:231866 -k1,10041:23123038,10461537:231866 -k1,10041:24885171,10461537:231867 -k1,10041:25768465,10461537:231866 -k1,10041:27716064,10461537:231866 -k1,10041:28303790,10461537:231866 -k1,10041:30045607,10461537:231867 -k1,10041:30936765,10461537:231866 -k1,10042:32583029,10461537:0 -) -(1,10042:6630773,11303025:25952256,513147,134348 -k1,10041:8993286,11303025:219486 -k1,10041:11900403,11303025:219486 -k1,10041:13138974,11303025:219486 -k1,10041:14693428,11303025:219486 -k1,10041:17542874,11303025:219486 -k1,10041:22011715,11303025:219487 -k1,10041:23612045,11303025:219486 -k1,10041:24363028,11303025:219486 -k1,10041:24938374,11303025:219486 -k1,10041:28711222,11303025:219486 -k1,10041:31510860,11303025:219486 -k1,10041:32583029,11303025:0 -) -(1,10042:6630773,12144513:25952256,513147,134348 -k1,10041:9930763,12144513:161471 -k1,10041:12069454,12144513:161470 -k1,10041:13928963,12144513:161471 -k1,10041:16409752,12144513:161470 -k1,10041:17965174,12144513:161471 -k1,10041:19480618,12144513:161470 -k1,10041:21212987,12144513:161471 -k1,10041:22763820,12144513:161470 -k1,10041:24363806,12144513:161471 -k1,10041:26868188,12144513:161470 -k1,10041:28410503,12144513:161471 -k1,10041:30241830,12144513:161470 -k1,10041:31896867,12144513:161471 -k1,10041:32583029,12144513:0 -) -(1,10042:6630773,12986001:25952256,513147,134348 -k1,10041:9211800,12986001:245979 -k1,10041:10851729,12986001:245978 -k1,10041:14607815,12986001:245979 -k1,10041:17475888,12986001:245978 -k1,10041:18077727,12986001:245979 -k1,10041:19907710,12986001:245978 -k1,10041:24808711,12986001:245979 -k1,10041:25713981,12986001:245978 -k1,10041:26979045,12986001:245979 -k1,10041:32583029,12986001:0 -) -(1,10042:6630773,13827489:25952256,505283,134348 -k1,10041:10240059,13827489:245323 -k1,10041:13832961,13827489:245323 -k1,10041:16658436,13827489:245323 -k1,10041:20413866,13827489:245323 -k1,10041:22705224,13827489:245324 -k1,10041:23759917,13827489:245323 -k1,10041:26519856,13827489:245323 -k1,10041:27377941,13827489:245323 -k1,10041:31021961,13827489:245323 -k1,10042:32583029,13827489:0 -) -(1,10042:6630773,14668977:25952256,505283,126483 -g1,10041:9690649,14668977 -g1,10041:11283829,14668977 -g1,10041:13544821,14668977 -(1,10041:13544821,14668977:0,459977,115847 -r1,10041:17068493,14668977:3523672,575824,115847 -k1,10041:13544821,14668977:-3523672 -) -(1,10041:13544821,14668977:3523672,459977,115847 -k1,10041:13544821,14668977:3277 -h1,10041:17065216,14668977:0,411205,112570 -) -k1,10042:32583029,14668977:15340866 -g1,10042:32583029,14668977 -) -(1,10043:6630773,16760237:25952256,555811,12975 -(1,10043:6630773,16760237:2450326,534184,12975 -g1,10043:6630773,16760237 -g1,10043:9081099,16760237 -) -k1,10043:32583028,16760237:20980956 -g1,10043:32583028,16760237 -) -(1,10047:6630773,17994941:25952256,513147,134348 -k1,10046:8053201,17994941:225741 -k1,10046:10734577,17994941:225742 -k1,10046:11619610,17994941:225741 -k1,10046:14425503,17994941:225741 -k1,10046:16813277,17994941:225742 -k1,10046:19708299,17994941:225741 -k1,10046:21442680,17994941:225742 -(1,10046:21442680,17994941:0,452978,115847 -r1,10046:22504369,17994941:1061689,568825,115847 -k1,10046:21442680,17994941:-1061689 -) -(1,10046:21442680,17994941:1061689,452978,115847 -k1,10046:21442680,17994941:3277 -h1,10046:22501092,17994941:0,411205,112570 -) -k1,10046:22730110,17994941:225741 -k1,10046:24511020,17994941:225741 -k1,10046:25422924,17994941:225742 -k1,10046:29047362,17994941:225741 -k1,10046:32583029,17994941:0 -) -(1,10047:6630773,18836429:25952256,505283,126483 -k1,10046:8216925,18836429:192201 -(1,10046:8216925,18836429:0,459977,115847 -r1,10046:11740597,18836429:3523672,575824,115847 -k1,10046:8216925,18836429:-3523672 -) -(1,10046:8216925,18836429:3523672,459977,115847 -k1,10046:8216925,18836429:3277 -h1,10046:11737320,18836429:0,411205,112570 -) -k1,10046:11932797,18836429:192200 -k1,10046:13316443,18836429:192201 -k1,10046:15224377,18836429:192201 -k1,10046:15874674,18836429:192200 -k1,10046:16422735,18836429:192201 -k1,10046:18997825,18836429:192201 -k1,10046:20918865,18836429:192200 -k1,10046:22491910,18836429:192201 -k1,10046:26082808,18836429:192201 -k1,10046:30483730,18836429:192200 -k1,10046:31207428,18836429:192201 -k1,10046:32583029,18836429:0 -) -(1,10047:6630773,19677917:25952256,513147,126483 -g1,10046:8914047,19677917 -g1,10046:9838104,19677917 -g1,10046:10653371,19677917 -g1,10046:12544740,19677917 -g1,10046:15900838,19677917 -g1,10046:17489430,19677917 -g1,10046:19895256,19677917 -g1,10046:21285930,19677917 -g1,10046:23626876,19677917 -g1,10046:24817665,19677917 -g1,10046:26083165,19677917 -k1,10047:32583029,19677917:3021213 -g1,10047:32583029,19677917 -) -(1,10049:6630773,20519405:25952256,513147,134348 -h1,10048:6630773,20519405:983040,0,0 -k1,10048:9052819,20519405:242319 -k1,10048:10850308,20519405:242320 -k1,10048:12284072,20519405:242319 -k1,10048:15311016,20519405:242319 -k1,10048:16837841,20519405:242319 -k1,10048:19660313,20519405:242320 -k1,10048:22064664,20519405:242319 -k1,10048:24598122,20519405:242319 -k1,10048:25768431,20519405:242319 -k1,10048:27702891,20519405:242320 -k1,10048:28604502,20519405:242319 -k1,10048:29865906,20519405:242319 -k1,10049:32583029,20519405:0 -) -(1,10049:6630773,21360893:25952256,513147,134348 -k1,10048:8052691,21360893:282247 -k1,10048:11069755,21360893:282247 -k1,10048:12113531,21360893:282248 -k1,10048:13414863,21360893:282247 -k1,10048:15785742,21360893:282247 -k1,10048:16727281,21360893:282247 -k1,10048:18443457,21360893:282248 -k1,10048:19140463,21360893:282163 -k1,10048:20812074,21360893:282248 -k1,10048:23300918,21360893:282247 -k1,10048:24195927,21360893:282247 -k1,10048:25497259,21360893:282247 -k1,10048:27094815,21360893:282248 -k1,10048:28036354,21360893:282247 -k1,10048:30890889,21360893:282247 -k1,10048:32583029,21360893:0 -) -(1,10049:6630773,22202381:25952256,513147,134348 -k1,10048:12155982,22202381:182714 -k1,10048:13521621,22202381:182714 -k1,10048:14355764,22202381:182715 -k1,10048:17199895,22202381:182714 -k1,10048:20846842,22202381:182714 -k1,10048:23113601,22202381:182714 -k1,10048:24243966,22202381:182714 -k1,10048:27050087,22202381:182715 -k1,10048:30447342,22202381:182714 -k1,10048:31821501,22202381:182714 -k1,10048:32583029,22202381:0 -) -(1,10049:6630773,23043869:25952256,513147,134348 -k1,10048:9011167,23043869:192802 -k1,10048:11730383,23043869:192803 -k1,10048:12870836,23043869:192802 -k1,10048:16377139,23043869:192803 -k1,10048:17229233,23043869:192802 -k1,10048:18977204,23043869:192802 -(1,10048:18977204,23043869:0,452978,115847 -r1,10048:20390605,23043869:1413401,568825,115847 -k1,10048:18977204,23043869:-1413401 -) -(1,10048:18977204,23043869:1413401,452978,115847 -k1,10048:18977204,23043869:3277 -h1,10048:20387328,23043869:0,411205,112570 -) -k1,10048:20583408,23043869:192803 -k1,10048:21967655,23043869:192802 -k1,10048:25158075,23043869:192803 -k1,10048:27877290,23043869:192802 -k1,10048:29017744,23043869:192803 -k1,10048:31923737,23043869:192802 -k1,10048:32583029,23043869:0 -) -(1,10049:6630773,23885357:25952256,513147,134348 -k1,10048:8377508,23885357:191566 -(1,10048:8377508,23885357:0,452978,115847 -r1,10048:10494333,23885357:2116825,568825,115847 -k1,10048:8377508,23885357:-2116825 -) -(1,10048:8377508,23885357:2116825,452978,115847 -k1,10048:8377508,23885357:3277 -h1,10048:10491056,23885357:0,411205,112570 -) -k1,10048:10859569,23885357:191566 -k1,10048:13943239,23885357:191566 -k1,10048:14794096,23885357:191565 -k1,10048:18094690,23885357:191566 -k1,10048:18817753,23885357:191566 -k1,10048:20295135,23885357:191566 -k1,10048:23422714,23885357:191566 -k1,10048:25008231,23885357:191566 -k1,10048:26009166,23885357:191565 -k1,10048:27404628,23885357:191566 -k1,10048:29664510,23885357:191566 -k1,10048:31821501,23885357:191566 -k1,10048:32583029,23885357:0 -) -(1,10049:6630773,24726845:25952256,513147,7863 -k1,10048:9332822,24726845:262799 -k1,10048:11428008,24726845:262799 -k1,10048:12682368,24726845:262800 -k1,10048:14230983,24726845:262799 -k1,10048:18010444,24726845:262799 -k1,10048:18889281,24726845:262799 -k1,10048:21417660,24726845:262799 -k1,10048:24440180,24726845:262799 -k1,10048:25362272,24726845:262800 -k1,10048:27091767,24726845:262799 -k1,10048:31391584,24726845:262799 -k1,10048:32583029,24726845:0 -) -(1,10049:6630773,25568333:25952256,513147,134348 -k1,10048:9871965,25568333:282897 -k1,10048:13291414,25568333:282896 -k1,10048:15864139,25568333:282897 -k1,10048:16806327,25568333:282896 -k1,10048:18644393,25568333:282897 -(1,10048:18644393,25568333:0,452978,115847 -r1,10048:19706082,25568333:1061689,568825,115847 -k1,10048:18644393,25568333:-1061689 -) -(1,10048:18644393,25568333:1061689,452978,115847 -k1,10048:18644393,25568333:3277 -h1,10048:19702805,25568333:0,411205,112570 -) -k1,10048:19988978,25568333:282896 -k1,10048:21376157,25568333:282897 -k1,10048:22406819,25568333:282896 -k1,10048:24895003,25568333:282897 -k1,10048:25864061,25568333:282896 -k1,10048:29549587,25568333:282897 -k1,10048:30483911,25568333:282896 -k1,10049:32583029,25568333:0 -) -(1,10049:6630773,26409821:25952256,513147,134348 -k1,10048:7977235,26409821:206791 -k1,10048:9468532,26409821:206791 -k1,10048:11746261,26409821:206791 -k1,10048:13342416,26409821:206792 -k1,10048:15755804,26409821:206791 -k1,10048:16648757,26409821:206791 -k1,10048:18737742,26409821:206791 -k1,10048:20641260,26409821:206791 -k1,10048:23873848,26409821:206791 -k1,10048:25072200,26409821:206792 -k1,10048:26345262,26409821:206791 -k1,10048:30128353,26409821:206791 -k1,10048:30986572,26409821:206791 -k1,10048:32583029,26409821:0 -) -(1,10049:6630773,27251309:25952256,513147,126483 -g1,10048:9638875,27251309 -g1,10048:10524266,27251309 -g1,10048:11079355,27251309 -g1,10048:13121456,27251309 -g1,10048:13979977,27251309 -g1,10048:15198291,27251309 -g1,10048:18914182,27251309 -g1,10048:19729449,27251309 -k1,10049:32583029,27251309:10595865 -g1,10049:32583029,27251309 -) -v1,10051:6630773,28617085:0,393216,0 -(1,10052:6630773,31734902:25952256,3511033,616038 -g1,10052:6630773,31734902 -(1,10052:6630773,31734902:25952256,3511033,616038 -(1,10052:6630773,32350940:25952256,4127071,0 -[1,10052:6630773,32350940:25952256,4127071,0 -(1,10052:6630773,32324726:25952256,4074643,0 -r1,10052:6656987,32324726:26214,4074643,0 -[1,10052:6656987,32324726:25899828,4074643,0 -(1,10052:6656987,31734902:25899828,2894995,0 -[1,10052:7246811,31734902:24720180,2894995,0 -(1,10052:7246811,29925443:24720180,1085536,298548 -(1,10051:7246811,29925443:0,1085536,298548 -r1,10052:8753226,29925443:1506415,1384084,298548 -k1,10051:7246811,29925443:-1506415 -) -(1,10051:7246811,29925443:1506415,1085536,298548 -) -k1,10051:8925559,29925443:172333 -k1,10051:9567785,29925443:172333 -k1,10051:10271615,29925443:172333 -k1,10051:11838555,29925443:172334 -k1,10051:12662316,29925443:172333 -k1,10051:14449456,29925443:172333 -k1,10051:16117976,29925443:172333 -k1,10051:17574815,29925443:172333 -k1,10051:18879610,29925443:172333 -k1,10051:20648400,29925443:172333 -k1,10051:23629606,29925443:172333 -k1,10051:25268636,29925443:172334 -k1,10051:26834920,29925443:172333 -k1,10051:28396616,29925443:172333 -k1,10051:30775546,29925443:172333 -k1,10051:31966991,29925443:0 -) -(1,10052:7246811,30766931:24720180,505283,134348 -k1,10051:9734858,30766931:172660 -k1,10051:12842220,30766931:172660 -k1,10051:14511067,30766931:172660 -k1,10051:15968233,30766931:172660 -k1,10051:16672390,30766931:172660 -k1,10051:20816532,30766931:172660 -k1,10051:23231834,30766931:172660 -k1,10051:26521386,30766931:172660 -k1,10051:27345473,30766931:172659 -k1,10051:28537218,30766931:172660 -k1,10051:29124695,30766931:172634 -k1,10051:31966991,30766931:0 -) -(1,10052:7246811,31608419:24720180,513147,126483 -g1,10051:8782974,31608419 -g1,10051:10009152,31608419 -g1,10051:10674342,31608419 -g1,10051:11229431,31608419 -g1,10051:13240075,31608419 -g1,10051:13970801,31608419 -g1,10051:15683256,31608419 -g1,10051:16498523,31608419 -g1,10051:18360400,31608419 -g1,10051:19218921,31608419 -g1,10051:19774010,31608419 -g1,10051:21362602,31608419 -k1,10052:31966991,31608419:8554423 -g1,10052:31966991,31608419 -) -] -) -] -r1,10052:32583029,32324726:26214,4074643,0 -) -] -) -) -g1,10052:32583029,31734902 -) -h1,10052:6630773,32350940:0,0,0 -v1,10055:6630773,33716716:0,393216,0 -(1,10084:6630773,39967499:25952256,6643999,589824 -g1,10084:6630773,39967499 -(1,10084:6630773,39967499:25952256,6643999,589824 -(1,10084:6630773,40557323:25952256,7233823,0 -[1,10084:6630773,40557323:25952256,7233823,0 -(1,10084:6630773,40557323:25952256,7207609,0 -r1,10084:6656987,40557323:26214,7207609,0 -[1,10084:6656987,40557323:25899828,7207609,0 -(1,10084:6656987,39967499:25899828,6027961,0 -[1,10084:7246811,39967499:24720180,6027961,0 -(1,10056:7246811,35101423:24720180,1161885,196608 -(1,10055:7246811,35101423:0,1161885,196608 -r1,10084:8794447,35101423:1547636,1358493,196608 -k1,10055:7246811,35101423:-1547636 -) -(1,10055:7246811,35101423:1547636,1161885,196608 -) -k1,10055:8946996,35101423:152549 -k1,10055:10296233,35101423:152550 -(1,10055:10296233,35101423:0,452978,115847 -r1,10084:12764770,35101423:2468537,568825,115847 -k1,10055:10296233,35101423:-2468537 -) -(1,10055:10296233,35101423:2468537,452978,115847 -k1,10055:10296233,35101423:3277 -h1,10055:12761493,35101423:0,411205,112570 -) -k1,10055:12917319,35101423:152549 -k1,10055:15524191,35101423:152549 -k1,10055:16624392,35101423:152550 -k1,10055:18918658,35101423:152549 -k1,10055:21144766,35101423:152549 -k1,10055:22864937,35101423:152550 -k1,10055:24301992,35101423:152549 -k1,10055:25402193,35101423:152550 -k1,10055:26944105,35101423:152549 -k1,10055:29303251,35101423:152549 -k1,10055:30071839,35101423:152550 -k1,10055:31508894,35101423:152549 -k1,10055:31966991,35101423:0 -) -(1,10056:7246811,35942911:24720180,513147,126483 -k1,10055:9909759,35942911:173891 -k1,10055:10439510,35942911:173891 -k1,10055:12787886,35942911:173891 -k1,10055:14355728,35942911:173891 -k1,10055:15548704,35942911:173891 -k1,10055:16948774,35942911:173891 -k1,10055:17910383,35942911:173866 -k1,10055:20369514,35942911:173891 -k1,10055:23296572,35942911:173891 -k1,10055:24231991,35942911:173891 -k1,10055:25424967,35942911:173891 -k1,10055:29274117,35942911:173891 -k1,10055:31966991,35942911:0 -) -(1,10056:7246811,36784399:24720180,513147,102891 -k1,10055:8071800,36784399:165697 -k1,10055:9771695,36784399:165697 -$1,10055:9771695,36784399 -$1,10055:10339892,36784399 -k1,10055:10505589,36784399:165697 -k1,10055:13157067,36784399:165697 -k1,10055:13982056,36784399:165697 -k1,10055:17241707,36784399:165696 -k1,10055:18935048,36784399:165697 -k1,10055:20986871,36784399:165697 -k1,10055:22604190,36784399:165697 -k1,10055:25152776,36784399:165697 -k1,10055:27056488,36784399:165697 -k1,10055:27992888,36784399:165697 -k1,10055:31966991,36784399:0 -) -(1,10056:7246811,37625887:24720180,513147,134348 -k1,10055:8108609,37625887:202506 -k1,10055:9099514,37625887:202507 -k1,10055:10857189,37625887:202506 -k1,10055:12251140,37625887:202506 -k1,10055:14780829,37625887:202506 -k1,10055:15642628,37625887:202507 -k1,10055:18417422,37625887:202506 -k1,10055:19386044,37625887:202506 -k1,10055:21122749,37625887:202507 -k1,10055:22516700,37625887:202506 -k1,10055:25606067,37625887:202506 -k1,10055:26164433,37625887:202506 -k1,10055:28619412,37625887:202507 -k1,10055:31307699,37625887:202506 -k1,10055:31966991,37625887:0 -) -(1,10056:7246811,38467375:24720180,513147,126483 -k1,10055:9180996,38467375:295130 -k1,10055:10467687,38467375:295131 -k1,10055:13999640,38467375:295130 -k1,10055:14922605,38467375:295130 -k1,10055:18057411,38467375:295131 -k1,10055:21545455,38467375:295130 -k1,10055:23851230,38467375:295130 -k1,10055:25137921,38467375:295131 -k1,10055:28638417,38467375:295130 -k1,10055:31966991,38467375:0 -) -(1,10056:7246811,39308863:24720180,513147,134348 -g1,10055:8912736,39308863 -g1,10055:11299557,39308863 -g1,10055:13114904,39308863 -g1,10055:17161752,39308863 -g1,10055:18308632,39308863 -g1,10055:21162724,39308863 -k1,10056:31966991,39308863:7814515 -g1,10056:31966991,39308863 -) -] -) -] -r1,10084:32583029,40557323:26214,7207609,0 -) -] -) -) -g1,10084:32583029,39967499 -) -] -(1,10084:32583029,45706769:0,0,0 -g1,10084:32583029,45706769 -) -) -] -(1,10084:6630773,47279633:25952256,0,0 -h1,10084:6630773,47279633:25952256,0,0 -) -] -h1,10084:4262630,4025873:0,0,0 -] -!21621 +) +) +] +[1,10089:3078558,4812305:0,0,0 +(1,10089:3078558,49800853:0,16384,2228224 +g1,10089:29030814,49800853 +g1,10089:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10089:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10089:37855564,49800853:1179648,16384,0 +) +) +k1,10089:3078556,49800853:-34777008 +) +] +g1,10089:6630773,4812305 +k1,10089:25241686,4812305:17415536 +g1,10089:26807341,4812305 +g1,10089:30339731,4812305 +g1,10089:31154998,4812305 +) +) +] +[1,10089:6630773,45706769:25952256,40108032,0 +(1,10089:6630773,45706769:25952256,40108032,0 +(1,10089:6630773,45706769:0,0,0 +g1,10089:6630773,45706769 +) +[1,10089:6630773,45706769:25952256,40108032,0 +(1,10045:6630773,6254097:25952256,513147,134348 +k1,10044:7620165,6254097:241626 +k1,10044:8217651,6254097:241626 +k1,10044:11135767,6254097:241626 +k1,10044:12063555,6254097:241626 +k1,10044:16329092,6254097:241626 +k1,10044:17102215,6254097:241626 +k1,10044:20074727,6254097:241627 +k1,10044:20929115,6254097:241626 +k1,10044:22189826,6254097:241626 +k1,10044:24390978,6254097:241626 +k1,10044:26268383,6254097:241626 +k1,10044:27701454,6254097:241626 +k1,10044:32168186,6254097:241626 +k1,10045:32583029,6254097:0 +) +(1,10045:6630773,7095585:25952256,513147,134348 +k1,10044:8215258,7095585:247551 +k1,10044:10178543,7095585:247552 +k1,10044:12453778,7095585:247551 +k1,10044:13360621,7095585:247551 +k1,10044:13964033,7095585:247552 +k1,10044:16094433,7095585:247551 +k1,10044:17731347,7095585:247551 +k1,10044:19855195,7095585:247552 +k1,10044:21800784,7095585:247551 +k1,10044:23423936,7095585:247551 +k1,10044:25682133,7095585:247552 +k1,10044:26545722,7095585:247551 +k1,10044:27149133,7095585:247551 +k1,10044:29269704,7095585:247552 +k1,10044:31900144,7095585:247551 +k1,10044:32583029,7095585:0 +) +(1,10045:6630773,7937073:25952256,505283,134348 +g1,10044:8296698,7937073 +g1,10044:9724727,7937073 +g1,10044:10694659,7937073 +g1,10044:13672615,7937073 +g1,10044:15347059,7937073 +k1,10045:32583029,7937073:14400883 +g1,10045:32583029,7937073 +) +(1,10047:6630773,8778561:25952256,513147,134348 +h1,10046:6630773,8778561:983040,0,0 +k1,10046:10934595,8778561:200613 +k1,10046:12326653,8778561:200613 +k1,10046:15311891,8778561:200613 +k1,10046:17080125,8778561:200613 +k1,10046:19860891,8778561:200614 +k1,10046:23571611,8778561:200613 +k1,10046:24864709,8778561:200613 +k1,10046:28467951,8778561:200613 +k1,10046:29430092,8778561:200613 +k1,10046:32583029,8778561:0 +) +(1,10047:6630773,9620049:25952256,513147,134348 +k1,10046:9507934,9620049:157417 +k1,10046:12023993,9620049:157418 +k1,10046:13313217,9620049:157417 +k1,10046:15671989,9620049:157418 +k1,10046:18764108,9620049:157417 +k1,10046:20053332,9620049:157417 +k1,10046:24186819,9620049:157418 +k1,10046:26354225,9620049:157417 +k1,10046:28208370,9620049:157418 +k1,10046:31391584,9620049:157417 +k1,10046:32583029,9620049:0 +) +(1,10047:6630773,10461537:25952256,513147,134348 +k1,10046:9659192,10461537:243794 +k1,10046:12165288,10461537:243793 +k1,10046:13428167,10461537:243794 +k1,10046:16183301,10461537:243794 +k1,10046:18632381,10461537:243793 +k1,10046:19562337,10461537:243794 +k1,10046:20576833,10461537:243793 +k1,10046:24066625,10461537:243794 +k1,10046:25691263,10461537:243794 +k1,10046:29021802,10461537:243793 +k1,10046:30284681,10461537:243794 +k1,10046:32583029,10461537:0 +) +(1,10047:6630773,11303025:25952256,513147,134348 +k1,10046:8384385,11303025:231866 +k1,10046:9563903,11303025:231867 +k1,10046:12254024,11303025:231866 +k1,10046:14986089,11303025:231866 +k1,10046:16409400,11303025:231866 +k1,10046:17927083,11303025:231867 +k1,10046:18920477,11303025:231866 +k1,10046:21872087,11303025:231866 +k1,10046:23123038,11303025:231866 +k1,10046:24885171,11303025:231867 +k1,10046:25768465,11303025:231866 +k1,10046:27716064,11303025:231866 +k1,10046:28303790,11303025:231866 +k1,10046:30045607,11303025:231867 +k1,10046:30936765,11303025:231866 +k1,10047:32583029,11303025:0 +) +(1,10047:6630773,12144513:25952256,513147,134348 +k1,10046:8993286,12144513:219486 +k1,10046:11900403,12144513:219486 +k1,10046:13138974,12144513:219486 +k1,10046:14693428,12144513:219486 +k1,10046:17542874,12144513:219486 +k1,10046:22011715,12144513:219487 +k1,10046:23612045,12144513:219486 +k1,10046:24363028,12144513:219486 +k1,10046:24938374,12144513:219486 +k1,10046:28711222,12144513:219486 +k1,10046:31510860,12144513:219486 +k1,10046:32583029,12144513:0 +) +(1,10047:6630773,12986001:25952256,513147,134348 +k1,10046:9930763,12986001:161471 +k1,10046:12069454,12986001:161470 +k1,10046:13928963,12986001:161471 +k1,10046:16409752,12986001:161470 +k1,10046:17965174,12986001:161471 +k1,10046:19480618,12986001:161470 +k1,10046:21212987,12986001:161471 +k1,10046:22763820,12986001:161470 +k1,10046:24363806,12986001:161471 +k1,10046:26868188,12986001:161470 +k1,10046:28410503,12986001:161471 +k1,10046:30241830,12986001:161470 +k1,10046:31896867,12986001:161471 +k1,10046:32583029,12986001:0 +) +(1,10047:6630773,13827489:25952256,513147,134348 +k1,10046:9211800,13827489:245979 +k1,10046:10851729,13827489:245978 +k1,10046:14607815,13827489:245979 +k1,10046:17475888,13827489:245978 +k1,10046:18077727,13827489:245979 +k1,10046:19907710,13827489:245978 +k1,10046:24808711,13827489:245979 +k1,10046:25713981,13827489:245978 +k1,10046:26979045,13827489:245979 +k1,10046:32583029,13827489:0 +) +(1,10047:6630773,14668977:25952256,505283,134348 +k1,10046:10240059,14668977:245323 +k1,10046:13832961,14668977:245323 +k1,10046:16658436,14668977:245323 +k1,10046:20413866,14668977:245323 +k1,10046:22705224,14668977:245324 +k1,10046:23759917,14668977:245323 +k1,10046:26519856,14668977:245323 +k1,10046:27377941,14668977:245323 +k1,10046:31021961,14668977:245323 +k1,10047:32583029,14668977:0 +) +(1,10047:6630773,15510465:25952256,505283,126483 +g1,10046:9690649,15510465 +g1,10046:11283829,15510465 +g1,10046:13544821,15510465 +(1,10046:13544821,15510465:0,459977,115847 +r1,10046:17068493,15510465:3523672,575824,115847 +k1,10046:13544821,15510465:-3523672 +) +(1,10046:13544821,15510465:3523672,459977,115847 +k1,10046:13544821,15510465:3277 +h1,10046:17065216,15510465:0,411205,112570 +) +k1,10047:32583029,15510465:15340866 +g1,10047:32583029,15510465 +) +(1,10048:6630773,17601725:25952256,555811,12975 +(1,10048:6630773,17601725:2450326,534184,12975 +g1,10048:6630773,17601725 +g1,10048:9081099,17601725 +) +k1,10048:32583028,17601725:20980956 +g1,10048:32583028,17601725 +) +(1,10052:6630773,18836429:25952256,513147,134348 +k1,10051:8053201,18836429:225741 +k1,10051:10734577,18836429:225742 +k1,10051:11619610,18836429:225741 +k1,10051:14425503,18836429:225741 +k1,10051:16813277,18836429:225742 +k1,10051:19708299,18836429:225741 +k1,10051:21442680,18836429:225742 +(1,10051:21442680,18836429:0,452978,115847 +r1,10051:22504369,18836429:1061689,568825,115847 +k1,10051:21442680,18836429:-1061689 +) +(1,10051:21442680,18836429:1061689,452978,115847 +k1,10051:21442680,18836429:3277 +h1,10051:22501092,18836429:0,411205,112570 +) +k1,10051:22730110,18836429:225741 +k1,10051:24511020,18836429:225741 +k1,10051:25422924,18836429:225742 +k1,10051:29047362,18836429:225741 +k1,10051:32583029,18836429:0 +) +(1,10052:6630773,19677917:25952256,505283,126483 +k1,10051:8216925,19677917:192201 +(1,10051:8216925,19677917:0,459977,115847 +r1,10051:11740597,19677917:3523672,575824,115847 +k1,10051:8216925,19677917:-3523672 +) +(1,10051:8216925,19677917:3523672,459977,115847 +k1,10051:8216925,19677917:3277 +h1,10051:11737320,19677917:0,411205,112570 +) +k1,10051:11932797,19677917:192200 +k1,10051:13316443,19677917:192201 +k1,10051:15224377,19677917:192201 +k1,10051:15874674,19677917:192200 +k1,10051:16422735,19677917:192201 +k1,10051:18997825,19677917:192201 +k1,10051:20918865,19677917:192200 +k1,10051:22491910,19677917:192201 +k1,10051:26082808,19677917:192201 +k1,10051:30483730,19677917:192200 +k1,10051:31207428,19677917:192201 +k1,10051:32583029,19677917:0 +) +(1,10052:6630773,20519405:25952256,513147,126483 +g1,10051:8914047,20519405 +g1,10051:9838104,20519405 +g1,10051:10653371,20519405 +g1,10051:12544740,20519405 +g1,10051:15900838,20519405 +g1,10051:17489430,20519405 +g1,10051:19895256,20519405 +g1,10051:21285930,20519405 +g1,10051:23626876,20519405 +g1,10051:24817665,20519405 +g1,10051:26083165,20519405 +k1,10052:32583029,20519405:3021213 +g1,10052:32583029,20519405 +) +(1,10054:6630773,21360893:25952256,513147,134348 +h1,10053:6630773,21360893:983040,0,0 +k1,10053:9090994,21360893:280494 +k1,10053:10926657,21360893:280494 +k1,10053:12398596,21360893:280494 +k1,10053:15463715,21360893:280494 +k1,10053:17028715,21360893:280494 +k1,10053:19889361,21360893:280494 +k1,10053:22331887,21360893:280494 +k1,10053:24903520,21360893:280494 +k1,10053:26112004,21360893:280494 +k1,10053:28084638,21360893:280494 +k1,10053:29024424,21360893:280494 +k1,10053:30324003,21360893:280494 +k1,10054:32583029,21360893:0 +) +(1,10054:6630773,22202381:25952256,513147,134348 +k1,10053:8480246,22202381:251705 +k1,10053:11466769,22202381:251706 +k1,10053:12480002,22202381:251705 +k1,10053:13750793,22202381:251706 +k1,10053:16091130,22202381:251705 +k1,10053:17002127,22202381:251705 +k1,10053:18687761,22202381:251706 +k1,10053:19354256,22202381:251652 +k1,10053:20995325,22202381:251706 +k1,10053:23453627,22202381:251705 +k1,10053:24318095,22202381:251706 +k1,10053:25588885,22202381:251705 +k1,10053:27155898,22202381:251705 +k1,10053:28066896,22202381:251706 +k1,10053:30890889,22202381:251705 +k1,10053:32583029,22202381:0 +) +(1,10054:6630773,23043869:25952256,513147,134348 +k1,10053:12155982,23043869:182714 +k1,10053:13521621,23043869:182714 +k1,10053:14355764,23043869:182715 +k1,10053:17199895,23043869:182714 +k1,10053:20846842,23043869:182714 +k1,10053:23113601,23043869:182714 +k1,10053:24243966,23043869:182714 +k1,10053:27050087,23043869:182715 +k1,10053:30447342,23043869:182714 +k1,10053:31821501,23043869:182714 +k1,10053:32583029,23043869:0 +) +(1,10054:6630773,23885357:25952256,513147,134348 +k1,10053:9011167,23885357:192802 +k1,10053:11730383,23885357:192803 +k1,10053:12870836,23885357:192802 +k1,10053:16377139,23885357:192803 +k1,10053:17229233,23885357:192802 +k1,10053:18977204,23885357:192802 +(1,10053:18977204,23885357:0,452978,115847 +r1,10053:20390605,23885357:1413401,568825,115847 +k1,10053:18977204,23885357:-1413401 +) +(1,10053:18977204,23885357:1413401,452978,115847 +k1,10053:18977204,23885357:3277 +h1,10053:20387328,23885357:0,411205,112570 +) +k1,10053:20583408,23885357:192803 +k1,10053:21967655,23885357:192802 +k1,10053:25158075,23885357:192803 +k1,10053:27877290,23885357:192802 +k1,10053:29017744,23885357:192803 +k1,10053:31923737,23885357:192802 +k1,10053:32583029,23885357:0 +) +(1,10054:6630773,24726845:25952256,513147,134348 +k1,10053:8377508,24726845:191566 +(1,10053:8377508,24726845:0,452978,115847 +r1,10053:10494333,24726845:2116825,568825,115847 +k1,10053:8377508,24726845:-2116825 +) +(1,10053:8377508,24726845:2116825,452978,115847 +k1,10053:8377508,24726845:3277 +h1,10053:10491056,24726845:0,411205,112570 +) +k1,10053:10859569,24726845:191566 +k1,10053:13943239,24726845:191566 +k1,10053:14794096,24726845:191565 +k1,10053:18094690,24726845:191566 +k1,10053:18817753,24726845:191566 +k1,10053:20295135,24726845:191566 +k1,10053:23422714,24726845:191566 +k1,10053:25008231,24726845:191566 +k1,10053:26009166,24726845:191565 +k1,10053:27404628,24726845:191566 +k1,10053:29664510,24726845:191566 +k1,10053:31821501,24726845:191566 +k1,10053:32583029,24726845:0 +) +(1,10054:6630773,25568333:25952256,513147,7863 +k1,10053:9332822,25568333:262799 +k1,10053:11428008,25568333:262799 +k1,10053:12682368,25568333:262800 +k1,10053:14230983,25568333:262799 +k1,10053:18010444,25568333:262799 +k1,10053:18889281,25568333:262799 +k1,10053:21417660,25568333:262799 +k1,10053:24440180,25568333:262799 +k1,10053:25362272,25568333:262800 +k1,10053:27091767,25568333:262799 +k1,10053:31391584,25568333:262799 +k1,10053:32583029,25568333:0 +) +(1,10054:6630773,26409821:25952256,513147,134348 +k1,10053:9794741,26409821:205673 +k1,10053:13136968,26409821:205674 +k1,10053:15632469,26409821:205673 +k1,10053:16497434,26409821:205673 +k1,10053:18258276,26409821:205673 +(1,10053:18258276,26409821:0,452978,115847 +r1,10053:19319965,26409821:1061689,568825,115847 +k1,10053:18258276,26409821:-1061689 +) +(1,10053:18258276,26409821:1061689,452978,115847 +k1,10053:18258276,26409821:3277 +h1,10053:19316688,26409821:0,411205,112570 +) +k1,10053:19525639,26409821:205674 +k1,10053:20835594,26409821:205673 +k1,10053:21789033,26409821:205673 +k1,10053:24199993,26409821:205673 +k1,10053:25091829,26409821:205674 +k1,10053:28700131,26409821:205673 +k1,10053:29557232,26409821:205673 +k1,10053:32583029,26409821:0 +) +(1,10054:6630773,27251309:25952256,513147,134348 +k1,10053:8115164,27251309:199885 +k1,10053:10385986,27251309:199884 +k1,10053:11975234,27251309:199885 +k1,10053:14381716,27251309:199885 +k1,10053:15267762,27251309:199884 +k1,10053:17349841,27251309:199885 +k1,10053:19246453,27251309:199885 +k1,10053:22472135,27251309:199885 +k1,10053:23663579,27251309:199884 +k1,10053:24929735,27251309:199885 +k1,10053:28705920,27251309:199885 +k1,10053:29557232,27251309:199884 +k1,10053:31353574,27251309:199885 +k1,10054:32583029,27251309:0 +) +(1,10054:6630773,28092797:25952256,513147,126483 +g1,10053:8622412,28092797 +g1,10053:9507803,28092797 +g1,10053:10062892,28092797 +g1,10053:12104993,28092797 +g1,10053:12963514,28092797 +g1,10053:14181828,28092797 +g1,10053:17897719,28092797 +g1,10053:18712986,28092797 +k1,10054:32583029,28092797:11612328 +g1,10054:32583029,28092797 +) +v1,10056:6630773,29458573:0,393216,0 +(1,10057:6630773,32576390:25952256,3511033,616038 +g1,10057:6630773,32576390 +(1,10057:6630773,32576390:25952256,3511033,616038 +(1,10057:6630773,33192428:25952256,4127071,0 +[1,10057:6630773,33192428:25952256,4127071,0 +(1,10057:6630773,33166214:25952256,4074643,0 +r1,10057:6656987,33166214:26214,4074643,0 +[1,10057:6656987,33166214:25899828,4074643,0 +(1,10057:6656987,32576390:25899828,2894995,0 +[1,10057:7246811,32576390:24720180,2894995,0 +(1,10057:7246811,30766931:24720180,1085536,298548 +(1,10056:7246811,30766931:0,1085536,298548 +r1,10057:8753226,30766931:1506415,1384084,298548 +k1,10056:7246811,30766931:-1506415 +) +(1,10056:7246811,30766931:1506415,1085536,298548 +) +k1,10056:8925559,30766931:172333 +k1,10056:9567785,30766931:172333 +k1,10056:10271615,30766931:172333 +k1,10056:11838555,30766931:172334 +k1,10056:12662316,30766931:172333 +k1,10056:14449456,30766931:172333 +k1,10056:16117976,30766931:172333 +k1,10056:17574815,30766931:172333 +k1,10056:18879610,30766931:172333 +k1,10056:20648400,30766931:172333 +k1,10056:23629606,30766931:172333 +k1,10056:25268636,30766931:172334 +k1,10056:26834920,30766931:172333 +k1,10056:28396616,30766931:172333 +k1,10056:30775546,30766931:172333 +k1,10056:31966991,30766931:0 +) +(1,10057:7246811,31608419:24720180,505283,134348 +k1,10056:9734858,31608419:172660 +k1,10056:12842220,31608419:172660 +k1,10056:14511067,31608419:172660 +k1,10056:15968233,31608419:172660 +k1,10056:16672390,31608419:172660 +k1,10056:20816532,31608419:172660 +k1,10056:23231834,31608419:172660 +k1,10056:26521386,31608419:172660 +k1,10056:27345473,31608419:172659 +k1,10056:28537218,31608419:172660 +k1,10056:29124695,31608419:172634 +k1,10056:31966991,31608419:0 +) +(1,10057:7246811,32449907:24720180,513147,126483 +g1,10056:8782974,32449907 +g1,10056:10009152,32449907 +g1,10056:10674342,32449907 +g1,10056:11229431,32449907 +g1,10056:13240075,32449907 +g1,10056:13970801,32449907 +g1,10056:15683256,32449907 +g1,10056:16498523,32449907 +g1,10056:18360400,32449907 +g1,10056:19218921,32449907 +g1,10056:19774010,32449907 +g1,10056:21362602,32449907 +k1,10057:31966991,32449907:8554423 +g1,10057:31966991,32449907 +) +] +) +] +r1,10057:32583029,33166214:26214,4074643,0 +) +] +) +) +g1,10057:32583029,32576390 +) +h1,10057:6630773,33192428:0,0,0 +v1,10060:6630773,34558204:0,393216,0 +(1,10089:6630773,42534559:25952256,8369571,589824 +g1,10089:6630773,42534559 +(1,10089:6630773,42534559:25952256,8369571,589824 +(1,10089:6630773,43124383:25952256,8959395,0 +[1,10089:6630773,43124383:25952256,8959395,0 +(1,10089:6630773,43124383:25952256,8933181,0 +r1,10089:6656987,43124383:26214,8933181,0 +[1,10089:6656987,43124383:25899828,8933181,0 +(1,10089:6656987,42534559:25899828,7753533,0 +[1,10089:7246811,42534559:24720180,7753533,0 +(1,10061:7246811,35942911:24720180,1161885,196608 +(1,10060:7246811,35942911:0,1161885,196608 +r1,10089:8794447,35942911:1547636,1358493,196608 +k1,10060:7246811,35942911:-1547636 +) +(1,10060:7246811,35942911:1547636,1161885,196608 +) +k1,10060:8946996,35942911:152549 +k1,10060:10296233,35942911:152550 +(1,10060:10296233,35942911:0,452978,115847 +r1,10089:12764770,35942911:2468537,568825,115847 +k1,10060:10296233,35942911:-2468537 +) +(1,10060:10296233,35942911:2468537,452978,115847 +k1,10060:10296233,35942911:3277 +h1,10060:12761493,35942911:0,411205,112570 +) +k1,10060:12917319,35942911:152549 +k1,10060:15524191,35942911:152549 +k1,10060:16624392,35942911:152550 +k1,10060:18918658,35942911:152549 +k1,10060:21144766,35942911:152549 +k1,10060:22864937,35942911:152550 +k1,10060:24301992,35942911:152549 +k1,10060:25402193,35942911:152550 +k1,10060:26944105,35942911:152549 +k1,10060:29303251,35942911:152549 +k1,10060:30071839,35942911:152550 +k1,10060:31508894,35942911:152549 +k1,10060:31966991,35942911:0 +) +(1,10061:7246811,36784399:24720180,513147,126483 +k1,10060:9909759,36784399:173891 +k1,10060:10439510,36784399:173891 +k1,10060:12787886,36784399:173891 +k1,10060:14355728,36784399:173891 +k1,10060:15548704,36784399:173891 +k1,10060:16948774,36784399:173891 +k1,10060:17910383,36784399:173866 +k1,10060:20369514,36784399:173891 +k1,10060:23296572,36784399:173891 +k1,10060:24231991,36784399:173891 +k1,10060:25424967,36784399:173891 +k1,10060:29274117,36784399:173891 +k1,10060:31966991,36784399:0 +) +(1,10061:7246811,37625887:24720180,513147,102891 +k1,10060:8071800,37625887:165697 +k1,10060:9771695,37625887:165697 +$1,10060:9771695,37625887 +$1,10060:10339892,37625887 +k1,10060:10505589,37625887:165697 +k1,10060:13157067,37625887:165697 +k1,10060:13982056,37625887:165697 +k1,10060:17241707,37625887:165696 +k1,10060:18935048,37625887:165697 +k1,10060:20986871,37625887:165697 +k1,10060:22604190,37625887:165697 +k1,10060:25152776,37625887:165697 +k1,10060:27056488,37625887:165697 +k1,10060:27992888,37625887:165697 +k1,10060:31966991,37625887:0 +) +(1,10061:7246811,38467375:24720180,513147,134348 +k1,10060:8108609,38467375:202506 +k1,10060:9099514,38467375:202507 +k1,10060:10857189,38467375:202506 +k1,10060:12251140,38467375:202506 +k1,10060:14780829,38467375:202506 +k1,10060:15642628,38467375:202507 +k1,10060:18417422,38467375:202506 +k1,10060:19386044,38467375:202506 +k1,10060:21122749,38467375:202507 +k1,10060:22516700,38467375:202506 +k1,10060:25606067,38467375:202506 +k1,10060:26164433,38467375:202506 +k1,10060:28619412,38467375:202507 +k1,10060:31307699,38467375:202506 +k1,10060:31966991,38467375:0 +) +(1,10061:7246811,39308863:24720180,513147,126483 +k1,10060:9180996,39308863:295130 +k1,10060:10467687,39308863:295131 +k1,10060:13999640,39308863:295130 +k1,10060:14922605,39308863:295130 +k1,10060:18057411,39308863:295131 +k1,10060:21545455,39308863:295130 +k1,10060:23851230,39308863:295130 +k1,10060:25137921,39308863:295131 +k1,10060:28638417,39308863:295130 +k1,10060:31966991,39308863:0 +) +(1,10061:7246811,40150351:24720180,513147,134348 +g1,10060:8912736,40150351 +g1,10060:11299557,40150351 +g1,10060:13114904,40150351 +g1,10060:17161752,40150351 +g1,10060:18308632,40150351 +g1,10060:21162724,40150351 +k1,10061:31966991,40150351:7814515 +g1,10061:31966991,40150351 +) +] +) +] +r1,10089:32583029,43124383:26214,8933181,0 +) +] +) +) +g1,10089:32583029,42534559 +) +] +(1,10089:32583029,45706769:0,0,0 +g1,10089:32583029,45706769 +) +) +] +(1,10089:6630773,47279633:25952256,0,0 +h1,10089:6630773,47279633:25952256,0,0 +) +] +h1,10089:4262630,4025873:0,0,0 +] +!22085 }191 -Input:1269:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1270:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1271:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1272:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1273:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1274:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1275:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1276:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1277:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1278:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1279:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1280:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1281:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 +Input:1265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 {192 -[1,10137:4262630,47279633:28320399,43253760,0 -(1,10137:4262630,4025873:0,0,0 -[1,10137:-473657,4025873:25952256,0,0 -(1,10137:-473657,-710414:25952256,0,0 -h1,10137:-473657,-710414:0,0,0 -(1,10137:-473657,-710414:0,0,0 -(1,10137:-473657,-710414:0,0,0 -g1,10137:-473657,-710414 -(1,10137:-473657,-710414:65781,0,65781 -g1,10137:-407876,-710414 -[1,10137:-407876,-644633:0,0,0 +[1,10142:4262630,47279633:28320399,43253760,0 +(1,10142:4262630,4025873:0,0,0 +[1,10142:-473657,4025873:25952256,0,0 +(1,10142:-473657,-710414:25952256,0,0 +h1,10142:-473657,-710414:0,0,0 +(1,10142:-473657,-710414:0,0,0 +(1,10142:-473657,-710414:0,0,0 +g1,10142:-473657,-710414 +(1,10142:-473657,-710414:65781,0,65781 +g1,10142:-407876,-710414 +[1,10142:-407876,-644633:0,0,0 ] ) -k1,10137:-473657,-710414:-65781 +k1,10142:-473657,-710414:-65781 ) ) -k1,10137:25478599,-710414:25952256 -g1,10137:25478599,-710414 +k1,10142:25478599,-710414:25952256 +g1,10142:25478599,-710414 ) ] ) -[1,10137:6630773,47279633:25952256,43253760,0 -[1,10137:6630773,4812305:25952256,786432,0 -(1,10137:6630773,4812305:25952256,513147,126483 -(1,10137:6630773,4812305:25952256,513147,126483 -g1,10137:3078558,4812305 -[1,10137:3078558,4812305:0,0,0 -(1,10137:3078558,2439708:0,1703936,0 -k1,10137:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10137:2537886,2439708:1179648,16384,0 +[1,10142:6630773,47279633:25952256,43253760,0 +[1,10142:6630773,4812305:25952256,786432,0 +(1,10142:6630773,4812305:25952256,513147,126483 +(1,10142:6630773,4812305:25952256,513147,126483 +g1,10142:3078558,4812305 +[1,10142:3078558,4812305:0,0,0 +(1,10142:3078558,2439708:0,1703936,0 +k1,10142:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10142:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10137:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10142:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10137:3078558,4812305:0,0,0 -(1,10137:3078558,2439708:0,1703936,0 -g1,10137:29030814,2439708 -g1,10137:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10137:36151628,1915420:16384,1179648,0 +[1,10142:3078558,4812305:0,0,0 +(1,10142:3078558,2439708:0,1703936,0 +g1,10142:29030814,2439708 +g1,10142:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10142:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10137:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10142:37855564,2439708:1179648,16384,0 ) ) -k1,10137:3078556,2439708:-34777008 +k1,10142:3078556,2439708:-34777008 ) ] -[1,10137:3078558,4812305:0,0,0 -(1,10137:3078558,49800853:0,16384,2228224 -k1,10137:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10137:2537886,49800853:1179648,16384,0 +[1,10142:3078558,4812305:0,0,0 +(1,10142:3078558,49800853:0,16384,2228224 +k1,10142:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10142:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10137:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10142:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10137:3078558,4812305:0,0,0 -(1,10137:3078558,49800853:0,16384,2228224 -g1,10137:29030814,49800853 -g1,10137:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10137:36151628,51504789:16384,1179648,0 +[1,10142:3078558,4812305:0,0,0 +(1,10142:3078558,49800853:0,16384,2228224 +g1,10142:29030814,49800853 +g1,10142:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10142:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10137:37855564,49800853:1179648,16384,0 -) -) -k1,10137:3078556,49800853:-34777008 -) -] -g1,10137:6630773,4812305 -g1,10137:6630773,4812305 -g1,10137:11156689,4812305 -g1,10137:12279976,4812305 -g1,10137:16431026,4812305 -k1,10137:31387652,4812305:14956626 -) -) -] -[1,10137:6630773,45706769:25952256,40108032,0 -(1,10137:6630773,45706769:25952256,40108032,0 -(1,10137:6630773,45706769:0,0,0 -g1,10137:6630773,45706769 -) -[1,10137:6630773,45706769:25952256,40108032,0 -v1,10084:6630773,6254097:0,393216,0 -(1,10084:6630773,17086266:25952256,11225385,616038 -g1,10084:6630773,17086266 -(1,10084:6630773,17086266:25952256,11225385,616038 -(1,10084:6630773,17702304:25952256,11841423,0 -[1,10084:6630773,17702304:25952256,11841423,0 -(1,10084:6630773,17676090:25952256,11815209,0 -r1,10084:6656987,17676090:26214,11815209,0 -[1,10084:6656987,17676090:25899828,11815209,0 -(1,10084:6656987,17086266:25899828,10635561,0 -[1,10084:7246811,17086266:24720180,10635561,0 -v1,10058:7246811,6843921:0,393216,0 -(1,10072:7246811,12462227:24720180,6011522,196608 -g1,10072:7246811,12462227 -g1,10072:7246811,12462227 -g1,10072:7050203,12462227 -(1,10072:7050203,12462227:0,6011522,196608 -r1,10084:32163599,12462227:25113396,6208130,196608 -k1,10072:7050203,12462227:-25113396 -) -(1,10072:7050203,12462227:25113396,6011522,196608 -[1,10072:7246811,12462227:24720180,5814914,0 -(1,10060:7246811,7057831:24720180,410518,107478 -(1,10059:7246811,7057831:0,0,0 -g1,10059:7246811,7057831 -g1,10059:7246811,7057831 -g1,10059:6919131,7057831 -(1,10059:6919131,7057831:0,0,0 -) -g1,10059:7246811,7057831 -) -k1,10060:7246811,7057831:0 -g1,10060:10092123,7057831 -g1,10060:10724415,7057831 -g1,10060:15150456,7057831 -g1,10060:15782748,7057831 -g1,10060:16415040,7057831 -g1,10060:18311916,7057831 -g1,10060:18944208,7057831 -g1,10060:19576500,7057831 -g1,10060:22421812,7057831 -g1,10060:23054104,7057831 -g1,10060:24002542,7057831 -g1,10060:24950979,7057831 -g1,10060:25583271,7057831 -g1,10060:26531709,7057831 -g1,10060:30009312,7057831 -g1,10060:30641604,7057831 -h1,10060:31590041,7057831:0,0,0 -k1,10060:31966991,7057831:376950 -g1,10060:31966991,7057831 -) -(1,10071:7246811,7789545:24720180,404226,9436 -(1,10062:7246811,7789545:0,0,0 -g1,10062:7246811,7789545 -g1,10062:7246811,7789545 -g1,10062:6919131,7789545 -(1,10062:6919131,7789545:0,0,0 -) -g1,10062:7246811,7789545 -) -g1,10071:8195248,7789545 -g1,10071:8827540,7789545 -g1,10071:9459832,7789545 -g1,10071:11988998,7789545 -g1,10071:12621290,7789545 -g1,10071:13253582,7789545 -h1,10071:13569728,7789545:0,0,0 -k1,10071:31966992,7789545:18397264 -g1,10071:31966992,7789545 -) -(1,10071:7246811,8455723:24720180,379060,7863 -h1,10071:7246811,8455723:0,0,0 -g1,10071:8195248,8455723 -g1,10071:8511394,8455723 -g1,10071:8827540,8455723 -g1,10071:9459832,8455723 -g1,10071:9775978,8455723 -g1,10071:10092124,8455723 -g1,10071:10408270,8455723 -g1,10071:10724416,8455723 -g1,10071:11040562,8455723 -g1,10071:11356708,8455723 -g1,10071:11672854,8455723 -g1,10071:11989000,8455723 -g1,10071:12621292,8455723 -g1,10071:12937438,8455723 -g1,10071:13253584,8455723 -g1,10071:13569730,8455723 -g1,10071:13885876,8455723 -h1,10071:14202022,8455723:0,0,0 -k1,10071:31966990,8455723:17764968 -g1,10071:31966990,8455723 -) -(1,10071:7246811,9121901:24720180,404226,6290 -h1,10071:7246811,9121901:0,0,0 -g1,10071:8195248,9121901 -g1,10071:8511394,9121901 -g1,10071:8827540,9121901 -g1,10071:10724415,9121901 -g1,10071:12621290,9121901 -k1,10071:12621290,9121901:0 -h1,10071:14202019,9121901:0,0,0 -k1,10071:31966991,9121901:17764972 -g1,10071:31966991,9121901 -) -(1,10071:7246811,9788079:24720180,388497,0 -h1,10071:7246811,9788079:0,0,0 -g1,10071:8195248,9788079 -g1,10071:8827540,9788079 -g1,10071:9459832,9788079 -g1,10071:9775978,9788079 -g1,10071:10092124,9788079 -g1,10071:10408270,9788079 -g1,10071:10724416,9788079 -g1,10071:11040562,9788079 -g1,10071:11356708,9788079 -g1,10071:11672854,9788079 -g1,10071:12621291,9788079 -g1,10071:12937437,9788079 -h1,10071:13253583,9788079:0,0,0 -k1,10071:31966991,9788079:18713408 -g1,10071:31966991,9788079 -) -(1,10071:7246811,10454257:24720180,388497,9436 -h1,10071:7246811,10454257:0,0,0 -g1,10071:8195248,10454257 -g1,10071:8827540,10454257 -g1,10071:9459832,10454257 -g1,10071:9775978,10454257 -g1,10071:10092124,10454257 -g1,10071:10408270,10454257 -g1,10071:10724416,10454257 -g1,10071:11040562,10454257 -g1,10071:11356708,10454257 -g1,10071:11672854,10454257 -g1,10071:12621291,10454257 -g1,10071:12937437,10454257 -h1,10071:14202020,10454257:0,0,0 -k1,10071:31966992,10454257:17764972 -g1,10071:31966992,10454257 -) -(1,10071:7246811,11120435:24720180,388497,9436 -h1,10071:7246811,11120435:0,0,0 -g1,10071:8195248,11120435 -g1,10071:8827540,11120435 -g1,10071:9459832,11120435 -g1,10071:9775978,11120435 -g1,10071:10092124,11120435 -g1,10071:10408270,11120435 -g1,10071:10724416,11120435 -g1,10071:11040562,11120435 -g1,10071:11356708,11120435 -g1,10071:11672854,11120435 -g1,10071:11989000,11120435 -g1,10071:12621292,11120435 -g1,10071:12937438,11120435 -h1,10071:13885875,11120435:0,0,0 -k1,10071:31966991,11120435:18081116 -g1,10071:31966991,11120435 -) -(1,10071:7246811,11786613:24720180,388497,9436 -h1,10071:7246811,11786613:0,0,0 -g1,10071:8195248,11786613 -g1,10071:8827540,11786613 -g1,10071:9459832,11786613 -g1,10071:9775978,11786613 -g1,10071:10092124,11786613 -g1,10071:10408270,11786613 -g1,10071:10724416,11786613 -g1,10071:11040562,11786613 -g1,10071:11356708,11786613 -g1,10071:11672854,11786613 -g1,10071:11989000,11786613 -g1,10071:12621292,11786613 -g1,10071:12937438,11786613 -h1,10071:14202021,11786613:0,0,0 -k1,10071:31966991,11786613:17764970 -g1,10071:31966991,11786613 -) -(1,10071:7246811,12452791:24720180,388497,9436 -h1,10071:7246811,12452791:0,0,0 -g1,10071:8195248,12452791 -g1,10071:8827540,12452791 -g1,10071:9459832,12452791 -g1,10071:9775978,12452791 -g1,10071:10092124,12452791 -g1,10071:10408270,12452791 -g1,10071:10724416,12452791 -g1,10071:11040562,12452791 -g1,10071:11356708,12452791 -g1,10071:11672854,12452791 -g1,10071:11989000,12452791 -g1,10071:12621292,12452791 -g1,10071:12937438,12452791 -h1,10071:13253584,12452791:0,0,0 -k1,10071:31966992,12452791:18713408 -g1,10071:31966992,12452791 -) -] -) -g1,10072:31966991,12462227 -g1,10072:7246811,12462227 -g1,10072:7246811,12462227 -g1,10072:31966991,12462227 -g1,10072:31966991,12462227 -) -h1,10072:7246811,12658835:0,0,0 -(1,10076:7246811,14024611:24720180,513147,126483 -h1,10075:7246811,14024611:983040,0,0 -k1,10075:9687371,14024611:260833 -k1,10075:12213784,14024611:260833 -k1,10075:14960399,14024611:260834 -k1,10075:15880524,14024611:260833 -k1,10075:17675555,14024611:260833 -k1,10075:20286509,14024611:260833 -k1,10075:21651625,14024611:260834 -k1,10075:22660224,14024611:260833 -k1,10075:23855600,14024611:260833 -k1,10075:25510384,14024611:260833 -k1,10075:28357924,14024611:260834 -k1,10075:29903263,14024611:260833 -k1,10075:31032448,14024611:260833 -k1,10075:31966991,14024611:0 -) -(1,10076:7246811,14866099:24720180,513147,126483 -g1,10075:8843923,14866099 -g1,10075:9694580,14866099 -g1,10075:11269410,14866099 -g1,10075:13123423,14866099 -g1,10075:14856850,14866099 -g1,10075:16003730,14866099 -g1,10075:17804659,14866099 -g1,10075:18663180,14866099 -g1,10075:20065650,14866099 -k1,10076:31966991,14866099:9310047 -g1,10076:31966991,14866099 -) -v1,10078:7246811,16056565:0,393216,0 -(1,10082:7246811,16365370:24720180,702021,196608 -g1,10082:7246811,16365370 -g1,10082:7246811,16365370 -g1,10082:7050203,16365370 -(1,10082:7050203,16365370:0,702021,196608 -r1,10084:32163599,16365370:25113396,898629,196608 -k1,10082:7050203,16365370:-25113396 -) -(1,10082:7050203,16365370:25113396,702021,196608 -[1,10082:7246811,16365370:24720180,505413,0 -(1,10080:7246811,16264183:24720180,404226,101187 -(1,10079:7246811,16264183:0,0,0 -g1,10079:7246811,16264183 -g1,10079:7246811,16264183 -g1,10079:6919131,16264183 -(1,10079:6919131,16264183:0,0,0 -) -g1,10079:7246811,16264183 -) -k1,10080:7246811,16264183:0 -g1,10080:15150454,16264183 -g1,10080:15782746,16264183 -g1,10080:16731184,16264183 -g1,10080:22105661,16264183 -g1,10080:22737953,16264183 -h1,10080:23370245,16264183:0,0,0 -k1,10080:31966991,16264183:8596746 -g1,10080:31966991,16264183 -) -] -) -g1,10082:31966991,16365370 -g1,10082:7246811,16365370 -g1,10082:7246811,16365370 -g1,10082:31966991,16365370 -g1,10082:31966991,16365370 -) -h1,10082:7246811,16561978:0,0,0 -] -) -] -r1,10084:32583029,17676090:26214,11815209,0 -) -] -) -) -g1,10084:32583029,17086266 -) -h1,10084:6630773,17702304:0,0,0 -v1,10087:6630773,18976171:0,393216,0 -(1,10114:6630773,33945500:25952256,15362545,616038 -g1,10114:6630773,33945500 -(1,10114:6630773,33945500:25952256,15362545,616038 -(1,10114:6630773,34561538:25952256,15978583,0 -[1,10114:6630773,34561538:25952256,15978583,0 -(1,10114:6630773,34535324:25952256,15926155,0 -r1,10114:6656987,34535324:26214,15926155,0 -[1,10114:6656987,34535324:25899828,15926155,0 -(1,10114:6656987,33945500:25899828,14746507,0 -[1,10114:7246811,33945500:24720180,14746507,0 -(1,10088:7246811,20221339:24720180,1022346,115847 -k1,10087:8670425,20221339:168101 -k1,10087:9466361,20221339:168101 -k1,10087:11143101,20221339:168101 -k1,10087:12617335,20221339:168101 -k1,10087:16591112,20221339:168101 -k1,10087:17778298,20221339:168101 -k1,10087:19684413,20221339:168100 -k1,10087:20800165,20221339:168101 -(1,10087:20800165,20221339:0,452978,115847 -r1,10114:22916990,20221339:2116825,568825,115847 -k1,10087:20800165,20221339:-2116825 -) -(1,10087:20800165,20221339:2116825,452978,115847 -k1,10087:20800165,20221339:3277 -h1,10087:22913713,20221339:0,411205,112570 -) -k1,10087:23085091,20221339:168101 -k1,10087:24460365,20221339:168101 -(1,10087:24460365,20221339:0,459977,115847 -r1,10114:27984037,20221339:3523672,575824,115847 -k1,10087:24460365,20221339:-3523672 -) -(1,10087:24460365,20221339:3523672,459977,115847 -k1,10087:24460365,20221339:3277 -h1,10087:27980760,20221339:0,411205,112570 -) -k1,10087:28152138,20221339:168101 -k1,10087:29921284,20221339:168101 -k1,10087:30445245,20221339:168101 -k1,10087:31966991,20221339:0 -) -(1,10088:7246811,21062827:24720180,513147,134348 -k1,10087:9719003,21062827:145009 -k1,10087:10523305,21062827:145010 -k1,10087:11024174,21062827:145009 -k1,10087:12622116,21062827:145009 -k1,10087:13963813,21062827:145010 -k1,10087:15129218,21062827:145009 -k1,10087:17012242,21062827:145009 -k1,10087:17688749,21062827:145010 -k1,10087:19032412,21062827:145009 -k1,10087:22863166,21062827:145009 -k1,10087:24080345,21062827:145010 -k1,10087:25013752,21062827:145009 -k1,10087:26251246,21062827:145009 -k1,10087:28576639,21062827:145010 -k1,10087:29469414,21062827:145009 -k1,10087:31966991,21062827:0 -) -(1,10088:7246811,21904315:24720180,505283,134348 -k1,10087:8600526,21904315:162270 -(1,10087:8600526,21904315:0,452978,115847 -r1,10114:11420775,21904315:2820249,568825,115847 -k1,10087:8600526,21904315:-2820249 -) -(1,10087:8600526,21904315:2820249,452978,115847 -k1,10087:8600526,21904315:3277 -h1,10087:11417498,21904315:0,411205,112570 -) -k1,10087:11583044,21904315:162269 -k1,10087:13258540,21904315:162270 -k1,10087:15921664,21904315:162270 -k1,10087:17355331,21904315:162269 -k1,10087:19697984,21904315:162270 -k1,10087:20608019,21904315:162269 -k1,10087:22638720,21904315:162270 -k1,10087:24085496,21904315:162270 -k1,10087:27078920,21904315:162269 -k1,10087:28260275,21904315:162270 -k1,10088:31966991,21904315:0 -) -(1,10088:7246811,22745803:24720180,513147,115847 -(1,10087:7246811,22745803:0,452978,115847 -r1,10114:10067060,22745803:2820249,568825,115847 -k1,10087:7246811,22745803:-2820249 -) -(1,10087:7246811,22745803:2820249,452978,115847 -k1,10087:7246811,22745803:3277 -h1,10087:10063783,22745803:0,411205,112570 -) -k1,10087:10242101,22745803:175041 -k1,10087:11608586,22745803:175040 -k1,10087:15260312,22745803:175041 -k1,10087:18130848,22745803:175040 -(1,10087:18130848,22745803:0,452978,115847 -r1,10114:22006232,22745803:3875384,568825,115847 -k1,10087:18130848,22745803:-3875384 -) -(1,10087:18130848,22745803:3875384,452978,115847 -k1,10087:18130848,22745803:3277 -h1,10087:22002955,22745803:0,411205,112570 -) -k1,10087:22354943,22745803:175041 -k1,10087:23216146,22745803:175041 -k1,10087:24669793,22745803:175040 -k1,10087:25530996,22745803:175041 -k1,10087:26725121,22745803:175040 -k1,10087:28091607,22745803:175041 -(1,10087:28091607,22745803:0,452978,115847 -r1,10114:31966991,22745803:3875384,568825,115847 -k1,10087:28091607,22745803:-3875384 -) -(1,10087:28091607,22745803:3875384,452978,115847 -k1,10087:28091607,22745803:3277 -h1,10087:31963714,22745803:0,411205,112570 -) -k1,10087:31966991,22745803:0 -) -(1,10088:7246811,23587291:24720180,505283,115847 -g1,10087:8538525,23587291 -g1,10087:9756839,23587291 -g1,10087:11694083,23587291 -(1,10087:11694083,23587291:0,452978,115847 -r1,10114:13810908,23587291:2116825,568825,115847 -k1,10087:11694083,23587291:-2116825 -) -(1,10087:11694083,23587291:2116825,452978,115847 -k1,10087:11694083,23587291:3277 -h1,10087:13807631,23587291:0,411205,112570 -) -g1,10087:14183807,23587291 -g1,10087:15402121,23587291 -g1,10087:17156519,23587291 -g1,10087:20134475,23587291 -g1,10087:20865201,23587291 -g1,10087:23223186,23587291 -(1,10087:23223186,23587291:0,452978,115847 -r1,10114:24284875,23587291:1061689,568825,115847 -k1,10087:23223186,23587291:-1061689 -) -(1,10087:23223186,23587291:1061689,452978,115847 -k1,10087:23223186,23587291:3277 -h1,10087:24281598,23587291:0,411205,112570 -) -k1,10088:31966991,23587291:7508446 -g1,10088:31966991,23587291 -) -v1,10090:7246811,24777757:0,393216,0 -(1,10110:7246811,30565792:24720180,6181251,196608 -g1,10110:7246811,30565792 -g1,10110:7246811,30565792 -g1,10110:7050203,30565792 -(1,10110:7050203,30565792:0,6181251,196608 -r1,10114:32163599,30565792:25113396,6377859,196608 -k1,10110:7050203,30565792:-25113396 -) -(1,10110:7050203,30565792:25113396,6181251,196608 -[1,10110:7246811,30565792:24720180,5984643,0 -(1,10092:7246811,24985375:24720180,404226,101187 -(1,10091:7246811,24985375:0,0,0 -g1,10091:7246811,24985375 -g1,10091:7246811,24985375 -g1,10091:6919131,24985375 -(1,10091:6919131,24985375:0,0,0 -) -g1,10091:7246811,24985375 -) -g1,10092:9143685,24985375 -g1,10092:10092123,24985375 -g1,10092:14834309,24985375 -g1,10092:15466601,24985375 -h1,10092:16731185,24985375:0,0,0 -k1,10092:31966991,24985375:15235806 -g1,10092:31966991,24985375 -) -(1,10093:7246811,25651553:24720180,404226,101187 -h1,10093:7246811,25651553:0,0,0 -k1,10093:7246811,25651553:0 -h1,10093:12305142,25651553:0,0,0 -k1,10093:31966990,25651553:19661848 -g1,10093:31966990,25651553 -) -(1,10097:7246811,26383267:24720180,404226,76021 -(1,10095:7246811,26383267:0,0,0 -g1,10095:7246811,26383267 -g1,10095:7246811,26383267 -g1,10095:6919131,26383267 -(1,10095:6919131,26383267:0,0,0 -) -g1,10095:7246811,26383267 -) -g1,10097:8195248,26383267 -g1,10097:9459831,26383267 -h1,10097:10724414,26383267:0,0,0 -k1,10097:31966990,26383267:21242576 -g1,10097:31966990,26383267 -) -(1,10099:7246811,27704805:24720180,404226,101187 -(1,10098:7246811,27704805:0,0,0 -g1,10098:7246811,27704805 -g1,10098:7246811,27704805 -g1,10098:6919131,27704805 -(1,10098:6919131,27704805:0,0,0 -) -g1,10098:7246811,27704805 -) -k1,10099:7246811,27704805:0 -g1,10099:12305142,27704805 -h1,10099:15150453,27704805:0,0,0 -k1,10099:31966991,27704805:16816538 -g1,10099:31966991,27704805 -) -(1,10103:7246811,28436519:24720180,404226,76021 -(1,10101:7246811,28436519:0,0,0 -g1,10101:7246811,28436519 -g1,10101:7246811,28436519 -g1,10101:6919131,28436519 -(1,10101:6919131,28436519:0,0,0 -) -g1,10101:7246811,28436519 -) -g1,10103:8195248,28436519 -g1,10103:9459831,28436519 -h1,10103:11040559,28436519:0,0,0 -k1,10103:31966991,28436519:20926432 -g1,10103:31966991,28436519 -) -(1,10105:7246811,29758057:24720180,404226,101187 -(1,10104:7246811,29758057:0,0,0 -g1,10104:7246811,29758057 -g1,10104:7246811,29758057 -g1,10104:6919131,29758057 -(1,10104:6919131,29758057:0,0,0 -) -g1,10104:7246811,29758057 -) -k1,10105:7246811,29758057:0 -h1,10105:11040559,29758057:0,0,0 -k1,10105:31966991,29758057:20926432 -g1,10105:31966991,29758057 -) -(1,10109:7246811,30489771:24720180,410518,76021 -(1,10107:7246811,30489771:0,0,0 -g1,10107:7246811,30489771 -g1,10107:7246811,30489771 -g1,10107:6919131,30489771 -(1,10107:6919131,30489771:0,0,0 -) -g1,10107:7246811,30489771 -) -g1,10109:8195248,30489771 -g1,10109:9459831,30489771 -g1,10109:12305142,30489771 -g1,10109:12621288,30489771 -g1,10109:12937434,30489771 -g1,10109:13253580,30489771 -g1,10109:13569726,30489771 -g1,10109:15466600,30489771 -g1,10109:15782746,30489771 -g1,10109:16098892,30489771 -g1,10109:16415038,30489771 -g1,10109:16731184,30489771 -g1,10109:17047330,30489771 -g1,10109:17363476,30489771 -g1,10109:17679622,30489771 -h1,10109:21473370,30489771:0,0,0 -k1,10109:31966991,30489771:10493621 -g1,10109:31966991,30489771 -) -] -) -g1,10110:31966991,30565792 -g1,10110:7246811,30565792 -g1,10110:7246811,30565792 -g1,10110:31966991,30565792 -g1,10110:31966991,30565792 -) -h1,10110:7246811,30762400:0,0,0 -(1,10114:7246811,32128176:24720180,513147,134348 -h1,10113:7246811,32128176:983040,0,0 -k1,10113:12589816,32128176:166316 -k1,10113:13517659,32128176:166315 -k1,10113:16780551,32128176:166316 -k1,10113:17598295,32128176:166316 -k1,10113:20291023,32128176:166315 -k1,10113:22599056,32128176:166316 -k1,10113:24620041,32128176:166316 -k1,10113:25595726,32128176:166315 -k1,10113:28524385,32128176:166316 -k1,10113:31966991,32128176:0 -) -(1,10114:7246811,32969664:24720180,513147,126483 -k1,10113:8866105,32969664:229931 -k1,10113:11708955,32969664:229930 -k1,10113:12294746,32969664:229931 -k1,10113:14800087,32969664:229931 -k1,10113:17412906,32969664:229930 -k1,10113:19198006,32969664:229931 -k1,10113:19959434,32969664:229931 -k1,10113:22661383,32969664:229931 -k1,10113:23519148,32969664:229930 -k1,10113:24846807,32969664:229931 -k1,10113:27911825,32969664:229931 -k1,10113:28827917,32969664:229930 -k1,10113:30155576,32969664:229931 -k1,10113:31966991,32969664:0 -) -(1,10114:7246811,33811152:24720180,513147,134348 -k1,10113:8542837,33811152:195021 -k1,10113:9508561,33811152:195021 -k1,10113:13146188,33811152:195021 -(1,10113:13146188,33811152:0,459977,115847 -r1,10114:16669860,33811152:3523672,575824,115847 -k1,10113:13146188,33811152:-3523672 -) -(1,10113:13146188,33811152:3523672,459977,115847 -k1,10113:13146188,33811152:3277 -h1,10113:16666583,33811152:0,411205,112570 -) -k1,10113:16864880,33811152:195020 -k1,10113:18788741,33811152:195021 -k1,10113:20002847,33811152:195021 -k1,10113:21799568,33811152:195021 -k1,10113:24377478,33811152:195021 -k1,10113:26127668,33811152:195021 -k1,10113:26989844,33811152:195020 -(1,10113:26989844,33811152:0,452978,115847 -r1,10114:28754957,33811152:1765113,568825,115847 -k1,10113:26989844,33811152:-1765113 -) -(1,10113:26989844,33811152:1765113,452978,115847 -k1,10113:26989844,33811152:3277 -h1,10113:28751680,33811152:0,411205,112570 -) -k1,10113:28949978,33811152:195021 -k1,10113:29676496,33811152:195021 -(1,10113:29676496,33811152:0,459977,115847 -r1,10114:31793321,33811152:2116825,575824,115847 -k1,10113:29676496,33811152:-2116825 -) -(1,10113:29676496,33811152:2116825,459977,115847 -k1,10113:29676496,33811152:3277 -h1,10113:31790044,33811152:0,411205,112570 -) -k1,10114:31966991,33811152:0 -k1,10114:31966991,33811152:0 -) -] -) -] -r1,10114:32583029,34535324:26214,15926155,0 -) -] -) -) -g1,10114:32583029,33945500 -) -h1,10114:6630773,34561538:0,0,0 -(1,10117:6630773,35835405:25952256,513147,7863 -h1,10116:6630773,35835405:983040,0,0 -k1,10116:8781883,35835405:214521 -k1,10116:10484727,35835405:214521 -k1,10116:12093199,35835405:214521 -k1,10116:13326805,35835405:214521 -k1,10116:17248042,35835405:214521 -k1,10116:18654009,35835405:214522 -k1,10116:22345215,35835405:214521 -k1,10116:25518031,35835405:214521 -k1,10116:26774574,35835405:214521 -k1,10116:28192336,35835405:214521 -k1,10116:29275209,35835405:214521 -k1,10116:30622192,35835405:214521 -k1,10116:32583029,35835405:0 -) -(1,10117:6630773,36676893:25952256,513147,134348 -k1,10116:7938981,36676893:210480 -k1,10116:9479841,36676893:210479 -k1,10116:12713497,36676893:210480 -k1,10116:15619472,36676893:210479 -k1,10116:17829456,36676893:210480 -k1,10116:21065733,36676893:210480 -k1,10116:22267772,36676893:210479 -k1,10116:25568275,36676893:210480 -k1,10116:26394792,36676893:210479 -k1,10116:28883959,36676893:210480 -h1,10116:29854547,36676893:0,0,0 -k1,10116:30065026,36676893:210479 -k1,10116:31084876,36676893:210480 -k1,10116:32583029,36676893:0 -) -(1,10117:6630773,37518381:25952256,505283,95026 -h1,10116:7826150,37518381:0,0,0 -k1,10117:32583030,37518381:24376116 -g1,10117:32583030,37518381 -) -v1,10119:6630773,38616939:0,393216,0 -(1,10131:6630773,44236294:25952256,6012571,196608 -g1,10131:6630773,44236294 -g1,10131:6630773,44236294 -g1,10131:6434165,44236294 -(1,10131:6434165,44236294:0,6012571,196608 -r1,10131:32779637,44236294:26345472,6209179,196608 -k1,10131:6434165,44236294:-26345472 -) -(1,10131:6434165,44236294:26345472,6012571,196608 -[1,10131:6630773,44236294:25952256,5815963,0 -(1,10121:6630773,38830849:25952256,410518,76021 -(1,10120:6630773,38830849:0,0,0 -g1,10120:6630773,38830849 -g1,10120:6630773,38830849 -g1,10120:6303093,38830849 -(1,10120:6303093,38830849:0,0,0 -) -g1,10120:6630773,38830849 -) -g1,10121:10740667,38830849 -g1,10121:11689105,38830849 -g1,10121:15482854,38830849 -h1,10121:15799000,38830849:0,0,0 -k1,10121:32583028,38830849:16784028 -g1,10121:32583028,38830849 -) -(1,10122:6630773,39497027:25952256,404226,76021 -h1,10122:6630773,39497027:0,0,0 -g1,10122:6946919,39497027 -g1,10122:7263065,39497027 -k1,10122:7263065,39497027:0 -h1,10122:8527648,39497027:0,0,0 -k1,10122:32583028,39497027:24055380 -g1,10122:32583028,39497027 -) -(1,10123:6630773,40163205:25952256,404226,101187 -h1,10123:6630773,40163205:0,0,0 -g1,10123:6946919,40163205 -g1,10123:7263065,40163205 -g1,10123:7579211,40163205 -g1,10123:7895357,40163205 -k1,10123:7895357,40163205:0 -h1,10123:15482854,40163205:0,0,0 -k1,10123:32583030,40163205:17100176 -g1,10123:32583030,40163205 -) -(1,10124:6630773,40829383:25952256,404226,107478 -h1,10124:6630773,40829383:0,0,0 -g1,10124:6946919,40829383 -g1,10124:7263065,40829383 -g1,10124:7579211,40829383 -g1,10124:7895357,40829383 -k1,10124:7895357,40829383:0 -h1,10124:12637543,40829383:0,0,0 -k1,10124:32583029,40829383:19945486 -g1,10124:32583029,40829383 -) -(1,10125:6630773,41495561:25952256,404226,101187 -h1,10125:6630773,41495561:0,0,0 -g1,10125:6946919,41495561 -g1,10125:7263065,41495561 -g1,10125:7579211,41495561 -g1,10125:7895357,41495561 -k1,10125:7895357,41495561:0 -h1,10125:12637542,41495561:0,0,0 -k1,10125:32583030,41495561:19945488 -g1,10125:32583030,41495561 -) -(1,10126:6630773,42161739:25952256,404226,101187 -h1,10126:6630773,42161739:0,0,0 -g1,10126:6946919,42161739 -g1,10126:7263065,42161739 -g1,10126:7579211,42161739 -g1,10126:7895357,42161739 -g1,10126:8211503,42161739 -g1,10126:8527649,42161739 -g1,10126:8843795,42161739 -g1,10126:9159941,42161739 -g1,10126:9476087,42161739 -g1,10126:9792233,42161739 -g1,10126:12953690,42161739 -g1,10126:15482856,42161739 -g1,10126:18328167,42161739 -g1,10126:18960459,42161739 -g1,10126:19908897,42161739 -g1,10126:20857335,42161739 -g1,10126:22121918,42161739 -g1,10126:22754210,42161739 -g1,10126:23702647,42161739 -k1,10126:23702647,42161739:0 -h1,10126:24651085,42161739:0,0,0 -k1,10126:32583029,42161739:7931944 -g1,10126:32583029,42161739 -) -(1,10127:6630773,42827917:25952256,404226,101187 -h1,10127:6630773,42827917:0,0,0 -g1,10127:6946919,42827917 -g1,10127:7263065,42827917 -g1,10127:7579211,42827917 -g1,10127:7895357,42827917 -g1,10127:9159940,42827917 -g1,10127:9792232,42827917 -h1,10127:11372961,42827917:0,0,0 -k1,10127:32583029,42827917:21210068 -g1,10127:32583029,42827917 -) -(1,10128:6630773,43494095:25952256,404226,76021 -h1,10128:6630773,43494095:0,0,0 -g1,10128:6946919,43494095 -g1,10128:7263065,43494095 -g1,10128:7579211,43494095 -g1,10128:7895357,43494095 -h1,10128:8211503,43494095:0,0,0 -k1,10128:32583029,43494095:24371526 -g1,10128:32583029,43494095 -) -(1,10129:6630773,44160273:25952256,404226,76021 -h1,10129:6630773,44160273:0,0,0 -h1,10129:6946919,44160273:0,0,0 -k1,10129:32583029,44160273:25636110 -g1,10129:32583029,44160273 -) -] -) -g1,10131:32583029,44236294 -g1,10131:6630773,44236294 -g1,10131:6630773,44236294 -g1,10131:32583029,44236294 -g1,10131:32583029,44236294 -) -h1,10131:6630773,44432902:0,0,0 -(1,10135:6630773,45706769:25952256,513147,115847 -h1,10134:6630773,45706769:983040,0,0 -k1,10134:8579292,45706769:337644 -k1,10134:9936020,45706769:337643 -k1,10134:11657784,45706769:337644 -k1,10134:13167866,45706769:337643 -k1,10134:15806479,45706769:337644 -k1,10134:17012474,45706769:337643 -k1,10134:18454400,45706769:337644 -k1,10134:19817026,45706769:337643 -k1,10134:21846810,45706769:337644 -k1,10134:22843745,45706769:337643 -k1,10134:24200474,45706769:337644 -k1,10134:28228449,45706769:337643 -k1,10134:29762780,45706769:337644 -(1,10134:29762780,45706769:0,452978,115847 -r1,10134:32583029,45706769:2820249,568825,115847 -k1,10134:29762780,45706769:-2820249 -) -(1,10134:29762780,45706769:2820249,452978,115847 -k1,10134:29762780,45706769:3277 -h1,10134:32579752,45706769:0,411205,112570 -) -k1,10134:32583029,45706769:0 -) -] -(1,10137:32583029,45706769:0,0,0 -g1,10137:32583029,45706769 -) -) -] -(1,10137:6630773,47279633:25952256,0,0 -h1,10137:6630773,47279633:25952256,0,0 -) -] -h1,10137:4262630,4025873:0,0,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10142:37855564,49800853:1179648,16384,0 +) +) +k1,10142:3078556,49800853:-34777008 +) +] +g1,10142:6630773,4812305 +g1,10142:6630773,4812305 +g1,10142:11156689,4812305 +g1,10142:12279976,4812305 +g1,10142:16431026,4812305 +k1,10142:31387652,4812305:14956626 +) +) +] +[1,10142:6630773,45706769:25952256,40108032,0 +(1,10142:6630773,45706769:25952256,40108032,0 +(1,10142:6630773,45706769:0,0,0 +g1,10142:6630773,45706769 +) +[1,10142:6630773,45706769:25952256,40108032,0 +v1,10089:6630773,6254097:0,393216,0 +(1,10089:6630773,17086266:25952256,11225385,616038 +g1,10089:6630773,17086266 +(1,10089:6630773,17086266:25952256,11225385,616038 +(1,10089:6630773,17702304:25952256,11841423,0 +[1,10089:6630773,17702304:25952256,11841423,0 +(1,10089:6630773,17676090:25952256,11815209,0 +r1,10089:6656987,17676090:26214,11815209,0 +[1,10089:6656987,17676090:25899828,11815209,0 +(1,10089:6656987,17086266:25899828,10635561,0 +[1,10089:7246811,17086266:24720180,10635561,0 +v1,10063:7246811,6843921:0,393216,0 +(1,10077:7246811,12462227:24720180,6011522,196608 +g1,10077:7246811,12462227 +g1,10077:7246811,12462227 +g1,10077:7050203,12462227 +(1,10077:7050203,12462227:0,6011522,196608 +r1,10089:32163599,12462227:25113396,6208130,196608 +k1,10077:7050203,12462227:-25113396 +) +(1,10077:7050203,12462227:25113396,6011522,196608 +[1,10077:7246811,12462227:24720180,5814914,0 +(1,10065:7246811,7057831:24720180,410518,107478 +(1,10064:7246811,7057831:0,0,0 +g1,10064:7246811,7057831 +g1,10064:7246811,7057831 +g1,10064:6919131,7057831 +(1,10064:6919131,7057831:0,0,0 +) +g1,10064:7246811,7057831 +) +k1,10065:7246811,7057831:0 +g1,10065:10092123,7057831 +g1,10065:10724415,7057831 +g1,10065:15150456,7057831 +g1,10065:15782748,7057831 +g1,10065:16415040,7057831 +g1,10065:18311916,7057831 +g1,10065:18944208,7057831 +g1,10065:19576500,7057831 +g1,10065:22421812,7057831 +g1,10065:23054104,7057831 +g1,10065:24002542,7057831 +g1,10065:24950979,7057831 +g1,10065:25583271,7057831 +g1,10065:26531709,7057831 +g1,10065:30009312,7057831 +g1,10065:30641604,7057831 +h1,10065:31590041,7057831:0,0,0 +k1,10065:31966991,7057831:376950 +g1,10065:31966991,7057831 +) +(1,10076:7246811,7789545:24720180,404226,9436 +(1,10067:7246811,7789545:0,0,0 +g1,10067:7246811,7789545 +g1,10067:7246811,7789545 +g1,10067:6919131,7789545 +(1,10067:6919131,7789545:0,0,0 +) +g1,10067:7246811,7789545 +) +g1,10076:8195248,7789545 +g1,10076:8827540,7789545 +g1,10076:9459832,7789545 +g1,10076:11988998,7789545 +g1,10076:12621290,7789545 +g1,10076:13253582,7789545 +h1,10076:13569728,7789545:0,0,0 +k1,10076:31966992,7789545:18397264 +g1,10076:31966992,7789545 +) +(1,10076:7246811,8455723:24720180,379060,7863 +h1,10076:7246811,8455723:0,0,0 +g1,10076:8195248,8455723 +g1,10076:8511394,8455723 +g1,10076:8827540,8455723 +g1,10076:9459832,8455723 +g1,10076:9775978,8455723 +g1,10076:10092124,8455723 +g1,10076:10408270,8455723 +g1,10076:10724416,8455723 +g1,10076:11040562,8455723 +g1,10076:11356708,8455723 +g1,10076:11672854,8455723 +g1,10076:11989000,8455723 +g1,10076:12621292,8455723 +g1,10076:12937438,8455723 +g1,10076:13253584,8455723 +g1,10076:13569730,8455723 +g1,10076:13885876,8455723 +h1,10076:14202022,8455723:0,0,0 +k1,10076:31966990,8455723:17764968 +g1,10076:31966990,8455723 +) +(1,10076:7246811,9121901:24720180,404226,6290 +h1,10076:7246811,9121901:0,0,0 +g1,10076:8195248,9121901 +g1,10076:8511394,9121901 +g1,10076:8827540,9121901 +g1,10076:10724415,9121901 +g1,10076:12621290,9121901 +k1,10076:12621290,9121901:0 +h1,10076:14202019,9121901:0,0,0 +k1,10076:31966991,9121901:17764972 +g1,10076:31966991,9121901 +) +(1,10076:7246811,9788079:24720180,388497,0 +h1,10076:7246811,9788079:0,0,0 +g1,10076:8195248,9788079 +g1,10076:8827540,9788079 +g1,10076:9459832,9788079 +g1,10076:9775978,9788079 +g1,10076:10092124,9788079 +g1,10076:10408270,9788079 +g1,10076:10724416,9788079 +g1,10076:11040562,9788079 +g1,10076:11356708,9788079 +g1,10076:11672854,9788079 +g1,10076:12621291,9788079 +g1,10076:12937437,9788079 +h1,10076:13253583,9788079:0,0,0 +k1,10076:31966991,9788079:18713408 +g1,10076:31966991,9788079 +) +(1,10076:7246811,10454257:24720180,388497,9436 +h1,10076:7246811,10454257:0,0,0 +g1,10076:8195248,10454257 +g1,10076:8827540,10454257 +g1,10076:9459832,10454257 +g1,10076:9775978,10454257 +g1,10076:10092124,10454257 +g1,10076:10408270,10454257 +g1,10076:10724416,10454257 +g1,10076:11040562,10454257 +g1,10076:11356708,10454257 +g1,10076:11672854,10454257 +g1,10076:12621291,10454257 +g1,10076:12937437,10454257 +h1,10076:14202020,10454257:0,0,0 +k1,10076:31966992,10454257:17764972 +g1,10076:31966992,10454257 +) +(1,10076:7246811,11120435:24720180,388497,9436 +h1,10076:7246811,11120435:0,0,0 +g1,10076:8195248,11120435 +g1,10076:8827540,11120435 +g1,10076:9459832,11120435 +g1,10076:9775978,11120435 +g1,10076:10092124,11120435 +g1,10076:10408270,11120435 +g1,10076:10724416,11120435 +g1,10076:11040562,11120435 +g1,10076:11356708,11120435 +g1,10076:11672854,11120435 +g1,10076:11989000,11120435 +g1,10076:12621292,11120435 +g1,10076:12937438,11120435 +h1,10076:13885875,11120435:0,0,0 +k1,10076:31966991,11120435:18081116 +g1,10076:31966991,11120435 +) +(1,10076:7246811,11786613:24720180,388497,9436 +h1,10076:7246811,11786613:0,0,0 +g1,10076:8195248,11786613 +g1,10076:8827540,11786613 +g1,10076:9459832,11786613 +g1,10076:9775978,11786613 +g1,10076:10092124,11786613 +g1,10076:10408270,11786613 +g1,10076:10724416,11786613 +g1,10076:11040562,11786613 +g1,10076:11356708,11786613 +g1,10076:11672854,11786613 +g1,10076:11989000,11786613 +g1,10076:12621292,11786613 +g1,10076:12937438,11786613 +h1,10076:14202021,11786613:0,0,0 +k1,10076:31966991,11786613:17764970 +g1,10076:31966991,11786613 +) +(1,10076:7246811,12452791:24720180,388497,9436 +h1,10076:7246811,12452791:0,0,0 +g1,10076:8195248,12452791 +g1,10076:8827540,12452791 +g1,10076:9459832,12452791 +g1,10076:9775978,12452791 +g1,10076:10092124,12452791 +g1,10076:10408270,12452791 +g1,10076:10724416,12452791 +g1,10076:11040562,12452791 +g1,10076:11356708,12452791 +g1,10076:11672854,12452791 +g1,10076:11989000,12452791 +g1,10076:12621292,12452791 +g1,10076:12937438,12452791 +h1,10076:13253584,12452791:0,0,0 +k1,10076:31966992,12452791:18713408 +g1,10076:31966992,12452791 +) +] +) +g1,10077:31966991,12462227 +g1,10077:7246811,12462227 +g1,10077:7246811,12462227 +g1,10077:31966991,12462227 +g1,10077:31966991,12462227 +) +h1,10077:7246811,12658835:0,0,0 +(1,10081:7246811,14024611:24720180,513147,126483 +h1,10080:7246811,14024611:983040,0,0 +k1,10080:9687371,14024611:260833 +k1,10080:12213784,14024611:260833 +k1,10080:14960399,14024611:260834 +k1,10080:15880524,14024611:260833 +k1,10080:17675555,14024611:260833 +k1,10080:20286509,14024611:260833 +k1,10080:21651625,14024611:260834 +k1,10080:22660224,14024611:260833 +k1,10080:23855600,14024611:260833 +k1,10080:25510384,14024611:260833 +k1,10080:28357924,14024611:260834 +k1,10080:29903263,14024611:260833 +k1,10080:31032448,14024611:260833 +k1,10080:31966991,14024611:0 +) +(1,10081:7246811,14866099:24720180,513147,126483 +g1,10080:8843923,14866099 +g1,10080:9694580,14866099 +g1,10080:11269410,14866099 +g1,10080:13123423,14866099 +g1,10080:14856850,14866099 +g1,10080:16003730,14866099 +g1,10080:17804659,14866099 +g1,10080:18663180,14866099 +g1,10080:20065650,14866099 +k1,10081:31966991,14866099:9310047 +g1,10081:31966991,14866099 +) +v1,10083:7246811,16056565:0,393216,0 +(1,10087:7246811,16365370:24720180,702021,196608 +g1,10087:7246811,16365370 +g1,10087:7246811,16365370 +g1,10087:7050203,16365370 +(1,10087:7050203,16365370:0,702021,196608 +r1,10089:32163599,16365370:25113396,898629,196608 +k1,10087:7050203,16365370:-25113396 +) +(1,10087:7050203,16365370:25113396,702021,196608 +[1,10087:7246811,16365370:24720180,505413,0 +(1,10085:7246811,16264183:24720180,404226,101187 +(1,10084:7246811,16264183:0,0,0 +g1,10084:7246811,16264183 +g1,10084:7246811,16264183 +g1,10084:6919131,16264183 +(1,10084:6919131,16264183:0,0,0 +) +g1,10084:7246811,16264183 +) +k1,10085:7246811,16264183:0 +g1,10085:15150454,16264183 +g1,10085:15782746,16264183 +g1,10085:16731184,16264183 +g1,10085:22105661,16264183 +g1,10085:22737953,16264183 +h1,10085:23370245,16264183:0,0,0 +k1,10085:31966991,16264183:8596746 +g1,10085:31966991,16264183 +) +] +) +g1,10087:31966991,16365370 +g1,10087:7246811,16365370 +g1,10087:7246811,16365370 +g1,10087:31966991,16365370 +g1,10087:31966991,16365370 +) +h1,10087:7246811,16561978:0,0,0 +] +) +] +r1,10089:32583029,17676090:26214,11815209,0 +) +] +) +) +g1,10089:32583029,17086266 +) +h1,10089:6630773,17702304:0,0,0 +v1,10092:6630773,18976171:0,393216,0 +(1,10119:6630773,33945500:25952256,15362545,616038 +g1,10119:6630773,33945500 +(1,10119:6630773,33945500:25952256,15362545,616038 +(1,10119:6630773,34561538:25952256,15978583,0 +[1,10119:6630773,34561538:25952256,15978583,0 +(1,10119:6630773,34535324:25952256,15926155,0 +r1,10119:6656987,34535324:26214,15926155,0 +[1,10119:6656987,34535324:25899828,15926155,0 +(1,10119:6656987,33945500:25899828,14746507,0 +[1,10119:7246811,33945500:24720180,14746507,0 +(1,10093:7246811,20221339:24720180,1022346,115847 +k1,10092:8670425,20221339:168101 +k1,10092:9466361,20221339:168101 +k1,10092:11143101,20221339:168101 +k1,10092:12617335,20221339:168101 +k1,10092:16591112,20221339:168101 +k1,10092:17778298,20221339:168101 +k1,10092:19684413,20221339:168100 +k1,10092:20800165,20221339:168101 +(1,10092:20800165,20221339:0,452978,115847 +r1,10119:22916990,20221339:2116825,568825,115847 +k1,10092:20800165,20221339:-2116825 +) +(1,10092:20800165,20221339:2116825,452978,115847 +k1,10092:20800165,20221339:3277 +h1,10092:22913713,20221339:0,411205,112570 +) +k1,10092:23085091,20221339:168101 +k1,10092:24460365,20221339:168101 +(1,10092:24460365,20221339:0,459977,115847 +r1,10119:27984037,20221339:3523672,575824,115847 +k1,10092:24460365,20221339:-3523672 +) +(1,10092:24460365,20221339:3523672,459977,115847 +k1,10092:24460365,20221339:3277 +h1,10092:27980760,20221339:0,411205,112570 +) +k1,10092:28152138,20221339:168101 +k1,10092:29921284,20221339:168101 +k1,10092:30445245,20221339:168101 +k1,10092:31966991,20221339:0 +) +(1,10093:7246811,21062827:24720180,513147,134348 +k1,10092:9719003,21062827:145009 +k1,10092:10523305,21062827:145010 +k1,10092:11024174,21062827:145009 +k1,10092:12622116,21062827:145009 +k1,10092:13963813,21062827:145010 +k1,10092:15129218,21062827:145009 +k1,10092:17012242,21062827:145009 +k1,10092:17688749,21062827:145010 +k1,10092:19032412,21062827:145009 +k1,10092:22863166,21062827:145009 +k1,10092:24080345,21062827:145010 +k1,10092:25013752,21062827:145009 +k1,10092:26251246,21062827:145009 +k1,10092:28576639,21062827:145010 +k1,10092:29469414,21062827:145009 +k1,10092:31966991,21062827:0 +) +(1,10093:7246811,21904315:24720180,505283,134348 +k1,10092:8600526,21904315:162270 +(1,10092:8600526,21904315:0,452978,115847 +r1,10119:11420775,21904315:2820249,568825,115847 +k1,10092:8600526,21904315:-2820249 +) +(1,10092:8600526,21904315:2820249,452978,115847 +k1,10092:8600526,21904315:3277 +h1,10092:11417498,21904315:0,411205,112570 +) +k1,10092:11583044,21904315:162269 +k1,10092:13258540,21904315:162270 +k1,10092:15921664,21904315:162270 +k1,10092:17355331,21904315:162269 +k1,10092:19697984,21904315:162270 +k1,10092:20608019,21904315:162269 +k1,10092:22638720,21904315:162270 +k1,10092:24085496,21904315:162270 +k1,10092:27078920,21904315:162269 +k1,10092:28260275,21904315:162270 +k1,10093:31966991,21904315:0 +) +(1,10093:7246811,22745803:24720180,513147,115847 +(1,10092:7246811,22745803:0,452978,115847 +r1,10119:10067060,22745803:2820249,568825,115847 +k1,10092:7246811,22745803:-2820249 +) +(1,10092:7246811,22745803:2820249,452978,115847 +k1,10092:7246811,22745803:3277 +h1,10092:10063783,22745803:0,411205,112570 +) +k1,10092:10242101,22745803:175041 +k1,10092:11608586,22745803:175040 +k1,10092:15260312,22745803:175041 +k1,10092:18130848,22745803:175040 +(1,10092:18130848,22745803:0,452978,115847 +r1,10119:22006232,22745803:3875384,568825,115847 +k1,10092:18130848,22745803:-3875384 +) +(1,10092:18130848,22745803:3875384,452978,115847 +k1,10092:18130848,22745803:3277 +h1,10092:22002955,22745803:0,411205,112570 +) +k1,10092:22354943,22745803:175041 +k1,10092:23216146,22745803:175041 +k1,10092:24669793,22745803:175040 +k1,10092:25530996,22745803:175041 +k1,10092:26725121,22745803:175040 +k1,10092:28091607,22745803:175041 +(1,10092:28091607,22745803:0,452978,115847 +r1,10119:31966991,22745803:3875384,568825,115847 +k1,10092:28091607,22745803:-3875384 +) +(1,10092:28091607,22745803:3875384,452978,115847 +k1,10092:28091607,22745803:3277 +h1,10092:31963714,22745803:0,411205,112570 +) +k1,10092:31966991,22745803:0 +) +(1,10093:7246811,23587291:24720180,505283,115847 +g1,10092:8538525,23587291 +g1,10092:9756839,23587291 +g1,10092:11694083,23587291 +(1,10092:11694083,23587291:0,452978,115847 +r1,10119:13810908,23587291:2116825,568825,115847 +k1,10092:11694083,23587291:-2116825 +) +(1,10092:11694083,23587291:2116825,452978,115847 +k1,10092:11694083,23587291:3277 +h1,10092:13807631,23587291:0,411205,112570 +) +g1,10092:14183807,23587291 +g1,10092:15402121,23587291 +g1,10092:17156519,23587291 +g1,10092:20134475,23587291 +g1,10092:20865201,23587291 +g1,10092:23223186,23587291 +(1,10092:23223186,23587291:0,452978,115847 +r1,10119:24284875,23587291:1061689,568825,115847 +k1,10092:23223186,23587291:-1061689 +) +(1,10092:23223186,23587291:1061689,452978,115847 +k1,10092:23223186,23587291:3277 +h1,10092:24281598,23587291:0,411205,112570 +) +k1,10093:31966991,23587291:7508446 +g1,10093:31966991,23587291 +) +v1,10095:7246811,24777757:0,393216,0 +(1,10115:7246811,30565792:24720180,6181251,196608 +g1,10115:7246811,30565792 +g1,10115:7246811,30565792 +g1,10115:7050203,30565792 +(1,10115:7050203,30565792:0,6181251,196608 +r1,10119:32163599,30565792:25113396,6377859,196608 +k1,10115:7050203,30565792:-25113396 +) +(1,10115:7050203,30565792:25113396,6181251,196608 +[1,10115:7246811,30565792:24720180,5984643,0 +(1,10097:7246811,24985375:24720180,404226,101187 +(1,10096:7246811,24985375:0,0,0 +g1,10096:7246811,24985375 +g1,10096:7246811,24985375 +g1,10096:6919131,24985375 +(1,10096:6919131,24985375:0,0,0 +) +g1,10096:7246811,24985375 +) +g1,10097:9143685,24985375 +g1,10097:10092123,24985375 +g1,10097:14834309,24985375 +g1,10097:15466601,24985375 +h1,10097:16731185,24985375:0,0,0 +k1,10097:31966991,24985375:15235806 +g1,10097:31966991,24985375 +) +(1,10098:7246811,25651553:24720180,404226,101187 +h1,10098:7246811,25651553:0,0,0 +k1,10098:7246811,25651553:0 +h1,10098:12305142,25651553:0,0,0 +k1,10098:31966990,25651553:19661848 +g1,10098:31966990,25651553 +) +(1,10102:7246811,26383267:24720180,404226,76021 +(1,10100:7246811,26383267:0,0,0 +g1,10100:7246811,26383267 +g1,10100:7246811,26383267 +g1,10100:6919131,26383267 +(1,10100:6919131,26383267:0,0,0 +) +g1,10100:7246811,26383267 +) +g1,10102:8195248,26383267 +g1,10102:9459831,26383267 +h1,10102:10724414,26383267:0,0,0 +k1,10102:31966990,26383267:21242576 +g1,10102:31966990,26383267 +) +(1,10104:7246811,27704805:24720180,404226,101187 +(1,10103:7246811,27704805:0,0,0 +g1,10103:7246811,27704805 +g1,10103:7246811,27704805 +g1,10103:6919131,27704805 +(1,10103:6919131,27704805:0,0,0 +) +g1,10103:7246811,27704805 +) +k1,10104:7246811,27704805:0 +g1,10104:12305142,27704805 +h1,10104:15150453,27704805:0,0,0 +k1,10104:31966991,27704805:16816538 +g1,10104:31966991,27704805 +) +(1,10108:7246811,28436519:24720180,404226,76021 +(1,10106:7246811,28436519:0,0,0 +g1,10106:7246811,28436519 +g1,10106:7246811,28436519 +g1,10106:6919131,28436519 +(1,10106:6919131,28436519:0,0,0 +) +g1,10106:7246811,28436519 +) +g1,10108:8195248,28436519 +g1,10108:9459831,28436519 +h1,10108:11040559,28436519:0,0,0 +k1,10108:31966991,28436519:20926432 +g1,10108:31966991,28436519 +) +(1,10110:7246811,29758057:24720180,404226,101187 +(1,10109:7246811,29758057:0,0,0 +g1,10109:7246811,29758057 +g1,10109:7246811,29758057 +g1,10109:6919131,29758057 +(1,10109:6919131,29758057:0,0,0 +) +g1,10109:7246811,29758057 +) +k1,10110:7246811,29758057:0 +h1,10110:11040559,29758057:0,0,0 +k1,10110:31966991,29758057:20926432 +g1,10110:31966991,29758057 +) +(1,10114:7246811,30489771:24720180,410518,76021 +(1,10112:7246811,30489771:0,0,0 +g1,10112:7246811,30489771 +g1,10112:7246811,30489771 +g1,10112:6919131,30489771 +(1,10112:6919131,30489771:0,0,0 +) +g1,10112:7246811,30489771 +) +g1,10114:8195248,30489771 +g1,10114:9459831,30489771 +g1,10114:12305142,30489771 +g1,10114:12621288,30489771 +g1,10114:12937434,30489771 +g1,10114:13253580,30489771 +g1,10114:13569726,30489771 +g1,10114:15466600,30489771 +g1,10114:15782746,30489771 +g1,10114:16098892,30489771 +g1,10114:16415038,30489771 +g1,10114:16731184,30489771 +g1,10114:17047330,30489771 +g1,10114:17363476,30489771 +g1,10114:17679622,30489771 +h1,10114:21473370,30489771:0,0,0 +k1,10114:31966991,30489771:10493621 +g1,10114:31966991,30489771 +) +] +) +g1,10115:31966991,30565792 +g1,10115:7246811,30565792 +g1,10115:7246811,30565792 +g1,10115:31966991,30565792 +g1,10115:31966991,30565792 +) +h1,10115:7246811,30762400:0,0,0 +(1,10119:7246811,32128176:24720180,513147,134348 +h1,10118:7246811,32128176:983040,0,0 +k1,10118:12589816,32128176:166316 +k1,10118:13517659,32128176:166315 +k1,10118:16780551,32128176:166316 +k1,10118:17598295,32128176:166316 +k1,10118:20291023,32128176:166315 +k1,10118:22599056,32128176:166316 +k1,10118:24620041,32128176:166316 +k1,10118:25595726,32128176:166315 +k1,10118:28524385,32128176:166316 +k1,10118:31966991,32128176:0 +) +(1,10119:7246811,32969664:24720180,513147,126483 +k1,10118:8866105,32969664:229931 +k1,10118:11708955,32969664:229930 +k1,10118:12294746,32969664:229931 +k1,10118:14800087,32969664:229931 +k1,10118:17412906,32969664:229930 +k1,10118:19198006,32969664:229931 +k1,10118:19959434,32969664:229931 +k1,10118:22661383,32969664:229931 +k1,10118:23519148,32969664:229930 +k1,10118:24846807,32969664:229931 +k1,10118:27911825,32969664:229931 +k1,10118:28827917,32969664:229930 +k1,10118:30155576,32969664:229931 +k1,10118:31966991,32969664:0 +) +(1,10119:7246811,33811152:24720180,513147,134348 +k1,10118:8542837,33811152:195021 +k1,10118:9508561,33811152:195021 +k1,10118:13146188,33811152:195021 +(1,10118:13146188,33811152:0,459977,115847 +r1,10119:16669860,33811152:3523672,575824,115847 +k1,10118:13146188,33811152:-3523672 +) +(1,10118:13146188,33811152:3523672,459977,115847 +k1,10118:13146188,33811152:3277 +h1,10118:16666583,33811152:0,411205,112570 +) +k1,10118:16864880,33811152:195020 +k1,10118:18788741,33811152:195021 +k1,10118:20002847,33811152:195021 +k1,10118:21799568,33811152:195021 +k1,10118:24377478,33811152:195021 +k1,10118:26127668,33811152:195021 +k1,10118:26989844,33811152:195020 +(1,10118:26989844,33811152:0,452978,115847 +r1,10119:28754957,33811152:1765113,568825,115847 +k1,10118:26989844,33811152:-1765113 +) +(1,10118:26989844,33811152:1765113,452978,115847 +k1,10118:26989844,33811152:3277 +h1,10118:28751680,33811152:0,411205,112570 +) +k1,10118:28949978,33811152:195021 +k1,10118:29676496,33811152:195021 +(1,10118:29676496,33811152:0,459977,115847 +r1,10119:31793321,33811152:2116825,575824,115847 +k1,10118:29676496,33811152:-2116825 +) +(1,10118:29676496,33811152:2116825,459977,115847 +k1,10118:29676496,33811152:3277 +h1,10118:31790044,33811152:0,411205,112570 +) +k1,10119:31966991,33811152:0 +k1,10119:31966991,33811152:0 +) +] +) +] +r1,10119:32583029,34535324:26214,15926155,0 +) +] +) +) +g1,10119:32583029,33945500 +) +h1,10119:6630773,34561538:0,0,0 +(1,10122:6630773,35835405:25952256,513147,7863 +h1,10121:6630773,35835405:983040,0,0 +k1,10121:8781883,35835405:214521 +k1,10121:10484727,35835405:214521 +k1,10121:12093199,35835405:214521 +k1,10121:13326805,35835405:214521 +k1,10121:17248042,35835405:214521 +k1,10121:18654009,35835405:214522 +k1,10121:22345215,35835405:214521 +k1,10121:25518031,35835405:214521 +k1,10121:26774574,35835405:214521 +k1,10121:28192336,35835405:214521 +k1,10121:29275209,35835405:214521 +k1,10121:30622192,35835405:214521 +k1,10121:32583029,35835405:0 +) +(1,10122:6630773,36676893:25952256,513147,134348 +k1,10121:7938981,36676893:210480 +k1,10121:9479841,36676893:210479 +k1,10121:12713497,36676893:210480 +k1,10121:15619472,36676893:210479 +k1,10121:17829456,36676893:210480 +k1,10121:21065733,36676893:210480 +k1,10121:22267772,36676893:210479 +k1,10121:25568275,36676893:210480 +k1,10121:26394792,36676893:210479 +k1,10121:28883959,36676893:210480 +h1,10121:29854547,36676893:0,0,0 +k1,10121:30065026,36676893:210479 +k1,10121:31084876,36676893:210480 +k1,10121:32583029,36676893:0 +) +(1,10122:6630773,37518381:25952256,505283,95026 +h1,10121:7826150,37518381:0,0,0 +k1,10122:32583030,37518381:24376116 +g1,10122:32583030,37518381 +) +v1,10124:6630773,38616939:0,393216,0 +(1,10136:6630773,44236294:25952256,6012571,196608 +g1,10136:6630773,44236294 +g1,10136:6630773,44236294 +g1,10136:6434165,44236294 +(1,10136:6434165,44236294:0,6012571,196608 +r1,10136:32779637,44236294:26345472,6209179,196608 +k1,10136:6434165,44236294:-26345472 +) +(1,10136:6434165,44236294:26345472,6012571,196608 +[1,10136:6630773,44236294:25952256,5815963,0 +(1,10126:6630773,38830849:25952256,410518,76021 +(1,10125:6630773,38830849:0,0,0 +g1,10125:6630773,38830849 +g1,10125:6630773,38830849 +g1,10125:6303093,38830849 +(1,10125:6303093,38830849:0,0,0 +) +g1,10125:6630773,38830849 +) +g1,10126:10740667,38830849 +g1,10126:11689105,38830849 +g1,10126:15482854,38830849 +h1,10126:15799000,38830849:0,0,0 +k1,10126:32583028,38830849:16784028 +g1,10126:32583028,38830849 +) +(1,10127:6630773,39497027:25952256,404226,76021 +h1,10127:6630773,39497027:0,0,0 +g1,10127:6946919,39497027 +g1,10127:7263065,39497027 +k1,10127:7263065,39497027:0 +h1,10127:8527648,39497027:0,0,0 +k1,10127:32583028,39497027:24055380 +g1,10127:32583028,39497027 +) +(1,10128:6630773,40163205:25952256,404226,101187 +h1,10128:6630773,40163205:0,0,0 +g1,10128:6946919,40163205 +g1,10128:7263065,40163205 +g1,10128:7579211,40163205 +g1,10128:7895357,40163205 +k1,10128:7895357,40163205:0 +h1,10128:15482854,40163205:0,0,0 +k1,10128:32583030,40163205:17100176 +g1,10128:32583030,40163205 +) +(1,10129:6630773,40829383:25952256,404226,107478 +h1,10129:6630773,40829383:0,0,0 +g1,10129:6946919,40829383 +g1,10129:7263065,40829383 +g1,10129:7579211,40829383 +g1,10129:7895357,40829383 +k1,10129:7895357,40829383:0 +h1,10129:12637543,40829383:0,0,0 +k1,10129:32583029,40829383:19945486 +g1,10129:32583029,40829383 +) +(1,10130:6630773,41495561:25952256,404226,101187 +h1,10130:6630773,41495561:0,0,0 +g1,10130:6946919,41495561 +g1,10130:7263065,41495561 +g1,10130:7579211,41495561 +g1,10130:7895357,41495561 +k1,10130:7895357,41495561:0 +h1,10130:12637542,41495561:0,0,0 +k1,10130:32583030,41495561:19945488 +g1,10130:32583030,41495561 +) +(1,10131:6630773,42161739:25952256,404226,101187 +h1,10131:6630773,42161739:0,0,0 +g1,10131:6946919,42161739 +g1,10131:7263065,42161739 +g1,10131:7579211,42161739 +g1,10131:7895357,42161739 +g1,10131:8211503,42161739 +g1,10131:8527649,42161739 +g1,10131:8843795,42161739 +g1,10131:9159941,42161739 +g1,10131:9476087,42161739 +g1,10131:9792233,42161739 +g1,10131:12953690,42161739 +g1,10131:15482856,42161739 +g1,10131:18328167,42161739 +g1,10131:18960459,42161739 +g1,10131:19908897,42161739 +g1,10131:20857335,42161739 +g1,10131:22121918,42161739 +g1,10131:22754210,42161739 +g1,10131:23702647,42161739 +k1,10131:23702647,42161739:0 +h1,10131:24651085,42161739:0,0,0 +k1,10131:32583029,42161739:7931944 +g1,10131:32583029,42161739 +) +(1,10132:6630773,42827917:25952256,404226,101187 +h1,10132:6630773,42827917:0,0,0 +g1,10132:6946919,42827917 +g1,10132:7263065,42827917 +g1,10132:7579211,42827917 +g1,10132:7895357,42827917 +g1,10132:9159940,42827917 +g1,10132:9792232,42827917 +h1,10132:11372961,42827917:0,0,0 +k1,10132:32583029,42827917:21210068 +g1,10132:32583029,42827917 +) +(1,10133:6630773,43494095:25952256,404226,76021 +h1,10133:6630773,43494095:0,0,0 +g1,10133:6946919,43494095 +g1,10133:7263065,43494095 +g1,10133:7579211,43494095 +g1,10133:7895357,43494095 +h1,10133:8211503,43494095:0,0,0 +k1,10133:32583029,43494095:24371526 +g1,10133:32583029,43494095 +) +(1,10134:6630773,44160273:25952256,404226,76021 +h1,10134:6630773,44160273:0,0,0 +h1,10134:6946919,44160273:0,0,0 +k1,10134:32583029,44160273:25636110 +g1,10134:32583029,44160273 +) +] +) +g1,10136:32583029,44236294 +g1,10136:6630773,44236294 +g1,10136:6630773,44236294 +g1,10136:32583029,44236294 +g1,10136:32583029,44236294 +) +h1,10136:6630773,44432902:0,0,0 +(1,10140:6630773,45706769:25952256,513147,115847 +h1,10139:6630773,45706769:983040,0,0 +k1,10139:8579292,45706769:337644 +k1,10139:9936020,45706769:337643 +k1,10139:11657784,45706769:337644 +k1,10139:13167866,45706769:337643 +k1,10139:15806479,45706769:337644 +k1,10139:17012474,45706769:337643 +k1,10139:18454400,45706769:337644 +k1,10139:19817026,45706769:337643 +k1,10139:21846810,45706769:337644 +k1,10139:22843745,45706769:337643 +k1,10139:24200474,45706769:337644 +k1,10139:28228449,45706769:337643 +k1,10139:29762780,45706769:337644 +(1,10139:29762780,45706769:0,452978,115847 +r1,10139:32583029,45706769:2820249,568825,115847 +k1,10139:29762780,45706769:-2820249 +) +(1,10139:29762780,45706769:2820249,452978,115847 +k1,10139:29762780,45706769:3277 +h1,10139:32579752,45706769:0,411205,112570 +) +k1,10139:32583029,45706769:0 +) +] +(1,10142:32583029,45706769:0,0,0 +g1,10142:32583029,45706769 +) +) +] +(1,10142:6630773,47279633:25952256,0,0 +h1,10142:6630773,47279633:25952256,0,0 +) +] +h1,10142:4262630,4025873:0,0,0 ] !27582 }192 -Input:1282:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1283:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1284:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1285:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 +Input:1278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {193 -[1,10243:4262630,47279633:28320399,43253760,0 -(1,10243:4262630,4025873:0,0,0 -[1,10243:-473657,4025873:25952256,0,0 -(1,10243:-473657,-710414:25952256,0,0 -h1,10243:-473657,-710414:0,0,0 -(1,10243:-473657,-710414:0,0,0 -(1,10243:-473657,-710414:0,0,0 -g1,10243:-473657,-710414 -(1,10243:-473657,-710414:65781,0,65781 -g1,10243:-407876,-710414 -[1,10243:-407876,-644633:0,0,0 +[1,10248:4262630,47279633:28320399,43253760,0 +(1,10248:4262630,4025873:0,0,0 +[1,10248:-473657,4025873:25952256,0,0 +(1,10248:-473657,-710414:25952256,0,0 +h1,10248:-473657,-710414:0,0,0 +(1,10248:-473657,-710414:0,0,0 +(1,10248:-473657,-710414:0,0,0 +g1,10248:-473657,-710414 +(1,10248:-473657,-710414:65781,0,65781 +g1,10248:-407876,-710414 +[1,10248:-407876,-644633:0,0,0 ] ) -k1,10243:-473657,-710414:-65781 +k1,10248:-473657,-710414:-65781 ) ) -k1,10243:25478599,-710414:25952256 -g1,10243:25478599,-710414 +k1,10248:25478599,-710414:25952256 +g1,10248:25478599,-710414 ) ] ) -[1,10243:6630773,47279633:25952256,43253760,0 -[1,10243:6630773,4812305:25952256,786432,0 -(1,10243:6630773,4812305:25952256,513147,134348 -(1,10243:6630773,4812305:25952256,513147,134348 -g1,10243:3078558,4812305 -[1,10243:3078558,4812305:0,0,0 -(1,10243:3078558,2439708:0,1703936,0 -k1,10243:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10243:2537886,2439708:1179648,16384,0 +[1,10248:6630773,47279633:25952256,43253760,0 +[1,10248:6630773,4812305:25952256,786432,0 +(1,10248:6630773,4812305:25952256,513147,134348 +(1,10248:6630773,4812305:25952256,513147,134348 +g1,10248:3078558,4812305 +[1,10248:3078558,4812305:0,0,0 +(1,10248:3078558,2439708:0,1703936,0 +k1,10248:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10248:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10243:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10248:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10243:3078558,4812305:0,0,0 -(1,10243:3078558,2439708:0,1703936,0 -g1,10243:29030814,2439708 -g1,10243:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10243:36151628,1915420:16384,1179648,0 +[1,10248:3078558,4812305:0,0,0 +(1,10248:3078558,2439708:0,1703936,0 +g1,10248:29030814,2439708 +g1,10248:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10248:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10243:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10248:37855564,2439708:1179648,16384,0 ) ) -k1,10243:3078556,2439708:-34777008 +k1,10248:3078556,2439708:-34777008 ) ] -[1,10243:3078558,4812305:0,0,0 -(1,10243:3078558,49800853:0,16384,2228224 -k1,10243:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10243:2537886,49800853:1179648,16384,0 +[1,10248:3078558,4812305:0,0,0 +(1,10248:3078558,49800853:0,16384,2228224 +k1,10248:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10248:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10243:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10248:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10243:3078558,4812305:0,0,0 -(1,10243:3078558,49800853:0,16384,2228224 -g1,10243:29030814,49800853 -g1,10243:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10243:36151628,51504789:16384,1179648,0 +[1,10248:3078558,4812305:0,0,0 +(1,10248:3078558,49800853:0,16384,2228224 +g1,10248:29030814,49800853 +g1,10248:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10248:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10243:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10248:37855564,49800853:1179648,16384,0 ) ) -k1,10243:3078556,49800853:-34777008 +k1,10248:3078556,49800853:-34777008 ) ] -g1,10243:6630773,4812305 -k1,10243:25241686,4812305:17415536 -g1,10243:26807341,4812305 -g1,10243:30339731,4812305 -g1,10243:31154998,4812305 -) -) -] -[1,10243:6630773,45706769:25952256,40108032,0 -(1,10243:6630773,45706769:25952256,40108032,0 -(1,10243:6630773,45706769:0,0,0 -g1,10243:6630773,45706769 +g1,10248:6630773,4812305 +k1,10248:25241686,4812305:17415536 +g1,10248:26807341,4812305 +g1,10248:30339731,4812305 +g1,10248:31154998,4812305 +) +) +] +[1,10248:6630773,45706769:25952256,40108032,0 +(1,10248:6630773,45706769:25952256,40108032,0 +(1,10248:6630773,45706769:0,0,0 +g1,10248:6630773,45706769 ) -[1,10243:6630773,45706769:25952256,40108032,0 -(1,10135:6630773,6254097:25952256,513147,126483 -k1,10134:10658258,6254097:320769 -k1,10134:12471937,6254097:320769 -k1,10134:13858977,6254097:320769 -k1,10134:14941274,6254097:320769 -k1,10134:17527623,6254097:320769 -k1,10134:20241111,6254097:320769 -k1,10134:23536559,6254097:320769 -k1,10134:25246691,6254097:320769 -k1,10134:26834926,6254097:320769 -k1,10134:29553657,6254097:320769 -k1,10134:31563944,6254097:320769 -k1,10135:32583029,6254097:0 -) -(1,10135:6630773,7095585:25952256,505283,115847 -(1,10134:6630773,7095585:0,459977,115847 -r1,10134:10857869,7095585:4227096,575824,115847 -k1,10134:6630773,7095585:-4227096 -) -(1,10134:6630773,7095585:4227096,459977,115847 -k1,10134:6630773,7095585:3277 -h1,10134:10854592,7095585:0,411205,112570 -) -g1,10134:11057098,7095585 -g1,10134:14963043,7095585 -k1,10135:32583029,7095585:15953405 -g1,10135:32583029,7095585 -) -v1,10137:6630773,8202530:0,393216,0 -(1,10158:6630773,14694492:25952256,6885178,196608 -g1,10158:6630773,14694492 -g1,10158:6630773,14694492 -g1,10158:6434165,14694492 -(1,10158:6434165,14694492:0,6885178,196608 -r1,10158:32779637,14694492:26345472,7081786,196608 -k1,10158:6434165,14694492:-26345472 -) -(1,10158:6434165,14694492:26345472,6885178,196608 -[1,10158:6630773,14694492:25952256,6688570,0 -(1,10139:6630773,8416440:25952256,410518,107478 -(1,10138:6630773,8416440:0,0,0 -g1,10138:6630773,8416440 -g1,10138:6630773,8416440 -g1,10138:6303093,8416440 -(1,10138:6303093,8416440:0,0,0 -) -g1,10138:6630773,8416440 -) -g1,10139:8527647,8416440 -g1,10139:9476085,8416440 -g1,10139:14850562,8416440 -g1,10139:15482854,8416440 -g1,10139:17695875,8416440 -g1,10139:19276604,8416440 -g1,10139:21173479,8416440 -g1,10139:23702645,8416440 -g1,10139:24334937,8416440 -g1,10139:25915667,8416440 -g1,10139:28760978,8416440 -g1,10139:29393270,8416440 -h1,10139:31290144,8416440:0,0,0 -k1,10139:32583029,8416440:1292885 -g1,10139:32583029,8416440 -) -(1,10140:6630773,9082618:25952256,410518,101187 -h1,10140:6630773,9082618:0,0,0 -k1,10140:6630773,9082618:0 -h1,10140:12953687,9082618:0,0,0 -k1,10140:32583029,9082618:19629342 -g1,10140:32583029,9082618 -) -(1,10144:6630773,9814332:25952256,404226,76021 -(1,10142:6630773,9814332:0,0,0 -g1,10142:6630773,9814332 -g1,10142:6630773,9814332 -g1,10142:6303093,9814332 -(1,10142:6303093,9814332:0,0,0 -) -g1,10142:6630773,9814332 -) -g1,10144:7579210,9814332 -g1,10144:8843793,9814332 -h1,10144:10108376,9814332:0,0,0 -k1,10144:32583028,9814332:22474652 -g1,10144:32583028,9814332 -) -(1,10146:6630773,11135870:25952256,410518,101187 -(1,10145:6630773,11135870:0,0,0 -g1,10145:6630773,11135870 -g1,10145:6630773,11135870 -g1,10145:6303093,11135870 -(1,10145:6303093,11135870:0,0,0 -) -g1,10145:6630773,11135870 -) -k1,10146:6630773,11135870:0 -h1,10146:11689104,11135870:0,0,0 -k1,10146:32583028,11135870:20893924 -g1,10146:32583028,11135870 -) -(1,10150:6630773,11867584:25952256,404226,76021 -(1,10148:6630773,11867584:0,0,0 -g1,10148:6630773,11867584 -g1,10148:6630773,11867584 -g1,10148:6303093,11867584 -(1,10148:6303093,11867584:0,0,0 -) -g1,10148:6630773,11867584 -) -g1,10150:7579210,11867584 -g1,10150:8843793,11867584 -h1,10150:10424521,11867584:0,0,0 -k1,10150:32583029,11867584:22158508 -g1,10150:32583029,11867584 -) -(1,10152:6630773,13189122:25952256,410518,101187 -(1,10151:6630773,13189122:0,0,0 -g1,10151:6630773,13189122 -g1,10151:6630773,13189122 -g1,10151:6303093,13189122 -(1,10151:6303093,13189122:0,0,0 -) -g1,10151:6630773,13189122 -) -k1,10152:6630773,13189122:0 -h1,10152:12637541,13189122:0,0,0 -k1,10152:32583029,13189122:19945488 -g1,10152:32583029,13189122 -) -(1,10157:6630773,13920836:25952256,410518,107478 -(1,10154:6630773,13920836:0,0,0 -g1,10154:6630773,13920836 -g1,10154:6630773,13920836 -g1,10154:6303093,13920836 -(1,10154:6303093,13920836:0,0,0 -) -g1,10154:6630773,13920836 -) -g1,10157:7579210,13920836 -g1,10157:11056813,13920836 -h1,10157:14534415,13920836:0,0,0 -k1,10157:32583029,13920836:18048614 -g1,10157:32583029,13920836 -) -(1,10157:6630773,14587014:25952256,410518,107478 -h1,10157:6630773,14587014:0,0,0 -g1,10157:7579210,14587014 -g1,10157:9792230,14587014 -g1,10157:12321396,14587014 -g1,10157:15166707,14587014 -g1,10157:18012019,14587014 -g1,10157:21173476,14587014 -h1,10157:23386496,14587014:0,0,0 -k1,10157:32583029,14587014:9196533 -g1,10157:32583029,14587014 -) -] -) -g1,10158:32583029,14694492 -g1,10158:6630773,14694492 -g1,10158:6630773,14694492 -g1,10158:32583029,14694492 -g1,10158:32583029,14694492 -) -h1,10158:6630773,14891100:0,0,0 -(1,10162:6630773,16173354:25952256,513147,126483 -h1,10161:6630773,16173354:983040,0,0 -k1,10161:10175852,16173354:242720 -k1,10161:11410133,16173354:242721 -k1,10161:13042216,16173354:242720 -k1,10161:16829779,16173354:242721 -k1,10161:18722696,16173354:242720 -k1,10161:21660257,16173354:242721 -k1,10161:23458146,16173354:242720 -(1,10161:23458146,16173354:0,452978,115847 -r1,10161:25574971,16173354:2116825,568825,115847 -k1,10161:23458146,16173354:-2116825 -) -(1,10161:23458146,16173354:2116825,452978,115847 -k1,10161:23458146,16173354:3277 -h1,10161:25571694,16173354:0,411205,112570 -) -k1,10161:25817692,16173354:242721 -k1,10161:26591909,16173354:242720 -k1,10161:29217519,16173354:242721 -k1,10161:31027860,16173354:242720 -k1,10162:32583029,16173354:0 -) -(1,10162:6630773,17014842:25952256,513147,115847 -(1,10161:6630773,17014842:0,459977,115847 -r1,10161:10154445,17014842:3523672,575824,115847 -k1,10161:6630773,17014842:-3523672 -) -(1,10161:6630773,17014842:3523672,459977,115847 -k1,10161:6630773,17014842:3277 -h1,10161:10151168,17014842:0,411205,112570 -) -g1,10161:10527344,17014842 -g1,10161:13661275,17014842 -g1,10161:15249867,17014842 -g1,10161:17655693,17014842 -g1,10161:18846482,17014842 -g1,10161:20111982,17014842 -k1,10162:32583029,17014842:10155660 -g1,10162:32583029,17014842 -) -v1,10164:6630773,18121787:0,393216,0 -(1,10185:6630773,24607457:25952256,6878886,196608 -g1,10185:6630773,24607457 -g1,10185:6630773,24607457 -g1,10185:6434165,24607457 -(1,10185:6434165,24607457:0,6878886,196608 -r1,10185:32779637,24607457:26345472,7075494,196608 -k1,10185:6434165,24607457:-26345472 -) -(1,10185:6434165,24607457:26345472,6878886,196608 -[1,10185:6630773,24607457:25952256,6682278,0 -(1,10166:6630773,18329405:25952256,404226,107478 -(1,10165:6630773,18329405:0,0,0 -g1,10165:6630773,18329405 -g1,10165:6630773,18329405 -g1,10165:6303093,18329405 -(1,10165:6303093,18329405:0,0,0 -) -g1,10165:6630773,18329405 -) -g1,10166:8527647,18329405 -g1,10166:9476085,18329405 -g1,10166:13585979,18329405 -g1,10166:14218271,18329405 -g1,10166:16431292,18329405 -g1,10166:18012021,18329405 -g1,10166:19908896,18329405 -g1,10166:22438062,18329405 -g1,10166:23070354,18329405 -g1,10166:24651084,18329405 -g1,10166:27496395,18329405 -g1,10166:28128687,18329405 -h1,10166:30025561,18329405:0,0,0 -k1,10166:32583029,18329405:2557468 -g1,10166:32583029,18329405 -) -(1,10167:6630773,18995583:25952256,410518,101187 -h1,10167:6630773,18995583:0,0,0 -k1,10167:6630773,18995583:0 -h1,10167:12953687,18995583:0,0,0 -k1,10167:32583029,18995583:19629342 -g1,10167:32583029,18995583 -) -(1,10171:6630773,19727297:25952256,404226,76021 -(1,10169:6630773,19727297:0,0,0 -g1,10169:6630773,19727297 -g1,10169:6630773,19727297 -g1,10169:6303093,19727297 -(1,10169:6303093,19727297:0,0,0 -) -g1,10169:6630773,19727297 -) -g1,10171:7579210,19727297 -g1,10171:8843793,19727297 -h1,10171:10108376,19727297:0,0,0 -k1,10171:32583028,19727297:22474652 -g1,10171:32583028,19727297 -) -(1,10173:6630773,21048835:25952256,404226,101187 -(1,10172:6630773,21048835:0,0,0 -g1,10172:6630773,21048835 -g1,10172:6630773,21048835 -g1,10172:6303093,21048835 -(1,10172:6303093,21048835:0,0,0 -) -g1,10172:6630773,21048835 -) -k1,10173:6630773,21048835:0 -h1,10173:11689104,21048835:0,0,0 -k1,10173:32583028,21048835:20893924 -g1,10173:32583028,21048835 -) -(1,10177:6630773,21780549:25952256,404226,76021 -(1,10175:6630773,21780549:0,0,0 -g1,10175:6630773,21780549 -g1,10175:6630773,21780549 -g1,10175:6303093,21780549 -(1,10175:6303093,21780549:0,0,0 -) -g1,10175:6630773,21780549 -) -g1,10177:7579210,21780549 -g1,10177:8843793,21780549 -h1,10177:10108376,21780549:0,0,0 -k1,10177:32583028,21780549:22474652 -g1,10177:32583028,21780549 -) -(1,10179:6630773,23102087:25952256,404226,101187 -(1,10178:6630773,23102087:0,0,0 -g1,10178:6630773,23102087 -g1,10178:6630773,23102087 -g1,10178:6303093,23102087 -(1,10178:6303093,23102087:0,0,0 -) -g1,10178:6630773,23102087 -) -k1,10179:6630773,23102087:0 -h1,10179:12637541,23102087:0,0,0 -k1,10179:32583029,23102087:19945488 -g1,10179:32583029,23102087 -) -(1,10184:6630773,23833801:25952256,410518,107478 -(1,10181:6630773,23833801:0,0,0 -g1,10181:6630773,23833801 -g1,10181:6630773,23833801 -g1,10181:6303093,23833801 -(1,10181:6303093,23833801:0,0,0 -) -g1,10181:6630773,23833801 -) -g1,10184:7579210,23833801 -g1,10184:9792230,23833801 -h1,10184:13269832,23833801:0,0,0 -k1,10184:32583028,23833801:19313196 -g1,10184:32583028,23833801 -) -(1,10184:6630773,24499979:25952256,404226,107478 -h1,10184:6630773,24499979:0,0,0 -g1,10184:7579210,24499979 -g1,10184:9792230,24499979 -g1,10184:13269833,24499979 -g1,10184:16115144,24499979 -g1,10184:18960456,24499979 -g1,10184:22121913,24499979 -h1,10184:24334933,24499979:0,0,0 -k1,10184:32583029,24499979:8248096 -g1,10184:32583029,24499979 -) -] -) -g1,10185:32583029,24607457 -g1,10185:6630773,24607457 -g1,10185:6630773,24607457 -g1,10185:32583029,24607457 -g1,10185:32583029,24607457 -) -h1,10185:6630773,24804065:0,0,0 -(1,10189:6630773,26086319:25952256,513147,115847 -h1,10188:6630773,26086319:983040,0,0 -g1,10188:9009729,26086319 -(1,10188:9009729,26086319:0,452978,115847 -r1,10188:11478266,26086319:2468537,568825,115847 -k1,10188:9009729,26086319:-2468537 -) -(1,10188:9009729,26086319:2468537,452978,115847 -k1,10188:9009729,26086319:3277 -h1,10188:11474989,26086319:0,411205,112570 -) -g1,10188:11677495,26086319 -g1,10188:14331047,26086319 -g1,10188:15477927,26086319 -g1,10188:17992543,26086319 -g1,10188:21167107,26086319 -g1,10188:22385421,26086319 -g1,10188:23741360,26086319 -g1,10188:26322167,26086319 -g1,10188:27469047,26086319 -g1,10188:29057639,26086319 -k1,10189:32583029,26086319:1145122 -g1,10189:32583029,26086319 -) -v1,10191:6630773,27193264:0,393216,0 -(1,10212:6630773,35531000:25952256,8730952,196608 -g1,10212:6630773,35531000 -g1,10212:6630773,35531000 -g1,10212:6434165,35531000 -(1,10212:6434165,35531000:0,8730952,196608 -r1,10212:32779637,35531000:26345472,8927560,196608 -k1,10212:6434165,35531000:-26345472 -) -(1,10212:6434165,35531000:26345472,8730952,196608 -[1,10212:6630773,35531000:25952256,8534344,0 -(1,10193:6630773,27407174:25952256,410518,101187 -(1,10192:6630773,27407174:0,0,0 -g1,10192:6630773,27407174 -g1,10192:6630773,27407174 -g1,10192:6303093,27407174 -(1,10192:6303093,27407174:0,0,0 -) -g1,10192:6630773,27407174 -) -k1,10193:6630773,27407174:0 -h1,10193:10424521,27407174:0,0,0 -k1,10193:32583029,27407174:22158508 -g1,10193:32583029,27407174 -) -(1,10200:6630773,28138888:25952256,404226,107478 -(1,10195:6630773,28138888:0,0,0 -g1,10195:6630773,28138888 -g1,10195:6630773,28138888 -g1,10195:6303093,28138888 -(1,10195:6303093,28138888:0,0,0 -) -g1,10195:6630773,28138888 -) -g1,10200:7579210,28138888 -g1,10200:7895356,28138888 -g1,10200:8211502,28138888 -g1,10200:10108376,28138888 -g1,10200:12637542,28138888 -h1,10200:15166707,28138888:0,0,0 -k1,10200:32583029,28138888:17416322 -g1,10200:32583029,28138888 -) -(1,10200:6630773,28805066:25952256,388497,0 -h1,10200:6630773,28805066:0,0,0 -g1,10200:7579210,28805066 -g1,10200:8211502,28805066 -g1,10200:8527648,28805066 -g1,10200:8843794,28805066 -g1,10200:9159940,28805066 -g1,10200:9476086,28805066 -g1,10200:10108378,28805066 -g1,10200:10424524,28805066 -g1,10200:10740670,28805066 -g1,10200:11056816,28805066 -g1,10200:11372962,28805066 -g1,10200:11689108,28805066 -g1,10200:12005254,28805066 -g1,10200:12637546,28805066 -g1,10200:12953692,28805066 -g1,10200:13269838,28805066 -g1,10200:13585984,28805066 -g1,10200:13902130,28805066 -g1,10200:14218276,28805066 -g1,10200:14534422,28805066 -g1,10200:14850568,28805066 -h1,10200:15166714,28805066:0,0,0 -k1,10200:32583030,28805066:17416316 -g1,10200:32583030,28805066 -) -(1,10200:6630773,29471244:25952256,388497,0 -h1,10200:6630773,29471244:0,0,0 -g1,10200:7579210,29471244 -g1,10200:8211502,29471244 -g1,10200:8527648,29471244 -g1,10200:8843794,29471244 -g1,10200:9159940,29471244 -g1,10200:9476086,29471244 -g1,10200:10108378,29471244 -g1,10200:10424524,29471244 -g1,10200:10740670,29471244 -g1,10200:11056816,29471244 -g1,10200:11372962,29471244 -g1,10200:11689108,29471244 -g1,10200:12005254,29471244 -g1,10200:12637546,29471244 -g1,10200:12953692,29471244 -g1,10200:13269838,29471244 -g1,10200:13585984,29471244 -g1,10200:13902130,29471244 -g1,10200:14218276,29471244 -g1,10200:14534422,29471244 -g1,10200:14850568,29471244 -h1,10200:15166714,29471244:0,0,0 -k1,10200:32583030,29471244:17416316 -g1,10200:32583030,29471244 -) -(1,10200:6630773,30137422:25952256,388497,9436 -h1,10200:6630773,30137422:0,0,0 -g1,10200:7579210,30137422 -g1,10200:8211502,30137422 -g1,10200:8527648,30137422 -g1,10200:8843794,30137422 -g1,10200:9159940,30137422 -g1,10200:9476086,30137422 -g1,10200:10108378,30137422 -g1,10200:10424524,30137422 -g1,10200:10740670,30137422 -g1,10200:11056816,30137422 -g1,10200:11372962,30137422 -g1,10200:11689108,30137422 -g1,10200:12005254,30137422 -g1,10200:12637546,30137422 -g1,10200:12953692,30137422 -g1,10200:13269838,30137422 -g1,10200:13585984,30137422 -g1,10200:13902130,30137422 -g1,10200:14218276,30137422 -g1,10200:14534422,30137422 -g1,10200:14850568,30137422 -h1,10200:15166714,30137422:0,0,0 -k1,10200:32583030,30137422:17416316 -g1,10200:32583030,30137422 -) -(1,10202:6630773,31458960:25952256,404226,101187 -(1,10201:6630773,31458960:0,0,0 -g1,10201:6630773,31458960 -g1,10201:6630773,31458960 -g1,10201:6303093,31458960 -(1,10201:6303093,31458960:0,0,0 -) -g1,10201:6630773,31458960 -) -k1,10202:6630773,31458960:0 -h1,10202:10424521,31458960:0,0,0 -k1,10202:32583029,31458960:22158508 -g1,10202:32583029,31458960 -) -(1,10211:6630773,32190674:25952256,404226,9436 -(1,10204:6630773,32190674:0,0,0 -g1,10204:6630773,32190674 -g1,10204:6630773,32190674 -g1,10204:6303093,32190674 -(1,10204:6303093,32190674:0,0,0 -) -g1,10204:6630773,32190674 -) -g1,10211:7579210,32190674 -g1,10211:8211502,32190674 -g1,10211:8843794,32190674 -g1,10211:11372960,32190674 -g1,10211:12005252,32190674 -g1,10211:12637544,32190674 -h1,10211:12953690,32190674:0,0,0 -k1,10211:32583030,32190674:19629340 -g1,10211:32583030,32190674 -) -(1,10211:6630773,32856852:25952256,404226,107478 -h1,10211:6630773,32856852:0,0,0 -g1,10211:7579210,32856852 -g1,10211:7895356,32856852 -g1,10211:8211502,32856852 -g1,10211:10108376,32856852 -g1,10211:12637542,32856852 -h1,10211:15166707,32856852:0,0,0 -k1,10211:32583029,32856852:17416322 -g1,10211:32583029,32856852 -) -(1,10211:6630773,33523030:25952256,404226,6290 -h1,10211:6630773,33523030:0,0,0 -g1,10211:7579210,33523030 -g1,10211:7895356,33523030 -g1,10211:8211502,33523030 -g1,10211:10108377,33523030 -g1,10211:10424523,33523030 -g1,10211:10740669,33523030 -g1,10211:12637544,33523030 -g1,10211:12953690,33523030 -g1,10211:13269836,33523030 -g1,10211:13585982,33523030 -k1,10211:13585982,33523030:0 -h1,10211:15166711,33523030:0,0,0 -k1,10211:32583029,33523030:17416318 -g1,10211:32583029,33523030 -) -(1,10211:6630773,34189208:25952256,388497,0 -h1,10211:6630773,34189208:0,0,0 -g1,10211:7579210,34189208 -g1,10211:8211502,34189208 -g1,10211:8843794,34189208 -g1,10211:9159940,34189208 -g1,10211:9476086,34189208 -g1,10211:9792232,34189208 -g1,10211:10108378,34189208 -g1,10211:10424524,34189208 -g1,10211:10740670,34189208 -g1,10211:11056816,34189208 -g1,10211:11372962,34189208 -g1,10211:11689108,34189208 -g1,10211:12005254,34189208 -g1,10211:12637546,34189208 -g1,10211:12953692,34189208 -g1,10211:13269838,34189208 -g1,10211:13585984,34189208 -g1,10211:13902130,34189208 -g1,10211:14218276,34189208 -g1,10211:14534422,34189208 -g1,10211:14850568,34189208 -h1,10211:15166714,34189208:0,0,0 -k1,10211:32583030,34189208:17416316 -g1,10211:32583030,34189208 -) -(1,10211:6630773,34855386:25952256,388497,0 -h1,10211:6630773,34855386:0,0,0 -g1,10211:7579210,34855386 -g1,10211:8211502,34855386 -g1,10211:8843794,34855386 -g1,10211:9159940,34855386 -g1,10211:9476086,34855386 -g1,10211:9792232,34855386 -g1,10211:10108378,34855386 -g1,10211:10424524,34855386 -g1,10211:10740670,34855386 -g1,10211:11056816,34855386 -g1,10211:11372962,34855386 -g1,10211:11689108,34855386 -g1,10211:12005254,34855386 -g1,10211:12637546,34855386 -g1,10211:12953692,34855386 -g1,10211:13269838,34855386 -g1,10211:13585984,34855386 -g1,10211:13902130,34855386 -g1,10211:14218276,34855386 -g1,10211:14534422,34855386 -g1,10211:14850568,34855386 -h1,10211:15166714,34855386:0,0,0 -k1,10211:32583030,34855386:17416316 -g1,10211:32583030,34855386 -) -(1,10211:6630773,35521564:25952256,388497,9436 -h1,10211:6630773,35521564:0,0,0 -g1,10211:7579210,35521564 -g1,10211:8211502,35521564 -g1,10211:8843794,35521564 -g1,10211:9159940,35521564 -g1,10211:9476086,35521564 -g1,10211:9792232,35521564 -g1,10211:10108378,35521564 -g1,10211:10424524,35521564 -g1,10211:10740670,35521564 -g1,10211:11056816,35521564 -g1,10211:11372962,35521564 -g1,10211:11689108,35521564 -g1,10211:12005254,35521564 -g1,10211:12637546,35521564 -g1,10211:12953692,35521564 -g1,10211:13269838,35521564 -g1,10211:13585984,35521564 -g1,10211:13902130,35521564 -g1,10211:14218276,35521564 -g1,10211:14534422,35521564 -g1,10211:14850568,35521564 -h1,10211:15166714,35521564:0,0,0 -k1,10211:32583030,35521564:17416316 -g1,10211:32583030,35521564 -) -] -) -g1,10212:32583029,35531000 -g1,10212:6630773,35531000 -g1,10212:6630773,35531000 -g1,10212:32583029,35531000 -g1,10212:32583029,35531000 -) -h1,10212:6630773,35727608:0,0,0 -v1,10216:6630773,37450629:0,393216,0 -(1,10217:6630773,43094748:25952256,6037335,616038 -g1,10217:6630773,43094748 -(1,10217:6630773,43094748:25952256,6037335,616038 -(1,10217:6630773,43710786:25952256,6653373,0 -[1,10217:6630773,43710786:25952256,6653373,0 -(1,10217:6630773,43684572:25952256,6600945,0 -r1,10217:6656987,43684572:26214,6600945,0 -[1,10217:6656987,43684572:25899828,6600945,0 -(1,10217:6656987,43094748:25899828,5421297,0 -[1,10217:7246811,43094748:24720180,5421297,0 -(1,10217:7246811,38760825:24720180,1087374,126483 -k1,10216:8721034,38760825:264520 -k1,10216:11304874,38760825:264521 -k1,10216:12760839,38760825:264520 -k1,10216:14414723,38760825:264521 -k1,10216:16885840,38760825:264520 -k1,10216:18893619,38760825:264521 -k1,10216:19774177,38760825:264520 -k1,10216:21369079,38760825:264521 -k1,10216:23013787,38760825:264520 -k1,10216:24269868,38760825:264521 -k1,10216:26884509,38760825:264520 -k1,10216:28847068,38760825:264521 -k1,10216:30491776,38760825:264520 -k1,10216:31966991,38760825:0 -) -(1,10217:7246811,39602313:24720180,513147,126483 -k1,10216:9153908,39602313:155320 -k1,10216:10843427,39602313:155321 -k1,10216:11681632,39602313:155320 -k1,10216:14723813,39602313:155320 -k1,10216:15484687,39602313:155321 -k1,10216:18785735,39602313:155320 -k1,10216:19296915,39602313:155320 -k1,10216:20841598,39602313:155320 -k1,10216:22873215,39602313:155321 -k1,10216:24219980,39602313:155320 -k1,10216:25146003,39602313:155320 -k1,10216:28606305,39602313:155321 -k1,10216:30573040,39602313:155320 -k1,10216:31966991,39602313:0 -) -(1,10217:7246811,40443801:24720180,505283,126483 -k1,10216:8062210,40443801:202637 -k1,10216:9760379,40443801:202637 -k1,10216:10759934,40443801:202637 -k1,10216:12496770,40443801:202638 -k1,10216:13890852,40443801:202637 -k1,10216:15527417,40443801:202637 -k1,10216:16921499,40443801:202637 -k1,10216:18454517,40443801:202637 -k1,10216:19676239,40443801:202637 -k1,10216:22037632,40443801:202637 -k1,10216:23957312,40443801:202637 -k1,10216:25857988,40443801:202638 -k1,10216:27440813,40443801:202637 -k1,10216:28635010,40443801:202637 -k1,10216:31361438,40443801:202637 -k1,10216:31966991,40443801:0 -) -(1,10217:7246811,41285289:24720180,513147,126483 -k1,10216:10604384,41285289:211845 -k1,10216:11172089,41285289:211845 -k1,10216:12773297,41285289:211845 -k1,10216:14861438,41285289:211845 -k1,10216:16264728,41285289:211845 -k1,10216:17247277,41285289:211846 -k1,10216:20764103,41285289:211845 -k1,10216:22787363,41285289:211845 -k1,10216:24393159,41285289:211845 -k1,10216:26255201,41285289:211845 -k1,10216:29180237,41285289:211845 -k1,10216:30834529,41285289:211845 -k1,10216:31966991,41285289:0 -) -(1,10217:7246811,42126777:24720180,513147,126483 -k1,10216:8130892,42126777:196608 -k1,10216:8943538,42126777:196608 -k1,10216:10159231,42126777:196608 -k1,10216:12170530,42126777:196607 -k1,10216:13026430,42126777:196608 -k1,10216:14242123,42126777:196608 -k1,10216:17273819,42126777:196608 -k1,10216:18661872,42126777:196608 -k1,10216:20292408,42126777:196608 -k1,10216:21680461,42126777:196608 -k1,10216:23207450,42126777:196608 -k1,10216:24423142,42126777:196607 -k1,10216:26778506,42126777:196608 -k1,10216:28692157,42126777:196608 -k1,10216:30586803,42126777:196608 -k1,10216:31966991,42126777:0 -) -(1,10217:7246811,42968265:24720180,505283,126483 -g1,10216:8437600,42968265 -k1,10217:31966991,42968265:21005600 -g1,10217:31966991,42968265 -) -] -) -] -r1,10217:32583029,43684572:26214,6600945,0 -) -] -) -) -g1,10217:32583029,43094748 -) -h1,10217:6630773,43710786:0,0,0 -(1,10220:6630773,44993040:25952256,513147,115847 -h1,10219:6630773,44993040:983040,0,0 -g1,10219:9284981,44993040 -g1,10219:11690807,44993040 -g1,10219:12994318,44993040 -g1,10219:13941313,44993040 -g1,10219:17301343,44993040 -g1,10219:18768038,44993040 -g1,10219:21108984,44993040 -g1,10219:22702164,44993040 -(1,10219:22702164,44993040:0,452978,115847 -r1,10219:26577548,44993040:3875384,568825,115847 -k1,10219:22702164,44993040:-3875384 -) -(1,10219:22702164,44993040:3875384,452978,115847 -k1,10219:22702164,44993040:3277 -h1,10219:26574271,44993040:0,411205,112570 -) -k1,10220:32583029,44993040:5831811 -g1,10220:32583029,44993040 -) -v1,10222:6630773,46099985:0,393216,0 -] -(1,10243:32583029,45706769:0,0,0 -g1,10243:32583029,45706769 -) -) -] -(1,10243:6630773,47279633:25952256,0,0 -h1,10243:6630773,47279633:25952256,0,0 -) -] -h1,10243:4262630,4025873:0,0,0 +[1,10248:6630773,45706769:25952256,40108032,0 +(1,10140:6630773,6254097:25952256,513147,126483 +k1,10139:10658258,6254097:320769 +k1,10139:12471937,6254097:320769 +k1,10139:13858977,6254097:320769 +k1,10139:14941274,6254097:320769 +k1,10139:17527623,6254097:320769 +k1,10139:20241111,6254097:320769 +k1,10139:23536559,6254097:320769 +k1,10139:25246691,6254097:320769 +k1,10139:26834926,6254097:320769 +k1,10139:29553657,6254097:320769 +k1,10139:31563944,6254097:320769 +k1,10140:32583029,6254097:0 +) +(1,10140:6630773,7095585:25952256,505283,115847 +(1,10139:6630773,7095585:0,459977,115847 +r1,10139:10857869,7095585:4227096,575824,115847 +k1,10139:6630773,7095585:-4227096 +) +(1,10139:6630773,7095585:4227096,459977,115847 +k1,10139:6630773,7095585:3277 +h1,10139:10854592,7095585:0,411205,112570 +) +g1,10139:11057098,7095585 +g1,10139:14963043,7095585 +k1,10140:32583029,7095585:15953405 +g1,10140:32583029,7095585 +) +v1,10142:6630773,8202530:0,393216,0 +(1,10163:6630773,14694492:25952256,6885178,196608 +g1,10163:6630773,14694492 +g1,10163:6630773,14694492 +g1,10163:6434165,14694492 +(1,10163:6434165,14694492:0,6885178,196608 +r1,10163:32779637,14694492:26345472,7081786,196608 +k1,10163:6434165,14694492:-26345472 +) +(1,10163:6434165,14694492:26345472,6885178,196608 +[1,10163:6630773,14694492:25952256,6688570,0 +(1,10144:6630773,8416440:25952256,410518,107478 +(1,10143:6630773,8416440:0,0,0 +g1,10143:6630773,8416440 +g1,10143:6630773,8416440 +g1,10143:6303093,8416440 +(1,10143:6303093,8416440:0,0,0 +) +g1,10143:6630773,8416440 +) +g1,10144:8527647,8416440 +g1,10144:9476085,8416440 +g1,10144:14850562,8416440 +g1,10144:15482854,8416440 +g1,10144:17695875,8416440 +g1,10144:19276604,8416440 +g1,10144:21173479,8416440 +g1,10144:23702645,8416440 +g1,10144:24334937,8416440 +g1,10144:25915667,8416440 +g1,10144:28760978,8416440 +g1,10144:29393270,8416440 +h1,10144:31290144,8416440:0,0,0 +k1,10144:32583029,8416440:1292885 +g1,10144:32583029,8416440 +) +(1,10145:6630773,9082618:25952256,410518,101187 +h1,10145:6630773,9082618:0,0,0 +k1,10145:6630773,9082618:0 +h1,10145:12953687,9082618:0,0,0 +k1,10145:32583029,9082618:19629342 +g1,10145:32583029,9082618 +) +(1,10149:6630773,9814332:25952256,404226,76021 +(1,10147:6630773,9814332:0,0,0 +g1,10147:6630773,9814332 +g1,10147:6630773,9814332 +g1,10147:6303093,9814332 +(1,10147:6303093,9814332:0,0,0 +) +g1,10147:6630773,9814332 +) +g1,10149:7579210,9814332 +g1,10149:8843793,9814332 +h1,10149:10108376,9814332:0,0,0 +k1,10149:32583028,9814332:22474652 +g1,10149:32583028,9814332 +) +(1,10151:6630773,11135870:25952256,410518,101187 +(1,10150:6630773,11135870:0,0,0 +g1,10150:6630773,11135870 +g1,10150:6630773,11135870 +g1,10150:6303093,11135870 +(1,10150:6303093,11135870:0,0,0 +) +g1,10150:6630773,11135870 +) +k1,10151:6630773,11135870:0 +h1,10151:11689104,11135870:0,0,0 +k1,10151:32583028,11135870:20893924 +g1,10151:32583028,11135870 +) +(1,10155:6630773,11867584:25952256,404226,76021 +(1,10153:6630773,11867584:0,0,0 +g1,10153:6630773,11867584 +g1,10153:6630773,11867584 +g1,10153:6303093,11867584 +(1,10153:6303093,11867584:0,0,0 +) +g1,10153:6630773,11867584 +) +g1,10155:7579210,11867584 +g1,10155:8843793,11867584 +h1,10155:10424521,11867584:0,0,0 +k1,10155:32583029,11867584:22158508 +g1,10155:32583029,11867584 +) +(1,10157:6630773,13189122:25952256,410518,101187 +(1,10156:6630773,13189122:0,0,0 +g1,10156:6630773,13189122 +g1,10156:6630773,13189122 +g1,10156:6303093,13189122 +(1,10156:6303093,13189122:0,0,0 +) +g1,10156:6630773,13189122 +) +k1,10157:6630773,13189122:0 +h1,10157:12637541,13189122:0,0,0 +k1,10157:32583029,13189122:19945488 +g1,10157:32583029,13189122 +) +(1,10162:6630773,13920836:25952256,410518,107478 +(1,10159:6630773,13920836:0,0,0 +g1,10159:6630773,13920836 +g1,10159:6630773,13920836 +g1,10159:6303093,13920836 +(1,10159:6303093,13920836:0,0,0 +) +g1,10159:6630773,13920836 +) +g1,10162:7579210,13920836 +g1,10162:11056813,13920836 +h1,10162:14534415,13920836:0,0,0 +k1,10162:32583029,13920836:18048614 +g1,10162:32583029,13920836 +) +(1,10162:6630773,14587014:25952256,410518,107478 +h1,10162:6630773,14587014:0,0,0 +g1,10162:7579210,14587014 +g1,10162:9792230,14587014 +g1,10162:12321396,14587014 +g1,10162:15166707,14587014 +g1,10162:18012019,14587014 +g1,10162:21173476,14587014 +h1,10162:23386496,14587014:0,0,0 +k1,10162:32583029,14587014:9196533 +g1,10162:32583029,14587014 +) +] +) +g1,10163:32583029,14694492 +g1,10163:6630773,14694492 +g1,10163:6630773,14694492 +g1,10163:32583029,14694492 +g1,10163:32583029,14694492 +) +h1,10163:6630773,14891100:0,0,0 +(1,10167:6630773,16173354:25952256,513147,126483 +h1,10166:6630773,16173354:983040,0,0 +k1,10166:10175852,16173354:242720 +k1,10166:11410133,16173354:242721 +k1,10166:13042216,16173354:242720 +k1,10166:16829779,16173354:242721 +k1,10166:18722696,16173354:242720 +k1,10166:21660257,16173354:242721 +k1,10166:23458146,16173354:242720 +(1,10166:23458146,16173354:0,452978,115847 +r1,10166:25574971,16173354:2116825,568825,115847 +k1,10166:23458146,16173354:-2116825 +) +(1,10166:23458146,16173354:2116825,452978,115847 +k1,10166:23458146,16173354:3277 +h1,10166:25571694,16173354:0,411205,112570 +) +k1,10166:25817692,16173354:242721 +k1,10166:26591909,16173354:242720 +k1,10166:29217519,16173354:242721 +k1,10166:31027860,16173354:242720 +k1,10167:32583029,16173354:0 +) +(1,10167:6630773,17014842:25952256,513147,115847 +(1,10166:6630773,17014842:0,459977,115847 +r1,10166:10154445,17014842:3523672,575824,115847 +k1,10166:6630773,17014842:-3523672 +) +(1,10166:6630773,17014842:3523672,459977,115847 +k1,10166:6630773,17014842:3277 +h1,10166:10151168,17014842:0,411205,112570 +) +g1,10166:10527344,17014842 +g1,10166:13661275,17014842 +g1,10166:15249867,17014842 +g1,10166:17655693,17014842 +g1,10166:18846482,17014842 +g1,10166:20111982,17014842 +k1,10167:32583029,17014842:10155660 +g1,10167:32583029,17014842 +) +v1,10169:6630773,18121787:0,393216,0 +(1,10190:6630773,24607457:25952256,6878886,196608 +g1,10190:6630773,24607457 +g1,10190:6630773,24607457 +g1,10190:6434165,24607457 +(1,10190:6434165,24607457:0,6878886,196608 +r1,10190:32779637,24607457:26345472,7075494,196608 +k1,10190:6434165,24607457:-26345472 +) +(1,10190:6434165,24607457:26345472,6878886,196608 +[1,10190:6630773,24607457:25952256,6682278,0 +(1,10171:6630773,18329405:25952256,404226,107478 +(1,10170:6630773,18329405:0,0,0 +g1,10170:6630773,18329405 +g1,10170:6630773,18329405 +g1,10170:6303093,18329405 +(1,10170:6303093,18329405:0,0,0 +) +g1,10170:6630773,18329405 +) +g1,10171:8527647,18329405 +g1,10171:9476085,18329405 +g1,10171:13585979,18329405 +g1,10171:14218271,18329405 +g1,10171:16431292,18329405 +g1,10171:18012021,18329405 +g1,10171:19908896,18329405 +g1,10171:22438062,18329405 +g1,10171:23070354,18329405 +g1,10171:24651084,18329405 +g1,10171:27496395,18329405 +g1,10171:28128687,18329405 +h1,10171:30025561,18329405:0,0,0 +k1,10171:32583029,18329405:2557468 +g1,10171:32583029,18329405 +) +(1,10172:6630773,18995583:25952256,410518,101187 +h1,10172:6630773,18995583:0,0,0 +k1,10172:6630773,18995583:0 +h1,10172:12953687,18995583:0,0,0 +k1,10172:32583029,18995583:19629342 +g1,10172:32583029,18995583 +) +(1,10176:6630773,19727297:25952256,404226,76021 +(1,10174:6630773,19727297:0,0,0 +g1,10174:6630773,19727297 +g1,10174:6630773,19727297 +g1,10174:6303093,19727297 +(1,10174:6303093,19727297:0,0,0 +) +g1,10174:6630773,19727297 +) +g1,10176:7579210,19727297 +g1,10176:8843793,19727297 +h1,10176:10108376,19727297:0,0,0 +k1,10176:32583028,19727297:22474652 +g1,10176:32583028,19727297 +) +(1,10178:6630773,21048835:25952256,404226,101187 +(1,10177:6630773,21048835:0,0,0 +g1,10177:6630773,21048835 +g1,10177:6630773,21048835 +g1,10177:6303093,21048835 +(1,10177:6303093,21048835:0,0,0 +) +g1,10177:6630773,21048835 +) +k1,10178:6630773,21048835:0 +h1,10178:11689104,21048835:0,0,0 +k1,10178:32583028,21048835:20893924 +g1,10178:32583028,21048835 +) +(1,10182:6630773,21780549:25952256,404226,76021 +(1,10180:6630773,21780549:0,0,0 +g1,10180:6630773,21780549 +g1,10180:6630773,21780549 +g1,10180:6303093,21780549 +(1,10180:6303093,21780549:0,0,0 +) +g1,10180:6630773,21780549 +) +g1,10182:7579210,21780549 +g1,10182:8843793,21780549 +h1,10182:10108376,21780549:0,0,0 +k1,10182:32583028,21780549:22474652 +g1,10182:32583028,21780549 +) +(1,10184:6630773,23102087:25952256,404226,101187 +(1,10183:6630773,23102087:0,0,0 +g1,10183:6630773,23102087 +g1,10183:6630773,23102087 +g1,10183:6303093,23102087 +(1,10183:6303093,23102087:0,0,0 +) +g1,10183:6630773,23102087 +) +k1,10184:6630773,23102087:0 +h1,10184:12637541,23102087:0,0,0 +k1,10184:32583029,23102087:19945488 +g1,10184:32583029,23102087 +) +(1,10189:6630773,23833801:25952256,410518,107478 +(1,10186:6630773,23833801:0,0,0 +g1,10186:6630773,23833801 +g1,10186:6630773,23833801 +g1,10186:6303093,23833801 +(1,10186:6303093,23833801:0,0,0 +) +g1,10186:6630773,23833801 +) +g1,10189:7579210,23833801 +g1,10189:9792230,23833801 +h1,10189:13269832,23833801:0,0,0 +k1,10189:32583028,23833801:19313196 +g1,10189:32583028,23833801 +) +(1,10189:6630773,24499979:25952256,404226,107478 +h1,10189:6630773,24499979:0,0,0 +g1,10189:7579210,24499979 +g1,10189:9792230,24499979 +g1,10189:13269833,24499979 +g1,10189:16115144,24499979 +g1,10189:18960456,24499979 +g1,10189:22121913,24499979 +h1,10189:24334933,24499979:0,0,0 +k1,10189:32583029,24499979:8248096 +g1,10189:32583029,24499979 +) +] +) +g1,10190:32583029,24607457 +g1,10190:6630773,24607457 +g1,10190:6630773,24607457 +g1,10190:32583029,24607457 +g1,10190:32583029,24607457 +) +h1,10190:6630773,24804065:0,0,0 +(1,10194:6630773,26086319:25952256,513147,115847 +h1,10193:6630773,26086319:983040,0,0 +g1,10193:9009729,26086319 +(1,10193:9009729,26086319:0,452978,115847 +r1,10193:11478266,26086319:2468537,568825,115847 +k1,10193:9009729,26086319:-2468537 +) +(1,10193:9009729,26086319:2468537,452978,115847 +k1,10193:9009729,26086319:3277 +h1,10193:11474989,26086319:0,411205,112570 +) +g1,10193:11677495,26086319 +g1,10193:14331047,26086319 +g1,10193:15477927,26086319 +g1,10193:17992543,26086319 +g1,10193:21167107,26086319 +g1,10193:22385421,26086319 +g1,10193:23741360,26086319 +g1,10193:26322167,26086319 +g1,10193:27469047,26086319 +g1,10193:29057639,26086319 +k1,10194:32583029,26086319:1145122 +g1,10194:32583029,26086319 +) +v1,10196:6630773,27193264:0,393216,0 +(1,10217:6630773,35531000:25952256,8730952,196608 +g1,10217:6630773,35531000 +g1,10217:6630773,35531000 +g1,10217:6434165,35531000 +(1,10217:6434165,35531000:0,8730952,196608 +r1,10217:32779637,35531000:26345472,8927560,196608 +k1,10217:6434165,35531000:-26345472 +) +(1,10217:6434165,35531000:26345472,8730952,196608 +[1,10217:6630773,35531000:25952256,8534344,0 +(1,10198:6630773,27407174:25952256,410518,101187 +(1,10197:6630773,27407174:0,0,0 +g1,10197:6630773,27407174 +g1,10197:6630773,27407174 +g1,10197:6303093,27407174 +(1,10197:6303093,27407174:0,0,0 +) +g1,10197:6630773,27407174 +) +k1,10198:6630773,27407174:0 +h1,10198:10424521,27407174:0,0,0 +k1,10198:32583029,27407174:22158508 +g1,10198:32583029,27407174 +) +(1,10205:6630773,28138888:25952256,404226,107478 +(1,10200:6630773,28138888:0,0,0 +g1,10200:6630773,28138888 +g1,10200:6630773,28138888 +g1,10200:6303093,28138888 +(1,10200:6303093,28138888:0,0,0 +) +g1,10200:6630773,28138888 +) +g1,10205:7579210,28138888 +g1,10205:7895356,28138888 +g1,10205:8211502,28138888 +g1,10205:10108376,28138888 +g1,10205:12637542,28138888 +h1,10205:15166707,28138888:0,0,0 +k1,10205:32583029,28138888:17416322 +g1,10205:32583029,28138888 +) +(1,10205:6630773,28805066:25952256,388497,0 +h1,10205:6630773,28805066:0,0,0 +g1,10205:7579210,28805066 +g1,10205:8211502,28805066 +g1,10205:8527648,28805066 +g1,10205:8843794,28805066 +g1,10205:9159940,28805066 +g1,10205:9476086,28805066 +g1,10205:10108378,28805066 +g1,10205:10424524,28805066 +g1,10205:10740670,28805066 +g1,10205:11056816,28805066 +g1,10205:11372962,28805066 +g1,10205:11689108,28805066 +g1,10205:12005254,28805066 +g1,10205:12637546,28805066 +g1,10205:12953692,28805066 +g1,10205:13269838,28805066 +g1,10205:13585984,28805066 +g1,10205:13902130,28805066 +g1,10205:14218276,28805066 +g1,10205:14534422,28805066 +g1,10205:14850568,28805066 +h1,10205:15166714,28805066:0,0,0 +k1,10205:32583030,28805066:17416316 +g1,10205:32583030,28805066 +) +(1,10205:6630773,29471244:25952256,388497,0 +h1,10205:6630773,29471244:0,0,0 +g1,10205:7579210,29471244 +g1,10205:8211502,29471244 +g1,10205:8527648,29471244 +g1,10205:8843794,29471244 +g1,10205:9159940,29471244 +g1,10205:9476086,29471244 +g1,10205:10108378,29471244 +g1,10205:10424524,29471244 +g1,10205:10740670,29471244 +g1,10205:11056816,29471244 +g1,10205:11372962,29471244 +g1,10205:11689108,29471244 +g1,10205:12005254,29471244 +g1,10205:12637546,29471244 +g1,10205:12953692,29471244 +g1,10205:13269838,29471244 +g1,10205:13585984,29471244 +g1,10205:13902130,29471244 +g1,10205:14218276,29471244 +g1,10205:14534422,29471244 +g1,10205:14850568,29471244 +h1,10205:15166714,29471244:0,0,0 +k1,10205:32583030,29471244:17416316 +g1,10205:32583030,29471244 +) +(1,10205:6630773,30137422:25952256,388497,9436 +h1,10205:6630773,30137422:0,0,0 +g1,10205:7579210,30137422 +g1,10205:8211502,30137422 +g1,10205:8527648,30137422 +g1,10205:8843794,30137422 +g1,10205:9159940,30137422 +g1,10205:9476086,30137422 +g1,10205:10108378,30137422 +g1,10205:10424524,30137422 +g1,10205:10740670,30137422 +g1,10205:11056816,30137422 +g1,10205:11372962,30137422 +g1,10205:11689108,30137422 +g1,10205:12005254,30137422 +g1,10205:12637546,30137422 +g1,10205:12953692,30137422 +g1,10205:13269838,30137422 +g1,10205:13585984,30137422 +g1,10205:13902130,30137422 +g1,10205:14218276,30137422 +g1,10205:14534422,30137422 +g1,10205:14850568,30137422 +h1,10205:15166714,30137422:0,0,0 +k1,10205:32583030,30137422:17416316 +g1,10205:32583030,30137422 +) +(1,10207:6630773,31458960:25952256,404226,101187 +(1,10206:6630773,31458960:0,0,0 +g1,10206:6630773,31458960 +g1,10206:6630773,31458960 +g1,10206:6303093,31458960 +(1,10206:6303093,31458960:0,0,0 +) +g1,10206:6630773,31458960 +) +k1,10207:6630773,31458960:0 +h1,10207:10424521,31458960:0,0,0 +k1,10207:32583029,31458960:22158508 +g1,10207:32583029,31458960 +) +(1,10216:6630773,32190674:25952256,404226,9436 +(1,10209:6630773,32190674:0,0,0 +g1,10209:6630773,32190674 +g1,10209:6630773,32190674 +g1,10209:6303093,32190674 +(1,10209:6303093,32190674:0,0,0 +) +g1,10209:6630773,32190674 +) +g1,10216:7579210,32190674 +g1,10216:8211502,32190674 +g1,10216:8843794,32190674 +g1,10216:11372960,32190674 +g1,10216:12005252,32190674 +g1,10216:12637544,32190674 +h1,10216:12953690,32190674:0,0,0 +k1,10216:32583030,32190674:19629340 +g1,10216:32583030,32190674 +) +(1,10216:6630773,32856852:25952256,404226,107478 +h1,10216:6630773,32856852:0,0,0 +g1,10216:7579210,32856852 +g1,10216:7895356,32856852 +g1,10216:8211502,32856852 +g1,10216:10108376,32856852 +g1,10216:12637542,32856852 +h1,10216:15166707,32856852:0,0,0 +k1,10216:32583029,32856852:17416322 +g1,10216:32583029,32856852 +) +(1,10216:6630773,33523030:25952256,404226,6290 +h1,10216:6630773,33523030:0,0,0 +g1,10216:7579210,33523030 +g1,10216:7895356,33523030 +g1,10216:8211502,33523030 +g1,10216:10108377,33523030 +g1,10216:10424523,33523030 +g1,10216:10740669,33523030 +g1,10216:12637544,33523030 +g1,10216:12953690,33523030 +g1,10216:13269836,33523030 +g1,10216:13585982,33523030 +k1,10216:13585982,33523030:0 +h1,10216:15166711,33523030:0,0,0 +k1,10216:32583029,33523030:17416318 +g1,10216:32583029,33523030 +) +(1,10216:6630773,34189208:25952256,388497,0 +h1,10216:6630773,34189208:0,0,0 +g1,10216:7579210,34189208 +g1,10216:8211502,34189208 +g1,10216:8843794,34189208 +g1,10216:9159940,34189208 +g1,10216:9476086,34189208 +g1,10216:9792232,34189208 +g1,10216:10108378,34189208 +g1,10216:10424524,34189208 +g1,10216:10740670,34189208 +g1,10216:11056816,34189208 +g1,10216:11372962,34189208 +g1,10216:11689108,34189208 +g1,10216:12005254,34189208 +g1,10216:12637546,34189208 +g1,10216:12953692,34189208 +g1,10216:13269838,34189208 +g1,10216:13585984,34189208 +g1,10216:13902130,34189208 +g1,10216:14218276,34189208 +g1,10216:14534422,34189208 +g1,10216:14850568,34189208 +h1,10216:15166714,34189208:0,0,0 +k1,10216:32583030,34189208:17416316 +g1,10216:32583030,34189208 +) +(1,10216:6630773,34855386:25952256,388497,0 +h1,10216:6630773,34855386:0,0,0 +g1,10216:7579210,34855386 +g1,10216:8211502,34855386 +g1,10216:8843794,34855386 +g1,10216:9159940,34855386 +g1,10216:9476086,34855386 +g1,10216:9792232,34855386 +g1,10216:10108378,34855386 +g1,10216:10424524,34855386 +g1,10216:10740670,34855386 +g1,10216:11056816,34855386 +g1,10216:11372962,34855386 +g1,10216:11689108,34855386 +g1,10216:12005254,34855386 +g1,10216:12637546,34855386 +g1,10216:12953692,34855386 +g1,10216:13269838,34855386 +g1,10216:13585984,34855386 +g1,10216:13902130,34855386 +g1,10216:14218276,34855386 +g1,10216:14534422,34855386 +g1,10216:14850568,34855386 +h1,10216:15166714,34855386:0,0,0 +k1,10216:32583030,34855386:17416316 +g1,10216:32583030,34855386 +) +(1,10216:6630773,35521564:25952256,388497,9436 +h1,10216:6630773,35521564:0,0,0 +g1,10216:7579210,35521564 +g1,10216:8211502,35521564 +g1,10216:8843794,35521564 +g1,10216:9159940,35521564 +g1,10216:9476086,35521564 +g1,10216:9792232,35521564 +g1,10216:10108378,35521564 +g1,10216:10424524,35521564 +g1,10216:10740670,35521564 +g1,10216:11056816,35521564 +g1,10216:11372962,35521564 +g1,10216:11689108,35521564 +g1,10216:12005254,35521564 +g1,10216:12637546,35521564 +g1,10216:12953692,35521564 +g1,10216:13269838,35521564 +g1,10216:13585984,35521564 +g1,10216:13902130,35521564 +g1,10216:14218276,35521564 +g1,10216:14534422,35521564 +g1,10216:14850568,35521564 +h1,10216:15166714,35521564:0,0,0 +k1,10216:32583030,35521564:17416316 +g1,10216:32583030,35521564 +) +] +) +g1,10217:32583029,35531000 +g1,10217:6630773,35531000 +g1,10217:6630773,35531000 +g1,10217:32583029,35531000 +g1,10217:32583029,35531000 +) +h1,10217:6630773,35727608:0,0,0 +v1,10221:6630773,37450629:0,393216,0 +(1,10222:6630773,43094748:25952256,6037335,616038 +g1,10222:6630773,43094748 +(1,10222:6630773,43094748:25952256,6037335,616038 +(1,10222:6630773,43710786:25952256,6653373,0 +[1,10222:6630773,43710786:25952256,6653373,0 +(1,10222:6630773,43684572:25952256,6600945,0 +r1,10222:6656987,43684572:26214,6600945,0 +[1,10222:6656987,43684572:25899828,6600945,0 +(1,10222:6656987,43094748:25899828,5421297,0 +[1,10222:7246811,43094748:24720180,5421297,0 +(1,10222:7246811,38760825:24720180,1087374,126483 +k1,10221:8721034,38760825:264520 +k1,10221:11304874,38760825:264521 +k1,10221:12760839,38760825:264520 +k1,10221:14414723,38760825:264521 +k1,10221:16885840,38760825:264520 +k1,10221:18893619,38760825:264521 +k1,10221:19774177,38760825:264520 +k1,10221:21369079,38760825:264521 +k1,10221:23013787,38760825:264520 +k1,10221:24269868,38760825:264521 +k1,10221:26884509,38760825:264520 +k1,10221:28847068,38760825:264521 +k1,10221:30491776,38760825:264520 +k1,10221:31966991,38760825:0 +) +(1,10222:7246811,39602313:24720180,513147,126483 +k1,10221:9153908,39602313:155320 +k1,10221:10843427,39602313:155321 +k1,10221:11681632,39602313:155320 +k1,10221:14723813,39602313:155320 +k1,10221:15484687,39602313:155321 +k1,10221:18785735,39602313:155320 +k1,10221:19296915,39602313:155320 +k1,10221:20841598,39602313:155320 +k1,10221:22873215,39602313:155321 +k1,10221:24219980,39602313:155320 +k1,10221:25146003,39602313:155320 +k1,10221:28606305,39602313:155321 +k1,10221:30573040,39602313:155320 +k1,10221:31966991,39602313:0 +) +(1,10222:7246811,40443801:24720180,505283,126483 +k1,10221:8062210,40443801:202637 +k1,10221:9760379,40443801:202637 +k1,10221:10759934,40443801:202637 +k1,10221:12496770,40443801:202638 +k1,10221:13890852,40443801:202637 +k1,10221:15527417,40443801:202637 +k1,10221:16921499,40443801:202637 +k1,10221:18454517,40443801:202637 +k1,10221:19676239,40443801:202637 +k1,10221:22037632,40443801:202637 +k1,10221:23957312,40443801:202637 +k1,10221:25857988,40443801:202638 +k1,10221:27440813,40443801:202637 +k1,10221:28635010,40443801:202637 +k1,10221:31361438,40443801:202637 +k1,10221:31966991,40443801:0 +) +(1,10222:7246811,41285289:24720180,513147,126483 +k1,10221:10604384,41285289:211845 +k1,10221:11172089,41285289:211845 +k1,10221:12773297,41285289:211845 +k1,10221:14861438,41285289:211845 +k1,10221:16264728,41285289:211845 +k1,10221:17247277,41285289:211846 +k1,10221:20764103,41285289:211845 +k1,10221:22787363,41285289:211845 +k1,10221:24393159,41285289:211845 +k1,10221:26255201,41285289:211845 +k1,10221:29180237,41285289:211845 +k1,10221:30834529,41285289:211845 +k1,10221:31966991,41285289:0 +) +(1,10222:7246811,42126777:24720180,513147,126483 +k1,10221:8130892,42126777:196608 +k1,10221:8943538,42126777:196608 +k1,10221:10159231,42126777:196608 +k1,10221:12170530,42126777:196607 +k1,10221:13026430,42126777:196608 +k1,10221:14242123,42126777:196608 +k1,10221:17273819,42126777:196608 +k1,10221:18661872,42126777:196608 +k1,10221:20292408,42126777:196608 +k1,10221:21680461,42126777:196608 +k1,10221:23207450,42126777:196608 +k1,10221:24423142,42126777:196607 +k1,10221:26778506,42126777:196608 +k1,10221:28692157,42126777:196608 +k1,10221:30586803,42126777:196608 +k1,10221:31966991,42126777:0 +) +(1,10222:7246811,42968265:24720180,505283,126483 +g1,10221:8437600,42968265 +k1,10222:31966991,42968265:21005600 +g1,10222:31966991,42968265 +) +] +) +] +r1,10222:32583029,43684572:26214,6600945,0 +) +] +) +) +g1,10222:32583029,43094748 +) +h1,10222:6630773,43710786:0,0,0 +(1,10225:6630773,44993040:25952256,513147,115847 +h1,10224:6630773,44993040:983040,0,0 +g1,10224:9284981,44993040 +g1,10224:11690807,44993040 +g1,10224:12994318,44993040 +g1,10224:13941313,44993040 +g1,10224:17301343,44993040 +g1,10224:18768038,44993040 +g1,10224:21108984,44993040 +g1,10224:22702164,44993040 +(1,10224:22702164,44993040:0,452978,115847 +r1,10224:26577548,44993040:3875384,568825,115847 +k1,10224:22702164,44993040:-3875384 +) +(1,10224:22702164,44993040:3875384,452978,115847 +k1,10224:22702164,44993040:3277 +h1,10224:26574271,44993040:0,411205,112570 +) +k1,10225:32583029,44993040:5831811 +g1,10225:32583029,44993040 +) +v1,10227:6630773,46099985:0,393216,0 +] +(1,10248:32583029,45706769:0,0,0 +g1,10248:32583029,45706769 +) +) +] +(1,10248:6630773,47279633:25952256,0,0 +h1,10248:6630773,47279633:25952256,0,0 +) +] +h1,10248:4262630,4025873:0,0,0 ] !24881 }193 -Input:1286:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1287:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1288:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1289:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1290:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1291:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1292:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1293:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1294:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1295:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 +Input:1282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 {194 -[1,10350:4262630,47279633:28320399,43253760,0 -(1,10350:4262630,4025873:0,0,0 -[1,10350:-473657,4025873:25952256,0,0 -(1,10350:-473657,-710414:25952256,0,0 -h1,10350:-473657,-710414:0,0,0 -(1,10350:-473657,-710414:0,0,0 -(1,10350:-473657,-710414:0,0,0 -g1,10350:-473657,-710414 -(1,10350:-473657,-710414:65781,0,65781 -g1,10350:-407876,-710414 -[1,10350:-407876,-644633:0,0,0 +[1,10355:4262630,47279633:28320399,43253760,0 +(1,10355:4262630,4025873:0,0,0 +[1,10355:-473657,4025873:25952256,0,0 +(1,10355:-473657,-710414:25952256,0,0 +h1,10355:-473657,-710414:0,0,0 +(1,10355:-473657,-710414:0,0,0 +(1,10355:-473657,-710414:0,0,0 +g1,10355:-473657,-710414 +(1,10355:-473657,-710414:65781,0,65781 +g1,10355:-407876,-710414 +[1,10355:-407876,-644633:0,0,0 ] ) -k1,10350:-473657,-710414:-65781 +k1,10355:-473657,-710414:-65781 ) ) -k1,10350:25478599,-710414:25952256 -g1,10350:25478599,-710414 +k1,10355:25478599,-710414:25952256 +g1,10355:25478599,-710414 ) ] ) -[1,10350:6630773,47279633:25952256,43253760,0 -[1,10350:6630773,4812305:25952256,786432,0 -(1,10350:6630773,4812305:25952256,513147,126483 -(1,10350:6630773,4812305:25952256,513147,126483 -g1,10350:3078558,4812305 -[1,10350:3078558,4812305:0,0,0 -(1,10350:3078558,2439708:0,1703936,0 -k1,10350:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10350:2537886,2439708:1179648,16384,0 +[1,10355:6630773,47279633:25952256,43253760,0 +[1,10355:6630773,4812305:25952256,786432,0 +(1,10355:6630773,4812305:25952256,513147,126483 +(1,10355:6630773,4812305:25952256,513147,126483 +g1,10355:3078558,4812305 +[1,10355:3078558,4812305:0,0,0 +(1,10355:3078558,2439708:0,1703936,0 +k1,10355:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10355:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10350:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10355:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10350:3078558,4812305:0,0,0 -(1,10350:3078558,2439708:0,1703936,0 -g1,10350:29030814,2439708 -g1,10350:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10350:36151628,1915420:16384,1179648,0 +[1,10355:3078558,4812305:0,0,0 +(1,10355:3078558,2439708:0,1703936,0 +g1,10355:29030814,2439708 +g1,10355:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10355:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10350:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10355:37855564,2439708:1179648,16384,0 ) ) -k1,10350:3078556,2439708:-34777008 +k1,10355:3078556,2439708:-34777008 ) ] -[1,10350:3078558,4812305:0,0,0 -(1,10350:3078558,49800853:0,16384,2228224 -k1,10350:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10350:2537886,49800853:1179648,16384,0 +[1,10355:3078558,4812305:0,0,0 +(1,10355:3078558,49800853:0,16384,2228224 +k1,10355:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10355:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10350:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10355:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10350:3078558,4812305:0,0,0 -(1,10350:3078558,49800853:0,16384,2228224 -g1,10350:29030814,49800853 -g1,10350:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10350:36151628,51504789:16384,1179648,0 +[1,10355:3078558,4812305:0,0,0 +(1,10355:3078558,49800853:0,16384,2228224 +g1,10355:29030814,49800853 +g1,10355:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10355:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10350:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10355:37855564,49800853:1179648,16384,0 ) ) -k1,10350:3078556,49800853:-34777008 +k1,10355:3078556,49800853:-34777008 ) ] -g1,10350:6630773,4812305 -g1,10350:6630773,4812305 -g1,10350:11156689,4812305 -g1,10350:12279976,4812305 -g1,10350:16431026,4812305 -k1,10350:31387652,4812305:14956626 +g1,10355:6630773,4812305 +g1,10355:6630773,4812305 +g1,10355:11156689,4812305 +g1,10355:12279976,4812305 +g1,10355:16431026,4812305 +k1,10355:31387652,4812305:14956626 ) ) ] -[1,10350:6630773,45706769:25952256,40108032,0 -(1,10350:6630773,45706769:25952256,40108032,0 -(1,10350:6630773,45706769:0,0,0 -g1,10350:6630773,45706769 +[1,10355:6630773,45706769:25952256,40108032,0 +(1,10355:6630773,45706769:25952256,40108032,0 +(1,10355:6630773,45706769:0,0,0 +g1,10355:6630773,45706769 ) -[1,10350:6630773,45706769:25952256,40108032,0 -v1,10243:6630773,6254097:0,393216,0 -(1,10243:6630773,12746059:25952256,6885178,196608 -g1,10243:6630773,12746059 -g1,10243:6630773,12746059 -g1,10243:6434165,12746059 -(1,10243:6434165,12746059:0,6885178,196608 -r1,10243:32779637,12746059:26345472,7081786,196608 -k1,10243:6434165,12746059:-26345472 +[1,10355:6630773,45706769:25952256,40108032,0 +v1,10248:6630773,6254097:0,393216,0 +(1,10248:6630773,12746059:25952256,6885178,196608 +g1,10248:6630773,12746059 +g1,10248:6630773,12746059 +g1,10248:6434165,12746059 +(1,10248:6434165,12746059:0,6885178,196608 +r1,10248:32779637,12746059:26345472,7081786,196608 +k1,10248:6434165,12746059:-26345472 ) -(1,10243:6434165,12746059:26345472,6885178,196608 -[1,10243:6630773,12746059:25952256,6688570,0 -(1,10224:6630773,6468007:25952256,410518,101187 -(1,10223:6630773,6468007:0,0,0 -g1,10223:6630773,6468007 -g1,10223:6630773,6468007 -g1,10223:6303093,6468007 -(1,10223:6303093,6468007:0,0,0 -) -g1,10223:6630773,6468007 +(1,10248:6434165,12746059:26345472,6885178,196608 +[1,10248:6630773,12746059:25952256,6688570,0 +(1,10229:6630773,6468007:25952256,410518,101187 +(1,10228:6630773,6468007:0,0,0 +g1,10228:6630773,6468007 +g1,10228:6630773,6468007 +g1,10228:6303093,6468007 +(1,10228:6303093,6468007:0,0,0 +) +g1,10228:6630773,6468007 ) -g1,10224:10108376,6468007 -g1,10224:11056814,6468007 -k1,10224:11056814,6468007:0 -h1,10224:16115145,6468007:0,0,0 -k1,10224:32583029,6468007:16467884 -g1,10224:32583029,6468007 -) -(1,10225:6630773,7134185:25952256,410518,101187 -h1,10225:6630773,7134185:0,0,0 -k1,10225:6630773,7134185:0 -h1,10225:14534415,7134185:0,0,0 -k1,10225:32583029,7134185:18048614 -g1,10225:32583029,7134185 -) -(1,10229:6630773,7865899:25952256,404226,76021 -(1,10227:6630773,7865899:0,0,0 -g1,10227:6630773,7865899 -g1,10227:6630773,7865899 -g1,10227:6303093,7865899 -(1,10227:6303093,7865899:0,0,0 -) -g1,10227:6630773,7865899 -) -g1,10229:7579210,7865899 -g1,10229:8843793,7865899 -h1,10229:10108376,7865899:0,0,0 -k1,10229:32583028,7865899:22474652 -g1,10229:32583028,7865899 -) -(1,10231:6630773,9187437:25952256,404226,101187 -(1,10230:6630773,9187437:0,0,0 -g1,10230:6630773,9187437 -g1,10230:6630773,9187437 -g1,10230:6303093,9187437 -(1,10230:6303093,9187437:0,0,0 -) -g1,10230:6630773,9187437 -) -k1,10231:6630773,9187437:0 -h1,10231:13269832,9187437:0,0,0 -k1,10231:32583028,9187437:19313196 -g1,10231:32583028,9187437 -) -(1,10235:6630773,9919151:25952256,404226,76021 -(1,10233:6630773,9919151:0,0,0 -g1,10233:6630773,9919151 -g1,10233:6630773,9919151 -g1,10233:6303093,9919151 -(1,10233:6303093,9919151:0,0,0 -) -g1,10233:6630773,9919151 -) -g1,10235:7579210,9919151 -g1,10235:8843793,9919151 -h1,10235:10108376,9919151:0,0,0 -k1,10235:32583028,9919151:22474652 -g1,10235:32583028,9919151 -) -(1,10237:6630773,11240689:25952256,404226,101187 -(1,10236:6630773,11240689:0,0,0 -g1,10236:6630773,11240689 -g1,10236:6630773,11240689 -g1,10236:6303093,11240689 -(1,10236:6303093,11240689:0,0,0 -) -g1,10236:6630773,11240689 -) -k1,10237:6630773,11240689:0 -h1,10237:14218269,11240689:0,0,0 -k1,10237:32583029,11240689:18364760 -g1,10237:32583029,11240689 -) -(1,10242:6630773,11972403:25952256,410518,107478 -(1,10239:6630773,11972403:0,0,0 -g1,10239:6630773,11972403 -g1,10239:6630773,11972403 -g1,10239:6303093,11972403 -(1,10239:6303093,11972403:0,0,0 -) -g1,10239:6630773,11972403 -) -g1,10242:7579210,11972403 -g1,10242:9792230,11972403 -h1,10242:13269832,11972403:0,0,0 -k1,10242:32583028,11972403:19313196 -g1,10242:32583028,11972403 -) -(1,10242:6630773,12638581:25952256,410518,107478 -h1,10242:6630773,12638581:0,0,0 -g1,10242:7579210,12638581 -g1,10242:9792230,12638581 -g1,10242:12321396,12638581 -g1,10242:15166707,12638581 -g1,10242:18012019,12638581 -g1,10242:21173476,12638581 -h1,10242:23386496,12638581:0,0,0 -k1,10242:32583029,12638581:9196533 -g1,10242:32583029,12638581 -) -] -) -g1,10243:32583029,12746059 -g1,10243:6630773,12746059 -g1,10243:6630773,12746059 -g1,10243:32583029,12746059 -g1,10243:32583029,12746059 -) -h1,10243:6630773,12942667:0,0,0 -v1,10247:6630773,14657421:0,393216,0 -(1,10268:6630773,21149383:25952256,6885178,196608 -g1,10268:6630773,21149383 -g1,10268:6630773,21149383 -g1,10268:6434165,21149383 -(1,10268:6434165,21149383:0,6885178,196608 -r1,10268:32779637,21149383:26345472,7081786,196608 -k1,10268:6434165,21149383:-26345472 -) -(1,10268:6434165,21149383:26345472,6885178,196608 -[1,10268:6630773,21149383:25952256,6688570,0 -(1,10249:6630773,14871331:25952256,410518,101187 -(1,10248:6630773,14871331:0,0,0 -g1,10248:6630773,14871331 -g1,10248:6630773,14871331 -g1,10248:6303093,14871331 -(1,10248:6303093,14871331:0,0,0 -) -g1,10248:6630773,14871331 -) -g1,10249:10108376,14871331 -g1,10249:11056814,14871331 -k1,10249:11056814,14871331:0 -h1,10249:17379728,14871331:0,0,0 -k1,10249:32583029,14871331:15203301 -g1,10249:32583029,14871331 -) -(1,10250:6630773,15537509:25952256,410518,101187 -h1,10250:6630773,15537509:0,0,0 -k1,10250:6630773,15537509:0 -h1,10250:14534415,15537509:0,0,0 -k1,10250:32583029,15537509:18048614 -g1,10250:32583029,15537509 -) -(1,10254:6630773,16269223:25952256,404226,76021 -(1,10252:6630773,16269223:0,0,0 -g1,10252:6630773,16269223 -g1,10252:6630773,16269223 -g1,10252:6303093,16269223 -(1,10252:6303093,16269223:0,0,0 -) -g1,10252:6630773,16269223 -) -g1,10254:7579210,16269223 -g1,10254:8843793,16269223 -h1,10254:10108376,16269223:0,0,0 -k1,10254:32583028,16269223:22474652 -g1,10254:32583028,16269223 -) -(1,10256:6630773,17590761:25952256,410518,101187 -(1,10255:6630773,17590761:0,0,0 -g1,10255:6630773,17590761 -g1,10255:6630773,17590761 -g1,10255:6303093,17590761 -(1,10255:6303093,17590761:0,0,0 -) -g1,10255:6630773,17590761 -) -k1,10256:6630773,17590761:0 -h1,10256:13269832,17590761:0,0,0 -k1,10256:32583028,17590761:19313196 -g1,10256:32583028,17590761 -) -(1,10260:6630773,18322475:25952256,404226,76021 -(1,10258:6630773,18322475:0,0,0 -g1,10258:6630773,18322475 -g1,10258:6630773,18322475 -g1,10258:6303093,18322475 -(1,10258:6303093,18322475:0,0,0 -) -g1,10258:6630773,18322475 -) -g1,10260:7579210,18322475 -g1,10260:8843793,18322475 -h1,10260:10424521,18322475:0,0,0 -k1,10260:32583029,18322475:22158508 -g1,10260:32583029,18322475 -) -(1,10262:6630773,19644013:25952256,410518,101187 -(1,10261:6630773,19644013:0,0,0 -g1,10261:6630773,19644013 -g1,10261:6630773,19644013 -g1,10261:6303093,19644013 -(1,10261:6303093,19644013:0,0,0 -) -g1,10261:6630773,19644013 -) -k1,10262:6630773,19644013:0 -h1,10262:14218269,19644013:0,0,0 -k1,10262:32583029,19644013:18364760 -g1,10262:32583029,19644013 -) -(1,10267:6630773,20375727:25952256,410518,107478 -(1,10264:6630773,20375727:0,0,0 -g1,10264:6630773,20375727 -g1,10264:6630773,20375727 -g1,10264:6303093,20375727 -(1,10264:6303093,20375727:0,0,0 -) -g1,10264:6630773,20375727 -) -g1,10267:7579210,20375727 -g1,10267:11056813,20375727 -h1,10267:14534415,20375727:0,0,0 -k1,10267:32583029,20375727:18048614 -g1,10267:32583029,20375727 -) -(1,10267:6630773,21041905:25952256,404226,107478 -h1,10267:6630773,21041905:0,0,0 -g1,10267:7579210,21041905 -g1,10267:9792230,21041905 -g1,10267:13269833,21041905 -g1,10267:16115144,21041905 -g1,10267:18960456,21041905 -g1,10267:22121913,21041905 -h1,10267:24334933,21041905:0,0,0 -k1,10267:32583029,21041905:8248096 -g1,10267:32583029,21041905 -) -] -) -g1,10268:32583029,21149383 -g1,10268:6630773,21149383 -g1,10268:6630773,21149383 -g1,10268:32583029,21149383 -g1,10268:32583029,21149383 -) -h1,10268:6630773,21345991:0,0,0 -v1,10272:6630773,23236055:0,393216,0 -(1,10273:6630773,25503586:25952256,2660747,616038 -g1,10273:6630773,25503586 -(1,10273:6630773,25503586:25952256,2660747,616038 -(1,10273:6630773,26119624:25952256,3276785,0 -[1,10273:6630773,26119624:25952256,3276785,0 -(1,10273:6630773,26093410:25952256,3224357,0 -r1,10273:6656987,26093410:26214,3224357,0 -[1,10273:6656987,26093410:25899828,3224357,0 -(1,10273:6656987,25503586:25899828,2044709,0 -[1,10273:7246811,25503586:24720180,2044709,0 -(1,10273:7246811,24546251:24720180,1087374,126483 -k1,10272:8619006,24546251:162492 -k1,10272:10328147,24546251:162491 -k1,10272:13266744,24546251:162492 -k1,10272:14041998,24546251:162492 -k1,10272:15223575,24546251:162492 -k1,10272:17228938,24546251:162491 -k1,10272:18050722,24546251:162492 -k1,10272:19232299,24546251:162492 -k1,10272:23375448,24546251:162492 -k1,10272:24920093,24546251:162491 -k1,10272:25897853,24546251:162492 -k1,10272:26928697,24546251:162492 -k1,10272:28421570,24546251:162492 -k1,10272:30059276,24546251:162491 -k1,10272:30577628,24546251:162492 -k1,10272:31966991,24546251:0 -) -(1,10273:7246811,25387739:24720180,513147,115847 -g1,10272:9322336,25387739 -g1,10272:10915516,25387739 -(1,10272:10915516,25387739:0,414482,115847 -r1,10273:11273782,25387739:358266,530329,115847 -k1,10272:10915516,25387739:-358266 -) -(1,10272:10915516,25387739:358266,414482,115847 -k1,10272:10915516,25387739:3277 -h1,10272:11270505,25387739:0,411205,112570 -) -g1,10272:11473011,25387739 -g1,10272:12358402,25387739 -(1,10272:12358402,25387739:0,452978,115847 -r1,10273:15530362,25387739:3171960,568825,115847 -k1,10272:12358402,25387739:-3171960 -) -(1,10272:12358402,25387739:3171960,452978,115847 -k1,10272:12358402,25387739:3277 -h1,10272:15527085,25387739:0,411205,112570 -) -g1,10272:15729591,25387739 -g1,10272:17120265,25387739 -g1,10272:17675354,25387739 -g1,10272:19685998,25387739 -g1,10272:21279178,25387739 -(1,10272:21279178,25387739:0,414482,115847 -r1,10273:21637444,25387739:358266,530329,115847 -k1,10272:21279178,25387739:-358266 -) -(1,10272:21279178,25387739:358266,414482,115847 -k1,10272:21279178,25387739:3277 -h1,10272:21634167,25387739:0,411205,112570 -) -g1,10272:21836673,25387739 -g1,10272:22722064,25387739 -g1,10272:23277153,25387739 -(1,10272:23277153,25387739:0,459977,115847 -r1,10273:25393978,25387739:2116825,575824,115847 -k1,10272:23277153,25387739:-2116825 -) -(1,10272:23277153,25387739:2116825,459977,115847 -k1,10272:23277153,25387739:3277 -h1,10272:25390701,25387739:0,411205,112570 -) -k1,10273:31966991,25387739:6245988 -g1,10273:31966991,25387739 -) -] -) -] -r1,10273:32583029,26093410:26214,3224357,0 -) -] -) -) -g1,10273:32583029,25503586 -) -h1,10273:6630773,26119624:0,0,0 -v1,10276:6630773,27485400:0,393216,0 -(1,10350:6630773,37943623:25952256,10851439,589824 -g1,10350:6630773,37943623 -(1,10350:6630773,37943623:25952256,10851439,589824 -(1,10350:6630773,38533447:25952256,11441263,0 -[1,10350:6630773,38533447:25952256,11441263,0 -(1,10350:6630773,38533447:25952256,11415049,0 -r1,10350:6656987,38533447:26214,11415049,0 -[1,10350:6656987,38533447:25899828,11415049,0 -(1,10350:6656987,37943623:25899828,10235401,0 -[1,10350:7246811,37943623:24720180,10235401,0 -(1,10277:7246811,28870107:24720180,1161885,196608 -(1,10276:7246811,28870107:0,1161885,196608 -r1,10350:8794447,28870107:1547636,1358493,196608 -k1,10276:7246811,28870107:-1547636 -) -(1,10276:7246811,28870107:1547636,1161885,196608 -) -k1,10276:9090924,28870107:296477 -k1,10276:10531005,28870107:296478 -k1,10276:11593598,28870107:296477 -k1,10276:15366760,28870107:296477 -k1,10276:18689035,28870107:296478 -k1,10276:20581969,28870107:296477 -k1,10276:24725409,28870107:296477 -k1,10276:26719925,28870107:296478 -k1,10276:30399370,28870107:296477 -k1,10276:31966991,28870107:0 -) -(1,10277:7246811,29711595:24720180,513147,134348 -k1,10276:7866235,29711595:263564 -k1,10276:10512688,29711595:263564 -k1,10276:12331421,29711595:263564 -k1,10276:13862451,29711595:263564 -k1,10276:14914413,29711595:263564 -k1,10276:17435692,29711595:263564 -k1,10276:18895943,29711595:263564 -k1,10276:21290738,29711595:263564 -k1,10276:22501953,29711595:263564 -k1,10276:23968758,29711595:263564 -k1,10276:24763819,29711595:263564 -k1,10276:29331788,29711595:263564 -k1,10276:31966991,29711595:0 -) -(1,10277:7246811,30553083:24720180,505283,134348 -k1,10276:9876771,30553083:174326 -k1,10276:10860466,30553083:174325 -k1,10276:12583408,30553083:174326 -k1,10276:13776818,30553083:174325 -k1,10276:16194441,30553083:174326 -k1,10276:19128487,30553083:174325 -k1,10276:19834310,30553083:174326 -k1,10276:21863305,30553083:174326 -k1,10276:22847000,30553083:174325 -k1,10276:24529965,30553083:174326 -k1,10276:25895735,30553083:174325 -k1,10276:28306805,30553083:174326 -k1,10276:29734834,30553083:174325 -k1,10276:30900720,30553083:174326 -k1,10276:31966991,30553083:0 -) -(1,10277:7246811,31394571:24720180,513147,134348 -g1,10276:9158496,31394571 -g1,10276:10009153,31394571 -g1,10276:10956148,31394571 -g1,10276:12028317,31394571 -g1,10276:12989074,31394571 -g1,10276:14391544,31394571 -g1,10276:17267263,31394571 -g1,10276:20945143,31394571 -g1,10276:22216541,31394571 -g1,10276:22873867,31394571 -g1,10276:24177378,31394571 -g1,10276:25124373,31394571 -g1,10276:27807417,31394571 -g1,10276:28658074,31394571 -k1,10277:31966991,31394571:296227 -g1,10277:31966991,31394571 -) -(1,10279:7246811,32236059:24720180,505283,134348 -h1,10278:7246811,32236059:983040,0,0 -k1,10278:9461032,32236059:277632 -k1,10278:11213878,32236059:277631 -k1,10278:13825902,32236059:277632 -k1,10278:15543360,32236059:277632 -k1,10278:17105498,32236059:277632 -k1,10278:19473072,32236059:277631 -(1,10278:19473072,32236059:0,459977,115847 -r1,10350:24755303,32236059:5282231,575824,115847 -k1,10278:19473072,32236059:-5282231 -) -(1,10278:19473072,32236059:5282231,459977,115847 -k1,10278:19473072,32236059:3277 -h1,10278:24752026,32236059:0,411205,112570 -) -k1,10278:25032935,32236059:277632 -k1,10278:26119937,32236059:277632 -k1,10278:26753429,32236059:277632 -k1,10278:28842475,32236059:277631 -k1,10278:30947906,32236059:277632 -k1,10278:31966991,32236059:0 -) -(1,10279:7246811,33077547:24720180,513147,134348 -k1,10278:9814209,33077547:184509 -k1,10278:11553887,33077547:184509 -k1,10278:15021094,33077547:184509 -k1,10278:18206497,33077547:184509 -k1,10278:18746866,33077547:184509 -k1,10278:20320738,33077547:184509 -k1,10278:22555214,33077547:184510 -k1,10278:23693272,33077547:184509 -k1,10278:25010243,33077547:184509 -k1,10278:26581494,33077547:184509 -k1,10278:27378765,33077547:184509 -k1,10278:28582359,33077547:184509 -k1,10278:30649717,33077547:184509 -k1,10279:31966991,33077547:0 -) -(1,10279:7246811,33919035:24720180,513147,115847 -k1,10278:9293043,33919035:175834 -k1,10278:11446753,33919035:175833 -k1,10278:13660757,33919035:175834 -k1,10278:14452628,33919035:175833 -k1,10278:15647547,33919035:175834 -(1,10278:15647547,33919035:0,452978,115847 -r1,10350:18116084,33919035:2468537,568825,115847 -k1,10278:15647547,33919035:-2468537 -) -(1,10278:15647547,33919035:2468537,452978,115847 -k1,10278:15647547,33919035:3277 -h1,10278:18112807,33919035:0,411205,112570 -) -k1,10278:18291917,33919035:175833 -k1,10278:21246478,33919035:175834 -k1,10278:22073739,33919035:175833 -k1,10278:26282659,33919035:175834 -k1,10278:27477577,33919035:175833 -k1,10278:31013442,33919035:175834 -k1,10278:31966991,33919035:0 -) -(1,10279:7246811,34760523:24720180,513147,134348 -k1,10278:8761096,34760523:228469 -k1,10278:10181009,34760523:228468 -k1,10278:11428563,34760523:228469 -k1,10278:12829470,34760523:228468 -k1,10278:15347767,34760523:228469 -k1,10278:16523886,34760523:228468 -k1,10278:19472754,34760523:228469 -k1,10278:20317260,34760523:228468 -k1,10278:21718168,34760523:228469 -k1,10278:24708979,34760523:228468 -k1,10278:26679395,34760523:228469 -k1,10278:28699617,34760523:228468 -k1,10278:29947171,34760523:228469 -k1,10279:31966991,34760523:0 -) -(1,10279:7246811,35602011:24720180,513147,134348 -k1,10278:8415299,35602011:228702 -(1,10278:8415299,35602011:0,414482,115847 -r1,10350:9125277,35602011:709978,530329,115847 -k1,10278:8415299,35602011:-709978 -) -(1,10278:8415299,35602011:709978,414482,115847 -k1,10278:8415299,35602011:3277 -h1,10278:9122000,35602011:0,411205,112570 -) -k1,10278:9353979,35602011:228702 -k1,10278:11104427,35602011:228702 -k1,10278:12280780,35602011:228702 -k1,10278:15814463,35602011:228702 -k1,10278:18506663,35602011:228702 -k1,10278:21139881,35602011:228702 -k1,10278:22653089,35602011:228702 -k1,10278:25253539,35602011:228702 -k1,10278:26501326,35602011:228702 -k1,10278:28383501,35602011:228702 -k1,10278:30175237,35602011:228702 -k1,10279:31966991,35602011:0 -) -(1,10279:7246811,36443499:24720180,505283,134348 -(1,10278:7246811,36443499:0,452978,115847 -r1,10350:11122195,36443499:3875384,568825,115847 -k1,10278:7246811,36443499:-3875384 -) -(1,10278:7246811,36443499:3875384,452978,115847 -k1,10278:7246811,36443499:3277 -h1,10278:11118918,36443499:0,411205,112570 -) -k1,10278:11332476,36443499:210281 -k1,10278:13064503,36443499:210281 -k1,10278:14559290,36443499:210281 -k1,10278:17059399,36443499:210281 -k1,10278:18261240,36443499:210281 -k1,10278:20696467,36443499:210280 -k1,10278:21925833,36443499:210281 -k1,10278:23963258,36443499:210281 -k1,10278:27154116,36443499:210281 -k1,10278:30473425,36443499:210281 -k1,10278:31966991,36443499:0 -) -(1,10279:7246811,37284987:24720180,505283,134348 -g1,10278:8132202,37284987 -(1,10278:8132202,37284987:0,452978,115847 -r1,10350:10600739,37284987:2468537,568825,115847 -k1,10278:8132202,37284987:-2468537 -) -(1,10278:8132202,37284987:2468537,452978,115847 -k1,10278:8132202,37284987:3277 -h1,10278:10597462,37284987:0,411205,112570 -) -g1,10278:10973638,37284987 -g1,10278:13058338,37284987 -g1,10278:14125919,37284987 -g1,10278:16759155,37284987 -g1,10278:18693777,37284987 -(1,10278:18693777,37284987:0,452978,115847 -r1,10350:21162314,37284987:2468537,568825,115847 -k1,10278:18693777,37284987:-2468537 -) -(1,10278:18693777,37284987:2468537,452978,115847 -k1,10278:18693777,37284987:3277 -h1,10278:21159037,37284987:0,411205,112570 -) -k1,10279:31966991,37284987:10631007 -g1,10279:31966991,37284987 +g1,10229:10108376,6468007 +g1,10229:11056814,6468007 +k1,10229:11056814,6468007:0 +h1,10229:16115145,6468007:0,0,0 +k1,10229:32583029,6468007:16467884 +g1,10229:32583029,6468007 +) +(1,10230:6630773,7134185:25952256,410518,101187 +h1,10230:6630773,7134185:0,0,0 +k1,10230:6630773,7134185:0 +h1,10230:14534415,7134185:0,0,0 +k1,10230:32583029,7134185:18048614 +g1,10230:32583029,7134185 +) +(1,10234:6630773,7865899:25952256,404226,76021 +(1,10232:6630773,7865899:0,0,0 +g1,10232:6630773,7865899 +g1,10232:6630773,7865899 +g1,10232:6303093,7865899 +(1,10232:6303093,7865899:0,0,0 +) +g1,10232:6630773,7865899 +) +g1,10234:7579210,7865899 +g1,10234:8843793,7865899 +h1,10234:10108376,7865899:0,0,0 +k1,10234:32583028,7865899:22474652 +g1,10234:32583028,7865899 +) +(1,10236:6630773,9187437:25952256,404226,101187 +(1,10235:6630773,9187437:0,0,0 +g1,10235:6630773,9187437 +g1,10235:6630773,9187437 +g1,10235:6303093,9187437 +(1,10235:6303093,9187437:0,0,0 +) +g1,10235:6630773,9187437 +) +k1,10236:6630773,9187437:0 +h1,10236:13269832,9187437:0,0,0 +k1,10236:32583028,9187437:19313196 +g1,10236:32583028,9187437 +) +(1,10240:6630773,9919151:25952256,404226,76021 +(1,10238:6630773,9919151:0,0,0 +g1,10238:6630773,9919151 +g1,10238:6630773,9919151 +g1,10238:6303093,9919151 +(1,10238:6303093,9919151:0,0,0 +) +g1,10238:6630773,9919151 +) +g1,10240:7579210,9919151 +g1,10240:8843793,9919151 +h1,10240:10108376,9919151:0,0,0 +k1,10240:32583028,9919151:22474652 +g1,10240:32583028,9919151 +) +(1,10242:6630773,11240689:25952256,404226,101187 +(1,10241:6630773,11240689:0,0,0 +g1,10241:6630773,11240689 +g1,10241:6630773,11240689 +g1,10241:6303093,11240689 +(1,10241:6303093,11240689:0,0,0 +) +g1,10241:6630773,11240689 +) +k1,10242:6630773,11240689:0 +h1,10242:14218269,11240689:0,0,0 +k1,10242:32583029,11240689:18364760 +g1,10242:32583029,11240689 +) +(1,10247:6630773,11972403:25952256,410518,107478 +(1,10244:6630773,11972403:0,0,0 +g1,10244:6630773,11972403 +g1,10244:6630773,11972403 +g1,10244:6303093,11972403 +(1,10244:6303093,11972403:0,0,0 +) +g1,10244:6630773,11972403 +) +g1,10247:7579210,11972403 +g1,10247:9792230,11972403 +h1,10247:13269832,11972403:0,0,0 +k1,10247:32583028,11972403:19313196 +g1,10247:32583028,11972403 +) +(1,10247:6630773,12638581:25952256,410518,107478 +h1,10247:6630773,12638581:0,0,0 +g1,10247:7579210,12638581 +g1,10247:9792230,12638581 +g1,10247:12321396,12638581 +g1,10247:15166707,12638581 +g1,10247:18012019,12638581 +g1,10247:21173476,12638581 +h1,10247:23386496,12638581:0,0,0 +k1,10247:32583029,12638581:9196533 +g1,10247:32583029,12638581 +) +] +) +g1,10248:32583029,12746059 +g1,10248:6630773,12746059 +g1,10248:6630773,12746059 +g1,10248:32583029,12746059 +g1,10248:32583029,12746059 +) +h1,10248:6630773,12942667:0,0,0 +v1,10252:6630773,14657421:0,393216,0 +(1,10273:6630773,21149383:25952256,6885178,196608 +g1,10273:6630773,21149383 +g1,10273:6630773,21149383 +g1,10273:6434165,21149383 +(1,10273:6434165,21149383:0,6885178,196608 +r1,10273:32779637,21149383:26345472,7081786,196608 +k1,10273:6434165,21149383:-26345472 +) +(1,10273:6434165,21149383:26345472,6885178,196608 +[1,10273:6630773,21149383:25952256,6688570,0 +(1,10254:6630773,14871331:25952256,410518,101187 +(1,10253:6630773,14871331:0,0,0 +g1,10253:6630773,14871331 +g1,10253:6630773,14871331 +g1,10253:6303093,14871331 +(1,10253:6303093,14871331:0,0,0 +) +g1,10253:6630773,14871331 +) +g1,10254:10108376,14871331 +g1,10254:11056814,14871331 +k1,10254:11056814,14871331:0 +h1,10254:17379728,14871331:0,0,0 +k1,10254:32583029,14871331:15203301 +g1,10254:32583029,14871331 +) +(1,10255:6630773,15537509:25952256,410518,101187 +h1,10255:6630773,15537509:0,0,0 +k1,10255:6630773,15537509:0 +h1,10255:14534415,15537509:0,0,0 +k1,10255:32583029,15537509:18048614 +g1,10255:32583029,15537509 +) +(1,10259:6630773,16269223:25952256,404226,76021 +(1,10257:6630773,16269223:0,0,0 +g1,10257:6630773,16269223 +g1,10257:6630773,16269223 +g1,10257:6303093,16269223 +(1,10257:6303093,16269223:0,0,0 +) +g1,10257:6630773,16269223 +) +g1,10259:7579210,16269223 +g1,10259:8843793,16269223 +h1,10259:10108376,16269223:0,0,0 +k1,10259:32583028,16269223:22474652 +g1,10259:32583028,16269223 +) +(1,10261:6630773,17590761:25952256,410518,101187 +(1,10260:6630773,17590761:0,0,0 +g1,10260:6630773,17590761 +g1,10260:6630773,17590761 +g1,10260:6303093,17590761 +(1,10260:6303093,17590761:0,0,0 +) +g1,10260:6630773,17590761 +) +k1,10261:6630773,17590761:0 +h1,10261:13269832,17590761:0,0,0 +k1,10261:32583028,17590761:19313196 +g1,10261:32583028,17590761 +) +(1,10265:6630773,18322475:25952256,404226,76021 +(1,10263:6630773,18322475:0,0,0 +g1,10263:6630773,18322475 +g1,10263:6630773,18322475 +g1,10263:6303093,18322475 +(1,10263:6303093,18322475:0,0,0 +) +g1,10263:6630773,18322475 +) +g1,10265:7579210,18322475 +g1,10265:8843793,18322475 +h1,10265:10424521,18322475:0,0,0 +k1,10265:32583029,18322475:22158508 +g1,10265:32583029,18322475 +) +(1,10267:6630773,19644013:25952256,410518,101187 +(1,10266:6630773,19644013:0,0,0 +g1,10266:6630773,19644013 +g1,10266:6630773,19644013 +g1,10266:6303093,19644013 +(1,10266:6303093,19644013:0,0,0 +) +g1,10266:6630773,19644013 +) +k1,10267:6630773,19644013:0 +h1,10267:14218269,19644013:0,0,0 +k1,10267:32583029,19644013:18364760 +g1,10267:32583029,19644013 +) +(1,10272:6630773,20375727:25952256,410518,107478 +(1,10269:6630773,20375727:0,0,0 +g1,10269:6630773,20375727 +g1,10269:6630773,20375727 +g1,10269:6303093,20375727 +(1,10269:6303093,20375727:0,0,0 +) +g1,10269:6630773,20375727 +) +g1,10272:7579210,20375727 +g1,10272:11056813,20375727 +h1,10272:14534415,20375727:0,0,0 +k1,10272:32583029,20375727:18048614 +g1,10272:32583029,20375727 +) +(1,10272:6630773,21041905:25952256,404226,107478 +h1,10272:6630773,21041905:0,0,0 +g1,10272:7579210,21041905 +g1,10272:9792230,21041905 +g1,10272:13269833,21041905 +g1,10272:16115144,21041905 +g1,10272:18960456,21041905 +g1,10272:22121913,21041905 +h1,10272:24334933,21041905:0,0,0 +k1,10272:32583029,21041905:8248096 +g1,10272:32583029,21041905 +) +] +) +g1,10273:32583029,21149383 +g1,10273:6630773,21149383 +g1,10273:6630773,21149383 +g1,10273:32583029,21149383 +g1,10273:32583029,21149383 +) +h1,10273:6630773,21345991:0,0,0 +v1,10277:6630773,23236055:0,393216,0 +(1,10278:6630773,25503586:25952256,2660747,616038 +g1,10278:6630773,25503586 +(1,10278:6630773,25503586:25952256,2660747,616038 +(1,10278:6630773,26119624:25952256,3276785,0 +[1,10278:6630773,26119624:25952256,3276785,0 +(1,10278:6630773,26093410:25952256,3224357,0 +r1,10278:6656987,26093410:26214,3224357,0 +[1,10278:6656987,26093410:25899828,3224357,0 +(1,10278:6656987,25503586:25899828,2044709,0 +[1,10278:7246811,25503586:24720180,2044709,0 +(1,10278:7246811,24546251:24720180,1087374,126483 +k1,10277:8619006,24546251:162492 +k1,10277:10328147,24546251:162491 +k1,10277:13266744,24546251:162492 +k1,10277:14041998,24546251:162492 +k1,10277:15223575,24546251:162492 +k1,10277:17228938,24546251:162491 +k1,10277:18050722,24546251:162492 +k1,10277:19232299,24546251:162492 +k1,10277:23375448,24546251:162492 +k1,10277:24920093,24546251:162491 +k1,10277:25897853,24546251:162492 +k1,10277:26928697,24546251:162492 +k1,10277:28421570,24546251:162492 +k1,10277:30059276,24546251:162491 +k1,10277:30577628,24546251:162492 +k1,10277:31966991,24546251:0 +) +(1,10278:7246811,25387739:24720180,513147,115847 +g1,10277:9322336,25387739 +g1,10277:10915516,25387739 +(1,10277:10915516,25387739:0,414482,115847 +r1,10278:11273782,25387739:358266,530329,115847 +k1,10277:10915516,25387739:-358266 +) +(1,10277:10915516,25387739:358266,414482,115847 +k1,10277:10915516,25387739:3277 +h1,10277:11270505,25387739:0,411205,112570 +) +g1,10277:11473011,25387739 +g1,10277:12358402,25387739 +(1,10277:12358402,25387739:0,452978,115847 +r1,10278:15530362,25387739:3171960,568825,115847 +k1,10277:12358402,25387739:-3171960 +) +(1,10277:12358402,25387739:3171960,452978,115847 +k1,10277:12358402,25387739:3277 +h1,10277:15527085,25387739:0,411205,112570 +) +g1,10277:15729591,25387739 +g1,10277:17120265,25387739 +g1,10277:17675354,25387739 +g1,10277:19685998,25387739 +g1,10277:21279178,25387739 +(1,10277:21279178,25387739:0,414482,115847 +r1,10278:21637444,25387739:358266,530329,115847 +k1,10277:21279178,25387739:-358266 +) +(1,10277:21279178,25387739:358266,414482,115847 +k1,10277:21279178,25387739:3277 +h1,10277:21634167,25387739:0,411205,112570 +) +g1,10277:21836673,25387739 +g1,10277:22722064,25387739 +g1,10277:23277153,25387739 +(1,10277:23277153,25387739:0,459977,115847 +r1,10278:25393978,25387739:2116825,575824,115847 +k1,10277:23277153,25387739:-2116825 +) +(1,10277:23277153,25387739:2116825,459977,115847 +k1,10277:23277153,25387739:3277 +h1,10277:25390701,25387739:0,411205,112570 +) +k1,10278:31966991,25387739:6245988 +g1,10278:31966991,25387739 +) +] +) +] +r1,10278:32583029,26093410:26214,3224357,0 +) +] +) +) +g1,10278:32583029,25503586 +) +h1,10278:6630773,26119624:0,0,0 +v1,10281:6630773,27485400:0,393216,0 +(1,10355:6630773,37943623:25952256,10851439,589824 +g1,10355:6630773,37943623 +(1,10355:6630773,37943623:25952256,10851439,589824 +(1,10355:6630773,38533447:25952256,11441263,0 +[1,10355:6630773,38533447:25952256,11441263,0 +(1,10355:6630773,38533447:25952256,11415049,0 +r1,10355:6656987,38533447:26214,11415049,0 +[1,10355:6656987,38533447:25899828,11415049,0 +(1,10355:6656987,37943623:25899828,10235401,0 +[1,10355:7246811,37943623:24720180,10235401,0 +(1,10282:7246811,28870107:24720180,1161885,196608 +(1,10281:7246811,28870107:0,1161885,196608 +r1,10355:8794447,28870107:1547636,1358493,196608 +k1,10281:7246811,28870107:-1547636 +) +(1,10281:7246811,28870107:1547636,1161885,196608 +) +k1,10281:9090924,28870107:296477 +k1,10281:10531005,28870107:296478 +k1,10281:11593598,28870107:296477 +k1,10281:15366760,28870107:296477 +k1,10281:18689035,28870107:296478 +k1,10281:20581969,28870107:296477 +k1,10281:24725409,28870107:296477 +k1,10281:26719925,28870107:296478 +k1,10281:30399370,28870107:296477 +k1,10281:31966991,28870107:0 +) +(1,10282:7246811,29711595:24720180,513147,134348 +k1,10281:7866235,29711595:263564 +k1,10281:10512688,29711595:263564 +k1,10281:12331421,29711595:263564 +k1,10281:13862451,29711595:263564 +k1,10281:14914413,29711595:263564 +k1,10281:17435692,29711595:263564 +k1,10281:18895943,29711595:263564 +k1,10281:21290738,29711595:263564 +k1,10281:22501953,29711595:263564 +k1,10281:23968758,29711595:263564 +k1,10281:24763819,29711595:263564 +k1,10281:29331788,29711595:263564 +k1,10281:31966991,29711595:0 +) +(1,10282:7246811,30553083:24720180,505283,134348 +k1,10281:9876771,30553083:174326 +k1,10281:10860466,30553083:174325 +k1,10281:12583408,30553083:174326 +k1,10281:13776818,30553083:174325 +k1,10281:16194441,30553083:174326 +k1,10281:19128487,30553083:174325 +k1,10281:19834310,30553083:174326 +k1,10281:21863305,30553083:174326 +k1,10281:22847000,30553083:174325 +k1,10281:24529965,30553083:174326 +k1,10281:25895735,30553083:174325 +k1,10281:28306805,30553083:174326 +k1,10281:29734834,30553083:174325 +k1,10281:30900720,30553083:174326 +k1,10281:31966991,30553083:0 +) +(1,10282:7246811,31394571:24720180,513147,134348 +g1,10281:9158496,31394571 +g1,10281:10009153,31394571 +g1,10281:10956148,31394571 +g1,10281:12028317,31394571 +g1,10281:12989074,31394571 +g1,10281:14391544,31394571 +g1,10281:17267263,31394571 +g1,10281:20945143,31394571 +g1,10281:22216541,31394571 +g1,10281:22873867,31394571 +g1,10281:24177378,31394571 +g1,10281:25124373,31394571 +g1,10281:27807417,31394571 +g1,10281:28658074,31394571 +k1,10282:31966991,31394571:296227 +g1,10282:31966991,31394571 +) +(1,10284:7246811,32236059:24720180,505283,134348 +h1,10283:7246811,32236059:983040,0,0 +k1,10283:9356140,32236059:172740 +k1,10283:11004094,32236059:172739 +k1,10283:13511226,32236059:172740 +k1,10283:15123791,32236059:172739 +k1,10283:16581037,32236059:172740 +k1,10283:18843719,32236059:172739 +(1,10283:18843719,32236059:0,459977,115847 +r1,10355:24125950,32236059:5282231,575824,115847 +k1,10283:18843719,32236059:-5282231 +) +(1,10283:18843719,32236059:5282231,459977,115847 +k1,10283:18843719,32236059:3277 +h1,10283:24122673,32236059:0,411205,112570 +) +k1,10283:24298690,32236059:172740 +k1,10283:25280800,32236059:172740 +k1,10283:25809399,32236059:172739 +k1,10283:27793554,32236059:172740 +k1,10283:29794092,32236059:172739 +k1,10283:30985917,32236059:172740 +k1,10284:31966991,32236059:0 +) +(1,10284:7246811,33077547:24720180,513147,134348 +k1,10283:9083029,33077547:221411 +k1,10283:10859609,33077547:221411 +k1,10283:14363718,33077547:221411 +k1,10283:17586023,33077547:221411 +k1,10283:18163294,33077547:221411 +k1,10283:19774068,33077547:221411 +k1,10283:22045444,33077547:221410 +k1,10283:23220404,33077547:221411 +k1,10283:24574277,33077547:221411 +k1,10283:26182430,33077547:221411 +k1,10283:27016603,33077547:221411 +k1,10283:28257099,33077547:221411 +k1,10283:30361359,33077547:221411 +k1,10284:31966991,33077547:0 +) +(1,10284:7246811,33919035:24720180,513147,115847 +k1,10283:9030898,33919035:202048 +k1,10283:11210823,33919035:202048 +k1,10283:13451041,33919035:202048 +k1,10283:14269127,33919035:202048 +k1,10283:15490260,33919035:202048 +(1,10283:15490260,33919035:0,452978,115847 +r1,10355:17958797,33919035:2468537,568825,115847 +k1,10283:15490260,33919035:-2468537 +) +(1,10283:15490260,33919035:2468537,452978,115847 +k1,10283:15490260,33919035:3277 +h1,10283:17955520,33919035:0,411205,112570 +) +k1,10283:18160845,33919035:202048 +k1,10283:21141620,33919035:202048 +k1,10283:21995096,33919035:202048 +k1,10283:26230230,33919035:202048 +k1,10283:27451363,33919035:202048 +k1,10283:31013442,33919035:202048 +k1,10283:31966991,33919035:0 +) +(1,10284:7246811,34760523:24720180,513147,134348 +k1,10283:8761096,34760523:228469 +k1,10283:10181009,34760523:228468 +k1,10283:11428563,34760523:228469 +k1,10283:12829470,34760523:228468 +k1,10283:15347767,34760523:228469 +k1,10283:16523886,34760523:228468 +k1,10283:19472754,34760523:228469 +k1,10283:20317260,34760523:228468 +k1,10283:21718168,34760523:228469 +k1,10283:24708979,34760523:228468 +k1,10283:26679395,34760523:228469 +k1,10283:28699617,34760523:228468 +k1,10283:29947171,34760523:228469 +k1,10284:31966991,34760523:0 +) +(1,10284:7246811,35602011:24720180,513147,134348 +k1,10283:8415299,35602011:228702 +(1,10283:8415299,35602011:0,414482,115847 +r1,10355:9125277,35602011:709978,530329,115847 +k1,10283:8415299,35602011:-709978 +) +(1,10283:8415299,35602011:709978,414482,115847 +k1,10283:8415299,35602011:3277 +h1,10283:9122000,35602011:0,411205,112570 +) +k1,10283:9353979,35602011:228702 +k1,10283:11104427,35602011:228702 +k1,10283:12280780,35602011:228702 +k1,10283:15814463,35602011:228702 +k1,10283:18506663,35602011:228702 +k1,10283:21139881,35602011:228702 +k1,10283:22653089,35602011:228702 +k1,10283:25253539,35602011:228702 +k1,10283:26501326,35602011:228702 +k1,10283:28383501,35602011:228702 +k1,10283:30175237,35602011:228702 +k1,10284:31966991,35602011:0 +) +(1,10284:7246811,36443499:24720180,505283,134348 +(1,10283:7246811,36443499:0,452978,115847 +r1,10355:11122195,36443499:3875384,568825,115847 +k1,10283:7246811,36443499:-3875384 +) +(1,10283:7246811,36443499:3875384,452978,115847 +k1,10283:7246811,36443499:3277 +h1,10283:11118918,36443499:0,411205,112570 +) +k1,10283:11332476,36443499:210281 +k1,10283:13064503,36443499:210281 +k1,10283:14559290,36443499:210281 +k1,10283:17059399,36443499:210281 +k1,10283:18261240,36443499:210281 +k1,10283:20696467,36443499:210280 +k1,10283:21925833,36443499:210281 +k1,10283:23963258,36443499:210281 +k1,10283:27154116,36443499:210281 +k1,10283:30473425,36443499:210281 +k1,10283:31966991,36443499:0 +) +(1,10284:7246811,37284987:24720180,505283,134348 +g1,10283:8132202,37284987 +(1,10283:8132202,37284987:0,452978,115847 +r1,10355:10600739,37284987:2468537,568825,115847 +k1,10283:8132202,37284987:-2468537 +) +(1,10283:8132202,37284987:2468537,452978,115847 +k1,10283:8132202,37284987:3277 +h1,10283:10597462,37284987:0,411205,112570 +) +g1,10283:10973638,37284987 +g1,10283:13058338,37284987 +g1,10283:14125919,37284987 +g1,10283:16759155,37284987 +g1,10283:18693777,37284987 +(1,10283:18693777,37284987:0,452978,115847 +r1,10355:21162314,37284987:2468537,568825,115847 +k1,10283:18693777,37284987:-2468537 +) +(1,10283:18693777,37284987:2468537,452978,115847 +k1,10283:18693777,37284987:3277 +h1,10283:21159037,37284987:0,411205,112570 +) +k1,10284:31966991,37284987:10631007 +g1,10284:31966991,37284987 ) ] ) -] -r1,10350:32583029,38533447:26214,11415049,0 +] +r1,10355:32583029,38533447:26214,11415049,0 ) ] -) -) -g1,10350:32583029,37943623 +) +) +g1,10355:32583029,37943623 ) ] -(1,10350:32583029,45706769:0,0,0 -g1,10350:32583029,45706769 +(1,10355:32583029,45706769:0,0,0 +g1,10355:32583029,45706769 ) ) ] -(1,10350:6630773,47279633:25952256,0,0 -h1,10350:6630773,47279633:25952256,0,0 +(1,10355:6630773,47279633:25952256,0,0 +h1,10355:6630773,47279633:25952256,0,0 ) ] -h1,10350:4262630,4025873:0,0,0 +h1,10355:4262630,4025873:0,0,0 ] -!20101 +!20135 }194 -Input:1296:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1297:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1298:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:1292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {195 -[1,10368:4262630,47279633:28320399,43253760,0 -(1,10368:4262630,4025873:0,0,0 -[1,10368:-473657,4025873:25952256,0,0 -(1,10368:-473657,-710414:25952256,0,0 -h1,10368:-473657,-710414:0,0,0 -(1,10368:-473657,-710414:0,0,0 -(1,10368:-473657,-710414:0,0,0 -g1,10368:-473657,-710414 -(1,10368:-473657,-710414:65781,0,65781 -g1,10368:-407876,-710414 -[1,10368:-407876,-644633:0,0,0 +[1,10373:4262630,47279633:28320399,43253760,0 +(1,10373:4262630,4025873:0,0,0 +[1,10373:-473657,4025873:25952256,0,0 +(1,10373:-473657,-710414:25952256,0,0 +h1,10373:-473657,-710414:0,0,0 +(1,10373:-473657,-710414:0,0,0 +(1,10373:-473657,-710414:0,0,0 +g1,10373:-473657,-710414 +(1,10373:-473657,-710414:65781,0,65781 +g1,10373:-407876,-710414 +[1,10373:-407876,-644633:0,0,0 ] ) -k1,10368:-473657,-710414:-65781 +k1,10373:-473657,-710414:-65781 ) ) -k1,10368:25478599,-710414:25952256 -g1,10368:25478599,-710414 +k1,10373:25478599,-710414:25952256 +g1,10373:25478599,-710414 ) ] ) -[1,10368:6630773,47279633:25952256,43253760,0 -[1,10368:6630773,4812305:25952256,786432,0 -(1,10368:6630773,4812305:25952256,513147,134348 -(1,10368:6630773,4812305:25952256,513147,134348 -g1,10368:3078558,4812305 -[1,10368:3078558,4812305:0,0,0 -(1,10368:3078558,2439708:0,1703936,0 -k1,10368:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10368:2537886,2439708:1179648,16384,0 +[1,10373:6630773,47279633:25952256,43253760,0 +[1,10373:6630773,4812305:25952256,786432,0 +(1,10373:6630773,4812305:25952256,513147,134348 +(1,10373:6630773,4812305:25952256,513147,134348 +g1,10373:3078558,4812305 +[1,10373:3078558,4812305:0,0,0 +(1,10373:3078558,2439708:0,1703936,0 +k1,10373:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10373:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10368:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10373:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10368:3078558,4812305:0,0,0 -(1,10368:3078558,2439708:0,1703936,0 -g1,10368:29030814,2439708 -g1,10368:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10368:36151628,1915420:16384,1179648,0 +[1,10373:3078558,4812305:0,0,0 +(1,10373:3078558,2439708:0,1703936,0 +g1,10373:29030814,2439708 +g1,10373:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10373:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10368:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10373:37855564,2439708:1179648,16384,0 ) ) -k1,10368:3078556,2439708:-34777008 +k1,10373:3078556,2439708:-34777008 ) ] -[1,10368:3078558,4812305:0,0,0 -(1,10368:3078558,49800853:0,16384,2228224 -k1,10368:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10368:2537886,49800853:1179648,16384,0 +[1,10373:3078558,4812305:0,0,0 +(1,10373:3078558,49800853:0,16384,2228224 +k1,10373:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10373:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10368:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10373:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10368:3078558,4812305:0,0,0 -(1,10368:3078558,49800853:0,16384,2228224 -g1,10368:29030814,49800853 -g1,10368:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10368:36151628,51504789:16384,1179648,0 +[1,10373:3078558,4812305:0,0,0 +(1,10373:3078558,49800853:0,16384,2228224 +g1,10373:29030814,49800853 +g1,10373:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10373:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10368:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10373:37855564,49800853:1179648,16384,0 ) ) -k1,10368:3078556,49800853:-34777008 +k1,10373:3078556,49800853:-34777008 ) ] -g1,10368:6630773,4812305 -k1,10368:25241686,4812305:17415536 -g1,10368:26807341,4812305 -g1,10368:30339731,4812305 -g1,10368:31154998,4812305 -) -) -] -[1,10368:6630773,45706769:25952256,40108032,0 -(1,10368:6630773,45706769:25952256,40108032,0 -(1,10368:6630773,45706769:0,0,0 -g1,10368:6630773,45706769 -) -[1,10368:6630773,45706769:25952256,40108032,0 -v1,10350:6630773,6254097:0,393216,0 -(1,10350:6630773,38244742:25952256,32383861,616038 -g1,10350:6630773,38244742 -(1,10350:6630773,38244742:25952256,32383861,616038 -(1,10350:6630773,38860780:25952256,32999899,0 -[1,10350:6630773,38860780:25952256,32999899,0 -(1,10350:6630773,38834566:25952256,32973685,0 -r1,10350:6656987,38834566:26214,32973685,0 -[1,10350:6656987,38834566:25899828,32973685,0 -(1,10350:6656987,38244742:25899828,31794037,0 -[1,10350:7246811,38244742:24720180,31794037,0 -v1,10281:7246811,6843921:0,393216,0 -(1,10309:7246811,16017564:24720180,9566859,196608 -g1,10309:7246811,16017564 -g1,10309:7246811,16017564 -g1,10309:7050203,16017564 -(1,10309:7050203,16017564:0,9566859,196608 -r1,10350:32163599,16017564:25113396,9763467,196608 -k1,10309:7050203,16017564:-25113396 -) -(1,10309:7050203,16017564:25113396,9566859,196608 -[1,10309:7246811,16017564:24720180,9370251,0 -(1,10283:7246811,7051539:24720180,404226,101187 -(1,10282:7246811,7051539:0,0,0 -g1,10282:7246811,7051539 -g1,10282:7246811,7051539 -g1,10282:6919131,7051539 -(1,10282:6919131,7051539:0,0,0 -) -g1,10282:7246811,7051539 -) -k1,10283:7246811,7051539:0 -h1,10283:11040559,7051539:0,0,0 -k1,10283:31966991,7051539:20926432 -g1,10283:31966991,7051539 -) -(1,10287:7246811,7783253:24720180,410518,76021 -(1,10285:7246811,7783253:0,0,0 -g1,10285:7246811,7783253 -g1,10285:7246811,7783253 -g1,10285:6919131,7783253 -(1,10285:6919131,7783253:0,0,0 -) -g1,10285:7246811,7783253 -) -g1,10287:8195248,7783253 -g1,10287:9459831,7783253 -g1,10287:12305142,7783253 -g1,10287:12621288,7783253 -g1,10287:12937434,7783253 -g1,10287:13253580,7783253 -g1,10287:13569726,7783253 -g1,10287:15466600,7783253 -g1,10287:15782746,7783253 -g1,10287:16098892,7783253 -g1,10287:16415038,7783253 -g1,10287:16731184,7783253 -g1,10287:17047330,7783253 -g1,10287:17363476,7783253 -g1,10287:17679622,7783253 -h1,10287:21473370,7783253:0,0,0 -k1,10287:31966991,7783253:10493621 -g1,10287:31966991,7783253 -) -(1,10289:7246811,9104791:24720180,410518,101187 -(1,10288:7246811,9104791:0,0,0 -g1,10288:7246811,9104791 -g1,10288:7246811,9104791 -g1,10288:6919131,9104791 -(1,10288:6919131,9104791:0,0,0 -) -g1,10288:7246811,9104791 -) -k1,10289:7246811,9104791:0 -h1,10289:12621287,9104791:0,0,0 -k1,10289:31966991,9104791:19345704 -g1,10289:31966991,9104791 -) -(1,10293:7246811,9836505:24720180,410518,76021 -(1,10291:7246811,9836505:0,0,0 -g1,10291:7246811,9836505 -g1,10291:7246811,9836505 -g1,10291:6919131,9836505 -(1,10291:6919131,9836505:0,0,0 -) -g1,10291:7246811,9836505 -) -g1,10293:8195248,9836505 -g1,10293:9459831,9836505 -h1,10293:13253579,9836505:0,0,0 -k1,10293:31966991,9836505:18713412 -g1,10293:31966991,9836505 -) -(1,10295:7246811,11158043:24720180,410518,101187 -(1,10294:7246811,11158043:0,0,0 -g1,10294:7246811,11158043 -g1,10294:7246811,11158043 -g1,10294:6919131,11158043 -(1,10294:6919131,11158043:0,0,0 -) -g1,10294:7246811,11158043 -) -g1,10295:9143685,11158043 -g1,10295:10092122,11158043 -h1,10295:13253579,11158043:0,0,0 -k1,10295:31966991,11158043:18713412 -g1,10295:31966991,11158043 -) -(1,10302:7246811,11889757:24720180,404226,107478 -(1,10297:7246811,11889757:0,0,0 -g1,10297:7246811,11889757 -g1,10297:7246811,11889757 -g1,10297:6919131,11889757 -(1,10297:6919131,11889757:0,0,0 -) -g1,10297:7246811,11889757 -) -g1,10302:8195248,11889757 -g1,10302:8511394,11889757 -g1,10302:8827540,11889757 -g1,10302:9143686,11889757 -g1,10302:9459832,11889757 -g1,10302:9775978,11889757 -g1,10302:11672852,11889757 -g1,10302:14202018,11889757 -h1,10302:16731183,11889757:0,0,0 -k1,10302:31966991,11889757:15235808 -g1,10302:31966991,11889757 -) -(1,10302:7246811,12555935:24720180,404226,82312 -h1,10302:7246811,12555935:0,0,0 -g1,10302:8195248,12555935 -g1,10302:9775976,12555935 -g1,10302:10092122,12555935 -g1,10302:11672851,12555935 -g1,10302:11988997,12555935 -g1,10302:12305143,12555935 -g1,10302:12621289,12555935 -g1,10302:14202018,12555935 -g1,10302:14518164,12555935 -g1,10302:14834310,12555935 -g1,10302:15150456,12555935 -g1,10302:15466602,12555935 -h1,10302:16731185,12555935:0,0,0 -k1,10302:31966991,12555935:15235806 -g1,10302:31966991,12555935 -) -(1,10302:7246811,13222113:24720180,404226,82312 -h1,10302:7246811,13222113:0,0,0 -g1,10302:8195248,13222113 -g1,10302:9775976,13222113 -g1,10302:10092122,13222113 -g1,10302:11672851,13222113 -g1,10302:11988997,13222113 -g1,10302:12305143,13222113 -g1,10302:12621289,13222113 -g1,10302:14202018,13222113 -g1,10302:14518164,13222113 -g1,10302:14834310,13222113 -g1,10302:15150456,13222113 -g1,10302:15466602,13222113 -h1,10302:16731185,13222113:0,0,0 -k1,10302:31966991,13222113:15235806 -g1,10302:31966991,13222113 -) -(1,10302:7246811,13888291:24720180,404226,82312 -h1,10302:7246811,13888291:0,0,0 -g1,10302:8195248,13888291 -g1,10302:9775976,13888291 -g1,10302:10092122,13888291 -g1,10302:11672851,13888291 -g1,10302:11988997,13888291 -g1,10302:12305143,13888291 -g1,10302:12621289,13888291 -g1,10302:14202018,13888291 -g1,10302:14518164,13888291 -g1,10302:14834310,13888291 -g1,10302:15150456,13888291 -g1,10302:15466602,13888291 -h1,10302:16731185,13888291:0,0,0 -k1,10302:31966991,13888291:15235806 -g1,10302:31966991,13888291 -) -(1,10304:7246811,15209829:24720180,410518,101187 -(1,10303:7246811,15209829:0,0,0 -g1,10303:7246811,15209829 -g1,10303:7246811,15209829 -g1,10303:6919131,15209829 -(1,10303:6919131,15209829:0,0,0 -) -g1,10303:7246811,15209829 -) -k1,10304:7246811,15209829:0 -g1,10304:12621288,15209829 -h1,10304:16098890,15209829:0,0,0 -k1,10304:31966991,15209829:15868101 -g1,10304:31966991,15209829 -) -(1,10308:7246811,15941543:24720180,404226,76021 -(1,10306:7246811,15941543:0,0,0 -g1,10306:7246811,15941543 -g1,10306:7246811,15941543 -g1,10306:6919131,15941543 -(1,10306:6919131,15941543:0,0,0 -) -g1,10306:7246811,15941543 -) -g1,10308:8195248,15941543 -g1,10308:9459831,15941543 -h1,10308:11040559,15941543:0,0,0 -k1,10308:31966991,15941543:20926432 -g1,10308:31966991,15941543 -) -] -) -g1,10309:31966991,16017564 -g1,10309:7246811,16017564 -g1,10309:7246811,16017564 -g1,10309:31966991,16017564 -g1,10309:31966991,16017564 -) -h1,10309:7246811,16214172:0,0,0 -(1,10313:7246811,17579948:24720180,513147,126483 -h1,10312:7246811,17579948:983040,0,0 -k1,10312:9907724,17579948:270160 -k1,10312:11046235,17579948:270159 -k1,10312:13278543,17579948:270160 -k1,10312:15116324,17579948:270160 -k1,10312:15742343,17579948:270159 -k1,10312:17997589,17579948:270160 -k1,10312:19459194,17579948:270160 -k1,10312:21163282,17579948:270160 -k1,10312:23948057,17579948:270159 -k1,10312:24574077,17579948:270160 -k1,10312:28320922,17579948:270160 -k1,10312:30073505,17579948:270159 -k1,10312:31611131,17579948:270160 -k1,10312:31966991,17579948:0 -) -(1,10313:7246811,18421436:24720180,505283,7863 -k1,10313:31966991,18421436:22735094 -g1,10313:31966991,18421436 -) -v1,10315:7246811,19611902:0,393216,0 -(1,10346:7246811,30784079:24720180,11565393,196608 -g1,10346:7246811,30784079 -g1,10346:7246811,30784079 -g1,10346:7050203,30784079 -(1,10346:7050203,30784079:0,11565393,196608 -r1,10350:32163599,30784079:25113396,11762001,196608 -k1,10346:7050203,30784079:-25113396 -) -(1,10346:7050203,30784079:25113396,11565393,196608 -[1,10346:7246811,30784079:24720180,11368785,0 -(1,10317:7246811,19819520:24720180,404226,101187 -(1,10316:7246811,19819520:0,0,0 -g1,10316:7246811,19819520 -g1,10316:7246811,19819520 -g1,10316:6919131,19819520 -(1,10316:6919131,19819520:0,0,0 -) -g1,10316:7246811,19819520 -) -g1,10317:9459831,19819520 -g1,10317:10408269,19819520 -h1,10317:11988997,19819520:0,0,0 -k1,10317:31966991,19819520:19977994 -g1,10317:31966991,19819520 -) -(1,10318:7246811,20485698:24720180,404226,101187 -h1,10318:7246811,20485698:0,0,0 -g1,10318:11672850,20485698 -g1,10318:12621288,20485698 -g1,10318:15466600,20485698 -k1,10318:15466600,20485698:0 -h1,10318:19892639,20485698:0,0,0 -k1,10318:31966991,20485698:12074352 -g1,10318:31966991,20485698 -) -(1,10319:7246811,21151876:24720180,404226,101187 -h1,10319:7246811,21151876:0,0,0 -k1,10319:7246811,21151876:0 -h1,10319:11356704,21151876:0,0,0 -k1,10319:31966992,21151876:20610288 -g1,10319:31966992,21151876 -) -(1,10323:7246811,21883590:24720180,410518,76021 -(1,10321:7246811,21883590:0,0,0 -g1,10321:7246811,21883590 -g1,10321:7246811,21883590 -g1,10321:6919131,21883590 -(1,10321:6919131,21883590:0,0,0 -) -g1,10321:7246811,21883590 -) -g1,10323:8195248,21883590 -g1,10323:9459831,21883590 -g1,10323:11356705,21883590 -g1,10323:11672851,21883590 -g1,10323:11988997,21883590 -g1,10323:12305143,21883590 -g1,10323:12621289,21883590 -g1,10323:12937435,21883590 -g1,10323:13253581,21883590 -g1,10323:13569727,21883590 -g1,10323:16415038,21883590 -g1,10323:16731184,21883590 -g1,10323:17047330,21883590 -g1,10323:17363476,21883590 -g1,10323:17679622,21883590 -g1,10323:19576496,21883590 -g1,10323:19892642,21883590 -g1,10323:20208788,21883590 -g1,10323:20524934,21883590 -g1,10323:20841080,21883590 -g1,10323:21157226,21883590 -g1,10323:21473372,21883590 -g1,10323:21789518,21883590 -h1,10323:25583266,21883590:0,0,0 -k1,10323:31966991,21883590:6383725 -g1,10323:31966991,21883590 -) -(1,10325:7246811,23205128:24720180,404226,101187 -(1,10324:7246811,23205128:0,0,0 -g1,10324:7246811,23205128 -g1,10324:7246811,23205128 -g1,10324:6919131,23205128 -(1,10324:6919131,23205128:0,0,0 -) -g1,10324:7246811,23205128 -) -g1,10325:11356705,23205128 -g1,10325:12305143,23205128 -k1,10325:12305143,23205128:0 -h1,10325:17679619,23205128:0,0,0 -k1,10325:31966991,23205128:14287372 -g1,10325:31966991,23205128 -) -(1,10326:7246811,23871306:24720180,404226,101187 -h1,10326:7246811,23871306:0,0,0 -k1,10326:7246811,23871306:0 -h1,10326:13253579,23871306:0,0,0 -k1,10326:31966991,23871306:18713412 -g1,10326:31966991,23871306 -) -(1,10330:7246811,24603020:24720180,410518,76021 -(1,10328:7246811,24603020:0,0,0 -g1,10328:7246811,24603020 -g1,10328:7246811,24603020 -g1,10328:6919131,24603020 -(1,10328:6919131,24603020:0,0,0 -) -g1,10328:7246811,24603020 -) -g1,10330:8195248,24603020 -g1,10330:9459831,24603020 -g1,10330:12305142,24603020 -g1,10330:12621288,24603020 -g1,10330:12937434,24603020 -g1,10330:13253580,24603020 -g1,10330:13569726,24603020 -g1,10330:15466600,24603020 -g1,10330:15782746,24603020 -g1,10330:16098892,24603020 -g1,10330:16415038,24603020 -g1,10330:16731184,24603020 -g1,10330:17047330,24603020 -g1,10330:17363476,24603020 -g1,10330:17679622,24603020 -h1,10330:21473370,24603020:0,0,0 -k1,10330:31966991,24603020:10493621 -g1,10330:31966991,24603020 -) -(1,10332:7246811,25924558:24720180,404226,101187 -(1,10331:7246811,25924558:0,0,0 -g1,10331:7246811,25924558 -g1,10331:7246811,25924558 -g1,10331:6919131,25924558 -(1,10331:6919131,25924558:0,0,0 -) -g1,10331:7246811,25924558 -) -g1,10332:9459831,25924558 -g1,10332:10408268,25924558 -h1,10332:14202016,25924558:0,0,0 -k1,10332:31966992,25924558:17764976 -g1,10332:31966992,25924558 -) -(1,10339:7246811,26656272:24720180,404226,107478 -(1,10334:7246811,26656272:0,0,0 -g1,10334:7246811,26656272 -g1,10334:7246811,26656272 -g1,10334:6919131,26656272 -(1,10334:6919131,26656272:0,0,0 -) -g1,10334:7246811,26656272 -) -g1,10339:8195248,26656272 -g1,10339:8511394,26656272 -g1,10339:8827540,26656272 -g1,10339:9143686,26656272 -g1,10339:9459832,26656272 -g1,10339:9775978,26656272 -g1,10339:11672852,26656272 -g1,10339:14202018,26656272 -h1,10339:16731183,26656272:0,0,0 -k1,10339:31966991,26656272:15235808 -g1,10339:31966991,26656272 -) -(1,10339:7246811,27322450:24720180,404226,82312 -h1,10339:7246811,27322450:0,0,0 -g1,10339:8195248,27322450 -g1,10339:9775976,27322450 -g1,10339:10092122,27322450 -g1,10339:11672851,27322450 -g1,10339:11988997,27322450 -g1,10339:12305143,27322450 -g1,10339:12621289,27322450 -g1,10339:14202018,27322450 -g1,10339:14518164,27322450 -g1,10339:14834310,27322450 -g1,10339:15150456,27322450 -g1,10339:15466602,27322450 -h1,10339:16731185,27322450:0,0,0 -k1,10339:31966991,27322450:15235806 -g1,10339:31966991,27322450 -) -(1,10339:7246811,27988628:24720180,404226,82312 -h1,10339:7246811,27988628:0,0,0 -g1,10339:8195248,27988628 -g1,10339:9775976,27988628 -g1,10339:10092122,27988628 -g1,10339:11672851,27988628 -g1,10339:11988997,27988628 -g1,10339:12305143,27988628 -g1,10339:12621289,27988628 -g1,10339:14202018,27988628 -g1,10339:14518164,27988628 -g1,10339:14834310,27988628 -g1,10339:15150456,27988628 -g1,10339:15466602,27988628 -h1,10339:16731185,27988628:0,0,0 -k1,10339:31966991,27988628:15235806 -g1,10339:31966991,27988628 -) -(1,10339:7246811,28654806:24720180,404226,82312 -h1,10339:7246811,28654806:0,0,0 -g1,10339:8195248,28654806 -g1,10339:9775976,28654806 -g1,10339:10092122,28654806 -g1,10339:11672851,28654806 -g1,10339:11988997,28654806 -g1,10339:12305143,28654806 -g1,10339:12621289,28654806 -g1,10339:14202018,28654806 -g1,10339:14518164,28654806 -g1,10339:14834310,28654806 -g1,10339:15150456,28654806 -g1,10339:15466602,28654806 -h1,10339:16731185,28654806:0,0,0 -k1,10339:31966991,28654806:15235806 -g1,10339:31966991,28654806 -) -(1,10341:7246811,29976344:24720180,404226,101187 -(1,10340:7246811,29976344:0,0,0 -g1,10340:7246811,29976344 -g1,10340:7246811,29976344 -g1,10340:6919131,29976344 -(1,10340:6919131,29976344:0,0,0 -) -g1,10340:7246811,29976344 -) -k1,10341:7246811,29976344:0 -g1,10341:12937434,29976344 -h1,10341:17047328,29976344:0,0,0 -k1,10341:31966991,29976344:14919663 -g1,10341:31966991,29976344 -) -(1,10345:7246811,30708058:24720180,404226,76021 -(1,10343:7246811,30708058:0,0,0 -g1,10343:7246811,30708058 -g1,10343:7246811,30708058 -g1,10343:6919131,30708058 -(1,10343:6919131,30708058:0,0,0 -) -g1,10343:7246811,30708058 -) -g1,10345:8195248,30708058 -g1,10345:9459831,30708058 -h1,10345:11040559,30708058:0,0,0 -k1,10345:31966991,30708058:20926432 -g1,10345:31966991,30708058 -) -] -) -g1,10346:31966991,30784079 -g1,10346:7246811,30784079 -g1,10346:7246811,30784079 -g1,10346:31966991,30784079 -g1,10346:31966991,30784079 -) -h1,10346:7246811,30980687:0,0,0 -(1,10350:7246811,32346463:24720180,513147,126483 -h1,10349:7246811,32346463:983040,0,0 -k1,10349:9635002,32346463:208464 -k1,10349:11015905,32346463:208464 -k1,10349:14669597,32346463:208464 -k1,10349:15687431,32346463:208464 -k1,10349:19372580,32346463:208464 -k1,10349:22606842,32346463:208465 -k1,10349:23806866,32346463:208464 -k1,10349:24701492,32346463:208464 -k1,10349:27399013,32346463:208464 -k1,10349:28213030,32346463:208464 -k1,10349:29618181,32346463:208464 -k1,10350:31966991,32346463:0 -) -(1,10350:7246811,33187951:24720180,513147,134348 -k1,10349:8838572,33187951:250894 -k1,10349:11784961,33187951:250893 -k1,10349:14216238,33187951:250894 -k1,10349:16477776,33187951:250893 -k1,10349:17499373,33187951:250894 -k1,10349:19709793,33187951:250894 -k1,10349:20619978,33187951:250893 -k1,10349:21659270,33187951:250894 -k1,10349:26533728,33187951:250893 -k1,10349:28513462,33187951:250894 -k1,10349:30231051,33187951:250893 -k1,10349:30947906,33187951:250894 -k1,10349:31966991,33187951:0 -) -(1,10350:7246811,34029439:24720180,513147,134348 -k1,10349:10541821,34029439:222682 -k1,10349:11296000,34029439:222682 -k1,10349:12289385,34029439:222682 -k1,10349:14471593,34029439:222682 -k1,10349:15353567,34029439:222682 -k1,10349:15932109,34029439:222682 -k1,10349:18537680,34029439:222682 -k1,10349:20489202,34029439:222682 -k1,10349:23620372,34029439:222682 -k1,10349:24862139,34029439:222682 -k1,10349:27467710,34029439:222682 -k1,10349:29419232,34029439:222682 -k1,10349:30247467,34029439:222682 -k1,10349:30947906,34029439:222682 -k1,10349:31966991,34029439:0 -) -(1,10350:7246811,34870927:24720180,513147,134348 -k1,10349:9428756,34870927:222419 -k1,10349:10182672,34870927:222419 -k1,10349:11064384,34870927:222420 -k1,10349:12305888,34870927:222419 -k1,10349:14083476,34870927:222419 -k1,10349:14957323,34870927:222419 -k1,10349:15927509,34870927:222420 -k1,10349:19310729,34870927:222419 -k1,10349:20358246,34870927:222419 -k1,10349:23561242,34870927:222419 -k1,10349:26073490,34870927:222420 -k1,10349:26955201,34870927:222419 -k1,10349:29560509,34870927:222419 -k1,10349:31966991,34870927:0 -) -(1,10350:7246811,35712415:24720180,513147,102891 -k1,10349:8945701,35712415:264962 -k1,10349:9668760,35712415:264962 -k1,10349:12114105,35712415:264962 -k1,10349:14606636,35712415:264962 -k1,10349:18457728,35712415:264962 -k1,10349:20155307,35712415:264962 -k1,10349:20835047,35712415:264897 -k1,10349:23589066,35712415:264962 -k1,10349:24540190,35712415:264962 -k1,10349:25714136,35712415:264962 -k1,10349:26665260,35712415:264962 -k1,10349:27143148,35712415:264896 -k1,10349:28883325,35712415:264962 -k1,10349:30658237,35712415:264962 -k1,10349:31966991,35712415:0 -) -(1,10350:7246811,36553903:24720180,513147,134348 -k1,10349:8122675,36553903:224436 -k1,10349:9943567,36553903:224435 -k1,10349:11407944,36553903:224436 -k1,10349:14616889,36553903:224435 -k1,10349:15620548,36553903:224436 -k1,10349:18710218,36553903:224436 -k1,10349:19550691,36553903:224435 -k1,10349:20794212,36553903:224436 -k1,10349:24226635,36553903:224436 -k1,10349:26436156,36553903:224435 -k1,10349:29645102,36553903:224436 -k1,10349:30648760,36553903:224435 -k1,10349:31350953,36553903:224436 -k1,10349:31966991,36553903:0 -) -(1,10350:7246811,37395391:24720180,513147,126483 -k1,10349:9400652,37395391:266404 -k1,10349:11489612,37395391:266404 -k1,10349:12775100,37395391:266403 -k1,10349:15801225,37395391:266404 -k1,10349:16726921,37395391:266404 -k1,10349:18685465,37395391:266404 -k1,10349:21821035,37395391:266404 -k1,10349:23521366,37395391:266403 -k1,10349:24958243,37395391:266404 -k1,10349:26357109,37395391:266404 -k1,10349:28153779,37395391:266404 -k1,10349:29071610,37395391:266403 -k1,10349:30153282,37395391:266404 -k1,10349:30775546,37395391:266404 -k1,10349:31966991,37395391:0 -) -(1,10350:7246811,38236879:24720180,505283,7863 -g1,10349:9648050,38236879 -g1,10349:10498707,38236879 -g1,10349:11717021,38236879 -g1,10349:13072960,38236879 -g1,10349:14785415,38236879 -g1,10349:15600682,38236879 -g1,10349:17003152,38236879 -k1,10350:31966991,38236879:13630181 -g1,10350:31966991,38236879 -) -] -) -] -r1,10350:32583029,38834566:26214,32973685,0 -) -] -) -) -g1,10350:32583029,38244742 -) -h1,10350:6630773,38860780:0,0,0 -(1,10353:6630773,40204993:25952256,513147,126483 -h1,10352:6630773,40204993:983040,0,0 -k1,10352:9656295,40204993:210095 -k1,10352:10857950,40204993:210095 -k1,10352:14295038,40204993:210095 -k1,10352:17714432,40204993:210096 -k1,10352:21441189,40204993:210095 -k1,10352:24286487,40204993:210095 -k1,10352:25515667,40204993:210095 -k1,10352:29762780,40204993:210095 -(1,10352:29762780,40204993:0,452978,115847 -r1,10352:32583029,40204993:2820249,568825,115847 -k1,10352:29762780,40204993:-2820249 -) -(1,10352:29762780,40204993:2820249,452978,115847 -k1,10352:29762780,40204993:3277 -h1,10352:32579752,40204993:0,411205,112570 -) -k1,10352:32583029,40204993:0 -) -(1,10353:6630773,41046481:25952256,513147,115847 -k1,10352:8113934,41046481:291716 -(1,10352:8113934,41046481:0,459977,115847 -r1,10352:12341030,41046481:4227096,575824,115847 -k1,10352:8113934,41046481:-4227096 -) -(1,10352:8113934,41046481:4227096,459977,115847 -k1,10352:8113934,41046481:3277 -h1,10352:12337753,41046481:0,411205,112570 -) -k1,10352:12806416,41046481:291716 -k1,10352:14369531,41046481:291717 -k1,10352:15320539,41046481:291716 -k1,10352:17251310,41046481:291716 -k1,10352:18074523,41046481:291716 -k1,10352:19650746,41046481:291717 -k1,10352:20558500,41046481:291716 -k1,10352:21206076,41046481:291716 -k1,10352:22597486,41046481:291716 -k1,10352:23540631,41046481:291717 -(1,10352:23540631,41046481:0,452978,115847 -r1,10352:26360880,41046481:2820249,568825,115847 -k1,10352:23540631,41046481:-2820249 -) -(1,10352:23540631,41046481:2820249,452978,115847 -k1,10352:23540631,41046481:3277 -h1,10352:26357603,41046481:0,411205,112570 -) -k1,10352:26826266,41046481:291716 -k1,10352:29741388,41046481:291716 -k1,10352:32583029,41046481:0 -) -(1,10353:6630773,41887969:25952256,513147,134348 -k1,10352:10638300,41887969:279839 -k1,10352:12656153,41887969:279838 -k1,10352:15317570,41887969:279839 -k1,10352:16701691,41887969:279839 -k1,10352:17729296,41887969:279839 -k1,10352:19522360,41887969:279838 -k1,10352:20418237,41887969:279839 -k1,10352:21717161,41887969:279839 -k1,10352:25079158,41887969:279839 -k1,10352:26018288,41887969:279838 -k1,10352:29959623,41887969:279839 -k1,10352:32583029,41887969:0 -) -(1,10353:6630773,42729457:25952256,505283,7863 -k1,10353:32583028,42729457:22936944 -g1,10353:32583028,42729457 -) -v1,10355:6630773,43898361:0,393216,0 -(1,10368:6630773,45510161:25952256,2005016,196608 -g1,10368:6630773,45510161 -g1,10368:6630773,45510161 -g1,10368:6434165,45510161 -(1,10368:6434165,45510161:0,2005016,196608 -r1,10368:32779637,45510161:26345472,2201624,196608 -k1,10368:6434165,45510161:-26345472 -) -(1,10368:6434165,45510161:26345472,2005016,196608 -[1,10368:6630773,45510161:25952256,1808408,0 -(1,10357:6630773,44105979:25952256,404226,82312 -(1,10356:6630773,44105979:0,0,0 -g1,10356:6630773,44105979 -g1,10356:6630773,44105979 -g1,10356:6303093,44105979 -(1,10356:6303093,44105979:0,0,0 -) -g1,10356:6630773,44105979 -) -k1,10357:6630773,44105979:0 -g1,10357:9476085,44105979 -g1,10357:10108377,44105979 -g1,10357:11689107,44105979 -g1,10357:12321399,44105979 -g1,10357:12953691,44105979 -g1,10357:14534421,44105979 -g1,10357:15166713,44105979 -g1,10357:15799005,44105979 -g1,10357:16431297,44105979 -g1,10357:17063589,44105979 -g1,10357:18012027,44105979 -g1,10357:18644319,44105979 -g1,10357:19276611,44105979 -g1,10357:22438068,44105979 -g1,10357:23070360,44105979 -h1,10357:24018797,44105979:0,0,0 -k1,10357:32583029,44105979:8564232 -g1,10357:32583029,44105979 -) -(1,10367:6630773,44837693:25952256,404226,9436 -(1,10359:6630773,44837693:0,0,0 -g1,10359:6630773,44837693 -g1,10359:6630773,44837693 -g1,10359:6303093,44837693 -(1,10359:6303093,44837693:0,0,0 -) -g1,10359:6630773,44837693 -) -g1,10367:7579210,44837693 -g1,10367:8211502,44837693 -g1,10367:8843794,44837693 -g1,10367:11372960,44837693 -g1,10367:12005252,44837693 -g1,10367:12637544,44837693 -h1,10367:12953690,44837693:0,0,0 -k1,10367:32583030,44837693:19629340 -g1,10367:32583030,44837693 -) -(1,10367:6630773,45503871:25952256,404226,6290 -h1,10367:6630773,45503871:0,0,0 -g1,10367:7579210,45503871 -g1,10367:7895356,45503871 -g1,10367:8211502,45503871 -g1,10367:8527648,45503871 -g1,10367:8843794,45503871 -g1,10367:9159940,45503871 -g1,10367:9476086,45503871 -g1,10367:10108378,45503871 -g1,10367:10424524,45503871 -g1,10367:10740670,45503871 -g1,10367:11056816,45503871 -g1,10367:11372962,45503871 -g1,10367:12005254,45503871 -g1,10367:12321400,45503871 -g1,10367:12637546,45503871 -g1,10367:12953692,45503871 -g1,10367:13269838,45503871 -g1,10367:13902130,45503871 -h1,10367:14218276,45503871:0,0,0 -k1,10367:32583028,45503871:18364752 -g1,10367:32583028,45503871 -) -] -) -g1,10368:32583029,45510161 -g1,10368:6630773,45510161 -g1,10368:6630773,45510161 -g1,10368:32583029,45510161 -g1,10368:32583029,45510161 -) -] -(1,10368:32583029,45706769:0,0,0 -g1,10368:32583029,45706769 -) -) -] -(1,10368:6630773,47279633:25952256,0,0 -h1,10368:6630773,47279633:25952256,0,0 -) -] -h1,10368:4262630,4025873:0,0,0 +g1,10373:6630773,4812305 +k1,10373:25241686,4812305:17415536 +g1,10373:26807341,4812305 +g1,10373:30339731,4812305 +g1,10373:31154998,4812305 +) +) +] +[1,10373:6630773,45706769:25952256,40108032,0 +(1,10373:6630773,45706769:25952256,40108032,0 +(1,10373:6630773,45706769:0,0,0 +g1,10373:6630773,45706769 +) +[1,10373:6630773,45706769:25952256,40108032,0 +v1,10355:6630773,6254097:0,393216,0 +(1,10355:6630773,38244742:25952256,32383861,616038 +g1,10355:6630773,38244742 +(1,10355:6630773,38244742:25952256,32383861,616038 +(1,10355:6630773,38860780:25952256,32999899,0 +[1,10355:6630773,38860780:25952256,32999899,0 +(1,10355:6630773,38834566:25952256,32973685,0 +r1,10355:6656987,38834566:26214,32973685,0 +[1,10355:6656987,38834566:25899828,32973685,0 +(1,10355:6656987,38244742:25899828,31794037,0 +[1,10355:7246811,38244742:24720180,31794037,0 +v1,10286:7246811,6843921:0,393216,0 +(1,10314:7246811,16017564:24720180,9566859,196608 +g1,10314:7246811,16017564 +g1,10314:7246811,16017564 +g1,10314:7050203,16017564 +(1,10314:7050203,16017564:0,9566859,196608 +r1,10355:32163599,16017564:25113396,9763467,196608 +k1,10314:7050203,16017564:-25113396 +) +(1,10314:7050203,16017564:25113396,9566859,196608 +[1,10314:7246811,16017564:24720180,9370251,0 +(1,10288:7246811,7051539:24720180,404226,101187 +(1,10287:7246811,7051539:0,0,0 +g1,10287:7246811,7051539 +g1,10287:7246811,7051539 +g1,10287:6919131,7051539 +(1,10287:6919131,7051539:0,0,0 +) +g1,10287:7246811,7051539 +) +k1,10288:7246811,7051539:0 +h1,10288:11040559,7051539:0,0,0 +k1,10288:31966991,7051539:20926432 +g1,10288:31966991,7051539 +) +(1,10292:7246811,7783253:24720180,410518,76021 +(1,10290:7246811,7783253:0,0,0 +g1,10290:7246811,7783253 +g1,10290:7246811,7783253 +g1,10290:6919131,7783253 +(1,10290:6919131,7783253:0,0,0 +) +g1,10290:7246811,7783253 +) +g1,10292:8195248,7783253 +g1,10292:9459831,7783253 +g1,10292:12305142,7783253 +g1,10292:12621288,7783253 +g1,10292:12937434,7783253 +g1,10292:13253580,7783253 +g1,10292:13569726,7783253 +g1,10292:15466600,7783253 +g1,10292:15782746,7783253 +g1,10292:16098892,7783253 +g1,10292:16415038,7783253 +g1,10292:16731184,7783253 +g1,10292:17047330,7783253 +g1,10292:17363476,7783253 +g1,10292:17679622,7783253 +h1,10292:21473370,7783253:0,0,0 +k1,10292:31966991,7783253:10493621 +g1,10292:31966991,7783253 +) +(1,10294:7246811,9104791:24720180,410518,101187 +(1,10293:7246811,9104791:0,0,0 +g1,10293:7246811,9104791 +g1,10293:7246811,9104791 +g1,10293:6919131,9104791 +(1,10293:6919131,9104791:0,0,0 +) +g1,10293:7246811,9104791 +) +k1,10294:7246811,9104791:0 +h1,10294:12621287,9104791:0,0,0 +k1,10294:31966991,9104791:19345704 +g1,10294:31966991,9104791 +) +(1,10298:7246811,9836505:24720180,410518,76021 +(1,10296:7246811,9836505:0,0,0 +g1,10296:7246811,9836505 +g1,10296:7246811,9836505 +g1,10296:6919131,9836505 +(1,10296:6919131,9836505:0,0,0 +) +g1,10296:7246811,9836505 +) +g1,10298:8195248,9836505 +g1,10298:9459831,9836505 +h1,10298:13253579,9836505:0,0,0 +k1,10298:31966991,9836505:18713412 +g1,10298:31966991,9836505 +) +(1,10300:7246811,11158043:24720180,410518,101187 +(1,10299:7246811,11158043:0,0,0 +g1,10299:7246811,11158043 +g1,10299:7246811,11158043 +g1,10299:6919131,11158043 +(1,10299:6919131,11158043:0,0,0 +) +g1,10299:7246811,11158043 +) +g1,10300:9143685,11158043 +g1,10300:10092122,11158043 +h1,10300:13253579,11158043:0,0,0 +k1,10300:31966991,11158043:18713412 +g1,10300:31966991,11158043 +) +(1,10307:7246811,11889757:24720180,404226,107478 +(1,10302:7246811,11889757:0,0,0 +g1,10302:7246811,11889757 +g1,10302:7246811,11889757 +g1,10302:6919131,11889757 +(1,10302:6919131,11889757:0,0,0 +) +g1,10302:7246811,11889757 +) +g1,10307:8195248,11889757 +g1,10307:8511394,11889757 +g1,10307:8827540,11889757 +g1,10307:9143686,11889757 +g1,10307:9459832,11889757 +g1,10307:9775978,11889757 +g1,10307:11672852,11889757 +g1,10307:14202018,11889757 +h1,10307:16731183,11889757:0,0,0 +k1,10307:31966991,11889757:15235808 +g1,10307:31966991,11889757 +) +(1,10307:7246811,12555935:24720180,404226,82312 +h1,10307:7246811,12555935:0,0,0 +g1,10307:8195248,12555935 +g1,10307:9775976,12555935 +g1,10307:10092122,12555935 +g1,10307:11672851,12555935 +g1,10307:11988997,12555935 +g1,10307:12305143,12555935 +g1,10307:12621289,12555935 +g1,10307:14202018,12555935 +g1,10307:14518164,12555935 +g1,10307:14834310,12555935 +g1,10307:15150456,12555935 +g1,10307:15466602,12555935 +h1,10307:16731185,12555935:0,0,0 +k1,10307:31966991,12555935:15235806 +g1,10307:31966991,12555935 +) +(1,10307:7246811,13222113:24720180,404226,82312 +h1,10307:7246811,13222113:0,0,0 +g1,10307:8195248,13222113 +g1,10307:9775976,13222113 +g1,10307:10092122,13222113 +g1,10307:11672851,13222113 +g1,10307:11988997,13222113 +g1,10307:12305143,13222113 +g1,10307:12621289,13222113 +g1,10307:14202018,13222113 +g1,10307:14518164,13222113 +g1,10307:14834310,13222113 +g1,10307:15150456,13222113 +g1,10307:15466602,13222113 +h1,10307:16731185,13222113:0,0,0 +k1,10307:31966991,13222113:15235806 +g1,10307:31966991,13222113 +) +(1,10307:7246811,13888291:24720180,404226,82312 +h1,10307:7246811,13888291:0,0,0 +g1,10307:8195248,13888291 +g1,10307:9775976,13888291 +g1,10307:10092122,13888291 +g1,10307:11672851,13888291 +g1,10307:11988997,13888291 +g1,10307:12305143,13888291 +g1,10307:12621289,13888291 +g1,10307:14202018,13888291 +g1,10307:14518164,13888291 +g1,10307:14834310,13888291 +g1,10307:15150456,13888291 +g1,10307:15466602,13888291 +h1,10307:16731185,13888291:0,0,0 +k1,10307:31966991,13888291:15235806 +g1,10307:31966991,13888291 +) +(1,10309:7246811,15209829:24720180,410518,101187 +(1,10308:7246811,15209829:0,0,0 +g1,10308:7246811,15209829 +g1,10308:7246811,15209829 +g1,10308:6919131,15209829 +(1,10308:6919131,15209829:0,0,0 +) +g1,10308:7246811,15209829 +) +k1,10309:7246811,15209829:0 +g1,10309:12621288,15209829 +h1,10309:16098890,15209829:0,0,0 +k1,10309:31966991,15209829:15868101 +g1,10309:31966991,15209829 +) +(1,10313:7246811,15941543:24720180,404226,76021 +(1,10311:7246811,15941543:0,0,0 +g1,10311:7246811,15941543 +g1,10311:7246811,15941543 +g1,10311:6919131,15941543 +(1,10311:6919131,15941543:0,0,0 +) +g1,10311:7246811,15941543 +) +g1,10313:8195248,15941543 +g1,10313:9459831,15941543 +h1,10313:11040559,15941543:0,0,0 +k1,10313:31966991,15941543:20926432 +g1,10313:31966991,15941543 +) +] +) +g1,10314:31966991,16017564 +g1,10314:7246811,16017564 +g1,10314:7246811,16017564 +g1,10314:31966991,16017564 +g1,10314:31966991,16017564 +) +h1,10314:7246811,16214172:0,0,0 +(1,10318:7246811,17579948:24720180,513147,126483 +h1,10317:7246811,17579948:983040,0,0 +k1,10317:9907724,17579948:270160 +k1,10317:11046235,17579948:270159 +k1,10317:13278543,17579948:270160 +k1,10317:15116324,17579948:270160 +k1,10317:15742343,17579948:270159 +k1,10317:17997589,17579948:270160 +k1,10317:19459194,17579948:270160 +k1,10317:21163282,17579948:270160 +k1,10317:23948057,17579948:270159 +k1,10317:24574077,17579948:270160 +k1,10317:28320922,17579948:270160 +k1,10317:30073505,17579948:270159 +k1,10317:31611131,17579948:270160 +k1,10317:31966991,17579948:0 +) +(1,10318:7246811,18421436:24720180,505283,7863 +k1,10318:31966991,18421436:22735094 +g1,10318:31966991,18421436 +) +v1,10320:7246811,19611902:0,393216,0 +(1,10351:7246811,30784079:24720180,11565393,196608 +g1,10351:7246811,30784079 +g1,10351:7246811,30784079 +g1,10351:7050203,30784079 +(1,10351:7050203,30784079:0,11565393,196608 +r1,10355:32163599,30784079:25113396,11762001,196608 +k1,10351:7050203,30784079:-25113396 +) +(1,10351:7050203,30784079:25113396,11565393,196608 +[1,10351:7246811,30784079:24720180,11368785,0 +(1,10322:7246811,19819520:24720180,404226,101187 +(1,10321:7246811,19819520:0,0,0 +g1,10321:7246811,19819520 +g1,10321:7246811,19819520 +g1,10321:6919131,19819520 +(1,10321:6919131,19819520:0,0,0 +) +g1,10321:7246811,19819520 +) +g1,10322:9459831,19819520 +g1,10322:10408269,19819520 +h1,10322:11988997,19819520:0,0,0 +k1,10322:31966991,19819520:19977994 +g1,10322:31966991,19819520 +) +(1,10323:7246811,20485698:24720180,404226,101187 +h1,10323:7246811,20485698:0,0,0 +g1,10323:11672850,20485698 +g1,10323:12621288,20485698 +g1,10323:15466600,20485698 +k1,10323:15466600,20485698:0 +h1,10323:19892639,20485698:0,0,0 +k1,10323:31966991,20485698:12074352 +g1,10323:31966991,20485698 +) +(1,10324:7246811,21151876:24720180,404226,101187 +h1,10324:7246811,21151876:0,0,0 +k1,10324:7246811,21151876:0 +h1,10324:11356704,21151876:0,0,0 +k1,10324:31966992,21151876:20610288 +g1,10324:31966992,21151876 +) +(1,10328:7246811,21883590:24720180,410518,76021 +(1,10326:7246811,21883590:0,0,0 +g1,10326:7246811,21883590 +g1,10326:7246811,21883590 +g1,10326:6919131,21883590 +(1,10326:6919131,21883590:0,0,0 +) +g1,10326:7246811,21883590 +) +g1,10328:8195248,21883590 +g1,10328:9459831,21883590 +g1,10328:11356705,21883590 +g1,10328:11672851,21883590 +g1,10328:11988997,21883590 +g1,10328:12305143,21883590 +g1,10328:12621289,21883590 +g1,10328:12937435,21883590 +g1,10328:13253581,21883590 +g1,10328:13569727,21883590 +g1,10328:16415038,21883590 +g1,10328:16731184,21883590 +g1,10328:17047330,21883590 +g1,10328:17363476,21883590 +g1,10328:17679622,21883590 +g1,10328:19576496,21883590 +g1,10328:19892642,21883590 +g1,10328:20208788,21883590 +g1,10328:20524934,21883590 +g1,10328:20841080,21883590 +g1,10328:21157226,21883590 +g1,10328:21473372,21883590 +g1,10328:21789518,21883590 +h1,10328:25583266,21883590:0,0,0 +k1,10328:31966991,21883590:6383725 +g1,10328:31966991,21883590 +) +(1,10330:7246811,23205128:24720180,404226,101187 +(1,10329:7246811,23205128:0,0,0 +g1,10329:7246811,23205128 +g1,10329:7246811,23205128 +g1,10329:6919131,23205128 +(1,10329:6919131,23205128:0,0,0 +) +g1,10329:7246811,23205128 +) +g1,10330:11356705,23205128 +g1,10330:12305143,23205128 +k1,10330:12305143,23205128:0 +h1,10330:17679619,23205128:0,0,0 +k1,10330:31966991,23205128:14287372 +g1,10330:31966991,23205128 +) +(1,10331:7246811,23871306:24720180,404226,101187 +h1,10331:7246811,23871306:0,0,0 +k1,10331:7246811,23871306:0 +h1,10331:13253579,23871306:0,0,0 +k1,10331:31966991,23871306:18713412 +g1,10331:31966991,23871306 +) +(1,10335:7246811,24603020:24720180,410518,76021 +(1,10333:7246811,24603020:0,0,0 +g1,10333:7246811,24603020 +g1,10333:7246811,24603020 +g1,10333:6919131,24603020 +(1,10333:6919131,24603020:0,0,0 +) +g1,10333:7246811,24603020 +) +g1,10335:8195248,24603020 +g1,10335:9459831,24603020 +g1,10335:12305142,24603020 +g1,10335:12621288,24603020 +g1,10335:12937434,24603020 +g1,10335:13253580,24603020 +g1,10335:13569726,24603020 +g1,10335:15466600,24603020 +g1,10335:15782746,24603020 +g1,10335:16098892,24603020 +g1,10335:16415038,24603020 +g1,10335:16731184,24603020 +g1,10335:17047330,24603020 +g1,10335:17363476,24603020 +g1,10335:17679622,24603020 +h1,10335:21473370,24603020:0,0,0 +k1,10335:31966991,24603020:10493621 +g1,10335:31966991,24603020 +) +(1,10337:7246811,25924558:24720180,404226,101187 +(1,10336:7246811,25924558:0,0,0 +g1,10336:7246811,25924558 +g1,10336:7246811,25924558 +g1,10336:6919131,25924558 +(1,10336:6919131,25924558:0,0,0 +) +g1,10336:7246811,25924558 +) +g1,10337:9459831,25924558 +g1,10337:10408268,25924558 +h1,10337:14202016,25924558:0,0,0 +k1,10337:31966992,25924558:17764976 +g1,10337:31966992,25924558 +) +(1,10344:7246811,26656272:24720180,404226,107478 +(1,10339:7246811,26656272:0,0,0 +g1,10339:7246811,26656272 +g1,10339:7246811,26656272 +g1,10339:6919131,26656272 +(1,10339:6919131,26656272:0,0,0 +) +g1,10339:7246811,26656272 +) +g1,10344:8195248,26656272 +g1,10344:8511394,26656272 +g1,10344:8827540,26656272 +g1,10344:9143686,26656272 +g1,10344:9459832,26656272 +g1,10344:9775978,26656272 +g1,10344:11672852,26656272 +g1,10344:14202018,26656272 +h1,10344:16731183,26656272:0,0,0 +k1,10344:31966991,26656272:15235808 +g1,10344:31966991,26656272 +) +(1,10344:7246811,27322450:24720180,404226,82312 +h1,10344:7246811,27322450:0,0,0 +g1,10344:8195248,27322450 +g1,10344:9775976,27322450 +g1,10344:10092122,27322450 +g1,10344:11672851,27322450 +g1,10344:11988997,27322450 +g1,10344:12305143,27322450 +g1,10344:12621289,27322450 +g1,10344:14202018,27322450 +g1,10344:14518164,27322450 +g1,10344:14834310,27322450 +g1,10344:15150456,27322450 +g1,10344:15466602,27322450 +h1,10344:16731185,27322450:0,0,0 +k1,10344:31966991,27322450:15235806 +g1,10344:31966991,27322450 +) +(1,10344:7246811,27988628:24720180,404226,82312 +h1,10344:7246811,27988628:0,0,0 +g1,10344:8195248,27988628 +g1,10344:9775976,27988628 +g1,10344:10092122,27988628 +g1,10344:11672851,27988628 +g1,10344:11988997,27988628 +g1,10344:12305143,27988628 +g1,10344:12621289,27988628 +g1,10344:14202018,27988628 +g1,10344:14518164,27988628 +g1,10344:14834310,27988628 +g1,10344:15150456,27988628 +g1,10344:15466602,27988628 +h1,10344:16731185,27988628:0,0,0 +k1,10344:31966991,27988628:15235806 +g1,10344:31966991,27988628 +) +(1,10344:7246811,28654806:24720180,404226,82312 +h1,10344:7246811,28654806:0,0,0 +g1,10344:8195248,28654806 +g1,10344:9775976,28654806 +g1,10344:10092122,28654806 +g1,10344:11672851,28654806 +g1,10344:11988997,28654806 +g1,10344:12305143,28654806 +g1,10344:12621289,28654806 +g1,10344:14202018,28654806 +g1,10344:14518164,28654806 +g1,10344:14834310,28654806 +g1,10344:15150456,28654806 +g1,10344:15466602,28654806 +h1,10344:16731185,28654806:0,0,0 +k1,10344:31966991,28654806:15235806 +g1,10344:31966991,28654806 +) +(1,10346:7246811,29976344:24720180,404226,101187 +(1,10345:7246811,29976344:0,0,0 +g1,10345:7246811,29976344 +g1,10345:7246811,29976344 +g1,10345:6919131,29976344 +(1,10345:6919131,29976344:0,0,0 +) +g1,10345:7246811,29976344 +) +k1,10346:7246811,29976344:0 +g1,10346:12937434,29976344 +h1,10346:17047328,29976344:0,0,0 +k1,10346:31966991,29976344:14919663 +g1,10346:31966991,29976344 +) +(1,10350:7246811,30708058:24720180,404226,76021 +(1,10348:7246811,30708058:0,0,0 +g1,10348:7246811,30708058 +g1,10348:7246811,30708058 +g1,10348:6919131,30708058 +(1,10348:6919131,30708058:0,0,0 +) +g1,10348:7246811,30708058 +) +g1,10350:8195248,30708058 +g1,10350:9459831,30708058 +h1,10350:11040559,30708058:0,0,0 +k1,10350:31966991,30708058:20926432 +g1,10350:31966991,30708058 +) +] +) +g1,10351:31966991,30784079 +g1,10351:7246811,30784079 +g1,10351:7246811,30784079 +g1,10351:31966991,30784079 +g1,10351:31966991,30784079 +) +h1,10351:7246811,30980687:0,0,0 +(1,10355:7246811,32346463:24720180,513147,126483 +h1,10354:7246811,32346463:983040,0,0 +k1,10354:9635002,32346463:208464 +k1,10354:11015905,32346463:208464 +k1,10354:14669597,32346463:208464 +k1,10354:15687431,32346463:208464 +k1,10354:19372580,32346463:208464 +k1,10354:22606842,32346463:208465 +k1,10354:23806866,32346463:208464 +k1,10354:24701492,32346463:208464 +k1,10354:27399013,32346463:208464 +k1,10354:28213030,32346463:208464 +k1,10354:29618181,32346463:208464 +k1,10355:31966991,32346463:0 +) +(1,10355:7246811,33187951:24720180,513147,134348 +k1,10354:8838572,33187951:250894 +k1,10354:11784961,33187951:250893 +k1,10354:14216238,33187951:250894 +k1,10354:16477776,33187951:250893 +k1,10354:17499373,33187951:250894 +k1,10354:19709793,33187951:250894 +k1,10354:20619978,33187951:250893 +k1,10354:21659270,33187951:250894 +k1,10354:26533728,33187951:250893 +k1,10354:28513462,33187951:250894 +k1,10354:30231051,33187951:250893 +k1,10354:30947906,33187951:250894 +k1,10354:31966991,33187951:0 +) +(1,10355:7246811,34029439:24720180,513147,134348 +k1,10354:10541821,34029439:222682 +k1,10354:11296000,34029439:222682 +k1,10354:12289385,34029439:222682 +k1,10354:14471593,34029439:222682 +k1,10354:15353567,34029439:222682 +k1,10354:15932109,34029439:222682 +k1,10354:18537680,34029439:222682 +k1,10354:20489202,34029439:222682 +k1,10354:23620372,34029439:222682 +k1,10354:24862139,34029439:222682 +k1,10354:27467710,34029439:222682 +k1,10354:29419232,34029439:222682 +k1,10354:30247467,34029439:222682 +k1,10354:30947906,34029439:222682 +k1,10354:31966991,34029439:0 +) +(1,10355:7246811,34870927:24720180,513147,134348 +k1,10354:9428756,34870927:222419 +k1,10354:10182672,34870927:222419 +k1,10354:11064384,34870927:222420 +k1,10354:12305888,34870927:222419 +k1,10354:14083476,34870927:222419 +k1,10354:14957323,34870927:222419 +k1,10354:15927509,34870927:222420 +k1,10354:19310729,34870927:222419 +k1,10354:20358246,34870927:222419 +k1,10354:23561242,34870927:222419 +k1,10354:26073490,34870927:222420 +k1,10354:26955201,34870927:222419 +k1,10354:29560509,34870927:222419 +k1,10354:31966991,34870927:0 +) +(1,10355:7246811,35712415:24720180,513147,102891 +k1,10354:8945701,35712415:264962 +k1,10354:9668760,35712415:264962 +k1,10354:12114105,35712415:264962 +k1,10354:14606636,35712415:264962 +k1,10354:18457728,35712415:264962 +k1,10354:20155307,35712415:264962 +k1,10354:20835047,35712415:264897 +k1,10354:23589066,35712415:264962 +k1,10354:24540190,35712415:264962 +k1,10354:25714136,35712415:264962 +k1,10354:26665260,35712415:264962 +k1,10354:27143148,35712415:264896 +k1,10354:28883325,35712415:264962 +k1,10354:30658237,35712415:264962 +k1,10354:31966991,35712415:0 +) +(1,10355:7246811,36553903:24720180,513147,134348 +k1,10354:8122675,36553903:224436 +k1,10354:9943567,36553903:224435 +k1,10354:11407944,36553903:224436 +k1,10354:14616889,36553903:224435 +k1,10354:15620548,36553903:224436 +k1,10354:18710218,36553903:224436 +k1,10354:19550691,36553903:224435 +k1,10354:20794212,36553903:224436 +k1,10354:24226635,36553903:224436 +k1,10354:26436156,36553903:224435 +k1,10354:29645102,36553903:224436 +k1,10354:30648760,36553903:224435 +k1,10354:31350953,36553903:224436 +k1,10354:31966991,36553903:0 +) +(1,10355:7246811,37395391:24720180,513147,126483 +k1,10354:9400652,37395391:266404 +k1,10354:11489612,37395391:266404 +k1,10354:12775100,37395391:266403 +k1,10354:15801225,37395391:266404 +k1,10354:16726921,37395391:266404 +k1,10354:18685465,37395391:266404 +k1,10354:21821035,37395391:266404 +k1,10354:23521366,37395391:266403 +k1,10354:24958243,37395391:266404 +k1,10354:26357109,37395391:266404 +k1,10354:28153779,37395391:266404 +k1,10354:29071610,37395391:266403 +k1,10354:30153282,37395391:266404 +k1,10354:30775546,37395391:266404 +k1,10354:31966991,37395391:0 +) +(1,10355:7246811,38236879:24720180,505283,7863 +g1,10354:9648050,38236879 +g1,10354:10498707,38236879 +g1,10354:11717021,38236879 +g1,10354:13072960,38236879 +g1,10354:14785415,38236879 +g1,10354:15600682,38236879 +g1,10354:17003152,38236879 +k1,10355:31966991,38236879:13630181 +g1,10355:31966991,38236879 +) +] +) +] +r1,10355:32583029,38834566:26214,32973685,0 +) +] +) +) +g1,10355:32583029,38244742 +) +h1,10355:6630773,38860780:0,0,0 +(1,10358:6630773,40204993:25952256,513147,126483 +h1,10357:6630773,40204993:983040,0,0 +k1,10357:9656295,40204993:210095 +k1,10357:10857950,40204993:210095 +k1,10357:14295038,40204993:210095 +k1,10357:17714432,40204993:210096 +k1,10357:21441189,40204993:210095 +k1,10357:24286487,40204993:210095 +k1,10357:25515667,40204993:210095 +k1,10357:29762780,40204993:210095 +(1,10357:29762780,40204993:0,452978,115847 +r1,10357:32583029,40204993:2820249,568825,115847 +k1,10357:29762780,40204993:-2820249 +) +(1,10357:29762780,40204993:2820249,452978,115847 +k1,10357:29762780,40204993:3277 +h1,10357:32579752,40204993:0,411205,112570 +) +k1,10357:32583029,40204993:0 +) +(1,10358:6630773,41046481:25952256,513147,115847 +k1,10357:8113934,41046481:291716 +(1,10357:8113934,41046481:0,459977,115847 +r1,10357:12341030,41046481:4227096,575824,115847 +k1,10357:8113934,41046481:-4227096 +) +(1,10357:8113934,41046481:4227096,459977,115847 +k1,10357:8113934,41046481:3277 +h1,10357:12337753,41046481:0,411205,112570 +) +k1,10357:12806416,41046481:291716 +k1,10357:14369531,41046481:291717 +k1,10357:15320539,41046481:291716 +k1,10357:17251310,41046481:291716 +k1,10357:18074523,41046481:291716 +k1,10357:19650746,41046481:291717 +k1,10357:20558500,41046481:291716 +k1,10357:21206076,41046481:291716 +k1,10357:22597486,41046481:291716 +k1,10357:23540631,41046481:291717 +(1,10357:23540631,41046481:0,452978,115847 +r1,10357:26360880,41046481:2820249,568825,115847 +k1,10357:23540631,41046481:-2820249 +) +(1,10357:23540631,41046481:2820249,452978,115847 +k1,10357:23540631,41046481:3277 +h1,10357:26357603,41046481:0,411205,112570 +) +k1,10357:26826266,41046481:291716 +k1,10357:29741388,41046481:291716 +k1,10357:32583029,41046481:0 +) +(1,10358:6630773,41887969:25952256,513147,134348 +k1,10357:10638300,41887969:279839 +k1,10357:12656153,41887969:279838 +k1,10357:15317570,41887969:279839 +k1,10357:16701691,41887969:279839 +k1,10357:17729296,41887969:279839 +k1,10357:19522360,41887969:279838 +k1,10357:20418237,41887969:279839 +k1,10357:21717161,41887969:279839 +k1,10357:25079158,41887969:279839 +k1,10357:26018288,41887969:279838 +k1,10357:29959623,41887969:279839 +k1,10357:32583029,41887969:0 +) +(1,10358:6630773,42729457:25952256,505283,7863 +k1,10358:32583028,42729457:22936944 +g1,10358:32583028,42729457 +) +v1,10360:6630773,43898361:0,393216,0 +(1,10373:6630773,45510161:25952256,2005016,196608 +g1,10373:6630773,45510161 +g1,10373:6630773,45510161 +g1,10373:6434165,45510161 +(1,10373:6434165,45510161:0,2005016,196608 +r1,10373:32779637,45510161:26345472,2201624,196608 +k1,10373:6434165,45510161:-26345472 +) +(1,10373:6434165,45510161:26345472,2005016,196608 +[1,10373:6630773,45510161:25952256,1808408,0 +(1,10362:6630773,44105979:25952256,404226,82312 +(1,10361:6630773,44105979:0,0,0 +g1,10361:6630773,44105979 +g1,10361:6630773,44105979 +g1,10361:6303093,44105979 +(1,10361:6303093,44105979:0,0,0 +) +g1,10361:6630773,44105979 +) +k1,10362:6630773,44105979:0 +g1,10362:9476085,44105979 +g1,10362:10108377,44105979 +g1,10362:11689107,44105979 +g1,10362:12321399,44105979 +g1,10362:12953691,44105979 +g1,10362:14534421,44105979 +g1,10362:15166713,44105979 +g1,10362:15799005,44105979 +g1,10362:16431297,44105979 +g1,10362:17063589,44105979 +g1,10362:18012027,44105979 +g1,10362:18644319,44105979 +g1,10362:19276611,44105979 +g1,10362:22438068,44105979 +g1,10362:23070360,44105979 +h1,10362:24018797,44105979:0,0,0 +k1,10362:32583029,44105979:8564232 +g1,10362:32583029,44105979 +) +(1,10372:6630773,44837693:25952256,404226,9436 +(1,10364:6630773,44837693:0,0,0 +g1,10364:6630773,44837693 +g1,10364:6630773,44837693 +g1,10364:6303093,44837693 +(1,10364:6303093,44837693:0,0,0 +) +g1,10364:6630773,44837693 +) +g1,10372:7579210,44837693 +g1,10372:8211502,44837693 +g1,10372:8843794,44837693 +g1,10372:11372960,44837693 +g1,10372:12005252,44837693 +g1,10372:12637544,44837693 +h1,10372:12953690,44837693:0,0,0 +k1,10372:32583030,44837693:19629340 +g1,10372:32583030,44837693 +) +(1,10372:6630773,45503871:25952256,404226,6290 +h1,10372:6630773,45503871:0,0,0 +g1,10372:7579210,45503871 +g1,10372:7895356,45503871 +g1,10372:8211502,45503871 +g1,10372:8527648,45503871 +g1,10372:8843794,45503871 +g1,10372:9159940,45503871 +g1,10372:9476086,45503871 +g1,10372:10108378,45503871 +g1,10372:10424524,45503871 +g1,10372:10740670,45503871 +g1,10372:11056816,45503871 +g1,10372:11372962,45503871 +g1,10372:12005254,45503871 +g1,10372:12321400,45503871 +g1,10372:12637546,45503871 +g1,10372:12953692,45503871 +g1,10372:13269838,45503871 +g1,10372:13902130,45503871 +h1,10372:14218276,45503871:0,0,0 +k1,10372:32583028,45503871:18364752 +g1,10372:32583028,45503871 +) +] +) +g1,10373:32583029,45510161 +g1,10373:6630773,45510161 +g1,10373:6630773,45510161 +g1,10373:32583029,45510161 +g1,10373:32583029,45510161 +) +] +(1,10373:32583029,45706769:0,0,0 +g1,10373:32583029,45706769 +) +) +] +(1,10373:6630773,47279633:25952256,0,0 +h1,10373:6630773,47279633:25952256,0,0 +) +] +h1,10373:4262630,4025873:0,0,0 ] !25696 }195 -Input:1299:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1300:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1301:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1302:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1303:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1304:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {196 -[1,10420:4262630,47279633:28320399,43253760,0 -(1,10420:4262630,4025873:0,0,0 -[1,10420:-473657,4025873:25952256,0,0 -(1,10420:-473657,-710414:25952256,0,0 -h1,10420:-473657,-710414:0,0,0 -(1,10420:-473657,-710414:0,0,0 -(1,10420:-473657,-710414:0,0,0 -g1,10420:-473657,-710414 -(1,10420:-473657,-710414:65781,0,65781 -g1,10420:-407876,-710414 -[1,10420:-407876,-644633:0,0,0 +[1,10425:4262630,47279633:28320399,43253760,0 +(1,10425:4262630,4025873:0,0,0 +[1,10425:-473657,4025873:25952256,0,0 +(1,10425:-473657,-710414:25952256,0,0 +h1,10425:-473657,-710414:0,0,0 +(1,10425:-473657,-710414:0,0,0 +(1,10425:-473657,-710414:0,0,0 +g1,10425:-473657,-710414 +(1,10425:-473657,-710414:65781,0,65781 +g1,10425:-407876,-710414 +[1,10425:-407876,-644633:0,0,0 ] ) -k1,10420:-473657,-710414:-65781 +k1,10425:-473657,-710414:-65781 ) ) -k1,10420:25478599,-710414:25952256 -g1,10420:25478599,-710414 +k1,10425:25478599,-710414:25952256 +g1,10425:25478599,-710414 ) ] ) -[1,10420:6630773,47279633:25952256,43253760,0 -[1,10420:6630773,4812305:25952256,786432,0 -(1,10420:6630773,4812305:25952256,485622,126483 -(1,10420:6630773,4812305:25952256,485622,126483 -g1,10420:3078558,4812305 -[1,10420:3078558,4812305:0,0,0 -(1,10420:3078558,2439708:0,1703936,0 -k1,10420:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10420:2537886,2439708:1179648,16384,0 +[1,10425:6630773,47279633:25952256,43253760,0 +[1,10425:6630773,4812305:25952256,786432,0 +(1,10425:6630773,4812305:25952256,485622,126483 +(1,10425:6630773,4812305:25952256,485622,126483 +g1,10425:3078558,4812305 +[1,10425:3078558,4812305:0,0,0 +(1,10425:3078558,2439708:0,1703936,0 +k1,10425:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10425:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10420:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10425:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10420:3078558,4812305:0,0,0 -(1,10420:3078558,2439708:0,1703936,0 -g1,10420:29030814,2439708 -g1,10420:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10420:36151628,1915420:16384,1179648,0 +[1,10425:3078558,4812305:0,0,0 +(1,10425:3078558,2439708:0,1703936,0 +g1,10425:29030814,2439708 +g1,10425:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10425:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10420:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10425:37855564,2439708:1179648,16384,0 ) ) -k1,10420:3078556,2439708:-34777008 +k1,10425:3078556,2439708:-34777008 ) ] -[1,10420:3078558,4812305:0,0,0 -(1,10420:3078558,49800853:0,16384,2228224 -k1,10420:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10420:2537886,49800853:1179648,16384,0 +[1,10425:3078558,4812305:0,0,0 +(1,10425:3078558,49800853:0,16384,2228224 +k1,10425:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10425:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10420:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10425:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 -) -] -) -) -) -] -[1,10420:3078558,4812305:0,0,0 -(1,10420:3078558,49800853:0,16384,2228224 -g1,10420:29030814,49800853 -g1,10420:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10420:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10420:37855564,49800853:1179648,16384,0 -) -) -k1,10420:3078556,49800853:-34777008 -) -] -g1,10420:6630773,4812305 -g1,10420:6630773,4812305 -g1,10420:8364200,4812305 -g1,10420:10177581,4812305 -k1,10420:31387653,4812305:21210072 -) -) -] -[1,10420:6630773,45706769:25952256,40108032,0 -(1,10420:6630773,45706769:25952256,40108032,0 -(1,10420:6630773,45706769:0,0,0 -g1,10420:6630773,45706769 -) -[1,10420:6630773,45706769:25952256,40108032,0 -v1,10368:6630773,6254097:0,393216,0 -(1,10368:6630773,9132717:25952256,3271836,196608 -g1,10368:6630773,9132717 -g1,10368:6630773,9132717 -g1,10368:6434165,9132717 -(1,10368:6434165,9132717:0,3271836,196608 -r1,10368:32779637,9132717:26345472,3468444,196608 -k1,10368:6434165,9132717:-26345472 -) -(1,10368:6434165,9132717:26345472,3271836,196608 -[1,10368:6630773,9132717:25952256,3075228,0 -(1,10367:6630773,6461715:25952256,404226,6290 -h1,10367:6630773,6461715:0,0,0 -g1,10367:7579210,6461715 -g1,10367:7895356,6461715 -g1,10367:8211502,6461715 -g1,10367:10108377,6461715 -g1,10367:12005252,6461715 -g1,10367:13902127,6461715 -k1,10367:13902127,6461715:0 -h1,10367:15482856,6461715:0,0,0 -k1,10367:32583028,6461715:17100172 -g1,10367:32583028,6461715 -) -(1,10367:6630773,7127893:25952256,404226,9436 -h1,10367:6630773,7127893:0,0,0 -g1,10367:7579210,7127893 -g1,10367:8211502,7127893 -g1,10367:8527648,7127893 -g1,10367:8843794,7127893 -g1,10367:9159940,7127893 -g1,10367:9476086,7127893 -g1,10367:10108378,7127893 -g1,10367:10424524,7127893 -g1,10367:10740670,7127893 -g1,10367:11056816,7127893 -g1,10367:11372962,7127893 -g1,10367:12005254,7127893 -g1,10367:12321400,7127893 -g1,10367:12637546,7127893 -g1,10367:12953692,7127893 -g1,10367:13269838,7127893 -g1,10367:13902130,7127893 -h1,10367:14218276,7127893:0,0,0 -k1,10367:32583028,7127893:18364752 -g1,10367:32583028,7127893 -) -(1,10367:6630773,7794071:25952256,388497,9436 -h1,10367:6630773,7794071:0,0,0 -g1,10367:7579210,7794071 -g1,10367:8211502,7794071 -g1,10367:8527648,7794071 -g1,10367:8843794,7794071 -g1,10367:9159940,7794071 -g1,10367:9476086,7794071 -g1,10367:10108378,7794071 -g1,10367:10424524,7794071 -g1,10367:10740670,7794071 -g1,10367:11056816,7794071 -g1,10367:11372962,7794071 -g1,10367:12005254,7794071 -g1,10367:12321400,7794071 -g1,10367:12637546,7794071 -g1,10367:12953692,7794071 -g1,10367:13269838,7794071 -g1,10367:13902130,7794071 -h1,10367:14218276,7794071:0,0,0 -k1,10367:32583028,7794071:18364752 -g1,10367:32583028,7794071 -) -(1,10367:6630773,8460249:25952256,404226,9436 -h1,10367:6630773,8460249:0,0,0 -g1,10367:7579210,8460249 -g1,10367:8211502,8460249 -g1,10367:8527648,8460249 -g1,10367:8843794,8460249 -g1,10367:9159940,8460249 -g1,10367:9476086,8460249 -g1,10367:10108378,8460249 -g1,10367:10424524,8460249 -g1,10367:10740670,8460249 -g1,10367:11056816,8460249 -g1,10367:11372962,8460249 -g1,10367:12005254,8460249 -g1,10367:12321400,8460249 -g1,10367:12637546,8460249 -g1,10367:12953692,8460249 -g1,10367:13269838,8460249 -g1,10367:13902130,8460249 -h1,10367:14218276,8460249:0,0,0 -k1,10367:32583028,8460249:18364752 -g1,10367:32583028,8460249 -) -(1,10367:6630773,9126427:25952256,404226,6290 -h1,10367:6630773,9126427:0,0,0 -g1,10367:7579210,9126427 -g1,10367:8211502,9126427 -g1,10367:9476085,9126427 -g1,10367:11056814,9126427 -g1,10367:11689106,9126427 -g1,10367:13269835,9126427 -h1,10367:14534418,9126427:0,0,0 -k1,10367:32583030,9126427:18048612 -g1,10367:32583030,9126427 -) -] -) -g1,10368:32583029,9132717 -g1,10368:6630773,9132717 -g1,10368:6630773,9132717 -g1,10368:32583029,9132717 -g1,10368:32583029,9132717 -) -h1,10368:6630773,9329325:0,0,0 -v1,10372:6630773,11219389:0,393216,0 -(1,10373:6630773,13378936:25952256,2552763,616038 -g1,10373:6630773,13378936 -(1,10373:6630773,13378936:25952256,2552763,616038 -(1,10373:6630773,13994974:25952256,3168801,0 -[1,10373:6630773,13994974:25952256,3168801,0 -(1,10373:6630773,13968760:25952256,3116373,0 -r1,10373:6656987,13968760:26214,3116373,0 -[1,10373:6656987,13968760:25899828,3116373,0 -(1,10373:6656987,13378936:25899828,1936725,0 -[1,10373:7246811,13378936:24720180,1936725,0 -(1,10373:7246811,12529585:24720180,1087374,126483 -k1,10372:8643228,12529585:186714 -k1,10372:10463756,12529585:186715 -k1,10372:11181967,12529585:186714 -k1,10372:12387766,12529585:186714 -k1,10372:15334202,12529585:186715 -k1,10372:15986877,12529585:186714 -k1,10372:17344064,12529585:186714 -k1,10372:19829126,12529585:186714 -(1,10372:19829126,12529585:0,452978,115847 -r1,10373:22649375,12529585:2820249,568825,115847 -k1,10372:19829126,12529585:-2820249 -) -(1,10372:19829126,12529585:2820249,452978,115847 -k1,10372:19829126,12529585:3277 -h1,10372:22646098,12529585:0,411205,112570 -) -k1,10372:22836090,12529585:186715 -k1,10372:23784332,12529585:186714 -(1,10372:23784332,12529585:0,459977,115847 -r1,10373:28011428,12529585:4227096,575824,115847 -k1,10372:23784332,12529585:-4227096 -) -(1,10372:23784332,12529585:4227096,459977,115847 -k1,10372:23784332,12529585:3277 -h1,10372:28008151,12529585:0,411205,112570 -) -k1,10372:28198142,12529585:186714 -k1,10372:29000895,12529585:186715 -k1,10372:30206694,12529585:186714 -k1,10373:31966991,12529585:0 -) -(1,10373:7246811,13371073:24720180,505283,7863 -g1,10372:9085095,13371073 -k1,10373:31966992,13371073:20699548 -g1,10373:31966992,13371073 -) -] -) -] -r1,10373:32583029,13968760:26214,3116373,0 -) -] -) -) -g1,10373:32583029,13378936 -) -h1,10373:6630773,13994974:0,0,0 -(1,10376:6630773,15360750:25952256,513147,102891 -h1,10375:6630773,15360750:983040,0,0 -k1,10375:9635817,15360750:247289 -k1,10375:11272469,15360750:247289 -k1,10375:13396054,15360750:247289 -k1,10375:16356534,15360750:247289 -k1,10375:17708105,15360750:247289 -k1,10375:18703160,15360750:247289 -k1,10375:21348411,15360750:247289 -k1,10375:23903878,15360750:247289 -k1,10375:24834052,15360750:247289 -k1,10375:27814848,15360750:247289 -k1,10375:29663182,15360750:247289 -k1,10375:30929556,15360750:247289 -k1,10375:32583029,15360750:0 -) -(1,10376:6630773,16202238:25952256,513147,102891 -k1,10375:9342700,16202238:226146 -k1,10375:10228138,16202238:226146 -k1,10375:11988482,16202238:226146 -k1,10375:12900789,16202238:226145 -k1,10375:14146020,16202238:226146 -k1,10375:15761529,16202238:226146 -k1,10375:18244735,16202238:226146 -k1,10375:21184072,16202238:226146 -k1,10375:22069510,16202238:226146 -k1,10375:24437373,16202238:226146 -k1,10375:25767800,16202238:226145 -k1,10375:26741712,16202238:226146 -k1,10375:29365820,16202238:226146 -k1,10375:31900144,16202238:226146 -k1,10375:32583029,16202238:0 -) -(1,10376:6630773,17043726:25952256,513147,95026 -g1,10375:8153829,17043726 -g1,10375:9954103,17043726 -g1,10375:11172417,17043726 -g1,10375:13025119,17043726 -g1,10375:15710129,17043726 -g1,10375:16568650,17043726 -g1,10375:19721587,17043726 -g1,10375:20606978,17043726 -g1,10375:22340405,17043726 -g1,10375:23558719,17043726 -g1,10375:25569363,17043726 -k1,10376:32583029,17043726:5531897 -g1,10376:32583029,17043726 -) -v1,10378:6630773,18234192:0,393216,0 -(1,10391:6630773,23176882:25952256,5335906,196608 -g1,10391:6630773,23176882 -g1,10391:6630773,23176882 -g1,10391:6434165,23176882 -(1,10391:6434165,23176882:0,5335906,196608 -r1,10391:32779637,23176882:26345472,5532514,196608 -k1,10391:6434165,23176882:-26345472 -) -(1,10391:6434165,23176882:26345472,5335906,196608 -[1,10391:6630773,23176882:25952256,5139298,0 -(1,10380:6630773,18441810:25952256,404226,82312 -(1,10379:6630773,18441810:0,0,0 -g1,10379:6630773,18441810 -g1,10379:6630773,18441810 -g1,10379:6303093,18441810 -(1,10379:6303093,18441810:0,0,0 -) -g1,10379:6630773,18441810 -) -k1,10380:6630773,18441810:0 -g1,10380:9476085,18441810 -g1,10380:10108377,18441810 -g1,10380:11689107,18441810 -g1,10380:12321399,18441810 -g1,10380:12953691,18441810 -g1,10380:14534421,18441810 -g1,10380:15166713,18441810 -g1,10380:15799005,18441810 -g1,10380:18960463,18441810 -g1,10380:19908901,18441810 -g1,10380:20857339,18441810 -g1,10380:21805777,18441810 -h1,10380:22754214,18441810:0,0,0 -k1,10380:32583029,18441810:9828815 -g1,10380:32583029,18441810 -) -(1,10390:6630773,19173524:25952256,404226,9436 -(1,10382:6630773,19173524:0,0,0 -g1,10382:6630773,19173524 -g1,10382:6630773,19173524 -g1,10382:6303093,19173524 -(1,10382:6303093,19173524:0,0,0 -) -g1,10382:6630773,19173524 -) -g1,10390:7579210,19173524 -g1,10390:8211502,19173524 -g1,10390:8843794,19173524 -g1,10390:11372960,19173524 -g1,10390:12005252,19173524 -g1,10390:12637544,19173524 -h1,10390:12953690,19173524:0,0,0 -k1,10390:32583030,19173524:19629340 -g1,10390:32583030,19173524 -) -(1,10390:6630773,19839702:25952256,404226,6290 -h1,10390:6630773,19839702:0,0,0 -g1,10390:7579210,19839702 -g1,10390:7895356,19839702 -g1,10390:8211502,19839702 -g1,10390:8527648,19839702 -g1,10390:8843794,19839702 -g1,10390:9159940,19839702 -g1,10390:9476086,19839702 -g1,10390:10108378,19839702 -g1,10390:10424524,19839702 -g1,10390:10740670,19839702 -g1,10390:11056816,19839702 -g1,10390:11372962,19839702 -g1,10390:12005254,19839702 -h1,10390:12321400,19839702:0,0,0 -k1,10390:32583028,19839702:20261628 -g1,10390:32583028,19839702 -) -(1,10390:6630773,20505880:25952256,404226,6290 -h1,10390:6630773,20505880:0,0,0 -g1,10390:7579210,20505880 -g1,10390:7895356,20505880 -g1,10390:8211502,20505880 -g1,10390:10108377,20505880 -g1,10390:12005252,20505880 -k1,10390:12005252,20505880:0 -h1,10390:13902126,20505880:0,0,0 -k1,10390:32583030,20505880:18680904 -g1,10390:32583030,20505880 -) -(1,10390:6630773,21172058:25952256,404226,76021 -h1,10390:6630773,21172058:0,0,0 -g1,10390:7579210,21172058 -g1,10390:8211502,21172058 -g1,10390:8527648,21172058 -g1,10390:8843794,21172058 -g1,10390:9159940,21172058 -g1,10390:9476086,21172058 -g1,10390:10108378,21172058 -g1,10390:10424524,21172058 -g1,10390:10740670,21172058 -g1,10390:11056816,21172058 -g1,10390:11372962,21172058 -g1,10390:12005254,21172058 -g1,10390:13585983,21172058 -k1,10390:13585983,21172058:0 -h1,10390:14850566,21172058:0,0,0 -k1,10390:32583030,21172058:17732464 -g1,10390:32583030,21172058 -) -(1,10390:6630773,21838236:25952256,404226,76021 -h1,10390:6630773,21838236:0,0,0 -g1,10390:7579210,21838236 -g1,10390:8211502,21838236 -g1,10390:8527648,21838236 -g1,10390:8843794,21838236 -g1,10390:9159940,21838236 -g1,10390:9476086,21838236 -g1,10390:10108378,21838236 -g1,10390:10424524,21838236 -g1,10390:10740670,21838236 -g1,10390:11056816,21838236 -g1,10390:11372962,21838236 -g1,10390:12005254,21838236 -g1,10390:13585983,21838236 -k1,10390:13585983,21838236:0 -h1,10390:14850566,21838236:0,0,0 -k1,10390:32583030,21838236:17732464 -g1,10390:32583030,21838236 -) -(1,10390:6630773,22504414:25952256,404226,76021 -h1,10390:6630773,22504414:0,0,0 -g1,10390:7579210,22504414 -g1,10390:8211502,22504414 -g1,10390:8527648,22504414 -g1,10390:8843794,22504414 -g1,10390:9159940,22504414 -g1,10390:9476086,22504414 -g1,10390:10108378,22504414 -g1,10390:10424524,22504414 -g1,10390:10740670,22504414 -g1,10390:11056816,22504414 -g1,10390:11372962,22504414 -g1,10390:12005254,22504414 -g1,10390:13585983,22504414 -k1,10390:13585983,22504414:0 -h1,10390:14850566,22504414:0,0,0 -k1,10390:32583030,22504414:17732464 -g1,10390:32583030,22504414 -) -(1,10390:6630773,23170592:25952256,404226,6290 -h1,10390:6630773,23170592:0,0,0 -g1,10390:7579210,23170592 -g1,10390:8211502,23170592 -g1,10390:9476085,23170592 -g1,10390:11056814,23170592 -g1,10390:11689106,23170592 -g1,10390:13269835,23170592 -h1,10390:14534418,23170592:0,0,0 -k1,10390:32583030,23170592:18048612 -g1,10390:32583030,23170592 -) -] -) -g1,10391:32583029,23176882 -g1,10391:6630773,23176882 -g1,10391:6630773,23176882 -g1,10391:32583029,23176882 -g1,10391:32583029,23176882 -) -h1,10391:6630773,23373490:0,0,0 -(1,10395:6630773,24739266:25952256,513147,102891 -h1,10394:6630773,24739266:983040,0,0 -g1,10394:9783710,24739266 -g1,10394:11449635,24739266 -g1,10394:13660819,24739266 -g1,10394:14215908,24739266 -g1,10394:15408663,24739266 -g1,10394:16267184,24739266 -g1,10394:17790240,24739266 -g1,10394:18675631,24739266 -g1,10394:19230720,24739266 -g1,10394:22114959,24739266 -g1,10394:22997073,24739266 -g1,10394:23552162,24739266 -g1,10394:24744917,24739266 -g1,10394:25603438,24739266 -k1,10395:32583029,24739266:4497743 -g1,10395:32583029,24739266 -) -v1,10397:6630773,25929732:0,393216,0 -(1,10410:6630773,30872422:25952256,5335906,196608 -g1,10410:6630773,30872422 -g1,10410:6630773,30872422 -g1,10410:6434165,30872422 -(1,10410:6434165,30872422:0,5335906,196608 -r1,10410:32779637,30872422:26345472,5532514,196608 -k1,10410:6434165,30872422:-26345472 -) -(1,10410:6434165,30872422:26345472,5335906,196608 -[1,10410:6630773,30872422:25952256,5139298,0 -(1,10399:6630773,26137350:25952256,404226,82312 -(1,10398:6630773,26137350:0,0,0 -g1,10398:6630773,26137350 -g1,10398:6630773,26137350 -g1,10398:6303093,26137350 -(1,10398:6303093,26137350:0,0,0 -) -g1,10398:6630773,26137350 -) -k1,10399:6630773,26137350:0 -g1,10399:9476085,26137350 -g1,10399:10108377,26137350 -g1,10399:11689107,26137350 -g1,10399:12321399,26137350 -g1,10399:12953691,26137350 -g1,10399:14534421,26137350 -g1,10399:15166713,26137350 -g1,10399:15799005,26137350 -g1,10399:18960463,26137350 -g1,10399:20541193,26137350 -g1,10399:22121923,26137350 -g1,10399:26547964,26137350 -h1,10399:30974004,26137350:0,0,0 -k1,10399:32583029,26137350:1609025 -g1,10399:32583029,26137350 -) -(1,10409:6630773,26869064:25952256,404226,9436 -(1,10401:6630773,26869064:0,0,0 -g1,10401:6630773,26869064 -g1,10401:6630773,26869064 -g1,10401:6303093,26869064 -(1,10401:6303093,26869064:0,0,0 -) -g1,10401:6630773,26869064 -) -g1,10409:7579210,26869064 -g1,10409:8211502,26869064 -g1,10409:8843794,26869064 -g1,10409:11372960,26869064 -g1,10409:12005252,26869064 -g1,10409:12637544,26869064 -h1,10409:12953690,26869064:0,0,0 -k1,10409:32583030,26869064:19629340 -g1,10409:32583030,26869064 -) -(1,10409:6630773,27535242:25952256,404226,6290 -h1,10409:6630773,27535242:0,0,0 -g1,10409:7579210,27535242 -g1,10409:7895356,27535242 -g1,10409:8211502,27535242 -g1,10409:8527648,27535242 -g1,10409:8843794,27535242 -g1,10409:9159940,27535242 -g1,10409:9476086,27535242 -g1,10409:10108378,27535242 -g1,10409:10424524,27535242 -g1,10409:10740670,27535242 -g1,10409:11056816,27535242 -g1,10409:11372962,27535242 -g1,10409:12005254,27535242 -h1,10409:12321400,27535242:0,0,0 -k1,10409:32583028,27535242:20261628 -g1,10409:32583028,27535242 -) -(1,10409:6630773,28201420:25952256,404226,6290 -h1,10409:6630773,28201420:0,0,0 -g1,10409:7579210,28201420 -g1,10409:7895356,28201420 -g1,10409:8211502,28201420 -g1,10409:10108377,28201420 -g1,10409:12005252,28201420 -k1,10409:12005252,28201420:0 -h1,10409:13902126,28201420:0,0,0 -k1,10409:32583030,28201420:18680904 -g1,10409:32583030,28201420 -) -(1,10409:6630773,28867598:25952256,404226,76021 -h1,10409:6630773,28867598:0,0,0 -g1,10409:7579210,28867598 -g1,10409:8211502,28867598 -g1,10409:8527648,28867598 -g1,10409:8843794,28867598 -g1,10409:9159940,28867598 -g1,10409:9476086,28867598 -g1,10409:10108378,28867598 -g1,10409:10424524,28867598 -g1,10409:10740670,28867598 -g1,10409:11056816,28867598 -g1,10409:11372962,28867598 -g1,10409:12005254,28867598 -g1,10409:13585983,28867598 -k1,10409:13585983,28867598:0 -h1,10409:14850566,28867598:0,0,0 -k1,10409:32583030,28867598:17732464 -g1,10409:32583030,28867598 -) -(1,10409:6630773,29533776:25952256,404226,76021 -h1,10409:6630773,29533776:0,0,0 -g1,10409:7579210,29533776 -g1,10409:8211502,29533776 -g1,10409:8527648,29533776 -g1,10409:8843794,29533776 -g1,10409:9159940,29533776 -g1,10409:9476086,29533776 -g1,10409:10108378,29533776 -g1,10409:10424524,29533776 -g1,10409:10740670,29533776 -g1,10409:11056816,29533776 -g1,10409:11372962,29533776 -g1,10409:12005254,29533776 -g1,10409:13585983,29533776 -k1,10409:13585983,29533776:0 -h1,10409:14850566,29533776:0,0,0 -k1,10409:32583030,29533776:17732464 -g1,10409:32583030,29533776 -) -(1,10409:6630773,30199954:25952256,404226,76021 -h1,10409:6630773,30199954:0,0,0 -g1,10409:7579210,30199954 -g1,10409:8211502,30199954 -g1,10409:8527648,30199954 -g1,10409:8843794,30199954 -g1,10409:9159940,30199954 -g1,10409:9476086,30199954 -g1,10409:10108378,30199954 -g1,10409:10424524,30199954 -g1,10409:10740670,30199954 -g1,10409:11056816,30199954 -g1,10409:11372962,30199954 -g1,10409:12005254,30199954 -g1,10409:13585983,30199954 -k1,10409:13585983,30199954:0 -h1,10409:14850566,30199954:0,0,0 -k1,10409:32583030,30199954:17732464 -g1,10409:32583030,30199954 -) -(1,10409:6630773,30866132:25952256,404226,6290 -h1,10409:6630773,30866132:0,0,0 -g1,10409:7579210,30866132 -g1,10409:8211502,30866132 -g1,10409:9476085,30866132 -g1,10409:11056814,30866132 -g1,10409:11689106,30866132 -g1,10409:13269835,30866132 -h1,10409:14534418,30866132:0,0,0 -k1,10409:32583030,30866132:18048612 -g1,10409:32583030,30866132 -) -] -) -g1,10410:32583029,30872422 -g1,10410:6630773,30872422 -g1,10410:6630773,30872422 -g1,10410:32583029,30872422 -g1,10410:32583029,30872422 -) -h1,10410:6630773,31069030:0,0,0 -(1,10415:6630773,34400886:25952256,32768,229376 -(1,10415:6630773,34400886:0,32768,229376 -(1,10415:6630773,34400886:5505024,32768,229376 -r1,10415:12135797,34400886:5505024,262144,229376 -) -k1,10415:6630773,34400886:-5505024 -) -(1,10415:6630773,34400886:25952256,32768,0 -r1,10415:32583029,34400886:25952256,32768,0 -) -) -(1,10415:6630773,36005214:25952256,606339,151780 -(1,10415:6630773,36005214:1974731,582746,14155 -g1,10415:6630773,36005214 -g1,10415:8605504,36005214 -) -g1,10415:10655733,36005214 -k1,10415:32583028,36005214:19792132 -g1,10415:32583028,36005214 -) -(1,10418:6630773,37239918:25952256,513147,134348 -k1,10417:8062461,37239918:235001 -k1,10417:9603595,37239918:235001 -k1,10417:12331586,37239918:235001 -k1,10417:15752947,37239918:235001 -k1,10417:18623151,37239918:235001 -k1,10417:21019530,37239918:235002 -k1,10417:22989924,37239918:235001 -k1,10417:24917065,37239918:235001 -k1,10417:25811358,37239918:235001 -k1,10417:27065444,37239918:235001 -k1,10417:28583640,37239918:235001 -k1,10417:32051532,37239918:235001 -k1,10417:32583029,37239918:0 -) -(1,10418:6630773,38081406:25952256,513147,126483 -k1,10417:7895013,38081406:245155 -k1,10417:10878918,38081406:245155 -k1,10417:12216558,38081406:245155 -k1,10417:13121005,38081406:245155 -k1,10417:15153982,38081406:245155 -k1,10417:16779981,38081406:245155 -k1,10417:17730302,38081406:245154 -k1,10417:20819720,38081406:245155 -k1,10417:23232806,38081406:245155 -k1,10417:23833821,38081406:245155 -k1,10417:26843285,38081406:245155 -k1,10417:27747732,38081406:245155 -k1,10417:31896867,38081406:245155 -k1,10417:32583029,38081406:0 -) -(1,10418:6630773,38922894:25952256,513147,126483 -k1,10417:8564173,38922894:213080 -k1,10417:9881535,38922894:213080 -k1,10417:10842382,38922894:213081 -k1,10417:12568688,38922894:213080 -k1,10417:15075528,38922894:213080 -k1,10417:16567215,38922894:213080 -k1,10417:18174246,38922894:213080 -k1,10417:19821255,38922894:213081 -k1,10417:20449164,38922894:213066 -k1,10417:23861712,38922894:213080 -k1,10417:25749892,38922894:213080 -k1,10417:27438187,38922894:213080 -k1,10417:29161218,38922894:213081 -k1,10417:29987060,38922894:213080 -k1,10417:31219225,38922894:213080 -k1,10417:32583029,38922894:0 -) -(1,10418:6630773,39764382:25952256,513147,134348 -k1,10417:7516567,39764382:226502 -k1,10417:9245811,39764382:226503 -k1,10417:12293638,39764382:226502 -k1,10417:13136179,39764382:226503 -k1,10417:14814303,39764382:226502 -k1,10417:16668065,39764382:226503 -k1,10417:18452358,39764382:226502 -k1,10417:20673777,39764382:226503 -k1,10417:21559571,39764382:226502 -k1,10417:22574472,39764382:226503 -k1,10417:24889606,39764382:226502 -k1,10417:28803820,39764382:226503 -k1,10417:30221767,39764382:226502 -k1,10417:32583029,39764382:0 -) -(1,10418:6630773,40605870:25952256,513147,134348 -k1,10417:8821219,40605870:215846 -k1,10417:11132151,40605870:215746 -k1,10417:12118601,40605870:215747 -k1,10417:13372438,40605870:215747 -k1,10417:15308504,40605870:215746 -k1,10417:16515811,40605870:215747 -k1,10417:18782180,40605870:215747 -k1,10417:19657218,40605870:215746 -k1,10417:21589353,40605870:215747 -k1,10417:24877427,40605870:215746 -k1,10417:25776059,40605870:215747 -k1,10417:28173500,40605870:215747 -k1,10417:29673752,40605870:215746 -k1,10417:31516758,40605870:215747 -k1,10417:32583029,40605870:0 -) -(1,10418:6630773,41447358:25952256,513147,134348 -k1,10417:7200439,41447358:213806 -k1,10417:9287263,41447358:213805 -k1,10417:13374247,41447358:213806 -k1,10417:14923677,41447358:213806 -k1,10417:16587138,41447358:213805 -(1,10417:16587138,41447358:0,452978,115847 -r1,10417:17297116,41447358:709978,568825,115847 -k1,10417:16587138,41447358:-709978 -) -(1,10417:16587138,41447358:709978,452978,115847 -k1,10417:16587138,41447358:3277 -h1,10417:17293839,41447358:0,411205,112570 -) -k1,10417:17684592,41447358:213806 -(1,10417:17684592,41447358:0,452978,122846 -r1,10417:19097993,41447358:1413401,575824,122846 -k1,10417:17684592,41447358:-1413401 -) -(1,10417:17684592,41447358:1413401,452978,122846 -k1,10417:17684592,41447358:3277 -h1,10417:19094716,41447358:0,411205,112570 -) -k1,10417:19485469,41447358:213806 -(1,10417:19485469,41447358:0,414482,122846 -r1,10417:20898870,41447358:1413401,537328,122846 -k1,10417:19485469,41447358:-1413401 -) -(1,10417:19485469,41447358:1413401,414482,122846 -k1,10417:19485469,41447358:3277 -h1,10417:20895593,41447358:0,411205,112570 -) -k1,10417:21286345,41447358:213805 -(1,10417:21286345,41447358:0,414482,115847 -r1,10417:22699746,41447358:1413401,530329,115847 -k1,10417:21286345,41447358:-1413401 -) -(1,10417:21286345,41447358:1413401,414482,115847 -k1,10417:21286345,41447358:3277 -h1,10417:22696469,41447358:0,411205,112570 -) -k1,10417:23087222,41447358:213806 -k1,10417:24793283,41447358:213806 -k1,10417:26479027,41447358:213805 -k1,10417:28186399,41447358:213806 -k1,10417:29086367,41447358:213806 -k1,10417:30526351,41447358:213805 -k1,10417:31271654,41447358:213806 -k1,10418:32583029,41447358:0 -) -(1,10418:6630773,42288846:25952256,513147,134348 -k1,10417:8871244,42288846:248832 -k1,10417:9806238,42288846:248832 -k1,10417:12395361,42288846:248832 -k1,10417:14211814,42288846:248832 -k1,10417:14816506,42288846:248832 -k1,10417:17174287,42288846:248832 -k1,10417:18690585,42288846:248832 -k1,10417:19295277,42288846:248832 -k1,10417:20883010,42288846:248832 -k1,10417:23690368,42288846:248832 -k1,10417:24295060,42288846:248832 -k1,10417:26388730,42288846:248832 -k1,10417:27296854,42288846:248832 -k1,10417:29231272,42288846:248832 -k1,10417:30092866,42288846:248832 -k1,10417:32227169,42288846:248832 -k1,10417:32583029,42288846:0 -) -(1,10418:6630773,43130334:25952256,513147,126483 -k1,10417:9189248,43130334:161168 -k1,10417:14187628,43130334:161168 -k1,10417:16031761,43130334:161168 -k1,10417:18029248,43130334:161168 -k1,10417:18818251,43130334:161168 -k1,10417:20604711,43130334:161168 -k1,10417:22435081,43130334:161168 -k1,10417:23787694,43130334:161168 -k1,10417:26388112,43130334:161168 -k1,10417:27540840,43130334:161168 -k1,10417:29189020,43130334:161168 -k1,10417:30422357,43130334:161168 -k1,10417:31896867,43130334:161168 -k1,10417:32583029,43130334:0 -) -(1,10418:6630773,43971822:25952256,513147,134348 -k1,10417:7626145,43971822:224669 -k1,10417:11439566,43971822:224670 -k1,10417:14001904,43971822:224669 -k1,10417:14992689,43971822:224669 -k1,10417:17555027,43971822:224669 -k1,10417:18971142,43971822:224670 -k1,10417:23032289,43971822:224669 -k1,10417:24204609,43971822:224669 -k1,10417:26137802,43971822:224669 -k1,10417:27045357,43971822:224670 -k1,10417:29602452,43971822:224669 -k1,10417:32583029,43971822:0 -) -(1,10418:6630773,44813310:25952256,505283,126483 -k1,10417:9434731,44813310:181207 -k1,10417:11102950,44813310:181207 -k1,10417:11970319,44813310:181207 -k1,10417:15171425,44813310:181207 -k1,10417:16544077,44813310:181207 -k1,10417:19446993,44813310:181206 -k1,10417:20824887,44813310:181207 -k1,10417:24512270,44813310:181207 -k1,10417:27328680,44813310:181207 -k1,10417:29195473,44813310:181207 -k1,10417:29992718,44813310:181207 -k1,10417:31193010,44813310:181207 -k1,10417:32583029,44813310:0 -) -(1,10418:6630773,45654798:25952256,513147,126483 -g1,10417:7361499,45654798 -g1,10417:9847935,45654798 -g1,10417:14248677,45654798 -g1,10417:15209434,45654798 -g1,10417:17476979,45654798 -g1,10417:18335500,45654798 -g1,10417:21867890,45654798 -k1,10418:32583029,45654798:9228127 -g1,10418:32583029,45654798 -) -] -(1,10420:32583029,45706769:0,0,0 -g1,10420:32583029,45706769 -) -) -] -(1,10420:6630773,47279633:25952256,0,0 -h1,10420:6630773,47279633:25952256,0,0 -) -] -h1,10420:4262630,4025873:0,0,0 -] -!26670 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,10425:3078558,4812305:0,0,0 +(1,10425:3078558,49800853:0,16384,2228224 +g1,10425:29030814,49800853 +g1,10425:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10425:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10425:37855564,49800853:1179648,16384,0 +) +) +k1,10425:3078556,49800853:-34777008 +) +] +g1,10425:6630773,4812305 +g1,10425:6630773,4812305 +g1,10425:8364200,4812305 +g1,10425:10177581,4812305 +k1,10425:31387653,4812305:21210072 +) +) +] +[1,10425:6630773,45706769:25952256,40108032,0 +(1,10425:6630773,45706769:25952256,40108032,0 +(1,10425:6630773,45706769:0,0,0 +g1,10425:6630773,45706769 +) +[1,10425:6630773,45706769:25952256,40108032,0 +v1,10373:6630773,6254097:0,393216,0 +(1,10373:6630773,9132717:25952256,3271836,196608 +g1,10373:6630773,9132717 +g1,10373:6630773,9132717 +g1,10373:6434165,9132717 +(1,10373:6434165,9132717:0,3271836,196608 +r1,10373:32779637,9132717:26345472,3468444,196608 +k1,10373:6434165,9132717:-26345472 +) +(1,10373:6434165,9132717:26345472,3271836,196608 +[1,10373:6630773,9132717:25952256,3075228,0 +(1,10372:6630773,6461715:25952256,404226,6290 +h1,10372:6630773,6461715:0,0,0 +g1,10372:7579210,6461715 +g1,10372:7895356,6461715 +g1,10372:8211502,6461715 +g1,10372:10108377,6461715 +g1,10372:12005252,6461715 +g1,10372:13902127,6461715 +k1,10372:13902127,6461715:0 +h1,10372:15482856,6461715:0,0,0 +k1,10372:32583028,6461715:17100172 +g1,10372:32583028,6461715 +) +(1,10372:6630773,7127893:25952256,404226,9436 +h1,10372:6630773,7127893:0,0,0 +g1,10372:7579210,7127893 +g1,10372:8211502,7127893 +g1,10372:8527648,7127893 +g1,10372:8843794,7127893 +g1,10372:9159940,7127893 +g1,10372:9476086,7127893 +g1,10372:10108378,7127893 +g1,10372:10424524,7127893 +g1,10372:10740670,7127893 +g1,10372:11056816,7127893 +g1,10372:11372962,7127893 +g1,10372:12005254,7127893 +g1,10372:12321400,7127893 +g1,10372:12637546,7127893 +g1,10372:12953692,7127893 +g1,10372:13269838,7127893 +g1,10372:13902130,7127893 +h1,10372:14218276,7127893:0,0,0 +k1,10372:32583028,7127893:18364752 +g1,10372:32583028,7127893 +) +(1,10372:6630773,7794071:25952256,388497,9436 +h1,10372:6630773,7794071:0,0,0 +g1,10372:7579210,7794071 +g1,10372:8211502,7794071 +g1,10372:8527648,7794071 +g1,10372:8843794,7794071 +g1,10372:9159940,7794071 +g1,10372:9476086,7794071 +g1,10372:10108378,7794071 +g1,10372:10424524,7794071 +g1,10372:10740670,7794071 +g1,10372:11056816,7794071 +g1,10372:11372962,7794071 +g1,10372:12005254,7794071 +g1,10372:12321400,7794071 +g1,10372:12637546,7794071 +g1,10372:12953692,7794071 +g1,10372:13269838,7794071 +g1,10372:13902130,7794071 +h1,10372:14218276,7794071:0,0,0 +k1,10372:32583028,7794071:18364752 +g1,10372:32583028,7794071 +) +(1,10372:6630773,8460249:25952256,404226,9436 +h1,10372:6630773,8460249:0,0,0 +g1,10372:7579210,8460249 +g1,10372:8211502,8460249 +g1,10372:8527648,8460249 +g1,10372:8843794,8460249 +g1,10372:9159940,8460249 +g1,10372:9476086,8460249 +g1,10372:10108378,8460249 +g1,10372:10424524,8460249 +g1,10372:10740670,8460249 +g1,10372:11056816,8460249 +g1,10372:11372962,8460249 +g1,10372:12005254,8460249 +g1,10372:12321400,8460249 +g1,10372:12637546,8460249 +g1,10372:12953692,8460249 +g1,10372:13269838,8460249 +g1,10372:13902130,8460249 +h1,10372:14218276,8460249:0,0,0 +k1,10372:32583028,8460249:18364752 +g1,10372:32583028,8460249 +) +(1,10372:6630773,9126427:25952256,404226,6290 +h1,10372:6630773,9126427:0,0,0 +g1,10372:7579210,9126427 +g1,10372:8211502,9126427 +g1,10372:9476085,9126427 +g1,10372:11056814,9126427 +g1,10372:11689106,9126427 +g1,10372:13269835,9126427 +h1,10372:14534418,9126427:0,0,0 +k1,10372:32583030,9126427:18048612 +g1,10372:32583030,9126427 +) +] +) +g1,10373:32583029,9132717 +g1,10373:6630773,9132717 +g1,10373:6630773,9132717 +g1,10373:32583029,9132717 +g1,10373:32583029,9132717 +) +h1,10373:6630773,9329325:0,0,0 +v1,10377:6630773,11219389:0,393216,0 +(1,10378:6630773,13378936:25952256,2552763,616038 +g1,10378:6630773,13378936 +(1,10378:6630773,13378936:25952256,2552763,616038 +(1,10378:6630773,13994974:25952256,3168801,0 +[1,10378:6630773,13994974:25952256,3168801,0 +(1,10378:6630773,13968760:25952256,3116373,0 +r1,10378:6656987,13968760:26214,3116373,0 +[1,10378:6656987,13968760:25899828,3116373,0 +(1,10378:6656987,13378936:25899828,1936725,0 +[1,10378:7246811,13378936:24720180,1936725,0 +(1,10378:7246811,12529585:24720180,1087374,126483 +k1,10377:8643228,12529585:186714 +k1,10377:10463756,12529585:186715 +k1,10377:11181967,12529585:186714 +k1,10377:12387766,12529585:186714 +k1,10377:15334202,12529585:186715 +k1,10377:15986877,12529585:186714 +k1,10377:17344064,12529585:186714 +k1,10377:19829126,12529585:186714 +(1,10377:19829126,12529585:0,452978,115847 +r1,10378:22649375,12529585:2820249,568825,115847 +k1,10377:19829126,12529585:-2820249 +) +(1,10377:19829126,12529585:2820249,452978,115847 +k1,10377:19829126,12529585:3277 +h1,10377:22646098,12529585:0,411205,112570 +) +k1,10377:22836090,12529585:186715 +k1,10377:23784332,12529585:186714 +(1,10377:23784332,12529585:0,459977,115847 +r1,10378:28011428,12529585:4227096,575824,115847 +k1,10377:23784332,12529585:-4227096 +) +(1,10377:23784332,12529585:4227096,459977,115847 +k1,10377:23784332,12529585:3277 +h1,10377:28008151,12529585:0,411205,112570 +) +k1,10377:28198142,12529585:186714 +k1,10377:29000895,12529585:186715 +k1,10377:30206694,12529585:186714 +k1,10378:31966991,12529585:0 +) +(1,10378:7246811,13371073:24720180,505283,7863 +g1,10377:9085095,13371073 +k1,10378:31966992,13371073:20699548 +g1,10378:31966992,13371073 +) +] +) +] +r1,10378:32583029,13968760:26214,3116373,0 +) +] +) +) +g1,10378:32583029,13378936 +) +h1,10378:6630773,13994974:0,0,0 +(1,10381:6630773,15360750:25952256,513147,102891 +h1,10380:6630773,15360750:983040,0,0 +k1,10380:9635817,15360750:247289 +k1,10380:11272469,15360750:247289 +k1,10380:13396054,15360750:247289 +k1,10380:16356534,15360750:247289 +k1,10380:17708105,15360750:247289 +k1,10380:18703160,15360750:247289 +k1,10380:21348411,15360750:247289 +k1,10380:23903878,15360750:247289 +k1,10380:24834052,15360750:247289 +k1,10380:27814848,15360750:247289 +k1,10380:29663182,15360750:247289 +k1,10380:30929556,15360750:247289 +k1,10380:32583029,15360750:0 +) +(1,10381:6630773,16202238:25952256,513147,102891 +k1,10380:9342700,16202238:226146 +k1,10380:10228138,16202238:226146 +k1,10380:11988482,16202238:226146 +k1,10380:12900789,16202238:226145 +k1,10380:14146020,16202238:226146 +k1,10380:15761529,16202238:226146 +k1,10380:18244735,16202238:226146 +k1,10380:21184072,16202238:226146 +k1,10380:22069510,16202238:226146 +k1,10380:24437373,16202238:226146 +k1,10380:25767800,16202238:226145 +k1,10380:26741712,16202238:226146 +k1,10380:29365820,16202238:226146 +k1,10380:31900144,16202238:226146 +k1,10380:32583029,16202238:0 +) +(1,10381:6630773,17043726:25952256,513147,95026 +g1,10380:8153829,17043726 +g1,10380:9954103,17043726 +g1,10380:11172417,17043726 +g1,10380:13025119,17043726 +g1,10380:15710129,17043726 +g1,10380:16568650,17043726 +g1,10380:19721587,17043726 +g1,10380:20606978,17043726 +g1,10380:22340405,17043726 +g1,10380:23558719,17043726 +g1,10380:25569363,17043726 +k1,10381:32583029,17043726:5531897 +g1,10381:32583029,17043726 +) +v1,10383:6630773,18234192:0,393216,0 +(1,10396:6630773,23176882:25952256,5335906,196608 +g1,10396:6630773,23176882 +g1,10396:6630773,23176882 +g1,10396:6434165,23176882 +(1,10396:6434165,23176882:0,5335906,196608 +r1,10396:32779637,23176882:26345472,5532514,196608 +k1,10396:6434165,23176882:-26345472 +) +(1,10396:6434165,23176882:26345472,5335906,196608 +[1,10396:6630773,23176882:25952256,5139298,0 +(1,10385:6630773,18441810:25952256,404226,82312 +(1,10384:6630773,18441810:0,0,0 +g1,10384:6630773,18441810 +g1,10384:6630773,18441810 +g1,10384:6303093,18441810 +(1,10384:6303093,18441810:0,0,0 +) +g1,10384:6630773,18441810 +) +k1,10385:6630773,18441810:0 +g1,10385:9476085,18441810 +g1,10385:10108377,18441810 +g1,10385:11689107,18441810 +g1,10385:12321399,18441810 +g1,10385:12953691,18441810 +g1,10385:14534421,18441810 +g1,10385:15166713,18441810 +g1,10385:15799005,18441810 +g1,10385:18960463,18441810 +g1,10385:19908901,18441810 +g1,10385:20857339,18441810 +g1,10385:21805777,18441810 +h1,10385:22754214,18441810:0,0,0 +k1,10385:32583029,18441810:9828815 +g1,10385:32583029,18441810 +) +(1,10395:6630773,19173524:25952256,404226,9436 +(1,10387:6630773,19173524:0,0,0 +g1,10387:6630773,19173524 +g1,10387:6630773,19173524 +g1,10387:6303093,19173524 +(1,10387:6303093,19173524:0,0,0 +) +g1,10387:6630773,19173524 +) +g1,10395:7579210,19173524 +g1,10395:8211502,19173524 +g1,10395:8843794,19173524 +g1,10395:11372960,19173524 +g1,10395:12005252,19173524 +g1,10395:12637544,19173524 +h1,10395:12953690,19173524:0,0,0 +k1,10395:32583030,19173524:19629340 +g1,10395:32583030,19173524 +) +(1,10395:6630773,19839702:25952256,404226,6290 +h1,10395:6630773,19839702:0,0,0 +g1,10395:7579210,19839702 +g1,10395:7895356,19839702 +g1,10395:8211502,19839702 +g1,10395:8527648,19839702 +g1,10395:8843794,19839702 +g1,10395:9159940,19839702 +g1,10395:9476086,19839702 +g1,10395:10108378,19839702 +g1,10395:10424524,19839702 +g1,10395:10740670,19839702 +g1,10395:11056816,19839702 +g1,10395:11372962,19839702 +g1,10395:12005254,19839702 +h1,10395:12321400,19839702:0,0,0 +k1,10395:32583028,19839702:20261628 +g1,10395:32583028,19839702 +) +(1,10395:6630773,20505880:25952256,404226,6290 +h1,10395:6630773,20505880:0,0,0 +g1,10395:7579210,20505880 +g1,10395:7895356,20505880 +g1,10395:8211502,20505880 +g1,10395:10108377,20505880 +g1,10395:12005252,20505880 +k1,10395:12005252,20505880:0 +h1,10395:13902126,20505880:0,0,0 +k1,10395:32583030,20505880:18680904 +g1,10395:32583030,20505880 +) +(1,10395:6630773,21172058:25952256,404226,76021 +h1,10395:6630773,21172058:0,0,0 +g1,10395:7579210,21172058 +g1,10395:8211502,21172058 +g1,10395:8527648,21172058 +g1,10395:8843794,21172058 +g1,10395:9159940,21172058 +g1,10395:9476086,21172058 +g1,10395:10108378,21172058 +g1,10395:10424524,21172058 +g1,10395:10740670,21172058 +g1,10395:11056816,21172058 +g1,10395:11372962,21172058 +g1,10395:12005254,21172058 +g1,10395:13585983,21172058 +k1,10395:13585983,21172058:0 +h1,10395:14850566,21172058:0,0,0 +k1,10395:32583030,21172058:17732464 +g1,10395:32583030,21172058 +) +(1,10395:6630773,21838236:25952256,404226,76021 +h1,10395:6630773,21838236:0,0,0 +g1,10395:7579210,21838236 +g1,10395:8211502,21838236 +g1,10395:8527648,21838236 +g1,10395:8843794,21838236 +g1,10395:9159940,21838236 +g1,10395:9476086,21838236 +g1,10395:10108378,21838236 +g1,10395:10424524,21838236 +g1,10395:10740670,21838236 +g1,10395:11056816,21838236 +g1,10395:11372962,21838236 +g1,10395:12005254,21838236 +g1,10395:13585983,21838236 +k1,10395:13585983,21838236:0 +h1,10395:14850566,21838236:0,0,0 +k1,10395:32583030,21838236:17732464 +g1,10395:32583030,21838236 +) +(1,10395:6630773,22504414:25952256,404226,76021 +h1,10395:6630773,22504414:0,0,0 +g1,10395:7579210,22504414 +g1,10395:8211502,22504414 +g1,10395:8527648,22504414 +g1,10395:8843794,22504414 +g1,10395:9159940,22504414 +g1,10395:9476086,22504414 +g1,10395:10108378,22504414 +g1,10395:10424524,22504414 +g1,10395:10740670,22504414 +g1,10395:11056816,22504414 +g1,10395:11372962,22504414 +g1,10395:12005254,22504414 +g1,10395:13585983,22504414 +k1,10395:13585983,22504414:0 +h1,10395:14850566,22504414:0,0,0 +k1,10395:32583030,22504414:17732464 +g1,10395:32583030,22504414 +) +(1,10395:6630773,23170592:25952256,404226,6290 +h1,10395:6630773,23170592:0,0,0 +g1,10395:7579210,23170592 +g1,10395:8211502,23170592 +g1,10395:9476085,23170592 +g1,10395:11056814,23170592 +g1,10395:11689106,23170592 +g1,10395:13269835,23170592 +h1,10395:14534418,23170592:0,0,0 +k1,10395:32583030,23170592:18048612 +g1,10395:32583030,23170592 +) +] +) +g1,10396:32583029,23176882 +g1,10396:6630773,23176882 +g1,10396:6630773,23176882 +g1,10396:32583029,23176882 +g1,10396:32583029,23176882 +) +h1,10396:6630773,23373490:0,0,0 +(1,10400:6630773,24739266:25952256,513147,102891 +h1,10399:6630773,24739266:983040,0,0 +g1,10399:9783710,24739266 +g1,10399:11449635,24739266 +g1,10399:13660819,24739266 +g1,10399:14215908,24739266 +g1,10399:15408663,24739266 +g1,10399:16267184,24739266 +g1,10399:17790240,24739266 +g1,10399:18675631,24739266 +g1,10399:19230720,24739266 +g1,10399:22114959,24739266 +g1,10399:22997073,24739266 +g1,10399:23552162,24739266 +g1,10399:24744917,24739266 +g1,10399:25603438,24739266 +k1,10400:32583029,24739266:4497743 +g1,10400:32583029,24739266 +) +v1,10402:6630773,25929732:0,393216,0 +(1,10415:6630773,30872422:25952256,5335906,196608 +g1,10415:6630773,30872422 +g1,10415:6630773,30872422 +g1,10415:6434165,30872422 +(1,10415:6434165,30872422:0,5335906,196608 +r1,10415:32779637,30872422:26345472,5532514,196608 +k1,10415:6434165,30872422:-26345472 +) +(1,10415:6434165,30872422:26345472,5335906,196608 +[1,10415:6630773,30872422:25952256,5139298,0 +(1,10404:6630773,26137350:25952256,404226,82312 +(1,10403:6630773,26137350:0,0,0 +g1,10403:6630773,26137350 +g1,10403:6630773,26137350 +g1,10403:6303093,26137350 +(1,10403:6303093,26137350:0,0,0 +) +g1,10403:6630773,26137350 +) +k1,10404:6630773,26137350:0 +g1,10404:9476085,26137350 +g1,10404:10108377,26137350 +g1,10404:11689107,26137350 +g1,10404:12321399,26137350 +g1,10404:12953691,26137350 +g1,10404:14534421,26137350 +g1,10404:15166713,26137350 +g1,10404:15799005,26137350 +g1,10404:18960463,26137350 +g1,10404:20541193,26137350 +g1,10404:22121923,26137350 +g1,10404:26547964,26137350 +h1,10404:30974004,26137350:0,0,0 +k1,10404:32583029,26137350:1609025 +g1,10404:32583029,26137350 +) +(1,10414:6630773,26869064:25952256,404226,9436 +(1,10406:6630773,26869064:0,0,0 +g1,10406:6630773,26869064 +g1,10406:6630773,26869064 +g1,10406:6303093,26869064 +(1,10406:6303093,26869064:0,0,0 +) +g1,10406:6630773,26869064 +) +g1,10414:7579210,26869064 +g1,10414:8211502,26869064 +g1,10414:8843794,26869064 +g1,10414:11372960,26869064 +g1,10414:12005252,26869064 +g1,10414:12637544,26869064 +h1,10414:12953690,26869064:0,0,0 +k1,10414:32583030,26869064:19629340 +g1,10414:32583030,26869064 +) +(1,10414:6630773,27535242:25952256,404226,6290 +h1,10414:6630773,27535242:0,0,0 +g1,10414:7579210,27535242 +g1,10414:7895356,27535242 +g1,10414:8211502,27535242 +g1,10414:8527648,27535242 +g1,10414:8843794,27535242 +g1,10414:9159940,27535242 +g1,10414:9476086,27535242 +g1,10414:10108378,27535242 +g1,10414:10424524,27535242 +g1,10414:10740670,27535242 +g1,10414:11056816,27535242 +g1,10414:11372962,27535242 +g1,10414:12005254,27535242 +h1,10414:12321400,27535242:0,0,0 +k1,10414:32583028,27535242:20261628 +g1,10414:32583028,27535242 +) +(1,10414:6630773,28201420:25952256,404226,6290 +h1,10414:6630773,28201420:0,0,0 +g1,10414:7579210,28201420 +g1,10414:7895356,28201420 +g1,10414:8211502,28201420 +g1,10414:10108377,28201420 +g1,10414:12005252,28201420 +k1,10414:12005252,28201420:0 +h1,10414:13902126,28201420:0,0,0 +k1,10414:32583030,28201420:18680904 +g1,10414:32583030,28201420 +) +(1,10414:6630773,28867598:25952256,404226,76021 +h1,10414:6630773,28867598:0,0,0 +g1,10414:7579210,28867598 +g1,10414:8211502,28867598 +g1,10414:8527648,28867598 +g1,10414:8843794,28867598 +g1,10414:9159940,28867598 +g1,10414:9476086,28867598 +g1,10414:10108378,28867598 +g1,10414:10424524,28867598 +g1,10414:10740670,28867598 +g1,10414:11056816,28867598 +g1,10414:11372962,28867598 +g1,10414:12005254,28867598 +g1,10414:13585983,28867598 +k1,10414:13585983,28867598:0 +h1,10414:14850566,28867598:0,0,0 +k1,10414:32583030,28867598:17732464 +g1,10414:32583030,28867598 +) +(1,10414:6630773,29533776:25952256,404226,76021 +h1,10414:6630773,29533776:0,0,0 +g1,10414:7579210,29533776 +g1,10414:8211502,29533776 +g1,10414:8527648,29533776 +g1,10414:8843794,29533776 +g1,10414:9159940,29533776 +g1,10414:9476086,29533776 +g1,10414:10108378,29533776 +g1,10414:10424524,29533776 +g1,10414:10740670,29533776 +g1,10414:11056816,29533776 +g1,10414:11372962,29533776 +g1,10414:12005254,29533776 +g1,10414:13585983,29533776 +k1,10414:13585983,29533776:0 +h1,10414:14850566,29533776:0,0,0 +k1,10414:32583030,29533776:17732464 +g1,10414:32583030,29533776 +) +(1,10414:6630773,30199954:25952256,404226,76021 +h1,10414:6630773,30199954:0,0,0 +g1,10414:7579210,30199954 +g1,10414:8211502,30199954 +g1,10414:8527648,30199954 +g1,10414:8843794,30199954 +g1,10414:9159940,30199954 +g1,10414:9476086,30199954 +g1,10414:10108378,30199954 +g1,10414:10424524,30199954 +g1,10414:10740670,30199954 +g1,10414:11056816,30199954 +g1,10414:11372962,30199954 +g1,10414:12005254,30199954 +g1,10414:13585983,30199954 +k1,10414:13585983,30199954:0 +h1,10414:14850566,30199954:0,0,0 +k1,10414:32583030,30199954:17732464 +g1,10414:32583030,30199954 +) +(1,10414:6630773,30866132:25952256,404226,6290 +h1,10414:6630773,30866132:0,0,0 +g1,10414:7579210,30866132 +g1,10414:8211502,30866132 +g1,10414:9476085,30866132 +g1,10414:11056814,30866132 +g1,10414:11689106,30866132 +g1,10414:13269835,30866132 +h1,10414:14534418,30866132:0,0,0 +k1,10414:32583030,30866132:18048612 +g1,10414:32583030,30866132 +) +] +) +g1,10415:32583029,30872422 +g1,10415:6630773,30872422 +g1,10415:6630773,30872422 +g1,10415:32583029,30872422 +g1,10415:32583029,30872422 +) +h1,10415:6630773,31069030:0,0,0 +(1,10420:6630773,34400886:25952256,32768,229376 +(1,10420:6630773,34400886:0,32768,229376 +(1,10420:6630773,34400886:5505024,32768,229376 +r1,10420:12135797,34400886:5505024,262144,229376 +) +k1,10420:6630773,34400886:-5505024 +) +(1,10420:6630773,34400886:25952256,32768,0 +r1,10420:32583029,34400886:25952256,32768,0 +) +) +(1,10420:6630773,36005214:25952256,606339,151780 +(1,10420:6630773,36005214:1974731,582746,14155 +g1,10420:6630773,36005214 +g1,10420:8605504,36005214 +) +g1,10420:10655733,36005214 +k1,10420:32583028,36005214:19792132 +g1,10420:32583028,36005214 +) +(1,10423:6630773,37239918:25952256,513147,134348 +k1,10422:7965993,37239918:138533 +k1,10422:9410659,37239918:138533 +k1,10422:12042182,37239918:138533 +k1,10422:15367075,37239918:138533 +k1,10422:18140811,37239918:138533 +k1,10422:20440721,37239918:138533 +k1,10422:22314646,37239918:138532 +k1,10422:24145319,37239918:138533 +k1,10422:24943144,37239918:138533 +k1,10422:26100762,37239918:138533 +k1,10422:27522490,37239918:138533 +k1,10422:30893914,37239918:138533 +k1,10422:31563944,37239918:138533 +k1,10422:32583029,37239918:0 +) +(1,10423:6630773,38081406:25952256,513147,126483 +k1,10422:9560737,38081406:191214 +k1,10422:10844436,38081406:191214 +k1,10422:11694941,38081406:191213 +k1,10422:13673977,38081406:191214 +k1,10422:15246035,38081406:191214 +k1,10422:16142416,38081406:191214 +k1,10422:19177892,38081406:191213 +k1,10422:21537037,38081406:191214 +k1,10422:22084111,38081406:191214 +k1,10422:25039634,38081406:191214 +k1,10422:25890139,38081406:191213 +k1,10422:29985333,38081406:191214 +k1,10422:30862709,38081406:191214 +k1,10422:32583029,38081406:0 +) +(1,10423:6630773,38922894:25952256,513147,126483 +k1,10422:7907211,38922894:172156 +k1,10422:8827134,38922894:172157 +k1,10422:10512516,38922894:172156 +k1,10422:12978433,38922894:172157 +k1,10422:14429196,38922894:172156 +k1,10422:15995304,38922894:172157 +k1,10422:17601388,38922894:172156 +k1,10422:18188361,38922894:172130 +k1,10422:21559985,38922894:172156 +k1,10422:23407241,38922894:172156 +k1,10422:25054613,38922894:172157 +k1,10422:26736719,38922894:172156 +k1,10422:27521638,38922894:172157 +k1,10422:28712879,38922894:172156 +k1,10422:30248840,38922894:172157 +k1,10422:31080288,38922894:172156 +k1,10422:32583029,38922894:0 +) +(1,10423:6630773,39764382:25952256,513147,134348 +k1,10422:9668795,39764382:216697 +k1,10422:10501530,39764382:216697 +k1,10422:12169849,39764382:216697 +k1,10422:14013805,39764382:216697 +k1,10422:15788293,39764382:216697 +k1,10422:17999906,39764382:216697 +k1,10422:18875895,39764382:216697 +k1,10422:19880990,39764382:216697 +k1,10422:22186319,39764382:216697 +(1,10422:22393413,39764382:5254677,505283,134348 +) +k1,10422:28245656,39764382:216802 +k1,10422:30557539,39764382:216697 +k1,10422:31544939,39764382:216697 +k1,10422:32583029,39764382:0 +) +(1,10423:6630773,40605870:25952256,513147,134348 +k1,10422:8566253,40605870:215160 +k1,10422:9772972,40605870:215159 +k1,10422:12038754,40605870:215160 +k1,10422:12913205,40605870:215159 +k1,10422:14844753,40605870:215160 +k1,10422:18132240,40605870:215159 +k1,10422:19030285,40605870:215160 +k1,10422:21427138,40605870:215159 +k1,10422:22926804,40605870:215160 +k1,10422:24769222,40605870:215159 +k1,10422:26050653,40605870:215160 +k1,10422:26621672,40605870:215159 +k1,10422:28709851,40605870:215160 +k1,10422:32583029,40605870:0 +) +(1,10423:6630773,41447358:25952256,513147,134348 +k1,10422:8127682,41447358:161285 +k1,10422:9738623,41447358:161285 +(1,10422:9738623,41447358:0,452978,115847 +r1,10422:10448601,41447358:709978,568825,115847 +k1,10422:9738623,41447358:-709978 +) +(1,10422:9738623,41447358:709978,452978,115847 +k1,10422:9738623,41447358:3277 +h1,10422:10445324,41447358:0,411205,112570 +) +k1,10422:10783556,41447358:161285 +(1,10422:10783556,41447358:0,452978,122846 +r1,10422:12196957,41447358:1413401,575824,122846 +k1,10422:10783556,41447358:-1413401 +) +(1,10422:10783556,41447358:1413401,452978,122846 +k1,10422:10783556,41447358:3277 +h1,10422:12193680,41447358:0,411205,112570 +) +k1,10422:12531912,41447358:161285 +(1,10422:12531912,41447358:0,414482,122846 +r1,10422:13945313,41447358:1413401,537328,122846 +k1,10422:12531912,41447358:-1413401 +) +(1,10422:12531912,41447358:1413401,414482,122846 +k1,10422:12531912,41447358:3277 +h1,10422:13942036,41447358:0,411205,112570 +) +k1,10422:14280268,41447358:161285 +(1,10422:14280268,41447358:0,414482,115847 +r1,10422:15693669,41447358:1413401,530329,115847 +k1,10422:14280268,41447358:-1413401 +) +(1,10422:14280268,41447358:1413401,414482,115847 +k1,10422:14280268,41447358:3277 +h1,10422:15690392,41447358:0,411205,112570 +) +k1,10422:16028624,41447358:161285 +k1,10422:17682164,41447358:161285 +k1,10422:19315388,41447358:161285 +k1,10422:20970239,41447358:161285 +k1,10422:21817686,41447358:161285 +k1,10422:23205150,41447358:161285 +k1,10422:23897932,41447358:161285 +k1,10422:27149240,41447358:161285 +k1,10422:27996687,41447358:161285 +k1,10422:30498263,41447358:161285 +k1,10422:32227169,41447358:161285 +k1,10422:32583029,41447358:0 +) +(1,10423:6630773,42288846:25952256,513147,134348 +k1,10422:8882965,42288846:143243 +k1,10422:10293674,42288846:143243 +k1,10422:10792777,42288846:143243 +k1,10422:12274921,42288846:143243 +k1,10422:14976690,42288846:143243 +k1,10422:15475793,42288846:143243 +k1,10422:17463873,42288846:143242 +k1,10422:18266408,42288846:143243 +k1,10422:20095237,42288846:143243 +k1,10422:20851242,42288846:143243 +k1,10422:22879956,42288846:143243 +k1,10422:23379059,42288846:143243 +k1,10422:25919609,42288846:143243 +k1,10422:30900064,42288846:143243 +k1,10422:32583029,42288846:0 +) +(1,10423:6630773,43130334:25952256,513147,126483 +k1,10422:8720623,43130334:253531 +k1,10422:9601988,43130334:253530 +k1,10422:11480811,43130334:253531 +k1,10422:13403544,43130334:253531 +k1,10422:14848519,43130334:253530 +k1,10422:17541300,43130334:253531 +k1,10422:18786391,43130334:253531 +k1,10422:20526933,43130334:253530 +k1,10422:21852633,43130334:253531 +k1,10422:23419505,43130334:253530 +k1,10422:24359198,43130334:253531 +k1,10422:25383432,43130334:253531 +k1,10422:29225713,43130334:253530 +k1,10422:31816913,43130334:253531 +k1,10422:32583029,43130334:0 +) +(1,10423:6630773,43971822:25952256,513147,134348 +k1,10422:9161058,43971822:192616 +k1,10422:10545119,43971822:192616 +k1,10422:14574213,43971822:192616 +k1,10422:15714480,43971822:192616 +k1,10422:17615620,43971822:192616 +k1,10422:18491122,43971822:192617 +k1,10422:21016164,43971822:192616 +k1,10422:24189357,43971822:192616 +k1,10422:27004724,43971822:192616 +k1,10422:28684352,43971822:192616 +k1,10422:29563130,43971822:192616 +k1,10422:32583029,43971822:0 +) +(1,10423:6630773,44813310:25952256,505283,126483 +k1,10422:8006265,44813310:184047 +k1,10422:10912022,44813310:184047 +k1,10422:12292755,44813310:184046 +k1,10422:15982978,44813310:184047 +k1,10422:18802228,44813310:184047 +k1,10422:20671861,44813310:184047 +k1,10422:21471946,44813310:184047 +k1,10422:22675078,44813310:184047 +k1,10422:24249143,44813310:184046 +k1,10422:24964687,44813310:184047 +k1,10422:27435941,44813310:184047 +k1,10422:31821501,44813310:184047 +k1,10422:32583029,44813310:0 +) +(1,10423:6630773,45654798:25952256,513147,126483 +g1,10422:8898318,45654798 +g1,10422:9756839,45654798 +g1,10422:13289229,45654798 +k1,10423:32583029,45654798:17806788 +g1,10423:32583029,45654798 +) +] +(1,10425:32583029,45706769:0,0,0 +g1,10425:32583029,45706769 +) +) +] +(1,10425:6630773,47279633:25952256,0,0 +h1,10425:6630773,47279633:25952256,0,0 +) +] +h1,10425:4262630,4025873:0,0,0 +] +!26610 }196 -Input:1305:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1306:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1307:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1308:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1309:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1310:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1311:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1312:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {197 -[1,10479:4262630,47279633:28320399,43253760,0 -(1,10479:4262630,4025873:0,0,0 -[1,10479:-473657,4025873:25952256,0,0 -(1,10479:-473657,-710414:25952256,0,0 -h1,10479:-473657,-710414:0,0,0 -(1,10479:-473657,-710414:0,0,0 -(1,10479:-473657,-710414:0,0,0 -g1,10479:-473657,-710414 -(1,10479:-473657,-710414:65781,0,65781 -g1,10479:-407876,-710414 -[1,10479:-407876,-644633:0,0,0 +[1,10484:4262630,47279633:28320399,43253760,0 +(1,10484:4262630,4025873:0,0,0 +[1,10484:-473657,4025873:25952256,0,0 +(1,10484:-473657,-710414:25952256,0,0 +h1,10484:-473657,-710414:0,0,0 +(1,10484:-473657,-710414:0,0,0 +(1,10484:-473657,-710414:0,0,0 +g1,10484:-473657,-710414 +(1,10484:-473657,-710414:65781,0,65781 +g1,10484:-407876,-710414 +[1,10484:-407876,-644633:0,0,0 ] ) -k1,10479:-473657,-710414:-65781 +k1,10484:-473657,-710414:-65781 ) ) -k1,10479:25478599,-710414:25952256 -g1,10479:25478599,-710414 +k1,10484:25478599,-710414:25952256 +g1,10484:25478599,-710414 ) ] ) -[1,10479:6630773,47279633:25952256,43253760,0 -[1,10479:6630773,4812305:25952256,786432,0 -(1,10479:6630773,4812305:25952256,513147,134348 -(1,10479:6630773,4812305:25952256,513147,134348 -g1,10479:3078558,4812305 -[1,10479:3078558,4812305:0,0,0 -(1,10479:3078558,2439708:0,1703936,0 -k1,10479:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10479:2537886,2439708:1179648,16384,0 +[1,10484:6630773,47279633:25952256,43253760,0 +[1,10484:6630773,4812305:25952256,786432,0 +(1,10484:6630773,4812305:25952256,513147,134348 +(1,10484:6630773,4812305:25952256,513147,134348 +g1,10484:3078558,4812305 +[1,10484:3078558,4812305:0,0,0 +(1,10484:3078558,2439708:0,1703936,0 +k1,10484:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10484:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10479:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10484:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10479:3078558,4812305:0,0,0 -(1,10479:3078558,2439708:0,1703936,0 -g1,10479:29030814,2439708 -g1,10479:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10479:36151628,1915420:16384,1179648,0 +[1,10484:3078558,4812305:0,0,0 +(1,10484:3078558,2439708:0,1703936,0 +g1,10484:29030814,2439708 +g1,10484:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10484:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10479:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10484:37855564,2439708:1179648,16384,0 ) ) -k1,10479:3078556,2439708:-34777008 +k1,10484:3078556,2439708:-34777008 ) ] -[1,10479:3078558,4812305:0,0,0 -(1,10479:3078558,49800853:0,16384,2228224 -k1,10479:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10479:2537886,49800853:1179648,16384,0 +[1,10484:3078558,4812305:0,0,0 +(1,10484:3078558,49800853:0,16384,2228224 +k1,10484:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10484:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10479:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10484:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10479:3078558,4812305:0,0,0 -(1,10479:3078558,49800853:0,16384,2228224 -g1,10479:29030814,49800853 -g1,10479:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10479:36151628,51504789:16384,1179648,0 +[1,10484:3078558,4812305:0,0,0 +(1,10484:3078558,49800853:0,16384,2228224 +g1,10484:29030814,49800853 +g1,10484:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10484:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10479:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10484:37855564,49800853:1179648,16384,0 ) ) -k1,10479:3078556,49800853:-34777008 -) -] -g1,10479:6630773,4812305 -k1,10479:25241686,4812305:17415536 -g1,10479:26807341,4812305 -g1,10479:30339731,4812305 -g1,10479:31154998,4812305 -) -) -] -[1,10479:6630773,45706769:25952256,40108032,0 -(1,10479:6630773,45706769:25952256,40108032,0 -(1,10479:6630773,45706769:0,0,0 -g1,10479:6630773,45706769 -) -[1,10479:6630773,45706769:25952256,40108032,0 -v1,10420:6630773,6254097:0,393216,0 -(1,10424:6630773,6569193:25952256,708312,196608 -g1,10424:6630773,6569193 -g1,10424:6630773,6569193 -g1,10424:6434165,6569193 -(1,10424:6434165,6569193:0,708312,196608 -r1,10424:32779637,6569193:26345472,904920,196608 -k1,10424:6434165,6569193:-26345472 -) -(1,10424:6434165,6569193:26345472,708312,196608 -[1,10424:6630773,6569193:25952256,511704,0 -(1,10422:6630773,6461715:25952256,404226,107478 -(1,10421:6630773,6461715:0,0,0 -g1,10421:6630773,6461715 -g1,10421:6630773,6461715 -g1,10421:6303093,6461715 -(1,10421:6303093,6461715:0,0,0 -) -g1,10421:6630773,6461715 -) -g1,10422:8527647,6461715 -g1,10422:9159939,6461715 -g1,10422:12953687,6461715 -g1,10422:13585979,6461715 -h1,10422:14850562,6461715:0,0,0 -k1,10422:32583030,6461715:17732468 -g1,10422:32583030,6461715 -) -] -) -g1,10424:32583029,6569193 -g1,10424:6630773,6569193 -g1,10424:6630773,6569193 -g1,10424:32583029,6569193 -g1,10424:32583029,6569193 -) -h1,10424:6630773,6765801:0,0,0 -(1,10428:6630773,7963345:25952256,513147,134348 -h1,10427:6630773,7963345:983040,0,0 -k1,10427:9292447,7963345:257813 -k1,10427:10654542,7963345:257813 -k1,10427:12549445,7963345:257813 -k1,10427:14308032,7963345:257813 -k1,10427:16575834,7963345:257813 -k1,10427:17189507,7963345:257813 -k1,10427:19320339,7963345:257813 -k1,10427:19992936,7963345:257754 -k1,10427:22408850,7963345:257813 -k1,10427:24449898,7963345:257813 -k1,10427:27418280,7963345:257813 -k1,10427:30701890,7963345:257813 -k1,10427:32227169,7963345:257813 -k1,10427:32583029,7963345:0 -) -(1,10428:6630773,8804833:25952256,505283,134348 -k1,10427:8355520,8804833:161058 -k1,10427:9905940,8804833:161057 -k1,10427:10598495,8804833:161058 -k1,10427:12964840,8804833:161058 -k1,10427:15761101,8804833:161058 -k1,10427:17561213,8804833:161057 -k1,10427:20280797,8804833:161058 -k1,10427:23775016,8804833:161058 -k1,10427:24350879,8804833:161020 -k1,10427:26801764,8804833:161057 -k1,10427:29000992,8804833:161058 -k1,10427:29778088,8804833:161058 -k1,10427:32583029,8804833:0 -) -(1,10428:6630773,9646321:25952256,513147,126483 -k1,10427:8754598,9646321:238354 -k1,10427:9984513,9646321:238355 -k1,10427:12572988,9646321:238354 -k1,10427:14002787,9646321:238354 -k1,10427:17408497,9646321:238355 -k1,10427:22137378,9646321:238354 -k1,10427:26541200,9646321:238354 -k1,10427:28434338,9646321:238354 -k1,10427:29204190,9646321:238355 -k1,10427:30915138,9646321:238354 -k1,10428:32583029,9646321:0 -) -(1,10428:6630773,10487809:25952256,505283,126483 -k1,10427:8528597,10487809:166363 -k1,10427:11330163,10487809:166363 -k1,10427:12948804,10487809:166363 -k1,10427:14617908,10487809:166363 -k1,10427:16504591,10487809:166363 -k1,10427:17862399,10487809:166363 -k1,10427:19749082,10487809:166363 -k1,10427:20531483,10487809:166363 -k1,10427:21112656,10487809:166330 -k1,10427:23614067,10487809:166363 -k1,10427:24852599,10487809:166363 -k1,10427:26038047,10487809:166363 -k1,10427:31591469,10487809:166363 -k1,10427:32583029,10487809:0 -) -(1,10428:6630773,11329297:25952256,513147,7863 -k1,10428:32583030,11329297:23016244 -g1,10428:32583030,11329297 -) -(1,10430:6630773,12170785:25952256,513147,126483 -h1,10429:6630773,12170785:983040,0,0 -k1,10429:9396195,12170785:148569 -k1,10429:10360032,12170785:148569 -k1,10429:12228920,12170785:148568 -k1,10429:14734819,12170785:148569 -k1,10429:15499426,12170785:148569 -k1,10429:16062787,12170785:148518 -k1,10429:18699758,12170785:148569 -k1,10429:20406118,12170785:148569 -k1,10429:22648562,12170785:148569 -k1,10429:23816216,12170785:148569 -k1,10429:25345628,12170785:148568 -k1,10429:27061818,12170785:148569 -k1,10429:28229472,12170785:148569 -k1,10429:32583029,12170785:0 -) -(1,10430:6630773,13012273:25952256,513147,134348 -k1,10429:7575325,13012273:285260 -k1,10429:10432873,13012273:285260 -k1,10429:11909578,13012273:285260 -k1,10429:14762539,13012273:285260 -k1,10429:16066884,13012273:285260 -k1,10429:19685306,13012273:285261 -k1,10429:22260394,13012273:285260 -k1,10429:23737099,13012273:285260 -k1,10429:24681651,13012273:285260 -k1,10429:28000573,13012273:285260 -k1,10429:29304918,13012273:285260 -k1,10429:32583029,13012273:0 -) -(1,10430:6630773,13853761:25952256,513147,126483 -k1,10429:9979901,13853761:273523 -k1,10429:10912717,13853761:273524 -k1,10429:12205325,13853761:273523 -k1,10429:15241191,13853761:273523 -k1,10429:17373971,13853761:273524 -k1,10429:19322594,13853761:273523 -k1,10429:21883325,13853761:273524 -k1,10429:24786152,13853761:273523 -k1,10429:28453785,13853761:273523 -k1,10429:29386601,13853761:273524 -k1,10429:31821501,13853761:273523 -k1,10429:32583029,13853761:0 -) -(1,10430:6630773,14695249:25952256,505283,134348 -g1,10429:9501905,14695249 -g1,10429:11351331,14695249 -g1,10429:13905924,14695249 -k1,10430:32583029,14695249:17007248 -g1,10430:32583029,14695249 -) -(1,10432:6630773,15536737:25952256,513147,126483 -h1,10431:6630773,15536737:983040,0,0 -k1,10431:11016502,15536737:196668 -k1,10431:12385609,15536737:196668 -k1,10431:14174146,15536737:196667 -k1,10431:19757873,15536737:196668 -k1,10431:20613833,15536737:196668 -k1,10431:22530821,15536737:196668 -k1,10431:23719048,15536737:196667 -k1,10431:26699685,15536737:196668 -k1,10431:27582515,15536737:196668 -k1,10431:28194023,15536737:196665 -k1,10431:31966991,15536737:196668 -k1,10431:32583029,15536737:0 -) -(1,10432:6630773,16378225:25952256,505283,134348 -g1,10431:9740456,16378225 -g1,10431:12884872,16378225 -g1,10431:14275546,16378225 -k1,10432:32583029,16378225:15971125 -g1,10432:32583029,16378225 -) -(1,10433:6630773,18469485:25952256,555811,147783 -(1,10433:6630773,18469485:2450326,534184,12975 -g1,10433:6630773,18469485 -g1,10433:9081099,18469485 -) -k1,10433:32583029,18469485:20048118 -g1,10433:32583029,18469485 -) -(1,10437:6630773,19704189:25952256,513147,126483 -k1,10436:8228399,19704189:326228 -k1,10436:9489170,19704189:326228 -k1,10436:10474690,19704189:326228 -k1,10436:13877833,19704189:326228 -k1,10436:16502409,19704189:326228 -k1,10436:17480065,19704189:326228 -k1,10436:19448625,19704189:326228 -k1,10436:21495173,19704189:326228 -k1,10436:22488557,19704189:326228 -k1,10436:23229500,19704189:326100 -k1,10436:26581525,19704189:326228 -k1,10436:27439250,19704189:326228 -k1,10436:31966991,19704189:326228 -k1,10436:32583029,19704189:0 -) -(1,10437:6630773,20545677:25952256,505283,134348 -k1,10436:9373563,20545677:162638 -k1,10436:12655059,20545677:162639 -k1,10436:14198541,20545677:162638 -k1,10436:19417938,20545677:162639 -k1,10436:20112073,20545677:162638 -k1,10436:21787938,20545677:162639 -k1,10436:22566614,20545677:162638 -k1,10436:23748338,20545677:162639 -k1,10436:27118963,20545677:162638 -k1,10436:28473047,20545677:162639 -k1,10436:29654770,20545677:162638 -k1,10436:31207428,20545677:162639 -k1,10437:32583029,20545677:0 -) -(1,10437:6630773,21387165:25952256,505283,134348 -g1,10436:8414007,21387165 -g1,10436:12302913,21387165 -g1,10436:13263670,21387165 -g1,10436:16043051,21387165 -k1,10437:32583029,21387165:14393675 -g1,10437:32583029,21387165 -) -(1,10439:6630773,22228653:25952256,513147,134348 -h1,10438:6630773,22228653:983040,0,0 -k1,10438:8836765,22228653:269403 -k1,10438:10594491,22228653:269403 -k1,10438:12257846,22228653:269404 -k1,10438:12883109,22228653:269403 -k1,10438:14165043,22228653:269403 -k1,10438:17095863,22228653:269403 -k1,10438:18671400,22228653:269404 -k1,10438:21227354,22228653:269403 -k1,10438:23232150,22228653:269403 -k1,10438:26204258,22228653:269403 -k1,10438:28159248,22228653:269404 -k1,10438:29620096,22228653:269403 -k1,10438:32168186,22228653:269403 -k1,10439:32583029,22228653:0 -) -(1,10439:6630773,23070141:25952256,426639,126483 -k1,10439:32583030,23070141:23868212 -g1,10439:32583030,23070141 -) -v1,10441:6630773,24092375:0,393216,0 -(1,10448:6630773,26399714:25952256,2700555,196608 -g1,10448:6630773,26399714 -g1,10448:6630773,26399714 -g1,10448:6434165,26399714 -(1,10448:6434165,26399714:0,2700555,196608 -r1,10448:32779637,26399714:26345472,2897163,196608 -k1,10448:6434165,26399714:-26345472 -) -(1,10448:6434165,26399714:26345472,2700555,196608 -[1,10448:6630773,26399714:25952256,2503947,0 -(1,10443:6630773,24299993:25952256,404226,9436 -(1,10442:6630773,24299993:0,0,0 -g1,10442:6630773,24299993 -g1,10442:6630773,24299993 -g1,10442:6303093,24299993 -(1,10442:6303093,24299993:0,0,0 -) -g1,10442:6630773,24299993 -) -g1,10443:9159939,24299993 -g1,10443:10108377,24299993 -h1,10443:11372960,24299993:0,0,0 -k1,10443:32583028,24299993:21210068 -g1,10443:32583028,24299993 -) -(1,10444:6630773,24966171:25952256,404226,101187 -h1,10444:6630773,24966171:0,0,0 -g1,10444:9476084,24966171 -g1,10444:10424522,24966171 -k1,10444:10424522,24966171:0 -h1,10444:14534416,24966171:0,0,0 -k1,10444:32583028,24966171:18048612 -g1,10444:32583028,24966171 -) -(1,10445:6630773,25632349:25952256,404226,101187 -h1,10445:6630773,25632349:0,0,0 -g1,10445:9476084,25632349 -g1,10445:10424522,25632349 -k1,10445:10424522,25632349:0 -h1,10445:14534416,25632349:0,0,0 -k1,10445:32583028,25632349:18048612 -g1,10445:32583028,25632349 -) -(1,10446:6630773,26298527:25952256,404226,101187 -h1,10446:6630773,26298527:0,0,0 -g1,10446:10740667,26298527 -g1,10446:11372959,26298527 -g1,10446:13269833,26298527 -k1,10446:13269833,26298527:0 -h1,10446:14218270,26298527:0,0,0 -k1,10446:32583030,26298527:18364760 -g1,10446:32583030,26298527 -) -] -) -g1,10448:32583029,26399714 -g1,10448:6630773,26399714 -g1,10448:6630773,26399714 -g1,10448:32583029,26399714 -g1,10448:32583029,26399714 -) -h1,10448:6630773,26596322:0,0,0 -(1,10452:6630773,27793866:25952256,513147,134348 -h1,10451:6630773,27793866:983040,0,0 -g1,10451:9197162,27793866 -g1,10451:11131784,27793866 -g1,10451:13448481,27793866 -g1,10451:16343206,27793866 -g1,10451:17972431,27793866 -g1,10451:19370314,27793866 -g1,10451:21304936,27793866 -g1,10451:23782852,27793866 -g1,10451:24396924,27793866 -k1,10452:32583029,27793866:6102060 -g1,10452:32583029,27793866 -) -v1,10454:6630773,28816100:0,393216,0 -(1,10458:6630773,29124905:25952256,702021,196608 -g1,10458:6630773,29124905 -g1,10458:6630773,29124905 -g1,10458:6434165,29124905 -(1,10458:6434165,29124905:0,702021,196608 -r1,10458:32779637,29124905:26345472,898629,196608 -k1,10458:6434165,29124905:-26345472 -) -(1,10458:6434165,29124905:26345472,702021,196608 -[1,10458:6630773,29124905:25952256,505413,0 -(1,10456:6630773,29023718:25952256,404226,101187 -(1,10455:6630773,29023718:0,0,0 -g1,10455:6630773,29023718 -g1,10455:6630773,29023718 -g1,10455:6303093,29023718 -(1,10455:6303093,29023718:0,0,0 -) -g1,10455:6630773,29023718 -) -g1,10456:9476084,29023718 -g1,10456:10424522,29023718 -k1,10456:10424522,29023718:0 -h1,10456:16115145,29023718:0,0,0 -k1,10456:32583029,29023718:16467884 -g1,10456:32583029,29023718 -) -] -) -g1,10458:32583029,29124905 -g1,10458:6630773,29124905 -g1,10458:6630773,29124905 -g1,10458:32583029,29124905 -g1,10458:32583029,29124905 -) -h1,10458:6630773,29321513:0,0,0 -(1,10462:6630773,30519058:25952256,513147,134348 -h1,10461:6630773,30519058:983040,0,0 -g1,10461:10099593,30519058 -g1,10461:10984984,30519058 -g1,10461:11540073,30519058 -g1,10461:13129321,30519058 -g1,10461:15063943,30519058 -g1,10461:16282257,30519058 -g1,10461:19192055,30519058 -g1,10461:22137898,30519058 -g1,10461:23904748,30519058 -g1,10461:26684129,30519058 -k1,10462:32583029,30519058:2780043 -g1,10462:32583029,30519058 -) -v1,10464:6630773,31541292:0,393216,0 -(1,10468:6630773,31850097:25952256,702021,196608 -g1,10468:6630773,31850097 -g1,10468:6630773,31850097 -g1,10468:6434165,31850097 -(1,10468:6434165,31850097:0,702021,196608 -r1,10468:32779637,31850097:26345472,898629,196608 -k1,10468:6434165,31850097:-26345472 -) -(1,10468:6434165,31850097:26345472,702021,196608 -[1,10468:6630773,31850097:25952256,505413,0 -(1,10466:6630773,31748910:25952256,404226,101187 -(1,10465:6630773,31748910:0,0,0 -g1,10465:6630773,31748910 -g1,10465:6630773,31748910 -g1,10465:6303093,31748910 -(1,10465:6303093,31748910:0,0,0 -) -g1,10465:6630773,31748910 -) -g1,10466:9159939,31748910 -g1,10466:10424522,31748910 -g1,10466:12637542,31748910 -g1,10466:13902125,31748910 -g1,10466:15798999,31748910 -g1,10466:16747437,31748910 -h1,10466:19276602,31748910:0,0,0 -k1,10466:32583029,31748910:13306427 -g1,10466:32583029,31748910 -) -] -) -g1,10468:32583029,31850097 -g1,10468:6630773,31850097 -g1,10468:6630773,31850097 -g1,10468:32583029,31850097 -g1,10468:32583029,31850097 -) -h1,10468:6630773,32046705:0,0,0 -v1,10472:6630773,33600305:0,393216,0 -(1,10475:6630773,45090731:25952256,11883642,616038 -g1,10475:6630773,45090731 -(1,10475:6630773,45090731:25952256,11883642,616038 -(1,10475:6630773,45706769:25952256,12499680,0 -[1,10475:6630773,45706769:25952256,12499680,0 -(1,10475:6630773,45680555:25952256,12447252,0 -r1,10475:6656987,45680555:26214,12447252,0 -[1,10475:6656987,45680555:25899828,12447252,0 -(1,10475:6656987,45090731:25899828,11267604,0 -[1,10475:7246811,45090731:24720180,11267604,0 -(1,10473:7246811,34985012:24720180,1161885,196608 -(1,10472:7246811,34985012:0,1161885,196608 -r1,10475:8794447,34985012:1547636,1358493,196608 -k1,10472:7246811,34985012:-1547636 -) -(1,10472:7246811,34985012:1547636,1161885,196608 -) -k1,10472:8991144,34985012:196697 -k1,10472:10384527,34985012:196696 -(1,10472:10384527,34985012:0,435480,115847 -r1,10475:11446216,34985012:1061689,551327,115847 -k1,10472:10384527,34985012:-1061689 -) -(1,10472:10384527,34985012:1061689,435480,115847 -k1,10472:10384527,34985012:3277 -h1,10472:11442939,34985012:0,411205,112570 -) -k1,10472:11642913,34985012:196697 -k1,10472:13407231,34985012:196697 -k1,10472:16184080,34985012:196697 -k1,10472:19325963,34985012:196696 -k1,10472:21205625,34985012:196697 -k1,10472:22574761,34985012:196697 -k1,10472:25917841,34985012:196697 -k1,10472:27311224,34985012:196696 -k1,10472:29188264,34985012:196697 -k1,10472:31966991,34985012:0 -) -(1,10473:7246811,35826500:24720180,513147,126483 -k1,10472:8236608,35826500:228269 -k1,10472:9483962,35826500:228269 -k1,10472:10626459,35826500:228269 -k1,10472:13955236,35826500:228269 -k1,10472:15690178,35826500:228269 -k1,10472:18734529,35826500:228269 -k1,10472:20848269,35826500:228269 -k1,10472:22180820,35826500:228269 -k1,10472:23156855,35826500:228269 -k1,10472:24516931,35826500:228269 -k1,10472:25160014,35826500:228240 -k1,10472:29001938,35826500:228269 -k1,10472:29761704,35826500:228269 -k1,10472:31966991,35826500:0 -) -(1,10473:7246811,36667988:24720180,513147,134348 -k1,10472:8177473,36667988:244500 -k1,10472:9728105,36667988:244499 -k1,10472:13044933,36667988:244500 -k1,10472:13940860,36667988:244499 -k1,10472:15204445,36667988:244500 -k1,10472:16481792,36667988:244499 -k1,10472:19542374,36667988:244500 -k1,10472:21672344,36667988:244499 -k1,10472:23538860,36667988:244500 -k1,10472:24531125,36667988:244499 -k1,10472:25131485,36667988:244500 -k1,10472:28071481,36667988:244500 -k1,10472:31354229,36667988:244499 -k1,10472:31966991,36667988:0 -) -(1,10473:7246811,37509476:24720180,513147,134348 -k1,10472:8932528,37509476:190185 -k1,10472:10279424,37509476:190186 -k1,10472:13715607,37509476:190185 -k1,10472:18426467,37509476:190186 -k1,10472:19232690,37509476:190185 -k1,10472:20626117,37509476:190186 -k1,10472:26046730,37509476:190185 -k1,10472:27256001,37509476:190186 -k1,10472:30141682,37509476:190185 -k1,10472:30947906,37509476:190186 -k1,10472:31966991,37509476:0 -) -(1,10473:7246811,38350964:24720180,513147,134348 -k1,10472:8522293,38350964:242634 -k1,10472:10386944,38350964:242635 -k1,10472:12104793,38350964:242634 -k1,10472:12703288,38350964:242635 -k1,10472:15457917,38350964:242634 -k1,10472:18684405,38350964:242634 -k1,10472:19874691,38350964:242635 -k1,10472:21136410,38350964:242634 -k1,10472:22769063,38350964:242634 -k1,10472:23663126,38350964:242635 -k1,10472:25502217,38350964:242634 -k1,10472:28750988,38350964:242635 -k1,10472:29679784,38350964:242634 -k1,10472:31966991,38350964:0 -) -(1,10473:7246811,39192452:24720180,513147,134348 -k1,10472:9162529,39192452:228821 -k1,10472:12326053,39192452:228822 -k1,10472:13012971,39192452:228821 -k1,10472:13773290,39192452:228822 -k1,10472:16632071,39192452:228821 -k1,10472:17512320,39192452:228821 -k1,10472:19178347,39192452:228822 -k1,10472:21217928,39192452:228821 -k1,10472:24849378,39192452:228821 -k1,10472:25729628,39192452:228822 -k1,10472:26314309,39192452:228821 -k1,10472:29238627,39192452:228822 -k1,10472:30228976,39192452:228821 -k1,10472:31966991,39192452:0 -) -(1,10473:7246811,40033940:24720180,513147,134348 -g1,10472:8128925,40033940 -g1,10472:8979582,40033940 -g1,10472:10880781,40033940 -g1,10472:14691044,40033940 -g1,10472:16332720,40033940 -g1,10472:17551034,40033940 -g1,10472:19056396,40033940 -g1,10472:20412335,40033940 -g1,10472:22346957,40033940 -g1,10472:22902046,40033940 -g1,10472:24173444,40033940 -(1,10472:24380538,40033940:0,414482,115847 -r1,10475:24738804,40033940:358266,530329,115847 -k1,10472:24380538,40033940:-358266 -) -(1,10472:24380538,40033940:358266,414482,115847 -k1,10472:24380538,40033940:3277 -h1,10472:24735527,40033940:0,411205,112570 -) -g1,10472:25145127,40033940 -g1,10472:26030518,40033940 -k1,10473:31966991,40033940:2029217 -g1,10473:31966991,40033940 -) -(1,10475:7246811,40875428:24720180,513147,134348 -h1,10474:7246811,40875428:983040,0,0 -k1,10474:10204272,40875428:257378 -k1,10474:11895578,40875428:257378 -k1,10474:12567740,40875428:257319 -k1,10474:15850915,40875428:257378 -k1,10474:17254518,40875428:257378 -(1,10474:17254518,40875428:0,452978,115847 -r1,10475:20074767,40875428:2820249,568825,115847 -k1,10474:17254518,40875428:-2820249 -) -(1,10474:17254518,40875428:2820249,452978,115847 -k1,10474:17254518,40875428:3277 -h1,10474:20071490,40875428:0,411205,112570 -) -k1,10474:20332145,40875428:257378 -k1,10474:22064738,40875428:257378 -k1,10474:22677976,40875428:257378 -k1,10474:25919208,40875428:257378 -k1,10474:27461092,40875428:257378 -k1,10474:28249967,40875428:257378 -k1,10474:31019340,40875428:257378 -k1,10474:31966991,40875428:0 -) -(1,10475:7246811,41716916:24720180,513147,134348 -k1,10474:8535015,41716916:195719 -k1,10474:9346771,41716916:195718 -k1,10474:12487677,41716916:195719 -k1,10474:14403716,41716916:195719 -k1,10474:16334827,41716916:195718 -k1,10474:18970451,41716916:195719 -k1,10474:21593623,41716916:195718 -k1,10474:22448634,41716916:195719 -k1,10474:23663438,41716916:195719 -k1,10474:25669916,41716916:195718 -k1,10474:27545978,41716916:195719 -k1,10474:28393125,41716916:195719 -k1,10474:29607928,41716916:195718 -k1,10474:31109780,41716916:195719 -k1,10475:31966991,41716916:0 -) -(1,10475:7246811,42558404:24720180,505283,134348 -k1,10474:10054983,42558404:206393 -k1,10474:11950895,42558404:206394 -k1,10474:14189559,42558404:206393 -k1,10474:15889519,42558404:206394 -k1,10474:16782074,42558404:206393 -(1,10474:16782074,42558404:0,452978,122846 -r1,10475:19602323,42558404:2820249,575824,122846 -k1,10474:16782074,42558404:-2820249 -) -(1,10474:16782074,42558404:2820249,452978,122846 -k1,10474:16782074,42558404:3277 -h1,10474:19599046,42558404:0,411205,112570 -) -k1,10474:19808717,42558404:206394 -k1,10474:21147572,42558404:206393 -k1,10474:22593907,42558404:206394 -k1,10474:23428135,42558404:206393 -k1,10474:25128095,42558404:206394 -k1,10474:27031870,42558404:206393 -k1,10474:28106616,42558404:206394 -k1,10474:29417291,42558404:206393 -k1,10474:30716170,42558404:206394 -(1,10474:30716170,42558404:0,414482,115847 -r1,10475:31074436,42558404:358266,530329,115847 -k1,10474:30716170,42558404:-358266 -) -(1,10474:30716170,42558404:358266,414482,115847 -k1,10474:30716170,42558404:3277 -h1,10474:31071159,42558404:0,411205,112570 -) -k1,10474:31280829,42558404:206393 -k1,10474:31966991,42558404:0 -) -(1,10475:7246811,43399892:24720180,513147,134348 -k1,10474:7844226,43399892:241555 -k1,10474:11819367,43399892:241555 -k1,10474:13252366,43399892:241554 -k1,10474:14931126,43399892:241555 -k1,10474:15630778,43399892:241555 -k1,10474:16558495,43399892:241555 -k1,10474:17570752,43399892:241554 -k1,10474:21058305,43399892:241555 -k1,10474:22156416,43399892:241555 -k1,10474:26524773,43399892:241555 -k1,10474:28727164,43399892:241554 -k1,10474:29324579,43399892:241555 -k1,10474:31966991,43399892:0 -) -(1,10475:7246811,44241380:24720180,513147,134348 -k1,10474:10170318,44241380:228011 -k1,10474:11049756,44241380:228010 -k1,10474:13518443,44241380:228011 -k1,10474:14765538,44241380:228010 -k1,10474:16732875,44241380:228011 -k1,10474:17620178,44241380:228011 -k1,10474:18867273,44241380:228010 -k1,10474:21223893,44241380:228011 -k1,10474:25062937,44241380:228010 -k1,10474:25906986,44241380:228011 -k1,10474:27154081,44241380:228010 -k1,10474:30077588,44241380:228011 -k1,10475:31966991,44241380:0 -) -(1,10475:7246811,45082868:24720180,426639,7863 -k1,10475:31966991,45082868:23239066 -g1,10475:31966991,45082868 -) -] -) -] -r1,10475:32583029,45680555:26214,12447252,0 -) -] -) -) -g1,10475:32583029,45090731 -) -h1,10475:6630773,45706769:0,0,0 -] -(1,10479:32583029,45706769:0,0,0 -g1,10479:32583029,45706769 -) -) -] -(1,10479:6630773,47279633:25952256,0,0 -h1,10479:6630773,47279633:25952256,0,0 -) -] -h1,10479:4262630,4025873:0,0,0 -] -!23757 +k1,10484:3078556,49800853:-34777008 +) +] +g1,10484:6630773,4812305 +k1,10484:25241686,4812305:17415536 +g1,10484:26807341,4812305 +g1,10484:30339731,4812305 +g1,10484:31154998,4812305 +) +) +] +[1,10484:6630773,45706769:25952256,40108032,0 +(1,10484:6630773,45706769:25952256,40108032,0 +(1,10484:6630773,45706769:0,0,0 +g1,10484:6630773,45706769 +) +[1,10484:6630773,45706769:25952256,40108032,0 +v1,10425:6630773,6254097:0,393216,0 +(1,10429:6630773,6569193:25952256,708312,196608 +g1,10429:6630773,6569193 +g1,10429:6630773,6569193 +g1,10429:6434165,6569193 +(1,10429:6434165,6569193:0,708312,196608 +r1,10429:32779637,6569193:26345472,904920,196608 +k1,10429:6434165,6569193:-26345472 +) +(1,10429:6434165,6569193:26345472,708312,196608 +[1,10429:6630773,6569193:25952256,511704,0 +(1,10427:6630773,6461715:25952256,404226,107478 +(1,10426:6630773,6461715:0,0,0 +g1,10426:6630773,6461715 +g1,10426:6630773,6461715 +g1,10426:6303093,6461715 +(1,10426:6303093,6461715:0,0,0 +) +g1,10426:6630773,6461715 +) +g1,10427:8527647,6461715 +g1,10427:9159939,6461715 +g1,10427:12953687,6461715 +g1,10427:13585979,6461715 +h1,10427:14850562,6461715:0,0,0 +k1,10427:32583030,6461715:17732468 +g1,10427:32583030,6461715 +) +] +) +g1,10429:32583029,6569193 +g1,10429:6630773,6569193 +g1,10429:6630773,6569193 +g1,10429:32583029,6569193 +g1,10429:32583029,6569193 +) +h1,10429:6630773,6765801:0,0,0 +(1,10433:6630773,7963345:25952256,513147,134348 +h1,10432:6630773,7963345:983040,0,0 +k1,10432:9292447,7963345:257813 +k1,10432:10654542,7963345:257813 +k1,10432:12549445,7963345:257813 +k1,10432:14308032,7963345:257813 +k1,10432:16575834,7963345:257813 +k1,10432:17189507,7963345:257813 +k1,10432:19320339,7963345:257813 +k1,10432:19992936,7963345:257754 +k1,10432:22408850,7963345:257813 +k1,10432:24449898,7963345:257813 +k1,10432:27418280,7963345:257813 +k1,10432:30701890,7963345:257813 +k1,10432:32227169,7963345:257813 +k1,10432:32583029,7963345:0 +) +(1,10433:6630773,8804833:25952256,505283,134348 +k1,10432:8355520,8804833:161058 +k1,10432:9905940,8804833:161057 +k1,10432:10598495,8804833:161058 +k1,10432:12964840,8804833:161058 +k1,10432:15761101,8804833:161058 +k1,10432:17561213,8804833:161057 +k1,10432:20280797,8804833:161058 +k1,10432:23775016,8804833:161058 +k1,10432:24350879,8804833:161020 +k1,10432:26801764,8804833:161057 +k1,10432:29000992,8804833:161058 +k1,10432:29778088,8804833:161058 +k1,10432:32583029,8804833:0 +) +(1,10433:6630773,9646321:25952256,513147,126483 +k1,10432:8725762,9646321:209518 +k1,10432:9926841,9646321:209519 +k1,10432:12486480,9646321:209518 +k1,10432:13887444,9646321:209519 +k1,10432:17264317,9646321:209518 +k1,10432:21964362,9646321:209518 +k1,10432:26339349,9646321:209519 +k1,10432:28203651,9646321:209518 +k1,10432:28944667,9646321:209519 +k1,10432:30626779,9646321:209518 +k1,10433:32583029,9646321:0 +) +(1,10433:6630773,10487809:25952256,505283,126483 +k1,10432:8262419,10487809:188543 +k1,10432:11086164,10487809:188542 +k1,10432:12726985,10487809:188543 +k1,10432:14418269,10487809:188543 +k1,10432:16327131,10487809:188542 +k1,10432:17707119,10487809:188543 +k1,10432:19615982,10487809:188543 +k1,10432:20420562,10487809:188542 +k1,10432:21023937,10487809:188532 +k1,10432:23547528,10487809:188543 +k1,10432:24808240,10487809:188543 +k1,10432:26015867,10487809:188542 +k1,10432:31591469,10487809:188543 +k1,10432:32583029,10487809:0 +) +(1,10433:6630773,11329297:25952256,513147,7863 +k1,10433:32583030,11329297:23016244 +g1,10433:32583030,11329297 +) +(1,10435:6630773,12170785:25952256,513147,126483 +h1,10434:6630773,12170785:983040,0,0 +k1,10434:9396195,12170785:148569 +k1,10434:10360032,12170785:148569 +k1,10434:12228920,12170785:148568 +k1,10434:14734819,12170785:148569 +k1,10434:15499426,12170785:148569 +k1,10434:16062787,12170785:148518 +k1,10434:18699758,12170785:148569 +k1,10434:20406118,12170785:148569 +k1,10434:22648562,12170785:148569 +k1,10434:23816216,12170785:148569 +k1,10434:25345628,12170785:148568 +k1,10434:27061818,12170785:148569 +k1,10434:28229472,12170785:148569 +k1,10434:32583029,12170785:0 +) +(1,10435:6630773,13012273:25952256,513147,134348 +k1,10434:7575325,13012273:285260 +k1,10434:10432873,13012273:285260 +k1,10434:11909578,13012273:285260 +k1,10434:14762539,13012273:285260 +k1,10434:16066884,13012273:285260 +k1,10434:19685306,13012273:285261 +k1,10434:22260394,13012273:285260 +k1,10434:23737099,13012273:285260 +k1,10434:24681651,13012273:285260 +k1,10434:28000573,13012273:285260 +k1,10434:29304918,13012273:285260 +k1,10434:32583029,13012273:0 +) +(1,10435:6630773,13853761:25952256,513147,126483 +k1,10434:9979901,13853761:273523 +k1,10434:10912717,13853761:273524 +k1,10434:12205325,13853761:273523 +k1,10434:15241191,13853761:273523 +k1,10434:17373971,13853761:273524 +k1,10434:19322594,13853761:273523 +k1,10434:21883325,13853761:273524 +k1,10434:24786152,13853761:273523 +k1,10434:28453785,13853761:273523 +k1,10434:29386601,13853761:273524 +k1,10434:31821501,13853761:273523 +k1,10434:32583029,13853761:0 +) +(1,10435:6630773,14695249:25952256,505283,134348 +g1,10434:9501905,14695249 +g1,10434:11351331,14695249 +g1,10434:13905924,14695249 +k1,10435:32583029,14695249:17007248 +g1,10435:32583029,14695249 +) +(1,10437:6630773,15536737:25952256,513147,126483 +h1,10436:6630773,15536737:983040,0,0 +k1,10436:11016502,15536737:196668 +k1,10436:12385609,15536737:196668 +k1,10436:14174146,15536737:196667 +k1,10436:19757873,15536737:196668 +k1,10436:20613833,15536737:196668 +k1,10436:22530821,15536737:196668 +k1,10436:23719048,15536737:196667 +k1,10436:26699685,15536737:196668 +k1,10436:27582515,15536737:196668 +k1,10436:28194023,15536737:196665 +k1,10436:31966991,15536737:196668 +k1,10436:32583029,15536737:0 +) +(1,10437:6630773,16378225:25952256,505283,134348 +g1,10436:9740456,16378225 +g1,10436:12884872,16378225 +g1,10436:14275546,16378225 +k1,10437:32583029,16378225:15971125 +g1,10437:32583029,16378225 +) +(1,10438:6630773,18469485:25952256,555811,147783 +(1,10438:6630773,18469485:2450326,534184,12975 +g1,10438:6630773,18469485 +g1,10438:9081099,18469485 +) +k1,10438:32583029,18469485:20048118 +g1,10438:32583029,18469485 +) +(1,10442:6630773,19704189:25952256,513147,126483 +k1,10441:8082537,19704189:180366 +k1,10441:9197446,19704189:180366 +k1,10441:10037104,19704189:180366 +k1,10441:13294384,19704189:180365 +k1,10441:15773098,19704189:180366 +k1,10441:16604892,19704189:180366 +k1,10441:18427590,19704189:180366 +k1,10441:20328276,19704189:180366 +k1,10441:21175798,19704189:180366 +k1,10441:21770988,19704189:180347 +k1,10441:24977150,19704189:180365 +k1,10441:25689013,19704189:180366 +k1,10441:30070892,19704189:180366 +k1,10441:30867296,19704189:180366 +k1,10442:32583029,19704189:0 +) +(1,10442:6630773,20545677:25952256,505283,134348 +k1,10441:7881801,20545677:173616 +k1,10441:11174273,20545677:173615 +k1,10441:12728733,20545677:173616 +k1,10441:17959107,20545677:173616 +k1,10441:18664220,20545677:173616 +k1,10441:20351061,20545677:173615 +k1,10441:21140715,20545677:173616 +k1,10441:22333416,20545677:173616 +k1,10441:25715019,20545677:173616 +k1,10441:27080079,20545677:173615 +k1,10441:28272780,20545677:173616 +k1,10441:29836415,20545677:173616 +k1,10441:32583029,20545677:0 +) +(1,10442:6630773,21387165:25952256,505283,134348 +g1,10441:10519679,21387165 +g1,10441:11480436,21387165 +g1,10441:14259817,21387165 +k1,10442:32583029,21387165:16176909 +g1,10442:32583029,21387165 +) +(1,10444:6630773,22228653:25952256,513147,134348 +h1,10443:6630773,22228653:983040,0,0 +k1,10443:8836765,22228653:269403 +k1,10443:10594491,22228653:269403 +k1,10443:12257846,22228653:269404 +k1,10443:12883109,22228653:269403 +k1,10443:14165043,22228653:269403 +k1,10443:17095863,22228653:269403 +k1,10443:18671400,22228653:269404 +k1,10443:21227354,22228653:269403 +k1,10443:23232150,22228653:269403 +k1,10443:26204258,22228653:269403 +k1,10443:28159248,22228653:269404 +k1,10443:29620096,22228653:269403 +k1,10443:32168186,22228653:269403 +k1,10444:32583029,22228653:0 +) +(1,10444:6630773,23070141:25952256,426639,126483 +k1,10444:32583030,23070141:23868212 +g1,10444:32583030,23070141 +) +v1,10446:6630773,24092375:0,393216,0 +(1,10453:6630773,26399714:25952256,2700555,196608 +g1,10453:6630773,26399714 +g1,10453:6630773,26399714 +g1,10453:6434165,26399714 +(1,10453:6434165,26399714:0,2700555,196608 +r1,10453:32779637,26399714:26345472,2897163,196608 +k1,10453:6434165,26399714:-26345472 +) +(1,10453:6434165,26399714:26345472,2700555,196608 +[1,10453:6630773,26399714:25952256,2503947,0 +(1,10448:6630773,24299993:25952256,404226,9436 +(1,10447:6630773,24299993:0,0,0 +g1,10447:6630773,24299993 +g1,10447:6630773,24299993 +g1,10447:6303093,24299993 +(1,10447:6303093,24299993:0,0,0 +) +g1,10447:6630773,24299993 +) +g1,10448:9159939,24299993 +g1,10448:10108377,24299993 +h1,10448:11372960,24299993:0,0,0 +k1,10448:32583028,24299993:21210068 +g1,10448:32583028,24299993 +) +(1,10449:6630773,24966171:25952256,404226,101187 +h1,10449:6630773,24966171:0,0,0 +g1,10449:9476084,24966171 +g1,10449:10424522,24966171 +k1,10449:10424522,24966171:0 +h1,10449:14534416,24966171:0,0,0 +k1,10449:32583028,24966171:18048612 +g1,10449:32583028,24966171 +) +(1,10450:6630773,25632349:25952256,404226,101187 +h1,10450:6630773,25632349:0,0,0 +g1,10450:9476084,25632349 +g1,10450:10424522,25632349 +k1,10450:10424522,25632349:0 +h1,10450:14534416,25632349:0,0,0 +k1,10450:32583028,25632349:18048612 +g1,10450:32583028,25632349 +) +(1,10451:6630773,26298527:25952256,404226,101187 +h1,10451:6630773,26298527:0,0,0 +g1,10451:10740667,26298527 +g1,10451:11372959,26298527 +g1,10451:13269833,26298527 +k1,10451:13269833,26298527:0 +h1,10451:14218270,26298527:0,0,0 +k1,10451:32583030,26298527:18364760 +g1,10451:32583030,26298527 +) +] +) +g1,10453:32583029,26399714 +g1,10453:6630773,26399714 +g1,10453:6630773,26399714 +g1,10453:32583029,26399714 +g1,10453:32583029,26399714 +) +h1,10453:6630773,26596322:0,0,0 +(1,10457:6630773,27793866:25952256,513147,134348 +h1,10456:6630773,27793866:983040,0,0 +g1,10456:9197162,27793866 +g1,10456:11131784,27793866 +g1,10456:13448481,27793866 +g1,10456:16343206,27793866 +g1,10456:17972431,27793866 +g1,10456:19370314,27793866 +g1,10456:21304936,27793866 +g1,10456:23782852,27793866 +g1,10456:24396924,27793866 +k1,10457:32583029,27793866:6102060 +g1,10457:32583029,27793866 +) +v1,10459:6630773,28816100:0,393216,0 +(1,10463:6630773,29124905:25952256,702021,196608 +g1,10463:6630773,29124905 +g1,10463:6630773,29124905 +g1,10463:6434165,29124905 +(1,10463:6434165,29124905:0,702021,196608 +r1,10463:32779637,29124905:26345472,898629,196608 +k1,10463:6434165,29124905:-26345472 +) +(1,10463:6434165,29124905:26345472,702021,196608 +[1,10463:6630773,29124905:25952256,505413,0 +(1,10461:6630773,29023718:25952256,404226,101187 +(1,10460:6630773,29023718:0,0,0 +g1,10460:6630773,29023718 +g1,10460:6630773,29023718 +g1,10460:6303093,29023718 +(1,10460:6303093,29023718:0,0,0 +) +g1,10460:6630773,29023718 +) +g1,10461:9476084,29023718 +g1,10461:10424522,29023718 +k1,10461:10424522,29023718:0 +h1,10461:16115145,29023718:0,0,0 +k1,10461:32583029,29023718:16467884 +g1,10461:32583029,29023718 +) +] +) +g1,10463:32583029,29124905 +g1,10463:6630773,29124905 +g1,10463:6630773,29124905 +g1,10463:32583029,29124905 +g1,10463:32583029,29124905 +) +h1,10463:6630773,29321513:0,0,0 +(1,10467:6630773,30519058:25952256,513147,134348 +h1,10466:6630773,30519058:983040,0,0 +g1,10466:10099593,30519058 +g1,10466:10984984,30519058 +g1,10466:11540073,30519058 +g1,10466:13129321,30519058 +g1,10466:15063943,30519058 +g1,10466:16282257,30519058 +g1,10466:19192055,30519058 +g1,10466:22137898,30519058 +g1,10466:23904748,30519058 +g1,10466:26684129,30519058 +k1,10467:32583029,30519058:2780043 +g1,10467:32583029,30519058 +) +v1,10469:6630773,31541292:0,393216,0 +(1,10473:6630773,31850097:25952256,702021,196608 +g1,10473:6630773,31850097 +g1,10473:6630773,31850097 +g1,10473:6434165,31850097 +(1,10473:6434165,31850097:0,702021,196608 +r1,10473:32779637,31850097:26345472,898629,196608 +k1,10473:6434165,31850097:-26345472 +) +(1,10473:6434165,31850097:26345472,702021,196608 +[1,10473:6630773,31850097:25952256,505413,0 +(1,10471:6630773,31748910:25952256,404226,101187 +(1,10470:6630773,31748910:0,0,0 +g1,10470:6630773,31748910 +g1,10470:6630773,31748910 +g1,10470:6303093,31748910 +(1,10470:6303093,31748910:0,0,0 +) +g1,10470:6630773,31748910 +) +g1,10471:9159939,31748910 +g1,10471:10424522,31748910 +g1,10471:12637542,31748910 +g1,10471:13902125,31748910 +g1,10471:15798999,31748910 +g1,10471:16747437,31748910 +h1,10471:19276602,31748910:0,0,0 +k1,10471:32583029,31748910:13306427 +g1,10471:32583029,31748910 +) +] +) +g1,10473:32583029,31850097 +g1,10473:6630773,31850097 +g1,10473:6630773,31850097 +g1,10473:32583029,31850097 +g1,10473:32583029,31850097 +) +h1,10473:6630773,32046705:0,0,0 +v1,10477:6630773,33600305:0,393216,0 +(1,10480:6630773,45090731:25952256,11883642,616038 +g1,10480:6630773,45090731 +(1,10480:6630773,45090731:25952256,11883642,616038 +(1,10480:6630773,45706769:25952256,12499680,0 +[1,10480:6630773,45706769:25952256,12499680,0 +(1,10480:6630773,45680555:25952256,12447252,0 +r1,10480:6656987,45680555:26214,12447252,0 +[1,10480:6656987,45680555:25899828,12447252,0 +(1,10480:6656987,45090731:25899828,11267604,0 +[1,10480:7246811,45090731:24720180,11267604,0 +(1,10478:7246811,34985012:24720180,1161885,196608 +(1,10477:7246811,34985012:0,1161885,196608 +r1,10480:8794447,34985012:1547636,1358493,196608 +k1,10477:7246811,34985012:-1547636 +) +(1,10477:7246811,34985012:1547636,1161885,196608 +) +k1,10477:8991144,34985012:196697 +k1,10477:10384527,34985012:196696 +(1,10477:10384527,34985012:0,435480,115847 +r1,10480:11446216,34985012:1061689,551327,115847 +k1,10477:10384527,34985012:-1061689 +) +(1,10477:10384527,34985012:1061689,435480,115847 +k1,10477:10384527,34985012:3277 +h1,10477:11442939,34985012:0,411205,112570 +) +k1,10477:11642913,34985012:196697 +k1,10477:13407231,34985012:196697 +k1,10477:16184080,34985012:196697 +k1,10477:19325963,34985012:196696 +k1,10477:21205625,34985012:196697 +k1,10477:22574761,34985012:196697 +k1,10477:25917841,34985012:196697 +k1,10477:27311224,34985012:196696 +k1,10477:29188264,34985012:196697 +k1,10477:31966991,34985012:0 +) +(1,10478:7246811,35826500:24720180,513147,126483 +k1,10477:8236608,35826500:228269 +k1,10477:9483962,35826500:228269 +k1,10477:10626459,35826500:228269 +k1,10477:13955236,35826500:228269 +k1,10477:15690178,35826500:228269 +k1,10477:18734529,35826500:228269 +k1,10477:20848269,35826500:228269 +k1,10477:22180820,35826500:228269 +k1,10477:23156855,35826500:228269 +k1,10477:24516931,35826500:228269 +k1,10477:25160014,35826500:228240 +k1,10477:29001938,35826500:228269 +k1,10477:29761704,35826500:228269 +k1,10477:31966991,35826500:0 +) +(1,10478:7246811,36667988:24720180,513147,134348 +k1,10477:8177473,36667988:244500 +k1,10477:9728105,36667988:244499 +k1,10477:13044933,36667988:244500 +k1,10477:13940860,36667988:244499 +k1,10477:15204445,36667988:244500 +k1,10477:16481792,36667988:244499 +k1,10477:19542374,36667988:244500 +k1,10477:21672344,36667988:244499 +k1,10477:23538860,36667988:244500 +k1,10477:24531125,36667988:244499 +k1,10477:25131485,36667988:244500 +k1,10477:28071481,36667988:244500 +k1,10477:31354229,36667988:244499 +k1,10477:31966991,36667988:0 +) +(1,10478:7246811,37509476:24720180,513147,134348 +k1,10477:8932528,37509476:190185 +k1,10477:10279424,37509476:190186 +k1,10477:13715607,37509476:190185 +k1,10477:18426467,37509476:190186 +k1,10477:19232690,37509476:190185 +k1,10477:20626117,37509476:190186 +k1,10477:26046730,37509476:190185 +k1,10477:27256001,37509476:190186 +k1,10477:30141682,37509476:190185 +k1,10477:30947906,37509476:190186 +k1,10477:31966991,37509476:0 +) +(1,10478:7246811,38350964:24720180,513147,134348 +k1,10477:8522293,38350964:242634 +k1,10477:10386944,38350964:242635 +k1,10477:12104793,38350964:242634 +k1,10477:12703288,38350964:242635 +k1,10477:15457917,38350964:242634 +k1,10477:18684405,38350964:242634 +k1,10477:19874691,38350964:242635 +k1,10477:21136410,38350964:242634 +k1,10477:22769063,38350964:242634 +k1,10477:23663126,38350964:242635 +k1,10477:25502217,38350964:242634 +k1,10477:28750988,38350964:242635 +k1,10477:29679784,38350964:242634 +k1,10477:31966991,38350964:0 +) +(1,10478:7246811,39192452:24720180,513147,134348 +k1,10477:9162529,39192452:228821 +k1,10477:12326053,39192452:228822 +k1,10477:13012971,39192452:228821 +k1,10477:13773290,39192452:228822 +k1,10477:16632071,39192452:228821 +k1,10477:17512320,39192452:228821 +k1,10477:19178347,39192452:228822 +k1,10477:21217928,39192452:228821 +k1,10477:24849378,39192452:228821 +k1,10477:25729628,39192452:228822 +k1,10477:26314309,39192452:228821 +k1,10477:29238627,39192452:228822 +k1,10477:30228976,39192452:228821 +k1,10477:31966991,39192452:0 +) +(1,10478:7246811,40033940:24720180,513147,134348 +g1,10477:8128925,40033940 +g1,10477:8979582,40033940 +g1,10477:10880781,40033940 +g1,10477:14691044,40033940 +g1,10477:16332720,40033940 +g1,10477:17551034,40033940 +g1,10477:19056396,40033940 +g1,10477:20412335,40033940 +g1,10477:22346957,40033940 +g1,10477:22902046,40033940 +g1,10477:24173444,40033940 +(1,10477:24380538,40033940:0,414482,115847 +r1,10480:24738804,40033940:358266,530329,115847 +k1,10477:24380538,40033940:-358266 +) +(1,10477:24380538,40033940:358266,414482,115847 +k1,10477:24380538,40033940:3277 +h1,10477:24735527,40033940:0,411205,112570 +) +g1,10477:25145127,40033940 +g1,10477:26030518,40033940 +k1,10478:31966991,40033940:2029217 +g1,10478:31966991,40033940 +) +(1,10480:7246811,40875428:24720180,513147,134348 +h1,10479:7246811,40875428:983040,0,0 +k1,10479:10204272,40875428:257378 +k1,10479:11895578,40875428:257378 +k1,10479:12567740,40875428:257319 +k1,10479:15850915,40875428:257378 +k1,10479:17254518,40875428:257378 +(1,10479:17254518,40875428:0,452978,115847 +r1,10480:20074767,40875428:2820249,568825,115847 +k1,10479:17254518,40875428:-2820249 +) +(1,10479:17254518,40875428:2820249,452978,115847 +k1,10479:17254518,40875428:3277 +h1,10479:20071490,40875428:0,411205,112570 +) +k1,10479:20332145,40875428:257378 +k1,10479:22064738,40875428:257378 +k1,10479:22677976,40875428:257378 +k1,10479:25919208,40875428:257378 +k1,10479:27461092,40875428:257378 +k1,10479:28249967,40875428:257378 +k1,10479:31019340,40875428:257378 +k1,10479:31966991,40875428:0 +) +(1,10480:7246811,41716916:24720180,513147,134348 +k1,10479:8535015,41716916:195719 +k1,10479:9346771,41716916:195718 +k1,10479:12487677,41716916:195719 +k1,10479:14403716,41716916:195719 +k1,10479:16334827,41716916:195718 +k1,10479:18970451,41716916:195719 +k1,10479:21593623,41716916:195718 +k1,10479:22448634,41716916:195719 +k1,10479:23663438,41716916:195719 +k1,10479:25669916,41716916:195718 +k1,10479:27545978,41716916:195719 +k1,10479:28393125,41716916:195719 +k1,10479:29607928,41716916:195718 +k1,10479:31109780,41716916:195719 +k1,10480:31966991,41716916:0 +) +(1,10480:7246811,42558404:24720180,505283,134348 +k1,10479:10054983,42558404:206393 +k1,10479:11950895,42558404:206394 +k1,10479:14189559,42558404:206393 +k1,10479:15889519,42558404:206394 +k1,10479:16782074,42558404:206393 +(1,10479:16782074,42558404:0,452978,122846 +r1,10480:19602323,42558404:2820249,575824,122846 +k1,10479:16782074,42558404:-2820249 +) +(1,10479:16782074,42558404:2820249,452978,122846 +k1,10479:16782074,42558404:3277 +h1,10479:19599046,42558404:0,411205,112570 +) +k1,10479:19808717,42558404:206394 +k1,10479:21147572,42558404:206393 +k1,10479:22593907,42558404:206394 +k1,10479:23428135,42558404:206393 +k1,10479:25128095,42558404:206394 +k1,10479:27031870,42558404:206393 +k1,10479:28106616,42558404:206394 +k1,10479:29417291,42558404:206393 +k1,10479:30716170,42558404:206394 +(1,10479:30716170,42558404:0,414482,115847 +r1,10480:31074436,42558404:358266,530329,115847 +k1,10479:30716170,42558404:-358266 +) +(1,10479:30716170,42558404:358266,414482,115847 +k1,10479:30716170,42558404:3277 +h1,10479:31071159,42558404:0,411205,112570 +) +k1,10479:31280829,42558404:206393 +k1,10479:31966991,42558404:0 +) +(1,10480:7246811,43399892:24720180,513147,134348 +k1,10479:7844226,43399892:241555 +k1,10479:11819367,43399892:241555 +k1,10479:13252366,43399892:241554 +k1,10479:14931126,43399892:241555 +k1,10479:15630778,43399892:241555 +k1,10479:16558495,43399892:241555 +k1,10479:17570752,43399892:241554 +k1,10479:21058305,43399892:241555 +k1,10479:22156416,43399892:241555 +k1,10479:26524773,43399892:241555 +k1,10479:28727164,43399892:241554 +k1,10479:29324579,43399892:241555 +k1,10479:31966991,43399892:0 +) +(1,10480:7246811,44241380:24720180,513147,134348 +k1,10479:10170318,44241380:228011 +k1,10479:11049756,44241380:228010 +k1,10479:13518443,44241380:228011 +k1,10479:14765538,44241380:228010 +k1,10479:16732875,44241380:228011 +k1,10479:17620178,44241380:228011 +k1,10479:18867273,44241380:228010 +k1,10479:21223893,44241380:228011 +k1,10479:25062937,44241380:228010 +k1,10479:25906986,44241380:228011 +k1,10479:27154081,44241380:228010 +k1,10479:30077588,44241380:228011 +k1,10480:31966991,44241380:0 +) +(1,10480:7246811,45082868:24720180,426639,7863 +k1,10480:31966991,45082868:23239066 +g1,10480:31966991,45082868 +) +] +) +] +r1,10480:32583029,45680555:26214,12447252,0 +) +] +) +) +g1,10480:32583029,45090731 +) +h1,10480:6630773,45706769:0,0,0 +] +(1,10484:32583029,45706769:0,0,0 +g1,10484:32583029,45706769 +) +) +] +(1,10484:6630773,47279633:25952256,0,0 +h1,10484:6630773,47279633:25952256,0,0 +) +] +h1,10484:4262630,4025873:0,0,0 +] +!23765 }197 -Input:1313:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1314:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1315:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1316:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1317:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1318:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1319:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1320:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {198 -[1,10558:4262630,47279633:28320399,43253760,0 -(1,10558:4262630,4025873:0,0,0 -[1,10558:-473657,4025873:25952256,0,0 -(1,10558:-473657,-710414:25952256,0,0 -h1,10558:-473657,-710414:0,0,0 -(1,10558:-473657,-710414:0,0,0 -(1,10558:-473657,-710414:0,0,0 -g1,10558:-473657,-710414 -(1,10558:-473657,-710414:65781,0,65781 -g1,10558:-407876,-710414 -[1,10558:-407876,-644633:0,0,0 +[1,10563:4262630,47279633:28320399,43253760,0 +(1,10563:4262630,4025873:0,0,0 +[1,10563:-473657,4025873:25952256,0,0 +(1,10563:-473657,-710414:25952256,0,0 +h1,10563:-473657,-710414:0,0,0 +(1,10563:-473657,-710414:0,0,0 +(1,10563:-473657,-710414:0,0,0 +g1,10563:-473657,-710414 +(1,10563:-473657,-710414:65781,0,65781 +g1,10563:-407876,-710414 +[1,10563:-407876,-644633:0,0,0 ] ) -k1,10558:-473657,-710414:-65781 +k1,10563:-473657,-710414:-65781 ) ) -k1,10558:25478599,-710414:25952256 -g1,10558:25478599,-710414 +k1,10563:25478599,-710414:25952256 +g1,10563:25478599,-710414 ) ] ) -[1,10558:6630773,47279633:25952256,43253760,0 -[1,10558:6630773,4812305:25952256,786432,0 -(1,10558:6630773,4812305:25952256,485622,126483 -(1,10558:6630773,4812305:25952256,485622,126483 -g1,10558:3078558,4812305 -[1,10558:3078558,4812305:0,0,0 -(1,10558:3078558,2439708:0,1703936,0 -k1,10558:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10558:2537886,2439708:1179648,16384,0 +[1,10563:6630773,47279633:25952256,43253760,0 +[1,10563:6630773,4812305:25952256,786432,0 +(1,10563:6630773,4812305:25952256,485622,126483 +(1,10563:6630773,4812305:25952256,485622,126483 +g1,10563:3078558,4812305 +[1,10563:3078558,4812305:0,0,0 +(1,10563:3078558,2439708:0,1703936,0 +k1,10563:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10563:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10558:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10563:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10558:3078558,4812305:0,0,0 -(1,10558:3078558,2439708:0,1703936,0 -g1,10558:29030814,2439708 -g1,10558:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10558:36151628,1915420:16384,1179648,0 +[1,10563:3078558,4812305:0,0,0 +(1,10563:3078558,2439708:0,1703936,0 +g1,10563:29030814,2439708 +g1,10563:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10563:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10558:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10563:37855564,2439708:1179648,16384,0 ) ) -k1,10558:3078556,2439708:-34777008 +k1,10563:3078556,2439708:-34777008 ) ] -[1,10558:3078558,4812305:0,0,0 -(1,10558:3078558,49800853:0,16384,2228224 -k1,10558:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10558:2537886,49800853:1179648,16384,0 +[1,10563:3078558,4812305:0,0,0 +(1,10563:3078558,49800853:0,16384,2228224 +k1,10563:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10563:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10558:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10563:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10558:3078558,4812305:0,0,0 -(1,10558:3078558,49800853:0,16384,2228224 -g1,10558:29030814,49800853 -g1,10558:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10558:36151628,51504789:16384,1179648,0 +[1,10563:3078558,4812305:0,0,0 +(1,10563:3078558,49800853:0,16384,2228224 +g1,10563:29030814,49800853 +g1,10563:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10563:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10558:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10563:37855564,49800853:1179648,16384,0 ) ) -k1,10558:3078556,49800853:-34777008 +k1,10563:3078556,49800853:-34777008 ) ] -g1,10558:6630773,4812305 -g1,10558:6630773,4812305 -g1,10558:8364200,4812305 -g1,10558:10177581,4812305 -k1,10558:31387653,4812305:21210072 -) -) -] -[1,10558:6630773,45706769:25952256,40108032,0 -(1,10558:6630773,45706769:25952256,40108032,0 -(1,10558:6630773,45706769:0,0,0 -g1,10558:6630773,45706769 +g1,10563:6630773,4812305 +g1,10563:6630773,4812305 +g1,10563:8364200,4812305 +g1,10563:10177581,4812305 +k1,10563:31387653,4812305:21210072 +) +) +] +[1,10563:6630773,45706769:25952256,40108032,0 +(1,10563:6630773,45706769:25952256,40108032,0 +(1,10563:6630773,45706769:0,0,0 +g1,10563:6630773,45706769 ) -[1,10558:6630773,45706769:25952256,40108032,0 -(1,10479:6630773,6254097:25952256,505283,134348 -h1,10477:6630773,6254097:983040,0,0 -k1,10477:10413794,6254097:265048 -k1,10477:13624030,6254097:265049 -k1,10477:16649454,6254097:265048 -k1,10477:20141496,6254097:265049 -k1,10477:21796563,6254097:265048 -k1,10477:25312197,6254097:265048 -k1,10477:27070812,6254097:265049 -k1,10477:28022022,6254097:265048 -k1,10477:29838964,6254097:265049 -(1,10477:30046058,6254097:0,435480,115847 -r1,10477:31459459,6254097:1413401,551327,115847 -k1,10477:30046058,6254097:-1413401 -) -(1,10477:30046058,6254097:1413401,435480,115847 -k1,10477:30046058,6254097:3277 -h1,10477:31456182,6254097:0,411205,112570 -) -k1,10477:31931601,6254097:265048 -k1,10477:32583029,6254097:0 -) -(1,10479:6630773,7095585:25952256,513147,126483 -k1,10477:8761668,7095585:201515 -k1,10477:9319044,7095585:201516 -k1,10477:11728467,7095585:201515 -k1,10477:12546020,7095585:201515 -k1,10477:13766620,7095585:201515 -k1,10477:15531825,7095585:201516 -k1,10477:16924785,7095585:201515 -(1,10477:16924785,7095585:0,435480,115847 -r1,10477:18338186,7095585:1413401,551327,115847 -k1,10477:16924785,7095585:-1413401 -) -(1,10477:16924785,7095585:1413401,435480,115847 -k1,10477:16924785,7095585:3277 -h1,10477:18334909,7095585:0,411205,112570 -) -k1,10477:18539701,7095585:201515 -k1,10477:19392644,7095585:201515 -k1,10477:21357734,7095585:201516 -k1,10477:22578334,7095585:201515 -k1,10477:24169868,7095585:201515 -k1,10477:25132911,7095585:201515 -k1,10477:28487364,7095585:201516 -k1,10477:30563209,7095585:201515 -k1,10479:32583029,7095585:0 -) -(1,10479:6630773,7937073:25952256,513147,126483 -g1,10477:8100090,7937073 -g1,10477:9290879,7937073 -g1,10477:10703179,7937073 -g1,10477:14207389,7937073 -g1,10477:15919844,7937073 -g1,10477:17561520,7937073 -(1,10477:17561520,7937073:0,435480,115847 -r1,10477:18623209,7937073:1061689,551327,115847 -k1,10477:17561520,7937073:-1061689 -) -(1,10477:17561520,7937073:1061689,435480,115847 -k1,10477:17561520,7937073:3277 -h1,10477:18619932,7937073:0,411205,112570 -) -g1,10477:18996108,7937073 -k1,10479:32583029,7937073:13586921 -g1,10479:32583029,7937073 -) -(1,10480:6630773,10028333:25952256,555811,139132 -(1,10480:6630773,10028333:2450326,534184,12975 -g1,10480:6630773,10028333 -g1,10480:9081099,10028333 -) -k1,10480:32583029,10028333:20941308 -g1,10480:32583029,10028333 -) -(1,10484:6630773,11263037:25952256,513147,134348 -k1,10483:8002103,11263037:174643 -(1,10483:8002103,11263037:0,435480,115847 -r1,10483:9415504,11263037:1413401,551327,115847 -k1,10483:8002103,11263037:-1413401 -) -(1,10483:8002103,11263037:1413401,435480,115847 -k1,10483:8002103,11263037:3277 -h1,10483:9412227,11263037:0,411205,112570 -) -k1,10483:9763817,11263037:174643 -k1,10483:10621345,11263037:174643 -k1,10483:14071477,11263037:174643 -k1,10483:16992734,11263037:174643 -k1,10483:18734998,11263037:174643 -k1,10483:21489793,11263037:174643 -k1,10483:24000793,11263037:174643 -k1,10483:26187391,11263037:174643 -k1,10483:30132320,11263037:174643 -k1,10483:31773659,11263037:174643 -k1,10483:32583029,11263037:0 -) -(1,10484:6630773,12104525:25952256,513147,126483 -k1,10483:7879002,12104525:229144 -k1,10483:9141648,12104525:229143 -k1,10483:10562237,12104525:229144 -k1,10483:11915322,12104525:229143 -k1,10483:13335911,12104525:229144 -k1,10483:16286109,12104525:229143 -k1,10483:17534338,12104525:229144 -k1,10483:18855967,12104525:229144 -k1,10483:19744402,12104525:229143 -k1,10483:20992631,12104525:229144 -k1,10483:22293943,12104525:229143 -(1,10483:22501037,12104525:0,414482,115847 -r1,10483:22859303,12104525:358266,530329,115847 -k1,10483:22501037,12104525:-358266 -) -(1,10483:22501037,12104525:358266,414482,115847 -k1,10483:22501037,12104525:3277 -h1,10483:22856026,12104525:0,411205,112570 -) -k1,10483:23469211,12104525:229144 -k1,10483:24384516,12104525:229143 -k1,10483:28347246,12104525:229144 -k1,10483:29524040,12104525:229143 -k1,10483:30772269,12104525:229144 -k1,10483:32583029,12104525:0 -) -(1,10484:6630773,12946013:25952256,505283,134348 -k1,10484:32583030,12946013:23819060 -g1,10484:32583030,12946013 -) -(1,10486:6630773,13787501:25952256,505283,134348 -h1,10485:6630773,13787501:983040,0,0 -k1,10485:10874288,13787501:181594 -k1,10485:12791275,13787501:181594 -k1,10485:13991955,13787501:181595 -k1,10485:16848729,13787501:181594 -k1,10485:19950607,13787501:181594 -k1,10485:21151286,13787501:181594 -k1,10485:22722899,13787501:181594 -k1,10485:23520531,13787501:181594 -k1,10485:24721211,13787501:181595 -k1,10485:27657283,13787501:181594 -k1,10485:29809545,13787501:181594 -k1,10486:32583029,13787501:0 -k1,10486:32583029,13787501:0 -) -v1,10488:6630773,14977967:0,393216,0 -(1,10492:6630773,15286772:25952256,702021,196608 -g1,10492:6630773,15286772 -g1,10492:6630773,15286772 -g1,10492:6434165,15286772 -(1,10492:6434165,15286772:0,702021,196608 -r1,10492:32779637,15286772:26345472,898629,196608 -k1,10492:6434165,15286772:-26345472 -) -(1,10492:6434165,15286772:26345472,702021,196608 -[1,10492:6630773,15286772:25952256,505413,0 -(1,10490:6630773,15185585:25952256,404226,101187 -(1,10489:6630773,15185585:0,0,0 -g1,10489:6630773,15185585 -g1,10489:6630773,15185585 -g1,10489:6303093,15185585 -(1,10489:6303093,15185585:0,0,0 -) -g1,10489:6630773,15185585 -) -g1,10490:9159939,15185585 -g1,10490:10740667,15185585 -g1,10490:13269833,15185585 -g1,10490:14850561,15185585 -g1,10490:17063581,15185585 -g1,10490:18012019,15185585 -h1,10490:20857330,15185585:0,0,0 -k1,10490:32583029,15185585:11725699 -g1,10490:32583029,15185585 -) -] -) -g1,10492:32583029,15286772 -g1,10492:6630773,15286772 -g1,10492:6630773,15286772 -g1,10492:32583029,15286772 -g1,10492:32583029,15286772 -) -h1,10492:6630773,15483380:0,0,0 -(1,10495:6630773,16849156:25952256,513147,134348 -h1,10494:6630773,16849156:983040,0,0 -g1,10494:10747744,16849156 -g1,10494:11966058,16849156 -g1,10494:13818760,16849156 -g1,10494:15514176,16849156 -g1,10494:16817687,16849156 -g1,10494:18109401,16849156 -g1,10494:19327715,16849156 -g1,10494:20916963,16849156 -g1,10494:23862806,16849156 -g1,10494:25629656,16849156 -k1,10495:32583029,16849156:3834516 -g1,10495:32583029,16849156 -) -v1,10497:6630773,18039622:0,393216,0 -(1,10505:6630773,19721153:25952256,2074747,196608 -g1,10505:6630773,19721153 -g1,10505:6630773,19721153 -g1,10505:6434165,19721153 -(1,10505:6434165,19721153:0,2074747,196608 -r1,10505:32779637,19721153:26345472,2271355,196608 -k1,10505:6434165,19721153:-26345472 -) -(1,10505:6434165,19721153:26345472,2074747,196608 -[1,10505:6630773,19721153:25952256,1878139,0 -(1,10499:6630773,18247240:25952256,404226,101187 -(1,10498:6630773,18247240:0,0,0 -g1,10498:6630773,18247240 -g1,10498:6630773,18247240 -g1,10498:6303093,18247240 -(1,10498:6303093,18247240:0,0,0 -) -g1,10498:6630773,18247240 -) -g1,10499:9159939,18247240 -g1,10499:10424522,18247240 -g1,10499:12953688,18247240 -g1,10499:14218271,18247240 -g1,10499:16431291,18247240 -g1,10499:17379729,18247240 -h1,10499:20225040,18247240:0,0,0 -k1,10499:32583029,18247240:12357989 -g1,10499:32583029,18247240 -) -(1,10500:6630773,18913418:25952256,404226,101187 -h1,10500:6630773,18913418:0,0,0 -g1,10500:13269833,18913418 -h1,10500:16431290,18913418:0,0,0 -k1,10500:32583029,18913418:16151739 -g1,10500:32583029,18913418 -) -(1,10504:6630773,19645132:25952256,404226,76021 -(1,10502:6630773,19645132:0,0,0 -g1,10502:6630773,19645132 -g1,10502:6630773,19645132 -g1,10502:6303093,19645132 -(1,10502:6303093,19645132:0,0,0 -) -g1,10502:6630773,19645132 -) -g1,10504:7579210,19645132 -g1,10504:8843793,19645132 -h1,10504:10108376,19645132:0,0,0 -k1,10504:32583028,19645132:22474652 -g1,10504:32583028,19645132 -) -] -) -g1,10505:32583029,19721153 -g1,10505:6630773,19721153 -g1,10505:6630773,19721153 -g1,10505:32583029,19721153 -g1,10505:32583029,19721153 -) -h1,10505:6630773,19917761:0,0,0 -(1,10509:6630773,21283537:25952256,513147,134348 -h1,10508:6630773,21283537:983040,0,0 -k1,10508:8275666,21283537:184096 -k1,10508:10758111,21283537:184097 -k1,10508:11625092,21283537:184096 -k1,10508:14338878,21283537:184096 -k1,10508:16681731,21283537:184097 -k1,10508:20268456,21283537:184096 -k1,10508:21444113,21283537:184097 -k1,10508:24922704,21283537:184096 -k1,10508:26500751,21283537:184096 -k1,10508:27703933,21283537:184097 -k1,10508:30563209,21283537:184096 -k1,10509:32583029,21283537:0 -) -(1,10509:6630773,22125025:25952256,505283,134348 -g1,10508:7769788,22125025 -g1,10508:10802138,22125025 -g1,10508:11617405,22125025 -g1,10508:12835719,22125025 -g1,10508:15873968,22125025 -k1,10509:32583029,22125025:13775670 -g1,10509:32583029,22125025 -) -v1,10511:6630773,23315491:0,393216,0 -(1,10519:6630773,24997022:25952256,2074747,196608 -g1,10519:6630773,24997022 -g1,10519:6630773,24997022 -g1,10519:6434165,24997022 -(1,10519:6434165,24997022:0,2074747,196608 -r1,10519:32779637,24997022:26345472,2271355,196608 -k1,10519:6434165,24997022:-26345472 -) -(1,10519:6434165,24997022:26345472,2074747,196608 -[1,10519:6630773,24997022:25952256,1878139,0 -(1,10513:6630773,23523109:25952256,404226,107478 -(1,10512:6630773,23523109:0,0,0 -g1,10512:6630773,23523109 -g1,10512:6630773,23523109 -g1,10512:6303093,23523109 -(1,10512:6303093,23523109:0,0,0 -) -g1,10512:6630773,23523109 -) -g1,10513:9159939,23523109 -g1,10513:10740667,23523109 -g1,10513:14850561,23523109 -g1,10513:15482853,23523109 -g1,10513:16431291,23523109 -g1,10513:17063583,23523109 -g1,10513:17695875,23523109 -h1,10513:21489623,23523109:0,0,0 -k1,10513:32583029,23523109:11093406 -g1,10513:32583029,23523109 -) -(1,10514:6630773,24189287:25952256,404226,101187 -h1,10514:6630773,24189287:0,0,0 -g1,10514:12637541,24189287 -h1,10514:15798998,24189287:0,0,0 -k1,10514:32583030,24189287:16784032 -g1,10514:32583030,24189287 -) -(1,10518:6630773,24921001:25952256,404226,76021 -(1,10516:6630773,24921001:0,0,0 -g1,10516:6630773,24921001 -g1,10516:6630773,24921001 -g1,10516:6303093,24921001 -(1,10516:6303093,24921001:0,0,0 -) -g1,10516:6630773,24921001 -) -g1,10518:7579210,24921001 -g1,10518:8843793,24921001 -h1,10518:10108376,24921001:0,0,0 -k1,10518:32583028,24921001:22474652 -g1,10518:32583028,24921001 -) -] -) -g1,10519:32583029,24997022 -g1,10519:6630773,24997022 -g1,10519:6630773,24997022 -g1,10519:32583029,24997022 -g1,10519:32583029,24997022 -) -h1,10519:6630773,25193630:0,0,0 -(1,10523:6630773,26559406:25952256,513147,126483 -h1,10522:6630773,26559406:983040,0,0 -k1,10522:8429954,26559406:188306 -k1,10522:11423202,26559406:188307 -k1,10522:12630593,26559406:188306 -k1,10522:14208919,26559406:188307 -k1,10522:17143839,26559406:188306 -k1,10522:19654086,26559406:188306 -k1,10522:21033838,26559406:188307 -k1,10522:25457081,26559406:188306 -k1,10522:27002639,26559406:188307 -k1,10522:27842373,26559406:188306 -k1,10522:29960060,26559406:188307 -k1,10522:31167451,26559406:188306 -k1,10523:32583029,26559406:0 -) -(1,10523:6630773,27400894:25952256,513147,126483 -g1,10522:8138756,27400894 -g1,10522:9285636,27400894 -g1,10522:10503950,27400894 -g1,10522:12356652,27400894 -k1,10523:32583029,27400894:17391290 -g1,10523:32583029,27400894 -) -v1,10525:6630773,28591360:0,393216,0 -(1,10533:6630773,30272891:25952256,2074747,196608 -g1,10533:6630773,30272891 -g1,10533:6630773,30272891 -g1,10533:6434165,30272891 -(1,10533:6434165,30272891:0,2074747,196608 -r1,10533:32779637,30272891:26345472,2271355,196608 -k1,10533:6434165,30272891:-26345472 -) -(1,10533:6434165,30272891:26345472,2074747,196608 -[1,10533:6630773,30272891:25952256,1878139,0 -(1,10527:6630773,28798978:25952256,404226,107478 -(1,10526:6630773,28798978:0,0,0 -g1,10526:6630773,28798978 -g1,10526:6630773,28798978 -g1,10526:6303093,28798978 -(1,10526:6303093,28798978:0,0,0 -) -g1,10526:6630773,28798978 -) -g1,10527:9159939,28798978 -g1,10527:10424522,28798978 -g1,10527:14534416,28798978 -g1,10527:15166708,28798978 -g1,10527:16115146,28798978 -g1,10527:16747438,28798978 -g1,10527:17379730,28798978 -h1,10527:21173478,28798978:0,0,0 -k1,10527:32583029,28798978:11409551 -g1,10527:32583029,28798978 -) -(1,10528:6630773,29465156:25952256,404226,76021 -h1,10528:6630773,29465156:0,0,0 -k1,10528:6630773,29465156:0 -h1,10528:12637541,29465156:0,0,0 -k1,10528:32583029,29465156:19945488 -g1,10528:32583029,29465156 -) -(1,10532:6630773,30196870:25952256,404226,76021 -(1,10530:6630773,30196870:0,0,0 -g1,10530:6630773,30196870 -g1,10530:6630773,30196870 -g1,10530:6303093,30196870 -(1,10530:6303093,30196870:0,0,0 -) -g1,10530:6630773,30196870 -) -g1,10532:7579210,30196870 -g1,10532:8843793,30196870 -h1,10532:10424521,30196870:0,0,0 -k1,10532:32583029,30196870:22158508 -g1,10532:32583029,30196870 -) -] -) -g1,10533:32583029,30272891 -g1,10533:6630773,30272891 -g1,10533:6630773,30272891 -g1,10533:32583029,30272891 -g1,10533:32583029,30272891 -) -h1,10533:6630773,30469499:0,0,0 -(1,10537:6630773,31835275:25952256,505283,126483 -h1,10536:6630773,31835275:983040,0,0 -k1,10536:9011410,31835275:200910 -k1,10536:11887499,31835275:200909 -k1,10536:14835023,31835275:200910 -k1,10536:17047888,31835275:200910 -k1,10536:17993941,31835275:200909 -k1,10536:18846279,31835275:200910 -k1,10536:20139674,31835275:200910 -(1,10536:20139674,31835275:0,414482,115847 -r1,10536:20497940,31835275:358266,530329,115847 -k1,10536:20139674,31835275:-358266 -) -(1,10536:20139674,31835275:358266,414482,115847 -k1,10536:20139674,31835275:3277 -h1,10536:20494663,31835275:0,411205,112570 -) -k1,10536:20698850,31835275:200910 -k1,10536:21515797,31835275:200909 -k1,10536:25486993,31835275:200910 -k1,10536:26374065,31835275:200910 -k1,10536:28650499,31835275:200909 -k1,10536:30893511,31835275:200910 -k1,10537:32583029,31835275:0 -) -(1,10537:6630773,32676763:25952256,513147,115847 -(1,10536:6630773,32676763:0,435480,115847 -r1,10536:7692462,32676763:1061689,551327,115847 -k1,10536:6630773,32676763:-1061689 -) -(1,10536:6630773,32676763:1061689,435480,115847 -k1,10536:6630773,32676763:3277 -h1,10536:7689185,32676763:0,411205,112570 -) -g1,10536:7891691,32676763 -g1,10536:9448171,32676763 -g1,10536:11041351,32676763 -g1,10536:12011283,32676763 -g1,10536:13817455,32676763 -g1,10536:15290049,32676763 -k1,10537:32583029,32676763:14836691 -g1,10537:32583029,32676763 -) -v1,10539:6630773,33867229:0,393216,0 -(1,10543:6630773,34182325:25952256,708312,196608 -g1,10543:6630773,34182325 -g1,10543:6630773,34182325 -g1,10543:6434165,34182325 -(1,10543:6434165,34182325:0,708312,196608 -r1,10543:32779637,34182325:26345472,904920,196608 -k1,10543:6434165,34182325:-26345472 -) -(1,10543:6434165,34182325:26345472,708312,196608 -[1,10543:6630773,34182325:25952256,511704,0 -(1,10541:6630773,34074847:25952256,404226,107478 -(1,10540:6630773,34074847:0,0,0 -g1,10540:6630773,34074847 -g1,10540:6630773,34074847 -g1,10540:6303093,34074847 -(1,10540:6303093,34074847:0,0,0 -) -g1,10540:6630773,34074847 -) -g1,10541:9159939,34074847 -g1,10541:10740667,34074847 -g1,10541:11689105,34074847 -g1,10541:12321397,34074847 -g1,10541:13902127,34074847 -g1,10541:15482855,34074847 -g1,10541:21805769,34074847 -h1,10541:22438060,34074847:0,0,0 -k1,10541:32583029,34074847:10144969 -g1,10541:32583029,34074847 -) -] -) -g1,10543:32583029,34182325 -g1,10543:6630773,34182325 -g1,10543:6630773,34182325 -g1,10543:32583029,34182325 -g1,10543:32583029,34182325 -) -h1,10543:6630773,34378933:0,0,0 -v1,10547:6630773,36268997:0,393216,0 -(1,10548:6630773,40312516:25952256,4436735,616038 -g1,10548:6630773,40312516 -(1,10548:6630773,40312516:25952256,4436735,616038 -(1,10548:6630773,40928554:25952256,5052773,0 -[1,10548:6630773,40928554:25952256,5052773,0 -(1,10548:6630773,40902340:25952256,5000345,0 -r1,10548:6656987,40902340:26214,5000345,0 -[1,10548:6656987,40902340:25899828,5000345,0 -(1,10548:6656987,40312516:25899828,3820697,0 -[1,10548:7246811,40312516:24720180,3820697,0 -(1,10548:7246811,37653704:24720180,1161885,196608 -(1,10547:7246811,37653704:0,1161885,196608 -r1,10548:8794447,37653704:1547636,1358493,196608 -k1,10547:7246811,37653704:-1547636 -) -(1,10547:7246811,37653704:1547636,1161885,196608 -) -k1,10547:8986113,37653704:191666 -k1,10547:9805614,37653704:191666 -k1,10547:13608313,37653704:191665 -k1,10547:14214815,37653704:191659 -k1,10547:16490525,37653704:191665 -k1,10547:17629842,37653704:191666 -k1,10547:21591794,37653704:191666 -k1,10547:22314957,37653704:191666 -k1,10547:25654317,37653704:191666 -k1,10547:27544020,37653704:191665 -k1,10547:29471079,37653704:191666 -k1,10547:30681830,37653704:191666 -k1,10548:31966991,37653704:0 -) -(1,10548:7246811,38495192:24720180,513147,134348 -k1,10547:8871886,38495192:235056 -k1,10547:12027226,38495192:235056 -k1,10547:13656232,38495192:235055 -k1,10547:14910373,38495192:235056 -k1,10547:16521030,38495192:235056 -k1,10547:18762798,38495192:235056 -k1,10547:20282359,38495192:235055 -k1,10547:23047105,38495192:235056 -k1,10547:23941453,38495192:235056 -k1,10547:25195594,38495192:235056 -k1,10547:27471440,38495192:235055 -k1,10547:31307699,38495192:235056 -k1,10547:31966991,38495192:0 -) -(1,10548:7246811,39336680:24720180,505283,134348 -k1,10547:8431066,39336680:165170 -(1,10547:8431066,39336680:0,435480,115847 -r1,10548:9844467,39336680:1413401,551327,115847 -k1,10547:8431066,39336680:-1413401 -) -(1,10547:8431066,39336680:1413401,435480,115847 -k1,10547:8431066,39336680:3277 -h1,10547:9841190,39336680:0,411205,112570 -) -k1,10547:10009637,39336680:165170 -k1,10547:13095090,39336680:165169 -k1,10547:14128612,39336680:165170 -k1,10547:15824048,39336680:165170 -k1,10547:16640646,39336680:165170 -k1,10547:19704473,39336680:165170 -k1,10547:21261628,39336680:165170 -k1,10547:25197083,39336680:165169 -k1,10547:28724250,39336680:165170 -k1,10547:30591390,39336680:165170 -k1,10548:31966991,39336680:0 -) -(1,10548:7246811,40178168:24720180,505283,134348 -g1,10547:9360347,40178168 -g1,10547:10321104,40178168 -g1,10547:13536300,40178168 -g1,10547:15374584,40178168 -g1,10547:16189851,40178168 -k1,10548:31966991,40178168:11749297 -g1,10548:31966991,40178168 -) -] -) -] -r1,10548:32583029,40902340:26214,5000345,0 -) -] -) -) -g1,10548:32583029,40312516 -) -h1,10548:6630773,40928554:0,0,0 -(1,10551:6630773,42294330:25952256,513147,126483 -h1,10550:6630773,42294330:983040,0,0 -k1,10550:13036479,42294330:236802 -k1,10550:14292366,42294330:236802 -k1,10550:19916227,42294330:236802 -k1,10550:20820185,42294330:236802 -(1,10550:20820185,42294330:0,435480,115847 -r1,10550:21881874,42294330:1061689,551327,115847 -k1,10550:20820185,42294330:-1061689 -) -(1,10550:20820185,42294330:1061689,435480,115847 -k1,10550:20820185,42294330:3277 -h1,10550:21878597,42294330:0,411205,112570 -) -k1,10550:22118676,42294330:236802 -k1,10550:23546922,42294330:236801 -(1,10550:23546922,42294330:0,435480,115847 -r1,10550:24960323,42294330:1413401,551327,115847 -k1,10550:23546922,42294330:-1413401 -) -(1,10550:23546922,42294330:1413401,435480,115847 -k1,10550:23546922,42294330:3277 -h1,10550:24957046,42294330:0,411205,112570 -) -k1,10550:25197125,42294330:236802 -k1,10550:26425487,42294330:236802 -k1,10550:28016263,42294330:236802 -k1,10550:31189078,42294330:236802 -k1,10551:32583029,42294330:0 -) -(1,10551:6630773,43135818:25952256,513147,134348 -(1,10550:6630773,43135818:0,435480,115847 -r1,10550:8044174,43135818:1413401,551327,115847 -k1,10550:6630773,43135818:-1413401 -) -(1,10550:6630773,43135818:1413401,435480,115847 -k1,10550:6630773,43135818:3277 -h1,10550:8040897,43135818:0,411205,112570 -) -g1,10550:8243403,43135818 -g1,10550:10729839,43135818 -g1,10550:13047192,43135818 -g1,10550:15143688,43135818 -k1,10551:32583029,43135818:13189987 -g1,10551:32583029,43135818 -) -(1,10553:6630773,43977306:25952256,513147,126483 -h1,10552:6630773,43977306:983040,0,0 -k1,10552:8457655,43977306:216007 -k1,10552:9692746,43977306:216006 -k1,10552:11131655,43977306:216007 -k1,10552:12006953,43977306:216006 -k1,10552:13242045,43977306:216007 -k1,10552:15040091,43977306:216007 -k1,10552:16124449,43977306:216006 -k1,10552:17472918,43977306:216007 -k1,10552:21157089,43977306:216006 -k1,10552:22465581,43977306:216007 -k1,10552:23679701,43977306:216007 -k1,10552:25532797,43977306:216006 -k1,10552:26364842,43977306:216007 -k1,10552:29572567,43977306:216006 -k1,10552:30440002,43977306:216007 -k1,10552:32583029,43977306:0 -) -(1,10553:6630773,44818794:25952256,513147,134348 -k1,10552:8684868,44818794:183697 -k1,10552:13523588,44818794:183698 -k1,10552:14393447,44818794:183697 -k1,10552:15957332,44818794:183697 -k1,10552:17870524,44818794:183697 -k1,10552:20494127,44818794:183698 -k1,10552:24351117,44818794:183697 -k1,10552:26962268,44818794:183697 -k1,10552:27805258,44818794:183698 -k1,10552:31391584,44818794:183697 -k1,10552:32583029,44818794:0 -) -(1,10553:6630773,45660282:25952256,513147,126483 -g1,10552:9144078,45660282 -g1,10552:11112124,45660282 -g1,10552:14955155,45660282 -g1,10552:15963754,45660282 -g1,10552:17182068,45660282 -g1,10552:19465342,45660282 -g1,10552:20949077,45660282 -g1,10552:22252588,45660282 -g1,10552:23199583,45660282 -k1,10553:32583029,45660282:7696549 -g1,10553:32583029,45660282 -) -] -(1,10558:32583029,45706769:0,0,0 -g1,10558:32583029,45706769 -) -) -] -(1,10558:6630773,47279633:25952256,0,0 -h1,10558:6630773,47279633:25952256,0,0 -) -] -h1,10558:4262630,4025873:0,0,0 +[1,10563:6630773,45706769:25952256,40108032,0 +(1,10484:6630773,6254097:25952256,505283,134348 +h1,10482:6630773,6254097:983040,0,0 +k1,10482:10413794,6254097:265048 +k1,10482:13624030,6254097:265049 +k1,10482:16649454,6254097:265048 +k1,10482:20141496,6254097:265049 +k1,10482:21796563,6254097:265048 +k1,10482:25312197,6254097:265048 +k1,10482:27070812,6254097:265049 +k1,10482:28022022,6254097:265048 +k1,10482:29838964,6254097:265049 +(1,10482:30046058,6254097:0,435480,115847 +r1,10482:31459459,6254097:1413401,551327,115847 +k1,10482:30046058,6254097:-1413401 +) +(1,10482:30046058,6254097:1413401,435480,115847 +k1,10482:30046058,6254097:3277 +h1,10482:31456182,6254097:0,411205,112570 +) +k1,10482:31931601,6254097:265048 +k1,10482:32583029,6254097:0 +) +(1,10484:6630773,7095585:25952256,513147,126483 +k1,10482:8761668,7095585:201515 +k1,10482:9319044,7095585:201516 +k1,10482:11728467,7095585:201515 +k1,10482:12546020,7095585:201515 +k1,10482:13766620,7095585:201515 +k1,10482:15531825,7095585:201516 +k1,10482:16924785,7095585:201515 +(1,10482:16924785,7095585:0,435480,115847 +r1,10482:18338186,7095585:1413401,551327,115847 +k1,10482:16924785,7095585:-1413401 +) +(1,10482:16924785,7095585:1413401,435480,115847 +k1,10482:16924785,7095585:3277 +h1,10482:18334909,7095585:0,411205,112570 +) +k1,10482:18539701,7095585:201515 +k1,10482:19392644,7095585:201515 +k1,10482:21357734,7095585:201516 +k1,10482:22578334,7095585:201515 +k1,10482:24169868,7095585:201515 +k1,10482:25132911,7095585:201515 +k1,10482:28487364,7095585:201516 +k1,10482:30563209,7095585:201515 +k1,10484:32583029,7095585:0 +) +(1,10484:6630773,7937073:25952256,513147,126483 +g1,10482:8100090,7937073 +g1,10482:9290879,7937073 +g1,10482:10703179,7937073 +g1,10482:14207389,7937073 +g1,10482:15919844,7937073 +g1,10482:17561520,7937073 +(1,10482:17561520,7937073:0,435480,115847 +r1,10482:18623209,7937073:1061689,551327,115847 +k1,10482:17561520,7937073:-1061689 +) +(1,10482:17561520,7937073:1061689,435480,115847 +k1,10482:17561520,7937073:3277 +h1,10482:18619932,7937073:0,411205,112570 +) +g1,10482:18996108,7937073 +k1,10484:32583029,7937073:13586921 +g1,10484:32583029,7937073 +) +(1,10485:6630773,10028333:25952256,555811,139132 +(1,10485:6630773,10028333:2450326,534184,12975 +g1,10485:6630773,10028333 +g1,10485:9081099,10028333 +) +k1,10485:32583029,10028333:20941308 +g1,10485:32583029,10028333 +) +(1,10489:6630773,11263037:25952256,513147,134348 +k1,10488:8002103,11263037:174643 +(1,10488:8002103,11263037:0,435480,115847 +r1,10488:9415504,11263037:1413401,551327,115847 +k1,10488:8002103,11263037:-1413401 +) +(1,10488:8002103,11263037:1413401,435480,115847 +k1,10488:8002103,11263037:3277 +h1,10488:9412227,11263037:0,411205,112570 +) +k1,10488:9763817,11263037:174643 +k1,10488:10621345,11263037:174643 +k1,10488:14071477,11263037:174643 +k1,10488:16992734,11263037:174643 +k1,10488:18734998,11263037:174643 +k1,10488:21489793,11263037:174643 +k1,10488:24000793,11263037:174643 +k1,10488:26187391,11263037:174643 +k1,10488:30132320,11263037:174643 +k1,10488:31773659,11263037:174643 +k1,10488:32583029,11263037:0 +) +(1,10489:6630773,12104525:25952256,513147,126483 +k1,10488:7879002,12104525:229144 +k1,10488:9141648,12104525:229143 +k1,10488:10562237,12104525:229144 +k1,10488:11915322,12104525:229143 +k1,10488:13335911,12104525:229144 +k1,10488:16286109,12104525:229143 +k1,10488:17534338,12104525:229144 +k1,10488:18855967,12104525:229144 +k1,10488:19744402,12104525:229143 +k1,10488:20992631,12104525:229144 +k1,10488:22293943,12104525:229143 +(1,10488:22501037,12104525:0,414482,115847 +r1,10488:22859303,12104525:358266,530329,115847 +k1,10488:22501037,12104525:-358266 +) +(1,10488:22501037,12104525:358266,414482,115847 +k1,10488:22501037,12104525:3277 +h1,10488:22856026,12104525:0,411205,112570 +) +k1,10488:23469211,12104525:229144 +k1,10488:24384516,12104525:229143 +k1,10488:28347246,12104525:229144 +k1,10488:29524040,12104525:229143 +k1,10488:30772269,12104525:229144 +k1,10488:32583029,12104525:0 +) +(1,10489:6630773,12946013:25952256,505283,134348 +k1,10489:32583030,12946013:23819060 +g1,10489:32583030,12946013 +) +(1,10491:6630773,13787501:25952256,505283,134348 +h1,10490:6630773,13787501:983040,0,0 +k1,10490:10874288,13787501:181594 +k1,10490:12791275,13787501:181594 +k1,10490:13991955,13787501:181595 +k1,10490:16848729,13787501:181594 +k1,10490:19950607,13787501:181594 +k1,10490:21151286,13787501:181594 +k1,10490:22722899,13787501:181594 +k1,10490:23520531,13787501:181594 +k1,10490:24721211,13787501:181595 +k1,10490:27657283,13787501:181594 +k1,10490:29809545,13787501:181594 +k1,10491:32583029,13787501:0 +k1,10491:32583029,13787501:0 +) +v1,10493:6630773,14977967:0,393216,0 +(1,10497:6630773,15286772:25952256,702021,196608 +g1,10497:6630773,15286772 +g1,10497:6630773,15286772 +g1,10497:6434165,15286772 +(1,10497:6434165,15286772:0,702021,196608 +r1,10497:32779637,15286772:26345472,898629,196608 +k1,10497:6434165,15286772:-26345472 +) +(1,10497:6434165,15286772:26345472,702021,196608 +[1,10497:6630773,15286772:25952256,505413,0 +(1,10495:6630773,15185585:25952256,404226,101187 +(1,10494:6630773,15185585:0,0,0 +g1,10494:6630773,15185585 +g1,10494:6630773,15185585 +g1,10494:6303093,15185585 +(1,10494:6303093,15185585:0,0,0 +) +g1,10494:6630773,15185585 +) +g1,10495:9159939,15185585 +g1,10495:10740667,15185585 +g1,10495:13269833,15185585 +g1,10495:14850561,15185585 +g1,10495:17063581,15185585 +g1,10495:18012019,15185585 +h1,10495:20857330,15185585:0,0,0 +k1,10495:32583029,15185585:11725699 +g1,10495:32583029,15185585 +) +] +) +g1,10497:32583029,15286772 +g1,10497:6630773,15286772 +g1,10497:6630773,15286772 +g1,10497:32583029,15286772 +g1,10497:32583029,15286772 +) +h1,10497:6630773,15483380:0,0,0 +(1,10500:6630773,16849156:25952256,513147,134348 +h1,10499:6630773,16849156:983040,0,0 +g1,10499:10747744,16849156 +g1,10499:11966058,16849156 +g1,10499:13818760,16849156 +g1,10499:15514176,16849156 +g1,10499:16817687,16849156 +g1,10499:18109401,16849156 +g1,10499:19327715,16849156 +g1,10499:20916963,16849156 +g1,10499:23862806,16849156 +g1,10499:25629656,16849156 +k1,10500:32583029,16849156:3834516 +g1,10500:32583029,16849156 +) +v1,10502:6630773,18039622:0,393216,0 +(1,10510:6630773,19721153:25952256,2074747,196608 +g1,10510:6630773,19721153 +g1,10510:6630773,19721153 +g1,10510:6434165,19721153 +(1,10510:6434165,19721153:0,2074747,196608 +r1,10510:32779637,19721153:26345472,2271355,196608 +k1,10510:6434165,19721153:-26345472 +) +(1,10510:6434165,19721153:26345472,2074747,196608 +[1,10510:6630773,19721153:25952256,1878139,0 +(1,10504:6630773,18247240:25952256,404226,101187 +(1,10503:6630773,18247240:0,0,0 +g1,10503:6630773,18247240 +g1,10503:6630773,18247240 +g1,10503:6303093,18247240 +(1,10503:6303093,18247240:0,0,0 +) +g1,10503:6630773,18247240 +) +g1,10504:9159939,18247240 +g1,10504:10424522,18247240 +g1,10504:12953688,18247240 +g1,10504:14218271,18247240 +g1,10504:16431291,18247240 +g1,10504:17379729,18247240 +h1,10504:20225040,18247240:0,0,0 +k1,10504:32583029,18247240:12357989 +g1,10504:32583029,18247240 +) +(1,10505:6630773,18913418:25952256,404226,101187 +h1,10505:6630773,18913418:0,0,0 +g1,10505:13269833,18913418 +h1,10505:16431290,18913418:0,0,0 +k1,10505:32583029,18913418:16151739 +g1,10505:32583029,18913418 +) +(1,10509:6630773,19645132:25952256,404226,76021 +(1,10507:6630773,19645132:0,0,0 +g1,10507:6630773,19645132 +g1,10507:6630773,19645132 +g1,10507:6303093,19645132 +(1,10507:6303093,19645132:0,0,0 +) +g1,10507:6630773,19645132 +) +g1,10509:7579210,19645132 +g1,10509:8843793,19645132 +h1,10509:10108376,19645132:0,0,0 +k1,10509:32583028,19645132:22474652 +g1,10509:32583028,19645132 +) +] +) +g1,10510:32583029,19721153 +g1,10510:6630773,19721153 +g1,10510:6630773,19721153 +g1,10510:32583029,19721153 +g1,10510:32583029,19721153 +) +h1,10510:6630773,19917761:0,0,0 +(1,10514:6630773,21283537:25952256,513147,134348 +h1,10513:6630773,21283537:983040,0,0 +k1,10513:8275666,21283537:184096 +k1,10513:10758111,21283537:184097 +k1,10513:11625092,21283537:184096 +k1,10513:14338878,21283537:184096 +k1,10513:16681731,21283537:184097 +k1,10513:20268456,21283537:184096 +k1,10513:21444113,21283537:184097 +k1,10513:24922704,21283537:184096 +k1,10513:26500751,21283537:184096 +k1,10513:27703933,21283537:184097 +k1,10513:30563209,21283537:184096 +k1,10514:32583029,21283537:0 +) +(1,10514:6630773,22125025:25952256,505283,134348 +g1,10513:7769788,22125025 +g1,10513:10802138,22125025 +g1,10513:11617405,22125025 +g1,10513:12835719,22125025 +g1,10513:15873968,22125025 +k1,10514:32583029,22125025:13775670 +g1,10514:32583029,22125025 +) +v1,10516:6630773,23315491:0,393216,0 +(1,10524:6630773,24997022:25952256,2074747,196608 +g1,10524:6630773,24997022 +g1,10524:6630773,24997022 +g1,10524:6434165,24997022 +(1,10524:6434165,24997022:0,2074747,196608 +r1,10524:32779637,24997022:26345472,2271355,196608 +k1,10524:6434165,24997022:-26345472 +) +(1,10524:6434165,24997022:26345472,2074747,196608 +[1,10524:6630773,24997022:25952256,1878139,0 +(1,10518:6630773,23523109:25952256,404226,107478 +(1,10517:6630773,23523109:0,0,0 +g1,10517:6630773,23523109 +g1,10517:6630773,23523109 +g1,10517:6303093,23523109 +(1,10517:6303093,23523109:0,0,0 +) +g1,10517:6630773,23523109 +) +g1,10518:9159939,23523109 +g1,10518:10740667,23523109 +g1,10518:14850561,23523109 +g1,10518:15482853,23523109 +g1,10518:16431291,23523109 +g1,10518:17063583,23523109 +g1,10518:17695875,23523109 +h1,10518:21489623,23523109:0,0,0 +k1,10518:32583029,23523109:11093406 +g1,10518:32583029,23523109 +) +(1,10519:6630773,24189287:25952256,404226,101187 +h1,10519:6630773,24189287:0,0,0 +g1,10519:12637541,24189287 +h1,10519:15798998,24189287:0,0,0 +k1,10519:32583030,24189287:16784032 +g1,10519:32583030,24189287 +) +(1,10523:6630773,24921001:25952256,404226,76021 +(1,10521:6630773,24921001:0,0,0 +g1,10521:6630773,24921001 +g1,10521:6630773,24921001 +g1,10521:6303093,24921001 +(1,10521:6303093,24921001:0,0,0 +) +g1,10521:6630773,24921001 +) +g1,10523:7579210,24921001 +g1,10523:8843793,24921001 +h1,10523:10108376,24921001:0,0,0 +k1,10523:32583028,24921001:22474652 +g1,10523:32583028,24921001 +) +] +) +g1,10524:32583029,24997022 +g1,10524:6630773,24997022 +g1,10524:6630773,24997022 +g1,10524:32583029,24997022 +g1,10524:32583029,24997022 +) +h1,10524:6630773,25193630:0,0,0 +(1,10528:6630773,26559406:25952256,513147,126483 +h1,10527:6630773,26559406:983040,0,0 +k1,10527:8429954,26559406:188306 +k1,10527:11423202,26559406:188307 +k1,10527:12630593,26559406:188306 +k1,10527:14208919,26559406:188307 +k1,10527:17143839,26559406:188306 +k1,10527:19654086,26559406:188306 +k1,10527:21033838,26559406:188307 +k1,10527:25457081,26559406:188306 +k1,10527:27002639,26559406:188307 +k1,10527:27842373,26559406:188306 +k1,10527:29960060,26559406:188307 +k1,10527:31167451,26559406:188306 +k1,10528:32583029,26559406:0 +) +(1,10528:6630773,27400894:25952256,513147,126483 +g1,10527:8138756,27400894 +g1,10527:9285636,27400894 +g1,10527:10503950,27400894 +g1,10527:12356652,27400894 +k1,10528:32583029,27400894:17391290 +g1,10528:32583029,27400894 +) +v1,10530:6630773,28591360:0,393216,0 +(1,10538:6630773,30272891:25952256,2074747,196608 +g1,10538:6630773,30272891 +g1,10538:6630773,30272891 +g1,10538:6434165,30272891 +(1,10538:6434165,30272891:0,2074747,196608 +r1,10538:32779637,30272891:26345472,2271355,196608 +k1,10538:6434165,30272891:-26345472 +) +(1,10538:6434165,30272891:26345472,2074747,196608 +[1,10538:6630773,30272891:25952256,1878139,0 +(1,10532:6630773,28798978:25952256,404226,107478 +(1,10531:6630773,28798978:0,0,0 +g1,10531:6630773,28798978 +g1,10531:6630773,28798978 +g1,10531:6303093,28798978 +(1,10531:6303093,28798978:0,0,0 +) +g1,10531:6630773,28798978 +) +g1,10532:9159939,28798978 +g1,10532:10424522,28798978 +g1,10532:14534416,28798978 +g1,10532:15166708,28798978 +g1,10532:16115146,28798978 +g1,10532:16747438,28798978 +g1,10532:17379730,28798978 +h1,10532:21173478,28798978:0,0,0 +k1,10532:32583029,28798978:11409551 +g1,10532:32583029,28798978 +) +(1,10533:6630773,29465156:25952256,404226,76021 +h1,10533:6630773,29465156:0,0,0 +k1,10533:6630773,29465156:0 +h1,10533:12637541,29465156:0,0,0 +k1,10533:32583029,29465156:19945488 +g1,10533:32583029,29465156 +) +(1,10537:6630773,30196870:25952256,404226,76021 +(1,10535:6630773,30196870:0,0,0 +g1,10535:6630773,30196870 +g1,10535:6630773,30196870 +g1,10535:6303093,30196870 +(1,10535:6303093,30196870:0,0,0 +) +g1,10535:6630773,30196870 +) +g1,10537:7579210,30196870 +g1,10537:8843793,30196870 +h1,10537:10424521,30196870:0,0,0 +k1,10537:32583029,30196870:22158508 +g1,10537:32583029,30196870 +) +] +) +g1,10538:32583029,30272891 +g1,10538:6630773,30272891 +g1,10538:6630773,30272891 +g1,10538:32583029,30272891 +g1,10538:32583029,30272891 +) +h1,10538:6630773,30469499:0,0,0 +(1,10542:6630773,31835275:25952256,505283,126483 +h1,10541:6630773,31835275:983040,0,0 +k1,10541:9011410,31835275:200910 +k1,10541:11887499,31835275:200909 +k1,10541:14835023,31835275:200910 +k1,10541:17047888,31835275:200910 +k1,10541:17993941,31835275:200909 +k1,10541:18846279,31835275:200910 +k1,10541:20139674,31835275:200910 +(1,10541:20139674,31835275:0,414482,115847 +r1,10541:20497940,31835275:358266,530329,115847 +k1,10541:20139674,31835275:-358266 +) +(1,10541:20139674,31835275:358266,414482,115847 +k1,10541:20139674,31835275:3277 +h1,10541:20494663,31835275:0,411205,112570 +) +k1,10541:20698850,31835275:200910 +k1,10541:21515797,31835275:200909 +k1,10541:25486993,31835275:200910 +k1,10541:26374065,31835275:200910 +k1,10541:28650499,31835275:200909 +k1,10541:30893511,31835275:200910 +k1,10542:32583029,31835275:0 +) +(1,10542:6630773,32676763:25952256,513147,115847 +(1,10541:6630773,32676763:0,435480,115847 +r1,10541:7692462,32676763:1061689,551327,115847 +k1,10541:6630773,32676763:-1061689 +) +(1,10541:6630773,32676763:1061689,435480,115847 +k1,10541:6630773,32676763:3277 +h1,10541:7689185,32676763:0,411205,112570 +) +g1,10541:7891691,32676763 +g1,10541:9448171,32676763 +g1,10541:11041351,32676763 +g1,10541:12011283,32676763 +g1,10541:13817455,32676763 +g1,10541:15290049,32676763 +k1,10542:32583029,32676763:14836691 +g1,10542:32583029,32676763 +) +v1,10544:6630773,33867229:0,393216,0 +(1,10548:6630773,34182325:25952256,708312,196608 +g1,10548:6630773,34182325 +g1,10548:6630773,34182325 +g1,10548:6434165,34182325 +(1,10548:6434165,34182325:0,708312,196608 +r1,10548:32779637,34182325:26345472,904920,196608 +k1,10548:6434165,34182325:-26345472 +) +(1,10548:6434165,34182325:26345472,708312,196608 +[1,10548:6630773,34182325:25952256,511704,0 +(1,10546:6630773,34074847:25952256,404226,107478 +(1,10545:6630773,34074847:0,0,0 +g1,10545:6630773,34074847 +g1,10545:6630773,34074847 +g1,10545:6303093,34074847 +(1,10545:6303093,34074847:0,0,0 +) +g1,10545:6630773,34074847 +) +g1,10546:9159939,34074847 +g1,10546:10740667,34074847 +g1,10546:11689105,34074847 +g1,10546:12321397,34074847 +g1,10546:13902127,34074847 +g1,10546:15482855,34074847 +g1,10546:21805769,34074847 +h1,10546:22438060,34074847:0,0,0 +k1,10546:32583029,34074847:10144969 +g1,10546:32583029,34074847 +) +] +) +g1,10548:32583029,34182325 +g1,10548:6630773,34182325 +g1,10548:6630773,34182325 +g1,10548:32583029,34182325 +g1,10548:32583029,34182325 +) +h1,10548:6630773,34378933:0,0,0 +v1,10552:6630773,36268997:0,393216,0 +(1,10553:6630773,40312516:25952256,4436735,616038 +g1,10553:6630773,40312516 +(1,10553:6630773,40312516:25952256,4436735,616038 +(1,10553:6630773,40928554:25952256,5052773,0 +[1,10553:6630773,40928554:25952256,5052773,0 +(1,10553:6630773,40902340:25952256,5000345,0 +r1,10553:6656987,40902340:26214,5000345,0 +[1,10553:6656987,40902340:25899828,5000345,0 +(1,10553:6656987,40312516:25899828,3820697,0 +[1,10553:7246811,40312516:24720180,3820697,0 +(1,10553:7246811,37653704:24720180,1161885,196608 +(1,10552:7246811,37653704:0,1161885,196608 +r1,10553:8794447,37653704:1547636,1358493,196608 +k1,10552:7246811,37653704:-1547636 +) +(1,10552:7246811,37653704:1547636,1161885,196608 +) +k1,10552:8986113,37653704:191666 +k1,10552:9805614,37653704:191666 +k1,10552:13608313,37653704:191665 +k1,10552:14214815,37653704:191659 +k1,10552:16490525,37653704:191665 +k1,10552:17629842,37653704:191666 +k1,10552:21591794,37653704:191666 +k1,10552:22314957,37653704:191666 +k1,10552:25654317,37653704:191666 +k1,10552:27544020,37653704:191665 +k1,10552:29471079,37653704:191666 +k1,10552:30681830,37653704:191666 +k1,10553:31966991,37653704:0 +) +(1,10553:7246811,38495192:24720180,513147,134348 +k1,10552:8871886,38495192:235056 +k1,10552:12027226,38495192:235056 +k1,10552:13656232,38495192:235055 +k1,10552:14910373,38495192:235056 +k1,10552:16521030,38495192:235056 +k1,10552:18762798,38495192:235056 +k1,10552:20282359,38495192:235055 +k1,10552:23047105,38495192:235056 +k1,10552:23941453,38495192:235056 +k1,10552:25195594,38495192:235056 +k1,10552:27471440,38495192:235055 +k1,10552:31307699,38495192:235056 +k1,10552:31966991,38495192:0 +) +(1,10553:7246811,39336680:24720180,505283,134348 +k1,10552:8462642,39336680:196746 +(1,10552:8462642,39336680:0,435480,115847 +r1,10553:9876043,39336680:1413401,551327,115847 +k1,10552:8462642,39336680:-1413401 +) +(1,10552:8462642,39336680:1413401,435480,115847 +k1,10552:8462642,39336680:3277 +h1,10552:9872766,39336680:0,411205,112570 +) +k1,10552:10072790,39336680:196747 +k1,10552:13189820,39336680:196746 +k1,10552:14254918,39336680:196746 +k1,10552:15981930,39336680:196746 +k1,10552:16830105,39336680:196747 +k1,10552:19925508,39336680:196746 +k1,10552:21514239,39336680:196746 +k1,10552:25481271,39336680:196746 +k1,10552:29040015,39336680:196747 +k1,10552:30938731,39336680:196746 +k1,10553:31966991,39336680:0 +) +(1,10553:7246811,40178168:24720180,505283,134348 +g1,10552:9707687,40178168 +g1,10552:10668444,40178168 +g1,10552:13883640,40178168 +g1,10552:15721924,40178168 +g1,10552:16537191,40178168 +k1,10553:31966991,40178168:11401957 +g1,10553:31966991,40178168 +) +] +) +] +r1,10553:32583029,40902340:26214,5000345,0 +) +] +) +) +g1,10553:32583029,40312516 +) +h1,10553:6630773,40928554:0,0,0 +(1,10556:6630773,42294330:25952256,513147,126483 +h1,10555:6630773,42294330:983040,0,0 +k1,10555:13036479,42294330:236802 +k1,10555:14292366,42294330:236802 +k1,10555:19916227,42294330:236802 +k1,10555:20820185,42294330:236802 +(1,10555:20820185,42294330:0,435480,115847 +r1,10555:21881874,42294330:1061689,551327,115847 +k1,10555:20820185,42294330:-1061689 +) +(1,10555:20820185,42294330:1061689,435480,115847 +k1,10555:20820185,42294330:3277 +h1,10555:21878597,42294330:0,411205,112570 +) +k1,10555:22118676,42294330:236802 +k1,10555:23546922,42294330:236801 +(1,10555:23546922,42294330:0,435480,115847 +r1,10555:24960323,42294330:1413401,551327,115847 +k1,10555:23546922,42294330:-1413401 +) +(1,10555:23546922,42294330:1413401,435480,115847 +k1,10555:23546922,42294330:3277 +h1,10555:24957046,42294330:0,411205,112570 +) +k1,10555:25197125,42294330:236802 +k1,10555:26425487,42294330:236802 +k1,10555:28016263,42294330:236802 +k1,10555:31189078,42294330:236802 +k1,10556:32583029,42294330:0 +) +(1,10556:6630773,43135818:25952256,513147,134348 +(1,10555:6630773,43135818:0,435480,115847 +r1,10555:8044174,43135818:1413401,551327,115847 +k1,10555:6630773,43135818:-1413401 +) +(1,10555:6630773,43135818:1413401,435480,115847 +k1,10555:6630773,43135818:3277 +h1,10555:8040897,43135818:0,411205,112570 +) +g1,10555:8243403,43135818 +g1,10555:10729839,43135818 +g1,10555:13047192,43135818 +g1,10555:15143688,43135818 +k1,10556:32583029,43135818:13189987 +g1,10556:32583029,43135818 +) +(1,10558:6630773,43977306:25952256,513147,126483 +h1,10557:6630773,43977306:983040,0,0 +k1,10557:8457655,43977306:216007 +k1,10557:9692746,43977306:216006 +k1,10557:11131655,43977306:216007 +k1,10557:12006953,43977306:216006 +k1,10557:13242045,43977306:216007 +k1,10557:15040091,43977306:216007 +k1,10557:16124449,43977306:216006 +k1,10557:17472918,43977306:216007 +k1,10557:21157089,43977306:216006 +k1,10557:22465581,43977306:216007 +k1,10557:23679701,43977306:216007 +k1,10557:25532797,43977306:216006 +k1,10557:26364842,43977306:216007 +k1,10557:29572567,43977306:216006 +k1,10557:30440002,43977306:216007 +k1,10557:32583029,43977306:0 +) +(1,10558:6630773,44818794:25952256,513147,134348 +k1,10557:8684868,44818794:183697 +k1,10557:13523588,44818794:183698 +k1,10557:14393447,44818794:183697 +k1,10557:15957332,44818794:183697 +k1,10557:17870524,44818794:183697 +k1,10557:20494127,44818794:183698 +k1,10557:24351117,44818794:183697 +k1,10557:26962268,44818794:183697 +k1,10557:27805258,44818794:183698 +k1,10557:31391584,44818794:183697 +k1,10557:32583029,44818794:0 +) +(1,10558:6630773,45660282:25952256,513147,126483 +g1,10557:9144078,45660282 +g1,10557:11112124,45660282 +g1,10557:14955155,45660282 +g1,10557:15963754,45660282 +g1,10557:17182068,45660282 +g1,10557:19465342,45660282 +g1,10557:20949077,45660282 +g1,10557:22252588,45660282 +g1,10557:23199583,45660282 +k1,10558:32583029,45660282:7696549 +g1,10558:32583029,45660282 +) +] +(1,10563:32583029,45706769:0,0,0 +g1,10563:32583029,45706769 +) +) +] +(1,10563:6630773,47279633:25952256,0,0 +h1,10563:6630773,47279633:25952256,0,0 +) +] +h1,10563:4262630,4025873:0,0,0 ] !23778 }198 -Input:1321:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1322:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1323:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1324:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1325:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1326:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1327:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1328:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1329:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1330:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 +Input:1317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 {199 -[1,10606:4262630,47279633:28320399,43253760,0 -(1,10606:4262630,4025873:0,0,0 -[1,10606:-473657,4025873:25952256,0,0 -(1,10606:-473657,-710414:25952256,0,0 -h1,10606:-473657,-710414:0,0,0 -(1,10606:-473657,-710414:0,0,0 -(1,10606:-473657,-710414:0,0,0 -g1,10606:-473657,-710414 -(1,10606:-473657,-710414:65781,0,65781 -g1,10606:-407876,-710414 -[1,10606:-407876,-644633:0,0,0 +[1,10611:4262630,47279633:28320399,43253760,0 +(1,10611:4262630,4025873:0,0,0 +[1,10611:-473657,4025873:25952256,0,0 +(1,10611:-473657,-710414:25952256,0,0 +h1,10611:-473657,-710414:0,0,0 +(1,10611:-473657,-710414:0,0,0 +(1,10611:-473657,-710414:0,0,0 +g1,10611:-473657,-710414 +(1,10611:-473657,-710414:65781,0,65781 +g1,10611:-407876,-710414 +[1,10611:-407876,-644633:0,0,0 ] ) -k1,10606:-473657,-710414:-65781 +k1,10611:-473657,-710414:-65781 ) ) -k1,10606:25478599,-710414:25952256 -g1,10606:25478599,-710414 +k1,10611:25478599,-710414:25952256 +g1,10611:25478599,-710414 ) ] ) -[1,10606:6630773,47279633:25952256,43253760,0 -[1,10606:6630773,4812305:25952256,786432,0 -(1,10606:6630773,4812305:25952256,513147,134348 -(1,10606:6630773,4812305:25952256,513147,134348 -g1,10606:3078558,4812305 -[1,10606:3078558,4812305:0,0,0 -(1,10606:3078558,2439708:0,1703936,0 -k1,10606:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10606:2537886,2439708:1179648,16384,0 +[1,10611:6630773,47279633:25952256,43253760,0 +[1,10611:6630773,4812305:25952256,786432,0 +(1,10611:6630773,4812305:25952256,513147,134348 +(1,10611:6630773,4812305:25952256,513147,134348 +g1,10611:3078558,4812305 +[1,10611:3078558,4812305:0,0,0 +(1,10611:3078558,2439708:0,1703936,0 +k1,10611:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10611:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10606:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10611:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10606:3078558,4812305:0,0,0 -(1,10606:3078558,2439708:0,1703936,0 -g1,10606:29030814,2439708 -g1,10606:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10606:36151628,1915420:16384,1179648,0 +[1,10611:3078558,4812305:0,0,0 +(1,10611:3078558,2439708:0,1703936,0 +g1,10611:29030814,2439708 +g1,10611:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10611:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10606:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10611:37855564,2439708:1179648,16384,0 ) ) -k1,10606:3078556,2439708:-34777008 +k1,10611:3078556,2439708:-34777008 ) ] -[1,10606:3078558,4812305:0,0,0 -(1,10606:3078558,49800853:0,16384,2228224 -k1,10606:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10606:2537886,49800853:1179648,16384,0 +[1,10611:3078558,4812305:0,0,0 +(1,10611:3078558,49800853:0,16384,2228224 +k1,10611:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10611:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10606:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10611:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979: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,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10606:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,10611:3078558,4812305:0,0,0 +(1,10611:3078558,49800853:0,16384,2228224 +g1,10611:29030814,49800853 +g1,10611:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10611:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10606:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10611:37855564,49800853:1179648,16384,0 ) ) -k1,10606:3078556,49800853:-34777008 -) -] -g1,10606:6630773,4812305 -k1,10606:25241686,4812305:17415536 -g1,10606:26807341,4812305 -g1,10606:30339731,4812305 -g1,10606:31154998,4812305 -) -) -] -[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 -(1,10557:6630773,6254097:25952256,513147,134348 -h1,10554:6630773,6254097:983040,0,0 -k1,10554:10759978,6254097:183282 -k1,10554:12663580,6254097:183282 -k1,10554:13951145,6254097:183283 -k1,10554:15850160,6254097:183282 -k1,10554:18194819,6254097:183282 -k1,10554:20808831,6254097:183282 -k1,10554:22346088,6254097:183283 -k1,10554:25291713,6254097:183282 -k1,10554:27042616,6254097:183282 -k1,10554:28244983,6254097:183282 -k1,10554:29520751,6254097:183283 -k1,10554:30363325,6254097:183282 -k1,10557:32583029,6254097:0 -) -(1,10557:6630773,7095585:25952256,513147,126483 -k1,10554:8789479,7095585:189349 -k1,10554:9638119,7095585:189348 -k1,10554:13885457,7095585:189349 -k1,10554:16247980,7095585:189349 -k1,10554:17088756,7095585:189348 -k1,10554:20293416,7095585:189349 -k1,10554:22050386,7095585:189349 -k1,10554:23258820,7095585:189349 -k1,10554:25136375,7095585:189348 -k1,10554:25985016,7095585:189349 -k1,10554:27601084,7095585:189349 -k1,10554:28449724,7095585:189348 -k1,10554:30028436,7095585:189349 -k1,10554:32583029,7095585:0 -) -(1,10557:6630773,7937073:25952256,513147,126483 -k1,10554:8376148,7937073:196759 -k1,10554:10618941,7937073:196759 -k1,10554:12536020,7937073:196759 -k1,10554:14334479,7937073:196759 -k1,10554:18013821,7937073:196759 -k1,10554:18862008,7937073:196759 -k1,10554:20151253,7937073:196760 -k1,10554:21339572,7937073:196759 -k1,10554:23228471,7937073:196759 -k1,10554:24084522,7937073:196759 -k1,10554:25300366,7937073:196759 -k1,10554:26780320,7937073:196759 -k1,10554:29383561,7937073:196759 -k1,10554:32583029,7937073:0 -) -(1,10557:6630773,8778561:25952256,513147,134348 -g1,10554:8021447,8778561 -g1,10554:11005301,8778561 -g1,10554:13586108,8778561 -g1,10554:14401375,8778561 -g1,10554:16579136,8778561 -g1,10554:18924669,8778561 -g1,10554:20315343,8778561 -g1,10554:22216542,8778561 -g1,10554:25326225,8778561 -g1,10554:27093075,8778561 -g1,10554:28311389,8778561 -g1,10554:31892275,8778561 -g1,10555:31892275,8778561 -k1,10557:32583029,8778561:690754 -g1,10557:32583029,8778561 -) -(1,10558:6630773,11586129:25952256,32768,229376 -(1,10558:6630773,11586129:0,32768,229376 -(1,10558:6630773,11586129:5505024,32768,229376 -r1,10558:12135797,11586129:5505024,262144,229376 -) -k1,10558:6630773,11586129:-5505024 -) -(1,10558:6630773,11586129:25952256,32768,0 -r1,10558:32583029,11586129:25952256,32768,0 -) -) -(1,10558:6630773,13190457:25952256,606339,161218 -(1,10558:6630773,13190457:1974731,582746,14155 -g1,10558:6630773,13190457 -g1,10558:8605504,13190457 -) -g1,10558:12976493,13190457 -g1,10558:14989759,13190457 -k1,10558:32583029,13190457:15265432 -g1,10558:32583029,13190457 -) -(1,10562:6630773,14425161:25952256,513147,134348 -k1,10561:8280878,14425161:178166 -k1,10561:10497213,14425161:178165 -k1,10561:11291417,14425161:178166 -k1,10561:14394455,14425161:178166 -k1,10561:17083304,14425161:178165 -k1,10561:18365752,14425161:178166 -k1,10561:19291683,14425161:178165 -k1,10561:22315422,14425161:178166 -k1,10561:23109626,14425161:178166 -k1,10561:26050134,14425161:178165 -k1,10561:27970247,14425161:178166 -k1,10561:28776248,14425161:178166 -k1,10561:30388341,14425161:178165 -k1,10561:30981329,14425161:178145 -k1,10561:32583029,14425161:0 -) -(1,10562:6630773,15266649:25952256,513147,134348 -k1,10561:8801741,15266649:183261 -k1,10561:10919625,15266649:183261 -k1,10561:14128684,15266649:183262 -k1,10561:15503390,15266649:183261 -k1,10561:16705736,15266649:183261 -(1,10561:16705736,15266649:0,452978,115847 -r1,10561:18822561,15266649:2116825,568825,115847 -k1,10561:16705736,15266649:-2116825 -) -(1,10561:16705736,15266649:2116825,452978,115847 -k1,10561:16705736,15266649:3277 -h1,10561:18819284,15266649:0,411205,112570 -) -k1,10561:19005822,15266649:183261 -k1,10561:21643406,15266649:183261 -k1,10561:23562060,15266649:183261 -k1,10561:26147217,15266649:183262 -k1,10561:29204232,15266649:183261 -k1,10561:30578938,15266649:183261 -k1,10562:32583029,15266649:0 -) -(1,10562:6630773,16108137:25952256,513147,134348 -k1,10561:8129712,16108137:251789 -k1,10561:9770865,16108137:251790 -k1,10561:12402922,16108137:251789 -k1,10561:14725649,16108137:251789 -k1,10561:16366802,16108137:251790 -k1,10561:17270019,16108137:251789 -k1,10561:18269574,16108137:251789 -k1,10561:21366937,16108137:251790 -k1,10561:22234764,16108137:251789 -k1,10561:24175416,16108137:251789 -k1,10561:26294982,16108137:251790 -k1,10561:27271599,16108137:251789 -k1,10561:28807894,16108137:251789 -k1,10561:30511306,16108137:251790 -k1,10561:31966991,16108137:251789 -k1,10561:32583029,16108137:0 -) -(1,10562:6630773,16949625:25952256,513147,134348 -k1,10561:7271332,16949625:284699 -k1,10561:8945395,16949625:284700 -k1,10561:11106390,16949625:284699 -k1,10561:15354706,16949625:284699 -k1,10561:16290834,16949625:284700 -k1,10561:16931393,16949625:284699 -k1,10561:19089111,16949625:284699 -k1,10561:23115261,16949625:284700 -k1,10561:24289939,16949625:284699 -k1,10561:29124803,16949625:284699 -k1,10561:31133100,16949625:284700 -k1,10561:32227169,16949625:284699 -k1,10561:32583029,16949625:0 -) -(1,10562:6630773,17791113:25952256,513147,134348 -k1,10561:9290701,17791113:176113 -k1,10561:10942029,17791113:176113 -k1,10561:13501031,17791113:176113 -k1,10561:17640761,17791113:176113 -k1,10561:18468302,17791113:176113 -k1,10561:19000276,17791113:176114 -k1,10561:21938732,17791113:176113 -k1,10561:25239602,17791113:176113 -k1,10561:27864795,17791113:176113 -k1,10561:29466316,17791113:176113 -k1,10561:30301721,17791113:176113 -k1,10562:32583029,17791113:0 -) -(1,10562:6630773,18632601:25952256,513147,134348 -k1,10561:9280691,18632601:201493 -k1,10561:10165070,18632601:201494 -k1,10561:10722423,18632601:201493 -k1,10561:12817907,18632601:201494 -k1,10561:16331590,18632601:201493 -k1,10561:16888944,18632601:201494 -k1,10561:21234278,18632601:201493 -k1,10561:22095064,18632601:201494 -k1,10561:24937003,18632601:201493 -k1,10561:28255389,18632601:201494 -k1,10561:29108310,18632601:201493 -k1,10561:32583029,18632601:0 -) -(1,10562:6630773,19474089:25952256,513147,134348 -k1,10561:7544881,19474089:231223 -k1,10561:10381815,19474089:231223 -k1,10561:11272330,19474089:231223 -k1,10561:12522638,19474089:231223 -k1,10561:16923917,19474089:231223 -k1,10561:19243771,19474089:231222 -k1,10561:20924650,19474089:231223 -k1,10561:23593157,19474089:231223 -k1,10561:27167371,19474089:231223 -k1,10561:30523351,19474089:231223 -k1,10561:31563944,19474089:231223 -k1,10561:32583029,19474089:0 -) -(1,10562:6630773,20315577:25952256,505283,134348 -k1,10561:8507724,20315577:223478 -k1,10561:11041346,20315577:223478 -k1,10561:11877586,20315577:223478 -k1,10561:12871767,20315577:223478 -k1,10561:15128826,20315577:223477 -k1,10561:17040511,20315577:223478 -k1,10561:17880027,20315577:223478 -k1,10561:19528913,20315577:223478 -k1,10561:21089325,20315577:223478 -k1,10561:22598619,20315577:223478 -k1,10561:23569863,20315577:223478 -k1,10561:25831511,20315577:223478 -k1,10561:26671026,20315577:223477 -k1,10561:27250364,20315577:223478 -k1,10561:30030401,20315577:223478 -k1,10561:31725818,20315577:223478 -k1,10562:32583029,20315577:0 -) -(1,10562:6630773,21157065:25952256,513147,134348 -k1,10561:8999637,21157065:167510 -k1,10561:9783185,21157065:167510 -k1,10561:11315155,21157065:167510 -k1,10561:13026693,21157065:167509 -k1,10561:14295208,21157065:167510 -k1,10561:15972668,21157065:167510 -k1,10561:19641111,21157065:167510 -k1,10561:20494783,21157065:167510 -k1,10561:22502544,21157065:167510 -k1,10561:23861499,21157065:167510 -k1,10561:25232250,21157065:167510 -k1,10561:25931256,21157065:167509 -k1,10561:28874871,21157065:167510 -k1,10561:29658419,21157065:167510 -k1,10561:30845014,21157065:167510 -k1,10561:32583029,21157065:0 -) -(1,10562:6630773,21998553:25952256,513147,134348 -k1,10561:8585002,21998553:259468 -k1,10561:9495898,21998553:259468 -k1,10561:10774451,21998553:259468 -k1,10561:14241905,21998553:259467 -k1,10561:16051955,21998553:259468 -k1,10561:16970715,21998553:259468 -k1,10561:20314307,21998553:259468 -k1,10561:22045714,21998553:259468 -k1,10561:22921220,21998553:259468 -k1,10561:25066158,21998553:259467 -k1,10561:28038817,21998553:259468 -k1,10561:31931601,21998553:259468 -k1,10561:32583029,21998553:0 -) -(1,10562:6630773,22840041:25952256,513147,134348 -g1,10561:11173073,22840041 -g1,10561:13426200,22840041 -g1,10561:14156926,22840041 -g1,10561:17446178,22840041 -g1,10561:18331569,22840041 -g1,10561:20268813,22840041 -g1,10561:21084080,22840041 -g1,10561:21639169,22840041 -g1,10561:23293297,22840041 -k1,10562:32583029,22840041:7573344 -g1,10562:32583029,22840041 -) -(1,10564:6630773,23681529:25952256,513147,134348 -h1,10563:6630773,23681529:983040,0,0 -k1,10563:10719624,23681529:142928 -k1,10563:14031873,23681529:142928 -k1,10563:15564164,23681529:142928 -k1,10563:16238589,23681529:142928 -k1,10563:17572962,23681529:142928 -k1,10563:18816894,23681529:142927 -k1,10563:20469772,23681529:142928 -k1,10563:21631785,23681529:142928 -k1,10563:23376413,23681529:142928 -k1,10563:26862988,23681529:142928 -k1,10563:28519142,23681529:142928 -k1,10563:32583029,23681529:0 -) -(1,10564:6630773,24523017:25952256,513147,126483 -k1,10563:7443419,24523017:153354 -k1,10563:8986136,24523017:153354 -k1,10563:9755528,24523017:153354 -k1,10563:10497396,24523017:153355 -k1,10563:14906658,24523017:153354 -k1,10563:15719304,24523017:153354 -k1,10563:17366224,24523017:153354 -k1,10563:18908941,24523017:153354 -k1,10563:20163300,24523017:153354 -k1,10563:21382925,24523017:153354 -k1,10563:23665544,24523017:153354 -k1,10563:25328849,24523017:153355 -k1,10563:28112163,24523017:153354 -k1,10563:29659468,24523017:153354 -k1,10563:32168186,24523017:153354 -k1,10564:32583029,24523017:0 -) -(1,10564:6630773,25364505:25952256,513147,134348 -k1,10563:10514436,25364505:193331 -k1,10563:11904454,25364505:193331 -k1,10563:15008240,25364505:193332 -k1,10563:15817609,25364505:193331 -k1,10563:17030025,25364505:193331 -k1,10563:20431343,25364505:193331 -k1,10563:23054749,25364505:193331 -k1,10563:27154682,25364505:193332 -k1,10563:30373810,25364505:193331 -k1,10563:31218569,25364505:193331 -k1,10564:32583029,25364505:0 -) -(1,10564:6630773,26205993:25952256,513147,134348 -k1,10563:8222260,26205993:138554 -k1,10563:10499909,26205993:138554 -k1,10563:11297755,26205993:138554 -k1,10563:12825672,26205993:138554 -k1,10563:17393804,26205993:138554 -k1,10563:19417829,26205993:138554 -k1,10563:20172421,26205993:138554 -k1,10563:22003115,26205993:138554 -k1,10563:24012722,26205993:138554 -k1,10563:25800162,26205993:138554 -k1,10563:26554754,26205993:138554 -k1,10563:29532983,26205993:138554 -k1,10563:32583029,26205993:0 -) -(1,10564:6630773,27047481:25952256,513147,126483 -k1,10563:10925292,27047481:218835 -k1,10563:14325246,27047481:218836 -k1,10563:15195509,27047481:218835 -k1,10563:16848273,27047481:218836 -k1,10563:19206859,27047481:218835 -k1,10563:19883792,27047481:218836 -k1,10563:20634124,27047481:218835 -k1,10563:23482919,27047481:218835 -k1,10563:24353183,27047481:218836 -k1,10563:26068205,27047481:218835 -k1,10563:27306126,27047481:218836 -k1,10563:29178434,27047481:218835 -k1,10563:32583029,27047481:0 -) -(1,10564:6630773,27888969:25952256,505283,134348 -g1,10563:8565395,27888969 -g1,10563:10140225,27888969 -g1,10563:11773382,27888969 -g1,10563:12561124,27888969 -g1,10563:13832522,27888969 -g1,10563:15368685,27888969 -g1,10563:17859708,27888969 -g1,10563:19709134,27888969 -g1,10563:22118237,27888969 -g1,10563:23967663,27888969 -g1,10563:26632356,27888969 -k1,10564:32583029,27888969:2260341 -g1,10564:32583029,27888969 -) -(1,10566:6630773,28730457:25952256,513147,126483 -h1,10565:6630773,28730457:983040,0,0 -k1,10565:11228426,28730457:218537 -k1,10565:12836326,28730457:218537 -k1,10565:13586360,28730457:218537 -k1,10565:15756560,28730457:218538 -k1,10565:19280078,28730457:218537 -k1,10565:21536785,28730457:218537 -k1,10565:22371360,28730457:218537 -k1,10565:24080186,28730457:218537 -k1,10565:26479106,28730457:218537 -k1,10565:27380529,28730457:218538 -k1,10565:29065762,28730457:218537 -k1,10565:30060901,28730457:218537 -k1,10565:31422386,28730457:218537 -k1,10566:32583029,28730457:0 -) -(1,10566:6630773,29571945:25952256,513147,134348 -k1,10565:8517472,29571945:149995 -k1,10565:9392296,29571945:149996 -k1,10565:10158329,29571945:149995 -k1,10565:12060102,29571945:149996 -k1,10565:13907479,29571945:149995 -k1,10565:15076560,29571945:149996 -k1,10565:16532688,29571945:149995 -k1,10565:18018308,29571945:149996 -k1,10565:18784341,29571945:149995 -k1,10565:20323700,29571945:149996 -k1,10565:23028288,29571945:149995 -k1,10565:23709781,29571945:149996 -k1,10565:24511204,29571945:149995 -k1,10565:27165986,29571945:149996 -k1,10565:28335066,29571945:149995 -k1,10565:30048096,29571945:149996 -k1,10565:32583029,29571945:0 -) -(1,10566:6630773,30413433:25952256,513147,134348 -k1,10565:8597609,30413433:161975 -k1,10565:11519959,30413433:161974 -k1,10565:14707731,30413433:161975 -k1,10565:15817357,30413433:161975 -k1,10565:19127025,30413433:161974 -k1,10565:20678363,30413433:161975 -k1,10565:22407959,30413433:161975 -k1,10565:24060223,30413433:161975 -k1,10565:24873625,30413433:161974 -k1,10565:26424308,30413433:161975 -k1,10565:28153904,30413433:161975 -k1,10565:29507323,30413433:161974 -k1,10565:30883025,30413433:161975 -k1,10566:32583029,30413433:0 -) -(1,10566:6630773,31254921:25952256,505283,134348 -g1,10565:9978352,31254921 -g1,10565:11196666,31254921 -g1,10565:13051990,31254921 -g1,10565:16161673,31254921 -g1,10565:19220892,31254921 -g1,10565:20611566,31254921 -k1,10566:32583029,31254921:8315866 -g1,10566:32583029,31254921 -) -(1,10569:6630773,32096409:25952256,505283,126483 -h1,10568:6630773,32096409:983040,0,0 -k1,10568:8722510,32096409:155148 -k1,10568:9970143,32096409:155148 -k1,10568:10741330,32096409:155149 -k1,10568:13888197,32096409:155148 -k1,10568:15911776,32096409:155148 -k1,10568:17086009,32096409:155148 -(1,10568:17086009,32096409:0,452978,115847 -r1,10568:18499410,32096409:1413401,568825,115847 -k1,10568:17086009,32096409:-1413401 -) -(1,10568:17086009,32096409:1413401,452978,115847 -k1,10568:17086009,32096409:3277 -h1,10568:18496133,32096409:0,411205,112570 -) -k1,10568:18654558,32096409:155148 -k1,10568:20199070,32096409:155149 -k1,10568:21288761,32096409:155148 -k1,10568:24202319,32096409:155148 -k1,10568:24973505,32096409:155148 -k1,10568:26562582,32096409:155149 -k1,10568:27306243,32096409:155148 -k1,10568:29178434,32096409:155148 -k1,10568:32583029,32096409:0 -) -(1,10569:6630773,32937897:25952256,505283,134348 -k1,10568:7684702,32937897:244559 -k1,10568:8344058,32937897:244513 -(1,10568:8344058,32937897:0,459977,115847 -r1,10568:11867730,32937897:3523672,575824,115847 -k1,10568:8344058,32937897:-3523672 -) -(1,10568:8344058,32937897:3523672,459977,115847 -k1,10568:8344058,32937897:3277 -h1,10568:11864453,32937897:0,411205,112570 -) -k1,10568:12112289,32937897:244559 -k1,10568:14646676,32937897:244559 -k1,10568:16285186,32937897:244559 -k1,10568:19737732,32937897:244559 -k1,10568:22892745,32937897:244559 -k1,10568:24269766,32937897:244559 -k1,10568:26524970,32937897:244559 -(1,10568:26524970,32937897:0,459977,115847 -r1,10568:30048642,32937897:3523672,575824,115847 -k1,10568:26524970,32937897:-3523672 -) -(1,10568:26524970,32937897:3523672,459977,115847 -k1,10568:26524970,32937897:3277 -h1,10568:30045365,32937897:0,411205,112570 -) -k1,10568:30293201,32937897:244559 -k1,10568:32583029,32937897:0 -) -(1,10569:6630773,33779385:25952256,513147,134348 -k1,10568:8525545,33779385:205254 -k1,10568:10763071,33779385:205255 -k1,10568:12100787,33779385:205254 -k1,10568:14316686,33779385:205254 -k1,10568:18388565,33779385:205255 -(1,10568:18388565,33779385:0,452978,115847 -r1,10568:19801966,33779385:1413401,568825,115847 -k1,10568:18388565,33779385:-1413401 -) -(1,10568:18388565,33779385:1413401,452978,115847 -k1,10568:18388565,33779385:3277 -h1,10568:19798689,33779385:0,411205,112570 -) -k1,10568:20007220,33779385:205254 -k1,10568:22675972,33779385:205254 -k1,10568:27228230,33779385:205255 -k1,10568:27891581,33779385:205254 -k1,10568:28628332,33779385:205254 -k1,10568:30420214,33779385:205255 -k1,10568:31276896,33779385:205254 -k1,10568:32583029,33779385:0 -) -(1,10569:6630773,34620873:25952256,513147,7863 -g1,10568:9222721,34620873 -g1,10568:10689416,34620873 -g1,10568:13030362,34620873 -g1,10568:14248676,34620873 -g1,10568:15837268,34620873 -g1,10568:18243094,34620873 -g1,10568:19310675,34620873 -g1,10568:20642366,34620873 -g1,10568:22438052,34620873 -k1,10569:32583029,34620873:8577356 -g1,10569:32583029,34620873 -) -v1,10571:6630773,35811339:0,393216,0 -(1,10575:6630773,36094978:25952256,676855,196608 -g1,10575:6630773,36094978 -g1,10575:6630773,36094978 -g1,10575:6434165,36094978 -(1,10575:6434165,36094978:0,676855,196608 -r1,10575:32779637,36094978:26345472,873463,196608 -k1,10575:6434165,36094978:-26345472 -) -(1,10575:6434165,36094978:26345472,676855,196608 -[1,10575:6630773,36094978:25952256,480247,0 -(1,10573:6630773,36018957:25952256,404226,76021 -(1,10572:6630773,36018957:0,0,0 -g1,10572:6630773,36018957 -g1,10572:6630773,36018957 -g1,10572:6303093,36018957 -(1,10572:6303093,36018957:0,0,0 -) -g1,10572:6630773,36018957 -) -g1,10573:9159939,36018957 -g1,10573:10108377,36018957 -k1,10573:10108377,36018957:0 -h1,10573:14850562,36018957:0,0,0 -k1,10573:32583030,36018957:17732468 -g1,10573:32583030,36018957 -) -] -) -g1,10575:32583029,36094978 -g1,10575:6630773,36094978 -g1,10575:6630773,36094978 -g1,10575:32583029,36094978 -g1,10575:32583029,36094978 -) -h1,10575:6630773,36291586:0,0,0 -(1,10579:6630773,37657362:25952256,513147,134348 -h1,10578:6630773,37657362:983040,0,0 -k1,10578:10598085,37657362:194404 -(1,10578:10598085,37657362:0,452978,122846 -r1,10578:13418334,37657362:2820249,575824,122846 -k1,10578:10598085,37657362:-2820249 -) -(1,10578:10598085,37657362:2820249,452978,122846 -k1,10578:10598085,37657362:3277 -h1,10578:13415057,37657362:0,411205,112570 -) -k1,10578:13612738,37657362:194404 -k1,10578:16530162,37657362:194403 -k1,10578:18113929,37657362:194404 -k1,10578:19875954,37657362:194404 -k1,10578:21560647,37657362:194404 -k1,10578:23322672,37657362:194404 -k1,10578:24784542,37657362:194404 -k1,10578:26367653,37657362:194403 -k1,10578:28129678,37657362:194404 -k1,10578:29214061,37657362:194404 -k1,10578:31629480,37657362:194404 -k1,10578:32583029,37657362:0 -) -(1,10579:6630773,38498850:25952256,513147,134348 -k1,10578:7932750,38498850:209492 -(1,10578:7932750,38498850:0,452978,122846 -r1,10578:10049575,38498850:2116825,575824,122846 -k1,10578:7932750,38498850:-2116825 -) -(1,10578:7932750,38498850:2116825,452978,122846 -k1,10578:7932750,38498850:3277 -h1,10578:10046298,38498850:0,411205,112570 -) -k1,10578:10259067,38498850:209492 -k1,10578:11119987,38498850:209492 -k1,10578:13353231,38498850:209492 -k1,10578:13918583,38498850:209492 -k1,10578:17297396,38498850:209492 -k1,10578:19491974,38498850:209492 -k1,10578:20461684,38498850:209492 -k1,10578:24074461,38498850:209492 -(1,10578:24074461,38498850:0,452978,115847 -r1,10578:26542998,38498850:2468537,568825,115847 -k1,10578:24074461,38498850:-2468537 -) -(1,10578:24074461,38498850:2468537,452978,115847 -k1,10578:24074461,38498850:3277 -h1,10578:26539721,38498850:0,411205,112570 -) -k1,10578:26752490,38498850:209492 -k1,10578:28355933,38498850:209492 -(1,10578:28355933,38498850:0,452978,122846 -r1,10578:32583029,38498850:4227096,575824,122846 -k1,10578:28355933,38498850:-4227096 -) -(1,10578:28355933,38498850:4227096,452978,122846 -k1,10578:28355933,38498850:3277 -h1,10578:32579752,38498850:0,411205,112570 -) -k1,10578:32583029,38498850:0 -) -(1,10579:6630773,39340338:25952256,505283,126483 -g1,10578:7698354,39340338 -g1,10578:9001865,39340338 -g1,10578:12529012,39340338 -g1,10578:14058622,39340338 -(1,10578:14058622,39340338:0,452978,122846 -r1,10578:16878871,39340338:2820249,575824,122846 -k1,10578:14058622,39340338:-2820249 -) -(1,10578:14058622,39340338:2820249,452978,122846 -k1,10578:14058622,39340338:3277 -h1,10578:16875594,39340338:0,411205,112570 -) -g1,10578:17078100,39340338 -g1,10578:20202856,39340338 -g1,10578:21190483,39340338 -k1,10579:32583029,39340338:9510352 -g1,10579:32583029,39340338 -) -v1,10581:6630773,40530804:0,393216,0 -(1,10606:6630773,45465822:25952256,5328234,196608 -g1,10606:6630773,45465822 -g1,10606:6630773,45465822 -g1,10606:6434165,45465822 -(1,10606:6434165,45465822:0,5328234,196608 -r1,10606:32779637,45465822:26345472,5524842,196608 -k1,10606:6434165,45465822:-26345472 -) -(1,10606:6434165,45465822:26345472,5328234,196608 -[1,10606:6630773,45465822:25952256,5131626,0 -(1,10583:6630773,40738422:25952256,404226,82312 -(1,10582:6630773,40738422:0,0,0 -g1,10582:6630773,40738422 -g1,10582:6630773,40738422 -g1,10582:6303093,40738422 -(1,10582:6303093,40738422:0,0,0 -) -g1,10582:6630773,40738422 -) -k1,10583:6630773,40738422:0 -g1,10583:11056813,40738422 -h1,10583:11689105,40738422:0,0,0 -k1,10583:32583029,40738422:20893924 -g1,10583:32583029,40738422 -) -(1,10591:6630773,41470136:25952256,404226,9436 -(1,10585:6630773,41470136:0,0,0 -g1,10585:6630773,41470136 -g1,10585:6630773,41470136 -g1,10585:6303093,41470136 -(1,10585:6303093,41470136:0,0,0 -) -g1,10585:6630773,41470136 -) -g1,10591:7579210,41470136 -g1,10591:8211502,41470136 -g1,10591:8843794,41470136 -g1,10591:11372960,41470136 -g1,10591:12005252,41470136 -g1,10591:12637544,41470136 -h1,10591:12953690,41470136:0,0,0 -k1,10591:32583030,41470136:19629340 -g1,10591:32583030,41470136 -) -(1,10591:6630773,42136314:25952256,404226,107478 -h1,10591:6630773,42136314:0,0,0 -g1,10591:7579210,42136314 -g1,10591:7895356,42136314 -g1,10591:8211502,42136314 -g1,10591:12321396,42136314 -g1,10591:16115144,42136314 -g1,10591:20225038,42136314 -g1,10591:24018786,42136314 -h1,10591:26231806,42136314:0,0,0 -k1,10591:32583029,42136314:6351223 -g1,10591:32583029,42136314 -) -(1,10591:6630773,42802492:25952256,410518,6290 -h1,10591:6630773,42802492:0,0,0 -g1,10591:7579210,42802492 -g1,10591:7895356,42802492 -g1,10591:8211502,42802492 -g1,10591:8527648,42802492 -g1,10591:8843794,42802492 -g1,10591:9159940,42802492 -g1,10591:9476086,42802492 -g1,10591:9792232,42802492 -g1,10591:10108378,42802492 -g1,10591:10424524,42802492 -g1,10591:12321399,42802492 -g1,10591:12637545,42802492 -g1,10591:12953691,42802492 -g1,10591:13269837,42802492 -g1,10591:13585983,42802492 -g1,10591:13902129,42802492 -g1,10591:14218275,42802492 -g1,10591:16115150,42802492 -g1,10591:16431296,42802492 -g1,10591:16747442,42802492 -g1,10591:17063588,42802492 -g1,10591:17379734,42802492 -g1,10591:17695880,42802492 -g1,10591:18012026,42802492 -g1,10591:18328172,42802492 -g1,10591:20225047,42802492 -g1,10591:20541193,42802492 -g1,10591:20857339,42802492 -g1,10591:21173485,42802492 -g1,10591:21489631,42802492 -g1,10591:21805777,42802492 -g1,10591:22121923,42802492 -g1,10591:24018798,42802492 -k1,10591:24018798,42802492:0 -h1,10591:25599527,42802492:0,0,0 -k1,10591:32583029,42802492:6983502 -g1,10591:32583029,42802492 -) -(1,10591:6630773,43468670:25952256,388497,9436 -h1,10591:6630773,43468670:0,0,0 -g1,10591:7579210,43468670 -g1,10591:8211502,43468670 -g1,10591:8527648,43468670 -g1,10591:8843794,43468670 -g1,10591:9159940,43468670 -g1,10591:9476086,43468670 -g1,10591:9792232,43468670 -g1,10591:10108378,43468670 -g1,10591:10424524,43468670 -g1,10591:10740670,43468670 -g1,10591:11056816,43468670 -g1,10591:12321399,43468670 -g1,10591:12637545,43468670 -g1,10591:12953691,43468670 -g1,10591:13269837,43468670 -g1,10591:13585983,43468670 -g1,10591:13902129,43468670 -g1,10591:14218275,43468670 -g1,10591:14534421,43468670 -g1,10591:14850567,43468670 -g1,10591:16115150,43468670 -g1,10591:16431296,43468670 -g1,10591:16747442,43468670 -g1,10591:17063588,43468670 -g1,10591:17379734,43468670 -g1,10591:17695880,43468670 -g1,10591:18012026,43468670 -g1,10591:18328172,43468670 -g1,10591:18644318,43468670 -g1,10591:18960464,43468670 -g1,10591:20225047,43468670 -g1,10591:20541193,43468670 -g1,10591:20857339,43468670 -g1,10591:21173485,43468670 -g1,10591:21489631,43468670 -g1,10591:21805777,43468670 -g1,10591:22121923,43468670 -g1,10591:22438069,43468670 -g1,10591:22754215,43468670 -g1,10591:24018798,43468670 -h1,10591:25915672,43468670:0,0,0 -k1,10591:32583029,43468670:6667357 -g1,10591:32583029,43468670 -) -(1,10591:6630773,44134848:25952256,388497,9436 -h1,10591:6630773,44134848:0,0,0 -g1,10591:7579210,44134848 -g1,10591:8211502,44134848 -g1,10591:8527648,44134848 -g1,10591:8843794,44134848 -g1,10591:9159940,44134848 -g1,10591:9476086,44134848 -g1,10591:9792232,44134848 -g1,10591:10108378,44134848 -g1,10591:10424524,44134848 -g1,10591:10740670,44134848 -g1,10591:11056816,44134848 -g1,10591:12321399,44134848 -g1,10591:12637545,44134848 -g1,10591:12953691,44134848 -g1,10591:13269837,44134848 -g1,10591:13585983,44134848 -g1,10591:13902129,44134848 -g1,10591:14218275,44134848 -g1,10591:14534421,44134848 -g1,10591:14850567,44134848 -g1,10591:15482859,44134848 -g1,10591:15799005,44134848 -g1,10591:16115151,44134848 -g1,10591:16431297,44134848 -g1,10591:16747443,44134848 -g1,10591:17063589,44134848 -g1,10591:17379735,44134848 -g1,10591:17695881,44134848 -g1,10591:18012027,44134848 -g1,10591:18328173,44134848 -g1,10591:18644319,44134848 -g1,10591:18960465,44134848 -g1,10591:20225048,44134848 -g1,10591:20541194,44134848 -g1,10591:20857340,44134848 -g1,10591:21173486,44134848 -g1,10591:21489632,44134848 -g1,10591:21805778,44134848 -g1,10591:22121924,44134848 -g1,10591:22438070,44134848 -g1,10591:22754216,44134848 -g1,10591:24018799,44134848 -h1,10591:25915673,44134848:0,0,0 -k1,10591:32583029,44134848:6667356 -g1,10591:32583029,44134848 -) -(1,10593:6630773,45456386:25952256,404226,9436 -(1,10592:6630773,45456386:0,0,0 -g1,10592:6630773,45456386 -g1,10592:6630773,45456386 -g1,10592:6303093,45456386 -(1,10592:6303093,45456386:0,0,0 -) -g1,10592:6630773,45456386 -) -g1,10593:9159939,45456386 -k1,10593:9159939,45456386:0 -h1,10593:10424521,45456386:0,0,0 -k1,10593:32583029,45456386:22158508 -g1,10593:32583029,45456386 -) -] -) -g1,10606:32583029,45465822 -g1,10606:6630773,45465822 -g1,10606:6630773,45465822 -g1,10606:32583029,45465822 -g1,10606:32583029,45465822 -) -] -(1,10606:32583029,45706769:0,0,0 -g1,10606:32583029,45706769 -) -) -] -(1,10606:6630773,47279633:25952256,0,0 -h1,10606:6630773,47279633:25952256,0,0 -) -] -h1,10606:4262630,4025873:0,0,0 -] -!28805 +k1,10611:3078556,49800853:-34777008 +) +] +g1,10611:6630773,4812305 +k1,10611:25241686,4812305:17415536 +g1,10611:26807341,4812305 +g1,10611:30339731,4812305 +g1,10611:31154998,4812305 +) +) +] +[1,10611:6630773,45706769:25952256,40108032,0 +(1,10611:6630773,45706769:25952256,40108032,0 +(1,10611:6630773,45706769:0,0,0 +g1,10611:6630773,45706769 +) +[1,10611:6630773,45706769:25952256,40108032,0 +(1,10562:6630773,6254097:25952256,513147,134348 +h1,10559:6630773,6254097:983040,0,0 +k1,10559:10759978,6254097:183282 +k1,10559:12663580,6254097:183282 +k1,10559:13951145,6254097:183283 +k1,10559:15850160,6254097:183282 +k1,10559:18194819,6254097:183282 +k1,10559:20808831,6254097:183282 +k1,10559:22346088,6254097:183283 +k1,10559:25291713,6254097:183282 +k1,10559:27042616,6254097:183282 +k1,10559:28244983,6254097:183282 +k1,10559:29520751,6254097:183283 +k1,10559:30363325,6254097:183282 +k1,10562:32583029,6254097:0 +) +(1,10562:6630773,7095585:25952256,513147,126483 +k1,10559:8789479,7095585:189349 +k1,10559:9638119,7095585:189348 +k1,10559:13885457,7095585:189349 +k1,10559:16247980,7095585:189349 +k1,10559:17088756,7095585:189348 +k1,10559:20293416,7095585:189349 +k1,10559:22050386,7095585:189349 +k1,10559:23258820,7095585:189349 +k1,10559:25136375,7095585:189348 +k1,10559:25985016,7095585:189349 +k1,10559:27601084,7095585:189349 +k1,10559:28449724,7095585:189348 +k1,10559:30028436,7095585:189349 +k1,10559:32583029,7095585:0 +) +(1,10562:6630773,7937073:25952256,513147,126483 +k1,10559:8376148,7937073:196759 +k1,10559:10618941,7937073:196759 +k1,10559:12536020,7937073:196759 +k1,10559:14334479,7937073:196759 +k1,10559:18013821,7937073:196759 +k1,10559:18862008,7937073:196759 +k1,10559:20151253,7937073:196760 +k1,10559:21339572,7937073:196759 +k1,10559:23228471,7937073:196759 +k1,10559:24084522,7937073:196759 +k1,10559:25300366,7937073:196759 +k1,10559:26780320,7937073:196759 +k1,10559:29383561,7937073:196759 +k1,10559:32583029,7937073:0 +) +(1,10562:6630773,8778561:25952256,513147,134348 +g1,10559:8021447,8778561 +g1,10559:11005301,8778561 +g1,10559:13586108,8778561 +g1,10559:14401375,8778561 +g1,10559:16579136,8778561 +g1,10559:18924669,8778561 +g1,10559:20315343,8778561 +g1,10559:22216542,8778561 +g1,10559:25326225,8778561 +g1,10559:27093075,8778561 +g1,10559:28311389,8778561 +g1,10559:31892275,8778561 +g1,10560:31892275,8778561 +k1,10562:32583029,8778561:690754 +g1,10562:32583029,8778561 +) +(1,10563:6630773,11586129:25952256,32768,229376 +(1,10563:6630773,11586129:0,32768,229376 +(1,10563:6630773,11586129:5505024,32768,229376 +r1,10563:12135797,11586129:5505024,262144,229376 +) +k1,10563:6630773,11586129:-5505024 +) +(1,10563:6630773,11586129:25952256,32768,0 +r1,10563:32583029,11586129:25952256,32768,0 +) +) +(1,10563:6630773,13190457:25952256,606339,161218 +(1,10563:6630773,13190457:1974731,582746,14155 +g1,10563:6630773,13190457 +g1,10563:8605504,13190457 +) +g1,10563:12976493,13190457 +g1,10563:14989759,13190457 +k1,10563:32583029,13190457:15265432 +g1,10563:32583029,13190457 +) +(1,10567:6630773,14425161:25952256,513147,134348 +k1,10566:8280878,14425161:178166 +k1,10566:10497213,14425161:178165 +k1,10566:11291417,14425161:178166 +k1,10566:14394455,14425161:178166 +k1,10566:17083304,14425161:178165 +k1,10566:18365752,14425161:178166 +k1,10566:19291683,14425161:178165 +k1,10566:22315422,14425161:178166 +k1,10566:23109626,14425161:178166 +k1,10566:26050134,14425161:178165 +k1,10566:27970247,14425161:178166 +k1,10566:28776248,14425161:178166 +k1,10566:30388341,14425161:178165 +k1,10566:30981329,14425161:178145 +k1,10566:32583029,14425161:0 +) +(1,10567:6630773,15266649:25952256,513147,134348 +k1,10566:8778387,15266649:159907 +k1,10566:10872916,15266649:159906 +k1,10566:14058620,15266649:159907 +k1,10566:15409971,15266649:159906 +k1,10566:16588963,15266649:159907 +(1,10566:16588963,15266649:0,452978,115847 +r1,10566:18705788,15266649:2116825,568825,115847 +k1,10566:16588963,15266649:-2116825 +) +(1,10566:16588963,15266649:2116825,452978,115847 +k1,10566:16588963,15266649:3277 +h1,10566:18702511,15266649:0,411205,112570 +) +k1,10566:18865694,15266649:159906 +k1,10566:21479924,15266649:159907 +k1,10566:23375223,15266649:159906 +k1,10566:25937025,15266649:159907 +k1,10566:28970685,15266649:159906 +k1,10566:30322037,15266649:159907 +k1,10567:32583029,15266649:0 +) +(1,10567:6630773,16108137:25952256,513147,134348 +k1,10566:7850890,16108137:229868 +k1,10566:9470120,16108137:229867 +k1,10566:12080256,16108137:229868 +k1,10566:14381061,16108137:229867 +k1,10566:16000292,16108137:229868 +k1,10566:16881587,16108137:229867 +k1,10566:17859221,16108137:229868 +k1,10566:20934661,16108137:229867 +k1,10566:21780567,16108137:229868 +k1,10566:23699298,16108137:229868 +k1,10566:25796941,16108137:229867 +k1,10566:26751637,16108137:229868 +k1,10566:28266010,16108137:229867 +k1,10566:29947500,16108137:229868 +k1,10566:31381263,16108137:229867 +k1,10566:32227169,16108137:229868 +k1,10566:32583029,16108137:0 +) +(1,10567:6630773,16949625:25952256,513147,134348 +k1,10566:8221277,16949625:201141 +k1,10566:10298714,16949625:201141 +k1,10566:14463472,16949625:201141 +k1,10566:15316041,16949625:201141 +k1,10566:15873042,16949625:201141 +k1,10566:17947202,16949625:201141 +k1,10566:21889792,16949625:201140 +k1,10566:22980912,16949625:201141 +k1,10566:27732218,16949625:201141 +k1,10566:29656956,16949625:201141 +k1,10566:30667467,16949625:201141 +k1,10566:31224468,16949625:201141 +k1,10567:32583029,16949625:0 +) +(1,10567:6630773,17791113:25952256,513147,134348 +k1,10566:8191483,17791113:222465 +k1,10566:9889163,17791113:222465 +k1,10566:12494517,17791113:222465 +k1,10566:16680599,17791113:222465 +k1,10566:17554492,17791113:222465 +k1,10566:18132817,17791113:222465 +k1,10566:21117625,17791113:222465 +k1,10566:24464847,17791113:222465 +k1,10566:27136392,17791113:222465 +k1,10566:28784265,17791113:222465 +k1,10566:29666022,17791113:222465 +k1,10567:32583029,17791113:0 +) +(1,10567:6630773,18632601:25952256,513147,134348 +k1,10566:8702783,18632601:259284 +k1,10566:9644953,18632601:259285 +k1,10566:10260097,18632601:259284 +k1,10566:12413371,18632601:259284 +k1,10566:15984845,18632601:259284 +k1,10566:16599990,18632601:259285 +k1,10566:21003115,18632601:259284 +k1,10566:21921691,18632601:259284 +k1,10566:24821421,18632601:259284 +k1,10566:28197598,18632601:259285 +k1,10566:29108310,18632601:259284 +k1,10566:32583029,18632601:0 +) +(1,10567:6630773,19474089:25952256,513147,134348 +k1,10566:7544881,19474089:231223 +k1,10566:10381815,19474089:231223 +k1,10566:11272330,19474089:231223 +k1,10566:12522638,19474089:231223 +k1,10566:16923917,19474089:231223 +k1,10566:19243771,19474089:231222 +k1,10566:20924650,19474089:231223 +k1,10566:23593157,19474089:231223 +k1,10566:27167371,19474089:231223 +k1,10566:30523351,19474089:231223 +k1,10566:31563944,19474089:231223 +k1,10566:32583029,19474089:0 +) +(1,10567:6630773,20315577:25952256,505283,134348 +k1,10566:8507724,20315577:223478 +k1,10566:11041346,20315577:223478 +k1,10566:11877586,20315577:223478 +k1,10566:12871767,20315577:223478 +k1,10566:15128826,20315577:223477 +k1,10566:17040511,20315577:223478 +k1,10566:17880027,20315577:223478 +k1,10566:19528913,20315577:223478 +k1,10566:21089325,20315577:223478 +k1,10566:22598619,20315577:223478 +k1,10566:23569863,20315577:223478 +k1,10566:25831511,20315577:223478 +k1,10566:26671026,20315577:223477 +k1,10566:27250364,20315577:223478 +k1,10566:30030401,20315577:223478 +k1,10566:31725818,20315577:223478 +k1,10567:32583029,20315577:0 +) +(1,10567:6630773,21157065:25952256,513147,134348 +k1,10566:8999637,21157065:167510 +k1,10566:9783185,21157065:167510 +k1,10566:11315155,21157065:167510 +k1,10566:13026693,21157065:167509 +k1,10566:14295208,21157065:167510 +k1,10566:15972668,21157065:167510 +k1,10566:19641111,21157065:167510 +k1,10566:20494783,21157065:167510 +k1,10566:22502544,21157065:167510 +k1,10566:23861499,21157065:167510 +k1,10566:25232250,21157065:167510 +k1,10566:25931256,21157065:167509 +k1,10566:28874871,21157065:167510 +k1,10566:29658419,21157065:167510 +k1,10566:30845014,21157065:167510 +k1,10566:32583029,21157065:0 +) +(1,10567:6630773,21998553:25952256,513147,134348 +k1,10566:8585002,21998553:259468 +k1,10566:9495898,21998553:259468 +k1,10566:10774451,21998553:259468 +k1,10566:14241905,21998553:259467 +k1,10566:16051955,21998553:259468 +k1,10566:16970715,21998553:259468 +k1,10566:20314307,21998553:259468 +k1,10566:22045714,21998553:259468 +k1,10566:22921220,21998553:259468 +k1,10566:25066158,21998553:259467 +k1,10566:28038817,21998553:259468 +k1,10566:31931601,21998553:259468 +k1,10566:32583029,21998553:0 +) +(1,10567:6630773,22840041:25952256,513147,134348 +g1,10566:11173073,22840041 +g1,10566:13426200,22840041 +g1,10566:14156926,22840041 +g1,10566:17446178,22840041 +g1,10566:18331569,22840041 +g1,10566:20268813,22840041 +g1,10566:21084080,22840041 +g1,10566:21639169,22840041 +g1,10566:23293297,22840041 +k1,10567:32583029,22840041:7573344 +g1,10567:32583029,22840041 +) +(1,10569:6630773,23681529:25952256,513147,134348 +h1,10568:6630773,23681529:983040,0,0 +k1,10568:10719624,23681529:142928 +k1,10568:14031873,23681529:142928 +k1,10568:15564164,23681529:142928 +k1,10568:16238589,23681529:142928 +k1,10568:17572962,23681529:142928 +k1,10568:18816894,23681529:142927 +k1,10568:20469772,23681529:142928 +k1,10568:21631785,23681529:142928 +k1,10568:23376413,23681529:142928 +k1,10568:26862988,23681529:142928 +k1,10568:28519142,23681529:142928 +k1,10568:32583029,23681529:0 +) +(1,10569:6630773,24523017:25952256,513147,126483 +k1,10568:7443419,24523017:153354 +k1,10568:8986136,24523017:153354 +k1,10568:9755528,24523017:153354 +k1,10568:10497396,24523017:153355 +k1,10568:14906658,24523017:153354 +k1,10568:15719304,24523017:153354 +k1,10568:17366224,24523017:153354 +k1,10568:18908941,24523017:153354 +k1,10568:20163300,24523017:153354 +k1,10568:21382925,24523017:153354 +k1,10568:23665544,24523017:153354 +k1,10568:25328849,24523017:153355 +k1,10568:28112163,24523017:153354 +k1,10568:29659468,24523017:153354 +k1,10568:32168186,24523017:153354 +k1,10569:32583029,24523017:0 +) +(1,10569:6630773,25364505:25952256,513147,134348 +k1,10568:10514436,25364505:193331 +k1,10568:11904454,25364505:193331 +k1,10568:15008240,25364505:193332 +k1,10568:15817609,25364505:193331 +k1,10568:17030025,25364505:193331 +k1,10568:20431343,25364505:193331 +k1,10568:23054749,25364505:193331 +k1,10568:27154682,25364505:193332 +k1,10568:30373810,25364505:193331 +k1,10568:31218569,25364505:193331 +k1,10569:32583029,25364505:0 +) +(1,10569:6630773,26205993:25952256,513147,134348 +k1,10568:8222260,26205993:138554 +k1,10568:10499909,26205993:138554 +k1,10568:11297755,26205993:138554 +k1,10568:12825672,26205993:138554 +k1,10568:17393804,26205993:138554 +k1,10568:19417829,26205993:138554 +k1,10568:20172421,26205993:138554 +k1,10568:22003115,26205993:138554 +k1,10568:24012722,26205993:138554 +k1,10568:25800162,26205993:138554 +k1,10568:26554754,26205993:138554 +k1,10568:29532983,26205993:138554 +k1,10568:32583029,26205993:0 +) +(1,10569:6630773,27047481:25952256,513147,126483 +k1,10568:10925292,27047481:218835 +k1,10568:14325246,27047481:218836 +k1,10568:15195509,27047481:218835 +k1,10568:16848273,27047481:218836 +k1,10568:19206859,27047481:218835 +k1,10568:19883792,27047481:218836 +k1,10568:20634124,27047481:218835 +k1,10568:23482919,27047481:218835 +k1,10568:24353183,27047481:218836 +k1,10568:26068205,27047481:218835 +k1,10568:27306126,27047481:218836 +k1,10568:29178434,27047481:218835 +k1,10568:32583029,27047481:0 +) +(1,10569:6630773,27888969:25952256,505283,134348 +g1,10568:8565395,27888969 +g1,10568:10140225,27888969 +g1,10568:11773382,27888969 +g1,10568:12561124,27888969 +g1,10568:13832522,27888969 +g1,10568:15368685,27888969 +g1,10568:17859708,27888969 +g1,10568:19709134,27888969 +g1,10568:22118237,27888969 +g1,10568:23967663,27888969 +g1,10568:26632356,27888969 +k1,10569:32583029,27888969:2260341 +g1,10569:32583029,27888969 +) +(1,10571:6630773,28730457:25952256,513147,126483 +h1,10570:6630773,28730457:983040,0,0 +k1,10570:11228426,28730457:218537 +k1,10570:12836326,28730457:218537 +k1,10570:13586360,28730457:218537 +k1,10570:15756560,28730457:218538 +k1,10570:19280078,28730457:218537 +k1,10570:21536785,28730457:218537 +k1,10570:22371360,28730457:218537 +k1,10570:24080186,28730457:218537 +k1,10570:26479106,28730457:218537 +k1,10570:27380529,28730457:218538 +k1,10570:29065762,28730457:218537 +k1,10570:30060901,28730457:218537 +k1,10570:31422386,28730457:218537 +k1,10571:32583029,28730457:0 +) +(1,10571:6630773,29571945:25952256,513147,134348 +k1,10570:8517472,29571945:149995 +k1,10570:9392296,29571945:149996 +k1,10570:10158329,29571945:149995 +k1,10570:12060102,29571945:149996 +k1,10570:13907479,29571945:149995 +k1,10570:15076560,29571945:149996 +k1,10570:16532688,29571945:149995 +k1,10570:18018308,29571945:149996 +k1,10570:18784341,29571945:149995 +k1,10570:20323700,29571945:149996 +k1,10570:23028288,29571945:149995 +k1,10570:23709781,29571945:149996 +k1,10570:24511204,29571945:149995 +k1,10570:27165986,29571945:149996 +k1,10570:28335066,29571945:149995 +k1,10570:30048096,29571945:149996 +k1,10570:32583029,29571945:0 +) +(1,10571:6630773,30413433:25952256,513147,134348 +k1,10570:8597609,30413433:161975 +k1,10570:11519959,30413433:161974 +k1,10570:14707731,30413433:161975 +k1,10570:15817357,30413433:161975 +k1,10570:19127025,30413433:161974 +k1,10570:20678363,30413433:161975 +k1,10570:22407959,30413433:161975 +k1,10570:24060223,30413433:161975 +k1,10570:24873625,30413433:161974 +k1,10570:26424308,30413433:161975 +k1,10570:28153904,30413433:161975 +k1,10570:29507323,30413433:161974 +k1,10570:30883025,30413433:161975 +k1,10571:32583029,30413433:0 +) +(1,10571:6630773,31254921:25952256,505283,134348 +g1,10570:9978352,31254921 +g1,10570:11196666,31254921 +g1,10570:13051990,31254921 +g1,10570:16161673,31254921 +g1,10570:19220892,31254921 +g1,10570:20611566,31254921 +k1,10571:32583029,31254921:8315866 +g1,10571:32583029,31254921 +) +(1,10574:6630773,32096409:25952256,505283,126483 +h1,10573:6630773,32096409:983040,0,0 +k1,10573:8722510,32096409:155148 +k1,10573:9970143,32096409:155148 +k1,10573:10741330,32096409:155149 +k1,10573:13888197,32096409:155148 +k1,10573:15911776,32096409:155148 +k1,10573:17086009,32096409:155148 +(1,10573:17086009,32096409:0,452978,115847 +r1,10573:18499410,32096409:1413401,568825,115847 +k1,10573:17086009,32096409:-1413401 +) +(1,10573:17086009,32096409:1413401,452978,115847 +k1,10573:17086009,32096409:3277 +h1,10573:18496133,32096409:0,411205,112570 +) +k1,10573:18654558,32096409:155148 +k1,10573:20199070,32096409:155149 +k1,10573:21288761,32096409:155148 +k1,10573:24202319,32096409:155148 +k1,10573:24973505,32096409:155148 +k1,10573:26562582,32096409:155149 +k1,10573:27306243,32096409:155148 +k1,10573:29178434,32096409:155148 +k1,10573:32583029,32096409:0 +) +(1,10574:6630773,32937897:25952256,505283,134348 +k1,10573:7684702,32937897:244559 +k1,10573:8344058,32937897:244513 +(1,10573:8344058,32937897:0,459977,115847 +r1,10573:11867730,32937897:3523672,575824,115847 +k1,10573:8344058,32937897:-3523672 +) +(1,10573:8344058,32937897:3523672,459977,115847 +k1,10573:8344058,32937897:3277 +h1,10573:11864453,32937897:0,411205,112570 +) +k1,10573:12112289,32937897:244559 +k1,10573:14646676,32937897:244559 +k1,10573:16285186,32937897:244559 +k1,10573:19737732,32937897:244559 +k1,10573:22892745,32937897:244559 +k1,10573:24269766,32937897:244559 +k1,10573:26524970,32937897:244559 +(1,10573:26524970,32937897:0,459977,115847 +r1,10573:30048642,32937897:3523672,575824,115847 +k1,10573:26524970,32937897:-3523672 +) +(1,10573:26524970,32937897:3523672,459977,115847 +k1,10573:26524970,32937897:3277 +h1,10573:30045365,32937897:0,411205,112570 +) +k1,10573:30293201,32937897:244559 +k1,10573:32583029,32937897:0 +) +(1,10574:6630773,33779385:25952256,513147,134348 +k1,10573:8525545,33779385:205254 +k1,10573:10763071,33779385:205255 +k1,10573:12100787,33779385:205254 +k1,10573:14316686,33779385:205254 +k1,10573:18388565,33779385:205255 +(1,10573:18388565,33779385:0,452978,115847 +r1,10573:19801966,33779385:1413401,568825,115847 +k1,10573:18388565,33779385:-1413401 +) +(1,10573:18388565,33779385:1413401,452978,115847 +k1,10573:18388565,33779385:3277 +h1,10573:19798689,33779385:0,411205,112570 +) +k1,10573:20007220,33779385:205254 +k1,10573:22675972,33779385:205254 +k1,10573:27228230,33779385:205255 +k1,10573:27891581,33779385:205254 +k1,10573:28628332,33779385:205254 +k1,10573:30420214,33779385:205255 +k1,10573:31276896,33779385:205254 +k1,10573:32583029,33779385:0 +) +(1,10574:6630773,34620873:25952256,513147,7863 +g1,10573:9222721,34620873 +g1,10573:10689416,34620873 +g1,10573:13030362,34620873 +g1,10573:14248676,34620873 +g1,10573:15837268,34620873 +g1,10573:18243094,34620873 +g1,10573:19310675,34620873 +g1,10573:20642366,34620873 +g1,10573:22438052,34620873 +k1,10574:32583029,34620873:8577356 +g1,10574:32583029,34620873 +) +v1,10576:6630773,35811339:0,393216,0 +(1,10580:6630773,36094978:25952256,676855,196608 +g1,10580:6630773,36094978 +g1,10580:6630773,36094978 +g1,10580:6434165,36094978 +(1,10580:6434165,36094978:0,676855,196608 +r1,10580:32779637,36094978:26345472,873463,196608 +k1,10580:6434165,36094978:-26345472 +) +(1,10580:6434165,36094978:26345472,676855,196608 +[1,10580:6630773,36094978:25952256,480247,0 +(1,10578:6630773,36018957:25952256,404226,76021 +(1,10577:6630773,36018957:0,0,0 +g1,10577:6630773,36018957 +g1,10577:6630773,36018957 +g1,10577:6303093,36018957 +(1,10577:6303093,36018957:0,0,0 +) +g1,10577:6630773,36018957 +) +g1,10578:9159939,36018957 +g1,10578:10108377,36018957 +k1,10578:10108377,36018957:0 +h1,10578:14850562,36018957:0,0,0 +k1,10578:32583030,36018957:17732468 +g1,10578:32583030,36018957 +) +] +) +g1,10580:32583029,36094978 +g1,10580:6630773,36094978 +g1,10580:6630773,36094978 +g1,10580:32583029,36094978 +g1,10580:32583029,36094978 +) +h1,10580:6630773,36291586:0,0,0 +(1,10584:6630773,37657362:25952256,513147,134348 +h1,10583:6630773,37657362:983040,0,0 +k1,10583:10598085,37657362:194404 +(1,10583:10598085,37657362:0,452978,122846 +r1,10583:13418334,37657362:2820249,575824,122846 +k1,10583:10598085,37657362:-2820249 +) +(1,10583:10598085,37657362:2820249,452978,122846 +k1,10583:10598085,37657362:3277 +h1,10583:13415057,37657362:0,411205,112570 +) +k1,10583:13612738,37657362:194404 +k1,10583:16530162,37657362:194403 +k1,10583:18113929,37657362:194404 +k1,10583:19875954,37657362:194404 +k1,10583:21560647,37657362:194404 +k1,10583:23322672,37657362:194404 +k1,10583:24784542,37657362:194404 +k1,10583:26367653,37657362:194403 +k1,10583:28129678,37657362:194404 +k1,10583:29214061,37657362:194404 +k1,10583:31629480,37657362:194404 +k1,10583:32583029,37657362:0 +) +(1,10584:6630773,38498850:25952256,513147,134348 +k1,10583:7932750,38498850:209492 +(1,10583:7932750,38498850:0,452978,122846 +r1,10583:10049575,38498850:2116825,575824,122846 +k1,10583:7932750,38498850:-2116825 +) +(1,10583:7932750,38498850:2116825,452978,122846 +k1,10583:7932750,38498850:3277 +h1,10583:10046298,38498850:0,411205,112570 +) +k1,10583:10259067,38498850:209492 +k1,10583:11119987,38498850:209492 +k1,10583:13353231,38498850:209492 +k1,10583:13918583,38498850:209492 +k1,10583:17297396,38498850:209492 +k1,10583:19491974,38498850:209492 +k1,10583:20461684,38498850:209492 +k1,10583:24074461,38498850:209492 +(1,10583:24074461,38498850:0,452978,115847 +r1,10583:26542998,38498850:2468537,568825,115847 +k1,10583:24074461,38498850:-2468537 +) +(1,10583:24074461,38498850:2468537,452978,115847 +k1,10583:24074461,38498850:3277 +h1,10583:26539721,38498850:0,411205,112570 +) +k1,10583:26752490,38498850:209492 +k1,10583:28355933,38498850:209492 +(1,10583:28355933,38498850:0,452978,122846 +r1,10583:32583029,38498850:4227096,575824,122846 +k1,10583:28355933,38498850:-4227096 +) +(1,10583:28355933,38498850:4227096,452978,122846 +k1,10583:28355933,38498850:3277 +h1,10583:32579752,38498850:0,411205,112570 +) +k1,10583:32583029,38498850:0 +) +(1,10584:6630773,39340338:25952256,505283,126483 +g1,10583:7698354,39340338 +g1,10583:9001865,39340338 +g1,10583:12529012,39340338 +g1,10583:14058622,39340338 +(1,10583:14058622,39340338:0,452978,122846 +r1,10583:16878871,39340338:2820249,575824,122846 +k1,10583:14058622,39340338:-2820249 +) +(1,10583:14058622,39340338:2820249,452978,122846 +k1,10583:14058622,39340338:3277 +h1,10583:16875594,39340338:0,411205,112570 +) +g1,10583:17078100,39340338 +g1,10583:20202856,39340338 +g1,10583:21190483,39340338 +k1,10584:32583029,39340338:9510352 +g1,10584:32583029,39340338 +) +v1,10586:6630773,40530804:0,393216,0 +(1,10611:6630773,45465822:25952256,5328234,196608 +g1,10611:6630773,45465822 +g1,10611:6630773,45465822 +g1,10611:6434165,45465822 +(1,10611:6434165,45465822:0,5328234,196608 +r1,10611:32779637,45465822:26345472,5524842,196608 +k1,10611:6434165,45465822:-26345472 +) +(1,10611:6434165,45465822:26345472,5328234,196608 +[1,10611:6630773,45465822:25952256,5131626,0 +(1,10588:6630773,40738422:25952256,404226,82312 +(1,10587:6630773,40738422:0,0,0 +g1,10587:6630773,40738422 +g1,10587:6630773,40738422 +g1,10587:6303093,40738422 +(1,10587:6303093,40738422:0,0,0 +) +g1,10587:6630773,40738422 +) +k1,10588:6630773,40738422:0 +g1,10588:11056813,40738422 +h1,10588:11689105,40738422:0,0,0 +k1,10588:32583029,40738422:20893924 +g1,10588:32583029,40738422 +) +(1,10596:6630773,41470136:25952256,404226,9436 +(1,10590:6630773,41470136:0,0,0 +g1,10590:6630773,41470136 +g1,10590:6630773,41470136 +g1,10590:6303093,41470136 +(1,10590:6303093,41470136:0,0,0 +) +g1,10590:6630773,41470136 +) +g1,10596:7579210,41470136 +g1,10596:8211502,41470136 +g1,10596:8843794,41470136 +g1,10596:11372960,41470136 +g1,10596:12005252,41470136 +g1,10596:12637544,41470136 +h1,10596:12953690,41470136:0,0,0 +k1,10596:32583030,41470136:19629340 +g1,10596:32583030,41470136 +) +(1,10596:6630773,42136314:25952256,404226,107478 +h1,10596:6630773,42136314:0,0,0 +g1,10596:7579210,42136314 +g1,10596:7895356,42136314 +g1,10596:8211502,42136314 +g1,10596:12321396,42136314 +g1,10596:16115144,42136314 +g1,10596:20225038,42136314 +g1,10596:24018786,42136314 +h1,10596:26231806,42136314:0,0,0 +k1,10596:32583029,42136314:6351223 +g1,10596:32583029,42136314 +) +(1,10596:6630773,42802492:25952256,410518,6290 +h1,10596:6630773,42802492:0,0,0 +g1,10596:7579210,42802492 +g1,10596:7895356,42802492 +g1,10596:8211502,42802492 +g1,10596:8527648,42802492 +g1,10596:8843794,42802492 +g1,10596:9159940,42802492 +g1,10596:9476086,42802492 +g1,10596:9792232,42802492 +g1,10596:10108378,42802492 +g1,10596:10424524,42802492 +g1,10596:12321399,42802492 +g1,10596:12637545,42802492 +g1,10596:12953691,42802492 +g1,10596:13269837,42802492 +g1,10596:13585983,42802492 +g1,10596:13902129,42802492 +g1,10596:14218275,42802492 +g1,10596:16115150,42802492 +g1,10596:16431296,42802492 +g1,10596:16747442,42802492 +g1,10596:17063588,42802492 +g1,10596:17379734,42802492 +g1,10596:17695880,42802492 +g1,10596:18012026,42802492 +g1,10596:18328172,42802492 +g1,10596:20225047,42802492 +g1,10596:20541193,42802492 +g1,10596:20857339,42802492 +g1,10596:21173485,42802492 +g1,10596:21489631,42802492 +g1,10596:21805777,42802492 +g1,10596:22121923,42802492 +g1,10596:24018798,42802492 +k1,10596:24018798,42802492:0 +h1,10596:25599527,42802492:0,0,0 +k1,10596:32583029,42802492:6983502 +g1,10596:32583029,42802492 +) +(1,10596:6630773,43468670:25952256,388497,9436 +h1,10596:6630773,43468670:0,0,0 +g1,10596:7579210,43468670 +g1,10596:8211502,43468670 +g1,10596:8527648,43468670 +g1,10596:8843794,43468670 +g1,10596:9159940,43468670 +g1,10596:9476086,43468670 +g1,10596:9792232,43468670 +g1,10596:10108378,43468670 +g1,10596:10424524,43468670 +g1,10596:10740670,43468670 +g1,10596:11056816,43468670 +g1,10596:12321399,43468670 +g1,10596:12637545,43468670 +g1,10596:12953691,43468670 +g1,10596:13269837,43468670 +g1,10596:13585983,43468670 +g1,10596:13902129,43468670 +g1,10596:14218275,43468670 +g1,10596:14534421,43468670 +g1,10596:14850567,43468670 +g1,10596:16115150,43468670 +g1,10596:16431296,43468670 +g1,10596:16747442,43468670 +g1,10596:17063588,43468670 +g1,10596:17379734,43468670 +g1,10596:17695880,43468670 +g1,10596:18012026,43468670 +g1,10596:18328172,43468670 +g1,10596:18644318,43468670 +g1,10596:18960464,43468670 +g1,10596:20225047,43468670 +g1,10596:20541193,43468670 +g1,10596:20857339,43468670 +g1,10596:21173485,43468670 +g1,10596:21489631,43468670 +g1,10596:21805777,43468670 +g1,10596:22121923,43468670 +g1,10596:22438069,43468670 +g1,10596:22754215,43468670 +g1,10596:24018798,43468670 +h1,10596:25915672,43468670:0,0,0 +k1,10596:32583029,43468670:6667357 +g1,10596:32583029,43468670 +) +(1,10596:6630773,44134848:25952256,388497,9436 +h1,10596:6630773,44134848:0,0,0 +g1,10596:7579210,44134848 +g1,10596:8211502,44134848 +g1,10596:8527648,44134848 +g1,10596:8843794,44134848 +g1,10596:9159940,44134848 +g1,10596:9476086,44134848 +g1,10596:9792232,44134848 +g1,10596:10108378,44134848 +g1,10596:10424524,44134848 +g1,10596:10740670,44134848 +g1,10596:11056816,44134848 +g1,10596:12321399,44134848 +g1,10596:12637545,44134848 +g1,10596:12953691,44134848 +g1,10596:13269837,44134848 +g1,10596:13585983,44134848 +g1,10596:13902129,44134848 +g1,10596:14218275,44134848 +g1,10596:14534421,44134848 +g1,10596:14850567,44134848 +g1,10596:15482859,44134848 +g1,10596:15799005,44134848 +g1,10596:16115151,44134848 +g1,10596:16431297,44134848 +g1,10596:16747443,44134848 +g1,10596:17063589,44134848 +g1,10596:17379735,44134848 +g1,10596:17695881,44134848 +g1,10596:18012027,44134848 +g1,10596:18328173,44134848 +g1,10596:18644319,44134848 +g1,10596:18960465,44134848 +g1,10596:20225048,44134848 +g1,10596:20541194,44134848 +g1,10596:20857340,44134848 +g1,10596:21173486,44134848 +g1,10596:21489632,44134848 +g1,10596:21805778,44134848 +g1,10596:22121924,44134848 +g1,10596:22438070,44134848 +g1,10596:22754216,44134848 +g1,10596:24018799,44134848 +h1,10596:25915673,44134848:0,0,0 +k1,10596:32583029,44134848:6667356 +g1,10596:32583029,44134848 +) +(1,10598:6630773,45456386:25952256,404226,9436 +(1,10597:6630773,45456386:0,0,0 +g1,10597:6630773,45456386 +g1,10597:6630773,45456386 +g1,10597:6303093,45456386 +(1,10597:6303093,45456386:0,0,0 +) +g1,10597:6630773,45456386 +) +g1,10598:9159939,45456386 +k1,10598:9159939,45456386:0 +h1,10598:10424521,45456386:0,0,0 +k1,10598:32583029,45456386:22158508 +g1,10598:32583029,45456386 +) +] +) +g1,10611:32583029,45465822 +g1,10611:6630773,45465822 +g1,10611:6630773,45465822 +g1,10611:32583029,45465822 +g1,10611:32583029,45465822 +) +] +(1,10611:32583029,45706769:0,0,0 +g1,10611:32583029,45706769 +) +) +] +(1,10611:6630773,47279633:25952256,0,0 +h1,10611:6630773,47279633:25952256,0,0 +) +] +h1,10611:4262630,4025873:0,0,0 +] +!28838 }199 -Input:1331:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1332:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1333:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1334:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1335:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1336:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {200 -[1,10656:4262630,47279633:28320399,43253760,0 -(1,10656:4262630,4025873:0,0,0 -[1,10656:-473657,4025873:25952256,0,0 -(1,10656:-473657,-710414:25952256,0,0 -h1,10656:-473657,-710414:0,0,0 -(1,10656:-473657,-710414:0,0,0 -(1,10656:-473657,-710414:0,0,0 -g1,10656:-473657,-710414 -(1,10656:-473657,-710414:65781,0,65781 -g1,10656:-407876,-710414 -[1,10656:-407876,-644633:0,0,0 +[1,10661:4262630,47279633:28320399,43253760,0 +(1,10661:4262630,4025873:0,0,0 +[1,10661:-473657,4025873:25952256,0,0 +(1,10661:-473657,-710414:25952256,0,0 +h1,10661:-473657,-710414:0,0,0 +(1,10661:-473657,-710414:0,0,0 +(1,10661:-473657,-710414:0,0,0 +g1,10661:-473657,-710414 +(1,10661:-473657,-710414:65781,0,65781 +g1,10661:-407876,-710414 +[1,10661:-407876,-644633:0,0,0 ] ) -k1,10656:-473657,-710414:-65781 +k1,10661:-473657,-710414:-65781 ) ) -k1,10656:25478599,-710414:25952256 -g1,10656:25478599,-710414 +k1,10661:25478599,-710414:25952256 +g1,10661:25478599,-710414 ) ] ) -[1,10656:6630773,47279633:25952256,43253760,0 -[1,10656:6630773,4812305:25952256,786432,0 -(1,10656:6630773,4812305:25952256,505283,134348 -(1,10656:6630773,4812305:25952256,505283,134348 -g1,10656:3078558,4812305 -[1,10656:3078558,4812305:0,0,0 -(1,10656:3078558,2439708:0,1703936,0 -k1,10656:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10656:2537886,2439708:1179648,16384,0 +[1,10661:6630773,47279633:25952256,43253760,0 +[1,10661:6630773,4812305:25952256,786432,0 +(1,10661:6630773,4812305:25952256,505283,134348 +(1,10661:6630773,4812305:25952256,505283,134348 +g1,10661:3078558,4812305 +[1,10661:3078558,4812305:0,0,0 +(1,10661:3078558,2439708:0,1703936,0 +k1,10661:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10661:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10656:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10661:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10656:3078558,4812305:0,0,0 -(1,10656:3078558,2439708:0,1703936,0 -g1,10656:29030814,2439708 -g1,10656:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10656:36151628,1915420:16384,1179648,0 +[1,10661:3078558,4812305:0,0,0 +(1,10661:3078558,2439708:0,1703936,0 +g1,10661:29030814,2439708 +g1,10661:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10661:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10656:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10661:37855564,2439708:1179648,16384,0 ) ) -k1,10656:3078556,2439708:-34777008 +k1,10661:3078556,2439708:-34777008 ) ] -[1,10656:3078558,4812305:0,0,0 -(1,10656:3078558,49800853:0,16384,2228224 -k1,10656:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10656:2537886,49800853:1179648,16384,0 +[1,10661:3078558,4812305:0,0,0 +(1,10661:3078558,49800853:0,16384,2228224 +k1,10661:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10661:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10656:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10661:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10656:3078558,4812305:0,0,0 -(1,10656:3078558,49800853:0,16384,2228224 -g1,10656:29030814,49800853 -g1,10656:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10656:36151628,51504789:16384,1179648,0 +[1,10661:3078558,4812305:0,0,0 +(1,10661:3078558,49800853:0,16384,2228224 +g1,10661:29030814,49800853 +g1,10661:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10661:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10656:37855564,49800853:1179648,16384,0 -) -) -k1,10656:3078556,49800853:-34777008 -) -] -g1,10656:6630773,4812305 -g1,10656:6630773,4812305 -g1,10656:10115322,4812305 -g1,10656:11677700,4812305 -g1,10656:13736840,4812305 -k1,10656:31387652,4812305:17650812 -) -) -] -[1,10656:6630773,45706769:25952256,40108032,0 -(1,10656:6630773,45706769:25952256,40108032,0 -(1,10656:6630773,45706769:0,0,0 -g1,10656:6630773,45706769 -) -[1,10656:6630773,45706769:25952256,40108032,0 -v1,10606:6630773,6254097:0,393216,0 -(1,10606:6630773,11866111:25952256,6005230,196608 -g1,10606:6630773,11866111 -g1,10606:6630773,11866111 -g1,10606:6434165,11866111 -(1,10606:6434165,11866111:0,6005230,196608 -r1,10606:32779637,11866111:26345472,6201838,196608 -k1,10606:6434165,11866111:-26345472 -) -(1,10606:6434165,11866111:26345472,6005230,196608 -[1,10606:6630773,11866111:25952256,5808622,0 -(1,10594:6630773,6461715:25952256,404226,107478 -h1,10594:6630773,6461715:0,0,0 -g1,10594:6946919,6461715 -g1,10594:7263065,6461715 -g1,10594:10424522,6461715 -g1,10594:11689105,6461715 -g1,10594:12321397,6461715 -g1,10594:14218272,6461715 -g1,10594:16115146,6461715 -g1,10594:16747438,6461715 -g1,10594:20225041,6461715 -g1,10594:23386498,6461715 -g1,10594:24334936,6461715 -h1,10594:28128684,6461715:0,0,0 -k1,10594:32583029,6461715:4454345 -g1,10594:32583029,6461715 -) -(1,10595:6630773,7127893:25952256,404226,107478 -h1,10595:6630773,7127893:0,0,0 -h1,10595:10424521,7127893:0,0,0 -k1,10595:32583029,7127893:22158508 -g1,10595:32583029,7127893 -) -(1,10605:6630773,7859607:25952256,404226,9436 -(1,10597:6630773,7859607:0,0,0 -g1,10597:6630773,7859607 -g1,10597:6630773,7859607 -g1,10597:6303093,7859607 -(1,10597:6303093,7859607:0,0,0 -) -g1,10597:6630773,7859607 -) -g1,10605:7579210,7859607 -g1,10605:8211502,7859607 -g1,10605:8843794,7859607 -g1,10605:11372960,7859607 -g1,10605:12637543,7859607 -g1,10605:13269835,7859607 -h1,10605:13585981,7859607:0,0,0 -k1,10605:32583029,7859607:18997048 -g1,10605:32583029,7859607 -) -(1,10605:6630773,8525785:25952256,404226,101187 -h1,10605:6630773,8525785:0,0,0 -g1,10605:7579210,8525785 -g1,10605:7895356,8525785 -g1,10605:8211502,8525785 -g1,10605:10740668,8525785 -g1,10605:12321397,8525785 -g1,10605:12637543,8525785 -g1,10605:12953689,8525785 -g1,10605:13269835,8525785 -g1,10605:13585981,8525785 -g1,10605:13902127,8525785 -g1,10605:14218273,8525785 -g1,10605:14534419,8525785 -g1,10605:14850565,8525785 -h1,10605:17695876,8525785:0,0,0 -k1,10605:32583029,8525785:14887153 -g1,10605:32583029,8525785 -) -(1,10605:6630773,9191963:25952256,410518,6290 -h1,10605:6630773,9191963:0,0,0 -g1,10605:7579210,9191963 -g1,10605:7895356,9191963 -g1,10605:8211502,9191963 -g1,10605:10108377,9191963 -g1,10605:10424523,9191963 -g1,10605:10740669,9191963 -g1,10605:12637544,9191963 -g1,10605:12953690,9191963 -g1,10605:13269836,9191963 -g1,10605:13585982,9191963 -g1,10605:13902128,9191963 -g1,10605:14218274,9191963 -g1,10605:14534420,9191963 -g1,10605:14850566,9191963 -g1,10605:15166712,9191963 -g1,10605:15482858,9191963 -g1,10605:15799004,9191963 -g1,10605:16115150,9191963 -k1,10605:16115150,9191963:0 -h1,10605:17695879,9191963:0,0,0 -k1,10605:32583029,9191963:14887150 -g1,10605:32583029,9191963 -) -(1,10605:6630773,9858141:25952256,404226,107478 -h1,10605:6630773,9858141:0,0,0 -g1,10605:7579210,9858141 -g1,10605:8211502,9858141 -g1,10605:10424522,9858141 -g1,10605:10740668,9858141 -g1,10605:14850562,9858141 -g1,10605:15166708,9858141 -g1,10605:15482854,9858141 -g1,10605:15799000,9858141 -g1,10605:16115146,9858141 -g1,10605:16431292,9858141 -g1,10605:16747438,9858141 -h1,10605:17695875,9858141:0,0,0 -k1,10605:32583029,9858141:14887154 -g1,10605:32583029,9858141 -) -(1,10605:6630773,10524319:25952256,404226,107478 -h1,10605:6630773,10524319:0,0,0 -g1,10605:7579210,10524319 -g1,10605:8211502,10524319 -g1,10605:10424522,10524319 -g1,10605:10740668,10524319 -g1,10605:14850562,10524319 -g1,10605:15166708,10524319 -g1,10605:15482854,10524319 -g1,10605:15799000,10524319 -g1,10605:16115146,10524319 -g1,10605:16431292,10524319 -g1,10605:16747438,10524319 -h1,10605:17695875,10524319:0,0,0 -k1,10605:32583029,10524319:14887154 -g1,10605:32583029,10524319 -) -(1,10605:6630773,11190497:25952256,404226,107478 -h1,10605:6630773,11190497:0,0,0 -g1,10605:7579210,11190497 -g1,10605:8211502,11190497 -g1,10605:10424522,11190497 -g1,10605:10740668,11190497 -g1,10605:14850562,11190497 -g1,10605:15166708,11190497 -g1,10605:15482854,11190497 -g1,10605:15799000,11190497 -g1,10605:16115146,11190497 -g1,10605:16431292,11190497 -g1,10605:16747438,11190497 -h1,10605:17695875,11190497:0,0,0 -k1,10605:32583029,11190497:14887154 -g1,10605:32583029,11190497 -) -(1,10605:6630773,11856675:25952256,404226,9436 -h1,10605:6630773,11856675:0,0,0 -g1,10605:7579210,11856675 -g1,10605:8211502,11856675 -g1,10605:9476085,11856675 -g1,10605:11056814,11856675 -g1,10605:12321397,11856675 -g1,10605:13902126,11856675 -h1,10605:15166709,11856675:0,0,0 -k1,10605:32583029,11856675:17416320 -g1,10605:32583029,11856675 -) -] -) -g1,10606:32583029,11866111 -g1,10606:6630773,11866111 -g1,10606:6630773,11866111 -g1,10606:32583029,11866111 -g1,10606:32583029,11866111 -) -h1,10606:6630773,12062719:0,0,0 -(1,10610:6630773,13428495:25952256,513147,134348 -h1,10609:6630773,13428495:983040,0,0 -k1,10609:8537275,13428495:295627 -k1,10609:10036143,13428495:295627 -k1,10609:13691800,13428495:295626 -k1,10609:14855779,13428495:295627 -k1,10609:16255688,13428495:295627 -k1,10609:17576298,13428495:295627 -k1,10609:18891010,13428495:295627 -k1,10609:23093238,13428495:295627 -k1,10609:24048156,13428495:295626 -k1,10609:27799496,13428495:295627 -k1,10609:29489074,13428495:295627 -k1,10609:32583029,13428495:0 -) -(1,10610:6630773,14269983:25952256,513147,134348 -k1,10609:8799939,14269983:182114 -k1,10609:9929703,14269983:182113 -k1,10609:11130902,14269983:182114 -k1,10609:12596211,14269983:182114 -(1,10609:12803305,14269983:0,414482,115847 -r1,10609:14216706,14269983:1413401,530329,115847 -k1,10609:12803305,14269983:-1413401 -) -(1,10609:12803305,14269983:1413401,414482,115847 -k1,10609:12803305,14269983:3277 -h1,10609:14213429,14269983:0,411205,112570 -) -k1,10609:14398819,14269983:182113 -k1,10609:15772378,14269983:182114 -(1,10609:15772378,14269983:0,452978,115847 -r1,10609:18944338,14269983:3171960,568825,115847 -k1,10609:15772378,14269983:-3171960 -) -(1,10609:15772378,14269983:3171960,452978,115847 -k1,10609:15772378,14269983:3277 -h1,10609:18941061,14269983:0,411205,112570 -) -k1,10609:19333546,14269983:182114 -k1,10609:20707104,14269983:182113 -k1,10609:23380241,14269983:182114 -(1,10609:23587335,14269983:0,452978,115847 -r1,10609:26055872,14269983:2468537,568825,115847 -k1,10609:23587335,14269983:-2468537 -) -(1,10609:23587335,14269983:2468537,452978,115847 -k1,10609:23587335,14269983:3277 -h1,10609:26052595,14269983:0,411205,112570 -) -k1,10609:26445080,14269983:182114 -k1,10609:29010082,14269983:182113 -k1,10609:31434183,14269983:182114 -k1,10609:32583029,14269983:0 -) -(1,10610:6630773,15111471:25952256,513147,134348 -k1,10609:7482388,15111471:192323 -k1,10609:9066696,15111471:192323 -k1,10609:11327335,15111471:192323 -k1,10609:12205820,15111471:192323 -k1,10609:14253467,15111471:192323 -k1,10609:16906667,15111471:192323 -k1,10609:19036233,15111471:192322 -k1,10609:20926594,15111471:192323 -k1,10609:23699069,15111471:192323 -k1,10609:25387579,15111471:192323 -k1,10609:26111399,15111471:192323 -k1,10609:28436919,15111471:192323 -k1,10609:31563944,15111471:192323 -k1,10609:32583029,15111471:0 -) -(1,10610:6630773,15952959:25952256,513147,126483 -k1,10609:7952634,15952959:229376 -k1,10609:8841302,15952959:229376 -k1,10609:9426538,15952959:229376 -k1,10609:10868985,15952959:229376 -k1,10609:14580944,15952959:229376 -k1,10609:15882489,15952959:229376 -k1,10609:17762062,15952959:229376 -k1,10609:21272170,15952959:229376 -k1,10609:22692991,15952959:229376 -k1,10609:25273143,15952959:229376 -k1,10609:27586564,15952959:229376 -k1,10609:30316794,15952959:229376 -k1,10609:31364059,15952959:229376 -k1,10609:32051532,15952959:229376 -k1,10609:32583029,15952959:0 -) -(1,10610:6630773,16794447:25952256,505283,134348 -k1,10609:8050030,16794447:133441 -k1,10609:10813431,16794447:133441 -k1,10609:11598301,16794447:133442 -k1,10609:13168947,16794447:133441 -k1,10609:15685277,16794447:133441 -k1,10609:17887034,16794447:133441 -k1,10609:18706638,16794447:133442 -k1,10609:21036190,16794447:133441 -k1,10609:22241800,16794447:133441 -k1,10609:23441512,16794447:133441 -k1,10609:26255376,16794447:133441 -k1,10609:27782769,16794447:133442 -k1,10609:28935295,16794447:133441 -k1,10609:32583029,16794447:0 -) -(1,10610:6630773,17635935:25952256,505283,126483 -k1,10609:9813332,17635935:262275 -k1,10609:13380588,17635935:262275 -k1,10609:15139049,17635935:262274 -k1,10609:18174808,17635935:262275 -k1,10609:20087280,17635935:262275 -k1,10609:22815019,17635935:262275 -k1,10609:24149463,17635935:262275 -k1,10609:25805688,17635935:262274 -k1,10609:27087048,17635935:262275 -k1,10609:30251913,17635935:262275 -k1,10609:32583029,17635935:0 -) -(1,10610:6630773,18477423:25952256,505283,134348 -g1,10609:8021447,18477423 -g1,10609:10091074,18477423 -g1,10609:10941731,18477423 -k1,10610:32583029,18477423:19698156 -g1,10610:32583029,18477423 -) -v1,10612:6630773,19667889:0,393216,0 -(1,10626:6630773,25946081:25952256,6671408,196608 -g1,10626:6630773,25946081 -g1,10626:6630773,25946081 -g1,10626:6434165,25946081 -(1,10626:6434165,25946081:0,6671408,196608 -r1,10626:32779637,25946081:26345472,6868016,196608 -k1,10626:6434165,25946081:-26345472 -) -(1,10626:6434165,25946081:26345472,6671408,196608 -[1,10626:6630773,25946081:25952256,6474800,0 -(1,10614:6630773,19875507:25952256,404226,107478 -(1,10613:6630773,19875507:0,0,0 -g1,10613:6630773,19875507 -g1,10613:6630773,19875507 -g1,10613:6303093,19875507 -(1,10613:6303093,19875507:0,0,0 -) -g1,10613:6630773,19875507 -) -k1,10614:11692250,19875507:635437 -k1,10614:12959979,19875507:635437 -k1,10614:18337600,19875507:635436 -k1,10614:19921474,19875507:635437 -k1,10614:20873057,19875507:635437 -k1,10614:23721514,19875507:635437 -k1,10614:25937678,19875507:635436 -k1,10614:26889261,19875507:635437 -k1,10614:31318446,19875507:635437 -k1,10614:32583029,19875507:0 -) -(1,10614:6630773,20541685:25952256,410518,101187 -g1,10614:14218270,20541685 -h1,10614:17695872,20541685:0,0,0 -k1,10614:32583029,20541685:14887157 -g1,10614:32583029,20541685 -) -(1,10615:6630773,21207863:25952256,404226,107478 -h1,10615:6630773,21207863:0,0,0 -h1,10615:11056813,21207863:0,0,0 -k1,10615:32583029,21207863:21526216 -g1,10615:32583029,21207863 -) -(1,10625:6630773,21939577:25952256,404226,9436 -(1,10617:6630773,21939577:0,0,0 -g1,10617:6630773,21939577 -g1,10617:6630773,21939577 -g1,10617:6303093,21939577 -(1,10617:6303093,21939577:0,0,0 -) -g1,10617:6630773,21939577 -) -g1,10625:7579210,21939577 -g1,10625:8211502,21939577 -g1,10625:8843794,21939577 -g1,10625:11372960,21939577 -g1,10625:12637543,21939577 -g1,10625:13269835,21939577 -h1,10625:13585981,21939577:0,0,0 -k1,10625:32583029,21939577:18997048 -g1,10625:32583029,21939577 -) -(1,10625:6630773,22605755:25952256,404226,101187 -h1,10625:6630773,22605755:0,0,0 -g1,10625:7579210,22605755 -g1,10625:7895356,22605755 -g1,10625:8211502,22605755 -g1,10625:10740668,22605755 -g1,10625:12321397,22605755 -g1,10625:12637543,22605755 -g1,10625:12953689,22605755 -g1,10625:13269835,22605755 -g1,10625:13585981,22605755 -g1,10625:13902127,22605755 -g1,10625:14218273,22605755 -g1,10625:14534419,22605755 -g1,10625:14850565,22605755 -h1,10625:17695876,22605755:0,0,0 -k1,10625:32583029,22605755:14887153 -g1,10625:32583029,22605755 -) -(1,10625:6630773,23271933:25952256,410518,6290 -h1,10625:6630773,23271933:0,0,0 -g1,10625:7579210,23271933 -g1,10625:7895356,23271933 -g1,10625:8211502,23271933 -g1,10625:10108377,23271933 -g1,10625:10424523,23271933 -g1,10625:10740669,23271933 -g1,10625:12637544,23271933 -g1,10625:12953690,23271933 -g1,10625:13269836,23271933 -g1,10625:13585982,23271933 -g1,10625:13902128,23271933 -g1,10625:14218274,23271933 -g1,10625:14534420,23271933 -g1,10625:14850566,23271933 -g1,10625:15166712,23271933 -g1,10625:15482858,23271933 -g1,10625:15799004,23271933 -g1,10625:16115150,23271933 -k1,10625:16115150,23271933:0 -h1,10625:17695879,23271933:0,0,0 -k1,10625:32583029,23271933:14887150 -g1,10625:32583029,23271933 -) -(1,10625:6630773,23938111:25952256,404226,107478 -h1,10625:6630773,23938111:0,0,0 -g1,10625:7579210,23938111 -g1,10625:8211502,23938111 -g1,10625:10424522,23938111 -g1,10625:10740668,23938111 -g1,10625:14850562,23938111 -g1,10625:15166708,23938111 -g1,10625:15482854,23938111 -g1,10625:15799000,23938111 -g1,10625:16115146,23938111 -g1,10625:16431292,23938111 -g1,10625:16747438,23938111 -h1,10625:17695875,23938111:0,0,0 -k1,10625:32583029,23938111:14887154 -g1,10625:32583029,23938111 -) -(1,10625:6630773,24604289:25952256,404226,107478 -h1,10625:6630773,24604289:0,0,0 -g1,10625:7579210,24604289 -g1,10625:8211502,24604289 -g1,10625:10424522,24604289 -g1,10625:10740668,24604289 -g1,10625:14850562,24604289 -g1,10625:15166708,24604289 -g1,10625:15482854,24604289 -g1,10625:15799000,24604289 -g1,10625:16115146,24604289 -g1,10625:16431292,24604289 -g1,10625:16747438,24604289 -h1,10625:17695875,24604289:0,0,0 -k1,10625:32583029,24604289:14887154 -g1,10625:32583029,24604289 -) -(1,10625:6630773,25270467:25952256,404226,107478 -h1,10625:6630773,25270467:0,0,0 -g1,10625:7579210,25270467 -g1,10625:8211502,25270467 -g1,10625:10424522,25270467 -g1,10625:10740668,25270467 -g1,10625:14850562,25270467 -g1,10625:15166708,25270467 -g1,10625:15482854,25270467 -g1,10625:15799000,25270467 -g1,10625:16115146,25270467 -g1,10625:16431292,25270467 -g1,10625:16747438,25270467 -h1,10625:17695875,25270467:0,0,0 -k1,10625:32583029,25270467:14887154 -g1,10625:32583029,25270467 -) -(1,10625:6630773,25936645:25952256,404226,9436 -h1,10625:6630773,25936645:0,0,0 -g1,10625:7579210,25936645 -g1,10625:8211502,25936645 -g1,10625:9476085,25936645 -g1,10625:11056814,25936645 -g1,10625:12321397,25936645 -g1,10625:13902126,25936645 -h1,10625:15166709,25936645:0,0,0 -k1,10625:32583029,25936645:17416320 -g1,10625:32583029,25936645 -) -] -) -g1,10626:32583029,25946081 -g1,10626:6630773,25946081 -g1,10626:6630773,25946081 -g1,10626:32583029,25946081 -g1,10626:32583029,25946081 -) -h1,10626:6630773,26142689:0,0,0 -v1,10630:6630773,28032753:0,393216,0 -(1,10653:6630773,43547564:25952256,15908027,616038 -g1,10653:6630773,43547564 -(1,10653:6630773,43547564:25952256,15908027,616038 -(1,10653:6630773,44163602:25952256,16524065,0 -[1,10653:6630773,44163602:25952256,16524065,0 -(1,10653:6630773,44137388:25952256,16471637,0 -r1,10653:6656987,44137388:26214,16471637,0 -[1,10653:6656987,44137388:25899828,16471637,0 -(1,10653:6656987,43547564:25899828,15291989,0 -[1,10653:7246811,43547564:24720180,15291989,0 -(1,10632:7246811,29341111:24720180,1085536,298548 -(1,10630:7246811,29341111:0,1085536,298548 -r1,10653:8753226,29341111:1506415,1384084,298548 -k1,10630:7246811,29341111:-1506415 -) -(1,10630:7246811,29341111:1506415,1085536,298548 -) -k1,10630:8935984,29341111:182758 -k1,10630:8935984,29341111:0 -k1,10631:8935984,29341111:0 -k1,10631:11694306,29341111:182757 -k1,10631:12795879,29341111:182758 -k1,10631:15257323,29341111:182757 -k1,10631:19885388,29341111:182758 -k1,10631:20727437,29341111:182757 -k1,10631:21929280,29341111:182758 -k1,10631:23850053,29341111:182758 -k1,10631:26238097,29341111:182757 -k1,10631:27107017,29341111:182758 -k1,10631:28060477,29341111:182757 -k1,10631:31315563,29341111:182758 -k1,10632:31966991,29341111:0 -) -(1,10632:7246811,30182599:24720180,513147,134348 -(1,10631:7246811,30182599:0,452978,115847 -r1,10653:8308500,30182599:1061689,568825,115847 -k1,10631:7246811,30182599:-1061689 -) -(1,10631:7246811,30182599:1061689,452978,115847 -k1,10631:7246811,30182599:3277 -h1,10631:8305223,30182599:0,411205,112570 -) -k1,10631:8542919,30182599:234419 -k1,10631:9968783,30182599:234419 -(1,10631:9968783,30182599:0,452978,115847 -r1,10653:11733896,30182599:1765113,568825,115847 -k1,10631:9968783,30182599:-1765113 -) -(1,10631:9968783,30182599:1765113,452978,115847 -k1,10631:9968783,30182599:3277 -h1,10631:11730619,30182599:0,411205,112570 -) -k1,10631:11968314,30182599:234418 -k1,10631:14965731,30182599:234419 -k1,10631:16896877,30182599:234419 -k1,10631:20533925,30182599:234419 -k1,10631:22335965,30182599:234419 -k1,10631:24308399,30182599:234419 -k1,10631:28054891,30182599:234418 -k1,10631:28975472,30182599:234419 -k1,10631:30228976,30182599:234419 -k1,10631:31966991,30182599:0 -) -(1,10632:7246811,31024087:24720180,513147,134348 -k1,10631:8123624,31024087:217521 -k1,10631:8697005,31024087:217521 -k1,10631:11425866,31024087:217521 -k1,10631:12259425,31024087:217521 -k1,10631:13496031,31024087:217521 -k1,10631:15803495,31024087:217521 -k1,10631:20252020,31024087:217521 -k1,10631:21423090,31024087:217521 -k1,10631:23170877,31024087:217521 -k1,10631:24039826,31024087:217521 -k1,10631:25349832,31024087:217521 -k1,10631:25923213,31024087:217521 -k1,10631:27423929,31024087:217521 -k1,10631:30388064,31024087:217521 -(1,10631:30388064,31024087:0,424981,115847 -r1,10653:31098042,31024087:709978,540828,115847 -k1,10631:30388064,31024087:-709978 -) -(1,10631:30388064,31024087:709978,424981,115847 -k1,10631:30388064,31024087:3277 -h1,10631:31094765,31024087:0,411205,112570 -) -k1,10631:31315563,31024087:217521 -k1,10631:31966991,31024087:0 -) -(1,10632:7246811,31865575:24720180,505283,7863 -g1,10631:9699168,31865575 -g1,10631:10917482,31865575 -g1,10631:13395398,31865575 -g1,10631:14009470,31865575 -k1,10632:31966991,31865575:15024130 -g1,10632:31966991,31865575 -) -v1,10634:7246811,33056041:0,393216,0 -(1,10649:7246811,39334233:24720180,6671408,196608 -g1,10649:7246811,39334233 -g1,10649:7246811,39334233 -g1,10649:7050203,39334233 -(1,10649:7050203,39334233:0,6671408,196608 -r1,10653:32163599,39334233:25113396,6868016,196608 -k1,10649:7050203,39334233:-25113396 -) -(1,10649:7050203,39334233:25113396,6671408,196608 -[1,10649:7246811,39334233:24720180,6474800,0 -(1,10636:7246811,33263659:24720180,404226,101187 -(1,10635:7246811,33263659:0,0,0 -g1,10635:7246811,33263659 -g1,10635:7246811,33263659 -g1,10635:6919131,33263659 -(1,10635:6919131,33263659:0,0,0 -) -g1,10635:7246811,33263659 -) -g1,10636:8827540,33263659 -g1,10636:9775978,33263659 -g1,10636:11356707,33263659 -h1,10636:12937435,33263659:0,0,0 -k1,10636:31966991,33263659:19029556 -g1,10636:31966991,33263659 -) -(1,10637:7246811,33929837:24720180,404226,107478 -h1,10637:7246811,33929837:0,0,0 -g1,10637:11988997,33929837 -g1,10637:12937435,33929837 -g1,10637:17995766,33929837 -g1,10637:19260349,33929837 -g1,10637:19892641,33929837 -g1,10637:22421807,33929837 -g1,10637:24318681,33929837 -g1,10637:24950973,33929837 -g1,10637:28428576,33929837 -k1,10637:28428576,33929837:0 -h1,10637:31273887,33929837:0,0,0 -k1,10637:31966991,33929837:693104 -g1,10637:31966991,33929837 -) -(1,10638:7246811,34596015:24720180,404226,107478 -h1,10638:7246811,34596015:0,0,0 -h1,10638:11672851,34596015:0,0,0 -k1,10638:31966991,34596015:20294140 -g1,10638:31966991,34596015 -) -(1,10648:7246811,35327729:24720180,404226,9436 -(1,10640:7246811,35327729:0,0,0 -g1,10640:7246811,35327729 -g1,10640:7246811,35327729 -g1,10640:6919131,35327729 -(1,10640:6919131,35327729:0,0,0 -) -g1,10640:7246811,35327729 -) -g1,10648:8195248,35327729 -g1,10648:8827540,35327729 -g1,10648:9459832,35327729 -g1,10648:11988998,35327729 -g1,10648:13253581,35327729 -g1,10648:13885873,35327729 -h1,10648:14202019,35327729:0,0,0 -k1,10648:31966991,35327729:17764972 -g1,10648:31966991,35327729 -) -(1,10648:7246811,35993907:24720180,410518,101187 -h1,10648:7246811,35993907:0,0,0 -g1,10648:8195248,35993907 -g1,10648:8511394,35993907 -g1,10648:8827540,35993907 -g1,10648:11356706,35993907 -g1,10648:12937435,35993907 -g1,10648:14834310,35993907 -g1,10648:15150456,35993907 -g1,10648:15466602,35993907 -h1,10648:18311913,35993907:0,0,0 -k1,10648:31966991,35993907:13655078 -g1,10648:31966991,35993907 -) -(1,10648:7246811,36660085:24720180,410518,6290 -h1,10648:7246811,36660085:0,0,0 -g1,10648:8195248,36660085 -g1,10648:8511394,36660085 -g1,10648:8827540,36660085 -g1,10648:10724415,36660085 -g1,10648:11040561,36660085 -g1,10648:11356707,36660085 -g1,10648:13253582,36660085 -g1,10648:13569728,36660085 -g1,10648:13885874,36660085 -g1,10648:14202020,36660085 -g1,10648:14518166,36660085 -g1,10648:14834312,36660085 -g1,10648:15150458,36660085 -g1,10648:15466604,36660085 -g1,10648:15782750,36660085 -g1,10648:16098896,36660085 -g1,10648:16415042,36660085 -g1,10648:16731188,36660085 -k1,10648:16731188,36660085:0 -h1,10648:18311917,36660085:0,0,0 -k1,10648:31966991,36660085:13655074 -g1,10648:31966991,36660085 -) -(1,10648:7246811,37326263:24720180,404226,107478 -h1,10648:7246811,37326263:0,0,0 -g1,10648:8195248,37326263 -g1,10648:8827540,37326263 -g1,10648:11040560,37326263 -g1,10648:11356706,37326263 -g1,10648:15466600,37326263 -g1,10648:15782746,37326263 -g1,10648:16098892,37326263 -g1,10648:16415038,37326263 -g1,10648:16731184,37326263 -g1,10648:17047330,37326263 -g1,10648:17363476,37326263 -h1,10648:18311913,37326263:0,0,0 -k1,10648:31966991,37326263:13655078 -g1,10648:31966991,37326263 -) -(1,10648:7246811,37992441:24720180,404226,107478 -h1,10648:7246811,37992441:0,0,0 -g1,10648:8195248,37992441 -g1,10648:8827540,37992441 -g1,10648:11040560,37992441 -g1,10648:11356706,37992441 -g1,10648:15466600,37992441 -g1,10648:15782746,37992441 -g1,10648:16098892,37992441 -g1,10648:16415038,37992441 -g1,10648:16731184,37992441 -g1,10648:17047330,37992441 -g1,10648:17363476,37992441 -h1,10648:18311913,37992441:0,0,0 -k1,10648:31966991,37992441:13655078 -g1,10648:31966991,37992441 -) -(1,10648:7246811,38658619:24720180,404226,107478 -h1,10648:7246811,38658619:0,0,0 -g1,10648:8195248,38658619 -g1,10648:8827540,38658619 -g1,10648:11040560,38658619 -g1,10648:11356706,38658619 -g1,10648:15466600,38658619 -g1,10648:15782746,38658619 -g1,10648:16098892,38658619 -g1,10648:16415038,38658619 -g1,10648:16731184,38658619 -g1,10648:17047330,38658619 -g1,10648:17363476,38658619 -h1,10648:18311913,38658619:0,0,0 -k1,10648:31966991,38658619:13655078 -g1,10648:31966991,38658619 -) -(1,10648:7246811,39324797:24720180,404226,9436 -h1,10648:7246811,39324797:0,0,0 -g1,10648:8195248,39324797 -g1,10648:8827540,39324797 -g1,10648:10092123,39324797 -g1,10648:11672852,39324797 -g1,10648:12937435,39324797 -g1,10648:14518164,39324797 -h1,10648:15782747,39324797:0,0,0 -k1,10648:31966991,39324797:16184244 -g1,10648:31966991,39324797 -) -] -) -g1,10649:31966991,39334233 -g1,10649:7246811,39334233 -g1,10649:7246811,39334233 -g1,10649:31966991,39334233 -g1,10649:31966991,39334233 -) -h1,10649:7246811,39530841:0,0,0 -(1,10653:7246811,40896617:24720180,505283,134348 -h1,10652:7246811,40896617:983040,0,0 -k1,10652:9915274,40896617:304579 -k1,10652:12303897,40896617:304578 -k1,10652:13709481,40896617:304579 -k1,10652:15524009,40896617:304578 -k1,10652:18383181,40896617:304579 -k1,10652:20997903,40896617:304578 -k1,10652:21953910,40896617:304579 -k1,10652:24387097,40896617:304578 -k1,10652:25883121,40896617:304579 -k1,10652:27160909,40896617:304578 -k1,10652:28116916,40896617:304579 -k1,10652:29922268,40896617:304578 -k1,10652:31966991,40896617:0 -) -(1,10653:7246811,41738105:24720180,513147,134348 -k1,10652:10987388,41738105:257338 -k1,10652:13824878,41738105:257338 -k1,10652:16340586,41738105:257338 -k1,10652:18483395,41738105:257338 -k1,10652:21501109,41738105:257338 -k1,10652:24731160,41738105:257338 -k1,10652:25797868,41738105:257338 -k1,10652:29081003,41738105:257338 -k1,10652:30529786,41738105:257338 -k1,10653:31966991,41738105:0 -) -(1,10653:7246811,42579593:24720180,513147,134348 -k1,10652:8996349,42579593:189126 -k1,10652:10753096,42579593:189126 -k1,10652:12914855,42579593:189126 -k1,10652:14388487,42579593:189126 -k1,10652:16902175,42579593:189126 -k1,10652:19934908,42579593:189126 -k1,10652:23427704,42579593:189126 -k1,10652:24930827,42579593:189126 -k1,10652:25864442,42579593:189126 -k1,10652:27072653,42579593:189126 -k1,10652:28687187,42579593:189126 -k1,10652:29535605,42579593:189126 -k1,10652:31966991,42579593:0 -) -(1,10653:7246811,43421081:24720180,505283,126483 -g1,10652:9704410,43421081 -g1,10652:11007921,43421081 -g1,10652:11954916,43421081 -g1,10652:15653112,43421081 -g1,10652:16538503,43421081 -k1,10653:31966991,43421081:11084762 -g1,10653:31966991,43421081 -) -] -) -] -r1,10653:32583029,44137388:26214,16471637,0 -) -] -) -) -g1,10653:32583029,43547564 -) -h1,10653:6630773,44163602:0,0,0 -] -(1,10656:32583029,45706769:0,0,0 -g1,10656:32583029,45706769 -) -) -] -(1,10656:6630773,47279633:25952256,0,0 -h1,10656:6630773,47279633:25952256,0,0 -) -] -h1,10656:4262630,4025873:0,0,0 -] -!26870 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10661:37855564,49800853:1179648,16384,0 +) +) +k1,10661:3078556,49800853:-34777008 +) +] +g1,10661:6630773,4812305 +g1,10661:6630773,4812305 +g1,10661:10115322,4812305 +g1,10661:11677700,4812305 +g1,10661:13736840,4812305 +k1,10661:31387652,4812305:17650812 +) +) +] +[1,10661:6630773,45706769:25952256,40108032,0 +(1,10661:6630773,45706769:25952256,40108032,0 +(1,10661:6630773,45706769:0,0,0 +g1,10661:6630773,45706769 +) +[1,10661:6630773,45706769:25952256,40108032,0 +v1,10611:6630773,6254097:0,393216,0 +(1,10611:6630773,11866111:25952256,6005230,196608 +g1,10611:6630773,11866111 +g1,10611:6630773,11866111 +g1,10611:6434165,11866111 +(1,10611:6434165,11866111:0,6005230,196608 +r1,10611:32779637,11866111:26345472,6201838,196608 +k1,10611:6434165,11866111:-26345472 +) +(1,10611:6434165,11866111:26345472,6005230,196608 +[1,10611:6630773,11866111:25952256,5808622,0 +(1,10599:6630773,6461715:25952256,404226,107478 +h1,10599:6630773,6461715:0,0,0 +g1,10599:6946919,6461715 +g1,10599:7263065,6461715 +g1,10599:10424522,6461715 +g1,10599:11689105,6461715 +g1,10599:12321397,6461715 +g1,10599:14218272,6461715 +g1,10599:16115146,6461715 +g1,10599:16747438,6461715 +g1,10599:20225041,6461715 +g1,10599:23386498,6461715 +g1,10599:24334936,6461715 +h1,10599:28128684,6461715:0,0,0 +k1,10599:32583029,6461715:4454345 +g1,10599:32583029,6461715 +) +(1,10600:6630773,7127893:25952256,404226,107478 +h1,10600:6630773,7127893:0,0,0 +h1,10600:10424521,7127893:0,0,0 +k1,10600:32583029,7127893:22158508 +g1,10600:32583029,7127893 +) +(1,10610:6630773,7859607:25952256,404226,9436 +(1,10602:6630773,7859607:0,0,0 +g1,10602:6630773,7859607 +g1,10602:6630773,7859607 +g1,10602:6303093,7859607 +(1,10602:6303093,7859607:0,0,0 +) +g1,10602:6630773,7859607 +) +g1,10610:7579210,7859607 +g1,10610:8211502,7859607 +g1,10610:8843794,7859607 +g1,10610:11372960,7859607 +g1,10610:12637543,7859607 +g1,10610:13269835,7859607 +h1,10610:13585981,7859607:0,0,0 +k1,10610:32583029,7859607:18997048 +g1,10610:32583029,7859607 +) +(1,10610:6630773,8525785:25952256,404226,101187 +h1,10610:6630773,8525785:0,0,0 +g1,10610:7579210,8525785 +g1,10610:7895356,8525785 +g1,10610:8211502,8525785 +g1,10610:10740668,8525785 +g1,10610:12321397,8525785 +g1,10610:12637543,8525785 +g1,10610:12953689,8525785 +g1,10610:13269835,8525785 +g1,10610:13585981,8525785 +g1,10610:13902127,8525785 +g1,10610:14218273,8525785 +g1,10610:14534419,8525785 +g1,10610:14850565,8525785 +h1,10610:17695876,8525785:0,0,0 +k1,10610:32583029,8525785:14887153 +g1,10610:32583029,8525785 +) +(1,10610:6630773,9191963:25952256,410518,6290 +h1,10610:6630773,9191963:0,0,0 +g1,10610:7579210,9191963 +g1,10610:7895356,9191963 +g1,10610:8211502,9191963 +g1,10610:10108377,9191963 +g1,10610:10424523,9191963 +g1,10610:10740669,9191963 +g1,10610:12637544,9191963 +g1,10610:12953690,9191963 +g1,10610:13269836,9191963 +g1,10610:13585982,9191963 +g1,10610:13902128,9191963 +g1,10610:14218274,9191963 +g1,10610:14534420,9191963 +g1,10610:14850566,9191963 +g1,10610:15166712,9191963 +g1,10610:15482858,9191963 +g1,10610:15799004,9191963 +g1,10610:16115150,9191963 +k1,10610:16115150,9191963:0 +h1,10610:17695879,9191963:0,0,0 +k1,10610:32583029,9191963:14887150 +g1,10610:32583029,9191963 +) +(1,10610:6630773,9858141:25952256,404226,107478 +h1,10610:6630773,9858141:0,0,0 +g1,10610:7579210,9858141 +g1,10610:8211502,9858141 +g1,10610:10424522,9858141 +g1,10610:10740668,9858141 +g1,10610:14850562,9858141 +g1,10610:15166708,9858141 +g1,10610:15482854,9858141 +g1,10610:15799000,9858141 +g1,10610:16115146,9858141 +g1,10610:16431292,9858141 +g1,10610:16747438,9858141 +h1,10610:17695875,9858141:0,0,0 +k1,10610:32583029,9858141:14887154 +g1,10610:32583029,9858141 +) +(1,10610:6630773,10524319:25952256,404226,107478 +h1,10610:6630773,10524319:0,0,0 +g1,10610:7579210,10524319 +g1,10610:8211502,10524319 +g1,10610:10424522,10524319 +g1,10610:10740668,10524319 +g1,10610:14850562,10524319 +g1,10610:15166708,10524319 +g1,10610:15482854,10524319 +g1,10610:15799000,10524319 +g1,10610:16115146,10524319 +g1,10610:16431292,10524319 +g1,10610:16747438,10524319 +h1,10610:17695875,10524319:0,0,0 +k1,10610:32583029,10524319:14887154 +g1,10610:32583029,10524319 +) +(1,10610:6630773,11190497:25952256,404226,107478 +h1,10610:6630773,11190497:0,0,0 +g1,10610:7579210,11190497 +g1,10610:8211502,11190497 +g1,10610:10424522,11190497 +g1,10610:10740668,11190497 +g1,10610:14850562,11190497 +g1,10610:15166708,11190497 +g1,10610:15482854,11190497 +g1,10610:15799000,11190497 +g1,10610:16115146,11190497 +g1,10610:16431292,11190497 +g1,10610:16747438,11190497 +h1,10610:17695875,11190497:0,0,0 +k1,10610:32583029,11190497:14887154 +g1,10610:32583029,11190497 +) +(1,10610:6630773,11856675:25952256,404226,9436 +h1,10610:6630773,11856675:0,0,0 +g1,10610:7579210,11856675 +g1,10610:8211502,11856675 +g1,10610:9476085,11856675 +g1,10610:11056814,11856675 +g1,10610:12321397,11856675 +g1,10610:13902126,11856675 +h1,10610:15166709,11856675:0,0,0 +k1,10610:32583029,11856675:17416320 +g1,10610:32583029,11856675 +) +] +) +g1,10611:32583029,11866111 +g1,10611:6630773,11866111 +g1,10611:6630773,11866111 +g1,10611:32583029,11866111 +g1,10611:32583029,11866111 +) +h1,10611:6630773,12062719:0,0,0 +(1,10615:6630773,13428495:25952256,513147,134348 +h1,10614:6630773,13428495:983040,0,0 +k1,10614:8537275,13428495:295627 +k1,10614:10036143,13428495:295627 +k1,10614:13691800,13428495:295626 +k1,10614:14855779,13428495:295627 +k1,10614:16255688,13428495:295627 +k1,10614:17576298,13428495:295627 +k1,10614:18891010,13428495:295627 +k1,10614:23093238,13428495:295627 +k1,10614:24048156,13428495:295626 +k1,10614:27799496,13428495:295627 +k1,10614:29489074,13428495:295627 +k1,10614:32583029,13428495:0 +) +(1,10615:6630773,14269983:25952256,513147,134348 +k1,10614:8799939,14269983:182114 +k1,10614:9929703,14269983:182113 +k1,10614:11130902,14269983:182114 +k1,10614:12596211,14269983:182114 +(1,10614:12803305,14269983:0,414482,115847 +r1,10614:14216706,14269983:1413401,530329,115847 +k1,10614:12803305,14269983:-1413401 +) +(1,10614:12803305,14269983:1413401,414482,115847 +k1,10614:12803305,14269983:3277 +h1,10614:14213429,14269983:0,411205,112570 +) +k1,10614:14398819,14269983:182113 +k1,10614:15772378,14269983:182114 +(1,10614:15772378,14269983:0,452978,115847 +r1,10614:18944338,14269983:3171960,568825,115847 +k1,10614:15772378,14269983:-3171960 +) +(1,10614:15772378,14269983:3171960,452978,115847 +k1,10614:15772378,14269983:3277 +h1,10614:18941061,14269983:0,411205,112570 +) +k1,10614:19333546,14269983:182114 +k1,10614:20707104,14269983:182113 +k1,10614:23380241,14269983:182114 +(1,10614:23587335,14269983:0,452978,115847 +r1,10614:26055872,14269983:2468537,568825,115847 +k1,10614:23587335,14269983:-2468537 +) +(1,10614:23587335,14269983:2468537,452978,115847 +k1,10614:23587335,14269983:3277 +h1,10614:26052595,14269983:0,411205,112570 +) +k1,10614:26445080,14269983:182114 +k1,10614:29010082,14269983:182113 +k1,10614:31434183,14269983:182114 +k1,10614:32583029,14269983:0 +) +(1,10615:6630773,15111471:25952256,513147,134348 +k1,10614:7482388,15111471:192323 +k1,10614:9066696,15111471:192323 +k1,10614:11327335,15111471:192323 +k1,10614:12205820,15111471:192323 +k1,10614:14253467,15111471:192323 +k1,10614:16906667,15111471:192323 +k1,10614:19036233,15111471:192322 +k1,10614:20926594,15111471:192323 +k1,10614:23699069,15111471:192323 +k1,10614:25387579,15111471:192323 +k1,10614:26111399,15111471:192323 +k1,10614:28436919,15111471:192323 +k1,10614:31563944,15111471:192323 +k1,10614:32583029,15111471:0 +) +(1,10615:6630773,15952959:25952256,513147,126483 +k1,10614:7952634,15952959:229376 +k1,10614:8841302,15952959:229376 +k1,10614:9426538,15952959:229376 +k1,10614:10868985,15952959:229376 +k1,10614:14580944,15952959:229376 +k1,10614:15882489,15952959:229376 +k1,10614:17762062,15952959:229376 +k1,10614:21272170,15952959:229376 +k1,10614:22692991,15952959:229376 +k1,10614:25273143,15952959:229376 +k1,10614:27586564,15952959:229376 +k1,10614:30316794,15952959:229376 +k1,10614:31364059,15952959:229376 +k1,10614:32051532,15952959:229376 +k1,10614:32583029,15952959:0 +) +(1,10615:6630773,16794447:25952256,505283,134348 +k1,10614:8050030,16794447:133441 +k1,10614:10813431,16794447:133441 +k1,10614:11598301,16794447:133442 +k1,10614:13168947,16794447:133441 +k1,10614:15685277,16794447:133441 +k1,10614:17887034,16794447:133441 +k1,10614:18706638,16794447:133442 +k1,10614:21036190,16794447:133441 +k1,10614:22241800,16794447:133441 +k1,10614:23441512,16794447:133441 +k1,10614:26255376,16794447:133441 +k1,10614:27782769,16794447:133442 +k1,10614:28935295,16794447:133441 +k1,10614:32583029,16794447:0 +) +(1,10615:6630773,17635935:25952256,505283,126483 +k1,10614:9813332,17635935:262275 +k1,10614:13380588,17635935:262275 +k1,10614:15139049,17635935:262274 +k1,10614:18174808,17635935:262275 +k1,10614:20087280,17635935:262275 +k1,10614:22815019,17635935:262275 +k1,10614:24149463,17635935:262275 +k1,10614:25805688,17635935:262274 +k1,10614:27087048,17635935:262275 +k1,10614:30251913,17635935:262275 +k1,10614:32583029,17635935:0 +) +(1,10615:6630773,18477423:25952256,505283,134348 +g1,10614:8021447,18477423 +g1,10614:10091074,18477423 +g1,10614:10941731,18477423 +k1,10615:32583029,18477423:19698156 +g1,10615:32583029,18477423 +) +v1,10617:6630773,19667889:0,393216,0 +(1,10631:6630773,25946081:25952256,6671408,196608 +g1,10631:6630773,25946081 +g1,10631:6630773,25946081 +g1,10631:6434165,25946081 +(1,10631:6434165,25946081:0,6671408,196608 +r1,10631:32779637,25946081:26345472,6868016,196608 +k1,10631:6434165,25946081:-26345472 +) +(1,10631:6434165,25946081:26345472,6671408,196608 +[1,10631:6630773,25946081:25952256,6474800,0 +(1,10619:6630773,19875507:25952256,404226,107478 +(1,10618:6630773,19875507:0,0,0 +g1,10618:6630773,19875507 +g1,10618:6630773,19875507 +g1,10618:6303093,19875507 +(1,10618:6303093,19875507:0,0,0 +) +g1,10618:6630773,19875507 +) +k1,10619:11657123,19875507:600310 +k1,10619:12889724,19875507:600309 +k1,10619:18232219,19875507:600310 +k1,10619:19780965,19875507:600309 +k1,10619:20697421,19875507:600310 +k1,10619:23510750,19875507:600309 +k1,10619:25691788,19875507:600310 +k1,10619:26608244,19875507:600310 +k1,10619:31002301,19875507:600309 +k1,10619:32583029,19875507:0 +) +(1,10619:6630773,20541685:25952256,410518,101187 +g1,10619:13902124,20541685 +h1,10619:17379726,20541685:0,0,0 +k1,10619:32583029,20541685:15203303 +g1,10619:32583029,20541685 +) +(1,10620:6630773,21207863:25952256,404226,107478 +h1,10620:6630773,21207863:0,0,0 +h1,10620:11056813,21207863:0,0,0 +k1,10620:32583029,21207863:21526216 +g1,10620:32583029,21207863 +) +(1,10630:6630773,21939577:25952256,404226,9436 +(1,10622:6630773,21939577:0,0,0 +g1,10622:6630773,21939577 +g1,10622:6630773,21939577 +g1,10622:6303093,21939577 +(1,10622:6303093,21939577:0,0,0 +) +g1,10622:6630773,21939577 +) +g1,10630:7579210,21939577 +g1,10630:8211502,21939577 +g1,10630:8843794,21939577 +g1,10630:11372960,21939577 +g1,10630:12637543,21939577 +g1,10630:13269835,21939577 +h1,10630:13585981,21939577:0,0,0 +k1,10630:32583029,21939577:18997048 +g1,10630:32583029,21939577 +) +(1,10630:6630773,22605755:25952256,404226,101187 +h1,10630:6630773,22605755:0,0,0 +g1,10630:7579210,22605755 +g1,10630:7895356,22605755 +g1,10630:8211502,22605755 +g1,10630:10740668,22605755 +g1,10630:12321397,22605755 +g1,10630:12637543,22605755 +g1,10630:12953689,22605755 +g1,10630:13269835,22605755 +g1,10630:13585981,22605755 +g1,10630:13902127,22605755 +g1,10630:14218273,22605755 +g1,10630:14534419,22605755 +g1,10630:14850565,22605755 +h1,10630:17695876,22605755:0,0,0 +k1,10630:32583029,22605755:14887153 +g1,10630:32583029,22605755 +) +(1,10630:6630773,23271933:25952256,410518,6290 +h1,10630:6630773,23271933:0,0,0 +g1,10630:7579210,23271933 +g1,10630:7895356,23271933 +g1,10630:8211502,23271933 +g1,10630:10108377,23271933 +g1,10630:10424523,23271933 +g1,10630:10740669,23271933 +g1,10630:12637544,23271933 +g1,10630:12953690,23271933 +g1,10630:13269836,23271933 +g1,10630:13585982,23271933 +g1,10630:13902128,23271933 +g1,10630:14218274,23271933 +g1,10630:14534420,23271933 +g1,10630:14850566,23271933 +g1,10630:15166712,23271933 +g1,10630:15482858,23271933 +g1,10630:15799004,23271933 +g1,10630:16115150,23271933 +k1,10630:16115150,23271933:0 +h1,10630:17695879,23271933:0,0,0 +k1,10630:32583029,23271933:14887150 +g1,10630:32583029,23271933 +) +(1,10630:6630773,23938111:25952256,404226,107478 +h1,10630:6630773,23938111:0,0,0 +g1,10630:7579210,23938111 +g1,10630:8211502,23938111 +g1,10630:10424522,23938111 +g1,10630:10740668,23938111 +g1,10630:14850562,23938111 +g1,10630:15166708,23938111 +g1,10630:15482854,23938111 +g1,10630:15799000,23938111 +g1,10630:16115146,23938111 +g1,10630:16431292,23938111 +g1,10630:16747438,23938111 +h1,10630:17695875,23938111:0,0,0 +k1,10630:32583029,23938111:14887154 +g1,10630:32583029,23938111 +) +(1,10630:6630773,24604289:25952256,404226,107478 +h1,10630:6630773,24604289:0,0,0 +g1,10630:7579210,24604289 +g1,10630:8211502,24604289 +g1,10630:10424522,24604289 +g1,10630:10740668,24604289 +g1,10630:14850562,24604289 +g1,10630:15166708,24604289 +g1,10630:15482854,24604289 +g1,10630:15799000,24604289 +g1,10630:16115146,24604289 +g1,10630:16431292,24604289 +g1,10630:16747438,24604289 +h1,10630:17695875,24604289:0,0,0 +k1,10630:32583029,24604289:14887154 +g1,10630:32583029,24604289 +) +(1,10630:6630773,25270467:25952256,404226,107478 +h1,10630:6630773,25270467:0,0,0 +g1,10630:7579210,25270467 +g1,10630:8211502,25270467 +g1,10630:10424522,25270467 +g1,10630:10740668,25270467 +g1,10630:14850562,25270467 +g1,10630:15166708,25270467 +g1,10630:15482854,25270467 +g1,10630:15799000,25270467 +g1,10630:16115146,25270467 +g1,10630:16431292,25270467 +g1,10630:16747438,25270467 +h1,10630:17695875,25270467:0,0,0 +k1,10630:32583029,25270467:14887154 +g1,10630:32583029,25270467 +) +(1,10630:6630773,25936645:25952256,404226,9436 +h1,10630:6630773,25936645:0,0,0 +g1,10630:7579210,25936645 +g1,10630:8211502,25936645 +g1,10630:9476085,25936645 +g1,10630:11056814,25936645 +g1,10630:12321397,25936645 +g1,10630:13902126,25936645 +h1,10630:15166709,25936645:0,0,0 +k1,10630:32583029,25936645:17416320 +g1,10630:32583029,25936645 +) +] +) +g1,10631:32583029,25946081 +g1,10631:6630773,25946081 +g1,10631:6630773,25946081 +g1,10631:32583029,25946081 +g1,10631:32583029,25946081 +) +h1,10631:6630773,26142689:0,0,0 +v1,10635:6630773,28032753:0,393216,0 +(1,10658:6630773,43547564:25952256,15908027,616038 +g1,10658:6630773,43547564 +(1,10658:6630773,43547564:25952256,15908027,616038 +(1,10658:6630773,44163602:25952256,16524065,0 +[1,10658:6630773,44163602:25952256,16524065,0 +(1,10658:6630773,44137388:25952256,16471637,0 +r1,10658:6656987,44137388:26214,16471637,0 +[1,10658:6656987,44137388:25899828,16471637,0 +(1,10658:6656987,43547564:25899828,15291989,0 +[1,10658:7246811,43547564:24720180,15291989,0 +(1,10637:7246811,29341111:24720180,1085536,298548 +(1,10635:7246811,29341111:0,1085536,298548 +r1,10658:8753226,29341111:1506415,1384084,298548 +k1,10635:7246811,29341111:-1506415 +) +(1,10635:7246811,29341111:1506415,1085536,298548 +) +k1,10635:8935984,29341111:182758 +k1,10635:8935984,29341111:0 +k1,10636:8935984,29341111:0 +k1,10636:11694306,29341111:182757 +k1,10636:12795879,29341111:182758 +k1,10636:15257323,29341111:182757 +k1,10636:19885388,29341111:182758 +k1,10636:20727437,29341111:182757 +k1,10636:21929280,29341111:182758 +k1,10636:23850053,29341111:182758 +k1,10636:26238097,29341111:182757 +k1,10636:27107017,29341111:182758 +k1,10636:28060477,29341111:182757 +k1,10636:31315563,29341111:182758 +k1,10637:31966991,29341111:0 +) +(1,10637:7246811,30182599:24720180,513147,134348 +(1,10636:7246811,30182599:0,452978,115847 +r1,10658:8308500,30182599:1061689,568825,115847 +k1,10636:7246811,30182599:-1061689 +) +(1,10636:7246811,30182599:1061689,452978,115847 +k1,10636:7246811,30182599:3277 +h1,10636:8305223,30182599:0,411205,112570 +) +k1,10636:8542919,30182599:234419 +k1,10636:9968783,30182599:234419 +(1,10636:9968783,30182599:0,452978,115847 +r1,10658:11733896,30182599:1765113,568825,115847 +k1,10636:9968783,30182599:-1765113 +) +(1,10636:9968783,30182599:1765113,452978,115847 +k1,10636:9968783,30182599:3277 +h1,10636:11730619,30182599:0,411205,112570 +) +k1,10636:11968314,30182599:234418 +k1,10636:14965731,30182599:234419 +k1,10636:16896877,30182599:234419 +k1,10636:20533925,30182599:234419 +k1,10636:22335965,30182599:234419 +k1,10636:24308399,30182599:234419 +k1,10636:28054891,30182599:234418 +k1,10636:28975472,30182599:234419 +k1,10636:30228976,30182599:234419 +k1,10636:31966991,30182599:0 +) +(1,10637:7246811,31024087:24720180,513147,134348 +k1,10636:8123624,31024087:217521 +k1,10636:8697005,31024087:217521 +k1,10636:11425866,31024087:217521 +k1,10636:12259425,31024087:217521 +k1,10636:13496031,31024087:217521 +k1,10636:15803495,31024087:217521 +k1,10636:20252020,31024087:217521 +k1,10636:21423090,31024087:217521 +k1,10636:23170877,31024087:217521 +k1,10636:24039826,31024087:217521 +k1,10636:25349832,31024087:217521 +k1,10636:25923213,31024087:217521 +k1,10636:27423929,31024087:217521 +k1,10636:30388064,31024087:217521 +(1,10636:30388064,31024087:0,424981,115847 +r1,10658:31098042,31024087:709978,540828,115847 +k1,10636:30388064,31024087:-709978 +) +(1,10636:30388064,31024087:709978,424981,115847 +k1,10636:30388064,31024087:3277 +h1,10636:31094765,31024087:0,411205,112570 +) +k1,10636:31315563,31024087:217521 +k1,10636:31966991,31024087:0 +) +(1,10637:7246811,31865575:24720180,505283,7863 +g1,10636:9699168,31865575 +g1,10636:10917482,31865575 +g1,10636:13395398,31865575 +g1,10636:14009470,31865575 +k1,10637:31966991,31865575:15024130 +g1,10637:31966991,31865575 +) +v1,10639:7246811,33056041:0,393216,0 +(1,10654:7246811,39334233:24720180,6671408,196608 +g1,10654:7246811,39334233 +g1,10654:7246811,39334233 +g1,10654:7050203,39334233 +(1,10654:7050203,39334233:0,6671408,196608 +r1,10658:32163599,39334233:25113396,6868016,196608 +k1,10654:7050203,39334233:-25113396 +) +(1,10654:7050203,39334233:25113396,6671408,196608 +[1,10654:7246811,39334233:24720180,6474800,0 +(1,10641:7246811,33263659:24720180,404226,101187 +(1,10640:7246811,33263659:0,0,0 +g1,10640:7246811,33263659 +g1,10640:7246811,33263659 +g1,10640:6919131,33263659 +(1,10640:6919131,33263659:0,0,0 +) +g1,10640:7246811,33263659 +) +g1,10641:8827540,33263659 +g1,10641:9775978,33263659 +g1,10641:11356707,33263659 +h1,10641:12937435,33263659:0,0,0 +k1,10641:31966991,33263659:19029556 +g1,10641:31966991,33263659 +) +(1,10642:7246811,33929837:24720180,404226,107478 +h1,10642:7246811,33929837:0,0,0 +g1,10642:11988997,33929837 +g1,10642:12937435,33929837 +g1,10642:17995766,33929837 +g1,10642:19260349,33929837 +g1,10642:19892641,33929837 +g1,10642:22421807,33929837 +g1,10642:24318681,33929837 +g1,10642:24950973,33929837 +g1,10642:28428576,33929837 +k1,10642:28428576,33929837:0 +h1,10642:31273887,33929837:0,0,0 +k1,10642:31966991,33929837:693104 +g1,10642:31966991,33929837 +) +(1,10643:7246811,34596015:24720180,404226,107478 +h1,10643:7246811,34596015:0,0,0 +h1,10643:11672851,34596015:0,0,0 +k1,10643:31966991,34596015:20294140 +g1,10643:31966991,34596015 +) +(1,10653:7246811,35327729:24720180,404226,9436 +(1,10645:7246811,35327729:0,0,0 +g1,10645:7246811,35327729 +g1,10645:7246811,35327729 +g1,10645:6919131,35327729 +(1,10645:6919131,35327729:0,0,0 +) +g1,10645:7246811,35327729 +) +g1,10653:8195248,35327729 +g1,10653:8827540,35327729 +g1,10653:9459832,35327729 +g1,10653:11988998,35327729 +g1,10653:13253581,35327729 +g1,10653:13885873,35327729 +h1,10653:14202019,35327729:0,0,0 +k1,10653:31966991,35327729:17764972 +g1,10653:31966991,35327729 +) +(1,10653:7246811,35993907:24720180,410518,101187 +h1,10653:7246811,35993907:0,0,0 +g1,10653:8195248,35993907 +g1,10653:8511394,35993907 +g1,10653:8827540,35993907 +g1,10653:11356706,35993907 +g1,10653:12937435,35993907 +g1,10653:14834310,35993907 +g1,10653:15150456,35993907 +g1,10653:15466602,35993907 +h1,10653:18311913,35993907:0,0,0 +k1,10653:31966991,35993907:13655078 +g1,10653:31966991,35993907 +) +(1,10653:7246811,36660085:24720180,410518,6290 +h1,10653:7246811,36660085:0,0,0 +g1,10653:8195248,36660085 +g1,10653:8511394,36660085 +g1,10653:8827540,36660085 +g1,10653:10724415,36660085 +g1,10653:11040561,36660085 +g1,10653:11356707,36660085 +g1,10653:13253582,36660085 +g1,10653:13569728,36660085 +g1,10653:13885874,36660085 +g1,10653:14202020,36660085 +g1,10653:14518166,36660085 +g1,10653:14834312,36660085 +g1,10653:15150458,36660085 +g1,10653:15466604,36660085 +g1,10653:15782750,36660085 +g1,10653:16098896,36660085 +g1,10653:16415042,36660085 +g1,10653:16731188,36660085 +k1,10653:16731188,36660085:0 +h1,10653:18311917,36660085:0,0,0 +k1,10653:31966991,36660085:13655074 +g1,10653:31966991,36660085 +) +(1,10653:7246811,37326263:24720180,404226,107478 +h1,10653:7246811,37326263:0,0,0 +g1,10653:8195248,37326263 +g1,10653:8827540,37326263 +g1,10653:11040560,37326263 +g1,10653:11356706,37326263 +g1,10653:15466600,37326263 +g1,10653:15782746,37326263 +g1,10653:16098892,37326263 +g1,10653:16415038,37326263 +g1,10653:16731184,37326263 +g1,10653:17047330,37326263 +g1,10653:17363476,37326263 +h1,10653:18311913,37326263:0,0,0 +k1,10653:31966991,37326263:13655078 +g1,10653:31966991,37326263 +) +(1,10653:7246811,37992441:24720180,404226,107478 +h1,10653:7246811,37992441:0,0,0 +g1,10653:8195248,37992441 +g1,10653:8827540,37992441 +g1,10653:11040560,37992441 +g1,10653:11356706,37992441 +g1,10653:15466600,37992441 +g1,10653:15782746,37992441 +g1,10653:16098892,37992441 +g1,10653:16415038,37992441 +g1,10653:16731184,37992441 +g1,10653:17047330,37992441 +g1,10653:17363476,37992441 +h1,10653:18311913,37992441:0,0,0 +k1,10653:31966991,37992441:13655078 +g1,10653:31966991,37992441 +) +(1,10653:7246811,38658619:24720180,404226,107478 +h1,10653:7246811,38658619:0,0,0 +g1,10653:8195248,38658619 +g1,10653:8827540,38658619 +g1,10653:11040560,38658619 +g1,10653:11356706,38658619 +g1,10653:15466600,38658619 +g1,10653:15782746,38658619 +g1,10653:16098892,38658619 +g1,10653:16415038,38658619 +g1,10653:16731184,38658619 +g1,10653:17047330,38658619 +g1,10653:17363476,38658619 +h1,10653:18311913,38658619:0,0,0 +k1,10653:31966991,38658619:13655078 +g1,10653:31966991,38658619 +) +(1,10653:7246811,39324797:24720180,404226,9436 +h1,10653:7246811,39324797:0,0,0 +g1,10653:8195248,39324797 +g1,10653:8827540,39324797 +g1,10653:10092123,39324797 +g1,10653:11672852,39324797 +g1,10653:12937435,39324797 +g1,10653:14518164,39324797 +h1,10653:15782747,39324797:0,0,0 +k1,10653:31966991,39324797:16184244 +g1,10653:31966991,39324797 +) +] +) +g1,10654:31966991,39334233 +g1,10654:7246811,39334233 +g1,10654:7246811,39334233 +g1,10654:31966991,39334233 +g1,10654:31966991,39334233 +) +h1,10654:7246811,39530841:0,0,0 +(1,10658:7246811,40896617:24720180,505283,134348 +h1,10657:7246811,40896617:983040,0,0 +k1,10657:9816377,40896617:205682 +k1,10657:12106104,40896617:205682 +k1,10657:13412791,40896617:205682 +k1,10657:15128424,40896617:205683 +k1,10657:17888699,40896617:205682 +k1,10657:20404525,40896617:205682 +k1,10657:21261635,40896617:205682 +k1,10657:23595926,40896617:205682 +k1,10657:24993053,40896617:205682 +k1,10657:26171946,40896617:205683 +k1,10657:27029056,40896617:205682 +k1,10657:28735512,40896617:205682 +k1,10657:30985917,40896617:205682 +k1,10658:31966991,40896617:0 +) +(1,10658:7246811,41738105:24720180,513147,134348 +k1,10657:10258555,41738105:296587 +k1,10657:13135294,41738105:296587 +k1,10657:15690251,41738105:296587 +k1,10657:17872309,41738105:296587 +k1,10657:20929271,41738105:296586 +k1,10657:24198571,41738105:296587 +k1,10657:25304528,41738105:296587 +k1,10657:28626912,41738105:296587 +k1,10657:30114944,41738105:296587 +k1,10658:31966991,41738105:0 +) +(1,10658:7246811,42579593:24720180,513147,134348 +k1,10657:8616076,42579593:223696 +k1,10657:10407394,42579593:223697 +k1,10657:12603723,42579593:223696 +k1,10657:14111925,42579593:223696 +k1,10657:16660183,42579593:223696 +k1,10657:19727487,42579593:223697 +k1,10657:23254853,42579593:223696 +k1,10657:24792546,42579593:223696 +k1,10657:25760731,42579593:223696 +k1,10657:27003513,42579593:223697 +k1,10657:28652617,42579593:223696 +k1,10657:29535605,42579593:223696 +k1,10657:31966991,42579593:0 +) +(1,10658:7246811,43421081:24720180,505283,126483 +g1,10657:9704410,43421081 +g1,10657:11007921,43421081 +g1,10657:11954916,43421081 +g1,10657:15653112,43421081 +g1,10657:16538503,43421081 +k1,10658:31966991,43421081:11084762 +g1,10658:31966991,43421081 +) +] +) +] +r1,10658:32583029,44137388:26214,16471637,0 +) +] +) +) +g1,10658:32583029,43547564 +) +h1,10658:6630773,44163602:0,0,0 +] +(1,10661:32583029,45706769:0,0,0 +g1,10661:32583029,45706769 +) +) +] +(1,10661:6630773,47279633:25952256,0,0 +h1,10661:6630773,47279633:25952256,0,0 +) +] +h1,10661:4262630,4025873:0,0,0 +] +!26904 }200 -Input:1337:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1338:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1339:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1340:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1341:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1342:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1343:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1344:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1345:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1346:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1347:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1348:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1044 +Input:1333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1116 {201 -[1,10687:4262630,47279633:28320399,43253760,0 -(1,10687:4262630,4025873:0,0,0 -[1,10687:-473657,4025873:25952256,0,0 -(1,10687:-473657,-710414:25952256,0,0 -h1,10687:-473657,-710414:0,0,0 -(1,10687:-473657,-710414:0,0,0 -(1,10687:-473657,-710414:0,0,0 -g1,10687:-473657,-710414 -(1,10687:-473657,-710414:65781,0,65781 -g1,10687:-407876,-710414 -[1,10687:-407876,-644633:0,0,0 +[1,10692:4262630,47279633:28320399,43253760,0 +(1,10692:4262630,4025873:0,0,0 +[1,10692:-473657,4025873:25952256,0,0 +(1,10692:-473657,-710414:25952256,0,0 +h1,10692:-473657,-710414:0,0,0 +(1,10692:-473657,-710414:0,0,0 +(1,10692:-473657,-710414:0,0,0 +g1,10692:-473657,-710414 +(1,10692:-473657,-710414:65781,0,65781 +g1,10692:-407876,-710414 +[1,10692:-407876,-644633:0,0,0 ] ) -k1,10687:-473657,-710414:-65781 +k1,10692:-473657,-710414:-65781 ) ) -k1,10687:25478599,-710414:25952256 -g1,10687:25478599,-710414 +k1,10692:25478599,-710414:25952256 +g1,10692:25478599,-710414 ) ] ) -[1,10687:6630773,47279633:25952256,43253760,0 -[1,10687:6630773,4812305:25952256,786432,0 -(1,10687:6630773,4812305:25952256,513147,134348 -(1,10687:6630773,4812305:25952256,513147,134348 -g1,10687:3078558,4812305 -[1,10687:3078558,4812305:0,0,0 -(1,10687:3078558,2439708:0,1703936,0 -k1,10687:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10687:2537886,2439708:1179648,16384,0 +[1,10692:6630773,47279633:25952256,43253760,0 +[1,10692:6630773,4812305:25952256,786432,0 +(1,10692:6630773,4812305:25952256,513147,134348 +(1,10692:6630773,4812305:25952256,513147,134348 +g1,10692:3078558,4812305 +[1,10692:3078558,4812305:0,0,0 +(1,10692:3078558,2439708:0,1703936,0 +k1,10692:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10692:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10687:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10692:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10687:3078558,4812305:0,0,0 -(1,10687:3078558,2439708:0,1703936,0 -g1,10687:29030814,2439708 -g1,10687:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10687:36151628,1915420:16384,1179648,0 +[1,10692:3078558,4812305:0,0,0 +(1,10692:3078558,2439708:0,1703936,0 +g1,10692:29030814,2439708 +g1,10692:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10692:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10687:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10692:37855564,2439708:1179648,16384,0 ) ) -k1,10687:3078556,2439708:-34777008 +k1,10692:3078556,2439708:-34777008 ) ] -[1,10687:3078558,4812305:0,0,0 -(1,10687:3078558,49800853:0,16384,2228224 -k1,10687:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10687:2537886,49800853:1179648,16384,0 +[1,10692:3078558,4812305:0,0,0 +(1,10692:3078558,49800853:0,16384,2228224 +k1,10692:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10692:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10687:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10692:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10687:3078558,4812305:0,0,0 -(1,10687:3078558,49800853:0,16384,2228224 -g1,10687:29030814,49800853 -g1,10687:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10687:36151628,51504789:16384,1179648,0 +[1,10692:3078558,4812305:0,0,0 +(1,10692:3078558,49800853:0,16384,2228224 +g1,10692:29030814,49800853 +g1,10692:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10692:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10687:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10692:37855564,49800853:1179648,16384,0 ) ) -k1,10687:3078556,49800853:-34777008 +k1,10692:3078556,49800853:-34777008 ) ] -g1,10687:6630773,4812305 -k1,10687:25241686,4812305:17415536 -g1,10687:26807341,4812305 -g1,10687:30339731,4812305 -g1,10687:31154998,4812305 +g1,10692:6630773,4812305 +k1,10692:25241686,4812305:17415536 +g1,10692:26807341,4812305 +g1,10692:30339731,4812305 +g1,10692:31154998,4812305 ) ) ] -[1,10687:6630773,45706769:25952256,40108032,0 -(1,10687:6630773,45706769:25952256,40108032,0 -(1,10687:6630773,45706769:0,0,0 -g1,10687:6630773,45706769 +[1,10692:6630773,45706769:25952256,40108032,0 +(1,10692:6630773,45706769:25952256,40108032,0 +(1,10692:6630773,45706769:0,0,0 +g1,10692:6630773,45706769 ) -[1,10687:6630773,45706769:25952256,40108032,0 -v1,10656:6630773,6254097:0,393216,0 -(1,10657:6630773,9255132:25952256,3394251,616038 -g1,10657:6630773,9255132 -(1,10657:6630773,9255132:25952256,3394251,616038 -(1,10657:6630773,9871170:25952256,4010289,0 -[1,10657:6630773,9871170:25952256,4010289,0 -(1,10657:6630773,9844956:25952256,3957861,0 -r1,10657:6656987,9844956:26214,3957861,0 -[1,10657:6656987,9844956:25899828,3957861,0 -(1,10657:6656987,9255132:25899828,2778213,0 -[1,10657:7246811,9255132:24720180,2778213,0 -(1,10657:7246811,7564293:24720180,1087374,134348 -k1,10656:8639551,7564293:183037 -k1,10656:9651619,7564293:183038 -k1,10656:11731923,7564293:183037 -k1,10656:15579733,7564293:183037 -k1,10656:17059729,7564293:183038 -k1,10656:17455742,7564293:183021 -k1,10656:19604204,7564293:183037 -(1,10656:19604204,7564293:0,452978,115847 -r1,10657:22424453,7564293:2820249,568825,115847 -k1,10656:19604204,7564293:-2820249 -) -(1,10656:19604204,7564293:2820249,452978,115847 -k1,10656:19604204,7564293:3277 -h1,10656:22421176,7564293:0,411205,112570 -) -k1,10656:22607490,7564293:183037 -k1,10656:23476690,7564293:183038 -k1,10656:24430430,7564293:183037 -k1,10656:27859465,7564293:183037 -k1,10656:29268682,7564293:183038 -k1,10656:30470804,7564293:183037 -k1,10656:31966991,7564293:0 -) -(1,10657:7246811,8405781:24720180,505283,134348 -k1,10656:8267761,8405781:259422 -k1,10656:11524799,8405781:259421 -k1,10656:12415988,8405781:259422 -k1,10656:13866855,8405781:259422 -k1,10656:16538656,8405781:259421 -k1,10656:17817163,8405781:259422 -k1,10656:21262945,8405781:259422 -k1,10656:22173795,8405781:259422 -k1,10656:23458199,8405781:259421 -k1,10656:25048002,8405781:259422 -k1,10656:26326509,8405781:259422 -k1,10656:29364657,8405781:259421 -k1,10656:31435494,8405781:259422 -k1,10656:31966991,8405781:0 -) -(1,10657:7246811,9247269:24720180,513147,7863 -k1,10657:31966992,9247269:21784168 -g1,10657:31966992,9247269 -) -] -) -] -r1,10657:32583029,9844956:26214,3957861,0 -) -] -) -) -g1,10657:32583029,9255132 -) -h1,10657:6630773,9871170:0,0,0 -(1,10660:6630773,11198509:25952256,513147,134348 -h1,10659:6630773,11198509:983040,0,0 -k1,10659:8956099,11198509:300264 -k1,10659:10275448,11198509:300264 -k1,10659:12881924,11198509:300264 -k1,10659:16430152,11198509:300264 -k1,10659:20113384,11198509:300264 -k1,10659:21981270,11198509:300265 -k1,10659:23670242,11198509:300264 -k1,10659:25538127,11198509:300264 -k1,10659:26489819,11198509:300264 -k1,10659:28280372,11198509:300264 -k1,10659:30321928,11198509:300264 -k1,10659:31490544,11198509:300264 -k1,10660:32583029,11198509:0 -) -(1,10660:6630773,12039997:25952256,452978,115847 -(1,10659:6630773,12039997:0,452978,115847 -r1,10659:9451022,12039997:2820249,568825,115847 -k1,10659:6630773,12039997:-2820249 -) -(1,10659:6630773,12039997:2820249,452978,115847 -k1,10659:6630773,12039997:3277 -h1,10659:9447745,12039997:0,411205,112570 -) -k1,10660:32583028,12039997:22958336 -g1,10660:32583028,12039997 -) -v1,10662:6630773,13192025:0,393216,0 -(1,10666:6630773,13507121:25952256,708312,196608 -g1,10666:6630773,13507121 -g1,10666:6630773,13507121 -g1,10666:6434165,13507121 -(1,10666:6434165,13507121:0,708312,196608 -r1,10666:32779637,13507121:26345472,904920,196608 -k1,10666:6434165,13507121:-26345472 -) -(1,10666:6434165,13507121:26345472,708312,196608 -[1,10666:6630773,13507121:25952256,511704,0 -(1,10664:6630773,13399643:25952256,404226,107478 -(1,10663:6630773,13399643:0,0,0 -g1,10663:6630773,13399643 -g1,10663:6630773,13399643 -g1,10663:6303093,13399643 -(1,10663:6303093,13399643:0,0,0 -) -g1,10663:6630773,13399643 -) -k1,10664:6630773,13399643:0 -k1,10664:13243666,13399643:289979 -k1,10664:14482081,13399643:289978 -k1,10664:15088206,13399643:289979 -k1,10664:18223497,13399643:289979 -k1,10664:21358786,13399643:289978 -k1,10664:23229493,13399643:289979 -k1,10664:23835617,13399643:289978 -k1,10664:27287053,13399643:289979 -k1,10664:27893178,13399643:289979 -k1,10664:29447739,13399643:289978 -k1,10664:30686155,13399643:289979 -k1,10664:30686155,13399643:0 -h1,10664:32583029,13399643:0,0,0 -k1,10664:32583029,13399643:0 -k1,10664:32583029,13399643:0 -) -] -) -g1,10666:32583029,13507121 -g1,10666:6630773,13507121 -g1,10666:6630773,13507121 -g1,10666:32583029,13507121 -g1,10666:32583029,13507121 -) -h1,10666:6630773,13703729:0,0,0 -v1,10670:6630773,15516918:0,393216,0 -(1,10671:6630773,18634735:25952256,3511033,616038 -g1,10671:6630773,18634735 -(1,10671:6630773,18634735:25952256,3511033,616038 -(1,10671:6630773,19250773:25952256,4127071,0 -[1,10671:6630773,19250773:25952256,4127071,0 -(1,10671:6630773,19224559:25952256,4074643,0 -r1,10671:6656987,19224559:26214,4074643,0 -[1,10671:6656987,19224559:25899828,4074643,0 -(1,10671:6656987,18634735:25899828,2894995,0 -[1,10671:7246811,18634735:24720180,2894995,0 -(1,10671:7246811,16825276:24720180,1085536,298548 -(1,10670:7246811,16825276:0,1085536,298548 -r1,10671:8753226,16825276:1506415,1384084,298548 -k1,10670:7246811,16825276:-1506415 -) -(1,10670:7246811,16825276:1506415,1085536,298548 -) -k1,10670:8942129,16825276:188903 -k1,10670:11634507,16825276:188903 -k1,10670:13391032,16825276:188904 -k1,10670:15913672,16825276:188903 -k1,10670:17645293,16825276:188903 -k1,10670:18493488,16825276:188903 -k1,10670:20660922,16825276:188903 -(1,10670:20660922,16825276:0,452978,122846 -r1,10671:23481171,16825276:2820249,575824,122846 -k1,10670:20660922,16825276:-2820249 -) -(1,10670:20660922,16825276:2820249,452978,122846 -k1,10670:20660922,16825276:3277 -h1,10670:23477894,16825276:0,411205,112570 -) -k1,10670:23670074,16825276:188903 -k1,10670:25050423,16825276:188904 -(1,10670:25050423,16825276:0,452978,115847 -r1,10671:27870672,16825276:2820249,568825,115847 -k1,10670:25050423,16825276:-2820249 -) -(1,10670:25050423,16825276:2820249,452978,115847 -k1,10670:25050423,16825276:3277 -h1,10670:27867395,16825276:0,411205,112570 -) -k1,10670:28059575,16825276:188903 -k1,10670:29240038,16825276:188903 -k1,10671:31966991,16825276:0 -) -(1,10671:7246811,17666764:24720180,513147,126483 -k1,10670:8490168,17666764:218374 -k1,10670:9899988,17666764:218375 -k1,10670:12837451,17666764:218374 -k1,10670:13817354,17666764:218375 -(1,10670:13817354,17666764:0,452978,122846 -r1,10671:18747874,17666764:4930520,575824,122846 -k1,10670:13817354,17666764:-4930520 -) -(1,10670:13817354,17666764:4930520,452978,122846 -k1,10670:13817354,17666764:3277 -h1,10670:18744597,17666764:0,411205,112570 -) -k1,10670:18966248,17666764:218374 -k1,10670:20376068,17666764:218375 -(1,10670:20376068,17666764:0,452978,115847 -r1,10671:24954876,17666764:4578808,568825,115847 -k1,10670:20376068,17666764:-4578808 -) -(1,10670:20376068,17666764:4578808,452978,115847 -k1,10670:20376068,17666764:3277 -h1,10670:24951599,17666764:0,411205,112570 -) -k1,10670:25346920,17666764:218374 -k1,10670:27439625,17666764:218375 -k1,10670:28941194,17666764:218374 -k1,10670:31966991,17666764:0 -) -(1,10671:7246811,18508252:24720180,513147,126483 -g1,10670:8538525,18508252 -g1,10670:9093614,18508252 -g1,10670:12055186,18508252 -g1,10670:14338460,18508252 -g1,10670:15609858,18508252 -g1,10670:16800647,18508252 -g1,10670:18066147,18508252 -g1,10670:19230721,18508252 -g1,10670:20880917,18508252 -k1,10671:31966991,18508252:9016447 -g1,10671:31966991,18508252 -) -] -) -] -r1,10671:32583029,19224559:26214,4074643,0 -) -] -) -) -g1,10671:32583029,18634735 -) -h1,10671:6630773,19250773:0,0,0 -(1,10675:6630773,22544192:25952256,32768,229376 -(1,10675:6630773,22544192:0,32768,229376 -(1,10675:6630773,22544192:5505024,32768,229376 -r1,10675:12135797,22544192:5505024,262144,229376 -) -k1,10675:6630773,22544192:-5505024 -) -(1,10675:6630773,22544192:25952256,32768,0 -r1,10675:32583029,22544192:25952256,32768,0 -) -) -(1,10675:6630773,24148520:25952256,606339,151780 -(1,10675:6630773,24148520:1974731,582746,14155 -g1,10675:6630773,24148520 -g1,10675:8605504,24148520 -) -g1,10675:10655733,24148520 -g1,10675:16149747,24148520 -g1,10675:18163013,24148520 -k1,10675:32583029,24148520:11889279 -g1,10675:32583029,24148520 -) -v1,10678:6630773,25869074:0,393216,0 -(1,10679:6630773,39934100:25952256,14458242,616038 -g1,10679:6630773,39934100 -(1,10679:6630773,39934100:25952256,14458242,616038 -(1,10679:6630773,40550138:25952256,15074280,0 -[1,10679:6630773,40550138:25952256,15074280,0 -(1,10679:6630773,40523924:25952256,15021852,0 -r1,10679:6656987,40523924:26214,15021852,0 -[1,10679:6656987,40523924:25899828,15021852,0 -(1,10679:6656987,39934100:25899828,13842204,0 -[1,10679:7246811,39934100:24720180,13842204,0 -(1,10679:7246811,27177432:24720180,1085536,298548 -(1,10678:7246811,27177432:0,1085536,298548 -r1,10679:8753226,27177432:1506415,1384084,298548 -k1,10678:7246811,27177432:-1506415 -) -(1,10678:7246811,27177432:1506415,1085536,298548 -) -k1,10678:8999056,27177432:245830 -k1,10678:10441573,27177432:245830 -k1,10678:11993537,27177432:245831 -k1,10678:15478156,27177432:245830 -k1,10678:16079846,27177432:245830 -k1,10678:17706520,27177432:245830 -k1,10678:18611643,27177432:245831 -k1,10678:19876558,27177432:245830 -k1,10678:22095021,27177432:245830 -k1,10678:25366648,27177432:245830 -k1,10678:26803924,27177432:245831 -k1,10678:29834379,27177432:245830 -k1,10678:31435494,27177432:245830 -k1,10678:31966991,27177432:0 -) -(1,10679:7246811,28018920:24720180,513147,126483 -k1,10678:8519937,28018920:254041 -k1,10678:13122293,28018920:254042 -k1,10678:14035626,28018920:254041 -k1,10678:15308752,28018920:254041 -k1,10678:16497336,28018920:254041 -k1,10678:17410670,28018920:254042 -k1,10678:21069306,28018920:254041 -k1,10678:24617842,28018920:254041 -k1,10678:26063328,28018920:254041 -k1,10678:27336455,28018920:254042 -k1,10678:30775546,28018920:254041 -k1,10678:31966991,28018920:0 -) -(1,10679:7246811,28860408:24720180,513147,134348 -k1,10678:11156821,28860408:191497 -k1,10678:13507729,28860408:191497 -k1,10678:14718311,28860408:191497 -k1,10678:17672150,28860408:191496 -k1,10678:21063115,28860408:191497 -k1,10678:21742193,28860408:191490 -k1,10678:24175020,28860408:191496 -k1,10678:27605306,28860408:191497 -k1,10678:28328300,28860408:191497 -k1,10678:29804303,28860408:191497 -k1,10678:31966991,28860408:0 -) -(1,10679:7246811,29701896:24720180,513147,134348 -k1,10678:8230506,29701896:217579 -k1,10678:9467169,29701896:217578 -k1,10678:12710545,29701896:217579 -k1,10678:13919684,29701896:217579 -k1,10678:16518840,29701896:217578 -k1,10678:17802690,29701896:217579 -k1,10678:19395870,29701896:217579 -k1,10678:20561099,29701896:217578 -k1,10678:23068506,29701896:217579 -k1,10678:23945376,29701896:217578 -k1,10678:25718124,29701896:217579 -(1,10678:25718124,29701896:0,452978,115847 -r1,10679:27834949,29701896:2116825,568825,115847 -k1,10678:25718124,29701896:-2116825 -) -(1,10678:25718124,29701896:2116825,452978,115847 -k1,10678:25718124,29701896:3277 -h1,10678:27831672,29701896:0,411205,112570 -) -k1,10678:28226198,29701896:217579 -k1,10678:29515945,29701896:217578 -k1,10678:31019340,29701896:217579 -k1,10678:31966991,29701896:0 -) -(1,10679:7246811,30543384:24720180,513147,134348 -k1,10678:9702010,30543384:165371 -k1,10678:10526672,30543384:165370 -k1,10678:12247212,30543384:165371 -(1,10678:12247212,30543384:0,452978,115847 -r1,10679:15770884,30543384:3523672,568825,115847 -k1,10678:12247212,30543384:-3523672 -) -(1,10678:12247212,30543384:3523672,452978,115847 -k1,10678:12247212,30543384:3277 -h1,10678:15767607,30543384:0,411205,112570 -) -k1,10678:15936254,30543384:165370 -k1,10678:19219173,30543384:165371 -k1,10678:21809375,30543384:165370 -k1,10678:23166191,30543384:165371 -k1,10678:24279212,30543384:165370 -k1,10678:25674660,30543384:165337 -k1,10678:28993623,30543384:165371 -k1,10678:31966991,30543384:0 -) -(1,10679:7246811,31384872:24720180,513147,134348 -k1,10678:8884013,31384872:243251 -k1,10678:12407997,31384872:243252 -k1,10678:14735293,31384872:243251 -k1,10678:16210622,31384872:243252 -k1,10678:17739689,31384872:243251 -k1,10678:20261628,31384872:243252 -h1,10678:21630675,31384872:0,0,0 -k1,10678:21873926,31384872:243251 -k1,10678:22926547,31384872:243251 -k1,10678:24667952,31384872:243252 -h1,10678:25863329,31384872:0,0,0 -k1,10678:26487344,31384872:243251 -k1,10678:27218140,31384872:243208 -k1,10678:29736801,31384872:243251 -k1,10678:31966991,31384872:0 -) -(1,10679:7246811,32226360:24720180,513147,134348 -k1,10678:9356939,32226360:279052 -k1,10678:10252030,32226360:279053 -k1,10678:13111234,32226360:279052 -k1,10678:15822327,32226360:279053 -k1,10678:19618041,32226360:279052 -k1,10678:20252953,32226360:279052 -k1,10678:23294349,32226360:279053 -k1,10678:25657446,32226360:279052 -k1,10678:29101233,32226360:279053 -k1,10678:30947906,32226360:279052 -k1,10678:31966991,32226360:0 -) -(1,10679:7246811,33067848:24720180,513147,95026 -k1,10678:8560876,33067848:221580 -k1,10678:9441747,33067848:221579 -k1,10678:12807089,33067848:221580 -k1,10678:16632493,33067848:221579 -k1,10678:17994376,33067848:221557 -k1,10678:20543139,33067848:221580 -k1,10678:21424010,33067848:221579 -k1,10678:25926402,33067848:221580 -k1,10678:29451651,33067848:221579 -k1,10678:31479403,33067848:221580 -k1,10678:31966991,33067848:0 -) -(1,10679:7246811,33909336:24720180,513147,126483 -k1,10678:10447065,33909336:149553 -k1,10678:11255910,33909336:149553 -k1,10678:13378096,33909336:149553 -k1,10678:14719095,33909336:149554 -k1,10678:16651883,33909336:149553 -k1,10678:17460728,33909336:149553 -k1,10678:18629366,33909336:149553 -k1,10678:21986906,33909336:149553 -k1,10678:22667956,33909336:149553 -k1,10678:24102015,33909336:149553 -k1,10678:25270653,33909336:149553 -k1,10678:27504252,33909336:149554 -k1,10678:28185302,33909336:149553 -k1,10678:29401126,33909336:149553 -k1,10678:30516024,33909336:149553 -k1,10678:31966991,33909336:0 -) -(1,10679:7246811,34750824:24720180,513147,126483 -k1,10678:9475363,34750824:158925 -k1,10678:13732909,34750824:158924 -k1,10678:15583974,34750824:158925 -k1,10678:18438395,34750824:158925 -k1,10678:19788764,34750824:158924 -k1,10678:22402012,34750824:158925 -k1,10678:24629253,34750824:158925 -k1,10678:26644158,34750824:158925 -k1,10678:29448115,34750824:158924 -k1,10678:31350953,34750824:158925 -k1,10678:31966991,34750824:0 -) -(1,10679:7246811,35592312:24720180,513147,134348 -k1,10678:8865365,35592312:184626 -k1,10678:9464820,35592312:184612 -k1,10678:10332332,35592312:184627 -k1,10678:12156669,35592312:184626 -k1,10678:13735246,35592312:184626 -k1,10678:15988189,35592312:184627 -k1,10678:17686041,35592312:184626 -k1,10678:18486705,35592312:184626 -k1,10678:20373302,35592312:184627 -k1,10678:23642052,35592312:184626 -k1,10678:24241507,35592312:184612 -k1,10678:26031765,35592312:184626 -k1,10678:26747889,35592312:184627 -k1,10678:30071034,35592312:184626 -k1,10678:31966991,35592312:0 -) -(1,10679:7246811,36433800:24720180,513147,134348 -k1,10678:8617278,36433800:179022 -k1,10678:11635321,36433800:179023 -k1,10678:12465771,36433800:179022 -k1,10678:14872363,36433800:179023 -k1,10678:17585007,36433800:179022 -k1,10678:18955474,36433800:179022 -k1,10678:22202893,36433800:179023 -k1,10678:25917582,36433800:179022 -k1,10678:27044256,36433800:179023 -k1,10678:27579138,36433800:179022 -k1,10678:29146869,36433800:179023 -k1,10678:30924969,36433800:179022 -k1,10678:31966991,36433800:0 -) -(1,10679:7246811,37275288:24720180,513147,134348 -k1,10678:8986590,37275288:243592 -k1,10678:12054128,37275288:243592 -k1,10678:12949149,37275288:243593 -k1,10678:15420310,37275288:243592 -k1,10678:16279940,37275288:243592 -k1,10678:17616017,37275288:243592 -k1,10678:18807261,37275288:243593 -k1,10678:20907488,37275288:243592 -k1,10678:22170165,37275288:243592 -k1,10678:24182574,37275288:243592 -k1,10678:27336621,37275288:243593 -k1,10678:28038310,37275288:243592 -k1,10678:30983951,37275288:243592 -k1,10678:31966991,37275288:0 -) -(1,10679:7246811,38116776:24720180,505283,134348 -k1,10678:8541853,38116776:275957 -k1,10678:10030881,38116776:275957 -k1,10678:14369415,38116776:275957 -k1,10678:15103469,38116776:275957 -k1,10678:16511888,38116776:275957 -k1,10678:18491781,38116776:275957 -k1,10678:20550972,38116776:275956 -k1,10678:22562322,38116776:275957 -k1,10678:23857364,38116776:275957 -k1,10678:27341308,38116776:275957 -k1,10678:28485617,38116776:275957 -k1,10678:30291840,38116776:275957 -k1,10678:31219225,38116776:275957 -k1,10678:31966991,38116776:0 -) -(1,10679:7246811,38958264:24720180,513147,134348 -k1,10678:10407667,38958264:271374 -k1,10678:11330468,38958264:271373 -k1,10678:13473550,38958264:271374 -k1,10678:14842651,38958264:271373 -k1,10678:16444406,38958264:271374 -k1,10678:20106612,38958264:271373 -k1,10678:21874173,38958264:271374 -k1,10678:23658773,38958264:271374 -k1,10678:25061953,38958264:271373 -k1,10678:27218798,38958264:271374 -k1,10678:30025104,38958264:271373 -k1,10678:30947906,38958264:271374 -k1,10678:31966991,38958264:0 -) -(1,10679:7246811,39799752:24720180,505283,134348 -g1,10678:10654027,39799752 -g1,10678:13763710,39799752 -g1,10678:14831291,39799752 -g1,10678:16367454,39799752 -k1,10679:31966991,39799752:14333381 -g1,10679:31966991,39799752 -) -] -) -] -r1,10679:32583029,40523924:26214,15021852,0 -) -] -) -) -g1,10679:32583029,39934100 -) -h1,10679:6630773,40550138:0,0,0 -(1,10681:6630773,41947601:25952256,555811,139132 -(1,10681:6630773,41947601:2450326,534184,12975 -g1,10681:6630773,41947601 -g1,10681:9081099,41947601 -) -g1,10681:12764157,41947601 -k1,10681:32583029,41947601:14629862 -g1,10681:32583029,41947601 -) -(1,10685:6630773,43182305:25952256,513147,134348 -k1,10684:10060654,43182305:256628 -k1,10684:11601788,43182305:256628 -k1,10684:12877501,43182305:256628 -k1,10684:14523492,43182305:256628 -k1,10684:15311617,43182305:256628 -k1,10684:17606415,43182305:256628 -k1,10684:18479081,43182305:256628 -k1,10684:20124417,43182305:256628 -k1,10684:22122337,43182305:256628 -k1,10684:25195702,43182305:256628 -k1,10684:28856925,43182305:256628 -k1,10684:30105113,43182305:256628 -k1,10685:32583029,43182305:0 -) -(1,10685:6630773,44023793:25952256,513147,134348 -k1,10684:8015476,44023793:245032 -k1,10684:11615296,44023793:245032 -k1,10684:13870973,44023793:245032 -k1,10684:15683626,44023793:245032 -k1,10684:16947742,44023793:245031 -k1,10684:18846247,44023793:245032 -k1,10684:22832729,44023793:245032 -k1,10684:26526265,44023793:245032 -k1,10684:30573040,44023793:245032 -k1,10684:32583029,44023793:0 -) -(1,10685:6630773,44865281:25952256,513147,134348 -k1,10684:7207100,44865281:220467 -k1,10684:9300586,44865281:220467 -k1,10684:10724949,44865281:220467 -k1,10684:11604708,44865281:220467 -k1,10684:12181035,44865281:220467 -k1,10684:13790865,44865281:220467 -k1,10684:15887627,44865281:220466 -k1,10684:16790979,44865281:220467 -k1,10684:18996532,44865281:220467 -k1,10684:21008753,44865281:220467 -k1,10684:24255017,44865281:220467 -(1,10684:24255017,44865281:0,452978,115847 -r1,10684:27075266,44865281:2820249,568825,115847 -k1,10684:24255017,44865281:-2820249 -) -(1,10684:24255017,44865281:2820249,452978,115847 -k1,10684:24255017,44865281:3277 -h1,10684:27071989,44865281:0,411205,112570 -) -k1,10684:27295733,44865281:220467 -k1,10684:28707645,44865281:220467 -(1,10684:28707645,44865281:0,452978,115847 -r1,10684:32583029,44865281:3875384,568825,115847 -k1,10684:28707645,44865281:-3875384 -) -(1,10684:28707645,44865281:3875384,452978,115847 -k1,10684:28707645,44865281:3277 -h1,10684:32579752,44865281:0,411205,112570 -) -k1,10684:32583029,44865281:0 -) -(1,10685:6630773,45706769:25952256,513147,134348 -k1,10684:7796200,45706769:297075 -k1,10684:9197556,45706769:297074 -k1,10684:11518383,45706769:297075 -k1,10684:14198346,45706769:297074 -k1,10684:17679160,45706769:297075 -k1,10684:18737763,45706769:297075 -k1,10684:22389625,45706769:297074 -k1,10684:25449043,45706769:297075 -k1,10684:28761428,45706769:297074 -k1,10684:29741388,45706769:297075 -k1,10684:32583029,45706769:0 -) -] -(1,10687:32583029,45706769:0,0,0 -g1,10687:32583029,45706769 -) -) -] -(1,10687:6630773,47279633:25952256,0,0 -h1,10687:6630773,47279633:25952256,0,0 -) -] -h1,10687:4262630,4025873:0,0,0 -] -!22671 +[1,10692:6630773,45706769:25952256,40108032,0 +v1,10661:6630773,6254097:0,393216,0 +(1,10662:6630773,9255132:25952256,3394251,616038 +g1,10662:6630773,9255132 +(1,10662:6630773,9255132:25952256,3394251,616038 +(1,10662:6630773,9871170:25952256,4010289,0 +[1,10662:6630773,9871170:25952256,4010289,0 +(1,10662:6630773,9844956:25952256,3957861,0 +r1,10662:6656987,9844956:26214,3957861,0 +[1,10662:6656987,9844956:25899828,3957861,0 +(1,10662:6656987,9255132:25899828,2778213,0 +[1,10662:7246811,9255132:24720180,2778213,0 +(1,10662:7246811,7564293:24720180,1087374,134348 +k1,10661:8639551,7564293:183037 +k1,10661:9651619,7564293:183038 +k1,10661:11731923,7564293:183037 +k1,10661:15579733,7564293:183037 +k1,10661:17059729,7564293:183038 +k1,10661:17455742,7564293:183021 +k1,10661:19604204,7564293:183037 +(1,10661:19604204,7564293:0,452978,115847 +r1,10662:22424453,7564293:2820249,568825,115847 +k1,10661:19604204,7564293:-2820249 +) +(1,10661:19604204,7564293:2820249,452978,115847 +k1,10661:19604204,7564293:3277 +h1,10661:22421176,7564293:0,411205,112570 +) +k1,10661:22607490,7564293:183037 +k1,10661:23476690,7564293:183038 +k1,10661:24430430,7564293:183037 +k1,10661:27859465,7564293:183037 +k1,10661:29268682,7564293:183038 +k1,10661:30470804,7564293:183037 +k1,10661:31966991,7564293:0 +) +(1,10662:7246811,8405781:24720180,505283,134348 +k1,10661:8267761,8405781:259422 +k1,10661:11524799,8405781:259421 +k1,10661:12415988,8405781:259422 +k1,10661:13866855,8405781:259422 +k1,10661:16538656,8405781:259421 +k1,10661:17817163,8405781:259422 +k1,10661:21262945,8405781:259422 +k1,10661:22173795,8405781:259422 +k1,10661:23458199,8405781:259421 +k1,10661:25048002,8405781:259422 +k1,10661:26326509,8405781:259422 +k1,10661:29364657,8405781:259421 +k1,10661:31435494,8405781:259422 +k1,10661:31966991,8405781:0 +) +(1,10662:7246811,9247269:24720180,513147,7863 +k1,10662:31966992,9247269:21784168 +g1,10662:31966992,9247269 +) +] +) +] +r1,10662:32583029,9844956:26214,3957861,0 +) +] +) +) +g1,10662:32583029,9255132 +) +h1,10662:6630773,9871170:0,0,0 +(1,10665:6630773,11198509:25952256,513147,134348 +h1,10664:6630773,11198509:983040,0,0 +k1,10664:8956099,11198509:300264 +k1,10664:10275448,11198509:300264 +k1,10664:12881924,11198509:300264 +k1,10664:16430152,11198509:300264 +k1,10664:20113384,11198509:300264 +k1,10664:21981270,11198509:300265 +k1,10664:23670242,11198509:300264 +k1,10664:25538127,11198509:300264 +k1,10664:26489819,11198509:300264 +k1,10664:28280372,11198509:300264 +k1,10664:30321928,11198509:300264 +k1,10664:31490544,11198509:300264 +k1,10665:32583029,11198509:0 +) +(1,10665:6630773,12039997:25952256,452978,115847 +(1,10664:6630773,12039997:0,452978,115847 +r1,10664:9451022,12039997:2820249,568825,115847 +k1,10664:6630773,12039997:-2820249 +) +(1,10664:6630773,12039997:2820249,452978,115847 +k1,10664:6630773,12039997:3277 +h1,10664:9447745,12039997:0,411205,112570 +) +k1,10665:32583028,12039997:22958336 +g1,10665:32583028,12039997 +) +v1,10667:6630773,13192025:0,393216,0 +(1,10671:6630773,13507121:25952256,708312,196608 +g1,10671:6630773,13507121 +g1,10671:6630773,13507121 +g1,10671:6434165,13507121 +(1,10671:6434165,13507121:0,708312,196608 +r1,10671:32779637,13507121:26345472,904920,196608 +k1,10671:6434165,13507121:-26345472 +) +(1,10671:6434165,13507121:26345472,708312,196608 +[1,10671:6630773,13507121:25952256,511704,0 +(1,10669:6630773,13399643:25952256,404226,107478 +(1,10668:6630773,13399643:0,0,0 +g1,10668:6630773,13399643 +g1,10668:6630773,13399643 +g1,10668:6303093,13399643 +(1,10668:6303093,13399643:0,0,0 +) +g1,10668:6630773,13399643 +) +k1,10669:6630773,13399643:0 +k1,10669:13243666,13399643:289979 +k1,10669:14482081,13399643:289978 +k1,10669:15088206,13399643:289979 +k1,10669:18223497,13399643:289979 +k1,10669:21358786,13399643:289978 +k1,10669:23229493,13399643:289979 +k1,10669:23835617,13399643:289978 +k1,10669:27287053,13399643:289979 +k1,10669:27893178,13399643:289979 +k1,10669:29447739,13399643:289978 +k1,10669:30686155,13399643:289979 +k1,10669:30686155,13399643:0 +h1,10669:32583029,13399643:0,0,0 +k1,10669:32583029,13399643:0 +k1,10669:32583029,13399643:0 +) +] +) +g1,10671:32583029,13507121 +g1,10671:6630773,13507121 +g1,10671:6630773,13507121 +g1,10671:32583029,13507121 +g1,10671:32583029,13507121 +) +h1,10671:6630773,13703729:0,0,0 +v1,10675:6630773,15516918:0,393216,0 +(1,10676:6630773,18634735:25952256,3511033,616038 +g1,10676:6630773,18634735 +(1,10676:6630773,18634735:25952256,3511033,616038 +(1,10676:6630773,19250773:25952256,4127071,0 +[1,10676:6630773,19250773:25952256,4127071,0 +(1,10676:6630773,19224559:25952256,4074643,0 +r1,10676:6656987,19224559:26214,4074643,0 +[1,10676:6656987,19224559:25899828,4074643,0 +(1,10676:6656987,18634735:25899828,2894995,0 +[1,10676:7246811,18634735:24720180,2894995,0 +(1,10676:7246811,16825276:24720180,1085536,298548 +(1,10675:7246811,16825276:0,1085536,298548 +r1,10676:8753226,16825276:1506415,1384084,298548 +k1,10675:7246811,16825276:-1506415 +) +(1,10675:7246811,16825276:1506415,1085536,298548 +) +k1,10675:9004805,16825276:251579 +k1,10675:11759860,16825276:251580 +k1,10675:13579060,16825276:251579 +k1,10675:16164377,16825276:251580 +k1,10675:17958674,16825276:251579 +k1,10675:18869546,16825276:251580 +k1,10675:21099656,16825276:251579 +(1,10675:21099656,16825276:0,452978,122846 +r1,10676:23919905,16825276:2820249,575824,122846 +k1,10675:21099656,16825276:-2820249 +) +(1,10675:21099656,16825276:2820249,452978,122846 +k1,10675:21099656,16825276:3277 +h1,10675:23916628,16825276:0,411205,112570 +) +k1,10675:24171485,16825276:251580 +k1,10675:25614509,16825276:251579 +(1,10675:25614509,16825276:0,452978,115847 +r1,10676:28434758,16825276:2820249,568825,115847 +k1,10675:25614509,16825276:-2820249 +) +(1,10675:25614509,16825276:2820249,452978,115847 +k1,10675:25614509,16825276:3277 +h1,10675:28431481,16825276:0,411205,112570 +) +k1,10675:28686338,16825276:251580 +k1,10675:29929477,16825276:251579 +k1,10676:31966991,16825276:0 +) +(1,10676:7246811,17666764:24720180,513147,126483 +k1,10675:9103003,17666764:141770 +k1,10675:10436218,17666764:141770 +k1,10675:13297077,17666764:141770 +k1,10675:14200375,17666764:141770 +(1,10675:14200375,17666764:0,452978,122846 +r1,10676:19130895,17666764:4930520,575824,122846 +k1,10675:14200375,17666764:-4930520 +) +(1,10675:14200375,17666764:4930520,452978,122846 +k1,10675:14200375,17666764:3277 +h1,10675:19127618,17666764:0,411205,112570 +) +k1,10675:19272666,17666764:141771 +k1,10675:20605881,17666764:141770 +(1,10675:20605881,17666764:0,452978,115847 +r1,10676:25184689,17666764:4578808,568825,115847 +k1,10675:20605881,17666764:-4578808 +) +(1,10675:20605881,17666764:4578808,452978,115847 +k1,10675:20605881,17666764:3277 +h1,10675:25181412,17666764:0,411205,112570 +) +k1,10675:25500129,17666764:141770 +k1,10675:27516229,17666764:141770 +k1,10675:28941194,17666764:141770 +k1,10675:31966991,17666764:0 +) +(1,10676:7246811,18508252:24720180,513147,126483 +g1,10675:8538525,18508252 +g1,10675:9093614,18508252 +g1,10675:12055186,18508252 +g1,10675:14338460,18508252 +g1,10675:15609858,18508252 +g1,10675:16800647,18508252 +g1,10675:18066147,18508252 +g1,10675:19230721,18508252 +g1,10675:20880917,18508252 +k1,10676:31966991,18508252:9016447 +g1,10676:31966991,18508252 +) +] +) +] +r1,10676:32583029,19224559:26214,4074643,0 +) +] +) +) +g1,10676:32583029,18634735 +) +h1,10676:6630773,19250773:0,0,0 +(1,10680:6630773,22544192:25952256,32768,229376 +(1,10680:6630773,22544192:0,32768,229376 +(1,10680:6630773,22544192:5505024,32768,229376 +r1,10680:12135797,22544192:5505024,262144,229376 +) +k1,10680:6630773,22544192:-5505024 +) +(1,10680:6630773,22544192:25952256,32768,0 +r1,10680:32583029,22544192:25952256,32768,0 +) +) +(1,10680:6630773,24148520:25952256,606339,151780 +(1,10680:6630773,24148520:1974731,582746,14155 +g1,10680:6630773,24148520 +g1,10680:8605504,24148520 +) +g1,10680:10655733,24148520 +g1,10680:16149747,24148520 +g1,10680:18163013,24148520 +k1,10680:32583029,24148520:11889279 +g1,10680:32583029,24148520 +) +v1,10683:6630773,25869074:0,393216,0 +(1,10684:6630773,39934100:25952256,14458242,616038 +g1,10684:6630773,39934100 +(1,10684:6630773,39934100:25952256,14458242,616038 +(1,10684:6630773,40550138:25952256,15074280,0 +[1,10684:6630773,40550138:25952256,15074280,0 +(1,10684:6630773,40523924:25952256,15021852,0 +r1,10684:6656987,40523924:26214,15021852,0 +[1,10684:6656987,40523924:25899828,15021852,0 +(1,10684:6656987,39934100:25899828,13842204,0 +[1,10684:7246811,39934100:24720180,13842204,0 +(1,10684:7246811,27177432:24720180,1085536,298548 +(1,10683:7246811,27177432:0,1085536,298548 +r1,10684:8753226,27177432:1506415,1384084,298548 +k1,10683:7246811,27177432:-1506415 +) +(1,10683:7246811,27177432:1506415,1085536,298548 +) +k1,10683:8999056,27177432:245830 +k1,10683:10441573,27177432:245830 +k1,10683:11993537,27177432:245831 +k1,10683:15478156,27177432:245830 +k1,10683:16079846,27177432:245830 +k1,10683:17706520,27177432:245830 +k1,10683:18611643,27177432:245831 +k1,10683:19876558,27177432:245830 +k1,10683:22095021,27177432:245830 +k1,10683:25366648,27177432:245830 +k1,10683:26803924,27177432:245831 +k1,10683:29834379,27177432:245830 +k1,10683:31435494,27177432:245830 +k1,10683:31966991,27177432:0 +) +(1,10684:7246811,28018920:24720180,513147,126483 +k1,10683:8519937,28018920:254041 +k1,10683:13122293,28018920:254042 +k1,10683:14035626,28018920:254041 +k1,10683:15308752,28018920:254041 +k1,10683:16497336,28018920:254041 +k1,10683:17410670,28018920:254042 +k1,10683:21069306,28018920:254041 +k1,10683:24617842,28018920:254041 +k1,10683:26063328,28018920:254041 +k1,10683:27336455,28018920:254042 +k1,10683:30775546,28018920:254041 +k1,10683:31966991,28018920:0 +) +(1,10684:7246811,28860408:24720180,513147,134348 +k1,10683:11156821,28860408:191497 +k1,10683:13507729,28860408:191497 +k1,10683:14718311,28860408:191497 +k1,10683:17672150,28860408:191496 +k1,10683:21063115,28860408:191497 +k1,10683:21742193,28860408:191490 +k1,10683:24175020,28860408:191496 +k1,10683:27605306,28860408:191497 +k1,10683:28328300,28860408:191497 +k1,10683:29804303,28860408:191497 +k1,10683:31966991,28860408:0 +) +(1,10684:7246811,29701896:24720180,513147,134348 +k1,10683:8230506,29701896:217579 +k1,10683:9467169,29701896:217578 +k1,10683:12710545,29701896:217579 +k1,10683:13919684,29701896:217579 +k1,10683:16518840,29701896:217578 +k1,10683:17802690,29701896:217579 +k1,10683:19395870,29701896:217579 +k1,10683:20561099,29701896:217578 +k1,10683:23068506,29701896:217579 +k1,10683:23945376,29701896:217578 +k1,10683:25718124,29701896:217579 +(1,10683:25718124,29701896:0,452978,115847 +r1,10684:27834949,29701896:2116825,568825,115847 +k1,10683:25718124,29701896:-2116825 +) +(1,10683:25718124,29701896:2116825,452978,115847 +k1,10683:25718124,29701896:3277 +h1,10683:27831672,29701896:0,411205,112570 +) +k1,10683:28226198,29701896:217579 +k1,10683:29515945,29701896:217578 +k1,10683:31019340,29701896:217579 +k1,10683:31966991,29701896:0 +) +(1,10684:7246811,30543384:24720180,513147,134348 +k1,10683:9702010,30543384:165371 +k1,10683:10526672,30543384:165370 +k1,10683:12247212,30543384:165371 +(1,10683:12247212,30543384:0,452978,115847 +r1,10684:15770884,30543384:3523672,568825,115847 +k1,10683:12247212,30543384:-3523672 +) +(1,10683:12247212,30543384:3523672,452978,115847 +k1,10683:12247212,30543384:3277 +h1,10683:15767607,30543384:0,411205,112570 +) +k1,10683:15936254,30543384:165370 +k1,10683:19219173,30543384:165371 +k1,10683:21809375,30543384:165370 +k1,10683:23166191,30543384:165371 +k1,10683:24279212,30543384:165370 +k1,10683:25674660,30543384:165337 +k1,10683:28993623,30543384:165371 +k1,10683:31966991,30543384:0 +) +(1,10684:7246811,31384872:24720180,513147,134348 +k1,10683:8884013,31384872:243251 +k1,10683:12407997,31384872:243252 +k1,10683:14735293,31384872:243251 +k1,10683:16210622,31384872:243252 +k1,10683:17739689,31384872:243251 +k1,10683:20261628,31384872:243252 +h1,10683:21630675,31384872:0,0,0 +k1,10683:21873926,31384872:243251 +k1,10683:22926547,31384872:243251 +k1,10683:24667952,31384872:243252 +h1,10683:25863329,31384872:0,0,0 +k1,10683:26487344,31384872:243251 +k1,10683:27218140,31384872:243208 +k1,10683:29736801,31384872:243251 +k1,10683:31966991,31384872:0 +) +(1,10684:7246811,32226360:24720180,513147,134348 +k1,10683:9356939,32226360:279052 +k1,10683:10252030,32226360:279053 +k1,10683:13111234,32226360:279052 +k1,10683:15822327,32226360:279053 +k1,10683:19618041,32226360:279052 +k1,10683:20252953,32226360:279052 +k1,10683:23294349,32226360:279053 +k1,10683:25657446,32226360:279052 +k1,10683:29101233,32226360:279053 +k1,10683:30947906,32226360:279052 +k1,10683:31966991,32226360:0 +) +(1,10684:7246811,33067848:24720180,513147,95026 +k1,10683:8560876,33067848:221580 +k1,10683:9441747,33067848:221579 +k1,10683:12807089,33067848:221580 +k1,10683:16632493,33067848:221579 +k1,10683:17994376,33067848:221557 +k1,10683:20543139,33067848:221580 +k1,10683:21424010,33067848:221579 +k1,10683:25926402,33067848:221580 +k1,10683:29451651,33067848:221579 +k1,10683:31479403,33067848:221580 +k1,10683:31966991,33067848:0 +) +(1,10684:7246811,33909336:24720180,513147,126483 +k1,10683:10447065,33909336:149553 +k1,10683:11255910,33909336:149553 +k1,10683:13378096,33909336:149553 +k1,10683:14719095,33909336:149554 +k1,10683:16651883,33909336:149553 +k1,10683:17460728,33909336:149553 +k1,10683:18629366,33909336:149553 +k1,10683:21986906,33909336:149553 +k1,10683:22667956,33909336:149553 +k1,10683:24102015,33909336:149553 +k1,10683:25270653,33909336:149553 +k1,10683:27504252,33909336:149554 +k1,10683:28185302,33909336:149553 +k1,10683:29401126,33909336:149553 +k1,10683:30516024,33909336:149553 +k1,10683:31966991,33909336:0 +) +(1,10684:7246811,34750824:24720180,513147,126483 +k1,10683:9475363,34750824:158925 +k1,10683:13732909,34750824:158924 +k1,10683:15583974,34750824:158925 +k1,10683:18438395,34750824:158925 +k1,10683:19788764,34750824:158924 +k1,10683:22402012,34750824:158925 +k1,10683:24629253,34750824:158925 +k1,10683:26644158,34750824:158925 +k1,10683:29448115,34750824:158924 +k1,10683:31350953,34750824:158925 +k1,10683:31966991,34750824:0 +) +(1,10684:7246811,35592312:24720180,513147,134348 +k1,10683:8865365,35592312:184626 +k1,10683:9464820,35592312:184612 +k1,10683:10332332,35592312:184627 +k1,10683:12156669,35592312:184626 +k1,10683:13735246,35592312:184626 +k1,10683:15988189,35592312:184627 +k1,10683:17686041,35592312:184626 +k1,10683:18486705,35592312:184626 +k1,10683:20373302,35592312:184627 +k1,10683:23642052,35592312:184626 +k1,10683:24241507,35592312:184612 +k1,10683:26031765,35592312:184626 +k1,10683:26747889,35592312:184627 +k1,10683:30071034,35592312:184626 +k1,10683:31966991,35592312:0 +) +(1,10684:7246811,36433800:24720180,513147,134348 +k1,10683:8617278,36433800:179022 +k1,10683:11635321,36433800:179023 +k1,10683:12465771,36433800:179022 +k1,10683:14872363,36433800:179023 +k1,10683:17585007,36433800:179022 +k1,10683:18955474,36433800:179022 +k1,10683:22202893,36433800:179023 +k1,10683:25917582,36433800:179022 +k1,10683:27044256,36433800:179023 +k1,10683:27579138,36433800:179022 +k1,10683:29146869,36433800:179023 +k1,10683:30924969,36433800:179022 +k1,10683:31966991,36433800:0 +) +(1,10684:7246811,37275288:24720180,513147,134348 +k1,10683:8986590,37275288:243592 +k1,10683:12054128,37275288:243592 +k1,10683:12949149,37275288:243593 +k1,10683:15420310,37275288:243592 +k1,10683:16279940,37275288:243592 +k1,10683:17616017,37275288:243592 +k1,10683:18807261,37275288:243593 +k1,10683:20907488,37275288:243592 +k1,10683:22170165,37275288:243592 +k1,10683:24182574,37275288:243592 +k1,10683:27336621,37275288:243593 +k1,10683:28038310,37275288:243592 +k1,10683:30983951,37275288:243592 +k1,10683:31966991,37275288:0 +) +(1,10684:7246811,38116776:24720180,505283,134348 +k1,10683:8541853,38116776:275957 +k1,10683:10030881,38116776:275957 +k1,10683:14369415,38116776:275957 +k1,10683:15103469,38116776:275957 +k1,10683:16511888,38116776:275957 +k1,10683:18491781,38116776:275957 +k1,10683:20550972,38116776:275956 +k1,10683:22562322,38116776:275957 +k1,10683:23857364,38116776:275957 +k1,10683:27341308,38116776:275957 +k1,10683:28485617,38116776:275957 +k1,10683:30291840,38116776:275957 +k1,10683:31219225,38116776:275957 +k1,10683:31966991,38116776:0 +) +(1,10684:7246811,38958264:24720180,513147,134348 +k1,10683:10407667,38958264:271374 +k1,10683:11330468,38958264:271373 +k1,10683:13473550,38958264:271374 +k1,10683:14842651,38958264:271373 +k1,10683:16444406,38958264:271374 +k1,10683:20106612,38958264:271373 +k1,10683:21874173,38958264:271374 +k1,10683:23658773,38958264:271374 +k1,10683:25061953,38958264:271373 +k1,10683:27218798,38958264:271374 +k1,10683:30025104,38958264:271373 +k1,10683:30947906,38958264:271374 +k1,10683:31966991,38958264:0 +) +(1,10684:7246811,39799752:24720180,505283,134348 +g1,10683:10654027,39799752 +g1,10683:13763710,39799752 +g1,10683:14831291,39799752 +g1,10683:16367454,39799752 +k1,10684:31966991,39799752:14333381 +g1,10684:31966991,39799752 +) +] +) +] +r1,10684:32583029,40523924:26214,15021852,0 +) +] +) +) +g1,10684:32583029,39934100 +) +h1,10684:6630773,40550138:0,0,0 +(1,10686:6630773,41947601:25952256,555811,139132 +(1,10686:6630773,41947601:2450326,534184,12975 +g1,10686:6630773,41947601 +g1,10686:9081099,41947601 +) +g1,10686:12764157,41947601 +k1,10686:32583029,41947601:14629862 +g1,10686:32583029,41947601 +) +(1,10690:6630773,43182305:25952256,513147,134348 +k1,10689:10098829,43182305:294803 +k1,10689:11678137,43182305:294802 +k1,10689:12992025,43182305:294803 +k1,10689:14676191,43182305:294803 +k1,10689:15502490,43182305:294802 +k1,10689:17835463,43182305:294803 +k1,10689:18746304,43182305:294803 +k1,10689:20429814,43182305:294802 +k1,10689:22465909,43182305:294803 +k1,10689:25577449,43182305:294803 +k1,10689:29276846,43182305:294802 +k1,10689:30563209,43182305:294803 +k1,10690:32583029,43182305:0 +) +(1,10690:6630773,44023793:25952256,513147,134348 +k1,10689:8422673,44023793:194132 +k1,10689:11971593,44023793:194132 +k1,10689:14176371,44023793:194133 +k1,10689:15938124,44023793:194132 +k1,10689:17151341,44023793:194132 +k1,10689:18998946,44023793:194132 +k1,10689:22934529,44023793:194133 +k1,10689:26577165,44023793:194132 +k1,10689:30573040,44023793:194132 +k1,10689:32583029,44023793:0 +) +(1,10690:6630773,44865281:25952256,513147,134348 +k1,10689:7207100,44865281:220467 +k1,10689:9300586,44865281:220467 +k1,10689:10724949,44865281:220467 +k1,10689:11604708,44865281:220467 +k1,10689:12181035,44865281:220467 +k1,10689:13790865,44865281:220467 +k1,10689:15887627,44865281:220466 +k1,10689:16790979,44865281:220467 +k1,10689:18996532,44865281:220467 +k1,10689:21008753,44865281:220467 +k1,10689:24255017,44865281:220467 +(1,10689:24255017,44865281:0,452978,115847 +r1,10689:27075266,44865281:2820249,568825,115847 +k1,10689:24255017,44865281:-2820249 +) +(1,10689:24255017,44865281:2820249,452978,115847 +k1,10689:24255017,44865281:3277 +h1,10689:27071989,44865281:0,411205,112570 +) +k1,10689:27295733,44865281:220467 +k1,10689:28707645,44865281:220467 +(1,10689:28707645,44865281:0,452978,115847 +r1,10689:32583029,44865281:3875384,568825,115847 +k1,10689:28707645,44865281:-3875384 +) +(1,10689:28707645,44865281:3875384,452978,115847 +k1,10689:28707645,44865281:3277 +h1,10689:32579752,44865281:0,411205,112570 +) +k1,10689:32583029,44865281:0 +) +(1,10690:6630773,45706769:25952256,513147,134348 +k1,10689:7796200,45706769:297075 +k1,10689:9197556,45706769:297074 +k1,10689:11518383,45706769:297075 +k1,10689:14198346,45706769:297074 +k1,10689:17679160,45706769:297075 +k1,10689:18737763,45706769:297075 +k1,10689:22389625,45706769:297074 +k1,10689:25449043,45706769:297075 +k1,10689:28761428,45706769:297074 +k1,10689:29741388,45706769:297075 +k1,10689:32583029,45706769:0 +) +] +(1,10692:32583029,45706769:0,0,0 +g1,10692:32583029,45706769 +) +) +] +(1,10692:6630773,47279633:25952256,0,0 +h1,10692:6630773,47279633:25952256,0,0 +) +] +h1,10692:4262630,4025873:0,0,0 +] +!22672 }201 -Input:1349:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1350:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1351:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1352:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1353:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1354:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1355:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1356:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1357:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1358:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1359:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1360:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1361:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1362:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1363:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1364:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1388 +Input:1345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 {202 -[1,10748:4262630,47279633:28320399,43253760,0 -(1,10748:4262630,4025873:0,0,0 -[1,10748:-473657,4025873:25952256,0,0 -(1,10748:-473657,-710414:25952256,0,0 -h1,10748:-473657,-710414:0,0,0 -(1,10748:-473657,-710414:0,0,0 -(1,10748:-473657,-710414:0,0,0 -g1,10748:-473657,-710414 -(1,10748:-473657,-710414:65781,0,65781 -g1,10748:-407876,-710414 -[1,10748:-407876,-644633:0,0,0 +[1,10753:4262630,47279633:28320399,43253760,0 +(1,10753:4262630,4025873:0,0,0 +[1,10753:-473657,4025873:25952256,0,0 +(1,10753:-473657,-710414:25952256,0,0 +h1,10753:-473657,-710414:0,0,0 +(1,10753:-473657,-710414:0,0,0 +(1,10753:-473657,-710414:0,0,0 +g1,10753:-473657,-710414 +(1,10753:-473657,-710414:65781,0,65781 +g1,10753:-407876,-710414 +[1,10753:-407876,-644633:0,0,0 ] ) -k1,10748:-473657,-710414:-65781 +k1,10753:-473657,-710414:-65781 ) ) -k1,10748:25478599,-710414:25952256 -g1,10748:25478599,-710414 +k1,10753:25478599,-710414:25952256 +g1,10753:25478599,-710414 ) ] ) -[1,10748:6630773,47279633:25952256,43253760,0 -[1,10748:6630773,4812305:25952256,786432,0 -(1,10748:6630773,4812305:25952256,505283,126483 -(1,10748:6630773,4812305:25952256,505283,126483 -g1,10748:3078558,4812305 -[1,10748:3078558,4812305:0,0,0 -(1,10748:3078558,2439708:0,1703936,0 -k1,10748:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10748:2537886,2439708:1179648,16384,0 +[1,10753:6630773,47279633:25952256,43253760,0 +[1,10753:6630773,4812305:25952256,786432,0 +(1,10753:6630773,4812305:25952256,505283,126483 +(1,10753:6630773,4812305:25952256,505283,126483 +g1,10753:3078558,4812305 +[1,10753:3078558,4812305:0,0,0 +(1,10753:3078558,2439708:0,1703936,0 +k1,10753:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10753:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10748:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10753:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10748:3078558,4812305:0,0,0 -(1,10748:3078558,2439708:0,1703936,0 -g1,10748:29030814,2439708 -g1,10748:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10748:36151628,1915420:16384,1179648,0 +[1,10753:3078558,4812305:0,0,0 +(1,10753:3078558,2439708:0,1703936,0 +g1,10753:29030814,2439708 +g1,10753:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10753:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10748:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10753:37855564,2439708:1179648,16384,0 ) ) -k1,10748:3078556,2439708:-34777008 +k1,10753:3078556,2439708:-34777008 ) ] -[1,10748:3078558,4812305:0,0,0 -(1,10748:3078558,49800853:0,16384,2228224 -k1,10748:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10748:2537886,49800853:1179648,16384,0 +[1,10753:3078558,4812305:0,0,0 +(1,10753:3078558,49800853:0,16384,2228224 +k1,10753:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10753:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10748:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10753:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,10748:3078558,4812305:0,0,0 -(1,10748:3078558,49800853:0,16384,2228224 -g1,10748:29030814,49800853 -g1,10748:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10748:36151628,51504789:16384,1179648,0 +[1,10753:3078558,4812305:0,0,0 +(1,10753:3078558,49800853:0,16384,2228224 +g1,10753:29030814,49800853 +g1,10753:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10753:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10748:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10753:37855564,49800853:1179648,16384,0 ) ) -k1,10748:3078556,49800853:-34777008 -) -] -g1,10748:6630773,4812305 -g1,10748:6630773,4812305 -g1,10748:8364200,4812305 -g1,10748:12785258,4812305 -g1,10748:14347636,4812305 -g1,10748:16554232,4812305 -k1,10748:31387652,4812305:14833420 -) -) -] -[1,10748:6630773,45706769:25952256,40108032,0 -(1,10748:6630773,45706769:25952256,40108032,0 -(1,10748:6630773,45706769:0,0,0 -g1,10748:6630773,45706769 -) -[1,10748:6630773,45706769:25952256,40108032,0 -(1,10685:6630773,6254097:25952256,513147,134348 -k1,10684:8031868,6254097:209650 -k1,10684:11503244,6254097:209649 -k1,10684:12395779,6254097:209650 -k1,10684:15359251,6254097:209649 -k1,10684:15924761,6254097:209650 -k1,10684:20457820,6254097:209649 -k1,10684:25678353,6254097:209650 -k1,10684:26841551,6254097:209649 -k1,10684:28248544,6254097:209650 -k1,10684:29741388,6254097:209649 -k1,10684:32583029,6254097:0 -) -(1,10685:6630773,7095585:25952256,505283,134348 -k1,10684:9936662,7095585:178511 -k1,10684:12969922,7095585:178512 -k1,10684:15639456,7095585:178511 -k1,10684:17304980,7095585:178512 -k1,10684:19218884,7095585:178511 -(1,10684:19218884,7095585:0,452978,115847 -r1,10684:22039133,7095585:2820249,568825,115847 -k1,10684:19218884,7095585:-2820249 -) -(1,10684:19218884,7095585:2820249,452978,115847 -k1,10684:19218884,7095585:3277 -h1,10684:22035856,7095585:0,411205,112570 -) -k1,10684:22217645,7095585:178512 -k1,10684:23079041,7095585:178511 -k1,10684:24125905,7095585:178512 -k1,10684:27241084,7095585:178511 -k1,10684:27775456,7095585:178512 -k1,10684:29237162,7095585:178511 -k1,10684:31227089,7095585:178512 -k1,10685:32583029,7095585:0 -) -(1,10685:6630773,7937073:25952256,513147,134348 -g1,10684:9049051,7937073 -g1,10684:10623881,7937073 -g1,10684:11842195,7937073 -g1,10684:14754615,7937073 -g1,10684:15822196,7937073 -g1,10684:18918772,7937073 -g1,10684:21377027,7937073 -g1,10684:23311649,7937073 -(1,10684:23311649,7937073:0,452978,115847 -r1,10684:27187033,7937073:3875384,568825,115847 -k1,10684:23311649,7937073:-3875384 -) -(1,10684:23311649,7937073:3875384,452978,115847 -k1,10684:23311649,7937073:3277 -h1,10684:27183756,7937073:0,411205,112570 -) -k1,10685:32583029,7937073:5222326 -g1,10685:32583029,7937073 -) -v1,10687:6630773,9224189:0,393216,0 -(1,10705:6630773,19987412:25952256,11156439,616038 -g1,10705:6630773,19987412 -(1,10705:6630773,19987412:25952256,11156439,616038 -(1,10705:6630773,20603450:25952256,11772477,0 -[1,10705:6630773,20603450:25952256,11772477,0 -(1,10705:6630773,20577236:25952256,11720049,0 -r1,10705:6656987,20577236:26214,11720049,0 -[1,10705:6656987,20577236:25899828,11720049,0 -(1,10705:6656987,19987412:25899828,10540401,0 -[1,10705:7246811,19987412:24720180,10540401,0 -(1,10688:7246811,10608896:24720180,1161885,196608 -(1,10687:7246811,10608896:0,1161885,196608 -r1,10705:8794447,10608896:1547636,1358493,196608 -k1,10687:7246811,10608896:-1547636 -) -(1,10687:7246811,10608896:1547636,1161885,196608 -) -k1,10687:9003600,10608896:209153 -k1,10687:12057672,10608896:209154 -k1,10687:13834446,10608896:209153 -k1,10687:15764575,10608896:209154 -k1,10687:16388561,10608896:209143 -k1,10687:18855429,10608896:209153 -k1,10687:20458534,10608896:209154 -(1,10687:20458534,10608896:0,452978,115847 -r1,10705:23278783,10608896:2820249,568825,115847 -k1,10687:20458534,10608896:-2820249 -) -(1,10687:20458534,10608896:2820249,452978,115847 -k1,10687:20458534,10608896:3277 -h1,10687:23275506,10608896:0,411205,112570 -) -k1,10687:23661606,10608896:209153 -(1,10687:23661606,10608896:0,452978,115847 -r1,10705:26481855,10608896:2820249,568825,115847 -k1,10687:23661606,10608896:-2820249 -) -(1,10687:23661606,10608896:2820249,452978,115847 -k1,10687:23661606,10608896:3277 -h1,10687:26478578,10608896:0,411205,112570 -) -k1,10687:26691009,10608896:209154 -k1,10687:28091607,10608896:209153 -(1,10687:28091607,10608896:0,452978,115847 -r1,10705:31966991,10608896:3875384,568825,115847 -k1,10687:28091607,10608896:-3875384 -) -(1,10687:28091607,10608896:3875384,452978,115847 -k1,10687:28091607,10608896:3277 -h1,10687:31963714,10608896:0,411205,112570 -) -k1,10687:31966991,10608896:0 -) -(1,10688:7246811,11450384:24720180,505283,134348 -k1,10687:8335910,11450384:220747 -k1,10687:9660939,11450384:220747 -k1,10687:10974171,11450384:220747 -k1,10687:13205563,11450384:220747 -k1,10687:15631597,11450384:220747 -k1,10687:16538505,11450384:220746 -k1,10687:20335552,11450384:220747 -k1,10687:21172337,11450384:220747 -k1,10687:22412169,11450384:220747 -k1,10687:26149578,11450384:220747 -k1,10687:29801135,11450384:220747 -k1,10687:31040967,11450384:220747 -k1,10688:31966991,11450384:0 -) -(1,10688:7246811,12291872:24720180,505283,134348 -k1,10687:8780954,12291872:236530 -k1,10687:11222771,12291872:236530 -k1,10687:12145464,12291872:236531 -k1,10687:13835583,12291872:236530 -k1,10687:17648413,12291872:236530 -k1,10687:18512778,12291872:236530 -k1,10687:20501085,12291872:236530 -k1,10687:22608668,12291872:236530 -k1,10687:24048440,12291872:236531 -k1,10687:26296925,12291872:236530 -k1,10687:28183652,12291872:236530 -k1,10687:30775546,12291872:236530 -k1,10687:31966991,12291872:0 -) -(1,10688:7246811,13133360:24720180,505283,7863 -g1,10687:9316438,13133360 -g1,10687:10167095,13133360 -g1,10687:14031097,13133360 -k1,10688:31966991,13133360:16266037 -g1,10688:31966991,13133360 -) -v1,10690:7246811,14323826:0,393216,0 -(1,10703:7246811,19266516:24720180,5335906,196608 -g1,10703:7246811,19266516 -g1,10703:7246811,19266516 -g1,10703:7050203,19266516 -(1,10703:7050203,19266516:0,5335906,196608 -r1,10705:32163599,19266516:25113396,5532514,196608 -k1,10703:7050203,19266516:-25113396 -) -(1,10703:7050203,19266516:25113396,5335906,196608 -[1,10703:7246811,19266516:24720180,5139298,0 -(1,10692:7246811,14531444:24720180,404226,82312 -(1,10691:7246811,14531444:0,0,0 -g1,10691:7246811,14531444 -g1,10691:7246811,14531444 -g1,10691:6919131,14531444 -(1,10691:6919131,14531444:0,0,0 -) -g1,10691:7246811,14531444 -) -k1,10692:7246811,14531444:0 -g1,10692:10092123,14531444 -g1,10692:10724415,14531444 -g1,10692:12305145,14531444 -g1,10692:12937437,14531444 -g1,10692:13569729,14531444 -g1,10692:14202021,14531444 -g1,10692:14834313,14531444 -h1,10692:15466604,14531444:0,0,0 -k1,10692:31966991,14531444:16500387 -g1,10692:31966991,14531444 -) -(1,10702:7246811,15263158:24720180,404226,9436 -(1,10694:7246811,15263158:0,0,0 -g1,10694:7246811,15263158 -g1,10694:7246811,15263158 -g1,10694:6919131,15263158 -(1,10694:6919131,15263158:0,0,0 -) -g1,10694:7246811,15263158 -) -g1,10702:8195248,15263158 -g1,10702:8827540,15263158 -g1,10702:9459832,15263158 -g1,10702:11988998,15263158 -g1,10702:12621290,15263158 -g1,10702:13253582,15263158 -h1,10702:13569728,15263158:0,0,0 -k1,10702:31966992,15263158:18397264 -g1,10702:31966992,15263158 -) -(1,10702:7246811,15929336:24720180,404226,6290 -h1,10702:7246811,15929336:0,0,0 -g1,10702:8195248,15929336 -g1,10702:8511394,15929336 -g1,10702:8827540,15929336 -g1,10702:9143686,15929336 -g1,10702:9459832,15929336 -g1,10702:9775978,15929336 -g1,10702:10092124,15929336 -g1,10702:10724416,15929336 -g1,10702:11040562,15929336 -g1,10702:11356708,15929336 -g1,10702:11672854,15929336 -g1,10702:11989000,15929336 -h1,10702:12305146,15929336:0,0,0 -k1,10702:31966990,15929336:19661844 -g1,10702:31966990,15929336 -) -(1,10702:7246811,16595514:24720180,404226,6290 -h1,10702:7246811,16595514:0,0,0 -g1,10702:8195248,16595514 -g1,10702:8511394,16595514 -g1,10702:8827540,16595514 -g1,10702:10724415,16595514 -k1,10702:10724415,16595514:0 -h1,10702:12305144,16595514:0,0,0 -k1,10702:31966992,16595514:19661848 -g1,10702:31966992,16595514 -) -(1,10702:7246811,17261692:24720180,388497,0 -h1,10702:7246811,17261692:0,0,0 -g1,10702:8195248,17261692 -g1,10702:8827540,17261692 -g1,10702:9143686,17261692 -g1,10702:9459832,17261692 -g1,10702:9775978,17261692 -g1,10702:10092124,17261692 -g1,10702:10724416,17261692 -g1,10702:11040562,17261692 -g1,10702:11356708,17261692 -g1,10702:11672854,17261692 -g1,10702:11989000,17261692 -h1,10702:12305146,17261692:0,0,0 -k1,10702:31966990,17261692:19661844 -g1,10702:31966990,17261692 -) -(1,10702:7246811,17927870:24720180,388497,0 -h1,10702:7246811,17927870:0,0,0 -g1,10702:8195248,17927870 -g1,10702:8827540,17927870 -g1,10702:9143686,17927870 -g1,10702:9459832,17927870 -g1,10702:9775978,17927870 -g1,10702:10092124,17927870 -g1,10702:10724416,17927870 -g1,10702:11040562,17927870 -g1,10702:11356708,17927870 -g1,10702:11672854,17927870 -g1,10702:11989000,17927870 -h1,10702:12305146,17927870:0,0,0 -k1,10702:31966990,17927870:19661844 -g1,10702:31966990,17927870 -) -(1,10702:7246811,18594048:24720180,388497,9436 -h1,10702:7246811,18594048:0,0,0 -g1,10702:8195248,18594048 -g1,10702:8827540,18594048 -g1,10702:9143686,18594048 -g1,10702:9459832,18594048 -g1,10702:9775978,18594048 -g1,10702:10092124,18594048 -g1,10702:10724416,18594048 -g1,10702:11040562,18594048 -g1,10702:11356708,18594048 -g1,10702:11672854,18594048 -g1,10702:11989000,18594048 -h1,10702:12305146,18594048:0,0,0 -k1,10702:31966990,18594048:19661844 -g1,10702:31966990,18594048 -) -(1,10702:7246811,19260226:24720180,404226,6290 -h1,10702:7246811,19260226:0,0,0 -g1,10702:8195248,19260226 -g1,10702:8827540,19260226 -g1,10702:10092123,19260226 -g1,10702:11672852,19260226 -g1,10702:12305144,19260226 -g1,10702:13885873,19260226 -h1,10702:15150456,19260226:0,0,0 -k1,10702:31966992,19260226:16816536 -g1,10702:31966992,19260226 -) -] -) -g1,10703:31966991,19266516 -g1,10703:7246811,19266516 -g1,10703:7246811,19266516 -g1,10703:31966991,19266516 -g1,10703:31966991,19266516 -) -h1,10703:7246811,19463124:0,0,0 -] -) -] -r1,10705:32583029,20577236:26214,11720049,0 -) -] -) -) -g1,10705:32583029,19987412 -) -h1,10705:6630773,20603450:0,0,0 -(1,10708:6630773,21890566:25952256,513147,134348 -h1,10707:6630773,21890566:983040,0,0 -k1,10707:11376652,21890566:219963 -k1,10707:12990565,21890566:219962 -k1,10707:14229613,21890566:219963 -k1,10707:17110992,21890566:219962 -k1,10707:18898576,21890566:219963 -k1,10707:20137623,21890566:219962 -k1,10707:23112064,21890566:219963 -k1,10707:25784383,21890566:219962 -k1,10707:26872698,21890566:219963 -k1,10707:28694360,21890566:219962 -k1,10707:30626779,21890566:219963 -k1,10707:32583029,21890566:0 -) -(1,10708:6630773,22732054:25952256,505283,126483 -k1,10707:8096020,22732054:319022 -k1,10707:9066471,22732054:319023 -k1,10707:10799760,22732054:319022 -k1,10707:12137868,22732054:319023 -k1,10707:14467535,22732054:319022 -k1,10707:15402595,22732054:319022 -k1,10707:18232958,22732054:319023 -(1,10707:18232958,22732054:0,414482,115847 -r1,10707:19646359,22732054:1413401,530329,115847 -k1,10707:18232958,22732054:-1413401 -) -(1,10707:18232958,22732054:1413401,414482,115847 -k1,10707:18232958,22732054:3277 -h1,10707:19643082,22732054:0,411205,112570 -) -k1,10707:19965381,22732054:319022 -k1,10707:21551870,22732054:319023 -(1,10707:21551870,22732054:0,452978,115847 -r1,10707:25075542,22732054:3523672,568825,115847 -k1,10707:21551870,22732054:-3523672 -) -(1,10707:21551870,22732054:3523672,452978,115847 -k1,10707:21551870,22732054:3277 -h1,10707:25072265,22732054:0,411205,112570 -) -k1,10707:25394564,22732054:319022 -k1,10707:26905031,22732054:319022 -(1,10707:26905031,22732054:0,452978,115847 -r1,10707:29725280,22732054:2820249,568825,115847 -k1,10707:26905031,22732054:-2820249 -) -(1,10707:26905031,22732054:2820249,452978,115847 -k1,10707:26905031,22732054:3277 -h1,10707:29722003,22732054:0,411205,112570 -) -k1,10707:30217973,22732054:319023 -k1,10707:31490544,22732054:319022 -k1,10708:32583029,22732054:0 -) -(1,10708:6630773,23573542:25952256,513147,134348 -(1,10707:6630773,23573542:0,452978,115847 -r1,10707:9451022,23573542:2820249,568825,115847 -k1,10707:6630773,23573542:-2820249 -) -(1,10707:6630773,23573542:2820249,452978,115847 -k1,10707:6630773,23573542:3277 -h1,10707:9447745,23573542:0,411205,112570 -) -k1,10707:9696057,23573542:245035 -k1,10707:11508713,23573542:245035 -k1,10707:13726381,23573542:245035 -k1,10707:15162861,23573542:245035 -(1,10707:15162861,23573542:0,452978,115847 -r1,10707:19741669,23573542:4578808,568825,115847 -k1,10707:15162861,23573542:-4578808 -) -(1,10707:15162861,23573542:4578808,452978,115847 -k1,10707:15162861,23573542:3277 -h1,10707:19738392,23573542:0,411205,112570 -) -k1,10707:19986704,23573542:245035 -k1,10707:21799360,23573542:245035 -k1,10707:24684184,23573542:245035 -k1,10707:25882768,23573542:245035 -k1,10707:27220288,23573542:245035 -k1,10707:29739422,23573542:245035 -k1,10708:32583029,23573542:0 -) -(1,10708:6630773,24415030:25952256,505283,134348 -k1,10707:7967443,24415030:196999 -k1,10707:8850604,24415030:196999 -k1,10707:12450232,24415030:196999 -k1,10707:14852518,24415030:196999 -k1,10707:15700945,24415030:196999 -(1,10707:15700945,24415030:0,414482,115847 -r1,10707:18169482,24415030:2468537,530329,115847 -k1,10707:15700945,24415030:-2468537 -) -(1,10707:15700945,24415030:2468537,414482,115847 -k1,10707:15700945,24415030:3277 -h1,10707:18166205,24415030:0,411205,112570 -) -k1,10707:18540151,24415030:196999 -k1,10707:19690699,24415030:196999 -k1,10707:20702967,24415030:197000 -k1,10707:21966237,24415030:196999 -k1,10707:23823918,24415030:196999 -k1,10707:24479014,24415030:196999 -k1,10707:26247566,24415030:196999 -k1,10707:27516734,24415030:196999 -(1,10707:27516734,24415030:0,452978,115847 -r1,10707:30336983,24415030:2820249,568825,115847 -k1,10707:27516734,24415030:-2820249 -) -(1,10707:27516734,24415030:2820249,452978,115847 -k1,10707:27516734,24415030:3277 -h1,10707:30333706,24415030:0,411205,112570 -) -k1,10707:30533982,24415030:196999 -k1,10707:31835263,24415030:196999 -k1,10707:32583029,24415030:0 -) -(1,10708:6630773,25256518:25952256,513147,126483 -k1,10707:8364054,25256518:220055 -k1,10707:9978059,25256518:220054 -k1,10707:13039755,25256518:220055 -k1,10707:13919101,25256518:220054 -k1,10707:15270963,25256518:220055 -(1,10707:15270963,25256518:0,452978,115847 -r1,10707:16684364,25256518:1413401,568825,115847 -k1,10707:15270963,25256518:-1413401 -) -(1,10707:15270963,25256518:1413401,452978,115847 -k1,10707:15270963,25256518:3277 -h1,10707:16681087,25256518:0,411205,112570 -) -k1,10707:17078089,25256518:220055 -k1,10707:18489588,25256518:220054 -k1,10707:22511386,25256518:220055 -k1,10707:23835722,25256518:220054 -k1,10707:26333153,25256518:220055 -k1,10707:28563852,25256518:220054 -k1,10707:30351528,25256518:220055 -k1,10707:32583029,25256518:0 -) -(1,10708:6630773,26098006:25952256,505283,134348 -k1,10707:9700086,26098006:182452 -k1,10707:10352431,26098006:182452 -k1,10707:11066380,26098006:182452 -k1,10707:12715528,26098006:182452 -k1,10707:15527940,26098006:182452 -k1,10707:16361820,26098006:182452 -k1,10707:18955342,26098006:182452 -k1,10707:19947165,26098006:182453 -k1,10707:22140262,26098006:182452 -k1,10707:25076537,26098006:182452 -k1,10707:25614849,26098006:182452 -k1,10707:26732500,26098006:182452 -k1,10707:27771508,26098006:182452 -k1,10707:28569998,26098006:182452 -k1,10707:30454420,26098006:182452 -k1,10707:32583029,26098006:0 -) -(1,10708:6630773,26939494:25952256,505283,134348 -g1,10707:8565395,26939494 -g1,10707:10298822,26939494 -g1,10707:13533679,26939494 -g1,10707:16092204,26939494 -g1,10707:16942861,26939494 -g1,10707:18161175,26939494 -g1,10707:20704627,26939494 -k1,10708:32583029,26939494:10548021 -g1,10708:32583029,26939494 -) -v1,10710:6630773,28051299:0,393216,0 -(1,10727:6630773,35661847:25952256,8003764,196608 -g1,10727:6630773,35661847 -g1,10727:6630773,35661847 -g1,10727:6434165,35661847 -(1,10727:6434165,35661847:0,8003764,196608 -r1,10727:32779637,35661847:26345472,8200372,196608 -k1,10727:6434165,35661847:-26345472 -) -(1,10727:6434165,35661847:26345472,8003764,196608 -[1,10727:6630773,35661847:25952256,7807156,0 -(1,10712:6630773,28258917:25952256,404226,107478 -(1,10711:6630773,28258917:0,0,0 -g1,10711:6630773,28258917 -g1,10711:6630773,28258917 -g1,10711:6303093,28258917 -(1,10711:6303093,28258917:0,0,0 -) -g1,10711:6630773,28258917 -) -g1,10712:10740667,28258917 -k1,10712:10740667,28258917:0 -h1,10712:12005249,28258917:0,0,0 -k1,10712:32583029,28258917:20577780 -g1,10712:32583029,28258917 -) -(1,10713:6630773,28925095:25952256,404226,82312 -h1,10713:6630773,28925095:0,0,0 -g1,10713:6946919,28925095 -g1,10713:7263065,28925095 -k1,10713:7263065,28925095:0 -h1,10713:10108376,28925095:0,0,0 -k1,10713:32583028,28925095:22474652 -g1,10713:32583028,28925095 -) -(1,10714:6630773,29591273:25952256,404226,101187 -h1,10714:6630773,29591273:0,0,0 -g1,10714:6946919,29591273 -g1,10714:7263065,29591273 -g1,10714:7579211,29591273 -g1,10714:7895357,29591273 -g1,10714:8211503,29591273 -g1,10714:8527649,29591273 -g1,10714:8843795,29591273 -g1,10714:9159941,29591273 -g1,10714:9476087,29591273 -g1,10714:12953690,29591273 -g1,10714:13585982,29591273 -g1,10714:19276604,29591273 -k1,10714:19276604,29591273:0 -h1,10714:24018790,29591273:0,0,0 -k1,10714:32583029,29591273:8564239 -g1,10714:32583029,29591273 -) -(1,10715:6630773,30257451:25952256,410518,107478 -h1,10715:6630773,30257451:0,0,0 -g1,10715:6946919,30257451 -g1,10715:7263065,30257451 -g1,10715:7579211,30257451 -g1,10715:7895357,30257451 -g1,10715:8211503,30257451 -g1,10715:8527649,30257451 -g1,10715:8843795,30257451 -g1,10715:9159941,30257451 -g1,10715:9476087,30257451 -g1,10715:12321398,30257451 -g1,10715:12953690,30257451 -g1,10715:18644312,30257451 -g1,10715:23702643,30257451 -g1,10715:24651081,30257451 -h1,10715:28444829,30257451:0,0,0 -k1,10715:32583029,30257451:4138200 -g1,10715:32583029,30257451 -) -(1,10716:6630773,30923629:25952256,404226,107478 -h1,10716:6630773,30923629:0,0,0 -h1,10716:10424521,30923629:0,0,0 -k1,10716:32583029,30923629:22158508 -g1,10716:32583029,30923629 -) -(1,10726:6630773,31655343:25952256,404226,9436 -(1,10718:6630773,31655343:0,0,0 -g1,10718:6630773,31655343 -g1,10718:6630773,31655343 -g1,10718:6303093,31655343 -(1,10718:6303093,31655343:0,0,0 -) -g1,10718:6630773,31655343 -) -g1,10726:7579210,31655343 -g1,10726:8211502,31655343 -g1,10726:8843794,31655343 -g1,10726:11372960,31655343 -g1,10726:12637543,31655343 -g1,10726:13269835,31655343 -h1,10726:13585981,31655343:0,0,0 -k1,10726:32583029,31655343:18997048 -g1,10726:32583029,31655343 -) -(1,10726:6630773,32321521:25952256,404226,101187 -h1,10726:6630773,32321521:0,0,0 -g1,10726:7579210,32321521 -g1,10726:7895356,32321521 -g1,10726:8211502,32321521 -g1,10726:10740668,32321521 -g1,10726:12321397,32321521 -g1,10726:12637543,32321521 -g1,10726:12953689,32321521 -g1,10726:13269835,32321521 -g1,10726:13585981,32321521 -g1,10726:13902127,32321521 -g1,10726:14218273,32321521 -g1,10726:14534419,32321521 -g1,10726:14850565,32321521 -g1,10726:18012022,32321521 -g1,10726:21489625,32321521 -h1,10726:24018790,32321521:0,0,0 -k1,10726:32583029,32321521:8564239 -g1,10726:32583029,32321521 -) -(1,10726:6630773,32987699:25952256,410518,6290 -h1,10726:6630773,32987699:0,0,0 -g1,10726:7579210,32987699 -g1,10726:7895356,32987699 -g1,10726:8211502,32987699 -g1,10726:10108377,32987699 -g1,10726:10424523,32987699 -g1,10726:10740669,32987699 -g1,10726:12637544,32987699 -g1,10726:12953690,32987699 -g1,10726:13269836,32987699 -g1,10726:13585982,32987699 -g1,10726:13902128,32987699 -g1,10726:14218274,32987699 -g1,10726:14534420,32987699 -g1,10726:14850566,32987699 -g1,10726:15166712,32987699 -g1,10726:15482858,32987699 -g1,10726:15799004,32987699 -g1,10726:16115150,32987699 -g1,10726:18012025,32987699 -g1,10726:19908900,32987699 -g1,10726:20225046,32987699 -g1,10726:20541192,32987699 -g1,10726:20857338,32987699 -g1,10726:21173484,32987699 -g1,10726:21489630,32987699 -k1,10726:21489630,32987699:0 -h1,10726:23070359,32987699:0,0,0 -k1,10726:32583029,32987699:9512670 -g1,10726:32583029,32987699 -) -(1,10726:6630773,33653877:25952256,404226,107478 -h1,10726:6630773,33653877:0,0,0 -g1,10726:7579210,33653877 -g1,10726:8211502,33653877 -g1,10726:10424522,33653877 -g1,10726:10740668,33653877 -g1,10726:14850562,33653877 -g1,10726:15166708,33653877 -g1,10726:15482854,33653877 -g1,10726:15799000,33653877 -g1,10726:16115146,33653877 -g1,10726:16431292,33653877 -g1,10726:16747438,33653877 -g1,10726:18012021,33653877 -g1,10726:19908895,33653877 -g1,10726:20225041,33653877 -g1,10726:20541187,33653877 -g1,10726:20857333,33653877 -g1,10726:21173479,33653877 -g1,10726:21489625,33653877 -h1,10726:23386499,33653877:0,0,0 -k1,10726:32583029,33653877:9196530 -g1,10726:32583029,33653877 -) -(1,10726:6630773,34320055:25952256,404226,107478 -h1,10726:6630773,34320055:0,0,0 -g1,10726:7579210,34320055 -g1,10726:8211502,34320055 -g1,10726:10424522,34320055 -g1,10726:10740668,34320055 -g1,10726:14850562,34320055 -g1,10726:15166708,34320055 -g1,10726:15482854,34320055 -g1,10726:15799000,34320055 -g1,10726:16115146,34320055 -g1,10726:16431292,34320055 -g1,10726:16747438,34320055 -g1,10726:18012021,34320055 -g1,10726:19908895,34320055 -g1,10726:20225041,34320055 -g1,10726:20541187,34320055 -g1,10726:20857333,34320055 -g1,10726:21173479,34320055 -g1,10726:21489625,34320055 -h1,10726:23386499,34320055:0,0,0 -k1,10726:32583029,34320055:9196530 -g1,10726:32583029,34320055 -) -(1,10726:6630773,34986233:25952256,404226,107478 -h1,10726:6630773,34986233:0,0,0 -g1,10726:7579210,34986233 -g1,10726:8211502,34986233 -g1,10726:10424522,34986233 -g1,10726:10740668,34986233 -g1,10726:14850562,34986233 -g1,10726:15166708,34986233 -g1,10726:15482854,34986233 -g1,10726:15799000,34986233 -g1,10726:16115146,34986233 -g1,10726:16431292,34986233 -g1,10726:16747438,34986233 -g1,10726:18012021,34986233 -g1,10726:19908895,34986233 -g1,10726:20225041,34986233 -g1,10726:20541187,34986233 -g1,10726:20857333,34986233 -g1,10726:21173479,34986233 -g1,10726:21489625,34986233 -h1,10726:23386499,34986233:0,0,0 -k1,10726:32583029,34986233:9196530 -g1,10726:32583029,34986233 -) -(1,10726:6630773,35652411:25952256,404226,9436 -h1,10726:6630773,35652411:0,0,0 -g1,10726:7579210,35652411 -g1,10726:8211502,35652411 -g1,10726:9476085,35652411 -g1,10726:11056814,35652411 -g1,10726:12321397,35652411 -g1,10726:13902126,35652411 -h1,10726:15166709,35652411:0,0,0 -k1,10726:32583029,35652411:17416320 -g1,10726:32583029,35652411 -) -] -) -g1,10727:32583029,35661847 -g1,10727:6630773,35661847 -g1,10727:6630773,35661847 -g1,10727:32583029,35661847 -g1,10727:32583029,35661847 -) -h1,10727:6630773,35858455:0,0,0 -(1,10731:6630773,37145571:25952256,513147,134348 -h1,10730:6630773,37145571:983040,0,0 -k1,10730:8472788,37145571:231140 -k1,10730:9723014,37145571:231141 -k1,10730:11338274,37145571:231140 -k1,10730:12702533,37145571:231141 -k1,10730:15408312,37145571:231140 -k1,10730:16507804,37145571:231140 -k1,10730:18320984,37145571:231141 -k1,10730:19571209,37145571:231140 -k1,10730:22581076,37145571:231140 -k1,10730:24822862,37145571:231141 -k1,10730:27005664,37145571:231140 -k1,10730:28679252,37145571:231141 -k1,10730:30943974,37145571:231140 -k1,10730:32583029,37145571:0 -) -(1,10731:6630773,37987059:25952256,513147,134348 -k1,10730:7466205,37987059:219394 -k1,10730:10700911,37987059:219395 -k1,10730:11548140,37987059:219394 -k1,10730:14046222,37987059:219395 -k1,10730:15531772,37987059:219394 -k1,10730:16907876,37987059:219394 -k1,10730:19083521,37987059:219395 -k1,10730:22014795,37987059:219394 -k1,10730:23930916,37987059:219394 -k1,10730:27176108,37987059:219395 -k1,10730:28662968,37987059:219394 -k1,10730:29238223,37987059:219395 -k1,10730:30847636,37987059:219394 -k1,10730:32583029,37987059:0 -) -(1,10731:6630773,38828547:25952256,505283,134348 -g1,10730:9576616,38828547 -(1,10730:9576616,38828547:0,435480,115847 -r1,10730:10990017,38828547:1413401,551327,115847 -k1,10730:9576616,38828547:-1413401 -) -(1,10730:9576616,38828547:1413401,435480,115847 -k1,10730:9576616,38828547:3277 -h1,10730:10986740,38828547:0,411205,112570 -) -g1,10730:11189246,38828547 -g1,10730:12620552,38828547 -g1,10730:15098468,38828547 -h1,10730:16069056,38828547:0,0,0 -g1,10730:16268285,38828547 -g1,10730:17276884,38828547 -g1,10730:18974266,38828547 -h1,10730:20169643,38828547:0,0,0 -k1,10731:32583029,38828547:12032622 -g1,10731:32583029,38828547 -) -(1,10733:6630773,39670035:25952256,513147,134348 -h1,10732:6630773,39670035:983040,0,0 -k1,10732:10641694,39670035:238013 -(1,10732:10641694,39670035:0,452978,122846 -r1,10732:13813654,39670035:3171960,575824,122846 -k1,10732:10641694,39670035:-3171960 -) -(1,10732:10641694,39670035:3171960,452978,122846 -k1,10732:10641694,39670035:3277 -h1,10732:13810377,39670035:0,411205,112570 -) -k1,10732:14051667,39670035:238013 -k1,10732:14821177,39670035:238013 -k1,10732:16572416,39670035:238013 -k1,10732:17758080,39670035:238013 -k1,10732:20256431,39670035:238014 -k1,10732:21513529,39670035:238013 -k1,10732:25987134,39670035:238013 -k1,10732:28485484,39670035:238013 -k1,10732:29079357,39670035:238013 -k1,10732:30706733,39670035:238013 -k1,10732:32583029,39670035:0 -) -(1,10733:6630773,40511523:25952256,505283,134348 -k1,10732:7675028,40511523:361370 -k1,10732:9847813,40511523:361370 -k1,10732:12622219,40511523:361370 -k1,10732:14426037,40511523:361371 -k1,10732:15548935,40511523:361370 -k1,10732:17645698,40511523:361370 -(1,10732:17645698,40511523:0,452978,115847 -r1,10732:19762523,40511523:2116825,568825,115847 -k1,10732:17645698,40511523:-2116825 -) -(1,10732:17645698,40511523:2116825,452978,115847 -k1,10732:17645698,40511523:3277 -h1,10732:19759246,40511523:0,411205,112570 -) -k1,10732:20123893,40511523:361370 -k1,10732:21676708,40511523:361370 -(1,10732:21676708,40511523:0,452978,115847 -r1,10732:24145245,40511523:2468537,568825,115847 -k1,10732:21676708,40511523:-2468537 -) -(1,10732:21676708,40511523:2468537,452978,115847 -k1,10732:21676708,40511523:3277 -h1,10732:24141968,40511523:0,411205,112570 -) -k1,10732:24680285,40511523:361370 -k1,10732:26529979,40511523:361371 -k1,10732:27759701,40511523:361370 -k1,10732:29391159,40511523:361370 -k1,10732:30771614,40511523:361370 -k1,10733:32583029,40511523:0 -) -(1,10733:6630773,41353011:25952256,513147,122846 -(1,10732:6630773,41353011:0,452978,122846 -r1,10732:10857869,41353011:4227096,575824,122846 -k1,10732:6630773,41353011:-4227096 -) -(1,10732:6630773,41353011:4227096,452978,122846 -k1,10732:6630773,41353011:3277 -h1,10732:10854592,41353011:0,411205,112570 -) -g1,10732:11057098,41353011 -g1,10732:13110996,41353011 -g1,10732:14119595,41353011 -g1,10732:15337909,41353011 -g1,10732:17547783,41353011 -g1,10732:18363050,41353011 -g1,10732:20217063,41353011 -g1,10732:21075584,41353011 -g1,10732:22063211,41353011 -k1,10733:32583029,41353011:7632957 -g1,10733:32583029,41353011 -) -v1,10735:6630773,42464817:0,393216,0 -(1,10748:6630773,45510161:25952256,3438560,196608 -g1,10748:6630773,45510161 -g1,10748:6630773,45510161 -g1,10748:6434165,45510161 -(1,10748:6434165,45510161:0,3438560,196608 -r1,10748:32779637,45510161:26345472,3635168,196608 -k1,10748:6434165,45510161:-26345472 -) -(1,10748:6434165,45510161:26345472,3438560,196608 -[1,10748:6630773,45510161:25952256,3241952,0 -(1,10737:6630773,42672435:25952256,404226,107478 -(1,10736:6630773,42672435:0,0,0 -g1,10736:6630773,42672435 -g1,10736:6630773,42672435 -g1,10736:6303093,42672435 -(1,10736:6303093,42672435:0,0,0 -) -g1,10736:6630773,42672435 -) -k1,10737:6630773,42672435:0 -g1,10737:13585979,42672435 -g1,10737:16431291,42672435 -g1,10737:20225040,42672435 -h1,10737:23070351,42672435:0,0,0 -k1,10737:32583029,42672435:9512678 -g1,10737:32583029,42672435 -) -(1,10747:6630773,43404149:25952256,404226,9436 -(1,10739:6630773,43404149:0,0,0 -g1,10739:6630773,43404149 -g1,10739:6630773,43404149 -g1,10739:6303093,43404149 -(1,10739:6303093,43404149:0,0,0 -) -g1,10739:6630773,43404149 -) -g1,10747:7579210,43404149 -g1,10747:8211502,43404149 -g1,10747:8843794,43404149 -g1,10747:11372960,43404149 -g1,10747:12637543,43404149 -g1,10747:13269835,43404149 -h1,10747:13585981,43404149:0,0,0 -k1,10747:32583029,43404149:18997048 -g1,10747:32583029,43404149 -) -(1,10747:6630773,44070327:25952256,404226,101187 -h1,10747:6630773,44070327:0,0,0 -g1,10747:7579210,44070327 -g1,10747:7895356,44070327 -g1,10747:8211502,44070327 -g1,10747:10740668,44070327 -g1,10747:12321397,44070327 -g1,10747:12637543,44070327 -g1,10747:12953689,44070327 -g1,10747:13269835,44070327 -g1,10747:13585981,44070327 -g1,10747:13902127,44070327 -g1,10747:14218273,44070327 -g1,10747:14534419,44070327 -g1,10747:14850565,44070327 -g1,10747:18012022,44070327 -g1,10747:21489625,44070327 -h1,10747:24018790,44070327:0,0,0 -k1,10747:32583029,44070327:8564239 -g1,10747:32583029,44070327 -) -(1,10747:6630773,44736505:25952256,410518,6290 -h1,10747:6630773,44736505:0,0,0 -g1,10747:7579210,44736505 -g1,10747:7895356,44736505 -g1,10747:8211502,44736505 -g1,10747:10108377,44736505 -g1,10747:10424523,44736505 -g1,10747:10740669,44736505 -g1,10747:12637544,44736505 -g1,10747:12953690,44736505 -g1,10747:13269836,44736505 -g1,10747:13585982,44736505 -g1,10747:13902128,44736505 -g1,10747:14218274,44736505 -g1,10747:14534420,44736505 -g1,10747:14850566,44736505 -g1,10747:15166712,44736505 -g1,10747:15482858,44736505 -g1,10747:15799004,44736505 -g1,10747:16115150,44736505 -g1,10747:18012025,44736505 -g1,10747:19908900,44736505 -g1,10747:20225046,44736505 -g1,10747:20541192,44736505 -g1,10747:20857338,44736505 -g1,10747:21173484,44736505 -g1,10747:21489630,44736505 -k1,10747:21489630,44736505:0 -h1,10747:23070359,44736505:0,0,0 -k1,10747:32583029,44736505:9512670 -g1,10747:32583029,44736505 -) -(1,10747:6630773,45402683:25952256,404226,107478 -h1,10747:6630773,45402683:0,0,0 -g1,10747:7579210,45402683 -g1,10747:8211502,45402683 -g1,10747:10424522,45402683 -g1,10747:10740668,45402683 -g1,10747:14850562,45402683 -g1,10747:15166708,45402683 -g1,10747:15482854,45402683 -g1,10747:15799000,45402683 -g1,10747:16115146,45402683 -g1,10747:16431292,45402683 -g1,10747:16747438,45402683 -g1,10747:18012021,45402683 -g1,10747:19908895,45402683 -g1,10747:20225041,45402683 -g1,10747:20541187,45402683 -g1,10747:20857333,45402683 -g1,10747:21173479,45402683 -g1,10747:21489625,45402683 -h1,10747:23386499,45402683:0,0,0 -k1,10747:32583029,45402683:9196530 -g1,10747:32583029,45402683 -) -] -) -g1,10748:32583029,45510161 -g1,10748:6630773,45510161 -g1,10748:6630773,45510161 -g1,10748:32583029,45510161 -g1,10748:32583029,45510161 -) -] -(1,10748:32583029,45706769:0,0,0 -g1,10748:32583029,45706769 -) -) -] -(1,10748:6630773,47279633:25952256,0,0 -h1,10748:6630773,47279633:25952256,0,0 -) -] -h1,10748:4262630,4025873:0,0,0 -] -!32285 +k1,10753:3078556,49800853:-34777008 +) +] +g1,10753:6630773,4812305 +g1,10753:6630773,4812305 +g1,10753:8364200,4812305 +g1,10753:12785258,4812305 +g1,10753:14347636,4812305 +g1,10753:16554232,4812305 +k1,10753:31387652,4812305:14833420 +) +) +] +[1,10753:6630773,45706769:25952256,40108032,0 +(1,10753:6630773,45706769:25952256,40108032,0 +(1,10753:6630773,45706769:0,0,0 +g1,10753:6630773,45706769 +) +[1,10753:6630773,45706769:25952256,40108032,0 +(1,10690:6630773,6254097:25952256,513147,134348 +k1,10689:8031868,6254097:209650 +k1,10689:11503244,6254097:209649 +k1,10689:12395779,6254097:209650 +k1,10689:15359251,6254097:209649 +k1,10689:15924761,6254097:209650 +k1,10689:20457820,6254097:209649 +k1,10689:25678353,6254097:209650 +k1,10689:26841551,6254097:209649 +k1,10689:28248544,6254097:209650 +k1,10689:29741388,6254097:209649 +k1,10689:32583029,6254097:0 +) +(1,10690:6630773,7095585:25952256,505283,134348 +k1,10689:9936662,7095585:178511 +k1,10689:12969922,7095585:178512 +k1,10689:15639456,7095585:178511 +k1,10689:17304980,7095585:178512 +k1,10689:19218884,7095585:178511 +(1,10689:19218884,7095585:0,452978,115847 +r1,10689:22039133,7095585:2820249,568825,115847 +k1,10689:19218884,7095585:-2820249 +) +(1,10689:19218884,7095585:2820249,452978,115847 +k1,10689:19218884,7095585:3277 +h1,10689:22035856,7095585:0,411205,112570 +) +k1,10689:22217645,7095585:178512 +k1,10689:23079041,7095585:178511 +k1,10689:24125905,7095585:178512 +k1,10689:27241084,7095585:178511 +k1,10689:27775456,7095585:178512 +k1,10689:29237162,7095585:178511 +k1,10689:31227089,7095585:178512 +k1,10690:32583029,7095585:0 +) +(1,10690:6630773,7937073:25952256,513147,134348 +g1,10689:9049051,7937073 +g1,10689:10623881,7937073 +g1,10689:11842195,7937073 +g1,10689:14754615,7937073 +g1,10689:15822196,7937073 +g1,10689:18918772,7937073 +g1,10689:21377027,7937073 +g1,10689:23311649,7937073 +(1,10689:23311649,7937073:0,452978,115847 +r1,10689:27187033,7937073:3875384,568825,115847 +k1,10689:23311649,7937073:-3875384 +) +(1,10689:23311649,7937073:3875384,452978,115847 +k1,10689:23311649,7937073:3277 +h1,10689:27183756,7937073:0,411205,112570 +) +k1,10690:32583029,7937073:5222326 +g1,10690:32583029,7937073 +) +v1,10692:6630773,9224189:0,393216,0 +(1,10710:6630773,19987412:25952256,11156439,616038 +g1,10710:6630773,19987412 +(1,10710:6630773,19987412:25952256,11156439,616038 +(1,10710:6630773,20603450:25952256,11772477,0 +[1,10710:6630773,20603450:25952256,11772477,0 +(1,10710:6630773,20577236:25952256,11720049,0 +r1,10710:6656987,20577236:26214,11720049,0 +[1,10710:6656987,20577236:25899828,11720049,0 +(1,10710:6656987,19987412:25899828,10540401,0 +[1,10710:7246811,19987412:24720180,10540401,0 +(1,10693:7246811,10608896:24720180,1161885,196608 +(1,10692:7246811,10608896:0,1161885,196608 +r1,10710:8794447,10608896:1547636,1358493,196608 +k1,10692:7246811,10608896:-1547636 +) +(1,10692:7246811,10608896:1547636,1161885,196608 +) +k1,10692:9003600,10608896:209153 +k1,10692:12057672,10608896:209154 +k1,10692:13834446,10608896:209153 +k1,10692:15764575,10608896:209154 +k1,10692:16388561,10608896:209143 +k1,10692:18855429,10608896:209153 +k1,10692:20458534,10608896:209154 +(1,10692:20458534,10608896:0,452978,115847 +r1,10710:23278783,10608896:2820249,568825,115847 +k1,10692:20458534,10608896:-2820249 +) +(1,10692:20458534,10608896:2820249,452978,115847 +k1,10692:20458534,10608896:3277 +h1,10692:23275506,10608896:0,411205,112570 +) +k1,10692:23661606,10608896:209153 +(1,10692:23661606,10608896:0,452978,115847 +r1,10710:26481855,10608896:2820249,568825,115847 +k1,10692:23661606,10608896:-2820249 +) +(1,10692:23661606,10608896:2820249,452978,115847 +k1,10692:23661606,10608896:3277 +h1,10692:26478578,10608896:0,411205,112570 +) +k1,10692:26691009,10608896:209154 +k1,10692:28091607,10608896:209153 +(1,10692:28091607,10608896:0,452978,115847 +r1,10710:31966991,10608896:3875384,568825,115847 +k1,10692:28091607,10608896:-3875384 +) +(1,10692:28091607,10608896:3875384,452978,115847 +k1,10692:28091607,10608896:3277 +h1,10692:31963714,10608896:0,411205,112570 +) +k1,10692:31966991,10608896:0 +) +(1,10693:7246811,11450384:24720180,505283,134348 +k1,10692:8318816,11450384:203653 +k1,10692:9626751,11450384:203653 +k1,10692:10922889,11450384:203653 +k1,10692:13137187,11450384:203653 +k1,10692:15546127,11450384:203653 +k1,10692:16435942,11450384:203653 +k1,10692:20215895,11450384:203653 +k1,10692:21035586,11450384:203653 +k1,10692:22258324,11450384:203653 +k1,10692:25978639,11450384:203653 +k1,10692:29613102,11450384:203653 +k1,10692:30835840,11450384:203653 +k1,10693:31966991,11450384:0 +) +(1,10693:7246811,12291872:24720180,505283,134348 +k1,10692:8592920,12291872:253624 +k1,10692:11051831,12291872:253624 +k1,10692:11991617,12291872:253624 +k1,10692:13698831,12291872:253625 +k1,10692:17528755,12291872:253624 +k1,10692:18410214,12291872:253624 +k1,10692:20415615,12291872:253624 +k1,10692:22540292,12291872:253624 +k1,10692:23997157,12291872:253624 +k1,10692:26262737,12291872:253625 +k1,10692:28166558,12291872:253624 +k1,10692:30775546,12291872:253624 +k1,10692:31966991,12291872:0 +) +(1,10693:7246811,13133360:24720180,505283,7863 +g1,10692:9316438,13133360 +g1,10692:10167095,13133360 +g1,10692:14031097,13133360 +k1,10693:31966991,13133360:16266037 +g1,10693:31966991,13133360 +) +v1,10695:7246811,14323826:0,393216,0 +(1,10708:7246811,19266516:24720180,5335906,196608 +g1,10708:7246811,19266516 +g1,10708:7246811,19266516 +g1,10708:7050203,19266516 +(1,10708:7050203,19266516:0,5335906,196608 +r1,10710:32163599,19266516:25113396,5532514,196608 +k1,10708:7050203,19266516:-25113396 +) +(1,10708:7050203,19266516:25113396,5335906,196608 +[1,10708:7246811,19266516:24720180,5139298,0 +(1,10697:7246811,14531444:24720180,404226,82312 +(1,10696:7246811,14531444:0,0,0 +g1,10696:7246811,14531444 +g1,10696:7246811,14531444 +g1,10696:6919131,14531444 +(1,10696:6919131,14531444:0,0,0 +) +g1,10696:7246811,14531444 +) +k1,10697:7246811,14531444:0 +g1,10697:10092123,14531444 +g1,10697:10724415,14531444 +g1,10697:12305145,14531444 +g1,10697:12937437,14531444 +g1,10697:13569729,14531444 +g1,10697:14202021,14531444 +g1,10697:14834313,14531444 +h1,10697:15466604,14531444:0,0,0 +k1,10697:31966991,14531444:16500387 +g1,10697:31966991,14531444 +) +(1,10707:7246811,15263158:24720180,404226,9436 +(1,10699:7246811,15263158:0,0,0 +g1,10699:7246811,15263158 +g1,10699:7246811,15263158 +g1,10699:6919131,15263158 +(1,10699:6919131,15263158:0,0,0 +) +g1,10699:7246811,15263158 +) +g1,10707:8195248,15263158 +g1,10707:8827540,15263158 +g1,10707:9459832,15263158 +g1,10707:11988998,15263158 +g1,10707:12621290,15263158 +g1,10707:13253582,15263158 +h1,10707:13569728,15263158:0,0,0 +k1,10707:31966992,15263158:18397264 +g1,10707:31966992,15263158 +) +(1,10707:7246811,15929336:24720180,404226,6290 +h1,10707:7246811,15929336:0,0,0 +g1,10707:8195248,15929336 +g1,10707:8511394,15929336 +g1,10707:8827540,15929336 +g1,10707:9143686,15929336 +g1,10707:9459832,15929336 +g1,10707:9775978,15929336 +g1,10707:10092124,15929336 +g1,10707:10724416,15929336 +g1,10707:11040562,15929336 +g1,10707:11356708,15929336 +g1,10707:11672854,15929336 +g1,10707:11989000,15929336 +h1,10707:12305146,15929336:0,0,0 +k1,10707:31966990,15929336:19661844 +g1,10707:31966990,15929336 +) +(1,10707:7246811,16595514:24720180,404226,6290 +h1,10707:7246811,16595514:0,0,0 +g1,10707:8195248,16595514 +g1,10707:8511394,16595514 +g1,10707:8827540,16595514 +g1,10707:10724415,16595514 +k1,10707:10724415,16595514:0 +h1,10707:12305144,16595514:0,0,0 +k1,10707:31966992,16595514:19661848 +g1,10707:31966992,16595514 +) +(1,10707:7246811,17261692:24720180,388497,0 +h1,10707:7246811,17261692:0,0,0 +g1,10707:8195248,17261692 +g1,10707:8827540,17261692 +g1,10707:9143686,17261692 +g1,10707:9459832,17261692 +g1,10707:9775978,17261692 +g1,10707:10092124,17261692 +g1,10707:10724416,17261692 +g1,10707:11040562,17261692 +g1,10707:11356708,17261692 +g1,10707:11672854,17261692 +g1,10707:11989000,17261692 +h1,10707:12305146,17261692:0,0,0 +k1,10707:31966990,17261692:19661844 +g1,10707:31966990,17261692 +) +(1,10707:7246811,17927870:24720180,388497,0 +h1,10707:7246811,17927870:0,0,0 +g1,10707:8195248,17927870 +g1,10707:8827540,17927870 +g1,10707:9143686,17927870 +g1,10707:9459832,17927870 +g1,10707:9775978,17927870 +g1,10707:10092124,17927870 +g1,10707:10724416,17927870 +g1,10707:11040562,17927870 +g1,10707:11356708,17927870 +g1,10707:11672854,17927870 +g1,10707:11989000,17927870 +h1,10707:12305146,17927870:0,0,0 +k1,10707:31966990,17927870:19661844 +g1,10707:31966990,17927870 +) +(1,10707:7246811,18594048:24720180,388497,9436 +h1,10707:7246811,18594048:0,0,0 +g1,10707:8195248,18594048 +g1,10707:8827540,18594048 +g1,10707:9143686,18594048 +g1,10707:9459832,18594048 +g1,10707:9775978,18594048 +g1,10707:10092124,18594048 +g1,10707:10724416,18594048 +g1,10707:11040562,18594048 +g1,10707:11356708,18594048 +g1,10707:11672854,18594048 +g1,10707:11989000,18594048 +h1,10707:12305146,18594048:0,0,0 +k1,10707:31966990,18594048:19661844 +g1,10707:31966990,18594048 +) +(1,10707:7246811,19260226:24720180,404226,6290 +h1,10707:7246811,19260226:0,0,0 +g1,10707:8195248,19260226 +g1,10707:8827540,19260226 +g1,10707:10092123,19260226 +g1,10707:11672852,19260226 +g1,10707:12305144,19260226 +g1,10707:13885873,19260226 +h1,10707:15150456,19260226:0,0,0 +k1,10707:31966992,19260226:16816536 +g1,10707:31966992,19260226 +) +] +) +g1,10708:31966991,19266516 +g1,10708:7246811,19266516 +g1,10708:7246811,19266516 +g1,10708:31966991,19266516 +g1,10708:31966991,19266516 +) +h1,10708:7246811,19463124:0,0,0 +] +) +] +r1,10710:32583029,20577236:26214,11720049,0 +) +] +) +) +g1,10710:32583029,19987412 +) +h1,10710:6630773,20603450:0,0,0 +(1,10713:6630773,21890566:25952256,513147,134348 +h1,10712:6630773,21890566:983040,0,0 +k1,10712:11376652,21890566:219963 +k1,10712:12990565,21890566:219962 +k1,10712:14229613,21890566:219963 +k1,10712:17110992,21890566:219962 +k1,10712:18898576,21890566:219963 +k1,10712:20137623,21890566:219962 +k1,10712:23112064,21890566:219963 +k1,10712:25784383,21890566:219962 +k1,10712:26872698,21890566:219963 +k1,10712:28694360,21890566:219962 +k1,10712:30626779,21890566:219963 +k1,10712:32583029,21890566:0 +) +(1,10713:6630773,22732054:25952256,505283,126483 +k1,10712:8096020,22732054:319022 +k1,10712:9066471,22732054:319023 +k1,10712:10799760,22732054:319022 +k1,10712:12137868,22732054:319023 +k1,10712:14467535,22732054:319022 +k1,10712:15402595,22732054:319022 +k1,10712:18232958,22732054:319023 +(1,10712:18232958,22732054:0,414482,115847 +r1,10712:19646359,22732054:1413401,530329,115847 +k1,10712:18232958,22732054:-1413401 +) +(1,10712:18232958,22732054:1413401,414482,115847 +k1,10712:18232958,22732054:3277 +h1,10712:19643082,22732054:0,411205,112570 +) +k1,10712:19965381,22732054:319022 +k1,10712:21551870,22732054:319023 +(1,10712:21551870,22732054:0,452978,115847 +r1,10712:25075542,22732054:3523672,568825,115847 +k1,10712:21551870,22732054:-3523672 +) +(1,10712:21551870,22732054:3523672,452978,115847 +k1,10712:21551870,22732054:3277 +h1,10712:25072265,22732054:0,411205,112570 +) +k1,10712:25394564,22732054:319022 +k1,10712:26905031,22732054:319022 +(1,10712:26905031,22732054:0,452978,115847 +r1,10712:29725280,22732054:2820249,568825,115847 +k1,10712:26905031,22732054:-2820249 +) +(1,10712:26905031,22732054:2820249,452978,115847 +k1,10712:26905031,22732054:3277 +h1,10712:29722003,22732054:0,411205,112570 +) +k1,10712:30217973,22732054:319023 +k1,10712:31490544,22732054:319022 +k1,10713:32583029,22732054:0 +) +(1,10713:6630773,23573542:25952256,513147,134348 +(1,10712:6630773,23573542:0,452978,115847 +r1,10712:9451022,23573542:2820249,568825,115847 +k1,10712:6630773,23573542:-2820249 +) +(1,10712:6630773,23573542:2820249,452978,115847 +k1,10712:6630773,23573542:3277 +h1,10712:9447745,23573542:0,411205,112570 +) +k1,10712:9749207,23573542:298185 +k1,10712:11615012,23573542:298184 +k1,10712:13885830,23573542:298185 +k1,10712:15375460,23573542:298185 +(1,10712:15375460,23573542:0,452978,115847 +r1,10712:19954268,23573542:4578808,568825,115847 +k1,10712:15375460,23573542:-4578808 +) +(1,10712:15375460,23573542:4578808,452978,115847 +k1,10712:15375460,23573542:3277 +h1,10712:19950991,23573542:0,411205,112570 +) +k1,10712:20252453,23573542:298185 +k1,10712:22118258,23573542:298184 +k1,10712:25056232,23573542:298185 +k1,10712:26307966,23573542:298185 +k1,10712:27698635,23573542:298184 +k1,10712:30270919,23573542:298185 +k1,10713:32583029,23573542:0 +) +(1,10713:6630773,24415030:25952256,505283,134348 +k1,10712:8528459,24415030:226518 +k1,10712:9441139,24415030:226518 +k1,10712:13070287,24415030:226519 +k1,10712:15502092,24415030:226518 +k1,10712:16380038,24415030:226518 +(1,10712:16380038,24415030:0,414482,115847 +r1,10712:18848575,24415030:2468537,530329,115847 +k1,10712:16380038,24415030:-2468537 +) +(1,10712:16380038,24415030:2468537,414482,115847 +k1,10712:16380038,24415030:3277 +h1,10712:18845298,24415030:0,411205,112570 +) +k1,10712:19248763,24415030:226518 +k1,10712:20428831,24415030:226519 +k1,10712:21470617,24415030:226518 +k1,10712:22763406,24415030:226518 +k1,10712:24650606,24415030:226518 +k1,10712:25335221,24415030:226518 +k1,10712:27133293,24415030:226519 +k1,10712:28431980,24415030:226518 +(1,10712:28431980,24415030:0,452978,115847 +r1,10712:31252229,24415030:2820249,568825,115847 +k1,10712:28431980,24415030:-2820249 +) +(1,10712:28431980,24415030:2820249,452978,115847 +k1,10712:28431980,24415030:3277 +h1,10712:31248952,24415030:0,411205,112570 +) +k1,10712:31478747,24415030:226518 +k1,10712:32583029,24415030:0 +) +(1,10713:6630773,25256518:25952256,513147,126483 +k1,10712:7599815,25256518:221276 +k1,10712:9334316,25256518:221275 +k1,10712:10949543,25256518:221276 +k1,10712:14012460,25256518:221276 +k1,10712:14893027,25256518:221275 +k1,10712:16246110,25256518:221276 +(1,10712:16246110,25256518:0,452978,115847 +r1,10712:17659511,25256518:1413401,568825,115847 +k1,10712:16246110,25256518:-1413401 +) +(1,10712:16246110,25256518:1413401,452978,115847 +k1,10712:16246110,25256518:3277 +h1,10712:17656234,25256518:0,411205,112570 +) +k1,10712:18054457,25256518:221276 +k1,10712:19467178,25256518:221276 +k1,10712:23490196,25256518:221275 +k1,10712:24815754,25256518:221276 +k1,10712:27314406,25256518:221276 +k1,10712:29546326,25256518:221275 +k1,10712:31335223,25256518:221276 +k1,10713:32583029,25256518:0 +) +(1,10713:6630773,26098006:25952256,505283,134348 +k1,10712:8072040,26098006:244580 +k1,10712:11203481,26098006:244580 +k1,10712:11917955,26098006:244581 +k1,10712:12694032,26098006:244580 +k1,10712:14405308,26098006:244580 +k1,10712:17279848,26098006:244580 +k1,10712:18175856,26098006:244580 +k1,10712:20831507,26098006:244581 +k1,10712:21885457,26098006:244580 +k1,10712:24140682,26098006:244580 +k1,10712:27139085,26098006:244580 +k1,10712:27739525,26098006:244580 +k1,10712:28919305,26098006:244581 +k1,10712:30020441,26098006:244580 +k1,10712:30881059,26098006:244580 +k1,10712:32583029,26098006:0 +) +(1,10713:6630773,26939494:25952256,505283,134348 +g1,10712:8958611,26939494 +g1,10712:10893233,26939494 +g1,10712:12626660,26939494 +g1,10712:15861517,26939494 +g1,10712:18420042,26939494 +g1,10712:19270699,26939494 +g1,10712:20489013,26939494 +g1,10712:23032465,26939494 +k1,10713:32583029,26939494:8220183 +g1,10713:32583029,26939494 +) +v1,10715:6630773,28051299:0,393216,0 +(1,10732:6630773,35661847:25952256,8003764,196608 +g1,10732:6630773,35661847 +g1,10732:6630773,35661847 +g1,10732:6434165,35661847 +(1,10732:6434165,35661847:0,8003764,196608 +r1,10732:32779637,35661847:26345472,8200372,196608 +k1,10732:6434165,35661847:-26345472 +) +(1,10732:6434165,35661847:26345472,8003764,196608 +[1,10732:6630773,35661847:25952256,7807156,0 +(1,10717:6630773,28258917:25952256,404226,107478 +(1,10716:6630773,28258917:0,0,0 +g1,10716:6630773,28258917 +g1,10716:6630773,28258917 +g1,10716:6303093,28258917 +(1,10716:6303093,28258917:0,0,0 +) +g1,10716:6630773,28258917 +) +g1,10717:10740667,28258917 +k1,10717:10740667,28258917:0 +h1,10717:12005249,28258917:0,0,0 +k1,10717:32583029,28258917:20577780 +g1,10717:32583029,28258917 +) +(1,10718:6630773,28925095:25952256,404226,82312 +h1,10718:6630773,28925095:0,0,0 +g1,10718:6946919,28925095 +g1,10718:7263065,28925095 +k1,10718:7263065,28925095:0 +h1,10718:10108376,28925095:0,0,0 +k1,10718:32583028,28925095:22474652 +g1,10718:32583028,28925095 +) +(1,10719:6630773,29591273:25952256,404226,101187 +h1,10719:6630773,29591273:0,0,0 +g1,10719:6946919,29591273 +g1,10719:7263065,29591273 +g1,10719:7579211,29591273 +g1,10719:7895357,29591273 +g1,10719:8211503,29591273 +g1,10719:8527649,29591273 +g1,10719:8843795,29591273 +g1,10719:9159941,29591273 +g1,10719:9476087,29591273 +g1,10719:12953690,29591273 +g1,10719:13585982,29591273 +g1,10719:19276604,29591273 +k1,10719:19276604,29591273:0 +h1,10719:24018790,29591273:0,0,0 +k1,10719:32583029,29591273:8564239 +g1,10719:32583029,29591273 +) +(1,10720:6630773,30257451:25952256,410518,107478 +h1,10720:6630773,30257451:0,0,0 +g1,10720:6946919,30257451 +g1,10720:7263065,30257451 +g1,10720:7579211,30257451 +g1,10720:7895357,30257451 +g1,10720:8211503,30257451 +g1,10720:8527649,30257451 +g1,10720:8843795,30257451 +g1,10720:9159941,30257451 +g1,10720:9476087,30257451 +g1,10720:12321398,30257451 +g1,10720:12953690,30257451 +g1,10720:18644312,30257451 +g1,10720:23702643,30257451 +g1,10720:24651081,30257451 +h1,10720:28444829,30257451:0,0,0 +k1,10720:32583029,30257451:4138200 +g1,10720:32583029,30257451 +) +(1,10721:6630773,30923629:25952256,404226,107478 +h1,10721:6630773,30923629:0,0,0 +h1,10721:10424521,30923629:0,0,0 +k1,10721:32583029,30923629:22158508 +g1,10721:32583029,30923629 +) +(1,10731:6630773,31655343:25952256,404226,9436 +(1,10723:6630773,31655343:0,0,0 +g1,10723:6630773,31655343 +g1,10723:6630773,31655343 +g1,10723:6303093,31655343 +(1,10723:6303093,31655343:0,0,0 +) +g1,10723:6630773,31655343 +) +g1,10731:7579210,31655343 +g1,10731:8211502,31655343 +g1,10731:8843794,31655343 +g1,10731:11372960,31655343 +g1,10731:12637543,31655343 +g1,10731:13269835,31655343 +h1,10731:13585981,31655343:0,0,0 +k1,10731:32583029,31655343:18997048 +g1,10731:32583029,31655343 +) +(1,10731:6630773,32321521:25952256,404226,101187 +h1,10731:6630773,32321521:0,0,0 +g1,10731:7579210,32321521 +g1,10731:7895356,32321521 +g1,10731:8211502,32321521 +g1,10731:10740668,32321521 +g1,10731:12321397,32321521 +g1,10731:12637543,32321521 +g1,10731:12953689,32321521 +g1,10731:13269835,32321521 +g1,10731:13585981,32321521 +g1,10731:13902127,32321521 +g1,10731:14218273,32321521 +g1,10731:14534419,32321521 +g1,10731:14850565,32321521 +g1,10731:18012022,32321521 +g1,10731:21489625,32321521 +h1,10731:24018790,32321521:0,0,0 +k1,10731:32583029,32321521:8564239 +g1,10731:32583029,32321521 +) +(1,10731:6630773,32987699:25952256,410518,6290 +h1,10731:6630773,32987699:0,0,0 +g1,10731:7579210,32987699 +g1,10731:7895356,32987699 +g1,10731:8211502,32987699 +g1,10731:10108377,32987699 +g1,10731:10424523,32987699 +g1,10731:10740669,32987699 +g1,10731:12637544,32987699 +g1,10731:12953690,32987699 +g1,10731:13269836,32987699 +g1,10731:13585982,32987699 +g1,10731:13902128,32987699 +g1,10731:14218274,32987699 +g1,10731:14534420,32987699 +g1,10731:14850566,32987699 +g1,10731:15166712,32987699 +g1,10731:15482858,32987699 +g1,10731:15799004,32987699 +g1,10731:16115150,32987699 +g1,10731:18012025,32987699 +g1,10731:19908900,32987699 +g1,10731:20225046,32987699 +g1,10731:20541192,32987699 +g1,10731:20857338,32987699 +g1,10731:21173484,32987699 +g1,10731:21489630,32987699 +k1,10731:21489630,32987699:0 +h1,10731:23070359,32987699:0,0,0 +k1,10731:32583029,32987699:9512670 +g1,10731:32583029,32987699 +) +(1,10731:6630773,33653877:25952256,404226,107478 +h1,10731:6630773,33653877:0,0,0 +g1,10731:7579210,33653877 +g1,10731:8211502,33653877 +g1,10731:10424522,33653877 +g1,10731:10740668,33653877 +g1,10731:14850562,33653877 +g1,10731:15166708,33653877 +g1,10731:15482854,33653877 +g1,10731:15799000,33653877 +g1,10731:16115146,33653877 +g1,10731:16431292,33653877 +g1,10731:16747438,33653877 +g1,10731:18012021,33653877 +g1,10731:19908895,33653877 +g1,10731:20225041,33653877 +g1,10731:20541187,33653877 +g1,10731:20857333,33653877 +g1,10731:21173479,33653877 +g1,10731:21489625,33653877 +h1,10731:23386499,33653877:0,0,0 +k1,10731:32583029,33653877:9196530 +g1,10731:32583029,33653877 +) +(1,10731:6630773,34320055:25952256,404226,107478 +h1,10731:6630773,34320055:0,0,0 +g1,10731:7579210,34320055 +g1,10731:8211502,34320055 +g1,10731:10424522,34320055 +g1,10731:10740668,34320055 +g1,10731:14850562,34320055 +g1,10731:15166708,34320055 +g1,10731:15482854,34320055 +g1,10731:15799000,34320055 +g1,10731:16115146,34320055 +g1,10731:16431292,34320055 +g1,10731:16747438,34320055 +g1,10731:18012021,34320055 +g1,10731:19908895,34320055 +g1,10731:20225041,34320055 +g1,10731:20541187,34320055 +g1,10731:20857333,34320055 +g1,10731:21173479,34320055 +g1,10731:21489625,34320055 +h1,10731:23386499,34320055:0,0,0 +k1,10731:32583029,34320055:9196530 +g1,10731:32583029,34320055 +) +(1,10731:6630773,34986233:25952256,404226,107478 +h1,10731:6630773,34986233:0,0,0 +g1,10731:7579210,34986233 +g1,10731:8211502,34986233 +g1,10731:10424522,34986233 +g1,10731:10740668,34986233 +g1,10731:14850562,34986233 +g1,10731:15166708,34986233 +g1,10731:15482854,34986233 +g1,10731:15799000,34986233 +g1,10731:16115146,34986233 +g1,10731:16431292,34986233 +g1,10731:16747438,34986233 +g1,10731:18012021,34986233 +g1,10731:19908895,34986233 +g1,10731:20225041,34986233 +g1,10731:20541187,34986233 +g1,10731:20857333,34986233 +g1,10731:21173479,34986233 +g1,10731:21489625,34986233 +h1,10731:23386499,34986233:0,0,0 +k1,10731:32583029,34986233:9196530 +g1,10731:32583029,34986233 +) +(1,10731:6630773,35652411:25952256,404226,9436 +h1,10731:6630773,35652411:0,0,0 +g1,10731:7579210,35652411 +g1,10731:8211502,35652411 +g1,10731:9476085,35652411 +g1,10731:11056814,35652411 +g1,10731:12321397,35652411 +g1,10731:13902126,35652411 +h1,10731:15166709,35652411:0,0,0 +k1,10731:32583029,35652411:17416320 +g1,10731:32583029,35652411 +) +] +) +g1,10732:32583029,35661847 +g1,10732:6630773,35661847 +g1,10732:6630773,35661847 +g1,10732:32583029,35661847 +g1,10732:32583029,35661847 +) +h1,10732:6630773,35858455:0,0,0 +(1,10736:6630773,37145571:25952256,513147,134348 +h1,10735:6630773,37145571:983040,0,0 +k1,10735:8472788,37145571:231140 +k1,10735:9723014,37145571:231141 +k1,10735:11338274,37145571:231140 +k1,10735:12702533,37145571:231141 +k1,10735:15408312,37145571:231140 +k1,10735:16507804,37145571:231140 +k1,10735:18320984,37145571:231141 +k1,10735:19571209,37145571:231140 +k1,10735:22581076,37145571:231140 +k1,10735:24822862,37145571:231141 +k1,10735:27005664,37145571:231140 +k1,10735:28679252,37145571:231141 +k1,10735:30943974,37145571:231140 +k1,10735:32583029,37145571:0 +) +(1,10736:6630773,37987059:25952256,513147,134348 +k1,10735:7466205,37987059:219394 +k1,10735:10700911,37987059:219395 +k1,10735:11548140,37987059:219394 +k1,10735:14046222,37987059:219395 +k1,10735:15531772,37987059:219394 +k1,10735:16907876,37987059:219394 +k1,10735:19083521,37987059:219395 +k1,10735:22014795,37987059:219394 +k1,10735:23930916,37987059:219394 +k1,10735:27176108,37987059:219395 +k1,10735:28662968,37987059:219394 +k1,10735:29238223,37987059:219395 +k1,10735:30847636,37987059:219394 +k1,10735:32583029,37987059:0 +) +(1,10736:6630773,38828547:25952256,505283,134348 +g1,10735:9576616,38828547 +(1,10735:9576616,38828547:0,435480,115847 +r1,10735:10990017,38828547:1413401,551327,115847 +k1,10735:9576616,38828547:-1413401 +) +(1,10735:9576616,38828547:1413401,435480,115847 +k1,10735:9576616,38828547:3277 +h1,10735:10986740,38828547:0,411205,112570 +) +g1,10735:11189246,38828547 +g1,10735:12620552,38828547 +g1,10735:15098468,38828547 +h1,10735:16069056,38828547:0,0,0 +g1,10735:16268285,38828547 +g1,10735:17276884,38828547 +g1,10735:18974266,38828547 +h1,10735:20169643,38828547:0,0,0 +k1,10736:32583029,38828547:12032622 +g1,10736:32583029,38828547 +) +(1,10738:6630773,39670035:25952256,513147,134348 +h1,10737:6630773,39670035:983040,0,0 +k1,10737:10641694,39670035:238013 +(1,10737:10641694,39670035:0,452978,122846 +r1,10737:13813654,39670035:3171960,575824,122846 +k1,10737:10641694,39670035:-3171960 +) +(1,10737:10641694,39670035:3171960,452978,122846 +k1,10737:10641694,39670035:3277 +h1,10737:13810377,39670035:0,411205,112570 +) +k1,10737:14051667,39670035:238013 +k1,10737:14821177,39670035:238013 +k1,10737:16572416,39670035:238013 +k1,10737:17758080,39670035:238013 +k1,10737:20256431,39670035:238014 +k1,10737:21513529,39670035:238013 +k1,10737:25987134,39670035:238013 +k1,10737:28485484,39670035:238013 +k1,10737:29079357,39670035:238013 +k1,10737:30706733,39670035:238013 +k1,10737:32583029,39670035:0 +) +(1,10738:6630773,40511523:25952256,505283,134348 +k1,10737:7675028,40511523:361370 +k1,10737:9847813,40511523:361370 +k1,10737:12622219,40511523:361370 +k1,10737:14426037,40511523:361371 +k1,10737:15548935,40511523:361370 +k1,10737:17645698,40511523:361370 +(1,10737:17645698,40511523:0,452978,115847 +r1,10737:19762523,40511523:2116825,568825,115847 +k1,10737:17645698,40511523:-2116825 +) +(1,10737:17645698,40511523:2116825,452978,115847 +k1,10737:17645698,40511523:3277 +h1,10737:19759246,40511523:0,411205,112570 +) +k1,10737:20123893,40511523:361370 +k1,10737:21676708,40511523:361370 +(1,10737:21676708,40511523:0,452978,115847 +r1,10737:24145245,40511523:2468537,568825,115847 +k1,10737:21676708,40511523:-2468537 +) +(1,10737:21676708,40511523:2468537,452978,115847 +k1,10737:21676708,40511523:3277 +h1,10737:24141968,40511523:0,411205,112570 +) +k1,10737:24680285,40511523:361370 +k1,10737:26529979,40511523:361371 +k1,10737:27759701,40511523:361370 +k1,10737:29391159,40511523:361370 +k1,10737:30771614,40511523:361370 +k1,10738:32583029,40511523:0 +) +(1,10738:6630773,41353011:25952256,513147,122846 +(1,10737:6630773,41353011:0,452978,122846 +r1,10737:10857869,41353011:4227096,575824,122846 +k1,10737:6630773,41353011:-4227096 +) +(1,10737:6630773,41353011:4227096,452978,122846 +k1,10737:6630773,41353011:3277 +h1,10737:10854592,41353011:0,411205,112570 +) +g1,10737:11057098,41353011 +g1,10737:13110996,41353011 +g1,10737:14119595,41353011 +g1,10737:15337909,41353011 +g1,10737:17547783,41353011 +g1,10737:18363050,41353011 +g1,10737:20217063,41353011 +g1,10737:21075584,41353011 +g1,10737:22063211,41353011 +k1,10738:32583029,41353011:7632957 +g1,10738:32583029,41353011 +) +v1,10740:6630773,42464817:0,393216,0 +(1,10753:6630773,45510161:25952256,3438560,196608 +g1,10753:6630773,45510161 +g1,10753:6630773,45510161 +g1,10753:6434165,45510161 +(1,10753:6434165,45510161:0,3438560,196608 +r1,10753:32779637,45510161:26345472,3635168,196608 +k1,10753:6434165,45510161:-26345472 +) +(1,10753:6434165,45510161:26345472,3438560,196608 +[1,10753:6630773,45510161:25952256,3241952,0 +(1,10742:6630773,42672435:25952256,404226,107478 +(1,10741:6630773,42672435:0,0,0 +g1,10741:6630773,42672435 +g1,10741:6630773,42672435 +g1,10741:6303093,42672435 +(1,10741:6303093,42672435:0,0,0 +) +g1,10741:6630773,42672435 +) +k1,10742:6630773,42672435:0 +g1,10742:13585979,42672435 +g1,10742:16431291,42672435 +g1,10742:20225040,42672435 +h1,10742:23070351,42672435:0,0,0 +k1,10742:32583029,42672435:9512678 +g1,10742:32583029,42672435 +) +(1,10752:6630773,43404149:25952256,404226,9436 +(1,10744:6630773,43404149:0,0,0 +g1,10744:6630773,43404149 +g1,10744:6630773,43404149 +g1,10744:6303093,43404149 +(1,10744:6303093,43404149:0,0,0 +) +g1,10744:6630773,43404149 +) +g1,10752:7579210,43404149 +g1,10752:8211502,43404149 +g1,10752:8843794,43404149 +g1,10752:11372960,43404149 +g1,10752:12637543,43404149 +g1,10752:13269835,43404149 +h1,10752:13585981,43404149:0,0,0 +k1,10752:32583029,43404149:18997048 +g1,10752:32583029,43404149 +) +(1,10752:6630773,44070327:25952256,404226,101187 +h1,10752:6630773,44070327:0,0,0 +g1,10752:7579210,44070327 +g1,10752:7895356,44070327 +g1,10752:8211502,44070327 +g1,10752:10740668,44070327 +g1,10752:12321397,44070327 +g1,10752:12637543,44070327 +g1,10752:12953689,44070327 +g1,10752:13269835,44070327 +g1,10752:13585981,44070327 +g1,10752:13902127,44070327 +g1,10752:14218273,44070327 +g1,10752:14534419,44070327 +g1,10752:14850565,44070327 +g1,10752:18012022,44070327 +g1,10752:21489625,44070327 +h1,10752:24018790,44070327:0,0,0 +k1,10752:32583029,44070327:8564239 +g1,10752:32583029,44070327 +) +(1,10752:6630773,44736505:25952256,410518,6290 +h1,10752:6630773,44736505:0,0,0 +g1,10752:7579210,44736505 +g1,10752:7895356,44736505 +g1,10752:8211502,44736505 +g1,10752:10108377,44736505 +g1,10752:10424523,44736505 +g1,10752:10740669,44736505 +g1,10752:12637544,44736505 +g1,10752:12953690,44736505 +g1,10752:13269836,44736505 +g1,10752:13585982,44736505 +g1,10752:13902128,44736505 +g1,10752:14218274,44736505 +g1,10752:14534420,44736505 +g1,10752:14850566,44736505 +g1,10752:15166712,44736505 +g1,10752:15482858,44736505 +g1,10752:15799004,44736505 +g1,10752:16115150,44736505 +g1,10752:18012025,44736505 +g1,10752:19908900,44736505 +g1,10752:20225046,44736505 +g1,10752:20541192,44736505 +g1,10752:20857338,44736505 +g1,10752:21173484,44736505 +g1,10752:21489630,44736505 +k1,10752:21489630,44736505:0 +h1,10752:23070359,44736505:0,0,0 +k1,10752:32583029,44736505:9512670 +g1,10752:32583029,44736505 +) +(1,10752:6630773,45402683:25952256,404226,107478 +h1,10752:6630773,45402683:0,0,0 +g1,10752:7579210,45402683 +g1,10752:8211502,45402683 +g1,10752:10424522,45402683 +g1,10752:10740668,45402683 +g1,10752:14850562,45402683 +g1,10752:15166708,45402683 +g1,10752:15482854,45402683 +g1,10752:15799000,45402683 +g1,10752:16115146,45402683 +g1,10752:16431292,45402683 +g1,10752:16747438,45402683 +g1,10752:18012021,45402683 +g1,10752:19908895,45402683 +g1,10752:20225041,45402683 +g1,10752:20541187,45402683 +g1,10752:20857333,45402683 +g1,10752:21173479,45402683 +g1,10752:21489625,45402683 +h1,10752:23386499,45402683:0,0,0 +k1,10752:32583029,45402683:9196530 +g1,10752:32583029,45402683 +) +] +) +g1,10753:32583029,45510161 +g1,10753:6630773,45510161 +g1,10753:6630773,45510161 +g1,10753:32583029,45510161 +g1,10753:32583029,45510161 +) +] +(1,10753:32583029,45706769:0,0,0 +g1,10753:32583029,45706769 +) +) +] +(1,10753:6630773,47279633:25952256,0,0 +h1,10753:6630773,47279633:25952256,0,0 +) +] +h1,10753:4262630,4025873:0,0,0 +] +!32311 }202 -Input:1365:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1366:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1367:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1368:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1369:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1370:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1371:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1372:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1373:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1374:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1375:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1376:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1377:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1378:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1379:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 +Input:1361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 {203 -[1,10824:4262630,47279633:28320399,43253760,0 -(1,10824:4262630,4025873:0,0,0 -[1,10824:-473657,4025873:25952256,0,0 -(1,10824:-473657,-710414:25952256,0,0 -h1,10824:-473657,-710414:0,0,0 -(1,10824:-473657,-710414:0,0,0 -(1,10824:-473657,-710414:0,0,0 -g1,10824:-473657,-710414 -(1,10824:-473657,-710414:65781,0,65781 -g1,10824:-407876,-710414 -[1,10824:-407876,-644633:0,0,0 +[1,10829:4262630,47279633:28320399,43253760,0 +(1,10829:4262630,4025873:0,0,0 +[1,10829:-473657,4025873:25952256,0,0 +(1,10829:-473657,-710414:25952256,0,0 +h1,10829:-473657,-710414:0,0,0 +(1,10829:-473657,-710414:0,0,0 +(1,10829:-473657,-710414:0,0,0 +g1,10829:-473657,-710414 +(1,10829:-473657,-710414:65781,0,65781 +g1,10829:-407876,-710414 +[1,10829:-407876,-644633:0,0,0 ] ) -k1,10824:-473657,-710414:-65781 +k1,10829:-473657,-710414:-65781 ) ) -k1,10824:25478599,-710414:25952256 -g1,10824:25478599,-710414 +k1,10829:25478599,-710414:25952256 +g1,10829:25478599,-710414 ) ] ) -[1,10824:6630773,47279633:25952256,43253760,0 -[1,10824:6630773,4812305:25952256,786432,0 -(1,10824:6630773,4812305:25952256,513147,134348 -(1,10824:6630773,4812305:25952256,513147,134348 -g1,10824:3078558,4812305 -[1,10824:3078558,4812305:0,0,0 -(1,10824:3078558,2439708:0,1703936,0 -k1,10824:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10824:2537886,2439708:1179648,16384,0 +[1,10829:6630773,47279633:25952256,43253760,0 +[1,10829:6630773,4812305:25952256,786432,0 +(1,10829:6630773,4812305:25952256,513147,134348 +(1,10829:6630773,4812305:25952256,513147,134348 +g1,10829:3078558,4812305 +[1,10829:3078558,4812305:0,0,0 +(1,10829:3078558,2439708:0,1703936,0 +k1,10829:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10829:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10824:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10829:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10824:3078558,4812305:0,0,0 -(1,10824:3078558,2439708:0,1703936,0 -g1,10824:29030814,2439708 -g1,10824:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10824:36151628,1915420:16384,1179648,0 +[1,10829:3078558,4812305:0,0,0 +(1,10829:3078558,2439708:0,1703936,0 +g1,10829:29030814,2439708 +g1,10829:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10829:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10824:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10829:37855564,2439708:1179648,16384,0 ) ) -k1,10824:3078556,2439708:-34777008 +k1,10829:3078556,2439708:-34777008 ) ] -[1,10824:3078558,4812305:0,0,0 -(1,10824:3078558,49800853:0,16384,2228224 -k1,10824:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10824:2537886,49800853:1179648,16384,0 +[1,10829:3078558,4812305:0,0,0 +(1,10829:3078558,49800853:0,16384,2228224 +k1,10829:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10829:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10824:3078558,51504789:16384,1179648,0 -) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 -) -] -) -) -) -] -[1,10824:3078558,4812305:0,0,0 -(1,10824:3078558,49800853:0,16384,2228224 -g1,10824:29030814,49800853 -g1,10824:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10824:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10824:37855564,49800853:1179648,16384,0 -) -) -k1,10824:3078556,49800853:-34777008 -) -] -g1,10824:6630773,4812305 -k1,10824:25241686,4812305:17415536 -g1,10824:26807341,4812305 -g1,10824:30339731,4812305 -g1,10824:31154998,4812305 -) -) -] -[1,10824:6630773,45706769:25952256,40108032,0 -(1,10824:6630773,45706769:25952256,40108032,0 -(1,10824:6630773,45706769:0,0,0 -g1,10824:6630773,45706769 -) -[1,10824:6630773,45706769:25952256,40108032,0 -v1,10748:6630773,6254097:0,393216,0 -(1,10748:6630773,7803507:25952256,1942626,196608 -g1,10748:6630773,7803507 -g1,10748:6630773,7803507 -g1,10748:6434165,7803507 -(1,10748:6434165,7803507:0,1942626,196608 -r1,10748:32779637,7803507:26345472,2139234,196608 -k1,10748:6434165,7803507:-26345472 -) -(1,10748:6434165,7803507:26345472,1942626,196608 -[1,10748:6630773,7803507:25952256,1746018,0 -(1,10747:6630773,6461715:25952256,404226,107478 -h1,10747:6630773,6461715:0,0,0 -g1,10747:7579210,6461715 -g1,10747:8211502,6461715 -g1,10747:10424522,6461715 -g1,10747:10740668,6461715 -g1,10747:14850562,6461715 -g1,10747:15166708,6461715 -g1,10747:15482854,6461715 -g1,10747:15799000,6461715 -g1,10747:16115146,6461715 -g1,10747:16431292,6461715 -g1,10747:16747438,6461715 -g1,10747:18012021,6461715 -g1,10747:19908895,6461715 -g1,10747:20225041,6461715 -g1,10747:20541187,6461715 -g1,10747:20857333,6461715 -g1,10747:21173479,6461715 -g1,10747:21489625,6461715 -h1,10747:23386499,6461715:0,0,0 -k1,10747:32583029,6461715:9196530 -g1,10747:32583029,6461715 -) -(1,10747:6630773,7127893:25952256,404226,107478 -h1,10747:6630773,7127893:0,0,0 -g1,10747:7579210,7127893 -g1,10747:8211502,7127893 -g1,10747:10424522,7127893 -g1,10747:10740668,7127893 -g1,10747:14850562,7127893 -g1,10747:15166708,7127893 -g1,10747:15482854,7127893 -g1,10747:15799000,7127893 -g1,10747:16115146,7127893 -g1,10747:16431292,7127893 -g1,10747:16747438,7127893 -g1,10747:18012021,7127893 -g1,10747:19908895,7127893 -g1,10747:20225041,7127893 -g1,10747:20541187,7127893 -g1,10747:20857333,7127893 -g1,10747:21173479,7127893 -g1,10747:21489625,7127893 -h1,10747:23386499,7127893:0,0,0 -k1,10747:32583029,7127893:9196530 -g1,10747:32583029,7127893 -) -(1,10747:6630773,7794071:25952256,404226,9436 -h1,10747:6630773,7794071:0,0,0 -g1,10747:7579210,7794071 -g1,10747:8211502,7794071 -g1,10747:9476085,7794071 -g1,10747:11056814,7794071 -g1,10747:12321397,7794071 -g1,10747:13902126,7794071 -h1,10747:15166709,7794071:0,0,0 -k1,10747:32583029,7794071:17416320 -g1,10747:32583029,7794071 -) -] -) -g1,10748:32583029,7803507 -g1,10748:6630773,7803507 -g1,10748:6630773,7803507 -g1,10748:32583029,7803507 -g1,10748:32583029,7803507 -) -h1,10748:6630773,8000115:0,0,0 -(1,10752:6630773,9322257:25952256,513147,115847 -h1,10751:6630773,9322257:983040,0,0 -k1,10751:10585340,9322257:181659 -(1,10751:10585340,9322257:0,459977,115847 -r1,10751:13405589,9322257:2820249,575824,115847 -k1,10751:10585340,9322257:-2820249 -) -(1,10751:10585340,9322257:2820249,459977,115847 -k1,10751:10585340,9322257:3277 -h1,10751:13402312,9322257:0,411205,112570 -) -k1,10751:13587248,9322257:181659 -k1,10751:14873190,9322257:181660 -k1,10751:15802615,9322257:181659 -k1,10751:17497500,9322257:181659 -k1,10751:18330587,9322257:181659 -k1,10751:20716223,9322257:181660 -k1,10751:21253742,9322257:181659 -k1,10751:23515514,9322257:181659 -k1,10751:24356465,9322257:181659 -k1,10751:28929693,9322257:181660 -k1,10751:29762780,9322257:181659 -(1,10751:29762780,9322257:0,452978,115847 -r1,10751:32583029,9322257:2820249,568825,115847 -k1,10751:29762780,9322257:-2820249 -) -(1,10751:29762780,9322257:2820249,452978,115847 -k1,10751:29762780,9322257:3277 -h1,10751:32579752,9322257:0,411205,112570 -) -k1,10751:32583029,9322257:0 -) -(1,10752:6630773,10163745:25952256,513147,126483 -k1,10751:7906665,10163745:203723 -k1,10751:9504340,10163745:203724 -k1,10751:10063923,10163745:203723 -k1,10751:12351691,10163745:203723 -k1,10751:15836147,10163745:203724 -k1,10751:17433821,10163745:203723 -k1,10751:18922051,10163745:203724 -k1,10751:19785066,10163745:203723 -k1,10751:21690759,10163745:203723 -k1,10751:24920280,10163745:203724 -k1,10751:25740041,10163745:203723 -k1,10751:26962849,10163745:203723 -k1,10751:30548230,10163745:203724 -k1,10751:31379788,10163745:203723 -k1,10751:32583029,10163745:0 -) -(1,10752:6630773,11005233:25952256,513147,134348 -g1,10751:8197083,11005233 -g1,10751:9591689,11005233 -g1,10751:10857189,11005233 -g1,10751:11715710,11005233 -g1,10751:12934024,11005233 -g1,10751:15568571,11005233 -g1,10751:16963177,11005233 -g1,10751:18696604,11005233 -g1,10751:19887393,11005233 -k1,10752:32583029,11005233:9889384 -g1,10752:32583029,11005233 -) -v1,10754:6630773,12152065:0,393216,0 -(1,10767:6630773,17104193:25952256,5345344,196608 -g1,10767:6630773,17104193 -g1,10767:6630773,17104193 -g1,10767:6434165,17104193 -(1,10767:6434165,17104193:0,5345344,196608 -r1,10767:32779637,17104193:26345472,5541952,196608 -k1,10767:6434165,17104193:-26345472 -) -(1,10767:6434165,17104193:26345472,5345344,196608 -[1,10767:6630773,17104193:25952256,5148736,0 -(1,10756:6630773,12365975:25952256,410518,107478 -(1,10755:6630773,12365975:0,0,0 -g1,10755:6630773,12365975 -g1,10755:6630773,12365975 -g1,10755:6303093,12365975 -(1,10755:6303093,12365975:0,0,0 -) -g1,10755:6630773,12365975 -) -k1,10756:6630773,12365975:0 -g1,10756:13269833,12365975 -g1,10756:16747436,12365975 -g1,10756:17695873,12365975 -h1,10756:20225039,12365975:0,0,0 -k1,10756:32583029,12365975:12357990 -g1,10756:32583029,12365975 -) -(1,10766:6630773,13097689:25952256,404226,9436 -(1,10758:6630773,13097689:0,0,0 -g1,10758:6630773,13097689 -g1,10758:6630773,13097689 -g1,10758:6303093,13097689 -(1,10758:6303093,13097689:0,0,0 -) -g1,10758:6630773,13097689 -) -g1,10766:7579210,13097689 -g1,10766:8211502,13097689 -g1,10766:8843794,13097689 -g1,10766:11372960,13097689 -g1,10766:12637543,13097689 -g1,10766:13269835,13097689 -h1,10766:13585981,13097689:0,0,0 -k1,10766:32583029,13097689:18997048 -g1,10766:32583029,13097689 -) -(1,10766:6630773,13763867:25952256,404226,101187 -h1,10766:6630773,13763867:0,0,0 -g1,10766:7579210,13763867 -g1,10766:7895356,13763867 -g1,10766:8211502,13763867 -g1,10766:10740668,13763867 -g1,10766:12321397,13763867 -g1,10766:12637543,13763867 -g1,10766:12953689,13763867 -g1,10766:13269835,13763867 -g1,10766:13585981,13763867 -g1,10766:13902127,13763867 -g1,10766:14218273,13763867 -g1,10766:14534419,13763867 -g1,10766:14850565,13763867 -g1,10766:18012022,13763867 -g1,10766:21489625,13763867 -h1,10766:24018790,13763867:0,0,0 -k1,10766:32583029,13763867:8564239 -g1,10766:32583029,13763867 -) -(1,10766:6630773,14430045:25952256,410518,6290 -h1,10766:6630773,14430045:0,0,0 -g1,10766:7579210,14430045 -g1,10766:7895356,14430045 -g1,10766:8211502,14430045 -g1,10766:10108377,14430045 -g1,10766:10424523,14430045 -g1,10766:10740669,14430045 -g1,10766:12637544,14430045 -g1,10766:12953690,14430045 -g1,10766:13269836,14430045 -g1,10766:13585982,14430045 -g1,10766:13902128,14430045 -g1,10766:14218274,14430045 -g1,10766:14534420,14430045 -g1,10766:14850566,14430045 -g1,10766:15166712,14430045 -g1,10766:15482858,14430045 -g1,10766:15799004,14430045 -g1,10766:16115150,14430045 -g1,10766:18012025,14430045 -g1,10766:19908900,14430045 -g1,10766:20225046,14430045 -g1,10766:20541192,14430045 -g1,10766:20857338,14430045 -g1,10766:21173484,14430045 -g1,10766:21489630,14430045 -k1,10766:21489630,14430045:0 -h1,10766:23070359,14430045:0,0,0 -k1,10766:32583029,14430045:9512670 -g1,10766:32583029,14430045 -) -(1,10766:6630773,15096223:25952256,404226,107478 -h1,10766:6630773,15096223:0,0,0 -g1,10766:7579210,15096223 -g1,10766:8211502,15096223 -g1,10766:10424522,15096223 -g1,10766:10740668,15096223 -g1,10766:14850562,15096223 -g1,10766:15166708,15096223 -g1,10766:15482854,15096223 -g1,10766:15799000,15096223 -g1,10766:16115146,15096223 -g1,10766:16431292,15096223 -g1,10766:16747438,15096223 -g1,10766:18012021,15096223 -g1,10766:19908895,15096223 -g1,10766:20225041,15096223 -g1,10766:20541187,15096223 -g1,10766:20857333,15096223 -g1,10766:21173479,15096223 -g1,10766:21489625,15096223 -h1,10766:23386499,15096223:0,0,0 -k1,10766:32583029,15096223:9196530 -g1,10766:32583029,15096223 -) -(1,10766:6630773,15762401:25952256,404226,107478 -h1,10766:6630773,15762401:0,0,0 -g1,10766:7579210,15762401 -g1,10766:8211502,15762401 -g1,10766:10424522,15762401 -g1,10766:10740668,15762401 -g1,10766:14850562,15762401 -g1,10766:15166708,15762401 -g1,10766:15482854,15762401 -g1,10766:15799000,15762401 -g1,10766:16115146,15762401 -g1,10766:16431292,15762401 -g1,10766:16747438,15762401 -g1,10766:18012021,15762401 -g1,10766:19908895,15762401 -g1,10766:20225041,15762401 -g1,10766:20541187,15762401 -g1,10766:20857333,15762401 -g1,10766:21173479,15762401 -g1,10766:21489625,15762401 -h1,10766:23386499,15762401:0,0,0 -k1,10766:32583029,15762401:9196530 -g1,10766:32583029,15762401 -) -(1,10766:6630773,16428579:25952256,404226,107478 -h1,10766:6630773,16428579:0,0,0 -g1,10766:7579210,16428579 -g1,10766:8211502,16428579 -g1,10766:10424522,16428579 -g1,10766:10740668,16428579 -g1,10766:14850562,16428579 -g1,10766:15166708,16428579 -g1,10766:15482854,16428579 -g1,10766:15799000,16428579 -g1,10766:16115146,16428579 -g1,10766:16431292,16428579 -g1,10766:16747438,16428579 -g1,10766:18012021,16428579 -g1,10766:19908895,16428579 -g1,10766:20225041,16428579 -g1,10766:20541187,16428579 -g1,10766:20857333,16428579 -g1,10766:21173479,16428579 -g1,10766:21489625,16428579 -h1,10766:23386499,16428579:0,0,0 -k1,10766:32583029,16428579:9196530 -g1,10766:32583029,16428579 -) -(1,10766:6630773,17094757:25952256,404226,9436 -h1,10766:6630773,17094757:0,0,0 -g1,10766:7579210,17094757 -g1,10766:8211502,17094757 -g1,10766:9476085,17094757 -g1,10766:11056814,17094757 -g1,10766:12321397,17094757 -g1,10766:13902126,17094757 -h1,10766:15166709,17094757:0,0,0 -k1,10766:32583029,17094757:17416320 -g1,10766:32583029,17094757 -) -] -) -g1,10767:32583029,17104193 -g1,10767:6630773,17104193 -g1,10767:6630773,17104193 -g1,10767:32583029,17104193 -g1,10767:32583029,17104193 -) -h1,10767:6630773,17300801:0,0,0 -(1,10771:6630773,18622944:25952256,513147,115847 -h1,10770:6630773,18622944:983040,0,0 -k1,10770:10764296,18622944:360615 -(1,10770:10764296,18622944:0,452978,115847 -r1,10770:13232833,18622944:2468537,568825,115847 -k1,10770:10764296,18622944:-2468537 -) -(1,10770:10764296,18622944:2468537,452978,115847 -k1,10770:10764296,18622944:3277 -h1,10770:13229556,18622944:0,411205,112570 -) -k1,10770:13593448,18622944:360615 -k1,10770:15058344,18622944:360614 -k1,10770:16166725,18622944:360615 -k1,10770:18040566,18622944:360615 -k1,10770:19052609,18622944:360615 -k1,10770:21617199,18622944:360614 -k1,10770:22333674,18622944:360615 -k1,10770:24774402,18622944:360615 -k1,10770:25794309,18622944:360615 -k1,10770:27689122,18622944:360615 -k1,10770:29904405,18622944:360614 -k1,10770:31074390,18622944:360615 -k1,10770:32583029,18622944:0 -) -(1,10771:6630773,19464432:25952256,505283,126483 -k1,10770:11154012,19464432:152643 -k1,10770:14380950,19464432:152644 -k1,10770:15818099,19464432:152643 -k1,10770:16586781,19464432:152644 -k1,10770:18173352,19464432:152643 -k1,10770:18740792,19464432:152597 -k1,10770:20849685,19464432:152643 -k1,10770:22094814,19464432:152644 -k1,10770:25422676,19464432:152643 -k1,10770:28609637,19464432:152644 -k1,10770:31189078,19464432:152643 -k1,10770:32583029,19464432:0 -) -(1,10771:6630773,20305920:25952256,505283,126483 -g1,10770:7849087,20305920 -(1,10770:7849087,20305920:0,452978,115847 -r1,10770:9614201,20305920:1765114,568825,115847 -k1,10770:7849087,20305920:-1765114 -) -(1,10770:7849087,20305920:1765114,452978,115847 -g1,10770:8555788,20305920 -g1,10770:9259212,20305920 -h1,10770:9610924,20305920:0,411205,112570 -) -g1,10770:9813430,20305920 -g1,10770:12932943,20305920 -(1,10770:12932943,20305920:0,452978,122846 -r1,10770:19622022,20305920:6689079,575824,122846 -k1,10770:12932943,20305920:-6689079 -) -(1,10770:12932943,20305920:6689079,452978,122846 -g1,10770:19267033,20305920 -h1,10770:19618745,20305920:0,411205,112570 -) -k1,10771:32583029,20305920:12787337 -g1,10771:32583029,20305920 -) -v1,10773:6630773,21452752:0,393216,0 -(1,10786:6630773,26395442:25952256,5335906,196608 -g1,10786:6630773,26395442 -g1,10786:6630773,26395442 -g1,10786:6434165,26395442 -(1,10786:6434165,26395442:0,5335906,196608 -r1,10786:32779637,26395442:26345472,5532514,196608 -k1,10786:6434165,26395442:-26345472 -) -(1,10786:6434165,26395442:26345472,5335906,196608 -[1,10786:6630773,26395442:25952256,5139298,0 -(1,10775:6630773,21660370:25952256,404226,107478 -(1,10774:6630773,21660370:0,0,0 -g1,10774:6630773,21660370 -g1,10774:6630773,21660370 -g1,10774:6303093,21660370 -(1,10774:6303093,21660370:0,0,0 -) -g1,10774:6630773,21660370 -) -k1,10775:6630773,21660370:0 -g1,10775:12953687,21660370 -h1,10775:14218271,21660370:0,0,0 -k1,10775:32583029,21660370:18364758 -g1,10775:32583029,21660370 -) -(1,10785:6630773,22392084:25952256,404226,9436 -(1,10777:6630773,22392084:0,0,0 -g1,10777:6630773,22392084 -g1,10777:6630773,22392084 -g1,10777:6303093,22392084 -(1,10777:6303093,22392084:0,0,0 -) -g1,10777:6630773,22392084 -) -g1,10785:7579210,22392084 -g1,10785:8211502,22392084 -g1,10785:8843794,22392084 -g1,10785:11372960,22392084 -g1,10785:12005252,22392084 -g1,10785:12637544,22392084 -h1,10785:12953690,22392084:0,0,0 -k1,10785:32583030,22392084:19629340 -g1,10785:32583030,22392084 -) -(1,10785:6630773,23058262:25952256,404226,101187 -h1,10785:6630773,23058262:0,0,0 -g1,10785:7579210,23058262 -g1,10785:7895356,23058262 -g1,10785:8211502,23058262 -g1,10785:10740668,23058262 -g1,10785:12321397,23058262 -g1,10785:12637543,23058262 -g1,10785:12953689,23058262 -g1,10785:13269835,23058262 -g1,10785:13585981,23058262 -g1,10785:13902127,23058262 -g1,10785:14218273,23058262 -g1,10785:14534419,23058262 -g1,10785:14850565,23058262 -g1,10785:18012022,23058262 -g1,10785:21489625,23058262 -h1,10785:24018790,23058262:0,0,0 -k1,10785:32583029,23058262:8564239 -g1,10785:32583029,23058262 -) -(1,10785:6630773,23724440:25952256,410518,6290 -h1,10785:6630773,23724440:0,0,0 -g1,10785:7579210,23724440 -g1,10785:7895356,23724440 -g1,10785:8211502,23724440 -g1,10785:10108377,23724440 -g1,10785:10424523,23724440 -g1,10785:10740669,23724440 -g1,10785:12637544,23724440 -g1,10785:12953690,23724440 -g1,10785:13269836,23724440 -g1,10785:13585982,23724440 -g1,10785:13902128,23724440 -g1,10785:14218274,23724440 -g1,10785:14534420,23724440 -g1,10785:14850566,23724440 -g1,10785:15166712,23724440 -g1,10785:15482858,23724440 -g1,10785:15799004,23724440 -g1,10785:16115150,23724440 -g1,10785:18012025,23724440 -g1,10785:19908900,23724440 -g1,10785:20225046,23724440 -g1,10785:20541192,23724440 -g1,10785:20857338,23724440 -g1,10785:21173484,23724440 -g1,10785:21489630,23724440 -k1,10785:21489630,23724440:0 -h1,10785:23070359,23724440:0,0,0 -k1,10785:32583029,23724440:9512670 -g1,10785:32583029,23724440 -) -(1,10785:6630773,24390618:25952256,404226,107478 -h1,10785:6630773,24390618:0,0,0 -g1,10785:7579210,24390618 -g1,10785:8211502,24390618 -g1,10785:10424522,24390618 -g1,10785:10740668,24390618 -g1,10785:14850562,24390618 -g1,10785:15166708,24390618 -g1,10785:15482854,24390618 -g1,10785:15799000,24390618 -g1,10785:16115146,24390618 -g1,10785:16431292,24390618 -g1,10785:16747438,24390618 -g1,10785:18012021,24390618 -g1,10785:19908895,24390618 -g1,10785:20225041,24390618 -g1,10785:20541187,24390618 -g1,10785:20857333,24390618 -g1,10785:21173479,24390618 -g1,10785:21489625,24390618 -h1,10785:23386499,24390618:0,0,0 -k1,10785:32583029,24390618:9196530 -g1,10785:32583029,24390618 -) -(1,10785:6630773,25056796:25952256,404226,107478 -h1,10785:6630773,25056796:0,0,0 -g1,10785:7579210,25056796 -g1,10785:8211502,25056796 -g1,10785:10424522,25056796 -g1,10785:10740668,25056796 -g1,10785:14850562,25056796 -g1,10785:15166708,25056796 -g1,10785:15482854,25056796 -g1,10785:15799000,25056796 -g1,10785:16115146,25056796 -g1,10785:16431292,25056796 -g1,10785:16747438,25056796 -g1,10785:18012021,25056796 -g1,10785:19908895,25056796 -g1,10785:20225041,25056796 -g1,10785:20541187,25056796 -g1,10785:20857333,25056796 -g1,10785:21173479,25056796 -g1,10785:21489625,25056796 -h1,10785:23386499,25056796:0,0,0 -k1,10785:32583029,25056796:9196530 -g1,10785:32583029,25056796 -) -(1,10785:6630773,25722974:25952256,404226,107478 -h1,10785:6630773,25722974:0,0,0 -g1,10785:7579210,25722974 -g1,10785:8211502,25722974 -g1,10785:10424522,25722974 -g1,10785:10740668,25722974 -g1,10785:14850562,25722974 -g1,10785:15166708,25722974 -g1,10785:15482854,25722974 -g1,10785:15799000,25722974 -g1,10785:16115146,25722974 -g1,10785:16431292,25722974 -g1,10785:16747438,25722974 -g1,10785:18012021,25722974 -g1,10785:19908895,25722974 -g1,10785:20225041,25722974 -g1,10785:20541187,25722974 -g1,10785:20857333,25722974 -g1,10785:21173479,25722974 -g1,10785:21489625,25722974 -h1,10785:23386499,25722974:0,0,0 -k1,10785:32583029,25722974:9196530 -g1,10785:32583029,25722974 -) -(1,10785:6630773,26389152:25952256,404226,6290 -h1,10785:6630773,26389152:0,0,0 -g1,10785:7579210,26389152 -g1,10785:8211502,26389152 -g1,10785:9476085,26389152 -g1,10785:11056814,26389152 -g1,10785:11689106,26389152 -g1,10785:13269835,26389152 -h1,10785:14534418,26389152:0,0,0 -k1,10785:32583030,26389152:18048612 -g1,10785:32583030,26389152 -) -] -) -g1,10786:32583029,26395442 -g1,10786:6630773,26395442 -g1,10786:6630773,26395442 -g1,10786:32583029,26395442 -g1,10786:32583029,26395442 -) -h1,10786:6630773,26592050:0,0,0 -(1,10790:6630773,27914192:25952256,513147,115847 -h1,10789:6630773,27914192:983040,0,0 -k1,10789:10661600,27914192:257919 -(1,10789:10661600,27914192:0,452978,115847 -r1,10789:13481849,27914192:2820249,568825,115847 -k1,10789:10661600,27914192:-2820249 -) -(1,10789:10661600,27914192:2820249,452978,115847 -k1,10789:10661600,27914192:3277 -h1,10789:13478572,27914192:0,411205,112570 -) -k1,10789:13739768,27914192:257919 -k1,10789:15101969,27914192:257919 -k1,10789:16107654,27914192:257919 -k1,10789:17878799,27914192:257919 -k1,10789:18788146,27914192:257919 -k1,10789:21250041,27914192:257919 -k1,10789:21863820,27914192:257919 -k1,10789:24201852,27914192:257919 -k1,10789:25119063,27914192:257919 -k1,10789:29621094,27914192:257919 -k1,10789:31835263,27914192:257919 -k1,10789:32583029,27914192:0 -) -(1,10790:6630773,28755680:25952256,505283,134348 -k1,10789:8424375,28755680:216150 -k1,10789:10034476,28755680:216150 -k1,10789:13425846,28755680:216151 -k1,10789:16676313,28755680:216150 -k1,10789:19319261,28755680:216150 -k1,10789:20929362,28755680:216150 -(1,10789:20929362,28755680:0,452978,115847 -r1,10789:22694476,28755680:1765114,568825,115847 -k1,10789:20929362,28755680:-1765114 -) -(1,10789:20929362,28755680:1765114,452978,115847 -g1,10789:21636063,28755680 -g1,10789:22339487,28755680 -h1,10789:22691199,28755680:0,411205,112570 -) -k1,10789:22910627,28755680:216151 -k1,10789:23742815,28755680:216150 -k1,10789:25392893,28755680:216150 -k1,10789:26197556,28755680:216150 -k1,10789:28841161,28755680:216151 -k1,10789:30696366,28755680:216150 -k1,10789:31563944,28755680:216150 -k1,10789:32583029,28755680:0 -) -(1,10790:6630773,29597168:25952256,505283,134348 -k1,10789:9129333,29597168:257229 -k1,10789:12458890,29597168:257229 -k1,10789:13402281,29597168:257229 -k1,10789:16279639,29597168:257229 -k1,10789:18963666,29597168:257229 -k1,10789:19903780,29597168:257229 -k1,10789:22543897,29597168:257228 -k1,10789:24869442,29597168:257229 -k1,10789:25742709,29597168:257229 -k1,10789:26355798,29597168:257229 -k1,10789:28764574,29597168:257229 -k1,10789:31753999,29597168:257229 -k1,10790:32583029,29597168:0 -) -(1,10790:6630773,30438656:25952256,505283,126483 -k1,10789:8666456,30438656:224923 -k1,10789:9507418,30438656:224924 -k1,10789:11166269,30438656:224923 -k1,10789:11806010,30438656:224898 -k1,10789:13135215,30438656:224923 -k1,10789:14735740,30438656:224924 -k1,10789:15708429,30438656:224923 -k1,10789:18727153,30438656:224924 -k1,10789:20641594,30438656:224923 -(1,10789:20641594,30438656:0,452978,115847 -r1,10789:23461843,30438656:2820249,568825,115847 -k1,10789:20641594,30438656:-2820249 -) -(1,10789:20641594,30438656:2820249,452978,115847 -k1,10789:20641594,30438656:3277 -h1,10789:23458566,30438656:0,411205,112570 -) -k1,10789:23686767,30438656:224924 -k1,10789:26289992,30438656:224923 -k1,10789:27906901,30438656:224924 -k1,10789:30514713,30438656:224923 -k1,10789:32583029,30438656:0 -) -(1,10790:6630773,31280144:25952256,513147,126483 -g1,10789:10258190,31280144 -g1,10789:11851370,31280144 -g1,10789:12406459,31280144 -g1,10789:14586841,31280144 -g1,10789:15733721,31280144 -k1,10790:32583029,31280144:13668846 -g1,10790:32583029,31280144 -) -v1,10792:6630773,32426976:0,393216,0 -(1,10805:6630773,37372812:25952256,5339052,196608 -g1,10805:6630773,37372812 -g1,10805:6630773,37372812 -g1,10805:6434165,37372812 -(1,10805:6434165,37372812:0,5339052,196608 -r1,10805:32779637,37372812:26345472,5535660,196608 -k1,10805:6434165,37372812:-26345472 -) -(1,10805:6434165,37372812:26345472,5339052,196608 -[1,10805:6630773,37372812:25952256,5142444,0 -(1,10794:6630773,32634594:25952256,404226,107478 -(1,10793:6630773,32634594:0,0,0 -g1,10793:6630773,32634594 -g1,10793:6630773,32634594 -g1,10793:6303093,32634594 -(1,10793:6303093,32634594:0,0,0 -) -g1,10793:6630773,32634594 -) -k1,10794:6630773,32634594:0 -g1,10794:13269833,32634594 -k1,10794:13269833,32634594:0 -h1,10794:15166707,32634594:0,0,0 -k1,10794:32583029,32634594:17416322 -g1,10794:32583029,32634594 -) -(1,10804:6630773,33366308:25952256,404226,9436 -(1,10796:6630773,33366308:0,0,0 -g1,10796:6630773,33366308 -g1,10796:6630773,33366308 -g1,10796:6303093,33366308 -(1,10796:6303093,33366308:0,0,0 -) -g1,10796:6630773,33366308 -) -g1,10804:7579210,33366308 -g1,10804:8211502,33366308 -g1,10804:8843794,33366308 -g1,10804:11372960,33366308 -g1,10804:12637543,33366308 -g1,10804:13269835,33366308 -h1,10804:13585981,33366308:0,0,0 -k1,10804:32583029,33366308:18997048 -g1,10804:32583029,33366308 -) -(1,10804:6630773,34032486:25952256,404226,101187 -h1,10804:6630773,34032486:0,0,0 -g1,10804:7579210,34032486 -g1,10804:7895356,34032486 -g1,10804:8211502,34032486 -g1,10804:10740668,34032486 -g1,10804:13902125,34032486 -g1,10804:17379728,34032486 -h1,10804:19908893,34032486:0,0,0 -k1,10804:32583029,34032486:12674136 -g1,10804:32583029,34032486 -) -(1,10804:6630773,34698664:25952256,410518,6290 -h1,10804:6630773,34698664:0,0,0 -g1,10804:7579210,34698664 -g1,10804:7895356,34698664 -g1,10804:8211502,34698664 -g1,10804:10108377,34698664 -g1,10804:10424523,34698664 -g1,10804:10740669,34698664 -g1,10804:11056815,34698664 -g1,10804:11372961,34698664 -g1,10804:11689107,34698664 -g1,10804:12005253,34698664 -g1,10804:13902128,34698664 -g1,10804:15799003,34698664 -g1,10804:16115149,34698664 -g1,10804:16431295,34698664 -g1,10804:16747441,34698664 -g1,10804:17063587,34698664 -g1,10804:17379733,34698664 -k1,10804:17379733,34698664:0 -h1,10804:18960462,34698664:0,0,0 -k1,10804:32583029,34698664:13622567 -g1,10804:32583029,34698664 -) -(1,10804:6630773,35364842:25952256,404226,107478 -h1,10804:6630773,35364842:0,0,0 -g1,10804:7579210,35364842 -g1,10804:8211502,35364842 -g1,10804:10424522,35364842 -g1,10804:10740668,35364842 -g1,10804:11056814,35364842 -g1,10804:11372960,35364842 -g1,10804:11689106,35364842 -g1,10804:12005252,35364842 -g1,10804:12321398,35364842 -g1,10804:12637544,35364842 -g1,10804:13902127,35364842 -g1,10804:15799001,35364842 -g1,10804:16115147,35364842 -g1,10804:16431293,35364842 -g1,10804:16747439,35364842 -g1,10804:17063585,35364842 -g1,10804:17379731,35364842 -h1,10804:19276605,35364842:0,0,0 -k1,10804:32583029,35364842:13306424 -g1,10804:32583029,35364842 -) -(1,10804:6630773,36031020:25952256,404226,107478 -h1,10804:6630773,36031020:0,0,0 -g1,10804:7579210,36031020 -g1,10804:8211502,36031020 -g1,10804:10424522,36031020 -g1,10804:10740668,36031020 -g1,10804:11056814,36031020 -g1,10804:11372960,36031020 -g1,10804:11689106,36031020 -g1,10804:12005252,36031020 -g1,10804:12321398,36031020 -g1,10804:12637544,36031020 -g1,10804:13902127,36031020 -g1,10804:15799001,36031020 -g1,10804:16115147,36031020 -g1,10804:16431293,36031020 -g1,10804:16747439,36031020 -g1,10804:17063585,36031020 -g1,10804:17379731,36031020 -h1,10804:19276605,36031020:0,0,0 -k1,10804:32583029,36031020:13306424 -g1,10804:32583029,36031020 -) -(1,10804:6630773,36697198:25952256,404226,107478 -h1,10804:6630773,36697198:0,0,0 -g1,10804:7579210,36697198 -g1,10804:8211502,36697198 -g1,10804:10424522,36697198 -g1,10804:10740668,36697198 -g1,10804:11056814,36697198 -g1,10804:11372960,36697198 -g1,10804:11689106,36697198 -g1,10804:12005252,36697198 -g1,10804:12321398,36697198 -g1,10804:12637544,36697198 -g1,10804:13902127,36697198 -g1,10804:15799001,36697198 -g1,10804:16115147,36697198 -g1,10804:16431293,36697198 -g1,10804:16747439,36697198 -g1,10804:17063585,36697198 -g1,10804:17379731,36697198 -h1,10804:19276605,36697198:0,0,0 -k1,10804:32583029,36697198:13306424 -g1,10804:32583029,36697198 -) -(1,10804:6630773,37363376:25952256,404226,9436 -h1,10804:6630773,37363376:0,0,0 -g1,10804:7579210,37363376 -g1,10804:8211502,37363376 -g1,10804:9476085,37363376 -g1,10804:11056814,37363376 -g1,10804:12321397,37363376 -g1,10804:13902126,37363376 -h1,10804:15166709,37363376:0,0,0 -k1,10804:32583029,37363376:17416320 -g1,10804:32583029,37363376 -) -] -) -g1,10805:32583029,37372812 -g1,10805:6630773,37372812 -g1,10805:6630773,37372812 -g1,10805:32583029,37372812 -g1,10805:32583029,37372812 -) -h1,10805:6630773,37569420:0,0,0 -(1,10809:6630773,38891563:25952256,513147,126483 -h1,10808:6630773,38891563:983040,0,0 -k1,10808:8483452,38891563:241804 -k1,10808:11564932,38891563:241805 -(1,10808:11564932,38891563:0,452978,115847 -r1,10808:14385181,38891563:2820249,568825,115847 -k1,10808:11564932,38891563:-2820249 -) -(1,10808:11564932,38891563:2820249,452978,115847 -k1,10808:11564932,38891563:3277 -h1,10808:14381904,38891563:0,411205,112570 -) -k1,10808:14626985,38891563:241804 -k1,10808:15554951,38891563:241804 -k1,10808:17498726,38891563:241805 -k1,10808:20766327,38891563:241804 -k1,10808:21624169,38891563:241804 -k1,10808:23838606,38891563:241804 -k1,10808:26128411,38891563:241805 -k1,10808:29804302,38891563:241804 -k1,10808:32583029,38891563:0 -) -(1,10809:6630773,39733051:25952256,513147,126483 -k1,10808:7588341,39733051:196040 -k1,10808:10810179,39733051:196041 -(1,10808:10810179,39733051:0,452978,115847 -r1,10808:15388987,39733051:4578808,568825,115847 -k1,10808:10810179,39733051:-4578808 -) -(1,10808:10810179,39733051:4578808,452978,115847 -k1,10808:10810179,39733051:3277 -h1,10808:15385710,39733051:0,411205,112570 -) -k1,10808:15758697,39733051:196040 -(1,10808:15758697,39733051:0,452978,115847 -r1,10808:19634081,39733051:3875384,568825,115847 -k1,10808:15758697,39733051:-3875384 -) -(1,10808:15758697,39733051:3875384,452978,115847 -k1,10808:15758697,39733051:3277 -h1,10808:19630804,39733051:0,411205,112570 -) -k1,10808:20003791,39733051:196040 -(1,10808:20003791,39733051:0,452978,115847 -r1,10808:23527463,39733051:3523672,568825,115847 -k1,10808:20003791,39733051:-3523672 -) -(1,10808:20003791,39733051:3523672,452978,115847 -k1,10808:20003791,39733051:3277 -h1,10808:23524186,39733051:0,411205,112570 -) -k1,10808:23897174,39733051:196041 -k1,10808:25284659,39733051:196040 -(1,10808:25284659,39733051:0,452978,115847 -r1,10808:28456619,39733051:3171960,568825,115847 -k1,10808:25284659,39733051:-3171960 -) -(1,10808:25284659,39733051:3171960,452978,115847 -k1,10808:25284659,39733051:3277 -h1,10808:28453342,39733051:0,411205,112570 -) -k1,10808:28652659,39733051:196040 -k1,10808:29500128,39733051:196041 -k1,10808:31900144,39733051:196040 -k1,10808:32583029,39733051:0 -) -(1,10809:6630773,40574539:25952256,513147,126483 -k1,10808:8792169,40574539:296897 -k1,10808:11975926,40574539:296896 -k1,10808:13314845,40574539:296897 -k1,10808:14814983,40574539:296897 -k1,10808:17773297,40574539:296897 -k1,10808:18938545,40574539:296896 -k1,10808:20327927,40574539:296897 -k1,10808:21643909,40574539:296897 -k1,10808:26534224,40574539:296897 -(1,10808:26534224,40574539:0,452978,115847 -r1,10808:29002761,40574539:2468537,568825,115847 -k1,10808:26534224,40574539:-2468537 -) -(1,10808:26534224,40574539:2468537,452978,115847 -k1,10808:26534224,40574539:3277 -h1,10808:28999484,40574539:0,411205,112570 -) -k1,10808:29299657,40574539:296896 -k1,10808:31923737,40574539:296897 -k1,10809:32583029,40574539:0 -) -(1,10809:6630773,41416027:25952256,452978,122846 -(1,10808:6630773,41416027:0,452978,122846 -r1,10808:10857869,41416027:4227096,575824,122846 -k1,10808:6630773,41416027:-4227096 -) -(1,10808:6630773,41416027:4227096,452978,122846 -k1,10808:6630773,41416027:3277 -h1,10808:10854592,41416027:0,411205,112570 -) -k1,10809:32583029,41416027:21551490 -g1,10809:32583029,41416027 -) -v1,10811:6630773,42562859:0,393216,0 -(1,10824:6630773,45510161:25952256,3340518,196608 -g1,10824:6630773,45510161 -g1,10824:6630773,45510161 -g1,10824:6434165,45510161 -(1,10824:6434165,45510161:0,3340518,196608 -r1,10824:32779637,45510161:26345472,3537126,196608 -k1,10824:6434165,45510161:-26345472 -) -(1,10824:6434165,45510161:26345472,3340518,196608 -[1,10824:6630773,45510161:25952256,3143910,0 -(1,10813:6630773,42770477:25952256,404226,101187 -(1,10812:6630773,42770477:0,0,0 -g1,10812:6630773,42770477 -g1,10812:6630773,42770477 -g1,10812:6303093,42770477 -(1,10812:6303093,42770477:0,0,0 -) -g1,10812:6630773,42770477 -) -k1,10813:6630773,42770477:0 -g1,10813:11689104,42770477 -k1,10813:11689104,42770477:0 -h1,10813:18644309,42770477:0,0,0 -k1,10813:32583029,42770477:13938720 -g1,10813:32583029,42770477 -) -(1,10823:6630773,43502191:25952256,404226,9436 -(1,10815:6630773,43502191:0,0,0 -g1,10815:6630773,43502191 -g1,10815:6630773,43502191 -g1,10815:6303093,43502191 -(1,10815:6303093,43502191:0,0,0 -) -g1,10815:6630773,43502191 -) -g1,10823:7579210,43502191 -g1,10823:8211502,43502191 -g1,10823:8843794,43502191 -g1,10823:11372960,43502191 -g1,10823:12637543,43502191 -g1,10823:13269835,43502191 -h1,10823:13585981,43502191:0,0,0 -k1,10823:32583029,43502191:18997048 -g1,10823:32583029,43502191 -) -(1,10823:6630773,44168369:25952256,404226,107478 -h1,10823:6630773,44168369:0,0,0 -g1,10823:7579210,44168369 -g1,10823:7895356,44168369 -g1,10823:8211502,44168369 -g1,10823:12321396,44168369 -g1,10823:16115144,44168369 -h1,10823:18328164,44168369:0,0,0 -k1,10823:32583029,44168369:14254865 -g1,10823:32583029,44168369 -) -(1,10823:6630773,44834547:25952256,410518,6290 -h1,10823:6630773,44834547:0,0,0 -g1,10823:7579210,44834547 -g1,10823:7895356,44834547 -g1,10823:8211502,44834547 -g1,10823:8527648,44834547 -g1,10823:8843794,44834547 -g1,10823:9159940,44834547 -g1,10823:9476086,44834547 -g1,10823:9792232,44834547 -g1,10823:10108378,44834547 -g1,10823:10424524,44834547 -g1,10823:12321399,44834547 -g1,10823:12637545,44834547 -g1,10823:12953691,44834547 -g1,10823:13269837,44834547 -g1,10823:13585983,44834547 -g1,10823:13902129,44834547 -g1,10823:14218275,44834547 -g1,10823:16115150,44834547 -k1,10823:16115150,44834547:0 -h1,10823:17695879,44834547:0,0,0 -k1,10823:32583029,44834547:14887150 -g1,10823:32583029,44834547 -) -(1,10823:6630773,45500725:25952256,388497,9436 -h1,10823:6630773,45500725:0,0,0 -g1,10823:7579210,45500725 -g1,10823:8211502,45500725 -g1,10823:8527648,45500725 -g1,10823:8843794,45500725 -g1,10823:9159940,45500725 -g1,10823:9476086,45500725 -g1,10823:9792232,45500725 -g1,10823:10108378,45500725 -g1,10823:10424524,45500725 -g1,10823:10740670,45500725 -g1,10823:11056816,45500725 -g1,10823:12321399,45500725 -g1,10823:12637545,45500725 -g1,10823:12953691,45500725 -g1,10823:13269837,45500725 -g1,10823:13585983,45500725 -g1,10823:13902129,45500725 -g1,10823:14218275,45500725 -g1,10823:14534421,45500725 -g1,10823:14850567,45500725 -g1,10823:16115150,45500725 -h1,10823:18012024,45500725:0,0,0 -k1,10823:32583029,45500725:14571005 -g1,10823:32583029,45500725 -) -] -) -g1,10824:32583029,45510161 -g1,10824:6630773,45510161 -g1,10824:6630773,45510161 -g1,10824:32583029,45510161 -g1,10824:32583029,45510161 -) -] -(1,10824:32583029,45706769:0,0,0 -g1,10824:32583029,45706769 -) -) -] -(1,10824:6630773,47279633:25952256,0,0 -h1,10824:6630773,47279633:25952256,0,0 -) -] -h1,10824:4262630,4025873:0,0,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10829:3078558,51504789:16384,1179648,0 +) +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,10829:3078558,4812305:0,0,0 +(1,10829:3078558,49800853:0,16384,2228224 +g1,10829:29030814,49800853 +g1,10829:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10829:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10829:37855564,49800853:1179648,16384,0 +) +) +k1,10829:3078556,49800853:-34777008 +) +] +g1,10829:6630773,4812305 +k1,10829:25241686,4812305:17415536 +g1,10829:26807341,4812305 +g1,10829:30339731,4812305 +g1,10829:31154998,4812305 +) +) +] +[1,10829:6630773,45706769:25952256,40108032,0 +(1,10829:6630773,45706769:25952256,40108032,0 +(1,10829:6630773,45706769:0,0,0 +g1,10829:6630773,45706769 +) +[1,10829:6630773,45706769:25952256,40108032,0 +v1,10753:6630773,6254097:0,393216,0 +(1,10753:6630773,7803507:25952256,1942626,196608 +g1,10753:6630773,7803507 +g1,10753:6630773,7803507 +g1,10753:6434165,7803507 +(1,10753:6434165,7803507:0,1942626,196608 +r1,10753:32779637,7803507:26345472,2139234,196608 +k1,10753:6434165,7803507:-26345472 +) +(1,10753:6434165,7803507:26345472,1942626,196608 +[1,10753:6630773,7803507:25952256,1746018,0 +(1,10752:6630773,6461715:25952256,404226,107478 +h1,10752:6630773,6461715:0,0,0 +g1,10752:7579210,6461715 +g1,10752:8211502,6461715 +g1,10752:10424522,6461715 +g1,10752:10740668,6461715 +g1,10752:14850562,6461715 +g1,10752:15166708,6461715 +g1,10752:15482854,6461715 +g1,10752:15799000,6461715 +g1,10752:16115146,6461715 +g1,10752:16431292,6461715 +g1,10752:16747438,6461715 +g1,10752:18012021,6461715 +g1,10752:19908895,6461715 +g1,10752:20225041,6461715 +g1,10752:20541187,6461715 +g1,10752:20857333,6461715 +g1,10752:21173479,6461715 +g1,10752:21489625,6461715 +h1,10752:23386499,6461715:0,0,0 +k1,10752:32583029,6461715:9196530 +g1,10752:32583029,6461715 +) +(1,10752:6630773,7127893:25952256,404226,107478 +h1,10752:6630773,7127893:0,0,0 +g1,10752:7579210,7127893 +g1,10752:8211502,7127893 +g1,10752:10424522,7127893 +g1,10752:10740668,7127893 +g1,10752:14850562,7127893 +g1,10752:15166708,7127893 +g1,10752:15482854,7127893 +g1,10752:15799000,7127893 +g1,10752:16115146,7127893 +g1,10752:16431292,7127893 +g1,10752:16747438,7127893 +g1,10752:18012021,7127893 +g1,10752:19908895,7127893 +g1,10752:20225041,7127893 +g1,10752:20541187,7127893 +g1,10752:20857333,7127893 +g1,10752:21173479,7127893 +g1,10752:21489625,7127893 +h1,10752:23386499,7127893:0,0,0 +k1,10752:32583029,7127893:9196530 +g1,10752:32583029,7127893 +) +(1,10752:6630773,7794071:25952256,404226,9436 +h1,10752:6630773,7794071:0,0,0 +g1,10752:7579210,7794071 +g1,10752:8211502,7794071 +g1,10752:9476085,7794071 +g1,10752:11056814,7794071 +g1,10752:12321397,7794071 +g1,10752:13902126,7794071 +h1,10752:15166709,7794071:0,0,0 +k1,10752:32583029,7794071:17416320 +g1,10752:32583029,7794071 +) +] +) +g1,10753:32583029,7803507 +g1,10753:6630773,7803507 +g1,10753:6630773,7803507 +g1,10753:32583029,7803507 +g1,10753:32583029,7803507 +) +h1,10753:6630773,8000115:0,0,0 +(1,10757:6630773,9322257:25952256,513147,115847 +h1,10756:6630773,9322257:983040,0,0 +k1,10756:10585340,9322257:181659 +(1,10756:10585340,9322257:0,459977,115847 +r1,10756:13405589,9322257:2820249,575824,115847 +k1,10756:10585340,9322257:-2820249 +) +(1,10756:10585340,9322257:2820249,459977,115847 +k1,10756:10585340,9322257:3277 +h1,10756:13402312,9322257:0,411205,112570 +) +k1,10756:13587248,9322257:181659 +k1,10756:14873190,9322257:181660 +k1,10756:15802615,9322257:181659 +k1,10756:17497500,9322257:181659 +k1,10756:18330587,9322257:181659 +k1,10756:20716223,9322257:181660 +k1,10756:21253742,9322257:181659 +k1,10756:23515514,9322257:181659 +k1,10756:24356465,9322257:181659 +k1,10756:28929693,9322257:181660 +k1,10756:29762780,9322257:181659 +(1,10756:29762780,9322257:0,452978,115847 +r1,10756:32583029,9322257:2820249,568825,115847 +k1,10756:29762780,9322257:-2820249 +) +(1,10756:29762780,9322257:2820249,452978,115847 +k1,10756:29762780,9322257:3277 +h1,10756:32579752,9322257:0,411205,112570 +) +k1,10756:32583029,9322257:0 +) +(1,10757:6630773,10163745:25952256,513147,126483 +k1,10756:7906665,10163745:203723 +k1,10756:9504340,10163745:203724 +k1,10756:10063923,10163745:203723 +k1,10756:12351691,10163745:203723 +k1,10756:15836147,10163745:203724 +k1,10756:17433821,10163745:203723 +k1,10756:18922051,10163745:203724 +k1,10756:19785066,10163745:203723 +k1,10756:21690759,10163745:203723 +k1,10756:24920280,10163745:203724 +k1,10756:25740041,10163745:203723 +k1,10756:26962849,10163745:203723 +k1,10756:30548230,10163745:203724 +k1,10756:31379788,10163745:203723 +k1,10756:32583029,10163745:0 +) +(1,10757:6630773,11005233:25952256,513147,134348 +g1,10756:8370753,11005233 +g1,10756:9765359,11005233 +g1,10756:11030859,11005233 +g1,10756:11889380,11005233 +g1,10756:13107694,11005233 +g1,10756:15742241,11005233 +g1,10756:17136847,11005233 +g1,10756:18870274,11005233 +g1,10756:20061063,11005233 +k1,10757:32583029,11005233:9715714 +g1,10757:32583029,11005233 +) +v1,10759:6630773,12152065:0,393216,0 +(1,10772:6630773,17104193:25952256,5345344,196608 +g1,10772:6630773,17104193 +g1,10772:6630773,17104193 +g1,10772:6434165,17104193 +(1,10772:6434165,17104193:0,5345344,196608 +r1,10772:32779637,17104193:26345472,5541952,196608 +k1,10772:6434165,17104193:-26345472 +) +(1,10772:6434165,17104193:26345472,5345344,196608 +[1,10772:6630773,17104193:25952256,5148736,0 +(1,10761:6630773,12365975:25952256,410518,107478 +(1,10760:6630773,12365975:0,0,0 +g1,10760:6630773,12365975 +g1,10760:6630773,12365975 +g1,10760:6303093,12365975 +(1,10760:6303093,12365975:0,0,0 +) +g1,10760:6630773,12365975 +) +k1,10761:6630773,12365975:0 +g1,10761:13269833,12365975 +g1,10761:16747436,12365975 +g1,10761:17695873,12365975 +h1,10761:20225039,12365975:0,0,0 +k1,10761:32583029,12365975:12357990 +g1,10761:32583029,12365975 +) +(1,10771:6630773,13097689:25952256,404226,9436 +(1,10763:6630773,13097689:0,0,0 +g1,10763:6630773,13097689 +g1,10763:6630773,13097689 +g1,10763:6303093,13097689 +(1,10763:6303093,13097689:0,0,0 +) +g1,10763:6630773,13097689 +) +g1,10771:7579210,13097689 +g1,10771:8211502,13097689 +g1,10771:8843794,13097689 +g1,10771:11372960,13097689 +g1,10771:12637543,13097689 +g1,10771:13269835,13097689 +h1,10771:13585981,13097689:0,0,0 +k1,10771:32583029,13097689:18997048 +g1,10771:32583029,13097689 +) +(1,10771:6630773,13763867:25952256,404226,101187 +h1,10771:6630773,13763867:0,0,0 +g1,10771:7579210,13763867 +g1,10771:7895356,13763867 +g1,10771:8211502,13763867 +g1,10771:10740668,13763867 +g1,10771:12321397,13763867 +g1,10771:12637543,13763867 +g1,10771:12953689,13763867 +g1,10771:13269835,13763867 +g1,10771:13585981,13763867 +g1,10771:13902127,13763867 +g1,10771:14218273,13763867 +g1,10771:14534419,13763867 +g1,10771:14850565,13763867 +g1,10771:18012022,13763867 +g1,10771:21489625,13763867 +h1,10771:24018790,13763867:0,0,0 +k1,10771:32583029,13763867:8564239 +g1,10771:32583029,13763867 +) +(1,10771:6630773,14430045:25952256,410518,6290 +h1,10771:6630773,14430045:0,0,0 +g1,10771:7579210,14430045 +g1,10771:7895356,14430045 +g1,10771:8211502,14430045 +g1,10771:10108377,14430045 +g1,10771:10424523,14430045 +g1,10771:10740669,14430045 +g1,10771:12637544,14430045 +g1,10771:12953690,14430045 +g1,10771:13269836,14430045 +g1,10771:13585982,14430045 +g1,10771:13902128,14430045 +g1,10771:14218274,14430045 +g1,10771:14534420,14430045 +g1,10771:14850566,14430045 +g1,10771:15166712,14430045 +g1,10771:15482858,14430045 +g1,10771:15799004,14430045 +g1,10771:16115150,14430045 +g1,10771:18012025,14430045 +g1,10771:19908900,14430045 +g1,10771:20225046,14430045 +g1,10771:20541192,14430045 +g1,10771:20857338,14430045 +g1,10771:21173484,14430045 +g1,10771:21489630,14430045 +k1,10771:21489630,14430045:0 +h1,10771:23070359,14430045:0,0,0 +k1,10771:32583029,14430045:9512670 +g1,10771:32583029,14430045 +) +(1,10771:6630773,15096223:25952256,404226,107478 +h1,10771:6630773,15096223:0,0,0 +g1,10771:7579210,15096223 +g1,10771:8211502,15096223 +g1,10771:10424522,15096223 +g1,10771:10740668,15096223 +g1,10771:14850562,15096223 +g1,10771:15166708,15096223 +g1,10771:15482854,15096223 +g1,10771:15799000,15096223 +g1,10771:16115146,15096223 +g1,10771:16431292,15096223 +g1,10771:16747438,15096223 +g1,10771:18012021,15096223 +g1,10771:19908895,15096223 +g1,10771:20225041,15096223 +g1,10771:20541187,15096223 +g1,10771:20857333,15096223 +g1,10771:21173479,15096223 +g1,10771:21489625,15096223 +h1,10771:23386499,15096223:0,0,0 +k1,10771:32583029,15096223:9196530 +g1,10771:32583029,15096223 +) +(1,10771:6630773,15762401:25952256,404226,107478 +h1,10771:6630773,15762401:0,0,0 +g1,10771:7579210,15762401 +g1,10771:8211502,15762401 +g1,10771:10424522,15762401 +g1,10771:10740668,15762401 +g1,10771:14850562,15762401 +g1,10771:15166708,15762401 +g1,10771:15482854,15762401 +g1,10771:15799000,15762401 +g1,10771:16115146,15762401 +g1,10771:16431292,15762401 +g1,10771:16747438,15762401 +g1,10771:18012021,15762401 +g1,10771:19908895,15762401 +g1,10771:20225041,15762401 +g1,10771:20541187,15762401 +g1,10771:20857333,15762401 +g1,10771:21173479,15762401 +g1,10771:21489625,15762401 +h1,10771:23386499,15762401:0,0,0 +k1,10771:32583029,15762401:9196530 +g1,10771:32583029,15762401 +) +(1,10771:6630773,16428579:25952256,404226,107478 +h1,10771:6630773,16428579:0,0,0 +g1,10771:7579210,16428579 +g1,10771:8211502,16428579 +g1,10771:10424522,16428579 +g1,10771:10740668,16428579 +g1,10771:14850562,16428579 +g1,10771:15166708,16428579 +g1,10771:15482854,16428579 +g1,10771:15799000,16428579 +g1,10771:16115146,16428579 +g1,10771:16431292,16428579 +g1,10771:16747438,16428579 +g1,10771:18012021,16428579 +g1,10771:19908895,16428579 +g1,10771:20225041,16428579 +g1,10771:20541187,16428579 +g1,10771:20857333,16428579 +g1,10771:21173479,16428579 +g1,10771:21489625,16428579 +h1,10771:23386499,16428579:0,0,0 +k1,10771:32583029,16428579:9196530 +g1,10771:32583029,16428579 +) +(1,10771:6630773,17094757:25952256,404226,9436 +h1,10771:6630773,17094757:0,0,0 +g1,10771:7579210,17094757 +g1,10771:8211502,17094757 +g1,10771:9476085,17094757 +g1,10771:11056814,17094757 +g1,10771:12321397,17094757 +g1,10771:13902126,17094757 +h1,10771:15166709,17094757:0,0,0 +k1,10771:32583029,17094757:17416320 +g1,10771:32583029,17094757 +) +] +) +g1,10772:32583029,17104193 +g1,10772:6630773,17104193 +g1,10772:6630773,17104193 +g1,10772:32583029,17104193 +g1,10772:32583029,17104193 +) +h1,10772:6630773,17300801:0,0,0 +(1,10776:6630773,18622944:25952256,513147,115847 +h1,10775:6630773,18622944:983040,0,0 +k1,10775:10764296,18622944:360615 +(1,10775:10764296,18622944:0,452978,115847 +r1,10775:13232833,18622944:2468537,568825,115847 +k1,10775:10764296,18622944:-2468537 +) +(1,10775:10764296,18622944:2468537,452978,115847 +k1,10775:10764296,18622944:3277 +h1,10775:13229556,18622944:0,411205,112570 +) +k1,10775:13593448,18622944:360615 +k1,10775:15058344,18622944:360614 +k1,10775:16166725,18622944:360615 +k1,10775:18040566,18622944:360615 +k1,10775:19052609,18622944:360615 +k1,10775:21617199,18622944:360614 +k1,10775:22333674,18622944:360615 +k1,10775:24774402,18622944:360615 +k1,10775:25794309,18622944:360615 +k1,10775:27689122,18622944:360615 +k1,10775:29904405,18622944:360614 +k1,10775:31074390,18622944:360615 +k1,10775:32583029,18622944:0 +) +(1,10776:6630773,19464432:25952256,505283,126483 +k1,10775:11154012,19464432:152643 +k1,10775:14380950,19464432:152644 +k1,10775:15818099,19464432:152643 +k1,10775:16586781,19464432:152644 +k1,10775:18173352,19464432:152643 +k1,10775:18740792,19464432:152597 +k1,10775:20849685,19464432:152643 +k1,10775:22094814,19464432:152644 +k1,10775:25422676,19464432:152643 +k1,10775:28609637,19464432:152644 +k1,10775:31189078,19464432:152643 +k1,10775:32583029,19464432:0 +) +(1,10776:6630773,20305920:25952256,505283,126483 +g1,10775:7849087,20305920 +(1,10775:7849087,20305920:0,452978,115847 +r1,10775:9614201,20305920:1765114,568825,115847 +k1,10775:7849087,20305920:-1765114 +) +(1,10775:7849087,20305920:1765114,452978,115847 +g1,10775:8555788,20305920 +g1,10775:9259212,20305920 +h1,10775:9610924,20305920:0,411205,112570 +) +g1,10775:9813430,20305920 +g1,10775:12932943,20305920 +(1,10775:12932943,20305920:0,452978,122846 +r1,10775:19622022,20305920:6689079,575824,122846 +k1,10775:12932943,20305920:-6689079 +) +(1,10775:12932943,20305920:6689079,452978,122846 +g1,10775:19267033,20305920 +h1,10775:19618745,20305920:0,411205,112570 +) +k1,10776:32583029,20305920:12787337 +g1,10776:32583029,20305920 +) +v1,10778:6630773,21452752:0,393216,0 +(1,10791:6630773,26395442:25952256,5335906,196608 +g1,10791:6630773,26395442 +g1,10791:6630773,26395442 +g1,10791:6434165,26395442 +(1,10791:6434165,26395442:0,5335906,196608 +r1,10791:32779637,26395442:26345472,5532514,196608 +k1,10791:6434165,26395442:-26345472 +) +(1,10791:6434165,26395442:26345472,5335906,196608 +[1,10791:6630773,26395442:25952256,5139298,0 +(1,10780:6630773,21660370:25952256,404226,107478 +(1,10779:6630773,21660370:0,0,0 +g1,10779:6630773,21660370 +g1,10779:6630773,21660370 +g1,10779:6303093,21660370 +(1,10779:6303093,21660370:0,0,0 +) +g1,10779:6630773,21660370 +) +k1,10780:6630773,21660370:0 +g1,10780:12953687,21660370 +h1,10780:14218271,21660370:0,0,0 +k1,10780:32583029,21660370:18364758 +g1,10780:32583029,21660370 +) +(1,10790:6630773,22392084:25952256,404226,9436 +(1,10782:6630773,22392084:0,0,0 +g1,10782:6630773,22392084 +g1,10782:6630773,22392084 +g1,10782:6303093,22392084 +(1,10782:6303093,22392084:0,0,0 +) +g1,10782:6630773,22392084 +) +g1,10790:7579210,22392084 +g1,10790:8211502,22392084 +g1,10790:8843794,22392084 +g1,10790:11372960,22392084 +g1,10790:12005252,22392084 +g1,10790:12637544,22392084 +h1,10790:12953690,22392084:0,0,0 +k1,10790:32583030,22392084:19629340 +g1,10790:32583030,22392084 +) +(1,10790:6630773,23058262:25952256,404226,101187 +h1,10790:6630773,23058262:0,0,0 +g1,10790:7579210,23058262 +g1,10790:7895356,23058262 +g1,10790:8211502,23058262 +g1,10790:10740668,23058262 +g1,10790:12321397,23058262 +g1,10790:12637543,23058262 +g1,10790:12953689,23058262 +g1,10790:13269835,23058262 +g1,10790:13585981,23058262 +g1,10790:13902127,23058262 +g1,10790:14218273,23058262 +g1,10790:14534419,23058262 +g1,10790:14850565,23058262 +g1,10790:18012022,23058262 +g1,10790:21489625,23058262 +h1,10790:24018790,23058262:0,0,0 +k1,10790:32583029,23058262:8564239 +g1,10790:32583029,23058262 +) +(1,10790:6630773,23724440:25952256,410518,6290 +h1,10790:6630773,23724440:0,0,0 +g1,10790:7579210,23724440 +g1,10790:7895356,23724440 +g1,10790:8211502,23724440 +g1,10790:10108377,23724440 +g1,10790:10424523,23724440 +g1,10790:10740669,23724440 +g1,10790:12637544,23724440 +g1,10790:12953690,23724440 +g1,10790:13269836,23724440 +g1,10790:13585982,23724440 +g1,10790:13902128,23724440 +g1,10790:14218274,23724440 +g1,10790:14534420,23724440 +g1,10790:14850566,23724440 +g1,10790:15166712,23724440 +g1,10790:15482858,23724440 +g1,10790:15799004,23724440 +g1,10790:16115150,23724440 +g1,10790:18012025,23724440 +g1,10790:19908900,23724440 +g1,10790:20225046,23724440 +g1,10790:20541192,23724440 +g1,10790:20857338,23724440 +g1,10790:21173484,23724440 +g1,10790:21489630,23724440 +k1,10790:21489630,23724440:0 +h1,10790:23070359,23724440:0,0,0 +k1,10790:32583029,23724440:9512670 +g1,10790:32583029,23724440 +) +(1,10790:6630773,24390618:25952256,404226,107478 +h1,10790:6630773,24390618:0,0,0 +g1,10790:7579210,24390618 +g1,10790:8211502,24390618 +g1,10790:10424522,24390618 +g1,10790:10740668,24390618 +g1,10790:14850562,24390618 +g1,10790:15166708,24390618 +g1,10790:15482854,24390618 +g1,10790:15799000,24390618 +g1,10790:16115146,24390618 +g1,10790:16431292,24390618 +g1,10790:16747438,24390618 +g1,10790:18012021,24390618 +g1,10790:19908895,24390618 +g1,10790:20225041,24390618 +g1,10790:20541187,24390618 +g1,10790:20857333,24390618 +g1,10790:21173479,24390618 +g1,10790:21489625,24390618 +h1,10790:23386499,24390618:0,0,0 +k1,10790:32583029,24390618:9196530 +g1,10790:32583029,24390618 +) +(1,10790:6630773,25056796:25952256,404226,107478 +h1,10790:6630773,25056796:0,0,0 +g1,10790:7579210,25056796 +g1,10790:8211502,25056796 +g1,10790:10424522,25056796 +g1,10790:10740668,25056796 +g1,10790:14850562,25056796 +g1,10790:15166708,25056796 +g1,10790:15482854,25056796 +g1,10790:15799000,25056796 +g1,10790:16115146,25056796 +g1,10790:16431292,25056796 +g1,10790:16747438,25056796 +g1,10790:18012021,25056796 +g1,10790:19908895,25056796 +g1,10790:20225041,25056796 +g1,10790:20541187,25056796 +g1,10790:20857333,25056796 +g1,10790:21173479,25056796 +g1,10790:21489625,25056796 +h1,10790:23386499,25056796:0,0,0 +k1,10790:32583029,25056796:9196530 +g1,10790:32583029,25056796 +) +(1,10790:6630773,25722974:25952256,404226,107478 +h1,10790:6630773,25722974:0,0,0 +g1,10790:7579210,25722974 +g1,10790:8211502,25722974 +g1,10790:10424522,25722974 +g1,10790:10740668,25722974 +g1,10790:14850562,25722974 +g1,10790:15166708,25722974 +g1,10790:15482854,25722974 +g1,10790:15799000,25722974 +g1,10790:16115146,25722974 +g1,10790:16431292,25722974 +g1,10790:16747438,25722974 +g1,10790:18012021,25722974 +g1,10790:19908895,25722974 +g1,10790:20225041,25722974 +g1,10790:20541187,25722974 +g1,10790:20857333,25722974 +g1,10790:21173479,25722974 +g1,10790:21489625,25722974 +h1,10790:23386499,25722974:0,0,0 +k1,10790:32583029,25722974:9196530 +g1,10790:32583029,25722974 +) +(1,10790:6630773,26389152:25952256,404226,6290 +h1,10790:6630773,26389152:0,0,0 +g1,10790:7579210,26389152 +g1,10790:8211502,26389152 +g1,10790:9476085,26389152 +g1,10790:11056814,26389152 +g1,10790:11689106,26389152 +g1,10790:13269835,26389152 +h1,10790:14534418,26389152:0,0,0 +k1,10790:32583030,26389152:18048612 +g1,10790:32583030,26389152 +) +] +) +g1,10791:32583029,26395442 +g1,10791:6630773,26395442 +g1,10791:6630773,26395442 +g1,10791:32583029,26395442 +g1,10791:32583029,26395442 +) +h1,10791:6630773,26592050:0,0,0 +(1,10795:6630773,27914192:25952256,513147,115847 +h1,10794:6630773,27914192:983040,0,0 +k1,10794:10661600,27914192:257919 +(1,10794:10661600,27914192:0,452978,115847 +r1,10794:13481849,27914192:2820249,568825,115847 +k1,10794:10661600,27914192:-2820249 +) +(1,10794:10661600,27914192:2820249,452978,115847 +k1,10794:10661600,27914192:3277 +h1,10794:13478572,27914192:0,411205,112570 +) +k1,10794:13739768,27914192:257919 +k1,10794:15101969,27914192:257919 +k1,10794:16107654,27914192:257919 +k1,10794:17878799,27914192:257919 +k1,10794:18788146,27914192:257919 +k1,10794:21250041,27914192:257919 +k1,10794:21863820,27914192:257919 +k1,10794:24201852,27914192:257919 +k1,10794:25119063,27914192:257919 +k1,10794:29621094,27914192:257919 +k1,10794:31835263,27914192:257919 +k1,10794:32583029,27914192:0 +) +(1,10795:6630773,28755680:25952256,505283,134348 +k1,10794:8424375,28755680:216150 +k1,10794:10034476,28755680:216150 +k1,10794:13425846,28755680:216151 +k1,10794:16676313,28755680:216150 +k1,10794:19319261,28755680:216150 +k1,10794:20929362,28755680:216150 +(1,10794:20929362,28755680:0,452978,115847 +r1,10794:22694476,28755680:1765114,568825,115847 +k1,10794:20929362,28755680:-1765114 +) +(1,10794:20929362,28755680:1765114,452978,115847 +g1,10794:21636063,28755680 +g1,10794:22339487,28755680 +h1,10794:22691199,28755680:0,411205,112570 +) +k1,10794:22910627,28755680:216151 +k1,10794:23742815,28755680:216150 +k1,10794:25392893,28755680:216150 +k1,10794:26197556,28755680:216150 +k1,10794:28841161,28755680:216151 +k1,10794:30696366,28755680:216150 +k1,10794:31563944,28755680:216150 +k1,10794:32583029,28755680:0 +) +(1,10795:6630773,29597168:25952256,505283,134348 +k1,10794:9129333,29597168:257229 +k1,10794:12458890,29597168:257229 +k1,10794:13402281,29597168:257229 +k1,10794:16279639,29597168:257229 +k1,10794:18963666,29597168:257229 +k1,10794:19903780,29597168:257229 +k1,10794:22543897,29597168:257228 +k1,10794:24869442,29597168:257229 +k1,10794:25742709,29597168:257229 +k1,10794:26355798,29597168:257229 +k1,10794:28764574,29597168:257229 +k1,10794:31753999,29597168:257229 +k1,10795:32583029,29597168:0 +) +(1,10795:6630773,30438656:25952256,505283,126483 +k1,10794:8666456,30438656:224923 +k1,10794:9507418,30438656:224924 +k1,10794:11166269,30438656:224923 +k1,10794:11806010,30438656:224898 +k1,10794:13135215,30438656:224923 +k1,10794:14735740,30438656:224924 +k1,10794:15708429,30438656:224923 +k1,10794:18727153,30438656:224924 +k1,10794:20641594,30438656:224923 +(1,10794:20641594,30438656:0,452978,115847 +r1,10794:23461843,30438656:2820249,568825,115847 +k1,10794:20641594,30438656:-2820249 +) +(1,10794:20641594,30438656:2820249,452978,115847 +k1,10794:20641594,30438656:3277 +h1,10794:23458566,30438656:0,411205,112570 +) +k1,10794:23686767,30438656:224924 +k1,10794:26289992,30438656:224923 +k1,10794:27906901,30438656:224924 +k1,10794:30514713,30438656:224923 +k1,10794:32583029,30438656:0 +) +(1,10795:6630773,31280144:25952256,513147,126483 +g1,10794:10258190,31280144 +g1,10794:11851370,31280144 +g1,10794:12406459,31280144 +g1,10794:14586841,31280144 +g1,10794:15733721,31280144 +k1,10795:32583029,31280144:13668846 +g1,10795:32583029,31280144 +) +v1,10797:6630773,32426976:0,393216,0 +(1,10810:6630773,37372812:25952256,5339052,196608 +g1,10810:6630773,37372812 +g1,10810:6630773,37372812 +g1,10810:6434165,37372812 +(1,10810:6434165,37372812:0,5339052,196608 +r1,10810:32779637,37372812:26345472,5535660,196608 +k1,10810:6434165,37372812:-26345472 +) +(1,10810:6434165,37372812:26345472,5339052,196608 +[1,10810:6630773,37372812:25952256,5142444,0 +(1,10799:6630773,32634594:25952256,404226,107478 +(1,10798:6630773,32634594:0,0,0 +g1,10798:6630773,32634594 +g1,10798:6630773,32634594 +g1,10798:6303093,32634594 +(1,10798:6303093,32634594:0,0,0 +) +g1,10798:6630773,32634594 +) +k1,10799:6630773,32634594:0 +g1,10799:13269833,32634594 +k1,10799:13269833,32634594:0 +h1,10799:15166707,32634594:0,0,0 +k1,10799:32583029,32634594:17416322 +g1,10799:32583029,32634594 +) +(1,10809:6630773,33366308:25952256,404226,9436 +(1,10801:6630773,33366308:0,0,0 +g1,10801:6630773,33366308 +g1,10801:6630773,33366308 +g1,10801:6303093,33366308 +(1,10801:6303093,33366308:0,0,0 +) +g1,10801:6630773,33366308 +) +g1,10809:7579210,33366308 +g1,10809:8211502,33366308 +g1,10809:8843794,33366308 +g1,10809:11372960,33366308 +g1,10809:12637543,33366308 +g1,10809:13269835,33366308 +h1,10809:13585981,33366308:0,0,0 +k1,10809:32583029,33366308:18997048 +g1,10809:32583029,33366308 +) +(1,10809:6630773,34032486:25952256,404226,101187 +h1,10809:6630773,34032486:0,0,0 +g1,10809:7579210,34032486 +g1,10809:7895356,34032486 +g1,10809:8211502,34032486 +g1,10809:10740668,34032486 +g1,10809:13902125,34032486 +g1,10809:17379728,34032486 +h1,10809:19908893,34032486:0,0,0 +k1,10809:32583029,34032486:12674136 +g1,10809:32583029,34032486 +) +(1,10809:6630773,34698664:25952256,410518,6290 +h1,10809:6630773,34698664:0,0,0 +g1,10809:7579210,34698664 +g1,10809:7895356,34698664 +g1,10809:8211502,34698664 +g1,10809:10108377,34698664 +g1,10809:10424523,34698664 +g1,10809:10740669,34698664 +g1,10809:11056815,34698664 +g1,10809:11372961,34698664 +g1,10809:11689107,34698664 +g1,10809:12005253,34698664 +g1,10809:13902128,34698664 +g1,10809:15799003,34698664 +g1,10809:16115149,34698664 +g1,10809:16431295,34698664 +g1,10809:16747441,34698664 +g1,10809:17063587,34698664 +g1,10809:17379733,34698664 +k1,10809:17379733,34698664:0 +h1,10809:18960462,34698664:0,0,0 +k1,10809:32583029,34698664:13622567 +g1,10809:32583029,34698664 +) +(1,10809:6630773,35364842:25952256,404226,107478 +h1,10809:6630773,35364842:0,0,0 +g1,10809:7579210,35364842 +g1,10809:8211502,35364842 +g1,10809:10424522,35364842 +g1,10809:10740668,35364842 +g1,10809:11056814,35364842 +g1,10809:11372960,35364842 +g1,10809:11689106,35364842 +g1,10809:12005252,35364842 +g1,10809:12321398,35364842 +g1,10809:12637544,35364842 +g1,10809:13902127,35364842 +g1,10809:15799001,35364842 +g1,10809:16115147,35364842 +g1,10809:16431293,35364842 +g1,10809:16747439,35364842 +g1,10809:17063585,35364842 +g1,10809:17379731,35364842 +h1,10809:19276605,35364842:0,0,0 +k1,10809:32583029,35364842:13306424 +g1,10809:32583029,35364842 +) +(1,10809:6630773,36031020:25952256,404226,107478 +h1,10809:6630773,36031020:0,0,0 +g1,10809:7579210,36031020 +g1,10809:8211502,36031020 +g1,10809:10424522,36031020 +g1,10809:10740668,36031020 +g1,10809:11056814,36031020 +g1,10809:11372960,36031020 +g1,10809:11689106,36031020 +g1,10809:12005252,36031020 +g1,10809:12321398,36031020 +g1,10809:12637544,36031020 +g1,10809:13902127,36031020 +g1,10809:15799001,36031020 +g1,10809:16115147,36031020 +g1,10809:16431293,36031020 +g1,10809:16747439,36031020 +g1,10809:17063585,36031020 +g1,10809:17379731,36031020 +h1,10809:19276605,36031020:0,0,0 +k1,10809:32583029,36031020:13306424 +g1,10809:32583029,36031020 +) +(1,10809:6630773,36697198:25952256,404226,107478 +h1,10809:6630773,36697198:0,0,0 +g1,10809:7579210,36697198 +g1,10809:8211502,36697198 +g1,10809:10424522,36697198 +g1,10809:10740668,36697198 +g1,10809:11056814,36697198 +g1,10809:11372960,36697198 +g1,10809:11689106,36697198 +g1,10809:12005252,36697198 +g1,10809:12321398,36697198 +g1,10809:12637544,36697198 +g1,10809:13902127,36697198 +g1,10809:15799001,36697198 +g1,10809:16115147,36697198 +g1,10809:16431293,36697198 +g1,10809:16747439,36697198 +g1,10809:17063585,36697198 +g1,10809:17379731,36697198 +h1,10809:19276605,36697198:0,0,0 +k1,10809:32583029,36697198:13306424 +g1,10809:32583029,36697198 +) +(1,10809:6630773,37363376:25952256,404226,9436 +h1,10809:6630773,37363376:0,0,0 +g1,10809:7579210,37363376 +g1,10809:8211502,37363376 +g1,10809:9476085,37363376 +g1,10809:11056814,37363376 +g1,10809:12321397,37363376 +g1,10809:13902126,37363376 +h1,10809:15166709,37363376:0,0,0 +k1,10809:32583029,37363376:17416320 +g1,10809:32583029,37363376 +) +] +) +g1,10810:32583029,37372812 +g1,10810:6630773,37372812 +g1,10810:6630773,37372812 +g1,10810:32583029,37372812 +g1,10810:32583029,37372812 +) +h1,10810:6630773,37569420:0,0,0 +(1,10814:6630773,38891563:25952256,513147,126483 +h1,10813:6630773,38891563:983040,0,0 +k1,10813:8483452,38891563:241804 +k1,10813:11564932,38891563:241805 +(1,10813:11564932,38891563:0,452978,115847 +r1,10813:14385181,38891563:2820249,568825,115847 +k1,10813:11564932,38891563:-2820249 +) +(1,10813:11564932,38891563:2820249,452978,115847 +k1,10813:11564932,38891563:3277 +h1,10813:14381904,38891563:0,411205,112570 +) +k1,10813:14626985,38891563:241804 +k1,10813:15554951,38891563:241804 +k1,10813:17498726,38891563:241805 +k1,10813:20766327,38891563:241804 +k1,10813:21624169,38891563:241804 +k1,10813:23838606,38891563:241804 +k1,10813:26128411,38891563:241805 +k1,10813:29804302,38891563:241804 +k1,10813:32583029,38891563:0 +) +(1,10814:6630773,39733051:25952256,513147,126483 +k1,10813:7588341,39733051:196040 +k1,10813:10810179,39733051:196041 +(1,10813:10810179,39733051:0,452978,115847 +r1,10813:15388987,39733051:4578808,568825,115847 +k1,10813:10810179,39733051:-4578808 +) +(1,10813:10810179,39733051:4578808,452978,115847 +k1,10813:10810179,39733051:3277 +h1,10813:15385710,39733051:0,411205,112570 +) +k1,10813:15758697,39733051:196040 +(1,10813:15758697,39733051:0,452978,115847 +r1,10813:19634081,39733051:3875384,568825,115847 +k1,10813:15758697,39733051:-3875384 +) +(1,10813:15758697,39733051:3875384,452978,115847 +k1,10813:15758697,39733051:3277 +h1,10813:19630804,39733051:0,411205,112570 +) +k1,10813:20003791,39733051:196040 +(1,10813:20003791,39733051:0,452978,115847 +r1,10813:23527463,39733051:3523672,568825,115847 +k1,10813:20003791,39733051:-3523672 +) +(1,10813:20003791,39733051:3523672,452978,115847 +k1,10813:20003791,39733051:3277 +h1,10813:23524186,39733051:0,411205,112570 +) +k1,10813:23897174,39733051:196041 +k1,10813:25284659,39733051:196040 +(1,10813:25284659,39733051:0,452978,115847 +r1,10813:28456619,39733051:3171960,568825,115847 +k1,10813:25284659,39733051:-3171960 +) +(1,10813:25284659,39733051:3171960,452978,115847 +k1,10813:25284659,39733051:3277 +h1,10813:28453342,39733051:0,411205,112570 +) +k1,10813:28652659,39733051:196040 +k1,10813:29500128,39733051:196041 +k1,10813:31900144,39733051:196040 +k1,10813:32583029,39733051:0 +) +(1,10814:6630773,40574539:25952256,513147,126483 +k1,10813:8792169,40574539:296897 +k1,10813:11975926,40574539:296896 +k1,10813:13314845,40574539:296897 +k1,10813:14814983,40574539:296897 +k1,10813:17773297,40574539:296897 +k1,10813:18938545,40574539:296896 +k1,10813:20327927,40574539:296897 +k1,10813:21643909,40574539:296897 +k1,10813:26534224,40574539:296897 +(1,10813:26534224,40574539:0,452978,115847 +r1,10813:29002761,40574539:2468537,568825,115847 +k1,10813:26534224,40574539:-2468537 +) +(1,10813:26534224,40574539:2468537,452978,115847 +k1,10813:26534224,40574539:3277 +h1,10813:28999484,40574539:0,411205,112570 +) +k1,10813:29299657,40574539:296896 +k1,10813:31923737,40574539:296897 +k1,10814:32583029,40574539:0 +) +(1,10814:6630773,41416027:25952256,452978,122846 +(1,10813:6630773,41416027:0,452978,122846 +r1,10813:10857869,41416027:4227096,575824,122846 +k1,10813:6630773,41416027:-4227096 +) +(1,10813:6630773,41416027:4227096,452978,122846 +k1,10813:6630773,41416027:3277 +h1,10813:10854592,41416027:0,411205,112570 +) +k1,10814:32583029,41416027:21551490 +g1,10814:32583029,41416027 +) +v1,10816:6630773,42562859:0,393216,0 +(1,10829:6630773,45510161:25952256,3340518,196608 +g1,10829:6630773,45510161 +g1,10829:6630773,45510161 +g1,10829:6434165,45510161 +(1,10829:6434165,45510161:0,3340518,196608 +r1,10829:32779637,45510161:26345472,3537126,196608 +k1,10829:6434165,45510161:-26345472 +) +(1,10829:6434165,45510161:26345472,3340518,196608 +[1,10829:6630773,45510161:25952256,3143910,0 +(1,10818:6630773,42770477:25952256,404226,101187 +(1,10817:6630773,42770477:0,0,0 +g1,10817:6630773,42770477 +g1,10817:6630773,42770477 +g1,10817:6303093,42770477 +(1,10817:6303093,42770477:0,0,0 +) +g1,10817:6630773,42770477 +) +k1,10818:6630773,42770477:0 +g1,10818:11689104,42770477 +k1,10818:11689104,42770477:0 +h1,10818:18644309,42770477:0,0,0 +k1,10818:32583029,42770477:13938720 +g1,10818:32583029,42770477 +) +(1,10828:6630773,43502191:25952256,404226,9436 +(1,10820:6630773,43502191:0,0,0 +g1,10820:6630773,43502191 +g1,10820:6630773,43502191 +g1,10820:6303093,43502191 +(1,10820:6303093,43502191:0,0,0 +) +g1,10820:6630773,43502191 +) +g1,10828:7579210,43502191 +g1,10828:8211502,43502191 +g1,10828:8843794,43502191 +g1,10828:11372960,43502191 +g1,10828:12637543,43502191 +g1,10828:13269835,43502191 +h1,10828:13585981,43502191:0,0,0 +k1,10828:32583029,43502191:18997048 +g1,10828:32583029,43502191 +) +(1,10828:6630773,44168369:25952256,404226,107478 +h1,10828:6630773,44168369:0,0,0 +g1,10828:7579210,44168369 +g1,10828:7895356,44168369 +g1,10828:8211502,44168369 +g1,10828:12321396,44168369 +g1,10828:16115144,44168369 +h1,10828:18328164,44168369:0,0,0 +k1,10828:32583029,44168369:14254865 +g1,10828:32583029,44168369 +) +(1,10828:6630773,44834547:25952256,410518,6290 +h1,10828:6630773,44834547:0,0,0 +g1,10828:7579210,44834547 +g1,10828:7895356,44834547 +g1,10828:8211502,44834547 +g1,10828:8527648,44834547 +g1,10828:8843794,44834547 +g1,10828:9159940,44834547 +g1,10828:9476086,44834547 +g1,10828:9792232,44834547 +g1,10828:10108378,44834547 +g1,10828:10424524,44834547 +g1,10828:12321399,44834547 +g1,10828:12637545,44834547 +g1,10828:12953691,44834547 +g1,10828:13269837,44834547 +g1,10828:13585983,44834547 +g1,10828:13902129,44834547 +g1,10828:14218275,44834547 +g1,10828:16115150,44834547 +k1,10828:16115150,44834547:0 +h1,10828:17695879,44834547:0,0,0 +k1,10828:32583029,44834547:14887150 +g1,10828:32583029,44834547 +) +(1,10828:6630773,45500725:25952256,388497,9436 +h1,10828:6630773,45500725:0,0,0 +g1,10828:7579210,45500725 +g1,10828:8211502,45500725 +g1,10828:8527648,45500725 +g1,10828:8843794,45500725 +g1,10828:9159940,45500725 +g1,10828:9476086,45500725 +g1,10828:9792232,45500725 +g1,10828:10108378,45500725 +g1,10828:10424524,45500725 +g1,10828:10740670,45500725 +g1,10828:11056816,45500725 +g1,10828:12321399,45500725 +g1,10828:12637545,45500725 +g1,10828:12953691,45500725 +g1,10828:13269837,45500725 +g1,10828:13585983,45500725 +g1,10828:13902129,45500725 +g1,10828:14218275,45500725 +g1,10828:14534421,45500725 +g1,10828:14850567,45500725 +g1,10828:16115150,45500725 +h1,10828:18012024,45500725:0,0,0 +k1,10828:32583029,45500725:14571005 +g1,10828:32583029,45500725 +) +] +) +g1,10829:32583029,45510161 +g1,10829:6630773,45510161 +g1,10829:6630773,45510161 +g1,10829:32583029,45510161 +g1,10829:32583029,45510161 +) +] +(1,10829:32583029,45706769:0,0,0 +g1,10829:32583029,45706769 +) +) +] +(1,10829:6630773,47279633:25952256,0,0 +h1,10829:6630773,47279633:25952256,0,0 +) +] +h1,10829:4262630,4025873:0,0,0 ] !34117 }203 -Input:1380:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1381:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1382:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1383:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1384:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1385:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1386:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1387:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {204 -[1,10876:4262630,47279633:28320399,43253760,0 -(1,10876:4262630,4025873:0,0,0 -[1,10876:-473657,4025873:25952256,0,0 -(1,10876:-473657,-710414:25952256,0,0 -h1,10876:-473657,-710414:0,0,0 -(1,10876:-473657,-710414:0,0,0 -(1,10876:-473657,-710414:0,0,0 -g1,10876:-473657,-710414 -(1,10876:-473657,-710414:65781,0,65781 -g1,10876:-407876,-710414 -[1,10876:-407876,-644633:0,0,0 +[1,10881:4262630,47279633:28320399,43253760,0 +(1,10881:4262630,4025873:0,0,0 +[1,10881:-473657,4025873:25952256,0,0 +(1,10881:-473657,-710414:25952256,0,0 +h1,10881:-473657,-710414:0,0,0 +(1,10881:-473657,-710414:0,0,0 +(1,10881:-473657,-710414:0,0,0 +g1,10881:-473657,-710414 +(1,10881:-473657,-710414:65781,0,65781 +g1,10881:-407876,-710414 +[1,10881:-407876,-644633:0,0,0 ] ) -k1,10876:-473657,-710414:-65781 +k1,10881:-473657,-710414:-65781 ) ) -k1,10876:25478599,-710414:25952256 -g1,10876:25478599,-710414 +k1,10881:25478599,-710414:25952256 +g1,10881:25478599,-710414 ) ] ) -[1,10876:6630773,47279633:25952256,43253760,0 -[1,10876:6630773,4812305:25952256,786432,0 -(1,10876:6630773,4812305:25952256,505283,126483 -(1,10876:6630773,4812305:25952256,505283,126483 -g1,10876:3078558,4812305 -[1,10876:3078558,4812305:0,0,0 -(1,10876:3078558,2439708:0,1703936,0 -k1,10876:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,10876:2537886,2439708:1179648,16384,0 +[1,10881:6630773,47279633:25952256,43253760,0 +[1,10881:6630773,4812305:25952256,786432,0 +(1,10881:6630773,4812305:25952256,505283,126483 +(1,10881:6630773,4812305:25952256,505283,126483 +g1,10881:3078558,4812305 +[1,10881:3078558,4812305:0,0,0 +(1,10881:3078558,2439708:0,1703936,0 +k1,10881:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,10881:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,10876:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,10881:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,10876:3078558,4812305:0,0,0 -(1,10876:3078558,2439708:0,1703936,0 -g1,10876:29030814,2439708 -g1,10876:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,10876:36151628,1915420:16384,1179648,0 +[1,10881:3078558,4812305:0,0,0 +(1,10881:3078558,2439708:0,1703936,0 +g1,10881:29030814,2439708 +g1,10881:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,10881:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,10876:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,10881:37855564,2439708:1179648,16384,0 ) ) -k1,10876:3078556,2439708:-34777008 +k1,10881:3078556,2439708:-34777008 ) ] -[1,10876:3078558,4812305:0,0,0 -(1,10876:3078558,49800853:0,16384,2228224 -k1,10876:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,10876:2537886,49800853:1179648,16384,0 +[1,10881:3078558,4812305:0,0,0 +(1,10881:3078558,49800853:0,16384,2228224 +k1,10881:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,10881:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,10876:3078558,51504789:16384,1179648,0 -) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 -) -] -) -) -) -] -[1,10876:3078558,4812305:0,0,0 -(1,10876:3078558,49800853:0,16384,2228224 -g1,10876:29030814,49800853 -g1,10876:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,10876:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,10876:37855564,49800853:1179648,16384,0 -) -) -k1,10876:3078556,49800853:-34777008 -) -] -g1,10876:6630773,4812305 -g1,10876:6630773,4812305 -g1,10876:8364200,4812305 -g1,10876:12785258,4812305 -g1,10876:14347636,4812305 -g1,10876:16554232,4812305 -k1,10876:31387652,4812305:14833420 -) -) -] -[1,10876:6630773,45706769:25952256,40108032,0 -(1,10876:6630773,45706769:25952256,40108032,0 -(1,10876:6630773,45706769:0,0,0 -g1,10876:6630773,45706769 -) -[1,10876:6630773,45706769:25952256,40108032,0 -v1,10824:6630773,6254097:0,393216,0 -(1,10824:6630773,7784632:25952256,1923751,196608 -g1,10824:6630773,7784632 -g1,10824:6630773,7784632 -g1,10824:6434165,7784632 -(1,10824:6434165,7784632:0,1923751,196608 -r1,10824:32779637,7784632:26345472,2120359,196608 -k1,10824:6434165,7784632:-26345472 -) -(1,10824:6434165,7784632:26345472,1923751,196608 -[1,10824:6630773,7784632:25952256,1727143,0 -(1,10823:6630773,6445986:25952256,388497,9436 -h1,10823:6630773,6445986:0,0,0 -g1,10823:7579210,6445986 -g1,10823:8211502,6445986 -g1,10823:8527648,6445986 -g1,10823:8843794,6445986 -g1,10823:9159940,6445986 -g1,10823:9476086,6445986 -g1,10823:9792232,6445986 -g1,10823:10108378,6445986 -g1,10823:10424524,6445986 -g1,10823:10740670,6445986 -g1,10823:11056816,6445986 -g1,10823:12321399,6445986 -g1,10823:12637545,6445986 -g1,10823:12953691,6445986 -g1,10823:13269837,6445986 -g1,10823:13585983,6445986 -g1,10823:13902129,6445986 -g1,10823:14218275,6445986 -g1,10823:14534421,6445986 -g1,10823:14850567,6445986 -g1,10823:16115150,6445986 -h1,10823:18012024,6445986:0,0,0 -k1,10823:32583029,6445986:14571005 -g1,10823:32583029,6445986 -) -(1,10823:6630773,7112164:25952256,388497,9436 -h1,10823:6630773,7112164:0,0,0 -g1,10823:7579210,7112164 -g1,10823:8211502,7112164 -g1,10823:8527648,7112164 -g1,10823:8843794,7112164 -g1,10823:9159940,7112164 -g1,10823:9476086,7112164 -g1,10823:9792232,7112164 -g1,10823:10108378,7112164 -g1,10823:10424524,7112164 -g1,10823:10740670,7112164 -g1,10823:11056816,7112164 -g1,10823:12321399,7112164 -g1,10823:12637545,7112164 -g1,10823:12953691,7112164 -g1,10823:13269837,7112164 -g1,10823:13585983,7112164 -g1,10823:13902129,7112164 -g1,10823:14218275,7112164 -g1,10823:14534421,7112164 -g1,10823:14850567,7112164 -g1,10823:16115150,7112164 -h1,10823:18012024,7112164:0,0,0 -k1,10823:32583029,7112164:14571005 -g1,10823:32583029,7112164 -) -(1,10823:6630773,7778342:25952256,404226,6290 -h1,10823:6630773,7778342:0,0,0 -g1,10823:7579210,7778342 -g1,10823:8211502,7778342 -g1,10823:9476085,7778342 -g1,10823:11056814,7778342 -g1,10823:12321397,7778342 -g1,10823:13902126,7778342 -h1,10823:15166709,7778342:0,0,0 -k1,10823:32583029,7778342:17416320 -g1,10823:32583029,7778342 -) -] -) -g1,10824:32583029,7784632 -g1,10824:6630773,7784632 -g1,10824:6630773,7784632 -g1,10824:32583029,7784632 -g1,10824:32583029,7784632 -) -h1,10824:6630773,7981240:0,0,0 -v1,10828:6630773,9556549:0,393216,0 -(1,10841:6630773,14499239:25952256,5335906,196608 -g1,10841:6630773,14499239 -g1,10841:6630773,14499239 -g1,10841:6434165,14499239 -(1,10841:6434165,14499239:0,5335906,196608 -r1,10841:32779637,14499239:26345472,5532514,196608 -k1,10841:6434165,14499239:-26345472 -) -(1,10841:6434165,14499239:26345472,5335906,196608 -[1,10841:6630773,14499239:25952256,5139298,0 -(1,10830:6630773,9764167:25952256,404226,101187 -(1,10829:6630773,9764167:0,0,0 -g1,10829:6630773,9764167 -g1,10829:6630773,9764167 -g1,10829:6303093,9764167 -(1,10829:6303093,9764167:0,0,0 -) -g1,10829:6630773,9764167 -) -k1,10830:6630773,9764167:0 -g1,10830:11689104,9764167 -g1,10830:14534416,9764167 -k1,10830:14534416,9764167:0 -h1,10830:19276601,9764167:0,0,0 -k1,10830:32583029,9764167:13306428 -g1,10830:32583029,9764167 -) -(1,10840:6630773,10495881:25952256,404226,9436 -(1,10832:6630773,10495881:0,0,0 -g1,10832:6630773,10495881 -g1,10832:6630773,10495881 -g1,10832:6303093,10495881 -(1,10832:6303093,10495881:0,0,0 -) -g1,10832:6630773,10495881 -) -g1,10840:7579210,10495881 -g1,10840:8211502,10495881 -g1,10840:8843794,10495881 -g1,10840:11372960,10495881 -g1,10840:12637543,10495881 -g1,10840:13269835,10495881 -h1,10840:13585981,10495881:0,0,0 -k1,10840:32583029,10495881:18997048 -g1,10840:32583029,10495881 -) -(1,10840:6630773,11162059:25952256,404226,107478 -h1,10840:6630773,11162059:0,0,0 -g1,10840:7579210,11162059 -g1,10840:7895356,11162059 -g1,10840:8211502,11162059 -g1,10840:10740668,11162059 -g1,10840:14850562,11162059 -h1,10840:18328164,11162059:0,0,0 -k1,10840:32583029,11162059:14254865 -g1,10840:32583029,11162059 -) -(1,10840:6630773,11828237:25952256,410518,6290 -h1,10840:6630773,11828237:0,0,0 -g1,10840:7579210,11828237 -g1,10840:7895356,11828237 -g1,10840:8211502,11828237 -g1,10840:10108377,11828237 -g1,10840:10424523,11828237 -g1,10840:10740669,11828237 -g1,10840:11056815,11828237 -g1,10840:11372961,11828237 -g1,10840:11689107,11828237 -g1,10840:12005253,11828237 -g1,10840:12321399,11828237 -g1,10840:12637545,11828237 -g1,10840:12953691,11828237 -g1,10840:14850566,11828237 -g1,10840:15166712,11828237 -g1,10840:15482858,11828237 -g1,10840:15799004,11828237 -g1,10840:16115150,11828237 -g1,10840:16431296,11828237 -g1,10840:16747442,11828237 -k1,10840:16747442,11828237:0 -h1,10840:18328171,11828237:0,0,0 -k1,10840:32583029,11828237:14254858 -g1,10840:32583029,11828237 -) -(1,10840:6630773,12494415:25952256,388497,9436 -h1,10840:6630773,12494415:0,0,0 -g1,10840:7579210,12494415 -g1,10840:8211502,12494415 -g1,10840:10424522,12494415 -g1,10840:10740668,12494415 -g1,10840:11056814,12494415 -g1,10840:11372960,12494415 -g1,10840:11689106,12494415 -g1,10840:12005252,12494415 -g1,10840:12321398,12494415 -g1,10840:12637544,12494415 -g1,10840:12953690,12494415 -g1,10840:13269836,12494415 -g1,10840:13585982,12494415 -g1,10840:14850565,12494415 -g1,10840:15166711,12494415 -g1,10840:15482857,12494415 -g1,10840:15799003,12494415 -g1,10840:16115149,12494415 -g1,10840:16431295,12494415 -g1,10840:16747441,12494415 -g1,10840:17063587,12494415 -g1,10840:17379733,12494415 -h1,10840:18328170,12494415:0,0,0 -k1,10840:32583029,12494415:14254859 -g1,10840:32583029,12494415 -) -(1,10840:6630773,13160593:25952256,388497,9436 -h1,10840:6630773,13160593:0,0,0 -g1,10840:7579210,13160593 -g1,10840:8211502,13160593 -g1,10840:10424522,13160593 -g1,10840:10740668,13160593 -g1,10840:11056814,13160593 -g1,10840:11372960,13160593 -g1,10840:11689106,13160593 -g1,10840:12005252,13160593 -g1,10840:12321398,13160593 -g1,10840:12637544,13160593 -g1,10840:12953690,13160593 -g1,10840:13269836,13160593 -g1,10840:13585982,13160593 -g1,10840:14850565,13160593 -g1,10840:15166711,13160593 -g1,10840:15482857,13160593 -g1,10840:15799003,13160593 -g1,10840:16115149,13160593 -g1,10840:16431295,13160593 -g1,10840:16747441,13160593 -g1,10840:17063587,13160593 -g1,10840:17379733,13160593 -h1,10840:17695879,13160593:0,0,0 -k1,10840:32583029,13160593:14887150 -g1,10840:32583029,13160593 -) -(1,10840:6630773,13826771:25952256,388497,9436 -h1,10840:6630773,13826771:0,0,0 -g1,10840:7579210,13826771 -g1,10840:8211502,13826771 -g1,10840:10424522,13826771 -g1,10840:10740668,13826771 -g1,10840:11056814,13826771 -g1,10840:11372960,13826771 -g1,10840:11689106,13826771 -g1,10840:12005252,13826771 -g1,10840:12321398,13826771 -g1,10840:12637544,13826771 -g1,10840:12953690,13826771 -g1,10840:13269836,13826771 -g1,10840:13585982,13826771 -g1,10840:14850565,13826771 -g1,10840:15166711,13826771 -g1,10840:15482857,13826771 -g1,10840:15799003,13826771 -g1,10840:16115149,13826771 -g1,10840:16431295,13826771 -g1,10840:16747441,13826771 -g1,10840:17063587,13826771 -g1,10840:17379733,13826771 -h1,10840:18328170,13826771:0,0,0 -k1,10840:32583029,13826771:14254859 -g1,10840:32583029,13826771 -) -(1,10840:6630773,14492949:25952256,404226,6290 -h1,10840:6630773,14492949:0,0,0 -g1,10840:7579210,14492949 -g1,10840:8211502,14492949 -g1,10840:9476085,14492949 -g1,10840:11056814,14492949 -g1,10840:12321397,14492949 -g1,10840:13902126,14492949 -h1,10840:15166709,14492949:0,0,0 -k1,10840:32583029,14492949:17416320 -g1,10840:32583029,14492949 -) -] -) -g1,10841:32583029,14499239 -g1,10841:6630773,14499239 -g1,10841:6630773,14499239 -g1,10841:32583029,14499239 -g1,10841:32583029,14499239 -) -h1,10841:6630773,14695847:0,0,0 -(1,10845:6630773,15991901:25952256,505283,126483 -h1,10844:6630773,15991901:983040,0,0 -k1,10844:10745413,15991901:341732 -(1,10844:10745413,15991901:0,452978,115847 -r1,10844:13565662,15991901:2820249,568825,115847 -k1,10844:10745413,15991901:-2820249 -) -(1,10844:10745413,15991901:2820249,452978,115847 -k1,10844:10745413,15991901:3277 -h1,10844:13562385,15991901:0,411205,112570 -) -k1,10844:13907394,15991901:341732 -k1,10844:15353408,15991901:341732 -k1,10844:16442906,15991901:341732 -k1,10844:18297864,15991901:341732 -k1,10844:19291024,15991901:341732 -k1,10844:22006469,15991901:341731 -k1,10844:25235062,15991901:341732 -k1,10844:28181850,15991901:341732 -k1,10844:29957510,15991901:341732 -k1,10844:30713942,15991901:341589 -k1,10845:32583029,15991901:0 -) -(1,10845:6630773,16833389:25952256,513147,115847 -k1,10844:7876188,16833389:279414 -k1,10844:9174687,16833389:279414 -k1,10844:10546586,16833389:279414 -k1,10844:11485292,16833389:279414 -k1,10844:13231402,16833389:279414 -(1,10844:13231402,16833389:0,452978,115847 -r1,10844:15699939,16833389:2468537,568825,115847 -k1,10844:13231402,16833389:-2468537 -) -(1,10844:13231402,16833389:2468537,452978,115847 -k1,10844:13231402,16833389:3277 -h1,10844:15696662,16833389:0,411205,112570 -) -k1,10844:15979353,16833389:279414 -k1,10844:17450213,16833389:279415 -(1,10844:17450213,16833389:0,452978,115847 -r1,10844:20622173,16833389:3171960,568825,115847 -k1,10844:17450213,16833389:-3171960 -) -(1,10844:17450213,16833389:3171960,452978,115847 -k1,10844:17450213,16833389:3277 -h1,10844:20618896,16833389:0,411205,112570 -) -k1,10844:20901587,16833389:279414 -k1,10844:22372446,16833389:279414 -k1,10844:23448778,16833389:279414 -k1,10844:24861965,16833389:279414 -k1,10844:26637566,16833389:279414 -k1,10844:27568408,16833389:279414 -k1,10844:29828975,16833389:279414 -k1,10844:31391584,16833389:279414 -k1,10844:32583029,16833389:0 -) -(1,10845:6630773,17674877:25952256,513147,134348 -k1,10844:7903951,17674877:252782 -k1,10844:10398719,17674877:252781 -k1,10844:11469390,17674877:252782 -k1,10844:13797696,17674877:252781 -k1,10844:16092580,17674877:252782 -k1,10844:17364446,17674877:252781 -k1,10844:19701273,17674877:252782 -k1,10844:20901706,17674877:252782 -k1,10844:22606109,17674877:252781 -k1,10844:25241780,17674877:252782 -k1,10844:27232576,17674877:252781 -k1,10844:28136786,17674877:252782 -k1,10844:29137333,17674877:252781 -k1,10844:32051532,17674877:252782 -k1,10845:32583029,17674877:0 -) -(1,10845:6630773,18516365:25952256,505283,134348 -(1,10844:6630773,18516365:0,452978,115847 -r1,10844:14726699,18516365:8095926,568825,115847 -k1,10844:6630773,18516365:-8095926 -) -(1,10844:6630773,18516365:8095926,452978,115847 -g1,10844:8392609,18516365 -g1,10844:10502880,18516365 -g1,10844:11206304,18516365 -g1,10844:12964863,18516365 -h1,10844:14723422,18516365:0,411205,112570 -) -k1,10844:15173988,18516365:273619 -k1,10844:16644293,18516365:273618 -k1,10844:18090351,18516365:273619 -k1,10844:20432285,18516365:273618 -k1,10844:21810186,18516365:273619 -k1,10844:22831570,18516365:273618 -k1,10844:24799950,18516365:273619 -k1,10844:26929548,18516365:273618 -k1,10844:27889329,18516365:273619 -k1,10844:29554932,18516365:273618 -k1,10844:31896867,18516365:273619 -k1,10844:32583029,18516365:0 -) -(1,10845:6630773,19357853:25952256,505283,134348 -g1,10844:8698433,19357853 -g1,10844:9580547,19357853 -g1,10844:10465938,19357853 -g1,10844:13639846,19357853 -k1,10845:32583029,19357853:16573401 -g1,10845:32583029,19357853 -) -v1,10847:6630773,20478597:0,393216,0 -(1,10860:6630773,25424433:25952256,5339052,196608 -g1,10860:6630773,25424433 -g1,10860:6630773,25424433 -g1,10860:6434165,25424433 -(1,10860:6434165,25424433:0,5339052,196608 -r1,10860:32779637,25424433:26345472,5535660,196608 -k1,10860:6434165,25424433:-26345472 -) -(1,10860:6434165,25424433:26345472,5339052,196608 -[1,10860:6630773,25424433:25952256,5142444,0 -(1,10849:6630773,20686215:25952256,404226,107478 -(1,10848:6630773,20686215:0,0,0 -g1,10848:6630773,20686215 -g1,10848:6630773,20686215 -g1,10848:6303093,20686215 -(1,10848:6303093,20686215:0,0,0 -) -g1,10848:6630773,20686215 -) -k1,10849:6630773,20686215:0 -g1,10849:13269833,20686215 -g1,10849:14534416,20686215 -g1,10849:15166708,20686215 -h1,10849:18328165,20686215:0,0,0 -k1,10849:32583029,20686215:14254864 -g1,10849:32583029,20686215 -) -(1,10859:6630773,21417929:25952256,404226,9436 -(1,10851:6630773,21417929:0,0,0 -g1,10851:6630773,21417929 -g1,10851:6630773,21417929 -g1,10851:6303093,21417929 -(1,10851:6303093,21417929:0,0,0 -) -g1,10851:6630773,21417929 -) -g1,10859:7579210,21417929 -g1,10859:8211502,21417929 -g1,10859:8843794,21417929 -g1,10859:11372960,21417929 -g1,10859:12637543,21417929 -g1,10859:13269835,21417929 -h1,10859:13585981,21417929:0,0,0 -k1,10859:32583029,21417929:18997048 -g1,10859:32583029,21417929 -) -(1,10859:6630773,22084107:25952256,404226,101187 -h1,10859:6630773,22084107:0,0,0 -g1,10859:7579210,22084107 -g1,10859:7895356,22084107 -g1,10859:8211502,22084107 -g1,10859:10740668,22084107 -g1,10859:12321397,22084107 -g1,10859:12637543,22084107 -g1,10859:12953689,22084107 -g1,10859:13269835,22084107 -g1,10859:13585981,22084107 -g1,10859:13902127,22084107 -g1,10859:14218273,22084107 -g1,10859:14534419,22084107 -g1,10859:14850565,22084107 -g1,10859:15166711,22084107 -g1,10859:15482857,22084107 -g1,10859:16747440,22084107 -g1,10859:20225043,22084107 -h1,10859:22754208,22084107:0,0,0 -k1,10859:32583029,22084107:9828821 -g1,10859:32583029,22084107 -) -(1,10859:6630773,22750285:25952256,410518,6290 -h1,10859:6630773,22750285:0,0,0 -g1,10859:7579210,22750285 -g1,10859:7895356,22750285 -g1,10859:8211502,22750285 -g1,10859:10108377,22750285 -g1,10859:10424523,22750285 -g1,10859:10740669,22750285 -g1,10859:12637544,22750285 -g1,10859:12953690,22750285 -g1,10859:13269836,22750285 -g1,10859:13585982,22750285 -g1,10859:13902128,22750285 -g1,10859:14218274,22750285 -g1,10859:14534420,22750285 -g1,10859:14850566,22750285 -g1,10859:16747441,22750285 -g1,10859:18644316,22750285 -g1,10859:18960462,22750285 -g1,10859:19276608,22750285 -g1,10859:19592754,22750285 -g1,10859:19908900,22750285 -g1,10859:20225046,22750285 -k1,10859:20225046,22750285:0 -h1,10859:21805775,22750285:0,0,0 -k1,10859:32583029,22750285:10777254 -g1,10859:32583029,22750285 -) -(1,10859:6630773,23416463:25952256,404226,107478 -h1,10859:6630773,23416463:0,0,0 -g1,10859:7579210,23416463 -g1,10859:8211502,23416463 -g1,10859:10424522,23416463 -g1,10859:10740668,23416463 -g1,10859:14850562,23416463 -g1,10859:15166708,23416463 -g1,10859:15482854,23416463 -g1,10859:16747437,23416463 -g1,10859:18644311,23416463 -g1,10859:18960457,23416463 -g1,10859:19276603,23416463 -g1,10859:19592749,23416463 -g1,10859:19908895,23416463 -g1,10859:20225041,23416463 -h1,10859:22121915,23416463:0,0,0 -k1,10859:32583029,23416463:10461114 -g1,10859:32583029,23416463 -) -(1,10859:6630773,24082641:25952256,404226,107478 -h1,10859:6630773,24082641:0,0,0 -g1,10859:7579210,24082641 -g1,10859:8211502,24082641 -g1,10859:10424522,24082641 -g1,10859:10740668,24082641 -g1,10859:14850562,24082641 -g1,10859:15166708,24082641 -g1,10859:15482854,24082641 -g1,10859:16747437,24082641 -g1,10859:18644311,24082641 -g1,10859:18960457,24082641 -g1,10859:19276603,24082641 -g1,10859:19592749,24082641 -g1,10859:19908895,24082641 -g1,10859:20225041,24082641 -h1,10859:22121915,24082641:0,0,0 -k1,10859:32583029,24082641:10461114 -g1,10859:32583029,24082641 -) -(1,10859:6630773,24748819:25952256,404226,107478 -h1,10859:6630773,24748819:0,0,0 -g1,10859:7579210,24748819 -g1,10859:8211502,24748819 -g1,10859:10424522,24748819 -g1,10859:10740668,24748819 -g1,10859:14850562,24748819 -g1,10859:15166708,24748819 -g1,10859:15482854,24748819 -g1,10859:16747437,24748819 -g1,10859:18644311,24748819 -g1,10859:18960457,24748819 -g1,10859:19276603,24748819 -g1,10859:19592749,24748819 -g1,10859:19908895,24748819 -g1,10859:20225041,24748819 -h1,10859:22121915,24748819:0,0,0 -k1,10859:32583029,24748819:10461114 -g1,10859:32583029,24748819 -) -(1,10859:6630773,25414997:25952256,404226,9436 -h1,10859:6630773,25414997:0,0,0 -g1,10859:7579210,25414997 -g1,10859:8211502,25414997 -g1,10859:9476085,25414997 -g1,10859:11056814,25414997 -g1,10859:12321397,25414997 -g1,10859:13902126,25414997 -h1,10859:15166709,25414997:0,0,0 -k1,10859:32583029,25414997:17416320 -g1,10859:32583029,25414997 -) -] -) -g1,10860:32583029,25424433 -g1,10860:6630773,25424433 -g1,10860:6630773,25424433 -g1,10860:32583029,25424433 -g1,10860:32583029,25424433 -) -h1,10860:6630773,25621041:0,0,0 -(1,10864:6630773,28166867:25952256,555811,139132 -(1,10864:6630773,28166867:2450326,534184,12975 -g1,10864:6630773,28166867 -g1,10864:9081099,28166867 -) -g1,10864:13428102,28166867 -k1,10864:32583029,28166867:13965917 -g1,10864:32583029,28166867 -) -(1,10868:6630773,29401571:25952256,513147,134348 -k1,10867:9444293,29401571:209119 -k1,10867:12862711,29401571:209120 -k1,10867:16146124,29401571:209119 -k1,10867:16886740,29401571:209119 -k1,10867:17747288,29401571:209120 -k1,10867:21524187,29401571:209119 -k1,10867:24917046,29401571:209120 -k1,10867:25887693,29401571:209119 -k1,10867:28319793,29401571:209119 -k1,10867:29188205,29401571:209120 -k1,10867:31105192,29401571:209119 -k1,10868:32583029,29401571:0 -) -(1,10868:6630773,30243059:25952256,513147,134348 -k1,10867:8347395,30243059:166040 -k1,10867:9164863,30243059:166040 -k1,10867:10764831,30243059:166040 -k1,10867:11519384,30243059:166040 -k1,10867:12704509,30243059:166040 -k1,10867:15773139,30243059:166040 -k1,10867:16598471,30243059:166040 -k1,10867:18153875,30243059:166041 -k1,10867:22749493,30243059:166040 -k1,10867:24660101,30243059:166040 -k1,10867:26029382,30243059:166040 -k1,10867:29269716,30243059:166040 -k1,10867:30051794,30243059:166040 -k1,10867:31563944,30243059:166040 -k1,10867:32583029,30243059:0 -) -(1,10868:6630773,31084547:25952256,513147,134348 -k1,10867:8967132,31084547:154665 -k1,10867:9781088,31084547:154664 -k1,10867:10954838,31084547:154665 -k1,10867:14166102,31084547:154665 -k1,10867:15512212,31084547:154665 -k1,10867:16685961,31084547:154664 -k1,10867:20312068,31084547:154665 -k1,10867:21126025,31084547:154665 -k1,10867:24962503,31084547:154665 -k1,10867:26498011,31084547:154664 -k1,10867:29739422,31084547:154665 -k1,10867:30913172,31084547:154665 -k1,10867:32583029,31084547:0 -) -(1,10868:6630773,31926035:25952256,505283,134348 -k1,10867:9145866,31926035:156452 -k1,10867:9760415,31926035:156452 -k1,10867:11567064,31926035:156452 -k1,10867:13524445,31926035:156452 -k1,10867:18654424,31926035:156452 -k1,10867:20508915,31926035:156453 -k1,10867:22400760,31926035:156452 -k1,10867:24277532,31926035:156452 -k1,10867:27615102,31926035:156452 -k1,10867:28422982,31926035:156452 -k1,10867:29598519,31926035:156452 -k1,10867:32583029,31926035:0 -) -(1,10868:6630773,32767523:25952256,513147,122846 -k1,10867:7514786,32767523:224721 -k1,10867:9173436,32767523:224722 -k1,10867:9812974,32767523:224695 -(1,10867:9812974,32767523:0,452978,122846 -r1,10867:13688358,32767523:3875384,575824,122846 -k1,10867:9812974,32767523:-3875384 -) -(1,10867:9812974,32767523:3875384,452978,122846 -k1,10867:9812974,32767523:3277 -h1,10867:13685081,32767523:0,411205,112570 -) -k1,10867:14086750,32767523:224722 -k1,10867:15502916,32767523:224721 -k1,10867:16185735,32767523:224722 -k1,10867:17696272,32767523:224721 -k1,10867:19967027,32767523:224721 -k1,10867:20649846,32767523:224722 -k1,10867:22744965,32767523:224721 -k1,10867:23621114,32767523:224721 -k1,10867:27413616,32767523:224722 -k1,10867:29869838,32767523:224721 -k1,10867:32583029,32767523:0 -) -(1,10868:6630773,33609011:25952256,505283,134348 -g1,10867:7446040,33609011 -g1,10867:8001129,33609011 -g1,10867:10073377,33609011 -k1,10868:32583029,33609011:19261688 -g1,10868:32583029,33609011 -) -v1,10870:6630773,34905064:0,393216,0 -(1,10871:6630773,41270213:25952256,6758365,616038 -g1,10871:6630773,41270213 -(1,10871:6630773,41270213:25952256,6758365,616038 -(1,10871:6630773,41886251:25952256,7374403,0 -[1,10871:6630773,41886251:25952256,7374403,0 -(1,10871:6630773,41860037:25952256,7321975,0 -r1,10871:6656987,41860037:26214,7321975,0 -[1,10871:6656987,41860037:25899828,7321975,0 -(1,10871:6656987,41270213:25899828,6142327,0 -[1,10871:7246811,41270213:24720180,6142327,0 -(1,10871:7246811,36213422:24720180,1085536,298548 -(1,10870:7246811,36213422:0,1085536,298548 -r1,10871:8753226,36213422:1506415,1384084,298548 -k1,10870:7246811,36213422:-1506415 -) -(1,10870:7246811,36213422:1506415,1085536,298548 -) -k1,10870:8901449,36213422:148223 -k1,10870:9519566,36213422:148224 -k1,10870:10199286,36213422:148223 -k1,10870:13556808,36213422:148224 -k1,10870:14356459,36213422:148223 -k1,10870:15252449,36213422:148224 -k1,10870:17269103,36213422:148223 -k1,10870:18701832,36213422:148223 -k1,10870:21732985,36213422:148224 -k1,10870:22412705,36213422:148223 -k1,10870:25928824,36213422:148224 -k1,10870:27268492,36213422:148223 -k1,10870:28753650,36213422:148224 -k1,10870:30187689,36213422:148223 -k1,10870:31966991,36213422:0 -) -(1,10871:7246811,37054910:24720180,513147,126483 -k1,10870:9176759,37054910:227978 -k1,10870:12809332,37054910:227978 -k1,10870:13846680,37054910:227978 -k1,10870:15093742,37054910:227977 -k1,10870:16975193,37054910:227978 -k1,10870:18592534,37054910:227978 -k1,10870:20696808,37054910:227978 -k1,10870:21607671,37054910:227978 -k1,10870:23647064,37054910:227978 -k1,10870:24341003,37054910:227978 -k1,10870:25027078,37054910:227978 -k1,10870:25786552,37054910:227977 -k1,10870:27825945,37054910:227978 -k1,10870:28736808,37054910:227978 -k1,10870:30775546,37054910:227978 -k1,10870:31966991,37054910:0 -) -(1,10871:7246811,37896398:24720180,513147,134348 -k1,10870:9813365,37896398:243958 -k1,10870:13045764,37896398:243957 -k1,10870:13821219,37896398:243958 -k1,10870:16723972,37896398:243957 -k1,10870:17619358,37896398:243958 -k1,10870:19574461,37896398:243958 -k1,10870:21889356,37896398:243957 -k1,10870:23080965,37896398:243958 -k1,10870:24113320,37896398:243957 -k1,10870:25656857,37896398:243958 -k1,10870:28001898,37896398:243957 -k1,10870:29437301,37896398:243958 -k1,10870:31966991,37896398:0 -) -(1,10871:7246811,38737886:24720180,513147,134348 -k1,10870:8107462,38737886:201359 -k1,10870:9512063,38737886:201360 -k1,10870:10817704,38737886:201359 -k1,10870:12348133,38737886:201359 -k1,10870:13200921,38737886:201360 -k1,10870:16622719,38737886:201359 -k1,10870:18015523,38737886:201359 -k1,10870:21481231,38737886:201360 -k1,10870:23855764,38737886:201359 -k1,10870:25624744,38737886:201359 -k1,10870:29801518,38737886:201360 -k1,10870:30900720,38737886:201359 -k1,10870:31966991,38737886:0 -) -(1,10871:7246811,39579374:24720180,513147,134348 -k1,10870:8899356,39579374:261871 -k1,10870:11821988,39579374:261870 -k1,10870:14225576,39579374:261871 -k1,10870:15170332,39579374:261871 -k1,10870:16821565,39579374:261870 -k1,10870:19463704,39579374:261871 -k1,10870:20917020,39579374:261871 -k1,10870:23308155,39579374:261870 -k1,10870:25285759,39579374:261871 -k1,10870:26928474,39579374:261871 -k1,10870:28474850,39579374:261870 -k1,10870:30775546,39579374:261871 -k1,10870:31966991,39579374:0 -) -(1,10871:7246811,40420862:24720180,513147,134348 -k1,10870:10162132,40420862:252593 -k1,10870:11027487,40420862:252593 -k1,10870:12299166,40420862:252594 -k1,10870:14090544,40420862:252593 -k1,10870:15534582,40420862:252593 -k1,10870:16806260,40420862:252593 -k1,10870:17718146,40420862:252594 -k1,10870:18326599,40420862:252593 -k1,10870:20142881,40420862:252593 -k1,10870:21387034,40420862:252593 -k1,10870:22705898,40420862:252593 -k1,10870:25792924,40420862:252594 -k1,10870:26807045,40420862:252593 -k1,10870:28795031,40420862:252593 -(1,10870:28795031,40420862:0,452978,122846 -r1,10871:31966991,40420862:3171960,575824,122846 -k1,10870:28795031,40420862:-3171960 -) -(1,10870:28795031,40420862:3171960,452978,122846 -k1,10870:28795031,40420862:3277 -h1,10870:31963714,40420862:0,411205,112570 -) -k1,10870:31966991,40420862:0 -) -(1,10871:7246811,41262350:24720180,505283,7863 -g1,10870:9144078,41262350 -k1,10871:31966992,41262350:20350896 -g1,10871:31966992,41262350 -) -] -) -] -r1,10871:32583029,41860037:26214,7321975,0 -) -] -) -) -g1,10871:32583029,41270213 -) -h1,10871:6630773,41886251:0,0,0 -(1,10874:6630773,43182305:25952256,513147,134348 -h1,10873:6630773,43182305:983040,0,0 -k1,10873:8980732,43182305:170232 -k1,10873:10457097,43182305:170232 -k1,10873:11982614,43182305:170232 -k1,10873:12684343,43182305:170232 -k1,10873:13506003,43182305:170232 -k1,10873:14768720,43182305:170232 -(1,10873:14768720,43182305:0,452978,122846 -r1,10873:18292392,43182305:3523672,575824,122846 -k1,10873:14768720,43182305:-3523672 -) -(1,10873:14768720,43182305:3523672,452978,122846 -k1,10873:14768720,43182305:3277 -h1,10873:18289115,43182305:0,411205,112570 -) -k1,10873:18462624,43182305:170232 -k1,10873:19284284,43182305:170232 -k1,10873:21041798,43182305:170232 -k1,10873:21567890,43182305:170232 -k1,10873:23549537,43182305:170232 -k1,10873:25113720,43182305:170232 -k1,10873:26303037,43182305:170232 -k1,10873:29529868,43182305:170232 -k1,10873:30653649,43182305:170232 -k1,10873:32583029,43182305:0 -) -(1,10874:6630773,44023793:25952256,505283,134348 -k1,10873:7205960,44023793:219327 -k1,10873:9157404,44023793:219327 -k1,10873:10568176,44023793:219327 -k1,10873:12221431,44023793:219327 -k1,10873:14833477,44023793:219327 -k1,10873:15510901,44023793:219327 -k1,10873:16997694,44023793:219327 -k1,10873:17572882,44023793:219328 -k1,10873:20411028,44023793:219327 -k1,10873:22536142,44023793:219327 -k1,10873:24360446,44023793:219327 -k1,10873:25448125,44023793:219327 -k1,10873:27142667,44023793:219327 -k1,10873:27717854,44023793:219327 -k1,10873:30597943,44023793:219327 -k1,10873:32583029,44023793:0 -) -(1,10874:6630773,44865281:25952256,513147,134348 -k1,10873:9581361,44865281:255092 -(1,10873:9581361,44865281:0,452978,115847 -r1,10873:13456745,44865281:3875384,568825,115847 -k1,10873:9581361,44865281:-3875384 -) -(1,10873:9581361,44865281:3875384,452978,115847 -k1,10873:9581361,44865281:3277 -h1,10873:13453468,44865281:0,411205,112570 -) -k1,10873:13711836,44865281:255091 -k1,10873:15099390,44865281:255092 -k1,10873:18445815,44865281:255092 -k1,10873:19719992,44865281:255092 -k1,10873:22858012,44865281:255091 -k1,10873:24304549,44865281:255092 -k1,10873:25652126,44865281:255092 -k1,10873:26365315,44865281:255092 -k1,10873:28318444,44865281:255091 -k1,10873:29592621,44865281:255092 -k1,10873:32583029,44865281:0 -) -(1,10874:6630773,45706769:25952256,505283,7863 -g1,10873:8840647,45706769 -g1,10873:10031436,45706769 -k1,10874:32583029,45706769:19148964 -g1,10874:32583029,45706769 -) -] -(1,10876:32583029,45706769:0,0,0 -g1,10876:32583029,45706769 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,10881:3078558,51504789:16384,1179648,0 +) +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,10881:3078558,4812305:0,0,0 +(1,10881:3078558,49800853:0,16384,2228224 +g1,10881:29030814,49800853 +g1,10881:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,10881:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,10881:37855564,49800853:1179648,16384,0 +) +) +k1,10881:3078556,49800853:-34777008 +) +] +g1,10881:6630773,4812305 +g1,10881:6630773,4812305 +g1,10881:8364200,4812305 +g1,10881:12785258,4812305 +g1,10881:14347636,4812305 +g1,10881:16554232,4812305 +k1,10881:31387652,4812305:14833420 +) +) +] +[1,10881:6630773,45706769:25952256,40108032,0 +(1,10881:6630773,45706769:25952256,40108032,0 +(1,10881:6630773,45706769:0,0,0 +g1,10881:6630773,45706769 +) +[1,10881:6630773,45706769:25952256,40108032,0 +v1,10829:6630773,6254097:0,393216,0 +(1,10829:6630773,7784632:25952256,1923751,196608 +g1,10829:6630773,7784632 +g1,10829:6630773,7784632 +g1,10829:6434165,7784632 +(1,10829:6434165,7784632:0,1923751,196608 +r1,10829:32779637,7784632:26345472,2120359,196608 +k1,10829:6434165,7784632:-26345472 +) +(1,10829:6434165,7784632:26345472,1923751,196608 +[1,10829:6630773,7784632:25952256,1727143,0 +(1,10828:6630773,6445986:25952256,388497,9436 +h1,10828:6630773,6445986:0,0,0 +g1,10828:7579210,6445986 +g1,10828:8211502,6445986 +g1,10828:8527648,6445986 +g1,10828:8843794,6445986 +g1,10828:9159940,6445986 +g1,10828:9476086,6445986 +g1,10828:9792232,6445986 +g1,10828:10108378,6445986 +g1,10828:10424524,6445986 +g1,10828:10740670,6445986 +g1,10828:11056816,6445986 +g1,10828:12321399,6445986 +g1,10828:12637545,6445986 +g1,10828:12953691,6445986 +g1,10828:13269837,6445986 +g1,10828:13585983,6445986 +g1,10828:13902129,6445986 +g1,10828:14218275,6445986 +g1,10828:14534421,6445986 +g1,10828:14850567,6445986 +g1,10828:16115150,6445986 +h1,10828:18012024,6445986:0,0,0 +k1,10828:32583029,6445986:14571005 +g1,10828:32583029,6445986 +) +(1,10828:6630773,7112164:25952256,388497,9436 +h1,10828:6630773,7112164:0,0,0 +g1,10828:7579210,7112164 +g1,10828:8211502,7112164 +g1,10828:8527648,7112164 +g1,10828:8843794,7112164 +g1,10828:9159940,7112164 +g1,10828:9476086,7112164 +g1,10828:9792232,7112164 +g1,10828:10108378,7112164 +g1,10828:10424524,7112164 +g1,10828:10740670,7112164 +g1,10828:11056816,7112164 +g1,10828:12321399,7112164 +g1,10828:12637545,7112164 +g1,10828:12953691,7112164 +g1,10828:13269837,7112164 +g1,10828:13585983,7112164 +g1,10828:13902129,7112164 +g1,10828:14218275,7112164 +g1,10828:14534421,7112164 +g1,10828:14850567,7112164 +g1,10828:16115150,7112164 +h1,10828:18012024,7112164:0,0,0 +k1,10828:32583029,7112164:14571005 +g1,10828:32583029,7112164 +) +(1,10828:6630773,7778342:25952256,404226,6290 +h1,10828:6630773,7778342:0,0,0 +g1,10828:7579210,7778342 +g1,10828:8211502,7778342 +g1,10828:9476085,7778342 +g1,10828:11056814,7778342 +g1,10828:12321397,7778342 +g1,10828:13902126,7778342 +h1,10828:15166709,7778342:0,0,0 +k1,10828:32583029,7778342:17416320 +g1,10828:32583029,7778342 +) +] +) +g1,10829:32583029,7784632 +g1,10829:6630773,7784632 +g1,10829:6630773,7784632 +g1,10829:32583029,7784632 +g1,10829:32583029,7784632 +) +h1,10829:6630773,7981240:0,0,0 +v1,10833:6630773,9556549:0,393216,0 +(1,10846:6630773,14499239:25952256,5335906,196608 +g1,10846:6630773,14499239 +g1,10846:6630773,14499239 +g1,10846:6434165,14499239 +(1,10846:6434165,14499239:0,5335906,196608 +r1,10846:32779637,14499239:26345472,5532514,196608 +k1,10846:6434165,14499239:-26345472 +) +(1,10846:6434165,14499239:26345472,5335906,196608 +[1,10846:6630773,14499239:25952256,5139298,0 +(1,10835:6630773,9764167:25952256,404226,101187 +(1,10834:6630773,9764167:0,0,0 +g1,10834:6630773,9764167 +g1,10834:6630773,9764167 +g1,10834:6303093,9764167 +(1,10834:6303093,9764167:0,0,0 +) +g1,10834:6630773,9764167 +) +k1,10835:6630773,9764167:0 +g1,10835:11689104,9764167 +g1,10835:14534416,9764167 +k1,10835:14534416,9764167:0 +h1,10835:19276601,9764167:0,0,0 +k1,10835:32583029,9764167:13306428 +g1,10835:32583029,9764167 +) +(1,10845:6630773,10495881:25952256,404226,9436 +(1,10837:6630773,10495881:0,0,0 +g1,10837:6630773,10495881 +g1,10837:6630773,10495881 +g1,10837:6303093,10495881 +(1,10837:6303093,10495881:0,0,0 +) +g1,10837:6630773,10495881 +) +g1,10845:7579210,10495881 +g1,10845:8211502,10495881 +g1,10845:8843794,10495881 +g1,10845:11372960,10495881 +g1,10845:12637543,10495881 +g1,10845:13269835,10495881 +h1,10845:13585981,10495881:0,0,0 +k1,10845:32583029,10495881:18997048 +g1,10845:32583029,10495881 +) +(1,10845:6630773,11162059:25952256,404226,107478 +h1,10845:6630773,11162059:0,0,0 +g1,10845:7579210,11162059 +g1,10845:7895356,11162059 +g1,10845:8211502,11162059 +g1,10845:10740668,11162059 +g1,10845:14850562,11162059 +h1,10845:18328164,11162059:0,0,0 +k1,10845:32583029,11162059:14254865 +g1,10845:32583029,11162059 +) +(1,10845:6630773,11828237:25952256,410518,6290 +h1,10845:6630773,11828237:0,0,0 +g1,10845:7579210,11828237 +g1,10845:7895356,11828237 +g1,10845:8211502,11828237 +g1,10845:10108377,11828237 +g1,10845:10424523,11828237 +g1,10845:10740669,11828237 +g1,10845:11056815,11828237 +g1,10845:11372961,11828237 +g1,10845:11689107,11828237 +g1,10845:12005253,11828237 +g1,10845:12321399,11828237 +g1,10845:12637545,11828237 +g1,10845:12953691,11828237 +g1,10845:14850566,11828237 +g1,10845:15166712,11828237 +g1,10845:15482858,11828237 +g1,10845:15799004,11828237 +g1,10845:16115150,11828237 +g1,10845:16431296,11828237 +g1,10845:16747442,11828237 +k1,10845:16747442,11828237:0 +h1,10845:18328171,11828237:0,0,0 +k1,10845:32583029,11828237:14254858 +g1,10845:32583029,11828237 +) +(1,10845:6630773,12494415:25952256,388497,9436 +h1,10845:6630773,12494415:0,0,0 +g1,10845:7579210,12494415 +g1,10845:8211502,12494415 +g1,10845:10424522,12494415 +g1,10845:10740668,12494415 +g1,10845:11056814,12494415 +g1,10845:11372960,12494415 +g1,10845:11689106,12494415 +g1,10845:12005252,12494415 +g1,10845:12321398,12494415 +g1,10845:12637544,12494415 +g1,10845:12953690,12494415 +g1,10845:13269836,12494415 +g1,10845:13585982,12494415 +g1,10845:14850565,12494415 +g1,10845:15166711,12494415 +g1,10845:15482857,12494415 +g1,10845:15799003,12494415 +g1,10845:16115149,12494415 +g1,10845:16431295,12494415 +g1,10845:16747441,12494415 +g1,10845:17063587,12494415 +g1,10845:17379733,12494415 +h1,10845:18328170,12494415:0,0,0 +k1,10845:32583029,12494415:14254859 +g1,10845:32583029,12494415 +) +(1,10845:6630773,13160593:25952256,388497,9436 +h1,10845:6630773,13160593:0,0,0 +g1,10845:7579210,13160593 +g1,10845:8211502,13160593 +g1,10845:10424522,13160593 +g1,10845:10740668,13160593 +g1,10845:11056814,13160593 +g1,10845:11372960,13160593 +g1,10845:11689106,13160593 +g1,10845:12005252,13160593 +g1,10845:12321398,13160593 +g1,10845:12637544,13160593 +g1,10845:12953690,13160593 +g1,10845:13269836,13160593 +g1,10845:13585982,13160593 +g1,10845:14850565,13160593 +g1,10845:15166711,13160593 +g1,10845:15482857,13160593 +g1,10845:15799003,13160593 +g1,10845:16115149,13160593 +g1,10845:16431295,13160593 +g1,10845:16747441,13160593 +g1,10845:17063587,13160593 +g1,10845:17379733,13160593 +h1,10845:17695879,13160593:0,0,0 +k1,10845:32583029,13160593:14887150 +g1,10845:32583029,13160593 +) +(1,10845:6630773,13826771:25952256,388497,9436 +h1,10845:6630773,13826771:0,0,0 +g1,10845:7579210,13826771 +g1,10845:8211502,13826771 +g1,10845:10424522,13826771 +g1,10845:10740668,13826771 +g1,10845:11056814,13826771 +g1,10845:11372960,13826771 +g1,10845:11689106,13826771 +g1,10845:12005252,13826771 +g1,10845:12321398,13826771 +g1,10845:12637544,13826771 +g1,10845:12953690,13826771 +g1,10845:13269836,13826771 +g1,10845:13585982,13826771 +g1,10845:14850565,13826771 +g1,10845:15166711,13826771 +g1,10845:15482857,13826771 +g1,10845:15799003,13826771 +g1,10845:16115149,13826771 +g1,10845:16431295,13826771 +g1,10845:16747441,13826771 +g1,10845:17063587,13826771 +g1,10845:17379733,13826771 +h1,10845:18328170,13826771:0,0,0 +k1,10845:32583029,13826771:14254859 +g1,10845:32583029,13826771 +) +(1,10845:6630773,14492949:25952256,404226,6290 +h1,10845:6630773,14492949:0,0,0 +g1,10845:7579210,14492949 +g1,10845:8211502,14492949 +g1,10845:9476085,14492949 +g1,10845:11056814,14492949 +g1,10845:12321397,14492949 +g1,10845:13902126,14492949 +h1,10845:15166709,14492949:0,0,0 +k1,10845:32583029,14492949:17416320 +g1,10845:32583029,14492949 +) +] +) +g1,10846:32583029,14499239 +g1,10846:6630773,14499239 +g1,10846:6630773,14499239 +g1,10846:32583029,14499239 +g1,10846:32583029,14499239 +) +h1,10846:6630773,14695847:0,0,0 +(1,10850:6630773,15991901:25952256,505283,126483 +h1,10849:6630773,15991901:983040,0,0 +k1,10849:10676951,15991901:273270 +(1,10849:10676951,15991901:0,452978,115847 +r1,10849:13497200,15991901:2820249,568825,115847 +k1,10849:10676951,15991901:-2820249 +) +(1,10849:10676951,15991901:2820249,452978,115847 +k1,10849:10676951,15991901:3277 +h1,10849:13493923,15991901:0,411205,112570 +) +k1,10849:13770471,15991901:273271 +k1,10849:15148023,15991901:273270 +k1,10849:16169060,15991901:273271 +k1,10849:17955556,15991901:273270 +k1,10849:18880254,15991901:273270 +k1,10849:21527239,15991901:273271 +k1,10849:24687370,15991901:273270 +k1,10849:27565697,15991901:273271 +k1,10849:29272895,15991901:273270 +k1,10849:29960934,15991901:273196 +k1,10849:32583029,15991901:0 +) +(1,10850:6630773,16833389:25952256,513147,115847 +k1,10849:7925646,16833389:275788 +k1,10849:9293918,16833389:275787 +k1,10849:10228998,16833389:275788 +k1,10849:11971482,16833389:275788 +(1,10849:11971482,16833389:0,452978,115847 +r1,10849:14440019,16833389:2468537,568825,115847 +k1,10849:11971482,16833389:-2468537 +) +(1,10849:11971482,16833389:2468537,452978,115847 +k1,10849:11971482,16833389:3277 +h1,10849:14436742,16833389:0,411205,112570 +) +k1,10849:14715807,16833389:275788 +k1,10849:16183039,16833389:275787 +(1,10849:16183039,16833389:0,452978,115847 +r1,10849:19354999,16833389:3171960,568825,115847 +k1,10849:16183039,16833389:-3171960 +) +(1,10849:16183039,16833389:3171960,452978,115847 +k1,10849:16183039,16833389:3277 +h1,10849:19351722,16833389:0,411205,112570 +) +k1,10849:19630787,16833389:275788 +k1,10849:21098020,16833389:275788 +k1,10849:22170726,16833389:275788 +k1,10849:23580286,16833389:275787 +k1,10849:25352261,16833389:275788 +k1,10849:26279477,16833389:275788 +k1,10849:28536418,16833389:275788 +k1,10849:30095400,16833389:275787 +k1,10849:31562633,16833389:275788 +k1,10849:32583029,16833389:0 +) +(1,10850:6630773,17674877:25952256,513147,134348 +k1,10849:9223478,17674877:350718 +k1,10849:10392086,17674877:350719 +k1,10849:12818329,17674877:350718 +k1,10849:15211149,17674877:350718 +k1,10849:16580953,17674877:350719 +k1,10849:19015716,17674877:350718 +k1,10849:20314085,17674877:350718 +k1,10849:22116426,17674877:350719 +k1,10849:24850033,17674877:350718 +k1,10849:26938766,17674877:350718 +k1,10849:27940913,17674877:350719 +k1,10849:29039397,17674877:350718 +k1,10849:32051532,17674877:350718 +k1,10850:32583029,17674877:0 +) +(1,10850:6630773,18516365:25952256,505283,134348 +(1,10849:6630773,18516365:0,452978,115847 +r1,10849:14726699,18516365:8095926,568825,115847 +k1,10849:6630773,18516365:-8095926 +) +(1,10849:6630773,18516365:8095926,452978,115847 +g1,10849:8392609,18516365 +g1,10849:10502880,18516365 +g1,10849:11206304,18516365 +g1,10849:12964863,18516365 +h1,10849:14723422,18516365:0,411205,112570 +) +k1,10849:15173988,18516365:273619 +k1,10849:16644293,18516365:273618 +k1,10849:18090351,18516365:273619 +k1,10849:20432285,18516365:273618 +k1,10849:21810186,18516365:273619 +k1,10849:22831570,18516365:273618 +k1,10849:24799950,18516365:273619 +k1,10849:26929548,18516365:273618 +k1,10849:27889329,18516365:273619 +k1,10849:29554932,18516365:273618 +k1,10849:31896867,18516365:273619 +k1,10849:32583029,18516365:0 +) +(1,10850:6630773,19357853:25952256,505283,134348 +g1,10849:8698433,19357853 +g1,10849:9580547,19357853 +g1,10849:10465938,19357853 +g1,10849:13639846,19357853 +k1,10850:32583029,19357853:16573401 +g1,10850:32583029,19357853 +) +v1,10852:6630773,20478597:0,393216,0 +(1,10865:6630773,25424433:25952256,5339052,196608 +g1,10865:6630773,25424433 +g1,10865:6630773,25424433 +g1,10865:6434165,25424433 +(1,10865:6434165,25424433:0,5339052,196608 +r1,10865:32779637,25424433:26345472,5535660,196608 +k1,10865:6434165,25424433:-26345472 +) +(1,10865:6434165,25424433:26345472,5339052,196608 +[1,10865:6630773,25424433:25952256,5142444,0 +(1,10854:6630773,20686215:25952256,404226,107478 +(1,10853:6630773,20686215:0,0,0 +g1,10853:6630773,20686215 +g1,10853:6630773,20686215 +g1,10853:6303093,20686215 +(1,10853:6303093,20686215:0,0,0 +) +g1,10853:6630773,20686215 +) +k1,10854:6630773,20686215:0 +g1,10854:13269833,20686215 +g1,10854:14534416,20686215 +g1,10854:15166708,20686215 +h1,10854:18328165,20686215:0,0,0 +k1,10854:32583029,20686215:14254864 +g1,10854:32583029,20686215 +) +(1,10864:6630773,21417929:25952256,404226,9436 +(1,10856:6630773,21417929:0,0,0 +g1,10856:6630773,21417929 +g1,10856:6630773,21417929 +g1,10856:6303093,21417929 +(1,10856:6303093,21417929:0,0,0 +) +g1,10856:6630773,21417929 +) +g1,10864:7579210,21417929 +g1,10864:8211502,21417929 +g1,10864:8843794,21417929 +g1,10864:11372960,21417929 +g1,10864:12637543,21417929 +g1,10864:13269835,21417929 +h1,10864:13585981,21417929:0,0,0 +k1,10864:32583029,21417929:18997048 +g1,10864:32583029,21417929 +) +(1,10864:6630773,22084107:25952256,404226,101187 +h1,10864:6630773,22084107:0,0,0 +g1,10864:7579210,22084107 +g1,10864:7895356,22084107 +g1,10864:8211502,22084107 +g1,10864:10740668,22084107 +g1,10864:12321397,22084107 +g1,10864:12637543,22084107 +g1,10864:12953689,22084107 +g1,10864:13269835,22084107 +g1,10864:13585981,22084107 +g1,10864:13902127,22084107 +g1,10864:14218273,22084107 +g1,10864:14534419,22084107 +g1,10864:14850565,22084107 +g1,10864:15166711,22084107 +g1,10864:15482857,22084107 +g1,10864:16747440,22084107 +g1,10864:20225043,22084107 +h1,10864:22754208,22084107:0,0,0 +k1,10864:32583029,22084107:9828821 +g1,10864:32583029,22084107 +) +(1,10864:6630773,22750285:25952256,410518,6290 +h1,10864:6630773,22750285:0,0,0 +g1,10864:7579210,22750285 +g1,10864:7895356,22750285 +g1,10864:8211502,22750285 +g1,10864:10108377,22750285 +g1,10864:10424523,22750285 +g1,10864:10740669,22750285 +g1,10864:12637544,22750285 +g1,10864:12953690,22750285 +g1,10864:13269836,22750285 +g1,10864:13585982,22750285 +g1,10864:13902128,22750285 +g1,10864:14218274,22750285 +g1,10864:14534420,22750285 +g1,10864:14850566,22750285 +g1,10864:16747441,22750285 +g1,10864:18644316,22750285 +g1,10864:18960462,22750285 +g1,10864:19276608,22750285 +g1,10864:19592754,22750285 +g1,10864:19908900,22750285 +g1,10864:20225046,22750285 +k1,10864:20225046,22750285:0 +h1,10864:21805775,22750285:0,0,0 +k1,10864:32583029,22750285:10777254 +g1,10864:32583029,22750285 +) +(1,10864:6630773,23416463:25952256,404226,107478 +h1,10864:6630773,23416463:0,0,0 +g1,10864:7579210,23416463 +g1,10864:8211502,23416463 +g1,10864:10424522,23416463 +g1,10864:10740668,23416463 +g1,10864:14850562,23416463 +g1,10864:15166708,23416463 +g1,10864:15482854,23416463 +g1,10864:16747437,23416463 +g1,10864:18644311,23416463 +g1,10864:18960457,23416463 +g1,10864:19276603,23416463 +g1,10864:19592749,23416463 +g1,10864:19908895,23416463 +g1,10864:20225041,23416463 +h1,10864:22121915,23416463:0,0,0 +k1,10864:32583029,23416463:10461114 +g1,10864:32583029,23416463 +) +(1,10864:6630773,24082641:25952256,404226,107478 +h1,10864:6630773,24082641:0,0,0 +g1,10864:7579210,24082641 +g1,10864:8211502,24082641 +g1,10864:10424522,24082641 +g1,10864:10740668,24082641 +g1,10864:14850562,24082641 +g1,10864:15166708,24082641 +g1,10864:15482854,24082641 +g1,10864:16747437,24082641 +g1,10864:18644311,24082641 +g1,10864:18960457,24082641 +g1,10864:19276603,24082641 +g1,10864:19592749,24082641 +g1,10864:19908895,24082641 +g1,10864:20225041,24082641 +h1,10864:22121915,24082641:0,0,0 +k1,10864:32583029,24082641:10461114 +g1,10864:32583029,24082641 +) +(1,10864:6630773,24748819:25952256,404226,107478 +h1,10864:6630773,24748819:0,0,0 +g1,10864:7579210,24748819 +g1,10864:8211502,24748819 +g1,10864:10424522,24748819 +g1,10864:10740668,24748819 +g1,10864:14850562,24748819 +g1,10864:15166708,24748819 +g1,10864:15482854,24748819 +g1,10864:16747437,24748819 +g1,10864:18644311,24748819 +g1,10864:18960457,24748819 +g1,10864:19276603,24748819 +g1,10864:19592749,24748819 +g1,10864:19908895,24748819 +g1,10864:20225041,24748819 +h1,10864:22121915,24748819:0,0,0 +k1,10864:32583029,24748819:10461114 +g1,10864:32583029,24748819 +) +(1,10864:6630773,25414997:25952256,404226,9436 +h1,10864:6630773,25414997:0,0,0 +g1,10864:7579210,25414997 +g1,10864:8211502,25414997 +g1,10864:9476085,25414997 +g1,10864:11056814,25414997 +g1,10864:12321397,25414997 +g1,10864:13902126,25414997 +h1,10864:15166709,25414997:0,0,0 +k1,10864:32583029,25414997:17416320 +g1,10864:32583029,25414997 +) +] +) +g1,10865:32583029,25424433 +g1,10865:6630773,25424433 +g1,10865:6630773,25424433 +g1,10865:32583029,25424433 +g1,10865:32583029,25424433 +) +h1,10865:6630773,25621041:0,0,0 +(1,10869:6630773,28166867:25952256,555811,139132 +(1,10869:6630773,28166867:2450326,534184,12975 +g1,10869:6630773,28166867 +g1,10869:9081099,28166867 +) +g1,10869:13428102,28166867 +k1,10869:32583029,28166867:13965917 +g1,10869:32583029,28166867 +) +(1,10873:6630773,29401571:25952256,513147,134348 +k1,10872:9444293,29401571:209119 +k1,10872:12862711,29401571:209120 +k1,10872:16146124,29401571:209119 +k1,10872:16886740,29401571:209119 +k1,10872:17747288,29401571:209120 +k1,10872:21524187,29401571:209119 +k1,10872:24917046,29401571:209120 +k1,10872:25887693,29401571:209119 +k1,10872:28319793,29401571:209119 +k1,10872:29188205,29401571:209120 +k1,10872:31105192,29401571:209119 +k1,10873:32583029,29401571:0 +) +(1,10873:6630773,30243059:25952256,513147,134348 +k1,10872:8347395,30243059:166040 +k1,10872:9164863,30243059:166040 +k1,10872:10764831,30243059:166040 +k1,10872:11519384,30243059:166040 +k1,10872:12704509,30243059:166040 +k1,10872:15773139,30243059:166040 +k1,10872:16598471,30243059:166040 +k1,10872:18153875,30243059:166041 +k1,10872:22749493,30243059:166040 +k1,10872:24660101,30243059:166040 +k1,10872:26029382,30243059:166040 +k1,10872:29269716,30243059:166040 +k1,10872:30051794,30243059:166040 +k1,10872:31563944,30243059:166040 +k1,10872:32583029,30243059:0 +) +(1,10873:6630773,31084547:25952256,513147,134348 +k1,10872:8967132,31084547:154665 +k1,10872:9781088,31084547:154664 +k1,10872:10954838,31084547:154665 +k1,10872:14166102,31084547:154665 +k1,10872:15512212,31084547:154665 +k1,10872:16685961,31084547:154664 +k1,10872:20312068,31084547:154665 +k1,10872:21126025,31084547:154665 +k1,10872:24962503,31084547:154665 +k1,10872:26498011,31084547:154664 +k1,10872:29739422,31084547:154665 +k1,10872:30913172,31084547:154665 +k1,10872:32583029,31084547:0 +) +(1,10873:6630773,31926035:25952256,505283,134348 +k1,10872:9145866,31926035:156452 +k1,10872:9760415,31926035:156452 +k1,10872:11567064,31926035:156452 +k1,10872:13524445,31926035:156452 +k1,10872:18654424,31926035:156452 +k1,10872:20508915,31926035:156453 +k1,10872:22400760,31926035:156452 +k1,10872:24277532,31926035:156452 +k1,10872:27615102,31926035:156452 +k1,10872:28422982,31926035:156452 +k1,10872:29598519,31926035:156452 +k1,10872:32583029,31926035:0 +) +(1,10873:6630773,32767523:25952256,513147,122846 +k1,10872:7514786,32767523:224721 +k1,10872:9173436,32767523:224722 +k1,10872:9812974,32767523:224695 +(1,10872:9812974,32767523:0,452978,122846 +r1,10872:13688358,32767523:3875384,575824,122846 +k1,10872:9812974,32767523:-3875384 +) +(1,10872:9812974,32767523:3875384,452978,122846 +k1,10872:9812974,32767523:3277 +h1,10872:13685081,32767523:0,411205,112570 +) +k1,10872:14086750,32767523:224722 +k1,10872:15502916,32767523:224721 +k1,10872:16185735,32767523:224722 +k1,10872:17696272,32767523:224721 +k1,10872:19967027,32767523:224721 +k1,10872:20649846,32767523:224722 +k1,10872:22744965,32767523:224721 +k1,10872:23621114,32767523:224721 +k1,10872:27413616,32767523:224722 +k1,10872:29869838,32767523:224721 +k1,10872:32583029,32767523:0 +) +(1,10873:6630773,33609011:25952256,505283,134348 +g1,10872:7446040,33609011 +g1,10872:8001129,33609011 +g1,10872:10073377,33609011 +k1,10873:32583029,33609011:19261688 +g1,10873:32583029,33609011 +) +v1,10875:6630773,34905064:0,393216,0 +(1,10876:6630773,41270213:25952256,6758365,616038 +g1,10876:6630773,41270213 +(1,10876:6630773,41270213:25952256,6758365,616038 +(1,10876:6630773,41886251:25952256,7374403,0 +[1,10876:6630773,41886251:25952256,7374403,0 +(1,10876:6630773,41860037:25952256,7321975,0 +r1,10876:6656987,41860037:26214,7321975,0 +[1,10876:6656987,41860037:25899828,7321975,0 +(1,10876:6656987,41270213:25899828,6142327,0 +[1,10876:7246811,41270213:24720180,6142327,0 +(1,10876:7246811,36213422:24720180,1085536,298548 +(1,10875:7246811,36213422:0,1085536,298548 +r1,10876:8753226,36213422:1506415,1384084,298548 +k1,10875:7246811,36213422:-1506415 +) +(1,10875:7246811,36213422:1506415,1085536,298548 +) +k1,10875:8901449,36213422:148223 +k1,10875:9519566,36213422:148224 +k1,10875:10199286,36213422:148223 +k1,10875:13556808,36213422:148224 +k1,10875:14356459,36213422:148223 +k1,10875:15252449,36213422:148224 +k1,10875:17269103,36213422:148223 +k1,10875:18701832,36213422:148223 +k1,10875:21732985,36213422:148224 +k1,10875:22412705,36213422:148223 +k1,10875:25928824,36213422:148224 +k1,10875:27268492,36213422:148223 +k1,10875:28753650,36213422:148224 +k1,10875:30187689,36213422:148223 +k1,10875:31966991,36213422:0 +) +(1,10876:7246811,37054910:24720180,513147,126483 +k1,10875:9176759,37054910:227978 +k1,10875:12809332,37054910:227978 +k1,10875:13846680,37054910:227978 +k1,10875:15093742,37054910:227977 +k1,10875:16975193,37054910:227978 +k1,10875:18592534,37054910:227978 +k1,10875:20696808,37054910:227978 +k1,10875:21607671,37054910:227978 +k1,10875:23647064,37054910:227978 +k1,10875:24341003,37054910:227978 +k1,10875:25027078,37054910:227978 +k1,10875:25786552,37054910:227977 +k1,10875:27825945,37054910:227978 +k1,10875:28736808,37054910:227978 +k1,10875:30775546,37054910:227978 +k1,10875:31966991,37054910:0 +) +(1,10876:7246811,37896398:24720180,513147,134348 +k1,10875:9813365,37896398:243958 +k1,10875:13045764,37896398:243957 +k1,10875:13821219,37896398:243958 +k1,10875:16723972,37896398:243957 +k1,10875:17619358,37896398:243958 +k1,10875:19574461,37896398:243958 +k1,10875:21889356,37896398:243957 +k1,10875:23080965,37896398:243958 +k1,10875:24113320,37896398:243957 +k1,10875:25656857,37896398:243958 +k1,10875:28001898,37896398:243957 +k1,10875:29437301,37896398:243958 +k1,10875:31966991,37896398:0 +) +(1,10876:7246811,38737886:24720180,513147,134348 +k1,10875:8107462,38737886:201359 +k1,10875:9512063,38737886:201360 +k1,10875:10817704,38737886:201359 +k1,10875:12348133,38737886:201359 +k1,10875:13200921,38737886:201360 +k1,10875:16622719,38737886:201359 +k1,10875:18015523,38737886:201359 +k1,10875:21481231,38737886:201360 +k1,10875:23855764,38737886:201359 +k1,10875:25624744,38737886:201359 +k1,10875:29801518,38737886:201360 +k1,10875:30900720,38737886:201359 +k1,10875:31966991,38737886:0 +) +(1,10876:7246811,39579374:24720180,513147,134348 +k1,10875:8899356,39579374:261871 +k1,10875:11821988,39579374:261870 +k1,10875:14225576,39579374:261871 +k1,10875:15170332,39579374:261871 +k1,10875:16821565,39579374:261870 +k1,10875:19463704,39579374:261871 +k1,10875:20917020,39579374:261871 +k1,10875:23308155,39579374:261870 +k1,10875:25285759,39579374:261871 +k1,10875:26928474,39579374:261871 +k1,10875:28474850,39579374:261870 +k1,10875:30775546,39579374:261871 +k1,10875:31966991,39579374:0 +) +(1,10876:7246811,40420862:24720180,513147,134348 +k1,10875:10162132,40420862:252593 +k1,10875:11027487,40420862:252593 +k1,10875:12299166,40420862:252594 +k1,10875:14090544,40420862:252593 +k1,10875:15534582,40420862:252593 +k1,10875:16806260,40420862:252593 +k1,10875:17718146,40420862:252594 +k1,10875:18326599,40420862:252593 +k1,10875:20142881,40420862:252593 +k1,10875:21387034,40420862:252593 +k1,10875:22705898,40420862:252593 +k1,10875:25792924,40420862:252594 +k1,10875:26807045,40420862:252593 +k1,10875:28795031,40420862:252593 +(1,10875:28795031,40420862:0,452978,122846 +r1,10876:31966991,40420862:3171960,575824,122846 +k1,10875:28795031,40420862:-3171960 +) +(1,10875:28795031,40420862:3171960,452978,122846 +k1,10875:28795031,40420862:3277 +h1,10875:31963714,40420862:0,411205,112570 +) +k1,10875:31966991,40420862:0 +) +(1,10876:7246811,41262350:24720180,505283,7863 +g1,10875:9144078,41262350 +k1,10876:31966992,41262350:20350896 +g1,10876:31966992,41262350 +) +] +) +] +r1,10876:32583029,41860037:26214,7321975,0 +) +] +) +) +g1,10876:32583029,41270213 +) +h1,10876:6630773,41886251:0,0,0 +(1,10879:6630773,43182305:25952256,513147,134348 +h1,10878:6630773,43182305:983040,0,0 +k1,10878:8980732,43182305:170232 +k1,10878:10457097,43182305:170232 +k1,10878:11982614,43182305:170232 +k1,10878:12684343,43182305:170232 +k1,10878:13506003,43182305:170232 +k1,10878:14768720,43182305:170232 +(1,10878:14768720,43182305:0,452978,122846 +r1,10878:18292392,43182305:3523672,575824,122846 +k1,10878:14768720,43182305:-3523672 +) +(1,10878:14768720,43182305:3523672,452978,122846 +k1,10878:14768720,43182305:3277 +h1,10878:18289115,43182305:0,411205,112570 +) +k1,10878:18462624,43182305:170232 +k1,10878:19284284,43182305:170232 +k1,10878:21041798,43182305:170232 +k1,10878:21567890,43182305:170232 +k1,10878:23549537,43182305:170232 +k1,10878:25113720,43182305:170232 +k1,10878:26303037,43182305:170232 +k1,10878:29529868,43182305:170232 +k1,10878:30653649,43182305:170232 +k1,10878:32583029,43182305:0 +) +(1,10879:6630773,44023793:25952256,505283,134348 +k1,10878:7205960,44023793:219327 +k1,10878:9157404,44023793:219327 +k1,10878:10568176,44023793:219327 +k1,10878:12221431,44023793:219327 +k1,10878:14833477,44023793:219327 +k1,10878:15510901,44023793:219327 +k1,10878:16997694,44023793:219327 +k1,10878:17572882,44023793:219328 +k1,10878:20411028,44023793:219327 +k1,10878:22536142,44023793:219327 +k1,10878:24360446,44023793:219327 +k1,10878:25448125,44023793:219327 +k1,10878:27142667,44023793:219327 +k1,10878:27717854,44023793:219327 +k1,10878:30597943,44023793:219327 +k1,10878:32583029,44023793:0 +) +(1,10879:6630773,44865281:25952256,513147,134348 +k1,10878:9581361,44865281:255092 +(1,10878:9581361,44865281:0,452978,115847 +r1,10878:13456745,44865281:3875384,568825,115847 +k1,10878:9581361,44865281:-3875384 +) +(1,10878:9581361,44865281:3875384,452978,115847 +k1,10878:9581361,44865281:3277 +h1,10878:13453468,44865281:0,411205,112570 +) +k1,10878:13711836,44865281:255091 +k1,10878:15099390,44865281:255092 +k1,10878:18445815,44865281:255092 +k1,10878:19719992,44865281:255092 +k1,10878:22858012,44865281:255091 +k1,10878:24304549,44865281:255092 +k1,10878:25652126,44865281:255092 +k1,10878:26365315,44865281:255092 +k1,10878:28318444,44865281:255091 +k1,10878:29592621,44865281:255092 +k1,10878:32583029,44865281:0 +) +(1,10879:6630773,45706769:25952256,505283,7863 +g1,10878:8840647,45706769 +g1,10878:10031436,45706769 +k1,10879:32583029,45706769:19148964 +g1,10879:32583029,45706769 +) +] +(1,10881:32583029,45706769:0,0,0 +g1,10881:32583029,45706769 ) ) -] -(1,10876:6630773,47279633:25952256,0,0 -h1,10876:6630773,47279633:25952256,0,0 +] +(1,10881:6630773,47279633:25952256,0,0 +h1,10881:6630773,47279633:25952256,0,0 ) -] -h1,10876:4262630,4025873:0,0,0 -] -!29099 +] +h1,10881:4262630,4025873:0,0,0 +] +!29065 }204 -Input:1388:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1389:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1390:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1391:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1392:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1393:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1394:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1395:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1396:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1397:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1398:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1399:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1044 +Input:1384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1116 {205 -[1,11012:4262630,47279633:28320399,43253760,0 -(1,11012:4262630,4025873:0,0,0 -[1,11012:-473657,4025873:25952256,0,0 -(1,11012:-473657,-710414:25952256,0,0 -h1,11012:-473657,-710414:0,0,0 -(1,11012:-473657,-710414:0,0,0 -(1,11012:-473657,-710414:0,0,0 -g1,11012:-473657,-710414 -(1,11012:-473657,-710414:65781,0,65781 -g1,11012:-407876,-710414 -[1,11012:-407876,-644633:0,0,0 +[1,11017:4262630,47279633:28320399,43253760,0 +(1,11017:4262630,4025873:0,0,0 +[1,11017:-473657,4025873:25952256,0,0 +(1,11017:-473657,-710414:25952256,0,0 +h1,11017:-473657,-710414:0,0,0 +(1,11017:-473657,-710414:0,0,0 +(1,11017:-473657,-710414:0,0,0 +g1,11017:-473657,-710414 +(1,11017:-473657,-710414:65781,0,65781 +g1,11017:-407876,-710414 +[1,11017:-407876,-644633:0,0,0 ] ) -k1,11012:-473657,-710414:-65781 +k1,11017:-473657,-710414:-65781 ) ) -k1,11012:25478599,-710414:25952256 -g1,11012:25478599,-710414 +k1,11017:25478599,-710414:25952256 +g1,11017:25478599,-710414 ) ] ) -[1,11012:6630773,47279633:25952256,43253760,0 -[1,11012:6630773,4812305:25952256,786432,0 -(1,11012:6630773,4812305:25952256,513147,134348 -(1,11012:6630773,4812305:25952256,513147,134348 -g1,11012:3078558,4812305 -[1,11012:3078558,4812305:0,0,0 -(1,11012:3078558,2439708:0,1703936,0 -k1,11012:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,11012:2537886,2439708:1179648,16384,0 +[1,11017:6630773,47279633:25952256,43253760,0 +[1,11017:6630773,4812305:25952256,786432,0 +(1,11017:6630773,4812305:25952256,513147,134348 +(1,11017:6630773,4812305:25952256,513147,134348 +g1,11017:3078558,4812305 +[1,11017:3078558,4812305:0,0,0 +(1,11017:3078558,2439708:0,1703936,0 +k1,11017:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,11017:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,11012:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,11017:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,11012:3078558,4812305:0,0,0 -(1,11012:3078558,2439708:0,1703936,0 -g1,11012:29030814,2439708 -g1,11012:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,11012:36151628,1915420:16384,1179648,0 +[1,11017:3078558,4812305:0,0,0 +(1,11017:3078558,2439708:0,1703936,0 +g1,11017:29030814,2439708 +g1,11017:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,11017:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,11012:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,11017:37855564,2439708:1179648,16384,0 ) ) -k1,11012:3078556,2439708:-34777008 +k1,11017:3078556,2439708:-34777008 ) ] -[1,11012:3078558,4812305:0,0,0 -(1,11012:3078558,49800853:0,16384,2228224 -k1,11012:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,11012:2537886,49800853:1179648,16384,0 +[1,11017:3078558,4812305:0,0,0 +(1,11017:3078558,49800853:0,16384,2228224 +k1,11017:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,11017:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,11012:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,11017:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,11012:3078558,4812305:0,0,0 -(1,11012:3078558,49800853:0,16384,2228224 -g1,11012:29030814,49800853 -g1,11012:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,11012:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +[1,11017:3078558,4812305:0,0,0 +(1,11017:3078558,49800853:0,16384,2228224 +g1,11017:29030814,49800853 +g1,11017:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,11017:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,11012:37855564,49800853:1179648,16384,0 -) -) -k1,11012:3078556,49800853:-34777008 -) -] -g1,11012:6630773,4812305 -k1,11012:25241686,4812305:17415536 -g1,11012:26807341,4812305 -g1,11012:30339731,4812305 -g1,11012:31154998,4812305 -) -) -] -[1,11012:6630773,45706769:25952256,40108032,0 -(1,11012:6630773,45706769:25952256,40108032,0 -(1,11012:6630773,45706769:0,0,0 -g1,11012:6630773,45706769 -) -[1,11012:6630773,45706769:25952256,40108032,0 -v1,10876:6630773,6254097:0,393216,0 -(1,10893:6630773,13864645:25952256,8003764,196608 -g1,10893:6630773,13864645 -g1,10893:6630773,13864645 -g1,10893:6434165,13864645 -(1,10893:6434165,13864645:0,8003764,196608 -r1,10893:32779637,13864645:26345472,8200372,196608 -k1,10893:6434165,13864645:-26345472 -) -(1,10893:6434165,13864645:26345472,8003764,196608 -[1,10893:6630773,13864645:25952256,7807156,0 -(1,10878:6630773,6461715:25952256,404226,101187 -(1,10877:6630773,6461715:0,0,0 -g1,10877:6630773,6461715 -g1,10877:6630773,6461715 -g1,10877:6303093,6461715 -(1,10877:6303093,6461715:0,0,0 -) -g1,10877:6630773,6461715 -) -k1,10878:6630773,6461715:0 -g1,10878:11372959,6461715 -g1,10878:12005251,6461715 -g1,10878:13585981,6461715 -g1,10878:16115147,6461715 -g1,10878:16747439,6461715 -g1,10878:22438063,6461715 -g1,10878:23702646,6461715 -k1,10878:23702646,6461715:0 -h1,10878:24967228,6461715:0,0,0 -k1,10878:32583029,6461715:7615801 -g1,10878:32583029,6461715 -) -(1,10879:6630773,7127893:25952256,404226,107478 -h1,10879:6630773,7127893:0,0,0 -g1,10879:6946919,7127893 -g1,10879:7263065,7127893 -g1,10879:11056813,7127893 -g1,10879:13902124,7127893 -k1,10879:13902124,7127893:0 -h1,10879:15166706,7127893:0,0,0 -k1,10879:32583030,7127893:17416324 -g1,10879:32583030,7127893 -) -(1,10880:6630773,7794071:25952256,404226,82312 -h1,10880:6630773,7794071:0,0,0 -g1,10880:6946919,7794071 -g1,10880:7263065,7794071 -k1,10880:7263065,7794071:0 -h1,10880:11056813,7794071:0,0,0 -k1,10880:32583029,7794071:21526216 -g1,10880:32583029,7794071 -) -(1,10881:6630773,8460249:25952256,404226,82312 -h1,10881:6630773,8460249:0,0,0 -g1,10881:6946919,8460249 -g1,10881:7263065,8460249 -g1,10881:7579211,8460249 -g1,10881:7895357,8460249 -g1,10881:8211503,8460249 -g1,10881:8527649,8460249 -g1,10881:8843795,8460249 -g1,10881:9159941,8460249 -g1,10881:9476087,8460249 -g1,10881:9792233,8460249 -g1,10881:10108379,8460249 -g1,10881:10424525,8460249 -g1,10881:14534419,8460249 -g1,10881:15166711,8460249 -k1,10881:15166711,8460249:0 -h1,10881:19592751,8460249:0,0,0 -k1,10881:32583029,8460249:12990278 -g1,10881:32583029,8460249 -) -(1,10882:6630773,9126427:25952256,404226,82312 -h1,10882:6630773,9126427:0,0,0 -g1,10882:6946919,9126427 -g1,10882:7263065,9126427 -g1,10882:7579211,9126427 -g1,10882:7895357,9126427 -g1,10882:8211503,9126427 -g1,10882:8527649,9126427 -g1,10882:8843795,9126427 -g1,10882:9159941,9126427 -g1,10882:9476087,9126427 -g1,10882:9792233,9126427 -g1,10882:10108379,9126427 -g1,10882:10424525,9126427 -g1,10882:15166711,9126427 -g1,10882:15799003,9126427 -k1,10882:15799003,9126427:0 -h1,10882:20857334,9126427:0,0,0 -k1,10882:32583029,9126427:11725695 -g1,10882:32583029,9126427 -) -(1,10883:6630773,9792605:25952256,404226,76021 -h1,10883:6630773,9792605:0,0,0 -g1,10883:6946919,9792605 -g1,10883:7263065,9792605 -g1,10883:7579211,9792605 -g1,10883:7895357,9792605 -g1,10883:8211503,9792605 -g1,10883:8527649,9792605 -g1,10883:8843795,9792605 -g1,10883:9159941,9792605 -g1,10883:9476087,9792605 -g1,10883:9792233,9792605 -g1,10883:10108379,9792605 -g1,10883:10424525,9792605 -g1,10883:11056817,9792605 -g1,10883:11689109,9792605 -k1,10883:11689109,9792605:0 -h1,10883:12953692,9792605:0,0,0 -k1,10883:32583028,9792605:19629336 -g1,10883:32583028,9792605 -) -(1,10892:6630773,10524319:25952256,404226,9436 -(1,10885:6630773,10524319:0,0,0 -g1,10885:6630773,10524319 -g1,10885:6630773,10524319 -g1,10885:6303093,10524319 -(1,10885:6303093,10524319:0,0,0 -) -g1,10885:6630773,10524319 -) -g1,10892:7579210,10524319 -g1,10892:8211502,10524319 -g1,10892:8843794,10524319 -g1,10892:11372960,10524319 -g1,10892:12005252,10524319 -g1,10892:12637544,10524319 -h1,10892:12953690,10524319:0,0,0 -k1,10892:32583030,10524319:19629340 -g1,10892:32583030,10524319 -) -(1,10892:6630773,11190497:25952256,404226,50331 -h1,10892:6630773,11190497:0,0,0 -g1,10892:7579210,11190497 -g1,10892:7895356,11190497 -g1,10892:8211502,11190497 -g1,10892:10740668,11190497 -g1,10892:14850562,11190497 -g1,10892:19592748,11190497 -g1,10892:19908894,11190497 -g1,10892:20225040,11190497 -g1,10892:20541186,11190497 -g1,10892:20857332,11190497 -h1,10892:21173478,11190497:0,0,0 -k1,10892:32583029,11190497:11409551 -g1,10892:32583029,11190497 -) -(1,10892:6630773,11856675:25952256,404226,6290 -h1,10892:6630773,11856675:0,0,0 -g1,10892:7579210,11856675 -g1,10892:7895356,11856675 -g1,10892:8211502,11856675 -g1,10892:10108377,11856675 -g1,10892:10424523,11856675 -g1,10892:10740669,11856675 -g1,10892:11056815,11856675 -g1,10892:11372961,11856675 -g1,10892:11689107,11856675 -g1,10892:12005253,11856675 -g1,10892:12321399,11856675 -g1,10892:12637545,11856675 -g1,10892:12953691,11856675 -g1,10892:14850566,11856675 -g1,10892:15166712,11856675 -g1,10892:15482858,11856675 -g1,10892:15799004,11856675 -g1,10892:16115150,11856675 -g1,10892:16431296,11856675 -g1,10892:16747442,11856675 -g1,10892:17063588,11856675 -g1,10892:17379734,11856675 -g1,10892:17695880,11856675 -g1,10892:19592755,11856675 -k1,10892:19592755,11856675:0 -h1,10892:21173484,11856675:0,0,0 -k1,10892:32583029,11856675:11409545 -g1,10892:32583029,11856675 -) -(1,10892:6630773,12522853:25952256,388497,9436 -h1,10892:6630773,12522853:0,0,0 -g1,10892:7579210,12522853 -g1,10892:8211502,12522853 -g1,10892:8843794,12522853 -g1,10892:9159940,12522853 -g1,10892:9476086,12522853 -g1,10892:9792232,12522853 -g1,10892:10108378,12522853 -g1,10892:10424524,12522853 -g1,10892:10740670,12522853 -g1,10892:11056816,12522853 -g1,10892:11372962,12522853 -g1,10892:11689108,12522853 -g1,10892:12005254,12522853 -g1,10892:12321400,12522853 -g1,10892:12637546,12522853 -g1,10892:12953692,12522853 -g1,10892:13269838,12522853 -g1,10892:13585984,12522853 -g1,10892:13902130,12522853 -g1,10892:14218276,12522853 -g1,10892:14850568,12522853 -g1,10892:15166714,12522853 -g1,10892:15482860,12522853 -g1,10892:15799006,12522853 -g1,10892:16115152,12522853 -g1,10892:16431298,12522853 -g1,10892:16747444,12522853 -g1,10892:17063590,12522853 -g1,10892:17379736,12522853 -g1,10892:17695882,12522853 -g1,10892:18012028,12522853 -g1,10892:18328174,12522853 -g1,10892:18644320,12522853 -g1,10892:18960466,12522853 -g1,10892:19592758,12522853 -g1,10892:19908904,12522853 -g1,10892:20225050,12522853 -g1,10892:20541196,12522853 -g1,10892:20857342,12522853 -h1,10892:21173488,12522853:0,0,0 -k1,10892:32583029,12522853:11409541 -g1,10892:32583029,12522853 -) -(1,10892:6630773,13189031:25952256,404226,9436 -h1,10892:6630773,13189031:0,0,0 -g1,10892:7579210,13189031 -g1,10892:8211502,13189031 -g1,10892:8843794,13189031 -g1,10892:9159940,13189031 -g1,10892:9476086,13189031 -g1,10892:9792232,13189031 -g1,10892:10108378,13189031 -g1,10892:10424524,13189031 -g1,10892:10740670,13189031 -g1,10892:11056816,13189031 -g1,10892:11372962,13189031 -g1,10892:11689108,13189031 -g1,10892:12005254,13189031 -g1,10892:12321400,13189031 -g1,10892:12637546,13189031 -g1,10892:12953692,13189031 -g1,10892:13269838,13189031 -g1,10892:13585984,13189031 -g1,10892:13902130,13189031 -g1,10892:14218276,13189031 -g1,10892:14850568,13189031 -g1,10892:15166714,13189031 -g1,10892:15482860,13189031 -g1,10892:15799006,13189031 -g1,10892:16115152,13189031 -g1,10892:16431298,13189031 -g1,10892:16747444,13189031 -g1,10892:17063590,13189031 -g1,10892:17379736,13189031 -g1,10892:17695882,13189031 -g1,10892:18012028,13189031 -g1,10892:18328174,13189031 -g1,10892:18644320,13189031 -g1,10892:18960466,13189031 -g1,10892:19592758,13189031 -g1,10892:19908904,13189031 -g1,10892:20225050,13189031 -g1,10892:20541196,13189031 -g1,10892:20857342,13189031 -h1,10892:21173488,13189031:0,0,0 -k1,10892:32583029,13189031:11409541 -g1,10892:32583029,13189031 -) -(1,10892:6630773,13855209:25952256,388497,9436 -h1,10892:6630773,13855209:0,0,0 -g1,10892:7579210,13855209 -g1,10892:8211502,13855209 -g1,10892:8843794,13855209 -g1,10892:9159940,13855209 -g1,10892:9476086,13855209 -g1,10892:9792232,13855209 -g1,10892:10108378,13855209 -g1,10892:10424524,13855209 -g1,10892:10740670,13855209 -g1,10892:11056816,13855209 -g1,10892:11372962,13855209 -g1,10892:11689108,13855209 -g1,10892:12005254,13855209 -g1,10892:12321400,13855209 -g1,10892:12637546,13855209 -g1,10892:12953692,13855209 -g1,10892:13269838,13855209 -g1,10892:13585984,13855209 -g1,10892:13902130,13855209 -g1,10892:14218276,13855209 -g1,10892:14850568,13855209 -g1,10892:15166714,13855209 -g1,10892:15482860,13855209 -g1,10892:15799006,13855209 -g1,10892:16115152,13855209 -g1,10892:16431298,13855209 -g1,10892:16747444,13855209 -g1,10892:17063590,13855209 -g1,10892:17379736,13855209 -g1,10892:17695882,13855209 -g1,10892:18012028,13855209 -g1,10892:18328174,13855209 -g1,10892:18644320,13855209 -g1,10892:18960466,13855209 -g1,10892:19592758,13855209 -g1,10892:19908904,13855209 -g1,10892:20225050,13855209 -g1,10892:20541196,13855209 -g1,10892:20857342,13855209 -h1,10892:21173488,13855209:0,0,0 -k1,10892:32583029,13855209:11409541 -g1,10892:32583029,13855209 -) -] -) -g1,10893:32583029,13864645 -g1,10893:6630773,13864645 -g1,10893:6630773,13864645 -g1,10893:32583029,13864645 -g1,10893:32583029,13864645 -) -h1,10893:6630773,14061253:0,0,0 -v1,10897:6630773,15951317:0,393216,0 -(1,11012:6630773,44914763:25952256,29356662,589824 -g1,11012:6630773,44914763 -(1,11012:6630773,44914763:25952256,29356662,589824 -(1,11012:6630773,45504587:25952256,29946486,0 -[1,11012:6630773,45504587:25952256,29946486,0 -(1,11012:6630773,45504587:25952256,29920272,0 -r1,11012:6656987,45504587:26214,29920272,0 -[1,11012:6656987,45504587:25899828,29920272,0 -(1,11012:6656987,44914763:25899828,28740624,0 -[1,11012:7246811,44914763:24720180,28740624,0 -(1,10898:7246811,17259675:24720180,1085536,298548 -(1,10897:7246811,17259675:0,1085536,298548 -r1,11012:8753226,17259675:1506415,1384084,298548 -k1,10897:7246811,17259675:-1506415 -) -(1,10897:7246811,17259675:1506415,1085536,298548 -) -k1,10897:8922026,17259675:168800 -k1,10897:10511647,17259675:168800 -k1,10897:11211944,17259675:168800 -k1,10897:14263674,17259675:168801 -k1,10897:18633987,17259675:168800 -k1,10897:19750438,17259675:168800 -k1,10897:21308601,17259675:168800 -k1,10897:23683998,17259675:168800 -k1,10897:25044243,17259675:168800 -k1,10897:27681785,17259675:168801 -k1,10897:28478420,17259675:168800 -k1,10897:29744948,17259675:168800 -k1,10897:31280829,17259675:168800 -k1,10897:31966991,17259675:0 -) -(1,10898:7246811,18101163:24720180,505283,134348 -k1,10897:8576434,18101163:231895 -k1,10897:10619744,18101163:231895 -k1,10897:13318413,18101163:231894 -k1,10897:14201736,18101163:231895 -k1,10897:15988800,18101163:231895 -(1,10897:15988800,18101163:0,459977,115847 -r1,11012:19160760,18101163:3171960,575824,115847 -k1,10897:15988800,18101163:-3171960 -) -(1,10897:15988800,18101163:3171960,459977,115847 -k1,10897:15988800,18101163:3277 -h1,10897:19157483,18101163:0,411205,112570 -) -k1,10897:19566325,18101163:231895 -k1,10897:22681149,18101163:231895 -k1,10897:24440688,18101163:231895 -(1,10897:24440688,18101163:0,459977,122846 -r1,11012:27964360,18101163:3523672,582823,122846 -k1,10897:24440688,18101163:-3523672 -) -(1,10897:24440688,18101163:3523672,459977,122846 -k1,10897:24440688,18101163:3277 -h1,10897:27961083,18101163:0,411205,112570 -) -k1,10897:28196254,18101163:231894 -k1,10897:29114311,18101163:231895 -k1,10897:30365291,18101163:231895 -k1,10897:31966991,18101163:0 -) -(1,10898:7246811,18942651:24720180,513147,134348 -k1,10897:9788843,18942651:159143 -k1,10897:11676827,18942651:159144 -k1,10897:12305863,18942651:159143 -k1,10897:13750822,18942651:159143 -k1,10897:15437610,18942651:159144 -k1,10897:17828254,18942651:159143 -k1,10897:21096425,18942651:159143 -k1,10897:22649520,18942651:159144 -k1,10897:23827748,18942651:159143 -k1,10897:26869820,18942651:159143 -k1,10897:30835950,18942651:159144 -k1,10897:31611131,18942651:159143 -k1,10897:31966991,18942651:0 -) -(1,10898:7246811,19784139:24720180,513147,134348 -k1,10897:9632143,19784139:204949 -k1,10897:12349087,19784139:204949 -k1,10897:13501687,19784139:204949 -k1,10897:14914465,19784139:204949 -k1,10897:17950569,19784139:204949 -k1,10897:18814809,19784139:204948 -k1,10897:20912438,19784139:204949 -k1,10897:24244765,19784139:204949 -k1,10897:25278744,19784139:204949 -k1,10897:29516779,19784139:204949 -k1,10897:31098639,19784139:204949 -k1,10897:31966991,19784139:0 -) -(1,10898:7246811,20625627:24720180,505283,134348 -k1,10897:8973521,20625627:196444 -k1,10897:9821393,20625627:196444 -k1,10897:11733570,20625627:196444 -k1,10897:12700717,20625627:196444 -k1,10897:15978664,20625627:196444 -k1,10897:16826536,20625627:196444 -k1,10897:18120709,20625627:196445 -k1,10897:23727150,20625627:196444 -k1,10897:25778918,20625627:196444 -k1,10897:27166807,20625627:196444 -k1,10897:28753925,20625627:196444 -k1,10897:29306229,20625627:196444 -k1,10897:31966991,20625627:0 -) -(1,10898:7246811,21467115:24720180,505283,7863 -g1,10897:9257455,21467115 -g1,10897:10108112,21467115 -g1,10897:10663201,21467115 -k1,10898:31966991,21467115:18618780 -g1,10898:31966991,21467115 -) -v1,10900:7246811,22657581:0,393216,0 -(1,10920:7246811,28445616:24720180,6181251,196608 -g1,10920:7246811,28445616 -g1,10920:7246811,28445616 -g1,10920:7050203,28445616 -(1,10920:7050203,28445616:0,6181251,196608 -r1,11012:32163599,28445616:25113396,6377859,196608 -k1,10920:7050203,28445616:-25113396 -) -(1,10920:7050203,28445616:25113396,6181251,196608 -[1,10920:7246811,28445616:24720180,5984643,0 -(1,10902:7246811,22865199:24720180,404226,101187 -(1,10901:7246811,22865199:0,0,0 -g1,10901:7246811,22865199 -g1,10901:7246811,22865199 -g1,10901:6919131,22865199 -(1,10901:6919131,22865199:0,0,0 -) -g1,10901:7246811,22865199 -) -g1,10902:9143685,22865199 -g1,10902:10092123,22865199 -g1,10902:14834309,22865199 -g1,10902:15466601,22865199 -g1,10902:17047331,22865199 -g1,10902:19576497,22865199 -g1,10902:20208789,22865199 -g1,10902:25899413,22865199 -h1,10902:26847850,22865199:0,0,0 -k1,10902:31966991,22865199:5119141 -g1,10902:31966991,22865199 -) -(1,10903:7246811,23531377:24720180,410518,107478 -h1,10903:7246811,23531377:0,0,0 -k1,10903:7246811,23531377:0 -h1,10903:13569725,23531377:0,0,0 -k1,10903:31966991,23531377:18397266 -g1,10903:31966991,23531377 -) -(1,10907:7246811,24263091:24720180,404226,76021 -(1,10905:7246811,24263091:0,0,0 -g1,10905:7246811,24263091 -g1,10905:7246811,24263091 -g1,10905:6919131,24263091 -(1,10905:6919131,24263091:0,0,0 -) -g1,10905:7246811,24263091 -) -g1,10907:8195248,24263091 -g1,10907:9459831,24263091 -h1,10907:11040559,24263091:0,0,0 -k1,10907:31966991,24263091:20926432 -g1,10907:31966991,24263091 -) -(1,10909:7246811,25584629:24720180,404226,101187 -(1,10908:7246811,25584629:0,0,0 -g1,10908:7246811,25584629 -g1,10908:7246811,25584629 -g1,10908:6919131,25584629 -(1,10908:6919131,25584629:0,0,0 -) -g1,10908:7246811,25584629 -) -k1,10909:7246811,25584629:0 -h1,10909:11040559,25584629:0,0,0 -k1,10909:31966991,25584629:20926432 -g1,10909:31966991,25584629 -) -(1,10913:7246811,26316343:24720180,410518,76021 -(1,10911:7246811,26316343:0,0,0 -g1,10911:7246811,26316343 -g1,10911:7246811,26316343 -g1,10911:6919131,26316343 -(1,10911:6919131,26316343:0,0,0 -) -g1,10911:7246811,26316343 -) -g1,10913:8195248,26316343 -g1,10913:9459831,26316343 -g1,10913:12305142,26316343 -g1,10913:12621288,26316343 -g1,10913:12937434,26316343 -g1,10913:13253580,26316343 -g1,10913:13569726,26316343 -g1,10913:15466600,26316343 -g1,10913:15782746,26316343 -g1,10913:16098892,26316343 -g1,10913:16415038,26316343 -g1,10913:16731184,26316343 -g1,10913:17047330,26316343 -g1,10913:17363476,26316343 -g1,10913:17679622,26316343 -h1,10913:21473370,26316343:0,0,0 -k1,10913:31966991,26316343:10493621 -g1,10913:31966991,26316343 -) -(1,10915:7246811,27637881:24720180,404226,101187 -(1,10914:7246811,27637881:0,0,0 -g1,10914:7246811,27637881 -g1,10914:7246811,27637881 -g1,10914:6919131,27637881 -(1,10914:6919131,27637881:0,0,0 -) -g1,10914:7246811,27637881 -) -k1,10915:7246811,27637881:0 -k1,10915:7246811,27637881:0 -h1,10915:14834307,27637881:0,0,0 -k1,10915:31966991,27637881:17132684 -g1,10915:31966991,27637881 -) -(1,10919:7246811,28369595:24720180,404226,76021 -(1,10917:7246811,28369595:0,0,0 -g1,10917:7246811,28369595 -g1,10917:7246811,28369595 -g1,10917:6919131,28369595 -(1,10917:6919131,28369595:0,0,0 -) -g1,10917:7246811,28369595 -) -g1,10919:8195248,28369595 -g1,10919:9459831,28369595 -g1,10919:11988997,28369595 -g1,10919:12305143,28369595 -g1,10919:12621289,28369595 -g1,10919:12937435,28369595 -g1,10919:13253581,28369595 -g1,10919:17047329,28369595 -h1,10919:19260349,28369595:0,0,0 -k1,10919:31966991,28369595:12706642 -g1,10919:31966991,28369595 -) -] -) -g1,10920:31966991,28445616 -g1,10920:7246811,28445616 -g1,10920:7246811,28445616 -g1,10920:31966991,28445616 -g1,10920:31966991,28445616 -) -h1,10920:7246811,28642224:0,0,0 -v1,10924:7246811,30356978:0,393216,0 -(1,10959:7246811,44193867:24720180,14230105,196608 -g1,10959:7246811,44193867 -g1,10959:7246811,44193867 -g1,10959:7050203,44193867 -(1,10959:7050203,44193867:0,14230105,196608 -r1,11012:32163599,44193867:25113396,14426713,196608 -k1,10959:7050203,44193867:-25113396 -) -(1,10959:7050203,44193867:25113396,14230105,196608 -[1,10959:7246811,44193867:24720180,14033497,0 -(1,10926:7246811,30564596:24720180,404226,107478 -(1,10925:7246811,30564596:0,0,0 -g1,10925:7246811,30564596 -g1,10925:7246811,30564596 -g1,10925:6919131,30564596 -(1,10925:6919131,30564596:0,0,0 -) -g1,10925:7246811,30564596 -) -g1,10926:10092122,30564596 -g1,10926:11040560,30564596 -g1,10926:15782745,30564596 -g1,10926:16415037,30564596 -g1,10926:18628057,30564596 -h1,10926:21157222,30564596:0,0,0 -k1,10926:31966991,30564596:10809769 -g1,10926:31966991,30564596 -) -(1,10927:7246811,31230774:24720180,410518,107478 -h1,10927:7246811,31230774:0,0,0 -k1,10927:7246811,31230774:0 -h1,10927:14518162,31230774:0,0,0 -k1,10927:31966990,31230774:17448828 -g1,10927:31966990,31230774 -) -(1,10931:7246811,31962488:24720180,404226,76021 -(1,10929:7246811,31962488:0,0,0 -g1,10929:7246811,31962488 -g1,10929:7246811,31962488 -g1,10929:6919131,31962488 -(1,10929:6919131,31962488:0,0,0 -) -g1,10929:7246811,31962488 -) -g1,10931:8195248,31962488 -g1,10931:9459831,31962488 -h1,10931:10724414,31962488:0,0,0 -k1,10931:31966990,31962488:21242576 -g1,10931:31966990,31962488 -) -(1,10933:7246811,33284026:24720180,404226,107478 -(1,10932:7246811,33284026:0,0,0 -g1,10932:7246811,33284026 -g1,10932:7246811,33284026 -g1,10932:6919131,33284026 -(1,10932:6919131,33284026:0,0,0 -) -g1,10932:7246811,33284026 -) -k1,10933:7246811,33284026:0 -h1,10933:11988996,33284026:0,0,0 -k1,10933:31966992,33284026:19977996 -g1,10933:31966992,33284026 -) -(1,10937:7246811,34015740:24720180,410518,107478 -(1,10935:7246811,34015740:0,0,0 -g1,10935:7246811,34015740 -g1,10935:7246811,34015740 -g1,10935:6919131,34015740 -(1,10935:6919131,34015740:0,0,0 -) -g1,10935:7246811,34015740 -) -g1,10937:8195248,34015740 -g1,10937:9459831,34015740 -g1,10937:13569725,34015740 -g1,10937:16415036,34015740 -g1,10937:16731182,34015740 -g1,10937:17047328,34015740 -g1,10937:17363474,34015740 -g1,10937:17679620,34015740 -g1,10937:19576494,34015740 -g1,10937:19892640,34015740 -g1,10937:20208786,34015740 -g1,10937:20524932,34015740 -g1,10937:20841078,34015740 -g1,10937:21157224,34015740 -g1,10937:21473370,34015740 -g1,10937:21789516,34015740 -h1,10937:25583264,34015740:0,0,0 -k1,10937:31966991,34015740:6383727 -g1,10937:31966991,34015740 -) -(1,10939:7246811,35337278:24720180,404226,107478 -(1,10938:7246811,35337278:0,0,0 -g1,10938:7246811,35337278 -g1,10938:7246811,35337278 -g1,10938:6919131,35337278 -(1,10938:6919131,35337278:0,0,0 -) -g1,10938:7246811,35337278 -) -k1,10939:7246811,35337278:0 -k1,10939:7246811,35337278:0 -h1,10939:15782744,35337278:0,0,0 -k1,10939:31966991,35337278:16184247 -g1,10939:31966991,35337278 -) -(1,10943:7246811,36068992:24720180,404226,107478 -(1,10941:7246811,36068992:0,0,0 -g1,10941:7246811,36068992 -g1,10941:7246811,36068992 -g1,10941:6919131,36068992 -(1,10941:6919131,36068992:0,0,0 -) -g1,10941:7246811,36068992 -) -g1,10943:8195248,36068992 -g1,10943:9459831,36068992 -g1,10943:11988997,36068992 -g1,10943:12305143,36068992 -g1,10943:12621289,36068992 -g1,10943:12937435,36068992 -g1,10943:13253581,36068992 -g1,10943:17047329,36068992 -g1,10943:19576495,36068992 -g1,10943:19892641,36068992 -g1,10943:20208787,36068992 -g1,10943:20524933,36068992 -g1,10943:20841079,36068992 -h1,10943:23370244,36068992:0,0,0 -k1,10943:31966991,36068992:8596747 -g1,10943:31966991,36068992 -) -(1,10945:7246811,37390530:24720180,410518,107478 -(1,10944:7246811,37390530:0,0,0 -g1,10944:7246811,37390530 -g1,10944:7246811,37390530 -g1,10944:6919131,37390530 -(1,10944:6919131,37390530:0,0,0 -) -g1,10944:7246811,37390530 -) -k1,10945:7246811,37390530:0 -g1,10945:16731183,37390530 -k1,10945:16731183,37390530:0 -h1,10945:22421805,37390530:0,0,0 -k1,10945:31966991,37390530:9545186 -g1,10945:31966991,37390530 -) -(1,10958:7246811,38122244:24720180,404226,76021 -(1,10947:7246811,38122244:0,0,0 -g1,10947:7246811,38122244 -g1,10947:7246811,38122244 -g1,10947:6919131,38122244 -(1,10947:6919131,38122244:0,0,0 -) -g1,10947:7246811,38122244 -) -g1,10958:8195248,38122244 -h1,10958:9775976,38122244:0,0,0 -k1,10958:31966992,38122244:22191016 -g1,10958:31966992,38122244 -) -(1,10958:7246811,38788422:24720180,410518,107478 -h1,10958:7246811,38788422:0,0,0 -g1,10958:8195248,38788422 -g1,10958:9459831,38788422 -g1,10958:13569725,38788422 -g1,10958:16415036,38788422 -g1,10958:16731182,38788422 -g1,10958:17047328,38788422 -g1,10958:17363474,38788422 -g1,10958:17679620,38788422 -g1,10958:19576494,38788422 -g1,10958:19892640,38788422 -g1,10958:20208786,38788422 -g1,10958:20524932,38788422 -g1,10958:20841078,38788422 -g1,10958:21157224,38788422 -g1,10958:21473370,38788422 -g1,10958:21789516,38788422 -h1,10958:25583264,38788422:0,0,0 -k1,10958:31966991,38788422:6383727 -g1,10958:31966991,38788422 -) -(1,10958:7246811,39454600:24720180,379060,0 -h1,10958:7246811,39454600:0,0,0 -h1,10958:7879102,39454600:0,0,0 -k1,10958:31966990,39454600:24087888 -g1,10958:31966990,39454600 -) -(1,10958:7246811,40120778:24720180,404226,76021 -h1,10958:7246811,40120778:0,0,0 -g1,10958:8195248,40120778 -h1,10958:9775976,40120778:0,0,0 -k1,10958:31966992,40120778:22191016 -g1,10958:31966992,40120778 -) -(1,10958:7246811,40786956:24720180,404226,9436 -h1,10958:7246811,40786956:0,0,0 -g1,10958:8195248,40786956 -g1,10958:8827540,40786956 -g1,10958:9459832,40786956 -g1,10958:11988998,40786956 -g1,10958:12621290,40786956 -g1,10958:13253582,40786956 -h1,10958:13569728,40786956:0,0,0 -k1,10958:31966992,40786956:18397264 -g1,10958:31966992,40786956 -) -(1,10958:7246811,41453134:24720180,404226,6290 -h1,10958:7246811,41453134:0,0,0 -g1,10958:8195248,41453134 -g1,10958:8511394,41453134 -g1,10958:8827540,41453134 -g1,10958:11356706,41453134 -h1,10958:12937434,41453134:0,0,0 -k1,10958:31966990,41453134:19029556 -g1,10958:31966990,41453134 -) -(1,10958:7246811,42119312:24720180,404226,6290 -h1,10958:7246811,42119312:0,0,0 -g1,10958:8195248,42119312 -g1,10958:8511394,42119312 -g1,10958:8827540,42119312 -g1,10958:10724415,42119312 -g1,10958:11040561,42119312 -g1,10958:11356707,42119312 -k1,10958:11356707,42119312:0 -h1,10958:13253581,42119312:0,0,0 -k1,10958:31966991,42119312:18713410 -g1,10958:31966991,42119312 -) -(1,10958:7246811,42785490:24720180,404226,76021 -h1,10958:7246811,42785490:0,0,0 -g1,10958:8195248,42785490 -g1,10958:8827540,42785490 -g1,10958:9459832,42785490 -g1,10958:9775978,42785490 -g1,10958:10092124,42785490 -g1,10958:10408270,42785490 -g1,10958:10724416,42785490 -g1,10958:11040562,42785490 -g1,10958:11356708,42785490 -g1,10958:12937437,42785490 -k1,10958:12937437,42785490:0 -h1,10958:14202020,42785490:0,0,0 -k1,10958:31966992,42785490:17764972 -g1,10958:31966992,42785490 -) -(1,10958:7246811,43451668:24720180,404226,76021 -h1,10958:7246811,43451668:0,0,0 -g1,10958:8195248,43451668 -g1,10958:8827540,43451668 -g1,10958:9459832,43451668 -g1,10958:9775978,43451668 -g1,10958:10092124,43451668 -g1,10958:10408270,43451668 -g1,10958:10724416,43451668 -g1,10958:11040562,43451668 -g1,10958:11356708,43451668 -g1,10958:12937437,43451668 -k1,10958:12937437,43451668:0 -h1,10958:14202020,43451668:0,0,0 -k1,10958:31966992,43451668:17764972 -g1,10958:31966992,43451668 -) -(1,10958:7246811,44117846:24720180,404226,76021 -h1,10958:7246811,44117846:0,0,0 -g1,10958:8195248,44117846 -g1,10958:8827540,44117846 -g1,10958:9459832,44117846 -g1,10958:9775978,44117846 -g1,10958:10092124,44117846 -g1,10958:10408270,44117846 -g1,10958:10724416,44117846 -g1,10958:11040562,44117846 -g1,10958:11356708,44117846 -g1,10958:12937437,44117846 -k1,10958:12937437,44117846:0 -h1,10958:14202020,44117846:0,0,0 -k1,10958:31966992,44117846:17764972 -g1,10958:31966992,44117846 -) -] -) -g1,10959:31966991,44193867 -g1,10959:7246811,44193867 -g1,10959:7246811,44193867 -g1,10959:31966991,44193867 -g1,10959:31966991,44193867 -) -h1,10959:7246811,44390475:0,0,0 -] -) -] -r1,11012:32583029,45504587:26214,29920272,0 -) -] -) -) -g1,11012:32583029,44914763 -) -] -(1,11012:32583029,45706769:0,0,0 -g1,11012:32583029,45706769 -) -) -] -(1,11012:6630773,47279633:25952256,0,0 -h1,11012:6630773,47279633:25952256,0,0 -) -] -h1,11012:4262630,4025873:0,0,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,11017:37855564,49800853:1179648,16384,0 +) +) +k1,11017:3078556,49800853:-34777008 +) +] +g1,11017:6630773,4812305 +k1,11017:25241686,4812305:17415536 +g1,11017:26807341,4812305 +g1,11017:30339731,4812305 +g1,11017:31154998,4812305 +) +) +] +[1,11017:6630773,45706769:25952256,40108032,0 +(1,11017:6630773,45706769:25952256,40108032,0 +(1,11017:6630773,45706769:0,0,0 +g1,11017:6630773,45706769 +) +[1,11017:6630773,45706769:25952256,40108032,0 +v1,10881:6630773,6254097:0,393216,0 +(1,10898:6630773,13864645:25952256,8003764,196608 +g1,10898:6630773,13864645 +g1,10898:6630773,13864645 +g1,10898:6434165,13864645 +(1,10898:6434165,13864645:0,8003764,196608 +r1,10898:32779637,13864645:26345472,8200372,196608 +k1,10898:6434165,13864645:-26345472 +) +(1,10898:6434165,13864645:26345472,8003764,196608 +[1,10898:6630773,13864645:25952256,7807156,0 +(1,10883:6630773,6461715:25952256,404226,101187 +(1,10882:6630773,6461715:0,0,0 +g1,10882:6630773,6461715 +g1,10882:6630773,6461715 +g1,10882:6303093,6461715 +(1,10882:6303093,6461715:0,0,0 +) +g1,10882:6630773,6461715 +) +k1,10883:6630773,6461715:0 +g1,10883:11372959,6461715 +g1,10883:12005251,6461715 +g1,10883:13585981,6461715 +g1,10883:16115147,6461715 +g1,10883:16747439,6461715 +g1,10883:22438063,6461715 +g1,10883:23702646,6461715 +k1,10883:23702646,6461715:0 +h1,10883:24967228,6461715:0,0,0 +k1,10883:32583029,6461715:7615801 +g1,10883:32583029,6461715 +) +(1,10884:6630773,7127893:25952256,404226,107478 +h1,10884:6630773,7127893:0,0,0 +g1,10884:6946919,7127893 +g1,10884:7263065,7127893 +g1,10884:11056813,7127893 +g1,10884:13902124,7127893 +k1,10884:13902124,7127893:0 +h1,10884:15166706,7127893:0,0,0 +k1,10884:32583030,7127893:17416324 +g1,10884:32583030,7127893 +) +(1,10885:6630773,7794071:25952256,404226,82312 +h1,10885:6630773,7794071:0,0,0 +g1,10885:6946919,7794071 +g1,10885:7263065,7794071 +k1,10885:7263065,7794071:0 +h1,10885:11056813,7794071:0,0,0 +k1,10885:32583029,7794071:21526216 +g1,10885:32583029,7794071 +) +(1,10886:6630773,8460249:25952256,404226,82312 +h1,10886:6630773,8460249:0,0,0 +g1,10886:6946919,8460249 +g1,10886:7263065,8460249 +g1,10886:7579211,8460249 +g1,10886:7895357,8460249 +g1,10886:8211503,8460249 +g1,10886:8527649,8460249 +g1,10886:8843795,8460249 +g1,10886:9159941,8460249 +g1,10886:9476087,8460249 +g1,10886:9792233,8460249 +g1,10886:10108379,8460249 +g1,10886:10424525,8460249 +g1,10886:14534419,8460249 +g1,10886:15166711,8460249 +k1,10886:15166711,8460249:0 +h1,10886:19592751,8460249:0,0,0 +k1,10886:32583029,8460249:12990278 +g1,10886:32583029,8460249 +) +(1,10887:6630773,9126427:25952256,404226,82312 +h1,10887:6630773,9126427:0,0,0 +g1,10887:6946919,9126427 +g1,10887:7263065,9126427 +g1,10887:7579211,9126427 +g1,10887:7895357,9126427 +g1,10887:8211503,9126427 +g1,10887:8527649,9126427 +g1,10887:8843795,9126427 +g1,10887:9159941,9126427 +g1,10887:9476087,9126427 +g1,10887:9792233,9126427 +g1,10887:10108379,9126427 +g1,10887:10424525,9126427 +g1,10887:15166711,9126427 +g1,10887:15799003,9126427 +k1,10887:15799003,9126427:0 +h1,10887:20857334,9126427:0,0,0 +k1,10887:32583029,9126427:11725695 +g1,10887:32583029,9126427 +) +(1,10888:6630773,9792605:25952256,404226,76021 +h1,10888:6630773,9792605:0,0,0 +g1,10888:6946919,9792605 +g1,10888:7263065,9792605 +g1,10888:7579211,9792605 +g1,10888:7895357,9792605 +g1,10888:8211503,9792605 +g1,10888:8527649,9792605 +g1,10888:8843795,9792605 +g1,10888:9159941,9792605 +g1,10888:9476087,9792605 +g1,10888:9792233,9792605 +g1,10888:10108379,9792605 +g1,10888:10424525,9792605 +g1,10888:11056817,9792605 +g1,10888:11689109,9792605 +k1,10888:11689109,9792605:0 +h1,10888:12953692,9792605:0,0,0 +k1,10888:32583028,9792605:19629336 +g1,10888:32583028,9792605 +) +(1,10897:6630773,10524319:25952256,404226,9436 +(1,10890:6630773,10524319:0,0,0 +g1,10890:6630773,10524319 +g1,10890:6630773,10524319 +g1,10890:6303093,10524319 +(1,10890:6303093,10524319:0,0,0 +) +g1,10890:6630773,10524319 +) +g1,10897:7579210,10524319 +g1,10897:8211502,10524319 +g1,10897:8843794,10524319 +g1,10897:11372960,10524319 +g1,10897:12005252,10524319 +g1,10897:12637544,10524319 +h1,10897:12953690,10524319:0,0,0 +k1,10897:32583030,10524319:19629340 +g1,10897:32583030,10524319 +) +(1,10897:6630773,11190497:25952256,404226,50331 +h1,10897:6630773,11190497:0,0,0 +g1,10897:7579210,11190497 +g1,10897:7895356,11190497 +g1,10897:8211502,11190497 +g1,10897:10740668,11190497 +g1,10897:14850562,11190497 +g1,10897:19592748,11190497 +g1,10897:19908894,11190497 +g1,10897:20225040,11190497 +g1,10897:20541186,11190497 +g1,10897:20857332,11190497 +h1,10897:21173478,11190497:0,0,0 +k1,10897:32583029,11190497:11409551 +g1,10897:32583029,11190497 +) +(1,10897:6630773,11856675:25952256,404226,6290 +h1,10897:6630773,11856675:0,0,0 +g1,10897:7579210,11856675 +g1,10897:7895356,11856675 +g1,10897:8211502,11856675 +g1,10897:10108377,11856675 +g1,10897:10424523,11856675 +g1,10897:10740669,11856675 +g1,10897:11056815,11856675 +g1,10897:11372961,11856675 +g1,10897:11689107,11856675 +g1,10897:12005253,11856675 +g1,10897:12321399,11856675 +g1,10897:12637545,11856675 +g1,10897:12953691,11856675 +g1,10897:14850566,11856675 +g1,10897:15166712,11856675 +g1,10897:15482858,11856675 +g1,10897:15799004,11856675 +g1,10897:16115150,11856675 +g1,10897:16431296,11856675 +g1,10897:16747442,11856675 +g1,10897:17063588,11856675 +g1,10897:17379734,11856675 +g1,10897:17695880,11856675 +g1,10897:19592755,11856675 +k1,10897:19592755,11856675:0 +h1,10897:21173484,11856675:0,0,0 +k1,10897:32583029,11856675:11409545 +g1,10897:32583029,11856675 +) +(1,10897:6630773,12522853:25952256,388497,9436 +h1,10897:6630773,12522853:0,0,0 +g1,10897:7579210,12522853 +g1,10897:8211502,12522853 +g1,10897:8843794,12522853 +g1,10897:9159940,12522853 +g1,10897:9476086,12522853 +g1,10897:9792232,12522853 +g1,10897:10108378,12522853 +g1,10897:10424524,12522853 +g1,10897:10740670,12522853 +g1,10897:11056816,12522853 +g1,10897:11372962,12522853 +g1,10897:11689108,12522853 +g1,10897:12005254,12522853 +g1,10897:12321400,12522853 +g1,10897:12637546,12522853 +g1,10897:12953692,12522853 +g1,10897:13269838,12522853 +g1,10897:13585984,12522853 +g1,10897:13902130,12522853 +g1,10897:14218276,12522853 +g1,10897:14850568,12522853 +g1,10897:15166714,12522853 +g1,10897:15482860,12522853 +g1,10897:15799006,12522853 +g1,10897:16115152,12522853 +g1,10897:16431298,12522853 +g1,10897:16747444,12522853 +g1,10897:17063590,12522853 +g1,10897:17379736,12522853 +g1,10897:17695882,12522853 +g1,10897:18012028,12522853 +g1,10897:18328174,12522853 +g1,10897:18644320,12522853 +g1,10897:18960466,12522853 +g1,10897:19592758,12522853 +g1,10897:19908904,12522853 +g1,10897:20225050,12522853 +g1,10897:20541196,12522853 +g1,10897:20857342,12522853 +h1,10897:21173488,12522853:0,0,0 +k1,10897:32583029,12522853:11409541 +g1,10897:32583029,12522853 +) +(1,10897:6630773,13189031:25952256,404226,9436 +h1,10897:6630773,13189031:0,0,0 +g1,10897:7579210,13189031 +g1,10897:8211502,13189031 +g1,10897:8843794,13189031 +g1,10897:9159940,13189031 +g1,10897:9476086,13189031 +g1,10897:9792232,13189031 +g1,10897:10108378,13189031 +g1,10897:10424524,13189031 +g1,10897:10740670,13189031 +g1,10897:11056816,13189031 +g1,10897:11372962,13189031 +g1,10897:11689108,13189031 +g1,10897:12005254,13189031 +g1,10897:12321400,13189031 +g1,10897:12637546,13189031 +g1,10897:12953692,13189031 +g1,10897:13269838,13189031 +g1,10897:13585984,13189031 +g1,10897:13902130,13189031 +g1,10897:14218276,13189031 +g1,10897:14850568,13189031 +g1,10897:15166714,13189031 +g1,10897:15482860,13189031 +g1,10897:15799006,13189031 +g1,10897:16115152,13189031 +g1,10897:16431298,13189031 +g1,10897:16747444,13189031 +g1,10897:17063590,13189031 +g1,10897:17379736,13189031 +g1,10897:17695882,13189031 +g1,10897:18012028,13189031 +g1,10897:18328174,13189031 +g1,10897:18644320,13189031 +g1,10897:18960466,13189031 +g1,10897:19592758,13189031 +g1,10897:19908904,13189031 +g1,10897:20225050,13189031 +g1,10897:20541196,13189031 +g1,10897:20857342,13189031 +h1,10897:21173488,13189031:0,0,0 +k1,10897:32583029,13189031:11409541 +g1,10897:32583029,13189031 +) +(1,10897:6630773,13855209:25952256,388497,9436 +h1,10897:6630773,13855209:0,0,0 +g1,10897:7579210,13855209 +g1,10897:8211502,13855209 +g1,10897:8843794,13855209 +g1,10897:9159940,13855209 +g1,10897:9476086,13855209 +g1,10897:9792232,13855209 +g1,10897:10108378,13855209 +g1,10897:10424524,13855209 +g1,10897:10740670,13855209 +g1,10897:11056816,13855209 +g1,10897:11372962,13855209 +g1,10897:11689108,13855209 +g1,10897:12005254,13855209 +g1,10897:12321400,13855209 +g1,10897:12637546,13855209 +g1,10897:12953692,13855209 +g1,10897:13269838,13855209 +g1,10897:13585984,13855209 +g1,10897:13902130,13855209 +g1,10897:14218276,13855209 +g1,10897:14850568,13855209 +g1,10897:15166714,13855209 +g1,10897:15482860,13855209 +g1,10897:15799006,13855209 +g1,10897:16115152,13855209 +g1,10897:16431298,13855209 +g1,10897:16747444,13855209 +g1,10897:17063590,13855209 +g1,10897:17379736,13855209 +g1,10897:17695882,13855209 +g1,10897:18012028,13855209 +g1,10897:18328174,13855209 +g1,10897:18644320,13855209 +g1,10897:18960466,13855209 +g1,10897:19592758,13855209 +g1,10897:19908904,13855209 +g1,10897:20225050,13855209 +g1,10897:20541196,13855209 +g1,10897:20857342,13855209 +h1,10897:21173488,13855209:0,0,0 +k1,10897:32583029,13855209:11409541 +g1,10897:32583029,13855209 +) +] +) +g1,10898:32583029,13864645 +g1,10898:6630773,13864645 +g1,10898:6630773,13864645 +g1,10898:32583029,13864645 +g1,10898:32583029,13864645 +) +h1,10898:6630773,14061253:0,0,0 +v1,10902:6630773,15951317:0,393216,0 +(1,11017:6630773,44914763:25952256,29356662,589824 +g1,11017:6630773,44914763 +(1,11017:6630773,44914763:25952256,29356662,589824 +(1,11017:6630773,45504587:25952256,29946486,0 +[1,11017:6630773,45504587:25952256,29946486,0 +(1,11017:6630773,45504587:25952256,29920272,0 +r1,11017:6656987,45504587:26214,29920272,0 +[1,11017:6656987,45504587:25899828,29920272,0 +(1,11017:6656987,44914763:25899828,28740624,0 +[1,11017:7246811,44914763:24720180,28740624,0 +(1,10903:7246811,17259675:24720180,1085536,298548 +(1,10902:7246811,17259675:0,1085536,298548 +r1,11017:8753226,17259675:1506415,1384084,298548 +k1,10902:7246811,17259675:-1506415 +) +(1,10902:7246811,17259675:1506415,1085536,298548 +) +k1,10902:8922026,17259675:168800 +k1,10902:10511647,17259675:168800 +k1,10902:11211944,17259675:168800 +k1,10902:14263674,17259675:168801 +k1,10902:18633987,17259675:168800 +k1,10902:19750438,17259675:168800 +k1,10902:21308601,17259675:168800 +k1,10902:23683998,17259675:168800 +k1,10902:25044243,17259675:168800 +k1,10902:27681785,17259675:168801 +k1,10902:28478420,17259675:168800 +k1,10902:29744948,17259675:168800 +k1,10902:31280829,17259675:168800 +k1,10902:31966991,17259675:0 +) +(1,10903:7246811,18101163:24720180,505283,134348 +k1,10902:8576434,18101163:231895 +k1,10902:10619744,18101163:231895 +k1,10902:13318413,18101163:231894 +k1,10902:14201736,18101163:231895 +k1,10902:15988800,18101163:231895 +(1,10902:15988800,18101163:0,459977,115847 +r1,11017:19160760,18101163:3171960,575824,115847 +k1,10902:15988800,18101163:-3171960 +) +(1,10902:15988800,18101163:3171960,459977,115847 +k1,10902:15988800,18101163:3277 +h1,10902:19157483,18101163:0,411205,112570 +) +k1,10902:19566325,18101163:231895 +k1,10902:22681149,18101163:231895 +k1,10902:24440688,18101163:231895 +(1,10902:24440688,18101163:0,459977,122846 +r1,11017:27964360,18101163:3523672,582823,122846 +k1,10902:24440688,18101163:-3523672 +) +(1,10902:24440688,18101163:3523672,459977,122846 +k1,10902:24440688,18101163:3277 +h1,10902:27961083,18101163:0,411205,112570 +) +k1,10902:28196254,18101163:231894 +k1,10902:29114311,18101163:231895 +k1,10902:30365291,18101163:231895 +k1,10902:31966991,18101163:0 +) +(1,10903:7246811,18942651:24720180,513147,134348 +k1,10902:9788843,18942651:159143 +k1,10902:11676827,18942651:159144 +k1,10902:12305863,18942651:159143 +k1,10902:13750822,18942651:159143 +k1,10902:15437610,18942651:159144 +k1,10902:17828254,18942651:159143 +k1,10902:21096425,18942651:159143 +k1,10902:22649520,18942651:159144 +k1,10902:23827748,18942651:159143 +k1,10902:26869820,18942651:159143 +k1,10902:30835950,18942651:159144 +k1,10902:31611131,18942651:159143 +k1,10902:31966991,18942651:0 +) +(1,10903:7246811,19784139:24720180,513147,134348 +k1,10902:9632143,19784139:204949 +k1,10902:12349087,19784139:204949 +k1,10902:13501687,19784139:204949 +k1,10902:14914465,19784139:204949 +k1,10902:17950569,19784139:204949 +k1,10902:18814809,19784139:204948 +k1,10902:20912438,19784139:204949 +k1,10902:24244765,19784139:204949 +k1,10902:25278744,19784139:204949 +k1,10902:29516779,19784139:204949 +k1,10902:31098639,19784139:204949 +k1,10902:31966991,19784139:0 +) +(1,10903:7246811,20625627:24720180,505283,134348 +k1,10902:8973521,20625627:196444 +k1,10902:9821393,20625627:196444 +k1,10902:11733570,20625627:196444 +k1,10902:12700717,20625627:196444 +k1,10902:15978664,20625627:196444 +k1,10902:16826536,20625627:196444 +k1,10902:18120709,20625627:196445 +k1,10902:23727150,20625627:196444 +k1,10902:25778918,20625627:196444 +k1,10902:27166807,20625627:196444 +k1,10902:28753925,20625627:196444 +k1,10902:29306229,20625627:196444 +k1,10902:31966991,20625627:0 +) +(1,10903:7246811,21467115:24720180,505283,7863 +g1,10902:9257455,21467115 +g1,10902:10108112,21467115 +g1,10902:10663201,21467115 +k1,10903:31966991,21467115:18618780 +g1,10903:31966991,21467115 +) +v1,10905:7246811,22657581:0,393216,0 +(1,10925:7246811,28445616:24720180,6181251,196608 +g1,10925:7246811,28445616 +g1,10925:7246811,28445616 +g1,10925:7050203,28445616 +(1,10925:7050203,28445616:0,6181251,196608 +r1,11017:32163599,28445616:25113396,6377859,196608 +k1,10925:7050203,28445616:-25113396 +) +(1,10925:7050203,28445616:25113396,6181251,196608 +[1,10925:7246811,28445616:24720180,5984643,0 +(1,10907:7246811,22865199:24720180,404226,101187 +(1,10906:7246811,22865199:0,0,0 +g1,10906:7246811,22865199 +g1,10906:7246811,22865199 +g1,10906:6919131,22865199 +(1,10906:6919131,22865199:0,0,0 +) +g1,10906:7246811,22865199 +) +g1,10907:9143685,22865199 +g1,10907:10092123,22865199 +g1,10907:14834309,22865199 +g1,10907:15466601,22865199 +g1,10907:17047331,22865199 +g1,10907:19576497,22865199 +g1,10907:20208789,22865199 +g1,10907:25899413,22865199 +h1,10907:26847850,22865199:0,0,0 +k1,10907:31966991,22865199:5119141 +g1,10907:31966991,22865199 +) +(1,10908:7246811,23531377:24720180,410518,107478 +h1,10908:7246811,23531377:0,0,0 +k1,10908:7246811,23531377:0 +h1,10908:13569725,23531377:0,0,0 +k1,10908:31966991,23531377:18397266 +g1,10908:31966991,23531377 +) +(1,10912:7246811,24263091:24720180,404226,76021 +(1,10910:7246811,24263091:0,0,0 +g1,10910:7246811,24263091 +g1,10910:7246811,24263091 +g1,10910:6919131,24263091 +(1,10910:6919131,24263091:0,0,0 +) +g1,10910:7246811,24263091 +) +g1,10912:8195248,24263091 +g1,10912:9459831,24263091 +h1,10912:11040559,24263091:0,0,0 +k1,10912:31966991,24263091:20926432 +g1,10912:31966991,24263091 +) +(1,10914:7246811,25584629:24720180,404226,101187 +(1,10913:7246811,25584629:0,0,0 +g1,10913:7246811,25584629 +g1,10913:7246811,25584629 +g1,10913:6919131,25584629 +(1,10913:6919131,25584629:0,0,0 +) +g1,10913:7246811,25584629 +) +k1,10914:7246811,25584629:0 +h1,10914:11040559,25584629:0,0,0 +k1,10914:31966991,25584629:20926432 +g1,10914:31966991,25584629 +) +(1,10918:7246811,26316343:24720180,410518,76021 +(1,10916:7246811,26316343:0,0,0 +g1,10916:7246811,26316343 +g1,10916:7246811,26316343 +g1,10916:6919131,26316343 +(1,10916:6919131,26316343:0,0,0 +) +g1,10916:7246811,26316343 +) +g1,10918:8195248,26316343 +g1,10918:9459831,26316343 +g1,10918:12305142,26316343 +g1,10918:12621288,26316343 +g1,10918:12937434,26316343 +g1,10918:13253580,26316343 +g1,10918:13569726,26316343 +g1,10918:15466600,26316343 +g1,10918:15782746,26316343 +g1,10918:16098892,26316343 +g1,10918:16415038,26316343 +g1,10918:16731184,26316343 +g1,10918:17047330,26316343 +g1,10918:17363476,26316343 +g1,10918:17679622,26316343 +h1,10918:21473370,26316343:0,0,0 +k1,10918:31966991,26316343:10493621 +g1,10918:31966991,26316343 +) +(1,10920:7246811,27637881:24720180,404226,101187 +(1,10919:7246811,27637881:0,0,0 +g1,10919:7246811,27637881 +g1,10919:7246811,27637881 +g1,10919:6919131,27637881 +(1,10919:6919131,27637881:0,0,0 +) +g1,10919:7246811,27637881 +) +k1,10920:7246811,27637881:0 +k1,10920:7246811,27637881:0 +h1,10920:14834307,27637881:0,0,0 +k1,10920:31966991,27637881:17132684 +g1,10920:31966991,27637881 +) +(1,10924:7246811,28369595:24720180,404226,76021 +(1,10922:7246811,28369595:0,0,0 +g1,10922:7246811,28369595 +g1,10922:7246811,28369595 +g1,10922:6919131,28369595 +(1,10922:6919131,28369595:0,0,0 +) +g1,10922:7246811,28369595 +) +g1,10924:8195248,28369595 +g1,10924:9459831,28369595 +g1,10924:11988997,28369595 +g1,10924:12305143,28369595 +g1,10924:12621289,28369595 +g1,10924:12937435,28369595 +g1,10924:13253581,28369595 +g1,10924:17047329,28369595 +h1,10924:19260349,28369595:0,0,0 +k1,10924:31966991,28369595:12706642 +g1,10924:31966991,28369595 +) +] +) +g1,10925:31966991,28445616 +g1,10925:7246811,28445616 +g1,10925:7246811,28445616 +g1,10925:31966991,28445616 +g1,10925:31966991,28445616 +) +h1,10925:7246811,28642224:0,0,0 +v1,10929:7246811,30356978:0,393216,0 +(1,10964:7246811,44193867:24720180,14230105,196608 +g1,10964:7246811,44193867 +g1,10964:7246811,44193867 +g1,10964:7050203,44193867 +(1,10964:7050203,44193867:0,14230105,196608 +r1,11017:32163599,44193867:25113396,14426713,196608 +k1,10964:7050203,44193867:-25113396 +) +(1,10964:7050203,44193867:25113396,14230105,196608 +[1,10964:7246811,44193867:24720180,14033497,0 +(1,10931:7246811,30564596:24720180,404226,107478 +(1,10930:7246811,30564596:0,0,0 +g1,10930:7246811,30564596 +g1,10930:7246811,30564596 +g1,10930:6919131,30564596 +(1,10930:6919131,30564596:0,0,0 +) +g1,10930:7246811,30564596 +) +g1,10931:10092122,30564596 +g1,10931:11040560,30564596 +g1,10931:15782745,30564596 +g1,10931:16415037,30564596 +g1,10931:18628057,30564596 +h1,10931:21157222,30564596:0,0,0 +k1,10931:31966991,30564596:10809769 +g1,10931:31966991,30564596 +) +(1,10932:7246811,31230774:24720180,410518,107478 +h1,10932:7246811,31230774:0,0,0 +k1,10932:7246811,31230774:0 +h1,10932:14518162,31230774:0,0,0 +k1,10932:31966990,31230774:17448828 +g1,10932:31966990,31230774 +) +(1,10936:7246811,31962488:24720180,404226,76021 +(1,10934:7246811,31962488:0,0,0 +g1,10934:7246811,31962488 +g1,10934:7246811,31962488 +g1,10934:6919131,31962488 +(1,10934:6919131,31962488:0,0,0 +) +g1,10934:7246811,31962488 +) +g1,10936:8195248,31962488 +g1,10936:9459831,31962488 +h1,10936:10724414,31962488:0,0,0 +k1,10936:31966990,31962488:21242576 +g1,10936:31966990,31962488 +) +(1,10938:7246811,33284026:24720180,404226,107478 +(1,10937:7246811,33284026:0,0,0 +g1,10937:7246811,33284026 +g1,10937:7246811,33284026 +g1,10937:6919131,33284026 +(1,10937:6919131,33284026:0,0,0 +) +g1,10937:7246811,33284026 +) +k1,10938:7246811,33284026:0 +h1,10938:11988996,33284026:0,0,0 +k1,10938:31966992,33284026:19977996 +g1,10938:31966992,33284026 +) +(1,10942:7246811,34015740:24720180,410518,107478 +(1,10940:7246811,34015740:0,0,0 +g1,10940:7246811,34015740 +g1,10940:7246811,34015740 +g1,10940:6919131,34015740 +(1,10940:6919131,34015740:0,0,0 +) +g1,10940:7246811,34015740 +) +g1,10942:8195248,34015740 +g1,10942:9459831,34015740 +g1,10942:13569725,34015740 +g1,10942:16415036,34015740 +g1,10942:16731182,34015740 +g1,10942:17047328,34015740 +g1,10942:17363474,34015740 +g1,10942:17679620,34015740 +g1,10942:19576494,34015740 +g1,10942:19892640,34015740 +g1,10942:20208786,34015740 +g1,10942:20524932,34015740 +g1,10942:20841078,34015740 +g1,10942:21157224,34015740 +g1,10942:21473370,34015740 +g1,10942:21789516,34015740 +h1,10942:25583264,34015740:0,0,0 +k1,10942:31966991,34015740:6383727 +g1,10942:31966991,34015740 +) +(1,10944:7246811,35337278:24720180,404226,107478 +(1,10943:7246811,35337278:0,0,0 +g1,10943:7246811,35337278 +g1,10943:7246811,35337278 +g1,10943:6919131,35337278 +(1,10943:6919131,35337278:0,0,0 +) +g1,10943:7246811,35337278 +) +k1,10944:7246811,35337278:0 +k1,10944:7246811,35337278:0 +h1,10944:15782744,35337278:0,0,0 +k1,10944:31966991,35337278:16184247 +g1,10944:31966991,35337278 +) +(1,10948:7246811,36068992:24720180,404226,107478 +(1,10946:7246811,36068992:0,0,0 +g1,10946:7246811,36068992 +g1,10946:7246811,36068992 +g1,10946:6919131,36068992 +(1,10946:6919131,36068992:0,0,0 +) +g1,10946:7246811,36068992 +) +g1,10948:8195248,36068992 +g1,10948:9459831,36068992 +g1,10948:11988997,36068992 +g1,10948:12305143,36068992 +g1,10948:12621289,36068992 +g1,10948:12937435,36068992 +g1,10948:13253581,36068992 +g1,10948:17047329,36068992 +g1,10948:19576495,36068992 +g1,10948:19892641,36068992 +g1,10948:20208787,36068992 +g1,10948:20524933,36068992 +g1,10948:20841079,36068992 +h1,10948:23370244,36068992:0,0,0 +k1,10948:31966991,36068992:8596747 +g1,10948:31966991,36068992 +) +(1,10950:7246811,37390530:24720180,410518,107478 +(1,10949:7246811,37390530:0,0,0 +g1,10949:7246811,37390530 +g1,10949:7246811,37390530 +g1,10949:6919131,37390530 +(1,10949:6919131,37390530:0,0,0 +) +g1,10949:7246811,37390530 +) +k1,10950:7246811,37390530:0 +g1,10950:16731183,37390530 +k1,10950:16731183,37390530:0 +h1,10950:22421805,37390530:0,0,0 +k1,10950:31966991,37390530:9545186 +g1,10950:31966991,37390530 +) +(1,10963:7246811,38122244:24720180,404226,76021 +(1,10952:7246811,38122244:0,0,0 +g1,10952:7246811,38122244 +g1,10952:7246811,38122244 +g1,10952:6919131,38122244 +(1,10952:6919131,38122244:0,0,0 +) +g1,10952:7246811,38122244 +) +g1,10963:8195248,38122244 +h1,10963:9775976,38122244:0,0,0 +k1,10963:31966992,38122244:22191016 +g1,10963:31966992,38122244 +) +(1,10963:7246811,38788422:24720180,410518,107478 +h1,10963:7246811,38788422:0,0,0 +g1,10963:8195248,38788422 +g1,10963:9459831,38788422 +g1,10963:13569725,38788422 +g1,10963:16415036,38788422 +g1,10963:16731182,38788422 +g1,10963:17047328,38788422 +g1,10963:17363474,38788422 +g1,10963:17679620,38788422 +g1,10963:19576494,38788422 +g1,10963:19892640,38788422 +g1,10963:20208786,38788422 +g1,10963:20524932,38788422 +g1,10963:20841078,38788422 +g1,10963:21157224,38788422 +g1,10963:21473370,38788422 +g1,10963:21789516,38788422 +h1,10963:25583264,38788422:0,0,0 +k1,10963:31966991,38788422:6383727 +g1,10963:31966991,38788422 +) +(1,10963:7246811,39454600:24720180,379060,0 +h1,10963:7246811,39454600:0,0,0 +h1,10963:7879102,39454600:0,0,0 +k1,10963:31966990,39454600:24087888 +g1,10963:31966990,39454600 +) +(1,10963:7246811,40120778:24720180,404226,76021 +h1,10963:7246811,40120778:0,0,0 +g1,10963:8195248,40120778 +h1,10963:9775976,40120778:0,0,0 +k1,10963:31966992,40120778:22191016 +g1,10963:31966992,40120778 +) +(1,10963:7246811,40786956:24720180,404226,9436 +h1,10963:7246811,40786956:0,0,0 +g1,10963:8195248,40786956 +g1,10963:8827540,40786956 +g1,10963:9459832,40786956 +g1,10963:11988998,40786956 +g1,10963:12621290,40786956 +g1,10963:13253582,40786956 +h1,10963:13569728,40786956:0,0,0 +k1,10963:31966992,40786956:18397264 +g1,10963:31966992,40786956 +) +(1,10963:7246811,41453134:24720180,404226,6290 +h1,10963:7246811,41453134:0,0,0 +g1,10963:8195248,41453134 +g1,10963:8511394,41453134 +g1,10963:8827540,41453134 +g1,10963:11356706,41453134 +h1,10963:12937434,41453134:0,0,0 +k1,10963:31966990,41453134:19029556 +g1,10963:31966990,41453134 +) +(1,10963:7246811,42119312:24720180,404226,6290 +h1,10963:7246811,42119312:0,0,0 +g1,10963:8195248,42119312 +g1,10963:8511394,42119312 +g1,10963:8827540,42119312 +g1,10963:10724415,42119312 +g1,10963:11040561,42119312 +g1,10963:11356707,42119312 +k1,10963:11356707,42119312:0 +h1,10963:13253581,42119312:0,0,0 +k1,10963:31966991,42119312:18713410 +g1,10963:31966991,42119312 +) +(1,10963:7246811,42785490:24720180,404226,76021 +h1,10963:7246811,42785490:0,0,0 +g1,10963:8195248,42785490 +g1,10963:8827540,42785490 +g1,10963:9459832,42785490 +g1,10963:9775978,42785490 +g1,10963:10092124,42785490 +g1,10963:10408270,42785490 +g1,10963:10724416,42785490 +g1,10963:11040562,42785490 +g1,10963:11356708,42785490 +g1,10963:12937437,42785490 +k1,10963:12937437,42785490:0 +h1,10963:14202020,42785490:0,0,0 +k1,10963:31966992,42785490:17764972 +g1,10963:31966992,42785490 +) +(1,10963:7246811,43451668:24720180,404226,76021 +h1,10963:7246811,43451668:0,0,0 +g1,10963:8195248,43451668 +g1,10963:8827540,43451668 +g1,10963:9459832,43451668 +g1,10963:9775978,43451668 +g1,10963:10092124,43451668 +g1,10963:10408270,43451668 +g1,10963:10724416,43451668 +g1,10963:11040562,43451668 +g1,10963:11356708,43451668 +g1,10963:12937437,43451668 +k1,10963:12937437,43451668:0 +h1,10963:14202020,43451668:0,0,0 +k1,10963:31966992,43451668:17764972 +g1,10963:31966992,43451668 +) +(1,10963:7246811,44117846:24720180,404226,76021 +h1,10963:7246811,44117846:0,0,0 +g1,10963:8195248,44117846 +g1,10963:8827540,44117846 +g1,10963:9459832,44117846 +g1,10963:9775978,44117846 +g1,10963:10092124,44117846 +g1,10963:10408270,44117846 +g1,10963:10724416,44117846 +g1,10963:11040562,44117846 +g1,10963:11356708,44117846 +g1,10963:12937437,44117846 +k1,10963:12937437,44117846:0 +h1,10963:14202020,44117846:0,0,0 +k1,10963:31966992,44117846:17764972 +g1,10963:31966992,44117846 +) +] +) +g1,10964:31966991,44193867 +g1,10964:7246811,44193867 +g1,10964:7246811,44193867 +g1,10964:31966991,44193867 +g1,10964:31966991,44193867 +) +h1,10964:7246811,44390475:0,0,0 +] +) +] +r1,11017:32583029,45504587:26214,29920272,0 +) +] +) +) +g1,11017:32583029,44914763 +) +] +(1,11017:32583029,45706769:0,0,0 +g1,11017:32583029,45706769 +) +) +] +(1,11017:6630773,47279633:25952256,0,0 +h1,11017:6630773,47279633:25952256,0,0 +) +] +h1,11017:4262630,4025873:0,0,0 ] !27652 }205 -Input:1400:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1401:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1402:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1403:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1404:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1405:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {206 -[1,11035:4262630,47279633:28320399,43253760,0 -(1,11035:4262630,4025873:0,0,0 -[1,11035:-473657,4025873:25952256,0,0 -(1,11035:-473657,-710414:25952256,0,0 -h1,11035:-473657,-710414:0,0,0 -(1,11035:-473657,-710414:0,0,0 -(1,11035:-473657,-710414:0,0,0 -g1,11035:-473657,-710414 -(1,11035:-473657,-710414:65781,0,65781 -g1,11035:-407876,-710414 -[1,11035:-407876,-644633:0,0,0 +[1,11040:4262630,47279633:28320399,43253760,0 +(1,11040:4262630,4025873:0,0,0 +[1,11040:-473657,4025873:25952256,0,0 +(1,11040:-473657,-710414:25952256,0,0 +h1,11040:-473657,-710414:0,0,0 +(1,11040:-473657,-710414:0,0,0 +(1,11040:-473657,-710414:0,0,0 +g1,11040:-473657,-710414 +(1,11040:-473657,-710414:65781,0,65781 +g1,11040:-407876,-710414 +[1,11040:-407876,-644633:0,0,0 ] ) -k1,11035:-473657,-710414:-65781 +k1,11040:-473657,-710414:-65781 ) ) -k1,11035:25478599,-710414:25952256 -g1,11035:25478599,-710414 +k1,11040:25478599,-710414:25952256 +g1,11040:25478599,-710414 ) ] ) -[1,11035:6630773,47279633:25952256,43253760,0 -[1,11035:6630773,4812305:25952256,786432,0 -(1,11035:6630773,4812305:25952256,505283,126483 -(1,11035:6630773,4812305:25952256,505283,126483 -g1,11035:3078558,4812305 -[1,11035:3078558,4812305:0,0,0 -(1,11035:3078558,2439708:0,1703936,0 -k1,11035:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,11035:2537886,2439708:1179648,16384,0 +[1,11040:6630773,47279633:25952256,43253760,0 +[1,11040:6630773,4812305:25952256,786432,0 +(1,11040:6630773,4812305:25952256,505283,126483 +(1,11040:6630773,4812305:25952256,505283,126483 +g1,11040:3078558,4812305 +[1,11040:3078558,4812305:0,0,0 +(1,11040:3078558,2439708:0,1703936,0 +k1,11040:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,11040:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,11035:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,11040:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,11035:3078558,4812305:0,0,0 -(1,11035:3078558,2439708:0,1703936,0 -g1,11035:29030814,2439708 -g1,11035:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,11035:36151628,1915420:16384,1179648,0 +[1,11040:3078558,4812305:0,0,0 +(1,11040:3078558,2439708:0,1703936,0 +g1,11040:29030814,2439708 +g1,11040:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,11040:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,11035:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,11040:37855564,2439708:1179648,16384,0 ) ) -k1,11035:3078556,2439708:-34777008 +k1,11040:3078556,2439708:-34777008 ) ] -[1,11035:3078558,4812305:0,0,0 -(1,11035:3078558,49800853:0,16384,2228224 -k1,11035:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,11035:2537886,49800853:1179648,16384,0 +[1,11040:3078558,4812305:0,0,0 +(1,11040:3078558,49800853:0,16384,2228224 +k1,11040:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,11040:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,11035:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,11040:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,11035:3078558,4812305:0,0,0 -(1,11035:3078558,49800853:0,16384,2228224 -g1,11035:29030814,49800853 -g1,11035:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,11035:36151628,51504789:16384,1179648,0 +[1,11040:3078558,4812305:0,0,0 +(1,11040:3078558,49800853:0,16384,2228224 +g1,11040:29030814,49800853 +g1,11040:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,11040:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,11035:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,11040:37855564,49800853:1179648,16384,0 ) ) -k1,11035:3078556,49800853:-34777008 -) -] -g1,11035:6630773,4812305 -g1,11035:6630773,4812305 -g1,11035:8364200,4812305 -g1,11035:12785258,4812305 -g1,11035:14347636,4812305 -g1,11035:16554232,4812305 -k1,11035:31387652,4812305:14833420 -) -) -] -[1,11035:6630773,45706769:25952256,40108032,0 -(1,11035:6630773,45706769:25952256,40108032,0 -(1,11035:6630773,45706769:0,0,0 -g1,11035:6630773,45706769 -) -[1,11035:6630773,45706769:25952256,40108032,0 -v1,11012:6630773,6254097:0,393216,0 -(1,11012:6630773,30610410:25952256,24749529,616038 -g1,11012:6630773,30610410 -(1,11012:6630773,30610410:25952256,24749529,616038 -(1,11012:6630773,31226448:25952256,25365567,0 -[1,11012:6630773,31226448:25952256,25365567,0 -(1,11012:6630773,31200234:25952256,25339353,0 -r1,11012:6656987,31200234:26214,25339353,0 -[1,11012:6656987,31200234:25899828,25339353,0 -(1,11012:6656987,30610410:25899828,24159705,0 -[1,11012:7246811,30610410:24720180,24159705,0 -v1,10963:7246811,6843921:0,393216,0 -(1,10977:7246811,10578704:24720180,4127999,196608 -g1,10977:7246811,10578704 -g1,10977:7246811,10578704 -g1,10977:7050203,10578704 -(1,10977:7050203,10578704:0,4127999,196608 -r1,11012:32163599,10578704:25113396,4324607,196608 -k1,10977:7050203,10578704:-25113396 -) -(1,10977:7050203,10578704:25113396,4127999,196608 -[1,10977:7246811,10578704:24720180,3931391,0 -(1,10965:7246811,7051539:24720180,404226,107478 -(1,10964:7246811,7051539:0,0,0 -g1,10964:7246811,7051539 -g1,10964:7246811,7051539 -g1,10964:6919131,7051539 -(1,10964:6919131,7051539:0,0,0 -) -g1,10964:7246811,7051539 -) -g1,10965:10408268,7051539 -g1,10965:11356706,7051539 -k1,10965:11356706,7051539:0 -h1,10965:16731183,7051539:0,0,0 -k1,10965:31966991,7051539:15235808 -g1,10965:31966991,7051539 -) -(1,10966:7246811,7717717:24720180,404226,107478 -h1,10966:7246811,7717717:0,0,0 -k1,10966:7246811,7717717:0 -h1,10966:12305141,7717717:0,0,0 -k1,10966:31966991,7717717:19661850 -g1,10966:31966991,7717717 -) -(1,10970:7246811,8449431:24720180,410518,76021 -(1,10968:7246811,8449431:0,0,0 -g1,10968:7246811,8449431 -g1,10968:7246811,8449431 -g1,10968:6919131,8449431 -(1,10968:6919131,8449431:0,0,0 -) -g1,10968:7246811,8449431 -) -g1,10970:8195248,8449431 -g1,10970:9459831,8449431 -g1,10970:12305142,8449431 -g1,10970:12621288,8449431 -g1,10970:12937434,8449431 -g1,10970:13253580,8449431 -g1,10970:13569726,8449431 -g1,10970:15466600,8449431 -g1,10970:15782746,8449431 -g1,10970:16098892,8449431 -g1,10970:16415038,8449431 -g1,10970:16731184,8449431 -g1,10970:17047330,8449431 -g1,10970:17363476,8449431 -g1,10970:17679622,8449431 -h1,10970:21473370,8449431:0,0,0 -k1,10970:31966991,8449431:10493621 -g1,10970:31966991,8449431 -) -(1,10972:7246811,9770969:24720180,404226,107478 -(1,10971:7246811,9770969:0,0,0 -g1,10971:7246811,9770969 -g1,10971:7246811,9770969 -g1,10971:6919131,9770969 -(1,10971:6919131,9770969:0,0,0 -) -g1,10971:7246811,9770969 -) -k1,10972:7246811,9770969:0 -k1,10972:7246811,9770969:0 -h1,10972:16098890,9770969:0,0,0 -k1,10972:31966991,9770969:15868101 -g1,10972:31966991,9770969 -) -(1,10976:7246811,10502683:24720180,404226,76021 -(1,10974:7246811,10502683:0,0,0 -g1,10974:7246811,10502683 -g1,10974:7246811,10502683 -g1,10974:6919131,10502683 -(1,10974:6919131,10502683:0,0,0 -) -g1,10974:7246811,10502683 -) -g1,10976:8195248,10502683 -g1,10976:9459831,10502683 -g1,10976:11988997,10502683 -g1,10976:12305143,10502683 -g1,10976:12621289,10502683 -g1,10976:12937435,10502683 -g1,10976:13253581,10502683 -g1,10976:17047329,10502683 -h1,10976:19260349,10502683:0,0,0 -k1,10976:31966991,10502683:12706642 -g1,10976:31966991,10502683 -) -] -) -g1,10977:31966991,10578704 -g1,10977:7246811,10578704 -g1,10977:7246811,10578704 -g1,10977:31966991,10578704 -g1,10977:31966991,10578704 -) -h1,10977:7246811,10775312:0,0,0 -v1,10981:7246811,12490066:0,393216,0 -(1,11006:7246811,19665175:24720180,7568325,196608 -g1,11006:7246811,19665175 -g1,11006:7246811,19665175 -g1,11006:7050203,19665175 -(1,11006:7050203,19665175:0,7568325,196608 -r1,11012:32163599,19665175:25113396,7764933,196608 -k1,11006:7050203,19665175:-25113396 -) -(1,11006:7050203,19665175:25113396,7568325,196608 -[1,11006:7246811,19665175:24720180,7371717,0 -(1,10983:7246811,12697684:24720180,404226,107478 -(1,10982:7246811,12697684:0,0,0 -g1,10982:7246811,12697684 -g1,10982:7246811,12697684 -g1,10982:6919131,12697684 -(1,10982:6919131,12697684:0,0,0 -) -g1,10982:7246811,12697684 -) -k1,10983:7246811,12697684:0 -g1,10983:10408268,12697684 -g1,10983:11356705,12697684 -h1,10983:14202016,12697684:0,0,0 -k1,10983:31966992,12697684:17764976 -g1,10983:31966992,12697684 -) -(1,10987:7246811,13429398:24720180,404226,76021 -(1,10985:7246811,13429398:0,0,0 -g1,10985:7246811,13429398 -g1,10985:7246811,13429398 -g1,10985:6919131,13429398 -(1,10985:6919131,13429398:0,0,0 -) -g1,10985:7246811,13429398 -) -g1,10987:8195248,13429398 -g1,10987:9459831,13429398 -h1,10987:10724414,13429398:0,0,0 -k1,10987:31966990,13429398:21242576 -g1,10987:31966990,13429398 -) -(1,10989:7246811,14750936:24720180,404226,107478 -(1,10988:7246811,14750936:0,0,0 -g1,10988:7246811,14750936 -g1,10988:7246811,14750936 -g1,10988:6919131,14750936 -(1,10988:6919131,14750936:0,0,0 -) -g1,10988:7246811,14750936 -) -k1,10989:7246811,14750936:0 -g1,10989:10408268,14750936 -g1,10989:11356705,14750936 -h1,10989:14518162,14750936:0,0,0 -k1,10989:31966990,14750936:17448828 -g1,10989:31966990,14750936 -) -(1,10993:7246811,15482650:24720180,404226,76021 -(1,10991:7246811,15482650:0,0,0 -g1,10991:7246811,15482650 -g1,10991:7246811,15482650 -g1,10991:6919131,15482650 -(1,10991:6919131,15482650:0,0,0 -) -g1,10991:7246811,15482650 -) -g1,10993:8195248,15482650 -g1,10993:9459831,15482650 -h1,10993:10724414,15482650:0,0,0 -k1,10993:31966990,15482650:21242576 -g1,10993:31966990,15482650 -) -(1,10995:7246811,16804188:24720180,404226,107478 -(1,10994:7246811,16804188:0,0,0 -g1,10994:7246811,16804188 -g1,10994:7246811,16804188 -g1,10994:6919131,16804188 -(1,10994:6919131,16804188:0,0,0 -) -g1,10994:7246811,16804188 -) -k1,10995:7246811,16804188:0 -g1,10995:12621288,16804188 -h1,10995:15466599,16804188:0,0,0 -k1,10995:31966991,16804188:16500392 -g1,10995:31966991,16804188 -) -(1,10999:7246811,17535902:24720180,404226,76021 -(1,10997:7246811,17535902:0,0,0 -g1,10997:7246811,17535902 -g1,10997:7246811,17535902 -g1,10997:6919131,17535902 -(1,10997:6919131,17535902:0,0,0 -) -g1,10997:7246811,17535902 -) -g1,10999:8195248,17535902 -g1,10999:9459831,17535902 -h1,10999:11040559,17535902:0,0,0 -k1,10999:31966991,17535902:20926432 -g1,10999:31966991,17535902 -) -(1,11001:7246811,18857440:24720180,404226,107478 -(1,11000:7246811,18857440:0,0,0 -g1,11000:7246811,18857440 -g1,11000:7246811,18857440 -g1,11000:6919131,18857440 -(1,11000:6919131,18857440:0,0,0 -) -g1,11000:7246811,18857440 -) -k1,11001:7246811,18857440:0 -g1,11001:12621288,18857440 -h1,11001:15782745,18857440:0,0,0 -k1,11001:31966991,18857440:16184246 -g1,11001:31966991,18857440 -) -(1,11005:7246811,19589154:24720180,404226,76021 -(1,11003:7246811,19589154:0,0,0 -g1,11003:7246811,19589154 -g1,11003:7246811,19589154 -g1,11003:6919131,19589154 -(1,11003:6919131,19589154:0,0,0 -) -g1,11003:7246811,19589154 -) -g1,11005:8195248,19589154 -g1,11005:9459831,19589154 -h1,11005:10724414,19589154:0,0,0 -k1,11005:31966990,19589154:21242576 -g1,11005:31966990,19589154 -) -] -) -g1,11006:31966991,19665175 -g1,11006:7246811,19665175 -g1,11006:7246811,19665175 -g1,11006:31966991,19665175 -g1,11006:31966991,19665175 -) -h1,11006:7246811,19861783:0,0,0 -(1,11010:7246811,21227559:24720180,505283,126483 -h1,11009:7246811,21227559:983040,0,0 -k1,11009:9664081,21227559:237543 -k1,11009:11423370,21227559:237543 -k1,11009:13516237,21227559:237543 -k1,11009:15414461,21227559:237542 -k1,11009:16936510,21227559:237543 -k1,11009:20127761,21227559:237543 -k1,11009:21356864,21227559:237543 -k1,11009:22210445,21227559:237543 -k1,11009:23214104,21227559:237543 -k1,11009:25149028,21227559:237542 -k1,11009:26405656,21227559:237543 -k1,11009:28296672,21227559:237543 -k1,11009:29220377,21227559:237543 -k1,11010:31966991,21227559:0 -) -(1,11010:7246811,22069047:24720180,513147,126483 -(1,11009:7246811,22069047:0,414482,115847 -r1,11012:7956789,22069047:709978,530329,115847 -k1,11009:7246811,22069047:-709978 -) -(1,11009:7246811,22069047:709978,414482,115847 -k1,11009:7246811,22069047:3277 -h1,11009:7953512,22069047:0,411205,112570 -) -k1,11009:8152445,22069047:195656 -k1,11009:9869847,22069047:195656 -k1,11009:11013154,22069047:195656 -k1,11009:13755538,22069047:195655 -k1,11009:14563956,22069047:195656 -k1,11009:16211234,22069047:195656 -k1,11009:19021121,22069047:195656 -k1,11009:19832815,22069047:195656 -k1,11009:21047556,22069047:195656 -k1,11009:23054627,22069047:195656 -k1,11009:24322451,22069047:195655 -k1,11009:25584378,22069047:195656 -k1,11009:26799119,22069047:195656 -k1,11009:30277473,22069047:195656 -k1,11009:31966991,22069047:0 -) -(1,11010:7246811,22910535:24720180,513147,134348 -k1,11009:10813254,22910535:283745 -k1,11009:14077577,22910535:283746 -(1,11009:14077577,22910535:0,452978,115847 -r1,11012:15842690,22910535:1765113,568825,115847 -k1,11009:14077577,22910535:-1765113 -) -(1,11009:14077577,22910535:1765113,452978,115847 -k1,11009:14077577,22910535:3277 -h1,11009:15839413,22910535:0,411205,112570 -) -k1,11009:16126435,22910535:283745 -k1,11009:18153438,22910535:283745 -k1,11009:21072387,22910535:283746 -k1,11009:23634819,22910535:283745 -k1,11009:26060281,22910535:283745 -k1,11009:27535472,22910535:283746 -k1,11009:30479979,22910535:283745 -k1,11009:31966991,22910535:0 -) -(1,11010:7246811,23752023:24720180,505283,134348 -g1,11009:8637485,23752023 -g1,11009:9561542,23752023 -g1,11009:11140959,23752023 -g1,11009:12331748,23752023 -g1,11009:13597248,23752023 -g1,11009:16499837,23752023 -k1,11010:31966991,23752023:13003656 -g1,11010:31966991,23752023 -) -(1,11012:7246811,24593511:24720180,513147,126483 -h1,11011:7246811,24593511:983040,0,0 -k1,11011:8993033,24593511:285425 -k1,11011:10146810,24593511:285425 -k1,11011:12730583,24593511:285425 -(1,11011:12730583,24593511:0,452978,115847 -r1,11012:14847408,24593511:2116825,568825,115847 -k1,11011:12730583,24593511:-2116825 -) -(1,11011:12730583,24593511:2116825,452978,115847 -k1,11011:12730583,24593511:3277 -h1,11011:14844131,24593511:0,411205,112570 -) -k1,11011:15132832,24593511:285424 -k1,11011:16179785,24593511:285425 -(1,11011:16179785,24593511:0,459977,115847 -r1,11012:19703457,24593511:3523672,575824,115847 -k1,11011:16179785,24593511:-3523672 -) -(1,11011:16179785,24593511:3523672,459977,115847 -k1,11011:16179785,24593511:3277 -h1,11011:19700180,24593511:0,411205,112570 -) -k1,11011:19988882,24593511:285425 -k1,11011:20890345,24593511:285425 -k1,11011:22194855,24593511:285425 -k1,11011:23786413,24593511:285425 -k1,11011:27431868,24593511:285424 -k1,11011:28908738,24593511:285425 -k1,11011:30947906,24593511:285425 -k1,11011:31966991,24593511:0 -) -(1,11012:7246811,25434999:24720180,513147,115847 -k1,11011:9620945,25434999:229796 -k1,11011:10869826,25434999:229796 -k1,11011:12942494,25434999:229796 -k1,11011:13831583,25434999:229797 -k1,11011:15080464,25434999:229796 -k1,11011:16458451,25434999:229796 -k1,11011:19874607,25434999:229796 -k1,11011:20720441,25434999:229796 -k1,11011:21969322,25434999:229796 -k1,11011:24169786,25434999:229796 -k1,11011:24931080,25434999:229797 -(1,11011:24931080,25434999:0,414482,115847 -r1,11012:26696193,25434999:1765113,530329,115847 -k1,11011:24931080,25434999:-1765113 -) -(1,11011:24931080,25434999:1765113,414482,115847 -k1,11011:24931080,25434999:3277 -h1,11011:26692916,25434999:0,411205,112570 -) -k1,11011:26925989,25434999:229796 -k1,11011:29482968,25434999:229796 -k1,11011:30379920,25434999:229796 -(1,11011:30379920,25434999:0,414482,115847 -r1,11012:31793321,25434999:1413401,530329,115847 -k1,11011:30379920,25434999:-1413401 -) -(1,11011:30379920,25434999:1413401,414482,115847 -k1,11011:30379920,25434999:3277 -h1,11011:31790044,25434999:0,411205,112570 -) -k1,11011:31966991,25434999:0 -) -(1,11012:7246811,26276487:24720180,513147,134348 -k1,11011:8272408,26276487:281108 -k1,11011:9572601,26276487:281108 -k1,11011:11279117,26276487:281108 -k1,11011:12219517,26276487:281108 -k1,11011:14758340,26276487:281108 -k1,11011:17518019,26276487:281107 -k1,11011:19193078,26276487:281108 -k1,11011:19830046,26276487:281108 -(1,11011:19830046,26276487:0,459977,115847 -r1,11012:23353718,26276487:3523672,575824,115847 -k1,11011:19830046,26276487:-3523672 -) -(1,11011:19830046,26276487:3523672,459977,115847 -k1,11011:19830046,26276487:3277 -h1,11011:23350441,26276487:0,411205,112570 -) -k1,11011:23634826,26276487:281108 -k1,11011:26049131,26276487:281108 -k1,11011:29084062,26276487:281108 -k1,11011:31966991,26276487:0 -) -(1,11012:7246811,27117975:24720180,513147,134348 -k1,11011:8922650,27117975:281888 -(1,11011:8922650,27117975:0,452978,122846 -r1,11012:12446322,27117975:3523672,575824,122846 -k1,11011:8922650,27117975:-3523672 -) -(1,11011:8922650,27117975:3523672,452978,122846 -k1,11011:8922650,27117975:3277 -h1,11011:12443045,27117975:0,411205,112570 -) -k1,11011:12728211,27117975:281889 -k1,11011:15763266,27117975:281888 -k1,11011:16806683,27117975:281889 -k1,11011:20801186,27117975:281888 -k1,11011:22477025,27117975:281888 -(1,11011:22477025,27117975:0,452978,122846 -r1,11012:25648985,27117975:3171960,575824,122846 -k1,11011:22477025,27117975:-3171960 -) -(1,11011:22477025,27117975:3171960,452978,122846 -k1,11011:22477025,27117975:3277 -h1,11011:25645708,27117975:0,411205,112570 -) -k1,11011:25930874,27117975:281889 -k1,11011:27313767,27117975:281888 -k1,11011:28614741,27117975:281889 -k1,11011:30196208,27117975:281888 -k1,11011:31966991,27117975:0 -) -(1,11012:7246811,27959463:24720180,513147,134348 -k1,11011:8119095,27959463:212992 -k1,11011:11715055,27959463:212992 -k1,11011:12947132,27959463:212992 -k1,11011:14549487,27959463:212992 -k1,11011:16638775,27959463:212992 -k1,11011:18119233,27959463:212992 -k1,11011:18688085,27959463:212992 -k1,11011:20886162,27959463:212991 -k1,11011:22479998,27959463:212992 -k1,11011:23224487,27959463:212992 -k1,11011:26791612,27959463:212992 -k1,11011:27656032,27959463:212992 -k1,11011:28616790,27959463:212992 -k1,11011:30183756,27959463:212992 -k1,11011:31966991,27959463:0 -) -(1,11012:7246811,28800951:24720180,513147,126483 -k1,11011:9275622,28800951:160380 -k1,11011:10268965,28800951:160380 -k1,11011:11115507,28800951:160380 -k1,11011:12930672,28800951:160381 -k1,11011:14082612,28800951:160380 -k1,11011:17759654,28800951:160380 -k1,11011:18536072,28800951:160380 -k1,11011:20026833,28800951:160380 -k1,11011:21206298,28800951:160380 -k1,11011:24581220,28800951:160381 -k1,11011:27488214,28800951:160380 -(1,11011:27488214,28800951:0,452978,115847 -r1,11012:29253328,28800951:1765114,568825,115847 -k1,11011:27488214,28800951:-1765114 -) -(1,11011:27488214,28800951:1765114,452978,115847 -g1,11011:28194915,28800951 -g1,11011:28898339,28800951 -h1,11011:29250051,28800951:0,411205,112570 -) -k1,11011:29413708,28800951:160380 -k1,11011:31966991,28800951:0 -) -(1,11012:7246811,29642439:24720180,513147,134348 -k1,11011:8137305,29642439:274456 -k1,11011:9430845,29642439:274455 -k1,11011:10877740,29642439:274456 -k1,11011:13023248,29642439:274455 -k1,11011:14494391,29642439:274456 -k1,11011:16067114,29642439:274455 -k1,11011:17579545,29642439:274456 -k1,11011:18505428,29642439:274455 -k1,11011:20394691,29642439:274456 -k1,11011:22165333,29642439:274455 -k1,11011:24798430,29642439:274456 -k1,11011:26165370,29642439:274455 -k1,11011:27099118,29642439:274456 -k1,11011:30399370,29642439:274455 -k1,11011:31966991,29642439:0 -) -(1,11012:7246811,30483927:24720180,513147,126483 -g1,11011:9418673,30483927 -g1,11011:10809347,30483927 -g1,11011:12813437,30483927 -g1,11011:13544163,30483927 -g1,11011:14394820,30483927 -g1,11011:16723314,30483927 -g1,11011:18015028,30483927 -g1,11011:20355974,30483927 -g1,11011:22882386,30483927 -g1,11011:23740907,30483927 -g1,11011:25329499,30483927 -k1,11012:31966991,30483927:4257224 -g1,11012:31966991,30483927 -) -] -) -] -r1,11012:32583029,31200234:26214,25339353,0 -) -] -) -) -g1,11012:32583029,30610410 -) -h1,11012:6630773,31226448:0,0,0 -(1,11015:6630773,33841996:25952256,555811,104529 -(1,11015:6630773,33841996:2450326,534184,12975 -g1,11015:6630773,33841996 -g1,11015:9081099,33841996 -) -k1,11015:32583028,33841996:21647784 -g1,11015:32583028,33841996 -) -(1,11019:6630773,35076700:25952256,505283,95026 -k1,11018:8526675,35076700:278473 -k1,11018:10486803,35076700:278474 -k1,11018:11510420,35076700:278473 -k1,11018:12440321,35076700:278473 -k1,11018:15430674,35076700:278473 -k1,11018:16881586,35076700:278473 -k1,11018:18549423,35076700:278474 -k1,11018:21267146,35076700:278473 -k1,11018:23431090,35076700:278473 -k1,11018:25446268,35076700:278474 -k1,11018:27416881,35076700:278473 -k1,11018:30710665,35076700:278473 -k1,11019:32583029,35076700:0 -) -(1,11019:6630773,35918188:25952256,513147,134348 -k1,11018:8136900,35918188:222932 -k1,11018:8975869,35918188:222931 -k1,11018:11976217,35918188:222932 -k1,11018:13190708,35918188:222931 -k1,11018:14926866,35918188:222932 -k1,11018:15801225,35918188:222931 -k1,11018:18005310,35918188:222932 -k1,11018:19247326,35918188:222931 -k1,11018:24093823,35918188:222932 -k1,11018:25850952,35918188:222931 -k1,11018:28116641,35918188:222932 -k1,11018:31167451,35918188:222931 -k1,11019:32583029,35918188:0 -) -(1,11019:6630773,36759676:25952256,513147,134348 -k1,11018:8498132,36759676:228304 -k1,11018:10003076,36759676:228303 -k1,11018:13151664,36759676:228304 -k1,11018:14947588,36759676:228303 -k1,11018:16642588,36759676:228304 -k1,11018:19310141,36759676:228303 -k1,11018:22392538,36759676:228304 -k1,11018:24453228,36759676:228303 -k1,11018:25673092,36759676:228304 -k1,11018:28132896,36759676:228303 -k1,11018:29557232,36759676:228304 -k1,11018:32583029,36759676:0 -) -(1,11019:6630773,37601164:25952256,513147,126483 -k1,11018:7495673,37601164:248862 -k1,11018:9890838,37601164:248862 -k1,11018:11697491,37601164:248862 -k1,11018:13689611,37601164:248862 -k1,11018:16096574,37601164:248862 -k1,11018:16961474,37601164:248862 -k1,11018:18540717,37601164:248862 -k1,11018:20169768,37601164:248863 -k1,11018:22577386,37601164:248862 -k1,11018:24360446,37601164:248862 -k1,11018:25893814,37601164:248862 -k1,11018:26957944,37601164:248862 -k1,11018:28273077,37601164:248862 -k1,11018:29997154,37601164:248862 -k1,11018:30601876,37601164:248862 -k1,11018:32583029,37601164:0 -) -(1,11019:6630773,38442652:25952256,505283,7863 -g1,11018:9465205,38442652 -g1,11018:11053797,38442652 -k1,11019:32583029,38442652:18916312 -g1,11019:32583029,38442652 -) -(1,11021:6630773,39284140:25952256,513147,7863 -h1,11020:6630773,39284140:983040,0,0 -k1,11020:8786252,39284140:218890 -k1,11020:10934522,39284140:218890 -k1,11020:12551295,39284140:218890 -k1,11020:14462325,39284140:218890 -k1,11020:17309864,39284140:218890 -k1,11020:18918118,39284140:218891 -k1,11020:19788436,39284140:218890 -k1,11020:24040412,39284140:218890 -k1,11020:25278387,39284140:218890 -k1,11020:26589762,39284140:218890 -k1,11020:27467944,39284140:218890 -k1,11020:29383561,39284140:218890 -k1,11020:32583029,39284140:0 -) -(1,11021:6630773,40125628:25952256,505283,102891 -k1,11020:7750229,40125628:165907 -k1,11020:9048598,40125628:165907 -k1,11020:11143885,40125628:165907 -k1,11020:12482230,40125628:165906 -k1,11020:14364525,40125628:165907 -k1,11020:16845819,40125628:165907 -k1,11020:18405677,40125628:165907 -k1,11020:19728294,40125628:165907 -k1,11020:22277090,40125628:165907 -k1,11020:23059034,40125628:165906 -k1,11020:26002357,40125628:165907 -k1,11020:27359709,40125628:165907 -k1,11020:28682326,40125628:165907 -k1,11020:32583029,40125628:0 -) -(1,11021:6630773,40967116:25952256,505283,7863 -g1,11020:8033898,40967116 -g1,11020:8849165,40967116 -k1,11021:32583030,40967116:22108572 -g1,11021:32583030,40967116 -) -v1,11025:6630773,42157582:0,393216,0 -(1,11030:6630773,43119982:25952256,1355616,196608 -g1,11030:6630773,43119982 -g1,11030:6630773,43119982 -g1,11030:6434165,43119982 -(1,11030:6434165,43119982:0,1355616,196608 -r1,11030:32779637,43119982:26345472,1552224,196608 -k1,11030:6434165,43119982:-26345472 -) -(1,11030:6434165,43119982:26345472,1355616,196608 -[1,11030:6630773,43119982:25952256,1159008,0 -(1,11027:6630773,42371492:25952256,410518,82312 -(1,11026:6630773,42371492:0,0,0 -g1,11026:6630773,42371492 -g1,11026:6630773,42371492 -g1,11026:6303093,42371492 -(1,11026:6303093,42371492:0,0,0 -) -g1,11026:6630773,42371492 -) -g1,11027:9476084,42371492 -g1,11027:10424522,42371492 -g1,11027:13902125,42371492 -g1,11027:14534417,42371492 -g1,11027:16747439,42371492 -g1,11027:18012023,42371492 -g1,11027:20541189,42371492 -g1,11027:21173481,42371492 -h1,11027:22438064,42371492:0,0,0 -k1,11027:32583029,42371492:10144965 -g1,11027:32583029,42371492 -) -(1,11028:6630773,43037670:25952256,404226,82312 -h1,11028:6630773,43037670:0,0,0 -g1,11028:9792230,43037670 -g1,11028:10740668,43037670 -g1,11028:14218271,43037670 -g1,11028:14850563,43037670 -g1,11028:17063585,43037670 -g1,11028:18328169,43037670 -g1,11028:20857335,43037670 -g1,11028:21489627,43037670 -h1,11028:22754210,43037670:0,0,0 -k1,11028:32583029,43037670:9828819 -g1,11028:32583029,43037670 -) -] -) -g1,11030:32583029,43119982 -g1,11030:6630773,43119982 -g1,11030:6630773,43119982 -g1,11030:32583029,43119982 -g1,11030:32583029,43119982 -) -h1,11030:6630773,43316590:0,0,0 -(1,11034:6630773,44682366:25952256,513147,126483 -h1,11033:6630773,44682366:983040,0,0 -k1,11033:9767419,44682366:286485 -k1,11033:10922255,44682366:286484 -k1,11033:12972314,44682366:286485 -k1,11033:14277884,44682366:286485 -k1,11033:14277884,44682366:0 -k1,11033:17590165,44682366:286484 -k1,11033:20717636,44682366:286485 -k1,11033:21765649,44682366:286485 -k1,11033:24198436,44682366:286484 -(1,11033:24198436,44682366:0,459977,122846 -r1,11033:28073820,44682366:3875384,582823,122846 -k1,11033:24198436,44682366:-3875384 -) -(1,11033:24198436,44682366:3875384,459977,122846 -k1,11033:24198436,44682366:3277 -h1,11033:28070543,44682366:0,411205,112570 -) -k1,11033:28533975,44682366:286485 -(1,11033:28533975,44682366:0,459977,122846 -r1,11033:32409359,44682366:3875384,582823,122846 -k1,11033:28533975,44682366:-3875384 -) -(1,11033:28533975,44682366:3875384,459977,122846 -k1,11033:28533975,44682366:3277 -h1,11033:32406082,44682366:0,411205,112570 -) -k1,11034:32583029,44682366:0 -) -(1,11034:6630773,45523854:25952256,513147,126483 -(1,11033:6630773,45523854:0,452978,122846 -r1,11033:10857869,45523854:4227096,575824,122846 -k1,11033:6630773,45523854:-4227096 -) -(1,11033:6630773,45523854:4227096,452978,122846 -k1,11033:6630773,45523854:3277 -h1,11033:10854592,45523854:0,411205,112570 -) -k1,11033:11123940,45523854:266071 -k1,11033:12581455,45523854:266070 -(1,11033:12581455,45523854:0,452978,122846 -r1,11033:16808551,45523854:4227096,575824,122846 -k1,11033:12581455,45523854:-4227096 -) -(1,11033:12581455,45523854:4227096,452978,122846 -k1,11033:12581455,45523854:3277 -h1,11033:16805274,45523854:0,411205,112570 -) -k1,11033:17248292,45523854:266071 -k1,11033:19388693,45523854:266071 -k1,11033:22680560,45523854:266070 -k1,11033:25075896,45523854:266071 -k1,11033:27206466,45523854:266071 -k1,11033:28238652,45523854:266070 -k1,11033:31391584,45523854:266071 -k1,11033:32583029,45523854:0 -) -] -(1,11035:32583029,45706769:0,0,0 -g1,11035:32583029,45706769 -) -) -] -(1,11035:6630773,47279633:25952256,0,0 -h1,11035:6630773,47279633:25952256,0,0 -) -] -h1,11035:4262630,4025873:0,0,0 +k1,11040:3078556,49800853:-34777008 +) +] +g1,11040:6630773,4812305 +g1,11040:6630773,4812305 +g1,11040:8364200,4812305 +g1,11040:12785258,4812305 +g1,11040:14347636,4812305 +g1,11040:16554232,4812305 +k1,11040:31387652,4812305:14833420 +) +) +] +[1,11040:6630773,45706769:25952256,40108032,0 +(1,11040:6630773,45706769:25952256,40108032,0 +(1,11040:6630773,45706769:0,0,0 +g1,11040:6630773,45706769 +) +[1,11040:6630773,45706769:25952256,40108032,0 +v1,11017:6630773,6254097:0,393216,0 +(1,11017:6630773,30610410:25952256,24749529,616038 +g1,11017:6630773,30610410 +(1,11017:6630773,30610410:25952256,24749529,616038 +(1,11017:6630773,31226448:25952256,25365567,0 +[1,11017:6630773,31226448:25952256,25365567,0 +(1,11017:6630773,31200234:25952256,25339353,0 +r1,11017:6656987,31200234:26214,25339353,0 +[1,11017:6656987,31200234:25899828,25339353,0 +(1,11017:6656987,30610410:25899828,24159705,0 +[1,11017:7246811,30610410:24720180,24159705,0 +v1,10968:7246811,6843921:0,393216,0 +(1,10982:7246811,10578704:24720180,4127999,196608 +g1,10982:7246811,10578704 +g1,10982:7246811,10578704 +g1,10982:7050203,10578704 +(1,10982:7050203,10578704:0,4127999,196608 +r1,11017:32163599,10578704:25113396,4324607,196608 +k1,10982:7050203,10578704:-25113396 +) +(1,10982:7050203,10578704:25113396,4127999,196608 +[1,10982:7246811,10578704:24720180,3931391,0 +(1,10970:7246811,7051539:24720180,404226,107478 +(1,10969:7246811,7051539:0,0,0 +g1,10969:7246811,7051539 +g1,10969:7246811,7051539 +g1,10969:6919131,7051539 +(1,10969:6919131,7051539:0,0,0 +) +g1,10969:7246811,7051539 +) +g1,10970:10408268,7051539 +g1,10970:11356706,7051539 +k1,10970:11356706,7051539:0 +h1,10970:16731183,7051539:0,0,0 +k1,10970:31966991,7051539:15235808 +g1,10970:31966991,7051539 +) +(1,10971:7246811,7717717:24720180,404226,107478 +h1,10971:7246811,7717717:0,0,0 +k1,10971:7246811,7717717:0 +h1,10971:12305141,7717717:0,0,0 +k1,10971:31966991,7717717:19661850 +g1,10971:31966991,7717717 +) +(1,10975:7246811,8449431:24720180,410518,76021 +(1,10973:7246811,8449431:0,0,0 +g1,10973:7246811,8449431 +g1,10973:7246811,8449431 +g1,10973:6919131,8449431 +(1,10973:6919131,8449431:0,0,0 +) +g1,10973:7246811,8449431 +) +g1,10975:8195248,8449431 +g1,10975:9459831,8449431 +g1,10975:12305142,8449431 +g1,10975:12621288,8449431 +g1,10975:12937434,8449431 +g1,10975:13253580,8449431 +g1,10975:13569726,8449431 +g1,10975:15466600,8449431 +g1,10975:15782746,8449431 +g1,10975:16098892,8449431 +g1,10975:16415038,8449431 +g1,10975:16731184,8449431 +g1,10975:17047330,8449431 +g1,10975:17363476,8449431 +g1,10975:17679622,8449431 +h1,10975:21473370,8449431:0,0,0 +k1,10975:31966991,8449431:10493621 +g1,10975:31966991,8449431 +) +(1,10977:7246811,9770969:24720180,404226,107478 +(1,10976:7246811,9770969:0,0,0 +g1,10976:7246811,9770969 +g1,10976:7246811,9770969 +g1,10976:6919131,9770969 +(1,10976:6919131,9770969:0,0,0 +) +g1,10976:7246811,9770969 +) +k1,10977:7246811,9770969:0 +k1,10977:7246811,9770969:0 +h1,10977:16098890,9770969:0,0,0 +k1,10977:31966991,9770969:15868101 +g1,10977:31966991,9770969 +) +(1,10981:7246811,10502683:24720180,404226,76021 +(1,10979:7246811,10502683:0,0,0 +g1,10979:7246811,10502683 +g1,10979:7246811,10502683 +g1,10979:6919131,10502683 +(1,10979:6919131,10502683:0,0,0 +) +g1,10979:7246811,10502683 +) +g1,10981:8195248,10502683 +g1,10981:9459831,10502683 +g1,10981:11988997,10502683 +g1,10981:12305143,10502683 +g1,10981:12621289,10502683 +g1,10981:12937435,10502683 +g1,10981:13253581,10502683 +g1,10981:17047329,10502683 +h1,10981:19260349,10502683:0,0,0 +k1,10981:31966991,10502683:12706642 +g1,10981:31966991,10502683 +) +] +) +g1,10982:31966991,10578704 +g1,10982:7246811,10578704 +g1,10982:7246811,10578704 +g1,10982:31966991,10578704 +g1,10982:31966991,10578704 +) +h1,10982:7246811,10775312:0,0,0 +v1,10986:7246811,12490066:0,393216,0 +(1,11011:7246811,19665175:24720180,7568325,196608 +g1,11011:7246811,19665175 +g1,11011:7246811,19665175 +g1,11011:7050203,19665175 +(1,11011:7050203,19665175:0,7568325,196608 +r1,11017:32163599,19665175:25113396,7764933,196608 +k1,11011:7050203,19665175:-25113396 +) +(1,11011:7050203,19665175:25113396,7568325,196608 +[1,11011:7246811,19665175:24720180,7371717,0 +(1,10988:7246811,12697684:24720180,404226,107478 +(1,10987:7246811,12697684:0,0,0 +g1,10987:7246811,12697684 +g1,10987:7246811,12697684 +g1,10987:6919131,12697684 +(1,10987:6919131,12697684:0,0,0 +) +g1,10987:7246811,12697684 +) +k1,10988:7246811,12697684:0 +g1,10988:10408268,12697684 +g1,10988:11356705,12697684 +h1,10988:14202016,12697684:0,0,0 +k1,10988:31966992,12697684:17764976 +g1,10988:31966992,12697684 +) +(1,10992:7246811,13429398:24720180,404226,76021 +(1,10990:7246811,13429398:0,0,0 +g1,10990:7246811,13429398 +g1,10990:7246811,13429398 +g1,10990:6919131,13429398 +(1,10990:6919131,13429398:0,0,0 +) +g1,10990:7246811,13429398 +) +g1,10992:8195248,13429398 +g1,10992:9459831,13429398 +h1,10992:10724414,13429398:0,0,0 +k1,10992:31966990,13429398:21242576 +g1,10992:31966990,13429398 +) +(1,10994:7246811,14750936:24720180,404226,107478 +(1,10993:7246811,14750936:0,0,0 +g1,10993:7246811,14750936 +g1,10993:7246811,14750936 +g1,10993:6919131,14750936 +(1,10993:6919131,14750936:0,0,0 +) +g1,10993:7246811,14750936 +) +k1,10994:7246811,14750936:0 +g1,10994:10408268,14750936 +g1,10994:11356705,14750936 +h1,10994:14518162,14750936:0,0,0 +k1,10994:31966990,14750936:17448828 +g1,10994:31966990,14750936 +) +(1,10998:7246811,15482650:24720180,404226,76021 +(1,10996:7246811,15482650:0,0,0 +g1,10996:7246811,15482650 +g1,10996:7246811,15482650 +g1,10996:6919131,15482650 +(1,10996:6919131,15482650:0,0,0 +) +g1,10996:7246811,15482650 +) +g1,10998:8195248,15482650 +g1,10998:9459831,15482650 +h1,10998:10724414,15482650:0,0,0 +k1,10998:31966990,15482650:21242576 +g1,10998:31966990,15482650 +) +(1,11000:7246811,16804188:24720180,404226,107478 +(1,10999:7246811,16804188:0,0,0 +g1,10999:7246811,16804188 +g1,10999:7246811,16804188 +g1,10999:6919131,16804188 +(1,10999:6919131,16804188:0,0,0 +) +g1,10999:7246811,16804188 +) +k1,11000:7246811,16804188:0 +g1,11000:12621288,16804188 +h1,11000:15466599,16804188:0,0,0 +k1,11000:31966991,16804188:16500392 +g1,11000:31966991,16804188 +) +(1,11004:7246811,17535902:24720180,404226,76021 +(1,11002:7246811,17535902:0,0,0 +g1,11002:7246811,17535902 +g1,11002:7246811,17535902 +g1,11002:6919131,17535902 +(1,11002:6919131,17535902:0,0,0 +) +g1,11002:7246811,17535902 +) +g1,11004:8195248,17535902 +g1,11004:9459831,17535902 +h1,11004:11040559,17535902:0,0,0 +k1,11004:31966991,17535902:20926432 +g1,11004:31966991,17535902 +) +(1,11006:7246811,18857440:24720180,404226,107478 +(1,11005:7246811,18857440:0,0,0 +g1,11005:7246811,18857440 +g1,11005:7246811,18857440 +g1,11005:6919131,18857440 +(1,11005:6919131,18857440:0,0,0 +) +g1,11005:7246811,18857440 +) +k1,11006:7246811,18857440:0 +g1,11006:12621288,18857440 +h1,11006:15782745,18857440:0,0,0 +k1,11006:31966991,18857440:16184246 +g1,11006:31966991,18857440 +) +(1,11010:7246811,19589154:24720180,404226,76021 +(1,11008:7246811,19589154:0,0,0 +g1,11008:7246811,19589154 +g1,11008:7246811,19589154 +g1,11008:6919131,19589154 +(1,11008:6919131,19589154:0,0,0 +) +g1,11008:7246811,19589154 +) +g1,11010:8195248,19589154 +g1,11010:9459831,19589154 +h1,11010:10724414,19589154:0,0,0 +k1,11010:31966990,19589154:21242576 +g1,11010:31966990,19589154 +) +] +) +g1,11011:31966991,19665175 +g1,11011:7246811,19665175 +g1,11011:7246811,19665175 +g1,11011:31966991,19665175 +g1,11011:31966991,19665175 +) +h1,11011:7246811,19861783:0,0,0 +(1,11015:7246811,21227559:24720180,505283,126483 +h1,11014:7246811,21227559:983040,0,0 +k1,11014:9664081,21227559:237543 +k1,11014:11423370,21227559:237543 +k1,11014:13516237,21227559:237543 +k1,11014:15414461,21227559:237542 +k1,11014:16936510,21227559:237543 +k1,11014:20127761,21227559:237543 +k1,11014:21356864,21227559:237543 +k1,11014:22210445,21227559:237543 +k1,11014:23214104,21227559:237543 +k1,11014:25149028,21227559:237542 +k1,11014:26405656,21227559:237543 +k1,11014:28296672,21227559:237543 +k1,11014:29220377,21227559:237543 +k1,11015:31966991,21227559:0 +) +(1,11015:7246811,22069047:24720180,513147,126483 +(1,11014:7246811,22069047:0,414482,115847 +r1,11017:7956789,22069047:709978,530329,115847 +k1,11014:7246811,22069047:-709978 +) +(1,11014:7246811,22069047:709978,414482,115847 +k1,11014:7246811,22069047:3277 +h1,11014:7953512,22069047:0,411205,112570 +) +k1,11014:8152445,22069047:195656 +k1,11014:9869847,22069047:195656 +k1,11014:11013154,22069047:195656 +k1,11014:13755538,22069047:195655 +k1,11014:14563956,22069047:195656 +k1,11014:16211234,22069047:195656 +k1,11014:19021121,22069047:195656 +k1,11014:19832815,22069047:195656 +k1,11014:21047556,22069047:195656 +k1,11014:23054627,22069047:195656 +k1,11014:24322451,22069047:195655 +k1,11014:25584378,22069047:195656 +k1,11014:26799119,22069047:195656 +k1,11014:30277473,22069047:195656 +k1,11014:31966991,22069047:0 +) +(1,11015:7246811,22910535:24720180,513147,134348 +k1,11014:10813254,22910535:283745 +k1,11014:14077577,22910535:283746 +(1,11014:14077577,22910535:0,452978,115847 +r1,11017:15842690,22910535:1765113,568825,115847 +k1,11014:14077577,22910535:-1765113 +) +(1,11014:14077577,22910535:1765113,452978,115847 +k1,11014:14077577,22910535:3277 +h1,11014:15839413,22910535:0,411205,112570 +) +k1,11014:16126435,22910535:283745 +k1,11014:18153438,22910535:283745 +k1,11014:21072387,22910535:283746 +k1,11014:23634819,22910535:283745 +k1,11014:26060281,22910535:283745 +k1,11014:27535472,22910535:283746 +k1,11014:30479979,22910535:283745 +k1,11014:31966991,22910535:0 +) +(1,11015:7246811,23752023:24720180,505283,134348 +g1,11014:8637485,23752023 +g1,11014:9561542,23752023 +g1,11014:11140959,23752023 +g1,11014:12331748,23752023 +g1,11014:13597248,23752023 +g1,11014:16499837,23752023 +k1,11015:31966991,23752023:13003656 +g1,11015:31966991,23752023 +) +(1,11017:7246811,24593511:24720180,513147,126483 +h1,11016:7246811,24593511:983040,0,0 +k1,11016:8993033,24593511:285425 +k1,11016:10146810,24593511:285425 +k1,11016:12730583,24593511:285425 +(1,11016:12730583,24593511:0,452978,115847 +r1,11017:14847408,24593511:2116825,568825,115847 +k1,11016:12730583,24593511:-2116825 +) +(1,11016:12730583,24593511:2116825,452978,115847 +k1,11016:12730583,24593511:3277 +h1,11016:14844131,24593511:0,411205,112570 +) +k1,11016:15132832,24593511:285424 +k1,11016:16179785,24593511:285425 +(1,11016:16179785,24593511:0,459977,115847 +r1,11017:19703457,24593511:3523672,575824,115847 +k1,11016:16179785,24593511:-3523672 +) +(1,11016:16179785,24593511:3523672,459977,115847 +k1,11016:16179785,24593511:3277 +h1,11016:19700180,24593511:0,411205,112570 +) +k1,11016:19988882,24593511:285425 +k1,11016:20890345,24593511:285425 +k1,11016:22194855,24593511:285425 +k1,11016:23786413,24593511:285425 +k1,11016:27431868,24593511:285424 +k1,11016:28908738,24593511:285425 +k1,11016:30947906,24593511:285425 +k1,11016:31966991,24593511:0 +) +(1,11017:7246811,25434999:24720180,513147,115847 +k1,11016:9620945,25434999:229796 +k1,11016:10869826,25434999:229796 +k1,11016:12942494,25434999:229796 +k1,11016:13831583,25434999:229797 +k1,11016:15080464,25434999:229796 +k1,11016:16458451,25434999:229796 +k1,11016:19874607,25434999:229796 +k1,11016:20720441,25434999:229796 +k1,11016:21969322,25434999:229796 +k1,11016:24169786,25434999:229796 +k1,11016:24931080,25434999:229797 +(1,11016:24931080,25434999:0,414482,115847 +r1,11017:26696193,25434999:1765113,530329,115847 +k1,11016:24931080,25434999:-1765113 +) +(1,11016:24931080,25434999:1765113,414482,115847 +k1,11016:24931080,25434999:3277 +h1,11016:26692916,25434999:0,411205,112570 +) +k1,11016:26925989,25434999:229796 +k1,11016:29482968,25434999:229796 +k1,11016:30379920,25434999:229796 +(1,11016:30379920,25434999:0,414482,115847 +r1,11017:31793321,25434999:1413401,530329,115847 +k1,11016:30379920,25434999:-1413401 +) +(1,11016:30379920,25434999:1413401,414482,115847 +k1,11016:30379920,25434999:3277 +h1,11016:31790044,25434999:0,411205,112570 +) +k1,11016:31966991,25434999:0 +) +(1,11017:7246811,26276487:24720180,513147,134348 +k1,11016:8272408,26276487:281108 +k1,11016:9572601,26276487:281108 +k1,11016:11279117,26276487:281108 +k1,11016:12219517,26276487:281108 +k1,11016:14758340,26276487:281108 +k1,11016:17518019,26276487:281107 +k1,11016:19193078,26276487:281108 +k1,11016:19830046,26276487:281108 +(1,11016:19830046,26276487:0,459977,115847 +r1,11017:23353718,26276487:3523672,575824,115847 +k1,11016:19830046,26276487:-3523672 +) +(1,11016:19830046,26276487:3523672,459977,115847 +k1,11016:19830046,26276487:3277 +h1,11016:23350441,26276487:0,411205,112570 +) +k1,11016:23634826,26276487:281108 +k1,11016:26049131,26276487:281108 +k1,11016:29084062,26276487:281108 +k1,11016:31966991,26276487:0 +) +(1,11017:7246811,27117975:24720180,513147,134348 +k1,11016:8922650,27117975:281888 +(1,11016:8922650,27117975:0,452978,122846 +r1,11017:12446322,27117975:3523672,575824,122846 +k1,11016:8922650,27117975:-3523672 +) +(1,11016:8922650,27117975:3523672,452978,122846 +k1,11016:8922650,27117975:3277 +h1,11016:12443045,27117975:0,411205,112570 +) +k1,11016:12728211,27117975:281889 +k1,11016:15763266,27117975:281888 +k1,11016:16806683,27117975:281889 +k1,11016:20801186,27117975:281888 +k1,11016:22477025,27117975:281888 +(1,11016:22477025,27117975:0,452978,122846 +r1,11017:25648985,27117975:3171960,575824,122846 +k1,11016:22477025,27117975:-3171960 +) +(1,11016:22477025,27117975:3171960,452978,122846 +k1,11016:22477025,27117975:3277 +h1,11016:25645708,27117975:0,411205,112570 +) +k1,11016:25930874,27117975:281889 +k1,11016:27313767,27117975:281888 +k1,11016:28614741,27117975:281889 +k1,11016:30196208,27117975:281888 +k1,11016:31966991,27117975:0 +) +(1,11017:7246811,27959463:24720180,513147,134348 +k1,11016:8119095,27959463:212992 +k1,11016:11715055,27959463:212992 +k1,11016:12947132,27959463:212992 +k1,11016:14549487,27959463:212992 +k1,11016:16638775,27959463:212992 +k1,11016:18119233,27959463:212992 +k1,11016:18688085,27959463:212992 +k1,11016:20886162,27959463:212991 +k1,11016:22479998,27959463:212992 +k1,11016:23224487,27959463:212992 +k1,11016:26791612,27959463:212992 +k1,11016:27656032,27959463:212992 +k1,11016:28616790,27959463:212992 +k1,11016:30183756,27959463:212992 +k1,11016:31966991,27959463:0 +) +(1,11017:7246811,28800951:24720180,513147,126483 +k1,11016:9275622,28800951:160380 +k1,11016:10268965,28800951:160380 +k1,11016:11115507,28800951:160380 +k1,11016:12930672,28800951:160381 +k1,11016:14082612,28800951:160380 +k1,11016:17759654,28800951:160380 +k1,11016:18536072,28800951:160380 +k1,11016:20026833,28800951:160380 +k1,11016:21206298,28800951:160380 +k1,11016:24581220,28800951:160381 +k1,11016:27488214,28800951:160380 +(1,11016:27488214,28800951:0,452978,115847 +r1,11017:29253328,28800951:1765114,568825,115847 +k1,11016:27488214,28800951:-1765114 +) +(1,11016:27488214,28800951:1765114,452978,115847 +g1,11016:28194915,28800951 +g1,11016:28898339,28800951 +h1,11016:29250051,28800951:0,411205,112570 +) +k1,11016:29413708,28800951:160380 +k1,11016:31966991,28800951:0 +) +(1,11017:7246811,29642439:24720180,513147,134348 +k1,11016:8137305,29642439:274456 +k1,11016:9430845,29642439:274455 +k1,11016:10877740,29642439:274456 +k1,11016:13023248,29642439:274455 +k1,11016:14494391,29642439:274456 +k1,11016:16067114,29642439:274455 +k1,11016:17579545,29642439:274456 +k1,11016:18505428,29642439:274455 +k1,11016:20394691,29642439:274456 +k1,11016:22165333,29642439:274455 +k1,11016:24798430,29642439:274456 +k1,11016:26165370,29642439:274455 +k1,11016:27099118,29642439:274456 +k1,11016:30399370,29642439:274455 +k1,11016:31966991,29642439:0 +) +(1,11017:7246811,30483927:24720180,513147,126483 +g1,11016:9418673,30483927 +g1,11016:10809347,30483927 +g1,11016:12813437,30483927 +g1,11016:13544163,30483927 +g1,11016:14394820,30483927 +g1,11016:16723314,30483927 +g1,11016:18015028,30483927 +g1,11016:20355974,30483927 +g1,11016:22882386,30483927 +g1,11016:23740907,30483927 +g1,11016:25329499,30483927 +k1,11017:31966991,30483927:4257224 +g1,11017:31966991,30483927 +) +] +) +] +r1,11017:32583029,31200234:26214,25339353,0 +) +] +) +) +g1,11017:32583029,30610410 +) +h1,11017:6630773,31226448:0,0,0 +(1,11020:6630773,33841996:25952256,555811,104529 +(1,11020:6630773,33841996:2450326,534184,12975 +g1,11020:6630773,33841996 +g1,11020:9081099,33841996 +) +k1,11020:32583028,33841996:21647784 +g1,11020:32583028,33841996 +) +(1,11024:6630773,35076700:25952256,505283,95026 +k1,11023:8556330,35076700:308128 +k1,11023:10546113,35076700:308129 +k1,11023:11599385,35076700:308128 +k1,11023:12558941,35076700:308128 +k1,11023:15578950,35076700:308129 +k1,11023:17059517,35076700:308128 +k1,11023:18757008,35076700:308128 +k1,11023:21504387,35076700:308129 +k1,11023:23697986,35076700:308128 +k1,11023:25742818,35076700:308128 +k1,11023:27743087,35076700:308129 +k1,11023:31066526,35076700:308128 +k1,11024:32583029,35076700:0 +) +(1,11024:6630773,35918188:25952256,513147,134348 +k1,11023:8463104,35918188:193276 +k1,11023:9272419,35918188:193277 +k1,11023:12243111,35918188:193276 +k1,11023:13427948,35918188:193277 +k1,11023:15134450,35918188:193276 +k1,11023:15979155,35918188:193277 +k1,11023:18153584,35918188:193276 +k1,11023:19365946,35918188:193277 +k1,11023:24182787,35918188:193276 +k1,11023:25910262,35918188:193277 +k1,11023:28146295,35918188:193276 +k1,11023:31167451,35918188:193277 +k1,11024:32583029,35918188:0 +) +(1,11024:6630773,36759676:25952256,513147,134348 +k1,11023:8498132,36759676:228304 +k1,11023:10003076,36759676:228303 +k1,11023:13151664,36759676:228304 +k1,11023:14947588,36759676:228303 +k1,11023:16642588,36759676:228304 +k1,11023:19310141,36759676:228303 +k1,11023:22392538,36759676:228304 +k1,11023:24453228,36759676:228303 +k1,11023:25673092,36759676:228304 +k1,11023:28132896,36759676:228303 +k1,11023:29557232,36759676:228304 +k1,11023:32583029,36759676:0 +) +(1,11024:6630773,37601164:25952256,513147,126483 +k1,11023:7495673,37601164:248862 +k1,11023:9890838,37601164:248862 +k1,11023:11697491,37601164:248862 +k1,11023:13689611,37601164:248862 +k1,11023:16096574,37601164:248862 +k1,11023:16961474,37601164:248862 +k1,11023:18540717,37601164:248862 +k1,11023:20169768,37601164:248863 +k1,11023:22577386,37601164:248862 +k1,11023:24360446,37601164:248862 +k1,11023:25893814,37601164:248862 +k1,11023:26957944,37601164:248862 +k1,11023:28273077,37601164:248862 +k1,11023:29997154,37601164:248862 +k1,11023:30601876,37601164:248862 +k1,11023:32583029,37601164:0 +) +(1,11024:6630773,38442652:25952256,505283,7863 +g1,11023:9465205,38442652 +g1,11023:11053797,38442652 +k1,11024:32583029,38442652:18916312 +g1,11024:32583029,38442652 +) +(1,11026:6630773,39284140:25952256,513147,7863 +h1,11025:6630773,39284140:983040,0,0 +k1,11025:8786252,39284140:218890 +k1,11025:10934522,39284140:218890 +k1,11025:12551295,39284140:218890 +k1,11025:14462325,39284140:218890 +k1,11025:17309864,39284140:218890 +k1,11025:18918118,39284140:218891 +k1,11025:19788436,39284140:218890 +k1,11025:24040412,39284140:218890 +k1,11025:25278387,39284140:218890 +k1,11025:26589762,39284140:218890 +k1,11025:27467944,39284140:218890 +k1,11025:29383561,39284140:218890 +k1,11025:32583029,39284140:0 +) +(1,11026:6630773,40125628:25952256,505283,102891 +k1,11025:7750229,40125628:165907 +k1,11025:9048598,40125628:165907 +k1,11025:11143885,40125628:165907 +k1,11025:12482230,40125628:165906 +k1,11025:14364525,40125628:165907 +k1,11025:16845819,40125628:165907 +k1,11025:18405677,40125628:165907 +k1,11025:19728294,40125628:165907 +k1,11025:22277090,40125628:165907 +k1,11025:23059034,40125628:165906 +k1,11025:26002357,40125628:165907 +k1,11025:27359709,40125628:165907 +k1,11025:28682326,40125628:165907 +k1,11025:32583029,40125628:0 +) +(1,11026:6630773,40967116:25952256,505283,7863 +g1,11025:8033898,40967116 +g1,11025:8849165,40967116 +k1,11026:32583030,40967116:22108572 +g1,11026:32583030,40967116 +) +v1,11030:6630773,42157582:0,393216,0 +(1,11035:6630773,43119982:25952256,1355616,196608 +g1,11035:6630773,43119982 +g1,11035:6630773,43119982 +g1,11035:6434165,43119982 +(1,11035:6434165,43119982:0,1355616,196608 +r1,11035:32779637,43119982:26345472,1552224,196608 +k1,11035:6434165,43119982:-26345472 +) +(1,11035:6434165,43119982:26345472,1355616,196608 +[1,11035:6630773,43119982:25952256,1159008,0 +(1,11032:6630773,42371492:25952256,410518,82312 +(1,11031:6630773,42371492:0,0,0 +g1,11031:6630773,42371492 +g1,11031:6630773,42371492 +g1,11031:6303093,42371492 +(1,11031:6303093,42371492:0,0,0 +) +g1,11031:6630773,42371492 +) +g1,11032:9476084,42371492 +g1,11032:10424522,42371492 +g1,11032:13902125,42371492 +g1,11032:14534417,42371492 +g1,11032:16747439,42371492 +g1,11032:18012023,42371492 +g1,11032:20541189,42371492 +g1,11032:21173481,42371492 +h1,11032:22438064,42371492:0,0,0 +k1,11032:32583029,42371492:10144965 +g1,11032:32583029,42371492 +) +(1,11033:6630773,43037670:25952256,404226,82312 +h1,11033:6630773,43037670:0,0,0 +g1,11033:9792230,43037670 +g1,11033:10740668,43037670 +g1,11033:14218271,43037670 +g1,11033:14850563,43037670 +g1,11033:17063585,43037670 +g1,11033:18328169,43037670 +g1,11033:20857335,43037670 +g1,11033:21489627,43037670 +h1,11033:22754210,43037670:0,0,0 +k1,11033:32583029,43037670:9828819 +g1,11033:32583029,43037670 +) +] +) +g1,11035:32583029,43119982 +g1,11035:6630773,43119982 +g1,11035:6630773,43119982 +g1,11035:32583029,43119982 +g1,11035:32583029,43119982 +) +h1,11035:6630773,43316590:0,0,0 +(1,11039:6630773,44682366:25952256,513147,126483 +h1,11038:6630773,44682366:983040,0,0 +k1,11038:9767419,44682366:286485 +k1,11038:10922255,44682366:286484 +k1,11038:12972314,44682366:286485 +k1,11038:14277884,44682366:286485 +k1,11038:14277884,44682366:0 +k1,11038:17590165,44682366:286484 +k1,11038:20717636,44682366:286485 +k1,11038:21765649,44682366:286485 +k1,11038:24198436,44682366:286484 +(1,11038:24198436,44682366:0,459977,122846 +r1,11038:28073820,44682366:3875384,582823,122846 +k1,11038:24198436,44682366:-3875384 +) +(1,11038:24198436,44682366:3875384,459977,122846 +k1,11038:24198436,44682366:3277 +h1,11038:28070543,44682366:0,411205,112570 +) +k1,11038:28533975,44682366:286485 +(1,11038:28533975,44682366:0,459977,122846 +r1,11038:32409359,44682366:3875384,582823,122846 +k1,11038:28533975,44682366:-3875384 +) +(1,11038:28533975,44682366:3875384,459977,122846 +k1,11038:28533975,44682366:3277 +h1,11038:32406082,44682366:0,411205,112570 +) +k1,11039:32583029,44682366:0 +) +(1,11039:6630773,45523854:25952256,513147,126483 +(1,11038:6630773,45523854:0,452978,122846 +r1,11038:10857869,45523854:4227096,575824,122846 +k1,11038:6630773,45523854:-4227096 +) +(1,11038:6630773,45523854:4227096,452978,122846 +k1,11038:6630773,45523854:3277 +h1,11038:10854592,45523854:0,411205,112570 +) +k1,11038:11123940,45523854:266071 +k1,11038:12581455,45523854:266070 +(1,11038:12581455,45523854:0,452978,122846 +r1,11038:16808551,45523854:4227096,575824,122846 +k1,11038:12581455,45523854:-4227096 +) +(1,11038:12581455,45523854:4227096,452978,122846 +k1,11038:12581455,45523854:3277 +h1,11038:16805274,45523854:0,411205,112570 +) +k1,11038:17248292,45523854:266071 +k1,11038:19388693,45523854:266071 +k1,11038:22680560,45523854:266070 +k1,11038:25075896,45523854:266071 +k1,11038:27206466,45523854:266071 +k1,11038:28238652,45523854:266070 +k1,11038:31391584,45523854:266071 +k1,11038:32583029,45523854:0 +) +] +(1,11040:32583029,45706769:0,0,0 +g1,11040:32583029,45706769 +) +) +] +(1,11040:6630773,47279633:25952256,0,0 +h1,11040:6630773,47279633:25952256,0,0 +) +] +h1,11040:4262630,4025873:0,0,0 ] !25738 }206 -Input:1406:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1407:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1408:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1409:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1410:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1411:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1412:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1413:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1414:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1415:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1416:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 +Input:1402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 {207 -[1,11118:4262630,47279633:28320399,43253760,0 -(1,11118:4262630,4025873:0,0,0 -[1,11118:-473657,4025873:25952256,0,0 -(1,11118:-473657,-710414:25952256,0,0 -h1,11118:-473657,-710414:0,0,0 -(1,11118:-473657,-710414:0,0,0 -(1,11118:-473657,-710414:0,0,0 -g1,11118:-473657,-710414 -(1,11118:-473657,-710414:65781,0,65781 -g1,11118:-407876,-710414 -[1,11118:-407876,-644633:0,0,0 +[1,11123:4262630,47279633:28320399,43253760,0 +(1,11123:4262630,4025873:0,0,0 +[1,11123:-473657,4025873:25952256,0,0 +(1,11123:-473657,-710414:25952256,0,0 +h1,11123:-473657,-710414:0,0,0 +(1,11123:-473657,-710414:0,0,0 +(1,11123:-473657,-710414:0,0,0 +g1,11123:-473657,-710414 +(1,11123:-473657,-710414:65781,0,65781 +g1,11123:-407876,-710414 +[1,11123:-407876,-644633:0,0,0 ] ) -k1,11118:-473657,-710414:-65781 +k1,11123:-473657,-710414:-65781 ) ) -k1,11118:25478599,-710414:25952256 -g1,11118:25478599,-710414 +k1,11123:25478599,-710414:25952256 +g1,11123:25478599,-710414 ) ] ) -[1,11118:6630773,47279633:25952256,43253760,0 -[1,11118:6630773,4812305:25952256,786432,0 -(1,11118:6630773,4812305:25952256,513147,134348 -(1,11118:6630773,4812305:25952256,513147,134348 -g1,11118:3078558,4812305 -[1,11118:3078558,4812305:0,0,0 -(1,11118:3078558,2439708:0,1703936,0 -k1,11118:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,11118:2537886,2439708:1179648,16384,0 +[1,11123:6630773,47279633:25952256,43253760,0 +[1,11123:6630773,4812305:25952256,786432,0 +(1,11123:6630773,4812305:25952256,513147,134348 +(1,11123:6630773,4812305:25952256,513147,134348 +g1,11123:3078558,4812305 +[1,11123:3078558,4812305:0,0,0 +(1,11123:3078558,2439708:0,1703936,0 +k1,11123:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,11123:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,11118:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,11123:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,11118:3078558,4812305:0,0,0 -(1,11118:3078558,2439708:0,1703936,0 -g1,11118:29030814,2439708 -g1,11118:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,11118:36151628,1915420:16384,1179648,0 +[1,11123:3078558,4812305:0,0,0 +(1,11123:3078558,2439708:0,1703936,0 +g1,11123:29030814,2439708 +g1,11123:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,11123:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,11118:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,11123:37855564,2439708:1179648,16384,0 ) ) -k1,11118:3078556,2439708:-34777008 +k1,11123:3078556,2439708:-34777008 ) ] -[1,11118:3078558,4812305:0,0,0 -(1,11118:3078558,49800853:0,16384,2228224 -k1,11118:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,11118:2537886,49800853:1179648,16384,0 +[1,11123:3078558,4812305:0,0,0 +(1,11123:3078558,49800853:0,16384,2228224 +k1,11123:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,11123:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,11118:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,11123:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,11118:3078558,4812305:0,0,0 -(1,11118:3078558,49800853:0,16384,2228224 -g1,11118:29030814,49800853 -g1,11118:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,11118:36151628,51504789:16384,1179648,0 +[1,11123:3078558,4812305:0,0,0 +(1,11123:3078558,49800853:0,16384,2228224 +g1,11123:29030814,49800853 +g1,11123:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,11123:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,11118:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,11123:37855564,49800853:1179648,16384,0 ) ) -k1,11118:3078556,49800853:-34777008 -) -] -g1,11118:6630773,4812305 -k1,11118:25241686,4812305:17415536 -g1,11118:26807341,4812305 -g1,11118:30339731,4812305 -g1,11118:31154998,4812305 -) -) -] -[1,11118:6630773,45706769:25952256,40108032,0 -(1,11118:6630773,45706769:25952256,40108032,0 -(1,11118:6630773,45706769:0,0,0 -g1,11118:6630773,45706769 -) -[1,11118:6630773,45706769:25952256,40108032,0 -(1,11034:6630773,6254097:25952256,513147,134348 -k1,11033:7478557,6254097:231746 -k1,11033:9077383,6254097:231745 -k1,11033:9968421,6254097:231746 -k1,11033:12871413,6254097:231745 -k1,11033:15935625,6254097:231746 -k1,11033:17675353,6254097:231745 -k1,11033:18262959,6254097:231746 -k1,11033:19698600,6254097:231745 -k1,11033:20877997,6254097:231746 -k1,11033:22561364,6254097:231745 -k1,11033:25764512,6254097:231746 -k1,11033:29984123,6254097:231745 -k1,11033:30875161,6254097:231746 -k1,11033:32583029,6254097:0 -) -(1,11034:6630773,7095585:25952256,505283,134348 -k1,11033:7810780,7095585:226458 -k1,11033:10053780,7095585:226457 -k1,11033:11731860,7095585:226458 -k1,11033:14619734,7095585:226457 -k1,11033:16240143,7095585:226458 -k1,11033:17485685,7095585:226457 -k1,11033:21114772,7095585:226458 -k1,11033:23546517,7095585:226458 -k1,11033:24424402,7095585:226457 -(1,11033:24424402,7095585:0,414482,115847 -r1,11033:24782668,7095585:358266,530329,115847 -k1,11033:24424402,7095585:-358266 -) -(1,11033:24424402,7095585:358266,414482,115847 -k1,11033:24424402,7095585:3277 -h1,11033:24779391,7095585:0,411205,112570 -) -k1,11033:25009126,7095585:226458 -k1,11033:26427028,7095585:226457 -(1,11033:26427028,7095585:0,414482,115847 -r1,11033:26785294,7095585:358266,530329,115847 -k1,11033:26427028,7095585:-358266 -) -(1,11033:26427028,7095585:358266,414482,115847 -k1,11033:26427028,7095585:3277 -h1,11033:26782017,7095585:0,411205,112570 -) -k1,11033:27011752,7095585:226458 -k1,11033:30054946,7095585:226457 -k1,11033:30932832,7095585:226458 -k1,11033:32583029,7095585:0 -) -(1,11034:6630773,7937073:25952256,513147,126483 -g1,11033:8926499,7937073 -g1,11033:10786410,7937073 -g1,11033:12494278,7937073 -g1,11033:15455850,7937073 -k1,11034:32583029,7937073:14193788 -g1,11034:32583029,7937073 -) -(1,11036:6630773,8778561:25952256,513147,134348 -h1,11035:6630773,8778561:983040,0,0 -k1,11035:8290875,8778561:189474 -k1,11035:9570222,8778561:189483 -k1,11035:10997025,8778561:189483 -k1,11035:13381309,8778561:189483 -k1,11035:14336908,8778561:189483 -k1,11035:18105313,8778561:189484 -k1,11035:19828994,8778561:189483 -k1,11035:21849553,8778561:189483 -k1,11035:24511054,8778561:189483 -k1,11035:26711182,8778561:189483 -k1,11035:28294617,8778561:189484 -(1,11035:28294617,8778561:0,414482,115847 -r1,11035:29004595,8778561:709978,530329,115847 -k1,11035:28294617,8778561:-709978 -) -(1,11035:28294617,8778561:709978,414482,115847 -k1,11035:28294617,8778561:3277 -h1,11035:29001318,8778561:0,411205,112570 -) -k1,11035:29367748,8778561:189483 -k1,11035:30317449,8778561:189483 -k1,11035:32583029,8778561:0 -) -(1,11036:6630773,9620049:25952256,505283,115847 -k1,11035:7925790,9620049:275932 -k1,11035:10182875,9620049:275932 -k1,11035:10990303,9620049:275931 -k1,11035:12843687,9620049:275932 -k1,11035:13928989,9620049:275932 -k1,11035:16918112,9620049:275932 -k1,11035:18587995,9620049:275932 -k1,11035:19883012,9620049:275932 -k1,11035:21812416,9620049:275931 -k1,11035:23826363,9620049:275932 -k1,11035:24718333,9620049:275932 -(1,11035:24718333,9620049:0,414482,115847 -r1,11035:25076599,9620049:358266,530329,115847 -k1,11035:24718333,9620049:-358266 -) -(1,11035:24718333,9620049:358266,414482,115847 -k1,11035:24718333,9620049:3277 -h1,11035:25073322,9620049:0,411205,112570 -) -k1,11035:25352531,9620049:275932 -k1,11035:26819908,9620049:275932 -(1,11035:26819908,9620049:0,414482,115847 -r1,11035:27178174,9620049:358266,530329,115847 -k1,11035:26819908,9620049:-358266 -) -(1,11035:26819908,9620049:358266,414482,115847 -k1,11035:26819908,9620049:3277 -h1,11035:27174897,9620049:0,411205,112570 -) -k1,11035:27627776,9620049:275932 -k1,11035:28975876,9620049:275931 -k1,11035:30455049,9620049:275932 -k1,11035:31835263,9620049:275932 -k1,11035:32583029,9620049:0 -) -(1,11036:6630773,10461537:25952256,505283,134348 -k1,11035:9452628,10461537:160438 -k1,11035:10374593,10461537:160437 -k1,11035:12962485,10461537:160438 -k1,11035:13893626,10461537:160438 -k1,11035:17126392,10461537:160438 -k1,11035:17938257,10461537:160437 -k1,11035:21379427,10461537:160438 -(1,11035:21379427,10461537:0,452978,115847 -r1,11035:22089405,10461537:709978,568825,115847 -k1,11035:21379427,10461537:-709978 -) -(1,11035:21379427,10461537:709978,452978,115847 -k1,11035:21379427,10461537:3277 -h1,11035:22086128,10461537:0,411205,112570 -) -k1,11035:22423513,10461537:160438 -k1,11035:24375704,10461537:160437 -(1,11035:24375704,10461537:0,452978,115847 -r1,11035:25085682,10461537:709978,568825,115847 -k1,11035:24375704,10461537:-709978 -) -(1,11035:24375704,10461537:709978,452978,115847 -k1,11035:24375704,10461537:3277 -h1,11035:25082405,10461537:0,411205,112570 -) -k1,11035:25246120,10461537:160438 -k1,11035:26563268,10461537:160438 -k1,11035:27827988,10461537:160438 -k1,11035:29422353,10461537:160437 -k1,11035:30601876,10461537:160438 -k1,11035:32583029,10461537:0 -) -(1,11036:6630773,11303025:25952256,513147,134348 -k1,11035:7631726,11303025:191583 -k1,11035:10536500,11303025:191583 -k1,11035:12012589,11303025:191583 -k1,11035:13679388,11303025:191584 -k1,11035:16633314,11303025:191583 -k1,11035:18893213,11303025:191583 -k1,11035:19700834,11303025:191583 -(1,11035:19700834,11303025:0,414482,115847 -r1,11035:20059100,11303025:358266,530329,115847 -k1,11035:19700834,11303025:-358266 -) -(1,11035:19700834,11303025:358266,414482,115847 -k1,11035:19700834,11303025:3277 -h1,11035:20055823,11303025:0,411205,112570 -) -k1,11035:20250683,11303025:191583 -k1,11035:21633711,11303025:191583 -(1,11035:21633711,11303025:0,414482,115847 -r1,11035:21991977,11303025:358266,530329,115847 -k1,11035:21633711,11303025:-358266 -) -(1,11035:21633711,11303025:358266,414482,115847 -k1,11035:21633711,11303025:3277 -h1,11035:21988700,11303025:0,411205,112570 -) -k1,11035:22357230,11303025:191583 -k1,11035:23231699,11303025:191584 -k1,11035:25855978,11303025:191583 -k1,11035:29018963,11303025:191583 -k1,11035:29869838,11303025:191583 -k1,11035:32583029,11303025:0 -) -(1,11036:6630773,12144513:25952256,513147,126483 -g1,11035:8223953,12144513 -g1,11035:9442267,12144513 -g1,11035:11294969,12144513 -g1,11035:13232213,12144513 -g1,11035:14047480,12144513 -(1,11035:14047480,12144513:0,414482,115847 -r1,11035:14405746,12144513:358266,530329,115847 -k1,11035:14047480,12144513:-358266 -) -(1,11035:14047480,12144513:358266,414482,115847 -k1,11035:14047480,12144513:3277 -h1,11035:14402469,12144513:0,411205,112570 -) -g1,11035:14604975,12144513 -g1,11035:15995649,12144513 -(1,11035:15995649,12144513:0,414482,115847 -r1,11035:16353915,12144513:358266,530329,115847 -k1,11035:15995649,12144513:-358266 -) -(1,11035:15995649,12144513:358266,414482,115847 -k1,11035:15995649,12144513:3277 -h1,11035:16350638,12144513:0,411205,112570 -) -g1,11035:16553144,12144513 -g1,11035:19620884,12144513 -g1,11035:20432875,12144513 -g1,11035:21815029,12144513 -g1,11035:22673550,12144513 -g1,11035:23891864,12144513 -k1,11036:32583029,12144513:6031714 -g1,11036:32583029,12144513 -) -v1,11038:6630773,13324800:0,393216,0 -(1,11055:6630773,20865286:25952256,7933702,196608 -g1,11055:6630773,20865286 -g1,11055:6630773,20865286 -g1,11055:6434165,20865286 -(1,11055:6434165,20865286:0,7933702,196608 -r1,11055:32779637,20865286:26345472,8130310,196608 -k1,11055:6434165,20865286:-26345472 -) -(1,11055:6434165,20865286:26345472,7933702,196608 -[1,11055:6630773,20865286:25952256,7737094,0 -(1,11040:6630773,13538710:25952256,410518,107478 -(1,11039:6630773,13538710:0,0,0 -g1,11039:6630773,13538710 -g1,11039:6630773,13538710 -g1,11039:6303093,13538710 -(1,11039:6303093,13538710:0,0,0 -) -g1,11039:6630773,13538710 -) -k1,11040:6630773,13538710:0 -g1,11040:10424522,13538710 -g1,11040:11056814,13538710 -g1,11040:14218271,13538710 -g1,11040:14850563,13538710 -g1,11040:15482855,13538710 -h1,11040:18644312,13538710:0,0,0 -k1,11040:32583029,13538710:13938717 -g1,11040:32583029,13538710 -) -(1,11044:6630773,14860248:25952256,404226,107478 -g1,11044:7579210,14860248 -g1,11044:10424521,14860248 -g1,11044:11372958,14860248 -g1,11044:12005250,14860248 -k1,11044:32583030,14860248:18997052 -g1,11044:32583030,14860248 -) -(1,11054:6630773,15526426:25952256,404226,9436 -(1,11044:6630773,15526426:0,0,0 -g1,11044:6630773,15526426 -g1,11044:6630773,15526426 -g1,11044:6303093,15526426 -(1,11044:6303093,15526426:0,0,0 -) -g1,11044:6630773,15526426 -) -g1,11054:7579210,15526426 -g1,11054:8211502,15526426 -g1,11054:8843794,15526426 -g1,11054:11372960,15526426 -g1,11054:12005252,15526426 -g1,11054:12637544,15526426 -h1,11054:12953690,15526426:0,0,0 -k1,11054:32583030,15526426:19629340 -g1,11054:32583030,15526426 -) -(1,11054:6630773,16192604:25952256,404226,6290 -h1,11054:6630773,16192604:0,0,0 -g1,11054:7579210,16192604 -g1,11054:7895356,16192604 -g1,11054:8211502,16192604 -g1,11054:8527648,16192604 -g1,11054:8843794,16192604 -g1,11054:10108377,16192604 -g1,11054:12637543,16192604 -h1,11054:14850563,16192604:0,0,0 -k1,11054:32583029,16192604:17732466 -g1,11054:32583029,16192604 -) -(1,11054:6630773,16858782:25952256,404226,6290 -h1,11054:6630773,16858782:0,0,0 -g1,11054:7579210,16858782 -g1,11054:7895356,16858782 -g1,11054:8211502,16858782 -g1,11054:10108377,16858782 -g1,11054:12005252,16858782 -g1,11054:12321398,16858782 -g1,11054:12637544,16858782 -k1,11054:12637544,16858782:0 -h1,11054:14218273,16858782:0,0,0 -k1,11054:32583029,16858782:18364756 -g1,11054:32583029,16858782 -) -(1,11054:6630773,17524960:25952256,404226,6290 -h1,11054:6630773,17524960:0,0,0 -g1,11054:7579210,17524960 -g1,11054:8211502,17524960 -g1,11054:8527648,17524960 -g1,11054:8843794,17524960 -g1,11054:9159940,17524960 -g1,11054:9476086,17524960 -g1,11054:10108378,17524960 -g1,11054:10740670,17524960 -g1,11054:11056816,17524960 -g1,11054:11372962,17524960 -g1,11054:11689108,17524960 -g1,11054:12005254,17524960 -g1,11054:12321400,17524960 -g1,11054:12637546,17524960 -h1,11054:12953692,17524960:0,0,0 -k1,11054:32583028,17524960:19629336 -g1,11054:32583028,17524960 -) -(1,11054:6630773,18191138:25952256,404226,6290 -h1,11054:6630773,18191138:0,0,0 -g1,11054:7579210,18191138 -g1,11054:8211502,18191138 -g1,11054:8527648,18191138 -g1,11054:8843794,18191138 -g1,11054:9159940,18191138 -g1,11054:9476086,18191138 -g1,11054:10108378,18191138 -g1,11054:10740670,18191138 -g1,11054:11056816,18191138 -g1,11054:11372962,18191138 -g1,11054:11689108,18191138 -g1,11054:12005254,18191138 -g1,11054:12321400,18191138 -g1,11054:12637546,18191138 -h1,11054:12953692,18191138:0,0,0 -k1,11054:32583028,18191138:19629336 -g1,11054:32583028,18191138 -) -(1,11054:6630773,18857316:25952256,404226,9436 -h1,11054:6630773,18857316:0,0,0 -g1,11054:7579210,18857316 -g1,11054:8211502,18857316 -g1,11054:8527648,18857316 -g1,11054:8843794,18857316 -g1,11054:9159940,18857316 -g1,11054:9476086,18857316 -g1,11054:10108378,18857316 -g1,11054:10740670,18857316 -g1,11054:11056816,18857316 -g1,11054:11372962,18857316 -g1,11054:11689108,18857316 -g1,11054:12005254,18857316 -g1,11054:12321400,18857316 -g1,11054:12637546,18857316 -h1,11054:12953692,18857316:0,0,0 -k1,11054:32583028,18857316:19629336 -g1,11054:32583028,18857316 -) -(1,11054:6630773,19523494:25952256,404226,6290 -h1,11054:6630773,19523494:0,0,0 -g1,11054:7579210,19523494 -g1,11054:8211502,19523494 -g1,11054:8527648,19523494 -g1,11054:8843794,19523494 -g1,11054:9159940,19523494 -g1,11054:9476086,19523494 -g1,11054:10108378,19523494 -g1,11054:10740670,19523494 -g1,11054:11056816,19523494 -g1,11054:11372962,19523494 -g1,11054:11689108,19523494 -g1,11054:12005254,19523494 -g1,11054:12321400,19523494 -g1,11054:12637546,19523494 -h1,11054:12953692,19523494:0,0,0 -k1,11054:32583028,19523494:19629336 -g1,11054:32583028,19523494 -) -(1,11054:6630773,20189672:25952256,379060,9436 -h1,11054:6630773,20189672:0,0,0 -g1,11054:7579210,20189672 -g1,11054:8211502,20189672 -g1,11054:8527648,20189672 -g1,11054:8843794,20189672 -g1,11054:9159940,20189672 -g1,11054:9476086,20189672 -g1,11054:10108378,20189672 -g1,11054:10740670,20189672 -g1,11054:11056816,20189672 -g1,11054:11372962,20189672 -g1,11054:11689108,20189672 -g1,11054:12005254,20189672 -g1,11054:12321400,20189672 -g1,11054:12637546,20189672 -k1,11054:12637546,20189672:0 -h1,11054:13902129,20189672:0,0,0 -k1,11054:32583029,20189672:18680900 -g1,11054:32583029,20189672 -) -(1,11054:6630773,20855850:25952256,404226,9436 -h1,11054:6630773,20855850:0,0,0 -g1,11054:7579210,20855850 -g1,11054:8211502,20855850 -g1,11054:8527648,20855850 -g1,11054:8843794,20855850 -g1,11054:9159940,20855850 -g1,11054:9476086,20855850 -g1,11054:10108378,20855850 -g1,11054:11689107,20855850 -g1,11054:12005253,20855850 -g1,11054:12321399,20855850 -g1,11054:12637545,20855850 -h1,11054:12953691,20855850:0,0,0 -k1,11054:32583029,20855850:19629338 -g1,11054:32583029,20855850 -) -] -) -g1,11055:32583029,20865286 -g1,11055:6630773,20865286 -g1,11055:6630773,20865286 -g1,11055:32583029,20865286 -g1,11055:32583029,20865286 -) -h1,11055:6630773,21061894:0,0,0 -v1,11059:6630773,22756290:0,393216,0 -(1,11076:6630773,30296776:25952256,7933702,196608 -g1,11076:6630773,30296776 -g1,11076:6630773,30296776 -g1,11076:6434165,30296776 -(1,11076:6434165,30296776:0,7933702,196608 -r1,11076:32779637,30296776:26345472,8130310,196608 -k1,11076:6434165,30296776:-26345472 -) -(1,11076:6434165,30296776:26345472,7933702,196608 -[1,11076:6630773,30296776:25952256,7737094,0 -(1,11061:6630773,22970200:25952256,410518,107478 -(1,11060:6630773,22970200:0,0,0 -g1,11060:6630773,22970200 -g1,11060:6630773,22970200 -g1,11060:6303093,22970200 -(1,11060:6303093,22970200:0,0,0 -) -g1,11060:6630773,22970200 -) -k1,11061:6630773,22970200:0 -g1,11061:10424522,22970200 -g1,11061:11056814,22970200 -g1,11061:14534417,22970200 -g1,11061:15166709,22970200 -g1,11061:15799001,22970200 -h1,11061:18644312,22970200:0,0,0 -k1,11061:32583029,22970200:13938717 -g1,11061:32583029,22970200 -) -(1,11065:6630773,24291738:25952256,404226,107478 -g1,11065:7579210,24291738 -g1,11065:10424521,24291738 -g1,11065:11372958,24291738 -g1,11065:12005250,24291738 -k1,11065:32583030,24291738:18997052 -g1,11065:32583030,24291738 -) -(1,11075:6630773,24957916:25952256,404226,9436 -(1,11065:6630773,24957916:0,0,0 -g1,11065:6630773,24957916 -g1,11065:6630773,24957916 -g1,11065:6303093,24957916 -(1,11065:6303093,24957916:0,0,0 -) -g1,11065:6630773,24957916 -) -g1,11075:7579210,24957916 -g1,11075:8211502,24957916 -g1,11075:8843794,24957916 -g1,11075:11372960,24957916 -g1,11075:12005252,24957916 -g1,11075:12637544,24957916 -h1,11075:12953690,24957916:0,0,0 -k1,11075:32583030,24957916:19629340 -g1,11075:32583030,24957916 -) -(1,11075:6630773,25624094:25952256,404226,6290 -h1,11075:6630773,25624094:0,0,0 -g1,11075:7579210,25624094 -g1,11075:7895356,25624094 -g1,11075:8211502,25624094 -g1,11075:8527648,25624094 -g1,11075:8843794,25624094 -g1,11075:10108377,25624094 -g1,11075:12637543,25624094 -h1,11075:14850563,25624094:0,0,0 -k1,11075:32583029,25624094:17732466 -g1,11075:32583029,25624094 -) -(1,11075:6630773,26290272:25952256,404226,6290 -h1,11075:6630773,26290272:0,0,0 -g1,11075:7579210,26290272 -g1,11075:7895356,26290272 -g1,11075:8211502,26290272 -g1,11075:10108377,26290272 -g1,11075:12005252,26290272 -g1,11075:12321398,26290272 -g1,11075:12637544,26290272 -k1,11075:12637544,26290272:0 -h1,11075:14218273,26290272:0,0,0 -k1,11075:32583029,26290272:18364756 -g1,11075:32583029,26290272 -) -(1,11075:6630773,26956450:25952256,404226,6290 -h1,11075:6630773,26956450:0,0,0 -g1,11075:7579210,26956450 -g1,11075:8211502,26956450 -g1,11075:8527648,26956450 -g1,11075:8843794,26956450 -g1,11075:9159940,26956450 -g1,11075:9476086,26956450 -g1,11075:10108378,26956450 -g1,11075:10740670,26956450 -g1,11075:11056816,26956450 -g1,11075:11372962,26956450 -g1,11075:11689108,26956450 -g1,11075:12005254,26956450 -g1,11075:12321400,26956450 -g1,11075:12637546,26956450 -h1,11075:12953692,26956450:0,0,0 -k1,11075:32583028,26956450:19629336 -g1,11075:32583028,26956450 -) -(1,11075:6630773,27622628:25952256,404226,6290 -h1,11075:6630773,27622628:0,0,0 -g1,11075:7579210,27622628 -g1,11075:8211502,27622628 -g1,11075:8527648,27622628 -g1,11075:8843794,27622628 -g1,11075:9159940,27622628 -g1,11075:9476086,27622628 -g1,11075:10108378,27622628 -g1,11075:10740670,27622628 -g1,11075:11056816,27622628 -g1,11075:11372962,27622628 -g1,11075:11689108,27622628 -g1,11075:12005254,27622628 -g1,11075:12321400,27622628 -g1,11075:12637546,27622628 -h1,11075:12953692,27622628:0,0,0 -k1,11075:32583028,27622628:19629336 -g1,11075:32583028,27622628 -) -(1,11075:6630773,28288806:25952256,404226,9436 -h1,11075:6630773,28288806:0,0,0 -g1,11075:7579210,28288806 -g1,11075:8211502,28288806 -g1,11075:8527648,28288806 -g1,11075:8843794,28288806 -g1,11075:9159940,28288806 -g1,11075:9476086,28288806 -g1,11075:10108378,28288806 -g1,11075:10740670,28288806 -g1,11075:11056816,28288806 -g1,11075:11372962,28288806 -g1,11075:11689108,28288806 -g1,11075:12005254,28288806 -g1,11075:12321400,28288806 -g1,11075:12637546,28288806 -h1,11075:12953692,28288806:0,0,0 -k1,11075:32583028,28288806:19629336 -g1,11075:32583028,28288806 -) -(1,11075:6630773,28954984:25952256,404226,6290 -h1,11075:6630773,28954984:0,0,0 -g1,11075:7579210,28954984 -g1,11075:8211502,28954984 -g1,11075:8527648,28954984 -g1,11075:8843794,28954984 -g1,11075:9159940,28954984 -g1,11075:9476086,28954984 -g1,11075:10108378,28954984 -g1,11075:10740670,28954984 -g1,11075:11056816,28954984 -g1,11075:11372962,28954984 -g1,11075:11689108,28954984 -g1,11075:12005254,28954984 -g1,11075:12321400,28954984 -g1,11075:12637546,28954984 -h1,11075:12953692,28954984:0,0,0 -k1,11075:32583028,28954984:19629336 -g1,11075:32583028,28954984 -) -(1,11075:6630773,29621162:25952256,404226,9436 -h1,11075:6630773,29621162:0,0,0 -g1,11075:7579210,29621162 -g1,11075:8211502,29621162 -g1,11075:8527648,29621162 -g1,11075:8843794,29621162 -g1,11075:9159940,29621162 -g1,11075:9476086,29621162 -g1,11075:10108378,29621162 -g1,11075:10740670,29621162 -g1,11075:11056816,29621162 -g1,11075:11372962,29621162 -g1,11075:11689108,29621162 -g1,11075:12005254,29621162 -g1,11075:12321400,29621162 -g1,11075:12637546,29621162 -k1,11075:12637546,29621162:0 -h1,11075:13902129,29621162:0,0,0 -k1,11075:32583029,29621162:18680900 -g1,11075:32583029,29621162 -) -(1,11075:6630773,30287340:25952256,388497,9436 -h1,11075:6630773,30287340:0,0,0 -g1,11075:7579210,30287340 -g1,11075:8211502,30287340 -g1,11075:8527648,30287340 -g1,11075:8843794,30287340 -g1,11075:9159940,30287340 -g1,11075:9476086,30287340 -g1,11075:10108378,30287340 -g1,11075:11689107,30287340 -g1,11075:12005253,30287340 -g1,11075:12321399,30287340 -g1,11075:12637545,30287340 -h1,11075:12953691,30287340:0,0,0 -k1,11075:32583029,30287340:19629338 -g1,11075:32583029,30287340 -) -] -) -g1,11076:32583029,30296776 -g1,11076:6630773,30296776 -g1,11076:6630773,30296776 -g1,11076:32583029,30296776 -g1,11076:32583029,30296776 -) -h1,11076:6630773,30493384:0,0,0 -(1,11080:6630773,31848980:25952256,513147,134348 -h1,11079:6630773,31848980:983040,0,0 -k1,11079:9125448,31848980:277592 -k1,11079:10594484,31848980:277591 -k1,11079:12407585,31848980:277592 -k1,11079:14252798,31848980:277592 -k1,11079:16394889,31848980:277592 -k1,11079:18206678,31848980:277591 -k1,11079:19550541,31848980:277592 -k1,11079:22577368,31848980:277592 -k1,11079:24422580,31848980:277591 -k1,11079:26075773,31848980:277592 -k1,11079:27510075,31848980:277592 -k1,11079:28446959,31848980:277592 -k1,11079:29743635,31848980:277591 -k1,11079:31193666,31848980:277592 -k1,11079:32583029,31848980:0 -) -(1,11080:6630773,32690468:25952256,505283,126483 -g1,11079:9442922,32690468 -(1,11079:9442922,32690468:0,414482,115847 -r1,11079:9801188,32690468:358266,530329,115847 -k1,11079:9442922,32690468:-358266 -) -(1,11079:9442922,32690468:358266,414482,115847 -k1,11079:9442922,32690468:3277 -h1,11079:9797911,32690468:0,411205,112570 -) -g1,11079:10000417,32690468 -g1,11079:11391091,32690468 -(1,11079:11391091,32690468:0,414482,115847 -r1,11079:11749357,32690468:358266,530329,115847 -k1,11079:11391091,32690468:-358266 -) -(1,11079:11391091,32690468:358266,414482,115847 -k1,11079:11391091,32690468:3277 -h1,11079:11746080,32690468:0,411205,112570 -) -g1,11079:12122256,32690468 -k1,11080:32583029,32690468:16490602 -g1,11080:32583029,32690468 -) -v1,11082:6630773,33870755:0,393216,0 -(1,11098:6630773,40745063:25952256,7267524,196608 -g1,11098:6630773,40745063 -g1,11098:6630773,40745063 -g1,11098:6434165,40745063 -(1,11098:6434165,40745063:0,7267524,196608 -r1,11098:32779637,40745063:26345472,7464132,196608 -k1,11098:6434165,40745063:-26345472 -) -(1,11098:6434165,40745063:26345472,7267524,196608 -[1,11098:6630773,40745063:25952256,7070916,0 -(1,11084:6630773,34084665:25952256,410518,107478 -(1,11083:6630773,34084665:0,0,0 -g1,11083:6630773,34084665 -g1,11083:6630773,34084665 -g1,11083:6303093,34084665 -(1,11083:6303093,34084665:0,0,0 -) -g1,11083:6630773,34084665 -) -k1,11084:6630773,34084665:0 -g1,11084:10424522,34084665 -g1,11084:11056814,34084665 -g1,11084:14218271,34084665 -g1,11084:14850563,34084665 -g1,11084:15482855,34084665 -h1,11084:18644312,34084665:0,0,0 -k1,11084:32583029,34084665:13938717 -g1,11084:32583029,34084665 -) -(1,11088:6630773,35406203:25952256,404226,107478 -g1,11088:7579210,35406203 -g1,11088:10424521,35406203 -g1,11088:11372958,35406203 -g1,11088:12005250,35406203 -k1,11088:32583030,35406203:18997052 -g1,11088:32583030,35406203 -) -(1,11097:6630773,36072381:25952256,404226,9436 -(1,11088:6630773,36072381:0,0,0 -g1,11088:6630773,36072381 -g1,11088:6630773,36072381 -g1,11088:6303093,36072381 -(1,11088:6303093,36072381:0,0,0 -) -g1,11088:6630773,36072381 -) -g1,11097:7579210,36072381 -g1,11097:8211502,36072381 -g1,11097:8843794,36072381 -g1,11097:11372960,36072381 -g1,11097:12005252,36072381 -g1,11097:12637544,36072381 -h1,11097:12953690,36072381:0,0,0 -k1,11097:32583030,36072381:19629340 -g1,11097:32583030,36072381 -) -(1,11097:6630773,36738559:25952256,404226,6290 -h1,11097:6630773,36738559:0,0,0 -g1,11097:7579210,36738559 -g1,11097:7895356,36738559 -g1,11097:8211502,36738559 -g1,11097:8527648,36738559 -g1,11097:8843794,36738559 -g1,11097:10108377,36738559 -g1,11097:12637543,36738559 -h1,11097:14850563,36738559:0,0,0 -k1,11097:32583029,36738559:17732466 -g1,11097:32583029,36738559 -) -(1,11097:6630773,37404737:25952256,404226,6290 -h1,11097:6630773,37404737:0,0,0 -g1,11097:7579210,37404737 -g1,11097:7895356,37404737 -g1,11097:8211502,37404737 -g1,11097:10108377,37404737 -g1,11097:12005252,37404737 -g1,11097:12321398,37404737 -g1,11097:12637544,37404737 -k1,11097:12637544,37404737:0 -h1,11097:14218273,37404737:0,0,0 -k1,11097:32583029,37404737:18364756 -g1,11097:32583029,37404737 -) -(1,11097:6630773,38070915:25952256,404226,6290 -h1,11097:6630773,38070915:0,0,0 -g1,11097:7579210,38070915 -g1,11097:8211502,38070915 -g1,11097:8527648,38070915 -g1,11097:8843794,38070915 -g1,11097:9159940,38070915 -g1,11097:9476086,38070915 -g1,11097:10108378,38070915 -g1,11097:10740670,38070915 -g1,11097:11056816,38070915 -g1,11097:11372962,38070915 -g1,11097:11689108,38070915 -g1,11097:12005254,38070915 -g1,11097:12321400,38070915 -g1,11097:12637546,38070915 -h1,11097:12953692,38070915:0,0,0 -k1,11097:32583028,38070915:19629336 -g1,11097:32583028,38070915 -) -(1,11097:6630773,38737093:25952256,404226,6290 -h1,11097:6630773,38737093:0,0,0 -g1,11097:7579210,38737093 -g1,11097:8211502,38737093 -g1,11097:8527648,38737093 -g1,11097:8843794,38737093 -g1,11097:9159940,38737093 -g1,11097:9476086,38737093 -g1,11097:10108378,38737093 -g1,11097:10740670,38737093 -g1,11097:11056816,38737093 -g1,11097:11372962,38737093 -g1,11097:11689108,38737093 -g1,11097:12005254,38737093 -g1,11097:12321400,38737093 -g1,11097:12637546,38737093 -h1,11097:12953692,38737093:0,0,0 -k1,11097:32583028,38737093:19629336 -g1,11097:32583028,38737093 -) -(1,11097:6630773,39403271:25952256,404226,9436 -h1,11097:6630773,39403271:0,0,0 -g1,11097:7579210,39403271 -g1,11097:8211502,39403271 -g1,11097:8527648,39403271 -g1,11097:8843794,39403271 -g1,11097:9159940,39403271 -g1,11097:9476086,39403271 -g1,11097:10108378,39403271 -g1,11097:10740670,39403271 -g1,11097:11056816,39403271 -g1,11097:11372962,39403271 -g1,11097:11689108,39403271 -g1,11097:12005254,39403271 -g1,11097:12321400,39403271 -g1,11097:12637546,39403271 -h1,11097:12953692,39403271:0,0,0 -k1,11097:32583028,39403271:19629336 -g1,11097:32583028,39403271 -) -(1,11097:6630773,40069449:25952256,404226,6290 -h1,11097:6630773,40069449:0,0,0 -g1,11097:7579210,40069449 -g1,11097:8211502,40069449 -g1,11097:8527648,40069449 -g1,11097:8843794,40069449 -g1,11097:9159940,40069449 -g1,11097:9476086,40069449 -g1,11097:10108378,40069449 -g1,11097:10740670,40069449 -g1,11097:11056816,40069449 -g1,11097:11372962,40069449 -g1,11097:11689108,40069449 -g1,11097:12005254,40069449 -g1,11097:12321400,40069449 -g1,11097:12637546,40069449 -h1,11097:12953692,40069449:0,0,0 -k1,11097:32583028,40069449:19629336 -g1,11097:32583028,40069449 -) -(1,11097:6630773,40735627:25952256,379060,9436 -h1,11097:6630773,40735627:0,0,0 -g1,11097:7579210,40735627 -g1,11097:8211502,40735627 -g1,11097:8527648,40735627 -g1,11097:8843794,40735627 -g1,11097:9159940,40735627 -g1,11097:9476086,40735627 -g1,11097:10108378,40735627 -g1,11097:10740670,40735627 -g1,11097:11056816,40735627 -g1,11097:11372962,40735627 -g1,11097:11689108,40735627 -g1,11097:12005254,40735627 -g1,11097:12321400,40735627 -g1,11097:12637546,40735627 -k1,11097:12637546,40735627:0 -h1,11097:13902129,40735627:0,0,0 -k1,11097:32583029,40735627:18680900 -g1,11097:32583029,40735627 -) -] -) -g1,11098:32583029,40745063 -g1,11098:6630773,40745063 -g1,11098:6630773,40745063 -g1,11098:32583029,40745063 -g1,11098:32583029,40745063 -) -h1,11098:6630773,40941671:0,0,0 -v1,11102:6630773,42636067:0,393216,0 -(1,11118:6630773,45510161:25952256,3267310,196608 -g1,11118:6630773,45510161 -g1,11118:6630773,45510161 -g1,11118:6434165,45510161 -(1,11118:6434165,45510161:0,3267310,196608 -r1,11118:32779637,45510161:26345472,3463918,196608 -k1,11118:6434165,45510161:-26345472 -) -(1,11118:6434165,45510161:26345472,3267310,196608 -[1,11118:6630773,45510161:25952256,3070702,0 -(1,11104:6630773,42849977:25952256,410518,107478 -(1,11103:6630773,42849977:0,0,0 -g1,11103:6630773,42849977 -g1,11103:6630773,42849977 -g1,11103:6303093,42849977 -(1,11103:6303093,42849977:0,0,0 -) -g1,11103:6630773,42849977 -) -k1,11104:6630773,42849977:0 -g1,11104:10424522,42849977 -g1,11104:11056814,42849977 -g1,11104:14534417,42849977 -g1,11104:15166709,42849977 -g1,11104:15799001,42849977 -h1,11104:18644312,42849977:0,0,0 -k1,11104:32583029,42849977:13938717 -g1,11104:32583029,42849977 -) -(1,11108:6630773,44171515:25952256,404226,107478 -g1,11108:7579210,44171515 -g1,11108:10424521,44171515 -g1,11108:11372958,44171515 -g1,11108:12005250,44171515 -k1,11108:32583030,44171515:18997052 -g1,11108:32583030,44171515 -) -(1,11117:6630773,44837693:25952256,404226,9436 -(1,11108:6630773,44837693:0,0,0 -g1,11108:6630773,44837693 -g1,11108:6630773,44837693 -g1,11108:6303093,44837693 -(1,11108:6303093,44837693:0,0,0 -) -g1,11108:6630773,44837693 -) -g1,11117:7579210,44837693 -g1,11117:8211502,44837693 -g1,11117:8843794,44837693 -g1,11117:11372960,44837693 -g1,11117:12005252,44837693 -g1,11117:12637544,44837693 -h1,11117:12953690,44837693:0,0,0 -k1,11117:32583030,44837693:19629340 -g1,11117:32583030,44837693 -) -(1,11117:6630773,45503871:25952256,404226,6290 -h1,11117:6630773,45503871:0,0,0 -g1,11117:7579210,45503871 -g1,11117:7895356,45503871 -g1,11117:8211502,45503871 -g1,11117:8527648,45503871 -g1,11117:8843794,45503871 -g1,11117:10108377,45503871 -g1,11117:12637543,45503871 -h1,11117:14850563,45503871:0,0,0 -k1,11117:32583029,45503871:17732466 -g1,11117:32583029,45503871 -) -] -) -g1,11118:32583029,45510161 -g1,11118:6630773,45510161 -g1,11118:6630773,45510161 -g1,11118:32583029,45510161 -g1,11118:32583029,45510161 -) -] -(1,11118:32583029,45706769:0,0,0 -g1,11118:32583029,45706769 -) -) -] -(1,11118:6630773,47279633:25952256,0,0 -h1,11118:6630773,47279633:25952256,0,0 -) -] -h1,11118:4262630,4025873:0,0,0 -] -!30398 +k1,11123:3078556,49800853:-34777008 +) +] +g1,11123:6630773,4812305 +k1,11123:25241686,4812305:17415536 +g1,11123:26807341,4812305 +g1,11123:30339731,4812305 +g1,11123:31154998,4812305 +) +) +] +[1,11123:6630773,45706769:25952256,40108032,0 +(1,11123:6630773,45706769:25952256,40108032,0 +(1,11123:6630773,45706769:0,0,0 +g1,11123:6630773,45706769 +) +[1,11123:6630773,45706769:25952256,40108032,0 +(1,11039:6630773,6254097:25952256,513147,134348 +k1,11038:7478557,6254097:231746 +k1,11038:9077383,6254097:231745 +k1,11038:9968421,6254097:231746 +k1,11038:12871413,6254097:231745 +k1,11038:15935625,6254097:231746 +k1,11038:17675353,6254097:231745 +k1,11038:18262959,6254097:231746 +k1,11038:19698600,6254097:231745 +k1,11038:20877997,6254097:231746 +k1,11038:22561364,6254097:231745 +k1,11038:25764512,6254097:231746 +k1,11038:29984123,6254097:231745 +k1,11038:30875161,6254097:231746 +k1,11038:32583029,6254097:0 +) +(1,11039:6630773,7095585:25952256,505283,134348 +k1,11038:7810780,7095585:226458 +k1,11038:10053780,7095585:226457 +k1,11038:11731860,7095585:226458 +k1,11038:14619734,7095585:226457 +k1,11038:16240143,7095585:226458 +k1,11038:17485685,7095585:226457 +k1,11038:21114772,7095585:226458 +k1,11038:23546517,7095585:226458 +k1,11038:24424402,7095585:226457 +(1,11038:24424402,7095585:0,414482,115847 +r1,11038:24782668,7095585:358266,530329,115847 +k1,11038:24424402,7095585:-358266 +) +(1,11038:24424402,7095585:358266,414482,115847 +k1,11038:24424402,7095585:3277 +h1,11038:24779391,7095585:0,411205,112570 +) +k1,11038:25009126,7095585:226458 +k1,11038:26427028,7095585:226457 +(1,11038:26427028,7095585:0,414482,115847 +r1,11038:26785294,7095585:358266,530329,115847 +k1,11038:26427028,7095585:-358266 +) +(1,11038:26427028,7095585:358266,414482,115847 +k1,11038:26427028,7095585:3277 +h1,11038:26782017,7095585:0,411205,112570 +) +k1,11038:27011752,7095585:226458 +k1,11038:30054946,7095585:226457 +k1,11038:30932832,7095585:226458 +k1,11038:32583029,7095585:0 +) +(1,11039:6630773,7937073:25952256,513147,126483 +g1,11038:8926499,7937073 +g1,11038:10786410,7937073 +g1,11038:12494278,7937073 +g1,11038:15455850,7937073 +k1,11039:32583029,7937073:14193788 +g1,11039:32583029,7937073 +) +(1,11041:6630773,8778561:25952256,513147,134348 +h1,11040:6630773,8778561:983040,0,0 +k1,11040:8290875,8778561:189474 +k1,11040:9570222,8778561:189483 +k1,11040:10997025,8778561:189483 +k1,11040:13381309,8778561:189483 +k1,11040:14336908,8778561:189483 +k1,11040:18105313,8778561:189484 +k1,11040:19828994,8778561:189483 +k1,11040:21849553,8778561:189483 +k1,11040:24511054,8778561:189483 +k1,11040:26711182,8778561:189483 +k1,11040:28294617,8778561:189484 +(1,11040:28294617,8778561:0,414482,115847 +r1,11040:29004595,8778561:709978,530329,115847 +k1,11040:28294617,8778561:-709978 +) +(1,11040:28294617,8778561:709978,414482,115847 +k1,11040:28294617,8778561:3277 +h1,11040:29001318,8778561:0,411205,112570 +) +k1,11040:29367748,8778561:189483 +k1,11040:30317449,8778561:189483 +k1,11040:32583029,8778561:0 +) +(1,11041:6630773,9620049:25952256,505283,115847 +k1,11040:7925790,9620049:275932 +k1,11040:10182875,9620049:275932 +k1,11040:10990303,9620049:275931 +k1,11040:12843687,9620049:275932 +k1,11040:13928989,9620049:275932 +k1,11040:16918112,9620049:275932 +k1,11040:18587995,9620049:275932 +k1,11040:19883012,9620049:275932 +k1,11040:21812416,9620049:275931 +k1,11040:23826363,9620049:275932 +k1,11040:24718333,9620049:275932 +(1,11040:24718333,9620049:0,414482,115847 +r1,11040:25076599,9620049:358266,530329,115847 +k1,11040:24718333,9620049:-358266 +) +(1,11040:24718333,9620049:358266,414482,115847 +k1,11040:24718333,9620049:3277 +h1,11040:25073322,9620049:0,411205,112570 +) +k1,11040:25352531,9620049:275932 +k1,11040:26819908,9620049:275932 +(1,11040:26819908,9620049:0,414482,115847 +r1,11040:27178174,9620049:358266,530329,115847 +k1,11040:26819908,9620049:-358266 +) +(1,11040:26819908,9620049:358266,414482,115847 +k1,11040:26819908,9620049:3277 +h1,11040:27174897,9620049:0,411205,112570 +) +k1,11040:27627776,9620049:275932 +k1,11040:28975876,9620049:275931 +k1,11040:30455049,9620049:275932 +k1,11040:31835263,9620049:275932 +k1,11040:32583029,9620049:0 +) +(1,11041:6630773,10461537:25952256,505283,134348 +k1,11040:9452628,10461537:160438 +k1,11040:10374593,10461537:160437 +k1,11040:12962485,10461537:160438 +k1,11040:13893626,10461537:160438 +k1,11040:17126392,10461537:160438 +k1,11040:17938257,10461537:160437 +k1,11040:21379427,10461537:160438 +(1,11040:21379427,10461537:0,452978,115847 +r1,11040:22089405,10461537:709978,568825,115847 +k1,11040:21379427,10461537:-709978 +) +(1,11040:21379427,10461537:709978,452978,115847 +k1,11040:21379427,10461537:3277 +h1,11040:22086128,10461537:0,411205,112570 +) +k1,11040:22423513,10461537:160438 +k1,11040:24375704,10461537:160437 +(1,11040:24375704,10461537:0,452978,115847 +r1,11040:25085682,10461537:709978,568825,115847 +k1,11040:24375704,10461537:-709978 +) +(1,11040:24375704,10461537:709978,452978,115847 +k1,11040:24375704,10461537:3277 +h1,11040:25082405,10461537:0,411205,112570 +) +k1,11040:25246120,10461537:160438 +k1,11040:26563268,10461537:160438 +k1,11040:27827988,10461537:160438 +k1,11040:29422353,10461537:160437 +k1,11040:30601876,10461537:160438 +k1,11040:32583029,10461537:0 +) +(1,11041:6630773,11303025:25952256,513147,134348 +k1,11040:7631726,11303025:191583 +k1,11040:10536500,11303025:191583 +k1,11040:12012589,11303025:191583 +k1,11040:13679388,11303025:191584 +k1,11040:16633314,11303025:191583 +k1,11040:18893213,11303025:191583 +k1,11040:19700834,11303025:191583 +(1,11040:19700834,11303025:0,414482,115847 +r1,11040:20059100,11303025:358266,530329,115847 +k1,11040:19700834,11303025:-358266 +) +(1,11040:19700834,11303025:358266,414482,115847 +k1,11040:19700834,11303025:3277 +h1,11040:20055823,11303025:0,411205,112570 +) +k1,11040:20250683,11303025:191583 +k1,11040:21633711,11303025:191583 +(1,11040:21633711,11303025:0,414482,115847 +r1,11040:21991977,11303025:358266,530329,115847 +k1,11040:21633711,11303025:-358266 +) +(1,11040:21633711,11303025:358266,414482,115847 +k1,11040:21633711,11303025:3277 +h1,11040:21988700,11303025:0,411205,112570 +) +k1,11040:22357230,11303025:191583 +k1,11040:23231699,11303025:191584 +k1,11040:25855978,11303025:191583 +k1,11040:29018963,11303025:191583 +k1,11040:29869838,11303025:191583 +k1,11040:32583029,11303025:0 +) +(1,11041:6630773,12144513:25952256,513147,126483 +g1,11040:8223953,12144513 +g1,11040:9442267,12144513 +g1,11040:11294969,12144513 +g1,11040:13232213,12144513 +g1,11040:14047480,12144513 +(1,11040:14047480,12144513:0,414482,115847 +r1,11040:14405746,12144513:358266,530329,115847 +k1,11040:14047480,12144513:-358266 +) +(1,11040:14047480,12144513:358266,414482,115847 +k1,11040:14047480,12144513:3277 +h1,11040:14402469,12144513:0,411205,112570 +) +g1,11040:14604975,12144513 +g1,11040:15995649,12144513 +(1,11040:15995649,12144513:0,414482,115847 +r1,11040:16353915,12144513:358266,530329,115847 +k1,11040:15995649,12144513:-358266 +) +(1,11040:15995649,12144513:358266,414482,115847 +k1,11040:15995649,12144513:3277 +h1,11040:16350638,12144513:0,411205,112570 +) +g1,11040:16553144,12144513 +g1,11040:19620884,12144513 +g1,11040:20432875,12144513 +g1,11040:21815029,12144513 +g1,11040:22673550,12144513 +g1,11040:23891864,12144513 +k1,11041:32583029,12144513:6031714 +g1,11041:32583029,12144513 +) +v1,11043:6630773,13324800:0,393216,0 +(1,11060:6630773,20865286:25952256,7933702,196608 +g1,11060:6630773,20865286 +g1,11060:6630773,20865286 +g1,11060:6434165,20865286 +(1,11060:6434165,20865286:0,7933702,196608 +r1,11060:32779637,20865286:26345472,8130310,196608 +k1,11060:6434165,20865286:-26345472 +) +(1,11060:6434165,20865286:26345472,7933702,196608 +[1,11060:6630773,20865286:25952256,7737094,0 +(1,11045:6630773,13538710:25952256,410518,107478 +(1,11044:6630773,13538710:0,0,0 +g1,11044:6630773,13538710 +g1,11044:6630773,13538710 +g1,11044:6303093,13538710 +(1,11044:6303093,13538710:0,0,0 +) +g1,11044:6630773,13538710 +) +k1,11045:6630773,13538710:0 +g1,11045:10424522,13538710 +g1,11045:11056814,13538710 +g1,11045:14218271,13538710 +g1,11045:14850563,13538710 +g1,11045:15482855,13538710 +h1,11045:18644312,13538710:0,0,0 +k1,11045:32583029,13538710:13938717 +g1,11045:32583029,13538710 +) +(1,11049:6630773,14860248:25952256,404226,107478 +g1,11049:7579210,14860248 +g1,11049:10424521,14860248 +g1,11049:11372958,14860248 +g1,11049:12005250,14860248 +k1,11049:32583030,14860248:18997052 +g1,11049:32583030,14860248 +) +(1,11059:6630773,15526426:25952256,404226,9436 +(1,11049:6630773,15526426:0,0,0 +g1,11049:6630773,15526426 +g1,11049:6630773,15526426 +g1,11049:6303093,15526426 +(1,11049:6303093,15526426:0,0,0 +) +g1,11049:6630773,15526426 +) +g1,11059:7579210,15526426 +g1,11059:8211502,15526426 +g1,11059:8843794,15526426 +g1,11059:11372960,15526426 +g1,11059:12005252,15526426 +g1,11059:12637544,15526426 +h1,11059:12953690,15526426:0,0,0 +k1,11059:32583030,15526426:19629340 +g1,11059:32583030,15526426 +) +(1,11059:6630773,16192604:25952256,404226,6290 +h1,11059:6630773,16192604:0,0,0 +g1,11059:7579210,16192604 +g1,11059:7895356,16192604 +g1,11059:8211502,16192604 +g1,11059:8527648,16192604 +g1,11059:8843794,16192604 +g1,11059:10108377,16192604 +g1,11059:12637543,16192604 +h1,11059:14850563,16192604:0,0,0 +k1,11059:32583029,16192604:17732466 +g1,11059:32583029,16192604 +) +(1,11059:6630773,16858782:25952256,404226,6290 +h1,11059:6630773,16858782:0,0,0 +g1,11059:7579210,16858782 +g1,11059:7895356,16858782 +g1,11059:8211502,16858782 +g1,11059:10108377,16858782 +g1,11059:12005252,16858782 +g1,11059:12321398,16858782 +g1,11059:12637544,16858782 +k1,11059:12637544,16858782:0 +h1,11059:14218273,16858782:0,0,0 +k1,11059:32583029,16858782:18364756 +g1,11059:32583029,16858782 +) +(1,11059:6630773,17524960:25952256,404226,6290 +h1,11059:6630773,17524960:0,0,0 +g1,11059:7579210,17524960 +g1,11059:8211502,17524960 +g1,11059:8527648,17524960 +g1,11059:8843794,17524960 +g1,11059:9159940,17524960 +g1,11059:9476086,17524960 +g1,11059:10108378,17524960 +g1,11059:10740670,17524960 +g1,11059:11056816,17524960 +g1,11059:11372962,17524960 +g1,11059:11689108,17524960 +g1,11059:12005254,17524960 +g1,11059:12321400,17524960 +g1,11059:12637546,17524960 +h1,11059:12953692,17524960:0,0,0 +k1,11059:32583028,17524960:19629336 +g1,11059:32583028,17524960 +) +(1,11059:6630773,18191138:25952256,404226,6290 +h1,11059:6630773,18191138:0,0,0 +g1,11059:7579210,18191138 +g1,11059:8211502,18191138 +g1,11059:8527648,18191138 +g1,11059:8843794,18191138 +g1,11059:9159940,18191138 +g1,11059:9476086,18191138 +g1,11059:10108378,18191138 +g1,11059:10740670,18191138 +g1,11059:11056816,18191138 +g1,11059:11372962,18191138 +g1,11059:11689108,18191138 +g1,11059:12005254,18191138 +g1,11059:12321400,18191138 +g1,11059:12637546,18191138 +h1,11059:12953692,18191138:0,0,0 +k1,11059:32583028,18191138:19629336 +g1,11059:32583028,18191138 +) +(1,11059:6630773,18857316:25952256,404226,9436 +h1,11059:6630773,18857316:0,0,0 +g1,11059:7579210,18857316 +g1,11059:8211502,18857316 +g1,11059:8527648,18857316 +g1,11059:8843794,18857316 +g1,11059:9159940,18857316 +g1,11059:9476086,18857316 +g1,11059:10108378,18857316 +g1,11059:10740670,18857316 +g1,11059:11056816,18857316 +g1,11059:11372962,18857316 +g1,11059:11689108,18857316 +g1,11059:12005254,18857316 +g1,11059:12321400,18857316 +g1,11059:12637546,18857316 +h1,11059:12953692,18857316:0,0,0 +k1,11059:32583028,18857316:19629336 +g1,11059:32583028,18857316 +) +(1,11059:6630773,19523494:25952256,404226,6290 +h1,11059:6630773,19523494:0,0,0 +g1,11059:7579210,19523494 +g1,11059:8211502,19523494 +g1,11059:8527648,19523494 +g1,11059:8843794,19523494 +g1,11059:9159940,19523494 +g1,11059:9476086,19523494 +g1,11059:10108378,19523494 +g1,11059:10740670,19523494 +g1,11059:11056816,19523494 +g1,11059:11372962,19523494 +g1,11059:11689108,19523494 +g1,11059:12005254,19523494 +g1,11059:12321400,19523494 +g1,11059:12637546,19523494 +h1,11059:12953692,19523494:0,0,0 +k1,11059:32583028,19523494:19629336 +g1,11059:32583028,19523494 +) +(1,11059:6630773,20189672:25952256,379060,9436 +h1,11059:6630773,20189672:0,0,0 +g1,11059:7579210,20189672 +g1,11059:8211502,20189672 +g1,11059:8527648,20189672 +g1,11059:8843794,20189672 +g1,11059:9159940,20189672 +g1,11059:9476086,20189672 +g1,11059:10108378,20189672 +g1,11059:10740670,20189672 +g1,11059:11056816,20189672 +g1,11059:11372962,20189672 +g1,11059:11689108,20189672 +g1,11059:12005254,20189672 +g1,11059:12321400,20189672 +g1,11059:12637546,20189672 +k1,11059:12637546,20189672:0 +h1,11059:13902129,20189672:0,0,0 +k1,11059:32583029,20189672:18680900 +g1,11059:32583029,20189672 +) +(1,11059:6630773,20855850:25952256,404226,9436 +h1,11059:6630773,20855850:0,0,0 +g1,11059:7579210,20855850 +g1,11059:8211502,20855850 +g1,11059:8527648,20855850 +g1,11059:8843794,20855850 +g1,11059:9159940,20855850 +g1,11059:9476086,20855850 +g1,11059:10108378,20855850 +g1,11059:11689107,20855850 +g1,11059:12005253,20855850 +g1,11059:12321399,20855850 +g1,11059:12637545,20855850 +h1,11059:12953691,20855850:0,0,0 +k1,11059:32583029,20855850:19629338 +g1,11059:32583029,20855850 +) +] +) +g1,11060:32583029,20865286 +g1,11060:6630773,20865286 +g1,11060:6630773,20865286 +g1,11060:32583029,20865286 +g1,11060:32583029,20865286 +) +h1,11060:6630773,21061894:0,0,0 +v1,11064:6630773,22756290:0,393216,0 +(1,11081:6630773,30296776:25952256,7933702,196608 +g1,11081:6630773,30296776 +g1,11081:6630773,30296776 +g1,11081:6434165,30296776 +(1,11081:6434165,30296776:0,7933702,196608 +r1,11081:32779637,30296776:26345472,8130310,196608 +k1,11081:6434165,30296776:-26345472 +) +(1,11081:6434165,30296776:26345472,7933702,196608 +[1,11081:6630773,30296776:25952256,7737094,0 +(1,11066:6630773,22970200:25952256,410518,107478 +(1,11065:6630773,22970200:0,0,0 +g1,11065:6630773,22970200 +g1,11065:6630773,22970200 +g1,11065:6303093,22970200 +(1,11065:6303093,22970200:0,0,0 +) +g1,11065:6630773,22970200 +) +k1,11066:6630773,22970200:0 +g1,11066:10424522,22970200 +g1,11066:11056814,22970200 +g1,11066:14534417,22970200 +g1,11066:15166709,22970200 +g1,11066:15799001,22970200 +h1,11066:18644312,22970200:0,0,0 +k1,11066:32583029,22970200:13938717 +g1,11066:32583029,22970200 +) +(1,11070:6630773,24291738:25952256,404226,107478 +g1,11070:7579210,24291738 +g1,11070:10424521,24291738 +g1,11070:11372958,24291738 +g1,11070:12005250,24291738 +k1,11070:32583030,24291738:18997052 +g1,11070:32583030,24291738 +) +(1,11080:6630773,24957916:25952256,404226,9436 +(1,11070:6630773,24957916:0,0,0 +g1,11070:6630773,24957916 +g1,11070:6630773,24957916 +g1,11070:6303093,24957916 +(1,11070:6303093,24957916:0,0,0 +) +g1,11070:6630773,24957916 +) +g1,11080:7579210,24957916 +g1,11080:8211502,24957916 +g1,11080:8843794,24957916 +g1,11080:11372960,24957916 +g1,11080:12005252,24957916 +g1,11080:12637544,24957916 +h1,11080:12953690,24957916:0,0,0 +k1,11080:32583030,24957916:19629340 +g1,11080:32583030,24957916 +) +(1,11080:6630773,25624094:25952256,404226,6290 +h1,11080:6630773,25624094:0,0,0 +g1,11080:7579210,25624094 +g1,11080:7895356,25624094 +g1,11080:8211502,25624094 +g1,11080:8527648,25624094 +g1,11080:8843794,25624094 +g1,11080:10108377,25624094 +g1,11080:12637543,25624094 +h1,11080:14850563,25624094:0,0,0 +k1,11080:32583029,25624094:17732466 +g1,11080:32583029,25624094 +) +(1,11080:6630773,26290272:25952256,404226,6290 +h1,11080:6630773,26290272:0,0,0 +g1,11080:7579210,26290272 +g1,11080:7895356,26290272 +g1,11080:8211502,26290272 +g1,11080:10108377,26290272 +g1,11080:12005252,26290272 +g1,11080:12321398,26290272 +g1,11080:12637544,26290272 +k1,11080:12637544,26290272:0 +h1,11080:14218273,26290272:0,0,0 +k1,11080:32583029,26290272:18364756 +g1,11080:32583029,26290272 +) +(1,11080:6630773,26956450:25952256,404226,6290 +h1,11080:6630773,26956450:0,0,0 +g1,11080:7579210,26956450 +g1,11080:8211502,26956450 +g1,11080:8527648,26956450 +g1,11080:8843794,26956450 +g1,11080:9159940,26956450 +g1,11080:9476086,26956450 +g1,11080:10108378,26956450 +g1,11080:10740670,26956450 +g1,11080:11056816,26956450 +g1,11080:11372962,26956450 +g1,11080:11689108,26956450 +g1,11080:12005254,26956450 +g1,11080:12321400,26956450 +g1,11080:12637546,26956450 +h1,11080:12953692,26956450:0,0,0 +k1,11080:32583028,26956450:19629336 +g1,11080:32583028,26956450 +) +(1,11080:6630773,27622628:25952256,404226,6290 +h1,11080:6630773,27622628:0,0,0 +g1,11080:7579210,27622628 +g1,11080:8211502,27622628 +g1,11080:8527648,27622628 +g1,11080:8843794,27622628 +g1,11080:9159940,27622628 +g1,11080:9476086,27622628 +g1,11080:10108378,27622628 +g1,11080:10740670,27622628 +g1,11080:11056816,27622628 +g1,11080:11372962,27622628 +g1,11080:11689108,27622628 +g1,11080:12005254,27622628 +g1,11080:12321400,27622628 +g1,11080:12637546,27622628 +h1,11080:12953692,27622628:0,0,0 +k1,11080:32583028,27622628:19629336 +g1,11080:32583028,27622628 +) +(1,11080:6630773,28288806:25952256,404226,9436 +h1,11080:6630773,28288806:0,0,0 +g1,11080:7579210,28288806 +g1,11080:8211502,28288806 +g1,11080:8527648,28288806 +g1,11080:8843794,28288806 +g1,11080:9159940,28288806 +g1,11080:9476086,28288806 +g1,11080:10108378,28288806 +g1,11080:10740670,28288806 +g1,11080:11056816,28288806 +g1,11080:11372962,28288806 +g1,11080:11689108,28288806 +g1,11080:12005254,28288806 +g1,11080:12321400,28288806 +g1,11080:12637546,28288806 +h1,11080:12953692,28288806:0,0,0 +k1,11080:32583028,28288806:19629336 +g1,11080:32583028,28288806 +) +(1,11080:6630773,28954984:25952256,404226,6290 +h1,11080:6630773,28954984:0,0,0 +g1,11080:7579210,28954984 +g1,11080:8211502,28954984 +g1,11080:8527648,28954984 +g1,11080:8843794,28954984 +g1,11080:9159940,28954984 +g1,11080:9476086,28954984 +g1,11080:10108378,28954984 +g1,11080:10740670,28954984 +g1,11080:11056816,28954984 +g1,11080:11372962,28954984 +g1,11080:11689108,28954984 +g1,11080:12005254,28954984 +g1,11080:12321400,28954984 +g1,11080:12637546,28954984 +h1,11080:12953692,28954984:0,0,0 +k1,11080:32583028,28954984:19629336 +g1,11080:32583028,28954984 +) +(1,11080:6630773,29621162:25952256,404226,9436 +h1,11080:6630773,29621162:0,0,0 +g1,11080:7579210,29621162 +g1,11080:8211502,29621162 +g1,11080:8527648,29621162 +g1,11080:8843794,29621162 +g1,11080:9159940,29621162 +g1,11080:9476086,29621162 +g1,11080:10108378,29621162 +g1,11080:10740670,29621162 +g1,11080:11056816,29621162 +g1,11080:11372962,29621162 +g1,11080:11689108,29621162 +g1,11080:12005254,29621162 +g1,11080:12321400,29621162 +g1,11080:12637546,29621162 +k1,11080:12637546,29621162:0 +h1,11080:13902129,29621162:0,0,0 +k1,11080:32583029,29621162:18680900 +g1,11080:32583029,29621162 +) +(1,11080:6630773,30287340:25952256,388497,9436 +h1,11080:6630773,30287340:0,0,0 +g1,11080:7579210,30287340 +g1,11080:8211502,30287340 +g1,11080:8527648,30287340 +g1,11080:8843794,30287340 +g1,11080:9159940,30287340 +g1,11080:9476086,30287340 +g1,11080:10108378,30287340 +g1,11080:11689107,30287340 +g1,11080:12005253,30287340 +g1,11080:12321399,30287340 +g1,11080:12637545,30287340 +h1,11080:12953691,30287340:0,0,0 +k1,11080:32583029,30287340:19629338 +g1,11080:32583029,30287340 +) +] +) +g1,11081:32583029,30296776 +g1,11081:6630773,30296776 +g1,11081:6630773,30296776 +g1,11081:32583029,30296776 +g1,11081:32583029,30296776 +) +h1,11081:6630773,30493384:0,0,0 +(1,11085:6630773,31848980:25952256,513147,134348 +h1,11084:6630773,31848980:983040,0,0 +k1,11084:9125448,31848980:277592 +k1,11084:10594484,31848980:277591 +k1,11084:12407585,31848980:277592 +k1,11084:14252798,31848980:277592 +k1,11084:16394889,31848980:277592 +k1,11084:18206678,31848980:277591 +k1,11084:19550541,31848980:277592 +k1,11084:22577368,31848980:277592 +k1,11084:24422580,31848980:277591 +k1,11084:26075773,31848980:277592 +k1,11084:27510075,31848980:277592 +k1,11084:28446959,31848980:277592 +k1,11084:29743635,31848980:277591 +k1,11084:31193666,31848980:277592 +k1,11084:32583029,31848980:0 +) +(1,11085:6630773,32690468:25952256,505283,126483 +g1,11084:9442922,32690468 +(1,11084:9442922,32690468:0,414482,115847 +r1,11084:9801188,32690468:358266,530329,115847 +k1,11084:9442922,32690468:-358266 +) +(1,11084:9442922,32690468:358266,414482,115847 +k1,11084:9442922,32690468:3277 +h1,11084:9797911,32690468:0,411205,112570 +) +g1,11084:10000417,32690468 +g1,11084:11391091,32690468 +(1,11084:11391091,32690468:0,414482,115847 +r1,11084:11749357,32690468:358266,530329,115847 +k1,11084:11391091,32690468:-358266 +) +(1,11084:11391091,32690468:358266,414482,115847 +k1,11084:11391091,32690468:3277 +h1,11084:11746080,32690468:0,411205,112570 +) +g1,11084:12122256,32690468 +k1,11085:32583029,32690468:16490602 +g1,11085:32583029,32690468 +) +v1,11087:6630773,33870755:0,393216,0 +(1,11103:6630773,40745063:25952256,7267524,196608 +g1,11103:6630773,40745063 +g1,11103:6630773,40745063 +g1,11103:6434165,40745063 +(1,11103:6434165,40745063:0,7267524,196608 +r1,11103:32779637,40745063:26345472,7464132,196608 +k1,11103:6434165,40745063:-26345472 +) +(1,11103:6434165,40745063:26345472,7267524,196608 +[1,11103:6630773,40745063:25952256,7070916,0 +(1,11089:6630773,34084665:25952256,410518,107478 +(1,11088:6630773,34084665:0,0,0 +g1,11088:6630773,34084665 +g1,11088:6630773,34084665 +g1,11088:6303093,34084665 +(1,11088:6303093,34084665:0,0,0 +) +g1,11088:6630773,34084665 +) +k1,11089:6630773,34084665:0 +g1,11089:10424522,34084665 +g1,11089:11056814,34084665 +g1,11089:14218271,34084665 +g1,11089:14850563,34084665 +g1,11089:15482855,34084665 +h1,11089:18644312,34084665:0,0,0 +k1,11089:32583029,34084665:13938717 +g1,11089:32583029,34084665 +) +(1,11093:6630773,35406203:25952256,404226,107478 +g1,11093:7579210,35406203 +g1,11093:10424521,35406203 +g1,11093:11372958,35406203 +g1,11093:12005250,35406203 +k1,11093:32583030,35406203:18997052 +g1,11093:32583030,35406203 +) +(1,11102:6630773,36072381:25952256,404226,9436 +(1,11093:6630773,36072381:0,0,0 +g1,11093:6630773,36072381 +g1,11093:6630773,36072381 +g1,11093:6303093,36072381 +(1,11093:6303093,36072381:0,0,0 +) +g1,11093:6630773,36072381 +) +g1,11102:7579210,36072381 +g1,11102:8211502,36072381 +g1,11102:8843794,36072381 +g1,11102:11372960,36072381 +g1,11102:12005252,36072381 +g1,11102:12637544,36072381 +h1,11102:12953690,36072381:0,0,0 +k1,11102:32583030,36072381:19629340 +g1,11102:32583030,36072381 +) +(1,11102:6630773,36738559:25952256,404226,6290 +h1,11102:6630773,36738559:0,0,0 +g1,11102:7579210,36738559 +g1,11102:7895356,36738559 +g1,11102:8211502,36738559 +g1,11102:8527648,36738559 +g1,11102:8843794,36738559 +g1,11102:10108377,36738559 +g1,11102:12637543,36738559 +h1,11102:14850563,36738559:0,0,0 +k1,11102:32583029,36738559:17732466 +g1,11102:32583029,36738559 +) +(1,11102:6630773,37404737:25952256,404226,6290 +h1,11102:6630773,37404737:0,0,0 +g1,11102:7579210,37404737 +g1,11102:7895356,37404737 +g1,11102:8211502,37404737 +g1,11102:10108377,37404737 +g1,11102:12005252,37404737 +g1,11102:12321398,37404737 +g1,11102:12637544,37404737 +k1,11102:12637544,37404737:0 +h1,11102:14218273,37404737:0,0,0 +k1,11102:32583029,37404737:18364756 +g1,11102:32583029,37404737 +) +(1,11102:6630773,38070915:25952256,404226,6290 +h1,11102:6630773,38070915:0,0,0 +g1,11102:7579210,38070915 +g1,11102:8211502,38070915 +g1,11102:8527648,38070915 +g1,11102:8843794,38070915 +g1,11102:9159940,38070915 +g1,11102:9476086,38070915 +g1,11102:10108378,38070915 +g1,11102:10740670,38070915 +g1,11102:11056816,38070915 +g1,11102:11372962,38070915 +g1,11102:11689108,38070915 +g1,11102:12005254,38070915 +g1,11102:12321400,38070915 +g1,11102:12637546,38070915 +h1,11102:12953692,38070915:0,0,0 +k1,11102:32583028,38070915:19629336 +g1,11102:32583028,38070915 +) +(1,11102:6630773,38737093:25952256,404226,6290 +h1,11102:6630773,38737093:0,0,0 +g1,11102:7579210,38737093 +g1,11102:8211502,38737093 +g1,11102:8527648,38737093 +g1,11102:8843794,38737093 +g1,11102:9159940,38737093 +g1,11102:9476086,38737093 +g1,11102:10108378,38737093 +g1,11102:10740670,38737093 +g1,11102:11056816,38737093 +g1,11102:11372962,38737093 +g1,11102:11689108,38737093 +g1,11102:12005254,38737093 +g1,11102:12321400,38737093 +g1,11102:12637546,38737093 +h1,11102:12953692,38737093:0,0,0 +k1,11102:32583028,38737093:19629336 +g1,11102:32583028,38737093 +) +(1,11102:6630773,39403271:25952256,404226,9436 +h1,11102:6630773,39403271:0,0,0 +g1,11102:7579210,39403271 +g1,11102:8211502,39403271 +g1,11102:8527648,39403271 +g1,11102:8843794,39403271 +g1,11102:9159940,39403271 +g1,11102:9476086,39403271 +g1,11102:10108378,39403271 +g1,11102:10740670,39403271 +g1,11102:11056816,39403271 +g1,11102:11372962,39403271 +g1,11102:11689108,39403271 +g1,11102:12005254,39403271 +g1,11102:12321400,39403271 +g1,11102:12637546,39403271 +h1,11102:12953692,39403271:0,0,0 +k1,11102:32583028,39403271:19629336 +g1,11102:32583028,39403271 +) +(1,11102:6630773,40069449:25952256,404226,6290 +h1,11102:6630773,40069449:0,0,0 +g1,11102:7579210,40069449 +g1,11102:8211502,40069449 +g1,11102:8527648,40069449 +g1,11102:8843794,40069449 +g1,11102:9159940,40069449 +g1,11102:9476086,40069449 +g1,11102:10108378,40069449 +g1,11102:10740670,40069449 +g1,11102:11056816,40069449 +g1,11102:11372962,40069449 +g1,11102:11689108,40069449 +g1,11102:12005254,40069449 +g1,11102:12321400,40069449 +g1,11102:12637546,40069449 +h1,11102:12953692,40069449:0,0,0 +k1,11102:32583028,40069449:19629336 +g1,11102:32583028,40069449 +) +(1,11102:6630773,40735627:25952256,379060,9436 +h1,11102:6630773,40735627:0,0,0 +g1,11102:7579210,40735627 +g1,11102:8211502,40735627 +g1,11102:8527648,40735627 +g1,11102:8843794,40735627 +g1,11102:9159940,40735627 +g1,11102:9476086,40735627 +g1,11102:10108378,40735627 +g1,11102:10740670,40735627 +g1,11102:11056816,40735627 +g1,11102:11372962,40735627 +g1,11102:11689108,40735627 +g1,11102:12005254,40735627 +g1,11102:12321400,40735627 +g1,11102:12637546,40735627 +k1,11102:12637546,40735627:0 +h1,11102:13902129,40735627:0,0,0 +k1,11102:32583029,40735627:18680900 +g1,11102:32583029,40735627 +) +] +) +g1,11103:32583029,40745063 +g1,11103:6630773,40745063 +g1,11103:6630773,40745063 +g1,11103:32583029,40745063 +g1,11103:32583029,40745063 +) +h1,11103:6630773,40941671:0,0,0 +v1,11107:6630773,42636067:0,393216,0 +(1,11123:6630773,45510161:25952256,3267310,196608 +g1,11123:6630773,45510161 +g1,11123:6630773,45510161 +g1,11123:6434165,45510161 +(1,11123:6434165,45510161:0,3267310,196608 +r1,11123:32779637,45510161:26345472,3463918,196608 +k1,11123:6434165,45510161:-26345472 +) +(1,11123:6434165,45510161:26345472,3267310,196608 +[1,11123:6630773,45510161:25952256,3070702,0 +(1,11109:6630773,42849977:25952256,410518,107478 +(1,11108:6630773,42849977:0,0,0 +g1,11108:6630773,42849977 +g1,11108:6630773,42849977 +g1,11108:6303093,42849977 +(1,11108:6303093,42849977:0,0,0 +) +g1,11108:6630773,42849977 +) +k1,11109:6630773,42849977:0 +g1,11109:10424522,42849977 +g1,11109:11056814,42849977 +g1,11109:14534417,42849977 +g1,11109:15166709,42849977 +g1,11109:15799001,42849977 +h1,11109:18644312,42849977:0,0,0 +k1,11109:32583029,42849977:13938717 +g1,11109:32583029,42849977 +) +(1,11113:6630773,44171515:25952256,404226,107478 +g1,11113:7579210,44171515 +g1,11113:10424521,44171515 +g1,11113:11372958,44171515 +g1,11113:12005250,44171515 +k1,11113:32583030,44171515:18997052 +g1,11113:32583030,44171515 +) +(1,11122:6630773,44837693:25952256,404226,9436 +(1,11113:6630773,44837693:0,0,0 +g1,11113:6630773,44837693 +g1,11113:6630773,44837693 +g1,11113:6303093,44837693 +(1,11113:6303093,44837693:0,0,0 +) +g1,11113:6630773,44837693 +) +g1,11122:7579210,44837693 +g1,11122:8211502,44837693 +g1,11122:8843794,44837693 +g1,11122:11372960,44837693 +g1,11122:12005252,44837693 +g1,11122:12637544,44837693 +h1,11122:12953690,44837693:0,0,0 +k1,11122:32583030,44837693:19629340 +g1,11122:32583030,44837693 +) +(1,11122:6630773,45503871:25952256,404226,6290 +h1,11122:6630773,45503871:0,0,0 +g1,11122:7579210,45503871 +g1,11122:7895356,45503871 +g1,11122:8211502,45503871 +g1,11122:8527648,45503871 +g1,11122:8843794,45503871 +g1,11122:10108377,45503871 +g1,11122:12637543,45503871 +h1,11122:14850563,45503871:0,0,0 +k1,11122:32583029,45503871:17732466 +g1,11122:32583029,45503871 +) +] +) +g1,11123:32583029,45510161 +g1,11123:6630773,45510161 +g1,11123:6630773,45510161 +g1,11123:32583029,45510161 +g1,11123:32583029,45510161 +) +] +(1,11123:32583029,45706769:0,0,0 +g1,11123:32583029,45706769 +) +) +] +(1,11123:6630773,47279633:25952256,0,0 +h1,11123:6630773,47279633:25952256,0,0 +) +] +h1,11123:4262630,4025873:0,0,0 +] +!30399 }207 -Input:1417:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1418:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1419:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1420:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1421:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1422:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {208 -[1,11203:4262630,47279633:28320399,43253760,0 -(1,11203:4262630,4025873:0,0,0 -[1,11203:-473657,4025873:25952256,0,0 -(1,11203:-473657,-710414:25952256,0,0 -h1,11203:-473657,-710414:0,0,0 -(1,11203:-473657,-710414:0,0,0 -(1,11203:-473657,-710414:0,0,0 -g1,11203:-473657,-710414 -(1,11203:-473657,-710414:65781,0,65781 -g1,11203:-407876,-710414 -[1,11203:-407876,-644633:0,0,0 +[1,11208:4262630,47279633:28320399,43253760,0 +(1,11208:4262630,4025873:0,0,0 +[1,11208:-473657,4025873:25952256,0,0 +(1,11208:-473657,-710414:25952256,0,0 +h1,11208:-473657,-710414:0,0,0 +(1,11208:-473657,-710414:0,0,0 +(1,11208:-473657,-710414:0,0,0 +g1,11208:-473657,-710414 +(1,11208:-473657,-710414:65781,0,65781 +g1,11208:-407876,-710414 +[1,11208:-407876,-644633:0,0,0 ] ) -k1,11203:-473657,-710414:-65781 +k1,11208:-473657,-710414:-65781 ) ) -k1,11203:25478599,-710414:25952256 -g1,11203:25478599,-710414 +k1,11208:25478599,-710414:25952256 +g1,11208:25478599,-710414 ) ] ) -[1,11203:6630773,47279633:25952256,43253760,0 -[1,11203:6630773,4812305:25952256,786432,0 -(1,11203:6630773,4812305:25952256,505283,126483 -(1,11203:6630773,4812305:25952256,505283,126483 -g1,11203:3078558,4812305 -[1,11203:3078558,4812305:0,0,0 -(1,11203:3078558,2439708:0,1703936,0 -k1,11203:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,11203:2537886,2439708:1179648,16384,0 +[1,11208:6630773,47279633:25952256,43253760,0 +[1,11208:6630773,4812305:25952256,786432,0 +(1,11208:6630773,4812305:25952256,505283,126483 +(1,11208:6630773,4812305:25952256,505283,126483 +g1,11208:3078558,4812305 +[1,11208:3078558,4812305:0,0,0 +(1,11208:3078558,2439708:0,1703936,0 +k1,11208:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,11208:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,11203:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,11208:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,11203:3078558,4812305:0,0,0 -(1,11203:3078558,2439708:0,1703936,0 -g1,11203:29030814,2439708 -g1,11203:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,11203:36151628,1915420:16384,1179648,0 +[1,11208:3078558,4812305:0,0,0 +(1,11208:3078558,2439708:0,1703936,0 +g1,11208:29030814,2439708 +g1,11208:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,11208:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,11203:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,11208:37855564,2439708:1179648,16384,0 ) ) -k1,11203:3078556,2439708:-34777008 +k1,11208:3078556,2439708:-34777008 ) ] -[1,11203:3078558,4812305:0,0,0 -(1,11203:3078558,49800853:0,16384,2228224 -k1,11203:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,11203:2537886,49800853:1179648,16384,0 +[1,11208:3078558,4812305:0,0,0 +(1,11208:3078558,49800853:0,16384,2228224 +k1,11208:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,11208:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,11203:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,11208:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 -) -] -) -) -) -] -[1,11203:3078558,4812305:0,0,0 -(1,11203:3078558,49800853:0,16384,2228224 -g1,11203:29030814,49800853 -g1,11203:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,11203:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,11203:37855564,49800853:1179648,16384,0 -) -) -k1,11203:3078556,49800853:-34777008 -) -] -g1,11203:6630773,4812305 -g1,11203:6630773,4812305 -g1,11203:8364200,4812305 -g1,11203:12785258,4812305 -g1,11203:14347636,4812305 -g1,11203:16554232,4812305 -k1,11203:31387652,4812305:14833420 -) -) -] -[1,11203:6630773,45706769:25952256,40108032,0 -(1,11203:6630773,45706769:25952256,40108032,0 -(1,11203:6630773,45706769:0,0,0 -g1,11203:6630773,45706769 -) -[1,11203:6630773,45706769:25952256,40108032,0 -v1,11118:6630773,6254097:0,393216,0 -(1,11118:6630773,9802041:25952256,3941160,196608 -g1,11118:6630773,9802041 -g1,11118:6630773,9802041 -g1,11118:6434165,9802041 -(1,11118:6434165,9802041:0,3941160,196608 -r1,11118:32779637,9802041:26345472,4137768,196608 -k1,11118:6434165,9802041:-26345472 -) -(1,11118:6434165,9802041:26345472,3941160,196608 -[1,11118:6630773,9802041:25952256,3744552,0 -(1,11117:6630773,6461715:25952256,404226,6290 -h1,11117:6630773,6461715:0,0,0 -g1,11117:7579210,6461715 -g1,11117:7895356,6461715 -g1,11117:8211502,6461715 -g1,11117:10108377,6461715 -g1,11117:12005252,6461715 -g1,11117:12321398,6461715 -g1,11117:12637544,6461715 -k1,11117:12637544,6461715:0 -h1,11117:14218273,6461715:0,0,0 -k1,11117:32583029,6461715:18364756 -g1,11117:32583029,6461715 -) -(1,11117:6630773,7127893:25952256,404226,6290 -h1,11117:6630773,7127893:0,0,0 -g1,11117:7579210,7127893 -g1,11117:8211502,7127893 -g1,11117:8527648,7127893 -g1,11117:8843794,7127893 -g1,11117:9159940,7127893 -g1,11117:9476086,7127893 -g1,11117:10108378,7127893 -g1,11117:10740670,7127893 -g1,11117:11056816,7127893 -g1,11117:11372962,7127893 -g1,11117:11689108,7127893 -g1,11117:12005254,7127893 -g1,11117:12321400,7127893 -g1,11117:12637546,7127893 -h1,11117:12953692,7127893:0,0,0 -k1,11117:32583028,7127893:19629336 -g1,11117:32583028,7127893 -) -(1,11117:6630773,7794071:25952256,404226,6290 -h1,11117:6630773,7794071:0,0,0 -g1,11117:7579210,7794071 -g1,11117:8211502,7794071 -g1,11117:8527648,7794071 -g1,11117:8843794,7794071 -g1,11117:9159940,7794071 -g1,11117:9476086,7794071 -g1,11117:10108378,7794071 -g1,11117:10740670,7794071 -g1,11117:11056816,7794071 -g1,11117:11372962,7794071 -g1,11117:11689108,7794071 -g1,11117:12005254,7794071 -g1,11117:12321400,7794071 -g1,11117:12637546,7794071 -h1,11117:12953692,7794071:0,0,0 -k1,11117:32583028,7794071:19629336 -g1,11117:32583028,7794071 -) -(1,11117:6630773,8460249:25952256,404226,9436 -h1,11117:6630773,8460249:0,0,0 -g1,11117:7579210,8460249 -g1,11117:8211502,8460249 -g1,11117:8527648,8460249 -g1,11117:8843794,8460249 -g1,11117:9159940,8460249 -g1,11117:9476086,8460249 -g1,11117:10108378,8460249 -g1,11117:10740670,8460249 -g1,11117:11056816,8460249 -g1,11117:11372962,8460249 -g1,11117:11689108,8460249 -g1,11117:12005254,8460249 -g1,11117:12321400,8460249 -g1,11117:12637546,8460249 -h1,11117:12953692,8460249:0,0,0 -k1,11117:32583028,8460249:19629336 -g1,11117:32583028,8460249 -) -(1,11117:6630773,9126427:25952256,404226,6290 -h1,11117:6630773,9126427:0,0,0 -g1,11117:7579210,9126427 -g1,11117:8211502,9126427 -g1,11117:8527648,9126427 -g1,11117:8843794,9126427 -g1,11117:9159940,9126427 -g1,11117:9476086,9126427 -g1,11117:10108378,9126427 -g1,11117:10740670,9126427 -g1,11117:11056816,9126427 -g1,11117:11372962,9126427 -g1,11117:11689108,9126427 -g1,11117:12005254,9126427 -g1,11117:12321400,9126427 -g1,11117:12637546,9126427 -h1,11117:12953692,9126427:0,0,0 -k1,11117:32583028,9126427:19629336 -g1,11117:32583028,9126427 -) -(1,11117:6630773,9792605:25952256,404226,9436 -h1,11117:6630773,9792605:0,0,0 -g1,11117:7579210,9792605 -g1,11117:8211502,9792605 -g1,11117:8527648,9792605 -g1,11117:8843794,9792605 -g1,11117:9159940,9792605 -g1,11117:9476086,9792605 -g1,11117:10108378,9792605 -g1,11117:10740670,9792605 -g1,11117:11056816,9792605 -g1,11117:11372962,9792605 -g1,11117:11689108,9792605 -g1,11117:12005254,9792605 -g1,11117:12321400,9792605 -g1,11117:12637546,9792605 -k1,11117:12637546,9792605:0 -h1,11117:13902129,9792605:0,0,0 -k1,11117:32583029,9792605:18680900 -g1,11117:32583029,9792605 -) -] -) -g1,11118:32583029,9802041 -g1,11118:6630773,9802041 -g1,11118:6630773,9802041 -g1,11118:32583029,9802041 -g1,11118:32583029,9802041 -) -h1,11118:6630773,9998649:0,0,0 -v1,11122:6630773,11713403:0,393216,0 -(1,11138:6630773,18587711:25952256,7267524,196608 -g1,11138:6630773,18587711 -g1,11138:6630773,18587711 -g1,11138:6434165,18587711 -(1,11138:6434165,18587711:0,7267524,196608 -r1,11138:32779637,18587711:26345472,7464132,196608 -k1,11138:6434165,18587711:-26345472 -) -(1,11138:6434165,18587711:26345472,7267524,196608 -[1,11138:6630773,18587711:25952256,7070916,0 -(1,11124:6630773,11927313:25952256,410518,107478 -(1,11123:6630773,11927313:0,0,0 -g1,11123:6630773,11927313 -g1,11123:6630773,11927313 -g1,11123:6303093,11927313 -(1,11123:6303093,11927313:0,0,0 -) -g1,11123:6630773,11927313 -) -k1,11124:6630773,11927313:0 -g1,11124:10740668,11927313 -g1,11124:11372960,11927313 -g1,11124:14534417,11927313 -g1,11124:15166709,11927313 -g1,11124:15799001,11927313 -h1,11124:18960458,11927313:0,0,0 -k1,11124:32583029,11927313:13622571 -g1,11124:32583029,11927313 -) -(1,11128:6630773,13248851:25952256,404226,107478 -g1,11128:7579210,13248851 -g1,11128:10424521,13248851 -g1,11128:11372958,13248851 -g1,11128:12005250,13248851 -k1,11128:32583030,13248851:18997052 -g1,11128:32583030,13248851 -) -(1,11137:6630773,13915029:25952256,404226,9436 -(1,11128:6630773,13915029:0,0,0 -g1,11128:6630773,13915029 -g1,11128:6630773,13915029 -g1,11128:6303093,13915029 -(1,11128:6303093,13915029:0,0,0 -) -g1,11128:6630773,13915029 -) -g1,11137:7579210,13915029 -g1,11137:8211502,13915029 -g1,11137:8843794,13915029 -g1,11137:11372960,13915029 -g1,11137:12005252,13915029 -g1,11137:12637544,13915029 -h1,11137:12953690,13915029:0,0,0 -k1,11137:32583030,13915029:19629340 -g1,11137:32583030,13915029 -) -(1,11137:6630773,14581207:25952256,404226,6290 -h1,11137:6630773,14581207:0,0,0 -g1,11137:7579210,14581207 -g1,11137:7895356,14581207 -g1,11137:8211502,14581207 -g1,11137:8527648,14581207 -g1,11137:8843794,14581207 -g1,11137:10108377,14581207 -g1,11137:12637543,14581207 -h1,11137:14850563,14581207:0,0,0 -k1,11137:32583029,14581207:17732466 -g1,11137:32583029,14581207 -) -(1,11137:6630773,15247385:25952256,404226,6290 -h1,11137:6630773,15247385:0,0,0 -g1,11137:7579210,15247385 -g1,11137:7895356,15247385 -g1,11137:8211502,15247385 -g1,11137:10108377,15247385 -g1,11137:12005252,15247385 -g1,11137:12321398,15247385 -g1,11137:12637544,15247385 -k1,11137:12637544,15247385:0 -h1,11137:14218273,15247385:0,0,0 -k1,11137:32583029,15247385:18364756 -g1,11137:32583029,15247385 -) -(1,11137:6630773,15913563:25952256,404226,6290 -h1,11137:6630773,15913563:0,0,0 -g1,11137:7579210,15913563 -g1,11137:8211502,15913563 -g1,11137:8527648,15913563 -g1,11137:8843794,15913563 -g1,11137:9159940,15913563 -g1,11137:9476086,15913563 -g1,11137:10108378,15913563 -g1,11137:10740670,15913563 -g1,11137:11056816,15913563 -g1,11137:11372962,15913563 -g1,11137:11689108,15913563 -g1,11137:12005254,15913563 -g1,11137:12321400,15913563 -g1,11137:12637546,15913563 -h1,11137:12953692,15913563:0,0,0 -k1,11137:32583028,15913563:19629336 -g1,11137:32583028,15913563 -) -(1,11137:6630773,16579741:25952256,404226,6290 -h1,11137:6630773,16579741:0,0,0 -g1,11137:7579210,16579741 -g1,11137:8211502,16579741 -g1,11137:8527648,16579741 -g1,11137:8843794,16579741 -g1,11137:9159940,16579741 -g1,11137:9476086,16579741 -g1,11137:10108378,16579741 -g1,11137:10740670,16579741 -g1,11137:11056816,16579741 -g1,11137:11372962,16579741 -g1,11137:11689108,16579741 -g1,11137:12005254,16579741 -g1,11137:12321400,16579741 -g1,11137:12637546,16579741 -h1,11137:12953692,16579741:0,0,0 -k1,11137:32583028,16579741:19629336 -g1,11137:32583028,16579741 -) -(1,11137:6630773,17245919:25952256,404226,9436 -h1,11137:6630773,17245919:0,0,0 -g1,11137:7579210,17245919 -g1,11137:8211502,17245919 -g1,11137:8527648,17245919 -g1,11137:8843794,17245919 -g1,11137:9159940,17245919 -g1,11137:9476086,17245919 -g1,11137:10108378,17245919 -g1,11137:10740670,17245919 -g1,11137:11056816,17245919 -g1,11137:11372962,17245919 -g1,11137:11689108,17245919 -g1,11137:12005254,17245919 -g1,11137:12321400,17245919 -g1,11137:12637546,17245919 -h1,11137:12953692,17245919:0,0,0 -k1,11137:32583028,17245919:19629336 -g1,11137:32583028,17245919 -) -(1,11137:6630773,17912097:25952256,404226,6290 -h1,11137:6630773,17912097:0,0,0 -g1,11137:7579210,17912097 -g1,11137:8211502,17912097 -g1,11137:8527648,17912097 -g1,11137:8843794,17912097 -g1,11137:9159940,17912097 -g1,11137:9476086,17912097 -g1,11137:10108378,17912097 -g1,11137:10740670,17912097 -g1,11137:11056816,17912097 -g1,11137:11372962,17912097 -g1,11137:11689108,17912097 -g1,11137:12005254,17912097 -g1,11137:12321400,17912097 -g1,11137:12637546,17912097 -h1,11137:12953692,17912097:0,0,0 -k1,11137:32583028,17912097:19629336 -g1,11137:32583028,17912097 -) -(1,11137:6630773,18578275:25952256,404226,9436 -h1,11137:6630773,18578275:0,0,0 -g1,11137:7579210,18578275 -g1,11137:8211502,18578275 -g1,11137:8527648,18578275 -g1,11137:8843794,18578275 -g1,11137:9159940,18578275 -g1,11137:9476086,18578275 -g1,11137:10108378,18578275 -g1,11137:11689107,18578275 -g1,11137:12005253,18578275 -g1,11137:12321399,18578275 -g1,11137:12637545,18578275 -h1,11137:12953691,18578275:0,0,0 -k1,11137:32583029,18578275:19629338 -g1,11137:32583029,18578275 -) -] -) -g1,11138:32583029,18587711 -g1,11138:6630773,18587711 -g1,11138:6630773,18587711 -g1,11138:32583029,18587711 -g1,11138:32583029,18587711 -) -h1,11138:6630773,18784319:0,0,0 -v1,11142:6630773,20499073:0,393216,0 -(1,11158:6630773,27373381:25952256,7267524,196608 -g1,11158:6630773,27373381 -g1,11158:6630773,27373381 -g1,11158:6434165,27373381 -(1,11158:6434165,27373381:0,7267524,196608 -r1,11158:32779637,27373381:26345472,7464132,196608 -k1,11158:6434165,27373381:-26345472 -) -(1,11158:6434165,27373381:26345472,7267524,196608 -[1,11158:6630773,27373381:25952256,7070916,0 -(1,11144:6630773,20712983:25952256,410518,107478 -(1,11143:6630773,20712983:0,0,0 -g1,11143:6630773,20712983 -g1,11143:6630773,20712983 -g1,11143:6303093,20712983 -(1,11143:6303093,20712983:0,0,0 -) -g1,11143:6630773,20712983 -) -k1,11144:6630773,20712983:0 -g1,11144:10740668,20712983 -g1,11144:11372960,20712983 -g1,11144:14850563,20712983 -g1,11144:15482855,20712983 -g1,11144:16115147,20712983 -h1,11144:18960458,20712983:0,0,0 -k1,11144:32583029,20712983:13622571 -g1,11144:32583029,20712983 -) -(1,11148:6630773,22034521:25952256,404226,107478 -g1,11148:7579210,22034521 -g1,11148:10424521,22034521 -g1,11148:11372958,22034521 -g1,11148:12005250,22034521 -k1,11148:32583030,22034521:18997052 -g1,11148:32583030,22034521 -) -(1,11157:6630773,22700699:25952256,404226,9436 -(1,11148:6630773,22700699:0,0,0 -g1,11148:6630773,22700699 -g1,11148:6630773,22700699 -g1,11148:6303093,22700699 -(1,11148:6303093,22700699:0,0,0 -) -g1,11148:6630773,22700699 -) -g1,11157:7579210,22700699 -g1,11157:8211502,22700699 -g1,11157:8843794,22700699 -g1,11157:11372960,22700699 -g1,11157:12005252,22700699 -g1,11157:12637544,22700699 -h1,11157:12953690,22700699:0,0,0 -k1,11157:32583030,22700699:19629340 -g1,11157:32583030,22700699 -) -(1,11157:6630773,23366877:25952256,404226,6290 -h1,11157:6630773,23366877:0,0,0 -g1,11157:7579210,23366877 -g1,11157:7895356,23366877 -g1,11157:8211502,23366877 -g1,11157:8527648,23366877 -g1,11157:8843794,23366877 -g1,11157:10108377,23366877 -g1,11157:12637543,23366877 -h1,11157:14850563,23366877:0,0,0 -k1,11157:32583029,23366877:17732466 -g1,11157:32583029,23366877 -) -(1,11157:6630773,24033055:25952256,404226,6290 -h1,11157:6630773,24033055:0,0,0 -g1,11157:7579210,24033055 -g1,11157:7895356,24033055 -g1,11157:8211502,24033055 -g1,11157:10108377,24033055 -g1,11157:12005252,24033055 -g1,11157:12321398,24033055 -g1,11157:12637544,24033055 -k1,11157:12637544,24033055:0 -h1,11157:14218273,24033055:0,0,0 -k1,11157:32583029,24033055:18364756 -g1,11157:32583029,24033055 -) -(1,11157:6630773,24699233:25952256,404226,6290 -h1,11157:6630773,24699233:0,0,0 -g1,11157:7579210,24699233 -g1,11157:8211502,24699233 -g1,11157:8527648,24699233 -g1,11157:8843794,24699233 -g1,11157:9159940,24699233 -g1,11157:9476086,24699233 -g1,11157:10108378,24699233 -g1,11157:10740670,24699233 -g1,11157:11056816,24699233 -g1,11157:11372962,24699233 -g1,11157:11689108,24699233 -g1,11157:12005254,24699233 -g1,11157:12321400,24699233 -g1,11157:12637546,24699233 -h1,11157:12953692,24699233:0,0,0 -k1,11157:32583028,24699233:19629336 -g1,11157:32583028,24699233 -) -(1,11157:6630773,25365411:25952256,404226,6290 -h1,11157:6630773,25365411:0,0,0 -g1,11157:7579210,25365411 -g1,11157:8211502,25365411 -g1,11157:8527648,25365411 -g1,11157:8843794,25365411 -g1,11157:9159940,25365411 -g1,11157:9476086,25365411 -g1,11157:10108378,25365411 -g1,11157:10740670,25365411 -g1,11157:11056816,25365411 -g1,11157:11372962,25365411 -g1,11157:11689108,25365411 -g1,11157:12005254,25365411 -g1,11157:12321400,25365411 -g1,11157:12637546,25365411 -h1,11157:12953692,25365411:0,0,0 -k1,11157:32583028,25365411:19629336 -g1,11157:32583028,25365411 -) -(1,11157:6630773,26031589:25952256,404226,9436 -h1,11157:6630773,26031589:0,0,0 -g1,11157:7579210,26031589 -g1,11157:8211502,26031589 -g1,11157:8527648,26031589 -g1,11157:8843794,26031589 -g1,11157:9159940,26031589 -g1,11157:9476086,26031589 -g1,11157:10108378,26031589 -g1,11157:10740670,26031589 -g1,11157:11056816,26031589 -g1,11157:11372962,26031589 -g1,11157:11689108,26031589 -g1,11157:12005254,26031589 -g1,11157:12321400,26031589 -g1,11157:12637546,26031589 -h1,11157:12953692,26031589:0,0,0 -k1,11157:32583028,26031589:19629336 -g1,11157:32583028,26031589 -) -(1,11157:6630773,26697767:25952256,404226,6290 -h1,11157:6630773,26697767:0,0,0 -g1,11157:7579210,26697767 -g1,11157:8211502,26697767 -g1,11157:8527648,26697767 -g1,11157:8843794,26697767 -g1,11157:9159940,26697767 -g1,11157:9476086,26697767 -g1,11157:10108378,26697767 -g1,11157:10740670,26697767 -g1,11157:11056816,26697767 -g1,11157:11372962,26697767 -g1,11157:11689108,26697767 -g1,11157:12005254,26697767 -g1,11157:12321400,26697767 -g1,11157:12637546,26697767 -h1,11157:12953692,26697767:0,0,0 -k1,11157:32583028,26697767:19629336 -g1,11157:32583028,26697767 -) -(1,11157:6630773,27363945:25952256,379060,9436 -h1,11157:6630773,27363945:0,0,0 -g1,11157:7579210,27363945 -g1,11157:8211502,27363945 -g1,11157:8527648,27363945 -g1,11157:8843794,27363945 -g1,11157:9159940,27363945 -g1,11157:9476086,27363945 -g1,11157:10108378,27363945 -g1,11157:11689107,27363945 -g1,11157:12005253,27363945 -g1,11157:12321399,27363945 -g1,11157:12637545,27363945 -h1,11157:12953691,27363945:0,0,0 -k1,11157:32583029,27363945:19629338 -g1,11157:32583029,27363945 -) -] -) -g1,11158:32583029,27373381 -g1,11158:6630773,27373381 -g1,11158:6630773,27373381 -g1,11158:32583029,27373381 -g1,11158:32583029,27373381 -) -h1,11158:6630773,27569989:0,0,0 -(1,11162:6630773,28935765:25952256,505283,134348 -h1,11161:6630773,28935765:983040,0,0 -k1,11161:8743833,28935765:227589 -k1,11161:10638004,28935765:227590 -k1,11161:12102913,28935765:227589 -k1,11161:15011581,28935765:227590 -k1,11161:16005286,28935765:227589 -k1,11161:17767074,28935765:227590 -k1,11161:18610701,28935765:227589 -(1,11161:18610701,28935765:0,414482,115847 -r1,11161:18968967,28935765:358266,530329,115847 -k1,11161:18610701,28935765:-358266 -) -(1,11161:18610701,28935765:358266,414482,115847 -k1,11161:18610701,28935765:3277 -h1,11161:18965690,28935765:0,411205,112570 -) -k1,11161:19196557,28935765:227590 -k1,11161:20708652,28935765:227589 -k1,11161:21751510,28935765:227590 -k1,11161:23045370,28935765:227589 -k1,11161:24748175,28935765:227590 -k1,11161:25331624,28935765:227589 -k1,11161:28530616,28935765:227590 -k1,11161:29962101,28935765:227589 -k1,11161:30805729,28935765:227590 -(1,11161:30805729,28935765:0,414482,115847 -r1,11161:31163995,28935765:358266,530329,115847 -k1,11161:30805729,28935765:-358266 -) -(1,11161:30805729,28935765:358266,414482,115847 -k1,11161:30805729,28935765:3277 -h1,11161:31160718,28935765:0,411205,112570 -) -k1,11161:31391584,28935765:227589 -k1,11161:32583029,28935765:0 -) -(1,11162:6630773,29777253:25952256,473825,7863 -g1,11161:8043729,29777253 -k1,11162:32583029,29777253:22665626 -g1,11162:32583029,29777253 -) -v1,11164:6630773,30967719:0,393216,0 -(1,11179:6630773,37172703:25952256,6598200,196608 -g1,11179:6630773,37172703 -g1,11179:6630773,37172703 -g1,11179:6434165,37172703 -(1,11179:6434165,37172703:0,6598200,196608 -r1,11179:32779637,37172703:26345472,6794808,196608 -k1,11179:6434165,37172703:-26345472 -) -(1,11179:6434165,37172703:26345472,6598200,196608 -[1,11179:6630773,37172703:25952256,6401592,0 -(1,11166:6630773,31181629:25952256,410518,107478 -(1,11165:6630773,31181629:0,0,0 -g1,11165:6630773,31181629 -g1,11165:6630773,31181629 -g1,11165:6303093,31181629 -(1,11165:6303093,31181629:0,0,0 -) -g1,11165:6630773,31181629 -) -k1,11166:6630773,31181629:0 -g1,11166:10740668,31181629 -g1,11166:11372960,31181629 -g1,11166:14534417,31181629 -g1,11166:15166709,31181629 -g1,11166:15799001,31181629 -h1,11166:18960458,31181629:0,0,0 -k1,11166:32583029,31181629:13622571 -g1,11166:32583029,31181629 -) -(1,11170:6630773,32503167:25952256,404226,107478 -g1,11170:7579210,32503167 -g1,11170:10424521,32503167 -g1,11170:11372958,32503167 -g1,11170:12005250,32503167 -k1,11170:32583030,32503167:18997052 -g1,11170:32583030,32503167 -) -(1,11178:6630773,33169345:25952256,404226,9436 -(1,11170:6630773,33169345:0,0,0 -g1,11170:6630773,33169345 -g1,11170:6630773,33169345 -g1,11170:6303093,33169345 -(1,11170:6303093,33169345:0,0,0 -) -g1,11170:6630773,33169345 -) -g1,11178:7579210,33169345 -g1,11178:8211502,33169345 -g1,11178:8843794,33169345 -g1,11178:11372960,33169345 -g1,11178:12005252,33169345 -g1,11178:12637544,33169345 -h1,11178:12953690,33169345:0,0,0 -k1,11178:32583030,33169345:19629340 -g1,11178:32583030,33169345 -) -(1,11178:6630773,33835523:25952256,404226,6290 -h1,11178:6630773,33835523:0,0,0 -g1,11178:7579210,33835523 -g1,11178:7895356,33835523 -g1,11178:8211502,33835523 -g1,11178:8527648,33835523 -g1,11178:8843794,33835523 -g1,11178:10108377,33835523 -g1,11178:12637543,33835523 -h1,11178:14850563,33835523:0,0,0 -k1,11178:32583029,33835523:17732466 -g1,11178:32583029,33835523 -) -(1,11178:6630773,34501701:25952256,404226,6290 -h1,11178:6630773,34501701:0,0,0 -g1,11178:7579210,34501701 -g1,11178:7895356,34501701 -g1,11178:8211502,34501701 -g1,11178:10108377,34501701 -g1,11178:12005252,34501701 -g1,11178:12321398,34501701 -g1,11178:12637544,34501701 -k1,11178:12637544,34501701:0 -h1,11178:14218273,34501701:0,0,0 -k1,11178:32583029,34501701:18364756 -g1,11178:32583029,34501701 -) -(1,11178:6630773,35167879:25952256,404226,6290 -h1,11178:6630773,35167879:0,0,0 -g1,11178:7579210,35167879 -g1,11178:8211502,35167879 -g1,11178:8527648,35167879 -g1,11178:8843794,35167879 -g1,11178:9159940,35167879 -g1,11178:9476086,35167879 -g1,11178:10108378,35167879 -g1,11178:10740670,35167879 -g1,11178:11056816,35167879 -g1,11178:11372962,35167879 -g1,11178:11689108,35167879 -g1,11178:12005254,35167879 -g1,11178:12321400,35167879 -g1,11178:12637546,35167879 -h1,11178:12953692,35167879:0,0,0 -k1,11178:32583028,35167879:19629336 -g1,11178:32583028,35167879 -) -(1,11178:6630773,35834057:25952256,404226,6290 -h1,11178:6630773,35834057:0,0,0 -g1,11178:7579210,35834057 -g1,11178:8211502,35834057 -g1,11178:8527648,35834057 -g1,11178:8843794,35834057 -g1,11178:9159940,35834057 -g1,11178:9476086,35834057 -g1,11178:10108378,35834057 -g1,11178:10740670,35834057 -g1,11178:11056816,35834057 -g1,11178:11372962,35834057 -g1,11178:11689108,35834057 -g1,11178:12005254,35834057 -g1,11178:12321400,35834057 -g1,11178:12637546,35834057 -h1,11178:12953692,35834057:0,0,0 -k1,11178:32583028,35834057:19629336 -g1,11178:32583028,35834057 -) -(1,11178:6630773,36500235:25952256,404226,9436 -h1,11178:6630773,36500235:0,0,0 -g1,11178:7579210,36500235 -g1,11178:8211502,36500235 -g1,11178:8527648,36500235 -g1,11178:8843794,36500235 -g1,11178:9159940,36500235 -g1,11178:9476086,36500235 -g1,11178:10108378,36500235 -g1,11178:10740670,36500235 -g1,11178:11056816,36500235 -g1,11178:11372962,36500235 -g1,11178:11689108,36500235 -g1,11178:12005254,36500235 -g1,11178:12321400,36500235 -g1,11178:12637546,36500235 -h1,11178:12953692,36500235:0,0,0 -k1,11178:32583028,36500235:19629336 -g1,11178:32583028,36500235 -) -(1,11178:6630773,37166413:25952256,404226,6290 -h1,11178:6630773,37166413:0,0,0 -g1,11178:7579210,37166413 -g1,11178:8211502,37166413 -g1,11178:8527648,37166413 -g1,11178:8843794,37166413 -g1,11178:9159940,37166413 -g1,11178:9476086,37166413 -g1,11178:10108378,37166413 -g1,11178:10740670,37166413 -g1,11178:11056816,37166413 -g1,11178:11372962,37166413 -g1,11178:11689108,37166413 -g1,11178:12005254,37166413 -g1,11178:12321400,37166413 -g1,11178:12637546,37166413 -h1,11178:12953692,37166413:0,0,0 -k1,11178:32583028,37166413:19629336 -g1,11178:32583028,37166413 -) -] -) -g1,11179:32583029,37172703 -g1,11179:6630773,37172703 -g1,11179:6630773,37172703 -g1,11179:32583029,37172703 -g1,11179:32583029,37172703 -) -h1,11179:6630773,37369311:0,0,0 -v1,11183:6630773,39084065:0,393216,0 -(1,11198:6630773,45289049:25952256,6598200,196608 -g1,11198:6630773,45289049 -g1,11198:6630773,45289049 -g1,11198:6434165,45289049 -(1,11198:6434165,45289049:0,6598200,196608 -r1,11198:32779637,45289049:26345472,6794808,196608 -k1,11198:6434165,45289049:-26345472 -) -(1,11198:6434165,45289049:26345472,6598200,196608 -[1,11198:6630773,45289049:25952256,6401592,0 -(1,11185:6630773,39297975:25952256,410518,107478 -(1,11184:6630773,39297975:0,0,0 -g1,11184:6630773,39297975 -g1,11184:6630773,39297975 -g1,11184:6303093,39297975 -(1,11184:6303093,39297975:0,0,0 -) -g1,11184:6630773,39297975 -) -k1,11185:6630773,39297975:0 -g1,11185:10740668,39297975 -g1,11185:11372960,39297975 -g1,11185:14850563,39297975 -g1,11185:15482855,39297975 -g1,11185:16115147,39297975 -h1,11185:18960458,39297975:0,0,0 -k1,11185:32583029,39297975:13622571 -g1,11185:32583029,39297975 -) -(1,11189:6630773,40619513:25952256,404226,107478 -g1,11189:7579210,40619513 -g1,11189:10424521,40619513 -g1,11189:11372958,40619513 -g1,11189:12005250,40619513 -k1,11189:32583030,40619513:18997052 -g1,11189:32583030,40619513 -) -(1,11197:6630773,41285691:25952256,404226,9436 -(1,11189:6630773,41285691:0,0,0 -g1,11189:6630773,41285691 -g1,11189:6630773,41285691 -g1,11189:6303093,41285691 -(1,11189:6303093,41285691:0,0,0 -) -g1,11189:6630773,41285691 -) -g1,11197:7579210,41285691 -g1,11197:8211502,41285691 -g1,11197:8843794,41285691 -g1,11197:11372960,41285691 -g1,11197:12005252,41285691 -g1,11197:12637544,41285691 -h1,11197:12953690,41285691:0,0,0 -k1,11197:32583030,41285691:19629340 -g1,11197:32583030,41285691 -) -(1,11197:6630773,41951869:25952256,404226,6290 -h1,11197:6630773,41951869:0,0,0 -g1,11197:7579210,41951869 -g1,11197:7895356,41951869 -g1,11197:8211502,41951869 -g1,11197:8527648,41951869 -g1,11197:8843794,41951869 -g1,11197:10108377,41951869 -g1,11197:12637543,41951869 -h1,11197:14850563,41951869:0,0,0 -k1,11197:32583029,41951869:17732466 -g1,11197:32583029,41951869 -) -(1,11197:6630773,42618047:25952256,404226,6290 -h1,11197:6630773,42618047:0,0,0 -g1,11197:7579210,42618047 -g1,11197:7895356,42618047 -g1,11197:8211502,42618047 -g1,11197:10108377,42618047 -g1,11197:12005252,42618047 -g1,11197:12321398,42618047 -g1,11197:12637544,42618047 -k1,11197:12637544,42618047:0 -h1,11197:14218273,42618047:0,0,0 -k1,11197:32583029,42618047:18364756 -g1,11197:32583029,42618047 -) -(1,11197:6630773,43284225:25952256,404226,6290 -h1,11197:6630773,43284225:0,0,0 -g1,11197:7579210,43284225 -g1,11197:8211502,43284225 -g1,11197:8527648,43284225 -g1,11197:8843794,43284225 -g1,11197:9159940,43284225 -g1,11197:9476086,43284225 -g1,11197:10108378,43284225 -g1,11197:10740670,43284225 -g1,11197:11056816,43284225 -g1,11197:11372962,43284225 -g1,11197:11689108,43284225 -g1,11197:12005254,43284225 -g1,11197:12321400,43284225 -g1,11197:12637546,43284225 -h1,11197:12953692,43284225:0,0,0 -k1,11197:32583028,43284225:19629336 -g1,11197:32583028,43284225 -) -(1,11197:6630773,43950403:25952256,404226,6290 -h1,11197:6630773,43950403:0,0,0 -g1,11197:7579210,43950403 -g1,11197:8211502,43950403 -g1,11197:8527648,43950403 -g1,11197:8843794,43950403 -g1,11197:9159940,43950403 -g1,11197:9476086,43950403 -g1,11197:10108378,43950403 -g1,11197:10740670,43950403 -g1,11197:11056816,43950403 -g1,11197:11372962,43950403 -g1,11197:11689108,43950403 -g1,11197:12005254,43950403 -g1,11197:12321400,43950403 -g1,11197:12637546,43950403 -h1,11197:12953692,43950403:0,0,0 -k1,11197:32583028,43950403:19629336 -g1,11197:32583028,43950403 -) -(1,11197:6630773,44616581:25952256,404226,9436 -h1,11197:6630773,44616581:0,0,0 -g1,11197:7579210,44616581 -g1,11197:8211502,44616581 -g1,11197:8527648,44616581 -g1,11197:8843794,44616581 -g1,11197:9159940,44616581 -g1,11197:9476086,44616581 -g1,11197:10108378,44616581 -g1,11197:10740670,44616581 -g1,11197:11056816,44616581 -g1,11197:11372962,44616581 -g1,11197:11689108,44616581 -g1,11197:12005254,44616581 -g1,11197:12321400,44616581 -g1,11197:12637546,44616581 -h1,11197:12953692,44616581:0,0,0 -k1,11197:32583028,44616581:19629336 -g1,11197:32583028,44616581 -) -(1,11197:6630773,45282759:25952256,404226,6290 -h1,11197:6630773,45282759:0,0,0 -g1,11197:7579210,45282759 -g1,11197:8211502,45282759 -g1,11197:8527648,45282759 -g1,11197:8843794,45282759 -g1,11197:9159940,45282759 -g1,11197:9476086,45282759 -g1,11197:10108378,45282759 -g1,11197:10740670,45282759 -g1,11197:11056816,45282759 -g1,11197:11372962,45282759 -g1,11197:11689108,45282759 -g1,11197:12005254,45282759 -g1,11197:12321400,45282759 -g1,11197:12637546,45282759 -h1,11197:12953692,45282759:0,0,0 -k1,11197:32583028,45282759:19629336 -g1,11197:32583028,45282759 -) -] -) -g1,11198:32583029,45289049 -g1,11198:6630773,45289049 -g1,11198:6630773,45289049 -g1,11198:32583029,45289049 -g1,11198:32583029,45289049 -) -h1,11198:6630773,45485657:0,0,0 -] -(1,11203:32583029,45706769:0,0,0 -g1,11203:32583029,45706769 -) -) -] -(1,11203:6630773,47279633:25952256,0,0 -h1,11203:6630773,47279633:25952256,0,0 -) -] -h1,11203:4262630,4025873:0,0,0 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,11208:3078558,4812305:0,0,0 +(1,11208:3078558,49800853:0,16384,2228224 +g1,11208:29030814,49800853 +g1,11208:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,11208:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,11208:37855564,49800853:1179648,16384,0 +) +) +k1,11208:3078556,49800853:-34777008 +) +] +g1,11208:6630773,4812305 +g1,11208:6630773,4812305 +g1,11208:8364200,4812305 +g1,11208:12785258,4812305 +g1,11208:14347636,4812305 +g1,11208:16554232,4812305 +k1,11208:31387652,4812305:14833420 +) +) +] +[1,11208:6630773,45706769:25952256,40108032,0 +(1,11208:6630773,45706769:25952256,40108032,0 +(1,11208:6630773,45706769:0,0,0 +g1,11208:6630773,45706769 +) +[1,11208:6630773,45706769:25952256,40108032,0 +v1,11123:6630773,6254097:0,393216,0 +(1,11123:6630773,9802041:25952256,3941160,196608 +g1,11123:6630773,9802041 +g1,11123:6630773,9802041 +g1,11123:6434165,9802041 +(1,11123:6434165,9802041:0,3941160,196608 +r1,11123:32779637,9802041:26345472,4137768,196608 +k1,11123:6434165,9802041:-26345472 +) +(1,11123:6434165,9802041:26345472,3941160,196608 +[1,11123:6630773,9802041:25952256,3744552,0 +(1,11122:6630773,6461715:25952256,404226,6290 +h1,11122:6630773,6461715:0,0,0 +g1,11122:7579210,6461715 +g1,11122:7895356,6461715 +g1,11122:8211502,6461715 +g1,11122:10108377,6461715 +g1,11122:12005252,6461715 +g1,11122:12321398,6461715 +g1,11122:12637544,6461715 +k1,11122:12637544,6461715:0 +h1,11122:14218273,6461715:0,0,0 +k1,11122:32583029,6461715:18364756 +g1,11122:32583029,6461715 +) +(1,11122:6630773,7127893:25952256,404226,6290 +h1,11122:6630773,7127893:0,0,0 +g1,11122:7579210,7127893 +g1,11122:8211502,7127893 +g1,11122:8527648,7127893 +g1,11122:8843794,7127893 +g1,11122:9159940,7127893 +g1,11122:9476086,7127893 +g1,11122:10108378,7127893 +g1,11122:10740670,7127893 +g1,11122:11056816,7127893 +g1,11122:11372962,7127893 +g1,11122:11689108,7127893 +g1,11122:12005254,7127893 +g1,11122:12321400,7127893 +g1,11122:12637546,7127893 +h1,11122:12953692,7127893:0,0,0 +k1,11122:32583028,7127893:19629336 +g1,11122:32583028,7127893 +) +(1,11122:6630773,7794071:25952256,404226,6290 +h1,11122:6630773,7794071:0,0,0 +g1,11122:7579210,7794071 +g1,11122:8211502,7794071 +g1,11122:8527648,7794071 +g1,11122:8843794,7794071 +g1,11122:9159940,7794071 +g1,11122:9476086,7794071 +g1,11122:10108378,7794071 +g1,11122:10740670,7794071 +g1,11122:11056816,7794071 +g1,11122:11372962,7794071 +g1,11122:11689108,7794071 +g1,11122:12005254,7794071 +g1,11122:12321400,7794071 +g1,11122:12637546,7794071 +h1,11122:12953692,7794071:0,0,0 +k1,11122:32583028,7794071:19629336 +g1,11122:32583028,7794071 +) +(1,11122:6630773,8460249:25952256,404226,9436 +h1,11122:6630773,8460249:0,0,0 +g1,11122:7579210,8460249 +g1,11122:8211502,8460249 +g1,11122:8527648,8460249 +g1,11122:8843794,8460249 +g1,11122:9159940,8460249 +g1,11122:9476086,8460249 +g1,11122:10108378,8460249 +g1,11122:10740670,8460249 +g1,11122:11056816,8460249 +g1,11122:11372962,8460249 +g1,11122:11689108,8460249 +g1,11122:12005254,8460249 +g1,11122:12321400,8460249 +g1,11122:12637546,8460249 +h1,11122:12953692,8460249:0,0,0 +k1,11122:32583028,8460249:19629336 +g1,11122:32583028,8460249 +) +(1,11122:6630773,9126427:25952256,404226,6290 +h1,11122:6630773,9126427:0,0,0 +g1,11122:7579210,9126427 +g1,11122:8211502,9126427 +g1,11122:8527648,9126427 +g1,11122:8843794,9126427 +g1,11122:9159940,9126427 +g1,11122:9476086,9126427 +g1,11122:10108378,9126427 +g1,11122:10740670,9126427 +g1,11122:11056816,9126427 +g1,11122:11372962,9126427 +g1,11122:11689108,9126427 +g1,11122:12005254,9126427 +g1,11122:12321400,9126427 +g1,11122:12637546,9126427 +h1,11122:12953692,9126427:0,0,0 +k1,11122:32583028,9126427:19629336 +g1,11122:32583028,9126427 +) +(1,11122:6630773,9792605:25952256,404226,9436 +h1,11122:6630773,9792605:0,0,0 +g1,11122:7579210,9792605 +g1,11122:8211502,9792605 +g1,11122:8527648,9792605 +g1,11122:8843794,9792605 +g1,11122:9159940,9792605 +g1,11122:9476086,9792605 +g1,11122:10108378,9792605 +g1,11122:10740670,9792605 +g1,11122:11056816,9792605 +g1,11122:11372962,9792605 +g1,11122:11689108,9792605 +g1,11122:12005254,9792605 +g1,11122:12321400,9792605 +g1,11122:12637546,9792605 +k1,11122:12637546,9792605:0 +h1,11122:13902129,9792605:0,0,0 +k1,11122:32583029,9792605:18680900 +g1,11122:32583029,9792605 +) +] +) +g1,11123:32583029,9802041 +g1,11123:6630773,9802041 +g1,11123:6630773,9802041 +g1,11123:32583029,9802041 +g1,11123:32583029,9802041 +) +h1,11123:6630773,9998649:0,0,0 +v1,11127:6630773,11713403:0,393216,0 +(1,11143:6630773,18587711:25952256,7267524,196608 +g1,11143:6630773,18587711 +g1,11143:6630773,18587711 +g1,11143:6434165,18587711 +(1,11143:6434165,18587711:0,7267524,196608 +r1,11143:32779637,18587711:26345472,7464132,196608 +k1,11143:6434165,18587711:-26345472 +) +(1,11143:6434165,18587711:26345472,7267524,196608 +[1,11143:6630773,18587711:25952256,7070916,0 +(1,11129:6630773,11927313:25952256,410518,107478 +(1,11128:6630773,11927313:0,0,0 +g1,11128:6630773,11927313 +g1,11128:6630773,11927313 +g1,11128:6303093,11927313 +(1,11128:6303093,11927313:0,0,0 +) +g1,11128:6630773,11927313 +) +k1,11129:6630773,11927313:0 +g1,11129:10740668,11927313 +g1,11129:11372960,11927313 +g1,11129:14534417,11927313 +g1,11129:15166709,11927313 +g1,11129:15799001,11927313 +h1,11129:18960458,11927313:0,0,0 +k1,11129:32583029,11927313:13622571 +g1,11129:32583029,11927313 +) +(1,11133:6630773,13248851:25952256,404226,107478 +g1,11133:7579210,13248851 +g1,11133:10424521,13248851 +g1,11133:11372958,13248851 +g1,11133:12005250,13248851 +k1,11133:32583030,13248851:18997052 +g1,11133:32583030,13248851 +) +(1,11142:6630773,13915029:25952256,404226,9436 +(1,11133:6630773,13915029:0,0,0 +g1,11133:6630773,13915029 +g1,11133:6630773,13915029 +g1,11133:6303093,13915029 +(1,11133:6303093,13915029:0,0,0 +) +g1,11133:6630773,13915029 +) +g1,11142:7579210,13915029 +g1,11142:8211502,13915029 +g1,11142:8843794,13915029 +g1,11142:11372960,13915029 +g1,11142:12005252,13915029 +g1,11142:12637544,13915029 +h1,11142:12953690,13915029:0,0,0 +k1,11142:32583030,13915029:19629340 +g1,11142:32583030,13915029 +) +(1,11142:6630773,14581207:25952256,404226,6290 +h1,11142:6630773,14581207:0,0,0 +g1,11142:7579210,14581207 +g1,11142:7895356,14581207 +g1,11142:8211502,14581207 +g1,11142:8527648,14581207 +g1,11142:8843794,14581207 +g1,11142:10108377,14581207 +g1,11142:12637543,14581207 +h1,11142:14850563,14581207:0,0,0 +k1,11142:32583029,14581207:17732466 +g1,11142:32583029,14581207 +) +(1,11142:6630773,15247385:25952256,404226,6290 +h1,11142:6630773,15247385:0,0,0 +g1,11142:7579210,15247385 +g1,11142:7895356,15247385 +g1,11142:8211502,15247385 +g1,11142:10108377,15247385 +g1,11142:12005252,15247385 +g1,11142:12321398,15247385 +g1,11142:12637544,15247385 +k1,11142:12637544,15247385:0 +h1,11142:14218273,15247385:0,0,0 +k1,11142:32583029,15247385:18364756 +g1,11142:32583029,15247385 +) +(1,11142:6630773,15913563:25952256,404226,6290 +h1,11142:6630773,15913563:0,0,0 +g1,11142:7579210,15913563 +g1,11142:8211502,15913563 +g1,11142:8527648,15913563 +g1,11142:8843794,15913563 +g1,11142:9159940,15913563 +g1,11142:9476086,15913563 +g1,11142:10108378,15913563 +g1,11142:10740670,15913563 +g1,11142:11056816,15913563 +g1,11142:11372962,15913563 +g1,11142:11689108,15913563 +g1,11142:12005254,15913563 +g1,11142:12321400,15913563 +g1,11142:12637546,15913563 +h1,11142:12953692,15913563:0,0,0 +k1,11142:32583028,15913563:19629336 +g1,11142:32583028,15913563 +) +(1,11142:6630773,16579741:25952256,404226,6290 +h1,11142:6630773,16579741:0,0,0 +g1,11142:7579210,16579741 +g1,11142:8211502,16579741 +g1,11142:8527648,16579741 +g1,11142:8843794,16579741 +g1,11142:9159940,16579741 +g1,11142:9476086,16579741 +g1,11142:10108378,16579741 +g1,11142:10740670,16579741 +g1,11142:11056816,16579741 +g1,11142:11372962,16579741 +g1,11142:11689108,16579741 +g1,11142:12005254,16579741 +g1,11142:12321400,16579741 +g1,11142:12637546,16579741 +h1,11142:12953692,16579741:0,0,0 +k1,11142:32583028,16579741:19629336 +g1,11142:32583028,16579741 +) +(1,11142:6630773,17245919:25952256,404226,9436 +h1,11142:6630773,17245919:0,0,0 +g1,11142:7579210,17245919 +g1,11142:8211502,17245919 +g1,11142:8527648,17245919 +g1,11142:8843794,17245919 +g1,11142:9159940,17245919 +g1,11142:9476086,17245919 +g1,11142:10108378,17245919 +g1,11142:10740670,17245919 +g1,11142:11056816,17245919 +g1,11142:11372962,17245919 +g1,11142:11689108,17245919 +g1,11142:12005254,17245919 +g1,11142:12321400,17245919 +g1,11142:12637546,17245919 +h1,11142:12953692,17245919:0,0,0 +k1,11142:32583028,17245919:19629336 +g1,11142:32583028,17245919 +) +(1,11142:6630773,17912097:25952256,404226,6290 +h1,11142:6630773,17912097:0,0,0 +g1,11142:7579210,17912097 +g1,11142:8211502,17912097 +g1,11142:8527648,17912097 +g1,11142:8843794,17912097 +g1,11142:9159940,17912097 +g1,11142:9476086,17912097 +g1,11142:10108378,17912097 +g1,11142:10740670,17912097 +g1,11142:11056816,17912097 +g1,11142:11372962,17912097 +g1,11142:11689108,17912097 +g1,11142:12005254,17912097 +g1,11142:12321400,17912097 +g1,11142:12637546,17912097 +h1,11142:12953692,17912097:0,0,0 +k1,11142:32583028,17912097:19629336 +g1,11142:32583028,17912097 +) +(1,11142:6630773,18578275:25952256,404226,9436 +h1,11142:6630773,18578275:0,0,0 +g1,11142:7579210,18578275 +g1,11142:8211502,18578275 +g1,11142:8527648,18578275 +g1,11142:8843794,18578275 +g1,11142:9159940,18578275 +g1,11142:9476086,18578275 +g1,11142:10108378,18578275 +g1,11142:11689107,18578275 +g1,11142:12005253,18578275 +g1,11142:12321399,18578275 +g1,11142:12637545,18578275 +h1,11142:12953691,18578275:0,0,0 +k1,11142:32583029,18578275:19629338 +g1,11142:32583029,18578275 +) +] +) +g1,11143:32583029,18587711 +g1,11143:6630773,18587711 +g1,11143:6630773,18587711 +g1,11143:32583029,18587711 +g1,11143:32583029,18587711 +) +h1,11143:6630773,18784319:0,0,0 +v1,11147:6630773,20499073:0,393216,0 +(1,11163:6630773,27373381:25952256,7267524,196608 +g1,11163:6630773,27373381 +g1,11163:6630773,27373381 +g1,11163:6434165,27373381 +(1,11163:6434165,27373381:0,7267524,196608 +r1,11163:32779637,27373381:26345472,7464132,196608 +k1,11163:6434165,27373381:-26345472 +) +(1,11163:6434165,27373381:26345472,7267524,196608 +[1,11163:6630773,27373381:25952256,7070916,0 +(1,11149:6630773,20712983:25952256,410518,107478 +(1,11148:6630773,20712983:0,0,0 +g1,11148:6630773,20712983 +g1,11148:6630773,20712983 +g1,11148:6303093,20712983 +(1,11148:6303093,20712983:0,0,0 +) +g1,11148:6630773,20712983 +) +k1,11149:6630773,20712983:0 +g1,11149:10740668,20712983 +g1,11149:11372960,20712983 +g1,11149:14850563,20712983 +g1,11149:15482855,20712983 +g1,11149:16115147,20712983 +h1,11149:18960458,20712983:0,0,0 +k1,11149:32583029,20712983:13622571 +g1,11149:32583029,20712983 +) +(1,11153:6630773,22034521:25952256,404226,107478 +g1,11153:7579210,22034521 +g1,11153:10424521,22034521 +g1,11153:11372958,22034521 +g1,11153:12005250,22034521 +k1,11153:32583030,22034521:18997052 +g1,11153:32583030,22034521 +) +(1,11162:6630773,22700699:25952256,404226,9436 +(1,11153:6630773,22700699:0,0,0 +g1,11153:6630773,22700699 +g1,11153:6630773,22700699 +g1,11153:6303093,22700699 +(1,11153:6303093,22700699:0,0,0 +) +g1,11153:6630773,22700699 +) +g1,11162:7579210,22700699 +g1,11162:8211502,22700699 +g1,11162:8843794,22700699 +g1,11162:11372960,22700699 +g1,11162:12005252,22700699 +g1,11162:12637544,22700699 +h1,11162:12953690,22700699:0,0,0 +k1,11162:32583030,22700699:19629340 +g1,11162:32583030,22700699 +) +(1,11162:6630773,23366877:25952256,404226,6290 +h1,11162:6630773,23366877:0,0,0 +g1,11162:7579210,23366877 +g1,11162:7895356,23366877 +g1,11162:8211502,23366877 +g1,11162:8527648,23366877 +g1,11162:8843794,23366877 +g1,11162:10108377,23366877 +g1,11162:12637543,23366877 +h1,11162:14850563,23366877:0,0,0 +k1,11162:32583029,23366877:17732466 +g1,11162:32583029,23366877 +) +(1,11162:6630773,24033055:25952256,404226,6290 +h1,11162:6630773,24033055:0,0,0 +g1,11162:7579210,24033055 +g1,11162:7895356,24033055 +g1,11162:8211502,24033055 +g1,11162:10108377,24033055 +g1,11162:12005252,24033055 +g1,11162:12321398,24033055 +g1,11162:12637544,24033055 +k1,11162:12637544,24033055:0 +h1,11162:14218273,24033055:0,0,0 +k1,11162:32583029,24033055:18364756 +g1,11162:32583029,24033055 +) +(1,11162:6630773,24699233:25952256,404226,6290 +h1,11162:6630773,24699233:0,0,0 +g1,11162:7579210,24699233 +g1,11162:8211502,24699233 +g1,11162:8527648,24699233 +g1,11162:8843794,24699233 +g1,11162:9159940,24699233 +g1,11162:9476086,24699233 +g1,11162:10108378,24699233 +g1,11162:10740670,24699233 +g1,11162:11056816,24699233 +g1,11162:11372962,24699233 +g1,11162:11689108,24699233 +g1,11162:12005254,24699233 +g1,11162:12321400,24699233 +g1,11162:12637546,24699233 +h1,11162:12953692,24699233:0,0,0 +k1,11162:32583028,24699233:19629336 +g1,11162:32583028,24699233 +) +(1,11162:6630773,25365411:25952256,404226,6290 +h1,11162:6630773,25365411:0,0,0 +g1,11162:7579210,25365411 +g1,11162:8211502,25365411 +g1,11162:8527648,25365411 +g1,11162:8843794,25365411 +g1,11162:9159940,25365411 +g1,11162:9476086,25365411 +g1,11162:10108378,25365411 +g1,11162:10740670,25365411 +g1,11162:11056816,25365411 +g1,11162:11372962,25365411 +g1,11162:11689108,25365411 +g1,11162:12005254,25365411 +g1,11162:12321400,25365411 +g1,11162:12637546,25365411 +h1,11162:12953692,25365411:0,0,0 +k1,11162:32583028,25365411:19629336 +g1,11162:32583028,25365411 +) +(1,11162:6630773,26031589:25952256,404226,9436 +h1,11162:6630773,26031589:0,0,0 +g1,11162:7579210,26031589 +g1,11162:8211502,26031589 +g1,11162:8527648,26031589 +g1,11162:8843794,26031589 +g1,11162:9159940,26031589 +g1,11162:9476086,26031589 +g1,11162:10108378,26031589 +g1,11162:10740670,26031589 +g1,11162:11056816,26031589 +g1,11162:11372962,26031589 +g1,11162:11689108,26031589 +g1,11162:12005254,26031589 +g1,11162:12321400,26031589 +g1,11162:12637546,26031589 +h1,11162:12953692,26031589:0,0,0 +k1,11162:32583028,26031589:19629336 +g1,11162:32583028,26031589 +) +(1,11162:6630773,26697767:25952256,404226,6290 +h1,11162:6630773,26697767:0,0,0 +g1,11162:7579210,26697767 +g1,11162:8211502,26697767 +g1,11162:8527648,26697767 +g1,11162:8843794,26697767 +g1,11162:9159940,26697767 +g1,11162:9476086,26697767 +g1,11162:10108378,26697767 +g1,11162:10740670,26697767 +g1,11162:11056816,26697767 +g1,11162:11372962,26697767 +g1,11162:11689108,26697767 +g1,11162:12005254,26697767 +g1,11162:12321400,26697767 +g1,11162:12637546,26697767 +h1,11162:12953692,26697767:0,0,0 +k1,11162:32583028,26697767:19629336 +g1,11162:32583028,26697767 +) +(1,11162:6630773,27363945:25952256,379060,9436 +h1,11162:6630773,27363945:0,0,0 +g1,11162:7579210,27363945 +g1,11162:8211502,27363945 +g1,11162:8527648,27363945 +g1,11162:8843794,27363945 +g1,11162:9159940,27363945 +g1,11162:9476086,27363945 +g1,11162:10108378,27363945 +g1,11162:11689107,27363945 +g1,11162:12005253,27363945 +g1,11162:12321399,27363945 +g1,11162:12637545,27363945 +h1,11162:12953691,27363945:0,0,0 +k1,11162:32583029,27363945:19629338 +g1,11162:32583029,27363945 +) +] +) +g1,11163:32583029,27373381 +g1,11163:6630773,27373381 +g1,11163:6630773,27373381 +g1,11163:32583029,27373381 +g1,11163:32583029,27373381 +) +h1,11163:6630773,27569989:0,0,0 +(1,11167:6630773,28935765:25952256,505283,134348 +h1,11166:6630773,28935765:983040,0,0 +k1,11166:8743833,28935765:227589 +k1,11166:10638004,28935765:227590 +k1,11166:12102913,28935765:227589 +k1,11166:15011581,28935765:227590 +k1,11166:16005286,28935765:227589 +k1,11166:17767074,28935765:227590 +k1,11166:18610701,28935765:227589 +(1,11166:18610701,28935765:0,414482,115847 +r1,11166:18968967,28935765:358266,530329,115847 +k1,11166:18610701,28935765:-358266 +) +(1,11166:18610701,28935765:358266,414482,115847 +k1,11166:18610701,28935765:3277 +h1,11166:18965690,28935765:0,411205,112570 +) +k1,11166:19196557,28935765:227590 +k1,11166:20708652,28935765:227589 +k1,11166:21751510,28935765:227590 +k1,11166:23045370,28935765:227589 +k1,11166:24748175,28935765:227590 +k1,11166:25331624,28935765:227589 +k1,11166:28530616,28935765:227590 +k1,11166:29962101,28935765:227589 +k1,11166:30805729,28935765:227590 +(1,11166:30805729,28935765:0,414482,115847 +r1,11166:31163995,28935765:358266,530329,115847 +k1,11166:30805729,28935765:-358266 +) +(1,11166:30805729,28935765:358266,414482,115847 +k1,11166:30805729,28935765:3277 +h1,11166:31160718,28935765:0,411205,112570 +) +k1,11166:31391584,28935765:227589 +k1,11166:32583029,28935765:0 +) +(1,11167:6630773,29777253:25952256,473825,7863 +g1,11166:8043729,29777253 +k1,11167:32583029,29777253:22665626 +g1,11167:32583029,29777253 +) +v1,11169:6630773,30967719:0,393216,0 +(1,11184:6630773,37172703:25952256,6598200,196608 +g1,11184:6630773,37172703 +g1,11184:6630773,37172703 +g1,11184:6434165,37172703 +(1,11184:6434165,37172703:0,6598200,196608 +r1,11184:32779637,37172703:26345472,6794808,196608 +k1,11184:6434165,37172703:-26345472 +) +(1,11184:6434165,37172703:26345472,6598200,196608 +[1,11184:6630773,37172703:25952256,6401592,0 +(1,11171:6630773,31181629:25952256,410518,107478 +(1,11170:6630773,31181629:0,0,0 +g1,11170:6630773,31181629 +g1,11170:6630773,31181629 +g1,11170:6303093,31181629 +(1,11170:6303093,31181629:0,0,0 +) +g1,11170:6630773,31181629 +) +k1,11171:6630773,31181629:0 +g1,11171:10740668,31181629 +g1,11171:11372960,31181629 +g1,11171:14534417,31181629 +g1,11171:15166709,31181629 +g1,11171:15799001,31181629 +h1,11171:18960458,31181629:0,0,0 +k1,11171:32583029,31181629:13622571 +g1,11171:32583029,31181629 +) +(1,11175:6630773,32503167:25952256,404226,107478 +g1,11175:7579210,32503167 +g1,11175:10424521,32503167 +g1,11175:11372958,32503167 +g1,11175:12005250,32503167 +k1,11175:32583030,32503167:18997052 +g1,11175:32583030,32503167 +) +(1,11183:6630773,33169345:25952256,404226,9436 +(1,11175:6630773,33169345:0,0,0 +g1,11175:6630773,33169345 +g1,11175:6630773,33169345 +g1,11175:6303093,33169345 +(1,11175:6303093,33169345:0,0,0 +) +g1,11175:6630773,33169345 +) +g1,11183:7579210,33169345 +g1,11183:8211502,33169345 +g1,11183:8843794,33169345 +g1,11183:11372960,33169345 +g1,11183:12005252,33169345 +g1,11183:12637544,33169345 +h1,11183:12953690,33169345:0,0,0 +k1,11183:32583030,33169345:19629340 +g1,11183:32583030,33169345 +) +(1,11183:6630773,33835523:25952256,404226,6290 +h1,11183:6630773,33835523:0,0,0 +g1,11183:7579210,33835523 +g1,11183:7895356,33835523 +g1,11183:8211502,33835523 +g1,11183:8527648,33835523 +g1,11183:8843794,33835523 +g1,11183:10108377,33835523 +g1,11183:12637543,33835523 +h1,11183:14850563,33835523:0,0,0 +k1,11183:32583029,33835523:17732466 +g1,11183:32583029,33835523 +) +(1,11183:6630773,34501701:25952256,404226,6290 +h1,11183:6630773,34501701:0,0,0 +g1,11183:7579210,34501701 +g1,11183:7895356,34501701 +g1,11183:8211502,34501701 +g1,11183:10108377,34501701 +g1,11183:12005252,34501701 +g1,11183:12321398,34501701 +g1,11183:12637544,34501701 +k1,11183:12637544,34501701:0 +h1,11183:14218273,34501701:0,0,0 +k1,11183:32583029,34501701:18364756 +g1,11183:32583029,34501701 +) +(1,11183:6630773,35167879:25952256,404226,6290 +h1,11183:6630773,35167879:0,0,0 +g1,11183:7579210,35167879 +g1,11183:8211502,35167879 +g1,11183:8527648,35167879 +g1,11183:8843794,35167879 +g1,11183:9159940,35167879 +g1,11183:9476086,35167879 +g1,11183:10108378,35167879 +g1,11183:10740670,35167879 +g1,11183:11056816,35167879 +g1,11183:11372962,35167879 +g1,11183:11689108,35167879 +g1,11183:12005254,35167879 +g1,11183:12321400,35167879 +g1,11183:12637546,35167879 +h1,11183:12953692,35167879:0,0,0 +k1,11183:32583028,35167879:19629336 +g1,11183:32583028,35167879 +) +(1,11183:6630773,35834057:25952256,404226,6290 +h1,11183:6630773,35834057:0,0,0 +g1,11183:7579210,35834057 +g1,11183:8211502,35834057 +g1,11183:8527648,35834057 +g1,11183:8843794,35834057 +g1,11183:9159940,35834057 +g1,11183:9476086,35834057 +g1,11183:10108378,35834057 +g1,11183:10740670,35834057 +g1,11183:11056816,35834057 +g1,11183:11372962,35834057 +g1,11183:11689108,35834057 +g1,11183:12005254,35834057 +g1,11183:12321400,35834057 +g1,11183:12637546,35834057 +h1,11183:12953692,35834057:0,0,0 +k1,11183:32583028,35834057:19629336 +g1,11183:32583028,35834057 +) +(1,11183:6630773,36500235:25952256,404226,9436 +h1,11183:6630773,36500235:0,0,0 +g1,11183:7579210,36500235 +g1,11183:8211502,36500235 +g1,11183:8527648,36500235 +g1,11183:8843794,36500235 +g1,11183:9159940,36500235 +g1,11183:9476086,36500235 +g1,11183:10108378,36500235 +g1,11183:10740670,36500235 +g1,11183:11056816,36500235 +g1,11183:11372962,36500235 +g1,11183:11689108,36500235 +g1,11183:12005254,36500235 +g1,11183:12321400,36500235 +g1,11183:12637546,36500235 +h1,11183:12953692,36500235:0,0,0 +k1,11183:32583028,36500235:19629336 +g1,11183:32583028,36500235 +) +(1,11183:6630773,37166413:25952256,404226,6290 +h1,11183:6630773,37166413:0,0,0 +g1,11183:7579210,37166413 +g1,11183:8211502,37166413 +g1,11183:8527648,37166413 +g1,11183:8843794,37166413 +g1,11183:9159940,37166413 +g1,11183:9476086,37166413 +g1,11183:10108378,37166413 +g1,11183:10740670,37166413 +g1,11183:11056816,37166413 +g1,11183:11372962,37166413 +g1,11183:11689108,37166413 +g1,11183:12005254,37166413 +g1,11183:12321400,37166413 +g1,11183:12637546,37166413 +h1,11183:12953692,37166413:0,0,0 +k1,11183:32583028,37166413:19629336 +g1,11183:32583028,37166413 +) +] +) +g1,11184:32583029,37172703 +g1,11184:6630773,37172703 +g1,11184:6630773,37172703 +g1,11184:32583029,37172703 +g1,11184:32583029,37172703 +) +h1,11184:6630773,37369311:0,0,0 +v1,11188:6630773,39084065:0,393216,0 +(1,11203:6630773,45289049:25952256,6598200,196608 +g1,11203:6630773,45289049 +g1,11203:6630773,45289049 +g1,11203:6434165,45289049 +(1,11203:6434165,45289049:0,6598200,196608 +r1,11203:32779637,45289049:26345472,6794808,196608 +k1,11203:6434165,45289049:-26345472 +) +(1,11203:6434165,45289049:26345472,6598200,196608 +[1,11203:6630773,45289049:25952256,6401592,0 +(1,11190:6630773,39297975:25952256,410518,107478 +(1,11189:6630773,39297975:0,0,0 +g1,11189:6630773,39297975 +g1,11189:6630773,39297975 +g1,11189:6303093,39297975 +(1,11189:6303093,39297975:0,0,0 +) +g1,11189:6630773,39297975 +) +k1,11190:6630773,39297975:0 +g1,11190:10740668,39297975 +g1,11190:11372960,39297975 +g1,11190:14850563,39297975 +g1,11190:15482855,39297975 +g1,11190:16115147,39297975 +h1,11190:18960458,39297975:0,0,0 +k1,11190:32583029,39297975:13622571 +g1,11190:32583029,39297975 +) +(1,11194:6630773,40619513:25952256,404226,107478 +g1,11194:7579210,40619513 +g1,11194:10424521,40619513 +g1,11194:11372958,40619513 +g1,11194:12005250,40619513 +k1,11194:32583030,40619513:18997052 +g1,11194:32583030,40619513 +) +(1,11202:6630773,41285691:25952256,404226,9436 +(1,11194:6630773,41285691:0,0,0 +g1,11194:6630773,41285691 +g1,11194:6630773,41285691 +g1,11194:6303093,41285691 +(1,11194:6303093,41285691:0,0,0 +) +g1,11194:6630773,41285691 +) +g1,11202:7579210,41285691 +g1,11202:8211502,41285691 +g1,11202:8843794,41285691 +g1,11202:11372960,41285691 +g1,11202:12005252,41285691 +g1,11202:12637544,41285691 +h1,11202:12953690,41285691:0,0,0 +k1,11202:32583030,41285691:19629340 +g1,11202:32583030,41285691 +) +(1,11202:6630773,41951869:25952256,404226,6290 +h1,11202:6630773,41951869:0,0,0 +g1,11202:7579210,41951869 +g1,11202:7895356,41951869 +g1,11202:8211502,41951869 +g1,11202:8527648,41951869 +g1,11202:8843794,41951869 +g1,11202:10108377,41951869 +g1,11202:12637543,41951869 +h1,11202:14850563,41951869:0,0,0 +k1,11202:32583029,41951869:17732466 +g1,11202:32583029,41951869 +) +(1,11202:6630773,42618047:25952256,404226,6290 +h1,11202:6630773,42618047:0,0,0 +g1,11202:7579210,42618047 +g1,11202:7895356,42618047 +g1,11202:8211502,42618047 +g1,11202:10108377,42618047 +g1,11202:12005252,42618047 +g1,11202:12321398,42618047 +g1,11202:12637544,42618047 +k1,11202:12637544,42618047:0 +h1,11202:14218273,42618047:0,0,0 +k1,11202:32583029,42618047:18364756 +g1,11202:32583029,42618047 +) +(1,11202:6630773,43284225:25952256,404226,6290 +h1,11202:6630773,43284225:0,0,0 +g1,11202:7579210,43284225 +g1,11202:8211502,43284225 +g1,11202:8527648,43284225 +g1,11202:8843794,43284225 +g1,11202:9159940,43284225 +g1,11202:9476086,43284225 +g1,11202:10108378,43284225 +g1,11202:10740670,43284225 +g1,11202:11056816,43284225 +g1,11202:11372962,43284225 +g1,11202:11689108,43284225 +g1,11202:12005254,43284225 +g1,11202:12321400,43284225 +g1,11202:12637546,43284225 +h1,11202:12953692,43284225:0,0,0 +k1,11202:32583028,43284225:19629336 +g1,11202:32583028,43284225 +) +(1,11202:6630773,43950403:25952256,404226,6290 +h1,11202:6630773,43950403:0,0,0 +g1,11202:7579210,43950403 +g1,11202:8211502,43950403 +g1,11202:8527648,43950403 +g1,11202:8843794,43950403 +g1,11202:9159940,43950403 +g1,11202:9476086,43950403 +g1,11202:10108378,43950403 +g1,11202:10740670,43950403 +g1,11202:11056816,43950403 +g1,11202:11372962,43950403 +g1,11202:11689108,43950403 +g1,11202:12005254,43950403 +g1,11202:12321400,43950403 +g1,11202:12637546,43950403 +h1,11202:12953692,43950403:0,0,0 +k1,11202:32583028,43950403:19629336 +g1,11202:32583028,43950403 +) +(1,11202:6630773,44616581:25952256,404226,9436 +h1,11202:6630773,44616581:0,0,0 +g1,11202:7579210,44616581 +g1,11202:8211502,44616581 +g1,11202:8527648,44616581 +g1,11202:8843794,44616581 +g1,11202:9159940,44616581 +g1,11202:9476086,44616581 +g1,11202:10108378,44616581 +g1,11202:10740670,44616581 +g1,11202:11056816,44616581 +g1,11202:11372962,44616581 +g1,11202:11689108,44616581 +g1,11202:12005254,44616581 +g1,11202:12321400,44616581 +g1,11202:12637546,44616581 +h1,11202:12953692,44616581:0,0,0 +k1,11202:32583028,44616581:19629336 +g1,11202:32583028,44616581 +) +(1,11202:6630773,45282759:25952256,404226,6290 +h1,11202:6630773,45282759:0,0,0 +g1,11202:7579210,45282759 +g1,11202:8211502,45282759 +g1,11202:8527648,45282759 +g1,11202:8843794,45282759 +g1,11202:9159940,45282759 +g1,11202:9476086,45282759 +g1,11202:10108378,45282759 +g1,11202:10740670,45282759 +g1,11202:11056816,45282759 +g1,11202:11372962,45282759 +g1,11202:11689108,45282759 +g1,11202:12005254,45282759 +g1,11202:12321400,45282759 +g1,11202:12637546,45282759 +h1,11202:12953692,45282759:0,0,0 +k1,11202:32583028,45282759:19629336 +g1,11202:32583028,45282759 +) +] +) +g1,11203:32583029,45289049 +g1,11203:6630773,45289049 +g1,11203:6630773,45289049 +g1,11203:32583029,45289049 +g1,11203:32583029,45289049 +) +h1,11203:6630773,45485657:0,0,0 +] +(1,11208:32583029,45706769:0,0,0 +g1,11208:32583029,45706769 +) +) +] +(1,11208:6630773,47279633:25952256,0,0 +h1,11208:6630773,47279633:25952256,0,0 +) +] +h1,11208:4262630,4025873:0,0,0 ] !28202 }208 -Input:1423:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1424:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1425:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1426:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1427:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1428:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1429:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {209 -[1,11296:4262630,47279633:28320399,43253760,0 -(1,11296:4262630,4025873:0,0,0 -[1,11296:-473657,4025873:25952256,0,0 -(1,11296:-473657,-710414:25952256,0,0 -h1,11296:-473657,-710414:0,0,0 -(1,11296:-473657,-710414:0,0,0 -(1,11296:-473657,-710414:0,0,0 -g1,11296:-473657,-710414 -(1,11296:-473657,-710414:65781,0,65781 -g1,11296:-407876,-710414 -[1,11296:-407876,-644633:0,0,0 +[1,11301:4262630,47279633:28320399,43253760,0 +(1,11301:4262630,4025873:0,0,0 +[1,11301:-473657,4025873:25952256,0,0 +(1,11301:-473657,-710414:25952256,0,0 +h1,11301:-473657,-710414:0,0,0 +(1,11301:-473657,-710414:0,0,0 +(1,11301:-473657,-710414:0,0,0 +g1,11301:-473657,-710414 +(1,11301:-473657,-710414:65781,0,65781 +g1,11301:-407876,-710414 +[1,11301:-407876,-644633:0,0,0 ] ) -k1,11296:-473657,-710414:-65781 +k1,11301:-473657,-710414:-65781 ) ) -k1,11296:25478599,-710414:25952256 -g1,11296:25478599,-710414 +k1,11301:25478599,-710414:25952256 +g1,11301:25478599,-710414 ) ] ) -[1,11296:6630773,47279633:25952256,43253760,0 -[1,11296:6630773,4812305:25952256,786432,0 -(1,11296:6630773,4812305:25952256,513147,134348 -(1,11296:6630773,4812305:25952256,513147,134348 -g1,11296:3078558,4812305 -[1,11296:3078558,4812305:0,0,0 -(1,11296:3078558,2439708:0,1703936,0 -k1,11296:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,11296:2537886,2439708:1179648,16384,0 +[1,11301:6630773,47279633:25952256,43253760,0 +[1,11301:6630773,4812305:25952256,786432,0 +(1,11301:6630773,4812305:25952256,513147,134348 +(1,11301:6630773,4812305:25952256,513147,134348 +g1,11301:3078558,4812305 +[1,11301:3078558,4812305:0,0,0 +(1,11301:3078558,2439708:0,1703936,0 +k1,11301:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,11301:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,11296:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,11301:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,11296:3078558,4812305:0,0,0 -(1,11296:3078558,2439708:0,1703936,0 -g1,11296:29030814,2439708 -g1,11296:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,11296:36151628,1915420:16384,1179648,0 +[1,11301:3078558,4812305:0,0,0 +(1,11301:3078558,2439708:0,1703936,0 +g1,11301:29030814,2439708 +g1,11301:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,11301:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,11296:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,11301:37855564,2439708:1179648,16384,0 ) ) -k1,11296:3078556,2439708:-34777008 +k1,11301:3078556,2439708:-34777008 ) ] -[1,11296:3078558,4812305:0,0,0 -(1,11296:3078558,49800853:0,16384,2228224 -k1,11296:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,11296:2537886,49800853:1179648,16384,0 +[1,11301:3078558,4812305:0,0,0 +(1,11301:3078558,49800853:0,16384,2228224 +k1,11301:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,11301:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,11296:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,11301:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 ) ] ) ) ) ] -[1,11296:3078558,4812305:0,0,0 -(1,11296:3078558,49800853:0,16384,2228224 -g1,11296:29030814,49800853 -g1,11296:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,11296:36151628,51504789:16384,1179648,0 +[1,11301:3078558,4812305:0,0,0 +(1,11301:3078558,49800853:0,16384,2228224 +g1,11301:29030814,49800853 +g1,11301:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,11301:36151628,51504789:16384,1179648,0 ) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 ) ] ) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,11296:37855564,49800853:1179648,16384,0 +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,11301:37855564,49800853:1179648,16384,0 ) ) -k1,11296:3078556,49800853:-34777008 +k1,11301:3078556,49800853:-34777008 ) ] -g1,11296:6630773,4812305 -k1,11296:25241686,4812305:17415536 -g1,11296:26807341,4812305 -g1,11296:30339731,4812305 -g1,11296:31154998,4812305 -) -) -] -[1,11296:6630773,45706769:25952256,40108032,0 -(1,11296:6630773,45706769:25952256,40108032,0 -(1,11296:6630773,45706769:0,0,0 -g1,11296:6630773,45706769 -) -[1,11296:6630773,45706769:25952256,40108032,0 -(1,11202:6630773,6254097:25952256,513147,134348 -h1,11201:6630773,6254097:983040,0,0 -k1,11201:9287760,6254097:212494 -k1,11201:10368605,6254097:212493 -k1,11201:12344673,6254097:212494 -k1,11201:13576251,6254097:212493 -k1,11201:16270593,6254097:212494 -k1,11201:17679118,6254097:212493 -k1,11201:20917409,6254097:212494 -k1,11201:23970888,6254097:212493 -k1,11201:24944910,6254097:212494 -k1,11201:27303706,6254097:212493 -(1,11201:27303706,6254097:0,452978,122846 -r1,11201:31179090,6254097:3875384,575824,122846 -k1,11201:27303706,6254097:-3875384 -) -(1,11201:27303706,6254097:3875384,452978,122846 -k1,11201:27303706,6254097:3277 -h1,11201:31175813,6254097:0,411205,112570 -) -k1,11201:31391584,6254097:212494 -k1,11202:32583029,6254097:0 -) -(1,11202:6630773,7095585:25952256,513147,126483 -(1,11201:6630773,7095585:0,452978,122846 -r1,11201:10506157,7095585:3875384,575824,122846 -k1,11201:6630773,7095585:-3875384 -) -(1,11201:6630773,7095585:3875384,452978,122846 -k1,11201:6630773,7095585:3277 -h1,11201:10502880,7095585:0,411205,112570 -) -k1,11201:10947013,7095585:267186 -k1,11201:13088529,7095585:267186 -k1,11201:16381513,7095585:267187 -k1,11201:18024300,7095585:267186 -k1,11201:20302131,7095585:267186 -k1,11201:20925177,7095585:267186 -k1,11201:23003778,7095585:267186 -k1,11201:24555470,7095585:267186 -k1,11201:26951922,7095585:267187 -k1,11201:29921157,7095585:267186 -k1,11201:31563944,7095585:267186 -k1,11201:32583029,7095585:0 -) -(1,11202:6630773,7937073:25952256,513147,115847 -g1,11201:9543193,7937073 -g1,11201:11310043,7937073 -(1,11201:11310043,7937073:0,414482,115847 -r1,11201:11668309,7937073:358266,530329,115847 -k1,11201:11310043,7937073:-358266 -) -(1,11201:11310043,7937073:358266,414482,115847 -k1,11201:11310043,7937073:3277 -h1,11201:11665032,7937073:0,411205,112570 -) -g1,11201:12041208,7937073 -g1,11201:13312606,7937073 -g1,11201:15706636,7937073 -g1,11201:17440063,7937073 -g1,11201:19493961,7937073 -g1,11201:20502560,7937073 -g1,11201:22210428,7937073 -g1,11201:24390810,7937073 -g1,11201:25241467,7937073 -g1,11201:26974894,7937073 -g1,11201:27790161,7937073 -(1,11201:27790161,7937073:0,414482,115847 -r1,11201:28148427,7937073:358266,530329,115847 -k1,11201:27790161,7937073:-358266 -) -(1,11201:27790161,7937073:358266,414482,115847 -k1,11201:27790161,7937073:3277 -h1,11201:28145150,7937073:0,411205,112570 -) -k1,11202:32583029,7937073:4260932 -g1,11202:32583029,7937073 -) -(1,11204:6630773,8778561:25952256,513147,134348 -h1,11203:6630773,8778561:983040,0,0 -g1,11203:8300630,8778561 -g1,11203:9998667,8778561 -g1,11203:11435216,8778561 -g1,11203:13829246,8778561 -g1,11203:15562673,8778561 -g1,11203:17329523,8778561 -(1,11203:17329523,8778561:0,414482,115847 -r1,11203:17687789,8778561:358266,530329,115847 -k1,11203:17329523,8778561:-358266 -) -(1,11203:17329523,8778561:358266,414482,115847 -k1,11203:17329523,8778561:3277 -h1,11203:17684512,8778561:0,411205,112570 -) -g1,11203:17887018,8778561 -g1,11203:19370753,8778561 -g1,11203:21045197,8778561 -g1,11203:21600286,8778561 -g1,11203:23780668,8778561 -g1,11203:24595935,8778561 -(1,11203:24595935,8778561:0,414482,115847 -r1,11203:24954201,8778561:358266,530329,115847 -k1,11203:24595935,8778561:-358266 -) -(1,11203:24595935,8778561:358266,414482,115847 -k1,11203:24595935,8778561:3277 -h1,11203:24950924,8778561:0,411205,112570 -) -k1,11204:32583029,8778561:7455158 -g1,11204:32583029,8778561 -) -v1,11206:6630773,9969027:0,393216,0 -(1,11221:6630773,16172439:25952256,6596628,196608 -g1,11221:6630773,16172439 -g1,11221:6630773,16172439 -g1,11221:6434165,16172439 -(1,11221:6434165,16172439:0,6596628,196608 -r1,11221:32779637,16172439:26345472,6793236,196608 -k1,11221:6434165,16172439:-26345472 -) -(1,11221:6434165,16172439:26345472,6596628,196608 -[1,11221:6630773,16172439:25952256,6400020,0 -(1,11208:6630773,10182937:25952256,410518,107478 -(1,11207:6630773,10182937:0,0,0 -g1,11207:6630773,10182937 -g1,11207:6630773,10182937 -g1,11207:6303093,10182937 -(1,11207:6303093,10182937:0,0,0 -) -g1,11207:6630773,10182937 -) -k1,11208:6630773,10182937:0 -g1,11208:10424522,10182937 -g1,11208:11056814,10182937 -g1,11208:14218271,10182937 -g1,11208:14850563,10182937 -g1,11208:15482855,10182937 -h1,11208:18644312,10182937:0,0,0 -k1,11208:32583029,10182937:13938717 -g1,11208:32583029,10182937 -) -(1,11212:6630773,11504475:25952256,404226,107478 -g1,11212:7579210,11504475 -g1,11212:10424521,11504475 -g1,11212:11372958,11504475 -g1,11212:12005250,11504475 -k1,11212:32583030,11504475:18997052 -g1,11212:32583030,11504475 -) -(1,11220:6630773,12170653:25952256,404226,6290 -(1,11212:6630773,12170653:0,0,0 -g1,11212:6630773,12170653 -g1,11212:6630773,12170653 -g1,11212:6303093,12170653 -(1,11212:6303093,12170653:0,0,0 -) -g1,11212:6630773,12170653 -) -g1,11220:7579210,12170653 -g1,11220:8211502,12170653 -g1,11220:8843794,12170653 -g1,11220:11372960,12170653 -g1,11220:12005252,12170653 -g1,11220:12637544,12170653 -h1,11220:12953690,12170653:0,0,0 -k1,11220:32583030,12170653:19629340 -g1,11220:32583030,12170653 -) -(1,11220:6630773,12836831:25952256,404226,6290 -h1,11220:6630773,12836831:0,0,0 -g1,11220:7579210,12836831 -g1,11220:7895356,12836831 -g1,11220:8211502,12836831 -g1,11220:8527648,12836831 -g1,11220:8843794,12836831 -g1,11220:10108377,12836831 -h1,11220:12321397,12836831:0,0,0 -k1,11220:32583029,12836831:20261632 -g1,11220:32583029,12836831 -) -(1,11220:6630773,13503009:25952256,404226,6290 -h1,11220:6630773,13503009:0,0,0 -g1,11220:7579210,13503009 -g1,11220:7895356,13503009 -g1,11220:8211502,13503009 -g1,11220:10108377,13503009 -k1,11220:10108377,13503009:0 -h1,11220:11689106,13503009:0,0,0 -k1,11220:32583030,13503009:20893924 -g1,11220:32583030,13503009 -) -(1,11220:6630773,14169187:25952256,388497,4718 -h1,11220:6630773,14169187:0,0,0 -g1,11220:7579210,14169187 -g1,11220:8211502,14169187 -g1,11220:8527648,14169187 -g1,11220:8843794,14169187 -g1,11220:9159940,14169187 -g1,11220:9476086,14169187 -g1,11220:10108378,14169187 -h1,11220:10424524,14169187:0,0,0 -k1,11220:32583028,14169187:22158504 -g1,11220:32583028,14169187 -) -(1,11220:6630773,14835365:25952256,388497,4718 -h1,11220:6630773,14835365:0,0,0 -g1,11220:7579210,14835365 -g1,11220:8211502,14835365 -g1,11220:8527648,14835365 -g1,11220:8843794,14835365 -g1,11220:9159940,14835365 -g1,11220:9476086,14835365 -g1,11220:10108378,14835365 -h1,11220:10424524,14835365:0,0,0 -k1,11220:32583028,14835365:22158504 -g1,11220:32583028,14835365 -) -(1,11220:6630773,15501543:25952256,388497,9436 -h1,11220:6630773,15501543:0,0,0 -g1,11220:7579210,15501543 -g1,11220:8211502,15501543 -g1,11220:8527648,15501543 -g1,11220:8843794,15501543 -g1,11220:9159940,15501543 -g1,11220:9476086,15501543 -g1,11220:10108378,15501543 -h1,11220:10424524,15501543:0,0,0 -k1,11220:32583028,15501543:22158504 -g1,11220:32583028,15501543 -) -(1,11220:6630773,16167721:25952256,379060,4718 -h1,11220:6630773,16167721:0,0,0 -g1,11220:7579210,16167721 -g1,11220:8211502,16167721 -g1,11220:8527648,16167721 -g1,11220:8843794,16167721 -g1,11220:9159940,16167721 -g1,11220:9476086,16167721 -g1,11220:10108378,16167721 -h1,11220:10424524,16167721:0,0,0 -k1,11220:32583028,16167721:22158504 -g1,11220:32583028,16167721 -) -] -) -g1,11221:32583029,16172439 -g1,11221:6630773,16172439 -g1,11221:6630773,16172439 -g1,11221:32583029,16172439 -g1,11221:32583029,16172439 -) -h1,11221:6630773,16369047:0,0,0 -v1,11225:6630773,18083801:0,393216,0 -(1,11240:6630773,24288785:25952256,6598200,196608 -g1,11240:6630773,24288785 -g1,11240:6630773,24288785 -g1,11240:6434165,24288785 -(1,11240:6434165,24288785:0,6598200,196608 -r1,11240:32779637,24288785:26345472,6794808,196608 -k1,11240:6434165,24288785:-26345472 -) -(1,11240:6434165,24288785:26345472,6598200,196608 -[1,11240:6630773,24288785:25952256,6401592,0 -(1,11227:6630773,18297711:25952256,410518,107478 -(1,11226:6630773,18297711:0,0,0 -g1,11226:6630773,18297711 -g1,11226:6630773,18297711 -g1,11226:6303093,18297711 -(1,11226:6303093,18297711:0,0,0 -) -g1,11226:6630773,18297711 -) -k1,11227:6630773,18297711:0 -g1,11227:10424522,18297711 -g1,11227:11056814,18297711 -g1,11227:14534417,18297711 -g1,11227:15166709,18297711 -g1,11227:15799001,18297711 -h1,11227:18644312,18297711:0,0,0 -k1,11227:32583029,18297711:13938717 -g1,11227:32583029,18297711 -) -(1,11231:6630773,19619249:25952256,404226,107478 -g1,11231:7579210,19619249 -g1,11231:10424521,19619249 -g1,11231:11372958,19619249 -g1,11231:12005250,19619249 -k1,11231:32583030,19619249:18997052 -g1,11231:32583030,19619249 -) -(1,11239:6630773,20285427:25952256,404226,6290 -(1,11231:6630773,20285427:0,0,0 -g1,11231:6630773,20285427 -g1,11231:6630773,20285427 -g1,11231:6303093,20285427 -(1,11231:6303093,20285427:0,0,0 -) -g1,11231:6630773,20285427 -) -g1,11239:7579210,20285427 -g1,11239:8211502,20285427 -g1,11239:8843794,20285427 -g1,11239:11372960,20285427 -g1,11239:12005252,20285427 -g1,11239:12637544,20285427 -h1,11239:12953690,20285427:0,0,0 -k1,11239:32583030,20285427:19629340 -g1,11239:32583030,20285427 -) -(1,11239:6630773,20951605:25952256,404226,6290 -h1,11239:6630773,20951605:0,0,0 -g1,11239:7579210,20951605 -g1,11239:7895356,20951605 -g1,11239:8211502,20951605 -g1,11239:8527648,20951605 -g1,11239:8843794,20951605 -g1,11239:10108377,20951605 -h1,11239:12321397,20951605:0,0,0 -k1,11239:32583029,20951605:20261632 -g1,11239:32583029,20951605 -) -(1,11239:6630773,21617783:25952256,404226,6290 -h1,11239:6630773,21617783:0,0,0 -g1,11239:7579210,21617783 -g1,11239:7895356,21617783 -g1,11239:8211502,21617783 -g1,11239:10108377,21617783 -k1,11239:10108377,21617783:0 -h1,11239:11689106,21617783:0,0,0 -k1,11239:32583030,21617783:20893924 -g1,11239:32583030,21617783 -) -(1,11239:6630773,22283961:25952256,404226,6290 -h1,11239:6630773,22283961:0,0,0 -g1,11239:7579210,22283961 -g1,11239:8211502,22283961 -g1,11239:8527648,22283961 -g1,11239:8843794,22283961 -g1,11239:9159940,22283961 -g1,11239:9476086,22283961 -g1,11239:10108378,22283961 -h1,11239:10424524,22283961:0,0,0 -k1,11239:32583028,22283961:22158504 -g1,11239:32583028,22283961 -) -(1,11239:6630773,22950139:25952256,404226,6290 -h1,11239:6630773,22950139:0,0,0 -g1,11239:7579210,22950139 -g1,11239:8211502,22950139 -g1,11239:8527648,22950139 -g1,11239:8843794,22950139 -g1,11239:9159940,22950139 -g1,11239:9476086,22950139 -g1,11239:10108378,22950139 -h1,11239:10424524,22950139:0,0,0 -k1,11239:32583028,22950139:22158504 -g1,11239:32583028,22950139 -) -(1,11239:6630773,23616317:25952256,404226,9436 -h1,11239:6630773,23616317:0,0,0 -g1,11239:7579210,23616317 -g1,11239:8211502,23616317 -g1,11239:8527648,23616317 -g1,11239:8843794,23616317 -g1,11239:9159940,23616317 -g1,11239:9476086,23616317 -g1,11239:10108378,23616317 -h1,11239:10424524,23616317:0,0,0 -k1,11239:32583028,23616317:22158504 -g1,11239:32583028,23616317 -) -(1,11239:6630773,24282495:25952256,404226,6290 -h1,11239:6630773,24282495:0,0,0 -g1,11239:7579210,24282495 -g1,11239:8211502,24282495 -g1,11239:8527648,24282495 -g1,11239:8843794,24282495 -g1,11239:9159940,24282495 -g1,11239:9476086,24282495 -g1,11239:10108378,24282495 -h1,11239:10424524,24282495:0,0,0 -k1,11239:32583028,24282495:22158504 -g1,11239:32583028,24282495 -) -] -) -g1,11240:32583029,24288785 -g1,11240:6630773,24288785 -g1,11240:6630773,24288785 -g1,11240:32583029,24288785 -g1,11240:32583029,24288785 -) -h1,11240:6630773,24485393:0,0,0 -(1,11244:6630773,25851169:25952256,513147,134348 -h1,11243:6630773,25851169:983040,0,0 -g1,11243:8300630,25851169 -g1,11243:11178971,25851169 -g1,11243:13573001,25851169 -g1,11243:15306428,25851169 -g1,11243:17073278,25851169 -(1,11243:17073278,25851169:0,414482,115847 -r1,11243:17431544,25851169:358266,530329,115847 -k1,11243:17073278,25851169:-358266 -) -(1,11243:17073278,25851169:358266,414482,115847 -k1,11243:17073278,25851169:3277 -h1,11243:17428267,25851169:0,411205,112570 -) -g1,11243:17630773,25851169 -g1,11243:19114508,25851169 -g1,11243:20129005,25851169 -g1,11243:21394505,25851169 -g1,11243:23068949,25851169 -g1,11243:23624038,25851169 -g1,11243:25804420,25851169 -g1,11243:26619687,25851169 -(1,11243:26619687,25851169:0,414482,115847 -r1,11243:26977953,25851169:358266,530329,115847 -k1,11243:26619687,25851169:-358266 -) -(1,11243:26619687,25851169:358266,414482,115847 -k1,11243:26619687,25851169:3277 -h1,11243:26974676,25851169:0,411205,112570 -) -k1,11244:32583029,25851169:5431406 -g1,11244:32583029,25851169 -) -v1,11246:6630773,27041635:0,393216,0 -(1,11258:6630773,31251231:25952256,4602812,196608 -g1,11258:6630773,31251231 -g1,11258:6630773,31251231 -g1,11258:6434165,31251231 -(1,11258:6434165,31251231:0,4602812,196608 -r1,11258:32779637,31251231:26345472,4799420,196608 -k1,11258:6434165,31251231:-26345472 -) -(1,11258:6434165,31251231:26345472,4602812,196608 -[1,11258:6630773,31251231:25952256,4406204,0 -(1,11248:6630773,27255545:25952256,410518,107478 -(1,11247:6630773,27255545:0,0,0 -g1,11247:6630773,27255545 -g1,11247:6630773,27255545 -g1,11247:6303093,27255545 -(1,11247:6303093,27255545:0,0,0 -) -g1,11247:6630773,27255545 -) -k1,11248:6630773,27255545:0 -g1,11248:10424522,27255545 -g1,11248:11056814,27255545 -g1,11248:14218271,27255545 -g1,11248:14850563,27255545 -g1,11248:15482855,27255545 -h1,11248:18644312,27255545:0,0,0 -k1,11248:32583029,27255545:13938717 -g1,11248:32583029,27255545 -) -(1,11252:6630773,28577083:25952256,404226,107478 -g1,11252:7579210,28577083 -g1,11252:10424521,28577083 -g1,11252:11372958,28577083 -g1,11252:12005250,28577083 -k1,11252:32583030,28577083:18997052 -g1,11252:32583030,28577083 -) -(1,11257:6630773,29243261:25952256,404226,6290 -(1,11252:6630773,29243261:0,0,0 -g1,11252:6630773,29243261 -g1,11252:6630773,29243261 -g1,11252:6303093,29243261 -(1,11252:6303093,29243261:0,0,0 -) -g1,11252:6630773,29243261 -) -g1,11257:7579210,29243261 -g1,11257:8211502,29243261 -g1,11257:8843794,29243261 -g1,11257:11372960,29243261 -g1,11257:12005252,29243261 -g1,11257:12637544,29243261 -h1,11257:12953690,29243261:0,0,0 -k1,11257:32583030,29243261:19629340 -g1,11257:32583030,29243261 -) -(1,11257:6630773,29909439:25952256,404226,6290 -h1,11257:6630773,29909439:0,0,0 -g1,11257:7579210,29909439 -g1,11257:7895356,29909439 -g1,11257:8211502,29909439 -g1,11257:8527648,29909439 -g1,11257:8843794,29909439 -g1,11257:10108377,29909439 -h1,11257:12321397,29909439:0,0,0 -k1,11257:32583029,29909439:20261632 -g1,11257:32583029,29909439 -) -(1,11257:6630773,30575617:25952256,404226,6290 -h1,11257:6630773,30575617:0,0,0 -g1,11257:7579210,30575617 -g1,11257:7895356,30575617 -g1,11257:8211502,30575617 -g1,11257:10108377,30575617 -k1,11257:10108377,30575617:0 -h1,11257:11689106,30575617:0,0,0 -k1,11257:32583030,30575617:20893924 -g1,11257:32583030,30575617 -) -(1,11257:6630773,31241795:25952256,388497,9436 -h1,11257:6630773,31241795:0,0,0 -g1,11257:7579210,31241795 -g1,11257:8211502,31241795 -g1,11257:8527648,31241795 -g1,11257:8843794,31241795 -g1,11257:9159940,31241795 -g1,11257:9476086,31241795 -g1,11257:10108378,31241795 -h1,11257:10424524,31241795:0,0,0 -k1,11257:32583028,31241795:22158504 -g1,11257:32583028,31241795 -) -] -) -g1,11258:32583029,31251231 -g1,11258:6630773,31251231 -g1,11258:6630773,31251231 -g1,11258:32583029,31251231 -g1,11258:32583029,31251231 -) -h1,11258:6630773,31447839:0,0,0 -v1,11262:6630773,33162593:0,393216,0 -(1,11274:6630773,37372189:25952256,4602812,196608 -g1,11274:6630773,37372189 -g1,11274:6630773,37372189 -g1,11274:6434165,37372189 -(1,11274:6434165,37372189:0,4602812,196608 -r1,11274:32779637,37372189:26345472,4799420,196608 -k1,11274:6434165,37372189:-26345472 -) -(1,11274:6434165,37372189:26345472,4602812,196608 -[1,11274:6630773,37372189:25952256,4406204,0 -(1,11264:6630773,33376503:25952256,410518,107478 -(1,11263:6630773,33376503:0,0,0 -g1,11263:6630773,33376503 -g1,11263:6630773,33376503 -g1,11263:6303093,33376503 -(1,11263:6303093,33376503:0,0,0 -) -g1,11263:6630773,33376503 -) -k1,11264:6630773,33376503:0 -g1,11264:10424522,33376503 -g1,11264:11056814,33376503 -g1,11264:14534417,33376503 -g1,11264:15166709,33376503 -g1,11264:15799001,33376503 -h1,11264:18644312,33376503:0,0,0 -k1,11264:32583029,33376503:13938717 -g1,11264:32583029,33376503 -) -(1,11268:6630773,34698041:25952256,404226,107478 -g1,11268:7579210,34698041 -g1,11268:10424521,34698041 -g1,11268:11372958,34698041 -g1,11268:12005250,34698041 -k1,11268:32583030,34698041:18997052 -g1,11268:32583030,34698041 -) -(1,11273:6630773,35364219:25952256,404226,6290 -(1,11268:6630773,35364219:0,0,0 -g1,11268:6630773,35364219 -g1,11268:6630773,35364219 -g1,11268:6303093,35364219 -(1,11268:6303093,35364219:0,0,0 -) -g1,11268:6630773,35364219 -) -g1,11273:7579210,35364219 -g1,11273:8211502,35364219 -g1,11273:8843794,35364219 -g1,11273:11372960,35364219 -g1,11273:12005252,35364219 -g1,11273:12637544,35364219 -h1,11273:12953690,35364219:0,0,0 -k1,11273:32583030,35364219:19629340 -g1,11273:32583030,35364219 -) -(1,11273:6630773,36030397:25952256,404226,6290 -h1,11273:6630773,36030397:0,0,0 -g1,11273:7579210,36030397 -g1,11273:7895356,36030397 -g1,11273:8211502,36030397 -g1,11273:8527648,36030397 -g1,11273:8843794,36030397 -g1,11273:10108377,36030397 -h1,11273:12321397,36030397:0,0,0 -k1,11273:32583029,36030397:20261632 -g1,11273:32583029,36030397 -) -(1,11273:6630773,36696575:25952256,404226,6290 -h1,11273:6630773,36696575:0,0,0 -g1,11273:7579210,36696575 -g1,11273:7895356,36696575 -g1,11273:8211502,36696575 -g1,11273:10108377,36696575 -k1,11273:10108377,36696575:0 -h1,11273:11689106,36696575:0,0,0 -k1,11273:32583030,36696575:20893924 -g1,11273:32583030,36696575 -) -(1,11273:6630773,37362753:25952256,404226,9436 -h1,11273:6630773,37362753:0,0,0 -g1,11273:7579210,37362753 -g1,11273:8211502,37362753 -g1,11273:8527648,37362753 -g1,11273:8843794,37362753 -g1,11273:9159940,37362753 -g1,11273:9476086,37362753 -g1,11273:10108378,37362753 -h1,11273:10424524,37362753:0,0,0 -k1,11273:32583028,37362753:22158504 -g1,11273:32583028,37362753 -) -] -) -g1,11274:32583029,37372189 -g1,11274:6630773,37372189 -g1,11274:6630773,37372189 -g1,11274:32583029,37372189 -g1,11274:32583029,37372189 -) -h1,11274:6630773,37568797:0,0,0 -(1,11278:6630773,38934573:25952256,513147,126483 -h1,11277:6630773,38934573:983040,0,0 -k1,11277:8730186,38934573:162824 -k1,11277:10290893,38934573:162824 -k1,11277:12827430,38934573:162823 -k1,11277:15373143,38934573:162824 -(1,11277:15373143,38934573:0,452978,115847 -r1,11277:16434832,38934573:1061689,568825,115847 -k1,11277:15373143,38934573:-1061689 -) -(1,11277:15373143,38934573:1061689,452978,115847 -k1,11277:15373143,38934573:3277 -h1,11277:16431555,38934573:0,411205,112570 -) -k1,11277:16597656,38934573:162824 -k1,11277:17376518,38934573:162824 -(1,11277:17376518,38934573:0,459977,115847 -r1,11277:20196767,38934573:2820249,575824,115847 -k1,11277:17376518,38934573:-2820249 -) -(1,11277:17376518,38934573:2820249,459977,115847 -k1,11277:17376518,38934573:3277 -h1,11277:20193490,38934573:0,411205,112570 -) -k1,11277:20359591,38934573:162824 -k1,11277:21173842,38934573:162823 -k1,11277:25369752,38934573:162824 -k1,11277:26551661,38934573:162824 -k1,11277:27806970,38934573:162824 -k1,11277:28636949,38934573:162823 -(1,11277:28636949,38934573:0,452978,115847 -r1,11277:29346927,38934573:709978,568825,115847 -k1,11277:28636949,38934573:-709978 -) -(1,11277:28636949,38934573:709978,452978,115847 -k1,11277:28636949,38934573:3277 -h1,11277:29343650,38934573:0,411205,112570 -) -k1,11277:29509751,38934573:162824 -k1,11277:30324003,38934573:162824 -k1,11277:32583029,38934573:0 -) -(1,11278:6630773,39776061:25952256,513147,7863 -g1,11277:8715473,39776061 -g1,11277:11627893,39776061 -g1,11277:14007505,39776061 -g1,11277:14954500,39776061 -g1,11277:17992093,39776061 -g1,11277:19138973,39776061 -k1,11278:32583029,39776061:10611590 -g1,11278:32583029,39776061 -) -v1,11280:6630773,40966527:0,393216,0 -(1,11296:6630773,45249331:25952256,4676020,196608 -g1,11296:6630773,45249331 -g1,11296:6630773,45249331 -g1,11296:6434165,45249331 -(1,11296:6434165,45249331:0,4676020,196608 -r1,11296:32779637,45249331:26345472,4872628,196608 -k1,11296:6434165,45249331:-26345472 -) -(1,11296:6434165,45249331:26345472,4676020,196608 -[1,11296:6630773,45249331:25952256,4479412,0 -(1,11282:6630773,41180437:25952256,410518,82312 -(1,11281:6630773,41180437:0,0,0 -g1,11281:6630773,41180437 -g1,11281:6630773,41180437 -g1,11281:6303093,41180437 -(1,11281:6303093,41180437:0,0,0 -) -g1,11281:6630773,41180437 -) -g1,11282:9792230,41180437 -g1,11282:10740668,41180437 -g1,11282:16115145,41180437 -g1,11282:17695874,41180437 -g1,11282:18328166,41180437 -h1,11282:19592749,41180437:0,0,0 -k1,11282:32583029,41180437:12990280 -g1,11282:32583029,41180437 -) -(1,11283:6630773,41846615:25952256,410518,107478 -h1,11283:6630773,41846615:0,0,0 -g1,11283:10424522,41846615 -g1,11283:11056814,41846615 -g1,11283:14534417,41846615 -g1,11283:15166709,41846615 -g1,11283:15799001,41846615 -g1,11283:19276604,41846615 -g1,11283:20225041,41846615 -g1,11283:20857333,41846615 -g1,11283:23702645,41846615 -g1,11283:24334937,41846615 -h1,11283:26547956,41846615:0,0,0 -k1,11283:32583029,41846615:6035073 -g1,11283:32583029,41846615 -) -(1,11295:6630773,42578329:25952256,404226,9436 -(1,11285:6630773,42578329:0,0,0 -g1,11285:6630773,42578329 -g1,11285:6630773,42578329 -g1,11285:6303093,42578329 -(1,11285:6303093,42578329:0,0,0 -) -g1,11285:6630773,42578329 -) -g1,11295:7579210,42578329 -g1,11295:8211502,42578329 -g1,11295:8843794,42578329 -g1,11295:11372960,42578329 -g1,11295:12005252,42578329 -g1,11295:12637544,42578329 -h1,11295:12953690,42578329:0,0,0 -k1,11295:32583030,42578329:19629340 -g1,11295:32583030,42578329 -) -(1,11295:6630773,43244507:25952256,404226,6290 -h1,11295:6630773,43244507:0,0,0 -g1,11295:7579210,43244507 -g1,11295:7895356,43244507 -g1,11295:8211502,43244507 -g1,11295:8527648,43244507 -g1,11295:10108377,43244507 -g1,11295:12637543,43244507 -h1,11295:14850563,43244507:0,0,0 -k1,11295:32583029,43244507:17732466 -g1,11295:32583029,43244507 -) -(1,11295:6630773,43910685:25952256,404226,6290 -h1,11295:6630773,43910685:0,0,0 -g1,11295:7579210,43910685 -g1,11295:7895356,43910685 -g1,11295:8211502,43910685 -g1,11295:10108377,43910685 -g1,11295:12005252,43910685 -g1,11295:12321398,43910685 -g1,11295:12637544,43910685 -k1,11295:12637544,43910685:0 -h1,11295:14218273,43910685:0,0,0 -k1,11295:32583029,43910685:18364756 -g1,11295:32583029,43910685 -) -(1,11295:6630773,44576863:25952256,404226,6290 -h1,11295:6630773,44576863:0,0,0 -g1,11295:7579210,44576863 -g1,11295:8211502,44576863 -g1,11295:8527648,44576863 -g1,11295:8843794,44576863 -g1,11295:9159940,44576863 -g1,11295:9476086,44576863 -g1,11295:10108378,44576863 -g1,11295:10740670,44576863 -g1,11295:11056816,44576863 -g1,11295:11372962,44576863 -g1,11295:11689108,44576863 -g1,11295:12005254,44576863 -g1,11295:12321400,44576863 -g1,11295:12637546,44576863 -h1,11295:12953692,44576863:0,0,0 -k1,11295:32583028,44576863:19629336 -g1,11295:32583028,44576863 -) -(1,11295:6630773,45243041:25952256,404226,6290 -h1,11295:6630773,45243041:0,0,0 -g1,11295:7579210,45243041 -g1,11295:8211502,45243041 -g1,11295:8527648,45243041 -g1,11295:8843794,45243041 -g1,11295:9159940,45243041 -g1,11295:9476086,45243041 -g1,11295:10108378,45243041 -g1,11295:10740670,45243041 -g1,11295:11056816,45243041 -g1,11295:11372962,45243041 -g1,11295:11689108,45243041 -g1,11295:12005254,45243041 -g1,11295:12321400,45243041 -g1,11295:12637546,45243041 -h1,11295:12953692,45243041:0,0,0 -k1,11295:32583028,45243041:19629336 -g1,11295:32583028,45243041 -) -] -) -g1,11296:32583029,45249331 -g1,11296:6630773,45249331 -g1,11296:6630773,45249331 -g1,11296:32583029,45249331 -g1,11296:32583029,45249331 -) -] -(1,11296:32583029,45706769:0,0,0 -g1,11296:32583029,45706769 -) -) -] -(1,11296:6630773,47279633:25952256,0,0 -h1,11296:6630773,47279633:25952256,0,0 -) -] -h1,11296:4262630,4025873:0,0,0 +g1,11301:6630773,4812305 +k1,11301:25241686,4812305:17415536 +g1,11301:26807341,4812305 +g1,11301:30339731,4812305 +g1,11301:31154998,4812305 +) +) +] +[1,11301:6630773,45706769:25952256,40108032,0 +(1,11301:6630773,45706769:25952256,40108032,0 +(1,11301:6630773,45706769:0,0,0 +g1,11301:6630773,45706769 +) +[1,11301:6630773,45706769:25952256,40108032,0 +(1,11207:6630773,6254097:25952256,513147,134348 +h1,11206:6630773,6254097:983040,0,0 +k1,11206:9287760,6254097:212494 +k1,11206:10368605,6254097:212493 +k1,11206:12344673,6254097:212494 +k1,11206:13576251,6254097:212493 +k1,11206:16270593,6254097:212494 +k1,11206:17679118,6254097:212493 +k1,11206:20917409,6254097:212494 +k1,11206:23970888,6254097:212493 +k1,11206:24944910,6254097:212494 +k1,11206:27303706,6254097:212493 +(1,11206:27303706,6254097:0,452978,122846 +r1,11206:31179090,6254097:3875384,575824,122846 +k1,11206:27303706,6254097:-3875384 +) +(1,11206:27303706,6254097:3875384,452978,122846 +k1,11206:27303706,6254097:3277 +h1,11206:31175813,6254097:0,411205,112570 +) +k1,11206:31391584,6254097:212494 +k1,11207:32583029,6254097:0 +) +(1,11207:6630773,7095585:25952256,513147,126483 +(1,11206:6630773,7095585:0,452978,122846 +r1,11206:10506157,7095585:3875384,575824,122846 +k1,11206:6630773,7095585:-3875384 +) +(1,11206:6630773,7095585:3875384,452978,122846 +k1,11206:6630773,7095585:3277 +h1,11206:10502880,7095585:0,411205,112570 +) +k1,11206:10947013,7095585:267186 +k1,11206:13088529,7095585:267186 +k1,11206:16381513,7095585:267187 +k1,11206:18024300,7095585:267186 +k1,11206:20302131,7095585:267186 +k1,11206:20925177,7095585:267186 +k1,11206:23003778,7095585:267186 +k1,11206:24555470,7095585:267186 +k1,11206:26951922,7095585:267187 +k1,11206:29921157,7095585:267186 +k1,11206:31563944,7095585:267186 +k1,11206:32583029,7095585:0 +) +(1,11207:6630773,7937073:25952256,513147,115847 +g1,11206:9543193,7937073 +g1,11206:11310043,7937073 +(1,11206:11310043,7937073:0,414482,115847 +r1,11206:11668309,7937073:358266,530329,115847 +k1,11206:11310043,7937073:-358266 +) +(1,11206:11310043,7937073:358266,414482,115847 +k1,11206:11310043,7937073:3277 +h1,11206:11665032,7937073:0,411205,112570 +) +g1,11206:12041208,7937073 +g1,11206:13312606,7937073 +g1,11206:15706636,7937073 +g1,11206:17440063,7937073 +g1,11206:19493961,7937073 +g1,11206:20502560,7937073 +g1,11206:22210428,7937073 +g1,11206:24390810,7937073 +g1,11206:25241467,7937073 +g1,11206:26974894,7937073 +g1,11206:27790161,7937073 +(1,11206:27790161,7937073:0,414482,115847 +r1,11206:28148427,7937073:358266,530329,115847 +k1,11206:27790161,7937073:-358266 +) +(1,11206:27790161,7937073:358266,414482,115847 +k1,11206:27790161,7937073:3277 +h1,11206:28145150,7937073:0,411205,112570 +) +k1,11207:32583029,7937073:4260932 +g1,11207:32583029,7937073 +) +(1,11209:6630773,8778561:25952256,513147,134348 +h1,11208:6630773,8778561:983040,0,0 +g1,11208:8300630,8778561 +g1,11208:9998667,8778561 +g1,11208:11435216,8778561 +g1,11208:13829246,8778561 +g1,11208:15562673,8778561 +g1,11208:17329523,8778561 +(1,11208:17329523,8778561:0,414482,115847 +r1,11208:17687789,8778561:358266,530329,115847 +k1,11208:17329523,8778561:-358266 +) +(1,11208:17329523,8778561:358266,414482,115847 +k1,11208:17329523,8778561:3277 +h1,11208:17684512,8778561:0,411205,112570 +) +g1,11208:17887018,8778561 +g1,11208:19370753,8778561 +g1,11208:21045197,8778561 +g1,11208:21600286,8778561 +g1,11208:23780668,8778561 +g1,11208:24595935,8778561 +(1,11208:24595935,8778561:0,414482,115847 +r1,11208:24954201,8778561:358266,530329,115847 +k1,11208:24595935,8778561:-358266 +) +(1,11208:24595935,8778561:358266,414482,115847 +k1,11208:24595935,8778561:3277 +h1,11208:24950924,8778561:0,411205,112570 +) +k1,11209:32583029,8778561:7455158 +g1,11209:32583029,8778561 +) +v1,11211:6630773,9969027:0,393216,0 +(1,11226:6630773,16172439:25952256,6596628,196608 +g1,11226:6630773,16172439 +g1,11226:6630773,16172439 +g1,11226:6434165,16172439 +(1,11226:6434165,16172439:0,6596628,196608 +r1,11226:32779637,16172439:26345472,6793236,196608 +k1,11226:6434165,16172439:-26345472 +) +(1,11226:6434165,16172439:26345472,6596628,196608 +[1,11226:6630773,16172439:25952256,6400020,0 +(1,11213:6630773,10182937:25952256,410518,107478 +(1,11212:6630773,10182937:0,0,0 +g1,11212:6630773,10182937 +g1,11212:6630773,10182937 +g1,11212:6303093,10182937 +(1,11212:6303093,10182937:0,0,0 +) +g1,11212:6630773,10182937 +) +k1,11213:6630773,10182937:0 +g1,11213:10424522,10182937 +g1,11213:11056814,10182937 +g1,11213:14218271,10182937 +g1,11213:14850563,10182937 +g1,11213:15482855,10182937 +h1,11213:18644312,10182937:0,0,0 +k1,11213:32583029,10182937:13938717 +g1,11213:32583029,10182937 +) +(1,11217:6630773,11504475:25952256,404226,107478 +g1,11217:7579210,11504475 +g1,11217:10424521,11504475 +g1,11217:11372958,11504475 +g1,11217:12005250,11504475 +k1,11217:32583030,11504475:18997052 +g1,11217:32583030,11504475 +) +(1,11225:6630773,12170653:25952256,404226,6290 +(1,11217:6630773,12170653:0,0,0 +g1,11217:6630773,12170653 +g1,11217:6630773,12170653 +g1,11217:6303093,12170653 +(1,11217:6303093,12170653:0,0,0 +) +g1,11217:6630773,12170653 +) +g1,11225:7579210,12170653 +g1,11225:8211502,12170653 +g1,11225:8843794,12170653 +g1,11225:11372960,12170653 +g1,11225:12005252,12170653 +g1,11225:12637544,12170653 +h1,11225:12953690,12170653:0,0,0 +k1,11225:32583030,12170653:19629340 +g1,11225:32583030,12170653 +) +(1,11225:6630773,12836831:25952256,404226,6290 +h1,11225:6630773,12836831:0,0,0 +g1,11225:7579210,12836831 +g1,11225:7895356,12836831 +g1,11225:8211502,12836831 +g1,11225:8527648,12836831 +g1,11225:8843794,12836831 +g1,11225:10108377,12836831 +h1,11225:12321397,12836831:0,0,0 +k1,11225:32583029,12836831:20261632 +g1,11225:32583029,12836831 +) +(1,11225:6630773,13503009:25952256,404226,6290 +h1,11225:6630773,13503009:0,0,0 +g1,11225:7579210,13503009 +g1,11225:7895356,13503009 +g1,11225:8211502,13503009 +g1,11225:10108377,13503009 +k1,11225:10108377,13503009:0 +h1,11225:11689106,13503009:0,0,0 +k1,11225:32583030,13503009:20893924 +g1,11225:32583030,13503009 +) +(1,11225:6630773,14169187:25952256,388497,4718 +h1,11225:6630773,14169187:0,0,0 +g1,11225:7579210,14169187 +g1,11225:8211502,14169187 +g1,11225:8527648,14169187 +g1,11225:8843794,14169187 +g1,11225:9159940,14169187 +g1,11225:9476086,14169187 +g1,11225:10108378,14169187 +h1,11225:10424524,14169187:0,0,0 +k1,11225:32583028,14169187:22158504 +g1,11225:32583028,14169187 +) +(1,11225:6630773,14835365:25952256,388497,4718 +h1,11225:6630773,14835365:0,0,0 +g1,11225:7579210,14835365 +g1,11225:8211502,14835365 +g1,11225:8527648,14835365 +g1,11225:8843794,14835365 +g1,11225:9159940,14835365 +g1,11225:9476086,14835365 +g1,11225:10108378,14835365 +h1,11225:10424524,14835365:0,0,0 +k1,11225:32583028,14835365:22158504 +g1,11225:32583028,14835365 +) +(1,11225:6630773,15501543:25952256,388497,9436 +h1,11225:6630773,15501543:0,0,0 +g1,11225:7579210,15501543 +g1,11225:8211502,15501543 +g1,11225:8527648,15501543 +g1,11225:8843794,15501543 +g1,11225:9159940,15501543 +g1,11225:9476086,15501543 +g1,11225:10108378,15501543 +h1,11225:10424524,15501543:0,0,0 +k1,11225:32583028,15501543:22158504 +g1,11225:32583028,15501543 +) +(1,11225:6630773,16167721:25952256,379060,4718 +h1,11225:6630773,16167721:0,0,0 +g1,11225:7579210,16167721 +g1,11225:8211502,16167721 +g1,11225:8527648,16167721 +g1,11225:8843794,16167721 +g1,11225:9159940,16167721 +g1,11225:9476086,16167721 +g1,11225:10108378,16167721 +h1,11225:10424524,16167721:0,0,0 +k1,11225:32583028,16167721:22158504 +g1,11225:32583028,16167721 +) +] +) +g1,11226:32583029,16172439 +g1,11226:6630773,16172439 +g1,11226:6630773,16172439 +g1,11226:32583029,16172439 +g1,11226:32583029,16172439 +) +h1,11226:6630773,16369047:0,0,0 +v1,11230:6630773,18083801:0,393216,0 +(1,11245:6630773,24288785:25952256,6598200,196608 +g1,11245:6630773,24288785 +g1,11245:6630773,24288785 +g1,11245:6434165,24288785 +(1,11245:6434165,24288785:0,6598200,196608 +r1,11245:32779637,24288785:26345472,6794808,196608 +k1,11245:6434165,24288785:-26345472 +) +(1,11245:6434165,24288785:26345472,6598200,196608 +[1,11245:6630773,24288785:25952256,6401592,0 +(1,11232:6630773,18297711:25952256,410518,107478 +(1,11231:6630773,18297711:0,0,0 +g1,11231:6630773,18297711 +g1,11231:6630773,18297711 +g1,11231:6303093,18297711 +(1,11231:6303093,18297711:0,0,0 +) +g1,11231:6630773,18297711 +) +k1,11232:6630773,18297711:0 +g1,11232:10424522,18297711 +g1,11232:11056814,18297711 +g1,11232:14534417,18297711 +g1,11232:15166709,18297711 +g1,11232:15799001,18297711 +h1,11232:18644312,18297711:0,0,0 +k1,11232:32583029,18297711:13938717 +g1,11232:32583029,18297711 +) +(1,11236:6630773,19619249:25952256,404226,107478 +g1,11236:7579210,19619249 +g1,11236:10424521,19619249 +g1,11236:11372958,19619249 +g1,11236:12005250,19619249 +k1,11236:32583030,19619249:18997052 +g1,11236:32583030,19619249 +) +(1,11244:6630773,20285427:25952256,404226,6290 +(1,11236:6630773,20285427:0,0,0 +g1,11236:6630773,20285427 +g1,11236:6630773,20285427 +g1,11236:6303093,20285427 +(1,11236:6303093,20285427:0,0,0 +) +g1,11236:6630773,20285427 +) +g1,11244:7579210,20285427 +g1,11244:8211502,20285427 +g1,11244:8843794,20285427 +g1,11244:11372960,20285427 +g1,11244:12005252,20285427 +g1,11244:12637544,20285427 +h1,11244:12953690,20285427:0,0,0 +k1,11244:32583030,20285427:19629340 +g1,11244:32583030,20285427 +) +(1,11244:6630773,20951605:25952256,404226,6290 +h1,11244:6630773,20951605:0,0,0 +g1,11244:7579210,20951605 +g1,11244:7895356,20951605 +g1,11244:8211502,20951605 +g1,11244:8527648,20951605 +g1,11244:8843794,20951605 +g1,11244:10108377,20951605 +h1,11244:12321397,20951605:0,0,0 +k1,11244:32583029,20951605:20261632 +g1,11244:32583029,20951605 +) +(1,11244:6630773,21617783:25952256,404226,6290 +h1,11244:6630773,21617783:0,0,0 +g1,11244:7579210,21617783 +g1,11244:7895356,21617783 +g1,11244:8211502,21617783 +g1,11244:10108377,21617783 +k1,11244:10108377,21617783:0 +h1,11244:11689106,21617783:0,0,0 +k1,11244:32583030,21617783:20893924 +g1,11244:32583030,21617783 +) +(1,11244:6630773,22283961:25952256,404226,6290 +h1,11244:6630773,22283961:0,0,0 +g1,11244:7579210,22283961 +g1,11244:8211502,22283961 +g1,11244:8527648,22283961 +g1,11244:8843794,22283961 +g1,11244:9159940,22283961 +g1,11244:9476086,22283961 +g1,11244:10108378,22283961 +h1,11244:10424524,22283961:0,0,0 +k1,11244:32583028,22283961:22158504 +g1,11244:32583028,22283961 +) +(1,11244:6630773,22950139:25952256,404226,6290 +h1,11244:6630773,22950139:0,0,0 +g1,11244:7579210,22950139 +g1,11244:8211502,22950139 +g1,11244:8527648,22950139 +g1,11244:8843794,22950139 +g1,11244:9159940,22950139 +g1,11244:9476086,22950139 +g1,11244:10108378,22950139 +h1,11244:10424524,22950139:0,0,0 +k1,11244:32583028,22950139:22158504 +g1,11244:32583028,22950139 +) +(1,11244:6630773,23616317:25952256,404226,9436 +h1,11244:6630773,23616317:0,0,0 +g1,11244:7579210,23616317 +g1,11244:8211502,23616317 +g1,11244:8527648,23616317 +g1,11244:8843794,23616317 +g1,11244:9159940,23616317 +g1,11244:9476086,23616317 +g1,11244:10108378,23616317 +h1,11244:10424524,23616317:0,0,0 +k1,11244:32583028,23616317:22158504 +g1,11244:32583028,23616317 +) +(1,11244:6630773,24282495:25952256,404226,6290 +h1,11244:6630773,24282495:0,0,0 +g1,11244:7579210,24282495 +g1,11244:8211502,24282495 +g1,11244:8527648,24282495 +g1,11244:8843794,24282495 +g1,11244:9159940,24282495 +g1,11244:9476086,24282495 +g1,11244:10108378,24282495 +h1,11244:10424524,24282495:0,0,0 +k1,11244:32583028,24282495:22158504 +g1,11244:32583028,24282495 +) +] +) +g1,11245:32583029,24288785 +g1,11245:6630773,24288785 +g1,11245:6630773,24288785 +g1,11245:32583029,24288785 +g1,11245:32583029,24288785 +) +h1,11245:6630773,24485393:0,0,0 +(1,11249:6630773,25851169:25952256,513147,134348 +h1,11248:6630773,25851169:983040,0,0 +g1,11248:8300630,25851169 +g1,11248:11178971,25851169 +g1,11248:13573001,25851169 +g1,11248:15306428,25851169 +g1,11248:17073278,25851169 +(1,11248:17073278,25851169:0,414482,115847 +r1,11248:17431544,25851169:358266,530329,115847 +k1,11248:17073278,25851169:-358266 +) +(1,11248:17073278,25851169:358266,414482,115847 +k1,11248:17073278,25851169:3277 +h1,11248:17428267,25851169:0,411205,112570 +) +g1,11248:17630773,25851169 +g1,11248:19114508,25851169 +g1,11248:20129005,25851169 +g1,11248:21394505,25851169 +g1,11248:23068949,25851169 +g1,11248:23624038,25851169 +g1,11248:25804420,25851169 +g1,11248:26619687,25851169 +(1,11248:26619687,25851169:0,414482,115847 +r1,11248:26977953,25851169:358266,530329,115847 +k1,11248:26619687,25851169:-358266 +) +(1,11248:26619687,25851169:358266,414482,115847 +k1,11248:26619687,25851169:3277 +h1,11248:26974676,25851169:0,411205,112570 +) +k1,11249:32583029,25851169:5431406 +g1,11249:32583029,25851169 +) +v1,11251:6630773,27041635:0,393216,0 +(1,11263:6630773,31251231:25952256,4602812,196608 +g1,11263:6630773,31251231 +g1,11263:6630773,31251231 +g1,11263:6434165,31251231 +(1,11263:6434165,31251231:0,4602812,196608 +r1,11263:32779637,31251231:26345472,4799420,196608 +k1,11263:6434165,31251231:-26345472 +) +(1,11263:6434165,31251231:26345472,4602812,196608 +[1,11263:6630773,31251231:25952256,4406204,0 +(1,11253:6630773,27255545:25952256,410518,107478 +(1,11252:6630773,27255545:0,0,0 +g1,11252:6630773,27255545 +g1,11252:6630773,27255545 +g1,11252:6303093,27255545 +(1,11252:6303093,27255545:0,0,0 +) +g1,11252:6630773,27255545 +) +k1,11253:6630773,27255545:0 +g1,11253:10424522,27255545 +g1,11253:11056814,27255545 +g1,11253:14218271,27255545 +g1,11253:14850563,27255545 +g1,11253:15482855,27255545 +h1,11253:18644312,27255545:0,0,0 +k1,11253:32583029,27255545:13938717 +g1,11253:32583029,27255545 +) +(1,11257:6630773,28577083:25952256,404226,107478 +g1,11257:7579210,28577083 +g1,11257:10424521,28577083 +g1,11257:11372958,28577083 +g1,11257:12005250,28577083 +k1,11257:32583030,28577083:18997052 +g1,11257:32583030,28577083 +) +(1,11262:6630773,29243261:25952256,404226,6290 +(1,11257:6630773,29243261:0,0,0 +g1,11257:6630773,29243261 +g1,11257:6630773,29243261 +g1,11257:6303093,29243261 +(1,11257:6303093,29243261:0,0,0 +) +g1,11257:6630773,29243261 +) +g1,11262:7579210,29243261 +g1,11262:8211502,29243261 +g1,11262:8843794,29243261 +g1,11262:11372960,29243261 +g1,11262:12005252,29243261 +g1,11262:12637544,29243261 +h1,11262:12953690,29243261:0,0,0 +k1,11262:32583030,29243261:19629340 +g1,11262:32583030,29243261 +) +(1,11262:6630773,29909439:25952256,404226,6290 +h1,11262:6630773,29909439:0,0,0 +g1,11262:7579210,29909439 +g1,11262:7895356,29909439 +g1,11262:8211502,29909439 +g1,11262:8527648,29909439 +g1,11262:8843794,29909439 +g1,11262:10108377,29909439 +h1,11262:12321397,29909439:0,0,0 +k1,11262:32583029,29909439:20261632 +g1,11262:32583029,29909439 +) +(1,11262:6630773,30575617:25952256,404226,6290 +h1,11262:6630773,30575617:0,0,0 +g1,11262:7579210,30575617 +g1,11262:7895356,30575617 +g1,11262:8211502,30575617 +g1,11262:10108377,30575617 +k1,11262:10108377,30575617:0 +h1,11262:11689106,30575617:0,0,0 +k1,11262:32583030,30575617:20893924 +g1,11262:32583030,30575617 +) +(1,11262:6630773,31241795:25952256,388497,9436 +h1,11262:6630773,31241795:0,0,0 +g1,11262:7579210,31241795 +g1,11262:8211502,31241795 +g1,11262:8527648,31241795 +g1,11262:8843794,31241795 +g1,11262:9159940,31241795 +g1,11262:9476086,31241795 +g1,11262:10108378,31241795 +h1,11262:10424524,31241795:0,0,0 +k1,11262:32583028,31241795:22158504 +g1,11262:32583028,31241795 +) +] +) +g1,11263:32583029,31251231 +g1,11263:6630773,31251231 +g1,11263:6630773,31251231 +g1,11263:32583029,31251231 +g1,11263:32583029,31251231 +) +h1,11263:6630773,31447839:0,0,0 +v1,11267:6630773,33162593:0,393216,0 +(1,11279:6630773,37372189:25952256,4602812,196608 +g1,11279:6630773,37372189 +g1,11279:6630773,37372189 +g1,11279:6434165,37372189 +(1,11279:6434165,37372189:0,4602812,196608 +r1,11279:32779637,37372189:26345472,4799420,196608 +k1,11279:6434165,37372189:-26345472 +) +(1,11279:6434165,37372189:26345472,4602812,196608 +[1,11279:6630773,37372189:25952256,4406204,0 +(1,11269:6630773,33376503:25952256,410518,107478 +(1,11268:6630773,33376503:0,0,0 +g1,11268:6630773,33376503 +g1,11268:6630773,33376503 +g1,11268:6303093,33376503 +(1,11268:6303093,33376503:0,0,0 +) +g1,11268:6630773,33376503 +) +k1,11269:6630773,33376503:0 +g1,11269:10424522,33376503 +g1,11269:11056814,33376503 +g1,11269:14534417,33376503 +g1,11269:15166709,33376503 +g1,11269:15799001,33376503 +h1,11269:18644312,33376503:0,0,0 +k1,11269:32583029,33376503:13938717 +g1,11269:32583029,33376503 +) +(1,11273:6630773,34698041:25952256,404226,107478 +g1,11273:7579210,34698041 +g1,11273:10424521,34698041 +g1,11273:11372958,34698041 +g1,11273:12005250,34698041 +k1,11273:32583030,34698041:18997052 +g1,11273:32583030,34698041 +) +(1,11278:6630773,35364219:25952256,404226,6290 +(1,11273:6630773,35364219:0,0,0 +g1,11273:6630773,35364219 +g1,11273:6630773,35364219 +g1,11273:6303093,35364219 +(1,11273:6303093,35364219:0,0,0 +) +g1,11273:6630773,35364219 +) +g1,11278:7579210,35364219 +g1,11278:8211502,35364219 +g1,11278:8843794,35364219 +g1,11278:11372960,35364219 +g1,11278:12005252,35364219 +g1,11278:12637544,35364219 +h1,11278:12953690,35364219:0,0,0 +k1,11278:32583030,35364219:19629340 +g1,11278:32583030,35364219 +) +(1,11278:6630773,36030397:25952256,404226,6290 +h1,11278:6630773,36030397:0,0,0 +g1,11278:7579210,36030397 +g1,11278:7895356,36030397 +g1,11278:8211502,36030397 +g1,11278:8527648,36030397 +g1,11278:8843794,36030397 +g1,11278:10108377,36030397 +h1,11278:12321397,36030397:0,0,0 +k1,11278:32583029,36030397:20261632 +g1,11278:32583029,36030397 +) +(1,11278:6630773,36696575:25952256,404226,6290 +h1,11278:6630773,36696575:0,0,0 +g1,11278:7579210,36696575 +g1,11278:7895356,36696575 +g1,11278:8211502,36696575 +g1,11278:10108377,36696575 +k1,11278:10108377,36696575:0 +h1,11278:11689106,36696575:0,0,0 +k1,11278:32583030,36696575:20893924 +g1,11278:32583030,36696575 +) +(1,11278:6630773,37362753:25952256,404226,9436 +h1,11278:6630773,37362753:0,0,0 +g1,11278:7579210,37362753 +g1,11278:8211502,37362753 +g1,11278:8527648,37362753 +g1,11278:8843794,37362753 +g1,11278:9159940,37362753 +g1,11278:9476086,37362753 +g1,11278:10108378,37362753 +h1,11278:10424524,37362753:0,0,0 +k1,11278:32583028,37362753:22158504 +g1,11278:32583028,37362753 +) +] +) +g1,11279:32583029,37372189 +g1,11279:6630773,37372189 +g1,11279:6630773,37372189 +g1,11279:32583029,37372189 +g1,11279:32583029,37372189 +) +h1,11279:6630773,37568797:0,0,0 +(1,11283:6630773,38934573:25952256,513147,126483 +h1,11282:6630773,38934573:983040,0,0 +k1,11282:8730186,38934573:162824 +k1,11282:10290893,38934573:162824 +k1,11282:12827430,38934573:162823 +k1,11282:15373143,38934573:162824 +(1,11282:15373143,38934573:0,452978,115847 +r1,11282:16434832,38934573:1061689,568825,115847 +k1,11282:15373143,38934573:-1061689 +) +(1,11282:15373143,38934573:1061689,452978,115847 +k1,11282:15373143,38934573:3277 +h1,11282:16431555,38934573:0,411205,112570 +) +k1,11282:16597656,38934573:162824 +k1,11282:17376518,38934573:162824 +(1,11282:17376518,38934573:0,459977,115847 +r1,11282:20196767,38934573:2820249,575824,115847 +k1,11282:17376518,38934573:-2820249 +) +(1,11282:17376518,38934573:2820249,459977,115847 +k1,11282:17376518,38934573:3277 +h1,11282:20193490,38934573:0,411205,112570 +) +k1,11282:20359591,38934573:162824 +k1,11282:21173842,38934573:162823 +k1,11282:25369752,38934573:162824 +k1,11282:26551661,38934573:162824 +k1,11282:27806970,38934573:162824 +k1,11282:28636949,38934573:162823 +(1,11282:28636949,38934573:0,452978,115847 +r1,11282:29346927,38934573:709978,568825,115847 +k1,11282:28636949,38934573:-709978 +) +(1,11282:28636949,38934573:709978,452978,115847 +k1,11282:28636949,38934573:3277 +h1,11282:29343650,38934573:0,411205,112570 +) +k1,11282:29509751,38934573:162824 +k1,11282:30324003,38934573:162824 +k1,11282:32583029,38934573:0 +) +(1,11283:6630773,39776061:25952256,513147,7863 +g1,11282:8715473,39776061 +g1,11282:11627893,39776061 +g1,11282:14007505,39776061 +g1,11282:14954500,39776061 +g1,11282:17992093,39776061 +g1,11282:19138973,39776061 +k1,11283:32583029,39776061:10611590 +g1,11283:32583029,39776061 +) +v1,11285:6630773,40966527:0,393216,0 +(1,11301:6630773,45249331:25952256,4676020,196608 +g1,11301:6630773,45249331 +g1,11301:6630773,45249331 +g1,11301:6434165,45249331 +(1,11301:6434165,45249331:0,4676020,196608 +r1,11301:32779637,45249331:26345472,4872628,196608 +k1,11301:6434165,45249331:-26345472 +) +(1,11301:6434165,45249331:26345472,4676020,196608 +[1,11301:6630773,45249331:25952256,4479412,0 +(1,11287:6630773,41180437:25952256,410518,82312 +(1,11286:6630773,41180437:0,0,0 +g1,11286:6630773,41180437 +g1,11286:6630773,41180437 +g1,11286:6303093,41180437 +(1,11286:6303093,41180437:0,0,0 +) +g1,11286:6630773,41180437 +) +g1,11287:9792230,41180437 +g1,11287:10740668,41180437 +g1,11287:16115145,41180437 +g1,11287:17695874,41180437 +g1,11287:18328166,41180437 +h1,11287:19592749,41180437:0,0,0 +k1,11287:32583029,41180437:12990280 +g1,11287:32583029,41180437 +) +(1,11288:6630773,41846615:25952256,410518,107478 +h1,11288:6630773,41846615:0,0,0 +g1,11288:10424522,41846615 +g1,11288:11056814,41846615 +g1,11288:14534417,41846615 +g1,11288:15166709,41846615 +g1,11288:15799001,41846615 +g1,11288:19276604,41846615 +g1,11288:20225041,41846615 +g1,11288:20857333,41846615 +g1,11288:23702645,41846615 +g1,11288:24334937,41846615 +h1,11288:26547956,41846615:0,0,0 +k1,11288:32583029,41846615:6035073 +g1,11288:32583029,41846615 +) +(1,11300:6630773,42578329:25952256,404226,9436 +(1,11290:6630773,42578329:0,0,0 +g1,11290:6630773,42578329 +g1,11290:6630773,42578329 +g1,11290:6303093,42578329 +(1,11290:6303093,42578329:0,0,0 +) +g1,11290:6630773,42578329 +) +g1,11300:7579210,42578329 +g1,11300:8211502,42578329 +g1,11300:8843794,42578329 +g1,11300:11372960,42578329 +g1,11300:12005252,42578329 +g1,11300:12637544,42578329 +h1,11300:12953690,42578329:0,0,0 +k1,11300:32583030,42578329:19629340 +g1,11300:32583030,42578329 +) +(1,11300:6630773,43244507:25952256,404226,6290 +h1,11300:6630773,43244507:0,0,0 +g1,11300:7579210,43244507 +g1,11300:7895356,43244507 +g1,11300:8211502,43244507 +g1,11300:8527648,43244507 +g1,11300:10108377,43244507 +g1,11300:12637543,43244507 +h1,11300:14850563,43244507:0,0,0 +k1,11300:32583029,43244507:17732466 +g1,11300:32583029,43244507 +) +(1,11300:6630773,43910685:25952256,404226,6290 +h1,11300:6630773,43910685:0,0,0 +g1,11300:7579210,43910685 +g1,11300:7895356,43910685 +g1,11300:8211502,43910685 +g1,11300:10108377,43910685 +g1,11300:12005252,43910685 +g1,11300:12321398,43910685 +g1,11300:12637544,43910685 +k1,11300:12637544,43910685:0 +h1,11300:14218273,43910685:0,0,0 +k1,11300:32583029,43910685:18364756 +g1,11300:32583029,43910685 +) +(1,11300:6630773,44576863:25952256,404226,6290 +h1,11300:6630773,44576863:0,0,0 +g1,11300:7579210,44576863 +g1,11300:8211502,44576863 +g1,11300:8527648,44576863 +g1,11300:8843794,44576863 +g1,11300:9159940,44576863 +g1,11300:9476086,44576863 +g1,11300:10108378,44576863 +g1,11300:10740670,44576863 +g1,11300:11056816,44576863 +g1,11300:11372962,44576863 +g1,11300:11689108,44576863 +g1,11300:12005254,44576863 +g1,11300:12321400,44576863 +g1,11300:12637546,44576863 +h1,11300:12953692,44576863:0,0,0 +k1,11300:32583028,44576863:19629336 +g1,11300:32583028,44576863 +) +(1,11300:6630773,45243041:25952256,404226,6290 +h1,11300:6630773,45243041:0,0,0 +g1,11300:7579210,45243041 +g1,11300:8211502,45243041 +g1,11300:8527648,45243041 +g1,11300:8843794,45243041 +g1,11300:9159940,45243041 +g1,11300:9476086,45243041 +g1,11300:10108378,45243041 +g1,11300:10740670,45243041 +g1,11300:11056816,45243041 +g1,11300:11372962,45243041 +g1,11300:11689108,45243041 +g1,11300:12005254,45243041 +g1,11300:12321400,45243041 +g1,11300:12637546,45243041 +h1,11300:12953692,45243041:0,0,0 +k1,11300:32583028,45243041:19629336 +g1,11300:32583028,45243041 +) +] +) +g1,11301:32583029,45249331 +g1,11301:6630773,45249331 +g1,11301:6630773,45249331 +g1,11301:32583029,45249331 +g1,11301:32583029,45249331 +) +] +(1,11301:32583029,45706769:0,0,0 +g1,11301:32583029,45706769 +) +) +] +(1,11301:6630773,47279633:25952256,0,0 +h1,11301:6630773,47279633:25952256,0,0 +) +] +h1,11301:4262630,4025873:0,0,0 ] !26329 }209 !12 {210 -[1,11316:4262630,47279633:28320399,43253760,0 -(1,11316:4262630,4025873:0,0,0 -[1,11316:-473657,4025873:25952256,0,0 -(1,11316:-473657,-710414:25952256,0,0 -h1,11316:-473657,-710414:0,0,0 -(1,11316:-473657,-710414:0,0,0 -(1,11316:-473657,-710414:0,0,0 -g1,11316:-473657,-710414 -(1,11316:-473657,-710414:65781,0,65781 -g1,11316:-407876,-710414 -[1,11316:-407876,-644633:0,0,0 +[1,11321:4262630,47279633:28320399,43253760,0 +(1,11321:4262630,4025873:0,0,0 +[1,11321:-473657,4025873:25952256,0,0 +(1,11321:-473657,-710414:25952256,0,0 +h1,11321:-473657,-710414:0,0,0 +(1,11321:-473657,-710414:0,0,0 +(1,11321:-473657,-710414:0,0,0 +g1,11321:-473657,-710414 +(1,11321:-473657,-710414:65781,0,65781 +g1,11321:-407876,-710414 +[1,11321:-407876,-644633:0,0,0 ] ) -k1,11316:-473657,-710414:-65781 +k1,11321:-473657,-710414:-65781 ) ) -k1,11316:25478599,-710414:25952256 -g1,11316:25478599,-710414 +k1,11321:25478599,-710414:25952256 +g1,11321:25478599,-710414 ) ] ) -[1,11316:6630773,47279633:25952256,43253760,0 -[1,11316:6630773,4812305:25952256,786432,0 -(1,11316:6630773,4812305:25952256,505283,134348 -(1,11316:6630773,4812305:25952256,505283,134348 -g1,11316:3078558,4812305 -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,2439708:0,1703936,0 -k1,11316:1358238,2439708:-1720320 -(1,9979:1358238,2439708:1720320,1703936,0 -(1,9979:1358238,2439708:1179648,16384,0 -r1,11316:2537886,2439708:1179648,16384,0 +[1,11321:6630773,47279633:25952256,43253760,0 +[1,11321:6630773,4812305:25952256,786432,0 +(1,11321:6630773,4812305:25952256,505283,134348 +(1,11321:6630773,4812305:25952256,505283,134348 +g1,11321:3078558,4812305 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,2439708:0,1703936,0 +k1,11321:1358238,2439708:-1720320 +(1,9984:1358238,2439708:1720320,1703936,0 +(1,9984:1358238,2439708:1179648,16384,0 +r1,11321:2537886,2439708:1179648,16384,0 ) -g1,9979:3062174,2439708 -(1,9979:3062174,2439708:16384,1703936,0 -[1,9979:3062174,2439708:25952256,1703936,0 -(1,9979:3062174,1915420:25952256,1179648,0 -(1,9979:3062174,1915420:16384,1179648,0 -r1,11316:3078558,1915420:16384,1179648,0 +g1,9984:3062174,2439708 +(1,9984:3062174,2439708:16384,1703936,0 +[1,9984:3062174,2439708:25952256,1703936,0 +(1,9984:3062174,1915420:25952256,1179648,0 +(1,9984:3062174,1915420:16384,1179648,0 +r1,11321:3078558,1915420:16384,1179648,0 ) -k1,9979:29014430,1915420:25935872 -g1,9979:29014430,1915420 +k1,9984:29014430,1915420:25935872 +g1,9984:29014430,1915420 ) ] ) ) ) ] -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,2439708:0,1703936,0 -g1,11316:29030814,2439708 -g1,11316:36135244,2439708 -(1,9979:36135244,2439708:1720320,1703936,0 -(1,9979:36135244,2439708:16384,1703936,0 -[1,9979:36135244,2439708:25952256,1703936,0 -(1,9979:36135244,1915420:25952256,1179648,0 -(1,9979:36135244,1915420:16384,1179648,0 -r1,11316:36151628,1915420:16384,1179648,0 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,2439708:0,1703936,0 +g1,11321:29030814,2439708 +g1,11321:36135244,2439708 +(1,9984:36135244,2439708:1720320,1703936,0 +(1,9984:36135244,2439708:16384,1703936,0 +[1,9984:36135244,2439708:25952256,1703936,0 +(1,9984:36135244,1915420:25952256,1179648,0 +(1,9984:36135244,1915420:16384,1179648,0 +r1,11321:36151628,1915420:16384,1179648,0 ) -k1,9979:62087500,1915420:25935872 -g1,9979:62087500,1915420 +k1,9984:62087500,1915420:25935872 +g1,9984:62087500,1915420 ) ] ) -g1,9979:36675916,2439708 -(1,9979:36675916,2439708:1179648,16384,0 -r1,11316:37855564,2439708:1179648,16384,0 +g1,9984:36675916,2439708 +(1,9984:36675916,2439708:1179648,16384,0 +r1,11321:37855564,2439708:1179648,16384,0 ) ) -k1,11316:3078556,2439708:-34777008 +k1,11321:3078556,2439708:-34777008 ) ] -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,49800853:0,16384,2228224 -k1,11316:1358238,49800853:-1720320 -(1,9979:1358238,49800853:1720320,16384,2228224 -(1,9979:1358238,49800853:1179648,16384,0 -r1,11316:2537886,49800853:1179648,16384,0 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,49800853:0,16384,2228224 +k1,11321:1358238,49800853:-1720320 +(1,9984:1358238,49800853:1720320,16384,2228224 +(1,9984:1358238,49800853:1179648,16384,0 +r1,11321:2537886,49800853:1179648,16384,0 ) -g1,9979:3062174,49800853 -(1,9979:3062174,52029077:16384,1703936,0 -[1,9979:3062174,52029077:25952256,1703936,0 -(1,9979:3062174,51504789:25952256,1179648,0 -(1,9979:3062174,51504789:16384,1179648,0 -r1,11316:3078558,51504789:16384,1179648,0 +g1,9984:3062174,49800853 +(1,9984:3062174,52029077:16384,1703936,0 +[1,9984:3062174,52029077:25952256,1703936,0 +(1,9984:3062174,51504789:25952256,1179648,0 +(1,9984:3062174,51504789:16384,1179648,0 +r1,11321:3078558,51504789:16384,1179648,0 ) -k1,9979:29014430,51504789:25935872 -g1,9979:29014430,51504789 -) -] -) -) -) -] -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,49800853:0,16384,2228224 -g1,11316:29030814,49800853 -g1,11316:36135244,49800853 -(1,9979:36135244,49800853:1720320,16384,2228224 -(1,9979:36135244,52029077:16384,1703936,0 -[1,9979:36135244,52029077:25952256,1703936,0 -(1,9979:36135244,51504789:25952256,1179648,0 -(1,9979:36135244,51504789:16384,1179648,0 -r1,11316:36151628,51504789:16384,1179648,0 -) -k1,9979:62087500,51504789:25935872 -g1,9979:62087500,51504789 -) -] -) -g1,9979:36675916,49800853 -(1,9979:36675916,49800853:1179648,16384,0 -r1,11316:37855564,49800853:1179648,16384,0 -) -) -k1,11316:3078556,49800853:-34777008 -) -] -g1,11316:6630773,4812305 -g1,11316:6630773,4812305 -g1,11316:9205682,4812305 -g1,11316:11846782,4812305 -k1,11316:31387652,4812305:19540870 -) -) -] -[1,11316:6630773,45706769:25952256,40108032,0 -(1,11316:6630773,45706769:25952256,40108032,0 -(1,11316:6630773,45706769:0,0,0 -g1,11316:6630773,45706769 -) -[1,11316:6630773,45706769:25952256,40108032,0 -v1,11296:6630773,6254097:0,393216,0 -(1,11296:6630773,8469685:25952256,2608804,196608 -g1,11296:6630773,8469685 -g1,11296:6630773,8469685 -g1,11296:6434165,8469685 -(1,11296:6434165,8469685:0,2608804,196608 -r1,11296:32779637,8469685:26345472,2805412,196608 -k1,11296:6434165,8469685:-26345472 -) -(1,11296:6434165,8469685:26345472,2608804,196608 -[1,11296:6630773,8469685:25952256,2412196,0 -(1,11295:6630773,6461715:25952256,404226,9436 -h1,11295:6630773,6461715:0,0,0 -g1,11295:7579210,6461715 -g1,11295:8211502,6461715 -g1,11295:8527648,6461715 -g1,11295:8843794,6461715 -g1,11295:9159940,6461715 -g1,11295:9476086,6461715 -g1,11295:10108378,6461715 -g1,11295:10740670,6461715 -g1,11295:11056816,6461715 -g1,11295:11372962,6461715 -g1,11295:11689108,6461715 -g1,11295:12005254,6461715 -g1,11295:12321400,6461715 -g1,11295:12637546,6461715 -h1,11295:12953692,6461715:0,0,0 -k1,11295:32583028,6461715:19629336 -g1,11295:32583028,6461715 -) -(1,11295:6630773,7127893:25952256,404226,6290 -h1,11295:6630773,7127893:0,0,0 -g1,11295:7579210,7127893 -g1,11295:8211502,7127893 -g1,11295:8527648,7127893 -g1,11295:8843794,7127893 -g1,11295:9159940,7127893 -g1,11295:9476086,7127893 -g1,11295:10108378,7127893 -g1,11295:10740670,7127893 -g1,11295:11056816,7127893 -g1,11295:11372962,7127893 -g1,11295:11689108,7127893 -g1,11295:12005254,7127893 -g1,11295:12321400,7127893 -g1,11295:12637546,7127893 -h1,11295:12953692,7127893:0,0,0 -k1,11295:32583028,7127893:19629336 -g1,11295:32583028,7127893 -) -(1,11295:6630773,7794071:25952256,379060,9436 -h1,11295:6630773,7794071:0,0,0 -g1,11295:7579210,7794071 -g1,11295:8211502,7794071 -g1,11295:8527648,7794071 -g1,11295:8843794,7794071 -g1,11295:9159940,7794071 -g1,11295:9476086,7794071 -g1,11295:10108378,7794071 -g1,11295:10740670,7794071 -g1,11295:11056816,7794071 -g1,11295:11372962,7794071 -g1,11295:11689108,7794071 -g1,11295:12005254,7794071 -g1,11295:12321400,7794071 -g1,11295:12637546,7794071 -k1,11295:12637546,7794071:0 -h1,11295:13902129,7794071:0,0,0 -k1,11295:32583029,7794071:18680900 -g1,11295:32583029,7794071 -) -(1,11295:6630773,8460249:25952256,404226,9436 -h1,11295:6630773,8460249:0,0,0 -g1,11295:7579210,8460249 -g1,11295:8211502,8460249 -g1,11295:8527648,8460249 -g1,11295:8843794,8460249 -g1,11295:9159940,8460249 -g1,11295:9476086,8460249 -g1,11295:10108378,8460249 -g1,11295:11689107,8460249 -g1,11295:12005253,8460249 -g1,11295:12321399,8460249 -g1,11295:12637545,8460249 -h1,11295:12953691,8460249:0,0,0 -k1,11295:32583029,8460249:19629338 -g1,11295:32583029,8460249 -) -] -) -g1,11296:32583029,8469685 -g1,11296:6630773,8469685 -g1,11296:6630773,8469685 -g1,11296:32583029,8469685 -g1,11296:32583029,8469685 -) -h1,11296:6630773,8666293:0,0,0 -(1,11304:6630773,11998149:25952256,32768,229376 -(1,11304:6630773,11998149:0,32768,229376 -(1,11304:6630773,11998149:5505024,32768,229376 -r1,11304:12135797,11998149:5505024,262144,229376 -) -k1,11304:6630773,11998149:-5505024 -) -(1,11304:6630773,11998149:25952256,32768,0 -r1,11304:32583029,11998149:25952256,32768,0 -) -) -(1,11304:6630773,13602477:25952256,606339,161218 -(1,11304:6630773,13602477:1974731,582746,14155 -g1,11304:6630773,13602477 -g1,11304:8605504,13602477 -) -g1,11304:11813360,13602477 -k1,11304:32583030,13602477:17773364 -g1,11304:32583030,13602477 -) -(1,11306:6630773,14837181:25952256,513147,126483 -k1,11305:7724317,14837181:191113 -k1,11305:10605028,14837181:191113 -k1,11305:14167968,14837181:191113 -k1,11305:15018373,14837181:191113 -k1,11305:16228571,14837181:191113 -k1,11305:19627671,14837181:191113 -k1,11305:20350280,14837181:191112 -k1,11305:22907243,14837181:191113 -k1,11305:24117441,14837181:191113 -k1,11305:26135042,14837181:191113 -k1,11305:26985447,14837181:191113 -k1,11305:28379801,14837181:191113 -k1,11305:30326624,14837181:191113 -k1,11305:32583029,14837181:0 -) -(1,11306:6630773,15678669:25952256,513147,134348 -k1,11305:8770992,15678669:227878 -k1,11305:11668151,15678669:227878 -k1,11305:12512067,15678669:227878 -k1,11305:14527112,15678669:227878 -k1,11305:15774075,15678669:227878 -k1,11305:17094438,15678669:227878 -k1,11305:17981609,15678669:227879 -k1,11305:19906214,15678669:227878 -k1,11305:23218216,15678669:227878 -k1,11305:24263983,15678669:227878 -k1,11305:26723362,15678669:227878 -k1,11305:27610532,15678669:227878 -k1,11305:29477465,15678669:227878 -k1,11305:30696903,15678669:227878 -k1,11305:32583029,15678669:0 -) -(1,11306:6630773,16520157:25952256,513147,126483 -k1,11305:8663535,16520157:180715 -k1,11305:13149966,16520157:180716 -k1,11305:15319043,16520157:180715 -k1,11305:18066804,16520157:180716 -k1,11305:18906811,16520157:180715 -k1,11305:20999867,16520157:180715 -k1,11305:22674149,16520157:180716 -k1,11305:23541026,16520157:180715 -k1,11305:24171319,16520157:180716 -k1,11305:25276092,16520157:180715 -k1,11305:26991006,16520157:180716 -k1,11305:29451719,16520157:180715 -k1,11305:32583029,16520157:0 -) -(1,11306:6630773,17361645:25952256,513147,95026 -g1,11305:8021447,17361645 -g1,11305:11806151,17361645 -g1,11305:13806309,17361645 -g1,11305:14997098,17361645 -g1,11305:16215412,17361645 -g1,11305:18016341,17361645 -k1,11306:32583029,17361645:12415796 -g1,11306:32583029,17361645 -) -] -(1,11316:32583029,45706769:0,0,0 -g1,11316:32583029,45706769 -) -) -] -(1,11316:6630773,47279633:25952256,0,0 -h1,11316:6630773,47279633:25952256,0,0 -) -] -h1,11316:4262630,4025873:0,0,0 -] -!8518 +k1,9984:29014430,51504789:25935872 +g1,9984:29014430,51504789 +) +] +) +) +) +] +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,49800853:0,16384,2228224 +g1,11321:29030814,49800853 +g1,11321:36135244,49800853 +(1,9984:36135244,49800853:1720320,16384,2228224 +(1,9984:36135244,52029077:16384,1703936,0 +[1,9984:36135244,52029077:25952256,1703936,0 +(1,9984:36135244,51504789:25952256,1179648,0 +(1,9984:36135244,51504789:16384,1179648,0 +r1,11321:36151628,51504789:16384,1179648,0 +) +k1,9984:62087500,51504789:25935872 +g1,9984:62087500,51504789 +) +] +) +g1,9984:36675916,49800853 +(1,9984:36675916,49800853:1179648,16384,0 +r1,11321:37855564,49800853:1179648,16384,0 +) +) +k1,11321:3078556,49800853:-34777008 +) +] +g1,11321:6630773,4812305 +g1,11321:6630773,4812305 +g1,11321:9205682,4812305 +g1,11321:11846782,4812305 +k1,11321:31387652,4812305:19540870 +) +) +] +[1,11321:6630773,45706769:25952256,40108032,0 +(1,11321:6630773,45706769:25952256,40108032,0 +(1,11321:6630773,45706769:0,0,0 +g1,11321:6630773,45706769 +) +[1,11321:6630773,45706769:25952256,40108032,0 +v1,11301:6630773,6254097:0,393216,0 +(1,11301:6630773,8469685:25952256,2608804,196608 +g1,11301:6630773,8469685 +g1,11301:6630773,8469685 +g1,11301:6434165,8469685 +(1,11301:6434165,8469685:0,2608804,196608 +r1,11301:32779637,8469685:26345472,2805412,196608 +k1,11301:6434165,8469685:-26345472 +) +(1,11301:6434165,8469685:26345472,2608804,196608 +[1,11301:6630773,8469685:25952256,2412196,0 +(1,11300:6630773,6461715:25952256,404226,9436 +h1,11300:6630773,6461715:0,0,0 +g1,11300:7579210,6461715 +g1,11300:8211502,6461715 +g1,11300:8527648,6461715 +g1,11300:8843794,6461715 +g1,11300:9159940,6461715 +g1,11300:9476086,6461715 +g1,11300:10108378,6461715 +g1,11300:10740670,6461715 +g1,11300:11056816,6461715 +g1,11300:11372962,6461715 +g1,11300:11689108,6461715 +g1,11300:12005254,6461715 +g1,11300:12321400,6461715 +g1,11300:12637546,6461715 +h1,11300:12953692,6461715:0,0,0 +k1,11300:32583028,6461715:19629336 +g1,11300:32583028,6461715 +) +(1,11300:6630773,7127893:25952256,404226,6290 +h1,11300:6630773,7127893:0,0,0 +g1,11300:7579210,7127893 +g1,11300:8211502,7127893 +g1,11300:8527648,7127893 +g1,11300:8843794,7127893 +g1,11300:9159940,7127893 +g1,11300:9476086,7127893 +g1,11300:10108378,7127893 +g1,11300:10740670,7127893 +g1,11300:11056816,7127893 +g1,11300:11372962,7127893 +g1,11300:11689108,7127893 +g1,11300:12005254,7127893 +g1,11300:12321400,7127893 +g1,11300:12637546,7127893 +h1,11300:12953692,7127893:0,0,0 +k1,11300:32583028,7127893:19629336 +g1,11300:32583028,7127893 +) +(1,11300:6630773,7794071:25952256,379060,9436 +h1,11300:6630773,7794071:0,0,0 +g1,11300:7579210,7794071 +g1,11300:8211502,7794071 +g1,11300:8527648,7794071 +g1,11300:8843794,7794071 +g1,11300:9159940,7794071 +g1,11300:9476086,7794071 +g1,11300:10108378,7794071 +g1,11300:10740670,7794071 +g1,11300:11056816,7794071 +g1,11300:11372962,7794071 +g1,11300:11689108,7794071 +g1,11300:12005254,7794071 +g1,11300:12321400,7794071 +g1,11300:12637546,7794071 +k1,11300:12637546,7794071:0 +h1,11300:13902129,7794071:0,0,0 +k1,11300:32583029,7794071:18680900 +g1,11300:32583029,7794071 +) +(1,11300:6630773,8460249:25952256,404226,9436 +h1,11300:6630773,8460249:0,0,0 +g1,11300:7579210,8460249 +g1,11300:8211502,8460249 +g1,11300:8527648,8460249 +g1,11300:8843794,8460249 +g1,11300:9159940,8460249 +g1,11300:9476086,8460249 +g1,11300:10108378,8460249 +g1,11300:11689107,8460249 +g1,11300:12005253,8460249 +g1,11300:12321399,8460249 +g1,11300:12637545,8460249 +h1,11300:12953691,8460249:0,0,0 +k1,11300:32583029,8460249:19629338 +g1,11300:32583029,8460249 +) +] +) +g1,11301:32583029,8469685 +g1,11301:6630773,8469685 +g1,11301:6630773,8469685 +g1,11301:32583029,8469685 +g1,11301:32583029,8469685 +) +h1,11301:6630773,8666293:0,0,0 +(1,11309:6630773,11998149:25952256,32768,229376 +(1,11309:6630773,11998149:0,32768,229376 +(1,11309:6630773,11998149:5505024,32768,229376 +r1,11309:12135797,11998149:5505024,262144,229376 +) +k1,11309:6630773,11998149:-5505024 +) +(1,11309:6630773,11998149:25952256,32768,0 +r1,11309:32583029,11998149:25952256,32768,0 +) +) +(1,11309:6630773,13602477:25952256,606339,161218 +(1,11309:6630773,13602477:1974731,582746,14155 +g1,11309:6630773,13602477 +g1,11309:8605504,13602477 +) +g1,11309:11813360,13602477 +k1,11309:32583030,13602477:17773364 +g1,11309:32583030,13602477 +) +(1,11311:6630773,14837181:25952256,513147,126483 +k1,11310:7724317,14837181:191113 +k1,11310:10605028,14837181:191113 +k1,11310:14167968,14837181:191113 +k1,11310:15018373,14837181:191113 +k1,11310:16228571,14837181:191113 +k1,11310:19627671,14837181:191113 +k1,11310:20350280,14837181:191112 +k1,11310:22907243,14837181:191113 +k1,11310:24117441,14837181:191113 +k1,11310:26135042,14837181:191113 +k1,11310:26985447,14837181:191113 +k1,11310:28379801,14837181:191113 +k1,11310:30326624,14837181:191113 +k1,11310:32583029,14837181:0 +) +(1,11311:6630773,15678669:25952256,513147,134348 +k1,11310:8695638,15678669:152524 +k1,11310:11517443,15678669:152524 +k1,11310:12286005,15678669:152524 +k1,11310:14225697,15678669:152525 +k1,11310:15397306,15678669:152524 +k1,11310:16642315,15678669:152524 +k1,11310:17454131,15678669:152524 +k1,11310:19303382,15678669:152524 +k1,11310:22540030,15678669:152524 +k1,11310:23510443,15678669:152524 +k1,11310:25894468,15678669:152524 +k1,11310:26706285,15678669:152525 +k1,11310:28497864,15678669:152524 +k1,11310:29641948,15678669:152524 +k1,11310:31680598,15678669:152524 +k1,11311:32583029,15678669:0 +) +(1,11311:6630773,16520157:25952256,513147,126483 +k1,11310:7948848,16520157:155466 +k1,11310:12410029,16520157:155466 +k1,11310:14553856,16520157:155465 +k1,11310:17276367,16520157:155466 +k1,11310:18091125,16520157:155466 +k1,11310:20158932,16520157:155466 +k1,11310:21807963,16520157:155465 +k1,11310:22649591,16520157:155466 +(1,11310:22649591,16520157:4681892,505283,11795 +) +k1,11310:27486949,16520157:155466 +(1,11310:27694043,16520157:4681892,505283,11795 +) +k1,11310:32583029,16520157:0 +) +(1,11311:6630773,17361645:25952256,513147,7863 +g1,11310:7821562,17361645 +g1,11310:9039876,17361645 +g1,11310:10840805,17361645 +k1,11311:32583029,17361645:19591332 +g1,11311:32583029,17361645 +) +] +(1,11321:32583029,45706769:0,0,0 +g1,11321:32583029,45706769 +) +) +] +(1,11321:6630773,47279633:25952256,0,0 +h1,11321:6630773,47279633:25952256,0,0 +) +] +h1,11321:4262630,4025873:0,0,0 +] +!8467 }210 !11 {211 -[1,11316:4262630,47279633:28320399,43253760,0 -(1,11316:4262630,4025873:0,0,0 -[1,11316:-473657,4025873:25952256,0,0 -(1,11316:-473657,-710414:25952256,0,0 -h1,11316:-473657,-710414:0,0,0 -(1,11316:-473657,-710414:0,0,0 -(1,11316:-473657,-710414:0,0,0 -g1,11316:-473657,-710414 -(1,11316:-473657,-710414:65781,0,65781 -g1,11316:-407876,-710414 -[1,11316:-407876,-644633:0,0,0 +[1,11321:4262630,47279633:28320399,43253760,0 +(1,11321:4262630,4025873:0,0,0 +[1,11321:-473657,4025873:25952256,0,0 +(1,11321:-473657,-710414:25952256,0,0 +h1,11321:-473657,-710414:0,0,0 +(1,11321:-473657,-710414:0,0,0 +(1,11321:-473657,-710414:0,0,0 +g1,11321:-473657,-710414 +(1,11321:-473657,-710414:65781,0,65781 +g1,11321:-407876,-710414 +[1,11321:-407876,-644633:0,0,0 ] ) -k1,11316:-473657,-710414:-65781 +k1,11321:-473657,-710414:-65781 ) ) -k1,11316:25478599,-710414:25952256 -g1,11316:25478599,-710414 +k1,11321:25478599,-710414:25952256 +g1,11321:25478599,-710414 ) ] ) -[1,11316:6630773,47279633:25952256,43253760,0 -[1,11316:6630773,4812305:25952256,786432,0 -(1,11316:6630773,4812305:25952256,0,0 -(1,11316:6630773,4812305:25952256,0,0 -g1,11316:3078558,4812305 -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,2439708:0,1703936,0 -k1,11316:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11316:2537886,2439708:1179648,16384,0 +[1,11321:6630773,47279633:25952256,43253760,0 +[1,11321:6630773,4812305:25952256,786432,0 +(1,11321:6630773,4812305:25952256,0,0 +(1,11321:6630773,4812305:25952256,0,0 +g1,11321:3078558,4812305 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,2439708:0,1703936,0 +k1,11321:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11321:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11316:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11321:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,2439708:0,1703936,0 -g1,11316:29030814,2439708 -g1,11316:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11316:36151628,1915420:16384,1179648,0 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,2439708:0,1703936,0 +g1,11321:29030814,2439708 +g1,11321:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11321:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11316:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11321:37855564,2439708:1179648,16384,0 ) ) -k1,11316:3078556,2439708:-34777008 +k1,11321:3078556,2439708:-34777008 ) ] -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,49800853:0,16384,2228224 -k1,11316:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11316:2537886,49800853:1179648,16384,0 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,49800853:0,16384,2228224 +k1,11321:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11321:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11316:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11321:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11316:3078558,4812305:0,0,0 -(1,11316:3078558,49800853:0,16384,2228224 -g1,11316:29030814,49800853 -g1,11316:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11316:36151628,51504789:16384,1179648,0 +[1,11321:3078558,4812305:0,0,0 +(1,11321:3078558,49800853:0,16384,2228224 +g1,11321:29030814,49800853 +g1,11321:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11321:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11316:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11321:37855564,49800853:1179648,16384,0 ) ) -k1,11316:3078556,49800853:-34777008 +k1,11321:3078556,49800853:-34777008 ) ] -g1,11316:6630773,4812305 +g1,11321:6630773,4812305 ) ) ] -[1,11316:6630773,45706769:0,40108032,0 -(1,11316:6630773,45706769:0,40108032,0 -(1,11316:6630773,45706769:0,0,0 -g1,11316:6630773,45706769 +[1,11321:6630773,45706769:0,40108032,0 +(1,11321:6630773,45706769:0,40108032,0 +(1,11321:6630773,45706769:0,0,0 +g1,11321:6630773,45706769 ) -[1,11316:6630773,45706769:0,40108032,0 -h1,11316:6630773,6254097:0,0,0 +[1,11321:6630773,45706769:0,40108032,0 +h1,11321:6630773,6254097:0,0,0 ] -(1,11316:6630773,45706769:0,0,0 -g1,11316:6630773,45706769 +(1,11321:6630773,45706769:0,0,0 +g1,11321:6630773,45706769 ) ) ] -(1,11316:6630773,47279633:25952256,0,0 -h1,11316:6630773,47279633:25952256,0,0 +(1,11321:6630773,47279633:25952256,0,0 +h1,11321:6630773,47279633:25952256,0,0 ) ] -h1,11316:4262630,4025873:0,0,0 +h1,11321:4262630,4025873:0,0,0 ] !3420 }211 !11 {212 -[1,11366:4262630,47279633:28320399,43253760,11795 -(1,11366:4262630,4025873:0,0,0 -[1,11366:-473657,4025873:25952256,0,0 -(1,11366:-473657,-710414:25952256,0,0 -h1,11366:-473657,-710414:0,0,0 -(1,11366:-473657,-710414:0,0,0 -(1,11366:-473657,-710414:0,0,0 -g1,11366:-473657,-710414 -(1,11366:-473657,-710414:65781,0,65781 -g1,11366:-407876,-710414 -[1,11366:-407876,-644633:0,0,0 +[1,11371:4262630,47279633:28320399,43253760,11795 +(1,11371:4262630,4025873:0,0,0 +[1,11371:-473657,4025873:25952256,0,0 +(1,11371:-473657,-710414:25952256,0,0 +h1,11371:-473657,-710414:0,0,0 +(1,11371:-473657,-710414:0,0,0 +(1,11371:-473657,-710414:0,0,0 +g1,11371:-473657,-710414 +(1,11371:-473657,-710414:65781,0,65781 +g1,11371:-407876,-710414 +[1,11371:-407876,-644633:0,0,0 ] ) -k1,11366:-473657,-710414:-65781 +k1,11371:-473657,-710414:-65781 ) ) -k1,11366:25478599,-710414:25952256 -g1,11366:25478599,-710414 +k1,11371:25478599,-710414:25952256 +g1,11371:25478599,-710414 ) ] ) -[1,11366:6630773,47279633:25952256,43253760,11795 -[1,11366:6630773,4812305:25952256,786432,0 -(1,11366:6630773,4812305:25952256,0,0 -(1,11366:6630773,4812305:25952256,0,0 -g1,11366:3078558,4812305 -[1,11366:3078558,4812305:0,0,0 -(1,11366:3078558,2439708:0,1703936,0 -k1,11366:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11366:2537886,2439708:1179648,16384,0 +[1,11371:6630773,47279633:25952256,43253760,11795 +[1,11371:6630773,4812305:25952256,786432,0 +(1,11371:6630773,4812305:25952256,0,0 +(1,11371:6630773,4812305:25952256,0,0 +g1,11371:3078558,4812305 +[1,11371:3078558,4812305:0,0,0 +(1,11371:3078558,2439708:0,1703936,0 +k1,11371:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11371:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11366:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11371:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11366:3078558,4812305:0,0,0 -(1,11366:3078558,2439708:0,1703936,0 -g1,11366:29030814,2439708 -g1,11366:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11366:36151628,1915420:16384,1179648,0 +[1,11371:3078558,4812305:0,0,0 +(1,11371:3078558,2439708:0,1703936,0 +g1,11371:29030814,2439708 +g1,11371:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11371:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11366:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11371:37855564,2439708:1179648,16384,0 ) ) -k1,11366:3078556,2439708:-34777008 +k1,11371:3078556,2439708:-34777008 ) ] -[1,11366:3078558,4812305:0,0,0 -(1,11366:3078558,49800853:0,16384,2228224 -k1,11366:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11366:2537886,49800853:1179648,16384,0 +[1,11371:3078558,4812305:0,0,0 +(1,11371:3078558,49800853:0,16384,2228224 +k1,11371:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11371:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11366:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11371:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11366:3078558,4812305:0,0,0 -(1,11366:3078558,49800853:0,16384,2228224 -g1,11366:29030814,49800853 -g1,11366:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11366:36151628,51504789:16384,1179648,0 +[1,11371:3078558,4812305:0,0,0 +(1,11371:3078558,49800853:0,16384,2228224 +g1,11371:29030814,49800853 +g1,11371:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11371:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11366:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11371:37855564,49800853:1179648,16384,0 ) ) -k1,11366:3078556,49800853:-34777008 +k1,11371:3078556,49800853:-34777008 ) ] -g1,11366:6630773,4812305 +g1,11371:6630773,4812305 ) ) ] -[1,11366:6630773,45706769:25952256,40108032,0 -(1,11366:6630773,45706769:25952256,40108032,0 -(1,11366:6630773,45706769:0,0,0 -g1,11366:6630773,45706769 +[1,11371:6630773,45706769:25952256,40108032,0 +(1,11371:6630773,45706769:25952256,40108032,0 +(1,11371:6630773,45706769:0,0,0 +g1,11371:6630773,45706769 ) -[1,11366:6630773,45706769:25952256,40108032,0 -[1,11316:6630773,11635422:25952256,6036685,0 -(1,11316:6630773,6604846:25952256,1137181,0 -h1,11316:6630773,6604846:0,0,0 -k1,11316:20096848,6604846:12486181 -k1,11316:32583029,6604846:12486181 +[1,11371:6630773,45706769:25952256,40108032,0 +[1,11321:6630773,11635422:25952256,6036685,0 +(1,11321:6630773,6604846:25952256,1137181,0 +h1,11321:6630773,6604846:0,0,0 +k1,11321:20096848,6604846:12486181 +k1,11321:32583029,6604846:12486181 ) -(1,11316:6630773,7304782:25952256,32768,229376 -(1,11316:6630773,7304782:0,32768,229376 -(1,11316:6630773,7304782:5505024,32768,229376 -r1,11316:12135797,7304782:5505024,262144,229376 +(1,11321:6630773,7304782:25952256,32768,229376 +(1,11321:6630773,7304782:0,32768,229376 +(1,11321:6630773,7304782:5505024,32768,229376 +r1,11321:12135797,7304782:5505024,262144,229376 ) -k1,11316:6630773,7304782:-5505024 +k1,11321:6630773,7304782:-5505024 ) -(1,11316:6630773,7304782:25952256,32768,0 -r1,11316:32583029,7304782:25952256,32768,0 +(1,11321:6630773,7304782:25952256,32768,0 +r1,11321:32583029,7304782:25952256,32768,0 ) ) -(1,11316:6630773,9100478:25952256,923664,241827 -h1,11316:6630773,9100478:0,0,0 -g1,11316:12651697,9100478 -g1,11316:14119179,9100478 -k1,11316:25790027,9100478:6793003 -k1,11316:32583029,9100478:6793002 -) -(1,11316:6630773,9800414:25952256,32768,0 -(1,11316:6630773,9800414:5505024,32768,0 -r1,11316:12135797,9800414:5505024,32768,0 +(1,11321:6630773,9100478:25952256,923664,241827 +h1,11321:6630773,9100478:0,0,0 +g1,11321:12651697,9100478 +g1,11321:14119179,9100478 +k1,11321:25790027,9100478:6793003 +k1,11321:32583029,9100478:6793002 +) +(1,11321:6630773,9800414:25952256,32768,0 +(1,11321:6630773,9800414:5505024,32768,0 +r1,11321:12135797,9800414:5505024,32768,0 ) -k1,11316:22359413,9800414:10223616 -k1,11316:32583029,9800414:10223616 +k1,11321:22359413,9800414:10223616 +k1,11321:32583029,9800414:10223616 ) -] -(1,11318:6630773,14399213:25952256,131072,0 -r1,11318:32583029,14399213:25952256,131072,0 -g1,11318:32583029,14399213 -g1,11318:32583029,14399213 -) -(1,11320:6630773,15719114:25952256,505283,134348 -k1,11320:8596853,15719114:1966080 -k1,11319:10284470,15719114:490930 -k1,11319:14933004,15719114:490930 -k1,11319:18059137,15719114:490930 -k1,11319:20858245,15719114:490930 -k1,11319:22540621,15719114:490931 -k1,11319:23932671,15719114:490930 -k1,11319:24955098,15719114:490930 -k1,11319:26062066,15719114:490930 -k1,11319:28449608,15719114:490930 -k1,11319:29591966,15719114:490930 -k1,11319:32583029,15719114:1966080 -) -(1,11320:6630773,16560602:25952256,513147,134348 -g1,11320:8596853,16560602 -g1,11319:13682446,16560602 -g1,11319:16374665,16560602 -g1,11319:19662606,16560602 -g1,11319:20521127,16560602 -g1,11319:22735588,16560602 -g1,11319:24126262,16560602 -k1,11320:30616949,16560602:3666085 -g1,11320:32583029,16560602 -) -(1,11321:6630773,18188522:25952256,513147,11795 -k1,11321:16902232,18188522:10271459 -h1,11321:16902232,18188522:0,0,0 -g1,11321:19479107,18188522 -g1,11321:21900662,18188522 -g1,11321:24357606,18188522 -g1,11321:25208263,18188522 -g1,11321:28382827,18188522 -g1,11321:30616949,18188522 -g1,11321:32583029,18188522 -) -(1,11322:6630773,19030010:25952256,513147,126483 -k1,11322:17763375,19030010:11132602 -h1,11321:17763375,19030010:0,0,0 -g1,11321:18865690,19030010 -g1,11321:21993723,19030010 -g1,11321:23556101,19030010 -g1,11321:26159191,19030010 -g1,11321:26981667,19030010 -g1,11321:29023113,19030010 -g1,11322:30616949,19030010 -g1,11322:32583029,19030010 -) -(1,11322:6630773,20264714:25952256,131072,0 -r1,11322:32583029,20264714:25952256,131072,0 -g1,11322:32583029,20264714 -g1,11322:34549109,20264714 -) -(1,11343:6630773,23729741:25952256,32768,229376 -(1,11343:6630773,23729741:0,32768,229376 -(1,11343:6630773,23729741:5505024,32768,229376 -r1,11343:12135797,23729741:5505024,262144,229376 -) -k1,11343:6630773,23729741:-5505024 -) -(1,11343:6630773,23729741:25952256,32768,0 -r1,11343:32583029,23729741:25952256,32768,0 -) -) -(1,11343:6630773,25334069:25952256,615776,151780 -(1,11343:6630773,25334069:1974731,573309,0 -g1,11343:6630773,25334069 -g1,11343:8605504,25334069 -) -g1,11343:10904245,25334069 -g1,11343:11961996,25334069 -g1,11343:13695292,25334069 -k1,11343:32583029,25334069:15886712 -g1,11343:32583029,25334069 -) -(1,11346:6630773,26568773:25952256,505283,134348 -k1,11345:8650090,26568773:186930 -k1,11345:10428890,26568773:186930 -k1,11345:12005182,26568773:186929 -k1,11345:14716559,26568773:186930 -k1,11345:17479709,26568773:186930 -k1,11345:18658199,26568773:186930 -k1,11345:21629098,26568773:186930 -k1,11345:22467455,26568773:186929 -k1,11345:23069216,26568773:186918 -k1,11345:25140961,26568773:186930 -k1,11345:26761818,26568773:186929 -k1,11345:27537261,26568773:186930 -k1,11345:30304343,26568773:186930 -k1,11345:32583029,26568773:0 -) -(1,11346:6630773,27410261:25952256,505283,134348 -k1,11345:9023644,27410261:149573 -k1,11345:10974147,27410261:149574 -k1,11345:12315165,27410261:149573 -k1,11345:15044891,27410261:149574 -k1,11345:18022997,27410261:149573 -k1,11345:21303881,27410261:149574 -k1,11345:22644899,27410261:149573 -k1,11345:24947985,27410261:149573 -k1,11345:27072308,27410261:149723 -k1,11345:28240966,27410261:149573 -k1,11345:29538731,27410261:149574 -k1,11345:30845014,27410261:149573 -k1,11345:32583029,27410261:0 -) -(1,11346:6630773,28251749:25952256,513147,134348 -k1,11345:7807047,28251749:157189 -k1,11345:9565935,28251749:157188 -k1,11345:11711486,28251749:157189 -k1,11345:13060119,28251749:157188 -k1,11345:16127762,28251749:157189 -k1,11345:17886651,28251749:157189 -k1,11345:20544038,28251749:157188 -k1,11345:22947146,28251749:157189 -k1,11345:25888303,28251749:157188 -k1,11345:26661530,28251749:157189 -k1,11345:27233520,28251749:157147 -k1,11345:28338359,28251749:157188 -k1,11345:31019995,28251749:157189 -k1,11345:32583029,28251749:0 -) -(1,11346:6630773,29093237:25952256,513147,134348 -k1,11345:8311116,29093237:190054 -k1,11345:9673610,29093237:190055 -k1,11345:12626007,29093237:190054 -k1,11345:14080906,29093237:190054 -k1,11345:14930253,29093237:190055 -k1,11345:17839396,29093237:190054 -k1,11345:21253821,29093237:190054 -k1,11345:22720516,29093237:190054 -k1,11345:24654484,29093237:190055 -k1,11345:26357764,29093237:190054 -k1,11345:27199246,29093237:190054 -k1,11345:30009430,29093237:190055 -k1,11345:31218569,29093237:190054 -k1,11346:32583029,29093237:0 -) -(1,11346:6630773,29934725:25952256,505283,134348 -k1,11345:8461496,29934725:270311 -k1,11345:11681582,29934725:270311 -k1,11345:14821059,29934725:270311 -k1,11345:16584935,29934725:270310 -k1,11345:17541408,29934725:270311 -k1,11345:19310527,29934725:270311 -k1,11345:20772283,29934725:270311 -k1,11345:23891444,29934725:270311 -k1,11345:25153315,29934725:270311 -k1,11345:28207594,29934725:270310 -k1,11345:29093943,29934725:270311 -k1,11345:29952767,29934725:270311 -k1,11345:31966991,29934725:270311 -k1,11345:32583029,29934725:0 -) -(1,11346:6630773,30776213:25952256,505283,134348 -g1,11345:8263930,30776213 -g1,11345:8878002,30776213 -g1,11345:10268676,30776213 -g1,11345:10823765,30776213 -g1,11345:12941888,30776213 -g1,11345:14297827,30776213 -g1,11345:15113094,30776213 -g1,11345:16331408,30776213 -g1,11345:18156584,30776213 -g1,11345:20935965,30776213 -g1,11345:23655054,30776213 -k1,11346:32583029,30776213:6953375 -g1,11346:32583029,30776213 -) -(1,11348:6630773,31617701:25952256,513147,134348 -h1,11347:6630773,31617701:983040,0,0 -k1,11347:8393598,31617701:151950 -k1,11347:9748789,31617701:151950 -k1,11347:12318361,31617701:151949 -k1,11347:13640784,31617701:151950 -k1,11347:14925196,31617701:151950 -k1,11347:16688676,31617701:151950 -k1,11347:17859710,31617701:151949 -k1,11347:20843471,31617701:151950 -k1,11347:21654713,31617701:151950 -k1,11347:22825748,31617701:151950 -k1,11347:25880288,31617701:151950 -k1,11347:26691529,31617701:151949 -k1,11347:29736238,31617701:151950 -k1,11347:30697558,31617701:151950 -k1,11347:32583029,31617701:0 -) -(1,11348:6630773,32459189:25952256,513147,134348 -k1,11347:9430892,32459189:219967 -k1,11347:12479392,32459189:219967 -k1,11347:13230856,32459189:219967 -k1,11347:15479162,32459189:219967 -k1,11347:16952833,32459189:219967 -k1,11347:18305262,32459189:219967 -k1,11347:19811045,32459189:219967 -k1,11347:21642542,32459189:219967 -k1,11347:23192890,32459189:219967 -k1,11347:24064285,32459189:219967 -k1,11347:25926584,32459189:219967 -k1,11347:28378052,32459189:219967 -k1,11347:30314407,32459189:219967 -k1,11347:31193666,32459189:219967 -k1,11347:32583029,32459189:0 -) -(1,11348:6630773,33300677:25952256,513147,134348 -k1,11347:8429135,33300677:190764 -k1,11347:10013851,33300677:190765 -k1,11347:12784767,33300677:190764 -k1,11347:15977735,33300677:190765 -k1,11347:16986388,33300677:190764 -k1,11347:17533012,33300677:190764 -k1,11347:21806670,33300677:190765 -k1,11347:22656726,33300677:190764 -k1,11347:23866576,33300677:190765 -k1,11347:27376739,33300677:190764 -k1,11347:28758949,33300677:190765 -k1,11347:31923737,33300677:190764 -k1,11347:32583029,33300677:0 -) -(1,11348:6630773,34142165:25952256,513147,134348 -k1,11347:9775335,34142165:142359 -k1,11347:11669471,34142165:142359 -k1,11347:15541484,34142165:142359 -k1,11347:18594297,34142165:142359 -k1,11347:21879106,34142165:142358 -k1,11347:22809863,34142165:142359 -k1,11347:27027906,34142165:142359 -k1,11347:28645480,34142165:142359 -k1,11347:30297789,34142165:142359 -k1,11348:32583029,34142165:0 -) -(1,11348:6630773,34983653:25952256,513147,134348 -k1,11347:8011235,34983653:191639 -k1,11347:9394318,34983653:191638 -k1,11347:12725787,34983653:191639 -k1,11347:13533464,34983653:191639 -k1,11347:15701013,34983653:191639 -k1,11347:19867410,34983653:191638 -k1,11347:22993751,34983653:191639 -k1,11347:23398374,34983653:191631 -k1,11347:24722475,34983653:191639 -k1,11347:26652129,34983653:191639 -k1,11347:29001868,34983653:191638 -k1,11347:30002877,34983653:191639 -k1,11347:32583029,34983653:0 -) -(1,11348:6630773,35825141:25952256,513147,134348 -g1,11347:9658535,35825141 -g1,11347:11233365,35825141 -g1,11347:13465521,35825141 -g1,11347:16976940,35825141 -g1,11347:17532029,35825141 -g1,11347:18864376,35825141 -g1,11347:19722897,35825141 -g1,11347:21618853,35825141 -k1,11348:32583029,35825141:7387876 -g1,11348:32583029,35825141 -) -(1,11349:6630773,38632709:25952256,32768,229376 -(1,11349:6630773,38632709:0,32768,229376 -(1,11349:6630773,38632709:5505024,32768,229376 -r1,11349:12135797,38632709:5505024,262144,229376 -) -k1,11349:6630773,38632709:-5505024 -) -(1,11349:6630773,38632709:25952256,32768,0 -r1,11349:32583029,38632709:25952256,32768,0 -) -) -(1,11349:6630773,40237037:25952256,606339,161218 -(1,11349:6630773,40237037:1974731,582746,0 -g1,11349:6630773,40237037 -g1,11349:8605504,40237037 -) -g1,11349:12473177,40237037 -g1,11349:14599689,40237037 -g1,11349:15614973,40237037 -g1,11349:17348269,40237037 -k1,11349:32583029,40237037:12233735 -g1,11349:32583029,40237037 -) -(1,11354:6630773,41471741:25952256,513147,134348 -k1,11353:7270841,41471741:162311 -k1,11353:8452237,41471741:162311 -k1,11353:11525002,41471741:162311 -k1,11353:13200538,41471741:162310 -k1,11353:13978887,41471741:162311 -k1,11353:15344439,41471741:162311 -k1,11353:17924373,41471741:162311 -k1,11353:19078244,41471741:162311 -k1,11353:20306826,41471741:162311 -k1,11353:21434482,41471741:162311 -k1,11353:24334231,41471741:162310 -k1,11353:25112580,41471741:162311 -k1,11353:26733722,41471741:162311 -k1,11353:30145963,41471741:162311 -k1,11353:31478747,41471741:162311 -k1,11353:32583029,41471741:0 -) -(1,11354:6630773,42313229:25952256,505283,134348 -g1,11353:8799359,42313229 -g1,11353:10637643,42313229 -g1,11353:11523034,42313229 -g1,11353:13797788,42313229 -g1,11353:16039119,42313229 -g1,11353:16924510,42313229 -g1,11353:18512447,42313229 -g1,11353:19397838,42313229 -g1,11353:22177219,42313229 -g1,11353:26182778,42313229 -g1,11353:26913504,42313229 -g1,11353:29447125,42313229 -k1,11354:32583029,42313229:224795 -g1,11354:32583029,42313229 -) -v1,11356:6630773,43245748:0,393216,0 -(1,11360:6630773,43560844:25952256,708312,196608 -g1,11360:6630773,43560844 -g1,11360:6630773,43560844 -g1,11360:6434165,43560844 -(1,11360:6434165,43560844:0,708312,196608 -r1,11360:32779637,43560844:26345472,904920,196608 -k1,11360:6434165,43560844:-26345472 -) -(1,11360:6434165,43560844:26345472,708312,196608 -[1,11360:6630773,43560844:25952256,511704,0 -(1,11358:6630773,43453366:25952256,404226,107478 -(1,11357:6630773,43453366:0,0,0 -g1,11357:6630773,43453366 -g1,11357:6630773,43453366 -g1,11357:6303093,43453366 -(1,11357:6303093,43453366:0,0,0 -) -g1,11357:6630773,43453366 -) -k1,11358:6630773,43453366:0 -h1,11358:20541182,43453366:0,0,0 -k1,11358:32583029,43453366:12041847 -g1,11358:32583029,43453366 -) -] -) -g1,11360:32583029,43560844 -g1,11360:6630773,43560844 -g1,11360:6630773,43560844 -g1,11360:32583029,43560844 -g1,11360:32583029,43560844 -) -h1,11360:6630773,43757452:0,0,0 -(1,11364:6630773,44865281:25952256,513147,126483 -h1,11363:6630773,44865281:983040,0,0 -k1,11363:8588848,44865281:146005 -k1,11363:9852896,44865281:146004 -k1,11363:11017986,44865281:146005 -k1,11363:14155710,44865281:146005 -k1,11363:17060125,44865281:146005 -k1,11363:17822167,44865281:146004 -k1,11363:19171413,44865281:146005 -k1,11363:21908712,44865281:146005 -k1,11363:23225189,44865281:146004 -k1,11363:24901460,44865281:146005 -k1,11363:26353598,44865281:146005 -k1,11363:27151031,44865281:146005 -k1,11363:28673291,44865281:146004 -k1,11363:30511436,44865281:146005 -k1,11364:32583029,44865281:0 -) -(1,11364:6630773,45706769:25952256,513147,134348 -k1,11363:7825904,45706769:143278 -k1,11363:9536803,45706769:143278 -k1,11363:10699166,45706769:143278 -k1,11363:12942873,45706769:143278 -k1,11363:14318228,45706769:143278 -k1,11363:16740193,45706769:143278 -h1,11363:17710781,45706769:0,0,0 -k1,11363:17854059,45706769:143278 -k1,11363:18806706,45706769:143277 -k1,11363:20448137,45706769:143278 -h1,11363:21643514,45706769:0,0,0 -k1,11363:21786792,45706769:143278 -k1,11363:22877721,45706769:143278 -k1,11363:25138467,45706769:143278 -k1,11363:26091115,45706769:143278 -k1,11363:27253478,45706769:143278 -k1,11363:28489241,45706769:143278 -k1,11363:29291811,45706769:143278 -k1,11364:32583029,45706769:0 -k1,11364:32583029,45706769:0 -) -] -(1,11366:32583029,45706769:0,0,0 -g1,11366:32583029,45706769 -) -) -] -(1,11366:6630773,47279633:25952256,485622,11795 -(1,11366:6630773,47279633:25952256,485622,11795 -(1,11366:6630773,47279633:0,0,0 -v1,11366:6630773,47279633:0,0,0 -) -g1,11366:6830002,47279633 -k1,11366:31387652,47279633:24557650 -) -) -] -h1,11366:4262630,4025873:0,0,0 -] -!16451 +] +(1,11323:6630773,14528187:25952256,131072,0 +r1,11323:32583029,14528187:25952256,131072,0 +g1,11323:32583029,14528187 +g1,11323:32583029,14528187 +) +(1,11325:6630773,15848088:25952256,505283,134348 +k1,11325:8596853,15848088:1966080 +k1,11324:10284470,15848088:490930 +k1,11324:14933004,15848088:490930 +k1,11324:18059137,15848088:490930 +k1,11324:20858245,15848088:490930 +k1,11324:22540621,15848088:490931 +k1,11324:23932671,15848088:490930 +k1,11324:24955098,15848088:490930 +k1,11324:26062066,15848088:490930 +k1,11324:28449608,15848088:490930 +k1,11324:29591966,15848088:490930 +k1,11324:32583029,15848088:1966080 +) +(1,11325:6630773,16689576:25952256,513147,134348 +g1,11325:8596853,16689576 +g1,11324:13682446,16689576 +g1,11324:16374665,16689576 +g1,11324:19662606,16689576 +g1,11324:20521127,16689576 +g1,11324:22735588,16689576 +g1,11324:24126262,16689576 +k1,11325:30616949,16689576:3666085 +g1,11325:32583029,16689576 +) +(1,11326:6630773,18317496:25952256,513147,11795 +k1,11326:16902232,18317496:10271459 +h1,11326:16902232,18317496:0,0,0 +g1,11326:19479107,18317496 +g1,11326:21900662,18317496 +g1,11326:24357606,18317496 +g1,11326:25208263,18317496 +g1,11326:28382827,18317496 +g1,11326:30616949,18317496 +g1,11326:32583029,18317496 +) +(1,11327:6630773,19158984:25952256,513147,126483 +k1,11327:17763375,19158984:11132602 +h1,11326:17763375,19158984:0,0,0 +g1,11326:18865690,19158984 +g1,11326:21993723,19158984 +g1,11326:23556101,19158984 +g1,11326:26159191,19158984 +g1,11326:26981667,19158984 +g1,11326:29023113,19158984 +g1,11327:30616949,19158984 +g1,11327:32583029,19158984 +) +(1,11327:6630773,20393688:25952256,131072,0 +r1,11327:32583029,20393688:25952256,131072,0 +g1,11327:32583029,20393688 +g1,11327:34549109,20393688 +) +(1,11348:6630773,23987688:25952256,32768,229376 +(1,11348:6630773,23987688:0,32768,229376 +(1,11348:6630773,23987688:5505024,32768,229376 +r1,11348:12135797,23987688:5505024,262144,229376 +) +k1,11348:6630773,23987688:-5505024 +) +(1,11348:6630773,23987688:25952256,32768,0 +r1,11348:32583029,23987688:25952256,32768,0 +) +) +(1,11348:6630773,25592016:25952256,615776,151780 +(1,11348:6630773,25592016:1974731,573309,0 +g1,11348:6630773,25592016 +g1,11348:8605504,25592016 +) +g1,11348:10904245,25592016 +g1,11348:11961996,25592016 +g1,11348:13695292,25592016 +k1,11348:32583029,25592016:15886712 +g1,11348:32583029,25592016 +) +(1,11351:6630773,26826720:25952256,505283,134348 +k1,11350:8650090,26826720:186930 +k1,11350:10428890,26826720:186930 +k1,11350:12005182,26826720:186929 +k1,11350:14716559,26826720:186930 +k1,11350:17479709,26826720:186930 +k1,11350:18658199,26826720:186930 +k1,11350:21629098,26826720:186930 +k1,11350:22467455,26826720:186929 +k1,11350:23069216,26826720:186918 +k1,11350:25140961,26826720:186930 +k1,11350:26761818,26826720:186929 +k1,11350:27537261,26826720:186930 +k1,11350:30304343,26826720:186930 +k1,11350:32583029,26826720:0 +) +(1,11351:6630773,27668208:25952256,505283,134348 +(1,11350:6837867,27668208:3760456,505283,11795 +) +k1,11350:11027905,27668208:222488 +k1,11350:12441837,27668208:222487 +k1,11350:15244477,27668208:222488 +k1,11350:18295498,27668208:222488 +(1,11350:18502592,27668208:4681892,505283,11795 +) +k1,11350:23787805,27668208:222557 +k1,11350:25029377,27668208:222487 +k1,11350:26400056,27668208:222488 +k1,11350:27779254,27668208:222488 +k1,11350:29739756,27668208:222487 +k1,11350:30981329,27668208:222488 +k1,11350:32583029,27668208:0 +) +(1,11351:6630773,28509696:25952256,513147,134348 +k1,11350:8883633,28509696:264498 +k1,11350:10339575,28509696:264497 +k1,11350:13514527,28509696:264498 +k1,11350:15380725,28509696:264498 +k1,11350:18145421,28509696:264497 +k1,11350:20655838,28509696:264498 +k1,11350:23704304,28509696:264497 +k1,11350:24584840,28509696:264498 +k1,11350:25264115,28509696:264432 +k1,11350:26476264,28509696:264498 +k1,11350:29265208,28509696:264497 +k1,11350:31092740,28509696:264498 +k1,11350:32583029,28509696:0 +) +(1,11351:6630773,29351184:25952256,513147,134348 +k1,11350:8021010,29351184:217798 +k1,11350:11001151,29351184:217798 +k1,11350:12483794,29351184:217798 +k1,11350:13360884,29351184:217798 +k1,11350:16297771,29351184:217798 +k1,11350:19739940,29351184:217798 +k1,11350:21234378,29351184:217797 +k1,11350:23196089,29351184:217798 +k1,11350:24927113,29351184:217798 +k1,11350:25796339,29351184:217798 +k1,11350:28634266,29351184:217798 +k1,11350:29871149,29351184:217798 +k1,11350:32583029,29351184:0 +) +(1,11351:6630773,30192672:25952256,505283,134348 +k1,11350:9810954,30192672:230406 +k1,11350:12910526,30192672:230406 +k1,11350:14634498,30192672:230406 +k1,11350:15551065,30192672:230405 +k1,11350:17280279,30192672:230406 +k1,11350:18702130,30192672:230406 +k1,11350:21781386,30192672:230406 +k1,11350:23003352,30192672:230406 +k1,11350:26017727,30192672:230406 +k1,11350:26864171,30192672:230406 +k1,11350:27683089,30192672:230405 +k1,11350:29657408,30192672:230406 +k1,11350:30503852,30192672:230406 +k1,11350:32168186,30192672:230406 +k1,11351:32583029,30192672:0 +) +(1,11351:6630773,31034160:25952256,505283,134348 +g1,11350:8021447,31034160 +g1,11350:8576536,31034160 +g1,11350:10694659,31034160 +g1,11350:12050598,31034160 +g1,11350:12865865,31034160 +g1,11350:14084179,31034160 +g1,11350:15909355,31034160 +g1,11350:18688736,31034160 +(1,11350:18895830,31034160:4054057,505283,11795 +) +k1,11351:32583029,31034160:9252378 +g1,11351:32583029,31034160 +) +(1,11353:6630773,31875648:25952256,513147,134348 +h1,11352:6630773,31875648:983040,0,0 +k1,11352:8393598,31875648:151950 +k1,11352:9748789,31875648:151950 +k1,11352:12318361,31875648:151949 +k1,11352:13640784,31875648:151950 +k1,11352:14925196,31875648:151950 +k1,11352:16688676,31875648:151950 +k1,11352:17859710,31875648:151949 +k1,11352:20843471,31875648:151950 +k1,11352:21654713,31875648:151950 +k1,11352:22825748,31875648:151950 +k1,11352:25880288,31875648:151950 +k1,11352:26691529,31875648:151949 +k1,11352:29736238,31875648:151950 +k1,11352:30697558,31875648:151950 +k1,11352:32583029,31875648:0 +) +(1,11353:6630773,32717136:25952256,513147,134348 +k1,11352:9430892,32717136:219967 +k1,11352:12479392,32717136:219967 +k1,11352:13230856,32717136:219967 +k1,11352:15479162,32717136:219967 +k1,11352:16952833,32717136:219967 +k1,11352:18305262,32717136:219967 +k1,11352:19811045,32717136:219967 +k1,11352:21642542,32717136:219967 +k1,11352:23192890,32717136:219967 +k1,11352:24064285,32717136:219967 +k1,11352:25926584,32717136:219967 +k1,11352:28378052,32717136:219967 +k1,11352:30314407,32717136:219967 +k1,11352:31193666,32717136:219967 +k1,11352:32583029,32717136:0 +) +(1,11353:6630773,33558624:25952256,513147,134348 +k1,11352:8429135,33558624:190764 +k1,11352:10013851,33558624:190765 +k1,11352:12784767,33558624:190764 +k1,11352:15977735,33558624:190765 +k1,11352:16986388,33558624:190764 +k1,11352:17533012,33558624:190764 +k1,11352:21806670,33558624:190765 +k1,11352:22656726,33558624:190764 +k1,11352:23866576,33558624:190765 +k1,11352:27376739,33558624:190764 +k1,11352:28758949,33558624:190765 +k1,11352:31923737,33558624:190764 +k1,11352:32583029,33558624:0 +) +(1,11353:6630773,34400112:25952256,513147,134348 +k1,11352:9819171,34400112:186195 +k1,11352:11757143,34400112:186195 +k1,11352:15672992,34400112:186195 +k1,11352:18769641,34400112:186195 +k1,11352:22098288,34400112:186196 +k1,11352:23072881,34400112:186195 +k1,11352:27334760,34400112:186195 +k1,11352:28996170,34400112:186195 +k1,11352:30692315,34400112:186195 +k1,11353:32583029,34400112:0 +) +(1,11353:6630773,35241600:25952256,513147,134348 +k1,11352:8372887,35241600:158764 +k1,11352:9723096,35241600:158764 +k1,11352:13021691,35241600:158765 +k1,11352:13796493,35241600:158764 +k1,11352:15931167,35241600:158764 +k1,11352:20064690,35241600:158764 +k1,11352:23158156,35241600:158764 +k1,11352:23529872,35241600:158724 +k1,11352:24821098,35241600:158764 +k1,11352:26717878,35241600:158765 +k1,11352:29034743,35241600:158764 +k1,11352:30002877,35241600:158764 +k1,11352:32583029,35241600:0 +) +(1,11353:6630773,36083088:25952256,513147,134348 +g1,11352:9658535,36083088 +g1,11352:11233365,36083088 +g1,11352:13465521,36083088 +g1,11352:16976940,36083088 +g1,11352:17532029,36083088 +g1,11352:18864376,36083088 +g1,11352:19722897,36083088 +g1,11352:21618853,36083088 +k1,11353:32583029,36083088:7387876 +g1,11353:32583029,36083088 +) +(1,11354:6630773,38890656:25952256,32768,229376 +(1,11354:6630773,38890656:0,32768,229376 +(1,11354:6630773,38890656:5505024,32768,229376 +r1,11354:12135797,38890656:5505024,262144,229376 +) +k1,11354:6630773,38890656:-5505024 +) +(1,11354:6630773,38890656:25952256,32768,0 +r1,11354:32583029,38890656:25952256,32768,0 +) +) +(1,11354:6630773,40494984:25952256,606339,161218 +(1,11354:6630773,40494984:1974731,582746,0 +g1,11354:6630773,40494984 +g1,11354:8605504,40494984 +) +g1,11354:12473177,40494984 +g1,11354:14599689,40494984 +g1,11354:15614973,40494984 +g1,11354:17348269,40494984 +k1,11354:32583029,40494984:12233735 +g1,11354:32583029,40494984 +) +(1,11359:6630773,41729688:25952256,513147,134348 +k1,11358:7270841,41729688:162311 +k1,11358:8452237,41729688:162311 +k1,11358:11525002,41729688:162311 +k1,11358:13200538,41729688:162310 +k1,11358:13978887,41729688:162311 +k1,11358:15344439,41729688:162311 +k1,11358:17924373,41729688:162311 +k1,11358:19078244,41729688:162311 +k1,11358:20306826,41729688:162311 +k1,11358:21434482,41729688:162311 +k1,11358:24334231,41729688:162310 +k1,11358:25112580,41729688:162311 +k1,11358:26733722,41729688:162311 +k1,11358:30145963,41729688:162311 +k1,11358:31478747,41729688:162311 +k1,11358:32583029,41729688:0 +) +(1,11359:6630773,42571176:25952256,505283,134348 +g1,11358:8799359,42571176 +g1,11358:10637643,42571176 +g1,11358:11523034,42571176 +g1,11358:13797788,42571176 +g1,11358:16039119,42571176 +g1,11358:16924510,42571176 +g1,11358:18512447,42571176 +g1,11358:19397838,42571176 +g1,11358:22177219,42571176 +g1,11358:26182778,42571176 +g1,11358:26913504,42571176 +g1,11358:29447125,42571176 +k1,11359:32583029,42571176:224795 +g1,11359:32583029,42571176 +) +v1,11361:6630773,43761642:0,393216,0 +(1,11365:6630773,44076738:25952256,708312,196608 +g1,11365:6630773,44076738 +g1,11365:6630773,44076738 +g1,11365:6434165,44076738 +(1,11365:6434165,44076738:0,708312,196608 +r1,11365:32779637,44076738:26345472,904920,196608 +k1,11365:6434165,44076738:-26345472 +) +(1,11365:6434165,44076738:26345472,708312,196608 +[1,11365:6630773,44076738:25952256,511704,0 +(1,11363:6630773,43969260:25952256,404226,107478 +(1,11362:6630773,43969260:0,0,0 +g1,11362:6630773,43969260 +g1,11362:6630773,43969260 +g1,11362:6303093,43969260 +(1,11362:6303093,43969260:0,0,0 +) +g1,11362:6630773,43969260 +) +k1,11363:6630773,43969260:0 +h1,11363:20541182,43969260:0,0,0 +k1,11363:32583029,43969260:12041847 +g1,11363:32583029,43969260 +) +] +) +g1,11365:32583029,44076738 +g1,11365:6630773,44076738 +g1,11365:6630773,44076738 +g1,11365:32583029,44076738 +g1,11365:32583029,44076738 +) +h1,11365:6630773,44273346:0,0,0 +] +(1,11371:32583029,45706769:0,0,0 +g1,11371:32583029,45706769 +) +) +] +(1,11371:6630773,47279633:25952256,485622,11795 +(1,11371:6630773,47279633:25952256,485622,11795 +(1,11371:6630773,47279633:0,0,0 +v1,11371:6630773,47279633:0,0,0 +) +g1,11371:6830002,47279633 +k1,11371:31387652,47279633:24557650 +) +) +] +h1,11371:4262630,4025873:0,0,0 +] +!15112 }212 -Input:1430:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:1426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {213 -[1,11401:4262630,47279633:28320399,43253760,0 -(1,11401:4262630,4025873:0,0,0 -[1,11401:-473657,4025873:25952256,0,0 -(1,11401:-473657,-710414:25952256,0,0 -h1,11401:-473657,-710414:0,0,0 -(1,11401:-473657,-710414:0,0,0 -(1,11401:-473657,-710414:0,0,0 -g1,11401:-473657,-710414 -(1,11401:-473657,-710414:65781,0,65781 -g1,11401:-407876,-710414 -[1,11401:-407876,-644633:0,0,0 +[1,11403:4262630,47279633:28320399,43253760,0 +(1,11403:4262630,4025873:0,0,0 +[1,11403:-473657,4025873:25952256,0,0 +(1,11403:-473657,-710414:25952256,0,0 +h1,11403:-473657,-710414:0,0,0 +(1,11403:-473657,-710414:0,0,0 +(1,11403:-473657,-710414:0,0,0 +g1,11403:-473657,-710414 +(1,11403:-473657,-710414:65781,0,65781 +g1,11403:-407876,-710414 +[1,11403:-407876,-644633:0,0,0 ] ) -k1,11401:-473657,-710414:-65781 +k1,11403:-473657,-710414:-65781 ) ) -k1,11401:25478599,-710414:25952256 -g1,11401:25478599,-710414 +k1,11403:25478599,-710414:25952256 +g1,11403:25478599,-710414 ) ] ) -[1,11401:6630773,47279633:25952256,43253760,0 -[1,11401:6630773,4812305:25952256,786432,0 -(1,11401:6630773,4812305:25952256,513147,134348 -(1,11401:6630773,4812305:25952256,513147,134348 -g1,11401:3078558,4812305 -[1,11401:3078558,4812305:0,0,0 -(1,11401:3078558,2439708:0,1703936,0 -k1,11401:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11401:2537886,2439708:1179648,16384,0 +[1,11403:6630773,47279633:25952256,43253760,0 +[1,11403:6630773,4812305:25952256,786432,0 +(1,11403:6630773,4812305:25952256,513147,134348 +(1,11403:6630773,4812305:25952256,513147,134348 +g1,11403:3078558,4812305 +[1,11403:3078558,4812305:0,0,0 +(1,11403:3078558,2439708:0,1703936,0 +k1,11403:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11403:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11401:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11403:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11401:3078558,4812305:0,0,0 -(1,11401:3078558,2439708:0,1703936,0 -g1,11401:29030814,2439708 -g1,11401:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11401:36151628,1915420:16384,1179648,0 +[1,11403:3078558,4812305:0,0,0 +(1,11403:3078558,2439708:0,1703936,0 +g1,11403:29030814,2439708 +g1,11403:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11403:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11401:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11403:37855564,2439708:1179648,16384,0 ) ) -k1,11401:3078556,2439708:-34777008 +k1,11403:3078556,2439708:-34777008 ) ] -[1,11401:3078558,4812305:0,0,0 -(1,11401:3078558,49800853:0,16384,2228224 -k1,11401:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11401:2537886,49800853:1179648,16384,0 +[1,11403:3078558,4812305:0,0,0 +(1,11403:3078558,49800853:0,16384,2228224 +k1,11403:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11403:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11401:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11403:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11401:3078558,4812305:0,0,0 -(1,11401:3078558,49800853:0,16384,2228224 -g1,11401:29030814,49800853 -g1,11401:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11401:36151628,51504789:16384,1179648,0 +[1,11403:3078558,4812305:0,0,0 +(1,11403:3078558,49800853:0,16384,2228224 +g1,11403:29030814,49800853 +g1,11403:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11403:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11401:37855564,49800853:1179648,16384,0 -) -) -k1,11401:3078556,49800853:-34777008 -) -] -g1,11401:6630773,4812305 -k1,11401:25712890,4812305:17886740 -g1,11401:29057847,4812305 -g1,11401:29873114,4812305 -) -) -] -[1,11401:6630773,45706769:25952256,40108032,0 -(1,11401:6630773,45706769:25952256,40108032,0 -(1,11401:6630773,45706769:0,0,0 -g1,11401:6630773,45706769 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11403:37855564,49800853:1179648,16384,0 ) -[1,11401:6630773,45706769:25952256,40108032,0 -v1,11366:6630773,6254097:0,393216,0 -(1,11382:6630773,14557038:25952256,8696157,196608 -g1,11382:6630773,14557038 -g1,11382:6630773,14557038 -g1,11382:6434165,14557038 -(1,11382:6434165,14557038:0,8696157,196608 -r1,11382:32779637,14557038:26345472,8892765,196608 -k1,11382:6434165,14557038:-26345472 ) -(1,11382:6434165,14557038:26345472,8696157,196608 -[1,11382:6630773,14557038:25952256,8499549,0 -(1,11368:6630773,6461715:25952256,404226,101187 -(1,11367:6630773,6461715:0,0,0 -g1,11367:6630773,6461715 -g1,11367:6630773,6461715 -g1,11367:6303093,6461715 -(1,11367:6303093,6461715:0,0,0 -) -g1,11367:6630773,6461715 -) -k1,11368:6630773,6461715:0 -h1,11368:12637541,6461715:0,0,0 -k1,11368:32583029,6461715:19945488 -g1,11368:32583029,6461715 -) -(1,11369:6630773,7127893:25952256,404226,101187 -h1,11369:6630773,7127893:0,0,0 -k1,11369:6630773,7127893:0 -h1,11369:11056813,7127893:0,0,0 -k1,11369:32583029,7127893:21526216 -g1,11369:32583029,7127893 -) -(1,11370:6630773,7794071:25952256,404226,101187 -h1,11370:6630773,7794071:0,0,0 -k1,11370:6630773,7794071:0 -h1,11370:11372958,7794071:0,0,0 -k1,11370:32583030,7794071:21210072 -g1,11370:32583030,7794071 -) -(1,11371:6630773,8460249:25952256,404226,107478 -h1,11371:6630773,8460249:0,0,0 -k1,11371:6630773,8460249:0 -h1,11371:11689104,8460249:0,0,0 -k1,11371:32583028,8460249:20893924 -g1,11371:32583028,8460249 -) -(1,11372:6630773,9126427:25952256,404226,107478 -h1,11372:6630773,9126427:0,0,0 -k1,11372:6630773,9126427:0 -h1,11372:11689104,9126427:0,0,0 -k1,11372:32583028,9126427:20893924 -g1,11372:32583028,9126427 -) -(1,11373:6630773,9792605:25952256,404226,107478 -h1,11373:6630773,9792605:0,0,0 -k1,11373:6630773,9792605:0 -h1,11373:12321395,9792605:0,0,0 -k1,11373:32583029,9792605:20261634 -g1,11373:32583029,9792605 -) -(1,11374:6630773,10458783:25952256,404226,107478 -h1,11374:6630773,10458783:0,0,0 -k1,11374:6630773,10458783:0 -h1,11374:11689104,10458783:0,0,0 -k1,11374:32583028,10458783:20893924 -g1,11374:32583028,10458783 -) -(1,11375:6630773,11124961:25952256,404226,107478 -h1,11375:6630773,11124961:0,0,0 -k1,11375:6630773,11124961:0 -h1,11375:12637541,11124961:0,0,0 -k1,11375:32583029,11124961:19945488 -g1,11375:32583029,11124961 -) -(1,11376:6630773,11791139:25952256,410518,107478 -h1,11376:6630773,11791139:0,0,0 -k1,11376:6630773,11791139:0 -h1,11376:11689104,11791139:0,0,0 -k1,11376:32583028,11791139:20893924 -g1,11376:32583028,11791139 -) -(1,11377:6630773,12457317:25952256,404226,101187 -h1,11377:6630773,12457317:0,0,0 -k1,11377:6630773,12457317:0 -h1,11377:12637541,12457317:0,0,0 -k1,11377:32583029,12457317:19945488 -g1,11377:32583029,12457317 -) -(1,11378:6630773,13123495:25952256,404226,101187 -h1,11378:6630773,13123495:0,0,0 -k1,11378:6630773,13123495:0 -h1,11378:12321395,13123495:0,0,0 -k1,11378:32583029,13123495:20261634 -g1,11378:32583029,13123495 -) -(1,11379:6630773,13789673:25952256,404226,101187 -h1,11379:6630773,13789673:0,0,0 -k1,11379:6630773,13789673:0 -h1,11379:12321395,13789673:0,0,0 -k1,11379:32583029,13789673:20261634 -g1,11379:32583029,13789673 -) -(1,11380:6630773,14455851:25952256,404226,101187 -h1,11380:6630773,14455851:0,0,0 -k1,11380:6630773,14455851:0 -h1,11380:12321395,14455851:0,0,0 -k1,11380:32583029,14455851:20261634 -g1,11380:32583029,14455851 -) -] -) -g1,11382:32583029,14557038 -g1,11382:6630773,14557038 -g1,11382:6630773,14557038 -g1,11382:32583029,14557038 -g1,11382:32583029,14557038 -) -h1,11382:6630773,14753646:0,0,0 -(1,11389:6630773,18085502:25952256,32768,229376 -(1,11389:6630773,18085502:0,32768,229376 -(1,11389:6630773,18085502:5505024,32768,229376 -r1,11389:12135797,18085502:5505024,262144,229376 -) -k1,11389:6630773,18085502:-5505024 -) -(1,11389:6630773,18085502:25952256,32768,0 -r1,11389:32583029,18085502:25952256,32768,0 -) -) -(1,11389:6630773,19689830:25952256,615776,161218 -(1,11389:6630773,19689830:1974731,582746,14155 -g1,11389:6630773,19689830 -g1,11389:8605504,19689830 -) -g1,11389:13807752,19689830 -g1,11389:14844270,19689830 -g1,11389:16351860,19689830 -g1,11389:20190435,19689830 -g1,11389:21248186,19689830 -k1,11389:32583029,19689830:7942962 -g1,11389:32583029,19689830 -) -(1,11392:6630773,20924534:25952256,513147,134348 -k1,11391:8502902,20924534:238316 -k1,11391:11774224,20924534:238316 -k1,11391:14841074,20924534:238317 -k1,11391:16647011,20924534:238316 -k1,11391:18319255,20924534:238316 -k1,11391:18972375,20924534:238277 -k1,11391:20402136,20924534:238316 -k1,11391:24767254,20924534:238316 -k1,11391:27530018,20924534:238317 -k1,11391:30794131,20924534:238316 -k1,11391:31563944,20924534:238316 -k1,11391:32583029,20924534:0 -) -(1,11392:6630773,21766022:25952256,513147,134348 -k1,11391:8030294,21766022:307036 -k1,11391:8996622,21766022:307036 -k1,11391:9659518,21766022:307036 -k1,11391:12869145,21766022:307037 -k1,11391:13835473,21766022:307036 -k1,11391:16861598,21766022:307036 -k1,11391:18394813,21766022:307036 -k1,11391:20833080,21766022:307036 -k1,11391:23339504,21766022:307036 -k1,11391:24742303,21766022:307037 -k1,11391:25665377,21766022:307036 -k1,11391:26991498,21766022:307036 -k1,11391:29036549,21766022:307036 -k1,11391:30002877,21766022:307036 -k1,11391:32583029,21766022:0 -) -(1,11392:6630773,22607510:25952256,505283,134348 -k1,11391:10005033,22607510:164963 -k1,11391:11803810,22607510:164964 -k1,11391:12500270,22607510:164963 -k1,11391:14660150,22607510:164964 -k1,11391:15586641,22607510:164963 -k1,11391:18654195,22607510:164964 -k1,11391:19435196,22607510:164963 -k1,11391:20803400,22607510:164963 -k1,11391:22335445,22607510:164964 -k1,11391:23031905,22607510:164963 -k1,11391:24481375,22607510:164964 -k1,11391:26253936,22607510:164963 -k1,11391:27410460,22607510:164964 -k1,11391:30932832,22607510:164963 -k1,11391:32583029,22607510:0 -) -(1,11392:6630773,23448998:25952256,513147,134348 -k1,11391:7607087,23448998:214786 -k1,11391:9472071,23448998:214787 -k1,11391:11422250,23448998:214786 -k1,11391:14399379,23448998:214786 -k1,11391:17183833,23448998:214787 -k1,11391:18590064,23448998:214786 -k1,11391:21128757,23448998:214786 -k1,11391:24659666,23448998:214787 -k1,11391:26849145,23448998:214879 -k1,11391:29402911,23448998:214786 -k1,11391:30276990,23448998:214787 -k1,11391:32227169,23448998:214786 -k1,11391:32583029,23448998:0 -) -(1,11392:6630773,24290486:25952256,513147,134348 -k1,11391:8795886,24290486:292094 -k1,11391:11783476,24290486:292094 -k1,11391:13469521,24290486:292094 -k1,11391:15513392,24290486:292094 -k1,11391:19381786,24290486:292094 -k1,11391:21281477,24290486:292093 -k1,11391:22565131,24290486:292094 -k1,11391:26214634,24290486:292094 -k1,11391:27268256,24290486:292094 -k1,11391:30915138,24290486:292094 -k1,11392:32583029,24290486:0 -) -(1,11392:6630773,25131974:25952256,505283,126483 -k1,11391:8160879,25131974:222663 -k1,11391:11252709,25131974:222664 -k1,11391:12869323,25131974:222663 -k1,11391:16168901,25131974:222663 -(1,11391:16168901,25131974:0,414482,115847 -r1,11391:16527167,25131974:358266,530329,115847 -k1,11391:16168901,25131974:-358266 -) -(1,11391:16168901,25131974:358266,414482,115847 -k1,11391:16168901,25131974:3277 -h1,11391:16523890,25131974:0,411205,112570 -) -k1,11391:16749830,25131974:222663 -k1,11391:18163939,25131974:222664 -h1,11391:18163939,25131974:0,0,0 -k1,11391:19745818,25131974:222663 -k1,11391:24162130,25131974:222663 -k1,11391:25403878,25131974:222663 -k1,11391:29660938,25131974:222664 -k1,11391:30415098,25131974:222663 -k1,11391:32583029,25131974:0 -) -(1,11392:6630773,25973462:25952256,505283,134348 -k1,11391:12080092,25973462:191365 -k1,11391:13462902,25973462:191365 -k1,11391:14305695,25973462:191365 -k1,11391:14852920,25973462:191365 -k1,11391:16615183,25973462:191365 -k1,11391:18968581,25973462:191365 -k1,11391:20490327,25973462:191365 -k1,11391:22289290,25973462:191365 -k1,11391:23867397,25973462:191365 -k1,11391:25756800,25973462:191365 -k1,11391:28471956,25973462:191365 -k1,11391:31900144,25973462:191365 -k1,11391:32583029,25973462:0 -) -(1,11392:6630773,26814950:25952256,513147,134348 -g1,11391:9670988,26814950 -g1,11391:10521645,26814950 -g1,11391:11076734,26814950 -g1,11391:13531057,26814950 -g1,11391:14413171,26814950 -g1,11391:19522357,26814950 -g1,11391:20704626,26814950 -g1,11391:21435352,26814950 -g1,11391:24895652,26814950 -g1,11391:25856409,26814950 -k1,11392:32583029,26814950:4236252 -g1,11392:32583029,26814950 -) -(1,11394:6630773,27656438:25952256,513147,134348 -h1,11393:6630773,27656438:983040,0,0 -k1,11393:8740024,27656438:172662 -k1,11393:10016968,27656438:172662 -k1,11393:11869973,27656438:172662 -k1,11393:12701928,27656438:172663 -k1,11393:15399037,27656438:172662 -k1,11393:16257861,27656438:172662 -k1,11393:20462298,27656438:172662 -k1,11393:21654045,27656438:172662 -k1,11393:25898459,27656438:172662 -k1,11393:26754007,27656438:172663 -k1,11393:28316032,27656438:172662 -k1,11393:29104732,27656438:172662 -k1,11393:29633254,27656438:172662 -k1,11393:32583029,27656438:0 -) -(1,11394:6630773,28497926:25952256,513147,134348 -k1,11393:9814572,28497926:167832 -k1,11393:10935952,28497926:167831 -k1,11393:12196269,28497926:167832 -k1,11393:13383185,28497926:167831 -k1,11393:16846823,28497926:167832 -k1,11393:17673946,28497926:167831 -k1,11393:20791553,28497926:167832 -k1,11393:23249212,28497926:167831 -k1,11393:24068472,28497926:167832 -k1,11393:27277829,28497926:167831 -k1,11393:30208004,28497926:167832 -k1,11393:32583029,28497926:0 -) -(1,11394:6630773,29339414:25952256,513147,126483 -k1,11393:7478506,29339414:188441 -k1,11393:8764675,29339414:188441 -k1,11393:10516151,29339414:188442 -k1,11393:11607023,29339414:188441 -k1,11393:15536914,29339414:188441 -k1,11393:16829637,29339414:188441 -k1,11393:19279726,29339414:188442 -k1,11393:20127459,29339414:188441 -k1,11393:22987147,29339414:188441 -k1,11393:26016574,29339414:188441 -k1,11393:28389331,29339414:188442 -k1,11393:29649941,29339414:188441 -k1,11393:30609085,29339414:188441 -k1,11394:32583029,29339414:0 -) -(1,11394:6630773,30180902:25952256,513147,126483 -k1,11393:8781463,30180902:170192 -k1,11393:9610947,30180902:170192 -k1,11393:10626553,30180902:170192 -k1,11393:14740702,30180902:170192 -k1,11393:16247828,30180902:170192 -k1,11393:17165786,30180902:170192 -k1,11393:19717556,30180902:170192 -k1,11393:20649276,30180902:170192 -k1,11393:21175328,30180902:170192 -k1,11393:23959751,30180902:170192 -k1,11393:24745981,30180902:170192 -k1,11393:29433570,30180902:170192 -k1,11393:31391584,30180902:170192 -k1,11393:32583029,30180902:0 -) -(1,11394:6630773,31022390:25952256,513147,126483 -k1,11393:7210766,31022390:224133 -k1,11393:9123106,31022390:224133 -k1,11393:9963277,31022390:224133 -k1,11393:11786489,31022390:224134 -k1,11393:12626660,31022390:224133 -k1,11393:15516798,31022390:224133 -k1,11393:16392359,31022390:224133 -k1,11393:17635577,31022390:224133 -k1,11393:21803667,31022390:224133 -k1,11393:23807102,31022390:224133 -k1,11393:24933667,31022390:224134 -k1,11393:28899250,31022390:224133 -k1,11393:30071034,31022390:224133 -k1,11393:31314252,31022390:224133 -k1,11393:32583029,31022390:0 -) -(1,11394:6630773,31863878:25952256,513147,134348 -k1,11393:8030669,31863878:208451 -k1,11393:10108208,31863878:208452 -k1,11393:10975951,31863878:208451 -k1,11393:11540262,31863878:208451 -k1,11393:13402186,31863878:208451 -k1,11393:14714920,31863878:208452 -k1,11393:17185018,31863878:208451 -k1,11393:18052761,31863878:208451 -k1,11393:20444217,31863878:208452 -k1,11393:22207182,31863878:208451 -k1,11393:25427012,31863878:208451 -k1,11393:28121244,31863878:208451 -k1,11393:28988988,31863878:208452 -k1,11393:31314252,31863878:208451 -k1,11393:32583029,31863878:0 -) -(1,11394:6630773,32705366:25952256,513147,134348 -k1,11393:7466919,32705366:176854 -k1,11393:10836686,32705366:176853 -k1,11393:13130353,32705366:176854 -k1,11393:15320472,32705366:176853 -k1,11393:16156618,32705366:176854 -k1,11393:18171756,32705366:176853 -k1,11393:19994219,32705366:176854 -k1,11393:21981177,32705366:176854 -k1,11393:23228233,32705366:176853 -k1,11393:25215191,32705366:176854 -k1,11393:26503535,32705366:176853 -k1,11393:27158146,32705366:176854 -k1,11393:28203351,32705366:176853 -k1,11393:29371765,32705366:176854 -k1,11393:32583029,32705366:0 -) -(1,11394:6630773,33546854:25952256,505283,134348 -k1,11393:7461517,33546854:214706 -k1,11393:8695308,33546854:214706 -k1,11393:12741249,33546854:214706 -k1,11393:15591158,33546854:214706 -k1,11393:17815198,33546854:214706 -k1,11393:19221349,33546854:214706 -k1,11393:20990568,33546854:214705 -k1,11393:24216653,33546854:214706 -k1,11393:25299711,33546854:214706 -k1,11393:26851351,33546854:214706 -k1,11393:28614673,33546854:214706 -k1,11393:29480807,33546854:214706 -k1,11393:30787998,33546854:214706 -k1,11394:32583029,33546854:0 -) -(1,11394:6630773,34388342:25952256,513147,134348 -k1,11393:8151460,34388342:218487 -k1,11393:12281791,34388342:218487 -k1,11393:15321602,34388342:218486 -k1,11393:17094603,34388342:218487 -k1,11393:20150799,34388342:218487 -k1,11393:21020714,34388342:218487 -k1,11393:22258285,34388342:218486 -$1,11393:22258285,34388342 -$1,11393:22760946,34388342 -k1,11393:22979433,34388342:218487 -k1,11393:26542878,34388342:218487 -k1,11393:27420657,34388342:218487 -k1,11393:28658228,34388342:218486 -k1,11393:30154012,34388342:218487 -k1,11393:31563944,34388342:218487 -k1,11393:32583029,34388342:0 -) -(1,11394:6630773,35229830:25952256,505283,138281 -k1,11393:8850881,35229830:210774 -k1,11393:9713082,35229830:210773 -k1,11393:10942941,35229830:210774 -$1,11393:10942941,35229830 -$1,11393:11494754,35229830 -k1,11393:11705528,35229830:210774 -k1,11393:15434929,35229830:210773 -k1,11393:16842390,35229830:210774 -k1,11393:21124916,35229830:210774 -k1,11393:23104507,35229830:210774 -k1,11393:24063046,35229830:210773 -k1,11393:28083428,35229830:210774 -k1,11393:29103572,35229830:210774 -k1,11393:30333430,35229830:210773 -k1,11393:31821501,35229830:210774 -k1,11393:32583029,35229830:0 -) -(1,11394:6630773,36071318:25952256,505283,134348 -g1,11393:8848511,36071318 -g1,11393:11257614,36071318 -g1,11393:13462245,36071318 -g1,11393:14423002,36071318 -k1,11394:32583029,36071318:16487548 -g1,11394:32583029,36071318 -) -(1,11396:6630773,36912806:25952256,513147,134348 -h1,11395:6630773,36912806:983040,0,0 -k1,11395:9045119,36912806:234619 -k1,11395:12182328,36912806:234619 -k1,11395:13076239,36912806:234619 -k1,11395:16029947,36912806:234619 -k1,11395:18276521,36912806:234619 -k1,11395:19256284,36912806:234619 -k1,11395:20142330,36912806:234618 -k1,11395:22465581,36912806:234619 -k1,11395:24307798,36912806:234619 -k1,11395:25303945,36912806:234619 -k1,11395:28893352,36912806:234619 -k1,11395:31470228,36912806:234619 -k1,11396:32583029,36912806:0 -) -(1,11396:6630773,37754294:25952256,513147,134348 -k1,11395:8790372,37754294:190242 -k1,11395:9596651,37754294:190241 -k1,11395:11355170,37754294:190242 -k1,11395:12829917,37754294:190241 -k1,11395:14011719,37754294:190242 -k1,11395:16174594,37754294:190241 -k1,11395:20032231,37754294:190242 -k1,11395:20850307,37754294:190241 -k1,11395:22742519,37754294:190242 -k1,11395:25061369,37754294:190241 -k1,11395:26270696,37754294:190242 -k1,11395:29165608,37754294:190241 -k1,11395:30015142,37754294:190242 -k1,11395:31224468,37754294:190241 -k1,11396:32583029,37754294:0 -) -(1,11396:6630773,38595782:25952256,513147,134348 -k1,11395:8361175,38595782:246012 -k1,11395:12925354,38595782:246012 -k1,11395:13830658,38595782:246012 -k1,11395:16631919,38595782:246012 -k1,11395:18413440,38595782:246012 -k1,11395:20199548,38595782:246012 -k1,11395:22053159,38595782:246013 -k1,11395:22985333,38595782:246012 -k1,11395:24620053,38595782:246012 -k1,11395:25552227,38595782:246012 -k1,11395:26666591,38595782:246012 -k1,11395:29849271,38595782:246012 -k1,11395:31734338,38595782:246012 -k1,11396:32583029,38595782:0 -) -(1,11396:6630773,39437270:25952256,513147,134348 -k1,11395:9538725,39437270:228840 -k1,11395:10786649,39437270:228839 -k1,11395:12601460,39437270:228840 -k1,11395:13489592,39437270:228840 -k1,11395:14737517,39437270:228840 -k1,11395:18042616,39437270:228839 -k1,11395:19652300,39437270:228840 -k1,11395:22855164,39437270:228840 -k1,11395:25130038,39437270:228840 -k1,11395:28187410,39437270:228839 -k1,11395:31554769,39437270:228840 -k1,11396:32583029,39437270:0 -) -(1,11396:6630773,40278758:25952256,513147,126483 -k1,11395:8857729,40278758:185510 -k1,11395:9729402,40278758:185511 -k1,11395:10783264,40278758:185510 -k1,11395:12073057,40278758:185511 -k1,11395:13900899,40278758:185510 -k1,11395:15694008,40278758:185511 -k1,11395:17070963,40278758:185510 -k1,11395:18723170,40278758:185511 -k1,11395:20625068,40278758:185510 -k1,11395:21469871,40278758:185511 -k1,11395:23262979,40278758:185510 -k1,11395:25333961,40278758:185511 -k1,11395:27023522,40278758:185510 -k1,11395:28275304,40278758:185511 -k1,11395:29927510,40278758:185510 -k1,11396:32583029,40278758:0 -) -(1,11396:6630773,41120246:25952256,505283,134348 -g1,11395:7886442,41120246 -g1,11395:9775189,41120246 -g1,11395:13053299,41120246 -g1,11395:14271613,41120246 -g1,11395:17299375,41120246 -k1,11396:32583029,41120246:12529831 -g1,11396:32583029,41120246 -) -(1,11398:6630773,41961734:25952256,505283,134348 -h1,11397:6630773,41961734:983040,0,0 -k1,11397:9567050,41961734:170002 -k1,11397:10092912,41961734:170002 -k1,11397:11540211,41961734:170002 -k1,11397:12241711,41961734:170003 -k1,11397:14063876,41961734:170002 -k1,11397:15252963,41961734:170002 -k1,11397:17305814,41961734:170002 -k1,11397:18753113,41961734:170002 -k1,11397:20114560,41961734:170002 -k1,11397:21072960,41961734:170002 -k1,11397:25170535,41961734:170002 -k1,11397:26332098,41961734:170003 -k1,11397:28852221,41961734:170002 -k1,11397:29708385,41961734:170002 -k1,11397:30293201,41961734:169973 -k1,11397:32583029,41961734:0 -) -(1,11398:6630773,42803222:25952256,513147,134348 -k1,11397:8163879,42803222:248600 -k1,11397:9516761,42803222:248600 -k1,11397:10513127,42803222:248600 -k1,11397:12573142,42803222:248600 -k1,11397:13437780,42803222:248600 -k1,11397:14705465,42803222:248600 -k1,11397:18338344,42803222:248600 -k1,11397:19269828,42803222:248599 -k1,11397:21804979,42803222:248600 -k1,11397:22705007,42803222:248600 -k1,11397:23309467,42803222:248600 -k1,11397:24541107,42803222:248600 -k1,11397:25475869,42803222:248600 -k1,11397:28187967,42803222:248600 -k1,11397:29633254,42803222:248600 -k1,11397:32583029,42803222:0 -) -(1,11398:6630773,43644710:25952256,505283,134348 -k1,11397:11475653,43644710:180027 -k1,11397:12187178,43644710:180028 -k1,11397:15520142,43644710:180027 -k1,11397:17398207,43644710:180027 -k1,11397:18597320,43644710:180028 -k1,11397:20736873,43644710:180027 -k1,11397:21448397,43644710:180027 -k1,11397:24152215,43644710:180027 -k1,11397:27229590,43644710:180028 -k1,11397:28092502,43644710:180027 -k1,11397:32583029,43644710:0 -) -(1,11398:6630773,44486198:25952256,513147,134348 -k1,11397:8039687,44486198:212227 -k1,11397:9905388,44486198:212228 -k1,11397:12143333,44486198:212227 -k1,11397:14315086,44486198:212227 -k1,11397:15631596,44486198:212228 -k1,11397:16591589,44486198:212227 -k1,11397:19678880,44486198:212227 -k1,11397:21158574,44486198:212228 -k1,11397:24133144,44486198:212227 -k1,11397:26600465,44486198:212227 -k1,11397:28004138,44486198:212228 -k1,11397:30194242,44486198:212227 -k1,11397:32583029,44486198:0 -) -(1,11398:6630773,45327686:25952256,513147,134348 -g1,11397:9340686,45327686 -g1,11397:10487566,45327686 -g1,11397:12981866,45327686 -g1,11397:13863980,45327686 -k1,11398:32583029,45327686:15973090 -g1,11398:32583029,45327686 -) -] -(1,11401:32583029,45706769:0,0,0 -g1,11401:32583029,45706769 -) -) -] -(1,11401:6630773,47279633:25952256,0,0 -h1,11401:6630773,47279633:25952256,0,0 -) -] -h1,11401:4262630,4025873:0,0,0 -] -!22443 +k1,11403:3078556,49800853:-34777008 +) +] +g1,11403:6630773,4812305 +k1,11403:25712890,4812305:17886740 +g1,11403:29057847,4812305 +g1,11403:29873114,4812305 +) +) +] +[1,11403:6630773,45706769:25952256,40108032,0 +(1,11403:6630773,45706769:25952256,40108032,0 +(1,11403:6630773,45706769:0,0,0 +g1,11403:6630773,45706769 +) +[1,11403:6630773,45706769:25952256,40108032,0 +(1,11369:6630773,6254097:25952256,513147,126483 +h1,11368:6630773,6254097:983040,0,0 +k1,11368:8614266,6254097:171423 +k1,11368:9903734,6254097:171424 +k1,11368:11094242,6254097:171423 +k1,11368:14257384,6254097:171423 +k1,11368:17187217,6254097:171423 +k1,11368:17974679,6254097:171424 +k1,11368:19349343,6254097:171423 +k1,11368:22112060,6254097:171423 +k1,11368:23453957,6254097:171424 +k1,11368:25155646,6254097:171423 +k1,11368:26633202,6254097:171423 +k1,11368:27456053,6254097:171423 +k1,11368:29003733,6254097:171424 +k1,11368:30867296,6254097:171423 +k1,11369:32583029,6254097:0 +) +(1,11369:6630773,7095585:25952256,513147,134348 +k1,11368:8257991,7095585:219505 +k1,11368:10045116,7095585:219504 +k1,11368:11283706,7095585:219505 +k1,11368:13603639,7095585:219504 +k1,11368:15055221,7095585:219505 +k1,11368:17553412,7095585:219504 +h1,11368:18524000,7095585:0,0,0 +k1,11368:18743505,7095585:219505 +k1,11368:19772379,7095585:219504 +k1,11368:21490037,7095585:219505 +h1,11368:22685414,7095585:0,0,0 +k1,11368:22904918,7095585:219504 +k1,11368:24072074,7095585:219505 +k1,11368:26409046,7095585:219504 +k1,11368:27437921,7095585:219505 +k1,11368:28676510,7095585:219504 +k1,11368:29988500,7095585:219505 +k1,11368:30867296,7095585:219504 +k1,11369:32583029,7095585:0 +) +(1,11369:6630773,7937073:25952256,505283,134348 +k1,11369:32583029,7937073:24163778 +g1,11369:32583029,7937073 +) +v1,11371:6630773,9127539:0,393216,0 +(1,11387:6630773,17430480:25952256,8696157,196608 +g1,11387:6630773,17430480 +g1,11387:6630773,17430480 +g1,11387:6434165,17430480 +(1,11387:6434165,17430480:0,8696157,196608 +r1,11387:32779637,17430480:26345472,8892765,196608 +k1,11387:6434165,17430480:-26345472 +) +(1,11387:6434165,17430480:26345472,8696157,196608 +[1,11387:6630773,17430480:25952256,8499549,0 +(1,11373:6630773,9335157:25952256,404226,101187 +(1,11372:6630773,9335157:0,0,0 +g1,11372:6630773,9335157 +g1,11372:6630773,9335157 +g1,11372:6303093,9335157 +(1,11372:6303093,9335157:0,0,0 +) +g1,11372:6630773,9335157 +) +k1,11373:6630773,9335157:0 +h1,11373:12637541,9335157:0,0,0 +k1,11373:32583029,9335157:19945488 +g1,11373:32583029,9335157 +) +(1,11374:6630773,10001335:25952256,404226,101187 +h1,11374:6630773,10001335:0,0,0 +k1,11374:6630773,10001335:0 +h1,11374:11056813,10001335:0,0,0 +k1,11374:32583029,10001335:21526216 +g1,11374:32583029,10001335 +) +(1,11375:6630773,10667513:25952256,404226,101187 +h1,11375:6630773,10667513:0,0,0 +k1,11375:6630773,10667513:0 +h1,11375:11372958,10667513:0,0,0 +k1,11375:32583030,10667513:21210072 +g1,11375:32583030,10667513 +) +(1,11376:6630773,11333691:25952256,404226,107478 +h1,11376:6630773,11333691:0,0,0 +k1,11376:6630773,11333691:0 +h1,11376:11689104,11333691:0,0,0 +k1,11376:32583028,11333691:20893924 +g1,11376:32583028,11333691 +) +(1,11377:6630773,11999869:25952256,404226,107478 +h1,11377:6630773,11999869:0,0,0 +k1,11377:6630773,11999869:0 +h1,11377:11689104,11999869:0,0,0 +k1,11377:32583028,11999869:20893924 +g1,11377:32583028,11999869 +) +(1,11378:6630773,12666047:25952256,404226,107478 +h1,11378:6630773,12666047:0,0,0 +k1,11378:6630773,12666047:0 +h1,11378:12321395,12666047:0,0,0 +k1,11378:32583029,12666047:20261634 +g1,11378:32583029,12666047 +) +(1,11379:6630773,13332225:25952256,404226,107478 +h1,11379:6630773,13332225:0,0,0 +k1,11379:6630773,13332225:0 +h1,11379:11689104,13332225:0,0,0 +k1,11379:32583028,13332225:20893924 +g1,11379:32583028,13332225 +) +(1,11380:6630773,13998403:25952256,404226,107478 +h1,11380:6630773,13998403:0,0,0 +k1,11380:6630773,13998403:0 +h1,11380:12637541,13998403:0,0,0 +k1,11380:32583029,13998403:19945488 +g1,11380:32583029,13998403 +) +(1,11381:6630773,14664581:25952256,410518,107478 +h1,11381:6630773,14664581:0,0,0 +k1,11381:6630773,14664581:0 +h1,11381:11689104,14664581:0,0,0 +k1,11381:32583028,14664581:20893924 +g1,11381:32583028,14664581 +) +(1,11382:6630773,15330759:25952256,404226,101187 +h1,11382:6630773,15330759:0,0,0 +k1,11382:6630773,15330759:0 +h1,11382:12637541,15330759:0,0,0 +k1,11382:32583029,15330759:19945488 +g1,11382:32583029,15330759 +) +(1,11383:6630773,15996937:25952256,404226,101187 +h1,11383:6630773,15996937:0,0,0 +k1,11383:6630773,15996937:0 +h1,11383:12321395,15996937:0,0,0 +k1,11383:32583029,15996937:20261634 +g1,11383:32583029,15996937 +) +(1,11384:6630773,16663115:25952256,404226,101187 +h1,11384:6630773,16663115:0,0,0 +k1,11384:6630773,16663115:0 +h1,11384:12321395,16663115:0,0,0 +k1,11384:32583029,16663115:20261634 +g1,11384:32583029,16663115 +) +(1,11385:6630773,17329293:25952256,404226,101187 +h1,11385:6630773,17329293:0,0,0 +k1,11385:6630773,17329293:0 +h1,11385:12321395,17329293:0,0,0 +k1,11385:32583029,17329293:20261634 +g1,11385:32583029,17329293 +) +] +) +g1,11387:32583029,17430480 +g1,11387:6630773,17430480 +g1,11387:6630773,17430480 +g1,11387:32583029,17430480 +g1,11387:32583029,17430480 +) +h1,11387:6630773,17627088:0,0,0 +(1,11394:6630773,20958944:25952256,32768,229376 +(1,11394:6630773,20958944:0,32768,229376 +(1,11394:6630773,20958944:5505024,32768,229376 +r1,11394:12135797,20958944:5505024,262144,229376 +) +k1,11394:6630773,20958944:-5505024 +) +(1,11394:6630773,20958944:25952256,32768,0 +r1,11394:32583029,20958944:25952256,32768,0 +) +) +(1,11394:6630773,22563272:25952256,615776,161218 +(1,11394:6630773,22563272:1974731,582746,14155 +g1,11394:6630773,22563272 +g1,11394:8605504,22563272 +) +g1,11394:13807752,22563272 +g1,11394:14844270,22563272 +g1,11394:16351860,22563272 +g1,11394:20190435,22563272 +g1,11394:21248186,22563272 +k1,11394:32583029,22563272:7942962 +g1,11394:32583029,22563272 +) +(1,11397:6630773,23797976:25952256,513147,134348 +k1,11396:8502902,23797976:238316 +k1,11396:11774224,23797976:238316 +k1,11396:14841074,23797976:238317 +k1,11396:16647011,23797976:238316 +k1,11396:18319255,23797976:238316 +k1,11396:18972375,23797976:238277 +k1,11396:20402136,23797976:238316 +k1,11396:24767254,23797976:238316 +k1,11396:27530018,23797976:238317 +k1,11396:30794131,23797976:238316 +k1,11396:31563944,23797976:238316 +k1,11396:32583029,23797976:0 +) +(1,11397:6630773,24639464:25952256,513147,134348 +k1,11396:8030294,24639464:307036 +k1,11396:8996622,24639464:307036 +k1,11396:9659518,24639464:307036 +k1,11396:12869145,24639464:307037 +k1,11396:13835473,24639464:307036 +k1,11396:16861598,24639464:307036 +k1,11396:18394813,24639464:307036 +k1,11396:20833080,24639464:307036 +k1,11396:23339504,24639464:307036 +k1,11396:24742303,24639464:307037 +k1,11396:25665377,24639464:307036 +k1,11396:26991498,24639464:307036 +k1,11396:29036549,24639464:307036 +k1,11396:30002877,24639464:307036 +k1,11396:32583029,24639464:0 +) +(1,11397:6630773,25480952:25952256,505283,134348 +k1,11396:10005033,25480952:164963 +k1,11396:11803810,25480952:164964 +k1,11396:12500270,25480952:164963 +k1,11396:14660150,25480952:164964 +k1,11396:15586641,25480952:164963 +k1,11396:18654195,25480952:164964 +k1,11396:19435196,25480952:164963 +k1,11396:20803400,25480952:164963 +k1,11396:22335445,25480952:164964 +k1,11396:23031905,25480952:164963 +k1,11396:24481375,25480952:164964 +k1,11396:26253936,25480952:164963 +k1,11396:27410460,25480952:164964 +k1,11396:30932832,25480952:164963 +k1,11396:32583029,25480952:0 +) +(1,11397:6630773,26322440:25952256,513147,134348 +k1,11396:7607548,26322440:215247 +k1,11396:9472992,26322440:215247 +k1,11396:11423632,26322440:215247 +k1,11396:14401222,26322440:215247 +k1,11396:17186136,26322440:215247 +k1,11396:18592829,26322440:215248 +k1,11396:21131983,26322440:215247 +(1,11396:21339077,26322440:4912579,505283,11795 +) +k1,11396:26847763,26322440:215343 +k1,11396:29401990,26322440:215247 +k1,11396:30276529,26322440:215247 +k1,11396:32227169,26322440:215247 +k1,11396:32583029,26322440:0 +) +(1,11397:6630773,27163928:25952256,513147,134348 +k1,11396:8767050,27163928:263258 +k1,11396:11725804,27163928:263258 +k1,11396:13383013,27163928:263258 +k1,11396:15398048,27163928:263258 +k1,11396:19237606,27163928:263258 +k1,11396:21108462,27163928:263258 +k1,11396:22363280,27163928:263258 +k1,11396:25983947,27163928:263258 +k1,11396:27008733,27163928:263258 +k1,11396:30626779,27163928:263258 +k1,11397:32583029,27163928:0 +) +(1,11397:6630773,28005416:25952256,505283,126483 +k1,11396:7898736,28005416:248878 +k1,11396:11016779,28005416:248877 +k1,11396:12659608,28005416:248878 +k1,11396:15985401,28005416:248878 +(1,11396:15985401,28005416:0,414482,115847 +r1,11396:16343667,28005416:358266,530329,115847 +k1,11396:15985401,28005416:-358266 +) +(1,11396:15985401,28005416:358266,414482,115847 +k1,11396:15985401,28005416:3277 +h1,11396:16340390,28005416:0,411205,112570 +) +k1,11396:16592544,28005416:248877 +k1,11396:18032867,28005416:248878 +h1,11396:18032867,28005416:0,0,0 +k1,11396:19640960,28005416:248877 +k1,11396:24083487,28005416:248878 +k1,11396:25351450,28005416:248878 +k1,11396:29634723,28005416:248877 +k1,11396:30415098,28005416:248878 +k1,11396:32583029,28005416:0 +) +(1,11397:6630773,28846904:25952256,505283,134348 +k1,11396:12080092,28846904:191365 +k1,11396:13462902,28846904:191365 +k1,11396:14305695,28846904:191365 +k1,11396:14852920,28846904:191365 +k1,11396:16615183,28846904:191365 +k1,11396:18968581,28846904:191365 +k1,11396:20490327,28846904:191365 +k1,11396:22289290,28846904:191365 +k1,11396:23867397,28846904:191365 +k1,11396:25756800,28846904:191365 +k1,11396:28471956,28846904:191365 +k1,11396:31900144,28846904:191365 +k1,11396:32583029,28846904:0 +) +(1,11397:6630773,29688392:25952256,513147,134348 +g1,11396:9670988,29688392 +g1,11396:10521645,29688392 +g1,11396:11076734,29688392 +g1,11396:13531057,29688392 +g1,11396:14413171,29688392 +g1,11396:19522357,29688392 +g1,11396:20704626,29688392 +g1,11396:21435352,29688392 +g1,11396:24895652,29688392 +g1,11396:25856409,29688392 +k1,11397:32583029,29688392:4236252 +g1,11397:32583029,29688392 +) +(1,11399:6630773,30529880:25952256,513147,134348 +h1,11398:6630773,30529880:983040,0,0 +k1,11398:8740024,30529880:172662 +k1,11398:10016968,30529880:172662 +k1,11398:11869973,30529880:172662 +k1,11398:12701928,30529880:172663 +k1,11398:15399037,30529880:172662 +k1,11398:16257861,30529880:172662 +k1,11398:20462298,30529880:172662 +k1,11398:21654045,30529880:172662 +k1,11398:25898459,30529880:172662 +k1,11398:26754007,30529880:172663 +k1,11398:28316032,30529880:172662 +k1,11398:29104732,30529880:172662 +k1,11398:29633254,30529880:172662 +k1,11398:32583029,30529880:0 +) +(1,11399:6630773,31371368:25952256,513147,134348 +k1,11398:9814572,31371368:167832 +k1,11398:10935952,31371368:167831 +k1,11398:12196269,31371368:167832 +k1,11398:13383185,31371368:167831 +k1,11398:16846823,31371368:167832 +k1,11398:17673946,31371368:167831 +k1,11398:20791553,31371368:167832 +k1,11398:23249212,31371368:167831 +k1,11398:24068472,31371368:167832 +k1,11398:27277829,31371368:167831 +k1,11398:30208004,31371368:167832 +k1,11398:32583029,31371368:0 +) +(1,11399:6630773,32212856:25952256,513147,126483 +k1,11398:7478506,32212856:188441 +k1,11398:8764675,32212856:188441 +k1,11398:10516151,32212856:188442 +k1,11398:11607023,32212856:188441 +k1,11398:15536914,32212856:188441 +k1,11398:16829637,32212856:188441 +k1,11398:19279726,32212856:188442 +k1,11398:20127459,32212856:188441 +k1,11398:22987147,32212856:188441 +k1,11398:26016574,32212856:188441 +k1,11398:28389331,32212856:188442 +k1,11398:29649941,32212856:188441 +k1,11398:30609085,32212856:188441 +k1,11399:32583029,32212856:0 +) +(1,11399:6630773,33054344:25952256,513147,126483 +k1,11398:8781463,33054344:170192 +k1,11398:9610947,33054344:170192 +k1,11398:10626553,33054344:170192 +k1,11398:14740702,33054344:170192 +k1,11398:16247828,33054344:170192 +k1,11398:17165786,33054344:170192 +k1,11398:19717556,33054344:170192 +k1,11398:20649276,33054344:170192 +k1,11398:21175328,33054344:170192 +k1,11398:23959751,33054344:170192 +k1,11398:24745981,33054344:170192 +k1,11398:29433570,33054344:170192 +k1,11398:31391584,33054344:170192 +k1,11398:32583029,33054344:0 +) +(1,11399:6630773,33895832:25952256,513147,126483 +k1,11398:7210766,33895832:224133 +k1,11398:9123106,33895832:224133 +k1,11398:9963277,33895832:224133 +k1,11398:11786489,33895832:224134 +k1,11398:12626660,33895832:224133 +k1,11398:15516798,33895832:224133 +k1,11398:16392359,33895832:224133 +k1,11398:17635577,33895832:224133 +k1,11398:21803667,33895832:224133 +k1,11398:23807102,33895832:224133 +k1,11398:24933667,33895832:224134 +k1,11398:28899250,33895832:224133 +k1,11398:30071034,33895832:224133 +k1,11398:31314252,33895832:224133 +k1,11398:32583029,33895832:0 +) +(1,11399:6630773,34737320:25952256,513147,134348 +k1,11398:8030669,34737320:208451 +k1,11398:10108208,34737320:208452 +k1,11398:10975951,34737320:208451 +k1,11398:11540262,34737320:208451 +k1,11398:13402186,34737320:208451 +k1,11398:14714920,34737320:208452 +k1,11398:17185018,34737320:208451 +k1,11398:18052761,34737320:208451 +k1,11398:20444217,34737320:208452 +k1,11398:22207182,34737320:208451 +k1,11398:25427012,34737320:208451 +k1,11398:28121244,34737320:208451 +k1,11398:28988988,34737320:208452 +k1,11398:31314252,34737320:208451 +k1,11398:32583029,34737320:0 +) +(1,11399:6630773,35578808:25952256,513147,134348 +k1,11398:7466919,35578808:176854 +k1,11398:10836686,35578808:176853 +k1,11398:13130353,35578808:176854 +k1,11398:15320472,35578808:176853 +k1,11398:16156618,35578808:176854 +k1,11398:18171756,35578808:176853 +k1,11398:19994219,35578808:176854 +k1,11398:21981177,35578808:176854 +k1,11398:23228233,35578808:176853 +k1,11398:25215191,35578808:176854 +k1,11398:26503535,35578808:176853 +k1,11398:27158146,35578808:176854 +k1,11398:28203351,35578808:176853 +k1,11398:29371765,35578808:176854 +k1,11398:32583029,35578808:0 +) +(1,11399:6630773,36420296:25952256,505283,134348 +k1,11398:7461517,36420296:214706 +k1,11398:8695308,36420296:214706 +k1,11398:12741249,36420296:214706 +k1,11398:15591158,36420296:214706 +k1,11398:17815198,36420296:214706 +k1,11398:19221349,36420296:214706 +k1,11398:20990568,36420296:214705 +k1,11398:24216653,36420296:214706 +k1,11398:25299711,36420296:214706 +k1,11398:26851351,36420296:214706 +k1,11398:28614673,36420296:214706 +k1,11398:29480807,36420296:214706 +k1,11398:30787998,36420296:214706 +k1,11399:32583029,36420296:0 +) +(1,11399:6630773,37261784:25952256,513147,134348 +k1,11398:8151460,37261784:218487 +k1,11398:12281791,37261784:218487 +k1,11398:15321602,37261784:218486 +k1,11398:17094603,37261784:218487 +k1,11398:20150799,37261784:218487 +k1,11398:21020714,37261784:218487 +k1,11398:22258285,37261784:218486 +$1,11398:22258285,37261784 +$1,11398:22760946,37261784 +k1,11398:22979433,37261784:218487 +k1,11398:26542878,37261784:218487 +k1,11398:27420657,37261784:218487 +k1,11398:28658228,37261784:218486 +k1,11398:30154012,37261784:218487 +k1,11398:31563944,37261784:218487 +k1,11398:32583029,37261784:0 +) +(1,11399:6630773,38103272:25952256,505283,138281 +k1,11398:8850881,38103272:210774 +k1,11398:9713082,38103272:210773 +k1,11398:10942941,38103272:210774 +$1,11398:10942941,38103272 +$1,11398:11494754,38103272 +k1,11398:11705528,38103272:210774 +k1,11398:15434929,38103272:210773 +k1,11398:16842390,38103272:210774 +k1,11398:21124916,38103272:210774 +k1,11398:23104507,38103272:210774 +k1,11398:24063046,38103272:210773 +k1,11398:28083428,38103272:210774 +k1,11398:29103572,38103272:210774 +k1,11398:30333430,38103272:210773 +k1,11398:31821501,38103272:210774 +k1,11398:32583029,38103272:0 +) +(1,11399:6630773,38944760:25952256,505283,134348 +g1,11398:8848511,38944760 +g1,11398:11257614,38944760 +g1,11398:13462245,38944760 +g1,11398:14423002,38944760 +k1,11399:32583029,38944760:16487548 +g1,11399:32583029,38944760 +) +(1,11401:6630773,39786248:25952256,513147,134348 +h1,11400:6630773,39786248:983040,0,0 +k1,11400:9074064,39786248:263564 +k1,11400:12240218,39786248:263564 +k1,11400:13163074,39786248:263564 +k1,11400:16145727,39786248:263564 +k1,11400:18421246,39786248:263564 +k1,11400:19429954,39786248:263564 +k1,11400:20344945,39786248:263563 +k1,11400:22697141,39786248:263564 +k1,11400:24568303,39786248:263564 +k1,11400:25593395,39786248:263564 +k1,11400:29211747,39786248:263564 +k1,11400:31817568,39786248:263564 +k1,11401:32583029,39786248:0 +) +(1,11401:6630773,40627736:25952256,513147,134348 +k1,11400:9230133,40627736:282662 +k1,11400:10128832,40627736:282661 +k1,11400:11979771,40627736:282662 +k1,11400:13546938,40627736:282661 +k1,11400:14821160,40627736:282662 +k1,11400:17076456,40627736:282662 +k1,11400:21026512,40627736:282661 +k1,11400:21937009,40627736:282662 +k1,11400:23921641,40627736:282662 +k1,11400:26332911,40627736:282661 +k1,11400:27634658,40627736:282662 +k1,11400:30621990,40627736:282661 +k1,11400:31563944,40627736:282662 +k1,11400:32583029,40627736:0 +) +(1,11401:6630773,41469224:25952256,513147,134348 +k1,11400:9502506,41469224:241773 +k1,11400:14062446,41469224:241773 +k1,11400:14963512,41469224:241774 +k1,11400:17760534,41469224:241773 +k1,11400:19537816,41469224:241773 +k1,11400:21319685,41469224:241773 +k1,11400:23169056,41469224:241773 +k1,11400:24096991,41469224:241773 +k1,11400:25727473,41469224:241774 +k1,11400:26655408,41469224:241773 +k1,11400:27765533,41469224:241773 +k1,11400:30943974,41469224:241773 +k1,11400:32583029,41469224:0 +) +(1,11401:6630773,42310712:25952256,513147,134348 +k1,11400:10236564,42310712:290980 +k1,11400:11546629,42310712:290980 +k1,11400:13423579,42310712:290979 +k1,11400:14373851,42310712:290980 +k1,11400:15683916,42310712:290980 +k1,11400:19051156,42310712:290980 +k1,11400:20722980,42310712:290980 +k1,11400:23987983,42310712:290979 +k1,11400:26324997,42310712:290980 +k1,11400:29444510,42310712:290980 +k1,11400:32583029,42310712:0 +) +(1,11401:6630773,43152200:25952256,513147,126483 +k1,11400:9705285,43152200:217798 +k1,11400:10609245,43152200:217798 +k1,11400:11695395,43152200:217798 +k1,11400:13017474,43152200:217797 +k1,11400:14877604,43152200:217798 +k1,11400:16703000,43152200:217798 +k1,11400:18112243,43152200:217798 +k1,11400:19796737,43152200:217798 +k1,11400:21730923,43152200:217798 +k1,11400:22608013,43152200:217798 +k1,11400:24433409,43152200:217798 +k1,11400:26536677,43152200:217797 +k1,11400:28258526,43152200:217798 +k1,11400:29542595,43152200:217798 +k1,11400:31227089,43152200:217798 +k1,11401:32583029,43152200:0 +) +(1,11401:6630773,43993688:25952256,505283,134348 +g1,11400:9186021,43993688 +g1,11400:11074768,43993688 +g1,11400:14352878,43993688 +g1,11400:15571192,43993688 +g1,11400:18598954,43993688 +k1,11401:32583029,43993688:11230252 +g1,11401:32583029,43993688 +) +(1,11403:6630773,44835176:25952256,505283,134348 +h1,11402:6630773,44835176:983040,0,0 +k1,11402:9567050,44835176:170002 +k1,11402:10092912,44835176:170002 +k1,11402:11540211,44835176:170002 +k1,11402:12241711,44835176:170003 +k1,11402:14063876,44835176:170002 +k1,11402:15252963,44835176:170002 +k1,11402:17305814,44835176:170002 +k1,11402:18753113,44835176:170002 +k1,11402:20114560,44835176:170002 +k1,11402:21072960,44835176:170002 +k1,11402:25170535,44835176:170002 +k1,11402:26332098,44835176:170003 +k1,11402:28852221,44835176:170002 +k1,11402:29708385,44835176:170002 +k1,11402:30293201,44835176:169973 +k1,11402:32583029,44835176:0 +) +(1,11403:6630773,45676664:25952256,513147,134348 +k1,11402:8163879,45676664:248600 +k1,11402:9516761,45676664:248600 +k1,11402:10513127,45676664:248600 +k1,11402:12573142,45676664:248600 +k1,11402:13437780,45676664:248600 +k1,11402:14705465,45676664:248600 +k1,11402:18338344,45676664:248600 +k1,11402:19269828,45676664:248599 +k1,11402:21804979,45676664:248600 +k1,11402:22705007,45676664:248600 +k1,11402:23309467,45676664:248600 +k1,11402:24541107,45676664:248600 +k1,11402:25475869,45676664:248600 +k1,11402:28187967,45676664:248600 +k1,11402:29633254,45676664:248600 +k1,11402:32583029,45676664:0 +) +] +(1,11403:32583029,45706769:0,0,0 +g1,11403:32583029,45706769 +) +) +] +(1,11403:6630773,47279633:25952256,0,0 +h1,11403:6630773,47279633:25952256,0,0 +) +] +h1,11403:4262630,4025873:0,0,0 +] +!22619 }213 -Input:1431:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1432:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1433:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1434:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1435:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1436:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1437:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1438:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1439:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1440:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1441:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1442:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1443:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1444:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1216 +Input:1427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 {214 -[1,11421:4262630,47279633:28320399,43253760,0 -(1,11421:4262630,4025873:0,0,0 -[1,11421:-473657,4025873:25952256,0,0 -(1,11421:-473657,-710414:25952256,0,0 -h1,11421:-473657,-710414:0,0,0 -(1,11421:-473657,-710414:0,0,0 -(1,11421:-473657,-710414:0,0,0 -g1,11421:-473657,-710414 -(1,11421:-473657,-710414:65781,0,65781 -g1,11421:-407876,-710414 -[1,11421:-407876,-644633:0,0,0 +[1,11423:4262630,47279633:28320399,43253760,0 +(1,11423:4262630,4025873:0,0,0 +[1,11423:-473657,4025873:25952256,0,0 +(1,11423:-473657,-710414:25952256,0,0 +h1,11423:-473657,-710414:0,0,0 +(1,11423:-473657,-710414:0,0,0 +(1,11423:-473657,-710414:0,0,0 +g1,11423:-473657,-710414 +(1,11423:-473657,-710414:65781,0,65781 +g1,11423:-407876,-710414 +[1,11423:-407876,-644633:0,0,0 ] ) -k1,11421:-473657,-710414:-65781 +k1,11423:-473657,-710414:-65781 ) ) -k1,11421:25478599,-710414:25952256 -g1,11421:25478599,-710414 +k1,11423:25478599,-710414:25952256 +g1,11423:25478599,-710414 ) ] ) -[1,11421:6630773,47279633:25952256,43253760,0 -[1,11421:6630773,4812305:25952256,786432,0 -(1,11421:6630773,4812305:25952256,513147,134348 -(1,11421:6630773,4812305:25952256,513147,134348 -g1,11421:3078558,4812305 -[1,11421:3078558,4812305:0,0,0 -(1,11421:3078558,2439708:0,1703936,0 -k1,11421:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11421:2537886,2439708:1179648,16384,0 +[1,11423:6630773,47279633:25952256,43253760,0 +[1,11423:6630773,4812305:25952256,786432,0 +(1,11423:6630773,4812305:25952256,513147,134348 +(1,11423:6630773,4812305:25952256,513147,134348 +g1,11423:3078558,4812305 +[1,11423:3078558,4812305:0,0,0 +(1,11423:3078558,2439708:0,1703936,0 +k1,11423:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11423:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11421:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11423:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11421:3078558,4812305:0,0,0 -(1,11421:3078558,2439708:0,1703936,0 -g1,11421:29030814,2439708 -g1,11421:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11421:36151628,1915420:16384,1179648,0 +[1,11423:3078558,4812305:0,0,0 +(1,11423:3078558,2439708:0,1703936,0 +g1,11423:29030814,2439708 +g1,11423:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11423:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11421:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11423:37855564,2439708:1179648,16384,0 ) ) -k1,11421:3078556,2439708:-34777008 +k1,11423:3078556,2439708:-34777008 ) ] -[1,11421:3078558,4812305:0,0,0 -(1,11421:3078558,49800853:0,16384,2228224 -k1,11421:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11421:2537886,49800853:1179648,16384,0 +[1,11423:3078558,4812305:0,0,0 +(1,11423:3078558,49800853:0,16384,2228224 +k1,11423:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11423:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11421:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,11421:3078558,4812305:0,0,0 -(1,11421:3078558,49800853:0,16384,2228224 -g1,11421:29030814,49800853 -g1,11421:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11421:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11421:37855564,49800853:1179648,16384,0 -) -) -k1,11421:3078556,49800853:-34777008 -) -] -g1,11421:6630773,4812305 -g1,11421:6630773,4812305 -g1,11421:10697281,4812305 -g1,11421:11496164,4812305 -g1,11421:12681054,4812305 -g1,11421:15925086,4812305 -g1,11421:16740353,4812305 -g1,11421:19649496,4812305 -k1,11421:31387652,4812305:11738156 -) -) -] -[1,11421:6630773,45706769:25952256,40108032,0 -(1,11421:6630773,45706769:25952256,40108032,0 -(1,11421:6630773,45706769:0,0,0 -g1,11421:6630773,45706769 -) -[1,11421:6630773,45706769:25952256,40108032,0 -(1,11401:6630773,6254097:25952256,513147,126483 -h1,11399:6630773,6254097:983040,0,0 -k1,11399:9353139,6254097:249037 -k1,11399:10068136,6254097:249036 -k1,11399:11185525,6254097:249037 -k1,11399:12249830,6254097:249037 -k1,11399:13565138,6254097:249037 -k1,11399:16711521,6254097:249036 -k1,11399:18157901,6254097:249037 -k1,11399:20045993,6254097:249037 -k1,11399:21234815,6254097:249036 -k1,11399:23749432,6254097:249037 -k1,11399:26867635,6254097:249037 -k1,11399:28453606,6254097:249037 -k1,11399:29450408,6254097:249036 -k1,11399:31386342,6254097:249037 -k1,11399:32583029,6254097:0 -) -(1,11401:6630773,7095585:25952256,513147,134348 -k1,11399:10389918,7095585:218890 -k1,11399:11268101,7095585:218891 -k1,11399:11842851,7095585:218890 -k1,11399:14936805,7095585:218890 -k1,11399:17544483,7095585:218891 -k1,11399:19157324,7095585:218890 -k1,11399:21956366,7095585:218890 -k1,11399:25003790,7095585:218891 -k1,11399:26326962,7095585:218890 -k1,11399:27293618,7095585:218890 -k1,11399:31322117,7095585:218891 -k1,11399:32227169,7095585:218890 -k1,11399:32583029,7095585:0 -) -(1,11401:6630773,7937073:25952256,513147,134348 -k1,11399:8122506,7937073:141691 -k1,11399:8923490,7937073:141692 -k1,11400:8923490,7937073:0 -k1,11400:13045838,7937073:141691 -k1,11400:14574621,7937073:147284 -$1,11400:14574621,7937073 -$1,11400:15249642,7937073 -k1,11400:15396927,7937073:147285 -k1,11400:17129527,7937073:147284 -$1,11400:17129527,7937073 -$1,11400:17804548,7937073 -k1,11400:17951833,7937073:147285 -k1,11400:20577689,7937073:147284 -$1,11400:20577689,7937073 -$1,11400:21252710,7937073 -k1,11400:21399995,7937073:147285 -k1,11400:24394163,7937073:147284 -$1,11400:24394163,7937073 -$1,11400:25069184,7937073 -k1,11400:25216469,7937073:147285 -k1,11400:28371856,7937073:147284 -$1,11400:28371856,7937073 -$1,11400:29046877,7937073 -k1,11400:29194162,7937073:147285 -k1,11400:32583029,7937073:0 -) -(1,11401:6630773,8778561:25952256,505283,134348 -$1,11400:7305794,8778561 -g1,11400:7512888,8778561 -g1,11400:9786332,8778561 -$1,11400:9786332,8778561 -$1,11400:10461353,8778561 -g1,11400:10668447,8778561 -g1,11400:12869146,8778561 -$1,11400:12869146,8778561 -$1,11400:13544167,8778561 -g1,11400:13751261,8778561 -g1,11400:16821623,8778561 -k1,11401:32583029,8778561:13205502 -g1,11401:32583029,8778561 -) -(1,11402:6630773,10869821:25952256,534184,12975 -(1,11402:6630773,10869821:2450326,534184,12975 -g1,11402:6630773,10869821 -g1,11402:9081099,10869821 -) -k1,11402:32583029,10869821:21847474 -g1,11402:32583029,10869821 -) -(1,11404:6630773,12104525:25952256,505283,126483 -k1,11403:7970822,12104525:143362 -k1,11403:9503546,12104525:143361 -k1,11403:10298336,12104525:143362 -k1,11403:11189463,12104525:143361 -k1,11403:13635105,12104525:143362 -k1,11403:15400482,12104525:143361 -k1,11403:16291610,12104525:143362 -k1,11403:19218940,12104525:143361 -k1,11403:20048464,12104525:143362 -k1,11403:20547685,12104525:143361 -(1,11403:20547685,12104525:0,459977,115847 -r1,11403:24071357,12104525:3523672,575824,115847 -k1,11403:20547685,12104525:-3523672 -) -(1,11403:20547685,12104525:3523672,459977,115847 -k1,11403:20547685,12104525:3277 -h1,11403:24068080,12104525:0,411205,112570 -) -k1,11403:24214719,12104525:143362 -k1,11403:25040965,12104525:143361 -(1,11403:25040965,12104525:0,452978,115847 -r1,11403:27157790,12104525:2116825,568825,115847 -k1,11403:25040965,12104525:-2116825 -) -(1,11403:25040965,12104525:2116825,452978,115847 -k1,11403:25040965,12104525:3277 -h1,11403:27154513,12104525:0,411205,112570 -) -k1,11403:27474822,12104525:143362 -k1,11403:29012134,12104525:143361 -k1,11403:30544859,12104525:143362 -k1,11403:32583029,12104525:0 -) -(1,11404:6630773,12946013:25952256,513147,134348 -k1,11403:7545202,12946013:189601 -k1,11403:9019308,12946013:189600 -k1,11403:10660531,12946013:189601 -k1,11403:12054028,12946013:189601 -k1,11403:15615455,12946013:189600 -k1,11403:16160916,12946013:189601 -k1,11403:18223536,12946013:189601 -k1,11403:22154587,12946013:189601 -k1,11403:24241454,12946013:189600 -k1,11403:25622500,12946013:189601 -k1,11403:26831186,12946013:189601 -k1,11403:29733977,12946013:189600 -k1,11403:30915138,12946013:189601 -k1,11404:32583029,12946013:0 -) -(1,11404:6630773,13787501:25952256,513147,134348 -k1,11403:8171575,13787501:233359 -k1,11403:10415578,13787501:233358 -k1,11403:13535143,13787501:233359 -k1,11403:14384539,13787501:233358 -k1,11403:15902404,13787501:233359 -k1,11403:18008781,13787501:233358 -k1,11403:20139407,13787501:233359 -k1,11403:21000600,13787501:233358 -k1,11403:22935929,13787501:233359 -k1,11403:25297896,13787501:233358 -k1,11403:26147293,13787501:233359 -k1,11403:27769359,13787501:233358 -k1,11403:29570339,13787501:233359 -k1,11403:32583029,13787501:0 -) -(1,11404:6630773,14628989:25952256,505283,126483 -k1,11403:8377977,14628989:207108 -k1,11403:10481698,14628989:207109 -k1,11403:11374968,14628989:207108 -k1,11403:14672099,14628989:207108 -k1,11403:15495245,14628989:207108 -k1,11403:18119977,14628989:207109 -h1,11403:18518436,14628989:0,0,0 -k1,11403:18899214,14628989:207108 -k1,11403:20303009,14628989:207108 -k1,11403:23351759,14628989:207109 -k1,11403:24210295,14628989:207108 -k1,11403:25165169,14628989:207108 -k1,11403:27674557,14628989:207108 -k1,11403:28985948,14628989:207109 -k1,11403:29940822,14628989:207108 -(1,11403:29940822,14628989:0,452978,115847 -r1,11403:32409359,14628989:2468537,568825,115847 -k1,11403:29940822,14628989:-2468537 -) -(1,11403:29940822,14628989:2468537,452978,115847 -k1,11403:29940822,14628989:3277 -h1,11403:32406082,14628989:0,411205,112570 -) -k1,11404:32583029,14628989:0 -) -(1,11404:6630773,15470477:25952256,505283,115847 -(1,11403:6630773,15470477:0,459977,115847 -r1,11403:8747598,15470477:2116825,575824,115847 -k1,11403:6630773,15470477:-2116825 -) -(1,11403:6630773,15470477:2116825,459977,115847 -k1,11403:6630773,15470477:3277 -h1,11403:8744321,15470477:0,411205,112570 -) -g1,11403:9120497,15470477 -(1,11403:9120497,15470477:0,452978,115847 -r1,11403:12292457,15470477:3171960,568825,115847 -k1,11403:9120497,15470477:-3171960 -) -(1,11403:9120497,15470477:3171960,452978,115847 -k1,11403:9120497,15470477:3277 -h1,11403:12289180,15470477:0,411205,112570 -) -g1,11403:12665356,15470477 -g1,11403:14056030,15470477 -g1,11403:15680667,15470477 -g1,11403:16562781,15470477 -g1,11403:18142854,15470477 -g1,11403:20380253,15470477 -g1,11403:21265644,15470477 -(1,11403:21265644,15470477:0,414482,115847 -r1,11403:23734181,15470477:2468537,530329,115847 -k1,11403:21265644,15470477:-2468537 -) -(1,11403:21265644,15470477:2468537,414482,115847 -k1,11403:21265644,15470477:3277 -h1,11403:23730904,15470477:0,411205,112570 -) -k1,11404:32583029,15470477:8675178 -g1,11404:32583029,15470477 -) -(1,11405:6630773,17561737:25952256,555811,147783 -(1,11405:6630773,17561737:2450326,534184,12975 -g1,11405:6630773,17561737 -g1,11405:9081099,17561737 -) -k1,11405:32583030,17561737:20371800 -g1,11405:32583030,17561737 -) -(1,11408:6630773,18796441:25952256,505283,134348 -k1,11407:8672782,18796441:258774 -k1,11407:9799907,18796441:258773 -k1,11407:12147313,18796441:258774 -k1,11407:12761946,18796441:258773 -k1,11407:14471687,18796441:258774 -k1,11407:15598812,18796441:258773 -k1,11407:17387852,18796441:258774 -k1,11407:18298054,18796441:258774 -k1,11407:19953399,18796441:258773 -k1,11407:21601536,18796441:258774 -k1,11407:24701950,18796441:258773 -k1,11407:25612152,18796441:258774 -k1,11407:29045489,18796441:258773 -k1,11407:30194242,18796441:258774 -k1,11407:32583029,18796441:0 -) -(1,11408:6630773,19637929:25952256,505283,126483 -k1,11407:10483143,19637929:175800 -k1,11407:12204283,19637929:175801 -k1,11407:13987681,19637929:175800 -k1,11407:15295944,19637929:175801 -k1,11407:16946959,19637929:175800 -k1,11407:17893462,19637929:175800 -$1,11407:17893462,19637929 -$1,11407:18396123,19637929 -k1,11407:18571924,19637929:175801 -k1,11407:22266352,19637929:175800 -k1,11407:24327624,19637929:175801 -k1,11407:25034921,19637929:175800 -k1,11407:28709689,19637929:175801 -k1,11407:29656192,19637929:175800 -k1,11407:32583029,19637929:0 -) -(1,11408:6630773,20479417:25952256,513147,134348 -k1,11407:7964844,20479417:142626 -k1,11407:8463330,20479417:142626 -k1,11407:11117297,20479417:142627 -k1,11407:14621920,20479417:142626 -k1,11407:17580628,20479417:142626 -k1,11407:20308649,20479417:142626 -k1,11407:21102703,20479417:142626 -k1,11407:21877097,20479417:142627 -k1,11407:23216410,20479417:142626 -k1,11407:25973267,20479417:142626 -k1,11407:26925263,20479417:142626 -k1,11407:27423749,20479417:142626 -k1,11407:28468094,20479417:142570 -k1,11407:29888018,20479417:142627 -k1,11407:30863607,20479417:142626 -k1,11407:32227169,20479417:142626 -k1,11407:32583029,20479417:0 -) -(1,11408:6630773,21320905:25952256,505283,138281 -k1,11407:8649067,21320905:156416 -k1,11407:9937944,21320905:156415 -k1,11407:10842126,21320905:156416 -k1,11407:14663314,21320905:156415 -k1,11407:15581258,21320905:156416 -$1,11407:15581258,21320905 -$1,11407:16083919,21320905 -k1,11407:16240334,21320905:156415 -k1,11407:17588195,21320905:156416 -$1,11407:17588195,21320905 -$1,11407:18140008,21320905 -k1,11407:18296423,21320905:156415 -k1,11407:21801073,21320905:156416 -k1,11407:23647006,21320905:156415 -k1,11407:24419460,21320905:156416 -k1,11407:24931735,21320905:156415 -k1,11407:25989883,21320905:156373 -k1,11407:27597265,21320905:156415 -k1,11407:29408465,21320905:156416 -k1,11407:32583029,21320905:0 -) -(1,11408:6630773,22162393:25952256,505283,138281 -k1,11407:8425758,22162393:264719 -k1,11407:9341904,22162393:264718 -k1,11407:10354389,22162393:264719 -k1,11407:13204502,22162393:264718 -$1,11407:13204502,22162393 -$1,11407:13707163,22162393 -k1,11407:14145552,22162393:264719 -$1,11407:14145552,22162393 -$1,11407:14697365,22162393 -k1,11407:14962083,22162393:264718 -k1,11407:16418247,22162393:264719 -$1,11407:16418247,22162393 -$1,11407:16843576,22162393 -k1,11407:17281964,22162393:264718 -k1,11407:19242099,22162393:264719 -k1,11407:22681381,22162393:264718 -k1,11407:23937660,22162393:264719 -k1,11407:25268649,22162393:264718 -k1,11407:27755039,22162393:264719 -k1,11407:28671185,22162393:264718 -k1,11407:32583029,22162393:0 -) -(1,11408:6630773,23003881:25952256,505283,134348 -k1,11407:8202679,23003881:191718 -k1,11407:9385957,23003881:191718 -k1,11407:13047151,23003881:191718 -k1,11407:14385094,23003881:191718 -k1,11407:16366600,23003881:191718 -k1,11407:18000765,23003881:191718 -k1,11407:20235239,23003881:191717 -k1,11407:21595464,23003881:191718 -k1,11407:23346939,23003881:191718 -k1,11407:24221542,23003881:191718 -k1,11407:25879956,23003881:191718 -k1,11407:28634787,23003881:191718 -k1,11407:30697558,23003881:191718 -k1,11407:32583029,23003881:0 -) -(1,11408:6630773,23845369:25952256,513147,126483 -k1,11407:8018443,23845369:190327 -k1,11407:8979473,23845369:190327 -k1,11407:12396794,23845369:190328 -k1,11407:15932079,23845369:190327 -k1,11407:16931776,23845369:190327 -k1,11407:19007574,23845369:190327 -k1,11407:19849330,23845369:190328 -k1,11407:23081183,23845369:190327 -k1,11407:24290595,23845369:190327 -k1,11407:26491567,23845369:190327 -k1,11407:27341187,23845369:190328 -k1,11407:30373155,23845369:190327 -k1,11407:32583029,23845369:0 -) -(1,11408:6630773,24686857:25952256,426639,7863 -k1,11408:32583028,24686857:22690528 -g1,11408:32583028,24686857 -) -(1,11409:6630773,26778117:25952256,555811,12975 -(1,11409:6630773,26778117:2450326,534184,12975 -g1,11409:6630773,26778117 -g1,11409:9081099,26778117 -) -k1,11409:32583029,26778117:19376242 -g1,11409:32583029,26778117 -) -(1,11413:6630773,28012821:25952256,513147,134348 -k1,11412:10563195,28012821:319422 -k1,11412:11874177,28012821:319422 -k1,11412:14748849,28012821:319423 -k1,11412:16352777,28012821:319422 -k1,11412:19341480,28012821:319422 -k1,11412:20679987,28012821:319422 -k1,11412:23718498,28012821:319422 -k1,11412:28702774,28012821:319423 -k1,11412:29681488,28012821:319422 -k1,11412:31019995,28012821:319422 -k1,11412:32583029,28012821:0 -) -(1,11413:6630773,28854309:25952256,513147,126483 -k1,11412:7861954,28854309:283530 -k1,11412:10980572,28854309:283531 -(1,11412:10980572,28854309:0,452978,122846 -r1,11412:15207668,28854309:4227096,575824,122846 -k1,11412:10980572,28854309:-4227096 -) -(1,11412:10980572,28854309:4227096,452978,122846 -k1,11412:10980572,28854309:3277 -h1,11412:15204391,28854309:0,411205,112570 -) -k1,11412:15664868,28854309:283530 -k1,11412:17555997,28854309:283531 -k1,11412:18195387,28854309:283530 -k1,11412:20167125,28854309:283531 -k1,11412:21133540,28854309:283530 -k1,11412:23728526,28854309:283531 -k1,11412:24959707,28854309:283530 -k1,11412:26694860,28854309:283531 -k1,11412:30893511,28854309:283530 -k1,11413:32583029,28854309:0 -) -(1,11413:6630773,29695797:25952256,505283,134348 -(1,11412:6630773,29695797:0,452978,122846 -r1,11412:10506157,29695797:3875384,575824,122846 -k1,11412:6630773,29695797:-3875384 -) -(1,11412:6630773,29695797:3875384,452978,122846 -k1,11412:6630773,29695797:3277 -h1,11412:10502880,29695797:0,411205,112570 -) -k1,11412:10871894,29695797:192067 -k1,11412:12980233,29695797:192066 -k1,11412:14340807,29695797:192067 -k1,11412:17554083,29695797:192066 -k1,11412:20381353,29695797:192067 -k1,11412:24818841,29695797:192066 -k1,11412:26727951,29695797:192067 -k1,11412:30427504,29695797:192066 -k1,11412:31821501,29695797:192067 -k1,11412:32583029,29695797:0 -) -(1,11413:6630773,30537285:25952256,513147,134348 -k1,11412:9078488,30537285:182135 -k1,11412:10069993,30537285:182135 -k1,11412:13279237,30537285:182136 -k1,11412:14533541,30537285:182135 -k1,11412:16317376,30537285:182135 -k1,11412:19166171,30537285:182135 -k1,11412:21613887,30537285:182136 -k1,11412:22447450,30537285:182135 -k1,11412:23648670,30537285:182135 -k1,11412:26291027,30537285:182135 -k1,11412:29500271,30537285:182136 -k1,11412:31157621,30537285:182135 -k1,11412:32583029,30537285:0 -) -(1,11413:6630773,31378773:25952256,513147,134348 -k1,11412:7175254,31378773:188621 -k1,11412:10371322,31378773:188621 -k1,11412:11091440,31378773:188621 -k1,11412:12793286,31378773:188620 -k1,11412:13633335,31378773:188621 -k1,11412:15019299,31378773:188621 -k1,11412:15563780,31378773:188621 -k1,11412:18702176,31378773:188621 -k1,11412:23555650,31378773:188621 -k1,11412:24403563,31378773:188621 -k1,11412:25981547,31378773:188621 -k1,11412:26821595,31378773:188620 -k1,11412:27366076,31378773:188621 -k1,11412:29005664,31378773:188621 -k1,11412:30062637,31378773:188621 -k1,11412:31298523,31378773:188621 -k1,11412:32583029,31378773:0 -) -(1,11413:6630773,32220261:25952256,513147,126483 -k1,11412:7197834,32220261:211201 -k1,11412:8692229,32220261:211200 -k1,11412:10560836,32220261:211201 -k1,11412:11873041,32220261:211200 -k1,11412:13594192,32220261:211201 -k1,11412:15944487,32220261:211200 -k1,11412:17352375,32220261:211201 -k1,11412:19301590,32220261:211200 -k1,11412:21170197,32220261:211201 -k1,11412:23719722,32220261:211200 -k1,11412:24950008,32220261:211201 -k1,11412:26372313,32220261:211200 -k1,11412:27868020,32220261:211201 -k1,11412:29530842,32220261:211200 -k1,11412:31025238,32220261:211201 -k1,11412:32583029,32220261:0 -) -(1,11413:6630773,33061749:25952256,513147,126483 -k1,11412:8832608,33061749:236410 -k1,11412:9600515,33061749:236410 -k1,11412:12139205,33061749:236410 -k1,11412:13184986,33061749:236411 -k1,11412:14493565,33061749:236410 -k1,11412:15389267,33061749:236410 -k1,11412:16644762,33061749:236410 -k1,11412:18769264,33061749:236410 -k1,11412:21340066,33061749:236410 -k1,11412:23982303,33061749:236410 -k1,11412:24834751,33061749:236410 -k1,11412:26090247,33061749:236411 -k1,11412:27777624,33061749:236410 -k1,11412:28696919,33061749:236410 -k1,11412:30884991,33061749:236410 -k1,11412:32583029,33061749:0 -) -(1,11413:6630773,33903237:25952256,505283,134348 -k1,11412:7211790,33903237:225157 -k1,11412:8714244,33903237:225157 -k1,11412:9470898,33903237:225157 -k1,11412:12046176,33903237:225157 -k1,11412:13290418,33903237:225157 -k1,11412:15403667,33903237:225157 -k1,11412:16761286,33903237:225157 -k1,11412:17734210,33903237:225158 -k1,11412:21112304,33903237:225157 -k1,11412:21953499,33903237:225157 -k1,11412:23197741,33903237:225157 -k1,11412:25162224,33903237:225157 -k1,11412:26767569,33903237:225157 -k1,11412:28496777,33903237:225157 -k1,11412:30687359,33903237:225157 -k1,11412:31563944,33903237:225157 -k1,11412:32583029,33903237:0 -) -(1,11413:6630773,34744725:25952256,505283,134348 -k1,11412:8860610,34744725:204119 -k1,11412:11197927,34744725:204120 -k1,11412:12444068,34744725:204119 -k1,11412:15483275,34744725:204120 -k1,11412:16844104,34744725:204119 -k1,11412:18606015,34744725:204120 -k1,11412:19426172,34744725:204119 -k1,11412:19986152,34744725:204120 -k1,11412:21467568,34744725:204119 -k1,11412:22775970,34744725:204120 -k1,11412:25275160,34744725:204119 -k1,11412:26498365,34744725:204120 -k1,11412:30947906,34744725:204119 -k1,11413:32583029,34744725:0 -) -(1,11413:6630773,35586213:25952256,513147,134348 -k1,11412:7862803,35586213:181488 -k1,11412:9602082,35586213:181488 -k1,11412:10139430,35586213:181488 -k1,11412:13637695,35586213:181488 -k1,11412:14987690,35586213:181488 -k1,11412:16881634,35586213:181488 -k1,11412:17714549,35586213:181487 -k1,11412:19708763,35586213:181488 -k1,11412:21081696,35586213:181488 -k1,11412:21619044,35586213:181488 -k1,11412:23382571,35586213:181488 -k1,11412:24720769,35586213:181488 -k1,11412:26239191,35586213:181488 -k1,11412:28792427,35586213:181488 -k1,11412:32583029,35586213:0 -) -(1,11413:6630773,36427701:25952256,505283,126483 -g1,11412:8323568,36427701 -g1,11412:9293500,36427701 -g1,11412:12282597,36427701 -g1,11412:13164711,36427701 -g1,11412:13719800,36427701 -g1,11412:15145208,36427701 -k1,11413:32583029,36427701:15750269 -g1,11413:32583029,36427701 -) -(1,11414:6630773,38518961:25952256,555811,12975 -(1,11414:6630773,38518961:2450326,534184,12975 -g1,11414:6630773,38518961 -g1,11414:9081099,38518961 -) -k1,11414:32583029,38518961:20244922 -g1,11414:32583029,38518961 -) -(1,11417:6630773,39753665:25952256,513147,126483 -k1,11416:9700896,39753665:191782 -k1,11416:10884238,39753665:191782 -k1,11416:13631269,39753665:191782 -k1,11416:15107557,39753665:191782 -k1,11416:18340865,39753665:191782 -k1,11416:22004089,39753665:191782 -k1,11416:22855163,39753665:191782 -k1,11416:26555087,39753665:191782 -k1,11416:27429754,39753665:191782 -k1,11416:29313676,39753665:191782 -k1,11416:31207428,39753665:191782 -k1,11417:32583029,39753665:0 -) -(1,11417:6630773,40595153:25952256,513147,126483 -k1,11416:8722541,40595153:180083 -k1,11416:9711995,40595153:180084 -k1,11416:10911163,40595153:180083 -k1,11416:13101891,40595153:180083 -k1,11416:14849596,40595153:180084 -k1,11416:16048764,40595153:180083 -k1,11416:17791881,40595153:180083 -k1,11416:19755200,40595153:180084 -k1,11416:22617672,40595153:180083 -k1,11416:23789316,40595153:180084 -k1,11416:25482625,40595153:180083 -k1,11416:26610359,40595153:180083 -k1,11416:27146303,40595153:180084 -k1,11416:31563944,40595153:180083 -k1,11416:32583029,40595153:0 -) -(1,11417:6630773,41436641:25952256,505283,134348 -k1,11416:9574978,41436641:165478 -k1,11416:11420800,41436641:165479 -k1,11416:12117775,41436641:165478 -k1,11416:14488540,41436641:165478 -k1,11416:17068365,41436641:165479 -k1,11416:17885271,41436641:165478 -k1,11416:18406609,41436641:165478 -k1,11416:21711262,41436641:165479 -k1,11416:23068185,41436641:165478 -k1,11416:27458769,41436641:165478 -k1,11416:29811840,41436641:165479 -k1,11416:30748021,41436641:165478 -k1,11417:32583029,41436641:0 -) -(1,11417:6630773,42278129:25952256,513147,126483 -k1,11416:7883976,42278129:200694 -k1,11416:9370487,42278129:200695 -k1,11416:11098825,42278129:200694 -k1,11416:11655379,42278129:200694 -k1,11416:13413865,42278129:200695 -k1,11416:14265987,42278129:200694 -k1,11416:15485767,42278129:200695 -k1,11416:17137428,42278129:200694 -k1,11416:18380144,42278129:200694 -k1,11416:21415926,42278129:200695 -(1,11416:21415926,42278129:0,452978,115847 -r1,11416:25994734,42278129:4578808,568825,115847 -k1,11416:21415926,42278129:-4578808 -) -(1,11416:21415926,42278129:4578808,452978,115847 -k1,11416:21415926,42278129:3277 -h1,11416:25991457,42278129:0,411205,112570 -) -k1,11416:26195428,42278129:200694 -k1,11416:27413896,42278129:200694 -k1,11416:27970451,42278129:200695 -k1,11416:31391584,42278129:200694 -k1,11417:32583029,42278129:0 -) -(1,11417:6630773,43119617:25952256,513147,126483 -(1,11416:6630773,43119617:0,452978,115847 -r1,11416:11561293,43119617:4930520,568825,115847 -k1,11416:6630773,43119617:-4930520 -) -(1,11416:6630773,43119617:4930520,452978,115847 -k1,11416:6630773,43119617:3277 -h1,11416:11558016,43119617:0,411205,112570 -) -k1,11416:11807104,43119617:245811 -k1,11416:14334223,43119617:245811 -k1,11416:14935894,43119617:245811 -k1,11416:18172113,43119617:245811 -k1,11416:21287090,43119617:245811 -k1,11416:24411242,43119617:245811 -k1,11416:25648613,43119617:245811 -k1,11416:28266172,43119617:245811 -k1,11416:32583029,43119617:0 -) -(1,11417:6630773,43961105:25952256,505283,134348 -k1,11416:7593496,43961105:201195 -k1,11416:9687372,43961105:201196 -k1,11416:11586605,43961105:201195 -k1,11416:13177164,43961105:201196 -k1,11416:14853574,43961105:201195 -k1,11416:16564719,43961105:201195 -k1,11416:19426677,43961105:201196 -k1,11416:20389400,43961105:201195 -k1,11416:23398158,43961105:201196 -k1,11416:26826346,43961105:201195 -k1,11416:30202106,43961105:201196 -k1,11416:31896867,43961105:201195 -k1,11416:32583029,43961105:0 -) -(1,11417:6630773,44802593:25952256,513147,7863 -g1,11416:8446120,44802593 -g1,11416:9296777,44802593 -g1,11416:9851866,44802593 -k1,11417:32583029,44802593:20663502 -g1,11417:32583029,44802593 -) -] -(1,11421:32583029,45706769:0,0,0 -g1,11421:32583029,45706769 -) -) -] -(1,11421:6630773,47279633:25952256,0,0 -h1,11421:6630773,47279633:25952256,0,0 -) -] -h1,11421:4262630,4025873:0,0,0 -] -!24667 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11423:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,11423:3078558,4812305:0,0,0 +(1,11423:3078558,49800853:0,16384,2228224 +g1,11423:29030814,49800853 +g1,11423:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11423:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11423:37855564,49800853:1179648,16384,0 +) +) +k1,11423:3078556,49800853:-34777008 +) +] +g1,11423:6630773,4812305 +g1,11423:6630773,4812305 +g1,11423:10697281,4812305 +g1,11423:11496164,4812305 +g1,11423:12681054,4812305 +g1,11423:15925086,4812305 +g1,11423:16740353,4812305 +g1,11423:19649496,4812305 +k1,11423:31387652,4812305:11738156 +) +) +] +[1,11423:6630773,45706769:25952256,40108032,0 +(1,11423:6630773,45706769:25952256,40108032,0 +(1,11423:6630773,45706769:0,0,0 +g1,11423:6630773,45706769 +) +[1,11423:6630773,45706769:25952256,40108032,0 +(1,11403:6630773,6254097:25952256,505283,134348 +k1,11402:11475653,6254097:180027 +k1,11402:12187178,6254097:180028 +k1,11402:15520142,6254097:180027 +k1,11402:17398207,6254097:180027 +k1,11402:18597320,6254097:180028 +k1,11402:20736873,6254097:180027 +k1,11402:21448397,6254097:180027 +k1,11402:24152215,6254097:180027 +k1,11402:27229590,6254097:180028 +k1,11402:28092502,6254097:180027 +k1,11402:32583029,6254097:0 +) +(1,11403:6630773,7095585:25952256,513147,134348 +k1,11402:8039687,7095585:212227 +k1,11402:9905388,7095585:212228 +k1,11402:12143333,7095585:212227 +k1,11402:14315086,7095585:212227 +k1,11402:15631596,7095585:212228 +k1,11402:16591589,7095585:212227 +k1,11402:19678880,7095585:212227 +k1,11402:21158574,7095585:212228 +k1,11402:24133144,7095585:212227 +k1,11402:26600465,7095585:212227 +k1,11402:28004138,7095585:212228 +k1,11402:30194242,7095585:212227 +k1,11402:32583029,7095585:0 +) +(1,11403:6630773,7937073:25952256,513147,134348 +g1,11402:9340686,7937073 +g1,11402:10487566,7937073 +g1,11402:12981866,7937073 +g1,11402:13863980,7937073 +k1,11403:32583029,7937073:15973090 +g1,11403:32583029,7937073 +) +(1,11406:6630773,8778561:25952256,513147,126483 +h1,11404:6630773,8778561:983040,0,0 +k1,11404:9353139,8778561:249037 +k1,11404:10068136,8778561:249036 +k1,11404:11185525,8778561:249037 +k1,11404:12249830,8778561:249037 +k1,11404:13565138,8778561:249037 +k1,11404:16711521,8778561:249036 +k1,11404:18157901,8778561:249037 +k1,11404:20045993,8778561:249037 +k1,11404:21234815,8778561:249036 +k1,11404:23749432,8778561:249037 +k1,11404:26867635,8778561:249037 +k1,11404:28453606,8778561:249037 +k1,11404:29450408,8778561:249036 +k1,11404:31386342,8778561:249037 +k1,11404:32583029,8778561:0 +) +(1,11406:6630773,9620049:25952256,513147,134348 +k1,11404:10389918,9620049:218890 +k1,11404:11268101,9620049:218891 +k1,11404:11842851,9620049:218890 +k1,11404:14936805,9620049:218890 +k1,11404:17544483,9620049:218891 +k1,11404:19157324,9620049:218890 +k1,11404:21956366,9620049:218890 +k1,11404:25003790,9620049:218891 +k1,11404:26326962,9620049:218890 +k1,11404:27293618,9620049:218890 +k1,11404:31322117,9620049:218891 +k1,11404:32227169,9620049:218890 +k1,11404:32583029,9620049:0 +) +(1,11406:6630773,10461537:25952256,513147,134348 +k1,11404:8122506,10461537:141691 +k1,11404:8923490,10461537:141692 +k1,11405:8923490,10461537:0 +k1,11405:13045838,10461537:141691 +k1,11405:14574621,10461537:147284 +$1,11405:14574621,10461537 +$1,11405:15249642,10461537 +k1,11405:15396927,10461537:147285 +k1,11405:17129527,10461537:147284 +$1,11405:17129527,10461537 +$1,11405:17804548,10461537 +k1,11405:17951833,10461537:147285 +k1,11405:20577689,10461537:147284 +$1,11405:20577689,10461537 +$1,11405:21252710,10461537 +k1,11405:21399995,10461537:147285 +k1,11405:24394163,10461537:147284 +$1,11405:24394163,10461537 +$1,11405:25069184,10461537 +k1,11405:25216469,10461537:147285 +k1,11405:28371856,10461537:147284 +$1,11405:28371856,10461537 +$1,11405:29046877,10461537 +k1,11405:29194162,10461537:147285 +k1,11405:32583029,10461537:0 +) +(1,11406:6630773,11303025:25952256,505283,134348 +$1,11405:7305794,11303025 +g1,11405:7512888,11303025 +g1,11405:9786332,11303025 +$1,11405:9786332,11303025 +$1,11405:10461353,11303025 +g1,11405:10668447,11303025 +g1,11405:12869146,11303025 +$1,11405:12869146,11303025 +$1,11405:13544167,11303025 +g1,11405:13751261,11303025 +g1,11405:16821623,11303025 +k1,11406:32583029,11303025:13205502 +g1,11406:32583029,11303025 +) +(1,11407:6630773,13394285:25952256,534184,12975 +(1,11407:6630773,13394285:2450326,534184,12975 +g1,11407:6630773,13394285 +g1,11407:9081099,13394285 +) +k1,11407:32583029,13394285:21847474 +g1,11407:32583029,13394285 +) +(1,11409:6630773,14628989:25952256,505283,126483 +k1,11408:7970822,14628989:143362 +k1,11408:9503546,14628989:143361 +k1,11408:10298336,14628989:143362 +k1,11408:11189463,14628989:143361 +k1,11408:13635105,14628989:143362 +k1,11408:15400482,14628989:143361 +k1,11408:16291610,14628989:143362 +k1,11408:19218940,14628989:143361 +k1,11408:20048464,14628989:143362 +k1,11408:20547685,14628989:143361 +(1,11408:20547685,14628989:0,459977,115847 +r1,11408:24071357,14628989:3523672,575824,115847 +k1,11408:20547685,14628989:-3523672 +) +(1,11408:20547685,14628989:3523672,459977,115847 +k1,11408:20547685,14628989:3277 +h1,11408:24068080,14628989:0,411205,112570 +) +k1,11408:24214719,14628989:143362 +k1,11408:25040965,14628989:143361 +(1,11408:25040965,14628989:0,452978,115847 +r1,11408:27157790,14628989:2116825,568825,115847 +k1,11408:25040965,14628989:-2116825 +) +(1,11408:25040965,14628989:2116825,452978,115847 +k1,11408:25040965,14628989:3277 +h1,11408:27154513,14628989:0,411205,112570 +) +k1,11408:27474822,14628989:143362 +k1,11408:29012134,14628989:143361 +k1,11408:30544859,14628989:143362 +k1,11408:32583029,14628989:0 +) +(1,11409:6630773,15470477:25952256,513147,134348 +k1,11408:7588909,15470477:233308 +k1,11408:9106723,15470477:233308 +k1,11408:10791653,15470477:233308 +k1,11408:12228858,15470477:233309 +k1,11408:15833993,15470477:233308 +k1,11408:16423161,15470477:233308 +k1,11408:18529488,15470477:233308 +k1,11408:22504246,15470477:233308 +k1,11408:24634821,15470477:233308 +k1,11408:26059575,15470477:233309 +k1,11408:27311968,15470477:233308 +k1,11408:30258467,15470477:233308 +k1,11408:31483335,15470477:233308 +k1,11409:32583029,15470477:0 +) +(1,11409:6630773,16311965:25952256,513147,134348 +k1,11408:8736596,16311965:186273 +k1,11408:10933515,16311965:186274 +k1,11408:14005994,16311965:186273 +k1,11408:14808306,16311965:186274 +k1,11408:16279085,16311965:186273 +k1,11408:18338377,16311965:186273 +k1,11408:20421918,16311965:186274 +k1,11408:21236026,16311965:186273 +k1,11408:23124269,16311965:186273 +k1,11408:25439152,16311965:186274 +k1,11408:26241463,16311965:186273 +k1,11408:27816445,16311965:186274 +k1,11408:29570339,16311965:186273 +k1,11408:32583029,16311965:0 +) +(1,11409:6630773,17153453:25952256,505283,126483 +k1,11408:8377977,17153453:207108 +k1,11408:10481698,17153453:207109 +k1,11408:11374968,17153453:207108 +k1,11408:14672099,17153453:207108 +k1,11408:15495245,17153453:207108 +k1,11408:18119977,17153453:207109 +h1,11408:18518436,17153453:0,0,0 +k1,11408:18899214,17153453:207108 +k1,11408:20303009,17153453:207108 +k1,11408:23351759,17153453:207109 +k1,11408:24210295,17153453:207108 +k1,11408:25165169,17153453:207108 +k1,11408:27674557,17153453:207108 +k1,11408:28985948,17153453:207109 +k1,11408:29940822,17153453:207108 +(1,11408:29940822,17153453:0,452978,115847 +r1,11408:32409359,17153453:2468537,568825,115847 +k1,11408:29940822,17153453:-2468537 +) +(1,11408:29940822,17153453:2468537,452978,115847 +k1,11408:29940822,17153453:3277 +h1,11408:32406082,17153453:0,411205,112570 +) +k1,11409:32583029,17153453:0 +) +(1,11409:6630773,17994941:25952256,505283,115847 +(1,11408:6630773,17994941:0,459977,115847 +r1,11408:8747598,17994941:2116825,575824,115847 +k1,11408:6630773,17994941:-2116825 +) +(1,11408:6630773,17994941:2116825,459977,115847 +k1,11408:6630773,17994941:3277 +h1,11408:8744321,17994941:0,411205,112570 +) +g1,11408:9120497,17994941 +(1,11408:9120497,17994941:0,452978,115847 +r1,11408:12292457,17994941:3171960,568825,115847 +k1,11408:9120497,17994941:-3171960 +) +(1,11408:9120497,17994941:3171960,452978,115847 +k1,11408:9120497,17994941:3277 +h1,11408:12289180,17994941:0,411205,112570 +) +g1,11408:12665356,17994941 +g1,11408:14056030,17994941 +g1,11408:15680667,17994941 +g1,11408:16562781,17994941 +g1,11408:18142854,17994941 +g1,11408:20380253,17994941 +g1,11408:21265644,17994941 +(1,11408:21265644,17994941:0,414482,115847 +r1,11408:23734181,17994941:2468537,530329,115847 +k1,11408:21265644,17994941:-2468537 +) +(1,11408:21265644,17994941:2468537,414482,115847 +k1,11408:21265644,17994941:3277 +h1,11408:23730904,17994941:0,411205,112570 +) +k1,11409:32583029,17994941:8675178 +g1,11409:32583029,17994941 +) +(1,11410:6630773,20086201:25952256,555811,147783 +(1,11410:6630773,20086201:2450326,534184,12975 +g1,11410:6630773,20086201 +g1,11410:9081099,20086201 +) +k1,11410:32583030,20086201:20371800 +g1,11410:32583030,20086201 +) +(1,11413:6630773,21320905:25952256,505283,134348 +k1,11412:8672782,21320905:258774 +k1,11412:9799907,21320905:258773 +k1,11412:12147313,21320905:258774 +k1,11412:12761946,21320905:258773 +k1,11412:14471687,21320905:258774 +k1,11412:15598812,21320905:258773 +k1,11412:17387852,21320905:258774 +k1,11412:18298054,21320905:258774 +k1,11412:19953399,21320905:258773 +k1,11412:21601536,21320905:258774 +k1,11412:24701950,21320905:258773 +k1,11412:25612152,21320905:258774 +k1,11412:29045489,21320905:258773 +k1,11412:30194242,21320905:258774 +k1,11412:32583029,21320905:0 +) +(1,11413:6630773,22162393:25952256,505283,126483 +k1,11412:10483143,22162393:175800 +k1,11412:12204283,22162393:175801 +k1,11412:13987681,22162393:175800 +k1,11412:15295944,22162393:175801 +k1,11412:16946959,22162393:175800 +k1,11412:17893462,22162393:175800 +$1,11412:17893462,22162393 +$1,11412:18396123,22162393 +k1,11412:18571924,22162393:175801 +k1,11412:22266352,22162393:175800 +k1,11412:24327624,22162393:175801 +k1,11412:25034921,22162393:175800 +k1,11412:28709689,22162393:175801 +k1,11412:29656192,22162393:175800 +k1,11412:32583029,22162393:0 +) +(1,11413:6630773,23003881:25952256,513147,134348 +k1,11412:7964844,23003881:142626 +k1,11412:8463330,23003881:142626 +k1,11412:11117297,23003881:142627 +k1,11412:14621920,23003881:142626 +k1,11412:17580628,23003881:142626 +k1,11412:20308649,23003881:142626 +k1,11412:21102703,23003881:142626 +k1,11412:21877097,23003881:142627 +k1,11412:23216410,23003881:142626 +k1,11412:25973267,23003881:142626 +k1,11412:26925263,23003881:142626 +k1,11412:27423749,23003881:142626 +k1,11412:28468094,23003881:142570 +k1,11412:29888018,23003881:142627 +k1,11412:30863607,23003881:142626 +k1,11412:32227169,23003881:142626 +k1,11412:32583029,23003881:0 +) +(1,11413:6630773,23845369:25952256,505283,138281 +k1,11412:8649067,23845369:156416 +k1,11412:9937944,23845369:156415 +k1,11412:10842126,23845369:156416 +k1,11412:14663314,23845369:156415 +k1,11412:15581258,23845369:156416 +$1,11412:15581258,23845369 +$1,11412:16083919,23845369 +k1,11412:16240334,23845369:156415 +k1,11412:17588195,23845369:156416 +$1,11412:17588195,23845369 +$1,11412:18140008,23845369 +k1,11412:18296423,23845369:156415 +k1,11412:21801073,23845369:156416 +k1,11412:23647006,23845369:156415 +k1,11412:24419460,23845369:156416 +k1,11412:24931735,23845369:156415 +k1,11412:25989883,23845369:156373 +k1,11412:27597265,23845369:156415 +k1,11412:29408465,23845369:156416 +k1,11412:32583029,23845369:0 +) +(1,11413:6630773,24686857:25952256,505283,138281 +k1,11412:8425758,24686857:264719 +k1,11412:9341904,24686857:264718 +k1,11412:10354389,24686857:264719 +k1,11412:13204502,24686857:264718 +$1,11412:13204502,24686857 +$1,11412:13707163,24686857 +k1,11412:14145552,24686857:264719 +$1,11412:14145552,24686857 +$1,11412:14697365,24686857 +k1,11412:14962083,24686857:264718 +k1,11412:16418247,24686857:264719 +$1,11412:16418247,24686857 +$1,11412:16843576,24686857 +k1,11412:17281964,24686857:264718 +k1,11412:19242099,24686857:264719 +k1,11412:22681381,24686857:264718 +k1,11412:23937660,24686857:264719 +k1,11412:25268649,24686857:264718 +k1,11412:27755039,24686857:264719 +k1,11412:28671185,24686857:264718 +k1,11412:32583029,24686857:0 +) +(1,11413:6630773,25528345:25952256,505283,134348 +k1,11412:8202679,25528345:191718 +k1,11412:9385957,25528345:191718 +k1,11412:13047151,25528345:191718 +k1,11412:14385094,25528345:191718 +k1,11412:16366600,25528345:191718 +k1,11412:18000765,25528345:191718 +k1,11412:20235239,25528345:191717 +k1,11412:21595464,25528345:191718 +k1,11412:23346939,25528345:191718 +k1,11412:24221542,25528345:191718 +k1,11412:25879956,25528345:191718 +k1,11412:28634787,25528345:191718 +k1,11412:30697558,25528345:191718 +k1,11412:32583029,25528345:0 +) +(1,11413:6630773,26369833:25952256,513147,126483 +k1,11412:8018443,26369833:190327 +k1,11412:8979473,26369833:190327 +k1,11412:12396794,26369833:190328 +k1,11412:15932079,26369833:190327 +k1,11412:16931776,26369833:190327 +k1,11412:19007574,26369833:190327 +k1,11412:19849330,26369833:190328 +k1,11412:23081183,26369833:190327 +k1,11412:24290595,26369833:190327 +k1,11412:26491567,26369833:190327 +k1,11412:27341187,26369833:190328 +k1,11412:30373155,26369833:190327 +k1,11412:32583029,26369833:0 +) +(1,11413:6630773,27211321:25952256,426639,7863 +k1,11413:32583028,27211321:22690528 +g1,11413:32583028,27211321 +) +(1,11414:6630773,29302581:25952256,555811,12975 +(1,11414:6630773,29302581:2450326,534184,12975 +g1,11414:6630773,29302581 +g1,11414:9081099,29302581 +) +k1,11414:32583029,29302581:19376242 +g1,11414:32583029,29302581 +) +(1,11418:6630773,30537285:25952256,513147,134348 +k1,11417:10563195,30537285:319422 +k1,11417:11874177,30537285:319422 +k1,11417:14748849,30537285:319423 +k1,11417:16352777,30537285:319422 +k1,11417:19341480,30537285:319422 +k1,11417:20679987,30537285:319422 +k1,11417:23718498,30537285:319422 +k1,11417:28702774,30537285:319423 +k1,11417:29681488,30537285:319422 +k1,11417:31019995,30537285:319422 +k1,11417:32583029,30537285:0 +) +(1,11418:6630773,31378773:25952256,513147,126483 +k1,11417:7861954,31378773:283530 +k1,11417:10980572,31378773:283531 +(1,11417:10980572,31378773:0,452978,122846 +r1,11417:15207668,31378773:4227096,575824,122846 +k1,11417:10980572,31378773:-4227096 +) +(1,11417:10980572,31378773:4227096,452978,122846 +k1,11417:10980572,31378773:3277 +h1,11417:15204391,31378773:0,411205,112570 +) +k1,11417:15664868,31378773:283530 +k1,11417:17555997,31378773:283531 +k1,11417:18195387,31378773:283530 +k1,11417:20167125,31378773:283531 +k1,11417:21133540,31378773:283530 +k1,11417:23728526,31378773:283531 +k1,11417:24959707,31378773:283530 +k1,11417:26694860,31378773:283531 +k1,11417:30893511,31378773:283530 +k1,11418:32583029,31378773:0 +) +(1,11418:6630773,32220261:25952256,505283,134348 +(1,11417:6630773,32220261:0,452978,122846 +r1,11417:10506157,32220261:3875384,575824,122846 +k1,11417:6630773,32220261:-3875384 +) +(1,11417:6630773,32220261:3875384,452978,122846 +k1,11417:6630773,32220261:3277 +h1,11417:10502880,32220261:0,411205,112570 +) +k1,11417:10871894,32220261:192067 +k1,11417:12980233,32220261:192066 +k1,11417:14340807,32220261:192067 +k1,11417:17554083,32220261:192066 +k1,11417:20381353,32220261:192067 +k1,11417:24818841,32220261:192066 +k1,11417:26727951,32220261:192067 +k1,11417:30427504,32220261:192066 +k1,11417:31821501,32220261:192067 +k1,11417:32583029,32220261:0 +) +(1,11418:6630773,33061749:25952256,513147,134348 +k1,11417:9078488,33061749:182135 +k1,11417:10069993,33061749:182135 +k1,11417:13279237,33061749:182136 +k1,11417:14533541,33061749:182135 +k1,11417:16317376,33061749:182135 +k1,11417:19166171,33061749:182135 +k1,11417:21613887,33061749:182136 +k1,11417:22447450,33061749:182135 +k1,11417:23648670,33061749:182135 +k1,11417:26291027,33061749:182135 +k1,11417:29500271,33061749:182136 +k1,11417:31157621,33061749:182135 +k1,11417:32583029,33061749:0 +) +(1,11418:6630773,33903237:25952256,513147,134348 +k1,11417:7175254,33903237:188621 +k1,11417:10371322,33903237:188621 +k1,11417:11091440,33903237:188621 +k1,11417:12793286,33903237:188620 +k1,11417:13633335,33903237:188621 +k1,11417:15019299,33903237:188621 +k1,11417:15563780,33903237:188621 +k1,11417:18702176,33903237:188621 +k1,11417:23555650,33903237:188621 +k1,11417:24403563,33903237:188621 +k1,11417:25981547,33903237:188621 +k1,11417:26821595,33903237:188620 +k1,11417:27366076,33903237:188621 +k1,11417:29005664,33903237:188621 +k1,11417:30062637,33903237:188621 +k1,11417:31298523,33903237:188621 +k1,11417:32583029,33903237:0 +) +(1,11418:6630773,34744725:25952256,513147,126483 +k1,11417:7197834,34744725:211201 +k1,11417:8692229,34744725:211200 +k1,11417:10560836,34744725:211201 +k1,11417:11873041,34744725:211200 +k1,11417:13594192,34744725:211201 +k1,11417:15944487,34744725:211200 +k1,11417:17352375,34744725:211201 +k1,11417:19301590,34744725:211200 +k1,11417:21170197,34744725:211201 +k1,11417:23719722,34744725:211200 +k1,11417:24950008,34744725:211201 +k1,11417:26372313,34744725:211200 +k1,11417:27868020,34744725:211201 +k1,11417:29530842,34744725:211200 +k1,11417:31025238,34744725:211201 +k1,11417:32583029,34744725:0 +) +(1,11418:6630773,35586213:25952256,513147,126483 +k1,11417:8795591,35586213:199393 +k1,11417:9526482,35586213:199394 +k1,11417:12028155,35586213:199393 +k1,11417:13036918,35586213:199393 +k1,11417:14308480,35586213:199393 +k1,11417:15167166,35586213:199394 +k1,11417:16385644,35586213:199393 +k1,11417:18473129,35586213:199393 +k1,11417:21006914,35586213:199393 +k1,11417:23612135,35586213:199394 +k1,11417:24427566,35586213:199393 +k1,11417:25646044,35586213:199393 +k1,11417:27296404,35586213:199393 +k1,11417:28178683,35586213:199394 +k1,11417:30329738,35586213:199393 +k1,11417:32227169,35586213:199393 +k1,11417:32583029,35586213:0 +) +(1,11418:6630773,36427701:25952256,505283,134348 +k1,11417:8095380,36427701:187310 +k1,11417:8814187,36427701:187310 +k1,11417:11351618,36427701:187310 +k1,11417:12558013,36427701:187310 +k1,11417:14633415,36427701:187310 +k1,11417:15953187,36427701:187310 +k1,11417:16888263,36427701:187310 +k1,11417:20228510,36427701:187310 +k1,11417:21031858,36427701:187310 +k1,11417:22238253,36427701:187310 +k1,11417:24164889,36427701:187310 +k1,11417:25732387,36427701:187310 +k1,11417:27423748,36427701:187310 +k1,11417:29576483,36427701:187310 +k1,11417:30415221,36427701:187310 +k1,11417:31621616,36427701:187310 +k1,11418:32583029,36427701:0 +) +(1,11418:6630773,37269189:25952256,505283,134348 +k1,11417:8105333,37269189:197263 +k1,11417:10435794,37269189:197264 +k1,11417:11675079,37269189:197263 +k1,11417:14707430,37269189:197264 +k1,11417:16061403,37269189:197263 +k1,11417:17816457,37269189:197263 +k1,11417:18629759,37269189:197264 +k1,11417:19182882,37269189:197263 +k1,11417:20657442,37269189:197263 +k1,11417:21958988,37269189:197264 +k1,11417:24451322,37269189:197263 +k1,11417:25667671,37269189:197264 +k1,11417:30110356,37269189:197263 +k1,11417:32583029,37269189:0 +) +(1,11418:6630773,38110677:25952256,513147,134348 +k1,11417:8338407,38110677:149843 +k1,11417:8844111,38110677:149844 +k1,11417:12310731,38110677:149843 +k1,11417:13629081,38110677:149843 +k1,11417:15491381,38110677:149844 +k1,11417:16292652,38110677:149843 +k1,11417:18255221,38110677:149843 +k1,11417:19596510,38110677:149844 +k1,11417:20102213,38110677:149843 +k1,11417:21834096,38110677:149844 +k1,11417:23140649,38110677:149843 +k1,11417:24627426,38110677:149843 +k1,11417:27149018,38110677:149844 +k1,11417:31089463,38110677:149843 +k1,11417:32583029,38110677:0 +) +(1,11418:6630773,38952165:25952256,505283,126483 +g1,11417:7600705,38952165 +g1,11417:10589802,38952165 +g1,11417:11471916,38952165 +g1,11417:12027005,38952165 +g1,11417:13452413,38952165 +k1,11418:32583029,38952165:17443064 +g1,11418:32583029,38952165 +) +(1,11419:6630773,41043425:25952256,555811,12975 +(1,11419:6630773,41043425:2450326,534184,12975 +g1,11419:6630773,41043425 +g1,11419:9081099,41043425 +) +k1,11419:32583029,41043425:20244922 +g1,11419:32583029,41043425 +) +(1,11422:6630773,42278129:25952256,513147,126483 +k1,11421:9674682,42278129:165568 +k1,11421:10831809,42278129:165567 +k1,11421:13552626,42278129:165568 +k1,11421:15002700,42278129:165568 +k1,11421:18209793,42278129:165567 +k1,11421:21846803,42278129:165568 +k1,11421:22671662,42278129:165567 +k1,11421:26345372,42278129:165568 +k1,11421:27193825,42278129:165568 +k1,11421:29051532,42278129:165567 +k1,11421:30919070,42278129:165568 +k1,11422:32583029,42278129:0 +) +(1,11422:6630773,43119617:25952256,513147,126483 +k1,11421:8454780,43119617:200680 +k1,11421:9464831,43119617:200681 +k1,11421:10684596,43119617:200680 +k1,11421:12895921,43119617:200680 +k1,11421:14664223,43119617:200681 +k1,11421:15883988,43119617:200680 +k1,11421:17647703,43119617:200681 +k1,11421:19631618,43119617:200680 +k1,11421:22514687,43119617:200680 +k1,11421:23706928,43119617:200681 +k1,11421:25420834,43119617:200680 +k1,11421:26569165,43119617:200680 +k1,11421:27125706,43119617:200681 +k1,11421:31563944,43119617:200680 +k1,11421:32583029,43119617:0 +) +(1,11422:6630773,43961105:25952256,505283,134348 +k1,11421:9574978,43961105:165478 +k1,11421:11420800,43961105:165479 +k1,11421:12117775,43961105:165478 +k1,11421:14488540,43961105:165478 +k1,11421:17068365,43961105:165479 +k1,11421:17885271,43961105:165478 +k1,11421:18406609,43961105:165478 +k1,11421:21711262,43961105:165479 +k1,11421:23068185,43961105:165478 +k1,11421:27458769,43961105:165478 +k1,11421:29811840,43961105:165479 +k1,11421:30748021,43961105:165478 +k1,11422:32583029,43961105:0 +) +(1,11422:6630773,44802593:25952256,513147,126483 +k1,11421:7883976,44802593:200694 +k1,11421:9370487,44802593:200695 +k1,11421:11098825,44802593:200694 +k1,11421:11655379,44802593:200694 +k1,11421:13413865,44802593:200695 +k1,11421:14265987,44802593:200694 +k1,11421:15485767,44802593:200695 +k1,11421:17137428,44802593:200694 +k1,11421:18380144,44802593:200694 +k1,11421:21415926,44802593:200695 +(1,11421:21415926,44802593:0,452978,115847 +r1,11421:25994734,44802593:4578808,568825,115847 +k1,11421:21415926,44802593:-4578808 +) +(1,11421:21415926,44802593:4578808,452978,115847 +k1,11421:21415926,44802593:3277 +h1,11421:25991457,44802593:0,411205,112570 +) +k1,11421:26195428,44802593:200694 +k1,11421:27413896,44802593:200694 +k1,11421:27970451,44802593:200695 +k1,11421:31391584,44802593:200694 +k1,11422:32583029,44802593:0 +) +(1,11422:6630773,45644081:25952256,513147,126483 +(1,11421:6630773,45644081:0,452978,115847 +r1,11421:11561293,45644081:4930520,568825,115847 +k1,11421:6630773,45644081:-4930520 +) +(1,11421:6630773,45644081:4930520,452978,115847 +k1,11421:6630773,45644081:3277 +h1,11421:11558016,45644081:0,411205,112570 +) +k1,11421:11807104,45644081:245811 +k1,11421:14334223,45644081:245811 +k1,11421:14935894,45644081:245811 +k1,11421:18172113,45644081:245811 +k1,11421:21287090,45644081:245811 +k1,11421:24411242,45644081:245811 +k1,11421:25648613,45644081:245811 +k1,11421:28266172,45644081:245811 +k1,11421:32583029,45644081:0 +) +] +(1,11423:32583029,45706769:0,0,0 +g1,11423:32583029,45706769 +) +) +] +(1,11423:6630773,47279633:25952256,0,0 +h1,11423:6630773,47279633:25952256,0,0 +) +] +h1,11423:4262630,4025873:0,0,0 +] +!25133 }214 -Input:1445:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1446:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1447:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1448:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1449:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1450:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 {215 -[1,11435:4262630,47279633:28320399,43253760,0 -(1,11435:4262630,4025873:0,0,0 -[1,11435:-473657,4025873:25952256,0,0 -(1,11435:-473657,-710414:25952256,0,0 -h1,11435:-473657,-710414:0,0,0 -(1,11435:-473657,-710414:0,0,0 -(1,11435:-473657,-710414:0,0,0 -g1,11435:-473657,-710414 -(1,11435:-473657,-710414:65781,0,65781 -g1,11435:-407876,-710414 -[1,11435:-407876,-644633:0,0,0 +[1,11439:4262630,47279633:28320399,43253760,0 +(1,11439:4262630,4025873:0,0,0 +[1,11439:-473657,4025873:25952256,0,0 +(1,11439:-473657,-710414:25952256,0,0 +h1,11439:-473657,-710414:0,0,0 +(1,11439:-473657,-710414:0,0,0 +(1,11439:-473657,-710414:0,0,0 +g1,11439:-473657,-710414 +(1,11439:-473657,-710414:65781,0,65781 +g1,11439:-407876,-710414 +[1,11439:-407876,-644633:0,0,0 ] ) -k1,11435:-473657,-710414:-65781 +k1,11439:-473657,-710414:-65781 ) ) -k1,11435:25478599,-710414:25952256 -g1,11435:25478599,-710414 +k1,11439:25478599,-710414:25952256 +g1,11439:25478599,-710414 ) ] ) -[1,11435:6630773,47279633:25952256,43253760,0 -[1,11435:6630773,4812305:25952256,786432,0 -(1,11435:6630773,4812305:25952256,513147,134348 -(1,11435:6630773,4812305:25952256,513147,134348 -g1,11435:3078558,4812305 -[1,11435:3078558,4812305:0,0,0 -(1,11435:3078558,2439708:0,1703936,0 -k1,11435:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11435:2537886,2439708:1179648,16384,0 +[1,11439:6630773,47279633:25952256,43253760,0 +[1,11439:6630773,4812305:25952256,786432,0 +(1,11439:6630773,4812305:25952256,513147,134348 +(1,11439:6630773,4812305:25952256,513147,134348 +g1,11439:3078558,4812305 +[1,11439:3078558,4812305:0,0,0 +(1,11439:3078558,2439708:0,1703936,0 +k1,11439:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11439:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11435:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11439:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11435:3078558,4812305:0,0,0 -(1,11435:3078558,2439708:0,1703936,0 -g1,11435:29030814,2439708 -g1,11435:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11435:36151628,1915420:16384,1179648,0 +[1,11439:3078558,4812305:0,0,0 +(1,11439:3078558,2439708:0,1703936,0 +g1,11439:29030814,2439708 +g1,11439:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11439:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11435:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11439:37855564,2439708:1179648,16384,0 ) ) -k1,11435:3078556,2439708:-34777008 +k1,11439:3078556,2439708:-34777008 ) ] -[1,11435:3078558,4812305:0,0,0 -(1,11435:3078558,49800853:0,16384,2228224 -k1,11435:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11435:2537886,49800853:1179648,16384,0 +[1,11439:3078558,4812305:0,0,0 +(1,11439:3078558,49800853:0,16384,2228224 +k1,11439:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11439:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11435:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11439:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11435:3078558,4812305:0,0,0 -(1,11435:3078558,49800853:0,16384,2228224 -g1,11435:29030814,49800853 -g1,11435:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11435:36151628,51504789:16384,1179648,0 +[1,11439:3078558,4812305:0,0,0 +(1,11439:3078558,49800853:0,16384,2228224 +g1,11439:29030814,49800853 +g1,11439:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11439:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11435:37855564,49800853:1179648,16384,0 -) -) -k1,11435:3078556,49800853:-34777008 -) -] -g1,11435:6630773,4812305 -k1,11435:25712890,4812305:17886740 -g1,11435:29057847,4812305 -g1,11435:29873114,4812305 -) -) -] -[1,11435:6630773,45706769:25952256,40108032,0 -(1,11435:6630773,45706769:25952256,40108032,0 -(1,11435:6630773,45706769:0,0,0 -g1,11435:6630773,45706769 -) -[1,11435:6630773,45706769:25952256,40108032,0 -(1,11418:6630773,6254097:25952256,555811,12975 -(1,11418:6630773,6254097:2450326,534184,12975 -g1,11418:6630773,6254097 -g1,11418:9081099,6254097 -) -k1,11418:32583028,6254097:21293104 -g1,11418:32583028,6254097 -) -(1,11421:6630773,7488801:25952256,505283,134348 -k1,11420:8837311,7488801:279124 -k1,11420:10396352,7488801:279123 -k1,11420:11694561,7488801:279124 -k1,11420:16048713,7488801:279123 -k1,11420:17010722,7488801:279124 -k1,11420:20097407,7488801:279123 -k1,11420:23011734,7488801:279124 -k1,11420:24680220,7488801:279123 -k1,11420:26969989,7488801:279124 -k1,11420:28440558,7488801:279124 -k1,11420:29738766,7488801:279123 -k1,11420:32583029,7488801:0 -) -(1,11421:6630773,8330289:25952256,505283,134348 -k1,11420:8952714,8330289:311296 -k1,11420:9915438,8330289:311296 -k1,11420:10974500,8330289:311296 -k1,11420:13774197,8330289:311295 -k1,11420:16561443,8330289:311296 -k1,11420:19623940,8330289:311296 -k1,11420:20291096,8330289:311296 -k1,11420:23113732,8330289:311296 -k1,11420:24076456,8330289:311296 -k1,11420:25406836,8330289:311295 -k1,11420:27934560,8330289:311296 -k1,11420:31090119,8330289:311296 -k1,11420:32583029,8330289:0 -) -(1,11421:6630773,9171777:25952256,513147,134348 -k1,11420:10461828,9171777:318981 -k1,11420:12478848,9171777:318982 -k1,11420:15074550,9171777:318981 -k1,11420:16079693,9171777:318981 -k1,11420:19237039,9171777:318982 -k1,11420:20931621,9171777:318981 -k1,11420:22595402,9171777:318982 -k1,11420:24198889,9171777:318981 -k1,11420:27280213,9171777:318981 -k1,11420:29609840,9171777:318982 -k1,11420:31966991,9171777:318981 -k1,11420:32583029,9171777:0 -) -(1,11421:6630773,10013265:25952256,513147,126483 -k1,11420:7990657,10013265:340799 -k1,11420:10916851,10013265:340799 -k1,11420:13768990,10013265:340799 -k1,11420:15242250,10013265:340798 -k1,11420:16330815,10013265:340799 -k1,11420:20481222,10013265:340799 -k1,11420:21583549,10013265:340799 -k1,11420:24686691,10013265:340799 -k1,11420:27147580,10013265:340799 -k1,11420:27975824,10013265:340656 -k1,11420:30062502,10013265:340799 -k1,11420:31896867,10013265:340799 -k1,11421:32583029,10013265:0 -) -(1,11421:6630773,10854753:25952256,505283,126483 -(1,11420:6630773,10854753:0,452978,115847 -r1,11420:15078410,10854753:8447637,568825,115847 -k1,11420:6630773,10854753:-8447637 -) -(1,11420:6630773,10854753:8447637,452978,115847 -k1,11420:6630773,10854753:3277 -h1,11420:15075133,10854753:0,411205,112570 -) -k1,11420:15466013,10854753:213933 -k1,11420:16812409,10854753:213934 -k1,11420:20270374,10854753:213933 -k1,11420:22369779,10854753:213934 -k1,11420:24199830,10854753:213933 -k1,11420:25029802,10854753:213934 -k1,11420:26262820,10854753:213933 -k1,11420:27754051,10854753:213934 -k1,11420:31931601,10854753:213933 -k1,11420:32583029,10854753:0 -) -(1,11421:6630773,11696241:25952256,513147,102891 -k1,11420:8785324,11696241:269080 -k1,11420:10734747,11696241:269080 -k1,11420:11619864,11696241:269079 -k1,11420:12908029,11696241:269080 -k1,11420:15862119,11696241:269080 -k1,11420:18058613,11696241:269080 -k1,11420:19431974,11696241:269079 -k1,11420:20986870,11696241:269080 -k1,11420:23216787,11696241:269080 -k1,11420:28653381,11696241:269080 -k1,11420:29731830,11696241:269079 -k1,11420:31019995,11696241:269080 -k1,11420:32583029,11696241:0 -) -(1,11421:6630773,12537729:25952256,505283,134348 -k1,11420:8705861,12537729:189617 -k1,11420:9887039,12537729:189618 -k1,11420:11589882,12537729:189617 -k1,11420:13477538,12537729:189618 -k1,11420:16474717,12537729:189617 -k1,11420:18053697,12537729:189617 -k1,11420:20253960,12537729:189618 -k1,11420:21095005,12537729:189617 -k1,11420:24128886,12537729:189618 -k1,11420:26502818,12537729:189617 -k1,11420:27590279,12537729:189618 -k1,11420:31350297,12537729:189617 -k1,11421:32583029,12537729:0 -) -(1,11421:6630773,13379217:25952256,513147,138281 -k1,11420:7719217,13379217:205674 -k1,11420:10451303,13379217:205673 -k1,11420:17722413,13379217:205674 -k1,11420:18544125,13379217:205674 -k1,11420:19768884,13379217:205674 -k1,11420:21341639,13379217:205674 -k1,11420:22206604,13379217:205673 -$1,11420:22206604,13379217 -$1,11420:22709265,13379217 -k1,11420:22914939,13379217:205674 -k1,11420:24312058,13379217:205674 -$1,11420:24312058,13379217 -$1,11420:24863871,13379217 -k1,11420:25069544,13379217:205673 -k1,11420:28623452,13379217:205674 -k1,11420:31773659,13379217:205674 -k1,11420:32583029,13379217:0 -) -(1,11421:6630773,14220705:25952256,513147,134348 -k1,11420:7899059,14220705:249201 -k1,11420:10672706,14220705:249200 -k1,11420:12942382,14220705:249201 -k1,11420:13874467,14220705:249200 -k1,11420:16910914,14220705:249201 -k1,11420:18292576,14220705:249200 -k1,11420:19289543,14220705:249201 -k1,11420:22086128,14220705:249201 -k1,11420:23096856,14220705:249200 -k1,11420:24365142,14220705:249201 -k1,11420:29625225,14220705:249200 -k1,11420:31563944,14220705:249201 -k1,11420:32583029,14220705:0 -) -(1,11421:6630773,15062193:25952256,513147,134348 -k1,11420:9200562,15062193:134471 -k1,11420:11345679,15062193:134472 -k1,11420:12612612,15062193:134471 -k1,11420:13494850,15062193:134472 -k1,11420:15142547,15062193:134471 -k1,11420:16224670,15062193:134472 -k1,11420:17543377,15062193:134471 -k1,11420:19522032,15062193:134472 -k1,11420:21401071,15062193:134471 -k1,11420:22554628,15062193:134472 -k1,11420:24261308,15062193:134471 -k1,11420:26323194,15062193:134472 -k1,11420:27449225,15062193:134471 -k1,11420:29096923,15062193:134472 -k1,11420:30179045,15062193:134471 -k1,11420:31079633,15062193:134472 -k1,11421:32583029,15062193:0 -) -(1,11421:6630773,15903681:25952256,505283,134348 -k1,11420:8842613,15903681:154010 -k1,11420:11977199,15903681:154009 -k1,11420:15701610,15903681:154010 -k1,11420:18870930,15903681:154009 -k1,11420:20518506,15903681:154010 -k1,11420:21358678,15903681:154010 -k1,11420:24502439,15903681:154009 -k1,11420:25847894,15903681:154010 -k1,11420:29448441,15903681:154009 -k1,11420:31089463,15903681:154010 -k1,11420:32583029,15903681:0 -) -(1,11421:6630773,16745169:25952256,513147,134348 -k1,11420:7531389,16745169:214454 -k1,11420:10143805,16745169:214454 -k1,11420:11554946,16745169:214454 -k1,11420:14671990,16745169:214454 -k1,11420:15545736,16745169:214454 -k1,11420:18479279,16745169:214454 -k1,11420:20705687,16745169:214453 -k1,11420:22295742,16745169:214454 -k1,11420:23666906,16745169:214454 -k1,11420:25453569,16745169:214454 -k1,11420:26724463,16745169:214454 -k1,11420:29726163,16745169:214454 -k1,11420:31132062,16745169:214454 -k1,11420:32583029,16745169:0 -) -(1,11421:6630773,17586657:25952256,505283,134348 -k1,11420:8233935,17586657:222318 -k1,11420:11769753,17586657:222318 -k1,11420:12523569,17586657:222319 -k1,11420:15480704,17586657:222318 -k1,11420:16464550,17586657:222318 -k1,11420:18775500,17586657:222318 -k1,11420:19649247,17586657:222319 -k1,11420:21601060,17586657:222318 -k1,11420:25009083,17586657:222318 -k1,11420:26681057,17586657:222318 -k1,11420:27361473,17586657:222319 -k1,11420:30057120,17586657:222318 -k1,11420:31563944,17586657:222318 -k1,11420:32583029,17586657:0 -) -(1,11421:6630773,18428145:25952256,505283,134348 -k1,11420:7877719,18428145:190506 -k1,11420:9684343,18428145:190506 -k1,11420:11007312,18428145:190507 -k1,11420:12673033,18428145:190506 -k1,11420:13882624,18428145:190506 -k1,11420:15726603,18428145:190506 -k1,11420:19245684,18428145:190507 -k1,11420:20052228,18428145:190506 -k1,11420:21008850,18428145:190506 -k1,11420:22476653,18428145:190506 -k1,11420:24555251,18428145:190506 -k1,11420:26664652,18428145:190507 -k1,11420:27874243,18428145:190506 -(1,11420:27874243,18428145:0,452978,115847 -r1,11420:29639356,18428145:1765113,568825,115847 -k1,11420:27874243,18428145:-1765113 -) -(1,11420:27874243,18428145:1765113,452978,115847 -k1,11420:27874243,18428145:3277 -h1,11420:29636079,18428145:0,411205,112570 -) -k1,11420:29829862,18428145:190506 -k1,11421:32583029,18428145:0 -) -(1,11421:6630773,19269633:25952256,513147,134348 -k1,11420:7314969,19269633:152699 -k1,11420:10053063,19269633:152699 -k1,11420:10857189,19269633:152698 -k1,11420:12780015,19269633:152699 -k1,11420:14860128,19269633:152699 -k1,11420:16488042,19269633:152699 -k1,11420:18455433,19269633:152699 -k1,11420:20002083,19269633:152699 -k1,11420:24226534,19269633:152699 -k1,11420:26400362,19269633:152698 -k1,11420:28918911,19269633:152699 -k1,11420:30768337,19269633:152699 -k1,11420:32583029,19269633:0 -) -(1,11421:6630773,20111121:25952256,505283,134348 -k1,11420:8554509,20111121:185721 -k1,11420:11181446,20111121:185721 -k1,11420:14293350,20111121:185721 -k1,11420:15240600,20111121:185722 -(1,11420:15240600,20111121:0,414482,115847 -r1,11420:15950578,20111121:709978,530329,115847 -k1,11420:15240600,20111121:-709978 -) -(1,11420:15240600,20111121:709978,414482,115847 -k1,11420:15240600,20111121:3277 -h1,11420:15947301,20111121:0,411205,112570 -) -k1,11420:16343393,20111121:185721 -k1,11420:18480776,20111121:185721 -k1,11420:20108944,20111121:185721 -k1,11420:22499952,20111121:185721 -k1,11420:23337101,20111121:185721 -k1,11420:26376261,20111121:185722 -k1,11420:27244867,20111121:185721 -k1,11420:32051532,20111121:185721 -k1,11420:32583029,20111121:0 -) -(1,11421:6630773,20952609:25952256,505283,134348 -k1,11420:8281887,20952609:256508 -k1,11420:9189822,20952609:256507 -k1,11420:14305825,20952609:256508 -k1,11420:16086700,20952609:256508 -k1,11420:20414960,20952609:256508 -k1,11420:22369505,20952609:256507 -k1,11420:24807707,20952609:256508 -k1,11420:26636424,20952609:256508 -k1,11420:28707623,20952609:256507 -k1,11420:31896867,20952609:256508 -k1,11420:32583029,20952609:0 -) -(1,11421:6630773,21794097:25952256,505283,134348 -g1,11420:9400324,21794097 -g1,11420:12635181,21794097 -g1,11420:14830637,21794097 -g1,11420:16314372,21794097 -(1,11420:16314372,21794097:0,414482,115847 -r1,11420:17024350,21794097:709978,530329,115847 -k1,11420:16314372,21794097:-709978 -) -(1,11420:16314372,21794097:709978,414482,115847 -k1,11420:16314372,21794097:3277 -h1,11420:17021073,21794097:0,411205,112570 -) -g1,11420:17223579,21794097 -g1,11420:19433453,21794097 -g1,11420:21107897,21794097 -g1,11420:22817076,21794097 -k1,11421:32583029,21794097:7094706 -g1,11421:32583029,21794097 -) -(1,11422:6630773,23885357:25952256,555811,139132 -(1,11422:6630773,23885357:2450326,534184,12975 -g1,11422:6630773,23885357 -g1,11422:9081099,23885357 -) -g1,11422:13303387,23885357 -k1,11422:32583029,23885357:16292249 -g1,11422:32583029,23885357 -) -(1,11425:6630773,25120061:25952256,513147,134348 -k1,11424:8017336,25120061:189876 -k1,11424:9808911,25120061:189875 -k1,11424:13303768,25120061:189876 -k1,11424:15006869,25120061:189875 -k1,11424:18604617,25120061:189876 -k1,11424:21040411,25120061:189875 -k1,11424:22928325,25120061:189876 -k1,11424:25642647,25120061:189875 -k1,11424:27395557,25120061:189876 -k1,11424:28604517,25120061:189875 -k1,11424:31678632,25120061:189876 -k1,11425:32583029,25120061:0 -) -(1,11425:6630773,25961549:25952256,513147,138281 -k1,11424:8650358,25961549:291401 -k1,11424:9473256,25961549:291401 -k1,11424:10783742,25961549:291401 -k1,11424:13340723,25961549:291401 -k1,11424:14579775,25961549:291401 -k1,11424:16472876,25961549:291401 -k1,11424:20354995,25961549:291402 -k1,11424:21274231,25961549:291401 -k1,11424:22584717,25961549:291401 -k1,11424:25760357,25961549:291401 -k1,11424:28471347,25961549:291401 -$1,11424:28471347,25961549 -$1,11424:28974008,25961549 -k1,11424:29265409,25961549:291401 -k1,11424:30748255,25961549:291401 -$1,11424:30748255,25961549 -$1,11424:31300068,25961549 -k1,11424:31591469,25961549:291401 -k1,11424:32583029,25961549:0 -) -(1,11425:6630773,26803037:25952256,530347,134348 -k1,11424:10688723,26803037:248342 -k1,11424:11623227,26803037:248342 -k1,11424:14862632,26803037:248342 -k1,11424:15920344,26803037:248342 -k1,11424:17341125,26803037:248342 -k1,11424:21083191,26803037:248342 -k1,11424:22151388,26803037:248342 -$1,11424:22948306,26803037 -(1,11424:22948306,26527756:343802,255066,0 -) -$1,11424:23292108,26803037 -k1,11424:23747544,26803037:248342 -k1,11424:25568095,26803037:248342 -k1,11424:29175157,26803037:248342 -k1,11424:32583029,26803037:0 -) -(1,11425:6630773,27644525:25952256,505283,134348 -k1,11424:9397757,27644525:190764 -k1,11424:10580082,27644525:190765 -k1,11424:13554815,27644525:190764 -k1,11424:14361618,27644525:190765 -k1,11424:17380915,27644525:190764 -k1,11424:18763124,27644525:190764 -k1,11424:21512415,27644525:190765 -k1,11424:25279479,27644525:190764 -k1,11424:26512266,27644525:190765 -k1,11424:29538117,27644525:190764 -k1,11424:30344920,27644525:190765 -k1,11424:31554769,27644525:190764 -k1,11425:32583029,27644525:0 -) -(1,11425:6630773,28486013:25952256,513147,134348 -k1,11424:7760916,28486013:280796 -k1,11424:10287632,28486013:280797 -k1,11424:11227720,28486013:280796 -k1,11424:15420361,28486013:280797 -k1,11424:16720242,28486013:280796 -$1,11424:16720242,28486013 -$1,11424:17222903,28486013 -k1,11424:17503699,28486013:280796 -k1,11424:19795141,28486013:280797 -k1,11424:21067497,28486013:280796 -k1,11424:23933688,28486013:280796 -k1,11424:24865913,28486013:280797 -k1,11424:27174393,28486013:280796 -k1,11424:29744363,28486013:280797 -k1,11424:30381019,28486013:280796 -k1,11424:32583029,28486013:0 -) -(1,11425:6630773,29327501:25952256,513147,138281 -k1,11424:8488578,29327501:169598 -k1,11424:9849620,29327501:169597 -$1,11424:9849620,29327501 -$1,11424:10401433,29327501 -k1,11424:10571031,29327501:169598 -k1,11424:12751274,29327501:169598 -k1,11424:13572299,29327501:169597 -k1,11424:14760982,29327501:169598 -k1,11424:17115549,29327501:169597 -k1,11424:19889548,29327501:169598 -k1,11424:22720563,29327501:169598 -k1,11424:23421657,29327501:169597 -k1,11424:24610340,29327501:169598 -k1,11424:27092704,29327501:169598 -k1,11424:29508220,29327501:169597 -k1,11424:30337110,29327501:169598 -k1,11425:32583029,29327501:0 -) -(1,11425:6630773,30168989:25952256,513147,134348 -k1,11424:8721788,30168989:212098 -k1,11424:9704590,30168989:212099 -k1,11424:12989016,30168989:212098 -k1,11424:13860407,30168989:212099 -k1,11424:15091590,30168989:212098 -k1,11424:18206279,30168989:212099 -k1,11424:22619890,30168989:212098 -k1,11424:23448027,30168989:212099 -k1,11424:26240277,30168989:212098 -k1,11424:29074470,30168989:212099 -k1,11424:30571074,30168989:212098 -k1,11424:32583029,30168989:0 -) -(1,11425:6630773,31010477:25952256,513147,134348 -k1,11424:7805943,31010477:156085 -k1,11424:11996424,31010477:156085 -k1,11424:12811801,31010477:156085 -k1,11424:15280651,31010477:156084 -k1,11424:17218005,31010477:156085 -k1,11424:19580687,31010477:156085 -k1,11424:21551464,31010477:156085 -k1,11424:22358977,31010477:156085 -k1,11424:22870921,31010477:156084 -k1,11424:26434878,31010477:156085 -k1,11424:28836882,31010477:156085 -k1,11424:31563944,31010477:156085 -k1,11424:32583029,31010477:0 -) -(1,11425:6630773,31851965:25952256,513147,134348 -k1,11424:8850074,31851965:198826 -k1,11424:9708192,31851965:198826 -k1,11424:10926103,31851965:198826 -k1,11424:13649377,31851965:198827 -k1,11424:15636025,31851965:198826 -k1,11424:17877608,31851965:198826 -k1,11424:18692472,31851965:198826 -k1,11424:19910383,31851965:198826 -k1,11424:21560176,31851965:198826 -k1,11424:22831172,31851965:198827 -k1,11424:24522908,31851965:198826 -k1,11424:25788005,31851965:198826 -k1,11424:28337607,31851965:198826 -k1,11424:32583029,31851965:0 -) -(1,11425:6630773,32693453:25952256,505283,134348 -k1,11424:7463474,32693453:204866 -k1,11424:9370309,32693453:204865 -k1,11424:11703784,32693453:204866 -k1,11424:13606687,32693453:204865 -k1,11424:15546946,32693453:204866 -k1,11424:18584932,32693453:204865 -k1,11424:22861550,32693453:204866 -k1,11424:25380491,32693453:204865 -k1,11424:27951207,32693453:204866 -k1,11424:29175157,32693453:204865 -k1,11424:32583029,32693453:0 -) -(1,11425:6630773,33534941:25952256,505283,126483 -g1,11424:8818364,33534941 -g1,11424:10087141,33534941 -g1,11424:11352641,33534941 -g1,11424:13594627,33534941 -g1,11424:14409894,33534941 -g1,11424:15628208,33534941 -g1,11424:18702501,33534941 -g1,11424:20352697,33534941 -g1,11424:21684388,33534941 -g1,11424:23082271,33534941 -g1,11424:24029266,33534941 -g1,11424:26986905,33534941 -g1,11424:27802172,33534941 -k1,11425:32583029,33534941:212998 -g1,11425:32583029,33534941 -) -(1,11426:6630773,35626201:25952256,555811,12975 -(1,11426:6630773,35626201:2450326,534184,12975 -g1,11426:6630773,35626201 -g1,11426:9081099,35626201 -) -k1,11426:32583028,35626201:20630600 -g1,11426:32583028,35626201 -) -(1,11430:6630773,36860905:25952256,513147,126483 -k1,11428:8242350,36860905:190756 -k1,11428:9452192,36860905:190757 -k1,11428:11250546,36860905:190756 -k1,11428:12828045,36860905:190757 -k1,11428:14716839,36860905:190756 -k1,11428:17970749,36860905:190757 -k1,11428:18844390,36860905:190756 -k1,11428:21385267,36860905:190756 -k1,11428:22680306,36860905:190757 -k1,11428:23618828,36860905:190756 -k1,11428:26031256,36860905:190757 -k1,11428:26983540,36860905:190756 -k1,11428:29242613,36860905:190757 -k1,11428:30092661,36860905:190756 -k1,11428:32583029,36860905:0 -) -(1,11430:6630773,37702393:25952256,505283,134348 -k1,11428:7338121,37702393:219760 -k1,11428:8835199,37702393:219781 -k1,11428:10159262,37702393:219781 -k1,11428:11126809,37702393:219781 -k1,11428:13158005,37702393:219781 -k1,11428:15838008,37702393:219781 -k1,11428:18245381,37702393:219781 -k1,11428:18821022,37702393:219781 -k1,11428:21027199,37702393:219781 -k1,11428:22438425,37702393:219781 -k1,11428:24092134,37702393:219781 -k1,11428:26662036,37702393:219781 -k1,11428:27564702,37702393:219781 -k1,11428:30847636,37702393:219781 -k1,11428:32583029,37702393:0 -) -(1,11430:6630773,38543881:25952256,513147,134348 -k1,11428:9576319,38543881:183203 -k1,11428:12249890,38543881:183203 -k1,11428:14024306,38543881:183202 -k1,11428:17400423,38543881:183203 -k1,11428:19570022,38543881:183203 -k1,11428:22622391,38543881:183203 -k1,11428:23909876,38543881:183203 -k1,11428:24840845,38543881:183203 -k1,11428:27859134,38543881:183202 -k1,11428:29233782,38543881:183203 -k1,11428:31299834,38543881:183203 -k1,11428:32583029,38543881:0 -) -(1,11430:6630773,39385369:25952256,513147,126483 -k1,11428:9103971,39385369:156500 -k1,11428:11815720,39385369:156500 -k1,11428:13353064,39385369:156500 -k1,11428:15037207,39385369:156499 -k1,11428:15549567,39385369:156500 -k1,11428:16562623,39385369:156500 -k1,11428:17378415,39385369:156500 -k1,11428:20508939,39385369:156500 -k1,11428:21856884,39385369:156500 -k1,11428:23731738,39385369:156500 -k1,11428:24504276,39385369:156500 -k1,11428:25679860,39385369:156499 -k1,11428:29202289,39385369:156500 -k1,11428:30018081,39385369:156500 -k1,11428:31193666,39385369:156500 -k1,11428:32583029,39385369:0 -) -(1,11430:6630773,40226857:25952256,513147,134348 -g1,11428:11494855,40226857 -g1,11428:14069109,40226857 -g1,11428:15835959,40226857 -g1,11428:17779101,40226857 -g1,11428:20200001,40226857 -g1,11428:21050658,40226857 -g1,11428:22268972,40226857 -g1,11428:25417976,40226857 -g1,11428:27879508,40226857 -k1,11430:32583029,40226857:4703521 -g1,11430:32583029,40226857 -) -(1,11431:6630773,42318117:25952256,555811,12975 -(1,11431:6630773,42318117:2450326,534184,12975 -g1,11431:6630773,42318117 -g1,11431:9081099,42318117 -) -g1,11431:10708162,42318117 -k1,11431:32583029,42318117:17284922 -g1,11431:32583029,42318117 -) -(1,11434:6630773,43552821:25952256,513147,134348 -k1,11433:7795586,43552821:211264 -k1,11433:9482065,43552821:211264 -k1,11433:12783352,43552821:211264 -k1,11433:14849940,43552821:211264 -k1,11433:16080289,43552821:211264 -k1,11433:20219127,43552821:211265 -k1,11433:21089683,43552821:211264 -k1,11433:22320032,43552821:211264 -k1,11433:25433886,43552821:211264 -k1,11433:26304442,43552821:211264 -k1,11433:29408465,43552821:211264 -k1,11433:32583029,43552821:0 -) -(1,11434:6630773,44394309:25952256,513147,134348 -(1,11433:6837867,44394309:0,414482,115847 -r1,11433:7899556,44394309:1061689,530329,115847 -k1,11433:6837867,44394309:-1061689 -) -(1,11433:6837867,44394309:1061689,414482,115847 -k1,11433:6837867,44394309:3277 -h1,11433:7896279,44394309:0,411205,112570 -) -k1,11433:8491672,44394309:211352 -k1,11433:9650675,44394309:211352 -k1,11433:12523444,44394309:211352 -k1,11433:14524584,44394309:211352 -k1,11433:17899359,44394309:211352 -k1,11433:20979877,44394309:211352 -(1,11433:20979877,44394309:0,414482,122846 -r1,11433:23096702,44394309:2116825,537328,122846 -k1,11433:20979877,44394309:-2116825 -) -(1,11433:20979877,44394309:2116825,414482,122846 -k1,11433:20979877,44394309:3277 -h1,11433:23093425,44394309:0,411205,112570 -) -k1,11433:23308054,44394309:211352 -k1,11433:25012972,44394309:211352 -k1,11433:25910486,44394309:211352 -k1,11433:27620646,44394309:211352 -k1,11433:29023443,44394309:211352 -k1,11433:31426974,44394309:211352 -k1,11434:32583029,44394309:0 -) -] -(1,11435:32583029,45706769:0,0,0 -g1,11435:32583029,45706769 -) -) -] -(1,11435:6630773,47279633:25952256,0,0 -h1,11435:6630773,47279633:25952256,0,0 -) -] -h1,11435:4262630,4025873:0,0,0 -] -!23669 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11439:37855564,49800853:1179648,16384,0 +) +) +k1,11439:3078556,49800853:-34777008 +) +] +g1,11439:6630773,4812305 +k1,11439:25712890,4812305:17886740 +g1,11439:29057847,4812305 +g1,11439:29873114,4812305 +) +) +] +[1,11439:6630773,45706769:25952256,40108032,0 +(1,11439:6630773,45706769:25952256,40108032,0 +(1,11439:6630773,45706769:0,0,0 +g1,11439:6630773,45706769 +) +[1,11439:6630773,45706769:25952256,40108032,0 +(1,11422:6630773,6254097:25952256,505283,134348 +k1,11421:7593496,6254097:201195 +k1,11421:9687372,6254097:201196 +k1,11421:11586605,6254097:201195 +k1,11421:13177164,6254097:201196 +k1,11421:14853574,6254097:201195 +k1,11421:16564719,6254097:201195 +k1,11421:19426677,6254097:201196 +k1,11421:20389400,6254097:201195 +k1,11421:23398158,6254097:201196 +k1,11421:26826346,6254097:201195 +k1,11421:30202106,6254097:201196 +k1,11421:31896867,6254097:201195 +k1,11421:32583029,6254097:0 +) +(1,11422:6630773,7095585:25952256,513147,7863 +g1,11421:8446120,7095585 +g1,11421:9296777,7095585 +g1,11421:9851866,7095585 +k1,11422:32583029,7095585:20663502 +g1,11422:32583029,7095585 +) +(1,11423:6630773,9186845:25952256,555811,12975 +(1,11423:6630773,9186845:2450326,534184,12975 +g1,11423:6630773,9186845 +g1,11423:9081099,9186845 +) +k1,11423:32583028,9186845:21293104 +g1,11423:32583028,9186845 +) +(1,11426:6630773,10421549:25952256,505283,134348 +k1,11425:8837311,10421549:279124 +k1,11425:10396352,10421549:279123 +k1,11425:11694561,10421549:279124 +k1,11425:16048713,10421549:279123 +k1,11425:17010722,10421549:279124 +k1,11425:20097407,10421549:279123 +k1,11425:23011734,10421549:279124 +k1,11425:24680220,10421549:279123 +k1,11425:26969989,10421549:279124 +k1,11425:28440558,10421549:279124 +k1,11425:29738766,10421549:279123 +k1,11425:32583029,10421549:0 +) +(1,11426:6630773,11263037:25952256,505283,134348 +k1,11425:8952714,11263037:311296 +k1,11425:9915438,11263037:311296 +k1,11425:10974500,11263037:311296 +k1,11425:13774197,11263037:311295 +k1,11425:16561443,11263037:311296 +k1,11425:19623940,11263037:311296 +k1,11425:20291096,11263037:311296 +k1,11425:23113732,11263037:311296 +k1,11425:24076456,11263037:311296 +k1,11425:25406836,11263037:311295 +k1,11425:27934560,11263037:311296 +k1,11425:31090119,11263037:311296 +k1,11425:32583029,11263037:0 +) +(1,11426:6630773,12104525:25952256,513147,134348 +k1,11425:10461828,12104525:318981 +k1,11425:12478848,12104525:318982 +k1,11425:15074550,12104525:318981 +k1,11425:16079693,12104525:318981 +k1,11425:19237039,12104525:318982 +k1,11425:20931621,12104525:318981 +k1,11425:22595402,12104525:318982 +k1,11425:24198889,12104525:318981 +k1,11425:27280213,12104525:318981 +k1,11425:29609840,12104525:318982 +k1,11425:31966991,12104525:318981 +k1,11425:32583029,12104525:0 +) +(1,11426:6630773,12946013:25952256,513147,126483 +k1,11425:7990657,12946013:340799 +k1,11425:10916851,12946013:340799 +k1,11425:13768990,12946013:340799 +k1,11425:15242250,12946013:340798 +k1,11425:16330815,12946013:340799 +k1,11425:20481222,12946013:340799 +k1,11425:21583549,12946013:340799 +k1,11425:24686691,12946013:340799 +k1,11425:27147580,12946013:340799 +k1,11425:27975824,12946013:340656 +k1,11425:30062502,12946013:340799 +k1,11425:31896867,12946013:340799 +k1,11426:32583029,12946013:0 +) +(1,11426:6630773,13787501:25952256,505283,126483 +(1,11425:6630773,13787501:0,452978,115847 +r1,11425:15078410,13787501:8447637,568825,115847 +k1,11425:6630773,13787501:-8447637 +) +(1,11425:6630773,13787501:8447637,452978,115847 +k1,11425:6630773,13787501:3277 +h1,11425:15075133,13787501:0,411205,112570 +) +k1,11425:15466013,13787501:213933 +k1,11425:16812409,13787501:213934 +k1,11425:20270374,13787501:213933 +k1,11425:22369779,13787501:213934 +k1,11425:24199830,13787501:213933 +k1,11425:25029802,13787501:213934 +k1,11425:26262820,13787501:213933 +k1,11425:27754051,13787501:213934 +k1,11425:31931601,13787501:213933 +k1,11425:32583029,13787501:0 +) +(1,11426:6630773,14628989:25952256,513147,102891 +k1,11425:8785324,14628989:269080 +k1,11425:10734747,14628989:269080 +k1,11425:11619864,14628989:269079 +k1,11425:12908029,14628989:269080 +k1,11425:15862119,14628989:269080 +k1,11425:18058613,14628989:269080 +k1,11425:19431974,14628989:269079 +k1,11425:20986870,14628989:269080 +k1,11425:23216787,14628989:269080 +k1,11425:28653381,14628989:269080 +k1,11425:29731830,14628989:269079 +k1,11425:31019995,14628989:269080 +k1,11425:32583029,14628989:0 +) +(1,11426:6630773,15470477:25952256,505283,134348 +k1,11425:8650047,15470477:133803 +k1,11425:9775409,15470477:133802 +k1,11425:11422438,15470477:133803 +k1,11425:13254278,15470477:133802 +k1,11425:16195643,15470477:133803 +k1,11425:17718808,15470477:133802 +k1,11425:19863256,15470477:133803 +k1,11425:20648487,15470477:133803 +k1,11425:23626552,15470477:133802 +k1,11425:25944670,15470477:133803 +k1,11425:26976315,15470477:133802 +k1,11425:30680519,15470477:133803 +k1,11425:32583029,15470477:0 +) +(1,11426:6630773,16311965:25952256,513147,138281 +k1,11425:9351500,16311965:194314 +k1,11425:16611250,16311965:194314 +k1,11425:17421603,16311965:194315 +k1,11425:18635002,16311965:194314 +k1,11425:20196397,16311965:194314 +k1,11425:21050003,16311965:194314 +$1,11425:21050003,16311965 +$1,11425:21552664,16311965 +k1,11425:21746978,16311965:194314 +k1,11425:23132737,16311965:194314 +$1,11425:23132737,16311965 +$1,11425:23684550,16311965 +k1,11425:23878865,16311965:194315 +k1,11425:27421413,16311965:194314 +k1,11425:30560260,16311965:194314 +k1,11425:31563944,16311965:194314 +k1,11425:32583029,16311965:0 +) +(1,11426:6630773,17153453:25952256,513147,134348 +k1,11425:9349971,17153453:194751 +k1,11425:11565197,17153453:194751 +k1,11425:12442833,17153453:194751 +k1,11425:15424830,17153453:194751 +k1,11425:16752043,17153453:194751 +k1,11425:17694560,17153453:194751 +k1,11425:20436696,17153453:194752 +k1,11425:21392975,17153453:194751 +k1,11425:22606811,17153453:194751 +k1,11425:27812445,17153453:194751 +k1,11425:29696714,17153453:194751 +k1,11425:30910550,17153453:194751 +k1,11426:32583029,17153453:0 +) +(1,11426:6630773,17994941:25952256,513147,134348 +k1,11425:7768601,17994941:161997 +k1,11425:9941242,17994941:161996 +k1,11425:11235701,17994941:161997 +k1,11425:12145463,17994941:161996 +k1,11425:13820686,17994941:161997 +k1,11425:14930334,17994941:161997 +k1,11425:16276566,17994941:161996 +k1,11425:18282746,17994941:161997 +k1,11425:20189311,17994941:161997 +k1,11425:21370392,17994941:161996 +k1,11425:23104598,17994941:161997 +k1,11425:25194008,17994941:161996 +k1,11425:26347565,17994941:161997 +k1,11425:28022788,17994941:161997 +k1,11425:29132435,17994941:161996 +k1,11425:30060548,17994941:161997 +k1,11426:32583029,17994941:0 +) +(1,11426:6630773,18836429:25952256,505283,134348 +k1,11425:7839793,18836429:170274 +k1,11425:10990645,18836429:170275 +k1,11425:14731320,18836429:170274 +k1,11425:17916905,18836429:170274 +k1,11425:19580746,18836429:170275 +k1,11425:20437182,18836429:170274 +k1,11425:23597209,18836429:170275 +k1,11425:24958928,18836429:170274 +k1,11425:28575740,18836429:170274 +k1,11425:30233027,18836429:170275 +k1,11425:31896867,18836429:170274 +k1,11425:32583029,18836429:0 +) +(1,11426:6630773,19677917:25952256,513147,134348 +k1,11425:9189752,19677917:161017 +k1,11425:10547456,19677917:161017 +k1,11425:13611063,19677917:161017 +k1,11425:14431371,19677917:161016 +k1,11425:17311477,19677917:161017 +k1,11425:19484449,19677917:161017 +k1,11425:21021067,19677917:161017 +k1,11425:22338794,19677917:161017 +k1,11425:24072020,19677917:161017 +k1,11425:25289476,19677917:161016 +k1,11425:28237739,19677917:161017 +k1,11425:29590201,19677917:161017 +k1,11425:31202185,19677917:161017 +k1,11425:32583029,19677917:0 +) +(1,11426:6630773,20519405:25952256,505283,134348 +k1,11425:10191545,20519405:247272 +k1,11425:10970315,20519405:247273 +k1,11425:13952404,20519405:247272 +k1,11425:14961205,20519405:247273 +k1,11425:17297109,20519405:247272 +k1,11425:18195809,20519405:247272 +k1,11425:20172577,20519405:247273 +k1,11425:23605554,20519405:247272 +k1,11425:25302482,20519405:247272 +k1,11425:26007852,20519405:247273 +k1,11425:28728453,20519405:247272 +k1,11425:30260232,20519405:247273 +k1,11425:31526589,20519405:247272 +k1,11425:32583029,20519405:0 +) +(1,11426:6630773,21360893:25952256,505283,134348 +k1,11425:8472459,21360893:225568 +k1,11425:9830489,21360893:225568 +k1,11425:11531272,21360893:225568 +k1,11425:12775925,21360893:225568 +k1,11425:14654966,21360893:225568 +k1,11425:18209108,21360893:225568 +k1,11425:19050714,21360893:225568 +k1,11425:20042397,21360893:225567 +k1,11425:21545262,21360893:225568 +k1,11425:23658922,21360893:225568 +k1,11425:25803384,21360893:225568 +k1,11425:27048037,21360893:225568 +(1,11425:27048037,21360893:0,452978,115847 +r1,11425:28813150,21360893:1765113,568825,115847 +k1,11425:27048037,21360893:-1765113 +) +(1,11425:27048037,21360893:1765113,452978,115847 +k1,11425:27048037,21360893:3277 +h1,11425:28809873,21360893:0,411205,112570 +) +k1,11425:29038718,21360893:225568 +k1,11425:32051532,21360893:225568 +k1,11425:32583029,21360893:0 +) +(1,11426:6630773,22202381:25952256,513147,134348 +k1,11425:9431066,22202381:214898 +k1,11425:10297393,22202381:214899 +k1,11425:12282418,22202381:214898 +k1,11425:14424731,22202381:214899 +k1,11425:16114844,22202381:214898 +k1,11425:18144435,22202381:214899 +k1,11425:19753284,22202381:214898 +k1,11425:24039935,22202381:214899 +k1,11425:26275963,22202381:214898 +k1,11425:28856712,22202381:214899 +k1,11425:30768337,22202381:214898 +k1,11425:32583029,22202381:0 +) +(1,11426:6630773,23043869:25952256,505283,134348 +k1,11425:8619711,23043869:250923 +k1,11425:11311850,23043869:250923 +k1,11425:14488955,23043869:250922 +k1,11425:15501406,23043869:250923 +(1,11425:15501406,23043869:0,414482,115847 +r1,11425:16211384,23043869:709978,530329,115847 +k1,11425:15501406,23043869:-709978 +) +(1,11425:15501406,23043869:709978,414482,115847 +k1,11425:15501406,23043869:3277 +h1,11425:16208107,23043869:0,411205,112570 +) +k1,11425:16669401,23043869:250923 +k1,11425:18871986,23043869:250923 +k1,11425:20565356,23043869:250923 +k1,11425:23021566,23043869:250923 +k1,11425:23923916,23043869:250922 +k1,11425:27028277,23043869:250923 +k1,11425:27962085,23043869:250923 +k1,11425:32583029,23043869:0 +) +(1,11426:6630773,23885357:25952256,505283,134348 +k1,11425:7347141,23885357:184871 +k1,11425:8926618,23885357:184871 +k1,11425:9762917,23885357:184871 +k1,11425:14807283,23885357:184871 +k1,11425:16516521,23885357:184871 +k1,11425:20773143,23885357:184870 +k1,11425:22656052,23885357:184871 +k1,11425:25022617,23885357:184871 +k1,11425:26779697,23885357:184871 +k1,11425:28779260,23885357:184871 +k1,11425:31896867,23885357:184871 +k1,11425:32583029,23885357:0 +) +(1,11426:6630773,24726845:25952256,505283,134348 +g1,11425:9400324,24726845 +g1,11425:12635181,24726845 +g1,11425:14830637,24726845 +g1,11425:16314372,24726845 +(1,11425:16314372,24726845:0,414482,115847 +r1,11425:17024350,24726845:709978,530329,115847 +k1,11425:16314372,24726845:-709978 +) +(1,11425:16314372,24726845:709978,414482,115847 +k1,11425:16314372,24726845:3277 +h1,11425:17021073,24726845:0,411205,112570 +) +g1,11425:17223579,24726845 +g1,11425:19433453,24726845 +g1,11425:21107897,24726845 +g1,11425:22817076,24726845 +k1,11426:32583029,24726845:7094706 +g1,11426:32583029,24726845 +) +(1,11427:6630773,26818105:25952256,555811,139132 +(1,11427:6630773,26818105:2450326,534184,12975 +g1,11427:6630773,26818105 +g1,11427:9081099,26818105 +) +g1,11427:13303387,26818105 +k1,11427:32583029,26818105:16292249 +g1,11427:32583029,26818105 +) +(1,11430:6630773,28052809:25952256,513147,134348 +k1,11429:7987308,28052809:159848 +k1,11429:9748856,28052809:159848 +k1,11429:13213686,28052809:159849 +k1,11429:14886760,28052809:159848 +k1,11429:18454480,28052809:159848 +k1,11429:20860247,28052809:159848 +k1,11429:22718133,28052809:159848 +k1,11429:25402428,28052809:159848 +k1,11429:27125311,28052809:159849 +k1,11429:28304244,28052809:159848 +k1,11429:31348331,28052809:159848 +k1,11430:32583029,28052809:0 +) +(1,11430:6630773,28894297:25952256,513147,138281 +k1,11429:8238022,28894297:209366 +k1,11429:8978884,28894297:209365 +k1,11429:10207335,28894297:209366 +k1,11429:12682280,28894297:209365 +k1,11429:13839297,28894297:209366 +k1,11429:15650363,28894297:209366 +k1,11429:19450445,28894297:209365 +k1,11429:20287646,28894297:209366 +k1,11429:21516096,28894297:209365 +k1,11429:24609701,28894297:209366 +k1,11429:27238656,28894297:209366 +$1,11429:27238656,28894297 +$1,11429:27741317,28894297 +k1,11429:27950682,28894297:209365 +k1,11429:29351493,28894297:209366 +$1,11429:29351493,28894297 +$1,11429:29903306,28894297 +k1,11429:30112671,28894297:209365 +k1,11429:31313597,28894297:209366 +k1,11430:32583029,28894297:0 +) +(1,11430:6630773,29735785:25952256,530347,134348 +k1,11429:9593500,29735785:209560 +k1,11429:10489223,29735785:209561 +k1,11429:13689846,29735785:209560 +k1,11429:14708776,29735785:209560 +k1,11429:16090775,29735785:209560 +k1,11429:19794060,29735785:209561 +k1,11429:20823475,29735785:209560 +$1,11429:21620393,29735785 +(1,11429:21620393,29460504:343802,255066,0 +) +$1,11429:21964195,29735785 +k1,11429:22380849,29735785:209560 +k1,11429:24162618,29735785:209560 +k1,11429:27730899,29735785:209561 +k1,11429:31348331,29735785:209560 +k1,11430:32583029,29735785:0 +) +(1,11430:6630773,30577273:25952256,505283,134348 +k1,11429:8408164,30577273:222877 +k1,11429:9622601,30577273:222877 +k1,11429:12629447,30577273:222877 +k1,11429:13468362,30577273:222877 +k1,11429:16519772,30577273:222877 +k1,11429:17934095,30577273:222878 +k1,11429:20715498,30577273:222877 +k1,11429:24514675,30577273:222877 +k1,11429:25779574,30577273:222877 +k1,11429:28837538,30577273:222877 +k1,11429:29676453,30577273:222877 +k1,11429:30918415,30577273:222877 +k1,11429:32583029,30577273:0 +) +(1,11430:6630773,31418761:25952256,513147,134348 +k1,11429:9092961,31418761:216269 +k1,11429:9968521,31418761:216268 +k1,11429:14096634,31418761:216269 +k1,11429:15331988,31418761:216269 +$1,11429:15331988,31418761 +$1,11429:15834649,31418761 +k1,11429:16050917,31418761:216268 +k1,11429:18277831,31418761:216269 +k1,11429:19485660,31418761:216269 +k1,11429:22287324,31418761:216269 +k1,11429:23155020,31418761:216268 +k1,11429:25398973,31418761:216269 +k1,11429:27904415,31418761:216269 +k1,11429:28476543,31418761:216268 +k1,11429:30894822,31418761:216269 +k1,11429:32583029,31418761:0 +) +(1,11430:6630773,32260249:25952256,513147,138281 +k1,11429:8006576,32260249:184358 +$1,11429:8006576,32260249 +$1,11429:8558389,32260249 +k1,11429:8742746,32260249:184357 +k1,11429:10937749,32260249:184358 +k1,11429:11773534,32260249:184357 +k1,11429:12976977,32260249:184358 +k1,11429:15346305,32260249:184358 +k1,11429:18135063,32260249:184357 +k1,11429:20980838,32260249:184358 +k1,11429:21696693,32260249:184358 +k1,11429:22900135,32260249:184357 +k1,11429:25397259,32260249:184358 +k1,11429:27827535,32260249:184357 +k1,11429:28671185,32260249:184358 +k1,11429:32583029,32260249:0 +) +(1,11430:6630773,33101737:25952256,513147,134348 +k1,11429:7691741,33101737:290265 +k1,11429:11054334,33101737:290265 +k1,11429:12003891,33101737:290265 +k1,11429:13313241,33101737:290265 +k1,11429:16506096,33101737:290265 +k1,11429:20997874,33101737:290265 +k1,11429:21904177,33101737:290265 +k1,11429:24774594,33101737:290265 +k1,11429:27686953,33101737:290265 +k1,11429:29261724,33101737:290265 +k1,11429:31563944,33101737:290265 +k1,11429:32583029,33101737:0 +) +(1,11430:6630773,33943225:25952256,513147,134348 +k1,11429:10928087,33943225:262918 +k1,11429:11850298,33943225:262919 +k1,11429:14425982,33943225:262918 +k1,11429:16470170,33943225:262919 +k1,11429:18939685,33943225:262918 +k1,11429:21017296,33943225:262919 +k1,11429:21931642,33943225:262918 +k1,11429:22550421,33943225:262919 +k1,11429:26221211,33943225:262918 +k1,11429:28730049,33943225:262919 +k1,11429:31563944,33943225:262918 +k1,11429:32583029,33943225:0 +) +(1,11430:6630773,34784713:25952256,513147,134348 +k1,11429:8850074,34784713:198826 +k1,11429:9708192,34784713:198826 +k1,11429:10926103,34784713:198826 +k1,11429:13649377,34784713:198827 +k1,11429:15636025,34784713:198826 +k1,11429:17877608,34784713:198826 +k1,11429:18692472,34784713:198826 +k1,11429:19910383,34784713:198826 +k1,11429:21560176,34784713:198826 +k1,11429:22831172,34784713:198827 +k1,11429:24522908,34784713:198826 +k1,11429:25788005,34784713:198826 +k1,11429:28337607,34784713:198826 +k1,11429:32583029,34784713:0 +) +(1,11430:6630773,35626201:25952256,505283,134348 +k1,11429:7463474,35626201:204866 +k1,11429:9370309,35626201:204865 +k1,11429:11703784,35626201:204866 +k1,11429:13606687,35626201:204865 +k1,11429:15546946,35626201:204866 +k1,11429:18584932,35626201:204865 +k1,11429:22861550,35626201:204866 +k1,11429:25380491,35626201:204865 +k1,11429:27951207,35626201:204866 +k1,11429:29175157,35626201:204865 +k1,11429:32583029,35626201:0 +) +(1,11430:6630773,36467689:25952256,505283,126483 +g1,11429:8818364,36467689 +g1,11429:10087141,36467689 +g1,11429:11352641,36467689 +g1,11429:13594627,36467689 +g1,11429:14409894,36467689 +g1,11429:15628208,36467689 +g1,11429:18702501,36467689 +g1,11429:20352697,36467689 +g1,11429:21684388,36467689 +g1,11429:23082271,36467689 +g1,11429:24029266,36467689 +g1,11429:26986905,36467689 +g1,11429:27802172,36467689 +k1,11430:32583029,36467689:212998 +g1,11430:32583029,36467689 +) +(1,11431:6630773,38558949:25952256,555811,12975 +(1,11431:6630773,38558949:2450326,534184,12975 +g1,11431:6630773,38558949 +g1,11431:9081099,38558949 +) +k1,11431:32583028,38558949:20630600 +g1,11431:32583028,38558949 +) +(1,11435:6630773,39793653:25952256,513147,126483 +k1,11433:8242350,39793653:190756 +k1,11433:9452192,39793653:190757 +k1,11433:11250546,39793653:190756 +k1,11433:12828045,39793653:190757 +k1,11433:14716839,39793653:190756 +k1,11433:17970749,39793653:190757 +k1,11433:18844390,39793653:190756 +k1,11433:21385267,39793653:190756 +k1,11433:22680306,39793653:190757 +k1,11433:23618828,39793653:190756 +k1,11433:26031256,39793653:190757 +k1,11433:26983540,39793653:190756 +k1,11433:29242613,39793653:190757 +k1,11433:30092661,39793653:190756 +k1,11433:32583029,39793653:0 +) +(1,11435:6630773,40635141:25952256,505283,134348 +k1,11433:7338121,40635141:219760 +k1,11433:8835199,40635141:219781 +k1,11433:10159262,40635141:219781 +k1,11433:11126809,40635141:219781 +k1,11433:13158005,40635141:219781 +k1,11433:15838008,40635141:219781 +k1,11433:18245381,40635141:219781 +k1,11433:18821022,40635141:219781 +k1,11433:21027199,40635141:219781 +k1,11433:22438425,40635141:219781 +k1,11433:24092134,40635141:219781 +k1,11433:26662036,40635141:219781 +k1,11433:27564702,40635141:219781 +k1,11433:30847636,40635141:219781 +k1,11433:32583029,40635141:0 +) +(1,11435:6630773,41476629:25952256,513147,134348 +k1,11433:9576319,41476629:183203 +k1,11433:12249890,41476629:183203 +k1,11433:14024306,41476629:183202 +k1,11433:17400423,41476629:183203 +k1,11433:19570022,41476629:183203 +k1,11433:22622391,41476629:183203 +k1,11433:23909876,41476629:183203 +k1,11433:24840845,41476629:183203 +k1,11433:27859134,41476629:183202 +k1,11433:29233782,41476629:183203 +k1,11433:31299834,41476629:183203 +k1,11433:32583029,41476629:0 +) +(1,11435:6630773,42318117:25952256,513147,126483 +k1,11433:9103971,42318117:156500 +k1,11433:11815720,42318117:156500 +k1,11433:13353064,42318117:156500 +k1,11433:15037207,42318117:156499 +k1,11433:15549567,42318117:156500 +k1,11433:16562623,42318117:156500 +k1,11433:17378415,42318117:156500 +k1,11433:20508939,42318117:156500 +k1,11433:21856884,42318117:156500 +k1,11433:23731738,42318117:156500 +k1,11433:24504276,42318117:156500 +k1,11433:25679860,42318117:156499 +k1,11433:29202289,42318117:156500 +k1,11433:30018081,42318117:156500 +k1,11433:31193666,42318117:156500 +k1,11433:32583029,42318117:0 +) +(1,11435:6630773,43159605:25952256,513147,134348 +g1,11433:11494855,43159605 +g1,11433:14069109,43159605 +g1,11433:15835959,43159605 +g1,11433:17779101,43159605 +g1,11433:20200001,43159605 +g1,11433:21050658,43159605 +g1,11433:22268972,43159605 +g1,11433:25417976,43159605 +g1,11433:27879508,43159605 +k1,11435:32583029,43159605:4703521 +g1,11435:32583029,43159605 +) +] +(1,11439:32583029,45706769:0,0,0 +g1,11439:32583029,45706769 +) +) +] +(1,11439:6630773,47279633:25952256,0,0 +h1,11439:6630773,47279633:25952256,0,0 +) +] +h1,11439:4262630,4025873:0,0,0 +] +!22677 }215 -Input:1451:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1452:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1453:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1454:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1455:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1456:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {216 -[1,11483:4262630,47279633:28320399,43253760,0 -(1,11483:4262630,4025873:0,0,0 -[1,11483:-473657,4025873:25952256,0,0 -(1,11483:-473657,-710414:25952256,0,0 -h1,11483:-473657,-710414:0,0,0 -(1,11483:-473657,-710414:0,0,0 -(1,11483:-473657,-710414:0,0,0 -g1,11483:-473657,-710414 -(1,11483:-473657,-710414:65781,0,65781 -g1,11483:-407876,-710414 -[1,11483:-407876,-644633:0,0,0 +[1,11485:4262630,47279633:28320399,43253760,0 +(1,11485:4262630,4025873:0,0,0 +[1,11485:-473657,4025873:25952256,0,0 +(1,11485:-473657,-710414:25952256,0,0 +h1,11485:-473657,-710414:0,0,0 +(1,11485:-473657,-710414:0,0,0 +(1,11485:-473657,-710414:0,0,0 +g1,11485:-473657,-710414 +(1,11485:-473657,-710414:65781,0,65781 +g1,11485:-407876,-710414 +[1,11485:-407876,-644633:0,0,0 ] ) -k1,11483:-473657,-710414:-65781 +k1,11485:-473657,-710414:-65781 ) ) -k1,11483:25478599,-710414:25952256 -g1,11483:25478599,-710414 +k1,11485:25478599,-710414:25952256 +g1,11485:25478599,-710414 ) ] ) -[1,11483:6630773,47279633:25952256,43253760,0 -[1,11483:6630773,4812305:25952256,786432,0 -(1,11483:6630773,4812305:25952256,513147,134348 -(1,11483:6630773,4812305:25952256,513147,134348 -g1,11483:3078558,4812305 -[1,11483:3078558,4812305:0,0,0 -(1,11483:3078558,2439708:0,1703936,0 -k1,11483:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11483:2537886,2439708:1179648,16384,0 +[1,11485:6630773,47279633:25952256,43253760,0 +[1,11485:6630773,4812305:25952256,786432,0 +(1,11485:6630773,4812305:25952256,513147,134348 +(1,11485:6630773,4812305:25952256,513147,134348 +g1,11485:3078558,4812305 +[1,11485:3078558,4812305:0,0,0 +(1,11485:3078558,2439708:0,1703936,0 +k1,11485:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11485:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11483:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11485:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11483:3078558,4812305:0,0,0 -(1,11483:3078558,2439708:0,1703936,0 -g1,11483:29030814,2439708 -g1,11483:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11483:36151628,1915420:16384,1179648,0 +[1,11485:3078558,4812305:0,0,0 +(1,11485:3078558,2439708:0,1703936,0 +g1,11485:29030814,2439708 +g1,11485:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11485:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11483:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11485:37855564,2439708:1179648,16384,0 ) ) -k1,11483:3078556,2439708:-34777008 +k1,11485:3078556,2439708:-34777008 ) ] -[1,11483:3078558,4812305:0,0,0 -(1,11483:3078558,49800853:0,16384,2228224 -k1,11483:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11483:2537886,49800853:1179648,16384,0 +[1,11485:3078558,4812305:0,0,0 +(1,11485:3078558,49800853:0,16384,2228224 +k1,11485:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11485:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11483:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11485:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11483:3078558,4812305:0,0,0 -(1,11483:3078558,49800853:0,16384,2228224 -g1,11483:29030814,49800853 -g1,11483:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11483:36151628,51504789:16384,1179648,0 +[1,11485:3078558,4812305:0,0,0 +(1,11485:3078558,49800853:0,16384,2228224 +g1,11485:29030814,49800853 +g1,11485:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11485:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11483:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11485:37855564,49800853:1179648,16384,0 +) ) +k1,11485:3078556,49800853:-34777008 +) +] +g1,11485:6630773,4812305 +g1,11485:6630773,4812305 +g1,11485:10697281,4812305 +g1,11485:11496164,4812305 +g1,11485:12681054,4812305 +g1,11485:15925086,4812305 +g1,11485:16740353,4812305 +g1,11485:19649496,4812305 +k1,11485:31387652,4812305:11738156 ) -k1,11483:3078556,49800853:-34777008 ) ] -g1,11483:6630773,4812305 -g1,11483:6630773,4812305 -g1,11483:10697281,4812305 -g1,11483:11496164,4812305 -g1,11483:12681054,4812305 -g1,11483:15925086,4812305 -g1,11483:16740353,4812305 -g1,11483:19649496,4812305 -k1,11483:31387652,4812305:11738156 -) -) -] -[1,11483:6630773,45706769:25952256,40108032,0 -(1,11483:6630773,45706769:25952256,40108032,0 -(1,11483:6630773,45706769:0,0,0 -g1,11483:6630773,45706769 -) -[1,11483:6630773,45706769:25952256,40108032,0 -(1,11434:6630773,6254097:25952256,505283,126483 -k1,11433:8721366,6254097:180219 -(1,11433:8721366,6254097:0,414482,115847 -r1,11433:10838191,6254097:2116825,530329,115847 -k1,11433:8721366,6254097:-2116825 -) -(1,11433:8721366,6254097:2116825,414482,115847 -k1,11433:8721366,6254097:3277 -h1,11433:10834914,6254097:0,411205,112570 -) -k1,11433:11192079,6254097:180218 -k1,11433:13274808,6254097:180219 -(1,11433:13274808,6254097:0,452978,115847 -r1,11433:15743345,6254097:2468537,568825,115847 -k1,11433:13274808,6254097:-2468537 -) -(1,11433:13274808,6254097:2468537,452978,115847 -k1,11433:13274808,6254097:3277 -h1,11433:15740068,6254097:0,411205,112570 -) -k1,11433:16097233,6254097:180218 -k1,11433:19685324,6254097:180219 -k1,11433:22441763,6254097:180219 -(1,11433:22441763,6254097:0,452978,115847 -r1,11433:24910300,6254097:2468537,568825,115847 -k1,11433:22441763,6254097:-2468537 -) -(1,11433:22441763,6254097:2468537,452978,115847 -k1,11433:22441763,6254097:3277 -h1,11433:24907023,6254097:0,411205,112570 -) -k1,11433:25264188,6254097:180218 -k1,11433:26635852,6254097:180219 -k1,11433:29132768,6254097:180218 -(1,11433:29132768,6254097:0,452978,115847 -r1,11433:31601305,6254097:2468537,568825,115847 -k1,11433:29132768,6254097:-2468537 -) -(1,11433:29132768,6254097:2468537,452978,115847 -k1,11433:29132768,6254097:3277 -h1,11433:31598028,6254097:0,411205,112570 -) -k1,11433:31955194,6254097:180219 -k1,11433:32583029,6254097:0 -) -(1,11434:6630773,7095585:25952256,513147,126483 -g1,11433:8033243,7095585 -g1,11433:10511159,7095585 -g1,11433:11578740,7095585 -g1,11433:12910431,7095585 -g1,11433:14134643,7095585 -g1,11433:15664253,7095585 -g1,11433:17471080,7095585 -g1,11433:18661869,7095585 -g1,11433:22218507,7095585 -g1,11433:23985357,7095585 -g1,11433:25881313,7095585 -k1,11434:32583029,7095585:3658879 -g1,11434:32583029,7095585 -) -(1,11436:6630773,7937073:25952256,513147,134348 -h1,11435:6630773,7937073:983040,0,0 -k1,11435:8668193,7937073:236491 -k1,11435:9923770,7937073:236492 -k1,11435:13077268,7937073:236491 -k1,11435:14505204,7937073:236491 -k1,11435:15834180,7937073:236491 -k1,11435:16729964,7937073:236492 -k1,11435:17985540,7937073:236491 -k1,11435:21124621,7937073:236491 -k1,11435:22352673,7937073:236492 -k1,11435:24459562,7937073:236491 -k1,11435:25347481,7937073:236491 -k1,11435:27244654,7937073:236491 -k1,11435:28242674,7937073:236492 -k1,11435:31140582,7937073:236491 -k1,11435:32583029,7937073:0 -) -(1,11436:6630773,8778561:25952256,513147,134348 -k1,11435:7508754,8778561:226553 -k1,11435:10045451,8778561:226553 -k1,11435:11665955,8778561:226553 -k1,11435:14021117,8778561:226553 -k1,11435:15380132,8778561:226553 -k1,11435:17267367,8778561:226553 -k1,11435:18824300,8778561:226552 -k1,11435:19702281,8778561:226553 -k1,11435:21571166,8778561:226553 -k1,11435:23405317,8778561:226553 -k1,11435:24291162,8778561:226553 -k1,11435:27779442,8778561:226553 -k1,11435:31685186,8778561:226553 -k1,11435:32583029,8778561:0 -) -(1,11436:6630773,9620049:25952256,513147,134348 -k1,11435:9727450,9620049:227511 -k1,11435:10614253,9620049:227511 -k1,11435:11197624,9620049:227511 -k1,11435:12702432,9620049:227511 -k1,11435:14405158,9620049:227511 -k1,11435:17402220,9620049:227511 -k1,11435:20460885,9620049:227510 -k1,11435:21304434,9620049:227511 -k1,11435:23224085,9620049:227511 -k1,11435:25148978,9620049:227511 -k1,11435:27073216,9620049:227511 -k1,11435:29896608,9620049:227511 -k1,11435:31966991,9620049:227511 -k1,11435:32583029,9620049:0 -) -(1,11436:6630773,10461537:25952256,513147,126483 -k1,11435:8922214,10461537:285384 -k1,11435:10988867,10461537:285384 -k1,11435:13952707,10461537:285384 -k1,11435:15953824,10461537:285384 -k1,11435:16697305,10461537:285384 -k1,11435:19612649,10461537:285384 -k1,11435:20549461,10461537:285384 -k1,11435:22764224,10461537:285383 -k1,11435:23405468,10461537:285384 -k1,11435:24968149,10461537:285384 -k1,11435:26607507,10461537:285384 -k1,11435:30251611,10461537:285384 -k1,11435:31490544,10461537:285384 -k1,11435:32583029,10461537:0 -) -(1,11436:6630773,11303025:25952256,513147,126483 -k1,11435:9584765,11303025:258496 -(1,11435:9584765,11303025:0,452978,122846 -r1,11435:12405014,11303025:2820249,575824,122846 -k1,11435:9584765,11303025:-2820249 -) -(1,11435:9584765,11303025:2820249,452978,122846 -k1,11435:9584765,11303025:3277 -h1,11435:12401737,11303025:0,411205,112570 -) -k1,11435:12663510,11303025:258496 -k1,11435:13573434,11303025:258496 -k1,11435:15761310,11303025:258496 -k1,11435:17038891,11303025:258496 -k1,11435:19986329,11303025:258496 -k1,11435:21192477,11303025:258497 -k1,11435:21806833,11303025:258496 -k1,11435:23516296,11303025:258496 -k1,11435:25660263,11303025:258496 -k1,11435:27023041,11303025:258496 -k1,11435:28029303,11303025:258496 -k1,11435:31510860,11303025:258496 -k1,11435:32583029,11303025:0 -) -(1,11436:6630773,12144513:25952256,505283,126483 -g1,11435:8115818,12144513 -g1,11435:10665168,12144513 -g1,11435:11550559,12144513 -k1,11436:32583030,12144513:20327304 -g1,11436:32583030,12144513 -) -v1,11438:6630773,13259208:0,393216,0 -(1,11442:6630773,13574304:25952256,708312,196608 -g1,11442:6630773,13574304 -g1,11442:6630773,13574304 -g1,11442:6434165,13574304 -(1,11442:6434165,13574304:0,708312,196608 -r1,11442:32779637,13574304:26345472,904920,196608 -k1,11442:6434165,13574304:-26345472 -) -(1,11442:6434165,13574304:26345472,708312,196608 -[1,11442:6630773,13574304:25952256,511704,0 -(1,11440:6630773,13466826:25952256,404226,107478 -(1,11439:6630773,13466826:0,0,0 -g1,11439:6630773,13466826 -g1,11439:6630773,13466826 -g1,11439:6303093,13466826 -(1,11439:6303093,13466826:0,0,0 -) -g1,11439:6630773,13466826 -) -k1,11440:6630773,13466826:0 -h1,11440:9159938,13466826:0,0,0 -k1,11440:32583030,13466826:23423092 -g1,11440:32583030,13466826 -) -] -) -g1,11442:32583029,13574304 -g1,11442:6630773,13574304 -g1,11442:6630773,13574304 -g1,11442:32583029,13574304 -g1,11442:32583029,13574304 -) -h1,11442:6630773,13770912:0,0,0 -(1,11445:6630773,23347654:25952256,9062689,0 -k1,11445:10523651,23347654:3892878 -h1,11444:10523651,23347654:0,0,0 -(1,11444:10523651,23347654:18166500,9062689,0 -(1,11444:10523651,23347654:18167381,9062712,0 -(1,11444:10523651,23347654:18167381,9062712,0 -(1,11444:10523651,23347654:0,9062712,0 -(1,11444:10523651,23347654:0,14155776,0 -(1,11444:10523651,23347654:28377088,14155776,0 -) -k1,11444:10523651,23347654:-28377088 -) -) -g1,11444:28691032,23347654 -) -) -) -g1,11445:28690151,23347654 -k1,11445:32583029,23347654:3892878 -) -(1,11453:6630773,24189142:25952256,513147,126483 -h1,11452:6630773,24189142:983040,0,0 -k1,11452:9041310,24189142:230810 -k1,11452:10549416,24189142:230809 -k1,11452:12635550,24189142:230810 -k1,11452:13397856,24189142:230809 -k1,11452:14287958,24189142:230810 -k1,11452:15991361,24189142:230809 -k1,11452:17314656,24189142:230810 -k1,11452:20005688,24189142:230810 -k1,11452:21368304,24189142:230809 -k1,11452:23162148,24189142:230810 -k1,11452:24117785,24189142:230809 -k1,11452:25216947,24189142:230810 -k1,11452:26831876,24189142:230809 -k1,11452:28499891,24189142:230810 -k1,11452:29086560,24189142:230809 -k1,11452:30706733,24189142:230810 -k1,11452:32583029,24189142:0 -) -(1,11453:6630773,25030630:25952256,505283,134348 -k1,11452:8952887,25030630:188917 -k1,11452:9757842,25030630:188917 -k1,11452:11150000,25030630:188917 -k1,11452:12705998,25030630:188917 -(1,11452:12705998,25030630:0,414482,115847 -r1,11452:14822823,25030630:2116825,530329,115847 -k1,11452:12705998,25030630:-2116825 -) -(1,11452:12705998,25030630:2116825,414482,115847 -k1,11452:12705998,25030630:3277 -h1,11452:14819546,25030630:0,411205,112570 -) -(1,11452:15478183,25030630:0,414482,115847 -r1,11452:17595008,25030630:2116825,530329,115847 -k1,11452:15478183,25030630:-2116825 -) -(1,11452:15478183,25030630:2116825,414482,115847 -k1,11452:15478183,25030630:3277 -h1,11452:17591731,25030630:0,411205,112570 -) -k1,11452:17783925,25030630:188917 -k1,11452:18504339,25030630:188917 -k1,11452:19049116,25030630:188917 -k1,11452:20627395,25030630:188916 -k1,11452:21750855,25030630:188917 -k1,11452:24698182,25030630:188917 -k1,11452:25503137,25030630:188917 -k1,11452:26280567,25030630:188917 -k1,11452:27120912,25030630:188917 -k1,11452:28921359,25030630:188917 -k1,11452:30760473,25030630:188917 -k1,11452:32583029,25030630:0 -) -(1,11453:6630773,25872118:25952256,505283,126483 -g1,11452:8033243,25872118 -g1,11452:9621835,25872118 -g1,11452:10929278,25872118 -g1,11452:12514593,25872118 -(1,11452:12514593,25872118:0,452978,115847 -r1,11452:17445113,25872118:4930520,568825,115847 -k1,11452:12514593,25872118:-4930520 -) -(1,11452:12514593,25872118:4930520,452978,115847 -k1,11452:12514593,25872118:3277 -h1,11452:17441836,25872118:0,411205,112570 -) -g1,11452:17644342,25872118 -g1,11452:18456333,25872118 -g1,11452:19674647,25872118 -g1,11452:20288719,25872118 -g1,11452:23647439,25872118 -k1,11453:32583029,25872118:6360680 -g1,11453:32583029,25872118 -) -v1,11455:6630773,26986813:0,393216,0 -(1,11459:6630773,27301909:25952256,708312,196608 -g1,11459:6630773,27301909 -g1,11459:6630773,27301909 -g1,11459:6434165,27301909 -(1,11459:6434165,27301909:0,708312,196608 -r1,11459:32779637,27301909:26345472,904920,196608 -k1,11459:6434165,27301909:-26345472 -) -(1,11459:6434165,27301909:26345472,708312,196608 -[1,11459:6630773,27301909:25952256,511704,0 -(1,11457:6630773,27194431:25952256,404226,107478 -(1,11456:6630773,27194431:0,0,0 -g1,11456:6630773,27194431 -g1,11456:6630773,27194431 -g1,11456:6303093,27194431 -(1,11456:6303093,27194431:0,0,0 -) -g1,11456:6630773,27194431 -) -k1,11457:6630773,27194431:0 -g1,11457:10424522,27194431 -g1,11457:11056814,27194431 -h1,11457:13269834,27194431:0,0,0 -k1,11457:32583030,27194431:19313196 -g1,11457:32583030,27194431 -) -] -) -g1,11459:32583029,27301909 -g1,11459:6630773,27301909 -g1,11459:6630773,27301909 -g1,11459:32583029,27301909 -g1,11459:32583029,27301909 -) -h1,11459:6630773,27498517:0,0,0 -(1,11463:6630773,28788522:25952256,505283,126483 -h1,11462:6630773,28788522:983040,0,0 -k1,11462:9492543,28788522:273753 -k1,11462:10785381,28788522:273753 -k1,11462:12448497,28788522:273753 -k1,11462:13713810,28788522:273753 -k1,11462:16945203,28788522:273753 -k1,11462:18087308,28788522:273753 -k1,11462:19891328,28788522:273754 -k1,11462:20816509,28788522:273753 -k1,11462:22526156,28788522:273753 -k1,11462:23818994,28788522:273753 -k1,11462:27276486,28788522:273753 -k1,11462:28166277,28788522:273753 -k1,11462:29459115,28788522:273753 -k1,11462:31122231,28788522:273753 -k1,11462:32583029,28788522:0 -) -(1,11463:6630773,29630010:25952256,513147,134348 -k1,11462:9797145,29630010:216597 -k1,11462:12619452,29630010:216596 -k1,11462:13452087,29630010:216597 -k1,11462:14687768,29630010:216596 -k1,11462:16355332,29630010:216597 -k1,11462:17254814,29630010:216597 -k1,11462:20686606,29630010:216596 -k1,11462:22686438,29630010:216597 -k1,11462:25427481,29630010:216596 -k1,11462:26260116,29630010:216597 -k1,11462:27649151,29630010:216596 -k1,11462:31714677,29630010:216597 -k1,11462:32583029,29630010:0 -) -(1,11463:6630773,30471498:25952256,505283,138281 -k1,11462:8420070,30471498:259031 -k1,11462:9330529,30471498:259031 -k1,11462:10986132,30471498:259031 -k1,11462:14086804,30471498:259031 -k1,11462:14961873,30471498:259031 -k1,11462:16239989,30471498:259031 -k1,11462:17888383,30471498:259031 -k1,11462:18798842,30471498:259031 -k1,11462:19670634,30471498:259030 -k1,11462:21425197,30471498:259031 -k1,11462:22703313,30471498:259031 -$1,11462:22703313,30471498 -$1,11462:23205974,30471498 -k1,11462:23465005,30471498:259031 -k1,11462:24915481,30471498:259031 -$1,11462:24915481,30471498 -$1,11462:25467294,30471498 -k1,11462:25726325,30471498:259031 -k1,11462:29333590,30471498:259031 -k1,11462:30973465,30471498:259031 -k1,11463:32583029,30471498:0 -) -(1,11463:6630773,31312986:25952256,513147,134348 -k1,11462:8251683,31312986:209920 -k1,11462:9565885,31312986:209920 -k1,11462:10523571,31312986:209920 -k1,11462:12173317,31312986:209920 -k1,11462:12999274,31312986:209919 -k1,11462:14228279,31312986:209920 -k1,11462:16408867,31312986:209920 -k1,11462:18487218,31312986:209920 -k1,11462:19458666,31312986:209920 -k1,11462:20456984,31312986:209920 -k1,11462:22437687,31312986:209920 -k1,11462:23456976,31312986:209919 -k1,11462:24685981,31312986:209920 -k1,11462:27420348,31312986:209920 -k1,11462:28977688,31312986:209920 -k1,11462:31298523,31312986:209920 -k1,11462:32583029,31312986:0 -) -(1,11463:6630773,32154474:25952256,513147,134348 -k1,11462:8180599,32154474:219445 -k1,11462:10381197,32154474:219445 -k1,11462:11619727,32154474:219445 -k1,11462:13950086,32154474:219444 -k1,11462:14828823,32154474:219445 -k1,11462:16067353,32154474:219445 -k1,11462:18872193,32154474:219445 -k1,11462:22106949,32154474:219445 -k1,11462:25246678,32154474:219445 -k1,11462:26227650,32154474:219444 -k1,11462:26802955,32154474:219445 -k1,11462:28738788,32154474:219445 -k1,11462:31386342,32154474:219445 -k1,11462:32583029,32154474:0 -) -(1,11463:6630773,32995962:25952256,513147,126483 -k1,11462:8141277,32995962:258111 -k1,11462:10243571,32995962:258111 -k1,11462:11787498,32995962:258111 -k1,11462:14053632,32995962:258111 -k1,11462:15330828,32995962:258111 -k1,11462:17657255,32995962:258111 -k1,11462:18574658,32995962:258111 -k1,11462:19851854,32995962:258111 -k1,11462:22695360,32995962:258111 -k1,11462:25968782,32995962:258111 -k1,11462:29071156,32995962:258111 -k1,11462:30984051,32995962:258111 -k1,11462:31773659,32995962:258111 -k1,11462:32583029,32995962:0 -) -(1,11463:6630773,33837450:25952256,513147,134348 -g1,11462:9779777,33837450 -g1,11462:12517871,33837450 -g1,11462:13682445,33837450 -g1,11462:16944827,33837450 -g1,11462:18091707,33837450 -g1,11462:19310021,33837450 -g1,11462:22702164,33837450 -k1,11463:32583029,33837450:5635443 -g1,11463:32583029,33837450 -) -v1,11465:6630773,34952145:0,393216,0 -(1,11470:6630773,35933419:25952256,1374490,196608 -g1,11470:6630773,35933419 -g1,11470:6630773,35933419 -g1,11470:6434165,35933419 -(1,11470:6434165,35933419:0,1374490,196608 -r1,11470:32779637,35933419:26345472,1571098,196608 -k1,11470:6434165,35933419:-26345472 -) -(1,11470:6434165,35933419:26345472,1374490,196608 -[1,11470:6630773,35933419:25952256,1177882,0 -(1,11467:6630773,35159763:25952256,404226,107478 -(1,11466:6630773,35159763:0,0,0 -g1,11466:6630773,35159763 -g1,11466:6630773,35159763 -g1,11466:6303093,35159763 -(1,11466:6303093,35159763:0,0,0 -) -g1,11466:6630773,35159763 -) -k1,11467:6630773,35159763:0 -g1,11467:10424522,35159763 -g1,11467:11056814,35159763 -k1,11467:11056814,35159763:0 -h1,11467:13269834,35159763:0,0,0 -k1,11467:32583030,35159763:19313196 -g1,11467:32583030,35159763 -) -(1,11468:6630773,35825941:25952256,404226,107478 -h1,11468:6630773,35825941:0,0,0 -g1,11468:6946919,35825941 -g1,11468:7263065,35825941 -g1,11468:7579211,35825941 -g1,11468:7895357,35825941 -g1,11468:8211503,35825941 -g1,11468:8527649,35825941 -g1,11468:8843795,35825941 -g1,11468:10740670,35825941 -g1,11468:11372962,35825941 -g1,11468:13269837,35825941 -g1,11468:13902129,35825941 -g1,11468:14534421,35825941 -h1,11468:16115149,35825941:0,0,0 -k1,11468:32583029,35825941:16467880 -g1,11468:32583029,35825941 -) -] -) -g1,11470:32583029,35933419 -g1,11470:6630773,35933419 -g1,11470:6630773,35933419 -g1,11470:32583029,35933419 -g1,11470:32583029,35933419 -) -h1,11470:6630773,36130027:0,0,0 -(1,11473:6630773,45706769:25952256,9062689,0 -k1,11473:10523651,45706769:3892878 -h1,11472:10523651,45706769:0,0,0 -(1,11472:10523651,45706769:18166500,9062689,0 -(1,11472:10523651,45706769:18167381,9062712,0 -(1,11472:10523651,45706769:18167381,9062712,0 -(1,11472:10523651,45706769:0,9062712,0 -(1,11472:10523651,45706769:0,14155776,0 -(1,11472:10523651,45706769:28377088,14155776,0 -) -k1,11472:10523651,45706769:-28377088 -) -) -g1,11472:28691032,45706769 -) -) -) -g1,11473:28690151,45706769 -k1,11473:32583029,45706769:3892878 -) -] -(1,11483:32583029,45706769:0,0,0 -g1,11483:32583029,45706769 -) -) -] -(1,11483:6630773,47279633:25952256,0,0 -h1,11483:6630773,47279633:25952256,0,0 -) -] -h1,11483:4262630,4025873:0,0,0 -] -!19051 +[1,11485:6630773,45706769:25952256,40108032,0 +(1,11485:6630773,45706769:25952256,40108032,0 +(1,11485:6630773,45706769:0,0,0 +g1,11485:6630773,45706769 +) +[1,11485:6630773,45706769:25952256,40108032,0 +(1,11436:6630773,6254097:25952256,555811,12975 +(1,11436:6630773,6254097:2450326,534184,12975 +g1,11436:6630773,6254097 +g1,11436:9081099,6254097 +) +g1,11436:10708162,6254097 +k1,11436:32583029,6254097:17284922 +g1,11436:32583029,6254097 +) +(1,11439:6630773,7488801:25952256,513147,134348 +k1,11438:7854866,7488801:270544 +k1,11438:9600626,7488801:270545 +k1,11438:12961193,7488801:270544 +k1,11438:15087061,7488801:270544 +k1,11438:16376691,7488801:270545 +k1,11438:20574808,7488801:270544 +k1,11438:21504645,7488801:270545 +k1,11438:22794274,7488801:270544 +k1,11438:25967408,7488801:270544 +k1,11438:26897245,7488801:270545 +k1,11438:30060548,7488801:270544 +k1,11439:32583029,7488801:0 +) +(1,11439:6630773,8330289:25952256,513147,134348 +k1,11438:7731448,8330289:235600 +(1,11438:7938542,8330289:0,414482,115847 +r1,11438:9000231,8330289:1061689,530329,115847 +k1,11438:7938542,8330289:-1061689 +) +(1,11438:7938542,8330289:1061689,414482,115847 +k1,11438:7938542,8330289:3277 +h1,11438:8996954,8330289:0,411205,112570 +) +k1,11438:9616596,8330289:235601 +k1,11438:10799847,8330289:235600 +k1,11438:13696864,8330289:235600 +k1,11438:15722253,8330289:235601 +k1,11438:19121276,8330289:235600 +k1,11438:22226042,8330289:235600 +(1,11438:22226042,8330289:0,414482,122846 +r1,11438:24342867,8330289:2116825,537328,122846 +k1,11438:22226042,8330289:-2116825 +) +(1,11438:22226042,8330289:2116825,414482,122846 +k1,11438:22226042,8330289:3277 +h1,11438:24339590,8330289:0,411205,112570 +) +k1,11438:24578468,8330289:235601 +k1,11438:26307634,8330289:235600 +k1,11438:27229396,8330289:235600 +k1,11438:28963805,8330289:235601 +k1,11438:30390850,8330289:235600 +k1,11438:32583029,8330289:0 +) +(1,11439:6630773,9171777:25952256,505283,126483 +k1,11438:9649428,9171777:165217 +(1,11438:9649428,9171777:0,414482,115847 +r1,11438:11766253,9171777:2116825,530329,115847 +k1,11438:9649428,9171777:-2116825 +) +(1,11438:9649428,9171777:2116825,414482,115847 +k1,11438:9649428,9171777:3277 +h1,11438:11762976,9171777:0,411205,112570 +) +k1,11438:12105141,9171777:165218 +k1,11438:14172868,9171777:165217 +(1,11438:14172868,9171777:0,452978,115847 +r1,11438:16641405,9171777:2468537,568825,115847 +k1,11438:14172868,9171777:-2468537 +) +(1,11438:14172868,9171777:2468537,452978,115847 +k1,11438:14172868,9171777:3277 +h1,11438:16638128,9171777:0,411205,112570 +) +k1,11438:16980293,9171777:165218 +k1,11438:20553382,9171777:165217 +k1,11438:23294820,9171777:165218 +(1,11438:23294820,9171777:0,452978,115847 +r1,11438:25763357,9171777:2468537,568825,115847 +k1,11438:23294820,9171777:-2468537 +) +(1,11438:23294820,9171777:2468537,452978,115847 +k1,11438:23294820,9171777:3277 +h1,11438:25760080,9171777:0,411205,112570 +) +k1,11438:26102244,9171777:165217 +k1,11438:27458907,9171777:165218 +k1,11438:29940822,9171777:165217 +(1,11438:29940822,9171777:0,452978,115847 +r1,11438:32409359,9171777:2468537,568825,115847 +k1,11438:29940822,9171777:-2468537 +) +(1,11438:29940822,9171777:2468537,452978,115847 +k1,11438:29940822,9171777:3277 +h1,11438:32406082,9171777:0,411205,112570 +) +k1,11438:32583029,9171777:0 +) +(1,11439:6630773,10013265:25952256,513147,126483 +g1,11438:7457837,10013265 +g1,11438:8860307,10013265 +g1,11438:11338223,10013265 +g1,11438:12405804,10013265 +g1,11438:13737495,10013265 +g1,11438:14961707,10013265 +g1,11438:16491317,10013265 +g1,11438:18298144,10013265 +g1,11438:19488933,10013265 +g1,11438:23045571,10013265 +g1,11438:24812421,10013265 +g1,11438:26708377,10013265 +k1,11439:32583029,10013265:2831815 +g1,11439:32583029,10013265 +) +(1,11441:6630773,10854753:25952256,513147,134348 +h1,11440:6630773,10854753:983040,0,0 +k1,11440:8668193,10854753:236491 +k1,11440:9923770,10854753:236492 +k1,11440:13077268,10854753:236491 +k1,11440:14505204,10854753:236491 +k1,11440:15834180,10854753:236491 +k1,11440:16729964,10854753:236492 +k1,11440:17985540,10854753:236491 +k1,11440:21124621,10854753:236491 +k1,11440:22352673,10854753:236492 +k1,11440:24459562,10854753:236491 +k1,11440:25347481,10854753:236491 +k1,11440:27244654,10854753:236491 +k1,11440:28242674,10854753:236492 +k1,11440:31140582,10854753:236491 +k1,11440:32583029,10854753:0 +) +(1,11441:6630773,11696241:25952256,513147,134348 +k1,11440:7508754,11696241:226553 +k1,11440:10045451,11696241:226553 +k1,11440:11665955,11696241:226553 +k1,11440:14021117,11696241:226553 +k1,11440:15380132,11696241:226553 +k1,11440:17267367,11696241:226553 +k1,11440:18824300,11696241:226552 +k1,11440:19702281,11696241:226553 +k1,11440:21571166,11696241:226553 +k1,11440:23405317,11696241:226553 +k1,11440:24291162,11696241:226553 +k1,11440:27779442,11696241:226553 +k1,11440:31685186,11696241:226553 +k1,11440:32583029,11696241:0 +) +(1,11441:6630773,12537729:25952256,513147,134348 +k1,11440:9727450,12537729:227511 +k1,11440:10614253,12537729:227511 +k1,11440:11197624,12537729:227511 +k1,11440:12702432,12537729:227511 +k1,11440:14405158,12537729:227511 +k1,11440:17402220,12537729:227511 +k1,11440:20460885,12537729:227510 +k1,11440:21304434,12537729:227511 +k1,11440:23224085,12537729:227511 +k1,11440:25148978,12537729:227511 +k1,11440:27073216,12537729:227511 +k1,11440:29896608,12537729:227511 +k1,11440:31966991,12537729:227511 +k1,11440:32583029,12537729:0 +) +(1,11441:6630773,13379217:25952256,513147,126483 +k1,11440:8922214,13379217:285384 +k1,11440:10988867,13379217:285384 +k1,11440:13952707,13379217:285384 +k1,11440:15953824,13379217:285384 +k1,11440:16697305,13379217:285384 +k1,11440:19612649,13379217:285384 +k1,11440:20549461,13379217:285384 +k1,11440:22764224,13379217:285383 +k1,11440:23405468,13379217:285384 +k1,11440:24968149,13379217:285384 +k1,11440:26607507,13379217:285384 +k1,11440:30251611,13379217:285384 +k1,11440:31490544,13379217:285384 +k1,11440:32583029,13379217:0 +) +(1,11441:6630773,14220705:25952256,513147,126483 +k1,11440:9584765,14220705:258496 +(1,11440:9584765,14220705:0,452978,122846 +r1,11440:12405014,14220705:2820249,575824,122846 +k1,11440:9584765,14220705:-2820249 +) +(1,11440:9584765,14220705:2820249,452978,122846 +k1,11440:9584765,14220705:3277 +h1,11440:12401737,14220705:0,411205,112570 +) +k1,11440:12663510,14220705:258496 +k1,11440:13573434,14220705:258496 +k1,11440:15761310,14220705:258496 +k1,11440:17038891,14220705:258496 +k1,11440:19986329,14220705:258496 +k1,11440:21192477,14220705:258497 +k1,11440:21806833,14220705:258496 +k1,11440:23516296,14220705:258496 +k1,11440:25660263,14220705:258496 +k1,11440:27023041,14220705:258496 +k1,11440:28029303,14220705:258496 +k1,11440:31510860,14220705:258496 +k1,11440:32583029,14220705:0 +) +(1,11441:6630773,15062193:25952256,505283,126483 +g1,11440:8115818,15062193 +g1,11440:10665168,15062193 +g1,11440:11550559,15062193 +k1,11441:32583030,15062193:20327304 +g1,11441:32583030,15062193 +) +v1,11443:6630773,16252659:0,393216,0 +(1,11447:6630773,16567755:25952256,708312,196608 +g1,11447:6630773,16567755 +g1,11447:6630773,16567755 +g1,11447:6434165,16567755 +(1,11447:6434165,16567755:0,708312,196608 +r1,11447:32779637,16567755:26345472,904920,196608 +k1,11447:6434165,16567755:-26345472 +) +(1,11447:6434165,16567755:26345472,708312,196608 +[1,11447:6630773,16567755:25952256,511704,0 +(1,11445:6630773,16460277:25952256,404226,107478 +(1,11444:6630773,16460277:0,0,0 +g1,11444:6630773,16460277 +g1,11444:6630773,16460277 +g1,11444:6303093,16460277 +(1,11444:6303093,16460277:0,0,0 +) +g1,11444:6630773,16460277 +) +k1,11445:6630773,16460277:0 +h1,11445:9159938,16460277:0,0,0 +k1,11445:32583030,16460277:23423092 +g1,11445:32583030,16460277 +) +] +) +g1,11447:32583029,16567755 +g1,11447:6630773,16567755 +g1,11447:6630773,16567755 +g1,11447:32583029,16567755 +g1,11447:32583029,16567755 +) +h1,11447:6630773,16764363:0,0,0 +(1,11450:6630773,26416876:25952256,9062689,0 +k1,11450:10523651,26416876:3892878 +h1,11449:10523651,26416876:0,0,0 +(1,11449:10523651,26416876:18166500,9062689,0 +(1,11449:10523651,26416876:18167381,9062712,0 +(1,11449:10523651,26416876:18167381,9062712,0 +(1,11449:10523651,26416876:0,9062712,0 +(1,11449:10523651,26416876:0,14155776,0 +(1,11449:10523651,26416876:28377088,14155776,0 +) +k1,11449:10523651,26416876:-28377088 +) +) +g1,11449:28691032,26416876 +) +) +) +g1,11450:28690151,26416876 +k1,11450:32583029,26416876:3892878 +) +(1,11458:6630773,27258364:25952256,513147,126483 +h1,11457:6630773,27258364:983040,0,0 +k1,11457:9041310,27258364:230810 +k1,11457:10549416,27258364:230809 +k1,11457:12635550,27258364:230810 +k1,11457:13397856,27258364:230809 +k1,11457:14287958,27258364:230810 +k1,11457:15991361,27258364:230809 +k1,11457:17314656,27258364:230810 +k1,11457:20005688,27258364:230810 +k1,11457:21368304,27258364:230809 +k1,11457:23162148,27258364:230810 +k1,11457:24117785,27258364:230809 +k1,11457:25216947,27258364:230810 +k1,11457:26831876,27258364:230809 +k1,11457:28499891,27258364:230810 +k1,11457:29086560,27258364:230809 +k1,11457:30706733,27258364:230810 +k1,11457:32583029,27258364:0 +) +(1,11458:6630773,28099852:25952256,505283,134348 +k1,11457:8952887,28099852:188917 +k1,11457:9757842,28099852:188917 +k1,11457:11150000,28099852:188917 +k1,11457:12705998,28099852:188917 +(1,11457:12705998,28099852:0,414482,115847 +r1,11457:14822823,28099852:2116825,530329,115847 +k1,11457:12705998,28099852:-2116825 +) +(1,11457:12705998,28099852:2116825,414482,115847 +k1,11457:12705998,28099852:3277 +h1,11457:14819546,28099852:0,411205,112570 +) +(1,11457:15478183,28099852:0,414482,115847 +r1,11457:17595008,28099852:2116825,530329,115847 +k1,11457:15478183,28099852:-2116825 +) +(1,11457:15478183,28099852:2116825,414482,115847 +k1,11457:15478183,28099852:3277 +h1,11457:17591731,28099852:0,411205,112570 +) +k1,11457:17783925,28099852:188917 +k1,11457:18504339,28099852:188917 +k1,11457:19049116,28099852:188917 +k1,11457:20627395,28099852:188916 +k1,11457:21750855,28099852:188917 +k1,11457:24698182,28099852:188917 +k1,11457:25503137,28099852:188917 +k1,11457:26280567,28099852:188917 +k1,11457:27120912,28099852:188917 +k1,11457:28921359,28099852:188917 +k1,11457:30760473,28099852:188917 +k1,11457:32583029,28099852:0 +) +(1,11458:6630773,28941340:25952256,505283,126483 +g1,11457:8033243,28941340 +g1,11457:9621835,28941340 +g1,11457:10929278,28941340 +g1,11457:12514593,28941340 +(1,11457:12514593,28941340:0,452978,115847 +r1,11457:17445113,28941340:4930520,568825,115847 +k1,11457:12514593,28941340:-4930520 +) +(1,11457:12514593,28941340:4930520,452978,115847 +k1,11457:12514593,28941340:3277 +h1,11457:17441836,28941340:0,411205,112570 +) +g1,11457:17644342,28941340 +g1,11457:18456333,28941340 +g1,11457:19674647,28941340 +g1,11457:20288719,28941340 +g1,11457:23647439,28941340 +k1,11458:32583029,28941340:6360680 +g1,11458:32583029,28941340 +) +v1,11460:6630773,30131806:0,393216,0 +(1,11464:6630773,30446902:25952256,708312,196608 +g1,11464:6630773,30446902 +g1,11464:6630773,30446902 +g1,11464:6434165,30446902 +(1,11464:6434165,30446902:0,708312,196608 +r1,11464:32779637,30446902:26345472,904920,196608 +k1,11464:6434165,30446902:-26345472 +) +(1,11464:6434165,30446902:26345472,708312,196608 +[1,11464:6630773,30446902:25952256,511704,0 +(1,11462:6630773,30339424:25952256,404226,107478 +(1,11461:6630773,30339424:0,0,0 +g1,11461:6630773,30339424 +g1,11461:6630773,30339424 +g1,11461:6303093,30339424 +(1,11461:6303093,30339424:0,0,0 +) +g1,11461:6630773,30339424 +) +k1,11462:6630773,30339424:0 +g1,11462:10424522,30339424 +g1,11462:11056814,30339424 +h1,11462:13269834,30339424:0,0,0 +k1,11462:32583030,30339424:19313196 +g1,11462:32583030,30339424 +) +] +) +g1,11464:32583029,30446902 +g1,11464:6630773,30446902 +g1,11464:6630773,30446902 +g1,11464:32583029,30446902 +g1,11464:32583029,30446902 +) +h1,11464:6630773,30643510:0,0,0 +(1,11468:6630773,32009286:25952256,505283,126483 +h1,11467:6630773,32009286:983040,0,0 +k1,11467:9492543,32009286:273753 +k1,11467:10785381,32009286:273753 +k1,11467:12448497,32009286:273753 +k1,11467:13713810,32009286:273753 +k1,11467:16945203,32009286:273753 +k1,11467:18087308,32009286:273753 +k1,11467:19891328,32009286:273754 +k1,11467:20816509,32009286:273753 +k1,11467:22526156,32009286:273753 +k1,11467:23818994,32009286:273753 +k1,11467:27276486,32009286:273753 +k1,11467:28166277,32009286:273753 +k1,11467:29459115,32009286:273753 +k1,11467:31122231,32009286:273753 +k1,11467:32583029,32009286:0 +) +(1,11468:6630773,32850774:25952256,513147,134348 +k1,11467:9797145,32850774:216597 +k1,11467:12619452,32850774:216596 +k1,11467:13452087,32850774:216597 +k1,11467:14687768,32850774:216596 +k1,11467:16355332,32850774:216597 +k1,11467:17254814,32850774:216597 +k1,11467:20686606,32850774:216596 +k1,11467:22686438,32850774:216597 +k1,11467:25427481,32850774:216596 +k1,11467:26260116,32850774:216597 +k1,11467:27649151,32850774:216596 +k1,11467:31714677,32850774:216597 +k1,11467:32583029,32850774:0 +) +(1,11468:6630773,33692262:25952256,505283,138281 +k1,11467:8420070,33692262:259031 +k1,11467:9330529,33692262:259031 +k1,11467:10986132,33692262:259031 +k1,11467:14086804,33692262:259031 +k1,11467:14961873,33692262:259031 +k1,11467:16239989,33692262:259031 +k1,11467:17888383,33692262:259031 +k1,11467:18798842,33692262:259031 +k1,11467:19670634,33692262:259030 +k1,11467:21425197,33692262:259031 +k1,11467:22703313,33692262:259031 +$1,11467:22703313,33692262 +$1,11467:23205974,33692262 +k1,11467:23465005,33692262:259031 +k1,11467:24915481,33692262:259031 +$1,11467:24915481,33692262 +$1,11467:25467294,33692262 +k1,11467:25726325,33692262:259031 +k1,11467:29333590,33692262:259031 +k1,11467:30973465,33692262:259031 +k1,11468:32583029,33692262:0 +) +(1,11468:6630773,34533750:25952256,513147,134348 +k1,11467:8251683,34533750:209920 +k1,11467:9565885,34533750:209920 +k1,11467:10523571,34533750:209920 +k1,11467:12173317,34533750:209920 +k1,11467:12999274,34533750:209919 +k1,11467:14228279,34533750:209920 +k1,11467:16408867,34533750:209920 +k1,11467:18487218,34533750:209920 +k1,11467:19458666,34533750:209920 +k1,11467:20456984,34533750:209920 +k1,11467:22437687,34533750:209920 +k1,11467:23456976,34533750:209919 +k1,11467:24685981,34533750:209920 +k1,11467:27420348,34533750:209920 +k1,11467:28977688,34533750:209920 +k1,11467:31298523,34533750:209920 +k1,11467:32583029,34533750:0 +) +(1,11468:6630773,35375238:25952256,513147,134348 +k1,11467:8180599,35375238:219445 +k1,11467:10381197,35375238:219445 +k1,11467:11619727,35375238:219445 +k1,11467:13950086,35375238:219444 +k1,11467:14828823,35375238:219445 +k1,11467:16067353,35375238:219445 +k1,11467:18872193,35375238:219445 +k1,11467:22106949,35375238:219445 +k1,11467:25246678,35375238:219445 +k1,11467:26227650,35375238:219444 +k1,11467:26802955,35375238:219445 +k1,11467:28738788,35375238:219445 +k1,11467:31386342,35375238:219445 +k1,11467:32583029,35375238:0 +) +(1,11468:6630773,36216726:25952256,513147,126483 +k1,11467:8141277,36216726:258111 +k1,11467:10243571,36216726:258111 +k1,11467:11787498,36216726:258111 +k1,11467:14053632,36216726:258111 +k1,11467:15330828,36216726:258111 +k1,11467:17657255,36216726:258111 +k1,11467:18574658,36216726:258111 +k1,11467:19851854,36216726:258111 +k1,11467:22695360,36216726:258111 +k1,11467:25968782,36216726:258111 +k1,11467:29071156,36216726:258111 +k1,11467:30984051,36216726:258111 +k1,11467:31773659,36216726:258111 +k1,11467:32583029,36216726:0 +) +(1,11468:6630773,37058214:25952256,513147,134348 +g1,11467:9779777,37058214 +g1,11467:12517871,37058214 +g1,11467:13682445,37058214 +g1,11467:16944827,37058214 +g1,11467:18091707,37058214 +g1,11467:19310021,37058214 +g1,11467:22702164,37058214 +k1,11468:32583029,37058214:5635443 +g1,11468:32583029,37058214 +) +v1,11470:6630773,38248680:0,393216,0 +(1,11475:6630773,39229954:25952256,1374490,196608 +g1,11475:6630773,39229954 +g1,11475:6630773,39229954 +g1,11475:6434165,39229954 +(1,11475:6434165,39229954:0,1374490,196608 +r1,11475:32779637,39229954:26345472,1571098,196608 +k1,11475:6434165,39229954:-26345472 +) +(1,11475:6434165,39229954:26345472,1374490,196608 +[1,11475:6630773,39229954:25952256,1177882,0 +(1,11472:6630773,38456298:25952256,404226,107478 +(1,11471:6630773,38456298:0,0,0 +g1,11471:6630773,38456298 +g1,11471:6630773,38456298 +g1,11471:6303093,38456298 +(1,11471:6303093,38456298:0,0,0 +) +g1,11471:6630773,38456298 +) +k1,11472:6630773,38456298:0 +g1,11472:10424522,38456298 +g1,11472:11056814,38456298 +k1,11472:11056814,38456298:0 +h1,11472:13269834,38456298:0,0,0 +k1,11472:32583030,38456298:19313196 +g1,11472:32583030,38456298 +) +(1,11473:6630773,39122476:25952256,404226,107478 +h1,11473:6630773,39122476:0,0,0 +g1,11473:6946919,39122476 +g1,11473:7263065,39122476 +g1,11473:7579211,39122476 +g1,11473:7895357,39122476 +g1,11473:8211503,39122476 +g1,11473:8527649,39122476 +g1,11473:8843795,39122476 +g1,11473:10740670,39122476 +g1,11473:11372962,39122476 +g1,11473:13269837,39122476 +g1,11473:13902129,39122476 +g1,11473:14534421,39122476 +h1,11473:16115149,39122476:0,0,0 +k1,11473:32583029,39122476:16467880 +g1,11473:32583029,39122476 +) +] +) +g1,11475:32583029,39229954 +g1,11475:6630773,39229954 +g1,11475:6630773,39229954 +g1,11475:32583029,39229954 +g1,11475:32583029,39229954 +) +h1,11475:6630773,39426562:0,0,0 +] +(1,11485:32583029,45706769:0,0,0 +g1,11485:32583029,45706769 +) +) +] +(1,11485:6630773,47279633:25952256,0,0 +h1,11485:6630773,47279633:25952256,0,0 +) +] +h1,11485:4262630,4025873:0,0,0 +] +!20227 }216 -Input:1457:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1458:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1459:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1460:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1461:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1462:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:1451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {217 [1,11541:4262630,47279633:28320399,43253760,0 (1,11541:4262630,4025873:0,0,0 @@ -202072,19 +201997,19 @@ g1,11541:3078558,4812305 [1,11541:3078558,4812305:0,0,0 (1,11541:3078558,2439708:0,1703936,0 k1,11541:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 r1,11541:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 r1,11541:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) @@ -202095,20 +202020,20 @@ g1,11316:29014430,1915420 (1,11541:3078558,2439708:0,1703936,0 g1,11541:29030814,2439708 g1,11541:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 r1,11541:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 r1,11541:37855564,2439708:1179648,16384,0 ) ) @@ -202118,19 +202043,19 @@ k1,11541:3078556,2439708:-34777008 [1,11541:3078558,4812305:0,0,0 (1,11541:3078558,49800853:0,16384,2228224 k1,11541:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 r1,11541:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 r1,11541:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) @@ -202141,20 +202066,20 @@ g1,11316:29014430,51504789 (1,11541:3078558,49800853:0,16384,2228224 g1,11541:29030814,49800853 g1,11541:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 r1,11541:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 r1,11541:37855564,49800853:1179648,16384,0 ) ) @@ -202174,591 +202099,426 @@ g1,11541:29873114,4812305 g1,11541:6630773,45706769 ) [1,11541:6630773,45706769:25952256,40108032,0 -(1,11481:6630773,6254097:25952256,505283,134348 -h1,11480:6630773,6254097:983040,0,0 -k1,11480:8627982,6254097:185139 -k1,11480:10528854,6254097:185139 -k1,11480:14785745,6254097:185139 -k1,11480:17013642,6254097:185140 -k1,11480:17814819,6254097:185139 -k1,11480:19019043,6254097:185139 -k1,11480:20481479,6254097:185139 -k1,11480:21534970,6254097:185139 -k1,11480:23250375,6254097:185139 -k1,11480:24086942,6254097:185139 -k1,11480:25469425,6254097:185140 -k1,11480:26010424,6254097:185139 -k1,11480:28707558,6254097:185139 -k1,11480:31900144,6254097:185139 -k1,11481:32583029,6254097:0 -) -(1,11481:6630773,7095585:25952256,505283,134348 -(1,11480:6630773,7095585:0,414482,122846 -r1,11480:8044174,7095585:1413401,537328,122846 -k1,11480:6630773,7095585:-1413401 -) -(1,11480:6630773,7095585:1413401,414482,122846 -k1,11480:6630773,7095585:3277 -h1,11480:8040897,7095585:0,411205,112570 -) -g1,11480:8243403,7095585 -g1,11480:9094060,7095585 -g1,11480:10312374,7095585 -g1,11480:11962570,7095585 -g1,11480:13650122,7095585 -g1,11480:14717703,7095585 -g1,11480:17212003,7095585 -g1,11480:18430317,7095585 -g1,11480:22701298,7095585 -g1,11480:23586689,7095585 -g1,11480:25804427,7095585 -g1,11480:27739049,7095585 -(1,11480:27739049,7095585:0,452978,122846 -r1,11480:31966145,7095585:4227096,575824,122846 -k1,11480:27739049,7095585:-4227096 -) -(1,11480:27739049,7095585:4227096,452978,122846 -k1,11480:27739049,7095585:3277 -h1,11480:31962868,7095585:0,411205,112570 -) -k1,11481:32583029,7095585:616884 -g1,11481:32583029,7095585 -) -v1,11483:6630773,8220993:0,393216,0 -(1,11489:6630773,9868445:25952256,2040668,196608 -g1,11489:6630773,9868445 -g1,11489:6630773,9868445 -g1,11489:6434165,9868445 -(1,11489:6434165,9868445:0,2040668,196608 -r1,11489:32779637,9868445:26345472,2237276,196608 -k1,11489:6434165,9868445:-26345472 -) -(1,11489:6434165,9868445:26345472,2040668,196608 -[1,11489:6630773,9868445:25952256,1844060,0 -(1,11485:6630773,8428611:25952256,404226,107478 -(1,11484:6630773,8428611:0,0,0 -g1,11484:6630773,8428611 -g1,11484:6630773,8428611 -g1,11484:6303093,8428611 -(1,11484:6303093,8428611:0,0,0 -) -g1,11484:6630773,8428611 -) -k1,11485:6630773,8428611:0 -g1,11485:10424522,8428611 -g1,11485:11056814,8428611 -k1,11485:11056814,8428611:0 -h1,11485:13269834,8428611:0,0,0 -k1,11485:32583030,8428611:19313196 -g1,11485:32583030,8428611 -) -(1,11486:6630773,9094789:25952256,404226,107478 -h1,11486:6630773,9094789:0,0,0 -g1,11486:6946919,9094789 -g1,11486:7263065,9094789 -g1,11486:7579211,9094789 -g1,11486:7895357,9094789 -g1,11486:8211503,9094789 -g1,11486:8527649,9094789 -g1,11486:8843795,9094789 -g1,11486:10740670,9094789 -g1,11486:11372962,9094789 -g1,11486:13269837,9094789 -g1,11486:13902129,9094789 -g1,11486:14534421,9094789 -g1,11486:16431295,9094789 -h1,11486:16747441,9094789:0,0,0 -k1,11486:32583029,9094789:15835588 -g1,11486:32583029,9094789 -) -(1,11487:6630773,9760967:25952256,404226,107478 -h1,11487:6630773,9760967:0,0,0 -g1,11487:6946919,9760967 -g1,11487:7263065,9760967 -k1,11487:7263065,9760967:0 -h1,11487:11056813,9760967:0,0,0 -k1,11487:32583029,9760967:21526216 -g1,11487:32583029,9760967 -) -] -) -g1,11489:32583029,9868445 -g1,11489:6630773,9868445 -g1,11489:6630773,9868445 -g1,11489:32583029,9868445 -g1,11489:32583029,9868445 -) -h1,11489:6630773,10065053:0,0,0 -(1,11492:6630773,19652509:25952256,9062689,0 -k1,11492:10523651,19652509:3892878 -h1,11491:10523651,19652509:0,0,0 -(1,11491:10523651,19652509:18166500,9062689,0 -(1,11491:10523651,19652509:18167381,9062712,0 -(1,11491:10523651,19652509:18167381,9062712,0 -(1,11491:10523651,19652509:0,9062712,0 -(1,11491:10523651,19652509:0,14155776,0 -(1,11491:10523651,19652509:28377088,14155776,0 -) -k1,11491:10523651,19652509:-28377088 -) -) -g1,11491:28691032,19652509 -) -) -) -g1,11492:28690151,19652509 -k1,11492:32583029,19652509:3892878 -) -v1,11500:6630773,20953227:0,393216,0 -(1,11521:6630773,30565030:25952256,10005019,616038 -g1,11521:6630773,30565030 -(1,11521:6630773,30565030:25952256,10005019,616038 -(1,11521:6630773,31181068:25952256,10621057,0 -[1,11521:6630773,31181068:25952256,10621057,0 -(1,11521:6630773,31154854:25952256,10568629,0 -r1,11521:6656987,31154854:26214,10568629,0 -[1,11521:6656987,31154854:25899828,10568629,0 -(1,11521:6656987,30565030:25899828,9388981,0 -[1,11521:7246811,30565030:24720180,9388981,0 -(1,11501:7246811,22261585:24720180,1085536,298548 -(1,11500:7246811,22261585:0,1085536,298548 -r1,11521:8753226,22261585:1506415,1384084,298548 -k1,11500:7246811,22261585:-1506415 -) -(1,11500:7246811,22261585:1506415,1085536,298548 -) -k1,11500:9040297,22261585:287071 -k1,11500:9955203,22261585:287071 -k1,11500:11261359,22261585:287071 -k1,11500:14540149,22261585:287071 -k1,11500:16856215,22261585:287071 -k1,11500:18162371,22261585:287071 -k1,11500:20057040,22261585:287071 -k1,11500:21848162,22261585:287071 -k1,11500:24485354,22261585:287071 -k1,11500:29262952,22261585:287071 -k1,11500:31435494,22261585:287071 -k1,11500:31966991,22261585:0 -) -(1,11501:7246811,23103073:24720180,513147,134348 -k1,11500:8479592,23103073:213696 -k1,11500:10958868,23103073:213696 -k1,11500:11785326,23103073:213696 -k1,11500:13018108,23103073:213697 -k1,11500:13646632,23103073:213681 -k1,11500:16454243,23103073:213696 -k1,11500:19602641,23103073:213696 -k1,11500:20502500,23103073:213697 -k1,11500:22110147,23103073:213696 -k1,11500:24025813,23103073:213696 -k1,11500:24654338,23103073:213682 -k1,11500:27331532,23103073:213696 -k1,11500:29901247,23103073:213696 -k1,11500:31219225,23103073:213696 -k1,11500:31966991,23103073:0 -) -(1,11501:7246811,23944561:24720180,505283,134348 -g1,11500:10220834,23944561 -g1,11500:11071491,23944561 -g1,11500:11626580,23944561 -k1,11501:31966990,23944561:17655400 -g1,11501:31966990,23944561 -) -v1,11503:7246811,25135027:0,393216,0 -(1,11509:7246811,26782479:24720180,2040668,196608 -g1,11509:7246811,26782479 -g1,11509:7246811,26782479 -g1,11509:7050203,26782479 -(1,11509:7050203,26782479:0,2040668,196608 -r1,11521:32163599,26782479:25113396,2237276,196608 -k1,11509:7050203,26782479:-25113396 -) -(1,11509:7050203,26782479:25113396,2040668,196608 -[1,11509:7246811,26782479:24720180,1844060,0 -(1,11505:7246811,25342645:24720180,404226,107478 -(1,11504:7246811,25342645:0,0,0 -g1,11504:7246811,25342645 -g1,11504:7246811,25342645 -g1,11504:6919131,25342645 -(1,11504:6919131,25342645:0,0,0 -) -g1,11504:7246811,25342645 -) -g1,11505:7879103,25342645 -g1,11505:8827541,25342645 -g1,11505:12621290,25342645 -g1,11505:13253582,25342645 -k1,11505:13253582,25342645:0 -h1,11505:15466602,25342645:0,0,0 -k1,11505:31966991,25342645:16500389 -g1,11505:31966991,25342645 -) -(1,11506:7246811,26008823:24720180,404226,107478 -h1,11506:7246811,26008823:0,0,0 -g1,11506:7562957,26008823 -g1,11506:7879103,26008823 -g1,11506:8195249,26008823 -g1,11506:8511395,26008823 -g1,11506:8827541,26008823 -g1,11506:9143687,26008823 -g1,11506:9459833,26008823 -g1,11506:9775979,26008823 -g1,11506:10092125,26008823 -g1,11506:10408271,26008823 -g1,11506:10724417,26008823 -g1,11506:11040563,26008823 -g1,11506:12937438,26008823 -g1,11506:13569730,26008823 -g1,11506:15466605,26008823 -g1,11506:16098897,26008823 -g1,11506:16731189,26008823 -g1,11506:18628063,26008823 -h1,11506:18944209,26008823:0,0,0 -k1,11506:31966991,26008823:13022782 -g1,11506:31966991,26008823 -) -(1,11507:7246811,26675001:24720180,404226,107478 -h1,11507:7246811,26675001:0,0,0 -g1,11507:7562957,26675001 -g1,11507:7879103,26675001 -g1,11507:8195249,26675001 -g1,11507:8511395,26675001 -g1,11507:8827541,26675001 -g1,11507:9143687,26675001 -g1,11507:9459833,26675001 -k1,11507:9459833,26675001:0 -h1,11507:13253581,26675001:0,0,0 -k1,11507:31966991,26675001:18713410 -g1,11507:31966991,26675001 -) -] -) -g1,11509:31966991,26782479 -g1,11509:7246811,26782479 -g1,11509:7246811,26782479 -g1,11509:31966991,26782479 -g1,11509:31966991,26782479 -) -h1,11509:7246811,26979087:0,0,0 -(1,11513:7246811,28344863:24720180,505283,126483 -h1,11512:7246811,28344863:983040,0,0 -g1,11512:9620525,28344863 -g1,11512:12169875,28344863 -g1,11512:12981866,28344863 -g1,11512:13536955,28344863 -g1,11512:15189773,28344863 -k1,11513:31966991,28344863:15178140 -g1,11513:31966991,28344863 -) -v1,11515:7246811,29535329:0,393216,0 -(1,11519:7246811,29844134:24720180,702021,196608 -g1,11519:7246811,29844134 -g1,11519:7246811,29844134 -g1,11519:7050203,29844134 -(1,11519:7050203,29844134:0,702021,196608 -r1,11521:32163599,29844134:25113396,898629,196608 -k1,11519:7050203,29844134:-25113396 -) -(1,11519:7050203,29844134:25113396,702021,196608 -[1,11519:7246811,29844134:24720180,505413,0 -(1,11517:7246811,29742947:24720180,404226,101187 -(1,11516:7246811,29742947:0,0,0 -g1,11516:7246811,29742947 -g1,11516:7246811,29742947 -g1,11516:6919131,29742947 -(1,11516:6919131,29742947:0,0,0 -) -g1,11516:7246811,29742947 -) -k1,11517:7246811,29742947:0 -h1,11517:9775976,29742947:0,0,0 -k1,11517:31966992,29742947:22191016 -g1,11517:31966992,29742947 -) -] -) -g1,11519:31966991,29844134 -g1,11519:7246811,29844134 -g1,11519:7246811,29844134 -g1,11519:31966991,29844134 -g1,11519:31966991,29844134 -) -h1,11519:7246811,30040742:0,0,0 -] -) -] -r1,11521:32583029,31154854:26214,10568629,0 -) -] -) -) -g1,11521:32583029,30565030 -) -h1,11521:6630773,31181068:0,0,0 -v1,11524:6630773,32481787:0,393216,0 -(1,11536:6630773,42948525:25952256,10859954,616038 -g1,11536:6630773,42948525 -(1,11536:6630773,42948525:25952256,10859954,616038 -(1,11536:6630773,43564563:25952256,11475992,0 -[1,11536:6630773,43564563:25952256,11475992,0 -(1,11536:6630773,43538349:25952256,11423564,0 -r1,11536:6656987,43538349:26214,11423564,0 -[1,11536:6656987,43538349:25899828,11423564,0 -(1,11536:6656987,42948525:25899828,10243916,0 -[1,11536:7246811,42948525:24720180,10243916,0 -(1,11525:7246811,33988591:24720180,1283982,196608 -(1,11524:7246811,33988591:0,1283982,196608 -r1,11536:9812056,33988591:2565245,1480590,196608 -k1,11524:7246811,33988591:-2565245 -) -(1,11524:7246811,33988591:2565245,1283982,196608 -) -k1,11524:10108361,33988591:296305 -k1,11524:12391717,33988591:296304 -k1,11524:13556374,33988591:296305 -k1,11524:15327893,33988591:296304 -k1,11524:17064024,33988591:296305 -k1,11524:18690709,33988591:296304 -k1,11524:19638442,33988591:296305 -k1,11524:21577079,33988591:296305 -k1,11524:22229243,33988591:296304 -k1,11524:23976515,33988591:296305 -k1,11524:25830610,33988591:296304 -k1,11524:26888443,33988591:296305 -k1,11524:28916208,33988591:296304 -k1,11524:30947906,33988591:296305 -k1,11524:31966991,33988591:0 -) -(1,11525:7246811,34830079:24720180,513147,134348 -k1,11524:10405787,34830079:256386 -k1,11524:11321465,34830079:256386 -k1,11524:14470611,34830079:256387 -k1,11524:15680546,34830079:256386 -k1,11524:17412147,34830079:256386 -k1,11524:18954349,34830079:256386 -k1,11524:20650562,34830079:256387 -k1,11524:22237329,34830079:256386 -k1,11524:23145143,34830079:256386 -k1,11524:24792203,34830079:256386 -k1,11524:25404449,34830079:256386 -k1,11524:27860224,34830079:256387 -k1,11524:29070159,34830079:256386 -k1,11524:30430827,34830079:256386 -k1,11524:31966991,34830079:0 -) -(1,11525:7246811,35671567:24720180,513147,134348 -g1,11524:8713506,35671567 -g1,11524:9931820,35671567 -g1,11524:12557192,35671567 -g1,11524:13415713,35671567 -g1,11524:14818183,35671567 -g1,11524:16976938,35671567 -g1,11524:18911560,35671567 -(1,11524:18911560,35671567:0,452978,115847 -r1,11536:22083520,35671567:3171960,568825,115847 -k1,11524:18911560,35671567:-3171960 -) -(1,11524:18911560,35671567:3171960,452978,115847 -k1,11524:18911560,35671567:3277 -h1,11524:22080243,35671567:0,411205,112570 -) -k1,11525:31966991,35671567:9709801 -g1,11525:31966991,35671567 -) -v1,11527:7246811,36862033:0,393216,0 -(1,11531:7246811,37170838:24720180,702021,196608 -g1,11531:7246811,37170838 -g1,11531:7246811,37170838 -g1,11531:7050203,37170838 -(1,11531:7050203,37170838:0,702021,196608 -r1,11536:32163599,37170838:25113396,898629,196608 -k1,11531:7050203,37170838:-25113396 -) -(1,11531:7050203,37170838:25113396,702021,196608 -[1,11531:7246811,37170838:24720180,505413,0 -(1,11529:7246811,37069651:24720180,404226,101187 -(1,11528:7246811,37069651:0,0,0 -g1,11528:7246811,37069651 -g1,11528:7246811,37069651 -g1,11528:6919131,37069651 -(1,11528:6919131,37069651:0,0,0 -) -g1,11528:7246811,37069651 -) -k1,11529:7246811,37069651:0 -h1,11529:10408268,37069651:0,0,0 -k1,11529:31966992,37069651:21558724 -g1,11529:31966992,37069651 -) -] -) -g1,11531:31966991,37170838 -g1,11531:7246811,37170838 -g1,11531:7246811,37170838 -g1,11531:31966991,37170838 -g1,11531:31966991,37170838 -) -h1,11531:7246811,37367446:0,0,0 -(1,11534:7246811,38733222:24720180,513147,134348 -h1,11533:7246811,38733222:983040,0,0 -g1,11533:9382629,38733222 -g1,11533:10686140,38733222 -g1,11533:12312088,38733222 -g1,11533:13530402,38733222 -g1,11533:16661056,38733222 -g1,11533:17519577,38733222 -g1,11533:18737891,38733222 -g1,11533:20962838,38733222 -g1,11533:23121593,38733222 -g1,11533:24714773,38733222 -(1,11533:24714773,38733222:0,452978,115847 -r1,11536:26479886,38733222:1765113,568825,115847 -k1,11533:24714773,38733222:-1765113 -) -(1,11533:24714773,38733222:1765113,452978,115847 -k1,11533:24714773,38733222:3277 -h1,11533:26476609,38733222:0,411205,112570 -) -k1,11534:31966991,38733222:5313435 -g1,11534:31966991,38733222 -) -(1,11536:7246811,39574710:24720180,505283,134348 -h1,11535:7246811,39574710:983040,0,0 -k1,11535:11081460,39574710:316676 -k1,11535:14940355,39574710:316675 -k1,11535:18017407,39574710:316676 -k1,11535:21118707,39574710:316675 -(1,11535:21118707,39574710:0,452978,115847 -r1,11536:22883820,39574710:1765113,568825,115847 -k1,11535:21118707,39574710:-1765113 -) -(1,11535:21118707,39574710:1765113,452978,115847 -k1,11535:21118707,39574710:3277 -h1,11535:22880543,39574710:0,411205,112570 -) -k1,11535:23374166,39574710:316676 -(1,11535:23374166,39574710:0,452978,115847 -r1,11536:27601262,39574710:4227096,568825,115847 -k1,11535:23374166,39574710:-4227096 -) -(1,11535:23374166,39574710:4227096,452978,115847 -k1,11535:23374166,39574710:3277 -h1,11535:27597985,39574710:0,411205,112570 -) -k1,11535:28091607,39574710:316675 -(1,11535:28091607,39574710:0,452978,115847 -r1,11536:31966991,39574710:3875384,568825,115847 -k1,11535:28091607,39574710:-3875384 -) -(1,11535:28091607,39574710:3875384,452978,115847 -k1,11535:28091607,39574710:3277 -h1,11535:31963714,39574710:0,411205,112570 -) -k1,11535:31966991,39574710:0 -) -(1,11536:7246811,40416198:24720180,513147,134348 -k1,11535:8713133,40416198:274877 -(1,11535:8713133,40416198:0,452978,115847 -r1,11536:13291941,40416198:4578808,568825,115847 -k1,11535:8713133,40416198:-4578808 -) -(1,11535:8713133,40416198:4578808,452978,115847 -k1,11535:8713133,40416198:3277 -h1,11535:13288664,40416198:0,411205,112570 -) -k1,11535:13740488,40416198:274877 -k1,11535:15164212,40416198:274878 -k1,11535:17135816,40416198:274877 -k1,11535:20195318,40416198:274877 -k1,11535:21121623,40416198:274877 -k1,11535:23764971,40416198:274877 -k1,11535:26065567,40416198:274878 -k1,11535:28630272,40416198:274877 -k1,11535:30299100,40416198:274877 -k1,11536:31966991,40416198:0 -) -(1,11536:7246811,41257686:24720180,513147,134348 -k1,11535:8778034,41257686:223780 -k1,11535:11817896,41257686:223780 -k1,11535:12700969,41257686:223781 -k1,11535:14812841,41257686:223780 -k1,11535:15719506,41257686:223780 -k1,11535:19254820,41257686:223780 -k1,11535:20732305,41257686:223781 -k1,11535:22088547,41257686:223780 -k1,11535:23337310,41257686:223780 -k1,11535:24845596,41257686:223780 -k1,11535:26088462,41257686:223781 -k1,11535:27589539,41257686:223780 -k1,11535:30682485,41257686:223780 -k1,11535:31966991,41257686:0 -) -(1,11536:7246811,42099174:24720180,513147,134348 -k1,11535:8899629,42099174:148767 -k1,11535:11013820,42099174:148766 -k1,11535:11814015,42099174:148767 -k1,11535:12981867,42099174:148767 -k1,11535:14407930,42099174:148766 -k1,11535:15548257,42099174:148767 -k1,11535:17735194,42099174:148767 -k1,11535:18570122,42099174:148766 -k1,11535:21672597,42099174:148767 -k1,11535:22480656,42099174:148767 -k1,11535:22985282,42099174:148766 -k1,11535:24127575,42099174:148767 -k1,11535:25670293,42099174:148767 -k1,11535:27936527,42099174:148766 -k1,11535:29409121,42099174:148767 -k1,11535:31966991,42099174:0 -) -(1,11536:7246811,42940662:24720180,505283,7863 -g1,11535:7801900,42940662 -g1,11535:10600287,42940662 -k1,11536:31966991,42940662:18261608 -g1,11536:31966991,42940662 -) -] -) -] -r1,11536:32583029,43538349:26214,11423564,0 -) -] -) -) -g1,11536:32583029,42948525 -) -h1,11536:6630773,43564563:0,0,0 -(1,11539:6630773,44865281:25952256,505283,134348 -h1,11538:6630773,44865281:983040,0,0 -k1,11538:10745311,44865281:168615 -k1,11538:13978389,44865281:168614 -k1,11538:15251286,44865281:168615 -k1,11538:16167667,44865281:168615 -k1,11538:18921676,44865281:168614 -k1,11538:19741719,44865281:168615 -k1,11538:22751974,44865281:168614 -k1,11538:23536627,44865281:168615 -k1,11538:24724327,44865281:168615 -k1,11538:26455975,44865281:168614 -k1,11538:28004778,44865281:168615 -k1,11538:29277675,44865281:168615 -k1,11538:30732105,44865281:168614 -k1,11538:31648486,44865281:168615 -k1,11538:32583029,44865281:0 -) -(1,11539:6630773,45706769:25952256,513147,126483 -g1,11538:7481430,45706769 -g1,11538:10438414,45706769 -g1,11538:12821958,45706769 -g1,11538:14093356,45706769 -g1,11538:15668186,45706769 -g1,11538:17877404,45706769 -g1,11538:20138396,45706769 -g1,11538:21403896,45706769 -g1,11538:22289287,45706769 -g1,11538:25861654,45706769 -k1,11539:32583029,45706769:3951824 -g1,11539:32583029,45706769 +(1,11478:6630773,14661426:25952256,9062689,0 +k1,11478:10523651,14661426:3892878 +h1,11477:10523651,14661426:0,0,0 +(1,11477:10523651,14661426:18166500,9062689,0 +(1,11477:10523651,14661426:18167381,9062712,0 +(1,11477:10523651,14661426:18167381,9062712,0 +(1,11477:10523651,14661426:0,9062712,0 +(1,11477:10523651,14661426:0,14155776,0 +(1,11477:10523651,14661426:28377088,14155776,0 +) +k1,11477:10523651,14661426:-28377088 +) +) +g1,11477:28691032,14661426 +) +) +) +g1,11478:28690151,14661426 +k1,11478:32583029,14661426:3892878 +) +(1,11486:6630773,15502914:25952256,505283,134348 +h1,11485:6630773,15502914:983040,0,0 +k1,11485:8627982,15502914:185139 +k1,11485:10528854,15502914:185139 +k1,11485:14785745,15502914:185139 +k1,11485:17013642,15502914:185140 +k1,11485:17814819,15502914:185139 +k1,11485:19019043,15502914:185139 +k1,11485:20481479,15502914:185139 +k1,11485:21534970,15502914:185139 +k1,11485:23250375,15502914:185139 +k1,11485:24086942,15502914:185139 +k1,11485:25469425,15502914:185140 +k1,11485:26010424,15502914:185139 +k1,11485:28707558,15502914:185139 +k1,11485:31900144,15502914:185139 +k1,11486:32583029,15502914:0 +) +(1,11486:6630773,16344402:25952256,505283,134348 +(1,11485:6630773,16344402:0,414482,122846 +r1,11485:8044174,16344402:1413401,537328,122846 +k1,11485:6630773,16344402:-1413401 +) +(1,11485:6630773,16344402:1413401,414482,122846 +k1,11485:6630773,16344402:3277 +h1,11485:8040897,16344402:0,411205,112570 +) +g1,11485:8243403,16344402 +g1,11485:9094060,16344402 +g1,11485:10312374,16344402 +g1,11485:11962570,16344402 +g1,11485:13650122,16344402 +g1,11485:14717703,16344402 +g1,11485:17212003,16344402 +g1,11485:18430317,16344402 +g1,11485:22701298,16344402 +g1,11485:23586689,16344402 +g1,11485:25804427,16344402 +g1,11485:27739049,16344402 +(1,11485:27739049,16344402:0,452978,122846 +r1,11485:31966145,16344402:4227096,575824,122846 +k1,11485:27739049,16344402:-4227096 +) +(1,11485:27739049,16344402:4227096,452978,122846 +k1,11485:27739049,16344402:3277 +h1,11485:31962868,16344402:0,411205,112570 +) +k1,11486:32583029,16344402:616884 +g1,11486:32583029,16344402 +) +v1,11488:6630773,17485364:0,393216,0 +(1,11494:6630773,19132816:25952256,2040668,196608 +g1,11494:6630773,19132816 +g1,11494:6630773,19132816 +g1,11494:6434165,19132816 +(1,11494:6434165,19132816:0,2040668,196608 +r1,11494:32779637,19132816:26345472,2237276,196608 +k1,11494:6434165,19132816:-26345472 +) +(1,11494:6434165,19132816:26345472,2040668,196608 +[1,11494:6630773,19132816:25952256,1844060,0 +(1,11490:6630773,17692982:25952256,404226,107478 +(1,11489:6630773,17692982:0,0,0 +g1,11489:6630773,17692982 +g1,11489:6630773,17692982 +g1,11489:6303093,17692982 +(1,11489:6303093,17692982:0,0,0 +) +g1,11489:6630773,17692982 +) +k1,11490:6630773,17692982:0 +g1,11490:10424522,17692982 +g1,11490:11056814,17692982 +k1,11490:11056814,17692982:0 +h1,11490:13269834,17692982:0,0,0 +k1,11490:32583030,17692982:19313196 +g1,11490:32583030,17692982 +) +(1,11491:6630773,18359160:25952256,404226,107478 +h1,11491:6630773,18359160:0,0,0 +g1,11491:6946919,18359160 +g1,11491:7263065,18359160 +g1,11491:7579211,18359160 +g1,11491:7895357,18359160 +g1,11491:8211503,18359160 +g1,11491:8527649,18359160 +g1,11491:8843795,18359160 +g1,11491:10740670,18359160 +g1,11491:11372962,18359160 +g1,11491:13269837,18359160 +g1,11491:13902129,18359160 +g1,11491:14534421,18359160 +g1,11491:16431295,18359160 +h1,11491:16747441,18359160:0,0,0 +k1,11491:32583029,18359160:15835588 +g1,11491:32583029,18359160 +) +(1,11492:6630773,19025338:25952256,404226,107478 +h1,11492:6630773,19025338:0,0,0 +g1,11492:6946919,19025338 +g1,11492:7263065,19025338 +k1,11492:7263065,19025338:0 +h1,11492:11056813,19025338:0,0,0 +k1,11492:32583029,19025338:21526216 +g1,11492:32583029,19025338 +) +] +) +g1,11494:32583029,19132816 +g1,11494:6630773,19132816 +g1,11494:6630773,19132816 +g1,11494:32583029,19132816 +g1,11494:32583029,19132816 +) +h1,11494:6630773,19329424:0,0,0 +(1,11497:6630773,28932432:25952256,9062689,0 +k1,11497:10523651,28932432:3892878 +h1,11496:10523651,28932432:0,0,0 +(1,11496:10523651,28932432:18166500,9062689,0 +(1,11496:10523651,28932432:18167381,9062712,0 +(1,11496:10523651,28932432:18167381,9062712,0 +(1,11496:10523651,28932432:0,9062712,0 +(1,11496:10523651,28932432:0,14155776,0 +(1,11496:10523651,28932432:28377088,14155776,0 +) +k1,11496:10523651,28932432:-28377088 +) +) +g1,11496:28691032,28932432 +) +) +) +g1,11497:28690151,28932432 +k1,11497:32583029,28932432:3892878 +) +v1,11505:6630773,30248704:0,393216,0 +(1,11526:6630773,39860507:25952256,10005019,616038 +g1,11526:6630773,39860507 +(1,11526:6630773,39860507:25952256,10005019,616038 +(1,11526:6630773,40476545:25952256,10621057,0 +[1,11526:6630773,40476545:25952256,10621057,0 +(1,11526:6630773,40450331:25952256,10568629,0 +r1,11526:6656987,40450331:26214,10568629,0 +[1,11526:6656987,40450331:25899828,10568629,0 +(1,11526:6656987,39860507:25899828,9388981,0 +[1,11526:7246811,39860507:24720180,9388981,0 +(1,11506:7246811,31557062:24720180,1085536,298548 +(1,11505:7246811,31557062:0,1085536,298548 +r1,11526:8753226,31557062:1506415,1384084,298548 +k1,11505:7246811,31557062:-1506415 +) +(1,11505:7246811,31557062:1506415,1085536,298548 +) +k1,11505:9040297,31557062:287071 +k1,11505:9955203,31557062:287071 +k1,11505:11261359,31557062:287071 +k1,11505:14540149,31557062:287071 +k1,11505:16856215,31557062:287071 +k1,11505:18162371,31557062:287071 +k1,11505:20057040,31557062:287071 +k1,11505:21848162,31557062:287071 +k1,11505:24485354,31557062:287071 +k1,11505:29262952,31557062:287071 +k1,11505:31435494,31557062:287071 +k1,11505:31966991,31557062:0 +) +(1,11506:7246811,32398550:24720180,513147,134348 +k1,11505:8479592,32398550:213696 +k1,11505:10958868,32398550:213696 +k1,11505:11785326,32398550:213696 +k1,11505:13018108,32398550:213697 +k1,11505:13646632,32398550:213681 +k1,11505:16454243,32398550:213696 +k1,11505:19602641,32398550:213696 +k1,11505:20502500,32398550:213697 +k1,11505:22110147,32398550:213696 +k1,11505:24025813,32398550:213696 +k1,11505:24654338,32398550:213682 +k1,11505:27331532,32398550:213696 +k1,11505:29901247,32398550:213696 +k1,11505:31219225,32398550:213696 +k1,11505:31966991,32398550:0 +) +(1,11506:7246811,33240038:24720180,505283,134348 +g1,11505:10220834,33240038 +g1,11505:11071491,33240038 +g1,11505:11626580,33240038 +k1,11506:31966990,33240038:17655400 +g1,11506:31966990,33240038 +) +v1,11508:7246811,34430504:0,393216,0 +(1,11514:7246811,36077956:24720180,2040668,196608 +g1,11514:7246811,36077956 +g1,11514:7246811,36077956 +g1,11514:7050203,36077956 +(1,11514:7050203,36077956:0,2040668,196608 +r1,11526:32163599,36077956:25113396,2237276,196608 +k1,11514:7050203,36077956:-25113396 +) +(1,11514:7050203,36077956:25113396,2040668,196608 +[1,11514:7246811,36077956:24720180,1844060,0 +(1,11510:7246811,34638122:24720180,404226,107478 +(1,11509:7246811,34638122:0,0,0 +g1,11509:7246811,34638122 +g1,11509:7246811,34638122 +g1,11509:6919131,34638122 +(1,11509:6919131,34638122:0,0,0 +) +g1,11509:7246811,34638122 +) +g1,11510:7879103,34638122 +g1,11510:8827541,34638122 +g1,11510:12621290,34638122 +g1,11510:13253582,34638122 +k1,11510:13253582,34638122:0 +h1,11510:15466602,34638122:0,0,0 +k1,11510:31966991,34638122:16500389 +g1,11510:31966991,34638122 +) +(1,11511:7246811,35304300:24720180,404226,107478 +h1,11511:7246811,35304300:0,0,0 +g1,11511:7562957,35304300 +g1,11511:7879103,35304300 +g1,11511:8195249,35304300 +g1,11511:8511395,35304300 +g1,11511:8827541,35304300 +g1,11511:9143687,35304300 +g1,11511:9459833,35304300 +g1,11511:9775979,35304300 +g1,11511:10092125,35304300 +g1,11511:10408271,35304300 +g1,11511:10724417,35304300 +g1,11511:11040563,35304300 +g1,11511:12937438,35304300 +g1,11511:13569730,35304300 +g1,11511:15466605,35304300 +g1,11511:16098897,35304300 +g1,11511:16731189,35304300 +g1,11511:18628063,35304300 +h1,11511:18944209,35304300:0,0,0 +k1,11511:31966991,35304300:13022782 +g1,11511:31966991,35304300 +) +(1,11512:7246811,35970478:24720180,404226,107478 +h1,11512:7246811,35970478:0,0,0 +g1,11512:7562957,35970478 +g1,11512:7879103,35970478 +g1,11512:8195249,35970478 +g1,11512:8511395,35970478 +g1,11512:8827541,35970478 +g1,11512:9143687,35970478 +g1,11512:9459833,35970478 +k1,11512:9459833,35970478:0 +h1,11512:13253581,35970478:0,0,0 +k1,11512:31966991,35970478:18713410 +g1,11512:31966991,35970478 +) +] +) +g1,11514:31966991,36077956 +g1,11514:7246811,36077956 +g1,11514:7246811,36077956 +g1,11514:31966991,36077956 +g1,11514:31966991,36077956 +) +h1,11514:7246811,36274564:0,0,0 +(1,11518:7246811,37640340:24720180,505283,126483 +h1,11517:7246811,37640340:983040,0,0 +g1,11517:9620525,37640340 +g1,11517:12169875,37640340 +g1,11517:12981866,37640340 +g1,11517:13536955,37640340 +g1,11517:15189773,37640340 +k1,11518:31966991,37640340:15178140 +g1,11518:31966991,37640340 +) +v1,11520:7246811,38830806:0,393216,0 +(1,11524:7246811,39139611:24720180,702021,196608 +g1,11524:7246811,39139611 +g1,11524:7246811,39139611 +g1,11524:7050203,39139611 +(1,11524:7050203,39139611:0,702021,196608 +r1,11526:32163599,39139611:25113396,898629,196608 +k1,11524:7050203,39139611:-25113396 +) +(1,11524:7050203,39139611:25113396,702021,196608 +[1,11524:7246811,39139611:24720180,505413,0 +(1,11522:7246811,39038424:24720180,404226,101187 +(1,11521:7246811,39038424:0,0,0 +g1,11521:7246811,39038424 +g1,11521:7246811,39038424 +g1,11521:6919131,39038424 +(1,11521:6919131,39038424:0,0,0 +) +g1,11521:7246811,39038424 +) +k1,11522:7246811,39038424:0 +h1,11522:9775976,39038424:0,0,0 +k1,11522:31966992,39038424:22191016 +g1,11522:31966992,39038424 +) +] +) +g1,11524:31966991,39139611 +g1,11524:7246811,39139611 +g1,11524:7246811,39139611 +g1,11524:31966991,39139611 +g1,11524:31966991,39139611 +) +h1,11524:7246811,39336219:0,0,0 +] +) +] +r1,11526:32583029,40450331:26214,10568629,0 +) +] +) +) +g1,11526:32583029,39860507 +) +h1,11526:6630773,40476545:0,0,0 +v1,11529:6630773,41792817:0,393216,0 +(1,11541:6630773,45116945:25952256,3717344,589824 +g1,11541:6630773,45116945 +(1,11541:6630773,45116945:25952256,3717344,589824 +(1,11541:6630773,45706769:25952256,4307168,0 +[1,11541:6630773,45706769:25952256,4307168,0 +(1,11541:6630773,45706769:25952256,4280954,0 +r1,11541:6656987,45706769:26214,4280954,0 +[1,11541:6656987,45706769:25899828,4280954,0 +(1,11541:6656987,45116945:25899828,3101306,0 +[1,11541:7246811,45116945:24720180,3101306,0 +(1,11530:7246811,43299621:24720180,1283982,196608 +(1,11529:7246811,43299621:0,1283982,196608 +r1,11541:9812056,43299621:2565245,1480590,196608 +k1,11529:7246811,43299621:-2565245 +) +(1,11529:7246811,43299621:2565245,1283982,196608 +) +k1,11529:10108361,43299621:296305 +k1,11529:12391717,43299621:296304 +k1,11529:13556374,43299621:296305 +k1,11529:15327893,43299621:296304 +k1,11529:17064024,43299621:296305 +k1,11529:18690709,43299621:296304 +k1,11529:19638442,43299621:296305 +k1,11529:21577079,43299621:296305 +k1,11529:22229243,43299621:296304 +k1,11529:23976515,43299621:296305 +k1,11529:25830610,43299621:296304 +k1,11529:26888443,43299621:296305 +k1,11529:28916208,43299621:296304 +k1,11529:30947906,43299621:296305 +k1,11529:31966991,43299621:0 +) +(1,11530:7246811,44141109:24720180,513147,134348 +k1,11529:10405787,44141109:256386 +k1,11529:11321465,44141109:256386 +k1,11529:14470611,44141109:256387 +k1,11529:15680546,44141109:256386 +k1,11529:17412147,44141109:256386 +k1,11529:18954349,44141109:256386 +k1,11529:20650562,44141109:256387 +k1,11529:22237329,44141109:256386 +k1,11529:23145143,44141109:256386 +k1,11529:24792203,44141109:256386 +k1,11529:25404449,44141109:256386 +k1,11529:27860224,44141109:256387 +k1,11529:29070159,44141109:256386 +k1,11529:30430827,44141109:256386 +k1,11529:31966991,44141109:0 +) +(1,11530:7246811,44982597:24720180,513147,134348 +g1,11529:8713506,44982597 +g1,11529:9931820,44982597 +g1,11529:12557192,44982597 +g1,11529:13415713,44982597 +g1,11529:14818183,44982597 +g1,11529:16976938,44982597 +g1,11529:18911560,44982597 +(1,11529:18911560,44982597:0,452978,115847 +r1,11541:22083520,44982597:3171960,568825,115847 +k1,11529:18911560,44982597:-3171960 +) +(1,11529:18911560,44982597:3171960,452978,115847 +k1,11529:18911560,44982597:3277 +h1,11529:22080243,44982597:0,411205,112570 +) +k1,11530:31966991,44982597:9709801 +g1,11530:31966991,44982597 +) +] +) +] +r1,11541:32583029,45706769:26214,4280954,0 +) +] +) +) +g1,11541:32583029,45116945 ) ] (1,11541:32583029,45706769:0,0,0 @@ -202772,11457 +202532,11576 @@ h1,11541:6630773,47279633:25952256,0,0 ] h1,11541:4262630,4025873:0,0,0 ] -!20523 +!15507 }217 -Input:1463:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1464:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1465:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1466:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1467:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1468:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1469:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1470:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {218 -[1,11580:4262630,47279633:28320399,43253760,0 -(1,11580:4262630,4025873:0,0,0 -[1,11580:-473657,4025873:25952256,0,0 -(1,11580:-473657,-710414:25952256,0,0 -h1,11580:-473657,-710414:0,0,0 -(1,11580:-473657,-710414:0,0,0 -(1,11580:-473657,-710414:0,0,0 -g1,11580:-473657,-710414 -(1,11580:-473657,-710414:65781,0,65781 -g1,11580:-407876,-710414 -[1,11580:-407876,-644633:0,0,0 +[1,11584:4262630,47279633:28320399,43253760,0 +(1,11584:4262630,4025873:0,0,0 +[1,11584:-473657,4025873:25952256,0,0 +(1,11584:-473657,-710414:25952256,0,0 +h1,11584:-473657,-710414:0,0,0 +(1,11584:-473657,-710414:0,0,0 +(1,11584:-473657,-710414:0,0,0 +g1,11584:-473657,-710414 +(1,11584:-473657,-710414:65781,0,65781 +g1,11584:-407876,-710414 +[1,11584:-407876,-644633:0,0,0 ] ) -k1,11580:-473657,-710414:-65781 +k1,11584:-473657,-710414:-65781 ) ) -k1,11580:25478599,-710414:25952256 -g1,11580:25478599,-710414 +k1,11584:25478599,-710414:25952256 +g1,11584:25478599,-710414 ) ] ) -[1,11580:6630773,47279633:25952256,43253760,0 -[1,11580:6630773,4812305:25952256,786432,0 -(1,11580:6630773,4812305:25952256,513147,134348 -(1,11580:6630773,4812305:25952256,513147,134348 -g1,11580:3078558,4812305 -[1,11580:3078558,4812305:0,0,0 -(1,11580:3078558,2439708:0,1703936,0 -k1,11580:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11580:2537886,2439708:1179648,16384,0 +[1,11584:6630773,47279633:25952256,43253760,0 +[1,11584:6630773,4812305:25952256,786432,0 +(1,11584:6630773,4812305:25952256,513147,134348 +(1,11584:6630773,4812305:25952256,513147,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,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11584:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11580:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11584:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11580:3078558,4812305:0,0,0 -(1,11580:3078558,2439708:0,1703936,0 -g1,11580:29030814,2439708 -g1,11580:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11580:36151628,1915420:16384,1179648,0 +[1,11584:3078558,4812305:0,0,0 +(1,11584:3078558,2439708:0,1703936,0 +g1,11584:29030814,2439708 +g1,11584:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11584:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11580:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11584:37855564,2439708:1179648,16384,0 ) ) -k1,11580:3078556,2439708:-34777008 +k1,11584:3078556,2439708:-34777008 ) ] -[1,11580:3078558,4812305:0,0,0 -(1,11580:3078558,49800853:0,16384,2228224 -k1,11580:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11580:2537886,49800853:1179648,16384,0 +[1,11584:3078558,4812305:0,0,0 +(1,11584:3078558,49800853:0,16384,2228224 +k1,11584:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11584:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11580:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11584:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11580:3078558,4812305:0,0,0 -(1,11580:3078558,49800853:0,16384,2228224 -g1,11580:29030814,49800853 -g1,11580:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11580:36151628,51504789:16384,1179648,0 +[1,11584:3078558,4812305:0,0,0 +(1,11584:3078558,49800853:0,16384,2228224 +g1,11584:29030814,49800853 +g1,11584:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11584:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11580:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11584:37855564,49800853:1179648,16384,0 ) ) -k1,11580:3078556,49800853:-34777008 +k1,11584:3078556,49800853:-34777008 ) ] -g1,11580:6630773,4812305 -g1,11580:6630773,4812305 -g1,11580:10697281,4812305 -g1,11580:11496164,4812305 -g1,11580:12681054,4812305 -g1,11580:15925086,4812305 -g1,11580:16740353,4812305 -g1,11580:19649496,4812305 -k1,11580:31387652,4812305:11738156 +g1,11584:6630773,4812305 +g1,11584:6630773,4812305 +g1,11584:10697281,4812305 +g1,11584:11496164,4812305 +g1,11584:12681054,4812305 +g1,11584:15925086,4812305 +g1,11584:16740353,4812305 +g1,11584:19649496,4812305 +k1,11584:31387652,4812305:11738156 ) ) ] -[1,11580:6630773,45706769:25952256,40108032,0 -(1,11580:6630773,45706769:25952256,40108032,0 -(1,11580:6630773,45706769:0,0,0 -g1,11580:6630773,45706769 +[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,11580:6630773,45706769:25952256,40108032,0 +[1,11584:6630773,45706769:25952256,40108032,0 v1,11541:6630773,6254097:0,393216,0 -(1,11547:6630773,7901549:25952256,2040668,196608 -g1,11547:6630773,7901549 -g1,11547:6630773,7901549 -g1,11547:6434165,7901549 -(1,11547:6434165,7901549:0,2040668,196608 -r1,11547:32779637,7901549:26345472,2237276,196608 -k1,11547:6434165,7901549:-26345472 -) -(1,11547:6434165,7901549:26345472,2040668,196608 -[1,11547:6630773,7901549:25952256,1844060,0 -(1,11543:6630773,6461715:25952256,404226,107478 -(1,11542:6630773,6461715:0,0,0 -g1,11542:6630773,6461715 -g1,11542:6630773,6461715 -g1,11542:6303093,6461715 -(1,11542:6303093,6461715:0,0,0 -) -g1,11542:6630773,6461715 -) -k1,11543:6630773,6461715:0 -g1,11543:10424522,6461715 -g1,11543:11056814,6461715 -k1,11543:11056814,6461715:0 -h1,11543:13269834,6461715:0,0,0 -k1,11543:32583030,6461715:19313196 -g1,11543:32583030,6461715 -) -(1,11544:6630773,7127893:25952256,404226,107478 -h1,11544:6630773,7127893:0,0,0 -g1,11544:6946919,7127893 -g1,11544:7263065,7127893 -g1,11544:7579211,7127893 -g1,11544:7895357,7127893 -g1,11544:8211503,7127893 -g1,11544:8527649,7127893 -g1,11544:8843795,7127893 -g1,11544:10740670,7127893 -g1,11544:11372962,7127893 -g1,11544:13269837,7127893 -g1,11544:13902129,7127893 -g1,11544:14534421,7127893 -g1,11544:16431295,7127893 -h1,11544:16747441,7127893:0,0,0 -k1,11544:32583029,7127893:15835588 -g1,11544:32583029,7127893 -) -(1,11545:6630773,7794071:25952256,404226,107478 -h1,11545:6630773,7794071:0,0,0 -g1,11545:6946919,7794071 -g1,11545:7263065,7794071 -g1,11545:12637542,7794071 -g1,11545:13269834,7794071 -g1,11545:15482854,7794071 -g1,11545:17379728,7794071 -g1,11545:18012020,7794071 -h1,11545:20857331,7794071:0,0,0 -k1,11545:32583029,7794071:11725698 -g1,11545:32583029,7794071 -) -] -) -g1,11547:32583029,7901549 -g1,11547:6630773,7901549 -g1,11547:6630773,7901549 -g1,11547:32583029,7901549 -g1,11547:32583029,7901549 -) -h1,11547:6630773,8098157:0,0,0 -(1,11550:6630773,17750670:25952256,9062689,0 -k1,11550:10523651,17750670:3892878 -h1,11549:10523651,17750670:0,0,0 -(1,11549:10523651,17750670:18166500,9062689,0 -(1,11549:10523651,17750670:18167381,9062712,0 -(1,11549:10523651,17750670:18167381,9062712,0 -(1,11549:10523651,17750670:0,9062712,0 -(1,11549:10523651,17750670:0,14155776,0 -(1,11549:10523651,17750670:28377088,14155776,0 -) -k1,11549:10523651,17750670:-28377088 -) -) -g1,11549:28691032,17750670 -) -) -) -g1,11550:28690151,17750670 -k1,11550:32583029,17750670:3892878 -) -(1,11558:6630773,18592158:25952256,513147,134348 -h1,11557:6630773,18592158:983040,0,0 -k1,11557:9562985,18592158:174457 -k1,11557:10093302,18592158:174457 -k1,11557:13257511,18592158:174457 -k1,11557:15846314,18592158:174457 -k1,11557:19374903,18592158:174456 -k1,11557:19905220,18592158:174457 -k1,11557:23029452,18592158:174457 -k1,11557:27868762,18592158:174457 -k1,11557:28702511,18592158:174457 -k1,11557:29896053,18592158:174457 -k1,11558:32583029,18592158:0 -) -(1,11558:6630773,19433646:25952256,505283,134348 -k1,11557:8398001,19433646:169460 -k1,11557:9183500,19433646:169461 -k1,11557:10372045,19433646:169460 -k1,11557:12104540,19433646:169461 -k1,11557:12629860,19433646:169460 -k1,11557:15481710,19433646:169461 -k1,11557:16334055,19433646:169460 -(1,11557:16334055,19433646:0,414482,115847 -r1,11557:17747456,19433646:1413401,530329,115847 -k1,11557:16334055,19433646:-1413401 -) -(1,11557:16334055,19433646:1413401,414482,115847 -k1,11557:16334055,19433646:3277 -h1,11557:17744179,19433646:0,411205,112570 -) -k1,11557:17916917,19433646:169461 -k1,11557:19805386,19433646:169460 -k1,11557:23439080,19433646:169461 -k1,11557:24627625,19433646:169460 -k1,11557:26186449,19433646:169461 -k1,11557:27547354,19433646:169460 -k1,11557:28072675,19433646:169461 -(1,11557:28072675,19433646:0,414482,122846 -r1,11557:29486076,19433646:1413401,537328,122846 -k1,11557:28072675,19433646:-1413401 -) -(1,11557:28072675,19433646:1413401,414482,122846 -k1,11557:28072675,19433646:3277 -h1,11557:29482799,19433646:0,411205,112570 -) -k1,11557:29829206,19433646:169460 -k1,11557:32583029,19433646:0 -) -(1,11558:6630773,20275134:25952256,513147,126483 -k1,11557:8482384,20275134:159471 -k1,11557:12879413,20275134:159471 -k1,11557:15326091,20275134:159471 -k1,11557:16557730,20275134:159470 -k1,11557:17783472,20275134:159471 -k1,11557:20245878,20275134:159471 -k1,11557:21056777,20275134:159471 -k1,11557:23836377,20275134:159471 -k1,11557:24351707,20275134:159470 -k1,11557:27595302,20275134:159471 -k1,11557:30745181,20275134:159471 -k1,11557:31563944,20275134:159471 -k1,11557:32583029,20275134:0 -) -(1,11558:6630773,21116622:25952256,513147,134348 -k1,11557:8430031,21116622:236224 -k1,11557:10154578,21116622:236224 -k1,11557:11259154,21116622:236224 -k1,11557:12692721,21116622:236224 -k1,11557:13284805,21116622:236224 -k1,11557:15233485,21116622:236224 -k1,11557:16638217,21116622:236225 -k1,11557:18609834,21116622:236224 -(1,11557:18609834,21116622:0,452978,115847 -r1,11557:23188642,21116622:4578808,568825,115847 -k1,11557:18609834,21116622:-4578808 -) -(1,11557:18609834,21116622:4578808,452978,115847 -k1,11557:18609834,21116622:3277 -h1,11557:23185365,21116622:0,411205,112570 -) -k1,11557:23424866,21116622:236224 -k1,11557:25055041,21116622:236224 -k1,11557:26079663,21116622:236224 -k1,11557:28474643,21116622:236224 -k1,11557:30676292,21116622:236224 -k1,11557:31563944,21116622:236224 -k1,11557:32583029,21116622:0 -) -(1,11558:6630773,21958110:25952256,505283,134348 -k1,11557:8042978,21958110:134908 -k1,11557:9913280,21958110:134909 -(1,11557:9913280,21958110:0,452978,122846 -r1,11557:13788664,21958110:3875384,575824,122846 -k1,11557:9913280,21958110:-3875384 -) -(1,11557:9913280,21958110:3875384,452978,122846 -k1,11557:9913280,21958110:3277 -h1,11557:13785387,21958110:0,411205,112570 -) -k1,11557:13923572,21958110:134908 -k1,11557:16263768,21958110:134909 -k1,11557:17160204,21958110:134908 -k1,11557:19033127,21958110:134908 -k1,11557:20561987,21958110:134909 -(1,11557:20561987,21958110:0,452978,115847 -r1,11557:22678812,21958110:2116825,568825,115847 -k1,11557:20561987,21958110:-2116825 -) -(1,11557:20561987,21958110:2116825,452978,115847 -k1,11557:20561987,21958110:3277 -h1,11557:22675535,21958110:0,411205,112570 -) -k1,11557:22813720,21958110:134908 -k1,11557:23634791,21958110:134909 -k1,11557:24540402,21958110:134908 -k1,11557:27747639,21958110:134909 -k1,11557:28533975,21958110:134908 -(1,11557:28533975,21958110:0,452978,115847 -r1,11557:32409359,21958110:3875384,568825,115847 -k1,11557:28533975,21958110:-3875384 -) -(1,11557:28533975,21958110:3875384,452978,115847 -k1,11557:28533975,21958110:3277 -h1,11557:32406082,21958110:0,411205,112570 -) -k1,11557:32583029,21958110:0 -) -(1,11558:6630773,22799598:25952256,513147,134348 -g1,11557:7783551,22799598 -g1,11557:8670253,22799598 -g1,11557:9225342,22799598 -g1,11557:11237297,22799598 -g1,11557:14926973,22799598 -g1,11557:16861595,22799598 -(1,11557:16861595,22799598:0,452978,115847 -r1,11557:18274996,22799598:1413401,568825,115847 -k1,11557:16861595,22799598:-1413401 -) -(1,11557:16861595,22799598:1413401,452978,115847 -k1,11557:16861595,22799598:3277 -h1,11557:18271719,22799598:0,411205,112570 -) -g1,11557:18474225,22799598 -g1,11557:19359616,22799598 -g1,11557:20577930,22799598 -k1,11558:32583029,22799598:9377105 -g1,11558:32583029,22799598 -) -v1,11560:6630773,23990064:0,393216,0 -(1,11567:6630773,26303694:25952256,2706846,196608 -g1,11567:6630773,26303694 -g1,11567:6630773,26303694 -g1,11567:6434165,26303694 -(1,11567:6434165,26303694:0,2706846,196608 -r1,11567:32779637,26303694:26345472,2903454,196608 -k1,11567:6434165,26303694:-26345472 -) -(1,11567:6434165,26303694:26345472,2706846,196608 -[1,11567:6630773,26303694:25952256,2510238,0 -(1,11562:6630773,24197682:25952256,404226,107478 -(1,11561:6630773,24197682:0,0,0 -g1,11561:6630773,24197682 -g1,11561:6630773,24197682 -g1,11561:6303093,24197682 -(1,11561:6303093,24197682:0,0,0 -) -g1,11561:6630773,24197682 -) -k1,11562:6630773,24197682:0 -g1,11562:10424522,24197682 -g1,11562:11056814,24197682 -k1,11562:11056814,24197682:0 -h1,11562:13269834,24197682:0,0,0 -k1,11562:32583030,24197682:19313196 -g1,11562:32583030,24197682 -) -(1,11563:6630773,24863860:25952256,404226,107478 -h1,11563:6630773,24863860:0,0,0 -g1,11563:6946919,24863860 -g1,11563:7263065,24863860 -g1,11563:7579211,24863860 -g1,11563:7895357,24863860 -g1,11563:8211503,24863860 -g1,11563:8527649,24863860 -g1,11563:8843795,24863860 -g1,11563:10740670,24863860 -g1,11563:11372962,24863860 -g1,11563:13269837,24863860 -g1,11563:13902129,24863860 -g1,11563:14534421,24863860 -g1,11563:16431295,24863860 -h1,11563:16747441,24863860:0,0,0 -k1,11563:32583029,24863860:15835588 -g1,11563:32583029,24863860 -) -(1,11564:6630773,25530038:25952256,404226,107478 -h1,11564:6630773,25530038:0,0,0 -g1,11564:6946919,25530038 -g1,11564:7263065,25530038 -g1,11564:11372959,25530038 -h1,11564:11689105,25530038:0,0,0 -k1,11564:32583029,25530038:20893924 -g1,11564:32583029,25530038 -) -(1,11565:6630773,26196216:25952256,404226,107478 -h1,11565:6630773,26196216:0,0,0 -g1,11565:6946919,26196216 -g1,11565:7263065,26196216 -g1,11565:12637542,26196216 -g1,11565:13269834,26196216 -g1,11565:15799000,26196216 -g1,11565:18012020,26196216 -g1,11565:18644312,26196216 -h1,11565:20225041,26196216:0,0,0 -k1,11565:32583029,26196216:12357988 -g1,11565:32583029,26196216 -) -] -) -g1,11567:32583029,26303694 -g1,11567:6630773,26303694 -g1,11567:6630773,26303694 -g1,11567:32583029,26303694 -g1,11567:32583029,26303694 -) -h1,11567:6630773,26500302:0,0,0 -(1,11570:6630773,36152815:25952256,9062689,0 -k1,11570:10523651,36152815:3892878 -h1,11569:10523651,36152815:0,0,0 -(1,11569:10523651,36152815:18166500,9062689,0 -(1,11569:10523651,36152815:18167381,9062712,0 -(1,11569:10523651,36152815:18167381,9062712,0 -(1,11569:10523651,36152815:0,9062712,0 -(1,11569:10523651,36152815:0,14155776,0 -(1,11569:10523651,36152815:28377088,14155776,0 -) -k1,11569:10523651,36152815:-28377088 -) -) -g1,11569:28691032,36152815 -) -) -) -g1,11570:28690151,36152815 -k1,11570:32583029,36152815:3892878 -) -(1,11578:6630773,36994303:25952256,513147,134348 -h1,11577:6630773,36994303:983040,0,0 -k1,11577:8802745,36994303:235383 -k1,11577:11358759,36994303:235384 -k1,11577:12559487,36994303:235383 -k1,11577:14760295,36994303:235383 -k1,11577:16687818,36994303:235383 -k1,11577:17582494,36994303:235384 -k1,11577:18836962,36994303:235383 -k1,11577:21941511,36994303:235383 -k1,11577:22836186,36994303:235383 -k1,11577:24090655,36994303:235384 -k1,11577:27228628,36994303:235383 -k1,11577:30554034,36994303:235383 -k1,11577:32583029,36994303:0 -) -(1,11578:6630773,37835791:25952256,505283,126483 -k1,11577:8921060,37835791:293405 -k1,11577:12858921,37835791:293404 -k1,11577:14343771,37835791:293405 -k1,11577:17043002,37835791:293405 -k1,11577:18533094,37835791:293405 -k1,11577:20434096,37835791:293404 -k1,11577:22231552,37835791:293405 -k1,11577:25400021,37835791:293405 -k1,11577:28063207,37835791:293404 -k1,11577:30886302,37835791:293405 -k1,11577:32583029,37835791:0 -) -(1,11578:6630773,38677279:25952256,513147,126483 -k1,11577:9774989,38677279:275050 -k1,11577:11525253,38677279:275049 -k1,11577:14396184,38677279:275050 -k1,11577:16556704,38677279:275049 -k1,11577:17823314,38677279:275050 -k1,11577:19611589,38677279:275049 -k1,11577:21584677,38677279:275050 -k1,11577:22728078,38677279:275049 -k1,11577:23818396,38677279:275050 -k1,11577:25159716,38677279:275049 -k1,11577:26369309,38677279:275050 -k1,11577:28283413,38677279:275049 -k1,11577:31629480,38677279:275050 -k1,11577:32583029,38677279:0 -) -(1,11578:6630773,39518767:25952256,505283,134348 -k1,11577:8217618,39518767:202725 -k1,11577:9552804,39518767:202724 -k1,11577:10780512,39518767:202725 -k1,11577:13974955,39518767:202724 -k1,11577:14793718,39518767:202725 -k1,11577:16881914,39518767:202725 -k1,11577:18464826,39518767:202724 -k1,11577:19659111,39518767:202725 -k1,11577:22759182,39518767:202724 -k1,11577:24070121,39518767:202725 -k1,11577:25226395,39518767:202725 -k1,11577:26917442,39518767:202724 -k1,11577:28514118,39518767:202725 -k1,11577:29072702,39518767:202724 -k1,11577:30847636,39518767:202725 -k1,11577:32583029,39518767:0 -) -(1,11578:6630773,40360255:25952256,513147,134348 -k1,11577:7184015,40360255:197382 -k1,11577:11027166,40360255:197383 -k1,11577:16235431,40360255:197382 -k1,11577:17813658,40360255:197383 -k1,11577:19937798,40360255:197382 -k1,11577:21281406,40360255:197383 -k1,11577:24003235,40360255:197382 -k1,11577:24962146,40360255:197383 -k1,11577:26765815,40360255:197382 -k1,11577:28698591,40360255:197383 -k1,11577:30749987,40360255:197382 -k1,11577:32583029,40360255:0 -) -(1,11578:6630773,41201743:25952256,505283,134348 -k1,11577:8281297,41201743:256573 -k1,11577:10766750,41201743:256574 -k1,11577:13231886,41201743:256573 -k1,11577:16605352,41201743:256574 -k1,11577:17513353,41201743:256573 -k1,11577:18125787,41201743:256574 -k1,11577:22028128,41201743:256573 -k1,11577:24030580,41201743:256573 -k1,11577:25648992,41201743:256574 -k1,11577:27892617,41201743:256573 -k1,11577:30927262,41201743:256574 -k1,11577:31835263,41201743:256573 -k1,11577:32583029,41201743:0 -) -(1,11578:6630773,42043231:25952256,513147,134348 -k1,11577:10027286,42043231:199011 -k1,11577:10842335,42043231:199011 -k1,11577:12060430,42043231:199010 -k1,11577:14694759,42043231:199011 -k1,11577:16685524,42043231:199011 -k1,11577:17956704,42043231:199011 -k1,11577:21009153,42043231:199011 -k1,11577:22199724,42043231:199011 -k1,11577:24770482,42043231:199010 -k1,11577:25620921,42043231:199011 -k1,11577:26839017,42043231:199011 -k1,11577:31019995,42043231:199011 -k1,11577:32583029,42043231:0 -) -(1,11578:6630773,42884719:25952256,513147,126483 -k1,11577:7502704,42884719:244096 -k1,11577:9448771,42884719:244097 -k1,11577:11821476,42884719:244096 -k1,11577:12421432,42884719:244096 -k1,11577:16647496,42884719:244097 -k1,11577:18463801,42884719:244096 -k1,11577:20817501,42884719:244096 -k1,11577:22080682,42884719:244096 -k1,11577:24335424,42884719:244097 -k1,11577:26622277,42884719:244096 -k1,11577:28246561,42884719:244096 -k1,11577:29482218,42884719:244097 -k1,11577:31931601,42884719:244096 -k1,11577:32583029,42884719:0 -) -(1,11578:6630773,43726207:25952256,513147,138281 -k1,11577:9674063,43726207:210169 -k1,11577:11075677,43726207:210169 -k1,11577:12304931,43726207:210169 -k1,11577:14327826,43726207:210169 -k1,11577:17854772,43726207:210169 -k1,11577:19197403,43726207:210169 -k1,11577:20155338,43726207:210169 -k1,11577:22077963,43726207:210169 -k1,11577:22939560,43726207:210169 -(1,11577:22939560,43726207:0,452978,122846 -r1,11577:25408097,43726207:2468537,575824,122846 -k1,11577:22939560,43726207:-2468537 -) -(1,11577:22939560,43726207:2468537,452978,122846 -k1,11577:22939560,43726207:3277 -h1,11577:25404820,43726207:0,411205,112570 -) -k1,11577:25618266,43726207:210169 -k1,11577:29810402,43726207:210169 -$1,11577:29810402,43726207 -$1,11577:30362215,43726207 -k1,11577:30572384,43726207:210169 -k1,11577:32583029,43726207:0 -) -(1,11578:6630773,44567695:25952256,505283,134348 -g1,11577:8021447,44567695 -g1,11577:9239761,44567695 -g1,11577:11874308,44567695 -$1,11577:11874308,44567695 -$1,11577:12376969,44567695 -g1,11577:12576198,44567695 -k1,11578:32583029,44567695:17822516 -g1,11578:32583029,44567695 -) -] -(1,11580:32583029,45706769:0,0,0 -g1,11580:32583029,45706769 -) -) -] -(1,11580:6630773,47279633:25952256,0,0 -h1,11580:6630773,47279633:25952256,0,0 -) -] -h1,11580:4262630,4025873:0,0,0 -] -!18429 +(1,11541:6630773,12930413:25952256,7069532,616038 +g1,11541:6630773,12930413 +(1,11541:6630773,12930413:25952256,7069532,616038 +(1,11541:6630773,13546451:25952256,7685570,0 +[1,11541:6630773,13546451:25952256,7685570,0 +(1,11541:6630773,13520237:25952256,7659356,0 +r1,11541:6656987,13520237:26214,7659356,0 +[1,11541:6656987,13520237:25899828,7659356,0 +(1,11541:6656987,12930413:25899828,6479708,0 +[1,11541:7246811,12930413:24720180,6479708,0 +v1,11532:7246811,6843921:0,393216,0 +(1,11536:7246811,7152726:24720180,702021,196608 +g1,11536:7246811,7152726 +g1,11536:7246811,7152726 +g1,11536:7050203,7152726 +(1,11536:7050203,7152726:0,702021,196608 +r1,11541:32163599,7152726:25113396,898629,196608 +k1,11536:7050203,7152726:-25113396 +) +(1,11536:7050203,7152726:25113396,702021,196608 +[1,11536:7246811,7152726:24720180,505413,0 +(1,11534:7246811,7051539:24720180,404226,101187 +(1,11533:7246811,7051539:0,0,0 +g1,11533:7246811,7051539 +g1,11533:7246811,7051539 +g1,11533:6919131,7051539 +(1,11533:6919131,7051539:0,0,0 +) +g1,11533:7246811,7051539 +) +k1,11534:7246811,7051539:0 +h1,11534:10408268,7051539:0,0,0 +k1,11534:31966992,7051539:21558724 +g1,11534:31966992,7051539 +) +] +) +g1,11536:31966991,7152726 +g1,11536:7246811,7152726 +g1,11536:7246811,7152726 +g1,11536:31966991,7152726 +g1,11536:31966991,7152726 +) +h1,11536:7246811,7349334:0,0,0 +(1,11539:7246811,8715110:24720180,513147,134348 +h1,11538:7246811,8715110:983040,0,0 +g1,11538:9382629,8715110 +g1,11538:10686140,8715110 +g1,11538:12312088,8715110 +g1,11538:13530402,8715110 +g1,11538:16661056,8715110 +g1,11538:17519577,8715110 +g1,11538:18737891,8715110 +g1,11538:20962838,8715110 +g1,11538:23121593,8715110 +g1,11538:24714773,8715110 +(1,11538:24714773,8715110:0,452978,115847 +r1,11541:26479886,8715110:1765113,568825,115847 +k1,11538:24714773,8715110:-1765113 +) +(1,11538:24714773,8715110:1765113,452978,115847 +k1,11538:24714773,8715110:3277 +h1,11538:26476609,8715110:0,411205,112570 +) +k1,11539:31966991,8715110:5313435 +g1,11539:31966991,8715110 +) +(1,11541:7246811,9556598:24720180,505283,134348 +h1,11540:7246811,9556598:983040,0,0 +k1,11540:11081460,9556598:316676 +k1,11540:14940355,9556598:316675 +k1,11540:18017407,9556598:316676 +k1,11540:21118707,9556598:316675 +(1,11540:21118707,9556598:0,452978,115847 +r1,11541:22883820,9556598:1765113,568825,115847 +k1,11540:21118707,9556598:-1765113 +) +(1,11540:21118707,9556598:1765113,452978,115847 +k1,11540:21118707,9556598:3277 +h1,11540:22880543,9556598:0,411205,112570 +) +k1,11540:23374166,9556598:316676 +(1,11540:23374166,9556598:0,452978,115847 +r1,11541:27601262,9556598:4227096,568825,115847 +k1,11540:23374166,9556598:-4227096 +) +(1,11540:23374166,9556598:4227096,452978,115847 +k1,11540:23374166,9556598:3277 +h1,11540:27597985,9556598:0,411205,112570 +) +k1,11540:28091607,9556598:316675 +(1,11540:28091607,9556598:0,452978,115847 +r1,11541:31966991,9556598:3875384,568825,115847 +k1,11540:28091607,9556598:-3875384 +) +(1,11540:28091607,9556598:3875384,452978,115847 +k1,11540:28091607,9556598:3277 +h1,11540:31963714,9556598:0,411205,112570 +) +k1,11540:31966991,9556598:0 +) +(1,11541:7246811,10398086:24720180,513147,134348 +k1,11540:8603688,10398086:165432 +(1,11540:8603688,10398086:0,452978,115847 +r1,11541:13182496,10398086:4578808,568825,115847 +k1,11540:8603688,10398086:-4578808 +) +(1,11540:8603688,10398086:4578808,452978,115847 +k1,11540:8603688,10398086:3277 +h1,11540:13179219,10398086:0,411205,112570 +) +k1,11540:13521598,10398086:165432 +k1,11540:14835876,10398086:165432 +k1,11540:16698035,10398086:165432 +k1,11540:19648092,10398086:165432 +k1,11540:20464952,10398086:165432 +k1,11540:22998855,10398086:165432 +k1,11540:25190005,10398086:165432 +k1,11540:27645265,10398086:165432 +k1,11540:29204648,10398086:165432 +k1,11540:31966991,10398086:0 +) +(1,11541:7246811,11239574:24720180,513147,134348 +k1,11540:10271550,11239574:208657 +k1,11540:11139498,11239574:208656 +k1,11540:13236247,11239574:208657 +k1,11540:14127788,11239574:208656 +k1,11540:17647979,11239574:208657 +k1,11540:19110339,11239574:208656 +k1,11540:20451458,11239574:208657 +k1,11540:21685097,11239574:208656 +k1,11540:23178260,11239574:208657 +k1,11540:24406001,11239574:208656 +k1,11540:25891955,11239574:208657 +k1,11540:28969777,11239574:208656 +k1,11540:30462940,11239574:208657 +k1,11540:31966991,11239574:0 +) +(1,11541:7246811,12081062:24720180,513147,134348 +k1,11540:9437549,12081062:225313 +k1,11540:10314289,12081062:225312 +k1,11540:11558687,12081062:225313 +k1,11540:13061297,12081062:225313 +k1,11540:14278170,12081062:225313 +k1,11540:16541652,12081062:225312 +k1,11540:17453127,12081062:225313 +k1,11540:20632148,12081062:225313 +k1,11540:21516753,12081062:225313 +k1,11540:22097925,12081062:225312 +k1,11540:23316764,12081062:225313 +k1,11540:24936028,12081062:225313 +k1,11540:27278809,12081062:225313 +k1,11540:28827948,12081062:225312 +k1,11540:31611131,12081062:225313 +k1,11540:31966991,12081062:0 +) +(1,11541:7246811,12922550:24720180,505283,7863 +g1,11540:10045198,12922550 +k1,11541:31966990,12922550:18816696 +g1,11541:31966990,12922550 +) +] +) +] +r1,11541:32583029,13520237:26214,7659356,0 +) +] +) +) +g1,11541:32583029,12930413 +) +h1,11541:6630773,13546451:0,0,0 +(1,11544:6630773,14912227:25952256,505283,134348 +h1,11543:6630773,14912227:983040,0,0 +k1,11543:10745311,14912227:168615 +k1,11543:13978389,14912227:168614 +k1,11543:15251286,14912227:168615 +k1,11543:16167667,14912227:168615 +k1,11543:18921676,14912227:168614 +k1,11543:19741719,14912227:168615 +k1,11543:22751974,14912227:168614 +k1,11543:23536627,14912227:168615 +k1,11543:24724327,14912227:168615 +k1,11543:26455975,14912227:168614 +k1,11543:28004778,14912227:168615 +k1,11543:29277675,14912227:168615 +k1,11543:30732105,14912227:168614 +k1,11543:31648486,14912227:168615 +k1,11543:32583029,14912227:0 +) +(1,11544:6630773,15753715:25952256,513147,126483 +g1,11543:7481430,15753715 +g1,11543:10438414,15753715 +g1,11543:12821958,15753715 +g1,11543:14093356,15753715 +g1,11543:15668186,15753715 +g1,11543:17877404,15753715 +g1,11543:20138396,15753715 +g1,11543:21403896,15753715 +g1,11543:22289287,15753715 +g1,11543:25861654,15753715 +k1,11544:32583029,15753715:3951824 +g1,11544:32583029,15753715 +) +v1,11546:6630773,16944181:0,393216,0 +(1,11552:6630773,18591633:25952256,2040668,196608 +g1,11552:6630773,18591633 +g1,11552:6630773,18591633 +g1,11552:6434165,18591633 +(1,11552:6434165,18591633:0,2040668,196608 +r1,11552:32779637,18591633:26345472,2237276,196608 +k1,11552:6434165,18591633:-26345472 +) +(1,11552:6434165,18591633:26345472,2040668,196608 +[1,11552:6630773,18591633:25952256,1844060,0 +(1,11548:6630773,17151799:25952256,404226,107478 +(1,11547:6630773,17151799:0,0,0 +g1,11547:6630773,17151799 +g1,11547:6630773,17151799 +g1,11547:6303093,17151799 +(1,11547:6303093,17151799:0,0,0 +) +g1,11547:6630773,17151799 +) +k1,11548:6630773,17151799:0 +g1,11548:10424522,17151799 +g1,11548:11056814,17151799 +k1,11548:11056814,17151799:0 +h1,11548:13269834,17151799:0,0,0 +k1,11548:32583030,17151799:19313196 +g1,11548:32583030,17151799 +) +(1,11549:6630773,17817977:25952256,404226,107478 +h1,11549:6630773,17817977:0,0,0 +g1,11549:6946919,17817977 +g1,11549:7263065,17817977 +g1,11549:7579211,17817977 +g1,11549:7895357,17817977 +g1,11549:8211503,17817977 +g1,11549:8527649,17817977 +g1,11549:8843795,17817977 +g1,11549:10740670,17817977 +g1,11549:11372962,17817977 +g1,11549:13269837,17817977 +g1,11549:13902129,17817977 +g1,11549:14534421,17817977 +g1,11549:16431295,17817977 +h1,11549:16747441,17817977:0,0,0 +k1,11549:32583029,17817977:15835588 +g1,11549:32583029,17817977 +) +(1,11550:6630773,18484155:25952256,404226,107478 +h1,11550:6630773,18484155:0,0,0 +g1,11550:6946919,18484155 +g1,11550:7263065,18484155 +g1,11550:12637542,18484155 +g1,11550:13269834,18484155 +g1,11550:15482854,18484155 +g1,11550:17379728,18484155 +g1,11550:18012020,18484155 +h1,11550:20857331,18484155:0,0,0 +k1,11550:32583029,18484155:11725698 +g1,11550:32583029,18484155 +) +] +) +g1,11552:32583029,18591633 +g1,11552:6630773,18591633 +g1,11552:6630773,18591633 +g1,11552:32583029,18591633 +g1,11552:32583029,18591633 +) +h1,11552:6630773,18788241:0,0,0 +(1,11555:6630773,28440754:25952256,9062689,0 +k1,11555:10523651,28440754:3892878 +h1,11554:10523651,28440754:0,0,0 +(1,11554:10523651,28440754:18166500,9062689,0 +(1,11554:10523651,28440754:18167381,9062712,0 +(1,11554:10523651,28440754:18167381,9062712,0 +(1,11554:10523651,28440754:0,9062712,0 +(1,11554:10523651,28440754:0,14155776,0 +(1,11554:10523651,28440754:28377088,14155776,0 +) +k1,11554:10523651,28440754:-28377088 +) +) +g1,11554:28691032,28440754 +) +) +) +g1,11555:28690151,28440754 +k1,11555:32583029,28440754:3892878 +) +(1,11563:6630773,29282242:25952256,513147,134348 +h1,11562:6630773,29282242:983040,0,0 +k1,11562:9562985,29282242:174457 +k1,11562:10093302,29282242:174457 +k1,11562:13257511,29282242:174457 +k1,11562:15846314,29282242:174457 +k1,11562:19374903,29282242:174456 +k1,11562:19905220,29282242:174457 +k1,11562:23029452,29282242:174457 +k1,11562:27868762,29282242:174457 +k1,11562:28702511,29282242:174457 +k1,11562:29896053,29282242:174457 +k1,11563:32583029,29282242:0 +) +(1,11563:6630773,30123730:25952256,505283,134348 +k1,11562:8398001,30123730:169460 +k1,11562:9183500,30123730:169461 +k1,11562:10372045,30123730:169460 +k1,11562:12104540,30123730:169461 +k1,11562:12629860,30123730:169460 +k1,11562:15481710,30123730:169461 +k1,11562:16334055,30123730:169460 +(1,11562:16334055,30123730:0,414482,115847 +r1,11562:17747456,30123730:1413401,530329,115847 +k1,11562:16334055,30123730:-1413401 +) +(1,11562:16334055,30123730:1413401,414482,115847 +k1,11562:16334055,30123730:3277 +h1,11562:17744179,30123730:0,411205,112570 +) +k1,11562:17916917,30123730:169461 +k1,11562:19805386,30123730:169460 +k1,11562:23439080,30123730:169461 +k1,11562:24627625,30123730:169460 +k1,11562:26186449,30123730:169461 +k1,11562:27547354,30123730:169460 +k1,11562:28072675,30123730:169461 +(1,11562:28072675,30123730:0,414482,122846 +r1,11562:29486076,30123730:1413401,537328,122846 +k1,11562:28072675,30123730:-1413401 +) +(1,11562:28072675,30123730:1413401,414482,122846 +k1,11562:28072675,30123730:3277 +h1,11562:29482799,30123730:0,411205,112570 +) +k1,11562:29829206,30123730:169460 +k1,11562:32583029,30123730:0 +) +(1,11563:6630773,30965218:25952256,513147,126483 +k1,11562:8482384,30965218:159471 +k1,11562:12879413,30965218:159471 +k1,11562:15326091,30965218:159471 +k1,11562:16557730,30965218:159470 +k1,11562:17783472,30965218:159471 +k1,11562:20245878,30965218:159471 +k1,11562:21056777,30965218:159471 +k1,11562:23836377,30965218:159471 +k1,11562:24351707,30965218:159470 +k1,11562:27595302,30965218:159471 +k1,11562:30745181,30965218:159471 +k1,11562:31563944,30965218:159471 +k1,11562:32583029,30965218:0 +) +(1,11563:6630773,31806706:25952256,513147,134348 +k1,11562:8430031,31806706:236224 +k1,11562:10154578,31806706:236224 +k1,11562:11259154,31806706:236224 +k1,11562:12692721,31806706:236224 +k1,11562:13284805,31806706:236224 +k1,11562:15233485,31806706:236224 +k1,11562:16638217,31806706:236225 +k1,11562:18609834,31806706:236224 +(1,11562:18609834,31806706:0,452978,115847 +r1,11562:23188642,31806706:4578808,568825,115847 +k1,11562:18609834,31806706:-4578808 +) +(1,11562:18609834,31806706:4578808,452978,115847 +k1,11562:18609834,31806706:3277 +h1,11562:23185365,31806706:0,411205,112570 +) +k1,11562:23424866,31806706:236224 +k1,11562:25055041,31806706:236224 +k1,11562:26079663,31806706:236224 +k1,11562:28474643,31806706:236224 +k1,11562:30676292,31806706:236224 +k1,11562:31563944,31806706:236224 +k1,11562:32583029,31806706:0 +) +(1,11563:6630773,32648194:25952256,505283,134348 +k1,11562:8042978,32648194:134908 +k1,11562:9913280,32648194:134909 +(1,11562:9913280,32648194:0,452978,122846 +r1,11562:13788664,32648194:3875384,575824,122846 +k1,11562:9913280,32648194:-3875384 +) +(1,11562:9913280,32648194:3875384,452978,122846 +k1,11562:9913280,32648194:3277 +h1,11562:13785387,32648194:0,411205,112570 +) +k1,11562:13923572,32648194:134908 +k1,11562:16263768,32648194:134909 +k1,11562:17160204,32648194:134908 +k1,11562:19033127,32648194:134908 +k1,11562:20561987,32648194:134909 +(1,11562:20561987,32648194:0,452978,115847 +r1,11562:22678812,32648194:2116825,568825,115847 +k1,11562:20561987,32648194:-2116825 +) +(1,11562:20561987,32648194:2116825,452978,115847 +k1,11562:20561987,32648194:3277 +h1,11562:22675535,32648194:0,411205,112570 +) +k1,11562:22813720,32648194:134908 +k1,11562:23634791,32648194:134909 +k1,11562:24540402,32648194:134908 +k1,11562:27747639,32648194:134909 +k1,11562:28533975,32648194:134908 +(1,11562:28533975,32648194:0,452978,115847 +r1,11562:32409359,32648194:3875384,568825,115847 +k1,11562:28533975,32648194:-3875384 +) +(1,11562:28533975,32648194:3875384,452978,115847 +k1,11562:28533975,32648194:3277 +h1,11562:32406082,32648194:0,411205,112570 +) +k1,11562:32583029,32648194:0 +) +(1,11563:6630773,33489682:25952256,513147,134348 +g1,11562:7783551,33489682 +g1,11562:8670253,33489682 +g1,11562:9225342,33489682 +g1,11562:11237297,33489682 +g1,11562:14926973,33489682 +g1,11562:16861595,33489682 +(1,11562:16861595,33489682:0,452978,115847 +r1,11562:18274996,33489682:1413401,568825,115847 +k1,11562:16861595,33489682:-1413401 +) +(1,11562:16861595,33489682:1413401,452978,115847 +k1,11562:16861595,33489682:3277 +h1,11562:18271719,33489682:0,411205,112570 +) +g1,11562:18474225,33489682 +g1,11562:19359616,33489682 +g1,11562:20577930,33489682 +k1,11563:32583029,33489682:9377105 +g1,11563:32583029,33489682 +) +v1,11565:6630773,34680148:0,393216,0 +(1,11574:6630773,38315316:25952256,4028384,196608 +g1,11574:6630773,38315316 +g1,11574:6630773,38315316 +g1,11574:6434165,38315316 +(1,11574:6434165,38315316:0,4028384,196608 +r1,11574:32779637,38315316:26345472,4224992,196608 +k1,11574:6434165,38315316:-26345472 +) +(1,11574:6434165,38315316:26345472,4028384,196608 +[1,11574:6630773,38315316:25952256,3831776,0 +(1,11567:6630773,34887766:25952256,404226,107478 +(1,11566:6630773,34887766:0,0,0 +g1,11566:6630773,34887766 +g1,11566:6630773,34887766 +g1,11566:6303093,34887766 +(1,11566:6303093,34887766:0,0,0 +) +g1,11566:6630773,34887766 +) +k1,11567:6630773,34887766:0 +g1,11567:10424522,34887766 +g1,11567:11056814,34887766 +k1,11567:11056814,34887766:0 +h1,11567:13269834,34887766:0,0,0 +k1,11567:32583030,34887766:19313196 +g1,11567:32583030,34887766 +) +(1,11568:6630773,35553944:25952256,404226,107478 +h1,11568:6630773,35553944:0,0,0 +g1,11568:6946919,35553944 +g1,11568:7263065,35553944 +g1,11568:7579211,35553944 +g1,11568:7895357,35553944 +g1,11568:8211503,35553944 +g1,11568:8527649,35553944 +g1,11568:8843795,35553944 +g1,11568:10740670,35553944 +g1,11568:11372962,35553944 +g1,11568:13269837,35553944 +g1,11568:13902129,35553944 +g1,11568:14534421,35553944 +g1,11568:16431295,35553944 +h1,11568:16747441,35553944:0,0,0 +k1,11568:32583029,35553944:15835588 +g1,11568:32583029,35553944 +) +(1,11569:6630773,36220122:25952256,404226,107478 +h1,11569:6630773,36220122:0,0,0 +g1,11569:6946919,36220122 +g1,11569:7263065,36220122 +g1,11569:11372959,36220122 +h1,11569:11689105,36220122:0,0,0 +k1,11569:32583029,36220122:20893924 +g1,11569:32583029,36220122 +) +(1,11570:6630773,36886300:25952256,404226,107478 +h1,11570:6630773,36886300:0,0,0 +g1,11570:6946919,36886300 +g1,11570:7263065,36886300 +g1,11570:12637542,36886300 +g1,11570:13269834,36886300 +g1,11570:15799000,36886300 +g1,11570:18012020,36886300 +g1,11570:18644312,36886300 +h1,11570:20225041,36886300:0,0,0 +k1,11570:32583029,36886300:12357988 +g1,11570:32583029,36886300 +) +(1,11574:6630773,38207838:25952256,410518,107478 +g1,11574:7579210,38207838 +g1,11574:12637541,38207838 +g1,11574:14534415,38207838 +g1,11574:17063581,38207838 +g1,11574:18012018,38207838 +g1,11574:18644310,38207838 +k1,11574:32583029,38207838:13306428 +g1,11574:32583029,38207838 +) +] +) +g1,11574:32583029,38315316 +g1,11574:6630773,38315316 +g1,11574:6630773,38315316 +g1,11574:32583029,38315316 +g1,11574:32583029,38315316 +) +h1,11574:6630773,38511924:0,0,0 +] +(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 +) +] +h1,11584:4262630,4025873:0,0,0 +] +!19259 }218 -!12 +Input:1466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {219 -[1,11622:4262630,47279633:28320399,43253760,0 -(1,11622:4262630,4025873:0,0,0 -[1,11622:-473657,4025873:25952256,0,0 -(1,11622:-473657,-710414:25952256,0,0 -h1,11622:-473657,-710414:0,0,0 -(1,11622:-473657,-710414:0,0,0 -(1,11622:-473657,-710414:0,0,0 -g1,11622:-473657,-710414 -(1,11622:-473657,-710414:65781,0,65781 -g1,11622:-407876,-710414 -[1,11622:-407876,-644633:0,0,0 +[1,11609:4262630,47279633:28320399,43253760,0 +(1,11609:4262630,4025873:0,0,0 +[1,11609:-473657,4025873:25952256,0,0 +(1,11609:-473657,-710414:25952256,0,0 +h1,11609:-473657,-710414:0,0,0 +(1,11609:-473657,-710414:0,0,0 +(1,11609:-473657,-710414:0,0,0 +g1,11609:-473657,-710414 +(1,11609:-473657,-710414:65781,0,65781 +g1,11609:-407876,-710414 +[1,11609:-407876,-644633:0,0,0 ] ) -k1,11622:-473657,-710414:-65781 +k1,11609:-473657,-710414:-65781 ) ) -k1,11622:25478599,-710414:25952256 -g1,11622:25478599,-710414 +k1,11609:25478599,-710414:25952256 +g1,11609:25478599,-710414 ) ] ) -[1,11622:6630773,47279633:25952256,43253760,0 -[1,11622:6630773,4812305:25952256,786432,0 -(1,11622:6630773,4812305:25952256,513147,134348 -(1,11622:6630773,4812305:25952256,513147,134348 -g1,11622:3078558,4812305 -[1,11622:3078558,4812305:0,0,0 -(1,11622:3078558,2439708:0,1703936,0 -k1,11622:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11622:2537886,2439708:1179648,16384,0 +[1,11609:6630773,47279633:25952256,43253760,0 +[1,11609:6630773,4812305:25952256,786432,0 +(1,11609:6630773,4812305:25952256,513147,134348 +(1,11609:6630773,4812305:25952256,513147,134348 +g1,11609:3078558,4812305 +[1,11609:3078558,4812305:0,0,0 +(1,11609:3078558,2439708:0,1703936,0 +k1,11609:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11609:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11622:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11609:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11622:3078558,4812305:0,0,0 -(1,11622:3078558,2439708:0,1703936,0 -g1,11622:29030814,2439708 -g1,11622:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11622:36151628,1915420:16384,1179648,0 +[1,11609:3078558,4812305:0,0,0 +(1,11609:3078558,2439708:0,1703936,0 +g1,11609:29030814,2439708 +g1,11609:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11609:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11622:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11609:37855564,2439708:1179648,16384,0 ) ) -k1,11622:3078556,2439708:-34777008 +k1,11609:3078556,2439708:-34777008 ) ] -[1,11622:3078558,4812305:0,0,0 -(1,11622:3078558,49800853:0,16384,2228224 -k1,11622:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11622:2537886,49800853:1179648,16384,0 +[1,11609:3078558,4812305:0,0,0 +(1,11609:3078558,49800853:0,16384,2228224 +k1,11609:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11609:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11622:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11609:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11622:3078558,4812305:0,0,0 -(1,11622:3078558,49800853:0,16384,2228224 -g1,11622:29030814,49800853 -g1,11622:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11622:36151628,51504789:16384,1179648,0 +[1,11609:3078558,4812305:0,0,0 +(1,11609:3078558,49800853:0,16384,2228224 +g1,11609:29030814,49800853 +g1,11609:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11609:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11622:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11609:37855564,49800853:1179648,16384,0 ) ) -k1,11622:3078556,49800853:-34777008 -) -] -g1,11622:6630773,4812305 -k1,11622:25712890,4812305:17886740 -g1,11622:29057847,4812305 -g1,11622:29873114,4812305 -) -) -] -[1,11622:6630773,45706769:25952256,40108032,0 -(1,11622:6630773,45706769:25952256,40108032,0 -(1,11622:6630773,45706769:0,0,0 -g1,11622:6630773,45706769 -) -[1,11622:6630773,45706769:25952256,40108032,0 -v1,11580:6630773,6254097:0,393216,0 -(1,11588:6630773,9233905:25952256,3373024,196608 -g1,11588:6630773,9233905 -g1,11588:6630773,9233905 -g1,11588:6434165,9233905 -(1,11588:6434165,9233905:0,3373024,196608 -r1,11588:32779637,9233905:26345472,3569632,196608 -k1,11588:6434165,9233905:-26345472 +k1,11609:3078556,49800853:-34777008 ) -(1,11588:6434165,9233905:26345472,3373024,196608 -[1,11588:6630773,9233905:25952256,3176416,0 -(1,11582:6630773,6461715:25952256,404226,107478 -(1,11581:6630773,6461715:0,0,0 -g1,11581:6630773,6461715 -g1,11581:6630773,6461715 -g1,11581:6303093,6461715 -(1,11581:6303093,6461715:0,0,0 -) -g1,11581:6630773,6461715 -) -k1,11582:6630773,6461715:0 -g1,11582:10424522,6461715 -g1,11582:11056814,6461715 -k1,11582:11056814,6461715:0 -h1,11582:13269834,6461715:0,0,0 -k1,11582:32583030,6461715:19313196 -g1,11582:32583030,6461715 -) -(1,11583:6630773,7127893:25952256,404226,107478 -h1,11583:6630773,7127893:0,0,0 -g1,11583:6946919,7127893 -g1,11583:7263065,7127893 -g1,11583:7579211,7127893 -g1,11583:7895357,7127893 -g1,11583:8211503,7127893 -g1,11583:8527649,7127893 -g1,11583:8843795,7127893 -g1,11583:10740670,7127893 -g1,11583:11372962,7127893 -g1,11583:13269837,7127893 -g1,11583:13902129,7127893 -g1,11583:14534421,7127893 -g1,11583:16431295,7127893 -h1,11583:16747441,7127893:0,0,0 -k1,11583:32583029,7127893:15835588 -g1,11583:32583029,7127893 -) -(1,11584:6630773,7794071:25952256,404226,107478 -h1,11584:6630773,7794071:0,0,0 -g1,11584:6946919,7794071 -g1,11584:7263065,7794071 -g1,11584:11372959,7794071 -h1,11584:11689105,7794071:0,0,0 -k1,11584:32583029,7794071:20893924 -g1,11584:32583029,7794071 -) -(1,11585:6630773,8460249:25952256,404226,107478 -h1,11585:6630773,8460249:0,0,0 -g1,11585:6946919,8460249 -g1,11585:7263065,8460249 -g1,11585:12637542,8460249 -g1,11585:13269834,8460249 -g1,11585:15799000,8460249 -g1,11585:18012020,8460249 -g1,11585:18644312,8460249 -g1,11585:20541187,8460249 -h1,11585:20857333,8460249:0,0,0 -k1,11585:32583029,8460249:11725696 -g1,11585:32583029,8460249 -) -(1,11586:6630773,9126427:25952256,404226,107478 -h1,11586:6630773,9126427:0,0,0 -g1,11586:6946919,9126427 -g1,11586:7263065,9126427 -k1,11586:7263065,9126427:0 -h1,11586:12005250,9126427:0,0,0 -k1,11586:32583030,9126427:20577780 -g1,11586:32583030,9126427 -) -] -) -g1,11588:32583029,9233905 -g1,11588:6630773,9233905 -g1,11588:6630773,9233905 -g1,11588:32583029,9233905 -g1,11588:32583029,9233905 -) -h1,11588:6630773,9430513:0,0,0 -(1,11591:6630773,19079132:25952256,9062689,0 -k1,11591:10523651,19079132:3892878 -h1,11590:10523651,19079132:0,0,0 -(1,11590:10523651,19079132:18166500,9062689,0 -(1,11590:10523651,19079132:18167381,9062712,0 -(1,11590:10523651,19079132:18167381,9062712,0 -(1,11590:10523651,19079132:0,9062712,0 -(1,11590:10523651,19079132:0,14155776,0 -(1,11590:10523651,19079132:28377088,14155776,0 -) -k1,11590:10523651,19079132:-28377088 -) -) -g1,11590:28691032,19079132 -) -) -) -g1,11591:28690151,19079132 -k1,11591:32583029,19079132:3892878 -) -(1,11599:6630773,19920620:25952256,513147,134348 -h1,11598:6630773,19920620:983040,0,0 -k1,11598:9089885,19920620:279385 -k1,11598:11149883,19920620:279385 -k1,11598:13243960,19920620:279385 -k1,11598:14182637,19920620:279385 -k1,11598:14817882,19920620:279385 -k1,11598:16669476,19920620:279385 -k1,11598:18053143,19920620:279385 -k1,11598:19080294,19920620:279385 -k1,11598:20294222,19920620:279385 -k1,11598:23680014,19920620:279385 -k1,11598:26286582,19920620:279385 -k1,11598:27225259,19920620:279385 -k1,11598:31821501,19920620:279385 -k1,11598:32583029,19920620:0 -) -(1,11599:6630773,20762108:25952256,513147,7863 -k1,11598:9324898,20762108:254875 -k1,11598:11454104,20762108:254876 -k1,11598:13523671,20762108:254875 -k1,11598:15707926,20762108:254875 -k1,11598:16318662,20762108:254876 -k1,11598:18652994,20762108:254875 -k1,11598:21331391,20762108:254876 -k1,11598:22788852,20762108:254875 -k1,11598:24029388,20762108:254875 -k1,11598:25890552,20762108:254876 -k1,11598:30217179,20762108:254875 -k1,11598:32583029,20762108:0 -) -(1,11599:6630773,21603596:25952256,505283,126483 -k1,11598:7820088,21603596:170230 -k1,11598:9562526,21603596:170229 -k1,11598:11547448,21603596:170230 -k1,11598:13945246,21603596:170229 -k1,11598:16335180,21603596:170230 -k1,11598:17696854,21603596:170229 -k1,11598:18858644,21603596:170230 -k1,11598:20095145,21603596:170230 -k1,11598:22850769,21603596:170229 -k1,11598:23672427,21603596:170230 -k1,11598:28742128,21603596:170229 -k1,11598:30609085,21603596:170230 -k1,11599:32583029,21603596:0 -) -(1,11599:6630773,22445084:25952256,505283,134348 -k1,11598:9195018,22445084:253446 -k1,11598:10440023,22445084:253445 -k1,11598:11759740,22445084:253446 -k1,11598:14771596,22445084:253446 -k1,11598:15641079,22445084:253445 -k1,11598:16913610,22445084:253446 -k1,11598:20116830,22445084:253445 -k1,11598:25035129,22445084:253446 -k1,11598:25971460,22445084:253446 -k1,11598:27738131,22445084:253445 -k1,11598:28607615,22445084:253446 -k1,11598:32583029,22445084:0 -) -(1,11599:6630773,23286572:25952256,505283,134348 -k1,11598:9821786,23286572:196673 -k1,11598:11716498,23286572:196674 -k1,11598:13648564,23286572:196673 -k1,11598:16527626,23286572:196673 -k1,11598:17743384,23286572:196673 -k1,11598:22334247,23286572:196674 -k1,11598:23522480,23286572:196673 -k1,11598:25094754,23286572:196673 -k1,11598:27663176,23286572:196674 -k1,11598:28511277,23286572:196673 -k1,11598:32583029,23286572:0 -) -(1,11599:6630773,24128060:25952256,513147,126483 -k1,11598:8208740,24128060:293461 -k1,11598:9533082,24128060:293461 -k1,11598:11836531,24128060:293460 -k1,11598:13149077,24128060:293461 -k1,11598:15257230,24128060:293461 -k1,11598:16209983,24128060:293461 -k1,11598:17269560,24128060:293461 -k1,11598:19465530,24128060:293460 -k1,11598:20375029,24128060:293461 -k1,11598:21934646,24128060:293461 -k1,11598:24102437,24128060:293461 -k1,11598:26210589,24128060:293460 -k1,11598:29491181,24128060:293461 -k1,11598:31563944,24128060:293461 -k1,11598:32583029,24128060:0 -) -(1,11599:6630773,24969548:25952256,513147,134348 -k1,11598:9431026,24969548:275806 -k1,11598:11054251,24969548:275805 -k1,11598:13028095,24969548:275806 -k1,11598:14322985,24969548:275805 -k1,11598:17123238,24969548:275806 -k1,11598:18746464,24969548:275806 -k1,11598:19553766,24969548:275805 -k1,11598:24146429,24969548:275806 -k1,11598:25356778,24969548:275806 -k1,11598:27487252,24969548:275805 -k1,11598:28572428,24969548:275806 -k1,11598:29867318,24969548:275805 -k1,11598:31923737,24969548:275806 -k1,11598:32583029,24969548:0 -) -(1,11599:6630773,25811036:25952256,513147,134348 -k1,11598:7850289,25811036:200431 -k1,11598:10267803,25811036:200431 -k1,11598:12490020,25811036:200431 -k1,11598:16201869,25811036:200430 -k1,11598:17421385,25811036:200431 -k1,11598:20429378,25811036:200431 -k1,11598:21281237,25811036:200431 -k1,11598:23492313,25811036:200431 -k1,11598:24352036,25811036:200431 -k1,11598:24908326,25811036:200430 -k1,11598:27871100,25811036:200431 -k1,11598:31246095,25811036:200431 -k1,11598:32583029,25811036:0 -) -(1,11599:6630773,26652524:25952256,513147,134348 -k1,11598:9085096,26652524:213647 -k1,11598:10996782,26652524:213648 -k1,11598:11566289,26652524:213647 -k1,11598:13860049,26652524:213647 -k1,11598:14732989,26652524:213648 -k1,11598:15965721,26652524:213647 -k1,11598:17568731,26652524:213647 -k1,11598:18773939,26652524:213648 -k1,11598:21576258,26652524:213647 -k1,11598:22551433,26652524:213647 -k1,11598:25697817,26652524:213648 -k1,11598:28093158,26652524:213647 -k1,11598:29325890,26652524:213647 -k1,11598:31354230,26652524:213648 -k1,11598:32227169,26652524:213647 -k1,11598:32583029,26652524:0 -) -(1,11599:6630773,27494012:25952256,505283,7863 -k1,11599:32583028,27494012:24206376 -g1,11599:32583028,27494012 -) -(1,11601:6630773,28335500:25952256,513147,126483 -h1,11600:6630773,28335500:983040,0,0 -k1,11600:8440373,28335500:198725 -k1,11600:11270370,28335500:198726 -k1,11600:12120523,28335500:198725 -k1,11600:13854101,28335500:198725 -k1,11600:15934365,28335500:198726 -k1,11600:19777547,28335500:198725 -k1,11600:22671768,28335500:198725 -k1,11600:23556655,28335500:198725 -k1,11600:24111241,28335500:198726 -k1,11600:26751837,28335500:198725 -k1,11600:28408738,28335500:198725 -k1,11600:29874930,28335500:198726 -k1,11600:31092740,28335500:198725 -k1,11601:32583029,28335500:0 -) -(1,11601:6630773,29176988:25952256,513147,134348 -k1,11600:8111382,29176988:233459 -k1,11600:9865933,29176988:233460 -k1,11600:11290837,29176988:233459 -k1,11600:12339564,29176988:233459 -k1,11600:13639295,29176988:233460 -k1,11600:15652056,29176988:233459 -k1,11600:17770986,29176988:233459 -k1,11600:22076197,29176988:233459 -k1,11600:23301217,29176988:233460 -k1,11600:25577433,29176988:233459 -k1,11600:26462320,29176988:233459 -k1,11600:29528901,29176988:233460 -k1,11600:30959047,29176988:233459 -k1,11601:32583029,29176988:0 -) -(1,11601:6630773,30018476:25952256,505283,134348 -k1,11600:8811930,30018476:184275 -k1,11600:11415795,30018476:184276 -k1,11600:12286232,30018476:184275 -k1,11600:15483197,30018476:184275 -k1,11600:16198969,30018476:184275 -k1,11600:17669061,30018476:184276 -k1,11600:21518109,30018476:184275 -k1,11600:22463912,30018476:184275 -k1,11600:23851428,30018476:184275 -k1,11600:26938294,30018476:184276 -k1,11600:31714677,30018476:184275 -k1,11600:32583029,30018476:0 -) -(1,11601:6630773,30859964:25952256,513147,138281 -g1,11600:7922487,30859964 -g1,11600:11005955,30859964 -g1,11600:14943358,30859964 -g1,11600:17028058,30859964 -g1,11600:18218847,30859964 -g1,11600:19437161,30859964 -g1,11600:22075640,30859964 -g1,11600:23347038,30859964 -g1,11600:24414619,30859964 -g1,11600:27546584,30859964 -g1,11600:28680356,30859964 -$1,11600:28680356,30859964 -$1,11600:29232169,30859964 -g1,11600:29431398,30859964 -k1,11601:32583029,30859964:1163269 -g1,11601:32583029,30859964 -) -v1,11603:6630773,32046537:0,393216,0 -(1,11611:6630773,35020054:25952256,3366733,196608 -g1,11611:6630773,35020054 -g1,11611:6630773,35020054 -g1,11611:6434165,35020054 -(1,11611:6434165,35020054:0,3366733,196608 -r1,11611:32779637,35020054:26345472,3563341,196608 -k1,11611:6434165,35020054:-26345472 -) -(1,11611:6434165,35020054:26345472,3366733,196608 -[1,11611:6630773,35020054:25952256,3170125,0 -(1,11605:6630773,32254155:25952256,404226,107478 -(1,11604:6630773,32254155:0,0,0 -g1,11604:6630773,32254155 -g1,11604:6630773,32254155 -g1,11604:6303093,32254155 -(1,11604:6303093,32254155:0,0,0 -) -g1,11604:6630773,32254155 -) -k1,11605:6630773,32254155:0 -g1,11605:10424522,32254155 -g1,11605:11056814,32254155 -k1,11605:11056814,32254155:0 -h1,11605:13269834,32254155:0,0,0 -k1,11605:32583030,32254155:19313196 -g1,11605:32583030,32254155 -) -(1,11606:6630773,32920333:25952256,404226,107478 -h1,11606:6630773,32920333:0,0,0 -g1,11606:6946919,32920333 -g1,11606:7263065,32920333 -g1,11606:7579211,32920333 -g1,11606:7895357,32920333 -g1,11606:8211503,32920333 -g1,11606:8527649,32920333 -g1,11606:8843795,32920333 -g1,11606:10740670,32920333 -g1,11606:11372962,32920333 -g1,11606:13269837,32920333 -g1,11606:13902129,32920333 -g1,11606:14534421,32920333 -g1,11606:16431295,32920333 -h1,11606:16747441,32920333:0,0,0 -k1,11606:32583029,32920333:15835588 -g1,11606:32583029,32920333 -) -(1,11607:6630773,33586511:25952256,404226,107478 -h1,11607:6630773,33586511:0,0,0 -g1,11607:6946919,33586511 -g1,11607:7263065,33586511 -g1,11607:11372959,33586511 -h1,11607:11689105,33586511:0,0,0 -k1,11607:32583029,33586511:20893924 -g1,11607:32583029,33586511 -) -(1,11608:6630773,34252689:25952256,404226,107478 -h1,11608:6630773,34252689:0,0,0 -g1,11608:6946919,34252689 -g1,11608:7263065,34252689 -g1,11608:12637542,34252689 -g1,11608:13269834,34252689 -g1,11608:15799000,34252689 -g1,11608:18012020,34252689 -g1,11608:18644312,34252689 -g1,11608:20541187,34252689 -h1,11608:20857333,34252689:0,0,0 -k1,11608:32583029,34252689:11725696 -g1,11608:32583029,34252689 -) -(1,11609:6630773,34918867:25952256,404226,101187 -h1,11609:6630773,34918867:0,0,0 -g1,11609:6946919,34918867 -g1,11609:7263065,34918867 -g1,11609:13902125,34918867 -g1,11609:14534417,34918867 -g1,11609:16431292,34918867 -h1,11609:17695874,34918867:0,0,0 -k1,11609:32583029,34918867:14887155 -g1,11609:32583029,34918867 -) -] -) -g1,11611:32583029,35020054 -g1,11611:6630773,35020054 -g1,11611:6630773,35020054 -g1,11611:32583029,35020054 -g1,11611:32583029,35020054 -) -h1,11611:6630773,35216662:0,0,0 -(1,11614:6630773,44865281:25952256,9062689,0 -k1,11614:10523651,44865281:3892878 -h1,11613:10523651,44865281:0,0,0 -(1,11613:10523651,44865281:18166500,9062689,0 -(1,11613:10523651,44865281:18167381,9062712,0 -(1,11613:10523651,44865281:18167381,9062712,0 -(1,11613:10523651,44865281:0,9062712,0 -(1,11613:10523651,44865281:0,14155776,0 -(1,11613:10523651,44865281:28377088,14155776,0 -) -k1,11613:10523651,44865281:-28377088 -) -) -g1,11613:28691032,44865281 -) -) -) -g1,11614:28690151,44865281 -k1,11614:32583029,44865281:3892878 -) -(1,11622:6630773,45706769:25952256,513147,126483 -h1,11621:6630773,45706769:983040,0,0 -k1,11621:9072710,45706769:262210 -k1,11621:10719039,45706769:262209 -k1,11621:13642666,45706769:262210 -k1,11621:15327662,45706769:262209 -k1,11621:15945732,45706769:262210 -k1,11621:19615813,45706769:262209 -k1,11621:22123942,45706769:262210 -k1,11621:27397034,45706769:262209 -k1,11621:29442479,45706769:262210 -k1,11621:30723773,45706769:262209 -k1,11622:32583029,45706769:0 -) -] -(1,11622:32583029,45706769:0,0,0 -g1,11622:32583029,45706769 -) -) -] -(1,11622:6630773,47279633:25952256,0,0 -h1,11622:6630773,47279633:25952256,0,0 -) -] -h1,11622:4262630,4025873:0,0,0 -] -!16488 +] +g1,11609:6630773,4812305 +k1,11609:25712890,4812305:17886740 +g1,11609:29057847,4812305 +g1,11609:29873114,4812305 +) +) +] +[1,11609:6630773,45706769:25952256,40108032,0 +(1,11609:6630773,45706769:25952256,40108032,0 +(1,11609:6630773,45706769:0,0,0 +g1,11609:6630773,45706769 +) +[1,11609:6630773,45706769:25952256,40108032,0 +(1,11577:6630773,14661426:25952256,9062689,0 +k1,11577:10523651,14661426:3892878 +h1,11576:10523651,14661426:0,0,0 +(1,11576:10523651,14661426:18166500,9062689,0 +(1,11576:10523651,14661426:18167381,9062712,0 +(1,11576:10523651,14661426:18167381,9062712,0 +(1,11576:10523651,14661426:0,9062712,0 +(1,11576:10523651,14661426:0,14155776,0 +(1,11576:10523651,14661426:28377088,14155776,0 +) +k1,11576:10523651,14661426:-28377088 +) +) +g1,11576:28691032,14661426 +) +) +) +g1,11577:28690151,14661426 +k1,11577:32583029,14661426:3892878 +) +(1,11585:6630773,15502914:25952256,513147,134348 +h1,11584:6630773,15502914:983040,0,0 +k1,11584:8802745,15502914:235383 +k1,11584:11358759,15502914:235384 +k1,11584:12559487,15502914:235383 +k1,11584:14760295,15502914:235383 +k1,11584:16687818,15502914:235383 +k1,11584:17582494,15502914:235384 +k1,11584:18836962,15502914:235383 +k1,11584:21941511,15502914:235383 +k1,11584:22836186,15502914:235383 +k1,11584:24090655,15502914:235384 +k1,11584:27228628,15502914:235383 +k1,11584:30554034,15502914:235383 +k1,11584:32583029,15502914:0 +) +(1,11585:6630773,16344402:25952256,505283,126483 +k1,11584:8921060,16344402:293405 +k1,11584:12858921,16344402:293404 +k1,11584:14343771,16344402:293405 +k1,11584:17043002,16344402:293405 +k1,11584:18533094,16344402:293405 +k1,11584:20434096,16344402:293404 +k1,11584:22231552,16344402:293405 +k1,11584:25400021,16344402:293405 +k1,11584:28063207,16344402:293404 +k1,11584:30886302,16344402:293405 +k1,11584:32583029,16344402:0 +) +(1,11585:6630773,17185890:25952256,513147,126483 +k1,11584:9774989,17185890:275050 +k1,11584:11525253,17185890:275049 +k1,11584:14396184,17185890:275050 +k1,11584:16556704,17185890:275049 +k1,11584:17823314,17185890:275050 +k1,11584:19611589,17185890:275049 +k1,11584:21584677,17185890:275050 +k1,11584:22728078,17185890:275049 +k1,11584:23818396,17185890:275050 +k1,11584:25159716,17185890:275049 +k1,11584:26369309,17185890:275050 +k1,11584:28283413,17185890:275049 +k1,11584:31629480,17185890:275050 +k1,11584:32583029,17185890:0 +) +(1,11585:6630773,18027378:25952256,505283,134348 +k1,11584:8217618,18027378:202725 +k1,11584:9552804,18027378:202724 +k1,11584:10780512,18027378:202725 +k1,11584:13974955,18027378:202724 +k1,11584:14793718,18027378:202725 +k1,11584:16881914,18027378:202725 +k1,11584:18464826,18027378:202724 +k1,11584:19659111,18027378:202725 +k1,11584:22759182,18027378:202724 +k1,11584:24070121,18027378:202725 +k1,11584:25226395,18027378:202725 +k1,11584:26917442,18027378:202724 +k1,11584:28514118,18027378:202725 +k1,11584:29072702,18027378:202724 +k1,11584:30847636,18027378:202725 +k1,11584:32583029,18027378:0 +) +(1,11585:6630773,18868866:25952256,513147,134348 +k1,11584:7184015,18868866:197382 +k1,11584:11027166,18868866:197383 +k1,11584:16235431,18868866:197382 +k1,11584:17813658,18868866:197383 +k1,11584:19937798,18868866:197382 +k1,11584:21281406,18868866:197383 +k1,11584:24003235,18868866:197382 +k1,11584:24962146,18868866:197383 +k1,11584:26765815,18868866:197382 +k1,11584:28698591,18868866:197383 +k1,11584:30749987,18868866:197382 +k1,11584:32583029,18868866:0 +) +(1,11585:6630773,19710354:25952256,505283,134348 +k1,11584:8281297,19710354:256573 +k1,11584:10766750,19710354:256574 +k1,11584:13231886,19710354:256573 +k1,11584:16605352,19710354:256574 +k1,11584:17513353,19710354:256573 +k1,11584:18125787,19710354:256574 +k1,11584:22028128,19710354:256573 +k1,11584:24030580,19710354:256573 +k1,11584:25648992,19710354:256574 +k1,11584:27892617,19710354:256573 +k1,11584:30927262,19710354:256574 +k1,11584:31835263,19710354:256573 +k1,11584:32583029,19710354:0 +) +(1,11585:6630773,20551842:25952256,513147,134348 +k1,11584:10027286,20551842:199011 +k1,11584:10842335,20551842:199011 +k1,11584:12060430,20551842:199010 +k1,11584:14694759,20551842:199011 +k1,11584:16685524,20551842:199011 +k1,11584:17956704,20551842:199011 +k1,11584:21009153,20551842:199011 +k1,11584:22199724,20551842:199011 +k1,11584:24770482,20551842:199010 +k1,11584:25620921,20551842:199011 +k1,11584:26839017,20551842:199011 +k1,11584:31019995,20551842:199011 +k1,11584:32583029,20551842:0 +) +(1,11585:6630773,21393330:25952256,513147,126483 +k1,11584:7502704,21393330:244096 +k1,11584:9448771,21393330:244097 +k1,11584:11821476,21393330:244096 +k1,11584:12421432,21393330:244096 +k1,11584:16647496,21393330:244097 +k1,11584:18463801,21393330:244096 +k1,11584:20817501,21393330:244096 +k1,11584:22080682,21393330:244096 +k1,11584:24335424,21393330:244097 +k1,11584:26622277,21393330:244096 +k1,11584:28246561,21393330:244096 +k1,11584:29482218,21393330:244097 +k1,11584:31931601,21393330:244096 +k1,11584:32583029,21393330:0 +) +(1,11585:6630773,22234818:25952256,513147,138281 +k1,11584:9674063,22234818:210169 +k1,11584:11075677,22234818:210169 +k1,11584:12304931,22234818:210169 +k1,11584:14327826,22234818:210169 +k1,11584:17854772,22234818:210169 +k1,11584:19197403,22234818:210169 +k1,11584:20155338,22234818:210169 +k1,11584:22077963,22234818:210169 +k1,11584:22939560,22234818:210169 +(1,11584:22939560,22234818:0,452978,122846 +r1,11584:25408097,22234818:2468537,575824,122846 +k1,11584:22939560,22234818:-2468537 +) +(1,11584:22939560,22234818:2468537,452978,122846 +k1,11584:22939560,22234818:3277 +h1,11584:25404820,22234818:0,411205,112570 +) +k1,11584:25618266,22234818:210169 +k1,11584:29810402,22234818:210169 +$1,11584:29810402,22234818 +$1,11584:30362215,22234818 +k1,11584:30572384,22234818:210169 +k1,11584:32583029,22234818:0 +) +(1,11585:6630773,23076306:25952256,505283,134348 +g1,11584:8021447,23076306 +g1,11584:9239761,23076306 +g1,11584:11874308,23076306 +$1,11584:11874308,23076306 +$1,11584:12376969,23076306 +g1,11584:12576198,23076306 +k1,11585:32583029,23076306:17822516 +g1,11585:32583029,23076306 +) +v1,11587:6630773,24266772:0,393216,0 +(1,11597:6630773,28568118:25952256,4694562,196608 +g1,11597:6630773,28568118 +g1,11597:6630773,28568118 +g1,11597:6434165,28568118 +(1,11597:6434165,28568118:0,4694562,196608 +r1,11597:32779637,28568118:26345472,4891170,196608 +k1,11597:6434165,28568118:-26345472 +) +(1,11597:6434165,28568118:26345472,4694562,196608 +[1,11597:6630773,28568118:25952256,4497954,0 +(1,11589:6630773,24474390:25952256,404226,107478 +(1,11588:6630773,24474390:0,0,0 +g1,11588:6630773,24474390 +g1,11588:6630773,24474390 +g1,11588:6303093,24474390 +(1,11588:6303093,24474390:0,0,0 +) +g1,11588:6630773,24474390 +) +k1,11589:6630773,24474390:0 +g1,11589:10424522,24474390 +g1,11589:11056814,24474390 +k1,11589:11056814,24474390:0 +h1,11589:13269834,24474390:0,0,0 +k1,11589:32583030,24474390:19313196 +g1,11589:32583030,24474390 +) +(1,11590:6630773,25140568:25952256,404226,107478 +h1,11590:6630773,25140568:0,0,0 +g1,11590:6946919,25140568 +g1,11590:7263065,25140568 +g1,11590:7579211,25140568 +g1,11590:7895357,25140568 +g1,11590:8211503,25140568 +g1,11590:8527649,25140568 +g1,11590:8843795,25140568 +g1,11590:10740670,25140568 +g1,11590:11372962,25140568 +g1,11590:13269837,25140568 +g1,11590:13902129,25140568 +g1,11590:14534421,25140568 +g1,11590:16431295,25140568 +h1,11590:16747441,25140568:0,0,0 +k1,11590:32583029,25140568:15835588 +g1,11590:32583029,25140568 +) +(1,11591:6630773,25806746:25952256,404226,107478 +h1,11591:6630773,25806746:0,0,0 +g1,11591:6946919,25806746 +g1,11591:7263065,25806746 +g1,11591:11372959,25806746 +h1,11591:11689105,25806746:0,0,0 +k1,11591:32583029,25806746:20893924 +g1,11591:32583029,25806746 +) +(1,11592:6630773,26472924:25952256,404226,107478 +h1,11592:6630773,26472924:0,0,0 +g1,11592:6946919,26472924 +g1,11592:7263065,26472924 +g1,11592:12637542,26472924 +g1,11592:13269834,26472924 +g1,11592:15799000,26472924 +g1,11592:18012020,26472924 +g1,11592:18644312,26472924 +g1,11592:20541187,26472924 +h1,11592:20857333,26472924:0,0,0 +k1,11592:32583029,26472924:11725696 +g1,11592:32583029,26472924 +) +(1,11593:6630773,27139102:25952256,404226,107478 +h1,11593:6630773,27139102:0,0,0 +g1,11593:6946919,27139102 +g1,11593:7263065,27139102 +k1,11593:7263065,27139102:0 +h1,11593:12005250,27139102:0,0,0 +k1,11593:32583030,27139102:20577780 +g1,11593:32583030,27139102 +) +(1,11597:6630773,28460640:25952256,410518,107478 +g1,11597:7579210,28460640 +g1,11597:12637541,28460640 +g1,11597:14534415,28460640 +g1,11597:17063581,28460640 +g1,11597:18012018,28460640 +g1,11597:18644310,28460640 +k1,11597:32583029,28460640:13306428 +g1,11597:32583029,28460640 +) +] +) +g1,11597:32583029,28568118 +g1,11597:6630773,28568118 +g1,11597:6630773,28568118 +g1,11597:32583029,28568118 +g1,11597:32583029,28568118 +) +h1,11597:6630773,28764726:0,0,0 +(1,11600:6630773,38417239:25952256,9062689,0 +k1,11600:10523651,38417239:3892878 +h1,11599:10523651,38417239:0,0,0 +(1,11599:10523651,38417239:18166500,9062689,0 +(1,11599:10523651,38417239:18167381,9062712,0 +(1,11599:10523651,38417239:18167381,9062712,0 +(1,11599:10523651,38417239:0,9062712,0 +(1,11599:10523651,38417239:0,14155776,0 +(1,11599:10523651,38417239:28377088,14155776,0 +) +k1,11599:10523651,38417239:-28377088 +) +) +g1,11599:28691032,38417239 +) +) +) +g1,11600:28690151,38417239 +k1,11600:32583029,38417239:3892878 +) +(1,11608:6630773,39258727:25952256,513147,134348 +h1,11607:6630773,39258727:983040,0,0 +k1,11607:9089885,39258727:279385 +k1,11607:11149883,39258727:279385 +k1,11607:13243960,39258727:279385 +k1,11607:14182637,39258727:279385 +k1,11607:14817882,39258727:279385 +k1,11607:16669476,39258727:279385 +k1,11607:18053143,39258727:279385 +k1,11607:19080294,39258727:279385 +k1,11607:20294222,39258727:279385 +k1,11607:23680014,39258727:279385 +k1,11607:26286582,39258727:279385 +k1,11607:27225259,39258727:279385 +k1,11607:31821501,39258727:279385 +k1,11607:32583029,39258727:0 +) +(1,11608:6630773,40100215:25952256,513147,7863 +k1,11607:9324898,40100215:254875 +k1,11607:11454104,40100215:254876 +k1,11607:13523671,40100215:254875 +k1,11607:15707926,40100215:254875 +k1,11607:16318662,40100215:254876 +k1,11607:18652994,40100215:254875 +k1,11607:21331391,40100215:254876 +k1,11607:22788852,40100215:254875 +k1,11607:24029388,40100215:254875 +k1,11607:25890552,40100215:254876 +k1,11607:30217179,40100215:254875 +k1,11607:32583029,40100215:0 +) +(1,11608:6630773,40941703:25952256,505283,126483 +k1,11607:7820088,40941703:170230 +k1,11607:9562526,40941703:170229 +k1,11607:11547448,40941703:170230 +k1,11607:13945246,40941703:170229 +k1,11607:16335180,40941703:170230 +k1,11607:17696854,40941703:170229 +k1,11607:18858644,40941703:170230 +k1,11607:20095145,40941703:170230 +k1,11607:22850769,40941703:170229 +k1,11607:23672427,40941703:170230 +k1,11607:28742128,40941703:170229 +k1,11607:30609085,40941703:170230 +k1,11608:32583029,40941703:0 +) +(1,11608:6630773,41783191:25952256,505283,134348 +k1,11607:9195018,41783191:253446 +k1,11607:10440023,41783191:253445 +k1,11607:11759740,41783191:253446 +k1,11607:14771596,41783191:253446 +k1,11607:15641079,41783191:253445 +k1,11607:16913610,41783191:253446 +k1,11607:20116830,41783191:253445 +k1,11607:25035129,41783191:253446 +k1,11607:25971460,41783191:253446 +k1,11607:27738131,41783191:253445 +k1,11607:28607615,41783191:253446 +k1,11607:32583029,41783191:0 +) +(1,11608:6630773,42624679:25952256,505283,134348 +k1,11607:9821786,42624679:196673 +k1,11607:11716498,42624679:196674 +k1,11607:13648564,42624679:196673 +k1,11607:16527626,42624679:196673 +k1,11607:17743384,42624679:196673 +k1,11607:22334247,42624679:196674 +k1,11607:23522480,42624679:196673 +k1,11607:25094754,42624679:196673 +k1,11607:27663176,42624679:196674 +k1,11607:28511277,42624679:196673 +k1,11607:32583029,42624679:0 +) +(1,11608:6630773,43466167:25952256,513147,126483 +k1,11607:8208740,43466167:293461 +k1,11607:9533082,43466167:293461 +k1,11607:11836531,43466167:293460 +k1,11607:13149077,43466167:293461 +k1,11607:15257230,43466167:293461 +k1,11607:16209983,43466167:293461 +k1,11607:17269560,43466167:293461 +k1,11607:19465530,43466167:293460 +k1,11607:20375029,43466167:293461 +k1,11607:21934646,43466167:293461 +k1,11607:24102437,43466167:293461 +k1,11607:26210589,43466167:293460 +k1,11607:29491181,43466167:293461 +k1,11607:31563944,43466167:293461 +k1,11607:32583029,43466167:0 +) +(1,11608:6630773,44307655:25952256,513147,134348 +k1,11607:9431026,44307655:275806 +k1,11607:11054251,44307655:275805 +k1,11607:13028095,44307655:275806 +k1,11607:14322985,44307655:275805 +k1,11607:17123238,44307655:275806 +k1,11607:18746464,44307655:275806 +k1,11607:19553766,44307655:275805 +k1,11607:24146429,44307655:275806 +k1,11607:25356778,44307655:275806 +k1,11607:27487252,44307655:275805 +k1,11607:28572428,44307655:275806 +k1,11607:29867318,44307655:275805 +k1,11607:31923737,44307655:275806 +k1,11607:32583029,44307655:0 +) +(1,11608:6630773,45149143:25952256,513147,134348 +k1,11607:7850289,45149143:200431 +k1,11607:10267803,45149143:200431 +k1,11607:12490020,45149143:200431 +k1,11607:16201869,45149143:200430 +k1,11607:17421385,45149143:200431 +k1,11607:20429378,45149143:200431 +k1,11607:21281237,45149143:200431 +k1,11607:23492313,45149143:200431 +k1,11607:24352036,45149143:200431 +k1,11607:24908326,45149143:200430 +k1,11607:27871100,45149143:200431 +k1,11607:31246095,45149143:200431 +k1,11607:32583029,45149143:0 +) +] +(1,11609:32583029,45706769:0,0,0 +g1,11609:32583029,45706769 +) +) +] +(1,11609:6630773,47279633:25952256,0,0 +h1,11609:6630773,47279633:25952256,0,0 +) +] +h1,11609:4262630,4025873:0,0,0 +] +!16255 }219 !12 {220 -[1,11665:4262630,47279633:28320399,43253760,0 -(1,11665:4262630,4025873:0,0,0 -[1,11665:-473657,4025873:25952256,0,0 -(1,11665:-473657,-710414:25952256,0,0 -h1,11665:-473657,-710414:0,0,0 -(1,11665:-473657,-710414:0,0,0 -(1,11665:-473657,-710414:0,0,0 -g1,11665:-473657,-710414 -(1,11665:-473657,-710414:65781,0,65781 -g1,11665:-407876,-710414 -[1,11665:-407876,-644633:0,0,0 +[1,11655:4262630,47279633:28320399,43253760,0 +(1,11655:4262630,4025873:0,0,0 +[1,11655:-473657,4025873:25952256,0,0 +(1,11655:-473657,-710414:25952256,0,0 +h1,11655:-473657,-710414:0,0,0 +(1,11655:-473657,-710414:0,0,0 +(1,11655:-473657,-710414:0,0,0 +g1,11655:-473657,-710414 +(1,11655:-473657,-710414:65781,0,65781 +g1,11655:-407876,-710414 +[1,11655:-407876,-644633:0,0,0 ] ) -k1,11665:-473657,-710414:-65781 +k1,11655:-473657,-710414:-65781 ) ) -k1,11665:25478599,-710414:25952256 -g1,11665:25478599,-710414 +k1,11655:25478599,-710414:25952256 +g1,11655:25478599,-710414 ) ] ) -[1,11665:6630773,47279633:25952256,43253760,0 -[1,11665:6630773,4812305:25952256,786432,0 -(1,11665:6630773,4812305:25952256,513147,134348 -(1,11665:6630773,4812305:25952256,513147,134348 -g1,11665:3078558,4812305 -[1,11665:3078558,4812305:0,0,0 -(1,11665:3078558,2439708:0,1703936,0 -k1,11665:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11665:2537886,2439708:1179648,16384,0 +[1,11655:6630773,47279633:25952256,43253760,0 +[1,11655:6630773,4812305:25952256,786432,0 +(1,11655:6630773,4812305:25952256,513147,134348 +(1,11655:6630773,4812305:25952256,513147,134348 +g1,11655:3078558,4812305 +[1,11655:3078558,4812305:0,0,0 +(1,11655:3078558,2439708:0,1703936,0 +k1,11655:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11655:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11665:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11655:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11665:3078558,4812305:0,0,0 -(1,11665:3078558,2439708:0,1703936,0 -g1,11665:29030814,2439708 -g1,11665:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11665:36151628,1915420:16384,1179648,0 +[1,11655:3078558,4812305:0,0,0 +(1,11655:3078558,2439708:0,1703936,0 +g1,11655:29030814,2439708 +g1,11655:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11655:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11665:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11655:37855564,2439708:1179648,16384,0 ) ) -k1,11665:3078556,2439708:-34777008 +k1,11655:3078556,2439708:-34777008 ) ] -[1,11665:3078558,4812305:0,0,0 -(1,11665:3078558,49800853:0,16384,2228224 -k1,11665:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11665:2537886,49800853:1179648,16384,0 +[1,11655:3078558,4812305:0,0,0 +(1,11655:3078558,49800853:0,16384,2228224 +k1,11655:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11655:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11665:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11655:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,11665:3078558,4812305:0,0,0 -(1,11665:3078558,49800853:0,16384,2228224 -g1,11665:29030814,49800853 -g1,11665:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11665:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11665:37855564,49800853:1179648,16384,0 -) -) -k1,11665:3078556,49800853:-34777008 -) -] -g1,11665:6630773,4812305 -g1,11665:6630773,4812305 -g1,11665:10697281,4812305 -g1,11665:11496164,4812305 -g1,11665:12681054,4812305 -g1,11665:15925086,4812305 -g1,11665:16740353,4812305 -g1,11665:19649496,4812305 -k1,11665:31387652,4812305:11738156 -) -) -] -[1,11665:6630773,45706769:25952256,40108032,0 -(1,11665:6630773,45706769:25952256,40108032,0 -(1,11665:6630773,45706769:0,0,0 -g1,11665:6630773,45706769 -) -[1,11665:6630773,45706769:25952256,40108032,0 -(1,11622:6630773,6254097:25952256,513147,134348 -k1,11621:10041813,6254097:220092 -k1,11621:10793401,6254097:220091 -k1,11621:13385241,6254097:220092 -k1,11621:14256760,6254097:220091 -k1,11621:15495937,6254097:220092 -k1,11621:19123901,6254097:220092 -k1,11621:21763581,6254097:220091 -k1,11621:22441770,6254097:220092 -k1,11621:24771465,6254097:220091 -k1,11621:26367158,6254097:220092 -k1,11621:27606334,6254097:220091 -k1,11621:31464329,6254097:220092 -k1,11621:32583029,6254097:0 -) -(1,11622:6630773,7095585:25952256,513147,134348 -k1,11621:9461072,7095585:195096 -k1,11621:10675252,7095585:195095 -k1,11621:12606397,7095585:195096 -k1,11621:13992937,7095585:195095 -k1,11621:15207118,7095585:195096 -k1,11621:18499444,7095585:195095 -k1,11621:19353832,7095585:195096 -k1,11621:20568012,7095585:195095 -k1,11621:22214075,7095585:195096 -k1,11621:23605857,7095585:195095 -k1,11621:28638165,7095585:195096 -k1,11621:29364757,7095585:195095 -k1,11621:31931601,7095585:195096 -k1,11621:32583029,7095585:0 -) -(1,11622:6630773,7937073:25952256,513147,134348 -k1,11621:7816975,7937073:167117 -k1,11621:9994736,7937073:167116 -k1,11621:12940580,7937073:167117 -k1,11621:13869225,7937073:167117 -k1,11621:15168148,7937073:167116 -k1,11621:18168386,7937073:167117 -k1,11621:19532189,7937073:167116 -k1,11621:22177878,7937073:167117 -k1,11621:23513502,7937073:167117 -k1,11621:25393074,7937073:167116 -k1,11621:26091688,7937073:167117 -k1,11621:28561085,7937073:167117 -k1,11621:29537571,7937073:167116 -k1,11621:30723773,7937073:167117 -k1,11622:32583029,7937073:0 -) -(1,11622:6630773,8778561:25952256,513147,102891 -k1,11621:9131736,8778561:165260 -k1,11621:13035170,8778561:165260 -k1,11621:13886591,8778561:165259 -k1,11621:14407711,8778561:165260 -k1,11621:16487933,8778561:165260 -k1,11621:19182883,8778561:165260 -k1,11621:20367228,8778561:165260 -k1,11621:22520195,8778561:165260 -k1,11621:23892627,8778561:165259 -k1,11621:25770343,8778561:165260 -k1,11621:26587031,8778561:165260 -k1,11621:27771376,8778561:165260 -k1,11621:32583029,8778561:0 -) -(1,11622:6630773,9620049:25952256,513147,126483 -k1,11621:8286048,9620049:265912 -k1,11621:9743405,9620049:265912 -k1,11621:11212559,9620049:265913 -k1,11621:13190927,9620049:265912 -k1,11621:15444546,9620049:265912 -k1,11621:16241955,9620049:265912 -k1,11621:20824724,9620049:265912 -k1,11621:22603862,9620049:265912 -k1,11621:23521203,9620049:265913 -k1,11621:25810867,9620049:265912 -k1,11621:27095864,9620049:265912 -k1,11621:30398714,9620049:265912 -k1,11621:32583029,9620049:0 -) -(1,11622:6630773,10461537:25952256,513147,126483 -k1,11621:8729740,10461537:213496 -k1,11621:9934796,10461537:213496 -k1,11621:11582220,10461537:213496 -k1,11621:14097996,10461537:213496 -k1,11621:15824718,10461537:213496 -k1,11621:17057299,10461537:213496 -k1,11621:22108007,10461537:213496 -k1,11621:22853000,10461537:213496 -k1,11621:25438244,10461537:213496 -k1,11621:26303168,10461537:213496 -k1,11621:28329390,10461537:213496 -k1,11621:29496435,10461537:213496 -k1,11621:31185146,10461537:213496 -k1,11621:32583029,10461537:0 -) -(1,11622:6630773,11303025:25952256,505283,126483 -k1,11621:9970925,11303025:250129 -k1,11621:11596655,11303025:250129 -k1,11621:14731023,11303025:250129 -k1,11621:18389024,11303025:250129 -k1,11621:21215373,11303025:250129 -k1,11621:23155020,11303025:250129 -k1,11621:25107119,11303025:250129 -k1,11621:28765120,11303025:250129 -k1,11621:31591469,11303025:250129 -k1,11621:32583029,11303025:0 -) -(1,11622:6630773,12144513:25952256,505283,134348 -g1,11621:9920025,12144513 -g1,11621:10735292,12144513 -g1,11621:13543509,12144513 -h1,11621:15086227,12144513:0,0,0 -g1,11621:15285456,12144513 -g1,11621:16676130,12144513 -h1,11621:17646718,12144513:0,0,0 -g1,11621:17845947,12144513 -g1,11621:18854546,12144513 -g1,11621:20882229,12144513 -h1,11621:22077606,12144513:0,0,0 -g1,11621:22276835,12144513 -g1,11621:23667509,12144513 -h1,11621:24862886,12144513:0,0,0 -g1,11621:25235785,12144513 -k1,11622:32583029,12144513:3377073 -g1,11622:32583029,12144513 -) -v1,11624:6630773,13334979:0,393216,0 -(1,11632:6630773,16314787:25952256,3373024,196608 -g1,11632:6630773,16314787 -g1,11632:6630773,16314787 -g1,11632:6434165,16314787 -(1,11632:6434165,16314787:0,3373024,196608 -r1,11632:32779637,16314787:26345472,3569632,196608 -k1,11632:6434165,16314787:-26345472 -) -(1,11632:6434165,16314787:26345472,3373024,196608 -[1,11632:6630773,16314787:25952256,3176416,0 -(1,11626:6630773,13542597:25952256,404226,107478 -(1,11625:6630773,13542597:0,0,0 -g1,11625:6630773,13542597 -g1,11625:6630773,13542597 -g1,11625:6303093,13542597 -(1,11625:6303093,13542597:0,0,0 -) -g1,11625:6630773,13542597 -) -k1,11626:6630773,13542597:0 -g1,11626:10424522,13542597 -g1,11626:11056814,13542597 -k1,11626:11056814,13542597:0 -h1,11626:13269834,13542597:0,0,0 -k1,11626:32583030,13542597:19313196 -g1,11626:32583030,13542597 -) -(1,11627:6630773,14208775:25952256,404226,107478 -h1,11627:6630773,14208775:0,0,0 -g1,11627:6946919,14208775 -g1,11627:7263065,14208775 -g1,11627:7579211,14208775 -g1,11627:7895357,14208775 -g1,11627:8211503,14208775 -g1,11627:8527649,14208775 -g1,11627:8843795,14208775 -g1,11627:10740670,14208775 -g1,11627:11372962,14208775 -g1,11627:13269837,14208775 -g1,11627:13902129,14208775 -g1,11627:14534421,14208775 -g1,11627:16431295,14208775 -h1,11627:16747441,14208775:0,0,0 -k1,11627:32583029,14208775:15835588 -g1,11627:32583029,14208775 -) -(1,11628:6630773,14874953:25952256,404226,107478 -h1,11628:6630773,14874953:0,0,0 -g1,11628:6946919,14874953 -g1,11628:7263065,14874953 -g1,11628:11372959,14874953 -h1,11628:11689105,14874953:0,0,0 -k1,11628:32583029,14874953:20893924 -g1,11628:32583029,14874953 -) -(1,11629:6630773,15541131:25952256,404226,107478 -h1,11629:6630773,15541131:0,0,0 -g1,11629:6946919,15541131 -g1,11629:7263065,15541131 -g1,11629:12637542,15541131 -g1,11629:13269834,15541131 -g1,11629:15799000,15541131 -g1,11629:18012020,15541131 -g1,11629:18644312,15541131 -g1,11629:20541187,15541131 -h1,11629:20857333,15541131:0,0,0 -k1,11629:32583029,15541131:11725696 -g1,11629:32583029,15541131 -) -(1,11630:6630773,16207309:25952256,404226,107478 -h1,11630:6630773,16207309:0,0,0 -g1,11630:6946919,16207309 -g1,11630:7263065,16207309 -g1,11630:11689105,16207309 -g1,11630:12321397,16207309 -h1,11630:14850563,16207309:0,0,0 -k1,11630:32583029,16207309:17732466 -g1,11630:32583029,16207309 -) -] -) -g1,11632:32583029,16314787 -g1,11632:6630773,16314787 -g1,11632:6630773,16314787 -g1,11632:32583029,16314787 -g1,11632:32583029,16314787 -) -h1,11632:6630773,16511395:0,0,0 -(1,11635:6630773,26163908:25952256,9062689,0 -k1,11635:10523651,26163908:3892878 -h1,11634:10523651,26163908:0,0,0 -(1,11634:10523651,26163908:18166500,9062689,0 -(1,11634:10523651,26163908:18167381,9062712,0 -(1,11634:10523651,26163908:18167381,9062712,0 -(1,11634:10523651,26163908:0,9062712,0 -(1,11634:10523651,26163908:0,14155776,0 -(1,11634:10523651,26163908:28377088,14155776,0 -) -k1,11634:10523651,26163908:-28377088 -) -) -g1,11634:28691032,26163908 -) -) -) -g1,11635:28690151,26163908 -k1,11635:32583029,26163908:3892878 -) -(1,11643:6630773,27005396:25952256,513147,134348 -h1,11642:6630773,27005396:983040,0,0 -k1,11642:10452778,27005396:344665 -k1,11642:12576745,27005396:344665 -k1,11642:13940494,27005396:344664 -k1,11642:17382390,27005396:344665 -k1,11642:18386347,27005396:344665 -k1,11642:20338610,27005396:344665 -k1,11642:21296036,27005396:344664 -k1,11642:22659786,27005396:344665 -k1,11642:24429859,27005396:344665 -k1,11642:25433816,27005396:344665 -k1,11642:30386316,27005396:344664 -k1,11642:31835263,27005396:344665 -k1,11642:32583029,27005396:0 -) -(1,11643:6630773,27846884:25952256,513147,134348 -k1,11642:9325061,27846884:167220 -k1,11642:10151573,27846884:167220 -k1,11642:11004955,27846884:167220 -k1,11642:12672949,27846884:167220 -k1,11642:14867198,27846884:167220 -k1,11642:17638163,27846884:167220 -k1,11642:18824468,27846884:167220 -k1,11642:21380475,27846884:167220 -k1,11642:23809999,27846884:167221 -k1,11642:24464775,27846884:167188 -k1,11642:27557522,27846884:167220 -k1,11642:29711138,27846884:167220 -k1,11642:30982640,27846884:167220 -k1,11643:32583029,27846884:0 -) -(1,11643:6630773,28688372:25952256,513147,134348 -k1,11642:8051997,28688372:163588 -k1,11642:9234669,28688372:163587 -k1,11642:11663837,28688372:163588 -k1,11642:13206958,28688372:163588 -k1,11642:15530612,28688372:163587 -k1,11642:16890887,28688372:163588 -k1,11642:18331772,28688372:163588 -k1,11642:19026857,28688372:163588 -k1,11642:20209529,28688372:163587 -k1,11642:22200261,28688372:163588 -k1,11642:23382934,28688372:163588 -k1,11642:27618273,28688372:163587 -k1,11642:28773421,28688372:163588 -k1,11642:32583029,28688372:0 -) -(1,11643:6630773,29529860:25952256,513147,126483 -k1,11642:7479682,29529860:232871 -k1,11642:8731638,29529860:232871 -k1,11642:10617982,29529860:232871 -k1,11642:12262499,29529860:232871 -k1,11642:13514456,29529860:232872 -k1,11642:15562019,29529860:232871 -k1,11642:16454182,29529860:232871 -k1,11642:17706138,29529860:232871 -k1,11642:19337547,29529860:232871 -k1,11642:20561978,29529860:232871 -k1,11642:21813934,29529860:232871 -k1,11642:23700278,29529860:232871 -k1,11642:25124594,29529860:232871 -k1,11642:26123582,29529860:232872 -k1,11642:27582632,29529860:232871 -k1,11642:28347000,29529860:232871 -k1,11642:29598956,29529860:232871 -k1,11642:31658971,29529860:232871 -k1,11642:32583029,29529860:0 -) -(1,11643:6630773,30371348:25952256,513147,126483 -k1,11642:7833510,30371348:183652 -k1,11642:9892802,30371348:183652 -k1,11642:11682741,30371348:183652 -k1,11642:13196774,30371348:183652 -k1,11642:15077153,30371348:183652 -k1,11642:18129971,30371348:183652 -k1,11642:19305182,30371348:183651 -k1,11642:22363898,30371348:183652 -k1,11642:23309078,30371348:183652 -k1,11642:26255073,30371348:183652 -k1,11642:28755423,30371348:183652 -k1,11642:30043357,30371348:183652 -k1,11642:30974775,30371348:183652 -k1,11643:32583029,30371348:0 -) -(1,11643:6630773,31212836:25952256,513147,126483 -g1,11642:8748896,31212836 -k1,11643:32583029,31212836:20898120 -g1,11643:32583029,31212836 -) -v1,11645:6630773,32403302:0,393216,0 -(1,11652:6630773,34685475:25952256,2675389,196608 -g1,11652:6630773,34685475 -g1,11652:6630773,34685475 -g1,11652:6434165,34685475 -(1,11652:6434165,34685475:0,2675389,196608 -r1,11652:32779637,34685475:26345472,2871997,196608 -k1,11652:6434165,34685475:-26345472 -) -(1,11652:6434165,34685475:26345472,2675389,196608 -[1,11652:6630773,34685475:25952256,2478781,0 -(1,11647:6630773,32610920:25952256,404226,107478 -(1,11646:6630773,32610920:0,0,0 -g1,11646:6630773,32610920 -g1,11646:6630773,32610920 -g1,11646:6303093,32610920 -(1,11646:6303093,32610920:0,0,0 -) -g1,11646:6630773,32610920 -) -k1,11647:6630773,32610920:0 -g1,11647:10424522,32610920 -g1,11647:11056814,32610920 -k1,11647:11056814,32610920:0 -h1,11647:13269834,32610920:0,0,0 -k1,11647:32583030,32610920:19313196 -g1,11647:32583030,32610920 -) -(1,11648:6630773,33277098:25952256,404226,107478 -h1,11648:6630773,33277098:0,0,0 -g1,11648:6946919,33277098 -g1,11648:7263065,33277098 -g1,11648:7579211,33277098 -g1,11648:7895357,33277098 -g1,11648:8211503,33277098 -g1,11648:8527649,33277098 -g1,11648:8843795,33277098 -g1,11648:10740670,33277098 -g1,11648:11372962,33277098 -g1,11648:13269837,33277098 -g1,11648:13902129,33277098 -g1,11648:14534421,33277098 -g1,11648:16431295,33277098 -h1,11648:16747441,33277098:0,0,0 -k1,11648:32583029,33277098:15835588 -g1,11648:32583029,33277098 -) -(1,11649:6630773,33943276:25952256,404226,107478 -h1,11649:6630773,33943276:0,0,0 -g1,11649:6946919,33943276 -g1,11649:7263065,33943276 -g1,11649:11372959,33943276 -h1,11649:11689105,33943276:0,0,0 -k1,11649:32583029,33943276:20893924 -g1,11649:32583029,33943276 -) -(1,11650:6630773,34609454:25952256,404226,76021 -h1,11650:6630773,34609454:0,0,0 -g1,11650:6946919,34609454 -g1,11650:7263065,34609454 -k1,11650:7263065,34609454:0 -h1,11650:12005250,34609454:0,0,0 -k1,11650:32583030,34609454:20577780 -g1,11650:32583030,34609454 -) -] -) -g1,11652:32583029,34685475 -g1,11652:6630773,34685475 -g1,11652:6630773,34685475 -g1,11652:32583029,34685475 -g1,11652:32583029,34685475 -) -h1,11652:6630773,34882083:0,0,0 -(1,11655:6630773,44534596:25952256,9062689,0 -k1,11655:10523651,44534596:3892878 -h1,11654:10523651,44534596:0,0,0 -(1,11654:10523651,44534596:18166500,9062689,0 -(1,11654:10523651,44534596:18167381,9062712,0 -(1,11654:10523651,44534596:18167381,9062712,0 -(1,11654:10523651,44534596:0,9062712,0 -(1,11654:10523651,44534596:0,14155776,0 -(1,11654:10523651,44534596:28377088,14155776,0 -) -k1,11654:10523651,44534596:-28377088 -) -) -g1,11654:28691032,44534596 -) -) -) -g1,11655:28690151,44534596 -k1,11655:32583029,44534596:3892878 -) -(1,11663:6630773,45376084:25952256,513147,126483 -h1,11662:6630773,45376084:983040,0,0 -k1,11662:8753091,45376084:185729 -k1,11662:10043102,45376084:185729 -k1,11662:11514647,45376084:185729 -k1,11662:14345408,45376084:185728 -k1,11662:15550222,45376084:185729 -k1,11662:17169879,45376084:185729 -k1,11662:18686644,45376084:185729 -k1,11662:20141150,45376084:185729 -k1,11662:21518324,45376084:185729 -k1,11662:23035089,45376084:185729 -k1,11662:25402512,45376084:185729 -k1,11662:26969084,45376084:185728 -k1,11662:29264417,45376084:185729 -k1,11662:30469231,45376084:185729 -k1,11662:31923737,45376084:185729 -k1,11662:32583029,45376084:0 -) -] -(1,11665:32583029,45706769:0,0,0 -g1,11665:32583029,45706769 -) -) -] -(1,11665:6630773,47279633:25952256,0,0 -h1,11665:6630773,47279633:25952256,0,0 -) -] -h1,11665:4262630,4025873:0,0,0 -] -!16617 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,11655:3078558,4812305:0,0,0 +(1,11655:3078558,49800853:0,16384,2228224 +g1,11655:29030814,49800853 +g1,11655:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11655:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11655:37855564,49800853:1179648,16384,0 +) +) +k1,11655:3078556,49800853:-34777008 +) +] +g1,11655:6630773,4812305 +g1,11655:6630773,4812305 +g1,11655:10697281,4812305 +g1,11655:11496164,4812305 +g1,11655:12681054,4812305 +g1,11655:15925086,4812305 +g1,11655:16740353,4812305 +g1,11655:19649496,4812305 +k1,11655:31387652,4812305:11738156 +) +) +] +[1,11655:6630773,45706769:25952256,40108032,0 +(1,11655:6630773,45706769:25952256,40108032,0 +(1,11655:6630773,45706769:0,0,0 +g1,11655:6630773,45706769 +) +[1,11655:6630773,45706769:25952256,40108032,0 +(1,11608:6630773,6254097:25952256,513147,134348 +k1,11607:9085096,6254097:213647 +k1,11607:10996782,6254097:213648 +k1,11607:11566289,6254097:213647 +k1,11607:13860049,6254097:213647 +k1,11607:14732989,6254097:213648 +k1,11607:15965721,6254097:213647 +k1,11607:17568731,6254097:213647 +k1,11607:18773939,6254097:213648 +k1,11607:21576258,6254097:213647 +k1,11607:22551433,6254097:213647 +k1,11607:25697817,6254097:213648 +k1,11607:28093158,6254097:213647 +k1,11607:29325890,6254097:213647 +k1,11607:31354230,6254097:213648 +k1,11607:32227169,6254097:213647 +k1,11607:32583029,6254097:0 +) +(1,11608:6630773,7095585:25952256,505283,7863 +k1,11608:32583028,7095585:24206376 +g1,11608:32583028,7095585 +) +(1,11610:6630773,7937073:25952256,513147,126483 +h1,11609:6630773,7937073:983040,0,0 +k1,11609:8440373,7937073:198725 +k1,11609:11270370,7937073:198726 +k1,11609:12120523,7937073:198725 +k1,11609:13854101,7937073:198725 +k1,11609:15934365,7937073:198726 +k1,11609:19777547,7937073:198725 +k1,11609:22671768,7937073:198725 +k1,11609:23556655,7937073:198725 +k1,11609:24111241,7937073:198726 +k1,11609:26751837,7937073:198725 +k1,11609:28408738,7937073:198725 +k1,11609:29874930,7937073:198726 +k1,11609:31092740,7937073:198725 +k1,11610:32583029,7937073:0 +) +(1,11610:6630773,8778561:25952256,513147,134348 +k1,11609:8111382,8778561:233459 +k1,11609:9865933,8778561:233460 +k1,11609:11290837,8778561:233459 +k1,11609:12339564,8778561:233459 +k1,11609:13639295,8778561:233460 +k1,11609:15652056,8778561:233459 +k1,11609:17770986,8778561:233459 +k1,11609:22076197,8778561:233459 +k1,11609:23301217,8778561:233460 +k1,11609:25577433,8778561:233459 +k1,11609:26462320,8778561:233459 +k1,11609:29528901,8778561:233460 +k1,11609:30959047,8778561:233459 +k1,11610:32583029,8778561:0 +) +(1,11610:6630773,9620049:25952256,505283,134348 +k1,11609:8811930,9620049:184275 +k1,11609:11415795,9620049:184276 +k1,11609:12286232,9620049:184275 +k1,11609:15483197,9620049:184275 +k1,11609:16198969,9620049:184275 +k1,11609:17669061,9620049:184276 +k1,11609:21518109,9620049:184275 +k1,11609:22463912,9620049:184275 +k1,11609:23851428,9620049:184275 +k1,11609:26938294,9620049:184276 +k1,11609:31714677,9620049:184275 +k1,11609:32583029,9620049:0 +) +(1,11610:6630773,10461537:25952256,513147,138281 +g1,11609:7922487,10461537 +g1,11609:11005955,10461537 +g1,11609:14943358,10461537 +g1,11609:17028058,10461537 +g1,11609:18218847,10461537 +g1,11609:19437161,10461537 +g1,11609:22075640,10461537 +g1,11609:23347038,10461537 +g1,11609:24414619,10461537 +g1,11609:27546584,10461537 +g1,11609:28680356,10461537 +$1,11609:28680356,10461537 +$1,11609:29232169,10461537 +g1,11609:29431398,10461537 +k1,11610:32583029,10461537:1163269 +g1,11610:32583029,10461537 +) +v1,11612:6630773,11652003:0,393216,0 +(1,11622:6630773,15953349:25952256,4694562,196608 +g1,11622:6630773,15953349 +g1,11622:6630773,15953349 +g1,11622:6434165,15953349 +(1,11622:6434165,15953349:0,4694562,196608 +r1,11622:32779637,15953349:26345472,4891170,196608 +k1,11622:6434165,15953349:-26345472 +) +(1,11622:6434165,15953349:26345472,4694562,196608 +[1,11622:6630773,15953349:25952256,4497954,0 +(1,11614:6630773,11859621:25952256,404226,107478 +(1,11613:6630773,11859621:0,0,0 +g1,11613:6630773,11859621 +g1,11613:6630773,11859621 +g1,11613:6303093,11859621 +(1,11613:6303093,11859621:0,0,0 +) +g1,11613:6630773,11859621 +) +k1,11614:6630773,11859621:0 +g1,11614:10424522,11859621 +g1,11614:11056814,11859621 +k1,11614:11056814,11859621:0 +h1,11614:13269834,11859621:0,0,0 +k1,11614:32583030,11859621:19313196 +g1,11614:32583030,11859621 +) +(1,11615:6630773,12525799:25952256,404226,107478 +h1,11615:6630773,12525799:0,0,0 +g1,11615:6946919,12525799 +g1,11615:7263065,12525799 +g1,11615:7579211,12525799 +g1,11615:7895357,12525799 +g1,11615:8211503,12525799 +g1,11615:8527649,12525799 +g1,11615:8843795,12525799 +g1,11615:10740670,12525799 +g1,11615:11372962,12525799 +g1,11615:13269837,12525799 +g1,11615:13902129,12525799 +g1,11615:14534421,12525799 +g1,11615:16431295,12525799 +h1,11615:16747441,12525799:0,0,0 +k1,11615:32583029,12525799:15835588 +g1,11615:32583029,12525799 +) +(1,11616:6630773,13191977:25952256,404226,107478 +h1,11616:6630773,13191977:0,0,0 +g1,11616:6946919,13191977 +g1,11616:7263065,13191977 +g1,11616:11372959,13191977 +h1,11616:11689105,13191977:0,0,0 +k1,11616:32583029,13191977:20893924 +g1,11616:32583029,13191977 +) +(1,11617:6630773,13858155:25952256,404226,107478 +h1,11617:6630773,13858155:0,0,0 +g1,11617:6946919,13858155 +g1,11617:7263065,13858155 +g1,11617:12637542,13858155 +g1,11617:13269834,13858155 +g1,11617:15799000,13858155 +g1,11617:18012020,13858155 +g1,11617:18644312,13858155 +g1,11617:20541187,13858155 +h1,11617:20857333,13858155:0,0,0 +k1,11617:32583029,13858155:11725696 +g1,11617:32583029,13858155 +) +(1,11618:6630773,14524333:25952256,404226,101187 +h1,11618:6630773,14524333:0,0,0 +g1,11618:6946919,14524333 +g1,11618:7263065,14524333 +g1,11618:13902125,14524333 +g1,11618:14534417,14524333 +g1,11618:16431292,14524333 +h1,11618:17695874,14524333:0,0,0 +k1,11618:32583029,14524333:14887155 +g1,11618:32583029,14524333 +) +(1,11622:6630773,15845871:25952256,410518,107478 +g1,11622:7579210,15845871 +g1,11622:12637541,15845871 +g1,11622:14534415,15845871 +g1,11622:17063581,15845871 +g1,11622:18012018,15845871 +g1,11622:18644310,15845871 +k1,11622:32583029,15845871:13306428 +g1,11622:32583029,15845871 +) +] +) +g1,11622:32583029,15953349 +g1,11622:6630773,15953349 +g1,11622:6630773,15953349 +g1,11622:32583029,15953349 +g1,11622:32583029,15953349 +) +h1,11622:6630773,16149957:0,0,0 +(1,11625:6630773,25802470:25952256,9062689,0 +k1,11625:10523651,25802470:3892878 +h1,11624:10523651,25802470:0,0,0 +(1,11624:10523651,25802470:18166500,9062689,0 +(1,11624:10523651,25802470:18167381,9062712,0 +(1,11624:10523651,25802470:18167381,9062712,0 +(1,11624:10523651,25802470:0,9062712,0 +(1,11624:10523651,25802470:0,14155776,0 +(1,11624:10523651,25802470:28377088,14155776,0 +) +k1,11624:10523651,25802470:-28377088 +) +) +g1,11624:28691032,25802470 +) +) +) +g1,11625:28690151,25802470 +k1,11625:32583029,25802470:3892878 +) +(1,11633:6630773,26643958:25952256,513147,126483 +h1,11632:6630773,26643958:983040,0,0 +k1,11632:9072710,26643958:262210 +k1,11632:10719039,26643958:262209 +k1,11632:13642666,26643958:262210 +k1,11632:15327662,26643958:262209 +k1,11632:15945732,26643958:262210 +k1,11632:19615813,26643958:262209 +k1,11632:22123942,26643958:262210 +k1,11632:27397034,26643958:262209 +k1,11632:29442479,26643958:262210 +k1,11632:30723773,26643958:262209 +k1,11633:32583029,26643958:0 +) +(1,11633:6630773,27485446:25952256,513147,134348 +k1,11632:10041813,27485446:220092 +k1,11632:10793401,27485446:220091 +k1,11632:13385241,27485446:220092 +k1,11632:14256760,27485446:220091 +k1,11632:15495937,27485446:220092 +k1,11632:19123901,27485446:220092 +k1,11632:21763581,27485446:220091 +k1,11632:22441770,27485446:220092 +k1,11632:24771465,27485446:220091 +k1,11632:26367158,27485446:220092 +k1,11632:27606334,27485446:220091 +k1,11632:31464329,27485446:220092 +k1,11632:32583029,27485446:0 +) +(1,11633:6630773,28326934:25952256,513147,134348 +k1,11632:9461072,28326934:195096 +k1,11632:10675252,28326934:195095 +k1,11632:12606397,28326934:195096 +k1,11632:13992937,28326934:195095 +k1,11632:15207118,28326934:195096 +k1,11632:18499444,28326934:195095 +k1,11632:19353832,28326934:195096 +k1,11632:20568012,28326934:195095 +k1,11632:22214075,28326934:195096 +k1,11632:23605857,28326934:195095 +k1,11632:28638165,28326934:195096 +k1,11632:29364757,28326934:195095 +k1,11632:31931601,28326934:195096 +k1,11632:32583029,28326934:0 +) +(1,11633:6630773,29168422:25952256,513147,134348 +k1,11632:7816975,29168422:167117 +k1,11632:9994736,29168422:167116 +k1,11632:12940580,29168422:167117 +k1,11632:13869225,29168422:167117 +k1,11632:15168148,29168422:167116 +k1,11632:18168386,29168422:167117 +k1,11632:19532189,29168422:167116 +k1,11632:22177878,29168422:167117 +k1,11632:23513502,29168422:167117 +k1,11632:25393074,29168422:167116 +k1,11632:26091688,29168422:167117 +k1,11632:28561085,29168422:167117 +k1,11632:29537571,29168422:167116 +k1,11632:30723773,29168422:167117 +k1,11633:32583029,29168422:0 +) +(1,11633:6630773,30009910:25952256,513147,102891 +k1,11632:9131736,30009910:165260 +k1,11632:13035170,30009910:165260 +k1,11632:13886591,30009910:165259 +k1,11632:14407711,30009910:165260 +k1,11632:16487933,30009910:165260 +k1,11632:19182883,30009910:165260 +k1,11632:20367228,30009910:165260 +k1,11632:22520195,30009910:165260 +k1,11632:23892627,30009910:165259 +k1,11632:25770343,30009910:165260 +k1,11632:26587031,30009910:165260 +k1,11632:27771376,30009910:165260 +k1,11632:32583029,30009910:0 +) +(1,11633:6630773,30851398:25952256,513147,126483 +k1,11632:8286048,30851398:265912 +k1,11632:9743405,30851398:265912 +k1,11632:11212559,30851398:265913 +k1,11632:13190927,30851398:265912 +k1,11632:15444546,30851398:265912 +k1,11632:16241955,30851398:265912 +k1,11632:20824724,30851398:265912 +k1,11632:22603862,30851398:265912 +k1,11632:23521203,30851398:265913 +k1,11632:25810867,30851398:265912 +k1,11632:27095864,30851398:265912 +k1,11632:30398714,30851398:265912 +k1,11632:32583029,30851398:0 +) +(1,11633:6630773,31692886:25952256,513147,126483 +k1,11632:8729740,31692886:213496 +k1,11632:9934796,31692886:213496 +k1,11632:11582220,31692886:213496 +k1,11632:14097996,31692886:213496 +k1,11632:15824718,31692886:213496 +k1,11632:17057299,31692886:213496 +k1,11632:22108007,31692886:213496 +k1,11632:22853000,31692886:213496 +k1,11632:25438244,31692886:213496 +k1,11632:26303168,31692886:213496 +k1,11632:28329390,31692886:213496 +k1,11632:29496435,31692886:213496 +k1,11632:31185146,31692886:213496 +k1,11632:32583029,31692886:0 +) +(1,11633:6630773,32534374:25952256,505283,126483 +k1,11632:9970925,32534374:250129 +k1,11632:11596655,32534374:250129 +k1,11632:14731023,32534374:250129 +k1,11632:18389024,32534374:250129 +k1,11632:21215373,32534374:250129 +k1,11632:23155020,32534374:250129 +k1,11632:25107119,32534374:250129 +k1,11632:28765120,32534374:250129 +k1,11632:31591469,32534374:250129 +k1,11632:32583029,32534374:0 +) +(1,11633:6630773,33375862:25952256,505283,134348 +g1,11632:9920025,33375862 +g1,11632:10735292,33375862 +g1,11632:13543509,33375862 +h1,11632:15086227,33375862:0,0,0 +g1,11632:15285456,33375862 +g1,11632:16676130,33375862 +h1,11632:17646718,33375862:0,0,0 +g1,11632:17845947,33375862 +g1,11632:18854546,33375862 +g1,11632:20882229,33375862 +h1,11632:22077606,33375862:0,0,0 +g1,11632:22276835,33375862 +g1,11632:23667509,33375862 +h1,11632:24862886,33375862:0,0,0 +g1,11632:25235785,33375862 +k1,11633:32583029,33375862:3377073 +g1,11633:32583029,33375862 +) +v1,11635:6630773,34566328:0,393216,0 +(1,11645:6630773,38867674:25952256,4694562,196608 +g1,11645:6630773,38867674 +g1,11645:6630773,38867674 +g1,11645:6434165,38867674 +(1,11645:6434165,38867674:0,4694562,196608 +r1,11645:32779637,38867674:26345472,4891170,196608 +k1,11645:6434165,38867674:-26345472 +) +(1,11645:6434165,38867674:26345472,4694562,196608 +[1,11645:6630773,38867674:25952256,4497954,0 +(1,11637:6630773,34773946:25952256,404226,107478 +(1,11636:6630773,34773946:0,0,0 +g1,11636:6630773,34773946 +g1,11636:6630773,34773946 +g1,11636:6303093,34773946 +(1,11636:6303093,34773946:0,0,0 +) +g1,11636:6630773,34773946 +) +k1,11637:6630773,34773946:0 +g1,11637:10424522,34773946 +g1,11637:11056814,34773946 +k1,11637:11056814,34773946:0 +h1,11637:13269834,34773946:0,0,0 +k1,11637:32583030,34773946:19313196 +g1,11637:32583030,34773946 +) +(1,11638:6630773,35440124:25952256,404226,107478 +h1,11638:6630773,35440124:0,0,0 +g1,11638:6946919,35440124 +g1,11638:7263065,35440124 +g1,11638:7579211,35440124 +g1,11638:7895357,35440124 +g1,11638:8211503,35440124 +g1,11638:8527649,35440124 +g1,11638:8843795,35440124 +g1,11638:10740670,35440124 +g1,11638:11372962,35440124 +g1,11638:13269837,35440124 +g1,11638:13902129,35440124 +g1,11638:14534421,35440124 +g1,11638:16431295,35440124 +h1,11638:16747441,35440124:0,0,0 +k1,11638:32583029,35440124:15835588 +g1,11638:32583029,35440124 +) +(1,11639:6630773,36106302:25952256,404226,107478 +h1,11639:6630773,36106302:0,0,0 +g1,11639:6946919,36106302 +g1,11639:7263065,36106302 +g1,11639:11372959,36106302 +h1,11639:11689105,36106302:0,0,0 +k1,11639:32583029,36106302:20893924 +g1,11639:32583029,36106302 +) +(1,11640:6630773,36772480:25952256,404226,107478 +h1,11640:6630773,36772480:0,0,0 +g1,11640:6946919,36772480 +g1,11640:7263065,36772480 +g1,11640:12637542,36772480 +g1,11640:13269834,36772480 +g1,11640:15799000,36772480 +g1,11640:18012020,36772480 +g1,11640:18644312,36772480 +g1,11640:20541187,36772480 +h1,11640:20857333,36772480:0,0,0 +k1,11640:32583029,36772480:11725696 +g1,11640:32583029,36772480 +) +(1,11641:6630773,37438658:25952256,404226,107478 +h1,11641:6630773,37438658:0,0,0 +g1,11641:6946919,37438658 +g1,11641:7263065,37438658 +g1,11641:11689105,37438658 +g1,11641:12321397,37438658 +h1,11641:14850563,37438658:0,0,0 +k1,11641:32583029,37438658:17732466 +g1,11641:32583029,37438658 +) +(1,11645:6630773,38760196:25952256,410518,107478 +g1,11645:7579210,38760196 +g1,11645:12637541,38760196 +g1,11645:14534415,38760196 +g1,11645:17063581,38760196 +g1,11645:18012018,38760196 +g1,11645:18644310,38760196 +k1,11645:32583029,38760196:13306428 +g1,11645:32583029,38760196 +) +] +) +g1,11645:32583029,38867674 +g1,11645:6630773,38867674 +g1,11645:6630773,38867674 +g1,11645:32583029,38867674 +g1,11645:32583029,38867674 +) +h1,11645:6630773,39064282:0,0,0 +] +(1,11655:32583029,45706769:0,0,0 +g1,11655:32583029,45706769 +) +) +] +(1,11655:6630773,47279633:25952256,0,0 +h1,11655:6630773,47279633:25952256,0,0 +) +] +h1,11655:4262630,4025873:0,0,0 +] +!16742 }220 -Input:1471:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1472:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1473:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1474:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1475:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1476:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1477:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1478:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1479:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1480:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1481:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1482:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1483:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1484:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1485:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 +!12 {221 -[1,11724:4262630,47279633:28320399,43253760,0 -(1,11724:4262630,4025873:0,0,0 -[1,11724:-473657,4025873:25952256,0,0 -(1,11724:-473657,-710414:25952256,0,0 -h1,11724:-473657,-710414:0,0,0 -(1,11724:-473657,-710414:0,0,0 -(1,11724:-473657,-710414:0,0,0 -g1,11724:-473657,-710414 -(1,11724:-473657,-710414:65781,0,65781 -g1,11724:-407876,-710414 -[1,11724:-407876,-644633:0,0,0 +[1,11695:4262630,47279633:28320399,43253760,0 +(1,11695:4262630,4025873:0,0,0 +[1,11695:-473657,4025873:25952256,0,0 +(1,11695:-473657,-710414:25952256,0,0 +h1,11695:-473657,-710414:0,0,0 +(1,11695:-473657,-710414:0,0,0 +(1,11695:-473657,-710414:0,0,0 +g1,11695:-473657,-710414 +(1,11695:-473657,-710414:65781,0,65781 +g1,11695:-407876,-710414 +[1,11695:-407876,-644633:0,0,0 ] ) -k1,11724:-473657,-710414:-65781 +k1,11695:-473657,-710414:-65781 ) ) -k1,11724:25478599,-710414:25952256 -g1,11724:25478599,-710414 +k1,11695:25478599,-710414:25952256 +g1,11695:25478599,-710414 ) ] ) -[1,11724:6630773,47279633:25952256,43253760,0 -[1,11724:6630773,4812305:25952256,786432,0 -(1,11724:6630773,4812305:25952256,513147,134348 -(1,11724:6630773,4812305:25952256,513147,134348 -g1,11724:3078558,4812305 -[1,11724:3078558,4812305:0,0,0 -(1,11724:3078558,2439708:0,1703936,0 -k1,11724:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11724:2537886,2439708:1179648,16384,0 +[1,11695:6630773,47279633:25952256,43253760,0 +[1,11695:6630773,4812305:25952256,786432,0 +(1,11695:6630773,4812305:25952256,513147,134348 +(1,11695:6630773,4812305:25952256,513147,134348 +g1,11695:3078558,4812305 +[1,11695:3078558,4812305:0,0,0 +(1,11695:3078558,2439708:0,1703936,0 +k1,11695:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11695:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11724:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11695:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11724:3078558,4812305:0,0,0 -(1,11724:3078558,2439708:0,1703936,0 -g1,11724:29030814,2439708 -g1,11724:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11724:36151628,1915420:16384,1179648,0 +[1,11695:3078558,4812305:0,0,0 +(1,11695:3078558,2439708:0,1703936,0 +g1,11695:29030814,2439708 +g1,11695:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11695:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11724:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11695:37855564,2439708:1179648,16384,0 ) ) -k1,11724:3078556,2439708:-34777008 +k1,11695:3078556,2439708:-34777008 ) ] -[1,11724:3078558,4812305:0,0,0 -(1,11724:3078558,49800853:0,16384,2228224 -k1,11724:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11724:2537886,49800853:1179648,16384,0 +[1,11695:3078558,4812305:0,0,0 +(1,11695:3078558,49800853:0,16384,2228224 +k1,11695:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11695:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11724:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11695:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11724:3078558,4812305:0,0,0 -(1,11724:3078558,49800853:0,16384,2228224 -g1,11724:29030814,49800853 -g1,11724:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11724:36151628,51504789:16384,1179648,0 +[1,11695:3078558,4812305:0,0,0 +(1,11695:3078558,49800853:0,16384,2228224 +g1,11695:29030814,49800853 +g1,11695:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11695:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11724:37855564,49800853:1179648,16384,0 -) -) -k1,11724:3078556,49800853:-34777008 -) -] -g1,11724:6630773,4812305 -k1,11724:25712890,4812305:17886740 -g1,11724:29057847,4812305 -g1,11724:29873114,4812305 -) -) -] -[1,11724:6630773,45706769:25952256,40108032,0 -(1,11724:6630773,45706769:25952256,40108032,0 -(1,11724:6630773,45706769:0,0,0 -g1,11724:6630773,45706769 -) -[1,11724:6630773,45706769:25952256,40108032,0 -(1,11663:6630773,6254097:25952256,513147,102891 -k1,11662:7588213,6254097:191324 -k1,11662:9005716,6254097:191324 -k1,11662:12239877,6254097:191324 -k1,11662:13117363,6254097:191324 -k1,11662:14817326,6254097:191324 -k1,11662:16277427,6254097:191324 -k1,11662:17000248,6254097:191324 -k1,11662:19573150,6254097:191324 -k1,11662:22123770,6254097:191324 -k1,11662:22966522,6254097:191324 -k1,11662:24176931,6254097:191324 -k1,11662:25802183,6254097:191324 -k1,11662:27435954,6254097:191324 -k1,11662:29115601,6254097:191324 -k1,11662:30175277,6254097:191324 -k1,11662:31563944,6254097:191324 -k1,11662:32583029,6254097:0 -) -(1,11663:6630773,7095585:25952256,513147,126483 -k1,11662:8492323,7095585:208077 -k1,11662:10686796,7095585:208077 -k1,11662:11581035,7095585:208077 -k1,11662:13302337,7095585:208076 -k1,11662:14126452,7095585:208077 -k1,11662:15353614,7095585:208077 -k1,11662:18316169,7095585:208077 -k1,11662:21359333,7095585:208077 -k1,11662:22639579,7095585:208077 -k1,11662:24241607,7095585:208077 -k1,11662:24805543,7095585:208076 -k1,11662:27775963,7095585:208077 -k1,11662:29417968,7095585:208077 -k1,11662:31314252,7095585:208077 -k1,11662:32583029,7095585:0 -) -(1,11663:6630773,7937073:25952256,513147,7863 -g1,11662:7777653,7937073 -k1,11663:32583030,7937073:23405528 -g1,11663:32583030,7937073 -) -v1,11665:6630773,9127539:0,393216,0 -(1,11672:6630773,11434878:25952256,2700555,196608 -g1,11672:6630773,11434878 -g1,11672:6630773,11434878 -g1,11672:6434165,11434878 -(1,11672:6434165,11434878:0,2700555,196608 -r1,11672:32779637,11434878:26345472,2897163,196608 -k1,11672:6434165,11434878:-26345472 -) -(1,11672:6434165,11434878:26345472,2700555,196608 -[1,11672:6630773,11434878:25952256,2503947,0 -(1,11667:6630773,9335157:25952256,404226,107478 -(1,11666:6630773,9335157:0,0,0 -g1,11666:6630773,9335157 -g1,11666:6630773,9335157 -g1,11666:6303093,9335157 -(1,11666:6303093,9335157:0,0,0 -) -g1,11666:6630773,9335157 -) -k1,11667:6630773,9335157:0 -g1,11667:10424522,9335157 -g1,11667:11056814,9335157 -k1,11667:11056814,9335157:0 -h1,11667:13269834,9335157:0,0,0 -k1,11667:32583030,9335157:19313196 -g1,11667:32583030,9335157 -) -(1,11668:6630773,10001335:25952256,404226,107478 -h1,11668:6630773,10001335:0,0,0 -g1,11668:6946919,10001335 -g1,11668:7263065,10001335 -g1,11668:7579211,10001335 -g1,11668:7895357,10001335 -g1,11668:8211503,10001335 -g1,11668:8527649,10001335 -g1,11668:8843795,10001335 -g1,11668:10740670,10001335 -g1,11668:11372962,10001335 -g1,11668:13269837,10001335 -g1,11668:13902129,10001335 -g1,11668:14534421,10001335 -g1,11668:16431295,10001335 -h1,11668:16747441,10001335:0,0,0 -k1,11668:32583029,10001335:15835588 -g1,11668:32583029,10001335 -) -(1,11669:6630773,10667513:25952256,404226,107478 -h1,11669:6630773,10667513:0,0,0 -g1,11669:6946919,10667513 -g1,11669:7263065,10667513 -g1,11669:11372959,10667513 -h1,11669:11689105,10667513:0,0,0 -k1,11669:32583029,10667513:20893924 -g1,11669:32583029,10667513 -) -(1,11670:6630773,11333691:25952256,410518,101187 -h1,11670:6630773,11333691:0,0,0 -g1,11670:6946919,11333691 -g1,11670:7263065,11333691 -g1,11670:14850562,11333691 -g1,11670:15482854,11333691 -g1,11670:16747437,11333691 -g1,11670:20541185,11333691 -g1,11670:21173477,11333691 -h1,11670:23702643,11333691:0,0,0 -k1,11670:32583029,11333691:8880386 -g1,11670:32583029,11333691 -) -] -) -g1,11672:32583029,11434878 -g1,11672:6630773,11434878 -g1,11672:6630773,11434878 -g1,11672:32583029,11434878 -g1,11672:32583029,11434878 -) -h1,11672:6630773,11631486:0,0,0 -(1,11675:6630773,21283999:25952256,9062689,0 -k1,11675:10523651,21283999:3892878 -h1,11674:10523651,21283999:0,0,0 -(1,11674:10523651,21283999:18166500,9062689,0 -(1,11674:10523651,21283999:18167381,9062712,0 -(1,11674:10523651,21283999:18167381,9062712,0 -(1,11674:10523651,21283999:0,9062712,0 -(1,11674:10523651,21283999:0,14155776,0 -(1,11674:10523651,21283999:28377088,14155776,0 -) -k1,11674:10523651,21283999:-28377088 -) -) -g1,11674:28691032,21283999 -) -) -) -g1,11675:28690151,21283999 -k1,11675:32583029,21283999:3892878 -) -(1,11683:6630773,22125487:25952256,513147,126483 -h1,11682:6630773,22125487:983040,0,0 -k1,11682:9038172,22125487:227672 -k1,11682:11383312,22125487:227672 -k1,11682:12270276,22125487:227672 -k1,11682:13828329,22125487:227672 -k1,11682:14707429,22125487:227672 -k1,11682:15869644,22125487:227672 -k1,11682:17349709,22125487:227672 -k1,11682:19595234,22125487:227671 -k1,11682:21007142,22125487:227672 -k1,11682:24179347,22125487:227672 -k1,11682:25598464,22125487:227672 -k1,11682:27010372,22125487:227672 -k1,11682:29082227,22125487:227672 -k1,11682:30442361,22125487:227672 -k1,11682:31417799,22125487:227672 -k1,11683:32583029,22125487:0 -) -(1,11683:6630773,22966975:25952256,513147,126483 -k1,11682:9024756,22966975:216877 -k1,11682:9857670,22966975:216876 -k1,11682:11935114,22966975:216877 -k1,11682:12768028,22966975:216876 -k1,11682:15263592,22966975:216877 -h1,11682:16234180,22966975:0,0,0 -k1,11682:16624726,22966975:216876 -k1,11682:20386445,22966975:216877 -k1,11682:21471674,22966975:216877 -k1,11682:22821012,22966975:216876 -k1,11682:24130374,22966975:216877 -k1,11682:27042746,22966975:216876 -(1,11682:27042746,22966975:0,452978,115847 -r1,11682:29159571,22966975:2116825,568825,115847 -k1,11682:27042746,22966975:-2116825 -) -(1,11682:27042746,22966975:2116825,452978,115847 -k1,11682:27042746,22966975:3277 -h1,11682:29156294,22966975:0,411205,112570 -) -k1,11682:29376448,22966975:216877 -k1,11682:31478795,22966975:216876 -k1,11682:32227169,22966975:216877 -k1,11682:32583029,22966975:0 -) -(1,11683:6630773,23808463:25952256,513147,134348 -k1,11682:10705365,23808463:167991 -k1,11682:13568851,23808463:167990 -k1,11682:16408745,23808463:167991 -k1,11682:17321879,23808463:167990 -k1,11682:18141298,23808463:167991 -k1,11682:20110217,23808463:167990 -k1,11682:21212751,23808463:167991 -k1,11682:22399826,23808463:167990 -k1,11682:23835283,23808463:167991 -k1,11682:25194718,23808463:167990 -k1,11682:27775745,23808463:167991 -k1,11682:28603027,23808463:167990 -k1,11682:29126878,23808463:167991 -k1,11682:30572165,23808463:167990 -k1,11682:31931601,23808463:167991 -k1,11682:32583029,23808463:0 -) -(1,11683:6630773,24649951:25952256,513147,126483 -k1,11682:9102732,24649951:173611 -k1,11682:10295428,24649951:173611 -k1,11682:12734619,24649951:173611 -(1,11682:12734619,24649951:0,414482,115847 -r1,11682:14148020,24649951:1413401,530329,115847 -k1,11682:12734619,24649951:-1413401 -) -(1,11682:12734619,24649951:1413401,414482,115847 -k1,11682:12734619,24649951:3277 -h1,11682:14144743,24649951:0,411205,112570 -) -k1,11682:14321631,24649951:173611 -k1,11682:15154534,24649951:173611 -k1,11682:17230655,24649951:173611 -k1,11682:18917492,24649951:173611 -k1,11682:20038754,24649951:173611 -k1,11682:21464758,24649951:173611 -k1,11682:24899440,24649951:173611 -k1,11682:27338631,24649951:173611 -(1,11682:27338631,24649951:0,414482,115847 -r1,11682:28752032,24649951:1413401,530329,115847 -k1,11682:27338631,24649951:-1413401 -) -(1,11682:27338631,24649951:1413401,414482,115847 -k1,11682:27338631,24649951:3277 -h1,11682:28748755,24649951:0,411205,112570 -) -k1,11682:28925643,24649951:173611 -k1,11682:29630751,24649951:173611 -k1,11682:30738905,24649951:173611 -k1,11682:31563944,24649951:173611 -k1,11682:32583029,24649951:0 -) -(1,11683:6630773,25491439:25952256,513147,134348 -k1,11682:8558856,25491439:190068 -k1,11682:9408217,25491439:190069 -k1,11682:10617370,25491439:190068 -k1,11682:13392834,25491439:190069 -k1,11682:16267912,25491439:190068 -k1,11682:18241216,25491439:190069 -k1,11682:20612978,25491439:190068 -k1,11682:21822132,25491439:190069 -(1,11682:21822132,25491439:0,414482,115847 -r1,11682:23235533,25491439:1413401,530329,115847 -k1,11682:21822132,25491439:-1413401 -) -(1,11682:21822132,25491439:1413401,414482,115847 -k1,11682:21822132,25491439:3277 -h1,11682:23232256,25491439:0,411205,112570 -) -k1,11682:23425601,25491439:190068 -k1,11682:24274962,25491439:190069 -k1,11682:26367540,25491439:190068 -k1,11682:27951560,25491439:190069 -(1,11682:27951560,25491439:0,452978,115847 -r1,11682:30068385,25491439:2116825,568825,115847 -k1,11682:27951560,25491439:-2116825 -) -(1,11682:27951560,25491439:2116825,452978,115847 -k1,11682:27951560,25491439:3277 -h1,11682:30065108,25491439:0,411205,112570 -) -k1,11682:30432123,25491439:190068 -k1,11682:31490544,25491439:190069 -k1,11682:32583029,25491439:0 -) -(1,11683:6630773,26332927:25952256,513147,134348 -k1,11682:7509812,26332927:192877 -k1,11682:10983422,26332927:192878 -k1,11682:13244615,26332927:192877 -k1,11682:14456578,26332927:192878 -k1,11682:16717771,26332927:192877 -k1,11682:17569941,26332927:192878 -k1,11682:20937382,26332927:192877 -k1,11682:22321705,26332927:192878 -k1,11682:23951787,26332927:192877 -k1,11682:24830827,26332927:192878 -k1,11682:25794407,26332927:192877 -k1,11682:29059613,26332927:192878 -k1,11682:29608350,26332927:192877 -k1,11682:32583029,26332927:0 -) -(1,11683:6630773,27174415:25952256,513147,134348 -k1,11682:8861181,27174415:190928 -k1,11682:9734995,27174415:190929 -k1,11682:10696626,27174415:190928 -k1,11682:11302389,27174415:190920 -k1,11682:15106973,27174415:190929 -k1,11682:16786224,27174415:190928 -k1,11682:17845504,27174415:190928 -k1,11682:19128918,27174415:190929 -(1,11682:19128918,27174415:0,414482,115847 -r1,11682:19487184,27174415:358266,530329,115847 -k1,11682:19128918,27174415:-358266 -) -(1,11682:19128918,27174415:358266,414482,115847 -k1,11682:19128918,27174415:3277 -h1,11682:19483907,27174415:0,411205,112570 -) -k1,11682:19678112,27174415:190928 -k1,11682:21060485,27174415:190928 -(1,11682:21060485,27174415:0,414482,115847 -r1,11682:21418751,27174415:358266,530329,115847 -k1,11682:21060485,27174415:-358266 -) -(1,11682:21060485,27174415:358266,414482,115847 -k1,11682:21060485,27174415:3277 -h1,11682:21415474,27174415:0,411205,112570 -) -k1,11682:21783350,27174415:190929 -k1,11682:22993363,27174415:190928 -k1,11682:25252608,27174415:190929 -k1,11682:26102828,27174415:190928 -k1,11682:27312841,27174415:190928 -k1,11682:28676209,27174415:190929 -k1,11682:31931601,27174415:190928 -k1,11682:32583029,27174415:0 -) -(1,11683:6630773,28015903:25952256,505283,126483 -g1,11682:8715473,28015903 -g1,11682:9783054,28015903 -g1,11682:11457498,28015903 -g1,11682:14242122,28015903 -g1,11682:15613790,28015903 -g1,11682:18654660,28015903 -g1,11682:19469927,28015903 -(1,11682:19469927,28015903:0,452978,115847 -r1,11682:20883328,28015903:1413401,568825,115847 -k1,11682:19469927,28015903:-1413401 -) -(1,11682:19469927,28015903:1413401,452978,115847 -k1,11682:19469927,28015903:3277 -h1,11682:20880051,28015903:0,411205,112570 -) -g1,11682:21256227,28015903 -(1,11682:21256227,28015903:0,452978,115847 -r1,11682:22669628,28015903:1413401,568825,115847 -k1,11682:21256227,28015903:-1413401 -) -(1,11682:21256227,28015903:1413401,452978,115847 -k1,11682:21256227,28015903:3277 -h1,11682:22666351,28015903:0,411205,112570 -) -g1,11682:22868857,28015903 -g1,11682:24259531,28015903 -(1,11682:24259531,28015903:0,414482,122846 -r1,11682:25321220,28015903:1061689,537328,122846 -k1,11682:24259531,28015903:-1061689 -) -(1,11682:24259531,28015903:1061689,414482,122846 -k1,11682:24259531,28015903:3277 -h1,11682:25317943,28015903:0,411205,112570 -) -k1,11683:32583029,28015903:7088139 -g1,11683:32583029,28015903 -) -v1,11685:6630773,29206369:0,393216,0 -(1,11695:6630773,33518533:25952256,4705380,196608 -g1,11695:6630773,33518533 -g1,11695:6630773,33518533 -g1,11695:6434165,33518533 -(1,11695:6434165,33518533:0,4705380,196608 -r1,11695:32779637,33518533:26345472,4901988,196608 -k1,11695:6434165,33518533:-26345472 -) -(1,11695:6434165,33518533:26345472,4705380,196608 -[1,11695:6630773,33518533:25952256,4508772,0 -(1,11687:6630773,29413987:25952256,404226,107478 -(1,11686:6630773,29413987:0,0,0 -g1,11686:6630773,29413987 -g1,11686:6630773,29413987 -g1,11686:6303093,29413987 -(1,11686:6303093,29413987:0,0,0 -) -g1,11686:6630773,29413987 -) -k1,11687:6630773,29413987:0 -g1,11687:10424522,29413987 -g1,11687:11056814,29413987 -k1,11687:11056814,29413987:0 -h1,11687:13269834,29413987:0,0,0 -k1,11687:32583030,29413987:19313196 -g1,11687:32583030,29413987 -) -(1,11688:6630773,30080165:25952256,404226,107478 -h1,11688:6630773,30080165:0,0,0 -g1,11688:6946919,30080165 -g1,11688:7263065,30080165 -g1,11688:7579211,30080165 -g1,11688:7895357,30080165 -g1,11688:8211503,30080165 -g1,11688:8527649,30080165 -g1,11688:8843795,30080165 -g1,11688:10740670,30080165 -g1,11688:11372962,30080165 -g1,11688:13269837,30080165 -g1,11688:13902129,30080165 -g1,11688:14534421,30080165 -g1,11688:16431295,30080165 -h1,11688:16747441,30080165:0,0,0 -k1,11688:32583029,30080165:15835588 -g1,11688:32583029,30080165 -) -(1,11689:6630773,30746343:25952256,404226,107478 -h1,11689:6630773,30746343:0,0,0 -g1,11689:6946919,30746343 -g1,11689:7263065,30746343 -g1,11689:11372959,30746343 -h1,11689:11689105,30746343:0,0,0 -k1,11689:32583029,30746343:20893924 -g1,11689:32583029,30746343 -) -(1,11690:6630773,31412521:25952256,404226,107478 -h1,11690:6630773,31412521:0,0,0 -g1,11690:6946919,31412521 -g1,11690:7263065,31412521 -g1,11690:9476086,31412521 -g1,11690:10108378,31412521 -g1,11690:12637544,31412521 -g1,11690:16747438,31412521 -g1,11690:18960458,31412521 -k1,11690:18960458,31412521:0 -h1,11690:21805769,31412521:0,0,0 -k1,11690:32583029,31412521:10777260 -g1,11690:32583029,31412521 -) -(1,11691:6630773,32078699:25952256,410518,107478 -h1,11691:6630773,32078699:0,0,0 -g1,11691:6946919,32078699 -g1,11691:7263065,32078699 -g1,11691:7579211,32078699 -g1,11691:7895357,32078699 -g1,11691:8211503,32078699 -g1,11691:8527649,32078699 -g1,11691:8843795,32078699 -g1,11691:9476087,32078699 -g1,11691:10108379,32078699 -g1,11691:12005253,32078699 -g1,11691:13269836,32078699 -g1,11691:19276604,32078699 -g1,11691:20541187,32078699 -k1,11691:20541187,32078699:0 -h1,11691:23386498,32078699:0,0,0 -k1,11691:32583029,32078699:9196531 -g1,11691:32583029,32078699 -) -(1,11692:6630773,32744877:25952256,404226,82312 -h1,11692:6630773,32744877:0,0,0 -g1,11692:6946919,32744877 -g1,11692:7263065,32744877 -g1,11692:7579211,32744877 -g1,11692:7895357,32744877 -g1,11692:8211503,32744877 -g1,11692:8527649,32744877 -g1,11692:8843795,32744877 -g1,11692:10740669,32744877 -g1,11692:11372961,32744877 -g1,11692:13585981,32744877 -g1,11692:15482855,32744877 -g1,11692:16747438,32744877 -g1,11692:18328167,32744877 -k1,11692:18328167,32744877:0 -h1,11692:20541187,32744877:0,0,0 -k1,11692:32583029,32744877:12041842 -g1,11692:32583029,32744877 -) -(1,11693:6630773,33411055:25952256,404226,107478 -h1,11693:6630773,33411055:0,0,0 -g1,11693:6946919,33411055 -g1,11693:7263065,33411055 -g1,11693:7579211,33411055 -g1,11693:7895357,33411055 -g1,11693:8211503,33411055 -g1,11693:8527649,33411055 -g1,11693:8843795,33411055 -g1,11693:11689106,33411055 -g1,11693:12321398,33411055 -g1,11693:15166709,33411055 -g1,11693:16747438,33411055 -g1,11693:18644312,33411055 -g1,11693:20541186,33411055 -g1,11693:21489623,33411055 -h1,11693:24651080,33411055:0,0,0 -k1,11693:32583029,33411055:7931949 -g1,11693:32583029,33411055 -) -] -) -g1,11695:32583029,33518533 -g1,11695:6630773,33518533 -g1,11695:6630773,33518533 -g1,11695:32583029,33518533 -g1,11695:32583029,33518533 -) -h1,11695:6630773,33715141:0,0,0 -(1,11698:6630773,43367654:25952256,9062689,0 -k1,11698:10523651,43367654:3892878 -h1,11697:10523651,43367654:0,0,0 -(1,11697:10523651,43367654:18166500,9062689,0 -(1,11697:10523651,43367654:18167381,9062712,0 -(1,11697:10523651,43367654:18167381,9062712,0 -(1,11697:10523651,43367654:0,9062712,0 -(1,11697:10523651,43367654:0,14155776,0 -(1,11697:10523651,43367654:28377088,14155776,0 -) -k1,11697:10523651,43367654:-28377088 -) -) -g1,11697:28691032,43367654 -) -) -) -g1,11698:28690151,43367654 -k1,11698:32583029,43367654:3892878 -) -v1,11706:6630773,44733430:0,393216,0 -] -(1,11724:32583029,45706769:0,0,0 -g1,11724:32583029,45706769 -) -) -] -(1,11724:6630773,47279633:25952256,0,0 -h1,11724:6630773,47279633:25952256,0,0 -) -] -h1,11724:4262630,4025873:0,0,0 -] -!18869 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11695:37855564,49800853:1179648,16384,0 +) +) +k1,11695:3078556,49800853:-34777008 +) +] +g1,11695:6630773,4812305 +k1,11695:25712890,4812305:17886740 +g1,11695:29057847,4812305 +g1,11695:29873114,4812305 +) +) +] +[1,11695:6630773,45706769:25952256,40108032,0 +(1,11695:6630773,45706769:25952256,40108032,0 +(1,11695:6630773,45706769:0,0,0 +g1,11695:6630773,45706769 +) +[1,11695:6630773,45706769:25952256,40108032,0 +(1,11648:6630773,14661426:25952256,9062689,0 +k1,11648:10523651,14661426:3892878 +h1,11647:10523651,14661426:0,0,0 +(1,11647:10523651,14661426:18166500,9062689,0 +(1,11647:10523651,14661426:18167381,9062712,0 +(1,11647:10523651,14661426:18167381,9062712,0 +(1,11647:10523651,14661426:0,9062712,0 +(1,11647:10523651,14661426:0,14155776,0 +(1,11647:10523651,14661426:28377088,14155776,0 +) +k1,11647:10523651,14661426:-28377088 +) +) +g1,11647:28691032,14661426 +) +) +) +g1,11648:28690151,14661426 +k1,11648:32583029,14661426:3892878 +) +(1,11656:6630773,15502914:25952256,513147,134348 +h1,11655:6630773,15502914:983040,0,0 +k1,11655:10452778,15502914:344665 +k1,11655:12576745,15502914:344665 +k1,11655:13940494,15502914:344664 +k1,11655:17382390,15502914:344665 +k1,11655:18386347,15502914:344665 +k1,11655:20338610,15502914:344665 +k1,11655:21296036,15502914:344664 +k1,11655:22659786,15502914:344665 +k1,11655:24429859,15502914:344665 +k1,11655:25433816,15502914:344665 +k1,11655:30386316,15502914:344664 +k1,11655:31835263,15502914:344665 +k1,11655:32583029,15502914:0 +) +(1,11656:6630773,16344402:25952256,513147,134348 +k1,11655:9325061,16344402:167220 +k1,11655:10151573,16344402:167220 +k1,11655:11004955,16344402:167220 +k1,11655:12672949,16344402:167220 +k1,11655:14867198,16344402:167220 +k1,11655:17638163,16344402:167220 +k1,11655:18824468,16344402:167220 +k1,11655:21380475,16344402:167220 +k1,11655:23809999,16344402:167221 +k1,11655:24464775,16344402:167188 +k1,11655:27557522,16344402:167220 +k1,11655:29711138,16344402:167220 +k1,11655:30982640,16344402:167220 +k1,11656:32583029,16344402:0 +) +(1,11656:6630773,17185890:25952256,513147,134348 +k1,11655:8051997,17185890:163588 +k1,11655:9234669,17185890:163587 +k1,11655:11663837,17185890:163588 +k1,11655:13206958,17185890:163588 +k1,11655:15530612,17185890:163587 +k1,11655:16890887,17185890:163588 +k1,11655:18331772,17185890:163588 +k1,11655:19026857,17185890:163588 +k1,11655:20209529,17185890:163587 +k1,11655:22200261,17185890:163588 +k1,11655:23382934,17185890:163588 +k1,11655:27618273,17185890:163587 +k1,11655:28773421,17185890:163588 +k1,11655:32583029,17185890:0 +) +(1,11656:6630773,18027378:25952256,513147,126483 +k1,11655:7479682,18027378:232871 +k1,11655:8731638,18027378:232871 +k1,11655:10617982,18027378:232871 +k1,11655:12262499,18027378:232871 +k1,11655:13514456,18027378:232872 +k1,11655:15562019,18027378:232871 +k1,11655:16454182,18027378:232871 +k1,11655:17706138,18027378:232871 +k1,11655:19337547,18027378:232871 +k1,11655:20561978,18027378:232871 +k1,11655:21813934,18027378:232871 +k1,11655:23700278,18027378:232871 +k1,11655:25124594,18027378:232871 +k1,11655:26123582,18027378:232872 +k1,11655:27582632,18027378:232871 +k1,11655:28347000,18027378:232871 +k1,11655:29598956,18027378:232871 +k1,11655:31658971,18027378:232871 +k1,11655:32583029,18027378:0 +) +(1,11656:6630773,18868866:25952256,513147,126483 +k1,11655:7833510,18868866:183652 +k1,11655:9892802,18868866:183652 +k1,11655:11682741,18868866:183652 +k1,11655:13196774,18868866:183652 +k1,11655:15077153,18868866:183652 +k1,11655:18129971,18868866:183652 +k1,11655:19305182,18868866:183651 +k1,11655:22363898,18868866:183652 +k1,11655:23309078,18868866:183652 +k1,11655:26255073,18868866:183652 +k1,11655:28755423,18868866:183652 +k1,11655:30043357,18868866:183652 +k1,11655:30974775,18868866:183652 +k1,11656:32583029,18868866:0 +) +(1,11656:6630773,19710354:25952256,513147,126483 +g1,11655:8748896,19710354 +k1,11656:32583029,19710354:20898120 +g1,11656:32583029,19710354 +) +v1,11658:6630773,20900820:0,393216,0 +(1,11665:6630773,23182993:25952256,2675389,196608 +g1,11665:6630773,23182993 +g1,11665:6630773,23182993 +g1,11665:6434165,23182993 +(1,11665:6434165,23182993:0,2675389,196608 +r1,11665:32779637,23182993:26345472,2871997,196608 +k1,11665:6434165,23182993:-26345472 +) +(1,11665:6434165,23182993:26345472,2675389,196608 +[1,11665:6630773,23182993:25952256,2478781,0 +(1,11660:6630773,21108438:25952256,404226,107478 +(1,11659:6630773,21108438:0,0,0 +g1,11659:6630773,21108438 +g1,11659:6630773,21108438 +g1,11659:6303093,21108438 +(1,11659:6303093,21108438:0,0,0 +) +g1,11659:6630773,21108438 +) +k1,11660:6630773,21108438:0 +g1,11660:10424522,21108438 +g1,11660:11056814,21108438 +k1,11660:11056814,21108438:0 +h1,11660:13269834,21108438:0,0,0 +k1,11660:32583030,21108438:19313196 +g1,11660:32583030,21108438 +) +(1,11661:6630773,21774616:25952256,404226,107478 +h1,11661:6630773,21774616:0,0,0 +g1,11661:6946919,21774616 +g1,11661:7263065,21774616 +g1,11661:7579211,21774616 +g1,11661:7895357,21774616 +g1,11661:8211503,21774616 +g1,11661:8527649,21774616 +g1,11661:8843795,21774616 +g1,11661:10740670,21774616 +g1,11661:11372962,21774616 +g1,11661:13269837,21774616 +g1,11661:13902129,21774616 +g1,11661:14534421,21774616 +g1,11661:16431295,21774616 +h1,11661:16747441,21774616:0,0,0 +k1,11661:32583029,21774616:15835588 +g1,11661:32583029,21774616 +) +(1,11662:6630773,22440794:25952256,404226,107478 +h1,11662:6630773,22440794:0,0,0 +g1,11662:6946919,22440794 +g1,11662:7263065,22440794 +g1,11662:11372959,22440794 +h1,11662:11689105,22440794:0,0,0 +k1,11662:32583029,22440794:20893924 +g1,11662:32583029,22440794 +) +(1,11663:6630773,23106972:25952256,404226,76021 +h1,11663:6630773,23106972:0,0,0 +g1,11663:6946919,23106972 +g1,11663:7263065,23106972 +k1,11663:7263065,23106972:0 +h1,11663:12005250,23106972:0,0,0 +k1,11663:32583030,23106972:20577780 +g1,11663:32583030,23106972 +) +] +) +g1,11665:32583029,23182993 +g1,11665:6630773,23182993 +g1,11665:6630773,23182993 +g1,11665:32583029,23182993 +g1,11665:32583029,23182993 +) +h1,11665:6630773,23379601:0,0,0 +(1,11668:6630773,33032114:25952256,9062689,0 +k1,11668:10523651,33032114:3892878 +h1,11667:10523651,33032114:0,0,0 +(1,11667:10523651,33032114:18166500,9062689,0 +(1,11667:10523651,33032114:18167381,9062712,0 +(1,11667:10523651,33032114:18167381,9062712,0 +(1,11667:10523651,33032114:0,9062712,0 +(1,11667:10523651,33032114:0,14155776,0 +(1,11667:10523651,33032114:28377088,14155776,0 +) +k1,11667:10523651,33032114:-28377088 +) +) +g1,11667:28691032,33032114 +) +) +) +g1,11668:28690151,33032114 +k1,11668:32583029,33032114:3892878 +) +(1,11676:6630773,33873602:25952256,513147,126483 +h1,11675:6630773,33873602:983040,0,0 +k1,11675:8753091,33873602:185729 +k1,11675:10043102,33873602:185729 +k1,11675:11514647,33873602:185729 +k1,11675:14345408,33873602:185728 +k1,11675:15550222,33873602:185729 +k1,11675:17169879,33873602:185729 +k1,11675:18686644,33873602:185729 +k1,11675:20141150,33873602:185729 +k1,11675:21518324,33873602:185729 +k1,11675:23035089,33873602:185729 +k1,11675:25402512,33873602:185729 +k1,11675:26969084,33873602:185728 +k1,11675:29264417,33873602:185729 +k1,11675:30469231,33873602:185729 +k1,11675:31923737,33873602:185729 +k1,11675:32583029,33873602:0 +) +(1,11676:6630773,34715090:25952256,513147,102891 +k1,11675:7588213,34715090:191324 +k1,11675:9005716,34715090:191324 +k1,11675:12239877,34715090:191324 +k1,11675:13117363,34715090:191324 +k1,11675:14817326,34715090:191324 +k1,11675:16277427,34715090:191324 +k1,11675:17000248,34715090:191324 +k1,11675:19573150,34715090:191324 +k1,11675:22123770,34715090:191324 +k1,11675:22966522,34715090:191324 +k1,11675:24176931,34715090:191324 +k1,11675:25802183,34715090:191324 +k1,11675:27435954,34715090:191324 +k1,11675:29115601,34715090:191324 +k1,11675:30175277,34715090:191324 +k1,11675:31563944,34715090:191324 +k1,11675:32583029,34715090:0 +) +(1,11676:6630773,35556578:25952256,513147,126483 +k1,11675:8492323,35556578:208077 +k1,11675:10686796,35556578:208077 +k1,11675:11581035,35556578:208077 +k1,11675:13302337,35556578:208076 +k1,11675:14126452,35556578:208077 +k1,11675:15353614,35556578:208077 +k1,11675:18316169,35556578:208077 +k1,11675:21359333,35556578:208077 +k1,11675:22639579,35556578:208077 +k1,11675:24241607,35556578:208077 +k1,11675:24805543,35556578:208076 +k1,11675:27775963,35556578:208077 +k1,11675:29417968,35556578:208077 +k1,11675:31314252,35556578:208077 +k1,11675:32583029,35556578:0 +) +(1,11676:6630773,36398066:25952256,513147,7863 +g1,11675:7777653,36398066 +k1,11676:32583030,36398066:23405528 +g1,11676:32583030,36398066 +) +v1,11678:6630773,37588532:0,393216,0 +(1,11685:6630773,39895871:25952256,2700555,196608 +g1,11685:6630773,39895871 +g1,11685:6630773,39895871 +g1,11685:6434165,39895871 +(1,11685:6434165,39895871:0,2700555,196608 +r1,11685:32779637,39895871:26345472,2897163,196608 +k1,11685:6434165,39895871:-26345472 +) +(1,11685:6434165,39895871:26345472,2700555,196608 +[1,11685:6630773,39895871:25952256,2503947,0 +(1,11680:6630773,37796150:25952256,404226,107478 +(1,11679:6630773,37796150:0,0,0 +g1,11679:6630773,37796150 +g1,11679:6630773,37796150 +g1,11679:6303093,37796150 +(1,11679:6303093,37796150:0,0,0 +) +g1,11679:6630773,37796150 +) +k1,11680:6630773,37796150:0 +g1,11680:10424522,37796150 +g1,11680:11056814,37796150 +k1,11680:11056814,37796150:0 +h1,11680:13269834,37796150:0,0,0 +k1,11680:32583030,37796150:19313196 +g1,11680:32583030,37796150 +) +(1,11681:6630773,38462328:25952256,404226,107478 +h1,11681:6630773,38462328:0,0,0 +g1,11681:6946919,38462328 +g1,11681:7263065,38462328 +g1,11681:7579211,38462328 +g1,11681:7895357,38462328 +g1,11681:8211503,38462328 +g1,11681:8527649,38462328 +g1,11681:8843795,38462328 +g1,11681:10740670,38462328 +g1,11681:11372962,38462328 +g1,11681:13269837,38462328 +g1,11681:13902129,38462328 +g1,11681:14534421,38462328 +g1,11681:16431295,38462328 +h1,11681:16747441,38462328:0,0,0 +k1,11681:32583029,38462328:15835588 +g1,11681:32583029,38462328 +) +(1,11682:6630773,39128506:25952256,404226,107478 +h1,11682:6630773,39128506:0,0,0 +g1,11682:6946919,39128506 +g1,11682:7263065,39128506 +g1,11682:11372959,39128506 +h1,11682:11689105,39128506:0,0,0 +k1,11682:32583029,39128506:20893924 +g1,11682:32583029,39128506 +) +(1,11683:6630773,39794684:25952256,410518,101187 +h1,11683:6630773,39794684:0,0,0 +g1,11683:6946919,39794684 +g1,11683:7263065,39794684 +g1,11683:14850562,39794684 +g1,11683:15482854,39794684 +g1,11683:16747437,39794684 +g1,11683:20541185,39794684 +g1,11683:21173477,39794684 +h1,11683:23702643,39794684:0,0,0 +k1,11683:32583029,39794684:8880386 +g1,11683:32583029,39794684 +) +] +) +g1,11685:32583029,39895871 +g1,11685:6630773,39895871 +g1,11685:6630773,39895871 +g1,11685:32583029,39895871 +g1,11685:32583029,39895871 +) +h1,11685:6630773,40092479:0,0,0 +] +(1,11695:32583029,45706769:0,0,0 +g1,11695:32583029,45706769 +) +) +] +(1,11695:6630773,47279633:25952256,0,0 +h1,11695:6630773,47279633:25952256,0,0 +) +] +h1,11695:4262630,4025873:0,0,0 +] +!13581 }221 -Input:1486:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1487:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1488:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1489:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1490:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1491:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1492:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1493:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:1467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 {222 -[1,11760:4262630,47279633:28320399,43253760,0 -(1,11760:4262630,4025873:0,0,0 -[1,11760:-473657,4025873:25952256,0,0 -(1,11760:-473657,-710414:25952256,0,0 -h1,11760:-473657,-710414:0,0,0 -(1,11760:-473657,-710414:0,0,0 -(1,11760:-473657,-710414:0,0,0 -g1,11760:-473657,-710414 -(1,11760:-473657,-710414:65781,0,65781 -g1,11760:-407876,-710414 -[1,11760:-407876,-644633:0,0,0 +[1,11737:4262630,47279633:28320399,43253760,0 +(1,11737:4262630,4025873:0,0,0 +[1,11737:-473657,4025873:25952256,0,0 +(1,11737:-473657,-710414:25952256,0,0 +h1,11737:-473657,-710414:0,0,0 +(1,11737:-473657,-710414:0,0,0 +(1,11737:-473657,-710414:0,0,0 +g1,11737:-473657,-710414 +(1,11737:-473657,-710414:65781,0,65781 +g1,11737:-407876,-710414 +[1,11737:-407876,-644633:0,0,0 ] ) -k1,11760:-473657,-710414:-65781 +k1,11737:-473657,-710414:-65781 ) ) -k1,11760:25478599,-710414:25952256 -g1,11760:25478599,-710414 +k1,11737:25478599,-710414:25952256 +g1,11737:25478599,-710414 ) ] ) -[1,11760:6630773,47279633:25952256,43253760,0 -[1,11760:6630773,4812305:25952256,786432,0 -(1,11760:6630773,4812305:25952256,513147,134348 -(1,11760:6630773,4812305:25952256,513147,134348 -g1,11760:3078558,4812305 -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,2439708:0,1703936,0 -k1,11760:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11760:2537886,2439708:1179648,16384,0 +[1,11737:6630773,47279633:25952256,43253760,0 +[1,11737:6630773,4812305:25952256,786432,0 +(1,11737:6630773,4812305:25952256,513147,134348 +(1,11737:6630773,4812305:25952256,513147,134348 +g1,11737:3078558,4812305 +[1,11737:3078558,4812305:0,0,0 +(1,11737:3078558,2439708:0,1703936,0 +k1,11737:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11737:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11760:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11737:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,2439708:0,1703936,0 -g1,11760:29030814,2439708 -g1,11760:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11760:36151628,1915420:16384,1179648,0 +[1,11737:3078558,4812305:0,0,0 +(1,11737:3078558,2439708:0,1703936,0 +g1,11737:29030814,2439708 +g1,11737:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11737:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11760:37855564,2439708:1179648,16384,0 -) -) -k1,11760:3078556,2439708:-34777008 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11737:37855564,2439708:1179648,16384,0 ) -] -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,49800853:0,16384,2228224 -k1,11760:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11760:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11760:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,11760:3078558,4812305:0,0,0 -(1,11760:3078558,49800853:0,16384,2228224 -g1,11760:29030814,49800853 -g1,11760:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11760:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11760:37855564,49800853:1179648,16384,0 -) -) -k1,11760:3078556,49800853:-34777008 -) -] -g1,11760:6630773,4812305 -g1,11760:6630773,4812305 -g1,11760:10697281,4812305 -g1,11760:11496164,4812305 -g1,11760:12681054,4812305 -g1,11760:15925086,4812305 -g1,11760:16740353,4812305 -g1,11760:19649496,4812305 -k1,11760:31387652,4812305:11738156 -) -) -] -[1,11760:6630773,45706769:25952256,40108032,0 -(1,11760:6630773,45706769:25952256,40108032,0 -(1,11760:6630773,45706769:0,0,0 -g1,11760:6630773,45706769 -) -[1,11760:6630773,45706769:25952256,40108032,0 -v1,11724:6630773,6254097:0,393216,0 -(1,11724:6630773,24138999:25952256,18278118,616038 -g1,11724:6630773,24138999 -(1,11724:6630773,24138999:25952256,18278118,616038 -(1,11724:6630773,24755037:25952256,18894156,0 -[1,11724:6630773,24755037:25952256,18894156,0 -(1,11724:6630773,24728823:25952256,18841728,0 -r1,11724:6656987,24728823:26214,18841728,0 -[1,11724:6656987,24728823:25899828,18841728,0 -(1,11724:6656987,24138999:25899828,17662080,0 -[1,11724:7246811,24138999:24720180,17662080,0 -(1,11707:7246811,7499265:24720180,1022346,126483 -k1,11706:8776494,7499265:274170 -k1,11706:9868552,7499265:274169 -k1,11706:13291727,7499265:274170 -k1,11706:14181934,7499265:274169 -k1,11706:15044617,7499265:274170 -k1,11706:17016824,7499265:274169 -k1,11706:17646854,7499265:274170 -k1,11706:19601366,7499265:274169 -k1,11706:20407033,7499265:274170 -k1,11706:23693892,7499265:274169 -k1,11706:25824042,7499265:274170 -k1,11706:26454071,7499265:274169 -k1,11706:28408584,7499265:274170 -k1,11706:30720924,7499265:274170 -k1,11706:31611131,7499265:274169 -k1,11706:31966991,7499265:0 -) -(1,11707:7246811,8340753:24720180,505283,134348 -k1,11706:9941816,8340753:183665 -k1,11706:10808365,8340753:183664 -k1,11706:14178390,8340753:183665 -k1,11706:17362948,8340753:183664 -k1,11706:17902473,8340753:183665 -k1,11706:20598132,8340753:183664 -k1,11706:22462140,8340753:183665 -k1,11706:23750087,8340753:183665 -k1,11706:24681517,8340753:183664 -k1,11706:27070469,8340753:183665 -k1,11706:27940295,8340753:183664 -k1,11706:28894663,8340753:183665 -k1,11706:31966991,8340753:0 -) -(1,11707:7246811,9182241:24720180,505283,126483 -k1,11706:8119270,9182241:221031 -k1,11706:9088067,9182241:221031 -k1,11706:11894493,9182241:221031 -k1,11706:12766952,9182241:221031 -k1,11706:13758686,9182241:221031 -k1,11706:16906554,9182241:221031 -k1,11706:17755420,9182241:221031 -k1,11706:19678422,9182241:221032 -k1,11706:22028062,9182241:221031 -k1,11706:23268178,9182241:221031 -k1,11706:25499854,9182241:221031 -k1,11706:26372313,9182241:221031 -k1,11706:27341110,9182241:221031 -k1,11706:29864421,9182241:221031 -k1,11706:30900720,9182241:221031 -k1,11706:31966991,9182241:0 -) -(1,11707:7246811,10023729:24720180,513147,126483 -k1,11706:9052188,10023729:275111 -k1,11706:9978726,10023729:275110 -k1,11706:11001603,10023729:275111 -k1,11706:13314884,10023729:275111 -k1,11706:14276157,10023729:275111 -k1,11706:17392908,10023729:275110 -k1,11706:18557998,10023729:275111 -k1,11706:21753393,10023729:275111 -k1,11706:22644541,10023729:275110 -k1,11706:23938737,10023729:275111 -k1,11706:25603211,10023729:275111 -k1,11706:27754618,10023729:275111 -k1,11706:30235015,10023729:275110 -k1,11706:31196288,10023729:275111 -k1,11706:31966991,10023729:0 -) -(1,11707:7246811,10865217:24720180,513147,134348 -k1,11706:10512072,10865217:192933 -k1,11706:11356434,10865217:192934 -k1,11706:14830099,10865217:192933 -(1,11706:14830099,10865217:0,452978,115847 -r1,11724:16243500,10865217:1413401,568825,115847 -k1,11706:14830099,10865217:-1413401 -) -(1,11706:14830099,10865217:1413401,452978,115847 -k1,11706:14830099,10865217:3277 -h1,11706:16240223,10865217:0,411205,112570 -) -k1,11706:16610103,10865217:192933 -k1,11706:18183225,10865217:192934 -k1,11706:19480440,10865217:192933 -k1,11706:20959190,10865217:192934 -k1,11706:21899889,10865217:192933 -k1,11706:25301465,10865217:192933 -k1,11706:27062020,10865217:192934 -k1,11706:28951680,10865217:192933 -k1,11706:31966991,10865217:0 -) -(1,11707:7246811,11706705:24720180,505283,134348 -k1,11706:8929894,11706705:194760 -k1,11706:9993007,11706705:194761 -k1,11706:11465064,11706705:194760 -k1,11706:16969552,11706705:194761 -(1,11706:16969552,11706705:0,414482,122846 -r1,11724:18031241,11706705:1061689,537328,122846 -k1,11706:16969552,11706705:-1061689 -) -(1,11706:16969552,11706705:1061689,414482,122846 -k1,11706:16969552,11706705:3277 -h1,11706:18027964,11706705:0,411205,112570 -) -k1,11706:18226001,11706705:194760 -k1,11706:19230132,11706705:194761 -k1,11706:20443977,11706705:194760 -k1,11706:22738512,11706705:194761 -k1,11706:27187214,11706705:194760 -k1,11706:28438415,11706705:194761 -k1,11706:31205463,11706705:194760 -k1,11706:31966991,11706705:0 -) -(1,11707:7246811,12548193:24720180,505283,134348 -g1,11706:10037334,12548193 -(1,11706:10037334,12548193:0,452978,115847 -r1,11724:11450735,12548193:1413401,568825,115847 -k1,11706:10037334,12548193:-1413401 -) -(1,11706:10037334,12548193:1413401,452978,115847 -k1,11706:10037334,12548193:3277 -h1,11706:11447458,12548193:0,411205,112570 -) -g1,11706:11649964,12548193 -g1,11706:12610721,12548193 -(1,11706:12610721,12548193:0,452978,115847 -r1,11724:13672410,12548193:1061689,568825,115847 -k1,11706:12610721,12548193:-1061689 -) -(1,11706:12610721,12548193:1061689,452978,115847 -k1,11706:12610721,12548193:3277 -h1,11706:13669133,12548193:0,411205,112570 -) -g1,11706:13871639,12548193 -g1,11706:16080857,12548193 -g1,11706:17299171,12548193 -g1,11706:18598094,12548193 -g1,11706:19448751,12548193 -(1,11706:19448751,12548193:0,452978,115847 -r1,11724:21213864,12548193:1765113,568825,115847 -k1,11706:19448751,12548193:-1765113 -) -(1,11706:19448751,12548193:1765113,452978,115847 -k1,11706:19448751,12548193:3277 -h1,11706:21210587,12548193:0,411205,112570 -) -k1,11707:31966991,12548193:10579457 -g1,11707:31966991,12548193 -) -v1,11709:7246811,13738659:0,393216,0 -(1,11714:7246811,14719933:24720180,1374490,196608 -g1,11714:7246811,14719933 -g1,11714:7246811,14719933 -g1,11714:7050203,14719933 -(1,11714:7050203,14719933:0,1374490,196608 -r1,11724:32163599,14719933:25113396,1571098,196608 -k1,11714:7050203,14719933:-25113396 -) -(1,11714:7050203,14719933:25113396,1374490,196608 -[1,11714:7246811,14719933:24720180,1177882,0 -(1,11711:7246811,13946277:24720180,404226,107478 -(1,11710:7246811,13946277:0,0,0 -g1,11710:7246811,13946277 -g1,11710:7246811,13946277 -g1,11710:6919131,13946277 -(1,11710:6919131,13946277:0,0,0 -) -g1,11710:7246811,13946277 -) -k1,11711:7246811,13946277:0 -g1,11711:11040560,13946277 -g1,11711:11672852,13946277 -g1,11711:14202018,13946277 -g1,11711:16098893,13946277 -g1,11711:16731185,13946277 -g1,11711:18311914,13946277 -g1,11711:18944206,13946277 -g1,11711:20524935,13946277 -g1,11711:21157227,13946277 -g1,11711:21789519,13946277 -g1,11711:23686393,13946277 -h1,11711:24002539,13946277:0,0,0 -k1,11711:31966991,13946277:7964452 -g1,11711:31966991,13946277 -) -(1,11712:7246811,14612455:24720180,404226,107478 -h1,11712:7246811,14612455:0,0,0 -g1,11712:7562957,14612455 -g1,11712:7879103,14612455 -k1,11712:7879103,14612455:0 -h1,11712:11672851,14612455:0,0,0 -k1,11712:31966991,14612455:20294140 -g1,11712:31966991,14612455 -) -] -) -g1,11714:31966991,14719933 -g1,11714:7246811,14719933 -g1,11714:7246811,14719933 -g1,11714:31966991,14719933 -g1,11714:31966991,14719933 -) -h1,11714:7246811,14916541:0,0,0 -(1,11717:7246811,24138999:24720180,8632634,0 -k1,11717:10954876,24138999:3708065 -h1,11716:10954876,24138999:0,0,0 -(1,11716:10954876,24138999:17304050,8632634,0 -(1,11716:10954876,24138999:17305278,8632656,0 -(1,11716:10954876,24138999:17305278,8632656,0 -(1,11716:10954876,24138999:0,8632656,0 -(1,11716:10954876,24138999:0,14155776,0 -(1,11716:10954876,24138999:28377088,14155776,0 -) -k1,11716:10954876,24138999:-28377088 -) -) -g1,11716:28260154,24138999 -) -) -) -g1,11717:28258926,24138999 -k1,11717:31966991,24138999:3708065 -) -] -) -] -r1,11724:32583029,24728823:26214,18841728,0 -) -] -) -) -g1,11724:32583029,24138999 -) -h1,11724:6630773,24755037:0,0,0 -(1,11728:6630773,26091389:25952256,513147,134348 -h1,11726:6630773,26091389:983040,0,0 -k1,11726:9335384,26091389:246356 -k1,11726:10241031,26091389:246355 -k1,11726:11506472,26091389:246356 -k1,11726:14621994,26091389:246356 -k1,11726:15527641,26091389:246355 -k1,11726:16793082,26091389:246356 -k1,11726:19942027,26091389:246355 -k1,11726:23893789,26091389:246356 -k1,11726:25995469,26091389:246356 -k1,11726:27342829,26091389:246355 -k1,11726:29820686,26091389:246356 -k1,11726:32583029,26091389:0 -) -(1,11728:6630773,26932877:25952256,513147,134348 -k1,11726:9982743,26932877:224592 -k1,11726:11398779,26932877:224591 -k1,11726:13375148,26932877:224592 -k1,11726:14259032,26932877:224592 -k1,11726:15502709,26932877:224592 -k1,11726:18920214,26932877:224591 -k1,11726:22584791,26932877:224592 -k1,11726:24000828,26932877:224592 -k1,11726:26907808,26932877:224591 -k1,11726:29180400,26932877:224592 -k1,11726:32583029,26932877:0 -) -(1,11728:6630773,27774365:25952256,513147,126483 -k1,11726:8198344,27774365:283065 -k1,11726:9585691,27774365:283065 -k1,11726:10616522,27774365:283065 -k1,11726:12412813,27774365:283065 -k1,11726:13347306,27774365:283065 -k1,11726:15892674,27774365:283065 -k1,11726:17684377,27774365:283064 -k1,11726:20900833,27774365:283065 -k1,11726:23016285,27774365:283065 -k1,11726:24290910,27774365:283065 -k1,11726:25859791,27774365:283065 -k1,11726:27793053,27774365:283065 -k1,11726:31140582,27774365:283065 -k1,11726:32583029,27774365:0 -) -(1,11728:6630773,28615853:25952256,505283,134348 -k1,11726:8542731,28615853:168045 -k1,11726:10786301,28615853:168045 -k1,11726:12983341,28615853:168045 -k1,11726:15766274,28615853:168046 -k1,11726:17323682,28615853:168045 -k1,11726:19781555,28615853:168045 -k1,11726:20635762,28615853:168045 -k1,11726:22082414,28615853:168045 -k1,11726:22936621,28615853:168045 -k1,11726:25775914,28615853:168046 -k1,11726:29081823,28615853:168045 -k1,11726:30354150,28615853:168045 -k1,11726:32583029,28615853:0 -) -(1,11728:6630773,29457341:25952256,513147,134348 -k1,11726:8864240,29457341:223478 -k1,11726:9443577,29457341:223477 -k1,11726:11540074,29457341:223478 -k1,11726:13789270,29457341:223478 -k1,11726:16145944,29457341:223477 -k1,11726:19234656,29457341:223478 -k1,11726:20649579,29457341:223478 -k1,11726:22253900,29457341:223477 -k1,11726:23973565,29457341:223478 -k1,11726:25301325,29457341:223478 -k1,11726:27485639,29457341:223477 -k1,11726:28992312,29457341:223478 -k1,11726:32583029,29457341:0 -) -(1,11728:6630773,30298829:25952256,505283,126483 -k1,11726:9647788,30298829:183894 -k1,11726:13476139,30298829:183894 -k1,11726:14851478,30298829:183894 -k1,11726:16502068,30298829:183894 -k1,11726:20119393,30298829:183894 -k1,11726:21586482,30298829:183894 -k1,11726:24985572,30298829:183894 -k1,11726:28374177,30298829:183894 -k1,11726:31427237,30298829:183894 -k1,11726:32227169,30298829:183894 -k1,11726:32583029,30298829:0 -) -(1,11728:6630773,31140317:25952256,513147,126483 -k1,11726:8772817,31140317:155648 -k1,11726:10032747,31140317:155648 -k1,11726:11474210,31140317:155647 -k1,11726:12377624,31140317:155648 -k1,11726:15368359,31140317:155648 -k1,11726:16715452,31140317:155648 -k1,11726:18154295,31140317:155648 -k1,11726:21235470,31140317:155648 -k1,11726:23707815,31140317:155647 -k1,11726:26387254,31140317:155648 -k1,11726:28904820,31140317:155648 -k1,11726:30251913,31140317:155648 -k1,11726:32583029,31140317:0 -) -(1,11728:6630773,31981805:25952256,513147,134348 -k1,11726:7759958,31981805:175636 -k1,11726:9068057,31981805:175637 -k1,11726:11912974,31981805:175636 -k1,11726:12704649,31981805:175637 -k1,11726:13899370,31981805:175636 -k1,11726:17292825,31981805:175637 -k1,11726:20077449,31981805:175636 -k1,11726:20912377,31981805:175636 -k1,11726:22291255,31981805:175637 -k1,11726:24884514,31981805:175636 -k1,11726:26390532,31981805:175637 -k1,11726:27217596,31981805:175636 -k1,11726:28485718,31981805:175637 -k1,11726:29680439,31981805:175636 -k1,11726:32583029,31981805:0 -) -(1,11728:6630773,32823293:25952256,513147,134348 -k1,11726:7578161,32823293:288096 -k1,11726:10585346,32823293:288096 -k1,11726:11524871,32823293:288097 -k1,11726:14836798,32823293:288096 -k1,11726:16826864,32823293:288096 -k1,11726:18831348,32823293:288096 -k1,11726:19778736,32823293:288096 -k1,11726:23016608,32823293:288097 -k1,11726:27664159,32823293:288096 -k1,11726:30932832,32823293:288096 -k1,11726:32583029,32823293:0 -) -(1,11728:6630773,33664781:25952256,505283,126483 -g1,11726:9516323,33664781 -g1,11726:11323150,33664781 -g1,11726:12964826,33664781 -g1,11726:14907968,33664781 -g1,11726:15723235,33664781 -g1,11726:16941549,33664781 -g1,11726:20132497,33664781 -g1,11726:22360721,33664781 -k1,11728:32583029,33664781:10222308 -g1,11728:32583029,33664781 -) -(1,11729:6630773,35756041:25952256,555811,147783 -(1,11729:6630773,35756041:2450326,534184,12975 -g1,11729:6630773,35756041 -g1,11729:9081099,35756041 -) -g1,11729:11085911,35756041 -g1,11729:12089399,35756041 -g1,11729:12811737,35756041 -k1,11729:32583028,35756041:17155880 -g1,11729:32583028,35756041 -) -(1,11732:6630773,36990745:25952256,505283,134348 -k1,11731:7772309,36990745:187987 -k1,11731:9064579,36990745:187988 -k1,11731:12845250,36990745:187987 -k1,11731:15058955,36990745:187987 -k1,11731:17536771,36990745:187988 -k1,11731:18916203,36990745:187987 -k1,11731:20612829,36990745:187987 -k1,11731:24728389,36990745:187987 -k1,11731:25532415,36990745:187988 -k1,11731:26739487,36990745:187987 -k1,11731:28580947,36990745:187987 -k1,11731:30006910,36990745:187988 -k1,11731:30881059,36990745:187987 -k1,11732:32583029,36990745:0 -) -(1,11732:6630773,37832233:25952256,513147,134348 -k1,11731:7277885,37832233:232269 -k1,11731:9973685,37832233:232302 -k1,11731:11159537,37832233:232303 -k1,11731:12496121,37832233:232302 -k1,11731:15139493,37832233:232302 -k1,11731:16181166,37832233:232303 -k1,11731:18052523,37832233:232302 -k1,11731:20020218,37832233:232302 -k1,11731:21271606,37832233:232303 -k1,11731:24580823,37832233:232302 -k1,11731:26004570,37832233:232302 -k1,11731:29021498,37832233:232303 -k1,11731:31635378,37832233:232302 -k1,11731:32583029,37832233:0 -) -(1,11732:6630773,38673721:25952256,505283,134348 -g1,11731:7849087,38673721 -(1,11731:7849087,38673721:0,452978,122846 -r1,11731:9262488,38673721:1413401,575824,122846 -k1,11731:7849087,38673721:-1413401 -) -(1,11731:7849087,38673721:1413401,452978,122846 -k1,11731:7849087,38673721:3277 -h1,11731:9259211,38673721:0,411205,112570 -) -g1,11731:9461717,38673721 -g1,11731:11216115,38673721 -g1,11731:12795532,38673721 -g1,11731:15131235,38673721 -g1,11731:16155562,38673721 -g1,11731:17308340,38673721 -g1,11731:18995892,38673721 -g1,11731:19956649,38673721 -g1,11731:22189460,38673721 -g1,11731:22744549,38673721 -g1,11731:24969496,38673721 -g1,11731:26436191,38673721 -g1,11731:26991280,38673721 -k1,11732:32583029,38673721:2906739 -g1,11732:32583029,38673721 -) -v1,11734:6630773,39834763:0,393216,0 -(1,11740:6630773,41482215:25952256,2040668,196608 -g1,11740:6630773,41482215 -g1,11740:6630773,41482215 -g1,11740:6434165,41482215 -(1,11740:6434165,41482215:0,2040668,196608 -r1,11740:32779637,41482215:26345472,2237276,196608 -k1,11740:6434165,41482215:-26345472 -) -(1,11740:6434165,41482215:26345472,2040668,196608 -[1,11740:6630773,41482215:25952256,1844060,0 -(1,11736:6630773,40042381:25952256,404226,107478 -(1,11735:6630773,40042381:0,0,0 -g1,11735:6630773,40042381 -g1,11735:6630773,40042381 -g1,11735:6303093,40042381 -(1,11735:6303093,40042381:0,0,0 -) -g1,11735:6630773,40042381 -) -g1,11736:7263065,40042381 -g1,11736:8211503,40042381 -g1,11736:12005252,40042381 -g1,11736:12637544,40042381 -k1,11736:12637544,40042381:0 -h1,11736:14850564,40042381:0,0,0 -k1,11736:32583028,40042381:17732464 -g1,11736:32583028,40042381 -) -(1,11737:6630773,40708559:25952256,404226,107478 -h1,11737:6630773,40708559:0,0,0 -g1,11737:6946919,40708559 -g1,11737:7263065,40708559 -g1,11737:7579211,40708559 -g1,11737:7895357,40708559 -g1,11737:8211503,40708559 -g1,11737:8527649,40708559 -g1,11737:8843795,40708559 -g1,11737:10740670,40708559 -g1,11737:11372962,40708559 -g1,11737:13269837,40708559 -g1,11737:13902129,40708559 -g1,11737:14534421,40708559 -g1,11737:16431295,40708559 -h1,11737:16747441,40708559:0,0,0 -k1,11737:32583029,40708559:15835588 -g1,11737:32583029,40708559 -) -(1,11738:6630773,41374737:25952256,404226,107478 -h1,11738:6630773,41374737:0,0,0 -g1,11738:6946919,41374737 -g1,11738:7263065,41374737 -k1,11738:7263065,41374737:0 -h1,11738:11056813,41374737:0,0,0 -k1,11738:32583029,41374737:21526216 -g1,11738:32583029,41374737 -) -] -) -g1,11740:32583029,41482215 -g1,11740:6630773,41482215 -g1,11740:6630773,41482215 -g1,11740:32583029,41482215 -g1,11740:32583029,41482215 -) -h1,11740:6630773,41678823:0,0,0 -v1,11744:6630773,43510039:0,393216,0 -(1,11760:6630773,45116945:25952256,2000122,589824 -g1,11760:6630773,45116945 -(1,11760:6630773,45116945:25952256,2000122,589824 -(1,11760:6630773,45706769:25952256,2589946,0 -[1,11760:6630773,45706769:25952256,2589946,0 -(1,11760:6630773,45706769:25952256,2563732,0 -r1,11760:6656987,45706769:26214,2563732,0 -[1,11760:6656987,45706769:25899828,2563732,0 -(1,11760:6656987,45116945:25899828,1384084,0 -[1,11760:7246811,45116945:24720180,1384084,0 -(1,11746:7246811,44818397:24720180,1085536,298548 -(1,11744:7246811,44818397:0,1085536,298548 -r1,11760:8753226,44818397:1506415,1384084,298548 -k1,11744:7246811,44818397:-1506415 -) -(1,11744:7246811,44818397:1506415,1085536,298548 -) -k1,11744:9005893,44818397:252667 -k1,11744:9005893,44818397:0 -k1,11745:10455247,44818397:252667 -k1,11745:14073843,44818397:252667 -k1,11745:14985802,44818397:252667 -k1,11745:16515767,44818397:252668 -k1,11745:20802830,44818397:252667 -k1,11745:22246942,44818397:252667 -k1,11745:25596840,44818397:252667 -k1,11745:26381004,44818397:252667 -k1,11745:29437301,44818397:252667 -k1,11746:31966991,44818397:0 -) -] -) -] -r1,11760:32583029,45706769:26214,2563732,0 -) -] -) -) -g1,11760:32583029,45116945 -) -] -(1,11760:32583029,45706769:0,0,0 -g1,11760:32583029,45706769 -) -) -] -(1,11760:6630773,47279633:25952256,0,0 -h1,11760:6630773,47279633:25952256,0,0 +k1,11737:3078556,2439708:-34777008 ) ] -h1,11760:4262630,4025873:0,0,0 -] -!20592 -}222 -Input:1494:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1495:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1496:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 -{223 -[1,11812:4262630,47279633:28320399,43253760,0 -(1,11812:4262630,4025873:0,0,0 -[1,11812:-473657,4025873:25952256,0,0 -(1,11812:-473657,-710414:25952256,0,0 -h1,11812:-473657,-710414:0,0,0 -(1,11812:-473657,-710414:0,0,0 -(1,11812:-473657,-710414:0,0,0 -g1,11812:-473657,-710414 -(1,11812:-473657,-710414:65781,0,65781 -g1,11812:-407876,-710414 -[1,11812:-407876,-644633:0,0,0 -] -) -k1,11812:-473657,-710414:-65781 +[1,11737:3078558,4812305:0,0,0 +(1,11737:3078558,49800853:0,16384,2228224 +k1,11737:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11737:2537886,49800853:1179648,16384,0 ) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11737:3078558,51504789:16384,1179648,0 ) -k1,11812:25478599,-710414:25952256 -g1,11812:25478599,-710414 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) -[1,11812:6630773,47279633:25952256,43253760,0 -[1,11812:6630773,4812305:25952256,786432,0 -(1,11812:6630773,4812305:25952256,513147,134348 -(1,11812:6630773,4812305:25952256,513147,134348 -g1,11812:3078558,4812305 -[1,11812:3078558,4812305:0,0,0 -(1,11812:3078558,2439708:0,1703936,0 -k1,11812:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11812:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11812:3078558,1915420:16384,1179648,0 -) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 ) ] +[1,11737:3078558,4812305:0,0,0 +(1,11737:3078558,49800853:0,16384,2228224 +g1,11737:29030814,49800853 +g1,11737:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11737:36151628,51504789:16384,1179648,0 ) -) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] -[1,11812:3078558,4812305:0,0,0 -(1,11812:3078558,2439708:0,1703936,0 -g1,11812:29030814,2439708 -g1,11812:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11812:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11737:37855564,49800853:1179648,16384,0 ) -] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11812:37855564,2439708:1179648,16384,0 +k1,11737:3078556,49800853:-34777008 ) +] +g1,11737:6630773,4812305 +g1,11737:6630773,4812305 +g1,11737:10697281,4812305 +g1,11737:11496164,4812305 +g1,11737:12681054,4812305 +g1,11737:15925086,4812305 +g1,11737:16740353,4812305 +g1,11737:19649496,4812305 +k1,11737:31387652,4812305:11738156 +) +) +] +[1,11737:6630773,45706769:25952256,40108032,0 +(1,11737:6630773,45706769:25952256,40108032,0 +(1,11737:6630773,45706769:0,0,0 +g1,11737:6630773,45706769 +) +[1,11737:6630773,45706769:25952256,40108032,0 +(1,11688:6630773,14661426:25952256,9062689,0 +k1,11688:10523651,14661426:3892878 +h1,11687:10523651,14661426:0,0,0 +(1,11687:10523651,14661426:18166500,9062689,0 +(1,11687:10523651,14661426:18167381,9062712,0 +(1,11687:10523651,14661426:18167381,9062712,0 +(1,11687:10523651,14661426:0,9062712,0 +(1,11687:10523651,14661426:0,14155776,0 +(1,11687:10523651,14661426:28377088,14155776,0 +) +k1,11687:10523651,14661426:-28377088 +) +) +g1,11687:28691032,14661426 +) +) +) +g1,11688:28690151,14661426 +k1,11688:32583029,14661426:3892878 +) +(1,11696:6630773,15502914:25952256,513147,126483 +h1,11695:6630773,15502914:983040,0,0 +k1,11695:9038172,15502914:227672 +k1,11695:11383312,15502914:227672 +k1,11695:12270276,15502914:227672 +k1,11695:13828329,15502914:227672 +k1,11695:14707429,15502914:227672 +k1,11695:15869644,15502914:227672 +k1,11695:17349709,15502914:227672 +k1,11695:19595234,15502914:227671 +k1,11695:21007142,15502914:227672 +k1,11695:24179347,15502914:227672 +k1,11695:25598464,15502914:227672 +k1,11695:27010372,15502914:227672 +k1,11695:29082227,15502914:227672 +k1,11695:30442361,15502914:227672 +k1,11695:31417799,15502914:227672 +k1,11696:32583029,15502914:0 +) +(1,11696:6630773,16344402:25952256,513147,126483 +k1,11695:9024756,16344402:216877 +k1,11695:9857670,16344402:216876 +k1,11695:11935114,16344402:216877 +k1,11695:12768028,16344402:216876 +k1,11695:15263592,16344402:216877 +h1,11695:16234180,16344402:0,0,0 +k1,11695:16624726,16344402:216876 +k1,11695:20386445,16344402:216877 +k1,11695:21471674,16344402:216877 +k1,11695:22821012,16344402:216876 +k1,11695:24130374,16344402:216877 +k1,11695:27042746,16344402:216876 +(1,11695:27042746,16344402:0,452978,115847 +r1,11695:29159571,16344402:2116825,568825,115847 +k1,11695:27042746,16344402:-2116825 +) +(1,11695:27042746,16344402:2116825,452978,115847 +k1,11695:27042746,16344402:3277 +h1,11695:29156294,16344402:0,411205,112570 +) +k1,11695:29376448,16344402:216877 +k1,11695:31478795,16344402:216876 +k1,11695:32227169,16344402:216877 +k1,11695:32583029,16344402:0 +) +(1,11696:6630773,17185890:25952256,513147,134348 +k1,11695:10705365,17185890:167991 +k1,11695:13568851,17185890:167990 +k1,11695:16408745,17185890:167991 +k1,11695:17321879,17185890:167990 +k1,11695:18141298,17185890:167991 +k1,11695:20110217,17185890:167990 +k1,11695:21212751,17185890:167991 +k1,11695:22399826,17185890:167990 +k1,11695:23835283,17185890:167991 +k1,11695:25194718,17185890:167990 +k1,11695:27775745,17185890:167991 +k1,11695:28603027,17185890:167990 +k1,11695:29126878,17185890:167991 +k1,11695:30572165,17185890:167990 +k1,11695:31931601,17185890:167991 +k1,11695:32583029,17185890:0 +) +(1,11696:6630773,18027378:25952256,513147,126483 +k1,11695:9102732,18027378:173611 +k1,11695:10295428,18027378:173611 +k1,11695:12734619,18027378:173611 +(1,11695:12734619,18027378:0,414482,115847 +r1,11695:14148020,18027378:1413401,530329,115847 +k1,11695:12734619,18027378:-1413401 +) +(1,11695:12734619,18027378:1413401,414482,115847 +k1,11695:12734619,18027378:3277 +h1,11695:14144743,18027378:0,411205,112570 +) +k1,11695:14321631,18027378:173611 +k1,11695:15154534,18027378:173611 +k1,11695:17230655,18027378:173611 +k1,11695:18917492,18027378:173611 +k1,11695:20038754,18027378:173611 +k1,11695:21464758,18027378:173611 +k1,11695:24899440,18027378:173611 +k1,11695:27338631,18027378:173611 +(1,11695:27338631,18027378:0,414482,115847 +r1,11695:28752032,18027378:1413401,530329,115847 +k1,11695:27338631,18027378:-1413401 +) +(1,11695:27338631,18027378:1413401,414482,115847 +k1,11695:27338631,18027378:3277 +h1,11695:28748755,18027378:0,411205,112570 +) +k1,11695:28925643,18027378:173611 +k1,11695:29630751,18027378:173611 +k1,11695:30738905,18027378:173611 +k1,11695:31563944,18027378:173611 +k1,11695:32583029,18027378:0 +) +(1,11696:6630773,18868866:25952256,513147,134348 +k1,11695:8558856,18868866:190068 +k1,11695:9408217,18868866:190069 +k1,11695:10617370,18868866:190068 +k1,11695:13392834,18868866:190069 +k1,11695:16267912,18868866:190068 +k1,11695:18241216,18868866:190069 +k1,11695:20612978,18868866:190068 +k1,11695:21822132,18868866:190069 +(1,11695:21822132,18868866:0,414482,115847 +r1,11695:23235533,18868866:1413401,530329,115847 +k1,11695:21822132,18868866:-1413401 +) +(1,11695:21822132,18868866:1413401,414482,115847 +k1,11695:21822132,18868866:3277 +h1,11695:23232256,18868866:0,411205,112570 +) +k1,11695:23425601,18868866:190068 +k1,11695:24274962,18868866:190069 +k1,11695:26367540,18868866:190068 +k1,11695:27951560,18868866:190069 +(1,11695:27951560,18868866:0,452978,115847 +r1,11695:30068385,18868866:2116825,568825,115847 +k1,11695:27951560,18868866:-2116825 +) +(1,11695:27951560,18868866:2116825,452978,115847 +k1,11695:27951560,18868866:3277 +h1,11695:30065108,18868866:0,411205,112570 +) +k1,11695:30432123,18868866:190068 +k1,11695:31490544,18868866:190069 +k1,11695:32583029,18868866:0 +) +(1,11696:6630773,19710354:25952256,513147,134348 +k1,11695:7509812,19710354:192877 +k1,11695:10983422,19710354:192878 +k1,11695:13244615,19710354:192877 +k1,11695:14456578,19710354:192878 +k1,11695:16717771,19710354:192877 +k1,11695:17569941,19710354:192878 +k1,11695:20937382,19710354:192877 +k1,11695:22321705,19710354:192878 +k1,11695:23951787,19710354:192877 +k1,11695:24830827,19710354:192878 +k1,11695:25794407,19710354:192877 +k1,11695:29059613,19710354:192878 +k1,11695:29608350,19710354:192877 +k1,11695:32583029,19710354:0 +) +(1,11696:6630773,20551842:25952256,513147,134348 +k1,11695:8861181,20551842:190928 +k1,11695:9734995,20551842:190929 +k1,11695:10696626,20551842:190928 +k1,11695:11302389,20551842:190920 +k1,11695:15106973,20551842:190929 +k1,11695:16786224,20551842:190928 +k1,11695:17845504,20551842:190928 +k1,11695:19128918,20551842:190929 +(1,11695:19128918,20551842:0,414482,115847 +r1,11695:19487184,20551842:358266,530329,115847 +k1,11695:19128918,20551842:-358266 +) +(1,11695:19128918,20551842:358266,414482,115847 +k1,11695:19128918,20551842:3277 +h1,11695:19483907,20551842:0,411205,112570 +) +k1,11695:19678112,20551842:190928 +k1,11695:21060485,20551842:190928 +(1,11695:21060485,20551842:0,414482,115847 +r1,11695:21418751,20551842:358266,530329,115847 +k1,11695:21060485,20551842:-358266 +) +(1,11695:21060485,20551842:358266,414482,115847 +k1,11695:21060485,20551842:3277 +h1,11695:21415474,20551842:0,411205,112570 +) +k1,11695:21783350,20551842:190929 +k1,11695:22993363,20551842:190928 +k1,11695:25252608,20551842:190929 +k1,11695:26102828,20551842:190928 +k1,11695:27312841,20551842:190928 +k1,11695:28676209,20551842:190929 +k1,11695:31931601,20551842:190928 +k1,11695:32583029,20551842:0 +) +(1,11696:6630773,21393330:25952256,505283,126483 +g1,11695:8715473,21393330 +g1,11695:9783054,21393330 +g1,11695:11457498,21393330 +g1,11695:14242122,21393330 +g1,11695:15613790,21393330 +g1,11695:18654660,21393330 +g1,11695:19469927,21393330 +(1,11695:19469927,21393330:0,452978,115847 +r1,11695:20883328,21393330:1413401,568825,115847 +k1,11695:19469927,21393330:-1413401 +) +(1,11695:19469927,21393330:1413401,452978,115847 +k1,11695:19469927,21393330:3277 +h1,11695:20880051,21393330:0,411205,112570 +) +g1,11695:21256227,21393330 +(1,11695:21256227,21393330:0,452978,115847 +r1,11695:22669628,21393330:1413401,568825,115847 +k1,11695:21256227,21393330:-1413401 +) +(1,11695:21256227,21393330:1413401,452978,115847 +k1,11695:21256227,21393330:3277 +h1,11695:22666351,21393330:0,411205,112570 +) +g1,11695:22868857,21393330 +g1,11695:24259531,21393330 +(1,11695:24259531,21393330:0,414482,122846 +r1,11695:25321220,21393330:1061689,537328,122846 +k1,11695:24259531,21393330:-1061689 +) +(1,11695:24259531,21393330:1061689,414482,122846 +k1,11695:24259531,21393330:3277 +h1,11695:25317943,21393330:0,411205,112570 +) +k1,11696:32583029,21393330:7088139 +g1,11696:32583029,21393330 +) +v1,11698:6630773,22583796:0,393216,0 +(1,11708:6630773,26895960:25952256,4705380,196608 +g1,11708:6630773,26895960 +g1,11708:6630773,26895960 +g1,11708:6434165,26895960 +(1,11708:6434165,26895960:0,4705380,196608 +r1,11708:32779637,26895960:26345472,4901988,196608 +k1,11708:6434165,26895960:-26345472 +) +(1,11708:6434165,26895960:26345472,4705380,196608 +[1,11708:6630773,26895960:25952256,4508772,0 +(1,11700:6630773,22791414:25952256,404226,107478 +(1,11699:6630773,22791414:0,0,0 +g1,11699:6630773,22791414 +g1,11699:6630773,22791414 +g1,11699:6303093,22791414 +(1,11699:6303093,22791414:0,0,0 +) +g1,11699:6630773,22791414 +) +k1,11700:6630773,22791414:0 +g1,11700:10424522,22791414 +g1,11700:11056814,22791414 +k1,11700:11056814,22791414:0 +h1,11700:13269834,22791414:0,0,0 +k1,11700:32583030,22791414:19313196 +g1,11700:32583030,22791414 +) +(1,11701:6630773,23457592:25952256,404226,107478 +h1,11701:6630773,23457592:0,0,0 +g1,11701:6946919,23457592 +g1,11701:7263065,23457592 +g1,11701:7579211,23457592 +g1,11701:7895357,23457592 +g1,11701:8211503,23457592 +g1,11701:8527649,23457592 +g1,11701:8843795,23457592 +g1,11701:10740670,23457592 +g1,11701:11372962,23457592 +g1,11701:13269837,23457592 +g1,11701:13902129,23457592 +g1,11701:14534421,23457592 +g1,11701:16431295,23457592 +h1,11701:16747441,23457592:0,0,0 +k1,11701:32583029,23457592:15835588 +g1,11701:32583029,23457592 +) +(1,11702:6630773,24123770:25952256,404226,107478 +h1,11702:6630773,24123770:0,0,0 +g1,11702:6946919,24123770 +g1,11702:7263065,24123770 +g1,11702:11372959,24123770 +h1,11702:11689105,24123770:0,0,0 +k1,11702:32583029,24123770:20893924 +g1,11702:32583029,24123770 +) +(1,11703:6630773,24789948:25952256,404226,107478 +h1,11703:6630773,24789948:0,0,0 +g1,11703:6946919,24789948 +g1,11703:7263065,24789948 +g1,11703:9476086,24789948 +g1,11703:10108378,24789948 +g1,11703:12637544,24789948 +g1,11703:16747438,24789948 +g1,11703:18960458,24789948 +k1,11703:18960458,24789948:0 +h1,11703:21805769,24789948:0,0,0 +k1,11703:32583029,24789948:10777260 +g1,11703:32583029,24789948 +) +(1,11704:6630773,25456126:25952256,410518,107478 +h1,11704:6630773,25456126:0,0,0 +g1,11704:6946919,25456126 +g1,11704:7263065,25456126 +g1,11704:7579211,25456126 +g1,11704:7895357,25456126 +g1,11704:8211503,25456126 +g1,11704:8527649,25456126 +g1,11704:8843795,25456126 +g1,11704:9476087,25456126 +g1,11704:10108379,25456126 +g1,11704:12005253,25456126 +g1,11704:13269836,25456126 +g1,11704:19276604,25456126 +g1,11704:20541187,25456126 +k1,11704:20541187,25456126:0 +h1,11704:23386498,25456126:0,0,0 +k1,11704:32583029,25456126:9196531 +g1,11704:32583029,25456126 +) +(1,11705:6630773,26122304:25952256,404226,82312 +h1,11705:6630773,26122304:0,0,0 +g1,11705:6946919,26122304 +g1,11705:7263065,26122304 +g1,11705:7579211,26122304 +g1,11705:7895357,26122304 +g1,11705:8211503,26122304 +g1,11705:8527649,26122304 +g1,11705:8843795,26122304 +g1,11705:10740669,26122304 +g1,11705:11372961,26122304 +g1,11705:13585981,26122304 +g1,11705:15482855,26122304 +g1,11705:16747438,26122304 +g1,11705:18328167,26122304 +k1,11705:18328167,26122304:0 +h1,11705:20541187,26122304:0,0,0 +k1,11705:32583029,26122304:12041842 +g1,11705:32583029,26122304 +) +(1,11706:6630773,26788482:25952256,404226,107478 +h1,11706:6630773,26788482:0,0,0 +g1,11706:6946919,26788482 +g1,11706:7263065,26788482 +g1,11706:7579211,26788482 +g1,11706:7895357,26788482 +g1,11706:8211503,26788482 +g1,11706:8527649,26788482 +g1,11706:8843795,26788482 +g1,11706:11689106,26788482 +g1,11706:12321398,26788482 +g1,11706:15166709,26788482 +g1,11706:16747438,26788482 +g1,11706:18644312,26788482 +g1,11706:20541186,26788482 +g1,11706:21489623,26788482 +h1,11706:24651080,26788482:0,0,0 +k1,11706:32583029,26788482:7931949 +g1,11706:32583029,26788482 +) +] +) +g1,11708:32583029,26895960 +g1,11708:6630773,26895960 +g1,11708:6630773,26895960 +g1,11708:32583029,26895960 +g1,11708:32583029,26895960 +) +h1,11708:6630773,27092568:0,0,0 +(1,11711:6630773,36745081:25952256,9062689,0 +k1,11711:10523651,36745081:3892878 +h1,11710:10523651,36745081:0,0,0 +(1,11710:10523651,36745081:18166500,9062689,0 +(1,11710:10523651,36745081:18167381,9062712,0 +(1,11710:10523651,36745081:18167381,9062712,0 +(1,11710:10523651,36745081:0,9062712,0 +(1,11710:10523651,36745081:0,14155776,0 +(1,11710:10523651,36745081:28377088,14155776,0 +) +k1,11710:10523651,36745081:-28377088 +) +) +g1,11710:28691032,36745081 +) +) +) +g1,11711:28690151,36745081 +k1,11711:32583029,36745081:3892878 +) +v1,11719:6630773,38110857:0,393216,0 +(1,11737:6630773,44539301:25952256,6821660,589824 +g1,11737:6630773,44539301 +(1,11737:6630773,44539301:25952256,6821660,589824 +(1,11737:6630773,45129125:25952256,7411484,0 +[1,11737:6630773,45129125:25952256,7411484,0 +(1,11737:6630773,45129125:25952256,7385270,0 +r1,11737:6656987,45129125:26214,7385270,0 +[1,11737:6656987,45129125:25899828,7385270,0 +(1,11737:6656987,44539301:25899828,6205622,0 +[1,11737:7246811,44539301:24720180,6205622,0 +(1,11720:7246811,39356025:24720180,1022346,126483 +k1,11719:8776494,39356025:274170 +k1,11719:9868552,39356025:274169 +k1,11719:13291727,39356025:274170 +k1,11719:14181934,39356025:274169 +k1,11719:15044617,39356025:274170 +k1,11719:17016824,39356025:274169 +k1,11719:17646854,39356025:274170 +k1,11719:19601366,39356025:274169 +k1,11719:20407033,39356025:274170 +k1,11719:23693892,39356025:274169 +k1,11719:25824042,39356025:274170 +k1,11719:26454071,39356025:274169 +k1,11719:28408584,39356025:274170 +k1,11719:30720924,39356025:274170 +k1,11719:31611131,39356025:274169 +k1,11719:31966991,39356025:0 +) +(1,11720:7246811,40197513:24720180,505283,134348 +k1,11719:9941816,40197513:183665 +k1,11719:10808365,40197513:183664 +k1,11719:14178390,40197513:183665 +k1,11719:17362948,40197513:183664 +k1,11719:17902473,40197513:183665 +k1,11719:20598132,40197513:183664 +k1,11719:22462140,40197513:183665 +k1,11719:23750087,40197513:183665 +k1,11719:24681517,40197513:183664 +k1,11719:27070469,40197513:183665 +k1,11719:27940295,40197513:183664 +k1,11719:28894663,40197513:183665 +k1,11719:31966991,40197513:0 +) +(1,11720:7246811,41039001:24720180,505283,126483 +k1,11719:8119270,41039001:221031 +k1,11719:9088067,41039001:221031 +k1,11719:11894493,41039001:221031 +k1,11719:12766952,41039001:221031 +k1,11719:13758686,41039001:221031 +k1,11719:16906554,41039001:221031 +k1,11719:17755420,41039001:221031 +k1,11719:19678422,41039001:221032 +k1,11719:22028062,41039001:221031 +k1,11719:23268178,41039001:221031 +k1,11719:25499854,41039001:221031 +k1,11719:26372313,41039001:221031 +k1,11719:27341110,41039001:221031 +k1,11719:29864421,41039001:221031 +k1,11719:30900720,41039001:221031 +k1,11719:31966991,41039001:0 +) +(1,11720:7246811,41880489:24720180,513147,126483 +k1,11719:9052188,41880489:275111 +k1,11719:9978726,41880489:275110 +k1,11719:11001603,41880489:275111 +k1,11719:13314884,41880489:275111 +k1,11719:14276157,41880489:275111 +k1,11719:17392908,41880489:275110 +k1,11719:18557998,41880489:275111 +k1,11719:21753393,41880489:275111 +k1,11719:22644541,41880489:275110 +k1,11719:23938737,41880489:275111 +k1,11719:25603211,41880489:275111 +k1,11719:27754618,41880489:275111 +k1,11719:30235015,41880489:275110 +k1,11719:31196288,41880489:275111 +k1,11719:31966991,41880489:0 +) +(1,11720:7246811,42721977:24720180,513147,134348 +k1,11719:10512072,42721977:192933 +k1,11719:11356434,42721977:192934 +k1,11719:14830099,42721977:192933 +(1,11719:14830099,42721977:0,452978,115847 +r1,11737:16243500,42721977:1413401,568825,115847 +k1,11719:14830099,42721977:-1413401 +) +(1,11719:14830099,42721977:1413401,452978,115847 +k1,11719:14830099,42721977:3277 +h1,11719:16240223,42721977:0,411205,112570 +) +k1,11719:16610103,42721977:192933 +k1,11719:18183225,42721977:192934 +k1,11719:19480440,42721977:192933 +k1,11719:20959190,42721977:192934 +k1,11719:21899889,42721977:192933 +k1,11719:25301465,42721977:192933 +k1,11719:27062020,42721977:192934 +k1,11719:28951680,42721977:192933 +k1,11719:31966991,42721977:0 +) +(1,11720:7246811,43563465:24720180,505283,134348 +k1,11719:8929894,43563465:194760 +k1,11719:9993007,43563465:194761 +k1,11719:11465064,43563465:194760 +k1,11719:16969552,43563465:194761 +(1,11719:16969552,43563465:0,414482,122846 +r1,11737:18031241,43563465:1061689,537328,122846 +k1,11719:16969552,43563465:-1061689 +) +(1,11719:16969552,43563465:1061689,414482,122846 +k1,11719:16969552,43563465:3277 +h1,11719:18027964,43563465:0,411205,112570 +) +k1,11719:18226001,43563465:194760 +k1,11719:19230132,43563465:194761 +k1,11719:20443977,43563465:194760 +k1,11719:22738512,43563465:194761 +k1,11719:27187214,43563465:194760 +k1,11719:28438415,43563465:194761 +k1,11719:31205463,43563465:194760 +k1,11719:31966991,43563465:0 +) +(1,11720:7246811,44404953:24720180,505283,134348 +g1,11719:10037334,44404953 +(1,11719:10037334,44404953:0,452978,115847 +r1,11737:11450735,44404953:1413401,568825,115847 +k1,11719:10037334,44404953:-1413401 +) +(1,11719:10037334,44404953:1413401,452978,115847 +k1,11719:10037334,44404953:3277 +h1,11719:11447458,44404953:0,411205,112570 +) +g1,11719:11649964,44404953 +g1,11719:12610721,44404953 +(1,11719:12610721,44404953:0,452978,115847 +r1,11737:13672410,44404953:1061689,568825,115847 +k1,11719:12610721,44404953:-1061689 +) +(1,11719:12610721,44404953:1061689,452978,115847 +k1,11719:12610721,44404953:3277 +h1,11719:13669133,44404953:0,411205,112570 +) +g1,11719:13871639,44404953 +g1,11719:16080857,44404953 +g1,11719:17299171,44404953 +g1,11719:18598094,44404953 +g1,11719:19448751,44404953 +(1,11719:19448751,44404953:0,452978,115847 +r1,11737:21213864,44404953:1765113,568825,115847 +k1,11719:19448751,44404953:-1765113 +) +(1,11719:19448751,44404953:1765113,452978,115847 +k1,11719:19448751,44404953:3277 +h1,11719:21210587,44404953:0,411205,112570 +) +k1,11720:31966991,44404953:10579457 +g1,11720:31966991,44404953 +) +] ) -k1,11812:3078556,2439708:-34777008 +] +r1,11737:32583029,45129125:26214,7385270,0 ) ] -[1,11812:3078558,4812305:0,0,0 -(1,11812:3078558,49800853:0,16384,2228224 -k1,11812:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11812:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11812:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +g1,11737:32583029,44539301 ) ] -) +(1,11737:32583029,45706769:0,0,0 +g1,11737:32583029,45706769 ) ) ] -[1,11812:3078558,4812305:0,0,0 -(1,11812:3078558,49800853:0,16384,2228224 -g1,11812:29030814,49800853 -g1,11812:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11812:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +(1,11737:6630773,47279633:25952256,0,0 +h1,11737:6630773,47279633:25952256,0,0 ) ] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11812:37855564,49800853:1179648,16384,0 -) -) -k1,11812:3078556,49800853:-34777008 -) -] -g1,11812:6630773,4812305 -k1,11812:25712890,4812305:17886740 -g1,11812:29057847,4812305 -g1,11812:29873114,4812305 -) -) -] -[1,11812:6630773,45706769:25952256,40108032,0 -(1,11812:6630773,45706769:25952256,40108032,0 -(1,11812:6630773,45706769:0,0,0 -g1,11812:6630773,45706769 -) -[1,11812:6630773,45706769:25952256,40108032,0 -v1,11760:6630773,6254097:0,393216,0 -(1,11760:6630773,18440387:25952256,12579506,616038 -g1,11760:6630773,18440387 -(1,11760:6630773,18440387:25952256,12579506,616038 -(1,11760:6630773,19056425:25952256,13195544,0 -[1,11760:6630773,19056425:25952256,13195544,0 -(1,11760:6630773,19030211:25952256,13169330,0 -r1,11760:6656987,19030211:26214,13169330,0 -[1,11760:6656987,19030211:25899828,13169330,0 -(1,11760:6656987,18440387:25899828,11989682,0 -[1,11760:7246811,18440387:24720180,11989682,0 -(1,11746:7246811,6963852:24720180,513147,134348 -(1,11745:7246811,6963852:0,452978,122846 -r1,11760:8660212,6963852:1413401,575824,122846 -k1,11745:7246811,6963852:-1413401 -) -(1,11745:7246811,6963852:1413401,452978,122846 -k1,11745:7246811,6963852:3277 -h1,11745:8656935,6963852:0,411205,112570 -) -k1,11745:8929644,6963852:269432 -k1,11745:11488903,6963852:269431 -k1,11745:12749895,6963852:269432 -k1,11745:17693355,6963852:269432 -k1,11745:19508126,6963852:269432 -k1,11745:23726756,6963852:269431 -k1,11745:24352048,6963852:269432 -k1,11745:26131430,6963852:269432 -k1,11745:27060154,6963852:269432 -k1,11745:28348670,6963852:269431 -k1,11745:30007465,6963852:269432 -k1,11745:31966991,6963852:0 -) -(1,11746:7246811,7805340:24720180,505283,134348 -k1,11745:9704277,7805340:252179 -k1,11745:10642618,7805340:252179 -k1,11745:13967125,7805340:252179 -k1,11745:14750800,7805340:252178 -k1,11745:16814394,7805340:252179 -k1,11745:19076562,7805340:252179 -k1,11745:20347826,7805340:252179 -k1,11745:21877302,7805340:252179 -k1,11745:24262678,7805340:252179 -k1,11745:25142691,7805340:252178 -k1,11745:26413955,7805340:252179 -k1,11745:29327551,7805340:252179 -k1,11745:31608725,7805340:252179 -(1,11745:31608725,7805340:0,414482,115847 -r1,11760:31966991,7805340:358266,530329,115847 -k1,11745:31608725,7805340:-358266 -) -(1,11745:31608725,7805340:358266,414482,115847 -k1,11745:31608725,7805340:3277 -h1,11745:31963714,7805340:0,411205,112570 -) -k1,11745:31966991,7805340:0 -) -(1,11746:7246811,8646828:24720180,513147,126483 -k1,11745:8278802,8646828:270463 -k1,11745:10154898,8646828:270464 -k1,11745:12194178,8646828:270463 -k1,11745:13212407,8646828:270463 -k1,11745:15294286,8646828:270464 -k1,11745:16216177,8646828:270463 -k1,11745:16842500,8646828:270463 -k1,11745:18096004,8646828:270464 -k1,11745:19175837,8646828:270463 -k1,11745:20791099,8646828:270463 -k1,11745:22253008,8646828:270464 -k1,11745:24667809,8646828:270463 -k1,11745:26205739,8646828:270464 -k1,11745:26832062,8646828:270463 -k1,11745:28759275,8646828:270463 -k1,11745:29444510,8646828:270392 -k1,11745:31966991,8646828:0 -) -(1,11746:7246811,9488316:24720180,505283,134348 -k1,11745:8922294,9488316:208787 -k1,11745:9940451,9488316:208787 -k1,11745:12621911,9488316:208787 -k1,11745:16080627,9488316:208786 -k1,11745:17480859,9488316:208787 -k1,11745:20564710,9488316:208787 -k1,11745:21459659,9488316:208787 -k1,11745:23057154,9488316:208787 -k1,11745:23952103,9488316:208787 -k1,11745:26741041,9488316:208786 -k1,11745:29778361,9488316:208787 -k1,11745:31178593,9488316:208787 -k1,11745:31966991,9488316:0 -) -(1,11746:7246811,10329804:24720180,513147,134348 -k1,11745:11811930,10329804:218771 -k1,11745:13022261,10329804:218771 -k1,11745:16198672,10329804:218771 -k1,11745:19021844,10329804:218771 -k1,11745:23323508,10329804:218771 -k1,11745:24201571,10329804:218771 -k1,11745:24776202,10329804:218771 -k1,11745:26504923,10329804:218771 -k1,11745:27382986,10329804:218771 -k1,11745:28620842,10329804:218771 -k1,11745:30228976,10329804:218771 -k1,11745:31966991,10329804:0 -) -(1,11746:7246811,11171292:24720180,505283,134348 -k1,11745:9509827,11171292:224846 -k1,11745:10350711,11171292:224846 -k1,11745:11594643,11171292:224847 -k1,11745:13096786,11171292:224846 -k1,11745:15454829,11171292:224846 -k1,11745:16211172,11171292:224846 -k1,11745:17720524,11171292:224846 -k1,11745:20161799,11171292:224847 -k1,11745:21405730,11171292:224846 -k1,11745:23019939,11171292:224846 -k1,11745:24758011,11171292:224846 -k1,11745:25634285,11171292:224846 -k1,11745:27788512,11171292:224847 -k1,11745:28369218,11171292:224846 -(1,11745:28369218,11171292:0,452978,122846 -r1,11760:29782619,11171292:1413401,575824,122846 -k1,11745:28369218,11171292:-1413401 -) -(1,11745:28369218,11171292:1413401,452978,122846 -k1,11745:28369218,11171292:3277 -h1,11745:29779342,11171292:0,411205,112570 -) -k1,11745:30007465,11171292:224846 -k1,11745:31966991,11171292:0 -) -(1,11746:7246811,12012780:24720180,513147,134348 -k1,11745:9023710,12012780:263673 -k1,11745:10075782,12012780:263674 -k1,11745:12932059,12012780:263673 -k1,11745:14688642,12012780:263673 -k1,11745:16015310,12012780:263674 -k1,11745:18058285,12012780:263673 -k1,11745:21197022,12012780:263673 -k1,11745:23068294,12012780:263674 -k1,11745:25374724,12012780:263673 -k1,11745:26506749,12012780:263673 -k1,11745:29335502,12012780:263674 -k1,11745:30618260,12012780:263673 -k1,11745:31966991,12012780:0 -) -(1,11746:7246811,12854268:24720180,505283,134348 -k1,11746:31966992,12854268:22586984 -g1,11746:31966992,12854268 -) -(1,11748:7246811,13695756:24720180,513147,134348 -h1,11747:7246811,13695756:983040,0,0 -k1,11747:9899641,13695756:190642 -(1,11747:9899641,13695756:0,452978,115847 -r1,11760:11664754,13695756:1765113,568825,115847 -k1,11747:9899641,13695756:-1765113 -) -(1,11747:9899641,13695756:1765113,452978,115847 -k1,11747:9899641,13695756:3277 -h1,11747:11661477,13695756:0,411205,112570 -) -k1,11747:11855397,13695756:190643 -k1,11747:12914391,13695756:190642 -k1,11747:14209316,13695756:190643 -k1,11747:16768429,13695756:190642 -k1,11747:17978157,13695756:190643 -k1,11747:21100224,13695756:190642 -k1,11747:21950158,13695756:190642 -k1,11747:23272608,13695756:190643 -k1,11747:23878085,13695756:190634 -k1,11747:26201924,13695756:190642 -k1,11747:29373144,13695756:190643 -k1,11747:31307699,13695756:190642 -k1,11747:31966991,13695756:0 -) -(1,11748:7246811,14537244:24720180,513147,134348 -k1,11747:9061735,14537244:259755 -(1,11747:9061735,14537244:0,452978,122846 -r1,11760:10475136,14537244:1413401,575824,122846 -k1,11747:9061735,14537244:-1413401 -) -(1,11747:9061735,14537244:1413401,452978,122846 -k1,11747:9061735,14537244:3277 -h1,11747:10471859,14537244:0,411205,112570 -) -k1,11747:10908562,14537244:259756 -k1,11747:12121866,14537244:259755 -k1,11747:13474106,14537244:259755 -(1,11747:13474106,14537244:0,452978,115847 -r1,11760:18052914,14537244:4578808,568825,115847 -k1,11747:13474106,14537244:-4578808 -) -(1,11747:13474106,14537244:4578808,452978,115847 -g1,11747:16994501,14537244 -g1,11747:17697925,14537244 -h1,11747:18049637,14537244:0,411205,112570 -) -k1,11747:18312670,14537244:259756 -k1,11747:19223853,14537244:259755 -k1,11747:21635810,14537244:259755 -k1,11747:22914650,14537244:259755 -k1,11747:25187672,14537244:259756 -k1,11747:26106719,14537244:259755 -k1,11747:28698900,14537244:259755 -k1,11747:30030825,14537244:259756 -k1,11747:30942008,14537244:259755 -k1,11747:31966991,14537244:0 -) -(1,11748:7246811,15378732:24720180,505283,134348 -k1,11747:9635850,15378732:217176 -k1,11747:11120492,15378732:217176 -k1,11747:12356753,15378732:217176 -k1,11747:14691398,15378732:217177 -k1,11747:15902100,15378732:217176 -k1,11747:17289749,15378732:217176 -k1,11747:18611207,15378732:217176 -k1,11747:21447202,15378732:217176 -k1,11747:22683463,15378732:217176 -k1,11747:24580983,15378732:217177 -k1,11747:27003446,15378732:217176 -k1,11747:27906784,15378732:217176 -k1,11747:28894663,15378732:217176 -k1,11747:31966991,15378732:0 -) -(1,11748:7246811,16220220:24720180,513147,126483 -g1,11747:8097468,16220220 -(1,11747:8097468,16220220:0,452978,115847 -r1,11760:11269428,16220220:3171960,568825,115847 -k1,11747:8097468,16220220:-3171960 -) -(1,11747:8097468,16220220:3171960,452978,115847 -k1,11747:8097468,16220220:3277 -h1,11747:11266151,16220220:0,411205,112570 -) -g1,11747:11468657,16220220 -g1,11747:12350771,16220220 -g1,11747:14688440,16220220 -g1,11747:16935669,16220220 -g1,11747:17923296,16220220 -k1,11748:31966991,16220220:11604445 -g1,11748:31966991,16220220 -) -v1,11753:7246811,17410686:0,393216,0 -(1,11757:7246811,17719491:24720180,702021,196608 -g1,11757:7246811,17719491 -g1,11757:7246811,17719491 -g1,11757:7050203,17719491 -(1,11757:7050203,17719491:0,702021,196608 -r1,11760:32163599,17719491:25113396,898629,196608 -k1,11757:7050203,17719491:-25113396 -) -(1,11757:7050203,17719491:25113396,702021,196608 -[1,11757:7246811,17719491:24720180,505413,0 -(1,11755:7246811,17618304:24720180,404226,101187 -(1,11754:7246811,17618304:0,0,0 -g1,11754:7246811,17618304 -g1,11754:7246811,17618304 -g1,11754:6919131,17618304 -(1,11754:6919131,17618304:0,0,0 -) -g1,11754:7246811,17618304 -) -k1,11755:7246811,17618304:0 -g1,11755:9459831,17618304 -g1,11755:12621288,17618304 -g1,11755:13253580,17618304 -h1,11755:13885872,17618304:0,0,0 -k1,11755:31966992,17618304:18081120 -g1,11755:31966992,17618304 -) -] -) -g1,11757:31966991,17719491 -g1,11757:7246811,17719491 -g1,11757:7246811,17719491 -g1,11757:31966991,17719491 -g1,11757:31966991,17719491 -) -h1,11757:7246811,17916099:0,0,0 -] -) -] -r1,11760:32583029,19030211:26214,13169330,0 -) -] -) -) -g1,11760:32583029,18440387 -) -h1,11760:6630773,19056425:0,0,0 -(1,11763:6630773,20422201:25952256,505283,126483 -h1,11762:6630773,20422201:983040,0,0 -k1,11762:9559218,20422201:162170 -k1,11762:10589740,20422201:162170 -k1,11762:12265136,20422201:162170 -k1,11762:13043345,20422201:162171 -k1,11762:14224600,20422201:162170 -k1,11762:17141248,20422201:162170 -k1,11762:19582105,20422201:162170 -k1,11762:22490889,20422201:162170 -(1,11762:22490889,20422201:0,414482,115847 -r1,11762:22849155,20422201:358266,530329,115847 -k1,11762:22490889,20422201:-358266 -) -(1,11762:22490889,20422201:358266,414482,115847 -k1,11762:22490889,20422201:3277 -h1,11762:22845878,20422201:0,411205,112570 -) -k1,11762:23011325,20422201:162170 -k1,11762:23824923,20422201:162170 -k1,11762:26923762,20422201:162171 -k1,11762:28105017,20422201:162170 -k1,11762:30048456,20422201:162170 -k1,11762:31078978,20422201:162170 -k1,11762:32583029,20422201:0 -) -(1,11763:6630773,21263689:25952256,505283,134348 -k1,11762:9864040,21263689:179289 -k1,11762:10852699,21263689:179289 -k1,11762:15333116,21263689:179289 -k1,11762:15927228,21263689:179269 -k1,11762:18570015,21263689:179289 -k1,11762:19377139,21263689:179289 -k1,11762:20575513,21263689:179289 -k1,11762:22408275,21263689:179289 -k1,11762:23999210,21263689:179289 -k1,11762:25046851,21263689:179289 -k1,11762:26330422,21263689:179289 -k1,11762:28920781,21263689:179289 -k1,11762:29909440,21263689:179289 -k1,11762:31900144,21263689:179289 -k1,11762:32583029,21263689:0 -) -(1,11763:6630773,22105177:25952256,505283,134348 -g1,11762:9589068,22105177 -k1,11763:32583030,22105177:20530464 -g1,11763:32583030,22105177 -) -v1,11765:6630773,23295643:0,393216,0 -(1,11770:6630773,24166292:25952256,1263865,196608 -g1,11770:6630773,24166292 -g1,11770:6630773,24166292 -g1,11770:6434165,24166292 -(1,11770:6434165,24166292:0,1263865,196608 -r1,11770:32779637,24166292:26345472,1460473,196608 -k1,11770:6434165,24166292:-26345472 -) -(1,11770:6434165,24166292:26345472,1263865,196608 -[1,11770:6630773,24166292:25952256,1067257,0 -(1,11767:6630773,23392636:25952256,293601,101187 -(1,11766:6630773,23392636:0,0,0 -g1,11766:6630773,23392636 -g1,11766:6630773,23392636 -g1,11766:6303093,23392636 -(1,11766:6303093,23392636:0,0,0 -) -g1,11766:6630773,23392636 -) -g1,11767:7263065,23392636 -h1,11767:7579211,23392636:0,0,0 -k1,11767:32583029,23392636:25003818 -g1,11767:32583029,23392636 -) -(1,11768:6630773,24058814:25952256,404226,107478 -h1,11768:6630773,24058814:0,0,0 -g1,11768:6946919,24058814 -g1,11768:7263065,24058814 -g1,11768:12637542,24058814 -g1,11768:13269834,24058814 -g1,11768:15799000,24058814 -g1,11768:18012020,24058814 -g1,11768:18644312,24058814 -h1,11768:20225041,24058814:0,0,0 -k1,11768:32583029,24058814:12357988 -g1,11768:32583029,24058814 -) -] -) -g1,11770:32583029,24166292 -g1,11770:6630773,24166292 -g1,11770:6630773,24166292 -g1,11770:32583029,24166292 -g1,11770:32583029,24166292 -) -h1,11770:6630773,24362900:0,0,0 -(1,11773:6630773,34015413:25952256,9062689,0 -k1,11773:10523651,34015413:3892878 -h1,11772:10523651,34015413:0,0,0 -(1,11772:10523651,34015413:18166500,9062689,0 -(1,11772:10523651,34015413:18167381,9062712,0 -(1,11772:10523651,34015413:18167381,9062712,0 -(1,11772:10523651,34015413:0,9062712,0 -(1,11772:10523651,34015413:0,14155776,0 -(1,11772:10523651,34015413:28377088,14155776,0 -) -k1,11772:10523651,34015413:-28377088 -) -) -g1,11772:28691032,34015413 -) -) -) -g1,11773:28690151,34015413 -k1,11773:32583029,34015413:3892878 -) -v1,11781:6630773,35381189:0,393216,0 -(1,11782:6630773,37667221:25952256,2679248,616038 -g1,11782:6630773,37667221 -(1,11782:6630773,37667221:25952256,2679248,616038 -(1,11782:6630773,38283259:25952256,3295286,0 -[1,11782:6630773,38283259:25952256,3295286,0 -(1,11782:6630773,38257045:25952256,3242858,0 -r1,11782:6656987,38257045:26214,3242858,0 -[1,11782:6656987,38257045:25899828,3242858,0 -(1,11782:6656987,37667221:25899828,2063210,0 -[1,11782:7246811,37667221:24720180,2063210,0 -(1,11782:7246811,36691385:24720180,1087374,134348 -k1,11781:8642225,36691385:185711 -k1,11781:12240396,36691385:185711 -k1,11781:13445192,36691385:185711 -k1,11781:16622622,36691385:185711 -k1,11781:17424371,36691385:185711 -k1,11781:18629167,36691385:185711 -k1,11781:21569356,36691385:185711 -k1,11781:24207424,36691385:185711 -k1,11781:26128528,36691385:185711 -(1,11781:26128528,36691385:0,414482,115847 -r1,11782:26486794,36691385:358266,530329,115847 -k1,11781:26128528,36691385:-358266 -) -(1,11781:26128528,36691385:358266,414482,115847 -k1,11781:26128528,36691385:3277 -h1,11781:26483517,36691385:0,411205,112570 -) -k1,11781:26672505,36691385:185711 -k1,11781:29239794,36691385:185711 -k1,11781:31280829,36691385:185711 -k1,11781:31966991,36691385:0 -) -(1,11782:7246811,37532873:24720180,513147,134348 -g1,11781:7801900,37532873 -g1,11781:9619213,37532873 -g1,11781:12145625,37532873 -g1,11781:13004146,37532873 -g1,11781:15835956,37532873 -g1,11781:17486807,37532873 -g1,11781:18963333,37532873 -g1,11781:20730183,37532873 -k1,11782:31966991,37532873:8749717 -g1,11782:31966991,37532873 -) -] -) -] -r1,11782:32583029,38257045:26214,3242858,0 -) -] -) -) -g1,11782:32583029,37667221 -) -h1,11782:6630773,38283259:0,0,0 -v1,11785:6630773,39649035:0,393216,0 -(1,11812:6630773,44386638:25952256,5130819,589824 -g1,11812:6630773,44386638 -(1,11812:6630773,44386638:25952256,5130819,589824 -(1,11812:6630773,44976462:25952256,5720643,0 -[1,11812:6630773,44976462:25952256,5720643,0 -(1,11812:6630773,44976462:25952256,5694429,0 -r1,11812:6656987,44976462:26214,5694429,0 -[1,11812:6656987,44976462:25899828,5694429,0 -(1,11812:6656987,44386638:25899828,4514781,0 -[1,11812:7246811,44386638:24720180,4514781,0 -(1,11786:7246811,40894203:24720180,1022346,134348 -k1,11785:8738971,40894203:236647 -k1,11785:9603454,40894203:236648 -k1,11785:10859186,40894203:236647 -k1,11785:14087553,40894203:236648 -k1,11785:16179524,40894203:236647 -k1,11785:17284524,40894203:236648 -k1,11785:18996386,40894203:236647 -k1,11785:20742984,40894203:236648 -k1,11785:23167223,40894203:236647 -k1,11785:26273037,40894203:236648 -k1,11785:27666394,40894203:236647 -k1,11785:28664570,40894203:236648 -k1,11785:30231598,40894203:236647 -k1,11785:31966991,40894203:0 -) -(1,11786:7246811,41735691:24720180,505283,134348 -k1,11785:8468558,41735691:202662 -(1,11785:8468558,41735691:0,414482,115847 -r1,11812:8826824,41735691:358266,530329,115847 -k1,11785:8468558,41735691:-358266 -) -(1,11785:8468558,41735691:358266,414482,115847 -k1,11785:8468558,41735691:3277 -h1,11785:8823547,41735691:0,411205,112570 -) -k1,11785:9029486,41735691:202662 -k1,11785:12152432,41735691:202662 -k1,11785:12824988,41735691:202663 -k1,11785:13559147,41735691:202662 -k1,11785:15047625,41735691:202662 -k1,11785:17880247,41735691:202662 -k1,11785:18734337,41735691:202662 -k1,11785:20134342,41735691:202662 -k1,11785:23008251,41735691:202662 -k1,11785:27138487,41735691:202663 -k1,11785:27957187,41735691:202662 -k1,11785:28515709,41735691:202662 -k1,11785:30591390,41735691:202662 -k1,11786:31966991,41735691:0 -) -(1,11786:7246811,42577179:24720180,513147,134348 -k1,11785:9406924,42577179:248428 -k1,11785:11390745,42577179:248428 -k1,11785:11995034,42577179:248429 -k1,11785:13410658,42577179:248428 -k1,11785:15039930,42577179:248428 -k1,11785:15819855,42577179:248428 -k1,11785:18219176,42577179:248429 -k1,11785:20165642,42577179:248428 -k1,11785:21282422,42577179:248428 -k1,11785:23079466,42577179:248428 -k1,11785:23979322,42577179:248428 -k1,11785:25618425,42577179:248429 -k1,11785:27131698,42577179:248428 -k1,11785:28039418,42577179:248428 -k1,11785:31966991,42577179:0 -) -(1,11786:7246811,43418667:24720180,505283,134348 -k1,11785:8074343,43418667:211494 -k1,11785:8641697,43418667:211494 -k1,11785:11364531,43418667:211494 -k1,11785:12300854,43418667:211495 -k1,11785:13198510,43418667:211494 -k1,11785:14061432,43418667:211494 -k1,11785:16001110,43418667:211494 -k1,11785:17851659,43418667:211494 -k1,11785:18679191,43418667:211494 -k1,11785:21561932,43418667:211494 -k1,11785:23554696,43418667:211495 -k1,11785:25147034,43418667:211494 -k1,11785:27079503,43418667:211494 -k1,11785:29493662,43418667:211494 -k1,11785:31966991,43418667:0 -) -(1,11786:7246811,44260155:24720180,513147,126483 -g1,11785:11164553,44260155 -g1,11785:12555227,44260155 -g1,11785:13858738,44260155 -g1,11785:15773700,44260155 -g1,11785:19380146,44260155 -g1,11785:20230803,44260155 -g1,11785:20785892,44260155 -g1,11785:21919664,44260155 -g1,11785:22778185,44260155 -g1,11785:25179424,44260155 -g1,11785:26986251,44260155 -g1,11785:28968715,44260155 -k1,11786:31966991,44260155:954208 -g1,11786:31966991,44260155 -) -] -) -] -r1,11812:32583029,44976462:26214,5694429,0 -) -] -) -) -g1,11812:32583029,44386638 -) -] -(1,11812:32583029,45706769:0,0,0 -g1,11812:32583029,45706769 -) -) -] -(1,11812:6630773,47279633:25952256,0,0 -h1,11812:6630773,47279633:25952256,0,0 -) -] -h1,11812:4262630,4025873:0,0,0 -] -!20849 -}223 -Input:1497:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1498:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1499:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1500:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1501:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1502:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1503:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{224 -[1,11862:4262630,47279633:28320399,43253760,0 -(1,11862:4262630,4025873:0,0,0 -[1,11862:-473657,4025873:25952256,0,0 -(1,11862:-473657,-710414:25952256,0,0 -h1,11862:-473657,-710414:0,0,0 -(1,11862:-473657,-710414:0,0,0 -(1,11862:-473657,-710414:0,0,0 -g1,11862:-473657,-710414 -(1,11862:-473657,-710414:65781,0,65781 -g1,11862:-407876,-710414 -[1,11862:-407876,-644633:0,0,0 +h1,11737:4262630,4025873:0,0,0 +] +!20855 +}222 +Input:1482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{223 +[1,11773:4262630,47279633:28320399,43253760,0 +(1,11773:4262630,4025873:0,0,0 +[1,11773:-473657,4025873:25952256,0,0 +(1,11773:-473657,-710414:25952256,0,0 +h1,11773:-473657,-710414:0,0,0 +(1,11773:-473657,-710414:0,0,0 +(1,11773:-473657,-710414:0,0,0 +g1,11773:-473657,-710414 +(1,11773:-473657,-710414:65781,0,65781 +g1,11773:-407876,-710414 +[1,11773:-407876,-644633:0,0,0 ] ) -k1,11862:-473657,-710414:-65781 +k1,11773:-473657,-710414:-65781 ) ) -k1,11862:25478599,-710414:25952256 -g1,11862:25478599,-710414 +k1,11773:25478599,-710414:25952256 +g1,11773:25478599,-710414 ) ] ) -[1,11862:6630773,47279633:25952256,43253760,0 -[1,11862:6630773,4812305:25952256,786432,0 -(1,11862:6630773,4812305:25952256,513147,134348 -(1,11862:6630773,4812305:25952256,513147,134348 -g1,11862:3078558,4812305 -[1,11862:3078558,4812305:0,0,0 -(1,11862:3078558,2439708:0,1703936,0 -k1,11862:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11862:2537886,2439708:1179648,16384,0 +[1,11773:6630773,47279633:25952256,43253760,0 +[1,11773:6630773,4812305:25952256,786432,0 +(1,11773:6630773,4812305:25952256,513147,134348 +(1,11773:6630773,4812305:25952256,513147,134348 +g1,11773:3078558,4812305 +[1,11773:3078558,4812305:0,0,0 +(1,11773:3078558,2439708:0,1703936,0 +k1,11773:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11773:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11862:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11773:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11862:3078558,4812305:0,0,0 -(1,11862:3078558,2439708:0,1703936,0 -g1,11862:29030814,2439708 -g1,11862:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11862:36151628,1915420:16384,1179648,0 +[1,11773:3078558,4812305:0,0,0 +(1,11773:3078558,2439708:0,1703936,0 +g1,11773:29030814,2439708 +g1,11773:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11773:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11862:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11773:37855564,2439708:1179648,16384,0 ) ) -k1,11862:3078556,2439708:-34777008 +k1,11773:3078556,2439708:-34777008 ) ] -[1,11862:3078558,4812305:0,0,0 -(1,11862:3078558,49800853:0,16384,2228224 -k1,11862:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11862:2537886,49800853:1179648,16384,0 +[1,11773:3078558,4812305:0,0,0 +(1,11773:3078558,49800853:0,16384,2228224 +k1,11773:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11773:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11862:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11773:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11862:3078558,4812305:0,0,0 -(1,11862:3078558,49800853:0,16384,2228224 -g1,11862:29030814,49800853 -g1,11862:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11862:36151628,51504789:16384,1179648,0 +[1,11773:3078558,4812305:0,0,0 +(1,11773:3078558,49800853:0,16384,2228224 +g1,11773:29030814,49800853 +g1,11773:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11773:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11862:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11773:37855564,49800853:1179648,16384,0 +) ) +k1,11773:3078556,49800853:-34777008 ) -k1,11862:3078556,49800853:-34777008 -) -] -g1,11862:6630773,4812305 -g1,11862:6630773,4812305 -g1,11862:10697281,4812305 -g1,11862:11496164,4812305 -g1,11862:12681054,4812305 -g1,11862:15925086,4812305 -g1,11862:16740353,4812305 -g1,11862:19649496,4812305 -k1,11862:31387652,4812305:11738156 -) -) -] -[1,11862:6630773,45706769:25952256,40108032,0 -(1,11862:6630773,45706769:25952256,40108032,0 -(1,11862:6630773,45706769:0,0,0 -g1,11862:6630773,45706769 +] +g1,11773:6630773,4812305 +k1,11773:25712890,4812305:17886740 +g1,11773:29057847,4812305 +g1,11773:29873114,4812305 ) -[1,11862:6630773,45706769:25952256,40108032,0 -v1,11812:6630773,6254097:0,393216,0 -(1,11812:6630773,20130606:25952256,14269725,616038 -g1,11812:6630773,20130606 -(1,11812:6630773,20130606:25952256,14269725,616038 -(1,11812:6630773,20746644:25952256,14885763,0 -[1,11812:6630773,20746644:25952256,14885763,0 -(1,11812:6630773,20720430:25952256,14859549,0 -r1,11812:6656987,20720430:26214,14859549,0 -[1,11812:6656987,20720430:25899828,14859549,0 -(1,11812:6656987,20130606:25899828,13679901,0 -[1,11812:7246811,20130606:24720180,13679901,0 -v1,11788:7246811,6843921:0,393216,0 -(1,11794:7246811,8491373:24720180,2040668,196608 -g1,11794:7246811,8491373 -g1,11794:7246811,8491373 -g1,11794:7050203,8491373 -(1,11794:7050203,8491373:0,2040668,196608 -r1,11812:32163599,8491373:25113396,2237276,196608 -k1,11794:7050203,8491373:-25113396 -) -(1,11794:7050203,8491373:25113396,2040668,196608 -[1,11794:7246811,8491373:24720180,1844060,0 -(1,11790:7246811,7051539:24720180,404226,101187 -(1,11789:7246811,7051539:0,0,0 -g1,11789:7246811,7051539 -g1,11789:7246811,7051539 -g1,11789:6919131,7051539 -(1,11789:6919131,7051539:0,0,0 ) -g1,11789:7246811,7051539 +] +[1,11773:6630773,45706769:25952256,40108032,0 +(1,11773:6630773,45706769:25952256,40108032,0 +(1,11773:6630773,45706769:0,0,0 +g1,11773:6630773,45706769 ) -g1,11790:10408268,7051539 -g1,11790:11356706,7051539 -k1,11790:11356706,7051539:0 -h1,11790:12937435,7051539:0,0,0 -k1,11790:31966991,7051539:19029556 -g1,11790:31966991,7051539 +[1,11773:6630773,45706769:25952256,40108032,0 +v1,11737:6630773,6254097:0,393216,0 +(1,11737:6630773,17244261:25952256,11383380,616038 +g1,11737:6630773,17244261 +(1,11737:6630773,17244261:25952256,11383380,616038 +(1,11737:6630773,17860299:25952256,11999418,0 +[1,11737:6630773,17860299:25952256,11999418,0 +(1,11737:6630773,17834085:25952256,11973204,0 +r1,11737:6656987,17834085:26214,11973204,0 +[1,11737:6656987,17834085:25899828,11973204,0 +(1,11737:6656987,17244261:25899828,10793556,0 +[1,11737:7246811,17244261:24720180,10793556,0 +v1,11722:7246811,6843921:0,393216,0 +(1,11727:7246811,7825195:24720180,1374490,196608 +g1,11727:7246811,7825195 +g1,11727:7246811,7825195 +g1,11727:7050203,7825195 +(1,11727:7050203,7825195:0,1374490,196608 +r1,11737:32163599,7825195:25113396,1571098,196608 +k1,11727:7050203,7825195:-25113396 ) -(1,11791:7246811,7717717:24720180,404226,107478 -h1,11791:7246811,7717717:0,0,0 -g1,11791:7562957,7717717 -g1,11791:7879103,7717717 -g1,11791:13253580,7717717 -g1,11791:13885872,7717717 -g1,11791:16415038,7717717 -g1,11791:18628058,7717717 -g1,11791:19260350,7717717 -k1,11791:19260350,7717717:0 -h1,11791:21157225,7717717:0,0,0 -k1,11791:31966991,7717717:10809766 -g1,11791:31966991,7717717 +(1,11727:7050203,7825195:25113396,1374490,196608 +[1,11727:7246811,7825195:24720180,1177882,0 +(1,11724:7246811,7051539:24720180,404226,107478 +(1,11723:7246811,7051539:0,0,0 +g1,11723:7246811,7051539 +g1,11723:7246811,7051539 +g1,11723:6919131,7051539 +(1,11723:6919131,7051539:0,0,0 ) -(1,11792:7246811,8383895:24720180,404226,107478 -h1,11792:7246811,8383895:0,0,0 -g1,11792:7562957,8383895 -g1,11792:7879103,8383895 -k1,11792:7879103,8383895:0 -h1,11792:12937434,8383895:0,0,0 -k1,11792:31966990,8383895:19029556 -g1,11792:31966990,8383895 -) -] -) -g1,11794:31966991,8491373 -g1,11794:7246811,8491373 -g1,11794:7246811,8491373 -g1,11794:31966991,8491373 -g1,11794:31966991,8491373 -) -h1,11794:7246811,8687981:0,0,0 -v1,11798:7246811,10402735:0,393216,0 -(1,11802:7246811,10711540:24720180,702021,196608 -g1,11802:7246811,10711540 -g1,11802:7246811,10711540 -g1,11802:7050203,10711540 -(1,11802:7050203,10711540:0,702021,196608 -r1,11812:32163599,10711540:25113396,898629,196608 -k1,11802:7050203,10711540:-25113396 -) -(1,11802:7050203,10711540:25113396,702021,196608 -[1,11802:7246811,10711540:24720180,505413,0 -(1,11800:7246811,10610353:24720180,404226,101187 -(1,11799:7246811,10610353:0,0,0 -g1,11799:7246811,10610353 -g1,11799:7246811,10610353 -g1,11799:6919131,10610353 -(1,11799:6919131,10610353:0,0,0 -) -g1,11799:7246811,10610353 -) -g1,11800:7879103,10610353 -g1,11800:8511395,10610353 -h1,11800:11356706,10610353:0,0,0 -k1,11800:31966990,10610353:20610284 -g1,11800:31966990,10610353 -) -] -) -g1,11802:31966991,10711540 -g1,11802:7246811,10711540 -g1,11802:7246811,10711540 -g1,11802:31966991,10711540 -g1,11802:31966991,10711540 -) -h1,11802:7246811,10908148:0,0,0 -(1,11805:7246811,20130606:24720180,8632634,0 -k1,11805:10954876,20130606:3708065 -h1,11804:10954876,20130606:0,0,0 -(1,11804:10954876,20130606:17304050,8632634,0 -(1,11804:10954876,20130606:17305278,8632656,0 -(1,11804:10954876,20130606:17305278,8632656,0 -(1,11804:10954876,20130606:0,8632656,0 -(1,11804:10954876,20130606:0,14155776,0 -(1,11804:10954876,20130606:28377088,14155776,0 -) -k1,11804:10954876,20130606:-28377088 -) -) -g1,11804:28260154,20130606 -) -) -) -g1,11805:28258926,20130606 -k1,11805:31966991,20130606:3708065 -) -] -) -] -r1,11812:32583029,20720430:26214,14859549,0 -) -] -) -) -g1,11812:32583029,20130606 -) -h1,11812:6630773,20746644:0,0,0 -(1,11815:6630773,23304483:25952256,555811,147783 -(1,11815:6630773,23304483:2899444,534184,12975 -g1,11815:6630773,23304483 -g1,11815:9530217,23304483 -) -g1,11815:11409593,23304483 -g1,11815:12976821,23304483 -k1,11815:32583029,23304483:16052911 -g1,11815:32583029,23304483 -) -(1,11818:6630773,24539187:25952256,513147,134348 -k1,11817:7393325,24539187:134717 -k1,11817:8547128,24539187:134718 -k1,11817:10048926,24539187:134717 -k1,11817:10842936,24539187:134718 -k1,11817:13102330,24539187:134717 -k1,11817:15018317,24539187:134718 -k1,11817:17007703,24539187:134717 -k1,11817:17951791,24539187:134718 -k1,11817:19475871,24539187:134717 -k1,11817:22750418,24539187:134717 -k1,11817:23501174,24539187:134718 -k1,11817:23991751,24539187:134717 -k1,11817:25999488,24539187:134718 -k1,11817:27523568,24539187:134717 -k1,11817:29708252,24539187:134718 -k1,11817:30862054,24539187:134717 -k1,11817:32583029,24539187:0 -) -(1,11818:6630773,25380675:25952256,505283,134348 -k1,11817:8378710,25380675:247163 -k1,11817:9157371,25380675:247164 -k1,11817:10055962,25380675:247163 -k1,11817:11799313,25380675:247164 -k1,11817:12402336,25380675:247163 -k1,11817:13926797,25380675:247164 -k1,11817:14860122,25380675:247163 -k1,11817:18197308,25380675:247163 -k1,11817:20473467,25380675:247164 -k1,11817:23148084,25380675:247163 -k1,11817:24165951,25380675:247164 -k1,11817:27659112,25380675:247163 -(1,11817:27659112,25380675:0,414482,115847 -r1,11817:29775937,25380675:2116825,530329,115847 -k1,11817:27659112,25380675:-2116825 -) -(1,11817:27659112,25380675:2116825,414482,115847 -k1,11817:27659112,25380675:3277 -h1,11817:29772660,25380675:0,411205,112570 -) -k1,11817:30023101,25380675:247164 -k1,11817:30886302,25380675:247163 -k1,11817:32583029,25380675:0 -) -(1,11818:6630773,26222163:25952256,513147,126483 -k1,11817:10067261,26222163:271099 -k1,11817:10989787,26222163:271098 -k1,11817:12279971,26222163:271099 -(1,11817:12279971,26222163:0,452978,115847 -r1,11817:13693372,26222163:1413401,568825,115847 -k1,11817:12279971,26222163:-1413401 -) -(1,11817:12279971,26222163:1413401,452978,115847 -k1,11817:12279971,26222163:3277 -h1,11817:13690095,26222163:0,411205,112570 -) -k1,11817:13964470,26222163:271098 -k1,11817:17516301,26222163:271099 -k1,11817:18454555,26222163:271098 -(1,11817:18454555,26222163:0,452978,122846 -r1,11817:21274804,26222163:2820249,575824,122846 -k1,11817:18454555,26222163:-2820249 -) -(1,11817:18454555,26222163:2820249,452978,122846 -k1,11817:18454555,26222163:3277 -h1,11817:21271527,26222163:0,411205,112570 -) -k1,11817:21719573,26222163:271099 -k1,11817:23462610,26222163:271098 -k1,11817:25938996,26222163:271099 -k1,11817:26826132,26222163:271098 -k1,11817:28300472,26222163:271099 -k1,11817:29809545,26222163:271098 -k1,11817:32583029,26222163:0 -) -(1,11818:6630773,27063651:25952256,513147,134348 -k1,11817:7866433,27063651:216575 -k1,11817:10348587,27063651:216574 -k1,11817:11512813,27063651:216575 -k1,11817:12495503,27063651:216574 -k1,11817:14600170,27063651:216575 -k1,11817:15432782,27063651:216574 -k1,11817:16668442,27063651:216575 -k1,11817:18335983,27063651:216574 -k1,11817:19749245,27063651:216575 -k1,11817:21619292,27063651:216574 -k1,11817:24117175,27063651:216575 -k1,11817:24985177,27063651:216574 -k1,11817:26220837,27063651:216575 -k1,11817:29509739,27063651:216574 -k1,11817:31931601,27063651:216575 -k1,11818:32583029,27063651:0 -) -(1,11818:6630773,27905139:25952256,452978,122846 -(1,11817:6630773,27905139:0,452978,122846 -r1,11817:9099310,27905139:2468537,575824,122846 -k1,11817:6630773,27905139:-2468537 -) -(1,11817:6630773,27905139:2468537,452978,122846 -k1,11817:6630773,27905139:3277 -h1,11817:9096033,27905139:0,411205,112570 -) -k1,11818:32583028,27905139:23310048 -g1,11818:32583028,27905139 -) -v1,11820:6630773,29037895:0,393216,0 -(1,11826:6630773,30685347:25952256,2040668,196608 -g1,11826:6630773,30685347 -g1,11826:6630773,30685347 -g1,11826:6434165,30685347 -(1,11826:6434165,30685347:0,2040668,196608 -r1,11826:32779637,30685347:26345472,2237276,196608 -k1,11826:6434165,30685347:-26345472 -) -(1,11826:6434165,30685347:26345472,2040668,196608 -[1,11826:6630773,30685347:25952256,1844060,0 -(1,11822:6630773,29245513:25952256,404226,107478 -(1,11821:6630773,29245513:0,0,0 -g1,11821:6630773,29245513 -g1,11821:6630773,29245513 -g1,11821:6303093,29245513 -(1,11821:6303093,29245513:0,0,0 -) -g1,11821:6630773,29245513 -) -k1,11822:6630773,29245513:0 -g1,11822:10424522,29245513 -g1,11822:11056814,29245513 -k1,11822:11056814,29245513:0 -h1,11822:13269834,29245513:0,0,0 -k1,11822:32583030,29245513:19313196 -g1,11822:32583030,29245513 -) -(1,11823:6630773,29911691:25952256,404226,107478 -h1,11823:6630773,29911691:0,0,0 -g1,11823:6946919,29911691 -g1,11823:7263065,29911691 -g1,11823:7579211,29911691 -g1,11823:7895357,29911691 -g1,11823:8211503,29911691 -g1,11823:8527649,29911691 -g1,11823:8843795,29911691 -g1,11823:11372961,29911691 -g1,11823:12005253,29911691 -g1,11823:13902128,29911691 -g1,11823:14534420,29911691 -g1,11823:16431295,29911691 -g1,11823:17063587,29911691 -g1,11823:17695879,29911691 -g1,11823:19592753,29911691 -h1,11823:19908899,29911691:0,0,0 -k1,11823:32583029,29911691:12674130 -g1,11823:32583029,29911691 -) -(1,11824:6630773,30577869:25952256,404226,107478 -h1,11824:6630773,30577869:0,0,0 -g1,11824:6946919,30577869 -g1,11824:7263065,30577869 -k1,11824:7263065,30577869:0 -h1,11824:11056813,30577869:0,0,0 -k1,11824:32583029,30577869:21526216 -g1,11824:32583029,30577869 -) -] -) -g1,11826:32583029,30685347 -g1,11826:6630773,30685347 -g1,11826:6630773,30685347 -g1,11826:32583029,30685347 -g1,11826:32583029,30685347 -) -h1,11826:6630773,30881955:0,0,0 -(1,11830:6630773,32190022:25952256,513147,134348 -h1,11829:6630773,32190022:983040,0,0 -k1,11829:10837398,32190022:288883 -k1,11829:12145365,32190022:288882 -k1,11829:15336838,32190022:288883 -k1,11829:16285012,32190022:288882 -k1,11829:19292984,32190022:288883 -k1,11829:23865299,32190022:288882 -k1,11829:25173267,32190022:288883 -k1,11829:28765164,32190022:288882 -k1,11829:29713339,32190022:288883 -k1,11829:31391584,32190022:288882 -k1,11829:32583029,32190022:0 -) -(1,11830:6630773,33031510:25952256,505283,134348 -k1,11829:10005103,33031510:236466 -k1,11829:13312585,33031510:236465 -k1,11829:14200479,33031510:236466 -k1,11829:17629859,33031510:236466 -k1,11829:19928087,33031510:236465 -k1,11829:20792388,33031510:236466 -k1,11829:22232094,33031510:236465 -k1,11829:23835641,33031510:236466 -k1,11829:25816020,33031510:236466 -k1,11829:28257772,33031510:236465 -k1,11829:29180400,33031510:236466 -k1,11829:32583029,33031510:0 -) -(1,11830:6630773,33872998:25952256,513147,134348 -k1,11829:7510721,33872998:228520 -(1,11829:7510721,33872998:0,452978,122846 -r1,11829:10330970,33872998:2820249,575824,122846 -k1,11829:7510721,33872998:-2820249 -) -(1,11829:7510721,33872998:2820249,452978,122846 -k1,11829:7510721,33872998:3277 -h1,11829:10327693,33872998:0,411205,112570 -) -k1,11829:10733161,33872998:228521 -k1,11829:11427642,33872998:228520 -k1,11829:14235660,33872998:228521 -k1,11829:15455740,33872998:228520 -k1,11829:19164878,33872998:228521 -k1,11829:20154926,33872998:228520 -k1,11829:23786076,33872998:228521 -k1,11829:26219883,33872998:228520 -k1,11829:27099832,33872998:228521 -k1,11829:30521266,33872998:228520 -k1,11829:32583029,33872998:0 -) -(1,11830:6630773,34714486:25952256,513147,134348 -g1,11829:9188643,34714486 -g1,11829:9845969,34714486 -g1,11829:12675158,34714486 -g1,11829:13525815,34714486 -g1,11829:15221231,34714486 -g1,11829:16439545,34714486 -g1,11829:18292247,34714486 -g1,11829:19768773,34714486 -g1,11829:20654164,34714486 -k1,11830:32583029,34714486:9439808 -g1,11830:32583029,34714486 -) -v1,11832:6630773,35847242:0,393216,0 -(1,11838:6630773,37494694:25952256,2040668,196608 -g1,11838:6630773,37494694 -g1,11838:6630773,37494694 -g1,11838:6434165,37494694 -(1,11838:6434165,37494694:0,2040668,196608 -r1,11838:32779637,37494694:26345472,2237276,196608 -k1,11838:6434165,37494694:-26345472 -) -(1,11838:6434165,37494694:26345472,2040668,196608 -[1,11838:6630773,37494694:25952256,1844060,0 -(1,11834:6630773,36054860:25952256,404226,107478 -(1,11833:6630773,36054860:0,0,0 -g1,11833:6630773,36054860 -g1,11833:6630773,36054860 -g1,11833:6303093,36054860 -(1,11833:6303093,36054860:0,0,0 -) -g1,11833:6630773,36054860 -) -k1,11834:6630773,36054860:0 -g1,11834:9476084,36054860 -h1,11834:9792230,36054860:0,0,0 -k1,11834:32583030,36054860:22790800 -g1,11834:32583030,36054860 -) -(1,11835:6630773,36721038:25952256,404226,107478 -h1,11835:6630773,36721038:0,0,0 -g1,11835:6946919,36721038 -g1,11835:7263065,36721038 -g1,11835:12321397,36721038 -g1,11835:12953689,36721038 -k1,11835:12953689,36721038:0 -h1,11835:15166709,36721038:0,0,0 -k1,11835:32583029,36721038:17416320 -g1,11835:32583029,36721038 -) -(1,11836:6630773,37387216:25952256,404226,107478 -h1,11836:6630773,37387216:0,0,0 -g1,11836:6946919,37387216 -g1,11836:7263065,37387216 -g1,11836:7579211,37387216 -g1,11836:7895357,37387216 -g1,11836:8211503,37387216 -g1,11836:8527649,37387216 -g1,11836:8843795,37387216 -g1,11836:9159941,37387216 -g1,11836:9476087,37387216 -g1,11836:9792233,37387216 -g1,11836:10108379,37387216 -g1,11836:10424525,37387216 -g1,11836:10740671,37387216 -g1,11836:13269837,37387216 -g1,11836:13902129,37387216 -g1,11836:15799004,37387216 -g1,11836:16431296,37387216 -g1,11836:18328171,37387216 -g1,11836:18960463,37387216 -g1,11836:19592755,37387216 -h1,11836:21173483,37387216:0,0,0 -k1,11836:32583029,37387216:11409546 -g1,11836:32583029,37387216 -) -] -) -g1,11838:32583029,37494694 -g1,11838:6630773,37494694 -g1,11838:6630773,37494694 -g1,11838:32583029,37494694 -g1,11838:32583029,37494694 -) -h1,11838:6630773,37691302:0,0,0 -(1,11842:6630773,38999369:25952256,513147,134348 -h1,11841:6630773,38999369:983040,0,0 -k1,11841:9003092,38999369:192592 -k1,11841:11461263,38999369:192591 -k1,11841:14461417,38999369:192592 -k1,11841:15758290,38999369:192591 -k1,11841:17236698,38999369:192592 -k1,11841:18177056,38999369:192592 -k1,11841:20335072,38999369:192591 -k1,11841:22942010,38999369:192592 -k1,11841:24528553,38999369:192592 -k1,11841:25740229,38999369:192591 -(1,11841:25740229,38999369:0,414482,115847 -r1,11841:26098495,38999369:358266,530329,115847 -k1,11841:25740229,38999369:-358266 -) -(1,11841:25740229,38999369:358266,414482,115847 -k1,11841:25740229,38999369:3277 -h1,11841:26095218,38999369:0,411205,112570 -) -k1,11841:26291087,38999369:192592 -k1,11841:29403962,38999369:192591 -k1,11841:31923737,38999369:192592 -k1,11841:32583029,38999369:0 -) -(1,11842:6630773,39840857:25952256,505283,134348 -g1,11841:8568017,39840857 -g1,11841:10972533,39840857 -g1,11841:11857924,39840857 -g1,11841:12827856,39840857 -g1,11841:16099413,39840857 -g1,11841:16950070,39840857 -(1,11841:16950070,39840857:0,452978,122846 -r1,11841:19770319,39840857:2820249,575824,122846 -k1,11841:16950070,39840857:-2820249 -) -(1,11841:16950070,39840857:2820249,452978,122846 -k1,11841:16950070,39840857:3277 -h1,11841:19767042,39840857:0,411205,112570 -) -k1,11842:32583029,39840857:12639040 -g1,11842:32583029,39840857 -) -v1,11844:6630773,40973614:0,393216,0 -(1,11850:6630773,42621066:25952256,2040668,196608 -g1,11850:6630773,42621066 -g1,11850:6630773,42621066 -g1,11850:6434165,42621066 -(1,11850:6434165,42621066:0,2040668,196608 -r1,11850:32779637,42621066:26345472,2237276,196608 -k1,11850:6434165,42621066:-26345472 -) -(1,11850:6434165,42621066:26345472,2040668,196608 -[1,11850:6630773,42621066:25952256,1844060,0 -(1,11846:6630773,41181232:25952256,404226,107478 -(1,11845:6630773,41181232:0,0,0 -g1,11845:6630773,41181232 -g1,11845:6630773,41181232 -g1,11845:6303093,41181232 -(1,11845:6303093,41181232:0,0,0 -) -g1,11845:6630773,41181232 -) -k1,11846:6630773,41181232:0 -g1,11846:10424522,41181232 -g1,11846:11056814,41181232 -g1,11846:13585980,41181232 -h1,11846:13902126,41181232:0,0,0 -k1,11846:32583030,41181232:18680904 -g1,11846:32583030,41181232 -) -(1,11847:6630773,41847410:25952256,404226,107478 -h1,11847:6630773,41847410:0,0,0 -g1,11847:6946919,41847410 -g1,11847:7263065,41847410 -g1,11847:9159940,41847410 -g1,11847:9792232,41847410 -g1,11847:11689107,41847410 -g1,11847:12321399,41847410 -g1,11847:12953691,41847410 -g1,11847:14534420,41847410 -h1,11847:14850566,41847410:0,0,0 -k1,11847:32583030,41847410:17732464 -g1,11847:32583030,41847410 -) -(1,11848:6630773,42513588:25952256,404226,107478 -h1,11848:6630773,42513588:0,0,0 -g1,11848:6946919,42513588 -g1,11848:7263065,42513588 -k1,11848:7263065,42513588:0 -h1,11848:11056813,42513588:0,0,0 -k1,11848:32583029,42513588:21526216 -g1,11848:32583029,42513588 -) -] -) -g1,11850:32583029,42621066 -g1,11850:6630773,42621066 -g1,11850:6630773,42621066 -g1,11850:32583029,42621066 -g1,11850:32583029,42621066 -) -h1,11850:6630773,42817674:0,0,0 -(1,11854:6630773,44125740:25952256,513147,134348 -h1,11853:6630773,44125740:983040,0,0 -k1,11853:8274896,44125740:191190 -k1,11853:8997584,44125740:191191 -k1,11853:10655470,44125740:191190 -k1,11853:13476620,44125740:191190 -k1,11853:14319238,44125740:191190 -k1,11853:15985644,44125740:191191 -k1,11853:16532694,44125740:191190 -k1,11853:18989464,44125740:191190 -k1,11853:21988216,44125740:191190 -k1,11853:23127058,44125740:191191 -k1,11853:24337333,44125740:191190 -k1,11853:26411372,44125740:191190 -k1,11853:28053529,44125740:191190 -k1,11853:29316889,44125740:191191 -k1,11853:30317449,44125740:191190 -k1,11853:32583029,44125740:0 -) -(1,11854:6630773,44967228:25952256,505283,7863 -k1,11854:32583029,44967228:24389222 -g1,11854:32583029,44967228 -) -v1,11856:6630773,46099985:0,393216,0 -] -(1,11862:32583029,45706769:0,0,0 -g1,11862:32583029,45706769 -) -) -] -(1,11862:6630773,47279633:25952256,0,0 -h1,11862:6630773,47279633:25952256,0,0 -) -] -h1,11862:4262630,4025873:0,0,0 -] -!20434 -}224 -Input:1504:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1505:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1506:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1507:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1508:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1509:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1510:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1511:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1512:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1513:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1514:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1515:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1516:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 -{225 -[1,11907:4262630,47279633:28320399,43253760,0 -(1,11907:4262630,4025873:0,0,0 -[1,11907:-473657,4025873:25952256,0,0 -(1,11907:-473657,-710414:25952256,0,0 -h1,11907:-473657,-710414:0,0,0 -(1,11907:-473657,-710414:0,0,0 -(1,11907:-473657,-710414:0,0,0 -g1,11907:-473657,-710414 -(1,11907:-473657,-710414:65781,0,65781 -g1,11907:-407876,-710414 -[1,11907:-407876,-644633:0,0,0 +g1,11723:7246811,7051539 +) +k1,11724:7246811,7051539:0 +g1,11724:11040560,7051539 +g1,11724:11672852,7051539 +g1,11724:14202018,7051539 +g1,11724:16098893,7051539 +g1,11724:16731185,7051539 +g1,11724:18311914,7051539 +g1,11724:18944206,7051539 +g1,11724:20524935,7051539 +g1,11724:21157227,7051539 +g1,11724:21789519,7051539 +g1,11724:23686393,7051539 +h1,11724:24002539,7051539:0,0,0 +k1,11724:31966991,7051539:7964452 +g1,11724:31966991,7051539 +) +(1,11725:7246811,7717717:24720180,404226,107478 +h1,11725:7246811,7717717:0,0,0 +g1,11725:7562957,7717717 +g1,11725:7879103,7717717 +k1,11725:7879103,7717717:0 +h1,11725:11672851,7717717:0,0,0 +k1,11725:31966991,7717717:20294140 +g1,11725:31966991,7717717 +) +] +) +g1,11727:31966991,7825195 +g1,11727:7246811,7825195 +g1,11727:7246811,7825195 +g1,11727:31966991,7825195 +g1,11727:31966991,7825195 +) +h1,11727:7246811,8021803:0,0,0 +(1,11730:7246811,17244261:24720180,8632634,0 +k1,11730:10954876,17244261:3708065 +h1,11729:10954876,17244261:0,0,0 +(1,11729:10954876,17244261:17304050,8632634,0 +(1,11729:10954876,17244261:17305278,8632656,0 +(1,11729:10954876,17244261:17305278,8632656,0 +(1,11729:10954876,17244261:0,8632656,0 +(1,11729:10954876,17244261:0,14155776,0 +(1,11729:10954876,17244261:28377088,14155776,0 +) +k1,11729:10954876,17244261:-28377088 +) +) +g1,11729:28260154,17244261 +) +) +) +g1,11730:28258926,17244261 +k1,11730:31966991,17244261:3708065 +) +] +) +] +r1,11737:32583029,17834085:26214,11973204,0 +) +] +) +) +g1,11737:32583029,17244261 +) +h1,11737:6630773,17860299:0,0,0 +(1,11741:6630773,19226075:25952256,513147,134348 +h1,11739:6630773,19226075:983040,0,0 +k1,11739:9335384,19226075:246356 +k1,11739:10241031,19226075:246355 +k1,11739:11506472,19226075:246356 +k1,11739:14621994,19226075:246356 +k1,11739:15527641,19226075:246355 +k1,11739:16793082,19226075:246356 +k1,11739:19942027,19226075:246355 +k1,11739:23893789,19226075:246356 +k1,11739:25995469,19226075:246356 +k1,11739:27342829,19226075:246355 +k1,11739:29820686,19226075:246356 +k1,11739:32583029,19226075:0 +) +(1,11741:6630773,20067563:25952256,513147,134348 +k1,11739:9982743,20067563:224592 +k1,11739:11398779,20067563:224591 +k1,11739:13375148,20067563:224592 +k1,11739:14259032,20067563:224592 +k1,11739:15502709,20067563:224592 +k1,11739:18920214,20067563:224591 +k1,11739:22584791,20067563:224592 +k1,11739:24000828,20067563:224592 +k1,11739:26907808,20067563:224591 +k1,11739:29180400,20067563:224592 +k1,11739:32583029,20067563:0 +) +(1,11741:6630773,20909051:25952256,513147,126483 +k1,11739:8198344,20909051:283065 +k1,11739:9585691,20909051:283065 +k1,11739:10616522,20909051:283065 +k1,11739:12412813,20909051:283065 +k1,11739:13347306,20909051:283065 +k1,11739:15892674,20909051:283065 +k1,11739:17684377,20909051:283064 +k1,11739:20900833,20909051:283065 +k1,11739:23016285,20909051:283065 +k1,11739:24290910,20909051:283065 +k1,11739:25859791,20909051:283065 +k1,11739:27793053,20909051:283065 +k1,11739:31140582,20909051:283065 +k1,11739:32583029,20909051:0 +) +(1,11741:6630773,21750539:25952256,505283,134348 +k1,11739:8542731,21750539:168045 +k1,11739:10786301,21750539:168045 +k1,11739:12983341,21750539:168045 +k1,11739:15766274,21750539:168046 +k1,11739:17323682,21750539:168045 +k1,11739:19781555,21750539:168045 +k1,11739:20635762,21750539:168045 +k1,11739:22082414,21750539:168045 +k1,11739:22936621,21750539:168045 +k1,11739:25775914,21750539:168046 +k1,11739:29081823,21750539:168045 +k1,11739:30354150,21750539:168045 +k1,11739:32583029,21750539:0 +) +(1,11741:6630773,22592027:25952256,513147,134348 +k1,11739:8864240,22592027:223478 +k1,11739:9443577,22592027:223477 +k1,11739:11540074,22592027:223478 +k1,11739:13789270,22592027:223478 +k1,11739:16145944,22592027:223477 +k1,11739:19234656,22592027:223478 +k1,11739:20649579,22592027:223478 +k1,11739:22253900,22592027:223477 +k1,11739:23973565,22592027:223478 +k1,11739:25301325,22592027:223478 +k1,11739:27485639,22592027:223477 +k1,11739:28992312,22592027:223478 +k1,11739:32583029,22592027:0 +) +(1,11741:6630773,23433515:25952256,505283,126483 +k1,11739:9647788,23433515:183894 +k1,11739:13476139,23433515:183894 +k1,11739:14851478,23433515:183894 +k1,11739:16502068,23433515:183894 +k1,11739:20119393,23433515:183894 +k1,11739:21586482,23433515:183894 +k1,11739:24985572,23433515:183894 +k1,11739:28374177,23433515:183894 +k1,11739:31427237,23433515:183894 +k1,11739:32227169,23433515:183894 +k1,11739:32583029,23433515:0 +) +(1,11741:6630773,24275003:25952256,513147,126483 +k1,11739:8772817,24275003:155648 +k1,11739:10032747,24275003:155648 +k1,11739:11474210,24275003:155647 +k1,11739:12377624,24275003:155648 +k1,11739:15368359,24275003:155648 +k1,11739:16715452,24275003:155648 +k1,11739:18154295,24275003:155648 +k1,11739:21235470,24275003:155648 +k1,11739:23707815,24275003:155647 +k1,11739:26387254,24275003:155648 +k1,11739:28904820,24275003:155648 +k1,11739:30251913,24275003:155648 +k1,11739:32583029,24275003:0 +) +(1,11741:6630773,25116491:25952256,513147,134348 +k1,11739:7759958,25116491:175636 +k1,11739:9068057,25116491:175637 +k1,11739:11912974,25116491:175636 +k1,11739:12704649,25116491:175637 +k1,11739:13899370,25116491:175636 +k1,11739:17292825,25116491:175637 +k1,11739:20077449,25116491:175636 +k1,11739:20912377,25116491:175636 +k1,11739:22291255,25116491:175637 +k1,11739:24884514,25116491:175636 +k1,11739:26390532,25116491:175637 +k1,11739:27217596,25116491:175636 +k1,11739:28485718,25116491:175637 +k1,11739:29680439,25116491:175636 +k1,11739:32583029,25116491:0 +) +(1,11741:6630773,25957979:25952256,513147,134348 +k1,11739:7578161,25957979:288096 +k1,11739:10585346,25957979:288096 +k1,11739:11524871,25957979:288097 +k1,11739:14836798,25957979:288096 +k1,11739:16826864,25957979:288096 +k1,11739:18831348,25957979:288096 +k1,11739:19778736,25957979:288096 +k1,11739:23016608,25957979:288097 +k1,11739:27664159,25957979:288096 +k1,11739:30932832,25957979:288096 +k1,11739:32583029,25957979:0 +) +(1,11741:6630773,26799467:25952256,505283,126483 +g1,11739:9516323,26799467 +g1,11739:11323150,26799467 +g1,11739:12964826,26799467 +g1,11739:14907968,26799467 +g1,11739:15723235,26799467 +g1,11739:16941549,26799467 +g1,11739:20132497,26799467 +g1,11739:22360721,26799467 +k1,11741:32583029,26799467:10222308 +g1,11741:32583029,26799467 +) +(1,11742:6630773,28890727:25952256,555811,147783 +(1,11742:6630773,28890727:2450326,534184,12975 +g1,11742:6630773,28890727 +g1,11742:9081099,28890727 +) +g1,11742:11085911,28890727 +g1,11742:12089399,28890727 +g1,11742:12811737,28890727 +k1,11742:32583028,28890727:17155880 +g1,11742:32583028,28890727 +) +(1,11745:6630773,30125431:25952256,505283,134348 +k1,11744:7772309,30125431:187987 +k1,11744:9064579,30125431:187988 +k1,11744:12845250,30125431:187987 +k1,11744:15058955,30125431:187987 +k1,11744:17536771,30125431:187988 +k1,11744:18916203,30125431:187987 +k1,11744:20612829,30125431:187987 +k1,11744:24728389,30125431:187987 +k1,11744:25532415,30125431:187988 +k1,11744:26739487,30125431:187987 +k1,11744:28580947,30125431:187987 +k1,11744:30006910,30125431:187988 +k1,11744:30881059,30125431:187987 +k1,11745:32583029,30125431:0 +) +(1,11745:6630773,30966919:25952256,513147,134348 +k1,11744:7277885,30966919:232269 +k1,11744:9973685,30966919:232302 +k1,11744:11159537,30966919:232303 +k1,11744:12496121,30966919:232302 +k1,11744:15139493,30966919:232302 +k1,11744:16181166,30966919:232303 +k1,11744:18052523,30966919:232302 +k1,11744:20020218,30966919:232302 +k1,11744:21271606,30966919:232303 +k1,11744:24580823,30966919:232302 +k1,11744:26004570,30966919:232302 +k1,11744:29021498,30966919:232303 +k1,11744:31635378,30966919:232302 +k1,11744:32583029,30966919:0 +) +(1,11745:6630773,31808407:25952256,505283,134348 +g1,11744:7849087,31808407 +(1,11744:7849087,31808407:0,452978,122846 +r1,11744:9262488,31808407:1413401,575824,122846 +k1,11744:7849087,31808407:-1413401 +) +(1,11744:7849087,31808407:1413401,452978,122846 +k1,11744:7849087,31808407:3277 +h1,11744:9259211,31808407:0,411205,112570 +) +g1,11744:9461717,31808407 +g1,11744:11216115,31808407 +g1,11744:12795532,31808407 +g1,11744:15131235,31808407 +g1,11744:16155562,31808407 +g1,11744:17308340,31808407 +g1,11744:18995892,31808407 +g1,11744:19956649,31808407 +g1,11744:22189460,31808407 +g1,11744:22744549,31808407 +g1,11744:24969496,31808407 +g1,11744:26436191,31808407 +g1,11744:26991280,31808407 +k1,11745:32583029,31808407:2906739 +g1,11745:32583029,31808407 +) +v1,11747:6630773,32998873:0,393216,0 +(1,11753:6630773,34646325:25952256,2040668,196608 +g1,11753:6630773,34646325 +g1,11753:6630773,34646325 +g1,11753:6434165,34646325 +(1,11753:6434165,34646325:0,2040668,196608 +r1,11753:32779637,34646325:26345472,2237276,196608 +k1,11753:6434165,34646325:-26345472 +) +(1,11753:6434165,34646325:26345472,2040668,196608 +[1,11753:6630773,34646325:25952256,1844060,0 +(1,11749:6630773,33206491:25952256,404226,107478 +(1,11748:6630773,33206491:0,0,0 +g1,11748:6630773,33206491 +g1,11748:6630773,33206491 +g1,11748:6303093,33206491 +(1,11748:6303093,33206491:0,0,0 +) +g1,11748:6630773,33206491 +) +g1,11749:7263065,33206491 +g1,11749:8211503,33206491 +g1,11749:12005252,33206491 +g1,11749:12637544,33206491 +k1,11749:12637544,33206491:0 +h1,11749:14850564,33206491:0,0,0 +k1,11749:32583028,33206491:17732464 +g1,11749:32583028,33206491 +) +(1,11750:6630773,33872669:25952256,404226,107478 +h1,11750:6630773,33872669:0,0,0 +g1,11750:6946919,33872669 +g1,11750:7263065,33872669 +g1,11750:7579211,33872669 +g1,11750:7895357,33872669 +g1,11750:8211503,33872669 +g1,11750:8527649,33872669 +g1,11750:8843795,33872669 +g1,11750:10740670,33872669 +g1,11750:11372962,33872669 +g1,11750:13269837,33872669 +g1,11750:13902129,33872669 +g1,11750:14534421,33872669 +g1,11750:16431295,33872669 +h1,11750:16747441,33872669:0,0,0 +k1,11750:32583029,33872669:15835588 +g1,11750:32583029,33872669 +) +(1,11751:6630773,34538847:25952256,404226,107478 +h1,11751:6630773,34538847:0,0,0 +g1,11751:6946919,34538847 +g1,11751:7263065,34538847 +k1,11751:7263065,34538847:0 +h1,11751:11056813,34538847:0,0,0 +k1,11751:32583029,34538847:21526216 +g1,11751:32583029,34538847 +) +] +) +g1,11753:32583029,34646325 +g1,11753:6630773,34646325 +g1,11753:6630773,34646325 +g1,11753:32583029,34646325 +g1,11753:32583029,34646325 +) +h1,11753:6630773,34842933:0,0,0 +v1,11757:6630773,36732997:0,393216,0 +(1,11773:6630773,44907607:25952256,8567826,589824 +g1,11773:6630773,44907607 +(1,11773:6630773,44907607:25952256,8567826,589824 +(1,11773:6630773,45497431:25952256,9157650,0 +[1,11773:6630773,45497431:25952256,9157650,0 +(1,11773:6630773,45497431:25952256,9131436,0 +r1,11773:6656987,45497431:26214,9131436,0 +[1,11773:6656987,45497431:25899828,9131436,0 +(1,11773:6656987,44907607:25899828,7951788,0 +[1,11773:7246811,44907607:24720180,7951788,0 +(1,11759:7246811,38041355:24720180,1085536,298548 +(1,11757:7246811,38041355:0,1085536,298548 +r1,11773:8753226,38041355:1506415,1384084,298548 +k1,11757:7246811,38041355:-1506415 +) +(1,11757:7246811,38041355:1506415,1085536,298548 +) +k1,11757:9005893,38041355:252667 +k1,11757:9005893,38041355:0 +k1,11758:10455247,38041355:252667 +k1,11758:14073843,38041355:252667 +k1,11758:14985802,38041355:252667 +k1,11758:16515767,38041355:252668 +k1,11758:20802830,38041355:252667 +k1,11758:22246942,38041355:252667 +k1,11758:25596840,38041355:252667 +k1,11758:26381004,38041355:252667 +k1,11758:29437301,38041355:252667 +k1,11759:31966991,38041355:0 +) +(1,11759:7246811,38882843:24720180,513147,134348 +(1,11758:7246811,38882843:0,452978,122846 +r1,11773:8660212,38882843:1413401,575824,122846 +k1,11758:7246811,38882843:-1413401 +) +(1,11758:7246811,38882843:1413401,452978,122846 +k1,11758:7246811,38882843:3277 +h1,11758:8656935,38882843:0,411205,112570 +) +k1,11758:8929644,38882843:269432 +k1,11758:11488903,38882843:269431 +k1,11758:12749895,38882843:269432 +k1,11758:17693355,38882843:269432 +k1,11758:19508126,38882843:269432 +k1,11758:23726756,38882843:269431 +k1,11758:24352048,38882843:269432 +k1,11758:26131430,38882843:269432 +k1,11758:27060154,38882843:269432 +k1,11758:28348670,38882843:269431 +k1,11758:30007465,38882843:269432 +k1,11758:31966991,38882843:0 +) +(1,11759:7246811,39724331:24720180,505283,134348 +k1,11758:9704277,39724331:252179 +k1,11758:10642618,39724331:252179 +k1,11758:13967125,39724331:252179 +k1,11758:14750800,39724331:252178 +k1,11758:16814394,39724331:252179 +k1,11758:19076562,39724331:252179 +k1,11758:20347826,39724331:252179 +k1,11758:21877302,39724331:252179 +k1,11758:24262678,39724331:252179 +k1,11758:25142691,39724331:252178 +k1,11758:26413955,39724331:252179 +k1,11758:29327551,39724331:252179 +k1,11758:31608725,39724331:252179 +(1,11758:31608725,39724331:0,414482,115847 +r1,11773:31966991,39724331:358266,530329,115847 +k1,11758:31608725,39724331:-358266 +) +(1,11758:31608725,39724331:358266,414482,115847 +k1,11758:31608725,39724331:3277 +h1,11758:31963714,39724331:0,411205,112570 +) +k1,11758:31966991,39724331:0 +) +(1,11759:7246811,40565819:24720180,513147,126483 +k1,11758:8278802,40565819:270463 +k1,11758:10154898,40565819:270464 +k1,11758:12194178,40565819:270463 +k1,11758:13212407,40565819:270463 +k1,11758:15294286,40565819:270464 +k1,11758:16216177,40565819:270463 +k1,11758:16842500,40565819:270463 +k1,11758:18096004,40565819:270464 +k1,11758:19175837,40565819:270463 +k1,11758:20791099,40565819:270463 +k1,11758:22253008,40565819:270464 +k1,11758:24667809,40565819:270463 +k1,11758:26205739,40565819:270464 +k1,11758:26832062,40565819:270463 +k1,11758:28759275,40565819:270463 +k1,11758:29444510,40565819:270392 +k1,11758:31966991,40565819:0 +) +(1,11759:7246811,41407307:24720180,505283,134348 +k1,11758:8922294,41407307:208787 +k1,11758:9940451,41407307:208787 +k1,11758:12621911,41407307:208787 +k1,11758:16080627,41407307:208786 +k1,11758:17480859,41407307:208787 +k1,11758:20564710,41407307:208787 +k1,11758:21459659,41407307:208787 +k1,11758:23057154,41407307:208787 +k1,11758:23952103,41407307:208787 +k1,11758:26741041,41407307:208786 +k1,11758:29778361,41407307:208787 +k1,11758:31178593,41407307:208787 +k1,11758:31966991,41407307:0 +) +(1,11759:7246811,42248795:24720180,513147,134348 +k1,11758:11811930,42248795:218771 +k1,11758:13022261,42248795:218771 +k1,11758:16198672,42248795:218771 +k1,11758:19021844,42248795:218771 +k1,11758:23323508,42248795:218771 +k1,11758:24201571,42248795:218771 +k1,11758:24776202,42248795:218771 +k1,11758:26504923,42248795:218771 +k1,11758:27382986,42248795:218771 +k1,11758:28620842,42248795:218771 +k1,11758:30228976,42248795:218771 +k1,11758:31966991,42248795:0 +) +(1,11759:7246811,43090283:24720180,505283,134348 +k1,11758:9509827,43090283:224846 +k1,11758:10350711,43090283:224846 +k1,11758:11594643,43090283:224847 +k1,11758:13096786,43090283:224846 +k1,11758:15454829,43090283:224846 +k1,11758:16211172,43090283:224846 +k1,11758:17720524,43090283:224846 +k1,11758:20161799,43090283:224847 +k1,11758:21405730,43090283:224846 +k1,11758:23019939,43090283:224846 +k1,11758:24758011,43090283:224846 +k1,11758:25634285,43090283:224846 +k1,11758:27788512,43090283:224847 +k1,11758:28369218,43090283:224846 +(1,11758:28369218,43090283:0,452978,122846 +r1,11773:29782619,43090283:1413401,575824,122846 +k1,11758:28369218,43090283:-1413401 +) +(1,11758:28369218,43090283:1413401,452978,122846 +k1,11758:28369218,43090283:3277 +h1,11758:29779342,43090283:0,411205,112570 +) +k1,11758:30007465,43090283:224846 +k1,11758:31966991,43090283:0 +) +(1,11759:7246811,43931771:24720180,513147,134348 +k1,11758:9023710,43931771:263673 +k1,11758:10075782,43931771:263674 +k1,11758:12932059,43931771:263673 +k1,11758:14688642,43931771:263673 +k1,11758:16015310,43931771:263674 +k1,11758:18058285,43931771:263673 +k1,11758:21197022,43931771:263673 +k1,11758:23068294,43931771:263674 +k1,11758:25374724,43931771:263673 +k1,11758:26506749,43931771:263673 +k1,11758:29335502,43931771:263674 +k1,11758:30618260,43931771:263673 +k1,11758:31966991,43931771:0 +) +(1,11759:7246811,44773259:24720180,505283,134348 +k1,11759:31966992,44773259:22586984 +g1,11759:31966992,44773259 +) +] +) +] +r1,11773:32583029,45497431:26214,9131436,0 +) +] +) +) +g1,11773:32583029,44907607 +) +] +(1,11773:32583029,45706769:0,0,0 +g1,11773:32583029,45706769 +) +) +] +(1,11773:6630773,47279633:25952256,0,0 +h1,11773:6630773,47279633:25952256,0,0 +) +] +h1,11773:4262630,4025873:0,0,0 +] +!20217 +}223 +Input:1490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 +{224 +[1,11829:4262630,47279633:28320399,43253760,0 +(1,11829:4262630,4025873:0,0,0 +[1,11829:-473657,4025873:25952256,0,0 +(1,11829:-473657,-710414:25952256,0,0 +h1,11829:-473657,-710414:0,0,0 +(1,11829:-473657,-710414:0,0,0 +(1,11829:-473657,-710414:0,0,0 +g1,11829:-473657,-710414 +(1,11829:-473657,-710414:65781,0,65781 +g1,11829:-407876,-710414 +[1,11829:-407876,-644633:0,0,0 ] ) -k1,11907:-473657,-710414:-65781 +k1,11829:-473657,-710414:-65781 ) ) -k1,11907:25478599,-710414:25952256 -g1,11907:25478599,-710414 +k1,11829:25478599,-710414:25952256 +g1,11829:25478599,-710414 ) ] ) -[1,11907:6630773,47279633:25952256,43253760,0 -[1,11907:6630773,4812305:25952256,786432,0 -(1,11907:6630773,4812305:25952256,513147,134348 -(1,11907:6630773,4812305:25952256,513147,134348 -g1,11907:3078558,4812305 -[1,11907:3078558,4812305:0,0,0 -(1,11907:3078558,2439708:0,1703936,0 -k1,11907:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11907:2537886,2439708:1179648,16384,0 +[1,11829:6630773,47279633:25952256,43253760,0 +[1,11829:6630773,4812305:25952256,786432,0 +(1,11829:6630773,4812305:25952256,513147,134348 +(1,11829:6630773,4812305:25952256,513147,134348 +g1,11829:3078558,4812305 +[1,11829:3078558,4812305:0,0,0 +(1,11829:3078558,2439708:0,1703936,0 +k1,11829:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11829:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11907:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11829:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11907:3078558,4812305:0,0,0 -(1,11907:3078558,2439708:0,1703936,0 -g1,11907:29030814,2439708 -g1,11907:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11907:36151628,1915420:16384,1179648,0 +[1,11829:3078558,4812305:0,0,0 +(1,11829:3078558,2439708:0,1703936,0 +g1,11829:29030814,2439708 +g1,11829:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11829:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11907:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11829:37855564,2439708:1179648,16384,0 ) ) -k1,11907:3078556,2439708:-34777008 +k1,11829:3078556,2439708:-34777008 ) ] -[1,11907:3078558,4812305:0,0,0 -(1,11907:3078558,49800853:0,16384,2228224 -k1,11907:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11907:2537886,49800853:1179648,16384,0 +[1,11829:3078558,4812305:0,0,0 +(1,11829:3078558,49800853:0,16384,2228224 +k1,11829:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11829:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11907:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11829:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11907:3078558,4812305:0,0,0 -(1,11907:3078558,49800853:0,16384,2228224 -g1,11907:29030814,49800853 -g1,11907:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11907:36151628,51504789:16384,1179648,0 +[1,11829:3078558,4812305:0,0,0 +(1,11829:3078558,49800853:0,16384,2228224 +g1,11829:29030814,49800853 +g1,11829:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11829:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11907:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11829:37855564,49800853:1179648,16384,0 +) +) +k1,11829:3078556,49800853:-34777008 +) +] +g1,11829:6630773,4812305 +g1,11829:6630773,4812305 +g1,11829:10697281,4812305 +g1,11829:11496164,4812305 +g1,11829:12681054,4812305 +g1,11829:15925086,4812305 +g1,11829:16740353,4812305 +g1,11829:19649496,4812305 +k1,11829:31387652,4812305:11738156 +) +) +] +[1,11829:6630773,45706769:25952256,40108032,0 +(1,11829:6630773,45706769:25952256,40108032,0 +(1,11829:6630773,45706769:0,0,0 +g1,11829:6630773,45706769 +) +[1,11829:6630773,45706769:25952256,40108032,0 +v1,11773:6630773,6254097:0,393216,0 +(1,11773:6630773,11708483:25952256,5847602,616038 +g1,11773:6630773,11708483 +(1,11773:6630773,11708483:25952256,5847602,616038 +(1,11773:6630773,12324521:25952256,6463640,0 +[1,11773:6630773,12324521:25952256,6463640,0 +(1,11773:6630773,12298307:25952256,6437426,0 +r1,11773:6656987,12298307:26214,6437426,0 +[1,11773:6656987,12298307:25899828,6437426,0 +(1,11773:6656987,11708483:25899828,5257778,0 +[1,11773:7246811,11708483:24720180,5257778,0 +(1,11761:7246811,6963852:24720180,513147,134348 +h1,11760:7246811,6963852:983040,0,0 +k1,11760:9899641,6963852:190642 +(1,11760:9899641,6963852:0,452978,115847 +r1,11773:11664754,6963852:1765113,568825,115847 +k1,11760:9899641,6963852:-1765113 +) +(1,11760:9899641,6963852:1765113,452978,115847 +k1,11760:9899641,6963852:3277 +h1,11760:11661477,6963852:0,411205,112570 +) +k1,11760:11855397,6963852:190643 +k1,11760:12914391,6963852:190642 +k1,11760:14209316,6963852:190643 +k1,11760:16768429,6963852:190642 +k1,11760:17978157,6963852:190643 +k1,11760:21100224,6963852:190642 +k1,11760:21950158,6963852:190642 +k1,11760:23272608,6963852:190643 +k1,11760:23878085,6963852:190634 +k1,11760:26201924,6963852:190642 +k1,11760:29373144,6963852:190643 +k1,11760:31307699,6963852:190642 +k1,11760:31966991,6963852:0 +) +(1,11761:7246811,7805340:24720180,513147,134348 +k1,11760:9061735,7805340:259755 +(1,11760:9061735,7805340:0,452978,122846 +r1,11773:10475136,7805340:1413401,575824,122846 +k1,11760:9061735,7805340:-1413401 +) +(1,11760:9061735,7805340:1413401,452978,122846 +k1,11760:9061735,7805340:3277 +h1,11760:10471859,7805340:0,411205,112570 +) +k1,11760:10908562,7805340:259756 +k1,11760:12121866,7805340:259755 +k1,11760:13474106,7805340:259755 +(1,11760:13474106,7805340:0,452978,115847 +r1,11773:18052914,7805340:4578808,568825,115847 +k1,11760:13474106,7805340:-4578808 +) +(1,11760:13474106,7805340:4578808,452978,115847 +g1,11760:16994501,7805340 +g1,11760:17697925,7805340 +h1,11760:18049637,7805340:0,411205,112570 +) +k1,11760:18312670,7805340:259756 +k1,11760:19223853,7805340:259755 +k1,11760:21635810,7805340:259755 +k1,11760:22914650,7805340:259755 +k1,11760:25187672,7805340:259756 +k1,11760:26106719,7805340:259755 +k1,11760:28698900,7805340:259755 +k1,11760:30030825,7805340:259756 +k1,11760:30942008,7805340:259755 +k1,11760:31966991,7805340:0 +) +(1,11761:7246811,8646828:24720180,505283,134348 +k1,11760:9635850,8646828:217176 +k1,11760:11120492,8646828:217176 +k1,11760:12356753,8646828:217176 +k1,11760:14691398,8646828:217177 +k1,11760:15902100,8646828:217176 +k1,11760:17289749,8646828:217176 +k1,11760:18611207,8646828:217176 +k1,11760:21447202,8646828:217176 +k1,11760:22683463,8646828:217176 +k1,11760:24580983,8646828:217177 +k1,11760:27003446,8646828:217176 +k1,11760:27906784,8646828:217176 +k1,11760:28894663,8646828:217176 +k1,11760:31966991,8646828:0 +) +(1,11761:7246811,9488316:24720180,513147,126483 +g1,11760:8097468,9488316 +(1,11760:8097468,9488316:0,452978,115847 +r1,11773:11269428,9488316:3171960,568825,115847 +k1,11760:8097468,9488316:-3171960 +) +(1,11760:8097468,9488316:3171960,452978,115847 +k1,11760:8097468,9488316:3277 +h1,11760:11266151,9488316:0,411205,112570 +) +g1,11760:11468657,9488316 +g1,11760:12350771,9488316 +g1,11760:14688440,9488316 +g1,11760:16935669,9488316 +g1,11760:17923296,9488316 +k1,11761:31966991,9488316:11604445 +g1,11761:31966991,9488316 +) +v1,11766:7246811,10678782:0,393216,0 +(1,11770:7246811,10987587:24720180,702021,196608 +g1,11770:7246811,10987587 +g1,11770:7246811,10987587 +g1,11770:7050203,10987587 +(1,11770:7050203,10987587:0,702021,196608 +r1,11773:32163599,10987587:25113396,898629,196608 +k1,11770:7050203,10987587:-25113396 +) +(1,11770:7050203,10987587:25113396,702021,196608 +[1,11770:7246811,10987587:24720180,505413,0 +(1,11768:7246811,10886400:24720180,404226,101187 +(1,11767:7246811,10886400:0,0,0 +g1,11767:7246811,10886400 +g1,11767:7246811,10886400 +g1,11767:6919131,10886400 +(1,11767:6919131,10886400:0,0,0 +) +g1,11767:7246811,10886400 +) +k1,11768:7246811,10886400:0 +g1,11768:9459831,10886400 +g1,11768:12621288,10886400 +g1,11768:13253580,10886400 +h1,11768:13885872,10886400:0,0,0 +k1,11768:31966992,10886400:18081120 +g1,11768:31966992,10886400 +) +] +) +g1,11770:31966991,10987587 +g1,11770:7246811,10987587 +g1,11770:7246811,10987587 +g1,11770:31966991,10987587 +g1,11770:31966991,10987587 +) +h1,11770:7246811,11184195:0,0,0 +] +) +] +r1,11773:32583029,12298307:26214,6437426,0 +) +] +) +) +g1,11773:32583029,11708483 +) +h1,11773:6630773,12324521:0,0,0 +(1,11776:6630773,13627224:25952256,505283,126483 +h1,11775:6630773,13627224:983040,0,0 +k1,11775:9559218,13627224:162170 +k1,11775:10589740,13627224:162170 +k1,11775:12265136,13627224:162170 +k1,11775:13043345,13627224:162171 +k1,11775:14224600,13627224:162170 +k1,11775:17141248,13627224:162170 +k1,11775:19582105,13627224:162170 +k1,11775:22490889,13627224:162170 +(1,11775:22490889,13627224:0,414482,115847 +r1,11775:22849155,13627224:358266,530329,115847 +k1,11775:22490889,13627224:-358266 +) +(1,11775:22490889,13627224:358266,414482,115847 +k1,11775:22490889,13627224:3277 +h1,11775:22845878,13627224:0,411205,112570 +) +k1,11775:23011325,13627224:162170 +k1,11775:23824923,13627224:162170 +k1,11775:26923762,13627224:162171 +k1,11775:28105017,13627224:162170 +k1,11775:30048456,13627224:162170 +k1,11775:31078978,13627224:162170 +k1,11775:32583029,13627224:0 +) +(1,11776:6630773,14468712:25952256,505283,134348 +k1,11775:9864040,14468712:179289 +k1,11775:10852699,14468712:179289 +k1,11775:15333116,14468712:179289 +k1,11775:15927228,14468712:179269 +k1,11775:18570015,14468712:179289 +k1,11775:19377139,14468712:179289 +k1,11775:20575513,14468712:179289 +k1,11775:22408275,14468712:179289 +k1,11775:23999210,14468712:179289 +k1,11775:25046851,14468712:179289 +k1,11775:26330422,14468712:179289 +k1,11775:28920781,14468712:179289 +k1,11775:29909440,14468712:179289 +k1,11775:31900144,14468712:179289 +k1,11775:32583029,14468712:0 +) +(1,11776:6630773,15310200:25952256,505283,134348 +g1,11775:9589068,15310200 +k1,11776:32583030,15310200:20530464 +g1,11776:32583030,15310200 +) +v1,11778:6630773,16437593:0,393216,0 +(1,11785:6630773,18629780:25952256,2585403,196608 +g1,11785:6630773,18629780 +g1,11785:6630773,18629780 +g1,11785:6434165,18629780 +(1,11785:6434165,18629780:0,2585403,196608 +r1,11785:32779637,18629780:26345472,2782011,196608 +k1,11785:6434165,18629780:-26345472 +) +(1,11785:6434165,18629780:26345472,2585403,196608 +[1,11785:6630773,18629780:25952256,2388795,0 +(1,11780:6630773,16534586:25952256,293601,101187 +(1,11779:6630773,16534586:0,0,0 +g1,11779:6630773,16534586 +g1,11779:6630773,16534586 +g1,11779:6303093,16534586 +(1,11779:6303093,16534586:0,0,0 +) +g1,11779:6630773,16534586 +) +g1,11780:7263065,16534586 +h1,11780:7579211,16534586:0,0,0 +k1,11780:32583029,16534586:25003818 +g1,11780:32583029,16534586 +) +(1,11781:6630773,17200764:25952256,404226,107478 +h1,11781:6630773,17200764:0,0,0 +g1,11781:6946919,17200764 +g1,11781:7263065,17200764 +g1,11781:12637542,17200764 +g1,11781:13269834,17200764 +g1,11781:15799000,17200764 +g1,11781:18012020,17200764 +g1,11781:18644312,17200764 +h1,11781:20225041,17200764:0,0,0 +k1,11781:32583029,17200764:12357988 +g1,11781:32583029,17200764 +) +(1,11785:6630773,18522302:25952256,410518,107478 +g1,11785:7579210,18522302 +g1,11785:12637541,18522302 +g1,11785:14534415,18522302 +g1,11785:17063581,18522302 +g1,11785:18012018,18522302 +g1,11785:18644310,18522302 +k1,11785:32583029,18522302:13306428 +g1,11785:32583029,18522302 +) +] +) +g1,11785:32583029,18629780 +g1,11785:6630773,18629780 +g1,11785:6630773,18629780 +g1,11785:32583029,18629780 +g1,11785:32583029,18629780 +) +h1,11785:6630773,18826388:0,0,0 +(1,11788:6630773,28415827:25952256,9062689,0 +k1,11788:10523651,28415827:3892878 +h1,11787:10523651,28415827:0,0,0 +(1,11787:10523651,28415827:18166500,9062689,0 +(1,11787:10523651,28415827:18167381,9062712,0 +(1,11787:10523651,28415827:18167381,9062712,0 +(1,11787:10523651,28415827:0,9062712,0 +(1,11787:10523651,28415827:0,14155776,0 +(1,11787:10523651,28415827:28377088,14155776,0 +) +k1,11787:10523651,28415827:-28377088 +) +) +g1,11787:28691032,28415827 +) +) +) +g1,11788:28690151,28415827 +k1,11788:32583029,28415827:3892878 +) +v1,11796:6630773,29718530:0,393216,0 +(1,11797:6630773,32004562:25952256,2679248,616038 +g1,11797:6630773,32004562 +(1,11797:6630773,32004562:25952256,2679248,616038 +(1,11797:6630773,32620600:25952256,3295286,0 +[1,11797:6630773,32620600:25952256,3295286,0 +(1,11797:6630773,32594386:25952256,3242858,0 +r1,11797:6656987,32594386:26214,3242858,0 +[1,11797:6656987,32594386:25899828,3242858,0 +(1,11797:6656987,32004562:25899828,2063210,0 +[1,11797:7246811,32004562:24720180,2063210,0 +(1,11797:7246811,31028726:24720180,1087374,134348 +k1,11796:8642225,31028726:185711 +k1,11796:12240396,31028726:185711 +k1,11796:13445192,31028726:185711 +k1,11796:16622622,31028726:185711 +k1,11796:17424371,31028726:185711 +k1,11796:18629167,31028726:185711 +k1,11796:21569356,31028726:185711 +k1,11796:24207424,31028726:185711 +k1,11796:26128528,31028726:185711 +(1,11796:26128528,31028726:0,414482,115847 +r1,11797:26486794,31028726:358266,530329,115847 +k1,11796:26128528,31028726:-358266 +) +(1,11796:26128528,31028726:358266,414482,115847 +k1,11796:26128528,31028726:3277 +h1,11796:26483517,31028726:0,411205,112570 +) +k1,11796:26672505,31028726:185711 +k1,11796:29239794,31028726:185711 +k1,11796:31280829,31028726:185711 +k1,11796:31966991,31028726:0 +) +(1,11797:7246811,31870214:24720180,513147,134348 +g1,11796:7801900,31870214 +g1,11796:9619213,31870214 +g1,11796:12145625,31870214 +g1,11796:13004146,31870214 +g1,11796:15835956,31870214 +g1,11796:17486807,31870214 +g1,11796:18963333,31870214 +g1,11796:20730183,31870214 +k1,11797:31966991,31870214:8749717 +g1,11797:31966991,31870214 +) +] +) +] +r1,11797:32583029,32594386:26214,3242858,0 +) +] +) +) +g1,11797:32583029,32004562 +) +h1,11797:6630773,32620600:0,0,0 +v1,11800:6630773,33923303:0,393216,0 +(1,11829:6630773,45116945:25952256,11586858,589824 +g1,11829:6630773,45116945 +(1,11829:6630773,45116945:25952256,11586858,589824 +(1,11829:6630773,45706769:25952256,12176682,0 +[1,11829:6630773,45706769:25952256,12176682,0 +(1,11829:6630773,45706769:25952256,12150468,0 +r1,11829:6656987,45706769:26214,12150468,0 +[1,11829:6656987,45706769:25899828,12150468,0 +(1,11829:6656987,45116945:25899828,10970820,0 +[1,11829:7246811,45116945:24720180,10970820,0 +(1,11801:7246811,35168471:24720180,1022346,134348 +k1,11800:8738971,35168471:236647 +k1,11800:9603454,35168471:236648 +k1,11800:10859186,35168471:236647 +k1,11800:14087553,35168471:236648 +k1,11800:16179524,35168471:236647 +k1,11800:17284524,35168471:236648 +k1,11800:18996386,35168471:236647 +k1,11800:20742984,35168471:236648 +k1,11800:23167223,35168471:236647 +k1,11800:26273037,35168471:236648 +k1,11800:27666394,35168471:236647 +k1,11800:28664570,35168471:236648 +k1,11800:30231598,35168471:236647 +k1,11800:31966991,35168471:0 +) +(1,11801:7246811,36009959:24720180,505283,134348 +k1,11800:8493368,36009959:227472 +(1,11800:8493368,36009959:0,414482,115847 +r1,11829:8851634,36009959:358266,530329,115847 +k1,11800:8493368,36009959:-358266 +) +(1,11800:8493368,36009959:358266,414482,115847 +k1,11800:8493368,36009959:3277 +h1,11800:8848357,36009959:0,411205,112570 +) +k1,11800:9079106,36009959:227472 +k1,11800:12226863,36009959:227473 +k1,11800:12924228,36009959:227472 +k1,11800:13683197,36009959:227472 +k1,11800:15196485,36009959:227472 +k1,11800:18053918,36009959:227473 +k1,11800:18932818,36009959:227472 +k1,11800:20357633,36009959:227472 +k1,11800:23256352,36009959:227472 +k1,11800:27411397,36009959:227472 +k1,11800:28254908,36009959:227473 +k1,11800:28838240,36009959:227472 +k1,11800:30938731,36009959:227472 +k1,11801:31966991,36009959:0 +) +(1,11801:7246811,36851447:24720180,513147,134348 +k1,11800:9729455,36851447:223618 +k1,11800:11688466,36851447:223618 +k1,11800:12267944,36851447:223618 +k1,11800:13658759,36851447:223619 +k1,11800:15263221,36851447:223618 +k1,11800:16018336,36851447:223618 +k1,11800:18392846,36851447:223618 +k1,11800:20314502,36851447:223618 +k1,11800:21406472,36851447:223618 +k1,11800:23178706,36851447:223618 +k1,11800:24053753,36851447:223619 +k1,11800:25668045,36851447:223618 +k1,11800:27156508,36851447:223618 +k1,11800:28039418,36851447:223618 +k1,11800:31966991,36851447:0 +) +(1,11801:7246811,37692935:24720180,505283,134348 +k1,11800:8074343,37692935:211494 +k1,11800:8641697,37692935:211494 +k1,11800:11364531,37692935:211494 +k1,11800:12300854,37692935:211495 +k1,11800:13198510,37692935:211494 +k1,11800:14061432,37692935:211494 +k1,11800:16001110,37692935:211494 +k1,11800:17851659,37692935:211494 +k1,11800:18679191,37692935:211494 +k1,11800:21561932,37692935:211494 +k1,11800:23554696,37692935:211495 +k1,11800:25147034,37692935:211494 +k1,11800:27079503,37692935:211494 +k1,11800:29493662,37692935:211494 +k1,11800:31966991,37692935:0 +) +(1,11801:7246811,38534423:24720180,513147,126483 +g1,11800:11164553,38534423 +g1,11800:12555227,38534423 +g1,11800:13858738,38534423 +g1,11800:15773700,38534423 +g1,11800:19380146,38534423 +g1,11800:20230803,38534423 +g1,11800:20785892,38534423 +g1,11800:21919664,38534423 +g1,11800:22778185,38534423 +g1,11800:25179424,38534423 +g1,11800:26986251,38534423 +g1,11800:28968715,38534423 +k1,11801:31966991,38534423:954208 +g1,11801:31966991,38534423 +) +v1,11803:7246811,39724889:0,393216,0 +(1,11809:7246811,41372341:24720180,2040668,196608 +g1,11809:7246811,41372341 +g1,11809:7246811,41372341 +g1,11809:7050203,41372341 +(1,11809:7050203,41372341:0,2040668,196608 +r1,11829:32163599,41372341:25113396,2237276,196608 +k1,11809:7050203,41372341:-25113396 +) +(1,11809:7050203,41372341:25113396,2040668,196608 +[1,11809:7246811,41372341:24720180,1844060,0 +(1,11805:7246811,39932507:24720180,404226,101187 +(1,11804:7246811,39932507:0,0,0 +g1,11804:7246811,39932507 +g1,11804:7246811,39932507 +g1,11804:6919131,39932507 +(1,11804:6919131,39932507:0,0,0 +) +g1,11804:7246811,39932507 +) +g1,11805:10408268,39932507 +g1,11805:11356706,39932507 +k1,11805:11356706,39932507:0 +h1,11805:12937435,39932507:0,0,0 +k1,11805:31966991,39932507:19029556 +g1,11805:31966991,39932507 +) +(1,11806:7246811,40598685:24720180,404226,107478 +h1,11806:7246811,40598685:0,0,0 +g1,11806:7562957,40598685 +g1,11806:7879103,40598685 +g1,11806:13253580,40598685 +g1,11806:13885872,40598685 +g1,11806:16415038,40598685 +g1,11806:18628058,40598685 +g1,11806:19260350,40598685 +k1,11806:19260350,40598685:0 +h1,11806:21157225,40598685:0,0,0 +k1,11806:31966991,40598685:10809766 +g1,11806:31966991,40598685 +) +(1,11807:7246811,41264863:24720180,404226,107478 +h1,11807:7246811,41264863:0,0,0 +g1,11807:7562957,41264863 +g1,11807:7879103,41264863 +k1,11807:7879103,41264863:0 +h1,11807:12937434,41264863:0,0,0 +k1,11807:31966990,41264863:19029556 +g1,11807:31966990,41264863 +) +] +) +g1,11809:31966991,41372341 +g1,11809:7246811,41372341 +g1,11809:7246811,41372341 +g1,11809:31966991,41372341 +g1,11809:31966991,41372341 +) +h1,11809:7246811,41568949:0,0,0 +v1,11813:7246811,43283703:0,393216,0 +(1,11819:7246811,44920337:24720180,2029850,196608 +g1,11819:7246811,44920337 +g1,11819:7246811,44920337 +g1,11819:7050203,44920337 +(1,11819:7050203,44920337:0,2029850,196608 +r1,11829:32163599,44920337:25113396,2226458,196608 +k1,11819:7050203,44920337:-25113396 +) +(1,11819:7050203,44920337:25113396,2029850,196608 +[1,11819:7246811,44920337:24720180,1833242,0 +(1,11815:7246811,43491321:24720180,404226,101187 +(1,11814:7246811,43491321:0,0,0 +g1,11814:7246811,43491321 +g1,11814:7246811,43491321 +g1,11814:6919131,43491321 +(1,11814:6919131,43491321:0,0,0 +) +g1,11814:7246811,43491321 +) +g1,11815:7879103,43491321 +g1,11815:8511395,43491321 +h1,11815:11356706,43491321:0,0,0 +k1,11815:31966990,43491321:20610284 +g1,11815:31966990,43491321 +) +(1,11819:7246811,44812859:24720180,410518,107478 +g1,11819:8195248,44812859 +g1,11819:13253579,44812859 +g1,11819:15150453,44812859 +g1,11819:17679619,44812859 +g1,11819:18628056,44812859 +g1,11819:19260348,44812859 +k1,11819:31966991,44812859:12074352 +g1,11819:31966991,44812859 ) +] +) +g1,11819:31966991,44920337 +g1,11819:7246811,44920337 +g1,11819:7246811,44920337 +g1,11819:31966991,44920337 +g1,11819:31966991,44920337 +) +h1,11819:7246811,45116945:0,0,0 +] +) +] +r1,11829:32583029,45706769:26214,12150468,0 +) +] +) +) +g1,11829:32583029,45116945 ) -k1,11907:3078556,49800853:-34777008 -) -] -g1,11907:6630773,4812305 -k1,11907:25712890,4812305:17886740 -g1,11907:29057847,4812305 -g1,11907:29873114,4812305 -) -) -] -[1,11907:6630773,45706769:25952256,40108032,0 -(1,11907:6630773,45706769:25952256,40108032,0 -(1,11907:6630773,45706769:0,0,0 -g1,11907:6630773,45706769 -) -[1,11907:6630773,45706769:25952256,40108032,0 -v1,11862:6630773,6254097:0,393216,0 -(1,11862:6630773,7901549:25952256,2040668,196608 -g1,11862:6630773,7901549 -g1,11862:6630773,7901549 -g1,11862:6434165,7901549 -(1,11862:6434165,7901549:0,2040668,196608 -r1,11862:32779637,7901549:26345472,2237276,196608 -k1,11862:6434165,7901549:-26345472 -) -(1,11862:6434165,7901549:26345472,2040668,196608 -[1,11862:6630773,7901549:25952256,1844060,0 -(1,11858:6630773,6461715:25952256,404226,107478 -(1,11857:6630773,6461715:0,0,0 -g1,11857:6630773,6461715 -g1,11857:6630773,6461715 -g1,11857:6303093,6461715 -(1,11857:6303093,6461715:0,0,0 -) -g1,11857:6630773,6461715 -) -k1,11858:6630773,6461715:0 -g1,11858:9476084,6461715 -h1,11858:9792230,6461715:0,0,0 -k1,11858:32583030,6461715:22790800 -g1,11858:32583030,6461715 -) -(1,11859:6630773,7127893:25952256,404226,107478 -h1,11859:6630773,7127893:0,0,0 -g1,11859:6946919,7127893 -g1,11859:7263065,7127893 -g1,11859:9159940,7127893 -g1,11859:9792232,7127893 -g1,11859:11689107,7127893 -g1,11859:12321399,7127893 -g1,11859:12953691,7127893 -g1,11859:14534420,7127893 -h1,11859:14850566,7127893:0,0,0 -k1,11859:32583030,7127893:17732464 -g1,11859:32583030,7127893 -) -(1,11860:6630773,7794071:25952256,404226,107478 -h1,11860:6630773,7794071:0,0,0 -g1,11860:6946919,7794071 -g1,11860:7263065,7794071 -g1,11860:12321397,7794071 -g1,11860:12953689,7794071 -h1,11860:15166709,7794071:0,0,0 -k1,11860:32583029,7794071:17416320 -g1,11860:32583029,7794071 -) -] -) -g1,11862:32583029,7901549 -g1,11862:6630773,7901549 -g1,11862:6630773,7901549 -g1,11862:32583029,7901549 -g1,11862:32583029,7901549 -) -h1,11862:6630773,8098157:0,0,0 -(1,11866:6630773,9463933:25952256,513147,134348 -h1,11865:6630773,9463933:983040,0,0 -k1,11865:8427006,9463933:185358 -k1,11865:10309090,9463933:185357 -k1,11865:13659837,9463933:185358 -k1,11865:14864279,9463933:185357 -k1,11865:16326934,9463933:185358 -k1,11865:19070161,9463933:185357 -k1,11865:22920292,9463933:185358 -k1,11865:24177819,9463933:185358 -k1,11865:25566417,9463933:185357 -k1,11865:28725799,9463933:185358 -k1,11865:29527194,9463933:185357 -k1,11865:30731637,9463933:185358 -k1,11866:32583029,9463933:0 -) -(1,11866:6630773,10305421:25952256,513147,134348 -k1,11865:8074279,10305421:179316 -k1,11865:10439222,10305421:179317 -k1,11865:11234576,10305421:179316 -k1,11865:13021491,10305421:179317 -k1,11865:16562804,10305421:179316 -k1,11865:19413368,10305421:179317 -k1,11865:21654447,10305421:179316 -k1,11865:22781415,10305421:179317 -k1,11865:24412353,10305421:179316 -k1,11865:26149461,10305421:179317 -k1,11865:26980205,10305421:179316 -k1,11865:28252007,10305421:179317 -k1,11865:31193666,10305421:179316 -k1,11865:32583029,10305421:0 -) -(1,11866:6630773,11146909:25952256,513147,134348 -g1,11865:7512887,11146909 -g1,11865:8067976,11146909 -g1,11865:11029548,11146909 -k1,11866:32583029,11146909:18572248 -g1,11866:32583029,11146909 -) -v1,11868:6630773,12512685:0,393216,0 -(1,11893:6630773,27511386:25952256,15391917,616038 -g1,11893:6630773,27511386 -(1,11893:6630773,27511386:25952256,15391917,616038 -(1,11893:6630773,28127424:25952256,16007955,0 -[1,11893:6630773,28127424:25952256,16007955,0 -(1,11893:6630773,28101210:25952256,15955527,0 -r1,11893:6656987,28101210:26214,15955527,0 -[1,11893:6656987,28101210:25899828,15955527,0 -(1,11893:6656987,27511386:25899828,14775879,0 -[1,11893:7246811,27511386:24720180,14775879,0 -(1,11869:7246811,13897392:24720180,1161885,196608 -(1,11868:7246811,13897392:0,1161885,196608 -r1,11893:8794447,13897392:1547636,1358493,196608 -k1,11868:7246811,13897392:-1547636 -) -(1,11868:7246811,13897392:1547636,1161885,196608 -) -k1,11868:9079267,13897392:284820 -k1,11868:10560775,13897392:284821 -k1,11868:13917923,13897392:284820 -k1,11868:16408030,13897392:284820 -k1,11868:17344279,13897392:284821 -k1,11868:20909831,13897392:284820 -(1,11868:20909831,13897392:0,452978,115847 -r1,11893:22323232,13897392:1413401,568825,115847 -k1,11868:20909831,13897392:-1413401 -) -(1,11868:20909831,13897392:1413401,452978,115847 -k1,11868:20909831,13897392:3277 -h1,11868:22319955,13897392:0,411205,112570 -) -k1,11868:22608052,13897392:284820 -k1,11868:23552164,13897392:284820 -k1,11868:24192845,13897392:284821 -k1,11868:26035456,13897392:284820 -k1,11868:29189442,13897392:284820 -k1,11868:30578545,13897392:284821 -k1,11868:31611131,13897392:284820 -k1,11868:31966991,13897392:0 -) -(1,11869:7246811,14738880:24720180,513147,126483 -k1,11868:10138868,14738880:196561 -k1,11868:12662612,14738880:196561 -k1,11868:13518466,14738880:196562 -k1,11868:14070887,14738880:196561 -k1,11868:15656811,14738880:196561 -k1,11868:17903338,14738880:196561 -k1,11868:18565860,14738880:196561 -k1,11868:19781507,14738880:196562 -k1,11868:21255365,14738880:196561 -k1,11868:24153975,14738880:196561 -k1,11868:26616116,14738880:196561 -k1,11868:28375712,14738880:196562 -k1,11868:29200108,14738880:196561 -k1,11868:30599910,14738880:196561 -k1,11868:31966991,14738880:0 -) -(1,11869:7246811,15580368:24720180,513147,126483 -k1,11868:8478420,15580368:212524 -k1,11868:11386440,15580368:212524 -k1,11868:12130460,15580368:212523 -k1,11868:14714732,15580368:212524 -k1,11868:15578684,15580368:212524 -k1,11868:16810293,15580368:212524 -k1,11868:19288397,15580368:212524 -k1,11868:20890283,15580368:212523 -k1,11868:22294252,15580368:212524 -k1,11868:24128792,15580368:212524 -k1,11868:26351961,15580368:212524 -k1,11868:26920344,15580368:212523 -k1,11868:28522231,15580368:212524 -k1,11868:30611051,15580368:212524 -k1,11869:31966991,15580368:0 -) -(1,11869:7246811,16421856:24720180,505283,134348 -g1,11868:9665089,16421856 -g1,11868:11253681,16421856 -g1,11868:12104338,16421856 -g1,11868:13051333,16421856 -g1,11868:14763788,16421856 -g1,11868:15579055,16421856 -g1,11868:16797369,16421856 -k1,11869:31966991,16421856:13438161 -g1,11869:31966991,16421856 -) -v1,11871:7246811,17612322:0,393216,0 -(1,11878:7246811,20566964:24720180,3347858,196608 -g1,11878:7246811,20566964 -g1,11878:7246811,20566964 -g1,11878:7050203,20566964 -(1,11878:7050203,20566964:0,3347858,196608 -r1,11893:32163599,20566964:25113396,3544466,196608 -k1,11878:7050203,20566964:-25113396 -) -(1,11878:7050203,20566964:25113396,3347858,196608 -[1,11878:7246811,20566964:24720180,3151250,0 -(1,11873:7246811,17819940:24720180,404226,107478 -(1,11872:7246811,17819940:0,0,0 -g1,11872:7246811,17819940 -g1,11872:7246811,17819940 -g1,11872:6919131,17819940 -(1,11872:6919131,17819940:0,0,0 -) -g1,11872:7246811,17819940 -) -k1,11873:7246811,17819940:0 -g1,11873:11040560,17819940 -g1,11873:11672852,17819940 -k1,11873:11672852,17819940:0 -h1,11873:13885872,17819940:0,0,0 -k1,11873:31966992,17819940:18081120 -g1,11873:31966992,17819940 -) -(1,11874:7246811,18486118:24720180,404226,107478 -h1,11874:7246811,18486118:0,0,0 -g1,11874:7562957,18486118 -g1,11874:7879103,18486118 -g1,11874:8195249,18486118 -g1,11874:8511395,18486118 -g1,11874:8827541,18486118 -g1,11874:9143687,18486118 -g1,11874:9459833,18486118 -g1,11874:11988999,18486118 -g1,11874:12621291,18486118 -g1,11874:14518166,18486118 -g1,11874:15150458,18486118 -g1,11874:17047333,18486118 -g1,11874:17679625,18486118 -g1,11874:18311917,18486118 -g1,11874:20208791,18486118 -h1,11874:20524937,18486118:0,0,0 -k1,11874:31966991,18486118:11442054 -g1,11874:31966991,18486118 -) -(1,11875:7246811,19152296:24720180,404226,107478 -h1,11875:7246811,19152296:0,0,0 -g1,11875:7562957,19152296 -g1,11875:7879103,19152296 -g1,11875:12937435,19152296 -g1,11875:13569727,19152296 -g1,11875:14518165,19152296 -h1,11875:14834311,19152296:0,0,0 -k1,11875:31966991,19152296:17132680 -g1,11875:31966991,19152296 -) -(1,11876:7246811,19818474:24720180,410518,107478 -h1,11876:7246811,19818474:0,0,0 -k1,11876:7916799,19818474:669988 -k1,11876:8586786,19818474:669987 -k1,11876:13998960,19818474:669988 -k1,11876:14985093,19818474:669987 -k1,11876:22294140,19818474:669988 -k1,11876:23912565,19818474:669988 -k1,11876:25214843,19818474:669987 -k1,11876:27149414,19818474:669988 -k1,11876:29400130,19818474:669988 -k1,11876:30386263,19818474:669987 -k1,11876:31966991,19818474:0 -) -(1,11876:7246811,20484652:24720180,404226,82312 -g1,11876:9143686,20484652 -g1,11876:10724415,20484652 -g1,11876:11356707,20484652 -h1,11876:12621290,20484652:0,0,0 -k1,11876:31966990,20484652:19345700 -g1,11876:31966990,20484652 -) -] -) -g1,11878:31966991,20566964 -g1,11878:7246811,20566964 -g1,11878:7246811,20566964 -g1,11878:31966991,20566964 -g1,11878:31966991,20566964 -) -h1,11878:7246811,20763572:0,0,0 -(1,11883:7246811,21954038:24720180,513147,134348 -h1,11881:7246811,21954038:983040,0,0 -k1,11881:9666618,21954038:240080 -k1,11881:11183995,21954038:240080 -k1,11881:13689655,21954038:240080 -k1,11881:15319099,21954038:240081 -k1,11881:16663461,21954038:240080 -k1,11881:18189357,21954038:240080 -k1,11881:19177203,21954038:240080 -k1,11881:22249094,21954038:240080 -k1,11881:24134129,21954038:240081 -k1,11881:26109602,21954038:240080 -k1,11881:27368767,21954038:240080 -k1,11881:30576972,21954038:240080 -k1,11881:31966991,21954038:0 -) -(1,11883:7246811,22620216:24720180,513147,134348 -k1,11881:10392211,22620216:225116 -k1,11881:11689496,22620216:225116 -k1,11881:12980884,22620216:225117 -k1,11881:14225085,22620216:225116 -k1,11881:17125381,22620216:225116 -k1,11881:20097111,22620216:225116 -k1,11881:21889848,22620216:225116 -k1,11881:24277651,22620216:225116 -k1,11881:25734845,22620216:225117 -k1,11881:28238648,22620216:225116 -h1,11881:29209236,22620216:0,0,0 -k1,11881:29434352,22620216:225116 -k1,11881:30468838,22620216:225116 -k1,11881:31966991,22620216:0 -) -(1,11883:7246811,23286394:24720180,505283,95026 -h1,11881:8442188,23286394:0,0,0 -g1,11881:9022181,23286394 -k1,11883:31966991,23286394:22944810 -g1,11883:31966991,23286394 -) -v1,11883:7246811,24476860:0,393216,0 -(1,11890:7246811,26790490:24720180,2706846,196608 -g1,11890:7246811,26790490 -g1,11890:7246811,26790490 -g1,11890:7050203,26790490 -(1,11890:7050203,26790490:0,2706846,196608 -r1,11893:32163599,26790490:25113396,2903454,196608 -k1,11890:7050203,26790490:-25113396 -) -(1,11890:7050203,26790490:25113396,2706846,196608 -[1,11890:7246811,26790490:24720180,2510238,0 -(1,11885:7246811,24684478:24720180,404226,107478 -(1,11884:7246811,24684478:0,0,0 -g1,11884:7246811,24684478 -g1,11884:7246811,24684478 -g1,11884:6919131,24684478 -(1,11884:6919131,24684478:0,0,0 -) -g1,11884:7246811,24684478 -) -k1,11885:7246811,24684478:0 -g1,11885:11040560,24684478 -g1,11885:11672852,24684478 -k1,11885:11672852,24684478:0 -h1,11885:13885872,24684478:0,0,0 -k1,11885:31966992,24684478:18081120 -g1,11885:31966992,24684478 -) -(1,11886:7246811,25350656:24720180,404226,107478 -h1,11886:7246811,25350656:0,0,0 -g1,11886:7562957,25350656 -g1,11886:7879103,25350656 -g1,11886:8195249,25350656 -g1,11886:8511395,25350656 -g1,11886:8827541,25350656 -g1,11886:9143687,25350656 -g1,11886:9459833,25350656 -g1,11886:11988999,25350656 -g1,11886:12621291,25350656 -g1,11886:14518166,25350656 -g1,11886:15150458,25350656 -g1,11886:17047333,25350656 -g1,11886:17679625,25350656 -g1,11886:18311917,25350656 -g1,11886:20208791,25350656 -h1,11886:20524937,25350656:0,0,0 -k1,11886:31966991,25350656:11442054 -g1,11886:31966991,25350656 -) -(1,11887:7246811,26016834:24720180,404226,107478 -h1,11887:7246811,26016834:0,0,0 -g1,11887:7562957,26016834 -g1,11887:7879103,26016834 -g1,11887:12937435,26016834 -g1,11887:13569727,26016834 -g1,11887:14518165,26016834 -h1,11887:14834311,26016834:0,0,0 -k1,11887:31966991,26016834:17132680 -g1,11887:31966991,26016834 -) -(1,11888:7246811,26683012:24720180,404226,107478 -h1,11888:7246811,26683012:0,0,0 -k1,11888:7510744,26683012:263933 -k1,11888:7774676,26683012:263932 -k1,11888:12780795,26683012:263933 -k1,11888:13360873,26683012:263932 -k1,11888:13940952,26683012:263933 -k1,11888:15469466,26683012:263932 -k1,11888:18262565,26683012:263933 -k1,11888:18842643,26683012:263932 -k1,11888:19738868,26683012:263933 -k1,11888:20951237,26683012:263932 -k1,11888:21847461,26683012:263933 -k1,11888:23059831,26683012:263932 -k1,11888:24904492,26683012:263933 -k1,11888:25484570,26683012:263932 -k1,11888:28593814,26683012:263933 -k1,11888:30122329,26683012:263932 -k1,11888:30702408,26683012:263933 -h1,11888:31966991,26683012:0,0,0 -k1,11888:31966991,26683012:0 -k1,11888:31966991,26683012:0 -) -] -) -g1,11890:31966991,26790490 -g1,11890:7246811,26790490 -g1,11890:7246811,26790490 -g1,11890:31966991,26790490 -g1,11890:31966991,26790490 -) -h1,11890:7246811,26987098:0,0,0 -] -) -] -r1,11893:32583029,28101210:26214,15955527,0 -) -] -) -) -g1,11893:32583029,27511386 -) -h1,11893:6630773,28127424:0,0,0 -(1,11896:6630773,31459280:25952256,32768,229376 -(1,11896:6630773,31459280:0,32768,229376 -(1,11896:6630773,31459280:5505024,32768,229376 -r1,11896:12135797,31459280:5505024,262144,229376 -) -k1,11896:6630773,31459280:-5505024 -) -(1,11896:6630773,31459280:25952256,32768,0 -r1,11896:32583029,31459280:25952256,32768,0 -) -) -(1,11896:6630773,33063608:25952256,606339,14155 -(1,11896:6630773,33063608:1974731,575668,0 -g1,11896:6630773,33063608 -g1,11896:8605504,33063608 -) -k1,11896:32583029,33063608:19476774 -g1,11896:32583029,33063608 -) -(1,11900:6630773,34298312:25952256,513147,134348 -k1,11899:9795316,34298312:319625 -k1,11899:13622428,34298312:319625 -k1,11899:16468466,34298312:319625 -k1,11899:19550433,34298312:319624 -k1,11899:23085254,34298312:319625 -k1,11899:25179594,34298312:319625 -(1,11899:25179594,34298312:0,452978,122846 -r1,11899:29406690,34298312:4227096,575824,122846 -k1,11899:25179594,34298312:-4227096 -) -(1,11899:25179594,34298312:4227096,452978,122846 -k1,11899:25179594,34298312:3277 -h1,11899:29403413,34298312:0,411205,112570 -) -k1,11899:29726315,34298312:319625 -k1,11900:32583029,34298312:0 -) -(1,11900:6630773,35139800:25952256,505283,126483 -(1,11899:6630773,35139800:0,452978,115847 -r1,11899:8395886,35139800:1765113,568825,115847 -k1,11899:6630773,35139800:-1765113 -) -(1,11899:6630773,35139800:1765113,452978,115847 -k1,11899:6630773,35139800:3277 -h1,11899:8392609,35139800:0,411205,112570 -) -k1,11899:8808520,35139800:238964 -k1,11899:10238929,35139800:238964 -(1,11899:10238929,35139800:0,452978,122846 -r1,11899:14114313,35139800:3875384,575824,122846 -k1,11899:10238929,35139800:-3875384 -) -(1,11899:10238929,35139800:3875384,452978,122846 -k1,11899:10238929,35139800:3277 -h1,11899:14111036,35139800:0,411205,112570 -) -k1,11899:14353277,35139800:238964 -k1,11899:17448954,35139800:238963 -(1,11899:17448954,35139800:0,452978,115847 -r1,11899:20269203,35139800:2820249,568825,115847 -k1,11899:17448954,35139800:-2820249 -) -(1,11899:17448954,35139800:2820249,452978,115847 -k1,11899:17448954,35139800:3277 -h1,11899:20265926,35139800:0,411205,112570 -) -k1,11899:20681837,35139800:238964 -k1,11899:22387497,35139800:238964 -k1,11899:25152874,35139800:238964 -(1,11899:25152874,35139800:0,414482,115847 -r1,11899:25511140,35139800:358266,530329,115847 -k1,11899:25152874,35139800:-358266 -) -(1,11899:25152874,35139800:358266,414482,115847 -k1,11899:25152874,35139800:3277 -h1,11899:25507863,35139800:0,411205,112570 -) -k1,11899:25923774,35139800:238964 -(1,11899:25923774,35139800:0,414482,115847 -r1,11899:26282040,35139800:358266,530329,115847 -k1,11899:25923774,35139800:-358266 -) -(1,11899:25923774,35139800:358266,414482,115847 -k1,11899:25923774,35139800:3277 -h1,11899:26278763,35139800:0,411205,112570 -) -k1,11899:26694674,35139800:238964 -(1,11899:26694674,35139800:0,452978,115847 -r1,11899:28459787,35139800:1765113,568825,115847 -k1,11899:26694674,35139800:-1765113 -) -(1,11899:26694674,35139800:1765113,452978,115847 -k1,11899:26694674,35139800:3277 -h1,11899:28456510,35139800:0,411205,112570 -) -k1,11899:28698750,35139800:238963 -k1,11899:30129159,35139800:238964 -(1,11899:30129159,35139800:0,452978,115847 -r1,11899:31542560,35139800:1413401,568825,115847 -k1,11899:30129159,35139800:-1413401 -) -(1,11899:30129159,35139800:1413401,452978,115847 -k1,11899:30129159,35139800:3277 -h1,11899:31539283,35139800:0,411205,112570 -) -k1,11899:31955194,35139800:238964 -k1,11899:32583029,35139800:0 -) -(1,11900:6630773,35981288:25952256,513147,134348 -k1,11899:7987327,35981288:153313 -k1,11899:10419327,35981288:153313 -k1,11899:11440991,35981288:153312 -k1,11899:12726766,35981288:153313 -k1,11899:15549360,35981288:153313 -k1,11899:16721758,35981288:153313 -k1,11899:19637414,35981288:153313 -(1,11899:19637414,35981288:0,452978,122846 -r1,11899:23161086,35981288:3523672,575824,122846 -k1,11899:19637414,35981288:-3523672 -) -(1,11899:19637414,35981288:3523672,452978,122846 -k1,11899:19637414,35981288:3277 -h1,11899:23157809,35981288:0,411205,112570 -) -k1,11899:23314399,35981288:153313 -k1,11899:26251680,35981288:153312 -k1,11899:27021031,35981288:153313 -k1,11899:29754496,35981288:153313 -k1,11899:32583029,35981288:0 -) -(1,11900:6630773,36822776:25952256,513147,134348 -k1,11899:7990228,36822776:168010 -k1,11899:9850379,36822776:168011 -k1,11899:13010108,36822776:168010 -k1,11899:14745740,36822776:168011 -k1,11899:17824204,36822776:168010 -k1,11899:19276721,36822776:168011 -k1,11899:21596933,36822776:168010 -k1,11899:24767147,36822776:168011 -k1,11899:26131844,36822776:168010 -k1,11899:28688642,36822776:168011 -k1,11899:31015408,36822776:168010 -k1,11899:32583029,36822776:0 -) -(1,11900:6630773,37664264:25952256,505283,126483 -k1,11899:8436038,37664264:203565 -k1,11899:10135789,37664264:203564 -k1,11899:13331073,37664264:203565 -k1,11899:14667100,37664264:203565 -k1,11899:15936935,37664264:203564 -k1,11899:16888266,37664264:203565 -k1,11899:19341027,37664264:203565 -k1,11899:20938543,37664264:203565 -k1,11899:22161192,37664264:203564 -k1,11899:26059021,37664264:203565 -k1,11899:27547092,37664264:203565 -k1,11899:30128958,37664264:203564 -k1,11899:31464985,37664264:203565 -k1,11899:32583029,37664264:0 -) -(1,11900:6630773,38505752:25952256,505283,126483 -g1,11899:8469057,38505752 -g1,11899:9319714,38505752 -g1,11899:10543926,38505752 -g1,11899:11762240,38505752 -k1,11900:32583029,38505752:19039520 -g1,11900:32583029,38505752 -) -(1,11902:6630773,39347240:25952256,513147,134348 -h1,11901:6630773,39347240:983040,0,0 -k1,11901:9858531,39347240:142978 -k1,11901:10949159,39347240:142977 -k1,11901:14074025,39347240:142978 -k1,11901:16852205,39347240:142977 -k1,11901:20435168,39347240:142978 -k1,11901:22626145,39347240:142977 -k1,11901:23124983,39347240:142978 -k1,11901:25673133,39347240:142978 -k1,11901:26502272,39347240:142977 -k1,11901:27415953,39347240:142978 -k1,11901:30804928,39347240:142977 -k1,11901:31563944,39347240:142978 -k1,11901:32583029,39347240:0 -) -(1,11902:6630773,40188728:25952256,505283,134348 -k1,11901:8423707,40188728:139461 -k1,11901:9801142,40188728:139460 -k1,11901:10626765,40188728:139461 -k1,11901:13448614,40188728:139460 -k1,11901:15636075,40188728:139461 -k1,11901:16131396,40188728:139461 -k1,11901:19278303,40188728:139460 -k1,11901:20103926,40188728:139461 -k1,11901:21014089,40188728:139460 -k1,11901:24399548,40188728:139461 -k1,11901:25166844,40188728:139461 -k1,11901:26509545,40188728:139460 -k1,11901:28927693,40188728:139461 -k1,11901:29935505,40188728:139460 -k1,11901:31207428,40188728:139461 -k1,11901:32583029,40188728:0 -) -(1,11902:6630773,41030216:25952256,513147,134348 -k1,11901:9519094,41030216:219040 -k1,11901:13178120,41030216:219041 -k1,11901:15282631,41030216:219040 -k1,11901:16976887,41030216:219041 -k1,11901:17882089,41030216:219040 -k1,11901:18456989,41030216:219040 -k1,11901:20941610,41030216:219041 -k1,11901:23565822,41030216:219040 -(1,11901:23565822,41030216:0,452978,115847 -r1,11901:28144630,41030216:4578808,568825,115847 -k1,11901:23565822,41030216:-4578808 -) -(1,11901:23565822,41030216:4578808,452978,115847 -k1,11901:23565822,41030216:3277 -h1,11901:28141353,41030216:0,411205,112570 -) -k1,11901:28363671,41030216:219041 -k1,11901:30468182,41030216:219040 -k1,11901:32583029,41030216:0 -) -(1,11902:6630773,41871704:25952256,513147,134348 -k1,11901:8837917,41871704:196499 -k1,11901:11448761,41871704:196498 -k1,11901:12331422,41871704:196499 -k1,11901:15286986,41871704:196498 -k1,11901:16680172,41871704:196499 -k1,11901:20316655,41871704:196498 -k1,11901:21797660,41871704:196499 -k1,11901:23469374,41871704:196499 -k1,11901:25367842,41871704:196498 -k1,11901:28246730,41871704:196499 -k1,11901:29129390,41871704:196498 -k1,11901:31591469,41871704:196499 -k1,11901:32583029,41871704:0 -) -(1,11902:6630773,42713192:25952256,505283,134348 -g1,11901:9920025,42713192 -g1,11901:10735292,42713192 -g1,11901:13213208,42713192 -h1,11901:14755926,42713192:0,0,0 -g1,11901:14955155,42713192 -g1,11901:17834807,42713192 -g1,11901:19427987,42713192 -g1,11901:20646301,42713192 -g1,11901:25469095,42713192 -k1,11902:32583029,42713192:4280813 -g1,11902:32583029,42713192 -) -] -(1,11907:32583029,45706769:0,0,0 -g1,11907:32583029,45706769 -) -) -] -(1,11907:6630773,47279633:25952256,0,0 -h1,11907:6630773,47279633:25952256,0,0 -) -] -h1,11907:4262630,4025873:0,0,0 -] -!23587 -}225 -Input:1517:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1518:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1519:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1520:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1521:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1522:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1523:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1524:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1525:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1526:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1527:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 -{226 -[1,11966:4262630,47279633:28320399,43253760,0 -(1,11966:4262630,4025873:0,0,0 -[1,11966:-473657,4025873:25952256,0,0 -(1,11966:-473657,-710414:25952256,0,0 -h1,11966:-473657,-710414:0,0,0 -(1,11966:-473657,-710414:0,0,0 -(1,11966:-473657,-710414:0,0,0 -g1,11966:-473657,-710414 -(1,11966:-473657,-710414:65781,0,65781 -g1,11966:-407876,-710414 -[1,11966:-407876,-644633:0,0,0 ] +(1,11829:32583029,45706769:0,0,0 +g1,11829:32583029,45706769 ) -k1,11966:-473657,-710414:-65781 ) +] +(1,11829:6630773,47279633:25952256,0,0 +h1,11829:6630773,47279633:25952256,0,0 ) -k1,11966:25478599,-710414:25952256 -g1,11966:25478599,-710414 +] +h1,11829:4262630,4025873:0,0,0 +] +!19587 +}224 +Input:1493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 +{225 +[1,11885:4262630,47279633:28320399,43253760,0 +(1,11885:4262630,4025873:0,0,0 +[1,11885:-473657,4025873:25952256,0,0 +(1,11885:-473657,-710414:25952256,0,0 +h1,11885:-473657,-710414:0,0,0 +(1,11885:-473657,-710414:0,0,0 +(1,11885:-473657,-710414:0,0,0 +g1,11885:-473657,-710414 +(1,11885:-473657,-710414:65781,0,65781 +g1,11885:-407876,-710414 +[1,11885:-407876,-644633:0,0,0 +] +) +k1,11885:-473657,-710414:-65781 +) +) +k1,11885:25478599,-710414:25952256 +g1,11885:25478599,-710414 ) ] ) -[1,11966:6630773,47279633:25952256,43253760,0 -[1,11966:6630773,4812305:25952256,786432,0 -(1,11966:6630773,4812305:25952256,485622,11795 -(1,11966:6630773,4812305:25952256,485622,11795 -g1,11966:3078558,4812305 -[1,11966:3078558,4812305:0,0,0 -(1,11966:3078558,2439708:0,1703936,0 -k1,11966:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,11966:2537886,2439708:1179648,16384,0 +[1,11885:6630773,47279633:25952256,43253760,0 +[1,11885:6630773,4812305:25952256,786432,0 +(1,11885:6630773,4812305:25952256,513147,134348 +(1,11885:6630773,4812305:25952256,513147,134348 +g1,11885:3078558,4812305 +[1,11885:3078558,4812305:0,0,0 +(1,11885:3078558,2439708:0,1703936,0 +k1,11885:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11885:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,11966:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11885:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,11966:3078558,4812305:0,0,0 -(1,11966:3078558,2439708:0,1703936,0 -g1,11966:29030814,2439708 -g1,11966:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,11966:36151628,1915420:16384,1179648,0 +[1,11885:3078558,4812305:0,0,0 +(1,11885:3078558,2439708:0,1703936,0 +g1,11885:29030814,2439708 +g1,11885:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11885:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,11966:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11885:37855564,2439708:1179648,16384,0 ) ) -k1,11966:3078556,2439708:-34777008 +k1,11885:3078556,2439708:-34777008 ) ] -[1,11966:3078558,4812305:0,0,0 -(1,11966:3078558,49800853:0,16384,2228224 -k1,11966:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,11966:2537886,49800853:1179648,16384,0 +[1,11885:3078558,4812305:0,0,0 +(1,11885:3078558,49800853:0,16384,2228224 +k1,11885:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11885:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,11966:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11885:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,11966:3078558,4812305:0,0,0 -(1,11966:3078558,49800853:0,16384,2228224 -g1,11966:29030814,49800853 -g1,11966:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,11966:36151628,51504789:16384,1179648,0 +[1,11885:3078558,4812305:0,0,0 +(1,11885:3078558,49800853:0,16384,2228224 +g1,11885:29030814,49800853 +g1,11885:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11885:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,11966:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11885:37855564,49800853:1179648,16384,0 ) ) -k1,11966:3078556,49800853:-34777008 -) -] -g1,11966:6630773,4812305 -g1,11966:6630773,4812305 -g1,11966:10347975,4812305 -k1,11966:31387651,4812305:21039676 -) -) -] -[1,11966:6630773,45706769:25952256,40108032,0 -(1,11966:6630773,45706769:25952256,40108032,0 -(1,11966:6630773,45706769:0,0,0 -g1,11966:6630773,45706769 -) -[1,11966:6630773,45706769:25952256,40108032,0 -(1,11903:6630773,6254097:25952256,555811,8650 -(1,11903:6630773,6254097:2450326,527696,0 -g1,11903:6630773,6254097 -g1,11903:9081099,6254097 -) -k1,11903:32583028,6254097:21628320 -g1,11903:32583028,6254097 -) -(1,11907:6630773,7488801:25952256,505283,126483 -k1,11906:7627617,7488801:178955 -k1,11906:9882098,7488801:178956 -k1,11906:12094635,7488801:178955 -k1,11906:12889628,7488801:178955 -k1,11906:14271825,7488801:178956 -k1,11906:17042074,7488801:178955 -(1,11906:17042074,7488801:0,452978,122846 -r1,11906:21269170,7488801:4227096,575824,122846 -k1,11906:17042074,7488801:-4227096 -) -(1,11906:17042074,7488801:4227096,452978,122846 -k1,11906:17042074,7488801:3277 -h1,11906:21265893,7488801:0,411205,112570 -) -k1,11906:21621795,7488801:178955 -k1,11906:22905033,7488801:178956 -k1,11906:23831754,7488801:178955 -k1,11906:25523935,7488801:178955 -k1,11906:26354319,7488801:178956 -k1,11906:27730617,7488801:178955 -k1,11906:28265432,7488801:178955 -k1,11906:30002179,7488801:178956 -k1,11906:31575085,7488801:178955 -k1,11907:32583029,7488801:0 -) -(1,11907:6630773,8330289:25952256,505283,126483 -k1,11906:10055421,8330289:147848 -k1,11906:14012878,8330289:147849 -k1,11906:14922254,8330289:147848 -k1,11906:17688922,8330289:147849 -k1,11906:18519655,8330289:147848 -k1,11906:21482931,8330289:147849 -k1,11906:24243044,8330289:147848 -(1,11906:24243044,8330289:0,452978,115847 -r1,11906:25304733,8330289:1061689,568825,115847 -k1,11906:24243044,8330289:-1061689 -) -(1,11906:24243044,8330289:1061689,452978,115847 -k1,11906:24243044,8330289:3277 -h1,11906:25301456,8330289:0,411205,112570 -) -k1,11906:25452582,8330289:147849 -k1,11906:28600013,8330289:147848 -k1,11906:29766947,8330289:147849 -k1,11906:32583029,8330289:0 -) -(1,11907:6630773,9171777:25952256,513147,134348 -k1,11906:7491916,9171777:201851 -k1,11906:10596357,9171777:201851 -k1,11906:11414246,9171777:201851 -k1,11906:12635181,9171777:201850 -k1,11906:15267107,9171777:201851 -k1,11906:16128250,9171777:201851 -k1,11906:17349186,9171777:201851 -k1,11906:19032806,9171777:201851 -k1,11906:19704550,9171777:201851 -k1,11906:20437898,9171777:201851 -k1,11906:20995609,9171777:201851 -k1,11906:23817588,9171777:201850 -k1,11906:26704449,9171777:201851 -k1,11906:28097745,9171777:201851 -k1,11906:29997634,9171777:201851 -k1,11906:32583029,9171777:0 -) -(1,11907:6630773,10013265:25952256,505283,126483 -g1,11906:7481430,10013265 -g1,11906:9470447,10013265 -g1,11906:10025536,10013265 -g1,11906:13795166,10013265 -g1,11906:15610513,10013265 -g1,11906:17381951,10013265 -g1,11906:18112677,10013265 -g1,11906:19825132,10013265 -g1,11906:20675789,10013265 -g1,11906:23916544,10013265 -g1,11906:25319014,10013265 -k1,11907:32583029,10013265:4579005 -g1,11907:32583029,10013265 -) -(1,11910:6630773,10854753:25952256,513147,126483 -h1,11908:6630773,10854753:983040,0,0 -k1,11908:8961590,10854753:151090 -k1,11908:10418813,10854753:151090 -k1,11908:13561622,10854753:151090 -k1,11908:15355044,10854753:151090 -k1,11908:17675376,10854753:151090 -k1,11908:19607736,10854753:151091 -k1,11908:22288516,10854753:151090 -k1,11908:25059735,10854753:151090 -k1,11908:28052466,10854753:151090 -k1,11908:29195116,10854753:151090 -k1,11908:31931601,10854753:151090 -k1,11908:32583029,10854753:0 -) -(1,11910:6630773,11696241:25952256,513147,115847 -k1,11908:8293566,11696241:196097 -(1,11908:8293566,11696241:0,414482,115847 -r1,11908:8651832,11696241:358266,530329,115847 -k1,11908:8293566,11696241:-358266 -) -(1,11908:8293566,11696241:358266,414482,115847 -k1,11908:8293566,11696241:3277 -h1,11908:8648555,11696241:0,411205,112570 -) -k1,11908:8847930,11696241:196098 -k1,11908:10235472,11696241:196097 -(1,11908:10235472,11696241:0,414482,115847 -r1,11908:10593738,11696241:358266,530329,115847 -k1,11908:10235472,11696241:-358266 -) -(1,11908:10235472,11696241:358266,414482,115847 -k1,11908:10235472,11696241:3277 -h1,11908:10590461,11696241:0,411205,112570 -) -k1,11908:10963505,11696241:196097 -k1,11909:12876645,11696241:196097 -k1,11909:15148924,11696241:196098 -k1,11909:16491246,11696241:196097 -k1,11909:18431256,11696241:196097 -k1,11909:19575004,11696241:196097 -(1,11909:19575004,11696241:0,452978,115847 -r1,11909:21340117,11696241:1765113,568825,115847 -k1,11909:19575004,11696241:-1765113 -) -(1,11909:19575004,11696241:1765113,452978,115847 -k1,11909:19575004,11696241:3277 -h1,11909:21336840,11696241:0,411205,112570 -) -k1,11909:21709885,11696241:196098 -k1,11909:23406756,11696241:196097 -k1,11909:24218891,11696241:196097 -k1,11909:25587427,11696241:196097 -k1,11909:28718227,11696241:196098 -k1,11909:30071034,11696241:196097 -k1,11909:32583029,11696241:0 -) -(1,11910:6630773,12537729:25952256,513147,95026 -g1,11909:7777653,12537729 -g1,11909:10597011,12537729 -g1,11909:13637881,12537729 -g1,11909:17821699,12537729 -g1,11909:19212373,12537729 -g1,11909:21884275,12537729 -g1,11909:23031155,12537729 -g1,11909:25454676,12537729 -k1,11910:32583029,12537729:4014738 -g1,11910:32583029,12537729 -) -v1,11912:6630773,13728195:0,393216,0 -(1,11918:6630773,15375647:25952256,2040668,196608 -g1,11918:6630773,15375647 -g1,11918:6630773,15375647 -g1,11918:6434165,15375647 -(1,11918:6434165,15375647:0,2040668,196608 -r1,11918:32779637,15375647:26345472,2237276,196608 -k1,11918:6434165,15375647:-26345472 -) -(1,11918:6434165,15375647:26345472,2040668,196608 -[1,11918:6630773,15375647:25952256,1844060,0 -(1,11914:6630773,13935813:25952256,404226,107478 -(1,11913:6630773,13935813:0,0,0 -g1,11913:6630773,13935813 -g1,11913:6630773,13935813 -g1,11913:6303093,13935813 -(1,11913:6303093,13935813:0,0,0 -) -g1,11913:6630773,13935813 -) -k1,11914:6630773,13935813:0 -g1,11914:10424522,13935813 -g1,11914:11056814,13935813 -k1,11914:11056814,13935813:0 -h1,11914:13269834,13935813:0,0,0 -k1,11914:32583030,13935813:19313196 -g1,11914:32583030,13935813 -) -(1,11915:6630773,14601991:25952256,404226,107478 -h1,11915:6630773,14601991:0,0,0 -g1,11915:6946919,14601991 -g1,11915:7263065,14601991 -g1,11915:7579211,14601991 -g1,11915:7895357,14601991 -g1,11915:8211503,14601991 -g1,11915:8527649,14601991 -g1,11915:8843795,14601991 -g1,11915:10740670,14601991 -g1,11915:11372962,14601991 -g1,11915:13269837,14601991 -g1,11915:13902129,14601991 -g1,11915:14534421,14601991 -g1,11915:16115150,14601991 -g1,11915:18012024,14601991 -g1,11915:18644316,14601991 -g1,11915:20541190,14601991 -h1,11915:20857336,14601991:0,0,0 -k1,11915:32583029,14601991:11725693 -g1,11915:32583029,14601991 -) -(1,11916:6630773,15268169:25952256,404226,107478 -h1,11916:6630773,15268169:0,0,0 -g1,11916:6946919,15268169 -g1,11916:7263065,15268169 -k1,11916:7263065,15268169:0 -h1,11916:11056813,15268169:0,0,0 -k1,11916:32583029,15268169:21526216 -g1,11916:32583029,15268169 -) -] -) -g1,11918:32583029,15375647 -g1,11918:6630773,15375647 -g1,11918:6630773,15375647 -g1,11918:32583029,15375647 -g1,11918:32583029,15375647 -) -h1,11918:6630773,15572255:0,0,0 -(1,11921:6630773,25224768:25952256,9062689,0 -k1,11921:10523651,25224768:3892878 -h1,11920:10523651,25224768:0,0,0 -(1,11920:10523651,25224768:18166500,9062689,0 -(1,11920:10523651,25224768:18167381,9062712,0 -(1,11920:10523651,25224768:18167381,9062712,0 -(1,11920:10523651,25224768:0,9062712,0 -(1,11920:10523651,25224768:0,14155776,0 -(1,11920:10523651,25224768:28377088,14155776,0 -) -k1,11920:10523651,25224768:-28377088 -) -) -g1,11920:28691032,25224768 -) -) -) -g1,11921:28690151,25224768 -k1,11921:32583029,25224768:3892878 -) -(1,11929:6630773,26066256:25952256,513147,115847 -h1,11928:6630773,26066256:983040,0,0 -k1,11928:8291987,26066256:200417 -k1,11928:9360756,26066256:200417 -k1,11928:11953892,26066256:200417 -(1,11928:11953892,26066256:0,452978,115847 -r1,11928:13015581,26066256:1061689,568825,115847 -k1,11928:11953892,26066256:-1061689 -) -(1,11928:11953892,26066256:1061689,452978,115847 -k1,11928:11953892,26066256:3277 -h1,11928:13012304,26066256:0,411205,112570 -) -k1,11928:13215998,26066256:200417 -k1,11928:14683881,26066256:200417 -k1,11928:15240158,26066256:200417 -k1,11928:17508236,26066256:200417 -k1,11928:18064513,26066256:200417 -k1,11928:20790688,26066256:200417 -k1,11928:22607223,26066256:200417 -k1,11928:24379849,26066256:200417 -k1,11928:25111763,26066256:200417 -k1,11928:26825406,26066256:200417 -k1,11928:29353006,26066256:200417 -k1,11928:30212715,26066256:200417 -k1,11928:30768992,26066256:200417 -k1,11929:32583029,26066256:0 -) -(1,11929:6630773,26907744:25952256,355205,7863 -g1,11928:8799359,26907744 -k1,11929:32583028,26907744:22453288 -g1,11929:32583028,26907744 -) -v1,11931:6630773,28098210:0,393216,0 -(1,11937:6630773,29745662:25952256,2040668,196608 -g1,11937:6630773,29745662 -g1,11937:6630773,29745662 -g1,11937:6434165,29745662 -(1,11937:6434165,29745662:0,2040668,196608 -r1,11937:32779637,29745662:26345472,2237276,196608 -k1,11937:6434165,29745662:-26345472 -) -(1,11937:6434165,29745662:26345472,2040668,196608 -[1,11937:6630773,29745662:25952256,1844060,0 -(1,11933:6630773,28305828:25952256,404226,107478 -(1,11932:6630773,28305828:0,0,0 -g1,11932:6630773,28305828 -g1,11932:6630773,28305828 -g1,11932:6303093,28305828 -(1,11932:6303093,28305828:0,0,0 -) -g1,11932:6630773,28305828 -) -k1,11933:6630773,28305828:0 -g1,11933:10424522,28305828 -g1,11933:11056814,28305828 -k1,11933:11056814,28305828:0 -h1,11933:13269834,28305828:0,0,0 -k1,11933:32583030,28305828:19313196 -g1,11933:32583030,28305828 -) -(1,11934:6630773,28972006:25952256,410518,107478 -h1,11934:6630773,28972006:0,0,0 -g1,11934:6946919,28972006 -g1,11934:7263065,28972006 -g1,11934:7579211,28972006 -g1,11934:7895357,28972006 -g1,11934:8211503,28972006 -g1,11934:8527649,28972006 -g1,11934:8843795,28972006 -g1,11934:10740670,28972006 -g1,11934:11372962,28972006 -g1,11934:13269837,28972006 -g1,11934:13902129,28972006 -g1,11934:14534421,28972006 -g1,11934:16115150,28972006 -g1,11934:18012024,28972006 -g1,11934:18644316,28972006 -g1,11934:23070356,28972006 -h1,11934:23386502,28972006:0,0,0 -k1,11934:32583029,28972006:9196527 -g1,11934:32583029,28972006 -) -(1,11935:6630773,29638184:25952256,404226,107478 -h1,11935:6630773,29638184:0,0,0 -g1,11935:6946919,29638184 -g1,11935:7263065,29638184 -k1,11935:7263065,29638184:0 -h1,11935:11056813,29638184:0,0,0 -k1,11935:32583029,29638184:21526216 -g1,11935:32583029,29638184 -) -] -) -g1,11937:32583029,29745662 -g1,11937:6630773,29745662 -g1,11937:6630773,29745662 -g1,11937:32583029,29745662 -g1,11937:32583029,29745662 -) -h1,11937:6630773,29942270:0,0,0 -(1,11941:6630773,31308046:25952256,513147,115847 -h1,11940:6630773,31308046:983040,0,0 -k1,11940:8282888,31308046:191318 -k1,11940:9342558,31308046:191318 -k1,11940:11926595,31308046:191318 -(1,11940:11926595,31308046:0,452978,115847 -r1,11940:12988284,31308046:1061689,568825,115847 -k1,11940:11926595,31308046:-1061689 -) -(1,11940:11926595,31308046:1061689,452978,115847 -k1,11940:11926595,31308046:3277 -h1,11940:12985007,31308046:0,411205,112570 -) -k1,11940:13179602,31308046:191318 -k1,11940:14638386,31308046:191318 -k1,11940:15600407,31308046:191318 -k1,11940:18299131,31308046:191317 -k1,11940:20558110,31308046:191318 -k1,11940:21105288,31308046:191318 -k1,11940:24058949,31308046:191318 -k1,11940:26776025,31308046:191318 -k1,11940:28583461,31308046:191318 -k1,11940:30346988,31308046:191318 -k1,11940:31069803,31308046:191318 -k1,11940:32583029,31308046:0 -) -(1,11941:6630773,32149534:25952256,513147,126483 -g1,11940:7591530,32149534 -k1,11941:32583028,32149534:22552248 -g1,11941:32583028,32149534 -) -v1,11943:6630773,33340000:0,393216,0 -(1,11949:6630773,34987452:25952256,2040668,196608 -g1,11949:6630773,34987452 -g1,11949:6630773,34987452 -g1,11949:6434165,34987452 -(1,11949:6434165,34987452:0,2040668,196608 -r1,11949:32779637,34987452:26345472,2237276,196608 -k1,11949:6434165,34987452:-26345472 -) -(1,11949:6434165,34987452:26345472,2040668,196608 -[1,11949:6630773,34987452:25952256,1844060,0 -(1,11945:6630773,33547618:25952256,404226,107478 -(1,11944:6630773,33547618:0,0,0 -g1,11944:6630773,33547618 -g1,11944:6630773,33547618 -g1,11944:6303093,33547618 -(1,11944:6303093,33547618:0,0,0 -) -g1,11944:6630773,33547618 -) -k1,11945:6630773,33547618:0 -g1,11945:10424522,33547618 -g1,11945:11056814,33547618 -k1,11945:11056814,33547618:0 -h1,11945:13269834,33547618:0,0,0 -k1,11945:32583030,33547618:19313196 -g1,11945:32583030,33547618 -) -(1,11946:6630773,34213796:25952256,404226,107478 -h1,11946:6630773,34213796:0,0,0 -g1,11946:6946919,34213796 -g1,11946:7263065,34213796 -g1,11946:7579211,34213796 -g1,11946:7895357,34213796 -g1,11946:8211503,34213796 -g1,11946:8527649,34213796 -g1,11946:8843795,34213796 -g1,11946:10740670,34213796 -g1,11946:11372962,34213796 -g1,11946:13269837,34213796 -g1,11946:13902129,34213796 -g1,11946:14534421,34213796 -g1,11946:16115150,34213796 -g1,11946:18012024,34213796 -g1,11946:18644316,34213796 -g1,11946:23386502,34213796 -h1,11946:23702648,34213796:0,0,0 -k1,11946:32583029,34213796:8880381 -g1,11946:32583029,34213796 -) -(1,11947:6630773,34879974:25952256,404226,107478 -h1,11947:6630773,34879974:0,0,0 -g1,11947:6946919,34879974 -g1,11947:7263065,34879974 -k1,11947:7263065,34879974:0 -h1,11947:11056813,34879974:0,0,0 -k1,11947:32583029,34879974:21526216 -g1,11947:32583029,34879974 -) -] -) -g1,11949:32583029,34987452 -g1,11949:6630773,34987452 -g1,11949:6630773,34987452 -g1,11949:32583029,34987452 -g1,11949:32583029,34987452 -) -h1,11949:6630773,35184060:0,0,0 -v1,11953:6630773,37074124:0,393216,0 -(1,11954:6630773,40201644:25952256,3520736,616038 -g1,11954:6630773,40201644 -(1,11954:6630773,40201644:25952256,3520736,616038 -(1,11954:6630773,40817682:25952256,4136774,0 -[1,11954:6630773,40817682:25952256,4136774,0 -(1,11954:6630773,40791468:25952256,4084346,0 -r1,11954:6656987,40791468:26214,4084346,0 -[1,11954:6656987,40791468:25899828,4084346,0 -(1,11954:6656987,40201644:25899828,2904698,0 -[1,11954:7246811,40201644:24720180,2904698,0 -(1,11954:7246811,38384320:24720180,1087374,134348 -k1,11953:8813001,38384320:356487 -k1,11953:10253455,38384320:356488 -k1,11953:10965802,38384320:356487 -k1,11953:14084632,38384320:356487 -k1,11953:17422353,38384320:356488 -(1,11953:17422353,38384320:0,452978,115847 -r1,11954:18835754,38384320:1413401,568825,115847 -k1,11953:17422353,38384320:-1413401 -) -(1,11953:17422353,38384320:1413401,452978,115847 -k1,11953:17422353,38384320:3277 -h1,11953:18832477,38384320:0,411205,112570 -) -k1,11953:19192241,38384320:356487 -$1,11953:19192241,38384320 -$1,11953:19867262,38384320 -k1,11953:20223749,38384320:356487 -(1,11953:20223749,38384320:0,452978,115847 -r1,11954:21988862,38384320:1765113,568825,115847 -k1,11953:20223749,38384320:-1765113 -) -(1,11953:20223749,38384320:1765113,452978,115847 -k1,11953:20223749,38384320:3277 -h1,11953:21985585,38384320:0,411205,112570 -) -k1,11953:22519020,38384320:356488 -(1,11953:22519020,38384320:0,452978,115847 -r1,11954:23580709,38384320:1061689,568825,115847 -k1,11953:22519020,38384320:-1061689 -) -(1,11953:22519020,38384320:1061689,452978,115847 -k1,11953:22519020,38384320:3277 -h1,11953:23577432,38384320:0,411205,112570 -) -k1,11953:23937196,38384320:356487 -$1,11953:23937196,38384320 -$1,11953:24612217,38384320 -k1,11953:24968704,38384320:356487 -(1,11953:24968704,38384320:0,414482,115847 -r1,11954:25326970,38384320:358266,530329,115847 -k1,11953:24968704,38384320:-358266 -) -(1,11953:24968704,38384320:358266,414482,115847 -k1,11953:24968704,38384320:3277 -h1,11953:25323693,38384320:0,411205,112570 -) -k1,11953:25857128,38384320:356488 -k1,11953:29113583,38384320:356487 -k1,11953:30231598,38384320:356487 -k1,11954:31966991,38384320:0 -) -(1,11954:7246811,39225808:24720180,505283,115847 -(1,11953:7246811,39225808:0,452978,115847 -r1,11954:11473907,39225808:4227096,568825,115847 -k1,11953:7246811,39225808:-4227096 -) -(1,11953:7246811,39225808:4227096,452978,115847 -k1,11953:7246811,39225808:3277 -h1,11953:11470630,39225808:0,411205,112570 -) -k1,11953:11751361,39225808:277454 -k1,11953:14238690,39225808:277455 -(1,11953:14238690,39225808:0,452978,115847 -r1,11954:18817498,39225808:4578808,568825,115847 -k1,11953:14238690,39225808:-4578808 -) -(1,11953:14238690,39225808:4578808,452978,115847 -k1,11953:14238690,39225808:3277 -h1,11953:18814221,39225808:0,411205,112570 -) -k1,11953:19094952,39225808:277454 -k1,11953:20023834,39225808:277454 -k1,11953:21326272,39225808:277455 -k1,11953:23152342,39225808:277454 -k1,11953:26271437,39225808:277454 -k1,11953:27540452,39225808:277455 -k1,11953:30775546,39225808:277454 -k1,11953:31966991,39225808:0 -) -(1,11954:7246811,40067296:24720180,505283,134348 -g1,11953:8879968,40067296 -g1,11953:9985560,40067296 -g1,11953:11203874,40067296 -g1,11953:15721270,40067296 -g1,11953:17205005,40067296 -g1,11953:19534809,40067296 -g1,11953:21192869,40067296 -g1,11953:25899009,40067296 -g1,11953:28466709,40067296 -g1,11953:29685023,40067296 -k1,11954:31966991,40067296:718934 -g1,11954:31966991,40067296 -) -] -) -] -r1,11954:32583029,40791468:26214,4084346,0 -) -] -) -) -g1,11954:32583029,40201644 -) -h1,11954:6630773,40817682:0,0,0 -(1,11957:6630773,42183458:25952256,505283,134348 -h1,11956:6630773,42183458:983040,0,0 -k1,11956:9015330,42183458:204830 -k1,11956:12027721,42183458:204829 -k1,11956:14867754,42183458:204830 -k1,11956:16461947,42183458:204830 -k1,11956:18677421,42183458:204829 -k1,11956:20073696,42183458:204830 -k1,11956:23122788,42183458:204829 -k1,11956:25338263,42183458:204830 -k1,11956:26074590,42183458:204830 -k1,11956:29540490,42183458:204829 -k1,11956:30506848,42183458:204830 -k1,11956:32583029,42183458:0 -) -(1,11957:6630773,43024946:25952256,513147,134348 -k1,11956:9770007,43024946:294316 -k1,11956:11680441,43024946:294316 -k1,11956:14050938,43024946:294316 -k1,11956:15536699,43024946:294316 -k1,11956:17297711,43024946:294316 -k1,11956:20112542,43024946:294316 -k1,11956:22416847,43024946:294316 -k1,11956:23067023,43024946:294316 -k1,11956:25056100,43024946:294316 -k1,11956:27096295,43024946:294316 -k1,11956:29820686,43024946:294316 -k1,11956:32583029,43024946:0 -) -(1,11957:6630773,43866434:25952256,505283,134348 -g1,11956:9967866,43866434 -g1,11956:12802298,43866434 -g1,11956:14390890,43866434 -g1,11956:16600764,43866434 -g1,11956:17991438,43866434 -g1,11956:21065731,43866434 -k1,11957:32583029,43866434:8982365 -g1,11957:32583029,43866434 -) -v1,11959:6630773,45056900:0,393216,0 -] -(1,11966:32583029,45706769:0,0,0 -g1,11966:32583029,45706769 -) -) -] -(1,11966:6630773,47279633:25952256,0,0 -h1,11966:6630773,47279633:25952256,0,0 -) -] -h1,11966:4262630,4025873:0,0,0 -] -!21235 -}226 -Input:1528:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1529:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1530:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1531:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1532:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1533:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{227 -[1,12028:4262630,47279633:28320399,43253760,0 -(1,12028:4262630,4025873:0,0,0 -[1,12028:-473657,4025873:25952256,0,0 -(1,12028:-473657,-710414:25952256,0,0 -h1,12028:-473657,-710414:0,0,0 -(1,12028:-473657,-710414:0,0,0 -(1,12028:-473657,-710414:0,0,0 -g1,12028:-473657,-710414 -(1,12028:-473657,-710414:65781,0,65781 -g1,12028:-407876,-710414 -[1,12028:-407876,-644633:0,0,0 +k1,11885:3078556,49800853:-34777008 +) ] +g1,11885:6630773,4812305 +k1,11885:25712890,4812305:17886740 +g1,11885:29057847,4812305 +g1,11885:29873114,4812305 ) -k1,12028:-473657,-710414:-65781 ) +] +[1,11885:6630773,45706769:25952256,40108032,0 +(1,11885:6630773,45706769:25952256,40108032,0 +(1,11885:6630773,45706769:0,0,0 +g1,11885:6630773,45706769 ) -k1,12028:25478599,-710414:25952256 -g1,12028:25478599,-710414 +[1,11885:6630773,45706769:25952256,40108032,0 +v1,11829:6630773,6254097:0,393216,0 +(1,11829:6630773,15083339:25952256,9222458,616038 +g1,11829:6630773,15083339 +(1,11829:6630773,15083339:25952256,9222458,616038 +(1,11829:6630773,15699377:25952256,9838496,0 +[1,11829:6630773,15699377:25952256,9838496,0 +(1,11829:6630773,15673163:25952256,9812282,0 +r1,11829:6656987,15673163:26214,9812282,0 +[1,11829:6656987,15673163:25899828,9812282,0 +(1,11829:6656987,15083339:25899828,8632634,0 +[1,11829:7246811,15083339:24720180,8632634,0 +(1,11822:7246811,15083339:24720180,8632634,0 +k1,11822:10954876,15083339:3708065 +h1,11821:10954876,15083339:0,0,0 +(1,11821:10954876,15083339:17304050,8632634,0 +(1,11821:10954876,15083339:17305278,8632656,0 +(1,11821:10954876,15083339:17305278,8632656,0 +(1,11821:10954876,15083339:0,8632656,0 +(1,11821:10954876,15083339:0,14155776,0 +(1,11821:10954876,15083339:28377088,14155776,0 ) -] +k1,11821:10954876,15083339:-28377088 ) -[1,12028:6630773,47279633:25952256,43253760,0 -[1,12028:6630773,4812305:25952256,786432,0 -(1,12028:6630773,4812305:25952256,513147,134348 -(1,12028:6630773,4812305:25952256,513147,134348 -g1,12028:3078558,4812305 -[1,12028:3078558,4812305:0,0,0 -(1,12028:3078558,2439708:0,1703936,0 -k1,12028:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12028:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12028:3078558,1915420:16384,1179648,0 +g1,11821:28260154,15083339 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 ) -] ) +g1,11822:28258926,15083339 +k1,11822:31966991,15083339:3708065 ) +] ) ] -[1,12028:3078558,4812305:0,0,0 -(1,12028:3078558,2439708:0,1703936,0 -g1,12028:29030814,2439708 -g1,12028:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12028:36151628,1915420:16384,1179648,0 +r1,11829:32583029,15673163:26214,9812282,0 +) +] +) +) +g1,11829:32583029,15083339 +) +h1,11829:6630773,15699377:0,0,0 +(1,11832:6630773,18237099:25952256,555811,147783 +(1,11832:6630773,18237099:2899444,534184,12975 +g1,11832:6630773,18237099 +g1,11832:9530217,18237099 +) +g1,11832:11409593,18237099 +g1,11832:12976821,18237099 +k1,11832:32583029,18237099:16052911 +g1,11832:32583029,18237099 +) +(1,11835:6630773,19471803:25952256,513147,134348 +k1,11834:7393325,19471803:134717 +k1,11834:8547128,19471803:134718 +k1,11834:10048926,19471803:134717 +k1,11834:10842936,19471803:134718 +k1,11834:13102330,19471803:134717 +k1,11834:15018317,19471803:134718 +k1,11834:17007703,19471803:134717 +k1,11834:17951791,19471803:134718 +k1,11834:19475871,19471803:134717 +k1,11834:22750418,19471803:134717 +k1,11834:23501174,19471803:134718 +k1,11834:23991751,19471803:134717 +k1,11834:25999488,19471803:134718 +k1,11834:27523568,19471803:134717 +k1,11834:29708252,19471803:134718 +k1,11834:30862054,19471803:134717 +k1,11834:32583029,19471803:0 +) +(1,11835:6630773,20313291:25952256,505283,134348 +k1,11834:8378710,20313291:247163 +k1,11834:9157371,20313291:247164 +k1,11834:10055962,20313291:247163 +k1,11834:11799313,20313291:247164 +k1,11834:12402336,20313291:247163 +k1,11834:13926797,20313291:247164 +k1,11834:14860122,20313291:247163 +k1,11834:18197308,20313291:247163 +k1,11834:20473467,20313291:247164 +k1,11834:23148084,20313291:247163 +k1,11834:24165951,20313291:247164 +k1,11834:27659112,20313291:247163 +(1,11834:27659112,20313291:0,414482,115847 +r1,11834:29775937,20313291:2116825,530329,115847 +k1,11834:27659112,20313291:-2116825 +) +(1,11834:27659112,20313291:2116825,414482,115847 +k1,11834:27659112,20313291:3277 +h1,11834:29772660,20313291:0,411205,112570 +) +k1,11834:30023101,20313291:247164 +k1,11834:30886302,20313291:247163 +k1,11834:32583029,20313291:0 +) +(1,11835:6630773,21154779:25952256,513147,126483 +k1,11834:10067261,21154779:271099 +k1,11834:10989787,21154779:271098 +k1,11834:12279971,21154779:271099 +(1,11834:12279971,21154779:0,452978,115847 +r1,11834:13693372,21154779:1413401,568825,115847 +k1,11834:12279971,21154779:-1413401 +) +(1,11834:12279971,21154779:1413401,452978,115847 +k1,11834:12279971,21154779:3277 +h1,11834:13690095,21154779:0,411205,112570 +) +k1,11834:13964470,21154779:271098 +k1,11834:17516301,21154779:271099 +k1,11834:18454555,21154779:271098 +(1,11834:18454555,21154779:0,452978,122846 +r1,11834:21274804,21154779:2820249,575824,122846 +k1,11834:18454555,21154779:-2820249 +) +(1,11834:18454555,21154779:2820249,452978,122846 +k1,11834:18454555,21154779:3277 +h1,11834:21271527,21154779:0,411205,112570 +) +k1,11834:21719573,21154779:271099 +k1,11834:23462610,21154779:271098 +k1,11834:25938996,21154779:271099 +k1,11834:26826132,21154779:271098 +k1,11834:28300472,21154779:271099 +k1,11834:29809545,21154779:271098 +k1,11834:32583029,21154779:0 +) +(1,11835:6630773,21996267:25952256,513147,134348 +k1,11834:7866433,21996267:216575 +k1,11834:10348587,21996267:216574 +k1,11834:11512813,21996267:216575 +k1,11834:12495503,21996267:216574 +k1,11834:14600170,21996267:216575 +k1,11834:15432782,21996267:216574 +k1,11834:16668442,21996267:216575 +k1,11834:18335983,21996267:216574 +k1,11834:19749245,21996267:216575 +k1,11834:21619292,21996267:216574 +k1,11834:24117175,21996267:216575 +k1,11834:24985177,21996267:216574 +k1,11834:26220837,21996267:216575 +k1,11834:29509739,21996267:216574 +k1,11834:31931601,21996267:216575 +k1,11835:32583029,21996267:0 +) +(1,11835:6630773,22837755:25952256,452978,122846 +(1,11834:6630773,22837755:0,452978,122846 +r1,11834:9099310,22837755:2468537,575824,122846 +k1,11834:6630773,22837755:-2468537 +) +(1,11834:6630773,22837755:2468537,452978,122846 +k1,11834:6630773,22837755:3277 +h1,11834:9096033,22837755:0,411205,112570 +) +k1,11835:32583028,22837755:23310048 +g1,11835:32583028,22837755 +) +v1,11837:6630773,23950395:0,393216,0 +(1,11843:6630773,25597847:25952256,2040668,196608 +g1,11843:6630773,25597847 +g1,11843:6630773,25597847 +g1,11843:6434165,25597847 +(1,11843:6434165,25597847:0,2040668,196608 +r1,11843:32779637,25597847:26345472,2237276,196608 +k1,11843:6434165,25597847:-26345472 +) +(1,11843:6434165,25597847:26345472,2040668,196608 +[1,11843:6630773,25597847:25952256,1844060,0 +(1,11839:6630773,24158013:25952256,404226,107478 +(1,11838:6630773,24158013:0,0,0 +g1,11838:6630773,24158013 +g1,11838:6630773,24158013 +g1,11838:6303093,24158013 +(1,11838:6303093,24158013:0,0,0 +) +g1,11838:6630773,24158013 +) +k1,11839:6630773,24158013:0 +g1,11839:10424522,24158013 +g1,11839:11056814,24158013 +k1,11839:11056814,24158013:0 +h1,11839:13269834,24158013:0,0,0 +k1,11839:32583030,24158013:19313196 +g1,11839:32583030,24158013 +) +(1,11840:6630773,24824191:25952256,404226,107478 +h1,11840:6630773,24824191:0,0,0 +g1,11840:6946919,24824191 +g1,11840:7263065,24824191 +g1,11840:7579211,24824191 +g1,11840:7895357,24824191 +g1,11840:8211503,24824191 +g1,11840:8527649,24824191 +g1,11840:8843795,24824191 +g1,11840:11372961,24824191 +g1,11840:12005253,24824191 +g1,11840:13902128,24824191 +g1,11840:14534420,24824191 +g1,11840:16431295,24824191 +g1,11840:17063587,24824191 +g1,11840:17695879,24824191 +g1,11840:19592753,24824191 +h1,11840:19908899,24824191:0,0,0 +k1,11840:32583029,24824191:12674130 +g1,11840:32583029,24824191 +) +(1,11841:6630773,25490369:25952256,404226,107478 +h1,11841:6630773,25490369:0,0,0 +g1,11841:6946919,25490369 +g1,11841:7263065,25490369 +k1,11841:7263065,25490369:0 +h1,11841:11056813,25490369:0,0,0 +k1,11841:32583029,25490369:21526216 +g1,11841:32583029,25490369 +) +] +) +g1,11843:32583029,25597847 +g1,11843:6630773,25597847 +g1,11843:6630773,25597847 +g1,11843:32583029,25597847 +g1,11843:32583029,25597847 +) +h1,11843:6630773,25794455:0,0,0 +(1,11847:6630773,27082404:25952256,513147,134348 +h1,11846:6630773,27082404:983040,0,0 +k1,11846:10837398,27082404:288883 +k1,11846:12145365,27082404:288882 +k1,11846:15336838,27082404:288883 +k1,11846:16285012,27082404:288882 +k1,11846:19292984,27082404:288883 +k1,11846:23865299,27082404:288882 +k1,11846:25173267,27082404:288883 +k1,11846:28765164,27082404:288882 +k1,11846:29713339,27082404:288883 +k1,11846:31391584,27082404:288882 +k1,11846:32583029,27082404:0 +) +(1,11847:6630773,27923892:25952256,505283,134348 +k1,11846:9989314,27923892:220677 +k1,11846:13281009,27923892:220678 +k1,11846:14153114,27923892:220677 +k1,11846:17566706,27923892:220678 +k1,11846:19849146,27923892:220677 +k1,11846:20697659,27923892:220678 +k1,11846:22121577,27923892:220677 +k1,11846:23883006,27923892:220678 +k1,11846:25847596,27923892:220677 +k1,11846:28273561,27923892:220678 +k1,11846:29180400,27923892:220677 +k1,11846:32583029,27923892:0 +) +(1,11847:6630773,28765380:25952256,513147,134348 +k1,11846:7510721,28765380:228520 +(1,11846:7510721,28765380:0,452978,122846 +r1,11846:10330970,28765380:2820249,575824,122846 +k1,11846:7510721,28765380:-2820249 +) +(1,11846:7510721,28765380:2820249,452978,122846 +k1,11846:7510721,28765380:3277 +h1,11846:10327693,28765380:0,411205,112570 +) +k1,11846:10733161,28765380:228521 +k1,11846:11427642,28765380:228520 +k1,11846:14235660,28765380:228521 +k1,11846:15455740,28765380:228520 +k1,11846:19164878,28765380:228521 +k1,11846:20154926,28765380:228520 +k1,11846:23786076,28765380:228521 +k1,11846:26219883,28765380:228520 +k1,11846:27099832,28765380:228521 +k1,11846:30521266,28765380:228520 +k1,11846:32583029,28765380:0 +) +(1,11847:6630773,29606868:25952256,513147,134348 +g1,11846:9188643,29606868 +g1,11846:9845969,29606868 +g1,11846:12675158,29606868 +g1,11846:13525815,29606868 +g1,11846:15221231,29606868 +g1,11846:16439545,29606868 +g1,11846:18292247,29606868 +g1,11846:19768773,29606868 +g1,11846:20654164,29606868 +k1,11847:32583029,29606868:9439808 +g1,11847:32583029,29606868 +) +v1,11849:6630773,30719508:0,393216,0 +(1,11855:6630773,32366960:25952256,2040668,196608 +g1,11855:6630773,32366960 +g1,11855:6630773,32366960 +g1,11855:6434165,32366960 +(1,11855:6434165,32366960:0,2040668,196608 +r1,11855:32779637,32366960:26345472,2237276,196608 +k1,11855:6434165,32366960:-26345472 +) +(1,11855:6434165,32366960:26345472,2040668,196608 +[1,11855:6630773,32366960:25952256,1844060,0 +(1,11851:6630773,30927126:25952256,404226,107478 +(1,11850:6630773,30927126:0,0,0 +g1,11850:6630773,30927126 +g1,11850:6630773,30927126 +g1,11850:6303093,30927126 +(1,11850:6303093,30927126:0,0,0 +) +g1,11850:6630773,30927126 +) +k1,11851:6630773,30927126:0 +g1,11851:9476084,30927126 +h1,11851:9792230,30927126:0,0,0 +k1,11851:32583030,30927126:22790800 +g1,11851:32583030,30927126 +) +(1,11852:6630773,31593304:25952256,404226,107478 +h1,11852:6630773,31593304:0,0,0 +g1,11852:6946919,31593304 +g1,11852:7263065,31593304 +g1,11852:12321397,31593304 +g1,11852:12953689,31593304 +k1,11852:12953689,31593304:0 +h1,11852:15166709,31593304:0,0,0 +k1,11852:32583029,31593304:17416320 +g1,11852:32583029,31593304 +) +(1,11853:6630773,32259482:25952256,404226,107478 +h1,11853:6630773,32259482:0,0,0 +g1,11853:6946919,32259482 +g1,11853:7263065,32259482 +g1,11853:7579211,32259482 +g1,11853:7895357,32259482 +g1,11853:8211503,32259482 +g1,11853:8527649,32259482 +g1,11853:8843795,32259482 +g1,11853:9159941,32259482 +g1,11853:9476087,32259482 +g1,11853:9792233,32259482 +g1,11853:10108379,32259482 +g1,11853:10424525,32259482 +g1,11853:10740671,32259482 +g1,11853:13269837,32259482 +g1,11853:13902129,32259482 +g1,11853:15799004,32259482 +g1,11853:16431296,32259482 +g1,11853:18328171,32259482 +g1,11853:18960463,32259482 +g1,11853:19592755,32259482 +h1,11853:21173483,32259482:0,0,0 +k1,11853:32583029,32259482:11409546 +g1,11853:32583029,32259482 +) +] +) +g1,11855:32583029,32366960 +g1,11855:6630773,32366960 +g1,11855:6630773,32366960 +g1,11855:32583029,32366960 +g1,11855:32583029,32366960 +) +h1,11855:6630773,32563568:0,0,0 +(1,11859:6630773,33851518:25952256,513147,134348 +h1,11858:6630773,33851518:983040,0,0 +k1,11858:9003092,33851518:192592 +k1,11858:11461263,33851518:192591 +k1,11858:14461417,33851518:192592 +k1,11858:15758290,33851518:192591 +k1,11858:17236698,33851518:192592 +k1,11858:18177056,33851518:192592 +k1,11858:20335072,33851518:192591 +k1,11858:22942010,33851518:192592 +k1,11858:24528553,33851518:192592 +k1,11858:25740229,33851518:192591 +(1,11858:25740229,33851518:0,414482,115847 +r1,11858:26098495,33851518:358266,530329,115847 +k1,11858:25740229,33851518:-358266 +) +(1,11858:25740229,33851518:358266,414482,115847 +k1,11858:25740229,33851518:3277 +h1,11858:26095218,33851518:0,411205,112570 +) +k1,11858:26291087,33851518:192592 +k1,11858:29403962,33851518:192591 +k1,11858:31923737,33851518:192592 +k1,11858:32583029,33851518:0 +) +(1,11859:6630773,34693006:25952256,505283,134348 +g1,11858:8568017,34693006 +g1,11858:10972533,34693006 +g1,11858:11857924,34693006 +g1,11858:12827856,34693006 +g1,11858:16099413,34693006 +g1,11858:16950070,34693006 +(1,11858:16950070,34693006:0,452978,122846 +r1,11858:19770319,34693006:2820249,575824,122846 +k1,11858:16950070,34693006:-2820249 +) +(1,11858:16950070,34693006:2820249,452978,122846 +k1,11858:16950070,34693006:3277 +h1,11858:19767042,34693006:0,411205,112570 +) +k1,11859:32583029,34693006:12639040 +g1,11859:32583029,34693006 +) +v1,11861:6630773,35805646:0,393216,0 +(1,11867:6630773,37453098:25952256,2040668,196608 +g1,11867:6630773,37453098 +g1,11867:6630773,37453098 +g1,11867:6434165,37453098 +(1,11867:6434165,37453098:0,2040668,196608 +r1,11867:32779637,37453098:26345472,2237276,196608 +k1,11867:6434165,37453098:-26345472 +) +(1,11867:6434165,37453098:26345472,2040668,196608 +[1,11867:6630773,37453098:25952256,1844060,0 +(1,11863:6630773,36013264:25952256,404226,107478 +(1,11862:6630773,36013264:0,0,0 +g1,11862:6630773,36013264 +g1,11862:6630773,36013264 +g1,11862:6303093,36013264 +(1,11862:6303093,36013264:0,0,0 +) +g1,11862:6630773,36013264 +) +k1,11863:6630773,36013264:0 +g1,11863:10424522,36013264 +g1,11863:11056814,36013264 +g1,11863:13585980,36013264 +h1,11863:13902126,36013264:0,0,0 +k1,11863:32583030,36013264:18680904 +g1,11863:32583030,36013264 +) +(1,11864:6630773,36679442:25952256,404226,107478 +h1,11864:6630773,36679442:0,0,0 +g1,11864:6946919,36679442 +g1,11864:7263065,36679442 +g1,11864:9159940,36679442 +g1,11864:9792232,36679442 +g1,11864:11689107,36679442 +g1,11864:12321399,36679442 +g1,11864:12953691,36679442 +g1,11864:14534420,36679442 +h1,11864:14850566,36679442:0,0,0 +k1,11864:32583030,36679442:17732464 +g1,11864:32583030,36679442 +) +(1,11865:6630773,37345620:25952256,404226,107478 +h1,11865:6630773,37345620:0,0,0 +g1,11865:6946919,37345620 +g1,11865:7263065,37345620 +k1,11865:7263065,37345620:0 +h1,11865:11056813,37345620:0,0,0 +k1,11865:32583029,37345620:21526216 +g1,11865:32583029,37345620 +) +] +) +g1,11867:32583029,37453098 +g1,11867:6630773,37453098 +g1,11867:6630773,37453098 +g1,11867:32583029,37453098 +g1,11867:32583029,37453098 +) +h1,11867:6630773,37649706:0,0,0 +(1,11871:6630773,38937655:25952256,513147,134348 +h1,11870:6630773,38937655:983040,0,0 +k1,11870:8274896,38937655:191190 +k1,11870:8997584,38937655:191191 +k1,11870:10655470,38937655:191190 +k1,11870:13476620,38937655:191190 +k1,11870:14319238,38937655:191190 +k1,11870:15985644,38937655:191191 +k1,11870:16532694,38937655:191190 +k1,11870:18989464,38937655:191190 +k1,11870:21988216,38937655:191190 +k1,11870:23127058,38937655:191191 +k1,11870:24337333,38937655:191190 +k1,11870:26411372,38937655:191190 +k1,11870:28053529,38937655:191190 +k1,11870:29316889,38937655:191191 +k1,11870:30317449,38937655:191190 +k1,11870:32583029,38937655:0 +) +(1,11871:6630773,39779143:25952256,505283,7863 +k1,11871:32583029,39779143:24389222 +g1,11871:32583029,39779143 +) +v1,11873:6630773,40891783:0,393216,0 +(1,11879:6630773,42539235:25952256,2040668,196608 +g1,11879:6630773,42539235 +g1,11879:6630773,42539235 +g1,11879:6434165,42539235 +(1,11879:6434165,42539235:0,2040668,196608 +r1,11879:32779637,42539235:26345472,2237276,196608 +k1,11879:6434165,42539235:-26345472 +) +(1,11879:6434165,42539235:26345472,2040668,196608 +[1,11879:6630773,42539235:25952256,1844060,0 +(1,11875:6630773,41099401:25952256,404226,107478 +(1,11874:6630773,41099401:0,0,0 +g1,11874:6630773,41099401 +g1,11874:6630773,41099401 +g1,11874:6303093,41099401 +(1,11874:6303093,41099401:0,0,0 +) +g1,11874:6630773,41099401 +) +k1,11875:6630773,41099401:0 +g1,11875:9476084,41099401 +h1,11875:9792230,41099401:0,0,0 +k1,11875:32583030,41099401:22790800 +g1,11875:32583030,41099401 +) +(1,11876:6630773,41765579:25952256,404226,107478 +h1,11876:6630773,41765579:0,0,0 +g1,11876:6946919,41765579 +g1,11876:7263065,41765579 +g1,11876:9159940,41765579 +g1,11876:9792232,41765579 +g1,11876:11689107,41765579 +g1,11876:12321399,41765579 +g1,11876:12953691,41765579 +g1,11876:14534420,41765579 +h1,11876:14850566,41765579:0,0,0 +k1,11876:32583030,41765579:17732464 +g1,11876:32583030,41765579 +) +(1,11877:6630773,42431757:25952256,404226,107478 +h1,11877:6630773,42431757:0,0,0 +g1,11877:6946919,42431757 +g1,11877:7263065,42431757 +g1,11877:12321397,42431757 +g1,11877:12953689,42431757 +h1,11877:15166709,42431757:0,0,0 +k1,11877:32583029,42431757:17416320 +g1,11877:32583029,42431757 +) +] +) +g1,11879:32583029,42539235 +g1,11879:6630773,42539235 +g1,11879:6630773,42539235 +g1,11879:32583029,42539235 +g1,11879:32583029,42539235 +) +h1,11879:6630773,42735843:0,0,0 +(1,11883:6630773,44023793:25952256,513147,134348 +h1,11882:6630773,44023793:983040,0,0 +k1,11882:8427006,44023793:185358 +k1,11882:10309090,44023793:185357 +k1,11882:13659837,44023793:185358 +k1,11882:14864279,44023793:185357 +k1,11882:16326934,44023793:185358 +k1,11882:19070161,44023793:185357 +k1,11882:22920292,44023793:185358 +k1,11882:24177819,44023793:185358 +k1,11882:25566417,44023793:185357 +k1,11882:28725799,44023793:185358 +k1,11882:29527194,44023793:185357 +k1,11882:30731637,44023793:185358 +k1,11883:32583029,44023793:0 +) +(1,11883:6630773,44865281:25952256,513147,134348 +k1,11882:8074279,44865281:179316 +k1,11882:10439222,44865281:179317 +k1,11882:11234576,44865281:179316 +k1,11882:13021491,44865281:179317 +k1,11882:16562804,44865281:179316 +k1,11882:19413368,44865281:179317 +k1,11882:21654447,44865281:179316 +k1,11882:22781415,44865281:179317 +k1,11882:24412353,44865281:179316 +k1,11882:26149461,44865281:179317 +k1,11882:26980205,44865281:179316 +k1,11882:28252007,44865281:179317 +k1,11882:31193666,44865281:179316 +k1,11882:32583029,44865281:0 +) +(1,11883:6630773,45706769:25952256,513147,134348 +g1,11882:7512887,45706769 +g1,11882:8067976,45706769 +g1,11882:11029548,45706769 +k1,11883:32583029,45706769:18572248 +g1,11883:32583029,45706769 +) +] +(1,11885:32583029,45706769:0,0,0 +g1,11885:32583029,45706769 +) +) +] +(1,11885:6630773,47279633:25952256,0,0 +h1,11885:6630773,47279633:25952256,0,0 +) +] +h1,11885:4262630,4025873:0,0,0 +] +!20608 +}225 +Input:1500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 +{226 +[1,11931:4262630,47279633:28320399,43253760,0 +(1,11931:4262630,4025873:0,0,0 +[1,11931:-473657,4025873:25952256,0,0 +(1,11931:-473657,-710414:25952256,0,0 +h1,11931:-473657,-710414:0,0,0 +(1,11931:-473657,-710414:0,0,0 +(1,11931:-473657,-710414:0,0,0 +g1,11931:-473657,-710414 +(1,11931:-473657,-710414:65781,0,65781 +g1,11931:-407876,-710414 +[1,11931:-407876,-644633:0,0,0 +] +) +k1,11931:-473657,-710414:-65781 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +) +k1,11931:25478599,-710414:25952256 +g1,11931:25478599,-710414 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12028:37855564,2439708:1179648,16384,0 +[1,11931:6630773,47279633:25952256,43253760,0 +[1,11931:6630773,4812305:25952256,786432,0 +(1,11931:6630773,4812305:25952256,485622,11795 +(1,11931:6630773,4812305:25952256,485622,11795 +g1,11931:3078558,4812305 +[1,11931:3078558,4812305:0,0,0 +(1,11931:3078558,2439708:0,1703936,0 +k1,11931:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11931:2537886,2439708:1179648,16384,0 ) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11931:3078558,1915420:16384,1179648,0 ) -k1,12028:3078556,2439708:-34777008 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] -[1,12028:3078558,4812305:0,0,0 -(1,12028:3078558,49800853:0,16384,2228224 -k1,12028:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12028:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12028:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 ) ] +[1,11931:3078558,4812305:0,0,0 +(1,11931:3078558,2439708:0,1703936,0 +g1,11931:29030814,2439708 +g1,11931:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11931:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 +) +] +) +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11931:37855564,2439708:1179648,16384,0 ) ) +k1,11931:3078556,2439708:-34777008 ) ] -[1,12028:3078558,4812305:0,0,0 -(1,12028:3078558,49800853:0,16384,2228224 -g1,12028:29030814,49800853 -g1,12028:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12028:36151628,51504789:16384,1179648,0 +[1,11931:3078558,4812305:0,0,0 +(1,11931:3078558,49800853:0,16384,2228224 +k1,11931:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11931:2537886,49800853:1179648,16384,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11931:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12028:37855564,49800853:1179648,16384,0 ) ) -k1,12028:3078556,49800853:-34777008 -) -] -g1,12028:6630773,4812305 -k1,12028:25712890,4812305:17886740 -g1,12028:29057847,4812305 -g1,12028:29873114,4812305 -) -) -] -[1,12028:6630773,45706769:25952256,40108032,0 -(1,12028:6630773,45706769:25952256,40108032,0 -(1,12028:6630773,45706769:0,0,0 -g1,12028:6630773,45706769 -) -[1,12028:6630773,45706769:25952256,40108032,0 -v1,11966:6630773,6254097:0,393216,0 -(1,11966:6630773,8561436:25952256,2700555,196608 -g1,11966:6630773,8561436 -g1,11966:6630773,8561436 -g1,11966:6434165,8561436 -(1,11966:6434165,8561436:0,2700555,196608 -r1,11966:32779637,8561436:26345472,2897163,196608 -k1,11966:6434165,8561436:-26345472 -) -(1,11966:6434165,8561436:26345472,2700555,196608 -[1,11966:6630773,8561436:25952256,2503947,0 -(1,11961:6630773,6461715:25952256,404226,107478 -(1,11960:6630773,6461715:0,0,0 -g1,11960:6630773,6461715 -g1,11960:6630773,6461715 -g1,11960:6303093,6461715 -(1,11960:6303093,6461715:0,0,0 -) -g1,11960:6630773,6461715 -) -k1,11961:6630773,6461715:0 -g1,11961:10424522,6461715 -g1,11961:11056814,6461715 -k1,11961:11056814,6461715:0 -h1,11961:13269834,6461715:0,0,0 -k1,11961:32583030,6461715:19313196 -g1,11961:32583030,6461715 -) -(1,11962:6630773,7127893:25952256,410518,107478 -h1,11962:6630773,7127893:0,0,0 -g1,11962:6946919,7127893 -g1,11962:7263065,7127893 -g1,11962:7579211,7127893 -g1,11962:7895357,7127893 -g1,11962:8211503,7127893 -g1,11962:8527649,7127893 -g1,11962:8843795,7127893 -g1,11962:10740670,7127893 -g1,11962:11372962,7127893 -g1,11962:13269837,7127893 -g1,11962:13902129,7127893 -g1,11962:14534421,7127893 -g1,11962:16115150,7127893 -g1,11962:18012024,7127893 -g1,11962:18644316,7127893 -g1,11962:23070356,7127893 -h1,11962:23386502,7127893:0,0,0 -k1,11962:32583029,7127893:9196527 -g1,11962:32583029,7127893 -) -(1,11963:6630773,7794071:25952256,404226,107478 -h1,11963:6630773,7794071:0,0,0 -g1,11963:6946919,7794071 -g1,11963:7263065,7794071 -g1,11963:11372959,7794071 -h1,11963:11689105,7794071:0,0,0 -k1,11963:32583029,7794071:20893924 -g1,11963:32583029,7794071 -) -(1,11964:6630773,8460249:25952256,404226,101187 -h1,11964:6630773,8460249:0,0,0 -g1,11964:6946919,8460249 -g1,11964:7263065,8460249 -g1,11964:14850562,8460249 -g1,11964:15482854,8460249 -g1,11964:18012020,8460249 -g1,11964:20541186,8460249 -g1,11964:21173478,8460249 -h1,11964:21805770,8460249:0,0,0 -k1,11964:32583029,8460249:10777259 -g1,11964:32583029,8460249 -) -] -) -g1,11966:32583029,8561436 -g1,11966:6630773,8561436 -g1,11966:6630773,8561436 -g1,11966:32583029,8561436 -g1,11966:32583029,8561436 -) -h1,11966:6630773,8758044:0,0,0 -(1,11970:6630773,10123820:25952256,505283,134348 -h1,11969:6630773,10123820:983040,0,0 -k1,11969:9006726,10123820:196226 -k1,11969:10765985,10123820:196225 -k1,11969:14136775,10123820:196226 -k1,11969:17644535,10123820:196226 -k1,11969:19032205,10123820:196225 -k1,11969:22735918,10123820:196226 -k1,11969:23923704,10123820:196226 -k1,11969:25139014,10123820:196225 -k1,11969:26988713,10123820:196226 -k1,11969:27871101,10123820:196226 -k1,11969:28683364,10123820:196225 -k1,11969:30913172,10123820:196226 -k1,11969:32583029,10123820:0 -) -(1,11970:6630773,10965308:25952256,513147,134348 -k1,11969:7516558,10965308:234357 -k1,11969:9204503,10965308:234356 -k1,11969:10769241,10965308:234357 -k1,11969:12022682,10965308:234356 -k1,11969:13534336,10965308:234357 -k1,11969:15659406,10965308:234356 -k1,11969:16762115,10965308:234357 -k1,11969:18471686,10965308:234356 -k1,11969:21367460,10965308:234357 -k1,11969:22977417,10965308:234356 -k1,11969:24230859,10965308:234357 -k1,11969:26037424,10965308:234356 -k1,11969:27463226,10965308:234357 -k1,11969:29887795,10965308:234356 -k1,11969:31635378,10965308:234357 -k1,11969:32583029,10965308:0 -) -(1,11970:6630773,11806796:25952256,505283,126483 -k1,11969:7830233,11806796:180375 -k1,11969:9626726,11806796:180375 -k1,11969:12825034,11806796:180375 -k1,11969:17170877,11806796:180375 -k1,11969:17809349,11806796:180375 -k1,11969:18521221,11806796:180375 -k1,11969:19900251,11806796:180376 -k1,11969:22305573,11806796:180375 -k1,11969:23505033,11806796:180375 -k1,11969:25338881,11806796:180375 -k1,11969:26796553,11806796:180375 -k1,11969:27845280,11806796:180375 -k1,11969:30375776,11806796:180375 -k1,11969:32583029,11806796:0 -) -(1,11970:6630773,12648284:25952256,513147,126483 -k1,11969:8880725,12648284:179014 -k1,11969:10007390,12648284:179014 -k1,11969:11205489,12648284:179014 -k1,11969:13745765,12648284:179014 -k1,11969:15611676,12648284:179014 -k1,11969:17171534,12648284:179014 -k1,11969:17882044,12648284:179013 -k1,11969:18416918,12648284:179014 -k1,11969:19949906,12648284:179014 -k1,11969:23338218,12648284:179014 -k1,11969:25205439,12648284:179014 -k1,11969:26035881,12648284:179014 -k1,11969:30053339,12648284:179014 -k1,11969:32583029,12648284:0 -) -(1,11970:6630773,13489772:25952256,513147,126483 -k1,11969:7371876,13489772:283006 -k1,11969:9666837,13489772:283006 -k1,11969:10694988,13489772:283007 -k1,11969:11629422,13489772:283006 -k1,11969:14615133,13489772:283006 -k1,11969:16070578,13489772:283006 -k1,11969:19115927,13489772:283006 -k1,11969:22429973,13489772:283006 -k1,11969:23732065,13489772:283007 -k1,11969:26875062,13489772:283006 -k1,11969:30089493,13489772:283006 -k1,11969:31563944,13489772:283006 -k1,11969:32583029,13489772:0 -) -(1,11970:6630773,14331260:25952256,505283,134348 -g1,11969:9218789,14331260 -k1,11970:32583028,14331260:21101936 -g1,11970:32583028,14331260 -) -v1,11972:6630773,15697036:0,393216,0 -(1,11983:6630773,23386012:25952256,8082192,616038 -g1,11983:6630773,23386012 -(1,11983:6630773,23386012:25952256,8082192,616038 -(1,11983:6630773,24002050:25952256,8698230,0 -[1,11983:6630773,24002050:25952256,8698230,0 -(1,11983:6630773,23975836:25952256,8645802,0 -r1,11983:6656987,23975836:26214,8645802,0 -[1,11983:6656987,23975836:25899828,8645802,0 -(1,11983:6656987,23386012:25899828,7466154,0 -[1,11983:7246811,23386012:24720180,7466154,0 -(1,11973:7246811,17007232:24720180,1087374,134348 -k1,11972:8633469,17007232:176955 -k1,11972:9894389,17007232:176954 -k1,11972:11090429,17007232:176955 -k1,11972:14029726,17007232:176954 -k1,11972:16727196,17007232:176955 -k1,11972:19688119,17007232:176954 -k1,11972:22423600,17007232:176955 -k1,11972:23619640,17007232:176955 -k1,11972:25989429,17007232:176954 -k1,11972:27912263,17007232:176955 -k1,11972:29342921,17007232:176954 -k1,11972:30624158,17007232:176955 -k1,11972:31966991,17007232:0 -) -(1,11973:7246811,17848720:24720180,513147,134348 -k1,11972:9916745,17848720:255588 -k1,11972:11566284,17848720:255588 -k1,11972:12840957,17848720:255588 -k1,11972:15617060,17848720:255588 -k1,11972:17608040,17848720:255587 -k1,11972:20559124,17848720:255588 -(1,11972:20559124,17848720:0,452978,115847 -r1,11983:24786220,17848720:4227096,568825,115847 -k1,11972:20559124,17848720:-4227096 -) -(1,11972:20559124,17848720:4227096,452978,115847 -k1,11972:20559124,17848720:3277 -h1,11972:24782943,17848720:0,411205,112570 -) -k1,11972:25041808,17848720:255588 -k1,11972:26865017,17848720:255588 -k1,11972:29700757,17848720:255588 -k1,11972:31966991,17848720:0 -) -(1,11973:7246811,18690208:24720180,505283,134348 -g1,11972:10126463,18690208 -g1,11972:11719643,18690208 -(1,11972:11719643,18690208:0,452978,115847 -r1,11983:15243315,18690208:3523672,568825,115847 -k1,11972:11719643,18690208:-3523672 -) -(1,11972:11719643,18690208:3523672,452978,115847 -k1,11972:11719643,18690208:3277 -h1,11972:15240038,18690208:0,411205,112570 -) -k1,11973:31966991,18690208:16342912 -g1,11973:31966991,18690208 -) -v1,11975:7246811,19880674:0,393216,0 -(1,11980:7246811,20855657:24720180,1368199,196608 -g1,11980:7246811,20855657 -g1,11980:7246811,20855657 -g1,11980:7050203,20855657 -(1,11980:7050203,20855657:0,1368199,196608 -r1,11983:32163599,20855657:25113396,1564807,196608 -k1,11980:7050203,20855657:-25113396 -) -(1,11980:7050203,20855657:25113396,1368199,196608 -[1,11980:7246811,20855657:24720180,1171591,0 -(1,11977:7246811,20088292:24720180,404226,101187 -(1,11976:7246811,20088292:0,0,0 -g1,11976:7246811,20088292 -g1,11976:7246811,20088292 -g1,11976:6919131,20088292 -(1,11976:6919131,20088292:0,0,0 -) -g1,11976:7246811,20088292 -) -k1,11977:7246811,20088292:0 -k1,11977:7246811,20088292:0 -h1,11977:15150453,20088292:0,0,0 -k1,11977:31966991,20088292:16816538 -g1,11977:31966991,20088292 -) -(1,11978:7246811,20754470:24720180,404226,101187 -h1,11978:7246811,20754470:0,0,0 -g1,11978:15150454,20754470 -g1,11978:15782746,20754470 -g1,11978:18311912,20754470 -g1,11978:20841078,20754470 -g1,11978:21473370,20754470 -g1,11978:22421808,20754470 -g1,11978:25583265,20754470 -g1,11978:26215557,20754470 -h1,11978:28112431,20754470:0,0,0 -k1,11978:31966991,20754470:3854560 -g1,11978:31966991,20754470 -) -] -) -g1,11980:31966991,20855657 -g1,11980:7246811,20855657 -g1,11980:7246811,20855657 -g1,11980:31966991,20855657 -g1,11980:31966991,20855657 -) -h1,11980:7246811,21052265:0,0,0 -(1,11983:7246811,22418041:24720180,513147,126483 -h1,11982:7246811,22418041:983040,0,0 -k1,11982:10043182,22418041:208354 -k1,11982:11422009,22418041:208354 -k1,11982:13105578,22418041:208354 -k1,11982:15223651,22418041:208354 -k1,11982:15787865,22418041:208354 -k1,11982:18508214,22418041:208354 -k1,11982:20906782,22418041:208355 -k1,11982:22062787,22418041:208354 -k1,11982:23967868,22418041:208354 -k1,11982:25739256,22418041:208354 -k1,11982:27398577,22418041:208354 -k1,11982:28626016,22418041:208354 -k1,11982:30111667,22418041:208354 -k1,11982:31966991,22418041:0 -) -(1,11983:7246811,23259529:24720180,505283,126483 -g1,11982:8839991,23259529 -g1,11982:10058305,23259529 -g1,11982:12492967,23259529 -k1,11983:31966991,23259529:17110140 -g1,11983:31966991,23259529 -) -] -) -] -r1,11983:32583029,23975836:26214,8645802,0 -) -] -) -) -g1,11983:32583029,23386012 -) -h1,11983:6630773,24002050:0,0,0 -(1,11986:6630773,25367826:25952256,513147,134348 -h1,11985:6630773,25367826:983040,0,0 -k1,11985:9663303,25367826:266255 -k1,11985:10995828,25367826:266254 -k1,11985:13454262,25367826:266255 -k1,11985:14529887,25367826:266255 -k1,11985:16916232,25367826:266255 -k1,11985:18201571,25367826:266254 -k1,11985:20069526,25367826:266255 -k1,11985:23113197,25367826:266255 -k1,11985:24617427,25367826:266255 -k1,11985:25542973,25367826:266254 -k1,11985:30360048,25367826:266255 -k1,11985:32583029,25367826:0 -) -(1,11986:6630773,26209314:25952256,513147,126483 -k1,11985:7535941,26209314:245876 -k1,11985:11853569,26209314:245876 -k1,11985:12715483,26209314:245876 -k1,11985:15130600,26209314:245875 -k1,11985:16984074,26209314:245876 -k1,11985:17761447,26209314:245876 -k1,11985:18658751,26209314:245876 -k1,11985:19997112,26209314:245876 -k1,11985:21262073,26209314:245876 -(1,11985:21262073,26209314:0,452978,115847 -r1,11985:23027186,26209314:1765113,568825,115847 -k1,11985:21262073,26209314:-1765113 -) -(1,11985:21262073,26209314:1765113,452978,115847 -k1,11985:21262073,26209314:3277 -h1,11985:23023909,26209314:0,411205,112570 -) -k1,11985:23273062,26209314:245876 -k1,11985:24178230,26209314:245876 -k1,11985:25443190,26209314:245875 -k1,11985:27707575,26209314:245876 -k1,11985:28639613,26209314:245876 -k1,11985:29656192,26209314:245876 -k1,11985:32583029,26209314:0 -) -(1,11986:6630773,27050802:25952256,513147,134348 -k1,11985:7786501,27050802:202179 -k1,11985:9518945,27050802:202178 -k1,11985:10372552,27050802:202179 -k1,11985:12815406,27050802:202178 -k1,11985:13373445,27050802:202179 -k1,11985:15448642,27050802:202178 -k1,11985:17875768,27050802:202179 -k1,11985:18693984,27050802:202178 -k1,11985:19915248,27050802:202179 -k1,11985:21613613,27050802:202178 -k1,11985:25002152,27050802:202179 -k1,11985:25855758,27050802:202178 -k1,11985:28415267,27050802:202179 -k1,11985:29820686,27050802:202178 -k1,11985:32583029,27050802:0 -) -(1,11986:6630773,27892290:25952256,473825,134348 -k1,11986:32583030,27892290:22971024 -g1,11986:32583030,27892290 -) -v1,11988:6630773,29082756:0,393216,0 -(1,11993:6630773,30070322:25952256,1380782,196608 -g1,11993:6630773,30070322 -g1,11993:6630773,30070322 -g1,11993:6434165,30070322 -(1,11993:6434165,30070322:0,1380782,196608 -r1,11993:32779637,30070322:26345472,1577390,196608 -k1,11993:6434165,30070322:-26345472 -) -(1,11993:6434165,30070322:26345472,1380782,196608 -[1,11993:6630773,30070322:25952256,1184174,0 -(1,11990:6630773,29296666:25952256,410518,107478 -(1,11989:6630773,29296666:0,0,0 -g1,11989:6630773,29296666 -g1,11989:6630773,29296666 -g1,11989:6303093,29296666 -(1,11989:6303093,29296666:0,0,0 -) -g1,11989:6630773,29296666 -) -k1,11990:6630773,29296666:0 -g1,11990:10424522,29296666 -g1,11990:11056814,29296666 -g1,11990:13585980,29296666 -g1,11990:15482855,29296666 -g1,11990:16115147,29296666 -g1,11990:18012022,29296666 -g1,11990:18644314,29296666 -g1,11990:19276606,29296666 -g1,11990:20857335,29296666 -g1,11990:22754209,29296666 -g1,11990:23386501,29296666 -g1,11990:27812541,29296666 -h1,11990:28128687,29296666:0,0,0 -k1,11990:32583029,29296666:4454342 -g1,11990:32583029,29296666 -) -(1,11991:6630773,29962844:25952256,404226,107478 -h1,11991:6630773,29962844:0,0,0 -g1,11991:6946919,29962844 -g1,11991:7263065,29962844 -k1,11991:7263065,29962844:0 -h1,11991:11056813,29962844:0,0,0 -k1,11991:32583029,29962844:21526216 -g1,11991:32583029,29962844 -) -] -) -g1,11993:32583029,30070322 -g1,11993:6630773,30070322 -g1,11993:6630773,30070322 -g1,11993:32583029,30070322 -g1,11993:32583029,30070322 -) -h1,11993:6630773,30266930:0,0,0 -(1,11997:6630773,31632706:25952256,505283,126483 -h1,11996:6630773,31632706:983040,0,0 -k1,11996:8772386,31632706:205024 -k1,11996:10081692,31632706:205024 -k1,11996:11379201,31632706:205024 -(1,11996:11379201,31632706:0,452978,115847 -r1,11996:17716568,31632706:6337367,568825,115847 -k1,11996:11379201,31632706:-6337367 -) -(1,11996:11379201,31632706:6337367,452978,115847 -k1,11996:11379201,31632706:3277 -h1,11996:17713291,31632706:0,411205,112570 -) -k1,11996:17921592,31632706:205024 -k1,11996:18778044,31632706:205024 -k1,11996:21198185,31632706:205024 -k1,11996:22854831,31632706:205024 -k1,11996:24928942,31632706:205024 -k1,11996:25785394,31632706:205024 -k1,11996:26738184,31632706:205024 -k1,11996:28630105,31632706:205024 -k1,11996:29788678,31632706:205024 -k1,11996:30928245,31632706:205024 -k1,11996:32583029,31632706:0 -) -(1,11997:6630773,32474194:25952256,513147,126483 -k1,11996:9041565,32474194:233031 -k1,11996:11473983,32474194:233030 -k1,11996:12991520,32474194:233031 -k1,11996:14092903,32474194:233031 -k1,11996:15458395,32474194:233030 -k1,11996:16716409,32474194:233031 -k1,11996:18403029,32474194:233031 -k1,11996:19627619,32474194:233030 -k1,11996:21214624,32474194:233031 -k1,11996:23424876,32474194:233031 -k1,11996:24344068,32474194:233030 -k1,11996:25957287,32474194:233031 -k1,11996:27693714,32474194:233031 -k1,11996:29393440,32474194:233030 -(1,11996:29393440,32474194:0,452978,115847 -r1,11996:31158553,32474194:1765113,568825,115847 -k1,11996:29393440,32474194:-1765113 -) -(1,11996:29393440,32474194:1765113,452978,115847 -k1,11996:29393440,32474194:3277 -h1,11996:31155276,32474194:0,411205,112570 -) -k1,11996:31391584,32474194:233031 -k1,11997:32583029,32474194:0 -) -(1,11997:6630773,33315682:25952256,505283,115847 -(1,11996:6630773,33315682:0,459977,115847 -r1,11996:8044174,33315682:1413401,575824,115847 -k1,11996:6630773,33315682:-1413401 -) -(1,11996:6630773,33315682:1413401,459977,115847 -k1,11996:6630773,33315682:3277 -h1,11996:8040897,33315682:0,411205,112570 -) -g1,11996:8243403,33315682 -k1,11997:32583029,33315682:21124430 -g1,11997:32583029,33315682 -) -v1,11999:6630773,34506148:0,393216,0 -(1,12005:6630773,36153601:25952256,2040669,196608 -g1,12005:6630773,36153601 -g1,12005:6630773,36153601 -g1,12005:6434165,36153601 -(1,12005:6434165,36153601:0,2040669,196608 -r1,12005:32779637,36153601:26345472,2237277,196608 -k1,12005:6434165,36153601:-26345472 -) -(1,12005:6434165,36153601:26345472,2040669,196608 -[1,12005:6630773,36153601:25952256,1844061,0 -(1,12001:6630773,34720058:25952256,410518,107478 -(1,12000:6630773,34720058:0,0,0 -g1,12000:6630773,34720058 -g1,12000:6630773,34720058 -g1,12000:6303093,34720058 -(1,12000:6303093,34720058:0,0,0 -) -g1,12000:6630773,34720058 -) -k1,12001:6630773,34720058:0 -g1,12001:10424522,34720058 -g1,12001:11056814,34720058 -g1,12001:13585980,34720058 -g1,12001:15482855,34720058 -g1,12001:16115147,34720058 -g1,12001:18012022,34720058 -g1,12001:18644314,34720058 -g1,12001:19276606,34720058 -g1,12001:20857335,34720058 -g1,12001:22754209,34720058 -g1,12001:23386501,34720058 -g1,12001:27812541,34720058 -h1,12001:28128687,34720058:0,0,0 -k1,12001:32583029,34720058:4454342 -g1,12001:32583029,34720058 -) -(1,12002:6630773,35386236:25952256,404226,107478 -h1,12002:6630773,35386236:0,0,0 -g1,12002:6946919,35386236 -g1,12002:7263065,35386236 -g1,12002:11372959,35386236 -h1,12002:11689105,35386236:0,0,0 -k1,12002:32583029,35386236:20893924 -g1,12002:32583029,35386236 -) -(1,12003:6630773,36052414:25952256,404226,101187 -h1,12003:6630773,36052414:0,0,0 -g1,12003:6946919,36052414 -g1,12003:7263065,36052414 -g1,12003:15482853,36052414 -g1,12003:16115145,36052414 -g1,12003:18012020,36052414 -g1,12003:19276603,36052414 -h1,12003:20541185,36052414:0,0,0 -k1,12003:32583029,36052414:12041844 -g1,12003:32583029,36052414 -) -] -) -g1,12005:32583029,36153601 -g1,12005:6630773,36153601 -g1,12005:6630773,36153601 -g1,12005:32583029,36153601 -g1,12005:32583029,36153601 -) -h1,12005:6630773,36350209:0,0,0 -(1,12009:6630773,37715985:25952256,505283,126483 -h1,12008:6630773,37715985:983040,0,0 -k1,12008:8273433,37715985:189727 -k1,12008:8994656,37715985:189726 -k1,12008:10470199,37715985:189727 -k1,12008:13289886,37715985:189727 -k1,12008:14131040,37715985:189726 -k1,12008:15413252,37715985:189727 -k1,12008:18907959,37715985:189726 -k1,12008:19783848,37715985:189727 -k1,12008:22346634,37715985:189727 -k1,12008:23733047,37715985:189726 -k1,12008:26897453,37715985:189727 -k1,12008:27618677,37715985:189727 -k1,12008:30564847,37715985:189726 -k1,12008:31563944,37715985:189727 -k1,12008:32583029,37715985:0 -) -(1,12009:6630773,38557473:25952256,513147,126483 -k1,12008:9423083,38557473:178079 -k1,12008:10260454,38557473:178079 -k1,12008:11457618,38557473:178079 -k1,12008:15550818,38557473:178079 -k1,12008:16546786,38557473:178079 -k1,12008:17743951,38557473:178080 -k1,12008:20738112,38557473:178079 -k1,12008:22429417,38557473:178079 -k1,12008:23293658,38557473:178079 -k1,12008:26113493,38557473:178079 -k1,12008:27283132,38557473:178079 -k1,12008:32583029,38557473:0 -) -(1,12009:6630773,39398961:25952256,513147,134348 -g1,12008:7698354,39398961 -g1,12008:10780512,39398961 -g1,12008:11998826,39398961 -g1,12008:14463635,39398961 -g1,12008:16421195,39398961 -g1,12008:17303309,39398961 -k1,12009:32583029,39398961:14005045 -g1,12009:32583029,39398961 -) -v1,12011:6630773,40589427:0,393216,0 -(1,12017:6630773,42243171:25952256,2046960,196608 -g1,12017:6630773,42243171 -g1,12017:6630773,42243171 -g1,12017:6434165,42243171 -(1,12017:6434165,42243171:0,2046960,196608 -r1,12017:32779637,42243171:26345472,2243568,196608 -k1,12017:6434165,42243171:-26345472 -) -(1,12017:6434165,42243171:26345472,2046960,196608 -[1,12017:6630773,42243171:25952256,1850352,0 -(1,12013:6630773,40803337:25952256,410518,107478 -(1,12012:6630773,40803337:0,0,0 -g1,12012:6630773,40803337 -g1,12012:6630773,40803337 -g1,12012:6303093,40803337 -(1,12012:6303093,40803337:0,0,0 -) -g1,12012:6630773,40803337 -) -k1,12013:6630773,40803337:0 -g1,12013:10424522,40803337 -g1,12013:11056814,40803337 -g1,12013:13585980,40803337 -g1,12013:15482855,40803337 -g1,12013:16115147,40803337 -g1,12013:18012022,40803337 -g1,12013:18644314,40803337 -g1,12013:19276606,40803337 -g1,12013:20857335,40803337 -g1,12013:22754209,40803337 -g1,12013:23386501,40803337 -g1,12013:27812541,40803337 -h1,12013:28128687,40803337:0,0,0 -k1,12013:32583029,40803337:4454342 -g1,12013:32583029,40803337 -) -(1,12014:6630773,41469515:25952256,404226,107478 -h1,12014:6630773,41469515:0,0,0 -g1,12014:6946919,41469515 -g1,12014:7263065,41469515 -g1,12014:12321397,41469515 -g1,12014:12953689,41469515 -g1,12014:14534418,41469515 -h1,12014:14850564,41469515:0,0,0 -k1,12014:32583028,41469515:17732464 -g1,12014:32583028,41469515 -) -(1,12015:6630773,42135693:25952256,404226,107478 -h1,12015:6630773,42135693:0,0,0 -g1,12015:6946919,42135693 -g1,12015:7263065,42135693 -g1,12015:15482853,42135693 -g1,12015:16115145,42135693 -g1,12015:18328166,42135693 -g1,12015:19908895,42135693 -g1,12015:21805770,42135693 -g1,12015:23702644,42135693 -g1,12015:24334936,42135693 -h1,12015:26231810,42135693:0,0,0 -k1,12015:32583029,42135693:6351219 -g1,12015:32583029,42135693 -) -] -) -g1,12017:32583029,42243171 -g1,12017:6630773,42243171 -g1,12017:6630773,42243171 -g1,12017:32583029,42243171 -g1,12017:32583029,42243171 -) -h1,12017:6630773,42439779:0,0,0 -] -(1,12028:32583029,45706769:0,0,0 -g1,12028:32583029,45706769 -) -) -] -(1,12028:6630773,47279633:25952256,0,0 -h1,12028:6630773,47279633:25952256,0,0 -) -] -h1,12028:4262630,4025873:0,0,0 -] -!23335 -}227 -Input:1534:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1535:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1536:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1537:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1538:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 -{228 -[1,12069:4262630,47279633:28320399,43253760,0 -(1,12069:4262630,4025873:0,0,0 -[1,12069:-473657,4025873:25952256,0,0 -(1,12069:-473657,-710414:25952256,0,0 -h1,12069:-473657,-710414:0,0,0 -(1,12069:-473657,-710414:0,0,0 -(1,12069:-473657,-710414:0,0,0 -g1,12069:-473657,-710414 -(1,12069:-473657,-710414:65781,0,65781 -g1,12069:-407876,-710414 -[1,12069:-407876,-644633:0,0,0 ] +[1,11931:3078558,4812305:0,0,0 +(1,11931:3078558,49800853:0,16384,2228224 +g1,11931:29030814,49800853 +g1,11931:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11931:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) -k1,12069:-473657,-710414:-65781 +] ) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11931:37855564,49800853:1179648,16384,0 +) +) +k1,11931:3078556,49800853:-34777008 +) +] +g1,11931:6630773,4812305 +g1,11931:6630773,4812305 +g1,11931:10347975,4812305 +k1,11931:31387651,4812305:21039676 +) +) +] +[1,11931:6630773,45706769:25952256,40108032,0 +(1,11931:6630773,45706769:25952256,40108032,0 +(1,11931:6630773,45706769:0,0,0 +g1,11931:6630773,45706769 +) +[1,11931:6630773,45706769:25952256,40108032,0 +v1,11885:6630773,6254097:0,393216,0 +(1,11912:6630773,21881228:25952256,16020347,616038 +g1,11912:6630773,21881228 +(1,11912:6630773,21881228:25952256,16020347,616038 +(1,11912:6630773,22497266:25952256,16636385,0 +[1,11912:6630773,22497266:25952256,16636385,0 +(1,11912:6630773,22471052:25952256,16583957,0 +r1,11912:6656987,22471052:26214,16583957,0 +[1,11912:6656987,22471052:25899828,16583957,0 +(1,11912:6656987,21881228:25899828,15404309,0 +[1,11912:7246811,21881228:24720180,15404309,0 +(1,11886:7246811,7638804:24720180,1161885,196608 +(1,11885:7246811,7638804:0,1161885,196608 +r1,11912:8794447,7638804:1547636,1358493,196608 +k1,11885:7246811,7638804:-1547636 +) +(1,11885:7246811,7638804:1547636,1161885,196608 +) +k1,11885:8941707,7638804:147260 +k1,11885:10285654,7638804:147260 +k1,11885:13505242,7638804:147260 +k1,11885:15857790,7638804:147261 +k1,11885:16656478,7638804:147260 +k1,11885:20084470,7638804:147260 +(1,11885:20084470,7638804:0,452978,115847 +r1,11912:21497871,7638804:1413401,568825,115847 +k1,11885:20084470,7638804:-1413401 +) +(1,11885:20084470,7638804:1413401,452978,115847 +k1,11885:20084470,7638804:3277 +h1,11885:21494594,7638804:0,411205,112570 +) +k1,11885:21645131,7638804:147260 +k1,11885:22451683,7638804:147260 +k1,11885:22954803,7638804:147260 +k1,11885:24659854,7638804:147260 +k1,11885:27676281,7638804:147261 +k1,11885:28927823,7638804:147260 +k1,11885:29822849,7638804:147260 +k1,11885:30325969,7638804:147260 +k1,11886:31966991,7638804:0 +) +(1,11886:7246811,8480292:24720180,513147,126483 +k1,11885:8713419,8480292:199142 +k1,11885:11239744,8480292:199142 +k1,11885:12098178,8480292:199142 +k1,11885:12653181,8480292:199143 +k1,11885:14241686,8480292:199142 +k1,11885:16490794,8480292:199142 +k1,11885:17155897,8480292:199142 +k1,11885:18374124,8480292:199142 +k1,11885:19850563,8480292:199142 +k1,11885:22751754,8480292:199142 +k1,11885:25216476,8480292:199142 +k1,11885:26978653,8480292:199143 +k1,11885:27805630,8480292:199142 +k1,11885:29208013,8480292:199142 +k1,11885:30947906,8480292:199142 +k1,11885:31966991,8480292:0 +) +(1,11886:7246811,9321780:24720180,513147,134348 +k1,11885:10095258,9321780:152951 +k1,11885:10779706,9321780:152951 +k1,11885:13304405,9321780:152951 +k1,11885:14108783,9321780:152950 +k1,11885:15280819,9321780:152951 +k1,11885:17699350,9321780:152951 +k1,11885:19241664,9321780:152951 +k1,11885:20586060,9321780:152951 +k1,11885:22361027,9321780:152951 +k1,11885:24524622,9321780:152950 +k1,11885:25033433,9321780:152951 +k1,11885:26575747,9321780:152951 +k1,11885:28604994,9321780:152951 +k1,11885:31966991,9321780:0 +) +(1,11886:7246811,10163268:24720180,505283,126483 +g1,11885:8835403,10163268 +g1,11885:9686060,10163268 +g1,11885:10633055,10163268 +g1,11885:12345510,10163268 +g1,11885:13160777,10163268 +g1,11885:14379091,10163268 +k1,11886:31966991,10163268:15856439 +g1,11886:31966991,10163268 +) +v1,11888:7246811,11353734:0,393216,0 +(1,11896:7246811,14302085:24720180,3341567,196608 +g1,11896:7246811,14302085 +g1,11896:7246811,14302085 +g1,11896:7050203,14302085 +(1,11896:7050203,14302085:0,3341567,196608 +r1,11912:32163599,14302085:25113396,3538175,196608 +k1,11896:7050203,14302085:-25113396 +) +(1,11896:7050203,14302085:25113396,3341567,196608 +[1,11896:7246811,14302085:24720180,3144959,0 +(1,11890:7246811,11561352:24720180,404226,107478 +(1,11889:7246811,11561352:0,0,0 +g1,11889:7246811,11561352 +g1,11889:7246811,11561352 +g1,11889:6919131,11561352 +(1,11889:6919131,11561352:0,0,0 +) +g1,11889:7246811,11561352 +) +k1,11890:7246811,11561352:0 +g1,11890:11040560,11561352 +g1,11890:11672852,11561352 +k1,11890:11672852,11561352:0 +h1,11890:13885872,11561352:0,0,0 +k1,11890:31966992,11561352:18081120 +g1,11890:31966992,11561352 +) +(1,11891:7246811,12227530:24720180,404226,107478 +h1,11891:7246811,12227530:0,0,0 +g1,11891:7562957,12227530 +g1,11891:7879103,12227530 +g1,11891:8195249,12227530 +g1,11891:8511395,12227530 +g1,11891:8827541,12227530 +g1,11891:9143687,12227530 +g1,11891:9459833,12227530 +g1,11891:11988999,12227530 +g1,11891:12621291,12227530 +g1,11891:14518166,12227530 +g1,11891:15150458,12227530 +g1,11891:17047333,12227530 +g1,11891:17679625,12227530 +g1,11891:18311917,12227530 +g1,11891:20208791,12227530 +h1,11891:20524937,12227530:0,0,0 +k1,11891:31966991,12227530:11442054 +g1,11891:31966991,12227530 +) +(1,11892:7246811,12893708:24720180,404226,107478 +h1,11892:7246811,12893708:0,0,0 +g1,11892:7562957,12893708 +g1,11892:7879103,12893708 +g1,11892:12937435,12893708 +g1,11892:13569727,12893708 +g1,11892:14518165,12893708 +h1,11892:14834311,12893708:0,0,0 +k1,11892:31966991,12893708:17132680 +g1,11892:31966991,12893708 +) +(1,11893:7246811,13559886:24720180,410518,107478 +h1,11893:7246811,13559886:0,0,0 +g1,11893:7562957,13559886 +g1,11893:7879103,13559886 +g1,11893:12937435,13559886 +g1,11893:13569727,13559886 +g1,11893:20524932,13559886 +g1,11893:21789515,13559886 +g1,11893:22737952,13559886 +g1,11893:24318681,13559886 +g1,11893:26215555,13559886 +g1,11893:26847847,13559886 +k1,11893:26847847,13559886:0 +h1,11893:29693158,13559886:0,0,0 +k1,11893:31966991,13559886:2273833 +g1,11893:31966991,13559886 +) +(1,11894:7246811,14226064:24720180,404226,76021 +h1,11894:7246811,14226064:0,0,0 +g1,11894:7562957,14226064 +g1,11894:7879103,14226064 +g1,11894:8195249,14226064 +g1,11894:8511395,14226064 +g1,11894:8827541,14226064 +g1,11894:9143687,14226064 +g1,11894:9459833,14226064 +g1,11894:9775979,14226064 +g1,11894:10092125,14226064 +g1,11894:10408271,14226064 +g1,11894:10724417,14226064 +g1,11894:11040563,14226064 +g1,11894:11356709,14226064 +g1,11894:12937438,14226064 +g1,11894:13569730,14226064 +h1,11894:14834313,14226064:0,0,0 +k1,11894:31966991,14226064:17132678 +g1,11894:31966991,14226064 +) +] +) +g1,11896:31966991,14302085 +g1,11896:7246811,14302085 +g1,11896:7246811,14302085 +g1,11896:31966991,14302085 +g1,11896:31966991,14302085 +) +h1,11896:7246811,14498693:0,0,0 +(1,11901:7246811,15689159:24720180,513147,134348 +h1,11899:7246811,15689159:983040,0,0 +k1,11899:9666618,15689159:240080 +k1,11899:11183995,15689159:240080 +k1,11899:13689655,15689159:240080 +k1,11899:15319099,15689159:240081 +k1,11899:16663461,15689159:240080 +k1,11899:18189357,15689159:240080 +k1,11899:19177203,15689159:240080 +k1,11899:22249094,15689159:240080 +k1,11899:24134129,15689159:240081 +k1,11899:26109602,15689159:240080 +k1,11899:27368767,15689159:240080 +k1,11899:30576972,15689159:240080 +k1,11899:31966991,15689159:0 +) +(1,11901:7246811,16355337:24720180,513147,134348 +k1,11899:10392211,16355337:225116 +k1,11899:11689496,16355337:225116 +k1,11899:12980884,16355337:225117 +k1,11899:14225085,16355337:225116 +k1,11899:17125381,16355337:225116 +k1,11899:20097111,16355337:225116 +k1,11899:21889848,16355337:225116 +k1,11899:24277651,16355337:225116 +k1,11899:25734845,16355337:225117 +k1,11899:28238648,16355337:225116 +h1,11899:29209236,16355337:0,0,0 +k1,11899:29434352,16355337:225116 +k1,11899:30468838,16355337:225116 +k1,11899:31966991,16355337:0 +) +(1,11901:7246811,17021515:24720180,505283,95026 +h1,11899:8442188,17021515:0,0,0 +g1,11899:9022181,17021515 +k1,11901:31966991,17021515:22944810 +g1,11901:31966991,17021515 +) +v1,11901:7246811,18211981:0,393216,0 +(1,11909:7246811,21160332:24720180,3341567,196608 +g1,11909:7246811,21160332 +g1,11909:7246811,21160332 +g1,11909:7050203,21160332 +(1,11909:7050203,21160332:0,3341567,196608 +r1,11912:32163599,21160332:25113396,3538175,196608 +k1,11909:7050203,21160332:-25113396 +) +(1,11909:7050203,21160332:25113396,3341567,196608 +[1,11909:7246811,21160332:24720180,3144959,0 +(1,11903:7246811,18419599:24720180,404226,107478 +(1,11902:7246811,18419599:0,0,0 +g1,11902:7246811,18419599 +g1,11902:7246811,18419599 +g1,11902:6919131,18419599 +(1,11902:6919131,18419599:0,0,0 +) +g1,11902:7246811,18419599 +) +k1,11903:7246811,18419599:0 +g1,11903:11040560,18419599 +g1,11903:11672852,18419599 +k1,11903:11672852,18419599:0 +h1,11903:13885872,18419599:0,0,0 +k1,11903:31966992,18419599:18081120 +g1,11903:31966992,18419599 +) +(1,11904:7246811,19085777:24720180,404226,107478 +h1,11904:7246811,19085777:0,0,0 +g1,11904:7562957,19085777 +g1,11904:7879103,19085777 +g1,11904:8195249,19085777 +g1,11904:8511395,19085777 +g1,11904:8827541,19085777 +g1,11904:9143687,19085777 +g1,11904:9459833,19085777 +g1,11904:11988999,19085777 +g1,11904:12621291,19085777 +g1,11904:14518166,19085777 +g1,11904:15150458,19085777 +g1,11904:17047333,19085777 +g1,11904:17679625,19085777 +g1,11904:18311917,19085777 +g1,11904:20208791,19085777 +h1,11904:20524937,19085777:0,0,0 +k1,11904:31966991,19085777:11442054 +g1,11904:31966991,19085777 +) +(1,11905:7246811,19751955:24720180,404226,107478 +h1,11905:7246811,19751955:0,0,0 +g1,11905:7562957,19751955 +g1,11905:7879103,19751955 +g1,11905:12937435,19751955 +g1,11905:13569727,19751955 +g1,11905:14518165,19751955 +h1,11905:14834311,19751955:0,0,0 +k1,11905:31966991,19751955:17132680 +g1,11905:31966991,19751955 +) +(1,11906:7246811,20418133:24720180,404226,107478 +h1,11906:7246811,20418133:0,0,0 +g1,11906:7562957,20418133 +g1,11906:7879103,20418133 +g1,11906:12937435,20418133 +g1,11906:13569727,20418133 +g1,11906:14202019,20418133 +g1,11906:15782747,20418133 +g1,11906:18628059,20418133 +g1,11906:19260351,20418133 +g1,11906:20208789,20418133 +g1,11906:21473372,20418133 +g1,11906:22421809,20418133 +g1,11906:23686393,20418133 +g1,11906:25583267,20418133 +g1,11906:26215559,20418133 +k1,11906:26215559,20418133:0 +h1,11906:29060870,20418133:0,0,0 +k1,11906:31966991,20418133:2906121 +g1,11906:31966991,20418133 +) +(1,11907:7246811,21084311:24720180,404226,76021 +h1,11907:7246811,21084311:0,0,0 +g1,11907:7562957,21084311 +g1,11907:7879103,21084311 +g1,11907:8195249,21084311 +g1,11907:8511395,21084311 +g1,11907:8827541,21084311 +g1,11907:9143687,21084311 +g1,11907:9459833,21084311 +g1,11907:9775979,21084311 +g1,11907:10092125,21084311 +g1,11907:10408271,21084311 +g1,11907:10724417,21084311 +g1,11907:11040563,21084311 +g1,11907:11356709,21084311 +g1,11907:12937438,21084311 +g1,11907:13569730,21084311 +h1,11907:14834313,21084311:0,0,0 +k1,11907:31966991,21084311:17132678 +g1,11907:31966991,21084311 +) +] +) +g1,11909:31966991,21160332 +g1,11909:7246811,21160332 +g1,11909:7246811,21160332 +g1,11909:31966991,21160332 +g1,11909:31966991,21160332 +) +h1,11909:7246811,21356940:0,0,0 +] +) +] +r1,11912:32583029,22471052:26214,16583957,0 +) +] +) +) +g1,11912:32583029,21881228 +) +h1,11912:6630773,22497266:0,0,0 +(1,11915:6630773,25829122:25952256,32768,229376 +(1,11915:6630773,25829122:0,32768,229376 +(1,11915:6630773,25829122:5505024,32768,229376 +r1,11915:12135797,25829122:5505024,262144,229376 +) +k1,11915:6630773,25829122:-5505024 +) +(1,11915:6630773,25829122:25952256,32768,0 +r1,11915:32583029,25829122:25952256,32768,0 +) +) +(1,11915:6630773,27433450:25952256,606339,14155 +(1,11915:6630773,27433450:1974731,575668,0 +g1,11915:6630773,27433450 +g1,11915:8605504,27433450 +) +k1,11915:32583029,27433450:19476774 +g1,11915:32583029,27433450 +) +(1,11919:6630773,28668154:25952256,513147,134348 +k1,11918:9795316,28668154:319625 +k1,11918:13622428,28668154:319625 +k1,11918:16468466,28668154:319625 +k1,11918:19550433,28668154:319624 +k1,11918:23085254,28668154:319625 +k1,11918:25179594,28668154:319625 +(1,11918:25179594,28668154:0,452978,122846 +r1,11918:29406690,28668154:4227096,575824,122846 +k1,11918:25179594,28668154:-4227096 +) +(1,11918:25179594,28668154:4227096,452978,122846 +k1,11918:25179594,28668154:3277 +h1,11918:29403413,28668154:0,411205,112570 +) +k1,11918:29726315,28668154:319625 +k1,11919:32583029,28668154:0 +) +(1,11919:6630773,29509642:25952256,505283,126483 +(1,11918:6630773,29509642:0,452978,115847 +r1,11918:8395886,29509642:1765113,568825,115847 +k1,11918:6630773,29509642:-1765113 +) +(1,11918:6630773,29509642:1765113,452978,115847 +k1,11918:6630773,29509642:3277 +h1,11918:8392609,29509642:0,411205,112570 +) +k1,11918:8808520,29509642:238964 +k1,11918:10238929,29509642:238964 +(1,11918:10238929,29509642:0,452978,122846 +r1,11918:14114313,29509642:3875384,575824,122846 +k1,11918:10238929,29509642:-3875384 +) +(1,11918:10238929,29509642:3875384,452978,122846 +k1,11918:10238929,29509642:3277 +h1,11918:14111036,29509642:0,411205,112570 +) +k1,11918:14353277,29509642:238964 +k1,11918:17448954,29509642:238963 +(1,11918:17448954,29509642:0,452978,115847 +r1,11918:20269203,29509642:2820249,568825,115847 +k1,11918:17448954,29509642:-2820249 +) +(1,11918:17448954,29509642:2820249,452978,115847 +k1,11918:17448954,29509642:3277 +h1,11918:20265926,29509642:0,411205,112570 +) +k1,11918:20681837,29509642:238964 +k1,11918:22387497,29509642:238964 +k1,11918:25152874,29509642:238964 +(1,11918:25152874,29509642:0,414482,115847 +r1,11918:25511140,29509642:358266,530329,115847 +k1,11918:25152874,29509642:-358266 +) +(1,11918:25152874,29509642:358266,414482,115847 +k1,11918:25152874,29509642:3277 +h1,11918:25507863,29509642:0,411205,112570 +) +k1,11918:25923774,29509642:238964 +(1,11918:25923774,29509642:0,414482,115847 +r1,11918:26282040,29509642:358266,530329,115847 +k1,11918:25923774,29509642:-358266 +) +(1,11918:25923774,29509642:358266,414482,115847 +k1,11918:25923774,29509642:3277 +h1,11918:26278763,29509642:0,411205,112570 +) +k1,11918:26694674,29509642:238964 +(1,11918:26694674,29509642:0,452978,115847 +r1,11918:28459787,29509642:1765113,568825,115847 +k1,11918:26694674,29509642:-1765113 +) +(1,11918:26694674,29509642:1765113,452978,115847 +k1,11918:26694674,29509642:3277 +h1,11918:28456510,29509642:0,411205,112570 +) +k1,11918:28698750,29509642:238963 +k1,11918:30129159,29509642:238964 +(1,11918:30129159,29509642:0,452978,115847 +r1,11918:31542560,29509642:1413401,568825,115847 +k1,11918:30129159,29509642:-1413401 +) +(1,11918:30129159,29509642:1413401,452978,115847 +k1,11918:30129159,29509642:3277 +h1,11918:31539283,29509642:0,411205,112570 +) +k1,11918:31955194,29509642:238964 +k1,11918:32583029,29509642:0 +) +(1,11919:6630773,30351130:25952256,513147,134348 +k1,11918:7987327,30351130:153313 +k1,11918:10419327,30351130:153313 +k1,11918:11440991,30351130:153312 +k1,11918:12726766,30351130:153313 +k1,11918:15549360,30351130:153313 +k1,11918:16721758,30351130:153313 +k1,11918:19637414,30351130:153313 +(1,11918:19637414,30351130:0,452978,122846 +r1,11918:23161086,30351130:3523672,575824,122846 +k1,11918:19637414,30351130:-3523672 +) +(1,11918:19637414,30351130:3523672,452978,122846 +k1,11918:19637414,30351130:3277 +h1,11918:23157809,30351130:0,411205,112570 +) +k1,11918:23314399,30351130:153313 +k1,11918:26251680,30351130:153312 +k1,11918:27021031,30351130:153313 +k1,11918:29754496,30351130:153313 +k1,11918:32583029,30351130:0 +) +(1,11919:6630773,31192618:25952256,513147,134348 +k1,11918:7990228,31192618:168010 +k1,11918:9850379,31192618:168011 +k1,11918:13010108,31192618:168010 +k1,11918:14745740,31192618:168011 +k1,11918:17824204,31192618:168010 +k1,11918:19276721,31192618:168011 +k1,11918:21596933,31192618:168010 +k1,11918:24767147,31192618:168011 +k1,11918:26131844,31192618:168010 +k1,11918:28688642,31192618:168011 +k1,11918:31015408,31192618:168010 +k1,11918:32583029,31192618:0 +) +(1,11919:6630773,32034106:25952256,505283,126483 +k1,11918:8436038,32034106:203565 +k1,11918:10135789,32034106:203564 +k1,11918:13331073,32034106:203565 +k1,11918:14667100,32034106:203565 +k1,11918:15936935,32034106:203564 +k1,11918:16888266,32034106:203565 +k1,11918:19341027,32034106:203565 +k1,11918:20938543,32034106:203565 +k1,11918:22161192,32034106:203564 +k1,11918:26059021,32034106:203565 +k1,11918:27547092,32034106:203565 +k1,11918:30128958,32034106:203564 +k1,11918:31464985,32034106:203565 +k1,11918:32583029,32034106:0 +) +(1,11919:6630773,32875594:25952256,505283,126483 +g1,11918:8469057,32875594 +g1,11918:9319714,32875594 +g1,11918:10543926,32875594 +g1,11918:11762240,32875594 +k1,11919:32583029,32875594:19039520 +g1,11919:32583029,32875594 +) +(1,11921:6630773,33717082:25952256,513147,134348 +h1,11920:6630773,33717082:983040,0,0 +k1,11920:9858531,33717082:142978 +k1,11920:10949159,33717082:142977 +k1,11920:14074025,33717082:142978 +k1,11920:16852205,33717082:142977 +k1,11920:20435168,33717082:142978 +k1,11920:22626145,33717082:142977 +k1,11920:23124983,33717082:142978 +k1,11920:25673133,33717082:142978 +k1,11920:26502272,33717082:142977 +k1,11920:27415953,33717082:142978 +k1,11920:30804928,33717082:142977 +k1,11920:31563944,33717082:142978 +k1,11920:32583029,33717082:0 +) +(1,11921:6630773,34558570:25952256,505283,134348 +k1,11920:8423707,34558570:139461 +k1,11920:9801142,34558570:139460 +k1,11920:10626765,34558570:139461 +k1,11920:13448614,34558570:139460 +k1,11920:15636075,34558570:139461 +k1,11920:16131396,34558570:139461 +k1,11920:19278303,34558570:139460 +k1,11920:20103926,34558570:139461 +k1,11920:21014089,34558570:139460 +k1,11920:24399548,34558570:139461 +k1,11920:25166844,34558570:139461 +k1,11920:26509545,34558570:139460 +k1,11920:28927693,34558570:139461 +k1,11920:29935505,34558570:139460 +k1,11920:31207428,34558570:139461 +k1,11920:32583029,34558570:0 +) +(1,11921:6630773,35400058:25952256,513147,134348 +k1,11920:9519094,35400058:219040 +k1,11920:13178120,35400058:219041 +k1,11920:15282631,35400058:219040 +k1,11920:16976887,35400058:219041 +k1,11920:17882089,35400058:219040 +k1,11920:18456989,35400058:219040 +k1,11920:20941610,35400058:219041 +k1,11920:23565822,35400058:219040 +(1,11920:23565822,35400058:0,452978,115847 +r1,11920:28144630,35400058:4578808,568825,115847 +k1,11920:23565822,35400058:-4578808 +) +(1,11920:23565822,35400058:4578808,452978,115847 +k1,11920:23565822,35400058:3277 +h1,11920:28141353,35400058:0,411205,112570 +) +k1,11920:28363671,35400058:219041 +k1,11920:30468182,35400058:219040 +k1,11920:32583029,35400058:0 +) +(1,11921:6630773,36241546:25952256,513147,134348 +k1,11920:8837917,36241546:196499 +k1,11920:11448761,36241546:196498 +k1,11920:12331422,36241546:196499 +k1,11920:15286986,36241546:196498 +k1,11920:16680172,36241546:196499 +k1,11920:20316655,36241546:196498 +k1,11920:21797660,36241546:196499 +k1,11920:23469374,36241546:196499 +k1,11920:25367842,36241546:196498 +k1,11920:28246730,36241546:196499 +k1,11920:29129390,36241546:196498 +k1,11920:31591469,36241546:196499 +k1,11920:32583029,36241546:0 +) +(1,11921:6630773,37083034:25952256,505283,134348 +g1,11920:9920025,37083034 +g1,11920:10735292,37083034 +g1,11920:13213208,37083034 +h1,11920:14755926,37083034:0,0,0 +g1,11920:14955155,37083034 +g1,11920:17834807,37083034 +g1,11920:19427987,37083034 +g1,11920:20646301,37083034 +g1,11920:25469095,37083034 +k1,11921:32583029,37083034:4280813 +g1,11921:32583029,37083034 +) +(1,11922:6630773,39174294:25952256,555811,8650 +(1,11922:6630773,39174294:2450326,527696,0 +g1,11922:6630773,39174294 +g1,11922:9081099,39174294 +) +k1,11922:32583028,39174294:21628320 +g1,11922:32583028,39174294 +) +(1,11926:6630773,40408998:25952256,505283,126483 +k1,11925:7627617,40408998:178955 +k1,11925:9882098,40408998:178956 +k1,11925:12094635,40408998:178955 +k1,11925:12889628,40408998:178955 +k1,11925:14271825,40408998:178956 +k1,11925:17042074,40408998:178955 +(1,11925:17042074,40408998:0,452978,122846 +r1,11925:21269170,40408998:4227096,575824,122846 +k1,11925:17042074,40408998:-4227096 +) +(1,11925:17042074,40408998:4227096,452978,122846 +k1,11925:17042074,40408998:3277 +h1,11925:21265893,40408998:0,411205,112570 +) +k1,11925:21621795,40408998:178955 +k1,11925:22905033,40408998:178956 +k1,11925:23831754,40408998:178955 +k1,11925:25523935,40408998:178955 +k1,11925:26354319,40408998:178956 +k1,11925:27730617,40408998:178955 +k1,11925:28265432,40408998:178955 +k1,11925:30002179,40408998:178956 +k1,11925:31575085,40408998:178955 +k1,11926:32583029,40408998:0 +) +(1,11926:6630773,41250486:25952256,505283,126483 +k1,11925:10055421,41250486:147848 +k1,11925:14012878,41250486:147849 +k1,11925:14922254,41250486:147848 +k1,11925:17688922,41250486:147849 +k1,11925:18519655,41250486:147848 +k1,11925:21482931,41250486:147849 +k1,11925:24243044,41250486:147848 +(1,11925:24243044,41250486:0,452978,115847 +r1,11925:25304733,41250486:1061689,568825,115847 +k1,11925:24243044,41250486:-1061689 +) +(1,11925:24243044,41250486:1061689,452978,115847 +k1,11925:24243044,41250486:3277 +h1,11925:25301456,41250486:0,411205,112570 +) +k1,11925:25452582,41250486:147849 +k1,11925:28600013,41250486:147848 +k1,11925:29766947,41250486:147849 +k1,11925:32583029,41250486:0 +) +(1,11926:6630773,42091974:25952256,513147,134348 +k1,11925:7491916,42091974:201851 +k1,11925:10596357,42091974:201851 +k1,11925:11414246,42091974:201851 +k1,11925:12635181,42091974:201850 +k1,11925:15267107,42091974:201851 +k1,11925:16128250,42091974:201851 +k1,11925:17349186,42091974:201851 +k1,11925:19032806,42091974:201851 +k1,11925:19704550,42091974:201851 +k1,11925:20437898,42091974:201851 +k1,11925:20995609,42091974:201851 +k1,11925:23817588,42091974:201850 +k1,11925:26704449,42091974:201851 +k1,11925:28097745,42091974:201851 +k1,11925:29997634,42091974:201851 +k1,11925:32583029,42091974:0 +) +(1,11926:6630773,42933462:25952256,505283,126483 +g1,11925:7481430,42933462 +g1,11925:9470447,42933462 +g1,11925:10025536,42933462 +g1,11925:13795166,42933462 +g1,11925:15610513,42933462 +g1,11925:17381951,42933462 +g1,11925:18112677,42933462 +g1,11925:19825132,42933462 +g1,11925:20675789,42933462 +g1,11925:23916544,42933462 +g1,11925:25319014,42933462 +k1,11926:32583029,42933462:4579005 +g1,11926:32583029,42933462 +) +(1,11929:6630773,43774950:25952256,513147,126483 +h1,11927:6630773,43774950:983040,0,0 +k1,11927:8961590,43774950:151090 +k1,11927:10418813,43774950:151090 +k1,11927:13561622,43774950:151090 +k1,11927:15355044,43774950:151090 +k1,11927:17675376,43774950:151090 +k1,11927:19607736,43774950:151091 +k1,11927:22288516,43774950:151090 +k1,11927:25059735,43774950:151090 +k1,11927:28052466,43774950:151090 +k1,11927:29195116,43774950:151090 +k1,11927:31931601,43774950:151090 +k1,11927:32583029,43774950:0 +) +(1,11929:6630773,44616438:25952256,513147,115847 +k1,11927:8293566,44616438:196097 +(1,11927:8293566,44616438:0,414482,115847 +r1,11927:8651832,44616438:358266,530329,115847 +k1,11927:8293566,44616438:-358266 +) +(1,11927:8293566,44616438:358266,414482,115847 +k1,11927:8293566,44616438:3277 +h1,11927:8648555,44616438:0,411205,112570 +) +k1,11927:8847930,44616438:196098 +k1,11927:10235472,44616438:196097 +(1,11927:10235472,44616438:0,414482,115847 +r1,11927:10593738,44616438:358266,530329,115847 +k1,11927:10235472,44616438:-358266 +) +(1,11927:10235472,44616438:358266,414482,115847 +k1,11927:10235472,44616438:3277 +h1,11927:10590461,44616438:0,411205,112570 +) +k1,11927:10963505,44616438:196097 +k1,11928:12876645,44616438:196097 +k1,11928:15148924,44616438:196098 +k1,11928:16491246,44616438:196097 +k1,11928:18431256,44616438:196097 +k1,11928:19575004,44616438:196097 +(1,11928:19575004,44616438:0,452978,115847 +r1,11928:21340117,44616438:1765113,568825,115847 +k1,11928:19575004,44616438:-1765113 +) +(1,11928:19575004,44616438:1765113,452978,115847 +k1,11928:19575004,44616438:3277 +h1,11928:21336840,44616438:0,411205,112570 +) +k1,11928:21709885,44616438:196098 +k1,11928:23406756,44616438:196097 +k1,11928:24218891,44616438:196097 +k1,11928:25587427,44616438:196097 +k1,11928:28718227,44616438:196098 +k1,11928:30071034,44616438:196097 +k1,11928:32583029,44616438:0 +) +(1,11929:6630773,45457926:25952256,513147,95026 +g1,11928:7777653,45457926 +g1,11928:10597011,45457926 +g1,11928:13637881,45457926 +g1,11928:17821699,45457926 +g1,11928:19212373,45457926 +g1,11928:21884275,45457926 +g1,11928:23031155,45457926 +g1,11928:25454676,45457926 +k1,11929:32583029,45457926:4014738 +g1,11929:32583029,45457926 +) +] +(1,11931:32583029,45706769:0,0,0 +g1,11931:32583029,45706769 +) +) +] +(1,11931:6630773,47279633:25952256,0,0 +h1,11931:6630773,47279633:25952256,0,0 +) +] +h1,11931:4262630,4025873:0,0,0 +] +!26416 +}226 +Input:1516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{227 +[1,11991:4262630,47279633:28320399,43253760,0 +(1,11991:4262630,4025873:0,0,0 +[1,11991:-473657,4025873:25952256,0,0 +(1,11991:-473657,-710414:25952256,0,0 +h1,11991:-473657,-710414:0,0,0 +(1,11991:-473657,-710414:0,0,0 +(1,11991:-473657,-710414:0,0,0 +g1,11991:-473657,-710414 +(1,11991:-473657,-710414:65781,0,65781 +g1,11991:-407876,-710414 +[1,11991:-407876,-644633:0,0,0 +] +) +k1,11991:-473657,-710414:-65781 ) -k1,12069:25478599,-710414:25952256 -g1,12069:25478599,-710414 +) +k1,11991:25478599,-710414:25952256 +g1,11991:25478599,-710414 ) ] ) -[1,12069:6630773,47279633:25952256,43253760,0 -[1,12069:6630773,4812305:25952256,786432,0 -(1,12069:6630773,4812305:25952256,485622,11795 -(1,12069:6630773,4812305:25952256,485622,11795 -g1,12069:3078558,4812305 -[1,12069:3078558,4812305:0,0,0 -(1,12069:3078558,2439708:0,1703936,0 -k1,12069:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12069:2537886,2439708:1179648,16384,0 +[1,11991:6630773,47279633:25952256,43253760,0 +[1,11991:6630773,4812305:25952256,786432,0 +(1,11991:6630773,4812305:25952256,513147,134348 +(1,11991:6630773,4812305:25952256,513147,134348 +g1,11991:3078558,4812305 +[1,11991:3078558,4812305:0,0,0 +(1,11991:3078558,2439708:0,1703936,0 +k1,11991:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,11991:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12069:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,11991:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12069:3078558,4812305:0,0,0 -(1,12069:3078558,2439708:0,1703936,0 -g1,12069:29030814,2439708 -g1,12069:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12069:36151628,1915420:16384,1179648,0 +[1,11991:3078558,4812305:0,0,0 +(1,11991:3078558,2439708:0,1703936,0 +g1,11991:29030814,2439708 +g1,11991:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,11991:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12069:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,11991:37855564,2439708:1179648,16384,0 ) ) -k1,12069:3078556,2439708:-34777008 +k1,11991:3078556,2439708:-34777008 ) ] -[1,12069:3078558,4812305:0,0,0 -(1,12069:3078558,49800853:0,16384,2228224 -k1,12069:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12069:2537886,49800853:1179648,16384,0 +[1,11991:3078558,4812305:0,0,0 +(1,11991:3078558,49800853:0,16384,2228224 +k1,11991:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,11991:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12069:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,11991:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12069:3078558,4812305:0,0,0 -(1,12069:3078558,49800853:0,16384,2228224 -g1,12069:29030814,49800853 -g1,12069:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12069:36151628,51504789:16384,1179648,0 +[1,11991:3078558,4812305:0,0,0 +(1,11991:3078558,49800853:0,16384,2228224 +g1,11991:29030814,49800853 +g1,11991:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,11991:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12069:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,11991:37855564,49800853:1179648,16384,0 ) ) -k1,12069:3078556,49800853:-34777008 -) -] -g1,12069:6630773,4812305 -g1,12069:6630773,4812305 -g1,12069:10347975,4812305 -k1,12069:31387651,4812305:21039676 -) -) -] -[1,12069:6630773,45706769:25952256,40108032,0 -(1,12069:6630773,45706769:25952256,40108032,0 -(1,12069:6630773,45706769:0,0,0 -g1,12069:6630773,45706769 -) -[1,12069:6630773,45706769:25952256,40108032,0 -(1,12020:6630773,14661426:25952256,9062689,0 -k1,12020:10523651,14661426:3892878 -h1,12019:10523651,14661426:0,0,0 -(1,12019:10523651,14661426:18166500,9062689,0 -(1,12019:10523651,14661426:18167381,9062712,0 -(1,12019:10523651,14661426:18167381,9062712,0 -(1,12019:10523651,14661426:0,9062712,0 -(1,12019:10523651,14661426:0,14155776,0 -(1,12019:10523651,14661426:28377088,14155776,0 -) -k1,12019:10523651,14661426:-28377088 -) -) -g1,12019:28691032,14661426 -) -) -) -g1,12020:28690151,14661426 -k1,12020:32583029,14661426:3892878 -) -v1,12028:6630773,16027202:0,393216,0 -(1,12040:6630773,24021826:25952256,8387840,616038 -g1,12040:6630773,24021826 -(1,12040:6630773,24021826:25952256,8387840,616038 -(1,12040:6630773,24637864:25952256,9003878,0 -[1,12040:6630773,24637864:25952256,9003878,0 -(1,12040:6630773,24611650:25952256,8951450,0 -r1,12040:6656987,24611650:26214,8951450,0 -[1,12040:6656987,24611650:25899828,8951450,0 -(1,12040:6656987,24021826:25899828,7771802,0 -[1,12040:7246811,24021826:24720180,7771802,0 -(1,12029:7246811,17272370:24720180,1022346,126483 -k1,12028:8711442,17272370:209118 -k1,12028:10191958,17272370:209118 -k1,12028:12912416,17272370:209118 -k1,12028:13737571,17272370:209117 -k1,12028:14965774,17272370:209118 -k1,12028:16564255,17272370:209118 -k1,12028:17877655,17272370:209118 -k1,12028:18834539,17272370:209118 -k1,12028:21629052,17272370:209118 -k1,12028:22489598,17272370:209118 -k1,12028:24348912,17272370:209117 -k1,12028:26000477,17272370:209118 -k1,12028:27366305,17272370:209118 -k1,12028:30593356,17272370:209118 -k1,12029:31966991,17272370:0 -) -(1,12029:7246811,18113858:24720180,513147,134348 -k1,12028:8950449,18113858:192378 -k1,12028:12477299,18113858:192378 -k1,12028:16017911,18113858:192378 -k1,12028:17591133,18113858:192378 -k1,12028:19120445,18113858:192378 -k1,12028:20957776,18113858:192377 -k1,12028:24019976,18113858:192378 -k1,12028:25284523,18113858:192378 -k1,12028:25934998,18113858:192378 -k1,12028:26658873,18113858:192378 -k1,12028:29989770,18113858:192378 -k1,12028:31966991,18113858:0 -) -(1,12029:7246811,18955346:24720180,513147,134348 -k1,12028:8117082,18955346:184109 -k1,12028:8759289,18955346:184110 -k1,12028:10955353,18955346:184109 -k1,12028:12296172,18955346:184109 -k1,12028:13131709,18955346:184109 -k1,12028:15935948,18955346:184110 -k1,12028:18305683,18955346:184109 -k1,12028:19947968,18955346:184109 -k1,12028:21598774,18955346:184110 -k1,12028:23480921,18955346:184109 -k1,12028:26705901,18955346:184109 -k1,12028:27506048,18955346:184109 -k1,12028:29479946,18955346:184110 -k1,12028:30768337,18955346:184109 -k1,12028:31966991,18955346:0 -) -(1,12029:7246811,19796834:24720180,513147,134348 -g1,12028:8193806,19796834 -g1,12028:9805336,19796834 -g1,12028:10470526,19796834 -g1,12028:14346325,19796834 -g1,12028:15231716,19796834 -g1,12028:20477217,19796834 -k1,12029:31966991,19796834:9087224 -g1,12029:31966991,19796834 -) -v1,12031:7246811,20987300:0,393216,0 -(1,12038:7246811,23300930:24720180,2706846,196608 -g1,12038:7246811,23300930 -g1,12038:7246811,23300930 -g1,12038:7050203,23300930 -(1,12038:7050203,23300930:0,2706846,196608 -r1,12040:32163599,23300930:25113396,2903454,196608 -k1,12038:7050203,23300930:-25113396 -) -(1,12038:7050203,23300930:25113396,2706846,196608 -[1,12038:7246811,23300930:24720180,2510238,0 -(1,12033:7246811,21194918:24720180,404226,107478 -(1,12032:7246811,21194918:0,0,0 -g1,12032:7246811,21194918 -g1,12032:7246811,21194918 -g1,12032:6919131,21194918 -(1,12032:6919131,21194918:0,0,0 -) -g1,12032:7246811,21194918 -) -k1,12033:7246811,21194918:0 -g1,12033:11040560,21194918 -g1,12033:11672852,21194918 -g1,12033:14202018,21194918 -g1,12033:16098893,21194918 -g1,12033:16731185,21194918 -g1,12033:18628060,21194918 -g1,12033:19260352,21194918 -g1,12033:19892644,21194918 -k1,12033:19892644,21194918:0 -h1,12033:21157227,21194918:0,0,0 -k1,12033:31966991,21194918:10809764 -g1,12033:31966991,21194918 -) -(1,12034:7246811,21861096:24720180,410518,101187 -h1,12034:7246811,21861096:0,0,0 -g1,12034:7562957,21861096 -g1,12034:7879103,21861096 -g1,12034:8195249,21861096 -g1,12034:8511395,21861096 -g1,12034:8827541,21861096 -g1,12034:9143687,21861096 -g1,12034:9459833,21861096 -g1,12034:9775979,21861096 -g1,12034:10092125,21861096 -g1,12034:10408271,21861096 -g1,12034:10724417,21861096 -g1,12034:11040563,21861096 -g1,12034:11356709,21861096 -g1,12034:11672855,21861096 -g1,12034:11989001,21861096 -g1,12034:12305147,21861096 -g1,12034:12621293,21861096 -g1,12034:12937439,21861096 -g1,12034:13253585,21861096 -g1,12034:13569731,21861096 -g1,12034:13885877,21861096 -g1,12034:14202023,21861096 -g1,12034:14518169,21861096 -g1,12034:14834315,21861096 -g1,12034:15150461,21861096 -g1,12034:15466607,21861096 -g1,12034:17363481,21861096 -g1,12034:17995773,21861096 -k1,12034:17995773,21861096:0 -h1,12034:21789521,21861096:0,0,0 -k1,12034:31966991,21861096:10177470 -g1,12034:31966991,21861096 -) -(1,12035:7246811,22527274:24720180,410518,101187 -h1,12035:7246811,22527274:0,0,0 -g1,12035:7562957,22527274 -g1,12035:7879103,22527274 -g1,12035:8195249,22527274 -g1,12035:8511395,22527274 -g1,12035:8827541,22527274 -g1,12035:9143687,22527274 -g1,12035:9459833,22527274 -g1,12035:9775979,22527274 -g1,12035:10092125,22527274 -g1,12035:10408271,22527274 -g1,12035:10724417,22527274 -g1,12035:11040563,22527274 -g1,12035:11356709,22527274 -g1,12035:11672855,22527274 -g1,12035:11989001,22527274 -g1,12035:12305147,22527274 -g1,12035:12621293,22527274 -g1,12035:12937439,22527274 -g1,12035:13253585,22527274 -g1,12035:13569731,22527274 -g1,12035:13885877,22527274 -g1,12035:14202023,22527274 -g1,12035:14518169,22527274 -g1,12035:14834315,22527274 -g1,12035:15150461,22527274 -g1,12035:15466607,22527274 -g1,12035:17363481,22527274 -g1,12035:17995773,22527274 -g1,12035:22421813,22527274 -h1,12035:22737959,22527274:0,0,0 -k1,12035:31966991,22527274:9229032 -g1,12035:31966991,22527274 -) -(1,12036:7246811,23193452:24720180,404226,107478 -h1,12036:7246811,23193452:0,0,0 -g1,12036:7562957,23193452 -g1,12036:7879103,23193452 -k1,12036:7879103,23193452:0 -h1,12036:11672851,23193452:0,0,0 -k1,12036:31966991,23193452:20294140 -g1,12036:31966991,23193452 -) -] -) -g1,12038:31966991,23300930 -g1,12038:7246811,23300930 -g1,12038:7246811,23300930 -g1,12038:31966991,23300930 -g1,12038:31966991,23300930 -) -h1,12038:7246811,23497538:0,0,0 -] -) -] -r1,12040:32583029,24611650:26214,8951450,0 -) -] -) -) -g1,12040:32583029,24021826 -) -h1,12040:6630773,24637864:0,0,0 -(1,12044:6630773,26003640:25952256,513147,126483 -h1,12043:6630773,26003640:983040,0,0 -k1,12043:8992212,26003640:223655 -k1,12043:10823465,26003640:223655 -k1,12043:12038680,26003640:223655 -k1,12043:14464345,26003640:223655 -k1,12043:15339428,26003640:223655 -k1,12043:17732325,26003640:223655 -k1,12043:19563578,26003640:223655 -k1,12043:20859403,26003640:223656 -k1,12043:21438918,26003640:223655 -k1,12043:23556563,26003640:223655 -k1,12043:24311715,26003640:223655 -k1,12043:27120765,26003640:223655 -k1,12043:27995848,26003640:223655 -k1,12043:30075483,26003640:223655 -k1,12043:31318223,26003640:223655 -(1,12043:31318223,26003640:0,414482,115847 -r1,12043:31676489,26003640:358266,530329,115847 -k1,12043:31318223,26003640:-358266 -) -(1,12043:31318223,26003640:358266,414482,115847 -k1,12043:31318223,26003640:3277 -h1,12043:31673212,26003640:0,411205,112570 -) -k1,12043:31900144,26003640:223655 -k1,12044:32583029,26003640:0 -) -(1,12044:6630773,26845128:25952256,505283,134348 -(1,12043:6630773,26845128:0,414482,115847 -r1,12043:6989039,26845128:358266,530329,115847 -k1,12043:6630773,26845128:-358266 -) -(1,12043:6630773,26845128:358266,414482,115847 -k1,12043:6630773,26845128:3277 -h1,12043:6985762,26845128:0,411205,112570 -) -k1,12043:7264800,26845128:275761 -k1,12043:10467398,26845128:275761 -k1,12043:11897902,26845128:275760 -k1,12043:13781261,26845128:275761 -k1,12043:15048582,26845128:275761 -k1,12043:17190153,26845128:275761 -k1,12043:18117341,26845128:275760 -k1,12043:19868317,26845128:275761 -k1,12043:23924195,26845128:275761 -k1,12043:28445378,26845128:275761 -k1,12043:29912583,26845128:275760 -k1,12043:31345054,26845128:275761 -k1,12043:32583029,26845128:0 -) -(1,12044:6630773,27686616:25952256,513147,134348 -k1,12043:7576306,27686616:286241 -k1,12043:10221188,27686616:286241 -k1,12043:12204156,27686616:286241 -k1,12043:14508906,27686616:286241 -k1,12043:16837904,27686616:286241 -k1,12043:17655642,27686616:286241 -k1,12043:18593312,27686616:286242 -k1,12043:20595286,27686616:286241 -k1,12043:22520582,27686616:286241 -k1,12043:24694915,27686616:286241 -k1,12043:28711465,27686616:286241 -k1,12043:29759234,27686616:286241 -k1,12043:32227169,27686616:286241 -k1,12043:32583029,27686616:0 -) -(1,12044:6630773,28528104:25952256,513147,115847 -g1,12043:9587757,28528104 -g1,12043:11467329,28528104 -g1,12043:14018645,28528104 -g1,12043:15660321,28528104 -g1,12043:17016260,28528104 -g1,12043:18163140,28528104 -g1,12043:19381454,28528104 -(1,12043:19381454,28528104:0,452978,115847 -r1,12043:21146567,28528104:1765113,568825,115847 -k1,12043:19381454,28528104:-1765113 -) -(1,12043:19381454,28528104:1765113,452978,115847 -k1,12043:19381454,28528104:3277 -h1,12043:21143290,28528104:0,411205,112570 -) -g1,12043:21345796,28528104 -k1,12044:32583029,28528104:8310396 -g1,12044:32583029,28528104 -) -v1,12046:6630773,29718570:0,393216,0 -(1,12051:6630773,30706136:25952256,1380782,196608 -g1,12051:6630773,30706136 -g1,12051:6630773,30706136 -g1,12051:6434165,30706136 -(1,12051:6434165,30706136:0,1380782,196608 -r1,12051:32779637,30706136:26345472,1577390,196608 -k1,12051:6434165,30706136:-26345472 -) -(1,12051:6434165,30706136:26345472,1380782,196608 -[1,12051:6630773,30706136:25952256,1184174,0 -(1,12048:6630773,29932480:25952256,410518,107478 -(1,12047:6630773,29932480:0,0,0 -g1,12047:6630773,29932480 -g1,12047:6630773,29932480 -g1,12047:6303093,29932480 -(1,12047:6303093,29932480:0,0,0 -) -g1,12047:6630773,29932480 -) -k1,12048:6630773,29932480:0 -g1,12048:10424522,29932480 -g1,12048:11056814,29932480 -g1,12048:13585980,29932480 -g1,12048:15482855,29932480 -g1,12048:16115147,29932480 -g1,12048:20225041,29932480 -g1,12048:20857333,29932480 -g1,12048:21489625,29932480 -g1,12048:23386499,29932480 -h1,12048:23702645,29932480:0,0,0 -k1,12048:32583029,29932480:8880384 -g1,12048:32583029,29932480 -) -(1,12049:6630773,30598658:25952256,404226,107478 -h1,12049:6630773,30598658:0,0,0 -g1,12049:6946919,30598658 -g1,12049:7263065,30598658 -g1,12049:12637542,30598658 -g1,12049:13269834,30598658 -h1,12049:14534418,30598658:0,0,0 -k1,12049:32583030,30598658:18048612 -g1,12049:32583030,30598658 -) -] -) -g1,12051:32583029,30706136 -g1,12051:6630773,30706136 -g1,12051:6630773,30706136 -g1,12051:32583029,30706136 -g1,12051:32583029,30706136 -) -h1,12051:6630773,30902744:0,0,0 -(1,12054:6630773,40555257:25952256,9062689,0 -k1,12054:10523651,40555257:3892878 -h1,12053:10523651,40555257:0,0,0 -(1,12053:10523651,40555257:18166500,9062689,0 -(1,12053:10523651,40555257:18167381,9062712,0 -(1,12053:10523651,40555257:18167381,9062712,0 -(1,12053:10523651,40555257:0,9062712,0 -(1,12053:10523651,40555257:0,14155776,0 -(1,12053:10523651,40555257:28377088,14155776,0 -) -k1,12053:10523651,40555257:-28377088 -) -) -g1,12053:28691032,40555257 -) -) -) -g1,12054:28690151,40555257 -k1,12054:32583029,40555257:3892878 -) -(1,12062:6630773,41396745:25952256,513147,134348 -h1,12061:6630773,41396745:983040,0,0 -k1,12061:10141274,41396745:188481 -k1,12061:10989048,41396745:188482 -k1,12061:13536170,41396745:188481 -k1,12061:14743737,41396745:188482 -k1,12061:16950727,41396745:188481 -k1,12061:22541996,41396745:188481 -k1,12061:23598830,41396745:188482 -k1,12061:24891593,41396745:188481 -k1,12061:28140606,41396745:188482 -k1,12061:30943974,41396745:188481 -k1,12061:32583029,41396745:0 -) -(1,12062:6630773,42238233:25952256,505283,134348 -k1,12061:7489492,42238233:207291 -k1,12061:9426278,42238233:207291 -k1,12061:12506667,42238233:207291 -k1,12061:14094802,42238233:207291 -k1,12061:14833590,42238233:207291 -k1,12061:16908658,42238233:207292 -k1,12061:18816608,42238233:207291 -k1,12061:20215344,42238233:207291 -k1,12061:21526917,42238233:207291 -k1,12061:22481974,42238233:207291 -k1,12061:24654690,42238233:207291 -k1,12061:26597374,42238233:207291 -(1,12061:26597374,42238233:0,452978,122846 -r1,12061:32583029,42238233:5985655,575824,122846 -k1,12061:26597374,42238233:-5985655 -) -(1,12061:26597374,42238233:5985655,452978,122846 -k1,12061:26597374,42238233:3277 -h1,12061:32579752,42238233:0,411205,112570 -) -k1,12061:32583029,42238233:0 -) -(1,12062:6630773,43079721:25952256,513147,134348 -k1,12061:8012607,43079721:190389 -k1,12061:9222080,43079721:190388 -k1,12061:11869414,43079721:190389 -k1,12061:12719094,43079721:190388 -k1,12061:14486935,43079721:190389 -k1,12061:15611866,43079721:190388 -k1,12061:17196206,43079721:190389 -(1,12061:17196206,43079721:0,452978,115847 -r1,12061:18961319,43079721:1765113,568825,115847 -k1,12061:17196206,43079721:-1765113 -) -(1,12061:17196206,43079721:1765113,452978,115847 -k1,12061:17196206,43079721:3277 -h1,12061:18958042,43079721:0,411205,112570 -) -k1,12061:19151707,43079721:190388 -k1,12061:20028258,43079721:190389 -k1,12061:20574506,43079721:190388 -k1,12061:23274924,43079721:190389 -k1,12061:24124604,43079721:190388 -k1,12061:25334078,43079721:190389 -k1,12061:28185228,43079721:190388 -k1,12061:31010820,43079721:190389 -k1,12062:32583029,43079721:0 -) -(1,12062:6630773,43921209:25952256,513147,126483 -g1,12061:8182665,43921209 -g1,12061:10275884,43921209 -g1,12061:12267523,43921209 -g1,12061:13082790,43921209 -g1,12061:14301104,43921209 -k1,12062:32583029,43921209:16830958 -g1,12062:32583029,43921209 -) -v1,12064:6630773,45111675:0,393216,0 -] -(1,12069:32583029,45706769:0,0,0 -g1,12069:32583029,45706769 -) -) -] -(1,12069:6630773,47279633:25952256,0,0 -h1,12069:6630773,47279633:25952256,0,0 -) -] -h1,12069:4262630,4025873:0,0,0 -] -!16820 -}228 -Input:1539:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1540:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 -{229 -[1,12138:4262630,47279633:28320399,43253760,0 -(1,12138:4262630,4025873:0,0,0 -[1,12138:-473657,4025873:25952256,0,0 -(1,12138:-473657,-710414:25952256,0,0 -h1,12138:-473657,-710414:0,0,0 -(1,12138:-473657,-710414:0,0,0 -(1,12138:-473657,-710414:0,0,0 -g1,12138:-473657,-710414 -(1,12138:-473657,-710414:65781,0,65781 -g1,12138:-407876,-710414 -[1,12138:-407876,-644633:0,0,0 +k1,11991:3078556,49800853:-34777008 +) ] +g1,11991:6630773,4812305 +k1,11991:25712890,4812305:17886740 +g1,11991:29057847,4812305 +g1,11991:29873114,4812305 ) -k1,12138:-473657,-710414:-65781 ) +] +[1,11991:6630773,45706769:25952256,40108032,0 +(1,11991:6630773,45706769:25952256,40108032,0 +(1,11991:6630773,45706769:0,0,0 +g1,11991:6630773,45706769 ) -k1,12138:25478599,-710414:25952256 -g1,12138:25478599,-710414 +[1,11991:6630773,45706769:25952256,40108032,0 +v1,11931:6630773,6254097:0,393216,0 +(1,11937:6630773,7901549:25952256,2040668,196608 +g1,11937:6630773,7901549 +g1,11937:6630773,7901549 +g1,11937:6434165,7901549 +(1,11937:6434165,7901549:0,2040668,196608 +r1,11937:32779637,7901549:26345472,2237276,196608 +k1,11937:6434165,7901549:-26345472 ) +(1,11937:6434165,7901549:26345472,2040668,196608 +[1,11937:6630773,7901549:25952256,1844060,0 +(1,11933:6630773,6461715:25952256,404226,107478 +(1,11932:6630773,6461715:0,0,0 +g1,11932:6630773,6461715 +g1,11932:6630773,6461715 +g1,11932:6303093,6461715 +(1,11932:6303093,6461715:0,0,0 +) +g1,11932:6630773,6461715 +) +k1,11933:6630773,6461715:0 +g1,11933:10424522,6461715 +g1,11933:11056814,6461715 +k1,11933:11056814,6461715:0 +h1,11933:13269834,6461715:0,0,0 +k1,11933:32583030,6461715:19313196 +g1,11933:32583030,6461715 +) +(1,11934:6630773,7127893:25952256,404226,107478 +h1,11934:6630773,7127893:0,0,0 +g1,11934:6946919,7127893 +g1,11934:7263065,7127893 +g1,11934:7579211,7127893 +g1,11934:7895357,7127893 +g1,11934:8211503,7127893 +g1,11934:8527649,7127893 +g1,11934:8843795,7127893 +g1,11934:10740670,7127893 +g1,11934:11372962,7127893 +g1,11934:13269837,7127893 +g1,11934:13902129,7127893 +g1,11934:14534421,7127893 +g1,11934:16115150,7127893 +g1,11934:18012024,7127893 +g1,11934:18644316,7127893 +g1,11934:20541190,7127893 +h1,11934:20857336,7127893:0,0,0 +k1,11934:32583029,7127893:11725693 +g1,11934:32583029,7127893 +) +(1,11935:6630773,7794071:25952256,404226,107478 +h1,11935:6630773,7794071:0,0,0 +g1,11935:6946919,7794071 +g1,11935:7263065,7794071 +k1,11935:7263065,7794071:0 +h1,11935:11056813,7794071:0,0,0 +k1,11935:32583029,7794071:21526216 +g1,11935:32583029,7794071 +) +] +) +g1,11937:32583029,7901549 +g1,11937:6630773,7901549 +g1,11937:6630773,7901549 +g1,11937:32583029,7901549 +g1,11937:32583029,7901549 +) +h1,11937:6630773,8098157:0,0,0 +(1,11940:6630773,17750670:25952256,9062689,0 +k1,11940:10523651,17750670:3892878 +h1,11939:10523651,17750670:0,0,0 +(1,11939:10523651,17750670:18166500,9062689,0 +(1,11939:10523651,17750670:18167381,9062712,0 +(1,11939:10523651,17750670:18167381,9062712,0 +(1,11939:10523651,17750670:0,9062712,0 +(1,11939:10523651,17750670:0,14155776,0 +(1,11939:10523651,17750670:28377088,14155776,0 +) +k1,11939:10523651,17750670:-28377088 +) +) +g1,11939:28691032,17750670 +) +) +) +g1,11940:28690151,17750670 +k1,11940:32583029,17750670:3892878 +) +(1,11948:6630773,18592158:25952256,513147,115847 +h1,11947:6630773,18592158:983040,0,0 +k1,11947:8320618,18592158:229048 +k1,11947:9418018,18592158:229048 +k1,11947:12039785,18592158:229048 +(1,11947:12039785,18592158:0,452978,115847 +r1,11947:13101474,18592158:1061689,568825,115847 +k1,11947:12039785,18592158:-1061689 +) +(1,11947:12039785,18592158:1061689,452978,115847 +k1,11947:12039785,18592158:3277 +h1,11947:13098197,18592158:0,411205,112570 +) +k1,11947:13330522,18592158:229048 +k1,11947:14827036,18592158:229048 +k1,11947:15411944,18592158:229048 +k1,11947:17708653,18592158:229048 +k1,11947:18293561,18592158:229048 +k1,11947:21048368,18592158:229049 +k1,11947:22893534,18592158:229048 +k1,11947:24694791,18592158:229048 +k1,11947:25455336,18592158:229048 +k1,11947:27197610,18592158:229048 +k1,11947:29753841,18592158:229048 +k1,11947:30642181,18592158:229048 +k1,11947:31227089,18592158:229048 +k1,11948:32583029,18592158:0 +) +(1,11948:6630773,19433646:25952256,473825,7863 +g1,11947:9257456,19433646 +k1,11948:32583029,19433646:21995192 +g1,11948:32583029,19433646 +) +v1,11950:6630773,20624112:0,393216,0 +(1,11956:6630773,22271564:25952256,2040668,196608 +g1,11956:6630773,22271564 +g1,11956:6630773,22271564 +g1,11956:6434165,22271564 +(1,11956:6434165,22271564:0,2040668,196608 +r1,11956:32779637,22271564:26345472,2237276,196608 +k1,11956:6434165,22271564:-26345472 +) +(1,11956:6434165,22271564:26345472,2040668,196608 +[1,11956:6630773,22271564:25952256,1844060,0 +(1,11952:6630773,20831730:25952256,404226,107478 +(1,11951:6630773,20831730:0,0,0 +g1,11951:6630773,20831730 +g1,11951:6630773,20831730 +g1,11951:6303093,20831730 +(1,11951:6303093,20831730:0,0,0 +) +g1,11951:6630773,20831730 +) +k1,11952:6630773,20831730:0 +g1,11952:10424522,20831730 +g1,11952:11056814,20831730 +k1,11952:11056814,20831730:0 +h1,11952:13269834,20831730:0,0,0 +k1,11952:32583030,20831730:19313196 +g1,11952:32583030,20831730 +) +(1,11953:6630773,21497908:25952256,410518,107478 +h1,11953:6630773,21497908:0,0,0 +g1,11953:6946919,21497908 +g1,11953:7263065,21497908 +g1,11953:7579211,21497908 +g1,11953:7895357,21497908 +g1,11953:8211503,21497908 +g1,11953:8527649,21497908 +g1,11953:8843795,21497908 +g1,11953:10740670,21497908 +g1,11953:11372962,21497908 +g1,11953:13269837,21497908 +g1,11953:13902129,21497908 +g1,11953:14534421,21497908 +g1,11953:16115150,21497908 +g1,11953:18012024,21497908 +g1,11953:18644316,21497908 +g1,11953:23070356,21497908 +h1,11953:23386502,21497908:0,0,0 +k1,11953:32583029,21497908:9196527 +g1,11953:32583029,21497908 +) +(1,11954:6630773,22164086:25952256,404226,107478 +h1,11954:6630773,22164086:0,0,0 +g1,11954:6946919,22164086 +g1,11954:7263065,22164086 +k1,11954:7263065,22164086:0 +h1,11954:11056813,22164086:0,0,0 +k1,11954:32583029,22164086:21526216 +g1,11954:32583029,22164086 +) +] +) +g1,11956:32583029,22271564 +g1,11956:6630773,22271564 +g1,11956:6630773,22271564 +g1,11956:32583029,22271564 +g1,11956:32583029,22271564 +) +h1,11956:6630773,22468172:0,0,0 +(1,11960:6630773,23833948:25952256,513147,115847 +h1,11959:6630773,23833948:983040,0,0 +k1,11959:8282888,23833948:191318 +k1,11959:9342558,23833948:191318 +k1,11959:11926595,23833948:191318 +(1,11959:11926595,23833948:0,452978,115847 +r1,11959:12988284,23833948:1061689,568825,115847 +k1,11959:11926595,23833948:-1061689 +) +(1,11959:11926595,23833948:1061689,452978,115847 +k1,11959:11926595,23833948:3277 +h1,11959:12985007,23833948:0,411205,112570 +) +k1,11959:13179602,23833948:191318 +k1,11959:14638386,23833948:191318 +k1,11959:15600407,23833948:191318 +k1,11959:18299131,23833948:191317 +k1,11959:20558110,23833948:191318 +k1,11959:21105288,23833948:191318 +k1,11959:24058949,23833948:191318 +k1,11959:26776025,23833948:191318 +k1,11959:28583461,23833948:191318 +k1,11959:30346988,23833948:191318 +k1,11959:31069803,23833948:191318 +k1,11959:32583029,23833948:0 +) +(1,11960:6630773,24675436:25952256,513147,126483 +g1,11959:7591530,24675436 +k1,11960:32583028,24675436:22552248 +g1,11960:32583028,24675436 +) +v1,11962:6630773,25865902:0,393216,0 +(1,11968:6630773,27513354:25952256,2040668,196608 +g1,11968:6630773,27513354 +g1,11968:6630773,27513354 +g1,11968:6434165,27513354 +(1,11968:6434165,27513354:0,2040668,196608 +r1,11968:32779637,27513354:26345472,2237276,196608 +k1,11968:6434165,27513354:-26345472 +) +(1,11968:6434165,27513354:26345472,2040668,196608 +[1,11968:6630773,27513354:25952256,1844060,0 +(1,11964:6630773,26073520:25952256,404226,107478 +(1,11963:6630773,26073520:0,0,0 +g1,11963:6630773,26073520 +g1,11963:6630773,26073520 +g1,11963:6303093,26073520 +(1,11963:6303093,26073520:0,0,0 +) +g1,11963:6630773,26073520 +) +k1,11964:6630773,26073520:0 +g1,11964:10424522,26073520 +g1,11964:11056814,26073520 +k1,11964:11056814,26073520:0 +h1,11964:13269834,26073520:0,0,0 +k1,11964:32583030,26073520:19313196 +g1,11964:32583030,26073520 +) +(1,11965:6630773,26739698:25952256,404226,107478 +h1,11965:6630773,26739698:0,0,0 +g1,11965:6946919,26739698 +g1,11965:7263065,26739698 +g1,11965:7579211,26739698 +g1,11965:7895357,26739698 +g1,11965:8211503,26739698 +g1,11965:8527649,26739698 +g1,11965:8843795,26739698 +g1,11965:10740670,26739698 +g1,11965:11372962,26739698 +g1,11965:13269837,26739698 +g1,11965:13902129,26739698 +g1,11965:14534421,26739698 +g1,11965:16115150,26739698 +g1,11965:18012024,26739698 +g1,11965:18644316,26739698 +g1,11965:23386502,26739698 +h1,11965:23702648,26739698:0,0,0 +k1,11965:32583029,26739698:8880381 +g1,11965:32583029,26739698 +) +(1,11966:6630773,27405876:25952256,404226,107478 +h1,11966:6630773,27405876:0,0,0 +g1,11966:6946919,27405876 +g1,11966:7263065,27405876 +k1,11966:7263065,27405876:0 +h1,11966:11056813,27405876:0,0,0 +k1,11966:32583029,27405876:21526216 +g1,11966:32583029,27405876 +) +] +) +g1,11968:32583029,27513354 +g1,11968:6630773,27513354 +g1,11968:6630773,27513354 +g1,11968:32583029,27513354 +g1,11968:32583029,27513354 +) +h1,11968:6630773,27709962:0,0,0 +v1,11972:6630773,29600026:0,393216,0 +(1,11973:6630773,32727546:25952256,3520736,616038 +g1,11973:6630773,32727546 +(1,11973:6630773,32727546:25952256,3520736,616038 +(1,11973:6630773,33343584:25952256,4136774,0 +[1,11973:6630773,33343584:25952256,4136774,0 +(1,11973:6630773,33317370:25952256,4084346,0 +r1,11973:6656987,33317370:26214,4084346,0 +[1,11973:6656987,33317370:25899828,4084346,0 +(1,11973:6656987,32727546:25899828,2904698,0 +[1,11973:7246811,32727546:24720180,2904698,0 +(1,11973:7246811,30910222:24720180,1087374,134348 +k1,11972:8813001,30910222:356487 +k1,11972:10253455,30910222:356488 +k1,11972:10965802,30910222:356487 +k1,11972:14084632,30910222:356487 +k1,11972:17422353,30910222:356488 +(1,11972:17422353,30910222:0,452978,115847 +r1,11973:18835754,30910222:1413401,568825,115847 +k1,11972:17422353,30910222:-1413401 +) +(1,11972:17422353,30910222:1413401,452978,115847 +k1,11972:17422353,30910222:3277 +h1,11972:18832477,30910222:0,411205,112570 +) +k1,11972:19192241,30910222:356487 +$1,11972:19192241,30910222 +$1,11972:19867262,30910222 +k1,11972:20223749,30910222:356487 +(1,11972:20223749,30910222:0,452978,115847 +r1,11973:21988862,30910222:1765113,568825,115847 +k1,11972:20223749,30910222:-1765113 +) +(1,11972:20223749,30910222:1765113,452978,115847 +k1,11972:20223749,30910222:3277 +h1,11972:21985585,30910222:0,411205,112570 +) +k1,11972:22519020,30910222:356488 +(1,11972:22519020,30910222:0,452978,115847 +r1,11973:23580709,30910222:1061689,568825,115847 +k1,11972:22519020,30910222:-1061689 +) +(1,11972:22519020,30910222:1061689,452978,115847 +k1,11972:22519020,30910222:3277 +h1,11972:23577432,30910222:0,411205,112570 +) +k1,11972:23937196,30910222:356487 +$1,11972:23937196,30910222 +$1,11972:24612217,30910222 +k1,11972:24968704,30910222:356487 +(1,11972:24968704,30910222:0,414482,115847 +r1,11973:25326970,30910222:358266,530329,115847 +k1,11972:24968704,30910222:-358266 +) +(1,11972:24968704,30910222:358266,414482,115847 +k1,11972:24968704,30910222:3277 +h1,11972:25323693,30910222:0,411205,112570 +) +k1,11972:25857128,30910222:356488 +k1,11972:29113583,30910222:356487 +k1,11972:30231598,30910222:356487 +k1,11973:31966991,30910222:0 +) +(1,11973:7246811,31751710:24720180,505283,115847 +(1,11972:7246811,31751710:0,452978,115847 +r1,11973:11473907,31751710:4227096,568825,115847 +k1,11972:7246811,31751710:-4227096 +) +(1,11972:7246811,31751710:4227096,452978,115847 +k1,11972:7246811,31751710:3277 +h1,11972:11470630,31751710:0,411205,112570 +) +k1,11972:11751361,31751710:277454 +k1,11972:14238690,31751710:277455 +(1,11972:14238690,31751710:0,452978,115847 +r1,11973:18817498,31751710:4578808,568825,115847 +k1,11972:14238690,31751710:-4578808 +) +(1,11972:14238690,31751710:4578808,452978,115847 +k1,11972:14238690,31751710:3277 +h1,11972:18814221,31751710:0,411205,112570 +) +k1,11972:19094952,31751710:277454 +k1,11972:20023834,31751710:277454 +k1,11972:21326272,31751710:277455 +k1,11972:23152342,31751710:277454 +k1,11972:26271437,31751710:277454 +k1,11972:27540452,31751710:277455 +k1,11972:30775546,31751710:277454 +k1,11972:31966991,31751710:0 +) +(1,11973:7246811,32593198:24720180,505283,134348 +g1,11972:8879968,32593198 +g1,11972:9985560,32593198 +g1,11972:11203874,32593198 +g1,11972:15721270,32593198 +g1,11972:17205005,32593198 +g1,11972:19534809,32593198 +g1,11972:21192869,32593198 +g1,11972:25899009,32593198 +g1,11972:28466709,32593198 +g1,11972:29685023,32593198 +k1,11973:31966991,32593198:718934 +g1,11973:31966991,32593198 +) +] +) +] +r1,11973:32583029,33317370:26214,4084346,0 +) +] +) +) +g1,11973:32583029,32727546 +) +h1,11973:6630773,33343584:0,0,0 +(1,11976:6630773,34709360:25952256,505283,134348 +h1,11975:6630773,34709360:983040,0,0 +k1,11975:9015330,34709360:204830 +k1,11975:12027721,34709360:204829 +k1,11975:14867754,34709360:204830 +k1,11975:16461947,34709360:204830 +k1,11975:18677421,34709360:204829 +k1,11975:20073696,34709360:204830 +k1,11975:23122788,34709360:204829 +k1,11975:25338263,34709360:204830 +k1,11975:26074590,34709360:204830 +k1,11975:29540490,34709360:204829 +k1,11975:30506848,34709360:204830 +k1,11975:32583029,34709360:0 +) +(1,11976:6630773,35550848:25952256,513147,134348 +k1,11975:9770007,35550848:294316 +k1,11975:11680441,35550848:294316 +k1,11975:14050938,35550848:294316 +k1,11975:15536699,35550848:294316 +k1,11975:17297711,35550848:294316 +k1,11975:20112542,35550848:294316 +k1,11975:22416847,35550848:294316 +k1,11975:23067023,35550848:294316 +k1,11975:25056100,35550848:294316 +k1,11975:27096295,35550848:294316 +k1,11975:29820686,35550848:294316 +k1,11975:32583029,35550848:0 +) +(1,11976:6630773,36392336:25952256,505283,134348 +g1,11975:9967866,36392336 +g1,11975:12802298,36392336 +g1,11975:14390890,36392336 +g1,11975:16600764,36392336 +g1,11975:17991438,36392336 +g1,11975:21065731,36392336 +k1,11976:32583029,36392336:8982365 +g1,11976:32583029,36392336 +) +v1,11978:6630773,37582802:0,393216,0 +(1,11985:6630773,39890141:25952256,2700555,196608 +g1,11985:6630773,39890141 +g1,11985:6630773,39890141 +g1,11985:6434165,39890141 +(1,11985:6434165,39890141:0,2700555,196608 +r1,11985:32779637,39890141:26345472,2897163,196608 +k1,11985:6434165,39890141:-26345472 +) +(1,11985:6434165,39890141:26345472,2700555,196608 +[1,11985:6630773,39890141:25952256,2503947,0 +(1,11980:6630773,37790420:25952256,404226,107478 +(1,11979:6630773,37790420:0,0,0 +g1,11979:6630773,37790420 +g1,11979:6630773,37790420 +g1,11979:6303093,37790420 +(1,11979:6303093,37790420:0,0,0 +) +g1,11979:6630773,37790420 +) +k1,11980:6630773,37790420:0 +g1,11980:10424522,37790420 +g1,11980:11056814,37790420 +k1,11980:11056814,37790420:0 +h1,11980:13269834,37790420:0,0,0 +k1,11980:32583030,37790420:19313196 +g1,11980:32583030,37790420 +) +(1,11981:6630773,38456598:25952256,410518,107478 +h1,11981:6630773,38456598:0,0,0 +g1,11981:6946919,38456598 +g1,11981:7263065,38456598 +g1,11981:7579211,38456598 +g1,11981:7895357,38456598 +g1,11981:8211503,38456598 +g1,11981:8527649,38456598 +g1,11981:8843795,38456598 +g1,11981:10740670,38456598 +g1,11981:11372962,38456598 +g1,11981:13269837,38456598 +g1,11981:13902129,38456598 +g1,11981:14534421,38456598 +g1,11981:16115150,38456598 +g1,11981:18012024,38456598 +g1,11981:18644316,38456598 +g1,11981:23070356,38456598 +h1,11981:23386502,38456598:0,0,0 +k1,11981:32583029,38456598:9196527 +g1,11981:32583029,38456598 +) +(1,11982:6630773,39122776:25952256,404226,107478 +h1,11982:6630773,39122776:0,0,0 +g1,11982:6946919,39122776 +g1,11982:7263065,39122776 +g1,11982:11372959,39122776 +h1,11982:11689105,39122776:0,0,0 +k1,11982:32583029,39122776:20893924 +g1,11982:32583029,39122776 +) +(1,11983:6630773,39788954:25952256,404226,101187 +h1,11983:6630773,39788954:0,0,0 +g1,11983:6946919,39788954 +g1,11983:7263065,39788954 +g1,11983:14850562,39788954 +g1,11983:15482854,39788954 +g1,11983:18012020,39788954 +g1,11983:20541186,39788954 +g1,11983:21173478,39788954 +h1,11983:21805770,39788954:0,0,0 +k1,11983:32583029,39788954:10777259 +g1,11983:32583029,39788954 +) +] +) +g1,11985:32583029,39890141 +g1,11985:6630773,39890141 +g1,11985:6630773,39890141 +g1,11985:32583029,39890141 +g1,11985:32583029,39890141 +) +h1,11985:6630773,40086749:0,0,0 +(1,11989:6630773,41452525:25952256,505283,134348 +h1,11988:6630773,41452525:983040,0,0 +k1,11988:9006726,41452525:196226 +k1,11988:10765985,41452525:196225 +k1,11988:14136775,41452525:196226 +k1,11988:17644535,41452525:196226 +k1,11988:19032205,41452525:196225 +k1,11988:22735918,41452525:196226 +k1,11988:23923704,41452525:196226 +k1,11988:25139014,41452525:196225 +k1,11988:26988713,41452525:196226 +k1,11988:27871101,41452525:196226 +k1,11988:28683364,41452525:196225 +k1,11988:30913172,41452525:196226 +k1,11988:32583029,41452525:0 +) +(1,11989:6630773,42294013:25952256,513147,134348 +k1,11988:7516558,42294013:234357 +k1,11988:9204503,42294013:234356 +k1,11988:10769241,42294013:234357 +k1,11988:12022682,42294013:234356 +k1,11988:13534336,42294013:234357 +k1,11988:15659406,42294013:234356 +k1,11988:16762115,42294013:234357 +k1,11988:18471686,42294013:234356 +k1,11988:21367460,42294013:234357 +k1,11988:22977417,42294013:234356 +k1,11988:24230859,42294013:234357 +k1,11988:26037424,42294013:234356 +k1,11988:27463226,42294013:234357 +k1,11988:29887795,42294013:234356 +k1,11988:31635378,42294013:234357 +k1,11988:32583029,42294013:0 +) +(1,11989:6630773,43135501:25952256,505283,126483 +k1,11988:7830233,43135501:180375 +k1,11988:9626726,43135501:180375 +k1,11988:12825034,43135501:180375 +k1,11988:17170877,43135501:180375 +k1,11988:17809349,43135501:180375 +k1,11988:18521221,43135501:180375 +k1,11988:19900251,43135501:180376 +k1,11988:22305573,43135501:180375 +k1,11988:23505033,43135501:180375 +k1,11988:25338881,43135501:180375 +k1,11988:26796553,43135501:180375 +k1,11988:27845280,43135501:180375 +k1,11988:30375776,43135501:180375 +k1,11988:32583029,43135501:0 +) +(1,11989:6630773,43976989:25952256,513147,126483 +k1,11988:8880725,43976989:179014 +k1,11988:10007390,43976989:179014 +k1,11988:11205489,43976989:179014 +k1,11988:13745765,43976989:179014 +k1,11988:15611676,43976989:179014 +k1,11988:17171534,43976989:179014 +k1,11988:17882044,43976989:179013 +k1,11988:18416918,43976989:179014 +k1,11988:19949906,43976989:179014 +k1,11988:23338218,43976989:179014 +k1,11988:25205439,43976989:179014 +k1,11988:26035881,43976989:179014 +k1,11988:30053339,43976989:179014 +k1,11988:32583029,43976989:0 +) +(1,11989:6630773,44818477:25952256,513147,126483 +k1,11988:7371876,44818477:283006 +k1,11988:9666837,44818477:283006 +k1,11988:10694988,44818477:283007 +k1,11988:11629422,44818477:283006 +k1,11988:14615133,44818477:283006 +k1,11988:16070578,44818477:283006 +k1,11988:19115927,44818477:283006 +k1,11988:22429973,44818477:283006 +k1,11988:23732065,44818477:283007 +k1,11988:26875062,44818477:283006 +k1,11988:30089493,44818477:283006 +k1,11988:31563944,44818477:283006 +k1,11988:32583029,44818477:0 +) +(1,11989:6630773,45659965:25952256,505283,134348 +g1,11988:9218789,45659965 +k1,11989:32583028,45659965:21101936 +g1,11989:32583028,45659965 +) +] +(1,11991:32583029,45706769:0,0,0 +g1,11991:32583029,45706769 +) +) +] +(1,11991:6630773,47279633:25952256,0,0 +h1,11991:6630773,47279633:25952256,0,0 +) +] +h1,11991:4262630,4025873:0,0,0 +] +!21318 +}227 +Input:1524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{228 +[1,12059:4262630,47279633:28320399,43253760,0 +(1,12059:4262630,4025873:0,0,0 +[1,12059:-473657,4025873:25952256,0,0 +(1,12059:-473657,-710414:25952256,0,0 +h1,12059:-473657,-710414:0,0,0 +(1,12059:-473657,-710414:0,0,0 +(1,12059:-473657,-710414:0,0,0 +g1,12059:-473657,-710414 +(1,12059:-473657,-710414:65781,0,65781 +g1,12059:-407876,-710414 +[1,12059:-407876,-644633:0,0,0 ] ) -[1,12138:6630773,47279633:25952256,43253760,0 -[1,12138:6630773,4812305:25952256,786432,0 -(1,12138:6630773,4812305:25952256,513147,134348 -(1,12138:6630773,4812305:25952256,513147,134348 -g1,12138:3078558,4812305 -[1,12138:3078558,4812305:0,0,0 -(1,12138:3078558,2439708:0,1703936,0 -k1,12138:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12138:2537886,2439708:1179648,16384,0 +k1,12059:-473657,-710414:-65781 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12138:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,12059:25478599,-710414:25952256 +g1,12059:25478599,-710414 ) ] ) +[1,12059:6630773,47279633:25952256,43253760,0 +[1,12059:6630773,4812305:25952256,786432,0 +(1,12059:6630773,4812305:25952256,485622,11795 +(1,12059:6630773,4812305:25952256,485622,11795 +g1,12059:3078558,4812305 +[1,12059:3078558,4812305:0,0,0 +(1,12059:3078558,2439708:0,1703936,0 +k1,12059:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12059:2537886,2439708:1179648,16384,0 +) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12059:3078558,1915420:16384,1179648,0 ) +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] -[1,12138:3078558,4812305:0,0,0 -(1,12138:3078558,2439708:0,1703936,0 -g1,12138:29030814,2439708 -g1,12138:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12138:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +) ) ] +[1,12059:3078558,4812305:0,0,0 +(1,12059:3078558,2439708:0,1703936,0 +g1,12059:29030814,2439708 +g1,12059:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12059:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12138:37855564,2439708:1179648,16384,0 +] ) +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12059:37855564,2439708:1179648,16384,0 ) -k1,12138:3078556,2439708:-34777008 +) +k1,12059:3078556,2439708:-34777008 ) ] -[1,12138:3078558,4812305:0,0,0 -(1,12138:3078558,49800853:0,16384,2228224 -k1,12138:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12138:2537886,49800853:1179648,16384,0 +[1,12059:3078558,4812305:0,0,0 +(1,12059:3078558,49800853:0,16384,2228224 +k1,12059:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12059:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12138:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12059:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12138:3078558,4812305:0,0,0 -(1,12138:3078558,49800853:0,16384,2228224 -g1,12138:29030814,49800853 -g1,12138:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12138:36151628,51504789:16384,1179648,0 +[1,12059:3078558,4812305:0,0,0 +(1,12059:3078558,49800853:0,16384,2228224 +g1,12059:29030814,49800853 +g1,12059:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12059:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12138:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12059:37855564,49800853:1179648,16384,0 ) ) -k1,12138:3078556,49800853:-34777008 +k1,12059:3078556,49800853:-34777008 ) ] -g1,12138:6630773,4812305 -k1,12138:25712890,4812305:17886740 -g1,12138:29057847,4812305 -g1,12138:29873114,4812305 -) -) -] -[1,12138:6630773,45706769:25952256,40108032,0 -(1,12138:6630773,45706769:25952256,40108032,0 -(1,12138:6630773,45706769:0,0,0 -g1,12138:6630773,45706769 -) -[1,12138:6630773,45706769:25952256,40108032,0 -v1,12069:6630773,6254097:0,393216,0 -(1,12069:6630773,7241663:25952256,1380782,196608 -g1,12069:6630773,7241663 -g1,12069:6630773,7241663 -g1,12069:6434165,7241663 -(1,12069:6434165,7241663:0,1380782,196608 -r1,12069:32779637,7241663:26345472,1577390,196608 -k1,12069:6434165,7241663:-26345472 -) -(1,12069:6434165,7241663:26345472,1380782,196608 -[1,12069:6630773,7241663:25952256,1184174,0 -(1,12066:6630773,6468007:25952256,410518,107478 -(1,12065:6630773,6468007:0,0,0 -g1,12065:6630773,6468007 -g1,12065:6630773,6468007 -g1,12065:6303093,6468007 -(1,12065:6303093,6468007:0,0,0 -) -g1,12065:6630773,6468007 -) -k1,12066:6630773,6468007:0 -g1,12066:10424522,6468007 -g1,12066:11056814,6468007 -g1,12066:13585980,6468007 -g1,12066:15482855,6468007 -g1,12066:16115147,6468007 -g1,12066:20225041,6468007 -g1,12066:20857333,6468007 -g1,12066:21489625,6468007 -g1,12066:23386499,6468007 -h1,12066:23702645,6468007:0,0,0 -k1,12066:32583029,6468007:8880384 -g1,12066:32583029,6468007 -) -(1,12067:6630773,7134185:25952256,404226,107478 -h1,12067:6630773,7134185:0,0,0 -g1,12067:6946919,7134185 -g1,12067:7263065,7134185 -g1,12067:13585979,7134185 -g1,12067:14218271,7134185 -g1,12067:21173476,7134185 -g1,12067:21805768,7134185 -h1,12067:23702642,7134185:0,0,0 -k1,12067:32583029,7134185:8880387 -g1,12067:32583029,7134185 -) -] -) -g1,12069:32583029,7241663 -g1,12069:6630773,7241663 -g1,12069:6630773,7241663 -g1,12069:32583029,7241663 -g1,12069:32583029,7241663 -) -h1,12069:6630773,7438271:0,0,0 -(1,12074:6630773,8804047:25952256,505283,134348 -h1,12073:6630773,8804047:983040,0,0 -k1,12073:8814550,8804047:247188 -k1,12073:10166020,8804047:247188 -k1,12073:12342587,8804047:247187 -k1,12073:12945635,8804047:247188 -k1,12073:15961719,8804047:247188 -k1,12073:17486204,8804047:247188 -k1,12073:18494919,8804047:247187 -k1,12073:21549669,8804047:247188 -k1,12073:22815942,8804047:247188 -(1,12073:22815942,8804047:0,452978,115847 -r1,12073:24229343,8804047:1413401,568825,115847 -k1,12073:22815942,8804047:-1413401 -) -(1,12073:22815942,8804047:1413401,452978,115847 -k1,12073:22815942,8804047:3277 -h1,12073:24226066,8804047:0,411205,112570 -) -k1,12073:24476531,8804047:247188 -k1,12073:27510965,8804047:247188 -k1,12073:28409580,8804047:247187 -k1,12073:29012628,8804047:247188 -k1,12073:32583029,8804047:0 -) -(1,12074:6630773,9645535:25952256,513147,134348 -k1,12073:9500040,9645535:184257 -k1,12073:10312132,9645535:184257 -k1,12073:11699630,9645535:184257 -k1,12073:13424638,9645535:184257 -k1,12073:14765605,9645535:184257 -k1,12073:16050867,9645535:184257 -k1,12073:16886551,9645535:184256 -k1,12073:18751151,9645535:184257 -k1,12073:20484024,9645535:184257 -k1,12073:21199778,9645535:184257 -k1,12073:23814765,9645535:184257 -k1,12073:25649219,9645535:184257 -k1,12073:29620146,9645535:184257 -k1,12073:32583029,9645535:0 -) -(1,12074:6630773,10487023:25952256,513147,126483 -k1,12073:7793533,10487023:143675 -k1,12073:9948508,10487023:143675 -k1,12073:10751475,10487023:143675 -k1,12073:11914234,10487023:143674 -k1,12073:13926996,10487023:143675 -k1,12073:14602168,10487023:143675 -k1,12073:18050824,10487023:143675 -k1,12073:20953565,10487023:143675 -k1,12073:22280165,10487023:143675 -k1,12073:23075267,10487023:143674 -k1,12073:24549323,10487023:143675 -k1,12073:26913358,10487023:143675 -k1,12073:30482600,10487023:143675 -k1,12073:32583029,10487023:0 -) -(1,12074:6630773,11328511:25952256,513147,134348 -k1,12073:9659519,11328511:221184 -k1,12073:10236563,11328511:221184 -k1,12073:12969087,11328511:221184 -k1,12073:13841699,11328511:221184 -k1,12073:15081968,11328511:221184 -k1,12073:16650572,11328511:221184 -k1,12073:17531048,11328511:221184 -k1,12073:18771316,11328511:221183 -k1,12073:20861587,11328511:221184 -k1,12073:21614268,11328511:221184 -k1,12073:23485649,11328511:221184 -k1,12073:25684054,11328511:221184 -k1,12073:26666766,11328511:221184 -k1,12073:28625965,11328511:221184 -k1,12073:32583029,11328511:0 -) -(1,12074:6630773,12169999:25952256,505283,134348 -k1,12073:8705683,12169999:175677 -k1,12073:9532789,12169999:175678 -k1,12073:10064326,12169999:175677 -k1,12073:12052730,12169999:175678 -k1,12073:15209640,12169999:175677 -k1,12073:16427340,12169999:175678 -k1,12073:17806258,12169999:175677 -k1,12073:20643352,12169999:175677 -k1,12073:21687382,12169999:175678 -k1,12073:23060402,12169999:175677 -k1,12073:23591940,12169999:175678 -k1,12073:25050812,12169999:175677 -k1,12073:27737830,12169999:175678 -k1,12073:28564935,12169999:175677 -k1,12073:29759698,12169999:175678 -k1,12073:31386342,12169999:175677 -k1,12073:32583029,12169999:0 -) -(1,12074:6630773,13011487:25952256,513147,134348 -g1,12073:8945504,13011487 -g1,12073:9804025,13011487 -g1,12073:11022339,13011487 -g1,12073:12199365,13011487 -g1,12073:13014632,13011487 -g1,12073:14610433,13011487 -g1,12073:16001107,13011487 -g1,12073:17596908,13011487 -g1,12073:18254234,13011487 -g1,12073:19104891,13011487 -g1,12073:20323205,13011487 -g1,12073:21869854,13011487 -g1,12073:22728375,13011487 -g1,12073:23946689,13011487 -k1,12074:32583029,13011487:6444161 -g1,12074:32583029,13011487 -) -v1,12076:6630773,14201953:0,393216,0 -(1,12084:6630773,17181761:25952256,3373024,196608 -g1,12084:6630773,17181761 -g1,12084:6630773,17181761 -g1,12084:6434165,17181761 -(1,12084:6434165,17181761:0,3373024,196608 -r1,12084:32779637,17181761:26345472,3569632,196608 -k1,12084:6434165,17181761:-26345472 -) -(1,12084:6434165,17181761:26345472,3373024,196608 -[1,12084:6630773,17181761:25952256,3176416,0 -(1,12078:6630773,14409571:25952256,404226,107478 -(1,12077:6630773,14409571:0,0,0 -g1,12077:6630773,14409571 -g1,12077:6630773,14409571 -g1,12077:6303093,14409571 -(1,12077:6303093,14409571:0,0,0 -) -g1,12077:6630773,14409571 -) -k1,12078:6630773,14409571:0 -g1,12078:10424522,14409571 -g1,12078:11056814,14409571 -g1,12078:13585980,14409571 -g1,12078:15482855,14409571 -g1,12078:16115147,14409571 -g1,12078:18012022,14409571 -g1,12078:18644314,14409571 -g1,12078:19276606,14409571 -k1,12078:19276606,14409571:0 -h1,12078:20541189,14409571:0,0,0 -k1,12078:32583029,14409571:12041840 -g1,12078:32583029,14409571 -) -(1,12079:6630773,15075749:25952256,410518,101187 -h1,12079:6630773,15075749:0,0,0 -g1,12079:6946919,15075749 -g1,12079:7263065,15075749 -g1,12079:7579211,15075749 -g1,12079:7895357,15075749 -g1,12079:8211503,15075749 -g1,12079:8527649,15075749 -g1,12079:8843795,15075749 -g1,12079:9159941,15075749 -g1,12079:9476087,15075749 -g1,12079:9792233,15075749 -g1,12079:10108379,15075749 -g1,12079:10424525,15075749 -g1,12079:10740671,15075749 -g1,12079:11056817,15075749 -g1,12079:11372963,15075749 -g1,12079:11689109,15075749 -g1,12079:12005255,15075749 -g1,12079:12321401,15075749 -g1,12079:12637547,15075749 -g1,12079:12953693,15075749 -g1,12079:13269839,15075749 -g1,12079:13585985,15075749 -g1,12079:13902131,15075749 -g1,12079:14218277,15075749 -g1,12079:14534423,15075749 -g1,12079:14850569,15075749 -g1,12079:16747443,15075749 -g1,12079:17379735,15075749 -k1,12079:17379735,15075749:0 -h1,12079:21173483,15075749:0,0,0 -k1,12079:32583029,15075749:11409546 -g1,12079:32583029,15075749 -) -(1,12080:6630773,15741927:25952256,404226,76021 -h1,12080:6630773,15741927:0,0,0 -g1,12080:6946919,15741927 -g1,12080:7263065,15741927 -g1,12080:7579211,15741927 -g1,12080:7895357,15741927 -g1,12080:8211503,15741927 -g1,12080:8527649,15741927 -g1,12080:8843795,15741927 -g1,12080:9159941,15741927 -g1,12080:9476087,15741927 -g1,12080:9792233,15741927 -g1,12080:10108379,15741927 -g1,12080:10424525,15741927 -g1,12080:10740671,15741927 -g1,12080:11056817,15741927 -g1,12080:11372963,15741927 -g1,12080:11689109,15741927 -g1,12080:12005255,15741927 -g1,12080:12321401,15741927 -g1,12080:12637547,15741927 -g1,12080:12953693,15741927 -g1,12080:13269839,15741927 -g1,12080:13585985,15741927 -g1,12080:13902131,15741927 -g1,12080:14218277,15741927 -g1,12080:14534423,15741927 -g1,12080:14850569,15741927 -g1,12080:16431298,15741927 -g1,12080:17063590,15741927 -g1,12080:18644319,15741927 -h1,12080:18960465,15741927:0,0,0 -k1,12080:32583029,15741927:13622564 -g1,12080:32583029,15741927 -) -(1,12081:6630773,16408105:25952256,404226,76021 -h1,12081:6630773,16408105:0,0,0 -g1,12081:6946919,16408105 -g1,12081:7263065,16408105 -g1,12081:12953687,16408105 -h1,12081:13269833,16408105:0,0,0 -k1,12081:32583029,16408105:19313196 -g1,12081:32583029,16408105 -) -(1,12082:6630773,17074283:25952256,404226,107478 -h1,12082:6630773,17074283:0,0,0 -g1,12082:6946919,17074283 -g1,12082:7263065,17074283 -k1,12082:7263065,17074283:0 -h1,12082:11056813,17074283:0,0,0 -k1,12082:32583029,17074283:21526216 -g1,12082:32583029,17074283 -) -] -) -g1,12084:32583029,17181761 -g1,12084:6630773,17181761 -g1,12084:6630773,17181761 -g1,12084:32583029,17181761 -g1,12084:32583029,17181761 -) -h1,12084:6630773,17378369:0,0,0 -(1,12087:6630773,27030882:25952256,9062689,0 -k1,12087:10523651,27030882:3892878 -h1,12086:10523651,27030882:0,0,0 -(1,12086:10523651,27030882:18166500,9062689,0 -(1,12086:10523651,27030882:18167381,9062712,0 -(1,12086:10523651,27030882:18167381,9062712,0 -(1,12086:10523651,27030882:0,9062712,0 -(1,12086:10523651,27030882:0,14155776,0 -(1,12086:10523651,27030882:28377088,14155776,0 -) -k1,12086:10523651,27030882:-28377088 -) -) -g1,12086:28691032,27030882 -) -) -) -g1,12087:28690151,27030882 -k1,12087:32583029,27030882:3892878 -) -v1,12095:6630773,28396658:0,393216,0 -(1,12110:6630773,37130351:25952256,9126909,616038 -g1,12110:6630773,37130351 -(1,12110:6630773,37130351:25952256,9126909,616038 -(1,12110:6630773,37746389:25952256,9742947,0 -[1,12110:6630773,37746389:25952256,9742947,0 -(1,12110:6630773,37720175:25952256,9690519,0 -r1,12110:6656987,37720175:26214,9690519,0 -[1,12110:6656987,37720175:25899828,9690519,0 -(1,12110:6656987,37130351:25899828,8510871,0 -[1,12110:7246811,37130351:24720180,8510871,0 -(1,12096:7246811,29706854:24720180,1087374,126483 -g1,12095:8655743,29706854 -g1,12095:9332729,29706854 -g1,12095:10400310,29706854 -g1,12095:11692024,29706854 -g1,12095:12247113,29706854 -g1,12095:16525303,29706854 -g1,12095:18296741,29706854 -g1,12095:19515055,29706854 -g1,12095:23863368,29706854 -g1,12095:24594094,29706854 -k1,12096:31966991,29706854:4436884 -g1,12096:31966991,29706854 -) -v1,12098:7246811,30897320:0,393216,0 -(1,12106:7246811,33877128:24720180,3373024,196608 -g1,12106:7246811,33877128 -g1,12106:7246811,33877128 -g1,12106:7050203,33877128 -(1,12106:7050203,33877128:0,3373024,196608 -r1,12110:32163599,33877128:25113396,3569632,196608 -k1,12106:7050203,33877128:-25113396 -) -(1,12106:7050203,33877128:25113396,3373024,196608 -[1,12106:7246811,33877128:24720180,3176416,0 -(1,12100:7246811,31104938:24720180,404226,107478 -(1,12099:7246811,31104938:0,0,0 -g1,12099:7246811,31104938 -g1,12099:7246811,31104938 -g1,12099:6919131,31104938 -(1,12099:6919131,31104938:0,0,0 -) -g1,12099:7246811,31104938 -) -k1,12100:7246811,31104938:0 -g1,12100:11040560,31104938 -g1,12100:11672852,31104938 -g1,12100:14202018,31104938 -g1,12100:16098893,31104938 -g1,12100:16731185,31104938 -g1,12100:18628060,31104938 -g1,12100:19260352,31104938 -g1,12100:19892644,31104938 -k1,12100:19892644,31104938:0 -h1,12100:21157227,31104938:0,0,0 -k1,12100:31966991,31104938:10809764 -g1,12100:31966991,31104938 -) -(1,12101:7246811,31771116:24720180,410518,101187 -h1,12101:7246811,31771116:0,0,0 -g1,12101:7562957,31771116 -g1,12101:7879103,31771116 -g1,12101:8195249,31771116 -g1,12101:8511395,31771116 -g1,12101:8827541,31771116 -g1,12101:9143687,31771116 -g1,12101:9459833,31771116 -g1,12101:9775979,31771116 -g1,12101:10092125,31771116 -g1,12101:10408271,31771116 -g1,12101:10724417,31771116 -g1,12101:11040563,31771116 -g1,12101:11356709,31771116 -g1,12101:11672855,31771116 -g1,12101:11989001,31771116 -g1,12101:12305147,31771116 -g1,12101:12621293,31771116 -g1,12101:12937439,31771116 -g1,12101:13253585,31771116 -g1,12101:13569731,31771116 -g1,12101:13885877,31771116 -g1,12101:14202023,31771116 -g1,12101:14518169,31771116 -g1,12101:14834315,31771116 -g1,12101:15150461,31771116 -g1,12101:15466607,31771116 -g1,12101:17363481,31771116 -g1,12101:17995773,31771116 -k1,12101:17995773,31771116:0 -h1,12101:21789521,31771116:0,0,0 -k1,12101:31966991,31771116:10177470 -g1,12101:31966991,31771116 -) -(1,12102:7246811,32437294:24720180,404226,76021 -h1,12102:7246811,32437294:0,0,0 -g1,12102:7562957,32437294 -g1,12102:7879103,32437294 -g1,12102:8195249,32437294 -g1,12102:8511395,32437294 -g1,12102:8827541,32437294 -g1,12102:9143687,32437294 -g1,12102:9459833,32437294 -g1,12102:9775979,32437294 -g1,12102:10092125,32437294 -g1,12102:10408271,32437294 -g1,12102:10724417,32437294 -g1,12102:11040563,32437294 -g1,12102:11356709,32437294 -g1,12102:11672855,32437294 -g1,12102:11989001,32437294 -g1,12102:12305147,32437294 -g1,12102:12621293,32437294 -g1,12102:12937439,32437294 -g1,12102:13253585,32437294 -g1,12102:13569731,32437294 -g1,12102:13885877,32437294 -g1,12102:14202023,32437294 -g1,12102:14518169,32437294 -g1,12102:14834315,32437294 -g1,12102:15150461,32437294 -g1,12102:15466607,32437294 -g1,12102:17047336,32437294 -g1,12102:17679628,32437294 -g1,12102:19260357,32437294 -h1,12102:19576503,32437294:0,0,0 -k1,12102:31966991,32437294:12390488 -g1,12102:31966991,32437294 -) -(1,12103:7246811,33103472:24720180,404226,76021 -h1,12103:7246811,33103472:0,0,0 -g1,12103:7562957,33103472 -g1,12103:7879103,33103472 -g1,12103:11988997,33103472 -h1,12103:12305143,33103472:0,0,0 -k1,12103:31966991,33103472:19661848 -g1,12103:31966991,33103472 -) -(1,12104:7246811,33769650:24720180,404226,107478 -h1,12104:7246811,33769650:0,0,0 -g1,12104:7562957,33769650 -g1,12104:7879103,33769650 -k1,12104:7879103,33769650:0 -h1,12104:11672851,33769650:0,0,0 -k1,12104:31966991,33769650:20294140 -g1,12104:31966991,33769650 -) -] -) -g1,12106:31966991,33877128 -g1,12106:7246811,33877128 -g1,12106:7246811,33877128 -g1,12106:31966991,33877128 -g1,12106:31966991,33877128 -) -h1,12106:7246811,34073736:0,0,0 -(1,12110:7246811,35439512:24720180,513147,126483 -h1,12109:7246811,35439512:983040,0,0 -k1,12109:10122682,35439512:233459 -k1,12109:11375226,35439512:233459 -k1,12109:13059653,35439512:233460 -k1,12109:14679854,35439512:233459 -k1,12109:15526075,35439512:233459 -k1,12109:16217631,35439512:233459 -k1,12109:19400866,35439512:233460 -k1,12109:21578123,35439512:233459 -k1,12109:22830667,35439512:233459 -k1,12109:26245244,35439512:233459 -k1,12109:28489349,35439512:233460 -k1,12109:29382100,35439512:233459 -k1,12109:31307699,35439512:233459 -k1,12109:31966991,35439512:0 -) -(1,12110:7246811,36281000:24720180,513147,134348 -k1,12109:8521377,36281000:255481 -k1,12109:11396332,36281000:255481 -k1,12109:12843258,36281000:255481 -k1,12109:15123146,36281000:255481 -k1,12109:15844588,36281000:255481 -k1,12109:17558901,36281000:255482 -k1,12109:21239949,36281000:255481 -k1,12109:22154722,36281000:255481 -k1,12109:23429288,36281000:255481 -k1,12109:24962066,36281000:255481 -k1,12109:27876343,36281000:255481 -k1,12109:29150909,36281000:255481 -k1,12109:31966991,36281000:0 -) -(1,12110:7246811,37122488:24720180,505283,7863 -g1,12109:9645428,37122488 -k1,12110:31966991,37122488:21689796 -g1,12110:31966991,37122488 -) -] -) -] -r1,12110:32583029,37720175:26214,9690519,0 -) -] -) -) -g1,12110:32583029,37130351 -) -h1,12110:6630773,37746389:0,0,0 -(1,12115:6630773,39112165:25952256,513147,134348 -h1,12114:6630773,39112165:983040,0,0 -k1,12114:8613056,39112165:181354 -k1,12114:9150270,39112165:181354 -k1,12114:10738026,39112165:181353 -k1,12114:13580797,39112165:181354 -k1,12114:17972839,39112165:181354 -k1,12114:19173278,39112165:181354 -k1,12114:20447117,39112165:181354 -k1,12114:21295627,39112165:181354 -(1,12114:21295627,39112165:0,452978,122846 -r1,12114:25522723,39112165:4227096,575824,122846 -k1,12114:21295627,39112165:-4227096 -) -(1,12114:21295627,39112165:4227096,452978,122846 -k1,12114:21295627,39112165:3277 -h1,12114:25519446,39112165:0,411205,112570 -) -k1,12114:25877746,39112165:181353 -k1,12114:26927452,39112165:181354 -k1,12114:29820686,39112165:181354 -k1,12114:32583029,39112165:0 -) -(1,12115:6630773,39953653:25952256,505283,126483 -g1,12114:9894466,39953653 -g1,12114:11285140,39953653 -g1,12114:13330519,39953653 -g1,12114:14145786,39953653 -g1,12114:15364100,39953653 -g1,12114:17216802,39953653 -g1,12114:19585273,39953653 -k1,12115:32583029,39953653:11546789 -g1,12115:32583029,39953653 -) -v1,12117:6630773,41144119:0,393216,0 -(1,12127:6630773,45449992:25952256,4699089,196608 -g1,12127:6630773,45449992 -g1,12127:6630773,45449992 -g1,12127:6434165,45449992 -(1,12127:6434165,45449992:0,4699089,196608 -r1,12127:32779637,45449992:26345472,4895697,196608 -k1,12127:6434165,45449992:-26345472 -) -(1,12127:6434165,45449992:26345472,4699089,196608 -[1,12127:6630773,45449992:25952256,4502481,0 -(1,12119:6630773,41351737:25952256,404226,107478 -(1,12118:6630773,41351737:0,0,0 -g1,12118:6630773,41351737 -g1,12118:6630773,41351737 -g1,12118:6303093,41351737 -(1,12118:6303093,41351737:0,0,0 -) -g1,12118:6630773,41351737 -) -k1,12119:6630773,41351737:0 -g1,12119:10424522,41351737 -g1,12119:11056814,41351737 -g1,12119:13585980,41351737 -g1,12119:15482855,41351737 -g1,12119:16115147,41351737 -g1,12119:18012022,41351737 -g1,12119:18644314,41351737 -g1,12119:19276606,41351737 -k1,12119:19276606,41351737:0 -h1,12119:20541189,41351737:0,0,0 -k1,12119:32583029,41351737:12041840 -g1,12119:32583029,41351737 -) -(1,12120:6630773,42017915:25952256,410518,101187 -h1,12120:6630773,42017915:0,0,0 -g1,12120:6946919,42017915 -g1,12120:7263065,42017915 -g1,12120:7579211,42017915 -g1,12120:7895357,42017915 -g1,12120:8211503,42017915 -g1,12120:8527649,42017915 -g1,12120:8843795,42017915 -g1,12120:9159941,42017915 -g1,12120:9476087,42017915 -g1,12120:9792233,42017915 -g1,12120:10108379,42017915 -g1,12120:10424525,42017915 -g1,12120:10740671,42017915 -g1,12120:11056817,42017915 -g1,12120:11372963,42017915 -g1,12120:11689109,42017915 -g1,12120:12005255,42017915 -g1,12120:12321401,42017915 -g1,12120:12637547,42017915 -g1,12120:12953693,42017915 -g1,12120:13269839,42017915 -g1,12120:13585985,42017915 -g1,12120:13902131,42017915 -g1,12120:14218277,42017915 -g1,12120:14534423,42017915 -g1,12120:14850569,42017915 -g1,12120:16747443,42017915 -g1,12120:17379735,42017915 -k1,12120:17379735,42017915:0 -h1,12120:21173483,42017915:0,0,0 -k1,12120:32583029,42017915:11409546 -g1,12120:32583029,42017915 -) -(1,12121:6630773,42684093:25952256,410518,101187 -h1,12121:6630773,42684093:0,0,0 -g1,12121:6946919,42684093 -g1,12121:7263065,42684093 -g1,12121:7579211,42684093 -g1,12121:7895357,42684093 -g1,12121:8211503,42684093 -g1,12121:8527649,42684093 -g1,12121:8843795,42684093 -g1,12121:9159941,42684093 -g1,12121:9476087,42684093 -g1,12121:9792233,42684093 -g1,12121:10108379,42684093 -g1,12121:10424525,42684093 -g1,12121:10740671,42684093 -g1,12121:11056817,42684093 -g1,12121:11372963,42684093 -g1,12121:11689109,42684093 -g1,12121:12005255,42684093 -g1,12121:12321401,42684093 -g1,12121:12637547,42684093 -g1,12121:12953693,42684093 -g1,12121:13269839,42684093 -g1,12121:13585985,42684093 -g1,12121:13902131,42684093 -g1,12121:14218277,42684093 -g1,12121:14534423,42684093 -g1,12121:14850569,42684093 -g1,12121:16431298,42684093 -g1,12121:17063590,42684093 -k1,12121:17063590,42684093:0 -h1,12121:20857338,42684093:0,0,0 -k1,12121:32583029,42684093:11725691 -g1,12121:32583029,42684093 -) -(1,12122:6630773,43350271:25952256,404226,76021 -h1,12122:6630773,43350271:0,0,0 -g1,12122:6946919,43350271 -g1,12122:7263065,43350271 -g1,12122:7579211,43350271 -g1,12122:7895357,43350271 -g1,12122:8211503,43350271 -g1,12122:8527649,43350271 -g1,12122:8843795,43350271 -g1,12122:9159941,43350271 -g1,12122:9476087,43350271 -g1,12122:9792233,43350271 -g1,12122:10108379,43350271 -g1,12122:10424525,43350271 -g1,12122:10740671,43350271 -g1,12122:11056817,43350271 -g1,12122:11372963,43350271 -g1,12122:11689109,43350271 -g1,12122:12005255,43350271 -g1,12122:12321401,43350271 -g1,12122:12637547,43350271 -g1,12122:12953693,43350271 -g1,12122:13269839,43350271 -g1,12122:13585985,43350271 -g1,12122:13902131,43350271 -g1,12122:14218277,43350271 -g1,12122:14534423,43350271 -g1,12122:14850569,43350271 -g1,12122:16431298,43350271 -g1,12122:17063590,43350271 -g1,12122:18644319,43350271 -h1,12122:18960465,43350271:0,0,0 -k1,12122:32583029,43350271:13622564 -g1,12122:32583029,43350271 -) -(1,12123:6630773,44016449:25952256,404226,107478 -h1,12123:6630773,44016449:0,0,0 -g1,12123:6946919,44016449 -g1,12123:7263065,44016449 -g1,12123:12637542,44016449 -g1,12123:13269834,44016449 -g1,12123:15166709,44016449 -g1,12123:17063583,44016449 -g1,12123:17695875,44016449 -g1,12123:20541187,44016449 -h1,12123:20857333,44016449:0,0,0 -k1,12123:32583029,44016449:11725696 -g1,12123:32583029,44016449 -) -(1,12124:6630773,44682627:25952256,404226,76021 -h1,12124:6630773,44682627:0,0,0 -g1,12124:6946919,44682627 -g1,12124:7263065,44682627 -g1,12124:12953687,44682627 -h1,12124:13269833,44682627:0,0,0 -k1,12124:32583029,44682627:19313196 -g1,12124:32583029,44682627 -) -(1,12125:6630773,45348805:25952256,404226,101187 -h1,12125:6630773,45348805:0,0,0 -g1,12125:6946919,45348805 -g1,12125:7263065,45348805 -g1,12125:15482853,45348805 -g1,12125:16115145,45348805 -g1,12125:18012020,45348805 -g1,12125:19276603,45348805 -h1,12125:20541185,45348805:0,0,0 -k1,12125:32583029,45348805:12041844 -g1,12125:32583029,45348805 -) -] -) -g1,12127:32583029,45449992 -g1,12127:6630773,45449992 -g1,12127:6630773,45449992 -g1,12127:32583029,45449992 -g1,12127:32583029,45449992 -) -h1,12127:6630773,45646600:0,0,0 -] -(1,12138:32583029,45706769:0,0,0 -g1,12138:32583029,45706769 -) -) -] -(1,12138:6630773,47279633:25952256,0,0 -h1,12138:6630773,47279633:25952256,0,0 -) -] -h1,12138:4262630,4025873:0,0,0 -] -!24329 -}229 -Input:1541:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1542:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1543:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1544:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1545:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1546:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1547:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1548:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1549:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1550:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1551:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1552:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1044 -{230 -[1,12169:4262630,47279633:28320399,43253760,0 -(1,12169:4262630,4025873:0,0,0 -[1,12169:-473657,4025873:25952256,0,0 -(1,12169:-473657,-710414:25952256,0,0 -h1,12169:-473657,-710414:0,0,0 -(1,12169:-473657,-710414:0,0,0 -(1,12169:-473657,-710414:0,0,0 -g1,12169:-473657,-710414 -(1,12169:-473657,-710414:65781,0,65781 -g1,12169:-407876,-710414 -[1,12169:-407876,-644633:0,0,0 +g1,12059:6630773,4812305 +g1,12059:6630773,4812305 +g1,12059:10347975,4812305 +k1,12059:31387651,4812305:21039676 +) +) +] +[1,12059:6630773,45706769:25952256,40108032,0 +(1,12059:6630773,45706769:25952256,40108032,0 +(1,12059:6630773,45706769:0,0,0 +g1,12059:6630773,45706769 +) +[1,12059:6630773,45706769:25952256,40108032,0 +v1,11991:6630773,6254097:0,393216,0 +(1,12002:6630773,13943073:25952256,8082192,616038 +g1,12002:6630773,13943073 +(1,12002:6630773,13943073:25952256,8082192,616038 +(1,12002:6630773,14559111:25952256,8698230,0 +[1,12002:6630773,14559111:25952256,8698230,0 +(1,12002:6630773,14532897:25952256,8645802,0 +r1,12002:6656987,14532897:26214,8645802,0 +[1,12002:6656987,14532897:25899828,8645802,0 +(1,12002:6656987,13943073:25899828,7466154,0 +[1,12002:7246811,13943073:24720180,7466154,0 +(1,11992:7246811,7564293:24720180,1087374,134348 +k1,11991:8633469,7564293:176955 +k1,11991:9894389,7564293:176954 +k1,11991:11090429,7564293:176955 +k1,11991:14029726,7564293:176954 +k1,11991:16727196,7564293:176955 +k1,11991:19688119,7564293:176954 +k1,11991:22423600,7564293:176955 +k1,11991:23619640,7564293:176955 +k1,11991:25989429,7564293:176954 +k1,11991:27912263,7564293:176955 +k1,11991:29342921,7564293:176954 +k1,11991:30624158,7564293:176955 +k1,11991:31966991,7564293:0 +) +(1,11992:7246811,8405781:24720180,513147,134348 +k1,11991:9916745,8405781:255588 +k1,11991:11566284,8405781:255588 +k1,11991:12840957,8405781:255588 +k1,11991:15617060,8405781:255588 +k1,11991:17608040,8405781:255587 +k1,11991:20559124,8405781:255588 +(1,11991:20559124,8405781:0,452978,115847 +r1,12002:24786220,8405781:4227096,568825,115847 +k1,11991:20559124,8405781:-4227096 +) +(1,11991:20559124,8405781:4227096,452978,115847 +k1,11991:20559124,8405781:3277 +h1,11991:24782943,8405781:0,411205,112570 +) +k1,11991:25041808,8405781:255588 +k1,11991:26865017,8405781:255588 +k1,11991:29700757,8405781:255588 +k1,11991:31966991,8405781:0 +) +(1,11992:7246811,9247269:24720180,505283,134348 +g1,11991:10126463,9247269 +g1,11991:11719643,9247269 +(1,11991:11719643,9247269:0,452978,115847 +r1,12002:15243315,9247269:3523672,568825,115847 +k1,11991:11719643,9247269:-3523672 +) +(1,11991:11719643,9247269:3523672,452978,115847 +k1,11991:11719643,9247269:3277 +h1,11991:15240038,9247269:0,411205,112570 +) +k1,11992:31966991,9247269:16342912 +g1,11992:31966991,9247269 +) +v1,11994:7246811,10437735:0,393216,0 +(1,11999:7246811,11412718:24720180,1368199,196608 +g1,11999:7246811,11412718 +g1,11999:7246811,11412718 +g1,11999:7050203,11412718 +(1,11999:7050203,11412718:0,1368199,196608 +r1,12002:32163599,11412718:25113396,1564807,196608 +k1,11999:7050203,11412718:-25113396 +) +(1,11999:7050203,11412718:25113396,1368199,196608 +[1,11999:7246811,11412718:24720180,1171591,0 +(1,11996:7246811,10645353:24720180,404226,101187 +(1,11995:7246811,10645353:0,0,0 +g1,11995:7246811,10645353 +g1,11995:7246811,10645353 +g1,11995:6919131,10645353 +(1,11995:6919131,10645353:0,0,0 +) +g1,11995:7246811,10645353 +) +k1,11996:7246811,10645353:0 +k1,11996:7246811,10645353:0 +h1,11996:15150453,10645353:0,0,0 +k1,11996:31966991,10645353:16816538 +g1,11996:31966991,10645353 +) +(1,11997:7246811,11311531:24720180,404226,101187 +h1,11997:7246811,11311531:0,0,0 +g1,11997:15150454,11311531 +g1,11997:15782746,11311531 +g1,11997:18311912,11311531 +g1,11997:20841078,11311531 +g1,11997:21473370,11311531 +g1,11997:22421808,11311531 +g1,11997:25583265,11311531 +g1,11997:26215557,11311531 +h1,11997:28112431,11311531:0,0,0 +k1,11997:31966991,11311531:3854560 +g1,11997:31966991,11311531 +) +] +) +g1,11999:31966991,11412718 +g1,11999:7246811,11412718 +g1,11999:7246811,11412718 +g1,11999:31966991,11412718 +g1,11999:31966991,11412718 +) +h1,11999:7246811,11609326:0,0,0 +(1,12002:7246811,12975102:24720180,513147,126483 +h1,12001:7246811,12975102:983040,0,0 +k1,12001:10043182,12975102:208354 +k1,12001:11422009,12975102:208354 +k1,12001:13105578,12975102:208354 +k1,12001:15223651,12975102:208354 +k1,12001:15787865,12975102:208354 +k1,12001:18508214,12975102:208354 +k1,12001:20906782,12975102:208355 +k1,12001:22062787,12975102:208354 +k1,12001:23967868,12975102:208354 +k1,12001:25739256,12975102:208354 +k1,12001:27398577,12975102:208354 +k1,12001:28626016,12975102:208354 +k1,12001:30111667,12975102:208354 +k1,12001:31966991,12975102:0 +) +(1,12002:7246811,13816590:24720180,505283,126483 +g1,12001:8839991,13816590 +g1,12001:10058305,13816590 +g1,12001:12492967,13816590 +k1,12002:31966991,13816590:17110140 +g1,12002:31966991,13816590 +) +] +) +] +r1,12002:32583029,14532897:26214,8645802,0 +) +] +) +) +g1,12002:32583029,13943073 +) +h1,12002:6630773,14559111:0,0,0 +(1,12005:6630773,15924887:25952256,513147,134348 +h1,12004:6630773,15924887:983040,0,0 +k1,12004:9663303,15924887:266255 +k1,12004:10995828,15924887:266254 +k1,12004:13454262,15924887:266255 +k1,12004:14529887,15924887:266255 +k1,12004:16916232,15924887:266255 +k1,12004:18201571,15924887:266254 +k1,12004:20069526,15924887:266255 +k1,12004:23113197,15924887:266255 +k1,12004:24617427,15924887:266255 +k1,12004:25542973,15924887:266254 +k1,12004:30360048,15924887:266255 +k1,12004:32583029,15924887:0 +) +(1,12005:6630773,16766375:25952256,513147,126483 +k1,12004:7535941,16766375:245876 +k1,12004:11853569,16766375:245876 +k1,12004:12715483,16766375:245876 +k1,12004:15130600,16766375:245875 +k1,12004:16984074,16766375:245876 +k1,12004:17761447,16766375:245876 +k1,12004:18658751,16766375:245876 +k1,12004:19997112,16766375:245876 +k1,12004:21262073,16766375:245876 +(1,12004:21262073,16766375:0,452978,115847 +r1,12004:23027186,16766375:1765113,568825,115847 +k1,12004:21262073,16766375:-1765113 +) +(1,12004:21262073,16766375:1765113,452978,115847 +k1,12004:21262073,16766375:3277 +h1,12004:23023909,16766375:0,411205,112570 +) +k1,12004:23273062,16766375:245876 +k1,12004:24178230,16766375:245876 +k1,12004:25443190,16766375:245875 +k1,12004:27707575,16766375:245876 +k1,12004:28639613,16766375:245876 +k1,12004:29656192,16766375:245876 +k1,12004:32583029,16766375:0 +) +(1,12005:6630773,17607863:25952256,513147,134348 +k1,12004:7786501,17607863:202179 +k1,12004:9518945,17607863:202178 +k1,12004:10372552,17607863:202179 +k1,12004:12815406,17607863:202178 +k1,12004:13373445,17607863:202179 +k1,12004:15448642,17607863:202178 +k1,12004:17875768,17607863:202179 +k1,12004:18693984,17607863:202178 +k1,12004:19915248,17607863:202179 +k1,12004:21613613,17607863:202178 +k1,12004:25002152,17607863:202179 +k1,12004:25855758,17607863:202178 +k1,12004:28415267,17607863:202179 +k1,12004:29820686,17607863:202178 +k1,12004:32583029,17607863:0 +) +(1,12005:6630773,18449351:25952256,473825,134348 +k1,12005:32583030,18449351:22971024 +g1,12005:32583030,18449351 +) +v1,12007:6630773,19639817:0,393216,0 +(1,12012:6630773,20627383:25952256,1380782,196608 +g1,12012:6630773,20627383 +g1,12012:6630773,20627383 +g1,12012:6434165,20627383 +(1,12012:6434165,20627383:0,1380782,196608 +r1,12012:32779637,20627383:26345472,1577390,196608 +k1,12012:6434165,20627383:-26345472 +) +(1,12012:6434165,20627383:26345472,1380782,196608 +[1,12012:6630773,20627383:25952256,1184174,0 +(1,12009:6630773,19853727:25952256,410518,107478 +(1,12008:6630773,19853727:0,0,0 +g1,12008:6630773,19853727 +g1,12008:6630773,19853727 +g1,12008:6303093,19853727 +(1,12008:6303093,19853727:0,0,0 +) +g1,12008:6630773,19853727 +) +k1,12009:6630773,19853727:0 +g1,12009:10424522,19853727 +g1,12009:11056814,19853727 +g1,12009:13585980,19853727 +g1,12009:15482855,19853727 +g1,12009:16115147,19853727 +g1,12009:18012022,19853727 +g1,12009:18644314,19853727 +g1,12009:19276606,19853727 +g1,12009:20857335,19853727 +g1,12009:22754209,19853727 +g1,12009:23386501,19853727 +g1,12009:27812541,19853727 +h1,12009:28128687,19853727:0,0,0 +k1,12009:32583029,19853727:4454342 +g1,12009:32583029,19853727 +) +(1,12010:6630773,20519905:25952256,404226,107478 +h1,12010:6630773,20519905:0,0,0 +g1,12010:6946919,20519905 +g1,12010:7263065,20519905 +k1,12010:7263065,20519905:0 +h1,12010:11056813,20519905:0,0,0 +k1,12010:32583029,20519905:21526216 +g1,12010:32583029,20519905 +) +] +) +g1,12012:32583029,20627383 +g1,12012:6630773,20627383 +g1,12012:6630773,20627383 +g1,12012:32583029,20627383 +g1,12012:32583029,20627383 +) +h1,12012:6630773,20823991:0,0,0 +(1,12016:6630773,22189767:25952256,505283,126483 +h1,12015:6630773,22189767:983040,0,0 +k1,12015:8772386,22189767:205024 +k1,12015:10081692,22189767:205024 +k1,12015:11379201,22189767:205024 +(1,12015:11379201,22189767:0,452978,115847 +r1,12015:17716568,22189767:6337367,568825,115847 +k1,12015:11379201,22189767:-6337367 +) +(1,12015:11379201,22189767:6337367,452978,115847 +k1,12015:11379201,22189767:3277 +h1,12015:17713291,22189767:0,411205,112570 +) +k1,12015:17921592,22189767:205024 +k1,12015:18778044,22189767:205024 +k1,12015:21198185,22189767:205024 +k1,12015:22854831,22189767:205024 +k1,12015:24928942,22189767:205024 +k1,12015:25785394,22189767:205024 +k1,12015:26738184,22189767:205024 +k1,12015:28630105,22189767:205024 +k1,12015:29788678,22189767:205024 +k1,12015:30928245,22189767:205024 +k1,12015:32583029,22189767:0 +) +(1,12016:6630773,23031255:25952256,513147,126483 +k1,12015:9041565,23031255:233031 +k1,12015:11473983,23031255:233030 +k1,12015:12991520,23031255:233031 +k1,12015:14092903,23031255:233031 +k1,12015:15458395,23031255:233030 +k1,12015:16716409,23031255:233031 +k1,12015:18403029,23031255:233031 +k1,12015:19627619,23031255:233030 +k1,12015:21214624,23031255:233031 +k1,12015:23424876,23031255:233031 +k1,12015:24344068,23031255:233030 +k1,12015:25957287,23031255:233031 +k1,12015:27693714,23031255:233031 +k1,12015:29393440,23031255:233030 +(1,12015:29393440,23031255:0,452978,115847 +r1,12015:31158553,23031255:1765113,568825,115847 +k1,12015:29393440,23031255:-1765113 +) +(1,12015:29393440,23031255:1765113,452978,115847 +k1,12015:29393440,23031255:3277 +h1,12015:31155276,23031255:0,411205,112570 +) +k1,12015:31391584,23031255:233031 +k1,12016:32583029,23031255:0 +) +(1,12016:6630773,23872743:25952256,505283,115847 +(1,12015:6630773,23872743:0,459977,115847 +r1,12015:8044174,23872743:1413401,575824,115847 +k1,12015:6630773,23872743:-1413401 +) +(1,12015:6630773,23872743:1413401,459977,115847 +k1,12015:6630773,23872743:3277 +h1,12015:8040897,23872743:0,411205,112570 +) +g1,12015:8243403,23872743 +k1,12016:32583029,23872743:21124430 +g1,12016:32583029,23872743 +) +v1,12018:6630773,25063209:0,393216,0 +(1,12024:6630773,26710662:25952256,2040669,196608 +g1,12024:6630773,26710662 +g1,12024:6630773,26710662 +g1,12024:6434165,26710662 +(1,12024:6434165,26710662:0,2040669,196608 +r1,12024:32779637,26710662:26345472,2237277,196608 +k1,12024:6434165,26710662:-26345472 +) +(1,12024:6434165,26710662:26345472,2040669,196608 +[1,12024:6630773,26710662:25952256,1844061,0 +(1,12020:6630773,25277119:25952256,410518,107478 +(1,12019:6630773,25277119:0,0,0 +g1,12019:6630773,25277119 +g1,12019:6630773,25277119 +g1,12019:6303093,25277119 +(1,12019:6303093,25277119:0,0,0 +) +g1,12019:6630773,25277119 +) +k1,12020:6630773,25277119:0 +g1,12020:10424522,25277119 +g1,12020:11056814,25277119 +g1,12020:13585980,25277119 +g1,12020:15482855,25277119 +g1,12020:16115147,25277119 +g1,12020:18012022,25277119 +g1,12020:18644314,25277119 +g1,12020:19276606,25277119 +g1,12020:20857335,25277119 +g1,12020:22754209,25277119 +g1,12020:23386501,25277119 +g1,12020:27812541,25277119 +h1,12020:28128687,25277119:0,0,0 +k1,12020:32583029,25277119:4454342 +g1,12020:32583029,25277119 +) +(1,12021:6630773,25943297:25952256,404226,107478 +h1,12021:6630773,25943297:0,0,0 +g1,12021:6946919,25943297 +g1,12021:7263065,25943297 +g1,12021:11372959,25943297 +h1,12021:11689105,25943297:0,0,0 +k1,12021:32583029,25943297:20893924 +g1,12021:32583029,25943297 +) +(1,12022:6630773,26609475:25952256,404226,101187 +h1,12022:6630773,26609475:0,0,0 +g1,12022:6946919,26609475 +g1,12022:7263065,26609475 +g1,12022:15482853,26609475 +g1,12022:16115145,26609475 +g1,12022:18012020,26609475 +g1,12022:19276603,26609475 +h1,12022:20541185,26609475:0,0,0 +k1,12022:32583029,26609475:12041844 +g1,12022:32583029,26609475 +) +] +) +g1,12024:32583029,26710662 +g1,12024:6630773,26710662 +g1,12024:6630773,26710662 +g1,12024:32583029,26710662 +g1,12024:32583029,26710662 +) +h1,12024:6630773,26907270:0,0,0 +(1,12028:6630773,28273046:25952256,505283,126483 +h1,12027:6630773,28273046:983040,0,0 +k1,12027:8273433,28273046:189727 +k1,12027:8994656,28273046:189726 +k1,12027:10470199,28273046:189727 +k1,12027:13289886,28273046:189727 +k1,12027:14131040,28273046:189726 +k1,12027:15413252,28273046:189727 +k1,12027:18907959,28273046:189726 +k1,12027:19783848,28273046:189727 +k1,12027:22346634,28273046:189727 +k1,12027:23733047,28273046:189726 +k1,12027:26897453,28273046:189727 +k1,12027:27618677,28273046:189727 +k1,12027:30564847,28273046:189726 +k1,12027:31563944,28273046:189727 +k1,12027:32583029,28273046:0 +) +(1,12028:6630773,29114534:25952256,513147,126483 +k1,12027:9423083,29114534:178079 +k1,12027:10260454,29114534:178079 +k1,12027:11457618,29114534:178079 +k1,12027:15550818,29114534:178079 +k1,12027:16546786,29114534:178079 +k1,12027:17743951,29114534:178080 +k1,12027:20738112,29114534:178079 +k1,12027:22429417,29114534:178079 +k1,12027:23293658,29114534:178079 +k1,12027:26113493,29114534:178079 +k1,12027:27283132,29114534:178079 +k1,12027:32583029,29114534:0 +) +(1,12028:6630773,29956022:25952256,513147,134348 +g1,12027:7698354,29956022 +g1,12027:10780512,29956022 +g1,12027:11998826,29956022 +g1,12027:14463635,29956022 +g1,12027:16421195,29956022 +g1,12027:17303309,29956022 +k1,12028:32583029,29956022:14005045 +g1,12028:32583029,29956022 +) +v1,12030:6630773,31146488:0,393216,0 +(1,12036:6630773,32800232:25952256,2046960,196608 +g1,12036:6630773,32800232 +g1,12036:6630773,32800232 +g1,12036:6434165,32800232 +(1,12036:6434165,32800232:0,2046960,196608 +r1,12036:32779637,32800232:26345472,2243568,196608 +k1,12036:6434165,32800232:-26345472 +) +(1,12036:6434165,32800232:26345472,2046960,196608 +[1,12036:6630773,32800232:25952256,1850352,0 +(1,12032:6630773,31360398:25952256,410518,107478 +(1,12031:6630773,31360398:0,0,0 +g1,12031:6630773,31360398 +g1,12031:6630773,31360398 +g1,12031:6303093,31360398 +(1,12031:6303093,31360398:0,0,0 +) +g1,12031:6630773,31360398 +) +k1,12032:6630773,31360398:0 +g1,12032:10424522,31360398 +g1,12032:11056814,31360398 +g1,12032:13585980,31360398 +g1,12032:15482855,31360398 +g1,12032:16115147,31360398 +g1,12032:18012022,31360398 +g1,12032:18644314,31360398 +g1,12032:19276606,31360398 +g1,12032:20857335,31360398 +g1,12032:22754209,31360398 +g1,12032:23386501,31360398 +g1,12032:27812541,31360398 +h1,12032:28128687,31360398:0,0,0 +k1,12032:32583029,31360398:4454342 +g1,12032:32583029,31360398 +) +(1,12033:6630773,32026576:25952256,404226,107478 +h1,12033:6630773,32026576:0,0,0 +g1,12033:6946919,32026576 +g1,12033:7263065,32026576 +g1,12033:12321397,32026576 +g1,12033:12953689,32026576 +g1,12033:14534418,32026576 +h1,12033:14850564,32026576:0,0,0 +k1,12033:32583028,32026576:17732464 +g1,12033:32583028,32026576 +) +(1,12034:6630773,32692754:25952256,404226,107478 +h1,12034:6630773,32692754:0,0,0 +g1,12034:6946919,32692754 +g1,12034:7263065,32692754 +g1,12034:15482853,32692754 +g1,12034:16115145,32692754 +g1,12034:18328166,32692754 +g1,12034:19908895,32692754 +g1,12034:21805770,32692754 +g1,12034:23702644,32692754 +g1,12034:24334936,32692754 +h1,12034:26231810,32692754:0,0,0 +k1,12034:32583029,32692754:6351219 +g1,12034:32583029,32692754 +) +] +) +g1,12036:32583029,32800232 +g1,12036:6630773,32800232 +g1,12036:6630773,32800232 +g1,12036:32583029,32800232 +g1,12036:32583029,32800232 +) +h1,12036:6630773,32996840:0,0,0 +(1,12039:6630773,42649353:25952256,9062689,0 +k1,12039:10523651,42649353:3892878 +h1,12038:10523651,42649353:0,0,0 +(1,12038:10523651,42649353:18166500,9062689,0 +(1,12038:10523651,42649353:18167381,9062712,0 +(1,12038:10523651,42649353:18167381,9062712,0 +(1,12038:10523651,42649353:0,9062712,0 +(1,12038:10523651,42649353:0,14155776,0 +(1,12038:10523651,42649353:28377088,14155776,0 +) +k1,12038:10523651,42649353:-28377088 +) +) +g1,12038:28691032,42649353 +) +) +) +g1,12039:28690151,42649353 +k1,12039:32583029,42649353:3892878 +) +v1,12047:6630773,44015129:0,393216,0 +] +(1,12059:32583029,45706769:0,0,0 +g1,12059:32583029,45706769 +) +) +] +(1,12059:6630773,47279633:25952256,0,0 +h1,12059:6630773,47279633:25952256,0,0 +) +] +h1,12059:4262630,4025873:0,0,0 +] +!18915 +}228 +Input:1530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1534:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1535:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{229 +[1,12114:4262630,47279633:28320399,43253760,0 +(1,12114:4262630,4025873:0,0,0 +[1,12114:-473657,4025873:25952256,0,0 +(1,12114:-473657,-710414:25952256,0,0 +h1,12114:-473657,-710414:0,0,0 +(1,12114:-473657,-710414:0,0,0 +(1,12114:-473657,-710414:0,0,0 +g1,12114:-473657,-710414 +(1,12114:-473657,-710414:65781,0,65781 +g1,12114:-407876,-710414 +[1,12114:-407876,-644633:0,0,0 ] ) -k1,12169:-473657,-710414:-65781 +k1,12114:-473657,-710414:-65781 ) ) -k1,12169:25478599,-710414:25952256 -g1,12169:25478599,-710414 +k1,12114:25478599,-710414:25952256 +g1,12114:25478599,-710414 ) ] ) -[1,12169:6630773,47279633:25952256,43253760,0 -[1,12169:6630773,4812305:25952256,786432,0 -(1,12169:6630773,4812305:25952256,485622,11795 -(1,12169:6630773,4812305:25952256,485622,11795 -g1,12169:3078558,4812305 -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,2439708:0,1703936,0 -k1,12169:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12169: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,134348 +(1,12114:6630773,4812305:25952256,513147,134348 +g1,12114:3078558,4812305 +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,2439708:0,1703936,0 +k1,12114:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12114:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12169:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12114:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,2439708:0,1703936,0 -g1,12169:29030814,2439708 -g1,12169:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12169: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,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12114:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12169:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12114:37855564,2439708:1179648,16384,0 ) ) -k1,12169:3078556,2439708:-34777008 +k1,12114:3078556,2439708:-34777008 ) ] -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,49800853:0,16384,2228224 -k1,12169:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12169:2537886,49800853:1179648,16384,0 -) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12169:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,49800853:0,16384,2228224 +k1,12114:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12114:2537886,49800853:1179648,16384,0 ) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12114:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,12114:3078558,4812305:0,0,0 +(1,12114:3078558,49800853:0,16384,2228224 +g1,12114:29030814,49800853 +g1,12114:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12114:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12114:37855564,49800853:1179648,16384,0 +) +) +k1,12114:3078556,49800853:-34777008 +) +] +g1,12114:6630773,4812305 +k1,12114:25712890,4812305:17886740 +g1,12114:29057847,4812305 +g1,12114:29873114,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 +v1,12059:6630773,6254097:0,393216,0 +(1,12059:6630773,14248721:25952256,8387840,616038 +g1,12059:6630773,14248721 +(1,12059:6630773,14248721:25952256,8387840,616038 +(1,12059:6630773,14864759:25952256,9003878,0 +[1,12059:6630773,14864759:25952256,9003878,0 +(1,12059:6630773,14838545:25952256,8951450,0 +r1,12059:6656987,14838545:26214,8951450,0 +[1,12059:6656987,14838545:25899828,8951450,0 +(1,12059:6656987,14248721:25899828,7771802,0 +[1,12059:7246811,14248721:24720180,7771802,0 +(1,12048:7246811,7499265:24720180,1022346,126483 +k1,12047:8674227,7499265:171903 +k1,12047:10117528,7499265:171903 +k1,12047:12800770,7499265:171902 +k1,12047:13588711,7499265:171903 +k1,12047:14779699,7499265:171903 +k1,12047:16340965,7499265:171903 +k1,12047:17617149,7499265:171902 +k1,12047:18536818,7499265:171903 +k1,12047:21294116,7499265:171903 +k1,12047:22117447,7499265:171903 +k1,12047:23939547,7499265:171903 +k1,12047:25553896,7499265:171902 +k1,12047:26882509,7499265:171903 +k1,12047:30072345,7499265:171903 +k1,12048:31966991,7499265:0 +) +(1,12048:7246811,8340753:24720180,513147,134348 +k1,12047:8476803,8340753:239743 +k1,12047:12051017,8340753:239742 +k1,12047:15638994,8340753:239743 +k1,12047:17259580,8340753:239742 +k1,12047:18836257,8340753:239743 +k1,12047:20720953,8340753:239742 +k1,12047:23830518,8340753:239743 +k1,12047:25142429,8340753:239742 +k1,12047:25840269,8340753:239743 +k1,12047:26611508,8340753:239742 +k1,12047:29989770,8340753:239743 +k1,12047:31966991,8340753:0 +) +(1,12048:7246811,9182241:24720180,513147,134348 +k1,12047:8117082,9182241:184109 +k1,12047:8759289,9182241:184110 +k1,12047:10955353,9182241:184109 +k1,12047:12296172,9182241:184109 +k1,12047:13131709,9182241:184109 +k1,12047:15935948,9182241:184110 +k1,12047:18305683,9182241:184109 +k1,12047:19947968,9182241:184109 +k1,12047:21598774,9182241:184110 +k1,12047:23480921,9182241:184109 +k1,12047:26705901,9182241:184109 +k1,12047:27506048,9182241:184109 +k1,12047:29479946,9182241:184110 +k1,12047:30768337,9182241:184109 +k1,12047:31966991,9182241:0 +) +(1,12048:7246811,10023729:24720180,513147,134348 +g1,12047:8193806,10023729 +g1,12047:9805336,10023729 +g1,12047:10470526,10023729 +g1,12047:14346325,10023729 +g1,12047:15231716,10023729 +g1,12047:20477217,10023729 +k1,12048:31966991,10023729:9087224 +g1,12048:31966991,10023729 +) +v1,12050:7246811,11214195:0,393216,0 +(1,12057:7246811,13527825:24720180,2706846,196608 +g1,12057:7246811,13527825 +g1,12057:7246811,13527825 +g1,12057:7050203,13527825 +(1,12057:7050203,13527825:0,2706846,196608 +r1,12059:32163599,13527825:25113396,2903454,196608 +k1,12057:7050203,13527825:-25113396 +) +(1,12057:7050203,13527825:25113396,2706846,196608 +[1,12057:7246811,13527825:24720180,2510238,0 +(1,12052:7246811,11421813:24720180,404226,107478 +(1,12051:7246811,11421813:0,0,0 +g1,12051:7246811,11421813 +g1,12051:7246811,11421813 +g1,12051:6919131,11421813 +(1,12051:6919131,11421813:0,0,0 +) +g1,12051:7246811,11421813 +) +k1,12052:7246811,11421813:0 +g1,12052:11040560,11421813 +g1,12052:11672852,11421813 +g1,12052:14202018,11421813 +g1,12052:16098893,11421813 +g1,12052:16731185,11421813 +g1,12052:18628060,11421813 +g1,12052:19260352,11421813 +g1,12052:19892644,11421813 +k1,12052:19892644,11421813:0 +h1,12052:21157227,11421813:0,0,0 +k1,12052:31966991,11421813:10809764 +g1,12052:31966991,11421813 +) +(1,12053:7246811,12087991:24720180,410518,101187 +h1,12053:7246811,12087991:0,0,0 +g1,12053:7562957,12087991 +g1,12053:7879103,12087991 +g1,12053:8195249,12087991 +g1,12053:8511395,12087991 +g1,12053:8827541,12087991 +g1,12053:9143687,12087991 +g1,12053:9459833,12087991 +g1,12053:9775979,12087991 +g1,12053:10092125,12087991 +g1,12053:10408271,12087991 +g1,12053:10724417,12087991 +g1,12053:11040563,12087991 +g1,12053:11356709,12087991 +g1,12053:11672855,12087991 +g1,12053:11989001,12087991 +g1,12053:12305147,12087991 +g1,12053:12621293,12087991 +g1,12053:12937439,12087991 +g1,12053:13253585,12087991 +g1,12053:13569731,12087991 +g1,12053:13885877,12087991 +g1,12053:14202023,12087991 +g1,12053:14518169,12087991 +g1,12053:14834315,12087991 +g1,12053:15150461,12087991 +g1,12053:15466607,12087991 +g1,12053:17363481,12087991 +g1,12053:17995773,12087991 +k1,12053:17995773,12087991:0 +h1,12053:21789521,12087991:0,0,0 +k1,12053:31966991,12087991:10177470 +g1,12053:31966991,12087991 +) +(1,12054:7246811,12754169:24720180,410518,101187 +h1,12054:7246811,12754169:0,0,0 +g1,12054:7562957,12754169 +g1,12054:7879103,12754169 +g1,12054:8195249,12754169 +g1,12054:8511395,12754169 +g1,12054:8827541,12754169 +g1,12054:9143687,12754169 +g1,12054:9459833,12754169 +g1,12054:9775979,12754169 +g1,12054:10092125,12754169 +g1,12054:10408271,12754169 +g1,12054:10724417,12754169 +g1,12054:11040563,12754169 +g1,12054:11356709,12754169 +g1,12054:11672855,12754169 +g1,12054:11989001,12754169 +g1,12054:12305147,12754169 +g1,12054:12621293,12754169 +g1,12054:12937439,12754169 +g1,12054:13253585,12754169 +g1,12054:13569731,12754169 +g1,12054:13885877,12754169 +g1,12054:14202023,12754169 +g1,12054:14518169,12754169 +g1,12054:14834315,12754169 +g1,12054:15150461,12754169 +g1,12054:15466607,12754169 +g1,12054:17363481,12754169 +g1,12054:17995773,12754169 +g1,12054:22421813,12754169 +h1,12054:22737959,12754169:0,0,0 +k1,12054:31966991,12754169:9229032 +g1,12054:31966991,12754169 +) +(1,12055:7246811,13420347:24720180,404226,107478 +h1,12055:7246811,13420347:0,0,0 +g1,12055:7562957,13420347 +g1,12055:7879103,13420347 +k1,12055:7879103,13420347:0 +h1,12055:11672851,13420347:0,0,0 +k1,12055:31966991,13420347:20294140 +g1,12055:31966991,13420347 +) +] +) +g1,12057:31966991,13527825 +g1,12057:7246811,13527825 +g1,12057:7246811,13527825 +g1,12057:31966991,13527825 +g1,12057:31966991,13527825 +) +h1,12057:7246811,13724433:0,0,0 +] +) +] +r1,12059:32583029,14838545:26214,8951450,0 +) +] +) +) +g1,12059:32583029,14248721 +) +h1,12059:6630773,14864759:0,0,0 +(1,12063:6630773,16104523:25952256,513147,126483 +h1,12062:6630773,16104523:983040,0,0 +k1,12062:8992212,16104523:223655 +k1,12062:10823465,16104523:223655 +k1,12062:12038680,16104523:223655 +k1,12062:14464345,16104523:223655 +k1,12062:15339428,16104523:223655 +k1,12062:17732325,16104523:223655 +k1,12062:19563578,16104523:223655 +k1,12062:20859403,16104523:223656 +k1,12062:21438918,16104523:223655 +k1,12062:23556563,16104523:223655 +k1,12062:24311715,16104523:223655 +k1,12062:27120765,16104523:223655 +k1,12062:27995848,16104523:223655 +k1,12062:30075483,16104523:223655 +k1,12062:31318223,16104523:223655 +(1,12062:31318223,16104523:0,414482,115847 +r1,12062:31676489,16104523:358266,530329,115847 +k1,12062:31318223,16104523:-358266 +) +(1,12062:31318223,16104523:358266,414482,115847 +k1,12062:31318223,16104523:3277 +h1,12062:31673212,16104523:0,411205,112570 +) +k1,12062:31900144,16104523:223655 +k1,12063:32583029,16104523:0 +) +(1,12063:6630773,16946011:25952256,505283,134348 +(1,12062:6630773,16946011:0,414482,115847 +r1,12062:6989039,16946011:358266,530329,115847 +k1,12062:6630773,16946011:-358266 +) +(1,12062:6630773,16946011:358266,414482,115847 +k1,12062:6630773,16946011:3277 +h1,12062:6985762,16946011:0,411205,112570 +) +k1,12062:7264800,16946011:275761 +k1,12062:10467398,16946011:275761 +k1,12062:11897902,16946011:275760 +k1,12062:13781261,16946011:275761 +k1,12062:15048582,16946011:275761 +k1,12062:17190153,16946011:275761 +k1,12062:18117341,16946011:275760 +k1,12062:19868317,16946011:275761 +k1,12062:23924195,16946011:275761 +k1,12062:28445378,16946011:275761 +k1,12062:29912583,16946011:275760 +k1,12062:31345054,16946011:275761 +k1,12062:32583029,16946011:0 +) +(1,12063:6630773,17787499:25952256,513147,134348 +k1,12062:7576306,17787499:286241 +k1,12062:10221188,17787499:286241 +k1,12062:12204156,17787499:286241 +k1,12062:14508906,17787499:286241 +k1,12062:16837904,17787499:286241 +k1,12062:17655642,17787499:286241 +k1,12062:18593312,17787499:286242 +k1,12062:20595286,17787499:286241 +k1,12062:22520582,17787499:286241 +k1,12062:24694915,17787499:286241 +k1,12062:28711465,17787499:286241 +k1,12062:29759234,17787499:286241 +k1,12062:32227169,17787499:286241 +k1,12062:32583029,17787499:0 +) +(1,12063:6630773,18628987:25952256,513147,115847 +g1,12062:9587757,18628987 +g1,12062:11467329,18628987 +g1,12062:14018645,18628987 +g1,12062:15660321,18628987 +g1,12062:17016260,18628987 +g1,12062:18163140,18628987 +g1,12062:19381454,18628987 +(1,12062:19381454,18628987:0,452978,115847 +r1,12062:21146567,18628987:1765113,568825,115847 +k1,12062:19381454,18628987:-1765113 +) +(1,12062:19381454,18628987:1765113,452978,115847 +k1,12062:19381454,18628987:3277 +h1,12062:21143290,18628987:0,411205,112570 +) +g1,12062:21345796,18628987 +k1,12063:32583029,18628987:8310396 +g1,12063:32583029,18628987 +) +v1,12065:6630773,19693441:0,393216,0 +(1,12070:6630773,20681007:25952256,1380782,196608 +g1,12070:6630773,20681007 +g1,12070:6630773,20681007 +g1,12070:6434165,20681007 +(1,12070:6434165,20681007:0,1380782,196608 +r1,12070:32779637,20681007:26345472,1577390,196608 +k1,12070:6434165,20681007:-26345472 +) +(1,12070:6434165,20681007:26345472,1380782,196608 +[1,12070:6630773,20681007:25952256,1184174,0 +(1,12067:6630773,19907351:25952256,410518,107478 +(1,12066:6630773,19907351:0,0,0 +g1,12066:6630773,19907351 +g1,12066:6630773,19907351 +g1,12066:6303093,19907351 +(1,12066:6303093,19907351:0,0,0 +) +g1,12066:6630773,19907351 +) +k1,12067:6630773,19907351:0 +g1,12067:10424522,19907351 +g1,12067:11056814,19907351 +g1,12067:13585980,19907351 +g1,12067:15482855,19907351 +g1,12067:16115147,19907351 +g1,12067:20225041,19907351 +g1,12067:20857333,19907351 +g1,12067:21489625,19907351 +g1,12067:23386499,19907351 +h1,12067:23702645,19907351:0,0,0 +k1,12067:32583029,19907351:8880384 +g1,12067:32583029,19907351 +) +(1,12068:6630773,20573529:25952256,404226,107478 +h1,12068:6630773,20573529:0,0,0 +g1,12068:6946919,20573529 +g1,12068:7263065,20573529 +g1,12068:12637542,20573529 +g1,12068:13269834,20573529 +h1,12068:14534418,20573529:0,0,0 +k1,12068:32583030,20573529:18048612 +g1,12068:32583030,20573529 +) +] +) +g1,12070:32583029,20681007 +g1,12070:6630773,20681007 +g1,12070:6630773,20681007 +g1,12070:32583029,20681007 +g1,12070:32583029,20681007 +) +h1,12070:6630773,20877615:0,0,0 +(1,12073:6630773,30404115:25952256,9062689,0 +k1,12073:10523651,30404115:3892878 +h1,12072:10523651,30404115:0,0,0 +(1,12072:10523651,30404115:18166500,9062689,0 +(1,12072:10523651,30404115:18167381,9062712,0 +(1,12072:10523651,30404115:18167381,9062712,0 +(1,12072:10523651,30404115:0,9062712,0 +(1,12072:10523651,30404115:0,14155776,0 +(1,12072:10523651,30404115:28377088,14155776,0 +) +k1,12072:10523651,30404115:-28377088 +) +) +g1,12072:28691032,30404115 +) +) +) +g1,12073:28690151,30404115 +k1,12073:32583029,30404115:3892878 +) +(1,12081:6630773,31245603:25952256,513147,134348 +h1,12080:6630773,31245603:983040,0,0 +k1,12080:10141274,31245603:188481 +k1,12080:10989048,31245603:188482 +k1,12080:13536170,31245603:188481 +k1,12080:14743737,31245603:188482 +k1,12080:16950727,31245603:188481 +k1,12080:22541996,31245603:188481 +k1,12080:23598830,31245603:188482 +k1,12080:24891593,31245603:188481 +k1,12080:28140606,31245603:188482 +k1,12080:30943974,31245603:188481 +k1,12080:32583029,31245603:0 +) +(1,12081:6630773,32087091:25952256,505283,134348 +k1,12080:7489492,32087091:207291 +k1,12080:9426278,32087091:207291 +k1,12080:12506667,32087091:207291 +k1,12080:14094802,32087091:207291 +k1,12080:14833590,32087091:207291 +k1,12080:16908658,32087091:207292 +k1,12080:18816608,32087091:207291 +k1,12080:20215344,32087091:207291 +k1,12080:21526917,32087091:207291 +k1,12080:22481974,32087091:207291 +k1,12080:24654690,32087091:207291 +k1,12080:26597374,32087091:207291 +(1,12080:26597374,32087091:0,452978,122846 +r1,12080:32583029,32087091:5985655,575824,122846 +k1,12080:26597374,32087091:-5985655 +) +(1,12080:26597374,32087091:5985655,452978,122846 +k1,12080:26597374,32087091:3277 +h1,12080:32579752,32087091:0,411205,112570 +) +k1,12080:32583029,32087091:0 +) +(1,12081:6630773,32928579:25952256,513147,134348 +k1,12080:8012607,32928579:190389 +k1,12080:9222080,32928579:190388 +k1,12080:11869414,32928579:190389 +k1,12080:12719094,32928579:190388 +k1,12080:14486935,32928579:190389 +k1,12080:15611866,32928579:190388 +k1,12080:17196206,32928579:190389 +(1,12080:17196206,32928579:0,452978,115847 +r1,12080:18961319,32928579:1765113,568825,115847 +k1,12080:17196206,32928579:-1765113 +) +(1,12080:17196206,32928579:1765113,452978,115847 +k1,12080:17196206,32928579:3277 +h1,12080:18958042,32928579:0,411205,112570 +) +k1,12080:19151707,32928579:190388 +k1,12080:20028258,32928579:190389 +k1,12080:20574506,32928579:190388 +k1,12080:23274924,32928579:190389 +k1,12080:24124604,32928579:190388 +k1,12080:25334078,32928579:190389 +k1,12080:28185228,32928579:190388 +k1,12080:31010820,32928579:190389 +k1,12081:32583029,32928579:0 +) +(1,12081:6630773,33770067:25952256,513147,126483 +g1,12080:8182665,33770067 +g1,12080:10275884,33770067 +g1,12080:12267523,33770067 +g1,12080:13082790,33770067 +g1,12080:14301104,33770067 +k1,12081:32583029,33770067:16830958 +g1,12081:32583029,33770067 +) +v1,12083:6630773,34834521:0,393216,0 +(1,12088:6630773,35822087:25952256,1380782,196608 +g1,12088:6630773,35822087 +g1,12088:6630773,35822087 +g1,12088:6434165,35822087 +(1,12088:6434165,35822087:0,1380782,196608 +r1,12088:32779637,35822087:26345472,1577390,196608 +k1,12088:6434165,35822087:-26345472 +) +(1,12088:6434165,35822087:26345472,1380782,196608 +[1,12088:6630773,35822087:25952256,1184174,0 +(1,12085:6630773,35048431:25952256,410518,107478 +(1,12084:6630773,35048431:0,0,0 +g1,12084:6630773,35048431 +g1,12084:6630773,35048431 +g1,12084:6303093,35048431 +(1,12084:6303093,35048431:0,0,0 +) +g1,12084:6630773,35048431 +) +k1,12085:6630773,35048431:0 +g1,12085:10424522,35048431 +g1,12085:11056814,35048431 +g1,12085:13585980,35048431 +g1,12085:15482855,35048431 +g1,12085:16115147,35048431 +g1,12085:20225041,35048431 +g1,12085:20857333,35048431 +g1,12085:21489625,35048431 +g1,12085:23386499,35048431 +h1,12085:23702645,35048431:0,0,0 +k1,12085:32583029,35048431:8880384 +g1,12085:32583029,35048431 +) +(1,12086:6630773,35714609:25952256,404226,107478 +h1,12086:6630773,35714609:0,0,0 +g1,12086:6946919,35714609 +g1,12086:7263065,35714609 +g1,12086:13585979,35714609 +g1,12086:14218271,35714609 +g1,12086:21173476,35714609 +g1,12086:21805768,35714609 +h1,12086:23702642,35714609:0,0,0 +k1,12086:32583029,35714609:8880387 +g1,12086:32583029,35714609 +) +] +) +g1,12088:32583029,35822087 +g1,12088:6630773,35822087 +g1,12088:6630773,35822087 +g1,12088:32583029,35822087 +g1,12088:32583029,35822087 +) +h1,12088:6630773,36018695:0,0,0 +(1,12093:6630773,37258459:25952256,505283,134348 +h1,12092:6630773,37258459:983040,0,0 +k1,12092:8814550,37258459:247188 +k1,12092:10166020,37258459:247188 +k1,12092:12342587,37258459:247187 +k1,12092:12945635,37258459:247188 +k1,12092:15961719,37258459:247188 +k1,12092:17486204,37258459:247188 +k1,12092:18494919,37258459:247187 +k1,12092:21549669,37258459:247188 +k1,12092:22815942,37258459:247188 +(1,12092:22815942,37258459:0,452978,115847 +r1,12092:24229343,37258459:1413401,568825,115847 +k1,12092:22815942,37258459:-1413401 +) +(1,12092:22815942,37258459:1413401,452978,115847 +k1,12092:22815942,37258459:3277 +h1,12092:24226066,37258459:0,411205,112570 +) +k1,12092:24476531,37258459:247188 +k1,12092:27510965,37258459:247188 +k1,12092:28409580,37258459:247187 +k1,12092:29012628,37258459:247188 +k1,12092:32583029,37258459:0 +) +(1,12093:6630773,38099947:25952256,513147,134348 +k1,12092:9500040,38099947:184257 +k1,12092:10312132,38099947:184257 +k1,12092:11699630,38099947:184257 +k1,12092:13424638,38099947:184257 +k1,12092:14765605,38099947:184257 +k1,12092:16050867,38099947:184257 +k1,12092:16886551,38099947:184256 +k1,12092:18751151,38099947:184257 +k1,12092:20484024,38099947:184257 +k1,12092:21199778,38099947:184257 +k1,12092:23814765,38099947:184257 +k1,12092:25649219,38099947:184257 +k1,12092:29620146,38099947:184257 +k1,12092:32583029,38099947:0 +) +(1,12093:6630773,38941435:25952256,513147,126483 +k1,12092:7793533,38941435:143675 +k1,12092:9948508,38941435:143675 +k1,12092:10751475,38941435:143675 +k1,12092:11914234,38941435:143674 +k1,12092:13926996,38941435:143675 +k1,12092:14602168,38941435:143675 +k1,12092:18050824,38941435:143675 +k1,12092:20953565,38941435:143675 +k1,12092:22280165,38941435:143675 +k1,12092:23075267,38941435:143674 +k1,12092:24549323,38941435:143675 +k1,12092:26913358,38941435:143675 +k1,12092:30482600,38941435:143675 +k1,12092:32583029,38941435:0 +) +(1,12093:6630773,39782923:25952256,513147,134348 +k1,12092:9659519,39782923:221184 +k1,12092:10236563,39782923:221184 +k1,12092:12969087,39782923:221184 +k1,12092:13841699,39782923:221184 +k1,12092:15081968,39782923:221184 +k1,12092:16650572,39782923:221184 +k1,12092:17531048,39782923:221184 +k1,12092:18771316,39782923:221183 +k1,12092:20861587,39782923:221184 +k1,12092:21614268,39782923:221184 +k1,12092:23485649,39782923:221184 +k1,12092:25684054,39782923:221184 +k1,12092:26666766,39782923:221184 +k1,12092:28625965,39782923:221184 +k1,12092:32583029,39782923:0 +) +(1,12093:6630773,40624411:25952256,505283,134348 +k1,12092:8705683,40624411:175677 +k1,12092:9532789,40624411:175678 +k1,12092:10064326,40624411:175677 +k1,12092:12052730,40624411:175678 +k1,12092:15209640,40624411:175677 +k1,12092:16427340,40624411:175678 +k1,12092:17806258,40624411:175677 +k1,12092:20643352,40624411:175677 +k1,12092:21687382,40624411:175678 +k1,12092:23060402,40624411:175677 +k1,12092:23591940,40624411:175678 +k1,12092:25050812,40624411:175677 +k1,12092:27737830,40624411:175678 +k1,12092:28564935,40624411:175677 +k1,12092:29759698,40624411:175678 +k1,12092:31386342,40624411:175677 +k1,12092:32583029,40624411:0 +) +(1,12093:6630773,41465899:25952256,513147,134348 +g1,12092:8945504,41465899 +g1,12092:9804025,41465899 +g1,12092:11022339,41465899 +g1,12092:12199365,41465899 +g1,12092:13014632,41465899 +g1,12092:14610433,41465899 +g1,12092:16001107,41465899 +g1,12092:17596908,41465899 +g1,12092:18254234,41465899 +g1,12092:19104891,41465899 +g1,12092:20323205,41465899 +g1,12092:21869854,41465899 +g1,12092:22728375,41465899 +g1,12092:23946689,41465899 +k1,12093:32583029,41465899:6444161 +g1,12093:32583029,41465899 +) +v1,12095:6630773,42530353:0,393216,0 +(1,12103:6630773,45510161:25952256,3373024,196608 +g1,12103:6630773,45510161 +g1,12103:6630773,45510161 +g1,12103:6434165,45510161 +(1,12103:6434165,45510161:0,3373024,196608 +r1,12103:32779637,45510161:26345472,3569632,196608 +k1,12103:6434165,45510161:-26345472 +) +(1,12103:6434165,45510161:26345472,3373024,196608 +[1,12103:6630773,45510161:25952256,3176416,0 +(1,12097:6630773,42737971:25952256,404226,107478 +(1,12096:6630773,42737971:0,0,0 +g1,12096:6630773,42737971 +g1,12096:6630773,42737971 +g1,12096:6303093,42737971 +(1,12096:6303093,42737971:0,0,0 +) +g1,12096:6630773,42737971 +) +k1,12097:6630773,42737971:0 +g1,12097:10424522,42737971 +g1,12097:11056814,42737971 +g1,12097:13585980,42737971 +g1,12097:15482855,42737971 +g1,12097:16115147,42737971 +g1,12097:18012022,42737971 +g1,12097:18644314,42737971 +g1,12097:19276606,42737971 +k1,12097:19276606,42737971:0 +h1,12097:20541189,42737971:0,0,0 +k1,12097:32583029,42737971:12041840 +g1,12097:32583029,42737971 +) +(1,12098:6630773,43404149:25952256,410518,101187 +h1,12098:6630773,43404149:0,0,0 +g1,12098:6946919,43404149 +g1,12098:7263065,43404149 +g1,12098:7579211,43404149 +g1,12098:7895357,43404149 +g1,12098:8211503,43404149 +g1,12098:8527649,43404149 +g1,12098:8843795,43404149 +g1,12098:9159941,43404149 +g1,12098:9476087,43404149 +g1,12098:9792233,43404149 +g1,12098:10108379,43404149 +g1,12098:10424525,43404149 +g1,12098:10740671,43404149 +g1,12098:11056817,43404149 +g1,12098:11372963,43404149 +g1,12098:11689109,43404149 +g1,12098:12005255,43404149 +g1,12098:12321401,43404149 +g1,12098:12637547,43404149 +g1,12098:12953693,43404149 +g1,12098:13269839,43404149 +g1,12098:13585985,43404149 +g1,12098:13902131,43404149 +g1,12098:14218277,43404149 +g1,12098:14534423,43404149 +g1,12098:14850569,43404149 +g1,12098:16747443,43404149 +g1,12098:17379735,43404149 +k1,12098:17379735,43404149:0 +h1,12098:21173483,43404149:0,0,0 +k1,12098:32583029,43404149:11409546 +g1,12098:32583029,43404149 +) +(1,12099:6630773,44070327:25952256,404226,76021 +h1,12099:6630773,44070327:0,0,0 +g1,12099:6946919,44070327 +g1,12099:7263065,44070327 +g1,12099:7579211,44070327 +g1,12099:7895357,44070327 +g1,12099:8211503,44070327 +g1,12099:8527649,44070327 +g1,12099:8843795,44070327 +g1,12099:9159941,44070327 +g1,12099:9476087,44070327 +g1,12099:9792233,44070327 +g1,12099:10108379,44070327 +g1,12099:10424525,44070327 +g1,12099:10740671,44070327 +g1,12099:11056817,44070327 +g1,12099:11372963,44070327 +g1,12099:11689109,44070327 +g1,12099:12005255,44070327 +g1,12099:12321401,44070327 +g1,12099:12637547,44070327 +g1,12099:12953693,44070327 +g1,12099:13269839,44070327 +g1,12099:13585985,44070327 +g1,12099:13902131,44070327 +g1,12099:14218277,44070327 +g1,12099:14534423,44070327 +g1,12099:14850569,44070327 +g1,12099:16431298,44070327 +g1,12099:17063590,44070327 +g1,12099:18644319,44070327 +h1,12099:18960465,44070327:0,0,0 +k1,12099:32583029,44070327:13622564 +g1,12099:32583029,44070327 +) +(1,12100:6630773,44736505:25952256,404226,76021 +h1,12100:6630773,44736505:0,0,0 +g1,12100:6946919,44736505 +g1,12100:7263065,44736505 +g1,12100:12953687,44736505 +h1,12100:13269833,44736505:0,0,0 +k1,12100:32583029,44736505:19313196 +g1,12100:32583029,44736505 +) +(1,12101:6630773,45402683:25952256,404226,107478 +h1,12101:6630773,45402683:0,0,0 +g1,12101:6946919,45402683 +g1,12101:7263065,45402683 +k1,12101:7263065,45402683:0 +h1,12101:11056813,45402683:0,0,0 +k1,12101:32583029,45402683:21526216 +g1,12101:32583029,45402683 +) +] +) +g1,12103:32583029,45510161 +g1,12103:6630773,45510161 +g1,12103:6630773,45510161 +g1,12103:32583029,45510161 +g1,12103:32583029,45510161 +) +h1,12103:6630773,45706769:0,0,0 +] +(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 +) +] +h1,12114:4262630,4025873:0,0,0 +] +!24810 +}229 +Input:1536:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{230 +[1,12158:4262630,47279633:28320399,43253760,0 +(1,12158:4262630,4025873:0,0,0 +[1,12158:-473657,4025873:25952256,0,0 +(1,12158:-473657,-710414:25952256,0,0 +h1,12158:-473657,-710414:0,0,0 +(1,12158:-473657,-710414:0,0,0 +(1,12158:-473657,-710414:0,0,0 +g1,12158:-473657,-710414 +(1,12158:-473657,-710414:65781,0,65781 +g1,12158:-407876,-710414 +[1,12158:-407876,-644633:0,0,0 ] ) +k1,12158:-473657,-710414:-65781 ) ) -] -[1,12169:3078558,4812305:0,0,0 -(1,12169:3078558,49800853:0,16384,2228224 -g1,12169:29030814,49800853 -g1,12169:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12169:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,12158:25478599,-710414:25952256 +g1,12158:25478599,-710414 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12169:37855564,49800853:1179648,16384,0 +[1,12158:6630773,47279633:25952256,43253760,0 +[1,12158:6630773,4812305:25952256,786432,0 +(1,12158:6630773,4812305:25952256,485622,11795 +(1,12158:6630773,4812305:25952256,485622,11795 +g1,12158:3078558,4812305 +[1,12158:3078558,4812305:0,0,0 +(1,12158:3078558,2439708:0,1703936,0 +k1,12158:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12158:2537886,2439708:1179648,16384,0 ) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12158:3078558,1915420:16384,1179648,0 ) -k1,12169:3078556,49800853:-34777008 -) -] -g1,12169:6630773,4812305 -g1,12169:6630773,4812305 -g1,12169:10347975,4812305 -k1,12169:31387651,4812305:21039676 -) -) -] -[1,12169:6630773,45706769:25952256,40108032,0 -(1,12169:6630773,45706769:25952256,40108032,0 -(1,12169:6630773,45706769:0,0,0 -g1,12169:6630773,45706769 -) -[1,12169:6630773,45706769:25952256,40108032,0 -(1,12130:6630773,14661426:25952256,9062689,0 -k1,12130:10523651,14661426:3892878 -h1,12129:10523651,14661426:0,0,0 -(1,12129:10523651,14661426:18166500,9062689,0 -(1,12129:10523651,14661426:18167381,9062712,0 -(1,12129:10523651,14661426:18167381,9062712,0 -(1,12129:10523651,14661426:0,9062712,0 -(1,12129:10523651,14661426:0,14155776,0 -(1,12129:10523651,14661426:28377088,14155776,0 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) -k1,12129:10523651,14661426:-28377088 +] ) ) -g1,12129:28691032,14661426 ) +] +[1,12158:3078558,4812305:0,0,0 +(1,12158:3078558,2439708:0,1703936,0 +g1,12158:29030814,2439708 +g1,12158:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12158:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) -) -g1,12130:28690151,14661426 -k1,12130:32583029,14661426:3892878 -) -v1,12138:6630773,16027202:0,393216,0 -(1,12139:6630773,20711213:25952256,5077227,616038 -g1,12139:6630773,20711213 -(1,12139:6630773,20711213:25952256,5077227,616038 -(1,12139:6630773,21327251:25952256,5693265,0 -[1,12139:6630773,21327251:25952256,5693265,0 -(1,12139:6630773,21301037:25952256,5640837,0 -r1,12139:6656987,21301037:26214,5640837,0 -[1,12139:6656987,21301037:25899828,5640837,0 -(1,12139:6656987,20711213:25899828,4461189,0 -[1,12139:7246811,20711213:24720180,4461189,0 -(1,12139:7246811,17337398:24720180,1087374,134348 -k1,12138:8622807,17337398:166293 -k1,12138:10086712,17337398:166292 -k1,12138:11646956,17337398:166293 -k1,12138:12832334,17337398:166293 -k1,12138:14494814,17337398:166293 -k1,12138:15277144,17337398:166292 -k1,12138:16462522,17337398:166293 -k1,12138:18599483,17337398:166293 -k1,12138:20794771,17337398:166293 -k1,12138:23472403,17337398:166292 -k1,12138:24321581,17337398:166293 -k1,12138:26728550,17337398:166293 -k1,12138:28346465,17337398:166293 -k1,12138:29172049,17337398:166292 -k1,12138:30357427,17337398:166293 -k1,12139:31966991,17337398:0 -) -(1,12139:7246811,18178886:24720180,505283,134348 -k1,12138:9252962,18178886:264859 -k1,12138:10709266,18178886:264859 -k1,12138:11993210,18178886:264859 -k1,12138:14003948,18178886:264859 -k1,12138:16563878,18178886:264859 -k1,12138:17847822,18178886:264859 -k1,12138:19395876,18178886:264859 -k1,12138:21111701,18178886:264858 -k1,12138:22568005,18178886:264859 -k1,12138:25593240,18178886:264859 -k1,12138:26316196,18178886:264859 -k1,12138:27232483,18178886:264859 -k1,12138:28516427,18178886:264859 -k1,12138:29937996,18178886:264859 -k1,12138:31966991,18178886:0 -) -(1,12139:7246811,19020374:24720180,505283,134348 -k1,12138:10304284,19020374:157505 -k1,12138:12794870,19020374:157504 -k1,12138:14346326,19020374:157505 -k1,12138:15522916,19020374:157505 -k1,12138:17176608,19020374:157505 -k1,12138:18827022,19020374:157504 -k1,12138:20155000,19020374:157505 -k1,12138:21304065,19020374:157505 -k1,12138:22842414,19020374:157505 -k1,12138:24170391,19020374:157504 -k1,12138:27992669,19020374:157505 -k1,12138:29698790,19020374:157505 -k1,12139:31966991,19020374:0 -) -(1,12139:7246811,19861862:24720180,513147,134348 -k1,12138:8387389,19861862:246012 -k1,12138:11172266,19861862:246012 -k1,12138:12034316,19861862:246012 -k1,12138:13299414,19861862:246013 -k1,12138:14822723,19861862:246012 -k1,12138:15600232,19861862:246012 -k1,12138:17811669,19861862:246012 -k1,12138:18740566,19861862:246012 -k1,12138:21821665,19861862:246012 -k1,12138:22829206,19861862:246013 -k1,12138:24526840,19861862:246012 -k1,12138:27965766,19861862:246012 -k1,12138:31284106,19861862:246012 -k1,12138:31966991,19861862:0 -) -(1,12139:7246811,20703350:24720180,505283,7863 -g1,12138:9670987,20703350 -g1,12138:10486254,20703350 -g1,12138:11704568,20703350 -g1,12138:13399984,20703350 -k1,12139:31966991,20703350:15206976 -g1,12139:31966991,20703350 -) -] -) -] -r1,12139:32583029,21301037:26214,5640837,0 -) -] -) -) -g1,12139:32583029,20711213 -) -h1,12139:6630773,21327251:0,0,0 -(1,12143:6630773,22693027:25952256,505283,134348 -h1,12142:6630773,22693027:983040,0,0 -k1,12142:8341645,22693027:257939 -k1,12142:9131080,22693027:257938 -k1,12142:12166435,22693027:257939 -k1,12142:13075802,22693027:257939 -k1,12142:14919711,22693027:257938 -k1,12142:16784593,22693027:257939 -k1,12142:18417477,22693027:257939 -k1,12142:21355838,22693027:257938 -k1,12142:23007728,22693027:257939 -k1,12142:25284176,22693027:257939 -k1,12142:29573889,22693027:257938 -k1,12142:31900144,22693027:257939 -k1,12142:32583029,22693027:0 -) -(1,12143:6630773,23534515:25952256,513147,122846 -k1,12142:9565450,23534515:244424 -k1,12142:10469166,23534515:244424 -k1,12142:14785342,23534515:244424 -k1,12142:16221211,23534515:244424 -(1,12142:16221211,23534515:0,452978,122846 -r1,12142:22206866,23534515:5985655,575824,122846 -k1,12142:16221211,23534515:-5985655 -) -(1,12142:16221211,23534515:5985655,452978,122846 -k1,12142:16221211,23534515:3277 -h1,12142:22203589,23534515:0,411205,112570 -) -k1,12142:22451290,23534515:244424 -k1,12142:25383344,23534515:244423 -k1,12142:26831009,23534515:244424 -k1,12142:28411057,23534515:244424 -k1,12142:30510150,23534515:244424 -k1,12142:31563944,23534515:244424 -k1,12142:32583029,23534515:0 -) -(1,12143:6630773,24376003:25952256,513147,134348 -k1,12142:8915712,24376003:274294 -k1,12142:11775401,24376003:274294 -k1,12142:12701123,24376003:274294 -k1,12142:13994502,24376003:274294 -(1,12142:13994502,24376003:0,414482,115847 -r1,12142:14352768,24376003:358266,530329,115847 -k1,12142:13994502,24376003:-358266 -) -(1,12142:13994502,24376003:358266,414482,115847 -k1,12142:13994502,24376003:3277 -h1,12142:14349491,24376003:0,411205,112570 -) -k1,12142:14800732,24376003:274294 -(1,12142:14800732,24376003:0,414482,115847 -r1,12142:15158998,24376003:358266,530329,115847 -k1,12142:14800732,24376003:-358266 -) -(1,12142:14800732,24376003:358266,414482,115847 -k1,12142:14800732,24376003:3277 -h1,12142:15155721,24376003:0,411205,112570 -) -k1,12142:15606962,24376003:274294 -(1,12142:15606962,24376003:0,452978,115847 -r1,12142:17020363,24376003:1413401,568825,115847 -k1,12142:15606962,24376003:-1413401 -) -(1,12142:15606962,24376003:1413401,452978,115847 -k1,12142:15606962,24376003:3277 -h1,12142:17017086,24376003:0,411205,112570 -) -k1,12142:17294657,24376003:274294 -k1,12142:18760396,24376003:274294 -(1,12142:18760396,24376003:0,414482,115847 -r1,12142:20173797,24376003:1413401,530329,115847 -k1,12142:18760396,24376003:-1413401 -) -(1,12142:18760396,24376003:1413401,414482,115847 -k1,12142:18760396,24376003:3277 -h1,12142:20170520,24376003:0,411205,112570 -) -k1,12142:20621761,24376003:274294 -k1,12142:22631448,24376003:274294 -(1,12142:22631448,24376003:0,414482,115847 -r1,12142:22989714,24376003:358266,530329,115847 -k1,12142:22631448,24376003:-358266 -) -(1,12142:22631448,24376003:358266,414482,115847 -k1,12142:22631448,24376003:3277 -h1,12142:22986437,24376003:0,411205,112570 -) -k1,12142:23264008,24376003:274294 -k1,12142:24485953,24376003:274294 -k1,12142:25779332,24376003:274294 -k1,12142:28667857,24376003:274294 -k1,12142:29601443,24376003:274294 -k1,12142:30894822,24376003:274294 -k1,12142:32583029,24376003:0 -) -(1,12143:6630773,25217491:25952256,513147,134348 -k1,12142:8003169,25217491:180951 -(1,12142:8003169,25217491:0,452978,115847 -r1,12142:9416570,25217491:1413401,568825,115847 -k1,12142:8003169,25217491:-1413401 -) -(1,12142:8003169,25217491:1413401,452978,115847 -k1,12142:8003169,25217491:3277 -h1,12142:9413293,25217491:0,411205,112570 -) -k1,12142:9597521,25217491:180951 -k1,12142:10969917,25217491:180951 -(1,12142:10969917,25217491:0,414482,115847 -r1,12142:12383318,25217491:1413401,530329,115847 -k1,12142:10969917,25217491:-1413401 -) -(1,12142:10969917,25217491:1413401,414482,115847 -k1,12142:10969917,25217491:3277 -h1,12142:12380041,25217491:0,411205,112570 -) -k1,12142:12564269,25217491:180951 -k1,12142:13692871,25217491:180951 -k1,12142:14892907,25217491:180951 -k1,12142:18018391,25217491:180951 -k1,12142:18858634,25217491:180951 -k1,12142:20058670,25217491:180951 -k1,12142:21752847,25217491:180951 -k1,12142:22593090,25217491:180951 -k1,12142:23793126,25217491:180951 -k1,12142:25142584,25217491:180951 -k1,12142:28014443,25217491:180951 -k1,12142:32227169,25217491:180951 -k1,12142:32583029,25217491:0 -) -(1,12143:6630773,26058979:25952256,505283,134348 -k1,12142:8720012,26058979:134955 -k1,12142:10205010,26058979:134956 -k1,12142:12041935,26058979:134955 -k1,12142:15767608,26058979:134956 -(1,12142:15767608,26058979:0,452978,122846 -r1,12142:19994704,26058979:4227096,575824,122846 -k1,12142:15767608,26058979:-4227096 -) -(1,12142:15767608,26058979:4227096,452978,122846 -k1,12142:15767608,26058979:3277 -h1,12142:19991427,26058979:0,411205,112570 -) -k1,12142:20129659,26058979:134955 -k1,12142:21456059,26058979:134955 -(1,12142:21456059,26058979:0,452978,122846 -r1,12142:26034867,26058979:4578808,575824,122846 -k1,12142:21456059,26058979:-4578808 -) -(1,12142:21456059,26058979:4578808,452978,122846 -k1,12142:21456059,26058979:3277 -h1,12142:26031590,26058979:0,411205,112570 -) -k1,12142:26169823,26058979:134956 -k1,12142:27890749,26058979:134955 -k1,12142:29401306,26058979:134956 -k1,12142:29892121,26058979:134955 -k1,12142:32583029,26058979:0 -) -(1,12143:6630773,26900467:25952256,513147,134348 -k1,12142:7542105,26900467:228447 -k1,12142:8126413,26900467:228448 -k1,12142:11045768,26900467:228447 -k1,12142:12668167,26900467:228448 -k1,12142:15195617,26900467:228447 -k1,12142:17110962,26900467:228448 -k1,12142:18897200,26900467:228447 -k1,12142:20117207,26900467:228447 -k1,12142:23650636,26900467:228448 -k1,12142:25392309,26900467:228447 -k1,12142:28301180,26900467:228448 -k1,12142:29923578,26900467:228447 -k1,12143:32583029,26900467:0 -) -(1,12143:6630773,27741955:25952256,513147,126483 -k1,12142:8534032,27741955:205221 -k1,12142:12247395,27741955:205221 -k1,12142:13444177,27741955:205222 -k1,12142:16878357,27741955:205221 -k1,12142:17892948,27741955:205221 -k1,12142:19117254,27741955:205221 -k1,12142:20291753,27741955:205222 -k1,12142:21569143,27741955:205221 -k1,12142:22878646,27741955:205221 -k1,12142:24369683,27741955:205221 -k1,12142:25322670,27741955:205221 -k1,12142:27041118,27741955:205222 -k1,12142:29660685,27741955:205221 -k1,12142:31563944,27741955:205221 -k1,12142:32583029,27741955:0 -) -(1,12143:6630773,28583443:25952256,513147,134348 -g1,12142:8219365,28583443 -g1,12142:11926736,28583443 -g1,12142:13117525,28583443 -g1,12142:15354924,28583443 -g1,12142:16170191,28583443 -g1,12142:16725280,28583443 -g1,12142:18313872,28583443 -g1,12142:20389397,28583443 -g1,12142:22793913,28583443 -g1,12142:23679304,28583443 -g1,12142:24649236,28583443 -g1,12142:27920793,28583443 -g1,12142:28771450,28583443 -(1,12142:28771450,28583443:0,452978,115847 -r1,12142:30184851,28583443:1413401,568825,115847 -k1,12142:28771450,28583443:-1413401 -) -(1,12142:28771450,28583443:1413401,452978,115847 -k1,12142:28771450,28583443:3277 -h1,12142:30181574,28583443:0,411205,112570 -) -k1,12143:32583029,28583443:2224508 -g1,12143:32583029,28583443 -) -(1,12144:6630773,30674703:25952256,534184,147783 -(1,12144:6630773,30674703:2450326,534184,0 -g1,12144:6630773,30674703 -g1,12144:9081099,30674703 -) -k1,12144:32583029,30674703:22079602 -g1,12144:32583029,30674703 -) -(1,12149:6630773,31909407:25952256,505283,134348 -k1,12147:9038616,31909407:231392 -k1,12147:10347421,31909407:231393 -k1,12147:12186411,31909407:231392 -k1,12147:13409364,31909407:231393 -k1,12147:15153982,31909407:231392 -k1,12147:16146902,31909407:231392 -k1,12147:20108604,31909407:231393 -k1,12147:22678976,31909407:231392 -k1,12147:24290556,31909407:231392 -k1,12147:25513509,31909407:231393 -k1,12147:28032108,31909407:231392 -k1,12147:29034204,31909407:231393 -k1,12147:31931601,31909407:231392 -k1,12147:32583029,31909407:0 -) -(1,12149:6630773,32750895:25952256,513147,126483 -k1,12147:8995279,32750895:195264 -k1,12147:10971813,32750895:195265 -k1,12147:12069508,32750895:195264 -k1,12147:14926190,32750895:195265 -k1,12147:15780746,32750895:195264 -k1,12147:16995096,32750895:195265 -k1,12147:18282845,32750895:195264 -k1,12147:19145266,32750895:195265 -(1,12147:19145266,32750895:0,452978,122846 -r1,12147:22668938,32750895:3523672,575824,122846 -k1,12147:19145266,32750895:-3523672 -) -(1,12147:19145266,32750895:3523672,452978,122846 -k1,12147:19145266,32750895:3277 -h1,12147:22665661,32750895:0,411205,112570 -) -k1,12147:22864202,32750895:195264 -k1,12147:25548524,32750895:195265 -k1,12147:27301579,32750895:195264 -k1,12147:29212577,32750895:195265 -k1,12147:29865938,32750895:195264 -k1,12147:31931601,32750895:195265 -k1,12147:32583029,32750895:0 -) -(1,12149:6630773,33592383:25952256,513147,138281 -g1,12147:7854985,33592383 -g1,12147:9073299,33592383 -g1,12147:13053955,33592383 -g1,12147:13912476,33592383 -g1,12147:18183457,33592383 -g1,12148:20127254,33592383 -g1,12148:21345568,33592383 -$1,12148:21345568,33592383 -$1,12148:21848229,33592383 -g1,12148:22260450,33592383 -g1,12148:23651124,33592383 -$1,12148:23651124,33592383 -$1,12148:24202937,33592383 -k1,12149:32583029,33592383:6594891 -g1,12149:32583029,33592383 -) -v1,12151:6630773,34782849:0,393216,0 -(1,12158:6630773,37096479:25952256,2706846,196608 -g1,12158:6630773,37096479 -g1,12158:6630773,37096479 -g1,12158:6434165,37096479 -(1,12158:6434165,37096479:0,2706846,196608 -r1,12158:32779637,37096479:26345472,2903454,196608 -k1,12158:6434165,37096479:-26345472 -) -(1,12158:6434165,37096479:26345472,2706846,196608 -[1,12158:6630773,37096479:25952256,2510238,0 -(1,12153:6630773,34990467:25952256,404226,107478 -(1,12152:6630773,34990467:0,0,0 -g1,12152:6630773,34990467 -g1,12152:6630773,34990467 -g1,12152:6303093,34990467 -(1,12152:6303093,34990467:0,0,0 -) -g1,12152:6630773,34990467 -) -k1,12153:6630773,34990467:0 -g1,12153:10424522,34990467 -g1,12153:11056814,34990467 -k1,12153:11056814,34990467:0 -h1,12153:13269834,34990467:0,0,0 -k1,12153:32583030,34990467:19313196 -g1,12153:32583030,34990467 -) -(1,12154:6630773,35656645:25952256,410518,107478 -h1,12154:6630773,35656645:0,0,0 -g1,12154:6946919,35656645 -g1,12154:7263065,35656645 -g1,12154:7579211,35656645 -g1,12154:7895357,35656645 -g1,12154:8211503,35656645 -g1,12154:8527649,35656645 -g1,12154:8843795,35656645 -g1,12154:10740670,35656645 -g1,12154:11372962,35656645 -g1,12154:13269837,35656645 -g1,12154:13902129,35656645 -g1,12154:14534421,35656645 -g1,12154:16115150,35656645 -g1,12154:18012024,35656645 -g1,12154:18644316,35656645 -g1,12154:23070356,35656645 -h1,12154:23386502,35656645:0,0,0 -k1,12154:32583029,35656645:9196527 -g1,12154:32583029,35656645 -) -(1,12155:6630773,36322823:25952256,404226,107478 -h1,12155:6630773,36322823:0,0,0 -g1,12155:6946919,36322823 -g1,12155:7263065,36322823 -g1,12155:11372959,36322823 -h1,12155:11689105,36322823:0,0,0 -k1,12155:32583029,36322823:20893924 -g1,12155:32583029,36322823 -) -(1,12156:6630773,36989001:25952256,404226,107478 -h1,12156:6630773,36989001:0,0,0 -g1,12156:6946919,36989001 -g1,12156:7263065,36989001 -k1,12156:7263065,36989001:0 -h1,12156:10424521,36989001:0,0,0 -k1,12156:32583029,36989001:22158508 -g1,12156:32583029,36989001 -) -] -) -g1,12158:32583029,37096479 -g1,12158:6630773,37096479 -g1,12158:6630773,37096479 -g1,12158:32583029,37096479 -g1,12158:32583029,37096479 -) -h1,12158:6630773,37293087:0,0,0 -] -(1,12169:32583029,45706769:0,0,0 -g1,12169:32583029,45706769 -) -) -] -(1,12169:6630773,47279633:25952256,0,0 -h1,12169:6630773,47279633:25952256,0,0 -) -] -h1,12169:4262630,4025873:0,0,0 -] -!17996 -}230 -Input:1553:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1554:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1555:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1556:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1557:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1558:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1559:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1560:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1561:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1562:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1563:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1564:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1565:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1566:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1567:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1568:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1569:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1570:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1571:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1572:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1573:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1574:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1575:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1576:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2076 -{231 -[1,12199:4262630,47279633:28320399,43253760,0 -(1,12199:4262630,4025873:0,0,0 -[1,12199:-473657,4025873:25952256,0,0 -(1,12199:-473657,-710414:25952256,0,0 -h1,12199:-473657,-710414:0,0,0 -(1,12199:-473657,-710414:0,0,0 -(1,12199:-473657,-710414:0,0,0 -g1,12199:-473657,-710414 -(1,12199:-473657,-710414:65781,0,65781 -g1,12199:-407876,-710414 -[1,12199:-407876,-644633:0,0,0 ] ) -k1,12199:-473657,-710414:-65781 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12158:37855564,2439708:1179648,16384,0 ) ) -k1,12199:25478599,-710414:25952256 -g1,12199:25478599,-710414 +k1,12158:3078556,2439708:-34777008 ) ] +[1,12158:3078558,4812305:0,0,0 +(1,12158:3078558,49800853:0,16384,2228224 +k1,12158:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12158:2537886,49800853:1179648,16384,0 ) -[1,12199:6630773,47279633:25952256,43253760,0 -[1,12199:6630773,4812305:25952256,786432,0 -(1,12199:6630773,4812305:25952256,513147,134348 -(1,12199:6630773,4812305:25952256,513147,134348 -g1,12199:3078558,4812305 -[1,12199:3078558,4812305:0,0,0 -(1,12199:3078558,2439708:0,1703936,0 -k1,12199:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12199:2537886,2439708:1179648,16384,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12158:3078558,51504789:16384,1179648,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12199:3078558,1915420:16384,1179648,0 -) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12199:3078558,4812305:0,0,0 -(1,12199:3078558,2439708:0,1703936,0 -g1,12199:29030814,2439708 -g1,12199:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12199:36151628,1915420:16384,1179648,0 +[1,12158:3078558,4812305:0,0,0 +(1,12158:3078558,49800853:0,16384,2228224 +g1,12158:29030814,49800853 +g1,12158:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12158:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12199:37855564,2439708:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12158:37855564,49800853:1179648,16384,0 ) ) -k1,12199:3078556,2439708:-34777008 +k1,12158:3078556,49800853:-34777008 ) ] -[1,12199:3078558,4812305:0,0,0 -(1,12199:3078558,49800853:0,16384,2228224 -k1,12199:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12199:2537886,49800853:1179648,16384,0 +g1,12158:6630773,4812305 +g1,12158:6630773,4812305 +g1,12158:10347975,4812305 +k1,12158:31387651,4812305:21039676 +) +) +] +[1,12158:6630773,45706769:25952256,40108032,0 +(1,12158:6630773,45706769:25952256,40108032,0 +(1,12158:6630773,45706769:0,0,0 +g1,12158:6630773,45706769 +) +[1,12158:6630773,45706769:25952256,40108032,0 +(1,12106:6630773,14661426:25952256,9062689,0 +k1,12106:10523651,14661426:3892878 +h1,12105:10523651,14661426:0,0,0 +(1,12105:10523651,14661426:18166500,9062689,0 +(1,12105:10523651,14661426:18167381,9062712,0 +(1,12105:10523651,14661426:18167381,9062712,0 +(1,12105:10523651,14661426:0,9062712,0 +(1,12105:10523651,14661426:0,14155776,0 +(1,12105:10523651,14661426:28377088,14155776,0 +) +k1,12105:10523651,14661426:-28377088 +) +) +g1,12105:28691032,14661426 +) +) +) +g1,12106:28690151,14661426 +k1,12106:32583029,14661426:3892878 +) +v1,12114:6630773,16027202:0,393216,0 +(1,12129:6630773,24760895:25952256,9126909,616038 +g1,12129:6630773,24760895 +(1,12129:6630773,24760895:25952256,9126909,616038 +(1,12129:6630773,25376933:25952256,9742947,0 +[1,12129:6630773,25376933:25952256,9742947,0 +(1,12129:6630773,25350719:25952256,9690519,0 +r1,12129:6656987,25350719:26214,9690519,0 +[1,12129:6656987,25350719:25899828,9690519,0 +(1,12129:6656987,24760895:25899828,8510871,0 +[1,12129:7246811,24760895:24720180,8510871,0 +(1,12115:7246811,17337398:24720180,1087374,126483 +g1,12114:8655743,17337398 +g1,12114:9332729,17337398 +g1,12114:10400310,17337398 +g1,12114:11692024,17337398 +g1,12114:12247113,17337398 +g1,12114:16525303,17337398 +g1,12114:18296741,17337398 +g1,12114:19515055,17337398 +g1,12114:23863368,17337398 +g1,12114:24594094,17337398 +k1,12115:31966991,17337398:4436884 +g1,12115:31966991,17337398 +) +v1,12117:7246811,18527864:0,393216,0 +(1,12125:7246811,21507672:24720180,3373024,196608 +g1,12125:7246811,21507672 +g1,12125:7246811,21507672 +g1,12125:7050203,21507672 +(1,12125:7050203,21507672:0,3373024,196608 +r1,12129:32163599,21507672:25113396,3569632,196608 +k1,12125:7050203,21507672:-25113396 +) +(1,12125:7050203,21507672:25113396,3373024,196608 +[1,12125:7246811,21507672:24720180,3176416,0 +(1,12119:7246811,18735482:24720180,404226,107478 +(1,12118:7246811,18735482:0,0,0 +g1,12118:7246811,18735482 +g1,12118:7246811,18735482 +g1,12118:6919131,18735482 +(1,12118:6919131,18735482:0,0,0 +) +g1,12118:7246811,18735482 +) +k1,12119:7246811,18735482:0 +g1,12119:11040560,18735482 +g1,12119:11672852,18735482 +g1,12119:14202018,18735482 +g1,12119:16098893,18735482 +g1,12119:16731185,18735482 +g1,12119:18628060,18735482 +g1,12119:19260352,18735482 +g1,12119:19892644,18735482 +k1,12119:19892644,18735482:0 +h1,12119:21157227,18735482:0,0,0 +k1,12119:31966991,18735482:10809764 +g1,12119:31966991,18735482 +) +(1,12120:7246811,19401660:24720180,410518,101187 +h1,12120:7246811,19401660:0,0,0 +g1,12120:7562957,19401660 +g1,12120:7879103,19401660 +g1,12120:8195249,19401660 +g1,12120:8511395,19401660 +g1,12120:8827541,19401660 +g1,12120:9143687,19401660 +g1,12120:9459833,19401660 +g1,12120:9775979,19401660 +g1,12120:10092125,19401660 +g1,12120:10408271,19401660 +g1,12120:10724417,19401660 +g1,12120:11040563,19401660 +g1,12120:11356709,19401660 +g1,12120:11672855,19401660 +g1,12120:11989001,19401660 +g1,12120:12305147,19401660 +g1,12120:12621293,19401660 +g1,12120:12937439,19401660 +g1,12120:13253585,19401660 +g1,12120:13569731,19401660 +g1,12120:13885877,19401660 +g1,12120:14202023,19401660 +g1,12120:14518169,19401660 +g1,12120:14834315,19401660 +g1,12120:15150461,19401660 +g1,12120:15466607,19401660 +g1,12120:17363481,19401660 +g1,12120:17995773,19401660 +k1,12120:17995773,19401660:0 +h1,12120:21789521,19401660:0,0,0 +k1,12120:31966991,19401660:10177470 +g1,12120:31966991,19401660 +) +(1,12121:7246811,20067838:24720180,404226,76021 +h1,12121:7246811,20067838:0,0,0 +g1,12121:7562957,20067838 +g1,12121:7879103,20067838 +g1,12121:8195249,20067838 +g1,12121:8511395,20067838 +g1,12121:8827541,20067838 +g1,12121:9143687,20067838 +g1,12121:9459833,20067838 +g1,12121:9775979,20067838 +g1,12121:10092125,20067838 +g1,12121:10408271,20067838 +g1,12121:10724417,20067838 +g1,12121:11040563,20067838 +g1,12121:11356709,20067838 +g1,12121:11672855,20067838 +g1,12121:11989001,20067838 +g1,12121:12305147,20067838 +g1,12121:12621293,20067838 +g1,12121:12937439,20067838 +g1,12121:13253585,20067838 +g1,12121:13569731,20067838 +g1,12121:13885877,20067838 +g1,12121:14202023,20067838 +g1,12121:14518169,20067838 +g1,12121:14834315,20067838 +g1,12121:15150461,20067838 +g1,12121:15466607,20067838 +g1,12121:17047336,20067838 +g1,12121:17679628,20067838 +g1,12121:19260357,20067838 +h1,12121:19576503,20067838:0,0,0 +k1,12121:31966991,20067838:12390488 +g1,12121:31966991,20067838 +) +(1,12122:7246811,20734016:24720180,404226,76021 +h1,12122:7246811,20734016:0,0,0 +g1,12122:7562957,20734016 +g1,12122:7879103,20734016 +g1,12122:11988997,20734016 +h1,12122:12305143,20734016:0,0,0 +k1,12122:31966991,20734016:19661848 +g1,12122:31966991,20734016 +) +(1,12123:7246811,21400194:24720180,404226,107478 +h1,12123:7246811,21400194:0,0,0 +g1,12123:7562957,21400194 +g1,12123:7879103,21400194 +k1,12123:7879103,21400194:0 +h1,12123:11672851,21400194:0,0,0 +k1,12123:31966991,21400194:20294140 +g1,12123:31966991,21400194 +) +] +) +g1,12125:31966991,21507672 +g1,12125:7246811,21507672 +g1,12125:7246811,21507672 +g1,12125:31966991,21507672 +g1,12125:31966991,21507672 +) +h1,12125:7246811,21704280:0,0,0 +(1,12129:7246811,23070056:24720180,513147,126483 +h1,12128:7246811,23070056:983040,0,0 +k1,12128:10122682,23070056:233459 +k1,12128:11375226,23070056:233459 +k1,12128:13059653,23070056:233460 +k1,12128:14679854,23070056:233459 +k1,12128:15526075,23070056:233459 +k1,12128:16217631,23070056:233459 +k1,12128:19400866,23070056:233460 +k1,12128:21578123,23070056:233459 +k1,12128:22830667,23070056:233459 +k1,12128:26245244,23070056:233459 +k1,12128:28489349,23070056:233460 +k1,12128:29382100,23070056:233459 +k1,12128:31307699,23070056:233459 +k1,12128:31966991,23070056:0 +) +(1,12129:7246811,23911544:24720180,513147,134348 +k1,12128:8521377,23911544:255481 +k1,12128:11396332,23911544:255481 +k1,12128:12843258,23911544:255481 +k1,12128:15123146,23911544:255481 +k1,12128:15844588,23911544:255481 +k1,12128:17558901,23911544:255482 +k1,12128:21239949,23911544:255481 +k1,12128:22154722,23911544:255481 +k1,12128:23429288,23911544:255481 +k1,12128:24962066,23911544:255481 +k1,12128:27876343,23911544:255481 +k1,12128:29150909,23911544:255481 +k1,12128:31966991,23911544:0 +) +(1,12129:7246811,24753032:24720180,505283,7863 +g1,12128:9645428,24753032 +k1,12129:31966991,24753032:21689796 +g1,12129:31966991,24753032 +) +] +) +] +r1,12129:32583029,25350719:26214,9690519,0 +) +] +) +) +g1,12129:32583029,24760895 +) +h1,12129:6630773,25376933:0,0,0 +(1,12134:6630773,26742709:25952256,513147,134348 +h1,12133:6630773,26742709:983040,0,0 +k1,12133:8613056,26742709:181354 +k1,12133:9150270,26742709:181354 +k1,12133:10738026,26742709:181353 +k1,12133:13580797,26742709:181354 +k1,12133:17972839,26742709:181354 +k1,12133:19173278,26742709:181354 +k1,12133:20447117,26742709:181354 +k1,12133:21295627,26742709:181354 +(1,12133:21295627,26742709:0,452978,122846 +r1,12133:25522723,26742709:4227096,575824,122846 +k1,12133:21295627,26742709:-4227096 +) +(1,12133:21295627,26742709:4227096,452978,122846 +k1,12133:21295627,26742709:3277 +h1,12133:25519446,26742709:0,411205,112570 +) +k1,12133:25877746,26742709:181353 +k1,12133:26927452,26742709:181354 +k1,12133:29820686,26742709:181354 +k1,12133:32583029,26742709:0 +) +(1,12134:6630773,27584197:25952256,505283,126483 +g1,12133:9894466,27584197 +g1,12133:11285140,27584197 +g1,12133:13330519,27584197 +g1,12133:14145786,27584197 +g1,12133:15364100,27584197 +g1,12133:17216802,27584197 +g1,12133:19585273,27584197 +k1,12134:32583029,27584197:11546789 +g1,12134:32583029,27584197 +) +v1,12136:6630773,28774663:0,393216,0 +(1,12146:6630773,33080536:25952256,4699089,196608 +g1,12146:6630773,33080536 +g1,12146:6630773,33080536 +g1,12146:6434165,33080536 +(1,12146:6434165,33080536:0,4699089,196608 +r1,12146:32779637,33080536:26345472,4895697,196608 +k1,12146:6434165,33080536:-26345472 +) +(1,12146:6434165,33080536:26345472,4699089,196608 +[1,12146:6630773,33080536:25952256,4502481,0 +(1,12138:6630773,28982281:25952256,404226,107478 +(1,12137:6630773,28982281:0,0,0 +g1,12137:6630773,28982281 +g1,12137:6630773,28982281 +g1,12137:6303093,28982281 +(1,12137:6303093,28982281:0,0,0 +) +g1,12137:6630773,28982281 +) +k1,12138:6630773,28982281:0 +g1,12138:10424522,28982281 +g1,12138:11056814,28982281 +g1,12138:13585980,28982281 +g1,12138:15482855,28982281 +g1,12138:16115147,28982281 +g1,12138:18012022,28982281 +g1,12138:18644314,28982281 +g1,12138:19276606,28982281 +k1,12138:19276606,28982281:0 +h1,12138:20541189,28982281:0,0,0 +k1,12138:32583029,28982281:12041840 +g1,12138:32583029,28982281 +) +(1,12139:6630773,29648459:25952256,410518,101187 +h1,12139:6630773,29648459:0,0,0 +g1,12139:6946919,29648459 +g1,12139:7263065,29648459 +g1,12139:7579211,29648459 +g1,12139:7895357,29648459 +g1,12139:8211503,29648459 +g1,12139:8527649,29648459 +g1,12139:8843795,29648459 +g1,12139:9159941,29648459 +g1,12139:9476087,29648459 +g1,12139:9792233,29648459 +g1,12139:10108379,29648459 +g1,12139:10424525,29648459 +g1,12139:10740671,29648459 +g1,12139:11056817,29648459 +g1,12139:11372963,29648459 +g1,12139:11689109,29648459 +g1,12139:12005255,29648459 +g1,12139:12321401,29648459 +g1,12139:12637547,29648459 +g1,12139:12953693,29648459 +g1,12139:13269839,29648459 +g1,12139:13585985,29648459 +g1,12139:13902131,29648459 +g1,12139:14218277,29648459 +g1,12139:14534423,29648459 +g1,12139:14850569,29648459 +g1,12139:16747443,29648459 +g1,12139:17379735,29648459 +k1,12139:17379735,29648459:0 +h1,12139:21173483,29648459:0,0,0 +k1,12139:32583029,29648459:11409546 +g1,12139:32583029,29648459 +) +(1,12140:6630773,30314637:25952256,410518,101187 +h1,12140:6630773,30314637:0,0,0 +g1,12140:6946919,30314637 +g1,12140:7263065,30314637 +g1,12140:7579211,30314637 +g1,12140:7895357,30314637 +g1,12140:8211503,30314637 +g1,12140:8527649,30314637 +g1,12140:8843795,30314637 +g1,12140:9159941,30314637 +g1,12140:9476087,30314637 +g1,12140:9792233,30314637 +g1,12140:10108379,30314637 +g1,12140:10424525,30314637 +g1,12140:10740671,30314637 +g1,12140:11056817,30314637 +g1,12140:11372963,30314637 +g1,12140:11689109,30314637 +g1,12140:12005255,30314637 +g1,12140:12321401,30314637 +g1,12140:12637547,30314637 +g1,12140:12953693,30314637 +g1,12140:13269839,30314637 +g1,12140:13585985,30314637 +g1,12140:13902131,30314637 +g1,12140:14218277,30314637 +g1,12140:14534423,30314637 +g1,12140:14850569,30314637 +g1,12140:16431298,30314637 +g1,12140:17063590,30314637 +k1,12140:17063590,30314637:0 +h1,12140:20857338,30314637:0,0,0 +k1,12140:32583029,30314637:11725691 +g1,12140:32583029,30314637 +) +(1,12141:6630773,30980815:25952256,404226,76021 +h1,12141:6630773,30980815:0,0,0 +g1,12141:6946919,30980815 +g1,12141:7263065,30980815 +g1,12141:7579211,30980815 +g1,12141:7895357,30980815 +g1,12141:8211503,30980815 +g1,12141:8527649,30980815 +g1,12141:8843795,30980815 +g1,12141:9159941,30980815 +g1,12141:9476087,30980815 +g1,12141:9792233,30980815 +g1,12141:10108379,30980815 +g1,12141:10424525,30980815 +g1,12141:10740671,30980815 +g1,12141:11056817,30980815 +g1,12141:11372963,30980815 +g1,12141:11689109,30980815 +g1,12141:12005255,30980815 +g1,12141:12321401,30980815 +g1,12141:12637547,30980815 +g1,12141:12953693,30980815 +g1,12141:13269839,30980815 +g1,12141:13585985,30980815 +g1,12141:13902131,30980815 +g1,12141:14218277,30980815 +g1,12141:14534423,30980815 +g1,12141:14850569,30980815 +g1,12141:16431298,30980815 +g1,12141:17063590,30980815 +g1,12141:18644319,30980815 +h1,12141:18960465,30980815:0,0,0 +k1,12141:32583029,30980815:13622564 +g1,12141:32583029,30980815 +) +(1,12142:6630773,31646993:25952256,404226,107478 +h1,12142:6630773,31646993:0,0,0 +g1,12142:6946919,31646993 +g1,12142:7263065,31646993 +g1,12142:12637542,31646993 +g1,12142:13269834,31646993 +g1,12142:15166709,31646993 +g1,12142:17063583,31646993 +g1,12142:17695875,31646993 +g1,12142:20541187,31646993 +h1,12142:20857333,31646993:0,0,0 +k1,12142:32583029,31646993:11725696 +g1,12142:32583029,31646993 +) +(1,12143:6630773,32313171:25952256,404226,76021 +h1,12143:6630773,32313171:0,0,0 +g1,12143:6946919,32313171 +g1,12143:7263065,32313171 +g1,12143:12953687,32313171 +h1,12143:13269833,32313171:0,0,0 +k1,12143:32583029,32313171:19313196 +g1,12143:32583029,32313171 +) +(1,12144:6630773,32979349:25952256,404226,101187 +h1,12144:6630773,32979349:0,0,0 +g1,12144:6946919,32979349 +g1,12144:7263065,32979349 +g1,12144:15482853,32979349 +g1,12144:16115145,32979349 +g1,12144:18012020,32979349 +g1,12144:19276603,32979349 +h1,12144:20541185,32979349:0,0,0 +k1,12144:32583029,32979349:12041844 +g1,12144:32583029,32979349 +) +] +) +g1,12146:32583029,33080536 +g1,12146:6630773,33080536 +g1,12146:6630773,33080536 +g1,12146:32583029,33080536 +g1,12146:32583029,33080536 +) +h1,12146:6630773,33277144:0,0,0 +(1,12149:6630773,42929657:25952256,9062689,0 +k1,12149:10523651,42929657:3892878 +h1,12148:10523651,42929657:0,0,0 +(1,12148:10523651,42929657:18166500,9062689,0 +(1,12148:10523651,42929657:18167381,9062712,0 +(1,12148:10523651,42929657:18167381,9062712,0 +(1,12148:10523651,42929657:0,9062712,0 +(1,12148:10523651,42929657:0,14155776,0 +(1,12148:10523651,42929657:28377088,14155776,0 +) +k1,12148:10523651,42929657:-28377088 +) +) +g1,12148:28691032,42929657 +) +) +) +g1,12149:28690151,42929657 +k1,12149:32583029,42929657:3892878 +) +v1,12157:6630773,44295433:0,393216,0 +] +(1,12158:32583029,45706769:0,0,0 +g1,12158:32583029,45706769 +) +) +] +(1,12158:6630773,47279633:25952256,0,0 +h1,12158:6630773,47279633:25952256,0,0 +) +] +h1,12158:4262630,4025873:0,0,0 +] +!16377 +}230 +Input:1537:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1538:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1539:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1540:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1541:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1542:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1543:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1544:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1545:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1546:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1547:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1548:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1549:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1550:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1551:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1552:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1553:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1554:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1555:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1760 +{231 +[1,12196:4262630,47279633:28320399,43253760,0 +(1,12196:4262630,4025873:0,0,0 +[1,12196:-473657,4025873:25952256,0,0 +(1,12196:-473657,-710414:25952256,0,0 +h1,12196:-473657,-710414:0,0,0 +(1,12196:-473657,-710414:0,0,0 +(1,12196:-473657,-710414:0,0,0 +g1,12196:-473657,-710414 +(1,12196:-473657,-710414:65781,0,65781 +g1,12196:-407876,-710414 +[1,12196:-407876,-644633:0,0,0 +] +) +k1,12196:-473657,-710414:-65781 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12199:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,12196:25478599,-710414:25952256 +g1,12196:25478599,-710414 ) ] ) +[1,12196:6630773,47279633:25952256,43253760,0 +[1,12196:6630773,4812305:25952256,786432,0 +(1,12196:6630773,4812305:25952256,513147,134348 +(1,12196:6630773,4812305:25952256,513147,134348 +g1,12196:3078558,4812305 +[1,12196:3078558,4812305:0,0,0 +(1,12196:3078558,2439708:0,1703936,0 +k1,12196:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12196:2537886,2439708:1179648,16384,0 ) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12196:3078558,1915420:16384,1179648,0 +) +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] -[1,12199:3078558,4812305:0,0,0 -(1,12199:3078558,49800853:0,16384,2228224 -g1,12199:29030814,49800853 -g1,12199:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12199:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +) ) ] +[1,12196:3078558,4812305:0,0,0 +(1,12196:3078558,2439708:0,1703936,0 +g1,12196:29030814,2439708 +g1,12196:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12196:36151628,1915420:16384,1179648,0 ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12199:37855564,49800853:1179648,16384,0 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) +] ) -k1,12199:3078556,49800853:-34777008 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12196:37855564,2439708:1179648,16384,0 ) -] -g1,12199:6630773,4812305 -k1,12199:25712890,4812305:17886740 -g1,12199:29057847,4812305 -g1,12199:29873114,4812305 ) +k1,12196:3078556,2439708:-34777008 ) ] -[1,12199:6630773,45706769:25952256,40108032,0 -(1,12199:6630773,45706769:25952256,40108032,0 -(1,12199:6630773,45706769:0,0,0 -g1,12199:6630773,45706769 +[1,12196:3078558,4812305:0,0,0 +(1,12196:3078558,49800853:0,16384,2228224 +k1,12196:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12196:2537886,49800853:1179648,16384,0 ) -[1,12199:6630773,45706769:25952256,40108032,0 -(1,12161:6630773,14661426:25952256,9062689,0 -k1,12161:10523651,14661426:3892878 -h1,12160:10523651,14661426:0,0,0 -(1,12160:10523651,14661426:18166500,9062689,0 -(1,12160:10523651,14661426:18167381,9062712,0 -(1,12160:10523651,14661426:18167381,9062712,0 -(1,12160:10523651,14661426:0,9062712,0 -(1,12160:10523651,14661426:0,14155776,0 -(1,12160:10523651,14661426:28377088,14155776,0 -) -k1,12160:10523651,14661426:-28377088 -) -) -g1,12160:28691032,14661426 -) -) -) -g1,12161:28690151,14661426 -k1,12161:32583029,14661426:3892878 -) -v1,12169:6630773,16027202:0,393216,0 -(1,12170:6630773,21677348:25952256,6043362,616038 -g1,12170:6630773,21677348 -(1,12170:6630773,21677348:25952256,6043362,616038 -(1,12170:6630773,22293386:25952256,6659400,0 -[1,12170:6630773,22293386:25952256,6659400,0 -(1,12170:6630773,22267172:25952256,6606972,0 -r1,12170:6656987,22267172:26214,6606972,0 -[1,12170:6656987,22267172:25899828,6606972,0 -(1,12170:6656987,21677348:25899828,5427324,0 -[1,12170:7246811,21677348:24720180,5427324,0 -(1,12170:7246811,17335560:24720180,1085536,298548 -(1,12169:7246811,17335560:0,1085536,298548 -r1,12170:8753226,17335560:1506415,1384084,298548 -k1,12169:7246811,17335560:-1506415 -) -(1,12169:7246811,17335560:1506415,1085536,298548 -) -k1,12169:8887734,17335560:134508 -k1,12169:10256284,17335560:134507 -k1,12169:11998390,17335560:134508 -k1,12169:13124457,17335560:134507 -k1,12169:14860665,17335560:134508 -k1,12169:16972393,17335560:134507 -k1,12169:18804939,17335560:134508 -k1,12169:19958532,17335560:134508 -k1,12169:21587260,17335560:134507 -k1,12169:24054194,17335560:134508 -k1,12169:24847993,17335560:134507 -k1,12169:29054253,17335560:134508 -k1,12169:29720257,17335560:134507 -k1,12169:30921036,17335560:134508 -k1,12169:31966991,17335560:0 -) -(1,12170:7246811,18177048:24720180,505283,134348 -k1,12169:9015508,18177048:189935 -k1,12169:12307263,18177048:189936 -k1,12169:13904911,18177048:189935 -k1,12169:16538028,18177048:189935 -k1,12169:17773918,18177048:189935 -k1,12169:20834986,18177048:189936 -k1,12169:22216366,18177048:189935 -k1,12169:23425386,18177048:189935 -k1,12169:24992888,18177048:189935 -k1,12169:27897325,18177048:189936 -k1,12169:29424194,18177048:189935 -k1,12169:31966991,18177048:0 -) -(1,12170:7246811,19018536:24720180,505283,134348 -k1,12169:9281194,19018536:251148 -k1,12169:11901469,19018536:251148 -k1,12169:12684115,19018536:251149 -k1,12169:16139974,19018536:251148 -k1,12169:18749763,19018536:251148 -k1,12169:20019996,19018536:251148 -k1,12169:23292355,19018536:251149 -k1,12169:28772621,19018536:251148 -k1,12169:29785297,19018536:251148 -k1,12169:31966991,19018536:0 -) -(1,12170:7246811,19860024:24720180,505283,115847 -k1,12169:8489810,19860024:223914 -(1,12169:8489810,19860024:0,452978,115847 -r1,12170:10254923,19860024:1765113,568825,115847 -k1,12169:8489810,19860024:-1765113 -) -(1,12169:8489810,19860024:1765113,452978,115847 -k1,12169:8489810,19860024:3277 -h1,12169:10251646,19860024:0,411205,112570 -) -k1,12169:10478837,19860024:223914 -k1,12169:13547014,19860024:223914 -k1,12169:14422355,19860024:223913 -k1,12169:15002129,19860024:223914 -k1,12169:17983798,19860024:223914 -k1,12169:19888055,19860024:223914 -k1,12169:22464056,19860024:223914 -k1,12169:24130417,19860024:223914 -k1,12169:25684711,19860024:223913 -k1,12169:27012907,19860024:223914 -k1,12169:28952554,19860024:223914 -k1,12169:30195553,19860024:223914 -k1,12170:31966991,19860024:0 -) -(1,12170:7246811,20701512:24720180,513147,134348 -k1,12169:8696412,20701512:182135 -k1,12169:9494586,20701512:182136 -k1,12169:12009147,20701512:182135 -k1,12169:14061681,20701512:182136 -k1,12169:14895244,20701512:182135 -k1,12169:18578968,20701512:182135 -k1,12169:20544339,20701512:182136 -k1,12169:21745559,20701512:182135 -k1,12169:24413476,20701512:182136 -k1,12169:25254903,20701512:182135 -k1,12169:29508791,20701512:182136 -k1,12169:30222423,20701512:182135 -k1,12169:31966991,20701512:0 -) -(1,12170:7246811,21543000:24720180,513147,134348 -g1,12169:10261467,21543000 -g1,12169:12793122,21543000 -g1,12169:14599949,21543000 -g1,12169:16979561,21543000 -g1,12169:17926556,21543000 -k1,12170:31966991,21543000:10853419 -g1,12170:31966991,21543000 -) -] -) -] -r1,12170:32583029,22267172:26214,6606972,0 -) -] -) -) -g1,12170:32583029,21677348 -) -h1,12170:6630773,22293386:0,0,0 -(1,12173:6630773,24908934:25952256,555811,12975 -(1,12173:6630773,24908934:2450326,534184,12975 -g1,12173:6630773,24908934 -g1,12173:9081099,24908934 -) -g1,12173:10837923,24908934 -g1,12173:12405151,24908934 -k1,12173:32583029,24908934:18638044 -g1,12173:32583029,24908934 -) -(1,12177:6630773,26143638:25952256,513147,126483 -k1,12176:7927114,26143638:254319 -k1,12176:9349940,26143638:254319 -k1,12176:11211857,26143638:254319 -k1,12176:12334528,26143638:254319 -k1,12176:13681331,26143638:254318 -(1,12176:13681331,26143638:0,452978,122846 -r1,12176:17556715,26143638:3875384,575824,122846 -k1,12176:13681331,26143638:-3875384 -) -(1,12176:13681331,26143638:3875384,452978,122846 -k1,12176:13681331,26143638:3277 -h1,12176:17553438,26143638:0,411205,112570 -) -k1,12176:17984704,26143638:254319 -k1,12176:19435710,26143638:254319 -(1,12176:19435710,26143638:0,452978,115847 -r1,12176:20849111,26143638:1413401,568825,115847 -k1,12176:19435710,26143638:-1413401 -) -(1,12176:19435710,26143638:1413401,452978,115847 -k1,12176:19435710,26143638:3277 -h1,12176:20845834,26143638:0,411205,112570 -) -k1,12176:21103430,26143638:254319 -k1,12176:22017041,26143638:254319 -k1,12176:22627220,26143638:254319 -k1,12176:24050046,26143638:254319 -k1,12176:24835862,26143638:254319 -k1,12176:25878578,26143638:254318 -k1,12176:29328432,26143638:254319 -k1,12176:30774196,26143638:254319 -k1,12176:31714677,26143638:254319 -k1,12176:32583029,26143638:0 -) -(1,12177:6630773,26985126:25952256,513147,126483 -k1,12176:8092287,26985126:270069 -(1,12176:8092287,26985126:0,452978,115847 -r1,12176:9857400,26985126:1765113,568825,115847 -k1,12176:8092287,26985126:-1765113 -) -(1,12176:8092287,26985126:1765113,452978,115847 -k1,12176:8092287,26985126:3277 -h1,12176:9854123,26985126:0,411205,112570 -) -k1,12176:10127469,26985126:270069 -k1,12176:11345188,26985126:270068 -k1,12176:13807436,26985126:270069 -k1,12176:14945857,26985126:270069 -k1,12176:16691141,26985126:270069 -(1,12176:16691141,26985126:0,452978,115847 -r1,12176:19511390,26985126:2820249,568825,115847 -k1,12176:16691141,26985126:-2820249 -) -(1,12176:16691141,26985126:2820249,452978,115847 -k1,12176:16691141,26985126:3277 -h1,12176:19508113,26985126:0,411205,112570 -) -k1,12176:19781459,26985126:270069 -k1,12176:20999178,26985126:270068 -k1,12176:22941726,26985126:270069 -k1,12176:23839630,26985126:270069 -k1,12176:24465559,26985126:270069 -k1,12176:25904134,26985126:270068 -k1,12176:27625170,26985126:270069 -k1,12176:31966991,26985126:270069 -k1,12176:32583029,26985126:0 -) -(1,12177:6630773,27826614:25952256,513147,134348 -k1,12176:10226229,27826614:269504 -k1,12176:12029931,27826614:269504 -k1,12176:12958727,27826614:269504 -k1,12176:14247317,27826614:269505 -k1,12176:15906184,27826614:269504 -k1,12176:18225654,27826614:269504 -k1,12176:19178043,27826614:269504 -k1,12176:20466632,27826614:269504 -k1,12176:22816249,27826614:269504 -k1,12176:27709319,27826614:269505 -k1,12176:28630251,27826614:269504 -k1,12176:29255615,27826614:269504 -k1,12176:31591469,27826614:269504 -k1,12176:32583029,27826614:0 -) -(1,12177:6630773,28668102:25952256,513147,134348 -k1,12176:8803466,28668102:167291 -k1,12176:9732285,28668102:167291 -k1,12176:12378147,28668102:167290 -k1,12176:14217917,28668102:167291 -k1,12176:15338757,28668102:167291 -k1,12176:16598533,28668102:167291 -k1,12176:17121684,28668102:167291 -k1,12176:20051317,28668102:167290 -k1,12176:21607971,28668102:167291 -k1,12176:22709805,28668102:167291 -k1,12176:25635506,28668102:167291 -k1,12176:26418835,28668102:167291 -k1,12176:27174638,28668102:167290 -(1,12176:27174638,28668102:0,414482,122846 -r1,12176:29291463,28668102:2116825,537328,122846 -k1,12176:27174638,28668102:-2116825 -) -(1,12176:27174638,28668102:2116825,414482,122846 -k1,12176:27174638,28668102:3277 -h1,12176:29288186,28668102:0,411205,112570 -) -k1,12176:29632424,28668102:167291 -k1,12176:31193666,28668102:167291 -k1,12176:32583029,28668102:0 -) -(1,12177:6630773,29509590:25952256,513147,134348 -g1,12176:7639372,29509590 -g1,12176:8857686,29509590 -g1,12176:11306766,29509590 -g1,12176:12165287,29509590 -g1,12176:13499600,29509590 -g1,12176:15873969,29509590 -g1,12176:17817111,29509590 -g1,12176:19066227,29509590 -g1,12176:20284541,29509590 -g1,12176:21871823,29509590 -g1,12176:23569205,29509590 -g1,12176:24716085,29509590 -(1,12176:24716085,29509590:0,414482,122846 -r1,12176:26832910,29509590:2116825,537328,122846 -k1,12176:24716085,29509590:-2116825 -) -(1,12176:24716085,29509590:2116825,414482,122846 -k1,12176:24716085,29509590:3277 -h1,12176:26829633,29509590:0,411205,112570 -) -g1,12176:27032139,29509590 -g1,12176:28179019,29509590 -k1,12177:32583029,29509590:2112871 -g1,12177:32583029,29509590 -) -v1,12180:6630773,30700056:0,393216,0 -(1,12186:6630773,32347508:25952256,2040668,196608 -g1,12186:6630773,32347508 -g1,12186:6630773,32347508 -g1,12186:6434165,32347508 -(1,12186:6434165,32347508:0,2040668,196608 -r1,12186:32779637,32347508:26345472,2237276,196608 -k1,12186:6434165,32347508:-26345472 -) -(1,12186:6434165,32347508:26345472,2040668,196608 -[1,12186:6630773,32347508:25952256,1844060,0 -(1,12182:6630773,30907674:25952256,404226,107478 -(1,12181:6630773,30907674:0,0,0 -g1,12181:6630773,30907674 -g1,12181:6630773,30907674 -g1,12181:6303093,30907674 -(1,12181:6303093,30907674:0,0,0 -) -g1,12181:6630773,30907674 -) -k1,12182:6630773,30907674:0 -g1,12182:10424522,30907674 -g1,12182:11056814,30907674 -k1,12182:11056814,30907674:0 -h1,12182:13269834,30907674:0,0,0 -k1,12182:32583030,30907674:19313196 -g1,12182:32583030,30907674 -) -(1,12183:6630773,31573852:25952256,410518,107478 -h1,12183:6630773,31573852:0,0,0 -g1,12183:6946919,31573852 -g1,12183:7263065,31573852 -g1,12183:7579211,31573852 -g1,12183:7895357,31573852 -g1,12183:8211503,31573852 -g1,12183:8527649,31573852 -g1,12183:8843795,31573852 -g1,12183:10740670,31573852 -g1,12183:11372962,31573852 -g1,12183:12953691,31573852 -g1,12183:13585983,31573852 -g1,12183:14218275,31573852 -g1,12183:18960461,31573852 -g1,12183:21805772,31573852 -g1,12183:22438064,31573852 -g1,12183:24651084,31573852 -h1,12183:24967230,31573852:0,0,0 -k1,12183:32583029,31573852:7615799 -g1,12183:32583029,31573852 -) -(1,12184:6630773,32240030:25952256,404226,107478 -h1,12184:6630773,32240030:0,0,0 -g1,12184:6946919,32240030 -g1,12184:7263065,32240030 -k1,12184:7263065,32240030:0 -h1,12184:10740667,32240030:0,0,0 -k1,12184:32583029,32240030:21842362 -g1,12184:32583029,32240030 -) -] -) -g1,12186:32583029,32347508 -g1,12186:6630773,32347508 -g1,12186:6630773,32347508 -g1,12186:32583029,32347508 -g1,12186:32583029,32347508 -) -h1,12186:6630773,32544116:0,0,0 -(1,12189:6630773,42196629:25952256,9062689,0 -k1,12189:10523651,42196629:3892878 -h1,12188:10523651,42196629:0,0,0 -(1,12188:10523651,42196629:18166500,9062689,0 -(1,12188:10523651,42196629:18167381,9062712,0 -(1,12188:10523651,42196629:18167381,9062712,0 -(1,12188:10523651,42196629:0,9062712,0 -(1,12188:10523651,42196629:0,14155776,0 -(1,12188:10523651,42196629:28377088,14155776,0 -) -k1,12188:10523651,42196629:-28377088 -) -) -g1,12188:28691032,42196629 -) -) -) -g1,12189:28690151,42196629 -k1,12189:32583029,42196629:3892878 -) -(1,12199:6630773,43038117:25952256,513147,134348 -h1,12198:6630773,43038117:983040,0,0 -k1,12198:10173376,43038117:220583 -k1,12198:11053252,43038117:220584 -k1,12198:13850055,43038117:220583 -k1,12198:14426498,43038117:220583 -k1,12198:15815588,43038117:220583 -k1,12198:18263741,43038117:220584 -k1,12198:19503409,43038117:220583 -k1,12198:23049944,43038117:220583 -k1,12198:27515949,43038117:220583 -k1,12198:28604885,43038117:220584 -k1,12198:30162402,43038117:220583 -k1,12198:31931601,43038117:220583 -k1,12198:32583029,43038117:0 -) -(1,12199:6630773,43879605:25952256,513147,134348 -k1,12198:8384898,43879605:168154 -k1,12198:8908913,43879605:168155 -k1,12198:13292998,43879605:168154 -k1,12198:17321224,43879605:168155 -k1,12198:20180286,43879605:168154 -k1,12198:21296092,43879605:168155 -k1,12198:22915868,43879605:168154 -k1,12198:26825473,43879605:168155 -k1,12198:27676512,43879605:168154 -k1,12198:29048563,43879605:168155 -k1,12198:29832755,43879605:168154 -k1,12198:31019995,43879605:168155 -k1,12198:32583029,43879605:0 -) -(1,12199:6630773,44721093:25952256,505283,126483 -k1,12198:7490415,44721093:231807 -k1,12198:8925462,44721093:231806 -k1,12198:10524350,44721093:231807 -k1,12198:11624509,44721093:231807 -k1,12198:12948800,44721093:231806 -(1,12198:12948800,44721093:0,452978,122846 -r1,12198:17879320,44721093:4930520,575824,122846 -k1,12198:12948800,44721093:-4930520 -) -(1,12198:12948800,44721093:4930520,452978,122846 -k1,12198:12948800,44721093:3277 -h1,12198:17876043,44721093:0,411205,112570 -) -k1,12198:18111127,44721093:231807 -k1,12198:20228405,44721093:231807 -k1,12198:22838513,44721093:231806 -(1,12198:22838513,44721093:0,414482,115847 -r1,12198:23196779,44721093:358266,530329,115847 -k1,12198:22838513,44721093:-358266 -) -(1,12198:22838513,44721093:358266,414482,115847 -k1,12198:22838513,44721093:3277 -h1,12198:23193502,44721093:0,411205,112570 -) -k1,12198:23602256,44721093:231807 -(1,12198:23602256,44721093:0,452978,115847 -r1,12198:25015657,44721093:1413401,568825,115847 -k1,12198:23602256,44721093:-1413401 -) -(1,12198:23602256,44721093:1413401,452978,115847 -k1,12198:23602256,44721093:3277 -h1,12198:25012380,44721093:0,411205,112570 -) -k1,12198:25421133,44721093:231806 -(1,12198:25421133,44721093:0,414482,115847 -r1,12198:25779399,44721093:358266,530329,115847 -k1,12198:25421133,44721093:-358266 -) -(1,12198:25421133,44721093:358266,414482,115847 -k1,12198:25421133,44721093:3277 -h1,12198:25776122,44721093:0,411205,112570 -) -k1,12198:26011206,44721093:231807 -k1,12198:27434458,44721093:231807 -(1,12198:27434458,44721093:0,452978,115847 -r1,12198:28847859,44721093:1413401,568825,115847 -k1,12198:27434458,44721093:-1413401 -) -(1,12198:27434458,44721093:1413401,452978,115847 -k1,12198:27434458,44721093:3277 -h1,12198:28844582,44721093:0,411205,112570 -) -k1,12198:29079665,44721093:231806 -k1,12198:29997634,44721093:231807 -k1,12198:32583029,44721093:0 -) -(1,12199:6630773,45562581:25952256,505283,126483 -k1,12198:10130327,45562581:151320 -(1,12198:10130327,45562581:0,452978,122846 -r1,12198:14357423,45562581:4227096,575824,122846 -k1,12198:10130327,45562581:-4227096 -) -(1,12198:10130327,45562581:4227096,452978,122846 -k1,12198:10130327,45562581:3277 -h1,12198:14354146,45562581:0,411205,112570 -) -k1,12198:14508743,45562581:151320 -k1,12198:16576336,45562581:151320 -k1,12198:18889689,45562581:151320 -k1,12198:20713488,45562581:151320 -k1,12198:22056253,45562581:151320 -k1,12198:23226658,45562581:151320 -k1,12198:26608903,45562581:151320 -k1,12198:29048085,45562581:151320 -k1,12198:31391584,45562581:151320 -k1,12198:32583029,45562581:0 -) -] -(1,12199:32583029,45706769:0,0,0 -g1,12199:32583029,45706769 -) -) -] -(1,12199:6630773,47279633:25952256,0,0 -h1,12199:6630773,47279633:25952256,0,0 -) -] -h1,12199:4262630,4025873:0,0,0 -] -!18174 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12196:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,12196:3078558,4812305:0,0,0 +(1,12196:3078558,49800853:0,16384,2228224 +g1,12196:29030814,49800853 +g1,12196:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12196:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12196:37855564,49800853:1179648,16384,0 +) +) +k1,12196:3078556,49800853:-34777008 +) +] +g1,12196:6630773,4812305 +k1,12196:25712890,4812305:17886740 +g1,12196:29057847,4812305 +g1,12196:29873114,4812305 +) +) +] +[1,12196:6630773,45706769:25952256,40108032,0 +(1,12196:6630773,45706769:25952256,40108032,0 +(1,12196:6630773,45706769:0,0,0 +g1,12196:6630773,45706769 +) +[1,12196:6630773,45706769:25952256,40108032,0 +v1,12158:6630773,6254097:0,393216,0 +(1,12158:6630773,10938108:25952256,5077227,616038 +g1,12158:6630773,10938108 +(1,12158:6630773,10938108:25952256,5077227,616038 +(1,12158:6630773,11554146:25952256,5693265,0 +[1,12158:6630773,11554146:25952256,5693265,0 +(1,12158:6630773,11527932:25952256,5640837,0 +r1,12158:6656987,11527932:26214,5640837,0 +[1,12158:6656987,11527932:25899828,5640837,0 +(1,12158:6656987,10938108:25899828,4461189,0 +[1,12158:7246811,10938108:24720180,4461189,0 +(1,12158:7246811,7564293:24720180,1087374,134348 +k1,12157:8622807,7564293:166293 +k1,12157:10086712,7564293:166292 +k1,12157:11646956,7564293:166293 +k1,12157:12832334,7564293:166293 +k1,12157:14494814,7564293:166293 +k1,12157:15277144,7564293:166292 +k1,12157:16462522,7564293:166293 +k1,12157:18599483,7564293:166293 +k1,12157:20794771,7564293:166293 +k1,12157:23472403,7564293:166292 +k1,12157:24321581,7564293:166293 +k1,12157:26728550,7564293:166293 +k1,12157:28346465,7564293:166293 +k1,12157:29172049,7564293:166292 +k1,12157:30357427,7564293:166293 +k1,12158:31966991,7564293:0 +) +(1,12158:7246811,8405781:24720180,505283,134348 +k1,12157:9252962,8405781:264859 +k1,12157:10709266,8405781:264859 +k1,12157:11993210,8405781:264859 +k1,12157:14003948,8405781:264859 +k1,12157:16563878,8405781:264859 +k1,12157:17847822,8405781:264859 +k1,12157:19395876,8405781:264859 +k1,12157:21111701,8405781:264858 +k1,12157:22568005,8405781:264859 +k1,12157:25593240,8405781:264859 +k1,12157:26316196,8405781:264859 +k1,12157:27232483,8405781:264859 +k1,12157:28516427,8405781:264859 +k1,12157:29937996,8405781:264859 +k1,12157:31966991,8405781:0 +) +(1,12158:7246811,9247269:24720180,505283,134348 +k1,12157:10321050,9247269:174271 +k1,12157:12828403,9247269:174271 +k1,12157:14396625,9247269:174271 +k1,12157:15589981,9247269:174271 +k1,12157:17260439,9247269:174271 +k1,12157:18927620,9247269:174271 +k1,12157:20272364,9247269:174271 +k1,12157:21438195,9247269:174271 +k1,12157:22993310,9247269:174271 +k1,12157:24338054,9247269:174271 +k1,12157:28177098,9247269:174271 +k1,12157:29899985,9247269:174271 +k1,12158:31966991,9247269:0 +) +(1,12158:7246811,10088757:24720180,513147,134348 +k1,12157:8573109,10088757:230536 +k1,12157:11342509,10088757:230535 +k1,12157:12189083,10088757:230536 +k1,12157:13438703,10088757:230535 +k1,12157:14946536,10088757:230536 +k1,12157:15708568,10088757:230535 +k1,12157:17904529,10088757:230536 +k1,12157:18817949,10088757:230535 +k1,12157:21883572,10088757:230536 +k1,12157:22875635,10088757:230535 +k1,12157:24557793,10088757:230536 +k1,12157:27981242,10088757:230535 +k1,12157:31284106,10088757:230536 +k1,12157:31966991,10088757:0 +) +(1,12158:7246811,10930245:24720180,505283,7863 +g1,12157:9670987,10930245 +g1,12157:10486254,10930245 +g1,12157:11704568,10930245 +g1,12157:13399984,10930245 +k1,12158:31966991,10930245:15206976 +g1,12158:31966991,10930245 +) +] +) +] +r1,12158:32583029,11527932:26214,5640837,0 +) +] +) +) +g1,12158:32583029,10938108 +) +h1,12158:6630773,11554146:0,0,0 +(1,12162:6630773,12919922:25952256,505283,134348 +h1,12161:6630773,12919922:983040,0,0 +k1,12161:8341645,12919922:257939 +k1,12161:9131080,12919922:257938 +k1,12161:12166435,12919922:257939 +k1,12161:13075802,12919922:257939 +k1,12161:14919711,12919922:257938 +k1,12161:16784593,12919922:257939 +k1,12161:18417477,12919922:257939 +k1,12161:21355838,12919922:257938 +k1,12161:23007728,12919922:257939 +k1,12161:25284176,12919922:257939 +k1,12161:29573889,12919922:257938 +k1,12161:31900144,12919922:257939 +k1,12161:32583029,12919922:0 +) +(1,12162:6630773,13761410:25952256,513147,122846 +k1,12161:9565450,13761410:244424 +k1,12161:10469166,13761410:244424 +k1,12161:14785342,13761410:244424 +k1,12161:16221211,13761410:244424 +(1,12161:16221211,13761410:0,452978,122846 +r1,12161:22206866,13761410:5985655,575824,122846 +k1,12161:16221211,13761410:-5985655 +) +(1,12161:16221211,13761410:5985655,452978,122846 +k1,12161:16221211,13761410:3277 +h1,12161:22203589,13761410:0,411205,112570 +) +k1,12161:22451290,13761410:244424 +k1,12161:25383344,13761410:244423 +k1,12161:26831009,13761410:244424 +k1,12161:28411057,13761410:244424 +k1,12161:30510150,13761410:244424 +k1,12161:31563944,13761410:244424 +k1,12161:32583029,13761410:0 +) +(1,12162:6630773,14602898:25952256,513147,134348 +k1,12161:8915712,14602898:274294 +k1,12161:11775401,14602898:274294 +k1,12161:12701123,14602898:274294 +k1,12161:13994502,14602898:274294 +(1,12161:13994502,14602898:0,414482,115847 +r1,12161:14352768,14602898:358266,530329,115847 +k1,12161:13994502,14602898:-358266 +) +(1,12161:13994502,14602898:358266,414482,115847 +k1,12161:13994502,14602898:3277 +h1,12161:14349491,14602898:0,411205,112570 +) +k1,12161:14800732,14602898:274294 +(1,12161:14800732,14602898:0,414482,115847 +r1,12161:15158998,14602898:358266,530329,115847 +k1,12161:14800732,14602898:-358266 +) +(1,12161:14800732,14602898:358266,414482,115847 +k1,12161:14800732,14602898:3277 +h1,12161:15155721,14602898:0,411205,112570 +) +k1,12161:15606962,14602898:274294 +(1,12161:15606962,14602898:0,452978,115847 +r1,12161:17020363,14602898:1413401,568825,115847 +k1,12161:15606962,14602898:-1413401 +) +(1,12161:15606962,14602898:1413401,452978,115847 +k1,12161:15606962,14602898:3277 +h1,12161:17017086,14602898:0,411205,112570 +) +k1,12161:17294657,14602898:274294 +k1,12161:18760396,14602898:274294 +(1,12161:18760396,14602898:0,414482,115847 +r1,12161:20173797,14602898:1413401,530329,115847 +k1,12161:18760396,14602898:-1413401 +) +(1,12161:18760396,14602898:1413401,414482,115847 +k1,12161:18760396,14602898:3277 +h1,12161:20170520,14602898:0,411205,112570 +) +k1,12161:20621761,14602898:274294 +k1,12161:22631448,14602898:274294 +(1,12161:22631448,14602898:0,414482,115847 +r1,12161:22989714,14602898:358266,530329,115847 +k1,12161:22631448,14602898:-358266 +) +(1,12161:22631448,14602898:358266,414482,115847 +k1,12161:22631448,14602898:3277 +h1,12161:22986437,14602898:0,411205,112570 +) +k1,12161:23264008,14602898:274294 +k1,12161:24485953,14602898:274294 +k1,12161:25779332,14602898:274294 +k1,12161:28667857,14602898:274294 +k1,12161:29601443,14602898:274294 +k1,12161:30894822,14602898:274294 +k1,12161:32583029,14602898:0 +) +(1,12162:6630773,15444386:25952256,513147,134348 +k1,12161:8003169,15444386:180951 +(1,12161:8003169,15444386:0,452978,115847 +r1,12161:9416570,15444386:1413401,568825,115847 +k1,12161:8003169,15444386:-1413401 +) +(1,12161:8003169,15444386:1413401,452978,115847 +k1,12161:8003169,15444386:3277 +h1,12161:9413293,15444386:0,411205,112570 +) +k1,12161:9597521,15444386:180951 +k1,12161:10969917,15444386:180951 +(1,12161:10969917,15444386:0,414482,115847 +r1,12161:12383318,15444386:1413401,530329,115847 +k1,12161:10969917,15444386:-1413401 +) +(1,12161:10969917,15444386:1413401,414482,115847 +k1,12161:10969917,15444386:3277 +h1,12161:12380041,15444386:0,411205,112570 +) +k1,12161:12564269,15444386:180951 +k1,12161:13692871,15444386:180951 +k1,12161:14892907,15444386:180951 +k1,12161:18018391,15444386:180951 +k1,12161:18858634,15444386:180951 +k1,12161:20058670,15444386:180951 +k1,12161:21752847,15444386:180951 +k1,12161:22593090,15444386:180951 +k1,12161:23793126,15444386:180951 +k1,12161:25142584,15444386:180951 +k1,12161:28014443,15444386:180951 +k1,12161:32227169,15444386:180951 +k1,12161:32583029,15444386:0 +) +(1,12162:6630773,16285874:25952256,505283,134348 +k1,12161:8720012,16285874:134955 +k1,12161:10205010,16285874:134956 +k1,12161:12041935,16285874:134955 +k1,12161:15767608,16285874:134956 +(1,12161:15767608,16285874:0,452978,122846 +r1,12161:19994704,16285874:4227096,575824,122846 +k1,12161:15767608,16285874:-4227096 +) +(1,12161:15767608,16285874:4227096,452978,122846 +k1,12161:15767608,16285874:3277 +h1,12161:19991427,16285874:0,411205,112570 +) +k1,12161:20129659,16285874:134955 +k1,12161:21456059,16285874:134955 +(1,12161:21456059,16285874:0,452978,122846 +r1,12161:26034867,16285874:4578808,575824,122846 +k1,12161:21456059,16285874:-4578808 +) +(1,12161:21456059,16285874:4578808,452978,122846 +k1,12161:21456059,16285874:3277 +h1,12161:26031590,16285874:0,411205,112570 +) +k1,12161:26169823,16285874:134956 +k1,12161:27890749,16285874:134955 +k1,12161:29401306,16285874:134956 +k1,12161:29892121,16285874:134955 +k1,12161:32583029,16285874:0 +) +(1,12162:6630773,17127362:25952256,513147,134348 +k1,12161:7542105,17127362:228447 +k1,12161:8126413,17127362:228448 +k1,12161:11045768,17127362:228447 +k1,12161:12668167,17127362:228448 +k1,12161:15195617,17127362:228447 +k1,12161:17110962,17127362:228448 +k1,12161:18897200,17127362:228447 +k1,12161:20117207,17127362:228447 +k1,12161:23650636,17127362:228448 +k1,12161:25392309,17127362:228447 +k1,12161:28301180,17127362:228448 +k1,12161:29923578,17127362:228447 +k1,12162:32583029,17127362:0 +) +(1,12162:6630773,17968850:25952256,513147,126483 +k1,12161:8534032,17968850:205221 +k1,12161:12247395,17968850:205221 +k1,12161:13444177,17968850:205222 +k1,12161:16878357,17968850:205221 +k1,12161:17892948,17968850:205221 +k1,12161:19117254,17968850:205221 +k1,12161:20291753,17968850:205222 +k1,12161:21569143,17968850:205221 +k1,12161:22878646,17968850:205221 +k1,12161:24369683,17968850:205221 +k1,12161:25322670,17968850:205221 +k1,12161:27041118,17968850:205222 +k1,12161:29660685,17968850:205221 +k1,12161:31563944,17968850:205221 +k1,12161:32583029,17968850:0 +) +(1,12162:6630773,18810338:25952256,513147,134348 +g1,12161:8219365,18810338 +g1,12161:11926736,18810338 +g1,12161:13117525,18810338 +g1,12161:15354924,18810338 +g1,12161:16170191,18810338 +g1,12161:16725280,18810338 +g1,12161:18313872,18810338 +g1,12161:20389397,18810338 +g1,12161:22793913,18810338 +g1,12161:23679304,18810338 +g1,12161:24649236,18810338 +g1,12161:27920793,18810338 +g1,12161:28771450,18810338 +(1,12161:28771450,18810338:0,452978,115847 +r1,12161:30184851,18810338:1413401,568825,115847 +k1,12161:28771450,18810338:-1413401 +) +(1,12161:28771450,18810338:1413401,452978,115847 +k1,12161:28771450,18810338:3277 +h1,12161:30181574,18810338:0,411205,112570 +) +k1,12162:32583029,18810338:2224508 +g1,12162:32583029,18810338 +) +(1,12163:6630773,20901598:25952256,534184,147783 +(1,12163:6630773,20901598:2450326,534184,0 +g1,12163:6630773,20901598 +g1,12163:9081099,20901598 +) +k1,12163:32583029,20901598:22079602 +g1,12163:32583029,20901598 +) +(1,12168:6630773,22136302:25952256,505283,134348 +k1,12166:9038616,22136302:231392 +k1,12166:10347421,22136302:231393 +k1,12166:12186411,22136302:231392 +k1,12166:13409364,22136302:231393 +k1,12166:15153982,22136302:231392 +k1,12166:16146902,22136302:231392 +k1,12166:20108604,22136302:231393 +k1,12166:22678976,22136302:231392 +k1,12166:24290556,22136302:231392 +k1,12166:25513509,22136302:231393 +k1,12166:28032108,22136302:231392 +k1,12166:29034204,22136302:231393 +k1,12166:31931601,22136302:231392 +k1,12166:32583029,22136302:0 +) +(1,12168:6630773,22977790:25952256,513147,126483 +k1,12166:8995279,22977790:195264 +k1,12166:10971813,22977790:195265 +k1,12166:12069508,22977790:195264 +k1,12166:14926190,22977790:195265 +k1,12166:15780746,22977790:195264 +k1,12166:16995096,22977790:195265 +k1,12166:18282845,22977790:195264 +k1,12166:19145266,22977790:195265 +(1,12166:19145266,22977790:0,452978,122846 +r1,12166:22668938,22977790:3523672,575824,122846 +k1,12166:19145266,22977790:-3523672 +) +(1,12166:19145266,22977790:3523672,452978,122846 +k1,12166:19145266,22977790:3277 +h1,12166:22665661,22977790:0,411205,112570 +) +k1,12166:22864202,22977790:195264 +k1,12166:25548524,22977790:195265 +k1,12166:27301579,22977790:195264 +k1,12166:29212577,22977790:195265 +k1,12166:29865938,22977790:195264 +k1,12166:31931601,22977790:195265 +k1,12166:32583029,22977790:0 +) +(1,12168:6630773,23819278:25952256,513147,138281 +g1,12166:7854985,23819278 +g1,12166:9073299,23819278 +g1,12166:13053955,23819278 +g1,12166:13912476,23819278 +g1,12166:18183457,23819278 +g1,12167:20127254,23819278 +g1,12167:21345568,23819278 +$1,12167:21345568,23819278 +$1,12167:21848229,23819278 +g1,12167:22260450,23819278 +g1,12167:23651124,23819278 +$1,12167:23651124,23819278 +$1,12167:24202937,23819278 +k1,12168:32583029,23819278:6594891 +g1,12168:32583029,23819278 +) +v1,12170:6630773,25009744:0,393216,0 +(1,12177:6630773,27323374:25952256,2706846,196608 +g1,12177:6630773,27323374 +g1,12177:6630773,27323374 +g1,12177:6434165,27323374 +(1,12177:6434165,27323374:0,2706846,196608 +r1,12177:32779637,27323374:26345472,2903454,196608 +k1,12177:6434165,27323374:-26345472 +) +(1,12177:6434165,27323374:26345472,2706846,196608 +[1,12177:6630773,27323374:25952256,2510238,0 +(1,12172:6630773,25217362:25952256,404226,107478 +(1,12171:6630773,25217362:0,0,0 +g1,12171:6630773,25217362 +g1,12171:6630773,25217362 +g1,12171:6303093,25217362 +(1,12171:6303093,25217362:0,0,0 +) +g1,12171:6630773,25217362 +) +k1,12172:6630773,25217362:0 +g1,12172:10424522,25217362 +g1,12172:11056814,25217362 +k1,12172:11056814,25217362:0 +h1,12172:13269834,25217362:0,0,0 +k1,12172:32583030,25217362:19313196 +g1,12172:32583030,25217362 +) +(1,12173:6630773,25883540:25952256,410518,107478 +h1,12173:6630773,25883540:0,0,0 +g1,12173:6946919,25883540 +g1,12173:7263065,25883540 +g1,12173:7579211,25883540 +g1,12173:7895357,25883540 +g1,12173:8211503,25883540 +g1,12173:8527649,25883540 +g1,12173:8843795,25883540 +g1,12173:10740670,25883540 +g1,12173:11372962,25883540 +g1,12173:13269837,25883540 +g1,12173:13902129,25883540 +g1,12173:14534421,25883540 +g1,12173:16115150,25883540 +g1,12173:18012024,25883540 +g1,12173:18644316,25883540 +g1,12173:23070356,25883540 +h1,12173:23386502,25883540:0,0,0 +k1,12173:32583029,25883540:9196527 +g1,12173:32583029,25883540 +) +(1,12174:6630773,26549718:25952256,404226,107478 +h1,12174:6630773,26549718:0,0,0 +g1,12174:6946919,26549718 +g1,12174:7263065,26549718 +g1,12174:11372959,26549718 +h1,12174:11689105,26549718:0,0,0 +k1,12174:32583029,26549718:20893924 +g1,12174:32583029,26549718 +) +(1,12175:6630773,27215896:25952256,404226,107478 +h1,12175:6630773,27215896:0,0,0 +g1,12175:6946919,27215896 +g1,12175:7263065,27215896 +k1,12175:7263065,27215896:0 +h1,12175:10424521,27215896:0,0,0 +k1,12175:32583029,27215896:22158508 +g1,12175:32583029,27215896 +) +] +) +g1,12177:32583029,27323374 +g1,12177:6630773,27323374 +g1,12177:6630773,27323374 +g1,12177:32583029,27323374 +g1,12177:32583029,27323374 +) +h1,12177:6630773,27519982:0,0,0 +(1,12180:6630773,37172495:25952256,9062689,0 +k1,12180:10523651,37172495:3892878 +h1,12179:10523651,37172495:0,0,0 +(1,12179:10523651,37172495:18166500,9062689,0 +(1,12179:10523651,37172495:18167381,9062712,0 +(1,12179:10523651,37172495:18167381,9062712,0 +(1,12179:10523651,37172495:0,9062712,0 +(1,12179:10523651,37172495:0,14155776,0 +(1,12179:10523651,37172495:28377088,14155776,0 +) +k1,12179:10523651,37172495:-28377088 +) +) +g1,12179:28691032,37172495 +) +) +) +g1,12180:28690151,37172495 +k1,12180:32583029,37172495:3892878 +) +v1,12188:6630773,38538271:0,393216,0 +(1,12189:6630773,44188417:25952256,6043362,616038 +g1,12189:6630773,44188417 +(1,12189:6630773,44188417:25952256,6043362,616038 +(1,12189:6630773,44804455:25952256,6659400,0 +[1,12189:6630773,44804455:25952256,6659400,0 +(1,12189:6630773,44778241:25952256,6606972,0 +r1,12189:6656987,44778241:26214,6606972,0 +[1,12189:6656987,44778241:25899828,6606972,0 +(1,12189:6656987,44188417:25899828,5427324,0 +[1,12189:7246811,44188417:24720180,5427324,0 +(1,12189:7246811,39846629:24720180,1085536,298548 +(1,12188:7246811,39846629:0,1085536,298548 +r1,12189:8753226,39846629:1506415,1384084,298548 +k1,12188:7246811,39846629:-1506415 +) +(1,12188:7246811,39846629:1506415,1085536,298548 +) +k1,12188:8887734,39846629:134508 +k1,12188:10256284,39846629:134507 +k1,12188:11998390,39846629:134508 +k1,12188:13124457,39846629:134507 +k1,12188:14860665,39846629:134508 +k1,12188:16972393,39846629:134507 +k1,12188:18804939,39846629:134508 +k1,12188:19958532,39846629:134508 +k1,12188:21587260,39846629:134507 +k1,12188:24054194,39846629:134508 +k1,12188:24847993,39846629:134507 +k1,12188:29054253,39846629:134508 +k1,12188:29720257,39846629:134507 +k1,12188:30921036,39846629:134508 +k1,12188:31966991,39846629:0 +) +(1,12189:7246811,40688117:24720180,505283,134348 +k1,12188:9015508,40688117:189935 +k1,12188:12307263,40688117:189936 +k1,12188:13904911,40688117:189935 +k1,12188:16538028,40688117:189935 +k1,12188:17773918,40688117:189935 +k1,12188:20834986,40688117:189936 +k1,12188:22216366,40688117:189935 +k1,12188:23425386,40688117:189935 +k1,12188:24992888,40688117:189935 +k1,12188:27897325,40688117:189936 +k1,12188:29424194,40688117:189935 +k1,12188:31966991,40688117:0 +) +(1,12189:7246811,41529605:24720180,505283,134348 +k1,12188:9281194,41529605:251148 +k1,12188:11901469,41529605:251148 +k1,12188:12684115,41529605:251149 +k1,12188:16139974,41529605:251148 +k1,12188:18749763,41529605:251148 +k1,12188:20019996,41529605:251148 +k1,12188:23292355,41529605:251149 +k1,12188:28772621,41529605:251148 +k1,12188:29785297,41529605:251148 +k1,12188:31966991,41529605:0 +) +(1,12189:7246811,42371093:24720180,505283,115847 +k1,12188:8489810,42371093:223914 +(1,12188:8489810,42371093:0,452978,115847 +r1,12189:10254923,42371093:1765113,568825,115847 +k1,12188:8489810,42371093:-1765113 +) +(1,12188:8489810,42371093:1765113,452978,115847 +k1,12188:8489810,42371093:3277 +h1,12188:10251646,42371093:0,411205,112570 +) +k1,12188:10478837,42371093:223914 +k1,12188:13547014,42371093:223914 +k1,12188:14422355,42371093:223913 +k1,12188:15002129,42371093:223914 +k1,12188:17983798,42371093:223914 +k1,12188:19888055,42371093:223914 +k1,12188:22464056,42371093:223914 +k1,12188:24130417,42371093:223914 +k1,12188:25684711,42371093:223913 +k1,12188:27012907,42371093:223914 +k1,12188:28952554,42371093:223914 +k1,12188:30195553,42371093:223914 +k1,12189:31966991,42371093:0 +) +(1,12189:7246811,43212581:24720180,513147,134348 +k1,12188:8696412,43212581:182135 +k1,12188:9494586,43212581:182136 +k1,12188:12009147,43212581:182135 +k1,12188:14061681,43212581:182136 +k1,12188:14895244,43212581:182135 +k1,12188:18578968,43212581:182135 +k1,12188:20544339,43212581:182136 +k1,12188:21745559,43212581:182135 +k1,12188:24413476,43212581:182136 +k1,12188:25254903,43212581:182135 +k1,12188:29508791,43212581:182136 +k1,12188:30222423,43212581:182135 +k1,12188:31966991,43212581:0 +) +(1,12189:7246811,44054069:24720180,513147,134348 +g1,12188:10261467,44054069 +g1,12188:12793122,44054069 +g1,12188:14599949,44054069 +g1,12188:16979561,44054069 +g1,12188:17926556,44054069 +k1,12189:31966991,44054069:10853419 +g1,12189:31966991,44054069 +) +] +) +] +r1,12189:32583029,44778241:26214,6606972,0 +) +] +) +) +g1,12189:32583029,44188417 +) +h1,12189:6630773,44804455:0,0,0 +] +(1,12196:32583029,45706769:0,0,0 +g1,12196:32583029,45706769 +) +) +] +(1,12196:6630773,47279633:25952256,0,0 +h1,12196:6630773,47279633:25952256,0,0 +) +] +h1,12196:4262630,4025873:0,0,0 +] +!21626 }231 -Input:1577:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1578:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1579:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1580:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1581:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1582:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1583:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1584:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1585:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1586:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1587:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1588:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1589:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1590:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1591:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1592:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1593:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1594:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1595:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1596:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1597:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1818 +Input:1556:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1557:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1558:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1559:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1560:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1561:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1562:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1563:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1564:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1565:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1566:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1567:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1568:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1569:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1570:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1571:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1572:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1576 {232 -[1,12254:4262630,47279633:28320399,43253760,0 -(1,12254:4262630,4025873:0,0,0 -[1,12254:-473657,4025873:25952256,0,0 -(1,12254:-473657,-710414:25952256,0,0 -h1,12254:-473657,-710414:0,0,0 -(1,12254:-473657,-710414:0,0,0 -(1,12254:-473657,-710414:0,0,0 -g1,12254:-473657,-710414 -(1,12254:-473657,-710414:65781,0,65781 -g1,12254:-407876,-710414 -[1,12254:-407876,-644633:0,0,0 +[1,12238:4262630,47279633:28320399,43253760,0 +(1,12238:4262630,4025873:0,0,0 +[1,12238:-473657,4025873:25952256,0,0 +(1,12238:-473657,-710414:25952256,0,0 +h1,12238:-473657,-710414:0,0,0 +(1,12238:-473657,-710414:0,0,0 +(1,12238:-473657,-710414:0,0,0 +g1,12238:-473657,-710414 +(1,12238:-473657,-710414:65781,0,65781 +g1,12238:-407876,-710414 +[1,12238:-407876,-644633:0,0,0 ] ) -k1,12254:-473657,-710414:-65781 +k1,12238:-473657,-710414:-65781 ) ) -k1,12254:25478599,-710414:25952256 -g1,12254:25478599,-710414 +k1,12238:25478599,-710414:25952256 +g1,12238:25478599,-710414 ) ] ) -[1,12254:6630773,47279633:25952256,43253760,0 -[1,12254:6630773,4812305:25952256,786432,0 -(1,12254:6630773,4812305:25952256,485622,11795 -(1,12254:6630773,4812305:25952256,485622,11795 -g1,12254:3078558,4812305 -[1,12254:3078558,4812305:0,0,0 -(1,12254:3078558,2439708:0,1703936,0 -k1,12254:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12254:2537886,2439708:1179648,16384,0 +[1,12238:6630773,47279633:25952256,43253760,0 +[1,12238:6630773,4812305:25952256,786432,0 +(1,12238:6630773,4812305:25952256,485622,11795 +(1,12238:6630773,4812305:25952256,485622,11795 +g1,12238:3078558,4812305 +[1,12238:3078558,4812305:0,0,0 +(1,12238:3078558,2439708:0,1703936,0 +k1,12238:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12238:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12254:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12238:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12254:3078558,4812305:0,0,0 -(1,12254:3078558,2439708:0,1703936,0 -g1,12254:29030814,2439708 -g1,12254:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12254:36151628,1915420:16384,1179648,0 +[1,12238:3078558,4812305:0,0,0 +(1,12238:3078558,2439708:0,1703936,0 +g1,12238:29030814,2439708 +g1,12238:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12238:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12254:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12238:37855564,2439708:1179648,16384,0 ) ) -k1,12254:3078556,2439708:-34777008 +k1,12238:3078556,2439708:-34777008 ) ] -[1,12254:3078558,4812305:0,0,0 -(1,12254:3078558,49800853:0,16384,2228224 -k1,12254:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12254:2537886,49800853:1179648,16384,0 +[1,12238:3078558,4812305:0,0,0 +(1,12238:3078558,49800853:0,16384,2228224 +k1,12238:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12238:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12254:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12238:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12254:3078558,4812305:0,0,0 -(1,12254:3078558,49800853:0,16384,2228224 -g1,12254:29030814,49800853 -g1,12254:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12254:36151628,51504789:16384,1179648,0 +[1,12238:3078558,4812305:0,0,0 +(1,12238:3078558,49800853:0,16384,2228224 +g1,12238:29030814,49800853 +g1,12238:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12238:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12254:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12238:37855564,49800853:1179648,16384,0 +) ) +k1,12238:3078556,49800853:-34777008 ) -k1,12254:3078556,49800853:-34777008 -) -] -g1,12254:6630773,4812305 -g1,12254:6630773,4812305 -g1,12254:10347975,4812305 -k1,12254:31387651,4812305:21039676 -) -) -] -[1,12254:6630773,45706769:25952256,40108032,0 -(1,12254:6630773,45706769:25952256,40108032,0 -(1,12254:6630773,45706769:0,0,0 -g1,12254:6630773,45706769 -) -[1,12254:6630773,45706769:25952256,40108032,0 -(1,12199:6630773,6254097:25952256,505283,134348 -k1,12198:8852968,6254097:194511 -k1,12198:10151760,6254097:194510 -k1,12198:11094037,6254097:194511 -k1,12198:14549618,6254097:194510 -k1,12198:17302655,6254097:194511 -k1,12198:20724159,6254097:194511 -k1,12198:24133865,6254097:194510 -k1,12198:26202706,6254097:194511 -k1,12198:27569655,6254097:194510 -k1,12198:31204151,6254097:194511 -k1,12199:32583029,6254097:0 -) -(1,12199:6630773,7095585:25952256,513147,134348 -k1,12198:8211450,7095585:220150 -k1,12198:10279716,7095585:220151 -k1,12198:12368953,7095585:220150 -k1,12198:13201866,7095585:220151 -k1,12198:14930655,7095585:220150 -k1,12198:16837703,7095585:220151 -k1,12198:18874511,7095585:220150 -k1,12198:22534647,7095585:220151 -k1,12198:24732018,7095585:220150 -k1,12198:25899820,7095585:220151 -k1,12198:28696190,7095585:220150 -k1,12198:30415149,7095585:220151 -k1,12198:31318184,7095585:220150 -k1,12199:32583029,7095585:0 -) -(1,12199:6630773,7937073:25952256,513147,134348 -k1,12198:8794186,7937073:194056 -k1,12198:9979801,7937073:194055 -(1,12198:9979801,7937073:0,452978,122846 -r1,12198:13855185,7937073:3875384,575824,122846 -k1,12198:9979801,7937073:-3875384 -) -(1,12198:9979801,7937073:3875384,452978,122846 -k1,12198:9979801,7937073:3277 -h1,12198:13851908,7937073:0,411205,112570 -) -k1,12198:14222911,7937073:194056 -k1,12198:16302438,7937073:194056 -k1,12198:17027990,7937073:194055 -k1,12198:19424056,7937073:194056 -k1,12198:20269540,7937073:194056 -(1,12198:20269540,7937073:0,452978,122846 -r1,12198:24144924,7937073:3875384,575824,122846 -k1,12198:20269540,7937073:-3875384 -) -(1,12198:20269540,7937073:3875384,452978,122846 -k1,12198:20269540,7937073:3277 -h1,12198:24141647,7937073:0,411205,112570 -) -k1,12198:24512649,7937073:194055 -k1,12198:25778874,7937073:194056 -k1,12198:28300113,7937073:194056 -k1,12198:29153460,7937073:194055 -k1,12198:31575085,7937073:194056 -k1,12199:32583029,7937073:0 -) -(1,12199:6630773,8778561:25952256,505283,134348 -k1,12198:10151182,8778561:243609 -k1,12198:13511683,8778561:243609 -k1,12198:14406720,8778561:243609 -k1,12198:15669413,8778561:243608 -k1,12198:17923667,8778561:243609 -k1,12198:20752671,8778561:243609 -k1,12198:21647708,8778561:243609 -(1,12198:21647708,8778561:0,414482,115847 -r1,12198:22005974,8778561:358266,530329,115847 -k1,12198:21647708,8778561:-358266 -) -(1,12198:21647708,8778561:358266,414482,115847 -k1,12198:21647708,8778561:3277 -h1,12198:22002697,8778561:0,411205,112570 -) -k1,12198:22423253,8778561:243609 -k1,12198:23124959,8778561:243609 -k1,12198:24936188,8778561:243608 -k1,12198:26818852,8778561:243609 -k1,12198:30179353,8778561:243609 -k1,12198:31074390,8778561:243609 -k1,12198:32583029,8778561:0 -) -(1,12199:6630773,9620049:25952256,505283,134348 -k1,12198:9968099,9620049:181112 -k1,12198:10765249,9620049:181112 -(1,12198:10765249,9620049:0,452978,115847 -r1,12198:12178650,9620049:1413401,568825,115847 -k1,12198:10765249,9620049:-1413401 -) -(1,12198:10765249,9620049:1413401,452978,115847 -k1,12198:10765249,9620049:3277 -h1,12198:12175373,9620049:0,411205,112570 -) -k1,12198:12533433,9620049:181113 -k1,12198:13905990,9620049:181112 -(1,12198:13905990,9620049:0,452978,122846 -r1,12198:18133086,9620049:4227096,575824,122846 -k1,12198:13905990,9620049:-4227096 -) -(1,12198:13905990,9620049:4227096,452978,122846 -k1,12198:13905990,9620049:3277 -h1,12198:18129809,9620049:0,411205,112570 -) -k1,12198:18487868,9620049:181112 -k1,12198:20554451,9620049:181112 -k1,12198:21267060,9620049:181112 -k1,12198:23650182,9620049:181112 -k1,12198:24482723,9620049:181113 -(1,12198:24482723,9620049:0,452978,122846 -r1,12198:29413243,9620049:4930520,575824,122846 -k1,12198:24482723,9620049:-4930520 -) -(1,12198:24482723,9620049:4930520,452978,122846 -k1,12198:24482723,9620049:3277 -h1,12198:29409966,9620049:0,411205,112570 -) -k1,12198:29594355,9620049:181112 -k1,12198:30847636,9620049:181112 -k1,12198:32583029,9620049:0 -) -(1,12199:6630773,10461537:25952256,513147,134348 -k1,12198:7260119,10461537:273486 -k1,12198:9198219,10461537:273486 -k1,12198:14793228,10461537:273486 -k1,12198:16921383,10461537:273486 -k1,12198:18004239,10461537:273486 -(1,12198:18004239,10461537:0,414482,115847 -r1,12198:18362505,10461537:358266,530329,115847 -k1,12198:18004239,10461537:-358266 -) -(1,12198:18004239,10461537:358266,414482,115847 -k1,12198:18004239,10461537:3277 -h1,12198:18359228,10461537:0,411205,112570 -) -k1,12198:18809661,10461537:273486 -(1,12198:18809661,10461537:0,414482,115847 -r1,12198:19167927,10461537:358266,530329,115847 -k1,12198:18809661,10461537:-358266 -) -(1,12198:18809661,10461537:358266,414482,115847 -k1,12198:18809661,10461537:3277 -h1,12198:19164650,10461537:0,411205,112570 -) -k1,12198:19441412,10461537:273485 -k1,12198:20662549,10461537:273486 -k1,12198:22984035,10461537:273486 -k1,12198:24448966,10461537:273486 -(1,12198:24448966,10461537:0,452978,122846 -r1,12198:26214079,10461537:1765113,575824,122846 -k1,12198:24448966,10461537:-1765113 -) -(1,12198:24448966,10461537:1765113,452978,122846 -k1,12198:24448966,10461537:3277 -h1,12198:26210802,10461537:0,411205,112570 -) -k1,12198:26487565,10461537:273486 -k1,12198:27952496,10461537:273486 -(1,12198:27952496,10461537:0,452978,115847 -r1,12198:30069321,10461537:2116825,568825,115847 -k1,12198:27952496,10461537:-2116825 -) -(1,12198:27952496,10461537:2116825,452978,115847 -k1,12198:27952496,10461537:3277 -h1,12198:30066044,10461537:0,411205,112570 -) -k1,12198:30342807,10461537:273486 -k1,12198:31563944,10461537:273486 -k1,12198:32583029,10461537:0 -) -(1,12199:6630773,11303025:25952256,505283,134348 -k1,12198:9740196,11303025:244844 -k1,12198:12261106,11303025:244845 -(1,12198:12261106,11303025:0,452978,122846 -r1,12198:16136490,11303025:3875384,575824,122846 -k1,12198:12261106,11303025:-3875384 -) -(1,12198:12261106,11303025:3875384,452978,122846 -k1,12198:12261106,11303025:3277 -h1,12198:16133213,11303025:0,411205,112570 -) -k1,12198:16381334,11303025:244844 -k1,12198:18233776,11303025:244844 -k1,12198:19854221,11303025:244844 -k1,12198:22444600,11303025:244845 -k1,12198:23880889,11303025:244844 -k1,12198:27441855,11303025:244844 -k1,12198:29185507,11303025:244844 -k1,12198:30081780,11303025:244845 -k1,12198:31563944,11303025:244844 -k1,12198:32583029,11303025:0 -) -(1,12199:6630773,12144513:25952256,505283,134348 -g1,12198:11075424,12144513 -g1,12198:13846941,12144513 -g1,12198:14402030,12144513 -g1,12198:17145367,12144513 -k1,12199:32583029,12144513:14095485 -g1,12199:32583029,12144513 -) -v1,12201:6630773,13334979:0,393216,0 -(1,12207:6630773,14982431:25952256,2040668,196608 -g1,12207:6630773,14982431 -g1,12207:6630773,14982431 -g1,12207:6434165,14982431 -(1,12207:6434165,14982431:0,2040668,196608 -r1,12207:32779637,14982431:26345472,2237276,196608 -k1,12207:6434165,14982431:-26345472 -) -(1,12207:6434165,14982431:26345472,2040668,196608 -[1,12207:6630773,14982431:25952256,1844060,0 -(1,12203:6630773,13542597:25952256,404226,107478 -(1,12202:6630773,13542597:0,0,0 -g1,12202:6630773,13542597 -g1,12202:6630773,13542597 -g1,12202:6303093,13542597 -(1,12202:6303093,13542597:0,0,0 -) -g1,12202:6630773,13542597 -) -k1,12203:6630773,13542597:0 -g1,12203:10424522,13542597 -g1,12203:11056814,13542597 -k1,12203:11056814,13542597:0 -h1,12203:13269834,13542597:0,0,0 -k1,12203:32583030,13542597:19313196 -g1,12203:32583030,13542597 -) -(1,12204:6630773,14208775:25952256,410518,107478 -h1,12204:6630773,14208775:0,0,0 -g1,12204:6946919,14208775 -g1,12204:7263065,14208775 -g1,12204:7579211,14208775 -g1,12204:7895357,14208775 -g1,12204:8211503,14208775 -g1,12204:8527649,14208775 -g1,12204:8843795,14208775 -g1,12204:10740670,14208775 -g1,12204:11372962,14208775 -g1,12204:12953691,14208775 -g1,12204:13585983,14208775 -g1,12204:14218275,14208775 -g1,12204:18960461,14208775 -g1,12204:21805772,14208775 -g1,12204:22438064,14208775 -g1,12204:24651084,14208775 -h1,12204:24967230,14208775:0,0,0 -k1,12204:32583029,14208775:7615799 -g1,12204:32583029,14208775 -) -(1,12205:6630773,14874953:25952256,404226,107478 -h1,12205:6630773,14874953:0,0,0 -g1,12205:6946919,14874953 -g1,12205:7263065,14874953 -k1,12205:7263065,14874953:0 -h1,12205:10740667,14874953:0,0,0 -k1,12205:32583029,14874953:21842362 -g1,12205:32583029,14874953 -) -] -) -g1,12207:32583029,14982431 -g1,12207:6630773,14982431 -g1,12207:6630773,14982431 -g1,12207:32583029,14982431 -g1,12207:32583029,14982431 -) -h1,12207:6630773,15179039:0,0,0 -(1,12210:6630773,24831552:25952256,9062689,0 -k1,12210:10523651,24831552:3892878 -h1,12209:10523651,24831552:0,0,0 -(1,12209:10523651,24831552:18166500,9062689,0 -(1,12209:10523651,24831552:18167381,9062712,0 -(1,12209:10523651,24831552:18167381,9062712,0 -(1,12209:10523651,24831552:0,9062712,0 -(1,12209:10523651,24831552:0,14155776,0 -(1,12209:10523651,24831552:28377088,14155776,0 -) -k1,12209:10523651,24831552:-28377088 -) -) -g1,12209:28691032,24831552 -) -) -) -g1,12210:28690151,24831552 -k1,12210:32583029,24831552:3892878 -) -v1,12219:6630773,26197328:0,393216,0 -(1,12228:6630773,30575471:25952256,4771359,616038 -g1,12228:6630773,30575471 -(1,12228:6630773,30575471:25952256,4771359,616038 -(1,12228:6630773,31191509:25952256,5387397,0 -[1,12228:6630773,31191509:25952256,5387397,0 -(1,12228:6630773,31165295:25952256,5334969,0 -r1,12228:6656987,31165295:26214,5334969,0 -[1,12228:6656987,31165295:25899828,5334969,0 -(1,12228:6656987,30575471:25899828,4155321,0 -[1,12228:7246811,30575471:24720180,4155321,0 -(1,12220:7246811,27507524:24720180,1087374,134348 -k1,12219:8895132,27507524:438618 -k1,12219:11125503,27507524:438617 -k1,12219:12583206,27507524:438618 -k1,12219:15997158,27507524:438617 -k1,12219:17448307,27507524:438618 -k1,12219:19449959,27507524:438618 -k1,12219:21604309,27507524:438617 -k1,12219:23697711,27507524:438618 -k1,12219:25743927,27507524:438618 -k1,12219:27917937,27507524:438617 -(1,12219:27917937,27507524:0,452978,122846 -r1,12228:31793321,27507524:3875384,575824,122846 -k1,12219:27917937,27507524:-3875384 -) -(1,12219:27917937,27507524:3875384,452978,122846 -k1,12219:27917937,27507524:3277 -h1,12219:31790044,27507524:0,411205,112570 -) -k1,12220:31966991,27507524:0 -) -(1,12220:7246811,28349012:24720180,505283,126483 -(1,12219:7246811,28349012:0,452978,122846 -r1,12228:11122195,28349012:3875384,575824,122846 -k1,12219:7246811,28349012:-3875384 -) -(1,12219:7246811,28349012:3875384,452978,122846 -k1,12219:7246811,28349012:3277 -h1,12219:11118918,28349012:0,411205,112570 -) -g1,12219:11495094,28349012 -g1,12219:12885768,28349012 -(1,12219:12885768,28349012:0,414482,122846 -r1,12228:16057728,28349012:3171960,537328,122846 -k1,12219:12885768,28349012:-3171960 -) -(1,12219:12885768,28349012:3171960,414482,122846 -k1,12219:12885768,28349012:3277 -h1,12219:16054451,28349012:0,411205,112570 -) -g1,12219:16256957,28349012 -g1,12219:17107614,28349012 -g1,12219:18504186,28349012 -g1,12219:19059275,28349012 -k1,12220:31966991,28349012:11176255 -g1,12220:31966991,28349012 -) -v1,12222:7246811,29539478:0,393216,0 -(1,12226:7246811,29854575:24720180,708313,196608 -g1,12226:7246811,29854575 -g1,12226:7246811,29854575 -g1,12226:7050203,29854575 -(1,12226:7050203,29854575:0,708313,196608 -r1,12228:32163599,29854575:25113396,904921,196608 -k1,12226:7050203,29854575:-25113396 -) -(1,12226:7050203,29854575:25113396,708313,196608 -[1,12226:7246811,29854575:24720180,511705,0 -(1,12224:7246811,29753388:24720180,410518,101187 -(1,12223:7246811,29753388:0,0,0 -g1,12223:7246811,29753388 -g1,12223:7246811,29753388 -g1,12223:6919131,29753388 -(1,12223:6919131,29753388:0,0,0 -) -g1,12223:7246811,29753388 -) -g1,12224:9459831,29753388 -g1,12224:10408269,29753388 -g1,12224:14518164,29753388 -g1,12224:15150456,29753388 -g1,12224:18944208,29753388 -g1,12224:19576500,29753388 -g1,12224:20208792,29753388 -k1,12224:20208792,29753388:0 -h1,12224:23686397,29753388:0,0,0 -k1,12224:31966991,29753388:8280594 -g1,12224:31966991,29753388 -) -] -) -g1,12226:31966991,29854575 -g1,12226:7246811,29854575 -g1,12226:7246811,29854575 -g1,12226:31966991,29854575 -g1,12226:31966991,29854575 -) -h1,12226:7246811,30051183:0,0,0 -] -) -] -r1,12228:32583029,31165295:26214,5334969,0 -) -] -) -) -g1,12228:32583029,30575471 -) -h1,12228:6630773,31191509:0,0,0 -(1,12232:6630773,32557285:25952256,513147,134348 -h1,12231:6630773,32557285:983040,0,0 -k1,12231:9591272,32557285:202744 -(1,12231:9591272,32557285:0,452978,122846 -r1,12231:13466656,32557285:3875384,575824,122846 -k1,12231:9591272,32557285:-3875384 -) -(1,12231:9591272,32557285:3875384,452978,122846 -k1,12231:9591272,32557285:3277 -h1,12231:13463379,32557285:0,411205,112570 -) -k1,12231:13669400,32557285:202744 -k1,12231:15788417,32557285:202744 -k1,12231:16347021,32557285:202744 -k1,12231:17718273,32557285:202745 -k1,12231:20148586,32557285:202744 -k1,12231:24596752,32557285:202744 -(1,12231:24596752,32557285:0,452978,122846 -r1,12231:28472136,32557285:3875384,575824,122846 -k1,12231:24596752,32557285:-3875384 -) -(1,12231:24596752,32557285:3875384,452978,122846 -k1,12231:24596752,32557285:3277 -h1,12231:28468859,32557285:0,411205,112570 -) -k1,12231:28674880,32557285:202744 -k1,12231:31734338,32557285:202744 -k1,12232:32583029,32557285:0 -) -(1,12232:6630773,33398773:25952256,505283,134348 -k1,12231:7985551,33398773:159401 -k1,12231:9164038,33398773:159402 -k1,12231:10670859,33398773:159401 -k1,12231:12698692,33398773:159402 -k1,12231:13877178,33398773:159401 -k1,12231:15205086,33398773:159401 -k1,12231:18481380,33398773:159402 -k1,12231:19292209,33398773:159401 -k1,12231:20470695,33398773:159401 -(1,12231:20470695,33398773:0,459977,115847 -r1,12231:21884096,33398773:1413401,575824,115847 -k1,12231:20470695,33398773:-1413401 -) -(1,12231:20470695,33398773:1413401,459977,115847 -k1,12231:20470695,33398773:3277 -h1,12231:21880819,33398773:0,411205,112570 -) -k1,12231:22043498,33398773:159402 -k1,12231:25129736,33398773:159401 -k1,12231:25916973,33398773:159402 -k1,12231:28707645,33398773:159401 -(1,12231:28707645,33398773:0,452978,122846 -r1,12231:32583029,33398773:3875384,575824,122846 -k1,12231:28707645,33398773:-3875384 -) -(1,12231:28707645,33398773:3875384,452978,122846 -k1,12231:28707645,33398773:3277 -h1,12231:32579752,33398773:0,411205,112570 -) -k1,12231:32583029,33398773:0 -) -(1,12232:6630773,34240261:25952256,505283,126483 -k1,12231:8767058,34240261:220012 -k1,12231:10159510,34240261:220013 -k1,12231:11878330,34240261:220012 -k1,12231:13953011,34240261:220012 -k1,12231:14982393,34240261:220012 -k1,12231:16221491,34240261:220013 -(1,12231:16221491,34240261:0,414482,115847 -r1,12231:16579757,34240261:358266,530329,115847 -k1,12231:16221491,34240261:-358266 -) -(1,12231:16221491,34240261:358266,414482,115847 -k1,12231:16221491,34240261:3277 -h1,12231:16576480,34240261:0,411205,112570 -) -k1,12231:16973439,34240261:220012 -(1,12231:16973439,34240261:0,452978,115847 -r1,12231:18386840,34240261:1413401,568825,115847 -k1,12231:16973439,34240261:-1413401 -) -(1,12231:16973439,34240261:1413401,452978,115847 -k1,12231:16973439,34240261:3277 -h1,12231:18383563,34240261:0,411205,112570 -) -k1,12231:18606852,34240261:220012 -k1,12231:20018310,34240261:220013 -(1,12231:20018310,34240261:0,414482,115847 -r1,12231:21431711,34240261:1413401,530329,115847 -k1,12231:20018310,34240261:-1413401 -) -(1,12231:20018310,34240261:1413401,414482,115847 -k1,12231:20018310,34240261:3277 -h1,12231:21428434,34240261:0,411205,112570 -) -k1,12231:21651723,34240261:220012 -k1,12231:25086931,34240261:220012 -k1,12231:26700894,34240261:220012 -k1,12231:27939992,34240261:220013 -k1,12231:29947826,34240261:220012 -k1,12231:32583029,34240261:0 -) -(1,12232:6630773,35081749:25952256,513147,134348 -k1,12231:7884001,35081749:234143 -k1,12231:9616952,35081749:234143 -k1,12231:11460004,35081749:234143 -k1,12231:14811039,35081749:234143 -k1,12231:15696610,35081749:234143 -k1,12231:16949838,35081749:234143 -(1,12231:16949838,35081749:0,459977,115847 -r1,12231:18363239,35081749:1413401,575824,115847 -k1,12231:16949838,35081749:-1413401 -) -(1,12231:16949838,35081749:1413401,459977,115847 -k1,12231:16949838,35081749:3277 -h1,12231:18359962,35081749:0,411205,112570 -) -k1,12231:18597381,35081749:234142 -k1,12231:21758361,35081749:234143 -k1,12231:24268569,35081749:234143 -(1,12231:24268569,35081749:0,452978,122846 -r1,12231:28495665,35081749:4227096,575824,122846 -k1,12231:24268569,35081749:-4227096 -) -(1,12231:24268569,35081749:4227096,452978,122846 -k1,12231:24268569,35081749:3277 -h1,12231:28492388,35081749:0,411205,112570 -) -k1,12231:28729808,35081749:234143 -k1,12231:29495448,35081749:234143 -k1,12231:31931601,35081749:234143 -k1,12232:32583029,35081749:0 -) -(1,12232:6630773,35923237:25952256,513147,134348 -(1,12231:6630773,35923237:0,452978,122846 -r1,12231:10506157,35923237:3875384,575824,122846 -k1,12231:6630773,35923237:-3875384 -) -(1,12231:6630773,35923237:3875384,452978,122846 -k1,12231:6630773,35923237:3277 -h1,12231:10502880,35923237:0,411205,112570 -) -k1,12231:10678230,35923237:172073 -k1,12231:11922473,35923237:172074 -k1,12231:14920458,35923237:172073 -k1,12231:16111617,35923237:172074 -k1,12231:18855978,35923237:172073 -k1,12231:23099804,35923237:172074 -k1,12231:25829747,35923237:172073 -k1,12231:26357681,35923237:172074 -k1,12231:28561370,35923237:172073 -k1,12231:31298523,35923237:172074 -k1,12231:32583029,35923237:0 -) -(1,12232:6630773,36764725:25952256,459977,126483 -g1,12231:9686716,36764725 -(1,12231:9686716,36764725:0,459977,115847 -r1,12231:11100117,36764725:1413401,575824,115847 -k1,12231:9686716,36764725:-1413401 -) -(1,12231:9686716,36764725:1413401,459977,115847 -k1,12231:9686716,36764725:3277 -h1,12231:11096840,36764725:0,411205,112570 -) -k1,12232:32583029,36764725:21309242 -g1,12232:32583029,36764725 -) -(1,12234:6630773,37606213:25952256,513147,126483 -h1,12233:6630773,37606213:983040,0,0 -k1,12233:9505962,37606213:165275 -k1,12233:10330529,37606213:165275 -k1,12233:12044420,37606213:165275 -k1,12233:13416868,37606213:165275 -k1,12233:16672166,37606213:165275 -k1,12233:18692764,37606213:165274 -k1,12233:19805690,37606213:165275 -(1,12233:19805690,37606213:0,452978,122846 -r1,12233:23329362,37606213:3523672,575824,122846 -k1,12233:19805690,37606213:-3523672 -) -(1,12233:19805690,37606213:3523672,452978,122846 -k1,12233:19805690,37606213:3277 -h1,12233:23326085,37606213:0,411205,112570 -) -k1,12233:23494637,37606213:165275 -k1,12233:24764194,37606213:165275 -k1,12233:25677235,37606213:165275 -k1,12233:28420696,37606213:165275 -k1,12233:29237399,37606213:165275 -(1,12233:29237399,37606213:0,452978,122846 -r1,12233:32409359,37606213:3171960,575824,122846 -k1,12233:29237399,37606213:-3171960 -) -(1,12233:29237399,37606213:3171960,452978,122846 -k1,12233:29237399,37606213:3277 -h1,12233:32406082,37606213:0,411205,112570 -) -k1,12234:32583029,37606213:0 -) -(1,12234:6630773,38447701:25952256,505283,134348 -(1,12233:6630773,38447701:0,452978,122846 -r1,12233:10506157,38447701:3875384,575824,122846 -k1,12233:6630773,38447701:-3875384 -) -(1,12233:6630773,38447701:3875384,452978,122846 -k1,12233:6630773,38447701:3277 -h1,12233:10502880,38447701:0,411205,112570 -) -k1,12233:10951448,38447701:271621 -(1,12233:10951448,38447701:0,414482,122846 -r1,12233:14123408,38447701:3171960,537328,122846 -k1,12233:10951448,38447701:-3171960 -) -(1,12233:10951448,38447701:3171960,414482,122846 -k1,12233:10951448,38447701:3277 -h1,12233:14120131,38447701:0,411205,112570 -) -k1,12233:14395029,38447701:271621 -k1,12233:15858094,38447701:271620 -k1,12233:17831685,38447701:271621 -k1,12233:21543291,38447701:271621 -k1,12233:24904935,38447701:271621 -k1,12233:25792594,38447701:271621 -k1,12233:27267455,38447701:271620 -k1,12233:29991433,38447701:271621 -k1,12233:30890889,38447701:271621 -k1,12233:32583029,38447701:0 -) -(1,12234:6630773,39289189:25952256,513147,134348 -k1,12233:8770570,39289189:268744 -k1,12233:9497412,39289189:268745 -k1,12233:10297653,39289189:268744 -k1,12233:12543618,39289189:268744 -k1,12233:13463790,39289189:268744 -k1,12233:15401737,39289189:268745 -k1,12233:16689566,39289189:268744 -k1,12233:20533954,39289189:268744 -k1,12233:22500737,39289189:268745 -k1,12233:23788566,39289189:268744 -k1,12233:26067955,39289189:268744 -k1,12233:29378225,39289189:268744 -k1,12233:31299133,39289189:268745 -k1,12233:32227169,39289189:268744 -k1,12233:32583029,39289189:0 -) -(1,12234:6630773,40130677:25952256,513147,134348 -k1,12233:8803796,40130677:187282 -k1,12233:11047597,40130677:187281 -k1,12233:11862714,40130677:187282 -k1,12233:13069080,40130677:187281 -k1,12233:14814153,40130677:187282 -k1,12233:18189761,40130677:187281 -k1,12233:21212130,40130677:187282 -k1,12233:22267763,40130677:187281 -k1,12233:24124247,40130677:187282 -k1,12233:25330613,40130677:187281 -k1,12233:27767746,40130677:187282 -k1,12233:28614319,40130677:187281 -k1,12233:29820686,40130677:187282 -k1,12233:32583029,40130677:0 -) -(1,12234:6630773,40972165:25952256,513147,134348 -k1,12233:8414817,40972165:213801 -k1,12233:9390147,40972165:213802 -k1,12233:11339341,40972165:213801 -(1,12233:11339341,40972165:0,452978,115847 -r1,12233:17676709,40972165:6337368,568825,115847 -k1,12233:11339341,40972165:-6337368 -) -(1,12233:11339341,40972165:6337368,452978,115847 -g1,12233:14508025,40972165 -g1,12233:15211449,40972165 -h1,12233:17673432,40972165:0,411205,112570 -) -k1,12233:17890511,40972165:213802 -k1,12233:20431495,40972165:213801 -k1,12233:21304588,40972165:213801 -k1,12233:22537475,40972165:213802 -k1,12233:25016856,40972165:213801 -(1,12233:25016856,40972165:0,452978,115847 -r1,12233:32409359,40972165:7392503,568825,115847 -k1,12233:25016856,40972165:-7392503 -) -(1,12233:25016856,40972165:7392503,452978,115847 -g1,12233:28185540,40972165 -g1,12233:28888964,40972165 -h1,12233:32406082,40972165:0,411205,112570 -) -k1,12233:32583029,40972165:0 -) -(1,12234:6630773,41813653:25952256,513147,138281 -k1,12233:9969129,41813653:248989 -k1,12233:11237202,41813653:248988 -$1,12233:11237202,41813653 -$1,12233:11789015,41813653 -k1,12233:12038004,41813653:248989 -k1,12233:13539386,41813653:248989 -k1,12233:14447667,41813653:248989 -k1,12233:15715740,41813653:248988 -k1,12233:17820053,41813653:248989 -k1,12233:19937473,41813653:248989 -k1,12233:20837889,41813653:248988 -k1,12233:22371384,41813653:248989 -k1,12233:24621187,41813653:248989 -k1,12233:26605569,41813653:248989 -(1,12233:26605569,41813653:0,452978,122846 -r1,12233:29777529,41813653:3171960,575824,122846 -k1,12233:26605569,41813653:-3171960 -) -(1,12233:26605569,41813653:3171960,452978,122846 -k1,12233:26605569,41813653:3277 -h1,12233:29774252,41813653:0,411205,112570 -) -k1,12233:30026517,41813653:248988 -k1,12233:31084876,41813653:248989 -k1,12233:32583029,41813653:0 -) -(1,12234:6630773,42655141:25952256,505283,95026 -h1,12233:7826150,42655141:0,0,0 -k1,12234:32583030,42655141:24376116 -g1,12234:32583030,42655141 -) -v1,12236:6630773,43845607:0,393216,0 -(1,12242:6630773,45493059:25952256,2040668,196608 -g1,12242:6630773,45493059 -g1,12242:6630773,45493059 -g1,12242:6434165,45493059 -(1,12242:6434165,45493059:0,2040668,196608 -r1,12242:32779637,45493059:26345472,2237276,196608 -k1,12242:6434165,45493059:-26345472 -) -(1,12242:6434165,45493059:26345472,2040668,196608 -[1,12242:6630773,45493059:25952256,1844060,0 -(1,12238:6630773,44053225:25952256,404226,107478 -(1,12237:6630773,44053225:0,0,0 -g1,12237:6630773,44053225 -g1,12237:6630773,44053225 -g1,12237:6303093,44053225 -(1,12237:6303093,44053225:0,0,0 -) -g1,12237:6630773,44053225 -) -k1,12238:6630773,44053225:0 -g1,12238:10424522,44053225 -g1,12238:11056814,44053225 -k1,12238:11056814,44053225:0 -h1,12238:13269834,44053225:0,0,0 -k1,12238:32583030,44053225:19313196 -g1,12238:32583030,44053225 -) -(1,12239:6630773,44719403:25952256,410518,107478 -h1,12239:6630773,44719403:0,0,0 -g1,12239:6946919,44719403 -g1,12239:7263065,44719403 -g1,12239:7579211,44719403 -g1,12239:7895357,44719403 -g1,12239:8211503,44719403 -g1,12239:8527649,44719403 -g1,12239:8843795,44719403 -g1,12239:10740670,44719403 -g1,12239:11372962,44719403 -g1,12239:12953691,44719403 -g1,12239:13585983,44719403 -g1,12239:14218275,44719403 -g1,12239:18960461,44719403 -g1,12239:20541190,44719403 -g1,12239:21173482,44719403 -g1,12239:23386502,44719403 -h1,12239:23702648,44719403:0,0,0 -k1,12239:32583029,44719403:8880381 -g1,12239:32583029,44719403 -) -(1,12240:6630773,45385581:25952256,404226,107478 -h1,12240:6630773,45385581:0,0,0 -g1,12240:6946919,45385581 -g1,12240:7263065,45385581 -g1,12240:13269833,45385581 -g1,12240:13902125,45385581 -h1,12240:16431291,45385581:0,0,0 -k1,12240:32583029,45385581:16151738 -g1,12240:32583029,45385581 -) -] -) -g1,12242:32583029,45493059 -g1,12242:6630773,45493059 -g1,12242:6630773,45493059 -g1,12242:32583029,45493059 -g1,12242:32583029,45493059 -) -h1,12242:6630773,45689667:0,0,0 -] -(1,12254:32583029,45706769:0,0,0 -g1,12254:32583029,45706769 -) -) -] -(1,12254:6630773,47279633:25952256,0,0 -h1,12254:6630773,47279633:25952256,0,0 -) -] -h1,12254:4262630,4025873:0,0,0 -] -!27544 +] +g1,12238:6630773,4812305 +g1,12238:6630773,4812305 +g1,12238:10347975,4812305 +k1,12238:31387651,4812305:21039676 +) +) +] +[1,12238:6630773,45706769:25952256,40108032,0 +(1,12238:6630773,45706769:25952256,40108032,0 +(1,12238:6630773,45706769:0,0,0 +g1,12238:6630773,45706769 +) +[1,12238:6630773,45706769:25952256,40108032,0 +(1,12192:6630773,6254097:25952256,555811,12975 +(1,12192:6630773,6254097:2450326,534184,12975 +g1,12192:6630773,6254097 +g1,12192:9081099,6254097 +) +g1,12192:10837923,6254097 +g1,12192:12405151,6254097 +k1,12192:32583029,6254097:18638044 +g1,12192:32583029,6254097 +) +(1,12196:6630773,7488801:25952256,513147,126483 +k1,12195:7927114,7488801:254319 +k1,12195:9349940,7488801:254319 +k1,12195:11211857,7488801:254319 +k1,12195:12334528,7488801:254319 +k1,12195:13681331,7488801:254318 +(1,12195:13681331,7488801:0,452978,122846 +r1,12195:17556715,7488801:3875384,575824,122846 +k1,12195:13681331,7488801:-3875384 +) +(1,12195:13681331,7488801:3875384,452978,122846 +k1,12195:13681331,7488801:3277 +h1,12195:17553438,7488801:0,411205,112570 +) +k1,12195:17984704,7488801:254319 +k1,12195:19435710,7488801:254319 +(1,12195:19435710,7488801:0,452978,115847 +r1,12195:20849111,7488801:1413401,568825,115847 +k1,12195:19435710,7488801:-1413401 +) +(1,12195:19435710,7488801:1413401,452978,115847 +k1,12195:19435710,7488801:3277 +h1,12195:20845834,7488801:0,411205,112570 +) +k1,12195:21103430,7488801:254319 +k1,12195:22017041,7488801:254319 +k1,12195:22627220,7488801:254319 +k1,12195:24050046,7488801:254319 +k1,12195:24835862,7488801:254319 +k1,12195:25878578,7488801:254318 +k1,12195:29328432,7488801:254319 +k1,12195:30774196,7488801:254319 +k1,12195:31714677,7488801:254319 +k1,12195:32583029,7488801:0 +) +(1,12196:6630773,8330289:25952256,513147,126483 +k1,12195:8092287,8330289:270069 +(1,12195:8092287,8330289:0,452978,115847 +r1,12195:9857400,8330289:1765113,568825,115847 +k1,12195:8092287,8330289:-1765113 +) +(1,12195:8092287,8330289:1765113,452978,115847 +k1,12195:8092287,8330289:3277 +h1,12195:9854123,8330289:0,411205,112570 +) +k1,12195:10127469,8330289:270069 +k1,12195:11345188,8330289:270068 +k1,12195:13807436,8330289:270069 +k1,12195:14945857,8330289:270069 +k1,12195:16691141,8330289:270069 +(1,12195:16691141,8330289:0,452978,115847 +r1,12195:19511390,8330289:2820249,568825,115847 +k1,12195:16691141,8330289:-2820249 +) +(1,12195:16691141,8330289:2820249,452978,115847 +k1,12195:16691141,8330289:3277 +h1,12195:19508113,8330289:0,411205,112570 +) +k1,12195:19781459,8330289:270069 +k1,12195:20999178,8330289:270068 +k1,12195:22941726,8330289:270069 +k1,12195:23839630,8330289:270069 +k1,12195:24465559,8330289:270069 +k1,12195:25904134,8330289:270068 +k1,12195:27625170,8330289:270069 +k1,12195:31966991,8330289:270069 +k1,12195:32583029,8330289:0 +) +(1,12196:6630773,9171777:25952256,513147,134348 +k1,12195:10226229,9171777:269504 +k1,12195:12029931,9171777:269504 +k1,12195:12958727,9171777:269504 +k1,12195:14247317,9171777:269505 +k1,12195:15906184,9171777:269504 +k1,12195:18225654,9171777:269504 +k1,12195:19178043,9171777:269504 +k1,12195:20466632,9171777:269504 +k1,12195:22816249,9171777:269504 +k1,12195:27709319,9171777:269505 +k1,12195:28630251,9171777:269504 +k1,12195:29255615,9171777:269504 +k1,12195:31591469,9171777:269504 +k1,12195:32583029,9171777:0 +) +(1,12196:6630773,10013265:25952256,513147,134348 +k1,12195:8803466,10013265:167291 +k1,12195:9732285,10013265:167291 +k1,12195:12378147,10013265:167290 +k1,12195:14217917,10013265:167291 +k1,12195:15338757,10013265:167291 +k1,12195:16598533,10013265:167291 +k1,12195:17121684,10013265:167291 +k1,12195:20051317,10013265:167290 +k1,12195:21607971,10013265:167291 +k1,12195:22709805,10013265:167291 +k1,12195:25635506,10013265:167291 +k1,12195:26418835,10013265:167291 +k1,12195:27174638,10013265:167290 +(1,12195:27174638,10013265:0,414482,122846 +r1,12195:29291463,10013265:2116825,537328,122846 +k1,12195:27174638,10013265:-2116825 +) +(1,12195:27174638,10013265:2116825,414482,122846 +k1,12195:27174638,10013265:3277 +h1,12195:29288186,10013265:0,411205,112570 +) +k1,12195:29632424,10013265:167291 +k1,12195:31193666,10013265:167291 +k1,12195:32583029,10013265:0 +) +(1,12196:6630773,10854753:25952256,513147,134348 +g1,12195:7639372,10854753 +g1,12195:8857686,10854753 +g1,12195:11306766,10854753 +g1,12195:12165287,10854753 +g1,12195:13499600,10854753 +g1,12195:15873969,10854753 +g1,12195:17817111,10854753 +g1,12195:19066227,10854753 +g1,12195:20284541,10854753 +g1,12195:21871823,10854753 +g1,12195:23569205,10854753 +g1,12195:24716085,10854753 +(1,12195:24716085,10854753:0,414482,122846 +r1,12195:26832910,10854753:2116825,537328,122846 +k1,12195:24716085,10854753:-2116825 +) +(1,12195:24716085,10854753:2116825,414482,122846 +k1,12195:24716085,10854753:3277 +h1,12195:26829633,10854753:0,411205,112570 +) +g1,12195:27032139,10854753 +g1,12195:28179019,10854753 +k1,12196:32583029,10854753:2112871 +g1,12196:32583029,10854753 +) +v1,12199:6630773,11890239:0,393216,0 +(1,12205:6630773,13537691:25952256,2040668,196608 +g1,12205:6630773,13537691 +g1,12205:6630773,13537691 +g1,12205:6434165,13537691 +(1,12205:6434165,13537691:0,2040668,196608 +r1,12205:32779637,13537691:26345472,2237276,196608 +k1,12205:6434165,13537691:-26345472 +) +(1,12205:6434165,13537691:26345472,2040668,196608 +[1,12205:6630773,13537691:25952256,1844060,0 +(1,12201:6630773,12097857:25952256,404226,107478 +(1,12200:6630773,12097857:0,0,0 +g1,12200:6630773,12097857 +g1,12200:6630773,12097857 +g1,12200:6303093,12097857 +(1,12200:6303093,12097857:0,0,0 +) +g1,12200:6630773,12097857 +) +k1,12201:6630773,12097857:0 +g1,12201:10424522,12097857 +g1,12201:11056814,12097857 +k1,12201:11056814,12097857:0 +h1,12201:13269834,12097857:0,0,0 +k1,12201:32583030,12097857:19313196 +g1,12201:32583030,12097857 +) +(1,12202:6630773,12764035:25952256,410518,107478 +h1,12202:6630773,12764035:0,0,0 +g1,12202:6946919,12764035 +g1,12202:7263065,12764035 +g1,12202:7579211,12764035 +g1,12202:7895357,12764035 +g1,12202:8211503,12764035 +g1,12202:8527649,12764035 +g1,12202:8843795,12764035 +g1,12202:10740670,12764035 +g1,12202:11372962,12764035 +g1,12202:12953691,12764035 +g1,12202:13585983,12764035 +g1,12202:14218275,12764035 +g1,12202:18960461,12764035 +g1,12202:21805772,12764035 +g1,12202:22438064,12764035 +g1,12202:24651084,12764035 +h1,12202:24967230,12764035:0,0,0 +k1,12202:32583029,12764035:7615799 +g1,12202:32583029,12764035 +) +(1,12203:6630773,13430213:25952256,404226,107478 +h1,12203:6630773,13430213:0,0,0 +g1,12203:6946919,13430213 +g1,12203:7263065,13430213 +k1,12203:7263065,13430213:0 +h1,12203:10740667,13430213:0,0,0 +k1,12203:32583029,13430213:21842362 +g1,12203:32583029,13430213 +) +] +) +g1,12205:32583029,13537691 +g1,12205:6630773,13537691 +g1,12205:6630773,13537691 +g1,12205:32583029,13537691 +g1,12205:32583029,13537691 +) +h1,12205:6630773,13734299:0,0,0 +(1,12208:6630773,23231833:25952256,9062689,0 +k1,12208:10523651,23231833:3892878 +h1,12207:10523651,23231833:0,0,0 +(1,12207:10523651,23231833:18166500,9062689,0 +(1,12207:10523651,23231833:18167381,9062712,0 +(1,12207:10523651,23231833:18167381,9062712,0 +(1,12207:10523651,23231833:0,9062712,0 +(1,12207:10523651,23231833:0,14155776,0 +(1,12207:10523651,23231833:28377088,14155776,0 +) +k1,12207:10523651,23231833:-28377088 +) +) +g1,12207:28691032,23231833 +) +) +) +g1,12208:28690151,23231833 +k1,12208:32583029,23231833:3892878 +) +(1,12218:6630773,24073321:25952256,513147,134348 +h1,12217:6630773,24073321:983040,0,0 +k1,12217:10173376,24073321:220583 +k1,12217:11053252,24073321:220584 +k1,12217:13850055,24073321:220583 +k1,12217:14426498,24073321:220583 +k1,12217:15815588,24073321:220583 +k1,12217:18263741,24073321:220584 +k1,12217:19503409,24073321:220583 +k1,12217:23049944,24073321:220583 +k1,12217:27515949,24073321:220583 +k1,12217:28604885,24073321:220584 +k1,12217:30162402,24073321:220583 +k1,12217:31931601,24073321:220583 +k1,12217:32583029,24073321:0 +) +(1,12218:6630773,24914809:25952256,513147,134348 +k1,12217:8384898,24914809:168154 +k1,12217:8908913,24914809:168155 +k1,12217:13292998,24914809:168154 +k1,12217:17321224,24914809:168155 +k1,12217:20180286,24914809:168154 +k1,12217:21296092,24914809:168155 +k1,12217:22915868,24914809:168154 +k1,12217:26825473,24914809:168155 +k1,12217:27676512,24914809:168154 +k1,12217:29048563,24914809:168155 +k1,12217:29832755,24914809:168154 +k1,12217:31019995,24914809:168155 +k1,12217:32583029,24914809:0 +) +(1,12218:6630773,25756297:25952256,505283,126483 +k1,12217:7478010,25756297:219402 +k1,12217:8900652,25756297:219401 +k1,12217:10660805,25756297:219402 +k1,12217:11748559,25756297:219402 +k1,12217:13060445,25756297:219401 +(1,12217:13060445,25756297:0,452978,122846 +r1,12217:17990965,25756297:4930520,575824,122846 +k1,12217:13060445,25756297:-4930520 +) +(1,12217:13060445,25756297:4930520,452978,122846 +k1,12217:13060445,25756297:3277 +h1,12217:17987688,25756297:0,411205,112570 +) +k1,12217:18210367,25756297:219402 +k1,12217:20315240,25756297:219402 +k1,12217:22912943,25756297:219401 +(1,12217:22912943,25756297:0,414482,115847 +r1,12217:23271209,25756297:358266,530329,115847 +k1,12217:22912943,25756297:-358266 +) +(1,12217:22912943,25756297:358266,414482,115847 +k1,12217:22912943,25756297:3277 +h1,12217:23267932,25756297:0,411205,112570 +) +k1,12217:23664281,25756297:219402 +(1,12217:23664281,25756297:0,452978,115847 +r1,12217:25077682,25756297:1413401,568825,115847 +k1,12217:23664281,25756297:-1413401 +) +(1,12217:23664281,25756297:1413401,452978,115847 +k1,12217:23664281,25756297:3277 +h1,12217:25074405,25756297:0,411205,112570 +) +k1,12217:25470753,25756297:219401 +(1,12217:25470753,25756297:0,414482,115847 +r1,12217:25829019,25756297:358266,530329,115847 +k1,12217:25470753,25756297:-358266 +) +(1,12217:25470753,25756297:358266,414482,115847 +k1,12217:25470753,25756297:3277 +h1,12217:25825742,25756297:0,411205,112570 +) +k1,12217:26048421,25756297:219402 +k1,12217:27459268,25756297:219402 +(1,12217:27459268,25756297:0,452978,115847 +r1,12217:28872669,25756297:1413401,568825,115847 +k1,12217:27459268,25756297:-1413401 +) +(1,12217:27459268,25756297:1413401,452978,115847 +k1,12217:27459268,25756297:3277 +h1,12217:28869392,25756297:0,411205,112570 +) +k1,12217:29092070,25756297:219401 +k1,12217:29997634,25756297:219402 +k1,12217:32583029,25756297:0 +) +(1,12218:6630773,26597785:25952256,505283,126483 +k1,12217:10130327,26597785:151320 +(1,12217:10130327,26597785:0,452978,122846 +r1,12217:14357423,26597785:4227096,575824,122846 +k1,12217:10130327,26597785:-4227096 +) +(1,12217:10130327,26597785:4227096,452978,122846 +k1,12217:10130327,26597785:3277 +h1,12217:14354146,26597785:0,411205,112570 +) +k1,12217:14508743,26597785:151320 +k1,12217:16576336,26597785:151320 +k1,12217:18889689,26597785:151320 +k1,12217:20713488,26597785:151320 +k1,12217:22056253,26597785:151320 +k1,12217:23226658,26597785:151320 +k1,12217:26608903,26597785:151320 +k1,12217:29048085,26597785:151320 +k1,12217:31391584,26597785:151320 +k1,12217:32583029,26597785:0 +) +(1,12218:6630773,27439273:25952256,505283,134348 +k1,12217:8852968,27439273:194511 +k1,12217:10151760,27439273:194510 +k1,12217:11094037,27439273:194511 +k1,12217:14549618,27439273:194510 +k1,12217:17302655,27439273:194511 +k1,12217:20724159,27439273:194511 +k1,12217:24133865,27439273:194510 +k1,12217:26202706,27439273:194511 +k1,12217:27569655,27439273:194510 +k1,12217:31204151,27439273:194511 +k1,12218:32583029,27439273:0 +) +(1,12218:6630773,28280761:25952256,513147,134348 +k1,12217:8211450,28280761:220150 +k1,12217:10279716,28280761:220151 +k1,12217:12368953,28280761:220150 +k1,12217:13201866,28280761:220151 +k1,12217:14930655,28280761:220150 +k1,12217:16837703,28280761:220151 +k1,12217:18874511,28280761:220150 +k1,12217:22534647,28280761:220151 +k1,12217:24732018,28280761:220150 +k1,12217:25899820,28280761:220151 +k1,12217:28696190,28280761:220150 +k1,12217:30415149,28280761:220151 +k1,12217:31318184,28280761:220150 +k1,12218:32583029,28280761:0 +) +(1,12218:6630773,29122249:25952256,513147,134348 +k1,12217:8794186,29122249:194056 +k1,12217:9979801,29122249:194055 +(1,12217:9979801,29122249:0,452978,122846 +r1,12217:13855185,29122249:3875384,575824,122846 +k1,12217:9979801,29122249:-3875384 +) +(1,12217:9979801,29122249:3875384,452978,122846 +k1,12217:9979801,29122249:3277 +h1,12217:13851908,29122249:0,411205,112570 +) +k1,12217:14222911,29122249:194056 +k1,12217:16302438,29122249:194056 +k1,12217:17027990,29122249:194055 +k1,12217:19424056,29122249:194056 +k1,12217:20269540,29122249:194056 +(1,12217:20269540,29122249:0,452978,122846 +r1,12217:24144924,29122249:3875384,575824,122846 +k1,12217:20269540,29122249:-3875384 +) +(1,12217:20269540,29122249:3875384,452978,122846 +k1,12217:20269540,29122249:3277 +h1,12217:24141647,29122249:0,411205,112570 +) +k1,12217:24512649,29122249:194055 +k1,12217:25778874,29122249:194056 +k1,12217:28300113,29122249:194056 +k1,12217:29153460,29122249:194055 +k1,12217:31575085,29122249:194056 +k1,12218:32583029,29122249:0 +) +(1,12218:6630773,29963737:25952256,505283,134348 +k1,12217:10151182,29963737:243609 +k1,12217:13511683,29963737:243609 +k1,12217:14406720,29963737:243609 +k1,12217:15669413,29963737:243608 +k1,12217:17923667,29963737:243609 +k1,12217:20752671,29963737:243609 +k1,12217:21647708,29963737:243609 +(1,12217:21647708,29963737:0,414482,115847 +r1,12217:22005974,29963737:358266,530329,115847 +k1,12217:21647708,29963737:-358266 +) +(1,12217:21647708,29963737:358266,414482,115847 +k1,12217:21647708,29963737:3277 +h1,12217:22002697,29963737:0,411205,112570 +) +k1,12217:22423253,29963737:243609 +k1,12217:23124959,29963737:243609 +k1,12217:24936188,29963737:243608 +k1,12217:26818852,29963737:243609 +k1,12217:30179353,29963737:243609 +k1,12217:31074390,29963737:243609 +k1,12217:32583029,29963737:0 +) +(1,12218:6630773,30805225:25952256,505283,134348 +k1,12217:9968099,30805225:181112 +k1,12217:10765249,30805225:181112 +(1,12217:10765249,30805225:0,452978,115847 +r1,12217:12178650,30805225:1413401,568825,115847 +k1,12217:10765249,30805225:-1413401 +) +(1,12217:10765249,30805225:1413401,452978,115847 +k1,12217:10765249,30805225:3277 +h1,12217:12175373,30805225:0,411205,112570 +) +k1,12217:12533433,30805225:181113 +k1,12217:13905990,30805225:181112 +(1,12217:13905990,30805225:0,452978,122846 +r1,12217:18133086,30805225:4227096,575824,122846 +k1,12217:13905990,30805225:-4227096 +) +(1,12217:13905990,30805225:4227096,452978,122846 +k1,12217:13905990,30805225:3277 +h1,12217:18129809,30805225:0,411205,112570 +) +k1,12217:18487868,30805225:181112 +k1,12217:20554451,30805225:181112 +k1,12217:21267060,30805225:181112 +k1,12217:23650182,30805225:181112 +k1,12217:24482723,30805225:181113 +(1,12217:24482723,30805225:0,452978,122846 +r1,12217:29413243,30805225:4930520,575824,122846 +k1,12217:24482723,30805225:-4930520 +) +(1,12217:24482723,30805225:4930520,452978,122846 +k1,12217:24482723,30805225:3277 +h1,12217:29409966,30805225:0,411205,112570 +) +k1,12217:29594355,30805225:181112 +k1,12217:30847636,30805225:181112 +k1,12217:32583029,30805225:0 +) +(1,12218:6630773,31646713:25952256,513147,134348 +k1,12217:7260119,31646713:273486 +k1,12217:9198219,31646713:273486 +k1,12217:14793228,31646713:273486 +k1,12217:16921383,31646713:273486 +k1,12217:18004239,31646713:273486 +(1,12217:18004239,31646713:0,414482,115847 +r1,12217:18362505,31646713:358266,530329,115847 +k1,12217:18004239,31646713:-358266 +) +(1,12217:18004239,31646713:358266,414482,115847 +k1,12217:18004239,31646713:3277 +h1,12217:18359228,31646713:0,411205,112570 +) +k1,12217:18809661,31646713:273486 +(1,12217:18809661,31646713:0,414482,115847 +r1,12217:19167927,31646713:358266,530329,115847 +k1,12217:18809661,31646713:-358266 +) +(1,12217:18809661,31646713:358266,414482,115847 +k1,12217:18809661,31646713:3277 +h1,12217:19164650,31646713:0,411205,112570 +) +k1,12217:19441412,31646713:273485 +k1,12217:20662549,31646713:273486 +k1,12217:22984035,31646713:273486 +k1,12217:24448966,31646713:273486 +(1,12217:24448966,31646713:0,452978,122846 +r1,12217:26214079,31646713:1765113,575824,122846 +k1,12217:24448966,31646713:-1765113 +) +(1,12217:24448966,31646713:1765113,452978,122846 +k1,12217:24448966,31646713:3277 +h1,12217:26210802,31646713:0,411205,112570 +) +k1,12217:26487565,31646713:273486 +k1,12217:27952496,31646713:273486 +(1,12217:27952496,31646713:0,452978,115847 +r1,12217:30069321,31646713:2116825,568825,115847 +k1,12217:27952496,31646713:-2116825 +) +(1,12217:27952496,31646713:2116825,452978,115847 +k1,12217:27952496,31646713:3277 +h1,12217:30066044,31646713:0,411205,112570 +) +k1,12217:30342807,31646713:273486 +k1,12217:31563944,31646713:273486 +k1,12217:32583029,31646713:0 +) +(1,12218:6630773,32488201:25952256,505283,134348 +k1,12217:9740196,32488201:244844 +k1,12217:12261106,32488201:244845 +(1,12217:12261106,32488201:0,452978,122846 +r1,12217:16136490,32488201:3875384,575824,122846 +k1,12217:12261106,32488201:-3875384 +) +(1,12217:12261106,32488201:3875384,452978,122846 +k1,12217:12261106,32488201:3277 +h1,12217:16133213,32488201:0,411205,112570 +) +k1,12217:16381334,32488201:244844 +k1,12217:18233776,32488201:244844 +k1,12217:19854221,32488201:244844 +k1,12217:22444600,32488201:244845 +k1,12217:23880889,32488201:244844 +k1,12217:27441855,32488201:244844 +k1,12217:29185507,32488201:244844 +k1,12217:30081780,32488201:244845 +k1,12217:31563944,32488201:244844 +k1,12217:32583029,32488201:0 +) +(1,12218:6630773,33329689:25952256,505283,134348 +g1,12217:11075424,33329689 +g1,12217:13846941,33329689 +g1,12217:14402030,33329689 +g1,12217:17145367,33329689 +k1,12218:32583029,33329689:14095485 +g1,12218:32583029,33329689 +) +v1,12220:6630773,34365175:0,393216,0 +(1,12226:6630773,36012627:25952256,2040668,196608 +g1,12226:6630773,36012627 +g1,12226:6630773,36012627 +g1,12226:6434165,36012627 +(1,12226:6434165,36012627:0,2040668,196608 +r1,12226:32779637,36012627:26345472,2237276,196608 +k1,12226:6434165,36012627:-26345472 +) +(1,12226:6434165,36012627:26345472,2040668,196608 +[1,12226:6630773,36012627:25952256,1844060,0 +(1,12222:6630773,34572793:25952256,404226,107478 +(1,12221:6630773,34572793:0,0,0 +g1,12221:6630773,34572793 +g1,12221:6630773,34572793 +g1,12221:6303093,34572793 +(1,12221:6303093,34572793:0,0,0 +) +g1,12221:6630773,34572793 +) +k1,12222:6630773,34572793:0 +g1,12222:10424522,34572793 +g1,12222:11056814,34572793 +k1,12222:11056814,34572793:0 +h1,12222:13269834,34572793:0,0,0 +k1,12222:32583030,34572793:19313196 +g1,12222:32583030,34572793 +) +(1,12223:6630773,35238971:25952256,410518,107478 +h1,12223:6630773,35238971:0,0,0 +g1,12223:6946919,35238971 +g1,12223:7263065,35238971 +g1,12223:7579211,35238971 +g1,12223:7895357,35238971 +g1,12223:8211503,35238971 +g1,12223:8527649,35238971 +g1,12223:8843795,35238971 +g1,12223:10740670,35238971 +g1,12223:11372962,35238971 +g1,12223:12953691,35238971 +g1,12223:13585983,35238971 +g1,12223:14218275,35238971 +g1,12223:18960461,35238971 +g1,12223:21805772,35238971 +g1,12223:22438064,35238971 +g1,12223:24651084,35238971 +h1,12223:24967230,35238971:0,0,0 +k1,12223:32583029,35238971:7615799 +g1,12223:32583029,35238971 +) +(1,12224:6630773,35905149:25952256,404226,107478 +h1,12224:6630773,35905149:0,0,0 +g1,12224:6946919,35905149 +g1,12224:7263065,35905149 +k1,12224:7263065,35905149:0 +h1,12224:10740667,35905149:0,0,0 +k1,12224:32583029,35905149:21842362 +g1,12224:32583029,35905149 +) +] +) +g1,12226:32583029,36012627 +g1,12226:6630773,36012627 +g1,12226:6630773,36012627 +g1,12226:32583029,36012627 +g1,12226:32583029,36012627 +) +h1,12226:6630773,36209235:0,0,0 +(1,12229:6630773,45706769:25952256,9062689,0 +k1,12229:10523651,45706769:3892878 +h1,12228:10523651,45706769:0,0,0 +(1,12228:10523651,45706769:18166500,9062689,0 +(1,12228:10523651,45706769:18167381,9062712,0 +(1,12228:10523651,45706769:18167381,9062712,0 +(1,12228:10523651,45706769:0,9062712,0 +(1,12228:10523651,45706769:0,14155776,0 +(1,12228:10523651,45706769:28377088,14155776,0 +) +k1,12228:10523651,45706769:-28377088 +) +) +g1,12228:28691032,45706769 +) +) +) +g1,12229:28690151,45706769 +k1,12229:32583029,45706769:3892878 +) +] +(1,12238:32583029,45706769:0,0,0 +g1,12238:32583029,45706769 +) +) +] +(1,12238:6630773,47279633:25952256,0,0 +h1,12238:6630773,47279633:25952256,0,0 +) +] +h1,12238:4262630,4025873:0,0,0 +] +!22703 }232 -Input:1598:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1599:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1600:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1601:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1602:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1603:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1604:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1605:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1606:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1607:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1608:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 +Input:1573:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1574:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1575:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1576:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1577:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1578:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1579:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1580:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1581:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1582:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1583:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1584:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1585:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1586:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1587:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1588:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1589:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1590:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1591:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1592:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1593:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1594:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1595:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1596:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1597:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1598:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1599:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1600:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1601:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1602:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2772 {233 -[1,12290:4262630,47279633:28320399,43253760,0 -(1,12290:4262630,4025873:0,0,0 -[1,12290:-473657,4025873:25952256,0,0 -(1,12290:-473657,-710414:25952256,0,0 -h1,12290:-473657,-710414:0,0,0 -(1,12290:-473657,-710414:0,0,0 -(1,12290:-473657,-710414:0,0,0 -g1,12290:-473657,-710414 -(1,12290:-473657,-710414:65781,0,65781 -g1,12290:-407876,-710414 -[1,12290:-407876,-644633:0,0,0 +[1,12286:4262630,47279633:28320399,43253760,0 +(1,12286:4262630,4025873:0,0,0 +[1,12286:-473657,4025873:25952256,0,0 +(1,12286:-473657,-710414:25952256,0,0 +h1,12286:-473657,-710414:0,0,0 +(1,12286:-473657,-710414:0,0,0 +(1,12286:-473657,-710414:0,0,0 +g1,12286:-473657,-710414 +(1,12286:-473657,-710414:65781,0,65781 +g1,12286:-407876,-710414 +[1,12286:-407876,-644633:0,0,0 ] ) -k1,12290:-473657,-710414:-65781 +k1,12286:-473657,-710414:-65781 ) ) -k1,12290:25478599,-710414:25952256 -g1,12290:25478599,-710414 +k1,12286:25478599,-710414:25952256 +g1,12286:25478599,-710414 ) ] ) -[1,12290:6630773,47279633:25952256,43253760,0 -[1,12290:6630773,4812305:25952256,786432,0 -(1,12290:6630773,4812305:25952256,513147,134348 -(1,12290:6630773,4812305:25952256,513147,134348 -g1,12290:3078558,4812305 -[1,12290:3078558,4812305:0,0,0 -(1,12290:3078558,2439708:0,1703936,0 -k1,12290:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12290:2537886,2439708:1179648,16384,0 +[1,12286:6630773,47279633:25952256,43253760,0 +[1,12286:6630773,4812305:25952256,786432,0 +(1,12286:6630773,4812305:25952256,513147,134348 +(1,12286:6630773,4812305:25952256,513147,134348 +g1,12286:3078558,4812305 +[1,12286:3078558,4812305:0,0,0 +(1,12286:3078558,2439708:0,1703936,0 +k1,12286:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12286:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12290:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12286:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12290:3078558,4812305:0,0,0 -(1,12290:3078558,2439708:0,1703936,0 -g1,12290:29030814,2439708 -g1,12290:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12290:36151628,1915420:16384,1179648,0 +[1,12286:3078558,4812305:0,0,0 +(1,12286:3078558,2439708:0,1703936,0 +g1,12286:29030814,2439708 +g1,12286:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12286:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12290:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12286:37855564,2439708:1179648,16384,0 ) ) -k1,12290:3078556,2439708:-34777008 +k1,12286:3078556,2439708:-34777008 ) ] -[1,12290:3078558,4812305:0,0,0 -(1,12290:3078558,49800853:0,16384,2228224 -k1,12290:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12290:2537886,49800853:1179648,16384,0 +[1,12286:3078558,4812305:0,0,0 +(1,12286:3078558,49800853:0,16384,2228224 +k1,12286:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12286:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12290:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12286:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12290:3078558,4812305:0,0,0 -(1,12290:3078558,49800853:0,16384,2228224 -g1,12290:29030814,49800853 -g1,12290:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12290:36151628,51504789:16384,1179648,0 +[1,12286:3078558,4812305:0,0,0 +(1,12286:3078558,49800853:0,16384,2228224 +g1,12286:29030814,49800853 +g1,12286:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12286:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12290:37855564,49800853:1179648,16384,0 -) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12286:37855564,49800853:1179648,16384,0 ) -k1,12290:3078556,49800853:-34777008 -) -] -g1,12290:6630773,4812305 -k1,12290:25712890,4812305:17886740 -g1,12290:29057847,4812305 -g1,12290:29873114,4812305 ) +k1,12286:3078556,49800853:-34777008 ) ] -[1,12290:6630773,45706769:25952256,40108032,0 -(1,12290:6630773,45706769:25952256,40108032,0 -(1,12290:6630773,45706769:0,0,0 -g1,12290:6630773,45706769 -) -[1,12290:6630773,45706769:25952256,40108032,0 -(1,12245:6630773,14661426:25952256,9062689,0 -k1,12245:10523651,14661426:3892878 -h1,12244:10523651,14661426:0,0,0 -(1,12244:10523651,14661426:18166500,9062689,0 -(1,12244:10523651,14661426:18167381,9062712,0 -(1,12244:10523651,14661426:18167381,9062712,0 -(1,12244:10523651,14661426:0,9062712,0 -(1,12244:10523651,14661426:0,14155776,0 -(1,12244:10523651,14661426:28377088,14155776,0 -) -k1,12244:10523651,14661426:-28377088 -) -) -g1,12244:28691032,14661426 +g1,12286:6630773,4812305 +k1,12286:25712890,4812305:17886740 +g1,12286:29057847,4812305 +g1,12286:29873114,4812305 ) ) -) -g1,12245:28690151,14661426 -k1,12245:32583029,14661426:3892878 -) -(1,12255:6630773,15502914:25952256,513147,134348 -h1,12254:6630773,15502914:983040,0,0 -k1,12254:10249408,15502914:359530 -k1,12254:12263723,15502914:359531 -k1,12254:16063238,15502914:359530 -k1,12254:17370420,15502914:359531 -k1,12254:20306170,15502914:359530 -k1,12254:22164508,15502914:359530 -k1,12254:24556966,15502914:359531 -k1,12254:25935581,15502914:359530 -k1,12254:28177961,15502914:359531 -k1,12254:31061938,15502914:359530 -k1,12255:32583029,15502914:0 -) -(1,12255:6630773,16344402:25952256,513147,122846 -(1,12254:6630773,16344402:0,452978,122846 -r1,12254:10154445,16344402:3523672,575824,122846 -k1,12254:6630773,16344402:-3523672 -) -(1,12254:6630773,16344402:3523672,452978,122846 -k1,12254:6630773,16344402:3277 -h1,12254:10151168,16344402:0,411205,112570 -) -k1,12254:10579723,16344402:251608 -(1,12254:10579723,16344402:0,452978,122846 -r1,12254:14103395,16344402:3523672,575824,122846 -k1,12254:10579723,16344402:-3523672 -) -(1,12254:10579723,16344402:3523672,452978,122846 -k1,12254:10579723,16344402:3277 -h1,12254:14100118,16344402:0,411205,112570 -) -k1,12254:14355004,16344402:251609 -k1,12254:15798057,16344402:251608 -(1,12254:15798057,16344402:0,452978,122846 -r1,12254:19673441,16344402:3875384,575824,122846 -k1,12254:15798057,16344402:-3875384 -) -(1,12254:15798057,16344402:3875384,452978,122846 -k1,12254:15798057,16344402:3277 -h1,12254:19670164,16344402:0,411205,112570 -) -k1,12254:20098720,16344402:251609 -k1,12254:21547015,16344402:251608 -k1,12254:23104756,16344402:251608 -k1,12254:24528804,16344402:251609 -k1,12254:26366383,16344402:251608 -k1,12254:29934114,16344402:251609 -k1,12254:31377167,16344402:251608 -k1,12255:32583029,16344402:0 -) -(1,12255:6630773,17185890:25952256,505283,134348 -k1,12254:8219147,17185890:235711 -k1,12254:10127337,17185890:235711 -k1,12254:14333219,17185890:235711 -k1,12254:16258448,17185890:235711 -k1,12254:17513244,17185890:235711 -k1,12254:19330995,17185890:235712 -k1,12254:20723416,17185890:235711 -k1,12254:22875400,17185890:235711 -k1,12254:25589683,17185890:235711 -k1,12254:27324202,17185890:235711 -k1,12254:30676805,17185890:235711 -k1,12254:31563944,17185890:235711 -k1,12254:32583029,17185890:0 -) -(1,12255:6630773,18027378:25952256,505283,134348 -k1,12254:9992746,18027378:297509 -(1,12254:9992746,18027378:0,452978,115847 -r1,12254:11757859,18027378:1765113,568825,115847 -k1,12254:9992746,18027378:-1765113 -) -(1,12254:9992746,18027378:1765113,452978,115847 -k1,12254:9992746,18027378:3277 -h1,12254:11754582,18027378:0,411205,112570 -) -k1,12254:12055367,18027378:297508 -k1,12254:13544321,18027378:297509 -(1,12254:13544321,18027378:0,452978,115847 -r1,12254:16716281,18027378:3171960,568825,115847 -k1,12254:13544321,18027378:-3171960 -) -(1,12254:13544321,18027378:3171960,452978,115847 -k1,12254:13544321,18027378:3277 -h1,12254:16713004,18027378:0,411205,112570 -) -k1,12254:17013790,18027378:297509 -k1,12254:21198239,18027378:297509 -k1,12254:22514832,18027378:297508 -k1,12254:25600243,18027378:297509 -k1,12254:27094439,18027378:297509 -k1,12254:28890755,18027378:297508 -k1,12254:31189078,18027378:297509 -k1,12254:32583029,18027378:0 -) -(1,12255:6630773,18868866:25952256,513147,134348 -g1,12254:8526729,18868866 -g1,12254:10380742,18868866 -g1,12254:12646321,18868866 -g1,12254:14997752,18868866 -g1,12254:15848409,18868866 -g1,12254:17066723,18868866 -g1,12254:18755585,18868866 -g1,12254:19614106,18868866 -g1,12254:20832420,18868866 -g1,12254:23556096,18868866 -k1,12255:32583029,18868866:7505842 -g1,12255:32583029,18868866 -) -(1,12257:6630773,19710354:25952256,505283,134348 -h1,12256:6630773,19710354:983040,0,0 -(1,12256:7613813,19710354:0,452978,122846 -r1,12256:11137485,19710354:3523672,575824,122846 -k1,12256:7613813,19710354:-3523672 -) -(1,12256:7613813,19710354:3523672,452978,122846 -k1,12256:7613813,19710354:3277 -h1,12256:11134208,19710354:0,411205,112570 -) -k1,12256:11697073,19710354:559588 -k1,12256:13448106,19710354:559588 -(1,12256:13448106,19710354:0,452978,122846 -r1,12256:16971778,19710354:3523672,575824,122846 -k1,12256:13448106,19710354:-3523672 -) -(1,12256:13448106,19710354:3523672,452978,122846 -k1,12256:13448106,19710354:3277 -h1,12256:16968501,19710354:0,411205,112570 -) -k1,12256:17531366,19710354:559588 -k1,12256:20382748,19710354:559588 -k1,12256:21298196,19710354:559588 -k1,12256:23730803,19710354:559588 -k1,12256:27308324,19710354:559588 -(1,12256:27308324,19710354:0,452978,115847 -r1,12256:30831996,19710354:3523672,568825,115847 -k1,12256:27308324,19710354:-3523672 -) -(1,12256:27308324,19710354:3523672,452978,115847 -k1,12256:27308324,19710354:3277 -h1,12256:30828719,19710354:0,411205,112570 -) -k1,12256:31391584,19710354:559588 -k1,12257:32583029,19710354:0 -) -(1,12257:6630773,20551842:25952256,513147,134348 -(1,12256:6630773,20551842:0,452978,115847 -r1,12256:10154445,20551842:3523672,568825,115847 -k1,12256:6630773,20551842:-3523672 -) -(1,12256:6630773,20551842:3523672,452978,115847 -k1,12256:6630773,20551842:3277 -h1,12256:10151168,20551842:0,411205,112570 -) -k1,12256:10589296,20551842:261181 -k1,12256:14820647,20551842:261180 -k1,12256:17926746,20551842:261181 -k1,12256:19755548,20551842:261181 -k1,12256:21718699,20551842:261181 -k1,12256:24219900,20551842:261180 -k1,12256:25500166,20551842:261181 -k1,12256:27150710,20551842:261181 -k1,12256:28359541,20551842:261180 -k1,12256:30317449,20551842:261181 -k1,12257:32583029,20551842:0 -) -(1,12257:6630773,21393330:25952256,513147,126483 -k1,12256:8013208,21393330:260459 -k1,12256:9377948,21393330:260458 -k1,12256:10924223,21393330:260459 -k1,12256:11932448,21393330:260459 -k1,12256:14398194,21393330:260459 -k1,12256:15344814,21393330:260458 -k1,12256:18363028,21393330:260459 -k1,12256:21243616,21393330:260459 -k1,12256:23985922,21393330:260458 -k1,12256:25443068,21393330:260459 -k1,12256:27834758,21393330:260459 -k1,12256:29042868,21393330:260459 -k1,12256:30506567,21393330:260458 -k1,12256:31298523,21393330:260459 -k1,12256:32583029,21393330:0 -) -(1,12257:6630773,22234818:25952256,513147,134348 -k1,12256:8560426,22234818:232926 -k1,12256:10859702,22234818:232926 -k1,12256:12084187,22234818:232925 -k1,12256:13918813,22234818:232926 -k1,12256:17456720,22234818:232926 -k1,12256:19202872,22234818:232926 -k1,12256:20087225,22234818:232925 -k1,12256:23117228,22234818:232926 -k1,12256:24957752,22234818:232926 -k1,12256:27142340,22234818:232926 -k1,12256:28817712,22234818:232925 -k1,12256:31575085,22234818:232926 -k1,12257:32583029,22234818:0 -) -(1,12257:6630773,23076306:25952256,513147,134348 -k1,12256:10364313,23076306:283069 -k1,12256:12120630,23076306:283068 -k1,12256:14802317,23076306:283069 -k1,12256:16369891,23076306:283068 -k1,12256:17521312,23076306:283069 -k1,12256:19352996,23076306:283068 -k1,12256:20287493,23076306:283069 -k1,12256:23427931,23076306:283068 -k1,12256:24481703,23076306:283069 -k1,12256:26488368,23076306:283068 -k1,12256:27384199,23076306:283069 -k1,12256:28686352,23076306:283068 -k1,12256:30046833,23076306:283069 -k1,12256:30989193,23076306:283068 -k1,12256:32583029,23076306:0 -) -(1,12257:6630773,23917794:25952256,505283,126483 -k1,12257:32583030,23917794:24310580 -g1,12257:32583030,23917794 -) -v1,12259:6630773,25108260:0,393216,0 -(1,12267:6630773,28088068:25952256,3373024,196608 -g1,12267:6630773,28088068 -g1,12267:6630773,28088068 -g1,12267:6434165,28088068 -(1,12267:6434165,28088068:0,3373024,196608 -r1,12267:32779637,28088068:26345472,3569632,196608 -k1,12267:6434165,28088068:-26345472 -) -(1,12267:6434165,28088068:26345472,3373024,196608 -[1,12267:6630773,28088068:25952256,3176416,0 -(1,12261:6630773,25315878:25952256,404226,107478 -(1,12260:6630773,25315878:0,0,0 -g1,12260:6630773,25315878 -g1,12260:6630773,25315878 -g1,12260:6303093,25315878 -(1,12260:6303093,25315878:0,0,0 -) -g1,12260:6630773,25315878 -) -k1,12261:6630773,25315878:0 -g1,12261:10424522,25315878 -g1,12261:11056814,25315878 -k1,12261:11056814,25315878:0 -h1,12261:13269834,25315878:0,0,0 -k1,12261:32583030,25315878:19313196 -g1,12261:32583030,25315878 -) -(1,12262:6630773,25982056:25952256,410518,107478 -h1,12262:6630773,25982056:0,0,0 -g1,12262:6946919,25982056 -g1,12262:7263065,25982056 -g1,12262:7579211,25982056 -g1,12262:7895357,25982056 -g1,12262:8211503,25982056 -g1,12262:8527649,25982056 -g1,12262:8843795,25982056 -g1,12262:10740670,25982056 -g1,12262:11372962,25982056 -g1,12262:12953691,25982056 -g1,12262:13585983,25982056 -g1,12262:14218275,25982056 -g1,12262:18960461,25982056 -g1,12262:20541190,25982056 -g1,12262:21173482,25982056 -g1,12262:23386502,25982056 -h1,12262:23702648,25982056:0,0,0 -k1,12262:32583029,25982056:8880381 -g1,12262:32583029,25982056 -) -(1,12263:6630773,26648234:25952256,404226,107478 -h1,12263:6630773,26648234:0,0,0 -g1,12263:6946919,26648234 -g1,12263:7263065,26648234 -g1,12263:13269833,26648234 -g1,12263:13902125,26648234 -g1,12263:16747437,26648234 -h1,12263:17063583,26648234:0,0,0 -k1,12263:32583029,26648234:15519446 -g1,12263:32583029,26648234 -) -(1,12264:6630773,27314412:25952256,404226,107478 -h1,12264:6630773,27314412:0,0,0 -g1,12264:6946919,27314412 -g1,12264:7263065,27314412 -g1,12264:14218271,27314412 -g1,12264:14850563,27314412 -g1,12264:16747438,27314412 -g1,12264:18644312,27314412 -g1,12264:19276604,27314412 -g1,12264:22438061,27314412 -h1,12264:22754207,27314412:0,0,0 -k1,12264:32583029,27314412:9828822 -g1,12264:32583029,27314412 -) -(1,12265:6630773,27980590:25952256,404226,107478 -h1,12265:6630773,27980590:0,0,0 -g1,12265:6946919,27980590 -g1,12265:7263065,27980590 -g1,12265:14218271,27980590 -g1,12265:14850563,27980590 -g1,12265:16747438,27980590 -g1,12265:19592749,27980590 -g1,12265:20225041,27980590 -h1,12265:23070352,27980590:0,0,0 -k1,12265:32583029,27980590:9512677 -g1,12265:32583029,27980590 -) -] -) -g1,12267:32583029,28088068 -g1,12267:6630773,28088068 -g1,12267:6630773,28088068 -g1,12267:32583029,28088068 -g1,12267:32583029,28088068 -) -h1,12267:6630773,28284676:0,0,0 -(1,12270:6630773,37937189:25952256,9062689,0 -k1,12270:10523651,37937189:3892878 -h1,12269:10523651,37937189:0,0,0 -(1,12269:10523651,37937189:18166500,9062689,0 -(1,12269:10523651,37937189:18167381,9062712,0 -(1,12269:10523651,37937189:18167381,9062712,0 -(1,12269:10523651,37937189:0,9062712,0 -(1,12269:10523651,37937189:0,14155776,0 -(1,12269:10523651,37937189:28377088,14155776,0 -) -k1,12269:10523651,37937189:-28377088 -) -) -g1,12269:28691032,37937189 -) -) -) -g1,12270:28690151,37937189 -k1,12270:32583029,37937189:3892878 -) -v1,12278:6630773,39302965:0,393216,0 -(1,12279:6630773,42422620:25952256,3512871,616038 -g1,12279:6630773,42422620 -(1,12279:6630773,42422620:25952256,3512871,616038 -(1,12279:6630773,43038658:25952256,4128909,0 -[1,12279:6630773,43038658:25952256,4128909,0 -(1,12279:6630773,43012444:25952256,4076481,0 -r1,12279:6656987,43012444:26214,4076481,0 -[1,12279:6656987,43012444:25899828,4076481,0 -(1,12279:6656987,42422620:25899828,2896833,0 -[1,12279:7246811,42422620:24720180,2896833,0 -(1,12279:7246811,40613161:24720180,1087374,134348 -k1,12278:8696523,40613161:240009 -k1,12278:11299104,40613161:240008 -k1,12278:12558198,40613161:240009 -k1,12278:14537533,40613161:240009 -k1,12278:15436833,40613161:240008 -k1,12278:16695927,40613161:240009 -k1,12278:18590720,40613161:240009 -k1,12278:20718820,40613161:240008 -k1,12278:21574867,40613161:240009 -k1,12278:22833960,40613161:240008 -k1,12278:25735386,40613161:240009 -k1,12278:28004390,40613161:240009 -k1,12278:29665219,40613161:240008 -k1,12278:30947906,40613161:240009 -k1,12278:31966991,40613161:0 -) -(1,12279:7246811,41454649:24720180,513147,134348 -k1,12278:9378697,41454649:276562 -k1,12278:12222960,41454649:276562 -k1,12278:14133335,41454649:276562 -k1,12278:16149222,41454649:276561 -k1,12278:16957281,41454649:276562 -k1,12278:18895836,41454649:276562 -k1,12278:21213844,41454649:276562 -k1,12278:22509491,41454649:276562 -k1,12278:24439526,41454649:276562 -k1,12278:26455414,41454649:276562 -k1,12278:27479741,41454649:276561 -k1,12278:28775388,41454649:276562 -k1,12278:30386918,41454649:276562 -k1,12278:31611131,41454649:276562 -k1,12278:31966991,41454649:0 -) -(1,12279:7246811,42296137:24720180,505283,126483 -g1,12278:9615282,42296137 -g1,12278:11418832,42296137 -g1,12278:12941233,42296137 -g1,12278:15096712,42296137 -g1,12278:15754038,42296137 -g1,12278:16701033,42296137 -g1,12278:20009290,42296137 -g1,12278:20859947,42296137 -g1,12278:22256519,42296137 -g1,12278:23628187,42296137 -(1,12278:23628187,42296137:0,452978,122846 -r1,12279:27855283,42296137:4227096,575824,122846 -k1,12278:23628187,42296137:-4227096 -) -(1,12278:23628187,42296137:4227096,452978,122846 -k1,12278:23628187,42296137:3277 -h1,12278:27852006,42296137:0,411205,112570 -) -g1,12278:28054512,42296137 -k1,12279:31966991,42296137:1697362 -g1,12279:31966991,42296137 -) ] +[1,12286:6630773,45706769:25952256,40108032,0 +(1,12286:6630773,45706769:25952256,40108032,0 +(1,12286:6630773,45706769:0,0,0 +g1,12286:6630773,45706769 ) -] -r1,12279:32583029,43012444:26214,4076481,0 -) -] -) -) -g1,12279:32583029,42422620 +[1,12286:6630773,45706769:25952256,40108032,0 +v1,12238:6630773,6254097:0,393216,0 +(1,12247:6630773,10632240:25952256,4771359,616038 +g1,12247:6630773,10632240 +(1,12247:6630773,10632240:25952256,4771359,616038 +(1,12247:6630773,11248278:25952256,5387397,0 +[1,12247:6630773,11248278:25952256,5387397,0 +(1,12247:6630773,11222064:25952256,5334969,0 +r1,12247:6656987,11222064:26214,5334969,0 +[1,12247:6656987,11222064:25899828,5334969,0 +(1,12247:6656987,10632240:25899828,4155321,0 +[1,12247:7246811,10632240:24720180,4155321,0 +(1,12239:7246811,7564293:24720180,1087374,134348 +k1,12238:8895132,7564293:438618 +k1,12238:11125503,7564293:438617 +k1,12238:12583206,7564293:438618 +k1,12238:15997158,7564293:438617 +k1,12238:17448307,7564293:438618 +k1,12238:19449959,7564293:438618 +k1,12238:21604309,7564293:438617 +k1,12238:23697711,7564293:438618 +k1,12238:25743927,7564293:438618 +k1,12238:27917937,7564293:438617 +(1,12238:27917937,7564293:0,452978,122846 +r1,12247:31793321,7564293:3875384,575824,122846 +k1,12238:27917937,7564293:-3875384 ) -h1,12279:6630773,43038658:0,0,0 -] -(1,12290:32583029,45706769:0,0,0 -g1,12290:32583029,45706769 +(1,12238:27917937,7564293:3875384,452978,122846 +k1,12238:27917937,7564293:3277 +h1,12238:31790044,7564293:0,411205,112570 ) +k1,12239:31966991,7564293:0 ) -] -(1,12290:6630773,47279633:25952256,0,0 -h1,12290:6630773,47279633:25952256,0,0 +(1,12239:7246811,8405781:24720180,505283,126483 +(1,12238:7246811,8405781:0,452978,122846 +r1,12247:11122195,8405781:3875384,575824,122846 +k1,12238:7246811,8405781:-3875384 ) -] -h1,12290:4262630,4025873:0,0,0 -] -!16561 +(1,12238:7246811,8405781:3875384,452978,122846 +k1,12238:7246811,8405781:3277 +h1,12238:11118918,8405781:0,411205,112570 +) +g1,12238:11495094,8405781 +g1,12238:12885768,8405781 +(1,12238:12885768,8405781:0,414482,122846 +r1,12247:16057728,8405781:3171960,537328,122846 +k1,12238:12885768,8405781:-3171960 +) +(1,12238:12885768,8405781:3171960,414482,122846 +k1,12238:12885768,8405781:3277 +h1,12238:16054451,8405781:0,411205,112570 +) +g1,12238:16256957,8405781 +g1,12238:17107614,8405781 +g1,12238:18504186,8405781 +g1,12238:19059275,8405781 +k1,12239:31966991,8405781:11176255 +g1,12239:31966991,8405781 +) +v1,12241:7246811,9596247:0,393216,0 +(1,12245:7246811,9911344:24720180,708313,196608 +g1,12245:7246811,9911344 +g1,12245:7246811,9911344 +g1,12245:7050203,9911344 +(1,12245:7050203,9911344:0,708313,196608 +r1,12247:32163599,9911344:25113396,904921,196608 +k1,12245:7050203,9911344:-25113396 +) +(1,12245:7050203,9911344:25113396,708313,196608 +[1,12245:7246811,9911344:24720180,511705,0 +(1,12243:7246811,9810157:24720180,410518,101187 +(1,12242:7246811,9810157:0,0,0 +g1,12242:7246811,9810157 +g1,12242:7246811,9810157 +g1,12242:6919131,9810157 +(1,12242:6919131,9810157:0,0,0 +) +g1,12242:7246811,9810157 +) +g1,12243:9459831,9810157 +g1,12243:10408269,9810157 +g1,12243:14518164,9810157 +g1,12243:15150456,9810157 +g1,12243:18944208,9810157 +g1,12243:19576500,9810157 +g1,12243:20208792,9810157 +k1,12243:20208792,9810157:0 +h1,12243:23686397,9810157:0,0,0 +k1,12243:31966991,9810157:8280594 +g1,12243:31966991,9810157 +) +] +) +g1,12245:31966991,9911344 +g1,12245:7246811,9911344 +g1,12245:7246811,9911344 +g1,12245:31966991,9911344 +g1,12245:31966991,9911344 +) +h1,12245:7246811,10107952:0,0,0 +] +) +] +r1,12247:32583029,11222064:26214,5334969,0 +) +] +) +) +g1,12247:32583029,10632240 +) +h1,12247:6630773,11248278:0,0,0 +(1,12251:6630773,12614054:25952256,513147,134348 +h1,12250:6630773,12614054:983040,0,0 +k1,12250:9568480,12614054:179952 +(1,12250:9568480,12614054:0,452978,122846 +r1,12250:13443864,12614054:3875384,575824,122846 +k1,12250:9568480,12614054:-3875384 +) +(1,12250:9568480,12614054:3875384,452978,122846 +k1,12250:9568480,12614054:3277 +h1,12250:13440587,12614054:0,411205,112570 +) +k1,12250:13623816,12614054:179952 +k1,12250:15720041,12614054:179952 +k1,12250:16255853,12614054:179952 +k1,12250:17604313,12614054:179953 +k1,12250:20011834,12614054:179952 +k1,12250:24437208,12614054:179952 +(1,12250:24437208,12614054:0,452978,122846 +r1,12250:28312592,12614054:3875384,575824,122846 +k1,12250:24437208,12614054:-3875384 +) +(1,12250:24437208,12614054:3875384,452978,122846 +k1,12250:24437208,12614054:3277 +h1,12250:28309315,12614054:0,411205,112570 +) +k1,12250:28492544,12614054:179952 +k1,12250:31529210,12614054:179952 +k1,12251:32583029,12614054:0 +) +(1,12251:6630773,13455542:25952256,505283,134348 +k1,12250:7796202,13455542:175180 +k1,12250:8990468,13455542:175181 +k1,12250:10513068,13455542:175180 +k1,12250:12556680,13455542:175181 +k1,12250:13750945,13455542:175180 +k1,12250:15094633,13455542:175181 +k1,12250:18386705,13455542:175180 +k1,12250:19213314,13455542:175181 +k1,12250:20407579,13455542:175180 +(1,12250:20407579,13455542:0,459977,115847 +r1,12250:21820980,13455542:1413401,575824,115847 +k1,12250:20407579,13455542:-1413401 +) +(1,12250:20407579,13455542:1413401,459977,115847 +k1,12250:20407579,13455542:3277 +h1,12250:21817703,13455542:0,411205,112570 +) +k1,12250:21996161,13455542:175181 +k1,12250:25098178,13455542:175180 +k1,12250:25901194,13455542:175181 +k1,12250:28707645,13455542:175180 +(1,12250:28707645,13455542:0,452978,122846 +r1,12250:32583029,13455542:3875384,575824,122846 +k1,12250:28707645,13455542:-3875384 +) +(1,12250:28707645,13455542:3875384,452978,122846 +k1,12250:28707645,13455542:3277 +h1,12250:32579752,13455542:0,411205,112570 +) +k1,12250:32583029,13455542:0 +) +(1,12251:6630773,14297030:25952256,505283,126483 +k1,12250:8767058,14297030:220012 +k1,12250:10159510,14297030:220013 +k1,12250:11878330,14297030:220012 +k1,12250:13953011,14297030:220012 +k1,12250:14982393,14297030:220012 +k1,12250:16221491,14297030:220013 +(1,12250:16221491,14297030:0,414482,115847 +r1,12250:16579757,14297030:358266,530329,115847 +k1,12250:16221491,14297030:-358266 +) +(1,12250:16221491,14297030:358266,414482,115847 +k1,12250:16221491,14297030:3277 +h1,12250:16576480,14297030:0,411205,112570 +) +k1,12250:16973439,14297030:220012 +(1,12250:16973439,14297030:0,452978,115847 +r1,12250:18386840,14297030:1413401,568825,115847 +k1,12250:16973439,14297030:-1413401 +) +(1,12250:16973439,14297030:1413401,452978,115847 +k1,12250:16973439,14297030:3277 +h1,12250:18383563,14297030:0,411205,112570 +) +k1,12250:18606852,14297030:220012 +k1,12250:20018310,14297030:220013 +(1,12250:20018310,14297030:0,414482,115847 +r1,12250:21431711,14297030:1413401,530329,115847 +k1,12250:20018310,14297030:-1413401 +) +(1,12250:20018310,14297030:1413401,414482,115847 +k1,12250:20018310,14297030:3277 +h1,12250:21428434,14297030:0,411205,112570 +) +k1,12250:21651723,14297030:220012 +k1,12250:25086931,14297030:220012 +k1,12250:26700894,14297030:220012 +k1,12250:27939992,14297030:220013 +k1,12250:29947826,14297030:220012 +k1,12250:32583029,14297030:0 +) +(1,12251:6630773,15138518:25952256,513147,134348 +k1,12250:7884001,15138518:234143 +k1,12250:9616952,15138518:234143 +k1,12250:11460004,15138518:234143 +k1,12250:14811039,15138518:234143 +k1,12250:15696610,15138518:234143 +k1,12250:16949838,15138518:234143 +(1,12250:16949838,15138518:0,459977,115847 +r1,12250:18363239,15138518:1413401,575824,115847 +k1,12250:16949838,15138518:-1413401 +) +(1,12250:16949838,15138518:1413401,459977,115847 +k1,12250:16949838,15138518:3277 +h1,12250:18359962,15138518:0,411205,112570 +) +k1,12250:18597381,15138518:234142 +k1,12250:21758361,15138518:234143 +k1,12250:24268569,15138518:234143 +(1,12250:24268569,15138518:0,452978,122846 +r1,12250:28495665,15138518:4227096,575824,122846 +k1,12250:24268569,15138518:-4227096 +) +(1,12250:24268569,15138518:4227096,452978,122846 +k1,12250:24268569,15138518:3277 +h1,12250:28492388,15138518:0,411205,112570 +) +k1,12250:28729808,15138518:234143 +k1,12250:29495448,15138518:234143 +k1,12250:31931601,15138518:234143 +k1,12251:32583029,15138518:0 +) +(1,12251:6630773,15980006:25952256,513147,134348 +(1,12250:6630773,15980006:0,452978,122846 +r1,12250:10506157,15980006:3875384,575824,122846 +k1,12250:6630773,15980006:-3875384 +) +(1,12250:6630773,15980006:3875384,452978,122846 +k1,12250:6630773,15980006:3277 +h1,12250:10502880,15980006:0,411205,112570 +) +k1,12250:10678230,15980006:172073 +k1,12250:11922473,15980006:172074 +k1,12250:14920458,15980006:172073 +k1,12250:16111617,15980006:172074 +k1,12250:18855978,15980006:172073 +k1,12250:23099804,15980006:172074 +k1,12250:25829747,15980006:172073 +k1,12250:26357681,15980006:172074 +k1,12250:28561370,15980006:172073 +k1,12250:31298523,15980006:172074 +k1,12250:32583029,15980006:0 +) +(1,12251:6630773,16821494:25952256,459977,126483 +g1,12250:9686716,16821494 +(1,12250:9686716,16821494:0,459977,115847 +r1,12250:11100117,16821494:1413401,575824,115847 +k1,12250:9686716,16821494:-1413401 +) +(1,12250:9686716,16821494:1413401,459977,115847 +k1,12250:9686716,16821494:3277 +h1,12250:11096840,16821494:0,411205,112570 +) +k1,12251:32583029,16821494:21309242 +g1,12251:32583029,16821494 +) +(1,12253:6630773,17662982:25952256,513147,126483 +h1,12252:6630773,17662982:983040,0,0 +k1,12252:9505962,17662982:165275 +k1,12252:10330529,17662982:165275 +k1,12252:12044420,17662982:165275 +k1,12252:13416868,17662982:165275 +k1,12252:16672166,17662982:165275 +k1,12252:18692764,17662982:165274 +k1,12252:19805690,17662982:165275 +(1,12252:19805690,17662982:0,452978,122846 +r1,12252:23329362,17662982:3523672,575824,122846 +k1,12252:19805690,17662982:-3523672 +) +(1,12252:19805690,17662982:3523672,452978,122846 +k1,12252:19805690,17662982:3277 +h1,12252:23326085,17662982:0,411205,112570 +) +k1,12252:23494637,17662982:165275 +k1,12252:24764194,17662982:165275 +k1,12252:25677235,17662982:165275 +k1,12252:28420696,17662982:165275 +k1,12252:29237399,17662982:165275 +(1,12252:29237399,17662982:0,452978,122846 +r1,12252:32409359,17662982:3171960,575824,122846 +k1,12252:29237399,17662982:-3171960 +) +(1,12252:29237399,17662982:3171960,452978,122846 +k1,12252:29237399,17662982:3277 +h1,12252:32406082,17662982:0,411205,112570 +) +k1,12253:32583029,17662982:0 +) +(1,12253:6630773,18504470:25952256,505283,134348 +(1,12252:6630773,18504470:0,452978,122846 +r1,12252:10506157,18504470:3875384,575824,122846 +k1,12252:6630773,18504470:-3875384 +) +(1,12252:6630773,18504470:3875384,452978,122846 +k1,12252:6630773,18504470:3277 +h1,12252:10502880,18504470:0,411205,112570 +) +k1,12252:10951448,18504470:271621 +(1,12252:10951448,18504470:0,414482,122846 +r1,12252:14123408,18504470:3171960,537328,122846 +k1,12252:10951448,18504470:-3171960 +) +(1,12252:10951448,18504470:3171960,414482,122846 +k1,12252:10951448,18504470:3277 +h1,12252:14120131,18504470:0,411205,112570 +) +k1,12252:14395029,18504470:271621 +k1,12252:15858094,18504470:271620 +k1,12252:17831685,18504470:271621 +k1,12252:21543291,18504470:271621 +k1,12252:24904935,18504470:271621 +k1,12252:25792594,18504470:271621 +k1,12252:27267455,18504470:271620 +k1,12252:29991433,18504470:271621 +k1,12252:30890889,18504470:271621 +k1,12252:32583029,18504470:0 +) +(1,12253:6630773,19345958:25952256,513147,134348 +k1,12252:8770570,19345958:268744 +k1,12252:9497412,19345958:268745 +k1,12252:10297653,19345958:268744 +k1,12252:12543618,19345958:268744 +k1,12252:13463790,19345958:268744 +k1,12252:15401737,19345958:268745 +k1,12252:16689566,19345958:268744 +k1,12252:20533954,19345958:268744 +k1,12252:22500737,19345958:268745 +k1,12252:23788566,19345958:268744 +k1,12252:26067955,19345958:268744 +k1,12252:29378225,19345958:268744 +k1,12252:31299133,19345958:268745 +k1,12252:32227169,19345958:268744 +k1,12252:32583029,19345958:0 +) +(1,12253:6630773,20187446:25952256,513147,134348 +k1,12252:8803796,20187446:187282 +k1,12252:11047597,20187446:187281 +k1,12252:11862714,20187446:187282 +k1,12252:13069080,20187446:187281 +k1,12252:14814153,20187446:187282 +k1,12252:18189761,20187446:187281 +k1,12252:21212130,20187446:187282 +k1,12252:22267763,20187446:187281 +k1,12252:24124247,20187446:187282 +k1,12252:25330613,20187446:187281 +k1,12252:27767746,20187446:187282 +k1,12252:28614319,20187446:187281 +k1,12252:29820686,20187446:187282 +k1,12252:32583029,20187446:0 +) +(1,12253:6630773,21028934:25952256,513147,134348 +k1,12252:8414817,21028934:213801 +k1,12252:9390147,21028934:213802 +k1,12252:11339341,21028934:213801 +(1,12252:11339341,21028934:0,452978,115847 +r1,12252:17676709,21028934:6337368,568825,115847 +k1,12252:11339341,21028934:-6337368 +) +(1,12252:11339341,21028934:6337368,452978,115847 +g1,12252:14508025,21028934 +g1,12252:15211449,21028934 +h1,12252:17673432,21028934:0,411205,112570 +) +k1,12252:17890511,21028934:213802 +k1,12252:20431495,21028934:213801 +k1,12252:21304588,21028934:213801 +k1,12252:22537475,21028934:213802 +k1,12252:25016856,21028934:213801 +(1,12252:25016856,21028934:0,452978,115847 +r1,12252:32409359,21028934:7392503,568825,115847 +k1,12252:25016856,21028934:-7392503 +) +(1,12252:25016856,21028934:7392503,452978,115847 +g1,12252:28185540,21028934 +g1,12252:28888964,21028934 +h1,12252:32406082,21028934:0,411205,112570 +) +k1,12252:32583029,21028934:0 +) +(1,12253:6630773,21870422:25952256,513147,138281 +k1,12252:9969129,21870422:248989 +k1,12252:11237202,21870422:248988 +$1,12252:11237202,21870422 +$1,12252:11789015,21870422 +k1,12252:12038004,21870422:248989 +k1,12252:13539386,21870422:248989 +k1,12252:14447667,21870422:248989 +k1,12252:15715740,21870422:248988 +k1,12252:17820053,21870422:248989 +k1,12252:19937473,21870422:248989 +k1,12252:20837889,21870422:248988 +k1,12252:22371384,21870422:248989 +k1,12252:24621187,21870422:248989 +k1,12252:26605569,21870422:248989 +(1,12252:26605569,21870422:0,452978,122846 +r1,12252:29777529,21870422:3171960,575824,122846 +k1,12252:26605569,21870422:-3171960 +) +(1,12252:26605569,21870422:3171960,452978,122846 +k1,12252:26605569,21870422:3277 +h1,12252:29774252,21870422:0,411205,112570 +) +k1,12252:30026517,21870422:248988 +k1,12252:31084876,21870422:248989 +k1,12252:32583029,21870422:0 +) +(1,12253:6630773,22711910:25952256,505283,95026 +h1,12252:7826150,22711910:0,0,0 +k1,12253:32583030,22711910:24376116 +g1,12253:32583030,22711910 +) +v1,12255:6630773,23902376:0,393216,0 +(1,12261:6630773,25549828:25952256,2040668,196608 +g1,12261:6630773,25549828 +g1,12261:6630773,25549828 +g1,12261:6434165,25549828 +(1,12261:6434165,25549828:0,2040668,196608 +r1,12261:32779637,25549828:26345472,2237276,196608 +k1,12261:6434165,25549828:-26345472 +) +(1,12261:6434165,25549828:26345472,2040668,196608 +[1,12261:6630773,25549828:25952256,1844060,0 +(1,12257:6630773,24109994:25952256,404226,107478 +(1,12256:6630773,24109994:0,0,0 +g1,12256:6630773,24109994 +g1,12256:6630773,24109994 +g1,12256:6303093,24109994 +(1,12256:6303093,24109994:0,0,0 +) +g1,12256:6630773,24109994 +) +k1,12257:6630773,24109994:0 +g1,12257:10424522,24109994 +g1,12257:11056814,24109994 +k1,12257:11056814,24109994:0 +h1,12257:13269834,24109994:0,0,0 +k1,12257:32583030,24109994:19313196 +g1,12257:32583030,24109994 +) +(1,12258:6630773,24776172:25952256,410518,107478 +h1,12258:6630773,24776172:0,0,0 +g1,12258:6946919,24776172 +g1,12258:7263065,24776172 +g1,12258:7579211,24776172 +g1,12258:7895357,24776172 +g1,12258:8211503,24776172 +g1,12258:8527649,24776172 +g1,12258:8843795,24776172 +g1,12258:10740670,24776172 +g1,12258:11372962,24776172 +g1,12258:12953691,24776172 +g1,12258:13585983,24776172 +g1,12258:14218275,24776172 +g1,12258:18960461,24776172 +g1,12258:20541190,24776172 +g1,12258:21173482,24776172 +g1,12258:23386502,24776172 +h1,12258:23702648,24776172:0,0,0 +k1,12258:32583029,24776172:8880381 +g1,12258:32583029,24776172 +) +(1,12259:6630773,25442350:25952256,404226,107478 +h1,12259:6630773,25442350:0,0,0 +g1,12259:6946919,25442350 +g1,12259:7263065,25442350 +g1,12259:13269833,25442350 +g1,12259:13902125,25442350 +h1,12259:16431291,25442350:0,0,0 +k1,12259:32583029,25442350:16151738 +g1,12259:32583029,25442350 +) +] +) +g1,12261:32583029,25549828 +g1,12261:6630773,25549828 +g1,12261:6630773,25549828 +g1,12261:32583029,25549828 +g1,12261:32583029,25549828 +) +h1,12261:6630773,25746436:0,0,0 +(1,12264:6630773,35398949:25952256,9062689,0 +k1,12264:10523651,35398949:3892878 +h1,12263:10523651,35398949:0,0,0 +(1,12263:10523651,35398949:18166500,9062689,0 +(1,12263:10523651,35398949:18167381,9062712,0 +(1,12263:10523651,35398949:18167381,9062712,0 +(1,12263:10523651,35398949:0,9062712,0 +(1,12263:10523651,35398949:0,14155776,0 +(1,12263:10523651,35398949:28377088,14155776,0 +) +k1,12263:10523651,35398949:-28377088 +) +) +g1,12263:28691032,35398949 +) +) +) +g1,12264:28690151,35398949 +k1,12264:32583029,35398949:3892878 +) +(1,12274:6630773,36240437:25952256,513147,134348 +h1,12273:6630773,36240437:983040,0,0 +k1,12273:10249408,36240437:359530 +k1,12273:12263723,36240437:359531 +k1,12273:16063238,36240437:359530 +k1,12273:17370420,36240437:359531 +k1,12273:20306170,36240437:359530 +k1,12273:22164508,36240437:359530 +k1,12273:24556966,36240437:359531 +k1,12273:25935581,36240437:359530 +k1,12273:28177961,36240437:359531 +k1,12273:31061938,36240437:359530 +k1,12274:32583029,36240437:0 +) +(1,12274:6630773,37081925:25952256,513147,122846 +(1,12273:6630773,37081925:0,452978,122846 +r1,12273:10154445,37081925:3523672,575824,122846 +k1,12273:6630773,37081925:-3523672 +) +(1,12273:6630773,37081925:3523672,452978,122846 +k1,12273:6630773,37081925:3277 +h1,12273:10151168,37081925:0,411205,112570 +) +k1,12273:10579723,37081925:251608 +(1,12273:10579723,37081925:0,452978,122846 +r1,12273:14103395,37081925:3523672,575824,122846 +k1,12273:10579723,37081925:-3523672 +) +(1,12273:10579723,37081925:3523672,452978,122846 +k1,12273:10579723,37081925:3277 +h1,12273:14100118,37081925:0,411205,112570 +) +k1,12273:14355004,37081925:251609 +k1,12273:15798057,37081925:251608 +(1,12273:15798057,37081925:0,452978,122846 +r1,12273:19673441,37081925:3875384,575824,122846 +k1,12273:15798057,37081925:-3875384 +) +(1,12273:15798057,37081925:3875384,452978,122846 +k1,12273:15798057,37081925:3277 +h1,12273:19670164,37081925:0,411205,112570 +) +k1,12273:20098720,37081925:251609 +k1,12273:21547015,37081925:251608 +k1,12273:23104756,37081925:251608 +k1,12273:24528804,37081925:251609 +k1,12273:26366383,37081925:251608 +k1,12273:29934114,37081925:251609 +k1,12273:31377167,37081925:251608 +k1,12274:32583029,37081925:0 +) +(1,12274:6630773,37923413:25952256,505283,134348 +k1,12273:8219147,37923413:235711 +k1,12273:10127337,37923413:235711 +k1,12273:14333219,37923413:235711 +k1,12273:16258448,37923413:235711 +k1,12273:17513244,37923413:235711 +k1,12273:19330995,37923413:235712 +k1,12273:20723416,37923413:235711 +k1,12273:22875400,37923413:235711 +k1,12273:25589683,37923413:235711 +k1,12273:27324202,37923413:235711 +k1,12273:30676805,37923413:235711 +k1,12273:31563944,37923413:235711 +k1,12273:32583029,37923413:0 +) +(1,12274:6630773,38764901:25952256,505283,134348 +k1,12273:9992746,38764901:297509 +(1,12273:9992746,38764901:0,452978,115847 +r1,12273:11757859,38764901:1765113,568825,115847 +k1,12273:9992746,38764901:-1765113 +) +(1,12273:9992746,38764901:1765113,452978,115847 +k1,12273:9992746,38764901:3277 +h1,12273:11754582,38764901:0,411205,112570 +) +k1,12273:12055367,38764901:297508 +k1,12273:13544321,38764901:297509 +(1,12273:13544321,38764901:0,452978,115847 +r1,12273:16716281,38764901:3171960,568825,115847 +k1,12273:13544321,38764901:-3171960 +) +(1,12273:13544321,38764901:3171960,452978,115847 +k1,12273:13544321,38764901:3277 +h1,12273:16713004,38764901:0,411205,112570 +) +k1,12273:17013790,38764901:297509 +k1,12273:21198239,38764901:297509 +k1,12273:22514832,38764901:297508 +k1,12273:25600243,38764901:297509 +k1,12273:27094439,38764901:297509 +k1,12273:28890755,38764901:297508 +k1,12273:31189078,38764901:297509 +k1,12273:32583029,38764901:0 +) +(1,12274:6630773,39606389:25952256,513147,134348 +g1,12273:8526729,39606389 +g1,12273:10380742,39606389 +g1,12273:12646321,39606389 +g1,12273:14997752,39606389 +g1,12273:15848409,39606389 +g1,12273:17066723,39606389 +g1,12273:18755585,39606389 +g1,12273:19614106,39606389 +g1,12273:20832420,39606389 +g1,12273:23556096,39606389 +k1,12274:32583029,39606389:7505842 +g1,12274:32583029,39606389 +) +(1,12276:6630773,40447877:25952256,505283,134348 +h1,12275:6630773,40447877:983040,0,0 +(1,12275:7613813,40447877:0,452978,122846 +r1,12275:11137485,40447877:3523672,575824,122846 +k1,12275:7613813,40447877:-3523672 +) +(1,12275:7613813,40447877:3523672,452978,122846 +k1,12275:7613813,40447877:3277 +h1,12275:11134208,40447877:0,411205,112570 +) +k1,12275:11697073,40447877:559588 +k1,12275:13448106,40447877:559588 +(1,12275:13448106,40447877:0,452978,122846 +r1,12275:16971778,40447877:3523672,575824,122846 +k1,12275:13448106,40447877:-3523672 +) +(1,12275:13448106,40447877:3523672,452978,122846 +k1,12275:13448106,40447877:3277 +h1,12275:16968501,40447877:0,411205,112570 +) +k1,12275:17531366,40447877:559588 +k1,12275:20382748,40447877:559588 +k1,12275:21298196,40447877:559588 +k1,12275:23730803,40447877:559588 +k1,12275:27308324,40447877:559588 +(1,12275:27308324,40447877:0,452978,115847 +r1,12275:30831996,40447877:3523672,568825,115847 +k1,12275:27308324,40447877:-3523672 +) +(1,12275:27308324,40447877:3523672,452978,115847 +k1,12275:27308324,40447877:3277 +h1,12275:30828719,40447877:0,411205,112570 +) +k1,12275:31391584,40447877:559588 +k1,12276:32583029,40447877:0 +) +(1,12276:6630773,41289365:25952256,513147,134348 +(1,12275:6630773,41289365:0,452978,115847 +r1,12275:10154445,41289365:3523672,568825,115847 +k1,12275:6630773,41289365:-3523672 +) +(1,12275:6630773,41289365:3523672,452978,115847 +k1,12275:6630773,41289365:3277 +h1,12275:10151168,41289365:0,411205,112570 +) +k1,12275:10498397,41289365:170282 +k1,12275:14638851,41289365:170283 +k1,12275:17654051,41289365:170282 +k1,12275:19391954,41289365:170282 +k1,12275:21264206,41289365:170282 +k1,12275:23674510,41289365:170283 +k1,12275:24863877,41289365:170282 +k1,12275:26423522,41289365:170282 +k1,12275:27541456,41289365:170283 +k1,12275:29408465,41289365:170282 +k1,12275:32583029,41289365:0 +) +(1,12276:6630773,42130853:25952256,513147,134348 +k1,12275:7877530,42130853:142475 +k1,12275:9305821,42130853:142475 +k1,12275:10196063,42130853:142476 +k1,12275:12543825,42130853:142475 +k1,12275:13372462,42130853:142475 +k1,12275:16272692,42130853:142475 +k1,12275:19035296,42130853:142475 +k1,12275:21659620,42130853:142476 +k1,12275:22998782,42130853:142475 +k1,12275:25272488,42130853:142475 +k1,12275:26362614,42130853:142475 +k1,12275:27708330,42130853:142475 +k1,12275:28382303,42130853:142476 +k1,12275:29809284,42130853:142475 +k1,12275:31648486,42130853:142475 +k1,12276:32583029,42130853:0 +) +(1,12276:6630773,42972341:25952256,513147,134348 +k1,12275:8155200,42972341:179628 +k1,12275:9326388,42972341:179628 +k1,12275:11107716,42972341:179628 +k1,12275:14592325,42972341:179628 +k1,12275:16285179,42972341:179628 +k1,12275:17116236,42972341:179629 +k1,12275:20092941,42972341:179628 +k1,12275:21880167,42972341:179628 +k1,12275:24011457,42972341:179628 +k1,12275:25633532,42972341:179628 +k1,12275:28337607,42972341:179628 +k1,12275:32583029,42972341:0 +) +(1,12276:6630773,43813829:25952256,513147,134348 +g1,12275:8303251,43813829 +g1,12275:10901098,43813829 +g1,12275:12384833,43813829 +g1,12275:13452414,43813829 +g1,12275:15200259,43813829 +g1,12275:16050916,43813829 +g1,12275:19107515,43813829 +g1,12275:20077447,43813829 +g1,12275:22000273,43813829 +g1,12275:22812264,43813829 +g1,12275:24030578,43813829 +g1,12275:25307219,43813829 +g1,12275:26165740,43813829 +g1,12275:27958805,43813829 +k1,12276:32583029,43813829:2982547 +g1,12276:32583029,43813829 +) +v1,12278:6630773,45004295:0,393216,0 +] +(1,12286:32583029,45706769:0,0,0 +g1,12286:32583029,45706769 +) +) +] +(1,12286:6630773,47279633:25952256,0,0 +h1,12286:6630773,47279633:25952256,0,0 +) +] +h1,12286:4262630,4025873:0,0,0 +] +!26120 }233 -Input:1609:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1610:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1611:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1612:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1613:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1614:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1615:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:1603:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1604:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1605:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1606:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1607:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1608:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1609:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {234 [1,12344:4262630,47279633:28320399,43253760,0 (1,12344:4262630,4025873:0,0,0 @@ -214253,19 +214132,19 @@ g1,12344:3078558,4812305 [1,12344:3078558,4812305:0,0,0 (1,12344:3078558,2439708:0,1703936,0 k1,12344:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 r1,12344:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 r1,12344:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) @@ -214276,20 +214155,20 @@ g1,11316:29014430,1915420 (1,12344:3078558,2439708:0,1703936,0 g1,12344:29030814,2439708 g1,12344:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 r1,12344:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 r1,12344:37855564,2439708:1179648,16384,0 ) ) @@ -214299,19 +214178,19 @@ k1,12344:3078556,2439708:-34777008 [1,12344:3078558,4812305:0,0,0 (1,12344:3078558,49800853:0,16384,2228224 k1,12344:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 r1,12344:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 r1,12344:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) @@ -214322,20 +214201,20 @@ g1,11316:29014430,51504789 (1,12344:3078558,49800853:0,16384,2228224 g1,12344:29030814,49800853 g1,12344:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 r1,12344:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 r1,12344:37855564,49800853:1179648,16384,0 ) ) @@ -214355,601 +214234,617 @@ k1,12344:31387651,4812305:21039676 g1,12344:6630773,45706769 ) [1,12344:6630773,45706769:25952256,40108032,0 -(1,12283:6630773,6254097:25952256,555811,12975 -(1,12283:6630773,6254097:2450326,527696,0 -g1,12283:6630773,6254097 -g1,12283:9081099,6254097 -) -k1,12283:32583029,6254097:20670250 -g1,12283:32583029,6254097 -) -(1,12288:6630773,7488801:25952256,505283,134348 -k1,12287:8073235,7488801:245775 -k1,12287:11326457,7488801:245775 -(1,12287:11326457,7488801:0,452978,122846 -r1,12287:14850129,7488801:3523672,575824,122846 -k1,12287:11326457,7488801:-3523672 -) -(1,12287:11326457,7488801:3523672,452978,122846 -k1,12287:11326457,7488801:3277 -h1,12287:14846852,7488801:0,411205,112570 -) -k1,12287:15095905,7488801:245776 -k1,12287:16445962,7488801:245775 -k1,12287:17439503,7488801:245775 -k1,12287:19198504,7488801:245775 -k1,12287:20095708,7488801:245776 -k1,12287:22270863,7488801:245775 -k1,12287:24837268,7488801:245775 -k1,12287:26581852,7488801:245775 -k1,12287:28746522,7488801:245776 -k1,12287:30443919,7488801:245775 -k1,12287:31734338,7488801:245775 -k1,12288:32583029,7488801:0 -) -(1,12288:6630773,8330289:25952256,505283,126483 -g1,12287:9566130,8330289 -g1,12287:10536062,8330289 -g1,12287:14476741,8330289 -g1,12287:15358855,8330289 -g1,12287:16925165,8330289 -g1,12287:17740432,8330289 -g1,12287:18958746,8330289 -k1,12288:32583029,8330289:12061249 -g1,12288:32583029,8330289 -) -v1,12290:6630773,9696065:0,393216,0 -(1,12291:6630773,13651733:25952256,4348884,616038 -g1,12291:6630773,13651733 -(1,12291:6630773,13651733:25952256,4348884,616038 -(1,12291:6630773,14267771:25952256,4964922,0 -[1,12291:6630773,14267771:25952256,4964922,0 -(1,12291:6630773,14241557:25952256,4912494,0 -r1,12291:6656987,14241557:26214,4912494,0 -[1,12291:6656987,14241557:25899828,4912494,0 -(1,12291:6656987,13651733:25899828,3732846,0 -[1,12291:7246811,13651733:24720180,3732846,0 -(1,12291:7246811,11004423:24720180,1085536,298548 -(1,12290:7246811,11004423:0,1085536,298548 -r1,12291:8753226,11004423:1506415,1384084,298548 -k1,12290:7246811,11004423:-1506415 -) -(1,12290:7246811,11004423:1506415,1085536,298548 -) -k1,12290:9021732,11004423:268506 -k1,12290:9705012,11004423:268437 -k1,12290:11684664,11004423:268507 -k1,12290:13019441,11004423:268506 -k1,12290:15780282,11004423:268507 -k1,12290:17014133,11004423:268506 -k1,12290:18676591,11004423:268507 -k1,12290:21773630,11004423:268506 -k1,12290:23033697,11004423:268507 -k1,12290:26607184,11004423:268506 -k1,12290:29917872,11004423:268507 -k1,12290:30947906,11004423:268506 -k1,12290:31966991,11004423:0 -) -(1,12291:7246811,11845911:24720180,513147,134348 -k1,12290:9664450,11845911:152059 -k1,12290:12576231,11845911:152060 -k1,12290:13395446,11845911:152059 -(1,12290:13395446,11845911:0,452978,122846 -r1,12291:16919118,11845911:3523672,575824,122846 -k1,12290:13395446,11845911:-3523672 -) -(1,12290:13395446,11845911:3523672,452978,122846 -k1,12290:13395446,11845911:3277 -h1,12290:16915841,11845911:0,411205,112570 -) -k1,12290:17071178,11845911:152060 -k1,12290:17909399,11845911:152059 -k1,12290:18519556,11845911:152060 -k1,12290:20094402,11845911:152059 -(1,12290:20094402,11845911:0,452978,115847 -r1,12291:24321498,11845911:4227096,568825,115847 -k1,12290:20094402,11845911:-4227096 -) -(1,12290:20094402,11845911:4227096,452978,115847 -k1,12290:20094402,11845911:3277 -h1,12290:24318221,11845911:0,411205,112570 -) -k1,12290:24473558,11845911:152060 -k1,12290:25277045,11845911:152059 -k1,12290:28049234,11845911:152060 -k1,12290:28557153,11845911:152059 -k1,12290:31966991,11845911:0 -) -(1,12291:7246811,12687399:24720180,505283,134348 -k1,12290:9397012,12687399:198539 -k1,12290:11037998,12687399:198539 -k1,12290:13760984,12687399:198539 -k1,12290:15970167,12687399:198538 -k1,12290:16854868,12687399:198539 -k1,12290:17584904,12687399:198539 -k1,12290:19015520,12687399:198539 -k1,12290:21492746,12687399:198539 -h1,12290:23035464,12687399:0,0,0 -k1,12290:23234003,12687399:198539 -k1,12290:24241911,12687399:198538 -k1,12290:25938603,12687399:198539 -h1,12290:27133980,12687399:0,0,0 -k1,12290:27713283,12687399:198539 -(1,12290:27713283,12687399:0,452978,122846 -r1,12291:31236955,12687399:3523672,575824,122846 -k1,12290:27713283,12687399:-3523672 -) -(1,12290:27713283,12687399:3523672,452978,122846 -k1,12290:27713283,12687399:3277 -h1,12290:31233678,12687399:0,411205,112570 -) -k1,12290:31435494,12687399:198539 -k1,12290:31966991,12687399:0 -) -(1,12291:7246811,13528887:24720180,513147,122846 -g1,12290:10182823,13528887 -g1,12290:11033480,13528887 -(1,12290:11033480,13528887:0,452978,122846 -r1,12291:14557152,13528887:3523672,575824,122846 -k1,12290:11033480,13528887:-3523672 -) -(1,12290:11033480,13528887:3523672,452978,122846 -k1,12290:11033480,13528887:3277 -h1,12290:14553875,13528887:0,411205,112570 -) -g1,12290:14756381,13528887 -g1,12290:16027779,13528887 -g1,12290:17620959,13528887 -(1,12290:17620959,13528887:0,452978,115847 -r1,12291:21144631,13528887:3523672,568825,115847 -k1,12290:17620959,13528887:-3523672 -) -(1,12290:17620959,13528887:3523672,452978,115847 -k1,12290:17620959,13528887:3277 -h1,12290:21141354,13528887:0,411205,112570 -) -g1,12290:21343860,13528887 -g1,12290:22229251,13528887 -g1,12290:23447565,13528887 -g1,12290:25912374,13528887 -k1,12291:31966991,13528887:3357810 -g1,12291:31966991,13528887 -) -] -) -] -r1,12291:32583029,14241557:26214,4912494,0 -) -] -) -) -g1,12291:32583029,13651733 -) -h1,12291:6630773,14267771:0,0,0 -(1,12294:6630773,15633547:25952256,513147,126483 -h1,12293:6630773,15633547:983040,0,0 -k1,12293:8840345,15633547:272983 -k1,12293:11042707,15633547:272982 -k1,12293:13944339,15633547:272983 -k1,12293:15606685,15633547:272983 -k1,12293:17164173,15633547:272982 -k1,12293:18305508,15633547:272983 -k1,12293:19710953,15633547:272983 -k1,12293:21712120,15633547:272983 -k1,12293:22601140,15633547:272982 -k1,12293:25545370,15633547:272983 -k1,12293:28974567,15633547:272983 -k1,12293:29906841,15633547:272982 -k1,12293:31198909,15633547:272983 -k1,12293:32583029,15633547:0 -) -(1,12294:6630773,16475035:25952256,513147,134348 -k1,12294:32583028,16475035:23923260 -g1,12294:32583028,16475035 -) -v1,12296:6630773,17665501:0,393216,0 -(1,12303:6630773,19953965:25952256,2681680,196608 -g1,12303:6630773,19953965 -g1,12303:6630773,19953965 -g1,12303:6434165,19953965 -(1,12303:6434165,19953965:0,2681680,196608 -r1,12303:32779637,19953965:26345472,2878288,196608 -k1,12303:6434165,19953965:-26345472 -) -(1,12303:6434165,19953965:26345472,2681680,196608 -[1,12303:6630773,19953965:25952256,2485072,0 -(1,12298:6630773,17873119:25952256,404226,76021 -(1,12297:6630773,17873119:0,0,0 -g1,12297:6630773,17873119 -g1,12297:6630773,17873119 -g1,12297:6303093,17873119 -(1,12297:6303093,17873119:0,0,0 -) -g1,12297:6630773,17873119 -) -k1,12298:6630773,17873119:0 -h1,12298:11689104,17873119:0,0,0 -k1,12298:32583028,17873119:20893924 -g1,12298:32583028,17873119 -) -(1,12299:6630773,18539297:25952256,410518,101187 -h1,12299:6630773,18539297:0,0,0 -g1,12299:10424521,18539297 -g1,12299:11372959,18539297 -g1,12299:18012019,18539297 -g1,12299:18644311,18539297 -g1,12299:24334935,18539297 -g1,12299:25915664,18539297 -g1,12299:27812539,18539297 -k1,12299:27812539,18539297:0 -h1,12299:29077122,18539297:0,0,0 -k1,12299:32583029,18539297:3505907 -g1,12299:32583029,18539297 -) -(1,12300:6630773,19205475:25952256,410518,107478 -h1,12300:6630773,19205475:0,0,0 -g1,12300:6946919,19205475 -g1,12300:7263065,19205475 -g1,12300:7579211,19205475 -g1,12300:7895357,19205475 -g1,12300:8211503,19205475 -g1,12300:8527649,19205475 -g1,12300:8843795,19205475 -g1,12300:9159941,19205475 -g1,12300:9476087,19205475 -g1,12300:9792233,19205475 -g1,12300:10108379,19205475 -g1,12300:10424525,19205475 -g1,12300:10740671,19205475 -g1,12300:11056817,19205475 -g1,12300:11372963,19205475 -g1,12300:11689109,19205475 -g1,12300:12005255,19205475 -g1,12300:12321401,19205475 -g1,12300:12637547,19205475 -g1,12300:12953693,19205475 -g1,12300:13269839,19205475 -g1,12300:13585985,19205475 -g1,12300:13902131,19205475 -g1,12300:14218277,19205475 -g1,12300:14534423,19205475 -g1,12300:14850569,19205475 -g1,12300:16747443,19205475 -g1,12300:17379735,19205475 -g1,12300:24018796,19205475 -g1,12300:27496399,19205475 -g1,12300:29077129,19205475 -k1,12300:29077129,19205475:0 -h1,12300:30657858,19205475:0,0,0 -k1,12300:32583029,19205475:1925171 -g1,12300:32583029,19205475 -) -(1,12301:6630773,19871653:25952256,404226,82312 -h1,12301:6630773,19871653:0,0,0 -g1,12301:6946919,19871653 -g1,12301:7263065,19871653 -g1,12301:7579211,19871653 -g1,12301:7895357,19871653 -g1,12301:8211503,19871653 -g1,12301:8527649,19871653 -g1,12301:8843795,19871653 -g1,12301:9159941,19871653 -g1,12301:9476087,19871653 -g1,12301:9792233,19871653 -g1,12301:10108379,19871653 -g1,12301:10424525,19871653 -g1,12301:10740671,19871653 -g1,12301:11056817,19871653 -g1,12301:11372963,19871653 -g1,12301:11689109,19871653 -g1,12301:12005255,19871653 -g1,12301:12321401,19871653 -g1,12301:12637547,19871653 -g1,12301:12953693,19871653 -g1,12301:13269839,19871653 -g1,12301:13585985,19871653 -g1,12301:13902131,19871653 -g1,12301:14218277,19871653 -g1,12301:14534423,19871653 -g1,12301:14850569,19871653 -g1,12301:18644317,19871653 -g1,12301:19276609,19871653 -g1,12301:22121921,19871653 -g1,12301:22754213,19871653 -g1,12301:24967234,19871653 -g1,12301:25915672,19871653 -h1,12301:26864109,19871653:0,0,0 -k1,12301:32583029,19871653:5718920 -g1,12301:32583029,19871653 -) -] -) -g1,12303:32583029,19953965 -g1,12303:6630773,19953965 -g1,12303:6630773,19953965 -g1,12303:32583029,19953965 -g1,12303:32583029,19953965 -) -h1,12303:6630773,20150573:0,0,0 -(1,12307:6630773,21516349:25952256,513147,134348 -h1,12306:6630773,21516349:983040,0,0 -k1,12306:9307213,21516349:257506 -k1,12306:10433071,21516349:257506 -k1,12306:11967874,21516349:257506 -k1,12306:13614743,21516349:257506 -k1,12306:14819900,21516349:257506 -k1,12306:17548113,21516349:257506 -k1,12306:19354889,21516349:257505 -k1,12306:21347788,21516349:257506 -k1,12306:24201175,21516349:257506 -k1,12306:25406332,21516349:257506 -k1,12306:26429954,21516349:257506 -k1,12306:29751924,21516349:257506 -k1,12306:32080368,21516349:257506 -$1,12306:32080368,21516349 -$1,12306:32583029,21516349 -k1,12307:32583029,21516349:0 -) -(1,12307:6630773,22357837:25952256,505283,138281 -g1,12306:8021447,22357837 -$1,12306:8021447,22357837 -$1,12306:8573260,22357837 -g1,12306:8772489,22357837 -g1,12306:10857189,22357837 -g1,12306:11924770,22357837 -g1,12306:15021346,22357837 -g1,12306:16617147,22357837 -g1,12306:17467804,22357837 -k1,12307:32583029,22357837:12099914 -g1,12307:32583029,22357837 -) -v1,12309:6630773,23548303:0,393216,0 -(1,12315:6630773,25202047:25952256,2046960,196608 -g1,12315:6630773,25202047 -g1,12315:6630773,25202047 -g1,12315:6434165,25202047 -(1,12315:6434165,25202047:0,2046960,196608 -r1,12315:32779637,25202047:26345472,2243568,196608 -k1,12315:6434165,25202047:-26345472 -) -(1,12315:6434165,25202047:26345472,2046960,196608 -[1,12315:6630773,25202047:25952256,1850352,0 -(1,12311:6630773,23762213:25952256,410518,107478 -(1,12310:6630773,23762213:0,0,0 -g1,12310:6630773,23762213 -g1,12310:6630773,23762213 -g1,12310:6303093,23762213 -(1,12310:6303093,23762213:0,0,0 -) -g1,12310:6630773,23762213 -) -k1,12311:6630773,23762213:0 -g1,12311:15166707,23762213 -g1,12311:17063581,23762213 -g1,12311:18012018,23762213 -k1,12311:18012018,23762213:0 -h1,12311:21173475,23762213:0,0,0 -k1,12311:32583029,23762213:11409554 -g1,12311:32583029,23762213 -) -(1,12312:6630773,24428391:25952256,404226,101187 -h1,12312:6630773,24428391:0,0,0 -g1,12312:6946919,24428391 -g1,12312:7263065,24428391 -g1,12312:7579211,24428391 -g1,12312:7895357,24428391 -g1,12312:8211503,24428391 -g1,12312:8527649,24428391 -g1,12312:8843795,24428391 -g1,12312:10740670,24428391 -g1,12312:11372962,24428391 -g1,12312:14850565,24428391 -g1,12312:15482857,24428391 -g1,12312:16115149,24428391 -g1,12312:20541189,24428391 -h1,12312:20857335,24428391:0,0,0 -k1,12312:32583029,24428391:11725694 -g1,12312:32583029,24428391 -) -(1,12313:6630773,25094569:25952256,404226,107478 -h1,12313:6630773,25094569:0,0,0 -g1,12313:6946919,25094569 -g1,12313:7263065,25094569 -g1,12313:7579211,25094569 -k1,12313:7579211,25094569:0 -h1,12313:10740667,25094569:0,0,0 -k1,12313:32583029,25094569:21842362 -g1,12313:32583029,25094569 -) -] -) -g1,12315:32583029,25202047 -g1,12315:6630773,25202047 -g1,12315:6630773,25202047 -g1,12315:32583029,25202047 -g1,12315:32583029,25202047 -) -h1,12315:6630773,25398655:0,0,0 -(1,12318:6630773,35051168:25952256,9062689,0 -k1,12318:10523651,35051168:3892878 -h1,12317:10523651,35051168:0,0,0 -(1,12317:10523651,35051168:18166500,9062689,0 -(1,12317:10523651,35051168:18167381,9062712,0 -(1,12317:10523651,35051168:18167381,9062712,0 -(1,12317:10523651,35051168:0,9062712,0 -(1,12317:10523651,35051168:0,14155776,0 -(1,12317:10523651,35051168:28377088,14155776,0 -) -k1,12317:10523651,35051168:-28377088 -) -) -g1,12317:28691032,35051168 -) -) -) -g1,12318:28690151,35051168 -k1,12318:32583029,35051168:3892878 -) -(1,12326:6630773,35892656:25952256,513147,134348 -h1,12325:6630773,35892656:983040,0,0 -k1,12325:8718095,35892656:150733 -k1,12325:10211660,35892656:150732 -k1,12325:11756344,35892656:150733 -k1,12325:14971541,35892656:150733 -k1,12325:15773701,35892656:150732 -k1,12325:18544563,35892656:150733 -k1,12325:19051156,35892656:150733 -k1,12325:20479185,35892656:150732 -k1,12325:22023869,35892656:150733 -k1,12325:22530462,35892656:150733 -k1,12325:26521604,35892656:150732 -k1,12325:30071034,35892656:150733 -k1,12325:32583029,35892656:0 -) -(1,12326:6630773,36734144:25952256,513147,126483 -k1,12325:7817882,36734144:239458 -k1,12325:8413201,36734144:239459 -k1,12325:10960837,36734144:239458 -k1,12325:15914955,36734144:239458 -k1,12325:18142776,36734144:239459 -k1,12325:19065119,36734144:239458 -k1,12325:21060287,36734144:239458 -k1,12325:22349632,36734144:239458 -k1,12325:24867778,36734144:239459 -h1,12325:25838366,36734144:0,0,0 -k1,12325:26077824,36734144:239458 -k1,12325:27508727,36734144:239458 -k1,12325:30026873,36734144:239459 -h1,12325:31395920,36734144:0,0,0 -k1,12325:31635378,36734144:239458 -k1,12325:32583029,36734144:0 -) -(1,12326:6630773,37575632:25952256,513147,126483 -k1,12325:10677003,37575632:239244 -k1,12325:11725617,37575632:239244 -k1,12325:13867371,37575632:239244 -k1,12325:15298060,37575632:239244 -k1,12325:18027672,37575632:239244 -k1,12325:22237087,37575632:239244 -k1,12325:23429880,37575632:239244 -k1,12325:24603667,37575632:239244 -(1,12325:24603667,37575632:0,452978,115847 -r1,12325:28479051,37575632:3875384,568825,115847 -k1,12325:24603667,37575632:-3875384 -) -(1,12325:24603667,37575632:3875384,452978,115847 -g1,12325:26717215,37575632 -g1,12325:27420639,37575632 -h1,12325:28475774,37575632:0,411205,112570 -) -k1,12325:28718295,37575632:239244 -k1,12325:29608967,37575632:239244 -k1,12325:31563944,37575632:239244 -k1,12325:32583029,37575632:0 -) -(1,12326:6630773,38417120:25952256,513147,134348 -k1,12325:8302003,38417120:296285 -k1,12325:11670616,38417120:296285 -k1,12325:14173498,38417120:296285 -(1,12325:14173498,38417120:0,452978,115847 -r1,12325:19455730,38417120:5282232,568825,115847 -k1,12325:14173498,38417120:-5282232 -) -(1,12325:14173498,38417120:5282232,452978,115847 -g1,12325:16287046,38417120 -g1,12325:16990470,38417120 -h1,12325:19452453,38417120:0,411205,112570 -) -k1,12325:19752015,38417120:296285 -k1,12325:23023636,38417120:296286 -k1,12325:24339006,38417120:296285 -k1,12325:26900871,38417120:296285 -k1,12325:28813274,38417120:296285 -k1,12325:29768851,38417120:296285 -k1,12325:31084221,38417120:296285 -k1,12325:32583029,38417120:0 -) -(1,12326:6630773,39258608:25952256,505283,134348 -g1,12325:9960001,39258608 -g1,12325:11178315,39258608 -k1,12326:32583029,39258608:19856098 -g1,12326:32583029,39258608 -) -v1,12328:6630773,40449074:0,393216,0 -(1,12334:6630773,42102818:25952256,2046960,196608 -g1,12334:6630773,42102818 -g1,12334:6630773,42102818 -g1,12334:6434165,42102818 -(1,12334:6434165,42102818:0,2046960,196608 -r1,12334:32779637,42102818:26345472,2243568,196608 -k1,12334:6434165,42102818:-26345472 -) -(1,12334:6434165,42102818:26345472,2046960,196608 -[1,12334:6630773,42102818:25952256,1850352,0 -(1,12330:6630773,40662984:25952256,410518,107478 -(1,12329:6630773,40662984:0,0,0 -g1,12329:6630773,40662984 -g1,12329:6630773,40662984 -g1,12329:6303093,40662984 -(1,12329:6303093,40662984:0,0,0 -) -g1,12329:6630773,40662984 -) -k1,12330:6630773,40662984:0 -g1,12330:12953687,40662984 -g1,12330:14850562,40662984 -g1,12330:15482854,40662984 -g1,12330:18960457,40662984 -g1,12330:19592749,40662984 -g1,12330:20225041,40662984 -g1,12330:24334935,40662984 -g1,12330:25915664,40662984 -g1,12330:26547956,40662984 -g1,12330:29077122,40662984 -h1,12330:29393268,40662984:0,0,0 -k1,12330:32583029,40662984:3189761 -g1,12330:32583029,40662984 -) -(1,12331:6630773,41329162:25952256,404226,107478 -h1,12331:6630773,41329162:0,0,0 -g1,12331:6946919,41329162 -g1,12331:7263065,41329162 -g1,12331:7579211,41329162 -g1,12331:7895357,41329162 -g1,12331:8211503,41329162 -g1,12331:12953688,41329162 -g1,12331:13585980,41329162 -g1,12331:16431292,41329162 -g1,12331:18328166,41329162 -g1,12331:18960458,41329162 -g1,12331:20541187,41329162 -h1,12331:20857333,41329162:0,0,0 -k1,12331:32583029,41329162:11725696 -g1,12331:32583029,41329162 -) -(1,12332:6630773,41995340:25952256,410518,107478 -h1,12332:6630773,41995340:0,0,0 -g1,12332:6946919,41995340 -g1,12332:7263065,41995340 -g1,12332:7579211,41995340 -g1,12332:7895357,41995340 -g1,12332:8211503,41995340 -g1,12332:13902125,41995340 -g1,12332:14534417,41995340 -k1,12332:14534417,41995340:0 -h1,12332:18328165,41995340:0,0,0 -k1,12332:32583029,41995340:14254864 -g1,12332:32583029,41995340 -) -] -) -g1,12334:32583029,42102818 -g1,12334:6630773,42102818 -g1,12334:6630773,42102818 -g1,12334:32583029,42102818 -g1,12334:32583029,42102818 -) -h1,12334:6630773,42299426:0,0,0 +v1,12286:6630773,6254097:0,393216,0 +(1,12286:6630773,9233905:25952256,3373024,196608 +g1,12286:6630773,9233905 +g1,12286:6630773,9233905 +g1,12286:6434165,9233905 +(1,12286:6434165,9233905:0,3373024,196608 +r1,12286:32779637,9233905:26345472,3569632,196608 +k1,12286:6434165,9233905:-26345472 +) +(1,12286:6434165,9233905:26345472,3373024,196608 +[1,12286:6630773,9233905:25952256,3176416,0 +(1,12280:6630773,6461715:25952256,404226,107478 +(1,12279:6630773,6461715:0,0,0 +g1,12279:6630773,6461715 +g1,12279:6630773,6461715 +g1,12279:6303093,6461715 +(1,12279:6303093,6461715:0,0,0 +) +g1,12279:6630773,6461715 +) +k1,12280:6630773,6461715:0 +g1,12280:10424522,6461715 +g1,12280:11056814,6461715 +k1,12280:11056814,6461715:0 +h1,12280:13269834,6461715:0,0,0 +k1,12280:32583030,6461715:19313196 +g1,12280:32583030,6461715 +) +(1,12281:6630773,7127893:25952256,410518,107478 +h1,12281:6630773,7127893:0,0,0 +g1,12281:6946919,7127893 +g1,12281:7263065,7127893 +g1,12281:7579211,7127893 +g1,12281:7895357,7127893 +g1,12281:8211503,7127893 +g1,12281:8527649,7127893 +g1,12281:8843795,7127893 +g1,12281:10740670,7127893 +g1,12281:11372962,7127893 +g1,12281:12953691,7127893 +g1,12281:13585983,7127893 +g1,12281:14218275,7127893 +g1,12281:18960461,7127893 +g1,12281:20541190,7127893 +g1,12281:21173482,7127893 +g1,12281:23386502,7127893 +h1,12281:23702648,7127893:0,0,0 +k1,12281:32583029,7127893:8880381 +g1,12281:32583029,7127893 +) +(1,12282:6630773,7794071:25952256,404226,107478 +h1,12282:6630773,7794071:0,0,0 +g1,12282:6946919,7794071 +g1,12282:7263065,7794071 +g1,12282:13269833,7794071 +g1,12282:13902125,7794071 +g1,12282:16747437,7794071 +h1,12282:17063583,7794071:0,0,0 +k1,12282:32583029,7794071:15519446 +g1,12282:32583029,7794071 +) +(1,12283:6630773,8460249:25952256,404226,107478 +h1,12283:6630773,8460249:0,0,0 +g1,12283:6946919,8460249 +g1,12283:7263065,8460249 +g1,12283:14218271,8460249 +g1,12283:14850563,8460249 +g1,12283:16747438,8460249 +g1,12283:18644312,8460249 +g1,12283:19276604,8460249 +g1,12283:22438061,8460249 +h1,12283:22754207,8460249:0,0,0 +k1,12283:32583029,8460249:9828822 +g1,12283:32583029,8460249 +) +(1,12284:6630773,9126427:25952256,404226,107478 +h1,12284:6630773,9126427:0,0,0 +g1,12284:6946919,9126427 +g1,12284:7263065,9126427 +g1,12284:14218271,9126427 +g1,12284:14850563,9126427 +g1,12284:16747438,9126427 +g1,12284:19592749,9126427 +g1,12284:20225041,9126427 +h1,12284:23070352,9126427:0,0,0 +k1,12284:32583029,9126427:9512677 +g1,12284:32583029,9126427 +) +] +) +g1,12286:32583029,9233905 +g1,12286:6630773,9233905 +g1,12286:6630773,9233905 +g1,12286:32583029,9233905 +g1,12286:32583029,9233905 +) +h1,12286:6630773,9430513:0,0,0 +(1,12289:6630773,19053297:25952256,9062689,0 +k1,12289:10523651,19053297:3892878 +h1,12288:10523651,19053297:0,0,0 +(1,12288:10523651,19053297:18166500,9062689,0 +(1,12288:10523651,19053297:18167381,9062712,0 +(1,12288:10523651,19053297:18167381,9062712,0 +(1,12288:10523651,19053297:0,9062712,0 +(1,12288:10523651,19053297:0,14155776,0 +(1,12288:10523651,19053297:28377088,14155776,0 +) +k1,12288:10523651,19053297:-28377088 +) +) +g1,12288:28691032,19053297 +) +) +) +g1,12289:28690151,19053297 +k1,12289:32583029,19053297:3892878 +) +v1,12297:6630773,20389344:0,393216,0 +(1,12298:6630773,23508999:25952256,3512871,616038 +g1,12298:6630773,23508999 +(1,12298:6630773,23508999:25952256,3512871,616038 +(1,12298:6630773,24125037:25952256,4128909,0 +[1,12298:6630773,24125037:25952256,4128909,0 +(1,12298:6630773,24098823:25952256,4076481,0 +r1,12298:6656987,24098823:26214,4076481,0 +[1,12298:6656987,24098823:25899828,4076481,0 +(1,12298:6656987,23508999:25899828,2896833,0 +[1,12298:7246811,23508999:24720180,2896833,0 +(1,12298:7246811,21699540:24720180,1087374,134348 +k1,12297:8696523,21699540:240009 +k1,12297:11299104,21699540:240008 +k1,12297:12558198,21699540:240009 +k1,12297:14537533,21699540:240009 +k1,12297:15436833,21699540:240008 +k1,12297:16695927,21699540:240009 +k1,12297:18590720,21699540:240009 +k1,12297:20718820,21699540:240008 +k1,12297:21574867,21699540:240009 +k1,12297:22833960,21699540:240008 +k1,12297:25735386,21699540:240009 +k1,12297:28004390,21699540:240009 +k1,12297:29665219,21699540:240008 +k1,12297:30947906,21699540:240009 +k1,12297:31966991,21699540:0 +) +(1,12298:7246811,22541028:24720180,513147,134348 +k1,12297:9378697,22541028:276562 +k1,12297:12222960,22541028:276562 +k1,12297:14133335,22541028:276562 +k1,12297:16149222,22541028:276561 +k1,12297:16957281,22541028:276562 +k1,12297:18895836,22541028:276562 +k1,12297:21213844,22541028:276562 +k1,12297:22509491,22541028:276562 +k1,12297:24439526,22541028:276562 +k1,12297:26455414,22541028:276562 +k1,12297:27479741,22541028:276561 +k1,12297:28775388,22541028:276562 +k1,12297:30386918,22541028:276562 +k1,12297:31611131,22541028:276562 +k1,12297:31966991,22541028:0 +) +(1,12298:7246811,23382516:24720180,505283,126483 +g1,12297:9615282,23382516 +g1,12297:11418832,23382516 +g1,12297:12941233,23382516 +g1,12297:15096712,23382516 +g1,12297:15754038,23382516 +g1,12297:16701033,23382516 +g1,12297:20009290,23382516 +g1,12297:20859947,23382516 +g1,12297:22256519,23382516 +g1,12297:23628187,23382516 +(1,12297:23628187,23382516:0,452978,122846 +r1,12298:27855283,23382516:4227096,575824,122846 +k1,12297:23628187,23382516:-4227096 +) +(1,12297:23628187,23382516:4227096,452978,122846 +k1,12297:23628187,23382516:3277 +h1,12297:27852006,23382516:0,411205,112570 +) +g1,12297:28054512,23382516 +k1,12298:31966991,23382516:1697362 +g1,12298:31966991,23382516 +) +] +) +] +r1,12298:32583029,24098823:26214,4076481,0 +) +] +) +) +g1,12298:32583029,23508999 +) +h1,12298:6630773,24125037:0,0,0 +(1,12302:6630773,26710856:25952256,555811,12975 +(1,12302:6630773,26710856:2450326,527696,0 +g1,12302:6630773,26710856 +g1,12302:9081099,26710856 +) +k1,12302:32583029,26710856:20670250 +g1,12302:32583029,26710856 +) +(1,12307:6630773,27945560:25952256,505283,134348 +k1,12306:8040871,27945560:213411 +k1,12306:11261728,27945560:213410 +(1,12306:11261728,27945560:0,452978,122846 +r1,12306:14785400,27945560:3523672,575824,122846 +k1,12306:11261728,27945560:-3523672 +) +(1,12306:11261728,27945560:3523672,452978,122846 +k1,12306:11261728,27945560:3277 +h1,12306:14782123,27945560:0,411205,112570 +) +k1,12306:14998811,27945560:213411 +k1,12306:16316503,27945560:213410 +k1,12306:17277680,27945560:213411 +k1,12306:19004316,27945560:213410 +k1,12306:19869155,27945560:213411 +k1,12306:22011945,27945560:213410 +k1,12306:24545986,27945560:213411 +k1,12306:26258205,27945560:213410 +k1,12306:28390510,27945560:213411 +k1,12306:30055542,27945560:213410 +k1,12306:31313597,27945560:213411 +k1,12307:32583029,27945560:0 +) +(1,12307:6630773,28787048:25952256,505283,7863 +g1,12306:9145389,28787048 +g1,12306:10115321,28787048 +g1,12306:14056000,28787048 +g1,12306:14938114,28787048 +g1,12306:16504424,28787048 +g1,12306:17319691,28787048 +g1,12306:18538005,28787048 +k1,12307:32583029,28787048:12481990 +g1,12307:32583029,28787048 +) +v1,12309:6630773,30123095:0,393216,0 +(1,12310:6630773,34078763:25952256,4348884,616038 +g1,12310:6630773,34078763 +(1,12310:6630773,34078763:25952256,4348884,616038 +(1,12310:6630773,34694801:25952256,4964922,0 +[1,12310:6630773,34694801:25952256,4964922,0 +(1,12310:6630773,34668587:25952256,4912494,0 +r1,12310:6656987,34668587:26214,4912494,0 +[1,12310:6656987,34668587:25899828,4912494,0 +(1,12310:6656987,34078763:25899828,3732846,0 +[1,12310:7246811,34078763:24720180,3732846,0 +(1,12310:7246811,31431453:24720180,1085536,298548 +(1,12309:7246811,31431453:0,1085536,298548 +r1,12310:8753226,31431453:1506415,1384084,298548 +k1,12309:7246811,31431453:-1506415 +) +(1,12309:7246811,31431453:1506415,1085536,298548 +) +k1,12309:9021732,31431453:268506 +k1,12309:9705012,31431453:268437 +k1,12309:11684664,31431453:268507 +k1,12309:13019441,31431453:268506 +k1,12309:15780282,31431453:268507 +k1,12309:17014133,31431453:268506 +k1,12309:18676591,31431453:268507 +k1,12309:21773630,31431453:268506 +k1,12309:23033697,31431453:268507 +k1,12309:26607184,31431453:268506 +k1,12309:29917872,31431453:268507 +k1,12309:30947906,31431453:268506 +k1,12309:31966991,31431453:0 +) +(1,12310:7246811,32272941:24720180,513147,134348 +k1,12309:9664450,32272941:152059 +k1,12309:12576231,32272941:152060 +k1,12309:13395446,32272941:152059 +(1,12309:13395446,32272941:0,452978,122846 +r1,12310:16919118,32272941:3523672,575824,122846 +k1,12309:13395446,32272941:-3523672 +) +(1,12309:13395446,32272941:3523672,452978,122846 +k1,12309:13395446,32272941:3277 +h1,12309:16915841,32272941:0,411205,112570 +) +k1,12309:17071178,32272941:152060 +k1,12309:17909399,32272941:152059 +k1,12309:18519556,32272941:152060 +k1,12309:20094402,32272941:152059 +(1,12309:20094402,32272941:0,452978,115847 +r1,12310:24321498,32272941:4227096,568825,115847 +k1,12309:20094402,32272941:-4227096 +) +(1,12309:20094402,32272941:4227096,452978,115847 +k1,12309:20094402,32272941:3277 +h1,12309:24318221,32272941:0,411205,112570 +) +k1,12309:24473558,32272941:152060 +k1,12309:25277045,32272941:152059 +k1,12309:28049234,32272941:152060 +k1,12309:28557153,32272941:152059 +k1,12309:31966991,32272941:0 +) +(1,12310:7246811,33114429:24720180,505283,134348 +k1,12309:9397012,33114429:198539 +k1,12309:11037998,33114429:198539 +k1,12309:13760984,33114429:198539 +k1,12309:15970167,33114429:198538 +k1,12309:16854868,33114429:198539 +k1,12309:17584904,33114429:198539 +k1,12309:19015520,33114429:198539 +k1,12309:21492746,33114429:198539 +h1,12309:23035464,33114429:0,0,0 +k1,12309:23234003,33114429:198539 +k1,12309:24241911,33114429:198538 +k1,12309:25938603,33114429:198539 +h1,12309:27133980,33114429:0,0,0 +k1,12309:27713283,33114429:198539 +(1,12309:27713283,33114429:0,452978,122846 +r1,12310:31236955,33114429:3523672,575824,122846 +k1,12309:27713283,33114429:-3523672 +) +(1,12309:27713283,33114429:3523672,452978,122846 +k1,12309:27713283,33114429:3277 +h1,12309:31233678,33114429:0,411205,112570 +) +k1,12309:31435494,33114429:198539 +k1,12309:31966991,33114429:0 +) +(1,12310:7246811,33955917:24720180,513147,122846 +g1,12309:10182823,33955917 +g1,12309:11033480,33955917 +(1,12309:11033480,33955917:0,452978,122846 +r1,12310:14557152,33955917:3523672,575824,122846 +k1,12309:11033480,33955917:-3523672 +) +(1,12309:11033480,33955917:3523672,452978,122846 +k1,12309:11033480,33955917:3277 +h1,12309:14553875,33955917:0,411205,112570 +) +g1,12309:14756381,33955917 +g1,12309:16027779,33955917 +g1,12309:17620959,33955917 +(1,12309:17620959,33955917:0,452978,115847 +r1,12310:21144631,33955917:3523672,568825,115847 +k1,12309:17620959,33955917:-3523672 +) +(1,12309:17620959,33955917:3523672,452978,115847 +k1,12309:17620959,33955917:3277 +h1,12309:21141354,33955917:0,411205,112570 +) +g1,12309:21343860,33955917 +g1,12309:22229251,33955917 +g1,12309:23447565,33955917 +g1,12309:25912374,33955917 +k1,12310:31966991,33955917:3357810 +g1,12310:31966991,33955917 +) +] +) +] +r1,12310:32583029,34668587:26214,4912494,0 +) +] +) +) +g1,12310:32583029,34078763 +) +h1,12310:6630773,34694801:0,0,0 +(1,12313:6630773,36030848:25952256,513147,126483 +h1,12312:6630773,36030848:983040,0,0 +k1,12312:8840345,36030848:272983 +k1,12312:11042707,36030848:272982 +k1,12312:13944339,36030848:272983 +k1,12312:15606685,36030848:272983 +k1,12312:17164173,36030848:272982 +k1,12312:18305508,36030848:272983 +k1,12312:19710953,36030848:272983 +k1,12312:21712120,36030848:272983 +k1,12312:22601140,36030848:272982 +k1,12312:25545370,36030848:272983 +k1,12312:28974567,36030848:272983 +k1,12312:29906841,36030848:272982 +k1,12312:31198909,36030848:272983 +k1,12312:32583029,36030848:0 +) +(1,12313:6630773,36872336:25952256,513147,134348 +k1,12313:32583028,36872336:23923260 +g1,12313:32583028,36872336 +) +v1,12315:6630773,38033073:0,393216,0 +(1,12322:6630773,40321537:25952256,2681680,196608 +g1,12322:6630773,40321537 +g1,12322:6630773,40321537 +g1,12322:6434165,40321537 +(1,12322:6434165,40321537:0,2681680,196608 +r1,12322:32779637,40321537:26345472,2878288,196608 +k1,12322:6434165,40321537:-26345472 +) +(1,12322:6434165,40321537:26345472,2681680,196608 +[1,12322:6630773,40321537:25952256,2485072,0 +(1,12317:6630773,38240691:25952256,404226,76021 +(1,12316:6630773,38240691:0,0,0 +g1,12316:6630773,38240691 +g1,12316:6630773,38240691 +g1,12316:6303093,38240691 +(1,12316:6303093,38240691:0,0,0 +) +g1,12316:6630773,38240691 +) +k1,12317:6630773,38240691:0 +h1,12317:11689104,38240691:0,0,0 +k1,12317:32583028,38240691:20893924 +g1,12317:32583028,38240691 +) +(1,12318:6630773,38906869:25952256,410518,101187 +h1,12318:6630773,38906869:0,0,0 +g1,12318:10424521,38906869 +g1,12318:11372959,38906869 +g1,12318:18012019,38906869 +g1,12318:18644311,38906869 +g1,12318:24334935,38906869 +g1,12318:25915664,38906869 +g1,12318:27812539,38906869 +k1,12318:27812539,38906869:0 +h1,12318:29077122,38906869:0,0,0 +k1,12318:32583029,38906869:3505907 +g1,12318:32583029,38906869 +) +(1,12319:6630773,39573047:25952256,410518,107478 +h1,12319:6630773,39573047:0,0,0 +g1,12319:6946919,39573047 +g1,12319:7263065,39573047 +g1,12319:7579211,39573047 +g1,12319:7895357,39573047 +g1,12319:8211503,39573047 +g1,12319:8527649,39573047 +g1,12319:8843795,39573047 +g1,12319:9159941,39573047 +g1,12319:9476087,39573047 +g1,12319:9792233,39573047 +g1,12319:10108379,39573047 +g1,12319:10424525,39573047 +g1,12319:10740671,39573047 +g1,12319:11056817,39573047 +g1,12319:11372963,39573047 +g1,12319:11689109,39573047 +g1,12319:12005255,39573047 +g1,12319:12321401,39573047 +g1,12319:12637547,39573047 +g1,12319:12953693,39573047 +g1,12319:13269839,39573047 +g1,12319:13585985,39573047 +g1,12319:13902131,39573047 +g1,12319:14218277,39573047 +g1,12319:14534423,39573047 +g1,12319:14850569,39573047 +g1,12319:16747443,39573047 +g1,12319:17379735,39573047 +g1,12319:24018796,39573047 +g1,12319:27496399,39573047 +g1,12319:29077129,39573047 +k1,12319:29077129,39573047:0 +h1,12319:30657858,39573047:0,0,0 +k1,12319:32583029,39573047:1925171 +g1,12319:32583029,39573047 +) +(1,12320:6630773,40239225:25952256,404226,82312 +h1,12320:6630773,40239225:0,0,0 +g1,12320:6946919,40239225 +g1,12320:7263065,40239225 +g1,12320:7579211,40239225 +g1,12320:7895357,40239225 +g1,12320:8211503,40239225 +g1,12320:8527649,40239225 +g1,12320:8843795,40239225 +g1,12320:9159941,40239225 +g1,12320:9476087,40239225 +g1,12320:9792233,40239225 +g1,12320:10108379,40239225 +g1,12320:10424525,40239225 +g1,12320:10740671,40239225 +g1,12320:11056817,40239225 +g1,12320:11372963,40239225 +g1,12320:11689109,40239225 +g1,12320:12005255,40239225 +g1,12320:12321401,40239225 +g1,12320:12637547,40239225 +g1,12320:12953693,40239225 +g1,12320:13269839,40239225 +g1,12320:13585985,40239225 +g1,12320:13902131,40239225 +g1,12320:14218277,40239225 +g1,12320:14534423,40239225 +g1,12320:14850569,40239225 +g1,12320:18644317,40239225 +g1,12320:19276609,40239225 +g1,12320:22121921,40239225 +g1,12320:22754213,40239225 +g1,12320:24967234,40239225 +g1,12320:25915672,40239225 +h1,12320:26864109,40239225:0,0,0 +k1,12320:32583029,40239225:5718920 +g1,12320:32583029,40239225 +) +] +) +g1,12322:32583029,40321537 +g1,12322:6630773,40321537 +g1,12322:6630773,40321537 +g1,12322:32583029,40321537 +g1,12322:32583029,40321537 +) +h1,12322:6630773,40518145:0,0,0 +(1,12326:6630773,41854192:25952256,513147,134348 +h1,12325:6630773,41854192:983040,0,0 +k1,12325:9307213,41854192:257506 +k1,12325:10433071,41854192:257506 +k1,12325:11967874,41854192:257506 +k1,12325:13614743,41854192:257506 +k1,12325:14819900,41854192:257506 +k1,12325:17548113,41854192:257506 +k1,12325:19354889,41854192:257505 +k1,12325:21347788,41854192:257506 +k1,12325:24201175,41854192:257506 +k1,12325:25406332,41854192:257506 +k1,12325:26429954,41854192:257506 +k1,12325:29751924,41854192:257506 +k1,12325:32080368,41854192:257506 +$1,12325:32080368,41854192 +$1,12325:32583029,41854192 +k1,12326:32583029,41854192:0 +) +(1,12326:6630773,42695680:25952256,505283,138281 +g1,12325:8021447,42695680 +$1,12325:8021447,42695680 +$1,12325:8573260,42695680 +g1,12325:8772489,42695680 +g1,12325:10857189,42695680 +g1,12325:11924770,42695680 +g1,12325:15021346,42695680 +g1,12325:16617147,42695680 +g1,12325:17467804,42695680 +k1,12326:32583029,42695680:12099914 +g1,12326:32583029,42695680 +) +v1,12328:6630773,43856417:0,393216,0 +(1,12334:6630773,45510161:25952256,2046960,196608 +g1,12334:6630773,45510161 +g1,12334:6630773,45510161 +g1,12334:6434165,45510161 +(1,12334:6434165,45510161:0,2046960,196608 +r1,12334:32779637,45510161:26345472,2243568,196608 +k1,12334:6434165,45510161:-26345472 +) +(1,12334:6434165,45510161:26345472,2046960,196608 +[1,12334:6630773,45510161:25952256,1850352,0 +(1,12330:6630773,44070327:25952256,410518,107478 +(1,12329:6630773,44070327:0,0,0 +g1,12329:6630773,44070327 +g1,12329:6630773,44070327 +g1,12329:6303093,44070327 +(1,12329:6303093,44070327:0,0,0 +) +g1,12329:6630773,44070327 +) +k1,12330:6630773,44070327:0 +g1,12330:15166707,44070327 +g1,12330:17063581,44070327 +g1,12330:18012018,44070327 +k1,12330:18012018,44070327:0 +h1,12330:21173475,44070327:0,0,0 +k1,12330:32583029,44070327:11409554 +g1,12330:32583029,44070327 +) +(1,12331:6630773,44736505:25952256,404226,101187 +h1,12331:6630773,44736505:0,0,0 +g1,12331:6946919,44736505 +g1,12331:7263065,44736505 +g1,12331:7579211,44736505 +g1,12331:7895357,44736505 +g1,12331:8211503,44736505 +g1,12331:8527649,44736505 +g1,12331:8843795,44736505 +g1,12331:10740670,44736505 +g1,12331:11372962,44736505 +g1,12331:14850565,44736505 +g1,12331:15482857,44736505 +g1,12331:16115149,44736505 +g1,12331:20541189,44736505 +h1,12331:20857335,44736505:0,0,0 +k1,12331:32583029,44736505:11725694 +g1,12331:32583029,44736505 +) +(1,12332:6630773,45402683:25952256,404226,107478 +h1,12332:6630773,45402683:0,0,0 +g1,12332:6946919,45402683 +g1,12332:7263065,45402683 +g1,12332:7579211,45402683 +k1,12332:7579211,45402683:0 +h1,12332:10740667,45402683:0,0,0 +k1,12332:32583029,45402683:21842362 +g1,12332:32583029,45402683 +) +] +) +g1,12334:32583029,45510161 +g1,12334:6630773,45510161 +g1,12334:6630773,45510161 +g1,12334:32583029,45510161 +g1,12334:32583029,45510161 +) +h1,12334:6630773,45706769:0,0,0 ] (1,12344:32583029,45706769:0,0,0 g1,12344:32583029,45706769 @@ -214962,157 +214857,146 @@ h1,12344:6630773,47279633:25952256,0,0 ] h1,12344:4262630,4025873:0,0,0 ] -!20804 +!21040 }234 -Input:1616:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1617:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1618:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1619:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1620:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1621:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1622:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1623:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1624:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1625:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1626:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1627:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1628:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1629:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1630:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1631:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1388 +Input:1610:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1611:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1612:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1613:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1614:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 {235 -[1,12382:4262630,47279633:28320399,43253760,0 -(1,12382:4262630,4025873:0,0,0 -[1,12382:-473657,4025873:25952256,0,0 -(1,12382:-473657,-710414:25952256,0,0 -h1,12382:-473657,-710414:0,0,0 -(1,12382:-473657,-710414:0,0,0 -(1,12382:-473657,-710414:0,0,0 -g1,12382:-473657,-710414 -(1,12382:-473657,-710414:65781,0,65781 -g1,12382:-407876,-710414 -[1,12382:-407876,-644633:0,0,0 +[1,12383:4262630,47279633:28320399,43253760,0 +(1,12383:4262630,4025873:0,0,0 +[1,12383:-473657,4025873:25952256,0,0 +(1,12383:-473657,-710414:25952256,0,0 +h1,12383:-473657,-710414:0,0,0 +(1,12383:-473657,-710414:0,0,0 +(1,12383:-473657,-710414:0,0,0 +g1,12383:-473657,-710414 +(1,12383:-473657,-710414:65781,0,65781 +g1,12383:-407876,-710414 +[1,12383:-407876,-644633:0,0,0 ] ) -k1,12382:-473657,-710414:-65781 +k1,12383:-473657,-710414:-65781 ) ) -k1,12382:25478599,-710414:25952256 -g1,12382:25478599,-710414 +k1,12383:25478599,-710414:25952256 +g1,12383:25478599,-710414 ) ] ) -[1,12382:6630773,47279633:25952256,43253760,0 -[1,12382:6630773,4812305:25952256,786432,0 -(1,12382:6630773,4812305:25952256,513147,134348 -(1,12382:6630773,4812305:25952256,513147,134348 -g1,12382:3078558,4812305 -[1,12382:3078558,4812305:0,0,0 -(1,12382:3078558,2439708:0,1703936,0 -k1,12382:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12382:2537886,2439708:1179648,16384,0 +[1,12383:6630773,47279633:25952256,43253760,0 +[1,12383:6630773,4812305:25952256,786432,0 +(1,12383:6630773,4812305:25952256,513147,134348 +(1,12383:6630773,4812305:25952256,513147,134348 +g1,12383:3078558,4812305 +[1,12383:3078558,4812305:0,0,0 +(1,12383:3078558,2439708:0,1703936,0 +k1,12383:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12383:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12382:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12383:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12382:3078558,4812305:0,0,0 -(1,12382:3078558,2439708:0,1703936,0 -g1,12382:29030814,2439708 -g1,12382:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12382:36151628,1915420:16384,1179648,0 +[1,12383:3078558,4812305:0,0,0 +(1,12383:3078558,2439708:0,1703936,0 +g1,12383:29030814,2439708 +g1,12383:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12383:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12382:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12383:37855564,2439708:1179648,16384,0 ) ) -k1,12382:3078556,2439708:-34777008 +k1,12383:3078556,2439708:-34777008 ) ] -[1,12382:3078558,4812305:0,0,0 -(1,12382:3078558,49800853:0,16384,2228224 -k1,12382:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12382:2537886,49800853:1179648,16384,0 +[1,12383:3078558,4812305:0,0,0 +(1,12383:3078558,49800853:0,16384,2228224 +k1,12383:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12383:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12382:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12383:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12382:3078558,4812305:0,0,0 -(1,12382:3078558,49800853:0,16384,2228224 -g1,12382:29030814,49800853 -g1,12382:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12382:36151628,51504789:16384,1179648,0 +[1,12383:3078558,4812305:0,0,0 +(1,12383:3078558,49800853:0,16384,2228224 +g1,12383:29030814,49800853 +g1,12383:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12383:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12382:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12383:37855564,49800853:1179648,16384,0 ) ) -k1,12382:3078556,49800853:-34777008 +k1,12383:3078556,49800853:-34777008 ) ] -g1,12382:6630773,4812305 -k1,12382:25712890,4812305:17886740 -g1,12382:29057847,4812305 -g1,12382:29873114,4812305 +g1,12383:6630773,4812305 +k1,12383:25712890,4812305:17886740 +g1,12383:29057847,4812305 +g1,12383:29873114,4812305 ) ) ] -[1,12382:6630773,45706769:25952256,40108032,0 -(1,12382:6630773,45706769:25952256,40108032,0 -(1,12382:6630773,45706769:0,0,0 -g1,12382:6630773,45706769 +[1,12383:6630773,45706769:25952256,40108032,0 +(1,12383:6630773,45706769:25952256,40108032,0 +(1,12383:6630773,45706769:0,0,0 +g1,12383:6630773,45706769 ) -[1,12382:6630773,45706769:25952256,40108032,0 +[1,12383:6630773,45706769:25952256,40108032,0 (1,12337:6630773,14661426:25952256,9062689,0 k1,12337:10523651,14661426:3892878 h1,12336:10523651,14661426:0,0,0 @@ -215133,99876 +215017,97490 @@ g1,12336:28691032,14661426 g1,12337:28690151,14661426 k1,12337:32583029,14661426:3892878 ) -(1,12345:6630773,15502914:25952256,513147,126483 +(1,12345:6630773,15502914:25952256,513147,134348 h1,12344:6630773,15502914:983040,0,0 -k1,12344:8908979,15502914:341617 -k1,12344:10634717,15502914:341618 -k1,12344:12068819,15502914:341617 -k1,12344:12766297,15502914:341618 -k1,12344:15236523,15502914:341617 -k1,12344:17252585,15502914:341617 -k1,12344:18785648,15502914:341618 -k1,12344:19743303,15502914:341617 -k1,12344:22924596,15502914:341618 -k1,12344:24358698,15502914:341617 -k1,12344:25719400,15502914:341617 -k1,12344:27435963,15502914:341618 -k1,12344:29077159,15502914:341617 -k1,12344:30180305,15502914:341618 -k1,12344:31821501,15502914:341617 +k1,12344:8718095,15502914:150733 +k1,12344:10211660,15502914:150732 +k1,12344:11756344,15502914:150733 +k1,12344:14971541,15502914:150733 +k1,12344:15773701,15502914:150732 +k1,12344:18544563,15502914:150733 +k1,12344:19051156,15502914:150733 +k1,12344:20479185,15502914:150732 +k1,12344:22023869,15502914:150733 +k1,12344:22530462,15502914:150733 +k1,12344:26521604,15502914:150732 +k1,12344:30071034,15502914:150733 k1,12344:32583029,15502914:0 ) -(1,12345:6630773,16344402:25952256,513147,134348 -k1,12344:9117386,16344402:304919 -(1,12344:9117386,16344402:0,452978,122846 -r1,12344:15454754,16344402:6337368,575824,122846 -k1,12344:9117386,16344402:-6337368 -) -(1,12344:9117386,16344402:6337368,452978,122846 -g1,12344:12286070,16344402 -g1,12344:12989494,16344402 -h1,12344:15451477,16344402:0,411205,112570 -) -k1,12344:15759673,16344402:304919 -k1,12344:16716020,16344402:304919 -k1,12344:19665972,16344402:304919 -k1,12344:20989976,16344402:304919 -k1,12344:23560475,16344402:304919 -(1,12344:23560475,16344402:0,452978,115847 -r1,12344:29897843,16344402:6337368,568825,115847 -k1,12344:23560475,16344402:-6337368 -) -(1,12344:23560475,16344402:6337368,452978,115847 -g1,12344:26729159,16344402 -g1,12344:27432583,16344402 -h1,12344:29894566,16344402:0,411205,112570 -) -k1,12344:30376432,16344402:304919 -k1,12345:32583029,16344402:0 -) -(1,12345:6630773,17185890:25952256,505283,134348 -(1,12344:6630773,17185890:0,452978,115847 -r1,12344:10154446,17185890:3523673,568825,115847 -k1,12344:6630773,17185890:-3523673 -) -(1,12344:6630773,17185890:3523673,452978,115847 -g1,12344:8744321,17185890 -g1,12344:9447745,17185890 -h1,12344:10151169,17185890:0,411205,112570 -) -g1,12344:10353675,17185890 -g1,12344:13237914,17185890 -g1,12344:14456228,17185890 -g1,12344:16154265,17185890 -g1,12344:19483493,17185890 -g1,12344:20701807,17185890 -k1,12345:32583029,17185890:10332606 -g1,12345:32583029,17185890 -) -v1,12347:6630773,18229189:0,393216,0 -(1,12353:6630773,19882933:25952256,2046960,196608 -g1,12353:6630773,19882933 -g1,12353:6630773,19882933 -g1,12353:6434165,19882933 -(1,12353:6434165,19882933:0,2046960,196608 -r1,12353:32779637,19882933:26345472,2243568,196608 -k1,12353:6434165,19882933:-26345472 -) -(1,12353:6434165,19882933:26345472,2046960,196608 -[1,12353:6630773,19882933:25952256,1850352,0 -(1,12349:6630773,18443099:25952256,410518,107478 -(1,12348:6630773,18443099:0,0,0 -g1,12348:6630773,18443099 -g1,12348:6630773,18443099 -g1,12348:6303093,18443099 -(1,12348:6303093,18443099:0,0,0 -) -g1,12348:6630773,18443099 -) -k1,12349:6630773,18443099:0 -g1,12349:12953687,18443099 -g1,12349:14850562,18443099 -g1,12349:15482854,18443099 -g1,12349:18960457,18443099 -g1,12349:19592749,18443099 -g1,12349:20225041,18443099 -g1,12349:24334935,18443099 -g1,12349:25915664,18443099 -g1,12349:26547956,18443099 -g1,12349:29077122,18443099 -h1,12349:29393268,18443099:0,0,0 -k1,12349:32583029,18443099:3189761 -g1,12349:32583029,18443099 -) -(1,12350:6630773,19109277:25952256,404226,107478 -h1,12350:6630773,19109277:0,0,0 -g1,12350:6946919,19109277 -g1,12350:7263065,19109277 -g1,12350:7579211,19109277 -g1,12350:7895357,19109277 -g1,12350:8211503,19109277 -g1,12350:12953688,19109277 -g1,12350:13585980,19109277 -g1,12350:14850563,19109277 -g1,12350:17695874,19109277 -g1,12350:18328166,19109277 -g1,12350:21173478,19109277 -h1,12350:21489624,19109277:0,0,0 -k1,12350:32583029,19109277:11093405 -g1,12350:32583029,19109277 -) -(1,12351:6630773,19775455:25952256,410518,107478 -h1,12351:6630773,19775455:0,0,0 -g1,12351:6946919,19775455 -g1,12351:7263065,19775455 -g1,12351:7579211,19775455 -g1,12351:7895357,19775455 -g1,12351:8211503,19775455 -g1,12351:13902125,19775455 -g1,12351:14534417,19775455 -k1,12351:14534417,19775455:0 -h1,12351:19276602,19775455:0,0,0 -k1,12351:32583029,19775455:13306427 -g1,12351:32583029,19775455 -) -] -) -g1,12353:32583029,19882933 -g1,12353:6630773,19882933 -g1,12353:6630773,19882933 -g1,12353:32583029,19882933 -g1,12353:32583029,19882933 -) -h1,12353:6630773,20079541:0,0,0 -(1,12356:6630773,29584888:25952256,9062689,0 -k1,12356:10523651,29584888:3892878 -h1,12355:10523651,29584888:0,0,0 -(1,12355:10523651,29584888:18166500,9062689,0 -(1,12355:10523651,29584888:18167381,9062712,0 -(1,12355:10523651,29584888:18167381,9062712,0 -(1,12355:10523651,29584888:0,9062712,0 -(1,12355:10523651,29584888:0,14155776,0 -(1,12355:10523651,29584888:28377088,14155776,0 -) -k1,12355:10523651,29584888:-28377088 -) -) -g1,12355:28691032,29584888 -) -) -) -g1,12356:28690151,29584888 -k1,12356:32583029,29584888:3892878 -) -v1,12364:6630773,30803497:0,393216,0 -(1,12365:6630773,33919515:25952256,3509234,616038 -g1,12365:6630773,33919515 -(1,12365:6630773,33919515:25952256,3509234,616038 -(1,12365:6630773,34535553:25952256,4125272,0 -[1,12365:6630773,34535553:25952256,4125272,0 -(1,12365:6630773,34509339:25952256,4072844,0 -r1,12365:6656987,34509339:26214,4072844,0 -[1,12365:6656987,34509339:25899828,4072844,0 -(1,12365:6656987,33919515:25899828,2893196,0 -[1,12365:7246811,33919515:24720180,2893196,0 -(1,12365:7246811,32113693:24720180,1087374,134348 -k1,12364:8702465,32113693:245951 -k1,12364:11310988,32113693:245950 -k1,12364:12576024,32113693:245951 -k1,12364:15894302,32113693:245950 -k1,12364:16791681,32113693:245951 -(1,12364:16791681,32113693:0,452978,115847 -r1,12365:19611930,32113693:2820249,568825,115847 -k1,12364:16791681,32113693:-2820249 -) -(1,12364:16791681,32113693:2820249,452978,115847 -k1,12364:16791681,32113693:3277 -h1,12364:19608653,32113693:0,411205,112570 -) -k1,12364:20031550,32113693:245950 -k1,12364:20960386,32113693:245951 -k1,12364:22015706,32113693:245950 -k1,12364:23280742,32113693:245951 -k1,12364:25792272,32113693:245950 -k1,12364:26785989,32113693:245951 -k1,12364:29057657,32113693:245950 -k1,12364:30796518,32113693:245951 -k1,12364:31966991,32113693:0 -) -(1,12365:7246811,32955181:24720180,513147,134348 -k1,12364:11175098,32955181:263514 -k1,12364:12227010,32955181:263514 -k1,12364:14261308,32955181:263515 -k1,12364:15334192,32955181:263514 -k1,12364:16616791,32955181:263514 -k1,12364:18909300,32955181:263514 -k1,12364:20806627,32955181:263514 -k1,12364:21601638,32955181:263514 -k1,12364:22884238,32955181:263515 -k1,12364:26334112,32955181:263514 -k1,12364:29232829,32955181:263514 -k1,12365:31966991,32955181:0 -) -(1,12365:7246811,33796669:24720180,505283,122846 -(1,12364:7246811,33796669:0,452978,115847 -r1,12365:10770483,33796669:3523672,568825,115847 -k1,12364:7246811,33796669:-3523672 -) -(1,12364:7246811,33796669:3523672,452978,115847 -k1,12364:7246811,33796669:3277 -h1,12364:10767206,33796669:0,411205,112570 -) -g1,12364:11143382,33796669 -(1,12364:11143382,33796669:0,452978,122846 -r1,12365:13611919,33796669:2468537,575824,122846 -k1,12364:11143382,33796669:-2468537 -) -(1,12364:11143382,33796669:2468537,452978,122846 -k1,12364:11143382,33796669:3277 -h1,12364:13608642,33796669:0,411205,112570 -) -g1,12364:13811148,33796669 -g1,12364:15201822,33796669 -(1,12364:15201822,33796669:0,452978,115847 -r1,12365:17670359,33796669:2468537,568825,115847 -k1,12364:15201822,33796669:-2468537 -) -(1,12364:15201822,33796669:2468537,452978,115847 -k1,12364:15201822,33796669:3277 -h1,12364:17667082,33796669:0,411205,112570 -) -k1,12365:31966991,33796669:13969607 -g1,12365:31966991,33796669 -) -] -) -] -r1,12365:32583029,34509339:26214,4072844,0 -) -] -) -) -g1,12365:32583029,33919515 -) -h1,12365:6630773,34535553:0,0,0 -v1,12368:6630773,35754163:0,393216,0 -(1,12369:6630773,38863182:25952256,3502235,616038 -g1,12369:6630773,38863182 -(1,12369:6630773,38863182:25952256,3502235,616038 -(1,12369:6630773,39479220:25952256,4118273,0 -[1,12369:6630773,39479220:25952256,4118273,0 -(1,12369:6630773,39453006:25952256,4065845,0 -r1,12369:6656987,39453006:26214,4065845,0 -[1,12369:6656987,39453006:25899828,4065845,0 -(1,12369:6656987,38863182:25899828,2886197,0 -[1,12369:7246811,38863182:24720180,2886197,0 -(1,12369:7246811,37064359:24720180,1087374,134348 -k1,12368:8589995,37064359:133481 -k1,12368:9872322,37064359:133481 -k1,12368:13093859,37064359:133481 -k1,12368:13913503,37064359:133482 -k1,12368:17449613,37064359:133481 -k1,12368:18530745,37064359:133481 -k1,12368:21728690,37064359:133481 -k1,12368:22545056,37064359:133481 -k1,12368:24075109,37064359:133481 -k1,12368:26719931,37064359:133482 -(1,12368:26719931,37064359:0,414482,115847 -r1,12369:29891891,37064359:3171960,530329,115847 -k1,12368:26719931,37064359:-3171960 -) -(1,12368:26719931,37064359:3171960,414482,115847 -k1,12368:26719931,37064359:3277 -h1,12368:29888614,37064359:0,411205,112570 -) -k1,12368:30025372,37064359:133481 -k1,12368:30810281,37064359:133481 -k1,12368:31966991,37064359:0 -) -(1,12369:7246811,37905847:24720180,513147,126483 -k1,12368:8177418,37905847:247722 -k1,12368:10075336,37905847:247721 -k1,12368:10982350,37905847:247722 -k1,12368:12249157,37905847:247722 -k1,12368:15561342,37905847:247721 -k1,12368:17322290,37905847:247722 -k1,12368:18331540,37905847:247722 -(1,12368:18331540,37905847:0,452978,122846 -r1,12369:21855212,37905847:3523672,575824,122846 -k1,12368:18331540,37905847:-3523672 -) -(1,12368:18331540,37905847:3523672,452978,122846 -k1,12368:18331540,37905847:3277 -h1,12368:21851935,37905847:0,411205,112570 -) -k1,12368:22276603,37905847:247721 -k1,12368:24017891,37905847:247722 -k1,12368:24951775,37905847:247722 -(1,12368:24951775,37905847:0,452978,115847 -r1,12369:26716888,37905847:1765113,568825,115847 -k1,12368:24951775,37905847:-1765113 -) -(1,12368:24951775,37905847:1765113,452978,115847 -k1,12368:24951775,37905847:3277 -h1,12368:26713611,37905847:0,411205,112570 -) -k1,12368:27138279,37905847:247721 -(1,12368:27138279,37905847:0,459977,115847 -r1,12369:28551680,37905847:1413401,575824,115847 -k1,12368:27138279,37905847:-1413401 -) -(1,12368:27138279,37905847:1413401,459977,115847 -k1,12368:27138279,37905847:3277 -h1,12368:28548403,37905847:0,411205,112570 -) -k1,12368:28973072,37905847:247722 -(1,12368:28973072,37905847:0,452978,115847 -r1,12369:31793321,37905847:2820249,568825,115847 -k1,12368:28973072,37905847:-2820249 -) -(1,12368:28973072,37905847:2820249,452978,115847 -k1,12368:28973072,37905847:3277 -h1,12368:31790044,37905847:0,411205,112570 -) -k1,12369:31966991,37905847:0 -) -(1,12369:7246811,38747335:24720180,505283,115847 -(1,12368:7246811,38747335:0,452978,115847 -r1,12369:8660212,38747335:1413401,568825,115847 -k1,12368:7246811,38747335:-1413401 -) -(1,12368:7246811,38747335:1413401,452978,115847 -k1,12368:7246811,38747335:3277 -h1,12368:8656935,38747335:0,411205,112570 -) -g1,12368:9033111,38747335 -(1,12368:9033111,38747335:0,452978,115847 -r1,12369:10798224,38747335:1765113,568825,115847 -k1,12368:9033111,38747335:-1765113 -) -(1,12368:9033111,38747335:1765113,452978,115847 -k1,12368:9033111,38747335:3277 -h1,12368:10794947,38747335:0,411205,112570 -) -g1,12368:10997453,38747335 -g1,12368:12388127,38747335 -(1,12368:12388127,38747335:0,452978,115847 -r1,12369:14153240,38747335:1765113,568825,115847 -k1,12368:12388127,38747335:-1765113 -) -(1,12368:12388127,38747335:1765113,452978,115847 -k1,12368:12388127,38747335:3277 -h1,12368:14149963,38747335:0,411205,112570 -) -k1,12369:31966990,38747335:17640080 -g1,12369:31966990,38747335 -) -] -) -] -r1,12369:32583029,39453006:26214,4065845,0 -) -] -) -) -g1,12369:32583029,38863182 -) -h1,12369:6630773,39479220:0,0,0 -(1,12374:6630773,41947601:25952256,555811,12975 -(1,12374:6630773,41947601:2450326,527696,12975 -g1,12374:6630773,41947601 -g1,12374:9081099,41947601 -) -k1,12374:32583030,41947601:21735736 -g1,12374:32583030,41947601 -) -(1,12378:6630773,43182305:25952256,505283,134348 -k1,12377:7807234,43182305:222912 -k1,12377:9134427,43182305:222911 -k1,12377:10943310,43182305:222912 -k1,12377:13307282,43182305:222911 -k1,12377:14213079,43182305:222912 -k1,12377:18071272,43182305:222911 -k1,12377:19635051,43182305:222912 -k1,12377:21251913,43182305:222911 -(1,12377:21251913,43182305:0,452978,122846 -r1,12377:25127297,43182305:3875384,575824,122846 -k1,12377:21251913,43182305:-3875384 +(1,12345:6630773,16344402:25952256,513147,126483 +k1,12344:7817882,16344402:239458 +k1,12344:8413201,16344402:239459 +k1,12344:10960837,16344402:239458 +k1,12344:15914955,16344402:239458 +k1,12344:18142776,16344402:239459 +k1,12344:19065119,16344402:239458 +k1,12344:21060287,16344402:239458 +k1,12344:22349632,16344402:239458 +k1,12344:24867778,16344402:239459 +h1,12344:25838366,16344402:0,0,0 +k1,12344:26077824,16344402:239458 +k1,12344:27508727,16344402:239458 +k1,12344:30026873,16344402:239459 +h1,12344:31395920,16344402:0,0,0 +k1,12344:31635378,16344402:239458 +k1,12344:32583029,16344402:0 +) +(1,12345:6630773,17185890:25952256,513147,126483 +k1,12344:10677003,17185890:239244 +k1,12344:11725617,17185890:239244 +k1,12344:13867371,17185890:239244 +k1,12344:15298060,17185890:239244 +k1,12344:18027672,17185890:239244 +k1,12344:22237087,17185890:239244 +k1,12344:23429880,17185890:239244 +k1,12344:24603667,17185890:239244 +(1,12344:24603667,17185890:0,452978,115847 +r1,12344:28479051,17185890:3875384,568825,115847 +k1,12344:24603667,17185890:-3875384 +) +(1,12344:24603667,17185890:3875384,452978,115847 +g1,12344:26717215,17185890 +g1,12344:27420639,17185890 +h1,12344:28475774,17185890:0,411205,112570 +) +k1,12344:28718295,17185890:239244 +k1,12344:29608967,17185890:239244 +k1,12344:31563944,17185890:239244 +k1,12344:32583029,17185890:0 +) +(1,12345:6630773,18027378:25952256,513147,134348 +k1,12344:8302003,18027378:296285 +k1,12344:11670616,18027378:296285 +k1,12344:14173498,18027378:296285 +(1,12344:14173498,18027378:0,452978,115847 +r1,12344:19455730,18027378:5282232,568825,115847 +k1,12344:14173498,18027378:-5282232 +) +(1,12344:14173498,18027378:5282232,452978,115847 +g1,12344:16287046,18027378 +g1,12344:16990470,18027378 +h1,12344:19452453,18027378:0,411205,112570 +) +k1,12344:19752015,18027378:296285 +k1,12344:23023636,18027378:296286 +k1,12344:24339006,18027378:296285 +k1,12344:26900871,18027378:296285 +k1,12344:28813274,18027378:296285 +k1,12344:29768851,18027378:296285 +k1,12344:31084221,18027378:296285 +k1,12344:32583029,18027378:0 +) +(1,12345:6630773,18868866:25952256,505283,134348 +g1,12344:9960001,18868866 +g1,12344:11178315,18868866 +k1,12345:32583029,18868866:19856098 +g1,12345:32583029,18868866 +) +v1,12347:6630773,20059332:0,393216,0 +(1,12353:6630773,21713076:25952256,2046960,196608 +g1,12353:6630773,21713076 +g1,12353:6630773,21713076 +g1,12353:6434165,21713076 +(1,12353:6434165,21713076:0,2046960,196608 +r1,12353:32779637,21713076:26345472,2243568,196608 +k1,12353:6434165,21713076:-26345472 +) +(1,12353:6434165,21713076:26345472,2046960,196608 +[1,12353:6630773,21713076:25952256,1850352,0 +(1,12349:6630773,20273242:25952256,410518,107478 +(1,12348:6630773,20273242:0,0,0 +g1,12348:6630773,20273242 +g1,12348:6630773,20273242 +g1,12348:6303093,20273242 +(1,12348:6303093,20273242:0,0,0 +) +g1,12348:6630773,20273242 +) +k1,12349:6630773,20273242:0 +g1,12349:12953687,20273242 +g1,12349:14850562,20273242 +g1,12349:15482854,20273242 +g1,12349:18960457,20273242 +g1,12349:19592749,20273242 +g1,12349:20225041,20273242 +g1,12349:24334935,20273242 +g1,12349:25915664,20273242 +g1,12349:26547956,20273242 +g1,12349:29077122,20273242 +h1,12349:29393268,20273242:0,0,0 +k1,12349:32583029,20273242:3189761 +g1,12349:32583029,20273242 +) +(1,12350:6630773,20939420:25952256,404226,107478 +h1,12350:6630773,20939420:0,0,0 +g1,12350:6946919,20939420 +g1,12350:7263065,20939420 +g1,12350:7579211,20939420 +g1,12350:7895357,20939420 +g1,12350:8211503,20939420 +g1,12350:12953688,20939420 +g1,12350:13585980,20939420 +g1,12350:16431292,20939420 +g1,12350:18328166,20939420 +g1,12350:18960458,20939420 +g1,12350:20541187,20939420 +h1,12350:20857333,20939420:0,0,0 +k1,12350:32583029,20939420:11725696 +g1,12350:32583029,20939420 +) +(1,12351:6630773,21605598:25952256,410518,107478 +h1,12351:6630773,21605598:0,0,0 +g1,12351:6946919,21605598 +g1,12351:7263065,21605598 +g1,12351:7579211,21605598 +g1,12351:7895357,21605598 +g1,12351:8211503,21605598 +g1,12351:13902125,21605598 +g1,12351:14534417,21605598 +k1,12351:14534417,21605598:0 +h1,12351:18328165,21605598:0,0,0 +k1,12351:32583029,21605598:14254864 +g1,12351:32583029,21605598 +) +] +) +g1,12353:32583029,21713076 +g1,12353:6630773,21713076 +g1,12353:6630773,21713076 +g1,12353:32583029,21713076 +g1,12353:32583029,21713076 +) +h1,12353:6630773,21909684:0,0,0 +(1,12356:6630773,31562197:25952256,9062689,0 +k1,12356:10523651,31562197:3892878 +h1,12355:10523651,31562197:0,0,0 +(1,12355:10523651,31562197:18166500,9062689,0 +(1,12355:10523651,31562197:18167381,9062712,0 +(1,12355:10523651,31562197:18167381,9062712,0 +(1,12355:10523651,31562197:0,9062712,0 +(1,12355:10523651,31562197:0,14155776,0 +(1,12355:10523651,31562197:28377088,14155776,0 +) +k1,12355:10523651,31562197:-28377088 +) +) +g1,12355:28691032,31562197 +) +) +) +g1,12356:28690151,31562197 +k1,12356:32583029,31562197:3892878 +) +(1,12364:6630773,32403685:25952256,513147,126483 +h1,12363:6630773,32403685:983040,0,0 +k1,12363:8908979,32403685:341617 +k1,12363:10634717,32403685:341618 +k1,12363:12068819,32403685:341617 +k1,12363:12766297,32403685:341618 +k1,12363:15236523,32403685:341617 +k1,12363:17252585,32403685:341617 +k1,12363:18785648,32403685:341618 +k1,12363:19743303,32403685:341617 +k1,12363:22924596,32403685:341618 +k1,12363:24358698,32403685:341617 +k1,12363:25719400,32403685:341617 +k1,12363:27435963,32403685:341618 +k1,12363:29077159,32403685:341617 +k1,12363:30180305,32403685:341618 +k1,12363:31821501,32403685:341617 +k1,12363:32583029,32403685:0 +) +(1,12364:6630773,33245173:25952256,513147,134348 +k1,12363:9117386,33245173:304919 +(1,12363:9117386,33245173:0,452978,122846 +r1,12363:15454754,33245173:6337368,575824,122846 +k1,12363:9117386,33245173:-6337368 +) +(1,12363:9117386,33245173:6337368,452978,122846 +g1,12363:12286070,33245173 +g1,12363:12989494,33245173 +h1,12363:15451477,33245173:0,411205,112570 +) +k1,12363:15759673,33245173:304919 +k1,12363:16716020,33245173:304919 +k1,12363:19665972,33245173:304919 +k1,12363:20989976,33245173:304919 +k1,12363:23560475,33245173:304919 +(1,12363:23560475,33245173:0,452978,115847 +r1,12363:29897843,33245173:6337368,568825,115847 +k1,12363:23560475,33245173:-6337368 +) +(1,12363:23560475,33245173:6337368,452978,115847 +g1,12363:26729159,33245173 +g1,12363:27432583,33245173 +h1,12363:29894566,33245173:0,411205,112570 +) +k1,12363:30376432,33245173:304919 +k1,12364:32583029,33245173:0 +) +(1,12364:6630773,34086661:25952256,505283,134348 +(1,12363:6630773,34086661:0,452978,115847 +r1,12363:10154446,34086661:3523673,568825,115847 +k1,12363:6630773,34086661:-3523673 +) +(1,12363:6630773,34086661:3523673,452978,115847 +g1,12363:8744321,34086661 +g1,12363:9447745,34086661 +h1,12363:10151169,34086661:0,411205,112570 +) +g1,12363:10353675,34086661 +g1,12363:13237914,34086661 +g1,12363:14456228,34086661 +g1,12363:16154265,34086661 +g1,12363:19483493,34086661 +g1,12363:20701807,34086661 +k1,12364:32583029,34086661:10332606 +g1,12364:32583029,34086661 +) +v1,12366:6630773,35277127:0,393216,0 +(1,12372:6630773,36930871:25952256,2046960,196608 +g1,12372:6630773,36930871 +g1,12372:6630773,36930871 +g1,12372:6434165,36930871 +(1,12372:6434165,36930871:0,2046960,196608 +r1,12372:32779637,36930871:26345472,2243568,196608 +k1,12372:6434165,36930871:-26345472 +) +(1,12372:6434165,36930871:26345472,2046960,196608 +[1,12372:6630773,36930871:25952256,1850352,0 +(1,12368:6630773,35491037:25952256,410518,107478 +(1,12367:6630773,35491037:0,0,0 +g1,12367:6630773,35491037 +g1,12367:6630773,35491037 +g1,12367:6303093,35491037 +(1,12367:6303093,35491037:0,0,0 +) +g1,12367:6630773,35491037 +) +k1,12368:6630773,35491037:0 +g1,12368:12953687,35491037 +g1,12368:14850562,35491037 +g1,12368:15482854,35491037 +g1,12368:18960457,35491037 +g1,12368:19592749,35491037 +g1,12368:20225041,35491037 +g1,12368:24334935,35491037 +g1,12368:25915664,35491037 +g1,12368:26547956,35491037 +g1,12368:29077122,35491037 +h1,12368:29393268,35491037:0,0,0 +k1,12368:32583029,35491037:3189761 +g1,12368:32583029,35491037 +) +(1,12369:6630773,36157215:25952256,404226,107478 +h1,12369:6630773,36157215:0,0,0 +g1,12369:6946919,36157215 +g1,12369:7263065,36157215 +g1,12369:7579211,36157215 +g1,12369:7895357,36157215 +g1,12369:8211503,36157215 +g1,12369:12953688,36157215 +g1,12369:13585980,36157215 +g1,12369:14850563,36157215 +g1,12369:17695874,36157215 +g1,12369:18328166,36157215 +g1,12369:21173478,36157215 +h1,12369:21489624,36157215:0,0,0 +k1,12369:32583029,36157215:11093405 +g1,12369:32583029,36157215 +) +(1,12370:6630773,36823393:25952256,410518,107478 +h1,12370:6630773,36823393:0,0,0 +g1,12370:6946919,36823393 +g1,12370:7263065,36823393 +g1,12370:7579211,36823393 +g1,12370:7895357,36823393 +g1,12370:8211503,36823393 +g1,12370:13902125,36823393 +g1,12370:14534417,36823393 +k1,12370:14534417,36823393:0 +h1,12370:19276602,36823393:0,0,0 +k1,12370:32583029,36823393:13306427 +g1,12370:32583029,36823393 +) +] +) +g1,12372:32583029,36930871 +g1,12372:6630773,36930871 +g1,12372:6630773,36930871 +g1,12372:32583029,36930871 +g1,12372:32583029,36930871 +) +h1,12372:6630773,37127479:0,0,0 +] +(1,12383:32583029,45706769:0,0,0 +g1,12383:32583029,45706769 +) +) +] +(1,12383:6630773,47279633:25952256,0,0 +h1,12383:6630773,47279633:25952256,0,0 +) +] +h1,12383:4262630,4025873:0,0,0 +] +!13389 +}235 +Input:1615:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1616:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1617:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1618:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1619:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1620:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1621:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1622:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1623:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1624:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1625:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1626:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1627:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1628:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1629:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1630:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 +{236 +[1,12429:4262630,47279633:28320399,43253760,0 +(1,12429:4262630,4025873:0,0,0 +[1,12429:-473657,4025873:25952256,0,0 +(1,12429:-473657,-710414:25952256,0,0 +h1,12429:-473657,-710414:0,0,0 +(1,12429:-473657,-710414:0,0,0 +(1,12429:-473657,-710414:0,0,0 +g1,12429:-473657,-710414 +(1,12429:-473657,-710414:65781,0,65781 +g1,12429:-407876,-710414 +[1,12429:-407876,-644633:0,0,0 +] ) -(1,12377:21251913,43182305:3875384,452978,122846 -k1,12377:21251913,43182305:3277 -h1,12377:25124020,43182305:0,411205,112570 +k1,12429:-473657,-710414:-65781 ) -k1,12377:25350209,43182305:222912 -k1,12377:28836158,43182305:222911 -k1,12377:30069635,43182305:222912 -k1,12377:31900144,43182305:222911 -k1,12377:32583029,43182305:0 ) -(1,12378:6630773,44023793:25952256,505283,126483 -g1,12377:8954679,44023793 -g1,12377:10528853,44023793 -k1,12378:32583029,44023793:20153632 -g1,12378:32583029,44023793 +k1,12429:25478599,-710414:25952256 +g1,12429:25478599,-710414 ) -(1,12380:6630773,44865281:25952256,513147,134348 -h1,12379:6630773,44865281:983040,0,0 -k1,12379:8813832,44865281:246470 -k1,12379:10458185,44865281:246470 -k1,12379:13436851,44865281:246470 -k1,12379:14878698,44865281:246470 -k1,12379:17619468,44865281:246470 -k1,12379:19782211,44865281:246470 -k1,12379:21596301,44865281:246469 -k1,12379:22861856,44865281:246470 -$1,12379:22861856,44865281 -$1,12379:23306845,44865281 -k1,12379:23553315,44865281:246470 -k1,12379:27581212,44865281:246470 -k1,12379:29221633,44865281:246470 -k1,12379:31923737,44865281:246470 -k1,12379:32583029,44865281:0 +] ) -(1,12380:6630773,45706769:25952256,513147,102892 -g1,12379:9513046,45706769 -$1,12379:9513046,45706769 -(1,12379:9919371,45805083:311689,334430,0 +[1,12429:6630773,47279633:25952256,43253760,0 +[1,12429:6630773,4812305:25952256,786432,0 +(1,12429:6630773,4812305:25952256,485622,11795 +(1,12429:6630773,4812305:25952256,485622,11795 +g1,12429:3078558,4812305 +[1,12429:3078558,4812305:0,0,0 +(1,12429:3078558,2439708:0,1703936,0 +k1,12429:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12429:2537886,2439708:1179648,16384,0 ) -g1,12379:10413120,45706769 -g1,12379:11163377,45706769 -g1,12379:11860471,45706769 -(1,12379:12266796,45805083:311689,339935,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12429:3078558,1915420:16384,1179648,0 ) -g1,12379:12760545,45706769 -g1,12379:13510802,45706769 -$1,12379:14307720,45706769 -k1,12380:32583030,45706769:18101640 -g1,12380:32583030,45706769 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] -(1,12382:32583029,45706769:0,0,0 -g1,12382:32583029,45706769 +) ) ) ] -(1,12382:6630773,47279633:25952256,0,0 -h1,12382:6630773,47279633:25952256,0,0 +[1,12429:3078558,4812305:0,0,0 +(1,12429:3078558,2439708:0,1703936,0 +g1,12429:29030814,2439708 +g1,12429:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12429:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] -h1,12382:4262630,4025873:0,0,0 +) +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12429:37855564,2439708:1179648,16384,0 +) +) +k1,12429:3078556,2439708:-34777008 +) ] -!17343 -}235 -Input:1632:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1633:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1634:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1635:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1636:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1637:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1638:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{236 -[1,12435:4262630,47279633:28320399,43253760,0 -(1,12435:4262630,4025873:0,0,0 -[1,12435:-473657,4025873:25952256,0,0 -(1,12435:-473657,-710414:25952256,0,0 -h1,12435:-473657,-710414:0,0,0 -(1,12435:-473657,-710414:0,0,0 -(1,12435:-473657,-710414:0,0,0 -g1,12435:-473657,-710414 -(1,12435:-473657,-710414:65781,0,65781 -g1,12435:-407876,-710414 -[1,12435:-407876,-644633:0,0,0 +[1,12429:3078558,4812305:0,0,0 +(1,12429:3078558,49800853:0,16384,2228224 +k1,12429:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12429:2537886,49800853:1179648,16384,0 +) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12429:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) ] ) -k1,12435:-473657,-710414:-65781 ) ) -k1,12435:25478599,-710414:25952256 -g1,12435:25478599,-710414 +] +[1,12429:3078558,4812305:0,0,0 +(1,12429:3078558,49800853:0,16384,2228224 +g1,12429:29030814,49800853 +g1,12429:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12429:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -[1,12435:6630773,47279633:25952256,43253760,0 -[1,12435:6630773,4812305:25952256,786432,0 -(1,12435:6630773,4812305:25952256,485622,11795 -(1,12435:6630773,4812305:25952256,485622,11795 -g1,12435:3078558,4812305 -[1,12435:3078558,4812305:0,0,0 -(1,12435:3078558,2439708:0,1703936,0 -k1,12435:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12435:2537886,2439708:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12429:37855564,49800853:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12435:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,12429:3078556,49800853:-34777008 ) ] -) +g1,12429:6630773,4812305 +g1,12429:6630773,4812305 +g1,12429:10347975,4812305 +k1,12429:31387651,4812305:21039676 ) ) ] -[1,12435:3078558,4812305:0,0,0 -(1,12435:3078558,2439708:0,1703936,0 -g1,12435:29030814,2439708 -g1,12435:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12435:36151628,1915420:16384,1179648,0 +[1,12429:6630773,45706769:25952256,40108032,0 +(1,12429:6630773,45706769:25952256,40108032,0 +(1,12429:6630773,45706769:0,0,0 +g1,12429:6630773,45706769 +) +[1,12429:6630773,45706769:25952256,40108032,0 +(1,12375:6630773,14661426:25952256,9062689,0 +k1,12375:10523651,14661426:3892878 +h1,12374:10523651,14661426:0,0,0 +(1,12374:10523651,14661426:18166500,9062689,0 +(1,12374:10523651,14661426:18167381,9062712,0 +(1,12374:10523651,14661426:18167381,9062712,0 +(1,12374:10523651,14661426:0,9062712,0 +(1,12374:10523651,14661426:0,14155776,0 +(1,12374:10523651,14661426:28377088,14155776,0 +) +k1,12374:10523651,14661426:-28377088 +) ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +g1,12374:28691032,14661426 ) +) +) +g1,12375:28690151,14661426 +k1,12375:32583029,14661426:3892878 +) +v1,12383:6630773,16027202:0,393216,0 +(1,12384:6630773,19143220:25952256,3509234,616038 +g1,12384:6630773,19143220 +(1,12384:6630773,19143220:25952256,3509234,616038 +(1,12384:6630773,19759258:25952256,4125272,0 +[1,12384:6630773,19759258:25952256,4125272,0 +(1,12384:6630773,19733044:25952256,4072844,0 +r1,12384:6656987,19733044:26214,4072844,0 +[1,12384:6656987,19733044:25899828,4072844,0 +(1,12384:6656987,19143220:25899828,2893196,0 +[1,12384:7246811,19143220:24720180,2893196,0 +(1,12384:7246811,17337398:24720180,1087374,134348 +k1,12383:8702465,17337398:245951 +k1,12383:11310988,17337398:245950 +k1,12383:12576024,17337398:245951 +k1,12383:15894302,17337398:245950 +k1,12383:16791681,17337398:245951 +(1,12383:16791681,17337398:0,452978,115847 +r1,12384:19611930,17337398:2820249,568825,115847 +k1,12383:16791681,17337398:-2820249 +) +(1,12383:16791681,17337398:2820249,452978,115847 +k1,12383:16791681,17337398:3277 +h1,12383:19608653,17337398:0,411205,112570 +) +k1,12383:20031550,17337398:245950 +k1,12383:20960386,17337398:245951 +k1,12383:22015706,17337398:245950 +k1,12383:23280742,17337398:245951 +k1,12383:25792272,17337398:245950 +k1,12383:26785989,17337398:245951 +k1,12383:29057657,17337398:245950 +k1,12383:30796518,17337398:245951 +k1,12383:31966991,17337398:0 +) +(1,12384:7246811,18178886:24720180,513147,134348 +k1,12383:11175098,18178886:263514 +k1,12383:12227010,18178886:263514 +k1,12383:14261308,18178886:263515 +k1,12383:15334192,18178886:263514 +k1,12383:16616791,18178886:263514 +k1,12383:18909300,18178886:263514 +k1,12383:20806627,18178886:263514 +k1,12383:21601638,18178886:263514 +k1,12383:22884238,18178886:263515 +k1,12383:26334112,18178886:263514 +k1,12383:29232829,18178886:263514 +k1,12384:31966991,18178886:0 +) +(1,12384:7246811,19020374:24720180,505283,122846 +(1,12383:7246811,19020374:0,452978,115847 +r1,12384:10770483,19020374:3523672,568825,115847 +k1,12383:7246811,19020374:-3523672 +) +(1,12383:7246811,19020374:3523672,452978,115847 +k1,12383:7246811,19020374:3277 +h1,12383:10767206,19020374:0,411205,112570 +) +g1,12383:11143382,19020374 +(1,12383:11143382,19020374:0,452978,122846 +r1,12384:13611919,19020374:2468537,575824,122846 +k1,12383:11143382,19020374:-2468537 +) +(1,12383:11143382,19020374:2468537,452978,122846 +k1,12383:11143382,19020374:3277 +h1,12383:13608642,19020374:0,411205,112570 +) +g1,12383:13811148,19020374 +g1,12383:15201822,19020374 +(1,12383:15201822,19020374:0,452978,115847 +r1,12384:17670359,19020374:2468537,568825,115847 +k1,12383:15201822,19020374:-2468537 +) +(1,12383:15201822,19020374:2468537,452978,115847 +k1,12383:15201822,19020374:3277 +h1,12383:17667082,19020374:0,411205,112570 +) +k1,12384:31966991,19020374:13969607 +g1,12384:31966991,19020374 +) +] +) +] +r1,12384:32583029,19733044:26214,4072844,0 +) +] +) +) +g1,12384:32583029,19143220 +) +h1,12384:6630773,19759258:0,0,0 +v1,12387:6630773,21125034:0,393216,0 +(1,12388:6630773,24234053:25952256,3502235,616038 +g1,12388:6630773,24234053 +(1,12388:6630773,24234053:25952256,3502235,616038 +(1,12388:6630773,24850091:25952256,4118273,0 +[1,12388:6630773,24850091:25952256,4118273,0 +(1,12388:6630773,24823877:25952256,4065845,0 +r1,12388:6656987,24823877:26214,4065845,0 +[1,12388:6656987,24823877:25899828,4065845,0 +(1,12388:6656987,24234053:25899828,2886197,0 +[1,12388:7246811,24234053:24720180,2886197,0 +(1,12388:7246811,22435230:24720180,1087374,134348 +k1,12387:8589995,22435230:133481 +k1,12387:9872322,22435230:133481 +k1,12387:13093859,22435230:133481 +k1,12387:13913503,22435230:133482 +k1,12387:17449613,22435230:133481 +k1,12387:18530745,22435230:133481 +k1,12387:21728690,22435230:133481 +k1,12387:22545056,22435230:133481 +k1,12387:24075109,22435230:133481 +k1,12387:26719931,22435230:133482 +(1,12387:26719931,22435230:0,414482,115847 +r1,12388:29891891,22435230:3171960,530329,115847 +k1,12387:26719931,22435230:-3171960 +) +(1,12387:26719931,22435230:3171960,414482,115847 +k1,12387:26719931,22435230:3277 +h1,12387:29888614,22435230:0,411205,112570 +) +k1,12387:30025372,22435230:133481 +k1,12387:30810281,22435230:133481 +k1,12387:31966991,22435230:0 +) +(1,12388:7246811,23276718:24720180,513147,126483 +k1,12387:8177418,23276718:247722 +k1,12387:10075336,23276718:247721 +k1,12387:10982350,23276718:247722 +k1,12387:12249157,23276718:247722 +k1,12387:15561342,23276718:247721 +k1,12387:17322290,23276718:247722 +k1,12387:18331540,23276718:247722 +(1,12387:18331540,23276718:0,452978,122846 +r1,12388:21855212,23276718:3523672,575824,122846 +k1,12387:18331540,23276718:-3523672 +) +(1,12387:18331540,23276718:3523672,452978,122846 +k1,12387:18331540,23276718:3277 +h1,12387:21851935,23276718:0,411205,112570 +) +k1,12387:22276603,23276718:247721 +k1,12387:24017891,23276718:247722 +k1,12387:24951775,23276718:247722 +(1,12387:24951775,23276718:0,452978,115847 +r1,12388:26716888,23276718:1765113,568825,115847 +k1,12387:24951775,23276718:-1765113 +) +(1,12387:24951775,23276718:1765113,452978,115847 +k1,12387:24951775,23276718:3277 +h1,12387:26713611,23276718:0,411205,112570 +) +k1,12387:27138279,23276718:247721 +(1,12387:27138279,23276718:0,459977,115847 +r1,12388:28551680,23276718:1413401,575824,115847 +k1,12387:27138279,23276718:-1413401 +) +(1,12387:27138279,23276718:1413401,459977,115847 +k1,12387:27138279,23276718:3277 +h1,12387:28548403,23276718:0,411205,112570 +) +k1,12387:28973072,23276718:247722 +(1,12387:28973072,23276718:0,452978,115847 +r1,12388:31793321,23276718:2820249,568825,115847 +k1,12387:28973072,23276718:-2820249 +) +(1,12387:28973072,23276718:2820249,452978,115847 +k1,12387:28973072,23276718:3277 +h1,12387:31790044,23276718:0,411205,112570 +) +k1,12388:31966991,23276718:0 +) +(1,12388:7246811,24118206:24720180,505283,115847 +(1,12387:7246811,24118206:0,452978,115847 +r1,12388:8660212,24118206:1413401,568825,115847 +k1,12387:7246811,24118206:-1413401 +) +(1,12387:7246811,24118206:1413401,452978,115847 +k1,12387:7246811,24118206:3277 +h1,12387:8656935,24118206:0,411205,112570 +) +g1,12387:9033111,24118206 +(1,12387:9033111,24118206:0,452978,115847 +r1,12388:10798224,24118206:1765113,568825,115847 +k1,12387:9033111,24118206:-1765113 +) +(1,12387:9033111,24118206:1765113,452978,115847 +k1,12387:9033111,24118206:3277 +h1,12387:10794947,24118206:0,411205,112570 +) +g1,12387:10997453,24118206 +g1,12387:12388127,24118206 +(1,12387:12388127,24118206:0,452978,115847 +r1,12388:14153240,24118206:1765113,568825,115847 +k1,12387:12388127,24118206:-1765113 +) +(1,12387:12388127,24118206:1765113,452978,115847 +k1,12387:12388127,24118206:3277 +h1,12387:14149963,24118206:0,411205,112570 +) +k1,12388:31966990,24118206:17640080 +g1,12388:31966990,24118206 +) +] +) +] +r1,12388:32583029,24823877:26214,4065845,0 +) +] +) +) +g1,12388:32583029,24234053 +) +h1,12388:6630773,24850091:0,0,0 +(1,12393:6630773,27465639:25952256,555811,12975 +(1,12393:6630773,27465639:2450326,527696,12975 +g1,12393:6630773,27465639 +g1,12393:9081099,27465639 +) +k1,12393:32583030,27465639:21735736 +g1,12393:32583030,27465639 +) +(1,12397:6630773,28700343:25952256,505283,134348 +k1,12396:7807234,28700343:222912 +k1,12396:9134427,28700343:222911 +k1,12396:10943310,28700343:222912 +k1,12396:13307282,28700343:222911 +k1,12396:14213079,28700343:222912 +k1,12396:18071272,28700343:222911 +k1,12396:19635051,28700343:222912 +k1,12396:21251913,28700343:222911 +(1,12396:21251913,28700343:0,452978,122846 +r1,12396:25127297,28700343:3875384,575824,122846 +k1,12396:21251913,28700343:-3875384 +) +(1,12396:21251913,28700343:3875384,452978,122846 +k1,12396:21251913,28700343:3277 +h1,12396:25124020,28700343:0,411205,112570 +) +k1,12396:25350209,28700343:222912 +k1,12396:28836158,28700343:222911 +k1,12396:30069635,28700343:222912 +k1,12396:31900144,28700343:222911 +k1,12396:32583029,28700343:0 +) +(1,12397:6630773,29541831:25952256,505283,126483 +g1,12396:8954679,29541831 +g1,12396:10528853,29541831 +k1,12397:32583029,29541831:20153632 +g1,12397:32583029,29541831 +) +(1,12399:6630773,30383319:25952256,513147,134348 +h1,12398:6630773,30383319:983040,0,0 +k1,12398:8813832,30383319:246470 +k1,12398:10458185,30383319:246470 +k1,12398:13436851,30383319:246470 +k1,12398:14878698,30383319:246470 +k1,12398:17619468,30383319:246470 +k1,12398:19782211,30383319:246470 +k1,12398:21596301,30383319:246469 +k1,12398:22861856,30383319:246470 +$1,12398:22861856,30383319 +$1,12398:23306845,30383319 +k1,12398:23553315,30383319:246470 +k1,12398:27581212,30383319:246470 +k1,12398:29221633,30383319:246470 +k1,12398:31923737,30383319:246470 +k1,12398:32583029,30383319:0 +) +(1,12399:6630773,31224807:25952256,513147,102892 +g1,12398:9513046,31224807 +$1,12398:9513046,31224807 +(1,12398:9919371,31323121:311689,334430,0 +) +g1,12398:10413120,31224807 +g1,12398:11163377,31224807 +g1,12398:11860471,31224807 +(1,12398:12266796,31323121:311689,339935,0 +) +g1,12398:12760545,31224807 +g1,12398:13510802,31224807 +$1,12398:14307720,31224807 +k1,12399:32583030,31224807:18101640 +g1,12399:32583030,31224807 +) +v1,12401:6630773,32415273:0,393216,0 +(1,12408:6630773,34722612:25952256,2700555,196608 +g1,12408:6630773,34722612 +g1,12408:6630773,34722612 +g1,12408:6434165,34722612 +(1,12408:6434165,34722612:0,2700555,196608 +r1,12408:32779637,34722612:26345472,2897163,196608 +k1,12408:6434165,34722612:-26345472 +) +(1,12408:6434165,34722612:26345472,2700555,196608 +[1,12408:6630773,34722612:25952256,2503947,0 +(1,12403:6630773,32622891:25952256,404226,76021 +(1,12402:6630773,32622891:0,0,0 +g1,12402:6630773,32622891 +g1,12402:6630773,32622891 +g1,12402:6303093,32622891 +(1,12402:6303093,32622891:0,0,0 +) +g1,12402:6630773,32622891 +) +k1,12403:6630773,32622891:0 +h1,12403:11056813,32622891:0,0,0 +k1,12403:32583029,32622891:21526216 +g1,12403:32583029,32622891 +) +(1,12404:6630773,33289069:25952256,410518,82312 +h1,12404:6630773,33289069:0,0,0 +g1,12404:10108376,33289069 +g1,12404:11056814,33289069 +g1,12404:15166709,33289069 +g1,12404:15799001,33289069 +g1,12404:18328167,33289069 +g1,12404:19592750,33289069 +g1,12404:20225042,33289069 +g1,12404:21173480,33289069 +g1,12404:22438063,33289069 +g1,12404:23070355,33289069 +k1,12404:23070355,33289069:0 +h1,12404:24334938,33289069:0,0,0 +k1,12404:32583029,33289069:8248091 +g1,12404:32583029,33289069 +) +(1,12405:6630773,33955247:25952256,404226,101187 +h1,12405:6630773,33955247:0,0,0 +g1,12405:6946919,33955247 +g1,12405:7263065,33955247 +g1,12405:7579211,33955247 +g1,12405:7895357,33955247 +g1,12405:8211503,33955247 +g1,12405:8527649,33955247 +g1,12405:8843795,33955247 +g1,12405:9159941,33955247 +g1,12405:9476087,33955247 +g1,12405:9792233,33955247 +g1,12405:10108379,33955247 +g1,12405:10424525,33955247 +g1,12405:10740671,33955247 +g1,12405:11056817,33955247 +g1,12405:11372963,33955247 +g1,12405:11689109,33955247 +g1,12405:12005255,33955247 +g1,12405:12321401,33955247 +g1,12405:12637547,33955247 +g1,12405:12953693,33955247 +g1,12405:13269839,33955247 +g1,12405:13585985,33955247 +g1,12405:13902131,33955247 +g1,12405:14218277,33955247 +g1,12405:14534423,33955247 +g1,12405:15166715,33955247 +g1,12405:15799007,33955247 +g1,12405:21805776,33955247 +k1,12405:21805776,33955247:0 +h1,12405:23070359,33955247:0,0,0 +k1,12405:32583029,33955247:9512670 +g1,12405:32583029,33955247 +) +(1,12406:6630773,34621425:25952256,404226,101187 +h1,12406:6630773,34621425:0,0,0 +g1,12406:6946919,34621425 +g1,12406:7263065,34621425 +g1,12406:7579211,34621425 +g1,12406:7895357,34621425 +g1,12406:8211503,34621425 +g1,12406:8527649,34621425 +g1,12406:8843795,34621425 +g1,12406:9159941,34621425 +g1,12406:9476087,34621425 +g1,12406:9792233,34621425 +g1,12406:10108379,34621425 +g1,12406:10424525,34621425 +g1,12406:10740671,34621425 +g1,12406:11056817,34621425 +g1,12406:11372963,34621425 +g1,12406:11689109,34621425 +g1,12406:12005255,34621425 +g1,12406:12321401,34621425 +g1,12406:12637547,34621425 +g1,12406:12953693,34621425 +g1,12406:13269839,34621425 +g1,12406:13585985,34621425 +g1,12406:13902131,34621425 +g1,12406:14218277,34621425 +g1,12406:14534423,34621425 +g1,12406:15166715,34621425 +g1,12406:15799007,34621425 +g1,12406:21489630,34621425 +g1,12406:24018796,34621425 +h1,12406:25915670,34621425:0,0,0 +k1,12406:32583029,34621425:6667359 +g1,12406:32583029,34621425 +) +] +) +g1,12408:32583029,34722612 +g1,12408:6630773,34722612 +g1,12408:6630773,34722612 +g1,12408:32583029,34722612 +g1,12408:32583029,34722612 +) +h1,12408:6630773,34919220:0,0,0 +(1,12412:6630773,36284996:25952256,513147,138281 +h1,12411:6630773,36284996:983040,0,0 +(1,12411:7613813,36284996:0,452978,122846 +r1,12411:11489197,36284996:3875384,575824,122846 +k1,12411:7613813,36284996:-3875384 +) +(1,12411:7613813,36284996:3875384,452978,122846 +k1,12411:7613813,36284996:3277 +h1,12411:11485920,36284996:0,411205,112570 +) +k1,12411:11625854,36284996:136657 +k1,12411:14384606,36284996:136657 +k1,12411:17695827,36284996:136657 +$1,12411:17695827,36284996 +$1,12411:18198488,36284996 +k1,12411:18335145,36284996:136657 +k1,12411:19663247,36284996:136657 +$1,12411:19663247,36284996 +$1,12411:20215060,36284996 +k1,12411:20525387,36284996:136657 +k1,12411:22055995,36284996:136657 +k1,12411:23002022,36284996:136657 +k1,12411:25908230,36284996:136657 +k1,12411:27236332,36284996:136657 +(1,12411:27236332,36284996:0,452978,115847 +r1,12411:29001445,36284996:1765113,568825,115847 +k1,12411:27236332,36284996:-1765113 +) +(1,12411:27236332,36284996:1765113,452978,115847 +k1,12411:27236332,36284996:3277 +h1,12411:28998168,36284996:0,411205,112570 +) +k1,12411:29138102,36284996:136657 +k1,12411:30466204,36284996:136657 +(1,12411:30466204,36284996:0,452978,122846 +r1,12411:32583029,36284996:2116825,575824,122846 +k1,12411:30466204,36284996:-2116825 +) +(1,12411:30466204,36284996:2116825,452978,122846 +k1,12411:30466204,36284996:3277 +h1,12411:32579752,36284996:0,411205,112570 +) +k1,12411:32583029,36284996:0 +) +(1,12412:6630773,37126484:25952256,513147,134348 +g1,12411:8223953,37126484 +g1,12411:11019063,37126484 +g1,12411:12502798,37126484 +g1,12411:14417760,37126484 +g1,12411:15383105,37126484 +g1,12411:16923201,37126484 +g1,12411:17781722,37126484 +g1,12411:19708480,37126484 +g1,12411:21176486,37126484 +g1,12411:23206791,37126484 +g1,12411:24425105,37126484 +g1,12411:27148781,37126484 +k1,12412:32583029,37126484:3913157 +g1,12412:32583029,37126484 +) +v1,12414:6630773,38316950:0,393216,0 +(1,12419:6630773,39304516:25952256,1380782,196608 +g1,12419:6630773,39304516 +g1,12419:6630773,39304516 +g1,12419:6434165,39304516 +(1,12419:6434165,39304516:0,1380782,196608 +r1,12419:32779637,39304516:26345472,1577390,196608 +k1,12419:6434165,39304516:-26345472 +) +(1,12419:6434165,39304516:26345472,1380782,196608 +[1,12419:6630773,39304516:25952256,1184174,0 +(1,12416:6630773,38530860:25952256,410518,107478 +(1,12415:6630773,38530860:0,0,0 +g1,12415:6630773,38530860 +g1,12415:6630773,38530860 +g1,12415:6303093,38530860 +(1,12415:6303093,38530860:0,0,0 +) +g1,12415:6630773,38530860 +) +k1,12416:6630773,38530860:0 +g1,12416:12637541,38530860 +g1,12416:14850561,38530860 +g1,12416:15798999,38530860 +g1,12416:17379728,38530860 +g1,12416:18012020,38530860 +g1,12416:19276603,38530860 +h1,12416:19592749,38530860:0,0,0 +k1,12416:32583029,38530860:12990280 +g1,12416:32583029,38530860 +) +(1,12417:6630773,39197038:25952256,404226,107478 +h1,12417:6630773,39197038:0,0,0 +g1,12417:6946919,39197038 +g1,12417:7263065,39197038 +k1,12417:7263065,39197038:0 +h1,12417:10740667,39197038:0,0,0 +k1,12417:32583029,39197038:21842362 +g1,12417:32583029,39197038 +) +] +) +g1,12419:32583029,39304516 +g1,12419:6630773,39304516 +g1,12419:6630773,39304516 +g1,12419:32583029,39304516 +g1,12419:32583029,39304516 +) +h1,12419:6630773,39501124:0,0,0 +] +(1,12429:32583029,45706769:0,0,0 +g1,12429:32583029,45706769 +) +) +] +(1,12429:6630773,47279633:25952256,0,0 +h1,12429:6630773,47279633:25952256,0,0 +) +] +h1,12429:4262630,4025873:0,0,0 +] +!19189 +}236 +Input:1631:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1632:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1633:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1634:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1635:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1636:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1637:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1638:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1639:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1640:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1641:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1642:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1643:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1644:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1645:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1646:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1647:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1576 +{237 +[1,12473:4262630,47279633:28320399,43253760,0 +(1,12473:4262630,4025873:0,0,0 +[1,12473:-473657,4025873:25952256,0,0 +(1,12473:-473657,-710414:25952256,0,0 +h1,12473:-473657,-710414:0,0,0 +(1,12473:-473657,-710414:0,0,0 +(1,12473:-473657,-710414:0,0,0 +g1,12473:-473657,-710414 +(1,12473:-473657,-710414:65781,0,65781 +g1,12473:-407876,-710414 +[1,12473:-407876,-644633:0,0,0 ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12435:37855564,2439708:1179648,16384,0 +k1,12473:-473657,-710414:-65781 ) ) -k1,12435:3078556,2439708:-34777008 +k1,12473:25478599,-710414:25952256 +g1,12473:25478599,-710414 ) ] -[1,12435:3078558,4812305:0,0,0 -(1,12435:3078558,49800853:0,16384,2228224 -k1,12435:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12435:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12435:3078558,51504789:16384,1179648,0 +[1,12473:6630773,47279633:25952256,43253760,0 +[1,12473:6630773,4812305:25952256,786432,0 +(1,12473:6630773,4812305:25952256,513147,134348 +(1,12473:6630773,4812305:25952256,513147,134348 +g1,12473:3078558,4812305 +[1,12473:3078558,4812305:0,0,0 +(1,12473:3078558,2439708:0,1703936,0 +k1,12473:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12473:2537886,2439708:1179648,16384,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12473:3078558,1915420:16384,1179648,0 +) +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12435:3078558,4812305:0,0,0 -(1,12435:3078558,49800853:0,16384,2228224 -g1,12435:29030814,49800853 -g1,12435:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12435:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12435:37855564,49800853:1179648,16384,0 -) -) -k1,12435:3078556,49800853:-34777008 -) -] -g1,12435:6630773,4812305 -g1,12435:6630773,4812305 -g1,12435:10347975,4812305 -k1,12435:31387651,4812305:21039676 -) -) -] -[1,12435:6630773,45706769:25952256,40108032,0 -(1,12435:6630773,45706769:25952256,40108032,0 -(1,12435:6630773,45706769:0,0,0 -g1,12435:6630773,45706769 -) -[1,12435:6630773,45706769:25952256,40108032,0 -v1,12382:6630773,6254097:0,393216,0 -(1,12389:6630773,8561436:25952256,2700555,196608 -g1,12389:6630773,8561436 -g1,12389:6630773,8561436 -g1,12389:6434165,8561436 -(1,12389:6434165,8561436:0,2700555,196608 -r1,12389:32779637,8561436:26345472,2897163,196608 -k1,12389:6434165,8561436:-26345472 -) -(1,12389:6434165,8561436:26345472,2700555,196608 -[1,12389:6630773,8561436:25952256,2503947,0 -(1,12384:6630773,6461715:25952256,404226,76021 -(1,12383:6630773,6461715:0,0,0 -g1,12383:6630773,6461715 -g1,12383:6630773,6461715 -g1,12383:6303093,6461715 -(1,12383:6303093,6461715:0,0,0 -) -g1,12383:6630773,6461715 -) -k1,12384:6630773,6461715:0 -h1,12384:11056813,6461715:0,0,0 -k1,12384:32583029,6461715:21526216 -g1,12384:32583029,6461715 -) -(1,12385:6630773,7127893:25952256,410518,82312 -h1,12385:6630773,7127893:0,0,0 -g1,12385:10108376,7127893 -g1,12385:11056814,7127893 -g1,12385:15166709,7127893 -g1,12385:15799001,7127893 -g1,12385:18328167,7127893 -g1,12385:19592750,7127893 -g1,12385:20225042,7127893 -g1,12385:21173480,7127893 -g1,12385:22438063,7127893 -g1,12385:23070355,7127893 -k1,12385:23070355,7127893:0 -h1,12385:24334938,7127893:0,0,0 -k1,12385:32583029,7127893:8248091 -g1,12385:32583029,7127893 -) -(1,12386:6630773,7794071:25952256,404226,101187 -h1,12386:6630773,7794071:0,0,0 -g1,12386:6946919,7794071 -g1,12386:7263065,7794071 -g1,12386:7579211,7794071 -g1,12386:7895357,7794071 -g1,12386:8211503,7794071 -g1,12386:8527649,7794071 -g1,12386:8843795,7794071 -g1,12386:9159941,7794071 -g1,12386:9476087,7794071 -g1,12386:9792233,7794071 -g1,12386:10108379,7794071 -g1,12386:10424525,7794071 -g1,12386:10740671,7794071 -g1,12386:11056817,7794071 -g1,12386:11372963,7794071 -g1,12386:11689109,7794071 -g1,12386:12005255,7794071 -g1,12386:12321401,7794071 -g1,12386:12637547,7794071 -g1,12386:12953693,7794071 -g1,12386:13269839,7794071 -g1,12386:13585985,7794071 -g1,12386:13902131,7794071 -g1,12386:14218277,7794071 -g1,12386:14534423,7794071 -g1,12386:15166715,7794071 -g1,12386:15799007,7794071 -g1,12386:21805776,7794071 -k1,12386:21805776,7794071:0 -h1,12386:23070359,7794071:0,0,0 -k1,12386:32583029,7794071:9512670 -g1,12386:32583029,7794071 -) -(1,12387:6630773,8460249:25952256,404226,101187 -h1,12387:6630773,8460249:0,0,0 -g1,12387:6946919,8460249 -g1,12387:7263065,8460249 -g1,12387:7579211,8460249 -g1,12387:7895357,8460249 -g1,12387:8211503,8460249 -g1,12387:8527649,8460249 -g1,12387:8843795,8460249 -g1,12387:9159941,8460249 -g1,12387:9476087,8460249 -g1,12387:9792233,8460249 -g1,12387:10108379,8460249 -g1,12387:10424525,8460249 -g1,12387:10740671,8460249 -g1,12387:11056817,8460249 -g1,12387:11372963,8460249 -g1,12387:11689109,8460249 -g1,12387:12005255,8460249 -g1,12387:12321401,8460249 -g1,12387:12637547,8460249 -g1,12387:12953693,8460249 -g1,12387:13269839,8460249 -g1,12387:13585985,8460249 -g1,12387:13902131,8460249 -g1,12387:14218277,8460249 -g1,12387:14534423,8460249 -g1,12387:15166715,8460249 -g1,12387:15799007,8460249 -g1,12387:21489630,8460249 -g1,12387:24018796,8460249 -h1,12387:25915670,8460249:0,0,0 -k1,12387:32583029,8460249:6667359 -g1,12387:32583029,8460249 -) -] -) -g1,12389:32583029,8561436 -g1,12389:6630773,8561436 -g1,12389:6630773,8561436 -g1,12389:32583029,8561436 -g1,12389:32583029,8561436 -) -h1,12389:6630773,8758044:0,0,0 -(1,12393:6630773,9932784:25952256,513147,138281 -h1,12392:6630773,9932784:983040,0,0 -(1,12392:7613813,9932784:0,452978,122846 -r1,12392:11489197,9932784:3875384,575824,122846 -k1,12392:7613813,9932784:-3875384 -) -(1,12392:7613813,9932784:3875384,452978,122846 -k1,12392:7613813,9932784:3277 -h1,12392:11485920,9932784:0,411205,112570 -) -k1,12392:11625854,9932784:136657 -k1,12392:14384606,9932784:136657 -k1,12392:17695827,9932784:136657 -$1,12392:17695827,9932784 -$1,12392:18198488,9932784 -k1,12392:18335145,9932784:136657 -k1,12392:19663247,9932784:136657 -$1,12392:19663247,9932784 -$1,12392:20215060,9932784 -k1,12392:20525387,9932784:136657 -k1,12392:22055995,9932784:136657 -k1,12392:23002022,9932784:136657 -k1,12392:25908230,9932784:136657 -k1,12392:27236332,9932784:136657 -(1,12392:27236332,9932784:0,452978,115847 -r1,12392:29001445,9932784:1765113,568825,115847 -k1,12392:27236332,9932784:-1765113 -) -(1,12392:27236332,9932784:1765113,452978,115847 -k1,12392:27236332,9932784:3277 -h1,12392:28998168,9932784:0,411205,112570 -) -k1,12392:29138102,9932784:136657 -k1,12392:30466204,9932784:136657 -(1,12392:30466204,9932784:0,452978,122846 -r1,12392:32583029,9932784:2116825,575824,122846 -k1,12392:30466204,9932784:-2116825 -) -(1,12392:30466204,9932784:2116825,452978,122846 -k1,12392:30466204,9932784:3277 -h1,12392:32579752,9932784:0,411205,112570 -) -k1,12392:32583029,9932784:0 -) -(1,12393:6630773,10774272:25952256,513147,134348 -g1,12392:8223953,10774272 -g1,12392:11019063,10774272 -g1,12392:12502798,10774272 -g1,12392:14417760,10774272 -g1,12392:15383105,10774272 -g1,12392:16923201,10774272 -g1,12392:17781722,10774272 -g1,12392:19708480,10774272 -g1,12392:21176486,10774272 -g1,12392:23206791,10774272 -g1,12392:24425105,10774272 -g1,12392:27148781,10774272 -k1,12393:32583029,10774272:3913157 -g1,12393:32583029,10774272 -) -v1,12395:6630773,11773701:0,393216,0 -(1,12400:6630773,12761267:25952256,1380782,196608 -g1,12400:6630773,12761267 -g1,12400:6630773,12761267 -g1,12400:6434165,12761267 -(1,12400:6434165,12761267:0,1380782,196608 -r1,12400:32779637,12761267:26345472,1577390,196608 -k1,12400:6434165,12761267:-26345472 -) -(1,12400:6434165,12761267:26345472,1380782,196608 -[1,12400:6630773,12761267:25952256,1184174,0 -(1,12397:6630773,11987611:25952256,410518,107478 -(1,12396:6630773,11987611:0,0,0 -g1,12396:6630773,11987611 -g1,12396:6630773,11987611 -g1,12396:6303093,11987611 -(1,12396:6303093,11987611:0,0,0 -) -g1,12396:6630773,11987611 -) -k1,12397:6630773,11987611:0 -g1,12397:12637541,11987611 -g1,12397:14850561,11987611 -g1,12397:15798999,11987611 -g1,12397:17379728,11987611 -g1,12397:18012020,11987611 -g1,12397:19276603,11987611 -h1,12397:19592749,11987611:0,0,0 -k1,12397:32583029,11987611:12990280 -g1,12397:32583029,11987611 -) -(1,12398:6630773,12653789:25952256,404226,107478 -h1,12398:6630773,12653789:0,0,0 -g1,12398:6946919,12653789 -g1,12398:7263065,12653789 -k1,12398:7263065,12653789:0 -h1,12398:10740667,12653789:0,0,0 -k1,12398:32583029,12653789:21842362 -g1,12398:32583029,12653789 -) -] -) -g1,12400:32583029,12761267 -g1,12400:6630773,12761267 -g1,12400:6630773,12761267 -g1,12400:32583029,12761267 -g1,12400:32583029,12761267 -) -h1,12400:6630773,12957875:0,0,0 -(1,12403:6630773,22419352:25952256,9062689,0 -k1,12403:10523651,22419352:3892878 -h1,12402:10523651,22419352:0,0,0 -(1,12402:10523651,22419352:18166500,9062689,0 -(1,12402:10523651,22419352:18167381,9062712,0 -(1,12402:10523651,22419352:18167381,9062712,0 -(1,12402:10523651,22419352:0,9062712,0 -(1,12402:10523651,22419352:0,14155776,0 -(1,12402:10523651,22419352:28377088,14155776,0 -) -k1,12402:10523651,22419352:-28377088 -) -) -g1,12402:28691032,22419352 -) -) -) -g1,12403:28690151,22419352 -k1,12403:32583029,22419352:3892878 -) -(1,12411:6630773,23260840:25952256,505283,122846 -h1,12410:6630773,23260840:983040,0,0 -k1,12410:8714978,23260840:147616 -k1,12410:9966875,23260840:147615 -k1,12410:11049034,23260840:147616 -(1,12410:11049034,23260840:0,452978,122846 -r1,12410:16682978,23260840:5633944,575824,122846 -k1,12410:11049034,23260840:-5633944 -) -(1,12410:11049034,23260840:5633944,452978,122846 -g1,12410:13162582,23260840 -g1,12410:13866006,23260840 -h1,12410:16679701,23260840:0,411205,112570 -) -k1,12410:16830593,23260840:147615 -k1,12410:18169654,23260840:147616 -(1,12410:18169654,23260840:0,452978,115847 -r1,12410:20989903,23260840:2820249,568825,115847 -k1,12410:18169654,23260840:-2820249 -) -(1,12410:18169654,23260840:2820249,452978,115847 -g1,12410:19931490,23260840 -g1,12410:20634914,23260840 -h1,12410:20986626,23260840:0,411205,112570 -) -k1,12410:21137518,23260840:147615 -k1,12410:21936562,23260840:147616 -k1,12410:23799911,23260840:147616 -k1,12410:24966611,23260840:147615 -k1,12410:26124792,23260840:147616 -k1,12410:28742459,23260840:147615 -k1,12410:30540272,23260840:147616 -k1,12410:32583029,23260840:0 -) -(1,12411:6630773,24102328:25952256,505283,134348 -k1,12410:7491963,24102328:175028 -k1,12410:8283029,24102328:175028 -k1,12410:9477142,24102328:175028 -k1,12410:12313587,24102328:175028 -k1,12410:14530717,24102328:175028 -k1,12410:15388630,24102328:175028 -k1,12410:16656143,24102328:175028 -k1,12410:17187031,24102328:175028 -k1,12410:20983578,24102328:175028 -k1,12410:22948394,24102328:175028 -k1,12410:23774850,24102328:175028 -k1,12410:25847145,24102328:175028 -k1,12410:28918864,24102328:175028 -k1,12410:30112977,24102328:175028 -k1,12410:32583029,24102328:0 -) -(1,12411:6630773,24943816:25952256,513147,134348 -k1,12410:7441078,24943816:151013 -k1,12410:8611177,24943816:151014 -k1,12410:10276727,24943816:151013 -k1,12410:12061554,24943816:151014 -k1,12410:12863995,24943816:151013 -k1,12410:14107494,24943816:151014 -k1,12410:15390969,24943816:151013 -k1,12410:17913731,24943816:151014 -k1,12410:18874114,24943816:151013 -k1,12410:21615766,24943816:151014 -k1,12410:22785864,24943816:151013 -k1,12410:26129792,24943816:151014 -k1,12410:27621672,24943816:151013 -k1,12410:28970029,24943816:151014 -k1,12410:32583029,24943816:0 -) -(1,12411:6630773,25785304:25952256,513147,134348 -k1,12410:10843482,25785304:232052 -k1,12410:11703369,25785304:232052 -k1,12410:13632803,25785304:232052 -k1,12410:15011079,25785304:232051 -k1,12410:16941169,25785304:232052 -k1,12410:18707419,25785304:232052 -k1,12410:19598763,25785304:232052 -k1,12410:21171682,25785304:232052 -k1,12410:25037050,25785304:232052 -k1,12410:25920529,25785304:232051 -k1,12410:29345495,25785304:232052 -k1,12410:31391584,25785304:232052 -k1,12410:32583029,25785304:0 -) -(1,12411:6630773,26626792:25952256,513147,134348 -k1,12410:9505783,26626792:161819 -k1,12410:10319030,26626792:161819 -k1,12410:13006608,26626792:161820 -k1,12410:16816816,26626792:161819 -k1,12410:17997720,26626792:161819 -k1,12410:19252024,26626792:161819 -k1,12410:20073136,26626792:161820 -k1,12410:23856474,26626792:161819 -k1,12410:25028858,26626792:161819 -k1,12410:27660729,26626792:161819 -k1,12410:28354046,26626792:161820 -k1,12410:31955194,26626792:161819 -k1,12410:32583029,26626792:0 -) -(1,12411:6630773,27468280:25952256,513147,126483 -k1,12410:9645127,27468280:209413 -k1,12410:10470577,27468280:209412 -k1,12410:11699075,27468280:209413 -k1,12410:13275569,27468280:209413 -k1,12410:15183019,27468280:209412 -k1,12410:16411517,27468280:209413 -k1,12410:17961797,27468280:209413 -k1,12410:19162770,27468280:209413 -k1,12410:20142885,27468280:209412 -k1,12410:25042054,27468280:209413 -k1,12410:25902895,27468280:209413 -k1,12410:26468167,27468280:209412 -k1,12410:30247981,27468280:209413 -k1,12410:32583029,27468280:0 -) -(1,12411:6630773,28309768:25952256,505283,134348 -k1,12410:8423417,28309768:299078 -k1,12410:9408657,28309768:299078 -k1,12410:14381107,28309768:299078 -k1,12410:15489556,28309768:299079 -k1,12410:16144494,28309768:299078 -k1,12410:18717671,28309768:299078 -k1,12410:21142737,28309768:299078 -k1,12410:22899991,28309768:299078 -k1,12410:23657166,28309768:299078 -k1,12410:24487742,28309768:299079 -k1,12410:26121788,28309768:299078 -k1,12410:27072294,28309768:299078 -k1,12410:30254301,28309768:299078 -k1,12410:31572464,28309768:299078 -k1,12410:32583029,28309768:0 -) -(1,12411:6630773,29151256:25952256,505283,7863 -k1,12411:32583029,29151256:23308534 -g1,12411:32583029,29151256 -) -v1,12413:6630773,30150686:0,393216,0 -(1,12418:6630773,31138252:25952256,1380782,196608 -g1,12418:6630773,31138252 -g1,12418:6630773,31138252 -g1,12418:6434165,31138252 -(1,12418:6434165,31138252:0,1380782,196608 -r1,12418:32779637,31138252:26345472,1577390,196608 -k1,12418:6434165,31138252:-26345472 -) -(1,12418:6434165,31138252:26345472,1380782,196608 -[1,12418:6630773,31138252:25952256,1184174,0 -(1,12415:6630773,30364596:25952256,410518,107478 -(1,12414:6630773,30364596:0,0,0 -g1,12414:6630773,30364596 -g1,12414:6630773,30364596 -g1,12414:6303093,30364596 -(1,12414:6303093,30364596:0,0,0 -) -g1,12414:6630773,30364596 -) -k1,12415:6630773,30364596:0 -g1,12415:12637541,30364596 -g1,12415:14850561,30364596 -g1,12415:15798999,30364596 -g1,12415:17379728,30364596 -g1,12415:18012020,30364596 -g1,12415:19276603,30364596 -h1,12415:19592749,30364596:0,0,0 -k1,12415:32583029,30364596:12990280 -g1,12415:32583029,30364596 -) -(1,12416:6630773,31030774:25952256,404226,107478 -h1,12416:6630773,31030774:0,0,0 -g1,12416:6946919,31030774 -g1,12416:7263065,31030774 -g1,12416:12321396,31030774 -g1,12416:12953688,31030774 -g1,12416:16115145,31030774 -g1,12416:17695874,31030774 -g1,12416:18328166,31030774 -h1,12416:19908895,31030774:0,0,0 -k1,12416:32583029,31030774:12674134 -g1,12416:32583029,31030774 -) -] -) -g1,12418:32583029,31138252 -g1,12418:6630773,31138252 -g1,12418:6630773,31138252 -g1,12418:32583029,31138252 -g1,12418:32583029,31138252 -) -h1,12418:6630773,31334860:0,0,0 -(1,12421:6630773,40796336:25952256,9062689,0 -k1,12421:10523651,40796336:3892878 -h1,12420:10523651,40796336:0,0,0 -(1,12420:10523651,40796336:18166500,9062689,0 -(1,12420:10523651,40796336:18167381,9062712,0 -(1,12420:10523651,40796336:18167381,9062712,0 -(1,12420:10523651,40796336:0,9062712,0 -(1,12420:10523651,40796336:0,14155776,0 -(1,12420:10523651,40796336:28377088,14155776,0 -) -k1,12420:10523651,40796336:-28377088 -) -) -g1,12420:28691032,40796336 -) -) -) -g1,12421:28690151,40796336 -k1,12421:32583029,40796336:3892878 -) -v1,12429:6630773,41971076:0,393216,0 -(1,12430:6630773,45090731:25952256,3512871,616038 -g1,12430:6630773,45090731 -(1,12430:6630773,45090731:25952256,3512871,616038 -(1,12430:6630773,45706769:25952256,4128909,0 -[1,12430:6630773,45706769:25952256,4128909,0 -(1,12430:6630773,45680555:25952256,4076481,0 -r1,12430:6656987,45680555:26214,4076481,0 -[1,12430:6656987,45680555:25899828,4076481,0 -(1,12430:6656987,45090731:25899828,2896833,0 -[1,12430:7246811,45090731:24720180,2896833,0 -(1,12430:7246811,43281272:24720180,1087374,134348 -k1,12429:8687206,43281272:230692 -k1,12429:10215512,43281272:230693 -k1,12429:11840155,43281272:230692 -k1,12429:13089932,43281272:230692 -k1,12429:16723254,43281272:230693 -k1,12429:19159233,43281272:230692 -k1,12429:20041353,43281272:230692 -k1,12429:23883079,43281272:230692 -(1,12429:23883079,43281272:0,452978,115847 -r1,12430:25648192,43281272:1765113,568825,115847 -k1,12429:23883079,43281272:-1765113 -) -(1,12429:23883079,43281272:1765113,452978,115847 -k1,12429:23883079,43281272:3277 -h1,12429:25644915,43281272:0,411205,112570 -) -k1,12429:25878885,43281272:230693 -k1,12429:27301022,43281272:230692 -(1,12429:27301022,43281272:0,452978,115847 -r1,12430:28714423,43281272:1413401,568825,115847 -k1,12429:27301022,43281272:-1413401 -) -(1,12429:27301022,43281272:1413401,452978,115847 -k1,12429:27301022,43281272:3277 -h1,12429:28711146,43281272:0,411205,112570 -) -k1,12429:28945115,43281272:230692 -k1,12429:29791846,43281272:230693 -k1,12429:31041623,43281272:230692 -k1,12430:31966991,43281272:0 -) -(1,12430:7246811,44122760:24720180,513147,134348 -k1,12429:9381795,44122760:185943 -k1,12429:11596734,44122760:185944 -k1,12429:15503811,44122760:185943 -k1,12429:17238371,44122760:185944 -k1,12429:20030025,44122760:185943 -k1,12429:20875261,44122760:185944 -k1,12429:22080289,44122760:185943 -k1,12429:23655596,44122760:185944 -k1,12429:24833099,44122760:185943 -k1,12429:26620743,44122760:185944 -k1,12429:28903183,44122760:185943 -k1,12429:31966991,44122760:0 +[1,12473:3078558,4812305:0,0,0 +(1,12473:3078558,2439708:0,1703936,0 +g1,12473:29030814,2439708 +g1,12473:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12473:36151628,1915420:16384,1179648,0 ) -(1,12430:7246811,44964248:24720180,513147,126483 -g1,12429:8062078,44964248 -g1,12429:9712929,44964248 -g1,12429:10571450,44964248 -g1,12429:11789764,44964248 -g1,12429:13596591,44964248 -g1,12429:14966293,44964248 -k1,12430:31966991,44964248:14897648 -g1,12430:31966991,44964248 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12473:37855564,2439708:1179648,16384,0 +) +) +k1,12473:3078556,2439708:-34777008 +) ] -r1,12430:32583029,45680555:26214,4076481,0 +[1,12473:3078558,4812305:0,0,0 +(1,12473:3078558,49800853:0,16384,2228224 +k1,12473:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12473:2537886,49800853:1179648,16384,0 +) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12473:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) -g1,12430:32583029,45090731 ) -h1,12430:6630773,45706769:0,0,0 ] -(1,12435:32583029,45706769:0,0,0 -g1,12435:32583029,45706769 +[1,12473:3078558,4812305:0,0,0 +(1,12473:3078558,49800853:0,16384,2228224 +g1,12473:29030814,49800853 +g1,12473:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12473:36151628,51504789:16384,1179648,0 ) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] -(1,12435:6630773,47279633:25952256,0,0 -h1,12435:6630773,47279633:25952256,0,0 +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12473:37855564,49800853:1179648,16384,0 +) +) +k1,12473:3078556,49800853:-34777008 ) ] -h1,12435:4262630,4025873:0,0,0 +g1,12473:6630773,4812305 +k1,12473:25712890,4812305:17886740 +g1,12473:29057847,4812305 +g1,12473:29873114,4812305 +) +) ] -!18996 -}236 -Input:1639:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1640:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1641:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1642:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1643:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1644:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1645:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1646:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1647:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1648:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1649:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1650:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1651:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1652:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1653:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1654:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1655:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1656:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1657:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1658:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1659:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1660:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1904 -{237 -[1,12491:4262630,47279633:28320399,43253760,0 -(1,12491:4262630,4025873:0,0,0 -[1,12491:-473657,4025873:25952256,0,0 -(1,12491:-473657,-710414:25952256,0,0 -h1,12491:-473657,-710414:0,0,0 -(1,12491:-473657,-710414:0,0,0 -(1,12491:-473657,-710414:0,0,0 -g1,12491:-473657,-710414 -(1,12491:-473657,-710414:65781,0,65781 -g1,12491:-407876,-710414 -[1,12491:-407876,-644633:0,0,0 +[1,12473:6630773,45706769:25952256,40108032,0 +(1,12473:6630773,45706769:25952256,40108032,0 +(1,12473:6630773,45706769:0,0,0 +g1,12473:6630773,45706769 +) +[1,12473:6630773,45706769:25952256,40108032,0 +(1,12422:6630773,14661426:25952256,9062689,0 +k1,12422:10523651,14661426:3892878 +h1,12421:10523651,14661426:0,0,0 +(1,12421:10523651,14661426:18166500,9062689,0 +(1,12421:10523651,14661426:18167381,9062712,0 +(1,12421:10523651,14661426:18167381,9062712,0 +(1,12421:10523651,14661426:0,9062712,0 +(1,12421:10523651,14661426:0,14155776,0 +(1,12421:10523651,14661426:28377088,14155776,0 +) +k1,12421:10523651,14661426:-28377088 +) +) +g1,12421:28691032,14661426 +) +) +) +g1,12422:28690151,14661426 +k1,12422:32583029,14661426:3892878 +) +(1,12430:6630773,15502914:25952256,505283,122846 +h1,12429:6630773,15502914:983040,0,0 +k1,12429:8714978,15502914:147616 +k1,12429:9966875,15502914:147615 +k1,12429:11049034,15502914:147616 +(1,12429:11049034,15502914:0,452978,122846 +r1,12429:16682978,15502914:5633944,575824,122846 +k1,12429:11049034,15502914:-5633944 +) +(1,12429:11049034,15502914:5633944,452978,122846 +g1,12429:13162582,15502914 +g1,12429:13866006,15502914 +h1,12429:16679701,15502914:0,411205,112570 +) +k1,12429:16830593,15502914:147615 +k1,12429:18169654,15502914:147616 +(1,12429:18169654,15502914:0,452978,115847 +r1,12429:20989903,15502914:2820249,568825,115847 +k1,12429:18169654,15502914:-2820249 +) +(1,12429:18169654,15502914:2820249,452978,115847 +g1,12429:19931490,15502914 +g1,12429:20634914,15502914 +h1,12429:20986626,15502914:0,411205,112570 +) +k1,12429:21137518,15502914:147615 +k1,12429:21936562,15502914:147616 +k1,12429:23799911,15502914:147616 +k1,12429:24966611,15502914:147615 +k1,12429:26124792,15502914:147616 +k1,12429:28742459,15502914:147615 +k1,12429:30540272,15502914:147616 +k1,12429:32583029,15502914:0 +) +(1,12430:6630773,16344402:25952256,505283,134348 +k1,12429:7491963,16344402:175028 +k1,12429:8283029,16344402:175028 +k1,12429:9477142,16344402:175028 +k1,12429:12313587,16344402:175028 +k1,12429:14530717,16344402:175028 +k1,12429:15388630,16344402:175028 +k1,12429:16656143,16344402:175028 +k1,12429:17187031,16344402:175028 +k1,12429:20983578,16344402:175028 +k1,12429:22948394,16344402:175028 +k1,12429:23774850,16344402:175028 +k1,12429:25847145,16344402:175028 +k1,12429:28918864,16344402:175028 +k1,12429:30112977,16344402:175028 +k1,12429:32583029,16344402:0 +) +(1,12430:6630773,17185890:25952256,513147,134348 +k1,12429:7441078,17185890:151013 +k1,12429:8611177,17185890:151014 +k1,12429:10276727,17185890:151013 +k1,12429:12061554,17185890:151014 +k1,12429:12863995,17185890:151013 +k1,12429:14107494,17185890:151014 +k1,12429:15390969,17185890:151013 +k1,12429:17913731,17185890:151014 +k1,12429:18874114,17185890:151013 +k1,12429:21615766,17185890:151014 +k1,12429:22785864,17185890:151013 +k1,12429:26129792,17185890:151014 +k1,12429:27621672,17185890:151013 +k1,12429:28970029,17185890:151014 +k1,12429:32583029,17185890:0 +) +(1,12430:6630773,18027378:25952256,513147,134348 +k1,12429:10843482,18027378:232052 +k1,12429:11703369,18027378:232052 +k1,12429:13632803,18027378:232052 +k1,12429:15011079,18027378:232051 +k1,12429:16941169,18027378:232052 +k1,12429:18707419,18027378:232052 +k1,12429:19598763,18027378:232052 +k1,12429:21171682,18027378:232052 +k1,12429:25037050,18027378:232052 +k1,12429:25920529,18027378:232051 +k1,12429:29345495,18027378:232052 +k1,12429:31391584,18027378:232052 +k1,12429:32583029,18027378:0 +) +(1,12430:6630773,18868866:25952256,513147,134348 +k1,12429:9505783,18868866:161819 +k1,12429:10319030,18868866:161819 +k1,12429:13006608,18868866:161820 +k1,12429:16816816,18868866:161819 +k1,12429:17997720,18868866:161819 +k1,12429:19252024,18868866:161819 +k1,12429:20073136,18868866:161820 +k1,12429:23856474,18868866:161819 +k1,12429:25028858,18868866:161819 +k1,12429:27660729,18868866:161819 +k1,12429:28354046,18868866:161820 +k1,12429:31955194,18868866:161819 +k1,12429:32583029,18868866:0 +) +(1,12430:6630773,19710354:25952256,513147,126483 +k1,12429:9645127,19710354:209413 +k1,12429:10470577,19710354:209412 +k1,12429:11699075,19710354:209413 +k1,12429:13275569,19710354:209413 +k1,12429:15183019,19710354:209412 +k1,12429:16411517,19710354:209413 +k1,12429:17961797,19710354:209413 +k1,12429:19162770,19710354:209413 +k1,12429:20142885,19710354:209412 +k1,12429:25042054,19710354:209413 +k1,12429:25902895,19710354:209413 +k1,12429:26468167,19710354:209412 +k1,12429:30247981,19710354:209413 +k1,12429:32583029,19710354:0 +) +(1,12430:6630773,20551842:25952256,505283,134348 +k1,12429:8423417,20551842:299078 +k1,12429:9408657,20551842:299078 +k1,12429:14381107,20551842:299078 +k1,12429:15489556,20551842:299079 +k1,12429:16144494,20551842:299078 +k1,12429:18717671,20551842:299078 +k1,12429:21142737,20551842:299078 +k1,12429:22899991,20551842:299078 +k1,12429:23657166,20551842:299078 +k1,12429:24487742,20551842:299079 +k1,12429:26121788,20551842:299078 +k1,12429:27072294,20551842:299078 +k1,12429:30254301,20551842:299078 +k1,12429:31572464,20551842:299078 +k1,12429:32583029,20551842:0 +) +(1,12430:6630773,21393330:25952256,505283,7863 +k1,12430:32583029,21393330:23308534 +g1,12430:32583029,21393330 +) +v1,12432:6630773,22538708:0,393216,0 +(1,12437:6630773,23526274:25952256,1380782,196608 +g1,12437:6630773,23526274 +g1,12437:6630773,23526274 +g1,12437:6434165,23526274 +(1,12437:6434165,23526274:0,1380782,196608 +r1,12437:32779637,23526274:26345472,1577390,196608 +k1,12437:6434165,23526274:-26345472 +) +(1,12437:6434165,23526274:26345472,1380782,196608 +[1,12437:6630773,23526274:25952256,1184174,0 +(1,12434:6630773,22752618:25952256,410518,107478 +(1,12433:6630773,22752618:0,0,0 +g1,12433:6630773,22752618 +g1,12433:6630773,22752618 +g1,12433:6303093,22752618 +(1,12433:6303093,22752618:0,0,0 +) +g1,12433:6630773,22752618 +) +k1,12434:6630773,22752618:0 +g1,12434:12637541,22752618 +g1,12434:14850561,22752618 +g1,12434:15798999,22752618 +g1,12434:17379728,22752618 +g1,12434:18012020,22752618 +g1,12434:19276603,22752618 +h1,12434:19592749,22752618:0,0,0 +k1,12434:32583029,22752618:12990280 +g1,12434:32583029,22752618 +) +(1,12435:6630773,23418796:25952256,404226,107478 +h1,12435:6630773,23418796:0,0,0 +g1,12435:6946919,23418796 +g1,12435:7263065,23418796 +g1,12435:12321396,23418796 +g1,12435:12953688,23418796 +g1,12435:16115145,23418796 +g1,12435:17695874,23418796 +g1,12435:18328166,23418796 +h1,12435:19908895,23418796:0,0,0 +k1,12435:32583029,23418796:12674134 +g1,12435:32583029,23418796 +) +] +) +g1,12437:32583029,23526274 +g1,12437:6630773,23526274 +g1,12437:6630773,23526274 +g1,12437:32583029,23526274 +g1,12437:32583029,23526274 +) +h1,12437:6630773,23722882:0,0,0 +(1,12440:6630773,33330307:25952256,9062689,0 +k1,12440:10523651,33330307:3892878 +h1,12439:10523651,33330307:0,0,0 +(1,12439:10523651,33330307:18166500,9062689,0 +(1,12439:10523651,33330307:18167381,9062712,0 +(1,12439:10523651,33330307:18167381,9062712,0 +(1,12439:10523651,33330307:0,9062712,0 +(1,12439:10523651,33330307:0,14155776,0 +(1,12439:10523651,33330307:28377088,14155776,0 +) +k1,12439:10523651,33330307:-28377088 +) +) +g1,12439:28691032,33330307 +) +) +) +g1,12440:28690151,33330307 +k1,12440:32583029,33330307:3892878 +) +v1,12448:6630773,34650994:0,393216,0 +(1,12449:6630773,37770649:25952256,3512871,616038 +g1,12449:6630773,37770649 +(1,12449:6630773,37770649:25952256,3512871,616038 +(1,12449:6630773,38386687:25952256,4128909,0 +[1,12449:6630773,38386687:25952256,4128909,0 +(1,12449:6630773,38360473:25952256,4076481,0 +r1,12449:6656987,38360473:26214,4076481,0 +[1,12449:6656987,38360473:25899828,4076481,0 +(1,12449:6656987,37770649:25899828,2896833,0 +[1,12449:7246811,37770649:24720180,2896833,0 +(1,12449:7246811,35961190:24720180,1087374,134348 +k1,12448:8687206,35961190:230692 +k1,12448:10215512,35961190:230693 +k1,12448:11840155,35961190:230692 +k1,12448:13089932,35961190:230692 +k1,12448:16723254,35961190:230693 +k1,12448:19159233,35961190:230692 +k1,12448:20041353,35961190:230692 +k1,12448:23883079,35961190:230692 +(1,12448:23883079,35961190:0,452978,115847 +r1,12449:25648192,35961190:1765113,568825,115847 +k1,12448:23883079,35961190:-1765113 +) +(1,12448:23883079,35961190:1765113,452978,115847 +k1,12448:23883079,35961190:3277 +h1,12448:25644915,35961190:0,411205,112570 +) +k1,12448:25878885,35961190:230693 +k1,12448:27301022,35961190:230692 +(1,12448:27301022,35961190:0,452978,115847 +r1,12449:28714423,35961190:1413401,568825,115847 +k1,12448:27301022,35961190:-1413401 +) +(1,12448:27301022,35961190:1413401,452978,115847 +k1,12448:27301022,35961190:3277 +h1,12448:28711146,35961190:0,411205,112570 +) +k1,12448:28945115,35961190:230692 +k1,12448:29791846,35961190:230693 +k1,12448:31041623,35961190:230692 +k1,12449:31966991,35961190:0 +) +(1,12449:7246811,36802678:24720180,513147,134348 +k1,12448:9381795,36802678:185943 +k1,12448:11596734,36802678:185944 +k1,12448:15503811,36802678:185943 +k1,12448:17238371,36802678:185944 +k1,12448:20030025,36802678:185943 +k1,12448:20875261,36802678:185944 +k1,12448:22080289,36802678:185943 +k1,12448:23655596,36802678:185944 +k1,12448:24833099,36802678:185943 +k1,12448:26620743,36802678:185944 +k1,12448:28903183,36802678:185943 +k1,12448:31966991,36802678:0 +) +(1,12449:7246811,37644166:24720180,513147,126483 +g1,12448:8062078,37644166 +g1,12448:9712929,37644166 +g1,12448:10571450,37644166 +g1,12448:11789764,37644166 +g1,12448:13596591,37644166 +g1,12448:14966293,37644166 +k1,12449:31966991,37644166:14897648 +g1,12449:31966991,37644166 +) +] +) +] +r1,12449:32583029,38360473:26214,4076481,0 +) +] +) +) +g1,12449:32583029,37770649 +) +h1,12449:6630773,38386687:0,0,0 +(1,12452:6630773,39707375:25952256,513147,126483 +h1,12451:6630773,39707375:983040,0,0 +k1,12451:9074812,39707375:197465 +k1,12451:12842678,39707375:197465 +k1,12451:13880970,39707375:197465 +k1,12451:15650644,39707375:197465 +k1,12451:16952391,39707375:197465 +k1,12451:17897622,39707375:197465 +k1,12451:19608312,39707375:197464 +k1,12451:20457205,39707375:197465 +k1,12451:22942532,39707375:197465 +k1,12451:24159082,39707375:197465 +k1,12451:28170742,39707375:197465 +k1,12451:29856530,39707375:197465 +k1,12451:30922347,39707375:197465 +k1,12451:32583029,39707375:0 +) +(1,12452:6630773,40548863:25952256,505283,134348 +g1,12451:7185862,40548863 +g1,12451:8395656,40548863 +g1,12451:9872182,40548863 +g1,12451:11806804,40548863 +g1,12451:12361893,40548863 +g1,12451:13940655,40548863 +g1,12451:16973005,40548863 +g1,12451:18566185,40548863 +g1,12451:21237432,40548863 +g1,12451:23447306,40548863 +g1,12451:24262573,40548863 +k1,12452:32583029,40548863:7090345 +g1,12452:32583029,40548863 +) +v1,12454:6630773,41694241:0,393216,0 +(1,12460:6630773,43347985:25952256,2046960,196608 +g1,12460:6630773,43347985 +g1,12460:6630773,43347985 +g1,12460:6434165,43347985 +(1,12460:6434165,43347985:0,2046960,196608 +r1,12460:32779637,43347985:26345472,2243568,196608 +k1,12460:6434165,43347985:-26345472 +) +(1,12460:6434165,43347985:26345472,2046960,196608 +[1,12460:6630773,43347985:25952256,1850352,0 +(1,12456:6630773,41908151:25952256,410518,107478 +(1,12455:6630773,41908151:0,0,0 +g1,12455:6630773,41908151 +g1,12455:6630773,41908151 +g1,12455:6303093,41908151 +(1,12455:6303093,41908151:0,0,0 +) +g1,12455:6630773,41908151 +) +k1,12456:6630773,41908151:0 +g1,12456:12637541,41908151 +g1,12456:14850561,41908151 +g1,12456:15798999,41908151 +g1,12456:17379728,41908151 +g1,12456:18012020,41908151 +g1,12456:18960457,41908151 +h1,12456:19276603,41908151:0,0,0 +k1,12456:32583029,41908151:13306426 +g1,12456:32583029,41908151 +) +(1,12457:6630773,42574329:25952256,404226,107478 +h1,12457:6630773,42574329:0,0,0 +g1,12457:6946919,42574329 +g1,12457:7263065,42574329 +g1,12457:12321396,42574329 +g1,12457:12953688,42574329 +g1,12457:15799000,42574329 +h1,12457:16115146,42574329:0,0,0 +k1,12457:32583029,42574329:16467883 +g1,12457:32583029,42574329 +) +(1,12458:6630773,43240507:25952256,410518,107478 +h1,12458:6630773,43240507:0,0,0 +g1,12458:6946919,43240507 +g1,12458:7263065,43240507 +g1,12458:14850562,43240507 +g1,12458:15482854,43240507 +g1,12458:18644311,43240507 +g1,12458:20225040,43240507 +g1,12458:20857332,43240507 +g1,12458:24018789,43240507 +g1,12458:26864100,43240507 +g1,12458:27496392,43240507 +h1,12458:29393266,43240507:0,0,0 +k1,12458:32583029,43240507:3189763 +g1,12458:32583029,43240507 +) +] +) +g1,12460:32583029,43347985 +g1,12460:6630773,43347985 +g1,12460:6630773,43347985 +g1,12460:32583029,43347985 +g1,12460:32583029,43347985 +) +h1,12460:6630773,43544593:0,0,0 +(1,12464:6630773,44865281:25952256,505283,134348 +h1,12463:6630773,44865281:983040,0,0 +k1,12463:8497518,44865281:255870 +k1,12463:11384659,44865281:255870 +k1,12463:12291956,44865281:255869 +(1,12463:12291956,44865281:0,452978,122846 +r1,12463:16167340,44865281:3875384,575824,122846 +k1,12463:12291956,44865281:-3875384 +) +(1,12463:12291956,44865281:3875384,452978,122846 +k1,12463:12291956,44865281:3277 +h1,12463:16164063,44865281:0,411205,112570 +) +k1,12463:16596880,44865281:255870 +(1,12463:16596880,44865281:0,452978,122846 +r1,12463:20472264,44865281:3875384,575824,122846 +k1,12463:16596880,44865281:-3875384 +) +(1,12463:16596880,44865281:3875384,452978,122846 +k1,12463:16596880,44865281:3277 +h1,12463:20468987,44865281:0,411205,112570 +) +k1,12463:20728134,44865281:255870 +k1,12463:22900277,44865281:255870 +k1,12463:26791429,44865281:255870 +k1,12463:28388165,44865281:255869 +k1,12463:30498704,44865281:255870 +k1,12463:31563944,44865281:255870 +k1,12463:32583029,44865281:0 +) +(1,12464:6630773,45706769:25952256,513147,126483 +g1,12463:9444233,45706769 +g1,12463:10302754,45706769 +g1,12463:11521068,45706769 +g1,12463:14291274,45706769 +g1,12463:17075898,45706769 +g1,12463:17926555,45706769 +g1,12463:21300348,45706769 +(1,12463:21300348,45706769:0,452978,115847 +r1,12463:22713749,45706769:1413401,568825,115847 +k1,12463:21300348,45706769:-1413401 +) +(1,12463:21300348,45706769:1413401,452978,115847 +k1,12463:21300348,45706769:3277 +h1,12463:22710472,45706769:0,411205,112570 +) +g1,12463:23086648,45706769 +(1,12463:23086648,45706769:0,414482,115847 +r1,12463:24500049,45706769:1413401,530329,115847 +k1,12463:23086648,45706769:-1413401 +) +(1,12463:23086648,45706769:1413401,414482,115847 +k1,12463:23086648,45706769:3277 +h1,12463:24496772,45706769:0,411205,112570 +) +g1,12463:24872948,45706769 +(1,12463:24872948,45706769:0,452978,115847 +r1,12463:26286349,45706769:1413401,568825,115847 +k1,12463:24872948,45706769:-1413401 +) +(1,12463:24872948,45706769:1413401,452978,115847 +k1,12463:24872948,45706769:3277 +h1,12463:26283072,45706769:0,411205,112570 +) +g1,12463:26485578,45706769 +g1,12463:27876252,45706769 +(1,12463:27876252,45706769:0,414482,115847 +r1,12463:29289653,45706769:1413401,530329,115847 +k1,12463:27876252,45706769:-1413401 +) +(1,12463:27876252,45706769:1413401,414482,115847 +k1,12463:27876252,45706769:3277 +h1,12463:29286376,45706769:0,411205,112570 +) +k1,12464:32583029,45706769:3119706 +g1,12464:32583029,45706769 +) +] +(1,12473:32583029,45706769:0,0,0 +g1,12473:32583029,45706769 +) +) +] +(1,12473:6630773,47279633:25952256,0,0 +h1,12473:6630773,47279633:25952256,0,0 +) +] +h1,12473:4262630,4025873:0,0,0 +] +!17891 +}237 +Input:1648:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1649:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1650:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1651:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1652:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1653:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1654:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1655:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1656:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 +{238 +[1,12520:4262630,47279633:28320399,43253760,0 +(1,12520:4262630,4025873:0,0,0 +[1,12520:-473657,4025873:25952256,0,0 +(1,12520:-473657,-710414:25952256,0,0 +h1,12520:-473657,-710414:0,0,0 +(1,12520:-473657,-710414:0,0,0 +(1,12520:-473657,-710414:0,0,0 +g1,12520:-473657,-710414 +(1,12520:-473657,-710414:65781,0,65781 +g1,12520:-407876,-710414 +[1,12520:-407876,-644633:0,0,0 ] ) -k1,12491:-473657,-710414:-65781 +k1,12520:-473657,-710414:-65781 ) ) -k1,12491:25478599,-710414:25952256 -g1,12491:25478599,-710414 +k1,12520:25478599,-710414:25952256 +g1,12520:25478599,-710414 ) ] ) -[1,12491:6630773,47279633:25952256,43253760,0 -[1,12491:6630773,4812305:25952256,786432,0 -(1,12491:6630773,4812305:25952256,513147,134348 -(1,12491:6630773,4812305:25952256,513147,134348 -g1,12491:3078558,4812305 -[1,12491:3078558,4812305:0,0,0 -(1,12491:3078558,2439708:0,1703936,0 -k1,12491:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12491:2537886,2439708:1179648,16384,0 +[1,12520:6630773,47279633:25952256,43253760,0 +[1,12520:6630773,4812305:25952256,786432,0 +(1,12520:6630773,4812305:25952256,485622,11795 +(1,12520:6630773,4812305:25952256,485622,11795 +g1,12520:3078558,4812305 +[1,12520:3078558,4812305:0,0,0 +(1,12520:3078558,2439708:0,1703936,0 +k1,12520:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12520:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12491:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12520:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12491:3078558,4812305:0,0,0 -(1,12491:3078558,2439708:0,1703936,0 -g1,12491:29030814,2439708 -g1,12491:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12491:36151628,1915420:16384,1179648,0 +[1,12520:3078558,4812305:0,0,0 +(1,12520:3078558,2439708:0,1703936,0 +g1,12520:29030814,2439708 +g1,12520:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12520:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12491:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12520:37855564,2439708:1179648,16384,0 ) ) -k1,12491:3078556,2439708:-34777008 +k1,12520:3078556,2439708:-34777008 ) ] -[1,12491:3078558,4812305:0,0,0 -(1,12491:3078558,49800853:0,16384,2228224 -k1,12491:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12491:2537886,49800853:1179648,16384,0 +[1,12520:3078558,4812305:0,0,0 +(1,12520:3078558,49800853:0,16384,2228224 +k1,12520:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12520:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12491:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12520:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12491:3078558,4812305:0,0,0 -(1,12491:3078558,49800853:0,16384,2228224 -g1,12491:29030814,49800853 -g1,12491:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12491:36151628,51504789:16384,1179648,0 +[1,12520:3078558,4812305:0,0,0 +(1,12520:3078558,49800853:0,16384,2228224 +g1,12520:29030814,49800853 +g1,12520:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12520:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12491:37855564,49800853:1179648,16384,0 -) -) -k1,12491:3078556,49800853:-34777008 -) -] -g1,12491:6630773,4812305 -k1,12491:25712890,4812305:17886740 -g1,12491:29057847,4812305 -g1,12491:29873114,4812305 -) -) -] -[1,12491:6630773,45706769:25952256,40108032,0 -(1,12491:6630773,45706769:25952256,40108032,0 -(1,12491:6630773,45706769:0,0,0 -g1,12491:6630773,45706769 -) -[1,12491:6630773,45706769:25952256,40108032,0 -(1,12433:6630773,6254097:25952256,513147,126483 -h1,12432:6630773,6254097:983040,0,0 -k1,12432:9074812,6254097:197465 -k1,12432:12842678,6254097:197465 -k1,12432:13880970,6254097:197465 -k1,12432:15650644,6254097:197465 -k1,12432:16952391,6254097:197465 -k1,12432:17897622,6254097:197465 -k1,12432:19608312,6254097:197464 -k1,12432:20457205,6254097:197465 -k1,12432:22942532,6254097:197465 -k1,12432:24159082,6254097:197465 -k1,12432:28170742,6254097:197465 -k1,12432:29856530,6254097:197465 -k1,12432:30922347,6254097:197465 -k1,12432:32583029,6254097:0 -) -(1,12433:6630773,7095585:25952256,505283,134348 -g1,12432:7185862,7095585 -g1,12432:8395656,7095585 -g1,12432:9872182,7095585 -g1,12432:11806804,7095585 -g1,12432:12361893,7095585 -g1,12432:13940655,7095585 -g1,12432:16973005,7095585 -g1,12432:18566185,7095585 -g1,12432:21237432,7095585 -g1,12432:23447306,7095585 -g1,12432:24262573,7095585 -k1,12433:32583029,7095585:7090345 -g1,12433:32583029,7095585 -) -v1,12435:6630773,8202963:0,393216,0 -(1,12441:6630773,9856707:25952256,2046960,196608 -g1,12441:6630773,9856707 -g1,12441:6630773,9856707 -g1,12441:6434165,9856707 -(1,12441:6434165,9856707:0,2046960,196608 -r1,12441:32779637,9856707:26345472,2243568,196608 -k1,12441:6434165,9856707:-26345472 -) -(1,12441:6434165,9856707:26345472,2046960,196608 -[1,12441:6630773,9856707:25952256,1850352,0 -(1,12437:6630773,8416873:25952256,410518,107478 -(1,12436:6630773,8416873:0,0,0 -g1,12436:6630773,8416873 -g1,12436:6630773,8416873 -g1,12436:6303093,8416873 -(1,12436:6303093,8416873:0,0,0 -) -g1,12436:6630773,8416873 -) -k1,12437:6630773,8416873:0 -g1,12437:12637541,8416873 -g1,12437:14850561,8416873 -g1,12437:15798999,8416873 -g1,12437:17379728,8416873 -g1,12437:18012020,8416873 -g1,12437:18960457,8416873 -h1,12437:19276603,8416873:0,0,0 -k1,12437:32583029,8416873:13306426 -g1,12437:32583029,8416873 -) -(1,12438:6630773,9083051:25952256,404226,107478 -h1,12438:6630773,9083051:0,0,0 -g1,12438:6946919,9083051 -g1,12438:7263065,9083051 -g1,12438:12321396,9083051 -g1,12438:12953688,9083051 -g1,12438:15799000,9083051 -h1,12438:16115146,9083051:0,0,0 -k1,12438:32583029,9083051:16467883 -g1,12438:32583029,9083051 -) -(1,12439:6630773,9749229:25952256,410518,107478 -h1,12439:6630773,9749229:0,0,0 -g1,12439:6946919,9749229 -g1,12439:7263065,9749229 -g1,12439:14850562,9749229 -g1,12439:15482854,9749229 -g1,12439:18644311,9749229 -g1,12439:20225040,9749229 -g1,12439:20857332,9749229 -g1,12439:24018789,9749229 -g1,12439:26864100,9749229 -g1,12439:27496392,9749229 -h1,12439:29393266,9749229:0,0,0 -k1,12439:32583029,9749229:3189763 -g1,12439:32583029,9749229 -) -] -) -g1,12441:32583029,9856707 -g1,12441:6630773,9856707 -g1,12441:6630773,9856707 -g1,12441:32583029,9856707 -g1,12441:32583029,9856707 -) -h1,12441:6630773,10053315:0,0,0 -(1,12445:6630773,11336004:25952256,505283,134348 -h1,12444:6630773,11336004:983040,0,0 -k1,12444:8497518,11336004:255870 -k1,12444:11384659,11336004:255870 -k1,12444:12291956,11336004:255869 -(1,12444:12291956,11336004:0,452978,122846 -r1,12444:16167340,11336004:3875384,575824,122846 -k1,12444:12291956,11336004:-3875384 -) -(1,12444:12291956,11336004:3875384,452978,122846 -k1,12444:12291956,11336004:3277 -h1,12444:16164063,11336004:0,411205,112570 -) -k1,12444:16596880,11336004:255870 -(1,12444:16596880,11336004:0,452978,122846 -r1,12444:20472264,11336004:3875384,575824,122846 -k1,12444:16596880,11336004:-3875384 -) -(1,12444:16596880,11336004:3875384,452978,122846 -k1,12444:16596880,11336004:3277 -h1,12444:20468987,11336004:0,411205,112570 -) -k1,12444:20728134,11336004:255870 -k1,12444:22900277,11336004:255870 -k1,12444:26791429,11336004:255870 -k1,12444:28388165,11336004:255869 -k1,12444:30498704,11336004:255870 -k1,12444:31563944,11336004:255870 -k1,12444:32583029,11336004:0 -) -(1,12445:6630773,12177492:25952256,513147,126483 -g1,12444:9444233,12177492 -g1,12444:10302754,12177492 -g1,12444:11521068,12177492 -g1,12444:14291274,12177492 -g1,12444:17075898,12177492 -g1,12444:17926555,12177492 -g1,12444:21300348,12177492 -(1,12444:21300348,12177492:0,452978,115847 -r1,12444:22713749,12177492:1413401,568825,115847 -k1,12444:21300348,12177492:-1413401 -) -(1,12444:21300348,12177492:1413401,452978,115847 -k1,12444:21300348,12177492:3277 -h1,12444:22710472,12177492:0,411205,112570 -) -g1,12444:23086648,12177492 -(1,12444:23086648,12177492:0,414482,115847 -r1,12444:24500049,12177492:1413401,530329,115847 -k1,12444:23086648,12177492:-1413401 -) -(1,12444:23086648,12177492:1413401,414482,115847 -k1,12444:23086648,12177492:3277 -h1,12444:24496772,12177492:0,411205,112570 -) -g1,12444:24872948,12177492 -(1,12444:24872948,12177492:0,452978,115847 -r1,12444:26286349,12177492:1413401,568825,115847 -k1,12444:24872948,12177492:-1413401 -) -(1,12444:24872948,12177492:1413401,452978,115847 -k1,12444:24872948,12177492:3277 -h1,12444:26283072,12177492:0,411205,112570 -) -g1,12444:26485578,12177492 -g1,12444:27876252,12177492 -(1,12444:27876252,12177492:0,414482,115847 -r1,12444:29289653,12177492:1413401,530329,115847 -k1,12444:27876252,12177492:-1413401 -) -(1,12444:27876252,12177492:1413401,414482,115847 -k1,12444:27876252,12177492:3277 -h1,12444:29286376,12177492:0,411205,112570 -) -k1,12445:32583029,12177492:3119706 -g1,12445:32583029,12177492 -) -(1,12449:6630773,14268752:25952256,564462,139132 -(1,12449:6630773,14268752:2450326,534184,12975 -g1,12449:6630773,14268752 -g1,12449:9081099,14268752 -) -g1,12449:11747694,14268752 -g1,12449:14946310,14268752 -k1,12449:32583029,14268752:16487611 -g1,12449:32583029,14268752 -) -(1,12454:6630773,15503456:25952256,513147,134348 -k1,12453:9683943,15503456:224637 -k1,12453:12242317,15503456:224637 -k1,12453:14009672,15503456:224637 -k1,12453:14917195,15503456:224638 -k1,12453:16595421,15503456:224637 -k1,12453:19676772,15503456:224637 -k1,12453:20920494,15503456:224637 -k1,12453:23669578,15503456:224637 -k1,12453:24553507,15503456:224637 -k1,12453:26647232,15503456:224638 -k1,12453:28261232,15503456:224637 -k1,12453:30687879,15503456:224637 -k1,12453:31563944,15503456:224637 -k1,12453:32583029,15503456:0 -) -(1,12454:6630773,16344944:25952256,513147,134348 -k1,12453:9374241,16344944:219021 -k1,12453:10209301,16344944:219022 -k1,12453:13933187,16344944:219021 -k1,12453:17959195,16344944:219022 -k1,12453:20754436,16344944:219021 -k1,12453:22435546,16344944:219002 -k1,12453:25213094,16344944:219022 -(1,12453:25213094,16344944:0,459977,122846 -r1,12453:28385054,16344944:3171960,582823,122846 -k1,12453:25213094,16344944:-3171960 -) -(1,12453:25213094,16344944:3171960,459977,122846 -k1,12453:25213094,16344944:3277 -h1,12453:28381777,16344944:0,411205,112570 -) -k1,12453:28604075,16344944:219021 -k1,12453:30014542,16344944:219022 -k1,12453:31021961,16344944:219021 -k1,12454:32583029,16344944:0 -) -(1,12454:6630773,17186432:25952256,505283,126483 -k1,12453:9541027,17186432:204272 -(1,12453:9541027,17186432:0,459977,122846 -r1,12453:14471547,17186432:4930520,582823,122846 -k1,12453:9541027,17186432:-4930520 -) -(1,12453:9541027,17186432:4930520,459977,122846 -k1,12453:9541027,17186432:3277 -h1,12453:14468270,17186432:0,411205,112570 -) -k1,12453:14849488,17186432:204271 -(1,12453:14849488,17186432:0,459977,122846 -r1,12453:20131719,17186432:5282231,582823,122846 -k1,12453:14849488,17186432:-5282231 -) -(1,12453:14849488,17186432:5282231,459977,122846 -k1,12453:14849488,17186432:3277 -h1,12453:20128442,17186432:0,411205,112570 -) -k1,12453:20509661,17186432:204272 -k1,12453:21905378,17186432:204272 -(1,12453:21905378,17186432:0,459977,115847 -r1,12453:25077338,17186432:3171960,575824,115847 -k1,12453:21905378,17186432:-3171960 -) -(1,12453:21905378,17186432:3171960,459977,115847 -k1,12453:21905378,17186432:3277 -h1,12453:25074061,17186432:0,411205,112570 -) -k1,12453:25455279,17186432:204271 -k1,12453:27040395,17186432:204272 -k1,12453:29290700,17186432:204271 -k1,12453:29953069,17186432:204272 -k1,12453:32583029,17186432:0 -) -(1,12454:6630773,18027920:25952256,513147,134348 -k1,12453:7485312,18027920:203111 -k1,12453:9983494,18027920:203111 -k1,12453:11575968,18027920:203111 -k1,12453:12588449,18027920:203111 -k1,12453:14692104,18027920:203111 -k1,12453:15842866,18027920:203111 -k1,12453:18881064,18027920:203111 -k1,12453:20819568,18027920:203111 -k1,12453:23785022,18027920:203111 -k1,12453:24828960,18027920:203111 -k1,12453:27042716,18027920:203111 -k1,12453:28193478,18027920:203111 -k1,12453:31158932,18027920:203111 -k1,12454:32583029,18027920:0 -) -(1,12454:6630773,18869408:25952256,513147,134348 -k1,12453:8162904,18869408:218789 -k1,12453:10600742,18869408:218789 -k1,12453:14152692,18869408:218789 -(1,12453:14152692,18869408:0,459977,115847 -r1,12453:17676364,18869408:3523672,575824,115847 -k1,12453:14152692,18869408:-3523672 -) -(1,12453:14152692,18869408:3523672,459977,115847 -k1,12453:14152692,18869408:3277 -h1,12453:17673087,18869408:0,411205,112570 -) -k1,12453:17895153,18869408:218789 -k1,12453:19218224,18869408:218789 -k1,12453:20184778,18869408:218788 -k1,12453:21916793,18869408:218789 -k1,12453:22787010,18869408:218789 -k1,12453:24826389,18869408:218789 -k1,12453:27807521,18869408:218789 -k1,12453:31635378,18869408:218789 -k1,12453:32583029,18869408:0 -) -(1,12454:6630773,19710896:25952256,505283,126483 -k1,12453:8695693,19710896:164376 -k1,12453:10056757,19710896:164377 -k1,12453:13008379,19710896:164376 -k1,12453:14685982,19710896:164377 -k1,12453:15381855,19710896:164376 -k1,12453:17414007,19710896:164376 -(1,12453:17414007,19710896:0,414482,122846 -r1,12453:20234256,19710896:2820249,537328,122846 -k1,12453:17414007,19710896:-2820249 -) -(1,12453:17414007,19710896:2820249,414482,122846 -k1,12453:17414007,19710896:3277 -h1,12453:20230979,19710896:0,411205,112570 -) -k1,12453:20398633,19710896:164377 -k1,12453:21754454,19710896:164376 -k1,12453:24612360,19710896:164376 -k1,12453:25428165,19710896:164377 -k1,12453:26358657,19710896:164376 -k1,12453:27542119,19710896:164377 -k1,12453:29408465,19710896:164376 -k1,12453:32583029,19710896:0 -) -(1,12454:6630773,20552384:25952256,513147,134348 -k1,12453:7666067,20552384:166942 -k1,12453:9308223,20552384:166941 -k1,12453:10914991,20552384:166942 -k1,12453:12574842,20552384:166941 -k1,12453:14245835,20552384:166942 -k1,12453:15431862,20552384:166942 -k1,12453:17609448,20552384:166941 -k1,12453:18427818,20552384:166942 -k1,12453:19342525,20552384:166941 -k1,12453:22094862,20552384:166942 -k1,12453:23253364,20552384:166942 -k1,12453:24079597,20552384:166941 -k1,12453:25801708,20552384:166942 -(1,12453:25801708,20552384:0,459977,115847 -r1,12453:26863397,20552384:1061689,575824,115847 -k1,12453:25801708,20552384:-1061689 -) -(1,12453:25801708,20552384:1061689,459977,115847 -k1,12453:25801708,20552384:3277 -h1,12453:26860120,20552384:0,411205,112570 -) -k1,12453:27030338,20552384:166941 -k1,12453:30559277,20552384:166942 -k1,12453:32583029,20552384:0 -) -(1,12454:6630773,21393872:25952256,513147,126483 -k1,12453:9451574,21393872:229507 -k1,12453:11070444,21393872:229507 -k1,12453:12693902,21393872:229507 -k1,12453:15594656,21393872:229507 -k1,12453:19925407,21393872:229508 -k1,12453:24354461,21393872:229507 -k1,12453:25243260,21393872:229507 -k1,12453:27597444,21393872:229507 -k1,12453:30432662,21393872:229507 -k1,12453:32051532,21393872:229507 -k1,12453:32583029,21393872:0 -) -(1,12454:6630773,22235360:25952256,513147,134348 -k1,12453:10111063,22235360:185795 -k1,12453:11058385,22235360:185794 -k1,12453:13824332,22235360:185795 -k1,12453:15124893,22235360:185795 -k1,12453:16691531,22235360:185794 -k1,12453:19187470,22235360:185795 -k1,12453:21864943,22235360:185794 -k1,12453:23069823,22235360:185795 -k1,12453:25082106,22235360:185795 -k1,12453:25927192,22235360:185794 -k1,12453:27316228,22235360:185795 -k1,12453:29257733,22235360:185795 -k1,12453:30168355,22235360:185794 -k1,12453:30710010,22235360:185795 -k1,12453:32583029,22235360:0 -) -(1,12454:6630773,23076848:25952256,513147,126483 -g1,12453:8021447,23076848 -g1,12453:9574650,23076848 -g1,12453:11898556,23076848 -g1,12453:14759202,23076848 -k1,12454:32583029,23076848:15334770 -g1,12454:32583029,23076848 -) -v1,12456:6630773,24184226:0,393216,0 -(1,12462:6630773,25837970:25952256,2046960,196608 -g1,12462:6630773,25837970 -g1,12462:6630773,25837970 -g1,12462:6434165,25837970 -(1,12462:6434165,25837970:0,2046960,196608 -r1,12462:32779637,25837970:26345472,2243568,196608 -k1,12462:6434165,25837970:-26345472 -) -(1,12462:6434165,25837970:26345472,2046960,196608 -[1,12462:6630773,25837970:25952256,1850352,0 -(1,12458:6630773,24398136:25952256,410518,107478 -(1,12457:6630773,24398136:0,0,0 -g1,12457:6630773,24398136 -g1,12457:6630773,24398136 -g1,12457:6303093,24398136 -(1,12457:6303093,24398136:0,0,0 -) -g1,12457:6630773,24398136 -) -g1,12458:7579210,24398136 -g1,12458:8527648,24398136 -g1,12458:21173476,24398136 -g1,12458:23702642,24398136 -g1,12458:24334934,24398136 -g1,12458:26547955,24398136 -g1,12458:28444829,24398136 -g1,12458:29077121,24398136 -h1,12458:30657850,24398136:0,0,0 -k1,12458:32583029,24398136:1925179 -g1,12458:32583029,24398136 -) -(1,12459:6630773,25064314:25952256,404226,107478 -h1,12459:6630773,25064314:0,0,0 -g1,12459:10108376,25064314 -h1,12459:10424522,25064314:0,0,0 -k1,12459:32583030,25064314:22158508 -g1,12459:32583030,25064314 -) -(1,12460:6630773,25730492:25952256,410518,107478 -h1,12460:6630773,25730492:0,0,0 -g1,12460:6946919,25730492 -g1,12460:7263065,25730492 -g1,12460:12637543,25730492 -g1,12460:13269835,25730492 -g1,12460:15482855,25730492 -g1,12460:17379729,25730492 -g1,12460:18012021,25730492 -h1,12460:20857332,25730492:0,0,0 -k1,12460:32583029,25730492:11725697 -g1,12460:32583029,25730492 -) -] -) -g1,12462:32583029,25837970 -g1,12462:6630773,25837970 -g1,12462:6630773,25837970 -g1,12462:32583029,25837970 -g1,12462:32583029,25837970 -) -h1,12462:6630773,26034578:0,0,0 -(1,12465:6630773,35604004:25952256,9062689,0 -k1,12465:10523651,35604004:3892878 -h1,12464:10523651,35604004:0,0,0 -(1,12464:10523651,35604004:18166500,9062689,0 -(1,12464:10523651,35604004:18167381,9062712,0 -(1,12464:10523651,35604004:18167381,9062712,0 -(1,12464:10523651,35604004:0,9062712,0 -(1,12464:10523651,35604004:0,14155776,0 -(1,12464:10523651,35604004:28377088,14155776,0 -) -k1,12464:10523651,35604004:-28377088 -) -) -g1,12464:28691032,35604004 -) -) -) -g1,12465:28690151,35604004 -k1,12465:32583029,35604004:3892878 -) -(1,12474:6630773,37695264:25952256,527696,8650 -(1,12474:6630773,37695264:2450326,527696,0 -g1,12474:6630773,37695264 -g1,12474:9081099,37695264 -) -k1,12474:32583028,37695264:21863332 -g1,12474:32583028,37695264 -) -(1,12479:6630773,38929968:25952256,505283,122846 -k1,12478:7847536,38929968:263214 -k1,12478:9215032,38929968:263214 -k1,12478:10570732,38929968:263215 -(1,12478:10570732,38929968:0,452978,122846 -r1,12478:14446116,38929968:3875384,575824,122846 -k1,12478:10570732,38929968:-3875384 -) -(1,12478:10570732,38929968:3875384,452978,122846 -k1,12478:10570732,38929968:3277 -h1,12478:14442839,38929968:0,411205,112570 -) -k1,12478:14709330,38929968:263214 -k1,12478:15655429,38929968:263214 -(1,12478:15655429,38929968:0,452978,122846 -r1,12478:19882525,38929968:4227096,575824,122846 -k1,12478:15655429,38929968:-4227096 -) -(1,12478:15655429,38929968:4227096,452978,122846 -k1,12478:15655429,38929968:3277 -h1,12478:19879248,38929968:0,411205,112570 -) -k1,12478:20145739,38929968:263214 -k1,12478:21060381,38929968:263214 -k1,12478:22520938,38929968:263214 -k1,12478:24010332,38929968:263215 -k1,12478:26117729,38929968:263214 -k1,12478:27032371,38929968:263214 -k1,12478:31541007,38929968:263214 -k1,12479:32583029,38929968:0 -) -(1,12479:6630773,39771456:25952256,505283,126483 -(1,12478:6630773,39771456:0,452978,122846 -r1,12478:10506157,39771456:3875384,575824,122846 -k1,12478:6630773,39771456:-3875384 -) -(1,12478:6630773,39771456:3875384,452978,122846 -k1,12478:6630773,39771456:3277 -h1,12478:10502880,39771456:0,411205,112570 -) -k1,12478:10701528,39771456:195371 -k1,12478:12088345,39771456:195372 -(1,12478:12088345,39771456:0,452978,122846 -r1,12478:16315441,39771456:4227096,575824,122846 -k1,12478:12088345,39771456:-4227096 -) -(1,12478:12088345,39771456:4227096,452978,122846 -k1,12478:12088345,39771456:3277 -h1,12478:16312164,39771456:0,411205,112570 -) -k1,12478:16684482,39771456:195371 -k1,12478:17898939,39771456:195372 -k1,12478:20938573,39771456:195371 -(1,12478:20938573,39771456:0,452978,115847 -r1,12478:22703686,39771456:1765113,568825,115847 -k1,12478:20938573,39771456:-1765113 -) -(1,12478:20938573,39771456:1765113,452978,115847 -k1,12478:20938573,39771456:3277 -h1,12478:22700409,39771456:0,411205,112570 -) -k1,12478:22899058,39771456:195372 -k1,12478:25854805,39771456:195371 -k1,12478:27069262,39771456:195372 -k1,12478:28490812,39771456:195371 -k1,12478:29337612,39771456:195372 -k1,12478:30280749,39771456:195371 -k1,12478:32583029,39771456:0 -) -(1,12479:6630773,40612944:25952256,513147,126483 -k1,12478:8043365,40612944:221147 -k1,12478:9283597,40612944:221147 -k1,12478:11225720,40612944:221148 -k1,12478:14621431,40612944:221147 -(1,12478:14621431,40612944:0,414482,115847 -r1,12478:14979697,40612944:358266,530329,115847 -k1,12478:14621431,40612944:-358266 -) -(1,12478:14621431,40612944:358266,414482,115847 -k1,12478:14621431,40612944:3277 -h1,12478:14976420,40612944:0,411205,112570 -) -k1,12478:15200844,40612944:221147 -k1,12478:16613436,40612944:221147 -(1,12478:16613436,40612944:0,414482,115847 -r1,12478:16971702,40612944:358266,530329,115847 -k1,12478:16613436,40612944:-358266 -) -(1,12478:16613436,40612944:358266,414482,115847 -k1,12478:16613436,40612944:3277 -h1,12478:16968425,40612944:0,411205,112570 -) -k1,12478:17366519,40612944:221147 -k1,12478:18606752,40612944:221148 -k1,12478:21384458,40612944:221147 -k1,12478:22264897,40612944:221147 -k1,12478:23505129,40612944:221147 -k1,12478:25744130,40612944:221147 -k1,12478:26783167,40612944:221148 -k1,12478:28161024,40612944:221147 -k1,12478:30338421,40612944:221147 -k1,12478:32583029,40612944:0 -) -(1,12479:6630773,41454432:25952256,513147,115847 -g1,12478:7849087,41454432 -(1,12478:7849087,41454432:0,452978,115847 -r1,12478:9614200,41454432:1765113,568825,115847 -k1,12478:7849087,41454432:-1765113 -) -(1,12478:7849087,41454432:1765113,452978,115847 -k1,12478:7849087,41454432:3277 -h1,12478:9610923,41454432:0,411205,112570 -) -g1,12478:9813429,41454432 -g1,12478:11204103,41454432 -(1,12478:11204103,41454432:0,452978,115847 -r1,12478:12617504,41454432:1413401,568825,115847 -k1,12478:11204103,41454432:-1413401 -) -(1,12478:11204103,41454432:1413401,452978,115847 -k1,12478:11204103,41454432:3277 -h1,12478:12614227,41454432:0,411205,112570 -) -g1,12478:12816733,41454432 -g1,12478:16190526,41454432 -g1,12478:17494037,41454432 -g1,12478:18979082,41454432 -g1,12478:19926077,41454432 -g1,12478:21638532,41454432 -g1,12478:22785412,41454432 -g1,12478:24003726,41454432 -k1,12479:32583029,41454432:7179454 -g1,12479:32583029,41454432 -) -v1,12481:6630773,42561810:0,393216,0 -(1,12491:6630773,45510161:25952256,3341567,196608 -g1,12491:6630773,45510161 -g1,12491:6630773,45510161 -g1,12491:6434165,45510161 -(1,12491:6434165,45510161:0,3341567,196608 -r1,12491:32779637,45510161:26345472,3538175,196608 -k1,12491:6434165,45510161:-26345472 -) -(1,12491:6434165,45510161:26345472,3341567,196608 -[1,12491:6630773,45510161:25952256,3144959,0 -(1,12483:6630773,42769428:25952256,404226,107478 -(1,12482:6630773,42769428:0,0,0 -g1,12482:6630773,42769428 -g1,12482:6630773,42769428 -g1,12482:6303093,42769428 -(1,12482:6303093,42769428:0,0,0 -) -g1,12482:6630773,42769428 -) -k1,12483:6630773,42769428:0 -g1,12483:10424522,42769428 -g1,12483:11056814,42769428 -g1,12483:13585980,42769428 -g1,12483:15482855,42769428 -g1,12483:16115147,42769428 -g1,12483:18012022,42769428 -g1,12483:18644314,42769428 -g1,12483:19276606,42769428 -k1,12483:19276606,42769428:0 -h1,12483:20541189,42769428:0,0,0 -k1,12483:32583029,42769428:12041840 -g1,12483:32583029,42769428 -) -(1,12484:6630773,43435606:25952256,410518,101187 -h1,12484:6630773,43435606:0,0,0 -g1,12484:6946919,43435606 -g1,12484:7263065,43435606 -g1,12484:7579211,43435606 -g1,12484:7895357,43435606 -g1,12484:8211503,43435606 -g1,12484:8527649,43435606 -g1,12484:8843795,43435606 -g1,12484:9159941,43435606 -g1,12484:9476087,43435606 -g1,12484:9792233,43435606 -g1,12484:10108379,43435606 -g1,12484:10424525,43435606 -g1,12484:10740671,43435606 -g1,12484:11056817,43435606 -g1,12484:11372963,43435606 -g1,12484:11689109,43435606 -g1,12484:12005255,43435606 -g1,12484:12321401,43435606 -g1,12484:12637547,43435606 -g1,12484:12953693,43435606 -g1,12484:13269839,43435606 -g1,12484:13585985,43435606 -g1,12484:13902131,43435606 -g1,12484:14218277,43435606 -g1,12484:14534423,43435606 -g1,12484:14850569,43435606 -g1,12484:16747443,43435606 -g1,12484:17379735,43435606 -k1,12484:17379735,43435606:0 -h1,12484:21173483,43435606:0,0,0 -k1,12484:32583029,43435606:11409546 -g1,12484:32583029,43435606 -) -(1,12485:6630773,44101784:25952256,404226,82312 -h1,12485:6630773,44101784:0,0,0 -g1,12485:6946919,44101784 -g1,12485:7263065,44101784 -g1,12485:7579211,44101784 -g1,12485:7895357,44101784 -g1,12485:8211503,44101784 -g1,12485:8527649,44101784 -g1,12485:8843795,44101784 -g1,12485:9159941,44101784 -g1,12485:9476087,44101784 -g1,12485:9792233,44101784 -g1,12485:10108379,44101784 -g1,12485:10424525,44101784 -g1,12485:10740671,44101784 -g1,12485:11056817,44101784 -g1,12485:11372963,44101784 -g1,12485:11689109,44101784 -g1,12485:12005255,44101784 -g1,12485:12321401,44101784 -g1,12485:12637547,44101784 -g1,12485:12953693,44101784 -g1,12485:13269839,44101784 -g1,12485:13585985,44101784 -g1,12485:13902131,44101784 -g1,12485:14218277,44101784 -g1,12485:14534423,44101784 -g1,12485:14850569,44101784 -g1,12485:16431298,44101784 -g1,12485:17063590,44101784 -k1,12485:17063590,44101784:0 -h1,12485:18012027,44101784:0,0,0 -k1,12485:32583029,44101784:14571002 -g1,12485:32583029,44101784 -) -(1,12486:6630773,44767962:25952256,404226,101187 -h1,12486:6630773,44767962:0,0,0 -g1,12486:6946919,44767962 -g1,12486:7263065,44767962 -g1,12486:7579211,44767962 -g1,12486:7895357,44767962 -g1,12486:8211503,44767962 -g1,12486:8527649,44767962 -g1,12486:8843795,44767962 -g1,12486:9159941,44767962 -g1,12486:9476087,44767962 -g1,12486:9792233,44767962 -g1,12486:10108379,44767962 -g1,12486:10424525,44767962 -g1,12486:10740671,44767962 -g1,12486:11056817,44767962 -g1,12486:11372963,44767962 -g1,12486:11689109,44767962 -g1,12486:12005255,44767962 -g1,12486:12321401,44767962 -g1,12486:12637547,44767962 -g1,12486:12953693,44767962 -g1,12486:13269839,44767962 -g1,12486:13585985,44767962 -g1,12486:13902131,44767962 -g1,12486:14218277,44767962 -g1,12486:14534423,44767962 -g1,12486:14850569,44767962 -g1,12486:16747443,44767962 -g1,12486:17379735,44767962 -g1,12486:19276609,44767962 -h1,12486:19592755,44767962:0,0,0 -k1,12486:32583029,44767962:12990274 -g1,12486:32583029,44767962 -) -(1,12487:6630773,45434140:25952256,404226,76021 -h1,12487:6630773,45434140:0,0,0 -g1,12487:6946919,45434140 -g1,12487:7263065,45434140 -g1,12487:11372959,45434140 -h1,12487:11689105,45434140:0,0,0 -k1,12487:32583029,45434140:20893924 -g1,12487:32583029,45434140 -) -] -) -g1,12491:32583029,45510161 -g1,12491:6630773,45510161 -g1,12491:6630773,45510161 -g1,12491:32583029,45510161 -g1,12491:32583029,45510161 -) -] -(1,12491:32583029,45706769:0,0,0 -g1,12491:32583029,45706769 -) -) -] -(1,12491:6630773,47279633:25952256,0,0 -h1,12491:6630773,47279633:25952256,0,0 -) -] -h1,12491:4262630,4025873:0,0,0 -] -!26111 -}237 -Input:1661:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1662:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1663:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1664:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1665:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1666:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1667:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1668:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1669:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1670:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1671:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1672:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1673:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1674:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1675:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1676:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1677:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1678:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1679:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1680:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1681:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1682:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1904 -{238 -[1,12507:4262630,47279633:28320399,43253760,0 -(1,12507:4262630,4025873:0,0,0 -[1,12507:-473657,4025873:25952256,0,0 -(1,12507:-473657,-710414:25952256,0,0 -h1,12507:-473657,-710414:0,0,0 -(1,12507:-473657,-710414:0,0,0 -(1,12507:-473657,-710414:0,0,0 -g1,12507:-473657,-710414 -(1,12507:-473657,-710414:65781,0,65781 -g1,12507:-407876,-710414 -[1,12507:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12520:37855564,49800853:1179648,16384,0 +) +) +k1,12520:3078556,49800853:-34777008 +) +] +g1,12520:6630773,4812305 +g1,12520:6630773,4812305 +g1,12520:10347975,4812305 +k1,12520:31387651,4812305:21039676 +) +) +] +[1,12520:6630773,45706769:25952256,40108032,0 +(1,12520:6630773,45706769:25952256,40108032,0 +(1,12520:6630773,45706769:0,0,0 +g1,12520:6630773,45706769 +) +[1,12520:6630773,45706769:25952256,40108032,0 +(1,12468:6630773,6254097:25952256,564462,139132 +(1,12468:6630773,6254097:2450326,534184,12975 +g1,12468:6630773,6254097 +g1,12468:9081099,6254097 +) +g1,12468:11747694,6254097 +g1,12468:14946310,6254097 +k1,12468:32583029,6254097:16487611 +g1,12468:32583029,6254097 +) +(1,12473:6630773,7488801:25952256,513147,134348 +k1,12472:9683943,7488801:224637 +k1,12472:12242317,7488801:224637 +k1,12472:14009672,7488801:224637 +k1,12472:14917195,7488801:224638 +k1,12472:16595421,7488801:224637 +k1,12472:19676772,7488801:224637 +k1,12472:20920494,7488801:224637 +k1,12472:23669578,7488801:224637 +k1,12472:24553507,7488801:224637 +k1,12472:26647232,7488801:224638 +k1,12472:28261232,7488801:224637 +k1,12472:30687879,7488801:224637 +k1,12472:31563944,7488801:224637 +k1,12472:32583029,7488801:0 +) +(1,12473:6630773,8330289:25952256,513147,134348 +k1,12472:9374241,8330289:219021 +k1,12472:10209301,8330289:219022 +k1,12472:13933187,8330289:219021 +k1,12472:17959195,8330289:219022 +k1,12472:20754436,8330289:219021 +k1,12472:22435546,8330289:219002 +k1,12472:25213094,8330289:219022 +(1,12472:25213094,8330289:0,459977,122846 +r1,12472:28385054,8330289:3171960,582823,122846 +k1,12472:25213094,8330289:-3171960 +) +(1,12472:25213094,8330289:3171960,459977,122846 +k1,12472:25213094,8330289:3277 +h1,12472:28381777,8330289:0,411205,112570 +) +k1,12472:28604075,8330289:219021 +k1,12472:30014542,8330289:219022 +k1,12472:31021961,8330289:219021 +k1,12473:32583029,8330289:0 +) +(1,12473:6630773,9171777:25952256,505283,126483 +k1,12472:9541027,9171777:204272 +(1,12472:9541027,9171777:0,459977,122846 +r1,12472:14471547,9171777:4930520,582823,122846 +k1,12472:9541027,9171777:-4930520 +) +(1,12472:9541027,9171777:4930520,459977,122846 +k1,12472:9541027,9171777:3277 +h1,12472:14468270,9171777:0,411205,112570 +) +k1,12472:14849488,9171777:204271 +(1,12472:14849488,9171777:0,459977,122846 +r1,12472:20131719,9171777:5282231,582823,122846 +k1,12472:14849488,9171777:-5282231 +) +(1,12472:14849488,9171777:5282231,459977,122846 +k1,12472:14849488,9171777:3277 +h1,12472:20128442,9171777:0,411205,112570 +) +k1,12472:20509661,9171777:204272 +k1,12472:21905378,9171777:204272 +(1,12472:21905378,9171777:0,459977,115847 +r1,12472:25077338,9171777:3171960,575824,115847 +k1,12472:21905378,9171777:-3171960 +) +(1,12472:21905378,9171777:3171960,459977,115847 +k1,12472:21905378,9171777:3277 +h1,12472:25074061,9171777:0,411205,112570 +) +k1,12472:25455279,9171777:204271 +k1,12472:27040395,9171777:204272 +k1,12472:29290700,9171777:204271 +k1,12472:29953069,9171777:204272 +k1,12472:32583029,9171777:0 +) +(1,12473:6630773,10013265:25952256,513147,134348 +k1,12472:7529574,10013265:247373 +k1,12472:10072018,10013265:247373 +k1,12472:11708754,10013265:247373 +k1,12472:12765497,10013265:247373 +k1,12472:14913414,10013265:247373 +k1,12472:16108438,10013265:247373 +k1,12472:19190898,10013265:247373 +k1,12472:21173664,10013265:247373 +k1,12472:24183380,10013265:247373 +k1,12472:25271580,10013265:247373 +k1,12472:27529598,10013265:247373 +k1,12472:28724622,10013265:247373 +k1,12472:31734338,10013265:247373 +k1,12473:32583029,10013265:0 +) +(1,12473:6630773,10854753:25952256,513147,134348 +k1,12472:8686000,10854753:166479 +k1,12472:11071529,10854753:166480 +k1,12472:14571169,10854753:166479 +(1,12472:14571169,10854753:0,459977,115847 +r1,12472:18094841,10854753:3523672,575824,115847 +k1,12472:14571169,10854753:-3523672 +) +(1,12472:14571169,10854753:3523672,459977,115847 +k1,12472:14571169,10854753:3277 +h1,12472:18091564,10854753:0,411205,112570 +) +k1,12472:18261320,10854753:166479 +k1,12472:19532081,10854753:166479 +k1,12472:20446327,10854753:166480 +k1,12472:22126032,10854753:166479 +k1,12472:22943939,10854753:166479 +k1,12472:24931008,10854753:166479 +k1,12472:27859831,10854753:166480 +k1,12472:31635378,10854753:166479 +k1,12472:32583029,10854753:0 +) +(1,12473:6630773,11696241:25952256,505283,126483 +k1,12472:8695693,11696241:164376 +k1,12472:10056757,11696241:164377 +k1,12472:13008379,11696241:164376 +k1,12472:14685982,11696241:164377 +k1,12472:15381855,11696241:164376 +k1,12472:17414007,11696241:164376 +(1,12472:17414007,11696241:0,414482,122846 +r1,12472:20234256,11696241:2820249,537328,122846 +k1,12472:17414007,11696241:-2820249 +) +(1,12472:17414007,11696241:2820249,414482,122846 +k1,12472:17414007,11696241:3277 +h1,12472:20230979,11696241:0,411205,112570 +) +k1,12472:20398633,11696241:164377 +k1,12472:21754454,11696241:164376 +k1,12472:24612360,11696241:164376 +k1,12472:25428165,11696241:164377 +k1,12472:26358657,11696241:164376 +k1,12472:27542119,11696241:164377 +k1,12472:29408465,11696241:164376 +k1,12472:32583029,11696241:0 +) +(1,12473:6630773,12537729:25952256,513147,134348 +k1,12472:7666067,12537729:166942 +k1,12472:9308223,12537729:166941 +k1,12472:10914991,12537729:166942 +k1,12472:12574842,12537729:166941 +k1,12472:14245835,12537729:166942 +k1,12472:15431862,12537729:166942 +k1,12472:17609448,12537729:166941 +k1,12472:18427818,12537729:166942 +k1,12472:19342525,12537729:166941 +k1,12472:22094862,12537729:166942 +k1,12472:23253364,12537729:166942 +k1,12472:24079597,12537729:166941 +k1,12472:25801708,12537729:166942 +(1,12472:25801708,12537729:0,459977,115847 +r1,12472:26863397,12537729:1061689,575824,115847 +k1,12472:25801708,12537729:-1061689 +) +(1,12472:25801708,12537729:1061689,459977,115847 +k1,12472:25801708,12537729:3277 +h1,12472:26860120,12537729:0,411205,112570 +) +k1,12472:27030338,12537729:166941 +k1,12472:30559277,12537729:166942 +k1,12472:32583029,12537729:0 +) +(1,12473:6630773,13379217:25952256,513147,126483 +k1,12472:9451574,13379217:229507 +k1,12472:11070444,13379217:229507 +k1,12472:12693902,13379217:229507 +k1,12472:15594656,13379217:229507 +k1,12472:19925407,13379217:229508 +k1,12472:24354461,13379217:229507 +k1,12472:25243260,13379217:229507 +k1,12472:27597444,13379217:229507 +k1,12472:30432662,13379217:229507 +k1,12472:32051532,13379217:229507 +k1,12472:32583029,13379217:0 +) +(1,12473:6630773,14220705:25952256,513147,134348 +k1,12472:10111063,14220705:185795 +k1,12472:11058385,14220705:185794 +k1,12472:13824332,14220705:185795 +k1,12472:15124893,14220705:185795 +k1,12472:16691531,14220705:185794 +k1,12472:19187470,14220705:185795 +k1,12472:21864943,14220705:185794 +k1,12472:23069823,14220705:185795 +k1,12472:25082106,14220705:185795 +k1,12472:25927192,14220705:185794 +k1,12472:27316228,14220705:185795 +k1,12472:29257733,14220705:185795 +k1,12472:30168355,14220705:185794 +k1,12472:30710010,14220705:185795 +k1,12472:32583029,14220705:0 +) +(1,12473:6630773,15062193:25952256,513147,126483 +g1,12472:8021447,15062193 +g1,12472:9574650,15062193 +g1,12472:11898556,15062193 +g1,12472:14759202,15062193 +k1,12473:32583029,15062193:15334770 +g1,12473:32583029,15062193 +) +v1,12475:6630773,16252659:0,393216,0 +(1,12481:6630773,17906403:25952256,2046960,196608 +g1,12481:6630773,17906403 +g1,12481:6630773,17906403 +g1,12481:6434165,17906403 +(1,12481:6434165,17906403:0,2046960,196608 +r1,12481:32779637,17906403:26345472,2243568,196608 +k1,12481:6434165,17906403:-26345472 +) +(1,12481:6434165,17906403:26345472,2046960,196608 +[1,12481:6630773,17906403:25952256,1850352,0 +(1,12477:6630773,16466569:25952256,410518,107478 +(1,12476:6630773,16466569:0,0,0 +g1,12476:6630773,16466569 +g1,12476:6630773,16466569 +g1,12476:6303093,16466569 +(1,12476:6303093,16466569:0,0,0 +) +g1,12476:6630773,16466569 +) +g1,12477:7579210,16466569 +g1,12477:8527648,16466569 +g1,12477:21173476,16466569 +g1,12477:23702642,16466569 +g1,12477:24334934,16466569 +g1,12477:26547955,16466569 +g1,12477:28444829,16466569 +g1,12477:29077121,16466569 +h1,12477:30657850,16466569:0,0,0 +k1,12477:32583029,16466569:1925179 +g1,12477:32583029,16466569 +) +(1,12478:6630773,17132747:25952256,404226,107478 +h1,12478:6630773,17132747:0,0,0 +g1,12478:10108376,17132747 +h1,12478:10424522,17132747:0,0,0 +k1,12478:32583030,17132747:22158508 +g1,12478:32583030,17132747 +) +(1,12479:6630773,17798925:25952256,410518,107478 +h1,12479:6630773,17798925:0,0,0 +g1,12479:6946919,17798925 +g1,12479:7263065,17798925 +g1,12479:12637543,17798925 +g1,12479:13269835,17798925 +g1,12479:15482855,17798925 +g1,12479:17379729,17798925 +g1,12479:18012021,17798925 +h1,12479:20857332,17798925:0,0,0 +k1,12479:32583029,17798925:11725697 +g1,12479:32583029,17798925 +) +] +) +g1,12481:32583029,17906403 +g1,12481:6630773,17906403 +g1,12481:6630773,17906403 +g1,12481:32583029,17906403 +g1,12481:32583029,17906403 +) +h1,12481:6630773,18103011:0,0,0 +(1,12484:6630773,27755524:25952256,9062689,0 +k1,12484:10523651,27755524:3892878 +h1,12483:10523651,27755524:0,0,0 +(1,12483:10523651,27755524:18166500,9062689,0 +(1,12483:10523651,27755524:18167381,9062712,0 +(1,12483:10523651,27755524:18167381,9062712,0 +(1,12483:10523651,27755524:0,9062712,0 +(1,12483:10523651,27755524:0,14155776,0 +(1,12483:10523651,27755524:28377088,14155776,0 +) +k1,12483:10523651,27755524:-28377088 +) +) +g1,12483:28691032,27755524 +) +) +) +g1,12484:28690151,27755524 +k1,12484:32583029,27755524:3892878 +) +(1,12493:6630773,29846784:25952256,527696,8650 +(1,12493:6630773,29846784:2450326,527696,0 +g1,12493:6630773,29846784 +g1,12493:9081099,29846784 +) +k1,12493:32583028,29846784:21863332 +g1,12493:32583028,29846784 +) +(1,12498:6630773,31081488:25952256,505283,122846 +k1,12497:7847536,31081488:263214 +k1,12497:9215032,31081488:263214 +k1,12497:10570732,31081488:263215 +(1,12497:10570732,31081488:0,452978,122846 +r1,12497:14446116,31081488:3875384,575824,122846 +k1,12497:10570732,31081488:-3875384 +) +(1,12497:10570732,31081488:3875384,452978,122846 +k1,12497:10570732,31081488:3277 +h1,12497:14442839,31081488:0,411205,112570 +) +k1,12497:14709330,31081488:263214 +k1,12497:15655429,31081488:263214 +(1,12497:15655429,31081488:0,452978,122846 +r1,12497:19882525,31081488:4227096,575824,122846 +k1,12497:15655429,31081488:-4227096 +) +(1,12497:15655429,31081488:4227096,452978,122846 +k1,12497:15655429,31081488:3277 +h1,12497:19879248,31081488:0,411205,112570 +) +k1,12497:20145739,31081488:263214 +k1,12497:21060381,31081488:263214 +k1,12497:22520938,31081488:263214 +k1,12497:24010332,31081488:263215 +k1,12497:26117729,31081488:263214 +k1,12497:27032371,31081488:263214 +k1,12497:31541007,31081488:263214 +k1,12498:32583029,31081488:0 +) +(1,12498:6630773,31922976:25952256,505283,126483 +(1,12497:6630773,31922976:0,452978,122846 +r1,12497:10506157,31922976:3875384,575824,122846 +k1,12497:6630773,31922976:-3875384 +) +(1,12497:6630773,31922976:3875384,452978,122846 +k1,12497:6630773,31922976:3277 +h1,12497:10502880,31922976:0,411205,112570 +) +k1,12497:10701528,31922976:195371 +k1,12497:12088345,31922976:195372 +(1,12497:12088345,31922976:0,452978,122846 +r1,12497:16315441,31922976:4227096,575824,122846 +k1,12497:12088345,31922976:-4227096 +) +(1,12497:12088345,31922976:4227096,452978,122846 +k1,12497:12088345,31922976:3277 +h1,12497:16312164,31922976:0,411205,112570 +) +k1,12497:16684482,31922976:195371 +k1,12497:17898939,31922976:195372 +k1,12497:20938573,31922976:195371 +(1,12497:20938573,31922976:0,452978,115847 +r1,12497:22703686,31922976:1765113,568825,115847 +k1,12497:20938573,31922976:-1765113 +) +(1,12497:20938573,31922976:1765113,452978,115847 +k1,12497:20938573,31922976:3277 +h1,12497:22700409,31922976:0,411205,112570 +) +k1,12497:22899058,31922976:195372 +k1,12497:25854805,31922976:195371 +k1,12497:27069262,31922976:195372 +k1,12497:28490812,31922976:195371 +k1,12497:29337612,31922976:195372 +k1,12497:30280749,31922976:195371 +k1,12497:32583029,31922976:0 +) +(1,12498:6630773,32764464:25952256,513147,126483 +k1,12497:8043365,32764464:221147 +k1,12497:9283597,32764464:221147 +k1,12497:11225720,32764464:221148 +k1,12497:14621431,32764464:221147 +(1,12497:14621431,32764464:0,414482,115847 +r1,12497:14979697,32764464:358266,530329,115847 +k1,12497:14621431,32764464:-358266 +) +(1,12497:14621431,32764464:358266,414482,115847 +k1,12497:14621431,32764464:3277 +h1,12497:14976420,32764464:0,411205,112570 +) +k1,12497:15200844,32764464:221147 +k1,12497:16613436,32764464:221147 +(1,12497:16613436,32764464:0,414482,115847 +r1,12497:16971702,32764464:358266,530329,115847 +k1,12497:16613436,32764464:-358266 +) +(1,12497:16613436,32764464:358266,414482,115847 +k1,12497:16613436,32764464:3277 +h1,12497:16968425,32764464:0,411205,112570 +) +k1,12497:17366519,32764464:221147 +k1,12497:18606752,32764464:221148 +k1,12497:21384458,32764464:221147 +k1,12497:22264897,32764464:221147 +k1,12497:23505129,32764464:221147 +k1,12497:25744130,32764464:221147 +k1,12497:26783167,32764464:221148 +k1,12497:28161024,32764464:221147 +k1,12497:30338421,32764464:221147 +k1,12497:32583029,32764464:0 +) +(1,12498:6630773,33605952:25952256,513147,115847 +g1,12497:7849087,33605952 +(1,12497:7849087,33605952:0,452978,115847 +r1,12497:9614200,33605952:1765113,568825,115847 +k1,12497:7849087,33605952:-1765113 +) +(1,12497:7849087,33605952:1765113,452978,115847 +k1,12497:7849087,33605952:3277 +h1,12497:9610923,33605952:0,411205,112570 +) +g1,12497:9813429,33605952 +g1,12497:11204103,33605952 +(1,12497:11204103,33605952:0,452978,115847 +r1,12497:12617504,33605952:1413401,568825,115847 +k1,12497:11204103,33605952:-1413401 +) +(1,12497:11204103,33605952:1413401,452978,115847 +k1,12497:11204103,33605952:3277 +h1,12497:12614227,33605952:0,411205,112570 +) +g1,12497:12816733,33605952 +g1,12497:16190526,33605952 +g1,12497:17494037,33605952 +g1,12497:18979082,33605952 +g1,12497:19926077,33605952 +g1,12497:21638532,33605952 +g1,12497:22785412,33605952 +g1,12497:24003726,33605952 +k1,12498:32583029,33605952:7179454 +g1,12498:32583029,33605952 +) +v1,12500:6630773,34796418:0,393216,0 +(1,12510:6630773,39108582:25952256,4705380,196608 +g1,12510:6630773,39108582 +g1,12510:6630773,39108582 +g1,12510:6434165,39108582 +(1,12510:6434165,39108582:0,4705380,196608 +r1,12510:32779637,39108582:26345472,4901988,196608 +k1,12510:6434165,39108582:-26345472 +) +(1,12510:6434165,39108582:26345472,4705380,196608 +[1,12510:6630773,39108582:25952256,4508772,0 +(1,12502:6630773,35004036:25952256,404226,107478 +(1,12501:6630773,35004036:0,0,0 +g1,12501:6630773,35004036 +g1,12501:6630773,35004036 +g1,12501:6303093,35004036 +(1,12501:6303093,35004036:0,0,0 +) +g1,12501:6630773,35004036 +) +k1,12502:6630773,35004036:0 +g1,12502:10424522,35004036 +g1,12502:11056814,35004036 +g1,12502:13585980,35004036 +g1,12502:15482855,35004036 +g1,12502:16115147,35004036 +g1,12502:18012022,35004036 +g1,12502:18644314,35004036 +g1,12502:19276606,35004036 +k1,12502:19276606,35004036:0 +h1,12502:20541189,35004036:0,0,0 +k1,12502:32583029,35004036:12041840 +g1,12502:32583029,35004036 +) +(1,12503:6630773,35670214:25952256,410518,101187 +h1,12503:6630773,35670214:0,0,0 +g1,12503:6946919,35670214 +g1,12503:7263065,35670214 +g1,12503:7579211,35670214 +g1,12503:7895357,35670214 +g1,12503:8211503,35670214 +g1,12503:8527649,35670214 +g1,12503:8843795,35670214 +g1,12503:9159941,35670214 +g1,12503:9476087,35670214 +g1,12503:9792233,35670214 +g1,12503:10108379,35670214 +g1,12503:10424525,35670214 +g1,12503:10740671,35670214 +g1,12503:11056817,35670214 +g1,12503:11372963,35670214 +g1,12503:11689109,35670214 +g1,12503:12005255,35670214 +g1,12503:12321401,35670214 +g1,12503:12637547,35670214 +g1,12503:12953693,35670214 +g1,12503:13269839,35670214 +g1,12503:13585985,35670214 +g1,12503:13902131,35670214 +g1,12503:14218277,35670214 +g1,12503:14534423,35670214 +g1,12503:14850569,35670214 +g1,12503:16747443,35670214 +g1,12503:17379735,35670214 +k1,12503:17379735,35670214:0 +h1,12503:21173483,35670214:0,0,0 +k1,12503:32583029,35670214:11409546 +g1,12503:32583029,35670214 +) +(1,12504:6630773,36336392:25952256,404226,82312 +h1,12504:6630773,36336392:0,0,0 +g1,12504:6946919,36336392 +g1,12504:7263065,36336392 +g1,12504:7579211,36336392 +g1,12504:7895357,36336392 +g1,12504:8211503,36336392 +g1,12504:8527649,36336392 +g1,12504:8843795,36336392 +g1,12504:9159941,36336392 +g1,12504:9476087,36336392 +g1,12504:9792233,36336392 +g1,12504:10108379,36336392 +g1,12504:10424525,36336392 +g1,12504:10740671,36336392 +g1,12504:11056817,36336392 +g1,12504:11372963,36336392 +g1,12504:11689109,36336392 +g1,12504:12005255,36336392 +g1,12504:12321401,36336392 +g1,12504:12637547,36336392 +g1,12504:12953693,36336392 +g1,12504:13269839,36336392 +g1,12504:13585985,36336392 +g1,12504:13902131,36336392 +g1,12504:14218277,36336392 +g1,12504:14534423,36336392 +g1,12504:14850569,36336392 +g1,12504:16431298,36336392 +g1,12504:17063590,36336392 +k1,12504:17063590,36336392:0 +h1,12504:18012027,36336392:0,0,0 +k1,12504:32583029,36336392:14571002 +g1,12504:32583029,36336392 +) +(1,12505:6630773,37002570:25952256,404226,101187 +h1,12505:6630773,37002570:0,0,0 +g1,12505:6946919,37002570 +g1,12505:7263065,37002570 +g1,12505:7579211,37002570 +g1,12505:7895357,37002570 +g1,12505:8211503,37002570 +g1,12505:8527649,37002570 +g1,12505:8843795,37002570 +g1,12505:9159941,37002570 +g1,12505:9476087,37002570 +g1,12505:9792233,37002570 +g1,12505:10108379,37002570 +g1,12505:10424525,37002570 +g1,12505:10740671,37002570 +g1,12505:11056817,37002570 +g1,12505:11372963,37002570 +g1,12505:11689109,37002570 +g1,12505:12005255,37002570 +g1,12505:12321401,37002570 +g1,12505:12637547,37002570 +g1,12505:12953693,37002570 +g1,12505:13269839,37002570 +g1,12505:13585985,37002570 +g1,12505:13902131,37002570 +g1,12505:14218277,37002570 +g1,12505:14534423,37002570 +g1,12505:14850569,37002570 +g1,12505:16747443,37002570 +g1,12505:17379735,37002570 +g1,12505:19276609,37002570 +h1,12505:19592755,37002570:0,0,0 +k1,12505:32583029,37002570:12990274 +g1,12505:32583029,37002570 +) +(1,12506:6630773,37668748:25952256,404226,76021 +h1,12506:6630773,37668748:0,0,0 +g1,12506:6946919,37668748 +g1,12506:7263065,37668748 +g1,12506:11372959,37668748 +h1,12506:11689105,37668748:0,0,0 +k1,12506:32583029,37668748:20893924 +g1,12506:32583029,37668748 +) +(1,12507:6630773,38334926:25952256,404226,107478 +h1,12507:6630773,38334926:0,0,0 +g1,12507:6946919,38334926 +g1,12507:7263065,38334926 +g1,12507:11372959,38334926 +h1,12507:11689105,38334926:0,0,0 +k1,12507:32583029,38334926:20893924 +g1,12507:32583029,38334926 +) +(1,12508:6630773,39001104:25952256,404226,107478 +h1,12508:6630773,39001104:0,0,0 +g1,12508:6946919,39001104 +g1,12508:7263065,39001104 +g1,12508:12321396,39001104 +g1,12508:12953688,39001104 +g1,12508:16747437,39001104 +g1,12508:18328166,39001104 +g1,12508:18960458,39001104 +h1,12508:19592750,39001104:0,0,0 +k1,12508:32583029,39001104:12990279 +g1,12508:32583029,39001104 +) +] +) +g1,12510:32583029,39108582 +g1,12510:6630773,39108582 +g1,12510:6630773,39108582 +g1,12510:32583029,39108582 +g1,12510:32583029,39108582 +) +h1,12510:6630773,39305190:0,0,0 +] +(1,12520:32583029,45706769:0,0,0 +g1,12520:32583029,45706769 +) +) +] +(1,12520:6630773,47279633:25952256,0,0 +h1,12520:6630773,47279633:25952256,0,0 +) +] +h1,12520:4262630,4025873:0,0,0 +] +!21586 +}238 +Input:1657:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1658:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1659:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1660:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1661:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1662:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1663:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1664:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1665:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1666:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1667:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1668:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1669:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1670:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1671:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1672:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1673:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1674:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1675:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1676:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1677:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1678:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1679:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1680:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1681:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2312 +{239 +[1,12529:4262630,47279633:28320399,43253760,0 +(1,12529:4262630,4025873:0,0,0 +[1,12529:-473657,4025873:25952256,0,0 +(1,12529:-473657,-710414:25952256,0,0 +h1,12529:-473657,-710414:0,0,0 +(1,12529:-473657,-710414:0,0,0 +(1,12529:-473657,-710414:0,0,0 +g1,12529:-473657,-710414 +(1,12529:-473657,-710414:65781,0,65781 +g1,12529:-407876,-710414 +[1,12529:-407876,-644633:0,0,0 ] ) -k1,12507:-473657,-710414:-65781 +k1,12529:-473657,-710414:-65781 ) ) -k1,12507:25478599,-710414:25952256 -g1,12507:25478599,-710414 +k1,12529:25478599,-710414:25952256 +g1,12529:25478599,-710414 ) ] ) -[1,12507:6630773,47279633:25952256,43253760,0 -[1,12507:6630773,4812305:25952256,786432,0 -(1,12507:6630773,4812305:25952256,485622,11795 -(1,12507:6630773,4812305:25952256,485622,11795 -g1,12507:3078558,4812305 -[1,12507:3078558,4812305:0,0,0 -(1,12507:3078558,2439708:0,1703936,0 -k1,12507:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12507:2537886,2439708:1179648,16384,0 +[1,12529:6630773,47279633:25952256,43253760,0 +[1,12529:6630773,4812305:25952256,786432,0 +(1,12529:6630773,4812305:25952256,513147,134348 +(1,12529:6630773,4812305:25952256,513147,134348 +g1,12529:3078558,4812305 +[1,12529:3078558,4812305:0,0,0 +(1,12529:3078558,2439708:0,1703936,0 +k1,12529:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12529:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12507:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12529:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12507:3078558,4812305:0,0,0 -(1,12507:3078558,2439708:0,1703936,0 -g1,12507:29030814,2439708 -g1,12507:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12507:36151628,1915420:16384,1179648,0 +[1,12529:3078558,4812305:0,0,0 +(1,12529:3078558,2439708:0,1703936,0 +g1,12529:29030814,2439708 +g1,12529:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12529:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12507:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12529:37855564,2439708:1179648,16384,0 ) ) -k1,12507:3078556,2439708:-34777008 +k1,12529:3078556,2439708:-34777008 ) ] -[1,12507:3078558,4812305:0,0,0 -(1,12507:3078558,49800853:0,16384,2228224 -k1,12507:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12507:2537886,49800853:1179648,16384,0 +[1,12529:3078558,4812305:0,0,0 +(1,12529:3078558,49800853:0,16384,2228224 +k1,12529:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12529:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12507:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12529:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12507:3078558,4812305:0,0,0 -(1,12507:3078558,49800853:0,16384,2228224 -g1,12507:29030814,49800853 -g1,12507:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12507:36151628,51504789:16384,1179648,0 +[1,12529:3078558,4812305:0,0,0 +(1,12529:3078558,49800853:0,16384,2228224 +g1,12529:29030814,49800853 +g1,12529:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12529:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12507:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12529:37855564,49800853:1179648,16384,0 ) ) -k1,12507:3078556,49800853:-34777008 +k1,12529:3078556,49800853:-34777008 ) ] -g1,12507:6630773,4812305 -g1,12507:6630773,4812305 -g1,12507:10347975,4812305 -k1,12507:31387651,4812305:21039676 +g1,12529:6630773,4812305 +k1,12529:25712890,4812305:17886740 +g1,12529:29057847,4812305 +g1,12529:29873114,4812305 ) ) ] -[1,12507:6630773,45706769:25952256,40108032,0 -(1,12507:6630773,45706769:25952256,40108032,0 -(1,12507:6630773,45706769:0,0,0 -g1,12507:6630773,45706769 +[1,12529:6630773,45706769:25952256,40108032,0 +(1,12529:6630773,45706769:25952256,40108032,0 +(1,12529:6630773,45706769:0,0,0 +g1,12529:6630773,45706769 ) -[1,12507:6630773,45706769:25952256,40108032,0 -v1,12491:6630773,6254097:0,393216,0 -(1,12491:6630773,7235371:25952256,1374490,196608 -g1,12491:6630773,7235371 -g1,12491:6630773,7235371 -g1,12491:6434165,7235371 -(1,12491:6434165,7235371:0,1374490,196608 -r1,12491:32779637,7235371:26345472,1571098,196608 -k1,12491:6434165,7235371:-26345472 +[1,12529:6630773,45706769:25952256,40108032,0 +(1,12513:6630773,14661426:25952256,9062689,0 +k1,12513:10523651,14661426:3892878 +h1,12512:10523651,14661426:0,0,0 +(1,12512:10523651,14661426:18166500,9062689,0 +(1,12512:10523651,14661426:18167381,9062712,0 +(1,12512:10523651,14661426:18167381,9062712,0 +(1,12512:10523651,14661426:0,9062712,0 +(1,12512:10523651,14661426:0,14155776,0 +(1,12512:10523651,14661426:28377088,14155776,0 ) -(1,12491:6434165,7235371:26345472,1374490,196608 -[1,12491:6630773,7235371:25952256,1177882,0 -(1,12488:6630773,6461715:25952256,404226,107478 -h1,12488:6630773,6461715:0,0,0 -g1,12488:6946919,6461715 -g1,12488:7263065,6461715 -g1,12488:11372959,6461715 -h1,12488:11689105,6461715:0,0,0 -k1,12488:32583029,6461715:20893924 -g1,12488:32583029,6461715 -) -(1,12489:6630773,7127893:25952256,404226,107478 -h1,12489:6630773,7127893:0,0,0 -g1,12489:6946919,7127893 -g1,12489:7263065,7127893 -g1,12489:12321396,7127893 -g1,12489:12953688,7127893 -g1,12489:16747437,7127893 -g1,12489:18328166,7127893 -g1,12489:18960458,7127893 -h1,12489:19592750,7127893:0,0,0 -k1,12489:32583029,7127893:12990279 -g1,12489:32583029,7127893 -) -] -) -g1,12491:32583029,7235371 -g1,12491:6630773,7235371 -g1,12491:6630773,7235371 -g1,12491:32583029,7235371 -g1,12491:32583029,7235371 -) -h1,12491:6630773,7431979:0,0,0 -(1,12494:6630773,17078090:25952256,9062689,0 -k1,12494:10523651,17078090:3892878 -h1,12493:10523651,17078090:0,0,0 -(1,12493:10523651,17078090:18166500,9062689,0 -(1,12493:10523651,17078090:18167381,9062712,0 -(1,12493:10523651,17078090:18167381,9062712,0 -(1,12493:10523651,17078090:0,9062712,0 -(1,12493:10523651,17078090:0,14155776,0 -(1,12493:10523651,17078090:28377088,14155776,0 -) -k1,12493:10523651,17078090:-28377088 -) -) -g1,12493:28691032,17078090 -) -) -) -g1,12494:28690151,17078090 -k1,12494:32583029,17078090:3892878 -) -(1,12502:6630773,17919578:25952256,505283,134348 -h1,12501:6630773,17919578:983040,0,0 -k1,12501:8405966,17919578:164318 -k1,12501:11409960,17919578:164319 -(1,12501:11409960,17919578:0,452978,122846 -r1,12501:13175073,17919578:1765113,575824,122846 -k1,12501:11409960,17919578:-1765113 -) -(1,12501:11409960,17919578:1765113,452978,122846 -k1,12501:11409960,17919578:3277 -h1,12501:13171796,17919578:0,411205,112570 -) -k1,12501:13339391,17919578:164318 -k1,12501:14695154,17919578:164318 -(1,12501:14695154,17919578:0,452978,122846 -r1,12501:16460267,17919578:1765113,575824,122846 -k1,12501:14695154,17919578:-1765113 -) -(1,12501:14695154,17919578:1765113,452978,122846 -k1,12501:14695154,17919578:3277 -h1,12501:16456990,17919578:0,411205,112570 -) -k1,12501:16624586,17919578:164319 -k1,12501:17980349,17919578:164318 -(1,12501:17980349,17919578:0,452978,122846 -r1,12501:19745462,17919578:1765113,575824,122846 -k1,12501:17980349,17919578:-1765113 -) -(1,12501:17980349,17919578:1765113,452978,122846 -k1,12501:17980349,17919578:3277 -h1,12501:19742185,17919578:0,411205,112570 -) -k1,12501:19909780,17919578:164318 -k1,12501:21178381,17919578:164319 -k1,12501:22090465,17919578:164318 -k1,12501:23768009,17919578:164318 -k1,12501:24583756,17919578:164319 -k1,12501:26647963,17919578:164318 -k1,12501:27831366,17919578:164318 -k1,12501:29221864,17919578:164319 -k1,12501:30577627,17919578:164318 -k1,12501:32583029,17919578:0 -) -(1,12502:6630773,18761066:25952256,513147,126483 -k1,12501:7576470,18761066:157299 -k1,12501:10521670,18761066:157298 -k1,12501:11875656,18761066:157299 -k1,12501:14298535,18761066:157299 -k1,12501:16136176,18761066:157298 -k1,12501:16952767,18761066:157299 -k1,12501:18080654,18761066:157299 -k1,12501:19185603,18761066:157298 -k1,12501:20809598,18761066:157299 -(1,12501:20809598,18761066:0,452978,122846 -r1,12501:22574711,18761066:1765113,575824,122846 -k1,12501:20809598,18761066:-1765113 -) -(1,12501:20809598,18761066:1765113,452978,122846 -k1,12501:20809598,18761066:3277 -h1,12501:22571434,18761066:0,411205,112570 -) -k1,12501:22732010,18761066:157299 -k1,12501:24080754,18761066:157299 -(1,12501:24080754,18761066:0,452978,122846 -r1,12501:25845867,18761066:1765113,575824,122846 -k1,12501:24080754,18761066:-1765113 -) -(1,12501:24080754,18761066:1765113,452978,122846 -k1,12501:24080754,18761066:3277 -h1,12501:25842590,18761066:0,411205,112570 -) -k1,12501:26003165,18761066:157298 -k1,12501:27425309,18761066:157299 -k1,12501:28601693,18761066:157299 -k1,12501:30747353,18761066:157298 -k1,12501:31563944,18761066:157299 -k1,12501:32583029,18761066:0 -) -(1,12502:6630773,19602554:25952256,513147,134348 -k1,12501:8077626,19602554:220674 -k1,12501:8911061,19602554:220673 -k1,12501:10150820,19602554:220674 -k1,12501:13132525,19602554:220673 -(1,12501:13132525,19602554:0,414482,115847 -r1,12501:13490791,19602554:358266,530329,115847 -k1,12501:13132525,19602554:-358266 -) -(1,12501:13132525,19602554:358266,414482,115847 -k1,12501:13132525,19602554:3277 -h1,12501:13487514,19602554:0,411205,112570 -) -k1,12501:13711465,19602554:220674 -k1,12501:15123584,19602554:220674 -(1,12501:15123584,19602554:0,414482,115847 -r1,12501:15481850,19602554:358266,530329,115847 -k1,12501:15123584,19602554:-358266 -) -(1,12501:15123584,19602554:358266,414482,115847 -k1,12501:15123584,19602554:3277 -h1,12501:15478573,19602554:0,411205,112570 -) -k1,12501:15702523,19602554:220673 -k1,12501:19835041,19602554:220674 -k1,12501:23102483,19602554:220673 -k1,12501:24514602,19602554:220674 -k1,12501:28651706,19602554:220673 -k1,12501:29820031,19602554:220674 -k1,12502:32583029,19602554:0 -) -(1,12502:6630773,20444042:25952256,513147,126483 -k1,12501:8104618,20444042:206379 -k1,12501:9847162,20444042:206380 -k1,12501:10704969,20444042:206379 -k1,12501:11930433,20444042:206379 -k1,12501:13536662,20444042:206380 -k1,12501:14809312,20444042:206379 -k1,12501:16034776,20444042:206379 -k1,12501:17692123,20444042:206380 -k1,12501:19279346,20444042:206379 -k1,12501:20017222,20444042:206379 -k1,12501:23432900,20444042:206380 -k1,12501:25337317,20444042:206379 -(1,12501:25337317,20444042:0,452978,122846 -r1,12501:27102430,20444042:1765113,575824,122846 -k1,12501:25337317,20444042:-1765113 -) -(1,12501:25337317,20444042:1765113,452978,122846 -k1,12501:25337317,20444042:3277 -h1,12501:27099153,20444042:0,411205,112570 -) -k1,12501:27308809,20444042:206379 -k1,12501:28046686,20444042:206380 -k1,12501:31015408,20444042:206379 -k1,12501:32583029,20444042:0 -) -(1,12502:6630773,21285530:25952256,513147,134348 -k1,12501:8459977,21285530:235368 -k1,12501:10806915,21285530:235368 -k1,12501:12901539,21285530:235368 -k1,12501:14579353,21285530:235367 -k1,12501:15785309,21285530:235368 -k1,12501:17488683,21285530:235368 -k1,12501:18743136,21285530:235368 -k1,12501:20492386,21285530:235368 -k1,12501:21801889,21285530:235368 -k1,12501:22720142,21285530:235368 -k1,12501:24880301,21285530:235367 -k1,12501:26307114,21285530:235368 -k1,12501:28553127,21285530:235368 -k1,12501:31140582,21285530:235368 -k1,12501:32583029,21285530:0 -) -(1,12502:6630773,22127018:25952256,513147,134348 -k1,12501:7922971,22127018:147939 -k1,12501:9606418,22127018:147938 -k1,12501:10437242,22127018:147939 -k1,12501:11420765,22127018:147939 -k1,12501:12962655,22127018:147939 -k1,12501:15435155,22127018:147938 -k1,12501:16234522,22127018:147939 -k1,12501:17170859,22127018:147939 -(1,12501:17170859,22127018:0,414482,115847 -r1,12501:17529125,22127018:358266,530329,115847 -k1,12501:17170859,22127018:-358266 -) -(1,12501:17170859,22127018:358266,414482,115847 -k1,12501:17170859,22127018:3277 -h1,12501:17525848,22127018:0,411205,112570 -) -k1,12501:17677064,22127018:147939 -k1,12501:19016447,22127018:147938 -(1,12501:19016447,22127018:0,414482,115847 -r1,12501:19374713,22127018:358266,530329,115847 -k1,12501:19016447,22127018:-358266 -) -(1,12501:19016447,22127018:358266,414482,115847 -k1,12501:19016447,22127018:3277 -h1,12501:19371436,22127018:0,411205,112570 -) -k1,12501:19522652,22127018:147939 -k1,12501:23582435,22127018:147939 -k1,12501:24217911,22127018:147888 -k1,12501:26046192,22127018:147938 -k1,12501:26853423,22127018:147939 -k1,12501:27399821,22127018:147939 -k1,12501:28230645,22127018:147939 -k1,12501:28777042,22127018:147938 -k1,12501:30189826,22127018:147939 -k1,12501:31356850,22127018:147939 -k1,12501:32583029,22127018:0 -) -(1,12502:6630773,22968506:25952256,513147,134348 -k1,12501:7551537,22968506:195936 -k1,12501:9031978,22968506:195935 -k1,12501:10016312,22968506:195936 -k1,12501:11701880,22968506:195935 -k1,12501:12429313,22968506:195936 -k1,12501:13238010,22968506:195935 -k1,12501:14453031,22968506:195936 -k1,12501:17409999,22968506:195936 -k1,12501:21187477,22968506:195935 -k1,12501:23494983,22968506:195936 -k1,12501:26056768,22968506:195935 -k1,12501:27271789,22968506:195936 -k1,12501:29248337,22968506:195935 -$1,12501:29248337,22968506 -k1,12501:29756032,22968506:109236 -k1,12501:30520628,22968506:109236 -$1,12501:30919087,22968506 -k1,12501:31115023,22968506:195936 -k1,12501:32583029,22968506:0 -) -(1,12502:6630773,23809994:25952256,513147,134348 -k1,12501:7826384,23809994:176526 -k1,12501:9229088,23809994:176525 -k1,12501:10872310,23809994:176526 -k1,12501:13265264,23809994:176526 -k1,12501:15209295,23809994:176525 -k1,12501:18230084,23809994:176526 -k1,12501:19605263,23809994:176525 -k1,12501:21517182,23809994:176526 -k1,12501:23311792,23809994:176526 -k1,12501:25342986,23809994:176525 -k1,12501:26328882,23809994:176526 -k1,12501:27524493,23809994:176526 -k1,12501:29714284,23809994:176525 -k1,12501:30573695,23809994:176526 -k1,12501:32583029,23809994:0 -) -(1,12502:6630773,24651482:25952256,513147,134348 -k1,12501:7577768,24651482:287703 -k1,12501:8884556,24651482:287703 -k1,12501:10398438,24651482:287703 -k1,12501:12373693,24651482:287703 -k1,12501:14806389,24651482:287703 -k1,12501:17758131,24651482:287703 -k1,12501:18705126,24651482:287703 -k1,12501:21821362,24651482:287703 -k1,12501:23824798,24651482:287703 -k1,12501:26742461,24651482:287703 -k1,12501:30847636,24651482:287703 -k1,12501:32583029,24651482:0 -) -(1,12502:6630773,25492970:25952256,513147,134348 -k1,12501:9835092,25492970:229640 -k1,12501:13152788,25492970:229640 -k1,12501:14330078,25492970:229639 -k1,12501:17923681,25492970:229640 -(1,12501:17923681,25492970:0,459977,115847 -r1,12501:20040506,25492970:2116825,575824,115847 -k1,12501:17923681,25492970:-2116825 -) -(1,12501:17923681,25492970:2116825,459977,115847 -k1,12501:17923681,25492970:3277 -h1,12501:20037229,25492970:0,411205,112570 -) -k1,12501:20443816,25492970:229640 -(1,12501:20443816,25492970:0,452978,115847 -r1,12501:23264065,25492970:2820249,568825,115847 -k1,12501:20443816,25492970:-2820249 -) -(1,12501:20443816,25492970:2820249,452978,115847 -k1,12501:20443816,25492970:3277 -h1,12501:23260788,25492970:0,411205,112570 -) -k1,12501:23667375,25492970:229640 -(1,12501:23667375,25492970:0,452978,122846 -r1,12501:26135912,25492970:2468537,575824,122846 -k1,12501:23667375,25492970:-2468537 -) -(1,12501:23667375,25492970:2468537,452978,122846 -k1,12501:23667375,25492970:3277 -h1,12501:26132635,25492970:0,411205,112570 -) -k1,12501:26539221,25492970:229639 -(1,12501:26539221,25492970:0,452978,115847 -r1,12501:29359470,25492970:2820249,568825,115847 -k1,12501:26539221,25492970:-2820249 -) -(1,12501:26539221,25492970:2820249,452978,115847 -k1,12501:26539221,25492970:3277 -h1,12501:29356193,25492970:0,411205,112570 -) -k1,12501:29762780,25492970:229640 -(1,12501:29762780,25492970:0,452978,115847 -r1,12501:32583029,25492970:2820249,568825,115847 -k1,12501:29762780,25492970:-2820249 -) -(1,12501:29762780,25492970:2820249,452978,115847 -k1,12501:29762780,25492970:3277 -h1,12501:32579752,25492970:0,411205,112570 -) -k1,12501:32583029,25492970:0 -) -(1,12502:6630773,26334458:25952256,505283,134348 -k1,12501:7983323,26334458:161105 -(1,12501:7983323,26334458:0,452978,115847 -r1,12501:9748436,26334458:1765113,568825,115847 -k1,12501:7983323,26334458:-1765113 -) -(1,12501:7983323,26334458:1765113,452978,115847 -k1,12501:7983323,26334458:3277 -h1,12501:9745159,26334458:0,411205,112570 -) -k1,12501:10083211,26334458:161105 -k1,12501:11435760,26334458:161104 -k1,12501:12769304,26334458:161105 -k1,12501:15124554,26334458:161105 -k1,12501:18979923,26334458:161105 -(1,12501:18979923,26334458:0,452978,115847 -r1,12501:21800172,26334458:2820249,568825,115847 -k1,12501:18979923,26334458:-2820249 -) -(1,12501:18979923,26334458:2820249,452978,115847 -k1,12501:18979923,26334458:3277 -h1,12501:21796895,26334458:0,411205,112570 -) -k1,12501:21961277,26334458:161105 -k1,12501:23313826,26334458:161104 -(1,12501:23313826,26334458:0,452978,115847 -r1,12501:26485786,26334458:3171960,568825,115847 -k1,12501:23313826,26334458:-3171960 -) -(1,12501:23313826,26334458:3171960,452978,115847 -k1,12501:23313826,26334458:3277 -h1,12501:26482509,26334458:0,411205,112570 -) -k1,12501:26820561,26334458:161105 -k1,12501:28266172,26334458:161105 -k1,12501:32583029,26334458:0 -) -(1,12502:6630773,27175946:25952256,505283,134348 -g1,12501:8192496,27175946 -g1,12501:10246394,27175946 -g1,12501:11254993,27175946 -g1,12501:12473307,27175946 -g1,12501:15286767,27175946 -g1,12501:16102034,27175946 -g1,12501:17320348,27175946 -g1,12501:20044024,27175946 -k1,12502:32583029,27175946:11017914 -g1,12502:32583029,27175946 -) -(1,12504:6630773,28017434:25952256,513147,126483 -h1,12503:6630773,28017434:983040,0,0 -k1,12503:8443861,28017434:202213 -k1,12503:9665159,28017434:202213 -k1,12503:11234452,28017434:202212 -k1,12503:12103821,28017434:202213 -(1,12503:12103821,28017434:0,452978,122846 -r1,12503:16330917,28017434:4227096,575824,122846 -k1,12503:12103821,28017434:-4227096 -) -(1,12503:12103821,28017434:4227096,452978,122846 -k1,12503:12103821,28017434:3277 -h1,12503:16327640,28017434:0,411205,112570 -) -k1,12503:16533130,28017434:202213 -k1,12503:17754428,28017434:202213 -k1,12503:19182820,28017434:202213 -k1,12503:19916529,28017434:202212 -k1,12503:22912542,28017434:202213 -k1,12503:23730793,28017434:202213 -k1,12503:24288866,28017434:202213 -k1,12503:25824737,28017434:202213 -k1,12503:27912420,28017434:202212 -k1,12503:29948330,28017434:202213 -k1,12503:31169628,28017434:202213 -(1,12503:31169628,28017434:0,459977,115847 -r1,12503:32583029,28017434:1413401,575824,115847 -k1,12503:31169628,28017434:-1413401 -) -(1,12503:31169628,28017434:1413401,459977,115847 -k1,12503:31169628,28017434:3277 -h1,12503:32579752,28017434:0,411205,112570 -) -k1,12503:32583029,28017434:0 -) -(1,12504:6630773,28858922:25952256,505283,134348 -k1,12503:9567179,28858922:149160 -k1,12503:10907783,28858922:149159 -k1,12503:12739908,28858922:149160 -k1,12503:16116060,28858922:149159 -k1,12503:19876254,28858922:149160 -k1,12503:23322530,28858922:149160 -k1,12503:25950261,28858922:149159 -k1,12503:26712183,28858922:149160 -k1,12503:28359495,28858922:149159 -h1,12503:29554872,28858922:0,0,0 -k1,12503:29911126,28858922:149160 -k1,12503:32583029,28858922:0 -) -(1,12504:6630773,29700410:25952256,513147,126483 -k1,12503:9103041,29700410:184406 -k1,12503:9946739,29700410:184406 -k1,12503:11150231,29700410:184407 -k1,12503:13203724,29700410:184406 -k1,12503:14579575,29700410:184406 -k1,12503:16032758,29700410:184406 -k1,12503:16876457,29700410:184407 -k1,12503:18079948,29700410:184406 -k1,12503:19598012,29700410:184406 -k1,12503:22717120,29700410:184406 -(1,12503:22717120,29700410:0,452978,122846 -r1,12503:26944216,29700410:4227096,575824,122846 -k1,12503:22717120,29700410:-4227096 -) -(1,12503:22717120,29700410:4227096,452978,122846 -k1,12503:22717120,29700410:3277 -h1,12503:26940939,29700410:0,411205,112570 -) -k1,12503:27128623,29700410:184407 -k1,12503:28805939,29700410:184406 -k1,12503:30056616,29700410:184406 -k1,12503:32583029,29700410:0 -) -(1,12504:6630773,30541898:25952256,505283,122846 -g1,12503:9393115,30541898 -g1,12503:10986295,30541898 -g1,12503:12204609,30541898 -(1,12503:12204609,30541898:0,452978,122846 -r1,12503:13969722,30541898:1765113,575824,122846 -k1,12503:12204609,30541898:-1765113 -) -(1,12503:12204609,30541898:1765113,452978,122846 -k1,12503:12204609,30541898:3277 -h1,12503:13966445,30541898:0,411205,112570 -) -g1,12503:14168951,30541898 -k1,12504:32583029,30541898:15396145 -g1,12504:32583029,30541898 -) -v1,12506:6630773,31901272:0,393216,0 -(1,12507:6630773,45116945:25952256,13608889,589824 -g1,12507:6630773,45116945 -(1,12507:6630773,45116945:25952256,13608889,589824 -(1,12507:6630773,45706769:25952256,14198713,0 -[1,12507:6630773,45706769:25952256,14198713,0 -(1,12507:6630773,45706769:25952256,14172499,0 -r1,12507:6656987,45706769:26214,14172499,0 -[1,12507:6656987,45706769:25899828,14172499,0 -(1,12507:6656987,45116945:25899828,12992851,0 -[1,12507:7246811,45116945:24720180,12992851,0 -(1,12507:7246811,33209630:24720180,1085536,298548 -(1,12506:7246811,33209630:0,1085536,298548 -r1,12507:8753226,33209630:1506415,1384084,298548 -k1,12506:7246811,33209630:-1506415 -) -(1,12506:7246811,33209630:1506415,1085536,298548 -) -k1,12506:8980759,33209630:227533 -k1,12506:10461996,33209630:227533 -k1,12506:12869911,33209630:227532 -k1,12506:13845210,33209630:227533 -k1,12506:15941174,33209630:227533 -k1,12506:17453213,33209630:227533 -k1,12506:18095560,33209630:227504 -k1,12506:19514538,33209630:227533 -k1,12506:22570604,33209630:227533 -k1,12506:25324550,33209630:227533 -k1,12506:26571167,33209630:227532 -k1,12506:27891185,33209630:227533 -k1,12506:28778010,33209630:227533 -k1,12506:31966991,33209630:0 -) -(1,12507:7246811,34051118:24720180,513147,134348 -k1,12506:9008097,34051118:267720 -k1,12506:9961980,34051118:267721 -k1,12506:11893004,34051118:267720 -k1,12506:15135404,34051118:267721 -k1,12506:18634704,34051118:267720 -k1,12506:19518462,34051118:267720 -k1,12506:22155965,34051118:267721 -k1,12506:22901442,34051118:267720 -k1,12506:24627994,34051118:267721 -k1,12506:26804778,34051118:267720 -k1,12506:27755383,34051118:267720 -k1,12506:29110277,34051118:267652 -k1,12506:31966991,34051118:0 -) -(1,12507:7246811,34892606:24720180,505283,126483 -k1,12506:8958721,34892606:203271 -k1,12506:10428147,34892606:203270 -k1,12506:12065346,34892606:203271 -k1,12506:13439090,34892606:203271 -k1,12506:14746643,34892606:203271 -k1,12506:16336000,34892606:203271 -k1,12506:18394594,34892606:203270 -k1,12506:20630136,34892606:203271 -k1,12506:22024852,34892606:203271 -k1,12506:24352800,34892606:203271 -k1,12506:26533947,34892606:203270 -k1,12506:29378974,34892606:203271 -k1,12506:31966991,34892606:0 -) -(1,12507:7246811,35734094:24720180,513147,126483 -k1,12506:8675977,35734094:237721 -k1,12506:10293886,35734094:237721 -k1,12506:11956360,35734094:237721 -k1,12506:13854763,35734094:237721 -k1,12506:16901357,35734094:237721 -k1,12506:17755116,35734094:237721 -k1,12506:19837020,35734094:237721 -k1,12506:20540702,35734094:237721 -k1,12506:21134283,35734094:237721 -k1,12506:23883999,35734094:237721 -k1,12506:25452756,35734094:237721 -k1,12506:26221974,35734094:237721 -k1,12506:28604033,35734094:237721 -k1,12506:30033199,35734094:237721 -k1,12506:31041623,35734094:237721 -k1,12507:31966991,35734094:0 -) -(1,12507:7246811,36575582:24720180,513147,134348 -k1,12506:9680163,36575582:225444 -k1,12506:12806886,36575582:225444 -k1,12506:14178554,36575582:225443 -k1,12506:16067302,36575582:225444 -k1,12506:16824243,36575582:225444 -k1,12506:17665725,36575582:225444 -k1,12506:18983653,36575582:225443 -k1,12506:19970625,36575582:225444 -k1,12506:21215154,36575582:225444 -k1,12506:24494576,36575582:225444 -k1,12506:27139609,36575582:225444 -k1,12506:28855341,36575582:225443 -k1,12506:29546746,36575582:225444 -k1,12506:31435494,36575582:225444 -k1,12506:31966991,36575582:0 -) -(1,12507:7246811,37417070:24720180,513147,126483 -k1,12506:8112148,37417070:249299 -k1,12506:9627603,37417070:249299 -k1,12506:11103081,37417070:249299 -k1,12506:11883877,37417070:249299 -k1,12506:13199447,37417070:249299 -k1,12506:14899713,37417070:249299 -k1,12506:17818293,37417070:249299 -k1,12506:20110349,37417070:249299 -k1,12506:21378733,37417070:249299 -k1,12506:23281505,37417070:249299 -k1,12506:24861840,37417070:249299 -k1,12506:25642636,37417070:249299 -k1,12506:28849574,37417070:249299 -k1,12506:29785035,37417070:249299 -k1,12506:31501030,37417070:249299 -k1,12506:31966991,37417070:0 -) -(1,12507:7246811,38258558:24720180,513147,134348 -k1,12506:8479762,38258558:213866 -k1,12506:11668307,38258558:213866 -k1,12506:14826705,38258558:213865 -k1,12506:16032131,38258558:213866 -k1,12506:20448821,38258558:213866 -k1,12506:21610338,38258558:213866 -k1,12506:23575980,38258558:213865 -k1,12506:27136114,38258558:213866 -k1,12506:28951680,38258558:213866 -k1,12506:31966991,38258558:0 -) -(1,12507:7246811,39100046:24720180,513147,134348 -k1,12506:9134299,39100046:226150 -k1,12506:11886861,39100046:226149 -k1,12506:12725773,39100046:226150 -k1,12506:14553622,39100046:226149 -k1,12506:15135632,39100046:226150 -k1,12506:17078170,39100046:226150 -k1,12506:19790100,39100046:226149 -k1,12506:20675542,39100046:226150 -k1,12506:24247960,39100046:226150 -k1,12506:25101944,39100046:226149 -k1,12506:28161215,39100046:226150 -k1,12506:29544074,39100046:226149 -k1,12506:30874506,39100046:226150 -k1,12506:31966991,39100046:0 -) -(1,12507:7246811,39941534:24720180,505283,134348 -k1,12506:8668823,39941534:218771 -k1,12506:12525497,39941534:218771 -k1,12506:13395696,39941534:218771 -k1,12506:15089682,39941534:218771 -k1,12506:17152636,39941534:218771 -k1,12506:18838104,39941534:218772 -k1,12506:20792268,39941534:218771 -k1,12506:22713009,39941534:218771 -k1,12506:26019181,39941534:218771 -k1,12506:27429397,39941534:218771 -k1,12506:30820766,39941534:218771 -k1,12506:31966991,39941534:0 -) -(1,12507:7246811,40783022:24720180,513147,134348 -k1,12506:9955545,40783022:197394 -k1,12506:11546891,40783022:197395 -k1,12506:13252924,40783022:197394 -k1,12506:16675345,40783022:197394 -k1,12506:19514495,40783022:197394 -k1,12506:21666174,40783022:197395 -k1,12506:22479606,40783022:197394 -k1,12506:23696085,40783022:197394 -k1,12506:25546953,40783022:197395 -k1,12506:27773342,40783022:197394 -k1,12506:31966991,40783022:0 -) -(1,12507:7246811,41624510:24720180,513147,126483 -k1,12506:8535732,41624510:269836 -k1,12506:11331981,41624510:269836 -k1,12506:12549468,41624510:269836 -k1,12506:14480642,41624510:269836 -k1,12506:15941923,41624510:269836 -k1,12506:20436864,41624510:269835 -k1,12506:23681379,41624510:269836 -k1,12506:25216060,41624510:269836 -k1,12506:26101934,41624510:269836 -k1,12506:26786542,41624510:269765 -k1,12506:27587875,41624510:269836 -k1,12506:31966991,41624510:0 -) -(1,12507:7246811,42465998:24720180,513147,134348 -k1,12506:11079144,42465998:267830 -k1,12506:12543660,42465998:267829 -k1,12506:14142526,42465998:267830 -k1,12506:17311634,42465998:267829 -k1,12506:19092690,42465998:267830 -k1,12506:20122047,42465998:267829 -k1,12506:20804651,42465998:267761 -k1,12506:21834009,42465998:267830 -k1,12506:24367418,42465998:267829 -k1,12506:27337297,42465998:267830 -k1,12506:28414496,42465998:267829 -k1,12506:29701411,42465998:267830 -k1,12506:31966991,42465998:0 -) -(1,12507:7246811,43307486:24720180,513147,134348 -k1,12506:9332058,43307486:243685 -k1,12506:12087737,43307486:243684 -k1,12506:12990714,43307486:243685 -k1,12506:14253484,43307486:243685 -k1,12506:17551146,43307486:243684 -k1,12506:20214420,43307486:243685 -k1,12506:22343576,43307486:243685 -k1,12506:23691542,43307486:243684 -k1,12506:25221043,43307486:243685 -k1,12506:26793798,43307486:243685 -k1,12506:27688910,43307486:243684 -k1,12506:30428861,43307486:243685 -k1,12507:31966991,43307486:0 -) -(1,12507:7246811,44148974:24720180,505283,134348 -k1,12506:8512748,44148974:240954 -k1,12506:9405130,44148974:240954 -k1,12506:10665169,44148974:240954 -k1,12506:13326368,44148974:240954 -k1,12506:14250207,44148974:240954 -k1,12506:16484111,44148974:240954 -k1,12506:20030045,44148974:240953 -k1,12506:22009014,44148974:240954 -k1,12506:24552248,44148974:240954 -k1,12506:27316338,44148974:240954 -k1,12506:28576377,44148974:240954 -k1,12506:30470804,44148974:240954 -k1,12506:31966991,44148974:0 -) -(1,12507:7246811,44990462:24720180,513147,126483 -k1,12506:8320104,44990462:263923 -k1,12506:8939887,44990462:263923 -k1,12506:11966153,44990462:263923 -k1,12506:15306336,44990462:263923 -k1,12506:17137880,44990462:263923 -k1,12506:18420888,44990462:263923 -k1,12506:19841521,44990462:263923 -k1,12506:22024337,44990462:263922 -k1,12506:22644120,44990462:263923 -k1,12506:24739119,44990462:263923 -k1,12506:26210215,44990462:263923 -k1,12506:28997929,44990462:263923 -k1,12506:30405455,44990462:263923 -k1,12506:31435494,44990462:263923 -k1,12506:31966991,44990462:0 -) -] -) -] -r1,12507:32583029,45706769:26214,14172499,0 -) -] -) -) -g1,12507:32583029,45116945 -) -] -(1,12507:32583029,45706769:0,0,0 -g1,12507:32583029,45706769 -) -) -] -(1,12507:6630773,47279633:25952256,0,0 -h1,12507:6630773,47279633:25952256,0,0 -) -] -h1,12507:4262630,4025873:0,0,0 -] -!27259 -}238 -Input:1683:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1684:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1685:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1686:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1687:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1688:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1689:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1690:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1691:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1692:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1693:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1694:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1695:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1696:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1697:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1698:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1699:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1474 -{239 -[1,12565:4262630,47279633:28320399,43253760,0 -(1,12565:4262630,4025873:0,0,0 -[1,12565:-473657,4025873:25952256,0,0 -(1,12565:-473657,-710414:25952256,0,0 -h1,12565:-473657,-710414:0,0,0 -(1,12565:-473657,-710414:0,0,0 -(1,12565:-473657,-710414:0,0,0 -g1,12565:-473657,-710414 -(1,12565:-473657,-710414:65781,0,65781 -g1,12565:-407876,-710414 -[1,12565:-407876,-644633:0,0,0 -] +k1,12512:10523651,14661426:-28377088 ) -k1,12565:-473657,-710414:-65781 ) +g1,12512:28691032,14661426 ) -k1,12565:25478599,-710414:25952256 -g1,12565:25478599,-710414 ) -] ) -[1,12565:6630773,47279633:25952256,43253760,0 -[1,12565:6630773,4812305:25952256,786432,0 -(1,12565:6630773,4812305:25952256,513147,134348 -(1,12565:6630773,4812305:25952256,513147,134348 -g1,12565:3078558,4812305 -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,2439708:0,1703936,0 -k1,12565:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12565:2537886,2439708:1179648,16384,0 +g1,12513:28690151,14661426 +k1,12513:32583029,14661426:3892878 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12565:3078558,1915420:16384,1179648,0 +(1,12521:6630773,15502914:25952256,505283,134348 +h1,12520:6630773,15502914:983040,0,0 +k1,12520:8405966,15502914:164318 +k1,12520:11409960,15502914:164319 +(1,12520:11409960,15502914:0,452978,122846 +r1,12520:13175073,15502914:1765113,575824,122846 +k1,12520:11409960,15502914:-1765113 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +(1,12520:11409960,15502914:1765113,452978,122846 +k1,12520:11409960,15502914:3277 +h1,12520:13171796,15502914:0,411205,112570 ) +k1,12520:13339391,15502914:164318 +k1,12520:14695154,15502914:164318 +(1,12520:14695154,15502914:0,452978,122846 +r1,12520:16460267,15502914:1765113,575824,122846 +k1,12520:14695154,15502914:-1765113 +) +(1,12520:14695154,15502914:1765113,452978,122846 +k1,12520:14695154,15502914:3277 +h1,12520:16456990,15502914:0,411205,112570 +) +k1,12520:16624586,15502914:164319 +k1,12520:17980349,15502914:164318 +(1,12520:17980349,15502914:0,452978,122846 +r1,12520:19745462,15502914:1765113,575824,122846 +k1,12520:17980349,15502914:-1765113 +) +(1,12520:17980349,15502914:1765113,452978,122846 +k1,12520:17980349,15502914:3277 +h1,12520:19742185,15502914:0,411205,112570 +) +k1,12520:19909780,15502914:164318 +k1,12520:21178381,15502914:164319 +k1,12520:22090465,15502914:164318 +k1,12520:23768009,15502914:164318 +k1,12520:24583756,15502914:164319 +k1,12520:26647963,15502914:164318 +k1,12520:27831366,15502914:164318 +k1,12520:29221864,15502914:164319 +k1,12520:30577627,15502914:164318 +k1,12520:32583029,15502914:0 +) +(1,12521:6630773,16344402:25952256,513147,126483 +k1,12520:7576470,16344402:157299 +k1,12520:10521670,16344402:157298 +k1,12520:11875656,16344402:157299 +k1,12520:14298535,16344402:157299 +k1,12520:16136176,16344402:157298 +k1,12520:16952767,16344402:157299 +k1,12520:18080654,16344402:157299 +k1,12520:19185603,16344402:157298 +k1,12520:20809598,16344402:157299 +(1,12520:20809598,16344402:0,452978,122846 +r1,12520:22574711,16344402:1765113,575824,122846 +k1,12520:20809598,16344402:-1765113 +) +(1,12520:20809598,16344402:1765113,452978,122846 +k1,12520:20809598,16344402:3277 +h1,12520:22571434,16344402:0,411205,112570 +) +k1,12520:22732010,16344402:157299 +k1,12520:24080754,16344402:157299 +(1,12520:24080754,16344402:0,452978,122846 +r1,12520:25845867,16344402:1765113,575824,122846 +k1,12520:24080754,16344402:-1765113 +) +(1,12520:24080754,16344402:1765113,452978,122846 +k1,12520:24080754,16344402:3277 +h1,12520:25842590,16344402:0,411205,112570 +) +k1,12520:26003165,16344402:157298 +k1,12520:27425309,16344402:157299 +k1,12520:28601693,16344402:157299 +k1,12520:30747353,16344402:157298 +k1,12520:31563944,16344402:157299 +k1,12520:32583029,16344402:0 +) +(1,12521:6630773,17185890:25952256,513147,134348 +k1,12520:8077626,17185890:220674 +k1,12520:8911061,17185890:220673 +k1,12520:10150820,17185890:220674 +k1,12520:13132525,17185890:220673 +(1,12520:13132525,17185890:0,414482,115847 +r1,12520:13490791,17185890:358266,530329,115847 +k1,12520:13132525,17185890:-358266 +) +(1,12520:13132525,17185890:358266,414482,115847 +k1,12520:13132525,17185890:3277 +h1,12520:13487514,17185890:0,411205,112570 +) +k1,12520:13711465,17185890:220674 +k1,12520:15123584,17185890:220674 +(1,12520:15123584,17185890:0,414482,115847 +r1,12520:15481850,17185890:358266,530329,115847 +k1,12520:15123584,17185890:-358266 +) +(1,12520:15123584,17185890:358266,414482,115847 +k1,12520:15123584,17185890:3277 +h1,12520:15478573,17185890:0,411205,112570 +) +k1,12520:15702523,17185890:220673 +k1,12520:19835041,17185890:220674 +k1,12520:23102483,17185890:220673 +k1,12520:24514602,17185890:220674 +k1,12520:28651706,17185890:220673 +k1,12520:29820031,17185890:220674 +k1,12521:32583029,17185890:0 +) +(1,12521:6630773,18027378:25952256,513147,126483 +k1,12520:8104618,18027378:206379 +k1,12520:9847162,18027378:206380 +k1,12520:10704969,18027378:206379 +k1,12520:11930433,18027378:206379 +k1,12520:13536662,18027378:206380 +k1,12520:14809312,18027378:206379 +k1,12520:16034776,18027378:206379 +k1,12520:17692123,18027378:206380 +k1,12520:19279346,18027378:206379 +k1,12520:20017222,18027378:206379 +k1,12520:23432900,18027378:206380 +k1,12520:25337317,18027378:206379 +(1,12520:25337317,18027378:0,452978,122846 +r1,12520:27102430,18027378:1765113,575824,122846 +k1,12520:25337317,18027378:-1765113 +) +(1,12520:25337317,18027378:1765113,452978,122846 +k1,12520:25337317,18027378:3277 +h1,12520:27099153,18027378:0,411205,112570 +) +k1,12520:27308809,18027378:206379 +k1,12520:28046686,18027378:206380 +k1,12520:31015408,18027378:206379 +k1,12520:32583029,18027378:0 +) +(1,12521:6630773,18868866:25952256,513147,134348 +k1,12520:8459977,18868866:235368 +k1,12520:10806915,18868866:235368 +k1,12520:12901539,18868866:235368 +k1,12520:14579353,18868866:235367 +k1,12520:15785309,18868866:235368 +k1,12520:17488683,18868866:235368 +k1,12520:18743136,18868866:235368 +k1,12520:20492386,18868866:235368 +k1,12520:21801889,18868866:235368 +k1,12520:22720142,18868866:235368 +k1,12520:24880301,18868866:235367 +k1,12520:26307114,18868866:235368 +k1,12520:28553127,18868866:235368 +k1,12520:31140582,18868866:235368 +k1,12520:32583029,18868866:0 +) +(1,12521:6630773,19710354:25952256,513147,134348 +k1,12520:7922971,19710354:147939 +k1,12520:9606418,19710354:147938 +k1,12520:10437242,19710354:147939 +k1,12520:11420765,19710354:147939 +k1,12520:12962655,19710354:147939 +k1,12520:15435155,19710354:147938 +k1,12520:16234522,19710354:147939 +k1,12520:17170859,19710354:147939 +(1,12520:17170859,19710354:0,414482,115847 +r1,12520:17529125,19710354:358266,530329,115847 +k1,12520:17170859,19710354:-358266 +) +(1,12520:17170859,19710354:358266,414482,115847 +k1,12520:17170859,19710354:3277 +h1,12520:17525848,19710354:0,411205,112570 +) +k1,12520:17677064,19710354:147939 +k1,12520:19016447,19710354:147938 +(1,12520:19016447,19710354:0,414482,115847 +r1,12520:19374713,19710354:358266,530329,115847 +k1,12520:19016447,19710354:-358266 +) +(1,12520:19016447,19710354:358266,414482,115847 +k1,12520:19016447,19710354:3277 +h1,12520:19371436,19710354:0,411205,112570 +) +k1,12520:19522652,19710354:147939 +k1,12520:23582435,19710354:147939 +k1,12520:24217911,19710354:147888 +k1,12520:26046192,19710354:147938 +k1,12520:26853423,19710354:147939 +k1,12520:27399821,19710354:147939 +k1,12520:28230645,19710354:147939 +k1,12520:28777042,19710354:147938 +k1,12520:30189826,19710354:147939 +k1,12520:31356850,19710354:147939 +k1,12520:32583029,19710354:0 +) +(1,12521:6630773,20551842:25952256,513147,134348 +k1,12520:7551537,20551842:195936 +k1,12520:9031978,20551842:195935 +k1,12520:10016312,20551842:195936 +k1,12520:11701880,20551842:195935 +k1,12520:12429313,20551842:195936 +k1,12520:13238010,20551842:195935 +k1,12520:14453031,20551842:195936 +k1,12520:17409999,20551842:195936 +k1,12520:21187477,20551842:195935 +k1,12520:23494983,20551842:195936 +k1,12520:26056768,20551842:195935 +k1,12520:27271789,20551842:195936 +k1,12520:29248337,20551842:195935 +$1,12520:29248337,20551842 +k1,12520:29756032,20551842:109236 +k1,12520:30520628,20551842:109236 +$1,12520:30919087,20551842 +k1,12520:31115023,20551842:195936 +k1,12520:32583029,20551842:0 +) +(1,12521:6630773,21393330:25952256,513147,134348 +k1,12520:7826384,21393330:176526 +k1,12520:9229088,21393330:176525 +k1,12520:10872310,21393330:176526 +k1,12520:13265264,21393330:176526 +k1,12520:15209295,21393330:176525 +k1,12520:18230084,21393330:176526 +k1,12520:19605263,21393330:176525 +k1,12520:21517182,21393330:176526 +k1,12520:23311792,21393330:176526 +k1,12520:25342986,21393330:176525 +k1,12520:26328882,21393330:176526 +k1,12520:27524493,21393330:176526 +k1,12520:29714284,21393330:176525 +k1,12520:30573695,21393330:176526 +k1,12520:32583029,21393330:0 +) +(1,12521:6630773,22234818:25952256,513147,134348 +k1,12520:7577768,22234818:287703 +k1,12520:8884556,22234818:287703 +k1,12520:10398438,22234818:287703 +k1,12520:12373693,22234818:287703 +k1,12520:14806389,22234818:287703 +k1,12520:17758131,22234818:287703 +k1,12520:18705126,22234818:287703 +k1,12520:21821362,22234818:287703 +k1,12520:23824798,22234818:287703 +k1,12520:26742461,22234818:287703 +k1,12520:30847636,22234818:287703 +k1,12520:32583029,22234818:0 +) +(1,12521:6630773,23076306:25952256,513147,134348 +k1,12520:9835092,23076306:229640 +k1,12520:13152788,23076306:229640 +k1,12520:14330078,23076306:229639 +k1,12520:17923681,23076306:229640 +(1,12520:17923681,23076306:0,459977,115847 +r1,12520:20040506,23076306:2116825,575824,115847 +k1,12520:17923681,23076306:-2116825 +) +(1,12520:17923681,23076306:2116825,459977,115847 +k1,12520:17923681,23076306:3277 +h1,12520:20037229,23076306:0,411205,112570 +) +k1,12520:20443816,23076306:229640 +(1,12520:20443816,23076306:0,452978,115847 +r1,12520:23264065,23076306:2820249,568825,115847 +k1,12520:20443816,23076306:-2820249 +) +(1,12520:20443816,23076306:2820249,452978,115847 +k1,12520:20443816,23076306:3277 +h1,12520:23260788,23076306:0,411205,112570 +) +k1,12520:23667375,23076306:229640 +(1,12520:23667375,23076306:0,452978,122846 +r1,12520:26135912,23076306:2468537,575824,122846 +k1,12520:23667375,23076306:-2468537 +) +(1,12520:23667375,23076306:2468537,452978,122846 +k1,12520:23667375,23076306:3277 +h1,12520:26132635,23076306:0,411205,112570 +) +k1,12520:26539221,23076306:229639 +(1,12520:26539221,23076306:0,452978,115847 +r1,12520:29359470,23076306:2820249,568825,115847 +k1,12520:26539221,23076306:-2820249 +) +(1,12520:26539221,23076306:2820249,452978,115847 +k1,12520:26539221,23076306:3277 +h1,12520:29356193,23076306:0,411205,112570 +) +k1,12520:29762780,23076306:229640 +(1,12520:29762780,23076306:0,452978,115847 +r1,12520:32583029,23076306:2820249,568825,115847 +k1,12520:29762780,23076306:-2820249 +) +(1,12520:29762780,23076306:2820249,452978,115847 +k1,12520:29762780,23076306:3277 +h1,12520:32579752,23076306:0,411205,112570 +) +k1,12520:32583029,23076306:0 +) +(1,12521:6630773,23917794:25952256,505283,134348 +k1,12520:7983323,23917794:161105 +(1,12520:7983323,23917794:0,452978,115847 +r1,12520:9748436,23917794:1765113,568825,115847 +k1,12520:7983323,23917794:-1765113 +) +(1,12520:7983323,23917794:1765113,452978,115847 +k1,12520:7983323,23917794:3277 +h1,12520:9745159,23917794:0,411205,112570 +) +k1,12520:10083211,23917794:161105 +k1,12520:11435760,23917794:161104 +k1,12520:12769304,23917794:161105 +k1,12520:15124554,23917794:161105 +k1,12520:18979923,23917794:161105 +(1,12520:18979923,23917794:0,452978,115847 +r1,12520:21800172,23917794:2820249,568825,115847 +k1,12520:18979923,23917794:-2820249 +) +(1,12520:18979923,23917794:2820249,452978,115847 +k1,12520:18979923,23917794:3277 +h1,12520:21796895,23917794:0,411205,112570 +) +k1,12520:21961277,23917794:161105 +k1,12520:23313826,23917794:161104 +(1,12520:23313826,23917794:0,452978,115847 +r1,12520:26485786,23917794:3171960,568825,115847 +k1,12520:23313826,23917794:-3171960 +) +(1,12520:23313826,23917794:3171960,452978,115847 +k1,12520:23313826,23917794:3277 +h1,12520:26482509,23917794:0,411205,112570 +) +k1,12520:26820561,23917794:161105 +k1,12520:28266172,23917794:161105 +k1,12520:32583029,23917794:0 +) +(1,12521:6630773,24759282:25952256,505283,134348 +g1,12520:8192496,24759282 +g1,12520:10246394,24759282 +g1,12520:11254993,24759282 +g1,12520:12473307,24759282 +g1,12520:15286767,24759282 +g1,12520:16102034,24759282 +g1,12520:17320348,24759282 +g1,12520:20044024,24759282 +k1,12521:32583029,24759282:11017914 +g1,12521:32583029,24759282 +) +(1,12523:6630773,25600770:25952256,513147,126483 +h1,12522:6630773,25600770:983040,0,0 +k1,12522:8443861,25600770:202213 +k1,12522:9665159,25600770:202213 +k1,12522:11234452,25600770:202212 +k1,12522:12103821,25600770:202213 +(1,12522:12103821,25600770:0,452978,122846 +r1,12522:16330917,25600770:4227096,575824,122846 +k1,12522:12103821,25600770:-4227096 +) +(1,12522:12103821,25600770:4227096,452978,122846 +k1,12522:12103821,25600770:3277 +h1,12522:16327640,25600770:0,411205,112570 +) +k1,12522:16533130,25600770:202213 +k1,12522:17754428,25600770:202213 +k1,12522:19182820,25600770:202213 +k1,12522:19916529,25600770:202212 +k1,12522:22912542,25600770:202213 +k1,12522:23730793,25600770:202213 +k1,12522:24288866,25600770:202213 +k1,12522:25824737,25600770:202213 +k1,12522:27912420,25600770:202212 +k1,12522:29948330,25600770:202213 +k1,12522:31169628,25600770:202213 +(1,12522:31169628,25600770:0,459977,115847 +r1,12522:32583029,25600770:1413401,575824,115847 +k1,12522:31169628,25600770:-1413401 +) +(1,12522:31169628,25600770:1413401,459977,115847 +k1,12522:31169628,25600770:3277 +h1,12522:32579752,25600770:0,411205,112570 +) +k1,12522:32583029,25600770:0 +) +(1,12523:6630773,26442258:25952256,505283,134348 +k1,12522:9567179,26442258:149160 +k1,12522:10907783,26442258:149159 +k1,12522:12739908,26442258:149160 +k1,12522:16116060,26442258:149159 +k1,12522:19876254,26442258:149160 +k1,12522:23322530,26442258:149160 +k1,12522:25950261,26442258:149159 +k1,12522:26712183,26442258:149160 +k1,12522:28359495,26442258:149159 +h1,12522:29554872,26442258:0,0,0 +k1,12522:29911126,26442258:149160 +k1,12522:32583029,26442258:0 +) +(1,12523:6630773,27283746:25952256,513147,126483 +k1,12522:9103041,27283746:184406 +k1,12522:9946739,27283746:184406 +k1,12522:11150231,27283746:184407 +k1,12522:13203724,27283746:184406 +k1,12522:14579575,27283746:184406 +k1,12522:16032758,27283746:184406 +k1,12522:16876457,27283746:184407 +k1,12522:18079948,27283746:184406 +k1,12522:19598012,27283746:184406 +k1,12522:22717120,27283746:184406 +(1,12522:22717120,27283746:0,452978,122846 +r1,12522:26944216,27283746:4227096,575824,122846 +k1,12522:22717120,27283746:-4227096 +) +(1,12522:22717120,27283746:4227096,452978,122846 +k1,12522:22717120,27283746:3277 +h1,12522:26940939,27283746:0,411205,112570 +) +k1,12522:27128623,27283746:184407 +k1,12522:28805939,27283746:184406 +k1,12522:30056616,27283746:184406 +k1,12522:32583029,27283746:0 +) +(1,12523:6630773,28125234:25952256,505283,122846 +g1,12522:9393115,28125234 +g1,12522:10986295,28125234 +g1,12522:12204609,28125234 +(1,12522:12204609,28125234:0,452978,122846 +r1,12522:13969722,28125234:1765113,575824,122846 +k1,12522:12204609,28125234:-1765113 +) +(1,12522:12204609,28125234:1765113,452978,122846 +k1,12522:12204609,28125234:3277 +h1,12522:13966445,28125234:0,411205,112570 +) +g1,12522:14168951,28125234 +k1,12523:32583029,28125234:15396145 +g1,12523:32583029,28125234 +) +v1,12525:6630773,29374186:0,393216,0 +(1,12526:6630773,45090731:25952256,16109761,616038 +g1,12526:6630773,45090731 +(1,12526:6630773,45090731:25952256,16109761,616038 +(1,12526:6630773,45706769:25952256,16725799,0 +[1,12526:6630773,45706769:25952256,16725799,0 +(1,12526:6630773,45680555:25952256,16673371,0 +r1,12526:6656987,45680555:26214,16673371,0 +[1,12526:6656987,45680555:25899828,16673371,0 +(1,12526:6656987,45090731:25899828,15493723,0 +[1,12526:7246811,45090731:24720180,15493723,0 +(1,12526:7246811,30682544:24720180,1085536,298548 +(1,12525:7246811,30682544:0,1085536,298548 +r1,12526:8753226,30682544:1506415,1384084,298548 +k1,12525:7246811,30682544:-1506415 +) +(1,12525:7246811,30682544:1506415,1085536,298548 +) +k1,12525:8980759,30682544:227533 +k1,12525:10461996,30682544:227533 +k1,12525:12869911,30682544:227532 +k1,12525:13845210,30682544:227533 +k1,12525:15941174,30682544:227533 +k1,12525:17453213,30682544:227533 +k1,12525:18095560,30682544:227504 +k1,12525:19514538,30682544:227533 +k1,12525:22570604,30682544:227533 +k1,12525:25324550,30682544:227533 +k1,12525:26571167,30682544:227532 +k1,12525:27891185,30682544:227533 +k1,12525:28778010,30682544:227533 +k1,12525:31966991,30682544:0 +) +(1,12526:7246811,31524032:24720180,513147,134348 +k1,12525:9008097,31524032:267720 +k1,12525:9961980,31524032:267721 +k1,12525:11893004,31524032:267720 +k1,12525:15135404,31524032:267721 +k1,12525:18634704,31524032:267720 +k1,12525:19518462,31524032:267720 +k1,12525:22155965,31524032:267721 +k1,12525:22901442,31524032:267720 +k1,12525:24627994,31524032:267721 +k1,12525:26804778,31524032:267720 +k1,12525:27755383,31524032:267720 +k1,12525:29110277,31524032:267652 +k1,12525:31966991,31524032:0 +) +(1,12526:7246811,32365520:24720180,505283,126483 +k1,12525:8958721,32365520:203271 +k1,12525:10428147,32365520:203270 +k1,12525:12065346,32365520:203271 +k1,12525:13439090,32365520:203271 +k1,12525:14746643,32365520:203271 +k1,12525:16336000,32365520:203271 +k1,12525:18394594,32365520:203270 +k1,12525:20630136,32365520:203271 +k1,12525:22024852,32365520:203271 +k1,12525:24352800,32365520:203271 +k1,12525:26533947,32365520:203270 +k1,12525:29378974,32365520:203271 +k1,12525:31966991,32365520:0 +) +(1,12526:7246811,33207008:24720180,513147,126483 +k1,12525:8675977,33207008:237721 +k1,12525:10293886,33207008:237721 +k1,12525:11956360,33207008:237721 +k1,12525:13854763,33207008:237721 +k1,12525:16901357,33207008:237721 +k1,12525:17755116,33207008:237721 +k1,12525:19837020,33207008:237721 +k1,12525:20540702,33207008:237721 +k1,12525:21134283,33207008:237721 +k1,12525:23883999,33207008:237721 +k1,12525:25452756,33207008:237721 +k1,12525:26221974,33207008:237721 +k1,12525:28604033,33207008:237721 +k1,12525:30033199,33207008:237721 +k1,12525:31041623,33207008:237721 +k1,12526:31966991,33207008:0 +) +(1,12526:7246811,34048496:24720180,513147,134348 +k1,12525:9680163,34048496:225444 +k1,12525:12806886,34048496:225444 +k1,12525:14178554,34048496:225443 +k1,12525:16067302,34048496:225444 +k1,12525:16824243,34048496:225444 +k1,12525:17665725,34048496:225444 +k1,12525:18983653,34048496:225443 +k1,12525:19970625,34048496:225444 +k1,12525:21215154,34048496:225444 +k1,12525:24494576,34048496:225444 +k1,12525:27139609,34048496:225444 +k1,12525:28855341,34048496:225443 +k1,12525:29546746,34048496:225444 +k1,12525:31435494,34048496:225444 +k1,12525:31966991,34048496:0 +) +(1,12526:7246811,34889984:24720180,513147,126483 +k1,12525:8112148,34889984:249299 +k1,12525:9627603,34889984:249299 +k1,12525:11103081,34889984:249299 +k1,12525:11883877,34889984:249299 +k1,12525:13199447,34889984:249299 +k1,12525:14899713,34889984:249299 +k1,12525:17818293,34889984:249299 +k1,12525:20110349,34889984:249299 +k1,12525:21378733,34889984:249299 +k1,12525:23281505,34889984:249299 +k1,12525:24861840,34889984:249299 +k1,12525:25642636,34889984:249299 +k1,12525:28849574,34889984:249299 +k1,12525:29785035,34889984:249299 +k1,12525:31501030,34889984:249299 +k1,12525:31966991,34889984:0 +) +(1,12526:7246811,35731472:24720180,513147,134348 +k1,12525:8479762,35731472:213866 +k1,12525:11668307,35731472:213866 +k1,12525:14826705,35731472:213865 +k1,12525:16032131,35731472:213866 +k1,12525:20448821,35731472:213866 +k1,12525:21610338,35731472:213866 +k1,12525:23575980,35731472:213865 +k1,12525:27136114,35731472:213866 +k1,12525:28951680,35731472:213866 +k1,12525:31966991,35731472:0 +) +(1,12526:7246811,36572960:24720180,513147,134348 +k1,12525:9134299,36572960:226150 +k1,12525:11886861,36572960:226149 +k1,12525:12725773,36572960:226150 +k1,12525:14553622,36572960:226149 +k1,12525:15135632,36572960:226150 +k1,12525:17078170,36572960:226150 +k1,12525:19790100,36572960:226149 +k1,12525:20675542,36572960:226150 +k1,12525:24247960,36572960:226150 +k1,12525:25101944,36572960:226149 +k1,12525:28161215,36572960:226150 +k1,12525:29544074,36572960:226149 +k1,12525:30874506,36572960:226150 +k1,12525:31966991,36572960:0 +) +(1,12526:7246811,37414448:24720180,505283,134348 +k1,12525:8668823,37414448:218771 +k1,12525:12525497,37414448:218771 +k1,12525:13395696,37414448:218771 +k1,12525:15089682,37414448:218771 +k1,12525:17152636,37414448:218771 +k1,12525:18838104,37414448:218772 +k1,12525:20792268,37414448:218771 +k1,12525:22713009,37414448:218771 +k1,12525:26019181,37414448:218771 +k1,12525:27429397,37414448:218771 +k1,12525:30820766,37414448:218771 +k1,12525:31966991,37414448:0 +) +(1,12526:7246811,38255936:24720180,513147,134348 +k1,12525:9955545,38255936:197394 +k1,12525:11546891,38255936:197395 +k1,12525:13252924,38255936:197394 +k1,12525:16675345,38255936:197394 +k1,12525:19514495,38255936:197394 +k1,12525:21666174,38255936:197395 +k1,12525:22479606,38255936:197394 +k1,12525:23696085,38255936:197394 +k1,12525:25546953,38255936:197395 +k1,12525:27773342,38255936:197394 +k1,12525:31966991,38255936:0 +) +(1,12526:7246811,39097424:24720180,513147,126483 +k1,12525:8431486,39097424:165590 +k1,12525:11123490,39097424:165591 +k1,12525:12236731,39097424:165590 +k1,12525:14063659,39097424:165590 +k1,12525:15420694,39097424:165590 +k1,12525:19811391,39097424:165591 +k1,12525:22951660,39097424:165590 +k1,12525:24382095,39097424:165590 +k1,12525:25163724,39097424:165591 +k1,12525:25744123,39097424:165556 +k1,12525:26441211,39097424:165591 +k1,12525:30985917,39097424:165590 +k1,12526:31966991,39097424:0 +) +(1,12526:7246811,39938912:24720180,513147,134348 +k1,12525:10207881,39938912:164649 +k1,12525:11569218,39938912:164650 +k1,12525:13064903,39938912:164649 +k1,12525:16130831,39938912:164649 +k1,12525:17808706,39938912:164649 +k1,12525:18734884,39938912:164650 +k1,12525:19314341,39938912:164614 +k1,12525:20240519,39938912:164650 +k1,12525:22670748,39938912:164649 +k1,12525:25537446,39938912:164649 +k1,12525:26511465,39938912:164649 +k1,12525:27695200,39938912:164650 +k1,12525:30125429,39938912:164649 +k1,12525:31966991,39938912:0 +) +(1,12526:7246811,40780400:24720180,513147,134348 +k1,12525:9934442,40780400:175636 +k1,12525:10769371,40780400:175637 +k1,12525:11964092,40780400:175636 +k1,12525:15193707,40780400:175637 +k1,12525:17788932,40780400:175636 +k1,12525:19850040,40780400:175637 +k1,12525:21129958,40780400:175636 +k1,12525:22591411,40780400:175637 +k1,12525:24096117,40780400:175636 +k1,12525:24923182,40780400:175637 +k1,12525:27595084,40780400:175636 +k1,12525:30120842,40780400:175637 +k1,12525:30947906,40780400:175636 +k1,12525:31966991,40780400:0 +) +(1,12526:7246811,41621888:24720180,513147,134348 +k1,12525:9872511,41621888:205455 +k1,12525:10760852,41621888:205456 +k1,12525:12959257,41621888:205455 +k1,12525:16469693,41621888:205455 +k1,12525:18413163,41621888:205455 +k1,12525:20920899,41621888:205456 +k1,12525:23649490,41621888:205455 +k1,12525:24874030,41621888:205455 +k1,12525:26732958,41621888:205455 +k1,12525:28434600,41621888:205455 +k1,12525:29449426,41621888:205456 +k1,12525:30010741,41621888:205455 +k1,12526:31966991,41621888:0 +) +(1,12526:7246811,42463376:24720180,513147,134348 +k1,12525:8406755,42463376:140859 +k1,12525:11623874,42463376:140859 +k1,12525:13332353,42463376:140858 +k1,12525:14492297,42463376:140859 +k1,12525:15789866,42463376:140859 +k1,12525:17849619,42463376:140859 +k1,12525:18346338,42463376:140859 +k1,12525:20318272,42463376:140858 +k1,12525:21666304,42463376:140859 +k1,12525:24330954,42463376:140859 +k1,12525:25615416,42463376:140859 +k1,12525:26522391,42463376:140859 +k1,12525:27194746,42463376:140858 +k1,12525:28696132,42463376:140859 +k1,12525:31280829,42463376:140859 +k1,12526:31966991,42463376:0 +) +(1,12526:7246811,43304864:24720180,513147,134348 +k1,12525:7816833,43304864:155179 +k1,12525:9076338,43304864:155223 +k1,12525:9979327,43304864:155223 +k1,12525:12600013,43304864:155222 +k1,12525:13406664,43304864:155223 +k1,12525:14654372,43304864:155223 +k1,12525:17055513,43304864:155222 +k1,12525:18872074,43304864:155223 +k1,12525:20218742,43304864:155223 +k1,12525:22569421,43304864:155223 +k1,12525:24385981,43304864:155222 +k1,12525:25935155,43304864:155223 +k1,12525:29116175,43304864:155223 +k1,12525:31966991,43304864:0 +) +(1,12526:7246811,44146352:24720180,513147,134348 +k1,12525:8222736,44146352:214397 +k1,12525:11347586,44146352:214396 +k1,12525:14813223,44146352:214397 +k1,12525:16219065,44146352:214397 +k1,12525:19890485,44146352:214397 +k1,12525:25464415,44146352:214396 +k1,12525:28859274,44146352:214397 +k1,12525:31966991,44146352:0 +) +(1,12526:7246811,44987840:24720180,505283,102891 +g1,12525:8062078,44987840 +g1,12525:12455611,44987840 +g1,12525:13646400,44987840 +k1,12526:31966991,44987840:15369505 +g1,12526:31966991,44987840 +) +] +) +] +r1,12526:32583029,45680555:26214,16673371,0 +) +] +) +) +g1,12526:32583029,45090731 +) +h1,12526:6630773,45706769:0,0,0 +] +(1,12529:32583029,45706769:0,0,0 +g1,12529:32583029,45706769 +) +) +] +(1,12529:6630773,47279633:25952256,0,0 +h1,12529:6630773,47279633:25952256,0,0 +) +] +h1,12529:4262630,4025873:0,0,0 +] +!27311 +}239 +Input:1682:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1683:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1684:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1685:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1686:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1687:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1688:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1689:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1690:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1691:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1692:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1693:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1694:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1695:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1300 +{240 +[1,12591:4262630,47279633:28320399,43253760,0 +(1,12591:4262630,4025873:0,0,0 +[1,12591:-473657,4025873:25952256,0,0 +(1,12591:-473657,-710414:25952256,0,0 +h1,12591:-473657,-710414:0,0,0 +(1,12591:-473657,-710414:0,0,0 +(1,12591:-473657,-710414:0,0,0 +g1,12591:-473657,-710414 +(1,12591:-473657,-710414:65781,0,65781 +g1,12591:-407876,-710414 +[1,12591:-407876,-644633:0,0,0 ] ) +k1,12591:-473657,-710414:-65781 +) ) +k1,12591:25478599,-710414:25952256 +g1,12591:25478599,-710414 ) ] -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,2439708:0,1703936,0 -g1,12565:29030814,2439708 -g1,12565:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12565:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +[1,12591:6630773,47279633:25952256,43253760,0 +[1,12591:6630773,4812305:25952256,786432,0 +(1,12591:6630773,4812305:25952256,485622,11795 +(1,12591:6630773,4812305:25952256,485622,11795 +g1,12591:3078558,4812305 +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,2439708:0,1703936,0 +k1,12591:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12591:2537886,2439708:1179648,16384,0 +) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12591:3078558,1915420:16384,1179648,0 +) +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12565:37855564,2439708:1179648,16384,0 ) ) -k1,12565:3078556,2439708:-34777008 +] +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,2439708:0,1703936,0 +g1,12591:29030814,2439708 +g1,12591:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12591:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] -[1,12565:3078558,4812305:0,0,0 -(1,12565:3078558,49800853:0,16384,2228224 -k1,12565:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12565:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12565:3078558,51504789:16384,1179648,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12591:37855564,2439708:1179648,16384,0 +) ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,12591:3078556,2439708:-34777008 ) ] +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,49800853:0,16384,2228224 +k1,12591:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12591:2537886,49800853:1179648,16384,0 ) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12591:3078558,51504789:16384,1179648,0 ) +k1,11321:29014430,51504789:25935872 +g1,11321: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,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12565:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +) ) ] +[1,12591:3078558,4812305:0,0,0 +(1,12591:3078558,49800853:0,16384,2228224 +g1,12591:29030814,49800853 +g1,12591:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12591:36151628,51504789:16384,1179648,0 ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12565:37855564,49800853:1179648,16384,0 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) +] ) -k1,12565:3078556,49800853:-34777008 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12591:37855564,49800853:1179648,16384,0 ) -] -g1,12565:6630773,4812305 -k1,12565:25712890,4812305:17886740 -g1,12565:29057847,4812305 -g1,12565:29873114,4812305 ) +k1,12591:3078556,49800853:-34777008 ) ] -[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 +g1,12591:6630773,4812305 +g1,12591:6630773,4812305 +g1,12591:10347975,4812305 +k1,12591:31387651,4812305:21039676 +) +) +] +[1,12591:6630773,45706769:25952256,40108032,0 +(1,12591:6630773,45706769:25952256,40108032,0 +(1,12591:6630773,45706769:0,0,0 +g1,12591:6630773,45706769 ) -[1,12565:6630773,45706769:25952256,40108032,0 -v1,12507:6630773,6254097:0,393216,0 -(1,12507:6630773,8773311:25952256,2912430,616038 -g1,12507:6630773,8773311 -(1,12507:6630773,8773311:25952256,2912430,616038 -(1,12507:6630773,9389349:25952256,3528468,0 -[1,12507:6630773,9389349:25952256,3528468,0 -(1,12507:6630773,9363135:25952256,3502254,0 -r1,12507:6656987,9363135:26214,3502254,0 -[1,12507:6656987,9363135:25899828,3502254,0 -(1,12507:6656987,8773311:25899828,2322606,0 -[1,12507:7246811,8773311:24720180,2322606,0 -(1,12507:7246811,6963852:24720180,513147,134348 -k1,12506:8850480,6963852:243142 -k1,12506:11537459,6963852:243141 -k1,12506:12466763,6963852:243142 -k1,12506:13124703,6963852:243097 -k1,12506:14472127,6963852:243142 -k1,12506:15463034,6963852:243141 -k1,12506:18171640,6963852:243142 -k1,12506:19066210,6963852:243142 -k1,12506:20401836,6963852:243141 -k1,12506:22890897,6963852:243142 -k1,12506:24795376,6963852:243141 -k1,12506:26229963,6963852:243142 -k1,12506:28668560,6963852:243141 -k1,12506:30573040,6963852:243142 -k1,12506:31966991,6963852:0 -) -(1,12507:7246811,7805340:24720180,513147,134348 -k1,12506:10545800,7805340:273192 -k1,12506:13669808,7805340:273192 -k1,12506:14704528,7805340:273192 -k1,12506:17888173,7805340:273191 -k1,12506:21412605,7805340:273192 -k1,12506:22877242,7805340:273192 -k1,12506:26607457,7805340:273192 -k1,12506:31966991,7805340:0 -) -(1,12507:7246811,8646828:24720180,505283,126483 -g1,12506:10626502,8646828 -g1,12506:13933448,8646828 -g1,12506:14748715,8646828 -g1,12506:19142248,8646828 -g1,12506:20333037,8646828 -k1,12507:31966991,8646828:8682868 -g1,12507:31966991,8646828 -) -] -) -] -r1,12507:32583029,9363135:26214,3502254,0 -) -] -) -) -g1,12507:32583029,8773311 -) -h1,12507:6630773,9389349:0,0,0 -(1,12510:6630773,10626315:25952256,505283,134348 -h1,12509:6630773,10626315:983040,0,0 -k1,12509:8628487,10626315:386839 -k1,12509:10034412,10626315:386840 -k1,12509:13639069,10626315:386839 -k1,12509:17191298,10626315:386840 -k1,12509:18972088,10626315:386839 -k1,12509:21517683,10626315:386839 -k1,12509:22970794,10626315:386840 -k1,12509:25606829,10626315:386839 -k1,12509:26862020,10626315:386839 -k1,12509:28341345,10626315:386840 -(1,12509:28341345,10626315:0,414482,122846 -r1,12509:31513305,10626315:3171960,537328,122846 -k1,12509:28341345,10626315:-3171960 -) -(1,12509:28341345,10626315:3171960,414482,122846 -k1,12509:28341345,10626315:3277 -h1,12509:31510028,10626315:0,411205,112570 -) -k1,12509:31900144,10626315:386839 -k1,12510:32583029,10626315:0 -) -(1,12510:6630773,11467803:25952256,505283,134348 -(1,12509:6630773,11467803:0,452978,122846 -r1,12509:10154445,11467803:3523672,575824,122846 -k1,12509:6630773,11467803:-3523672 -) -(1,12509:6630773,11467803:3523672,452978,122846 -k1,12509:6630773,11467803:3277 -h1,12509:10151168,11467803:0,411205,112570 -) -k1,12509:10363580,11467803:209135 -k1,12509:13253138,11467803:209135 -k1,12509:14856224,11467803:209135 -(1,12509:14856224,11467803:0,452978,122846 -r1,12509:18379896,11467803:3523672,575824,122846 -k1,12509:14856224,11467803:-3523672 -) -(1,12509:14856224,11467803:3523672,452978,122846 -k1,12509:14856224,11467803:3277 -h1,12509:18376619,11467803:0,411205,112570 -) -k1,12509:18589031,11467803:209135 -k1,12509:19484328,11467803:209135 -k1,12509:20896704,11467803:209135 -k1,12509:21637336,11467803:209135 -k1,12509:23176851,11467803:209134 -k1,12509:24766174,11467803:209135 -k1,12509:26312243,11467803:209135 -k1,12509:27269144,11467803:209135 -k1,12509:28991505,11467803:209135 -k1,12509:29852068,11467803:209135 -k1,12509:31575085,11467803:209135 -k1,12510:32583029,11467803:0 -) -(1,12510:6630773,12309291:25952256,473825,7863 -k1,12510:32583028,12309291:22501784 -g1,12510:32583028,12309291 -) -v1,12512:6630773,13370947:0,393216,0 -(1,12523:6630773,18349289:25952256,5371558,196608 -g1,12523:6630773,18349289 -g1,12523:6630773,18349289 -g1,12523:6434165,18349289 -(1,12523:6434165,18349289:0,5371558,196608 -r1,12523:32779637,18349289:26345472,5568166,196608 -k1,12523:6434165,18349289:-26345472 -) -(1,12523:6434165,18349289:26345472,5371558,196608 -[1,12523:6630773,18349289:25952256,5174950,0 -(1,12514:6630773,13578565:25952256,404226,101187 -(1,12513:6630773,13578565:0,0,0 -g1,12513:6630773,13578565 -g1,12513:6630773,13578565 -g1,12513:6303093,13578565 -(1,12513:6303093,13578565:0,0,0 -) -g1,12513:6630773,13578565 -) -g1,12514:9159939,13578565 -k1,12514:9159939,13578565:0 -h1,12514:9792231,13578565:0,0,0 -k1,12514:32583029,13578565:22790798 -g1,12514:32583029,13578565 -) -(1,12515:6630773,14244743:25952256,410518,82312 -h1,12515:6630773,14244743:0,0,0 -g1,12515:6946919,14244743 -g1,12515:7263065,14244743 -g1,12515:11372960,14244743 -g1,12515:12005252,14244743 -k1,12515:12005252,14244743:0 -h1,12515:13269836,14244743:0,0,0 -k1,12515:32583028,14244743:19313192 -g1,12515:32583028,14244743 -) -(1,12516:6630773,14910921:25952256,404226,101187 -h1,12516:6630773,14910921:0,0,0 -g1,12516:6946919,14910921 -g1,12516:7263065,14910921 -g1,12516:7579211,14910921 -g1,12516:7895357,14910921 -g1,12516:8211503,14910921 -g1,12516:8527649,14910921 -g1,12516:8843795,14910921 -g1,12516:9159941,14910921 -g1,12516:9476087,14910921 -g1,12516:9792233,14910921 -g1,12516:10108379,14910921 -g1,12516:10424525,14910921 -g1,12516:10740671,14910921 -g1,12516:11372963,14910921 -g1,12516:12005255,14910921 -g1,12516:14218276,14910921 -k1,12516:14218276,14910921:0 -h1,12516:15166714,14910921:0,0,0 -k1,12516:32583030,14910921:17416316 -g1,12516:32583030,14910921 -) -(1,12517:6630773,15577099:25952256,404226,82312 -h1,12517:6630773,15577099:0,0,0 -g1,12517:6946919,15577099 -g1,12517:7263065,15577099 -g1,12517:7579211,15577099 -g1,12517:7895357,15577099 -g1,12517:8211503,15577099 -g1,12517:8527649,15577099 -g1,12517:8843795,15577099 -g1,12517:9159941,15577099 -g1,12517:9476087,15577099 -g1,12517:9792233,15577099 -g1,12517:10108379,15577099 -g1,12517:10424525,15577099 -g1,12517:10740671,15577099 -g1,12517:12637545,15577099 -g1,12517:13269837,15577099 -g1,12517:15482858,15577099 -g1,12517:17063587,15577099 -g1,12517:18644316,15577099 -g1,12517:20225045,15577099 -h1,12517:21805773,15577099:0,0,0 -k1,12517:32583029,15577099:10777256 -g1,12517:32583029,15577099 -) -(1,12518:6630773,16243277:25952256,0,0 -h1,12518:6630773,16243277:0,0,0 -h1,12518:6630773,16243277:0,0,0 -k1,12518:32583029,16243277:25952256 -g1,12518:32583029,16243277 -) -(1,12519:6630773,16909455:25952256,404226,107478 -h1,12519:6630773,16909455:0,0,0 -g1,12519:11689104,16909455 -g1,12519:13902124,16909455 -g1,12519:14850562,16909455 -g1,12519:16747436,16909455 -g1,12519:17379728,16909455 -g1,12519:19908894,16909455 -h1,12519:20225040,16909455:0,0,0 -k1,12519:32583029,16909455:12357989 -g1,12519:32583029,16909455 -) -(1,12520:6630773,17575633:25952256,404226,107478 -h1,12520:6630773,17575633:0,0,0 -g1,12520:6946919,17575633 -g1,12520:7263065,17575633 -g1,12520:12321396,17575633 -g1,12520:12953688,17575633 -g1,12520:14218271,17575633 -g1,12520:16115145,17575633 -g1,12520:16747437,17575633 -g1,12520:18328166,17575633 -g1,12520:19908895,17575633 -g1,12520:20541187,17575633 -g1,12520:21489625,17575633 -h1,12520:21805771,17575633:0,0,0 -k1,12520:32583029,17575633:10777258 -g1,12520:32583029,17575633 -) -(1,12521:6630773,18241811:25952256,404226,107478 -h1,12521:6630773,18241811:0,0,0 -g1,12521:6946919,18241811 -g1,12521:7263065,18241811 -k1,12521:7263065,18241811:0 -h1,12521:11056813,18241811:0,0,0 -k1,12521:32583029,18241811:21526216 -g1,12521:32583029,18241811 -) -] -) -g1,12523:32583029,18349289 -g1,12523:6630773,18349289 -g1,12523:6630773,18349289 -g1,12523:32583029,18349289 -g1,12523:32583029,18349289 -) -h1,12523:6630773,18545897:0,0,0 -v1,12527:6630773,20178341:0,393216,0 -(1,12528:6630773,22464373:25952256,2679248,616038 -g1,12528:6630773,22464373 -(1,12528:6630773,22464373:25952256,2679248,616038 -(1,12528:6630773,23080411:25952256,3295286,0 -[1,12528:6630773,23080411:25952256,3295286,0 -(1,12528:6630773,23054197:25952256,3242858,0 -r1,12528:6656987,23054197:26214,3242858,0 -[1,12528:6656987,23054197:25899828,3242858,0 -(1,12528:6656987,22464373:25899828,2063210,0 -[1,12528:7246811,22464373:24720180,2063210,0 -(1,12528:7246811,21488537:24720180,1087374,126483 -k1,12527:8749312,21488537:292798 -k1,12527:11248051,21488537:292797 -k1,12527:12559934,21488537:292798 -k1,12527:15514149,21488537:292798 -k1,12527:17662271,21488537:292798 -k1,12527:18606496,21488537:292797 -k1,12527:19991779,21488537:292798 -(1,12527:19991779,21488537:0,452978,122846 -r1,12528:24218875,21488537:4227096,575824,122846 -k1,12527:19991779,21488537:-4227096 -) -(1,12527:19991779,21488537:4227096,452978,122846 -k1,12527:19991779,21488537:3277 -h1,12527:24215598,21488537:0,411205,112570 -) -k1,12527:24511673,21488537:292798 -k1,12527:27131653,21488537:292797 -k1,12527:28091607,21488537:292798 -(1,12527:28091607,21488537:0,452978,122846 -r1,12528:31966991,21488537:3875384,575824,122846 -k1,12527:28091607,21488537:-3875384 -) -(1,12527:28091607,21488537:3875384,452978,122846 -k1,12527:28091607,21488537:3277 -h1,12527:31963714,21488537:0,411205,112570 -) -k1,12527:31966991,21488537:0 -) -(1,12528:7246811,22330025:24720180,505283,134348 -g1,12527:9355104,22330025 -g1,12527:10170371,22330025 -g1,12527:13209275,22330025 -g1,12527:14427589,22330025 -(1,12527:14427589,22330025:0,459977,115847 -r1,12528:15840990,22330025:1413401,575824,115847 -k1,12527:14427589,22330025:-1413401 -) -(1,12527:14427589,22330025:1413401,459977,115847 -k1,12527:14427589,22330025:3277 -h1,12527:15837713,22330025:0,411205,112570 -) -g1,12527:16040219,22330025 -k1,12528:31966991,22330025:12908839 -g1,12528:31966991,22330025 -) -] -) -] -r1,12528:32583029,23054197:26214,3242858,0 -) -] -) -) -g1,12528:32583029,22464373 -) -h1,12528:6630773,23080411:0,0,0 -(1,12531:6630773,24317376:25952256,513147,134348 -h1,12530:6630773,24317376:983040,0,0 -k1,12530:8414260,24317376:172612 -k1,12530:9605956,24317376:172611 -k1,12530:11162688,24317376:172612 -k1,12530:13996717,24317376:172612 -k1,12530:15037680,24317376:172611 -k1,12530:17030882,24317376:172612 -k1,12530:17559354,24317376:172612 -k1,12530:20494309,24317376:172612 -k1,12530:21997956,24317376:172611 -k1,12530:24352262,24317376:172612 -k1,12530:26260267,24317376:172612 -k1,12530:27451963,24317376:172611 -k1,12530:29278048,24317376:172612 -k1,12530:32583029,24317376:0 -) -(1,12531:6630773,25158864:25952256,513147,126483 -k1,12530:7507932,25158864:261121 -k1,12530:8788139,25158864:261122 -k1,12530:11279450,25158864:261121 -k1,12530:14471341,25158864:261121 -k1,12530:15929149,25158864:261121 -k1,12530:18258587,25158864:261122 -(1,12530:18258587,25158864:0,452978,115847 -r1,12530:20375412,25158864:2116825,568825,115847 -k1,12530:18258587,25158864:-2116825 -) -(1,12530:18258587,25158864:2116825,452978,115847 -k1,12530:18258587,25158864:3277 -h1,12530:20372135,25158864:0,411205,112570 -) -k1,12530:20636533,25158864:261121 -k1,12530:22123833,25158864:261121 -k1,12530:25031298,25158864:261121 -(1,12530:25031298,25158864:0,459977,115847 -r1,12530:27499835,25158864:2468537,575824,115847 -k1,12530:25031298,25158864:-2468537 -) -(1,12530:25031298,25158864:2468537,459977,115847 -k1,12530:25031298,25158864:3277 -h1,12530:27496558,25158864:0,411205,112570 -) -k1,12530:27760957,25158864:261122 -k1,12530:29213523,25158864:261121 -(1,12530:29213523,25158864:0,452978,115847 -r1,12530:31330348,25158864:2116825,568825,115847 -k1,12530:29213523,25158864:-2116825 -) -(1,12530:29213523,25158864:2116825,452978,115847 -k1,12530:29213523,25158864:3277 -h1,12530:31327071,25158864:0,411205,112570 -) -k1,12530:31591469,25158864:261121 -k1,12530:32583029,25158864:0 -) -(1,12531:6630773,26000352:25952256,513147,134348 -k1,12530:10366920,26000352:224073 -k1,12530:11352522,26000352:224074 -k1,12530:12342711,26000352:224073 -k1,12530:15285873,26000352:224073 -k1,12530:17847616,26000352:224074 -k1,12530:18881059,26000352:224073 -k1,12530:19871249,26000352:224074 -k1,12530:23149300,26000352:224073 -k1,12530:26123264,26000352:224073 -k1,12530:29706058,26000352:224074 -k1,12530:31591469,26000352:224073 -k1,12530:32583029,26000352:0 -) -(1,12531:6630773,26841840:25952256,513147,134348 -k1,12530:9713374,26841840:298632 -k1,12530:10959658,26841840:298633 -k1,12530:13655597,26841840:298632 -k1,12530:16343017,26841840:298633 -k1,12530:19152989,26841840:298632 -k1,12530:20945188,26841840:298633 -k1,12530:21929982,26841840:298632 -k1,12530:23247700,26841840:298633 -k1,12530:24343250,26841840:298632 -k1,12530:26480068,26841840:298533 -k1,12530:28440038,26841840:298632 -k1,12530:29500199,26841840:298633 -k1,12530:30817916,26841840:298632 -(1,12530:30817916,26841840:0,459977,115847 -r1,12530:32583029,26841840:1765113,575824,115847 -k1,12530:30817916,26841840:-1765113 -) -(1,12530:30817916,26841840:1765113,459977,115847 -k1,12530:30817916,26841840:3277 -h1,12530:32579752,26841840:0,411205,112570 -) -k1,12530:32583029,26841840:0 -) -(1,12531:6630773,27683328:25952256,505283,126483 -g1,12530:9011040,27683328 -g1,12530:9838104,27683328 -g1,12530:11240574,27683328 -g1,12530:12806884,27683328 -g1,12530:14514752,27683328 -g1,12530:16782297,27683328 -g1,12530:18085808,27683328 -g1,12530:19032803,27683328 -g1,12530:21656209,27683328 -g1,12530:23249389,27683328 -(1,12530:23249389,27683328:0,459977,115847 -r1,12530:29235044,27683328:5985655,575824,115847 -k1,12530:23249389,27683328:-5985655 -) -(1,12530:23249389,27683328:5985655,459977,115847 -k1,12530:23249389,27683328:3277 -h1,12530:29231767,27683328:0,411205,112570 -) -k1,12531:32583029,27683328:3174315 -g1,12531:32583029,27683328 -) -v1,12533:6630773,28744984:0,393216,0 -(1,12539:6630773,30392436:25952256,2040668,196608 -g1,12539:6630773,30392436 -g1,12539:6630773,30392436 -g1,12539:6434165,30392436 -(1,12539:6434165,30392436:0,2040668,196608 -r1,12539:32779637,30392436:26345472,2237276,196608 -k1,12539:6434165,30392436:-26345472 -) -(1,12539:6434165,30392436:26345472,2040668,196608 -[1,12539:6630773,30392436:25952256,1844060,0 -(1,12535:6630773,28952602:25952256,404226,107478 -(1,12534:6630773,28952602:0,0,0 -g1,12534:6630773,28952602 -g1,12534:6630773,28952602 -g1,12534:6303093,28952602 -(1,12534:6303093,28952602:0,0,0 -) -g1,12534:6630773,28952602 -) -k1,12535:6630773,28952602:0 -g1,12535:11689104,28952602 -g1,12535:13902124,28952602 -g1,12535:14850562,28952602 -g1,12535:16747436,28952602 -g1,12535:17379728,28952602 -g1,12535:19908894,28952602 -h1,12535:20225040,28952602:0,0,0 -k1,12535:32583029,28952602:12357989 -g1,12535:32583029,28952602 -) -(1,12536:6630773,29618780:25952256,410518,107478 -h1,12536:6630773,29618780:0,0,0 -g1,12536:6946919,29618780 -g1,12536:7263065,29618780 -g1,12536:12321396,29618780 -g1,12536:12953688,29618780 -g1,12536:14218271,29618780 -g1,12536:16115145,29618780 -g1,12536:16747437,29618780 -g1,12536:18328166,29618780 -g1,12536:19908895,29618780 -g1,12536:20541187,29618780 -g1,12536:21489625,29618780 -g1,12536:23702645,29618780 -g1,12536:24334937,29618780 -g1,12536:27180249,29618780 -h1,12536:27496395,29618780:0,0,0 -k1,12536:32583029,29618780:5086634 -g1,12536:32583029,29618780 -) -(1,12537:6630773,30284958:25952256,404226,107478 -h1,12537:6630773,30284958:0,0,0 -g1,12537:6946919,30284958 -g1,12537:7263065,30284958 -k1,12537:7263065,30284958:0 -h1,12537:11056813,30284958:0,0,0 -k1,12537:32583029,30284958:21526216 -g1,12537:32583029,30284958 -) -] -) -g1,12539:32583029,30392436 -g1,12539:6630773,30392436 -g1,12539:6630773,30392436 -g1,12539:32583029,30392436 -g1,12539:32583029,30392436 -) -h1,12539:6630773,30589044:0,0,0 -v1,12543:6630773,32221488:0,393216,0 -(1,12544:6630773,36190496:25952256,4362224,616038 -g1,12544:6630773,36190496 -(1,12544:6630773,36190496:25952256,4362224,616038 -(1,12544:6630773,36806534:25952256,4978262,0 -[1,12544:6630773,36806534:25952256,4978262,0 -(1,12544:6630773,36780320:25952256,4925834,0 -r1,12544:6656987,36780320:26214,4925834,0 -[1,12544:6656987,36780320:25899828,4925834,0 -(1,12544:6656987,36190496:25899828,3746186,0 -[1,12544:7246811,36190496:24720180,3746186,0 -(1,12544:7246811,33531684:24720180,1087374,134348 -k1,12543:8690182,33531684:233668 -k1,12543:9551685,33531684:233668 -k1,12543:10804438,33531684:233668 -k1,12543:14029826,33531684:233669 -k1,12543:16118818,33531684:233668 -k1,12543:17371571,33531684:233668 -k1,12543:20579918,33531684:233668 -k1,12543:23009697,33531684:233668 -k1,12543:24747416,33531684:233668 -k1,12543:25747201,33531684:233669 -k1,12543:26640161,33531684:233668 -k1,12543:27892914,33531684:233668 -k1,12543:29780055,33531684:233668 -k1,12543:31966991,33531684:0 -) -(1,12544:7246811,34373172:24720180,505283,134348 -k1,12543:10958639,34373172:349831 -k1,12543:11664330,34373172:349831 -k1,12543:13887181,34373172:349832 -k1,12543:17385362,34373172:349831 -k1,12543:19342791,34373172:349831 -k1,12543:20711707,34373172:349831 -k1,12543:22669136,34373172:349831 -k1,12543:24874292,34373172:349832 -k1,12543:26618074,34373172:349831 -k1,12543:28992312,34373172:349831 -k1,12543:31966991,34373172:0 -) -(1,12544:7246811,35214660:24720180,513147,134348 -k1,12543:9718810,35214660:275888 -k1,12543:10653989,35214660:275887 -k1,12543:13272134,35214660:275888 -k1,12543:15891589,35214660:275888 -k1,12543:18752871,35214660:275887 -k1,12543:19680187,35214660:275888 -k1,12543:20975160,35214660:275888 -(1,12543:20975160,35214660:0,452978,115847 -r1,12544:22740273,35214660:1765113,568825,115847 -k1,12543:20975160,35214660:-1765113 -) -(1,12543:20975160,35214660:1765113,452978,115847 -k1,12543:20975160,35214660:3277 -h1,12543:22736996,35214660:0,411205,112570 -) -k1,12543:23016160,35214660:275887 -k1,12543:26218885,35214660:275888 -k1,12543:27392616,35214660:275888 -k1,12543:28954319,35214660:275887 -k1,12543:30573040,35214660:275888 -k1,12543:31966991,35214660:0 -) -(1,12544:7246811,36056148:24720180,513147,134348 -g1,12543:11263512,36056148 -g1,12543:12122033,36056148 -g1,12543:14017989,36056148 -k1,12544:31966991,36056148:15931148 -g1,12544:31966991,36056148 -) -] -) -] -r1,12544:32583029,36780320:26214,4925834,0 -) -] -) -) -g1,12544:32583029,36190496 -) -h1,12544:6630773,36806534:0,0,0 -(1,12547:6630773,38043500:25952256,505283,134348 -h1,12546:6630773,38043500:983040,0,0 -k1,12546:10378912,38043500:285872 -k1,12546:15402382,38043500:285872 -k1,12546:19458540,38043500:285872 -k1,12546:22352090,38043500:285872 -k1,12546:25445524,38043500:285872 -k1,12546:26382824,38043500:285872 -k1,12546:27687781,38043500:285872 -(1,12546:27687781,38043500:0,452978,115847 -r1,12546:29452894,38043500:1765113,568825,115847 -k1,12546:27687781,38043500:-1765113 -) -(1,12546:27687781,38043500:1765113,452978,115847 -k1,12546:27687781,38043500:3277 -h1,12546:29449617,38043500:0,411205,112570 -) -k1,12546:29738766,38043500:285872 -k1,12546:32583029,38043500:0 -) -(1,12547:6630773,38884988:25952256,505283,134348 -k1,12546:9789010,38884988:183558 -k1,12546:12168679,38884988:183558 -k1,12546:13636743,38884988:183558 -k1,12546:14924583,38884988:183558 -k1,12546:15855907,38884988:183558 -k1,12546:18202808,38884988:183558 -k1,12546:19072528,38884988:183558 -k1,12546:23200043,38884988:183558 -k1,12546:24575046,38884988:183558 -k1,12546:26940298,38884988:183558 -(1,12546:26940298,38884988:0,414482,115847 -r1,12546:31167394,38884988:4227096,530329,115847 -k1,12546:26940298,38884988:-4227096 -) -(1,12546:26940298,38884988:4227096,414482,115847 -g1,12546:29053846,38884988 -g1,12546:29757270,38884988 -h1,12546:31164117,38884988:0,411205,112570 -) -k1,12546:31350952,38884988:183558 -k1,12546:32583029,38884988:0 -) -(1,12547:6630773,39726476:25952256,513147,134348 -k1,12546:9048692,39726476:139232 -h1,12546:10417739,39726476:0,0,0 -k1,12546:10556971,39726476:139232 -k1,12546:11505572,39726476:139231 -k1,12546:13142957,39726476:139232 -h1,12546:14338334,39726476:0,0,0 -k1,12546:14858330,39726476:139232 -k1,12546:16659555,39726476:139232 -k1,12546:17667138,39726476:139231 -k1,12546:19448702,39726476:139232 -k1,12546:20607019,39726476:139232 -k1,12546:23720930,39726476:139232 -k1,12546:26056273,39726476:139232 -k1,12546:27930897,39726476:139231 -(1,12546:27930897,39726476:0,452978,115847 -r1,12546:30399434,39726476:2468537,568825,115847 -k1,12546:27930897,39726476:-2468537 -) -(1,12546:27930897,39726476:2468537,452978,115847 -k1,12546:27930897,39726476:3277 -h1,12546:30396157,39726476:0,411205,112570 -) -k1,12546:30538666,39726476:139232 -k1,12546:31923737,39726476:139232 -k1,12546:32583029,39726476:0 -) -(1,12547:6630773,40567964:25952256,513147,126483 -k1,12546:9071161,40567964:157769 -k1,12546:10609118,40567964:157769 -k1,12546:12535704,40567964:157769 -k1,12546:13979290,40567964:157770 -k1,12546:15612274,40567964:157769 -k1,12546:17279993,40567964:157769 -k1,12546:19860628,40567964:157769 -k1,12546:21175107,40567964:157769 -k1,12546:22094404,40567964:157769 -k1,12546:23582554,40567964:157769 -k1,12546:25121168,40567964:157770 -k1,12546:26371422,40567964:157769 -k1,12546:27196347,40567964:157769 -(1,12546:27196347,40567964:0,452978,115847 -r1,12546:29664884,40567964:2468537,568825,115847 -k1,12546:27196347,40567964:-2468537 -) -(1,12546:27196347,40567964:2468537,452978,115847 -k1,12546:27196347,40567964:3277 -h1,12546:29661607,40567964:0,411205,112570 -) -k1,12546:29822653,40567964:157769 -k1,12546:32583029,40567964:0 -) -(1,12547:6630773,41409452:25952256,513147,134348 -g1,12546:7600705,41409452 -g1,12546:10461351,41409452 -g1,12546:11319872,41409452 -g1,12546:14378437,41409452 -g1,12546:15236958,41409452 -g1,12546:17756817,41409452 -g1,12546:20264224,41409452 -g1,12546:21695530,41409452 -g1,12546:24173446,41409452 -h1,12546:25542493,41409452:0,0,0 -g1,12546:25741722,41409452 -g1,12546:26750321,41409452 -g1,12546:28447703,41409452 -h1,12546:29244621,41409452:0,0,0 -k1,12547:32583029,41409452:2957644 -g1,12547:32583029,41409452 -) -v1,12549:6630773,42471108:0,393216,0 -(1,12559:6630773,45510161:25952256,3432269,196608 -g1,12559:6630773,45510161 -g1,12559:6630773,45510161 -g1,12559:6434165,45510161 -(1,12559:6434165,45510161:0,3432269,196608 -r1,12559:32779637,45510161:26345472,3628877,196608 -k1,12559:6434165,45510161:-26345472 -) -(1,12559:6434165,45510161:26345472,3432269,196608 -[1,12559:6630773,45510161:25952256,3235661,0 -(1,12551:6630773,42678726:25952256,404226,101187 -(1,12550:6630773,42678726:0,0,0 -g1,12550:6630773,42678726 -g1,12550:6630773,42678726 -g1,12550:6303093,42678726 -(1,12550:6303093,42678726:0,0,0 -) -g1,12550:6630773,42678726 -) -g1,12551:9159939,42678726 -k1,12551:9159939,42678726:0 -h1,12551:9792231,42678726:0,0,0 -k1,12551:32583029,42678726:22790798 -g1,12551:32583029,42678726 -) -(1,12552:6630773,43344904:25952256,410518,101187 -h1,12552:6630773,43344904:0,0,0 -g1,12552:6946919,43344904 -g1,12552:7263065,43344904 -g1,12552:11372960,43344904 -g1,12552:12005252,43344904 -g1,12552:13585982,43344904 -g1,12552:14218274,43344904 -g1,12552:14850566,43344904 -g1,12552:17063587,43344904 -g1,12552:18328171,43344904 -g1,12552:20225045,43344904 -g1,12552:20857337,43344904 -g1,12552:25915668,43344904 -g1,12552:27496398,43344904 -g1,12552:29077127,43344904 -g1,12552:30341710,43344904 -g1,12552:30974002,43344904 -h1,12552:32238584,43344904:0,0,0 -k1,12552:32583029,43344904:344445 -g1,12552:32583029,43344904 -) -(1,12553:6630773,44011082:25952256,410518,101187 -h1,12553:6630773,44011082:0,0,0 -h1,12553:10740667,44011082:0,0,0 -k1,12553:32583029,44011082:21842362 -g1,12553:32583029,44011082 -) -(1,12558:6630773,44742796:25952256,404226,101187 -(1,12555:6630773,44742796:0,0,0 -g1,12555:6630773,44742796 -g1,12555:6630773,44742796 -g1,12555:6303093,44742796 -(1,12555:6303093,44742796:0,0,0 -) -g1,12555:6630773,44742796 -) -g1,12558:7579210,44742796 -g1,12558:8843793,44742796 -g1,12558:11689104,44742796 -g1,12558:14534415,44742796 -g1,12558:17379726,44742796 -g1,12558:20225037,44742796 -h1,12558:22754202,44742796:0,0,0 -k1,12558:32583029,44742796:9828827 -g1,12558:32583029,44742796 -) -(1,12558:6630773,45408974:25952256,404226,101187 -h1,12558:6630773,45408974:0,0,0 -g1,12558:7579210,45408974 -g1,12558:10108376,45408974 -g1,12558:12953687,45408974 -g1,12558:15798998,45408974 -g1,12558:18644309,45408974 -g1,12558:21489620,45408974 -h1,12558:24018785,45408974:0,0,0 -k1,12558:32583029,45408974:8564244 -g1,12558:32583029,45408974 -) -] -) -g1,12559:32583029,45510161 -g1,12559:6630773,45510161 -g1,12559:6630773,45510161 -g1,12559:32583029,45510161 -g1,12559:32583029,45510161 -) -h1,12559:6630773,45706769:0,0,0 -] -(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 -) -] -h1,12565:4262630,4025873:0,0,0 -] -!27080 -}239 -Input:1700:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1701:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1702:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1703:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1704:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1705:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1706:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1707:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1708:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1709:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1710:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1711:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1044 -{240 -[1,12624:4262630,47279633:28320399,43253760,0 -(1,12624:4262630,4025873:0,0,0 -[1,12624:-473657,4025873:25952256,0,0 -(1,12624:-473657,-710414:25952256,0,0 -h1,12624:-473657,-710414:0,0,0 -(1,12624:-473657,-710414:0,0,0 -(1,12624:-473657,-710414:0,0,0 -g1,12624:-473657,-710414 -(1,12624:-473657,-710414:65781,0,65781 -g1,12624:-407876,-710414 -[1,12624:-407876,-644633:0,0,0 +[1,12591:6630773,45706769:25952256,40108032,0 +(1,12529:6630773,6254097:25952256,505283,134348 +h1,12528:6630773,6254097:983040,0,0 +k1,12528:8628487,6254097:386839 +k1,12528:10034412,6254097:386840 +k1,12528:13639069,6254097:386839 +k1,12528:17191298,6254097:386840 +k1,12528:18972088,6254097:386839 +k1,12528:21517683,6254097:386839 +k1,12528:22970794,6254097:386840 +k1,12528:25606829,6254097:386839 +k1,12528:26862020,6254097:386839 +k1,12528:28341345,6254097:386840 +(1,12528:28341345,6254097:0,414482,122846 +r1,12528:31513305,6254097:3171960,537328,122846 +k1,12528:28341345,6254097:-3171960 +) +(1,12528:28341345,6254097:3171960,414482,122846 +k1,12528:28341345,6254097:3277 +h1,12528:31510028,6254097:0,411205,112570 +) +k1,12528:31900144,6254097:386839 +k1,12529:32583029,6254097:0 +) +(1,12529:6630773,7095585:25952256,505283,134348 +(1,12528:6630773,7095585:0,452978,122846 +r1,12528:10154445,7095585:3523672,575824,122846 +k1,12528:6630773,7095585:-3523672 +) +(1,12528:6630773,7095585:3523672,452978,122846 +k1,12528:6630773,7095585:3277 +h1,12528:10151168,7095585:0,411205,112570 +) +k1,12528:10363580,7095585:209135 +k1,12528:13253138,7095585:209135 +k1,12528:14856224,7095585:209135 +(1,12528:14856224,7095585:0,452978,122846 +r1,12528:18379896,7095585:3523672,575824,122846 +k1,12528:14856224,7095585:-3523672 +) +(1,12528:14856224,7095585:3523672,452978,122846 +k1,12528:14856224,7095585:3277 +h1,12528:18376619,7095585:0,411205,112570 +) +k1,12528:18589031,7095585:209135 +k1,12528:19484328,7095585:209135 +k1,12528:20896704,7095585:209135 +k1,12528:21637336,7095585:209135 +k1,12528:23176851,7095585:209134 +k1,12528:24766174,7095585:209135 +k1,12528:26312243,7095585:209135 +k1,12528:27269144,7095585:209135 +k1,12528:28991505,7095585:209135 +k1,12528:29852068,7095585:209135 +k1,12528:31575085,7095585:209135 +k1,12529:32583029,7095585:0 +) +(1,12529:6630773,7937073:25952256,473825,7863 +k1,12529:32583028,7937073:22501784 +g1,12529:32583028,7937073 +) +v1,12531:6630773,9069987:0,393216,0 +(1,12542:6630773,14048329:25952256,5371558,196608 +g1,12542:6630773,14048329 +g1,12542:6630773,14048329 +g1,12542:6434165,14048329 +(1,12542:6434165,14048329:0,5371558,196608 +r1,12542:32779637,14048329:26345472,5568166,196608 +k1,12542:6434165,14048329:-26345472 +) +(1,12542:6434165,14048329:26345472,5371558,196608 +[1,12542:6630773,14048329:25952256,5174950,0 +(1,12533:6630773,9277605:25952256,404226,101187 +(1,12532:6630773,9277605:0,0,0 +g1,12532:6630773,9277605 +g1,12532:6630773,9277605 +g1,12532:6303093,9277605 +(1,12532:6303093,9277605:0,0,0 +) +g1,12532:6630773,9277605 +) +g1,12533:9159939,9277605 +k1,12533:9159939,9277605:0 +h1,12533:9792231,9277605:0,0,0 +k1,12533:32583029,9277605:22790798 +g1,12533:32583029,9277605 +) +(1,12534:6630773,9943783:25952256,410518,82312 +h1,12534:6630773,9943783:0,0,0 +g1,12534:6946919,9943783 +g1,12534:7263065,9943783 +g1,12534:11372960,9943783 +g1,12534:12005252,9943783 +k1,12534:12005252,9943783:0 +h1,12534:13269836,9943783:0,0,0 +k1,12534:32583028,9943783:19313192 +g1,12534:32583028,9943783 +) +(1,12535:6630773,10609961:25952256,404226,101187 +h1,12535:6630773,10609961:0,0,0 +g1,12535:6946919,10609961 +g1,12535:7263065,10609961 +g1,12535:7579211,10609961 +g1,12535:7895357,10609961 +g1,12535:8211503,10609961 +g1,12535:8527649,10609961 +g1,12535:8843795,10609961 +g1,12535:9159941,10609961 +g1,12535:9476087,10609961 +g1,12535:9792233,10609961 +g1,12535:10108379,10609961 +g1,12535:10424525,10609961 +g1,12535:10740671,10609961 +g1,12535:11372963,10609961 +g1,12535:12005255,10609961 +g1,12535:14218276,10609961 +k1,12535:14218276,10609961:0 +h1,12535:15166714,10609961:0,0,0 +k1,12535:32583030,10609961:17416316 +g1,12535:32583030,10609961 +) +(1,12536:6630773,11276139:25952256,404226,82312 +h1,12536:6630773,11276139:0,0,0 +g1,12536:6946919,11276139 +g1,12536:7263065,11276139 +g1,12536:7579211,11276139 +g1,12536:7895357,11276139 +g1,12536:8211503,11276139 +g1,12536:8527649,11276139 +g1,12536:8843795,11276139 +g1,12536:9159941,11276139 +g1,12536:9476087,11276139 +g1,12536:9792233,11276139 +g1,12536:10108379,11276139 +g1,12536:10424525,11276139 +g1,12536:10740671,11276139 +g1,12536:12637545,11276139 +g1,12536:13269837,11276139 +g1,12536:15482858,11276139 +g1,12536:17063587,11276139 +g1,12536:18644316,11276139 +g1,12536:20225045,11276139 +h1,12536:21805773,11276139:0,0,0 +k1,12536:32583029,11276139:10777256 +g1,12536:32583029,11276139 +) +(1,12537:6630773,11942317:25952256,0,0 +h1,12537:6630773,11942317:0,0,0 +h1,12537:6630773,11942317:0,0,0 +k1,12537:32583029,11942317:25952256 +g1,12537:32583029,11942317 +) +(1,12538:6630773,12608495:25952256,404226,107478 +h1,12538:6630773,12608495:0,0,0 +g1,12538:11689104,12608495 +g1,12538:13902124,12608495 +g1,12538:14850562,12608495 +g1,12538:16747436,12608495 +g1,12538:17379728,12608495 +g1,12538:19908894,12608495 +h1,12538:20225040,12608495:0,0,0 +k1,12538:32583029,12608495:12357989 +g1,12538:32583029,12608495 +) +(1,12539:6630773,13274673:25952256,404226,107478 +h1,12539:6630773,13274673:0,0,0 +g1,12539:6946919,13274673 +g1,12539:7263065,13274673 +g1,12539:12321396,13274673 +g1,12539:12953688,13274673 +g1,12539:14218271,13274673 +g1,12539:16115145,13274673 +g1,12539:16747437,13274673 +g1,12539:18328166,13274673 +g1,12539:19908895,13274673 +g1,12539:20541187,13274673 +g1,12539:21489625,13274673 +h1,12539:21805771,13274673:0,0,0 +k1,12539:32583029,13274673:10777258 +g1,12539:32583029,13274673 +) +(1,12540:6630773,13940851:25952256,404226,107478 +h1,12540:6630773,13940851:0,0,0 +g1,12540:6946919,13940851 +g1,12540:7263065,13940851 +k1,12540:7263065,13940851:0 +h1,12540:11056813,13940851:0,0,0 +k1,12540:32583029,13940851:21526216 +g1,12540:32583029,13940851 +) +] +) +g1,12542:32583029,14048329 +g1,12542:6630773,14048329 +g1,12542:6630773,14048329 +g1,12542:32583029,14048329 +g1,12542:32583029,14048329 +) +h1,12542:6630773,14244937:0,0,0 +v1,12546:6630773,16019896:0,393216,0 +(1,12547:6630773,18305928:25952256,2679248,616038 +g1,12547:6630773,18305928 +(1,12547:6630773,18305928:25952256,2679248,616038 +(1,12547:6630773,18921966:25952256,3295286,0 +[1,12547:6630773,18921966:25952256,3295286,0 +(1,12547:6630773,18895752:25952256,3242858,0 +r1,12547:6656987,18895752:26214,3242858,0 +[1,12547:6656987,18895752:25899828,3242858,0 +(1,12547:6656987,18305928:25899828,2063210,0 +[1,12547:7246811,18305928:24720180,2063210,0 +(1,12547:7246811,17330092:24720180,1087374,126483 +k1,12546:8749312,17330092:292798 +k1,12546:11248051,17330092:292797 +k1,12546:12559934,17330092:292798 +k1,12546:15514149,17330092:292798 +k1,12546:17662271,17330092:292798 +k1,12546:18606496,17330092:292797 +k1,12546:19991779,17330092:292798 +(1,12546:19991779,17330092:0,452978,122846 +r1,12547:24218875,17330092:4227096,575824,122846 +k1,12546:19991779,17330092:-4227096 +) +(1,12546:19991779,17330092:4227096,452978,122846 +k1,12546:19991779,17330092:3277 +h1,12546:24215598,17330092:0,411205,112570 +) +k1,12546:24511673,17330092:292798 +k1,12546:27131653,17330092:292797 +k1,12546:28091607,17330092:292798 +(1,12546:28091607,17330092:0,452978,122846 +r1,12547:31966991,17330092:3875384,575824,122846 +k1,12546:28091607,17330092:-3875384 +) +(1,12546:28091607,17330092:3875384,452978,122846 +k1,12546:28091607,17330092:3277 +h1,12546:31963714,17330092:0,411205,112570 +) +k1,12546:31966991,17330092:0 +) +(1,12547:7246811,18171580:24720180,505283,134348 +g1,12546:9355104,18171580 +g1,12546:10170371,18171580 +g1,12546:13209275,18171580 +g1,12546:14427589,18171580 +(1,12546:14427589,18171580:0,459977,115847 +r1,12547:15840990,18171580:1413401,575824,115847 +k1,12546:14427589,18171580:-1413401 +) +(1,12546:14427589,18171580:1413401,459977,115847 +k1,12546:14427589,18171580:3277 +h1,12546:15837713,18171580:0,411205,112570 +) +g1,12546:16040219,18171580 +k1,12547:31966991,18171580:12908839 +g1,12547:31966991,18171580 +) +] +) +] +r1,12547:32583029,18895752:26214,3242858,0 +) +] +) +) +g1,12547:32583029,18305928 +) +h1,12547:6630773,18921966:0,0,0 +(1,12550:6630773,20230190:25952256,513147,134348 +h1,12549:6630773,20230190:983040,0,0 +k1,12549:8414260,20230190:172612 +k1,12549:9605956,20230190:172611 +k1,12549:11162688,20230190:172612 +k1,12549:13996717,20230190:172612 +k1,12549:15037680,20230190:172611 +k1,12549:17030882,20230190:172612 +k1,12549:17559354,20230190:172612 +k1,12549:20494309,20230190:172612 +k1,12549:21997956,20230190:172611 +k1,12549:24352262,20230190:172612 +k1,12549:26260267,20230190:172612 +k1,12549:27451963,20230190:172611 +k1,12549:29278048,20230190:172612 +k1,12549:32583029,20230190:0 +) +(1,12550:6630773,21071678:25952256,513147,126483 +k1,12549:7507932,21071678:261121 +k1,12549:8788139,21071678:261122 +k1,12549:11279450,21071678:261121 +k1,12549:14471341,21071678:261121 +k1,12549:15929149,21071678:261121 +k1,12549:18258587,21071678:261122 +(1,12549:18258587,21071678:0,452978,115847 +r1,12549:20375412,21071678:2116825,568825,115847 +k1,12549:18258587,21071678:-2116825 +) +(1,12549:18258587,21071678:2116825,452978,115847 +k1,12549:18258587,21071678:3277 +h1,12549:20372135,21071678:0,411205,112570 +) +k1,12549:20636533,21071678:261121 +k1,12549:22123833,21071678:261121 +k1,12549:25031298,21071678:261121 +(1,12549:25031298,21071678:0,459977,115847 +r1,12549:27499835,21071678:2468537,575824,115847 +k1,12549:25031298,21071678:-2468537 +) +(1,12549:25031298,21071678:2468537,459977,115847 +k1,12549:25031298,21071678:3277 +h1,12549:27496558,21071678:0,411205,112570 +) +k1,12549:27760957,21071678:261122 +k1,12549:29213523,21071678:261121 +(1,12549:29213523,21071678:0,452978,115847 +r1,12549:31330348,21071678:2116825,568825,115847 +k1,12549:29213523,21071678:-2116825 +) +(1,12549:29213523,21071678:2116825,452978,115847 +k1,12549:29213523,21071678:3277 +h1,12549:31327071,21071678:0,411205,112570 +) +k1,12549:31591469,21071678:261121 +k1,12549:32583029,21071678:0 +) +(1,12550:6630773,21913166:25952256,513147,134348 +k1,12549:10366920,21913166:224073 +k1,12549:11352522,21913166:224074 +k1,12549:12342711,21913166:224073 +k1,12549:15285873,21913166:224073 +k1,12549:17847616,21913166:224074 +k1,12549:18881059,21913166:224073 +k1,12549:19871249,21913166:224074 +k1,12549:23149300,21913166:224073 +k1,12549:26123264,21913166:224073 +k1,12549:29706058,21913166:224074 +k1,12549:31591469,21913166:224073 +k1,12549:32583029,21913166:0 +) +(1,12550:6630773,22754654:25952256,513147,134348 +k1,12549:9713374,22754654:298632 +k1,12549:10959658,22754654:298633 +k1,12549:13655597,22754654:298632 +k1,12549:16343017,22754654:298633 +k1,12549:19152989,22754654:298632 +k1,12549:20945188,22754654:298633 +k1,12549:21929982,22754654:298632 +k1,12549:23247700,22754654:298633 +k1,12549:24343250,22754654:298632 +k1,12549:26480068,22754654:298533 +k1,12549:28440038,22754654:298632 +k1,12549:29500199,22754654:298633 +k1,12549:30817916,22754654:298632 +(1,12549:30817916,22754654:0,459977,115847 +r1,12549:32583029,22754654:1765113,575824,115847 +k1,12549:30817916,22754654:-1765113 +) +(1,12549:30817916,22754654:1765113,459977,115847 +k1,12549:30817916,22754654:3277 +h1,12549:32579752,22754654:0,411205,112570 +) +k1,12549:32583029,22754654:0 +) +(1,12550:6630773,23596142:25952256,505283,126483 +g1,12549:9011040,23596142 +g1,12549:9838104,23596142 +g1,12549:11240574,23596142 +g1,12549:12980554,23596142 +g1,12549:14688422,23596142 +g1,12549:16955967,23596142 +g1,12549:18259478,23596142 +g1,12549:19206473,23596142 +g1,12549:21829879,23596142 +g1,12549:23423059,23596142 +(1,12549:23423059,23596142:0,459977,115847 +r1,12549:29408714,23596142:5985655,575824,115847 +k1,12549:23423059,23596142:-5985655 +) +(1,12549:23423059,23596142:5985655,459977,115847 +k1,12549:23423059,23596142:3277 +h1,12549:29405437,23596142:0,411205,112570 +) +k1,12550:32583029,23596142:3000645 +g1,12550:32583029,23596142 +) +v1,12552:6630773,24729056:0,393216,0 +(1,12558:6630773,26376508:25952256,2040668,196608 +g1,12558:6630773,26376508 +g1,12558:6630773,26376508 +g1,12558:6434165,26376508 +(1,12558:6434165,26376508:0,2040668,196608 +r1,12558:32779637,26376508:26345472,2237276,196608 +k1,12558:6434165,26376508:-26345472 +) +(1,12558:6434165,26376508:26345472,2040668,196608 +[1,12558:6630773,26376508:25952256,1844060,0 +(1,12554:6630773,24936674:25952256,404226,107478 +(1,12553:6630773,24936674:0,0,0 +g1,12553:6630773,24936674 +g1,12553:6630773,24936674 +g1,12553:6303093,24936674 +(1,12553:6303093,24936674:0,0,0 +) +g1,12553:6630773,24936674 +) +k1,12554:6630773,24936674:0 +g1,12554:11689104,24936674 +g1,12554:13902124,24936674 +g1,12554:14850562,24936674 +g1,12554:16747436,24936674 +g1,12554:17379728,24936674 +g1,12554:19908894,24936674 +h1,12554:20225040,24936674:0,0,0 +k1,12554:32583029,24936674:12357989 +g1,12554:32583029,24936674 +) +(1,12555:6630773,25602852:25952256,410518,107478 +h1,12555:6630773,25602852:0,0,0 +g1,12555:6946919,25602852 +g1,12555:7263065,25602852 +g1,12555:12321396,25602852 +g1,12555:12953688,25602852 +g1,12555:14218271,25602852 +g1,12555:16115145,25602852 +g1,12555:16747437,25602852 +g1,12555:18328166,25602852 +g1,12555:19908895,25602852 +g1,12555:20541187,25602852 +g1,12555:21489625,25602852 +g1,12555:23702645,25602852 +g1,12555:24334937,25602852 +g1,12555:27180249,25602852 +h1,12555:27496395,25602852:0,0,0 +k1,12555:32583029,25602852:5086634 +g1,12555:32583029,25602852 +) +(1,12556:6630773,26269030:25952256,404226,107478 +h1,12556:6630773,26269030:0,0,0 +g1,12556:6946919,26269030 +g1,12556:7263065,26269030 +k1,12556:7263065,26269030:0 +h1,12556:11056813,26269030:0,0,0 +k1,12556:32583029,26269030:21526216 +g1,12556:32583029,26269030 +) +] +) +g1,12558:32583029,26376508 +g1,12558:6630773,26376508 +g1,12558:6630773,26376508 +g1,12558:32583029,26376508 +g1,12558:32583029,26376508 +) +h1,12558:6630773,26573116:0,0,0 +v1,12562:6630773,28348075:0,393216,0 +(1,12563:6630773,32317083:25952256,4362224,616038 +g1,12563:6630773,32317083 +(1,12563:6630773,32317083:25952256,4362224,616038 +(1,12563:6630773,32933121:25952256,4978262,0 +[1,12563:6630773,32933121:25952256,4978262,0 +(1,12563:6630773,32906907:25952256,4925834,0 +r1,12563:6656987,32906907:26214,4925834,0 +[1,12563:6656987,32906907:25899828,4925834,0 +(1,12563:6656987,32317083:25899828,3746186,0 +[1,12563:7246811,32317083:24720180,3746186,0 +(1,12563:7246811,29658271:24720180,1087374,134348 +k1,12562:8690182,29658271:233668 +k1,12562:9551685,29658271:233668 +k1,12562:10804438,29658271:233668 +k1,12562:14029826,29658271:233669 +k1,12562:16118818,29658271:233668 +k1,12562:17371571,29658271:233668 +k1,12562:20579918,29658271:233668 +k1,12562:23009697,29658271:233668 +k1,12562:24747416,29658271:233668 +k1,12562:25747201,29658271:233669 +k1,12562:26640161,29658271:233668 +k1,12562:27892914,29658271:233668 +k1,12562:29780055,29658271:233668 +k1,12562:31966991,29658271:0 +) +(1,12563:7246811,30499759:24720180,505283,134348 +k1,12562:10958639,30499759:349831 +k1,12562:11664330,30499759:349831 +k1,12562:13887181,30499759:349832 +k1,12562:17385362,30499759:349831 +k1,12562:19342791,30499759:349831 +k1,12562:20711707,30499759:349831 +k1,12562:22669136,30499759:349831 +k1,12562:24874292,30499759:349832 +k1,12562:26618074,30499759:349831 +k1,12562:28992312,30499759:349831 +k1,12562:31966991,30499759:0 +) +(1,12563:7246811,31341247:24720180,513147,134348 +k1,12562:9718810,31341247:275888 +k1,12562:10653989,31341247:275887 +k1,12562:13272134,31341247:275888 +k1,12562:15891589,31341247:275888 +k1,12562:18752871,31341247:275887 +k1,12562:19680187,31341247:275888 +k1,12562:20975160,31341247:275888 +(1,12562:20975160,31341247:0,452978,115847 +r1,12563:22740273,31341247:1765113,568825,115847 +k1,12562:20975160,31341247:-1765113 +) +(1,12562:20975160,31341247:1765113,452978,115847 +k1,12562:20975160,31341247:3277 +h1,12562:22736996,31341247:0,411205,112570 +) +k1,12562:23016160,31341247:275887 +k1,12562:26218885,31341247:275888 +k1,12562:27392616,31341247:275888 +k1,12562:28954319,31341247:275887 +k1,12562:30573040,31341247:275888 +k1,12562:31966991,31341247:0 +) +(1,12563:7246811,32182735:24720180,513147,134348 +g1,12562:11263512,32182735 +g1,12562:12122033,32182735 +g1,12562:14017989,32182735 +k1,12563:31966991,32182735:15931148 +g1,12563:31966991,32182735 +) +] +) +] +r1,12563:32583029,32906907:26214,4925834,0 +) +] +) +) +g1,12563:32583029,32317083 +) +h1,12563:6630773,32933121:0,0,0 +(1,12566:6630773,34241345:25952256,505283,134348 +h1,12565:6630773,34241345:983040,0,0 +k1,12565:10378912,34241345:285872 +k1,12565:15402382,34241345:285872 +k1,12565:19458540,34241345:285872 +k1,12565:22352090,34241345:285872 +k1,12565:25445524,34241345:285872 +k1,12565:26382824,34241345:285872 +k1,12565:27687781,34241345:285872 +(1,12565:27687781,34241345:0,452978,115847 +r1,12565:29452894,34241345:1765113,568825,115847 +k1,12565:27687781,34241345:-1765113 +) +(1,12565:27687781,34241345:1765113,452978,115847 +k1,12565:27687781,34241345:3277 +h1,12565:29449617,34241345:0,411205,112570 +) +k1,12565:29738766,34241345:285872 +k1,12565:32583029,34241345:0 +) +(1,12566:6630773,35082833:25952256,505283,134348 +k1,12565:9789010,35082833:183558 +k1,12565:12168679,35082833:183558 +k1,12565:13636743,35082833:183558 +k1,12565:14924583,35082833:183558 +k1,12565:15855907,35082833:183558 +k1,12565:18202808,35082833:183558 +k1,12565:19072528,35082833:183558 +k1,12565:23200043,35082833:183558 +k1,12565:24575046,35082833:183558 +k1,12565:26940298,35082833:183558 +(1,12565:26940298,35082833:0,414482,115847 +r1,12565:31167394,35082833:4227096,530329,115847 +k1,12565:26940298,35082833:-4227096 +) +(1,12565:26940298,35082833:4227096,414482,115847 +g1,12565:29053846,35082833 +g1,12565:29757270,35082833 +h1,12565:31164117,35082833:0,411205,112570 +) +k1,12565:31350952,35082833:183558 +k1,12565:32583029,35082833:0 +) +(1,12566:6630773,35924321:25952256,513147,134348 +k1,12565:9048692,35924321:139232 +h1,12565:10417739,35924321:0,0,0 +k1,12565:10556971,35924321:139232 +k1,12565:11505572,35924321:139231 +k1,12565:13142957,35924321:139232 +h1,12565:14338334,35924321:0,0,0 +k1,12565:14858330,35924321:139232 +k1,12565:16659555,35924321:139232 +k1,12565:17667138,35924321:139231 +k1,12565:19448702,35924321:139232 +k1,12565:20607019,35924321:139232 +k1,12565:23720930,35924321:139232 +k1,12565:26056273,35924321:139232 +k1,12565:27930897,35924321:139231 +(1,12565:27930897,35924321:0,452978,115847 +r1,12565:30399434,35924321:2468537,568825,115847 +k1,12565:27930897,35924321:-2468537 +) +(1,12565:27930897,35924321:2468537,452978,115847 +k1,12565:27930897,35924321:3277 +h1,12565:30396157,35924321:0,411205,112570 +) +k1,12565:30538666,35924321:139232 +k1,12565:31923737,35924321:139232 +k1,12565:32583029,35924321:0 +) +(1,12566:6630773,36765809:25952256,513147,126483 +k1,12565:9071161,36765809:157769 +k1,12565:10609118,36765809:157769 +k1,12565:12535704,36765809:157769 +k1,12565:13979290,36765809:157770 +k1,12565:15612274,36765809:157769 +k1,12565:17279993,36765809:157769 +k1,12565:19860628,36765809:157769 +k1,12565:21175107,36765809:157769 +k1,12565:22094404,36765809:157769 +k1,12565:23582554,36765809:157769 +k1,12565:25121168,36765809:157770 +k1,12565:26371422,36765809:157769 +k1,12565:27196347,36765809:157769 +(1,12565:27196347,36765809:0,452978,115847 +r1,12565:29664884,36765809:2468537,568825,115847 +k1,12565:27196347,36765809:-2468537 +) +(1,12565:27196347,36765809:2468537,452978,115847 +k1,12565:27196347,36765809:3277 +h1,12565:29661607,36765809:0,411205,112570 +) +k1,12565:29822653,36765809:157769 +k1,12565:32583029,36765809:0 +) +(1,12566:6630773,37607297:25952256,513147,134348 +g1,12565:7600705,37607297 +g1,12565:10461351,37607297 +g1,12565:11319872,37607297 +g1,12565:14378437,37607297 +g1,12565:15236958,37607297 +g1,12565:17756817,37607297 +g1,12565:20264224,37607297 +g1,12565:21695530,37607297 +g1,12565:24173446,37607297 +h1,12565:25542493,37607297:0,0,0 +g1,12565:25741722,37607297 +g1,12565:26750321,37607297 +g1,12565:28447703,37607297 +h1,12565:29244621,37607297:0,0,0 +k1,12566:32583029,37607297:2957644 +g1,12566:32583029,37607297 +) +v1,12568:6630773,38740211:0,393216,0 +(1,12578:6630773,41779264:25952256,3432269,196608 +g1,12578:6630773,41779264 +g1,12578:6630773,41779264 +g1,12578:6434165,41779264 +(1,12578:6434165,41779264:0,3432269,196608 +r1,12578:32779637,41779264:26345472,3628877,196608 +k1,12578:6434165,41779264:-26345472 +) +(1,12578:6434165,41779264:26345472,3432269,196608 +[1,12578:6630773,41779264:25952256,3235661,0 +(1,12570:6630773,38947829:25952256,404226,101187 +(1,12569:6630773,38947829:0,0,0 +g1,12569:6630773,38947829 +g1,12569:6630773,38947829 +g1,12569:6303093,38947829 +(1,12569:6303093,38947829:0,0,0 +) +g1,12569:6630773,38947829 +) +g1,12570:9159939,38947829 +k1,12570:9159939,38947829:0 +h1,12570:9792231,38947829:0,0,0 +k1,12570:32583029,38947829:22790798 +g1,12570:32583029,38947829 +) +(1,12571:6630773,39614007:25952256,410518,101187 +h1,12571:6630773,39614007:0,0,0 +g1,12571:6946919,39614007 +g1,12571:7263065,39614007 +g1,12571:11372960,39614007 +g1,12571:12005252,39614007 +g1,12571:13585982,39614007 +g1,12571:14218274,39614007 +g1,12571:14850566,39614007 +g1,12571:17063587,39614007 +g1,12571:18328171,39614007 +g1,12571:20225045,39614007 +g1,12571:20857337,39614007 +g1,12571:25915668,39614007 +g1,12571:27496398,39614007 +g1,12571:29077127,39614007 +g1,12571:30341710,39614007 +g1,12571:30974002,39614007 +h1,12571:32238584,39614007:0,0,0 +k1,12571:32583029,39614007:344445 +g1,12571:32583029,39614007 +) +(1,12572:6630773,40280185:25952256,410518,101187 +h1,12572:6630773,40280185:0,0,0 +h1,12572:10740667,40280185:0,0,0 +k1,12572:32583029,40280185:21842362 +g1,12572:32583029,40280185 +) +(1,12577:6630773,41011899:25952256,404226,101187 +(1,12574:6630773,41011899:0,0,0 +g1,12574:6630773,41011899 +g1,12574:6630773,41011899 +g1,12574:6303093,41011899 +(1,12574:6303093,41011899:0,0,0 +) +g1,12574:6630773,41011899 +) +g1,12577:7579210,41011899 +g1,12577:8843793,41011899 +g1,12577:11689104,41011899 +g1,12577:14534415,41011899 +g1,12577:17379726,41011899 +g1,12577:20225037,41011899 +h1,12577:22754202,41011899:0,0,0 +k1,12577:32583029,41011899:9828827 +g1,12577:32583029,41011899 +) +(1,12577:6630773,41678077:25952256,404226,101187 +h1,12577:6630773,41678077:0,0,0 +g1,12577:7579210,41678077 +g1,12577:10108376,41678077 +g1,12577:12953687,41678077 +g1,12577:15798998,41678077 +g1,12577:18644309,41678077 +g1,12577:21489620,41678077 +h1,12577:24018785,41678077:0,0,0 +k1,12577:32583029,41678077:8564244 +g1,12577:32583029,41678077 +) +] +) +g1,12578:32583029,41779264 +g1,12578:6630773,41779264 +g1,12578:6630773,41779264 +g1,12578:32583029,41779264 +g1,12578:32583029,41779264 +) +h1,12578:6630773,41975872:0,0,0 +(1,12582:6630773,43284095:25952256,505283,134348 +h1,12581:6630773,43284095:983040,0,0 +k1,12581:9169965,43284095:152371 +k1,12581:10513781,43284095:152371 +k1,12581:12510335,43284095:152371 +k1,12581:13477974,43284095:152371 +k1,12581:14696616,43284095:152371 +k1,12581:19165844,43284095:152371 +k1,12581:21642777,43284095:152371 +k1,12581:22814233,43284095:152371 +k1,12581:25491051,43284095:152371 +k1,12581:26990842,43284095:152371 +k1,12581:28507017,43284095:152371 +k1,12581:30168027,43284095:152371 +k1,12582:32583029,43284095:0 +) +(1,12582:6630773,44125583:25952256,505283,134348 +k1,12581:7828823,44125583:207801 +k1,12581:11948468,44125583:207801 +k1,12581:12784105,44125583:207802 +k1,12581:14010991,44125583:207801 +k1,12581:16880209,44125583:207801 +k1,12581:19117005,44125583:207801 +k1,12581:20193158,44125583:207801 +k1,12581:21931225,44125583:207801 +k1,12581:22790455,44125583:207802 +k1,12581:24090741,44125583:207801 +(1,12581:24090741,44125583:0,452978,115847 +r1,12581:29372972,44125583:5282231,568825,115847 +k1,12581:24090741,44125583:-5282231 +) +(1,12581:24090741,44125583:5282231,452978,115847 +k1,12581:24090741,44125583:3277 +h1,12581:29369695,44125583:0,411205,112570 +) +k1,12581:29580773,44125583:207801 +k1,12581:30440002,44125583:207801 +k1,12581:32583029,44125583:0 +) +(1,12582:6630773,44967071:25952256,513147,134348 +g1,12581:8114508,44967071 +g1,12581:9332822,44967071 +g1,12581:10758230,44967071 +g1,12581:11488956,44967071 +g1,12581:12754456,44967071 +g1,12581:15303151,44967071 +g1,12581:16115142,44967071 +g1,12581:17333456,44967071 +g1,12581:19022318,44967071 +g1,12581:19880839,44967071 +g1,12581:21099153,44967071 +g1,12581:23822829,44967071 +k1,12582:32583029,44967071:7239109 +g1,12582:32583029,44967071 +) +v1,12584:6630773,46099985:0,393216,0 +] +(1,12591:32583029,45706769:0,0,0 +g1,12591:32583029,45706769 +) +) +] +(1,12591:6630773,47279633:25952256,0,0 +h1,12591:6630773,47279633:25952256,0,0 +) +] +h1,12591:4262630,4025873:0,0,0 +] +!27075 +}240 +Input:1696:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1697:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1698:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1699:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1700:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1701:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1702:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1703:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1704:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1705:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1706:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1707:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1116 +{241 +[1,12643:4262630,47279633:28320399,43253760,0 +(1,12643:4262630,4025873:0,0,0 +[1,12643:-473657,4025873:25952256,0,0 +(1,12643:-473657,-710414:25952256,0,0 +h1,12643:-473657,-710414:0,0,0 +(1,12643:-473657,-710414:0,0,0 +(1,12643:-473657,-710414:0,0,0 +g1,12643:-473657,-710414 +(1,12643:-473657,-710414:65781,0,65781 +g1,12643:-407876,-710414 +[1,12643:-407876,-644633:0,0,0 ] ) -k1,12624:-473657,-710414:-65781 +k1,12643:-473657,-710414:-65781 ) ) -k1,12624:25478599,-710414:25952256 -g1,12624:25478599,-710414 +k1,12643:25478599,-710414:25952256 +g1,12643:25478599,-710414 ) ] ) -[1,12624:6630773,47279633:25952256,43253760,0 -[1,12624:6630773,4812305:25952256,786432,0 -(1,12624:6630773,4812305:25952256,485622,11795 -(1,12624:6630773,4812305:25952256,485622,11795 -g1,12624:3078558,4812305 -[1,12624:3078558,4812305:0,0,0 -(1,12624:3078558,2439708:0,1703936,0 -k1,12624:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12624:2537886,2439708:1179648,16384,0 +[1,12643:6630773,47279633:25952256,43253760,0 +[1,12643:6630773,4812305:25952256,786432,0 +(1,12643:6630773,4812305:25952256,513147,134348 +(1,12643:6630773,4812305:25952256,513147,134348 +g1,12643:3078558,4812305 +[1,12643:3078558,4812305:0,0,0 +(1,12643:3078558,2439708:0,1703936,0 +k1,12643:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12643:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12624:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12643:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12624:3078558,4812305:0,0,0 -(1,12624:3078558,2439708:0,1703936,0 -g1,12624:29030814,2439708 -g1,12624:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12624:36151628,1915420:16384,1179648,0 +[1,12643:3078558,4812305:0,0,0 +(1,12643:3078558,2439708:0,1703936,0 +g1,12643:29030814,2439708 +g1,12643:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12643:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12624:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12643:37855564,2439708:1179648,16384,0 ) ) -k1,12624:3078556,2439708:-34777008 +k1,12643:3078556,2439708:-34777008 ) ] -[1,12624:3078558,4812305:0,0,0 -(1,12624:3078558,49800853:0,16384,2228224 -k1,12624:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12624:2537886,49800853:1179648,16384,0 +[1,12643:3078558,4812305:0,0,0 +(1,12643:3078558,49800853:0,16384,2228224 +k1,12643:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12643:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12624:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12643:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12624:3078558,4812305:0,0,0 -(1,12624:3078558,49800853:0,16384,2228224 -g1,12624:29030814,49800853 -g1,12624:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12624:36151628,51504789:16384,1179648,0 +[1,12643:3078558,4812305:0,0,0 +(1,12643:3078558,49800853:0,16384,2228224 +g1,12643:29030814,49800853 +g1,12643:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12643:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12624:37855564,49800853:1179648,16384,0 -) -) -k1,12624:3078556,49800853:-34777008 -) -] -g1,12624:6630773,4812305 -g1,12624:6630773,4812305 -g1,12624:10347975,4812305 -k1,12624:31387651,4812305:21039676 -) -) -] -[1,12624:6630773,45706769:25952256,40108032,0 -(1,12624:6630773,45706769:25952256,40108032,0 -(1,12624:6630773,45706769:0,0,0 -g1,12624:6630773,45706769 -) -[1,12624:6630773,45706769:25952256,40108032,0 -(1,12563:6630773,6254097:25952256,505283,134348 -h1,12562:6630773,6254097:983040,0,0 -k1,12562:9193995,6254097:176401 -k1,12562:10561841,6254097:176401 -k1,12562:12582425,6254097:176401 -k1,12562:13574094,6254097:176401 -k1,12562:14816766,6254097:176401 -k1,12562:19310023,6254097:176400 -k1,12562:21810986,6254097:176401 -k1,12562:23006472,6254097:176401 -k1,12562:25707320,6254097:176401 -k1,12562:27231141,6254097:176401 -k1,12562:28771346,6254097:176401 -k1,12562:30456386,6254097:176401 -k1,12563:32583029,6254097:0 -) -(1,12563:6630773,7095585:25952256,505283,134348 -k1,12562:8093151,7095585:183771 -k1,12562:12188767,7095585:183772 -k1,12562:13000373,7095585:183771 -k1,12562:14203229,7095585:183771 -k1,12562:17048418,7095585:183772 -k1,12562:19261184,7095585:183771 -k1,12562:20313307,7095585:183771 -k1,12562:22027345,7095585:183772 -k1,12562:22862544,7095585:183771 -k1,12562:24138800,7095585:183771 -(1,12562:24138800,7095585:0,452978,115847 -r1,12562:29421031,7095585:5282231,568825,115847 -k1,12562:24138800,7095585:-5282231 -) -(1,12562:24138800,7095585:5282231,452978,115847 -k1,12562:24138800,7095585:3277 -h1,12562:29417754,7095585:0,411205,112570 -) -k1,12562:29604803,7095585:183772 -k1,12562:30440002,7095585:183771 -k1,12562:32583029,7095585:0 -) -(1,12563:6630773,7937073:25952256,513147,134348 -g1,12562:8114508,7937073 -g1,12562:9332822,7937073 -g1,12562:10758230,7937073 -g1,12562:11488956,7937073 -g1,12562:12754456,7937073 -g1,12562:15303151,7937073 -g1,12562:16115142,7937073 -g1,12562:17333456,7937073 -g1,12562:19022318,7937073 -g1,12562:19880839,7937073 -g1,12562:21099153,7937073 -g1,12562:23822829,7937073 -k1,12563:32583029,7937073:7239109 -g1,12563:32583029,7937073 -) -v1,12565:6630773,9127539:0,393216,0 -(1,12572:6630773,11434878:25952256,2700555,196608 -g1,12572:6630773,11434878 -g1,12572:6630773,11434878 -g1,12572:6434165,11434878 -(1,12572:6434165,11434878:0,2700555,196608 -r1,12572:32779637,11434878:26345472,2897163,196608 -k1,12572:6434165,11434878:-26345472 -) -(1,12572:6434165,11434878:26345472,2700555,196608 -[1,12572:6630773,11434878:25952256,2503947,0 -(1,12567:6630773,9335157:25952256,404226,107478 -(1,12566:6630773,9335157:0,0,0 -g1,12566:6630773,9335157 -g1,12566:6630773,9335157 -g1,12566:6303093,9335157 -(1,12566:6303093,9335157:0,0,0 -) -g1,12566:6630773,9335157 -) -k1,12567:6630773,9335157:0 -g1,12567:11689104,9335157 -g1,12567:13902124,9335157 -g1,12567:14850562,9335157 -g1,12567:16747436,9335157 -g1,12567:17379728,9335157 -g1,12567:19908894,9335157 -h1,12567:20225040,9335157:0,0,0 -k1,12567:32583029,9335157:12357989 -g1,12567:32583029,9335157 -) -(1,12568:6630773,10001335:25952256,404226,107478 -h1,12568:6630773,10001335:0,0,0 -g1,12568:6946919,10001335 -g1,12568:7263065,10001335 -g1,12568:12321396,10001335 -g1,12568:12953688,10001335 -g1,12568:14850563,10001335 -g1,12568:16747437,10001335 -g1,12568:17379729,10001335 -g1,12568:19276604,10001335 -g1,12568:20857333,10001335 -g1,12568:21489625,10001335 -g1,12568:22438063,10001335 -h1,12568:22754209,10001335:0,0,0 -k1,12568:32583029,10001335:9828820 -g1,12568:32583029,10001335 -) -(1,12569:6630773,10667513:25952256,404226,107478 -h1,12569:6630773,10667513:0,0,0 -g1,12569:6946919,10667513 -g1,12569:7263065,10667513 -g1,12569:11372959,10667513 -h1,12569:11689105,10667513:0,0,0 -k1,12569:32583029,10667513:20893924 -g1,12569:32583029,10667513 -) -(1,12570:6630773,11333691:25952256,404226,101187 -h1,12570:6630773,11333691:0,0,0 -g1,12570:6946919,11333691 -g1,12570:7263065,11333691 -g1,12570:12321397,11333691 -g1,12570:12953689,11333691 -h1,12570:14218272,11333691:0,0,0 -k1,12570:32583028,11333691:18364756 -g1,12570:32583028,11333691 -) -] -) -g1,12572:32583029,11434878 -g1,12572:6630773,11434878 -g1,12572:6630773,11434878 -g1,12572:32583029,11434878 -g1,12572:32583029,11434878 -) -h1,12572:6630773,11631486:0,0,0 -(1,12575:6630773,21283999:25952256,9062689,0 -k1,12575:10523651,21283999:3892878 -h1,12574:10523651,21283999:0,0,0 -(1,12574:10523651,21283999:18166500,9062689,0 -(1,12574:10523651,21283999:18167381,9062712,0 -(1,12574:10523651,21283999:18167381,9062712,0 -(1,12574:10523651,21283999:0,9062712,0 -(1,12574:10523651,21283999:0,14155776,0 -(1,12574:10523651,21283999:28377088,14155776,0 -) -k1,12574:10523651,21283999:-28377088 -) -) -g1,12574:28691032,21283999 -) -) -) -g1,12575:28690151,21283999 -k1,12575:32583029,21283999:3892878 -) -(1,12583:6630773,22125487:25952256,505283,126483 -h1,12582:6630773,22125487:983040,0,0 -k1,12582:8453247,22125487:211599 -k1,12582:9683932,22125487:211600 -k1,12582:12556948,22125487:211599 -k1,12582:14797542,22125487:211599 -k1,12582:15877493,22125487:211599 -k1,12582:18674488,22125487:211600 -k1,12582:19537515,22125487:211599 -k1,12582:21262996,22125487:211599 -k1,12582:22493680,22125487:211599 -k1,12582:23931459,22125487:211600 -k1,12582:24794486,22125487:211599 -k1,12582:25753851,22125487:211599 -k1,12582:28302464,22125487:211599 -k1,12582:28983957,22125487:211600 -k1,12582:29727053,22125487:211599 -k1,12582:31224468,22125487:211599 -k1,12583:32583029,22125487:0 -) -(1,12583:6630773,22966975:25952256,513147,126483 -k1,12582:8491070,22966975:202236 -k1,12582:9884752,22966975:202237 -k1,12582:12374195,22966975:202236 -k1,12582:16015761,22966975:202237 -k1,12582:16869425,22966975:202236 -k1,12582:18713994,22966975:202237 -k1,12582:21428225,22966975:202236 -k1,12582:23474645,22966975:202237 -k1,12582:24486251,22966975:202236 -k1,12582:25707573,22966975:202237 -k1,12582:26705416,22966975:202236 -k1,12582:28917642,22966975:202237 -(1,12582:28917642,22966975:0,452978,115847 -r1,12582:30682755,22966975:1765113,568825,115847 -k1,12582:28917642,22966975:-1765113 -) -(1,12582:28917642,22966975:1765113,452978,115847 -k1,12582:28917642,22966975:3277 -h1,12582:30679478,22966975:0,411205,112570 -) -k1,12582:30884991,22966975:202236 -k1,12582:32583029,22966975:0 -) -(1,12583:6630773,23808463:25952256,513147,134348 -k1,12582:9010955,23808463:198488 -k1,12582:10228527,23808463:198487 -k1,12582:13234577,23808463:198488 -k1,12582:14380715,23808463:198487 -(1,12582:14380715,23808463:0,452978,115847 -r1,12582:16145828,23808463:1765113,568825,115847 -k1,12582:14380715,23808463:-1765113 -) -(1,12582:14380715,23808463:1765113,452978,115847 -k1,12582:14380715,23808463:3277 -h1,12582:16142551,23808463:0,411205,112570 -) -k1,12582:16517986,23808463:198488 -k1,12582:18204796,23808463:198487 -k1,12582:19271636,23808463:198488 -k1,12582:20562608,23808463:198487 -(1,12582:20562608,23808463:0,452978,122846 -r1,12582:24437992,23808463:3875384,575824,122846 -k1,12582:20562608,23808463:-3875384 -) -(1,12582:20562608,23808463:3875384,452978,122846 -k1,12582:20562608,23808463:3277 -h1,12582:24434715,23808463:0,411205,112570 -) -k1,12582:24636480,23808463:198488 -k1,12582:26228918,23808463:198487 -k1,12582:28623517,23808463:198488 -k1,12582:29473432,23808463:198487 -k1,12582:30419686,23808463:198488 -k1,12582:32583029,23808463:0 -) -(1,12583:6630773,24649951:25952256,513147,126483 -k1,12582:8061267,24649951:163028 -k1,12582:11994581,24649951:163028 -k1,12582:14507730,24649951:163028 -k1,12582:15480127,24649951:163027 -k1,12582:16662240,24649951:163028 -k1,12582:17620875,24649951:163028 -k1,12582:19793892,24649951:163028 -k1,12582:20976005,24649951:163028 -k1,12582:22238727,24649951:163028 -k1,12582:23053183,24649951:163028 -(1,12582:23053183,24649951:0,452978,115847 -r1,12582:24818296,24649951:1765113,568825,115847 -k1,12582:23053183,24649951:-1765113 -) -(1,12582:23053183,24649951:1765113,452978,115847 -k1,12582:23053183,24649951:3277 -h1,12582:24815019,24649951:0,411205,112570 -) -k1,12582:25154993,24649951:163027 -k1,12582:26514708,24649951:163028 -k1,12582:28331209,24649951:163028 -k1,12582:31478747,24649951:163028 -k1,12582:32583029,24649951:0 -) -(1,12583:6630773,25491439:25952256,513147,134348 -g1,12582:7577768,25491439 -g1,12582:9290223,25491439 -g1,12582:10437103,25491439 -g1,12582:12910431,25491439 -g1,12582:16084339,25491439 -g1,12582:18479679,25491439 -g1,12582:19745179,25491439 -g1,12582:22879110,25491439 -k1,12583:32583029,25491439:7144738 -g1,12583:32583029,25491439 -) -v1,12585:6630773,26681905:0,393216,0 -(1,12591:6630773,28329357:25952256,2040668,196608 -g1,12591:6630773,28329357 -g1,12591:6630773,28329357 -g1,12591:6434165,28329357 -(1,12591:6434165,28329357:0,2040668,196608 -r1,12591:32779637,28329357:26345472,2237276,196608 -k1,12591:6434165,28329357:-26345472 -) -(1,12591:6434165,28329357:26345472,2040668,196608 -[1,12591:6630773,28329357:25952256,1844060,0 -(1,12587:6630773,26889523:25952256,404226,107478 -(1,12586:6630773,26889523:0,0,0 -g1,12586:6630773,26889523 -g1,12586:6630773,26889523 -g1,12586:6303093,26889523 -(1,12586:6303093,26889523:0,0,0 -) -g1,12586:6630773,26889523 -) -k1,12587:6630773,26889523:0 -g1,12587:11689104,26889523 -g1,12587:13902124,26889523 -g1,12587:14850562,26889523 -g1,12587:16747436,26889523 -g1,12587:17379728,26889523 -g1,12587:22438059,26889523 -g1,12587:23386497,26889523 -g1,12587:24967226,26889523 -g1,12587:26231809,26889523 -g1,12587:26864101,26889523 -g1,12587:28760975,26889523 -h1,12587:29077121,26889523:0,0,0 -k1,12587:32583029,26889523:3505908 -g1,12587:32583029,26889523 -) -(1,12588:6630773,27555701:25952256,404226,107478 -h1,12588:6630773,27555701:0,0,0 -g1,12588:6946919,27555701 -g1,12588:7263065,27555701 -g1,12588:12321396,27555701 -g1,12588:12953688,27555701 -g1,12588:14850563,27555701 -g1,12588:16747437,27555701 -g1,12588:17379729,27555701 -g1,12588:19276604,27555701 -g1,12588:20857333,27555701 -g1,12588:21489625,27555701 -g1,12588:22438063,27555701 -h1,12588:22754209,27555701:0,0,0 -k1,12588:32583029,27555701:9828820 -g1,12588:32583029,27555701 -) -(1,12589:6630773,28221879:25952256,404226,107478 -h1,12589:6630773,28221879:0,0,0 -g1,12589:6946919,28221879 -g1,12589:7263065,28221879 -k1,12589:7263065,28221879:0 -h1,12589:11056813,28221879:0,0,0 -k1,12589:32583029,28221879:21526216 -g1,12589:32583029,28221879 -) -] -) -g1,12591:32583029,28329357 -g1,12591:6630773,28329357 -g1,12591:6630773,28329357 -g1,12591:32583029,28329357 -g1,12591:32583029,28329357 -) -h1,12591:6630773,28525965:0,0,0 -(1,12595:6630773,29891741:25952256,513147,126483 -h1,12594:6630773,29891741:983040,0,0 -k1,12594:8660504,29891741:228802 -(1,12594:8660504,29891741:0,452978,122846 -r1,12594:12887600,29891741:4227096,575824,122846 -k1,12594:8660504,29891741:-4227096 -) -(1,12594:8660504,29891741:4227096,452978,122846 -k1,12594:8660504,29891741:3277 -h1,12594:12884323,29891741:0,411205,112570 -) -k1,12594:13116403,29891741:228803 -k1,12594:15178902,29891741:228802 -k1,12594:16426790,29891741:228803 -k1,12594:18309065,29891741:228802 -k1,12594:22148901,29891741:228802 -k1,12594:23063866,29891741:228803 -(1,12594:23063866,29891741:0,452978,122846 -r1,12594:26939250,29891741:3875384,575824,122846 -k1,12594:23063866,29891741:-3875384 -) -(1,12594:23063866,29891741:3875384,452978,122846 -k1,12594:23063866,29891741:3277 -h1,12594:26935973,29891741:0,411205,112570 -) -k1,12594:27168052,29891741:228802 -k1,12594:29467793,29891741:228803 -k1,12594:30644246,29891741:228802 -(1,12594:30644246,29891741:0,452978,122846 -r1,12594:32409359,29891741:1765113,575824,122846 -k1,12594:30644246,29891741:-1765113 -) -(1,12594:30644246,29891741:1765113,452978,122846 -k1,12594:30644246,29891741:3277 -h1,12594:32406082,29891741:0,411205,112570 -) -k1,12594:32583029,29891741:0 -) -(1,12595:6630773,30733229:25952256,513147,126483 -k1,12594:7639020,30733229:139895 -k1,12594:9811842,30733229:139895 -k1,12594:12621019,30733229:139896 -k1,12594:14629345,30733229:139895 -k1,12594:16144841,30733229:139895 -k1,12594:17303821,30733229:139895 -k1,12594:20670709,30733229:139895 -k1,12594:24421639,30733229:139896 -k1,12594:27742652,30733229:139895 -k1,12594:28533975,30733229:139895 -(1,12594:28533975,30733229:0,452978,122846 -r1,12594:32409359,30733229:3875384,575824,122846 -k1,12594:28533975,30733229:-3875384 -) -(1,12594:28533975,30733229:3875384,452978,122846 -k1,12594:28533975,30733229:3277 -h1,12594:32406082,30733229:0,411205,112570 -) -k1,12594:32583029,30733229:0 -) -(1,12595:6630773,31574717:25952256,513147,126483 -k1,12594:7762322,31574717:178000 -k1,12594:9277257,31574717:178001 -k1,12594:11003873,31574717:178000 -k1,12594:11833301,31574717:178000 -k1,12594:13464890,31574717:178000 -k1,12594:14661976,31574717:178001 -k1,12594:17105556,31574717:178000 -k1,12594:19098248,31574717:178000 -k1,12594:19935541,31574717:178001 -k1,12594:21132626,31574717:178000 -k1,12594:23450377,31574717:178000 -k1,12594:24796885,31574717:178001 -k1,12594:25657770,31574717:178000 -k1,12594:26854855,31574717:178000 -k1,12594:28648973,31574717:178000 -k1,12594:30340200,31574717:178001 -k1,12594:31169628,31574717:178000 -(1,12594:31169628,31574717:0,459977,115847 -r1,12594:32583029,31574717:1413401,575824,115847 -k1,12594:31169628,31574717:-1413401 -) -(1,12594:31169628,31574717:1413401,459977,115847 -k1,12594:31169628,31574717:3277 -h1,12594:32579752,31574717:0,411205,112570 -) -k1,12594:32583029,31574717:0 -) -(1,12595:6630773,32416205:25952256,513147,134348 -k1,12594:7816420,32416205:166562 -k1,12594:11080213,32416205:166562 -k1,12594:11929661,32416205:166563 -k1,12594:12747651,32416205:166562 -k1,12594:15154889,32416205:166562 -k1,12594:16340536,32416205:166562 -k1,12594:20463507,32416205:166563 -k1,12594:21289361,32416205:166562 -k1,12594:22475008,32416205:166562 -k1,12594:25212547,32416205:166562 -k1,12594:26208140,32416205:166563 -k1,12594:29257631,32416205:166562 -k1,12594:30443278,32416205:166562 -k1,12594:32583029,32416205:0 -) -(1,12595:6630773,33257693:25952256,505283,126483 -k1,12594:8257954,33257693:285004 -k1,12594:9635443,33257693:285004 -(1,12594:9635443,33257693:0,452978,115847 -r1,12594:14565963,33257693:4930520,568825,115847 -k1,12594:9635443,33257693:-4930520 -) -(1,12594:9635443,33257693:4930520,452978,115847 -g1,12594:13507550,33257693 -g1,12594:14210974,33257693 -h1,12594:14562686,33257693:0,411205,112570 -) -k1,12594:15024637,33257693:285004 -k1,12594:17498544,33257693:285004 -k1,12594:21139648,33257693:285005 -k1,12594:21956149,33257693:285004 -k1,12594:25502224,33257693:285004 -k1,12594:26548756,33257693:285004 -k1,12594:30114492,33257693:285004 -(1,12594:30114492,33257693:0,452978,115847 -r1,12594:32583029,33257693:2468537,568825,115847 -k1,12594:30114492,33257693:-2468537 -) -(1,12594:30114492,33257693:2468537,452978,115847 -k1,12594:30114492,33257693:3277 -h1,12594:32579752,33257693:0,411205,112570 -) -k1,12594:32583029,33257693:0 -) -(1,12595:6630773,34099181:25952256,513147,134348 -g1,12594:8021447,34099181 -g1,12594:9239761,34099181 -g1,12594:10707767,34099181 -g1,12594:11566288,34099181 -g1,12594:12784602,34099181 -g1,12594:15238270,34099181 -g1,12594:17726672,34099181 -g1,12594:18944986,34099181 -g1,12594:20370394,34099181 -g1,12594:21331151,34099181 -(1,12594:21331151,34099181:0,452978,122846 -r1,12594:25909959,34099181:4578808,575824,122846 -k1,12594:21331151,34099181:-4578808 -) -(1,12594:21331151,34099181:4578808,452978,122846 -k1,12594:21331151,34099181:3277 -h1,12594:25906682,34099181:0,411205,112570 -) -k1,12595:32583029,34099181:6499400 -g1,12595:32583029,34099181 -) -v1,12598:6630773,35289647:0,393216,0 -(1,12613:6630773,42926410:25952256,8029979,196608 -g1,12613:6630773,42926410 -g1,12613:6630773,42926410 -g1,12613:6434165,42926410 -(1,12613:6434165,42926410:0,8029979,196608 -r1,12613:32779637,42926410:26345472,8226587,196608 -k1,12613:6434165,42926410:-26345472 -) -(1,12613:6434165,42926410:26345472,8029979,196608 -[1,12613:6630773,42926410:25952256,7833371,0 -(1,12600:6630773,35497265:25952256,404226,101187 -(1,12599:6630773,35497265:0,0,0 -g1,12599:6630773,35497265 -g1,12599:6630773,35497265 -g1,12599:6303093,35497265 -(1,12599:6303093,35497265:0,0,0 -) -g1,12599:6630773,35497265 -) -g1,12600:9159939,35497265 -k1,12600:9159939,35497265:0 -h1,12600:9792231,35497265:0,0,0 -k1,12600:32583029,35497265:22790798 -g1,12600:32583029,35497265 -) -(1,12601:6630773,36163443:25952256,410518,101187 -h1,12601:6630773,36163443:0,0,0 -g1,12601:6946919,36163443 -g1,12601:7263065,36163443 -g1,12601:11372960,36163443 -g1,12601:12005252,36163443 -g1,12601:13585982,36163443 -g1,12601:14218274,36163443 -g1,12601:14850566,36163443 -g1,12601:17063587,36163443 -k1,12601:17063587,36163443:0 -h1,12601:18012025,36163443:0,0,0 -k1,12601:32583029,36163443:14571004 -g1,12601:32583029,36163443 -) -(1,12602:6630773,36829621:25952256,410518,82312 -h1,12602:6630773,36829621:0,0,0 -g1,12602:6946919,36829621 -g1,12602:7263065,36829621 -g1,12602:7579211,36829621 -g1,12602:7895357,36829621 -g1,12602:8211503,36829621 -g1,12602:8527649,36829621 -g1,12602:8843795,36829621 -g1,12602:9159941,36829621 -g1,12602:9476087,36829621 -g1,12602:9792233,36829621 -g1,12602:10108379,36829621 -g1,12602:10424525,36829621 -g1,12602:10740671,36829621 -g1,12602:12637545,36829621 -g1,12602:13269837,36829621 -g1,12602:16115149,36829621 -g1,12602:18328169,36829621 -g1,12602:21173481,36829621 -g1,12602:23702647,36829621 -h1,12602:26231812,36829621:0,0,0 -k1,12602:32583029,36829621:6351217 -g1,12602:32583029,36829621 -) -(1,12603:6630773,37495799:25952256,0,0 -h1,12603:6630773,37495799:0,0,0 -h1,12603:6630773,37495799:0,0,0 -k1,12603:32583029,37495799:25952256 -g1,12603:32583029,37495799 -) -(1,12604:6630773,38161977:25952256,404226,107478 -h1,12604:6630773,38161977:0,0,0 -g1,12604:11689104,38161977 -g1,12604:13902124,38161977 -g1,12604:14850562,38161977 -g1,12604:16747436,38161977 -g1,12604:17379728,38161977 -g1,12604:19908894,38161977 -h1,12604:20225040,38161977:0,0,0 -k1,12604:32583029,38161977:12357989 -g1,12604:32583029,38161977 -) -(1,12605:6630773,38828155:25952256,404226,107478 -h1,12605:6630773,38828155:0,0,0 -g1,12605:6946919,38828155 -g1,12605:7263065,38828155 -g1,12605:12637542,38828155 -g1,12605:13269834,38828155 -g1,12605:15166709,38828155 -g1,12605:16747438,38828155 -g1,12605:17379730,38828155 -k1,12605:17379730,38828155:0 -h1,12605:18012022,38828155:0,0,0 -k1,12605:32583029,38828155:14571007 -g1,12605:32583029,38828155 -) -(1,12606:6630773,39494333:25952256,404226,82312 -h1,12606:6630773,39494333:0,0,0 -g1,12606:6946919,39494333 -g1,12606:7263065,39494333 -g1,12606:7579211,39494333 -g1,12606:7895357,39494333 -g1,12606:8211503,39494333 -g1,12606:8527649,39494333 -g1,12606:8843795,39494333 -g1,12606:9159941,39494333 -g1,12606:9476087,39494333 -g1,12606:9792233,39494333 -g1,12606:10108379,39494333 -g1,12606:10424525,39494333 -g1,12606:10740671,39494333 -g1,12606:14218274,39494333 -g1,12606:14850566,39494333 -k1,12606:14850566,39494333:0 -h1,12606:15799003,39494333:0,0,0 -k1,12606:32583029,39494333:16784026 -g1,12606:32583029,39494333 -) -(1,12607:6630773,40160511:25952256,404226,82312 -h1,12607:6630773,40160511:0,0,0 -g1,12607:6946919,40160511 -g1,12607:7263065,40160511 -g1,12607:7579211,40160511 -g1,12607:7895357,40160511 -g1,12607:8211503,40160511 -g1,12607:8527649,40160511 -g1,12607:8843795,40160511 -g1,12607:9159941,40160511 -g1,12607:9476087,40160511 -g1,12607:9792233,40160511 -g1,12607:10108379,40160511 -g1,12607:10424525,40160511 -g1,12607:10740671,40160511 -g1,12607:13269837,40160511 -g1,12607:13902129,40160511 -g1,12607:16431296,40160511 -k1,12607:16431296,40160511:0 -h1,12607:19276608,40160511:0,0,0 -k1,12607:32583029,40160511:13306421 -g1,12607:32583029,40160511 -) -(1,12608:6630773,40826689:25952256,404226,107478 -h1,12608:6630773,40826689:0,0,0 -g1,12608:6946919,40826689 -g1,12608:7263065,40826689 -g1,12608:7579211,40826689 -g1,12608:7895357,40826689 -g1,12608:8211503,40826689 -g1,12608:8527649,40826689 -g1,12608:8843795,40826689 -g1,12608:9159941,40826689 -g1,12608:9476087,40826689 -g1,12608:9792233,40826689 -g1,12608:10108379,40826689 -g1,12608:10424525,40826689 -g1,12608:10740671,40826689 -g1,12608:15166711,40826689 -g1,12608:15799003,40826689 -g1,12608:19276607,40826689 -k1,12608:19276607,40826689:0 -h1,12608:22121919,40826689:0,0,0 -k1,12608:32583029,40826689:10461110 -g1,12608:32583029,40826689 -) -(1,12609:6630773,41492867:25952256,410518,101187 -h1,12609:6630773,41492867:0,0,0 -g1,12609:6946919,41492867 -g1,12609:7263065,41492867 -g1,12609:7579211,41492867 -g1,12609:7895357,41492867 -g1,12609:8211503,41492867 -g1,12609:8527649,41492867 -g1,12609:8843795,41492867 -g1,12609:9159941,41492867 -g1,12609:9476087,41492867 -g1,12609:9792233,41492867 -g1,12609:10108379,41492867 -g1,12609:10424525,41492867 -g1,12609:10740671,41492867 -g1,12609:12321400,41492867 -g1,12609:12953692,41492867 -g1,12609:16115149,41492867 -g1,12609:18012023,41492867 -g1,12609:18644315,41492867 -g1,12609:20225044,41492867 -h1,12609:20541190,41492867:0,0,0 -k1,12609:32583029,41492867:12041839 -g1,12609:32583029,41492867 -) -(1,12610:6630773,42159045:25952256,404226,107478 -h1,12610:6630773,42159045:0,0,0 -g1,12610:6946919,42159045 -g1,12610:7263065,42159045 -g1,12610:11372959,42159045 -h1,12610:11689105,42159045:0,0,0 -k1,12610:32583029,42159045:20893924 -g1,12610:32583029,42159045 -) -(1,12611:6630773,42825223:25952256,404226,101187 -h1,12611:6630773,42825223:0,0,0 -g1,12611:6946919,42825223 -g1,12611:7263065,42825223 -g1,12611:12321397,42825223 -g1,12611:12953689,42825223 -h1,12611:14218272,42825223:0,0,0 -k1,12611:32583028,42825223:18364756 -g1,12611:32583028,42825223 -) -] -) -g1,12613:32583029,42926410 -g1,12613:6630773,42926410 -g1,12613:6630773,42926410 -g1,12613:32583029,42926410 -g1,12613:32583029,42926410 -) -h1,12613:6630773,43123018:0,0,0 -] -(1,12624:32583029,45706769:0,0,0 -g1,12624:32583029,45706769 -) -) -] -(1,12624:6630773,47279633:25952256,0,0 -h1,12624:6630773,47279633:25952256,0,0 -) -] -h1,12624:4262630,4025873:0,0,0 -] -!24207 -}240 -Input:1712:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1713:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1714:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1715:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1716:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1717:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1718:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1719:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1720:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1721:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1722:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 -{241 -[1,12654:4262630,47279633:28320399,43253760,0 -(1,12654:4262630,4025873:0,0,0 -[1,12654:-473657,4025873:25952256,0,0 -(1,12654:-473657,-710414:25952256,0,0 -h1,12654:-473657,-710414:0,0,0 -(1,12654:-473657,-710414:0,0,0 -(1,12654:-473657,-710414:0,0,0 -g1,12654:-473657,-710414 -(1,12654:-473657,-710414:65781,0,65781 -g1,12654:-407876,-710414 -[1,12654:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12643:37855564,49800853:1179648,16384,0 +) +) +k1,12643:3078556,49800853:-34777008 +) +] +g1,12643:6630773,4812305 +k1,12643:25712890,4812305:17886740 +g1,12643:29057847,4812305 +g1,12643:29873114,4812305 +) +) +] +[1,12643:6630773,45706769:25952256,40108032,0 +(1,12643:6630773,45706769:25952256,40108032,0 +(1,12643:6630773,45706769:0,0,0 +g1,12643:6630773,45706769 +) +[1,12643:6630773,45706769:25952256,40108032,0 +v1,12591:6630773,6254097:0,393216,0 +(1,12591:6630773,8561436:25952256,2700555,196608 +g1,12591:6630773,8561436 +g1,12591:6630773,8561436 +g1,12591:6434165,8561436 +(1,12591:6434165,8561436:0,2700555,196608 +r1,12591:32779637,8561436:26345472,2897163,196608 +k1,12591:6434165,8561436:-26345472 +) +(1,12591:6434165,8561436:26345472,2700555,196608 +[1,12591:6630773,8561436:25952256,2503947,0 +(1,12586:6630773,6461715:25952256,404226,107478 +(1,12585:6630773,6461715:0,0,0 +g1,12585:6630773,6461715 +g1,12585:6630773,6461715 +g1,12585:6303093,6461715 +(1,12585:6303093,6461715:0,0,0 +) +g1,12585:6630773,6461715 +) +k1,12586:6630773,6461715:0 +g1,12586:11689104,6461715 +g1,12586:13902124,6461715 +g1,12586:14850562,6461715 +g1,12586:16747436,6461715 +g1,12586:17379728,6461715 +g1,12586:19908894,6461715 +h1,12586:20225040,6461715:0,0,0 +k1,12586:32583029,6461715:12357989 +g1,12586:32583029,6461715 +) +(1,12587:6630773,7127893:25952256,404226,107478 +h1,12587:6630773,7127893:0,0,0 +g1,12587:6946919,7127893 +g1,12587:7263065,7127893 +g1,12587:12321396,7127893 +g1,12587:12953688,7127893 +g1,12587:14850563,7127893 +g1,12587:16747437,7127893 +g1,12587:17379729,7127893 +g1,12587:19276604,7127893 +g1,12587:20857333,7127893 +g1,12587:21489625,7127893 +g1,12587:22438063,7127893 +h1,12587:22754209,7127893:0,0,0 +k1,12587:32583029,7127893:9828820 +g1,12587:32583029,7127893 +) +(1,12588:6630773,7794071:25952256,404226,107478 +h1,12588:6630773,7794071:0,0,0 +g1,12588:6946919,7794071 +g1,12588:7263065,7794071 +g1,12588:11372959,7794071 +h1,12588:11689105,7794071:0,0,0 +k1,12588:32583029,7794071:20893924 +g1,12588:32583029,7794071 +) +(1,12589:6630773,8460249:25952256,404226,101187 +h1,12589:6630773,8460249:0,0,0 +g1,12589:6946919,8460249 +g1,12589:7263065,8460249 +g1,12589:12321397,8460249 +g1,12589:12953689,8460249 +h1,12589:14218272,8460249:0,0,0 +k1,12589:32583028,8460249:18364756 +g1,12589:32583028,8460249 +) +] +) +g1,12591:32583029,8561436 +g1,12591:6630773,8561436 +g1,12591:6630773,8561436 +g1,12591:32583029,8561436 +g1,12591:32583029,8561436 +) +h1,12591:6630773,8758044:0,0,0 +(1,12594:6630773,18410557:25952256,9062689,0 +k1,12594:10523651,18410557:3892878 +h1,12593:10523651,18410557:0,0,0 +(1,12593:10523651,18410557:18166500,9062689,0 +(1,12593:10523651,18410557:18167381,9062712,0 +(1,12593:10523651,18410557:18167381,9062712,0 +(1,12593:10523651,18410557:0,9062712,0 +(1,12593:10523651,18410557:0,14155776,0 +(1,12593:10523651,18410557:28377088,14155776,0 +) +k1,12593:10523651,18410557:-28377088 +) +) +g1,12593:28691032,18410557 +) +) +) +g1,12594:28690151,18410557 +k1,12594:32583029,18410557:3892878 +) +(1,12602:6630773,19252045:25952256,505283,126483 +h1,12601:6630773,19252045:983040,0,0 +k1,12601:8453247,19252045:211599 +k1,12601:9683932,19252045:211600 +k1,12601:12556948,19252045:211599 +k1,12601:14797542,19252045:211599 +k1,12601:15877493,19252045:211599 +k1,12601:18674488,19252045:211600 +k1,12601:19537515,19252045:211599 +k1,12601:21262996,19252045:211599 +k1,12601:22493680,19252045:211599 +k1,12601:23931459,19252045:211600 +k1,12601:24794486,19252045:211599 +k1,12601:25753851,19252045:211599 +k1,12601:28302464,19252045:211599 +k1,12601:28983957,19252045:211600 +k1,12601:29727053,19252045:211599 +k1,12601:31224468,19252045:211599 +k1,12602:32583029,19252045:0 +) +(1,12602:6630773,20093533:25952256,513147,126483 +k1,12601:8491070,20093533:202236 +k1,12601:9884752,20093533:202237 +k1,12601:12374195,20093533:202236 +k1,12601:16015761,20093533:202237 +k1,12601:16869425,20093533:202236 +k1,12601:18713994,20093533:202237 +k1,12601:21428225,20093533:202236 +k1,12601:23474645,20093533:202237 +k1,12601:24486251,20093533:202236 +k1,12601:25707573,20093533:202237 +k1,12601:26705416,20093533:202236 +k1,12601:28917642,20093533:202237 +(1,12601:28917642,20093533:0,452978,115847 +r1,12601:30682755,20093533:1765113,568825,115847 +k1,12601:28917642,20093533:-1765113 +) +(1,12601:28917642,20093533:1765113,452978,115847 +k1,12601:28917642,20093533:3277 +h1,12601:30679478,20093533:0,411205,112570 +) +k1,12601:30884991,20093533:202236 +k1,12601:32583029,20093533:0 +) +(1,12602:6630773,20935021:25952256,513147,134348 +k1,12601:9010955,20935021:198488 +k1,12601:10228527,20935021:198487 +k1,12601:13234577,20935021:198488 +k1,12601:14380715,20935021:198487 +(1,12601:14380715,20935021:0,452978,115847 +r1,12601:16145828,20935021:1765113,568825,115847 +k1,12601:14380715,20935021:-1765113 +) +(1,12601:14380715,20935021:1765113,452978,115847 +k1,12601:14380715,20935021:3277 +h1,12601:16142551,20935021:0,411205,112570 +) +k1,12601:16517986,20935021:198488 +k1,12601:18204796,20935021:198487 +k1,12601:19271636,20935021:198488 +k1,12601:20562608,20935021:198487 +(1,12601:20562608,20935021:0,452978,122846 +r1,12601:24437992,20935021:3875384,575824,122846 +k1,12601:20562608,20935021:-3875384 +) +(1,12601:20562608,20935021:3875384,452978,122846 +k1,12601:20562608,20935021:3277 +h1,12601:24434715,20935021:0,411205,112570 +) +k1,12601:24636480,20935021:198488 +k1,12601:26228918,20935021:198487 +k1,12601:28623517,20935021:198488 +k1,12601:29473432,20935021:198487 +k1,12601:30419686,20935021:198488 +k1,12601:32583029,20935021:0 +) +(1,12602:6630773,21776509:25952256,513147,126483 +k1,12601:8061267,21776509:163028 +k1,12601:11994581,21776509:163028 +k1,12601:14507730,21776509:163028 +k1,12601:15480127,21776509:163027 +k1,12601:16662240,21776509:163028 +k1,12601:17620875,21776509:163028 +k1,12601:19793892,21776509:163028 +k1,12601:20976005,21776509:163028 +k1,12601:22238727,21776509:163028 +k1,12601:23053183,21776509:163028 +(1,12601:23053183,21776509:0,452978,115847 +r1,12601:24818296,21776509:1765113,568825,115847 +k1,12601:23053183,21776509:-1765113 +) +(1,12601:23053183,21776509:1765113,452978,115847 +k1,12601:23053183,21776509:3277 +h1,12601:24815019,21776509:0,411205,112570 +) +k1,12601:25154993,21776509:163027 +k1,12601:26514708,21776509:163028 +k1,12601:28331209,21776509:163028 +k1,12601:31478747,21776509:163028 +k1,12601:32583029,21776509:0 +) +(1,12602:6630773,22617997:25952256,513147,134348 +g1,12601:7577768,22617997 +g1,12601:9290223,22617997 +g1,12601:10437103,22617997 +g1,12601:12910431,22617997 +g1,12601:16084339,22617997 +g1,12601:18479679,22617997 +g1,12601:19745179,22617997 +g1,12601:22879110,22617997 +k1,12602:32583029,22617997:7144738 +g1,12602:32583029,22617997 +) +v1,12604:6630773,23808463:0,393216,0 +(1,12610:6630773,25455915:25952256,2040668,196608 +g1,12610:6630773,25455915 +g1,12610:6630773,25455915 +g1,12610:6434165,25455915 +(1,12610:6434165,25455915:0,2040668,196608 +r1,12610:32779637,25455915:26345472,2237276,196608 +k1,12610:6434165,25455915:-26345472 +) +(1,12610:6434165,25455915:26345472,2040668,196608 +[1,12610:6630773,25455915:25952256,1844060,0 +(1,12606:6630773,24016081:25952256,404226,107478 +(1,12605:6630773,24016081:0,0,0 +g1,12605:6630773,24016081 +g1,12605:6630773,24016081 +g1,12605:6303093,24016081 +(1,12605:6303093,24016081:0,0,0 +) +g1,12605:6630773,24016081 +) +k1,12606:6630773,24016081:0 +g1,12606:11689104,24016081 +g1,12606:13902124,24016081 +g1,12606:14850562,24016081 +g1,12606:16747436,24016081 +g1,12606:17379728,24016081 +g1,12606:22438059,24016081 +g1,12606:23386497,24016081 +g1,12606:24967226,24016081 +g1,12606:26231809,24016081 +g1,12606:26864101,24016081 +g1,12606:28760975,24016081 +h1,12606:29077121,24016081:0,0,0 +k1,12606:32583029,24016081:3505908 +g1,12606:32583029,24016081 +) +(1,12607:6630773,24682259:25952256,404226,107478 +h1,12607:6630773,24682259:0,0,0 +g1,12607:6946919,24682259 +g1,12607:7263065,24682259 +g1,12607:12321396,24682259 +g1,12607:12953688,24682259 +g1,12607:14850563,24682259 +g1,12607:16747437,24682259 +g1,12607:17379729,24682259 +g1,12607:19276604,24682259 +g1,12607:20857333,24682259 +g1,12607:21489625,24682259 +g1,12607:22438063,24682259 +h1,12607:22754209,24682259:0,0,0 +k1,12607:32583029,24682259:9828820 +g1,12607:32583029,24682259 +) +(1,12608:6630773,25348437:25952256,404226,107478 +h1,12608:6630773,25348437:0,0,0 +g1,12608:6946919,25348437 +g1,12608:7263065,25348437 +k1,12608:7263065,25348437:0 +h1,12608:11056813,25348437:0,0,0 +k1,12608:32583029,25348437:21526216 +g1,12608:32583029,25348437 +) +] +) +g1,12610:32583029,25455915 +g1,12610:6630773,25455915 +g1,12610:6630773,25455915 +g1,12610:32583029,25455915 +g1,12610:32583029,25455915 +) +h1,12610:6630773,25652523:0,0,0 +(1,12614:6630773,27018299:25952256,513147,126483 +h1,12613:6630773,27018299:983040,0,0 +k1,12613:8660504,27018299:228802 +(1,12613:8660504,27018299:0,452978,122846 +r1,12613:12887600,27018299:4227096,575824,122846 +k1,12613:8660504,27018299:-4227096 +) +(1,12613:8660504,27018299:4227096,452978,122846 +k1,12613:8660504,27018299:3277 +h1,12613:12884323,27018299:0,411205,112570 +) +k1,12613:13116403,27018299:228803 +k1,12613:15178902,27018299:228802 +k1,12613:16426790,27018299:228803 +k1,12613:18309065,27018299:228802 +k1,12613:22148901,27018299:228802 +k1,12613:23063866,27018299:228803 +(1,12613:23063866,27018299:0,452978,122846 +r1,12613:26939250,27018299:3875384,575824,122846 +k1,12613:23063866,27018299:-3875384 +) +(1,12613:23063866,27018299:3875384,452978,122846 +k1,12613:23063866,27018299:3277 +h1,12613:26935973,27018299:0,411205,112570 +) +k1,12613:27168052,27018299:228802 +k1,12613:29467793,27018299:228803 +k1,12613:30644246,27018299:228802 +(1,12613:30644246,27018299:0,452978,122846 +r1,12613:32409359,27018299:1765113,575824,122846 +k1,12613:30644246,27018299:-1765113 +) +(1,12613:30644246,27018299:1765113,452978,122846 +k1,12613:30644246,27018299:3277 +h1,12613:32406082,27018299:0,411205,112570 +) +k1,12613:32583029,27018299:0 +) +(1,12614:6630773,27859787:25952256,513147,126483 +k1,12613:7639020,27859787:139895 +k1,12613:9811842,27859787:139895 +k1,12613:12621019,27859787:139896 +k1,12613:14629345,27859787:139895 +k1,12613:16144841,27859787:139895 +k1,12613:17303821,27859787:139895 +k1,12613:20670709,27859787:139895 +k1,12613:24421639,27859787:139896 +k1,12613:27742652,27859787:139895 +k1,12613:28533975,27859787:139895 +(1,12613:28533975,27859787:0,452978,122846 +r1,12613:32409359,27859787:3875384,575824,122846 +k1,12613:28533975,27859787:-3875384 +) +(1,12613:28533975,27859787:3875384,452978,122846 +k1,12613:28533975,27859787:3277 +h1,12613:32406082,27859787:0,411205,112570 +) +k1,12613:32583029,27859787:0 +) +(1,12614:6630773,28701275:25952256,513147,126483 +k1,12613:7762322,28701275:178000 +k1,12613:9277257,28701275:178001 +k1,12613:11003873,28701275:178000 +k1,12613:11833301,28701275:178000 +k1,12613:13464890,28701275:178000 +k1,12613:14661976,28701275:178001 +k1,12613:17105556,28701275:178000 +k1,12613:19098248,28701275:178000 +k1,12613:19935541,28701275:178001 +k1,12613:21132626,28701275:178000 +k1,12613:23450377,28701275:178000 +k1,12613:24796885,28701275:178001 +k1,12613:25657770,28701275:178000 +k1,12613:26854855,28701275:178000 +k1,12613:28648973,28701275:178000 +k1,12613:30340200,28701275:178001 +k1,12613:31169628,28701275:178000 +(1,12613:31169628,28701275:0,459977,115847 +r1,12613:32583029,28701275:1413401,575824,115847 +k1,12613:31169628,28701275:-1413401 +) +(1,12613:31169628,28701275:1413401,459977,115847 +k1,12613:31169628,28701275:3277 +h1,12613:32579752,28701275:0,411205,112570 +) +k1,12613:32583029,28701275:0 +) +(1,12614:6630773,29542763:25952256,513147,134348 +k1,12613:7816420,29542763:166562 +k1,12613:11080213,29542763:166562 +k1,12613:11929661,29542763:166563 +k1,12613:12747651,29542763:166562 +k1,12613:15154889,29542763:166562 +k1,12613:16340536,29542763:166562 +k1,12613:20463507,29542763:166563 +k1,12613:21289361,29542763:166562 +k1,12613:22475008,29542763:166562 +k1,12613:25212547,29542763:166562 +k1,12613:26208140,29542763:166563 +k1,12613:29257631,29542763:166562 +k1,12613:30443278,29542763:166562 +k1,12613:32583029,29542763:0 +) +(1,12614:6630773,30384251:25952256,505283,126483 +k1,12613:8257954,30384251:285004 +k1,12613:9635443,30384251:285004 +(1,12613:9635443,30384251:0,452978,115847 +r1,12613:14565963,30384251:4930520,568825,115847 +k1,12613:9635443,30384251:-4930520 +) +(1,12613:9635443,30384251:4930520,452978,115847 +g1,12613:13507550,30384251 +g1,12613:14210974,30384251 +h1,12613:14562686,30384251:0,411205,112570 +) +k1,12613:15024637,30384251:285004 +k1,12613:17498544,30384251:285004 +k1,12613:21139648,30384251:285005 +k1,12613:21956149,30384251:285004 +k1,12613:25502224,30384251:285004 +k1,12613:26548756,30384251:285004 +k1,12613:30114492,30384251:285004 +(1,12613:30114492,30384251:0,452978,115847 +r1,12613:32583029,30384251:2468537,568825,115847 +k1,12613:30114492,30384251:-2468537 +) +(1,12613:30114492,30384251:2468537,452978,115847 +k1,12613:30114492,30384251:3277 +h1,12613:32579752,30384251:0,411205,112570 +) +k1,12613:32583029,30384251:0 +) +(1,12614:6630773,31225739:25952256,513147,134348 +g1,12613:8021447,31225739 +g1,12613:9239761,31225739 +g1,12613:10707767,31225739 +g1,12613:11566288,31225739 +g1,12613:12784602,31225739 +g1,12613:15238270,31225739 +g1,12613:17726672,31225739 +g1,12613:18944986,31225739 +g1,12613:20370394,31225739 +g1,12613:21331151,31225739 +(1,12613:21331151,31225739:0,452978,122846 +r1,12613:25909959,31225739:4578808,575824,122846 +k1,12613:21331151,31225739:-4578808 +) +(1,12613:21331151,31225739:4578808,452978,122846 +k1,12613:21331151,31225739:3277 +h1,12613:25906682,31225739:0,411205,112570 +) +k1,12614:32583029,31225739:6499400 +g1,12614:32583029,31225739 +) +v1,12617:6630773,32416205:0,393216,0 +(1,12632:6630773,40052968:25952256,8029979,196608 +g1,12632:6630773,40052968 +g1,12632:6630773,40052968 +g1,12632:6434165,40052968 +(1,12632:6434165,40052968:0,8029979,196608 +r1,12632:32779637,40052968:26345472,8226587,196608 +k1,12632:6434165,40052968:-26345472 +) +(1,12632:6434165,40052968:26345472,8029979,196608 +[1,12632:6630773,40052968:25952256,7833371,0 +(1,12619:6630773,32623823:25952256,404226,101187 +(1,12618:6630773,32623823:0,0,0 +g1,12618:6630773,32623823 +g1,12618:6630773,32623823 +g1,12618:6303093,32623823 +(1,12618:6303093,32623823:0,0,0 +) +g1,12618:6630773,32623823 +) +g1,12619:9159939,32623823 +k1,12619:9159939,32623823:0 +h1,12619:9792231,32623823:0,0,0 +k1,12619:32583029,32623823:22790798 +g1,12619:32583029,32623823 +) +(1,12620:6630773,33290001:25952256,410518,101187 +h1,12620:6630773,33290001:0,0,0 +g1,12620:6946919,33290001 +g1,12620:7263065,33290001 +g1,12620:11372960,33290001 +g1,12620:12005252,33290001 +g1,12620:13585982,33290001 +g1,12620:14218274,33290001 +g1,12620:14850566,33290001 +g1,12620:17063587,33290001 +k1,12620:17063587,33290001:0 +h1,12620:18012025,33290001:0,0,0 +k1,12620:32583029,33290001:14571004 +g1,12620:32583029,33290001 +) +(1,12621:6630773,33956179:25952256,410518,82312 +h1,12621:6630773,33956179:0,0,0 +g1,12621:6946919,33956179 +g1,12621:7263065,33956179 +g1,12621:7579211,33956179 +g1,12621:7895357,33956179 +g1,12621:8211503,33956179 +g1,12621:8527649,33956179 +g1,12621:8843795,33956179 +g1,12621:9159941,33956179 +g1,12621:9476087,33956179 +g1,12621:9792233,33956179 +g1,12621:10108379,33956179 +g1,12621:10424525,33956179 +g1,12621:10740671,33956179 +g1,12621:12637545,33956179 +g1,12621:13269837,33956179 +g1,12621:16115149,33956179 +g1,12621:18328169,33956179 +g1,12621:21173481,33956179 +g1,12621:23702647,33956179 +h1,12621:26231812,33956179:0,0,0 +k1,12621:32583029,33956179:6351217 +g1,12621:32583029,33956179 +) +(1,12622:6630773,34622357:25952256,0,0 +h1,12622:6630773,34622357:0,0,0 +h1,12622:6630773,34622357:0,0,0 +k1,12622:32583029,34622357:25952256 +g1,12622:32583029,34622357 +) +(1,12623:6630773,35288535:25952256,404226,107478 +h1,12623:6630773,35288535:0,0,0 +g1,12623:11689104,35288535 +g1,12623:13902124,35288535 +g1,12623:14850562,35288535 +g1,12623:16747436,35288535 +g1,12623:17379728,35288535 +g1,12623:19908894,35288535 +h1,12623:20225040,35288535:0,0,0 +k1,12623:32583029,35288535:12357989 +g1,12623:32583029,35288535 +) +(1,12624:6630773,35954713:25952256,404226,107478 +h1,12624:6630773,35954713:0,0,0 +g1,12624:6946919,35954713 +g1,12624:7263065,35954713 +g1,12624:12637542,35954713 +g1,12624:13269834,35954713 +g1,12624:15166709,35954713 +g1,12624:16747438,35954713 +g1,12624:17379730,35954713 +k1,12624:17379730,35954713:0 +h1,12624:18012022,35954713:0,0,0 +k1,12624:32583029,35954713:14571007 +g1,12624:32583029,35954713 +) +(1,12625:6630773,36620891:25952256,404226,82312 +h1,12625:6630773,36620891:0,0,0 +g1,12625:6946919,36620891 +g1,12625:7263065,36620891 +g1,12625:7579211,36620891 +g1,12625:7895357,36620891 +g1,12625:8211503,36620891 +g1,12625:8527649,36620891 +g1,12625:8843795,36620891 +g1,12625:9159941,36620891 +g1,12625:9476087,36620891 +g1,12625:9792233,36620891 +g1,12625:10108379,36620891 +g1,12625:10424525,36620891 +g1,12625:10740671,36620891 +g1,12625:14218274,36620891 +g1,12625:14850566,36620891 +k1,12625:14850566,36620891:0 +h1,12625:15799003,36620891:0,0,0 +k1,12625:32583029,36620891:16784026 +g1,12625:32583029,36620891 +) +(1,12626:6630773,37287069:25952256,404226,82312 +h1,12626:6630773,37287069:0,0,0 +g1,12626:6946919,37287069 +g1,12626:7263065,37287069 +g1,12626:7579211,37287069 +g1,12626:7895357,37287069 +g1,12626:8211503,37287069 +g1,12626:8527649,37287069 +g1,12626:8843795,37287069 +g1,12626:9159941,37287069 +g1,12626:9476087,37287069 +g1,12626:9792233,37287069 +g1,12626:10108379,37287069 +g1,12626:10424525,37287069 +g1,12626:10740671,37287069 +g1,12626:13269837,37287069 +g1,12626:13902129,37287069 +g1,12626:16431296,37287069 +k1,12626:16431296,37287069:0 +h1,12626:19276608,37287069:0,0,0 +k1,12626:32583029,37287069:13306421 +g1,12626:32583029,37287069 +) +(1,12627:6630773,37953247:25952256,404226,107478 +h1,12627:6630773,37953247:0,0,0 +g1,12627:6946919,37953247 +g1,12627:7263065,37953247 +g1,12627:7579211,37953247 +g1,12627:7895357,37953247 +g1,12627:8211503,37953247 +g1,12627:8527649,37953247 +g1,12627:8843795,37953247 +g1,12627:9159941,37953247 +g1,12627:9476087,37953247 +g1,12627:9792233,37953247 +g1,12627:10108379,37953247 +g1,12627:10424525,37953247 +g1,12627:10740671,37953247 +g1,12627:15166711,37953247 +g1,12627:15799003,37953247 +g1,12627:19276607,37953247 +k1,12627:19276607,37953247:0 +h1,12627:22121919,37953247:0,0,0 +k1,12627:32583029,37953247:10461110 +g1,12627:32583029,37953247 +) +(1,12628:6630773,38619425:25952256,410518,101187 +h1,12628:6630773,38619425:0,0,0 +g1,12628:6946919,38619425 +g1,12628:7263065,38619425 +g1,12628:7579211,38619425 +g1,12628:7895357,38619425 +g1,12628:8211503,38619425 +g1,12628:8527649,38619425 +g1,12628:8843795,38619425 +g1,12628:9159941,38619425 +g1,12628:9476087,38619425 +g1,12628:9792233,38619425 +g1,12628:10108379,38619425 +g1,12628:10424525,38619425 +g1,12628:10740671,38619425 +g1,12628:12321400,38619425 +g1,12628:12953692,38619425 +g1,12628:16115149,38619425 +g1,12628:18012023,38619425 +g1,12628:18644315,38619425 +g1,12628:20225044,38619425 +h1,12628:20541190,38619425:0,0,0 +k1,12628:32583029,38619425:12041839 +g1,12628:32583029,38619425 +) +(1,12629:6630773,39285603:25952256,404226,107478 +h1,12629:6630773,39285603:0,0,0 +g1,12629:6946919,39285603 +g1,12629:7263065,39285603 +g1,12629:11372959,39285603 +h1,12629:11689105,39285603:0,0,0 +k1,12629:32583029,39285603:20893924 +g1,12629:32583029,39285603 +) +(1,12630:6630773,39951781:25952256,404226,101187 +h1,12630:6630773,39951781:0,0,0 +g1,12630:6946919,39951781 +g1,12630:7263065,39951781 +g1,12630:12321397,39951781 +g1,12630:12953689,39951781 +h1,12630:14218272,39951781:0,0,0 +k1,12630:32583028,39951781:18364756 +g1,12630:32583028,39951781 +) +] +) +g1,12632:32583029,40052968 +g1,12632:6630773,40052968 +g1,12632:6630773,40052968 +g1,12632:32583029,40052968 +g1,12632:32583029,40052968 +) +h1,12632:6630773,40249576:0,0,0 +] +(1,12643:32583029,45706769:0,0,0 +g1,12643:32583029,45706769 +) +) +] +(1,12643:6630773,47279633:25952256,0,0 +h1,12643:6630773,47279633:25952256,0,0 +) +] +h1,12643:4262630,4025873:0,0,0 +] +!22510 +}241 +Input:1708:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1709:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1710:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1711:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1712:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1713:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1714:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1715:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1716:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1717:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1718:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 +{242 +[1,12673:4262630,47279633:28320399,43253760,0 +(1,12673:4262630,4025873:0,0,0 +[1,12673:-473657,4025873:25952256,0,0 +(1,12673:-473657,-710414:25952256,0,0 +h1,12673:-473657,-710414:0,0,0 +(1,12673:-473657,-710414:0,0,0 +(1,12673:-473657,-710414:0,0,0 +g1,12673:-473657,-710414 +(1,12673:-473657,-710414:65781,0,65781 +g1,12673:-407876,-710414 +[1,12673:-407876,-644633:0,0,0 ] ) -k1,12654:-473657,-710414:-65781 +k1,12673:-473657,-710414:-65781 ) ) -k1,12654:25478599,-710414:25952256 -g1,12654:25478599,-710414 +k1,12673:25478599,-710414:25952256 +g1,12673:25478599,-710414 ) ] ) -[1,12654:6630773,47279633:25952256,43253760,0 -[1,12654:6630773,4812305:25952256,786432,0 -(1,12654:6630773,4812305:25952256,513147,134348 -(1,12654:6630773,4812305:25952256,513147,134348 -g1,12654:3078558,4812305 -[1,12654:3078558,4812305:0,0,0 -(1,12654:3078558,2439708:0,1703936,0 -k1,12654:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12654:2537886,2439708:1179648,16384,0 +[1,12673:6630773,47279633:25952256,43253760,0 +[1,12673:6630773,4812305:25952256,786432,0 +(1,12673:6630773,4812305:25952256,485622,11795 +(1,12673:6630773,4812305:25952256,485622,11795 +g1,12673:3078558,4812305 +[1,12673:3078558,4812305:0,0,0 +(1,12673:3078558,2439708:0,1703936,0 +k1,12673:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12673:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12654:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12673:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12654:3078558,4812305:0,0,0 -(1,12654:3078558,2439708:0,1703936,0 -g1,12654:29030814,2439708 -g1,12654:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12654:36151628,1915420:16384,1179648,0 +[1,12673:3078558,4812305:0,0,0 +(1,12673:3078558,2439708:0,1703936,0 +g1,12673:29030814,2439708 +g1,12673:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12673:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12654:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12673:37855564,2439708:1179648,16384,0 ) ) -k1,12654:3078556,2439708:-34777008 +k1,12673:3078556,2439708:-34777008 ) ] -[1,12654:3078558,4812305:0,0,0 -(1,12654:3078558,49800853:0,16384,2228224 -k1,12654:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12654:2537886,49800853:1179648,16384,0 +[1,12673:3078558,4812305:0,0,0 +(1,12673:3078558,49800853:0,16384,2228224 +k1,12673:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12673:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12654:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12673:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12654:3078558,4812305:0,0,0 -(1,12654:3078558,49800853:0,16384,2228224 -g1,12654:29030814,49800853 -g1,12654:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12654:36151628,51504789:16384,1179648,0 +[1,12673:3078558,4812305:0,0,0 +(1,12673:3078558,49800853:0,16384,2228224 +g1,12673:29030814,49800853 +g1,12673:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12673:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12654:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12673:37855564,49800853:1179648,16384,0 ) ) -k1,12654:3078556,49800853:-34777008 -) -] -g1,12654:6630773,4812305 -k1,12654:25712890,4812305:17886740 -g1,12654:29057847,4812305 -g1,12654:29873114,4812305 -) -) -] -[1,12654:6630773,45706769:25952256,40108032,0 -(1,12654:6630773,45706769:25952256,40108032,0 -(1,12654:6630773,45706769:0,0,0 -g1,12654:6630773,45706769 -) -[1,12654:6630773,45706769:25952256,40108032,0 -(1,12616:6630773,14661426:25952256,9062689,0 -k1,12616:10523651,14661426:3892878 -h1,12615:10523651,14661426:0,0,0 -(1,12615:10523651,14661426:18166500,9062689,0 -(1,12615:10523651,14661426:18167381,9062712,0 -(1,12615:10523651,14661426:18167381,9062712,0 -(1,12615:10523651,14661426:0,9062712,0 -(1,12615:10523651,14661426:0,14155776,0 -(1,12615:10523651,14661426:28377088,14155776,0 -) -k1,12615:10523651,14661426:-28377088 -) -) -g1,12615:28691032,14661426 -) -) -) -g1,12616:28690151,14661426 -k1,12616:32583029,14661426:3892878 -) -v1,12624:6630773,16027202:0,393216,0 -(1,12625:6630773,20711213:25952256,5077227,616038 -g1,12625:6630773,20711213 -(1,12625:6630773,20711213:25952256,5077227,616038 -(1,12625:6630773,21327251:25952256,5693265,0 -[1,12625:6630773,21327251:25952256,5693265,0 -(1,12625:6630773,21301037:25952256,5640837,0 -r1,12625:6656987,21301037:26214,5640837,0 -[1,12625:6656987,21301037:25899828,5640837,0 -(1,12625:6656987,20711213:25899828,4461189,0 -[1,12625:7246811,20711213:24720180,4461189,0 -(1,12625:7246811,17337398:24720180,1087374,134348 -k1,12624:8667493,17337398:210979 -k1,12624:10176085,17337398:210979 -k1,12624:11781014,17337398:210978 -k1,12624:13011078,17337398:210979 -k1,12624:16624686,17337398:210979 -k1,12624:17487093,17337398:210979 -k1,12624:18717156,17337398:210978 -k1,12624:21690478,17337398:210979 -k1,12624:25512491,17337398:210979 -k1,12624:26914915,17337398:210979 -k1,12624:28519844,17337398:210978 -k1,12624:29749908,17337398:210979 -k1,12625:31966991,17337398:0 -) -(1,12625:7246811,18178886:24720180,513147,134348 -k1,12624:8558886,18178886:259566 -k1,12624:9469880,18178886:259566 -k1,12624:10707899,18178886:259566 -k1,12624:11738169,18178886:259567 -k1,12624:13322873,18178886:259566 -k1,12624:14241731,18178886:259566 -k1,12624:16049913,18178886:259566 -k1,12624:17413761,18178886:259566 -k1,12624:18421093,18178886:259566 -k1,12624:20258111,18178886:259566 -k1,12624:21911629,18178886:259567 -k1,12624:23983921,18178886:259566 -k1,12624:25285509,18178886:259566 -k1,12624:28380162,18178886:259566 -k1,12624:29732213,18178886:259566 -k1,12624:31966991,18178886:0 -) -(1,12625:7246811,19020374:24720180,505283,134348 -k1,12624:9592762,19020374:206200 -k1,12624:11297770,19020374:206200 -k1,12624:12695415,19020374:206200 -k1,12624:15520434,19020374:206200 -k1,12624:16745719,19020374:206200 -k1,12624:19560252,19020374:206200 -k1,12624:20491280,19020374:206200 -k1,12624:21981986,19020374:206200 -k1,12624:22544046,19020374:206200 -k1,12624:25180976,19020374:206200 -k1,12624:29712552,19020374:206200 -k1,12624:31966991,19020374:0 -) -(1,12625:7246811,19861862:24720180,513147,134348 -k1,12624:7967756,19861862:189448 -k1,12624:10963456,19861862:189448 -k1,12624:12406608,19861862:189448 -k1,12624:13932990,19861862:189448 -k1,12624:15408254,19861862:189448 -k1,12624:16504065,19861862:189448 -k1,12624:19501075,19861862:189448 -k1,12624:20709608,19861862:189448 -(1,12624:20709608,19861862:0,459977,115847 -r1,12625:22123009,19861862:1413401,575824,115847 -k1,12624:20709608,19861862:-1413401 -) -(1,12624:20709608,19861862:1413401,459977,115847 -k1,12624:20709608,19861862:3277 -h1,12624:22119732,19861862:0,411205,112570 -) -k1,12624:22312457,19861862:189448 -k1,12624:23693350,19861862:189448 -(1,12624:23693350,19861862:0,452978,115847 -r1,12625:25458463,19861862:1765113,568825,115847 -k1,12624:23693350,19861862:-1765113 -) -(1,12624:23693350,19861862:1765113,452978,115847 -k1,12624:23693350,19861862:3277 -h1,12624:25455186,19861862:0,411205,112570 -) -k1,12624:25647911,19861862:189448 -k1,12624:28901823,19861862:189448 -k1,12624:29742699,19861862:189448 -k1,12624:31966991,19861862:0 -) -(1,12625:7246811,20703350:24720180,505283,7863 -g1,12624:8062078,20703350 -g1,12624:9280392,20703350 -k1,12625:31966990,20703350:21123564 -g1,12625:31966990,20703350 -) -] -) -] -r1,12625:32583029,21301037:26214,5640837,0 -) -] -) -) -g1,12625:32583029,20711213 -) -h1,12625:6630773,21327251:0,0,0 -(1,12628:6630773,22693027:25952256,513147,126483 -h1,12627:6630773,22693027:983040,0,0 -k1,12627:8434338,22693027:342768 -k1,12627:9796191,22693027:342768 -k1,12627:13419691,22693027:342768 -(1,12627:13419691,22693027:0,452978,115847 -r1,12627:17998499,22693027:4578808,568825,115847 -k1,12627:13419691,22693027:-4578808 -) -(1,12627:13419691,22693027:4578808,452978,115847 -k1,12627:13419691,22693027:3277 -h1,12627:17995222,22693027:0,411205,112570 -) -k1,12627:18341267,22693027:342768 -k1,12627:19351192,22693027:342769 -(1,12627:19351192,22693027:0,452978,122846 -r1,12627:23226576,22693027:3875384,575824,122846 -k1,12627:19351192,22693027:-3875384 -) -(1,12627:19351192,22693027:3875384,452978,122846 -k1,12627:19351192,22693027:3277 -h1,12627:23223299,22693027:0,411205,112570 -) -k1,12627:23569344,22693027:342768 -k1,12627:24443609,22693027:342768 -k1,12627:25720920,22693027:342768 -k1,12627:26715116,22693027:342768 -(1,12627:26715116,22693027:0,414482,115847 -r1,12627:28128517,22693027:1413401,530329,115847 -k1,12627:26715116,22693027:-1413401 -) -(1,12627:26715116,22693027:1413401,414482,115847 -k1,12627:26715116,22693027:3277 -h1,12627:28125240,22693027:0,411205,112570 -) -k1,12627:28644955,22693027:342768 -k1,12627:30213902,22693027:342768 -k1,12627:32583029,22693027:0 -) -(1,12628:6630773,23534515:25952256,505283,134348 -k1,12627:8152399,23534515:389164 -k1,12627:9289330,23534515:389165 -k1,12627:12176071,23534515:389164 -k1,12627:13326764,23534515:389165 -k1,12627:17589106,23534515:389164 -k1,12627:18997356,23534515:389165 -k1,12627:20612699,23534515:389164 -k1,12627:22286370,23534515:389165 -k1,12627:24631784,23534515:389164 -k1,12627:28122768,23534515:389165 -k1,12627:30881059,23534515:389164 -k1,12627:32583029,23534515:0 -) -(1,12628:6630773,24376003:25952256,513147,126483 -k1,12627:8231098,24376003:200476 -k1,12627:11404286,24376003:200475 -k1,12627:14268801,24376003:200476 -k1,12627:15136432,24376003:200475 -(1,12627:15136432,24376003:0,452978,122846 -r1,12627:19011816,24376003:3875384,575824,122846 -k1,12627:15136432,24376003:-3875384 -) -(1,12627:15136432,24376003:3875384,452978,122846 -k1,12627:15136432,24376003:3277 -h1,12627:19008539,24376003:0,411205,112570 -) -k1,12627:19212292,24376003:200476 -k1,12627:20604212,24376003:200475 -(1,12627:20604212,24376003:0,452978,122846 -r1,12627:24831308,24376003:4227096,575824,122846 -k1,12627:20604212,24376003:-4227096 -) -(1,12627:20604212,24376003:4227096,452978,122846 -k1,12627:20604212,24376003:3277 -h1,12627:24828031,24376003:0,411205,112570 -) -k1,12627:25205454,24376003:200476 -(1,12627:25205454,24376003:0,452978,122846 -r1,12627:31191109,24376003:5985655,575824,122846 -k1,12627:25205454,24376003:-5985655 -) -(1,12627:25205454,24376003:5985655,452978,122846 -k1,12627:25205454,24376003:3277 -h1,12627:31187832,24376003:0,411205,112570 -) -k1,12627:31391584,24376003:200475 -k1,12628:32583029,24376003:0 -) -(1,12628:6630773,25217491:25952256,505283,134348 -(1,12627:6630773,25217491:0,452978,122846 -r1,12627:12968140,25217491:6337367,575824,122846 -k1,12627:6630773,25217491:-6337367 -) -(1,12627:6630773,25217491:6337367,452978,122846 -k1,12627:6630773,25217491:3277 -h1,12627:12964863,25217491:0,411205,112570 -) -k1,12627:13452774,25217491:310964 -k1,12627:14755298,25217491:310964 -k1,12627:17850231,25217491:310964 -k1,12627:18777233,25217491:310964 -k1,12627:21668349,25217491:310964 -k1,12627:24917291,25217491:310964 -k1,12627:27102585,25217491:310964 -k1,12627:30853534,25217491:310964 -k1,12627:32583029,25217491:0 -) -(1,12628:6630773,26058979:25952256,505283,134348 -k1,12627:9513404,26058979:183203 -k1,12627:10458134,26058979:183202 -k1,12627:14958194,26058979:183203 -k1,12627:19381576,26058979:183203 -k1,12627:20583864,26058979:183203 -k1,12627:21993245,26058979:183202 -k1,12627:22859333,26058979:183203 -k1,12627:25060390,26058979:183203 -k1,12627:27205086,26058979:183203 -k1,12627:28800589,26058979:183202 -k1,12627:30002877,26058979:183203 -k1,12627:32583029,26058979:0 -) -(1,12628:6630773,26900467:25952256,513147,134348 -k1,12627:11655775,26900467:198931 -k1,12627:12802358,26900467:198932 -k1,12627:15118757,26900467:198931 -k1,12627:15976980,26900467:198931 -k1,12627:17506293,26900467:198932 -k1,12627:18356652,26900467:198931 -k1,12627:20843446,26900467:198932 -k1,12627:22061462,26900467:198931 -k1,12627:25277671,26900467:198931 -k1,12627:28160302,26900467:198932 -k1,12627:29550678,26900467:198931 -k1,12627:32583029,26900467:0 -) -(1,12628:6630773,27741955:25952256,513147,134348 -k1,12627:8024865,27741955:202647 -k1,12627:9246596,27741955:202646 -k1,12627:12745049,27741955:202647 -k1,12627:13606987,27741955:202646 -k1,12627:14828719,27741955:202647 -k1,12627:18052575,27741955:202646 -k1,12627:20459198,27741955:202647 -k1,12627:21680929,27741955:202646 -k1,12627:23727759,27741955:202647 -k1,12627:24581833,27741955:202646 -k1,12627:25803565,27741955:202647 -k1,12627:28620442,27741955:202646 -k1,12627:29482381,27741955:202647 -k1,12627:31193666,27741955:202646 -k1,12627:32583029,27741955:0 -) -(1,12628:6630773,28583443:25952256,505283,126483 -k1,12627:10732423,28583443:189806 -k1,12627:12972196,28583443:189807 -k1,12627:13928118,28583443:189806 -k1,12627:17292489,28583443:189807 -k1,12627:20776790,28583443:189806 -k1,12627:21728125,28583443:189807 -(1,12627:21728125,28583443:0,452978,122846 -r1,12627:25603509,28583443:3875384,575824,122846 -k1,12627:21728125,28583443:-3875384 -) -(1,12627:21728125,28583443:3875384,452978,122846 -k1,12627:21728125,28583443:3277 -h1,12627:25600232,28583443:0,411205,112570 -) -k1,12627:25793315,28583443:189806 -k1,12627:27174567,28583443:189807 -(1,12627:27174567,28583443:0,452978,122846 -r1,12627:31401663,28583443:4227096,575824,122846 -k1,12627:27174567,28583443:-4227096 -) -(1,12627:27174567,28583443:4227096,452978,122846 -k1,12627:27174567,28583443:3277 -h1,12627:31398386,28583443:0,411205,112570 -) -k1,12627:31591469,28583443:189806 -k1,12627:32583029,28583443:0 -) -(1,12628:6630773,29424931:25952256,505283,134348 -k1,12627:10136294,29424931:211026 -k1,12627:11108848,29424931:211026 -k1,12627:12338959,29424931:211026 -k1,12627:15462405,29424931:211026 -k1,12627:18511140,29424931:211026 -k1,12627:21656867,29424931:211025 -k1,12627:23562654,29424931:211026 -k1,12627:25058186,29424931:211026 -k1,12627:25625072,29424931:211026 -k1,12627:28527006,29424931:211026 -k1,12627:31563944,29424931:211026 -k1,12627:32583029,29424931:0 -) -(1,12628:6630773,30266419:25952256,513147,134348 -k1,12627:8357740,30266419:213085 -k1,12627:9253711,30266419:213086 -k1,12627:10692975,30266419:213085 -k1,12627:11557489,30266419:213086 -k1,12627:12558972,30266419:213085 -k1,12627:14974068,30266419:213086 -k1,12627:17049031,30266419:213085 -k1,12627:19493617,30266419:213085 -k1,12627:23002509,30266419:213086 -k1,12627:23874886,30266419:213085 -k1,12627:25784699,30266419:213086 -k1,12627:29018994,30266419:213085 -k1,12627:30336362,30266419:213086 -k1,12627:31835263,30266419:213085 -k1,12627:32583029,30266419:0 -) -(1,12628:6630773,31107907:25952256,505283,134348 -g1,12627:10091073,31107907 -g1,12627:11684253,31107907 -g1,12627:15058046,31107907 -g1,12627:15940160,31107907 -k1,12628:32583029,31107907:13066569 -g1,12628:32583029,31107907 -) -v1,12630:6630773,32298373:0,393216,0 -(1,12641:6630773,37276715:25952256,5371558,196608 -g1,12641:6630773,37276715 -g1,12641:6630773,37276715 -g1,12641:6434165,37276715 -(1,12641:6434165,37276715:0,5371558,196608 -r1,12641:32779637,37276715:26345472,5568166,196608 -k1,12641:6434165,37276715:-26345472 -) -(1,12641:6434165,37276715:26345472,5371558,196608 -[1,12641:6630773,37276715:25952256,5174950,0 -(1,12632:6630773,32505991:25952256,404226,107478 -(1,12631:6630773,32505991:0,0,0 -g1,12631:6630773,32505991 -g1,12631:6630773,32505991 -g1,12631:6303093,32505991 -(1,12631:6303093,32505991:0,0,0 -) -g1,12631:6630773,32505991 -) -k1,12632:6630773,32505991:0 -g1,12632:10424522,32505991 -g1,12632:11056814,32505991 -g1,12632:13585980,32505991 -g1,12632:15482855,32505991 -g1,12632:16115147,32505991 -g1,12632:18012022,32505991 -g1,12632:18644314,32505991 -g1,12632:19276606,32505991 -k1,12632:19276606,32505991:0 -h1,12632:20541189,32505991:0,0,0 -k1,12632:32583029,32505991:12041840 -g1,12632:32583029,32505991 -) -(1,12633:6630773,33172169:25952256,410518,101187 -h1,12633:6630773,33172169:0,0,0 -g1,12633:6946919,33172169 -g1,12633:7263065,33172169 -g1,12633:7579211,33172169 -g1,12633:7895357,33172169 -g1,12633:8211503,33172169 -g1,12633:8527649,33172169 -g1,12633:8843795,33172169 -g1,12633:9159941,33172169 -g1,12633:9476087,33172169 -g1,12633:9792233,33172169 -g1,12633:10108379,33172169 -g1,12633:10424525,33172169 -g1,12633:10740671,33172169 -g1,12633:11056817,33172169 -g1,12633:11372963,33172169 -g1,12633:11689109,33172169 -g1,12633:12005255,33172169 -g1,12633:12321401,33172169 -g1,12633:12637547,33172169 -g1,12633:12953693,33172169 -g1,12633:13269839,33172169 -g1,12633:13585985,33172169 -g1,12633:13902131,33172169 -g1,12633:14218277,33172169 -g1,12633:14534423,33172169 -g1,12633:14850569,33172169 -g1,12633:16747443,33172169 -g1,12633:17379735,33172169 -k1,12633:17379735,33172169:0 -h1,12633:21173483,33172169:0,0,0 -k1,12633:32583029,33172169:11409546 -g1,12633:32583029,33172169 -) -(1,12634:6630773,33838347:25952256,404226,82312 -h1,12634:6630773,33838347:0,0,0 -g1,12634:6946919,33838347 -g1,12634:7263065,33838347 -g1,12634:7579211,33838347 -g1,12634:7895357,33838347 -g1,12634:8211503,33838347 -g1,12634:8527649,33838347 -g1,12634:8843795,33838347 -g1,12634:9159941,33838347 -g1,12634:9476087,33838347 -g1,12634:9792233,33838347 -g1,12634:10108379,33838347 -g1,12634:10424525,33838347 -g1,12634:10740671,33838347 -g1,12634:11056817,33838347 -g1,12634:11372963,33838347 -g1,12634:11689109,33838347 -g1,12634:12005255,33838347 -g1,12634:12321401,33838347 -g1,12634:12637547,33838347 -g1,12634:12953693,33838347 -g1,12634:13269839,33838347 -g1,12634:13585985,33838347 -g1,12634:13902131,33838347 -g1,12634:14218277,33838347 -g1,12634:14534423,33838347 -g1,12634:14850569,33838347 -g1,12634:16431298,33838347 -g1,12634:17063590,33838347 -k1,12634:17063590,33838347:0 -h1,12634:18012027,33838347:0,0,0 -k1,12634:32583029,33838347:14571002 -g1,12634:32583029,33838347 -) -(1,12635:6630773,34504525:25952256,404226,101187 -h1,12635:6630773,34504525:0,0,0 -g1,12635:6946919,34504525 -g1,12635:7263065,34504525 -g1,12635:7579211,34504525 -g1,12635:7895357,34504525 -g1,12635:8211503,34504525 -g1,12635:8527649,34504525 -g1,12635:8843795,34504525 -g1,12635:9159941,34504525 -g1,12635:9476087,34504525 -g1,12635:9792233,34504525 -g1,12635:10108379,34504525 -g1,12635:10424525,34504525 -g1,12635:10740671,34504525 -g1,12635:11056817,34504525 -g1,12635:11372963,34504525 -g1,12635:11689109,34504525 -g1,12635:12005255,34504525 -g1,12635:12321401,34504525 -g1,12635:12637547,34504525 -g1,12635:12953693,34504525 -g1,12635:13269839,34504525 -g1,12635:13585985,34504525 -g1,12635:13902131,34504525 -g1,12635:14218277,34504525 -g1,12635:14534423,34504525 -g1,12635:14850569,34504525 -g1,12635:16747443,34504525 -g1,12635:17379735,34504525 -g1,12635:19276609,34504525 -h1,12635:19592755,34504525:0,0,0 -k1,12635:32583029,34504525:12990274 -g1,12635:32583029,34504525 -) -(1,12636:6630773,35170703:25952256,404226,76021 -h1,12636:6630773,35170703:0,0,0 -g1,12636:6946919,35170703 -g1,12636:7263065,35170703 -g1,12636:11372959,35170703 -h1,12636:11689105,35170703:0,0,0 -k1,12636:32583029,35170703:20893924 -g1,12636:32583029,35170703 -) -(1,12637:6630773,35836881:25952256,404226,107478 -h1,12637:6630773,35836881:0,0,0 -g1,12637:6946919,35836881 -g1,12637:7263065,35836881 -g1,12637:12637542,35836881 -g1,12637:13269834,35836881 -g1,12637:14850564,35836881 -h1,12637:15166710,35836881:0,0,0 -k1,12637:32583030,35836881:17416320 -g1,12637:32583030,35836881 -) -(1,12638:6630773,36503059:25952256,404226,107478 -h1,12638:6630773,36503059:0,0,0 -g1,12638:6946919,36503059 -g1,12638:7263065,36503059 -g1,12638:14218270,36503059 -g1,12638:14850562,36503059 -g1,12638:17695874,36503059 -g1,12638:19276603,36503059 -g1,12638:19908895,36503059 -k1,12638:19908895,36503059:0 -h1,12638:20541187,36503059:0,0,0 -k1,12638:32583029,36503059:12041842 -g1,12638:32583029,36503059 -) -(1,12639:6630773,37169237:25952256,404226,107478 -h1,12639:6630773,37169237:0,0,0 -g1,12639:6946919,37169237 -g1,12639:7263065,37169237 -g1,12639:7579211,37169237 -g1,12639:7895357,37169237 -g1,12639:8211503,37169237 -g1,12639:8527649,37169237 -g1,12639:8843795,37169237 -g1,12639:9159941,37169237 -g1,12639:9476087,37169237 -g1,12639:9792233,37169237 -g1,12639:10108379,37169237 -g1,12639:10424525,37169237 -g1,12639:10740671,37169237 -g1,12639:11056817,37169237 -g1,12639:11372963,37169237 -g1,12639:11689109,37169237 -g1,12639:12005255,37169237 -g1,12639:12321401,37169237 -g1,12639:18328169,37169237 -g1,12639:18960461,37169237 -g1,12639:20541190,37169237 -g1,12639:24967230,37169237 -g1,12639:25599522,37169237 -h1,12639:26864105,37169237:0,0,0 -k1,12639:32583029,37169237:5718924 -g1,12639:32583029,37169237 -) -] -) -g1,12641:32583029,37276715 -g1,12641:6630773,37276715 -g1,12641:6630773,37276715 -g1,12641:32583029,37276715 -g1,12641:32583029,37276715 -) -h1,12641:6630773,37473323:0,0,0 -] -(1,12654:32583029,45706769:0,0,0 -g1,12654:32583029,45706769 -) -) -] -(1,12654:6630773,47279633:25952256,0,0 -h1,12654:6630773,47279633:25952256,0,0 -) -] -h1,12654:4262630,4025873:0,0,0 -] -!20144 -}241 -Input:1723:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1724:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1725:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1726:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1727:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1728:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1729:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1730:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1731:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1732:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1733:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1734:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1735:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1736:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1737:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1738:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1739:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1740:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1741:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1742:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1743:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1744:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1745:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1990 -{242 -[1,12684:4262630,47279633:28320399,43253760,0 -(1,12684:4262630,4025873:0,0,0 -[1,12684:-473657,4025873:25952256,0,0 -(1,12684:-473657,-710414:25952256,0,0 -h1,12684:-473657,-710414:0,0,0 -(1,12684:-473657,-710414:0,0,0 -(1,12684:-473657,-710414:0,0,0 -g1,12684:-473657,-710414 -(1,12684:-473657,-710414:65781,0,65781 -g1,12684:-407876,-710414 -[1,12684:-407876,-644633:0,0,0 +k1,12673:3078556,49800853:-34777008 +) +] +g1,12673:6630773,4812305 +g1,12673:6630773,4812305 +g1,12673:10347975,4812305 +k1,12673:31387651,4812305:21039676 +) +) +] +[1,12673:6630773,45706769:25952256,40108032,0 +(1,12673:6630773,45706769:25952256,40108032,0 +(1,12673:6630773,45706769:0,0,0 +g1,12673:6630773,45706769 +) +[1,12673:6630773,45706769:25952256,40108032,0 +(1,12635:6630773,14661426:25952256,9062689,0 +k1,12635:10523651,14661426:3892878 +h1,12634:10523651,14661426:0,0,0 +(1,12634:10523651,14661426:18166500,9062689,0 +(1,12634:10523651,14661426:18167381,9062712,0 +(1,12634:10523651,14661426:18167381,9062712,0 +(1,12634:10523651,14661426:0,9062712,0 +(1,12634:10523651,14661426:0,14155776,0 +(1,12634:10523651,14661426:28377088,14155776,0 +) +k1,12634:10523651,14661426:-28377088 +) +) +g1,12634:28691032,14661426 +) +) +) +g1,12635:28690151,14661426 +k1,12635:32583029,14661426:3892878 +) +v1,12643:6630773,16027202:0,393216,0 +(1,12644:6630773,20711213:25952256,5077227,616038 +g1,12644:6630773,20711213 +(1,12644:6630773,20711213:25952256,5077227,616038 +(1,12644:6630773,21327251:25952256,5693265,0 +[1,12644:6630773,21327251:25952256,5693265,0 +(1,12644:6630773,21301037:25952256,5640837,0 +r1,12644:6656987,21301037:26214,5640837,0 +[1,12644:6656987,21301037:25899828,5640837,0 +(1,12644:6656987,20711213:25899828,4461189,0 +[1,12644:7246811,20711213:24720180,4461189,0 +(1,12644:7246811,17337398:24720180,1087374,134348 +k1,12643:8648105,17337398:191591 +k1,12643:10137309,17337398:191591 +k1,12643:11722851,17337398:191591 +k1,12643:12933527,17337398:191591 +k1,12643:16527747,17337398:191591 +k1,12643:17370766,17337398:191591 +k1,12643:18581442,17337398:191591 +k1,12643:21535376,17337398:191591 +k1,12643:25338001,17337398:191591 +k1,12643:26721037,17337398:191591 +k1,12643:28306579,17337398:191591 +k1,12643:29517255,17337398:191591 +k1,12644:31966991,17337398:0 +) +(1,12644:7246811,18178886:24720180,513147,134348 +k1,12643:8341743,18178886:275076 +k1,12643:9268248,18178886:275077 +k1,12643:10521777,18178886:275076 +k1,12643:11567556,18178886:275076 +k1,12643:13167771,18178886:275077 +k1,12643:14102139,18178886:275076 +k1,12643:15925831,18178886:275076 +k1,12643:17305190,18178886:275077 +k1,12643:18328032,18178886:275076 +k1,12643:20180560,18178886:275076 +k1,12643:21849588,18178886:275077 +k1,12643:23937390,18178886:275076 +k1,12643:25254488,18178886:275076 +k1,12643:28364652,18178886:275077 +k1,12643:29732213,18178886:275076 +k1,12643:31966991,18178886:0 +) +(1,12644:7246811,19020374:24720180,505283,134348 +k1,12643:9592762,19020374:206200 +k1,12643:11297770,19020374:206200 +k1,12643:12695415,19020374:206200 +k1,12643:15520434,19020374:206200 +k1,12643:16745719,19020374:206200 +k1,12643:19560252,19020374:206200 +k1,12643:20491280,19020374:206200 +k1,12643:21981986,19020374:206200 +k1,12643:22544046,19020374:206200 +k1,12643:25180976,19020374:206200 +k1,12643:29712552,19020374:206200 +k1,12643:31966991,19020374:0 +) +(1,12644:7246811,19861862:24720180,513147,134348 +k1,12643:7967756,19861862:189448 +k1,12643:10963456,19861862:189448 +k1,12643:12406608,19861862:189448 +k1,12643:13932990,19861862:189448 +k1,12643:15408254,19861862:189448 +k1,12643:16504065,19861862:189448 +k1,12643:19501075,19861862:189448 +k1,12643:20709608,19861862:189448 +(1,12643:20709608,19861862:0,459977,115847 +r1,12644:22123009,19861862:1413401,575824,115847 +k1,12643:20709608,19861862:-1413401 +) +(1,12643:20709608,19861862:1413401,459977,115847 +k1,12643:20709608,19861862:3277 +h1,12643:22119732,19861862:0,411205,112570 +) +k1,12643:22312457,19861862:189448 +k1,12643:23693350,19861862:189448 +(1,12643:23693350,19861862:0,452978,115847 +r1,12644:25458463,19861862:1765113,568825,115847 +k1,12643:23693350,19861862:-1765113 +) +(1,12643:23693350,19861862:1765113,452978,115847 +k1,12643:23693350,19861862:3277 +h1,12643:25455186,19861862:0,411205,112570 +) +k1,12643:25647911,19861862:189448 +k1,12643:28901823,19861862:189448 +k1,12643:29742699,19861862:189448 +k1,12643:31966991,19861862:0 +) +(1,12644:7246811,20703350:24720180,505283,7863 +g1,12643:8062078,20703350 +g1,12643:9280392,20703350 +k1,12644:31966990,20703350:21123564 +g1,12644:31966990,20703350 +) +] +) +] +r1,12644:32583029,21301037:26214,5640837,0 +) +] +) +) +g1,12644:32583029,20711213 +) +h1,12644:6630773,21327251:0,0,0 +(1,12647:6630773,22693027:25952256,513147,126483 +h1,12646:6630773,22693027:983040,0,0 +k1,12646:8434338,22693027:342768 +k1,12646:9796191,22693027:342768 +k1,12646:13419691,22693027:342768 +(1,12646:13419691,22693027:0,452978,115847 +r1,12646:17998499,22693027:4578808,568825,115847 +k1,12646:13419691,22693027:-4578808 +) +(1,12646:13419691,22693027:4578808,452978,115847 +k1,12646:13419691,22693027:3277 +h1,12646:17995222,22693027:0,411205,112570 +) +k1,12646:18341267,22693027:342768 +k1,12646:19351192,22693027:342769 +(1,12646:19351192,22693027:0,452978,122846 +r1,12646:23226576,22693027:3875384,575824,122846 +k1,12646:19351192,22693027:-3875384 +) +(1,12646:19351192,22693027:3875384,452978,122846 +k1,12646:19351192,22693027:3277 +h1,12646:23223299,22693027:0,411205,112570 +) +k1,12646:23569344,22693027:342768 +k1,12646:24443609,22693027:342768 +k1,12646:25720920,22693027:342768 +k1,12646:26715116,22693027:342768 +(1,12646:26715116,22693027:0,414482,115847 +r1,12646:28128517,22693027:1413401,530329,115847 +k1,12646:26715116,22693027:-1413401 +) +(1,12646:26715116,22693027:1413401,414482,115847 +k1,12646:26715116,22693027:3277 +h1,12646:28125240,22693027:0,411205,112570 +) +k1,12646:28644955,22693027:342768 +k1,12646:30213902,22693027:342768 +k1,12646:32583029,22693027:0 +) +(1,12647:6630773,23534515:25952256,505283,134348 +k1,12646:8152399,23534515:389164 +k1,12646:9289330,23534515:389165 +k1,12646:12176071,23534515:389164 +k1,12646:13326764,23534515:389165 +k1,12646:17589106,23534515:389164 +k1,12646:18997356,23534515:389165 +k1,12646:20612699,23534515:389164 +k1,12646:22286370,23534515:389165 +k1,12646:24631784,23534515:389164 +k1,12646:28122768,23534515:389165 +k1,12646:30881059,23534515:389164 +k1,12646:32583029,23534515:0 +) +(1,12647:6630773,24376003:25952256,513147,126483 +k1,12646:8231098,24376003:200476 +k1,12646:11404286,24376003:200475 +k1,12646:14268801,24376003:200476 +k1,12646:15136432,24376003:200475 +(1,12646:15136432,24376003:0,452978,122846 +r1,12646:19011816,24376003:3875384,575824,122846 +k1,12646:15136432,24376003:-3875384 +) +(1,12646:15136432,24376003:3875384,452978,122846 +k1,12646:15136432,24376003:3277 +h1,12646:19008539,24376003:0,411205,112570 +) +k1,12646:19212292,24376003:200476 +k1,12646:20604212,24376003:200475 +(1,12646:20604212,24376003:0,452978,122846 +r1,12646:24831308,24376003:4227096,575824,122846 +k1,12646:20604212,24376003:-4227096 +) +(1,12646:20604212,24376003:4227096,452978,122846 +k1,12646:20604212,24376003:3277 +h1,12646:24828031,24376003:0,411205,112570 +) +k1,12646:25205454,24376003:200476 +(1,12646:25205454,24376003:0,452978,122846 +r1,12646:31191109,24376003:5985655,575824,122846 +k1,12646:25205454,24376003:-5985655 +) +(1,12646:25205454,24376003:5985655,452978,122846 +k1,12646:25205454,24376003:3277 +h1,12646:31187832,24376003:0,411205,112570 +) +k1,12646:31391584,24376003:200475 +k1,12647:32583029,24376003:0 +) +(1,12647:6630773,25217491:25952256,505283,134348 +(1,12646:6630773,25217491:0,452978,122846 +r1,12646:12968140,25217491:6337367,575824,122846 +k1,12646:6630773,25217491:-6337367 +) +(1,12646:6630773,25217491:6337367,452978,122846 +k1,12646:6630773,25217491:3277 +h1,12646:12964863,25217491:0,411205,112570 +) +k1,12646:13452774,25217491:310964 +k1,12646:14755298,25217491:310964 +k1,12646:17850231,25217491:310964 +k1,12646:18777233,25217491:310964 +k1,12646:21668349,25217491:310964 +k1,12646:24917291,25217491:310964 +k1,12646:27102585,25217491:310964 +k1,12646:30853534,25217491:310964 +k1,12646:32583029,25217491:0 +) +(1,12647:6630773,26058979:25952256,505283,134348 +k1,12646:9513404,26058979:183203 +k1,12646:10458134,26058979:183202 +k1,12646:14958194,26058979:183203 +k1,12646:19381576,26058979:183203 +k1,12646:20583864,26058979:183203 +k1,12646:21993245,26058979:183202 +k1,12646:22859333,26058979:183203 +k1,12646:25060390,26058979:183203 +k1,12646:27205086,26058979:183203 +k1,12646:28800589,26058979:183202 +k1,12646:30002877,26058979:183203 +k1,12646:32583029,26058979:0 +) +(1,12647:6630773,26900467:25952256,513147,134348 +k1,12646:11655775,26900467:198931 +k1,12646:12802358,26900467:198932 +k1,12646:15118757,26900467:198931 +k1,12646:15976980,26900467:198931 +k1,12646:17506293,26900467:198932 +k1,12646:18356652,26900467:198931 +k1,12646:20843446,26900467:198932 +k1,12646:22061462,26900467:198931 +k1,12646:25277671,26900467:198931 +k1,12646:28160302,26900467:198932 +k1,12646:29550678,26900467:198931 +k1,12646:32583029,26900467:0 +) +(1,12647:6630773,27741955:25952256,513147,134348 +k1,12646:8024865,27741955:202647 +k1,12646:9246596,27741955:202646 +k1,12646:12745049,27741955:202647 +k1,12646:13606987,27741955:202646 +k1,12646:14828719,27741955:202647 +k1,12646:18052575,27741955:202646 +k1,12646:20459198,27741955:202647 +k1,12646:21680929,27741955:202646 +k1,12646:23727759,27741955:202647 +k1,12646:24581833,27741955:202646 +k1,12646:25803565,27741955:202647 +k1,12646:28620442,27741955:202646 +k1,12646:29482381,27741955:202647 +k1,12646:31193666,27741955:202646 +k1,12646:32583029,27741955:0 +) +(1,12647:6630773,28583443:25952256,505283,126483 +k1,12646:10732423,28583443:189806 +k1,12646:12972196,28583443:189807 +k1,12646:13928118,28583443:189806 +k1,12646:17292489,28583443:189807 +k1,12646:20776790,28583443:189806 +k1,12646:21728125,28583443:189807 +(1,12646:21728125,28583443:0,452978,122846 +r1,12646:25603509,28583443:3875384,575824,122846 +k1,12646:21728125,28583443:-3875384 +) +(1,12646:21728125,28583443:3875384,452978,122846 +k1,12646:21728125,28583443:3277 +h1,12646:25600232,28583443:0,411205,112570 +) +k1,12646:25793315,28583443:189806 +k1,12646:27174567,28583443:189807 +(1,12646:27174567,28583443:0,452978,122846 +r1,12646:31401663,28583443:4227096,575824,122846 +k1,12646:27174567,28583443:-4227096 +) +(1,12646:27174567,28583443:4227096,452978,122846 +k1,12646:27174567,28583443:3277 +h1,12646:31398386,28583443:0,411205,112570 +) +k1,12646:31591469,28583443:189806 +k1,12646:32583029,28583443:0 +) +(1,12647:6630773,29424931:25952256,505283,134348 +k1,12646:10136294,29424931:211026 +k1,12646:11108848,29424931:211026 +k1,12646:12338959,29424931:211026 +k1,12646:15462405,29424931:211026 +k1,12646:18511140,29424931:211026 +k1,12646:21656867,29424931:211025 +k1,12646:23562654,29424931:211026 +k1,12646:25058186,29424931:211026 +k1,12646:25625072,29424931:211026 +k1,12646:28527006,29424931:211026 +k1,12646:31563944,29424931:211026 +k1,12646:32583029,29424931:0 +) +(1,12647:6630773,30266419:25952256,513147,134348 +k1,12646:8357740,30266419:213085 +k1,12646:9253711,30266419:213086 +k1,12646:10692975,30266419:213085 +k1,12646:11557489,30266419:213086 +k1,12646:12558972,30266419:213085 +k1,12646:14974068,30266419:213086 +k1,12646:17049031,30266419:213085 +k1,12646:19493617,30266419:213085 +k1,12646:23002509,30266419:213086 +k1,12646:23874886,30266419:213085 +k1,12646:25784699,30266419:213086 +k1,12646:29018994,30266419:213085 +k1,12646:30336362,30266419:213086 +k1,12646:31835263,30266419:213085 +k1,12646:32583029,30266419:0 +) +(1,12647:6630773,31107907:25952256,505283,134348 +g1,12646:10091073,31107907 +g1,12646:11684253,31107907 +g1,12646:15058046,31107907 +g1,12646:15940160,31107907 +k1,12647:32583029,31107907:13066569 +g1,12647:32583029,31107907 +) +v1,12649:6630773,32298373:0,393216,0 +(1,12660:6630773,37276715:25952256,5371558,196608 +g1,12660:6630773,37276715 +g1,12660:6630773,37276715 +g1,12660:6434165,37276715 +(1,12660:6434165,37276715:0,5371558,196608 +r1,12660:32779637,37276715:26345472,5568166,196608 +k1,12660:6434165,37276715:-26345472 +) +(1,12660:6434165,37276715:26345472,5371558,196608 +[1,12660:6630773,37276715:25952256,5174950,0 +(1,12651:6630773,32505991:25952256,404226,107478 +(1,12650:6630773,32505991:0,0,0 +g1,12650:6630773,32505991 +g1,12650:6630773,32505991 +g1,12650:6303093,32505991 +(1,12650:6303093,32505991:0,0,0 +) +g1,12650:6630773,32505991 +) +k1,12651:6630773,32505991:0 +g1,12651:10424522,32505991 +g1,12651:11056814,32505991 +g1,12651:13585980,32505991 +g1,12651:15482855,32505991 +g1,12651:16115147,32505991 +g1,12651:18012022,32505991 +g1,12651:18644314,32505991 +g1,12651:19276606,32505991 +k1,12651:19276606,32505991:0 +h1,12651:20541189,32505991:0,0,0 +k1,12651:32583029,32505991:12041840 +g1,12651:32583029,32505991 +) +(1,12652:6630773,33172169:25952256,410518,101187 +h1,12652:6630773,33172169:0,0,0 +g1,12652:6946919,33172169 +g1,12652:7263065,33172169 +g1,12652:7579211,33172169 +g1,12652:7895357,33172169 +g1,12652:8211503,33172169 +g1,12652:8527649,33172169 +g1,12652:8843795,33172169 +g1,12652:9159941,33172169 +g1,12652:9476087,33172169 +g1,12652:9792233,33172169 +g1,12652:10108379,33172169 +g1,12652:10424525,33172169 +g1,12652:10740671,33172169 +g1,12652:11056817,33172169 +g1,12652:11372963,33172169 +g1,12652:11689109,33172169 +g1,12652:12005255,33172169 +g1,12652:12321401,33172169 +g1,12652:12637547,33172169 +g1,12652:12953693,33172169 +g1,12652:13269839,33172169 +g1,12652:13585985,33172169 +g1,12652:13902131,33172169 +g1,12652:14218277,33172169 +g1,12652:14534423,33172169 +g1,12652:14850569,33172169 +g1,12652:16747443,33172169 +g1,12652:17379735,33172169 +k1,12652:17379735,33172169:0 +h1,12652:21173483,33172169:0,0,0 +k1,12652:32583029,33172169:11409546 +g1,12652:32583029,33172169 +) +(1,12653:6630773,33838347:25952256,404226,82312 +h1,12653:6630773,33838347:0,0,0 +g1,12653:6946919,33838347 +g1,12653:7263065,33838347 +g1,12653:7579211,33838347 +g1,12653:7895357,33838347 +g1,12653:8211503,33838347 +g1,12653:8527649,33838347 +g1,12653:8843795,33838347 +g1,12653:9159941,33838347 +g1,12653:9476087,33838347 +g1,12653:9792233,33838347 +g1,12653:10108379,33838347 +g1,12653:10424525,33838347 +g1,12653:10740671,33838347 +g1,12653:11056817,33838347 +g1,12653:11372963,33838347 +g1,12653:11689109,33838347 +g1,12653:12005255,33838347 +g1,12653:12321401,33838347 +g1,12653:12637547,33838347 +g1,12653:12953693,33838347 +g1,12653:13269839,33838347 +g1,12653:13585985,33838347 +g1,12653:13902131,33838347 +g1,12653:14218277,33838347 +g1,12653:14534423,33838347 +g1,12653:14850569,33838347 +g1,12653:16431298,33838347 +g1,12653:17063590,33838347 +k1,12653:17063590,33838347:0 +h1,12653:18012027,33838347:0,0,0 +k1,12653:32583029,33838347:14571002 +g1,12653:32583029,33838347 +) +(1,12654:6630773,34504525:25952256,404226,101187 +h1,12654:6630773,34504525:0,0,0 +g1,12654:6946919,34504525 +g1,12654:7263065,34504525 +g1,12654:7579211,34504525 +g1,12654:7895357,34504525 +g1,12654:8211503,34504525 +g1,12654:8527649,34504525 +g1,12654:8843795,34504525 +g1,12654:9159941,34504525 +g1,12654:9476087,34504525 +g1,12654:9792233,34504525 +g1,12654:10108379,34504525 +g1,12654:10424525,34504525 +g1,12654:10740671,34504525 +g1,12654:11056817,34504525 +g1,12654:11372963,34504525 +g1,12654:11689109,34504525 +g1,12654:12005255,34504525 +g1,12654:12321401,34504525 +g1,12654:12637547,34504525 +g1,12654:12953693,34504525 +g1,12654:13269839,34504525 +g1,12654:13585985,34504525 +g1,12654:13902131,34504525 +g1,12654:14218277,34504525 +g1,12654:14534423,34504525 +g1,12654:14850569,34504525 +g1,12654:16747443,34504525 +g1,12654:17379735,34504525 +g1,12654:19276609,34504525 +h1,12654:19592755,34504525:0,0,0 +k1,12654:32583029,34504525:12990274 +g1,12654:32583029,34504525 +) +(1,12655:6630773,35170703:25952256,404226,76021 +h1,12655:6630773,35170703:0,0,0 +g1,12655:6946919,35170703 +g1,12655:7263065,35170703 +g1,12655:11372959,35170703 +h1,12655:11689105,35170703:0,0,0 +k1,12655:32583029,35170703:20893924 +g1,12655:32583029,35170703 +) +(1,12656:6630773,35836881:25952256,404226,107478 +h1,12656:6630773,35836881:0,0,0 +g1,12656:6946919,35836881 +g1,12656:7263065,35836881 +g1,12656:12637542,35836881 +g1,12656:13269834,35836881 +g1,12656:14850564,35836881 +h1,12656:15166710,35836881:0,0,0 +k1,12656:32583030,35836881:17416320 +g1,12656:32583030,35836881 +) +(1,12657:6630773,36503059:25952256,404226,107478 +h1,12657:6630773,36503059:0,0,0 +g1,12657:6946919,36503059 +g1,12657:7263065,36503059 +g1,12657:14218270,36503059 +g1,12657:14850562,36503059 +g1,12657:17695874,36503059 +g1,12657:19276603,36503059 +g1,12657:19908895,36503059 +k1,12657:19908895,36503059:0 +h1,12657:20541187,36503059:0,0,0 +k1,12657:32583029,36503059:12041842 +g1,12657:32583029,36503059 +) +(1,12658:6630773,37169237:25952256,404226,107478 +h1,12658:6630773,37169237:0,0,0 +g1,12658:6946919,37169237 +g1,12658:7263065,37169237 +g1,12658:7579211,37169237 +g1,12658:7895357,37169237 +g1,12658:8211503,37169237 +g1,12658:8527649,37169237 +g1,12658:8843795,37169237 +g1,12658:9159941,37169237 +g1,12658:9476087,37169237 +g1,12658:9792233,37169237 +g1,12658:10108379,37169237 +g1,12658:10424525,37169237 +g1,12658:10740671,37169237 +g1,12658:11056817,37169237 +g1,12658:11372963,37169237 +g1,12658:11689109,37169237 +g1,12658:12005255,37169237 +g1,12658:12321401,37169237 +g1,12658:18328169,37169237 +g1,12658:18960461,37169237 +g1,12658:20541190,37169237 +g1,12658:24967230,37169237 +g1,12658:25599522,37169237 +h1,12658:26864105,37169237:0,0,0 +k1,12658:32583029,37169237:5718924 +g1,12658:32583029,37169237 +) +] +) +g1,12660:32583029,37276715 +g1,12660:6630773,37276715 +g1,12660:6630773,37276715 +g1,12660:32583029,37276715 +g1,12660:32583029,37276715 +) +h1,12660:6630773,37473323:0,0,0 +] +(1,12673:32583029,45706769:0,0,0 +g1,12673:32583029,45706769 +) +) +] +(1,12673:6630773,47279633:25952256,0,0 +h1,12673:6630773,47279633:25952256,0,0 +) +] +h1,12673:4262630,4025873:0,0,0 +] +!20142 +}242 +Input:1719:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1720:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1721:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1722:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1723:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1724:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1725:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1726:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1727:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1728:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1729:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1730:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1731:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1732:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1733:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1734:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1735:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1736:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1737:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1738:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1739:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1740:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1741:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2128 +{243 +[1,12703:4262630,47279633:28320399,43253760,0 +(1,12703:4262630,4025873:0,0,0 +[1,12703:-473657,4025873:25952256,0,0 +(1,12703:-473657,-710414:25952256,0,0 +h1,12703:-473657,-710414:0,0,0 +(1,12703:-473657,-710414:0,0,0 +(1,12703:-473657,-710414:0,0,0 +g1,12703:-473657,-710414 +(1,12703:-473657,-710414:65781,0,65781 +g1,12703:-407876,-710414 +[1,12703:-407876,-644633:0,0,0 ] ) -k1,12684:-473657,-710414:-65781 +k1,12703:-473657,-710414:-65781 ) ) -k1,12684:25478599,-710414:25952256 -g1,12684:25478599,-710414 +k1,12703:25478599,-710414:25952256 +g1,12703:25478599,-710414 ) ] ) -[1,12684:6630773,47279633:25952256,43253760,0 -[1,12684:6630773,4812305:25952256,786432,0 -(1,12684:6630773,4812305:25952256,485622,11795 -(1,12684:6630773,4812305:25952256,485622,11795 -g1,12684:3078558,4812305 -[1,12684:3078558,4812305:0,0,0 -(1,12684:3078558,2439708:0,1703936,0 -k1,12684:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12684:2537886,2439708:1179648,16384,0 +[1,12703:6630773,47279633:25952256,43253760,0 +[1,12703:6630773,4812305:25952256,786432,0 +(1,12703:6630773,4812305:25952256,513147,134348 +(1,12703:6630773,4812305:25952256,513147,134348 +g1,12703:3078558,4812305 +[1,12703:3078558,4812305:0,0,0 +(1,12703:3078558,2439708:0,1703936,0 +k1,12703:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12703:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12684:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12703:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12684:3078558,4812305:0,0,0 -(1,12684:3078558,2439708:0,1703936,0 -g1,12684:29030814,2439708 -g1,12684:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12684:36151628,1915420:16384,1179648,0 +[1,12703:3078558,4812305:0,0,0 +(1,12703:3078558,2439708:0,1703936,0 +g1,12703:29030814,2439708 +g1,12703:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12703:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12684:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12703:37855564,2439708:1179648,16384,0 ) ) -k1,12684:3078556,2439708:-34777008 +k1,12703:3078556,2439708:-34777008 ) ] -[1,12684:3078558,4812305:0,0,0 -(1,12684:3078558,49800853:0,16384,2228224 -k1,12684:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12684:2537886,49800853:1179648,16384,0 +[1,12703:3078558,4812305:0,0,0 +(1,12703:3078558,49800853:0,16384,2228224 +k1,12703:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12703:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12684:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12703:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12684:3078558,4812305:0,0,0 -(1,12684:3078558,49800853:0,16384,2228224 -g1,12684:29030814,49800853 -g1,12684:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12684:36151628,51504789:16384,1179648,0 +[1,12703:3078558,4812305:0,0,0 +(1,12703:3078558,49800853:0,16384,2228224 +g1,12703:29030814,49800853 +g1,12703:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12703:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12684:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12703:37855564,49800853:1179648,16384,0 ) ) -k1,12684:3078556,49800853:-34777008 +k1,12703:3078556,49800853:-34777008 ) ] -g1,12684:6630773,4812305 -g1,12684:6630773,4812305 -g1,12684:10347975,4812305 -k1,12684:31387651,4812305:21039676 +g1,12703:6630773,4812305 +k1,12703:25712890,4812305:17886740 +g1,12703:29057847,4812305 +g1,12703:29873114,4812305 ) ) ] -[1,12684:6630773,45706769:25952256,40108032,0 -(1,12684:6630773,45706769:25952256,40108032,0 -(1,12684:6630773,45706769:0,0,0 -g1,12684:6630773,45706769 +[1,12703:6630773,45706769:25952256,40108032,0 +(1,12703:6630773,45706769:25952256,40108032,0 +(1,12703:6630773,45706769:0,0,0 +g1,12703:6630773,45706769 ) -[1,12684:6630773,45706769:25952256,40108032,0 -(1,12644:6630773,14661426:25952256,9062689,0 -k1,12644:10523651,14661426:3892878 -h1,12643:10523651,14661426:0,0,0 -(1,12643:10523651,14661426:18166500,9062689,0 -(1,12643:10523651,14661426:18167381,9062712,0 -(1,12643:10523651,14661426:18167381,9062712,0 -(1,12643:10523651,14661426:0,9062712,0 -(1,12643:10523651,14661426:0,14155776,0 -(1,12643:10523651,14661426:28377088,14155776,0 +[1,12703:6630773,45706769:25952256,40108032,0 +(1,12663:6630773,14661426:25952256,9062689,0 +k1,12663:10523651,14661426:3892878 +h1,12662:10523651,14661426:0,0,0 +(1,12662:10523651,14661426:18166500,9062689,0 +(1,12662:10523651,14661426:18167381,9062712,0 +(1,12662:10523651,14661426:18167381,9062712,0 +(1,12662:10523651,14661426:0,9062712,0 +(1,12662:10523651,14661426:0,14155776,0 +(1,12662:10523651,14661426:28377088,14155776,0 ) -k1,12643:10523651,14661426:-28377088 +k1,12662:10523651,14661426:-28377088 ) ) -g1,12643:28691032,14661426 -) -) -) -g1,12644:28690151,14661426 -k1,12644:32583029,14661426:3892878 -) -(1,12654:6630773,16752686:25952256,555811,12975 -(1,12654:6630773,16752686:2450326,534184,12975 -g1,12654:6630773,16752686 -g1,12654:9081099,16752686 -) -g1,12654:10708162,16752686 -k1,12654:32583030,16752686:19728040 -g1,12654:32583030,16752686 -) -(1,12659:6630773,17987390:25952256,513147,134348 -k1,12658:8030638,17987390:203178 -k1,12658:10760229,17987390:203178 -k1,12658:11911059,17987390:203179 -k1,12658:13995120,17987390:203178 -k1,12658:14814336,17987390:203178 -k1,12658:17846047,17987390:203178 -k1,12658:18580722,17987390:203178 -k1,12658:21540344,17987390:203178 -k1,12658:22394951,17987390:203179 -(1,12658:22394951,17987390:0,452978,115847 -r1,12658:29084029,17987390:6689078,568825,115847 -k1,12658:22394951,17987390:-6689078 -) -(1,12658:22394951,17987390:6689078,452978,115847 -k1,12658:22394951,17987390:3277 -h1,12658:29080752,17987390:0,411205,112570 -) -k1,12658:29287207,17987390:203178 -k1,12658:31375856,17987390:203178 -k1,12658:32583029,17987390:0 -) -(1,12659:6630773,18828878:25952256,513147,134348 -k1,12658:9700900,18828878:213413 -k1,12658:10565742,18828878:213414 -k1,12658:11526921,18828878:213413 -k1,12658:13253560,18828878:213413 -k1,12658:14414624,18828878:213413 -k1,12658:16362776,18828878:213414 -k1,12658:20366791,18828878:213413 -k1,12658:23419224,18828878:213413 -k1,12658:24284066,18828878:213414 -k1,12658:25245245,18828878:213413 -k1,12658:26477743,18828878:213413 -k1,12658:28344629,18828878:213413 -k1,12658:29174081,18828878:213414 -k1,12658:30839116,18828878:213413 -k1,12658:32583029,18828878:0 -) -(1,12659:6630773,19670366:25952256,513147,134348 -k1,12658:7554780,19670366:264715 -k1,12658:8175355,19670366:264715 -k1,12658:9717367,19670366:264715 -k1,12658:11208261,19670366:264715 -k1,12658:12565461,19670366:264715 -k1,12658:13489468,19670366:264715 -k1,12658:17544786,19670366:264716 -k1,12658:18340998,19670366:264715 -k1,12658:21695736,19670366:264715 -k1,12658:22576489,19670366:264715 -k1,12658:25119891,19670366:264715 -h1,12658:26090479,19670366:0,0,0 -k1,12658:26735958,19670366:264715 -k1,12658:29535606,19670366:264715 -k1,12658:32583029,19670366:0 -) -(1,12659:6630773,20511854:25952256,505283,134348 -k1,12658:9568731,20511854:177582 -k1,12658:11812664,20511854:177583 -k1,12658:13274752,20511854:177582 -k1,12658:15428245,20511854:177583 -(1,12658:15428245,20511854:0,452978,122846 -r1,12658:19303629,20511854:3875384,575824,122846 -k1,12658:15428245,20511854:-3875384 -) -(1,12658:15428245,20511854:3875384,452978,122846 -k1,12658:15428245,20511854:3277 -h1,12658:19300352,20511854:0,411205,112570 -) -k1,12658:19481211,20511854:177582 -k1,12658:20274831,20511854:177582 -k1,12658:22916568,20511854:177583 -k1,12658:23745578,20511854:177582 -k1,12658:24942246,20511854:177583 -k1,12658:28184292,20511854:177582 -k1,12658:30048772,20511854:177583 -k1,12658:31298523,20511854:177582 -k1,12658:32583029,20511854:0 -) -(1,12659:6630773,21353342:25952256,505283,126483 -k1,12658:9620220,21353342:221206 -k1,12658:10492855,21353342:221207 -(1,12658:10492855,21353342:0,459977,122846 -r1,12658:13664815,21353342:3171960,582823,122846 -k1,12658:10492855,21353342:-3171960 -) -(1,12658:10492855,21353342:3171960,459977,122846 -k1,12658:10492855,21353342:3277 -h1,12658:13661538,21353342:0,411205,112570 -) -k1,12658:14059691,21353342:221206 -k1,12658:16351836,21353342:221207 -k1,12658:17857548,21353342:221206 -k1,12658:19097839,21353342:221206 -k1,12658:21701935,21353342:221207 -k1,12658:22539179,21353342:221206 -(1,12658:22539179,21353342:0,452978,115847 -r1,12658:23952580,21353342:1413401,568825,115847 -k1,12658:22539179,21353342:-1413401 -) -(1,12658:22539179,21353342:1413401,452978,115847 -k1,12658:22539179,21353342:3277 -h1,12658:23949303,21353342:0,411205,112570 -) -k1,12658:24173786,21353342:221206 -k1,12658:26980388,21353342:221207 -k1,12658:27853022,21353342:221206 -k1,12658:29093314,21353342:221207 -(1,12658:29093314,21353342:0,452978,115847 -r1,12658:30858427,21353342:1765113,568825,115847 -k1,12658:29093314,21353342:-1765113 -) -(1,12658:29093314,21353342:1765113,452978,115847 -k1,12658:29093314,21353342:3277 -h1,12658:30855150,21353342:0,411205,112570 -) -k1,12658:31079633,21353342:221206 -k1,12659:32583029,21353342:0 -) -(1,12659:6630773,22194830:25952256,513147,134348 -k1,12658:8765459,22194830:250526 -k1,12658:10007546,22194830:250527 -k1,12658:11581899,22194830:250526 -k1,12658:12491717,22194830:250526 -k1,12658:15032071,22194830:250526 -k1,12658:18644595,22194830:250527 -k1,12658:21566368,22194830:250526 -k1,12658:23797392,22194830:250526 -k1,12658:24707210,22194830:250526 -k1,12658:28938394,22194830:250527 -k1,12658:31140582,22194830:250526 -k1,12658:32583029,22194830:0 -) -(1,12659:6630773,23036318:25952256,513147,134348 -k1,12658:8994710,23036318:201904 -k1,12658:11678462,23036318:201904 -k1,12658:14107279,23036318:201904 -k1,12658:14960611,23036318:201904 -(1,12658:14960611,23036318:0,459977,122846 -r1,12658:18132571,23036318:3171960,582823,122846 -k1,12658:14960611,23036318:-3171960 -) -(1,12658:14960611,23036318:3171960,459977,122846 -k1,12658:14960611,23036318:3277 -h1,12658:18129294,23036318:0,411205,112570 -) -k1,12658:18334475,23036318:201904 -k1,12658:20233106,23036318:201904 -k1,12658:22501359,23036318:201903 -k1,12658:23518531,23036318:201904 -k1,12658:24786706,23036318:201904 -k1,12658:27113287,23036318:201904 -k1,12658:28334276,23036318:201904 -k1,12658:30317449,23036318:201904 -k1,12658:32583029,23036318:0 -) -(1,12659:6630773,23877806:25952256,505283,134348 -k1,12658:10045442,23877806:276805 -k1,12658:10973674,23877806:276804 -k1,12658:14598713,23877806:276805 -k1,12658:16707904,23877806:276804 -k1,12658:20492196,23877806:276805 -k1,12658:21760560,23877806:276804 -k1,12658:24947819,23877806:276805 -k1,12658:28182263,23877806:276804 -(1,12658:28182263,23877806:0,452978,122846 -r1,12658:32409359,23877806:4227096,575824,122846 -k1,12658:28182263,23877806:-4227096 -) -(1,12658:28182263,23877806:4227096,452978,122846 -k1,12658:28182263,23877806:3277 -h1,12658:32406082,23877806:0,411205,112570 -) -k1,12659:32583029,23877806:0 -) -(1,12659:6630773,24719294:25952256,505283,122846 -(1,12658:6630773,24719294:0,452978,122846 -r1,12658:10506157,24719294:3875384,575824,122846 -k1,12658:6630773,24719294:-3875384 -) -(1,12658:6630773,24719294:3875384,452978,122846 -k1,12658:6630773,24719294:3277 -h1,12658:10502880,24719294:0,411205,112570 -) -g1,12658:10705386,24719294 -g1,12658:12096060,24719294 -(1,12658:12096060,24719294:0,452978,122846 -r1,12658:15971444,24719294:3875384,575824,122846 -k1,12658:12096060,24719294:-3875384 -) -(1,12658:12096060,24719294:3875384,452978,122846 -k1,12658:12096060,24719294:3277 -h1,12658:15968167,24719294:0,411205,112570 -) -k1,12659:32583029,24719294:16437915 -g1,12659:32583029,24719294 -) -v1,12661:6630773,25947897:0,393216,0 -(1,12662:6630773,29907202:25952256,4352521,616038 -g1,12662:6630773,29907202 -(1,12662:6630773,29907202:25952256,4352521,616038 -(1,12662:6630773,30523240:25952256,4968559,0 -[1,12662:6630773,30523240:25952256,4968559,0 -(1,12662:6630773,30497026:25952256,4916131,0 -r1,12662:6656987,30497026:26214,4916131,0 -[1,12662:6656987,30497026:25899828,4916131,0 -(1,12662:6656987,29907202:25899828,3736483,0 -[1,12662:7246811,29907202:24720180,3736483,0 -(1,12662:7246811,27256255:24720180,1085536,298548 -(1,12661:7246811,27256255:0,1085536,298548 -r1,12662:8753226,27256255:1506415,1384084,298548 -k1,12661:7246811,27256255:-1506415 -) -(1,12661:7246811,27256255:1506415,1085536,298548 -) -k1,12661:8989131,27256255:235905 -k1,12661:11025310,27256255:235905 -k1,12661:12545721,27256255:235905 -(1,12661:12545721,27256255:0,452978,122846 -r1,12662:16772817,27256255:4227096,575824,122846 -k1,12661:12545721,27256255:-4227096 -) -(1,12661:12545721,27256255:4227096,452978,122846 -k1,12661:12545721,27256255:3277 -h1,12661:16769540,27256255:0,411205,112570 -) -k1,12661:17182392,27256255:235905 -(1,12661:17182392,27256255:0,452978,122846 -r1,12662:21057776,27256255:3875384,575824,122846 -k1,12661:17182392,27256255:-3875384 -) -(1,12661:17182392,27256255:3875384,452978,122846 -k1,12661:17182392,27256255:3277 -h1,12661:21054499,27256255:0,411205,112570 -) -k1,12661:21293681,27256255:235905 -k1,12661:22721031,27256255:235905 -(1,12661:22721031,27256255:0,452978,122846 -r1,12662:26596415,27256255:3875384,575824,122846 -k1,12661:22721031,27256255:-3875384 -) -(1,12661:22721031,27256255:3875384,452978,122846 -k1,12661:22721031,27256255:3277 -h1,12661:26593138,27256255:0,411205,112570 -) -k1,12661:26832320,27256255:235905 -k1,12661:28200687,27256255:235905 -k1,12661:30282741,27256255:235905 -k1,12661:31611131,27256255:235905 -k1,12661:31966991,27256255:0 -) -(1,12662:7246811,28097743:24720180,513147,134348 -k1,12661:10221641,28097743:167268 -k1,12661:13281668,28097743:167268 -k1,12661:15016557,28097743:167268 -k1,12661:16202910,28097743:167268 -k1,12661:18253027,28097743:167268 -k1,12661:19871262,28097743:167268 -k1,12661:20800059,28097743:167269 -k1,12661:23232907,28097743:167268 -k1,12661:24780363,28097743:167268 -k1,12661:25762899,28097743:167268 -k1,12661:26996438,28097743:167268 -k1,12661:29288383,28097743:167268 -k1,12661:30087418,28097743:167268 -k1,12661:31966991,28097743:0 -) -(1,12662:7246811,28939231:24720180,513147,134348 -k1,12661:8525036,28939231:259140 -k1,12661:11591739,28939231:259141 -k1,12661:14031262,28939231:259140 -k1,12661:15038168,28939231:259140 -k1,12661:18058340,28939231:259140 -k1,12661:19003643,28939231:259141 -k1,12661:20033486,28939231:259140 -k1,12661:23364954,28939231:259140 -k1,12661:24275522,28939231:259140 -k1,12661:26231390,28939231:259141 -k1,12661:29516327,28939231:259140 -k1,12661:30458352,28939231:259140 -k1,12661:31966991,28939231:0 -) -(1,12662:7246811,29780719:24720180,505283,126483 -g1,12661:10726772,29780719 -(1,12661:10726772,29780719:0,452978,115847 -r1,12662:14602156,29780719:3875384,568825,115847 -k1,12661:10726772,29780719:-3875384 -) -(1,12661:10726772,29780719:3875384,452978,115847 -k1,12661:10726772,29780719:3277 -h1,12661:14598879,29780719:0,411205,112570 -) -g1,12661:14801385,29780719 -g1,12661:17897961,29780719 -g1,12661:19031733,29780719 -g1,12661:19882390,29780719 -(1,12661:19882390,29780719:0,414482,115847 -r1,12662:21295791,29780719:1413401,530329,115847 -k1,12661:19882390,29780719:-1413401 -) -(1,12661:19882390,29780719:1413401,414482,115847 -k1,12661:19882390,29780719:3277 -h1,12661:21292514,29780719:0,411205,112570 -) -k1,12662:31966991,29780719:10497530 -g1,12662:31966991,29780719 -) -] -) -] -r1,12662:32583029,30497026:26214,4916131,0 -) -] -) -) -g1,12662:32583029,29907202 -) -h1,12662:6630773,30523240:0,0,0 -(1,12666:6630773,31751844:25952256,513147,134348 -h1,12665:6630773,31751844:983040,0,0 -k1,12665:8994816,31751844:184316 -k1,12665:11703578,31751844:184315 -k1,12665:12547186,31751844:184316 -k1,12665:14627459,31751844:184316 -k1,12665:15573303,31751844:184316 -k1,12665:18565180,31751844:184315 -k1,12665:19105356,31751844:184316 -k1,12665:20283198,31751844:184316 -k1,12665:21126806,31751844:184316 -k1,12665:22700484,31751844:184315 -k1,12665:25091397,31751844:184316 -k1,12665:25927141,31751844:184316 -k1,12665:27130542,31751844:184316 -(1,12665:27130542,31751844:0,452978,115847 -r1,12665:28895655,31751844:1765113,568825,115847 -k1,12665:27130542,31751844:-1765113 -) -(1,12665:27130542,31751844:1765113,452978,115847 -k1,12665:27130542,31751844:3277 -h1,12665:28892378,31751844:0,411205,112570 -) -k1,12665:29079970,31751844:184315 -k1,12665:32051532,31751844:184316 -k1,12665:32583029,31751844:0 -) -(1,12666:6630773,32593332:25952256,513147,134348 -k1,12665:8435063,32593332:226838 -k1,12665:10055852,32593332:226838 -(1,12665:10055852,32593332:0,452978,122846 -r1,12665:13579524,32593332:3523672,575824,122846 -k1,12665:10055852,32593332:-3523672 -) -(1,12665:10055852,32593332:3523672,452978,122846 -k1,12665:10055852,32593332:3277 -h1,12665:13576247,32593332:0,411205,112570 -) -k1,12665:13980032,32593332:226838 -k1,12665:17939801,32593332:226838 -k1,12665:22157782,32593332:226838 -k1,12665:23576065,32593332:226838 -k1,12665:25500285,32593332:226838 -k1,12665:27323580,32593332:226838 -k1,12665:28236580,32593332:226838 -k1,12665:29411069,32593332:226838 -(1,12665:29411069,32593332:0,414482,122846 -r1,12665:32583029,32593332:3171960,537328,122846 -k1,12665:29411069,32593332:-3171960 -) -(1,12665:29411069,32593332:3171960,414482,122846 -k1,12665:29411069,32593332:3277 -h1,12665:32579752,32593332:0,411205,112570 -) -k1,12665:32583029,32593332:0 -) -(1,12666:6630773,33434820:25952256,513147,134348 -k1,12665:8113087,33434820:290869 -k1,12665:9395517,33434820:290870 -k1,12665:12058134,33434820:290869 -k1,12665:13000432,33434820:290870 -k1,12665:14310386,33434820:290869 -k1,12665:16484105,33434820:290870 -k1,12665:18514300,33434820:290869 -k1,12665:20295458,33434820:290869 -(1,12665:20295458,33434820:0,452978,115847 -r1,12665:22412283,33434820:2116825,568825,115847 -k1,12665:20295458,33434820:-2116825 -) -(1,12665:20295458,33434820:2116825,452978,115847 -k1,12665:20295458,33434820:3277 -h1,12665:22409006,33434820:0,411205,112570 -) -k1,12665:22703153,33434820:290870 -k1,12665:25283850,33434820:290869 -k1,12665:26806797,33434820:290870 -k1,12665:31923737,33434820:290869 -k1,12665:32583029,33434820:0 -) -(1,12666:6630773,34276308:25952256,513147,134348 -k1,12665:9461382,34276308:250457 -k1,12665:12080965,34276308:250457 -k1,12665:13435704,34276308:250457 -k1,12665:16231578,34276308:250456 -k1,12665:17168197,34276308:250457 -k1,12665:20433965,34276308:250457 -k1,12665:22008249,34276308:250457 -k1,12665:22917998,34276308:250457 -k1,12665:24557818,34276308:250457 -k1,12665:27188542,34276308:250456 -k1,12665:28163827,34276308:250457 -k1,12665:29617525,34276308:250457 -k1,12666:32583029,34276308:0 -) -(1,12666:6630773,35117796:25952256,513147,134348 -k1,12665:9521377,35117796:268509 -k1,12665:10808972,35117796:268510 -k1,12665:12169966,35117796:268509 -k1,12665:13105632,35117796:268510 -(1,12665:13105632,35117796:0,452978,115847 -r1,12665:15222457,35117796:2116825,568825,115847 -k1,12665:13105632,35117796:-2116825 -) -(1,12665:13105632,35117796:2116825,452978,115847 -k1,12665:13105632,35117796:3277 -h1,12665:15219180,35117796:0,411205,112570 -) -k1,12665:15490966,35117796:268509 -k1,12665:18049304,35117796:268510 -k1,12665:18969241,35117796:268509 -k1,12665:20855179,35117796:268509 -k1,12665:22142774,35117796:268510 -k1,12665:23974317,35117796:268509 -k1,12665:25439514,35117796:268510 -k1,12665:28018167,35117796:268509 -k1,12665:29278237,35117796:268510 -k1,12665:31896867,35117796:268509 -k1,12665:32583029,35117796:0 -) -(1,12666:6630773,35959284:25952256,505283,134348 -k1,12665:8539850,35959284:277231 -(1,12665:8539850,35959284:0,452978,122846 -r1,12665:9953251,35959284:1413401,575824,122846 -k1,12665:8539850,35959284:-1413401 -) -(1,12665:8539850,35959284:1413401,452978,122846 -k1,12665:8539850,35959284:3277 -h1,12665:9949974,35959284:0,411205,112570 -) -k1,12665:10230481,35959284:277230 -k1,12665:12971210,35959284:277231 -k1,12665:16092703,35959284:277230 -k1,12665:16985972,35959284:277231 -k1,12665:17619062,35959284:277230 -k1,12665:19136234,35959284:277231 -k1,12665:20604909,35959284:277230 -k1,12665:22847565,35959284:277231 -k1,12665:23776223,35959284:277230 -k1,12665:25072539,35959284:277231 -(1,12665:25072539,35959284:0,452978,122846 -r1,12665:27189364,35959284:2116825,575824,122846 -k1,12665:25072539,35959284:-2116825 -) -(1,12665:25072539,35959284:2116825,452978,122846 -k1,12665:25072539,35959284:3277 -h1,12665:27186087,35959284:0,411205,112570 -) -k1,12665:27466594,35959284:277230 -k1,12665:29703351,35959284:277231 -k1,12665:30666744,35959284:277231 -k1,12665:31299834,35959284:277230 -k1,12665:32583029,35959284:0 -) -(1,12666:6630773,36800772:25952256,505283,126483 -k1,12666:32583030,36800772:24220796 -g1,12666:32583030,36800772 -) -(1,12668:6630773,37642260:25952256,513147,134348 -h1,12667:6630773,37642260:983040,0,0 -k1,12667:8803112,37642260:235750 -k1,12667:10344994,37642260:235749 -k1,12667:13312940,37642260:235750 -k1,12667:13904550,37642260:235750 -(1,12667:13904550,37642260:0,452978,115847 -r1,12667:16021375,37642260:2116825,568825,115847 -k1,12667:13904550,37642260:-2116825 -) -(1,12667:13904550,37642260:2116825,452978,115847 -k1,12667:13904550,37642260:3277 -h1,12667:16018098,37642260:0,411205,112570 -) -k1,12667:16257124,37642260:235749 -k1,12667:19854871,37642260:235750 -k1,12667:23598762,37642260:235749 -k1,12667:25402133,37642260:235750 -k1,12667:26656968,37642260:235750 -k1,12667:28455751,37642260:235749 -k1,12667:31896867,37642260:235750 -k1,12667:32583029,37642260:0 -) -(1,12668:6630773,38483748:25952256,505283,134348 -k1,12667:9804600,38483748:199148 -k1,12667:12373529,38483748:199147 -k1,12667:14158648,38483748:199148 -k1,12667:15561036,38483748:199147 -k1,12667:17571599,38483748:199148 -k1,12667:18386784,38483748:199147 -k1,12667:18941792,38483748:199148 -k1,12667:20308135,38483748:199147 -k1,12667:21698728,38483748:199148 -k1,12667:23515305,38483748:199148 -k1,12667:24917693,38483748:199147 -k1,12667:26110367,38483748:199148 -k1,12667:26995676,38483748:199147 -k1,12667:27550684,38483748:199148 -k1,12667:30132720,38483748:199147 -k1,12667:30947906,38483748:199148 -k1,12668:32583029,38483748:0 -) -(1,12668:6630773,39325236:25952256,513147,126483 -k1,12667:7873662,39325236:192347 -(1,12667:7873662,39325236:0,452978,115847 -r1,12667:9990487,39325236:2116825,568825,115847 -k1,12667:7873662,39325236:-2116825 -) -(1,12667:7873662,39325236:2116825,452978,115847 -k1,12667:7873662,39325236:3277 -h1,12667:9987210,39325236:0,411205,112570 -) -k1,12667:10356504,39325236:192347 -k1,12667:11377882,39325236:192348 -k1,12667:15179952,39325236:192347 -k1,12667:16749210,39325236:192347 -k1,12667:17809909,39325236:192347 -k1,12667:19094742,39325236:192348 -k1,12667:22312886,39325236:192347 -k1,12667:24072854,39325236:192347 -k1,12667:25284286,39325236:192347 -k1,12667:28684621,39325236:192348 -k1,12667:31966991,39325236:192347 -k1,12667:32583029,39325236:0 -) -(1,12668:6630773,40166724:25952256,505283,126483 -g1,12667:9247625,40166724 -h1,12667:9646084,40166724:0,0,0 -k1,12668:32583030,40166724:22763276 -g1,12668:32583030,40166724 -) -v1,12670:6630773,41220017:0,393216,0 -(1,12680:6630773,45510161:25952256,4683360,196608 -g1,12680:6630773,45510161 -g1,12680:6630773,45510161 -g1,12680:6434165,45510161 -(1,12680:6434165,45510161:0,4683360,196608 -r1,12680:32779637,45510161:26345472,4879968,196608 -k1,12680:6434165,45510161:-26345472 -) -(1,12680:6434165,45510161:26345472,4683360,196608 -[1,12680:6630773,45510161:25952256,4486752,0 -(1,12672:6630773,41411906:25952256,388497,9436 -(1,12671:6630773,41411906:0,0,0 -g1,12671:6630773,41411906 -g1,12671:6630773,41411906 -g1,12671:6303093,41411906 -(1,12671:6303093,41411906:0,0,0 -) -g1,12671:6630773,41411906 -) -g1,12672:8843793,41411906 -k1,12672:8843793,41411906:0 -h1,12672:10108375,41411906:0,0,0 -k1,12672:32583029,41411906:22474654 -g1,12672:32583029,41411906 -) -(1,12673:6630773,42078084:25952256,404226,107478 -h1,12673:6630773,42078084:0,0,0 -g1,12673:6946919,42078084 -g1,12673:7263065,42078084 -g1,12673:11056813,42078084 -g1,12673:12637542,42078084 -k1,12673:12637542,42078084:0 -h1,12673:13902124,42078084:0,0,0 -k1,12673:32583028,42078084:18680904 -g1,12673:32583028,42078084 -) -(1,12674:6630773,42744262:25952256,404226,82312 -h1,12674:6630773,42744262:0,0,0 -g1,12674:6946919,42744262 -g1,12674:7263065,42744262 -k1,12674:7263065,42744262:0 -h1,12674:11056813,42744262:0,0,0 -k1,12674:32583029,42744262:21526216 -g1,12674:32583029,42744262 -) -(1,12675:6630773,43410440:25952256,410518,107478 -h1,12675:6630773,43410440:0,0,0 -g1,12675:6946919,43410440 -g1,12675:7263065,43410440 -g1,12675:7579211,43410440 -g1,12675:7895357,43410440 -g1,12675:8211503,43410440 -g1,12675:8527649,43410440 -g1,12675:8843795,43410440 -g1,12675:9159941,43410440 -g1,12675:9476087,43410440 -g1,12675:9792233,43410440 -g1,12675:10108379,43410440 -g1,12675:10424525,43410440 -g1,12675:12321399,43410440 -g1,12675:13585982,43410440 -g1,12675:14218274,43410440 -g1,12675:19592752,43410440 -g1,12675:21805772,43410440 -g1,12675:22438064,43410440 -k1,12675:22438064,43410440:0 -h1,12675:23386502,43410440:0,0,0 -k1,12675:32583029,43410440:9196527 -g1,12675:32583029,43410440 -) -(1,12676:6630773,44076618:25952256,410518,107478 -h1,12676:6630773,44076618:0,0,0 -g1,12676:6946919,44076618 -g1,12676:7263065,44076618 -g1,12676:7579211,44076618 -g1,12676:7895357,44076618 -g1,12676:8211503,44076618 -g1,12676:8527649,44076618 -g1,12676:8843795,44076618 -g1,12676:9159941,44076618 -g1,12676:9476087,44076618 -g1,12676:9792233,44076618 -g1,12676:10108379,44076618 -g1,12676:10424525,44076618 -g1,12676:12321399,44076618 -g1,12676:14218273,44076618 -g1,12676:14850565,44076618 -g1,12676:20857334,44076618 -g1,12676:23070354,44076618 -g1,12676:23702646,44076618 -k1,12676:23702646,44076618:0 -h1,12676:24651084,44076618:0,0,0 -k1,12676:32583029,44076618:7931945 -g1,12676:32583029,44076618 -) -(1,12677:6630773,44742796:25952256,410518,107478 -h1,12677:6630773,44742796:0,0,0 -g1,12677:6946919,44742796 -g1,12677:7263065,44742796 -g1,12677:7579211,44742796 -g1,12677:7895357,44742796 -g1,12677:8211503,44742796 -g1,12677:8527649,44742796 -g1,12677:8843795,44742796 -g1,12677:9159941,44742796 -g1,12677:9476087,44742796 -g1,12677:9792233,44742796 -g1,12677:10108379,44742796 -g1,12677:10424525,44742796 -g1,12677:12321399,44742796 -g1,12677:13902128,44742796 -g1,12677:14534420,44742796 -g1,12677:20225043,44742796 -g1,12677:22438063,44742796 -g1,12677:23070355,44742796 -g1,12677:24334938,44742796 -g1,12677:25283376,44742796 -h1,12677:27812541,44742796:0,0,0 -k1,12677:32583029,44742796:4770488 -g1,12677:32583029,44742796 -) -(1,12678:6630773,45408974:25952256,404226,101187 -h1,12678:6630773,45408974:0,0,0 -g1,12678:9476084,45408974 -g1,12678:10424522,45408974 -g1,12678:13269834,45408974 -g1,12678:13902126,45408974 -g1,12678:15482855,45408974 -g1,12678:16115147,45408974 -g1,12678:16747439,45408974 -g1,12678:18012022,45408974 -g1,12678:21805770,45408974 -g1,12678:22438062,45408974 -k1,12678:22438062,45408974:0 -h1,12678:27180247,45408974:0,0,0 -k1,12678:32583029,45408974:5402782 -g1,12678:32583029,45408974 -) -] -) -g1,12680:32583029,45510161 -g1,12680:6630773,45510161 -g1,12680:6630773,45510161 -g1,12680:32583029,45510161 -g1,12680:32583029,45510161 -) -h1,12680:6630773,45706769:0,0,0 -] -(1,12684:32583029,45706769:0,0,0 -g1,12684:32583029,45706769 -) -) -] -(1,12684:6630773,47279633:25952256,0,0 -h1,12684:6630773,47279633:25952256,0,0 -) -] -h1,12684:4262630,4025873:0,0,0 -] -!25731 -}242 -Input:1746:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1747:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1748:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1749:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1750:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1751:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1752:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1753:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1754:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1755:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1756:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 -{243 -[1,12741:4262630,47279633:28320399,43253760,0 -(1,12741:4262630,4025873:0,0,0 -[1,12741:-473657,4025873:25952256,0,0 -(1,12741:-473657,-710414:25952256,0,0 -h1,12741:-473657,-710414:0,0,0 -(1,12741:-473657,-710414:0,0,0 -(1,12741:-473657,-710414:0,0,0 -g1,12741:-473657,-710414 -(1,12741:-473657,-710414:65781,0,65781 -g1,12741:-407876,-710414 -[1,12741:-407876,-644633:0,0,0 +g1,12662:28691032,14661426 +) +) +) +g1,12663:28690151,14661426 +k1,12663:32583029,14661426:3892878 +) +(1,12673:6630773,16752686:25952256,555811,12975 +(1,12673:6630773,16752686:2450326,534184,12975 +g1,12673:6630773,16752686 +g1,12673:9081099,16752686 +) +g1,12673:10708162,16752686 +k1,12673:32583030,16752686:19728040 +g1,12673:32583030,16752686 +) +(1,12678:6630773,17987390:25952256,513147,134348 +k1,12677:8030638,17987390:203178 +k1,12677:10760229,17987390:203178 +k1,12677:11911059,17987390:203179 +k1,12677:13995120,17987390:203178 +k1,12677:14814336,17987390:203178 +k1,12677:17846047,17987390:203178 +k1,12677:18580722,17987390:203178 +k1,12677:21540344,17987390:203178 +k1,12677:22394951,17987390:203179 +(1,12677:22394951,17987390:0,452978,115847 +r1,12677:29084029,17987390:6689078,568825,115847 +k1,12677:22394951,17987390:-6689078 +) +(1,12677:22394951,17987390:6689078,452978,115847 +k1,12677:22394951,17987390:3277 +h1,12677:29080752,17987390:0,411205,112570 +) +k1,12677:29287207,17987390:203178 +k1,12677:31375856,17987390:203178 +k1,12677:32583029,17987390:0 +) +(1,12678:6630773,18828878:25952256,513147,134348 +k1,12677:9700900,18828878:213413 +k1,12677:10565742,18828878:213414 +k1,12677:11526921,18828878:213413 +k1,12677:13253560,18828878:213413 +k1,12677:14414624,18828878:213413 +k1,12677:16362776,18828878:213414 +k1,12677:20366791,18828878:213413 +k1,12677:23419224,18828878:213413 +k1,12677:24284066,18828878:213414 +k1,12677:25245245,18828878:213413 +k1,12677:26477743,18828878:213413 +k1,12677:28344629,18828878:213413 +k1,12677:29174081,18828878:213414 +k1,12677:30839116,18828878:213413 +k1,12677:32583029,18828878:0 +) +(1,12678:6630773,19670366:25952256,513147,134348 +k1,12677:7554780,19670366:264715 +k1,12677:8175355,19670366:264715 +k1,12677:9717367,19670366:264715 +k1,12677:11208261,19670366:264715 +k1,12677:12565461,19670366:264715 +k1,12677:13489468,19670366:264715 +k1,12677:17544786,19670366:264716 +k1,12677:18340998,19670366:264715 +k1,12677:21695736,19670366:264715 +k1,12677:22576489,19670366:264715 +k1,12677:25119891,19670366:264715 +h1,12677:26090479,19670366:0,0,0 +k1,12677:26735958,19670366:264715 +k1,12677:29535606,19670366:264715 +k1,12677:32583029,19670366:0 +) +(1,12678:6630773,20511854:25952256,505283,134348 +k1,12677:9568731,20511854:177582 +k1,12677:11812664,20511854:177583 +k1,12677:13274752,20511854:177582 +k1,12677:15428245,20511854:177583 +(1,12677:15428245,20511854:0,452978,122846 +r1,12677:19303629,20511854:3875384,575824,122846 +k1,12677:15428245,20511854:-3875384 +) +(1,12677:15428245,20511854:3875384,452978,122846 +k1,12677:15428245,20511854:3277 +h1,12677:19300352,20511854:0,411205,112570 +) +k1,12677:19481211,20511854:177582 +k1,12677:20274831,20511854:177582 +k1,12677:22916568,20511854:177583 +k1,12677:23745578,20511854:177582 +k1,12677:24942246,20511854:177583 +k1,12677:28184292,20511854:177582 +k1,12677:30048772,20511854:177583 +k1,12677:31298523,20511854:177582 +k1,12677:32583029,20511854:0 +) +(1,12678:6630773,21353342:25952256,505283,126483 +k1,12677:9639982,21353342:240968 +k1,12677:10532378,21353342:240968 +(1,12677:10532378,21353342:0,459977,122846 +r1,12677:13704338,21353342:3171960,582823,122846 +k1,12677:10532378,21353342:-3171960 +) +(1,12677:10532378,21353342:3171960,459977,122846 +k1,12677:10532378,21353342:3277 +h1,12677:13701061,21353342:0,411205,112570 +) +k1,12677:14118976,21353342:240968 +k1,12677:16430882,21353342:240968 +k1,12677:17956356,21353342:240968 +k1,12677:19216409,21353342:240968 +k1,12677:21840266,21353342:240968 +k1,12677:22697272,21353342:240968 +(1,12677:22697272,21353342:0,452978,115847 +r1,12677:24110673,21353342:1413401,568825,115847 +k1,12677:22697272,21353342:-1413401 +) +(1,12677:22697272,21353342:1413401,452978,115847 +k1,12677:22697272,21353342:3277 +h1,12677:24107396,21353342:0,411205,112570 +) +k1,12677:24351641,21353342:240968 +k1,12677:27178004,21353342:240968 +k1,12677:28070400,21353342:240968 +k1,12677:29330453,21353342:240968 +(1,12677:29330453,21353342:0,452978,115847 +r1,12677:31095566,21353342:1765113,568825,115847 +k1,12677:29330453,21353342:-1765113 +) +(1,12677:29330453,21353342:1765113,452978,115847 +k1,12677:29330453,21353342:3277 +h1,12677:31092289,21353342:0,411205,112570 +) +k1,12677:31336534,21353342:240968 +k1,12678:32583029,21353342:0 +) +(1,12678:6630773,22194830:25952256,513147,134348 +k1,12677:8999006,22194830:227172 +k1,12677:10217737,22194830:227171 +k1,12677:11768736,22194830:227172 +k1,12677:12655200,22194830:227172 +k1,12677:15172199,22194830:227171 +k1,12677:18761368,22194830:227172 +k1,12677:21659786,22194830:227171 +k1,12677:23867456,22194830:227172 +k1,12677:24753920,22194830:227172 +k1,12677:28961748,22194830:227171 +k1,12677:31140582,22194830:227172 +k1,12677:32583029,22194830:0 +) +(1,12678:6630773,23036318:25952256,513147,134348 +k1,12677:8994710,23036318:201904 +k1,12677:11678462,23036318:201904 +k1,12677:14107279,23036318:201904 +k1,12677:14960611,23036318:201904 +(1,12677:14960611,23036318:0,459977,122846 +r1,12677:18132571,23036318:3171960,582823,122846 +k1,12677:14960611,23036318:-3171960 +) +(1,12677:14960611,23036318:3171960,459977,122846 +k1,12677:14960611,23036318:3277 +h1,12677:18129294,23036318:0,411205,112570 +) +k1,12677:18334475,23036318:201904 +k1,12677:20233106,23036318:201904 +k1,12677:22501359,23036318:201903 +k1,12677:23518531,23036318:201904 +k1,12677:24786706,23036318:201904 +k1,12677:27113287,23036318:201904 +k1,12677:28334276,23036318:201904 +k1,12677:30317449,23036318:201904 +k1,12677:32583029,23036318:0 +) +(1,12678:6630773,23877806:25952256,505283,134348 +k1,12677:10045442,23877806:276805 +k1,12677:10973674,23877806:276804 +k1,12677:14598713,23877806:276805 +k1,12677:16707904,23877806:276804 +k1,12677:20492196,23877806:276805 +k1,12677:21760560,23877806:276804 +k1,12677:24947819,23877806:276805 +k1,12677:28182263,23877806:276804 +(1,12677:28182263,23877806:0,452978,122846 +r1,12677:32409359,23877806:4227096,575824,122846 +k1,12677:28182263,23877806:-4227096 +) +(1,12677:28182263,23877806:4227096,452978,122846 +k1,12677:28182263,23877806:3277 +h1,12677:32406082,23877806:0,411205,112570 +) +k1,12678:32583029,23877806:0 +) +(1,12678:6630773,24719294:25952256,505283,122846 +(1,12677:6630773,24719294:0,452978,122846 +r1,12677:10506157,24719294:3875384,575824,122846 +k1,12677:6630773,24719294:-3875384 +) +(1,12677:6630773,24719294:3875384,452978,122846 +k1,12677:6630773,24719294:3277 +h1,12677:10502880,24719294:0,411205,112570 +) +g1,12677:10705386,24719294 +g1,12677:12096060,24719294 +(1,12677:12096060,24719294:0,452978,122846 +r1,12677:15971444,24719294:3875384,575824,122846 +k1,12677:12096060,24719294:-3875384 +) +(1,12677:12096060,24719294:3875384,452978,122846 +k1,12677:12096060,24719294:3277 +h1,12677:15968167,24719294:0,411205,112570 +) +k1,12678:32583029,24719294:16437915 +g1,12678:32583029,24719294 +) +v1,12680:6630773,25947897:0,393216,0 +(1,12681:6630773,29907202:25952256,4352521,616038 +g1,12681:6630773,29907202 +(1,12681:6630773,29907202:25952256,4352521,616038 +(1,12681:6630773,30523240:25952256,4968559,0 +[1,12681:6630773,30523240:25952256,4968559,0 +(1,12681:6630773,30497026:25952256,4916131,0 +r1,12681:6656987,30497026:26214,4916131,0 +[1,12681:6656987,30497026:25899828,4916131,0 +(1,12681:6656987,29907202:25899828,3736483,0 +[1,12681:7246811,29907202:24720180,3736483,0 +(1,12681:7246811,27256255:24720180,1085536,298548 +(1,12680:7246811,27256255:0,1085536,298548 +r1,12681:8753226,27256255:1506415,1384084,298548 +k1,12680:7246811,27256255:-1506415 +) +(1,12680:7246811,27256255:1506415,1085536,298548 +) +k1,12680:8989131,27256255:235905 +k1,12680:11025310,27256255:235905 +k1,12680:12545721,27256255:235905 +(1,12680:12545721,27256255:0,452978,122846 +r1,12681:16772817,27256255:4227096,575824,122846 +k1,12680:12545721,27256255:-4227096 +) +(1,12680:12545721,27256255:4227096,452978,122846 +k1,12680:12545721,27256255:3277 +h1,12680:16769540,27256255:0,411205,112570 +) +k1,12680:17182392,27256255:235905 +(1,12680:17182392,27256255:0,452978,122846 +r1,12681:21057776,27256255:3875384,575824,122846 +k1,12680:17182392,27256255:-3875384 +) +(1,12680:17182392,27256255:3875384,452978,122846 +k1,12680:17182392,27256255:3277 +h1,12680:21054499,27256255:0,411205,112570 +) +k1,12680:21293681,27256255:235905 +k1,12680:22721031,27256255:235905 +(1,12680:22721031,27256255:0,452978,122846 +r1,12681:26596415,27256255:3875384,575824,122846 +k1,12680:22721031,27256255:-3875384 +) +(1,12680:22721031,27256255:3875384,452978,122846 +k1,12680:22721031,27256255:3277 +h1,12680:26593138,27256255:0,411205,112570 +) +k1,12680:26832320,27256255:235905 +k1,12680:28200687,27256255:235905 +k1,12680:30282741,27256255:235905 +k1,12680:31611131,27256255:235905 +k1,12680:31966991,27256255:0 +) +(1,12681:7246811,28097743:24720180,513147,134348 +k1,12680:10221641,28097743:167268 +k1,12680:13281668,28097743:167268 +k1,12680:15016557,28097743:167268 +k1,12680:16202910,28097743:167268 +k1,12680:18253027,28097743:167268 +k1,12680:19871262,28097743:167268 +k1,12680:20800059,28097743:167269 +k1,12680:23232907,28097743:167268 +k1,12680:24780363,28097743:167268 +k1,12680:25762899,28097743:167268 +k1,12680:26996438,28097743:167268 +k1,12680:29288383,28097743:167268 +k1,12680:30087418,28097743:167268 +k1,12680:31966991,28097743:0 +) +(1,12681:7246811,28939231:24720180,513147,134348 +k1,12680:8525036,28939231:259140 +k1,12680:11591739,28939231:259141 +k1,12680:14031262,28939231:259140 +k1,12680:15038168,28939231:259140 +k1,12680:18058340,28939231:259140 +k1,12680:19003643,28939231:259141 +k1,12680:20033486,28939231:259140 +k1,12680:23364954,28939231:259140 +k1,12680:24275522,28939231:259140 +k1,12680:26231390,28939231:259141 +k1,12680:29516327,28939231:259140 +k1,12680:30458352,28939231:259140 +k1,12680:31966991,28939231:0 +) +(1,12681:7246811,29780719:24720180,505283,126483 +g1,12680:10726772,29780719 +(1,12680:10726772,29780719:0,452978,115847 +r1,12681:14602156,29780719:3875384,568825,115847 +k1,12680:10726772,29780719:-3875384 +) +(1,12680:10726772,29780719:3875384,452978,115847 +k1,12680:10726772,29780719:3277 +h1,12680:14598879,29780719:0,411205,112570 +) +g1,12680:14801385,29780719 +g1,12680:17897961,29780719 +g1,12680:19031733,29780719 +g1,12680:19882390,29780719 +(1,12680:19882390,29780719:0,414482,115847 +r1,12681:21295791,29780719:1413401,530329,115847 +k1,12680:19882390,29780719:-1413401 +) +(1,12680:19882390,29780719:1413401,414482,115847 +k1,12680:19882390,29780719:3277 +h1,12680:21292514,29780719:0,411205,112570 +) +k1,12681:31966991,29780719:10497530 +g1,12681:31966991,29780719 +) +] +) +] +r1,12681:32583029,30497026:26214,4916131,0 +) +] +) +) +g1,12681:32583029,29907202 +) +h1,12681:6630773,30523240:0,0,0 +(1,12685:6630773,31751844:25952256,513147,134348 +h1,12684:6630773,31751844:983040,0,0 +k1,12684:8994816,31751844:184316 +k1,12684:11703578,31751844:184315 +k1,12684:12547186,31751844:184316 +k1,12684:14627459,31751844:184316 +k1,12684:15573303,31751844:184316 +k1,12684:18565180,31751844:184315 +k1,12684:19105356,31751844:184316 +k1,12684:20283198,31751844:184316 +k1,12684:21126806,31751844:184316 +k1,12684:22700484,31751844:184315 +k1,12684:25091397,31751844:184316 +k1,12684:25927141,31751844:184316 +k1,12684:27130542,31751844:184316 +(1,12684:27130542,31751844:0,452978,115847 +r1,12684:28895655,31751844:1765113,568825,115847 +k1,12684:27130542,31751844:-1765113 +) +(1,12684:27130542,31751844:1765113,452978,115847 +k1,12684:27130542,31751844:3277 +h1,12684:28892378,31751844:0,411205,112570 +) +k1,12684:29079970,31751844:184315 +k1,12684:32051532,31751844:184316 +k1,12684:32583029,31751844:0 +) +(1,12685:6630773,32593332:25952256,513147,134348 +k1,12684:8435063,32593332:226838 +k1,12684:10055852,32593332:226838 +(1,12684:10055852,32593332:0,452978,122846 +r1,12684:13579524,32593332:3523672,575824,122846 +k1,12684:10055852,32593332:-3523672 +) +(1,12684:10055852,32593332:3523672,452978,122846 +k1,12684:10055852,32593332:3277 +h1,12684:13576247,32593332:0,411205,112570 +) +k1,12684:13980032,32593332:226838 +k1,12684:17939801,32593332:226838 +k1,12684:22157782,32593332:226838 +k1,12684:23576065,32593332:226838 +k1,12684:25500285,32593332:226838 +k1,12684:27323580,32593332:226838 +k1,12684:28236580,32593332:226838 +k1,12684:29411069,32593332:226838 +(1,12684:29411069,32593332:0,414482,122846 +r1,12684:32583029,32593332:3171960,537328,122846 +k1,12684:29411069,32593332:-3171960 +) +(1,12684:29411069,32593332:3171960,414482,122846 +k1,12684:29411069,32593332:3277 +h1,12684:32579752,32593332:0,411205,112570 +) +k1,12684:32583029,32593332:0 +) +(1,12685:6630773,33434820:25952256,513147,134348 +k1,12684:8113087,33434820:290869 +k1,12684:9395517,33434820:290870 +k1,12684:12058134,33434820:290869 +k1,12684:13000432,33434820:290870 +k1,12684:14310386,33434820:290869 +k1,12684:16484105,33434820:290870 +k1,12684:18514300,33434820:290869 +k1,12684:20295458,33434820:290869 +(1,12684:20295458,33434820:0,452978,115847 +r1,12684:22412283,33434820:2116825,568825,115847 +k1,12684:20295458,33434820:-2116825 +) +(1,12684:20295458,33434820:2116825,452978,115847 +k1,12684:20295458,33434820:3277 +h1,12684:22409006,33434820:0,411205,112570 +) +k1,12684:22703153,33434820:290870 +k1,12684:25283850,33434820:290869 +k1,12684:26806797,33434820:290870 +k1,12684:31923737,33434820:290869 +k1,12684:32583029,33434820:0 +) +(1,12685:6630773,34276308:25952256,513147,134348 +k1,12684:9461382,34276308:250457 +k1,12684:12080965,34276308:250457 +k1,12684:13435704,34276308:250457 +k1,12684:16231578,34276308:250456 +k1,12684:17168197,34276308:250457 +k1,12684:20433965,34276308:250457 +k1,12684:22008249,34276308:250457 +k1,12684:22917998,34276308:250457 +k1,12684:24557818,34276308:250457 +k1,12684:27188542,34276308:250456 +k1,12684:28163827,34276308:250457 +k1,12684:29617525,34276308:250457 +k1,12685:32583029,34276308:0 +) +(1,12685:6630773,35117796:25952256,513147,134348 +k1,12684:9521377,35117796:268509 +k1,12684:10808972,35117796:268510 +k1,12684:12169966,35117796:268509 +k1,12684:13105632,35117796:268510 +(1,12684:13105632,35117796:0,452978,115847 +r1,12684:15222457,35117796:2116825,568825,115847 +k1,12684:13105632,35117796:-2116825 +) +(1,12684:13105632,35117796:2116825,452978,115847 +k1,12684:13105632,35117796:3277 +h1,12684:15219180,35117796:0,411205,112570 +) +k1,12684:15490966,35117796:268509 +k1,12684:18049304,35117796:268510 +k1,12684:18969241,35117796:268509 +k1,12684:20855179,35117796:268509 +k1,12684:22142774,35117796:268510 +k1,12684:23974317,35117796:268509 +k1,12684:25439514,35117796:268510 +k1,12684:28018167,35117796:268509 +k1,12684:29278237,35117796:268510 +k1,12684:31896867,35117796:268509 +k1,12684:32583029,35117796:0 +) +(1,12685:6630773,35959284:25952256,505283,134348 +k1,12684:8539850,35959284:277231 +(1,12684:8539850,35959284:0,452978,122846 +r1,12684:9953251,35959284:1413401,575824,122846 +k1,12684:8539850,35959284:-1413401 +) +(1,12684:8539850,35959284:1413401,452978,122846 +k1,12684:8539850,35959284:3277 +h1,12684:9949974,35959284:0,411205,112570 +) +k1,12684:10230481,35959284:277230 +k1,12684:12971210,35959284:277231 +k1,12684:16092703,35959284:277230 +k1,12684:16985972,35959284:277231 +k1,12684:17619062,35959284:277230 +k1,12684:19136234,35959284:277231 +k1,12684:20604909,35959284:277230 +k1,12684:22847565,35959284:277231 +k1,12684:23776223,35959284:277230 +k1,12684:25072539,35959284:277231 +(1,12684:25072539,35959284:0,452978,122846 +r1,12684:27189364,35959284:2116825,575824,122846 +k1,12684:25072539,35959284:-2116825 +) +(1,12684:25072539,35959284:2116825,452978,122846 +k1,12684:25072539,35959284:3277 +h1,12684:27186087,35959284:0,411205,112570 +) +k1,12684:27466594,35959284:277230 +k1,12684:29703351,35959284:277231 +k1,12684:30666744,35959284:277231 +k1,12684:31299834,35959284:277230 +k1,12684:32583029,35959284:0 +) +(1,12685:6630773,36800772:25952256,505283,126483 +k1,12685:32583030,36800772:24220796 +g1,12685:32583030,36800772 +) +(1,12687:6630773,37642260:25952256,513147,134348 +h1,12686:6630773,37642260:983040,0,0 +k1,12686:8803112,37642260:235750 +k1,12686:10344994,37642260:235749 +k1,12686:13312940,37642260:235750 +k1,12686:13904550,37642260:235750 +(1,12686:13904550,37642260:0,452978,115847 +r1,12686:16021375,37642260:2116825,568825,115847 +k1,12686:13904550,37642260:-2116825 +) +(1,12686:13904550,37642260:2116825,452978,115847 +k1,12686:13904550,37642260:3277 +h1,12686:16018098,37642260:0,411205,112570 +) +k1,12686:16257124,37642260:235749 +k1,12686:19854871,37642260:235750 +k1,12686:23598762,37642260:235749 +k1,12686:25402133,37642260:235750 +k1,12686:26656968,37642260:235750 +k1,12686:28455751,37642260:235749 +k1,12686:31896867,37642260:235750 +k1,12686:32583029,37642260:0 +) +(1,12687:6630773,38483748:25952256,505283,134348 +k1,12686:9845314,38483748:239862 +k1,12686:12454958,38483748:239862 +k1,12686:14280790,38483748:239861 +k1,12686:15723893,38483748:239862 +k1,12686:17775170,38483748:239862 +k1,12686:18631070,38483748:239862 +k1,12686:19226792,38483748:239862 +k1,12686:20633850,38483748:239862 +k1,12686:22065156,38483748:239861 +k1,12686:23922447,38483748:239862 +k1,12686:25365550,38483748:239862 +k1,12686:26598938,38483748:239862 +k1,12686:27524962,38483748:239862 +k1,12686:28120683,38483748:239861 +k1,12686:30743434,38483748:239862 +k1,12686:31599334,38483748:239862 +k1,12687:32583029,38483748:0 +) +(1,12687:6630773,39325236:25952256,513147,126483 +k1,12686:8539359,39325236:206616 +(1,12686:8539359,39325236:0,452978,115847 +r1,12686:10656184,39325236:2116825,568825,115847 +k1,12686:8539359,39325236:-2116825 +) +(1,12686:8539359,39325236:2116825,452978,115847 +k1,12686:8539359,39325236:3277 +h1,12686:10652907,39325236:0,411205,112570 +) +k1,12686:11036470,39325236:206616 +k1,12686:12072116,39325236:206616 +k1,12686:15888455,39325236:206616 +k1,12686:17471982,39325236:206616 +k1,12686:18546951,39325236:206617 +k1,12686:19846052,39325236:206616 +k1,12686:23078465,39325236:206616 +k1,12686:24852702,39325236:206616 +k1,12686:26078403,39325236:206616 +k1,12686:29493006,39325236:206616 +k1,12686:32583029,39325236:0 +) +(1,12687:6630773,40166724:25952256,505283,126483 +g1,12686:7446040,40166724 +g1,12686:10062892,40166724 +h1,12686:10461351,40166724:0,0,0 +k1,12687:32583029,40166724:21948008 +g1,12687:32583029,40166724 +) +v1,12689:6630773,41220017:0,393216,0 +(1,12699:6630773,45510161:25952256,4683360,196608 +g1,12699:6630773,45510161 +g1,12699:6630773,45510161 +g1,12699:6434165,45510161 +(1,12699:6434165,45510161:0,4683360,196608 +r1,12699:32779637,45510161:26345472,4879968,196608 +k1,12699:6434165,45510161:-26345472 +) +(1,12699:6434165,45510161:26345472,4683360,196608 +[1,12699:6630773,45510161:25952256,4486752,0 +(1,12691:6630773,41411906:25952256,388497,9436 +(1,12690:6630773,41411906:0,0,0 +g1,12690:6630773,41411906 +g1,12690:6630773,41411906 +g1,12690:6303093,41411906 +(1,12690:6303093,41411906:0,0,0 +) +g1,12690:6630773,41411906 +) +g1,12691:8843793,41411906 +k1,12691:8843793,41411906:0 +h1,12691:10108375,41411906:0,0,0 +k1,12691:32583029,41411906:22474654 +g1,12691:32583029,41411906 +) +(1,12692:6630773,42078084:25952256,404226,107478 +h1,12692:6630773,42078084:0,0,0 +g1,12692:6946919,42078084 +g1,12692:7263065,42078084 +g1,12692:11056813,42078084 +g1,12692:12637542,42078084 +k1,12692:12637542,42078084:0 +h1,12692:13902124,42078084:0,0,0 +k1,12692:32583028,42078084:18680904 +g1,12692:32583028,42078084 +) +(1,12693:6630773,42744262:25952256,404226,82312 +h1,12693:6630773,42744262:0,0,0 +g1,12693:6946919,42744262 +g1,12693:7263065,42744262 +k1,12693:7263065,42744262:0 +h1,12693:11056813,42744262:0,0,0 +k1,12693:32583029,42744262:21526216 +g1,12693:32583029,42744262 +) +(1,12694:6630773,43410440:25952256,410518,107478 +h1,12694:6630773,43410440:0,0,0 +g1,12694:6946919,43410440 +g1,12694:7263065,43410440 +g1,12694:7579211,43410440 +g1,12694:7895357,43410440 +g1,12694:8211503,43410440 +g1,12694:8527649,43410440 +g1,12694:8843795,43410440 +g1,12694:9159941,43410440 +g1,12694:9476087,43410440 +g1,12694:9792233,43410440 +g1,12694:10108379,43410440 +g1,12694:10424525,43410440 +g1,12694:12321399,43410440 +g1,12694:13585982,43410440 +g1,12694:14218274,43410440 +g1,12694:19592752,43410440 +g1,12694:21805772,43410440 +g1,12694:22438064,43410440 +k1,12694:22438064,43410440:0 +h1,12694:23386502,43410440:0,0,0 +k1,12694:32583029,43410440:9196527 +g1,12694:32583029,43410440 +) +(1,12695:6630773,44076618:25952256,410518,107478 +h1,12695:6630773,44076618:0,0,0 +g1,12695:6946919,44076618 +g1,12695:7263065,44076618 +g1,12695:7579211,44076618 +g1,12695:7895357,44076618 +g1,12695:8211503,44076618 +g1,12695:8527649,44076618 +g1,12695:8843795,44076618 +g1,12695:9159941,44076618 +g1,12695:9476087,44076618 +g1,12695:9792233,44076618 +g1,12695:10108379,44076618 +g1,12695:10424525,44076618 +g1,12695:12321399,44076618 +g1,12695:14218273,44076618 +g1,12695:14850565,44076618 +g1,12695:20857334,44076618 +g1,12695:23070354,44076618 +g1,12695:23702646,44076618 +k1,12695:23702646,44076618:0 +h1,12695:24651084,44076618:0,0,0 +k1,12695:32583029,44076618:7931945 +g1,12695:32583029,44076618 +) +(1,12696:6630773,44742796:25952256,410518,107478 +h1,12696:6630773,44742796:0,0,0 +g1,12696:6946919,44742796 +g1,12696:7263065,44742796 +g1,12696:7579211,44742796 +g1,12696:7895357,44742796 +g1,12696:8211503,44742796 +g1,12696:8527649,44742796 +g1,12696:8843795,44742796 +g1,12696:9159941,44742796 +g1,12696:9476087,44742796 +g1,12696:9792233,44742796 +g1,12696:10108379,44742796 +g1,12696:10424525,44742796 +g1,12696:12321399,44742796 +g1,12696:13902128,44742796 +g1,12696:14534420,44742796 +g1,12696:20225043,44742796 +g1,12696:22438063,44742796 +g1,12696:23070355,44742796 +g1,12696:24334938,44742796 +g1,12696:25283376,44742796 +h1,12696:27812541,44742796:0,0,0 +k1,12696:32583029,44742796:4770488 +g1,12696:32583029,44742796 +) +(1,12697:6630773,45408974:25952256,404226,101187 +h1,12697:6630773,45408974:0,0,0 +g1,12697:9476084,45408974 +g1,12697:10424522,45408974 +g1,12697:13269834,45408974 +g1,12697:13902126,45408974 +g1,12697:15482855,45408974 +g1,12697:16115147,45408974 +g1,12697:16747439,45408974 +g1,12697:18012022,45408974 +g1,12697:21805770,45408974 +g1,12697:22438062,45408974 +k1,12697:22438062,45408974:0 +h1,12697:27180247,45408974:0,0,0 +k1,12697:32583029,45408974:5402782 +g1,12697:32583029,45408974 +) +] +) +g1,12699:32583029,45510161 +g1,12699:6630773,45510161 +g1,12699:6630773,45510161 +g1,12699:32583029,45510161 +g1,12699:32583029,45510161 +) +h1,12699:6630773,45706769:0,0,0 +] +(1,12703:32583029,45706769:0,0,0 +g1,12703:32583029,45706769 +) +) +] +(1,12703:6630773,47279633:25952256,0,0 +h1,12703:6630773,47279633:25952256,0,0 +) +] +h1,12703:4262630,4025873:0,0,0 +] +!25730 +}243 +Input:1742:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1743:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1744:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1745:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1746:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1747:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1748:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1749:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1750:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1751:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1752:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 +{244 +[1,12760:4262630,47279633:28320399,43253760,0 +(1,12760:4262630,4025873:0,0,0 +[1,12760:-473657,4025873:25952256,0,0 +(1,12760:-473657,-710414:25952256,0,0 +h1,12760:-473657,-710414:0,0,0 +(1,12760:-473657,-710414:0,0,0 +(1,12760:-473657,-710414:0,0,0 +g1,12760:-473657,-710414 +(1,12760:-473657,-710414:65781,0,65781 +g1,12760:-407876,-710414 +[1,12760:-407876,-644633:0,0,0 ] ) -k1,12741:-473657,-710414:-65781 +k1,12760:-473657,-710414:-65781 ) ) -k1,12741:25478599,-710414:25952256 -g1,12741:25478599,-710414 +k1,12760:25478599,-710414:25952256 +g1,12760:25478599,-710414 ) ] ) -[1,12741:6630773,47279633:25952256,43253760,0 -[1,12741:6630773,4812305:25952256,786432,0 -(1,12741:6630773,4812305:25952256,513147,134348 -(1,12741:6630773,4812305:25952256,513147,134348 -g1,12741:3078558,4812305 -[1,12741:3078558,4812305:0,0,0 -(1,12741:3078558,2439708:0,1703936,0 -k1,12741:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12741:2537886,2439708:1179648,16384,0 +[1,12760:6630773,47279633:25952256,43253760,0 +[1,12760:6630773,4812305:25952256,786432,0 +(1,12760:6630773,4812305:25952256,485622,11795 +(1,12760:6630773,4812305:25952256,485622,11795 +g1,12760:3078558,4812305 +[1,12760:3078558,4812305:0,0,0 +(1,12760:3078558,2439708:0,1703936,0 +k1,12760:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12760:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12741:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12760:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12741:3078558,4812305:0,0,0 -(1,12741:3078558,2439708:0,1703936,0 -g1,12741:29030814,2439708 -g1,12741:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12741:36151628,1915420:16384,1179648,0 +[1,12760:3078558,4812305:0,0,0 +(1,12760:3078558,2439708:0,1703936,0 +g1,12760:29030814,2439708 +g1,12760:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12760:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12741:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12760:37855564,2439708:1179648,16384,0 ) ) -k1,12741:3078556,2439708:-34777008 +k1,12760:3078556,2439708:-34777008 ) ] -[1,12741:3078558,4812305:0,0,0 -(1,12741:3078558,49800853:0,16384,2228224 -k1,12741:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12741:2537886,49800853:1179648,16384,0 +[1,12760:3078558,4812305:0,0,0 +(1,12760:3078558,49800853:0,16384,2228224 +k1,12760:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12760:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12741:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12760:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12741:3078558,4812305:0,0,0 -(1,12741:3078558,49800853:0,16384,2228224 -g1,12741:29030814,49800853 -g1,12741:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12741:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12741:37855564,49800853:1179648,16384,0 -) -) -k1,12741:3078556,49800853:-34777008 -) -] -g1,12741:6630773,4812305 -k1,12741:25712890,4812305:17886740 -g1,12741:29057847,4812305 -g1,12741:29873114,4812305 -) -) -] -[1,12741:6630773,45706769:25952256,40108032,0 -(1,12741:6630773,45706769:25952256,40108032,0 -(1,12741:6630773,45706769:0,0,0 -g1,12741:6630773,45706769 -) -[1,12741:6630773,45706769:25952256,40108032,0 -v1,12684:6630773,6254097:0,393216,0 -(1,12696:6630773,11873451:25952256,6012570,196608 -g1,12696:6630773,11873451 -g1,12696:6630773,11873451 -g1,12696:6434165,11873451 -(1,12696:6434165,11873451:0,6012570,196608 -r1,12696:32779637,11873451:26345472,6209178,196608 -k1,12696:6434165,11873451:-26345472 -) -(1,12696:6434165,11873451:26345472,6012570,196608 -[1,12696:6630773,11873451:25952256,5815962,0 -(1,12686:6630773,6461715:25952256,404226,107478 -(1,12685:6630773,6461715:0,0,0 -g1,12685:6630773,6461715 -g1,12685:6630773,6461715 -g1,12685:6303093,6461715 -(1,12685:6303093,6461715:0,0,0 -) -g1,12685:6630773,6461715 -) -k1,12686:6630773,6461715:0 -g1,12686:10424522,6461715 -g1,12686:11056814,6461715 -g1,12686:13585980,6461715 -g1,12686:15482855,6461715 -g1,12686:16115147,6461715 -g1,12686:18012022,6461715 -g1,12686:18644314,6461715 -g1,12686:19276606,6461715 -k1,12686:19276606,6461715:0 -h1,12686:20541189,6461715:0,0,0 -k1,12686:32583029,6461715:12041840 -g1,12686:32583029,6461715 -) -(1,12687:6630773,7127893:25952256,410518,101187 -h1,12687:6630773,7127893:0,0,0 -g1,12687:6946919,7127893 -g1,12687:7263065,7127893 -g1,12687:7579211,7127893 -g1,12687:7895357,7127893 -g1,12687:8211503,7127893 -g1,12687:8527649,7127893 -g1,12687:8843795,7127893 -g1,12687:9159941,7127893 -g1,12687:9476087,7127893 -g1,12687:9792233,7127893 -g1,12687:10108379,7127893 -g1,12687:10424525,7127893 -g1,12687:10740671,7127893 -g1,12687:11056817,7127893 -g1,12687:11372963,7127893 -g1,12687:11689109,7127893 -g1,12687:12005255,7127893 -g1,12687:12321401,7127893 -g1,12687:12637547,7127893 -g1,12687:12953693,7127893 -g1,12687:13269839,7127893 -g1,12687:13585985,7127893 -g1,12687:13902131,7127893 -g1,12687:14218277,7127893 -g1,12687:14534423,7127893 -g1,12687:14850569,7127893 -g1,12687:16747443,7127893 -g1,12687:17379735,7127893 -k1,12687:17379735,7127893:0 -h1,12687:21173483,7127893:0,0,0 -k1,12687:32583029,7127893:11409546 -g1,12687:32583029,7127893 -) -(1,12688:6630773,7794071:25952256,404226,82312 -h1,12688:6630773,7794071:0,0,0 -g1,12688:6946919,7794071 -g1,12688:7263065,7794071 -g1,12688:7579211,7794071 -g1,12688:7895357,7794071 -g1,12688:8211503,7794071 -g1,12688:8527649,7794071 -g1,12688:8843795,7794071 -g1,12688:9159941,7794071 -g1,12688:9476087,7794071 -g1,12688:9792233,7794071 -g1,12688:10108379,7794071 -g1,12688:10424525,7794071 -g1,12688:10740671,7794071 -g1,12688:11056817,7794071 -g1,12688:11372963,7794071 -g1,12688:11689109,7794071 -g1,12688:12005255,7794071 -g1,12688:12321401,7794071 -g1,12688:12637547,7794071 -g1,12688:12953693,7794071 -g1,12688:13269839,7794071 -g1,12688:13585985,7794071 -g1,12688:13902131,7794071 -g1,12688:14218277,7794071 -g1,12688:14534423,7794071 -g1,12688:14850569,7794071 -g1,12688:16431298,7794071 -g1,12688:17063590,7794071 -k1,12688:17063590,7794071:0 -h1,12688:18012027,7794071:0,0,0 -k1,12688:32583029,7794071:14571002 -g1,12688:32583029,7794071 -) -(1,12689:6630773,8460249:25952256,404226,101187 -h1,12689:6630773,8460249:0,0,0 -g1,12689:6946919,8460249 -g1,12689:7263065,8460249 -g1,12689:7579211,8460249 -g1,12689:7895357,8460249 -g1,12689:8211503,8460249 -g1,12689:8527649,8460249 -g1,12689:8843795,8460249 -g1,12689:9159941,8460249 -g1,12689:9476087,8460249 -g1,12689:9792233,8460249 -g1,12689:10108379,8460249 -g1,12689:10424525,8460249 -g1,12689:10740671,8460249 -g1,12689:11056817,8460249 -g1,12689:11372963,8460249 -g1,12689:11689109,8460249 -g1,12689:12005255,8460249 -g1,12689:12321401,8460249 -g1,12689:12637547,8460249 -g1,12689:12953693,8460249 -g1,12689:13269839,8460249 -g1,12689:13585985,8460249 -g1,12689:13902131,8460249 -g1,12689:14218277,8460249 -g1,12689:14534423,8460249 -g1,12689:14850569,8460249 -g1,12689:16747443,8460249 -g1,12689:17379735,8460249 -g1,12689:19276609,8460249 -h1,12689:19592755,8460249:0,0,0 -k1,12689:32583029,8460249:12990274 -g1,12689:32583029,8460249 -) -(1,12690:6630773,9126427:25952256,404226,76021 -h1,12690:6630773,9126427:0,0,0 -g1,12690:6946919,9126427 -g1,12690:7263065,9126427 -g1,12690:11372959,9126427 -h1,12690:11689105,9126427:0,0,0 -k1,12690:32583029,9126427:20893924 -g1,12690:32583029,9126427 -) -(1,12691:6630773,9792605:25952256,404226,107478 -h1,12691:6630773,9792605:0,0,0 -g1,12691:6946919,9792605 -g1,12691:7263065,9792605 -g1,12691:11372959,9792605 -h1,12691:11689105,9792605:0,0,0 -k1,12691:32583029,9792605:20893924 -g1,12691:32583029,9792605 -) -(1,12692:6630773,10458783:25952256,404226,107478 -h1,12692:6630773,10458783:0,0,0 -g1,12692:6946919,10458783 -g1,12692:7263065,10458783 -g1,12692:12321397,10458783 -g1,12692:12953689,10458783 -k1,12692:12953689,10458783:0 -h1,12692:15799000,10458783:0,0,0 -k1,12692:32583028,10458783:16784028 -g1,12692:32583028,10458783 -) -(1,12693:6630773,11124961:25952256,404226,101187 -h1,12693:6630773,11124961:0,0,0 -g1,12693:6946919,11124961 -g1,12693:7263065,11124961 -g1,12693:7579211,11124961 -g1,12693:7895357,11124961 -g1,12693:8211503,11124961 -g1,12693:8527649,11124961 -g1,12693:8843795,11124961 -g1,12693:9159941,11124961 -g1,12693:9476087,11124961 -g1,12693:9792233,11124961 -g1,12693:10108379,11124961 -g1,12693:10424525,11124961 -g1,12693:10740671,11124961 -g1,12693:12637546,11124961 -g1,12693:13269838,11124961 -g1,12693:14218276,11124961 -g1,12693:14850568,11124961 -g1,12693:15482860,11124961 -g1,12693:16431298,11124961 -g1,12693:18328172,11124961 -g1,12693:18960464,11124961 -k1,12693:18960464,11124961:0 -h1,12693:23070358,11124961:0,0,0 -k1,12693:32583029,11124961:9512671 -g1,12693:32583029,11124961 -) -(1,12694:6630773,11791139:25952256,404226,82312 -h1,12694:6630773,11791139:0,0,0 -g1,12694:6946919,11791139 -g1,12694:7263065,11791139 -g1,12694:7579211,11791139 -g1,12694:7895357,11791139 -g1,12694:8211503,11791139 -g1,12694:8527649,11791139 -g1,12694:8843795,11791139 -g1,12694:9159941,11791139 -g1,12694:9476087,11791139 -g1,12694:9792233,11791139 -g1,12694:10108379,11791139 -g1,12694:10424525,11791139 -g1,12694:10740671,11791139 -g1,12694:12637545,11791139 -g1,12694:13269837,11791139 -g1,12694:16115149,11791139 -g1,12694:17695878,11791139 -g1,12694:18328170,11791139 -h1,12694:18960462,11791139:0,0,0 -k1,12694:32583029,11791139:13622567 -g1,12694:32583029,11791139 -) -] -) -g1,12696:32583029,11873451 -g1,12696:6630773,11873451 -g1,12696:6630773,11873451 -g1,12696:32583029,11873451 -g1,12696:32583029,11873451 -) -h1,12696:6630773,12070059:0,0,0 -(1,12699:6630773,21657658:25952256,9062689,0 -k1,12699:10523651,21657658:3892878 -h1,12698:10523651,21657658:0,0,0 -(1,12698:10523651,21657658:18166500,9062689,0 -(1,12698:10523651,21657658:18167381,9062712,0 -(1,12698:10523651,21657658:18167381,9062712,0 -(1,12698:10523651,21657658:0,9062712,0 -(1,12698:10523651,21657658:0,14155776,0 -(1,12698:10523651,21657658:28377088,14155776,0 -) -k1,12698:10523651,21657658:-28377088 -) -) -g1,12698:28691032,21657658 -) -) -) -g1,12699:28690151,21657658 -k1,12699:32583029,21657658:3892878 -) -(1,12708:6630773,22499146:25952256,505283,115847 -h1,12706:6630773,22499146:983040,0,0 -k1,12706:9053812,22499146:243312 -(1,12706:9053812,22499146:0,452978,115847 -r1,12706:10818925,22499146:1765113,568825,115847 -k1,12706:9053812,22499146:-1765113 -) -(1,12706:9053812,22499146:1765113,452978,115847 -k1,12706:9053812,22499146:3277 -h1,12706:10815648,22499146:0,411205,112570 -) -k1,12706:11062237,22499146:243312 -k1,12706:12496994,22499146:243312 -(1,12706:12496994,22499146:0,452978,115847 -r1,12706:13910395,22499146:1413401,568825,115847 -k1,12706:12496994,22499146:-1413401 -) -(1,12706:12496994,22499146:1413401,452978,115847 -k1,12706:12496994,22499146:3277 -h1,12706:13907118,22499146:0,411205,112570 -) -k1,12706:14153707,22499146:243312 -k1,12706:17571583,22499146:243312 -k1,12706:20102757,22499146:243312 -k1,12706:21365154,22499146:243312 -k1,12706:22834646,22499146:243313 -k1,12706:23693996,22499146:243312 -k1,12706:24956393,22499146:243312 -k1,12706:27509849,22499146:243312 -k1,12706:28439323,22499146:243312 -k1,12706:29038495,22499146:243312 -k1,12706:31338327,22499146:243312 -k1,12707:32051532,22499146:243312 -k1,12707:32583029,22499146:0 -) -(1,12708:6630773,23340634:25952256,513147,134348 -k1,12707:8122506,23340634:205917 -k1,12707:10958382,23340634:205916 -k1,12707:11815727,23340634:205917 -k1,12707:13921532,23340634:205916 -k1,12707:15146534,23340634:205917 -k1,12707:17662595,23340634:205917 -k1,12707:19603904,23340634:205916 -(1,12707:19603904,23340634:0,452978,122846 -r1,12707:21369017,23340634:1765113,575824,122846 -k1,12707:19603904,23340634:-1765113 -) -(1,12707:19603904,23340634:1765113,452978,122846 -k1,12707:19603904,23340634:3277 -h1,12707:21365740,23340634:0,411205,112570 -) -k1,12707:21748604,23340634:205917 -k1,12707:22772410,23340634:205917 -k1,12707:24372277,23340634:205916 -k1,12707:25804373,23340634:205917 -k1,12707:28028143,23340634:205916 -k1,12707:32051532,23340634:205917 -k1,12707:32583029,23340634:0 -) -(1,12708:6630773,24182122:25952256,505283,126483 -k1,12707:10468941,24182122:248106 -k1,12707:11333085,24182122:248106 -k1,12707:14045346,24182122:248107 -k1,12707:14944880,24182122:248106 -k1,12707:18197812,24182122:248106 -k1,12707:22146081,24182122:248106 -k1,12707:23347736,24182122:248106 -k1,12707:24530385,24182122:248106 -k1,12707:25797577,24182122:248107 -(1,12707:25797577,24182122:0,435480,115847 -r1,12707:27562691,24182122:1765114,551327,115847 -k1,12707:25797577,24182122:-1765114 -) -(1,12707:25797577,24182122:1765114,435480,115847 -g1,12707:26504278,24182122 -g1,12707:27207702,24182122 -h1,12707:27559414,24182122:0,411205,112570 -) -k1,12707:27810797,24182122:248106 -k1,12707:28674941,24182122:248106 -(1,12707:28674941,24182122:0,452978,115847 -r1,12707:31143478,24182122:2468537,568825,115847 -k1,12707:28674941,24182122:-2468537 -) -(1,12707:28674941,24182122:2468537,452978,115847 -k1,12707:28674941,24182122:3277 -h1,12707:31140201,24182122:0,411205,112570 -) -k1,12707:31391584,24182122:248106 -k1,12707:32583029,24182122:0 -) -(1,12708:6630773,25023610:25952256,513147,126483 -g1,12707:8263930,25023610 -g1,12707:9555644,25023610 -(1,12707:9555644,25023610:0,452978,122846 -r1,12707:12727605,25023610:3171961,575824,122846 -k1,12707:9555644,25023610:-3171961 -) -(1,12707:9555644,25023610:3171961,452978,122846 -g1,12707:11669192,25023610 -g1,12707:12372616,25023610 -h1,12707:12724328,25023610:0,411205,112570 -) -g1,12707:12926834,25023610 -g1,12707:13777491,25023610 -g1,12707:16590951,25023610 -g1,12707:17809265,25023610 -g1,12707:19080663,25023610 -g1,12707:19939184,25023610 -g1,12707:21157498,25023610 -g1,12707:22922382,25023610 -g1,12707:23734373,25023610 -g1,12707:25136843,25023610 -g1,12707:28743944,25023610 -k1,12708:32583029,25023610:1985071 -g1,12708:32583029,25023610 -) -v1,12710:6630773,26149162:0,393216,0 -(1,12719:6630773,29801440:25952256,4045494,196608 -g1,12719:6630773,29801440 -g1,12719:6630773,29801440 -g1,12719:6434165,29801440 -(1,12719:6434165,29801440:0,4045494,196608 -r1,12719:32779637,29801440:26345472,4242102,196608 -k1,12719:6434165,29801440:-26345472 -) -(1,12719:6434165,29801440:26345472,4045494,196608 -[1,12719:6630773,29801440:25952256,3848886,0 -(1,12712:6630773,26363072:25952256,410518,107478 -(1,12711:6630773,26363072:0,0,0 -g1,12711:6630773,26363072 -g1,12711:6630773,26363072 -g1,12711:6303093,26363072 -(1,12711:6303093,26363072:0,0,0 -) -g1,12711:6630773,26363072 -) -k1,12712:6630773,26363072:0 -g1,12712:10424522,26363072 -g1,12712:11056814,26363072 -g1,12712:13585980,26363072 -g1,12712:15482855,26363072 -g1,12712:16115147,26363072 -g1,12712:18012022,26363072 -g1,12712:18644314,26363072 -g1,12712:19276606,26363072 -g1,12712:20857335,26363072 -g1,12712:22754209,26363072 -g1,12712:23386501,26363072 -g1,12712:27812541,26363072 -h1,12712:28128687,26363072:0,0,0 -k1,12712:32583029,26363072:4454342 -g1,12712:32583029,26363072 -) -(1,12713:6630773,27029250:25952256,404226,107478 -h1,12713:6630773,27029250:0,0,0 -g1,12713:6946919,27029250 -g1,12713:7263065,27029250 -g1,12713:11372959,27029250 -h1,12713:11689105,27029250:0,0,0 -k1,12713:32583029,27029250:20893924 -g1,12713:32583029,27029250 -) -(1,12714:6630773,27695428:25952256,404226,107478 -h1,12714:6630773,27695428:0,0,0 -g1,12714:6946919,27695428 -g1,12714:7263065,27695428 -g1,12714:12321397,27695428 -g1,12714:12953689,27695428 -k1,12714:12953689,27695428:0 -h1,12714:15799000,27695428:0,0,0 -k1,12714:32583028,27695428:16784028 -g1,12714:32583028,27695428 -) -(1,12715:6630773,28361606:25952256,404226,101187 -h1,12715:6630773,28361606:0,0,0 -g1,12715:6946919,28361606 -g1,12715:7263065,28361606 -g1,12715:7579211,28361606 -g1,12715:7895357,28361606 -g1,12715:8211503,28361606 -g1,12715:8527649,28361606 -g1,12715:8843795,28361606 -g1,12715:9159941,28361606 -g1,12715:9476087,28361606 -g1,12715:9792233,28361606 -g1,12715:10108379,28361606 -g1,12715:10424525,28361606 -g1,12715:10740671,28361606 -g1,12715:12637546,28361606 -g1,12715:13269838,28361606 -g1,12715:14218276,28361606 -g1,12715:14850568,28361606 -g1,12715:15482860,28361606 -g1,12715:16431298,28361606 -g1,12715:18328172,28361606 -g1,12715:18960464,28361606 -k1,12715:18960464,28361606:0 -h1,12715:23070358,28361606:0,0,0 -k1,12715:32583029,28361606:9512671 -g1,12715:32583029,28361606 -) -(1,12716:6630773,29027784:25952256,404226,82312 -h1,12716:6630773,29027784:0,0,0 -g1,12716:6946919,29027784 -g1,12716:7263065,29027784 -g1,12716:7579211,29027784 -g1,12716:7895357,29027784 -g1,12716:8211503,29027784 -g1,12716:8527649,29027784 -g1,12716:8843795,29027784 -g1,12716:9159941,29027784 -g1,12716:9476087,29027784 -g1,12716:9792233,29027784 -g1,12716:10108379,29027784 -g1,12716:10424525,29027784 -g1,12716:10740671,29027784 -g1,12716:12637545,29027784 -g1,12716:13269837,29027784 -g1,12716:15799003,29027784 -g1,12716:17379732,29027784 -g1,12716:18012024,29027784 -k1,12716:18012024,29027784:0 -h1,12716:18644316,29027784:0,0,0 -k1,12716:32583029,29027784:13938713 -g1,12716:32583029,29027784 -) -(1,12717:6630773,29693962:25952256,404226,107478 -h1,12717:6630773,29693962:0,0,0 -g1,12717:6946919,29693962 -g1,12717:7263065,29693962 -g1,12717:7579211,29693962 -g1,12717:7895357,29693962 -g1,12717:8211503,29693962 -g1,12717:8527649,29693962 -g1,12717:8843795,29693962 -g1,12717:9159941,29693962 -g1,12717:9476087,29693962 -g1,12717:9792233,29693962 -g1,12717:10108379,29693962 -g1,12717:10424525,29693962 -g1,12717:10740671,29693962 -g1,12717:12637545,29693962 -g1,12717:13269837,29693962 -g1,12717:14218275,29693962 -g1,12717:16115149,29693962 -g1,12717:16747441,29693962 -g1,12717:17695879,29693962 -g1,12717:19592753,29693962 -g1,12717:20225045,29693962 -h1,12717:21173482,29693962:0,0,0 -k1,12717:32583029,29693962:11409547 -g1,12717:32583029,29693962 -) -] -) -g1,12719:32583029,29801440 -g1,12719:6630773,29801440 -g1,12719:6630773,29801440 -g1,12719:32583029,29801440 -g1,12719:32583029,29801440 -) -h1,12719:6630773,29998048:0,0,0 -(1,12723:6630773,31298909:25952256,513147,134348 -h1,12722:6630773,31298909:983040,0,0 -k1,12722:9891290,31298909:159353 -k1,12722:11450492,31298909:159353 -k1,12722:13345238,31298909:159353 -k1,12722:14453553,31298909:159354 -k1,12722:17465033,31298909:159353 -k1,12722:19708431,31298909:159353 -k1,12722:20399281,31298909:159353 -k1,12722:23853129,31298909:159353 -k1,12722:24628520,31298909:159353 -k1,12722:25806959,31298909:159354 -k1,12722:27705638,31298909:159353 -k1,12722:29258942,31298909:159353 -k1,12722:31931601,31298909:159353 -k1,12722:32583029,31298909:0 -) -(1,12723:6630773,32140397:25952256,513147,134348 -k1,12722:8405226,32140397:176685 -k1,12722:9808090,32140397:176685 -k1,12722:10600813,32140397:176685 -k1,12722:12144579,32140397:176685 -k1,12722:12980556,32140397:176685 -k1,12722:15542752,32140397:176685 -k1,12722:17830352,32140397:176685 -k1,12722:18816406,32140397:176684 -k1,12722:19348951,32140397:176685 -k1,12722:22895497,32140397:176685 -k1,12722:24863936,32140397:176685 -k1,12722:25994170,32140397:176685 -k1,12722:27353780,32140397:176685 -k1,12722:28733706,32140397:176685 -k1,12722:31189078,32140397:176685 -k1,12722:32583029,32140397:0 -) -(1,12723:6630773,32981885:25952256,513147,126483 -k1,12722:7202304,32981885:215671 -k1,12722:9542651,32981885:215670 -k1,12722:12593409,32981885:215671 -k1,12722:14694551,32981885:215671 -k1,12722:16376918,32981885:215671 -k1,12722:17058549,32981885:215670 -k1,12722:18340491,32981885:215671 -k1,12722:19910136,32981885:215671 -k1,12722:22276699,32981885:215671 -k1,12722:26855756,32981885:215670 -k1,12722:28355933,32981885:215671 -(1,12722:28355933,32981885:0,452978,122846 -r1,12722:32583029,32981885:4227096,575824,122846 -k1,12722:28355933,32981885:-4227096 -) -(1,12722:28355933,32981885:4227096,452978,122846 -k1,12722:28355933,32981885:3277 -h1,12722:32579752,32981885:0,411205,112570 -) -k1,12722:32583029,32981885:0 -) -(1,12723:6630773,33823373:25952256,505283,134348 -k1,12722:9359733,33823373:175677 -k1,12722:10681636,33823373:175678 -k1,12722:11213173,33823373:175677 -k1,12722:14267847,33823373:175677 -k1,12722:16469243,33823373:175678 -k1,12722:19652367,33823373:175677 -k1,12722:21019489,33823373:175677 -k1,12722:22479672,33823373:175677 -k1,12722:23011210,33823373:175678 -k1,12722:24752542,33823373:175677 -k1,12722:26032501,33823373:175677 -k1,12722:26955945,33823373:175678 -k1,12722:28150707,33823373:175677 -k1,12722:29701985,33823373:175677 -k1,12722:31435454,33823373:175678 -k1,12722:32227169,33823373:175677 -k1,12722:32583029,33823373:0 -) -(1,12723:6630773,34664861:25952256,513147,134348 -k1,12722:8828849,34664861:172358 -k1,12722:9467168,34664861:172358 -k1,12722:12169215,34664861:172357 -k1,12722:13538260,34664861:172358 -k1,12722:16376623,34664861:172358 -k1,12722:17208273,34664861:172358 -k1,12722:20051877,34664861:172357 -k1,12722:22120192,34664861:172358 -k1,12722:23686501,34664861:172358 -k1,12722:24214719,34664861:172358 -k1,12722:26260095,34664861:172357 -k1,12722:27532147,34664861:172358 -k1,12722:28355933,34664861:172358 -(1,12722:28355933,34664861:0,452978,122846 -r1,12722:32583029,34664861:4227096,575824,122846 -k1,12722:28355933,34664861:-4227096 -) -(1,12722:28355933,34664861:4227096,452978,122846 -k1,12722:28355933,34664861:3277 -h1,12722:32579752,34664861:0,411205,112570 -) -k1,12722:32583029,34664861:0 -) -(1,12723:6630773,35506349:25952256,513147,134348 -g1,12722:7591530,35506349 -g1,12722:10218213,35506349 -g1,12722:10773302,35506349 -(1,12722:10773302,35506349:0,452978,115847 -r1,12722:12890127,35506349:2116825,568825,115847 -k1,12722:10773302,35506349:-2116825 -) -(1,12722:10773302,35506349:2116825,452978,115847 -k1,12722:10773302,35506349:3277 -h1,12722:12886850,35506349:0,411205,112570 -) -g1,12722:13089356,35506349 -g1,12722:14682536,35506349 -g1,12722:17553012,35506349 -g1,12722:19286439,35506349 -g1,12722:20171830,35506349 -g1,12722:21141762,35506349 -g1,12722:24413319,35506349 -g1,12722:25560199,35506349 -(1,12722:25560199,35506349:0,452978,115847 -r1,12722:26973600,35506349:1413401,568825,115847 -k1,12722:25560199,35506349:-1413401 -) -(1,12722:25560199,35506349:1413401,452978,115847 -k1,12722:25560199,35506349:3277 -h1,12722:26970323,35506349:0,411205,112570 -) -g1,12722:27172829,35506349 -g1,12722:27903555,35506349 -g1,12722:29388600,35506349 -k1,12723:32583029,35506349:390799 -g1,12723:32583029,35506349 -) -v1,12725:6630773,36631901:0,393216,0 -(1,12736:6630773,41578786:25952256,5340101,196608 -g1,12736:6630773,41578786 -g1,12736:6630773,41578786 -g1,12736:6434165,41578786 -(1,12736:6434165,41578786:0,5340101,196608 -r1,12736:32779637,41578786:26345472,5536709,196608 -k1,12736:6434165,41578786:-26345472 -) -(1,12736:6434165,41578786:26345472,5340101,196608 -[1,12736:6630773,41578786:25952256,5143493,0 -(1,12727:6630773,36839519:25952256,404226,101187 -(1,12726:6630773,36839519:0,0,0 -g1,12726:6630773,36839519 -g1,12726:6630773,36839519 -g1,12726:6303093,36839519 -(1,12726:6303093,36839519:0,0,0 -) -g1,12726:6630773,36839519 -) -g1,12727:8527647,36839519 -g1,12727:9476085,36839519 -g1,12727:13585980,36839519 -g1,12727:14218272,36839519 -k1,12727:14218272,36839519:0 -h1,12727:14850564,36839519:0,0,0 -k1,12727:32583028,36839519:17732464 -g1,12727:32583028,36839519 -) -(1,12728:6630773,37505697:25952256,404226,82312 -h1,12728:6630773,37505697:0,0,0 -g1,12728:6946919,37505697 -g1,12728:7263065,37505697 -g1,12728:7579211,37505697 -g1,12728:7895357,37505697 -g1,12728:8211503,37505697 -g1,12728:8527649,37505697 -g1,12728:8843795,37505697 -g1,12728:9159941,37505697 -g1,12728:9476087,37505697 -g1,12728:9792233,37505697 -g1,12728:10108379,37505697 -g1,12728:10424525,37505697 -g1,12728:10740671,37505697 -g1,12728:11056817,37505697 -g1,12728:11372963,37505697 -g1,12728:11689109,37505697 -g1,12728:13585984,37505697 -g1,12728:14218276,37505697 -k1,12728:14218276,37505697:0 -h1,12728:15482860,37505697:0,0,0 -k1,12728:32583028,37505697:17100168 -g1,12728:32583028,37505697 -) -(1,12729:6630773,38171875:25952256,404226,82312 -h1,12729:6630773,38171875:0,0,0 -g1,12729:6946919,38171875 -g1,12729:7263065,38171875 -g1,12729:7579211,38171875 -g1,12729:7895357,38171875 -g1,12729:8211503,38171875 -g1,12729:8527649,38171875 -g1,12729:8843795,38171875 -g1,12729:9159941,38171875 -g1,12729:9476087,38171875 -g1,12729:9792233,38171875 -g1,12729:10108379,38171875 -g1,12729:10424525,38171875 -g1,12729:10740671,38171875 -g1,12729:11056817,38171875 -g1,12729:11372963,38171875 -g1,12729:11689109,38171875 -g1,12729:13585984,38171875 -g1,12729:14218276,38171875 -k1,12729:14218276,38171875:0 -h1,12729:16747444,38171875:0,0,0 -k1,12729:32583029,38171875:15835585 -g1,12729:32583029,38171875 -) -(1,12730:6630773,38838053:25952256,404226,76021 -h1,12730:6630773,38838053:0,0,0 -g1,12730:6946919,38838053 -g1,12730:7263065,38838053 -g1,12730:7579211,38838053 -g1,12730:7895357,38838053 -g1,12730:8211503,38838053 -g1,12730:8527649,38838053 -g1,12730:8843795,38838053 -g1,12730:9159941,38838053 -g1,12730:9476087,38838053 -g1,12730:9792233,38838053 -g1,12730:10108379,38838053 -g1,12730:10424525,38838053 -g1,12730:10740671,38838053 -g1,12730:11056817,38838053 -g1,12730:11372963,38838053 -g1,12730:11689109,38838053 -g1,12730:13585984,38838053 -g1,12730:14218276,38838053 -h1,12730:16747444,38838053:0,0,0 -k1,12730:32583029,38838053:15835585 -g1,12730:32583029,38838053 -) -(1,12731:6630773,39504231:25952256,404226,101187 -h1,12731:6630773,39504231:0,0,0 -g1,12731:9159939,39504231 -g1,12731:10108377,39504231 -g1,12731:12953689,39504231 -g1,12731:13585981,39504231 -g1,12731:14534419,39504231 -g1,12731:15166711,39504231 -g1,12731:15799003,39504231 -g1,12731:16747441,39504231 -g1,12731:20541189,39504231 -g1,12731:21173481,39504231 -k1,12731:21173481,39504231:0 -h1,12731:24967229,39504231:0,0,0 -k1,12731:32583029,39504231:7615800 -g1,12731:32583029,39504231 -) -(1,12732:6630773,40170409:25952256,404226,107478 -h1,12732:6630773,40170409:0,0,0 -g1,12732:11689104,40170409 -g1,12732:14218270,40170409 -g1,12732:14850562,40170409 -g1,12732:17063582,40170409 -g1,12732:18012020,40170409 -g1,12732:19908894,40170409 -g1,12732:20541186,40170409 -g1,12732:24967226,40170409 -h1,12732:25283372,40170409:0,0,0 -k1,12732:32583029,40170409:7299657 -g1,12732:32583029,40170409 -) -(1,12733:6630773,40836587:25952256,404226,107478 -h1,12733:6630773,40836587:0,0,0 -g1,12733:6946919,40836587 -g1,12733:7263065,40836587 -g1,12733:14534416,40836587 -g1,12733:15166708,40836587 -g1,12733:17063583,40836587 -g1,12733:18644312,40836587 -g1,12733:19276604,40836587 -g1,12733:20225042,40836587 -g1,12733:22121916,40836587 -g1,12733:22754208,40836587 -g1,12733:24651083,40836587 -h1,12733:24967229,40836587:0,0,0 -k1,12733:32583029,40836587:7615800 -g1,12733:32583029,40836587 -) -(1,12734:6630773,41502765:25952256,404226,76021 -h1,12734:6630773,41502765:0,0,0 -g1,12734:6946919,41502765 -g1,12734:7263065,41502765 -k1,12734:7263065,41502765:0 -h1,12734:11056813,41502765:0,0,0 -k1,12734:32583029,41502765:21526216 -g1,12734:32583029,41502765 -) -] -) -g1,12736:32583029,41578786 -g1,12736:6630773,41578786 -g1,12736:6630773,41578786 -g1,12736:32583029,41578786 -g1,12736:32583029,41578786 -) -h1,12736:6630773,41775394:0,0,0 -v1,12740:6630773,43535630:0,393216,0 -(1,12741:6630773,45116945:25952256,1974531,589824 -g1,12741:6630773,45116945 -(1,12741:6630773,45116945:25952256,1974531,589824 -(1,12741:6630773,45706769:25952256,2564355,0 -[1,12741:6630773,45706769:25952256,2564355,0 -(1,12741:6630773,45706769:25952256,2538141,0 -r1,12741:6656987,45706769:26214,2538141,0 -[1,12741:6656987,45706769:25899828,2538141,0 -(1,12741:6656987,45116945:25899828,1358493,0 -[1,12741:7246811,45116945:24720180,1358493,0 -(1,12741:7246811,44920337:24720180,1161885,196608 -(1,12740:7246811,44920337:0,1161885,196608 -r1,12741:8794447,44920337:1547636,1358493,196608 -k1,12740:7246811,44920337:-1547636 -) -(1,12740:7246811,44920337:1547636,1161885,196608 -) -k1,12740:9042862,44920337:248415 -k1,12740:10487964,44920337:248415 -k1,12740:13743826,44920337:248415 -(1,12740:13743826,44920337:0,452978,122846 -r1,12741:17970922,44920337:4227096,575824,122846 -k1,12740:13743826,44920337:-4227096 -) -(1,12740:13743826,44920337:4227096,452978,122846 -k1,12740:13743826,44920337:3277 -h1,12740:17967645,44920337:0,411205,112570 -) -k1,12740:18219337,44920337:248415 -k1,12740:19890539,44920337:248415 -k1,12740:23164751,44920337:248415 -k1,12740:24980787,44920337:248415 -k1,12740:27809354,44920337:248415 -k1,12740:31315563,44920337:248415 -k1,12740:31966991,44920337:0 -) -] -) -] -r1,12741:32583029,45706769:26214,2538141,0 -) -] -) -) -g1,12741:32583029,45116945 -) -] -(1,12741:32583029,45706769:0,0,0 -g1,12741:32583029,45706769 -) -) -] -(1,12741:6630773,47279633:25952256,0,0 -h1,12741:6630773,47279633:25952256,0,0 -) -] -h1,12741:4262630,4025873:0,0,0 +[1,12760:3078558,4812305:0,0,0 +(1,12760:3078558,49800853:0,16384,2228224 +g1,12760:29030814,49800853 +g1,12760:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12760:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12760:37855564,49800853:1179648,16384,0 +) +) +k1,12760:3078556,49800853:-34777008 +) +] +g1,12760:6630773,4812305 +g1,12760:6630773,4812305 +g1,12760:10347975,4812305 +k1,12760:31387651,4812305:21039676 +) +) +] +[1,12760:6630773,45706769:25952256,40108032,0 +(1,12760:6630773,45706769:25952256,40108032,0 +(1,12760:6630773,45706769:0,0,0 +g1,12760:6630773,45706769 +) +[1,12760:6630773,45706769:25952256,40108032,0 +v1,12703:6630773,6254097:0,393216,0 +(1,12715:6630773,11873451:25952256,6012570,196608 +g1,12715:6630773,11873451 +g1,12715:6630773,11873451 +g1,12715:6434165,11873451 +(1,12715:6434165,11873451:0,6012570,196608 +r1,12715:32779637,11873451:26345472,6209178,196608 +k1,12715:6434165,11873451:-26345472 +) +(1,12715:6434165,11873451:26345472,6012570,196608 +[1,12715:6630773,11873451:25952256,5815962,0 +(1,12705:6630773,6461715:25952256,404226,107478 +(1,12704:6630773,6461715:0,0,0 +g1,12704:6630773,6461715 +g1,12704:6630773,6461715 +g1,12704:6303093,6461715 +(1,12704:6303093,6461715:0,0,0 +) +g1,12704:6630773,6461715 +) +k1,12705:6630773,6461715:0 +g1,12705:10424522,6461715 +g1,12705:11056814,6461715 +g1,12705:13585980,6461715 +g1,12705:15482855,6461715 +g1,12705:16115147,6461715 +g1,12705:18012022,6461715 +g1,12705:18644314,6461715 +g1,12705:19276606,6461715 +k1,12705:19276606,6461715:0 +h1,12705:20541189,6461715:0,0,0 +k1,12705:32583029,6461715:12041840 +g1,12705:32583029,6461715 +) +(1,12706:6630773,7127893:25952256,410518,101187 +h1,12706:6630773,7127893:0,0,0 +g1,12706:6946919,7127893 +g1,12706:7263065,7127893 +g1,12706:7579211,7127893 +g1,12706:7895357,7127893 +g1,12706:8211503,7127893 +g1,12706:8527649,7127893 +g1,12706:8843795,7127893 +g1,12706:9159941,7127893 +g1,12706:9476087,7127893 +g1,12706:9792233,7127893 +g1,12706:10108379,7127893 +g1,12706:10424525,7127893 +g1,12706:10740671,7127893 +g1,12706:11056817,7127893 +g1,12706:11372963,7127893 +g1,12706:11689109,7127893 +g1,12706:12005255,7127893 +g1,12706:12321401,7127893 +g1,12706:12637547,7127893 +g1,12706:12953693,7127893 +g1,12706:13269839,7127893 +g1,12706:13585985,7127893 +g1,12706:13902131,7127893 +g1,12706:14218277,7127893 +g1,12706:14534423,7127893 +g1,12706:14850569,7127893 +g1,12706:16747443,7127893 +g1,12706:17379735,7127893 +k1,12706:17379735,7127893:0 +h1,12706:21173483,7127893:0,0,0 +k1,12706:32583029,7127893:11409546 +g1,12706:32583029,7127893 +) +(1,12707:6630773,7794071:25952256,404226,82312 +h1,12707:6630773,7794071:0,0,0 +g1,12707:6946919,7794071 +g1,12707:7263065,7794071 +g1,12707:7579211,7794071 +g1,12707:7895357,7794071 +g1,12707:8211503,7794071 +g1,12707:8527649,7794071 +g1,12707:8843795,7794071 +g1,12707:9159941,7794071 +g1,12707:9476087,7794071 +g1,12707:9792233,7794071 +g1,12707:10108379,7794071 +g1,12707:10424525,7794071 +g1,12707:10740671,7794071 +g1,12707:11056817,7794071 +g1,12707:11372963,7794071 +g1,12707:11689109,7794071 +g1,12707:12005255,7794071 +g1,12707:12321401,7794071 +g1,12707:12637547,7794071 +g1,12707:12953693,7794071 +g1,12707:13269839,7794071 +g1,12707:13585985,7794071 +g1,12707:13902131,7794071 +g1,12707:14218277,7794071 +g1,12707:14534423,7794071 +g1,12707:14850569,7794071 +g1,12707:16431298,7794071 +g1,12707:17063590,7794071 +k1,12707:17063590,7794071:0 +h1,12707:18012027,7794071:0,0,0 +k1,12707:32583029,7794071:14571002 +g1,12707:32583029,7794071 +) +(1,12708:6630773,8460249:25952256,404226,101187 +h1,12708:6630773,8460249:0,0,0 +g1,12708:6946919,8460249 +g1,12708:7263065,8460249 +g1,12708:7579211,8460249 +g1,12708:7895357,8460249 +g1,12708:8211503,8460249 +g1,12708:8527649,8460249 +g1,12708:8843795,8460249 +g1,12708:9159941,8460249 +g1,12708:9476087,8460249 +g1,12708:9792233,8460249 +g1,12708:10108379,8460249 +g1,12708:10424525,8460249 +g1,12708:10740671,8460249 +g1,12708:11056817,8460249 +g1,12708:11372963,8460249 +g1,12708:11689109,8460249 +g1,12708:12005255,8460249 +g1,12708:12321401,8460249 +g1,12708:12637547,8460249 +g1,12708:12953693,8460249 +g1,12708:13269839,8460249 +g1,12708:13585985,8460249 +g1,12708:13902131,8460249 +g1,12708:14218277,8460249 +g1,12708:14534423,8460249 +g1,12708:14850569,8460249 +g1,12708:16747443,8460249 +g1,12708:17379735,8460249 +g1,12708:19276609,8460249 +h1,12708:19592755,8460249:0,0,0 +k1,12708:32583029,8460249:12990274 +g1,12708:32583029,8460249 +) +(1,12709:6630773,9126427:25952256,404226,76021 +h1,12709:6630773,9126427:0,0,0 +g1,12709:6946919,9126427 +g1,12709:7263065,9126427 +g1,12709:11372959,9126427 +h1,12709:11689105,9126427:0,0,0 +k1,12709:32583029,9126427:20893924 +g1,12709:32583029,9126427 +) +(1,12710:6630773,9792605:25952256,404226,107478 +h1,12710:6630773,9792605:0,0,0 +g1,12710:6946919,9792605 +g1,12710:7263065,9792605 +g1,12710:11372959,9792605 +h1,12710:11689105,9792605:0,0,0 +k1,12710:32583029,9792605:20893924 +g1,12710:32583029,9792605 +) +(1,12711:6630773,10458783:25952256,404226,107478 +h1,12711:6630773,10458783:0,0,0 +g1,12711:6946919,10458783 +g1,12711:7263065,10458783 +g1,12711:12321397,10458783 +g1,12711:12953689,10458783 +k1,12711:12953689,10458783:0 +h1,12711:15799000,10458783:0,0,0 +k1,12711:32583028,10458783:16784028 +g1,12711:32583028,10458783 +) +(1,12712:6630773,11124961:25952256,404226,101187 +h1,12712:6630773,11124961:0,0,0 +g1,12712:6946919,11124961 +g1,12712:7263065,11124961 +g1,12712:7579211,11124961 +g1,12712:7895357,11124961 +g1,12712:8211503,11124961 +g1,12712:8527649,11124961 +g1,12712:8843795,11124961 +g1,12712:9159941,11124961 +g1,12712:9476087,11124961 +g1,12712:9792233,11124961 +g1,12712:10108379,11124961 +g1,12712:10424525,11124961 +g1,12712:10740671,11124961 +g1,12712:12637546,11124961 +g1,12712:13269838,11124961 +g1,12712:14218276,11124961 +g1,12712:14850568,11124961 +g1,12712:15482860,11124961 +g1,12712:16431298,11124961 +g1,12712:18328172,11124961 +g1,12712:18960464,11124961 +k1,12712:18960464,11124961:0 +h1,12712:23070358,11124961:0,0,0 +k1,12712:32583029,11124961:9512671 +g1,12712:32583029,11124961 +) +(1,12713:6630773,11791139:25952256,404226,82312 +h1,12713:6630773,11791139:0,0,0 +g1,12713:6946919,11791139 +g1,12713:7263065,11791139 +g1,12713:7579211,11791139 +g1,12713:7895357,11791139 +g1,12713:8211503,11791139 +g1,12713:8527649,11791139 +g1,12713:8843795,11791139 +g1,12713:9159941,11791139 +g1,12713:9476087,11791139 +g1,12713:9792233,11791139 +g1,12713:10108379,11791139 +g1,12713:10424525,11791139 +g1,12713:10740671,11791139 +g1,12713:12637545,11791139 +g1,12713:13269837,11791139 +g1,12713:16115149,11791139 +g1,12713:17695878,11791139 +g1,12713:18328170,11791139 +h1,12713:18960462,11791139:0,0,0 +k1,12713:32583029,11791139:13622567 +g1,12713:32583029,11791139 +) +] +) +g1,12715:32583029,11873451 +g1,12715:6630773,11873451 +g1,12715:6630773,11873451 +g1,12715:32583029,11873451 +g1,12715:32583029,11873451 +) +h1,12715:6630773,12070059:0,0,0 +(1,12718:6630773,21657658:25952256,9062689,0 +k1,12718:10523651,21657658:3892878 +h1,12717:10523651,21657658:0,0,0 +(1,12717:10523651,21657658:18166500,9062689,0 +(1,12717:10523651,21657658:18167381,9062712,0 +(1,12717:10523651,21657658:18167381,9062712,0 +(1,12717:10523651,21657658:0,9062712,0 +(1,12717:10523651,21657658:0,14155776,0 +(1,12717:10523651,21657658:28377088,14155776,0 +) +k1,12717:10523651,21657658:-28377088 +) +) +g1,12717:28691032,21657658 +) +) +) +g1,12718:28690151,21657658 +k1,12718:32583029,21657658:3892878 +) +(1,12727:6630773,22499146:25952256,505283,115847 +h1,12725:6630773,22499146:983040,0,0 +k1,12725:9053812,22499146:243312 +(1,12725:9053812,22499146:0,452978,115847 +r1,12725:10818925,22499146:1765113,568825,115847 +k1,12725:9053812,22499146:-1765113 +) +(1,12725:9053812,22499146:1765113,452978,115847 +k1,12725:9053812,22499146:3277 +h1,12725:10815648,22499146:0,411205,112570 +) +k1,12725:11062237,22499146:243312 +k1,12725:12496994,22499146:243312 +(1,12725:12496994,22499146:0,452978,115847 +r1,12725:13910395,22499146:1413401,568825,115847 +k1,12725:12496994,22499146:-1413401 +) +(1,12725:12496994,22499146:1413401,452978,115847 +k1,12725:12496994,22499146:3277 +h1,12725:13907118,22499146:0,411205,112570 +) +k1,12725:14153707,22499146:243312 +k1,12725:17571583,22499146:243312 +k1,12725:20102757,22499146:243312 +k1,12725:21365154,22499146:243312 +k1,12725:22834646,22499146:243313 +k1,12725:23693996,22499146:243312 +k1,12725:24956393,22499146:243312 +k1,12725:27509849,22499146:243312 +k1,12725:28439323,22499146:243312 +k1,12725:29038495,22499146:243312 +k1,12725:31338327,22499146:243312 +k1,12726:32051532,22499146:243312 +k1,12726:32583029,22499146:0 +) +(1,12727:6630773,23340634:25952256,513147,134348 +k1,12726:8122506,23340634:205917 +k1,12726:10958382,23340634:205916 +k1,12726:11815727,23340634:205917 +k1,12726:13921532,23340634:205916 +k1,12726:15146534,23340634:205917 +k1,12726:17662595,23340634:205917 +k1,12726:19603904,23340634:205916 +(1,12726:19603904,23340634:0,452978,122846 +r1,12726:21369017,23340634:1765113,575824,122846 +k1,12726:19603904,23340634:-1765113 +) +(1,12726:19603904,23340634:1765113,452978,122846 +k1,12726:19603904,23340634:3277 +h1,12726:21365740,23340634:0,411205,112570 +) +k1,12726:21748604,23340634:205917 +k1,12726:22772410,23340634:205917 +k1,12726:24372277,23340634:205916 +k1,12726:25804373,23340634:205917 +k1,12726:28028143,23340634:205916 +k1,12726:32051532,23340634:205917 +k1,12726:32583029,23340634:0 +) +(1,12727:6630773,24182122:25952256,505283,126483 +k1,12726:10468941,24182122:248106 +k1,12726:11333085,24182122:248106 +k1,12726:14045346,24182122:248107 +k1,12726:14944880,24182122:248106 +k1,12726:18197812,24182122:248106 +k1,12726:22146081,24182122:248106 +k1,12726:23347736,24182122:248106 +k1,12726:24530385,24182122:248106 +k1,12726:25797577,24182122:248107 +(1,12726:25797577,24182122:0,435480,115847 +r1,12726:27562691,24182122:1765114,551327,115847 +k1,12726:25797577,24182122:-1765114 +) +(1,12726:25797577,24182122:1765114,435480,115847 +g1,12726:26504278,24182122 +g1,12726:27207702,24182122 +h1,12726:27559414,24182122:0,411205,112570 +) +k1,12726:27810797,24182122:248106 +k1,12726:28674941,24182122:248106 +(1,12726:28674941,24182122:0,452978,115847 +r1,12726:31143478,24182122:2468537,568825,115847 +k1,12726:28674941,24182122:-2468537 +) +(1,12726:28674941,24182122:2468537,452978,115847 +k1,12726:28674941,24182122:3277 +h1,12726:31140201,24182122:0,411205,112570 +) +k1,12726:31391584,24182122:248106 +k1,12726:32583029,24182122:0 +) +(1,12727:6630773,25023610:25952256,513147,126483 +g1,12726:8263930,25023610 +g1,12726:9555644,25023610 +(1,12726:9555644,25023610:0,452978,122846 +r1,12726:12727605,25023610:3171961,575824,122846 +k1,12726:9555644,25023610:-3171961 +) +(1,12726:9555644,25023610:3171961,452978,122846 +g1,12726:11669192,25023610 +g1,12726:12372616,25023610 +h1,12726:12724328,25023610:0,411205,112570 +) +g1,12726:12926834,25023610 +g1,12726:13777491,25023610 +g1,12726:16590951,25023610 +g1,12726:17809265,25023610 +g1,12726:19080663,25023610 +g1,12726:19939184,25023610 +g1,12726:21157498,25023610 +g1,12726:22922382,25023610 +g1,12726:23734373,25023610 +g1,12726:25136843,25023610 +g1,12726:28743944,25023610 +k1,12727:32583029,25023610:1985071 +g1,12727:32583029,25023610 +) +v1,12729:6630773,26149162:0,393216,0 +(1,12738:6630773,29801440:25952256,4045494,196608 +g1,12738:6630773,29801440 +g1,12738:6630773,29801440 +g1,12738:6434165,29801440 +(1,12738:6434165,29801440:0,4045494,196608 +r1,12738:32779637,29801440:26345472,4242102,196608 +k1,12738:6434165,29801440:-26345472 +) +(1,12738:6434165,29801440:26345472,4045494,196608 +[1,12738:6630773,29801440:25952256,3848886,0 +(1,12731:6630773,26363072:25952256,410518,107478 +(1,12730:6630773,26363072:0,0,0 +g1,12730:6630773,26363072 +g1,12730:6630773,26363072 +g1,12730:6303093,26363072 +(1,12730:6303093,26363072:0,0,0 +) +g1,12730:6630773,26363072 +) +k1,12731:6630773,26363072:0 +g1,12731:10424522,26363072 +g1,12731:11056814,26363072 +g1,12731:13585980,26363072 +g1,12731:15482855,26363072 +g1,12731:16115147,26363072 +g1,12731:18012022,26363072 +g1,12731:18644314,26363072 +g1,12731:19276606,26363072 +g1,12731:20857335,26363072 +g1,12731:22754209,26363072 +g1,12731:23386501,26363072 +g1,12731:27812541,26363072 +h1,12731:28128687,26363072:0,0,0 +k1,12731:32583029,26363072:4454342 +g1,12731:32583029,26363072 +) +(1,12732:6630773,27029250:25952256,404226,107478 +h1,12732:6630773,27029250:0,0,0 +g1,12732:6946919,27029250 +g1,12732:7263065,27029250 +g1,12732:11372959,27029250 +h1,12732:11689105,27029250:0,0,0 +k1,12732:32583029,27029250:20893924 +g1,12732:32583029,27029250 +) +(1,12733:6630773,27695428:25952256,404226,107478 +h1,12733:6630773,27695428:0,0,0 +g1,12733:6946919,27695428 +g1,12733:7263065,27695428 +g1,12733:12321397,27695428 +g1,12733:12953689,27695428 +k1,12733:12953689,27695428:0 +h1,12733:15799000,27695428:0,0,0 +k1,12733:32583028,27695428:16784028 +g1,12733:32583028,27695428 +) +(1,12734:6630773,28361606:25952256,404226,101187 +h1,12734:6630773,28361606:0,0,0 +g1,12734:6946919,28361606 +g1,12734:7263065,28361606 +g1,12734:7579211,28361606 +g1,12734:7895357,28361606 +g1,12734:8211503,28361606 +g1,12734:8527649,28361606 +g1,12734:8843795,28361606 +g1,12734:9159941,28361606 +g1,12734:9476087,28361606 +g1,12734:9792233,28361606 +g1,12734:10108379,28361606 +g1,12734:10424525,28361606 +g1,12734:10740671,28361606 +g1,12734:12637546,28361606 +g1,12734:13269838,28361606 +g1,12734:14218276,28361606 +g1,12734:14850568,28361606 +g1,12734:15482860,28361606 +g1,12734:16431298,28361606 +g1,12734:18328172,28361606 +g1,12734:18960464,28361606 +k1,12734:18960464,28361606:0 +h1,12734:23070358,28361606:0,0,0 +k1,12734:32583029,28361606:9512671 +g1,12734:32583029,28361606 +) +(1,12735:6630773,29027784:25952256,404226,82312 +h1,12735:6630773,29027784:0,0,0 +g1,12735:6946919,29027784 +g1,12735:7263065,29027784 +g1,12735:7579211,29027784 +g1,12735:7895357,29027784 +g1,12735:8211503,29027784 +g1,12735:8527649,29027784 +g1,12735:8843795,29027784 +g1,12735:9159941,29027784 +g1,12735:9476087,29027784 +g1,12735:9792233,29027784 +g1,12735:10108379,29027784 +g1,12735:10424525,29027784 +g1,12735:10740671,29027784 +g1,12735:12637545,29027784 +g1,12735:13269837,29027784 +g1,12735:15799003,29027784 +g1,12735:17379732,29027784 +g1,12735:18012024,29027784 +k1,12735:18012024,29027784:0 +h1,12735:18644316,29027784:0,0,0 +k1,12735:32583029,29027784:13938713 +g1,12735:32583029,29027784 +) +(1,12736:6630773,29693962:25952256,404226,107478 +h1,12736:6630773,29693962:0,0,0 +g1,12736:6946919,29693962 +g1,12736:7263065,29693962 +g1,12736:7579211,29693962 +g1,12736:7895357,29693962 +g1,12736:8211503,29693962 +g1,12736:8527649,29693962 +g1,12736:8843795,29693962 +g1,12736:9159941,29693962 +g1,12736:9476087,29693962 +g1,12736:9792233,29693962 +g1,12736:10108379,29693962 +g1,12736:10424525,29693962 +g1,12736:10740671,29693962 +g1,12736:12637545,29693962 +g1,12736:13269837,29693962 +g1,12736:14218275,29693962 +g1,12736:16115149,29693962 +g1,12736:16747441,29693962 +g1,12736:17695879,29693962 +g1,12736:19592753,29693962 +g1,12736:20225045,29693962 +h1,12736:21173482,29693962:0,0,0 +k1,12736:32583029,29693962:11409547 +g1,12736:32583029,29693962 +) +] +) +g1,12738:32583029,29801440 +g1,12738:6630773,29801440 +g1,12738:6630773,29801440 +g1,12738:32583029,29801440 +g1,12738:32583029,29801440 +) +h1,12738:6630773,29998048:0,0,0 +(1,12742:6630773,31298909:25952256,513147,134348 +h1,12741:6630773,31298909:983040,0,0 +k1,12741:9891290,31298909:159353 +k1,12741:11450492,31298909:159353 +k1,12741:13345238,31298909:159353 +k1,12741:14453553,31298909:159354 +k1,12741:17465033,31298909:159353 +k1,12741:19708431,31298909:159353 +k1,12741:20399281,31298909:159353 +k1,12741:23853129,31298909:159353 +k1,12741:24628520,31298909:159353 +k1,12741:25806959,31298909:159354 +k1,12741:27705638,31298909:159353 +k1,12741:29258942,31298909:159353 +k1,12741:31931601,31298909:159353 +k1,12741:32583029,31298909:0 +) +(1,12742:6630773,32140397:25952256,513147,134348 +k1,12741:8405226,32140397:176685 +k1,12741:9808090,32140397:176685 +k1,12741:10600813,32140397:176685 +k1,12741:12144579,32140397:176685 +k1,12741:12980556,32140397:176685 +k1,12741:15542752,32140397:176685 +k1,12741:17830352,32140397:176685 +k1,12741:18816406,32140397:176684 +k1,12741:19348951,32140397:176685 +k1,12741:22895497,32140397:176685 +k1,12741:24863936,32140397:176685 +k1,12741:25994170,32140397:176685 +k1,12741:27353780,32140397:176685 +k1,12741:28733706,32140397:176685 +k1,12741:31189078,32140397:176685 +k1,12741:32583029,32140397:0 +) +(1,12742:6630773,32981885:25952256,513147,126483 +k1,12741:7202304,32981885:215671 +k1,12741:9542651,32981885:215670 +k1,12741:12593409,32981885:215671 +k1,12741:14694551,32981885:215671 +k1,12741:16376918,32981885:215671 +k1,12741:17058549,32981885:215670 +k1,12741:18340491,32981885:215671 +k1,12741:19910136,32981885:215671 +k1,12741:22276699,32981885:215671 +k1,12741:26855756,32981885:215670 +k1,12741:28355933,32981885:215671 +(1,12741:28355933,32981885:0,452978,122846 +r1,12741:32583029,32981885:4227096,575824,122846 +k1,12741:28355933,32981885:-4227096 +) +(1,12741:28355933,32981885:4227096,452978,122846 +k1,12741:28355933,32981885:3277 +h1,12741:32579752,32981885:0,411205,112570 +) +k1,12741:32583029,32981885:0 +) +(1,12742:6630773,33823373:25952256,505283,134348 +k1,12741:9359733,33823373:175677 +k1,12741:10681636,33823373:175678 +k1,12741:11213173,33823373:175677 +k1,12741:14267847,33823373:175677 +k1,12741:16469243,33823373:175678 +k1,12741:19652367,33823373:175677 +k1,12741:21019489,33823373:175677 +k1,12741:22479672,33823373:175677 +k1,12741:23011210,33823373:175678 +k1,12741:24752542,33823373:175677 +k1,12741:26032501,33823373:175677 +k1,12741:26955945,33823373:175678 +k1,12741:28150707,33823373:175677 +k1,12741:29701985,33823373:175677 +k1,12741:31435454,33823373:175678 +k1,12741:32227169,33823373:175677 +k1,12741:32583029,33823373:0 +) +(1,12742:6630773,34664861:25952256,513147,134348 +k1,12741:8828849,34664861:172358 +k1,12741:9467168,34664861:172358 +k1,12741:12169215,34664861:172357 +k1,12741:13538260,34664861:172358 +k1,12741:16376623,34664861:172358 +k1,12741:17208273,34664861:172358 +k1,12741:20051877,34664861:172357 +k1,12741:22120192,34664861:172358 +k1,12741:23686501,34664861:172358 +k1,12741:24214719,34664861:172358 +k1,12741:26260095,34664861:172357 +k1,12741:27532147,34664861:172358 +k1,12741:28355933,34664861:172358 +(1,12741:28355933,34664861:0,452978,122846 +r1,12741:32583029,34664861:4227096,575824,122846 +k1,12741:28355933,34664861:-4227096 +) +(1,12741:28355933,34664861:4227096,452978,122846 +k1,12741:28355933,34664861:3277 +h1,12741:32579752,34664861:0,411205,112570 +) +k1,12741:32583029,34664861:0 +) +(1,12742:6630773,35506349:25952256,513147,134348 +g1,12741:7591530,35506349 +g1,12741:10218213,35506349 +g1,12741:10773302,35506349 +(1,12741:10773302,35506349:0,452978,115847 +r1,12741:12890127,35506349:2116825,568825,115847 +k1,12741:10773302,35506349:-2116825 +) +(1,12741:10773302,35506349:2116825,452978,115847 +k1,12741:10773302,35506349:3277 +h1,12741:12886850,35506349:0,411205,112570 +) +g1,12741:13089356,35506349 +g1,12741:14682536,35506349 +g1,12741:17553012,35506349 +g1,12741:19286439,35506349 +g1,12741:20171830,35506349 +g1,12741:21141762,35506349 +g1,12741:24413319,35506349 +g1,12741:25560199,35506349 +(1,12741:25560199,35506349:0,452978,115847 +r1,12741:26973600,35506349:1413401,568825,115847 +k1,12741:25560199,35506349:-1413401 +) +(1,12741:25560199,35506349:1413401,452978,115847 +k1,12741:25560199,35506349:3277 +h1,12741:26970323,35506349:0,411205,112570 +) +g1,12741:27172829,35506349 +g1,12741:27903555,35506349 +g1,12741:29388600,35506349 +k1,12742:32583029,35506349:390799 +g1,12742:32583029,35506349 +) +v1,12744:6630773,36631901:0,393216,0 +(1,12755:6630773,41578786:25952256,5340101,196608 +g1,12755:6630773,41578786 +g1,12755:6630773,41578786 +g1,12755:6434165,41578786 +(1,12755:6434165,41578786:0,5340101,196608 +r1,12755:32779637,41578786:26345472,5536709,196608 +k1,12755:6434165,41578786:-26345472 +) +(1,12755:6434165,41578786:26345472,5340101,196608 +[1,12755:6630773,41578786:25952256,5143493,0 +(1,12746:6630773,36839519:25952256,404226,101187 +(1,12745:6630773,36839519:0,0,0 +g1,12745:6630773,36839519 +g1,12745:6630773,36839519 +g1,12745:6303093,36839519 +(1,12745:6303093,36839519:0,0,0 +) +g1,12745:6630773,36839519 +) +g1,12746:8527647,36839519 +g1,12746:9476085,36839519 +g1,12746:13585980,36839519 +g1,12746:14218272,36839519 +k1,12746:14218272,36839519:0 +h1,12746:14850564,36839519:0,0,0 +k1,12746:32583028,36839519:17732464 +g1,12746:32583028,36839519 +) +(1,12747:6630773,37505697:25952256,404226,82312 +h1,12747:6630773,37505697:0,0,0 +g1,12747:6946919,37505697 +g1,12747:7263065,37505697 +g1,12747:7579211,37505697 +g1,12747:7895357,37505697 +g1,12747:8211503,37505697 +g1,12747:8527649,37505697 +g1,12747:8843795,37505697 +g1,12747:9159941,37505697 +g1,12747:9476087,37505697 +g1,12747:9792233,37505697 +g1,12747:10108379,37505697 +g1,12747:10424525,37505697 +g1,12747:10740671,37505697 +g1,12747:11056817,37505697 +g1,12747:11372963,37505697 +g1,12747:11689109,37505697 +g1,12747:13585984,37505697 +g1,12747:14218276,37505697 +k1,12747:14218276,37505697:0 +h1,12747:15482860,37505697:0,0,0 +k1,12747:32583028,37505697:17100168 +g1,12747:32583028,37505697 +) +(1,12748:6630773,38171875:25952256,404226,82312 +h1,12748:6630773,38171875:0,0,0 +g1,12748:6946919,38171875 +g1,12748:7263065,38171875 +g1,12748:7579211,38171875 +g1,12748:7895357,38171875 +g1,12748:8211503,38171875 +g1,12748:8527649,38171875 +g1,12748:8843795,38171875 +g1,12748:9159941,38171875 +g1,12748:9476087,38171875 +g1,12748:9792233,38171875 +g1,12748:10108379,38171875 +g1,12748:10424525,38171875 +g1,12748:10740671,38171875 +g1,12748:11056817,38171875 +g1,12748:11372963,38171875 +g1,12748:11689109,38171875 +g1,12748:13585984,38171875 +g1,12748:14218276,38171875 +k1,12748:14218276,38171875:0 +h1,12748:16747444,38171875:0,0,0 +k1,12748:32583029,38171875:15835585 +g1,12748:32583029,38171875 +) +(1,12749:6630773,38838053:25952256,404226,76021 +h1,12749:6630773,38838053:0,0,0 +g1,12749:6946919,38838053 +g1,12749:7263065,38838053 +g1,12749:7579211,38838053 +g1,12749:7895357,38838053 +g1,12749:8211503,38838053 +g1,12749:8527649,38838053 +g1,12749:8843795,38838053 +g1,12749:9159941,38838053 +g1,12749:9476087,38838053 +g1,12749:9792233,38838053 +g1,12749:10108379,38838053 +g1,12749:10424525,38838053 +g1,12749:10740671,38838053 +g1,12749:11056817,38838053 +g1,12749:11372963,38838053 +g1,12749:11689109,38838053 +g1,12749:13585984,38838053 +g1,12749:14218276,38838053 +h1,12749:16747444,38838053:0,0,0 +k1,12749:32583029,38838053:15835585 +g1,12749:32583029,38838053 +) +(1,12750:6630773,39504231:25952256,404226,101187 +h1,12750:6630773,39504231:0,0,0 +g1,12750:9159939,39504231 +g1,12750:10108377,39504231 +g1,12750:12953689,39504231 +g1,12750:13585981,39504231 +g1,12750:14534419,39504231 +g1,12750:15166711,39504231 +g1,12750:15799003,39504231 +g1,12750:16747441,39504231 +g1,12750:20541189,39504231 +g1,12750:21173481,39504231 +k1,12750:21173481,39504231:0 +h1,12750:24967229,39504231:0,0,0 +k1,12750:32583029,39504231:7615800 +g1,12750:32583029,39504231 +) +(1,12751:6630773,40170409:25952256,404226,107478 +h1,12751:6630773,40170409:0,0,0 +g1,12751:11689104,40170409 +g1,12751:14218270,40170409 +g1,12751:14850562,40170409 +g1,12751:17063582,40170409 +g1,12751:18012020,40170409 +g1,12751:19908894,40170409 +g1,12751:20541186,40170409 +g1,12751:24967226,40170409 +h1,12751:25283372,40170409:0,0,0 +k1,12751:32583029,40170409:7299657 +g1,12751:32583029,40170409 +) +(1,12752:6630773,40836587:25952256,404226,107478 +h1,12752:6630773,40836587:0,0,0 +g1,12752:6946919,40836587 +g1,12752:7263065,40836587 +g1,12752:14534416,40836587 +g1,12752:15166708,40836587 +g1,12752:17063583,40836587 +g1,12752:18644312,40836587 +g1,12752:19276604,40836587 +g1,12752:20225042,40836587 +g1,12752:22121916,40836587 +g1,12752:22754208,40836587 +g1,12752:24651083,40836587 +h1,12752:24967229,40836587:0,0,0 +k1,12752:32583029,40836587:7615800 +g1,12752:32583029,40836587 +) +(1,12753:6630773,41502765:25952256,404226,76021 +h1,12753:6630773,41502765:0,0,0 +g1,12753:6946919,41502765 +g1,12753:7263065,41502765 +k1,12753:7263065,41502765:0 +h1,12753:11056813,41502765:0,0,0 +k1,12753:32583029,41502765:21526216 +g1,12753:32583029,41502765 +) +] +) +g1,12755:32583029,41578786 +g1,12755:6630773,41578786 +g1,12755:6630773,41578786 +g1,12755:32583029,41578786 +g1,12755:32583029,41578786 +) +h1,12755:6630773,41775394:0,0,0 +v1,12759:6630773,43535630:0,393216,0 +(1,12760:6630773,45116945:25952256,1974531,589824 +g1,12760:6630773,45116945 +(1,12760:6630773,45116945:25952256,1974531,589824 +(1,12760:6630773,45706769:25952256,2564355,0 +[1,12760:6630773,45706769:25952256,2564355,0 +(1,12760:6630773,45706769:25952256,2538141,0 +r1,12760:6656987,45706769:26214,2538141,0 +[1,12760:6656987,45706769:25899828,2538141,0 +(1,12760:6656987,45116945:25899828,1358493,0 +[1,12760:7246811,45116945:24720180,1358493,0 +(1,12760:7246811,44920337:24720180,1161885,196608 +(1,12759:7246811,44920337:0,1161885,196608 +r1,12760:8794447,44920337:1547636,1358493,196608 +k1,12759:7246811,44920337:-1547636 +) +(1,12759:7246811,44920337:1547636,1161885,196608 +) +k1,12759:9042862,44920337:248415 +k1,12759:10487964,44920337:248415 +k1,12759:13743826,44920337:248415 +(1,12759:13743826,44920337:0,452978,122846 +r1,12760:17970922,44920337:4227096,575824,122846 +k1,12759:13743826,44920337:-4227096 +) +(1,12759:13743826,44920337:4227096,452978,122846 +k1,12759:13743826,44920337:3277 +h1,12759:17967645,44920337:0,411205,112570 +) +k1,12759:18219337,44920337:248415 +k1,12759:19890539,44920337:248415 +k1,12759:23164751,44920337:248415 +k1,12759:24980787,44920337:248415 +k1,12759:27809354,44920337:248415 +k1,12759:31315563,44920337:248415 +k1,12759:31966991,44920337:0 +) +] +) +] +r1,12760:32583029,45706769:26214,2538141,0 +) +] +) +) +g1,12760:32583029,45116945 +) +] +(1,12760:32583029,45706769:0,0,0 +g1,12760:32583029,45706769 +) +) +] +(1,12760:6630773,47279633:25952256,0,0 +h1,12760:6630773,47279633:25952256,0,0 +) +] +h1,12760:4262630,4025873:0,0,0 ] -!28092 -}243 -Input:1757:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1758:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1759:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1760:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1761:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1762:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1763:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{244 -[1,12788:4262630,47279633:28320399,43253760,0 -(1,12788:4262630,4025873:0,0,0 -[1,12788:-473657,4025873:25952256,0,0 -(1,12788:-473657,-710414:25952256,0,0 -h1,12788:-473657,-710414:0,0,0 -(1,12788:-473657,-710414:0,0,0 -(1,12788:-473657,-710414:0,0,0 -g1,12788:-473657,-710414 -(1,12788:-473657,-710414:65781,0,65781 -g1,12788:-407876,-710414 -[1,12788:-407876,-644633:0,0,0 +!28090 +}244 +Input:1753:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1754:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1755:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1756:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1757:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1758:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1759:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 +{245 +[1,12807:4262630,47279633:28320399,43253760,0 +(1,12807:4262630,4025873:0,0,0 +[1,12807:-473657,4025873:25952256,0,0 +(1,12807:-473657,-710414:25952256,0,0 +h1,12807:-473657,-710414:0,0,0 +(1,12807:-473657,-710414:0,0,0 +(1,12807:-473657,-710414:0,0,0 +g1,12807:-473657,-710414 +(1,12807:-473657,-710414:65781,0,65781 +g1,12807:-407876,-710414 +[1,12807:-407876,-644633:0,0,0 ] ) -k1,12788:-473657,-710414:-65781 +k1,12807:-473657,-710414:-65781 ) ) -k1,12788:25478599,-710414:25952256 -g1,12788:25478599,-710414 +k1,12807:25478599,-710414:25952256 +g1,12807:25478599,-710414 ) ] ) -[1,12788:6630773,47279633:25952256,43253760,0 -[1,12788:6630773,4812305:25952256,786432,0 -(1,12788:6630773,4812305:25952256,485622,11795 -(1,12788:6630773,4812305:25952256,485622,11795 -g1,12788:3078558,4812305 -[1,12788:3078558,4812305:0,0,0 -(1,12788:3078558,2439708:0,1703936,0 -k1,12788:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12788:2537886,2439708:1179648,16384,0 +[1,12807:6630773,47279633:25952256,43253760,0 +[1,12807:6630773,4812305:25952256,786432,0 +(1,12807:6630773,4812305:25952256,513147,134348 +(1,12807:6630773,4812305:25952256,513147,134348 +g1,12807:3078558,4812305 +[1,12807:3078558,4812305:0,0,0 +(1,12807:3078558,2439708:0,1703936,0 +k1,12807:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12807:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12788:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12807:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12788:3078558,4812305:0,0,0 -(1,12788:3078558,2439708:0,1703936,0 -g1,12788:29030814,2439708 -g1,12788:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12788:36151628,1915420:16384,1179648,0 +[1,12807:3078558,4812305:0,0,0 +(1,12807:3078558,2439708:0,1703936,0 +g1,12807:29030814,2439708 +g1,12807:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12807:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12788:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12807:37855564,2439708:1179648,16384,0 ) ) -k1,12788:3078556,2439708:-34777008 +k1,12807:3078556,2439708:-34777008 ) ] -[1,12788:3078558,4812305:0,0,0 -(1,12788:3078558,49800853:0,16384,2228224 -k1,12788:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12788:2537886,49800853:1179648,16384,0 +[1,12807:3078558,4812305:0,0,0 +(1,12807:3078558,49800853:0,16384,2228224 +k1,12807:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12807:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12788:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12807:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12788:3078558,4812305:0,0,0 -(1,12788:3078558,49800853:0,16384,2228224 -g1,12788:29030814,49800853 -g1,12788:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12788:36151628,51504789:16384,1179648,0 +[1,12807:3078558,4812305:0,0,0 +(1,12807:3078558,49800853:0,16384,2228224 +g1,12807:29030814,49800853 +g1,12807:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12807:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12788:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12807:37855564,49800853:1179648,16384,0 ) ) -k1,12788:3078556,49800853:-34777008 +k1,12807:3078556,49800853:-34777008 ) ] -g1,12788:6630773,4812305 -g1,12788:6630773,4812305 -g1,12788:10347975,4812305 -k1,12788:31387651,4812305:21039676 +g1,12807:6630773,4812305 +k1,12807:25712890,4812305:17886740 +g1,12807:29057847,4812305 +g1,12807:29873114,4812305 ) ) ] -[1,12788:6630773,45706769:25952256,40108032,0 -(1,12788:6630773,45706769:25952256,40108032,0 -(1,12788:6630773,45706769:0,0,0 -g1,12788:6630773,45706769 +[1,12807:6630773,45706769:25952256,40108032,0 +(1,12807:6630773,45706769:25952256,40108032,0 +(1,12807:6630773,45706769:0,0,0 +g1,12807:6630773,45706769 ) -[1,12788:6630773,45706769:25952256,40108032,0 -v1,12741:6630773,6254097:0,393216,0 -(1,12741:6630773,7939688:25952256,2078807,616038 -g1,12741:6630773,7939688 -(1,12741:6630773,7939688:25952256,2078807,616038 -(1,12741:6630773,8555726:25952256,2694845,0 -[1,12741:6630773,8555726:25952256,2694845,0 -(1,12741:6630773,8529512:25952256,2668631,0 -r1,12741:6656987,8529512:26214,2668631,0 -[1,12741:6656987,8529512:25899828,2668631,0 -(1,12741:6656987,7939688:25899828,1488983,0 -[1,12741:7246811,7939688:24720180,1488983,0 -(1,12741:7246811,6963852:24720180,513147,134348 -k1,12740:9177502,6963852:288359 -k1,12740:9821720,6963852:288358 -k1,12740:13059854,6963852:288359 -k1,12740:15307738,6963852:288358 -k1,12740:16543748,6963852:288359 -k1,12740:17851191,6963852:288358 -k1,12740:19878876,6963852:288359 -k1,12740:21363921,6963852:288358 -k1,12740:22744765,6963852:288359 -k1,12740:23692415,6963852:288358 -k1,12740:25546429,6963852:288359 -k1,12740:28151485,6963852:288358 -k1,12740:29647017,6963852:288359 -k1,12740:31001646,6963852:288358 -k1,12740:31966991,6963852:0 -) -(1,12741:7246811,7805340:24720180,513147,134348 -g1,12740:10740535,7805340 -g1,12740:11701292,7805340 -g1,12740:13103762,7805340 -g1,12740:16292743,7805340 -g1,12740:17104734,7805340 -g1,12740:18323048,7805340 -g1,12740:19947685,7805340 -g1,12740:20806206,7805340 -k1,12741:31966991,7805340:8729399 -g1,12741:31966991,7805340 -) -] -) -] -r1,12741:32583029,8529512:26214,2668631,0 -) -] -) -) -g1,12741:32583029,7939688 -) -h1,12741:6630773,8555726:0,0,0 -(1,12746:6630773,9843733:25952256,513147,134348 -h1,12745:6630773,9843733:983040,0,0 -k1,12745:10889273,9843733:180195 -(1,12745:10889273,9843733:0,452978,122846 -r1,12745:14764657,9843733:3875384,575824,122846 -k1,12745:10889273,9843733:-3875384 -) -(1,12745:10889273,9843733:3875384,452978,122846 -k1,12745:10889273,9843733:3277 -h1,12745:14761380,9843733:0,411205,112570 -) -k1,12745:14944851,9843733:180194 -k1,12745:17051804,9843733:180195 -k1,12745:19015234,9843733:180195 -k1,12745:20341653,9843733:180194 -(1,12745:20341653,9843733:0,452978,122846 -r1,12745:24568749,9843733:4227096,575824,122846 -k1,12745:20341653,9843733:-4227096 -) -(1,12745:20341653,9843733:4227096,452978,122846 -k1,12745:20341653,9843733:3277 -h1,12745:24565472,9843733:0,411205,112570 -) -k1,12745:24922614,9843733:180195 -k1,12745:26174978,9843733:180195 -k1,12745:28682355,9843733:180194 -k1,12745:29521842,9843733:180195 -k1,12745:32583029,9843733:0 -) -(1,12746:6630773,10685221:25952256,513147,126483 -k1,12745:7136389,10685221:149756 -k1,12745:8279670,10685221:149755 -k1,12745:9088718,10685221:149756 -k1,12745:10627836,10685221:149755 -k1,12745:12984189,10685221:149756 -k1,12745:13816830,10685221:149756 -k1,12745:16108302,10685221:149755 -k1,12745:16909486,10685221:149756 -k1,12745:17807007,10685221:149755 -k1,12745:20542158,10685221:149756 -k1,12745:21343341,10685221:149755 -k1,12745:22512182,10685221:149756 -(1,12745:22512182,10685221:0,452978,115847 -r1,12745:24277295,10685221:1765113,568825,115847 -k1,12745:22512182,10685221:-1765113 -) -(1,12745:22512182,10685221:1765113,452978,115847 -k1,12745:22512182,10685221:3277 -h1,12745:24274018,10685221:0,411205,112570 -) -k1,12745:24427051,10685221:149756 -k1,12745:27925040,10685221:149755 -k1,12745:28532893,10685221:149756 -k1,12745:31083887,10685221:149755 -k1,12745:31589503,10685221:149756 -k1,12745:32583029,10685221:0 -) -(1,12746:6630773,11526709:25952256,513147,134348 -k1,12745:7481241,11526709:191176 -k1,12745:10028435,11526709:191175 -k1,12745:12716533,11526709:191176 -k1,12745:13567000,11526709:191175 -k1,12745:15313345,11526709:191176 -(1,12745:15313345,11526709:0,414482,122846 -r1,12745:16023323,11526709:709978,537328,122846 -k1,12745:15313345,11526709:-709978 -) -(1,12745:15313345,11526709:709978,414482,122846 -k1,12745:15313345,11526709:3277 -h1,12745:16020046,11526709:0,411205,112570 -) -k1,12745:16595262,11526709:191175 -k1,12745:18167282,11526709:191176 -k1,12745:20370412,11526709:191175 -k1,12745:22749180,11526709:191176 -k1,12745:23626517,11526709:191175 -k1,12745:24588396,11526709:191176 -k1,12745:26330153,11526709:191175 -k1,12745:27172757,11526709:191176 -k1,12745:27719792,11526709:191175 -k1,12745:30110356,11526709:191176 -k1,12745:32583029,11526709:0 -) -(1,12746:6630773,12368197:25952256,513147,134348 -k1,12745:9006409,12368197:176248 -k1,12745:9810492,12368197:176248 -k1,12745:11005825,12368197:176248 -k1,12745:12937783,12368197:176248 -k1,12745:14812069,12368197:176248 -k1,12745:16595915,12368197:176248 -k1,12745:18276214,12368197:176248 -k1,12745:20058750,12368197:176249 -k1,12745:22589707,12368197:176248 -k1,12745:24159906,12368197:176248 -k1,12745:25941786,12368197:176248 -k1,12745:27126633,12368197:176248 -k1,12745:28112251,12368197:176248 -k1,12745:30295211,12368197:176248 -k1,12745:31490544,12368197:176248 -k1,12745:32583029,12368197:0 -) -(1,12746:6630773,13209685:25952256,513147,126483 -k1,12745:7552763,13209685:262698 -k1,12745:9366044,13209685:262699 -k1,12745:11236340,13209685:262698 -k1,12745:12706212,13209685:262699 -k1,12745:14619107,13209685:262698 -k1,12745:17620556,13209685:262699 -k1,12745:19325701,13209685:262698 -k1,12745:22916318,13209685:262699 -k1,12745:24741394,13209685:262698 -k1,12745:26611691,13209685:262699 -k1,12745:27978671,13209685:262698 -k1,12745:28989136,13209685:262699 -k1,12745:30605808,13209685:262698 -k1,12745:32583029,13209685:0 -) -(1,12746:6630773,14051173:25952256,513147,134348 -k1,12745:7824032,14051173:245608 -k1,12745:11687884,14051173:245609 -k1,12745:12742862,14051173:245608 -k1,12745:14640634,14051173:245609 -k1,12745:15545534,14051173:245608 -k1,12745:16147003,14051173:245609 -k1,12745:17984481,14051173:245608 -k1,12745:19507387,14051173:245609 -k1,12745:21671889,14051173:245608 -k1,12745:25989250,14051173:245609 -k1,12745:27226418,14051173:245608 -k1,12745:30198325,14051173:245609 -k1,12745:31635378,14051173:245608 -k1,12745:32583029,14051173:0 -) -(1,12746:6630773,14892661:25952256,505283,134348 -k1,12745:10074690,14892661:158597 -k1,12745:13741429,14892661:158597 -k1,12745:15754695,14892661:158597 -k1,12745:16722662,14892661:158597 -k1,12745:17900344,14892661:158597 -k1,12745:22130693,14892661:158597 -k1,12745:24364815,14892661:158597 -k1,12745:25139450,14892661:158597 -k1,12745:26317132,14892661:158597 -k1,12745:28067599,14892661:158597 -k1,12745:29677163,14892661:158597 -k1,12745:31032447,14892661:158597 -k1,12745:32583029,14892661:0 -) -(1,12746:6630773,15734149:25952256,513147,126483 -k1,12745:8450909,15734149:212538 -k1,12745:9655007,15734149:212538 -k1,12745:11985013,15734149:212538 -k1,12745:12813590,15734149:212539 -k1,12745:16143676,15734149:212538 -k1,12745:18241685,15734149:212538 -k1,12745:20742085,15734149:212538 -k1,12745:21973708,15734149:212538 -k1,12745:25861505,15734149:212538 -k1,12745:26733336,15734149:212539 -k1,12745:27964959,15734149:212538 -k1,12745:29728079,15734149:212538 -k1,12745:31391584,15734149:212538 -k1,12745:32583029,15734149:0 -) -(1,12746:6630773,16575637:25952256,513147,122846 -k1,12745:9994713,16575637:189376 -(1,12745:9994713,16575637:0,452978,122846 -r1,12745:13166673,16575637:3171960,575824,122846 -k1,12745:9994713,16575637:-3171960 -) -(1,12745:9994713,16575637:3171960,452978,122846 -k1,12745:9994713,16575637:3277 -h1,12745:13163396,16575637:0,411205,112570 -) -k1,12745:13356049,16575637:189376 -k1,12745:14736870,16575637:189376 -(1,12745:14736870,16575637:0,452978,115847 -r1,12745:17557119,16575637:2820249,568825,115847 -k1,12745:14736870,16575637:-2820249 -) -(1,12745:14736870,16575637:2820249,452978,115847 -k1,12745:14736870,16575637:3277 -h1,12745:17553842,16575637:0,411205,112570 -) -k1,12745:17746495,16575637:189376 -k1,12745:20223733,16575637:189376 -k1,12745:21921748,16575637:189376 -k1,12745:25759513,16575637:189376 -k1,12745:28544770,16575637:189376 -k1,12745:29393438,16575637:189376 -k1,12745:30715276,16575637:189376 -k1,12745:31563944,16575637:189376 -k1,12745:32583029,16575637:0 -) -(1,12746:6630773,17417125:25952256,513147,134348 -k1,12745:8922052,17417125:281945 -k1,12745:10395442,17417125:281945 -k1,12745:12492079,17417125:281945 -k1,12745:13433316,17417125:281945 -k1,12745:14734346,17417125:281945 -k1,12745:17540738,17417125:281945 -k1,12745:19170104,17417125:281946 -k1,12745:20111341,17417125:281945 -k1,12745:21412371,17417125:281945 -k1,12745:23286186,17417125:281945 -k1,12745:25019098,17417125:281945 -k1,12745:27795343,17417125:281945 -k1,12745:29181570,17417125:281945 -k1,12745:30211281,17417125:281945 -k1,12745:32583029,17417125:0 -) -(1,12746:6630773,18258613:25952256,505283,126483 -g1,12745:10098938,18258613 -g1,12745:10949595,18258613 -g1,12745:12167909,18258613 -g1,12745:13959008,18258613 -g1,12745:15349682,18258613 -g1,12745:17099493,18258613 -k1,12746:32583029,18258613:13702267 -g1,12746:32583029,18258613 -) -(1,12748:6630773,19100101:25952256,513147,126483 -h1,12747:6630773,19100101:983040,0,0 -k1,12747:8529250,19100101:287602 -k1,12747:9835937,19100101:287602 -k1,12747:11429672,19100101:287602 -k1,12747:14378692,19100101:287603 -k1,12747:15325586,19100101:287602 -k1,12747:17163770,19100101:287602 -k1,12747:19232641,19100101:287602 -k1,12747:20388595,19100101:287602 -k1,12747:23013866,19100101:287602 -k1,12747:24458179,19100101:287603 -k1,12747:25405073,19100101:287602 -k1,12747:26711760,19100101:287602 -k1,12747:30507504,19100101:287602 -k1,12747:32583029,19100101:0 -) -(1,12748:6630773,19941589:25952256,513147,134348 -g1,12747:8685326,19941589 -g1,12747:9570717,19941589 -g1,12747:10540649,19941589 -g1,12747:12290460,19941589 -g1,12747:14229015,19941589 -g1,12747:15381793,19941589 -g1,12747:16887155,19941589 -g1,12747:19015764,19941589 -g1,12747:19570853,19941589 -g1,12747:21581497,19941589 -g1,12747:25142723,19941589 -g1,12747:26361037,19941589 -g1,12747:27837563,19941589 -g1,12747:28688220,19941589 -g1,12747:29635215,19941589 -k1,12748:32583029,19941589:1223562 -g1,12748:32583029,19941589 -) -v1,12750:6630773,21054286:0,393216,0 -(1,12763:6630773,27342964:25952256,6681894,196608 -g1,12763:6630773,27342964 -g1,12763:6630773,27342964 -g1,12763:6434165,27342964 -(1,12763:6434165,27342964:0,6681894,196608 -r1,12763:32779637,27342964:26345472,6878502,196608 -k1,12763:6434165,27342964:-26345472 -) -(1,12763:6434165,27342964:26345472,6681894,196608 -[1,12763:6630773,27342964:25952256,6485286,0 -(1,12752:6630773,21246175:25952256,388497,9436 -(1,12751:6630773,21246175:0,0,0 -g1,12751:6630773,21246175 -g1,12751:6630773,21246175 -g1,12751:6303093,21246175 -(1,12751:6303093,21246175:0,0,0 -) -g1,12751:6630773,21246175 -) -g1,12752:8843793,21246175 -k1,12752:8843793,21246175:0 -h1,12752:10108375,21246175:0,0,0 -k1,12752:32583029,21246175:22474654 -g1,12752:32583029,21246175 -) -(1,12753:6630773,21912353:25952256,404226,107478 -h1,12753:6630773,21912353:0,0,0 -g1,12753:6946919,21912353 -g1,12753:7263065,21912353 -g1,12753:11056813,21912353 -g1,12753:12637542,21912353 -k1,12753:12637542,21912353:0 -h1,12753:13902124,21912353:0,0,0 -k1,12753:32583028,21912353:18680904 -g1,12753:32583028,21912353 -) -(1,12754:6630773,22578531:25952256,404226,107478 -h1,12754:6630773,22578531:0,0,0 -g1,12754:6946919,22578531 -g1,12754:7263065,22578531 -g1,12754:11372959,22578531 -g1,12754:14218270,22578531 -g1,12754:14850562,22578531 -g1,12754:18328165,22578531 -k1,12754:18328165,22578531:0 -h1,12754:19592747,22578531:0,0,0 -k1,12754:32583029,22578531:12990282 -g1,12754:32583029,22578531 -) -(1,12755:6630773,23244709:25952256,404226,107478 -h1,12755:6630773,23244709:0,0,0 -g1,12755:6946919,23244709 -g1,12755:7263065,23244709 -g1,12755:11056814,23244709 -g1,12755:11689106,23244709 -k1,12755:11689106,23244709:0 -h1,12755:12321398,23244709:0,0,0 -k1,12755:32583030,23244709:20261632 -g1,12755:32583030,23244709 -) -(1,12756:6630773,23910887:25952256,410518,107478 -h1,12756:6630773,23910887:0,0,0 -g1,12756:6946919,23910887 -g1,12756:7263065,23910887 -g1,12756:7579211,23910887 -g1,12756:7895357,23910887 -g1,12756:8211503,23910887 -g1,12756:8527649,23910887 -g1,12756:8843795,23910887 -g1,12756:9159941,23910887 -g1,12756:9476087,23910887 -g1,12756:14850564,23910887 -g1,12756:18012021,23910887 -g1,12756:19592750,23910887 -g1,12756:20225042,23910887 -g1,12756:24651082,23910887 -h1,12756:24967228,23910887:0,0,0 -k1,12756:32583029,23910887:7615801 -g1,12756:32583029,23910887 -) -(1,12757:6630773,24577065:25952256,410518,107478 -h1,12757:6630773,24577065:0,0,0 -g1,12757:6946919,24577065 -g1,12757:7263065,24577065 -g1,12757:15482853,24577065 -g1,12757:16115145,24577065 -g1,12757:18328165,24577065 -h1,12757:18644311,24577065:0,0,0 -k1,12757:32583029,24577065:13938718 -g1,12757:32583029,24577065 -) -(1,12758:6630773,25243243:25952256,404226,101187 -h1,12758:6630773,25243243:0,0,0 -g1,12758:6946919,25243243 -g1,12758:7263065,25243243 -g1,12758:14850562,25243243 -g1,12758:15482854,25243243 -g1,12758:17379729,25243243 -h1,12758:17695875,25243243:0,0,0 -k1,12758:32583029,25243243:14887154 -g1,12758:32583029,25243243 -) -(1,12759:6630773,25909421:25952256,404226,107478 -h1,12759:6630773,25909421:0,0,0 -g1,12759:6946919,25909421 -g1,12759:7263065,25909421 -g1,12759:7579211,25909421 -g1,12759:7895357,25909421 -g1,12759:11372959,25909421 -h1,12759:11689105,25909421:0,0,0 -k1,12759:32583029,25909421:20893924 -g1,12759:32583029,25909421 -) -(1,12760:6630773,26575599:25952256,404226,101187 -h1,12760:6630773,26575599:0,0,0 -g1,12760:6946919,26575599 -g1,12760:7263065,26575599 -g1,12760:7579211,26575599 -g1,12760:7895357,26575599 -g1,12760:11689106,26575599 -g1,12760:12637544,26575599 -h1,12760:14850564,26575599:0,0,0 -k1,12760:32583028,26575599:17732464 -g1,12760:32583028,26575599 -) -(1,12761:6630773,27241777:25952256,404226,101187 -h1,12761:6630773,27241777:0,0,0 -g1,12761:9159939,27241777 -g1,12761:10108377,27241777 -g1,12761:12953689,27241777 -g1,12761:13585981,27241777 -g1,12761:15166710,27241777 -g1,12761:15799002,27241777 -g1,12761:16431294,27241777 -g1,12761:17695877,27241777 -g1,12761:21173480,27241777 -g1,12761:21805772,27241777 -k1,12761:21805772,27241777:0 -h1,12761:26231812,27241777:0,0,0 -k1,12761:32583029,27241777:6351217 -g1,12761:32583029,27241777 -) -] -) -g1,12763:32583029,27342964 -g1,12763:6630773,27342964 -g1,12763:6630773,27342964 -g1,12763:32583029,27342964 -g1,12763:32583029,27342964 -) -h1,12763:6630773,27539572:0,0,0 -v1,12767:6630773,29098789:0,393216,0 -(1,12777:6630773,33410953:25952256,4705380,196608 -g1,12777:6630773,33410953 -g1,12777:6630773,33410953 -g1,12777:6434165,33410953 -(1,12777:6434165,33410953:0,4705380,196608 -r1,12777:32779637,33410953:26345472,4901988,196608 -k1,12777:6434165,33410953:-26345472 -) -(1,12777:6434165,33410953:26345472,4705380,196608 -[1,12777:6630773,33410953:25952256,4508772,0 -(1,12769:6630773,29306407:25952256,404226,107478 -(1,12768:6630773,29306407:0,0,0 -g1,12768:6630773,29306407 -g1,12768:6630773,29306407 -g1,12768:6303093,29306407 -(1,12768:6303093,29306407:0,0,0 -) -g1,12768:6630773,29306407 -) -k1,12769:6630773,29306407:0 -g1,12769:10424522,29306407 -g1,12769:11056814,29306407 -g1,12769:13585980,29306407 -g1,12769:15482855,29306407 -g1,12769:16115147,29306407 -g1,12769:18012022,29306407 -g1,12769:18644314,29306407 -g1,12769:19276606,29306407 -k1,12769:19276606,29306407:0 -h1,12769:20541189,29306407:0,0,0 -k1,12769:32583029,29306407:12041840 -g1,12769:32583029,29306407 -) -(1,12770:6630773,29972585:25952256,410518,101187 -h1,12770:6630773,29972585:0,0,0 -g1,12770:6946919,29972585 -g1,12770:7263065,29972585 -g1,12770:7579211,29972585 -g1,12770:7895357,29972585 -g1,12770:8211503,29972585 -g1,12770:8527649,29972585 -g1,12770:8843795,29972585 -g1,12770:9159941,29972585 -g1,12770:9476087,29972585 -g1,12770:9792233,29972585 -g1,12770:10108379,29972585 -g1,12770:10424525,29972585 -g1,12770:10740671,29972585 -g1,12770:11056817,29972585 -g1,12770:11372963,29972585 -g1,12770:11689109,29972585 -g1,12770:12005255,29972585 -g1,12770:12321401,29972585 -g1,12770:12637547,29972585 -g1,12770:12953693,29972585 -g1,12770:13269839,29972585 -g1,12770:13585985,29972585 -g1,12770:13902131,29972585 -g1,12770:14218277,29972585 -g1,12770:14534423,29972585 -g1,12770:14850569,29972585 -g1,12770:16747443,29972585 -g1,12770:17379735,29972585 -g1,12770:21805775,29972585 -h1,12770:22121921,29972585:0,0,0 -k1,12770:32583029,29972585:10461108 -g1,12770:32583029,29972585 -) -(1,12771:6630773,30638763:25952256,404226,107478 -h1,12771:6630773,30638763:0,0,0 -g1,12771:6946919,30638763 -g1,12771:7263065,30638763 -g1,12771:11372959,30638763 -h1,12771:11689105,30638763:0,0,0 -k1,12771:32583029,30638763:20893924 -g1,12771:32583029,30638763 -) -(1,12772:6630773,31304941:25952256,404226,107478 -h1,12772:6630773,31304941:0,0,0 -g1,12772:6946919,31304941 -g1,12772:7263065,31304941 -g1,12772:12005251,31304941 -g1,12772:12637543,31304941 -k1,12772:12637543,31304941:0 -h1,12772:15166709,31304941:0,0,0 -k1,12772:32583029,31304941:17416320 -g1,12772:32583029,31304941 -) -(1,12773:6630773,31971119:25952256,404226,101187 -h1,12773:6630773,31971119:0,0,0 -g1,12773:6946919,31971119 -g1,12773:7263065,31971119 -g1,12773:7579211,31971119 -g1,12773:7895357,31971119 -g1,12773:8211503,31971119 -g1,12773:8527649,31971119 -g1,12773:8843795,31971119 -g1,12773:9159941,31971119 -g1,12773:9476087,31971119 -g1,12773:9792233,31971119 -g1,12773:10108379,31971119 -g1,12773:10424525,31971119 -g1,12773:12321400,31971119 -g1,12773:12953692,31971119 -g1,12773:13902130,31971119 -g1,12773:14534422,31971119 -g1,12773:15166714,31971119 -g1,12773:16115152,31971119 -g1,12773:18012026,31971119 -g1,12773:18644318,31971119 -k1,12773:18644318,31971119:0 -h1,12773:22438066,31971119:0,0,0 -k1,12773:32583029,31971119:10144963 -g1,12773:32583029,31971119 -) -(1,12774:6630773,32637297:25952256,404226,101187 -h1,12774:6630773,32637297:0,0,0 -g1,12774:6946919,32637297 -g1,12774:7263065,32637297 -g1,12774:7579211,32637297 -g1,12774:7895357,32637297 -g1,12774:8211503,32637297 -g1,12774:8527649,32637297 -g1,12774:8843795,32637297 -g1,12774:9159941,32637297 -g1,12774:9476087,32637297 -g1,12774:9792233,32637297 -g1,12774:10108379,32637297 -g1,12774:10424525,32637297 -g1,12774:13269836,32637297 -g1,12774:13902128,32637297 -k1,12774:13902128,32637297:0 -h1,12774:15166712,32637297:0,0,0 -k1,12774:32583028,32637297:17416316 -g1,12774:32583028,32637297 -) -(1,12775:6630773,33303475:25952256,404226,107478 -h1,12775:6630773,33303475:0,0,0 -g1,12775:6946919,33303475 -g1,12775:7263065,33303475 -g1,12775:7579211,33303475 -g1,12775:7895357,33303475 -g1,12775:8211503,33303475 -g1,12775:8527649,33303475 -g1,12775:8843795,33303475 -g1,12775:9159941,33303475 -g1,12775:9476087,33303475 -g1,12775:9792233,33303475 -g1,12775:10108379,33303475 -g1,12775:10424525,33303475 -g1,12775:12321399,33303475 -g1,12775:12953691,33303475 -g1,12775:16115148,33303475 -g1,12775:18012022,33303475 -g1,12775:18644314,33303475 -h1,12775:21489625,33303475:0,0,0 -k1,12775:32583029,33303475:11093404 -g1,12775:32583029,33303475 -) -] -) -g1,12777:32583029,33410953 -g1,12777:6630773,33410953 -g1,12777:6630773,33410953 -g1,12777:32583029,33410953 -g1,12777:32583029,33410953 -) -h1,12777:6630773,33607561:0,0,0 -(1,12780:6630773,43182305:25952256,9062689,0 -k1,12780:10523651,43182305:3892878 -h1,12779:10523651,43182305:0,0,0 -(1,12779:10523651,43182305:18166500,9062689,0 -(1,12779:10523651,43182305:18167381,9062712,0 -(1,12779:10523651,43182305:18167381,9062712,0 -(1,12779:10523651,43182305:0,9062712,0 -(1,12779:10523651,43182305:0,14155776,0 -(1,12779:10523651,43182305:28377088,14155776,0 -) -k1,12779:10523651,43182305:-28377088 -) -) -g1,12779:28691032,43182305 -) -) -) -g1,12780:28690151,43182305 -k1,12780:32583029,43182305:3892878 -) -(1,12788:6630773,44023793:25952256,513147,126483 -h1,12787:6630773,44023793:983040,0,0 -k1,12787:8417896,44023793:176248 -k1,12787:9613229,44023793:176248 -k1,12787:12030808,44023793:176248 -k1,12787:14868474,44023793:176249 -k1,12787:15913074,44023793:176248 -k1,12787:17286665,44023793:176248 -k1,12787:18481998,44023793:176248 -k1,12787:21225291,44023793:176248 -k1,12787:23735276,44023793:176248 -k1,12787:24570816,44023793:176248 -k1,12787:25766149,44023793:176248 -k1,12787:27595871,44023793:176249 -k1,12787:29049416,44023793:176248 -k1,12787:29911826,44023793:176248 -k1,12787:30858777,44023793:176248 -k1,12787:32583029,44023793:0 -) -(1,12788:6630773,44865281:25952256,513147,134348 -k1,12787:7469459,44865281:233133 -k1,12787:10578968,44865281:233134 -k1,12787:11746644,44865281:233133 -k1,12787:13794469,44865281:233133 -k1,12787:14679031,44865281:233134 -k1,12787:15931249,44865281:233133 -k1,12787:19902556,44865281:233133 -k1,12787:20787118,44865281:233134 -k1,12787:22819214,44865281:233133 -k1,12787:24319813,44865281:233133 -k1,12787:24908807,44865281:233134 -k1,12787:27162415,44865281:233133 -k1,12787:28054840,44865281:233133 -k1,12787:29307059,44865281:233134 -k1,12787:31132062,44865281:233133 -k1,12787:32583029,44865281:0 -) -(1,12788:6630773,45706769:25952256,513147,126483 -k1,12787:7527923,45706769:291597 -k1,12787:8754062,45706769:291596 -k1,12787:10064744,45706769:291597 -k1,12787:12300138,45706769:291596 -k1,12787:13251027,45706769:291597 -k1,12787:14561709,45706769:291597 -k1,12787:16577557,45706769:291596 -k1,12787:17474707,45706769:291597 -k1,12787:20121012,45706769:291596 -k1,12787:21665002,45706769:291597 -k1,12787:23800782,45706769:291597 -k1,12787:24778540,45706769:291596 -k1,12787:26450325,45706769:291597 -k1,12787:27733481,45706769:291596 -k1,12787:29044163,45706769:291597 -k1,12787:30989232,45706769:291596 -k1,12787:31966991,45706769:291597 -k1,12787:32583029,45706769:0 -) -] -(1,12788:32583029,45706769:0,0,0 -g1,12788:32583029,45706769 -) -) -] -(1,12788:6630773,47279633:25952256,0,0 -h1,12788:6630773,47279633:25952256,0,0 -) -] -h1,12788:4262630,4025873:0,0,0 -] -!24350 -}244 -Input:1764:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1765:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1766:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1767:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1768:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 -{245 -[1,12837:4262630,47279633:28320399,43253760,0 -(1,12837:4262630,4025873:0,0,0 -[1,12837:-473657,4025873:25952256,0,0 -(1,12837:-473657,-710414:25952256,0,0 -h1,12837:-473657,-710414:0,0,0 -(1,12837:-473657,-710414:0,0,0 -(1,12837:-473657,-710414:0,0,0 -g1,12837:-473657,-710414 -(1,12837:-473657,-710414:65781,0,65781 -g1,12837:-407876,-710414 -[1,12837:-407876,-644633:0,0,0 +[1,12807:6630773,45706769:25952256,40108032,0 +v1,12760:6630773,6254097:0,393216,0 +(1,12760:6630773,7939688:25952256,2078807,616038 +g1,12760:6630773,7939688 +(1,12760:6630773,7939688:25952256,2078807,616038 +(1,12760:6630773,8555726:25952256,2694845,0 +[1,12760:6630773,8555726:25952256,2694845,0 +(1,12760:6630773,8529512:25952256,2668631,0 +r1,12760:6656987,8529512:26214,2668631,0 +[1,12760:6656987,8529512:25899828,2668631,0 +(1,12760:6656987,7939688:25899828,1488983,0 +[1,12760:7246811,7939688:24720180,1488983,0 +(1,12760:7246811,6963852:24720180,513147,134348 +k1,12759:9177502,6963852:288359 +k1,12759:9821720,6963852:288358 +k1,12759:13059854,6963852:288359 +k1,12759:15307738,6963852:288358 +k1,12759:16543748,6963852:288359 +k1,12759:17851191,6963852:288358 +k1,12759:19878876,6963852:288359 +k1,12759:21363921,6963852:288358 +k1,12759:22744765,6963852:288359 +k1,12759:23692415,6963852:288358 +k1,12759:25546429,6963852:288359 +k1,12759:28151485,6963852:288358 +k1,12759:29647017,6963852:288359 +k1,12759:31001646,6963852:288358 +k1,12759:31966991,6963852:0 +) +(1,12760:7246811,7805340:24720180,513147,134348 +g1,12759:10740535,7805340 +g1,12759:11701292,7805340 +g1,12759:13103762,7805340 +g1,12759:16292743,7805340 +g1,12759:17104734,7805340 +g1,12759:18323048,7805340 +g1,12759:19947685,7805340 +g1,12759:20806206,7805340 +k1,12760:31966991,7805340:8729399 +g1,12760:31966991,7805340 +) +] +) +] +r1,12760:32583029,8529512:26214,2668631,0 +) +] +) +) +g1,12760:32583029,7939688 +) +h1,12760:6630773,8555726:0,0,0 +(1,12765:6630773,9843733:25952256,513147,134348 +h1,12764:6630773,9843733:983040,0,0 +k1,12764:10889273,9843733:180195 +(1,12764:10889273,9843733:0,452978,122846 +r1,12764:14764657,9843733:3875384,575824,122846 +k1,12764:10889273,9843733:-3875384 +) +(1,12764:10889273,9843733:3875384,452978,122846 +k1,12764:10889273,9843733:3277 +h1,12764:14761380,9843733:0,411205,112570 +) +k1,12764:14944851,9843733:180194 +k1,12764:17051804,9843733:180195 +k1,12764:19015234,9843733:180195 +k1,12764:20341653,9843733:180194 +(1,12764:20341653,9843733:0,452978,122846 +r1,12764:24568749,9843733:4227096,575824,122846 +k1,12764:20341653,9843733:-4227096 +) +(1,12764:20341653,9843733:4227096,452978,122846 +k1,12764:20341653,9843733:3277 +h1,12764:24565472,9843733:0,411205,112570 +) +k1,12764:24922614,9843733:180195 +k1,12764:26174978,9843733:180195 +k1,12764:28682355,9843733:180194 +k1,12764:29521842,9843733:180195 +k1,12764:32583029,9843733:0 +) +(1,12765:6630773,10685221:25952256,513147,126483 +k1,12764:7136389,10685221:149756 +k1,12764:8279670,10685221:149755 +k1,12764:9088718,10685221:149756 +k1,12764:10627836,10685221:149755 +k1,12764:12984189,10685221:149756 +k1,12764:13816830,10685221:149756 +k1,12764:16108302,10685221:149755 +k1,12764:16909486,10685221:149756 +k1,12764:17807007,10685221:149755 +k1,12764:20542158,10685221:149756 +k1,12764:21343341,10685221:149755 +k1,12764:22512182,10685221:149756 +(1,12764:22512182,10685221:0,452978,115847 +r1,12764:24277295,10685221:1765113,568825,115847 +k1,12764:22512182,10685221:-1765113 +) +(1,12764:22512182,10685221:1765113,452978,115847 +k1,12764:22512182,10685221:3277 +h1,12764:24274018,10685221:0,411205,112570 +) +k1,12764:24427051,10685221:149756 +k1,12764:27925040,10685221:149755 +k1,12764:28532893,10685221:149756 +k1,12764:31083887,10685221:149755 +k1,12764:31589503,10685221:149756 +k1,12764:32583029,10685221:0 +) +(1,12765:6630773,11526709:25952256,513147,134348 +k1,12764:7481241,11526709:191176 +k1,12764:10028435,11526709:191175 +k1,12764:12716533,11526709:191176 +k1,12764:13567000,11526709:191175 +k1,12764:15313345,11526709:191176 +(1,12764:15313345,11526709:0,414482,122846 +r1,12764:16023323,11526709:709978,537328,122846 +k1,12764:15313345,11526709:-709978 +) +(1,12764:15313345,11526709:709978,414482,122846 +k1,12764:15313345,11526709:3277 +h1,12764:16020046,11526709:0,411205,112570 +) +k1,12764:16595262,11526709:191175 +k1,12764:18167282,11526709:191176 +k1,12764:20370412,11526709:191175 +k1,12764:22749180,11526709:191176 +k1,12764:23626517,11526709:191175 +k1,12764:24588396,11526709:191176 +k1,12764:26330153,11526709:191175 +k1,12764:27172757,11526709:191176 +k1,12764:27719792,11526709:191175 +k1,12764:30110356,11526709:191176 +k1,12764:32583029,11526709:0 +) +(1,12765:6630773,12368197:25952256,513147,134348 +k1,12764:9006409,12368197:176248 +k1,12764:9810492,12368197:176248 +k1,12764:11005825,12368197:176248 +k1,12764:12937783,12368197:176248 +k1,12764:14812069,12368197:176248 +k1,12764:16595915,12368197:176248 +k1,12764:18276214,12368197:176248 +k1,12764:20058750,12368197:176249 +k1,12764:22589707,12368197:176248 +k1,12764:24159906,12368197:176248 +k1,12764:25941786,12368197:176248 +k1,12764:27126633,12368197:176248 +k1,12764:28112251,12368197:176248 +k1,12764:30295211,12368197:176248 +k1,12764:31490544,12368197:176248 +k1,12764:32583029,12368197:0 +) +(1,12765:6630773,13209685:25952256,513147,126483 +k1,12764:7552763,13209685:262698 +k1,12764:9366044,13209685:262699 +k1,12764:11236340,13209685:262698 +k1,12764:12706212,13209685:262699 +k1,12764:14619107,13209685:262698 +k1,12764:17620556,13209685:262699 +k1,12764:19325701,13209685:262698 +k1,12764:22916318,13209685:262699 +k1,12764:24741394,13209685:262698 +k1,12764:26611691,13209685:262699 +k1,12764:27978671,13209685:262698 +k1,12764:28989136,13209685:262699 +k1,12764:30605808,13209685:262698 +k1,12764:32583029,13209685:0 +) +(1,12765:6630773,14051173:25952256,513147,134348 +k1,12764:7824032,14051173:245608 +k1,12764:11687884,14051173:245609 +k1,12764:12742862,14051173:245608 +k1,12764:14640634,14051173:245609 +k1,12764:15545534,14051173:245608 +k1,12764:16147003,14051173:245609 +k1,12764:17984481,14051173:245608 +k1,12764:19507387,14051173:245609 +k1,12764:21671889,14051173:245608 +k1,12764:25989250,14051173:245609 +k1,12764:27226418,14051173:245608 +k1,12764:30198325,14051173:245609 +k1,12764:31635378,14051173:245608 +k1,12764:32583029,14051173:0 +) +(1,12765:6630773,14892661:25952256,505283,134348 +k1,12764:10074690,14892661:158597 +k1,12764:13741429,14892661:158597 +k1,12764:15754695,14892661:158597 +k1,12764:16722662,14892661:158597 +k1,12764:17900344,14892661:158597 +k1,12764:22130693,14892661:158597 +k1,12764:24364815,14892661:158597 +k1,12764:25139450,14892661:158597 +k1,12764:26317132,14892661:158597 +k1,12764:28067599,14892661:158597 +k1,12764:29677163,14892661:158597 +k1,12764:31032447,14892661:158597 +k1,12764:32583029,14892661:0 +) +(1,12765:6630773,15734149:25952256,513147,126483 +k1,12764:8450909,15734149:212538 +k1,12764:9655007,15734149:212538 +k1,12764:11985013,15734149:212538 +k1,12764:12813590,15734149:212539 +k1,12764:16143676,15734149:212538 +k1,12764:18241685,15734149:212538 +k1,12764:20742085,15734149:212538 +k1,12764:21973708,15734149:212538 +k1,12764:25861505,15734149:212538 +k1,12764:26733336,15734149:212539 +k1,12764:27964959,15734149:212538 +k1,12764:29728079,15734149:212538 +k1,12764:31391584,15734149:212538 +k1,12764:32583029,15734149:0 +) +(1,12765:6630773,16575637:25952256,513147,122846 +k1,12764:9994713,16575637:189376 +(1,12764:9994713,16575637:0,452978,122846 +r1,12764:13166673,16575637:3171960,575824,122846 +k1,12764:9994713,16575637:-3171960 +) +(1,12764:9994713,16575637:3171960,452978,122846 +k1,12764:9994713,16575637:3277 +h1,12764:13163396,16575637:0,411205,112570 +) +k1,12764:13356049,16575637:189376 +k1,12764:14736870,16575637:189376 +(1,12764:14736870,16575637:0,452978,115847 +r1,12764:17557119,16575637:2820249,568825,115847 +k1,12764:14736870,16575637:-2820249 +) +(1,12764:14736870,16575637:2820249,452978,115847 +k1,12764:14736870,16575637:3277 +h1,12764:17553842,16575637:0,411205,112570 +) +k1,12764:17746495,16575637:189376 +k1,12764:20223733,16575637:189376 +k1,12764:21921748,16575637:189376 +k1,12764:25759513,16575637:189376 +k1,12764:28544770,16575637:189376 +k1,12764:29393438,16575637:189376 +k1,12764:30715276,16575637:189376 +k1,12764:31563944,16575637:189376 +k1,12764:32583029,16575637:0 +) +(1,12765:6630773,17417125:25952256,513147,134348 +k1,12764:8922052,17417125:281945 +k1,12764:10395442,17417125:281945 +k1,12764:12492079,17417125:281945 +k1,12764:13433316,17417125:281945 +k1,12764:14734346,17417125:281945 +k1,12764:17540738,17417125:281945 +k1,12764:19170104,17417125:281946 +k1,12764:20111341,17417125:281945 +k1,12764:21412371,17417125:281945 +k1,12764:23286186,17417125:281945 +k1,12764:25019098,17417125:281945 +k1,12764:27795343,17417125:281945 +k1,12764:29181570,17417125:281945 +k1,12764:30211281,17417125:281945 +k1,12764:32583029,17417125:0 +) +(1,12765:6630773,18258613:25952256,505283,126483 +g1,12764:10098938,18258613 +g1,12764:10949595,18258613 +g1,12764:12167909,18258613 +g1,12764:13959008,18258613 +g1,12764:15349682,18258613 +g1,12764:17099493,18258613 +k1,12765:32583029,18258613:13702267 +g1,12765:32583029,18258613 +) +(1,12767:6630773,19100101:25952256,513147,126483 +h1,12766:6630773,19100101:983040,0,0 +k1,12766:8529250,19100101:287602 +k1,12766:9835937,19100101:287602 +k1,12766:11429672,19100101:287602 +k1,12766:14378692,19100101:287603 +k1,12766:15325586,19100101:287602 +k1,12766:17163770,19100101:287602 +k1,12766:19232641,19100101:287602 +k1,12766:20388595,19100101:287602 +k1,12766:23013866,19100101:287602 +k1,12766:24458179,19100101:287603 +k1,12766:25405073,19100101:287602 +k1,12766:26711760,19100101:287602 +k1,12766:30507504,19100101:287602 +k1,12766:32583029,19100101:0 +) +(1,12767:6630773,19941589:25952256,513147,134348 +g1,12766:8685326,19941589 +g1,12766:9570717,19941589 +g1,12766:10540649,19941589 +g1,12766:12290460,19941589 +g1,12766:14229015,19941589 +g1,12766:15381793,19941589 +g1,12766:16887155,19941589 +g1,12766:19015764,19941589 +g1,12766:19570853,19941589 +g1,12766:21581497,19941589 +g1,12766:25142723,19941589 +g1,12766:26361037,19941589 +g1,12766:27837563,19941589 +g1,12766:28688220,19941589 +g1,12766:29635215,19941589 +k1,12767:32583029,19941589:1223562 +g1,12767:32583029,19941589 +) +v1,12769:6630773,21054286:0,393216,0 +(1,12782:6630773,27342964:25952256,6681894,196608 +g1,12782:6630773,27342964 +g1,12782:6630773,27342964 +g1,12782:6434165,27342964 +(1,12782:6434165,27342964:0,6681894,196608 +r1,12782:32779637,27342964:26345472,6878502,196608 +k1,12782:6434165,27342964:-26345472 +) +(1,12782:6434165,27342964:26345472,6681894,196608 +[1,12782:6630773,27342964:25952256,6485286,0 +(1,12771:6630773,21246175:25952256,388497,9436 +(1,12770:6630773,21246175:0,0,0 +g1,12770:6630773,21246175 +g1,12770:6630773,21246175 +g1,12770:6303093,21246175 +(1,12770:6303093,21246175:0,0,0 +) +g1,12770:6630773,21246175 +) +g1,12771:8843793,21246175 +k1,12771:8843793,21246175:0 +h1,12771:10108375,21246175:0,0,0 +k1,12771:32583029,21246175:22474654 +g1,12771:32583029,21246175 +) +(1,12772:6630773,21912353:25952256,404226,107478 +h1,12772:6630773,21912353:0,0,0 +g1,12772:6946919,21912353 +g1,12772:7263065,21912353 +g1,12772:11056813,21912353 +g1,12772:12637542,21912353 +k1,12772:12637542,21912353:0 +h1,12772:13902124,21912353:0,0,0 +k1,12772:32583028,21912353:18680904 +g1,12772:32583028,21912353 +) +(1,12773:6630773,22578531:25952256,404226,107478 +h1,12773:6630773,22578531:0,0,0 +g1,12773:6946919,22578531 +g1,12773:7263065,22578531 +g1,12773:11372959,22578531 +g1,12773:14218270,22578531 +g1,12773:14850562,22578531 +g1,12773:18328165,22578531 +k1,12773:18328165,22578531:0 +h1,12773:19592747,22578531:0,0,0 +k1,12773:32583029,22578531:12990282 +g1,12773:32583029,22578531 +) +(1,12774:6630773,23244709:25952256,404226,107478 +h1,12774:6630773,23244709:0,0,0 +g1,12774:6946919,23244709 +g1,12774:7263065,23244709 +g1,12774:11056814,23244709 +g1,12774:11689106,23244709 +k1,12774:11689106,23244709:0 +h1,12774:12321398,23244709:0,0,0 +k1,12774:32583030,23244709:20261632 +g1,12774:32583030,23244709 +) +(1,12775:6630773,23910887:25952256,410518,107478 +h1,12775:6630773,23910887:0,0,0 +g1,12775:6946919,23910887 +g1,12775:7263065,23910887 +g1,12775:7579211,23910887 +g1,12775:7895357,23910887 +g1,12775:8211503,23910887 +g1,12775:8527649,23910887 +g1,12775:8843795,23910887 +g1,12775:9159941,23910887 +g1,12775:9476087,23910887 +g1,12775:14850564,23910887 +g1,12775:18012021,23910887 +g1,12775:19592750,23910887 +g1,12775:20225042,23910887 +g1,12775:24651082,23910887 +h1,12775:24967228,23910887:0,0,0 +k1,12775:32583029,23910887:7615801 +g1,12775:32583029,23910887 +) +(1,12776:6630773,24577065:25952256,410518,107478 +h1,12776:6630773,24577065:0,0,0 +g1,12776:6946919,24577065 +g1,12776:7263065,24577065 +g1,12776:15482853,24577065 +g1,12776:16115145,24577065 +g1,12776:18328165,24577065 +h1,12776:18644311,24577065:0,0,0 +k1,12776:32583029,24577065:13938718 +g1,12776:32583029,24577065 +) +(1,12777:6630773,25243243:25952256,404226,101187 +h1,12777:6630773,25243243:0,0,0 +g1,12777:6946919,25243243 +g1,12777:7263065,25243243 +g1,12777:14850562,25243243 +g1,12777:15482854,25243243 +g1,12777:17379729,25243243 +h1,12777:17695875,25243243:0,0,0 +k1,12777:32583029,25243243:14887154 +g1,12777:32583029,25243243 +) +(1,12778:6630773,25909421:25952256,404226,107478 +h1,12778:6630773,25909421:0,0,0 +g1,12778:6946919,25909421 +g1,12778:7263065,25909421 +g1,12778:7579211,25909421 +g1,12778:7895357,25909421 +g1,12778:11372959,25909421 +h1,12778:11689105,25909421:0,0,0 +k1,12778:32583029,25909421:20893924 +g1,12778:32583029,25909421 +) +(1,12779:6630773,26575599:25952256,404226,101187 +h1,12779:6630773,26575599:0,0,0 +g1,12779:6946919,26575599 +g1,12779:7263065,26575599 +g1,12779:7579211,26575599 +g1,12779:7895357,26575599 +g1,12779:11689106,26575599 +g1,12779:12637544,26575599 +h1,12779:14850564,26575599:0,0,0 +k1,12779:32583028,26575599:17732464 +g1,12779:32583028,26575599 +) +(1,12780:6630773,27241777:25952256,404226,101187 +h1,12780:6630773,27241777:0,0,0 +g1,12780:9159939,27241777 +g1,12780:10108377,27241777 +g1,12780:12953689,27241777 +g1,12780:13585981,27241777 +g1,12780:15166710,27241777 +g1,12780:15799002,27241777 +g1,12780:16431294,27241777 +g1,12780:17695877,27241777 +g1,12780:21173480,27241777 +g1,12780:21805772,27241777 +k1,12780:21805772,27241777:0 +h1,12780:26231812,27241777:0,0,0 +k1,12780:32583029,27241777:6351217 +g1,12780:32583029,27241777 +) +] +) +g1,12782:32583029,27342964 +g1,12782:6630773,27342964 +g1,12782:6630773,27342964 +g1,12782:32583029,27342964 +g1,12782:32583029,27342964 +) +h1,12782:6630773,27539572:0,0,0 +v1,12786:6630773,29098789:0,393216,0 +(1,12796:6630773,33410953:25952256,4705380,196608 +g1,12796:6630773,33410953 +g1,12796:6630773,33410953 +g1,12796:6434165,33410953 +(1,12796:6434165,33410953:0,4705380,196608 +r1,12796:32779637,33410953:26345472,4901988,196608 +k1,12796:6434165,33410953:-26345472 +) +(1,12796:6434165,33410953:26345472,4705380,196608 +[1,12796:6630773,33410953:25952256,4508772,0 +(1,12788:6630773,29306407:25952256,404226,107478 +(1,12787:6630773,29306407:0,0,0 +g1,12787:6630773,29306407 +g1,12787:6630773,29306407 +g1,12787:6303093,29306407 +(1,12787:6303093,29306407:0,0,0 +) +g1,12787:6630773,29306407 +) +k1,12788:6630773,29306407:0 +g1,12788:10424522,29306407 +g1,12788:11056814,29306407 +g1,12788:13585980,29306407 +g1,12788:15482855,29306407 +g1,12788:16115147,29306407 +g1,12788:18012022,29306407 +g1,12788:18644314,29306407 +g1,12788:19276606,29306407 +k1,12788:19276606,29306407:0 +h1,12788:20541189,29306407:0,0,0 +k1,12788:32583029,29306407:12041840 +g1,12788:32583029,29306407 +) +(1,12789:6630773,29972585:25952256,410518,101187 +h1,12789:6630773,29972585:0,0,0 +g1,12789:6946919,29972585 +g1,12789:7263065,29972585 +g1,12789:7579211,29972585 +g1,12789:7895357,29972585 +g1,12789:8211503,29972585 +g1,12789:8527649,29972585 +g1,12789:8843795,29972585 +g1,12789:9159941,29972585 +g1,12789:9476087,29972585 +g1,12789:9792233,29972585 +g1,12789:10108379,29972585 +g1,12789:10424525,29972585 +g1,12789:10740671,29972585 +g1,12789:11056817,29972585 +g1,12789:11372963,29972585 +g1,12789:11689109,29972585 +g1,12789:12005255,29972585 +g1,12789:12321401,29972585 +g1,12789:12637547,29972585 +g1,12789:12953693,29972585 +g1,12789:13269839,29972585 +g1,12789:13585985,29972585 +g1,12789:13902131,29972585 +g1,12789:14218277,29972585 +g1,12789:14534423,29972585 +g1,12789:14850569,29972585 +g1,12789:16747443,29972585 +g1,12789:17379735,29972585 +g1,12789:21805775,29972585 +h1,12789:22121921,29972585:0,0,0 +k1,12789:32583029,29972585:10461108 +g1,12789:32583029,29972585 +) +(1,12790:6630773,30638763:25952256,404226,107478 +h1,12790:6630773,30638763:0,0,0 +g1,12790:6946919,30638763 +g1,12790:7263065,30638763 +g1,12790:11372959,30638763 +h1,12790:11689105,30638763:0,0,0 +k1,12790:32583029,30638763:20893924 +g1,12790:32583029,30638763 +) +(1,12791:6630773,31304941:25952256,404226,107478 +h1,12791:6630773,31304941:0,0,0 +g1,12791:6946919,31304941 +g1,12791:7263065,31304941 +g1,12791:12005251,31304941 +g1,12791:12637543,31304941 +k1,12791:12637543,31304941:0 +h1,12791:15166709,31304941:0,0,0 +k1,12791:32583029,31304941:17416320 +g1,12791:32583029,31304941 +) +(1,12792:6630773,31971119:25952256,404226,101187 +h1,12792:6630773,31971119:0,0,0 +g1,12792:6946919,31971119 +g1,12792:7263065,31971119 +g1,12792:7579211,31971119 +g1,12792:7895357,31971119 +g1,12792:8211503,31971119 +g1,12792:8527649,31971119 +g1,12792:8843795,31971119 +g1,12792:9159941,31971119 +g1,12792:9476087,31971119 +g1,12792:9792233,31971119 +g1,12792:10108379,31971119 +g1,12792:10424525,31971119 +g1,12792:12321400,31971119 +g1,12792:12953692,31971119 +g1,12792:13902130,31971119 +g1,12792:14534422,31971119 +g1,12792:15166714,31971119 +g1,12792:16115152,31971119 +g1,12792:18012026,31971119 +g1,12792:18644318,31971119 +k1,12792:18644318,31971119:0 +h1,12792:22438066,31971119:0,0,0 +k1,12792:32583029,31971119:10144963 +g1,12792:32583029,31971119 +) +(1,12793:6630773,32637297:25952256,404226,101187 +h1,12793:6630773,32637297:0,0,0 +g1,12793:6946919,32637297 +g1,12793:7263065,32637297 +g1,12793:7579211,32637297 +g1,12793:7895357,32637297 +g1,12793:8211503,32637297 +g1,12793:8527649,32637297 +g1,12793:8843795,32637297 +g1,12793:9159941,32637297 +g1,12793:9476087,32637297 +g1,12793:9792233,32637297 +g1,12793:10108379,32637297 +g1,12793:10424525,32637297 +g1,12793:13269836,32637297 +g1,12793:13902128,32637297 +k1,12793:13902128,32637297:0 +h1,12793:15166712,32637297:0,0,0 +k1,12793:32583028,32637297:17416316 +g1,12793:32583028,32637297 +) +(1,12794:6630773,33303475:25952256,404226,107478 +h1,12794:6630773,33303475:0,0,0 +g1,12794:6946919,33303475 +g1,12794:7263065,33303475 +g1,12794:7579211,33303475 +g1,12794:7895357,33303475 +g1,12794:8211503,33303475 +g1,12794:8527649,33303475 +g1,12794:8843795,33303475 +g1,12794:9159941,33303475 +g1,12794:9476087,33303475 +g1,12794:9792233,33303475 +g1,12794:10108379,33303475 +g1,12794:10424525,33303475 +g1,12794:12321399,33303475 +g1,12794:12953691,33303475 +g1,12794:16115148,33303475 +g1,12794:18012022,33303475 +g1,12794:18644314,33303475 +h1,12794:21489625,33303475:0,0,0 +k1,12794:32583029,33303475:11093404 +g1,12794:32583029,33303475 +) +] +) +g1,12796:32583029,33410953 +g1,12796:6630773,33410953 +g1,12796:6630773,33410953 +g1,12796:32583029,33410953 +g1,12796:32583029,33410953 +) +h1,12796:6630773,33607561:0,0,0 +(1,12799:6630773,43182305:25952256,9062689,0 +k1,12799:10523651,43182305:3892878 +h1,12798:10523651,43182305:0,0,0 +(1,12798:10523651,43182305:18166500,9062689,0 +(1,12798:10523651,43182305:18167381,9062712,0 +(1,12798:10523651,43182305:18167381,9062712,0 +(1,12798:10523651,43182305:0,9062712,0 +(1,12798:10523651,43182305:0,14155776,0 +(1,12798:10523651,43182305:28377088,14155776,0 +) +k1,12798:10523651,43182305:-28377088 +) +) +g1,12798:28691032,43182305 +) +) +) +g1,12799:28690151,43182305 +k1,12799:32583029,43182305:3892878 +) +(1,12807:6630773,44023793:25952256,513147,126483 +h1,12806:6630773,44023793:983040,0,0 +k1,12806:8417896,44023793:176248 +k1,12806:9613229,44023793:176248 +k1,12806:12030808,44023793:176248 +k1,12806:14868474,44023793:176249 +k1,12806:15913074,44023793:176248 +k1,12806:17286665,44023793:176248 +k1,12806:18481998,44023793:176248 +k1,12806:21225291,44023793:176248 +k1,12806:23735276,44023793:176248 +k1,12806:24570816,44023793:176248 +k1,12806:25766149,44023793:176248 +k1,12806:27595871,44023793:176249 +k1,12806:29049416,44023793:176248 +k1,12806:29911826,44023793:176248 +k1,12806:30858777,44023793:176248 +k1,12806:32583029,44023793:0 +) +(1,12807:6630773,44865281:25952256,513147,134348 +k1,12806:7469459,44865281:233133 +k1,12806:10578968,44865281:233134 +k1,12806:11746644,44865281:233133 +k1,12806:13794469,44865281:233133 +k1,12806:14679031,44865281:233134 +k1,12806:15931249,44865281:233133 +k1,12806:19902556,44865281:233133 +k1,12806:20787118,44865281:233134 +k1,12806:22819214,44865281:233133 +k1,12806:24319813,44865281:233133 +k1,12806:24908807,44865281:233134 +k1,12806:27162415,44865281:233133 +k1,12806:28054840,44865281:233133 +k1,12806:29307059,44865281:233134 +k1,12806:31132062,44865281:233133 +k1,12806:32583029,44865281:0 +) +(1,12807:6630773,45706769:25952256,513147,126483 +k1,12806:7527923,45706769:291597 +k1,12806:8754062,45706769:291596 +k1,12806:10064744,45706769:291597 +k1,12806:12300138,45706769:291596 +k1,12806:13251027,45706769:291597 +k1,12806:14561709,45706769:291597 +k1,12806:16577557,45706769:291596 +k1,12806:17474707,45706769:291597 +k1,12806:20121012,45706769:291596 +k1,12806:21665002,45706769:291597 +k1,12806:23800782,45706769:291597 +k1,12806:24778540,45706769:291596 +k1,12806:26450325,45706769:291597 +k1,12806:27733481,45706769:291596 +k1,12806:29044163,45706769:291597 +k1,12806:30989232,45706769:291596 +k1,12806:31966991,45706769:291597 +k1,12806:32583029,45706769:0 +) +] +(1,12807:32583029,45706769:0,0,0 +g1,12807:32583029,45706769 +) +) +] +(1,12807:6630773,47279633:25952256,0,0 +h1,12807:6630773,47279633:25952256,0,0 +) +] +h1,12807:4262630,4025873:0,0,0 +] +!24353 +}245 +Input:1760:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1761:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1762:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1763:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1764:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 +{246 +[1,12856:4262630,47279633:28320399,43253760,0 +(1,12856:4262630,4025873:0,0,0 +[1,12856:-473657,4025873:25952256,0,0 +(1,12856:-473657,-710414:25952256,0,0 +h1,12856:-473657,-710414:0,0,0 +(1,12856:-473657,-710414:0,0,0 +(1,12856:-473657,-710414:0,0,0 +g1,12856:-473657,-710414 +(1,12856:-473657,-710414:65781,0,65781 +g1,12856:-407876,-710414 +[1,12856:-407876,-644633:0,0,0 ] ) -k1,12837:-473657,-710414:-65781 +k1,12856:-473657,-710414:-65781 ) ) -k1,12837:25478599,-710414:25952256 -g1,12837:25478599,-710414 +k1,12856:25478599,-710414:25952256 +g1,12856:25478599,-710414 ) ] ) -[1,12837:6630773,47279633:25952256,43253760,0 -[1,12837:6630773,4812305:25952256,786432,0 -(1,12837:6630773,4812305:25952256,513147,134348 -(1,12837:6630773,4812305:25952256,513147,134348 -g1,12837:3078558,4812305 -[1,12837:3078558,4812305:0,0,0 -(1,12837:3078558,2439708:0,1703936,0 -k1,12837:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12837:2537886,2439708:1179648,16384,0 +[1,12856:6630773,47279633:25952256,43253760,0 +[1,12856:6630773,4812305:25952256,786432,0 +(1,12856:6630773,4812305:25952256,485622,11795 +(1,12856:6630773,4812305:25952256,485622,11795 +g1,12856:3078558,4812305 +[1,12856:3078558,4812305:0,0,0 +(1,12856:3078558,2439708:0,1703936,0 +k1,12856:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12856:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12837:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12856:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12837:3078558,4812305:0,0,0 -(1,12837:3078558,2439708:0,1703936,0 -g1,12837:29030814,2439708 -g1,12837:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12837:36151628,1915420:16384,1179648,0 +[1,12856:3078558,4812305:0,0,0 +(1,12856:3078558,2439708:0,1703936,0 +g1,12856:29030814,2439708 +g1,12856:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12856:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12837:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12856:37855564,2439708:1179648,16384,0 ) ) -k1,12837:3078556,2439708:-34777008 +k1,12856:3078556,2439708:-34777008 ) ] -[1,12837:3078558,4812305:0,0,0 -(1,12837:3078558,49800853:0,16384,2228224 -k1,12837:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12837:2537886,49800853:1179648,16384,0 +[1,12856:3078558,4812305:0,0,0 +(1,12856:3078558,49800853:0,16384,2228224 +k1,12856:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12856:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12837:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12856:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,12837:3078558,4812305:0,0,0 -(1,12837:3078558,49800853:0,16384,2228224 -g1,12837:29030814,49800853 -g1,12837:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12837:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12837:37855564,49800853:1179648,16384,0 -) -) -k1,12837:3078556,49800853:-34777008 -) -] -g1,12837:6630773,4812305 -k1,12837:25712890,4812305:17886740 -g1,12837:29057847,4812305 -g1,12837:29873114,4812305 -) -) -] -[1,12837:6630773,45706769:25952256,40108032,0 -(1,12837:6630773,45706769:25952256,40108032,0 -(1,12837:6630773,45706769:0,0,0 -g1,12837:6630773,45706769 -) -[1,12837:6630773,45706769:25952256,40108032,0 -(1,12788:6630773,6254097:25952256,505283,134348 -k1,12787:7945285,6254097:295427 -k1,12787:9832581,6254097:295426 -k1,12787:11578975,6254097:295427 -k1,12787:12479955,6254097:295427 -k1,12787:13966826,6254097:295426 -k1,12787:14867806,6254097:295427 -k1,12787:18020603,6254097:295427 -k1,12787:19335114,6254097:295426 -k1,12787:23026617,6254097:295427 -k1,12787:25342518,6254097:295426 -k1,12787:26253983,6254097:295427 -k1,12787:27568495,6254097:295427 -k1,12787:29455791,6254097:295426 -k1,12787:31202185,6254097:295427 -k1,12787:32583029,6254097:0 -) -(1,12788:6630773,7095585:25952256,513147,134348 -k1,12787:8489647,7095585:182463 -k1,12787:11358431,7095585:182463 -k1,12787:14202311,7095585:182463 -k1,12787:16375758,7095585:182463 -k1,12787:17888602,7095585:182463 -k1,12787:18426925,7095585:182463 -k1,12787:19892584,7095585:182464 -k1,12787:23147375,7095585:182463 -k1,12787:23981266,7095585:182463 -k1,12787:26992262,7095585:182463 -k1,12787:28279007,7095585:182463 -k1,12787:31304422,7095585:182463 -k1,12787:32583029,7095585:0 -) -(1,12788:6630773,7937073:25952256,513147,134348 -k1,12787:8151426,7937073:253187 -k1,12787:9423699,7937073:253188 -k1,12787:12579476,7937073:253187 -k1,12787:13491955,7937073:253187 -k1,12787:16464232,7937073:253188 -k1,12787:19928028,7937073:253187 -k1,12787:20809050,7937073:253187 -k1,12787:22265479,7937073:253188 -k1,12787:25353753,7937073:253187 -k1,12787:26258368,7937073:253187 -k1,12787:28172238,7937073:253188 -k1,12787:29196128,7937073:253187 -k1,12787:32583029,7937073:0 -) -(1,12788:6630773,8778561:25952256,513147,134348 -k1,12787:10056743,8778561:267790 -k1,12787:12651716,8778561:267790 -k1,12787:13578799,8778561:267791 -k1,12787:16913019,8778561:267790 -k1,12787:17946925,8778561:267790 -k1,12787:19233800,8778561:267790 -k1,12787:20890954,8778561:267791 -k1,12787:22426210,8778561:267790 -k1,12787:23049860,8778561:267790 -k1,12787:24707013,8778561:267790 -k1,12787:27024770,8778561:267791 -k1,12787:28160912,8778561:267790 -k1,12787:29825274,8778561:267790 -k1,12787:32583029,8778561:0 -) -(1,12788:6630773,9620049:25952256,505283,134348 -k1,12787:8809534,9620049:168116 -k1,12787:11391996,9620049:168116 -k1,12787:12211541,9620049:168117 -k1,12787:13398742,9620049:168116 -k1,12787:15909115,9620049:168116 -k1,12787:19251795,9620049:168116 -k1,12787:21429901,9620049:168117 -(1,12787:21429901,9620049:0,452978,115847 -r1,12787:24953573,9620049:3523672,568825,115847 -k1,12787:21429901,9620049:-3523672 -) -(1,12787:21429901,9620049:3523672,452978,115847 -k1,12787:21429901,9620049:3277 -h1,12787:24950296,9620049:0,411205,112570 -) -k1,12787:25121689,9620049:168116 -k1,12787:26521882,9620049:168116 -k1,12787:28968685,9620049:168116 -h1,12787:29939273,9620049:0,0,0 -k1,12787:30107390,9620049:168117 -k1,12787:31084876,9620049:168116 -k1,12787:32583029,9620049:0 -) -(1,12788:6630773,10461537:25952256,505283,95026 -h1,12787:7826150,10461537:0,0,0 -k1,12788:32583030,10461537:24376116 -g1,12788:32583030,10461537 -) -v1,12790:6630773,11652003:0,393216,0 -(1,12806:6630773,19961236:25952256,8702449,196608 -g1,12806:6630773,19961236 -g1,12806:6630773,19961236 -g1,12806:6434165,19961236 -(1,12806:6434165,19961236:0,8702449,196608 -r1,12806:32779637,19961236:26345472,8899057,196608 -k1,12806:6434165,19961236:-26345472 -) -(1,12806:6434165,19961236:26345472,8702449,196608 -[1,12806:6630773,19961236:25952256,8505841,0 -(1,12792:6630773,11865913:25952256,410518,107478 -(1,12791:6630773,11865913:0,0,0 -g1,12791:6630773,11865913 -g1,12791:6630773,11865913 -g1,12791:6303093,11865913 -(1,12791:6303093,11865913:0,0,0 -) -g1,12791:6630773,11865913 -) -g1,12792:8843793,11865913 -g1,12792:9792231,11865913 -g1,12792:13585980,11865913 -g1,12792:14218272,11865913 -g1,12792:16747438,11865913 -g1,12792:18644313,11865913 -g1,12792:19276605,11865913 -g1,12792:21173480,11865913 -g1,12792:21805772,11865913 -g1,12792:22438064,11865913 -g1,12792:24018793,11865913 -g1,12792:25915667,11865913 -g1,12792:26547959,11865913 -g1,12792:30973999,11865913 -h1,12792:31290145,11865913:0,0,0 -k1,12792:32583029,11865913:1292884 -g1,12792:32583029,11865913 -) -(1,12793:6630773,12532091:25952256,404226,107478 -h1,12793:6630773,12532091:0,0,0 -g1,12793:6946919,12532091 -g1,12793:7263065,12532091 -k1,12793:7263065,12532091:0 -h1,12793:11056813,12532091:0,0,0 -k1,12793:32583029,12532091:21526216 -g1,12793:32583029,12532091 -) -(1,12794:6630773,13198269:25952256,404226,101187 -h1,12794:6630773,13198269:0,0,0 -g1,12794:9159939,13198269 -g1,12794:10108377,13198269 -g1,12794:12321397,13198269 -h1,12794:12637543,13198269:0,0,0 -k1,12794:32583029,13198269:19945486 -g1,12794:32583029,13198269 -) -(1,12795:6630773,13864447:25952256,404226,101187 -h1,12795:6630773,13864447:0,0,0 -g1,12795:6946919,13864447 -g1,12795:7263065,13864447 -g1,12795:13902125,13864447 -g1,12795:14534417,13864447 -g1,12795:16747438,13864447 -g1,12795:18644313,13864447 -g1,12795:20225042,13864447 -g1,12795:20857334,13864447 -g1,12795:22754209,13864447 -g1,12795:24334937,13864447 -h1,12795:24651083,13864447:0,0,0 -k1,12795:32583029,13864447:7931946 -g1,12795:32583029,13864447 -) -(1,12796:6630773,14530625:25952256,404226,101187 -h1,12796:6630773,14530625:0,0,0 -g1,12796:6946919,14530625 -g1,12796:7263065,14530625 -g1,12796:9476086,14530625 -g1,12796:10108378,14530625 -g1,12796:12005253,14530625 -g1,12796:12637545,14530625 -g1,12796:13269837,14530625 -g1,12796:15166712,14530625 -h1,12796:15482858,14530625:0,0,0 -k1,12796:32583030,14530625:17100172 -g1,12796:32583030,14530625 -) -(1,12797:6630773,15196803:25952256,404226,107478 -h1,12797:6630773,15196803:0,0,0 -g1,12797:6946919,15196803 -g1,12797:7263065,15196803 -g1,12797:15798999,15196803 -g1,12797:16431291,15196803 -g1,12797:18644311,15196803 -h1,12797:18960457,15196803:0,0,0 -k1,12797:32583029,15196803:13622572 -g1,12797:32583029,15196803 -) -(1,12798:6630773,15862981:25952256,404226,101187 -h1,12798:6630773,15862981:0,0,0 -g1,12798:6946919,15862981 -g1,12798:7263065,15862981 -g1,12798:11056814,15862981 -g1,12798:11689106,15862981 -g1,12798:17695874,15862981 -g1,12798:18328166,15862981 -h1,12798:18960458,15862981:0,0,0 -k1,12798:32583029,15862981:13622571 -g1,12798:32583029,15862981 -) -(1,12799:6630773,16529159:25952256,404226,101187 -h1,12799:6630773,16529159:0,0,0 -g1,12799:8843793,16529159 -h1,12799:9159939,16529159:0,0,0 -k1,12799:32583029,16529159:23423090 -g1,12799:32583029,16529159 -) -(1,12800:6630773,17195337:25952256,404226,107478 -h1,12800:6630773,17195337:0,0,0 -g1,12800:6946919,17195337 -g1,12800:7263065,17195337 -g1,12800:11056814,17195337 -g1,12800:11689106,17195337 -g1,12800:13269835,17195337 -g1,12800:13902127,17195337 -g1,12800:14534419,17195337 -g1,12800:15799002,17195337 -g1,12800:17695876,17195337 -g1,12800:18328168,17195337 -g1,12800:23070354,17195337 -g1,12800:26231811,17195337 -g1,12800:26864103,17195337 -k1,12800:26864103,17195337:0 -h1,12800:28128687,17195337:0,0,0 -k1,12800:32583029,17195337:4454342 -g1,12800:32583029,17195337 -) -(1,12801:6630773,17861515:25952256,404226,107478 -h1,12801:6630773,17861515:0,0,0 -g1,12801:6946919,17861515 -g1,12801:7263065,17861515 -g1,12801:7579211,17861515 -g1,12801:7895357,17861515 -g1,12801:8211503,17861515 -g1,12801:8527649,17861515 -g1,12801:8843795,17861515 -g1,12801:9159941,17861515 -g1,12801:9476087,17861515 -g1,12801:9792233,17861515 -g1,12801:10108379,17861515 -g1,12801:10424525,17861515 -g1,12801:12321399,17861515 -g1,12801:12953691,17861515 -g1,12801:16115148,17861515 -g1,12801:18012022,17861515 -g1,12801:18644314,17861515 -g1,12801:21805771,17861515 -h1,12801:22121917,17861515:0,0,0 -k1,12801:32583029,17861515:10461112 -g1,12801:32583029,17861515 -) -(1,12802:6630773,18527693:25952256,410518,107478 -h1,12802:6630773,18527693:0,0,0 -g1,12802:6946919,18527693 -g1,12802:7263065,18527693 -g1,12802:11689105,18527693 -g1,12802:12321397,18527693 -g1,12802:14850563,18527693 -g1,12802:16431292,18527693 -g1,12802:17063584,18527693 -g1,12802:18328167,18527693 -g1,12802:20225041,18527693 -g1,12802:20857333,18527693 -k1,12802:20857333,18527693:0 -h1,12802:23386499,18527693:0,0,0 -k1,12802:32583029,18527693:9196530 -g1,12802:32583029,18527693 -) -(1,12803:6630773,19193871:25952256,404226,101187 -h1,12803:6630773,19193871:0,0,0 -g1,12803:6946919,19193871 -g1,12803:7263065,19193871 -g1,12803:7579211,19193871 -g1,12803:7895357,19193871 -g1,12803:8211503,19193871 -g1,12803:8527649,19193871 -g1,12803:8843795,19193871 -g1,12803:9159941,19193871 -g1,12803:9476087,19193871 -g1,12803:9792233,19193871 -g1,12803:10108379,19193871 -g1,12803:11689108,19193871 -g1,12803:12321400,19193871 -g1,12803:13902129,19193871 -g1,12803:15482858,19193871 -g1,12803:16115150,19193871 -g1,12803:17695879,19193871 -g1,12803:19276608,19193871 -g1,12803:19908900,19193871 -g1,12803:21173483,19193871 -g1,12803:22754212,19193871 -g1,12803:23386504,19193871 -k1,12803:23386504,19193871:0 -h1,12803:24334941,19193871:0,0,0 -k1,12803:32583029,19193871:8248088 -g1,12803:32583029,19193871 -) -(1,12804:6630773,19860049:25952256,404226,101187 -h1,12804:6630773,19860049:0,0,0 -g1,12804:6946919,19860049 -g1,12804:7263065,19860049 -g1,12804:7579211,19860049 -g1,12804:7895357,19860049 -g1,12804:8211503,19860049 -g1,12804:8527649,19860049 -g1,12804:8843795,19860049 -g1,12804:9159941,19860049 -g1,12804:9476087,19860049 -g1,12804:9792233,19860049 -g1,12804:10108379,19860049 -g1,12804:12953690,19860049 -g1,12804:13585982,19860049 -h1,12804:16431293,19860049:0,0,0 -k1,12804:32583029,19860049:16151736 -g1,12804:32583029,19860049 -) -] -) -g1,12806:32583029,19961236 -g1,12806:6630773,19961236 -g1,12806:6630773,19961236 -g1,12806:32583029,19961236 -g1,12806:32583029,19961236 -) -h1,12806:6630773,20157844:0,0,0 -(1,12809:6630773,29810357:25952256,9062689,0 -k1,12809:10523651,29810357:3892878 -h1,12808:10523651,29810357:0,0,0 -(1,12808:10523651,29810357:18166500,9062689,0 -(1,12808:10523651,29810357:18167381,9062712,0 -(1,12808:10523651,29810357:18167381,9062712,0 -(1,12808:10523651,29810357:0,9062712,0 -(1,12808:10523651,29810357:0,14155776,0 -(1,12808:10523651,29810357:28377088,14155776,0 -) -k1,12808:10523651,29810357:-28377088 -) -) -g1,12808:28691032,29810357 -) -) -) -g1,12809:28690151,29810357 -k1,12809:32583029,29810357:3892878 -) -(1,12818:6630773,30651845:25952256,505283,126483 -h1,12817:6630773,30651845:983040,0,0 -k1,12817:10914732,30651845:205654 -(1,12817:10914732,30651845:0,452978,122846 -r1,12817:14790116,30651845:3875384,575824,122846 -k1,12817:10914732,30651845:-3875384 -) -(1,12817:10914732,30651845:3875384,452978,122846 -k1,12817:10914732,30651845:3277 -h1,12817:14786839,30651845:0,411205,112570 -) -k1,12817:14995770,30651845:205654 -k1,12817:17128182,30651845:205654 -k1,12817:19117071,30651845:205654 -k1,12817:20468951,30651845:205655 -(1,12817:20468951,30651845:0,452978,122846 -r1,12817:24696047,30651845:4227096,575824,122846 -k1,12817:20468951,30651845:-4227096 -) -(1,12817:20468951,30651845:4227096,452978,122846 -k1,12817:20468951,30651845:3277 -h1,12817:24692770,30651845:0,411205,112570 -) -k1,12817:24901701,30651845:205654 -k1,12817:26298800,30651845:205654 -(1,12817:26298800,30651845:0,452978,122846 -r1,12817:30174184,30651845:3875384,575824,122846 -k1,12817:26298800,30651845:-3875384 -) -(1,12817:26298800,30651845:3875384,452978,122846 -k1,12817:26298800,30651845:3277 -h1,12817:30170907,30651845:0,411205,112570 -) -k1,12817:30379838,30651845:205654 -k1,12817:31657661,30651845:205654 -k1,12818:32583029,30651845:0 -) -(1,12818:6630773,31493333:25952256,513147,134348 -k1,12817:8494960,31493333:175324 -k1,12817:9026144,31493333:175324 -k1,12817:10194994,31493333:175324 -k1,12817:11029609,31493333:175323 -k1,12817:12830880,31493333:175324 -k1,12817:15955979,31493333:175324 -k1,12817:18594801,31493333:175324 -k1,12817:20637901,31493333:175324 -(1,12817:20637901,31493333:0,452978,122846 -r1,12817:22051302,31493333:1413401,575824,122846 -k1,12817:20637901,31493333:-1413401 -) -(1,12817:20637901,31493333:1413401,452978,122846 -k1,12817:20637901,31493333:3277 -h1,12817:22048025,31493333:0,411205,112570 -) -k1,12817:22226626,31493333:175324 -k1,12817:23349601,31493333:175324 -k1,12817:25383525,31493333:175323 -k1,12817:26939693,31493333:175324 -k1,12817:28642661,31493333:175324 -k1,12817:31970267,31493333:175324 -k1,12817:32583029,31493333:0 -) -(1,12818:6630773,32334821:25952256,513147,134348 -k1,12817:7786688,32334821:136830 -k1,12817:10496461,32334821:136830 -k1,12817:11292583,32334821:136830 -k1,12817:13547536,32334821:136829 -k1,12817:14335794,32334821:136830 -k1,12817:17741560,32334821:136830 -k1,12817:19807770,32334821:136830 -k1,12817:20963685,32334821:136830 -k1,12817:22888337,32334821:136830 -k1,12817:24881147,32334821:136830 -k1,12817:26753369,32334821:136829 -k1,12817:28516146,32334821:136830 -k1,12817:29335861,32334821:136830 -k1,12817:30234219,32334821:136830 -k1,12818:32583029,32334821:0 -) -(1,12818:6630773,33176309:25952256,513147,134348 -k1,12817:8079731,33176309:201808 -k1,12817:9983508,33176309:201807 -k1,12817:12475144,33176309:201808 -k1,12817:13944418,33176309:201808 -k1,12817:16107719,33176309:201808 -k1,12817:17690370,33176309:201807 -k1,12817:20881930,33176309:201808 -k1,12817:21615235,33176309:201808 -k1,12817:22503205,33176309:201808 -k1,12817:25005981,33176309:201807 -k1,12817:25893951,33176309:201808 -(1,12817:25893951,33176309:0,452978,115847 -r1,12817:32583029,33176309:6689078,568825,115847 -k1,12817:25893951,33176309:-6689078 -) -(1,12817:25893951,33176309:6689078,452978,115847 -k1,12817:25893951,33176309:3277 -h1,12817:32579752,33176309:0,411205,112570 -) -k1,12817:32583029,33176309:0 -) -(1,12818:6630773,34017797:25952256,505283,134348 -k1,12817:8272169,34017797:247445 -k1,12817:10844176,34017797:247445 -k1,12817:11743049,34017797:247445 -k1,12817:13009580,34017797:247446 -k1,12817:15218518,34017797:247445 -k1,12817:16538132,34017797:247445 -k1,12817:19338860,34017797:247445 -k1,12817:20272467,34017797:247445 -k1,12817:20875772,34017797:247445 -k1,12817:24262391,34017797:247445 -k1,12817:25463386,34017797:247446 -k1,12817:27371513,34017797:247445 -k1,12817:28389661,34017797:247445 -k1,12817:31298523,34017797:247445 -k1,12817:32583029,34017797:0 -) -(1,12818:6630773,34859285:25952256,513147,126483 -k1,12817:8339064,34859285:180647 -k1,12817:9692149,34859285:180646 -k1,12817:12458191,34859285:180647 -k1,12817:13290266,34859285:180647 -k1,12817:14489997,34859285:180646 -k1,12817:16121611,34859285:180647 -k1,12817:17498945,34859285:180647 -k1,12817:20264986,34859285:180646 -k1,12817:21437193,34859285:180647 -k1,12817:23030141,34859285:180647 -k1,12817:24778408,34859285:180646 -k1,12817:26306457,34859285:180629 -k1,12817:27974115,34859285:180646 -k1,12817:31315563,34859285:180647 -k1,12817:32583029,34859285:0 -) -(1,12818:6630773,35700773:25952256,505283,134348 -k1,12817:8810789,35700773:218523 -k1,12817:10220757,35700773:218523 -k1,12817:12404705,35700773:218523 -k1,12817:13274655,35700773:218522 -k1,12817:14512263,35700773:218523 -k1,12817:16008083,35700773:218523 -k1,12817:16912768,35700773:218523 -k1,12817:17487151,35700773:218523 -k1,12817:18988869,35700773:218523 -k1,12817:20938852,35700773:218522 -k1,12817:22354062,35700773:218523 -k1,12817:23919986,35700773:218504 -k1,12817:26723903,35700773:218522 -k1,12817:28455652,35700773:218523 -k1,12817:30149390,35700773:218523 -k1,12817:30723773,35700773:218523 -k1,12818:32583029,35700773:0 -) -(1,12818:6630773,36542261:25952256,505283,134348 -g1,12817:8914047,36542261 -k1,12818:32583028,36542261:19705364 -g1,12818:32583028,36542261 -) -v1,12820:6630773,37732727:0,393216,0 -(1,12837:6630773,45382073:25952256,8042562,196608 -g1,12837:6630773,45382073 -g1,12837:6630773,45382073 -g1,12837:6434165,45382073 -(1,12837:6434165,45382073:0,8042562,196608 -r1,12837:32779637,45382073:26345472,8239170,196608 -k1,12837:6434165,45382073:-26345472 -) -(1,12837:6434165,45382073:26345472,8042562,196608 -[1,12837:6630773,45382073:25952256,7845954,0 -(1,12822:6630773,37946637:25952256,410518,6290 -(1,12821:6630773,37946637:0,0,0 -g1,12821:6630773,37946637 -g1,12821:6630773,37946637 -g1,12821:6303093,37946637 -(1,12821:6303093,37946637:0,0,0 -) -g1,12821:6630773,37946637 -) -g1,12822:10108376,37946637 -k1,12822:10108376,37946637:0 -h1,12822:10740668,37946637:0,0,0 -k1,12822:32583028,37946637:21842360 -g1,12822:32583028,37946637 -) -(1,12823:6630773,38612815:25952256,410518,107478 -h1,12823:6630773,38612815:0,0,0 -g1,12823:6946919,38612815 -g1,12823:7263065,38612815 -g1,12823:14534416,38612815 -g1,12823:20857330,38612815 -g1,12823:23386496,38612815 -g1,12823:24018788,38612815 -g1,12823:27496391,38612815 -g1,12823:30341702,38612815 -g1,12823:30973994,38612815 -h1,12823:32554723,38612815:0,0,0 -k1,12823:32583029,38612815:28306 -g1,12823:32583029,38612815 -) -(1,12824:6630773,39278993:25952256,410518,107478 -h1,12824:6630773,39278993:0,0,0 -g1,12824:10740667,39278993 -g1,12824:11689105,39278993 -k1,12824:11689105,39278993:0 -h1,12824:21173475,39278993:0,0,0 -k1,12824:32583029,39278993:11409554 -g1,12824:32583029,39278993 -) -(1,12825:6630773,39945171:25952256,410518,6290 -h1,12825:6630773,39945171:0,0,0 -g1,12825:10108376,39945171 -k1,12825:10108376,39945171:0 -h1,12825:10740668,39945171:0,0,0 -k1,12825:32583028,39945171:21842360 -g1,12825:32583028,39945171 -) -(1,12826:6630773,40611349:25952256,410518,107478 -h1,12826:6630773,40611349:0,0,0 -g1,12826:6946919,40611349 -g1,12826:7263065,40611349 -g1,12826:14534416,40611349 -g1,12826:19276602,40611349 -g1,12826:21805768,40611349 -g1,12826:22438060,40611349 -g1,12826:25915663,40611349 -g1,12826:28760974,40611349 -g1,12826:29393266,40611349 -h1,12826:30973995,40611349:0,0,0 -k1,12826:32583029,40611349:1609034 -g1,12826:32583029,40611349 -) -(1,12827:6630773,41277527:25952256,410518,107478 -h1,12827:6630773,41277527:0,0,0 -g1,12827:9159939,41277527 -g1,12827:10108377,41277527 -k1,12827:10108377,41277527:0 -h1,12827:19592747,41277527:0,0,0 -k1,12827:32583029,41277527:12990282 -g1,12827:32583029,41277527 -) -(1,12828:6630773,41943705:25952256,404226,107478 -h1,12828:6630773,41943705:0,0,0 -g1,12828:9159939,41943705 -g1,12828:10108377,41943705 -g1,12828:12953689,41943705 -g1,12828:13585981,41943705 -g1,12828:15166711,41943705 -g1,12828:17063586,41943705 -g1,12828:17695878,41943705 -g1,12828:18328170,41943705 -g1,12828:20225045,41943705 -g1,12828:21805774,41943705 -g1,12828:24018794,41943705 -g1,12828:24651086,41943705 -g1,12828:26231816,41943705 -g1,12828:28128690,41943705 -g1,12828:28760982,41943705 -k1,12828:28760982,41943705:0 -h1,12828:30974004,41943705:0,0,0 -k1,12828:32583029,41943705:1609025 -g1,12828:32583029,41943705 -) -(1,12829:6630773,42609883:25952256,404226,107478 -h1,12829:6630773,42609883:0,0,0 -g1,12829:6946919,42609883 -g1,12829:7263065,42609883 -g1,12829:7579211,42609883 -g1,12829:7895357,42609883 -g1,12829:8211503,42609883 -g1,12829:8527649,42609883 -g1,12829:8843795,42609883 -g1,12829:9159941,42609883 -g1,12829:9476087,42609883 -g1,12829:9792233,42609883 -g1,12829:10108379,42609883 -g1,12829:10424525,42609883 -g1,12829:10740671,42609883 -g1,12829:11056817,42609883 -g1,12829:11372963,42609883 -g1,12829:11689109,42609883 -g1,12829:12005255,42609883 -g1,12829:12321401,42609883 -g1,12829:14218275,42609883 -g1,12829:14850567,42609883 -g1,12829:23702646,42609883 -g1,12829:24334938,42609883 -k1,12829:24334938,42609883:0 -h1,12829:28760978,42609883:0,0,0 -k1,12829:32583029,42609883:3822051 -g1,12829:32583029,42609883 -) -(1,12830:6630773,43276061:25952256,404226,107478 -h1,12830:6630773,43276061:0,0,0 -g1,12830:6946919,43276061 -g1,12830:7263065,43276061 -g1,12830:7579211,43276061 -g1,12830:7895357,43276061 -g1,12830:8211503,43276061 -g1,12830:8527649,43276061 -g1,12830:8843795,43276061 -g1,12830:9159941,43276061 -g1,12830:9476087,43276061 -g1,12830:9792233,43276061 -g1,12830:10108379,43276061 -g1,12830:10424525,43276061 -g1,12830:10740671,43276061 -g1,12830:11056817,43276061 -g1,12830:11372963,43276061 -g1,12830:11689109,43276061 -g1,12830:12005255,43276061 -g1,12830:12321401,43276061 -g1,12830:12637547,43276061 -g1,12830:12953693,43276061 -g1,12830:13269839,43276061 -g1,12830:13585985,43276061 -g1,12830:13902131,43276061 -g1,12830:14218277,43276061 -g1,12830:14534423,43276061 -g1,12830:14850569,43276061 -g1,12830:15166715,43276061 -g1,12830:15482861,43276061 -g1,12830:15799007,43276061 -g1,12830:16115153,43276061 -g1,12830:16431299,43276061 -g1,12830:23702650,43276061 -g1,12830:24334942,43276061 -h1,12830:27496399,43276061:0,0,0 -k1,12830:32583029,43276061:5086630 -g1,12830:32583029,43276061 -) -(1,12831:6630773,43942239:25952256,0,0 -h1,12831:6630773,43942239:0,0,0 -h1,12831:6630773,43942239:0,0,0 -k1,12831:32583029,43942239:25952256 -g1,12831:32583029,43942239 -) -(1,12832:6630773,44608417:25952256,404226,107478 -h1,12832:6630773,44608417:0,0,0 -g1,12832:9476084,44608417 -h1,12832:9792230,44608417:0,0,0 -k1,12832:32583030,44608417:22790800 -g1,12832:32583030,44608417 -) -(1,12833:6630773,45274595:25952256,404226,107478 -h1,12833:6630773,45274595:0,0,0 -g1,12833:6946919,45274595 -g1,12833:7263065,45274595 -g1,12833:12005251,45274595 -g1,12833:12637543,45274595 -k1,12833:12637543,45274595:0 -h1,12833:15166709,45274595:0,0,0 -k1,12833:32583029,45274595:17416320 -g1,12833:32583029,45274595 -) -] -) -g1,12837:32583029,45382073 -g1,12837:6630773,45382073 -g1,12837:6630773,45382073 -g1,12837:32583029,45382073 -g1,12837:32583029,45382073 -) -] -(1,12837:32583029,45706769:0,0,0 -g1,12837:32583029,45706769 -) -) -] -(1,12837:6630773,47279633:25952256,0,0 -h1,12837:6630773,47279633:25952256,0,0 -) -] -h1,12837:4262630,4025873:0,0,0 -] -!24171 -}245 -Input:1769:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1770:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1771:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1772:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1773:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1774:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1775:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1776:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1777:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1778:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 -{246 -[1,12870:4262630,47279633:28320399,43253760,0 -(1,12870:4262630,4025873:0,0,0 -[1,12870:-473657,4025873:25952256,0,0 -(1,12870:-473657,-710414:25952256,0,0 -h1,12870:-473657,-710414:0,0,0 -(1,12870:-473657,-710414:0,0,0 -(1,12870:-473657,-710414:0,0,0 -g1,12870:-473657,-710414 -(1,12870:-473657,-710414:65781,0,65781 -g1,12870:-407876,-710414 -[1,12870:-407876,-644633:0,0,0 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,12856:3078558,4812305:0,0,0 +(1,12856:3078558,49800853:0,16384,2228224 +g1,12856:29030814,49800853 +g1,12856:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12856:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12856:37855564,49800853:1179648,16384,0 +) +) +k1,12856:3078556,49800853:-34777008 +) +] +g1,12856:6630773,4812305 +g1,12856:6630773,4812305 +g1,12856:10347975,4812305 +k1,12856:31387651,4812305:21039676 +) +) +] +[1,12856:6630773,45706769:25952256,40108032,0 +(1,12856:6630773,45706769:25952256,40108032,0 +(1,12856:6630773,45706769:0,0,0 +g1,12856:6630773,45706769 +) +[1,12856:6630773,45706769:25952256,40108032,0 +(1,12807:6630773,6254097:25952256,505283,134348 +k1,12806:7945285,6254097:295427 +k1,12806:9832581,6254097:295426 +k1,12806:11578975,6254097:295427 +k1,12806:12479955,6254097:295427 +k1,12806:13966826,6254097:295426 +k1,12806:14867806,6254097:295427 +k1,12806:18020603,6254097:295427 +k1,12806:19335114,6254097:295426 +k1,12806:23026617,6254097:295427 +k1,12806:25342518,6254097:295426 +k1,12806:26253983,6254097:295427 +k1,12806:27568495,6254097:295427 +k1,12806:29455791,6254097:295426 +k1,12806:31202185,6254097:295427 +k1,12806:32583029,6254097:0 +) +(1,12807:6630773,7095585:25952256,513147,134348 +k1,12806:8489647,7095585:182463 +k1,12806:11358431,7095585:182463 +k1,12806:14202311,7095585:182463 +k1,12806:16375758,7095585:182463 +k1,12806:17888602,7095585:182463 +k1,12806:18426925,7095585:182463 +k1,12806:19892584,7095585:182464 +k1,12806:23147375,7095585:182463 +k1,12806:23981266,7095585:182463 +k1,12806:26992262,7095585:182463 +k1,12806:28279007,7095585:182463 +k1,12806:31304422,7095585:182463 +k1,12806:32583029,7095585:0 +) +(1,12807:6630773,7937073:25952256,513147,134348 +k1,12806:8151426,7937073:253187 +k1,12806:9423699,7937073:253188 +k1,12806:12579476,7937073:253187 +k1,12806:13491955,7937073:253187 +k1,12806:16464232,7937073:253188 +k1,12806:19928028,7937073:253187 +k1,12806:20809050,7937073:253187 +k1,12806:22265479,7937073:253188 +k1,12806:25353753,7937073:253187 +k1,12806:26258368,7937073:253187 +k1,12806:28172238,7937073:253188 +k1,12806:29196128,7937073:253187 +k1,12806:32583029,7937073:0 +) +(1,12807:6630773,8778561:25952256,513147,134348 +k1,12806:10056743,8778561:267790 +k1,12806:12651716,8778561:267790 +k1,12806:13578799,8778561:267791 +k1,12806:16913019,8778561:267790 +k1,12806:17946925,8778561:267790 +k1,12806:19233800,8778561:267790 +k1,12806:20890954,8778561:267791 +k1,12806:22426210,8778561:267790 +k1,12806:23049860,8778561:267790 +k1,12806:24707013,8778561:267790 +k1,12806:27024770,8778561:267791 +k1,12806:28160912,8778561:267790 +k1,12806:29825274,8778561:267790 +k1,12806:32583029,8778561:0 +) +(1,12807:6630773,9620049:25952256,505283,134348 +k1,12806:8809534,9620049:168116 +k1,12806:11391996,9620049:168116 +k1,12806:12211541,9620049:168117 +k1,12806:13398742,9620049:168116 +k1,12806:15909115,9620049:168116 +k1,12806:19251795,9620049:168116 +k1,12806:21429901,9620049:168117 +(1,12806:21429901,9620049:0,452978,115847 +r1,12806:24953573,9620049:3523672,568825,115847 +k1,12806:21429901,9620049:-3523672 +) +(1,12806:21429901,9620049:3523672,452978,115847 +k1,12806:21429901,9620049:3277 +h1,12806:24950296,9620049:0,411205,112570 +) +k1,12806:25121689,9620049:168116 +k1,12806:26521882,9620049:168116 +k1,12806:28968685,9620049:168116 +h1,12806:29939273,9620049:0,0,0 +k1,12806:30107390,9620049:168117 +k1,12806:31084876,9620049:168116 +k1,12806:32583029,9620049:0 +) +(1,12807:6630773,10461537:25952256,505283,95026 +h1,12806:7826150,10461537:0,0,0 +k1,12807:32583030,10461537:24376116 +g1,12807:32583030,10461537 +) +v1,12809:6630773,11652003:0,393216,0 +(1,12825:6630773,19961236:25952256,8702449,196608 +g1,12825:6630773,19961236 +g1,12825:6630773,19961236 +g1,12825:6434165,19961236 +(1,12825:6434165,19961236:0,8702449,196608 +r1,12825:32779637,19961236:26345472,8899057,196608 +k1,12825:6434165,19961236:-26345472 +) +(1,12825:6434165,19961236:26345472,8702449,196608 +[1,12825:6630773,19961236:25952256,8505841,0 +(1,12811:6630773,11865913:25952256,410518,107478 +(1,12810:6630773,11865913:0,0,0 +g1,12810:6630773,11865913 +g1,12810:6630773,11865913 +g1,12810:6303093,11865913 +(1,12810:6303093,11865913:0,0,0 +) +g1,12810:6630773,11865913 +) +g1,12811:8843793,11865913 +g1,12811:9792231,11865913 +g1,12811:13585980,11865913 +g1,12811:14218272,11865913 +g1,12811:16747438,11865913 +g1,12811:18644313,11865913 +g1,12811:19276605,11865913 +g1,12811:21173480,11865913 +g1,12811:21805772,11865913 +g1,12811:22438064,11865913 +g1,12811:24018793,11865913 +g1,12811:25915667,11865913 +g1,12811:26547959,11865913 +g1,12811:30973999,11865913 +h1,12811:31290145,11865913:0,0,0 +k1,12811:32583029,11865913:1292884 +g1,12811:32583029,11865913 +) +(1,12812:6630773,12532091:25952256,404226,107478 +h1,12812:6630773,12532091:0,0,0 +g1,12812:6946919,12532091 +g1,12812:7263065,12532091 +k1,12812:7263065,12532091:0 +h1,12812:11056813,12532091:0,0,0 +k1,12812:32583029,12532091:21526216 +g1,12812:32583029,12532091 +) +(1,12813:6630773,13198269:25952256,404226,101187 +h1,12813:6630773,13198269:0,0,0 +g1,12813:9159939,13198269 +g1,12813:10108377,13198269 +g1,12813:12321397,13198269 +h1,12813:12637543,13198269:0,0,0 +k1,12813:32583029,13198269:19945486 +g1,12813:32583029,13198269 +) +(1,12814:6630773,13864447:25952256,404226,101187 +h1,12814:6630773,13864447:0,0,0 +g1,12814:6946919,13864447 +g1,12814:7263065,13864447 +g1,12814:13902125,13864447 +g1,12814:14534417,13864447 +g1,12814:16747438,13864447 +g1,12814:18644313,13864447 +g1,12814:20225042,13864447 +g1,12814:20857334,13864447 +g1,12814:22754209,13864447 +g1,12814:24334937,13864447 +h1,12814:24651083,13864447:0,0,0 +k1,12814:32583029,13864447:7931946 +g1,12814:32583029,13864447 +) +(1,12815:6630773,14530625:25952256,404226,101187 +h1,12815:6630773,14530625:0,0,0 +g1,12815:6946919,14530625 +g1,12815:7263065,14530625 +g1,12815:9476086,14530625 +g1,12815:10108378,14530625 +g1,12815:12005253,14530625 +g1,12815:12637545,14530625 +g1,12815:13269837,14530625 +g1,12815:15166712,14530625 +h1,12815:15482858,14530625:0,0,0 +k1,12815:32583030,14530625:17100172 +g1,12815:32583030,14530625 +) +(1,12816:6630773,15196803:25952256,404226,107478 +h1,12816:6630773,15196803:0,0,0 +g1,12816:6946919,15196803 +g1,12816:7263065,15196803 +g1,12816:15798999,15196803 +g1,12816:16431291,15196803 +g1,12816:18644311,15196803 +h1,12816:18960457,15196803:0,0,0 +k1,12816:32583029,15196803:13622572 +g1,12816:32583029,15196803 +) +(1,12817:6630773,15862981:25952256,404226,101187 +h1,12817:6630773,15862981:0,0,0 +g1,12817:6946919,15862981 +g1,12817:7263065,15862981 +g1,12817:11056814,15862981 +g1,12817:11689106,15862981 +g1,12817:17695874,15862981 +g1,12817:18328166,15862981 +h1,12817:18960458,15862981:0,0,0 +k1,12817:32583029,15862981:13622571 +g1,12817:32583029,15862981 +) +(1,12818:6630773,16529159:25952256,404226,101187 +h1,12818:6630773,16529159:0,0,0 +g1,12818:8843793,16529159 +h1,12818:9159939,16529159:0,0,0 +k1,12818:32583029,16529159:23423090 +g1,12818:32583029,16529159 +) +(1,12819:6630773,17195337:25952256,404226,107478 +h1,12819:6630773,17195337:0,0,0 +g1,12819:6946919,17195337 +g1,12819:7263065,17195337 +g1,12819:11056814,17195337 +g1,12819:11689106,17195337 +g1,12819:13269835,17195337 +g1,12819:13902127,17195337 +g1,12819:14534419,17195337 +g1,12819:15799002,17195337 +g1,12819:17695876,17195337 +g1,12819:18328168,17195337 +g1,12819:23070354,17195337 +g1,12819:26231811,17195337 +g1,12819:26864103,17195337 +k1,12819:26864103,17195337:0 +h1,12819:28128687,17195337:0,0,0 +k1,12819:32583029,17195337:4454342 +g1,12819:32583029,17195337 +) +(1,12820:6630773,17861515:25952256,404226,107478 +h1,12820:6630773,17861515:0,0,0 +g1,12820:6946919,17861515 +g1,12820:7263065,17861515 +g1,12820:7579211,17861515 +g1,12820:7895357,17861515 +g1,12820:8211503,17861515 +g1,12820:8527649,17861515 +g1,12820:8843795,17861515 +g1,12820:9159941,17861515 +g1,12820:9476087,17861515 +g1,12820:9792233,17861515 +g1,12820:10108379,17861515 +g1,12820:10424525,17861515 +g1,12820:12321399,17861515 +g1,12820:12953691,17861515 +g1,12820:16115148,17861515 +g1,12820:18012022,17861515 +g1,12820:18644314,17861515 +g1,12820:21805771,17861515 +h1,12820:22121917,17861515:0,0,0 +k1,12820:32583029,17861515:10461112 +g1,12820:32583029,17861515 +) +(1,12821:6630773,18527693:25952256,410518,107478 +h1,12821:6630773,18527693:0,0,0 +g1,12821:6946919,18527693 +g1,12821:7263065,18527693 +g1,12821:11689105,18527693 +g1,12821:12321397,18527693 +g1,12821:14850563,18527693 +g1,12821:16431292,18527693 +g1,12821:17063584,18527693 +g1,12821:18328167,18527693 +g1,12821:20225041,18527693 +g1,12821:20857333,18527693 +k1,12821:20857333,18527693:0 +h1,12821:23386499,18527693:0,0,0 +k1,12821:32583029,18527693:9196530 +g1,12821:32583029,18527693 +) +(1,12822:6630773,19193871:25952256,404226,101187 +h1,12822:6630773,19193871:0,0,0 +g1,12822:6946919,19193871 +g1,12822:7263065,19193871 +g1,12822:7579211,19193871 +g1,12822:7895357,19193871 +g1,12822:8211503,19193871 +g1,12822:8527649,19193871 +g1,12822:8843795,19193871 +g1,12822:9159941,19193871 +g1,12822:9476087,19193871 +g1,12822:9792233,19193871 +g1,12822:10108379,19193871 +g1,12822:11689108,19193871 +g1,12822:12321400,19193871 +g1,12822:13902129,19193871 +g1,12822:15482858,19193871 +g1,12822:16115150,19193871 +g1,12822:17695879,19193871 +g1,12822:19276608,19193871 +g1,12822:19908900,19193871 +g1,12822:21173483,19193871 +g1,12822:22754212,19193871 +g1,12822:23386504,19193871 +k1,12822:23386504,19193871:0 +h1,12822:24334941,19193871:0,0,0 +k1,12822:32583029,19193871:8248088 +g1,12822:32583029,19193871 +) +(1,12823:6630773,19860049:25952256,404226,101187 +h1,12823:6630773,19860049:0,0,0 +g1,12823:6946919,19860049 +g1,12823:7263065,19860049 +g1,12823:7579211,19860049 +g1,12823:7895357,19860049 +g1,12823:8211503,19860049 +g1,12823:8527649,19860049 +g1,12823:8843795,19860049 +g1,12823:9159941,19860049 +g1,12823:9476087,19860049 +g1,12823:9792233,19860049 +g1,12823:10108379,19860049 +g1,12823:12953690,19860049 +g1,12823:13585982,19860049 +h1,12823:16431293,19860049:0,0,0 +k1,12823:32583029,19860049:16151736 +g1,12823:32583029,19860049 +) +] +) +g1,12825:32583029,19961236 +g1,12825:6630773,19961236 +g1,12825:6630773,19961236 +g1,12825:32583029,19961236 +g1,12825:32583029,19961236 +) +h1,12825:6630773,20157844:0,0,0 +(1,12828:6630773,29810357:25952256,9062689,0 +k1,12828:10523651,29810357:3892878 +h1,12827:10523651,29810357:0,0,0 +(1,12827:10523651,29810357:18166500,9062689,0 +(1,12827:10523651,29810357:18167381,9062712,0 +(1,12827:10523651,29810357:18167381,9062712,0 +(1,12827:10523651,29810357:0,9062712,0 +(1,12827:10523651,29810357:0,14155776,0 +(1,12827:10523651,29810357:28377088,14155776,0 +) +k1,12827:10523651,29810357:-28377088 +) +) +g1,12827:28691032,29810357 +) +) +) +g1,12828:28690151,29810357 +k1,12828:32583029,29810357:3892878 +) +(1,12837:6630773,30651845:25952256,505283,126483 +h1,12836:6630773,30651845:983040,0,0 +k1,12836:11056110,30651845:347032 +(1,12836:11056110,30651845:0,452978,122846 +r1,12836:14931494,30651845:3875384,575824,122846 +k1,12836:11056110,30651845:-3875384 +) +(1,12836:11056110,30651845:3875384,452978,122846 +k1,12836:11056110,30651845:3277 +h1,12836:14928217,30651845:0,411205,112570 +) +k1,12836:15278526,30651845:347032 +k1,12836:17552316,30651845:347032 +k1,12836:19682583,30651845:347032 +k1,12836:21175839,30651845:347031 +(1,12836:21175839,30651845:0,452978,122846 +r1,12836:25402935,30651845:4227096,575824,122846 +k1,12836:21175839,30651845:-4227096 +) +(1,12836:21175839,30651845:4227096,452978,122846 +k1,12836:21175839,30651845:3277 +h1,12836:25399658,30651845:0,411205,112570 +) +k1,12836:25749967,30651845:347032 +k1,12836:27288444,30651845:347032 +(1,12836:27288444,30651845:0,452978,122846 +r1,12836:31163828,30651845:3875384,575824,122846 +k1,12836:27288444,30651845:-3875384 +) +(1,12836:27288444,30651845:3875384,452978,122846 +k1,12836:27288444,30651845:3277 +h1,12836:31160551,30651845:0,411205,112570 +) +k1,12836:31510860,30651845:347032 +k1,12836:32583029,30651845:0 +) +(1,12837:6630773,31493333:25952256,513147,134348 +k1,12836:9351844,31493333:319832 +k1,12836:10027536,31493333:319832 +k1,12836:11340894,31493333:319832 +k1,12836:12320018,31493333:319832 +k1,12836:14265797,31493333:319832 +k1,12836:17535404,31493333:319832 +k1,12836:20318734,31493333:319832 +k1,12836:22506342,31493333:319832 +(1,12836:22506342,31493333:0,452978,122846 +r1,12836:23919743,31493333:1413401,575824,122846 +k1,12836:22506342,31493333:-1413401 +) +(1,12836:22506342,31493333:1413401,452978,122846 +k1,12836:22506342,31493333:3277 +h1,12836:23916466,31493333:0,411205,112570 +) +k1,12836:24239575,31493333:319832 +k1,12836:25507058,31493333:319832 +k1,12836:27685491,31493333:319832 +k1,12836:29386167,31493333:319832 +k1,12836:31233643,31493333:319832 +k1,12837:32583029,31493333:0 +) +(1,12837:6630773,32334821:25952256,513147,134348 +k1,12836:9038838,32334821:392178 +k1,12836:10043779,32334821:392179 +k1,12836:11455042,32334821:392178 +k1,12836:14420163,32334821:392178 +k1,12836:15471633,32334821:392178 +k1,12836:17981936,32334821:392179 +k1,12836:19025542,32334821:392178 +k1,12836:22686656,32334821:392178 +k1,12836:25008214,32334821:392178 +k1,12836:26419478,32334821:392179 +k1,12836:28599478,32334821:392178 +k1,12836:30847636,32334821:392178 +k1,12836:32583029,32334821:0 +) +(1,12837:6630773,33176309:25952256,513147,134348 +k1,12836:8541550,33176309:284830 +k1,12836:9509264,33176309:284829 +k1,12836:10555622,33176309:284830 +k1,12836:14223419,33176309:284829 +k1,12836:16210219,33176309:284830 +k1,12836:18784877,33176309:284830 +k1,12836:20337172,33176309:284829 +k1,12836:22583495,33176309:284830 +k1,12836:24249169,33176309:284830 +k1,12836:27523750,33176309:284829 +k1,12836:28340077,33176309:284830 +k1,12836:29311068,33176309:284829 +k1,12836:31896867,33176309:284830 +k1,12837:32583029,33176309:0 +) +(1,12837:6630773,34017797:25952256,505283,134348 +(1,12836:6630773,34017797:0,452978,115847 +r1,12836:13319851,34017797:6689078,568825,115847 +k1,12836:6630773,34017797:-6689078 +) +(1,12836:6630773,34017797:6689078,452978,115847 +k1,12836:6630773,34017797:3277 +h1,12836:13316574,34017797:0,411205,112570 +) +k1,12836:13606438,34017797:286587 +k1,12836:15286977,34017797:286588 +k1,12836:17898126,34017797:286587 +k1,12836:18836142,34017797:286588 +k1,12836:20141814,34017797:286587 +k1,12836:22389895,34017797:286588 +k1,12836:23748651,34017797:286587 +k1,12836:26588522,34017797:286588 +k1,12836:27561271,34017797:286587 +k1,12836:28203719,34017797:286588 +k1,12836:31629480,34017797:286587 +k1,12836:32583029,34017797:0 +) +(1,12837:6630773,34859285:25952256,513147,126483 +k1,12836:8535343,34859285:243888 +k1,12836:9549933,34859285:243887 +k1,12836:12455238,34859285:243888 +k1,12836:13983631,34859285:243887 +k1,12836:15755163,34859285:243888 +k1,12836:17171489,34859285:243887 +k1,12836:20000772,34859285:243888 +k1,12836:20896088,34859285:243888 +k1,12836:22159060,34859285:243887 +k1,12836:23853915,34859285:243888 +k1,12836:25294489,34859285:243887 +k1,12836:28123772,34859285:243888 +k1,12836:29359219,34859285:243887 +k1,12836:31015408,34859285:243888 +k1,12836:32583029,34859285:0 +) +(1,12837:6630773,35700773:25952256,513147,134348 +k1,12836:8246302,35700773:268109 +k1,12836:10001492,35700773:268178 +k1,12836:13430470,35700773:268177 +k1,12836:14966114,35700773:268178 +k1,12836:17195785,35700773:268178 +k1,12836:18655408,35700773:268178 +k1,12836:20889011,35700773:268178 +k1,12836:21808617,35700773:268178 +k1,12836:23095880,35700773:268178 +k1,12836:24641355,35700773:268178 +k1,12836:25595695,35700773:268178 +k1,12836:26219732,35700773:268177 +k1,12836:27771105,35700773:268178 +k1,12836:29770744,35700773:268178 +k1,12836:31235609,35700773:268178 +k1,12836:32583029,35700773:0 +) +(1,12837:6630773,36542261:25952256,505283,134348 +g1,12836:9415397,36542261 +g1,12836:11127852,36542261 +g1,12836:12802296,36542261 +g1,12836:13357385,36542261 +g1,12836:17286923,36542261 +k1,12837:32583029,36542261:11332489 +g1,12837:32583029,36542261 +) +v1,12839:6630773,37732727:0,393216,0 +(1,12856:6630773,45382073:25952256,8042562,196608 +g1,12856:6630773,45382073 +g1,12856:6630773,45382073 +g1,12856:6434165,45382073 +(1,12856:6434165,45382073:0,8042562,196608 +r1,12856:32779637,45382073:26345472,8239170,196608 +k1,12856:6434165,45382073:-26345472 +) +(1,12856:6434165,45382073:26345472,8042562,196608 +[1,12856:6630773,45382073:25952256,7845954,0 +(1,12841:6630773,37946637:25952256,410518,6290 +(1,12840:6630773,37946637:0,0,0 +g1,12840:6630773,37946637 +g1,12840:6630773,37946637 +g1,12840:6303093,37946637 +(1,12840:6303093,37946637:0,0,0 +) +g1,12840:6630773,37946637 +) +g1,12841:10108376,37946637 +k1,12841:10108376,37946637:0 +h1,12841:10740668,37946637:0,0,0 +k1,12841:32583028,37946637:21842360 +g1,12841:32583028,37946637 +) +(1,12842:6630773,38612815:25952256,410518,107478 +h1,12842:6630773,38612815:0,0,0 +g1,12842:6946919,38612815 +g1,12842:7263065,38612815 +g1,12842:14534416,38612815 +g1,12842:20857330,38612815 +g1,12842:23386496,38612815 +g1,12842:24018788,38612815 +g1,12842:27496391,38612815 +g1,12842:30341702,38612815 +g1,12842:30973994,38612815 +h1,12842:32554723,38612815:0,0,0 +k1,12842:32583029,38612815:28306 +g1,12842:32583029,38612815 +) +(1,12843:6630773,39278993:25952256,410518,107478 +h1,12843:6630773,39278993:0,0,0 +g1,12843:10740667,39278993 +g1,12843:11689105,39278993 +k1,12843:11689105,39278993:0 +h1,12843:21173475,39278993:0,0,0 +k1,12843:32583029,39278993:11409554 +g1,12843:32583029,39278993 +) +(1,12844:6630773,39945171:25952256,410518,6290 +h1,12844:6630773,39945171:0,0,0 +g1,12844:10108376,39945171 +k1,12844:10108376,39945171:0 +h1,12844:10740668,39945171:0,0,0 +k1,12844:32583028,39945171:21842360 +g1,12844:32583028,39945171 +) +(1,12845:6630773,40611349:25952256,410518,107478 +h1,12845:6630773,40611349:0,0,0 +g1,12845:6946919,40611349 +g1,12845:7263065,40611349 +g1,12845:14534416,40611349 +g1,12845:19276602,40611349 +g1,12845:21805768,40611349 +g1,12845:22438060,40611349 +g1,12845:25915663,40611349 +g1,12845:28760974,40611349 +g1,12845:29393266,40611349 +h1,12845:30973995,40611349:0,0,0 +k1,12845:32583029,40611349:1609034 +g1,12845:32583029,40611349 +) +(1,12846:6630773,41277527:25952256,410518,107478 +h1,12846:6630773,41277527:0,0,0 +g1,12846:9159939,41277527 +g1,12846:10108377,41277527 +k1,12846:10108377,41277527:0 +h1,12846:19592747,41277527:0,0,0 +k1,12846:32583029,41277527:12990282 +g1,12846:32583029,41277527 +) +(1,12847:6630773,41943705:25952256,404226,107478 +h1,12847:6630773,41943705:0,0,0 +g1,12847:9159939,41943705 +g1,12847:10108377,41943705 +g1,12847:12953689,41943705 +g1,12847:13585981,41943705 +g1,12847:15166711,41943705 +g1,12847:17063586,41943705 +g1,12847:17695878,41943705 +g1,12847:18328170,41943705 +g1,12847:20225045,41943705 +g1,12847:21805774,41943705 +g1,12847:24018794,41943705 +g1,12847:24651086,41943705 +g1,12847:26231816,41943705 +g1,12847:28128690,41943705 +g1,12847:28760982,41943705 +k1,12847:28760982,41943705:0 +h1,12847:30974004,41943705:0,0,0 +k1,12847:32583029,41943705:1609025 +g1,12847:32583029,41943705 +) +(1,12848:6630773,42609883:25952256,404226,107478 +h1,12848:6630773,42609883:0,0,0 +g1,12848:6946919,42609883 +g1,12848:7263065,42609883 +g1,12848:7579211,42609883 +g1,12848:7895357,42609883 +g1,12848:8211503,42609883 +g1,12848:8527649,42609883 +g1,12848:8843795,42609883 +g1,12848:9159941,42609883 +g1,12848:9476087,42609883 +g1,12848:9792233,42609883 +g1,12848:10108379,42609883 +g1,12848:10424525,42609883 +g1,12848:10740671,42609883 +g1,12848:11056817,42609883 +g1,12848:11372963,42609883 +g1,12848:11689109,42609883 +g1,12848:12005255,42609883 +g1,12848:12321401,42609883 +g1,12848:14218275,42609883 +g1,12848:14850567,42609883 +g1,12848:23702646,42609883 +g1,12848:24334938,42609883 +k1,12848:24334938,42609883:0 +h1,12848:28760978,42609883:0,0,0 +k1,12848:32583029,42609883:3822051 +g1,12848:32583029,42609883 +) +(1,12849:6630773,43276061:25952256,404226,107478 +h1,12849:6630773,43276061:0,0,0 +g1,12849:6946919,43276061 +g1,12849:7263065,43276061 +g1,12849:7579211,43276061 +g1,12849:7895357,43276061 +g1,12849:8211503,43276061 +g1,12849:8527649,43276061 +g1,12849:8843795,43276061 +g1,12849:9159941,43276061 +g1,12849:9476087,43276061 +g1,12849:9792233,43276061 +g1,12849:10108379,43276061 +g1,12849:10424525,43276061 +g1,12849:10740671,43276061 +g1,12849:11056817,43276061 +g1,12849:11372963,43276061 +g1,12849:11689109,43276061 +g1,12849:12005255,43276061 +g1,12849:12321401,43276061 +g1,12849:12637547,43276061 +g1,12849:12953693,43276061 +g1,12849:13269839,43276061 +g1,12849:13585985,43276061 +g1,12849:13902131,43276061 +g1,12849:14218277,43276061 +g1,12849:14534423,43276061 +g1,12849:14850569,43276061 +g1,12849:15166715,43276061 +g1,12849:15482861,43276061 +g1,12849:15799007,43276061 +g1,12849:16115153,43276061 +g1,12849:16431299,43276061 +g1,12849:23702650,43276061 +g1,12849:24334942,43276061 +h1,12849:27496399,43276061:0,0,0 +k1,12849:32583029,43276061:5086630 +g1,12849:32583029,43276061 +) +(1,12850:6630773,43942239:25952256,0,0 +h1,12850:6630773,43942239:0,0,0 +h1,12850:6630773,43942239:0,0,0 +k1,12850:32583029,43942239:25952256 +g1,12850:32583029,43942239 +) +(1,12851:6630773,44608417:25952256,404226,107478 +h1,12851:6630773,44608417:0,0,0 +g1,12851:9476084,44608417 +h1,12851:9792230,44608417:0,0,0 +k1,12851:32583030,44608417:22790800 +g1,12851:32583030,44608417 +) +(1,12852:6630773,45274595:25952256,404226,107478 +h1,12852:6630773,45274595:0,0,0 +g1,12852:6946919,45274595 +g1,12852:7263065,45274595 +g1,12852:12005251,45274595 +g1,12852:12637543,45274595 +k1,12852:12637543,45274595:0 +h1,12852:15166709,45274595:0,0,0 +k1,12852:32583029,45274595:17416320 +g1,12852:32583029,45274595 +) +] +) +g1,12856:32583029,45382073 +g1,12856:6630773,45382073 +g1,12856:6630773,45382073 +g1,12856:32583029,45382073 +g1,12856:32583029,45382073 +) +] +(1,12856:32583029,45706769:0,0,0 +g1,12856:32583029,45706769 +) +) +] +(1,12856:6630773,47279633:25952256,0,0 +h1,12856:6630773,47279633:25952256,0,0 +) +] +h1,12856:4262630,4025873:0,0,0 +] +!24070 +}246 +Input:1765:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1766:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1767:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1768:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1769:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1770:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1771:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1772:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1773:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1774:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 +{247 +[1,12889:4262630,47279633:28320399,43253760,0 +(1,12889:4262630,4025873:0,0,0 +[1,12889:-473657,4025873:25952256,0,0 +(1,12889:-473657,-710414:25952256,0,0 +h1,12889:-473657,-710414:0,0,0 +(1,12889:-473657,-710414:0,0,0 +(1,12889:-473657,-710414:0,0,0 +g1,12889:-473657,-710414 +(1,12889:-473657,-710414:65781,0,65781 +g1,12889:-407876,-710414 +[1,12889:-407876,-644633:0,0,0 ] ) -k1,12870:-473657,-710414:-65781 +k1,12889:-473657,-710414:-65781 ) ) -k1,12870:25478599,-710414:25952256 -g1,12870:25478599,-710414 +k1,12889:25478599,-710414:25952256 +g1,12889:25478599,-710414 ) ] ) -[1,12870:6630773,47279633:25952256,43253760,0 -[1,12870:6630773,4812305:25952256,786432,0 -(1,12870:6630773,4812305:25952256,485622,11795 -(1,12870:6630773,4812305:25952256,485622,11795 -g1,12870:3078558,4812305 -[1,12870:3078558,4812305:0,0,0 -(1,12870:3078558,2439708:0,1703936,0 -k1,12870:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12870:2537886,2439708:1179648,16384,0 +[1,12889:6630773,47279633:25952256,43253760,0 +[1,12889:6630773,4812305:25952256,786432,0 +(1,12889:6630773,4812305:25952256,513147,134348 +(1,12889:6630773,4812305:25952256,513147,134348 +g1,12889:3078558,4812305 +[1,12889:3078558,4812305:0,0,0 +(1,12889:3078558,2439708:0,1703936,0 +k1,12889:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12889:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12870:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12889:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12870:3078558,4812305:0,0,0 -(1,12870:3078558,2439708:0,1703936,0 -g1,12870:29030814,2439708 -g1,12870:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12870:36151628,1915420:16384,1179648,0 +[1,12889:3078558,4812305:0,0,0 +(1,12889:3078558,2439708:0,1703936,0 +g1,12889:29030814,2439708 +g1,12889:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12889:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12870:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12889:37855564,2439708:1179648,16384,0 ) ) -k1,12870:3078556,2439708:-34777008 +k1,12889:3078556,2439708:-34777008 ) ] -[1,12870:3078558,4812305:0,0,0 -(1,12870:3078558,49800853:0,16384,2228224 -k1,12870:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12870:2537886,49800853:1179648,16384,0 +[1,12889:3078558,4812305:0,0,0 +(1,12889:3078558,49800853:0,16384,2228224 +k1,12889:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12889:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12870:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,12870:3078558,4812305:0,0,0 -(1,12870:3078558,49800853:0,16384,2228224 -g1,12870:29030814,49800853 -g1,12870:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12870:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12870:37855564,49800853:1179648,16384,0 -) -) -k1,12870:3078556,49800853:-34777008 -) -] -g1,12870:6630773,4812305 -g1,12870:6630773,4812305 -g1,12870:10347975,4812305 -k1,12870:31387651,4812305:21039676 -) -) -] -[1,12870:6630773,45706769:25952256,40108032,0 -(1,12870:6630773,45706769:25952256,40108032,0 -(1,12870:6630773,45706769:0,0,0 -g1,12870:6630773,45706769 -) -[1,12870:6630773,45706769:25952256,40108032,0 -v1,12837:6630773,6254097:0,393216,0 -(1,12837:6630773,7235371:25952256,1374490,196608 -g1,12837:6630773,7235371 -g1,12837:6630773,7235371 -g1,12837:6434165,7235371 -(1,12837:6434165,7235371:0,1374490,196608 -r1,12837:32779637,7235371:26345472,1571098,196608 -k1,12837:6434165,7235371:-26345472 -) -(1,12837:6434165,7235371:26345472,1374490,196608 -[1,12837:6630773,7235371:25952256,1177882,0 -(1,12834:6630773,6461715:25952256,404226,107478 -h1,12834:6630773,6461715:0,0,0 -k1,12834:6935848,6461715:305075 -k1,12834:7240923,6461715:305075 -k1,12834:7545998,6461715:305075 -k1,12834:7851073,6461715:305075 -k1,12834:8156148,6461715:305075 -k1,12834:8461223,6461715:305075 -k1,12834:8766298,6461715:305075 -k1,12834:9071373,6461715:305075 -k1,12834:9376448,6461715:305075 -k1,12834:9681523,6461715:305075 -k1,12834:9986598,6461715:305075 -k1,12834:10291673,6461715:305075 -k1,12834:12177476,6461715:305074 -k1,12834:12798697,6461715:305075 -k1,12834:13736064,6461715:305075 -k1,12834:14357285,6461715:305075 -k1,12834:14978506,6461715:305075 -k1,12834:15915873,6461715:305075 -k1,12834:17801676,6461715:305075 -k1,12834:18422897,6461715:305075 -k1,12834:20624846,6461715:305075 -k1,12834:23775232,6461715:305075 -k1,12834:24396453,6461715:305075 -k1,12834:26914548,6461715:305075 -k1,12834:29748788,6461715:305075 -k1,12834:30370009,6461715:305075 -k1,12834:30370009,6461715:0 -h1,12834:32583029,6461715:0,0,0 -k1,12834:32583029,6461715:0 -k1,12834:32583029,6461715:0 -) -(1,12835:6630773,7127893:25952256,404226,107478 -h1,12835:6630773,7127893:0,0,0 -g1,12835:6946919,7127893 -g1,12835:7263065,7127893 -g1,12835:7579211,7127893 -g1,12835:7895357,7127893 -g1,12835:8211503,7127893 -g1,12835:8527649,7127893 -g1,12835:8843795,7127893 -g1,12835:9159941,7127893 -g1,12835:9476087,7127893 -g1,12835:9792233,7127893 -g1,12835:10108379,7127893 -g1,12835:10424525,7127893 -g1,12835:10740671,7127893 -g1,12835:11056817,7127893 -g1,12835:11372963,7127893 -g1,12835:11689109,7127893 -g1,12835:13585983,7127893 -g1,12835:14218275,7127893 -g1,12835:17379732,7127893 -g1,12835:19276606,7127893 -g1,12835:19908898,7127893 -h1,12835:22754209,7127893:0,0,0 -k1,12835:32583029,7127893:9828820 -g1,12835:32583029,7127893 -) -] -) -g1,12837:32583029,7235371 -g1,12837:6630773,7235371 -g1,12837:6630773,7235371 -g1,12837:32583029,7235371 -g1,12837:32583029,7235371 -) -h1,12837:6630773,7431979:0,0,0 -(1,12840:6630773,17084492:25952256,9062689,0 -k1,12840:10523651,17084492:3892878 -h1,12839:10523651,17084492:0,0,0 -(1,12839:10523651,17084492:18166500,9062689,0 -(1,12839:10523651,17084492:18167381,9062712,0 -(1,12839:10523651,17084492:18167381,9062712,0 -(1,12839:10523651,17084492:0,9062712,0 -(1,12839:10523651,17084492:0,14155776,0 -(1,12839:10523651,17084492:28377088,14155776,0 -) -k1,12839:10523651,17084492:-28377088 -) -) -g1,12839:28691032,17084492 -) -) -) -g1,12840:28690151,17084492 -k1,12840:32583029,17084492:3892878 -) -v1,12849:6630773,18450268:0,393216,0 -(1,12870:6630773,37181089:25952256,19124037,589824 -g1,12870:6630773,37181089 -(1,12870:6630773,37181089:25952256,19124037,589824 -(1,12870:6630773,37770913:25952256,19713861,0 -[1,12870:6630773,37770913:25952256,19713861,0 -(1,12870:6630773,37770913:25952256,19687647,0 -r1,12870:6656987,37770913:26214,19687647,0 -[1,12870:6656987,37770913:25899828,19687647,0 -(1,12870:6656987,37181089:25899828,18507999,0 -[1,12870:7246811,37181089:24720180,18507999,0 -(1,12850:7246811,19834975:24720180,1161885,196608 -(1,12849:7246811,19834975:0,1161885,196608 -r1,12870:8794447,19834975:1547636,1358493,196608 -k1,12849:7246811,19834975:-1547636 -) -(1,12849:7246811,19834975:1547636,1161885,196608 -) -k1,12849:9096600,19834975:302153 -k1,12849:10788773,19834975:302154 -k1,12849:13810015,19834975:302153 -k1,12849:16542243,19834975:302153 -k1,12849:17863482,19834975:302154 -k1,12849:20961401,19834975:302153 -k1,12849:24289351,19834975:302153 -k1,12849:25876010,19834975:302153 -k1,12849:27644860,19834975:302154 -k1,12849:30775546,19834975:302153 -k1,12849:31966991,19834975:0 -) -(1,12850:7246811,20676463:24720180,513147,126483 -k1,12849:9724071,20676463:198574 -k1,12849:11015130,20676463:198574 -k1,12849:13099830,20676463:198574 -k1,12849:14317489,20676463:198574 -k1,12849:16314371,20676463:198574 -k1,12849:17902964,20676463:198574 -k1,12849:20958253,20676463:198575 -k1,12849:23919170,20676463:198574 -k1,12849:25834132,20676463:198574 -k1,12849:26691998,20676463:198574 -k1,12849:28508656,20676463:198574 -k1,12849:29654881,20676463:198574 -k1,12850:31966991,20676463:0 -) -(1,12850:7246811,21517951:24720180,513147,134348 -k1,12849:8722681,21517951:155320 -k1,12849:9897086,21517951:155320 -k1,12849:13790581,21517951:155321 -k1,12849:14605193,21517951:155320 -k1,12849:17705046,21517951:155320 -k1,12849:19870355,21517951:155320 -k1,12849:21044760,21517951:155320 -k1,12849:23724527,21517951:155320 -k1,12849:25400939,21517951:155321 -k1,12849:26454102,21517951:155320 -k1,12849:29601141,21517951:155320 -k1,12849:31966991,21517951:0 -) -(1,12850:7246811,22359439:24720180,505283,115847 -k1,12849:8649737,22359439:199685 -k1,12849:10075600,22359439:199684 -k1,12849:11435272,22359439:199685 -k1,12849:12727442,22359439:199685 -(1,12849:12727442,22359439:0,452978,115847 -r1,12870:15547691,22359439:2820249,568825,115847 -k1,12849:12727442,22359439:-2820249 -) -(1,12849:12727442,22359439:2820249,452978,115847 -k1,12849:12727442,22359439:3277 -h1,12849:15544414,22359439:0,411205,112570 -) -k1,12849:15747375,22359439:199684 -k1,12849:17336423,22359439:199685 -k1,12849:21447951,22359439:199684 -k1,12849:24491899,22359439:199685 -k1,12849:28429758,22359439:199685 -k1,12849:29733724,22359439:199684 -k1,12849:30681175,22359439:199685 -k1,12849:31966991,22359439:0 -) -(1,12850:7246811,23200927:24720180,513147,134348 -k1,12849:9111928,23200927:170356 -k1,12849:9898323,23200927:170357 -k1,12849:12691430,23200927:170356 -k1,12849:14479871,23200927:170357 -k1,12849:15796452,23200927:170356 -(1,12849:15796452,23200927:0,452978,115847 -r1,12870:17209853,23200927:1413401,568825,115847 -k1,12849:15796452,23200927:-1413401 -) -(1,12849:15796452,23200927:1413401,452978,115847 -k1,12849:15796452,23200927:3277 -h1,12849:17206576,23200927:0,411205,112570 -) -k1,12849:17553880,23200927:170357 -k1,12849:19318072,23200927:170356 -k1,12849:21465650,23200927:170357 -k1,12849:23334044,23200927:170356 -k1,12849:26091107,23200927:170357 -k1,12849:27655414,23200927:170356 -k1,12849:30359393,23200927:170357 -k1,12849:31966991,23200927:0 -) -(1,12850:7246811,24042415:24720180,505283,126483 -k1,12849:8032171,24042415:253863 -k1,12849:8937461,24042415:253862 -k1,12849:10283809,24042415:253863 -k1,12849:12307144,24042415:253863 -k1,12849:16134685,24042415:253863 -k1,12849:18479145,24042415:253862 -k1,12849:22528197,24042415:253863 -k1,12849:24667531,24042415:253863 -k1,12849:25912954,24042415:253863 -k1,12849:29364318,24042415:253862 -k1,12849:30304343,24042415:253863 -k1,12850:31966991,24042415:0 -) -(1,12850:7246811,24883903:24720180,513147,134348 -k1,12849:8818242,24883903:205005 -k1,12849:9639285,24883903:205005 -k1,12849:10863374,24883903:205004 -k1,12849:12848992,24883903:205005 -k1,12849:13452456,24883903:205005 -k1,12849:14308889,24883903:205005 -k1,12849:15086023,24883903:205005 -k1,12849:17650324,24883903:205005 -k1,12849:18506756,24883903:205004 -k1,12849:19730846,24883903:205005 -k1,12849:23611110,24883903:205005 -k1,12849:24475407,24883903:205005 -k1,12849:25699497,24883903:205005 -k1,12849:27534381,24883903:205004 -k1,12849:28398678,24883903:205005 -k1,12849:29622768,24883903:205005 -k1,12849:31966991,24883903:0 -) -(1,12850:7246811,25725391:24720180,513147,134348 -g1,12849:10347974,25725391 -g1,12849:11941154,25725391 -g1,12849:14014713,25725391 -g1,12849:14826704,25725391 -g1,12849:16045018,25725391 -g1,12849:18000612,25725391 -g1,12849:19273976,25725391 -k1,12850:31966991,25725391:10452339 -g1,12850:31966991,25725391 -) -(1,12852:7246811,26566879:24720180,505283,138281 -h1,12851:7246811,26566879:983040,0,0 -k1,12851:11043551,26566879:278767 -k1,12851:14150850,26566879:278766 -k1,12851:17581899,26566879:278767 -$1,12851:17581899,26566879 -$1,12851:18084560,26566879 -k1,12851:18363327,26566879:278767 -k1,12851:19833539,26566879:278767 -$1,12851:19833539,26566879 -$1,12851:20385352,26566879 -k1,12851:20664118,26566879:278766 -k1,12851:24681059,26566879:278767 -k1,12851:25575864,26566879:278767 -(1,12851:25575864,26566879:0,452978,115847 -r1,12870:28396113,26566879:2820249,568825,115847 -k1,12851:25575864,26566879:-2820249 -) -(1,12851:25575864,26566879:2820249,452978,115847 -k1,12851:25575864,26566879:3277 -h1,12851:28392836,26566879:0,411205,112570 -) -k1,12851:28674879,26566879:278766 -k1,12851:30343009,26566879:278767 -k1,12852:31966991,26566879:0 -) -(1,12852:7246811,27408367:24720180,505283,134348 -k1,12851:10080533,27408367:332868 -k1,12851:11604846,27408367:332868 -k1,12851:14407111,27408367:332868 -k1,12851:16715234,27408367:332868 -k1,12851:17699530,27408367:332868 -k1,12851:18780164,27408367:332868 -k1,12851:21411380,27408367:332868 -k1,12851:22395676,27408367:332868 -k1,12851:23706997,27408367:332868 -k1,12851:26329038,27408367:332868 -k1,12851:27865147,27408367:332868 -k1,12851:31479403,27408367:332868 -k1,12851:31966991,27408367:0 -) -(1,12852:7246811,28249855:24720180,505283,134348 -k1,12851:9470884,28249855:272411 -k1,12851:12076378,28249855:272412 -k1,12851:14961054,28249855:272411 -k1,12851:15764963,28249855:272412 -k1,12851:18888190,28249855:272411 -k1,12851:19922130,28249855:272412 -k1,12851:22774693,28249855:272411 -k1,12851:26094528,28249855:272412 -k1,12851:28925465,28249855:272411 -k1,12852:31966991,28249855:0 -) -(1,12852:7246811,29091343:24720180,513147,134348 -(1,12851:7246811,29091343:0,414482,115847 -r1,12870:8660212,29091343:1413401,530329,115847 -k1,12851:7246811,29091343:-1413401 -) -(1,12851:7246811,29091343:1413401,414482,115847 -k1,12851:7246811,29091343:3277 -h1,12851:8656935,29091343:0,411205,112570 -) -k1,12851:9007479,29091343:347267 -k1,12851:10546190,29091343:347266 -(1,12851:10546190,29091343:0,414482,115847 -r1,12870:11959591,29091343:1413401,530329,115847 -k1,12851:10546190,29091343:-1413401 -) -(1,12851:10546190,29091343:1413401,414482,115847 -k1,12851:10546190,29091343:3277 -h1,12851:11956314,29091343:0,411205,112570 -) -k1,12851:12306858,29091343:347267 -k1,12851:13845569,29091343:347266 -k1,12851:17632821,29091343:347267 -k1,12851:19264593,29091343:347266 -k1,12851:22138273,29091343:347267 -k1,12851:24298265,29091343:347266 -k1,12851:25390021,29091343:347267 -k1,12851:26756372,29091343:347266 -k1,12851:28529047,29091343:347267 -k1,12851:29535605,29091343:347266 -k1,12852:31966991,29091343:0 -) -(1,12852:7246811,29932831:24720180,505283,122846 -(1,12851:7246811,29932831:0,452978,122846 -r1,12870:12529042,29932831:5282231,575824,122846 -k1,12851:7246811,29932831:-5282231 -) -(1,12851:7246811,29932831:5282231,452978,122846 -k1,12851:7246811,29932831:3277 -h1,12851:12525765,29932831:0,411205,112570 -) -k1,12851:12996556,29932831:293844 -(1,12851:12996556,29932831:0,452978,122846 -r1,12870:18630499,29932831:5633943,575824,122846 -k1,12851:12996556,29932831:-5633943 -) -(1,12851:12996556,29932831:5633943,452978,122846 -k1,12851:12996556,29932831:3277 -h1,12851:18627222,29932831:0,411205,112570 -) -k1,12851:19098014,29932831:293845 -(1,12851:19098014,29932831:0,452978,122846 -r1,12870:24731957,29932831:5633943,575824,122846 -k1,12851:19098014,29932831:-5633943 -) -(1,12851:19098014,29932831:5633943,452978,122846 -k1,12851:19098014,29932831:3277 -h1,12851:24728680,29932831:0,411205,112570 -) -k1,12851:25199471,29932831:293844 -(1,12851:25199471,29932831:0,452978,122846 -r1,12870:30481702,29932831:5282231,575824,122846 -k1,12851:25199471,29932831:-5282231 -) -(1,12851:25199471,29932831:5282231,452978,122846 -k1,12851:25199471,29932831:3277 -h1,12851:30478425,29932831:0,411205,112570 -) -k1,12851:30775546,29932831:293844 -k1,12852:31966991,29932831:0 -) -(1,12852:7246811,30774319:24720180,513147,134348 -(1,12851:7246811,30774319:0,452978,122846 -r1,12870:12529042,30774319:5282231,575824,122846 -k1,12851:7246811,30774319:-5282231 -) -(1,12851:7246811,30774319:5282231,452978,122846 -k1,12851:7246811,30774319:3277 -h1,12851:12525765,30774319:0,411205,112570 -) -k1,12851:12881258,30774319:178546 -k1,12851:14934134,30774319:178546 -k1,12851:18552664,30774319:178545 -k1,12851:19722770,30774319:178546 -k1,12851:21878537,30774319:178546 -k1,12851:23004734,30774319:178546 -k1,12851:26623264,30774319:178545 -k1,12851:28409408,30774319:178546 -k1,12851:29779399,30774319:178546 -k1,12851:31966991,30774319:0 -) -(1,12852:7246811,31615807:24720180,505283,134348 -k1,12851:9351172,31615807:223478 -k1,12851:10187411,31615807:223477 -k1,12851:13355422,31615807:223478 -k1,12851:15938196,31615807:223478 -k1,12851:16813101,31615807:223477 -k1,12851:18055664,31615807:223478 -k1,12851:20803588,31615807:223477 -k1,12851:22374486,31615807:223478 -k1,12851:23882470,31615807:223478 -k1,12851:26333516,31615807:223477 -k1,12851:28686259,31615807:223478 -k1,12851:31966991,31615807:0 -) -(1,12852:7246811,32457295:24720180,513147,134348 -k1,12851:9458815,32457295:179077 -k1,12851:12400235,32457295:179077 -k1,12851:14360581,32457295:179077 -k1,12851:15222543,32457295:179077 -k1,12851:17434547,32457295:179077 -k1,12851:19687838,32457295:179077 -k1,12851:21564953,32457295:179077 -k1,12851:23479423,32457295:179077 -k1,12851:25547248,32457295:179077 -k1,12851:27120276,32457295:179077 -k1,12851:28547159,32457295:179077 -k1,12851:29978629,32457295:179077 -k1,12851:31966991,32457295:0 -) -(1,12852:7246811,33298783:24720180,513147,134348 -k1,12851:9175297,33298783:191782 -k1,12851:12874566,33298783:191782 -k1,12851:14446536,33298783:191782 -k1,12851:17068393,33298783:191782 -k1,12851:19943219,33298783:191782 -k1,12851:20751040,33298783:191783 -k1,12851:21961907,33298783:191782 -k1,12851:25022855,33298783:191782 -k1,12851:27180062,33298783:191782 -k1,12851:28023272,33298783:191782 -k1,12851:30977397,33298783:191782 -k1,12852:31966991,33298783:0 -) -(1,12852:7246811,34140271:24720180,505283,126483 -g1,12851:8743653,34140271 -g1,12851:10134327,34140271 -g1,12851:11842195,34140271 -k1,12852:31966990,34140271:17006592 -g1,12852:31966990,34140271 -) -v1,12854:7246811,35330737:0,393216,0 -(1,12860:7246811,36984481:24720180,2046960,196608 -g1,12860:7246811,36984481 -g1,12860:7246811,36984481 -g1,12860:7050203,36984481 -(1,12860:7050203,36984481:0,2046960,196608 -r1,12870:32163599,36984481:25113396,2243568,196608 -k1,12860:7050203,36984481:-25113396 -) -(1,12860:7050203,36984481:25113396,2046960,196608 -[1,12860:7246811,36984481:24720180,1850352,0 -(1,12856:7246811,35544647:24720180,410518,107478 -(1,12855:7246811,35544647:0,0,0 -g1,12855:7246811,35544647 -g1,12855:7246811,35544647 -g1,12855:6919131,35544647 -(1,12855:6919131,35544647:0,0,0 -) -g1,12855:7246811,35544647 -) -k1,12856:7246811,35544647:0 -g1,12856:11040560,35544647 -g1,12856:11672852,35544647 -g1,12856:14202018,35544647 -g1,12856:16098893,35544647 -g1,12856:16731185,35544647 -g1,12856:18628060,35544647 -g1,12856:19260352,35544647 -g1,12856:19892644,35544647 -g1,12856:21473373,35544647 -g1,12856:23370247,35544647 -g1,12856:24002539,35544647 -g1,12856:28428579,35544647 -h1,12856:28744725,35544647:0,0,0 -k1,12856:31966991,35544647:3222266 -g1,12856:31966991,35544647 -) -(1,12857:7246811,36210825:24720180,404226,107478 -h1,12857:7246811,36210825:0,0,0 -g1,12857:7562957,36210825 -g1,12857:7879103,36210825 -g1,12857:11988997,36210825 -h1,12857:12305143,36210825:0,0,0 -k1,12857:31966991,36210825:19661848 -g1,12857:31966991,36210825 -) -(1,12858:7246811,36877003:24720180,404226,107478 -h1,12858:7246811,36877003:0,0,0 -g1,12858:7562957,36877003 -g1,12858:7879103,36877003 -g1,12858:14202018,36877003 -g1,12858:14834310,36877003 -g1,12858:16415039,36877003 -g1,12858:17995768,36877003 -g1,12858:18628060,36877003 -g1,12858:20208789,36877003 -g1,12858:22105663,36877003 -g1,12858:22737955,36877003 -g1,12858:23686392,36877003 -g1,12858:26215558,36877003 -g1,12858:28112432,36877003 -g1,12858:28744724,36877003 -h1,12858:31273890,36877003:0,0,0 -k1,12858:31966991,36877003:693101 -g1,12858:31966991,36877003 -) -] -) -g1,12860:31966991,36984481 -g1,12860:7246811,36984481 -g1,12860:7246811,36984481 -g1,12860:31966991,36984481 -g1,12860:31966991,36984481 -) -h1,12860:7246811,37181089:0,0,0 -] -) -] -r1,12870:32583029,37770913:26214,19687647,0 -) -] -) -) -g1,12870:32583029,37181089 -) -] -(1,12870:32583029,45706769:0,0,0 -g1,12870:32583029,45706769 -) -) -] -(1,12870:6630773,47279633:25952256,0,0 -h1,12870:6630773,47279633:25952256,0,0 -) -] -h1,12870:4262630,4025873:0,0,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12889:3078558,51504789:16384,1179648,0 +) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,12889:3078558,4812305:0,0,0 +(1,12889:3078558,49800853:0,16384,2228224 +g1,12889:29030814,49800853 +g1,12889:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12889:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12889:37855564,49800853:1179648,16384,0 +) +) +k1,12889:3078556,49800853:-34777008 +) +] +g1,12889:6630773,4812305 +k1,12889:25712890,4812305:17886740 +g1,12889:29057847,4812305 +g1,12889:29873114,4812305 +) +) +] +[1,12889:6630773,45706769:25952256,40108032,0 +(1,12889:6630773,45706769:25952256,40108032,0 +(1,12889:6630773,45706769:0,0,0 +g1,12889:6630773,45706769 +) +[1,12889:6630773,45706769:25952256,40108032,0 +v1,12856:6630773,6254097:0,393216,0 +(1,12856:6630773,7235371:25952256,1374490,196608 +g1,12856:6630773,7235371 +g1,12856:6630773,7235371 +g1,12856:6434165,7235371 +(1,12856:6434165,7235371:0,1374490,196608 +r1,12856:32779637,7235371:26345472,1571098,196608 +k1,12856:6434165,7235371:-26345472 +) +(1,12856:6434165,7235371:26345472,1374490,196608 +[1,12856:6630773,7235371:25952256,1177882,0 +(1,12853:6630773,6461715:25952256,404226,107478 +h1,12853:6630773,6461715:0,0,0 +k1,12853:6935848,6461715:305075 +k1,12853:7240923,6461715:305075 +k1,12853:7545998,6461715:305075 +k1,12853:7851073,6461715:305075 +k1,12853:8156148,6461715:305075 +k1,12853:8461223,6461715:305075 +k1,12853:8766298,6461715:305075 +k1,12853:9071373,6461715:305075 +k1,12853:9376448,6461715:305075 +k1,12853:9681523,6461715:305075 +k1,12853:9986598,6461715:305075 +k1,12853:10291673,6461715:305075 +k1,12853:12177476,6461715:305074 +k1,12853:12798697,6461715:305075 +k1,12853:13736064,6461715:305075 +k1,12853:14357285,6461715:305075 +k1,12853:14978506,6461715:305075 +k1,12853:15915873,6461715:305075 +k1,12853:17801676,6461715:305075 +k1,12853:18422897,6461715:305075 +k1,12853:20624846,6461715:305075 +k1,12853:23775232,6461715:305075 +k1,12853:24396453,6461715:305075 +k1,12853:26914548,6461715:305075 +k1,12853:29748788,6461715:305075 +k1,12853:30370009,6461715:305075 +k1,12853:30370009,6461715:0 +h1,12853:32583029,6461715:0,0,0 +k1,12853:32583029,6461715:0 +k1,12853:32583029,6461715:0 +) +(1,12854:6630773,7127893:25952256,404226,107478 +h1,12854:6630773,7127893:0,0,0 +g1,12854:6946919,7127893 +g1,12854:7263065,7127893 +g1,12854:7579211,7127893 +g1,12854:7895357,7127893 +g1,12854:8211503,7127893 +g1,12854:8527649,7127893 +g1,12854:8843795,7127893 +g1,12854:9159941,7127893 +g1,12854:9476087,7127893 +g1,12854:9792233,7127893 +g1,12854:10108379,7127893 +g1,12854:10424525,7127893 +g1,12854:10740671,7127893 +g1,12854:11056817,7127893 +g1,12854:11372963,7127893 +g1,12854:11689109,7127893 +g1,12854:13585983,7127893 +g1,12854:14218275,7127893 +g1,12854:17379732,7127893 +g1,12854:19276606,7127893 +g1,12854:19908898,7127893 +h1,12854:22754209,7127893:0,0,0 +k1,12854:32583029,7127893:9828820 +g1,12854:32583029,7127893 +) +] +) +g1,12856:32583029,7235371 +g1,12856:6630773,7235371 +g1,12856:6630773,7235371 +g1,12856:32583029,7235371 +g1,12856:32583029,7235371 +) +h1,12856:6630773,7431979:0,0,0 +(1,12859:6630773,17084492:25952256,9062689,0 +k1,12859:10523651,17084492:3892878 +h1,12858:10523651,17084492:0,0,0 +(1,12858:10523651,17084492:18166500,9062689,0 +(1,12858:10523651,17084492:18167381,9062712,0 +(1,12858:10523651,17084492:18167381,9062712,0 +(1,12858:10523651,17084492:0,9062712,0 +(1,12858:10523651,17084492:0,14155776,0 +(1,12858:10523651,17084492:28377088,14155776,0 +) +k1,12858:10523651,17084492:-28377088 +) +) +g1,12858:28691032,17084492 +) +) +) +g1,12859:28690151,17084492 +k1,12859:32583029,17084492:3892878 +) +v1,12868:6630773,18450268:0,393216,0 +(1,12889:6630773,37181089:25952256,19124037,589824 +g1,12889:6630773,37181089 +(1,12889:6630773,37181089:25952256,19124037,589824 +(1,12889:6630773,37770913:25952256,19713861,0 +[1,12889:6630773,37770913:25952256,19713861,0 +(1,12889:6630773,37770913:25952256,19687647,0 +r1,12889:6656987,37770913:26214,19687647,0 +[1,12889:6656987,37770913:25899828,19687647,0 +(1,12889:6656987,37181089:25899828,18507999,0 +[1,12889:7246811,37181089:24720180,18507999,0 +(1,12869:7246811,19834975:24720180,1161885,196608 +(1,12868:7246811,19834975:0,1161885,196608 +r1,12889:8794447,19834975:1547636,1358493,196608 +k1,12868:7246811,19834975:-1547636 +) +(1,12868:7246811,19834975:1547636,1161885,196608 +) +k1,12868:9096600,19834975:302153 +k1,12868:10788773,19834975:302154 +k1,12868:13810015,19834975:302153 +k1,12868:16542243,19834975:302153 +k1,12868:17863482,19834975:302154 +k1,12868:20961401,19834975:302153 +k1,12868:24289351,19834975:302153 +k1,12868:25876010,19834975:302153 +k1,12868:27644860,19834975:302154 +k1,12868:30775546,19834975:302153 +k1,12868:31966991,19834975:0 +) +(1,12869:7246811,20676463:24720180,513147,126483 +k1,12868:9696546,20676463:171049 +k1,12868:10960080,20676463:171049 +k1,12868:13017255,20676463:171049 +k1,12868:14207389,20676463:171049 +k1,12868:16176746,20676463:171049 +k1,12868:17737813,20676463:171048 +k1,12868:20765576,20676463:171049 +k1,12868:23698968,20676463:171049 +k1,12868:25586405,20676463:171049 +k1,12868:26416746,20676463:171049 +k1,12868:28205879,20676463:171049 +k1,12868:29324579,20676463:171049 +k1,12869:31966991,20676463:0 +) +(1,12869:7246811,21517951:24720180,513147,134348 +k1,12868:8422408,21517951:185348 +k1,12868:9626840,21517951:185347 +k1,12868:13550362,21517951:185348 +k1,12868:14395001,21517951:185347 +k1,12868:17524882,21517951:185348 +k1,12868:19720218,21517951:185347 +k1,12868:20924651,21517951:185348 +k1,12868:23634445,21517951:185347 +k1,12868:25340884,21517951:185348 +k1,12868:26424074,21517951:185347 +k1,12868:29601141,21517951:185348 +k1,12868:31966991,21517951:0 +) +(1,12869:7246811,22359439:24720180,505283,115847 +k1,12868:8649737,22359439:199685 +k1,12868:10075600,22359439:199684 +k1,12868:11435272,22359439:199685 +k1,12868:12727442,22359439:199685 +(1,12868:12727442,22359439:0,452978,115847 +r1,12889:15547691,22359439:2820249,568825,115847 +k1,12868:12727442,22359439:-2820249 +) +(1,12868:12727442,22359439:2820249,452978,115847 +k1,12868:12727442,22359439:3277 +h1,12868:15544414,22359439:0,411205,112570 +) +k1,12868:15747375,22359439:199684 +k1,12868:17336423,22359439:199685 +k1,12868:21447951,22359439:199684 +k1,12868:24491899,22359439:199685 +k1,12868:28429758,22359439:199685 +k1,12868:29733724,22359439:199684 +k1,12868:30681175,22359439:199685 +k1,12868:31966991,22359439:0 +) +(1,12869:7246811,23200927:24720180,513147,134348 +k1,12868:9111928,23200927:170356 +k1,12868:9898323,23200927:170357 +k1,12868:12691430,23200927:170356 +k1,12868:14479871,23200927:170357 +k1,12868:15796452,23200927:170356 +(1,12868:15796452,23200927:0,452978,115847 +r1,12889:17209853,23200927:1413401,568825,115847 +k1,12868:15796452,23200927:-1413401 +) +(1,12868:15796452,23200927:1413401,452978,115847 +k1,12868:15796452,23200927:3277 +h1,12868:17206576,23200927:0,411205,112570 +) +k1,12868:17553880,23200927:170357 +k1,12868:19318072,23200927:170356 +k1,12868:21465650,23200927:170357 +k1,12868:23334044,23200927:170356 +k1,12868:26091107,23200927:170357 +k1,12868:27655414,23200927:170356 +k1,12868:30359393,23200927:170357 +k1,12868:31966991,23200927:0 +) +(1,12869:7246811,24042415:24720180,505283,126483 +k1,12868:8032171,24042415:253863 +k1,12868:8937461,24042415:253862 +k1,12868:10283809,24042415:253863 +k1,12868:12307144,24042415:253863 +k1,12868:16134685,24042415:253863 +k1,12868:18479145,24042415:253862 +k1,12868:22528197,24042415:253863 +k1,12868:24667531,24042415:253863 +k1,12868:25912954,24042415:253863 +k1,12868:29364318,24042415:253862 +k1,12868:30304343,24042415:253863 +k1,12869:31966991,24042415:0 +) +(1,12869:7246811,24883903:24720180,513147,134348 +k1,12868:8818242,24883903:205005 +k1,12868:9639285,24883903:205005 +k1,12868:10863374,24883903:205004 +k1,12868:12848992,24883903:205005 +k1,12868:13452456,24883903:205005 +k1,12868:14308889,24883903:205005 +k1,12868:15086023,24883903:205005 +k1,12868:17650324,24883903:205005 +k1,12868:18506756,24883903:205004 +k1,12868:19730846,24883903:205005 +k1,12868:23611110,24883903:205005 +k1,12868:24475407,24883903:205005 +k1,12868:25699497,24883903:205005 +k1,12868:27534381,24883903:205004 +k1,12868:28398678,24883903:205005 +k1,12868:29622768,24883903:205005 +k1,12868:31966991,24883903:0 +) +(1,12869:7246811,25725391:24720180,513147,134348 +g1,12868:10347974,25725391 +g1,12868:11941154,25725391 +g1,12868:14014713,25725391 +g1,12868:14826704,25725391 +g1,12868:16045018,25725391 +g1,12868:18000612,25725391 +g1,12868:19273976,25725391 +k1,12869:31966991,25725391:10452339 +g1,12869:31966991,25725391 +) +(1,12871:7246811,26566879:24720180,505283,138281 +h1,12870:7246811,26566879:983040,0,0 +k1,12870:11043551,26566879:278767 +k1,12870:14150850,26566879:278766 +k1,12870:17581899,26566879:278767 +$1,12870:17581899,26566879 +$1,12870:18084560,26566879 +k1,12870:18363327,26566879:278767 +k1,12870:19833539,26566879:278767 +$1,12870:19833539,26566879 +$1,12870:20385352,26566879 +k1,12870:20664118,26566879:278766 +k1,12870:24681059,26566879:278767 +k1,12870:25575864,26566879:278767 +(1,12870:25575864,26566879:0,452978,115847 +r1,12889:28396113,26566879:2820249,568825,115847 +k1,12870:25575864,26566879:-2820249 +) +(1,12870:25575864,26566879:2820249,452978,115847 +k1,12870:25575864,26566879:3277 +h1,12870:28392836,26566879:0,411205,112570 +) +k1,12870:28674879,26566879:278766 +k1,12870:30343009,26566879:278767 +k1,12871:31966991,26566879:0 +) +(1,12871:7246811,27408367:24720180,505283,134348 +k1,12870:10080533,27408367:332868 +k1,12870:11604846,27408367:332868 +k1,12870:14407111,27408367:332868 +k1,12870:16715234,27408367:332868 +k1,12870:17699530,27408367:332868 +k1,12870:18780164,27408367:332868 +k1,12870:21411380,27408367:332868 +k1,12870:22395676,27408367:332868 +k1,12870:23706997,27408367:332868 +k1,12870:26329038,27408367:332868 +k1,12870:27865147,27408367:332868 +k1,12870:31479403,27408367:332868 +k1,12870:31966991,27408367:0 +) +(1,12871:7246811,28249855:24720180,505283,134348 +k1,12870:9536639,28249855:338166 +k1,12870:12207887,28249855:338166 +k1,12870:15158318,28249855:338166 +k1,12870:16027981,28249855:338166 +k1,12870:19216962,28249855:338165 +k1,12870:20316656,28249855:338166 +k1,12870:23234974,28249855:338166 +k1,12870:26620563,28249855:338166 +k1,12870:29517255,28249855:338166 +k1,12871:31966991,28249855:0 +) +(1,12871:7246811,29091343:24720180,513147,134348 +k1,12870:8324155,29091343:257488 +(1,12870:8324155,29091343:0,414482,115847 +r1,12889:9737556,29091343:1413401,530329,115847 +k1,12870:8324155,29091343:-1413401 +) +(1,12870:8324155,29091343:1413401,414482,115847 +k1,12870:8324155,29091343:3277 +h1,12870:9734279,29091343:0,411205,112570 +) +k1,12870:9995044,29091343:257488 +k1,12870:11443977,29091343:257488 +(1,12870:11443977,29091343:0,414482,115847 +r1,12889:12857378,29091343:1413401,530329,115847 +k1,12870:11443977,29091343:-1413401 +) +(1,12870:11443977,29091343:1413401,414482,115847 +k1,12870:11443977,29091343:3277 +h1,12870:12854101,29091343:0,411205,112570 +) +k1,12870:13114865,29091343:257487 +k1,12870:14563798,29091343:257488 +k1,12870:18261271,29091343:257488 +k1,12870:19803265,29091343:257488 +k1,12870:22587166,29091343:257488 +k1,12870:24657380,29091343:257488 +k1,12870:25659356,29091343:257487 +k1,12870:26935929,29091343:257488 +k1,12870:28618825,29091343:257488 +k1,12870:29535605,29091343:257488 +k1,12871:31966991,29091343:0 +) +(1,12871:7246811,29932831:24720180,505283,122846 +(1,12870:7246811,29932831:0,452978,122846 +r1,12889:12529042,29932831:5282231,575824,122846 +k1,12870:7246811,29932831:-5282231 +) +(1,12870:7246811,29932831:5282231,452978,122846 +k1,12870:7246811,29932831:3277 +h1,12870:12525765,29932831:0,411205,112570 +) +k1,12870:12996556,29932831:293844 +(1,12870:12996556,29932831:0,452978,122846 +r1,12889:18630499,29932831:5633943,575824,122846 +k1,12870:12996556,29932831:-5633943 +) +(1,12870:12996556,29932831:5633943,452978,122846 +k1,12870:12996556,29932831:3277 +h1,12870:18627222,29932831:0,411205,112570 +) +k1,12870:19098014,29932831:293845 +(1,12870:19098014,29932831:0,452978,122846 +r1,12889:24731957,29932831:5633943,575824,122846 +k1,12870:19098014,29932831:-5633943 +) +(1,12870:19098014,29932831:5633943,452978,122846 +k1,12870:19098014,29932831:3277 +h1,12870:24728680,29932831:0,411205,112570 +) +k1,12870:25199471,29932831:293844 +(1,12870:25199471,29932831:0,452978,122846 +r1,12889:30481702,29932831:5282231,575824,122846 +k1,12870:25199471,29932831:-5282231 +) +(1,12870:25199471,29932831:5282231,452978,122846 +k1,12870:25199471,29932831:3277 +h1,12870:30478425,29932831:0,411205,112570 +) +k1,12870:30775546,29932831:293844 +k1,12871:31966991,29932831:0 +) +(1,12871:7246811,30774319:24720180,513147,134348 +(1,12870:7246811,30774319:0,452978,122846 +r1,12889:12529042,30774319:5282231,575824,122846 +k1,12870:7246811,30774319:-5282231 +) +(1,12870:7246811,30774319:5282231,452978,122846 +k1,12870:7246811,30774319:3277 +h1,12870:12525765,30774319:0,411205,112570 +) +k1,12870:12881258,30774319:178546 +k1,12870:14934134,30774319:178546 +k1,12870:18552664,30774319:178545 +k1,12870:19722770,30774319:178546 +k1,12870:21878537,30774319:178546 +k1,12870:23004734,30774319:178546 +k1,12870:26623264,30774319:178545 +k1,12870:28409408,30774319:178546 +k1,12870:29779399,30774319:178546 +k1,12870:31966991,30774319:0 +) +(1,12871:7246811,31615807:24720180,505283,134348 +k1,12870:9351172,31615807:223478 +k1,12870:10187411,31615807:223477 +k1,12870:13355422,31615807:223478 +k1,12870:15938196,31615807:223478 +k1,12870:16813101,31615807:223477 +k1,12870:18055664,31615807:223478 +k1,12870:20803588,31615807:223477 +k1,12870:22374486,31615807:223478 +k1,12870:23882470,31615807:223478 +k1,12870:26333516,31615807:223477 +k1,12870:28686259,31615807:223478 +k1,12870:31966991,31615807:0 +) +(1,12871:7246811,32457295:24720180,513147,134348 +k1,12870:9521238,32457295:241500 +k1,12870:12525081,32457295:241500 +k1,12870:14547850,32457295:241500 +k1,12870:15472235,32457295:241500 +k1,12870:17746662,32457295:241500 +k1,12870:20062376,32457295:241500 +k1,12870:22001914,32457295:241500 +k1,12870:23978807,32457295:241500 +k1,12870:26109055,32457295:241500 +k1,12870:27744506,32457295:241500 +k1,12870:29233812,32457295:241500 +k1,12870:30727705,32457295:241500 +k1,12871:31966991,32457295:0 +) +(1,12871:7246811,33298783:24720180,513147,134348 +k1,12870:8403164,33298783:194284 +k1,12870:10334153,33298783:194285 +k1,12870:14035924,33298783:194284 +k1,12870:15610396,33298783:194284 +k1,12870:18234756,33298783:194285 +k1,12870:21112084,33298783:194284 +k1,12870:21922407,33298783:194285 +k1,12870:23135776,33298783:194284 +k1,12870:26199226,33298783:194284 +k1,12870:28358936,33298783:194285 +k1,12870:29204648,33298783:194284 +k1,12870:31966991,33298783:0 +) +(1,12871:7246811,34140271:24720180,505283,126483 +g1,12870:9520254,34140271 +g1,12870:10910928,34140271 +g1,12870:12618796,34140271 +k1,12871:31966991,34140271:16229992 +g1,12871:31966991,34140271 +) +v1,12873:7246811,35330737:0,393216,0 +(1,12879:7246811,36984481:24720180,2046960,196608 +g1,12879:7246811,36984481 +g1,12879:7246811,36984481 +g1,12879:7050203,36984481 +(1,12879:7050203,36984481:0,2046960,196608 +r1,12889:32163599,36984481:25113396,2243568,196608 +k1,12879:7050203,36984481:-25113396 +) +(1,12879:7050203,36984481:25113396,2046960,196608 +[1,12879:7246811,36984481:24720180,1850352,0 +(1,12875:7246811,35544647:24720180,410518,107478 +(1,12874:7246811,35544647:0,0,0 +g1,12874:7246811,35544647 +g1,12874:7246811,35544647 +g1,12874:6919131,35544647 +(1,12874:6919131,35544647:0,0,0 +) +g1,12874:7246811,35544647 +) +k1,12875:7246811,35544647:0 +g1,12875:11040560,35544647 +g1,12875:11672852,35544647 +g1,12875:14202018,35544647 +g1,12875:16098893,35544647 +g1,12875:16731185,35544647 +g1,12875:18628060,35544647 +g1,12875:19260352,35544647 +g1,12875:19892644,35544647 +g1,12875:21473373,35544647 +g1,12875:23370247,35544647 +g1,12875:24002539,35544647 +g1,12875:28428579,35544647 +h1,12875:28744725,35544647:0,0,0 +k1,12875:31966991,35544647:3222266 +g1,12875:31966991,35544647 +) +(1,12876:7246811,36210825:24720180,404226,107478 +h1,12876:7246811,36210825:0,0,0 +g1,12876:7562957,36210825 +g1,12876:7879103,36210825 +g1,12876:11988997,36210825 +h1,12876:12305143,36210825:0,0,0 +k1,12876:31966991,36210825:19661848 +g1,12876:31966991,36210825 +) +(1,12877:7246811,36877003:24720180,404226,107478 +h1,12877:7246811,36877003:0,0,0 +g1,12877:7562957,36877003 +g1,12877:7879103,36877003 +g1,12877:14202018,36877003 +g1,12877:14834310,36877003 +g1,12877:16415039,36877003 +g1,12877:17995768,36877003 +g1,12877:18628060,36877003 +g1,12877:20208789,36877003 +g1,12877:22105663,36877003 +g1,12877:22737955,36877003 +g1,12877:23686392,36877003 +g1,12877:26215558,36877003 +g1,12877:28112432,36877003 +g1,12877:28744724,36877003 +h1,12877:31273890,36877003:0,0,0 +k1,12877:31966991,36877003:693101 +g1,12877:31966991,36877003 +) +] +) +g1,12879:31966991,36984481 +g1,12879:7246811,36984481 +g1,12879:7246811,36984481 +g1,12879:31966991,36984481 +g1,12879:31966991,36984481 +) +h1,12879:7246811,37181089:0,0,0 +] +) +] +r1,12889:32583029,37770913:26214,19687647,0 +) +] +) +) +g1,12889:32583029,37181089 +) +] +(1,12889:32583029,45706769:0,0,0 +g1,12889:32583029,45706769 +) +) +] +(1,12889:6630773,47279633:25952256,0,0 +h1,12889:6630773,47279633:25952256,0,0 +) +] +h1,12889:4262630,4025873:0,0,0 ] -!19464 -}246 -Input:1779:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1780:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1781:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1782:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1783:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1784:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1785:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1786:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1787:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1788:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 -{247 -[1,12904:4262630,47279633:28320399,43253760,0 -(1,12904:4262630,4025873:0,0,0 -[1,12904:-473657,4025873:25952256,0,0 -(1,12904:-473657,-710414:25952256,0,0 -h1,12904:-473657,-710414:0,0,0 -(1,12904:-473657,-710414:0,0,0 -(1,12904:-473657,-710414:0,0,0 -g1,12904:-473657,-710414 -(1,12904:-473657,-710414:65781,0,65781 -g1,12904:-407876,-710414 -[1,12904:-407876,-644633:0,0,0 +!19500 +}247 +Input:1775:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1776:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1777:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1778:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1779:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1780:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1781:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1782:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1783:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1784:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 +{248 +[1,12923:4262630,47279633:28320399,43253760,0 +(1,12923:4262630,4025873:0,0,0 +[1,12923:-473657,4025873:25952256,0,0 +(1,12923:-473657,-710414:25952256,0,0 +h1,12923:-473657,-710414:0,0,0 +(1,12923:-473657,-710414:0,0,0 +(1,12923:-473657,-710414:0,0,0 +g1,12923:-473657,-710414 +(1,12923:-473657,-710414:65781,0,65781 +g1,12923:-407876,-710414 +[1,12923:-407876,-644633:0,0,0 ] ) -k1,12904:-473657,-710414:-65781 +k1,12923:-473657,-710414:-65781 ) ) -k1,12904:25478599,-710414:25952256 -g1,12904:25478599,-710414 +k1,12923:25478599,-710414:25952256 +g1,12923:25478599,-710414 ) ] ) -[1,12904:6630773,47279633:25952256,43253760,0 -[1,12904:6630773,4812305:25952256,786432,0 -(1,12904:6630773,4812305:25952256,513147,134348 -(1,12904:6630773,4812305:25952256,513147,134348 -g1,12904:3078558,4812305 -[1,12904:3078558,4812305:0,0,0 -(1,12904:3078558,2439708:0,1703936,0 -k1,12904:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12904:2537886,2439708:1179648,16384,0 +[1,12923:6630773,47279633:25952256,43253760,0 +[1,12923:6630773,4812305:25952256,786432,0 +(1,12923:6630773,4812305:25952256,485622,11795 +(1,12923:6630773,4812305:25952256,485622,11795 +g1,12923:3078558,4812305 +[1,12923:3078558,4812305:0,0,0 +(1,12923:3078558,2439708:0,1703936,0 +k1,12923:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12923:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12904:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12923:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12904:3078558,4812305:0,0,0 -(1,12904:3078558,2439708:0,1703936,0 -g1,12904:29030814,2439708 -g1,12904:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12904:36151628,1915420:16384,1179648,0 +[1,12923:3078558,4812305:0,0,0 +(1,12923:3078558,2439708:0,1703936,0 +g1,12923:29030814,2439708 +g1,12923:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12923:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12904:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12923:37855564,2439708:1179648,16384,0 ) ) -k1,12904:3078556,2439708:-34777008 +k1,12923:3078556,2439708:-34777008 ) ] -[1,12904:3078558,4812305:0,0,0 -(1,12904:3078558,49800853:0,16384,2228224 -k1,12904:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12904:2537886,49800853:1179648,16384,0 +[1,12923:3078558,4812305:0,0,0 +(1,12923:3078558,49800853:0,16384,2228224 +k1,12923:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12923:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12904:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12923:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12904:3078558,4812305:0,0,0 -(1,12904:3078558,49800853:0,16384,2228224 -g1,12904:29030814,49800853 -g1,12904:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12904:36151628,51504789:16384,1179648,0 +[1,12923:3078558,4812305:0,0,0 +(1,12923:3078558,49800853:0,16384,2228224 +g1,12923:29030814,49800853 +g1,12923:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12923:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12904:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12923:37855564,49800853:1179648,16384,0 ) ) -k1,12904:3078556,49800853:-34777008 +k1,12923:3078556,49800853:-34777008 ) ] -g1,12904:6630773,4812305 -k1,12904:25712890,4812305:17886740 -g1,12904:29057847,4812305 -g1,12904:29873114,4812305 +g1,12923:6630773,4812305 +g1,12923:6630773,4812305 +g1,12923:9560887,4812305 +k1,12923:31387651,4812305:21826764 ) ) ] -[1,12904:6630773,45706769:25952256,40108032,0 -(1,12904:6630773,45706769:25952256,40108032,0 -(1,12904:6630773,45706769:0,0,0 -g1,12904:6630773,45706769 +[1,12923:6630773,45706769:25952256,40108032,0 +(1,12923:6630773,45706769:25952256,40108032,0 +(1,12923:6630773,45706769:0,0,0 +g1,12923:6630773,45706769 ) -[1,12904:6630773,45706769:25952256,40108032,0 -v1,12870:6630773,6254097:0,393216,0 -(1,12870:6630773,15083339:25952256,9222458,616038 -g1,12870:6630773,15083339 -(1,12870:6630773,15083339:25952256,9222458,616038 -(1,12870:6630773,15699377:25952256,9838496,0 -[1,12870:6630773,15699377:25952256,9838496,0 -(1,12870:6630773,15673163:25952256,9812282,0 -r1,12870:6656987,15673163:26214,9812282,0 -[1,12870:6656987,15673163:25899828,9812282,0 -(1,12870:6656987,15083339:25899828,8632634,0 -[1,12870:7246811,15083339:24720180,8632634,0 -(1,12863:7246811,15083339:24720180,8632634,0 -k1,12863:10954876,15083339:3708065 -h1,12862:10954876,15083339:0,0,0 -(1,12862:10954876,15083339:17304050,8632634,0 -(1,12862:10954876,15083339:17305278,8632656,0 -(1,12862:10954876,15083339:17305278,8632656,0 -(1,12862:10954876,15083339:0,8632656,0 -(1,12862:10954876,15083339:0,14155776,0 -(1,12862:10954876,15083339:28377088,14155776,0 +[1,12923:6630773,45706769:25952256,40108032,0 +v1,12889:6630773,6254097:0,393216,0 +(1,12889:6630773,15083339:25952256,9222458,616038 +g1,12889:6630773,15083339 +(1,12889:6630773,15083339:25952256,9222458,616038 +(1,12889:6630773,15699377:25952256,9838496,0 +[1,12889:6630773,15699377:25952256,9838496,0 +(1,12889:6630773,15673163:25952256,9812282,0 +r1,12889:6656987,15673163:26214,9812282,0 +[1,12889:6656987,15673163:25899828,9812282,0 +(1,12889:6656987,15083339:25899828,8632634,0 +[1,12889:7246811,15083339:24720180,8632634,0 +(1,12882:7246811,15083339:24720180,8632634,0 +k1,12882:10954876,15083339:3708065 +h1,12881:10954876,15083339:0,0,0 +(1,12881:10954876,15083339:17304050,8632634,0 +(1,12881:10954876,15083339:17305278,8632656,0 +(1,12881:10954876,15083339:17305278,8632656,0 +(1,12881:10954876,15083339:0,8632656,0 +(1,12881:10954876,15083339:0,14155776,0 +(1,12881:10954876,15083339:28377088,14155776,0 ) -k1,12862:10954876,15083339:-28377088 +k1,12881:10954876,15083339:-28377088 ) ) -g1,12862:28260154,15083339 +g1,12881:28260154,15083339 ) ) ) -g1,12863:28258926,15083339 -k1,12863:31966991,15083339:3708065 +g1,12882:28258926,15083339 +k1,12882:31966991,15083339:3708065 ) ] ) ] -r1,12870:32583029,15673163:26214,9812282,0 +r1,12889:32583029,15673163:26214,9812282,0 ) ] ) -) -g1,12870:32583029,15083339 -) -h1,12870:6630773,15699377:0,0,0 -(1,12876:6630773,19031233:25952256,32768,229376 -(1,12876:6630773,19031233:0,32768,229376 -(1,12876:6630773,19031233:5505024,32768,229376 -r1,12876:12135797,19031233:5505024,262144,229376 -) -k1,12876:6630773,19031233:-5505024 -) -(1,12876:6630773,19031233:25952256,32768,0 -r1,12876:32583029,19031233:25952256,32768,0 -) -) -(1,12876:6630773,20635561:25952256,606339,14155 -(1,12876:6630773,20635561:1974731,568590,14155 -g1,12876:6630773,20635561 -g1,12876:8605504,20635561 -) -k1,12876:32583028,20635561:20424424 -g1,12876:32583028,20635561 -) -(1,12880:6630773,21870265:25952256,513147,134348 -k1,12879:8826834,21870265:154615 -k1,12879:11583227,21870265:154614 -k1,12879:13560398,21870265:154615 -k1,12879:16543545,21870265:154614 -k1,12879:19531281,21870265:154615 -k1,12879:20143993,21870265:154615 -k1,12879:20830104,21870265:154614 -k1,12879:24194017,21870265:154615 -k1,12879:25000060,21870265:154615 -k1,12879:26629889,21870265:154614 -k1,12879:28314770,21870265:154615 -k1,12879:29799765,21870265:154614 -k1,12879:30973465,21870265:154615 -k1,12880:32583029,21870265:0 -) -(1,12880:6630773,22711753:25952256,513147,134348 -k1,12879:8194960,22711753:153197 -k1,12879:9007450,22711753:153198 -k1,12879:11384939,22711753:153197 -k1,12879:12189565,22711753:153198 -k1,12879:15407226,22711753:153197 -k1,12879:17660853,22711753:153198 -k1,12879:19597285,22711753:153197 -k1,12879:20106342,22711753:153197 -k1,12879:22327201,22711753:153198 -k1,12879:23428049,22711753:153197 -k1,12879:26416334,22711753:153198 -k1,12879:27101028,22711753:153197 -k1,12879:29839621,22711753:153198 -k1,12879:30644246,22711753:153197 -(1,12879:30644246,22711753:0,452978,115847 -r1,12879:32409359,22711753:1765113,568825,115847 -k1,12879:30644246,22711753:-1765113 -) -(1,12879:30644246,22711753:1765113,452978,115847 -k1,12879:30644246,22711753:3277 -h1,12879:32406082,22711753:0,411205,112570 -) -k1,12879:32583029,22711753:0 -) -(1,12880:6630773,23553241:25952256,513147,134348 -k1,12879:7283465,23553241:194595 -k1,12879:9737741,23553241:194595 -k1,12879:10288196,23553241:194595 -k1,12879:11765987,23553241:194596 -k1,12879:15017181,23553241:194595 -k1,12879:16605727,23553241:194595 -k1,12879:17819407,23553241:194595 -k1,12879:22085754,23553241:194595 -k1,12879:25251751,23553241:194595 -k1,12879:25802206,23553241:194595 -k1,12879:27691563,23553241:194596 -k1,12879:29348266,23553241:194595 -k1,12879:30202153,23553241:194595 -k1,12879:31415833,23553241:194595 -k1,12880:32583029,23553241:0 -) -(1,12880:6630773,24394729:25952256,513147,134348 -k1,12879:7924922,24394729:180692 -k1,12879:12729179,24394729:180692 -k1,12879:13561299,24394729:180692 -k1,12879:14097851,24394729:180692 -k1,12879:16344893,24394729:180692 -k1,12879:18070924,24394729:180692 -k1,12879:20934005,24394729:180692 -k1,12879:23525767,24394729:180692 -k1,12879:24515829,24394729:180692 -k1,12879:25715606,24394729:180692 -k1,12879:27285661,24394729:180692 -k1,12879:28414004,24394729:180692 -k1,12879:30046318,24394729:180692 -k1,12879:30886302,24394729:180692 -k1,12879:32583029,24394729:0 -) -(1,12880:6630773,25236217:25952256,513147,134348 -k1,12879:9043317,25236217:189563 -k1,12879:12675486,25236217:189563 -k1,12879:15865943,25236217:189563 -k1,12879:16411365,25236217:189562 -k1,12879:19591336,25236217:189563 -k1,12879:20728550,25236217:189563 -k1,12879:22369735,25236217:189563 -k1,12879:24625648,25236217:189563 -k1,12879:25762861,25236217:189562 -k1,12879:28787511,25236217:189563 -k1,12879:29996159,25236217:189563 -k1,12879:31923737,25236217:189563 -k1,12879:32583029,25236217:0 -) -(1,12880:6630773,26077705:25952256,505283,134348 -g1,12879:7849087,26077705 -g1,12879:12120068,26077705 -g1,12879:12935335,26077705 -g1,12879:13490424,26077705 -k1,12880:32583030,26077705:17026256 -g1,12880:32583030,26077705 -) -(1,12881:6630773,28168965:25952256,555811,12975 -(1,12881:6630773,28168965:2450326,525533,12975 -g1,12881:6630773,28168965 -g1,12881:9081099,28168965 -) -k1,12881:32583029,28168965:19939262 -g1,12881:32583029,28168965 -) -(1,12885:6630773,29403669:25952256,513147,138281 -k1,12884:7391492,29403669:132884 -k1,12884:10190381,29403669:132884 -k1,12884:10974692,29403669:132883 -k1,12884:13632023,29403669:132884 -k1,12884:15154270,29403669:132884 -k1,12884:16854775,29403669:132884 -k1,12884:17343519,29403669:132884 -k1,12884:18865766,29403669:132884 -k1,12884:20874945,29403669:132883 -k1,12884:22401780,29403669:132884 -k1,12884:25376305,29403669:132884 -k1,12884:26160617,29403669:132884 -k1,12884:27690073,29403669:132884 -k1,12884:28474384,29403669:132883 -$1,12884:28474384,29403669 -$1,12884:28977045,29403669 -k1,12884:29109929,29403669:132884 -k1,12884:30434258,29403669:132884 -$1,12884:30434258,29403669 -$1,12884:30986071,29403669 -k1,12884:31118955,29403669:132884 -k1,12885:32583029,29403669:0 -) -(1,12885:6630773,30245157:25952256,505283,126483 -k1,12884:8779977,30245157:192955 -k1,12884:9431028,30245157:192954 -k1,12884:10155480,30245157:192955 -k1,12884:12978394,30245157:192954 -k1,12884:13822777,30245157:192955 -k1,12884:15490946,30245157:192954 -k1,12884:17059502,30245157:192955 -k1,12884:17608317,30245157:192955 -k1,12884:20312611,30245157:192954 -k1,12884:23090961,30245157:192955 -k1,12884:23935343,30245157:192954 -$1,12884:23935343,30245157 -$1,12884:24438004,30245157 -k1,12884:24630959,30245157:192955 -k1,12884:26015358,30245157:192954 -k1,12884:27300798,30245157:192955 -(1,12884:27300798,30245157:0,459977,115847 -r1,12884:32583029,30245157:5282231,575824,115847 -k1,12884:27300798,30245157:-5282231 -) -(1,12884:27300798,30245157:5282231,459977,115847 -k1,12884:27300798,30245157:3277 -h1,12884:32579752,30245157:0,411205,112570 -) -k1,12884:32583029,30245157:0 -) -(1,12885:6630773,31086645:25952256,513147,138281 -k1,12884:7439408,31086645:157207 -k1,12884:10384517,31086645:157207 -k1,12884:11560809,31086645:157207 -k1,12884:13728661,31086645:157207 -k1,12884:14537296,31086645:157207 -k1,12884:15442269,31086645:157207 -k1,12884:18184870,31086645:157206 -k1,12884:18993505,31086645:157207 -$1,12884:18993505,31086645 -$1,12884:19545318,31086645 -k1,12884:19702525,31086645:157207 -k1,12884:21595125,31086645:157207 -k1,12884:22523035,31086645:157207 -k1,12884:23095043,31086645:157165 -k1,12884:26121416,31086645:157207 -k1,12884:27659467,31086645:157207 -k1,12884:29876471,31086645:157207 -k1,12884:31052763,31086645:157207 -k1,12884:32583029,31086645:0 -) -(1,12885:6630773,31928133:25952256,513147,134348 -k1,12884:7435695,31928133:153494 -k1,12884:10321386,31928133:153495 -k1,12884:11864243,31928133:153494 -k1,12884:15666783,31928133:153495 -k1,12884:16506440,31928133:153495 -k1,12884:18126630,31928133:153494 -k1,12884:19299209,31928133:153494 -k1,12884:21938485,31928133:153495 -k1,12884:22751272,31928133:153495 -k1,12884:24294129,31928133:153494 -k1,12884:26466133,31928133:153495 -k1,12884:27271055,31928133:153494 -k1,12884:28172315,31928133:153494 -k1,12884:31478747,31928133:153495 -k1,12884:32583029,31928133:0 -) -(1,12885:6630773,32769621:25952256,513147,134348 -k1,12884:7546879,32769621:168340 -k1,12884:8649762,32769621:168340 -k1,12884:9434141,32769621:168341 -(1,12884:9434141,32769621:0,459977,122846 -r1,12884:14716372,32769621:5282231,582823,122846 -k1,12884:9434141,32769621:-5282231 -) -(1,12884:9434141,32769621:5282231,459977,122846 -k1,12884:9434141,32769621:3277 -h1,12884:14713095,32769621:0,411205,112570 -) -k1,12884:15058382,32769621:168340 -k1,12884:16490256,32769621:168340 -k1,12884:17073409,32769621:168310 -k1,12884:20110915,32769621:168340 -k1,12884:21660099,32769621:168340 -k1,12884:24210018,32769621:168341 -k1,12884:25061243,32769621:168340 -k1,12884:26469524,32769621:168340 -k1,12884:27742146,32769621:168340 -k1,12884:28658252,32769621:168340 -k1,12884:30339819,32769621:168341 -k1,12884:31194321,32769621:168340 -k1,12884:32583029,32769621:0 -) -(1,12885:6630773,33611109:25952256,513147,134348 -k1,12884:7572525,33611109:255590 -k1,12884:8286212,33611109:255590 -k1,12884:9073300,33611109:255591 -k1,12884:12839654,33611109:255590 -k1,12884:14489195,33611109:255590 -k1,12884:15763870,33611109:255590 -k1,12884:18032726,33611109:255590 -k1,12884:18947609,33611109:255591 -k1,12884:20222284,33611109:255590 -k1,12884:23256601,33611109:255590 -k1,12884:25490068,33611109:255590 -k1,12884:27473187,33611109:255590 -k1,12884:28380206,33611109:255591 -k1,12884:29654881,33611109:255590 -k1,12884:31923737,33611109:255590 -k1,12884:32583029,33611109:0 -) -(1,12885:6630773,34452597:25952256,513147,134348 -k1,12884:7828833,34452597:178975 -k1,12884:9985686,34452597:178976 -k1,12884:12369948,34452597:178975 -k1,12884:13235085,34452597:178975 -k1,12884:14720193,34452597:178975 -k1,12884:17971497,34452597:178976 -k1,12884:18801900,34452597:178975 -k1,12884:19612642,34452597:178975 -k1,12884:20988305,34452597:178976 -k1,12884:23678620,34452597:178975 -k1,12884:26442990,34452597:178975 -k1,12884:27273393,34452597:178975 -(1,12884:27273393,34452597:0,414482,115847 -r1,12884:27631659,34452597:358266,530329,115847 -k1,12884:27273393,34452597:-358266 -) -(1,12884:27273393,34452597:358266,414482,115847 -k1,12884:27273393,34452597:3277 -h1,12884:27628382,34452597:0,411205,112570 -) -k1,12884:27810635,34452597:178976 -k1,12884:31563944,34452597:178975 -k1,12884:32583029,34452597:0 -) -(1,12885:6630773,35294085:25952256,513147,134348 -k1,12884:8802752,35294085:217695 -k1,12884:10211891,35294085:217694 -k1,12884:11448671,35294085:217695 -k1,12884:14738693,35294085:217694 -k1,12884:15607816,35294085:217695 -k1,12884:19106243,35294085:217695 -(1,12884:19106243,35294085:0,414482,115847 -r1,12884:19464509,35294085:358266,530329,115847 -k1,12884:19106243,35294085:-358266 -) -(1,12884:19106243,35294085:358266,414482,115847 -k1,12884:19106243,35294085:3277 -h1,12884:19461232,35294085:0,411205,112570 -) -k1,12884:19682203,35294085:217694 -k1,12884:20567054,35294085:217695 -(1,12884:20567054,35294085:0,459977,122846 -r1,12884:25849285,35294085:5282231,582823,122846 -k1,12884:20567054,35294085:-5282231 -) -(1,12884:20567054,35294085:5282231,459977,122846 -k1,12884:20567054,35294085:3277 -h1,12884:25846008,35294085:0,411205,112570 -) -k1,12884:26066980,35294085:217695 -k1,12884:27303759,35294085:217694 -k1,12884:29534720,35294085:217695 -k1,12884:30411706,35294085:217694 -k1,12884:31648486,35294085:217695 -k1,12885:32583029,35294085:0 -) -(1,12885:6630773,36135573:25952256,513147,134348 -k1,12884:9249154,36135573:186995 -k1,12884:11414027,36135573:186996 -k1,12884:12885528,36135573:186995 -k1,12884:13604021,36135573:186996 -k1,12884:15996303,36135573:186995 -k1,12884:16869460,36135573:186995 -k1,12884:18362589,36135573:186996 -k1,12884:21621912,36135573:186995 -k1,12884:22460336,36135573:186996 -(1,12884:22460336,36135573:0,459977,115847 -r1,12884:23522025,36135573:1061689,575824,115847 -k1,12884:22460336,36135573:-1061689 -) -(1,12884:22460336,36135573:1061689,459977,115847 -k1,12884:22460336,36135573:3277 -h1,12884:23518748,36135573:0,411205,112570 -) -k1,12884:23709020,36135573:186995 -k1,12884:25594053,36135573:186995 -k1,12884:26239146,36135573:186996 -k1,12884:26957638,36135573:186995 -k1,12884:29012410,36135573:186996 -k1,12884:29850833,36135573:186995 -k1,12884:32583029,36135573:0 -) -(1,12885:6630773,36977061:25952256,505283,138281 -g1,12884:7849087,36977061 -g1,12884:10058961,36977061 -g1,12884:10909618,36977061 -g1,12884:13489115,36977061 -g1,12884:14339772,36977061 -(1,12884:14339772,36977061:0,414482,115847 -r1,12884:14698038,36977061:358266,530329,115847 -k1,12884:14339772,36977061:-358266 -) -(1,12884:14339772,36977061:358266,414482,115847 -k1,12884:14339772,36977061:3277 -h1,12884:14694761,36977061:0,411205,112570 -) -g1,12884:15070937,36977061 -g1,12884:17144496,36977061 -g1,12884:18335285,36977061 -g1,12884:19553599,36977061 -$1,12884:19553599,36977061 -$1,12884:20056260,36977061 -g1,12884:20255489,36977061 -g1,12884:21646163,36977061 -$1,12884:21646163,36977061 -$1,12884:22197976,36977061 -g1,12884:22397205,36977061 -g1,12884:24607079,36977061 -g1,12884:27011595,36977061 -g1,12884:27862252,36977061 -g1,12884:29080566,36977061 -k1,12885:32583029,36977061:363289 -g1,12885:32583029,36977061 -) -(1,12887:6630773,37818549:25952256,513147,126483 -h1,12886:6630773,37818549:983040,0,0 -k1,12886:8738974,37818549:171612 -k1,12886:10398909,37818549:171612 -k1,12886:11964472,37818549:171612 -k1,12886:13155169,37818549:171612 -k1,12886:15682800,37818549:171612 -k1,12886:19635839,37818549:171612 -k1,12886:22676617,37818549:171612 -k1,12886:23801778,37818549:171612 -k1,12886:25175320,37818549:171612 -k1,12886:26156302,37818549:171612 -k1,12886:27346999,37818549:171612 -k1,12886:30114492,37818549:171612 -(1,12886:30114492,37818549:0,435480,115847 -r1,12886:32583029,37818549:2468537,551327,115847 -k1,12886:30114492,37818549:-2468537 -) -(1,12886:30114492,37818549:2468537,435480,115847 -g1,12886:30821193,37818549 -g1,12886:31524617,37818549 -h1,12886:32579752,37818549:0,411205,112570 -) -k1,12886:32583029,37818549:0 -) -(1,12887:6630773,38660037:25952256,505283,122846 -g1,12886:8021447,38660037 -(1,12886:8021447,38660037:0,452978,122846 -r1,12886:12600255,38660037:4578808,575824,122846 -k1,12886:8021447,38660037:-4578808 -) -(1,12886:8021447,38660037:4578808,452978,122846 -g1,12886:9783283,38660037 -g1,12886:10486707,38660037 -h1,12886:12596978,38660037:0,411205,112570 -) -k1,12887:32583029,38660037:19809104 -g1,12887:32583029,38660037 -) -v1,12889:6630773,39850503:0,393216,0 -(1,12894:6630773,40806612:25952256,1349325,196608 -g1,12894:6630773,40806612 -g1,12894:6630773,40806612 -g1,12894:6434165,40806612 -(1,12894:6434165,40806612:0,1349325,196608 -r1,12894:32779637,40806612:26345472,1545933,196608 -k1,12894:6434165,40806612:-26345472 -) -(1,12894:6434165,40806612:26345472,1349325,196608 -[1,12894:6630773,40806612:25952256,1152717,0 -(1,12891:6630773,40064413:25952256,410518,107478 -(1,12890:6630773,40064413:0,0,0 -g1,12890:6630773,40064413 -g1,12890:6630773,40064413 -g1,12890:6303093,40064413 -(1,12890:6303093,40064413:0,0,0 -) -g1,12890:6630773,40064413 -) -k1,12891:6630773,40064413:0 -g1,12891:12953688,40064413 -g1,12891:13585980,40064413 -g1,12891:15799002,40064413 -g1,12891:17695877,40064413 -g1,12891:18328169,40064413 -g1,12891:19592752,40064413 -h1,12891:19908898,40064413:0,0,0 -k1,12891:32583029,40064413:12674131 -g1,12891:32583029,40064413 -) -(1,12892:6630773,40730591:25952256,410518,76021 -h1,12892:6630773,40730591:0,0,0 -g1,12892:6946919,40730591 -g1,12892:7263065,40730591 -g1,12892:12953688,40730591 -g1,12892:13585980,40730591 -h1,12892:15482854,40730591:0,0,0 -k1,12892:32583030,40730591:17100176 -g1,12892:32583030,40730591 -) -] -) -g1,12894:32583029,40806612 -g1,12894:6630773,40806612 -g1,12894:6630773,40806612 -g1,12894:32583029,40806612 -g1,12894:32583029,40806612 -) -h1,12894:6630773,41003220:0,0,0 -] -(1,12904:32583029,45706769:0,0,0 -g1,12904:32583029,45706769 -) -) -] -(1,12904:6630773,47279633:25952256,0,0 -h1,12904:6630773,47279633:25952256,0,0 -) -] -h1,12904:4262630,4025873:0,0,0 -] -!18965 -}247 -Input:1789:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1790:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1791:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1792:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1793:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1794:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{248 -[1,12949:4262630,47279633:28320399,43253760,0 -(1,12949:4262630,4025873:0,0,0 -[1,12949:-473657,4025873:25952256,0,0 -(1,12949:-473657,-710414:25952256,0,0 -h1,12949:-473657,-710414:0,0,0 -(1,12949:-473657,-710414:0,0,0 -(1,12949:-473657,-710414:0,0,0 -g1,12949:-473657,-710414 -(1,12949:-473657,-710414:65781,0,65781 -g1,12949:-407876,-710414 -[1,12949:-407876,-644633:0,0,0 +) +g1,12889:32583029,15083339 +) +h1,12889:6630773,15699377:0,0,0 +(1,12895:6630773,19031233:25952256,32768,229376 +(1,12895:6630773,19031233:0,32768,229376 +(1,12895:6630773,19031233:5505024,32768,229376 +r1,12895:12135797,19031233:5505024,262144,229376 +) +k1,12895:6630773,19031233:-5505024 +) +(1,12895:6630773,19031233:25952256,32768,0 +r1,12895:32583029,19031233:25952256,32768,0 +) +) +(1,12895:6630773,20635561:25952256,606339,14155 +(1,12895:6630773,20635561:1974731,568590,14155 +g1,12895:6630773,20635561 +g1,12895:8605504,20635561 +) +k1,12895:32583028,20635561:20424424 +g1,12895:32583028,20635561 +) +(1,12899:6630773,21870265:25952256,513147,134348 +k1,12898:8826834,21870265:154615 +k1,12898:11583227,21870265:154614 +k1,12898:13560398,21870265:154615 +k1,12898:16543545,21870265:154614 +k1,12898:19531281,21870265:154615 +k1,12898:20143993,21870265:154615 +k1,12898:20830104,21870265:154614 +k1,12898:24194017,21870265:154615 +k1,12898:25000060,21870265:154615 +k1,12898:26629889,21870265:154614 +k1,12898:28314770,21870265:154615 +k1,12898:29799765,21870265:154614 +k1,12898:30973465,21870265:154615 +k1,12899:32583029,21870265:0 +) +(1,12899:6630773,22711753:25952256,513147,134348 +k1,12898:8194960,22711753:153197 +k1,12898:9007450,22711753:153198 +k1,12898:11384939,22711753:153197 +k1,12898:12189565,22711753:153198 +k1,12898:15407226,22711753:153197 +k1,12898:17660853,22711753:153198 +k1,12898:19597285,22711753:153197 +k1,12898:20106342,22711753:153197 +k1,12898:22327201,22711753:153198 +k1,12898:23428049,22711753:153197 +k1,12898:26416334,22711753:153198 +k1,12898:27101028,22711753:153197 +k1,12898:29839621,22711753:153198 +k1,12898:30644246,22711753:153197 +(1,12898:30644246,22711753:0,452978,115847 +r1,12898:32409359,22711753:1765113,568825,115847 +k1,12898:30644246,22711753:-1765113 +) +(1,12898:30644246,22711753:1765113,452978,115847 +k1,12898:30644246,22711753:3277 +h1,12898:32406082,22711753:0,411205,112570 +) +k1,12898:32583029,22711753:0 +) +(1,12899:6630773,23553241:25952256,513147,134348 +k1,12898:7283465,23553241:194595 +k1,12898:9737741,23553241:194595 +k1,12898:10288196,23553241:194595 +k1,12898:11765987,23553241:194596 +k1,12898:15017181,23553241:194595 +k1,12898:16605727,23553241:194595 +k1,12898:17819407,23553241:194595 +k1,12898:22085754,23553241:194595 +k1,12898:25251751,23553241:194595 +k1,12898:25802206,23553241:194595 +k1,12898:27691563,23553241:194596 +k1,12898:29348266,23553241:194595 +k1,12898:30202153,23553241:194595 +k1,12898:31415833,23553241:194595 +k1,12899:32583029,23553241:0 +) +(1,12899:6630773,24394729:25952256,513147,134348 +k1,12898:7924922,24394729:180692 +k1,12898:12729179,24394729:180692 +k1,12898:13561299,24394729:180692 +k1,12898:14097851,24394729:180692 +k1,12898:16344893,24394729:180692 +k1,12898:18070924,24394729:180692 +k1,12898:20934005,24394729:180692 +k1,12898:23525767,24394729:180692 +k1,12898:24515829,24394729:180692 +k1,12898:25715606,24394729:180692 +k1,12898:27285661,24394729:180692 +k1,12898:28414004,24394729:180692 +k1,12898:30046318,24394729:180692 +k1,12898:30886302,24394729:180692 +k1,12898:32583029,24394729:0 +) +(1,12899:6630773,25236217:25952256,513147,134348 +k1,12898:9043317,25236217:189563 +k1,12898:12675486,25236217:189563 +k1,12898:15865943,25236217:189563 +k1,12898:16411365,25236217:189562 +k1,12898:19591336,25236217:189563 +k1,12898:20728550,25236217:189563 +k1,12898:22369735,25236217:189563 +k1,12898:24625648,25236217:189563 +k1,12898:25762861,25236217:189562 +k1,12898:28787511,25236217:189563 +k1,12898:29996159,25236217:189563 +k1,12898:31923737,25236217:189563 +k1,12898:32583029,25236217:0 +) +(1,12899:6630773,26077705:25952256,505283,134348 +g1,12898:7849087,26077705 +g1,12898:12120068,26077705 +g1,12898:12935335,26077705 +g1,12898:13490424,26077705 +k1,12899:32583030,26077705:17026256 +g1,12899:32583030,26077705 +) +(1,12900:6630773,28168965:25952256,555811,12975 +(1,12900:6630773,28168965:2450326,525533,12975 +g1,12900:6630773,28168965 +g1,12900:9081099,28168965 +) +k1,12900:32583029,28168965:19939262 +g1,12900:32583029,28168965 +) +(1,12904:6630773,29403669:25952256,513147,138281 +k1,12903:7405177,29403669:146569 +k1,12903:10217751,29403669:146569 +k1,12903:11015749,29403669:146570 +k1,12903:13686765,29403669:146569 +k1,12903:15222697,29403669:146569 +k1,12903:16936887,29403669:146569 +k1,12903:17439317,29403669:146570 +k1,12903:18975249,29403669:146569 +k1,12903:20998114,29403669:146569 +k1,12903:22538634,29403669:146569 +k1,12903:25526845,29403669:146570 +k1,12903:26324842,29403669:146569 +k1,12903:27867983,29403669:146569 +k1,12903:28665980,29403669:146569 +$1,12903:28665980,29403669 +$1,12903:29168641,29403669 +k1,12903:29315211,29403669:146570 +k1,12903:30653225,29403669:146569 +$1,12903:30653225,29403669 +$1,12903:31205038,29403669 +k1,12903:31351607,29403669:146569 +k1,12904:32583029,29403669:0 +) +(1,12904:6630773,30245157:25952256,505283,126483 +k1,12903:8996011,30245157:176336 +k1,12903:9630445,30245157:176337 +k1,12903:10338278,30245157:176336 +k1,12903:13144575,30245157:176337 +k1,12903:13972339,30245157:176336 +k1,12903:15623891,30245157:176337 +k1,12903:17175828,30245157:176336 +k1,12903:17708025,30245157:176337 +k1,12903:20395701,30245157:176336 +k1,12903:23157433,30245157:176337 +k1,12903:23985197,30245157:176336 +$1,12903:23985197,30245157 +$1,12903:24487858,30245157 +k1,12903:24664195,30245157:176337 +k1,12903:26031976,30245157:176336 +k1,12903:27300798,30245157:176337 +(1,12903:27300798,30245157:0,459977,115847 +r1,12903:32583029,30245157:5282231,575824,115847 +k1,12903:27300798,30245157:-5282231 +) +(1,12903:27300798,30245157:5282231,459977,115847 +k1,12903:27300798,30245157:3277 +h1,12903:32579752,30245157:0,411205,112570 +) +k1,12903:32583029,30245157:0 +) +(1,12904:6630773,31086645:25952256,513147,138281 +k1,12903:7439408,31086645:157207 +k1,12903:10384517,31086645:157207 +k1,12903:11560809,31086645:157207 +k1,12903:13728661,31086645:157207 +k1,12903:14537296,31086645:157207 +k1,12903:15442269,31086645:157207 +k1,12903:18184870,31086645:157206 +k1,12903:18993505,31086645:157207 +$1,12903:18993505,31086645 +$1,12903:19545318,31086645 +k1,12903:19702525,31086645:157207 +k1,12903:21595125,31086645:157207 +k1,12903:22523035,31086645:157207 +k1,12903:23095043,31086645:157165 +k1,12903:26121416,31086645:157207 +k1,12903:27659467,31086645:157207 +k1,12903:29876471,31086645:157207 +k1,12903:31052763,31086645:157207 +k1,12903:32583029,31086645:0 +) +(1,12904:6630773,31928133:25952256,513147,134348 +k1,12903:7435695,31928133:153494 +k1,12903:10321386,31928133:153495 +k1,12903:11864243,31928133:153494 +k1,12903:15666783,31928133:153495 +k1,12903:16506440,31928133:153495 +k1,12903:18126630,31928133:153494 +k1,12903:19299209,31928133:153494 +k1,12903:21938485,31928133:153495 +k1,12903:22751272,31928133:153495 +k1,12903:24294129,31928133:153494 +k1,12903:26466133,31928133:153495 +k1,12903:27271055,31928133:153494 +k1,12903:28172315,31928133:153494 +k1,12903:31478747,31928133:153495 +k1,12903:32583029,31928133:0 +) +(1,12904:6630773,32769621:25952256,513147,134348 +k1,12903:7546879,32769621:168340 +k1,12903:8649762,32769621:168340 +k1,12903:9434141,32769621:168341 +(1,12903:9434141,32769621:0,459977,122846 +r1,12903:14716372,32769621:5282231,582823,122846 +k1,12903:9434141,32769621:-5282231 +) +(1,12903:9434141,32769621:5282231,459977,122846 +k1,12903:9434141,32769621:3277 +h1,12903:14713095,32769621:0,411205,112570 +) +k1,12903:15058382,32769621:168340 +k1,12903:16490256,32769621:168340 +k1,12903:17073409,32769621:168310 +k1,12903:20110915,32769621:168340 +k1,12903:21660099,32769621:168340 +k1,12903:24210018,32769621:168341 +k1,12903:25061243,32769621:168340 +k1,12903:26469524,32769621:168340 +k1,12903:27742146,32769621:168340 +k1,12903:28658252,32769621:168340 +k1,12903:30339819,32769621:168341 +k1,12903:31194321,32769621:168340 +k1,12903:32583029,32769621:0 +) +(1,12904:6630773,33611109:25952256,513147,134348 +k1,12903:7572525,33611109:255590 +k1,12903:8286212,33611109:255590 +k1,12903:9073300,33611109:255591 +k1,12903:12839654,33611109:255590 +k1,12903:14489195,33611109:255590 +k1,12903:15763870,33611109:255590 +k1,12903:18032726,33611109:255590 +k1,12903:18947609,33611109:255591 +k1,12903:20222284,33611109:255590 +k1,12903:23256601,33611109:255590 +k1,12903:25490068,33611109:255590 +k1,12903:27473187,33611109:255590 +k1,12903:28380206,33611109:255591 +k1,12903:29654881,33611109:255590 +k1,12903:31923737,33611109:255590 +k1,12903:32583029,33611109:0 +) +(1,12904:6630773,34452597:25952256,513147,134348 +k1,12903:7828833,34452597:178975 +k1,12903:9985686,34452597:178976 +k1,12903:12369948,34452597:178975 +k1,12903:13235085,34452597:178975 +k1,12903:14720193,34452597:178975 +k1,12903:17971497,34452597:178976 +k1,12903:18801900,34452597:178975 +k1,12903:19612642,34452597:178975 +k1,12903:20988305,34452597:178976 +k1,12903:23678620,34452597:178975 +k1,12903:26442990,34452597:178975 +k1,12903:27273393,34452597:178975 +(1,12903:27273393,34452597:0,414482,115847 +r1,12903:27631659,34452597:358266,530329,115847 +k1,12903:27273393,34452597:-358266 +) +(1,12903:27273393,34452597:358266,414482,115847 +k1,12903:27273393,34452597:3277 +h1,12903:27628382,34452597:0,411205,112570 +) +k1,12903:27810635,34452597:178976 +k1,12903:31563944,34452597:178975 +k1,12903:32583029,34452597:0 +) +(1,12904:6630773,35294085:25952256,513147,134348 +k1,12903:8770841,35294085:185784 +k1,12903:10148069,35294085:185783 +k1,12903:11352938,35294085:185784 +k1,12903:14611049,35294085:185783 +k1,12903:15448261,35294085:185784 +k1,12903:18914777,35294085:185784 +(1,12903:18914777,35294085:0,414482,115847 +r1,12903:19273043,35294085:358266,530329,115847 +k1,12903:18914777,35294085:-358266 +) +(1,12903:18914777,35294085:358266,414482,115847 +k1,12903:18914777,35294085:3277 +h1,12903:19269766,35294085:0,411205,112570 +) +k1,12903:19458826,35294085:185783 +k1,12903:20311766,35294085:185784 +(1,12903:20311766,35294085:0,459977,122846 +r1,12903:25593997,35294085:5282231,582823,122846 +k1,12903:20311766,35294085:-5282231 +) +(1,12903:20311766,35294085:5282231,459977,122846 +k1,12903:20311766,35294085:3277 +h1,12903:25590720,35294085:0,411205,112570 +) +k1,12903:25779781,35294085:185784 +k1,12903:26984649,35294085:185783 +k1,12903:29183699,35294085:185784 +k1,12903:30028774,35294085:185783 +k1,12903:31233643,35294085:185784 +k1,12904:32583029,35294085:0 +) +(1,12904:6630773,36135573:25952256,513147,134348 +k1,12903:8861968,36135573:214652 +k1,12903:11054496,36135573:214651 +k1,12903:12553654,36135573:214652 +k1,12903:13299802,36135573:214651 +k1,12903:15719741,36135573:214652 +k1,12903:16620555,36135573:214652 +k1,12903:18141339,36135573:214651 +k1,12903:21428319,36135573:214652 +k1,12903:22294398,36135573:214651 +(1,12903:22294398,36135573:0,459977,115847 +r1,12903:23356087,36135573:1061689,575824,115847 +k1,12903:22294398,36135573:-1061689 +) +(1,12903:22294398,36135573:1061689,459977,115847 +k1,12903:22294398,36135573:3277 +h1,12903:23352810,36135573:0,411205,112570 +) +k1,12903:23570739,36135573:214652 +k1,12903:25483429,36135573:214652 +k1,12903:26156177,36135573:214651 +k1,12903:26902326,36135573:214652 +k1,12903:28984753,36135573:214651 +k1,12903:29850833,36135573:214652 +k1,12903:32583029,36135573:0 +) +(1,12904:6630773,36977061:25952256,505283,138281 +g1,12903:7849087,36977061 +g1,12903:10058961,36977061 +g1,12903:10909618,36977061 +g1,12903:13489115,36977061 +g1,12903:14339772,36977061 +(1,12903:14339772,36977061:0,414482,115847 +r1,12903:14698038,36977061:358266,530329,115847 +k1,12903:14339772,36977061:-358266 +) +(1,12903:14339772,36977061:358266,414482,115847 +k1,12903:14339772,36977061:3277 +h1,12903:14694761,36977061:0,411205,112570 +) +g1,12903:15070937,36977061 +g1,12903:17144496,36977061 +g1,12903:18335285,36977061 +g1,12903:19553599,36977061 +$1,12903:19553599,36977061 +$1,12903:20056260,36977061 +g1,12903:20255489,36977061 +g1,12903:21646163,36977061 +$1,12903:21646163,36977061 +$1,12903:22197976,36977061 +g1,12903:22397205,36977061 +g1,12903:24607079,36977061 +g1,12903:27011595,36977061 +g1,12903:27862252,36977061 +g1,12903:29080566,36977061 +k1,12904:32583029,36977061:363289 +g1,12904:32583029,36977061 +) +(1,12906:6630773,37818549:25952256,513147,126483 +h1,12905:6630773,37818549:983040,0,0 +k1,12905:8738974,37818549:171612 +k1,12905:10398909,37818549:171612 +k1,12905:11964472,37818549:171612 +k1,12905:13155169,37818549:171612 +k1,12905:15682800,37818549:171612 +k1,12905:19635839,37818549:171612 +k1,12905:22676617,37818549:171612 +k1,12905:23801778,37818549:171612 +k1,12905:25175320,37818549:171612 +k1,12905:26156302,37818549:171612 +k1,12905:27346999,37818549:171612 +k1,12905:30114492,37818549:171612 +(1,12905:30114492,37818549:0,435480,115847 +r1,12905:32583029,37818549:2468537,551327,115847 +k1,12905:30114492,37818549:-2468537 +) +(1,12905:30114492,37818549:2468537,435480,115847 +g1,12905:30821193,37818549 +g1,12905:31524617,37818549 +h1,12905:32579752,37818549:0,411205,112570 +) +k1,12905:32583029,37818549:0 +) +(1,12906:6630773,38660037:25952256,505283,122846 +g1,12905:8021447,38660037 +(1,12905:8021447,38660037:0,452978,122846 +r1,12905:12600255,38660037:4578808,575824,122846 +k1,12905:8021447,38660037:-4578808 +) +(1,12905:8021447,38660037:4578808,452978,122846 +g1,12905:9783283,38660037 +g1,12905:10486707,38660037 +h1,12905:12596978,38660037:0,411205,112570 +) +k1,12906:32583029,38660037:19809104 +g1,12906:32583029,38660037 +) +v1,12908:6630773,39850503:0,393216,0 +(1,12913:6630773,40806612:25952256,1349325,196608 +g1,12913:6630773,40806612 +g1,12913:6630773,40806612 +g1,12913:6434165,40806612 +(1,12913:6434165,40806612:0,1349325,196608 +r1,12913:32779637,40806612:26345472,1545933,196608 +k1,12913:6434165,40806612:-26345472 +) +(1,12913:6434165,40806612:26345472,1349325,196608 +[1,12913:6630773,40806612:25952256,1152717,0 +(1,12910:6630773,40064413:25952256,410518,107478 +(1,12909:6630773,40064413:0,0,0 +g1,12909:6630773,40064413 +g1,12909:6630773,40064413 +g1,12909:6303093,40064413 +(1,12909:6303093,40064413:0,0,0 +) +g1,12909:6630773,40064413 +) +k1,12910:6630773,40064413:0 +g1,12910:12953688,40064413 +g1,12910:13585980,40064413 +g1,12910:15799002,40064413 +g1,12910:17695877,40064413 +g1,12910:18328169,40064413 +g1,12910:19592752,40064413 +h1,12910:19908898,40064413:0,0,0 +k1,12910:32583029,40064413:12674131 +g1,12910:32583029,40064413 +) +(1,12911:6630773,40730591:25952256,410518,76021 +h1,12911:6630773,40730591:0,0,0 +g1,12911:6946919,40730591 +g1,12911:7263065,40730591 +g1,12911:12953688,40730591 +g1,12911:13585980,40730591 +h1,12911:15482854,40730591:0,0,0 +k1,12911:32583030,40730591:17100176 +g1,12911:32583030,40730591 +) +] +) +g1,12913:32583029,40806612 +g1,12913:6630773,40806612 +g1,12913:6630773,40806612 +g1,12913:32583029,40806612 +g1,12913:32583029,40806612 +) +h1,12913:6630773,41003220:0,0,0 +] +(1,12923:32583029,45706769:0,0,0 +g1,12923:32583029,45706769 +) +) +] +(1,12923:6630773,47279633:25952256,0,0 +h1,12923:6630773,47279633:25952256,0,0 +) +] +h1,12923:4262630,4025873:0,0,0 +] +!18961 +}248 +Input:1785:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1786:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1787:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1788:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1789:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1790:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{249 +[1,12968:4262630,47279633:28320399,43253760,0 +(1,12968:4262630,4025873:0,0,0 +[1,12968:-473657,4025873:25952256,0,0 +(1,12968:-473657,-710414:25952256,0,0 +h1,12968:-473657,-710414:0,0,0 +(1,12968:-473657,-710414:0,0,0 +(1,12968:-473657,-710414:0,0,0 +g1,12968:-473657,-710414 +(1,12968:-473657,-710414:65781,0,65781 +g1,12968:-407876,-710414 +[1,12968:-407876,-644633:0,0,0 ] ) -k1,12949:-473657,-710414:-65781 +k1,12968:-473657,-710414:-65781 ) ) -k1,12949:25478599,-710414:25952256 -g1,12949:25478599,-710414 +k1,12968:25478599,-710414:25952256 +g1,12968:25478599,-710414 ) ] ) -[1,12949:6630773,47279633:25952256,43253760,0 -[1,12949:6630773,4812305:25952256,786432,0 -(1,12949:6630773,4812305:25952256,485622,11795 -(1,12949:6630773,4812305:25952256,485622,11795 -g1,12949:3078558,4812305 -[1,12949:3078558,4812305:0,0,0 -(1,12949:3078558,2439708:0,1703936,0 -k1,12949:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12949:2537886,2439708:1179648,16384,0 +[1,12968:6630773,47279633:25952256,43253760,0 +[1,12968:6630773,4812305:25952256,786432,0 +(1,12968:6630773,4812305:25952256,513147,134348 +(1,12968:6630773,4812305:25952256,513147,134348 +g1,12968:3078558,4812305 +[1,12968:3078558,4812305:0,0,0 +(1,12968:3078558,2439708:0,1703936,0 +k1,12968:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,12968:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12949:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,12968:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12949:3078558,4812305:0,0,0 -(1,12949:3078558,2439708:0,1703936,0 -g1,12949:29030814,2439708 -g1,12949:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12949:36151628,1915420:16384,1179648,0 +[1,12968:3078558,4812305:0,0,0 +(1,12968:3078558,2439708:0,1703936,0 +g1,12968:29030814,2439708 +g1,12968:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,12968:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12949:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,12968:37855564,2439708:1179648,16384,0 ) ) -k1,12949:3078556,2439708:-34777008 +k1,12968:3078556,2439708:-34777008 ) ] -[1,12949:3078558,4812305:0,0,0 -(1,12949:3078558,49800853:0,16384,2228224 -k1,12949:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12949:2537886,49800853:1179648,16384,0 +[1,12968:3078558,4812305:0,0,0 +(1,12968:3078558,49800853:0,16384,2228224 +k1,12968:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,12968:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12949:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,12968:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12949:3078558,4812305:0,0,0 -(1,12949:3078558,49800853:0,16384,2228224 -g1,12949:29030814,49800853 -g1,12949:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12949:36151628,51504789:16384,1179648,0 +[1,12968:3078558,4812305:0,0,0 +(1,12968:3078558,49800853:0,16384,2228224 +g1,12968:29030814,49800853 +g1,12968:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,12968:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12949:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,12968:37855564,49800853:1179648,16384,0 ) ) -k1,12949:3078556,49800853:-34777008 +k1,12968:3078556,49800853:-34777008 ) ] -g1,12949:6630773,4812305 -g1,12949:6630773,4812305 -g1,12949:9560887,4812305 -k1,12949:31387651,4812305:21826764 -) +g1,12968:6630773,4812305 +k1,12968:25712890,4812305:17886740 +g1,12968:29057847,4812305 +g1,12968:29873114,4812305 +) ) ] -[1,12949:6630773,45706769:25952256,40108032,0 -(1,12949:6630773,45706769:25952256,40108032,0 -(1,12949:6630773,45706769:0,0,0 -g1,12949:6630773,45706769 +[1,12968:6630773,45706769:25952256,40108032,0 +(1,12968:6630773,45706769:25952256,40108032,0 +(1,12968:6630773,45706769:0,0,0 +g1,12968:6630773,45706769 ) -[1,12949:6630773,45706769:25952256,40108032,0 -(1,12897:6630773,14661426:25952256,9062689,0 -k1,12897:10523651,14661426:3892878 -h1,12896:10523651,14661426:0,0,0 -(1,12896:10523651,14661426:18166500,9062689,0 -(1,12896:10523651,14661426:18167381,9062712,0 -(1,12896:10523651,14661426:18167381,9062712,0 -(1,12896:10523651,14661426:0,9062712,0 -(1,12896:10523651,14661426:0,14155776,0 -(1,12896:10523651,14661426:28377088,14155776,0 +[1,12968:6630773,45706769:25952256,40108032,0 +(1,12916:6630773,14661426:25952256,9062689,0 +k1,12916:10523651,14661426:3892878 +h1,12915:10523651,14661426:0,0,0 +(1,12915:10523651,14661426:18166500,9062689,0 +(1,12915:10523651,14661426:18167381,9062712,0 +(1,12915:10523651,14661426:18167381,9062712,0 +(1,12915:10523651,14661426:0,9062712,0 +(1,12915:10523651,14661426:0,14155776,0 +(1,12915:10523651,14661426:28377088,14155776,0 ) -k1,12896:10523651,14661426:-28377088 +k1,12915:10523651,14661426:-28377088 ) ) -g1,12896:28691032,14661426 -) -) -) -g1,12897:28690151,14661426 -k1,12897:32583029,14661426:3892878 -) -(1,12905:6630773,15502914:25952256,505283,134348 -h1,12904:6630773,15502914:983040,0,0 -k1,12904:9645663,15502914:240096 -k1,12904:10241618,15502914:240095 -k1,12904:11475240,15502914:240096 -k1,12904:12583688,15502914:240096 -k1,12904:13928066,15502914:240096 -k1,12904:15634857,15502914:240095 -k1,12904:17312158,15502914:240096 -k1,12904:18313782,15502914:240096 -k1,12904:20291892,15502914:240095 -k1,12904:23758981,15502914:240096 -k1,12904:27401706,15502914:240096 -k1,12904:28293230,15502914:240096 -k1,12904:29625810,15502914:240095 -k1,12904:31563944,15502914:240096 -k1,12904:32583029,15502914:0 -) -(1,12905:6630773,16344402:25952256,513147,7863 -g1,12904:9525498,16344402 -g1,12904:10256224,16344402 -k1,12905:32583030,16344402:20285360 -g1,12905:32583030,16344402 -) -v1,12907:6630773,17524444:0,393216,0 -(1,12912:6630773,18512010:25952256,1380782,196608 -g1,12912:6630773,18512010 -g1,12912:6630773,18512010 -g1,12912:6434165,18512010 -(1,12912:6434165,18512010:0,1380782,196608 -r1,12912:32779637,18512010:26345472,1577390,196608 -k1,12912:6434165,18512010:-26345472 -) -(1,12912:6434165,18512010:26345472,1380782,196608 -[1,12912:6630773,18512010:25952256,1184174,0 -(1,12909:6630773,17738354:25952256,410518,107478 -(1,12908:6630773,17738354:0,0,0 -g1,12908:6630773,17738354 -g1,12908:6630773,17738354 -g1,12908:6303093,17738354 -(1,12908:6303093,17738354:0,0,0 -) -g1,12908:6630773,17738354 -) -k1,12909:6630773,17738354:0 -g1,12909:12953688,17738354 -g1,12909:13585980,17738354 -g1,12909:15799002,17738354 -g1,12909:17695877,17738354 -g1,12909:18328169,17738354 -g1,12909:19592752,17738354 -h1,12909:19908898,17738354:0,0,0 -k1,12909:32583029,17738354:12674131 -g1,12909:32583029,17738354 -) -(1,12910:6630773,18404532:25952256,410518,107478 -h1,12910:6630773,18404532:0,0,0 -g1,12910:6946919,18404532 -g1,12910:7263065,18404532 -g1,12910:12953688,18404532 -g1,12910:13585980,18404532 -g1,12910:15799000,18404532 -g1,12910:17379729,18404532 -g1,12910:18012021,18404532 -g1,12910:21173479,18404532 -g1,12910:21805771,18404532 -g1,12910:22754209,18404532 -g1,12910:23702646,18404532 -g1,12910:24334938,18404532 -h1,12910:25599520,18404532:0,0,0 -k1,12910:32583029,18404532:6983509 -g1,12910:32583029,18404532 -) -] -) -g1,12912:32583029,18512010 -g1,12912:6630773,18512010 -g1,12912:6630773,18512010 -g1,12912:32583029,18512010 -g1,12912:32583029,18512010 -) -h1,12912:6630773,18708618:0,0,0 -v1,12916:6630773,20577835:0,393216,0 -(1,12917:6630773,22845366:25952256,2660747,616038 -g1,12917:6630773,22845366 -(1,12917:6630773,22845366:25952256,2660747,616038 -(1,12917:6630773,23461404:25952256,3276785,0 -[1,12917:6630773,23461404:25952256,3276785,0 -(1,12917:6630773,23435190:25952256,3224357,0 -r1,12917:6656987,23435190:26214,3224357,0 -[1,12917:6656987,23435190:25899828,3224357,0 -(1,12917:6656987,22845366:25899828,2044709,0 -[1,12917:7246811,22845366:24720180,2044709,0 -(1,12917:7246811,21888031:24720180,1087374,134348 -k1,12916:8625439,21888031:168925 -k1,12916:10044135,21888031:168924 -k1,12916:11232145,21888031:168925 -k1,12916:12897257,21888031:168925 -k1,12916:14921506,21888031:168925 -k1,12916:15815258,21888031:168924 -k1,12916:16670345,21888031:168925 -k1,12916:17490698,21888031:168925 -k1,12916:18936920,21888031:168925 -k1,12916:19721882,21888031:168924 -k1,12916:20909892,21888031:168925 -k1,12916:22732290,21888031:168925 -k1,12916:24756539,21888031:168925 -k1,12916:26580247,21888031:168924 -k1,12916:28994435,21888031:168925 -k1,12916:31019340,21888031:168925 -k1,12916:31966991,21888031:0 -) -(1,12917:7246811,22729519:24720180,513147,115847 -g1,12916:9100824,22729519 -g1,12916:12062396,22729519 -g1,12916:14272270,22729519 -g1,12916:15419150,22729519 -(1,12916:15419150,22729519:0,414482,115847 -r1,12917:16832551,22729519:1413401,530329,115847 -k1,12916:15419150,22729519:-1413401 -) -(1,12916:15419150,22729519:1413401,414482,115847 -k1,12916:15419150,22729519:3277 -h1,12916:16829274,22729519:0,411205,112570 -) -g1,12916:17031780,22729519 -g1,12916:17913894,22729519 -g1,12916:19060774,22729519 -g1,12916:20914787,22729519 -g1,12916:23876359,22729519 -g1,12916:26086233,22729519 -g1,12916:27233113,22729519 -(1,12916:27233113,22729519:0,452978,115847 -r1,12917:27943091,22729519:709978,568825,115847 -k1,12916:27233113,22729519:-709978 -) -(1,12916:27233113,22729519:709978,452978,115847 -k1,12916:27233113,22729519:3277 -h1,12916:27939814,22729519:0,411205,112570 -) -k1,12917:31966991,22729519:3850230 -g1,12917:31966991,22729519 -) -] -) -] -r1,12917:32583029,23435190:26214,3224357,0 -) -] -) -) -g1,12917:32583029,22845366 -) -h1,12917:6630773,23461404:0,0,0 -(1,12920:6630773,24816756:25952256,513147,126483 -h1,12919:6630773,24816756:983040,0,0 -k1,12919:10075099,24816756:225198 -k1,12919:14275711,24816756:225198 -k1,12919:17526706,24816756:225198 -k1,12919:19025269,24816756:225198 -k1,12919:21706756,24816756:225198 -k1,12919:23123399,24816756:225198 -k1,12919:27049415,24816756:225198 -k1,12919:30300410,24816756:225198 -k1,12919:32583029,24816756:0 -) -(1,12920:6630773,25658244:25952256,505283,7863 -g1,12919:7934284,25658244 -g1,12919:9419329,25658244 -g1,12919:10366324,25658244 -k1,12920:32583029,25658244:20529808 -g1,12920:32583029,25658244 -) -v1,12922:6630773,26838287:0,393216,0 -(1,12928:6630773,28492031:25952256,2046960,196608 -g1,12928:6630773,28492031 -g1,12928:6630773,28492031 -g1,12928:6434165,28492031 -(1,12928:6434165,28492031:0,2046960,196608 -r1,12928:32779637,28492031:26345472,2243568,196608 -k1,12928:6434165,28492031:-26345472 -) -(1,12928:6434165,28492031:26345472,2046960,196608 -[1,12928:6630773,28492031:25952256,1850352,0 -(1,12924:6630773,27052197:25952256,410518,107478 -(1,12923:6630773,27052197:0,0,0 -g1,12923:6630773,27052197 -g1,12923:6630773,27052197 -g1,12923:6303093,27052197 -(1,12923:6303093,27052197:0,0,0 -) -g1,12923:6630773,27052197 -) -k1,12924:6630773,27052197:0 -g1,12924:12953688,27052197 -g1,12924:13585980,27052197 -g1,12924:15482856,27052197 -g1,12924:17379731,27052197 -g1,12924:18012023,27052197 -g1,12924:19276606,27052197 -h1,12924:19592752,27052197:0,0,0 -k1,12924:32583029,27052197:12990277 -g1,12924:32583029,27052197 -) -(1,12925:6630773,27718375:25952256,410518,82312 -h1,12925:6630773,27718375:0,0,0 -g1,12925:6946919,27718375 -g1,12925:7263065,27718375 -g1,12925:12953688,27718375 -g1,12925:13585980,27718375 -g1,12925:17379729,27718375 -g1,12925:18328167,27718375 -g1,12925:19908896,27718375 -g1,12925:20541188,27718375 -g1,12925:21173480,27718375 -g1,12925:21805772,27718375 -k1,12925:21805772,27718375:0 -h1,12925:23386502,27718375:0,0,0 -k1,12925:32583029,27718375:9196527 -g1,12925:32583029,27718375 -) -(1,12926:6630773,28384553:25952256,404226,107478 -h1,12926:6630773,28384553:0,0,0 -g1,12926:6946919,28384553 -g1,12926:7263065,28384553 -g1,12926:7579211,28384553 -g1,12926:7895357,28384553 -g1,12926:8211503,28384553 -g1,12926:8527649,28384553 -g1,12926:8843795,28384553 -g1,12926:9159941,28384553 -g1,12926:9476087,28384553 -g1,12926:9792233,28384553 -g1,12926:10108379,28384553 -g1,12926:10424525,28384553 -g1,12926:10740671,28384553 -g1,12926:11056817,28384553 -g1,12926:11372963,28384553 -g1,12926:11689109,28384553 -g1,12926:13269838,28384553 -g1,12926:13902130,28384553 -g1,12926:16115151,28384553 -g1,12926:16747443,28384553 -g1,12926:17695881,28384553 -g1,12926:18328173,28384553 -g1,12926:18960465,28384553 -h1,12926:20541193,28384553:0,0,0 -k1,12926:32583029,28384553:12041836 -g1,12926:32583029,28384553 -) -] -) -g1,12928:32583029,28492031 -g1,12928:6630773,28492031 -g1,12928:6630773,28492031 -g1,12928:32583029,28492031 -g1,12928:32583029,28492031 -) -h1,12928:6630773,28688639:0,0,0 -v1,12932:6630773,30557856:0,393216,0 -(1,12933:6630773,34518999:25952256,4354359,616038 -g1,12933:6630773,34518999 -(1,12933:6630773,34518999:25952256,4354359,616038 -(1,12933:6630773,35135037:25952256,4970397,0 -[1,12933:6630773,35135037:25952256,4970397,0 -(1,12933:6630773,35108823:25952256,4917969,0 -r1,12933:6656987,35108823:26214,4917969,0 -[1,12933:6656987,35108823:25899828,4917969,0 -(1,12933:6656987,34518999:25899828,3738321,0 -[1,12933:7246811,34518999:24720180,3738321,0 -(1,12933:7246811,31868052:24720180,1087374,134348 -k1,12932:8716406,31868052:259892 -k1,12932:10226071,31868052:259893 -k1,12932:11505048,31868052:259892 -k1,12932:13261128,31868052:259893 -k1,12932:15376344,31868052:259892 -k1,12932:16287665,31868052:259893 -k1,12932:17640042,31868052:259892 -k1,12932:18255795,31868052:259893 -k1,12932:21278030,31868052:259892 -k1,12932:24407089,31868052:259893 -k1,12932:26160547,31868052:259892 -k1,12932:27106602,31868052:259893 -$1,12932:27106602,31868052 -(1,12932:27466395,31592771:1071383,353698,7340 -) -$1,12932:28537778,31868052 -k1,12932:28971340,31868052:259892 -k1,12932:31966991,31868052:0 -) -(1,12933:7246811,32709540:24720180,513147,134348 -k1,12932:8441823,32709540:175927 -k1,12932:12434567,32709540:175927 -k1,12932:14815781,32709540:175927 -k1,12932:17550234,32709540:175927 -(1,12932:17550234,32709540:0,414482,122846 -r1,12933:18963635,32709540:1413401,537328,122846 -k1,12932:17550234,32709540:-1413401 -) -(1,12932:17550234,32709540:1413401,414482,122846 -k1,12932:17550234,32709540:3277 -h1,12932:18960358,32709540:0,411205,112570 -) -k1,12932:19139562,32709540:175927 -k1,12932:23172283,32709540:175927 -k1,12932:24246054,32709540:175928 -k1,12932:25625222,32709540:175927 -k1,12932:26562677,32709540:175927 -k1,12932:28806920,32709540:175927 -k1,12932:29642139,32709540:175927 -k1,12932:30588769,32709540:175927 -k1,12933:31966991,32709540:0 -) -(1,12933:7246811,33551028:24720180,513147,126483 -k1,12932:10015290,33551028:232891 -k1,12932:13117347,33551028:232891 -k1,12932:14541684,33551028:232892 -k1,12932:15536103,33551028:232891 -k1,12932:17837310,33551028:232891 -k1,12932:18729493,33551028:232891 -k1,12932:19733087,33551028:232891 -k1,12932:23270959,33551028:232891 -k1,12932:25662607,33551028:232892 -k1,12932:28590994,33551028:232891 -k1,12932:31205463,33551028:232891 -k1,12932:31966991,33551028:0 -) -(1,12933:7246811,34392516:24720180,505283,126483 -g1,12932:8904871,34392516 -k1,12933:31966992,34392516:21392264 -g1,12933:31966992,34392516 -) -] -) -] -r1,12933:32583029,35108823:26214,4917969,0 -) -] -) -) -g1,12933:32583029,34518999 -) -h1,12933:6630773,35135037:0,0,0 -(1,12938:6630773,37740161:25952256,555811,12975 -(1,12938:6630773,37740161:2450326,534184,12975 -g1,12938:6630773,37740161 -g1,12938:9081099,37740161 -) -k1,12938:32583029,37740161:19484376 -g1,12938:32583029,37740161 -) -(1,12943:6630773,38974865:25952256,505283,126483 -k1,12942:8034663,38974865:207203 -k1,12942:11750008,38974865:207203 -k1,12942:15086555,38974865:207203 -k1,12942:15909796,38974865:207203 -k1,12942:17320240,38974865:207203 -k1,12942:19806130,38974865:207203 -k1,12942:21117614,38974865:207202 -k1,12942:22072583,38974865:207203 -k1,12942:26816188,38974865:207203 -k1,12942:27832761,38974865:207203 -k1,12942:29205194,38974865:207203 -k1,12942:30801760,38974865:207203 -k1,12942:32583029,38974865:0 -) -(1,12943:6630773,39816353:25952256,513147,126483 -k1,12942:7457603,39816353:143945 -k1,12942:9903828,39816353:143945 -k1,12942:10857143,39816353:143945 -k1,12942:12509727,39816353:143945 -k1,12942:14157723,39816353:143945 -k1,12942:16734364,39816353:143945 -k1,12942:18162815,39816353:143945 -k1,12942:18772721,39816353:143945 -k1,12942:20488875,39816353:143945 -k1,12942:22447512,39816353:143945 -k1,12942:23583017,39816353:143945 -k1,12942:26659698,39816353:143945 -k1,12942:27911857,39816353:143945 -k1,12942:29074887,39816353:143945 -k1,12942:32583029,39816353:0 -) -(1,12943:6630773,40657841:25952256,513147,11795 -k1,12942:7958095,40657841:194860 -k1,12942:8900722,40657841:194861 -k1,12942:12324541,40657841:194860 -k1,12942:14087022,40657841:194860 -k1,12942:15300968,40657841:194861 -k1,12942:17575941,40657841:194860 -k1,12942:18430093,40657841:194860 -k1,12942:22696706,40657841:194861 -k1,12942:24901555,40657841:194860 -k1,12942:26793142,40657841:194860 -k1,12942:28976365,40657841:194861 -k1,12942:30768337,40657841:194860 -k1,12942:32583029,40657841:0 -) -(1,12943:6630773,41499329:25952256,513147,134348 -k1,12942:7895430,41499329:160375 -k1,12942:8803571,41499329:160375 -k1,12942:11185617,41499329:160375 -k1,12942:13044030,41499329:160375 -k1,12942:16101752,41499329:160375 -k1,12942:18865872,41499329:160375 -k1,12942:19382107,41499329:160375 -k1,12942:21114691,41499329:160375 -k1,12942:21957951,41499329:160375 -k1,12942:22879854,41499329:160375 -k1,12942:25108545,41499329:160375 -k1,12942:25928212,41499329:160375 -k1,12942:29114384,41499329:160375 -(1,12942:29114384,41499329:0,452978,115847 -r1,12942:31231209,41499329:2116825,568825,115847 -k1,12942:29114384,41499329:-2116825 -) -(1,12942:29114384,41499329:2116825,452978,115847 -k1,12942:29114384,41499329:3277 -h1,12942:31227932,41499329:0,411205,112570 -) -k1,12942:31391584,41499329:160375 -k1,12943:32583029,41499329:0 -) -(1,12943:6630773,42340817:25952256,513147,134348 -(1,12942:6630773,42340817:0,452978,115847 -r1,12942:8747598,42340817:2116825,568825,115847 -k1,12942:6630773,42340817:-2116825 -) -(1,12942:6630773,42340817:2116825,452978,115847 -k1,12942:6630773,42340817:3277 -h1,12942:8744321,42340817:0,411205,112570 -) -k1,12942:9167178,42340817:245910 -k1,12942:10462975,42340817:245910 -k1,12942:12987573,42340817:245911 -h1,12942:13958161,42340817:0,0,0 -k1,12942:14204071,42340817:245910 -k1,12942:15259351,42340817:245910 -k1,12942:17003414,42340817:245910 -h1,12942:18198791,42340817:0,0,0 -k1,12942:18444702,42340817:245911 -k1,12942:19638263,42340817:245910 -k1,12942:20654876,42340817:245910 -k1,12942:24633061,42340817:245910 -k1,12942:25538264,42340817:245911 -k1,12942:27114555,42340817:245910 -k1,12942:30768337,42340817:245910 -k1,12942:32583029,42340817:0 -) -(1,12943:6630773,43182305:25952256,513147,138281 -k1,12942:7997322,43182305:262267 -k1,12942:9007355,43182305:262267 -k1,12942:10782847,43182305:262266 -k1,12942:11696542,43182305:262267 -k1,12942:13757772,43182305:262267 -k1,12942:15287505,43182305:262267 -k1,12942:15905632,43182305:262267 -k1,12942:17445195,43182305:262266 -k1,12942:20167684,43182305:262267 -k1,12942:23506866,43182305:262267 -k1,12942:24428425,43182305:262267 -$1,12942:24428425,43182305 -$1,12942:24931086,43182305 -k1,12942:25193353,43182305:262267 -k1,12942:26647065,43182305:262267 -$1,12942:26647065,43182305 -$1,12942:27198878,43182305 -k1,12942:27461144,43182305:262266 -k1,12942:29734056,43182305:262267 -k1,12942:31563944,43182305:262267 -k1,12942:32583029,43182305:0 -) -(1,12943:6630773,44023793:25952256,505283,7863 -k1,12943:32583029,44023793:24389222 -g1,12943:32583029,44023793 -) -(1,12945:6630773,44865281:25952256,513147,134348 -h1,12944:6630773,44865281:983040,0,0 -k1,12944:8330215,44865281:246509 -k1,12944:9108221,44865281:246509 -k1,12944:11984690,44865281:246509 -k1,12944:12882627,44865281:246509 -k1,12944:16696916,44865281:246509 -k1,12944:18332788,44865281:246509 -k1,12944:19388667,44865281:246509 -k1,12944:20654260,44865281:246508 -k1,12944:21696376,44865281:246509 -k1,12944:23640923,44865281:246509 -k1,12944:26585549,44865281:246509 -k1,12944:27785607,44865281:246509 -k1,12944:30701397,44865281:246509 -k1,12944:31563944,44865281:246509 -k1,12944:32583029,44865281:0 -) -(1,12945:6630773,45706769:25952256,513147,126483 -k1,12944:8496036,45706769:211790 -k1,12944:10986514,45706769:211791 -k1,12944:12217389,45706769:211790 -k1,12944:15900622,45706769:211791 -k1,12944:16771704,45706769:211790 -k1,12944:20017812,45706769:211791 -k1,12944:20888894,45706769:211790 -k1,12944:23302694,45706769:211790 -k1,12944:26411176,45706769:211791 -k1,12944:27814411,45706769:211790 -k1,12944:28685494,45706769:211791 -k1,12944:31896867,45706769:211790 -k1,12945:32583029,45706769:0 -) -] -(1,12949:32583029,45706769:0,0,0 -g1,12949:32583029,45706769 -) -) -] -(1,12949:6630773,47279633:25952256,0,0 -h1,12949:6630773,47279633:25952256,0,0 -) -] -h1,12949:4262630,4025873:0,0,0 -] -!19275 -}248 -Input:1795:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1796:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1797:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1798:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1799:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1800:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1801:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1802:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1803:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1804:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1805:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1806:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1807:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1808:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1809:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1810:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1388 -{249 -[1,12998:4262630,47279633:28320399,43253760,0 -(1,12998:4262630,4025873:0,0,0 -[1,12998:-473657,4025873:25952256,0,0 -(1,12998:-473657,-710414:25952256,0,0 -h1,12998:-473657,-710414:0,0,0 -(1,12998:-473657,-710414:0,0,0 -(1,12998:-473657,-710414:0,0,0 -g1,12998:-473657,-710414 -(1,12998:-473657,-710414:65781,0,65781 -g1,12998:-407876,-710414 -[1,12998:-407876,-644633:0,0,0 +g1,12915:28691032,14661426 +) +) +) +g1,12916:28690151,14661426 +k1,12916:32583029,14661426:3892878 +) +(1,12924:6630773,15502914:25952256,505283,134348 +h1,12923:6630773,15502914:983040,0,0 +k1,12923:9645663,15502914:240096 +k1,12923:10241618,15502914:240095 +k1,12923:11475240,15502914:240096 +k1,12923:12583688,15502914:240096 +k1,12923:13928066,15502914:240096 +k1,12923:15634857,15502914:240095 +k1,12923:17312158,15502914:240096 +k1,12923:18313782,15502914:240096 +k1,12923:20291892,15502914:240095 +k1,12923:23758981,15502914:240096 +k1,12923:27401706,15502914:240096 +k1,12923:28293230,15502914:240096 +k1,12923:29625810,15502914:240095 +k1,12923:31563944,15502914:240096 +k1,12923:32583029,15502914:0 +) +(1,12924:6630773,16344402:25952256,513147,7863 +g1,12923:9525498,16344402 +g1,12923:10256224,16344402 +k1,12924:32583030,16344402:20285360 +g1,12924:32583030,16344402 +) +v1,12926:6630773,17534868:0,393216,0 +(1,12931:6630773,18522434:25952256,1380782,196608 +g1,12931:6630773,18522434 +g1,12931:6630773,18522434 +g1,12931:6434165,18522434 +(1,12931:6434165,18522434:0,1380782,196608 +r1,12931:32779637,18522434:26345472,1577390,196608 +k1,12931:6434165,18522434:-26345472 +) +(1,12931:6434165,18522434:26345472,1380782,196608 +[1,12931:6630773,18522434:25952256,1184174,0 +(1,12928:6630773,17748778:25952256,410518,107478 +(1,12927:6630773,17748778:0,0,0 +g1,12927:6630773,17748778 +g1,12927:6630773,17748778 +g1,12927:6303093,17748778 +(1,12927:6303093,17748778:0,0,0 +) +g1,12927:6630773,17748778 +) +k1,12928:6630773,17748778:0 +g1,12928:12953688,17748778 +g1,12928:13585980,17748778 +g1,12928:15799002,17748778 +g1,12928:17695877,17748778 +g1,12928:18328169,17748778 +g1,12928:19592752,17748778 +h1,12928:19908898,17748778:0,0,0 +k1,12928:32583029,17748778:12674131 +g1,12928:32583029,17748778 +) +(1,12929:6630773,18414956:25952256,410518,107478 +h1,12929:6630773,18414956:0,0,0 +g1,12929:6946919,18414956 +g1,12929:7263065,18414956 +g1,12929:12953688,18414956 +g1,12929:13585980,18414956 +g1,12929:15799000,18414956 +g1,12929:17379729,18414956 +g1,12929:18012021,18414956 +g1,12929:21173479,18414956 +g1,12929:21805771,18414956 +g1,12929:22754209,18414956 +g1,12929:23702646,18414956 +g1,12929:24334938,18414956 +h1,12929:25599520,18414956:0,0,0 +k1,12929:32583029,18414956:6983509 +g1,12929:32583029,18414956 +) +] +) +g1,12931:32583029,18522434 +g1,12931:6630773,18522434 +g1,12931:6630773,18522434 +g1,12931:32583029,18522434 +g1,12931:32583029,18522434 +) +h1,12931:6630773,18719042:0,0,0 +v1,12935:6630773,20609106:0,393216,0 +(1,12936:6630773,22876637:25952256,2660747,616038 +g1,12936:6630773,22876637 +(1,12936:6630773,22876637:25952256,2660747,616038 +(1,12936:6630773,23492675:25952256,3276785,0 +[1,12936:6630773,23492675:25952256,3276785,0 +(1,12936:6630773,23466461:25952256,3224357,0 +r1,12936:6656987,23466461:26214,3224357,0 +[1,12936:6656987,23466461:25899828,3224357,0 +(1,12936:6656987,22876637:25899828,2044709,0 +[1,12936:7246811,22876637:24720180,2044709,0 +(1,12936:7246811,21919302:24720180,1087374,134348 +k1,12935:8625439,21919302:168925 +k1,12935:10044135,21919302:168924 +k1,12935:11232145,21919302:168925 +k1,12935:12897257,21919302:168925 +k1,12935:14921506,21919302:168925 +k1,12935:15815258,21919302:168924 +k1,12935:16670345,21919302:168925 +k1,12935:17490698,21919302:168925 +k1,12935:18936920,21919302:168925 +k1,12935:19721882,21919302:168924 +k1,12935:20909892,21919302:168925 +k1,12935:22732290,21919302:168925 +k1,12935:24756539,21919302:168925 +k1,12935:26580247,21919302:168924 +k1,12935:28994435,21919302:168925 +k1,12935:31019340,21919302:168925 +k1,12935:31966991,21919302:0 +) +(1,12936:7246811,22760790:24720180,513147,115847 +g1,12935:9100824,22760790 +g1,12935:12062396,22760790 +g1,12935:14272270,22760790 +g1,12935:15419150,22760790 +(1,12935:15419150,22760790:0,414482,115847 +r1,12936:16832551,22760790:1413401,530329,115847 +k1,12935:15419150,22760790:-1413401 +) +(1,12935:15419150,22760790:1413401,414482,115847 +k1,12935:15419150,22760790:3277 +h1,12935:16829274,22760790:0,411205,112570 +) +g1,12935:17031780,22760790 +g1,12935:17913894,22760790 +g1,12935:19060774,22760790 +g1,12935:20914787,22760790 +g1,12935:23876359,22760790 +g1,12935:26086233,22760790 +g1,12935:27233113,22760790 +(1,12935:27233113,22760790:0,452978,115847 +r1,12936:27943091,22760790:709978,568825,115847 +k1,12935:27233113,22760790:-709978 +) +(1,12935:27233113,22760790:709978,452978,115847 +k1,12935:27233113,22760790:3277 +h1,12935:27939814,22760790:0,411205,112570 +) +k1,12936:31966991,22760790:3850230 +g1,12936:31966991,22760790 +) +] +) +] +r1,12936:32583029,23466461:26214,3224357,0 +) +] +) +) +g1,12936:32583029,22876637 +) +h1,12936:6630773,23492675:0,0,0 +(1,12939:6630773,24858451:25952256,513147,126483 +h1,12938:6630773,24858451:983040,0,0 +k1,12938:10075099,24858451:225198 +k1,12938:14275711,24858451:225198 +k1,12938:17526706,24858451:225198 +k1,12938:19025269,24858451:225198 +k1,12938:21706756,24858451:225198 +k1,12938:23123399,24858451:225198 +k1,12938:27049415,24858451:225198 +k1,12938:30300410,24858451:225198 +k1,12938:32583029,24858451:0 +) +(1,12939:6630773,25699939:25952256,505283,7863 +g1,12938:7934284,25699939 +g1,12938:9419329,25699939 +g1,12938:10366324,25699939 +k1,12939:32583029,25699939:20529808 +g1,12939:32583029,25699939 +) +v1,12941:6630773,26890405:0,393216,0 +(1,12947:6630773,28544149:25952256,2046960,196608 +g1,12947:6630773,28544149 +g1,12947:6630773,28544149 +g1,12947:6434165,28544149 +(1,12947:6434165,28544149:0,2046960,196608 +r1,12947:32779637,28544149:26345472,2243568,196608 +k1,12947:6434165,28544149:-26345472 +) +(1,12947:6434165,28544149:26345472,2046960,196608 +[1,12947:6630773,28544149:25952256,1850352,0 +(1,12943:6630773,27104315:25952256,410518,107478 +(1,12942:6630773,27104315:0,0,0 +g1,12942:6630773,27104315 +g1,12942:6630773,27104315 +g1,12942:6303093,27104315 +(1,12942:6303093,27104315:0,0,0 +) +g1,12942:6630773,27104315 +) +k1,12943:6630773,27104315:0 +g1,12943:12953688,27104315 +g1,12943:13585980,27104315 +g1,12943:15482856,27104315 +g1,12943:17379731,27104315 +g1,12943:18012023,27104315 +g1,12943:19276606,27104315 +h1,12943:19592752,27104315:0,0,0 +k1,12943:32583029,27104315:12990277 +g1,12943:32583029,27104315 +) +(1,12944:6630773,27770493:25952256,410518,82312 +h1,12944:6630773,27770493:0,0,0 +g1,12944:6946919,27770493 +g1,12944:7263065,27770493 +g1,12944:12953688,27770493 +g1,12944:13585980,27770493 +g1,12944:17379729,27770493 +g1,12944:18328167,27770493 +g1,12944:19908896,27770493 +g1,12944:20541188,27770493 +g1,12944:21173480,27770493 +g1,12944:21805772,27770493 +k1,12944:21805772,27770493:0 +h1,12944:23386502,27770493:0,0,0 +k1,12944:32583029,27770493:9196527 +g1,12944:32583029,27770493 +) +(1,12945:6630773,28436671:25952256,404226,107478 +h1,12945:6630773,28436671:0,0,0 +g1,12945:6946919,28436671 +g1,12945:7263065,28436671 +g1,12945:7579211,28436671 +g1,12945:7895357,28436671 +g1,12945:8211503,28436671 +g1,12945:8527649,28436671 +g1,12945:8843795,28436671 +g1,12945:9159941,28436671 +g1,12945:9476087,28436671 +g1,12945:9792233,28436671 +g1,12945:10108379,28436671 +g1,12945:10424525,28436671 +g1,12945:10740671,28436671 +g1,12945:11056817,28436671 +g1,12945:11372963,28436671 +g1,12945:11689109,28436671 +g1,12945:13269838,28436671 +g1,12945:13902130,28436671 +g1,12945:16115151,28436671 +g1,12945:16747443,28436671 +g1,12945:17695881,28436671 +g1,12945:18328173,28436671 +g1,12945:18960465,28436671 +h1,12945:20541193,28436671:0,0,0 +k1,12945:32583029,28436671:12041836 +g1,12945:32583029,28436671 +) +] +) +g1,12947:32583029,28544149 +g1,12947:6630773,28544149 +g1,12947:6630773,28544149 +g1,12947:32583029,28544149 +g1,12947:32583029,28544149 +) +h1,12947:6630773,28740757:0,0,0 +v1,12951:6630773,30630821:0,393216,0 +(1,12952:6630773,34473344:25952256,4235739,616038 +g1,12952:6630773,34473344 +(1,12952:6630773,34473344:25952256,4235739,616038 +(1,12952:6630773,35089382:25952256,4851777,0 +[1,12952:6630773,35089382:25952256,4851777,0 +(1,12952:6630773,35063168:25952256,4799349,0 +r1,12952:6656987,35063168:26214,4799349,0 +[1,12952:6656987,35063168:25899828,4799349,0 +(1,12952:6656987,34473344:25899828,3619701,0 +[1,12952:7246811,34473344:24720180,3619701,0 +(1,12952:7246811,31941017:24720180,1087374,134348 +k1,12951:8625051,31941017:168537 +k1,12951:10043360,31941017:168537 +k1,12951:11230982,31941017:168537 +k1,12951:12895706,31941017:168537 +k1,12951:14919567,31941017:168537 +k1,12951:15739532,31941017:168537 +k1,12951:17000553,31941017:168536 +k1,12951:17524950,31941017:168537 +k1,12951:20455830,31941017:168537 +k1,12951:23493533,31941017:168537 +k1,12951:25155636,31941017:168537 +k1,12951:26010335,31941017:168537 +$1,12951:26010335,31941017 +(1,12951:26370128,31665736:1071383,353698,7340 +) +$1,12951:27441511,31941017 +k1,12951:27783718,31941017:168537 +k1,12951:30947906,31941017:168537 +k1,12951:31966991,31941017:0 +) +(1,12952:7246811,32782505:24720180,513147,134348 +k1,12951:11277652,32782505:214024 +k1,12951:13696963,32782505:214024 +k1,12951:16469513,32782505:214024 +(1,12951:16469513,32782505:0,414482,122846 +r1,12952:17882914,32782505:1413401,537328,122846 +k1,12951:16469513,32782505:-1413401 +) +(1,12951:16469513,32782505:1413401,414482,122846 +k1,12951:16469513,32782505:3277 +h1,12951:17879637,32782505:0,411205,112570 +) +k1,12951:18096938,32782505:214024 +k1,12951:22167756,32782505:214024 +k1,12951:23279623,32782505:214024 +k1,12951:24696888,32782505:214024 +k1,12951:25672440,32782505:214024 +k1,12951:27954780,32782505:214024 +k1,12951:28828096,32782505:214024 +k1,12951:29812823,32782505:214024 +k1,12952:31966991,32782505:0 +) +(1,12952:7246811,33623993:24720180,513147,126483 +k1,12951:9163029,33623993:156576 +k1,12951:12188772,33623993:156577 +k1,12951:13536794,33623993:156577 +k1,12951:14454898,33623993:156576 +k1,12951:16679790,33623993:156576 +k1,12951:17495659,33623993:156577 +k1,12951:18422938,33623993:156576 +k1,12951:21884496,33623993:156577 +k1,12951:24199828,33623993:156576 +k1,12951:27051901,33623993:156577 +k1,12951:29590056,33623993:156577 +k1,12951:30508160,33623993:156576 +k1,12951:31966991,33623993:0 +) +(1,12952:7246811,34465481:24720180,505283,7863 +k1,12952:31966992,34465481:23050324 +g1,12952:31966992,34465481 +) +] +) +] +r1,12952:32583029,35063168:26214,4799349,0 +) +] +) +) +g1,12952:32583029,34473344 +) +h1,12952:6630773,35089382:0,0,0 +(1,12957:6630773,37704930:25952256,555811,12975 +(1,12957:6630773,37704930:2450326,534184,12975 +g1,12957:6630773,37704930 +g1,12957:9081099,37704930 +) +k1,12957:32583029,37704930:19484376 +g1,12957:32583029,37704930 +) +(1,12962:6630773,38939634:25952256,505283,126483 +k1,12961:8034663,38939634:207203 +k1,12961:11750008,38939634:207203 +k1,12961:15086555,38939634:207203 +k1,12961:15909796,38939634:207203 +k1,12961:17320240,38939634:207203 +k1,12961:19806130,38939634:207203 +k1,12961:21117614,38939634:207202 +k1,12961:22072583,38939634:207203 +k1,12961:26816188,38939634:207203 +k1,12961:27832761,38939634:207203 +k1,12961:29205194,38939634:207203 +k1,12961:30801760,38939634:207203 +k1,12961:32583029,38939634:0 +) +(1,12962:6630773,39781122:25952256,513147,126483 +k1,12961:7457603,39781122:143945 +k1,12961:9903828,39781122:143945 +k1,12961:10857143,39781122:143945 +k1,12961:12509727,39781122:143945 +k1,12961:14157723,39781122:143945 +k1,12961:16734364,39781122:143945 +k1,12961:18162815,39781122:143945 +k1,12961:18772721,39781122:143945 +k1,12961:20488875,39781122:143945 +k1,12961:22447512,39781122:143945 +k1,12961:23583017,39781122:143945 +k1,12961:26659698,39781122:143945 +k1,12961:27911857,39781122:143945 +k1,12961:29074887,39781122:143945 +k1,12961:32583029,39781122:0 +) +(1,12962:6630773,40622610:25952256,513147,11795 +k1,12961:7958095,40622610:194860 +k1,12961:8900722,40622610:194861 +k1,12961:12324541,40622610:194860 +k1,12961:14087022,40622610:194860 +k1,12961:15300968,40622610:194861 +k1,12961:17575941,40622610:194860 +k1,12961:18430093,40622610:194860 +k1,12961:22696706,40622610:194861 +k1,12961:24901555,40622610:194860 +k1,12961:26793142,40622610:194860 +k1,12961:28976365,40622610:194861 +k1,12961:30768337,40622610:194860 +k1,12961:32583029,40622610:0 +) +(1,12962:6630773,41464098:25952256,513147,134348 +k1,12961:7895430,41464098:160375 +k1,12961:8803571,41464098:160375 +k1,12961:11185617,41464098:160375 +k1,12961:13044030,41464098:160375 +k1,12961:16101752,41464098:160375 +k1,12961:18865872,41464098:160375 +k1,12961:19382107,41464098:160375 +k1,12961:21114691,41464098:160375 +k1,12961:21957951,41464098:160375 +k1,12961:22879854,41464098:160375 +k1,12961:25108545,41464098:160375 +k1,12961:25928212,41464098:160375 +k1,12961:29114384,41464098:160375 +(1,12961:29114384,41464098:0,452978,115847 +r1,12961:31231209,41464098:2116825,568825,115847 +k1,12961:29114384,41464098:-2116825 +) +(1,12961:29114384,41464098:2116825,452978,115847 +k1,12961:29114384,41464098:3277 +h1,12961:31227932,41464098:0,411205,112570 +) +k1,12961:31391584,41464098:160375 +k1,12962:32583029,41464098:0 +) +(1,12962:6630773,42305586:25952256,513147,134348 +(1,12961:6630773,42305586:0,452978,115847 +r1,12961:8747598,42305586:2116825,568825,115847 +k1,12961:6630773,42305586:-2116825 +) +(1,12961:6630773,42305586:2116825,452978,115847 +k1,12961:6630773,42305586:3277 +h1,12961:8744321,42305586:0,411205,112570 +) +k1,12961:9167178,42305586:245910 +k1,12961:10462975,42305586:245910 +k1,12961:12987573,42305586:245911 +h1,12961:13958161,42305586:0,0,0 +k1,12961:14204071,42305586:245910 +k1,12961:15259351,42305586:245910 +k1,12961:17003414,42305586:245910 +h1,12961:18198791,42305586:0,0,0 +k1,12961:18444702,42305586:245911 +k1,12961:19638263,42305586:245910 +k1,12961:20654876,42305586:245910 +k1,12961:24633061,42305586:245910 +k1,12961:25538264,42305586:245911 +k1,12961:27114555,42305586:245910 +k1,12961:30768337,42305586:245910 +k1,12961:32583029,42305586:0 +) +(1,12962:6630773,43147074:25952256,513147,138281 +k1,12961:7997322,43147074:262267 +k1,12961:9007355,43147074:262267 +k1,12961:10782847,43147074:262266 +k1,12961:11696542,43147074:262267 +k1,12961:13757772,43147074:262267 +k1,12961:15287505,43147074:262267 +k1,12961:15905632,43147074:262267 +k1,12961:17445195,43147074:262266 +k1,12961:20167684,43147074:262267 +k1,12961:23506866,43147074:262267 +k1,12961:24428425,43147074:262267 +$1,12961:24428425,43147074 +$1,12961:24931086,43147074 +k1,12961:25193353,43147074:262267 +k1,12961:26647065,43147074:262267 +$1,12961:26647065,43147074 +$1,12961:27198878,43147074 +k1,12961:27461144,43147074:262266 +k1,12961:29734056,43147074:262267 +k1,12961:31563944,43147074:262267 +k1,12961:32583029,43147074:0 +) +(1,12962:6630773,43988562:25952256,505283,7863 +k1,12962:32583029,43988562:24389222 +g1,12962:32583029,43988562 +) +(1,12964:6630773,44830050:25952256,513147,134348 +h1,12963:6630773,44830050:983040,0,0 +k1,12963:8330215,44830050:246509 +k1,12963:9108221,44830050:246509 +k1,12963:11984690,44830050:246509 +k1,12963:12882627,44830050:246509 +k1,12963:16696916,44830050:246509 +k1,12963:18332788,44830050:246509 +k1,12963:19388667,44830050:246509 +k1,12963:20654260,44830050:246508 +k1,12963:21696376,44830050:246509 +k1,12963:23640923,44830050:246509 +k1,12963:26585549,44830050:246509 +k1,12963:27785607,44830050:246509 +k1,12963:30701397,44830050:246509 +k1,12963:31563944,44830050:246509 +k1,12963:32583029,44830050:0 +) +(1,12964:6630773,45671538:25952256,513147,126483 +k1,12963:8496036,45671538:211790 +k1,12963:10986514,45671538:211791 +k1,12963:12217389,45671538:211790 +k1,12963:15900622,45671538:211791 +k1,12963:16771704,45671538:211790 +k1,12963:20017812,45671538:211791 +k1,12963:20888894,45671538:211790 +k1,12963:23302694,45671538:211790 +k1,12963:26411176,45671538:211791 +k1,12963:27814411,45671538:211790 +k1,12963:28685494,45671538:211791 +k1,12963:31896867,45671538:211790 +k1,12964:32583029,45671538:0 +) +] +(1,12968:32583029,45706769:0,0,0 +g1,12968:32583029,45706769 +) +) +] +(1,12968:6630773,47279633:25952256,0,0 +h1,12968:6630773,47279633:25952256,0,0 +) +] +h1,12968:4262630,4025873:0,0,0 +] +!19285 +}249 +Input:1791:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1792:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1793:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1794:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1795:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1796:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1797:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1798:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1799:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1800:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1801:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1802:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1803:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1804:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1805:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1806:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 +{250 +[1,13014:4262630,47279633:28320399,43253760,0 +(1,13014:4262630,4025873:0,0,0 +[1,13014:-473657,4025873:25952256,0,0 +(1,13014:-473657,-710414:25952256,0,0 +h1,13014:-473657,-710414:0,0,0 +(1,13014:-473657,-710414:0,0,0 +(1,13014:-473657,-710414:0,0,0 +g1,13014:-473657,-710414 +(1,13014:-473657,-710414:65781,0,65781 +g1,13014:-407876,-710414 +[1,13014:-407876,-644633:0,0,0 ] ) -k1,12998:-473657,-710414:-65781 +k1,13014:-473657,-710414:-65781 ) ) -k1,12998:25478599,-710414:25952256 -g1,12998:25478599,-710414 +k1,13014:25478599,-710414:25952256 +g1,13014:25478599,-710414 ) ] ) -[1,12998:6630773,47279633:25952256,43253760,0 -[1,12998:6630773,4812305:25952256,786432,0 -(1,12998:6630773,4812305:25952256,513147,134348 -(1,12998:6630773,4812305:25952256,513147,134348 -g1,12998:3078558,4812305 -[1,12998:3078558,4812305:0,0,0 -(1,12998:3078558,2439708:0,1703936,0 -k1,12998:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,12998:2537886,2439708:1179648,16384,0 +[1,13014:6630773,47279633:25952256,43253760,0 +[1,13014:6630773,4812305:25952256,786432,0 +(1,13014:6630773,4812305:25952256,485622,11795 +(1,13014:6630773,4812305:25952256,485622,11795 +g1,13014:3078558,4812305 +[1,13014:3078558,4812305:0,0,0 +(1,13014:3078558,2439708:0,1703936,0 +k1,13014:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13014:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,12998:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13014:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,12998:3078558,4812305:0,0,0 -(1,12998:3078558,2439708:0,1703936,0 -g1,12998:29030814,2439708 -g1,12998:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,12998:36151628,1915420:16384,1179648,0 +[1,13014:3078558,4812305:0,0,0 +(1,13014:3078558,2439708:0,1703936,0 +g1,13014:29030814,2439708 +g1,13014:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13014:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,12998:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13014:37855564,2439708:1179648,16384,0 ) ) -k1,12998:3078556,2439708:-34777008 +k1,13014:3078556,2439708:-34777008 ) ] -[1,12998:3078558,4812305:0,0,0 -(1,12998:3078558,49800853:0,16384,2228224 -k1,12998:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,12998:2537886,49800853:1179648,16384,0 +[1,13014:3078558,4812305:0,0,0 +(1,13014:3078558,49800853:0,16384,2228224 +k1,13014:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13014:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,12998:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13014:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,12998:3078558,4812305:0,0,0 -(1,12998:3078558,49800853:0,16384,2228224 -g1,12998:29030814,49800853 -g1,12998:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,12998:36151628,51504789:16384,1179648,0 +[1,13014:3078558,4812305:0,0,0 +(1,13014:3078558,49800853:0,16384,2228224 +g1,13014:29030814,49800853 +g1,13014:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13014:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,12998:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13014:37855564,49800853:1179648,16384,0 ) ) -k1,12998:3078556,49800853:-34777008 -) -] -g1,12998:6630773,4812305 -k1,12998:25712890,4812305:17886740 -g1,12998:29057847,4812305 -g1,12998:29873114,4812305 -) -) -] -[1,12998:6630773,45706769:25952256,40108032,0 -(1,12998:6630773,45706769:25952256,40108032,0 -(1,12998:6630773,45706769:0,0,0 -g1,12998:6630773,45706769 -) -[1,12998:6630773,45706769:25952256,40108032,0 -(1,12945:6630773,6254097:25952256,505283,134348 -(1,12944:6630773,6254097:0,452978,115847 -r1,12944:11561293,6254097:4930520,568825,115847 -k1,12944:6630773,6254097:-4930520 -) -(1,12944:6630773,6254097:4930520,452978,115847 -k1,12944:6630773,6254097:3277 -h1,12944:11558016,6254097:0,411205,112570 -) -k1,12944:11789403,6254097:228110 -k1,12944:14029469,6254097:228111 -k1,12944:15896634,6254097:228110 -k1,12944:16776173,6254097:228111 -k1,12944:17752049,6254097:228110 -k1,12944:21209119,6254097:228111 -k1,12944:26289515,6254097:228110 -k1,12944:27709071,6254097:228111 -k1,12944:29902606,6254097:228110 -k1,12944:32583029,6254097:0 -) -(1,12945:6630773,7095585:25952256,505283,134348 -g1,12944:8223953,7095585 -g1,12944:8779042,7095585 -g1,12944:10851290,7095585 -k1,12945:32583029,7095585:20000278 -g1,12945:32583029,7095585 -) -(1,12947:6630773,7937073:25952256,513147,134348 -h1,12946:6630773,7937073:983040,0,0 -k1,12946:8852741,7937073:196906 -k1,12946:10142132,7937073:196906 -k1,12946:10955075,7937073:196905 -k1,12946:12171066,7937073:196906 -k1,12946:15533361,7937073:196906 -k1,12946:16598619,7937073:196906 -k1,12946:19527721,7937073:196906 -k1,12946:21416767,7937073:196906 -k1,12946:24458590,7937073:196905 -k1,12946:28194440,7937073:196906 -k1,12946:31019995,7937073:196906 -k1,12947:32583029,7937073:0 -k1,12947:32583029,7937073:0 -) -v1,12949:6630773,9127539:0,393216,0 -(1,12957:6630773,12082182:25952256,3347859,196608 -g1,12957:6630773,12082182 -g1,12957:6630773,12082182 -g1,12957:6434165,12082182 -(1,12957:6434165,12082182:0,3347859,196608 -r1,12957:32779637,12082182:26345472,3544467,196608 -k1,12957:6434165,12082182:-26345472 -) -(1,12957:6434165,12082182:26345472,3347859,196608 -[1,12957:6630773,12082182:25952256,3151251,0 -(1,12951:6630773,9341449:25952256,410518,76021 -(1,12950:6630773,9341449:0,0,0 -g1,12950:6630773,9341449 -g1,12950:6630773,9341449 -g1,12950:6303093,9341449 -(1,12950:6303093,9341449:0,0,0 -) -g1,12950:6630773,9341449 -) -g1,12951:9792230,9341449 -g1,12951:10740668,9341449 -k1,12951:10740668,9341449:0 -h1,12951:14218271,9341449:0,0,0 -k1,12951:32583029,9341449:18364758 -g1,12951:32583029,9341449 -) -(1,12952:6630773,10007627:25952256,404226,101187 -h1,12952:6630773,10007627:0,0,0 -g1,12952:6946919,10007627 -g1,12952:7263065,10007627 -g1,12952:7895357,10007627 -g1,12952:8527649,10007627 -g1,12952:12321398,10007627 -g1,12952:13902127,10007627 -g1,12952:14534419,10007627 -g1,12952:15482857,10007627 -g1,12952:16431294,10007627 -g1,12952:17063586,10007627 -k1,12952:17063586,10007627:0 -h1,12952:18644315,10007627:0,0,0 -k1,12952:32583029,10007627:13938714 -g1,12952:32583029,10007627 -) -(1,12953:6630773,10673805:25952256,404226,82312 -h1,12953:6630773,10673805:0,0,0 -g1,12953:6946919,10673805 -g1,12953:7263065,10673805 -g1,12953:7579211,10673805 -g1,12953:7895357,10673805 -g1,12953:8211503,10673805 -g1,12953:8527649,10673805 -g1,12953:8843795,10673805 -g1,12953:9159941,10673805 -g1,12953:12321398,10673805 -g1,12953:13902127,10673805 -g1,12953:14534419,10673805 -g1,12953:15482857,10673805 -g1,12953:16431294,10673805 -g1,12953:17063586,10673805 -k1,12953:17063586,10673805:0 -h1,12953:18960460,10673805:0,0,0 -k1,12953:32583029,10673805:13622569 -g1,12953:32583029,10673805 -) -(1,12954:6630773,11339983:25952256,410518,107478 -h1,12954:6630773,11339983:0,0,0 -g1,12954:6946919,11339983 -g1,12954:7263065,11339983 -g1,12954:9159939,11339983 -g1,12954:9792231,11339983 -g1,12954:15482855,11339983 -g1,12954:17063584,11339983 -g1,12954:19908896,11339983 -h1,12954:21489624,11339983:0,0,0 -k1,12954:32583029,11339983:11093405 -g1,12954:32583029,11339983 -) -(1,12955:6630773,12006161:25952256,404226,76021 -h1,12955:6630773,12006161:0,0,0 -g1,12955:6946919,12006161 -g1,12955:7263065,12006161 -h1,12955:7579211,12006161:0,0,0 -k1,12955:32583029,12006161:25003818 -g1,12955:32583029,12006161 -) -] -) -g1,12957:32583029,12082182 -g1,12957:6630773,12082182 -g1,12957:6630773,12082182 -g1,12957:32583029,12082182 -g1,12957:32583029,12082182 -) -h1,12957:6630773,12278790:0,0,0 -(1,12961:6630773,13644566:25952256,513147,126483 -h1,12960:6630773,13644566:983040,0,0 -k1,12960:8832739,13644566:265377 -k1,12960:10230578,13644566:265377 -k1,12960:12224139,13644566:265377 -k1,12960:12845377,13644566:265378 -k1,12960:15144992,13644566:265377 -k1,12960:17579611,13644566:265377 -k1,12960:19122285,13644566:265377 -k1,12960:20003700,13644566:265377 -k1,12960:20624937,13644566:265377 -k1,12960:22735152,13644566:265377 -k1,12960:23659822,13644566:265378 -k1,12960:27090588,13644566:265377 -k1,12960:28080793,13644566:265377 -k1,12960:29630676,13644566:265377 -k1,12960:30915138,13644566:265377 -k1,12961:32583029,13644566:0 -) -(1,12961:6630773,14486054:25952256,513147,134348 -k1,12960:8936679,14486054:244143 -k1,12960:10172382,14486054:244143 -k1,12960:12286924,14486054:244144 -k1,12960:13182495,14486054:244143 -k1,12960:16928227,14486054:244143 -k1,12960:18125919,14486054:244143 -k1,12960:19676195,14486054:244143 -k1,12960:21117682,14486054:244144 -k1,12960:22590625,14486054:244143 -k1,12960:23853853,14486054:244143 -k1,12960:26009681,14486054:244143 -k1,12960:26881659,14486054:244143 -k1,12960:28329044,14486054:244144 -k1,12960:29940268,14486054:244143 -k1,12960:31052763,14486054:244143 -k1,12960:32583029,14486054:0 -) -(1,12961:6630773,15327542:25952256,513147,134348 -k1,12960:7562739,15327542:280538 -k1,12960:9280482,15327542:280538 -k1,12960:10247182,15327542:280538 -k1,12960:11298424,15327542:280539 -k1,12960:14651290,15327542:280538 -k1,12960:15583256,15327542:280538 -(1,12960:15583256,15327542:0,452978,115847 -r1,12960:20513776,15327542:4930520,568825,115847 -k1,12960:15583256,15327542:-4930520 -) -(1,12960:15583256,15327542:4930520,452978,115847 -k1,12960:15583256,15327542:3277 -h1,12960:20510499,15327542:0,411205,112570 -) -k1,12960:20967984,15327542:280538 -k1,12960:22267607,15327542:280538 -(1,12960:22267607,15327542:0,414482,122846 -r1,12960:23681008,15327542:1413401,537328,122846 -k1,12960:22267607,15327542:-1413401 -) -(1,12960:22267607,15327542:1413401,414482,122846 -k1,12960:22267607,15327542:3277 -h1,12960:23677731,15327542:0,411205,112570 -) -k1,12960:23961546,15327542:280538 -k1,12960:24893512,15327542:280538 -k1,12960:26440207,15327542:280539 -k1,12960:27406907,15327542:280538 -k1,12960:28706530,15327542:280538 -k1,12960:31252648,15327542:280538 -k1,12961:32583029,15327542:0 -) -(1,12961:6630773,16169030:25952256,513147,134348 -(1,12960:6630773,16169030:0,452978,122846 -r1,12960:12616428,16169030:5985655,575824,122846 -k1,12960:6630773,16169030:-5985655 -) -(1,12960:6630773,16169030:5985655,452978,122846 -k1,12960:6630773,16169030:3277 -h1,12960:12613151,16169030:0,411205,112570 -) -k1,12960:13034107,16169030:244009 -k1,12960:15679356,16169030:244010 -k1,12960:17312728,16169030:244009 -k1,12960:18504388,16169030:244009 -k1,12960:21272844,16169030:244009 -k1,12960:23123797,16169030:244010 -k1,12960:24742751,16169030:244009 -k1,12960:25602798,16169030:244009 -k1,12960:28512812,16169030:244009 -k1,12960:29408250,16169030:244010 -k1,12960:30671344,16169030:244009 -k1,12960:32583029,16169030:0 -) -(1,12961:6630773,17010518:25952256,513147,126483 -k1,12960:8158401,17010518:146784 -k1,12960:10966603,17010518:146785 -k1,12960:12536174,17010518:146784 -k1,12960:13038818,17010518:146784 -k1,12960:15559316,17010518:146784 -k1,12960:18680780,17010518:146785 -k1,12960:19513726,17010518:146784 -k1,12960:20679595,17010518:146784 -k1,12960:23584135,17010518:146785 -k1,12960:25411262,17010518:146784 -k1,12960:26225202,17010518:146784 -(1,12960:26225202,17010518:0,452978,115847 -r1,12960:27990315,17010518:1765113,568825,115847 -k1,12960:26225202,17010518:-1765113 -) -(1,12960:26225202,17010518:1765113,452978,115847 -k1,12960:26225202,17010518:3277 -h1,12960:27987038,17010518:0,411205,112570 -) -k1,12960:28137099,17010518:146784 -k1,12960:29515961,17010518:146785 -k1,12960:30681830,17010518:146784 -k1,12961:32583029,17010518:0 -) -(1,12961:6630773,17852006:25952256,513147,134348 -k1,12960:7782573,17852006:178590 -k1,12960:8908815,17852006:178591 -(1,12960:8908815,17852006:0,452978,122846 -r1,12960:13135911,17852006:4227096,575824,122846 -k1,12960:8908815,17852006:-4227096 -) -(1,12960:8908815,17852006:4227096,452978,122846 -k1,12960:8908815,17852006:3277 -h1,12960:13132634,17852006:0,411205,112570 -) -k1,12960:13314501,17852006:178590 -k1,12960:14302462,17852006:178591 -k1,12960:15979205,17852006:178590 -h1,12960:17174582,17852006:0,0,0 -k1,12960:17353173,17852006:178591 -k1,12960:18341133,17852006:178590 -k1,12960:19538809,17852006:178591 -k1,12960:20809884,17852006:178590 -k1,12960:21647767,17852006:178591 -k1,12960:23610902,17852006:178590 -k1,12960:24475655,17852006:178591 -(1,12960:24475655,17852006:0,452978,115847 -r1,12960:26240768,17852006:1765113,568825,115847 -k1,12960:24475655,17852006:-1765113 -) -(1,12960:24475655,17852006:1765113,452978,115847 -k1,12960:24475655,17852006:3277 -h1,12960:26237491,17852006:0,411205,112570 -) -k1,12960:26800122,17852006:178590 -k1,12960:29317693,17852006:178591 -k1,12960:30155575,17852006:178590 -k1,12961:32583029,17852006:0 -) -(1,12961:6630773,18693494:25952256,513147,134348 -(1,12960:6630773,18693494:0,452978,115847 -r1,12960:8747598,18693494:2116825,568825,115847 -k1,12960:6630773,18693494:-2116825 -) -(1,12960:6630773,18693494:2116825,452978,115847 -k1,12960:6630773,18693494:3277 -h1,12960:8744321,18693494:0,411205,112570 -) -k1,12960:8914041,18693494:166443 -k1,12960:9766646,18693494:166443 -k1,12960:10703792,18693494:166443 -k1,12960:13942562,18693494:166442 -k1,12960:14760433,18693494:166443 -k1,12960:18207608,18693494:166443 -(1,12960:18207608,18693494:0,459977,115847 -r1,12960:19972721,18693494:1765113,575824,115847 -k1,12960:18207608,18693494:-1765113 -) -(1,12960:18207608,18693494:1765113,459977,115847 -k1,12960:18207608,18693494:3277 -h1,12960:19969444,18693494:0,411205,112570 -) -k1,12960:20312834,18693494:166443 -k1,12960:21347629,18693494:166443 -k1,12960:22618354,18693494:166443 -k1,12960:24395671,18693494:166442 -k1,12960:25028075,18693494:166443 -k1,12960:27724208,18693494:166443 -k1,12960:29592621,18693494:166443 -k1,12960:32583029,18693494:0 -) -(1,12961:6630773,19534982:25952256,513147,134348 -k1,12960:9846556,19534982:189986 -k1,12960:11182767,19534982:189986 -(1,12960:11182767,19534982:0,452978,115847 -r1,12960:14003016,19534982:2820249,568825,115847 -k1,12960:11182767,19534982:-2820249 -) -(1,12960:11182767,19534982:2820249,452978,115847 -k1,12960:11182767,19534982:3277 -h1,12960:13999739,19534982:0,411205,112570 -) -k1,12960:14366672,19534982:189986 -k1,12960:15184492,19534982:189985 -k1,12960:16393563,19534982:189986 -k1,12960:17950630,19534982:189986 -k1,12960:18799908,19534982:189986 -k1,12960:20686621,19534982:189986 -k1,12960:23902404,19534982:189986 -k1,12960:25376895,19534982:189985 -k1,12960:27577526,19534982:189986 -k1,12960:28123372,19534982:189986 -k1,12960:30186377,19534982:189986 -k1,12961:32583029,19534982:0 -) -(1,12961:6630773,20376470:25952256,505283,134348 -k1,12960:7854049,20376470:198293 -k1,12960:9906356,20376470:198293 -k1,12960:10973001,20376470:198293 -k1,12960:12608499,20376470:198293 -k1,12960:14619518,20376470:198293 -k1,12960:15500696,20376470:198293 -k1,12960:18673668,20376470:198293 -k1,12960:21068073,20376470:198294 -k1,12960:22660317,20376470:198293 -k1,12960:24367249,20376470:198293 -k1,12960:26807529,20376470:198293 -k1,12960:27691984,20376470:198293 -k1,12960:28660980,20376470:198293 -k1,12960:31931601,20376470:198293 -k1,12960:32583029,20376470:0 -) -(1,12961:6630773,21217958:25952256,459977,126483 -g1,12960:10110734,21217958 -(1,12960:10110734,21217958:0,459977,115847 -r1,12960:11875847,21217958:1765113,575824,115847 -k1,12960:10110734,21217958:-1765113 -) -(1,12960:10110734,21217958:1765113,459977,115847 -k1,12960:10110734,21217958:3277 -h1,12960:11872570,21217958:0,411205,112570 -) -k1,12961:32583029,21217958:20533512 -g1,12961:32583029,21217958 -) -v1,12963:6630773,22408424:0,393216,0 -(1,12969:6630773,24062168:25952256,2046960,196608 -g1,12969:6630773,24062168 -g1,12969:6630773,24062168 -g1,12969:6434165,24062168 -(1,12969:6434165,24062168:0,2046960,196608 -r1,12969:32779637,24062168:26345472,2243568,196608 -k1,12969:6434165,24062168:-26345472 -) -(1,12969:6434165,24062168:26345472,2046960,196608 -[1,12969:6630773,24062168:25952256,1850352,0 -(1,12965:6630773,22622334:25952256,410518,107478 -(1,12964:6630773,22622334:0,0,0 -g1,12964:6630773,22622334 -g1,12964:6630773,22622334 -g1,12964:6303093,22622334 -(1,12964:6303093,22622334:0,0,0 -) -g1,12964:6630773,22622334 -) -k1,12965:6630773,22622334:0 -g1,12965:10424522,22622334 -g1,12965:11056814,22622334 -g1,12965:14534417,22622334 -g1,12965:16431292,22622334 -g1,12965:17063584,22622334 -g1,12965:18012022,22622334 -g1,12965:18644314,22622334 -g1,12965:19276606,22622334 -g1,12965:21805772,22622334 -h1,12965:22121918,22622334:0,0,0 -k1,12965:32583029,22622334:10461111 -g1,12965:32583029,22622334 -) -(1,12966:6630773,23288512:25952256,404226,107478 -h1,12966:6630773,23288512:0,0,0 -g1,12966:6946919,23288512 -g1,12966:7263065,23288512 -g1,12966:12637542,23288512 -g1,12966:13269834,23288512 -g1,12966:14534417,23288512 -h1,12966:14850563,23288512:0,0,0 -k1,12966:32583029,23288512:17732466 -g1,12966:32583029,23288512 -) -(1,12967:6630773,23954690:25952256,410518,107478 -h1,12967:6630773,23954690:0,0,0 -k1,12967:6889411,23954690:258638 -k1,12967:7148048,23954690:258637 -k1,12967:13097308,23954690:258638 -k1,12967:13672092,23954690:258638 -k1,12967:16143749,23954690:258637 -k1,12967:17666970,23954690:258638 -k1,12967:18241753,23954690:258637 -k1,12967:21029557,23954690:258638 -k1,12967:22868923,23954690:258638 -k1,12967:23443706,23954690:258637 -k1,12967:25599218,23954690:258638 -k1,12967:27438584,23954690:258638 -k1,12967:28013367,23954690:258637 -k1,12967:29536588,23954690:258638 -k1,12967:31059808,23954690:258637 -k1,12967:31634592,23954690:258638 -h1,12967:32583029,23954690:0,0,0 -k1,12967:32583029,23954690:0 -k1,12967:32583029,23954690:0 -) -] -) -g1,12969:32583029,24062168 -g1,12969:6630773,24062168 -g1,12969:6630773,24062168 -g1,12969:32583029,24062168 -g1,12969:32583029,24062168 -) -h1,12969:6630773,24258776:0,0,0 -(1,12972:6630773,33911289:25952256,9062689,0 -k1,12972:10523651,33911289:3892878 -h1,12971:10523651,33911289:0,0,0 -(1,12971:10523651,33911289:18166500,9062689,0 -(1,12971:10523651,33911289:18167381,9062712,0 -(1,12971:10523651,33911289:18167381,9062712,0 -(1,12971:10523651,33911289:0,9062712,0 -(1,12971:10523651,33911289:0,14155776,0 -(1,12971:10523651,33911289:28377088,14155776,0 -) -k1,12971:10523651,33911289:-28377088 -) -) -g1,12971:28691032,33911289 -) -) -) -g1,12972:28690151,33911289 -k1,12972:32583029,33911289:3892878 -) -(1,12980:6630773,34752777:25952256,513147,134348 -h1,12979:6630773,34752777:983040,0,0 -k1,12979:8682517,34752777:239674 -k1,12979:10359397,34752777:239675 -k1,12979:11285233,34752777:239674 -k1,12979:12295611,34752777:239675 -k1,12979:15607613,34752777:239674 -k1,12979:16203148,34752777:239675 -k1,12979:19138318,34752777:239674 -k1,12979:20662498,34752777:239674 -k1,12979:23243119,34752777:239675 -k1,12979:23838653,34752777:239674 -k1,12979:26280338,34752777:239675 -k1,12979:28200355,34752777:239674 -k1,12979:29586255,34752777:239675 -k1,12979:30845014,34752777:239674 -k1,12979:32583029,34752777:0 -) -(1,12980:6630773,35594265:25952256,513147,126483 -k1,12979:8165540,35594265:163754 -k1,12979:11766657,35594265:163754 -k1,12979:12613296,35594265:163754 -k1,12979:14479020,35594265:163754 -k1,12979:16631136,35594265:163754 -k1,12979:17663242,35594265:163754 -k1,12979:18919482,35594265:163755 -k1,12979:22363968,35594265:163754 -(1,12979:22363968,35594265:0,459977,115847 -r1,12979:25184217,35594265:2820249,575824,115847 -k1,12979:22363968,35594265:-2820249 -) -(1,12979:22363968,35594265:2820249,459977,115847 -k1,12979:22363968,35594265:3277 -h1,12979:25180940,35594265:0,411205,112570 -) -k1,12979:25347971,35594265:163754 -k1,12979:27838908,35594265:163754 -k1,12979:28669818,35594265:163754 -(1,12979:28669818,35594265:0,459977,115847 -r1,12979:30434931,35594265:1765113,575824,115847 -k1,12979:28669818,35594265:-1765113 -) -(1,12979:28669818,35594265:1765113,459977,115847 -k1,12979:28669818,35594265:3277 -h1,12979:30431654,35594265:0,411205,112570 -) -k1,12979:30772355,35594265:163754 -k1,12979:31563944,35594265:163754 -k1,12979:32583029,35594265:0 -) -(1,12980:6630773,36435753:25952256,513147,138281 -k1,12979:8266237,36435753:251344 -k1,12979:11178998,36435753:251344 -k1,12979:12298693,36435753:251343 -k1,12979:13747380,36435753:251344 -k1,12979:16067040,36435753:251344 -k1,12979:17509829,36435753:251344 -k1,12979:21198535,36435753:251343 -k1,12979:24206979,36435753:251344 -k1,12979:25405974,36435753:251344 -$1,12979:25405974,36435753 -k1,12979:26151209,36435753:277308 -k1,12979:26996714,36435753:277308 -$1,12979:28381490,36435753 -k1,12979:28632833,36435753:251343 -k1,12979:30110356,36435753:251344 -k1,12979:32583029,36435753:0 -) -(1,12980:6630773,37277241:25952256,505283,134348 -g1,12979:9871528,37277241 -k1,12980:32583029,37277241:19439944 -g1,12980:32583029,37277241 -) -v1,12982:6630773,38467707:0,393216,0 -(1,12986:6630773,38782804:25952256,708313,196608 -g1,12986:6630773,38782804 -g1,12986:6630773,38782804 -g1,12986:6434165,38782804 -(1,12986:6434165,38782804:0,708313,196608 -r1,12986:32779637,38782804:26345472,904921,196608 -k1,12986:6434165,38782804:-26345472 -) -(1,12986:6434165,38782804:26345472,708313,196608 -[1,12986:6630773,38782804:25952256,511705,0 -(1,12984:6630773,38681617:25952256,410518,101187 -(1,12983:6630773,38681617:0,0,0 -g1,12983:6630773,38681617 -g1,12983:6630773,38681617 -g1,12983:6303093,38681617 -(1,12983:6303093,38681617:0,0,0 -) -g1,12983:6630773,38681617 -) -g1,12984:6946919,38681617 -g1,12984:7263065,38681617 -g1,12984:14218270,38681617 -g1,12984:14850562,38681617 -g1,12984:20541185,38681617 -g1,12984:22438059,38681617 -g1,12984:23070351,38681617 -g1,12984:25283371,38681617 -g1,12984:26864100,38681617 -g1,12984:27496392,38681617 -g1,12984:28444830,38681617 -g1,12984:30341704,38681617 -g1,12984:30973996,38681617 -h1,12984:32238579,38681617:0,0,0 -k1,12984:32583029,38681617:344450 -g1,12984:32583029,38681617 -) -] -) -g1,12986:32583029,38782804 -g1,12986:6630773,38782804 -g1,12986:6630773,38782804 -g1,12986:32583029,38782804 -g1,12986:32583029,38782804 -) -h1,12986:6630773,38979412:0,0,0 -(1,12990:6630773,40345188:25952256,513147,138281 -h1,12989:6630773,40345188:983040,0,0 -k1,12989:8761588,40345188:194226 -k1,12989:10060097,40345188:194227 -k1,12989:12899356,40345188:194226 -k1,12989:14112668,40345188:194227 -k1,12989:16572474,40345188:194226 -k1,12989:17425993,40345188:194227 -$1,12989:17425993,40345188 -k1,12989:18075980,40345188:182060 -k1,12989:18826237,40345188:182060 -$1,12989:20211013,40345188 -k1,12989:20405239,40345188:194226 -k1,12989:21547117,40345188:194227 -k1,12989:25178706,40345188:194226 -k1,12989:28130033,40345188:194227 -k1,12989:29085787,40345188:194226 -k1,12989:31635378,40345188:194227 -k1,12989:32583029,40345188:0 -) -(1,12990:6630773,41186676:25952256,513147,134348 -k1,12989:9663667,41186676:197807 -(1,12989:9663667,41186676:0,459977,115847 -r1,12989:14945899,41186676:5282232,575824,115847 -k1,12989:9663667,41186676:-5282232 -) -(1,12989:9663667,41186676:5282232,459977,115847 -g1,12989:12832351,41186676 -g1,12989:13535775,41186676 -h1,12989:14942622,41186676:0,411205,112570 -) -k1,12989:15143706,41186676:197807 -k1,12989:15957551,41186676:197807 -k1,12989:17174443,41186676:197807 -k1,12989:18365776,41186676:197807 -k1,12989:19222875,41186676:197807 -k1,12989:22823311,41186676:197807 -k1,12989:25226405,41186676:197807 -k1,12989:26075640,41186676:197807 -k1,12989:27292532,41186676:197807 -k1,12989:30359505,41186676:197807 -k1,12989:31753999,41186676:197807 -k1,12990:32583029,41186676:0 -) -(1,12990:6630773,42028164:25952256,505283,134348 -k1,12989:8935316,42028164:163482 -k1,12989:10203081,42028164:163483 -k1,12989:11652379,42028164:163482 -k1,12989:12563628,42028164:163483 -k1,12989:15935753,42028164:163482 -k1,12989:18559458,42028164:163483 -k1,12989:21764466,42028164:163482 -k1,12989:25199506,42028164:163483 -k1,12989:27098381,42028164:163482 -k1,12989:28280949,42028164:163483 -k1,12989:31417799,42028164:163482 -k1,12990:32583029,42028164:0 -) -(1,12990:6630773,42869652:25952256,513147,126483 -k1,12989:9599183,42869652:139221 -k1,12989:12874956,42869652:139220 -k1,12989:14581798,42869652:139221 -k1,12989:15740104,42869652:139221 -k1,12989:17268687,42869652:139220 -k1,12989:18169436,42869652:139221 -k1,12989:21580870,42869652:139221 -k1,12989:22549121,42869652:139221 -k1,12989:25045671,42869652:139220 -k1,12989:26388133,42869652:139221 -k1,12989:27395706,42869652:139221 -k1,12989:28972131,42869652:139220 -k1,12989:29762780,42869652:139221 -(1,12989:29762780,42869652:0,459977,115847 -r1,12989:32583029,42869652:2820249,575824,115847 -k1,12989:29762780,42869652:-2820249 -) -(1,12989:29762780,42869652:2820249,459977,115847 -k1,12989:29762780,42869652:3277 -h1,12989:32579752,42869652:0,411205,112570 -) -k1,12989:32583029,42869652:0 -) -(1,12990:6630773,43711140:25952256,513147,134348 -g1,12989:7849087,43711140 -g1,12989:11120644,43711140 -(1,12989:11120644,43711140:0,452978,115847 -r1,12989:16051164,43711140:4930520,568825,115847 -k1,12989:11120644,43711140:-4930520 -) -(1,12989:11120644,43711140:4930520,452978,115847 -k1,12989:11120644,43711140:3277 -h1,12989:16047887,43711140:0,411205,112570 -) -g1,12989:16250393,43711140 -g1,12989:18776805,43711140 -g1,12989:19643190,43711140 -(1,12989:19643190,43711140:0,452978,115847 -r1,12989:25277133,43711140:5633943,568825,115847 -k1,12989:19643190,43711140:-5633943 -) -(1,12989:19643190,43711140:5633943,452978,115847 -k1,12989:19643190,43711140:3277 -h1,12989:25273856,43711140:0,411205,112570 -) -k1,12990:32583029,43711140:7132226 -g1,12990:32583029,43711140 -) -v1,12992:6630773,44901606:0,393216,0 -] -(1,12998:32583029,45706769:0,0,0 -g1,12998:32583029,45706769 -) -) -] -(1,12998:6630773,47279633:25952256,0,0 -h1,12998:6630773,47279633:25952256,0,0 -) -] -h1,12998:4262630,4025873:0,0,0 -] -!24803 -}249 -Input:1811:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1812:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1813:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1814:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1815:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1816:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1817:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1818:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1819:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1820:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1821:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1822:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1823:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1824:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1825:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1826:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1827:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1828:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1560 -{250 -[1,13051:4262630,47279633:28320399,43253760,0 -(1,13051:4262630,4025873:0,0,0 -[1,13051:-473657,4025873:25952256,0,0 -(1,13051:-473657,-710414:25952256,0,0 -h1,13051:-473657,-710414:0,0,0 -(1,13051:-473657,-710414:0,0,0 -(1,13051:-473657,-710414:0,0,0 -g1,13051:-473657,-710414 -(1,13051:-473657,-710414:65781,0,65781 -g1,13051:-407876,-710414 -[1,13051:-407876,-644633:0,0,0 +k1,13014:3078556,49800853:-34777008 +) +] +g1,13014:6630773,4812305 +g1,13014:6630773,4812305 +g1,13014:9560887,4812305 +k1,13014:31387651,4812305:21826764 +) +) +] +[1,13014:6630773,45706769:25952256,40108032,0 +(1,13014:6630773,45706769:25952256,40108032,0 +(1,13014:6630773,45706769:0,0,0 +g1,13014:6630773,45706769 +) +[1,13014:6630773,45706769:25952256,40108032,0 +(1,12964:6630773,6254097:25952256,505283,134348 +(1,12963:6630773,6254097:0,452978,115847 +r1,12963:11561293,6254097:4930520,568825,115847 +k1,12963:6630773,6254097:-4930520 +) +(1,12963:6630773,6254097:4930520,452978,115847 +k1,12963:6630773,6254097:3277 +h1,12963:11558016,6254097:0,411205,112570 +) +k1,12963:11789403,6254097:228110 +k1,12963:14029469,6254097:228111 +k1,12963:15896634,6254097:228110 +k1,12963:16776173,6254097:228111 +k1,12963:17752049,6254097:228110 +k1,12963:21209119,6254097:228111 +k1,12963:26289515,6254097:228110 +k1,12963:27709071,6254097:228111 +k1,12963:29902606,6254097:228110 +k1,12963:32583029,6254097:0 +) +(1,12964:6630773,7095585:25952256,505283,134348 +g1,12963:8223953,7095585 +g1,12963:8779042,7095585 +g1,12963:10851290,7095585 +k1,12964:32583029,7095585:20000278 +g1,12964:32583029,7095585 +) +(1,12966:6630773,7937073:25952256,513147,134348 +h1,12965:6630773,7937073:983040,0,0 +k1,12965:8852741,7937073:196906 +k1,12965:10142132,7937073:196906 +k1,12965:10955075,7937073:196905 +k1,12965:12171066,7937073:196906 +k1,12965:15533361,7937073:196906 +k1,12965:16598619,7937073:196906 +k1,12965:19527721,7937073:196906 +k1,12965:21416767,7937073:196906 +k1,12965:24458590,7937073:196905 +k1,12965:28194440,7937073:196906 +k1,12965:31019995,7937073:196906 +k1,12966:32583029,7937073:0 +k1,12966:32583029,7937073:0 +) +v1,12968:6630773,9127539:0,393216,0 +(1,12976:6630773,12082182:25952256,3347859,196608 +g1,12976:6630773,12082182 +g1,12976:6630773,12082182 +g1,12976:6434165,12082182 +(1,12976:6434165,12082182:0,3347859,196608 +r1,12976:32779637,12082182:26345472,3544467,196608 +k1,12976:6434165,12082182:-26345472 +) +(1,12976:6434165,12082182:26345472,3347859,196608 +[1,12976:6630773,12082182:25952256,3151251,0 +(1,12970:6630773,9341449:25952256,410518,76021 +(1,12969:6630773,9341449:0,0,0 +g1,12969:6630773,9341449 +g1,12969:6630773,9341449 +g1,12969:6303093,9341449 +(1,12969:6303093,9341449:0,0,0 +) +g1,12969:6630773,9341449 +) +g1,12970:9792230,9341449 +g1,12970:10740668,9341449 +k1,12970:10740668,9341449:0 +h1,12970:14218271,9341449:0,0,0 +k1,12970:32583029,9341449:18364758 +g1,12970:32583029,9341449 +) +(1,12971:6630773,10007627:25952256,404226,101187 +h1,12971:6630773,10007627:0,0,0 +g1,12971:6946919,10007627 +g1,12971:7263065,10007627 +g1,12971:7895357,10007627 +g1,12971:8527649,10007627 +g1,12971:12321398,10007627 +g1,12971:13902127,10007627 +g1,12971:14534419,10007627 +g1,12971:15482857,10007627 +g1,12971:16431294,10007627 +g1,12971:17063586,10007627 +k1,12971:17063586,10007627:0 +h1,12971:18644315,10007627:0,0,0 +k1,12971:32583029,10007627:13938714 +g1,12971:32583029,10007627 +) +(1,12972:6630773,10673805:25952256,404226,82312 +h1,12972:6630773,10673805:0,0,0 +g1,12972:6946919,10673805 +g1,12972:7263065,10673805 +g1,12972:7579211,10673805 +g1,12972:7895357,10673805 +g1,12972:8211503,10673805 +g1,12972:8527649,10673805 +g1,12972:8843795,10673805 +g1,12972:9159941,10673805 +g1,12972:12321398,10673805 +g1,12972:13902127,10673805 +g1,12972:14534419,10673805 +g1,12972:15482857,10673805 +g1,12972:16431294,10673805 +g1,12972:17063586,10673805 +k1,12972:17063586,10673805:0 +h1,12972:18960460,10673805:0,0,0 +k1,12972:32583029,10673805:13622569 +g1,12972:32583029,10673805 +) +(1,12973:6630773,11339983:25952256,410518,107478 +h1,12973:6630773,11339983:0,0,0 +g1,12973:6946919,11339983 +g1,12973:7263065,11339983 +g1,12973:9159939,11339983 +g1,12973:9792231,11339983 +g1,12973:15482855,11339983 +g1,12973:17063584,11339983 +g1,12973:19908896,11339983 +h1,12973:21489624,11339983:0,0,0 +k1,12973:32583029,11339983:11093405 +g1,12973:32583029,11339983 +) +(1,12974:6630773,12006161:25952256,404226,76021 +h1,12974:6630773,12006161:0,0,0 +g1,12974:6946919,12006161 +g1,12974:7263065,12006161 +h1,12974:7579211,12006161:0,0,0 +k1,12974:32583029,12006161:25003818 +g1,12974:32583029,12006161 +) +] +) +g1,12976:32583029,12082182 +g1,12976:6630773,12082182 +g1,12976:6630773,12082182 +g1,12976:32583029,12082182 +g1,12976:32583029,12082182 +) +h1,12976:6630773,12278790:0,0,0 +(1,12980:6630773,13644566:25952256,513147,126483 +h1,12979:6630773,13644566:983040,0,0 +k1,12979:8813515,13644566:246153 +k1,12979:10192130,13644566:246153 +k1,12979:12166468,13644566:246154 +k1,12979:12768481,13644566:246153 +k1,12979:15048872,13644566:246153 +k1,12979:17464267,13644566:246153 +k1,12979:18987717,13644566:246153 +k1,12979:19849909,13644566:246154 +k1,12979:20451922,13644566:246153 +k1,12979:22542913,13644566:246153 +k1,12979:23448358,13644566:246153 +k1,12979:26859900,13644566:246153 +k1,12979:27830882,13644566:246154 +k1,12979:29361541,13644566:246153 +k1,12979:30626779,13644566:246153 +k1,12980:32583029,13644566:0 +) +(1,12980:6630773,14486054:25952256,513147,134348 +k1,12979:8655966,14486054:251789 +k1,12979:9899315,14486054:251789 +k1,12979:12021502,14486054:251789 +k1,12979:12924720,14486054:251790 +k1,12979:16678098,14486054:251789 +k1,12979:17883436,14486054:251789 +k1,12979:19441358,14486054:251789 +k1,12979:20890490,14486054:251789 +k1,12979:22371079,14486054:251789 +k1,12979:23641953,14486054:251789 +k1,12979:25805428,14486054:251790 +k1,12979:26685052,14486054:251789 +k1,12979:28140082,14486054:251789 +k1,12979:29932622,14486054:251789 +k1,12979:31052763,14486054:251789 +k1,12979:32583029,14486054:0 +) +(1,12980:6630773,15327542:25952256,513147,134348 +k1,12979:7562739,15327542:280538 +k1,12979:9280482,15327542:280538 +k1,12979:10247182,15327542:280538 +k1,12979:11298424,15327542:280539 +k1,12979:14651290,15327542:280538 +k1,12979:15583256,15327542:280538 +(1,12979:15583256,15327542:0,452978,115847 +r1,12979:20513776,15327542:4930520,568825,115847 +k1,12979:15583256,15327542:-4930520 +) +(1,12979:15583256,15327542:4930520,452978,115847 +k1,12979:15583256,15327542:3277 +h1,12979:20510499,15327542:0,411205,112570 +) +k1,12979:20967984,15327542:280538 +k1,12979:22267607,15327542:280538 +(1,12979:22267607,15327542:0,414482,122846 +r1,12979:23681008,15327542:1413401,537328,122846 +k1,12979:22267607,15327542:-1413401 +) +(1,12979:22267607,15327542:1413401,414482,122846 +k1,12979:22267607,15327542:3277 +h1,12979:23677731,15327542:0,411205,112570 +) +k1,12979:23961546,15327542:280538 +k1,12979:24893512,15327542:280538 +k1,12979:26440207,15327542:280539 +k1,12979:27406907,15327542:280538 +k1,12979:28706530,15327542:280538 +k1,12979:31252648,15327542:280538 +k1,12980:32583029,15327542:0 +) +(1,12980:6630773,16169030:25952256,513147,134348 +(1,12979:6630773,16169030:0,452978,122846 +r1,12979:12616428,16169030:5985655,575824,122846 +k1,12979:6630773,16169030:-5985655 +) +(1,12979:6630773,16169030:5985655,452978,122846 +k1,12979:6630773,16169030:3277 +h1,12979:12613151,16169030:0,411205,112570 +) +k1,12979:13034107,16169030:244009 +k1,12979:15679356,16169030:244010 +k1,12979:17312728,16169030:244009 +k1,12979:18504388,16169030:244009 +k1,12979:21272844,16169030:244009 +k1,12979:23123797,16169030:244010 +k1,12979:24742751,16169030:244009 +k1,12979:25602798,16169030:244009 +k1,12979:28512812,16169030:244009 +k1,12979:29408250,16169030:244010 +k1,12979:30671344,16169030:244009 +k1,12979:32583029,16169030:0 +) +(1,12980:6630773,17010518:25952256,513147,126483 +k1,12979:8158401,17010518:146784 +k1,12979:10966603,17010518:146785 +k1,12979:12536174,17010518:146784 +k1,12979:13038818,17010518:146784 +k1,12979:15559316,17010518:146784 +k1,12979:18680780,17010518:146785 +k1,12979:19513726,17010518:146784 +k1,12979:20679595,17010518:146784 +k1,12979:23584135,17010518:146785 +k1,12979:25411262,17010518:146784 +k1,12979:26225202,17010518:146784 +(1,12979:26225202,17010518:0,452978,115847 +r1,12979:27990315,17010518:1765113,568825,115847 +k1,12979:26225202,17010518:-1765113 +) +(1,12979:26225202,17010518:1765113,452978,115847 +k1,12979:26225202,17010518:3277 +h1,12979:27987038,17010518:0,411205,112570 +) +k1,12979:28137099,17010518:146784 +k1,12979:29515961,17010518:146785 +k1,12979:30681830,17010518:146784 +k1,12980:32583029,17010518:0 +) +(1,12980:6630773,17852006:25952256,513147,134348 +k1,12979:7782573,17852006:178590 +k1,12979:8908815,17852006:178591 +(1,12979:8908815,17852006:0,452978,122846 +r1,12979:13135911,17852006:4227096,575824,122846 +k1,12979:8908815,17852006:-4227096 +) +(1,12979:8908815,17852006:4227096,452978,122846 +k1,12979:8908815,17852006:3277 +h1,12979:13132634,17852006:0,411205,112570 +) +k1,12979:13314501,17852006:178590 +k1,12979:14302462,17852006:178591 +k1,12979:15979205,17852006:178590 +h1,12979:17174582,17852006:0,0,0 +k1,12979:17353173,17852006:178591 +k1,12979:18341133,17852006:178590 +k1,12979:19538809,17852006:178591 +k1,12979:20809884,17852006:178590 +k1,12979:21647767,17852006:178591 +k1,12979:23610902,17852006:178590 +k1,12979:24475655,17852006:178591 +(1,12979:24475655,17852006:0,452978,115847 +r1,12979:26240768,17852006:1765113,568825,115847 +k1,12979:24475655,17852006:-1765113 +) +(1,12979:24475655,17852006:1765113,452978,115847 +k1,12979:24475655,17852006:3277 +h1,12979:26237491,17852006:0,411205,112570 +) +k1,12979:26800122,17852006:178590 +k1,12979:29317693,17852006:178591 +k1,12979:30155575,17852006:178590 +k1,12980:32583029,17852006:0 +) +(1,12980:6630773,18693494:25952256,513147,134348 +(1,12979:6630773,18693494:0,452978,115847 +r1,12979:8747598,18693494:2116825,568825,115847 +k1,12979:6630773,18693494:-2116825 +) +(1,12979:6630773,18693494:2116825,452978,115847 +k1,12979:6630773,18693494:3277 +h1,12979:8744321,18693494:0,411205,112570 +) +k1,12979:8914041,18693494:166443 +k1,12979:9766646,18693494:166443 +k1,12979:10703792,18693494:166443 +k1,12979:13942562,18693494:166442 +k1,12979:14760433,18693494:166443 +k1,12979:18207608,18693494:166443 +(1,12979:18207608,18693494:0,459977,115847 +r1,12979:19972721,18693494:1765113,575824,115847 +k1,12979:18207608,18693494:-1765113 +) +(1,12979:18207608,18693494:1765113,459977,115847 +k1,12979:18207608,18693494:3277 +h1,12979:19969444,18693494:0,411205,112570 +) +k1,12979:20312834,18693494:166443 +k1,12979:21347629,18693494:166443 +k1,12979:22618354,18693494:166443 +k1,12979:24395671,18693494:166442 +k1,12979:25028075,18693494:166443 +k1,12979:27724208,18693494:166443 +k1,12979:29592621,18693494:166443 +k1,12979:32583029,18693494:0 +) +(1,12980:6630773,19534982:25952256,513147,134348 +k1,12979:9910832,19534982:254262 +k1,12979:11311318,19534982:254261 +(1,12979:11311318,19534982:0,452978,115847 +r1,12979:14131567,19534982:2820249,568825,115847 +k1,12979:11311318,19534982:-2820249 +) +(1,12979:11311318,19534982:2820249,452978,115847 +k1,12979:11311318,19534982:3277 +h1,12979:14128290,19534982:0,411205,112570 +) +k1,12979:14559499,19534982:254262 +k1,12979:15441595,19534982:254261 +k1,12979:16714942,19534982:254262 +k1,12979:18336284,19534982:254261 +k1,12979:19249838,19534982:254262 +k1,12979:21200826,19534982:254261 +k1,12979:24480885,19534982:254262 +k1,12979:26019652,19534982:254261 +k1,12979:28284559,19534982:254262 +k1,12979:28894680,19534982:254261 +k1,12979:31021961,19534982:254262 +k1,12980:32583029,19534982:0 +) +(1,12980:6630773,20376470:25952256,505283,134348 +k1,12979:8690721,20376470:199381 +k1,12979:10744115,20376470:199380 +k1,12979:11811848,20376470:199381 +k1,12979:13448433,20376470:199380 +k1,12979:15460540,20376470:199381 +k1,12979:16342805,20376470:199380 +k1,12979:19516865,20376470:199381 +k1,12979:21912356,20376470:199380 +k1,12979:23505688,20376470:199381 +k1,12979:25213707,20376470:199380 +k1,12979:27655075,20376470:199381 +k1,12979:28540617,20376470:199380 +k1,12979:29510701,20376470:199381 +k1,12979:32583029,20376470:0 +) +(1,12980:6630773,21217958:25952256,459977,126483 +g1,12979:7481430,21217958 +g1,12979:10961391,21217958 +(1,12979:10961391,21217958:0,459977,115847 +r1,12979:12726504,21217958:1765113,575824,115847 +k1,12979:10961391,21217958:-1765113 +) +(1,12979:10961391,21217958:1765113,459977,115847 +k1,12979:10961391,21217958:3277 +h1,12979:12723227,21217958:0,411205,112570 +) +k1,12980:32583030,21217958:19682856 +g1,12980:32583030,21217958 +) +v1,12982:6630773,22408424:0,393216,0 +(1,12991:6630773,26049884:25952256,4034676,196608 +g1,12991:6630773,26049884 +g1,12991:6630773,26049884 +g1,12991:6434165,26049884 +(1,12991:6434165,26049884:0,4034676,196608 +r1,12991:32779637,26049884:26345472,4231284,196608 +k1,12991:6434165,26049884:-26345472 +) +(1,12991:6434165,26049884:26345472,4034676,196608 +[1,12991:6630773,26049884:25952256,3838068,0 +(1,12984:6630773,22622334:25952256,410518,107478 +(1,12983:6630773,22622334:0,0,0 +g1,12983:6630773,22622334 +g1,12983:6630773,22622334 +g1,12983:6303093,22622334 +(1,12983:6303093,22622334:0,0,0 +) +g1,12983:6630773,22622334 +) +k1,12984:6630773,22622334:0 +g1,12984:10424522,22622334 +g1,12984:11056814,22622334 +g1,12984:14534417,22622334 +g1,12984:16431292,22622334 +g1,12984:17063584,22622334 +g1,12984:18012022,22622334 +g1,12984:18644314,22622334 +g1,12984:19276606,22622334 +g1,12984:21805772,22622334 +h1,12984:22121918,22622334:0,0,0 +k1,12984:32583029,22622334:10461111 +g1,12984:32583029,22622334 +) +(1,12985:6630773,23288512:25952256,404226,107478 +h1,12985:6630773,23288512:0,0,0 +g1,12985:6946919,23288512 +g1,12985:7263065,23288512 +g1,12985:12637542,23288512 +g1,12985:13269834,23288512 +g1,12985:14534417,23288512 +h1,12985:14850563,23288512:0,0,0 +k1,12985:32583029,23288512:17732466 +g1,12985:32583029,23288512 +) +(1,12986:6630773,23954690:25952256,410518,107478 +h1,12986:6630773,23954690:0,0,0 +g1,12986:6946919,23954690 +g1,12986:7263065,23954690 +g1,12986:13269833,23954690 +g1,12986:13902125,23954690 +g1,12986:16431291,23954690 +g1,12986:18012020,23954690 +g1,12986:18644312,23954690 +k1,12986:18644312,23954690:0 +h1,12986:21173478,23954690:0,0,0 +k1,12986:32583029,23954690:11409551 +g1,12986:32583029,23954690 +) +(1,12987:6630773,24620868:25952256,404226,101187 +h1,12987:6630773,24620868:0,0,0 +g1,12987:6946919,24620868 +g1,12987:7263065,24620868 +g1,12987:7579211,24620868 +g1,12987:7895357,24620868 +g1,12987:8211503,24620868 +g1,12987:8527649,24620868 +g1,12987:8843795,24620868 +g1,12987:9159941,24620868 +g1,12987:9476087,24620868 +g1,12987:9792233,24620868 +g1,12987:10108379,24620868 +g1,12987:10424525,24620868 +g1,12987:10740671,24620868 +g1,12987:11056817,24620868 +g1,12987:11372963,24620868 +g1,12987:13269837,24620868 +g1,12987:13902129,24620868 +g1,12987:16115149,24620868 +g1,12987:18012023,24620868 +g1,12987:18644315,24620868 +g1,12987:20225044,24620868 +g1,12987:21805773,24620868 +g1,12987:22438065,24620868 +h1,12987:23386502,24620868:0,0,0 +k1,12987:32583029,24620868:9196527 +g1,12987:32583029,24620868 +) +(1,12991:6630773,25942406:25952256,410518,107478 +g1,12991:7579210,25942406 +g1,12991:10424521,25942406 +g1,12991:12953687,25942406 +g1,12991:13902124,25942406 +g1,12991:17695872,25942406 +g1,12991:18960455,25942406 +g1,12991:20857329,25942406 +k1,12991:32583029,25942406:9196535 +g1,12991:32583029,25942406 +) +] +) +g1,12991:32583029,26049884 +g1,12991:6630773,26049884 +g1,12991:6630773,26049884 +g1,12991:32583029,26049884 +g1,12991:32583029,26049884 +) +h1,12991:6630773,26246492:0,0,0 +(1,12994:6630773,35899005:25952256,9062689,0 +k1,12994:10523651,35899005:3892878 +h1,12993:10523651,35899005:0,0,0 +(1,12993:10523651,35899005:18166500,9062689,0 +(1,12993:10523651,35899005:18167381,9062712,0 +(1,12993:10523651,35899005:18167381,9062712,0 +(1,12993:10523651,35899005:0,9062712,0 +(1,12993:10523651,35899005:0,14155776,0 +(1,12993:10523651,35899005:28377088,14155776,0 +) +k1,12993:10523651,35899005:-28377088 +) +) +g1,12993:28691032,35899005 +) +) +) +g1,12994:28690151,35899005 +k1,12994:32583029,35899005:3892878 +) +(1,13002:6630773,36740493:25952256,513147,134348 +h1,13001:6630773,36740493:983040,0,0 +k1,13001:8682517,36740493:239674 +k1,13001:10359397,36740493:239675 +k1,13001:11285233,36740493:239674 +k1,13001:12295611,36740493:239675 +k1,13001:15607613,36740493:239674 +k1,13001:16203148,36740493:239675 +k1,13001:19138318,36740493:239674 +k1,13001:20662498,36740493:239674 +k1,13001:23243119,36740493:239675 +k1,13001:23838653,36740493:239674 +k1,13001:26280338,36740493:239675 +k1,13001:28200355,36740493:239674 +k1,13001:29586255,36740493:239675 +k1,13001:30845014,36740493:239674 +k1,13001:32583029,36740493:0 +) +(1,13002:6630773,37581981:25952256,513147,126483 +k1,13001:8165540,37581981:163754 +k1,13001:11766657,37581981:163754 +k1,13001:12613296,37581981:163754 +k1,13001:14479020,37581981:163754 +k1,13001:16631136,37581981:163754 +k1,13001:17663242,37581981:163754 +k1,13001:18919482,37581981:163755 +k1,13001:22363968,37581981:163754 +(1,13001:22363968,37581981:0,459977,115847 +r1,13001:25184217,37581981:2820249,575824,115847 +k1,13001:22363968,37581981:-2820249 +) +(1,13001:22363968,37581981:2820249,459977,115847 +k1,13001:22363968,37581981:3277 +h1,13001:25180940,37581981:0,411205,112570 +) +k1,13001:25347971,37581981:163754 +k1,13001:27838908,37581981:163754 +k1,13001:28669818,37581981:163754 +(1,13001:28669818,37581981:0,459977,115847 +r1,13001:30434931,37581981:1765113,575824,115847 +k1,13001:28669818,37581981:-1765113 +) +(1,13001:28669818,37581981:1765113,459977,115847 +k1,13001:28669818,37581981:3277 +h1,13001:30431654,37581981:0,411205,112570 +) +k1,13001:30772355,37581981:163754 +k1,13001:31563944,37581981:163754 +k1,13001:32583029,37581981:0 +) +(1,13002:6630773,38423469:25952256,513147,138281 +k1,13001:8266237,38423469:251344 +k1,13001:11178998,38423469:251344 +k1,13001:12298693,38423469:251343 +k1,13001:13747380,38423469:251344 +k1,13001:16067040,38423469:251344 +k1,13001:17509829,38423469:251344 +k1,13001:21198535,38423469:251343 +k1,13001:24206979,38423469:251344 +k1,13001:25405974,38423469:251344 +$1,13001:25405974,38423469 +k1,13001:26151209,38423469:277308 +k1,13001:26996714,38423469:277308 +$1,13001:28381490,38423469 +k1,13001:28632833,38423469:251343 +k1,13001:30110356,38423469:251344 +k1,13001:32583029,38423469:0 +) +(1,13002:6630773,39264957:25952256,505283,134348 +g1,13001:9871528,39264957 +k1,13002:32583029,39264957:19439944 +g1,13002:32583029,39264957 +) +v1,13004:6630773,40455423:0,393216,0 +(1,13008:6630773,40770520:25952256,708313,196608 +g1,13008:6630773,40770520 +g1,13008:6630773,40770520 +g1,13008:6434165,40770520 +(1,13008:6434165,40770520:0,708313,196608 +r1,13008:32779637,40770520:26345472,904921,196608 +k1,13008:6434165,40770520:-26345472 +) +(1,13008:6434165,40770520:26345472,708313,196608 +[1,13008:6630773,40770520:25952256,511705,0 +(1,13006:6630773,40669333:25952256,410518,101187 +(1,13005:6630773,40669333:0,0,0 +g1,13005:6630773,40669333 +g1,13005:6630773,40669333 +g1,13005:6303093,40669333 +(1,13005:6303093,40669333:0,0,0 +) +g1,13005:6630773,40669333 +) +g1,13006:6946919,40669333 +g1,13006:7263065,40669333 +g1,13006:14218270,40669333 +g1,13006:14850562,40669333 +g1,13006:20541185,40669333 +g1,13006:22438059,40669333 +g1,13006:23070351,40669333 +g1,13006:25283371,40669333 +g1,13006:26864100,40669333 +g1,13006:27496392,40669333 +g1,13006:28444830,40669333 +g1,13006:30341704,40669333 +g1,13006:30973996,40669333 +h1,13006:32238579,40669333:0,0,0 +k1,13006:32583029,40669333:344450 +g1,13006:32583029,40669333 +) +] +) +g1,13008:32583029,40770520 +g1,13008:6630773,40770520 +g1,13008:6630773,40770520 +g1,13008:32583029,40770520 +g1,13008:32583029,40770520 +) +h1,13008:6630773,40967128:0,0,0 +(1,13012:6630773,42332904:25952256,513147,138281 +h1,13011:6630773,42332904:983040,0,0 +k1,13011:8761588,42332904:194226 +k1,13011:10060097,42332904:194227 +k1,13011:12899356,42332904:194226 +k1,13011:14112668,42332904:194227 +k1,13011:16572474,42332904:194226 +k1,13011:17425993,42332904:194227 +$1,13011:17425993,42332904 +k1,13011:18075980,42332904:182060 +k1,13011:18826237,42332904:182060 +$1,13011:20211013,42332904 +k1,13011:20405239,42332904:194226 +k1,13011:21547117,42332904:194227 +k1,13011:25178706,42332904:194226 +k1,13011:28130033,42332904:194227 +k1,13011:29085787,42332904:194226 +k1,13011:31635378,42332904:194227 +k1,13011:32583029,42332904:0 +) +(1,13012:6630773,43174392:25952256,513147,134348 +k1,13011:9663667,43174392:197807 +(1,13011:9663667,43174392:0,459977,115847 +r1,13011:14945899,43174392:5282232,575824,115847 +k1,13011:9663667,43174392:-5282232 +) +(1,13011:9663667,43174392:5282232,459977,115847 +g1,13011:12832351,43174392 +g1,13011:13535775,43174392 +h1,13011:14942622,43174392:0,411205,112570 +) +k1,13011:15143706,43174392:197807 +k1,13011:15957551,43174392:197807 +k1,13011:17174443,43174392:197807 +k1,13011:18365776,43174392:197807 +k1,13011:19222875,43174392:197807 +k1,13011:22823311,43174392:197807 +k1,13011:25226405,43174392:197807 +k1,13011:26075640,43174392:197807 +k1,13011:27292532,43174392:197807 +k1,13011:30359505,43174392:197807 +k1,13011:31753999,43174392:197807 +k1,13012:32583029,43174392:0 +) +(1,13012:6630773,44015880:25952256,505283,134348 +k1,13011:8935316,44015880:163482 +k1,13011:10203081,44015880:163483 +k1,13011:11652379,44015880:163482 +k1,13011:12563628,44015880:163483 +k1,13011:15935753,44015880:163482 +k1,13011:18559458,44015880:163483 +k1,13011:21764466,44015880:163482 +k1,13011:25199506,44015880:163483 +k1,13011:27098381,44015880:163482 +k1,13011:28280949,44015880:163483 +k1,13011:31417799,44015880:163482 +k1,13012:32583029,44015880:0 +) +(1,13012:6630773,44857368:25952256,513147,126483 +k1,13011:9599183,44857368:139221 +k1,13011:12874956,44857368:139220 +k1,13011:14581798,44857368:139221 +k1,13011:15740104,44857368:139221 +k1,13011:17268687,44857368:139220 +k1,13011:18169436,44857368:139221 +k1,13011:21580870,44857368:139221 +k1,13011:22549121,44857368:139221 +k1,13011:25045671,44857368:139220 +k1,13011:26388133,44857368:139221 +k1,13011:27395706,44857368:139221 +k1,13011:28972131,44857368:139220 +k1,13011:29762780,44857368:139221 +(1,13011:29762780,44857368:0,459977,115847 +r1,13011:32583029,44857368:2820249,575824,115847 +k1,13011:29762780,44857368:-2820249 +) +(1,13011:29762780,44857368:2820249,459977,115847 +k1,13011:29762780,44857368:3277 +h1,13011:32579752,44857368:0,411205,112570 +) +k1,13011:32583029,44857368:0 +) +(1,13012:6630773,45698856:25952256,513147,134348 +g1,13011:7849087,45698856 +g1,13011:11120644,45698856 +(1,13011:11120644,45698856:0,452978,115847 +r1,13011:16051164,45698856:4930520,568825,115847 +k1,13011:11120644,45698856:-4930520 +) +(1,13011:11120644,45698856:4930520,452978,115847 +k1,13011:11120644,45698856:3277 +h1,13011:16047887,45698856:0,411205,112570 +) +g1,13011:16250393,45698856 +g1,13011:18776805,45698856 +g1,13011:19643190,45698856 +(1,13011:19643190,45698856:0,452978,115847 +r1,13011:25277133,45698856:5633943,568825,115847 +k1,13011:19643190,45698856:-5633943 +) +(1,13011:19643190,45698856:5633943,452978,115847 +k1,13011:19643190,45698856:3277 +h1,13011:25273856,45698856:0,411205,112570 +) +k1,13012:32583029,45698856:7132226 +g1,13012:32583029,45698856 +) +] +(1,13014:32583029,45706769:0,0,0 +g1,13014:32583029,45706769 +) +) +] +(1,13014:6630773,47279633:25952256,0,0 +h1,13014:6630773,47279633:25952256,0,0 +) +] +h1,13014:4262630,4025873:0,0,0 +] +!25523 +}250 +Input:1807:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1808:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1809:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1810:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1811:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1812:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1813:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1814:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1815:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1816:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1817:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1818:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1819:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1820:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1821:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1822:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1823:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1824:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1668 +{251 +[1,13075:4262630,47279633:28320399,43253760,0 +(1,13075:4262630,4025873:0,0,0 +[1,13075:-473657,4025873:25952256,0,0 +(1,13075:-473657,-710414:25952256,0,0 +h1,13075:-473657,-710414:0,0,0 +(1,13075:-473657,-710414:0,0,0 +(1,13075:-473657,-710414:0,0,0 +g1,13075:-473657,-710414 +(1,13075:-473657,-710414:65781,0,65781 +g1,13075:-407876,-710414 +[1,13075:-407876,-644633:0,0,0 ] ) -k1,13051:-473657,-710414:-65781 +k1,13075:-473657,-710414:-65781 ) ) -k1,13051:25478599,-710414:25952256 -g1,13051:25478599,-710414 +k1,13075:25478599,-710414:25952256 +g1,13075:25478599,-710414 ) ] ) -[1,13051:6630773,47279633:25952256,43253760,0 -[1,13051:6630773,4812305:25952256,786432,0 -(1,13051:6630773,4812305:25952256,485622,11795 -(1,13051:6630773,4812305:25952256,485622,11795 -g1,13051:3078558,4812305 -[1,13051:3078558,4812305:0,0,0 -(1,13051:3078558,2439708:0,1703936,0 -k1,13051:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13051:2537886,2439708:1179648,16384,0 +[1,13075:6630773,47279633:25952256,43253760,0 +[1,13075:6630773,4812305:25952256,786432,0 +(1,13075:6630773,4812305:25952256,513147,134348 +(1,13075:6630773,4812305:25952256,513147,134348 +g1,13075:3078558,4812305 +[1,13075:3078558,4812305:0,0,0 +(1,13075:3078558,2439708:0,1703936,0 +k1,13075:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13075:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13051:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13075:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13051:3078558,4812305:0,0,0 -(1,13051:3078558,2439708:0,1703936,0 -g1,13051:29030814,2439708 -g1,13051:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13051:36151628,1915420:16384,1179648,0 +[1,13075:3078558,4812305:0,0,0 +(1,13075:3078558,2439708:0,1703936,0 +g1,13075:29030814,2439708 +g1,13075:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13075:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13051:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13075:37855564,2439708:1179648,16384,0 ) ) -k1,13051:3078556,2439708:-34777008 +k1,13075:3078556,2439708:-34777008 ) ] -[1,13051:3078558,4812305:0,0,0 -(1,13051:3078558,49800853:0,16384,2228224 -k1,13051:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13051:2537886,49800853:1179648,16384,0 +[1,13075:3078558,4812305:0,0,0 +(1,13075:3078558,49800853:0,16384,2228224 +k1,13075:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13075:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13051:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13075:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13051:3078558,4812305:0,0,0 -(1,13051:3078558,49800853:0,16384,2228224 -g1,13051:29030814,49800853 -g1,13051:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13051:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13051:37855564,49800853:1179648,16384,0 -) -) -k1,13051:3078556,49800853:-34777008 -) -] -g1,13051:6630773,4812305 -g1,13051:6630773,4812305 -g1,13051:9560887,4812305 -k1,13051:31387651,4812305:21826764 -) -) -] -[1,13051:6630773,45706769:25952256,40108032,0 -(1,13051:6630773,45706769:25952256,40108032,0 -(1,13051:6630773,45706769:0,0,0 -g1,13051:6630773,45706769 -) -[1,13051:6630773,45706769:25952256,40108032,0 -v1,12998:6630773,6254097:0,393216,0 -(1,12998:6630773,7901550:25952256,2040669,196608 -g1,12998:6630773,7901550 -g1,12998:6630773,7901550 -g1,12998:6434165,7901550 -(1,12998:6434165,7901550:0,2040669,196608 -r1,12998:32779637,7901550:26345472,2237277,196608 -k1,12998:6434165,7901550:-26345472 -) -(1,12998:6434165,7901550:26345472,2040669,196608 -[1,12998:6630773,7901550:25952256,1844061,0 -(1,12994:6630773,6468007:25952256,410518,101187 -(1,12993:6630773,6468007:0,0,0 -g1,12993:6630773,6468007 -g1,12993:6630773,6468007 -g1,12993:6303093,6468007 -(1,12993:6303093,6468007:0,0,0 -) -g1,12993:6630773,6468007 -) -g1,12994:6946919,6468007 -g1,12994:7263065,6468007 -g1,12994:14218270,6468007 -g1,12994:14850562,6468007 -k1,12994:14850562,6468007:0 -h1,12994:19592748,6468007:0,0,0 -k1,12994:32583029,6468007:12990281 -g1,12994:32583029,6468007 -) -(1,12995:6630773,7134185:25952256,410518,107478 -h1,12995:6630773,7134185:0,0,0 -g1,12995:6946919,7134185 -g1,12995:7263065,7134185 -g1,12995:7579211,7134185 -g1,12995:7895357,7134185 -g1,12995:8211503,7134185 -g1,12995:8527649,7134185 -g1,12995:8843795,7134185 -g1,12995:9159941,7134185 -g1,12995:9476087,7134185 -g1,12995:9792233,7134185 -g1,12995:10108379,7134185 -g1,12995:10424525,7134185 -g1,12995:10740671,7134185 -g1,12995:11056817,7134185 -g1,12995:11372963,7134185 -g1,12995:14218274,7134185 -g1,12995:14850566,7134185 -g1,12995:19276606,7134185 -g1,12995:19908898,7134185 -k1,12995:19908898,7134185:0 -h1,12995:21805773,7134185:0,0,0 -k1,12995:32583029,7134185:10777256 -g1,12995:32583029,7134185 -) -(1,12996:6630773,7800363:25952256,404226,101187 -h1,12996:6630773,7800363:0,0,0 -g1,12996:6946919,7800363 -g1,12996:7263065,7800363 -g1,12996:7579211,7800363 -g1,12996:7895357,7800363 -g1,12996:8211503,7800363 -g1,12996:8527649,7800363 -g1,12996:8843795,7800363 -g1,12996:9159941,7800363 -g1,12996:9476087,7800363 -g1,12996:9792233,7800363 -g1,12996:10108379,7800363 -g1,12996:10424525,7800363 -g1,12996:10740671,7800363 -g1,12996:11056817,7800363 -g1,12996:11372963,7800363 -g1,12996:13269837,7800363 -g1,12996:13902129,7800363 -g1,12996:16115149,7800363 -g1,12996:17695878,7800363 -g1,12996:18328170,7800363 -g1,12996:19276608,7800363 -g1,12996:21173482,7800363 -g1,12996:21805774,7800363 -h1,12996:23070357,7800363:0,0,0 -k1,12996:32583029,7800363:9512672 -g1,12996:32583029,7800363 -) -] -) -g1,12998:32583029,7901550 -g1,12998:6630773,7901550 -g1,12998:6630773,7901550 -g1,12998:32583029,7901550 -g1,12998:32583029,7901550 -) -h1,12998:6630773,8098158:0,0,0 -(1,13002:6630773,9336969:25952256,513147,126483 -h1,13001:6630773,9336969:983040,0,0 -g1,13001:8855064,9336969 -$1,13001:8855064,9336969 -[1,13001:8855064,9336969:502661,458096,7864 -(1,13001:9325611,9329105:0,450232,0 -) -(1,13001:8855064,9336969:502661,355205,7864 -) -] -g1,13001:9503373,9336969 -g1,13001:10217218,9336969 -(1,13001:10217218,9336969:1056440,355205,7864 -) -$1,13001:11273658,9336969 -g1,13001:11472887,9336969 -g1,13001:12540468,9336969 -g1,13001:14920080,9336969 -g1,13001:16556514,9336969 -(1,13001:16556514,9336969:0,452978,115847 -r1,13001:19728474,9336969:3171960,568825,115847 -k1,13001:16556514,9336969:-3171960 -) -(1,13001:16556514,9336969:3171960,452978,115847 -k1,13001:16556514,9336969:3277 -h1,13001:19725197,9336969:0,411205,112570 -) -g1,13001:19927703,9336969 -g1,13001:21318377,9336969 -g1,13001:22465257,9336969 -$1,13001:22465257,9336969 -[1,13001:22465257,9336969:502661,458096,7864 -(1,13001:22935804,9329105:0,450232,0 -) -(1,13001:22465257,9336969:502661,355205,7864 -) -] -g1,13001:23113566,9336969 -g1,13001:23827411,9336969 -(1,13001:23827411,9336969:1129840,505283,7864 -) -$1,13001:24957251,9336969 -g1,13001:25156480,9336969 -(1,13001:25156480,9336969:0,452978,115847 -r1,13001:28680152,9336969:3523672,568825,115847 -k1,13001:25156480,9336969:-3523672 -) -(1,13001:25156480,9336969:3523672,452978,115847 -k1,13001:25156480,9336969:3277 -h1,13001:28676875,9336969:0,411205,112570 -) -k1,13002:32583029,9336969:3729207 -g1,13002:32583029,9336969 -) -v1,13004:6630773,10400471:0,393216,0 -(1,13009:6630773,11381746:25952256,1374491,196608 -g1,13009:6630773,11381746 -g1,13009:6630773,11381746 -g1,13009:6434165,11381746 -(1,13009:6434165,11381746:0,1374491,196608 -r1,13009:32779637,11381746:26345472,1571099,196608 -k1,13009:6434165,11381746:-26345472 -) -(1,13009:6434165,11381746:26345472,1374491,196608 -[1,13009:6630773,11381746:25952256,1177883,0 -(1,13006:6630773,10614381:25952256,410518,101187 -(1,13005:6630773,10614381:0,0,0 -g1,13005:6630773,10614381 -g1,13005:6630773,10614381 -g1,13005:6303093,10614381 -(1,13005:6303093,10614381:0,0,0 -) -g1,13005:6630773,10614381 -) -g1,13006:6946919,10614381 -g1,13006:7263065,10614381 -g1,13006:14218270,10614381 -g1,13006:14850562,10614381 -k1,13006:14850562,10614381:0 -h1,13006:18012019,10614381:0,0,0 -k1,13006:32583029,10614381:14571010 -g1,13006:32583029,10614381 -) -(1,13007:6630773,11280559:25952256,404226,101187 -h1,13007:6630773,11280559:0,0,0 -g1,13007:6946919,11280559 -g1,13007:7263065,11280559 -g1,13007:7579211,11280559 -g1,13007:7895357,11280559 -g1,13007:8211503,11280559 -g1,13007:8527649,11280559 -g1,13007:8843795,11280559 -g1,13007:9159941,11280559 -g1,13007:9476087,11280559 -g1,13007:9792233,11280559 -g1,13007:10108379,11280559 -g1,13007:10424525,11280559 -g1,13007:10740671,11280559 -g1,13007:11056817,11280559 -g1,13007:11372963,11280559 -g1,13007:13269837,11280559 -g1,13007:13902129,11280559 -g1,13007:16115149,11280559 -g1,13007:17695878,11280559 -g1,13007:18328170,11280559 -g1,13007:19276608,11280559 -g1,13007:21173482,11280559 -g1,13007:21805774,11280559 -h1,13007:23070357,11280559:0,0,0 -k1,13007:32583029,11280559:9512672 -g1,13007:32583029,11280559 -) -] -) -g1,13009:32583029,11381746 -g1,13009:6630773,11381746 -g1,13009:6630773,11381746 -g1,13009:32583029,11381746 -g1,13009:32583029,11381746 -) -h1,13009:6630773,11578354:0,0,0 -(1,13013:6630773,12817165:25952256,513147,134348 -h1,13012:6630773,12817165:983040,0,0 -k1,13012:8739768,12817165:172406 -k1,13012:9727443,12817165:172407 -k1,13012:10966120,12817165:172406 -k1,13012:12418445,12817165:172407 -k1,13012:13361554,12817165:172406 -k1,13012:16195378,12817165:172407 -k1,13012:17939337,12817165:172406 -k1,13012:19183912,12817165:172406 -k1,13012:19814416,12817165:172407 -k1,13012:20518319,12817165:172406 -k1,13012:23320686,12817165:172407 -k1,13012:24144520,12817165:172406 -k1,13012:25409412,12817165:172407 -k1,13012:29557232,12817165:172406 -k1,13012:32583029,12817165:0 -) -(1,13013:6630773,13658653:25952256,513147,134348 -k1,13012:9132828,13658653:174872 -k1,13012:9966992,13658653:174872 -k1,13012:11160949,13658653:174872 -k1,13012:14361618,13658653:174872 -k1,13012:17377476,13658653:174872 -k1,13012:18313876,13658653:174872 -k1,13012:21068900,13658653:174872 -k1,13012:24072305,13658653:174872 -k1,13012:26308940,13658653:174872 -k1,13012:27293182,13658653:174872 -k1,13012:29211967,13658653:174872 -k1,13012:30002877,13658653:174872 -k1,13012:32583029,13658653:0 -) -(1,13013:6630773,14500141:25952256,513147,134348 -k1,13012:9597150,14500141:285955 -k1,13012:12411485,14500141:285956 -k1,13012:16100069,14500141:285955 -k1,13012:17037452,14500141:285955 -k1,13012:18342492,14500141:285955 -k1,13012:21323944,14500141:285956 -k1,13012:23296796,14500141:285955 -k1,13012:25653689,14500141:285955 -k1,13012:26887295,14500141:285955 -k1,13012:28192336,14500141:285956 -k1,13012:29784424,14500141:285955 -k1,13012:31227089,14500141:285955 -k1,13013:32583029,14500141:0 -) -(1,13013:6630773,15341629:25952256,505283,138281 -k1,13012:9092273,15341629:242451 -k1,13012:10353810,15341629:242452 -k1,13012:13107601,15341629:242451 -k1,13012:13966090,15341629:242451 -(1,13012:13966090,15341629:0,452978,115847 -r1,13012:15379491,15341629:1413401,568825,115847 -k1,13012:13966090,15341629:-1413401 -) -(1,13012:13966090,15341629:1413401,452978,115847 -k1,13012:13966090,15341629:3277 -h1,13012:15376214,15341629:0,411205,112570 -) -k1,13012:15621943,15341629:242452 -k1,13012:18449789,15341629:242451 -k1,13012:19343669,15341629:242452 -k1,13012:20605205,15341629:242451 -$1,13012:20605205,15341629 -$1,13012:21157018,15341629 -k1,13012:21399469,15341629:242451 -k1,13012:24659854,15341629:242452 -k1,13012:25893865,15341629:242451 -k1,13012:28897348,15341629:242451 -k1,13012:29825962,15341629:242452 -k1,13012:30424273,15341629:242451 -k1,13012:32583029,15341629:0 -) -(1,13013:6630773,16183117:25952256,513147,134348 -k1,13012:7863901,16183117:239602 -k1,13012:10662029,16183117:239602 -k1,13012:14182363,16183117:239602 -(1,13012:14182363,16183117:0,459977,122846 -r1,13012:17002612,16183117:2820249,582823,122846 -k1,13012:14182363,16183117:-2820249 -) -(1,13012:14182363,16183117:2820249,459977,122846 -k1,13012:14182363,16183117:3277 -h1,13012:16999335,16183117:0,411205,112570 -) -k1,13012:17415884,16183117:239602 -k1,13012:18674571,16183117:239602 -k1,13012:20982489,16183117:239602 -k1,13012:22735317,16183117:239602 -k1,13012:23922570,16183117:239602 -k1,13012:27773206,16183117:239602 -k1,13012:28628846,16183117:239602 -k1,13012:29887533,16183117:239602 -k1,13012:32583029,16183117:0 -) -(1,13013:6630773,17024605:25952256,513147,126483 -g1,13012:9912160,17024605 -g1,13012:11641655,17024605 -g1,13012:13216485,17024605 -g1,13012:15396867,17024605 -g1,13012:16615181,17024605 -g1,13012:18882726,17024605 -g1,13012:19697993,17024605 -g1,13012:21100463,17024605 -k1,13013:32583029,17024605:10315370 -g1,13013:32583029,17024605 -) -(1,13015:6630773,17866093:25952256,505283,126483 -h1,13014:6630773,17866093:983040,0,0 -k1,13014:10043778,17866093:153900 -k1,13014:11066031,17866093:153901 -k1,13014:12497228,17866093:153900 -k1,13014:13670213,17866093:153900 -k1,13014:15892430,17866093:153901 -k1,13014:16662368,17866093:153900 -k1,13014:17172128,17866093:153900 -k1,13014:19495271,17866093:153901 -k1,13014:21100138,17866093:153900 -k1,13014:22647989,17866093:153900 -k1,13014:23820975,17866093:153901 -k1,13014:28046627,17866093:153900 -k1,13014:32583029,17866093:0 -) -(1,13015:6630773,18707581:25952256,513147,126483 -k1,13014:7626374,18707581:186231 -k1,13014:8831691,18707581:186232 -k1,13014:10624865,18707581:186231 -k1,13014:12186042,18707581:186232 -k1,13014:13058435,18707581:186231 -k1,13014:13600526,18707581:186231 -k1,13014:15629630,18707581:186232 -k1,13014:16475153,18707581:186231 -k1,13014:17680469,18707581:186231 -k1,13014:19606027,18707581:186232 -k1,13014:20408296,18707581:186231 -k1,13014:22479999,18707581:186232 -k1,13014:23685315,18707581:186231 -k1,13014:25759638,18707581:186231 -k1,13014:26937430,18707581:186232 -k1,13014:29089086,18707581:186231 -k1,13014:29926746,18707581:186232 -k1,13014:31132062,18707581:186231 -k1,13014:32583029,18707581:0 -) -(1,13015:6630773,19549069:25952256,505283,126483 -k1,13014:7459224,19549069:200616 -k1,13014:8863081,19549069:200616 -k1,13014:10430778,19549069:200616 -k1,13014:11499747,19549069:200617 -k1,13014:12634906,19549069:200616 -(1,13014:12634906,19549069:0,459977,115847 -r1,13014:14048307,19549069:1413401,575824,115847 -k1,13014:12634906,19549069:-1413401 -) -(1,13014:12634906,19549069:1413401,459977,115847 -k1,13014:12634906,19549069:3277 -h1,13014:14045030,19549069:0,411205,112570 -) -k1,13014:14422593,19549069:200616 -(1,13014:14422593,19549069:0,452978,115847 -r1,13014:16187706,19549069:1765113,568825,115847 -k1,13014:14422593,19549069:-1765113 -) -(1,13014:14422593,19549069:1765113,452978,115847 -k1,13014:14422593,19549069:3277 -h1,13014:16184429,19549069:0,411205,112570 -) -k1,13014:16388322,19549069:200616 -k1,13014:17780383,19549069:200616 -(1,13014:17780383,19549069:0,452978,115847 -r1,13014:19545496,19549069:1765113,568825,115847 -k1,13014:17780383,19549069:-1765113 -) -(1,13014:17780383,19549069:1765113,452978,115847 -k1,13014:17780383,19549069:3277 -h1,13014:19542219,19549069:0,411205,112570 -) -k1,13014:19746112,19549069:200616 -k1,13014:24529005,19549069:200616 -k1,13014:25381050,19549069:200617 -k1,13014:28843393,19549069:200616 -k1,13014:30116178,19549069:200616 -k1,13014:30932832,19549069:200616 -k1,13014:32583029,19549069:0 -) -(1,13015:6630773,20390557:25952256,513147,134348 -k1,13014:9547889,20390557:230795 -k1,13014:11168048,20390557:230796 -k1,13014:12837358,20390557:230795 -k1,13014:15875715,20390557:230795 -k1,13014:17745566,20390557:230796 -k1,13014:18627789,20390557:230795 -k1,13014:21082877,20390557:230796 -k1,13014:21929710,20390557:230795 -(1,13014:21929710,20390557:0,452978,115847 -r1,13014:23343111,20390557:1413401,568825,115847 -k1,13014:21929710,20390557:-1413401 -) -(1,13014:21929710,20390557:1413401,452978,115847 -k1,13014:21929710,20390557:3277 -h1,13014:23339834,20390557:0,411205,112570 -) -k1,13014:23573906,20390557:230795 -k1,13014:24908984,20390557:230796 -k1,13014:25887545,20390557:230795 -k1,13014:27631566,20390557:230795 -k1,13014:28810013,20390557:230796 -k1,13014:31923737,20390557:230795 -k1,13014:32583029,20390557:0 -) -(1,13015:6630773,21232045:25952256,505283,134348 -k1,13014:11104297,21232045:228102 -k1,13014:12994393,21232045:228103 -k1,13014:15410087,21232045:228102 -k1,13014:16810628,21232045:228102 -k1,13014:18316028,21232045:228103 -k1,13014:20432222,21232045:228102 -k1,13014:22054276,21232045:228103 -(1,13014:22054276,21232045:0,452978,115847 -r1,13014:26984796,21232045:4930520,568825,115847 -k1,13014:22054276,21232045:-4930520 -) -(1,13014:22054276,21232045:4930520,452978,115847 -k1,13014:22054276,21232045:3277 -h1,13014:26981519,21232045:0,411205,112570 -) -k1,13014:27212898,21232045:228102 -k1,13014:29452955,21232045:228102 -k1,13014:30426202,21232045:228103 -k1,13014:31305732,21232045:228102 -k1,13014:32583029,21232045:0 -) -(1,13015:6630773,22073533:25952256,513147,134348 -g1,13014:7849087,22073533 -g1,13014:9786331,22073533 -g1,13014:11177005,22073533 -g1,13014:12395319,22073533 -g1,13014:14201491,22073533 -g1,13014:15775665,22073533 -g1,13014:17710287,22073533 -g1,13014:20671859,22073533 -k1,13015:32583029,22073533:9791080 -g1,13015:32583029,22073533 -) -v1,13017:6630773,23137034:0,393216,0 -(1,13027:6630773,27455490:25952256,4711672,196608 -g1,13027:6630773,27455490 -g1,13027:6630773,27455490 -g1,13027:6434165,27455490 -(1,13027:6434165,27455490:0,4711672,196608 -r1,13027:32779637,27455490:26345472,4908280,196608 -k1,13027:6434165,27455490:-26345472 -) -(1,13027:6434165,27455490:26345472,4711672,196608 -[1,13027:6630773,27455490:25952256,4515064,0 -(1,13019:6630773,23350944:25952256,410518,107478 -(1,13018:6630773,23350944:0,0,0 -g1,13018:6630773,23350944 -g1,13018:6630773,23350944 -g1,13018:6303093,23350944 -(1,13018:6303093,23350944:0,0,0 -) -g1,13018:6630773,23350944 -) -k1,13019:6630773,23350944:0 -g1,13019:10424522,23350944 -g1,13019:11056814,23350944 -g1,13019:14534417,23350944 -g1,13019:16431292,23350944 -g1,13019:17063584,23350944 -g1,13019:18012022,23350944 -g1,13019:18644314,23350944 -g1,13019:19276606,23350944 -g1,13019:21805772,23350944 -h1,13019:22121918,23350944:0,0,0 -k1,13019:32583029,23350944:10461111 -g1,13019:32583029,23350944 -) -(1,13020:6630773,24017122:25952256,410518,107478 -h1,13020:6630773,24017122:0,0,0 -g1,13020:6946919,24017122 -g1,13020:7263065,24017122 -g1,13020:13269833,24017122 -g1,13020:13902125,24017122 -g1,13020:16431291,24017122 -g1,13020:18012020,24017122 -g1,13020:18644312,24017122 -k1,13020:18644312,24017122:0 -h1,13020:21173478,24017122:0,0,0 -k1,13020:32583029,24017122:11409551 -g1,13020:32583029,24017122 -) -(1,13021:6630773,24683300:25952256,410518,82312 -h1,13021:6630773,24683300:0,0,0 -g1,13021:6946919,24683300 -g1,13021:7263065,24683300 -g1,13021:7579211,24683300 -g1,13021:7895357,24683300 -g1,13021:8211503,24683300 -g1,13021:8527649,24683300 -g1,13021:8843795,24683300 -g1,13021:9159941,24683300 -g1,13021:9476087,24683300 -g1,13021:9792233,24683300 -g1,13021:10108379,24683300 -g1,13021:10424525,24683300 -g1,13021:10740671,24683300 -g1,13021:11056817,24683300 -g1,13021:11372963,24683300 -g1,13021:12953692,24683300 -g1,13021:13585984,24683300 -g1,13021:16431296,24683300 -g1,13021:18328170,24683300 -g1,13021:18960462,24683300 -g1,13021:21805774,24683300 -h1,13021:22121920,24683300:0,0,0 -k1,13021:32583029,24683300:10461109 -g1,13021:32583029,24683300 -) -(1,13022:6630773,25349478:25952256,410518,101187 -h1,13022:6630773,25349478:0,0,0 -g1,13022:6946919,25349478 -g1,13022:7263065,25349478 -g1,13022:14218270,25349478 -g1,13022:14850562,25349478 -k1,13022:14850562,25349478:0 -h1,13022:19592748,25349478:0,0,0 -k1,13022:32583029,25349478:12990281 -g1,13022:32583029,25349478 -) -(1,13023:6630773,26015656:25952256,404226,107478 -h1,13023:6630773,26015656:0,0,0 -g1,13023:6946919,26015656 -g1,13023:7263065,26015656 -g1,13023:7579211,26015656 -g1,13023:7895357,26015656 -g1,13023:8211503,26015656 -g1,13023:8527649,26015656 -g1,13023:8843795,26015656 -g1,13023:9159941,26015656 -g1,13023:9476087,26015656 -g1,13023:9792233,26015656 -g1,13023:10108379,26015656 -g1,13023:10424525,26015656 -g1,13023:10740671,26015656 -g1,13023:11056817,26015656 -g1,13023:11372963,26015656 -g1,13023:12953692,26015656 -g1,13023:13585984,26015656 -k1,13023:13585984,26015656:0 -h1,13023:17063587,26015656:0,0,0 -k1,13023:32583029,26015656:15519442 -g1,13023:32583029,26015656 -) -(1,13024:6630773,26681834:25952256,404226,82312 -h1,13024:6630773,26681834:0,0,0 -g1,13024:6946919,26681834 -g1,13024:7263065,26681834 -g1,13024:7579211,26681834 -g1,13024:7895357,26681834 -g1,13024:8211503,26681834 -g1,13024:8527649,26681834 -g1,13024:8843795,26681834 -g1,13024:9159941,26681834 -g1,13024:9476087,26681834 -g1,13024:9792233,26681834 -g1,13024:10108379,26681834 -g1,13024:10424525,26681834 -g1,13024:10740671,26681834 -g1,13024:11056817,26681834 -g1,13024:11372963,26681834 -g1,13024:13269837,26681834 -g1,13024:13902129,26681834 -g1,13024:15482858,26681834 -g1,13024:17063587,26681834 -g1,13024:17695879,26681834 -g1,13024:18644317,26681834 -g1,13024:20541191,26681834 -g1,13024:21173483,26681834 -g1,13024:23386503,26681834 -h1,13024:23702649,26681834:0,0,0 -k1,13024:32583029,26681834:8880380 -g1,13024:32583029,26681834 -) -(1,13025:6630773,27348012:25952256,404226,107478 -h1,13025:6630773,27348012:0,0,0 -g1,13025:6946919,27348012 -g1,13025:7263065,27348012 -g1,13025:12321397,27348012 -g1,13025:12953689,27348012 -g1,13025:13902127,27348012 -g1,13025:15799001,27348012 -g1,13025:16431293,27348012 -h1,13025:17695876,27348012:0,0,0 -k1,13025:32583029,27348012:14887153 -g1,13025:32583029,27348012 -) -] -) -g1,13027:32583029,27455490 -g1,13027:6630773,27455490 -g1,13027:6630773,27455490 -g1,13027:32583029,27455490 -g1,13027:32583029,27455490 -) -h1,13027:6630773,27652098:0,0,0 -(1,13031:6630773,28890909:25952256,505283,134348 -h1,13030:6630773,28890909:983040,0,0 -k1,13030:8801980,28890909:234618 -k1,13030:10140880,28890909:234618 -k1,13030:11652795,28890909:234618 -k1,13030:14129399,28890909:234617 -k1,13030:15046902,28890909:234618 -k1,13030:16983490,28890909:234618 -k1,13030:20899921,28890909:234618 -k1,13030:21896067,28890909:234618 -k1,13030:24023365,28890909:234618 -k1,13030:26843378,28890909:234618 -k1,13030:27729423,28890909:234617 -(1,13030:27729423,28890909:0,414482,115847 -r1,13030:28087689,28890909:358266,530329,115847 -k1,13030:27729423,28890909:-358266 -) -(1,13030:27729423,28890909:358266,414482,115847 -k1,13030:27729423,28890909:3277 -h1,13030:28084412,28890909:0,411205,112570 -) -k1,13030:28322307,28890909:234618 -(1,13030:28529401,28890909:0,452978,115847 -r1,13030:30294514,28890909:1765113,568825,115847 -k1,13030:28529401,28890909:-1765113 -) -(1,13030:28529401,28890909:1765113,452978,115847 -k1,13030:28529401,28890909:3277 -h1,13030:30291237,28890909:0,411205,112570 -) -k1,13030:30529132,28890909:234618 -k1,13030:31379788,28890909:234618 -k1,13030:32583029,28890909:0 -) -(1,13031:6630773,29732397:25952256,505283,134348 -k1,13030:9652331,29732397:153047 -k1,13030:10491540,29732397:153047 -k1,13030:13357778,29732397:153047 -k1,13030:14272354,29732397:153048 -k1,13030:16852855,29732397:153047 -(1,13030:16852855,29732397:0,452978,115847 -r1,13030:18617968,29732397:1765113,568825,115847 -k1,13030:16852855,29732397:-1765113 -) -(1,13030:16852855,29732397:1765113,452978,115847 -k1,13030:16852855,29732397:3277 -h1,13030:18614691,29732397:0,411205,112570 -) -k1,13030:18771015,29732397:153047 -k1,13030:19610224,29732397:153047 -k1,13030:20533974,29732397:153047 -k1,13030:23759349,29732397:153047 -k1,13030:24563824,29732397:153047 -(1,13030:24563824,29732397:0,414482,122846 -r1,13030:25977225,29732397:1413401,537328,122846 -k1,13030:24563824,29732397:-1413401 -) -(1,13030:24563824,29732397:1413401,414482,122846 -k1,13030:24563824,29732397:3277 -h1,13030:25973948,29732397:0,411205,112570 -) -k1,13030:26303942,29732397:153047 -k1,13030:27084825,29732397:153048 -k1,13030:28441113,29732397:153047 -k1,13030:29832135,29732397:153047 -k1,13030:30853534,29732397:153047 -k1,13030:32583029,29732397:0 -) -(1,13031:6630773,30573885:25952256,505283,126483 -g1,13030:7849087,30573885 -g1,13030:9578582,30573885 -g1,13030:10429239,30573885 -g1,13030:13416370,30573885 -g1,13030:14634684,30573885 -g1,13030:18342055,30573885 -g1,13030:19157322,30573885 -k1,13031:32583029,30573885:10666641 -g1,13031:32583029,30573885 -) -v1,13033:6630773,31637387:0,393216,0 -(1,13038:6630773,32618661:25952256,1374490,196608 -g1,13038:6630773,32618661 -g1,13038:6630773,32618661 -g1,13038:6434165,32618661 -(1,13038:6434165,32618661:0,1374490,196608 -r1,13038:32779637,32618661:26345472,1571098,196608 -k1,13038:6434165,32618661:-26345472 -) -(1,13038:6434165,32618661:26345472,1374490,196608 -[1,13038:6630773,32618661:25952256,1177882,0 -(1,13035:6630773,31845005:25952256,404226,107478 -(1,13034:6630773,31845005:0,0,0 -g1,13034:6630773,31845005 -g1,13034:6630773,31845005 -g1,13034:6303093,31845005 -(1,13034:6303093,31845005:0,0,0 -) -g1,13034:6630773,31845005 -) -k1,13035:6630773,31845005:0 -g1,13035:10424522,31845005 -g1,13035:13902125,31845005 -g1,13035:15798999,31845005 -h1,13035:16115145,31845005:0,0,0 -k1,13035:32583029,31845005:16467884 -g1,13035:32583029,31845005 -) -(1,13036:6630773,32511183:25952256,410518,107478 -h1,13036:6630773,32511183:0,0,0 -g1,13036:6946919,32511183 -g1,13036:7263065,32511183 -g1,13036:12953688,32511183 -g1,13036:13585980,32511183 -g1,13036:15799000,32511183 -g1,13036:17695874,32511183 -g1,13036:18328166,32511183 -h1,13036:19908894,32511183:0,0,0 -k1,13036:32583029,32511183:12674135 -g1,13036:32583029,32511183 -) -] -) -g1,13038:32583029,32618661 -g1,13038:6630773,32618661 -g1,13038:6630773,32618661 -g1,13038:32583029,32618661 -g1,13038:32583029,32618661 -) -h1,13038:6630773,32815269:0,0,0 -(1,13041:6630773,42340817:25952256,9062689,0 -k1,13041:10523651,42340817:3892878 -h1,13040:10523651,42340817:0,0,0 -(1,13040:10523651,42340817:18166500,9062689,0 -(1,13040:10523651,42340817:18167381,9062712,0 -(1,13040:10523651,42340817:18167381,9062712,0 -(1,13040:10523651,42340817:0,9062712,0 -(1,13040:10523651,42340817:0,14155776,0 -(1,13040:10523651,42340817:28377088,14155776,0 -) -k1,13040:10523651,42340817:-28377088 -) -) -g1,13040:28691032,42340817 -) -) -) -g1,13041:28690151,42340817 -k1,13041:32583029,42340817:3892878 -) -(1,13049:6630773,43182305:25952256,505283,126483 -h1,13048:6630773,43182305:983040,0,0 -k1,13048:8967381,43182305:400019 -k1,13048:10471681,43182305:400018 -k1,13048:12672629,43182305:400019 -k1,13048:14269990,43182305:400018 -k1,13048:16276952,43182305:400019 -k1,13048:18051916,43182305:400019 -k1,13048:19103362,43182305:400018 -k1,13048:20522466,43182305:400019 -k1,13048:23305373,43182305:400018 -k1,13048:25156359,43182305:400019 -k1,13048:26509926,43182305:400018 -k1,13048:28002430,43182305:400019 -(1,13048:28002430,43182305:0,452978,115847 -r1,13048:29415831,43182305:1413401,568825,115847 -k1,13048:28002430,43182305:-1413401 -) -(1,13048:28002430,43182305:1413401,452978,115847 -k1,13048:28002430,43182305:3277 -h1,13048:29412554,43182305:0,411205,112570 -) -k1,13048:29815850,43182305:400019 -k1,13048:30867296,43182305:400018 -k1,13048:32583029,43182305:0 -) -(1,13049:6630773,44023793:25952256,513147,134348 -k1,13048:7968015,44023793:318157 -k1,13048:9784980,44023793:318157 -k1,13048:10762428,44023793:318156 -k1,13048:12099670,44023793:318157 -k1,13048:14024770,44023793:318157 -k1,13048:15717872,44023793:318157 -k1,13048:18444476,44023793:318156 -k1,13048:19959320,44023793:318157 -k1,13048:22543057,44023793:318157 -k1,13048:25868661,44023793:318157 -k1,13048:26802855,44023793:318156 -(1,13048:26802855,44023793:0,452978,115847 -r1,13048:31733375,44023793:4930520,568825,115847 -k1,13048:26802855,44023793:-4930520 -) -(1,13048:26802855,44023793:4930520,452978,115847 -k1,13048:26802855,44023793:3277 -h1,13048:31730098,44023793:0,411205,112570 -) -k1,13048:32051532,44023793:318157 -k1,13049:32583029,44023793:0 -) -(1,13049:6630773,44865281:25952256,513147,134348 -(1,13048:6630773,44865281:0,452978,122846 -r1,13048:12616428,44865281:5985655,575824,122846 -k1,13048:6630773,44865281:-5985655 -) -(1,13048:6630773,44865281:5985655,452978,122846 -k1,13048:6630773,44865281:3277 -h1,13048:12613151,44865281:0,411205,112570 -) -k1,13048:13062977,44865281:272879 -k1,13048:14060685,44865281:272880 -k1,13048:15201916,44865281:272879 -k1,13048:16579077,44865281:272879 -k1,13048:18289161,44865281:272879 -(1,13048:18289161,44865281:0,452978,122846 -r1,13048:22164545,44865281:3875384,575824,122846 -k1,13048:18289161,44865281:-3875384 -) -(1,13048:18289161,44865281:3875384,452978,122846 -k1,13048:18289161,44865281:3277 -h1,13048:22161268,44865281:0,411205,112570 -) -k1,13048:22437425,44865281:272880 -k1,13048:23396466,44865281:272879 -k1,13048:24440048,44865281:272879 -k1,13048:27785255,44865281:272879 -k1,13048:29005786,44865281:272880 -(1,13048:29005786,44865281:0,414482,122846 -r1,13048:30419187,44865281:1413401,537328,122846 -k1,13048:29005786,44865281:-1413401 -) -(1,13048:29005786,44865281:1413401,414482,122846 -k1,13048:29005786,44865281:3277 -h1,13048:30415910,44865281:0,411205,112570 -) -k1,13048:30692066,44865281:272879 -k1,13048:31616373,44865281:272879 -k1,13049:32583029,44865281:0 -) -(1,13049:6630773,45706769:25952256,505283,126483 -g1,13048:9026113,45706769 -g1,13048:10244427,45706769 -k1,13049:32583029,45706769:20476724 -g1,13049:32583029,45706769 -) -] -(1,13051:32583029,45706769:0,0,0 -g1,13051:32583029,45706769 -) -) -] -(1,13051:6630773,47279633:25952256,0,0 -h1,13051:6630773,47279633:25952256,0,0 -) -] -h1,13051:4262630,4025873:0,0,0 -] -!28873 -}250 -Input:1829:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1830:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1831:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1832:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1833:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1834:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1835:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1836:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1837:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1838:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1839:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1840:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1841:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 -{251 -[1,13114:4262630,47279633:28320399,43253760,0 -(1,13114:4262630,4025873:0,0,0 -[1,13114:-473657,4025873:25952256,0,0 -(1,13114:-473657,-710414:25952256,0,0 -h1,13114:-473657,-710414:0,0,0 -(1,13114:-473657,-710414:0,0,0 -(1,13114:-473657,-710414:0,0,0 -g1,13114:-473657,-710414 -(1,13114:-473657,-710414:65781,0,65781 -g1,13114:-407876,-710414 -[1,13114:-407876,-644633:0,0,0 +[1,13075:3078558,4812305:0,0,0 +(1,13075:3078558,49800853:0,16384,2228224 +g1,13075:29030814,49800853 +g1,13075:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13075:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13075:37855564,49800853:1179648,16384,0 +) +) +k1,13075:3078556,49800853:-34777008 +) +] +g1,13075:6630773,4812305 +k1,13075:25712890,4812305:17886740 +g1,13075:29057847,4812305 +g1,13075:29873114,4812305 +) +) +] +[1,13075:6630773,45706769:25952256,40108032,0 +(1,13075:6630773,45706769:25952256,40108032,0 +(1,13075:6630773,45706769:0,0,0 +g1,13075:6630773,45706769 +) +[1,13075:6630773,45706769:25952256,40108032,0 +v1,13014:6630773,6254097:0,393216,0 +(1,13020:6630773,7901550:25952256,2040669,196608 +g1,13020:6630773,7901550 +g1,13020:6630773,7901550 +g1,13020:6434165,7901550 +(1,13020:6434165,7901550:0,2040669,196608 +r1,13020:32779637,7901550:26345472,2237277,196608 +k1,13020:6434165,7901550:-26345472 +) +(1,13020:6434165,7901550:26345472,2040669,196608 +[1,13020:6630773,7901550:25952256,1844061,0 +(1,13016:6630773,6468007:25952256,410518,101187 +(1,13015:6630773,6468007:0,0,0 +g1,13015:6630773,6468007 +g1,13015:6630773,6468007 +g1,13015:6303093,6468007 +(1,13015:6303093,6468007:0,0,0 +) +g1,13015:6630773,6468007 +) +g1,13016:6946919,6468007 +g1,13016:7263065,6468007 +g1,13016:14218270,6468007 +g1,13016:14850562,6468007 +k1,13016:14850562,6468007:0 +h1,13016:19592748,6468007:0,0,0 +k1,13016:32583029,6468007:12990281 +g1,13016:32583029,6468007 +) +(1,13017:6630773,7134185:25952256,410518,107478 +h1,13017:6630773,7134185:0,0,0 +g1,13017:6946919,7134185 +g1,13017:7263065,7134185 +g1,13017:7579211,7134185 +g1,13017:7895357,7134185 +g1,13017:8211503,7134185 +g1,13017:8527649,7134185 +g1,13017:8843795,7134185 +g1,13017:9159941,7134185 +g1,13017:9476087,7134185 +g1,13017:9792233,7134185 +g1,13017:10108379,7134185 +g1,13017:10424525,7134185 +g1,13017:10740671,7134185 +g1,13017:11056817,7134185 +g1,13017:11372963,7134185 +g1,13017:14218274,7134185 +g1,13017:14850566,7134185 +g1,13017:19276606,7134185 +g1,13017:19908898,7134185 +k1,13017:19908898,7134185:0 +h1,13017:21805773,7134185:0,0,0 +k1,13017:32583029,7134185:10777256 +g1,13017:32583029,7134185 +) +(1,13018:6630773,7800363:25952256,404226,101187 +h1,13018:6630773,7800363:0,0,0 +g1,13018:6946919,7800363 +g1,13018:7263065,7800363 +g1,13018:7579211,7800363 +g1,13018:7895357,7800363 +g1,13018:8211503,7800363 +g1,13018:8527649,7800363 +g1,13018:8843795,7800363 +g1,13018:9159941,7800363 +g1,13018:9476087,7800363 +g1,13018:9792233,7800363 +g1,13018:10108379,7800363 +g1,13018:10424525,7800363 +g1,13018:10740671,7800363 +g1,13018:11056817,7800363 +g1,13018:11372963,7800363 +g1,13018:13269837,7800363 +g1,13018:13902129,7800363 +g1,13018:16115149,7800363 +g1,13018:17695878,7800363 +g1,13018:18328170,7800363 +g1,13018:19276608,7800363 +g1,13018:21173482,7800363 +g1,13018:21805774,7800363 +h1,13018:23070357,7800363:0,0,0 +k1,13018:32583029,7800363:9512672 +g1,13018:32583029,7800363 +) +] +) +g1,13020:32583029,7901550 +g1,13020:6630773,7901550 +g1,13020:6630773,7901550 +g1,13020:32583029,7901550 +g1,13020:32583029,7901550 +) +h1,13020:6630773,8098158:0,0,0 +(1,13024:6630773,9463934:25952256,513147,126483 +h1,13023:6630773,9463934:983040,0,0 +g1,13023:8855064,9463934 +$1,13023:8855064,9463934 +[1,13023:8855064,9463934:502661,458096,7864 +(1,13023:9325611,9456070:0,450232,0 +) +(1,13023:8855064,9463934:502661,355205,7864 +) +] +g1,13023:9503373,9463934 +g1,13023:10217218,9463934 +(1,13023:10217218,9463934:1056440,355205,7864 +) +$1,13023:11273658,9463934 +g1,13023:11472887,9463934 +g1,13023:12540468,9463934 +g1,13023:14920080,9463934 +g1,13023:16556514,9463934 +(1,13023:16556514,9463934:0,452978,115847 +r1,13023:19728474,9463934:3171960,568825,115847 +k1,13023:16556514,9463934:-3171960 +) +(1,13023:16556514,9463934:3171960,452978,115847 +k1,13023:16556514,9463934:3277 +h1,13023:19725197,9463934:0,411205,112570 +) +g1,13023:19927703,9463934 +g1,13023:21318377,9463934 +g1,13023:22465257,9463934 +$1,13023:22465257,9463934 +[1,13023:22465257,9463934:502661,458096,7864 +(1,13023:22935804,9456070:0,450232,0 +) +(1,13023:22465257,9463934:502661,355205,7864 +) +] +g1,13023:23113566,9463934 +g1,13023:23827411,9463934 +(1,13023:23827411,9463934:1129840,505283,7864 +) +$1,13023:24957251,9463934 +g1,13023:25156480,9463934 +(1,13023:25156480,9463934:0,452978,115847 +r1,13023:28680152,9463934:3523672,568825,115847 +k1,13023:25156480,9463934:-3523672 +) +(1,13023:25156480,9463934:3523672,452978,115847 +k1,13023:25156480,9463934:3277 +h1,13023:28676875,9463934:0,411205,112570 +) +k1,13024:32583029,9463934:3729207 +g1,13024:32583029,9463934 +) +v1,13026:6630773,10654400:0,393216,0 +(1,13031:6630773,11635675:25952256,1374491,196608 +g1,13031:6630773,11635675 +g1,13031:6630773,11635675 +g1,13031:6434165,11635675 +(1,13031:6434165,11635675:0,1374491,196608 +r1,13031:32779637,11635675:26345472,1571099,196608 +k1,13031:6434165,11635675:-26345472 +) +(1,13031:6434165,11635675:26345472,1374491,196608 +[1,13031:6630773,11635675:25952256,1177883,0 +(1,13028:6630773,10868310:25952256,410518,101187 +(1,13027:6630773,10868310:0,0,0 +g1,13027:6630773,10868310 +g1,13027:6630773,10868310 +g1,13027:6303093,10868310 +(1,13027:6303093,10868310:0,0,0 +) +g1,13027:6630773,10868310 +) +g1,13028:6946919,10868310 +g1,13028:7263065,10868310 +g1,13028:14218270,10868310 +g1,13028:14850562,10868310 +k1,13028:14850562,10868310:0 +h1,13028:18012019,10868310:0,0,0 +k1,13028:32583029,10868310:14571010 +g1,13028:32583029,10868310 +) +(1,13029:6630773,11534488:25952256,404226,101187 +h1,13029:6630773,11534488:0,0,0 +g1,13029:6946919,11534488 +g1,13029:7263065,11534488 +g1,13029:7579211,11534488 +g1,13029:7895357,11534488 +g1,13029:8211503,11534488 +g1,13029:8527649,11534488 +g1,13029:8843795,11534488 +g1,13029:9159941,11534488 +g1,13029:9476087,11534488 +g1,13029:9792233,11534488 +g1,13029:10108379,11534488 +g1,13029:10424525,11534488 +g1,13029:10740671,11534488 +g1,13029:11056817,11534488 +g1,13029:11372963,11534488 +g1,13029:13269837,11534488 +g1,13029:13902129,11534488 +g1,13029:16115149,11534488 +g1,13029:17695878,11534488 +g1,13029:18328170,11534488 +g1,13029:19276608,11534488 +g1,13029:21173482,11534488 +g1,13029:21805774,11534488 +h1,13029:23070357,11534488:0,0,0 +k1,13029:32583029,11534488:9512672 +g1,13029:32583029,11534488 +) +] +) +g1,13031:32583029,11635675 +g1,13031:6630773,11635675 +g1,13031:6630773,11635675 +g1,13031:32583029,11635675 +g1,13031:32583029,11635675 +) +h1,13031:6630773,11832283:0,0,0 +(1,13035:6630773,13198059:25952256,513147,134348 +h1,13034:6630773,13198059:983040,0,0 +k1,13034:8838681,13198059:271319 +k1,13034:9925268,13198059:271319 +k1,13034:11262858,13198059:271319 +k1,13034:12814095,13198059:271319 +k1,13034:13856117,13198059:271319 +k1,13034:16788853,13198059:271319 +k1,13034:18631724,13198059:271318 +k1,13034:19975212,13198059:271319 +k1,13034:20704628,13198059:271319 +k1,13034:21507444,13198059:271319 +k1,13034:24408723,13198059:271319 +k1,13034:25331470,13198059:271319 +k1,13034:26695274,13198059:271319 +k1,13034:30942007,13198059:271319 +k1,13035:32583029,13198059:0 +) +(1,13035:6630773,14039547:25952256,513147,134348 +k1,13034:8485278,14039547:256737 +k1,13034:11069199,14039547:256738 +k1,13034:11985228,14039547:256737 +k1,13034:13261050,14039547:256737 +k1,13034:16543585,14039547:256738 +k1,13034:19641308,14039547:256737 +k1,13034:20659573,14039547:256737 +k1,13034:23496463,14039547:256738 +k1,13034:26581733,14039547:256737 +k1,13034:28900233,14039547:256737 +k1,13034:29966341,14039547:256738 +k1,13034:31966991,14039547:256737 +k1,13034:32583029,14039547:0 +) +(1,13035:6630773,14881035:25952256,513147,134348 +k1,13034:9394863,14881035:183938 +k1,13034:12259222,14881035:183937 +k1,13034:14971539,14881035:183938 +k1,13034:18558105,14881035:183937 +k1,13034:19393471,14881035:183938 +k1,13034:20596493,14881035:183937 +k1,13034:23475927,14881035:183938 +k1,13034:25346762,14881035:183938 +k1,13034:27601637,14881035:183937 +k1,13034:28733226,14881035:183938 +k1,13034:29936248,14881035:183937 +k1,13034:31426319,14881035:183938 +k1,13034:32583029,14881035:0 +) +(1,13035:6630773,15722523:25952256,505283,138281 +k1,13034:10153582,15722523:160812 +k1,13034:11333479,15722523:160812 +k1,13034:14005632,15722523:160813 +k1,13034:14782482,15722523:160812 +(1,13034:14782482,15722523:0,452978,115847 +r1,13034:16195883,15722523:1413401,568825,115847 +k1,13034:14782482,15722523:-1413401 +) +(1,13034:14782482,15722523:1413401,452978,115847 +k1,13034:14782482,15722523:3277 +h1,13034:16192606,15722523:0,411205,112570 +) +k1,13034:16356695,15722523:160812 +k1,13034:19102902,15722523:160812 +k1,13034:19915142,15722523:160812 +k1,13034:21095040,15722523:160813 +$1,13034:21095040,15722523 +$1,13034:21646853,15722523 +k1,13034:21807665,15722523:160812 +k1,13034:24986410,15722523:160812 +k1,13034:26138782,15722523:160812 +k1,13034:29060627,15722523:160813 +k1,13034:29907601,15722523:160812 +k1,13034:30424273,15722523:160812 +k1,13034:32583029,15722523:0 +) +(1,13035:6630773,16564011:25952256,513147,134348 +k1,13034:7863901,16564011:239602 +k1,13034:10662029,16564011:239602 +k1,13034:14182363,16564011:239602 +(1,13034:14182363,16564011:0,459977,122846 +r1,13034:17002612,16564011:2820249,582823,122846 +k1,13034:14182363,16564011:-2820249 +) +(1,13034:14182363,16564011:2820249,459977,122846 +k1,13034:14182363,16564011:3277 +h1,13034:16999335,16564011:0,411205,112570 +) +k1,13034:17415884,16564011:239602 +k1,13034:18674571,16564011:239602 +k1,13034:20982489,16564011:239602 +k1,13034:22735317,16564011:239602 +k1,13034:23922570,16564011:239602 +k1,13034:27773206,16564011:239602 +k1,13034:28628846,16564011:239602 +k1,13034:29887533,16564011:239602 +k1,13034:32583029,16564011:0 +) +(1,13035:6630773,17405499:25952256,513147,126483 +g1,13034:9912160,17405499 +g1,13034:11641655,17405499 +g1,13034:13216485,17405499 +g1,13034:15396867,17405499 +g1,13034:16615181,17405499 +g1,13034:18882726,17405499 +g1,13034:19697993,17405499 +g1,13034:21100463,17405499 +k1,13035:32583029,17405499:10315370 +g1,13035:32583029,17405499 +) +(1,13037:6630773,18246987:25952256,505283,126483 +h1,13036:6630773,18246987:983040,0,0 +k1,13036:10043778,18246987:153900 +k1,13036:11066031,18246987:153901 +k1,13036:12497228,18246987:153900 +k1,13036:13670213,18246987:153900 +k1,13036:15892430,18246987:153901 +k1,13036:16662368,18246987:153900 +k1,13036:17172128,18246987:153900 +k1,13036:19495271,18246987:153901 +k1,13036:21100138,18246987:153900 +k1,13036:22647989,18246987:153900 +k1,13036:23820975,18246987:153901 +k1,13036:28046627,18246987:153900 +k1,13036:32583029,18246987:0 +) +(1,13037:6630773,19088475:25952256,513147,126483 +k1,13036:7626374,19088475:186231 +k1,13036:8831691,19088475:186232 +k1,13036:10624865,19088475:186231 +k1,13036:12186042,19088475:186232 +k1,13036:13058435,19088475:186231 +k1,13036:13600526,19088475:186231 +k1,13036:15629630,19088475:186232 +k1,13036:16475153,19088475:186231 +k1,13036:17680469,19088475:186231 +k1,13036:19606027,19088475:186232 +k1,13036:20408296,19088475:186231 +k1,13036:22479999,19088475:186232 +k1,13036:23685315,19088475:186231 +k1,13036:25759638,19088475:186231 +k1,13036:26937430,19088475:186232 +k1,13036:29089086,19088475:186231 +k1,13036:29926746,19088475:186232 +k1,13036:31132062,19088475:186231 +k1,13036:32583029,19088475:0 +) +(1,13037:6630773,19929963:25952256,505283,126483 +k1,13036:7446819,19929963:188211 +k1,13036:8838271,19929963:188211 +k1,13036:10567233,19929963:188211 +k1,13036:11623797,19929963:188212 +k1,13036:12746551,19929963:188211 +(1,13036:12746551,19929963:0,459977,115847 +r1,13036:14159952,19929963:1413401,575824,115847 +k1,13036:12746551,19929963:-1413401 +) +(1,13036:12746551,19929963:1413401,459977,115847 +k1,13036:12746551,19929963:3277 +h1,13036:14156675,19929963:0,411205,112570 +) +k1,13036:14521833,19929963:188211 +(1,13036:14521833,19929963:0,452978,115847 +r1,13036:16286946,19929963:1765113,568825,115847 +k1,13036:14521833,19929963:-1765113 +) +(1,13036:14521833,19929963:1765113,452978,115847 +k1,13036:14521833,19929963:3277 +h1,13036:16283669,19929963:0,411205,112570 +) +k1,13036:16475157,19929963:188211 +k1,13036:17854813,19929963:188211 +(1,13036:17854813,19929963:0,452978,115847 +r1,13036:19619926,19929963:1765113,568825,115847 +k1,13036:17854813,19929963:-1765113 +) +(1,13036:17854813,19929963:1765113,452978,115847 +k1,13036:17854813,19929963:3277 +h1,13036:19616649,19929963:0,411205,112570 +) +k1,13036:19808137,19929963:188211 +k1,13036:24578625,19929963:188211 +k1,13036:25418265,19929963:188212 +k1,13036:28868203,19929963:188211 +k1,13036:30128583,19929963:188211 +k1,13036:30932832,19929963:188211 +k1,13036:32583029,19929963:0 +) +(1,13037:6630773,20771451:25952256,513147,134348 +k1,13036:9547889,20771451:230795 +k1,13036:11168048,20771451:230796 +k1,13036:12837358,20771451:230795 +k1,13036:15875715,20771451:230795 +k1,13036:17745566,20771451:230796 +k1,13036:18627789,20771451:230795 +k1,13036:21082877,20771451:230796 +k1,13036:21929710,20771451:230795 +(1,13036:21929710,20771451:0,452978,115847 +r1,13036:23343111,20771451:1413401,568825,115847 +k1,13036:21929710,20771451:-1413401 +) +(1,13036:21929710,20771451:1413401,452978,115847 +k1,13036:21929710,20771451:3277 +h1,13036:23339834,20771451:0,411205,112570 +) +k1,13036:23573906,20771451:230795 +k1,13036:24908984,20771451:230796 +k1,13036:25887545,20771451:230795 +k1,13036:27631566,20771451:230795 +k1,13036:28810013,20771451:230796 +k1,13036:31923737,20771451:230795 +k1,13036:32583029,20771451:0 +) +(1,13037:6630773,21612939:25952256,505283,134348 +k1,13036:11104297,21612939:228102 +k1,13036:12994393,21612939:228103 +k1,13036:15410087,21612939:228102 +k1,13036:16810628,21612939:228102 +k1,13036:18316028,21612939:228103 +k1,13036:20432222,21612939:228102 +k1,13036:22054276,21612939:228103 +(1,13036:22054276,21612939:0,452978,115847 +r1,13036:26984796,21612939:4930520,568825,115847 +k1,13036:22054276,21612939:-4930520 +) +(1,13036:22054276,21612939:4930520,452978,115847 +k1,13036:22054276,21612939:3277 +h1,13036:26981519,21612939:0,411205,112570 +) +k1,13036:27212898,21612939:228102 +k1,13036:29452955,21612939:228102 +k1,13036:30426202,21612939:228103 +k1,13036:31305732,21612939:228102 +k1,13036:32583029,21612939:0 +) +(1,13037:6630773,22454427:25952256,513147,134348 +g1,13036:7849087,22454427 +g1,13036:9786331,22454427 +g1,13036:11177005,22454427 +g1,13036:12395319,22454427 +g1,13036:14201491,22454427 +g1,13036:15775665,22454427 +g1,13036:17710287,22454427 +g1,13036:20671859,22454427 +k1,13037:32583029,22454427:9791080 +g1,13037:32583029,22454427 +) +v1,13039:6630773,23644893:0,393216,0 +(1,13049:6630773,27963349:25952256,4711672,196608 +g1,13049:6630773,27963349 +g1,13049:6630773,27963349 +g1,13049:6434165,27963349 +(1,13049:6434165,27963349:0,4711672,196608 +r1,13049:32779637,27963349:26345472,4908280,196608 +k1,13049:6434165,27963349:-26345472 +) +(1,13049:6434165,27963349:26345472,4711672,196608 +[1,13049:6630773,27963349:25952256,4515064,0 +(1,13041:6630773,23858803:25952256,410518,107478 +(1,13040:6630773,23858803:0,0,0 +g1,13040:6630773,23858803 +g1,13040:6630773,23858803 +g1,13040:6303093,23858803 +(1,13040:6303093,23858803:0,0,0 +) +g1,13040:6630773,23858803 +) +k1,13041:6630773,23858803:0 +g1,13041:10424522,23858803 +g1,13041:11056814,23858803 +g1,13041:14534417,23858803 +g1,13041:16431292,23858803 +g1,13041:17063584,23858803 +g1,13041:18012022,23858803 +g1,13041:18644314,23858803 +g1,13041:19276606,23858803 +g1,13041:21805772,23858803 +h1,13041:22121918,23858803:0,0,0 +k1,13041:32583029,23858803:10461111 +g1,13041:32583029,23858803 +) +(1,13042:6630773,24524981:25952256,410518,107478 +h1,13042:6630773,24524981:0,0,0 +g1,13042:6946919,24524981 +g1,13042:7263065,24524981 +g1,13042:13269833,24524981 +g1,13042:13902125,24524981 +g1,13042:16431291,24524981 +g1,13042:18012020,24524981 +g1,13042:18644312,24524981 +k1,13042:18644312,24524981:0 +h1,13042:21173478,24524981:0,0,0 +k1,13042:32583029,24524981:11409551 +g1,13042:32583029,24524981 +) +(1,13043:6630773,25191159:25952256,410518,82312 +h1,13043:6630773,25191159:0,0,0 +g1,13043:6946919,25191159 +g1,13043:7263065,25191159 +g1,13043:7579211,25191159 +g1,13043:7895357,25191159 +g1,13043:8211503,25191159 +g1,13043:8527649,25191159 +g1,13043:8843795,25191159 +g1,13043:9159941,25191159 +g1,13043:9476087,25191159 +g1,13043:9792233,25191159 +g1,13043:10108379,25191159 +g1,13043:10424525,25191159 +g1,13043:10740671,25191159 +g1,13043:11056817,25191159 +g1,13043:11372963,25191159 +g1,13043:12953692,25191159 +g1,13043:13585984,25191159 +g1,13043:16431296,25191159 +g1,13043:18328170,25191159 +g1,13043:18960462,25191159 +g1,13043:21805774,25191159 +h1,13043:22121920,25191159:0,0,0 +k1,13043:32583029,25191159:10461109 +g1,13043:32583029,25191159 +) +(1,13044:6630773,25857337:25952256,410518,101187 +h1,13044:6630773,25857337:0,0,0 +g1,13044:6946919,25857337 +g1,13044:7263065,25857337 +g1,13044:14218270,25857337 +g1,13044:14850562,25857337 +k1,13044:14850562,25857337:0 +h1,13044:19592748,25857337:0,0,0 +k1,13044:32583029,25857337:12990281 +g1,13044:32583029,25857337 +) +(1,13045:6630773,26523515:25952256,404226,107478 +h1,13045:6630773,26523515:0,0,0 +g1,13045:6946919,26523515 +g1,13045:7263065,26523515 +g1,13045:7579211,26523515 +g1,13045:7895357,26523515 +g1,13045:8211503,26523515 +g1,13045:8527649,26523515 +g1,13045:8843795,26523515 +g1,13045:9159941,26523515 +g1,13045:9476087,26523515 +g1,13045:9792233,26523515 +g1,13045:10108379,26523515 +g1,13045:10424525,26523515 +g1,13045:10740671,26523515 +g1,13045:11056817,26523515 +g1,13045:11372963,26523515 +g1,13045:12953692,26523515 +g1,13045:13585984,26523515 +k1,13045:13585984,26523515:0 +h1,13045:17063587,26523515:0,0,0 +k1,13045:32583029,26523515:15519442 +g1,13045:32583029,26523515 +) +(1,13046:6630773,27189693:25952256,404226,82312 +h1,13046:6630773,27189693:0,0,0 +g1,13046:6946919,27189693 +g1,13046:7263065,27189693 +g1,13046:7579211,27189693 +g1,13046:7895357,27189693 +g1,13046:8211503,27189693 +g1,13046:8527649,27189693 +g1,13046:8843795,27189693 +g1,13046:9159941,27189693 +g1,13046:9476087,27189693 +g1,13046:9792233,27189693 +g1,13046:10108379,27189693 +g1,13046:10424525,27189693 +g1,13046:10740671,27189693 +g1,13046:11056817,27189693 +g1,13046:11372963,27189693 +g1,13046:13269837,27189693 +g1,13046:13902129,27189693 +g1,13046:15482858,27189693 +g1,13046:17063587,27189693 +g1,13046:17695879,27189693 +g1,13046:18644317,27189693 +g1,13046:20541191,27189693 +g1,13046:21173483,27189693 +g1,13046:23386503,27189693 +h1,13046:23702649,27189693:0,0,0 +k1,13046:32583029,27189693:8880380 +g1,13046:32583029,27189693 +) +(1,13047:6630773,27855871:25952256,404226,107478 +h1,13047:6630773,27855871:0,0,0 +g1,13047:6946919,27855871 +g1,13047:7263065,27855871 +g1,13047:12321397,27855871 +g1,13047:12953689,27855871 +g1,13047:13902127,27855871 +g1,13047:15799001,27855871 +g1,13047:16431293,27855871 +h1,13047:17695876,27855871:0,0,0 +k1,13047:32583029,27855871:14887153 +g1,13047:32583029,27855871 +) +] +) +g1,13049:32583029,27963349 +g1,13049:6630773,27963349 +g1,13049:6630773,27963349 +g1,13049:32583029,27963349 +g1,13049:32583029,27963349 +) +h1,13049:6630773,28159957:0,0,0 +(1,13053:6630773,29525733:25952256,505283,134348 +h1,13052:6630773,29525733:983040,0,0 +k1,13052:8801980,29525733:234618 +k1,13052:10140880,29525733:234618 +k1,13052:11652795,29525733:234618 +k1,13052:14129399,29525733:234617 +k1,13052:15046902,29525733:234618 +k1,13052:16983490,29525733:234618 +k1,13052:20899921,29525733:234618 +k1,13052:21896067,29525733:234618 +k1,13052:24023365,29525733:234618 +k1,13052:26843378,29525733:234618 +k1,13052:27729423,29525733:234617 +(1,13052:27729423,29525733:0,414482,115847 +r1,13052:28087689,29525733:358266,530329,115847 +k1,13052:27729423,29525733:-358266 +) +(1,13052:27729423,29525733:358266,414482,115847 +k1,13052:27729423,29525733:3277 +h1,13052:28084412,29525733:0,411205,112570 +) +k1,13052:28322307,29525733:234618 +(1,13052:28529401,29525733:0,452978,115847 +r1,13052:30294514,29525733:1765113,568825,115847 +k1,13052:28529401,29525733:-1765113 +) +(1,13052:28529401,29525733:1765113,452978,115847 +k1,13052:28529401,29525733:3277 +h1,13052:30291237,29525733:0,411205,112570 +) +k1,13052:30529132,29525733:234618 +k1,13052:31379788,29525733:234618 +k1,13052:32583029,29525733:0 +) +(1,13053:6630773,30367221:25952256,505283,134348 +k1,13052:9652331,30367221:153047 +k1,13052:10491540,30367221:153047 +k1,13052:13357778,30367221:153047 +k1,13052:14272354,30367221:153048 +k1,13052:16852855,30367221:153047 +(1,13052:16852855,30367221:0,452978,115847 +r1,13052:18617968,30367221:1765113,568825,115847 +k1,13052:16852855,30367221:-1765113 +) +(1,13052:16852855,30367221:1765113,452978,115847 +k1,13052:16852855,30367221:3277 +h1,13052:18614691,30367221:0,411205,112570 +) +k1,13052:18771015,30367221:153047 +k1,13052:19610224,30367221:153047 +k1,13052:20533974,30367221:153047 +k1,13052:23759349,30367221:153047 +k1,13052:24563824,30367221:153047 +(1,13052:24563824,30367221:0,414482,122846 +r1,13052:25977225,30367221:1413401,537328,122846 +k1,13052:24563824,30367221:-1413401 +) +(1,13052:24563824,30367221:1413401,414482,122846 +k1,13052:24563824,30367221:3277 +h1,13052:25973948,30367221:0,411205,112570 +) +k1,13052:26303942,30367221:153047 +k1,13052:27084825,30367221:153048 +k1,13052:28441113,30367221:153047 +k1,13052:29832135,30367221:153047 +k1,13052:30853534,30367221:153047 +k1,13052:32583029,30367221:0 +) +(1,13053:6630773,31208709:25952256,505283,126483 +g1,13052:7849087,31208709 +g1,13052:9578582,31208709 +g1,13052:10429239,31208709 +g1,13052:13416370,31208709 +g1,13052:14634684,31208709 +g1,13052:18342055,31208709 +g1,13052:19157322,31208709 +k1,13053:32583029,31208709:10666641 +g1,13053:32583029,31208709 +) +v1,13055:6630773,32399175:0,393216,0 +(1,13062:6630773,34701987:25952256,2696028,196608 +g1,13062:6630773,34701987 +g1,13062:6630773,34701987 +g1,13062:6434165,34701987 +(1,13062:6434165,34701987:0,2696028,196608 +r1,13062:32779637,34701987:26345472,2892636,196608 +k1,13062:6434165,34701987:-26345472 +) +(1,13062:6434165,34701987:26345472,2696028,196608 +[1,13062:6630773,34701987:25952256,2499420,0 +(1,13057:6630773,32606793:25952256,404226,107478 +(1,13056:6630773,32606793:0,0,0 +g1,13056:6630773,32606793 +g1,13056:6630773,32606793 +g1,13056:6303093,32606793 +(1,13056:6303093,32606793:0,0,0 +) +g1,13056:6630773,32606793 +) +k1,13057:6630773,32606793:0 +g1,13057:10424522,32606793 +g1,13057:13902125,32606793 +g1,13057:15798999,32606793 +h1,13057:16115145,32606793:0,0,0 +k1,13057:32583029,32606793:16467884 +g1,13057:32583029,32606793 +) +(1,13058:6630773,33272971:25952256,410518,107478 +h1,13058:6630773,33272971:0,0,0 +g1,13058:6946919,33272971 +g1,13058:7263065,33272971 +g1,13058:12953688,33272971 +g1,13058:13585980,33272971 +g1,13058:15799000,33272971 +g1,13058:17695874,33272971 +g1,13058:18328166,33272971 +h1,13058:19908894,33272971:0,0,0 +k1,13058:32583029,33272971:12674135 +g1,13058:32583029,33272971 +) +(1,13062:6630773,34594509:25952256,410518,107478 +g1,13062:7579210,34594509 +g1,13062:10424521,34594509 +g1,13062:12953687,34594509 +g1,13062:13902124,34594509 +g1,13062:17695872,34594509 +g1,13062:18960455,34594509 +g1,13062:20857329,34594509 +k1,13062:32583029,34594509:9196535 +g1,13062:32583029,34594509 +) +] +) +g1,13062:32583029,34701987 +g1,13062:6630773,34701987 +g1,13062:6630773,34701987 +g1,13062:32583029,34701987 +g1,13062:32583029,34701987 +) +h1,13062:6630773,34898595:0,0,0 +(1,13065:6630773,44551108:25952256,9062689,0 +k1,13065:10523651,44551108:3892878 +h1,13064:10523651,44551108:0,0,0 +(1,13064:10523651,44551108:18166500,9062689,0 +(1,13064:10523651,44551108:18167381,9062712,0 +(1,13064:10523651,44551108:18167381,9062712,0 +(1,13064:10523651,44551108:0,9062712,0 +(1,13064:10523651,44551108:0,14155776,0 +(1,13064:10523651,44551108:28377088,14155776,0 +) +k1,13064:10523651,44551108:-28377088 +) +) +g1,13064:28691032,44551108 +) +) +) +g1,13065:28690151,44551108 +k1,13065:32583029,44551108:3892878 +) +(1,13073:6630773,45392596:25952256,505283,126483 +h1,13072:6630773,45392596:983040,0,0 +k1,13072:8967381,45392596:400019 +k1,13072:10471681,45392596:400018 +k1,13072:12672629,45392596:400019 +k1,13072:14269990,45392596:400018 +k1,13072:16276952,45392596:400019 +k1,13072:18051916,45392596:400019 +k1,13072:19103362,45392596:400018 +k1,13072:20522466,45392596:400019 +k1,13072:23305373,45392596:400018 +k1,13072:25156359,45392596:400019 +k1,13072:26509926,45392596:400018 +k1,13072:28002430,45392596:400019 +(1,13072:28002430,45392596:0,452978,115847 +r1,13072:29415831,45392596:1413401,568825,115847 +k1,13072:28002430,45392596:-1413401 +) +(1,13072:28002430,45392596:1413401,452978,115847 +k1,13072:28002430,45392596:3277 +h1,13072:29412554,45392596:0,411205,112570 +) +k1,13072:29815850,45392596:400019 +k1,13072:30867296,45392596:400018 +k1,13072:32583029,45392596:0 +) +] +(1,13075:32583029,45706769:0,0,0 +g1,13075:32583029,45706769 +) +) +] +(1,13075:6630773,47279633:25952256,0,0 +h1,13075:6630773,47279633:25952256,0,0 +) +] +h1,13075:4262630,4025873:0,0,0 +] +!27019 +}251 +Input:1825:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1826:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1827:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1828:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1829:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1830:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1831:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1832:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1833:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1834:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1835:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1836:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1837:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 +{252 +[1,13138:4262630,47279633:28320399,43253760,0 +(1,13138:4262630,4025873:0,0,0 +[1,13138:-473657,4025873:25952256,0,0 +(1,13138:-473657,-710414:25952256,0,0 +h1,13138:-473657,-710414:0,0,0 +(1,13138:-473657,-710414:0,0,0 +(1,13138:-473657,-710414:0,0,0 +g1,13138:-473657,-710414 +(1,13138:-473657,-710414:65781,0,65781 +g1,13138:-407876,-710414 +[1,13138:-407876,-644633:0,0,0 ] ) -k1,13114:-473657,-710414:-65781 +k1,13138:-473657,-710414:-65781 ) ) -k1,13114:25478599,-710414:25952256 -g1,13114:25478599,-710414 +k1,13138:25478599,-710414:25952256 +g1,13138:25478599,-710414 ) ] ) -[1,13114:6630773,47279633:25952256,43253760,0 -[1,13114:6630773,4812305:25952256,786432,0 -(1,13114:6630773,4812305:25952256,513147,134348 -(1,13114:6630773,4812305:25952256,513147,134348 -g1,13114:3078558,4812305 -[1,13114:3078558,4812305:0,0,0 -(1,13114:3078558,2439708:0,1703936,0 -k1,13114:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13114:2537886,2439708:1179648,16384,0 +[1,13138:6630773,47279633:25952256,43253760,0 +[1,13138:6630773,4812305:25952256,786432,0 +(1,13138:6630773,4812305:25952256,485622,11795 +(1,13138:6630773,4812305:25952256,485622,11795 +g1,13138:3078558,4812305 +[1,13138:3078558,4812305:0,0,0 +(1,13138:3078558,2439708:0,1703936,0 +k1,13138:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13138:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13114:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13138:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13114:3078558,4812305:0,0,0 -(1,13114:3078558,2439708:0,1703936,0 -g1,13114:29030814,2439708 -g1,13114:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13114:36151628,1915420:16384,1179648,0 +[1,13138:3078558,4812305:0,0,0 +(1,13138:3078558,2439708:0,1703936,0 +g1,13138:29030814,2439708 +g1,13138:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13138:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13114:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13138:37855564,2439708:1179648,16384,0 ) ) -k1,13114:3078556,2439708:-34777008 +k1,13138:3078556,2439708:-34777008 ) ] -[1,13114:3078558,4812305:0,0,0 -(1,13114:3078558,49800853:0,16384,2228224 -k1,13114:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13114:2537886,49800853:1179648,16384,0 +[1,13138:3078558,4812305:0,0,0 +(1,13138:3078558,49800853:0,16384,2228224 +k1,13138:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13138:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13114:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13138:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13114:3078558,4812305:0,0,0 -(1,13114:3078558,49800853:0,16384,2228224 -g1,13114:29030814,49800853 -g1,13114:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13114:36151628,51504789:16384,1179648,0 +[1,13138:3078558,4812305:0,0,0 +(1,13138:3078558,49800853:0,16384,2228224 +g1,13138:29030814,49800853 +g1,13138:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13138:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13114:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13138:37855564,49800853:1179648,16384,0 ) ) -k1,13114:3078556,49800853:-34777008 +k1,13138:3078556,49800853:-34777008 ) ] -g1,13114:6630773,4812305 -k1,13114:25712890,4812305:17886740 -g1,13114:29057847,4812305 -g1,13114:29873114,4812305 -) -) -] -[1,13114:6630773,45706769:25952256,40108032,0 -(1,13114:6630773,45706769:25952256,40108032,0 -(1,13114:6630773,45706769:0,0,0 -g1,13114:6630773,45706769 +g1,13138:6630773,4812305 +g1,13138:6630773,4812305 +g1,13138:9560887,4812305 +k1,13138:31387651,4812305:21826764 ) -[1,13114:6630773,45706769:25952256,40108032,0 -v1,13051:6630773,6254097:0,393216,0 -(1,13056:6630773,7216497:25952256,1355616,196608 -g1,13056:6630773,7216497 -g1,13056:6630773,7216497 -g1,13056:6434165,7216497 -(1,13056:6434165,7216497:0,1355616,196608 -r1,13056:32779637,7216497:26345472,1552224,196608 -k1,13056:6434165,7216497:-26345472 ) -(1,13056:6434165,7216497:26345472,1355616,196608 -[1,13056:6630773,7216497:25952256,1159008,0 -(1,13053:6630773,6468007:25952256,410518,107478 -(1,13052:6630773,6468007:0,0,0 -g1,13052:6630773,6468007 -g1,13052:6630773,6468007 -g1,13052:6303093,6468007 -(1,13052:6303093,6468007:0,0,0 -) -g1,13052:6630773,6468007 -) -g1,13053:6946919,6468007 -g1,13053:7263065,6468007 -g1,13053:12953688,6468007 -g1,13053:13585980,6468007 -g1,13053:17695874,6468007 -g1,13053:20541185,6468007 -g1,13053:21173477,6468007 -k1,13053:21173477,6468007:0 -h1,13053:24334934,6468007:0,0,0 -k1,13053:32583029,6468007:8248095 -g1,13053:32583029,6468007 -) -(1,13054:6630773,7134185:25952256,404226,82312 -h1,13054:6630773,7134185:0,0,0 -g1,13054:6946919,7134185 -g1,13054:7263065,7134185 -g1,13054:7579211,7134185 -g1,13054:7895357,7134185 -g1,13054:8211503,7134185 -g1,13054:8527649,7134185 -g1,13054:8843795,7134185 -g1,13054:9159941,7134185 -g1,13054:9476087,7134185 -g1,13054:9792233,7134185 -g1,13054:10108379,7134185 -g1,13054:10424525,7134185 -g1,13054:10740671,7134185 -g1,13054:11056817,7134185 -g1,13054:11372963,7134185 -g1,13054:12953692,7134185 -g1,13054:13585984,7134185 -g1,13054:14534422,7134185 -g1,13054:16431296,7134185 -g1,13054:17063588,7134185 -h1,13054:18960462,7134185:0,0,0 -k1,13054:32583029,7134185:13622567 -g1,13054:32583029,7134185 -) -] -) -g1,13056:32583029,7216497 -g1,13056:6630773,7216497 -g1,13056:6630773,7216497 -g1,13056:32583029,7216497 -g1,13056:32583029,7216497 -) -h1,13056:6630773,7413105:0,0,0 -(1,13060:6630773,8778881:25952256,513147,134348 -h1,13059:6630773,8778881:983040,0,0 -k1,13059:10232518,8778881:236471 -(1,13059:10232518,8778881:0,452978,115847 -r1,13059:13756190,8778881:3523672,568825,115847 -k1,13059:10232518,8778881:-3523672 -) -(1,13059:10232518,8778881:3523672,452978,115847 -k1,13059:10232518,8778881:3277 -h1,13059:13752913,8778881:0,411205,112570 -) -k1,13059:13992661,8778881:236471 -k1,13059:16556314,8778881:236470 -k1,13059:17459941,8778881:236471 -(1,13059:17459941,8778881:0,452978,122846 -r1,13059:21335325,8778881:3875384,575824,122846 -k1,13059:17459941,8778881:-3875384 -) -(1,13059:17459941,8778881:3875384,452978,122846 -k1,13059:17459941,8778881:3277 -h1,13059:21332048,8778881:0,411205,112570 -) -k1,13059:21571796,8778881:236471 -k1,13059:22459695,8778881:236471 -(1,13059:22459695,8778881:0,414482,122846 -r1,13059:23873096,8778881:1413401,537328,122846 -k1,13059:22459695,8778881:-1413401 -) -(1,13059:22459695,8778881:1413401,414482,122846 -k1,13059:22459695,8778881:3277 -h1,13059:23869819,8778881:0,411205,112570 -) -k1,13059:24109567,8778881:236471 -k1,13059:26519211,8778881:236470 -k1,13059:27371720,8778881:236471 -k1,13059:30959702,8778881:236471 -k1,13060:32583029,8778881:0 -) -(1,13060:6630773,9620369:25952256,513147,134348 -k1,13059:8331994,9620369:212243 -k1,13059:10151180,9620369:212243 -k1,13059:11912039,9620369:212243 -k1,13059:15058983,9620369:212242 -k1,13059:16474467,9620369:212243 -k1,13059:18072796,9620369:212243 -k1,13059:18944331,9620369:212243 -k1,13059:20763517,9620369:212243 -k1,13059:22020404,9620369:212243 -k1,13059:23333652,9620369:212243 -k1,13059:25055844,9620369:212242 -k1,13059:28242111,9620369:212243 -k1,13059:29140516,9620369:212243 -k1,13059:31540351,9620369:212243 -k1,13060:32583029,9620369:0 -) -(1,13060:6630773,10461857:25952256,513147,126483 -k1,13059:9980424,10461857:240623 -k1,13059:12324098,10461857:240624 -k1,13059:13216149,10461857:240623 -k1,13059:15064371,10461857:240624 -k1,13059:17230442,10461857:240623 -k1,13059:19445914,10461857:240872 -k1,13059:20640086,10461857:240623 -k1,13059:21984991,10461857:240623 -k1,13059:23318100,10461857:240624 -(1,13059:23318100,10461857:0,452978,115847 -r1,13059:25083213,10461857:1765113,568825,115847 -k1,13059:23318100,10461857:-1765113 -) -(1,13059:23318100,10461857:1765113,452978,115847 -k1,13059:23318100,10461857:3277 -h1,13059:25079936,10461857:0,411205,112570 -) -k1,13059:25323836,10461857:240623 -k1,13059:26215888,10461857:240624 -k1,13059:28608713,10461857:240623 -k1,13059:29868422,10461857:240624 -k1,13059:31923737,10461857:240623 -k1,13059:32583029,10461857:0 -) -(1,13060:6630773,11303345:25952256,513147,126483 -g1,13059:7849087,11303345 -g1,13059:9488797,11303345 -g1,13059:10300788,11303345 -g1,13059:11519102,11303345 -g1,13059:13231557,11303345 -g1,13059:14090078,11303345 -g1,13059:15308392,11303345 -g1,13059:17114564,11303345 -k1,13060:32583029,11303345:13919849 -g1,13060:32583029,11303345 -) -(1,13062:6630773,12144833:25952256,513147,126483 -h1,13061:6630773,12144833:983040,0,0 -k1,13061:8300126,12144833:208556 -k1,13061:9377033,12144833:208555 -k1,13061:11060804,12144833:208556 -k1,13061:13603751,12144833:208555 -k1,13061:17041266,12144833:208556 -k1,13061:19260466,12144833:208555 -k1,13061:20416673,12144833:208556 -k1,13061:21644313,12144833:208555 -k1,13061:25534682,12144833:208556 -k1,13061:26611589,12144833:208555 -k1,13061:27924427,12144833:208556 -k1,13061:29331636,12144833:208555 -k1,13061:31563944,12144833:208556 -k1,13061:32583029,12144833:0 -) -(1,13062:6630773,12986321:25952256,505283,134348 -k1,13061:8563164,12986321:278918 -k1,13061:10449681,12986321:278919 -k1,13061:11490127,12986321:278918 -k1,13061:14576607,12986321:278918 -k1,13061:17697167,12986321:278919 -k1,13061:18627513,12986321:278918 -k1,13061:19925516,12986321:278918 -k1,13061:23268898,12986321:278918 -k1,13061:26260352,12986321:278919 -k1,13061:27300798,12986321:278918 -(1,13061:27300798,12986321:0,452978,122846 -r1,13061:32583029,12986321:5282231,575824,122846 -k1,13061:27300798,12986321:-5282231 -) -(1,13061:27300798,12986321:5282231,452978,122846 -k1,13061:27300798,12986321:3277 -h1,13061:32579752,12986321:0,411205,112570 -) -k1,13061:32583029,12986321:0 -) -(1,13062:6630773,13827809:25952256,505283,122846 -g1,13061:8021447,13827809 -(1,13061:8021447,13827809:0,452978,122846 -r1,13061:13655390,13827809:5633943,575824,122846 -k1,13061:8021447,13827809:-5633943 -) -(1,13061:8021447,13827809:5633943,452978,122846 -k1,13061:8021447,13827809:3277 -h1,13061:13652113,13827809:0,411205,112570 -) -g1,13061:14028289,13827809 -(1,13061:14028289,13827809:0,414482,115847 -r1,13061:14386555,13827809:358266,530329,115847 -k1,13061:14028289,13827809:-358266 -) -(1,13061:14028289,13827809:358266,414482,115847 -k1,13061:14028289,13827809:3277 -h1,13061:14383278,13827809:0,411205,112570 -) -g1,13061:14759454,13827809 -(1,13061:14759454,13827809:0,414482,115847 -r1,13061:15117720,13827809:358266,530329,115847 -k1,13061:14759454,13827809:-358266 -) -(1,13061:14759454,13827809:358266,414482,115847 -k1,13061:14759454,13827809:3277 -h1,13061:15114443,13827809:0,411205,112570 -) -g1,13061:15490619,13827809 -(1,13061:15490619,13827809:0,414482,115847 -r1,13061:16904020,13827809:1413401,530329,115847 -k1,13061:15490619,13827809:-1413401 -) -(1,13061:15490619,13827809:1413401,414482,115847 -k1,13061:15490619,13827809:3277 -h1,13061:16900743,13827809:0,411205,112570 -) -g1,13061:17103249,13827809 -g1,13061:18493923,13827809 -(1,13061:18493923,13827809:0,452978,115847 -r1,13061:19907324,13827809:1413401,568825,115847 -k1,13061:18493923,13827809:-1413401 -) -(1,13061:18493923,13827809:1413401,452978,115847 -k1,13061:18493923,13827809:3277 -h1,13061:19904047,13827809:0,411205,112570 -) -k1,13062:32583029,13827809:12502035 -g1,13062:32583029,13827809 -) -v1,13064:6630773,15193585:0,393216,0 -(1,13074:6630773,21153904:25952256,6353535,616038 -g1,13074:6630773,21153904 -(1,13074:6630773,21153904:25952256,6353535,616038 -(1,13074:6630773,21769942:25952256,6969573,0 -[1,13074:6630773,21769942:25952256,6969573,0 -(1,13074:6630773,21743728:25952256,6917145,0 -r1,13074:6656987,21743728:26214,6917145,0 -[1,13074:6656987,21743728:25899828,6917145,0 -(1,13074:6656987,21153904:25899828,5737497,0 -[1,13074:7246811,21153904:24720180,5737497,0 -(1,13065:7246811,16578292:24720180,1161885,196608 -(1,13064:7246811,16578292:0,1161885,196608 -r1,13074:8794447,16578292:1547636,1358493,196608 -k1,13064:7246811,16578292:-1547636 -) -(1,13064:7246811,16578292:1547636,1161885,196608 -) -k1,13064:8969362,16578292:174915 -k1,13064:10340965,16578292:174916 -k1,13064:13422402,16578292:174915 -k1,13064:15681362,16578292:174915 -k1,13064:16387775,16578292:174916 -k1,13064:17848506,16578292:174915 -k1,13064:19737187,16578292:174915 -k1,13064:20598265,16578292:174916 -k1,13064:21641532,16578292:174915 -k1,13064:22920729,16578292:174915 -k1,13064:24292988,16578292:174916 -k1,13064:25486988,16578292:174915 -k1,13064:28669350,16578292:174915 -k1,13064:29495694,16578292:174916 -k1,13064:30689694,16578292:174915 -k1,13064:31966991,16578292:0 -) -(1,13065:7246811,17419780:24720180,505283,134348 -k1,13064:9432174,17419780:225837 -k1,13064:10849456,17419780:225837 -k1,13064:12512498,17419780:225837 -k1,13064:13757420,17419780:225837 -k1,13064:16665646,17419780:225837 -k1,13064:17577645,17419780:225837 -k1,13064:18574185,17419780:225837 -k1,13064:21872350,17419780:225837 -k1,13064:22749615,17419780:225837 -k1,13064:23607219,17419780:225837 -k1,13064:24460891,17419780:225837 -k1,13064:27019810,17419780:225837 -k1,13064:27861685,17419780:225837 -k1,13064:29290763,17419780:225837 -k1,13064:31098639,17419780:225837 -k1,13064:31966991,17419780:0 -) -(1,13065:7246811,18261268:24720180,513147,126483 -g1,13064:9175535,18261268 -g1,13064:10578005,18261268 -g1,13064:14164135,18261268 -g1,13064:16447409,18261268 -g1,13064:17594289,18261268 -g1,13064:18812603,18261268 -g1,13064:20437895,18261268 -g1,13064:21296416,18261268 -k1,13065:31966991,18261268:6778392 -g1,13065:31966991,18261268 -) -v1,13067:7246811,19451734:0,393216,0 -(1,13072:7246811,20433008:24720180,1374490,196608 -g1,13072:7246811,20433008 -g1,13072:7246811,20433008 -g1,13072:7050203,20433008 -(1,13072:7050203,20433008:0,1374490,196608 -r1,13074:32163599,20433008:25113396,1571098,196608 -k1,13072:7050203,20433008:-25113396 -) -(1,13072:7050203,20433008:25113396,1374490,196608 -[1,13072:7246811,20433008:24720180,1177882,0 -(1,13069:7246811,19659352:24720180,404226,107478 -(1,13068:7246811,19659352:0,0,0 -g1,13068:7246811,19659352 -g1,13068:7246811,19659352 -g1,13068:6919131,19659352 -(1,13068:6919131,19659352:0,0,0 -) -g1,13068:7246811,19659352 -) -k1,13069:7246811,19659352:0 -g1,13069:11040560,19659352 -g1,13069:14518163,19659352 -g1,13069:16415037,19659352 -h1,13069:16731183,19659352:0,0,0 -k1,13069:31966991,19659352:15235808 -g1,13069:31966991,19659352 -) -(1,13070:7246811,20325530:24720180,410518,107478 -h1,13070:7246811,20325530:0,0,0 -g1,13070:7562957,20325530 -g1,13070:7879103,20325530 -g1,13070:12305143,20325530 -g1,13070:12937435,20325530 -g1,13070:16415038,20325530 -g1,13070:18311912,20325530 -g1,13070:18944204,20325530 -h1,13070:20524932,20325530:0,0,0 -k1,13070:31966991,20325530:11442059 -g1,13070:31966991,20325530 -) -] -) -g1,13072:31966991,20433008 -g1,13072:7246811,20433008 -g1,13072:7246811,20433008 -g1,13072:31966991,20433008 -g1,13072:31966991,20433008 -) -h1,13072:7246811,20629616:0,0,0 -] -) -] -r1,13074:32583029,21743728:26214,6917145,0 -) -] -) -) -g1,13074:32583029,21153904 -) -h1,13074:6630773,21769942:0,0,0 -(1,13078:6630773,24385490:25952256,555811,12975 -(1,13078:6630773,24385490:2450326,534184,12975 -g1,13078:6630773,24385490 -g1,13078:9081099,24385490 -) -g1,13078:13161371,24385490 -g1,13078:14728599,24385490 -k1,13078:32583029,24385490:15225322 -g1,13078:32583029,24385490 -) -(1,13083:6630773,25620194:25952256,513147,115847 -k1,13082:8062641,25620194:235181 -k1,13082:10702994,25620194:235181 -(1,13082:10702994,25620194:0,452978,115847 -r1,13082:15281802,25620194:4578808,568825,115847 -k1,13082:10702994,25620194:-4578808 -) -(1,13082:10702994,25620194:4578808,452978,115847 -k1,13082:10702994,25620194:3277 -h1,13082:15278525,25620194:0,411205,112570 -) -k1,13082:15516983,25620194:235181 -k1,13082:16769938,25620194:235181 -k1,13082:17360979,25620194:235181 -k1,13082:20007230,25620194:235181 -k1,13082:21983702,25620194:235180 -k1,13082:22870311,25620194:235181 -k1,13082:27177244,25620194:235181 -k1,13082:28028463,25620194:235181 -k1,13082:29282729,25620194:235181 -k1,13082:30884991,25620194:235181 -k1,13082:32583029,25620194:0 -) -(1,13083:6630773,26461682:25952256,513147,138281 -k1,13082:7788944,26461682:139086 -k1,13082:9830541,26461682:139087 -k1,13082:10917278,26461682:139086 -$1,13082:10917278,26461682 -$1,13082:11419939,26461682 -k1,13082:11559026,26461682:139087 -k1,13082:12889557,26461682:139086 -$1,13082:12889557,26461682 -$1,13082:13441370,26461682 -k1,13082:13580457,26461682:139087 -k1,13082:14711103,26461682:139086 -k1,13082:20095036,26461682:139087 -k1,13082:24857687,26461682:139086 -k1,13082:28004221,26461682:139087 -(1,13082:28004221,26461682:0,452978,122846 -r1,13082:32583029,26461682:4578808,575824,122846 -k1,13082:28004221,26461682:-4578808 -) -(1,13082:28004221,26461682:4578808,452978,122846 -k1,13082:28004221,26461682:3277 -h1,13082:32579752,26461682:0,411205,112570 -) -k1,13082:32583029,26461682:0 -) -(1,13083:6630773,27303170:25952256,513147,134348 -k1,13082:8298261,27303170:244701 -k1,13082:9746203,27303170:244701 -k1,13082:12535667,27303170:244701 -k1,13082:13971814,27303170:244702 -k1,13082:16290074,27303170:244701 -k1,13082:17910376,27303170:244701 -k1,13082:18771115,27303170:244701 -k1,13082:20346197,27303170:244701 -k1,13082:23993527,27303170:244701 -k1,13082:25229789,27303170:244702 -k1,13082:27679777,27303170:244701 -k1,13082:28575906,27303170:244701 -k1,13082:30949216,27303170:244701 -k1,13083:32583029,27303170:0 -) -(1,13083:6630773,28144658:25952256,513147,126483 -k1,13082:9210614,28144658:215957 -k1,13082:10468593,28144658:215957 -k1,13082:11703635,28144658:215957 -k1,13082:13225725,28144658:215957 -k1,13082:16276769,28144658:215957 -k1,13082:17361079,28144658:215958 -k1,13082:18669521,28144658:215957 -(1,13082:18669521,28144658:0,452978,115847 -r1,13082:23248329,28144658:4578808,568825,115847 -k1,13082:18669521,28144658:-4578808 -) -(1,13082:18669521,28144658:4578808,452978,115847 -k1,13082:18669521,28144658:3277 -h1,13082:23245052,28144658:0,411205,112570 -) -k1,13082:23464286,28144658:215957 -k1,13082:25074194,28144658:215957 -k1,13082:26309236,28144658:215957 -k1,13082:28790773,28144658:215957 -k1,13082:32227169,28144658:215957 -k1,13082:32583029,28144658:0 -) -(1,13083:6630773,28986146:25952256,513147,126483 -k1,13082:8940262,28986146:216269 -k1,13082:10353217,28986146:216268 -k1,13082:11955572,28986146:216269 -k1,13082:12831133,28986146:216269 -k1,13082:14966951,28986146:216268 -k1,13082:15714717,28986146:216269 -k1,13082:20247843,28986146:216269 -k1,13082:22699545,28986146:216269 -k1,13082:24770482,28986146:216268 -k1,13082:25796121,28986146:216269 -k1,13082:27031475,28986146:216269 -k1,13082:29733524,28986146:216268 -k1,13082:30609085,28986146:216269 -k1,13083:32583029,28986146:0 -) -(1,13083:6630773,29827634:25952256,473825,7863 -k1,13083:32583029,29827634:23467786 -g1,13083:32583029,29827634 -) -v1,13085:6630773,31018100:0,393216,0 -(1,13090:6630773,31967917:25952256,1343033,196608 -g1,13090:6630773,31967917 -g1,13090:6630773,31967917 -g1,13090:6434165,31967917 -(1,13090:6434165,31967917:0,1343033,196608 -r1,13090:32779637,31967917:26345472,1539641,196608 -k1,13090:6434165,31967917:-26345472 -) -(1,13090:6434165,31967917:26345472,1343033,196608 -[1,13090:6630773,31967917:25952256,1146425,0 -(1,13087:6630773,31225718:25952256,404226,107478 -(1,13086:6630773,31225718:0,0,0 -g1,13086:6630773,31225718 -g1,13086:6630773,31225718 -g1,13086:6303093,31225718 -(1,13086:6303093,31225718:0,0,0 -) -g1,13086:6630773,31225718 -) -k1,13087:6630773,31225718:0 -g1,13087:10424522,31225718 -g1,13087:11056814,31225718 -g1,13087:13585980,31225718 -g1,13087:15482855,31225718 -g1,13087:16115147,31225718 -g1,13087:18012022,31225718 -g1,13087:18644314,31225718 -g1,13087:19276606,31225718 -g1,13087:21173480,31225718 -h1,13087:21489626,31225718:0,0,0 -k1,13087:32583029,31225718:11093403 -g1,13087:32583029,31225718 -) -(1,13088:6630773,31891896:25952256,404226,76021 -h1,13088:6630773,31891896:0,0,0 -g1,13088:6946919,31891896 -g1,13088:7263065,31891896 -g1,13088:7579211,31891896 -g1,13088:7895357,31891896 -g1,13088:8211503,31891896 -g1,13088:8527649,31891896 -g1,13088:8843795,31891896 -k1,13088:8843795,31891896:0 -h1,13088:12953688,31891896:0,0,0 -k1,13088:32583028,31891896:19629340 -g1,13088:32583028,31891896 -) -] -) -g1,13090:32583029,31967917 -g1,13090:6630773,31967917 -g1,13090:6630773,31967917 -g1,13090:32583029,31967917 -g1,13090:32583029,31967917 -) -h1,13090:6630773,32164525:0,0,0 -(1,13094:6630773,33530301:25952256,505283,134348 -h1,13093:6630773,33530301:983040,0,0 -k1,13093:8432732,33530301:191084 -k1,13093:10225516,33530301:191084 -k1,13093:12113982,33530301:191084 -k1,13093:13173418,33530301:191084 -k1,13093:14496964,33530301:191084 -k1,13093:16236664,33530301:191084 -k1,13093:17079176,33530301:191084 -k1,13093:18547558,33530301:191085 -k1,13093:19757727,33530301:191084 -k1,13093:24020563,33530301:191084 -k1,13093:24897809,33530301:191084 -k1,13093:27107402,33530301:191084 -k1,13093:29978909,33530301:191084 -k1,13093:31563944,33530301:191084 -k1,13093:32583029,33530301:0 -) -(1,13094:6630773,34371789:25952256,513147,126483 -k1,13093:10089623,34371789:238411 -k1,13093:11281582,34371789:238410 -k1,13093:12624275,34371789:238411 -k1,13093:14139982,34371789:238410 -k1,13093:15397478,34371789:238411 -k1,13093:19377338,34371789:238410 -k1,13093:20425119,34371789:238411 -k1,13093:21735698,34371789:238410 -k1,13093:22633401,34371789:238411 -k1,13093:23890896,34371789:238410 -k1,13093:27349746,34371789:238411 -k1,13093:28274318,34371789:238410 -k1,13093:30090181,34371789:238411 -k1,13093:31900144,34371789:238410 -k1,13093:32583029,34371789:0 -) -(1,13094:6630773,35213277:25952256,513147,126483 -g1,13093:7849087,35213277 -g1,13093:11095085,35213277 -g1,13093:12103684,35213277 -g1,13093:13375082,35213277 -g1,13093:14233603,35213277 -g1,13093:15451917,35213277 -k1,13094:32583029,35213277:12885690 -g1,13094:32583029,35213277 -) -v1,13096:6630773,36403743:0,393216,0 -(1,13104:6630773,39372733:25952256,3362206,196608 -g1,13104:6630773,39372733 -g1,13104:6630773,39372733 -g1,13104:6434165,39372733 -(1,13104:6434165,39372733:0,3362206,196608 -r1,13104:32779637,39372733:26345472,3558814,196608 -k1,13104:6434165,39372733:-26345472 -) -(1,13104:6434165,39372733:26345472,3362206,196608 -[1,13104:6630773,39372733:25952256,3165598,0 -(1,13098:6630773,36611361:25952256,404226,107478 -(1,13097:6630773,36611361:0,0,0 -g1,13097:6630773,36611361 -g1,13097:6630773,36611361 -g1,13097:6303093,36611361 -(1,13097:6303093,36611361:0,0,0 -) -g1,13097:6630773,36611361 -) -k1,13098:6630773,36611361:0 -g1,13098:10424522,36611361 -g1,13098:11056814,36611361 -g1,13098:13585980,36611361 -g1,13098:15482855,36611361 -g1,13098:16115147,36611361 -g1,13098:18012022,36611361 -g1,13098:18644314,36611361 -g1,13098:19276606,36611361 -g1,13098:21173480,36611361 -h1,13098:21489626,36611361:0,0,0 -k1,13098:32583029,36611361:11093403 -g1,13098:32583029,36611361 -) -(1,13099:6630773,37277539:25952256,404226,76021 -h1,13099:6630773,37277539:0,0,0 -g1,13099:6946919,37277539 -g1,13099:7263065,37277539 -g1,13099:11689104,37277539 -h1,13099:12005250,37277539:0,0,0 -k1,13099:32583030,37277539:20577780 -g1,13099:32583030,37277539 -) -(1,13100:6630773,37943717:25952256,404226,107478 -h1,13100:6630773,37943717:0,0,0 -g1,13100:6946919,37943717 -g1,13100:7263065,37943717 -k1,13100:7263065,37943717:0 -h1,13100:11056813,37943717:0,0,0 -k1,13100:32583029,37943717:21526216 -g1,13100:32583029,37943717 -) -(1,13104:6630773,39265255:25952256,410518,107478 -g1,13104:7579210,39265255 -g1,13104:12637541,39265255 -g1,13104:14534415,39265255 -g1,13104:16747435,39265255 -g1,13104:17379727,39265255 -g1,13104:19908893,39265255 -g1,13104:21173476,39265255 -g1,13104:23702642,39265255 -g1,13104:24651079,39265255 -g1,13104:25283371,39265255 -k1,13104:32583029,39265255:6667367 -g1,13104:32583029,39265255 -) -] -) -g1,13104:32583029,39372733 -g1,13104:6630773,39372733 -g1,13104:6630773,39372733 -g1,13104:32583029,39372733 -g1,13104:32583029,39372733 -) -h1,13104:6630773,39569341:0,0,0 -] -(1,13114:32583029,45706769:0,0,0 -g1,13114:32583029,45706769 -) -) -] -(1,13114:6630773,47279633:25952256,0,0 -h1,13114:6630773,47279633:25952256,0,0 -) -] -h1,13114:4262630,4025873:0,0,0 -] -!23257 -}251 -Input:1842:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1843:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1844:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1845:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1846:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1847:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1848:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1849:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1850:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1851:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1852:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 -{252 -[1,13174:4262630,47279633:28320399,43253760,0 -(1,13174:4262630,4025873:0,0,0 -[1,13174:-473657,4025873:25952256,0,0 -(1,13174:-473657,-710414:25952256,0,0 -h1,13174:-473657,-710414:0,0,0 -(1,13174:-473657,-710414:0,0,0 -(1,13174:-473657,-710414:0,0,0 -g1,13174:-473657,-710414 -(1,13174:-473657,-710414:65781,0,65781 -g1,13174:-407876,-710414 -[1,13174:-407876,-644633:0,0,0 +] +[1,13138:6630773,45706769:25952256,40108032,0 +(1,13138:6630773,45706769:25952256,40108032,0 +(1,13138:6630773,45706769:0,0,0 +g1,13138:6630773,45706769 +) +[1,13138:6630773,45706769:25952256,40108032,0 +(1,13073:6630773,6254097:25952256,513147,134348 +k1,13072:7968015,6254097:318157 +k1,13072:9784980,6254097:318157 +k1,13072:10762428,6254097:318156 +k1,13072:12099670,6254097:318157 +k1,13072:14024770,6254097:318157 +k1,13072:15717872,6254097:318157 +k1,13072:18444476,6254097:318156 +k1,13072:19959320,6254097:318157 +k1,13072:22543057,6254097:318157 +k1,13072:25868661,6254097:318157 +k1,13072:26802855,6254097:318156 +(1,13072:26802855,6254097:0,452978,115847 +r1,13072:31733375,6254097:4930520,568825,115847 +k1,13072:26802855,6254097:-4930520 +) +(1,13072:26802855,6254097:4930520,452978,115847 +k1,13072:26802855,6254097:3277 +h1,13072:31730098,6254097:0,411205,112570 +) +k1,13072:32051532,6254097:318157 +k1,13073:32583029,6254097:0 +) +(1,13073:6630773,7095585:25952256,513147,134348 +(1,13072:6630773,7095585:0,452978,122846 +r1,13072:12616428,7095585:5985655,575824,122846 +k1,13072:6630773,7095585:-5985655 +) +(1,13072:6630773,7095585:5985655,452978,122846 +k1,13072:6630773,7095585:3277 +h1,13072:12613151,7095585:0,411205,112570 +) +k1,13072:12994547,7095585:204449 +k1,13072:13923824,7095585:204449 +k1,13072:14996624,7095585:204448 +k1,13072:16305355,7095585:204449 +k1,13072:17947009,7095585:204449 +(1,13072:17947009,7095585:0,452978,122846 +r1,13072:21822393,7095585:3875384,575824,122846 +k1,13072:17947009,7095585:-3875384 +) +(1,13072:17947009,7095585:3875384,452978,122846 +k1,13072:17947009,7095585:3277 +h1,13072:21819116,7095585:0,411205,112570 +) +k1,13072:22026842,7095585:204449 +k1,13072:22917452,7095585:204448 +k1,13072:23892604,7095585:204449 +k1,13072:27169381,7095585:204449 +k1,13072:28321481,7095585:204449 +(1,13072:28321481,7095585:0,414482,122846 +r1,13072:29734882,7095585:1413401,537328,122846 +k1,13072:28321481,7095585:-1413401 +) +(1,13072:28321481,7095585:1413401,414482,122846 +k1,13072:28321481,7095585:3277 +h1,13072:29731605,7095585:0,411205,112570 +) +k1,13072:29939330,7095585:204448 +k1,13072:30795207,7095585:204449 +k1,13073:32583029,7095585:0 +) +(1,13073:6630773,7937073:25952256,505283,126483 +g1,13072:8204947,7937073 +g1,13072:9423261,7937073 +k1,13073:32583029,7937073:21297890 +g1,13073:32583029,7937073 +) +v1,13075:6630773,9127539:0,393216,0 +(1,13080:6630773,10089939:25952256,1355616,196608 +g1,13080:6630773,10089939 +g1,13080:6630773,10089939 +g1,13080:6434165,10089939 +(1,13080:6434165,10089939:0,1355616,196608 +r1,13080:32779637,10089939:26345472,1552224,196608 +k1,13080:6434165,10089939:-26345472 +) +(1,13080:6434165,10089939:26345472,1355616,196608 +[1,13080:6630773,10089939:25952256,1159008,0 +(1,13077:6630773,9341449:25952256,410518,107478 +(1,13076:6630773,9341449:0,0,0 +g1,13076:6630773,9341449 +g1,13076:6630773,9341449 +g1,13076:6303093,9341449 +(1,13076:6303093,9341449:0,0,0 +) +g1,13076:6630773,9341449 +) +g1,13077:6946919,9341449 +g1,13077:7263065,9341449 +g1,13077:12953688,9341449 +g1,13077:13585980,9341449 +g1,13077:17695874,9341449 +g1,13077:20541185,9341449 +g1,13077:21173477,9341449 +k1,13077:21173477,9341449:0 +h1,13077:24334934,9341449:0,0,0 +k1,13077:32583029,9341449:8248095 +g1,13077:32583029,9341449 +) +(1,13078:6630773,10007627:25952256,404226,82312 +h1,13078:6630773,10007627:0,0,0 +g1,13078:6946919,10007627 +g1,13078:7263065,10007627 +g1,13078:7579211,10007627 +g1,13078:7895357,10007627 +g1,13078:8211503,10007627 +g1,13078:8527649,10007627 +g1,13078:8843795,10007627 +g1,13078:9159941,10007627 +g1,13078:9476087,10007627 +g1,13078:9792233,10007627 +g1,13078:10108379,10007627 +g1,13078:10424525,10007627 +g1,13078:10740671,10007627 +g1,13078:11056817,10007627 +g1,13078:11372963,10007627 +g1,13078:12953692,10007627 +g1,13078:13585984,10007627 +g1,13078:14534422,10007627 +g1,13078:16431296,10007627 +g1,13078:17063588,10007627 +h1,13078:18960462,10007627:0,0,0 +k1,13078:32583029,10007627:13622567 +g1,13078:32583029,10007627 +) +] +) +g1,13080:32583029,10089939 +g1,13080:6630773,10089939 +g1,13080:6630773,10089939 +g1,13080:32583029,10089939 +g1,13080:32583029,10089939 +) +h1,13080:6630773,10286547:0,0,0 +(1,13084:6630773,11652323:25952256,513147,134348 +h1,13083:6630773,11652323:983040,0,0 +k1,13083:10439162,11652323:443115 +(1,13083:10439162,11652323:0,452978,115847 +r1,13083:13962834,11652323:3523672,568825,115847 +k1,13083:10439162,11652323:-3523672 +) +(1,13083:10439162,11652323:3523672,452978,115847 +k1,13083:10439162,11652323:3277 +h1,13083:13959557,11652323:0,411205,112570 +) +k1,13083:14405949,11652323:443115 +k1,13083:17176247,11652323:443115 +k1,13083:18286518,11652323:443115 +(1,13083:18286518,11652323:0,452978,122846 +r1,13083:22161902,11652323:3875384,575824,122846 +k1,13083:18286518,11652323:-3875384 +) +(1,13083:18286518,11652323:3875384,452978,122846 +k1,13083:18286518,11652323:3277 +h1,13083:22158625,11652323:0,411205,112570 +) +k1,13083:22605017,11652323:443115 +k1,13083:23699560,11652323:443115 +(1,13083:23699560,11652323:0,414482,122846 +r1,13083:25112961,11652323:1413401,537328,122846 +k1,13083:23699560,11652323:-1413401 +) +(1,13083:23699560,11652323:1413401,414482,122846 +k1,13083:23699560,11652323:3277 +h1,13083:25109684,11652323:0,411205,112570 +) +k1,13083:25556076,11652323:443115 +k1,13083:28172365,11652323:443115 +k1,13083:29231518,11652323:443115 +k1,13083:32583029,11652323:0 +) +(1,13084:6630773,12493811:25952256,513147,134348 +k1,13083:9730374,12493811:200288 +k1,13083:11537605,12493811:200288 +k1,13083:13286509,12493811:200288 +k1,13083:16421499,12493811:200288 +k1,13083:17825028,12493811:200288 +k1,13083:19411402,12493811:200288 +k1,13083:20270981,12493811:200287 +k1,13083:22078212,12493811:200288 +k1,13083:23323144,12493811:200288 +k1,13083:24624437,12493811:200288 +k1,13083:26334675,12493811:200288 +k1,13083:29508987,12493811:200288 +k1,13083:30395437,12493811:200288 +k1,13083:32583029,12493811:0 +) +(1,13084:6630773,13335299:25952256,513147,126483 +k1,13083:10756090,13335299:186603 +k1,13083:13045743,13335299:186603 +k1,13083:13883774,13335299:186603 +k1,13083:15677975,13335299:186603 +(1,13083:15885069,13335299:3425567,513147,11795 +) +k1,13083:19878078,13335299:186678 +k1,13083:21018230,13335299:186603 +k1,13083:22309115,13335299:186603 +k1,13083:23588203,13335299:186603 +(1,13083:23588203,13335299:0,452978,115847 +r1,13083:25353316,13335299:1765113,568825,115847 +k1,13083:23588203,13335299:-1765113 +) +(1,13083:23588203,13335299:1765113,452978,115847 +k1,13083:23588203,13335299:3277 +h1,13083:25350039,13335299:0,411205,112570 +) +k1,13083:25539918,13335299:186602 +k1,13083:26377949,13335299:186603 +k1,13083:28716754,13335299:186603 +k1,13083:29922442,13335299:186603 +k1,13083:31923737,13335299:186603 +k1,13083:32583029,13335299:0 +) +(1,13084:6630773,14176787:25952256,513147,126483 +g1,13083:7849087,14176787 +g1,13083:9488797,14176787 +g1,13083:10300788,14176787 +g1,13083:11519102,14176787 +g1,13083:13231557,14176787 +g1,13083:14090078,14176787 +g1,13083:15308392,14176787 +g1,13083:17114564,14176787 +k1,13084:32583029,14176787:13919849 +g1,13084:32583029,14176787 +) +(1,13086:6630773,15018275:25952256,513147,126483 +h1,13085:6630773,15018275:983040,0,0 +k1,13085:8300126,15018275:208556 +k1,13085:9377033,15018275:208555 +k1,13085:11060804,15018275:208556 +k1,13085:13603751,15018275:208555 +k1,13085:17041266,15018275:208556 +k1,13085:19260466,15018275:208555 +k1,13085:20416673,15018275:208556 +k1,13085:21644313,15018275:208555 +k1,13085:25534682,15018275:208556 +k1,13085:26611589,15018275:208555 +k1,13085:27924427,15018275:208556 +k1,13085:29331636,15018275:208555 +k1,13085:31563944,15018275:208556 +k1,13085:32583029,15018275:0 +) +(1,13086:6630773,15859763:25952256,505283,134348 +k1,13085:8563164,15859763:278918 +k1,13085:10449681,15859763:278919 +k1,13085:11490127,15859763:278918 +k1,13085:14576607,15859763:278918 +k1,13085:17697167,15859763:278919 +k1,13085:18627513,15859763:278918 +k1,13085:19925516,15859763:278918 +k1,13085:23268898,15859763:278918 +k1,13085:26260352,15859763:278919 +k1,13085:27300798,15859763:278918 +(1,13085:27300798,15859763:0,452978,122846 +r1,13085:32583029,15859763:5282231,575824,122846 +k1,13085:27300798,15859763:-5282231 +) +(1,13085:27300798,15859763:5282231,452978,122846 +k1,13085:27300798,15859763:3277 +h1,13085:32579752,15859763:0,411205,112570 +) +k1,13085:32583029,15859763:0 +) +(1,13086:6630773,16701251:25952256,505283,122846 +g1,13085:8021447,16701251 +(1,13085:8021447,16701251:0,452978,122846 +r1,13085:13655390,16701251:5633943,575824,122846 +k1,13085:8021447,16701251:-5633943 +) +(1,13085:8021447,16701251:5633943,452978,122846 +k1,13085:8021447,16701251:3277 +h1,13085:13652113,16701251:0,411205,112570 +) +g1,13085:14028289,16701251 +(1,13085:14028289,16701251:0,414482,115847 +r1,13085:14386555,16701251:358266,530329,115847 +k1,13085:14028289,16701251:-358266 +) +(1,13085:14028289,16701251:358266,414482,115847 +k1,13085:14028289,16701251:3277 +h1,13085:14383278,16701251:0,411205,112570 +) +g1,13085:14759454,16701251 +(1,13085:14759454,16701251:0,414482,115847 +r1,13085:15117720,16701251:358266,530329,115847 +k1,13085:14759454,16701251:-358266 +) +(1,13085:14759454,16701251:358266,414482,115847 +k1,13085:14759454,16701251:3277 +h1,13085:15114443,16701251:0,411205,112570 +) +g1,13085:15490619,16701251 +(1,13085:15490619,16701251:0,414482,115847 +r1,13085:16904020,16701251:1413401,530329,115847 +k1,13085:15490619,16701251:-1413401 +) +(1,13085:15490619,16701251:1413401,414482,115847 +k1,13085:15490619,16701251:3277 +h1,13085:16900743,16701251:0,411205,112570 +) +g1,13085:17103249,16701251 +g1,13085:18493923,16701251 +(1,13085:18493923,16701251:0,452978,115847 +r1,13085:19907324,16701251:1413401,568825,115847 +k1,13085:18493923,16701251:-1413401 +) +(1,13085:18493923,16701251:1413401,452978,115847 +k1,13085:18493923,16701251:3277 +h1,13085:19904047,16701251:0,411205,112570 +) +k1,13086:32583029,16701251:12502035 +g1,13086:32583029,16701251 +) +v1,13088:6630773,18067027:0,393216,0 +(1,13098:6630773,24027346:25952256,6353535,616038 +g1,13098:6630773,24027346 +(1,13098:6630773,24027346:25952256,6353535,616038 +(1,13098:6630773,24643384:25952256,6969573,0 +[1,13098:6630773,24643384:25952256,6969573,0 +(1,13098:6630773,24617170:25952256,6917145,0 +r1,13098:6656987,24617170:26214,6917145,0 +[1,13098:6656987,24617170:25899828,6917145,0 +(1,13098:6656987,24027346:25899828,5737497,0 +[1,13098:7246811,24027346:24720180,5737497,0 +(1,13089:7246811,19451734:24720180,1161885,196608 +(1,13088:7246811,19451734:0,1161885,196608 +r1,13098:8794447,19451734:1547636,1358493,196608 +k1,13088:7246811,19451734:-1547636 +) +(1,13088:7246811,19451734:1547636,1161885,196608 +) +k1,13088:8969362,19451734:174915 +k1,13088:10340965,19451734:174916 +k1,13088:13422402,19451734:174915 +k1,13088:15681362,19451734:174915 +k1,13088:16387775,19451734:174916 +k1,13088:17848506,19451734:174915 +k1,13088:19737187,19451734:174915 +k1,13088:20598265,19451734:174916 +k1,13088:21641532,19451734:174915 +k1,13088:22920729,19451734:174915 +k1,13088:24292988,19451734:174916 +k1,13088:25486988,19451734:174915 +k1,13088:28669350,19451734:174915 +k1,13088:29495694,19451734:174916 +k1,13088:30689694,19451734:174915 +k1,13088:31966991,19451734:0 +) +(1,13089:7246811,20293222:24720180,505283,134348 +k1,13088:9432174,20293222:225837 +k1,13088:10849456,20293222:225837 +k1,13088:12512498,20293222:225837 +k1,13088:13757420,20293222:225837 +k1,13088:16665646,20293222:225837 +k1,13088:17577645,20293222:225837 +k1,13088:18574185,20293222:225837 +k1,13088:21872350,20293222:225837 +k1,13088:22749615,20293222:225837 +k1,13088:23607219,20293222:225837 +k1,13088:24460891,20293222:225837 +k1,13088:27019810,20293222:225837 +k1,13088:27861685,20293222:225837 +k1,13088:29290763,20293222:225837 +k1,13088:31098639,20293222:225837 +k1,13088:31966991,20293222:0 +) +(1,13089:7246811,21134710:24720180,513147,126483 +g1,13088:9175535,21134710 +g1,13088:10578005,21134710 +g1,13088:14164135,21134710 +g1,13088:16447409,21134710 +g1,13088:17594289,21134710 +g1,13088:18812603,21134710 +g1,13088:20437895,21134710 +g1,13088:21296416,21134710 +k1,13089:31966991,21134710:6778392 +g1,13089:31966991,21134710 +) +v1,13091:7246811,22325176:0,393216,0 +(1,13096:7246811,23306450:24720180,1374490,196608 +g1,13096:7246811,23306450 +g1,13096:7246811,23306450 +g1,13096:7050203,23306450 +(1,13096:7050203,23306450:0,1374490,196608 +r1,13098:32163599,23306450:25113396,1571098,196608 +k1,13096:7050203,23306450:-25113396 +) +(1,13096:7050203,23306450:25113396,1374490,196608 +[1,13096:7246811,23306450:24720180,1177882,0 +(1,13093:7246811,22532794:24720180,404226,107478 +(1,13092:7246811,22532794:0,0,0 +g1,13092:7246811,22532794 +g1,13092:7246811,22532794 +g1,13092:6919131,22532794 +(1,13092:6919131,22532794:0,0,0 +) +g1,13092:7246811,22532794 +) +k1,13093:7246811,22532794:0 +g1,13093:11040560,22532794 +g1,13093:14518163,22532794 +g1,13093:16415037,22532794 +h1,13093:16731183,22532794:0,0,0 +k1,13093:31966991,22532794:15235808 +g1,13093:31966991,22532794 +) +(1,13094:7246811,23198972:24720180,410518,107478 +h1,13094:7246811,23198972:0,0,0 +g1,13094:7562957,23198972 +g1,13094:7879103,23198972 +g1,13094:12305143,23198972 +g1,13094:12937435,23198972 +g1,13094:16415038,23198972 +g1,13094:18311912,23198972 +g1,13094:18944204,23198972 +h1,13094:20524932,23198972:0,0,0 +k1,13094:31966991,23198972:11442059 +g1,13094:31966991,23198972 +) +] +) +g1,13096:31966991,23306450 +g1,13096:7246811,23306450 +g1,13096:7246811,23306450 +g1,13096:31966991,23306450 +g1,13096:31966991,23306450 +) +h1,13096:7246811,23503058:0,0,0 +] +) +] +r1,13098:32583029,24617170:26214,6917145,0 +) +] +) +) +g1,13098:32583029,24027346 +) +h1,13098:6630773,24643384:0,0,0 +(1,13102:6630773,27258932:25952256,555811,12975 +(1,13102:6630773,27258932:2450326,534184,12975 +g1,13102:6630773,27258932 +g1,13102:9081099,27258932 +) +g1,13102:13161371,27258932 +g1,13102:14728599,27258932 +k1,13102:32583029,27258932:15225322 +g1,13102:32583029,27258932 +) +(1,13107:6630773,28493636:25952256,513147,115847 +k1,13106:8062641,28493636:235181 +k1,13106:10702994,28493636:235181 +(1,13106:10702994,28493636:0,452978,115847 +r1,13106:15281802,28493636:4578808,568825,115847 +k1,13106:10702994,28493636:-4578808 +) +(1,13106:10702994,28493636:4578808,452978,115847 +k1,13106:10702994,28493636:3277 +h1,13106:15278525,28493636:0,411205,112570 +) +k1,13106:15516983,28493636:235181 +k1,13106:16769938,28493636:235181 +k1,13106:17360979,28493636:235181 +k1,13106:20007230,28493636:235181 +k1,13106:21983702,28493636:235180 +k1,13106:22870311,28493636:235181 +k1,13106:27177244,28493636:235181 +k1,13106:28028463,28493636:235181 +k1,13106:29282729,28493636:235181 +k1,13106:30884991,28493636:235181 +k1,13106:32583029,28493636:0 +) +(1,13107:6630773,29335124:25952256,513147,138281 +k1,13106:7788944,29335124:139086 +k1,13106:9830541,29335124:139087 +k1,13106:10917278,29335124:139086 +$1,13106:10917278,29335124 +$1,13106:11419939,29335124 +k1,13106:11559026,29335124:139087 +k1,13106:12889557,29335124:139086 +$1,13106:12889557,29335124 +$1,13106:13441370,29335124 +k1,13106:13580457,29335124:139087 +k1,13106:14711103,29335124:139086 +k1,13106:20095036,29335124:139087 +k1,13106:24857687,29335124:139086 +k1,13106:28004221,29335124:139087 +(1,13106:28004221,29335124:0,452978,122846 +r1,13106:32583029,29335124:4578808,575824,122846 +k1,13106:28004221,29335124:-4578808 +) +(1,13106:28004221,29335124:4578808,452978,122846 +k1,13106:28004221,29335124:3277 +h1,13106:32579752,29335124:0,411205,112570 +) +k1,13106:32583029,29335124:0 +) +(1,13107:6630773,30176612:25952256,513147,134348 +k1,13106:8250571,30176612:197011 +k1,13106:9650823,30176612:197011 +k1,13106:12392597,30176612:197011 +k1,13106:13781054,30176612:197012 +k1,13106:16051624,30176612:197011 +k1,13106:17624236,30176612:197011 +k1,13106:18437285,30176612:197011 +k1,13106:19964677,30176612:197011 +k1,13106:23564317,30176612:197011 +k1,13106:24752889,30176612:197012 +k1,13106:27155187,30176612:197011 +k1,13106:28003626,30176612:197011 +k1,13106:30329246,30176612:197011 +k1,13107:32583029,30176612:0 +) +(1,13107:6630773,31018100:25952256,513147,126483 +k1,13106:8642307,31018100:267621 +k1,13106:9951951,31018100:267622 +k1,13106:11238657,31018100:267621 +k1,13106:12812411,31018100:267621 +k1,13106:15915120,31018100:267622 +k1,13106:17051093,31018100:267621 +k1,13106:18411199,31018100:267621 +(1,13106:18411199,31018100:0,452978,115847 +r1,13106:22990007,31018100:4578808,568825,115847 +k1,13106:18411199,31018100:-4578808 +) +(1,13106:18411199,31018100:4578808,452978,115847 +k1,13106:18411199,31018100:3277 +h1,13106:22986730,31018100:0,411205,112570 +) +k1,13106:23257629,31018100:267622 +k1,13106:24919201,31018100:267621 +k1,13106:26205907,31018100:267621 +k1,13106:28739109,31018100:267622 +k1,13106:32227169,31018100:267621 +k1,13106:32583029,31018100:0 +) +(1,13107:6630773,31859588:25952256,513147,126483 +k1,13106:8940262,31859588:216269 +k1,13106:10353217,31859588:216268 +k1,13106:11955572,31859588:216269 +k1,13106:12831133,31859588:216269 +k1,13106:14966951,31859588:216268 +k1,13106:15714717,31859588:216269 +k1,13106:20247843,31859588:216269 +k1,13106:22699545,31859588:216269 +k1,13106:24770482,31859588:216268 +k1,13106:25796121,31859588:216269 +k1,13106:27031475,31859588:216269 +k1,13106:29733524,31859588:216268 +k1,13106:30609085,31859588:216269 +k1,13107:32583029,31859588:0 +) +(1,13107:6630773,32701076:25952256,473825,7863 +k1,13107:32583029,32701076:23467786 +g1,13107:32583029,32701076 +) +v1,13109:6630773,33891542:0,393216,0 +(1,13114:6630773,34841359:25952256,1343033,196608 +g1,13114:6630773,34841359 +g1,13114:6630773,34841359 +g1,13114:6434165,34841359 +(1,13114:6434165,34841359:0,1343033,196608 +r1,13114:32779637,34841359:26345472,1539641,196608 +k1,13114:6434165,34841359:-26345472 +) +(1,13114:6434165,34841359:26345472,1343033,196608 +[1,13114:6630773,34841359:25952256,1146425,0 +(1,13111:6630773,34099160:25952256,404226,107478 +(1,13110:6630773,34099160:0,0,0 +g1,13110:6630773,34099160 +g1,13110:6630773,34099160 +g1,13110:6303093,34099160 +(1,13110:6303093,34099160:0,0,0 +) +g1,13110:6630773,34099160 +) +k1,13111:6630773,34099160:0 +g1,13111:10424522,34099160 +g1,13111:11056814,34099160 +g1,13111:13585980,34099160 +g1,13111:15482855,34099160 +g1,13111:16115147,34099160 +g1,13111:18012022,34099160 +g1,13111:18644314,34099160 +g1,13111:19276606,34099160 +g1,13111:21173480,34099160 +h1,13111:21489626,34099160:0,0,0 +k1,13111:32583029,34099160:11093403 +g1,13111:32583029,34099160 +) +(1,13112:6630773,34765338:25952256,404226,76021 +h1,13112:6630773,34765338:0,0,0 +g1,13112:6946919,34765338 +g1,13112:7263065,34765338 +g1,13112:7579211,34765338 +g1,13112:7895357,34765338 +g1,13112:8211503,34765338 +g1,13112:8527649,34765338 +g1,13112:8843795,34765338 +k1,13112:8843795,34765338:0 +h1,13112:12953688,34765338:0,0,0 +k1,13112:32583028,34765338:19629340 +g1,13112:32583028,34765338 +) +] +) +g1,13114:32583029,34841359 +g1,13114:6630773,34841359 +g1,13114:6630773,34841359 +g1,13114:32583029,34841359 +g1,13114:32583029,34841359 +) +h1,13114:6630773,35037967:0,0,0 +(1,13118:6630773,36403743:25952256,505283,134348 +h1,13117:6630773,36403743:983040,0,0 +k1,13117:8432732,36403743:191084 +k1,13117:10225516,36403743:191084 +k1,13117:12113982,36403743:191084 +k1,13117:13173418,36403743:191084 +k1,13117:14496964,36403743:191084 +k1,13117:16236664,36403743:191084 +k1,13117:17079176,36403743:191084 +k1,13117:18547558,36403743:191085 +k1,13117:19757727,36403743:191084 +k1,13117:24020563,36403743:191084 +k1,13117:24897809,36403743:191084 +k1,13117:27107402,36403743:191084 +k1,13117:29978909,36403743:191084 +k1,13117:31563944,36403743:191084 +k1,13117:32583029,36403743:0 +) +(1,13118:6630773,37245231:25952256,513147,126483 +k1,13117:10089623,37245231:238411 +k1,13117:11281582,37245231:238410 +k1,13117:12624275,37245231:238411 +k1,13117:14139982,37245231:238410 +k1,13117:15397478,37245231:238411 +k1,13117:19377338,37245231:238410 +k1,13117:20425119,37245231:238411 +k1,13117:21735698,37245231:238410 +k1,13117:22633401,37245231:238411 +k1,13117:23890896,37245231:238410 +k1,13117:27349746,37245231:238411 +k1,13117:28274318,37245231:238410 +k1,13117:30090181,37245231:238411 +k1,13117:31900144,37245231:238410 +k1,13117:32583029,37245231:0 +) +(1,13118:6630773,38086719:25952256,513147,126483 +g1,13117:7849087,38086719 +g1,13117:11095085,38086719 +g1,13117:12103684,38086719 +g1,13117:13375082,38086719 +g1,13117:14233603,38086719 +g1,13117:15451917,38086719 +k1,13118:32583029,38086719:12885690 +g1,13118:32583029,38086719 +) +v1,13120:6630773,39277185:0,393216,0 +(1,13128:6630773,42246175:25952256,3362206,196608 +g1,13128:6630773,42246175 +g1,13128:6630773,42246175 +g1,13128:6434165,42246175 +(1,13128:6434165,42246175:0,3362206,196608 +r1,13128:32779637,42246175:26345472,3558814,196608 +k1,13128:6434165,42246175:-26345472 +) +(1,13128:6434165,42246175:26345472,3362206,196608 +[1,13128:6630773,42246175:25952256,3165598,0 +(1,13122:6630773,39484803:25952256,404226,107478 +(1,13121:6630773,39484803:0,0,0 +g1,13121:6630773,39484803 +g1,13121:6630773,39484803 +g1,13121:6303093,39484803 +(1,13121:6303093,39484803:0,0,0 +) +g1,13121:6630773,39484803 +) +k1,13122:6630773,39484803:0 +g1,13122:10424522,39484803 +g1,13122:11056814,39484803 +g1,13122:13585980,39484803 +g1,13122:15482855,39484803 +g1,13122:16115147,39484803 +g1,13122:18012022,39484803 +g1,13122:18644314,39484803 +g1,13122:19276606,39484803 +g1,13122:21173480,39484803 +h1,13122:21489626,39484803:0,0,0 +k1,13122:32583029,39484803:11093403 +g1,13122:32583029,39484803 +) +(1,13123:6630773,40150981:25952256,404226,76021 +h1,13123:6630773,40150981:0,0,0 +g1,13123:6946919,40150981 +g1,13123:7263065,40150981 +g1,13123:11689104,40150981 +h1,13123:12005250,40150981:0,0,0 +k1,13123:32583030,40150981:20577780 +g1,13123:32583030,40150981 +) +(1,13124:6630773,40817159:25952256,404226,107478 +h1,13124:6630773,40817159:0,0,0 +g1,13124:6946919,40817159 +g1,13124:7263065,40817159 +k1,13124:7263065,40817159:0 +h1,13124:11056813,40817159:0,0,0 +k1,13124:32583029,40817159:21526216 +g1,13124:32583029,40817159 +) +(1,13128:6630773,42138697:25952256,410518,107478 +g1,13128:7579210,42138697 +g1,13128:12637541,42138697 +g1,13128:14534415,42138697 +g1,13128:16747435,42138697 +g1,13128:17379727,42138697 +g1,13128:19908893,42138697 +g1,13128:21173476,42138697 +g1,13128:23702642,42138697 +g1,13128:24651079,42138697 +g1,13128:25283371,42138697 +k1,13128:32583029,42138697:6667367 +g1,13128:32583029,42138697 +) +] +) +g1,13128:32583029,42246175 +g1,13128:6630773,42246175 +g1,13128:6630773,42246175 +g1,13128:32583029,42246175 +g1,13128:32583029,42246175 +) +h1,13128:6630773,42442783:0,0,0 +] +(1,13138:32583029,45706769:0,0,0 +g1,13138:32583029,45706769 +) +) +] +(1,13138:6630773,47279633:25952256,0,0 +h1,13138:6630773,47279633:25952256,0,0 +) +] +h1,13138:4262630,4025873:0,0,0 +] +!25391 +}252 +Input:1838:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1839:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1840:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1841:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1842:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1843:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1844:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1845:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1846:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1847:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1848:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 +{253 +[1,13190:4262630,47279633:28320399,43253760,0 +(1,13190:4262630,4025873:0,0,0 +[1,13190:-473657,4025873:25952256,0,0 +(1,13190:-473657,-710414:25952256,0,0 +h1,13190:-473657,-710414:0,0,0 +(1,13190:-473657,-710414:0,0,0 +(1,13190:-473657,-710414:0,0,0 +g1,13190:-473657,-710414 +(1,13190:-473657,-710414:65781,0,65781 +g1,13190:-407876,-710414 +[1,13190:-407876,-644633:0,0,0 ] ) -k1,13174:-473657,-710414:-65781 +k1,13190:-473657,-710414:-65781 ) ) -k1,13174:25478599,-710414:25952256 -g1,13174:25478599,-710414 +k1,13190:25478599,-710414:25952256 +g1,13190:25478599,-710414 ) ] ) -[1,13174:6630773,47279633:25952256,43253760,0 -[1,13174:6630773,4812305:25952256,786432,0 -(1,13174:6630773,4812305:25952256,485622,11795 -(1,13174:6630773,4812305:25952256,485622,11795 -g1,13174:3078558,4812305 -[1,13174:3078558,4812305:0,0,0 -(1,13174:3078558,2439708:0,1703936,0 -k1,13174:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13174:2537886,2439708:1179648,16384,0 +[1,13190:6630773,47279633:25952256,43253760,0 +[1,13190:6630773,4812305:25952256,786432,0 +(1,13190:6630773,4812305:25952256,513147,134348 +(1,13190:6630773,4812305:25952256,513147,134348 +g1,13190:3078558,4812305 +[1,13190:3078558,4812305:0,0,0 +(1,13190:3078558,2439708:0,1703936,0 +k1,13190:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13190:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13174:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13190:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13174:3078558,4812305:0,0,0 -(1,13174:3078558,2439708:0,1703936,0 -g1,13174:29030814,2439708 -g1,13174:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13174:36151628,1915420:16384,1179648,0 +[1,13190:3078558,4812305:0,0,0 +(1,13190:3078558,2439708:0,1703936,0 +g1,13190:29030814,2439708 +g1,13190:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13190:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13174:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13190:37855564,2439708:1179648,16384,0 ) ) -k1,13174:3078556,2439708:-34777008 +k1,13190:3078556,2439708:-34777008 ) ] -[1,13174:3078558,4812305:0,0,0 -(1,13174:3078558,49800853:0,16384,2228224 -k1,13174:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13174:2537886,49800853:1179648,16384,0 +[1,13190:3078558,4812305:0,0,0 +(1,13190:3078558,49800853:0,16384,2228224 +k1,13190:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13190:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13174:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13190:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13174:3078558,4812305:0,0,0 -(1,13174:3078558,49800853:0,16384,2228224 -g1,13174:29030814,49800853 -g1,13174:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13174:36151628,51504789:16384,1179648,0 +[1,13190:3078558,4812305:0,0,0 +(1,13190:3078558,49800853:0,16384,2228224 +g1,13190:29030814,49800853 +g1,13190:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13190:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13174:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13190:37855564,49800853:1179648,16384,0 ) ) -k1,13174:3078556,49800853:-34777008 +k1,13190:3078556,49800853:-34777008 ) ] -g1,13174:6630773,4812305 -g1,13174:6630773,4812305 -g1,13174:9560887,4812305 -k1,13174:31387651,4812305:21826764 +g1,13190:6630773,4812305 +k1,13190:25712890,4812305:17886740 +g1,13190:29057847,4812305 +g1,13190:29873114,4812305 ) ) ] -[1,13174:6630773,45706769:25952256,40108032,0 -(1,13174:6630773,45706769:25952256,40108032,0 -(1,13174:6630773,45706769:0,0,0 -g1,13174:6630773,45706769 +[1,13190:6630773,45706769:25952256,40108032,0 +(1,13190:6630773,45706769:25952256,40108032,0 +(1,13190:6630773,45706769:0,0,0 +g1,13190:6630773,45706769 ) -[1,13174:6630773,45706769:25952256,40108032,0 -(1,13107:6630773,14661426:25952256,9062689,0 -k1,13107:10523651,14661426:3892878 -h1,13106:10523651,14661426:0,0,0 -(1,13106:10523651,14661426:18166500,9062689,0 -(1,13106:10523651,14661426:18167381,9062712,0 -(1,13106:10523651,14661426:18167381,9062712,0 -(1,13106:10523651,14661426:0,9062712,0 -(1,13106:10523651,14661426:0,14155776,0 -(1,13106:10523651,14661426:28377088,14155776,0 +[1,13190:6630773,45706769:25952256,40108032,0 +(1,13131:6630773,14661426:25952256,9062689,0 +k1,13131:10523651,14661426:3892878 +h1,13130:10523651,14661426:0,0,0 +(1,13130:10523651,14661426:18166500,9062689,0 +(1,13130:10523651,14661426:18167381,9062712,0 +(1,13130:10523651,14661426:18167381,9062712,0 +(1,13130:10523651,14661426:0,9062712,0 +(1,13130:10523651,14661426:0,14155776,0 +(1,13130:10523651,14661426:28377088,14155776,0 ) -k1,13106:10523651,14661426:-28377088 +k1,13130:10523651,14661426:-28377088 ) ) -g1,13106:28691032,14661426 +g1,13130:28691032,14661426 ) ) -) -g1,13107:28690151,14661426 -k1,13107:32583029,14661426:3892878 -) -(1,13115:6630773,15502914:25952256,513147,134348 -h1,13114:6630773,15502914:983040,0,0 -k1,13114:10126042,15502914:173249 -k1,13114:10958583,15502914:173249 -k1,13114:12867225,15502914:173249 -k1,13114:14059559,15502914:173249 -k1,13114:16498388,15502914:173249 -k1,13114:18764857,15502914:173249 -k1,13114:19806458,15502914:173249 -k1,13114:21083989,15502914:173249 -k1,13114:21944711,15502914:173249 -k1,13114:22473820,15502914:173249 -k1,13114:25409412,15502914:173249 -k1,13114:27744038,15502914:173249 -k1,13114:28545122,15502914:173249 -k1,13114:29921612,15502914:173249 -k1,13114:32583029,15502914:0 -) -(1,13115:6630773,16344402:25952256,513147,126483 -g1,13114:7698354,16344402 -g1,13114:8990068,16344402 -g1,13114:9545157,16344402 -g1,13114:11557112,16344402 -g1,13114:13744048,16344402 -g1,13114:14629439,16344402 -g1,13114:18049107,16344402 -g1,13114:19960792,16344402 -g1,13114:20921549,16344402 -(1,13114:20921549,16344402:0,452978,115847 -r1,13114:22334950,16344402:1413401,568825,115847 -k1,13114:20921549,16344402:-1413401 -) -(1,13114:20921549,16344402:1413401,452978,115847 -k1,13114:20921549,16344402:3277 -h1,13114:22331673,16344402:0,411205,112570 -) -k1,13115:32583029,16344402:10074409 -g1,13115:32583029,16344402 -) -v1,13117:6630773,17456758:0,393216,0 -(1,13121:6630773,17740397:25952256,676855,196608 -g1,13121:6630773,17740397 -g1,13121:6630773,17740397 -g1,13121:6434165,17740397 -(1,13121:6434165,17740397:0,676855,196608 -r1,13121:32779637,17740397:26345472,873463,196608 -k1,13121:6434165,17740397:-26345472 -) -(1,13121:6434165,17740397:26345472,676855,196608 -[1,13121:6630773,17740397:25952256,480247,0 -(1,13119:6630773,17664376:25952256,404226,76021 -(1,13118:6630773,17664376:0,0,0 -g1,13118:6630773,17664376 -g1,13118:6630773,17664376 -g1,13118:6303093,17664376 -(1,13118:6303093,17664376:0,0,0 -) -g1,13118:6630773,17664376 -) -g1,13119:6946919,17664376 -g1,13119:7263065,17664376 -g1,13119:15166707,17664376 -h1,13119:15482853,17664376:0,0,0 -k1,13119:32583029,17664376:17100176 -g1,13119:32583029,17664376 -) -] -) -g1,13121:32583029,17740397 -g1,13121:6630773,17740397 -g1,13121:6630773,17740397 -g1,13121:32583029,17740397 -g1,13121:32583029,17740397 -) -h1,13121:6630773,17937005:0,0,0 -(1,13125:6630773,19224671:25952256,505283,134348 -h1,13124:6630773,19224671:983040,0,0 -k1,13124:9733633,19224671:245490 -k1,13124:11368486,19224671:245490 -k1,13124:12605536,19224671:245490 -k1,13124:14613944,19224671:245490 -k1,13124:17693866,19224671:245490 -k1,13124:18664184,19224671:245490 -k1,13124:19778025,19224671:245489 -k1,13124:21420087,19224671:245490 -k1,13124:24176917,19224671:245490 -(1,13124:24176917,19224671:0,452978,115847 -r1,13124:25238606,19224671:1061689,568825,115847 -k1,13124:24176917,19224671:-1061689 -) -(1,13124:24176917,19224671:1061689,452978,115847 -k1,13124:24176917,19224671:3277 -h1,13124:25235329,19224671:0,411205,112570 -) -k1,13124:25484096,19224671:245490 -k1,13124:26381014,19224671:245490 -k1,13124:27645589,19224671:245490 -(1,13124:27645589,19224671:0,452978,115847 -r1,13124:29410702,19224671:1765113,568825,115847 -k1,13124:27645589,19224671:-1765113 -) -(1,13124:27645589,19224671:1765113,452978,115847 -k1,13124:27645589,19224671:3277 -h1,13124:29407425,19224671:0,411205,112570 -) -k1,13124:29656192,19224671:245490 -k1,13124:32583029,19224671:0 -) -(1,13125:6630773,20066159:25952256,513147,134348 -k1,13124:8262266,20066159:223780 -k1,13124:9354398,20066159:223780 -k1,13124:10556631,20066159:223780 -k1,13124:12435196,20066159:223781 -k1,13124:14881957,20066159:223780 -k1,13124:15765029,20066159:223780 -k1,13124:18007318,20066159:223780 -k1,13124:19625049,20066159:223780 -k1,13124:22611172,20066159:223780 -k1,13124:25196215,20066159:223781 -k1,13124:26492164,20066159:223780 -k1,13124:28001760,20066159:223780 -k1,13124:29880324,20066159:223780 -k1,13124:32583029,20066159:0 -) -(1,13125:6630773,20907647:25952256,505283,7863 -g1,13124:9241072,20907647 -k1,13125:32583029,20907647:21669478 -g1,13125:32583029,20907647 -) -v1,13127:6630773,22020003:0,393216,0 -(1,13133:6630773,23673747:25952256,2046960,196608 -g1,13133:6630773,23673747 -g1,13133:6630773,23673747 -g1,13133:6434165,23673747 -(1,13133:6434165,23673747:0,2046960,196608 -r1,13133:32779637,23673747:26345472,2243568,196608 -k1,13133:6434165,23673747:-26345472 -) -(1,13133:6434165,23673747:26345472,2046960,196608 -[1,13133:6630773,23673747:25952256,1850352,0 -(1,13129:6630773,22233913:25952256,410518,107478 -(1,13128:6630773,22233913:0,0,0 -g1,13128:6630773,22233913 -g1,13128:6630773,22233913 -g1,13128:6303093,22233913 -(1,13128:6303093,22233913:0,0,0 -) -g1,13128:6630773,22233913 -) -k1,13129:6630773,22233913:0 -g1,13129:10424522,22233913 -g1,13129:11056814,22233913 -g1,13129:13585980,22233913 -g1,13129:15482855,22233913 -g1,13129:16115147,22233913 -g1,13129:18012022,22233913 -g1,13129:18644314,22233913 -g1,13129:19276606,22233913 -g1,13129:20857335,22233913 -g1,13129:22754209,22233913 -g1,13129:23386501,22233913 -g1,13129:27812541,22233913 -h1,13129:28128687,22233913:0,0,0 -k1,13129:32583029,22233913:4454342 -g1,13129:32583029,22233913 -) -(1,13130:6630773,22900091:25952256,404226,76021 -h1,13130:6630773,22900091:0,0,0 -g1,13130:6946919,22900091 -g1,13130:7263065,22900091 -g1,13130:13269833,22900091 -g1,13130:13902125,22900091 -g1,13130:15799000,22900091 -h1,13130:16115146,22900091:0,0,0 -k1,13130:32583029,22900091:16467883 -g1,13130:32583029,22900091 -) -(1,13131:6630773,23566269:25952256,404226,107478 -h1,13131:6630773,23566269:0,0,0 -g1,13131:6946919,23566269 -g1,13131:7263065,23566269 -k1,13131:7263065,23566269:0 -h1,13131:11056813,23566269:0,0,0 -k1,13131:32583029,23566269:21526216 -g1,13131:32583029,23566269 -) -] -) -g1,13133:32583029,23673747 -g1,13133:6630773,23673747 -g1,13133:6630773,23673747 -g1,13133:32583029,23673747 -g1,13133:32583029,23673747 -) -h1,13133:6630773,23870355:0,0,0 -(1,13136:6630773,33444759:25952256,9062689,0 -k1,13136:10523651,33444759:3892878 -h1,13135:10523651,33444759:0,0,0 -(1,13135:10523651,33444759:18166500,9062689,0 -(1,13135:10523651,33444759:18167381,9062712,0 -(1,13135:10523651,33444759:18167381,9062712,0 -(1,13135:10523651,33444759:0,9062712,0 -(1,13135:10523651,33444759:0,14155776,0 -(1,13135:10523651,33444759:28377088,14155776,0 -) -k1,13135:10523651,33444759:-28377088 -) -) -g1,13135:28691032,33444759 -) -) -) -g1,13136:28690151,33444759 -k1,13136:32583029,33444759:3892878 -) -(1,13144:6630773,34286247:25952256,513147,134348 -h1,13143:6630773,34286247:983040,0,0 -k1,13143:8657941,34286247:215098 -k1,13143:10896792,34286247:215099 -k1,13143:11467750,34286247:215098 -k1,13143:13555868,34286247:215099 -k1,13143:16817735,34286247:215098 -k1,13143:17980485,34286247:215099 -k1,13143:19214668,34286247:215098 -k1,13143:21084550,34286247:215098 -k1,13143:23696301,34286247:215099 -k1,13143:24779751,34286247:215098 -k1,13143:26525116,34286247:215099 -k1,13143:27391642,34286247:215098 -k1,13143:28541284,34286247:215099 -k1,13143:29775467,34286247:215098 -k1,13143:32583029,34286247:0 -) -(1,13144:6630773,35127735:25952256,513147,115847 -k1,13143:7487289,35127735:197224 -k1,13143:8703598,35127735:197224 -(1,13143:8703598,35127735:0,452978,115847 -r1,13143:10468711,35127735:1765113,568825,115847 -k1,13143:8703598,35127735:-1765113 -) -(1,13143:8703598,35127735:1765113,452978,115847 -k1,13143:8703598,35127735:3277 -h1,13143:10465434,35127735:0,411205,112570 -) -k1,13143:10665936,35127735:197225 -k1,13143:13650406,35127735:197224 -k1,13143:14499058,35127735:197224 -k1,13143:15052142,35127735:197224 -k1,13143:18007122,35127735:197225 -k1,13143:20214335,35127735:197224 -(1,13143:20214335,35127735:0,452978,115847 -r1,13143:24089719,35127735:3875384,568825,115847 -k1,13143:20214335,35127735:-3875384 -) -(1,13143:20214335,35127735:3875384,452978,115847 -k1,13143:20214335,35127735:3277 -h1,13143:24086442,35127735:0,411205,112570 -) -k1,13143:24460613,35127735:197224 -k1,13143:26038681,35127735:197224 -k1,13143:27730127,35127735:197225 -k1,13143:29607694,35127735:197224 -k1,13143:32583029,35127735:0 -) -(1,13144:6630773,35969223:25952256,513147,134348 -k1,13143:7851363,35969223:201505 -k1,13143:10318447,35969223:201504 -(1,13143:10318447,35969223:0,452978,115847 -r1,13143:12083560,35969223:1765113,568825,115847 -k1,13143:10318447,35969223:-1765113 -) -(1,13143:10318447,35969223:1765113,452978,115847 -k1,13143:10318447,35969223:3277 -h1,13143:12080283,35969223:0,411205,112570 -) -k1,13143:12285065,35969223:201505 -k1,13143:15294132,35969223:201505 -k1,13143:16430179,35969223:201504 -k1,13143:17247722,35969223:201505 -(1,13143:17247722,35969223:0,452978,122846 -r1,13143:20067971,35969223:2820249,575824,122846 -k1,13143:17247722,35969223:-2820249 -) -(1,13143:17247722,35969223:2820249,452978,122846 -k1,13143:17247722,35969223:3277 -h1,13143:20064694,35969223:0,411205,112570 -) -k1,13143:20269476,35969223:201505 -k1,13143:21699780,35969223:201504 -k1,13143:22848936,35969223:201505 -k1,13143:24253681,35969223:201504 -k1,13143:25732483,35969223:201505 -k1,13143:27665449,35969223:201505 -k1,13143:28820502,35969223:201504 -k1,13143:30114492,35969223:201505 -(1,13143:30114492,35969223:0,452978,115847 -r1,13143:32583029,35969223:2468537,568825,115847 -k1,13143:30114492,35969223:-2468537 -) -(1,13143:30114492,35969223:2468537,452978,115847 -k1,13143:30114492,35969223:3277 -h1,13143:32579752,35969223:0,411205,112570 -) -k1,13143:32583029,35969223:0 -) -(1,13144:6630773,36810711:25952256,513147,126483 -g1,13143:7902171,36810711 -g1,13143:9304641,36810711 -g1,13143:11272687,36810711 -g1,13143:12219682,36810711 -g1,13143:15138000,36810711 -g1,13143:16098757,36810711 -g1,13143:17429793,36810711 -g1,13143:19330992,36810711 -g1,13143:21146339,36810711 -g1,13143:24427726,36810711 -g1,13143:26764739,36810711 -g1,13143:27615396,36810711 -k1,13144:32583029,36810711:4379120 -g1,13144:32583029,36810711 -) -v1,13146:6630773,37923067:0,393216,0 -(1,13152:6630773,39576811:25952256,2046960,196608 -g1,13152:6630773,39576811 -g1,13152:6630773,39576811 -g1,13152:6434165,39576811 -(1,13152:6434165,39576811:0,2046960,196608 -r1,13152:32779637,39576811:26345472,2243568,196608 -k1,13152:6434165,39576811:-26345472 -) -(1,13152:6434165,39576811:26345472,2046960,196608 -[1,13152:6630773,39576811:25952256,1850352,0 -(1,13148:6630773,38136977:25952256,410518,107478 -(1,13147:6630773,38136977:0,0,0 -g1,13147:6630773,38136977 -g1,13147:6630773,38136977 -g1,13147:6303093,38136977 -(1,13147:6303093,38136977:0,0,0 -) -g1,13147:6630773,38136977 -) -k1,13148:6630773,38136977:0 -g1,13148:10424522,38136977 -g1,13148:11056814,38136977 -g1,13148:13585980,38136977 -g1,13148:15482855,38136977 -g1,13148:16115147,38136977 -g1,13148:18012022,38136977 -g1,13148:18644314,38136977 -g1,13148:19276606,38136977 -g1,13148:20857335,38136977 -g1,13148:22754209,38136977 -g1,13148:23386501,38136977 -g1,13148:27812541,38136977 -h1,13148:28128687,38136977:0,0,0 -k1,13148:32583029,38136977:4454342 -g1,13148:32583029,38136977 -) -(1,13149:6630773,38803155:25952256,404226,82312 -h1,13149:6630773,38803155:0,0,0 -g1,13149:6946919,38803155 -g1,13149:7263065,38803155 -g1,13149:13269833,38803155 -g1,13149:13902125,38803155 -g1,13149:15799000,38803155 -g1,13149:17695874,38803155 -g1,13149:18328166,38803155 -g1,13149:21173478,38803155 -h1,13149:21489624,38803155:0,0,0 -k1,13149:32583029,38803155:11093405 -g1,13149:32583029,38803155 -) -(1,13150:6630773,39469333:25952256,404226,107478 -h1,13150:6630773,39469333:0,0,0 -g1,13150:6946919,39469333 -g1,13150:7263065,39469333 -k1,13150:7263065,39469333:0 -h1,13150:11056813,39469333:0,0,0 -k1,13150:32583029,39469333:21526216 -g1,13150:32583029,39469333 -) -] -) -g1,13152:32583029,39576811 -g1,13152:6630773,39576811 -g1,13152:6630773,39576811 -g1,13152:32583029,39576811 -g1,13152:32583029,39576811 -) -h1,13152:6630773,39773419:0,0,0 -(1,13156:6630773,41061085:25952256,513147,134348 -h1,13155:6630773,41061085:983040,0,0 -k1,13155:10225658,41061085:272865 -k1,13155:11157815,41061085:272865 -k1,13155:13166074,41061085:272866 -k1,13155:14458024,41061085:272865 -k1,13155:16996469,41061085:272865 -(1,13155:16996469,41061085:0,459977,115847 -r1,13155:19465006,41061085:2468537,575824,115847 -k1,13155:16996469,41061085:-2468537 -) -(1,13155:16996469,41061085:2468537,459977,115847 -k1,13155:16996469,41061085:3277 -h1,13155:19461729,41061085:0,411205,112570 -) -k1,13155:19737871,41061085:272865 -k1,13155:20958387,41061085:272865 -k1,13155:21587112,41061085:272865 -k1,13155:23672704,41061085:272866 -k1,13155:27262346,41061085:272865 -k1,13155:28221373,41061085:272865 -k1,13155:31714677,41061085:272865 -k1,13155:32583029,41061085:0 -) -(1,13156:6630773,41902573:25952256,513147,134348 -k1,13155:8295403,41902573:227425 -k1,13155:8878687,41902573:227424 -k1,13155:11868455,41902573:227425 -(1,13155:11868455,41902573:0,459977,115847 -r1,13155:14336992,41902573:2468537,575824,115847 -k1,13155:11868455,41902573:-2468537 -) -(1,13155:11868455,41902573:2468537,459977,115847 -k1,13155:11868455,41902573:3277 -h1,13155:14333715,41902573:0,411205,112570 -) -k1,13155:14564416,41902573:227424 -k1,13155:15478003,41902573:227425 -k1,13155:16476130,41902573:227424 -k1,13155:19949553,41902573:227425 -k1,13155:20804812,41902573:227424 -k1,13155:22235478,41902573:227425 -k1,13155:25124319,41902573:227424 -k1,13155:26220096,41902573:227425 -k1,13155:27540005,41902573:227424 -k1,13155:28123290,41902573:227425 -k1,13155:31923737,41902573:227424 -k1,13155:32583029,41902573:0 -) -(1,13156:6630773,42744061:25952256,513147,126483 -g1,13155:8569328,42744061 -g1,13155:9167016,42744061 -g1,13155:11078701,42744061 -g1,13155:12039458,42744061 -(1,13155:12039458,42744061:0,452978,115847 -r1,13155:13452859,42744061:1413401,568825,115847 -k1,13155:12039458,42744061:-1413401 -) -(1,13155:12039458,42744061:1413401,452978,115847 -k1,13155:12039458,42744061:3277 -h1,13155:13449582,42744061:0,411205,112570 -) -k1,13156:32583029,42744061:18956500 -g1,13156:32583029,42744061 -) -v1,13158:6630773,43856417:0,393216,0 -(1,13164:6630773,45510161:25952256,2046960,196608 -g1,13164:6630773,45510161 -g1,13164:6630773,45510161 -g1,13164:6434165,45510161 -(1,13164:6434165,45510161:0,2046960,196608 -r1,13164:32779637,45510161:26345472,2243568,196608 -k1,13164:6434165,45510161:-26345472 -) -(1,13164:6434165,45510161:26345472,2046960,196608 -[1,13164:6630773,45510161:25952256,1850352,0 -(1,13160:6630773,44070327:25952256,410518,107478 -(1,13159:6630773,44070327:0,0,0 -g1,13159:6630773,44070327 -g1,13159:6630773,44070327 -g1,13159:6303093,44070327 -(1,13159:6303093,44070327:0,0,0 -) -g1,13159:6630773,44070327 -) -k1,13160:6630773,44070327:0 -g1,13160:10424522,44070327 -g1,13160:11056814,44070327 -g1,13160:13585980,44070327 -g1,13160:15482855,44070327 -g1,13160:16115147,44070327 -g1,13160:18012022,44070327 -g1,13160:18644314,44070327 -g1,13160:19276606,44070327 -g1,13160:20857335,44070327 -g1,13160:22754209,44070327 -g1,13160:23386501,44070327 -g1,13160:27812541,44070327 -h1,13160:28128687,44070327:0,0,0 -k1,13160:32583029,44070327:4454342 -g1,13160:32583029,44070327 -) -(1,13161:6630773,44736505:25952256,410518,101187 -h1,13161:6630773,44736505:0,0,0 -g1,13161:6946919,44736505 -g1,13161:7263065,44736505 -g1,13161:13269833,44736505 -g1,13161:13902125,44736505 -g1,13161:15799000,44736505 -g1,13161:18328166,44736505 -g1,13161:18960458,44736505 -g1,13161:19592750,44736505 -g1,13161:20225042,44736505 -g1,13161:22754208,44736505 -g1,13161:24018792,44736505 -g1,13161:25915666,44736505 -g1,13161:26547958,44736505 -g1,13161:29393270,44736505 -h1,13161:29709416,44736505:0,0,0 -k1,13161:32583029,44736505:2873613 -g1,13161:32583029,44736505 -) -(1,13162:6630773,45402683:25952256,404226,107478 -h1,13162:6630773,45402683:0,0,0 -g1,13162:6946919,45402683 -g1,13162:7263065,45402683 -k1,13162:7263065,45402683:0 -h1,13162:11056813,45402683:0,0,0 -k1,13162:32583029,45402683:21526216 -g1,13162:32583029,45402683 -) -] -) -g1,13164:32583029,45510161 -g1,13164:6630773,45510161 -g1,13164:6630773,45510161 -g1,13164:32583029,45510161 -g1,13164:32583029,45510161 -) -h1,13164:6630773,45706769:0,0,0 -] -(1,13174:32583029,45706769:0,0,0 -g1,13174:32583029,45706769 -) -) -] -(1,13174:6630773,47279633:25952256,0,0 -h1,13174:6630773,47279633:25952256,0,0 -) -] -h1,13174:4262630,4025873:0,0,0 -] -!19580 -}252 -Input:1853:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1854:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1855:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1856:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1857:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1858:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1859:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1860:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1861:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1862:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1863:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 -{253 -[1,13215:4262630,47279633:28320399,43253760,0 -(1,13215:4262630,4025873:0,0,0 -[1,13215:-473657,4025873:25952256,0,0 -(1,13215:-473657,-710414:25952256,0,0 -h1,13215:-473657,-710414:0,0,0 -(1,13215:-473657,-710414:0,0,0 -(1,13215:-473657,-710414:0,0,0 -g1,13215:-473657,-710414 -(1,13215:-473657,-710414:65781,0,65781 -g1,13215:-407876,-710414 -[1,13215:-407876,-644633:0,0,0 +) +g1,13131:28690151,14661426 +k1,13131:32583029,14661426:3892878 +) +(1,13139:6630773,15502914:25952256,513147,134348 +h1,13138:6630773,15502914:983040,0,0 +k1,13138:10126042,15502914:173249 +k1,13138:10958583,15502914:173249 +k1,13138:12867225,15502914:173249 +k1,13138:14059559,15502914:173249 +k1,13138:16498388,15502914:173249 +k1,13138:18764857,15502914:173249 +k1,13138:19806458,15502914:173249 +k1,13138:21083989,15502914:173249 +k1,13138:21944711,15502914:173249 +k1,13138:22473820,15502914:173249 +k1,13138:25409412,15502914:173249 +k1,13138:27744038,15502914:173249 +k1,13138:28545122,15502914:173249 +k1,13138:29921612,15502914:173249 +k1,13138:32583029,15502914:0 +) +(1,13139:6630773,16344402:25952256,513147,126483 +g1,13138:7698354,16344402 +g1,13138:8990068,16344402 +g1,13138:9545157,16344402 +g1,13138:11557112,16344402 +g1,13138:13744048,16344402 +g1,13138:14629439,16344402 +g1,13138:18049107,16344402 +g1,13138:19960792,16344402 +g1,13138:20921549,16344402 +(1,13138:20921549,16344402:0,452978,115847 +r1,13138:22334950,16344402:1413401,568825,115847 +k1,13138:20921549,16344402:-1413401 +) +(1,13138:20921549,16344402:1413401,452978,115847 +k1,13138:20921549,16344402:3277 +h1,13138:22331673,16344402:0,411205,112570 +) +k1,13139:32583029,16344402:10074409 +g1,13139:32583029,16344402 +) +v1,13141:6630773,17534868:0,393216,0 +(1,13145:6630773,17818507:25952256,676855,196608 +g1,13145:6630773,17818507 +g1,13145:6630773,17818507 +g1,13145:6434165,17818507 +(1,13145:6434165,17818507:0,676855,196608 +r1,13145:32779637,17818507:26345472,873463,196608 +k1,13145:6434165,17818507:-26345472 +) +(1,13145:6434165,17818507:26345472,676855,196608 +[1,13145:6630773,17818507:25952256,480247,0 +(1,13143:6630773,17742486:25952256,404226,76021 +(1,13142:6630773,17742486:0,0,0 +g1,13142:6630773,17742486 +g1,13142:6630773,17742486 +g1,13142:6303093,17742486 +(1,13142:6303093,17742486:0,0,0 +) +g1,13142:6630773,17742486 +) +g1,13143:6946919,17742486 +g1,13143:7263065,17742486 +g1,13143:15166707,17742486 +h1,13143:15482853,17742486:0,0,0 +k1,13143:32583029,17742486:17100176 +g1,13143:32583029,17742486 +) +] +) +g1,13145:32583029,17818507 +g1,13145:6630773,17818507 +g1,13145:6630773,17818507 +g1,13145:32583029,17818507 +g1,13145:32583029,17818507 +) +h1,13145:6630773,18015115:0,0,0 +(1,13149:6630773,19380891:25952256,505283,134348 +h1,13148:6630773,19380891:983040,0,0 +k1,13148:9733633,19380891:245490 +k1,13148:11368486,19380891:245490 +k1,13148:12605536,19380891:245490 +k1,13148:14613944,19380891:245490 +k1,13148:17693866,19380891:245490 +k1,13148:18664184,19380891:245490 +k1,13148:19778025,19380891:245489 +k1,13148:21420087,19380891:245490 +k1,13148:24176917,19380891:245490 +(1,13148:24176917,19380891:0,452978,115847 +r1,13148:25238606,19380891:1061689,568825,115847 +k1,13148:24176917,19380891:-1061689 +) +(1,13148:24176917,19380891:1061689,452978,115847 +k1,13148:24176917,19380891:3277 +h1,13148:25235329,19380891:0,411205,112570 +) +k1,13148:25484096,19380891:245490 +k1,13148:26381014,19380891:245490 +k1,13148:27645589,19380891:245490 +(1,13148:27645589,19380891:0,452978,115847 +r1,13148:29410702,19380891:1765113,568825,115847 +k1,13148:27645589,19380891:-1765113 +) +(1,13148:27645589,19380891:1765113,452978,115847 +k1,13148:27645589,19380891:3277 +h1,13148:29407425,19380891:0,411205,112570 +) +k1,13148:29656192,19380891:245490 +k1,13148:32583029,19380891:0 +) +(1,13149:6630773,20222379:25952256,513147,134348 +k1,13148:8262266,20222379:223780 +k1,13148:9354398,20222379:223780 +k1,13148:10556631,20222379:223780 +k1,13148:12435196,20222379:223781 +k1,13148:14881957,20222379:223780 +k1,13148:15765029,20222379:223780 +k1,13148:18007318,20222379:223780 +k1,13148:19625049,20222379:223780 +k1,13148:22611172,20222379:223780 +k1,13148:25196215,20222379:223781 +k1,13148:26492164,20222379:223780 +k1,13148:28001760,20222379:223780 +k1,13148:29880324,20222379:223780 +k1,13148:32583029,20222379:0 +) +(1,13149:6630773,21063867:25952256,505283,7863 +g1,13148:9241072,21063867 +k1,13149:32583029,21063867:21669478 +g1,13149:32583029,21063867 +) +v1,13151:6630773,22254333:0,393216,0 +(1,13159:6630773,25229615:25952256,3368498,196608 +g1,13159:6630773,25229615 +g1,13159:6630773,25229615 +g1,13159:6434165,25229615 +(1,13159:6434165,25229615:0,3368498,196608 +r1,13159:32779637,25229615:26345472,3565106,196608 +k1,13159:6434165,25229615:-26345472 +) +(1,13159:6434165,25229615:26345472,3368498,196608 +[1,13159:6630773,25229615:25952256,3171890,0 +(1,13153:6630773,22468243:25952256,410518,107478 +(1,13152:6630773,22468243:0,0,0 +g1,13152:6630773,22468243 +g1,13152:6630773,22468243 +g1,13152:6303093,22468243 +(1,13152:6303093,22468243:0,0,0 +) +g1,13152:6630773,22468243 +) +k1,13153:6630773,22468243:0 +g1,13153:10424522,22468243 +g1,13153:11056814,22468243 +g1,13153:13585980,22468243 +g1,13153:15482855,22468243 +g1,13153:16115147,22468243 +g1,13153:18012022,22468243 +g1,13153:18644314,22468243 +g1,13153:19276606,22468243 +g1,13153:20857335,22468243 +g1,13153:22754209,22468243 +g1,13153:23386501,22468243 +g1,13153:27812541,22468243 +h1,13153:28128687,22468243:0,0,0 +k1,13153:32583029,22468243:4454342 +g1,13153:32583029,22468243 +) +(1,13154:6630773,23134421:25952256,404226,76021 +h1,13154:6630773,23134421:0,0,0 +g1,13154:6946919,23134421 +g1,13154:7263065,23134421 +g1,13154:13269833,23134421 +g1,13154:13902125,23134421 +g1,13154:15799000,23134421 +h1,13154:16115146,23134421:0,0,0 +k1,13154:32583029,23134421:16467883 +g1,13154:32583029,23134421 +) +(1,13155:6630773,23800599:25952256,404226,107478 +h1,13155:6630773,23800599:0,0,0 +g1,13155:6946919,23800599 +g1,13155:7263065,23800599 +k1,13155:7263065,23800599:0 +h1,13155:11056813,23800599:0,0,0 +k1,13155:32583029,23800599:21526216 +g1,13155:32583029,23800599 +) +(1,13159:6630773,25122137:25952256,410518,107478 +g1,13159:7579210,25122137 +g1,13159:12637541,25122137 +g1,13159:14534415,25122137 +g1,13159:17063581,25122137 +g1,13159:18012018,25122137 +g1,13159:18644310,25122137 +k1,13159:32583029,25122137:13306428 +g1,13159:32583029,25122137 +) +] +) +g1,13159:32583029,25229615 +g1,13159:6630773,25229615 +g1,13159:6630773,25229615 +g1,13159:32583029,25229615 +g1,13159:32583029,25229615 +) +h1,13159:6630773,25426223:0,0,0 +(1,13162:6630773,35078736:25952256,9062689,0 +k1,13162:10523651,35078736:3892878 +h1,13161:10523651,35078736:0,0,0 +(1,13161:10523651,35078736:18166500,9062689,0 +(1,13161:10523651,35078736:18167381,9062712,0 +(1,13161:10523651,35078736:18167381,9062712,0 +(1,13161:10523651,35078736:0,9062712,0 +(1,13161:10523651,35078736:0,14155776,0 +(1,13161:10523651,35078736:28377088,14155776,0 +) +k1,13161:10523651,35078736:-28377088 +) +) +g1,13161:28691032,35078736 +) +) +) +g1,13162:28690151,35078736 +k1,13162:32583029,35078736:3892878 +) +(1,13170:6630773,35920224:25952256,513147,134348 +h1,13169:6630773,35920224:983040,0,0 +k1,13169:8657941,35920224:215098 +k1,13169:10896792,35920224:215099 +k1,13169:11467750,35920224:215098 +k1,13169:13555868,35920224:215099 +k1,13169:16817735,35920224:215098 +k1,13169:17980485,35920224:215099 +k1,13169:19214668,35920224:215098 +k1,13169:21084550,35920224:215098 +k1,13169:23696301,35920224:215099 +k1,13169:24779751,35920224:215098 +k1,13169:26525116,35920224:215099 +k1,13169:27391642,35920224:215098 +k1,13169:28541284,35920224:215099 +k1,13169:29775467,35920224:215098 +k1,13169:32583029,35920224:0 +) +(1,13170:6630773,36761712:25952256,513147,115847 +k1,13169:7487289,36761712:197224 +k1,13169:8703598,36761712:197224 +(1,13169:8703598,36761712:0,452978,115847 +r1,13169:10468711,36761712:1765113,568825,115847 +k1,13169:8703598,36761712:-1765113 +) +(1,13169:8703598,36761712:1765113,452978,115847 +k1,13169:8703598,36761712:3277 +h1,13169:10465434,36761712:0,411205,112570 +) +k1,13169:10665936,36761712:197225 +k1,13169:13650406,36761712:197224 +k1,13169:14499058,36761712:197224 +k1,13169:15052142,36761712:197224 +k1,13169:18007122,36761712:197225 +k1,13169:20214335,36761712:197224 +(1,13169:20214335,36761712:0,452978,115847 +r1,13169:24089719,36761712:3875384,568825,115847 +k1,13169:20214335,36761712:-3875384 +) +(1,13169:20214335,36761712:3875384,452978,115847 +k1,13169:20214335,36761712:3277 +h1,13169:24086442,36761712:0,411205,112570 +) +k1,13169:24460613,36761712:197224 +k1,13169:26038681,36761712:197224 +k1,13169:27730127,36761712:197225 +k1,13169:29607694,36761712:197224 +k1,13169:32583029,36761712:0 +) +(1,13170:6630773,37603200:25952256,513147,134348 +k1,13169:7851363,37603200:201505 +k1,13169:10318447,37603200:201504 +(1,13169:10318447,37603200:0,452978,115847 +r1,13169:12083560,37603200:1765113,568825,115847 +k1,13169:10318447,37603200:-1765113 +) +(1,13169:10318447,37603200:1765113,452978,115847 +k1,13169:10318447,37603200:3277 +h1,13169:12080283,37603200:0,411205,112570 +) +k1,13169:12285065,37603200:201505 +k1,13169:15294132,37603200:201505 +k1,13169:16430179,37603200:201504 +k1,13169:17247722,37603200:201505 +(1,13169:17247722,37603200:0,452978,122846 +r1,13169:20067971,37603200:2820249,575824,122846 +k1,13169:17247722,37603200:-2820249 +) +(1,13169:17247722,37603200:2820249,452978,122846 +k1,13169:17247722,37603200:3277 +h1,13169:20064694,37603200:0,411205,112570 +) +k1,13169:20269476,37603200:201505 +k1,13169:21699780,37603200:201504 +k1,13169:22848936,37603200:201505 +k1,13169:24253681,37603200:201504 +k1,13169:25732483,37603200:201505 +k1,13169:27665449,37603200:201505 +k1,13169:28820502,37603200:201504 +k1,13169:30114492,37603200:201505 +(1,13169:30114492,37603200:0,452978,115847 +r1,13169:32583029,37603200:2468537,568825,115847 +k1,13169:30114492,37603200:-2468537 +) +(1,13169:30114492,37603200:2468537,452978,115847 +k1,13169:30114492,37603200:3277 +h1,13169:32579752,37603200:0,411205,112570 +) +k1,13169:32583029,37603200:0 +) +(1,13170:6630773,38444688:25952256,513147,126483 +g1,13169:7902171,38444688 +g1,13169:9304641,38444688 +g1,13169:11272687,38444688 +g1,13169:12219682,38444688 +g1,13169:15138000,38444688 +g1,13169:16098757,38444688 +g1,13169:17429793,38444688 +g1,13169:19330992,38444688 +g1,13169:21146339,38444688 +g1,13169:24427726,38444688 +g1,13169:26764739,38444688 +g1,13169:27615396,38444688 +k1,13170:32583029,38444688:4379120 +g1,13170:32583029,38444688 +) +v1,13172:6630773,39635154:0,393216,0 +(1,13178:6630773,41288898:25952256,2046960,196608 +g1,13178:6630773,41288898 +g1,13178:6630773,41288898 +g1,13178:6434165,41288898 +(1,13178:6434165,41288898:0,2046960,196608 +r1,13178:32779637,41288898:26345472,2243568,196608 +k1,13178:6434165,41288898:-26345472 +) +(1,13178:6434165,41288898:26345472,2046960,196608 +[1,13178:6630773,41288898:25952256,1850352,0 +(1,13174:6630773,39849064:25952256,410518,107478 +(1,13173:6630773,39849064:0,0,0 +g1,13173:6630773,39849064 +g1,13173:6630773,39849064 +g1,13173:6303093,39849064 +(1,13173:6303093,39849064:0,0,0 +) +g1,13173:6630773,39849064 +) +k1,13174:6630773,39849064:0 +g1,13174:10424522,39849064 +g1,13174:11056814,39849064 +g1,13174:13585980,39849064 +g1,13174:15482855,39849064 +g1,13174:16115147,39849064 +g1,13174:18012022,39849064 +g1,13174:18644314,39849064 +g1,13174:19276606,39849064 +g1,13174:20857335,39849064 +g1,13174:22754209,39849064 +g1,13174:23386501,39849064 +g1,13174:27812541,39849064 +h1,13174:28128687,39849064:0,0,0 +k1,13174:32583029,39849064:4454342 +g1,13174:32583029,39849064 +) +(1,13175:6630773,40515242:25952256,404226,82312 +h1,13175:6630773,40515242:0,0,0 +g1,13175:6946919,40515242 +g1,13175:7263065,40515242 +g1,13175:13269833,40515242 +g1,13175:13902125,40515242 +g1,13175:15799000,40515242 +g1,13175:17695874,40515242 +g1,13175:18328166,40515242 +g1,13175:21173478,40515242 +h1,13175:21489624,40515242:0,0,0 +k1,13175:32583029,40515242:11093405 +g1,13175:32583029,40515242 +) +(1,13176:6630773,41181420:25952256,404226,107478 +h1,13176:6630773,41181420:0,0,0 +g1,13176:6946919,41181420 +g1,13176:7263065,41181420 +k1,13176:7263065,41181420:0 +h1,13176:11056813,41181420:0,0,0 +k1,13176:32583029,41181420:21526216 +g1,13176:32583029,41181420 +) +] +) +g1,13178:32583029,41288898 +g1,13178:6630773,41288898 +g1,13178:6630773,41288898 +g1,13178:32583029,41288898 +g1,13178:32583029,41288898 +) +h1,13178:6630773,41485506:0,0,0 +(1,13182:6630773,42851282:25952256,513147,134348 +h1,13181:6630773,42851282:983040,0,0 +k1,13181:10225658,42851282:272865 +k1,13181:11157815,42851282:272865 +k1,13181:13166074,42851282:272866 +k1,13181:14458024,42851282:272865 +k1,13181:16996469,42851282:272865 +(1,13181:16996469,42851282:0,459977,115847 +r1,13181:19465006,42851282:2468537,575824,115847 +k1,13181:16996469,42851282:-2468537 +) +(1,13181:16996469,42851282:2468537,459977,115847 +k1,13181:16996469,42851282:3277 +h1,13181:19461729,42851282:0,411205,112570 +) +k1,13181:19737871,42851282:272865 +k1,13181:20958387,42851282:272865 +k1,13181:21587112,42851282:272865 +k1,13181:23672704,42851282:272866 +k1,13181:27262346,42851282:272865 +k1,13181:28221373,42851282:272865 +k1,13181:31714677,42851282:272865 +k1,13181:32583029,42851282:0 +) +(1,13182:6630773,43692770:25952256,513147,134348 +k1,13181:8295403,43692770:227425 +k1,13181:8878687,43692770:227424 +k1,13181:11868455,43692770:227425 +(1,13181:11868455,43692770:0,459977,115847 +r1,13181:14336992,43692770:2468537,575824,115847 +k1,13181:11868455,43692770:-2468537 +) +(1,13181:11868455,43692770:2468537,459977,115847 +k1,13181:11868455,43692770:3277 +h1,13181:14333715,43692770:0,411205,112570 +) +k1,13181:14564416,43692770:227424 +k1,13181:15478003,43692770:227425 +k1,13181:16476130,43692770:227424 +k1,13181:19949553,43692770:227425 +k1,13181:20804812,43692770:227424 +k1,13181:22235478,43692770:227425 +k1,13181:25124319,43692770:227424 +k1,13181:26220096,43692770:227425 +k1,13181:27540005,43692770:227424 +k1,13181:28123290,43692770:227425 +k1,13181:31923737,43692770:227424 +k1,13181:32583029,43692770:0 +) +(1,13182:6630773,44534258:25952256,513147,126483 +g1,13181:8569328,44534258 +g1,13181:9167016,44534258 +g1,13181:11078701,44534258 +g1,13181:12039458,44534258 +(1,13181:12039458,44534258:0,452978,115847 +r1,13181:13452859,44534258:1413401,568825,115847 +k1,13181:12039458,44534258:-1413401 +) +(1,13181:12039458,44534258:1413401,452978,115847 +k1,13181:12039458,44534258:3277 +h1,13181:13449582,44534258:0,411205,112570 +) +k1,13182:32583029,44534258:18956500 +g1,13182:32583029,44534258 +) +v1,13184:6630773,45724724:0,393216,0 +] +(1,13190:32583029,45706769:0,0,0 +g1,13190:32583029,45706769 +) +) +] +(1,13190:6630773,47279633:25952256,0,0 +h1,13190:6630773,47279633:25952256,0,0 +) +] +h1,13190:4262630,4025873:0,0,0 +] +!17851 +}253 +Input:1849:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1850:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1851:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1852:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1853:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1854:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1855:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1856:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1857:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1858:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1859:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 +{254 +[1,13232:4262630,47279633:28320399,43253760,0 +(1,13232:4262630,4025873:0,0,0 +[1,13232:-473657,4025873:25952256,0,0 +(1,13232:-473657,-710414:25952256,0,0 +h1,13232:-473657,-710414:0,0,0 +(1,13232:-473657,-710414:0,0,0 +(1,13232:-473657,-710414:0,0,0 +g1,13232:-473657,-710414 +(1,13232:-473657,-710414:65781,0,65781 +g1,13232:-407876,-710414 +[1,13232:-407876,-644633:0,0,0 ] ) -k1,13215:-473657,-710414:-65781 +k1,13232:-473657,-710414:-65781 ) ) -k1,13215:25478599,-710414:25952256 -g1,13215:25478599,-710414 +k1,13232:25478599,-710414:25952256 +g1,13232:25478599,-710414 ) ] ) -[1,13215:6630773,47279633:25952256,43253760,0 -[1,13215:6630773,4812305:25952256,786432,0 -(1,13215:6630773,4812305:25952256,513147,134348 -(1,13215:6630773,4812305:25952256,513147,134348 -g1,13215:3078558,4812305 -[1,13215:3078558,4812305:0,0,0 -(1,13215:3078558,2439708:0,1703936,0 -k1,13215:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13215:2537886,2439708:1179648,16384,0 +[1,13232:6630773,47279633:25952256,43253760,0 +[1,13232:6630773,4812305:25952256,786432,0 +(1,13232:6630773,4812305:25952256,485622,11795 +(1,13232:6630773,4812305:25952256,485622,11795 +g1,13232:3078558,4812305 +[1,13232:3078558,4812305:0,0,0 +(1,13232:3078558,2439708:0,1703936,0 +k1,13232:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13232:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13215:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13232:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13215:3078558,4812305:0,0,0 -(1,13215:3078558,2439708:0,1703936,0 -g1,13215:29030814,2439708 -g1,13215:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13215:36151628,1915420:16384,1179648,0 +[1,13232:3078558,4812305:0,0,0 +(1,13232:3078558,2439708:0,1703936,0 +g1,13232:29030814,2439708 +g1,13232:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13232:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13215:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13232:37855564,2439708:1179648,16384,0 ) ) -k1,13215:3078556,2439708:-34777008 +k1,13232:3078556,2439708:-34777008 ) ] -[1,13215:3078558,4812305:0,0,0 -(1,13215:3078558,49800853:0,16384,2228224 -k1,13215:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13215:2537886,49800853:1179648,16384,0 +[1,13232:3078558,4812305:0,0,0 +(1,13232:3078558,49800853:0,16384,2228224 +k1,13232:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13232:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13215:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13232:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13215:3078558,4812305:0,0,0 -(1,13215:3078558,49800853:0,16384,2228224 -g1,13215:29030814,49800853 -g1,13215:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13215:36151628,51504789:16384,1179648,0 +[1,13232:3078558,4812305:0,0,0 +(1,13232:3078558,49800853:0,16384,2228224 +g1,13232:29030814,49800853 +g1,13232:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13232:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13215:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13232:37855564,49800853:1179648,16384,0 +) ) +k1,13232:3078556,49800853:-34777008 +) +] +g1,13232:6630773,4812305 +g1,13232:6630773,4812305 +g1,13232:9560887,4812305 +k1,13232:31387651,4812305:21826764 ) -k1,13215:3078556,49800853:-34777008 ) ] -g1,13215:6630773,4812305 -k1,13215:25712890,4812305:17886740 -g1,13215:29057847,4812305 -g1,13215:29873114,4812305 -) -) -] -[1,13215:6630773,45706769:25952256,40108032,0 -(1,13215:6630773,45706769:25952256,40108032,0 -(1,13215:6630773,45706769:0,0,0 -g1,13215:6630773,45706769 +[1,13232:6630773,45706769:25952256,40108032,0 +(1,13232:6630773,45706769:25952256,40108032,0 +(1,13232:6630773,45706769:0,0,0 +g1,13232:6630773,45706769 ) -[1,13215:6630773,45706769:25952256,40108032,0 -(1,13167:6630773,14661426:25952256,9062689,0 -k1,13167:10523651,14661426:3892878 -h1,13166:10523651,14661426:0,0,0 -(1,13166:10523651,14661426:18166500,9062689,0 -(1,13166:10523651,14661426:18167381,9062712,0 -(1,13166:10523651,14661426:18167381,9062712,0 -(1,13166:10523651,14661426:0,9062712,0 -(1,13166:10523651,14661426:0,14155776,0 -(1,13166:10523651,14661426:28377088,14155776,0 -) -k1,13166:10523651,14661426:-28377088 -) -) -g1,13166:28691032,14661426 -) -) -) -g1,13167:28690151,14661426 -k1,13167:32583029,14661426:3892878 -) -(1,13175:6630773,15502914:25952256,513147,134348 -h1,13174:6630773,15502914:983040,0,0 -k1,13174:8286868,15502914:203162 -k1,13174:9021527,15502914:203162 -k1,13174:11854648,15502914:203161 -k1,13174:12709238,15502914:203162 -k1,13174:14004885,15502914:203162 -k1,13174:15910017,15502914:203162 -k1,13174:17829566,15502914:203161 -k1,13174:18692020,15502914:203162 -k1,13174:21386861,15502914:203162 -k1,13174:24570600,15502914:203162 -k1,13174:26304679,15502914:203158 -k1,13174:27699285,15502914:203161 -k1,13174:29484486,15502914:203162 -k1,13174:30373810,15502914:203162 -k1,13175:32583029,15502914:0 -) -(1,13175:6630773,16344402:25952256,513147,134348 -k1,13174:8390864,16344402:205577 -k1,13174:9668610,16344402:205577 -k1,13174:10742538,16344402:205576 -k1,13174:12080577,16344402:205577 -k1,13174:13566072,16344402:205577 -k1,13174:15147250,16344402:205577 -k1,13174:16525266,16344402:205577 -k1,13174:18855520,16344402:205577 -k1,13174:22052815,16344402:205576 -k1,13174:22917684,16344402:205577 -k1,13174:24142346,16344402:205577 -k1,13174:25440408,16344402:205577 -k1,13174:26313141,16344402:205577 -(1,13174:26313141,16344402:0,452978,115847 -r1,13174:28078254,16344402:1765113,568825,115847 -k1,13174:26313141,16344402:-1765113 -) -(1,13174:26313141,16344402:1765113,452978,115847 -k1,13174:26313141,16344402:3277 -h1,13174:28074977,16344402:0,411205,112570 -) -k1,13174:28283831,16344402:205577 -k1,13174:29140835,16344402:205576 -k1,13174:30033885,16344402:205577 -k1,13174:30595322,16344402:205577 -k1,13174:32583029,16344402:0 -) -(1,13175:6630773,17185890:25952256,513147,134348 -k1,13174:10102265,17185890:221562 -k1,13174:10939865,17185890:221562 -k1,13174:11949825,17185890:221562 -k1,13174:15782421,17185890:221562 -k1,13174:17236060,17185890:221562 -k1,13174:19736309,17185890:221562 -h1,13174:20706897,17185890:0,0,0 -k1,13174:20928459,17185890:221562 -k1,13174:21959391,17185890:221562 -k1,13174:23679106,17185890:221562 -h1,13174:24874483,17185890:0,0,0 -k1,13174:25096045,17185890:221562 -k1,13174:26265258,17185890:221562 -k1,13174:28604288,17185890:221562 -k1,13174:30648406,17185890:221562 -k1,13174:32583029,17185890:0 -) -(1,13175:6630773,18027378:25952256,513147,126483 -k1,13174:8083689,18027378:249675 -k1,13174:9986836,18027378:249674 -k1,13174:12224218,18027378:249675 -k1,13174:13867843,18027378:249674 -(1,13174:13867843,18027378:0,452978,115847 -r1,13174:15632956,18027378:1765113,568825,115847 -k1,13174:13867843,18027378:-1765113 -) -(1,13174:13867843,18027378:1765113,452978,115847 -k1,13174:13867843,18027378:3277 -h1,13174:15629679,18027378:0,411205,112570 -) -k1,13174:16263395,18027378:249675 -k1,13174:17140904,18027378:249674 -k1,13174:18409664,18027378:249675 -k1,13174:19965471,18027378:249674 -k1,13174:21371856,18027378:249675 -k1,13174:22489882,18027378:249674 -k1,13174:23427030,18027378:249675 -k1,13174:24032564,18027378:249674 -k1,13174:29793161,18027378:249675 -k1,13174:32583029,18027378:0 -) -(1,13175:6630773,18868866:25952256,505283,115847 -k1,13174:7462404,18868866:180203 -k1,13174:10235211,18868866:180203 -k1,13174:11663875,18868866:180203 -(1,13174:11870969,18868866:0,414482,115847 -r1,13174:13284370,18868866:1413401,530329,115847 -k1,13174:11870969,18868866:-1413401 -) -(1,13174:11870969,18868866:1413401,414482,115847 -k1,13174:11870969,18868866:3277 -h1,13174:13281093,18868866:0,411205,112570 -) -k1,13174:13671667,18868866:180203 -k1,13174:15920186,18868866:180203 -k1,13174:18710033,18868866:180203 -k1,13174:23297532,18868866:180203 -(1,13174:23504626,18868866:0,414482,115847 -r1,13174:24918027,18868866:1413401,530329,115847 -k1,13174:23504626,18868866:-1413401 -) -(1,13174:23504626,18868866:1413401,414482,115847 -k1,13174:23504626,18868866:3277 -h1,13174:24914750,18868866:0,411205,112570 -) -k1,13174:25478994,18868866:180203 -(1,13174:25478994,18868866:0,452978,115847 -r1,13174:28650954,18868866:3171960,568825,115847 -k1,13174:25478994,18868866:-3171960 -) -(1,13174:25478994,18868866:3171960,452978,115847 -k1,13174:25478994,18868866:3277 -h1,13174:28647677,18868866:0,411205,112570 -) -k1,13174:28831157,18868866:180203 -k1,13174:29542857,18868866:180203 -k1,13174:30078920,18868866:180203 -k1,13174:31648486,18868866:180203 -k1,13174:32583029,18868866:0 -) -(1,13175:6630773,19710354:25952256,513147,126483 -k1,13174:9642872,19710354:253689 -k1,13174:10512600,19710354:253690 -k1,13174:11785374,19710354:253689 -k1,13174:12453851,19710354:253634 -k1,13174:16662639,19710354:253690 -k1,13174:19706196,19710354:253689 -(1,13174:19706196,19710354:0,452978,115847 -r1,13174:23229868,19710354:3523672,568825,115847 -k1,13174:19706196,19710354:-3523672 -) -(1,13174:19706196,19710354:3523672,452978,115847 -k1,13174:19706196,19710354:3277 -h1,13174:23226591,19710354:0,411205,112570 -) -k1,13174:23483557,19710354:253689 -k1,13174:24268743,19710354:253689 -k1,13174:25808249,19710354:253690 -k1,13174:27629559,19710354:253689 -k1,13174:28471761,19710354:253689 -k1,13174:29916896,19710354:253690 -k1,13174:30702082,19710354:253689 -k1,13174:31311631,19710354:253689 -k1,13175:32583029,19710354:0 -) -(1,13175:6630773,20551842:25952256,513147,134348 -k1,13174:9369012,20551842:270809 -k1,13174:14696580,20551842:270810 -k1,13174:15626681,20551842:270809 -k1,13174:16916575,20551842:270809 -k1,13174:22698307,20551842:270810 -k1,13174:25932654,20551842:270809 -k1,13174:28546375,20551842:270809 -k1,13174:29468613,20551842:270810 -k1,13174:31116333,20551842:270809 -k1,13174:32583029,20551842:0 -) -(1,13175:6630773,21393330:25952256,513147,134348 -k1,13174:9184945,21393330:284005 -k1,13174:10488035,21393330:284005 -k1,13174:11459512,21393330:284004 -k1,13174:12275014,21393330:284005 -k1,13174:14136471,21393330:284005 -k1,13174:15814427,21393330:284005 -k1,13174:16869135,21393330:284005 -k1,13174:19765404,21393330:284004 -k1,13174:23334073,21393330:284005 -k1,13174:24486430,21393330:284005 -k1,13174:25585703,21393330:284005 -k1,13174:26935978,21393330:284004 -k1,13174:28750249,21393330:284005 -k1,13174:29685682,21393330:284005 -k1,13174:32583029,21393330:0 -) -(1,13175:6630773,22234818:25952256,513147,134348 -k1,13174:9259034,22234818:198186 -k1,13174:11935792,22234818:198186 -k1,13174:14144622,22234818:198185 -k1,13174:15290459,22234818:198186 -k1,13174:16507730,22234818:198186 -k1,13174:20316950,22234818:198186 -k1,13174:21166563,22234818:198185 -k1,13174:22112515,22234818:198186 -k1,13174:24196827,22234818:198186 -k1,13174:25348562,22234818:198186 -k1,13174:27077013,22234818:198185 -k1,13174:27926627,22234818:198186 -k1,13174:29059356,22234818:198186 -(1,13174:29059356,22234818:0,414482,115847 -r1,13174:32583029,22234818:3523673,530329,115847 -k1,13174:29059356,22234818:-3523673 -) -(1,13174:29059356,22234818:3523673,414482,115847 -g1,13174:30117769,22234818 -g1,13174:30821193,22234818 -h1,13174:32579752,22234818:0,411205,112570 -) -k1,13174:32583029,22234818:0 -) -(1,13175:6630773,23076306:25952256,513147,126483 -k1,13174:9340521,23076306:180058 -k1,13174:12364186,23076306:180058 -k1,13174:14481488,23076306:180058 -k1,13174:15653106,23076306:180058 -k1,13174:16899435,23076306:180058 -k1,13174:20373988,23076306:180058 -k1,13174:21315575,23076306:180059 -k1,13174:22514718,23076306:180058 -(1,13174:22514718,23076306:0,452978,115847 -r1,13174:25686678,23076306:3171960,568825,115847 -k1,13174:22514718,23076306:-3171960 -) -(1,13174:22514718,23076306:3171960,452978,115847 -k1,13174:22514718,23076306:3277 -h1,13174:25683401,23076306:0,411205,112570 -) -k1,13174:25866736,23076306:180058 -k1,13174:28501117,23076306:180058 -k1,13174:29628826,23076306:180058 -(1,13174:29628826,23076306:0,452978,115847 -r1,13174:30690515,23076306:1061689,568825,115847 -k1,13174:29628826,23076306:-1061689 -) -(1,13174:29628826,23076306:1061689,452978,115847 -k1,13174:29628826,23076306:3277 -h1,13174:30687238,23076306:0,411205,112570 -) -k1,13174:30870573,23076306:180058 -k1,13174:32583029,23076306:0 -) -(1,13175:6630773,23917794:25952256,505283,7863 -k1,13175:32583028,23917794:23460576 -g1,13175:32583028,23917794 -) -v1,13177:6630773,25108260:0,393216,0 -(1,13185:6630773,28056611:25952256,3341567,196608 -g1,13185:6630773,28056611 -g1,13185:6630773,28056611 -g1,13185:6434165,28056611 -(1,13185:6434165,28056611:0,3341567,196608 -r1,13185:32779637,28056611:26345472,3538175,196608 -k1,13185:6434165,28056611:-26345472 -) -(1,13185:6434165,28056611:26345472,3341567,196608 -[1,13185:6630773,28056611:25952256,3144959,0 -(1,13179:6630773,25315878:25952256,404226,107478 -(1,13178:6630773,25315878:0,0,0 -g1,13178:6630773,25315878 -g1,13178:6630773,25315878 -g1,13178:6303093,25315878 -(1,13178:6303093,25315878:0,0,0 -) -g1,13178:6630773,25315878 -) -k1,13179:6630773,25315878:0 -g1,13179:12321396,25315878 -g1,13179:15482853,25315878 -g1,13179:17379728,25315878 -g1,13179:19276602,25315878 -g1,13179:19908894,25315878 -g1,13179:22438060,25315878 -h1,13179:22754206,25315878:0,0,0 -k1,13179:32583029,25315878:9828823 -g1,13179:32583029,25315878 -) -(1,13180:6630773,25982056:25952256,404226,107478 -h1,13180:6630773,25982056:0,0,0 -g1,13180:6946919,25982056 -g1,13180:7263065,25982056 -g1,13180:11372959,25982056 -h1,13180:11689105,25982056:0,0,0 -k1,13180:32583029,25982056:20893924 -g1,13180:32583029,25982056 -) -(1,13181:6630773,26648234:25952256,404226,107478 -h1,13181:6630773,26648234:0,0,0 -g1,13181:6946919,26648234 -g1,13181:7263065,26648234 -g1,13181:13269833,26648234 -g1,13181:13902125,26648234 -k1,13181:13902125,26648234:0 -h1,13181:15798999,26648234:0,0,0 -k1,13181:32583029,26648234:16784030 -g1,13181:32583029,26648234 -) -(1,13182:6630773,27314412:25952256,410518,101187 -h1,13182:6630773,27314412:0,0,0 -g1,13182:6946919,27314412 -g1,13182:7263065,27314412 -g1,13182:7579211,27314412 -g1,13182:7895357,27314412 -g1,13182:8211503,27314412 -g1,13182:8527649,27314412 -g1,13182:8843795,27314412 -g1,13182:9159941,27314412 -g1,13182:9476087,27314412 -g1,13182:9792233,27314412 -g1,13182:10108379,27314412 -g1,13182:10424525,27314412 -g1,13182:10740671,27314412 -g1,13182:11056817,27314412 -g1,13182:13585983,27314412 -g1,13182:14218275,27314412 -g1,13182:14534421,27314412 -g1,13182:15166713,27314412 -g1,13182:15799005,27314412 -g1,13182:19592753,27314412 -g1,13182:20857336,27314412 -k1,13182:20857336,27314412:0 -h1,13182:21805773,27314412:0,0,0 -k1,13182:32583029,27314412:10777256 -g1,13182:32583029,27314412 -) -(1,13183:6630773,27980590:25952256,404226,76021 -h1,13183:6630773,27980590:0,0,0 -g1,13183:6946919,27980590 -g1,13183:7263065,27980590 -g1,13183:7579211,27980590 -g1,13183:7895357,27980590 -g1,13183:8211503,27980590 -g1,13183:8527649,27980590 -g1,13183:8843795,27980590 -g1,13183:9159941,27980590 -g1,13183:9476087,27980590 -g1,13183:9792233,27980590 -g1,13183:10108379,27980590 -g1,13183:10424525,27980590 -g1,13183:10740671,27980590 -g1,13183:11056817,27980590 -g1,13183:12005254,27980590 -g1,13183:12637546,27980590 -h1,13183:14534420,27980590:0,0,0 -k1,13183:32583028,27980590:18048608 -g1,13183:32583028,27980590 -) -] -) -g1,13185:32583029,28056611 -g1,13185:6630773,28056611 -g1,13185:6630773,28056611 -g1,13185:32583029,28056611 -g1,13185:32583029,28056611 -) -h1,13185:6630773,28253219:0,0,0 -(1,13189:6630773,29618995:25952256,513147,126483 -h1,13188:6630773,29618995:983040,0,0 -k1,13188:8409017,29618995:167369 -k1,13188:9595471,29618995:167369 -k1,13188:12004171,29618995:167369 -k1,13188:14832956,29618995:167368 -k1,13188:15868677,29618995:167369 -k1,13188:17996883,29618995:167369 -k1,13188:19183337,29618995:167369 -k1,13188:21004179,29618995:167369 -k1,13188:23159255,29618995:167369 -k1,13188:25740969,29618995:167368 -k1,13188:26524376,29618995:167369 -k1,13188:27710830,29618995:167369 -k1,13188:29865906,29618995:167369 -k1,13188:32583029,29618995:0 -) -(1,13189:6630773,30460483:25952256,513147,134348 -k1,13188:8050884,30460483:228666 -k1,13188:10709625,30460483:228666 -k1,13188:11957376,30460483:228666 -k1,13188:14664613,30460483:228665 -k1,13188:16903924,30460483:228666 -k1,13188:20203607,30460483:228666 -k1,13188:21628960,30460483:228666 -k1,13188:23925942,30460483:228666 -k1,13188:25667834,30460483:228666 -k1,13188:26844150,30460483:228665 -k1,13188:28091901,30460483:228666 -k1,13188:31931601,30460483:228666 -k1,13188:32583029,30460483:0 -) -(1,13189:6630773,31301971:25952256,513147,134348 -k1,13188:7643352,31301971:264813 -k1,13188:9620622,31301971:264814 -k1,13188:10989717,31301971:264813 -k1,13188:12002296,31301971:264813 -k1,13188:14502543,31301971:264814 -k1,13188:15380118,31301971:264813 -k1,13188:16951064,31301971:264813 -k1,13188:19225867,31301971:264814 -k1,13188:20509765,31301971:264813 -k1,13188:24418380,31301971:264813 -k1,13188:25342486,31301971:264814 -k1,13188:26626384,31301971:264813 -k1,13188:27305974,31301971:264747 -k1,13188:30586755,31301971:264814 -k1,13188:31923737,31301971:264813 -k1,13188:32583029,31301971:0 -) -(1,13189:6630773,32143459:25952256,505283,115847 -g1,13188:8938951,32143459 -g1,13188:10157265,32143459 -g1,13188:12424810,32143459 -g1,13188:14137265,32143459 -g1,13188:14952532,32143459 -(1,13188:14952532,32143459:0,459977,115847 -r1,13188:17421069,32143459:2468537,575824,115847 -k1,13188:14952532,32143459:-2468537 -) -(1,13188:14952532,32143459:2468537,459977,115847 -k1,13188:14952532,32143459:3277 -h1,13188:17417792,32143459:0,411205,112570 -) -g1,13188:17620298,32143459 -g1,13188:19010972,32143459 -(1,13188:19010972,32143459:0,414482,115847 -r1,13188:20776085,32143459:1765113,530329,115847 -k1,13188:19010972,32143459:-1765113 -) -(1,13188:19010972,32143459:1765113,414482,115847 -k1,13188:19010972,32143459:3277 -h1,13188:20772808,32143459:0,411205,112570 -) -g1,13188:20975314,32143459 -g1,13188:22796559,32143459 -g1,13188:24976941,32143459 -g1,13188:26627792,32143459 -k1,13189:32583029,32143459:4079597 -g1,13189:32583029,32143459 -) -v1,13191:6630773,33333925:0,393216,0 -(1,13200:6630773,36948454:25952256,4007745,196608 -g1,13200:6630773,36948454 -g1,13200:6630773,36948454 -g1,13200:6434165,36948454 -(1,13200:6434165,36948454:0,4007745,196608 -r1,13200:32779637,36948454:26345472,4204353,196608 -k1,13200:6434165,36948454:-26345472 -) -(1,13200:6434165,36948454:26345472,4007745,196608 -[1,13200:6630773,36948454:25952256,3811137,0 -(1,13193:6630773,33541543:25952256,404226,107478 -(1,13192:6630773,33541543:0,0,0 -g1,13192:6630773,33541543 -g1,13192:6630773,33541543 -g1,13192:6303093,33541543 -(1,13192:6303093,33541543:0,0,0 -) -g1,13192:6630773,33541543 -) -k1,13193:6630773,33541543:0 -g1,13193:12321396,33541543 -g1,13193:15482853,33541543 -g1,13193:17379728,33541543 -g1,13193:19276602,33541543 -g1,13193:19908894,33541543 -g1,13193:22438060,33541543 -h1,13193:22754206,33541543:0,0,0 -k1,13193:32583029,33541543:9828823 -g1,13193:32583029,33541543 -) -(1,13194:6630773,34207721:25952256,404226,107478 -h1,13194:6630773,34207721:0,0,0 -g1,13194:6946919,34207721 -g1,13194:7263065,34207721 -g1,13194:11372959,34207721 -h1,13194:11689105,34207721:0,0,0 -k1,13194:32583029,34207721:20893924 -g1,13194:32583029,34207721 -) -(1,13195:6630773,34873899:25952256,404226,107478 -h1,13195:6630773,34873899:0,0,0 -g1,13195:6946919,34873899 -g1,13195:7263065,34873899 -g1,13195:13269833,34873899 -g1,13195:13902125,34873899 -k1,13195:13902125,34873899:0 -h1,13195:15798999,34873899:0,0,0 -k1,13195:32583029,34873899:16784030 -g1,13195:32583029,34873899 -) -(1,13196:6630773,35540077:25952256,410518,107478 -h1,13196:6630773,35540077:0,0,0 -g1,13196:6946919,35540077 -g1,13196:7263065,35540077 -g1,13196:7579211,35540077 -g1,13196:7895357,35540077 -g1,13196:8211503,35540077 -g1,13196:8527649,35540077 -g1,13196:8843795,35540077 -g1,13196:9159941,35540077 -g1,13196:9476087,35540077 -g1,13196:9792233,35540077 -g1,13196:10108379,35540077 -g1,13196:10424525,35540077 -g1,13196:10740671,35540077 -g1,13196:11056817,35540077 -g1,13196:14850565,35540077 -g1,13196:15482857,35540077 -g1,13196:19592752,35540077 -g1,13196:20225044,35540077 -g1,13196:20541190,35540077 -g1,13196:21173482,35540077 -g1,13196:21805774,35540077 -g1,13196:23702648,35540077 -g1,13196:24334940,35540077 -g1,13196:25283377,35540077 -g1,13196:25915669,35540077 -g1,13196:26864106,35540077 -g1,13196:27496398,35540077 -k1,13196:27496398,35540077:0 -h1,13196:28444835,35540077:0,0,0 -k1,13196:32583029,35540077:4138194 -g1,13196:32583029,35540077 -) -(1,13197:6630773,36206255:25952256,404226,82312 -h1,13197:6630773,36206255:0,0,0 -g1,13197:6946919,36206255 -g1,13197:7263065,36206255 -g1,13197:7579211,36206255 -g1,13197:7895357,36206255 -g1,13197:8211503,36206255 -g1,13197:8527649,36206255 -g1,13197:8843795,36206255 -g1,13197:9159941,36206255 -g1,13197:9476087,36206255 -g1,13197:9792233,36206255 -g1,13197:10108379,36206255 -g1,13197:10424525,36206255 -g1,13197:10740671,36206255 -g1,13197:11056817,36206255 -g1,13197:11372963,36206255 -g1,13197:11689109,36206255 -g1,13197:12005255,36206255 -g1,13197:12321401,36206255 -g1,13197:12637547,36206255 -g1,13197:12953693,36206255 -g1,13197:13269839,36206255 -g1,13197:13585985,36206255 -g1,13197:13902131,36206255 -g1,13197:14218277,36206255 -g1,13197:14534423,36206255 -g1,13197:14850569,36206255 -g1,13197:15166715,36206255 -g1,13197:15482861,36206255 -g1,13197:15799007,36206255 -g1,13197:16115153,36206255 -g1,13197:16431299,36206255 -g1,13197:16747445,36206255 -g1,13197:17063591,36206255 -g1,13197:18960465,36206255 -g1,13197:19592757,36206255 -g1,13197:22754215,36206255 -g1,13197:23386507,36206255 -g1,13197:24967236,36206255 -g1,13197:25599528,36206255 -g1,13197:26231820,36206255 -k1,13197:26231820,36206255:0 -h1,13197:28444840,36206255:0,0,0 -k1,13197:32583029,36206255:4138189 -g1,13197:32583029,36206255 -) -(1,13198:6630773,36872433:25952256,404226,76021 -h1,13198:6630773,36872433:0,0,0 -g1,13198:6946919,36872433 -g1,13198:7263065,36872433 -g1,13198:7579211,36872433 -g1,13198:7895357,36872433 -g1,13198:8211503,36872433 -g1,13198:8527649,36872433 -g1,13198:8843795,36872433 -g1,13198:9159941,36872433 -g1,13198:9476087,36872433 -g1,13198:9792233,36872433 -g1,13198:10108379,36872433 -g1,13198:10424525,36872433 -g1,13198:10740671,36872433 -g1,13198:11056817,36872433 -g1,13198:12005254,36872433 -g1,13198:12637546,36872433 -h1,13198:14534420,36872433:0,0,0 -k1,13198:32583028,36872433:18048608 -g1,13198:32583028,36872433 -) -] -) -g1,13200:32583029,36948454 -g1,13200:6630773,36948454 -g1,13200:6630773,36948454 -g1,13200:32583029,36948454 -g1,13200:32583029,36948454 -) -h1,13200:6630773,37145062:0,0,0 -(1,13204:6630773,38510838:25952256,513147,126483 -h1,13203:6630773,38510838:983040,0,0 -k1,13203:8481056,38510838:239408 -k1,13203:10412604,38510838:239408 -k1,13203:12349394,38510838:239408 -k1,13203:13046899,38510838:239408 -k1,13203:13817804,38510838:239408 -k1,13203:16953903,38510838:239408 -k1,13203:17844738,38510838:239407 -k1,13203:20881223,38510838:239408 -k1,13203:22728229,38510838:239408 -k1,13203:24361588,38510838:239408 -k1,13203:26313452,38510838:239408 -k1,13203:28540567,38510838:239408 -k1,13203:31900144,38510838:239408 -k1,13203:32583029,38510838:0 -) -(1,13204:6630773,39352326:25952256,513147,134348 -k1,13203:8578784,39352326:235555 -k1,13203:12599043,39352326:235555 -k1,13203:14105996,39352326:235555 -k1,13203:15579526,39352326:235555 -k1,13203:16474373,39352326:235555 -k1,13203:19710166,39352326:235555 -k1,13203:21148963,39352326:235556 -k1,13203:21916015,39352326:235555 -k1,13203:22913098,39352326:235555 -k1,13203:25083276,39352326:235555 -k1,13203:26337916,39352326:235555 -k1,13203:28561178,39352326:235555 -k1,13203:29988178,39352326:235555 -k1,13203:31657661,39352326:235555 -k1,13204:32583029,39352326:0 -) -(1,13204:6630773,40193814:25952256,513147,134348 -k1,13203:9319967,40193814:207346 -k1,13203:10546397,40193814:207345 -k1,13203:14364777,40193814:207346 -k1,13203:15223551,40193814:207346 -k1,13203:18363632,40193814:207345 -k1,13203:21594809,40193814:207346 -k1,13203:23028334,40193814:207346 -k1,13203:25431791,40193814:207346 -k1,13203:26290564,40193814:207345 -k1,13203:27590395,40193814:207346 -k1,13203:28745392,40193814:207346 -k1,13203:30178916,40193814:207345 -k1,13203:31069147,40193814:207346 -k1,13203:32583029,40193814:0 -) -(1,13204:6630773,41035302:25952256,505283,134348 -k1,13203:10811118,41035302:216072 -k1,13203:13961892,41035302:216072 -k1,13203:16758117,41035302:216073 -k1,13203:20021612,41035302:216072 -k1,13203:22283718,41035302:216072 -k1,13203:22957887,41035302:216072 -k1,13203:25803919,41035302:216072 -k1,13203:26671420,41035302:216073 -k1,13203:29889696,41035302:216072 -k1,13203:31599334,41035302:216072 -k1,13204:32583029,41035302:0 -) -(1,13204:6630773,41876790:25952256,473825,126483 -g1,13203:9849901,41876790 -g1,13203:10665168,41876790 -g1,13203:12616174,41876790 -k1,13204:32583029,41876790:18095802 -g1,13204:32583029,41876790 -) -v1,13206:6630773,43067256:0,393216,0 -(1,13215:6630773,45380887:25952256,2706847,196608 -g1,13215:6630773,45380887 -g1,13215:6630773,45380887 -g1,13215:6434165,45380887 -(1,13215:6434165,45380887:0,2706847,196608 -r1,13215:32779637,45380887:26345472,2903455,196608 -k1,13215:6434165,45380887:-26345472 -) -(1,13215:6434165,45380887:26345472,2706847,196608 -[1,13215:6630773,45380887:25952256,2510239,0 -(1,13208:6630773,43281166:25952256,410518,101187 -(1,13207:6630773,43281166:0,0,0 -g1,13207:6630773,43281166 -g1,13207:6630773,43281166 -g1,13207:6303093,43281166 -(1,13207:6303093,43281166:0,0,0 -) -g1,13207:6630773,43281166 -) -g1,13208:10108376,43281166 -g1,13208:11056814,43281166 -g1,13208:11689106,43281166 -g1,13208:12321398,43281166 -g1,13208:14850564,43281166 -h1,13208:15482856,43281166:0,0,0 -k1,13208:32583028,43281166:17100172 -g1,13208:32583028,43281166 -) -(1,13209:6630773,43947344:25952256,410518,107478 -h1,13209:6630773,43947344:0,0,0 -g1,13209:10424522,43947344 -g1,13209:11056814,43947344 -g1,13209:13585980,43947344 -g1,13209:15482855,43947344 -g1,13209:16115147,43947344 -g1,13209:18012022,43947344 -g1,13209:18644314,43947344 -g1,13209:19276606,43947344 -g1,13209:20857335,43947344 -g1,13209:22754209,43947344 -g1,13209:23386501,43947344 -g1,13209:27812541,43947344 -h1,13209:28128687,43947344:0,0,0 -k1,13209:32583029,43947344:4454342 -g1,13209:32583029,43947344 -) -(1,13210:6630773,44613522:25952256,410518,101187 -h1,13210:6630773,44613522:0,0,0 -g1,13210:6946919,44613522 -g1,13210:7263065,44613522 -g1,13210:13269833,44613522 -g1,13210:13902125,44613522 -g1,13210:15799000,44613522 -g1,13210:18328166,44613522 -g1,13210:18960458,44613522 -g1,13210:22754207,44613522 -g1,13210:24651081,44613522 -g1,13210:25283373,44613522 -g1,13210:28128685,44613522 -h1,13210:28444831,44613522:0,0,0 -k1,13210:32583029,44613522:4138198 -g1,13210:32583029,44613522 -) -(1,13211:6630773,45279700:25952256,410518,101187 -h1,13211:6630773,45279700:0,0,0 -g1,13211:6946919,45279700 -g1,13211:7263065,45279700 -g1,13211:13902125,45279700 -g1,13211:14534417,45279700 -g1,13211:18328166,45279700 -g1,13211:21489623,45279700 -g1,13211:22121915,45279700 -k1,13211:22121915,45279700:0 -h1,13211:26547955,45279700:0,0,0 -k1,13211:32583029,45279700:6035074 -g1,13211:32583029,45279700 -) -] -) -g1,13215:32583029,45380887 -g1,13215:6630773,45380887 -g1,13215:6630773,45380887 -g1,13215:32583029,45380887 -g1,13215:32583029,45380887 -) -] -(1,13215:32583029,45706769:0,0,0 -g1,13215:32583029,45706769 -) -) -] -(1,13215:6630773,47279633:25952256,0,0 -h1,13215:6630773,47279633:25952256,0,0 -) -] -h1,13215:4262630,4025873:0,0,0 -] -!26428 -}253 -Input:1864:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 -{254 -[1,13264:4262630,47279633:28320399,43253760,0 -(1,13264:4262630,4025873:0,0,0 -[1,13264:-473657,4025873:25952256,0,0 -(1,13264:-473657,-710414:25952256,0,0 -h1,13264:-473657,-710414:0,0,0 -(1,13264:-473657,-710414:0,0,0 -(1,13264:-473657,-710414:0,0,0 -g1,13264:-473657,-710414 -(1,13264:-473657,-710414:65781,0,65781 -g1,13264:-407876,-710414 -[1,13264:-407876,-644633:0,0,0 +[1,13232:6630773,45706769:25952256,40108032,0 +v1,13190:6630773,6254097:0,393216,0 +(1,13190:6630773,7907841:25952256,2046960,196608 +g1,13190:6630773,7907841 +g1,13190:6630773,7907841 +g1,13190:6434165,7907841 +(1,13190:6434165,7907841:0,2046960,196608 +r1,13190:32779637,7907841:26345472,2243568,196608 +k1,13190:6434165,7907841:-26345472 +) +(1,13190:6434165,7907841:26345472,2046960,196608 +[1,13190:6630773,7907841:25952256,1850352,0 +(1,13186:6630773,6468007:25952256,410518,107478 +(1,13185:6630773,6468007:0,0,0 +g1,13185:6630773,6468007 +g1,13185:6630773,6468007 +g1,13185:6303093,6468007 +(1,13185:6303093,6468007:0,0,0 +) +g1,13185:6630773,6468007 +) +k1,13186:6630773,6468007:0 +g1,13186:10424522,6468007 +g1,13186:11056814,6468007 +g1,13186:13585980,6468007 +g1,13186:15482855,6468007 +g1,13186:16115147,6468007 +g1,13186:18012022,6468007 +g1,13186:18644314,6468007 +g1,13186:19276606,6468007 +g1,13186:20857335,6468007 +g1,13186:22754209,6468007 +g1,13186:23386501,6468007 +g1,13186:27812541,6468007 +h1,13186:28128687,6468007:0,0,0 +k1,13186:32583029,6468007:4454342 +g1,13186:32583029,6468007 +) +(1,13187:6630773,7134185:25952256,410518,101187 +h1,13187:6630773,7134185:0,0,0 +g1,13187:6946919,7134185 +g1,13187:7263065,7134185 +g1,13187:13269833,7134185 +g1,13187:13902125,7134185 +g1,13187:15799000,7134185 +g1,13187:18328166,7134185 +g1,13187:18960458,7134185 +g1,13187:19592750,7134185 +g1,13187:20225042,7134185 +g1,13187:22754208,7134185 +g1,13187:24018792,7134185 +g1,13187:25915666,7134185 +g1,13187:26547958,7134185 +g1,13187:29393270,7134185 +h1,13187:29709416,7134185:0,0,0 +k1,13187:32583029,7134185:2873613 +g1,13187:32583029,7134185 +) +(1,13188:6630773,7800363:25952256,404226,107478 +h1,13188:6630773,7800363:0,0,0 +g1,13188:6946919,7800363 +g1,13188:7263065,7800363 +k1,13188:7263065,7800363:0 +h1,13188:11056813,7800363:0,0,0 +k1,13188:32583029,7800363:21526216 +g1,13188:32583029,7800363 +) +] +) +g1,13190:32583029,7907841 +g1,13190:6630773,7907841 +g1,13190:6630773,7907841 +g1,13190:32583029,7907841 +g1,13190:32583029,7907841 +) +h1,13190:6630773,8104449:0,0,0 +(1,13193:6630773,17756962:25952256,9062689,0 +k1,13193:10523651,17756962:3892878 +h1,13192:10523651,17756962:0,0,0 +(1,13192:10523651,17756962:18166500,9062689,0 +(1,13192:10523651,17756962:18167381,9062712,0 +(1,13192:10523651,17756962:18167381,9062712,0 +(1,13192:10523651,17756962:0,9062712,0 +(1,13192:10523651,17756962:0,14155776,0 +(1,13192:10523651,17756962:28377088,14155776,0 +) +k1,13192:10523651,17756962:-28377088 +) +) +g1,13192:28691032,17756962 +) +) +) +g1,13193:28690151,17756962 +k1,13193:32583029,17756962:3892878 +) +(1,13201:6630773,18598450:25952256,513147,134348 +h1,13200:6630773,18598450:983040,0,0 +k1,13200:8472450,18598450:388744 +k1,13200:9392691,18598450:388744 +k1,13200:12411395,18598450:388744 +k1,13200:13451566,18598450:388743 +k1,13200:14932795,18598450:388744 +k1,13200:17023509,18598450:388744 +k1,13200:19128641,18598450:388744 +k1,13200:20176677,18598450:388744 +k1,13200:23057100,18598450:388744 +k1,13200:26426421,18598450:388744 +k1,13200:28345895,18598450:388553 +k1,13200:29926084,18598450:388744 +k1,13200:31896867,18598450:388744 +k1,13200:32583029,18598450:0 +) +(1,13201:6630773,19439938:25952256,513147,134348 +k1,13200:10437657,19439938:256143 +k1,13200:11765969,19439938:256143 +k1,13200:12890464,19439938:256143 +k1,13200:14279069,19439938:256143 +k1,13200:15815130,19439938:256143 +k1,13200:17446874,19439938:256143 +k1,13200:18875456,19439938:256143 +k1,13200:21256277,19439938:256144 +k1,13200:24504139,19439938:256143 +k1,13200:25419574,19439938:256143 +k1,13200:26694802,19439938:256143 +k1,13200:28043430,19439938:256143 +k1,13200:28966729,19439938:256143 +(1,13200:28966729,19439938:0,452978,115847 +r1,13200:30731842,19439938:1765113,568825,115847 +k1,13200:28966729,19439938:-1765113 +) +(1,13200:28966729,19439938:1765113,452978,115847 +k1,13200:28966729,19439938:3277 +h1,13200:30728565,19439938:0,411205,112570 +) +k1,13200:30987985,19439938:256143 +k1,13200:31895556,19439938:256143 +k1,13200:32583029,19439938:0 +) +(1,13201:6630773,20281426:25952256,513147,134348 +k1,13200:7163159,20281426:176526 +k1,13200:9327392,20281426:176526 +k1,13200:12753848,20281426:176526 +k1,13200:13546411,20281426:176525 +k1,13200:14511335,20281426:176526 +k1,13200:18298895,20281426:176526 +k1,13200:19707498,20281426:176526 +k1,13200:22162711,20281426:176526 +h1,13200:23133299,20281426:0,0,0 +k1,13200:23309825,20281426:176526 +k1,13200:24295721,20281426:176526 +k1,13200:25970399,20281426:176525 +h1,13200:27165776,20281426:0,0,0 +k1,13200:27342302,20281426:176526 +k1,13200:28466479,20281426:176526 +k1,13200:30760473,20281426:176526 +k1,13200:32583029,20281426:0 +) +(1,13201:6630773,21122914:25952256,513147,134348 +k1,13200:8734369,21122914:168973 +k1,13200:10106583,21122914:168973 +k1,13200:11929029,21122914:168973 +k1,13200:14085709,21122914:168973 +k1,13200:15648633,21122914:168973 +(1,13200:15648633,21122914:0,452978,115847 +r1,13200:17413746,21122914:1765113,568825,115847 +k1,13200:15648633,21122914:-1765113 +) +(1,13200:15648633,21122914:1765113,452978,115847 +k1,13200:15648633,21122914:3277 +h1,13200:17410469,21122914:0,411205,112570 +) +k1,13200:17963483,21122914:168973 +k1,13200:18760290,21122914:168972 +k1,13200:19948348,21122914:168973 +k1,13200:21423454,21122914:168973 +k1,13200:22749137,21122914:168973 +k1,13200:23786462,21122914:168973 +k1,13200:24642908,21122914:168973 +k1,13200:25167741,21122914:168973 +k1,13200:30847636,21122914:168973 +k1,13201:32583029,21122914:0 +) +(1,13201:6630773,21964402:25952256,505283,115847 +k1,13200:8190864,21964402:292625 +k1,13200:9134917,21964402:292625 +k1,13200:12020146,21964402:292625 +k1,13200:13561232,21964402:292625 +(1,13200:13768326,21964402:0,414482,115847 +r1,13200:15181727,21964402:1413401,530329,115847 +k1,13200:13768326,21964402:-1413401 +) +(1,13200:13768326,21964402:1413401,414482,115847 +k1,13200:13768326,21964402:3277 +h1,13200:15178450,21964402:0,411205,112570 +) +k1,13200:15681446,21964402:292625 +k1,13200:18042388,21964402:292626 +k1,13200:20944657,21964402:292625 +k1,13200:25644578,21964402:292625 +(1,13200:25851672,21964402:0,414482,115847 +r1,13200:27265073,21964402:1413401,530329,115847 +k1,13200:25851672,21964402:-1413401 +) +(1,13200:25851672,21964402:1413401,414482,115847 +k1,13200:25851672,21964402:3277 +h1,13200:27261796,21964402:0,411205,112570 +) +k1,13200:27938462,21964402:292625 +(1,13200:27938462,21964402:0,452978,115847 +r1,13200:31110422,21964402:3171960,568825,115847 +k1,13200:27938462,21964402:-3171960 +) +(1,13200:27938462,21964402:3171960,452978,115847 +k1,13200:27938462,21964402:3277 +h1,13200:31107145,21964402:0,411205,112570 +) +k1,13200:31403047,21964402:292625 +k1,13200:32227169,21964402:292625 +k1,13200:32583029,21964402:0 +) +(1,13201:6630773,22805890:25952256,513147,115847 +k1,13200:8224061,22805890:203925 +k1,13200:9362529,22805890:203925 +k1,13200:12324864,22805890:203925 +k1,13200:13144827,22805890:203925 +k1,13200:14367838,22805890:203926 +k1,13200:14986601,22805890:203920 +k1,13200:19145624,22805890:203925 +k1,13200:22139417,22805890:203925 +(1,13200:22139417,22805890:0,452978,115847 +r1,13200:25663089,22805890:3523672,568825,115847 +k1,13200:22139417,22805890:-3523672 +) +(1,13200:22139417,22805890:3523672,452978,115847 +k1,13200:22139417,22805890:3277 +h1,13200:25659812,22805890:0,411205,112570 +) +k1,13200:25867014,22805890:203925 +k1,13200:26602437,22805890:203926 +k1,13200:28092178,22805890:203925 +k1,13200:29863724,22805890:203925 +k1,13200:30656162,22805890:203925 +k1,13200:32051532,22805890:203925 +k1,13200:32583029,22805890:0 +) +(1,13201:6630773,23647378:25952256,513147,134348 +k1,13200:7239602,23647378:252969 +k1,13200:11231400,23647378:252969 +k1,13200:16541127,23647378:252969 +k1,13200:17453388,23647378:252969 +k1,13200:18725442,23647378:252969 +k1,13200:24489333,23647378:252969 +k1,13200:27705840,23647378:252969 +k1,13200:30301721,23647378:252969 +k1,13200:31206118,23647378:252969 +k1,13200:32583029,23647378:0 +) +(1,13201:6630773,24488866:25952256,513147,134348 +k1,13200:8264760,24488866:167291 +k1,13200:10702219,24488866:167292 +k1,13200:11888595,24488866:167291 +k1,13200:12743360,24488866:167292 +k1,13200:13442148,24488866:167291 +k1,13200:15186891,24488866:167291 +k1,13200:16748134,24488866:167292 +k1,13200:17686128,24488866:167291 +k1,13200:20465685,24488866:167292 +k1,13200:23917640,24488866:167291 +k1,13200:24953283,24488866:167291 +k1,13200:25935843,24488866:167292 +k1,13200:27169405,24488866:167291 +k1,13200:28866963,24488866:167292 +k1,13200:29685682,24488866:167291 +k1,13200:32583029,24488866:0 +) +(1,13201:6630773,25330354:25952256,513147,134348 +k1,13200:9259034,25330354:198186 +k1,13200:11935792,25330354:198186 +k1,13200:14144622,25330354:198185 +k1,13200:15290459,25330354:198186 +k1,13200:16507730,25330354:198186 +k1,13200:20316950,25330354:198186 +k1,13200:21166563,25330354:198185 +k1,13200:22112515,25330354:198186 +k1,13200:24196827,25330354:198186 +k1,13200:25348562,25330354:198186 +k1,13200:27077013,25330354:198185 +k1,13200:27926627,25330354:198186 +k1,13200:29059356,25330354:198186 +(1,13200:29059356,25330354:0,414482,115847 +r1,13200:32583029,25330354:3523673,530329,115847 +k1,13200:29059356,25330354:-3523673 +) +(1,13200:29059356,25330354:3523673,414482,115847 +g1,13200:30117769,25330354 +g1,13200:30821193,25330354 +h1,13200:32579752,25330354:0,411205,112570 +) +k1,13200:32583029,25330354:0 +) +(1,13201:6630773,26171842:25952256,513147,126483 +k1,13200:9340521,26171842:180058 +k1,13200:12364186,26171842:180058 +k1,13200:14481488,26171842:180058 +k1,13200:15653106,26171842:180058 +k1,13200:16899435,26171842:180058 +k1,13200:20373988,26171842:180058 +k1,13200:21315575,26171842:180059 +k1,13200:22514718,26171842:180058 +(1,13200:22514718,26171842:0,452978,115847 +r1,13200:25686678,26171842:3171960,568825,115847 +k1,13200:22514718,26171842:-3171960 +) +(1,13200:22514718,26171842:3171960,452978,115847 +k1,13200:22514718,26171842:3277 +h1,13200:25683401,26171842:0,411205,112570 +) +k1,13200:25866736,26171842:180058 +k1,13200:28501117,26171842:180058 +k1,13200:29628826,26171842:180058 +(1,13200:29628826,26171842:0,452978,115847 +r1,13200:30690515,26171842:1061689,568825,115847 +k1,13200:29628826,26171842:-1061689 +) +(1,13200:29628826,26171842:1061689,452978,115847 +k1,13200:29628826,26171842:3277 +h1,13200:30687238,26171842:0,411205,112570 +) +k1,13200:30870573,26171842:180058 +k1,13200:32583029,26171842:0 +) +(1,13201:6630773,27013330:25952256,505283,7863 +k1,13201:32583028,27013330:23460576 +g1,13201:32583028,27013330 +) +v1,13203:6630773,28203796:0,393216,0 +(1,13211:6630773,31152147:25952256,3341567,196608 +g1,13211:6630773,31152147 +g1,13211:6630773,31152147 +g1,13211:6434165,31152147 +(1,13211:6434165,31152147:0,3341567,196608 +r1,13211:32779637,31152147:26345472,3538175,196608 +k1,13211:6434165,31152147:-26345472 +) +(1,13211:6434165,31152147:26345472,3341567,196608 +[1,13211:6630773,31152147:25952256,3144959,0 +(1,13205:6630773,28411414:25952256,404226,107478 +(1,13204:6630773,28411414:0,0,0 +g1,13204:6630773,28411414 +g1,13204:6630773,28411414 +g1,13204:6303093,28411414 +(1,13204:6303093,28411414:0,0,0 +) +g1,13204:6630773,28411414 +) +k1,13205:6630773,28411414:0 +g1,13205:12321396,28411414 +g1,13205:15482853,28411414 +g1,13205:17379728,28411414 +g1,13205:19276602,28411414 +g1,13205:19908894,28411414 +g1,13205:22438060,28411414 +h1,13205:22754206,28411414:0,0,0 +k1,13205:32583029,28411414:9828823 +g1,13205:32583029,28411414 +) +(1,13206:6630773,29077592:25952256,404226,107478 +h1,13206:6630773,29077592:0,0,0 +g1,13206:6946919,29077592 +g1,13206:7263065,29077592 +g1,13206:11372959,29077592 +h1,13206:11689105,29077592:0,0,0 +k1,13206:32583029,29077592:20893924 +g1,13206:32583029,29077592 +) +(1,13207:6630773,29743770:25952256,404226,107478 +h1,13207:6630773,29743770:0,0,0 +g1,13207:6946919,29743770 +g1,13207:7263065,29743770 +g1,13207:13269833,29743770 +g1,13207:13902125,29743770 +k1,13207:13902125,29743770:0 +h1,13207:15798999,29743770:0,0,0 +k1,13207:32583029,29743770:16784030 +g1,13207:32583029,29743770 +) +(1,13208:6630773,30409948:25952256,410518,101187 +h1,13208:6630773,30409948:0,0,0 +g1,13208:6946919,30409948 +g1,13208:7263065,30409948 +g1,13208:7579211,30409948 +g1,13208:7895357,30409948 +g1,13208:8211503,30409948 +g1,13208:8527649,30409948 +g1,13208:8843795,30409948 +g1,13208:9159941,30409948 +g1,13208:9476087,30409948 +g1,13208:9792233,30409948 +g1,13208:10108379,30409948 +g1,13208:10424525,30409948 +g1,13208:10740671,30409948 +g1,13208:11056817,30409948 +g1,13208:13585983,30409948 +g1,13208:14218275,30409948 +g1,13208:14534421,30409948 +g1,13208:15166713,30409948 +g1,13208:15799005,30409948 +g1,13208:19592753,30409948 +g1,13208:20857336,30409948 +k1,13208:20857336,30409948:0 +h1,13208:21805773,30409948:0,0,0 +k1,13208:32583029,30409948:10777256 +g1,13208:32583029,30409948 +) +(1,13209:6630773,31076126:25952256,404226,76021 +h1,13209:6630773,31076126:0,0,0 +g1,13209:6946919,31076126 +g1,13209:7263065,31076126 +g1,13209:7579211,31076126 +g1,13209:7895357,31076126 +g1,13209:8211503,31076126 +g1,13209:8527649,31076126 +g1,13209:8843795,31076126 +g1,13209:9159941,31076126 +g1,13209:9476087,31076126 +g1,13209:9792233,31076126 +g1,13209:10108379,31076126 +g1,13209:10424525,31076126 +g1,13209:10740671,31076126 +g1,13209:11056817,31076126 +g1,13209:12005254,31076126 +g1,13209:12637546,31076126 +h1,13209:14534420,31076126:0,0,0 +k1,13209:32583028,31076126:18048608 +g1,13209:32583028,31076126 +) +] +) +g1,13211:32583029,31152147 +g1,13211:6630773,31152147 +g1,13211:6630773,31152147 +g1,13211:32583029,31152147 +g1,13211:32583029,31152147 +) +h1,13211:6630773,31348755:0,0,0 +(1,13215:6630773,32714531:25952256,513147,126483 +h1,13214:6630773,32714531:983040,0,0 +k1,13214:8409017,32714531:167369 +k1,13214:9595471,32714531:167369 +k1,13214:12004171,32714531:167369 +k1,13214:14832956,32714531:167368 +k1,13214:15868677,32714531:167369 +k1,13214:17996883,32714531:167369 +k1,13214:19183337,32714531:167369 +k1,13214:21004179,32714531:167369 +k1,13214:23159255,32714531:167369 +k1,13214:25740969,32714531:167368 +k1,13214:26524376,32714531:167369 +k1,13214:27710830,32714531:167369 +k1,13214:29865906,32714531:167369 +k1,13214:32583029,32714531:0 +) +(1,13215:6630773,33556019:25952256,513147,134348 +k1,13214:8050884,33556019:228666 +k1,13214:10709625,33556019:228666 +k1,13214:11957376,33556019:228666 +k1,13214:14664613,33556019:228665 +k1,13214:16903924,33556019:228666 +k1,13214:20203607,33556019:228666 +k1,13214:21628960,33556019:228666 +k1,13214:23925942,33556019:228666 +k1,13214:25667834,33556019:228666 +k1,13214:26844150,33556019:228665 +k1,13214:28091901,33556019:228666 +k1,13214:31931601,33556019:228666 +k1,13214:32583029,33556019:0 +) +(1,13215:6630773,34397507:25952256,513147,134348 +k1,13214:7643352,34397507:264813 +k1,13214:9620622,34397507:264814 +k1,13214:10989717,34397507:264813 +k1,13214:12002296,34397507:264813 +k1,13214:14502543,34397507:264814 +k1,13214:15380118,34397507:264813 +k1,13214:16951064,34397507:264813 +k1,13214:19225867,34397507:264814 +k1,13214:20509765,34397507:264813 +k1,13214:24418380,34397507:264813 +k1,13214:25342486,34397507:264814 +k1,13214:26626384,34397507:264813 +k1,13214:27305974,34397507:264747 +k1,13214:30586755,34397507:264814 +k1,13214:31923737,34397507:264813 +k1,13214:32583029,34397507:0 +) +(1,13215:6630773,35238995:25952256,505283,115847 +g1,13214:8938951,35238995 +g1,13214:10157265,35238995 +g1,13214:12424810,35238995 +g1,13214:14137265,35238995 +g1,13214:14952532,35238995 +(1,13214:14952532,35238995:0,459977,115847 +r1,13214:17421069,35238995:2468537,575824,115847 +k1,13214:14952532,35238995:-2468537 +) +(1,13214:14952532,35238995:2468537,459977,115847 +k1,13214:14952532,35238995:3277 +h1,13214:17417792,35238995:0,411205,112570 +) +g1,13214:17620298,35238995 +g1,13214:19010972,35238995 +(1,13214:19010972,35238995:0,414482,115847 +r1,13214:20776085,35238995:1765113,530329,115847 +k1,13214:19010972,35238995:-1765113 +) +(1,13214:19010972,35238995:1765113,414482,115847 +k1,13214:19010972,35238995:3277 +h1,13214:20772808,35238995:0,411205,112570 +) +g1,13214:20975314,35238995 +g1,13214:22796559,35238995 +g1,13214:24976941,35238995 +g1,13214:26627792,35238995 +k1,13215:32583029,35238995:4079597 +g1,13215:32583029,35238995 +) +v1,13217:6630773,36429461:0,393216,0 +(1,13226:6630773,40043990:25952256,4007745,196608 +g1,13226:6630773,40043990 +g1,13226:6630773,40043990 +g1,13226:6434165,40043990 +(1,13226:6434165,40043990:0,4007745,196608 +r1,13226:32779637,40043990:26345472,4204353,196608 +k1,13226:6434165,40043990:-26345472 +) +(1,13226:6434165,40043990:26345472,4007745,196608 +[1,13226:6630773,40043990:25952256,3811137,0 +(1,13219:6630773,36637079:25952256,404226,107478 +(1,13218:6630773,36637079:0,0,0 +g1,13218:6630773,36637079 +g1,13218:6630773,36637079 +g1,13218:6303093,36637079 +(1,13218:6303093,36637079:0,0,0 +) +g1,13218:6630773,36637079 +) +k1,13219:6630773,36637079:0 +g1,13219:12321396,36637079 +g1,13219:15482853,36637079 +g1,13219:17379728,36637079 +g1,13219:19276602,36637079 +g1,13219:19908894,36637079 +g1,13219:22438060,36637079 +h1,13219:22754206,36637079:0,0,0 +k1,13219:32583029,36637079:9828823 +g1,13219:32583029,36637079 +) +(1,13220:6630773,37303257:25952256,404226,107478 +h1,13220:6630773,37303257:0,0,0 +g1,13220:6946919,37303257 +g1,13220:7263065,37303257 +g1,13220:11372959,37303257 +h1,13220:11689105,37303257:0,0,0 +k1,13220:32583029,37303257:20893924 +g1,13220:32583029,37303257 +) +(1,13221:6630773,37969435:25952256,404226,107478 +h1,13221:6630773,37969435:0,0,0 +g1,13221:6946919,37969435 +g1,13221:7263065,37969435 +g1,13221:13269833,37969435 +g1,13221:13902125,37969435 +k1,13221:13902125,37969435:0 +h1,13221:15798999,37969435:0,0,0 +k1,13221:32583029,37969435:16784030 +g1,13221:32583029,37969435 +) +(1,13222:6630773,38635613:25952256,410518,107478 +h1,13222:6630773,38635613:0,0,0 +g1,13222:6946919,38635613 +g1,13222:7263065,38635613 +g1,13222:7579211,38635613 +g1,13222:7895357,38635613 +g1,13222:8211503,38635613 +g1,13222:8527649,38635613 +g1,13222:8843795,38635613 +g1,13222:9159941,38635613 +g1,13222:9476087,38635613 +g1,13222:9792233,38635613 +g1,13222:10108379,38635613 +g1,13222:10424525,38635613 +g1,13222:10740671,38635613 +g1,13222:11056817,38635613 +g1,13222:14850565,38635613 +g1,13222:15482857,38635613 +g1,13222:19592752,38635613 +g1,13222:20225044,38635613 +g1,13222:20541190,38635613 +g1,13222:21173482,38635613 +g1,13222:21805774,38635613 +g1,13222:23702648,38635613 +g1,13222:24334940,38635613 +g1,13222:25283377,38635613 +g1,13222:25915669,38635613 +g1,13222:26864106,38635613 +g1,13222:27496398,38635613 +k1,13222:27496398,38635613:0 +h1,13222:28444835,38635613:0,0,0 +k1,13222:32583029,38635613:4138194 +g1,13222:32583029,38635613 +) +(1,13223:6630773,39301791:25952256,404226,82312 +h1,13223:6630773,39301791:0,0,0 +g1,13223:6946919,39301791 +g1,13223:7263065,39301791 +g1,13223:7579211,39301791 +g1,13223:7895357,39301791 +g1,13223:8211503,39301791 +g1,13223:8527649,39301791 +g1,13223:8843795,39301791 +g1,13223:9159941,39301791 +g1,13223:9476087,39301791 +g1,13223:9792233,39301791 +g1,13223:10108379,39301791 +g1,13223:10424525,39301791 +g1,13223:10740671,39301791 +g1,13223:11056817,39301791 +g1,13223:11372963,39301791 +g1,13223:11689109,39301791 +g1,13223:12005255,39301791 +g1,13223:12321401,39301791 +g1,13223:12637547,39301791 +g1,13223:12953693,39301791 +g1,13223:13269839,39301791 +g1,13223:13585985,39301791 +g1,13223:13902131,39301791 +g1,13223:14218277,39301791 +g1,13223:14534423,39301791 +g1,13223:14850569,39301791 +g1,13223:15166715,39301791 +g1,13223:15482861,39301791 +g1,13223:15799007,39301791 +g1,13223:16115153,39301791 +g1,13223:16431299,39301791 +g1,13223:16747445,39301791 +g1,13223:17063591,39301791 +g1,13223:18960465,39301791 +g1,13223:19592757,39301791 +g1,13223:22754215,39301791 +g1,13223:23386507,39301791 +g1,13223:24967236,39301791 +g1,13223:25599528,39301791 +g1,13223:26231820,39301791 +k1,13223:26231820,39301791:0 +h1,13223:28444840,39301791:0,0,0 +k1,13223:32583029,39301791:4138189 +g1,13223:32583029,39301791 +) +(1,13224:6630773,39967969:25952256,404226,76021 +h1,13224:6630773,39967969:0,0,0 +g1,13224:6946919,39967969 +g1,13224:7263065,39967969 +g1,13224:7579211,39967969 +g1,13224:7895357,39967969 +g1,13224:8211503,39967969 +g1,13224:8527649,39967969 +g1,13224:8843795,39967969 +g1,13224:9159941,39967969 +g1,13224:9476087,39967969 +g1,13224:9792233,39967969 +g1,13224:10108379,39967969 +g1,13224:10424525,39967969 +g1,13224:10740671,39967969 +g1,13224:11056817,39967969 +g1,13224:12005254,39967969 +g1,13224:12637546,39967969 +h1,13224:14534420,39967969:0,0,0 +k1,13224:32583028,39967969:18048608 +g1,13224:32583028,39967969 +) +] +) +g1,13226:32583029,40043990 +g1,13226:6630773,40043990 +g1,13226:6630773,40043990 +g1,13226:32583029,40043990 +g1,13226:32583029,40043990 +) +h1,13226:6630773,40240598:0,0,0 +(1,13230:6630773,41606374:25952256,513147,126483 +h1,13229:6630773,41606374:983040,0,0 +k1,13229:8481056,41606374:239408 +k1,13229:10412604,41606374:239408 +k1,13229:12349394,41606374:239408 +k1,13229:13046899,41606374:239408 +k1,13229:13817804,41606374:239408 +k1,13229:16953903,41606374:239408 +k1,13229:17844738,41606374:239407 +k1,13229:20881223,41606374:239408 +k1,13229:22728229,41606374:239408 +k1,13229:24361588,41606374:239408 +k1,13229:26313452,41606374:239408 +k1,13229:28540567,41606374:239408 +k1,13229:31900144,41606374:239408 +k1,13229:32583029,41606374:0 +) +(1,13230:6630773,42447862:25952256,513147,134348 +k1,13229:8578784,42447862:235555 +k1,13229:12599043,42447862:235555 +k1,13229:14105996,42447862:235555 +k1,13229:15579526,42447862:235555 +k1,13229:16474373,42447862:235555 +k1,13229:19710166,42447862:235555 +k1,13229:21148963,42447862:235556 +k1,13229:21916015,42447862:235555 +k1,13229:22913098,42447862:235555 +k1,13229:25083276,42447862:235555 +k1,13229:26337916,42447862:235555 +k1,13229:28561178,42447862:235555 +k1,13229:29988178,42447862:235555 +k1,13229:31657661,42447862:235555 +k1,13230:32583029,42447862:0 +) +(1,13230:6630773,43289350:25952256,513147,134348 +k1,13229:9319967,43289350:207346 +k1,13229:10546397,43289350:207345 +k1,13229:14364777,43289350:207346 +k1,13229:15223551,43289350:207346 +k1,13229:18363632,43289350:207345 +k1,13229:21594809,43289350:207346 +k1,13229:23028334,43289350:207346 +k1,13229:25431791,43289350:207346 +k1,13229:26290564,43289350:207345 +k1,13229:27590395,43289350:207346 +k1,13229:28745392,43289350:207346 +k1,13229:30178916,43289350:207345 +k1,13229:31069147,43289350:207346 +k1,13229:32583029,43289350:0 +) +(1,13230:6630773,44130838:25952256,505283,134348 +k1,13229:10811118,44130838:216072 +k1,13229:13961892,44130838:216072 +k1,13229:16758117,44130838:216073 +k1,13229:20021612,44130838:216072 +k1,13229:22283718,44130838:216072 +k1,13229:22957887,44130838:216072 +k1,13229:25803919,44130838:216072 +k1,13229:26671420,44130838:216073 +k1,13229:29889696,44130838:216072 +k1,13229:31599334,44130838:216072 +k1,13230:32583029,44130838:0 +) +(1,13230:6630773,44972326:25952256,473825,126483 +g1,13229:9849901,44972326 +g1,13229:10665168,44972326 +g1,13229:12616174,44972326 +k1,13230:32583029,44972326:18095802 +g1,13230:32583029,44972326 +) +] +(1,13232:32583029,45706769:0,0,0 +g1,13232:32583029,45706769 +) +) +] +(1,13232:6630773,47279633:25952256,0,0 +h1,13232:6630773,47279633:25952256,0,0 +) +] +h1,13232:4262630,4025873:0,0,0 +] +!26016 +}254 +Input:1860:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{255 +[1,13290:4262630,47279633:28320399,43253760,0 +(1,13290:4262630,4025873:0,0,0 +[1,13290:-473657,4025873:25952256,0,0 +(1,13290:-473657,-710414:25952256,0,0 +h1,13290:-473657,-710414:0,0,0 +(1,13290:-473657,-710414:0,0,0 +(1,13290:-473657,-710414:0,0,0 +g1,13290:-473657,-710414 +(1,13290:-473657,-710414:65781,0,65781 +g1,13290:-407876,-710414 +[1,13290:-407876,-644633:0,0,0 ] ) -k1,13264:-473657,-710414:-65781 +k1,13290:-473657,-710414:-65781 ) ) -k1,13264:25478599,-710414:25952256 -g1,13264:25478599,-710414 +k1,13290:25478599,-710414:25952256 +g1,13290:25478599,-710414 ) ] ) -[1,13264:6630773,47279633:25952256,43253760,0 -[1,13264:6630773,4812305:25952256,786432,0 -(1,13264:6630773,4812305:25952256,485622,11795 -(1,13264:6630773,4812305:25952256,485622,11795 -g1,13264:3078558,4812305 -[1,13264:3078558,4812305:0,0,0 -(1,13264:3078558,2439708:0,1703936,0 -k1,13264:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13264:2537886,2439708:1179648,16384,0 +[1,13290:6630773,47279633:25952256,43253760,0 +[1,13290:6630773,4812305:25952256,786432,0 +(1,13290:6630773,4812305:25952256,513147,134348 +(1,13290:6630773,4812305:25952256,513147,134348 +g1,13290:3078558,4812305 +[1,13290:3078558,4812305:0,0,0 +(1,13290:3078558,2439708:0,1703936,0 +k1,13290:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13290:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13264:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13290:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13264:3078558,4812305:0,0,0 -(1,13264:3078558,2439708:0,1703936,0 -g1,13264:29030814,2439708 -g1,13264:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13264:36151628,1915420:16384,1179648,0 +[1,13290:3078558,4812305:0,0,0 +(1,13290:3078558,2439708:0,1703936,0 +g1,13290:29030814,2439708 +g1,13290:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13290:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13264:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13290:37855564,2439708:1179648,16384,0 ) ) -k1,13264:3078556,2439708:-34777008 +k1,13290:3078556,2439708:-34777008 ) ] -[1,13264:3078558,4812305:0,0,0 -(1,13264:3078558,49800853:0,16384,2228224 -k1,13264:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13264:2537886,49800853:1179648,16384,0 +[1,13290:3078558,4812305:0,0,0 +(1,13290:3078558,49800853:0,16384,2228224 +k1,13290:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13290:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13264:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13290:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13264:3078558,4812305:0,0,0 -(1,13264:3078558,49800853:0,16384,2228224 -g1,13264:29030814,49800853 -g1,13264:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13264:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +[1,13290:3078558,4812305:0,0,0 +(1,13290:3078558,49800853:0,16384,2228224 +g1,13290:29030814,49800853 +g1,13290:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13290:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] ) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13290:37855564,49800853:1179648,16384,0 +) +) +k1,13290:3078556,49800853:-34777008 +) +] +g1,13290:6630773,4812305 +k1,13290:25712890,4812305:17886740 +g1,13290:29057847,4812305 +g1,13290:29873114,4812305 +) +) +] +[1,13290:6630773,45706769:25952256,40108032,0 +(1,13290:6630773,45706769:25952256,40108032,0 +(1,13290:6630773,45706769:0,0,0 +g1,13290:6630773,45706769 +) +[1,13290:6630773,45706769:25952256,40108032,0 +v1,13232:6630773,6254097:0,393216,0 +(1,13241:6630773,9906375:25952256,4045494,196608 +g1,13241:6630773,9906375 +g1,13241:6630773,9906375 +g1,13241:6434165,9906375 +(1,13241:6434165,9906375:0,4045494,196608 +r1,13241:32779637,9906375:26345472,4242102,196608 +k1,13241:6434165,9906375:-26345472 +) +(1,13241:6434165,9906375:26345472,4045494,196608 +[1,13241:6630773,9906375:25952256,3848886,0 +(1,13234:6630773,6468007:25952256,410518,101187 +(1,13233:6630773,6468007:0,0,0 +g1,13233:6630773,6468007 +g1,13233:6630773,6468007 +g1,13233:6303093,6468007 +(1,13233:6303093,6468007:0,0,0 +) +g1,13233:6630773,6468007 +) +g1,13234:10108376,6468007 +g1,13234:11056814,6468007 +g1,13234:11689106,6468007 +g1,13234:12321398,6468007 +g1,13234:14850564,6468007 +h1,13234:15482856,6468007:0,0,0 +k1,13234:32583028,6468007:17100172 +g1,13234:32583028,6468007 +) +(1,13235:6630773,7134185:25952256,410518,107478 +h1,13235:6630773,7134185:0,0,0 +g1,13235:10424522,7134185 +g1,13235:11056814,7134185 +g1,13235:13585980,7134185 +g1,13235:15482855,7134185 +g1,13235:16115147,7134185 +g1,13235:18012022,7134185 +g1,13235:18644314,7134185 +g1,13235:19276606,7134185 +g1,13235:20857335,7134185 +g1,13235:22754209,7134185 +g1,13235:23386501,7134185 +g1,13235:27812541,7134185 +h1,13235:28128687,7134185:0,0,0 +k1,13235:32583029,7134185:4454342 +g1,13235:32583029,7134185 +) +(1,13236:6630773,7800363:25952256,410518,101187 +h1,13236:6630773,7800363:0,0,0 +g1,13236:6946919,7800363 +g1,13236:7263065,7800363 +g1,13236:13269833,7800363 +g1,13236:13902125,7800363 +g1,13236:15799000,7800363 +g1,13236:18328166,7800363 +g1,13236:18960458,7800363 +g1,13236:22754207,7800363 +g1,13236:24651081,7800363 +g1,13236:25283373,7800363 +g1,13236:28128685,7800363 +h1,13236:28444831,7800363:0,0,0 +k1,13236:32583029,7800363:4138198 +g1,13236:32583029,7800363 +) +(1,13237:6630773,8466541:25952256,410518,101187 +h1,13237:6630773,8466541:0,0,0 +g1,13237:6946919,8466541 +g1,13237:7263065,8466541 +g1,13237:13902125,8466541 +g1,13237:14534417,8466541 +g1,13237:18328166,8466541 +g1,13237:21489623,8466541 +g1,13237:22121915,8466541 +k1,13237:22121915,8466541:0 +h1,13237:26547955,8466541:0,0,0 +k1,13237:32583029,8466541:6035074 +g1,13237:32583029,8466541 +) +(1,13238:6630773,9132719:25952256,404226,101187 +h1,13238:6630773,9132719:0,0,0 +g1,13238:6946919,9132719 +g1,13238:7263065,9132719 +g1,13238:7579211,9132719 +g1,13238:7895357,9132719 +g1,13238:8211503,9132719 +g1,13238:8527649,9132719 +g1,13238:8843795,9132719 +g1,13238:9159941,9132719 +g1,13238:9476087,9132719 +g1,13238:9792233,9132719 +g1,13238:10108379,9132719 +g1,13238:10424525,9132719 +g1,13238:10740671,9132719 +g1,13238:11056817,9132719 +g1,13238:11372963,9132719 +g1,13238:13269837,9132719 +g1,13238:13902129,9132719 +g1,13238:16747441,9132719 +g1,13238:18644315,9132719 +g1,13238:19276607,9132719 +g1,13238:21173482,9132719 +g1,13238:24967230,9132719 +g1,13238:25599522,9132719 +g1,13238:27180251,9132719 +h1,13238:27496397,9132719:0,0,0 +k1,13238:32583029,9132719:5086632 +g1,13238:32583029,9132719 +) +(1,13239:6630773,9798897:25952256,404226,107478 +h1,13239:6630773,9798897:0,0,0 +g1,13239:6946919,9798897 +g1,13239:7263065,9798897 +k1,13239:7263065,9798897:0 +h1,13239:11056813,9798897:0,0,0 +k1,13239:32583029,9798897:21526216 +g1,13239:32583029,9798897 +) +] +) +g1,13241:32583029,9906375 +g1,13241:6630773,9906375 +g1,13241:6630773,9906375 +g1,13241:32583029,9906375 +g1,13241:32583029,9906375 +) +h1,13241:6630773,10102983:0,0,0 +(1,13244:6630773,19755496:25952256,9062689,0 +k1,13244:10523651,19755496:3892878 +h1,13243:10523651,19755496:0,0,0 +(1,13243:10523651,19755496:18166500,9062689,0 +(1,13243:10523651,19755496:18167381,9062712,0 +(1,13243:10523651,19755496:18167381,9062712,0 +(1,13243:10523651,19755496:0,9062712,0 +(1,13243:10523651,19755496:0,14155776,0 +(1,13243:10523651,19755496:28377088,14155776,0 +) +k1,13243:10523651,19755496:-28377088 +) +) +g1,13243:28691032,19755496 +) +) +) +g1,13244:28690151,19755496 +k1,13244:32583029,19755496:3892878 +) +(1,13252:6630773,20596984:25952256,505283,134348 +h1,13251:6630773,20596984:983040,0,0 +k1,13251:9256860,20596984:262203 +k1,13251:11172537,20596984:262204 +k1,13251:14014892,20596984:262203 +k1,13251:16323129,20596984:262203 +k1,13251:17043430,20596984:262204 +k1,13251:19935593,20596984:262203 +k1,13251:20849225,20596984:262204 +k1,13251:23908505,20596984:262203 +k1,13251:25778306,20596984:262203 +k1,13251:27434461,20596984:262204 +k1,13251:30687072,20596984:262203 +k1,13251:32583029,20596984:0 +) +(1,13252:6630773,21438472:25952256,513147,7863 +g1,13251:8397623,21438472 +g1,13251:8952712,21438472 +g1,13251:11139648,21438472 +k1,13252:32583029,21438472:20582238 +g1,13252:32583029,21438472 +) +v1,13254:6630773,22628938:0,393216,0 +(1,13271:6630773,31610640:25952256,9374918,196608 +g1,13271:6630773,31610640 +g1,13271:6630773,31610640 +g1,13271:6434165,31610640 +(1,13271:6434165,31610640:0,9374918,196608 +r1,13271:32779637,31610640:26345472,9571526,196608 +k1,13271:6434165,31610640:-26345472 +) +(1,13271:6434165,31610640:26345472,9374918,196608 +[1,13271:6630773,31610640:25952256,9178310,0 +(1,13256:6630773,22842848:25952256,410518,101187 +(1,13255:6630773,22842848:0,0,0 +g1,13255:6630773,22842848 +g1,13255:6630773,22842848 +g1,13255:6303093,22842848 +(1,13255:6303093,22842848:0,0,0 +) +g1,13255:6630773,22842848 +) +g1,13256:10108376,22842848 +g1,13256:11056814,22842848 +g1,13256:11689106,22842848 +g1,13256:12321398,22842848 +g1,13256:14850564,22842848 +h1,13256:15482856,22842848:0,0,0 +k1,13256:32583028,22842848:17100172 +g1,13256:32583028,22842848 +) +(1,13257:6630773,23509026:25952256,410518,107478 +h1,13257:6630773,23509026:0,0,0 +g1,13257:10424522,23509026 +g1,13257:11056814,23509026 +g1,13257:13585980,23509026 +g1,13257:15482855,23509026 +g1,13257:16115147,23509026 +g1,13257:18012022,23509026 +g1,13257:18644314,23509026 +g1,13257:19276606,23509026 +g1,13257:20857335,23509026 +g1,13257:22754209,23509026 +g1,13257:23386501,23509026 +g1,13257:27812541,23509026 +h1,13257:28128687,23509026:0,0,0 +k1,13257:32583029,23509026:4454342 +g1,13257:32583029,23509026 +) +(1,13258:6630773,24175204:25952256,410518,101187 +h1,13258:6630773,24175204:0,0,0 +g1,13258:6946919,24175204 +g1,13258:7263065,24175204 +g1,13258:13269833,24175204 +g1,13258:13902125,24175204 +g1,13258:15799000,24175204 +g1,13258:18328166,24175204 +g1,13258:18960458,24175204 +g1,13258:22754207,24175204 +g1,13258:24651081,24175204 +g1,13258:25283373,24175204 +g1,13258:28128685,24175204 +h1,13258:28444831,24175204:0,0,0 +k1,13258:32583029,24175204:4138198 +g1,13258:32583029,24175204 +) +(1,13259:6630773,24841382:25952256,410518,82312 +h1,13259:6630773,24841382:0,0,0 +g1,13259:6946919,24841382 +g1,13259:7263065,24841382 +g1,13259:13269833,24841382 +g1,13259:13902125,24841382 +k1,13259:13902125,24841382:0 +h1,13259:15482854,24841382:0,0,0 +k1,13259:32583030,24841382:17100176 +g1,13259:32583030,24841382 +) +(1,13260:6630773,25507560:25952256,410518,107478 +h1,13260:6630773,25507560:0,0,0 +g1,13260:6946919,25507560 +g1,13260:7263065,25507560 +g1,13260:7579211,25507560 +g1,13260:7895357,25507560 +g1,13260:8211503,25507560 +g1,13260:8527649,25507560 +g1,13260:8843795,25507560 +g1,13260:9159941,25507560 +g1,13260:9476087,25507560 +g1,13260:9792233,25507560 +g1,13260:10108379,25507560 +g1,13260:10424525,25507560 +g1,13260:10740671,25507560 +g1,13260:11056817,25507560 +g1,13260:14850565,25507560 +g1,13260:15482857,25507560 +g1,13260:19592752,25507560 +g1,13260:20225044,25507560 +k1,13260:20225044,25507560:0 +h1,13260:24018792,25507560:0,0,0 +k1,13260:32583029,25507560:8564237 +g1,13260:32583029,25507560 +) +(1,13261:6630773,26173738:25952256,404226,82312 +h1,13261:6630773,26173738:0,0,0 +g1,13261:6946919,26173738 +g1,13261:7263065,26173738 +g1,13261:7579211,26173738 +g1,13261:7895357,26173738 +g1,13261:8211503,26173738 +g1,13261:8527649,26173738 +g1,13261:8843795,26173738 +g1,13261:9159941,26173738 +g1,13261:9476087,26173738 +g1,13261:9792233,26173738 +g1,13261:10108379,26173738 +g1,13261:10424525,26173738 +g1,13261:10740671,26173738 +g1,13261:11056817,26173738 +g1,13261:12953691,26173738 +g1,13261:13585983,26173738 +k1,13261:13585983,26173738:0 +h1,13261:16115149,26173738:0,0,0 +k1,13261:32583029,26173738:16467880 +g1,13261:32583029,26173738 +) +(1,13262:6630773,26839916:25952256,404226,82312 +h1,13262:6630773,26839916:0,0,0 +g1,13262:6946919,26839916 +g1,13262:7263065,26839916 +g1,13262:7579211,26839916 +g1,13262:7895357,26839916 +g1,13262:8211503,26839916 +g1,13262:8527649,26839916 +g1,13262:8843795,26839916 +g1,13262:9159941,26839916 +g1,13262:9476087,26839916 +g1,13262:9792233,26839916 +g1,13262:10108379,26839916 +g1,13262:10424525,26839916 +g1,13262:10740671,26839916 +g1,13262:11056817,26839916 +g1,13262:13585983,26839916 +g1,13262:14218275,26839916 +g1,13262:18012024,26839916 +g1,13262:18644316,26839916 +k1,13262:18644316,26839916:0 +h1,13262:20857336,26839916:0,0,0 +k1,13262:32583029,26839916:11725693 +g1,13262:32583029,26839916 +) +(1,13263:6630773,27506094:25952256,404226,82312 +h1,13263:6630773,27506094:0,0,0 +g1,13263:6946919,27506094 +g1,13263:7263065,27506094 +g1,13263:7579211,27506094 +g1,13263:7895357,27506094 +g1,13263:8211503,27506094 +g1,13263:8527649,27506094 +g1,13263:8843795,27506094 +g1,13263:9159941,27506094 +g1,13263:9476087,27506094 +g1,13263:9792233,27506094 +g1,13263:10108379,27506094 +g1,13263:10424525,27506094 +g1,13263:10740671,27506094 +g1,13263:11056817,27506094 +g1,13263:11372963,27506094 +g1,13263:11689109,27506094 +g1,13263:12005255,27506094 +g1,13263:12321401,27506094 +g1,13263:12637547,27506094 +g1,13263:12953693,27506094 +g1,13263:13269839,27506094 +g1,13263:13585985,27506094 +g1,13263:13902131,27506094 +g1,13263:14218277,27506094 +g1,13263:14534423,27506094 +g1,13263:14850569,27506094 +g1,13263:17695880,27506094 +g1,13263:18328172,27506094 +k1,13263:18328172,27506094:0 +h1,13263:21805775,27506094:0,0,0 +k1,13263:32583029,27506094:10777254 +g1,13263:32583029,27506094 +) +(1,13264:6630773,28172272:25952256,404226,82312 +h1,13264:6630773,28172272:0,0,0 +g1,13264:6946919,28172272 +g1,13264:7263065,28172272 +g1,13264:7579211,28172272 +g1,13264:7895357,28172272 +g1,13264:8211503,28172272 +g1,13264:8527649,28172272 +g1,13264:8843795,28172272 +g1,13264:9159941,28172272 +g1,13264:9476087,28172272 +g1,13264:9792233,28172272 +g1,13264:10108379,28172272 +g1,13264:10424525,28172272 +g1,13264:10740671,28172272 +g1,13264:11056817,28172272 +g1,13264:11372963,28172272 +g1,13264:11689109,28172272 +g1,13264:12005255,28172272 +g1,13264:12321401,28172272 +g1,13264:12637547,28172272 +g1,13264:12953693,28172272 +g1,13264:13269839,28172272 +g1,13264:13585985,28172272 +g1,13264:13902131,28172272 +g1,13264:14218277,28172272 +g1,13264:14534423,28172272 +g1,13264:14850569,28172272 +g1,13264:17063589,28172272 +g1,13264:17695881,28172272 +k1,13264:17695881,28172272:0 +h1,13264:21489629,28172272:0,0,0 +k1,13264:32583029,28172272:11093400 +g1,13264:32583029,28172272 +) +(1,13265:6630773,28838450:25952256,404226,82312 +h1,13265:6630773,28838450:0,0,0 +g1,13265:6946919,28838450 +g1,13265:7263065,28838450 +g1,13265:7579211,28838450 +g1,13265:7895357,28838450 +g1,13265:8211503,28838450 +g1,13265:8527649,28838450 +g1,13265:8843795,28838450 +g1,13265:9159941,28838450 +g1,13265:9476087,28838450 +g1,13265:9792233,28838450 +g1,13265:10108379,28838450 +g1,13265:10424525,28838450 +g1,13265:10740671,28838450 +g1,13265:11056817,28838450 +g1,13265:11372963,28838450 +g1,13265:11689109,28838450 +g1,13265:12005255,28838450 +g1,13265:12321401,28838450 +g1,13265:12637547,28838450 +g1,13265:12953693,28838450 +g1,13265:13269839,28838450 +g1,13265:13585985,28838450 +g1,13265:13902131,28838450 +g1,13265:14218277,28838450 +g1,13265:14534423,28838450 +g1,13265:14850569,28838450 +g1,13265:18644317,28838450 +g1,13265:19276609,28838450 +k1,13265:19276609,28838450:0 +h1,13265:23070357,28838450:0,0,0 +k1,13265:32583029,28838450:9512672 +g1,13265:32583029,28838450 +) +(1,13266:6630773,29504628:25952256,404226,101187 +h1,13266:6630773,29504628:0,0,0 +g1,13266:6946919,29504628 +g1,13266:7263065,29504628 +g1,13266:7579211,29504628 +g1,13266:7895357,29504628 +g1,13266:8211503,29504628 +g1,13266:8527649,29504628 +g1,13266:8843795,29504628 +g1,13266:9159941,29504628 +g1,13266:9476087,29504628 +g1,13266:9792233,29504628 +g1,13266:10108379,29504628 +g1,13266:10424525,29504628 +g1,13266:10740671,29504628 +g1,13266:11056817,29504628 +g1,13266:11372963,29504628 +g1,13266:11689109,29504628 +g1,13266:12005255,29504628 +g1,13266:12321401,29504628 +g1,13266:12637547,29504628 +g1,13266:12953693,29504628 +g1,13266:13269839,29504628 +g1,13266:13585985,29504628 +g1,13266:13902131,29504628 +g1,13266:14218277,29504628 +g1,13266:14534423,29504628 +g1,13266:14850569,29504628 +g1,13266:18644317,29504628 +g1,13266:19276609,29504628 +k1,13266:19276609,29504628:0 +h1,13266:22754212,29504628:0,0,0 +k1,13266:32583029,29504628:9828817 +g1,13266:32583029,29504628 +) +(1,13267:6630773,30170806:25952256,404226,107478 +h1,13267:6630773,30170806:0,0,0 +g1,13267:6946919,30170806 +g1,13267:7263065,30170806 +g1,13267:7579211,30170806 +g1,13267:7895357,30170806 +g1,13267:8211503,30170806 +g1,13267:8527649,30170806 +g1,13267:8843795,30170806 +g1,13267:9159941,30170806 +g1,13267:9476087,30170806 +g1,13267:9792233,30170806 +g1,13267:10108379,30170806 +g1,13267:10424525,30170806 +g1,13267:10740671,30170806 +g1,13267:11056817,30170806 +g1,13267:14850565,30170806 +g1,13267:15482857,30170806 +g1,13267:17695877,30170806 +g1,13267:21489625,30170806 +g1,13267:22121917,30170806 +k1,13267:22121917,30170806:0 +h1,13267:24651083,30170806:0,0,0 +k1,13267:32583029,30170806:7931946 +g1,13267:32583029,30170806 +) +(1,13268:6630773,30836984:25952256,404226,101187 +h1,13268:6630773,30836984:0,0,0 +g1,13268:6946919,30836984 +g1,13268:7263065,30836984 +g1,13268:7579211,30836984 +g1,13268:7895357,30836984 +g1,13268:8211503,30836984 +g1,13268:8527649,30836984 +g1,13268:8843795,30836984 +g1,13268:9159941,30836984 +g1,13268:9476087,30836984 +g1,13268:9792233,30836984 +g1,13268:10108379,30836984 +g1,13268:10424525,30836984 +g1,13268:10740671,30836984 +g1,13268:11056817,30836984 +g1,13268:12953691,30836984 +g1,13268:13585983,30836984 +g1,13268:15482858,30836984 +h1,13268:15799004,30836984:0,0,0 +k1,13268:32583028,30836984:16784024 +g1,13268:32583028,30836984 +) +(1,13269:6630773,31503162:25952256,404226,107478 +h1,13269:6630773,31503162:0,0,0 +g1,13269:6946919,31503162 +g1,13269:7263065,31503162 +k1,13269:7263065,31503162:0 +h1,13269:11056813,31503162:0,0,0 +k1,13269:32583029,31503162:21526216 +g1,13269:32583029,31503162 +) +] +) +g1,13271:32583029,31610640 +g1,13271:6630773,31610640 +g1,13271:6630773,31610640 +g1,13271:32583029,31610640 +g1,13271:32583029,31610640 +) +h1,13271:6630773,31807248:0,0,0 +(1,13274:6630773,41459761:25952256,9062689,0 +k1,13274:10523651,41459761:3892878 +h1,13273:10523651,41459761:0,0,0 +(1,13273:10523651,41459761:18166500,9062689,0 +(1,13273:10523651,41459761:18167381,9062712,0 +(1,13273:10523651,41459761:18167381,9062712,0 +(1,13273:10523651,41459761:0,9062712,0 +(1,13273:10523651,41459761:0,14155776,0 +(1,13273:10523651,41459761:28377088,14155776,0 +) +k1,13273:10523651,41459761:-28377088 +) +) +g1,13273:28691032,41459761 +) +) +) +g1,13274:28690151,41459761 +k1,13274:32583029,41459761:3892878 +) +(1,13282:6630773,42301249:25952256,513147,134348 +h1,13281:6630773,42301249:983040,0,0 +k1,13281:10484654,42301249:335908 +k1,13281:13867986,42301249:335909 +k1,13281:16964270,42301249:335908 +k1,13281:20527171,42301249:335908 +k1,13281:23545469,42301249:335909 +k1,13281:24829028,42301249:335908 +k1,13281:26184021,42301249:335908 +k1,13281:29980231,42301249:335909 +k1,13281:30975431,42301249:335908 +k1,13281:32583029,42301249:0 +) +(1,13282:6630773,43142737:25952256,513147,134348 +g1,13281:8684671,43142737 +g1,13281:9693270,43142737 +g1,13281:11604955,43142737 +g1,13281:14295863,43142737 +g1,13281:16456585,43142737 +g1,13281:17680797,43142737 +g1,13281:18899111,43142737 +g1,13281:21678492,43142737 +g1,13281:26703792,43142737 +g1,13281:27850672,43142737 +k1,13282:32583029,43142737:2441218 +g1,13282:32583029,43142737 +) +] +(1,13290:32583029,45706769:0,0,0 +g1,13290:32583029,45706769 +) +) +] +(1,13290:6630773,47279633:25952256,0,0 +h1,13290:6630773,47279633:25952256,0,0 +) +] +h1,13290:4262630,4025873:0,0,0 +] +!19095 +}255 +Input:1861:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1862:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1863:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1864:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1865:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1866:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1867:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1868:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1869:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1870:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1871:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1872:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1873:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1874:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1875:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 +{256 +[1,13326:4262630,47279633:28320399,43253760,0 +(1,13326:4262630,4025873:0,0,0 +[1,13326:-473657,4025873:25952256,0,0 +(1,13326:-473657,-710414:25952256,0,0 +h1,13326:-473657,-710414:0,0,0 +(1,13326:-473657,-710414:0,0,0 +(1,13326:-473657,-710414:0,0,0 +g1,13326:-473657,-710414 +(1,13326:-473657,-710414:65781,0,65781 +g1,13326:-407876,-710414 +[1,13326:-407876,-644633:0,0,0 ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13264:37855564,49800853:1179648,16384,0 +k1,13326:-473657,-710414:-65781 ) ) -k1,13264:3078556,49800853:-34777008 -) -] -g1,13264:6630773,4812305 -g1,13264:6630773,4812305 -g1,13264:9560887,4812305 -k1,13264:31387651,4812305:21826764 -) +k1,13326:25478599,-710414:25952256 +g1,13326:25478599,-710414 ) ] -[1,13264:6630773,45706769:25952256,40108032,0 -(1,13264:6630773,45706769:25952256,40108032,0 -(1,13264:6630773,45706769:0,0,0 -g1,13264:6630773,45706769 ) -[1,13264:6630773,45706769:25952256,40108032,0 -v1,13215:6630773,6254097:0,393216,0 -(1,13215:6630773,7235371:25952256,1374490,196608 -g1,13215:6630773,7235371 -g1,13215:6630773,7235371 -g1,13215:6434165,7235371 -(1,13215:6434165,7235371:0,1374490,196608 -r1,13215:32779637,7235371:26345472,1571098,196608 -k1,13215:6434165,7235371:-26345472 +[1,13326:6630773,47279633:25952256,43253760,0 +[1,13326:6630773,4812305:25952256,786432,0 +(1,13326:6630773,4812305:25952256,485622,11795 +(1,13326:6630773,4812305:25952256,485622,11795 +g1,13326:3078558,4812305 +[1,13326:3078558,4812305:0,0,0 +(1,13326:3078558,2439708:0,1703936,0 +k1,13326:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13326:2537886,2439708:1179648,16384,0 +) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13326:3078558,1915420:16384,1179648,0 +) +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) -(1,13215:6434165,7235371:26345472,1374490,196608 -[1,13215:6630773,7235371:25952256,1177882,0 -(1,13212:6630773,6461715:25952256,404226,101187 -h1,13212:6630773,6461715:0,0,0 -g1,13212:6946919,6461715 -g1,13212:7263065,6461715 -g1,13212:7579211,6461715 -g1,13212:7895357,6461715 -g1,13212:8211503,6461715 -g1,13212:8527649,6461715 -g1,13212:8843795,6461715 -g1,13212:9159941,6461715 -g1,13212:9476087,6461715 -g1,13212:9792233,6461715 -g1,13212:10108379,6461715 -g1,13212:10424525,6461715 -g1,13212:10740671,6461715 -g1,13212:11056817,6461715 -g1,13212:11372963,6461715 -g1,13212:13269837,6461715 -g1,13212:13902129,6461715 -g1,13212:16747441,6461715 -g1,13212:18644315,6461715 -g1,13212:19276607,6461715 -g1,13212:21173482,6461715 -g1,13212:24967230,6461715 -g1,13212:25599522,6461715 -g1,13212:27180251,6461715 -h1,13212:27496397,6461715:0,0,0 -k1,13212:32583029,6461715:5086632 -g1,13212:32583029,6461715 -) -(1,13213:6630773,7127893:25952256,404226,107478 -h1,13213:6630773,7127893:0,0,0 -g1,13213:6946919,7127893 -g1,13213:7263065,7127893 -k1,13213:7263065,7127893:0 -h1,13213:11056813,7127893:0,0,0 -k1,13213:32583029,7127893:21526216 -g1,13213:32583029,7127893 -) -] -) -g1,13215:32583029,7235371 -g1,13215:6630773,7235371 -g1,13215:6630773,7235371 -g1,13215:32583029,7235371 -g1,13215:32583029,7235371 -) -h1,13215:6630773,7431979:0,0,0 -(1,13218:6630773,17084492:25952256,9062689,0 -k1,13218:10523651,17084492:3892878 -h1,13217:10523651,17084492:0,0,0 -(1,13217:10523651,17084492:18166500,9062689,0 -(1,13217:10523651,17084492:18167381,9062712,0 -(1,13217:10523651,17084492:18167381,9062712,0 -(1,13217:10523651,17084492:0,9062712,0 -(1,13217:10523651,17084492:0,14155776,0 -(1,13217:10523651,17084492:28377088,14155776,0 -) -k1,13217:10523651,17084492:-28377088 -) -) -g1,13217:28691032,17084492 -) -) -) -g1,13218:28690151,17084492 -k1,13218:32583029,17084492:3892878 -) -(1,13226:6630773,17925980:25952256,505283,134348 -h1,13225:6630773,17925980:983040,0,0 -k1,13225:9256860,17925980:262203 -k1,13225:11172537,17925980:262204 -k1,13225:14014892,17925980:262203 -k1,13225:16323129,17925980:262203 -k1,13225:17043430,17925980:262204 -k1,13225:19935593,17925980:262203 -k1,13225:20849225,17925980:262204 -k1,13225:23908505,17925980:262203 -k1,13225:25778306,17925980:262203 -k1,13225:27434461,17925980:262204 -k1,13225:30687072,17925980:262203 -k1,13225:32583029,17925980:0 -) -(1,13226:6630773,18767468:25952256,513147,7863 -g1,13225:8397623,18767468 -g1,13225:8952712,18767468 -g1,13225:11139648,18767468 -k1,13226:32583029,18767468:20582238 -g1,13226:32583029,18767468 -) -v1,13228:6630773,19957934:0,393216,0 -(1,13245:6630773,28939636:25952256,9374918,196608 -g1,13245:6630773,28939636 -g1,13245:6630773,28939636 -g1,13245:6434165,28939636 -(1,13245:6434165,28939636:0,9374918,196608 -r1,13245:32779637,28939636:26345472,9571526,196608 -k1,13245:6434165,28939636:-26345472 -) -(1,13245:6434165,28939636:26345472,9374918,196608 -[1,13245:6630773,28939636:25952256,9178310,0 -(1,13230:6630773,20171844:25952256,410518,101187 -(1,13229:6630773,20171844:0,0,0 -g1,13229:6630773,20171844 -g1,13229:6630773,20171844 -g1,13229:6303093,20171844 -(1,13229:6303093,20171844:0,0,0 -) -g1,13229:6630773,20171844 -) -g1,13230:10108376,20171844 -g1,13230:11056814,20171844 -g1,13230:11689106,20171844 -g1,13230:12321398,20171844 -g1,13230:14850564,20171844 -h1,13230:15482856,20171844:0,0,0 -k1,13230:32583028,20171844:17100172 -g1,13230:32583028,20171844 -) -(1,13231:6630773,20838022:25952256,410518,107478 -h1,13231:6630773,20838022:0,0,0 -g1,13231:10424522,20838022 -g1,13231:11056814,20838022 -g1,13231:13585980,20838022 -g1,13231:15482855,20838022 -g1,13231:16115147,20838022 -g1,13231:18012022,20838022 -g1,13231:18644314,20838022 -g1,13231:19276606,20838022 -g1,13231:20857335,20838022 -g1,13231:22754209,20838022 -g1,13231:23386501,20838022 -g1,13231:27812541,20838022 -h1,13231:28128687,20838022:0,0,0 -k1,13231:32583029,20838022:4454342 -g1,13231:32583029,20838022 -) -(1,13232:6630773,21504200:25952256,410518,101187 -h1,13232:6630773,21504200:0,0,0 -g1,13232:6946919,21504200 -g1,13232:7263065,21504200 -g1,13232:13269833,21504200 -g1,13232:13902125,21504200 -g1,13232:15799000,21504200 -g1,13232:18328166,21504200 -g1,13232:18960458,21504200 -g1,13232:22754207,21504200 -g1,13232:24651081,21504200 -g1,13232:25283373,21504200 -g1,13232:28128685,21504200 -h1,13232:28444831,21504200:0,0,0 -k1,13232:32583029,21504200:4138198 -g1,13232:32583029,21504200 -) -(1,13233:6630773,22170378:25952256,410518,82312 -h1,13233:6630773,22170378:0,0,0 -g1,13233:6946919,22170378 -g1,13233:7263065,22170378 -g1,13233:13269833,22170378 -g1,13233:13902125,22170378 -k1,13233:13902125,22170378:0 -h1,13233:15482854,22170378:0,0,0 -k1,13233:32583030,22170378:17100176 -g1,13233:32583030,22170378 -) -(1,13234:6630773,22836556:25952256,410518,107478 -h1,13234:6630773,22836556:0,0,0 -g1,13234:6946919,22836556 -g1,13234:7263065,22836556 -g1,13234:7579211,22836556 -g1,13234:7895357,22836556 -g1,13234:8211503,22836556 -g1,13234:8527649,22836556 -g1,13234:8843795,22836556 -g1,13234:9159941,22836556 -g1,13234:9476087,22836556 -g1,13234:9792233,22836556 -g1,13234:10108379,22836556 -g1,13234:10424525,22836556 -g1,13234:10740671,22836556 -g1,13234:11056817,22836556 -g1,13234:14850565,22836556 -g1,13234:15482857,22836556 -g1,13234:19592752,22836556 -g1,13234:20225044,22836556 -k1,13234:20225044,22836556:0 -h1,13234:24018792,22836556:0,0,0 -k1,13234:32583029,22836556:8564237 -g1,13234:32583029,22836556 -) -(1,13235:6630773,23502734:25952256,404226,82312 -h1,13235:6630773,23502734:0,0,0 -g1,13235:6946919,23502734 -g1,13235:7263065,23502734 -g1,13235:7579211,23502734 -g1,13235:7895357,23502734 -g1,13235:8211503,23502734 -g1,13235:8527649,23502734 -g1,13235:8843795,23502734 -g1,13235:9159941,23502734 -g1,13235:9476087,23502734 -g1,13235:9792233,23502734 -g1,13235:10108379,23502734 -g1,13235:10424525,23502734 -g1,13235:10740671,23502734 -g1,13235:11056817,23502734 -g1,13235:12953691,23502734 -g1,13235:13585983,23502734 -k1,13235:13585983,23502734:0 -h1,13235:16115149,23502734:0,0,0 -k1,13235:32583029,23502734:16467880 -g1,13235:32583029,23502734 -) -(1,13236:6630773,24168912:25952256,404226,82312 -h1,13236:6630773,24168912:0,0,0 -g1,13236:6946919,24168912 -g1,13236:7263065,24168912 -g1,13236:7579211,24168912 -g1,13236:7895357,24168912 -g1,13236:8211503,24168912 -g1,13236:8527649,24168912 -g1,13236:8843795,24168912 -g1,13236:9159941,24168912 -g1,13236:9476087,24168912 -g1,13236:9792233,24168912 -g1,13236:10108379,24168912 -g1,13236:10424525,24168912 -g1,13236:10740671,24168912 -g1,13236:11056817,24168912 -g1,13236:13585983,24168912 -g1,13236:14218275,24168912 -g1,13236:18012024,24168912 -g1,13236:18644316,24168912 -k1,13236:18644316,24168912:0 -h1,13236:20857336,24168912:0,0,0 -k1,13236:32583029,24168912:11725693 -g1,13236:32583029,24168912 -) -(1,13237:6630773,24835090:25952256,404226,82312 -h1,13237:6630773,24835090:0,0,0 -g1,13237:6946919,24835090 -g1,13237:7263065,24835090 -g1,13237:7579211,24835090 -g1,13237:7895357,24835090 -g1,13237:8211503,24835090 -g1,13237:8527649,24835090 -g1,13237:8843795,24835090 -g1,13237:9159941,24835090 -g1,13237:9476087,24835090 -g1,13237:9792233,24835090 -g1,13237:10108379,24835090 -g1,13237:10424525,24835090 -g1,13237:10740671,24835090 -g1,13237:11056817,24835090 -g1,13237:11372963,24835090 -g1,13237:11689109,24835090 -g1,13237:12005255,24835090 -g1,13237:12321401,24835090 -g1,13237:12637547,24835090 -g1,13237:12953693,24835090 -g1,13237:13269839,24835090 -g1,13237:13585985,24835090 -g1,13237:13902131,24835090 -g1,13237:14218277,24835090 -g1,13237:14534423,24835090 -g1,13237:14850569,24835090 -g1,13237:17695880,24835090 -g1,13237:18328172,24835090 -k1,13237:18328172,24835090:0 -h1,13237:21805775,24835090:0,0,0 -k1,13237:32583029,24835090:10777254 -g1,13237:32583029,24835090 -) -(1,13238:6630773,25501268:25952256,404226,82312 -h1,13238:6630773,25501268:0,0,0 -g1,13238:6946919,25501268 -g1,13238:7263065,25501268 -g1,13238:7579211,25501268 -g1,13238:7895357,25501268 -g1,13238:8211503,25501268 -g1,13238:8527649,25501268 -g1,13238:8843795,25501268 -g1,13238:9159941,25501268 -g1,13238:9476087,25501268 -g1,13238:9792233,25501268 -g1,13238:10108379,25501268 -g1,13238:10424525,25501268 -g1,13238:10740671,25501268 -g1,13238:11056817,25501268 -g1,13238:11372963,25501268 -g1,13238:11689109,25501268 -g1,13238:12005255,25501268 -g1,13238:12321401,25501268 -g1,13238:12637547,25501268 -g1,13238:12953693,25501268 -g1,13238:13269839,25501268 -g1,13238:13585985,25501268 -g1,13238:13902131,25501268 -g1,13238:14218277,25501268 -g1,13238:14534423,25501268 -g1,13238:14850569,25501268 -g1,13238:17063589,25501268 -g1,13238:17695881,25501268 -k1,13238:17695881,25501268:0 -h1,13238:21489629,25501268:0,0,0 -k1,13238:32583029,25501268:11093400 -g1,13238:32583029,25501268 -) -(1,13239:6630773,26167446:25952256,404226,82312 -h1,13239:6630773,26167446:0,0,0 -g1,13239:6946919,26167446 -g1,13239:7263065,26167446 -g1,13239:7579211,26167446 -g1,13239:7895357,26167446 -g1,13239:8211503,26167446 -g1,13239:8527649,26167446 -g1,13239:8843795,26167446 -g1,13239:9159941,26167446 -g1,13239:9476087,26167446 -g1,13239:9792233,26167446 -g1,13239:10108379,26167446 -g1,13239:10424525,26167446 -g1,13239:10740671,26167446 -g1,13239:11056817,26167446 -g1,13239:11372963,26167446 -g1,13239:11689109,26167446 -g1,13239:12005255,26167446 -g1,13239:12321401,26167446 -g1,13239:12637547,26167446 -g1,13239:12953693,26167446 -g1,13239:13269839,26167446 -g1,13239:13585985,26167446 -g1,13239:13902131,26167446 -g1,13239:14218277,26167446 -g1,13239:14534423,26167446 -g1,13239:14850569,26167446 -g1,13239:18644317,26167446 -g1,13239:19276609,26167446 -k1,13239:19276609,26167446:0 -h1,13239:23070357,26167446:0,0,0 -k1,13239:32583029,26167446:9512672 -g1,13239:32583029,26167446 -) -(1,13240:6630773,26833624:25952256,404226,101187 -h1,13240:6630773,26833624:0,0,0 -g1,13240:6946919,26833624 -g1,13240:7263065,26833624 -g1,13240:7579211,26833624 -g1,13240:7895357,26833624 -g1,13240:8211503,26833624 -g1,13240:8527649,26833624 -g1,13240:8843795,26833624 -g1,13240:9159941,26833624 -g1,13240:9476087,26833624 -g1,13240:9792233,26833624 -g1,13240:10108379,26833624 -g1,13240:10424525,26833624 -g1,13240:10740671,26833624 -g1,13240:11056817,26833624 -g1,13240:11372963,26833624 -g1,13240:11689109,26833624 -g1,13240:12005255,26833624 -g1,13240:12321401,26833624 -g1,13240:12637547,26833624 -g1,13240:12953693,26833624 -g1,13240:13269839,26833624 -g1,13240:13585985,26833624 -g1,13240:13902131,26833624 -g1,13240:14218277,26833624 -g1,13240:14534423,26833624 -g1,13240:14850569,26833624 -g1,13240:18644317,26833624 -g1,13240:19276609,26833624 -k1,13240:19276609,26833624:0 -h1,13240:22754212,26833624:0,0,0 -k1,13240:32583029,26833624:9828817 -g1,13240:32583029,26833624 -) -(1,13241:6630773,27499802:25952256,404226,107478 -h1,13241:6630773,27499802:0,0,0 -g1,13241:6946919,27499802 -g1,13241:7263065,27499802 -g1,13241:7579211,27499802 -g1,13241:7895357,27499802 -g1,13241:8211503,27499802 -g1,13241:8527649,27499802 -g1,13241:8843795,27499802 -g1,13241:9159941,27499802 -g1,13241:9476087,27499802 -g1,13241:9792233,27499802 -g1,13241:10108379,27499802 -g1,13241:10424525,27499802 -g1,13241:10740671,27499802 -g1,13241:11056817,27499802 -g1,13241:14850565,27499802 -g1,13241:15482857,27499802 -g1,13241:17695877,27499802 -g1,13241:21489625,27499802 -g1,13241:22121917,27499802 -k1,13241:22121917,27499802:0 -h1,13241:24651083,27499802:0,0,0 -k1,13241:32583029,27499802:7931946 -g1,13241:32583029,27499802 -) -(1,13242:6630773,28165980:25952256,404226,101187 -h1,13242:6630773,28165980:0,0,0 -g1,13242:6946919,28165980 -g1,13242:7263065,28165980 -g1,13242:7579211,28165980 -g1,13242:7895357,28165980 -g1,13242:8211503,28165980 -g1,13242:8527649,28165980 -g1,13242:8843795,28165980 -g1,13242:9159941,28165980 -g1,13242:9476087,28165980 -g1,13242:9792233,28165980 -g1,13242:10108379,28165980 -g1,13242:10424525,28165980 -g1,13242:10740671,28165980 -g1,13242:11056817,28165980 -g1,13242:12953691,28165980 -g1,13242:13585983,28165980 -g1,13242:15482858,28165980 -h1,13242:15799004,28165980:0,0,0 -k1,13242:32583028,28165980:16784024 -g1,13242:32583028,28165980 -) -(1,13243:6630773,28832158:25952256,404226,107478 -h1,13243:6630773,28832158:0,0,0 -g1,13243:6946919,28832158 -g1,13243:7263065,28832158 -k1,13243:7263065,28832158:0 -h1,13243:11056813,28832158:0,0,0 -k1,13243:32583029,28832158:21526216 -g1,13243:32583029,28832158 -) -] -) -g1,13245:32583029,28939636 -g1,13245:6630773,28939636 -g1,13245:6630773,28939636 -g1,13245:32583029,28939636 -g1,13245:32583029,28939636 -) -h1,13245:6630773,29136244:0,0,0 -(1,13248:6630773,38788757:25952256,9062689,0 -k1,13248:10523651,38788757:3892878 -h1,13247:10523651,38788757:0,0,0 -(1,13247:10523651,38788757:18166500,9062689,0 -(1,13247:10523651,38788757:18167381,9062712,0 -(1,13247:10523651,38788757:18167381,9062712,0 -(1,13247:10523651,38788757:0,9062712,0 -(1,13247:10523651,38788757:0,14155776,0 -(1,13247:10523651,38788757:28377088,14155776,0 -) -k1,13247:10523651,38788757:-28377088 -) -) -g1,13247:28691032,38788757 -) -) -) -g1,13248:28690151,38788757 -k1,13248:32583029,38788757:3892878 -) -(1,13256:6630773,39630245:25952256,513147,134348 -h1,13255:6630773,39630245:983040,0,0 -k1,13255:10354136,39630245:205390 -k1,13255:13606949,39630245:205390 -k1,13255:16572714,39630245:205389 -k1,13255:20005097,39630245:205390 -k1,13255:22892876,39630245:205390 -k1,13255:24045917,39630245:205390 -k1,13255:25270392,39630245:205390 -k1,13255:28936082,39630245:205389 -k1,13255:29800764,39630245:205390 -k1,13255:31613752,39630245:205390 -k1,13256:32583029,39630245:0 -) -(1,13256:6630773,40471733:25952256,513147,134348 -g1,13255:7928385,40471733 -g1,13255:8936984,40471733 -g1,13255:10848669,40471733 -g1,13255:13539577,40471733 -g1,13255:15700299,40471733 -g1,13255:16924511,40471733 -g1,13255:18142825,40471733 -g1,13255:20922206,40471733 -g1,13255:25947506,40471733 -g1,13255:27094386,40471733 -k1,13256:32583029,40471733:3197504 -g1,13256:32583029,40471733 -) -(1,13260:6630773,42562993:25952256,555811,139132 -(1,13260:6630773,42562993:2450326,527696,12975 -g1,13260:6630773,42562993 -g1,13260:9081099,42562993 -) -g1,13260:13681858,42562993 -g1,13260:15249086,42562993 -k1,13260:32583029,42562993:14898035 -g1,13260:32583029,42562993 -) -(1,13264:6630773,43797697:25952256,513147,126483 -k1,13263:8668662,43797697:254654 -k1,13263:9942401,43797697:254654 -k1,13263:12682836,43797697:254654 -k1,13263:13596782,43797697:254654 -k1,13263:17923188,43797697:254654 -k1,13263:18709339,43797697:254654 -k1,13263:20915656,43797697:254655 -k1,13263:23060368,43797697:254654 -k1,13263:24183374,43797697:254654 -k1,13263:25542310,43797697:254654 -k1,13263:26998894,43797697:254654 -k1,13263:28062918,43797697:254654 -k1,13263:29336657,43797697:254654 -k1,13263:31923737,43797697:254654 -k1,13263:32583029,43797697:0 -) -(1,13264:6630773,44639185:25952256,513147,134348 -k1,13263:9819755,44639185:239207 -k1,13263:12928127,44639185:239206 -k1,13263:13818762,44639185:239207 -k1,13263:16266531,44639185:239206 -k1,13263:17524823,44639185:239207 -k1,13263:20096455,44639185:239206 -k1,13263:20994954,44639185:239207 -k1,13263:22253245,44639185:239206 -k1,13263:26737874,44639185:239207 -k1,13263:28019102,44639185:239206 -k1,13263:31093396,44639185:239207 -k1,13264:32583029,44639185:0 -) -(1,13264:6630773,45480673:25952256,513147,134348 -k1,13263:7739077,45480673:215704 -k1,13263:9562378,45480673:215703 -k1,13263:11513475,45480673:215704 -k1,13263:15456210,45480673:215703 -k1,13263:17682559,45480673:215704 -k1,13263:18845914,45480673:215704 -(1,13263:18845914,45480673:0,452978,115847 -r1,13263:20611027,45480673:1765113,568825,115847 -k1,13263:18845914,45480673:-1765113 -) -(1,13263:18845914,45480673:1765113,452978,115847 -k1,13263:18845914,45480673:3277 -h1,13263:20607750,45480673:0,411205,112570 -) -k1,13263:20826730,45480673:215703 -k1,13263:22146716,45480673:215704 -k1,13263:23642337,45480673:215703 -k1,13263:24213901,45480673:215704 -k1,13263:28159258,45480673:215703 -k1,13263:31923737,45480673:215704 -k1,13263:32583029,45480673:0 -) -] -(1,13264:32583029,45706769:0,0,0 -g1,13264:32583029,45706769 -) -) -] -(1,13264:6630773,47279633:25952256,0,0 -h1,13264:6630773,47279633:25952256,0,0 -) -] -h1,13264:4262630,4025873:0,0,0 -] -!19379 -}254 -Input:1865:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1866:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1867:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1868:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1869:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1870:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1871:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1872:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1873:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1874:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1875:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1876:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1877:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1878:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1879:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 -{255 -[1,13302:4262630,47279633:28320399,43253760,0 -(1,13302:4262630,4025873:0,0,0 -[1,13302:-473657,4025873:25952256,0,0 -(1,13302:-473657,-710414:25952256,0,0 -h1,13302:-473657,-710414:0,0,0 -(1,13302:-473657,-710414:0,0,0 -(1,13302:-473657,-710414:0,0,0 -g1,13302:-473657,-710414 -(1,13302:-473657,-710414:65781,0,65781 -g1,13302:-407876,-710414 -[1,13302:-407876,-644633:0,0,0 ] ) -k1,13302:-473657,-710414:-65781 ) ) -k1,13302:25478599,-710414:25952256 -g1,13302:25478599,-710414 +] +[1,13326:3078558,4812305:0,0,0 +(1,13326:3078558,2439708:0,1703936,0 +g1,13326:29030814,2439708 +g1,13326:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13326:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -[1,13302:6630773,47279633:25952256,43253760,0 -[1,13302:6630773,4812305:25952256,786432,0 -(1,13302:6630773,4812305:25952256,513147,134348 -(1,13302:6630773,4812305:25952256,513147,134348 -g1,13302:3078558,4812305 -[1,13302:3078558,4812305:0,0,0 -(1,13302:3078558,2439708:0,1703936,0 -k1,13302:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13302:2537886,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13326:37855564,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13302:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,13326:3078556,2439708:-34777008 ) ] +[1,13326:3078558,4812305:0,0,0 +(1,13326:3078558,49800853:0,16384,2228224 +k1,13326:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13326:2537886,49800853:1179648,16384,0 ) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13326:3078558,51504789:16384,1179648,0 ) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] -[1,13302:3078558,4812305:0,0,0 -(1,13302:3078558,2439708:0,1703936,0 -g1,13302:29030814,2439708 -g1,13302:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13302:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 -) -] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13302:37855564,2439708:1179648,16384,0 ) +] +[1,13326:3078558,4812305:0,0,0 +(1,13326:3078558,49800853:0,16384,2228224 +g1,13326:29030814,49800853 +g1,13326:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13326:36151628,51504789:16384,1179648,0 ) -k1,13302:3078556,2439708:-34777008 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] -[1,13302:3078558,4812305:0,0,0 -(1,13302:3078558,49800853:0,16384,2228224 -k1,13302:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13302:2537886,49800853:1179648,16384,0 -) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13302:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,13302:3078558,4812305:0,0,0 -(1,13302:3078558,49800853:0,16384,2228224 -g1,13302:29030814,49800853 -g1,13302:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13302:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13302:37855564,49800853:1179648,16384,0 -) -) -k1,13302:3078556,49800853:-34777008 -) -] -g1,13302:6630773,4812305 -k1,13302:25712890,4812305:17886740 -g1,13302:29057847,4812305 -g1,13302:29873114,4812305 -) -) -] -[1,13302:6630773,45706769:25952256,40108032,0 -(1,13302:6630773,45706769:25952256,40108032,0 -(1,13302:6630773,45706769:0,0,0 -g1,13302:6630773,45706769 -) -[1,13302:6630773,45706769:25952256,40108032,0 -(1,13264:6630773,6254097:25952256,513147,134348 -k1,13263:7844046,6254097:194188 -k1,13263:10544331,6254097:194188 -k1,13263:11972562,6254097:194188 -k1,13263:13948019,6254097:194188 -k1,13263:17232230,6254097:194188 -k1,13263:18042456,6254097:194188 -k1,13263:20515331,6254097:194188 -h1,13263:22058049,6254097:0,0,0 -k1,13263:22252237,6254097:194188 -k1,13263:23255795,6254097:194188 -k1,13263:24948136,6254097:194188 -h1,13263:26143513,6254097:0,0,0 -k1,13263:26511371,6254097:194188 -k1,13263:27809841,6254097:194188 -k1,13263:29289845,6254097:194188 -k1,13264:32583029,6254097:0 -) -(1,13264:6630773,7095585:25952256,513147,138281 -k1,13263:7923525,7095585:236967 -k1,13263:10369056,7095585:236968 -k1,13263:11625108,7095585:236967 -k1,13263:14194501,7095585:236967 -k1,13263:15090760,7095585:236967 -k1,13263:19399479,7095585:236967 -k1,13263:21381015,7095585:236968 -$1,13263:21381015,7095585 -$1,13263:21883676,7095585 -k1,13263:22120643,7095585:236967 -k1,13263:24567484,7095585:236967 -$1,13263:24567484,7095585 -$1,13263:25119297,7095585 -k1,13263:25356265,7095585:236968 -k1,13263:27165441,7095585:236967 -k1,13263:28920877,7095585:236967 -k1,13263:32583029,7095585:0 -) -(1,13264:6630773,7937073:25952256,505283,126483 -k1,13263:7650186,7937073:204145 -k1,13263:8920601,7937073:204144 -k1,13263:11402122,7937073:204145 -k1,13263:16174125,7937073:204144 -k1,13263:18067788,7937073:204145 -k1,13263:19291017,7937073:204144 -k1,13263:22177551,7937073:204145 -k1,13263:25471718,7937073:204144 -k1,13263:26291901,7937073:204145 -k1,13263:27699286,7937073:204144 -k1,13263:30182118,7937073:204145 -k1,13263:31375200,7937073:204144 -k1,13264:32583029,7937073:0 -) -(1,13264:6630773,8778561:25952256,513147,134348 -k1,13263:9650213,8778561:225640 -k1,13263:10637382,8778561:225641 -k1,13263:14536970,8778561:225640 -k1,13263:15652590,8778561:225641 -k1,13263:17432089,8778561:225640 -k1,13263:18849174,8778561:225640 -k1,13263:22048183,8778561:225641 -k1,13263:24606249,8778561:225640 -k1,13263:27857687,8778561:225641 -k1,13263:29074887,8778561:225640 -k1,13263:32583029,8778561:0 -) -(1,13264:6630773,9620049:25952256,513147,134348 -k1,13263:9935813,9620049:197323 -k1,13263:12110357,9620049:197323 -k1,13263:14005717,9620049:197322 -k1,13263:15222125,9620049:197323 -k1,13263:17905229,9620049:197323 -k1,13263:18761844,9620049:197323 -k1,13263:23030919,9620049:197323 -k1,13263:23759739,9620049:197323 -k1,13263:25701629,9620049:197322 -k1,13263:27773282,9620049:197323 -k1,13263:31478747,9620049:197323 -k1,13263:32583029,9620049:0 -) -(1,13264:6630773,10461537:25952256,505283,126483 -g1,13263:7577768,10461537 -g1,13263:10985640,10461537 -g1,13263:11800907,10461537 -g1,13263:13156846,10461537 -g1,13263:14038960,10461537 -g1,13263:15888386,10461537 -k1,13264:32583029,10461537:12845714 -g1,13264:32583029,10461537 -) -(1,13266:6630773,11303025:25952256,513147,134348 -h1,13265:6630773,11303025:983040,0,0 -k1,13265:11452435,11303025:181713 -k1,13265:12625709,11303025:181714 -k1,13265:15189000,11303025:181713 -k1,13265:16132241,11303025:181713 -k1,13265:17644335,11303025:181713 -k1,13265:18845134,11303025:181714 -k1,13265:21329127,11303025:181713 -k1,13265:23521485,11303025:181713 -k1,13265:24694758,11303025:181713 -k1,13265:28279101,11303025:181714 -k1,13265:31423697,11303025:181713 -k1,13266:32583029,11303025:0 -) -(1,13266:6630773,12144513:25952256,513147,134348 -k1,13265:9546688,12144513:295786 -k1,13265:10834033,12144513:295785 -k1,13265:12731519,12144513:295786 -k1,13265:16332286,12144513:295786 -k1,13265:18930351,12144513:295785 -k1,13265:19912299,12144513:295786 -k1,13265:21252729,12144513:295786 -k1,13265:23329783,12144513:295785 -k1,13265:25377346,12144513:295786 -k1,13265:26717776,12144513:295786 -k1,13265:27696446,12144513:295785 -k1,13265:30975431,12144513:295786 -k1,13265:32583029,12144513:0 -) -(1,13266:6630773,12986001:25952256,505283,134348 -k1,13265:7859136,12986001:236803 -k1,13265:9162211,12986001:236804 -k1,13265:13139154,12986001:236803 -k1,13265:16338840,12986001:236803 -k1,13265:18421792,12986001:236803 -k1,13265:20236048,12986001:236804 -k1,13265:21088889,12986001:236803 -k1,13265:24036916,12986001:236803 -k1,13265:24629579,12986001:236803 -k1,13265:28102551,12986001:236804 -k1,13265:30108171,12986001:236803 -k1,13265:31092740,12986001:236803 -k1,13266:32583029,12986001:0 -) -(1,13266:6630773,13827489:25952256,513147,134348 -k1,13265:7898037,13827489:242281 -k1,13265:9875712,13827489:242282 -k1,13265:10473853,13827489:242281 -k1,13265:13478477,13827489:242281 -k1,13265:16728206,13827489:242282 -k1,13265:18705880,13827489:242281 -(1,13265:18705880,13827489:0,452978,115847 -r1,13265:22229552,13827489:3523672,568825,115847 -k1,13265:18705880,13827489:-3523672 -) -(1,13265:18705880,13827489:3523672,452978,115847 -k1,13265:18705880,13827489:3277 -h1,13265:22226275,13827489:0,411205,112570 -) -k1,13265:22645503,13827489:242281 -k1,13265:23906870,13827489:242282 -k1,13265:26554323,13827489:242281 -k1,13265:28309830,13827489:242281 -k1,13265:29313640,13827489:242282 -k1,13265:31821501,13827489:242281 -k1,13266:32583029,13827489:0 -) -(1,13266:6630773,14668977:25952256,513147,134348 -(1,13265:6630773,14668977:0,452978,122846 -r1,13265:12264716,14668977:5633943,575824,122846 -k1,13265:6630773,14668977:-5633943 -) -(1,13265:6630773,14668977:5633943,452978,122846 -k1,13265:6630773,14668977:3277 -h1,13265:12261439,14668977:0,411205,112570 -) -k1,13265:12718330,14668977:279944 -k1,13265:14379118,14668977:279944 -k1,13265:17064234,14668977:279944 -k1,13265:18837088,14668977:279944 -k1,13265:21538586,14668977:279943 -k1,13265:22477822,14668977:279944 -k1,13265:26829518,14668977:279944 -k1,13265:29152219,14668977:279944 -k1,13265:32583029,14668977:0 -) -(1,13266:6630773,15510465:25952256,513147,126483 -k1,13265:10671504,15510465:172796 -k1,13265:12035746,15510465:172797 -k1,13265:12740039,15510465:172796 -k1,13265:15424830,15510465:172796 -k1,13265:16545278,15510465:172797 -k1,13265:20288475,15510465:172796 -$1,13265:20288475,15510465 -$1,13265:20791136,15510465 -k1,13265:20963932,15510465:172796 -k1,13265:23212910,15510465:172797 -k1,13265:25168941,15510465:172796 -k1,13265:25697598,15510465:172797 -k1,13265:27764384,15510465:172796 -k1,13265:28468677,15510465:172796 -k1,13265:31226869,15510465:172797 -k1,13265:32051093,15510465:172796 -(1,13265:32051093,15510465:0,414482,115847 -r1,13265:32409359,15510465:358266,530329,115847 -k1,13265:32051093,15510465:-358266 -) -(1,13265:32051093,15510465:358266,414482,115847 -k1,13265:32051093,15510465:3277 -h1,13265:32406082,15510465:0,411205,112570 -) -k1,13266:32583029,15510465:0 -) -(1,13266:6630773,16351953:25952256,513147,122846 -(1,13265:6630773,16351953:0,452978,115847 -r1,13265:10857869,16351953:4227096,568825,115847 -k1,13265:6630773,16351953:-4227096 -) -(1,13265:6630773,16351953:4227096,452978,115847 -k1,13265:6630773,16351953:3277 -h1,13265:10854592,16351953:0,411205,112570 -) -k1,13265:11049812,16351953:191943 -k1,13265:13422138,16351953:191943 -k1,13265:14361847,16351953:191943 -k1,13265:16240688,16351953:191944 -k1,13265:18318102,16351953:191943 -k1,13265:19041542,16351953:191943 -k1,13265:20252570,16351953:191943 -k1,13265:22710093,16351953:191943 -(1,13265:22710093,16351953:0,414482,115847 -r1,13265:24123494,16351953:1413401,530329,115847 -k1,13265:22710093,16351953:-1413401 -) -(1,13265:22710093,16351953:1413401,414482,115847 -k1,13265:22710093,16351953:3277 -h1,13265:24120217,16351953:0,411205,112570 -) -k1,13265:24315437,16351953:191943 -k1,13265:25455032,16351953:191944 -(1,13265:25455032,16351953:0,452978,122846 -r1,13265:28978704,16351953:3523672,575824,122846 -k1,13265:25455032,16351953:-3523672 -) -(1,13265:25455032,16351953:3523672,452978,122846 -k1,13265:25455032,16351953:3277 -h1,13265:28975427,16351953:0,411205,112570 -) -k1,13265:29344317,16351953:191943 -k1,13265:31410590,16351953:191943 -k1,13265:32583029,16351953:0 -) -(1,13266:6630773,17193441:25952256,513147,134348 -k1,13265:10312228,17193441:241470 -k1,13265:11545258,17193441:241470 -k1,13265:14876752,17193441:241471 -k1,13265:15734260,17193441:241470 -k1,13265:17178971,17193441:241470 -k1,13265:19699128,17193441:241470 -k1,13265:21763154,17193441:241470 -k1,13265:25031732,17193441:241470 -k1,13265:27802893,17193441:241471 -k1,13265:29424551,17193441:241470 -k1,13265:31931601,17193441:241470 -k1,13265:32583029,17193441:0 -) -(1,13266:6630773,18034929:25952256,513147,134348 -k1,13265:8584643,18034929:218477 -k1,13265:11656558,18034929:218477 -k1,13265:14637377,18034929:218476 -k1,13265:16423475,18034929:218477 -(1,13265:16423475,18034929:0,452978,115847 -r1,13265:21705706,18034929:5282231,568825,115847 -k1,13265:16423475,18034929:-5282231 -) -(1,13265:16423475,18034929:5282231,452978,115847 -k1,13265:16423475,18034929:3277 -h1,13265:21702429,18034929:0,411205,112570 -) -k1,13265:21924183,18034929:218477 -k1,13265:23334105,18034929:218477 -k1,13265:27777687,18034929:218476 -k1,13265:31563944,18034929:218477 -k1,13265:32583029,18034929:0 -) -(1,13266:6630773,18876417:25952256,505283,7863 -k1,13266:32583029,18876417:24389222 -g1,13266:32583029,18876417 -) -(1,13268:6630773,19717905:25952256,513147,134348 -h1,13267:6630773,19717905:983040,0,0 -g1,13267:8630931,19717905 -g1,13267:11046588,19717905 -g1,13267:12114169,19717905 -g1,13267:15045594,19717905 -g1,13267:17756818,19717905 -g1,13267:20584696,19717905 -k1,13268:32583029,19717905:10435299 -g1,13268:32583029,19717905 -) -v1,13270:6630773,20908371:0,393216,0 -(1,13278:6630773,23888179:25952256,3373024,196608 -g1,13278:6630773,23888179 -g1,13278:6630773,23888179 -g1,13278:6434165,23888179 -(1,13278:6434165,23888179:0,3373024,196608 -r1,13278:32779637,23888179:26345472,3569632,196608 -k1,13278:6434165,23888179:-26345472 -) -(1,13278:6434165,23888179:26345472,3373024,196608 -[1,13278:6630773,23888179:25952256,3176416,0 -(1,13272:6630773,21115989:25952256,404226,76021 -(1,13271:6630773,21115989:0,0,0 -g1,13271:6630773,21115989 -g1,13271:6630773,21115989 -g1,13271:6303093,21115989 -(1,13271:6303093,21115989:0,0,0 -) -g1,13271:6630773,21115989 -) -k1,13272:6630773,21115989:0 -h1,13272:11372958,21115989:0,0,0 -k1,13272:32583030,21115989:21210072 -g1,13272:32583030,21115989 -) -(1,13273:6630773,21782167:25952256,404226,101187 -h1,13273:6630773,21782167:0,0,0 -g1,13273:9159939,21782167 -k1,13273:9159939,21782167:0 -h1,13273:9792231,21782167:0,0,0 -k1,13273:32583029,21782167:22790798 -g1,13273:32583029,21782167 -) -(1,13274:6630773,22448345:25952256,410518,82312 -h1,13274:6630773,22448345:0,0,0 -g1,13274:10740668,22448345 -g1,13274:11372960,22448345 -k1,13274:11372960,22448345:0 -h1,13274:14850563,22448345:0,0,0 -k1,13274:32583029,22448345:17732466 -g1,13274:32583029,22448345 -) -(1,13275:6630773,23114523:25952256,404226,101187 -h1,13275:6630773,23114523:0,0,0 -g1,13275:7263065,23114523 -g1,13275:7895357,23114523 -g1,13275:12005252,23114523 -g1,13275:13269836,23114523 -g1,13275:14534420,23114523 -g1,13275:18012023,23114523 -g1,13275:18960461,23114523 -k1,13275:18960461,23114523:0 -h1,13275:20225044,23114523:0,0,0 -k1,13275:32583029,23114523:12357985 -g1,13275:32583029,23114523 -) -(1,13276:6630773,23780701:25952256,410518,107478 -h1,13276:6630773,23780701:0,0,0 -g1,13276:8527647,23780701 -g1,13276:9159939,23780701 -g1,13276:14850563,23780701 -g1,13276:16747438,23780701 -g1,13276:18960459,23780701 -g1,13276:21173479,23780701 -h1,13276:21489625,23780701:0,0,0 -k1,13276:32583029,23780701:11093404 -g1,13276:32583029,23780701 -) -] -) -g1,13278:32583029,23888179 -g1,13278:6630773,23888179 -g1,13278:6630773,23888179 -g1,13278:32583029,23888179 -g1,13278:32583029,23888179 -) -h1,13278:6630773,24084787:0,0,0 -(1,13282:6630773,25450563:25952256,513147,126483 -h1,13281:6630773,25450563:983040,0,0 -k1,13281:8826467,25450563:259105 -k1,13281:10854390,25450563:259106 -k1,13281:12588710,25450563:259105 -k1,13281:14657919,25450563:259105 -k1,13281:15726394,25450563:259105 -k1,13281:17004585,25450563:259106 -k1,13281:19529270,25450563:259105 -k1,13281:22274156,25450563:259105 -k1,13281:23192553,25450563:259105 -k1,13281:24798424,25450563:259106 -k1,13281:29374386,25450563:259105 -k1,13281:32583029,25450563:0 -) -(1,13282:6630773,26292051:25952256,505283,126483 -k1,13281:7607271,26292051:214970 -k1,13281:8841326,26292051:214970 -(1,13281:8841326,26292051:0,452978,115847 -r1,13281:12364998,26292051:3523672,568825,115847 -k1,13281:8841326,26292051:-3523672 -) -(1,13281:8841326,26292051:3523672,452978,115847 -k1,13281:8841326,26292051:3277 -h1,13281:12361721,26292051:0,411205,112570 -) -k1,13281:12579968,26292051:214970 -k1,13281:15491745,26292051:214970 -k1,13281:18550978,26292051:214970 -k1,13281:19634300,26292051:214970 -k1,13281:21247153,26292051:214970 -k1,13281:22396666,26292051:214970 -k1,13281:23069733,26292051:214970 -k1,13281:23936131,26292051:214970 -k1,13281:24948019,26292051:214970 -k1,13281:26556940,26292051:214970 -(1,13281:26556940,26292051:0,452978,115847 -r1,13281:29728901,26292051:3171961,568825,115847 -k1,13281:26556940,26292051:-3171961 -) -(1,13281:26556940,26292051:3171961,452978,115847 -g1,13281:28318776,26292051 -g1,13281:29022200,26292051 -h1,13281:29725624,26292051:0,411205,112570 -) -k1,13281:30117541,26292051:214970 -k1,13281:30802404,26292051:214970 -k1,13281:31548871,26292051:214970 -k1,13282:32583029,26292051:0 -) -(1,13282:6630773,27133539:25952256,505283,126483 -k1,13281:9277407,27133539:258502 -k1,13281:10187338,27133539:258503 -k1,13281:13704945,27133539:258502 -k1,13281:15247953,27133539:258502 -k1,13281:16122494,27133539:258503 -k1,13281:17584237,27133539:258502 -k1,13281:19209820,27133539:258502 -k1,13281:20277693,27133539:258503 -k1,13281:23047535,27133539:258502 -k1,13281:23922075,27133539:258502 -(1,13281:23922075,27133539:0,452978,115847 -r1,13281:25335476,27133539:1413401,568825,115847 -k1,13281:23922075,27133539:-1413401 -) -(1,13281:23922075,27133539:1413401,452978,115847 -k1,13281:23922075,27133539:3277 -h1,13281:25332199,27133539:0,411205,112570 -) -k1,13281:25593979,27133539:258503 -k1,13281:26383978,27133539:258502 -k1,13281:29227875,27133539:258502 -k1,13281:30947176,27133539:258503 -k1,13281:32224763,27133539:258502 -(1,13281:32224763,27133539:0,414482,115847 -r1,13281:32583029,27133539:358266,530329,115847 -k1,13281:32224763,27133539:-358266 -) -(1,13281:32224763,27133539:358266,414482,115847 -k1,13281:32224763,27133539:3277 -h1,13281:32579752,27133539:0,411205,112570 -) -k1,13281:32583029,27133539:0 -) -(1,13282:6630773,27975027:25952256,505283,7863 -k1,13282:32583030,27975027:23025420 -g1,13282:32583030,27975027 -) -v1,13284:6630773,29165493:0,393216,0 -(1,13289:6630773,30146767:25952256,1374490,196608 -g1,13289:6630773,30146767 -g1,13289:6630773,30146767 -g1,13289:6434165,30146767 -(1,13289:6434165,30146767:0,1374490,196608 -r1,13289:32779637,30146767:26345472,1571098,196608 -k1,13289:6434165,30146767:-26345472 -) -(1,13289:6434165,30146767:26345472,1374490,196608 -[1,13289:6630773,30146767:25952256,1177882,0 -(1,13286:6630773,29373111:25952256,404226,107478 -(1,13285:6630773,29373111:0,0,0 -g1,13285:6630773,29373111 -g1,13285:6630773,29373111 -g1,13285:6303093,29373111 -(1,13285:6303093,29373111:0,0,0 -) -g1,13285:6630773,29373111 -) -k1,13286:6630773,29373111:0 -g1,13286:11689104,29373111 -g1,13286:14218270,29373111 -h1,13286:14534416,29373111:0,0,0 -k1,13286:32583028,29373111:18048612 -g1,13286:32583028,29373111 -) -(1,13287:6630773,30039289:25952256,404226,107478 -h1,13287:6630773,30039289:0,0,0 -g1,13287:6946919,30039289 -g1,13287:7263065,30039289 -g1,13287:13585980,30039289 -g1,13287:14218272,30039289 -h1,13287:15166709,30039289:0,0,0 -k1,13287:32583029,30039289:17416320 -g1,13287:32583029,30039289 -) -] -) -g1,13289:32583029,30146767 -g1,13289:6630773,30146767 -g1,13289:6630773,30146767 -g1,13289:32583029,30146767 -g1,13289:32583029,30146767 -) -h1,13289:6630773,30343375:0,0,0 -(1,13292:6630773,39995888:25952256,9062689,0 -k1,13292:10523651,39995888:3892878 -h1,13291:10523651,39995888:0,0,0 -(1,13291:10523651,39995888:18166500,9062689,0 -(1,13291:10523651,39995888:18167381,9062712,0 -(1,13291:10523651,39995888:18167381,9062712,0 -(1,13291:10523651,39995888:0,9062712,0 -(1,13291:10523651,39995888:0,14155776,0 -(1,13291:10523651,39995888:28377088,14155776,0 -) -k1,13291:10523651,39995888:-28377088 -) -) -g1,13291:28691032,39995888 -) -) -) -g1,13292:28690151,39995888 -k1,13292:32583029,39995888:3892878 -) -(1,13300:6630773,40837376:25952256,513147,134348 -h1,13299:6630773,40837376:983040,0,0 -k1,13299:8295153,40837376:203583 -k1,13299:9367088,40837376:203583 -k1,13299:11500051,40837376:203583 -k1,13299:12059494,40837376:203583 -k1,13299:15146006,40837376:203583 -k1,13299:16111117,40837376:203583 -k1,13299:19122262,40837376:203583 -k1,13299:19681705,40837376:203583 -k1,13299:21779278,40837376:203583 -k1,13299:22634289,40837376:203583 -k1,13299:23608575,40837376:203583 -k1,13299:27039151,40837376:203583 -k1,13299:30029980,40837376:203583 -k1,13299:31563944,40837376:203583 -k1,13299:32583029,40837376:0 -) -(1,13300:6630773,41678864:25952256,505283,126483 -k1,13299:8235039,41678864:229321 -k1,13299:10814482,41678864:229322 -k1,13299:12035363,41678864:229321 -k1,13299:15646997,41678864:229321 -k1,13299:17270269,41678864:229321 -k1,13299:19824153,41678864:229322 -k1,13299:20704902,41678864:229321 -k1,13299:22385845,41678864:229321 -k1,13299:24317136,41678864:229321 -k1,13299:27319942,41678864:229322 -k1,13299:30295877,41678864:229321 -k1,13299:31478747,41678864:229321 -k1,13299:32583029,41678864:0 -) -(1,13300:6630773,42520352:25952256,505283,126483 -k1,13299:8265620,42520352:200919 -k1,13299:9743837,42520352:200920 -k1,13299:11244335,42520352:200919 -k1,13299:12206782,42520352:200919 -k1,13299:13707281,42520352:200920 -k1,13299:15302151,42520352:200919 -(1,13299:15302151,42520352:0,452978,122846 -r1,13299:21639519,42520352:6337368,575824,122846 -k1,13299:15302151,42520352:-6337368 -) -(1,13299:15302151,42520352:6337368,452978,122846 -g1,13299:18470835,42520352 -g1,13299:19174259,42520352 -h1,13299:21636242,42520352:0,411205,112570 -) -k1,13299:22014108,42520352:200919 -k1,13299:24652312,42520352:200920 -k1,13299:26009941,42520352:200919 -k1,13299:28066184,42520352:200919 -k1,13299:29286189,42520352:200920 -k1,13299:31189078,42520352:200919 -k1,13300:32583029,42520352:0 -) -(1,13300:6630773,43361840:25952256,505283,134348 -(1,13299:6630773,43361840:0,452978,115847 -r1,13299:12968141,43361840:6337368,568825,115847 -k1,13299:6630773,43361840:-6337368 -) -(1,13299:6630773,43361840:6337368,452978,115847 -g1,13299:9799457,43361840 -g1,13299:10502881,43361840 -h1,13299:12964864,43361840:0,411205,112570 -) -k1,13299:13252181,43361840:284040 -k1,13299:14727667,43361840:284041 -k1,13299:18791824,43361840:284040 -k1,13299:20469815,43361840:284040 -(1,13299:20469815,43361840:0,452978,115847 -r1,13299:27862318,43361840:7392503,568825,115847 -k1,13299:20469815,43361840:-7392503 -) -(1,13299:20469815,43361840:7392503,452978,115847 -g1,13299:23638499,43361840 -g1,13299:24341923,43361840 -h1,13299:27859041,43361840:0,411205,112570 -) -k1,13299:28146358,43361840:284040 -k1,13299:29046437,43361840:284041 -k1,13299:31215948,43361840:284040 -k1,13299:32583029,43361840:0 -) -(1,13300:6630773,44203328:25952256,505283,126483 -k1,13299:7703523,44203328:204398 -k1,13299:9438186,44203328:204397 -k1,13299:10294012,44203328:204398 -k1,13299:12214142,44203328:204397 -k1,13299:14057595,44203328:204398 -k1,13299:19704102,44203328:204397 -k1,13299:21302451,44203328:204398 -(1,13299:21302451,44203328:0,452978,115847 -r1,13299:25177835,44203328:3875384,568825,115847 -k1,13299:21302451,44203328:-3875384 -) -(1,13299:21302451,44203328:3875384,452978,115847 -g1,13299:23415999,44203328 -g1,13299:24119423,44203328 -h1,13299:25174558,44203328:0,411205,112570 -) -k1,13299:25382232,44203328:204397 -k1,13299:26311458,44203328:204398 -k1,13299:27800361,44203328:204397 -k1,13299:29384947,44203328:204398 -k1,13299:30355460,44203328:204397 -k1,13299:32583029,44203328:0 -) -(1,13300:6630773,45044816:25952256,505283,7863 -k1,13300:32583029,45044816:23735828 -g1,13300:32583029,45044816 -) -] -(1,13302:32583029,45706769:0,0,0 -g1,13302:32583029,45706769 -) -) -] -(1,13302:6630773,47279633:25952256,0,0 -h1,13302:6630773,47279633:25952256,0,0 -) -] -h1,13302:4262630,4025873:0,0,0 -] -!22980 -}255 -Input:1880:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1881:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1882:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1883:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1884:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1885:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1886:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1887:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1888:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1889:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1890:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1891:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1892:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1893:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1894:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1895:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1896:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1474 -{256 -[1,13358:4262630,47279633:28320399,43253760,0 -(1,13358:4262630,4025873:0,0,0 -[1,13358:-473657,4025873:25952256,0,0 -(1,13358:-473657,-710414:25952256,0,0 -h1,13358:-473657,-710414:0,0,0 -(1,13358:-473657,-710414:0,0,0 -(1,13358:-473657,-710414:0,0,0 -g1,13358:-473657,-710414 -(1,13358:-473657,-710414:65781,0,65781 -g1,13358:-407876,-710414 -[1,13358:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13326:37855564,49800853:1179648,16384,0 +) +) +k1,13326:3078556,49800853:-34777008 +) +] +g1,13326:6630773,4812305 +g1,13326:6630773,4812305 +g1,13326:9560887,4812305 +k1,13326:31387651,4812305:21826764 +) +) +] +[1,13326:6630773,45706769:25952256,40108032,0 +(1,13326:6630773,45706769:25952256,40108032,0 +(1,13326:6630773,45706769:0,0,0 +g1,13326:6630773,45706769 +) +[1,13326:6630773,45706769:25952256,40108032,0 +(1,13286:6630773,6254097:25952256,555811,139132 +(1,13286:6630773,6254097:2450326,527696,12975 +g1,13286:6630773,6254097 +g1,13286:9081099,6254097 +) +g1,13286:13681858,6254097 +g1,13286:15249086,6254097 +k1,13286:32583029,6254097:14898035 +g1,13286:32583029,6254097 +) +(1,13290:6630773,7488801:25952256,513147,126483 +k1,13289:8668662,7488801:254654 +k1,13289:9942401,7488801:254654 +k1,13289:12682836,7488801:254654 +k1,13289:13596782,7488801:254654 +k1,13289:17923188,7488801:254654 +k1,13289:18709339,7488801:254654 +k1,13289:20915656,7488801:254655 +k1,13289:23060368,7488801:254654 +k1,13289:24183374,7488801:254654 +k1,13289:25542310,7488801:254654 +k1,13289:26998894,7488801:254654 +k1,13289:28062918,7488801:254654 +k1,13289:29336657,7488801:254654 +k1,13289:31923737,7488801:254654 +k1,13289:32583029,7488801:0 +) +(1,13290:6630773,8330289:25952256,513147,134348 +k1,13289:9819755,8330289:239207 +k1,13289:12928127,8330289:239206 +k1,13289:13818762,8330289:239207 +k1,13289:16266531,8330289:239206 +k1,13289:17524823,8330289:239207 +k1,13289:20096455,8330289:239206 +k1,13289:20994954,8330289:239207 +k1,13289:22253245,8330289:239206 +k1,13289:26737874,8330289:239207 +k1,13289:28019102,8330289:239206 +k1,13289:31093396,8330289:239207 +k1,13290:32583029,8330289:0 +) +(1,13290:6630773,9171777:25952256,513147,134348 +k1,13289:7739077,9171777:215704 +k1,13289:9562378,9171777:215703 +k1,13289:11513475,9171777:215704 +k1,13289:15456210,9171777:215703 +k1,13289:17682559,9171777:215704 +k1,13289:18845914,9171777:215704 +(1,13289:18845914,9171777:0,452978,115847 +r1,13289:20611027,9171777:1765113,568825,115847 +k1,13289:18845914,9171777:-1765113 +) +(1,13289:18845914,9171777:1765113,452978,115847 +k1,13289:18845914,9171777:3277 +h1,13289:20607750,9171777:0,411205,112570 +) +k1,13289:20826730,9171777:215703 +k1,13289:22146716,9171777:215704 +k1,13289:23642337,9171777:215703 +k1,13289:24213901,9171777:215704 +k1,13289:28159258,9171777:215703 +k1,13289:31923737,9171777:215704 +k1,13289:32583029,9171777:0 +) +(1,13290:6630773,10013265:25952256,513147,134348 +k1,13289:7844046,10013265:194188 +k1,13289:10544331,10013265:194188 +k1,13289:11972562,10013265:194188 +k1,13289:13948019,10013265:194188 +k1,13289:17232230,10013265:194188 +k1,13289:18042456,10013265:194188 +k1,13289:20515331,10013265:194188 +h1,13289:22058049,10013265:0,0,0 +k1,13289:22252237,10013265:194188 +k1,13289:23255795,10013265:194188 +k1,13289:24948136,10013265:194188 +h1,13289:26143513,10013265:0,0,0 +k1,13289:26511371,10013265:194188 +k1,13289:27809841,10013265:194188 +k1,13289:29289845,10013265:194188 +k1,13290:32583029,10013265:0 +) +(1,13290:6630773,10854753:25952256,513147,138281 +k1,13289:7923525,10854753:236967 +k1,13289:10369056,10854753:236968 +k1,13289:11625108,10854753:236967 +k1,13289:14194501,10854753:236967 +k1,13289:15090760,10854753:236967 +k1,13289:19399479,10854753:236967 +k1,13289:21381015,10854753:236968 +$1,13289:21381015,10854753 +$1,13289:21883676,10854753 +k1,13289:22120643,10854753:236967 +k1,13289:24567484,10854753:236967 +$1,13289:24567484,10854753 +$1,13289:25119297,10854753 +k1,13289:25356265,10854753:236968 +k1,13289:27165441,10854753:236967 +k1,13289:28920877,10854753:236967 +k1,13289:32583029,10854753:0 +) +(1,13290:6630773,11696241:25952256,505283,126483 +k1,13289:7650186,11696241:204145 +k1,13289:8920601,11696241:204144 +k1,13289:11402122,11696241:204145 +k1,13289:16174125,11696241:204144 +k1,13289:18067788,11696241:204145 +k1,13289:19291017,11696241:204144 +k1,13289:22177551,11696241:204145 +k1,13289:25471718,11696241:204144 +k1,13289:26291901,11696241:204145 +k1,13289:27699286,11696241:204144 +k1,13289:30182118,11696241:204145 +k1,13289:31375200,11696241:204144 +k1,13290:32583029,11696241:0 +) +(1,13290:6630773,12537729:25952256,513147,134348 +k1,13289:9650213,12537729:225640 +k1,13289:10637382,12537729:225641 +k1,13289:14536970,12537729:225640 +k1,13289:15652590,12537729:225641 +k1,13289:17432089,12537729:225640 +k1,13289:18849174,12537729:225640 +k1,13289:22048183,12537729:225641 +k1,13289:24606249,12537729:225640 +k1,13289:27857687,12537729:225641 +k1,13289:29074887,12537729:225640 +k1,13289:32583029,12537729:0 +) +(1,13290:6630773,13379217:25952256,513147,134348 +k1,13289:9935813,13379217:197323 +k1,13289:12110357,13379217:197323 +k1,13289:14005717,13379217:197322 +k1,13289:15222125,13379217:197323 +k1,13289:17905229,13379217:197323 +k1,13289:18761844,13379217:197323 +k1,13289:23030919,13379217:197323 +k1,13289:23759739,13379217:197323 +k1,13289:25701629,13379217:197322 +k1,13289:27773282,13379217:197323 +k1,13289:31478747,13379217:197323 +k1,13289:32583029,13379217:0 +) +(1,13290:6630773,14220705:25952256,505283,126483 +g1,13289:7577768,14220705 +g1,13289:10985640,14220705 +g1,13289:11800907,14220705 +g1,13289:13156846,14220705 +g1,13289:14038960,14220705 +g1,13289:15888386,14220705 +k1,13290:32583029,14220705:12845714 +g1,13290:32583029,14220705 +) +(1,13292:6630773,15062193:25952256,513147,134348 +h1,13291:6630773,15062193:983040,0,0 +k1,13291:11452435,15062193:181713 +k1,13291:12625709,15062193:181714 +k1,13291:15189000,15062193:181713 +k1,13291:16132241,15062193:181713 +k1,13291:17644335,15062193:181713 +k1,13291:18845134,15062193:181714 +k1,13291:21329127,15062193:181713 +k1,13291:23521485,15062193:181713 +k1,13291:24694758,15062193:181713 +k1,13291:28279101,15062193:181714 +k1,13291:31423697,15062193:181713 +k1,13292:32583029,15062193:0 +) +(1,13292:6630773,15903681:25952256,513147,134348 +k1,13291:9546688,15903681:295786 +k1,13291:10834033,15903681:295785 +k1,13291:12731519,15903681:295786 +k1,13291:16332286,15903681:295786 +k1,13291:18930351,15903681:295785 +k1,13291:19912299,15903681:295786 +k1,13291:21252729,15903681:295786 +k1,13291:23329783,15903681:295785 +k1,13291:25377346,15903681:295786 +k1,13291:26717776,15903681:295786 +k1,13291:27696446,15903681:295785 +k1,13291:30975431,15903681:295786 +k1,13291:32583029,15903681:0 +) +(1,13292:6630773,16745169:25952256,505283,134348 +k1,13291:7859136,16745169:236803 +k1,13291:9162211,16745169:236804 +k1,13291:13139154,16745169:236803 +k1,13291:16338840,16745169:236803 +k1,13291:18421792,16745169:236803 +k1,13291:20236048,16745169:236804 +k1,13291:21088889,16745169:236803 +k1,13291:24036916,16745169:236803 +k1,13291:24629579,16745169:236803 +k1,13291:28102551,16745169:236804 +k1,13291:30108171,16745169:236803 +k1,13291:31092740,16745169:236803 +k1,13292:32583029,16745169:0 +) +(1,13292:6630773,17586657:25952256,513147,134348 +k1,13291:7898037,17586657:242281 +k1,13291:9875712,17586657:242282 +k1,13291:10473853,17586657:242281 +k1,13291:13478477,17586657:242281 +k1,13291:16728206,17586657:242282 +k1,13291:18705880,17586657:242281 +(1,13291:18705880,17586657:0,452978,115847 +r1,13291:22229552,17586657:3523672,568825,115847 +k1,13291:18705880,17586657:-3523672 +) +(1,13291:18705880,17586657:3523672,452978,115847 +k1,13291:18705880,17586657:3277 +h1,13291:22226275,17586657:0,411205,112570 +) +k1,13291:22645503,17586657:242281 +k1,13291:23906870,17586657:242282 +k1,13291:26554323,17586657:242281 +k1,13291:28309830,17586657:242281 +k1,13291:29313640,17586657:242282 +k1,13291:31821501,17586657:242281 +k1,13292:32583029,17586657:0 +) +(1,13292:6630773,18428145:25952256,513147,134348 +(1,13291:6630773,18428145:0,452978,122846 +r1,13291:12264716,18428145:5633943,575824,122846 +k1,13291:6630773,18428145:-5633943 +) +(1,13291:6630773,18428145:5633943,452978,122846 +k1,13291:6630773,18428145:3277 +h1,13291:12261439,18428145:0,411205,112570 +) +k1,13291:12718330,18428145:279944 +k1,13291:14379118,18428145:279944 +k1,13291:17064234,18428145:279944 +k1,13291:18837088,18428145:279944 +k1,13291:21538586,18428145:279943 +k1,13291:22477822,18428145:279944 +k1,13291:26829518,18428145:279944 +k1,13291:29152219,18428145:279944 +k1,13291:32583029,18428145:0 +) +(1,13292:6630773,19269633:25952256,513147,126483 +k1,13291:10671504,19269633:172796 +k1,13291:12035746,19269633:172797 +k1,13291:12740039,19269633:172796 +k1,13291:15424830,19269633:172796 +k1,13291:16545278,19269633:172797 +k1,13291:20288475,19269633:172796 +$1,13291:20288475,19269633 +$1,13291:20791136,19269633 +k1,13291:20963932,19269633:172796 +k1,13291:23212910,19269633:172797 +k1,13291:25168941,19269633:172796 +k1,13291:25697598,19269633:172797 +k1,13291:27764384,19269633:172796 +k1,13291:28468677,19269633:172796 +k1,13291:31226869,19269633:172797 +k1,13291:32051093,19269633:172796 +(1,13291:32051093,19269633:0,414482,115847 +r1,13291:32409359,19269633:358266,530329,115847 +k1,13291:32051093,19269633:-358266 +) +(1,13291:32051093,19269633:358266,414482,115847 +k1,13291:32051093,19269633:3277 +h1,13291:32406082,19269633:0,411205,112570 +) +k1,13292:32583029,19269633:0 +) +(1,13292:6630773,20111121:25952256,513147,122846 +(1,13291:6630773,20111121:0,452978,115847 +r1,13291:10857869,20111121:4227096,568825,115847 +k1,13291:6630773,20111121:-4227096 +) +(1,13291:6630773,20111121:4227096,452978,115847 +k1,13291:6630773,20111121:3277 +h1,13291:10854592,20111121:0,411205,112570 +) +k1,13291:11049812,20111121:191943 +k1,13291:13422138,20111121:191943 +k1,13291:14361847,20111121:191943 +k1,13291:16240688,20111121:191944 +k1,13291:18318102,20111121:191943 +k1,13291:19041542,20111121:191943 +k1,13291:20252570,20111121:191943 +k1,13291:22710093,20111121:191943 +(1,13291:22710093,20111121:0,414482,115847 +r1,13291:24123494,20111121:1413401,530329,115847 +k1,13291:22710093,20111121:-1413401 +) +(1,13291:22710093,20111121:1413401,414482,115847 +k1,13291:22710093,20111121:3277 +h1,13291:24120217,20111121:0,411205,112570 +) +k1,13291:24315437,20111121:191943 +k1,13291:25455032,20111121:191944 +(1,13291:25455032,20111121:0,452978,122846 +r1,13291:28978704,20111121:3523672,575824,122846 +k1,13291:25455032,20111121:-3523672 +) +(1,13291:25455032,20111121:3523672,452978,122846 +k1,13291:25455032,20111121:3277 +h1,13291:28975427,20111121:0,411205,112570 +) +k1,13291:29344317,20111121:191943 +k1,13291:31410590,20111121:191943 +k1,13291:32583029,20111121:0 +) +(1,13292:6630773,20952609:25952256,513147,134348 +k1,13291:10312228,20952609:241470 +k1,13291:11545258,20952609:241470 +k1,13291:14876752,20952609:241471 +k1,13291:15734260,20952609:241470 +k1,13291:17178971,20952609:241470 +k1,13291:19699128,20952609:241470 +k1,13291:21763154,20952609:241470 +k1,13291:25031732,20952609:241470 +k1,13291:27802893,20952609:241471 +k1,13291:29424551,20952609:241470 +k1,13291:31931601,20952609:241470 +k1,13291:32583029,20952609:0 +) +(1,13292:6630773,21794097:25952256,513147,134348 +k1,13291:8584643,21794097:218477 +k1,13291:11656558,21794097:218477 +k1,13291:14637377,21794097:218476 +k1,13291:16423475,21794097:218477 +(1,13291:16423475,21794097:0,452978,115847 +r1,13291:21705706,21794097:5282231,568825,115847 +k1,13291:16423475,21794097:-5282231 +) +(1,13291:16423475,21794097:5282231,452978,115847 +k1,13291:16423475,21794097:3277 +h1,13291:21702429,21794097:0,411205,112570 +) +k1,13291:21924183,21794097:218477 +k1,13291:23334105,21794097:218477 +k1,13291:27777687,21794097:218476 +k1,13291:31563944,21794097:218477 +k1,13291:32583029,21794097:0 +) +(1,13292:6630773,22635585:25952256,505283,7863 +k1,13292:32583029,22635585:24389222 +g1,13292:32583029,22635585 +) +(1,13294:6630773,23477073:25952256,513147,134348 +h1,13293:6630773,23477073:983040,0,0 +g1,13293:8630931,23477073 +g1,13293:11046588,23477073 +g1,13293:12114169,23477073 +g1,13293:15045594,23477073 +g1,13293:17756818,23477073 +g1,13293:20584696,23477073 +k1,13294:32583029,23477073:10435299 +g1,13294:32583029,23477073 +) +v1,13296:6630773,24667539:0,393216,0 +(1,13304:6630773,27647347:25952256,3373024,196608 +g1,13304:6630773,27647347 +g1,13304:6630773,27647347 +g1,13304:6434165,27647347 +(1,13304:6434165,27647347:0,3373024,196608 +r1,13304:32779637,27647347:26345472,3569632,196608 +k1,13304:6434165,27647347:-26345472 +) +(1,13304:6434165,27647347:26345472,3373024,196608 +[1,13304:6630773,27647347:25952256,3176416,0 +(1,13298:6630773,24875157:25952256,404226,76021 +(1,13297:6630773,24875157:0,0,0 +g1,13297:6630773,24875157 +g1,13297:6630773,24875157 +g1,13297:6303093,24875157 +(1,13297:6303093,24875157:0,0,0 +) +g1,13297:6630773,24875157 +) +k1,13298:6630773,24875157:0 +h1,13298:11372958,24875157:0,0,0 +k1,13298:32583030,24875157:21210072 +g1,13298:32583030,24875157 +) +(1,13299:6630773,25541335:25952256,404226,101187 +h1,13299:6630773,25541335:0,0,0 +g1,13299:9159939,25541335 +k1,13299:9159939,25541335:0 +h1,13299:9792231,25541335:0,0,0 +k1,13299:32583029,25541335:22790798 +g1,13299:32583029,25541335 +) +(1,13300:6630773,26207513:25952256,410518,82312 +h1,13300:6630773,26207513:0,0,0 +g1,13300:10740668,26207513 +g1,13300:11372960,26207513 +k1,13300:11372960,26207513:0 +h1,13300:14850563,26207513:0,0,0 +k1,13300:32583029,26207513:17732466 +g1,13300:32583029,26207513 +) +(1,13301:6630773,26873691:25952256,404226,101187 +h1,13301:6630773,26873691:0,0,0 +g1,13301:7263065,26873691 +g1,13301:7895357,26873691 +g1,13301:12005252,26873691 +g1,13301:13269836,26873691 +g1,13301:14534420,26873691 +g1,13301:18012023,26873691 +g1,13301:18960461,26873691 +k1,13301:18960461,26873691:0 +h1,13301:20225044,26873691:0,0,0 +k1,13301:32583029,26873691:12357985 +g1,13301:32583029,26873691 +) +(1,13302:6630773,27539869:25952256,410518,107478 +h1,13302:6630773,27539869:0,0,0 +g1,13302:8527647,27539869 +g1,13302:9159939,27539869 +g1,13302:14850563,27539869 +g1,13302:16747438,27539869 +g1,13302:18960459,27539869 +g1,13302:21173479,27539869 +h1,13302:21489625,27539869:0,0,0 +k1,13302:32583029,27539869:11093404 +g1,13302:32583029,27539869 +) +] +) +g1,13304:32583029,27647347 +g1,13304:6630773,27647347 +g1,13304:6630773,27647347 +g1,13304:32583029,27647347 +g1,13304:32583029,27647347 +) +h1,13304:6630773,27843955:0,0,0 +(1,13308:6630773,29209731:25952256,513147,126483 +h1,13307:6630773,29209731:983040,0,0 +k1,13307:8826467,29209731:259105 +k1,13307:10854390,29209731:259106 +k1,13307:12588710,29209731:259105 +k1,13307:14657919,29209731:259105 +k1,13307:15726394,29209731:259105 +k1,13307:17004585,29209731:259106 +k1,13307:19529270,29209731:259105 +k1,13307:22274156,29209731:259105 +k1,13307:23192553,29209731:259105 +k1,13307:24798424,29209731:259106 +k1,13307:29374386,29209731:259105 +k1,13307:32583029,29209731:0 +) +(1,13308:6630773,30051219:25952256,505283,126483 +k1,13307:7607271,30051219:214970 +k1,13307:8841326,30051219:214970 +(1,13307:8841326,30051219:0,452978,115847 +r1,13307:12364998,30051219:3523672,568825,115847 +k1,13307:8841326,30051219:-3523672 +) +(1,13307:8841326,30051219:3523672,452978,115847 +k1,13307:8841326,30051219:3277 +h1,13307:12361721,30051219:0,411205,112570 +) +k1,13307:12579968,30051219:214970 +k1,13307:15491745,30051219:214970 +k1,13307:18550978,30051219:214970 +k1,13307:19634300,30051219:214970 +k1,13307:21247153,30051219:214970 +k1,13307:22396666,30051219:214970 +k1,13307:23069733,30051219:214970 +k1,13307:23936131,30051219:214970 +k1,13307:24948019,30051219:214970 +k1,13307:26556940,30051219:214970 +(1,13307:26556940,30051219:0,452978,115847 +r1,13307:29728901,30051219:3171961,568825,115847 +k1,13307:26556940,30051219:-3171961 +) +(1,13307:26556940,30051219:3171961,452978,115847 +g1,13307:28318776,30051219 +g1,13307:29022200,30051219 +h1,13307:29725624,30051219:0,411205,112570 +) +k1,13307:30117541,30051219:214970 +k1,13307:30802404,30051219:214970 +k1,13307:31548871,30051219:214970 +k1,13308:32583029,30051219:0 +) +(1,13308:6630773,30892707:25952256,505283,126483 +k1,13307:9277407,30892707:258502 +k1,13307:10187338,30892707:258503 +k1,13307:13704945,30892707:258502 +k1,13307:15247953,30892707:258502 +k1,13307:16122494,30892707:258503 +k1,13307:17584237,30892707:258502 +k1,13307:19209820,30892707:258502 +k1,13307:20277693,30892707:258503 +k1,13307:23047535,30892707:258502 +k1,13307:23922075,30892707:258502 +(1,13307:23922075,30892707:0,452978,115847 +r1,13307:25335476,30892707:1413401,568825,115847 +k1,13307:23922075,30892707:-1413401 +) +(1,13307:23922075,30892707:1413401,452978,115847 +k1,13307:23922075,30892707:3277 +h1,13307:25332199,30892707:0,411205,112570 +) +k1,13307:25593979,30892707:258503 +k1,13307:26383978,30892707:258502 +k1,13307:29227875,30892707:258502 +k1,13307:30947176,30892707:258503 +k1,13307:32224763,30892707:258502 +(1,13307:32224763,30892707:0,414482,115847 +r1,13307:32583029,30892707:358266,530329,115847 +k1,13307:32224763,30892707:-358266 +) +(1,13307:32224763,30892707:358266,414482,115847 +k1,13307:32224763,30892707:3277 +h1,13307:32579752,30892707:0,411205,112570 +) +k1,13307:32583029,30892707:0 +) +(1,13308:6630773,31734195:25952256,505283,7863 +k1,13308:32583030,31734195:23025420 +g1,13308:32583030,31734195 +) +v1,13310:6630773,32924661:0,393216,0 +(1,13315:6630773,33905935:25952256,1374490,196608 +g1,13315:6630773,33905935 +g1,13315:6630773,33905935 +g1,13315:6434165,33905935 +(1,13315:6434165,33905935:0,1374490,196608 +r1,13315:32779637,33905935:26345472,1571098,196608 +k1,13315:6434165,33905935:-26345472 +) +(1,13315:6434165,33905935:26345472,1374490,196608 +[1,13315:6630773,33905935:25952256,1177882,0 +(1,13312:6630773,33132279:25952256,404226,107478 +(1,13311:6630773,33132279:0,0,0 +g1,13311:6630773,33132279 +g1,13311:6630773,33132279 +g1,13311:6303093,33132279 +(1,13311:6303093,33132279:0,0,0 +) +g1,13311:6630773,33132279 +) +k1,13312:6630773,33132279:0 +g1,13312:11689104,33132279 +g1,13312:14218270,33132279 +h1,13312:14534416,33132279:0,0,0 +k1,13312:32583028,33132279:18048612 +g1,13312:32583028,33132279 +) +(1,13313:6630773,33798457:25952256,404226,107478 +h1,13313:6630773,33798457:0,0,0 +g1,13313:6946919,33798457 +g1,13313:7263065,33798457 +g1,13313:13585980,33798457 +g1,13313:14218272,33798457 +h1,13313:15166709,33798457:0,0,0 +k1,13313:32583029,33798457:17416320 +g1,13313:32583029,33798457 +) +] +) +g1,13315:32583029,33905935 +g1,13315:6630773,33905935 +g1,13315:6630773,33905935 +g1,13315:32583029,33905935 +g1,13315:32583029,33905935 +) +h1,13315:6630773,34102543:0,0,0 +(1,13318:6630773,43755056:25952256,9062689,0 +k1,13318:10523651,43755056:3892878 +h1,13317:10523651,43755056:0,0,0 +(1,13317:10523651,43755056:18166500,9062689,0 +(1,13317:10523651,43755056:18167381,9062712,0 +(1,13317:10523651,43755056:18167381,9062712,0 +(1,13317:10523651,43755056:0,9062712,0 +(1,13317:10523651,43755056:0,14155776,0 +(1,13317:10523651,43755056:28377088,14155776,0 +) +k1,13317:10523651,43755056:-28377088 +) +) +g1,13317:28691032,43755056 +) +) +) +g1,13318:28690151,43755056 +k1,13318:32583029,43755056:3892878 +) +(1,13326:6630773,44596544:25952256,513147,134348 +h1,13325:6630773,44596544:983040,0,0 +k1,13325:8295153,44596544:203583 +k1,13325:9367088,44596544:203583 +k1,13325:11500051,44596544:203583 +k1,13325:12059494,44596544:203583 +k1,13325:15146006,44596544:203583 +k1,13325:16111117,44596544:203583 +k1,13325:19122262,44596544:203583 +k1,13325:19681705,44596544:203583 +k1,13325:21779278,44596544:203583 +k1,13325:22634289,44596544:203583 +k1,13325:23608575,44596544:203583 +k1,13325:27039151,44596544:203583 +k1,13325:30029980,44596544:203583 +k1,13325:31563944,44596544:203583 +k1,13325:32583029,44596544:0 +) +(1,13326:6630773,45438032:25952256,505283,126483 +k1,13325:8235039,45438032:229321 +k1,13325:10814482,45438032:229322 +k1,13325:12035363,45438032:229321 +k1,13325:15646997,45438032:229321 +k1,13325:17270269,45438032:229321 +k1,13325:19824153,45438032:229322 +k1,13325:20704902,45438032:229321 +k1,13325:22385845,45438032:229321 +k1,13325:24317136,45438032:229321 +k1,13325:27319942,45438032:229322 +k1,13325:30295877,45438032:229321 +k1,13325:31478747,45438032:229321 +k1,13325:32583029,45438032:0 +) +] +(1,13326:32583029,45706769:0,0,0 +g1,13326:32583029,45706769 +) +) +] +(1,13326:6630773,47279633:25952256,0,0 +h1,13326:6630773,47279633:25952256,0,0 +) +] +h1,13326:4262630,4025873:0,0,0 +] +!22501 +}256 +Input:1876:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1877:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1878:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1879:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1880:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1881:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1882:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1883:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1884:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1885:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1886:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1887:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1888:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1889:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1890:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1891:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1892:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1893:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1668 +{257 +[1,13384:4262630,47279633:28320399,43253760,0 +(1,13384:4262630,4025873:0,0,0 +[1,13384:-473657,4025873:25952256,0,0 +(1,13384:-473657,-710414:25952256,0,0 +h1,13384:-473657,-710414:0,0,0 +(1,13384:-473657,-710414:0,0,0 +(1,13384:-473657,-710414:0,0,0 +g1,13384:-473657,-710414 +(1,13384:-473657,-710414:65781,0,65781 +g1,13384:-407876,-710414 +[1,13384:-407876,-644633:0,0,0 ] ) -k1,13358:-473657,-710414:-65781 +k1,13384:-473657,-710414:-65781 ) ) -k1,13358:25478599,-710414:25952256 -g1,13358:25478599,-710414 +k1,13384:25478599,-710414:25952256 +g1,13384:25478599,-710414 ) ] ) -[1,13358:6630773,47279633:25952256,43253760,0 -[1,13358:6630773,4812305:25952256,786432,0 -(1,13358:6630773,4812305:25952256,485622,11795 -(1,13358:6630773,4812305:25952256,485622,11795 -g1,13358:3078558,4812305 -[1,13358:3078558,4812305:0,0,0 -(1,13358:3078558,2439708:0,1703936,0 -k1,13358:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13358:2537886,2439708:1179648,16384,0 +[1,13384:6630773,47279633:25952256,43253760,0 +[1,13384:6630773,4812305:25952256,786432,0 +(1,13384:6630773,4812305:25952256,513147,134348 +(1,13384:6630773,4812305:25952256,513147,134348 +g1,13384:3078558,4812305 +[1,13384:3078558,4812305:0,0,0 +(1,13384:3078558,2439708:0,1703936,0 +k1,13384:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13384:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13358:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13384:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13358:3078558,4812305:0,0,0 -(1,13358:3078558,2439708:0,1703936,0 -g1,13358:29030814,2439708 -g1,13358:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13358:36151628,1915420:16384,1179648,0 +[1,13384:3078558,4812305:0,0,0 +(1,13384:3078558,2439708:0,1703936,0 +g1,13384:29030814,2439708 +g1,13384:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13384:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13358:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13384:37855564,2439708:1179648,16384,0 ) ) -k1,13358:3078556,2439708:-34777008 +k1,13384:3078556,2439708:-34777008 ) ] -[1,13358:3078558,4812305:0,0,0 -(1,13358:3078558,49800853:0,16384,2228224 -k1,13358:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13358:2537886,49800853:1179648,16384,0 +[1,13384:3078558,4812305:0,0,0 +(1,13384:3078558,49800853:0,16384,2228224 +k1,13384:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13384:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13358:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13384:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13358:3078558,4812305:0,0,0 -(1,13358:3078558,49800853:0,16384,2228224 -g1,13358:29030814,49800853 -g1,13358:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13358:36151628,51504789:16384,1179648,0 +[1,13384:3078558,4812305:0,0,0 +(1,13384:3078558,49800853:0,16384,2228224 +g1,13384:29030814,49800853 +g1,13384:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13384:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13358:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13384:37855564,49800853:1179648,16384,0 ) ) -k1,13358:3078556,49800853:-34777008 +k1,13384:3078556,49800853:-34777008 ) ] -g1,13358:6630773,4812305 -g1,13358:6630773,4812305 -g1,13358:9560887,4812305 -k1,13358:31387651,4812305:21826764 -) -) -] -[1,13358:6630773,45706769:25952256,40108032,0 -(1,13358:6630773,45706769:25952256,40108032,0 -(1,13358:6630773,45706769:0,0,0 -g1,13358:6630773,45706769 -) -[1,13358:6630773,45706769:25952256,40108032,0 -v1,13302:6630773,6254097:0,393216,0 -(1,13307:6630773,7241663:25952256,1380782,196608 -g1,13307:6630773,7241663 -g1,13307:6630773,7241663 -g1,13307:6434165,7241663 -(1,13307:6434165,7241663:0,1380782,196608 -r1,13307:32779637,7241663:26345472,1577390,196608 -k1,13307:6434165,7241663:-26345472 -) -(1,13307:6434165,7241663:26345472,1380782,196608 -[1,13307:6630773,7241663:25952256,1184174,0 -(1,13304:6630773,6468007:25952256,410518,107478 -(1,13303:6630773,6468007:0,0,0 -g1,13303:6630773,6468007 -g1,13303:6630773,6468007 -g1,13303:6303093,6468007 -(1,13303:6303093,6468007:0,0,0 -) -g1,13303:6630773,6468007 -) -k1,13304:6630773,6468007:0 -g1,13304:11689104,6468007 -g1,13304:13902124,6468007 -g1,13304:15482853,6468007 -g1,13304:16115145,6468007 -g1,13304:18644311,6468007 -h1,13304:18960457,6468007:0,0,0 -k1,13304:32583029,6468007:13622572 -g1,13304:32583029,6468007 -) -(1,13305:6630773,7134185:25952256,404226,107478 -h1,13305:6630773,7134185:0,0,0 -g1,13305:6946919,7134185 -g1,13305:7263065,7134185 -g1,13305:13585980,7134185 -g1,13305:14218272,7134185 -g1,13305:15482855,7134185 -g1,13305:18328166,7134185 -g1,13305:18960458,7134185 -h1,13305:21489624,7134185:0,0,0 -k1,13305:32583029,7134185:11093405 -g1,13305:32583029,7134185 -) -] -) -g1,13307:32583029,7241663 -g1,13307:6630773,7241663 -g1,13307:6630773,7241663 -g1,13307:32583029,7241663 -g1,13307:32583029,7241663 -) -h1,13307:6630773,7438271:0,0,0 -(1,13311:6630773,8804047:25952256,505283,134348 -h1,13310:6630773,8804047:983040,0,0 -k1,13310:9074987,8804047:264487 -k1,13310:12548116,8804047:264486 -k1,13310:14823248,8804047:264487 -k1,13310:16079294,8804047:264486 -k1,13310:19483611,8804047:264487 -k1,13310:20364135,8804047:264486 -k1,13310:21647707,8804047:264487 -(1,13310:21647707,8804047:0,452978,115847 -r1,13310:23061108,8804047:1413401,568825,115847 -k1,13310:21647707,8804047:-1413401 -) -(1,13310:21647707,8804047:1413401,452978,115847 -k1,13310:21647707,8804047:3277 -h1,13310:23057831,8804047:0,411205,112570 -) -k1,13310:23325594,8804047:264486 -k1,13310:24874587,8804047:264487 -k1,13310:26158158,8804047:264486 -k1,13310:29430092,8804047:264487 -k1,13310:32583029,8804047:0 -) -(1,13311:6630773,9645535:25952256,513147,126483 -k1,13310:8409181,9645535:210787 -k1,13310:9639054,9645535:210788 -k1,13310:12394604,9645535:210787 -k1,13310:14300807,9645535:210787 -k1,13310:17365033,9645535:210788 -k1,13310:20363722,9645535:210787 -k1,13310:23801503,9645535:210788 -k1,13310:26022935,9645535:210787 -k1,13310:27518228,9645535:210787 -k1,13310:28720576,9645535:210788 -k1,13310:29997634,9645535:210787 -k1,13310:32583029,9645535:0 -) -(1,13311:6630773,10487023:25952256,513147,134348 -k1,13310:7582339,10487023:190038 -k1,13310:10211628,10487023:190039 -k1,13310:12275996,10487023:190038 -k1,13310:13570317,10487023:190039 -k1,13310:14508121,10487023:190038 -k1,13310:17283554,10487023:190038 -k1,13310:18867544,10487023:190039 -(1,13310:18867544,10487023:0,452978,115847 -r1,13310:20632657,10487023:1765113,568825,115847 -k1,13310:18867544,10487023:-1765113 -) -(1,13310:18867544,10487023:1765113,452978,115847 -k1,13310:18867544,10487023:3277 -h1,13310:20629380,10487023:0,411205,112570 -) -k1,13310:20822695,10487023:190038 -k1,13310:21774262,10487023:190039 -k1,13310:24980267,10487023:190038 -k1,13310:26809360,10487023:190038 -k1,13310:27615437,10487023:190039 -k1,13310:28161335,10487023:190038 -k1,13310:29451068,10487023:190039 -k1,13310:30292534,10487023:190038 -(1,13310:30292534,10487023:0,452978,115847 -r1,13310:32409359,10487023:2116825,568825,115847 -k1,13310:30292534,10487023:-2116825 -) -(1,13310:30292534,10487023:2116825,452978,115847 -k1,13310:30292534,10487023:3277 -h1,13310:32406082,10487023:0,411205,112570 -) -k1,13310:32583029,10487023:0 -) -(1,13311:6630773,11328511:25952256,505283,134348 -k1,13310:8491150,11328511:198384 -k1,13310:9708619,11328511:198384 -k1,13310:11295056,11328511:198384 -k1,13310:12991593,11328511:198384 -k1,13310:14058329,11328511:198384 -k1,13310:15360995,11328511:198384 -k1,13310:17170909,11328511:198384 -k1,13310:18653799,11328511:198384 -k1,13310:19468221,11328511:198384 -k1,13310:22332610,11328511:198384 -k1,13310:23182422,11328511:198384 -k1,13310:25525799,11328511:198384 -k1,13310:26340221,11328511:198384 -k1,13310:29049945,11328511:198384 -(1,13310:29049945,11328511:0,414482,115847 -r1,13310:30815058,11328511:1765113,530329,115847 -k1,13310:29049945,11328511:-1765113 -) -(1,13310:29049945,11328511:1765113,414482,115847 -k1,13310:29049945,11328511:3277 -h1,13310:30811781,11328511:0,411205,112570 -) -k1,13310:31187112,11328511:198384 -k1,13311:32583029,11328511:0 -) -(1,13311:6630773,12169999:25952256,505283,126483 -k1,13310:8014638,12169999:234363 -k1,13310:8780497,12169999:234362 -k1,13310:11793587,12169999:234363 -k1,13310:12643987,12169999:234362 -k1,13310:15389690,12169999:234363 -(1,13310:15389690,12169999:0,452978,115847 -r1,13310:17858227,12169999:2468537,568825,115847 -k1,13310:15389690,12169999:-2468537 -) -(1,13310:15389690,12169999:2468537,452978,115847 -k1,13310:15389690,12169999:3277 -h1,13310:17854950,12169999:0,411205,112570 -) -k1,13310:18092590,12169999:234363 -k1,13310:19088480,12169999:234362 -k1,13310:20526084,12169999:234363 -k1,13310:23457253,12169999:234362 -k1,13310:28212290,12169999:234363 -k1,13310:29315004,12169999:234362 -k1,13310:30653649,12169999:234363 -k1,13310:32583029,12169999:0 -) -(1,13311:6630773,13011487:25952256,505283,134348 -k1,13310:7206279,13011487:219646 -k1,13310:10662094,13011487:219647 -k1,13310:12275691,13011487:219646 -k1,13310:13514423,13011487:219647 -k1,13310:15879062,13011487:219646 -k1,13310:17155148,13011487:219646 -k1,13310:18391258,13011487:219647 -k1,13310:21808406,13011487:219646 -k1,13310:22714214,13011487:219646 -k1,13310:25784022,13011487:219647 -k1,13310:28011691,13011487:219646 -k1,13310:30675176,13011487:219647 -k1,13310:31426319,13011487:219646 -k1,13310:32583029,13011487:0 -) -(1,13311:6630773,13852975:25952256,513147,102891 -k1,13310:8987857,13852975:198328 -k1,13310:10628632,13852975:198328 -k1,13310:12335600,13852975:198329 -k1,13310:14072713,13852975:198328 -k1,13310:14957203,13852975:198328 -k1,13310:16174616,13852975:198328 -k1,13310:18187637,13852975:198329 -k1,13310:19045257,13852975:198328 -k1,13310:20262670,13852975:198328 -k1,13310:21807763,13852975:198328 -k1,13310:22537589,13852975:198329 -k1,13310:23351955,13852975:198328 -k1,13310:24753524,13852975:198328 -k1,13310:26318933,13852975:198328 -k1,13310:29279605,13852975:198329 -k1,13310:31045554,13852975:198328 -k1,13310:32583029,13852975:0 -) -(1,13311:6630773,14694463:25952256,513147,7863 -g1,13310:7516164,14694463 -k1,13311:32583029,14694463:22577808 -g1,13311:32583029,14694463 -) -v1,13313:6630773,15884929:0,393216,0 -(1,13318:6630773,16872495:25952256,1380782,196608 -g1,13318:6630773,16872495 -g1,13318:6630773,16872495 -g1,13318:6434165,16872495 -(1,13318:6434165,16872495:0,1380782,196608 -r1,13318:32779637,16872495:26345472,1577390,196608 -k1,13318:6434165,16872495:-26345472 -) -(1,13318:6434165,16872495:26345472,1380782,196608 -[1,13318:6630773,16872495:25952256,1184174,0 -(1,13315:6630773,16098839:25952256,410518,107478 -(1,13314:6630773,16098839:0,0,0 -g1,13314:6630773,16098839 -g1,13314:6630773,16098839 -g1,13314:6303093,16098839 -(1,13314:6303093,16098839:0,0,0 -) -g1,13314:6630773,16098839 -) -k1,13315:6630773,16098839:0 -g1,13315:11689104,16098839 -g1,13315:13902124,16098839 -g1,13315:15482853,16098839 -g1,13315:16115145,16098839 -g1,13315:18644311,16098839 -h1,13315:18960457,16098839:0,0,0 -k1,13315:32583029,16098839:13622572 -g1,13315:32583029,16098839 -) -(1,13316:6630773,16765017:25952256,404226,107478 -h1,13316:6630773,16765017:0,0,0 -g1,13316:6946919,16765017 -g1,13316:7263065,16765017 -g1,13316:14534417,16765017 -g1,13316:15166709,16765017 -g1,13316:17063584,16765017 -g1,13316:17695876,16765017 -g1,13316:22754208,16765017 -g1,13316:24334937,16765017 -g1,13316:24967229,16765017 -g1,13316:26231812,16765017 -g1,13316:29077123,16765017 -g1,13316:29709415,16765017 -h1,13316:32238581,16765017:0,0,0 -k1,13316:32583029,16765017:344448 -g1,13316:32583029,16765017 -) -] -) -g1,13318:32583029,16872495 -g1,13318:6630773,16872495 -g1,13318:6630773,16872495 -g1,13318:32583029,16872495 -g1,13318:32583029,16872495 -) -h1,13318:6630773,17069103:0,0,0 -(1,13321:6630773,26721616:25952256,9062689,0 -k1,13321:10523651,26721616:3892878 -h1,13320:10523651,26721616:0,0,0 -(1,13320:10523651,26721616:18166500,9062689,0 -(1,13320:10523651,26721616:18167381,9062712,0 -(1,13320:10523651,26721616:18167381,9062712,0 -(1,13320:10523651,26721616:0,9062712,0 -(1,13320:10523651,26721616:0,14155776,0 -(1,13320:10523651,26721616:28377088,14155776,0 -) -k1,13320:10523651,26721616:-28377088 -) -) -g1,13320:28691032,26721616 -) -) -) -g1,13321:28690151,26721616 -k1,13321:32583029,26721616:3892878 -) -(1,13329:6630773,27563104:25952256,513147,134348 -h1,13328:6630773,27563104:983040,0,0 -k1,13328:8268179,27563104:176609 -k1,13328:8902884,27563104:176608 -k1,13328:10583544,27563104:176609 -k1,13328:11826423,27563104:176608 -k1,13328:12950683,27563104:176609 -k1,13328:14146377,27563104:176609 -k1,13328:16193383,27563104:176608 -k1,13328:17021420,27563104:176609 -k1,13328:20457134,27563104:176609 -k1,13328:22371757,27563104:176608 -k1,13328:23215522,27563104:176609 -(1,13328:23215522,27563104:0,452978,122846 -r1,13328:28849465,27563104:5633943,575824,122846 -k1,13328:23215522,27563104:-5633943 -) -(1,13328:23215522,27563104:5633943,452978,122846 -k1,13328:23215522,27563104:3277 -h1,13328:28846188,27563104:0,411205,112570 -) -k1,13328:29199743,27563104:176608 -k1,13328:31563944,27563104:176609 -k1,13328:32583029,27563104:0 -) -(1,13329:6630773,28404592:25952256,513147,126483 -k1,13328:8707350,28404592:188485 -k1,13328:10289786,28404592:188485 -(1,13328:10289786,28404592:0,452978,115847 -r1,13328:13813458,28404592:3523672,568825,115847 -k1,13328:10289786,28404592:-3523672 -) -(1,13328:10289786,28404592:3523672,452978,115847 -k1,13328:10289786,28404592:3277 -h1,13328:13810181,28404592:0,411205,112570 -) -k1,13328:14001943,28404592:188485 -k1,13328:14873313,28404592:188485 -(1,13328:14873313,28404592:0,452978,115847 -r1,13328:19100409,28404592:4227096,568825,115847 -k1,13328:14873313,28404592:-4227096 -) -(1,13328:14873313,28404592:4227096,452978,115847 -k1,13328:14873313,28404592:3277 -h1,13328:19097132,28404592:0,411205,112570 -) -k1,13328:19288894,28404592:188485 -k1,13328:21433629,28404592:188485 -k1,13328:22369880,28404592:188485 -k1,13328:25824024,28404592:188485 -k1,13328:26698671,28404592:188485 -k1,13328:27345253,28404592:188485 -k1,13328:29579772,28404592:188485 -k1,13328:31298523,28404592:188485 -k1,13328:32583029,28404592:0 -) -(1,13329:6630773,29246080:25952256,505283,126483 -g1,13328:11224191,29246080 -g1,13328:12232790,29246080 -g1,13328:13451104,29246080 -g1,13328:15039696,29246080 -g1,13328:16230485,29246080 -k1,13329:32583029,29246080:13480756 -g1,13329:32583029,29246080 -) -v1,13331:6630773,30436546:0,393216,0 -(1,13336:6630773,31424112:25952256,1380782,196608 -g1,13336:6630773,31424112 -g1,13336:6630773,31424112 -g1,13336:6434165,31424112 -(1,13336:6434165,31424112:0,1380782,196608 -r1,13336:32779637,31424112:26345472,1577390,196608 -k1,13336:6434165,31424112:-26345472 -) -(1,13336:6434165,31424112:26345472,1380782,196608 -[1,13336:6630773,31424112:25952256,1184174,0 -(1,13333:6630773,30650456:25952256,410518,107478 -(1,13332:6630773,30650456:0,0,0 -g1,13332:6630773,30650456 -g1,13332:6630773,30650456 -g1,13332:6303093,30650456 -(1,13332:6303093,30650456:0,0,0 -) -g1,13332:6630773,30650456 -) -k1,13333:6630773,30650456:0 -g1,13333:11689104,30650456 -g1,13333:13902124,30650456 -g1,13333:15482853,30650456 -g1,13333:16115145,30650456 -g1,13333:18644311,30650456 -h1,13333:18960457,30650456:0,0,0 -k1,13333:32583029,30650456:13622572 -g1,13333:32583029,30650456 -) -(1,13334:6630773,31316634:25952256,404226,107478 -h1,13334:6630773,31316634:0,0,0 -g1,13334:6946919,31316634 -g1,13334:7263065,31316634 -g1,13334:11689105,31316634 -g1,13334:12321397,31316634 -g1,13334:13585980,31316634 -g1,13334:16431291,31316634 -g1,13334:17063583,31316634 -h1,13334:19592749,31316634:0,0,0 -k1,13334:32583029,31316634:12990280 -g1,13334:32583029,31316634 -) -] -) -g1,13336:32583029,31424112 -g1,13336:6630773,31424112 -g1,13336:6630773,31424112 -g1,13336:32583029,31424112 -g1,13336:32583029,31424112 -) -h1,13336:6630773,31620720:0,0,0 -(1,13340:6630773,32986496:25952256,513147,134348 -h1,13339:6630773,32986496:983040,0,0 -k1,13339:9064217,32986496:253717 -k1,13339:11723105,32986496:253716 -(1,13339:11723105,32986496:0,452978,115847 -r1,13339:15246777,32986496:3523672,568825,115847 -k1,13339:11723105,32986496:-3523672 -) -(1,13339:11723105,32986496:3523672,452978,115847 -k1,13339:11723105,32986496:3277 -h1,13339:15243500,32986496:0,411205,112570 -) -k1,13339:15674164,32986496:253717 -k1,13339:17119325,32986496:253716 -k1,13339:18161440,32986496:253717 -k1,13339:21386558,32986496:253716 -k1,13339:24647722,32986496:253717 -(1,13339:24647722,32986496:0,452978,122846 -r1,13339:28874818,32986496:4227096,575824,122846 -k1,13339:24647722,32986496:-4227096 -) -(1,13339:24647722,32986496:4227096,452978,122846 -k1,13339:24647722,32986496:3277 -h1,13339:28871541,32986496:0,411205,112570 -) -k1,13339:29302204,32986496:253716 -k1,13339:30317449,32986496:253717 -k1,13339:32583029,32986496:0 -) -(1,13340:6630773,33827984:25952256,513147,134348 -k1,13339:9741148,33827984:322473 -k1,13339:10419481,33827984:322473 -k1,13339:13918484,33827984:322473 -k1,13339:17477125,33827984:322473 -k1,13339:18415636,33827984:322473 -k1,13339:19910549,33827984:322474 -k1,13339:24081951,33827984:322473 -k1,13339:26148992,33827984:322473 -k1,13339:27490550,33827984:322473 -(1,13339:27490550,33827984:0,414482,115847 -r1,13339:27848816,33827984:358266,530329,115847 -k1,13339:27490550,33827984:-358266 -) -(1,13339:27490550,33827984:358266,414482,115847 -k1,13339:27490550,33827984:3277 -h1,13339:27845539,33827984:0,411205,112570 -) -k1,13339:28171289,33827984:322473 -k1,13339:29685207,33827984:322473 -(1,13339:29685207,33827984:0,414482,115847 -r1,13339:30043473,33827984:358266,530329,115847 -k1,13339:29685207,33827984:-358266 -) -(1,13339:29685207,33827984:358266,414482,115847 -k1,13339:29685207,33827984:3277 -h1,13339:30040196,33827984:0,411205,112570 -) -k1,13339:30365946,33827984:322473 -k1,13340:32583029,33827984:0 -) -(1,13340:6630773,34669472:25952256,513147,134348 -k1,13339:8082036,34669472:248022 -k1,13339:9526745,34669472:248022 -k1,13339:12951297,34669472:248022 -k1,13339:14146970,34669472:248022 -k1,13339:15846614,34669472:248022 -k1,13339:19729918,34669472:248022 -k1,13339:20988505,34669472:248022 -k1,13339:21768024,34669472:248022 -k1,13339:24601441,34669472:248022 -k1,13339:26310261,34669472:248022 -k1,13339:26914143,34669472:248022 -(1,13339:26914143,34669472:0,459977,115847 -r1,13339:28327544,34669472:1413401,575824,115847 -k1,13339:26914143,34669472:-1413401 -) -(1,13339:26914143,34669472:1413401,459977,115847 -k1,13339:26914143,34669472:3277 -h1,13339:28324267,34669472:0,411205,112570 -) -k1,13339:28575566,34669472:248022 -k1,13339:30569467,34669472:248022 -k1,13339:31635378,34669472:248022 -k1,13340:32583029,34669472:0 -) -(1,13340:6630773,35510960:25952256,505283,126483 -(1,13339:6630773,35510960:0,452978,115847 -r1,13339:10154445,35510960:3523672,568825,115847 -k1,13339:6630773,35510960:-3523672 -) -(1,13339:6630773,35510960:3523672,452978,115847 -k1,13339:6630773,35510960:3277 -h1,13339:10151168,35510960:0,411205,112570 -) -k1,13339:10510066,35510960:181951 -(1,13339:10510066,35510960:0,452978,115847 -r1,13339:12978603,35510960:2468537,568825,115847 -k1,13339:10510066,35510960:-2468537 -) -(1,13339:10510066,35510960:2468537,452978,115847 -k1,13339:10510066,35510960:3277 -h1,13339:12975326,35510960:0,411205,112570 -) -k1,13339:13160553,35510960:181950 -k1,13339:13874001,35510960:181951 -k1,13339:15341767,35510960:181950 -k1,13339:18732361,35510960:181951 -k1,13339:20105756,35510960:181950 -k1,13339:23071676,35510960:181951 -k1,13339:23905055,35510960:181951 -k1,13339:24834771,35510960:181950 -k1,13339:27602117,35510960:181951 -k1,13339:28470229,35510960:181950 -k1,13339:30727705,35510960:181951 -k1,13339:32583029,35510960:0 -) -(1,13340:6630773,36352448:25952256,513147,126483 -k1,13339:7780127,36352448:201703 -(1,13339:7780127,36352448:0,452978,122846 -r1,13339:12710647,36352448:4930520,575824,122846 -k1,13339:7780127,36352448:-4930520 -) -(1,13339:7780127,36352448:4930520,452978,122846 -k1,13339:7780127,36352448:3277 -h1,13339:12707370,36352448:0,411205,112570 -) -k1,13339:13086021,36352448:201704 -k1,13339:13915559,36352448:201703 -k1,13339:15320503,36352448:201703 -k1,13339:18357294,36352448:201704 -k1,13339:19245159,36352448:201703 -k1,13339:20465947,36352448:201703 -k1,13339:23153432,36352448:201704 -k1,13339:24014427,36352448:201703 -k1,13339:25562895,36352448:201703 -k1,13339:26296096,36352448:201704 -k1,13339:27516884,36352448:201703 -k1,13339:29372060,36352448:201703 -k1,13339:30189802,36352448:201704 -k1,13339:31410590,36352448:201703 -k1,13339:32583029,36352448:0 -) -(1,13340:6630773,37193936:25952256,505283,134348 -k1,13339:10717652,37193936:237950 -k1,13339:11311463,37193936:237951 -k1,13339:13690474,37193936:237950 -k1,13339:16452871,37193936:237950 -k1,13339:18038242,37193936:237951 -k1,13339:18807689,37193936:237950 -k1,13339:20647339,37193936:237950 -k1,13339:23570955,37193936:237951 -k1,13339:25694376,37193936:237950 -k1,13339:26800678,37193936:237950 -k1,13339:29395959,37193936:237951 -k1,13339:30395437,37193936:237950 -k1,13340:32583029,37193936:0 -) -(1,13340:6630773,38035424:25952256,513147,134348 -(1,13339:6630773,38035424:0,452978,115847 -r1,13339:11209581,38035424:4578808,568825,115847 -k1,13339:6630773,38035424:-4578808 -) -(1,13339:6630773,38035424:4578808,452978,115847 -k1,13339:6630773,38035424:3277 -h1,13339:11206304,38035424:0,411205,112570 -) -g1,13339:11408810,38035424 -g1,13339:12840116,38035424 -g1,13339:15318032,38035424 -h1,13339:16288620,38035424:0,0,0 -g1,13339:16487849,38035424 -g1,13339:17496448,38035424 -g1,13339:19193830,38035424 -h1,13339:20389207,38035424:0,0,0 -g1,13339:20588436,38035424 -g1,13339:21735316,38035424 -k1,13340:32583029,38035424:8349481 -g1,13340:32583029,38035424 -) -v1,13342:6630773,39225890:0,393216,0 -(1,13348:6630773,40867051:25952256,2034377,196608 -g1,13348:6630773,40867051 -g1,13348:6630773,40867051 -g1,13348:6434165,40867051 -(1,13348:6434165,40867051:0,2034377,196608 -r1,13348:32779637,40867051:26345472,2230985,196608 -k1,13348:6434165,40867051:-26345472 -) -(1,13348:6434165,40867051:26345472,2034377,196608 -[1,13348:6630773,40867051:25952256,1837769,0 -(1,13344:6630773,39433508:25952256,404226,107478 -(1,13343:6630773,39433508:0,0,0 -g1,13343:6630773,39433508 -g1,13343:6630773,39433508 -g1,13343:6303093,39433508 -(1,13343:6303093,39433508:0,0,0 -) -g1,13343:6630773,39433508 -) -k1,13344:6630773,39433508:0 -g1,13344:11689104,39433508 -g1,13344:13902124,39433508 -g1,13344:15166707,39433508 -h1,13344:15482853,39433508:0,0,0 -k1,13344:32583029,39433508:17100176 -g1,13344:32583029,39433508 -) -(1,13345:6630773,40099686:25952256,404226,76021 -h1,13345:6630773,40099686:0,0,0 -g1,13345:6946919,40099686 -g1,13345:7263065,40099686 -g1,13345:12321397,40099686 -g1,13345:12953689,40099686 -g1,13345:13902127,40099686 -h1,13345:14218273,40099686:0,0,0 -k1,13345:32583029,40099686:18364756 -g1,13345:32583029,40099686 -) -(1,13346:6630773,40765864:25952256,404226,101187 -h1,13346:6630773,40765864:0,0,0 -g1,13346:6946919,40765864 -g1,13346:7263065,40765864 -k1,13346:7263065,40765864:0 -h1,13346:11372958,40765864:0,0,0 -k1,13346:32583030,40765864:21210072 -g1,13346:32583030,40765864 -) -] -) -g1,13348:32583029,40867051 -g1,13348:6630773,40867051 -g1,13348:6630773,40867051 -g1,13348:32583029,40867051 -g1,13348:32583029,40867051 -) -h1,13348:6630773,41063659:0,0,0 -] -(1,13358:32583029,45706769:0,0,0 -g1,13358:32583029,45706769 -) -) -] -(1,13358:6630773,47279633:25952256,0,0 -h1,13358:6630773,47279633:25952256,0,0 -) -] -h1,13358:4262630,4025873:0,0,0 -] -!22821 -}256 -Input:1897:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1898:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1899:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1900:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1901:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1902:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1903:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1904:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 -{257 -[1,13399:4262630,47279633:28320399,43253760,0 -(1,13399:4262630,4025873:0,0,0 -[1,13399:-473657,4025873:25952256,0,0 -(1,13399:-473657,-710414:25952256,0,0 -h1,13399:-473657,-710414:0,0,0 -(1,13399:-473657,-710414:0,0,0 -(1,13399:-473657,-710414:0,0,0 -g1,13399:-473657,-710414 -(1,13399:-473657,-710414:65781,0,65781 -g1,13399:-407876,-710414 -[1,13399:-407876,-644633:0,0,0 +g1,13384:6630773,4812305 +k1,13384:25712890,4812305:17886740 +g1,13384:29057847,4812305 +g1,13384:29873114,4812305 +) +) +] +[1,13384:6630773,45706769:25952256,40108032,0 +(1,13384:6630773,45706769:25952256,40108032,0 +(1,13384:6630773,45706769:0,0,0 +g1,13384:6630773,45706769 +) +[1,13384:6630773,45706769:25952256,40108032,0 +(1,13326:6630773,6254097:25952256,505283,126483 +k1,13325:8265620,6254097:200919 +k1,13325:9743837,6254097:200920 +k1,13325:11244335,6254097:200919 +k1,13325:12206782,6254097:200919 +k1,13325:13707281,6254097:200920 +k1,13325:15302151,6254097:200919 +(1,13325:15302151,6254097:0,452978,122846 +r1,13325:21639519,6254097:6337368,575824,122846 +k1,13325:15302151,6254097:-6337368 +) +(1,13325:15302151,6254097:6337368,452978,122846 +g1,13325:18470835,6254097 +g1,13325:19174259,6254097 +h1,13325:21636242,6254097:0,411205,112570 +) +k1,13325:22014108,6254097:200919 +k1,13325:24652312,6254097:200920 +k1,13325:26009941,6254097:200919 +k1,13325:28066184,6254097:200919 +k1,13325:29286189,6254097:200920 +k1,13325:31189078,6254097:200919 +k1,13326:32583029,6254097:0 +) +(1,13326:6630773,7095585:25952256,505283,134348 +(1,13325:6630773,7095585:0,452978,115847 +r1,13325:12968141,7095585:6337368,568825,115847 +k1,13325:6630773,7095585:-6337368 +) +(1,13325:6630773,7095585:6337368,452978,115847 +g1,13325:9799457,7095585 +g1,13325:10502881,7095585 +h1,13325:12964864,7095585:0,411205,112570 +) +k1,13325:13252181,7095585:284040 +k1,13325:14727667,7095585:284041 +k1,13325:18791824,7095585:284040 +k1,13325:20469815,7095585:284040 +(1,13325:20469815,7095585:0,452978,115847 +r1,13325:27862318,7095585:7392503,568825,115847 +k1,13325:20469815,7095585:-7392503 +) +(1,13325:20469815,7095585:7392503,452978,115847 +g1,13325:23638499,7095585 +g1,13325:24341923,7095585 +h1,13325:27859041,7095585:0,411205,112570 +) +k1,13325:28146358,7095585:284040 +k1,13325:29046437,7095585:284041 +k1,13325:31215948,7095585:284040 +k1,13325:32583029,7095585:0 +) +(1,13326:6630773,7937073:25952256,505283,126483 +k1,13325:7703523,7937073:204398 +k1,13325:9438186,7937073:204397 +k1,13325:10294012,7937073:204398 +k1,13325:12214142,7937073:204397 +k1,13325:14057595,7937073:204398 +k1,13325:19704102,7937073:204397 +k1,13325:21302451,7937073:204398 +(1,13325:21302451,7937073:0,452978,115847 +r1,13325:25177835,7937073:3875384,568825,115847 +k1,13325:21302451,7937073:-3875384 +) +(1,13325:21302451,7937073:3875384,452978,115847 +g1,13325:23415999,7937073 +g1,13325:24119423,7937073 +h1,13325:25174558,7937073:0,411205,112570 +) +k1,13325:25382232,7937073:204397 +k1,13325:26311458,7937073:204398 +k1,13325:27800361,7937073:204397 +k1,13325:29384947,7937073:204398 +k1,13325:30355460,7937073:204397 +k1,13325:32583029,7937073:0 +) +(1,13326:6630773,8778561:25952256,505283,7863 +k1,13326:32583029,8778561:23735828 +g1,13326:32583029,8778561 +) +v1,13328:6630773,9969027:0,393216,0 +(1,13333:6630773,10956593:25952256,1380782,196608 +g1,13333:6630773,10956593 +g1,13333:6630773,10956593 +g1,13333:6434165,10956593 +(1,13333:6434165,10956593:0,1380782,196608 +r1,13333:32779637,10956593:26345472,1577390,196608 +k1,13333:6434165,10956593:-26345472 +) +(1,13333:6434165,10956593:26345472,1380782,196608 +[1,13333:6630773,10956593:25952256,1184174,0 +(1,13330:6630773,10182937:25952256,410518,107478 +(1,13329:6630773,10182937:0,0,0 +g1,13329:6630773,10182937 +g1,13329:6630773,10182937 +g1,13329:6303093,10182937 +(1,13329:6303093,10182937:0,0,0 +) +g1,13329:6630773,10182937 +) +k1,13330:6630773,10182937:0 +g1,13330:11689104,10182937 +g1,13330:13902124,10182937 +g1,13330:15482853,10182937 +g1,13330:16115145,10182937 +g1,13330:18644311,10182937 +h1,13330:18960457,10182937:0,0,0 +k1,13330:32583029,10182937:13622572 +g1,13330:32583029,10182937 +) +(1,13331:6630773,10849115:25952256,404226,107478 +h1,13331:6630773,10849115:0,0,0 +g1,13331:6946919,10849115 +g1,13331:7263065,10849115 +g1,13331:13585980,10849115 +g1,13331:14218272,10849115 +g1,13331:15482855,10849115 +g1,13331:18328166,10849115 +g1,13331:18960458,10849115 +h1,13331:21489624,10849115:0,0,0 +k1,13331:32583029,10849115:11093405 +g1,13331:32583029,10849115 +) +] +) +g1,13333:32583029,10956593 +g1,13333:6630773,10956593 +g1,13333:6630773,10956593 +g1,13333:32583029,10956593 +g1,13333:32583029,10956593 +) +h1,13333:6630773,11153201:0,0,0 +(1,13337:6630773,12518977:25952256,505283,134348 +h1,13336:6630773,12518977:983040,0,0 +k1,13336:9074987,12518977:264487 +k1,13336:12548116,12518977:264486 +k1,13336:14823248,12518977:264487 +k1,13336:16079294,12518977:264486 +k1,13336:19483611,12518977:264487 +k1,13336:20364135,12518977:264486 +k1,13336:21647707,12518977:264487 +(1,13336:21647707,12518977:0,452978,115847 +r1,13336:23061108,12518977:1413401,568825,115847 +k1,13336:21647707,12518977:-1413401 +) +(1,13336:21647707,12518977:1413401,452978,115847 +k1,13336:21647707,12518977:3277 +h1,13336:23057831,12518977:0,411205,112570 +) +k1,13336:23325594,12518977:264486 +k1,13336:24874587,12518977:264487 +k1,13336:26158158,12518977:264486 +k1,13336:29430092,12518977:264487 +k1,13336:32583029,12518977:0 +) +(1,13337:6630773,13360465:25952256,513147,126483 +k1,13336:8409181,13360465:210787 +k1,13336:9639054,13360465:210788 +k1,13336:12394604,13360465:210787 +k1,13336:14300807,13360465:210787 +k1,13336:17365033,13360465:210788 +k1,13336:20363722,13360465:210787 +k1,13336:23801503,13360465:210788 +k1,13336:26022935,13360465:210787 +k1,13336:27518228,13360465:210787 +k1,13336:28720576,13360465:210788 +k1,13336:29997634,13360465:210787 +k1,13336:32583029,13360465:0 +) +(1,13337:6630773,14201953:25952256,513147,134348 +k1,13336:7582339,14201953:190038 +k1,13336:10211628,14201953:190039 +k1,13336:12275996,14201953:190038 +k1,13336:13570317,14201953:190039 +k1,13336:14508121,14201953:190038 +k1,13336:17283554,14201953:190038 +k1,13336:18867544,14201953:190039 +(1,13336:18867544,14201953:0,452978,115847 +r1,13336:20632657,14201953:1765113,568825,115847 +k1,13336:18867544,14201953:-1765113 +) +(1,13336:18867544,14201953:1765113,452978,115847 +k1,13336:18867544,14201953:3277 +h1,13336:20629380,14201953:0,411205,112570 +) +k1,13336:20822695,14201953:190038 +k1,13336:21774262,14201953:190039 +k1,13336:24980267,14201953:190038 +k1,13336:26809360,14201953:190038 +k1,13336:27615437,14201953:190039 +k1,13336:28161335,14201953:190038 +k1,13336:29451068,14201953:190039 +k1,13336:30292534,14201953:190038 +(1,13336:30292534,14201953:0,452978,115847 +r1,13336:32409359,14201953:2116825,568825,115847 +k1,13336:30292534,14201953:-2116825 +) +(1,13336:30292534,14201953:2116825,452978,115847 +k1,13336:30292534,14201953:3277 +h1,13336:32406082,14201953:0,411205,112570 +) +k1,13336:32583029,14201953:0 +) +(1,13337:6630773,15043441:25952256,505283,134348 +k1,13336:8491150,15043441:198384 +k1,13336:9708619,15043441:198384 +k1,13336:11295056,15043441:198384 +k1,13336:12991593,15043441:198384 +k1,13336:14058329,15043441:198384 +k1,13336:15360995,15043441:198384 +k1,13336:17170909,15043441:198384 +k1,13336:18653799,15043441:198384 +k1,13336:19468221,15043441:198384 +k1,13336:22332610,15043441:198384 +k1,13336:23182422,15043441:198384 +k1,13336:25525799,15043441:198384 +k1,13336:26340221,15043441:198384 +k1,13336:29049945,15043441:198384 +(1,13336:29049945,15043441:0,414482,115847 +r1,13336:30815058,15043441:1765113,530329,115847 +k1,13336:29049945,15043441:-1765113 +) +(1,13336:29049945,15043441:1765113,414482,115847 +k1,13336:29049945,15043441:3277 +h1,13336:30811781,15043441:0,411205,112570 +) +k1,13336:31187112,15043441:198384 +k1,13337:32583029,15043441:0 +) +(1,13337:6630773,15884929:25952256,505283,126483 +k1,13336:8014638,15884929:234363 +k1,13336:8780497,15884929:234362 +k1,13336:11793587,15884929:234363 +k1,13336:12643987,15884929:234362 +k1,13336:15389690,15884929:234363 +(1,13336:15389690,15884929:0,452978,115847 +r1,13336:17858227,15884929:2468537,568825,115847 +k1,13336:15389690,15884929:-2468537 +) +(1,13336:15389690,15884929:2468537,452978,115847 +k1,13336:15389690,15884929:3277 +h1,13336:17854950,15884929:0,411205,112570 +) +k1,13336:18092590,15884929:234363 +k1,13336:19088480,15884929:234362 +k1,13336:20526084,15884929:234363 +k1,13336:23457253,15884929:234362 +k1,13336:28212290,15884929:234363 +k1,13336:29315004,15884929:234362 +k1,13336:30653649,15884929:234363 +k1,13336:32583029,15884929:0 +) +(1,13337:6630773,16726417:25952256,505283,134348 +k1,13336:7206279,16726417:219646 +k1,13336:10662094,16726417:219647 +k1,13336:12275691,16726417:219646 +k1,13336:13514423,16726417:219647 +k1,13336:15879062,16726417:219646 +k1,13336:17155148,16726417:219646 +k1,13336:18391258,16726417:219647 +k1,13336:21808406,16726417:219646 +k1,13336:22714214,16726417:219646 +k1,13336:25784022,16726417:219647 +k1,13336:28011691,16726417:219646 +k1,13336:30675176,16726417:219647 +k1,13336:31426319,16726417:219646 +k1,13336:32583029,16726417:0 +) +(1,13337:6630773,17567905:25952256,513147,102891 +k1,13336:8987857,17567905:198328 +k1,13336:10628632,17567905:198328 +k1,13336:12335600,17567905:198329 +k1,13336:14072713,17567905:198328 +k1,13336:14957203,17567905:198328 +k1,13336:16174616,17567905:198328 +k1,13336:18187637,17567905:198329 +k1,13336:19045257,17567905:198328 +k1,13336:20262670,17567905:198328 +k1,13336:21807763,17567905:198328 +k1,13336:22537589,17567905:198329 +k1,13336:23351955,17567905:198328 +k1,13336:24753524,17567905:198328 +k1,13336:26318933,17567905:198328 +k1,13336:29279605,17567905:198329 +k1,13336:31045554,17567905:198328 +k1,13336:32583029,17567905:0 +) +(1,13337:6630773,18409393:25952256,513147,7863 +g1,13336:7516164,18409393 +k1,13337:32583029,18409393:22577808 +g1,13337:32583029,18409393 +) +v1,13339:6630773,19599859:0,393216,0 +(1,13344:6630773,20587425:25952256,1380782,196608 +g1,13344:6630773,20587425 +g1,13344:6630773,20587425 +g1,13344:6434165,20587425 +(1,13344:6434165,20587425:0,1380782,196608 +r1,13344:32779637,20587425:26345472,1577390,196608 +k1,13344:6434165,20587425:-26345472 +) +(1,13344:6434165,20587425:26345472,1380782,196608 +[1,13344:6630773,20587425:25952256,1184174,0 +(1,13341:6630773,19813769:25952256,410518,107478 +(1,13340:6630773,19813769:0,0,0 +g1,13340:6630773,19813769 +g1,13340:6630773,19813769 +g1,13340:6303093,19813769 +(1,13340:6303093,19813769:0,0,0 +) +g1,13340:6630773,19813769 +) +k1,13341:6630773,19813769:0 +g1,13341:11689104,19813769 +g1,13341:13902124,19813769 +g1,13341:15482853,19813769 +g1,13341:16115145,19813769 +g1,13341:18644311,19813769 +h1,13341:18960457,19813769:0,0,0 +k1,13341:32583029,19813769:13622572 +g1,13341:32583029,19813769 +) +(1,13342:6630773,20479947:25952256,404226,107478 +h1,13342:6630773,20479947:0,0,0 +g1,13342:6946919,20479947 +g1,13342:7263065,20479947 +g1,13342:14534417,20479947 +g1,13342:15166709,20479947 +g1,13342:17063584,20479947 +g1,13342:17695876,20479947 +g1,13342:22754208,20479947 +g1,13342:24334937,20479947 +g1,13342:24967229,20479947 +g1,13342:26231812,20479947 +g1,13342:29077123,20479947 +g1,13342:29709415,20479947 +h1,13342:32238581,20479947:0,0,0 +k1,13342:32583029,20479947:344448 +g1,13342:32583029,20479947 +) +] +) +g1,13344:32583029,20587425 +g1,13344:6630773,20587425 +g1,13344:6630773,20587425 +g1,13344:32583029,20587425 +g1,13344:32583029,20587425 +) +h1,13344:6630773,20784033:0,0,0 +(1,13347:6630773,30436546:25952256,9062689,0 +k1,13347:10523651,30436546:3892878 +h1,13346:10523651,30436546:0,0,0 +(1,13346:10523651,30436546:18166500,9062689,0 +(1,13346:10523651,30436546:18167381,9062712,0 +(1,13346:10523651,30436546:18167381,9062712,0 +(1,13346:10523651,30436546:0,9062712,0 +(1,13346:10523651,30436546:0,14155776,0 +(1,13346:10523651,30436546:28377088,14155776,0 +) +k1,13346:10523651,30436546:-28377088 +) +) +g1,13346:28691032,30436546 +) +) +) +g1,13347:28690151,30436546 +k1,13347:32583029,30436546:3892878 +) +(1,13355:6630773,31278034:25952256,513147,134348 +h1,13354:6630773,31278034:983040,0,0 +k1,13354:8268179,31278034:176609 +k1,13354:8902884,31278034:176608 +k1,13354:10583544,31278034:176609 +k1,13354:11826423,31278034:176608 +k1,13354:12950683,31278034:176609 +k1,13354:14146377,31278034:176609 +k1,13354:16193383,31278034:176608 +k1,13354:17021420,31278034:176609 +k1,13354:20457134,31278034:176609 +k1,13354:22371757,31278034:176608 +k1,13354:23215522,31278034:176609 +(1,13354:23215522,31278034:0,452978,122846 +r1,13354:28849465,31278034:5633943,575824,122846 +k1,13354:23215522,31278034:-5633943 +) +(1,13354:23215522,31278034:5633943,452978,122846 +k1,13354:23215522,31278034:3277 +h1,13354:28846188,31278034:0,411205,112570 +) +k1,13354:29199743,31278034:176608 +k1,13354:31563944,31278034:176609 +k1,13354:32583029,31278034:0 +) +(1,13355:6630773,32119522:25952256,513147,126483 +k1,13354:8707350,32119522:188485 +k1,13354:10289786,32119522:188485 +(1,13354:10289786,32119522:0,452978,115847 +r1,13354:13813458,32119522:3523672,568825,115847 +k1,13354:10289786,32119522:-3523672 +) +(1,13354:10289786,32119522:3523672,452978,115847 +k1,13354:10289786,32119522:3277 +h1,13354:13810181,32119522:0,411205,112570 +) +k1,13354:14001943,32119522:188485 +k1,13354:14873313,32119522:188485 +(1,13354:14873313,32119522:0,452978,115847 +r1,13354:19100409,32119522:4227096,568825,115847 +k1,13354:14873313,32119522:-4227096 +) +(1,13354:14873313,32119522:4227096,452978,115847 +k1,13354:14873313,32119522:3277 +h1,13354:19097132,32119522:0,411205,112570 +) +k1,13354:19288894,32119522:188485 +k1,13354:21433629,32119522:188485 +k1,13354:22369880,32119522:188485 +k1,13354:25824024,32119522:188485 +k1,13354:26698671,32119522:188485 +k1,13354:27345253,32119522:188485 +k1,13354:29579772,32119522:188485 +k1,13354:31298523,32119522:188485 +k1,13354:32583029,32119522:0 +) +(1,13355:6630773,32961010:25952256,505283,126483 +g1,13354:11224191,32961010 +g1,13354:12232790,32961010 +g1,13354:13451104,32961010 +g1,13354:15039696,32961010 +g1,13354:16230485,32961010 +k1,13355:32583029,32961010:13480756 +g1,13355:32583029,32961010 +) +v1,13357:6630773,34151476:0,393216,0 +(1,13362:6630773,35139042:25952256,1380782,196608 +g1,13362:6630773,35139042 +g1,13362:6630773,35139042 +g1,13362:6434165,35139042 +(1,13362:6434165,35139042:0,1380782,196608 +r1,13362:32779637,35139042:26345472,1577390,196608 +k1,13362:6434165,35139042:-26345472 +) +(1,13362:6434165,35139042:26345472,1380782,196608 +[1,13362:6630773,35139042:25952256,1184174,0 +(1,13359:6630773,34365386:25952256,410518,107478 +(1,13358:6630773,34365386:0,0,0 +g1,13358:6630773,34365386 +g1,13358:6630773,34365386 +g1,13358:6303093,34365386 +(1,13358:6303093,34365386:0,0,0 +) +g1,13358:6630773,34365386 +) +k1,13359:6630773,34365386:0 +g1,13359:11689104,34365386 +g1,13359:13902124,34365386 +g1,13359:15482853,34365386 +g1,13359:16115145,34365386 +g1,13359:18644311,34365386 +h1,13359:18960457,34365386:0,0,0 +k1,13359:32583029,34365386:13622572 +g1,13359:32583029,34365386 +) +(1,13360:6630773,35031564:25952256,404226,107478 +h1,13360:6630773,35031564:0,0,0 +g1,13360:6946919,35031564 +g1,13360:7263065,35031564 +g1,13360:11689105,35031564 +g1,13360:12321397,35031564 +g1,13360:13585980,35031564 +g1,13360:16431291,35031564 +g1,13360:17063583,35031564 +h1,13360:19592749,35031564:0,0,0 +k1,13360:32583029,35031564:12990280 +g1,13360:32583029,35031564 +) +] +) +g1,13362:32583029,35139042 +g1,13362:6630773,35139042 +g1,13362:6630773,35139042 +g1,13362:32583029,35139042 +g1,13362:32583029,35139042 +) +h1,13362:6630773,35335650:0,0,0 +(1,13366:6630773,36701426:25952256,513147,134348 +h1,13365:6630773,36701426:983040,0,0 +k1,13365:9064217,36701426:253717 +k1,13365:11723105,36701426:253716 +(1,13365:11723105,36701426:0,452978,115847 +r1,13365:15246777,36701426:3523672,568825,115847 +k1,13365:11723105,36701426:-3523672 +) +(1,13365:11723105,36701426:3523672,452978,115847 +k1,13365:11723105,36701426:3277 +h1,13365:15243500,36701426:0,411205,112570 +) +k1,13365:15674164,36701426:253717 +k1,13365:17119325,36701426:253716 +k1,13365:18161440,36701426:253717 +k1,13365:21386558,36701426:253716 +k1,13365:24647722,36701426:253717 +(1,13365:24647722,36701426:0,452978,122846 +r1,13365:28874818,36701426:4227096,575824,122846 +k1,13365:24647722,36701426:-4227096 +) +(1,13365:24647722,36701426:4227096,452978,122846 +k1,13365:24647722,36701426:3277 +h1,13365:28871541,36701426:0,411205,112570 +) +k1,13365:29302204,36701426:253716 +k1,13365:30317449,36701426:253717 +k1,13365:32583029,36701426:0 +) +(1,13366:6630773,37542914:25952256,513147,134348 +k1,13365:9721760,37542914:303085 +k1,13365:10380706,37542914:303086 +k1,13365:13860321,37542914:303085 +k1,13365:17399574,37542914:303085 +k1,13365:18318698,37542914:303086 +k1,13365:19794222,37542914:303085 +k1,13365:23946236,37542914:303085 +k1,13365:25993890,37542914:303086 +k1,13365:27316060,37542914:303085 +(1,13365:27316060,37542914:0,414482,115847 +r1,13365:27674326,37542914:358266,530329,115847 +k1,13365:27316060,37542914:-358266 +) +(1,13365:27316060,37542914:358266,414482,115847 +k1,13365:27316060,37542914:3277 +h1,13365:27671049,37542914:0,411205,112570 +) +k1,13365:27977411,37542914:303085 +k1,13365:29471942,37542914:303086 +(1,13365:29471942,37542914:0,414482,115847 +r1,13365:29830208,37542914:358266,530329,115847 +k1,13365:29471942,37542914:-358266 +) +(1,13365:29471942,37542914:358266,414482,115847 +k1,13365:29471942,37542914:3277 +h1,13365:29826931,37542914:0,411205,112570 +) +k1,13365:30133293,37542914:303085 +k1,13366:32583029,37542914:0 +) +(1,13366:6630773,38384402:25952256,513147,134348 +k1,13365:7866001,38384402:264640 +k1,13365:9327328,38384402:264640 +k1,13365:12768498,38384402:264640 +k1,13365:13980789,38384402:264640 +k1,13365:15697051,38384402:264640 +k1,13365:19596973,38384402:264640 +k1,13365:20872179,38384402:264641 +k1,13365:21668316,38384402:264640 +k1,13365:24518351,38384402:264640 +k1,13365:26243789,38384402:264640 +k1,13365:26864289,38384402:264640 +(1,13365:26864289,38384402:0,459977,115847 +r1,13365:28277690,38384402:1413401,575824,115847 +k1,13365:26864289,38384402:-1413401 +) +(1,13365:26864289,38384402:1413401,459977,115847 +k1,13365:26864289,38384402:3277 +h1,13365:28274413,38384402:0,411205,112570 +) +k1,13365:28542330,38384402:264640 +k1,13365:30552849,38384402:264640 +k1,13365:31635378,38384402:264640 +k1,13366:32583029,38384402:0 +) +(1,13366:6630773,39225890:25952256,505283,126483 +(1,13365:6630773,39225890:0,452978,115847 +r1,13365:10154445,39225890:3523672,568825,115847 +k1,13365:6630773,39225890:-3523672 +) +(1,13365:6630773,39225890:3523672,452978,115847 +k1,13365:6630773,39225890:3277 +h1,13365:10151168,39225890:0,411205,112570 +) +k1,13365:10510066,39225890:181951 +(1,13365:10510066,39225890:0,452978,115847 +r1,13365:12978603,39225890:2468537,568825,115847 +k1,13365:10510066,39225890:-2468537 +) +(1,13365:10510066,39225890:2468537,452978,115847 +k1,13365:10510066,39225890:3277 +h1,13365:12975326,39225890:0,411205,112570 +) +k1,13365:13160553,39225890:181950 +k1,13365:13874001,39225890:181951 +k1,13365:15341767,39225890:181950 +k1,13365:18732361,39225890:181951 +k1,13365:20105756,39225890:181950 +k1,13365:23071676,39225890:181951 +k1,13365:23905055,39225890:181951 +k1,13365:24834771,39225890:181950 +k1,13365:27602117,39225890:181951 +k1,13365:28470229,39225890:181950 +k1,13365:30727705,39225890:181951 +k1,13365:32583029,39225890:0 +) +(1,13366:6630773,40067378:25952256,513147,126483 +k1,13365:7861974,40067378:283550 +(1,13365:7861974,40067378:0,452978,122846 +r1,13365:12792494,40067378:4930520,575824,122846 +k1,13365:7861974,40067378:-4930520 +) +(1,13365:7861974,40067378:4930520,452978,122846 +k1,13365:7861974,40067378:3277 +h1,13365:12789217,40067378:0,411205,112570 +) +k1,13365:13249713,40067378:283549 +k1,13365:14161098,40067378:283550 +k1,13365:15647889,40067378:283550 +k1,13365:18766526,40067378:283550 +k1,13365:19701503,40067378:283549 +k1,13365:22745429,40067378:283550 +k1,13365:26378524,40067378:283550 +k1,13365:27278111,40067378:283549 +k1,13365:28734100,40067378:283550 +k1,13365:32583029,40067378:0 +) +(1,13366:6630773,40908866:25952256,505283,138281 +k1,13365:8510965,40908866:152663 +$1,13365:8510965,40908866 +$1,13365:9013626,40908866 +k1,13365:9166289,40908866:152663 +k1,13365:10510398,40908866:152664 +$1,13365:10510398,40908866 +$1,13365:11062211,40908866 +k1,13365:11214874,40908866:152663 +k1,13365:13270047,40908866:152663 +k1,13365:14414270,40908866:152663 +k1,13365:16168634,40908866:152664 +k1,13365:19006962,40908866:152663 +k1,13365:21045096,40908866:152663 +k1,13365:22066111,40908866:152663 +k1,13365:24576105,40908866:152664 +k1,13365:25490296,40908866:152663 +k1,13365:27830551,40908866:152663 +(1,13365:27830551,40908866:0,459977,115847 +r1,13365:32409359,40908866:4578808,575824,115847 +k1,13365:27830551,40908866:-4578808 +) +(1,13365:27830551,40908866:4578808,459977,115847 +k1,13365:27830551,40908866:3277 +h1,13365:32406082,40908866:0,411205,112570 +) +k1,13365:32583029,40908866:0 +) +(1,13366:6630773,41750354:25952256,513147,134348 +k1,13365:8703910,41750354:187666 +k1,13365:9423072,41750354:187665 +k1,13365:9966598,41750354:187666 +k1,13365:12980175,41750354:187665 +k1,13365:13827133,41750354:187666 +k1,13365:15033883,41750354:187665 +k1,13365:17487129,41750354:187666 +(1,13365:17487129,41750354:0,452978,115847 +r1,13365:23472784,41750354:5985655,568825,115847 +k1,13365:17487129,41750354:-5985655 +) +(1,13365:17487129,41750354:5985655,452978,115847 +k1,13365:17487129,41750354:3277 +h1,13365:23469507,41750354:0,411205,112570 +) +k1,13365:23660449,41750354:187665 +k1,13365:25080192,41750354:187666 +k1,13365:27546544,41750354:187665 +h1,13365:28517132,41750354:0,0,0 +k1,13365:28704798,41750354:187666 +k1,13365:29701833,41750354:187665 +k1,13365:31387652,41750354:187666 +h1,13365:32583029,41750354:0,0,0 +k1,13365:32583029,41750354:0 +) +(1,13366:6630773,42591842:25952256,513147,126483 +g1,13365:7777653,42591842 +g1,13365:10094350,42591842 +g1,13365:11102949,42591842 +g1,13365:13004148,42591842 +g1,13365:15779597,42591842 +g1,13365:16638118,42591842 +k1,13366:32583029,42591842:11825973 +g1,13366:32583029,42591842 +) +v1,13368:6630773,43782308:0,393216,0 +(1,13374:6630773,45398303:25952256,2009211,196608 +g1,13374:6630773,45398303 +g1,13374:6630773,45398303 +g1,13374:6434165,45398303 +(1,13374:6434165,45398303:0,2009211,196608 +r1,13374:32779637,45398303:26345472,2205819,196608 +k1,13374:6434165,45398303:-26345472 +) +(1,13374:6434165,45398303:26345472,2009211,196608 +[1,13374:6630773,45398303:25952256,1812603,0 +(1,13370:6630773,43989926:25952256,404226,107478 +(1,13369:6630773,43989926:0,0,0 +g1,13369:6630773,43989926 +g1,13369:6630773,43989926 +g1,13369:6303093,43989926 +(1,13369:6303093,43989926:0,0,0 +) +g1,13369:6630773,43989926 +) +k1,13370:6630773,43989926:0 +g1,13370:11689104,43989926 +g1,13370:13902124,43989926 +g1,13370:15166707,43989926 +h1,13370:15482853,43989926:0,0,0 +k1,13370:32583029,43989926:17100176 +g1,13370:32583029,43989926 +) +(1,13371:6630773,44656104:25952256,404226,76021 +h1,13371:6630773,44656104:0,0,0 +g1,13371:6946919,44656104 +g1,13371:7263065,44656104 +g1,13371:12321397,44656104 +g1,13371:12953689,44656104 +g1,13371:13902127,44656104 +h1,13371:14218273,44656104:0,0,0 +k1,13371:32583029,44656104:18364756 +g1,13371:32583029,44656104 +) +(1,13372:6630773,45322282:25952256,410518,76021 +h1,13372:6630773,45322282:0,0,0 +g1,13372:6946919,45322282 +g1,13372:7263065,45322282 +g1,13372:12953687,45322282 +g1,13372:13585979,45322282 +h1,13372:14218271,45322282:0,0,0 +k1,13372:32583029,45322282:18364758 +g1,13372:32583029,45322282 +) +] +) +g1,13374:32583029,45398303 +g1,13374:6630773,45398303 +g1,13374:6630773,45398303 +g1,13374:32583029,45398303 +g1,13374:32583029,45398303 +) +h1,13374:6630773,45594911:0,0,0 +] +(1,13384:32583029,45706769:0,0,0 +g1,13384:32583029,45706769 +) +) +] +(1,13384:6630773,47279633:25952256,0,0 +h1,13384:6630773,47279633:25952256,0,0 +) +] +h1,13384:4262630,4025873:0,0,0 +] +!26061 +}257 +Input:1894:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1895:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1896:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1897:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1898:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1899:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1900:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1901:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{258 +[1,13425:4262630,47279633:28320399,43253760,0 +(1,13425:4262630,4025873:0,0,0 +[1,13425:-473657,4025873:25952256,0,0 +(1,13425:-473657,-710414:25952256,0,0 +h1,13425:-473657,-710414:0,0,0 +(1,13425:-473657,-710414:0,0,0 +(1,13425:-473657,-710414:0,0,0 +g1,13425:-473657,-710414 +(1,13425:-473657,-710414:65781,0,65781 +g1,13425:-407876,-710414 +[1,13425:-407876,-644633:0,0,0 ] ) -k1,13399:-473657,-710414:-65781 +k1,13425:-473657,-710414:-65781 ) ) -k1,13399:25478599,-710414:25952256 -g1,13399:25478599,-710414 +k1,13425:25478599,-710414:25952256 +g1,13425:25478599,-710414 ) ] ) -[1,13399:6630773,47279633:25952256,43253760,0 -[1,13399:6630773,4812305:25952256,786432,0 -(1,13399:6630773,4812305:25952256,513147,134348 -(1,13399:6630773,4812305:25952256,513147,134348 -g1,13399:3078558,4812305 -[1,13399:3078558,4812305:0,0,0 -(1,13399:3078558,2439708:0,1703936,0 -k1,13399:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13399:2537886,2439708:1179648,16384,0 +[1,13425:6630773,47279633:25952256,43253760,0 +[1,13425:6630773,4812305:25952256,786432,0 +(1,13425:6630773,4812305:25952256,485622,11795 +(1,13425:6630773,4812305:25952256,485622,11795 +g1,13425:3078558,4812305 +[1,13425:3078558,4812305:0,0,0 +(1,13425:3078558,2439708:0,1703936,0 +k1,13425:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13425:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13399:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13425:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13399:3078558,4812305:0,0,0 -(1,13399:3078558,2439708:0,1703936,0 -g1,13399:29030814,2439708 -g1,13399:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13399: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,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13425:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13399:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13425:37855564,2439708:1179648,16384,0 ) ) -k1,13399:3078556,2439708:-34777008 +k1,13425:3078556,2439708:-34777008 ) ] -[1,13399:3078558,4812305:0,0,0 -(1,13399:3078558,49800853:0,16384,2228224 -k1,13399:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13399: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,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13425:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13399:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13425:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13399:3078558,4812305:0,0,0 -(1,13399:3078558,49800853:0,16384,2228224 -g1,13399:29030814,49800853 -g1,13399:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13399:36151628,51504789:16384,1179648,0 +[1,13425:3078558,4812305:0,0,0 +(1,13425:3078558,49800853:0,16384,2228224 +g1,13425:29030814,49800853 +g1,13425:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13425:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13399:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13425:37855564,49800853:1179648,16384,0 ) ) -k1,13399:3078556,49800853:-34777008 +k1,13425:3078556,49800853:-34777008 ) ] -g1,13399:6630773,4812305 -k1,13399:25712890,4812305:17886740 -g1,13399:29057847,4812305 -g1,13399:29873114,4812305 +g1,13425:6630773,4812305 +g1,13425:6630773,4812305 +g1,13425:9560887,4812305 +k1,13425:31387651,4812305:21826764 ) ) ] -[1,13399:6630773,45706769:25952256,40108032,0 -(1,13399:6630773,45706769:25952256,40108032,0 -(1,13399:6630773,45706769:0,0,0 -g1,13399:6630773,45706769 +[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,13399:6630773,45706769:25952256,40108032,0 -(1,13351:6630773,14661426:25952256,9062689,0 -k1,13351:10523651,14661426:3892878 -h1,13350:10523651,14661426:0,0,0 -(1,13350:10523651,14661426:18166500,9062689,0 -(1,13350:10523651,14661426:18167381,9062712,0 -(1,13350:10523651,14661426:18167381,9062712,0 -(1,13350:10523651,14661426:0,9062712,0 -(1,13350:10523651,14661426:0,14155776,0 -(1,13350:10523651,14661426:28377088,14155776,0 +[1,13425:6630773,45706769:25952256,40108032,0 +(1,13377:6630773,14661426:25952256,9062689,0 +k1,13377:10523651,14661426:3892878 +h1,13376:10523651,14661426:0,0,0 +(1,13376:10523651,14661426:18166500,9062689,0 +(1,13376:10523651,14661426:18167381,9062712,0 +(1,13376:10523651,14661426:18167381,9062712,0 +(1,13376:10523651,14661426:0,9062712,0 +(1,13376:10523651,14661426:0,14155776,0 +(1,13376:10523651,14661426:28377088,14155776,0 ) -k1,13350:10523651,14661426:-28377088 +k1,13376:10523651,14661426:-28377088 ) ) -g1,13350:28691032,14661426 +g1,13376:28691032,14661426 ) ) ) -g1,13351:28690151,14661426 -k1,13351:32583029,14661426:3892878 +g1,13377:28690151,14661426 +k1,13377:32583029,14661426:3892878 ) -(1,13359:6630773,15502914:25952256,513147,134348 -h1,13358:6630773,15502914:983040,0,0 -k1,13358:9168484,15502914:357984 -k1,13358:11931641,15502914:357985 -(1,13358:11931641,15502914:0,452978,115847 -r1,13358:16862161,15502914:4930520,568825,115847 -k1,13358:11931641,15502914:-4930520 +(1,13385:6630773,15502914:25952256,513147,134348 +h1,13384:6630773,15502914:983040,0,0 +k1,13384:9168484,15502914:357984 +k1,13384:11931641,15502914:357985 +(1,13384:11931641,15502914:0,452978,115847 +r1,13384:16862161,15502914:4930520,568825,115847 +k1,13384:11931641,15502914:-4930520 ) -(1,13358:11931641,15502914:4930520,452978,115847 -k1,13358:11931641,15502914:3277 -h1,13358:16858884,15502914:0,411205,112570 +(1,13384:11931641,15502914:4930520,452978,115847 +k1,13384:11931641,15502914:3277 +h1,13384:16858884,15502914:0,411205,112570 ) -k1,13358:17393815,15502914:357984 -k1,13358:18943245,15502914:357985 -k1,13358:20089627,15502914:357984 -k1,13358:23419013,15502914:357984 -k1,13358:26784445,15502914:357985 -(1,13358:26784445,15502914:0,452978,122846 -r1,13358:30308117,15502914:3523672,575824,122846 -k1,13358:26784445,15502914:-3523672 -) -(1,13358:26784445,15502914:3523672,452978,122846 -k1,13358:26784445,15502914:3277 -h1,13358:30304840,15502914:0,411205,112570 -) -k1,13358:30839771,15502914:357984 -k1,13358:32583029,15502914:0 -) -(1,13359:6630773,16344402:25952256,513147,134348 -k1,13358:8587567,16344402:389173 -(1,13358:8587567,16344402:0,452978,115847 -r1,13358:12814663,16344402:4227096,568825,115847 -k1,13358:8587567,16344402:-4227096 -) -(1,13358:8587567,16344402:4227096,452978,115847 -k1,13358:8587567,16344402:3277 -h1,13358:12811386,16344402:0,411205,112570 -) -k1,13358:13203835,16344402:389172 -k1,13358:14209046,16344402:389173 -k1,13358:16106858,16344402:389173 -k1,13358:17588515,16344402:389172 -k1,13358:18636980,16344402:389173 -k1,13358:22253801,16344402:389173 -k1,13358:24970156,16344402:389172 -k1,13358:26018621,16344402:389173 -k1,13358:28548855,16344402:389173 -k1,13358:30452564,16344402:389172 -k1,13358:31601955,16344402:389173 -k1,13359:32583029,16344402:0 -) -(1,13359:6630773,17185890:25952256,513147,134348 -k1,13358:8399538,17185890:271267 -k1,13358:9689890,17185890:271267 -k1,13358:13137687,17185890:271267 -k1,13358:14091840,17185890:271268 -(1,13358:14091840,17185890:0,414482,115847 -r1,13358:15856953,17185890:1765113,530329,115847 -k1,13358:14091840,17185890:-1765113 -) -(1,13358:14091840,17185890:1765113,414482,115847 -k1,13358:14091840,17185890:3277 -h1,13358:15853676,17185890:0,411205,112570 -) -k1,13358:16128220,17185890:271267 -k1,13358:17347138,17185890:271267 -k1,13358:19070027,17185890:271267 -k1,13358:22007954,17185890:271267 -k1,13358:22810718,17185890:271267 -k1,13358:25667381,17185890:271268 -k1,13358:26590076,17185890:271267 -k1,13358:27880428,17185890:271267 -(1,13358:27880428,17185890:0,459977,115847 -r1,13358:29293829,17185890:1413401,575824,115847 -k1,13358:27880428,17185890:-1413401 -) -(1,13358:27880428,17185890:1413401,459977,115847 -k1,13358:27880428,17185890:3277 -h1,13358:29290552,17185890:0,411205,112570 -) -k1,13358:29565096,17185890:271267 -k1,13358:32583029,17185890:0 -) -(1,13359:6630773,18027378:25952256,505283,126483 -k1,13358:8025778,18027378:322836 -k1,13358:10493608,18027378:322837 -k1,13358:14013946,18027378:322836 -k1,13358:15022944,18027378:322836 -(1,13358:15022944,18027378:0,452978,115847 -r1,13358:17491481,18027378:2468537,568825,115847 -k1,13358:15022944,18027378:-2468537 -) -(1,13358:15022944,18027378:2468537,452978,115847 -k1,13358:15022944,18027378:3277 -h1,13358:17488204,18027378:0,411205,112570 -) -k1,13358:17814317,18027378:322836 -k1,13358:19128714,18027378:322837 -k1,13358:20737366,18027378:322836 -k1,13358:24268845,18027378:322836 -k1,13358:25783126,18027378:322836 -k1,13358:27210245,18027378:322837 -k1,13358:28280847,18027378:322836 -k1,13358:31189078,18027378:322836 -k1,13359:32583029,18027378:0 -) -(1,13359:6630773,18868866:25952256,459977,115847 -(1,13358:6630773,18868866:0,459977,115847 -r1,13358:15430124,18868866:8799351,575824,115847 -k1,13358:6630773,18868866:-8799351 -) -(1,13358:6630773,18868866:8799351,459977,115847 -g1,13358:9799457,18868866 -g1,13358:10502881,18868866 -h1,13358:15426847,18868866:0,411205,112570 -) -k1,13359:32583030,18868866:16979236 -g1,13359:32583030,18868866 -) -v1,13361:6630773,20059332:0,393216,0 -(1,13367:6630773,21700493:25952256,2034377,196608 -g1,13367:6630773,21700493 -g1,13367:6630773,21700493 -g1,13367:6434165,21700493 -(1,13367:6434165,21700493:0,2034377,196608 -r1,13367:32779637,21700493:26345472,2230985,196608 -k1,13367:6434165,21700493:-26345472 -) -(1,13367:6434165,21700493:26345472,2034377,196608 -[1,13367:6630773,21700493:25952256,1837769,0 -(1,13363:6630773,20266950:25952256,404226,107478 -(1,13362:6630773,20266950:0,0,0 -g1,13362:6630773,20266950 -g1,13362:6630773,20266950 -g1,13362:6303093,20266950 -(1,13362:6303093,20266950:0,0,0 -) -g1,13362:6630773,20266950 -) -k1,13363:6630773,20266950:0 -g1,13363:11689104,20266950 -g1,13363:13902124,20266950 -g1,13363:15166707,20266950 -h1,13363:15482853,20266950:0,0,0 -k1,13363:32583029,20266950:17100176 -g1,13363:32583029,20266950 -) -(1,13364:6630773,20933128:25952256,404226,76021 -h1,13364:6630773,20933128:0,0,0 -g1,13364:6946919,20933128 -g1,13364:7263065,20933128 -g1,13364:12953688,20933128 -g1,13364:13585980,20933128 -g1,13364:14534418,20933128 -h1,13364:14850564,20933128:0,0,0 -k1,13364:32583028,20933128:17732464 -g1,13364:32583028,20933128 -) -(1,13365:6630773,21599306:25952256,404226,101187 -h1,13365:6630773,21599306:0,0,0 -g1,13365:6946919,21599306 -g1,13365:7263065,21599306 -k1,13365:7263065,21599306:0 -h1,13365:11372958,21599306:0,0,0 -k1,13365:32583030,21599306:21210072 -g1,13365:32583030,21599306 -) -] -) -g1,13367:32583029,21700493 -g1,13367:6630773,21700493 -g1,13367:6630773,21700493 -g1,13367:32583029,21700493 -g1,13367:32583029,21700493 -) -h1,13367:6630773,21897101:0,0,0 -(1,13370:6630773,31549614:25952256,9062689,0 -k1,13370:10523651,31549614:3892878 -h1,13369:10523651,31549614:0,0,0 -(1,13369:10523651,31549614:18166500,9062689,0 -(1,13369:10523651,31549614:18167381,9062712,0 -(1,13369:10523651,31549614:18167381,9062712,0 -(1,13369:10523651,31549614:0,9062712,0 -(1,13369:10523651,31549614:0,14155776,0 -(1,13369:10523651,31549614:28377088,14155776,0 -) -k1,13369:10523651,31549614:-28377088 -) -) -g1,13369:28691032,31549614 -) -) -) -g1,13370:28690151,31549614 -k1,13370:32583029,31549614:3892878 -) -(1,13378:6630773,33640874:25952256,564462,139132 -(1,13378:6630773,33640874:2450326,521208,12975 -g1,13378:6630773,33640874 -g1,13378:9081099,33640874 -) -g1,13378:12118955,33640874 -k1,13378:32583029,33640874:17022516 -g1,13378:32583029,33640874 -) -(1,13382:6630773,34875578:25952256,513147,134348 -k1,13381:9829764,34875578:202030 -k1,13381:12364219,34875578:202029 -k1,13381:15592046,34875578:202030 -k1,13381:16785636,34875578:202030 -k1,13381:18006750,34875578:202029 -k1,13381:21513761,34875578:202030 -k1,13381:22375082,34875578:202029 -k1,13381:22932972,34875578:202030 -k1,13381:26544840,34875578:202030 -k1,13381:27819038,34875578:202029 -k1,13381:29012628,34875578:202030 -k1,13381:32583029,34875578:0 -) -(1,13382:6630773,35717066:25952256,505283,134348 -k1,13381:8092460,35717066:270242 -k1,13381:9428974,35717066:270243 -k1,13381:12928175,35717066:270242 -k1,13381:14933810,35717066:270242 -k1,13381:16724487,35717066:270242 -k1,13381:18552521,35717066:270243 -k1,13381:19927045,35717066:270242 -k1,13381:20945053,35717066:270242 -k1,13381:24351849,35717066:270243 -k1,13381:25238129,35717066:270242 -k1,13381:25906830,35717066:270242 -k1,13381:26859957,35717066:270242 -k1,13381:27528659,35717066:270243 -k1,13381:31474160,35717066:270242 -k1,13381:32583029,35717066:0 -) -(1,13382:6630773,36558554:25952256,513147,138281 -k1,13381:7583789,36558554:270131 -k1,13381:9136460,36558554:270131 -k1,13381:10354242,36558554:270131 -$1,13381:10354242,36558554 -$1,13381:10856903,36558554 -k1,13381:11127035,36558554:270132 -k1,13381:12080051,36558554:270131 -$1,13381:12080051,36558554 -$1,13381:12582712,36558554 -k1,13381:12852843,36558554:270131 -k1,13381:14314419,36558554:270131 -$1,13381:14314419,36558554 -$1,13381:14866232,36558554 -k1,13381:15310033,36558554:270131 -k1,13381:19550335,36558554:270131 -k1,13381:20638355,36558554:270131 -k1,13381:22302437,36558554:270131 -k1,13381:26139038,36558554:270132 -k1,13381:26867266,36558554:270131 -k1,13381:27668894,36558554:270131 -k1,13381:30568985,36558554:270131 -k1,13381:31490544,36558554:270131 -k1,13381:32583029,36558554:0 -) -(1,13382:6630773,37400042:25952256,513147,134348 -k1,13381:9615618,37400042:222502 -k1,13381:13278105,37400042:222502 -k1,13381:14152035,37400042:222502 -k1,13381:17177512,37400042:222502 -k1,13381:19212740,37400042:222502 -k1,13381:22450553,37400042:222502 -k1,13381:23332347,37400042:222502 -k1,13381:24573934,37400042:222502 -k1,13381:25888921,37400042:222502 -k1,13381:26778579,37400042:222502 -(1,13381:26778579,37400042:0,452978,122846 -r1,13381:31709099,37400042:4930520,575824,122846 -k1,13381:26778579,37400042:-4930520 -) -(1,13381:26778579,37400042:4930520,452978,122846 -k1,13381:26778579,37400042:3277 -h1,13381:31705822,37400042:0,411205,112570 -) -k1,13381:31931601,37400042:222502 -k1,13381:32583029,37400042:0 -) -(1,13382:6630773,38241530:25952256,513147,126483 -g1,13381:8759382,38241530 -g1,13381:9860386,38241530 -g1,13381:12392041,38241530 -g1,13381:14198868,38241530 -k1,13382:32583029,38241530:16225405 -g1,13382:32583029,38241530 -) -v1,13384:6630773,39431996:0,393216,0 -(1,13389:6630773,40413270:25952256,1374490,196608 -g1,13389:6630773,40413270 -g1,13389:6630773,40413270 -g1,13389:6434165,40413270 -(1,13389:6434165,40413270:0,1374490,196608 -r1,13389:32779637,40413270:26345472,1571098,196608 -k1,13389:6434165,40413270:-26345472 -) -(1,13389:6434165,40413270:26345472,1374490,196608 -[1,13389:6630773,40413270:25952256,1177882,0 -(1,13386:6630773,39639614:25952256,404226,107478 -(1,13385:6630773,39639614:0,0,0 -g1,13385:6630773,39639614 -g1,13385:6630773,39639614 -g1,13385:6303093,39639614 -(1,13385:6303093,39639614:0,0,0 -) -g1,13385:6630773,39639614 -) -k1,13386:6630773,39639614:0 -g1,13386:11689104,39639614 -g1,13386:13902124,39639614 -g1,13386:15798998,39639614 -g1,13386:16431290,39639614 -g1,13386:18960456,39639614 -h1,13386:19276602,39639614:0,0,0 -k1,13386:32583029,39639614:13306427 -g1,13386:32583029,39639614 -) -(1,13387:6630773,40305792:25952256,404226,107478 -h1,13387:6630773,40305792:0,0,0 -g1,13387:6946919,40305792 -g1,13387:7263065,40305792 -k1,13387:7263065,40305792:0 -h1,13387:11689104,40305792:0,0,0 -k1,13387:32583028,40305792:20893924 -g1,13387:32583028,40305792 -) -] -) -g1,13389:32583029,40413270 -g1,13389:6630773,40413270 -g1,13389:6630773,40413270 -g1,13389:32583029,40413270 -g1,13389:32583029,40413270 -) -h1,13389:6630773,40609878:0,0,0 -] -(1,13399:32583029,45706769:0,0,0 -g1,13399:32583029,45706769 -) -) -] -(1,13399:6630773,47279633:25952256,0,0 -h1,13399:6630773,47279633:25952256,0,0 -) -] -h1,13399:4262630,4025873:0,0,0 -] -!14183 -}257 -Input:1905:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1906:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1907:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1908:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1909:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1910:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1911:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1912:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1913:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 -{258 -[1,13468:4262630,47279633:28320399,43253760,0 -(1,13468:4262630,4025873:0,0,0 -[1,13468:-473657,4025873:25952256,0,0 -(1,13468:-473657,-710414:25952256,0,0 -h1,13468:-473657,-710414:0,0,0 -(1,13468:-473657,-710414:0,0,0 -(1,13468:-473657,-710414:0,0,0 -g1,13468:-473657,-710414 -(1,13468:-473657,-710414:65781,0,65781 -g1,13468:-407876,-710414 -[1,13468:-407876,-644633:0,0,0 +k1,13384:17393815,15502914:357984 +k1,13384:18943245,15502914:357985 +k1,13384:20089627,15502914:357984 +k1,13384:23419013,15502914:357984 +k1,13384:26784445,15502914:357985 +(1,13384:26784445,15502914:0,452978,122846 +r1,13384:30308117,15502914:3523672,575824,122846 +k1,13384:26784445,15502914:-3523672 +) +(1,13384:26784445,15502914:3523672,452978,122846 +k1,13384:26784445,15502914:3277 +h1,13384:30304840,15502914:0,411205,112570 +) +k1,13384:30839771,15502914:357984 +k1,13384:32583029,15502914:0 +) +(1,13385:6630773,16344402:25952256,513147,134348 +k1,13384:8587567,16344402:389173 +(1,13384:8587567,16344402:0,452978,115847 +r1,13384:12814663,16344402:4227096,568825,115847 +k1,13384:8587567,16344402:-4227096 +) +(1,13384:8587567,16344402:4227096,452978,115847 +k1,13384:8587567,16344402:3277 +h1,13384:12811386,16344402:0,411205,112570 +) +k1,13384:13203835,16344402:389172 +k1,13384:14209046,16344402:389173 +k1,13384:16106858,16344402:389173 +k1,13384:17588515,16344402:389172 +k1,13384:18636980,16344402:389173 +k1,13384:22253801,16344402:389173 +k1,13384:24970156,16344402:389172 +k1,13384:26018621,16344402:389173 +k1,13384:28548855,16344402:389173 +k1,13384:30452564,16344402:389172 +k1,13384:31601955,16344402:389173 +k1,13385:32583029,16344402:0 +) +(1,13385:6630773,17185890:25952256,513147,134348 +k1,13384:8399538,17185890:271267 +k1,13384:9689890,17185890:271267 +k1,13384:13137687,17185890:271267 +k1,13384:14091840,17185890:271268 +(1,13384:14091840,17185890:0,414482,115847 +r1,13384:15856953,17185890:1765113,530329,115847 +k1,13384:14091840,17185890:-1765113 +) +(1,13384:14091840,17185890:1765113,414482,115847 +k1,13384:14091840,17185890:3277 +h1,13384:15853676,17185890:0,411205,112570 +) +k1,13384:16128220,17185890:271267 +k1,13384:17347138,17185890:271267 +k1,13384:19070027,17185890:271267 +k1,13384:22007954,17185890:271267 +k1,13384:22810718,17185890:271267 +k1,13384:25667381,17185890:271268 +k1,13384:26590076,17185890:271267 +k1,13384:27880428,17185890:271267 +(1,13384:27880428,17185890:0,459977,115847 +r1,13384:29293829,17185890:1413401,575824,115847 +k1,13384:27880428,17185890:-1413401 +) +(1,13384:27880428,17185890:1413401,459977,115847 +k1,13384:27880428,17185890:3277 +h1,13384:29290552,17185890:0,411205,112570 +) +k1,13384:29565096,17185890:271267 +k1,13384:32583029,17185890:0 +) +(1,13385:6630773,18027378:25952256,505283,126483 +k1,13384:8025778,18027378:322836 +k1,13384:10493608,18027378:322837 +k1,13384:14013946,18027378:322836 +k1,13384:15022944,18027378:322836 +(1,13384:15022944,18027378:0,452978,115847 +r1,13384:17491481,18027378:2468537,568825,115847 +k1,13384:15022944,18027378:-2468537 +) +(1,13384:15022944,18027378:2468537,452978,115847 +k1,13384:15022944,18027378:3277 +h1,13384:17488204,18027378:0,411205,112570 +) +k1,13384:17814317,18027378:322836 +k1,13384:19128714,18027378:322837 +k1,13384:20737366,18027378:322836 +k1,13384:24268845,18027378:322836 +k1,13384:25783126,18027378:322836 +k1,13384:27210245,18027378:322837 +k1,13384:28280847,18027378:322836 +k1,13384:31189078,18027378:322836 +k1,13385:32583029,18027378:0 +) +(1,13385:6630773,18868866:25952256,459977,115847 +(1,13384:6630773,18868866:0,459977,115847 +r1,13384:15430124,18868866:8799351,575824,115847 +k1,13384:6630773,18868866:-8799351 +) +(1,13384:6630773,18868866:8799351,459977,115847 +g1,13384:9799457,18868866 +g1,13384:10502881,18868866 +h1,13384:15426847,18868866:0,411205,112570 +) +k1,13385:32583030,18868866:16979236 +g1,13385:32583030,18868866 +) +v1,13387:6630773,20059332:0,393216,0 +(1,13393:6630773,21675327:25952256,2009211,196608 +g1,13393:6630773,21675327 +g1,13393:6630773,21675327 +g1,13393:6434165,21675327 +(1,13393:6434165,21675327:0,2009211,196608 +r1,13393:32779637,21675327:26345472,2205819,196608 +k1,13393:6434165,21675327:-26345472 +) +(1,13393:6434165,21675327:26345472,2009211,196608 +[1,13393:6630773,21675327:25952256,1812603,0 +(1,13389:6630773,20266950:25952256,404226,107478 +(1,13388:6630773,20266950:0,0,0 +g1,13388:6630773,20266950 +g1,13388:6630773,20266950 +g1,13388:6303093,20266950 +(1,13388:6303093,20266950:0,0,0 +) +g1,13388:6630773,20266950 +) +k1,13389:6630773,20266950:0 +g1,13389:11689104,20266950 +g1,13389:13902124,20266950 +g1,13389:15166707,20266950 +h1,13389:15482853,20266950:0,0,0 +k1,13389:32583029,20266950:17100176 +g1,13389:32583029,20266950 +) +(1,13390:6630773,20933128:25952256,404226,76021 +h1,13390:6630773,20933128:0,0,0 +g1,13390:6946919,20933128 +g1,13390:7263065,20933128 +g1,13390:12953688,20933128 +g1,13390:13585980,20933128 +g1,13390:14534418,20933128 +h1,13390:14850564,20933128:0,0,0 +k1,13390:32583028,20933128:17732464 +g1,13390:32583028,20933128 +) +(1,13391:6630773,21599306:25952256,410518,76021 +h1,13391:6630773,21599306:0,0,0 +g1,13391:6946919,21599306 +g1,13391:7263065,21599306 +g1,13391:12953687,21599306 +g1,13391:13585979,21599306 +h1,13391:14218271,21599306:0,0,0 +k1,13391:32583029,21599306:18364758 +g1,13391:32583029,21599306 +) +] +) +g1,13393:32583029,21675327 +g1,13393:6630773,21675327 +g1,13393:6630773,21675327 +g1,13393:32583029,21675327 +g1,13393:32583029,21675327 +) +h1,13393:6630773,21871935:0,0,0 +(1,13396:6630773,31524448:25952256,9062689,0 +k1,13396:10523651,31524448:3892878 +h1,13395:10523651,31524448:0,0,0 +(1,13395:10523651,31524448:18166500,9062689,0 +(1,13395:10523651,31524448:18167381,9062712,0 +(1,13395:10523651,31524448:18167381,9062712,0 +(1,13395:10523651,31524448:0,9062712,0 +(1,13395:10523651,31524448:0,14155776,0 +(1,13395:10523651,31524448:28377088,14155776,0 +) +k1,13395:10523651,31524448:-28377088 +) +) +g1,13395:28691032,31524448 +) +) +) +g1,13396:28690151,31524448 +k1,13396:32583029,31524448:3892878 +) +(1,13404:6630773,33615708:25952256,564462,139132 +(1,13404:6630773,33615708:2450326,521208,12975 +g1,13404:6630773,33615708 +g1,13404:9081099,33615708 +) +g1,13404:12118955,33615708 +k1,13404:32583029,33615708:17022516 +g1,13404:32583029,33615708 +) +(1,13408:6630773,34850412:25952256,513147,134348 +k1,13407:9829764,34850412:202030 +k1,13407:12364219,34850412:202029 +k1,13407:15592046,34850412:202030 +k1,13407:16785636,34850412:202030 +k1,13407:18006750,34850412:202029 +k1,13407:21513761,34850412:202030 +k1,13407:22375082,34850412:202029 +k1,13407:22932972,34850412:202030 +k1,13407:26544840,34850412:202030 +k1,13407:27819038,34850412:202029 +k1,13407:29012628,34850412:202030 +k1,13407:32583029,34850412:0 +) +(1,13408:6630773,35691900:25952256,505283,134348 +k1,13407:8092460,35691900:270242 +k1,13407:9428974,35691900:270243 +k1,13407:12928175,35691900:270242 +k1,13407:14933810,35691900:270242 +k1,13407:16724487,35691900:270242 +k1,13407:18552521,35691900:270243 +k1,13407:19927045,35691900:270242 +k1,13407:20945053,35691900:270242 +k1,13407:24351849,35691900:270243 +k1,13407:25238129,35691900:270242 +k1,13407:25906830,35691900:270242 +k1,13407:26859957,35691900:270242 +k1,13407:27528659,35691900:270243 +k1,13407:31474160,35691900:270242 +k1,13407:32583029,35691900:0 +) +(1,13408:6630773,36533388:25952256,513147,138281 +k1,13407:7583789,36533388:270131 +k1,13407:9136460,36533388:270131 +k1,13407:10354242,36533388:270131 +$1,13407:10354242,36533388 +$1,13407:10856903,36533388 +k1,13407:11127035,36533388:270132 +k1,13407:12080051,36533388:270131 +$1,13407:12080051,36533388 +$1,13407:12582712,36533388 +k1,13407:12852843,36533388:270131 +k1,13407:14314419,36533388:270131 +$1,13407:14314419,36533388 +$1,13407:14866232,36533388 +k1,13407:15310033,36533388:270131 +k1,13407:19550335,36533388:270131 +k1,13407:20638355,36533388:270131 +k1,13407:22302437,36533388:270131 +k1,13407:26139038,36533388:270132 +k1,13407:26867266,36533388:270131 +k1,13407:27668894,36533388:270131 +k1,13407:30568985,36533388:270131 +k1,13407:31490544,36533388:270131 +k1,13407:32583029,36533388:0 +) +(1,13408:6630773,37374876:25952256,513147,134348 +k1,13407:9615618,37374876:222502 +k1,13407:13278105,37374876:222502 +k1,13407:14152035,37374876:222502 +k1,13407:17177512,37374876:222502 +k1,13407:19212740,37374876:222502 +k1,13407:22450553,37374876:222502 +k1,13407:23332347,37374876:222502 +k1,13407:24573934,37374876:222502 +k1,13407:25888921,37374876:222502 +k1,13407:26778579,37374876:222502 +(1,13407:26778579,37374876:0,452978,122846 +r1,13407:31709099,37374876:4930520,575824,122846 +k1,13407:26778579,37374876:-4930520 +) +(1,13407:26778579,37374876:4930520,452978,122846 +k1,13407:26778579,37374876:3277 +h1,13407:31705822,37374876:0,411205,112570 +) +k1,13407:31931601,37374876:222502 +k1,13407:32583029,37374876:0 +) +(1,13408:6630773,38216364:25952256,513147,126483 +g1,13407:8759382,38216364 +g1,13407:9860386,38216364 +g1,13407:12392041,38216364 +g1,13407:14198868,38216364 +k1,13408:32583029,38216364:16225405 +g1,13408:32583029,38216364 +) +v1,13410:6630773,39406830:0,393216,0 +(1,13415:6630773,40388104:25952256,1374490,196608 +g1,13415:6630773,40388104 +g1,13415:6630773,40388104 +g1,13415:6434165,40388104 +(1,13415:6434165,40388104:0,1374490,196608 +r1,13415:32779637,40388104:26345472,1571098,196608 +k1,13415:6434165,40388104:-26345472 +) +(1,13415:6434165,40388104:26345472,1374490,196608 +[1,13415:6630773,40388104:25952256,1177882,0 +(1,13412:6630773,39614448:25952256,404226,107478 +(1,13411:6630773,39614448:0,0,0 +g1,13411:6630773,39614448 +g1,13411:6630773,39614448 +g1,13411:6303093,39614448 +(1,13411:6303093,39614448:0,0,0 +) +g1,13411:6630773,39614448 +) +k1,13412:6630773,39614448:0 +g1,13412:11689104,39614448 +g1,13412:13902124,39614448 +g1,13412:15798998,39614448 +g1,13412:16431290,39614448 +g1,13412:18960456,39614448 +h1,13412:19276602,39614448:0,0,0 +k1,13412:32583029,39614448:13306427 +g1,13412:32583029,39614448 +) +(1,13413:6630773,40280626:25952256,404226,107478 +h1,13413:6630773,40280626:0,0,0 +g1,13413:6946919,40280626 +g1,13413:7263065,40280626 +k1,13413:7263065,40280626:0 +h1,13413:11689104,40280626:0,0,0 +k1,13413:32583028,40280626:20893924 +g1,13413:32583028,40280626 +) +] +) +g1,13415:32583029,40388104 +g1,13415:6630773,40388104 +g1,13415:6630773,40388104 +g1,13415:32583029,40388104 +g1,13415:32583029,40388104 +) +h1,13415:6630773,40584712:0,0,0 +] +(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 +) +] +h1,13425:4262630,4025873:0,0,0 +] +!14204 +}258 +Input:1902:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1903:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1904:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1905:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1906:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1907:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1908:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1909:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1910:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 +{259 +[1,13494:4262630,47279633:28320399,43253760,0 +(1,13494:4262630,4025873:0,0,0 +[1,13494:-473657,4025873:25952256,0,0 +(1,13494:-473657,-710414:25952256,0,0 +h1,13494:-473657,-710414:0,0,0 +(1,13494:-473657,-710414:0,0,0 +(1,13494:-473657,-710414:0,0,0 +g1,13494:-473657,-710414 +(1,13494:-473657,-710414:65781,0,65781 +g1,13494:-407876,-710414 +[1,13494:-407876,-644633:0,0,0 ] ) -k1,13468:-473657,-710414:-65781 +k1,13494:-473657,-710414:-65781 ) ) -k1,13468:25478599,-710414:25952256 -g1,13468:25478599,-710414 +k1,13494:25478599,-710414:25952256 +g1,13494:25478599,-710414 ) ] ) -[1,13468:6630773,47279633:25952256,43253760,0 -[1,13468:6630773,4812305:25952256,786432,0 -(1,13468:6630773,4812305:25952256,485622,11795 -(1,13468:6630773,4812305:25952256,485622,11795 -g1,13468:3078558,4812305 -[1,13468:3078558,4812305:0,0,0 -(1,13468:3078558,2439708:0,1703936,0 -k1,13468:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13468:2537886,2439708:1179648,16384,0 +[1,13494:6630773,47279633:25952256,43253760,0 +[1,13494:6630773,4812305:25952256,786432,0 +(1,13494:6630773,4812305:25952256,513147,134348 +(1,13494:6630773,4812305:25952256,513147,134348 +g1,13494:3078558,4812305 +[1,13494:3078558,4812305:0,0,0 +(1,13494:3078558,2439708:0,1703936,0 +k1,13494:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13494:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13468:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13494:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13468:3078558,4812305:0,0,0 -(1,13468:3078558,2439708:0,1703936,0 -g1,13468:29030814,2439708 -g1,13468:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13468:36151628,1915420:16384,1179648,0 +[1,13494:3078558,4812305:0,0,0 +(1,13494:3078558,2439708:0,1703936,0 +g1,13494:29030814,2439708 +g1,13494:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13494:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13468:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13494:37855564,2439708:1179648,16384,0 ) ) -k1,13468:3078556,2439708:-34777008 +k1,13494:3078556,2439708:-34777008 ) ] -[1,13468:3078558,4812305:0,0,0 -(1,13468:3078558,49800853:0,16384,2228224 -k1,13468:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13468:2537886,49800853:1179648,16384,0 +[1,13494:3078558,4812305:0,0,0 +(1,13494:3078558,49800853:0,16384,2228224 +k1,13494:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13494:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13468:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13494:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13468:3078558,4812305:0,0,0 -(1,13468:3078558,49800853:0,16384,2228224 -g1,13468:29030814,49800853 -g1,13468:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13468:36151628,51504789:16384,1179648,0 +[1,13494:3078558,4812305:0,0,0 +(1,13494:3078558,49800853:0,16384,2228224 +g1,13494:29030814,49800853 +g1,13494:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13494:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13468:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13494:37855564,49800853:1179648,16384,0 ) ) -k1,13468:3078556,49800853:-34777008 +k1,13494:3078556,49800853:-34777008 ) ] -g1,13468:6630773,4812305 -g1,13468:6630773,4812305 -g1,13468:9560887,4812305 -k1,13468:31387651,4812305:21826764 +g1,13494:6630773,4812305 +k1,13494:25712890,4812305:17886740 +g1,13494:29057847,4812305 +g1,13494:29873114,4812305 ) ) ] -[1,13468:6630773,45706769:25952256,40108032,0 -(1,13468:6630773,45706769:25952256,40108032,0 -(1,13468:6630773,45706769:0,0,0 -g1,13468:6630773,45706769 +[1,13494:6630773,45706769:25952256,40108032,0 +(1,13494:6630773,45706769:25952256,40108032,0 +(1,13494:6630773,45706769:0,0,0 +g1,13494:6630773,45706769 ) -[1,13468:6630773,45706769:25952256,40108032,0 -(1,13392:6630773,14661426:25952256,9062689,0 -k1,13392:10523651,14661426:3892878 -h1,13391:10523651,14661426:0,0,0 -(1,13391:10523651,14661426:18166500,9062689,0 -(1,13391:10523651,14661426:18167381,9062712,0 -(1,13391:10523651,14661426:18167381,9062712,0 -(1,13391:10523651,14661426:0,9062712,0 -(1,13391:10523651,14661426:0,14155776,0 -(1,13391:10523651,14661426:28377088,14155776,0 +[1,13494:6630773,45706769:25952256,40108032,0 +(1,13418:6630773,14661426:25952256,9062689,0 +k1,13418:10523651,14661426:3892878 +h1,13417:10523651,14661426:0,0,0 +(1,13417:10523651,14661426:18166500,9062689,0 +(1,13417:10523651,14661426:18167381,9062712,0 +(1,13417:10523651,14661426:18167381,9062712,0 +(1,13417:10523651,14661426:0,9062712,0 +(1,13417:10523651,14661426:0,14155776,0 +(1,13417:10523651,14661426:28377088,14155776,0 ) -k1,13391:10523651,14661426:-28377088 +k1,13417:10523651,14661426:-28377088 ) ) -g1,13391:28691032,14661426 +g1,13417:28691032,14661426 ) -) -) -g1,13392:28690151,14661426 -k1,13392:32583029,14661426:3892878 -) -(1,13400:6630773,15502914:25952256,513147,126483 -h1,13399:6630773,15502914:983040,0,0 -g1,13399:8300630,15502914 -g1,13399:13728977,15502914 -g1,13399:14769033,15502914 -g1,13399:16072544,15502914 -g1,13399:17019539,15502914 -g1,13399:18731994,15502914 -g1,13399:21258406,15502914 -g1,13399:22116927,15502914 -g1,13399:25115199,15502914 -k1,13400:32583029,15502914:5795351 -g1,13400:32583029,15502914 -) -v1,13402:6630773,16693380:0,393216,0 -(1,13407:6630773,17680946:25952256,1380782,196608 -g1,13407:6630773,17680946 -g1,13407:6630773,17680946 -g1,13407:6434165,17680946 -(1,13407:6434165,17680946:0,1380782,196608 -r1,13407:32779637,17680946:26345472,1577390,196608 -k1,13407:6434165,17680946:-26345472 -) -(1,13407:6434165,17680946:26345472,1380782,196608 -[1,13407:6630773,17680946:25952256,1184174,0 -(1,13404:6630773,16907290:25952256,410518,107478 -(1,13403:6630773,16907290:0,0,0 -g1,13403:6630773,16907290 -g1,13403:6630773,16907290 -g1,13403:6303093,16907290 -(1,13403:6303093,16907290:0,0,0 -) -g1,13403:6630773,16907290 -) -k1,13404:6630773,16907290:0 -g1,13404:11689104,16907290 -g1,13404:13902124,16907290 -g1,13404:15482853,16907290 -g1,13404:16115145,16907290 -g1,13404:18644311,16907290 -h1,13404:18960457,16907290:0,0,0 -k1,13404:32583029,16907290:13622572 -g1,13404:32583029,16907290 -) -(1,13405:6630773,17573468:25952256,404226,107478 -h1,13405:6630773,17573468:0,0,0 -g1,13405:6946919,17573468 -g1,13405:7263065,17573468 -g1,13405:13269833,17573468 -g1,13405:13902125,17573468 -h1,13405:15166708,17573468:0,0,0 -k1,13405:32583028,17573468:17416320 -g1,13405:32583028,17573468 -) -] -) -g1,13407:32583029,17680946 -g1,13407:6630773,17680946 -g1,13407:6630773,17680946 -g1,13407:32583029,17680946 -g1,13407:32583029,17680946 -) -h1,13407:6630773,17877554:0,0,0 -(1,13415:6630773,19243330:25952256,513147,134348 -h1,13414:6630773,19243330:983040,0,0 -k1,13414:10792916,19243330:163792 -k1,13414:11616001,19243330:163793 -k1,13414:12681533,19243330:163757 -k1,13414:15177751,19243330:163792 -k1,13414:16949141,19243330:163792 -k1,13414:19271690,19243330:163793 -k1,13414:20063317,19243330:163792 -k1,13414:21246194,19243330:163792 -k1,13414:22716120,19243330:163793 -k1,13414:25541329,19243330:163792 -k1,13414:26573473,19243330:163792 -k1,13414:27829751,19243330:163793 -k1,13414:29165982,19243330:163792 -k1,13415:32583029,19243330:0 -) -(1,13415:6630773,20084818:25952256,505283,126483 -k1,13414:8721913,20084818:205669 -k1,13414:10431634,20084818:205670 -k1,13414:12670885,20084818:205669 -k1,13414:16140247,20084818:205669 -(1,13414:16140247,20084818:0,452978,122846 -r1,13414:20367343,20084818:4227096,575824,122846 -k1,13414:16140247,20084818:-4227096 -) -(1,13414:16140247,20084818:4227096,452978,122846 -k1,13414:16140247,20084818:3277 -h1,13414:20364066,20084818:0,411205,112570 -) -k1,13414:20573013,20084818:205670 -k1,13414:21970127,20084818:205669 -(1,13414:21970127,20084818:0,452978,122846 -r1,13414:25493799,20084818:3523672,575824,122846 -k1,13414:21970127,20084818:-3523672 -) -(1,13414:21970127,20084818:3523672,452978,122846 -k1,13414:21970127,20084818:3277 -h1,13414:25490522,20084818:0,411205,112570 -) -k1,13414:25873138,20084818:205669 -k1,13414:26730235,20084818:205669 -k1,13414:28213202,20084818:205670 -k1,13414:29437956,20084818:205669 -k1,13415:32583029,20084818:0 -) -(1,13415:6630773,20926306:25952256,505283,134348 -k1,13414:7940812,20926306:170368 -k1,13414:8727219,20926306:170369 -k1,13414:9916672,20926306:170368 -k1,13414:14050658,20926306:170369 -k1,13414:15700174,20926306:170368 -(1,13414:15700174,20926306:0,452978,115847 -r1,13414:21685829,20926306:5985655,568825,115847 -k1,13414:15700174,20926306:-5985655 -) -(1,13414:15700174,20926306:5985655,452978,115847 -k1,13414:15700174,20926306:3277 -h1,13414:21682552,20926306:0,411205,112570 -) -k1,13414:21856197,20926306:170368 -k1,13414:22894918,20926306:170369 -k1,13414:24262629,20926306:170368 -k1,13414:24788858,20926306:170369 -k1,13414:30250603,20926306:170368 -k1,13414:32583029,20926306:0 -) -(1,13415:6630773,21767794:25952256,505283,134348 -g1,13414:8826884,21767794 -g1,13414:12835721,21767794 -g1,13414:14770343,21767794 -g1,13414:17568075,21767794 -g1,13414:18720853,21767794 -g1,13414:20316654,21767794 -(1,13414:20316654,21767794:0,414482,122846 -r1,13414:22081767,21767794:1765113,537328,122846 -k1,13414:20316654,21767794:-1765113 -) -(1,13414:20316654,21767794:1765113,414482,122846 -k1,13414:20316654,21767794:3277 -h1,13414:22078490,21767794:0,411205,112570 -) -g1,13414:22280996,21767794 -g1,13414:23131653,21767794 -g1,13414:24349967,21767794 -(1,13414:24349967,21767794:0,452978,115847 -r1,13414:26115080,21767794:1765113,568825,115847 -k1,13414:24349967,21767794:-1765113 -) -(1,13414:24349967,21767794:1765113,452978,115847 -k1,13414:24349967,21767794:3277 -h1,13414:26111803,21767794:0,411205,112570 -) -g1,13414:26314309,21767794 -k1,13415:32583029,21767794:3341883 -g1,13415:32583029,21767794 -) -v1,13417:6630773,22958260:0,393216,0 -(1,13424:6630773,25265599:25952256,2700555,196608 -g1,13424:6630773,25265599 -g1,13424:6630773,25265599 -g1,13424:6434165,25265599 -(1,13424:6434165,25265599:0,2700555,196608 -r1,13424:32779637,25265599:26345472,2897163,196608 -k1,13424:6434165,25265599:-26345472 -) -(1,13424:6434165,25265599:26345472,2700555,196608 -[1,13424:6630773,25265599:25952256,2503947,0 -(1,13419:6630773,23165878:25952256,404226,107478 -(1,13418:6630773,23165878:0,0,0 -g1,13418:6630773,23165878 -g1,13418:6630773,23165878 -g1,13418:6303093,23165878 -(1,13418:6303093,23165878:0,0,0 -) -g1,13418:6630773,23165878 -) -k1,13419:6630773,23165878:0 -g1,13419:11689104,23165878 -g1,13419:13902124,23165878 -g1,13419:14850562,23165878 -g1,13419:16747436,23165878 -g1,13419:17379728,23165878 -g1,13419:19908894,23165878 -h1,13419:20225040,23165878:0,0,0 -k1,13419:32583029,23165878:12357989 -g1,13419:32583029,23165878 -) -(1,13420:6630773,23832056:25952256,404226,107478 -h1,13420:6630773,23832056:0,0,0 -g1,13420:6946919,23832056 -g1,13420:7263065,23832056 -g1,13420:11372959,23832056 -h1,13420:11689105,23832056:0,0,0 -k1,13420:32583029,23832056:20893924 -g1,13420:32583029,23832056 -) -(1,13421:6630773,24498234:25952256,404226,107478 -h1,13421:6630773,24498234:0,0,0 -g1,13421:6946919,24498234 -g1,13421:7263065,24498234 -g1,13421:10740667,24498234 -h1,13421:11056813,24498234:0,0,0 -k1,13421:32583029,24498234:21526216 -g1,13421:32583029,24498234 -) -(1,13422:6630773,25164412:25952256,404226,101187 -h1,13422:6630773,25164412:0,0,0 -g1,13422:6946919,25164412 -g1,13422:7263065,25164412 -k1,13422:7263065,25164412:0 -h1,13422:12637541,25164412:0,0,0 -k1,13422:32583029,25164412:19945488 -g1,13422:32583029,25164412 -) -] -) -g1,13424:32583029,25265599 -g1,13424:6630773,25265599 -g1,13424:6630773,25265599 -g1,13424:32583029,25265599 -g1,13424:32583029,25265599 -) -h1,13424:6630773,25462207:0,0,0 -(1,13427:6630773,35114720:25952256,9062689,0 -k1,13427:10523651,35114720:3892878 -h1,13426:10523651,35114720:0,0,0 -(1,13426:10523651,35114720:18166500,9062689,0 -(1,13426:10523651,35114720:18167381,9062712,0 -(1,13426:10523651,35114720:18167381,9062712,0 -(1,13426:10523651,35114720:0,9062712,0 -(1,13426:10523651,35114720:0,14155776,0 -(1,13426:10523651,35114720:28377088,14155776,0 -) -k1,13426:10523651,35114720:-28377088 -) -) -g1,13426:28691032,35114720 -) -) -) -g1,13427:28690151,35114720 -k1,13427:32583029,35114720:3892878 -) -(1,13435:6630773,35956208:25952256,505283,126483 -h1,13434:6630773,35956208:983040,0,0 -k1,13434:8477911,35956208:236263 -k1,13434:9917415,35956208:236263 -k1,13434:11520759,35956208:236263 -(1,13434:11520759,35956208:0,452978,122846 -r1,13434:17506414,35956208:5985655,575824,122846 -k1,13434:11520759,35956208:-5985655 -) -(1,13434:11520759,35956208:5985655,452978,122846 -k1,13434:11520759,35956208:3277 -h1,13434:17503137,35956208:0,411205,112570 -) -k1,13434:17742677,35956208:236263 -k1,13434:18510437,35956208:236263 -k1,13434:22225351,35956208:236263 -k1,13434:23653058,35956208:236262 -k1,13434:24757673,35956208:236263 -k1,13434:26098218,35956208:236263 -k1,13434:28632829,35956208:236263 -k1,13434:29327189,35956208:236263 -k1,13434:30179490,35956208:236263 -k1,13434:31434838,35956208:236263 -k1,13434:32583029,35956208:0 -) -(1,13435:6630773,36797696:25952256,505283,7863 -g1,13434:7998509,36797696 -g1,13434:8813776,36797696 -g1,13434:10032090,36797696 -g1,13434:12201987,36797696 -k1,13435:32583030,36797696:18352048 -g1,13435:32583030,36797696 -) -v1,13437:6630773,37988162:0,393216,0 -(1,13441:6630773,38303258:25952256,708312,196608 -g1,13441:6630773,38303258 -g1,13441:6630773,38303258 -g1,13441:6434165,38303258 -(1,13441:6434165,38303258:0,708312,196608 -r1,13441:32779637,38303258:26345472,904920,196608 -k1,13441:6434165,38303258:-26345472 -) -(1,13441:6434165,38303258:26345472,708312,196608 -[1,13441:6630773,38303258:25952256,511704,0 -(1,13439:6630773,38195780:25952256,404226,107478 -(1,13438:6630773,38195780:0,0,0 -g1,13438:6630773,38195780 -g1,13438:6630773,38195780 -g1,13438:6303093,38195780 -(1,13438:6303093,38195780:0,0,0 -) -g1,13438:6630773,38195780 -) -g1,13439:6946919,38195780 -g1,13439:7263065,38195780 -k1,13439:7263065,38195780:0 -h1,13439:12637541,38195780:0,0,0 -k1,13439:32583029,38195780:19945488 -g1,13439:32583029,38195780 -) -] -) -g1,13441:32583029,38303258 -g1,13441:6630773,38303258 -g1,13441:6630773,38303258 -g1,13441:32583029,38303258 -g1,13441:32583029,38303258 -) -h1,13441:6630773,38499866:0,0,0 -(1,13445:6630773,39865642:25952256,505283,134348 -h1,13444:6630773,39865642:983040,0,0 -k1,13444:8435728,39865642:194080 -k1,13444:9648893,39865642:194080 -k1,13444:11227093,39865642:194080 -k1,13444:14082591,39865642:194081 -k1,13444:15145023,39865642:194080 -k1,13444:16616400,39865642:194080 -k1,13444:17829565,39865642:194080 -k1,13444:20246626,39865642:194080 -k1,13444:21056744,39865642:194080 -k1,13444:23953529,39865642:194080 -k1,13444:26395495,39865642:194081 -k1,13444:27781020,39865642:194080 -k1,13444:29067585,39865642:194080 -k1,13444:29617525,39865642:194080 -k1,13445:32583029,39865642:0 -) -(1,13445:6630773,40707130:25952256,505283,134348 -k1,13444:10394403,40707130:246968 -k1,13444:11660457,40707130:246969 -(1,13444:11660457,40707130:0,459977,115847 -r1,13444:13073858,40707130:1413401,575824,115847 -k1,13444:11660457,40707130:-1413401 -) -(1,13444:11660457,40707130:1413401,459977,115847 -k1,13444:11660457,40707130:3277 -h1,13444:13070581,40707130:0,411205,112570 -) -k1,13444:13320826,40707130:246968 -k1,13444:16355041,40707130:246969 -k1,13444:17793454,40707130:246968 -k1,13444:18908774,40707130:246968 -k1,13444:20552315,40707130:246969 -k1,13444:21450711,40707130:246968 -k1,13444:22155776,40707130:246968 -k1,13444:23421830,40707130:246969 -k1,13444:26180138,40707130:246968 -(1,13444:26180138,40707130:0,452978,115847 -r1,13444:27945251,40707130:1765113,568825,115847 -k1,13444:26180138,40707130:-1765113 -) -(1,13444:26180138,40707130:1765113,452978,115847 -k1,13444:26180138,40707130:3277 -h1,13444:27941974,40707130:0,411205,112570 -) -k1,13444:28365890,40707130:246969 -k1,13444:31821501,40707130:246968 -k1,13445:32583029,40707130:0 -) -(1,13445:6630773,41548618:25952256,452978,115847 -(1,13444:6630773,41548618:0,452978,115847 -r1,13444:12616428,41548618:5985655,568825,115847 -k1,13444:6630773,41548618:-5985655 -) -(1,13444:6630773,41548618:5985655,452978,115847 -k1,13444:6630773,41548618:3277 -h1,13444:12613151,41548618:0,411205,112570 -) -k1,13445:32583028,41548618:19966600 -g1,13445:32583028,41548618 -) -v1,13449:6630773,42739084:0,393216,0 -(1,13455:6630773,44386536:25952256,2040668,196608 -g1,13455:6630773,44386536 -g1,13455:6630773,44386536 -g1,13455:6434165,44386536 -(1,13455:6434165,44386536:0,2040668,196608 -r1,13455:32779637,44386536:26345472,2237276,196608 -k1,13455:6434165,44386536:-26345472 -) -(1,13455:6434165,44386536:26345472,2040668,196608 -[1,13455:6630773,44386536:25952256,1844060,0 -(1,13451:6630773,42946702:25952256,404226,107478 -(1,13450:6630773,42946702:0,0,0 -g1,13450:6630773,42946702 -g1,13450:6630773,42946702 -g1,13450:6303093,42946702 -(1,13450:6303093,42946702:0,0,0 -) -g1,13450:6630773,42946702 -) -k1,13451:6630773,42946702:0 -g1,13451:11689104,42946702 -g1,13451:13902124,42946702 -g1,13451:15166707,42946702 -h1,13451:15482853,42946702:0,0,0 -k1,13451:32583029,42946702:17100176 -g1,13451:32583029,42946702 -) -(1,13452:6630773,43612880:25952256,410518,107478 -h1,13452:6630773,43612880:0,0,0 -g1,13452:14534416,43612880 -g1,13452:15166708,43612880 -g1,13452:19592748,43612880 -g1,13452:21173477,43612880 -g1,13452:21805769,43612880 -g1,13452:25283372,43612880 -h1,13452:25599518,43612880:0,0,0 -k1,13452:32583029,43612880:6983511 -g1,13452:32583029,43612880 -) -(1,13453:6630773,44279058:25952256,410518,107478 -h1,13453:6630773,44279058:0,0,0 -g1,13453:6946919,44279058 -g1,13453:7263065,44279058 -k1,13453:7263065,44279058:0 -h1,13453:12953688,44279058:0,0,0 -k1,13453:32583028,44279058:19629340 -g1,13453:32583028,44279058 -) -] -) -g1,13455:32583029,44386536 -g1,13455:6630773,44386536 -g1,13455:6630773,44386536 -g1,13455:32583029,44386536 -g1,13455:32583029,44386536 -) -h1,13455:6630773,44583144:0,0,0 -] -(1,13468:32583029,45706769:0,0,0 -g1,13468:32583029,45706769 -) -) -] -(1,13468:6630773,47279633:25952256,0,0 -h1,13468:6630773,47279633:25952256,0,0 -) -] -h1,13468:4262630,4025873:0,0,0 -] -!16745 -}258 -Input:1914:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1915:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1916:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1917:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1918:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1919:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1920:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1921:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1922:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1923:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1924:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1925:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1926:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1927:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1928:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 -{259 -[1,13511:4262630,47279633:28320399,43253760,0 -(1,13511:4262630,4025873:0,0,0 -[1,13511:-473657,4025873:25952256,0,0 -(1,13511:-473657,-710414:25952256,0,0 -h1,13511:-473657,-710414:0,0,0 -(1,13511:-473657,-710414:0,0,0 -(1,13511:-473657,-710414:0,0,0 -g1,13511:-473657,-710414 -(1,13511:-473657,-710414:65781,0,65781 -g1,13511:-407876,-710414 -[1,13511:-407876,-644633:0,0,0 +) +) +g1,13418:28690151,14661426 +k1,13418:32583029,14661426:3892878 +) +(1,13426:6630773,15502914:25952256,513147,126483 +h1,13425:6630773,15502914:983040,0,0 +g1,13425:8300630,15502914 +g1,13425:13728977,15502914 +g1,13425:14769033,15502914 +g1,13425:16072544,15502914 +g1,13425:17019539,15502914 +g1,13425:18731994,15502914 +g1,13425:21258406,15502914 +g1,13425:22116927,15502914 +g1,13425:25115199,15502914 +k1,13426:32583029,15502914:5795351 +g1,13426:32583029,15502914 +) +v1,13428:6630773,16693380:0,393216,0 +(1,13433:6630773,17680946:25952256,1380782,196608 +g1,13433:6630773,17680946 +g1,13433:6630773,17680946 +g1,13433:6434165,17680946 +(1,13433:6434165,17680946:0,1380782,196608 +r1,13433:32779637,17680946:26345472,1577390,196608 +k1,13433:6434165,17680946:-26345472 +) +(1,13433:6434165,17680946:26345472,1380782,196608 +[1,13433:6630773,17680946:25952256,1184174,0 +(1,13430:6630773,16907290:25952256,410518,107478 +(1,13429:6630773,16907290:0,0,0 +g1,13429:6630773,16907290 +g1,13429:6630773,16907290 +g1,13429:6303093,16907290 +(1,13429:6303093,16907290:0,0,0 +) +g1,13429:6630773,16907290 +) +k1,13430:6630773,16907290:0 +g1,13430:11689104,16907290 +g1,13430:13902124,16907290 +g1,13430:15482853,16907290 +g1,13430:16115145,16907290 +g1,13430:18644311,16907290 +h1,13430:18960457,16907290:0,0,0 +k1,13430:32583029,16907290:13622572 +g1,13430:32583029,16907290 +) +(1,13431:6630773,17573468:25952256,404226,107478 +h1,13431:6630773,17573468:0,0,0 +g1,13431:6946919,17573468 +g1,13431:7263065,17573468 +g1,13431:13269833,17573468 +g1,13431:13902125,17573468 +h1,13431:15166708,17573468:0,0,0 +k1,13431:32583028,17573468:17416320 +g1,13431:32583028,17573468 +) +] +) +g1,13433:32583029,17680946 +g1,13433:6630773,17680946 +g1,13433:6630773,17680946 +g1,13433:32583029,17680946 +g1,13433:32583029,17680946 +) +h1,13433:6630773,17877554:0,0,0 +(1,13441:6630773,19243330:25952256,513147,134348 +h1,13440:6630773,19243330:983040,0,0 +k1,13440:10881593,19243330:252469 +k1,13440:11793354,19243330:252469 +k1,13440:12947544,19243330:252415 +k1,13440:15532439,19243330:252469 +k1,13440:17392506,19243330:252469 +k1,13440:19803731,19243330:252469 +k1,13440:20684035,19243330:252469 +k1,13440:21955589,19243330:252469 +k1,13440:23514191,19243330:252469 +k1,13440:26428077,19243330:252469 +k1,13440:27548898,19243330:252469 +k1,13440:28893852,19243330:252469 +k1,13440:30318760,19243330:252469 +k1,13441:32583029,19243330:0 +) +(1,13441:6630773,20084818:25952256,505283,126483 +k1,13440:8267342,20084818:255725 +k1,13440:10408539,20084818:255726 +k1,13440:12168315,20084818:255725 +k1,13440:14457622,20084818:255725 +k1,13440:17977040,20084818:255725 +(1,13440:17977040,20084818:0,452978,122846 +r1,13440:22204136,20084818:4227096,575824,122846 +k1,13440:17977040,20084818:-4227096 +) +(1,13440:17977040,20084818:4227096,452978,122846 +k1,13440:17977040,20084818:3277 +h1,13440:22200859,20084818:0,411205,112570 +) +k1,13440:22459862,20084818:255726 +k1,13440:23907032,20084818:255725 +(1,13440:23907032,20084818:0,452978,122846 +r1,13440:27430704,20084818:3523672,575824,122846 +k1,13440:23907032,20084818:-3523672 +) +(1,13440:23907032,20084818:3523672,452978,122846 +k1,13440:23907032,20084818:3277 +h1,13440:27427427,20084818:0,411205,112570 +) +k1,13440:27860099,20084818:255725 +k1,13440:28767252,20084818:255725 +k1,13440:30300275,20084818:255726 +k1,13440:31575085,20084818:255725 +k1,13441:32583029,20084818:0 +) +(1,13441:6630773,20926306:25952256,505283,134348 +k1,13440:10118571,20926306:210998 +k1,13440:10945607,20926306:210998 +k1,13440:12175690,20926306:210998 +k1,13440:16350305,20926306:210998 +k1,13440:18040450,20926306:210997 +(1,13440:18040450,20926306:0,452978,115847 +r1,13440:24026105,20926306:5985655,568825,115847 +k1,13440:18040450,20926306:-5985655 +) +(1,13440:18040450,20926306:5985655,452978,115847 +k1,13440:18040450,20926306:3277 +h1,13440:24022828,20926306:0,411205,112570 +) +k1,13440:24237103,20926306:210998 +k1,13440:25316453,20926306:210998 +k1,13440:26724794,20926306:210998 +k1,13440:27291652,20926306:210998 +k1,13440:32583029,20926306:0 +) +(1,13441:6630773,21767794:25952256,505283,134348 +g1,13440:9162428,21767794 +g1,13440:11358539,21767794 +g1,13440:15367376,21767794 +g1,13440:17301998,21767794 +g1,13440:20099730,21767794 +g1,13440:21252508,21767794 +g1,13440:22848309,21767794 +(1,13440:22848309,21767794:0,414482,122846 +r1,13440:24613422,21767794:1765113,537328,122846 +k1,13440:22848309,21767794:-1765113 +) +(1,13440:22848309,21767794:1765113,414482,122846 +k1,13440:22848309,21767794:3277 +h1,13440:24610145,21767794:0,411205,112570 +) +g1,13440:24812651,21767794 +g1,13440:25663308,21767794 +g1,13440:26881622,21767794 +(1,13440:26881622,21767794:0,452978,115847 +r1,13440:28646735,21767794:1765113,568825,115847 +k1,13440:26881622,21767794:-1765113 +) +(1,13440:26881622,21767794:1765113,452978,115847 +k1,13440:26881622,21767794:3277 +h1,13440:28643458,21767794:0,411205,112570 +) +g1,13440:28845964,21767794 +k1,13441:32583029,21767794:810228 +g1,13441:32583029,21767794 +) +v1,13443:6630773,22958260:0,393216,0 +(1,13450:6630773,25265599:25952256,2700555,196608 +g1,13450:6630773,25265599 +g1,13450:6630773,25265599 +g1,13450:6434165,25265599 +(1,13450:6434165,25265599:0,2700555,196608 +r1,13450:32779637,25265599:26345472,2897163,196608 +k1,13450:6434165,25265599:-26345472 +) +(1,13450:6434165,25265599:26345472,2700555,196608 +[1,13450:6630773,25265599:25952256,2503947,0 +(1,13445:6630773,23165878:25952256,404226,107478 +(1,13444:6630773,23165878:0,0,0 +g1,13444:6630773,23165878 +g1,13444:6630773,23165878 +g1,13444:6303093,23165878 +(1,13444:6303093,23165878:0,0,0 +) +g1,13444:6630773,23165878 +) +k1,13445:6630773,23165878:0 +g1,13445:11689104,23165878 +g1,13445:13902124,23165878 +g1,13445:14850562,23165878 +g1,13445:16747436,23165878 +g1,13445:17379728,23165878 +g1,13445:19908894,23165878 +h1,13445:20225040,23165878:0,0,0 +k1,13445:32583029,23165878:12357989 +g1,13445:32583029,23165878 +) +(1,13446:6630773,23832056:25952256,404226,107478 +h1,13446:6630773,23832056:0,0,0 +g1,13446:6946919,23832056 +g1,13446:7263065,23832056 +g1,13446:11372959,23832056 +h1,13446:11689105,23832056:0,0,0 +k1,13446:32583029,23832056:20893924 +g1,13446:32583029,23832056 +) +(1,13447:6630773,24498234:25952256,404226,107478 +h1,13447:6630773,24498234:0,0,0 +g1,13447:6946919,24498234 +g1,13447:7263065,24498234 +g1,13447:10740667,24498234 +h1,13447:11056813,24498234:0,0,0 +k1,13447:32583029,24498234:21526216 +g1,13447:32583029,24498234 +) +(1,13448:6630773,25164412:25952256,404226,101187 +h1,13448:6630773,25164412:0,0,0 +g1,13448:6946919,25164412 +g1,13448:7263065,25164412 +k1,13448:7263065,25164412:0 +h1,13448:12637541,25164412:0,0,0 +k1,13448:32583029,25164412:19945488 +g1,13448:32583029,25164412 +) +] +) +g1,13450:32583029,25265599 +g1,13450:6630773,25265599 +g1,13450:6630773,25265599 +g1,13450:32583029,25265599 +g1,13450:32583029,25265599 +) +h1,13450:6630773,25462207:0,0,0 +(1,13453:6630773,35114720:25952256,9062689,0 +k1,13453:10523651,35114720:3892878 +h1,13452:10523651,35114720:0,0,0 +(1,13452:10523651,35114720:18166500,9062689,0 +(1,13452:10523651,35114720:18167381,9062712,0 +(1,13452:10523651,35114720:18167381,9062712,0 +(1,13452:10523651,35114720:0,9062712,0 +(1,13452:10523651,35114720:0,14155776,0 +(1,13452:10523651,35114720:28377088,14155776,0 +) +k1,13452:10523651,35114720:-28377088 +) +) +g1,13452:28691032,35114720 +) +) +) +g1,13453:28690151,35114720 +k1,13453:32583029,35114720:3892878 +) +(1,13461:6630773,35956208:25952256,505283,126483 +h1,13460:6630773,35956208:983040,0,0 +k1,13460:8464552,35956208:222904 +k1,13460:9890696,35956208:222903 +k1,13460:11654351,35956208:222904 +(1,13460:11654351,35956208:0,452978,122846 +r1,13460:17640006,35956208:5985655,575824,122846 +k1,13460:11654351,35956208:-5985655 +) +(1,13460:11654351,35956208:5985655,452978,122846 +k1,13460:11654351,35956208:3277 +h1,13460:17636729,35956208:0,411205,112570 +) +k1,13460:17862910,35956208:222904 +k1,13460:18617310,35956208:222903 +k1,13460:22318865,35956208:222904 +k1,13460:23733214,35956208:222904 +k1,13460:24824470,35956208:222904 +k1,13460:26151655,35956208:222903 +k1,13460:28672907,35956208:222904 +k1,13460:29353908,35956208:222904 +k1,13460:30192849,35956208:222903 +k1,13460:31434838,35956208:222904 +k1,13460:32583029,35956208:0 +) +(1,13461:6630773,36797696:25952256,505283,7863 +g1,13460:7998509,36797696 +g1,13460:8813776,36797696 +g1,13460:10032090,36797696 +g1,13460:12201987,36797696 +k1,13461:32583030,36797696:18352048 +g1,13461:32583030,36797696 +) +v1,13463:6630773,37988162:0,393216,0 +(1,13467:6630773,38303258:25952256,708312,196608 +g1,13467:6630773,38303258 +g1,13467:6630773,38303258 +g1,13467:6434165,38303258 +(1,13467:6434165,38303258:0,708312,196608 +r1,13467:32779637,38303258:26345472,904920,196608 +k1,13467:6434165,38303258:-26345472 +) +(1,13467:6434165,38303258:26345472,708312,196608 +[1,13467:6630773,38303258:25952256,511704,0 +(1,13465:6630773,38195780:25952256,404226,107478 +(1,13464:6630773,38195780:0,0,0 +g1,13464:6630773,38195780 +g1,13464:6630773,38195780 +g1,13464:6303093,38195780 +(1,13464:6303093,38195780:0,0,0 +) +g1,13464:6630773,38195780 +) +g1,13465:6946919,38195780 +g1,13465:7263065,38195780 +k1,13465:7263065,38195780:0 +h1,13465:12637541,38195780:0,0,0 +k1,13465:32583029,38195780:19945488 +g1,13465:32583029,38195780 +) +] +) +g1,13467:32583029,38303258 +g1,13467:6630773,38303258 +g1,13467:6630773,38303258 +g1,13467:32583029,38303258 +g1,13467:32583029,38303258 +) +h1,13467:6630773,38499866:0,0,0 +(1,13471:6630773,39865642:25952256,505283,134348 +h1,13470:6630773,39865642:983040,0,0 +k1,13470:8435728,39865642:194080 +k1,13470:9648893,39865642:194080 +k1,13470:11227093,39865642:194080 +k1,13470:14082591,39865642:194081 +k1,13470:15145023,39865642:194080 +k1,13470:16616400,39865642:194080 +k1,13470:17829565,39865642:194080 +k1,13470:20246626,39865642:194080 +k1,13470:21056744,39865642:194080 +k1,13470:23953529,39865642:194080 +k1,13470:26395495,39865642:194081 +k1,13470:27781020,39865642:194080 +k1,13470:29067585,39865642:194080 +k1,13470:29617525,39865642:194080 +k1,13471:32583029,39865642:0 +) +(1,13471:6630773,40707130:25952256,505283,134348 +k1,13470:10394403,40707130:246968 +k1,13470:11660457,40707130:246969 +(1,13470:11660457,40707130:0,459977,115847 +r1,13470:13073858,40707130:1413401,575824,115847 +k1,13470:11660457,40707130:-1413401 +) +(1,13470:11660457,40707130:1413401,459977,115847 +k1,13470:11660457,40707130:3277 +h1,13470:13070581,40707130:0,411205,112570 +) +k1,13470:13320826,40707130:246968 +k1,13470:16355041,40707130:246969 +k1,13470:17793454,40707130:246968 +k1,13470:18908774,40707130:246968 +k1,13470:20552315,40707130:246969 +k1,13470:21450711,40707130:246968 +k1,13470:22155776,40707130:246968 +k1,13470:23421830,40707130:246969 +k1,13470:26180138,40707130:246968 +(1,13470:26180138,40707130:0,452978,115847 +r1,13470:27945251,40707130:1765113,568825,115847 +k1,13470:26180138,40707130:-1765113 +) +(1,13470:26180138,40707130:1765113,452978,115847 +k1,13470:26180138,40707130:3277 +h1,13470:27941974,40707130:0,411205,112570 +) +k1,13470:28365890,40707130:246969 +k1,13470:31821501,40707130:246968 +k1,13471:32583029,40707130:0 +) +(1,13471:6630773,41548618:25952256,452978,115847 +(1,13470:6630773,41548618:0,452978,115847 +r1,13470:12616428,41548618:5985655,568825,115847 +k1,13470:6630773,41548618:-5985655 +) +(1,13470:6630773,41548618:5985655,452978,115847 +k1,13470:6630773,41548618:3277 +h1,13470:12613151,41548618:0,411205,112570 +) +k1,13471:32583028,41548618:19966600 +g1,13471:32583028,41548618 +) +v1,13475:6630773,42739084:0,393216,0 +(1,13481:6630773,44386536:25952256,2040668,196608 +g1,13481:6630773,44386536 +g1,13481:6630773,44386536 +g1,13481:6434165,44386536 +(1,13481:6434165,44386536:0,2040668,196608 +r1,13481:32779637,44386536:26345472,2237276,196608 +k1,13481:6434165,44386536:-26345472 +) +(1,13481:6434165,44386536:26345472,2040668,196608 +[1,13481:6630773,44386536:25952256,1844060,0 +(1,13477:6630773,42946702:25952256,404226,107478 +(1,13476:6630773,42946702:0,0,0 +g1,13476:6630773,42946702 +g1,13476:6630773,42946702 +g1,13476:6303093,42946702 +(1,13476:6303093,42946702:0,0,0 +) +g1,13476:6630773,42946702 +) +k1,13477:6630773,42946702:0 +g1,13477:11689104,42946702 +g1,13477:13902124,42946702 +g1,13477:15166707,42946702 +h1,13477:15482853,42946702:0,0,0 +k1,13477:32583029,42946702:17100176 +g1,13477:32583029,42946702 +) +(1,13478:6630773,43612880:25952256,410518,107478 +h1,13478:6630773,43612880:0,0,0 +g1,13478:14534416,43612880 +g1,13478:15166708,43612880 +g1,13478:19592748,43612880 +g1,13478:21173477,43612880 +g1,13478:21805769,43612880 +g1,13478:25283372,43612880 +h1,13478:25599518,43612880:0,0,0 +k1,13478:32583029,43612880:6983511 +g1,13478:32583029,43612880 +) +(1,13479:6630773,44279058:25952256,410518,107478 +h1,13479:6630773,44279058:0,0,0 +g1,13479:6946919,44279058 +g1,13479:7263065,44279058 +k1,13479:7263065,44279058:0 +h1,13479:12953688,44279058:0,0,0 +k1,13479:32583028,44279058:19629340 +g1,13479:32583028,44279058 +) +] +) +g1,13481:32583029,44386536 +g1,13481:6630773,44386536 +g1,13481:6630773,44386536 +g1,13481:32583029,44386536 +g1,13481:32583029,44386536 +) +h1,13481:6630773,44583144:0,0,0 +] +(1,13494:32583029,45706769:0,0,0 +g1,13494:32583029,45706769 +) +) +] +(1,13494:6630773,47279633:25952256,0,0 +h1,13494:6630773,47279633:25952256,0,0 +) +] +h1,13494:4262630,4025873:0,0,0 +] +!16778 +}259 +Input:1911:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1912:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1913:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1914:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1915:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1916:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1917:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1918:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1919:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1920:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1921:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1922:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1923:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1924:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1925:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 +{260 +[1,13537:4262630,47279633:28320399,43253760,0 +(1,13537:4262630,4025873:0,0,0 +[1,13537:-473657,4025873:25952256,0,0 +(1,13537:-473657,-710414:25952256,0,0 +h1,13537:-473657,-710414:0,0,0 +(1,13537:-473657,-710414:0,0,0 +(1,13537:-473657,-710414:0,0,0 +g1,13537:-473657,-710414 +(1,13537:-473657,-710414:65781,0,65781 +g1,13537:-407876,-710414 +[1,13537:-407876,-644633:0,0,0 ] ) -k1,13511:-473657,-710414:-65781 +k1,13537:-473657,-710414:-65781 ) ) -k1,13511:25478599,-710414:25952256 -g1,13511:25478599,-710414 +k1,13537:25478599,-710414:25952256 +g1,13537:25478599,-710414 ) ] ) -[1,13511:6630773,47279633:25952256,43253760,0 -[1,13511:6630773,4812305:25952256,786432,0 -(1,13511:6630773,4812305:25952256,513147,134348 -(1,13511:6630773,4812305:25952256,513147,134348 -g1,13511:3078558,4812305 -[1,13511:3078558,4812305:0,0,0 -(1,13511:3078558,2439708:0,1703936,0 -k1,13511:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13511:2537886,2439708:1179648,16384,0 +[1,13537:6630773,47279633:25952256,43253760,0 +[1,13537:6630773,4812305:25952256,786432,0 +(1,13537:6630773,4812305:25952256,485622,11795 +(1,13537:6630773,4812305:25952256,485622,11795 +g1,13537:3078558,4812305 +[1,13537:3078558,4812305:0,0,0 +(1,13537:3078558,2439708:0,1703936,0 +k1,13537:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13537:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13511:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13537:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13511:3078558,4812305:0,0,0 -(1,13511:3078558,2439708:0,1703936,0 -g1,13511:29030814,2439708 -g1,13511:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13511:36151628,1915420:16384,1179648,0 +[1,13537:3078558,4812305:0,0,0 +(1,13537:3078558,2439708:0,1703936,0 +g1,13537:29030814,2439708 +g1,13537:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13537:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13511:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13537:37855564,2439708:1179648,16384,0 ) ) -k1,13511:3078556,2439708:-34777008 +k1,13537:3078556,2439708:-34777008 ) ] -[1,13511:3078558,4812305:0,0,0 -(1,13511:3078558,49800853:0,16384,2228224 -k1,13511:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13511:2537886,49800853:1179648,16384,0 +[1,13537:3078558,4812305:0,0,0 +(1,13537:3078558,49800853:0,16384,2228224 +k1,13537:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13537:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13511:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13537:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13511:3078558,4812305:0,0,0 -(1,13511:3078558,49800853:0,16384,2228224 -g1,13511:29030814,49800853 -g1,13511:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13511:36151628,51504789:16384,1179648,0 +[1,13537:3078558,4812305:0,0,0 +(1,13537:3078558,49800853:0,16384,2228224 +g1,13537:29030814,49800853 +g1,13537:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13537:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13511:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13537:37855564,49800853:1179648,16384,0 ) ) -k1,13511:3078556,49800853:-34777008 +k1,13537:3078556,49800853:-34777008 ) ] -g1,13511:6630773,4812305 -k1,13511:25712890,4812305:17886740 -g1,13511:29057847,4812305 -g1,13511:29873114,4812305 +g1,13537:6630773,4812305 +g1,13537:6630773,4812305 +g1,13537:9560887,4812305 +k1,13537:31387651,4812305:21826764 ) ) ] -[1,13511:6630773,45706769:25952256,40108032,0 -(1,13511:6630773,45706769:25952256,40108032,0 -(1,13511:6630773,45706769:0,0,0 -g1,13511:6630773,45706769 +[1,13537:6630773,45706769:25952256,40108032,0 +(1,13537:6630773,45706769:25952256,40108032,0 +(1,13537:6630773,45706769:0,0,0 +g1,13537:6630773,45706769 ) -[1,13511:6630773,45706769:25952256,40108032,0 -(1,13458:6630773,14661426:25952256,9062689,0 -k1,13458:10523651,14661426:3892878 -h1,13457:10523651,14661426:0,0,0 -(1,13457:10523651,14661426:18166500,9062689,0 -(1,13457:10523651,14661426:18167381,9062712,0 -(1,13457:10523651,14661426:18167381,9062712,0 -(1,13457:10523651,14661426:0,9062712,0 -(1,13457:10523651,14661426:0,14155776,0 -(1,13457:10523651,14661426:28377088,14155776,0 +[1,13537:6630773,45706769:25952256,40108032,0 +(1,13484:6630773,14661426:25952256,9062689,0 +k1,13484:10523651,14661426:3892878 +h1,13483:10523651,14661426:0,0,0 +(1,13483:10523651,14661426:18166500,9062689,0 +(1,13483:10523651,14661426:18167381,9062712,0 +(1,13483:10523651,14661426:18167381,9062712,0 +(1,13483:10523651,14661426:0,9062712,0 +(1,13483:10523651,14661426:0,14155776,0 +(1,13483:10523651,14661426:28377088,14155776,0 ) -k1,13457:10523651,14661426:-28377088 +k1,13483:10523651,14661426:-28377088 ) ) -g1,13457:28691032,14661426 -) -) -) -g1,13458:28690151,14661426 -k1,13458:32583029,14661426:3892878 -) -(1,13468:6630773,16752686:25952256,555811,139132 -(1,13468:6630773,16752686:2450326,534184,12975 -g1,13468:6630773,16752686 -g1,13468:9081099,16752686 -) -g1,13468:10649769,16752686 -g1,13468:12216997,16752686 -g1,13468:15747225,16752686 -k1,13468:32583029,16752686:15028518 -g1,13468:32583029,16752686 -) -(1,13473:6630773,17987390:25952256,513147,134348 -k1,13472:8032286,17987390:242836 -k1,13472:9466567,17987390:242836 -k1,13472:12535315,17987390:242836 -k1,13472:14559420,17987390:242836 -k1,13472:16088072,17987390:242836 -k1,13472:17684882,17987390:242836 -k1,13472:21232698,17987390:242835 -k1,13472:23343310,17987390:242836 -k1,13472:24814946,17987390:242836 -k1,13472:26217769,17987390:242836 -k1,13472:28241874,17987390:242836 -k1,13472:29476270,17987390:242836 -k1,13472:31004922,17987390:242836 -k1,13473:32583029,17987390:0 -) -(1,13473:6630773,18828878:25952256,513147,126483 -k1,13472:9015573,18828878:241773 -k1,13472:10541852,18828878:241773 -k1,13472:12992188,18828878:241773 -k1,13472:14926101,18828878:241773 -k1,13472:15827166,18828878:241773 -k1,13472:17088025,18828878:241774 -k1,13472:20625604,18828878:241773 -k1,13472:21526669,18828878:241773 -k1,13472:22124302,18828878:241773 -k1,13472:26321173,18828878:241773 -k1,13472:28120737,18828878:241773 -k1,13472:29354070,18828878:241773 -k1,13472:32583029,18828878:0 -) -(1,13473:6630773,19670366:25952256,513147,134348 -k1,13472:7974343,19670366:152125 -k1,13472:10428749,19670366:152126 -k1,13472:11342402,19670366:152125 -k1,13472:13562843,19670366:152125 -k1,13472:14382124,19670366:152125 -(1,13472:14382124,19670366:0,452978,115847 -r1,13472:19312644,19670366:4930520,568825,115847 -k1,13472:14382124,19670366:-4930520 -) -(1,13472:14382124,19670366:4930520,452978,115847 -k1,13472:14382124,19670366:3277 -h1,13472:19309367,19670366:0,411205,112570 -) -k1,13472:19464770,19670366:152126 -k1,13472:20299780,19670366:152125 -k1,13472:21240303,19670366:152125 -k1,13472:24363831,19670366:152126 -(1,13472:24363831,19670366:0,452978,122846 -r1,13472:29294351,19670366:4930520,575824,122846 -k1,13472:24363831,19670366:-4930520 -) -(1,13472:24363831,19670366:4930520,452978,122846 -k1,13472:24363831,19670366:3277 -h1,13472:29291074,19670366:0,411205,112570 -) -k1,13472:29620146,19670366:152125 -k1,13472:32583029,19670366:0 -) -(1,13473:6630773,20511854:25952256,513147,134348 -k1,13472:8220395,20511854:209434 -k1,13472:9534111,20511854:209434 -k1,13472:10491311,20511854:209434 -k1,13472:13929705,20511854:209435 -k1,13472:15330584,20511854:209434 -k1,13472:17842298,20511854:209434 -k1,13472:19906401,20511854:209434 -k1,13472:20925205,20511854:209434 -k1,13472:22363439,20511854:209434 -k1,13472:22928733,20511854:209434 -k1,13472:24271286,20511854:209435 -k1,13472:28726142,20511854:209434 -k1,13472:30315764,20511854:209434 -k1,13472:31516758,20511854:209434 -k1,13472:32583029,20511854:0 -) -(1,13473:6630773,21353342:25952256,513147,126483 -g1,13472:8807223,21353342 -g1,13472:11049209,21353342 -g1,13472:12700060,21353342 -g1,13472:14059276,21353342 -g1,13472:15535802,21353342 -g1,13472:16266528,21353342 -g1,13472:18320426,21353342 -g1,13472:19329025,21353342 -g1,13472:21178451,21353342 -g1,13472:22820127,21353342 -g1,13472:23816274,21353342 -g1,13472:24666931,21353342 -g1,13472:25663078,21353342 -k1,13473:32583029,21353342:2674529 -g1,13473:32583029,21353342 -) -v1,13475:6630773,22543808:0,393216,0 -(1,13480:6630773,23518791:25952256,1368199,196608 -g1,13480:6630773,23518791 -g1,13480:6630773,23518791 -g1,13480:6434165,23518791 -(1,13480:6434165,23518791:0,1368199,196608 -r1,13480:32779637,23518791:26345472,1564807,196608 -k1,13480:6434165,23518791:-26345472 -) -(1,13480:6434165,23518791:26345472,1368199,196608 -[1,13480:6630773,23518791:25952256,1171591,0 -(1,13477:6630773,22751426:25952256,404226,107478 -(1,13476:6630773,22751426:0,0,0 -g1,13476:6630773,22751426 -g1,13476:6630773,22751426 -g1,13476:6303093,22751426 -(1,13476:6303093,22751426:0,0,0 -) -g1,13476:6630773,22751426 -) -k1,13477:6630773,22751426:0 -g1,13477:11689104,22751426 -g1,13477:15166707,22751426 -g1,13477:16431290,22751426 -h1,13477:16747436,22751426:0,0,0 -k1,13477:32583029,22751426:15835593 -g1,13477:32583029,22751426 -) -(1,13478:6630773,23417604:25952256,404226,101187 -h1,13478:6630773,23417604:0,0,0 -g1,13478:6946919,23417604 -g1,13478:7263065,23417604 -k1,13478:7263065,23417604:0 -h1,13478:11689104,23417604:0,0,0 -k1,13478:32583028,23417604:20893924 -g1,13478:32583028,23417604 -) -] -) -g1,13480:32583029,23518791 -g1,13480:6630773,23518791 -g1,13480:6630773,23518791 -g1,13480:32583029,23518791 -g1,13480:32583029,23518791 -) -h1,13480:6630773,23715399:0,0,0 -(1,13483:6630773,34779901:25952256,10474678,0 -k1,13483:12599879,34779901:5969106 -h1,13482:12599879,34779901:0,0,0 -(1,13482:12599879,34779901:14014044,10474678,0 -(1,13482:12599879,34779901:14014766,10474704,0 -(1,13482:12599879,34779901:14014766,10474704,0 -(1,13482:12599879,34779901:0,10474704,0 -(1,13482:12599879,34779901:0,14155776,0 -(1,13482:12599879,34779901:18939904,14155776,0 -) -k1,13482:12599879,34779901:-18939904 -) -) -g1,13482:26614645,34779901 -) -) -) -g1,13483:26613923,34779901 -k1,13483:32583029,34779901:5969106 -) -(1,13491:6630773,35621389:25952256,505283,126483 -h1,13490:6630773,35621389:983040,0,0 -k1,13490:8580742,35621389:149040 -k1,13490:10123732,35621389:149039 -k1,13490:11974742,35621389:149040 -k1,13490:14956903,35621389:149040 -k1,13490:16614581,35621389:149039 -k1,13490:20404146,35621389:149040 -k1,13490:22386883,35621389:149040 -k1,13490:24002618,35621389:149039 -k1,13490:25170743,35621389:149040 -k1,13490:27040758,35621389:149040 -k1,13490:30254261,35621389:149039 -k1,13490:31896867,35621389:149040 -k1,13491:32583029,35621389:0 -) -(1,13491:6630773,36462877:25952256,513147,126483 -(1,13490:6630773,36462877:0,452978,115847 -r1,13490:8395886,36462877:1765113,568825,115847 -k1,13490:6630773,36462877:-1765113 -) -(1,13490:6630773,36462877:1765113,452978,115847 -k1,13490:6630773,36462877:3277 -h1,13490:8392609,36462877:0,411205,112570 -) -k1,13490:8715370,36462877:145814 -k1,13490:10052629,36462877:145814 -k1,13490:13809477,36462877:145814 -k1,13490:16352598,36462877:145814 -k1,13490:17149840,36462877:145814 -k1,13490:18498895,36462877:145814 -k1,13490:20030795,36462877:145814 -k1,13490:20835901,36462877:145814 -k1,13490:22846214,36462877:145814 -k1,13490:27830551,36462877:145814 -(1,13490:27830551,36462877:0,452978,115847 -r1,13490:32409359,36462877:4578808,568825,115847 -k1,13490:27830551,36462877:-4578808 -) -(1,13490:27830551,36462877:4578808,452978,115847 -k1,13490:27830551,36462877:3277 -h1,13490:32406082,36462877:0,411205,112570 -) -k1,13491:32583029,36462877:0 -) -(1,13491:6630773,37304365:25952256,505283,115847 -(1,13490:6630773,37304365:0,452978,115847 -r1,13490:11209581,37304365:4578808,568825,115847 -k1,13490:6630773,37304365:-4578808 -) -(1,13490:6630773,37304365:4578808,452978,115847 -k1,13490:6630773,37304365:3277 -h1,13490:11206304,37304365:0,411205,112570 -) -k1,13490:11688012,37304365:304761 -(1,13490:11688012,37304365:0,459977,115847 -r1,13490:15915108,37304365:4227096,575824,115847 -k1,13490:11688012,37304365:-4227096 -) -(1,13490:11688012,37304365:4227096,459977,115847 -k1,13490:11688012,37304365:3277 -h1,13490:15911831,37304365:0,411205,112570 -) -k1,13490:16393538,37304365:304760 -(1,13490:16393538,37304365:0,452978,115847 -r1,13490:20972346,37304365:4578808,568825,115847 -k1,13490:16393538,37304365:-4578808 -) -(1,13490:16393538,37304365:4578808,452978,115847 -k1,13490:16393538,37304365:3277 -h1,13490:20969069,37304365:0,411205,112570 -) -k1,13490:21450777,37304365:304761 -(1,13490:21450777,37304365:0,452978,115847 -r1,13490:25677873,37304365:4227096,568825,115847 -k1,13490:21450777,37304365:-4227096 -) -(1,13490:21450777,37304365:4227096,452978,115847 -k1,13490:21450777,37304365:3277 -h1,13490:25674596,37304365:0,411205,112570 -) -k1,13490:26156303,37304365:304760 -(1,13490:26156303,37304365:0,452978,115847 -r1,13490:31086823,37304365:4930520,568825,115847 -k1,13490:26156303,37304365:-4930520 -) -(1,13490:26156303,37304365:4930520,452978,115847 -k1,13490:26156303,37304365:3277 -h1,13490:31083546,37304365:0,411205,112570 -) -k1,13490:31391584,37304365:304761 -k1,13491:32583029,37304365:0 -) -(1,13491:6630773,38145853:25952256,513147,126483 -(1,13490:6630773,38145853:0,452978,115847 -r1,13490:11209581,38145853:4578808,568825,115847 -k1,13490:6630773,38145853:-4578808 -) -(1,13490:6630773,38145853:4578808,452978,115847 -k1,13490:6630773,38145853:3277 -h1,13490:11206304,38145853:0,411205,112570 -) -k1,13490:11809610,38145853:426359 -k1,13490:14121440,38145853:426359 -k1,13490:16327101,38145853:426359 -k1,13490:17772545,38145853:426359 -k1,13490:20637499,38145853:426359 -k1,13490:21679896,38145853:426359 -k1,13490:22462114,38145853:426358 -k1,13490:24126448,38145853:426359 -k1,13490:26754817,38145853:426359 -k1,13490:27832604,38145853:426359 -k1,13490:29278048,38145853:426359 -k1,13491:32583029,38145853:0 -) -(1,13491:6630773,38987341:25952256,513147,134348 -(1,13490:6630773,38987341:0,452978,115847 -r1,13490:9802733,38987341:3171960,568825,115847 -k1,13490:6630773,38987341:-3171960 -) -(1,13490:6630773,38987341:3171960,452978,115847 -k1,13490:6630773,38987341:3277 -h1,13490:9799456,38987341:0,411205,112570 -) -k1,13490:9974535,38987341:171802 -k1,13490:10762375,38987341:171802 -(1,13490:10762375,38987341:0,452978,122846 -r1,13490:14989471,38987341:4227096,575824,122846 -k1,13490:10762375,38987341:-4227096 -) -(1,13490:10762375,38987341:4227096,452978,122846 -k1,13490:10762375,38987341:3277 -h1,13490:14986194,38987341:0,411205,112570 -) -k1,13490:15334943,38987341:171802 -k1,13490:16703431,38987341:171801 -k1,13490:18744320,38987341:171802 -k1,13490:20107567,38987341:171802 -k1,13490:22094061,38987341:171802 -k1,13490:22925155,38987341:171802 -k1,13490:24116042,38987341:171802 -k1,13490:26048140,38987341:171801 -k1,13490:27324224,38987341:171802 -k1,13490:28243792,38987341:171802 -k1,13490:31189078,38987341:171802 -k1,13491:32583029,38987341:0 -) -(1,13491:6630773,39828829:25952256,513147,126483 -(1,13490:6630773,39828829:0,452978,115847 -r1,13490:8395886,39828829:1765113,568825,115847 -k1,13490:6630773,39828829:-1765113 -) -(1,13490:6630773,39828829:1765113,452978,115847 -k1,13490:6630773,39828829:3277 -h1,13490:8392609,39828829:0,411205,112570 -) -k1,13490:8750566,39828829:181010 -(1,13490:8750566,39828829:0,452978,115847 -r1,13490:12274238,39828829:3523672,568825,115847 -k1,13490:8750566,39828829:-3523672 -) -(1,13490:8750566,39828829:3523672,452978,115847 -k1,13490:8750566,39828829:3277 -h1,13490:12270961,39828829:0,411205,112570 -) -k1,13490:12455248,39828829:181010 -k1,13490:13827703,39828829:181010 -(1,13490:13827703,39828829:0,452978,115847 -r1,13490:16647952,39828829:2820249,568825,115847 -k1,13490:13827703,39828829:-2820249 -) -(1,13490:13827703,39828829:2820249,452978,115847 -k1,13490:13827703,39828829:3277 -h1,13490:16644675,39828829:0,411205,112570 -) -k1,13490:17002633,39828829:181011 -k1,13490:19753310,39828829:181010 -k1,13490:20550358,39828829:181010 -k1,13490:21087228,39828829:181010 -k1,13490:23705522,39828829:181010 -k1,13490:25557045,39828829:181010 -k1,13490:26093916,39828829:181011 -k1,13490:28476936,39828829:181010 -k1,13490:29893300,39828829:181010 -k1,13490:31021961,39828829:181010 -k1,13491:32583029,39828829:0 -) -(1,13491:6630773,40670317:25952256,513147,134348 -g1,13490:8885211,40670317 -g1,13490:11774693,40670317 -g1,13490:12660084,40670317 -g1,13490:16296676,40670317 -g1,13490:18310597,40670317 -g1,13490:20180339,40670317 -g1,13490:22077606,40670317 -g1,13490:25680120,40670317 -k1,13491:32583029,40670317:4660922 -g1,13491:32583029,40670317 -) -v1,13493:6630773,41860783:0,393216,0 -(1,13499:6630773,43501944:25952256,2034377,196608 -g1,13499:6630773,43501944 -g1,13499:6630773,43501944 -g1,13499:6434165,43501944 -(1,13499:6434165,43501944:0,2034377,196608 -r1,13499:32779637,43501944:26345472,2230985,196608 -k1,13499:6434165,43501944:-26345472 -) -(1,13499:6434165,43501944:26345472,2034377,196608 -[1,13499:6630773,43501944:25952256,1837769,0 -(1,13495:6630773,42068401:25952256,404226,107478 -(1,13494:6630773,42068401:0,0,0 -g1,13494:6630773,42068401 -g1,13494:6630773,42068401 -g1,13494:6303093,42068401 -(1,13494:6303093,42068401:0,0,0 -) -g1,13494:6630773,42068401 -) -k1,13495:6630773,42068401:0 -g1,13495:11689104,42068401 -g1,13495:15166707,42068401 -g1,13495:16431290,42068401 -h1,13495:16747436,42068401:0,0,0 -k1,13495:32583029,42068401:15835593 -g1,13495:32583029,42068401 -) -(1,13496:6630773,42734579:25952256,404226,101187 -h1,13496:6630773,42734579:0,0,0 -g1,13496:6946919,42734579 -g1,13496:7263065,42734579 -g1,13496:13269833,42734579 -g1,13496:13902125,42734579 -g1,13496:15799000,42734579 -g1,13496:17695874,42734579 -g1,13496:18328166,42734579 -k1,13496:18328166,42734579:0 -h1,13496:19592749,42734579:0,0,0 -k1,13496:32583029,42734579:12990280 -g1,13496:32583029,42734579 -) -(1,13497:6630773,43400757:25952256,404226,101187 -h1,13497:6630773,43400757:0,0,0 -g1,13497:6946919,43400757 -g1,13497:7263065,43400757 -g1,13497:7579211,43400757 -g1,13497:7895357,43400757 -g1,13497:8211503,43400757 -g1,13497:8527649,43400757 -g1,13497:8843795,43400757 -g1,13497:9159941,43400757 -g1,13497:9476087,43400757 -g1,13497:9792233,43400757 -g1,13497:10108379,43400757 -g1,13497:10424525,43400757 -g1,13497:10740671,43400757 -g1,13497:11056817,43400757 -g1,13497:11372963,43400757 -g1,13497:15799003,43400757 -g1,13497:16431295,43400757 -g1,13497:18644315,43400757 -g1,13497:23070355,43400757 -g1,13497:23702647,43400757 -g1,13497:25283376,43400757 -g1,13497:29393270,43400757 -g1,13497:30025562,43400757 -h1,13497:30657854,43400757:0,0,0 -k1,13497:32583029,43400757:1925175 -g1,13497:32583029,43400757 -) -] -) -g1,13499:32583029,43501944 -g1,13499:6630773,43501944 -g1,13499:6630773,43501944 -g1,13499:32583029,43501944 -g1,13499:32583029,43501944 -) -h1,13499:6630773,43698552:0,0,0 -] -(1,13511:32583029,45706769:0,0,0 -g1,13511:32583029,45706769 -) -) -] -(1,13511:6630773,47279633:25952256,0,0 -h1,13511:6630773,47279633:25952256,0,0 -) -] -h1,13511:4262630,4025873:0,0,0 -] -!17551 -}259 -Input:1929:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 -{260 -[1,13548:4262630,47279633:28320399,43253760,0 -(1,13548:4262630,4025873:0,0,0 -[1,13548:-473657,4025873:25952256,0,0 -(1,13548:-473657,-710414:25952256,0,0 -h1,13548:-473657,-710414:0,0,0 -(1,13548:-473657,-710414:0,0,0 -(1,13548:-473657,-710414:0,0,0 -g1,13548:-473657,-710414 -(1,13548:-473657,-710414:65781,0,65781 -g1,13548:-407876,-710414 -[1,13548:-407876,-644633:0,0,0 +g1,13483:28691032,14661426 +) +) +) +g1,13484:28690151,14661426 +k1,13484:32583029,14661426:3892878 +) +(1,13494:6630773,16752686:25952256,555811,139132 +(1,13494:6630773,16752686:2450326,534184,12975 +g1,13494:6630773,16752686 +g1,13494:9081099,16752686 +) +g1,13494:10649769,16752686 +g1,13494:12216997,16752686 +g1,13494:15747225,16752686 +k1,13494:32583029,16752686:15028518 +g1,13494:32583029,16752686 +) +(1,13499:6630773,17987390:25952256,513147,134348 +k1,13498:8032286,17987390:242836 +k1,13498:9466567,17987390:242836 +k1,13498:12535315,17987390:242836 +k1,13498:14559420,17987390:242836 +k1,13498:16088072,17987390:242836 +k1,13498:17684882,17987390:242836 +k1,13498:21232698,17987390:242835 +k1,13498:23343310,17987390:242836 +k1,13498:24814946,17987390:242836 +k1,13498:26217769,17987390:242836 +k1,13498:28241874,17987390:242836 +k1,13498:29476270,17987390:242836 +k1,13498:31004922,17987390:242836 +k1,13499:32583029,17987390:0 +) +(1,13499:6630773,18828878:25952256,513147,126483 +k1,13498:9015573,18828878:241773 +k1,13498:10541852,18828878:241773 +k1,13498:12992188,18828878:241773 +k1,13498:14926101,18828878:241773 +k1,13498:15827166,18828878:241773 +k1,13498:17088025,18828878:241774 +k1,13498:20625604,18828878:241773 +k1,13498:21526669,18828878:241773 +k1,13498:22124302,18828878:241773 +k1,13498:26321173,18828878:241773 +k1,13498:28120737,18828878:241773 +k1,13498:29354070,18828878:241773 +k1,13498:32583029,18828878:0 +) +(1,13499:6630773,19670366:25952256,513147,134348 +k1,13498:7974343,19670366:152125 +k1,13498:10428749,19670366:152126 +k1,13498:11342402,19670366:152125 +k1,13498:13562843,19670366:152125 +k1,13498:14382124,19670366:152125 +(1,13498:14382124,19670366:0,452978,115847 +r1,13498:19312644,19670366:4930520,568825,115847 +k1,13498:14382124,19670366:-4930520 +) +(1,13498:14382124,19670366:4930520,452978,115847 +k1,13498:14382124,19670366:3277 +h1,13498:19309367,19670366:0,411205,112570 +) +k1,13498:19464770,19670366:152126 +k1,13498:20299780,19670366:152125 +k1,13498:21240303,19670366:152125 +k1,13498:24363831,19670366:152126 +(1,13498:24363831,19670366:0,452978,122846 +r1,13498:29294351,19670366:4930520,575824,122846 +k1,13498:24363831,19670366:-4930520 +) +(1,13498:24363831,19670366:4930520,452978,122846 +k1,13498:24363831,19670366:3277 +h1,13498:29291074,19670366:0,411205,112570 +) +k1,13498:29620146,19670366:152125 +k1,13498:32583029,19670366:0 +) +(1,13499:6630773,20511854:25952256,513147,134348 +k1,13498:8220395,20511854:209434 +k1,13498:9534111,20511854:209434 +k1,13498:10491311,20511854:209434 +k1,13498:13929705,20511854:209435 +k1,13498:15330584,20511854:209434 +k1,13498:17842298,20511854:209434 +k1,13498:19906401,20511854:209434 +k1,13498:20925205,20511854:209434 +k1,13498:22363439,20511854:209434 +k1,13498:22928733,20511854:209434 +k1,13498:24271286,20511854:209435 +k1,13498:28726142,20511854:209434 +k1,13498:30315764,20511854:209434 +k1,13498:31516758,20511854:209434 +k1,13498:32583029,20511854:0 +) +(1,13499:6630773,21353342:25952256,513147,126483 +g1,13498:8807223,21353342 +g1,13498:11049209,21353342 +g1,13498:12700060,21353342 +g1,13498:14059276,21353342 +g1,13498:15535802,21353342 +g1,13498:16266528,21353342 +g1,13498:18320426,21353342 +g1,13498:19329025,21353342 +g1,13498:21178451,21353342 +g1,13498:22820127,21353342 +g1,13498:23816274,21353342 +g1,13498:24666931,21353342 +g1,13498:25663078,21353342 +k1,13499:32583029,21353342:2674529 +g1,13499:32583029,21353342 +) +v1,13501:6630773,22543808:0,393216,0 +(1,13506:6630773,23518791:25952256,1368199,196608 +g1,13506:6630773,23518791 +g1,13506:6630773,23518791 +g1,13506:6434165,23518791 +(1,13506:6434165,23518791:0,1368199,196608 +r1,13506:32779637,23518791:26345472,1564807,196608 +k1,13506:6434165,23518791:-26345472 +) +(1,13506:6434165,23518791:26345472,1368199,196608 +[1,13506:6630773,23518791:25952256,1171591,0 +(1,13503:6630773,22751426:25952256,404226,107478 +(1,13502:6630773,22751426:0,0,0 +g1,13502:6630773,22751426 +g1,13502:6630773,22751426 +g1,13502:6303093,22751426 +(1,13502:6303093,22751426:0,0,0 +) +g1,13502:6630773,22751426 +) +k1,13503:6630773,22751426:0 +g1,13503:11689104,22751426 +g1,13503:15166707,22751426 +g1,13503:16431290,22751426 +h1,13503:16747436,22751426:0,0,0 +k1,13503:32583029,22751426:15835593 +g1,13503:32583029,22751426 +) +(1,13504:6630773,23417604:25952256,404226,101187 +h1,13504:6630773,23417604:0,0,0 +g1,13504:6946919,23417604 +g1,13504:7263065,23417604 +k1,13504:7263065,23417604:0 +h1,13504:11689104,23417604:0,0,0 +k1,13504:32583028,23417604:20893924 +g1,13504:32583028,23417604 +) +] +) +g1,13506:32583029,23518791 +g1,13506:6630773,23518791 +g1,13506:6630773,23518791 +g1,13506:32583029,23518791 +g1,13506:32583029,23518791 +) +h1,13506:6630773,23715399:0,0,0 +(1,13509:6630773,34779901:25952256,10474678,0 +k1,13509:12599879,34779901:5969106 +h1,13508:12599879,34779901:0,0,0 +(1,13508:12599879,34779901:14014044,10474678,0 +(1,13508:12599879,34779901:14014766,10474704,0 +(1,13508:12599879,34779901:14014766,10474704,0 +(1,13508:12599879,34779901:0,10474704,0 +(1,13508:12599879,34779901:0,14155776,0 +(1,13508:12599879,34779901:18939904,14155776,0 +) +k1,13508:12599879,34779901:-18939904 +) +) +g1,13508:26614645,34779901 +) +) +) +g1,13509:26613923,34779901 +k1,13509:32583029,34779901:5969106 +) +(1,13517:6630773,35621389:25952256,505283,126483 +h1,13516:6630773,35621389:983040,0,0 +k1,13516:8580742,35621389:149040 +k1,13516:10123732,35621389:149039 +k1,13516:11974742,35621389:149040 +k1,13516:14956903,35621389:149040 +k1,13516:16614581,35621389:149039 +k1,13516:20404146,35621389:149040 +k1,13516:22386883,35621389:149040 +k1,13516:24002618,35621389:149039 +k1,13516:25170743,35621389:149040 +k1,13516:27040758,35621389:149040 +k1,13516:30254261,35621389:149039 +k1,13516:31896867,35621389:149040 +k1,13517:32583029,35621389:0 +) +(1,13517:6630773,36462877:25952256,513147,126483 +(1,13516:6630773,36462877:0,452978,115847 +r1,13516:8395886,36462877:1765113,568825,115847 +k1,13516:6630773,36462877:-1765113 +) +(1,13516:6630773,36462877:1765113,452978,115847 +k1,13516:6630773,36462877:3277 +h1,13516:8392609,36462877:0,411205,112570 +) +k1,13516:8715370,36462877:145814 +k1,13516:10052629,36462877:145814 +k1,13516:13809477,36462877:145814 +k1,13516:16352598,36462877:145814 +k1,13516:17149840,36462877:145814 +k1,13516:18498895,36462877:145814 +k1,13516:20030795,36462877:145814 +k1,13516:20835901,36462877:145814 +k1,13516:22846214,36462877:145814 +k1,13516:27830551,36462877:145814 +(1,13516:27830551,36462877:0,452978,115847 +r1,13516:32409359,36462877:4578808,568825,115847 +k1,13516:27830551,36462877:-4578808 +) +(1,13516:27830551,36462877:4578808,452978,115847 +k1,13516:27830551,36462877:3277 +h1,13516:32406082,36462877:0,411205,112570 +) +k1,13517:32583029,36462877:0 +) +(1,13517:6630773,37304365:25952256,505283,115847 +(1,13516:6630773,37304365:0,452978,115847 +r1,13516:11209581,37304365:4578808,568825,115847 +k1,13516:6630773,37304365:-4578808 +) +(1,13516:6630773,37304365:4578808,452978,115847 +k1,13516:6630773,37304365:3277 +h1,13516:11206304,37304365:0,411205,112570 +) +k1,13516:11688012,37304365:304761 +(1,13516:11688012,37304365:0,459977,115847 +r1,13516:15915108,37304365:4227096,575824,115847 +k1,13516:11688012,37304365:-4227096 +) +(1,13516:11688012,37304365:4227096,459977,115847 +k1,13516:11688012,37304365:3277 +h1,13516:15911831,37304365:0,411205,112570 +) +k1,13516:16393538,37304365:304760 +(1,13516:16393538,37304365:0,452978,115847 +r1,13516:20972346,37304365:4578808,568825,115847 +k1,13516:16393538,37304365:-4578808 +) +(1,13516:16393538,37304365:4578808,452978,115847 +k1,13516:16393538,37304365:3277 +h1,13516:20969069,37304365:0,411205,112570 +) +k1,13516:21450777,37304365:304761 +(1,13516:21450777,37304365:0,452978,115847 +r1,13516:25677873,37304365:4227096,568825,115847 +k1,13516:21450777,37304365:-4227096 +) +(1,13516:21450777,37304365:4227096,452978,115847 +k1,13516:21450777,37304365:3277 +h1,13516:25674596,37304365:0,411205,112570 +) +k1,13516:26156303,37304365:304760 +(1,13516:26156303,37304365:0,452978,115847 +r1,13516:31086823,37304365:4930520,568825,115847 +k1,13516:26156303,37304365:-4930520 +) +(1,13516:26156303,37304365:4930520,452978,115847 +k1,13516:26156303,37304365:3277 +h1,13516:31083546,37304365:0,411205,112570 +) +k1,13516:31391584,37304365:304761 +k1,13517:32583029,37304365:0 +) +(1,13517:6630773,38145853:25952256,513147,126483 +(1,13516:6630773,38145853:0,452978,115847 +r1,13516:11209581,38145853:4578808,568825,115847 +k1,13516:6630773,38145853:-4578808 +) +(1,13516:6630773,38145853:4578808,452978,115847 +k1,13516:6630773,38145853:3277 +h1,13516:11206304,38145853:0,411205,112570 +) +k1,13516:11809610,38145853:426359 +k1,13516:14121440,38145853:426359 +k1,13516:16327101,38145853:426359 +k1,13516:17772545,38145853:426359 +k1,13516:20637499,38145853:426359 +k1,13516:21679896,38145853:426359 +k1,13516:22462114,38145853:426358 +k1,13516:24126448,38145853:426359 +k1,13516:26754817,38145853:426359 +k1,13516:27832604,38145853:426359 +k1,13516:29278048,38145853:426359 +k1,13517:32583029,38145853:0 +) +(1,13517:6630773,38987341:25952256,513147,134348 +(1,13516:6630773,38987341:0,452978,115847 +r1,13516:9802733,38987341:3171960,568825,115847 +k1,13516:6630773,38987341:-3171960 +) +(1,13516:6630773,38987341:3171960,452978,115847 +k1,13516:6630773,38987341:3277 +h1,13516:9799456,38987341:0,411205,112570 +) +k1,13516:9974535,38987341:171802 +k1,13516:10762375,38987341:171802 +(1,13516:10762375,38987341:0,452978,122846 +r1,13516:14989471,38987341:4227096,575824,122846 +k1,13516:10762375,38987341:-4227096 +) +(1,13516:10762375,38987341:4227096,452978,122846 +k1,13516:10762375,38987341:3277 +h1,13516:14986194,38987341:0,411205,112570 +) +k1,13516:15334943,38987341:171802 +k1,13516:16703431,38987341:171801 +k1,13516:18744320,38987341:171802 +k1,13516:20107567,38987341:171802 +k1,13516:22094061,38987341:171802 +k1,13516:22925155,38987341:171802 +k1,13516:24116042,38987341:171802 +k1,13516:26048140,38987341:171801 +k1,13516:27324224,38987341:171802 +k1,13516:28243792,38987341:171802 +k1,13516:31189078,38987341:171802 +k1,13517:32583029,38987341:0 +) +(1,13517:6630773,39828829:25952256,513147,126483 +(1,13516:6630773,39828829:0,452978,115847 +r1,13516:8395886,39828829:1765113,568825,115847 +k1,13516:6630773,39828829:-1765113 +) +(1,13516:6630773,39828829:1765113,452978,115847 +k1,13516:6630773,39828829:3277 +h1,13516:8392609,39828829:0,411205,112570 +) +k1,13516:8750566,39828829:181010 +(1,13516:8750566,39828829:0,452978,115847 +r1,13516:12274238,39828829:3523672,568825,115847 +k1,13516:8750566,39828829:-3523672 +) +(1,13516:8750566,39828829:3523672,452978,115847 +k1,13516:8750566,39828829:3277 +h1,13516:12270961,39828829:0,411205,112570 +) +k1,13516:12455248,39828829:181010 +k1,13516:13827703,39828829:181010 +(1,13516:13827703,39828829:0,452978,115847 +r1,13516:16647952,39828829:2820249,568825,115847 +k1,13516:13827703,39828829:-2820249 +) +(1,13516:13827703,39828829:2820249,452978,115847 +k1,13516:13827703,39828829:3277 +h1,13516:16644675,39828829:0,411205,112570 +) +k1,13516:17002633,39828829:181011 +k1,13516:19753310,39828829:181010 +k1,13516:20550358,39828829:181010 +k1,13516:21087228,39828829:181010 +k1,13516:23705522,39828829:181010 +k1,13516:25557045,39828829:181010 +k1,13516:26093916,39828829:181011 +k1,13516:28476936,39828829:181010 +k1,13516:29893300,39828829:181010 +k1,13516:31021961,39828829:181010 +k1,13517:32583029,39828829:0 +) +(1,13517:6630773,40670317:25952256,513147,134348 +g1,13516:8885211,40670317 +g1,13516:11774693,40670317 +g1,13516:12660084,40670317 +g1,13516:16296676,40670317 +g1,13516:18310597,40670317 +g1,13516:20180339,40670317 +g1,13516:22077606,40670317 +g1,13516:25680120,40670317 +k1,13517:32583029,40670317:4660922 +g1,13517:32583029,40670317 +) +v1,13519:6630773,41860783:0,393216,0 +(1,13525:6630773,43501944:25952256,2034377,196608 +g1,13525:6630773,43501944 +g1,13525:6630773,43501944 +g1,13525:6434165,43501944 +(1,13525:6434165,43501944:0,2034377,196608 +r1,13525:32779637,43501944:26345472,2230985,196608 +k1,13525:6434165,43501944:-26345472 +) +(1,13525:6434165,43501944:26345472,2034377,196608 +[1,13525:6630773,43501944:25952256,1837769,0 +(1,13521:6630773,42068401:25952256,404226,107478 +(1,13520:6630773,42068401:0,0,0 +g1,13520:6630773,42068401 +g1,13520:6630773,42068401 +g1,13520:6303093,42068401 +(1,13520:6303093,42068401:0,0,0 +) +g1,13520:6630773,42068401 +) +k1,13521:6630773,42068401:0 +g1,13521:11689104,42068401 +g1,13521:15166707,42068401 +g1,13521:16431290,42068401 +h1,13521:16747436,42068401:0,0,0 +k1,13521:32583029,42068401:15835593 +g1,13521:32583029,42068401 +) +(1,13522:6630773,42734579:25952256,404226,101187 +h1,13522:6630773,42734579:0,0,0 +g1,13522:6946919,42734579 +g1,13522:7263065,42734579 +g1,13522:13269833,42734579 +g1,13522:13902125,42734579 +g1,13522:15799000,42734579 +g1,13522:17695874,42734579 +g1,13522:18328166,42734579 +k1,13522:18328166,42734579:0 +h1,13522:19592749,42734579:0,0,0 +k1,13522:32583029,42734579:12990280 +g1,13522:32583029,42734579 +) +(1,13523:6630773,43400757:25952256,404226,101187 +h1,13523:6630773,43400757:0,0,0 +g1,13523:6946919,43400757 +g1,13523:7263065,43400757 +g1,13523:7579211,43400757 +g1,13523:7895357,43400757 +g1,13523:8211503,43400757 +g1,13523:8527649,43400757 +g1,13523:8843795,43400757 +g1,13523:9159941,43400757 +g1,13523:9476087,43400757 +g1,13523:9792233,43400757 +g1,13523:10108379,43400757 +g1,13523:10424525,43400757 +g1,13523:10740671,43400757 +g1,13523:11056817,43400757 +g1,13523:11372963,43400757 +g1,13523:15799003,43400757 +g1,13523:16431295,43400757 +g1,13523:18644315,43400757 +g1,13523:23070355,43400757 +g1,13523:23702647,43400757 +g1,13523:25283376,43400757 +g1,13523:29393270,43400757 +g1,13523:30025562,43400757 +h1,13523:30657854,43400757:0,0,0 +k1,13523:32583029,43400757:1925175 +g1,13523:32583029,43400757 +) +] +) +g1,13525:32583029,43501944 +g1,13525:6630773,43501944 +g1,13525:6630773,43501944 +g1,13525:32583029,43501944 +g1,13525:32583029,43501944 +) +h1,13525:6630773,43698552:0,0,0 +] +(1,13537:32583029,45706769:0,0,0 +g1,13537:32583029,45706769 +) +) +] +(1,13537:6630773,47279633:25952256,0,0 +h1,13537:6630773,47279633:25952256,0,0 +) +] +h1,13537:4262630,4025873:0,0,0 +] +!17547 +}260 +Input:1926:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{261 +[1,13574:4262630,47279633:28320399,43253760,0 +(1,13574:4262630,4025873:0,0,0 +[1,13574:-473657,4025873:25952256,0,0 +(1,13574:-473657,-710414:25952256,0,0 +h1,13574:-473657,-710414:0,0,0 +(1,13574:-473657,-710414:0,0,0 +(1,13574:-473657,-710414:0,0,0 +g1,13574:-473657,-710414 +(1,13574:-473657,-710414:65781,0,65781 +g1,13574:-407876,-710414 +[1,13574:-407876,-644633:0,0,0 ] ) -k1,13548:-473657,-710414:-65781 +k1,13574:-473657,-710414:-65781 ) ) -k1,13548:25478599,-710414:25952256 -g1,13548:25478599,-710414 +k1,13574:25478599,-710414:25952256 +g1,13574:25478599,-710414 ) ] ) -[1,13548:6630773,47279633:25952256,43253760,0 -[1,13548:6630773,4812305:25952256,786432,0 -(1,13548:6630773,4812305:25952256,485622,11795 -(1,13548:6630773,4812305:25952256,485622,11795 -g1,13548:3078558,4812305 -[1,13548:3078558,4812305:0,0,0 -(1,13548:3078558,2439708:0,1703936,0 -k1,13548:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13548:2537886,2439708:1179648,16384,0 +[1,13574:6630773,47279633:25952256,43253760,0 +[1,13574:6630773,4812305:25952256,786432,0 +(1,13574:6630773,4812305:25952256,513147,134348 +(1,13574:6630773,4812305:25952256,513147,134348 +g1,13574:3078558,4812305 +[1,13574:3078558,4812305:0,0,0 +(1,13574:3078558,2439708:0,1703936,0 +k1,13574:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13574:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13548:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13574:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13548:3078558,4812305:0,0,0 -(1,13548:3078558,2439708:0,1703936,0 -g1,13548:29030814,2439708 -g1,13548:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13548:36151628,1915420:16384,1179648,0 +[1,13574:3078558,4812305:0,0,0 +(1,13574:3078558,2439708:0,1703936,0 +g1,13574:29030814,2439708 +g1,13574:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13574:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13548:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13574:37855564,2439708:1179648,16384,0 ) ) -k1,13548:3078556,2439708:-34777008 +k1,13574:3078556,2439708:-34777008 ) ] -[1,13548:3078558,4812305:0,0,0 -(1,13548:3078558,49800853:0,16384,2228224 -k1,13548:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13548:2537886,49800853:1179648,16384,0 +[1,13574:3078558,4812305:0,0,0 +(1,13574:3078558,49800853:0,16384,2228224 +k1,13574:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13574:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13548:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13574:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13548:3078558,4812305:0,0,0 -(1,13548:3078558,49800853:0,16384,2228224 -g1,13548:29030814,49800853 -g1,13548:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13548:36151628,51504789:16384,1179648,0 +[1,13574:3078558,4812305:0,0,0 +(1,13574:3078558,49800853:0,16384,2228224 +g1,13574:29030814,49800853 +g1,13574:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13574:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13548:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13574:37855564,49800853:1179648,16384,0 ) ) -k1,13548:3078556,49800853:-34777008 +k1,13574:3078556,49800853:-34777008 ) ] -g1,13548:6630773,4812305 -g1,13548:6630773,4812305 -g1,13548:9560887,4812305 -k1,13548:31387651,4812305:21826764 -) -) -] -[1,13548:6630773,45706769:25952256,40108032,0 -(1,13548:6630773,45706769:25952256,40108032,0 -(1,13548:6630773,45706769:0,0,0 -g1,13548:6630773,45706769 -) -[1,13548:6630773,45706769:25952256,40108032,0 -(1,13502:6630773,16073415:25952256,10474678,0 -k1,13502:12599879,16073415:5969106 -h1,13501:12599879,16073415:0,0,0 -(1,13501:12599879,16073415:14014044,10474678,0 -(1,13501:12599879,16073415:14014766,10474704,0 -(1,13501:12599879,16073415:14014766,10474704,0 -(1,13501:12599879,16073415:0,10474704,0 -(1,13501:12599879,16073415:0,14155776,0 -(1,13501:12599879,16073415:18939904,14155776,0 -) -k1,13501:12599879,16073415:-18939904 -) -) -g1,13501:26614645,16073415 -) -) -) -g1,13502:26613923,16073415 -k1,13502:32583029,16073415:5969106 -) -(1,13511:6630773,18164675:25952256,555811,139132 -(1,13511:6630773,18164675:2450326,521208,12975 -g1,13511:6630773,18164675 -g1,13511:9081099,18164675 -) -g1,13511:11467986,18164675 -k1,13511:32583028,18164675:19307756 -g1,13511:32583028,18164675 -) -(1,13515:6630773,19399379:25952256,505283,126483 -k1,13514:8773447,19399379:267689 -k1,13514:10648735,19399379:267690 -k1,13514:11907984,19399379:267689 -k1,13514:12531533,19399379:267689 -k1,13514:14449420,19399379:267690 -k1,13514:16705471,19399379:267689 -k1,13514:21105205,19399379:267689 -k1,13514:22815341,19399379:267689 -k1,13514:24243018,19399379:267690 -k1,13514:26291976,19399379:267689 -k1,13514:27751110,19399379:267689 -k1,13514:30072698,19399379:267690 -k1,13514:31734338,19399379:267689 -k1,13515:32583029,19399379:0 -) -(1,13515:6630773,20240867:25952256,513147,134348 -k1,13514:9155976,20240867:235375 -k1,13514:10962249,20240867:235375 -k1,13514:14013706,20240867:235375 -k1,13514:14908373,20240867:235375 -k1,13514:19389170,20240867:235375 -k1,13514:21182336,20240867:235375 -k1,13514:23186528,20240867:235375 -k1,13514:24169669,20240867:235375 -k1,13514:26932112,20240867:235375 -k1,13514:27826779,20240867:235375 -k1,13514:28748316,20240867:235375 -k1,13514:30721706,20240867:235375 -k1,13514:31312941,20240867:235375 -k1,13514:32583029,20240867:0 -) -(1,13515:6630773,21082355:25952256,513147,134348 -k1,13514:7543034,21082355:252969 -k1,13514:9882669,21082355:252969 -k1,13514:12770841,21082355:252969 -k1,13514:13794512,21082355:252968 -k1,13514:17020849,21082355:252969 -k1,13514:19606244,21082355:252969 -k1,13514:22554709,21082355:252969 -k1,13514:24039755,21082355:252969 -k1,13514:26571411,21082355:252969 -h1,13514:28114129,21082355:0,0,0 -k1,13514:28367097,21082355:252968 -k1,13514:29429436,21082355:252969 -k1,13514:31180558,21082355:252969 -h1,13514:32375935,21082355:0,0,0 -k1,13514:32583029,21082355:0 -) -(1,13515:6630773,21923843:25952256,505283,134348 -k1,13514:8032781,21923843:210563 -k1,13514:8599204,21923843:210563 -k1,13514:9969755,21923843:210564 -k1,13514:11457615,21923843:210563 -k1,13514:12900255,21923843:210563 -k1,13514:15389505,21923843:210563 -h1,13514:16932223,21923843:0,0,0 -k1,13514:17142786,21923843:210563 -k1,13514:18162719,21923843:210563 -k1,13514:19871436,21923843:210564 -h1,13514:21066813,21923843:0,0,0 -k1,13514:21658140,21923843:210563 -k1,13514:22686592,21923843:210563 -k1,13514:23428652,21923843:210563 -k1,13514:24658300,21923843:210563 -k1,13514:26235944,21923843:210563 -k1,13514:27840459,21923843:210564 -k1,13514:29211009,21923843:210563 -k1,13514:31202841,21923843:210563 -k1,13514:32583029,21923843:0 -) -(1,13515:6630773,22765331:25952256,513147,134348 -k1,13514:7813698,22765331:191365 -k1,13514:11692118,22765331:191365 -k1,13514:13860704,22765331:191365 -k1,13514:15750107,22765331:191365 -k1,13514:19344757,22765331:191365 -k1,13514:23647851,22765331:191365 -k1,13514:24498508,22765331:191365 -k1,13514:26911544,22765331:191365 -k1,13514:28665943,22765331:191365 -k1,13514:30156887,22765331:191365 -k1,13514:31109780,22765331:191365 -k1,13514:32583029,22765331:0 -) -(1,13515:6630773,23606819:25952256,505283,126483 -g1,13514:8387793,23606819 -g1,13514:9691304,23606819 -g1,13514:10638299,23606819 -g1,13514:13187649,23606819 -g1,13514:14780829,23606819 -(1,13514:14780829,23606819:0,452978,122846 -r1,13514:19359637,23606819:4578808,575824,122846 -k1,13514:14780829,23606819:-4578808 -) -(1,13514:14780829,23606819:4578808,452978,122846 -k1,13514:14780829,23606819:3277 -h1,13514:19356360,23606819:0,411205,112570 -) -g1,13514:19558866,23606819 -g1,13514:20444257,23606819 -g1,13514:22719011,23606819 -g1,13514:23534278,23606819 -g1,13514:24752592,23606819 -g1,13514:27943540,23606819 -k1,13515:32583029,23606819:2597387 -g1,13515:32583029,23606819 -) -v1,13517:6630773,24645580:0,393216,0 -(1,13522:6630773,25626854:25952256,1374490,196608 -g1,13522:6630773,25626854 -g1,13522:6630773,25626854 -g1,13522:6434165,25626854 -(1,13522:6434165,25626854:0,1374490,196608 -r1,13522:32779637,25626854:26345472,1571098,196608 -k1,13522:6434165,25626854:-26345472 -) -(1,13522:6434165,25626854:26345472,1374490,196608 -[1,13522:6630773,25626854:25952256,1177882,0 -(1,13519:6630773,24853198:25952256,404226,107478 -(1,13518:6630773,24853198:0,0,0 -g1,13518:6630773,24853198 -g1,13518:6630773,24853198 -g1,13518:6303093,24853198 -(1,13518:6303093,24853198:0,0,0 -) -g1,13518:6630773,24853198 -) -k1,13519:6630773,24853198:0 -g1,13519:11689104,24853198 -g1,13519:15166707,24853198 -g1,13519:16431290,24853198 -h1,13519:16747436,24853198:0,0,0 -k1,13519:32583029,24853198:15835593 -g1,13519:32583029,24853198 -) -(1,13520:6630773,25519376:25952256,404226,107478 -h1,13520:6630773,25519376:0,0,0 -g1,13520:6946919,25519376 -g1,13520:7263065,25519376 -k1,13520:7263065,25519376:0 -h1,13520:11372958,25519376:0,0,0 -k1,13520:32583030,25519376:21210072 -g1,13520:32583030,25519376 -) -] -) -g1,13522:32583029,25626854 -g1,13522:6630773,25626854 -g1,13522:6630773,25626854 -g1,13522:32583029,25626854 -g1,13522:32583029,25626854 -) -h1,13522:6630773,25823462:0,0,0 -v1,13526:6630773,27234805:0,393216,0 -(1,13533:6630773,29548436:25952256,2706847,196608 -g1,13533:6630773,29548436 -g1,13533:6630773,29548436 -g1,13533:6434165,29548436 -(1,13533:6434165,29548436:0,2706847,196608 -r1,13533:32779637,29548436:26345472,2903455,196608 -k1,13533:6434165,29548436:-26345472 -) -(1,13533:6434165,29548436:26345472,2706847,196608 -[1,13533:6630773,29548436:25952256,2510239,0 -(1,13528:6630773,27448715:25952256,410518,107478 -(1,13527:6630773,27448715:0,0,0 -g1,13527:6630773,27448715 -g1,13527:6630773,27448715 -g1,13527:6303093,27448715 -(1,13527:6303093,27448715:0,0,0 -) -g1,13527:6630773,27448715 -) -k1,13528:6630773,27448715:0 -g1,13528:11689104,27448715 -g1,13528:15166707,27448715 -g1,13528:16115145,27448715 -g1,13528:17695874,27448715 -g1,13528:18328166,27448715 -g1,13528:20857332,27448715 -h1,13528:21173478,27448715:0,0,0 -k1,13528:32583029,27448715:11409551 -g1,13528:32583029,27448715 -) -(1,13529:6630773,28114893:25952256,404226,107478 -h1,13529:6630773,28114893:0,0,0 -g1,13529:6946919,28114893 -g1,13529:7263065,28114893 -g1,13529:12953687,28114893 -g1,13529:13585979,28114893 -g1,13529:15482854,28114893 -h1,13529:15799000,28114893:0,0,0 -k1,13529:32583028,28114893:16784028 -g1,13529:32583028,28114893 -) -(1,13530:6630773,28781071:25952256,404226,107478 -h1,13530:6630773,28781071:0,0,0 -g1,13530:6946919,28781071 -g1,13530:7263065,28781071 -g1,13530:12637542,28781071 -g1,13530:13269834,28781071 -g1,13530:15166709,28781071 -g1,13530:16747438,28781071 -g1,13530:17379730,28781071 -k1,13530:17379730,28781071:0 -h1,13530:18644313,28781071:0,0,0 -k1,13530:32583029,28781071:13938716 -g1,13530:32583029,28781071 -) -(1,13531:6630773,29447249:25952256,404226,101187 -h1,13531:6630773,29447249:0,0,0 -g1,13531:6946919,29447249 -g1,13531:7263065,29447249 -g1,13531:7579211,29447249 -g1,13531:7895357,29447249 -g1,13531:8211503,29447249 -g1,13531:8527649,29447249 -g1,13531:8843795,29447249 -g1,13531:9159941,29447249 -g1,13531:9476087,29447249 -g1,13531:9792233,29447249 -g1,13531:10108379,29447249 -g1,13531:10424525,29447249 -g1,13531:10740671,29447249 -g1,13531:12637545,29447249 -g1,13531:13269837,29447249 -g1,13531:16115149,29447249 -g1,13531:18012023,29447249 -g1,13531:18644315,29447249 -h1,13531:19592752,29447249:0,0,0 -k1,13531:32583029,29447249:12990277 -g1,13531:32583029,29447249 -) -] -) -g1,13533:32583029,29548436 -g1,13533:6630773,29548436 -g1,13533:6630773,29548436 -g1,13533:32583029,29548436 -g1,13533:32583029,29548436 -) -h1,13533:6630773,29745044:0,0,0 -(1,13536:6630773,40657841:25952256,10474678,0 -k1,13536:12599879,40657841:5969106 -h1,13535:12599879,40657841:0,0,0 -(1,13535:12599879,40657841:14014044,10474678,0 -(1,13535:12599879,40657841:14014766,10474704,0 -(1,13535:12599879,40657841:14014766,10474704,0 -(1,13535:12599879,40657841:0,10474704,0 -(1,13535:12599879,40657841:0,14155776,0 -(1,13535:12599879,40657841:18939904,14155776,0 -) -k1,13535:12599879,40657841:-18939904 -) -) -g1,13535:26614645,40657841 -) -) -) -g1,13536:26613923,40657841 -k1,13536:32583029,40657841:5969106 -) -(1,13544:6630773,41499329:25952256,505283,134348 -h1,13543:6630773,41499329:983040,0,0 -k1,13543:8587797,41499329:156095 -k1,13543:10137842,41499329:156094 -k1,13543:11995907,41499329:156095 -k1,13543:15742719,41499329:156095 -k1,13543:17407453,41499329:156095 -k1,13543:21204072,41499329:156094 -k1,13543:23193864,41499329:156095 -k1,13543:24816655,41499329:156095 -k1,13543:25991835,41499329:156095 -k1,13543:27868904,41499329:156094 -k1,13543:31089463,41499329:156095 -k1,13543:32583029,41499329:0 -) -(1,13544:6630773,42340817:25952256,513147,126483 -g1,13543:7516164,42340817 -g1,13543:9505181,42340817 -g1,13543:10895855,42340817 -g1,13543:13127355,42340817 -g1,13543:15723891,42340817 -g1,13543:16574548,42340817 -g1,13543:18470504,42340817 -g1,13543:20386121,42340817 -g1,13543:21244642,42340817 -g1,13543:23308370,42340817 -k1,13544:32583029,42340817:4436136 -g1,13544:32583029,42340817 -) -(1,13546:6630773,43182305:25952256,513147,126483 -h1,13545:6630773,43182305:983040,0,0 -k1,13545:9730844,43182305:300373 -k1,13545:11747605,43182305:300373 -k1,13545:12707270,43182305:300373 -k1,13545:15633015,43182305:300373 -k1,13545:18155059,43182305:300373 -k1,13545:19106861,43182305:300374 -k1,13545:21181294,43182305:300373 -k1,13545:23089265,43182305:300373 -k1,13545:24381198,43182305:300373 -k1,13545:27893491,43182305:300373 -k1,13545:29801462,43182305:300373 -k1,13545:31293280,43182305:300373 -k1,13546:32583029,43182305:0 -) -(1,13546:6630773,44023793:25952256,513147,134348 -k1,13545:8572605,44023793:160563 -k1,13545:9924613,44023793:160563 -k1,13545:11189458,44023793:160563 -k1,13545:12097787,44023793:160563 -k1,13545:15299221,44023793:160563 -k1,13545:16853735,44023793:160563 -k1,13545:20454283,44023793:160563 -k1,13545:22996424,44023793:160563 -k1,13545:23773025,44023793:160563 -k1,13545:26844042,44023793:160563 -k1,13545:31391584,44023793:160563 -k1,13545:32583029,44023793:0 -) -(1,13546:6630773,44865281:25952256,513147,134348 -k1,13545:9751872,44865281:171980 -k1,13545:13894022,44865281:171979 -k1,13545:14553563,44865281:171953 -k1,13545:17343706,44865281:171980 -k1,13545:20177102,44865281:171979 -k1,13545:21008374,44865281:171980 -k1,13545:21536214,44865281:171980 -k1,13545:24918802,44865281:171979 -k1,13545:26368079,44865281:171980 -k1,13545:27071556,44865281:171980 -k1,13545:29319060,44865281:171979 -k1,13545:31533142,44865281:171980 -k1,13545:32583029,44865281:0 -) -(1,13546:6630773,45706769:25952256,513147,134348 -k1,13545:7808001,45706769:158143 -k1,13545:12792216,45706769:158144 -k1,13545:13609651,45706769:158143 -k1,13545:14786879,45706769:158143 -k1,13545:17855477,45706769:158144 -k1,13545:18961271,45706769:158143 -k1,13545:21236882,45706769:158143 -k1,13545:23217581,45706769:158143 -k1,13545:24394810,45706769:158144 -k1,13545:26304730,45706769:158143 -k1,13545:28875909,45706769:158143 -k1,13545:29650091,45706769:158144 -k1,13545:31316873,45706769:158143 -k1,13546:32583029,45706769:0 -k1,13546:32583029,45706769:0 -) -] -(1,13548:32583029,45706769:0,0,0 -g1,13548:32583029,45706769 -) -) -] -(1,13548:6630773,47279633:25952256,0,0 -h1,13548:6630773,47279633:25952256,0,0 -) -] -h1,13548:4262630,4025873:0,0,0 -] -!14801 -}260 -Input:1930:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1931:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1932:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1933:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1934:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1935:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{261 -[1,13593:4262630,47279633:28320399,43253760,0 -(1,13593:4262630,4025873:0,0,0 -[1,13593:-473657,4025873:25952256,0,0 -(1,13593:-473657,-710414:25952256,0,0 -h1,13593:-473657,-710414:0,0,0 -(1,13593:-473657,-710414:0,0,0 -(1,13593:-473657,-710414:0,0,0 -g1,13593:-473657,-710414 -(1,13593:-473657,-710414:65781,0,65781 -g1,13593:-407876,-710414 -[1,13593:-407876,-644633:0,0,0 +g1,13574:6630773,4812305 +k1,13574:25712890,4812305:17886740 +g1,13574:29057847,4812305 +g1,13574:29873114,4812305 +) +) +] +[1,13574:6630773,45706769:25952256,40108032,0 +(1,13574:6630773,45706769:25952256,40108032,0 +(1,13574:6630773,45706769:0,0,0 +g1,13574:6630773,45706769 +) +[1,13574:6630773,45706769:25952256,40108032,0 +(1,13528:6630773,16073415:25952256,10474678,0 +k1,13528:12599879,16073415:5969106 +h1,13527:12599879,16073415:0,0,0 +(1,13527:12599879,16073415:14014044,10474678,0 +(1,13527:12599879,16073415:14014766,10474704,0 +(1,13527:12599879,16073415:14014766,10474704,0 +(1,13527:12599879,16073415:0,10474704,0 +(1,13527:12599879,16073415:0,14155776,0 +(1,13527:12599879,16073415:18939904,14155776,0 +) +k1,13527:12599879,16073415:-18939904 +) +) +g1,13527:26614645,16073415 +) +) +) +g1,13528:26613923,16073415 +k1,13528:32583029,16073415:5969106 +) +(1,13537:6630773,18164675:25952256,555811,139132 +(1,13537:6630773,18164675:2450326,521208,12975 +g1,13537:6630773,18164675 +g1,13537:9081099,18164675 +) +g1,13537:11467986,18164675 +k1,13537:32583028,18164675:19307756 +g1,13537:32583028,18164675 +) +(1,13541:6630773,19399379:25952256,505283,126483 +k1,13540:8757668,19399379:251910 +k1,13540:10617176,19399379:251910 +k1,13540:11860647,19399379:251911 +k1,13540:12468417,19399379:251910 +k1,13540:14370524,19399379:251910 +k1,13540:16610796,19399379:251910 +k1,13540:20994752,19399379:251911 +k1,13540:22689109,19399379:251910 +k1,13540:24101006,19399379:251910 +k1,13540:26134185,19399379:251910 +k1,13540:27577541,19399379:251911 +k1,13540:29883349,19399379:251910 +k1,13540:31529210,19399379:251910 +k1,13541:32583029,19399379:0 +) +(1,13541:6630773,20240867:25952256,513147,134348 +k1,13540:8966627,20240867:251154 +k1,13540:10788679,20240867:251154 +k1,13540:13855915,20240867:251154 +k1,13540:14766361,20240867:251154 +k1,13540:19262937,20240867:251154 +k1,13540:21071882,20240867:251154 +k1,13540:23091854,20240867:251155 +k1,13540:24090774,20240867:251154 +k1,13540:26868996,20240867:251154 +k1,13540:27779442,20240867:251154 +k1,13540:28716758,20240867:251154 +k1,13540:30705927,20240867:251154 +k1,13540:31312941,20240867:251154 +k1,13540:32583029,20240867:0 +) +(1,13541:6630773,21082355:25952256,513147,134348 +k1,13540:7543034,21082355:252969 +k1,13540:9882669,21082355:252969 +k1,13540:12770841,21082355:252969 +k1,13540:13794512,21082355:252968 +k1,13540:17020849,21082355:252969 +k1,13540:19606244,21082355:252969 +k1,13540:22554709,21082355:252969 +k1,13540:24039755,21082355:252969 +k1,13540:26571411,21082355:252969 +h1,13540:28114129,21082355:0,0,0 +k1,13540:28367097,21082355:252968 +k1,13540:29429436,21082355:252969 +k1,13540:31180558,21082355:252969 +h1,13540:32375935,21082355:0,0,0 +k1,13540:32583029,21082355:0 +) +(1,13541:6630773,21923843:25952256,505283,134348 +k1,13540:8032781,21923843:210563 +k1,13540:8599204,21923843:210563 +k1,13540:9969755,21923843:210564 +k1,13540:11457615,21923843:210563 +k1,13540:12900255,21923843:210563 +k1,13540:15389505,21923843:210563 +h1,13540:16932223,21923843:0,0,0 +k1,13540:17142786,21923843:210563 +k1,13540:18162719,21923843:210563 +k1,13540:19871436,21923843:210564 +h1,13540:21066813,21923843:0,0,0 +k1,13540:21658140,21923843:210563 +k1,13540:22686592,21923843:210563 +k1,13540:23428652,21923843:210563 +k1,13540:24658300,21923843:210563 +k1,13540:26235944,21923843:210563 +k1,13540:27840459,21923843:210564 +k1,13540:29211009,21923843:210563 +k1,13540:31202841,21923843:210563 +k1,13540:32583029,21923843:0 +) +(1,13541:6630773,22765331:25952256,513147,134348 +k1,13540:7813698,22765331:191365 +k1,13540:11692118,22765331:191365 +k1,13540:13860704,22765331:191365 +k1,13540:15750107,22765331:191365 +k1,13540:19344757,22765331:191365 +k1,13540:23647851,22765331:191365 +k1,13540:24498508,22765331:191365 +k1,13540:26911544,22765331:191365 +k1,13540:28665943,22765331:191365 +k1,13540:30156887,22765331:191365 +k1,13540:31109780,22765331:191365 +k1,13540:32583029,22765331:0 +) +(1,13541:6630773,23606819:25952256,505283,126483 +g1,13540:8387793,23606819 +g1,13540:9691304,23606819 +g1,13540:10638299,23606819 +g1,13540:13187649,23606819 +g1,13540:14780829,23606819 +(1,13540:14780829,23606819:0,452978,122846 +r1,13540:19359637,23606819:4578808,575824,122846 +k1,13540:14780829,23606819:-4578808 +) +(1,13540:14780829,23606819:4578808,452978,122846 +k1,13540:14780829,23606819:3277 +h1,13540:19356360,23606819:0,411205,112570 +) +g1,13540:19558866,23606819 +g1,13540:20444257,23606819 +g1,13540:22719011,23606819 +g1,13540:23534278,23606819 +g1,13540:24752592,23606819 +g1,13540:27943540,23606819 +k1,13541:32583029,23606819:2597387 +g1,13541:32583029,23606819 +) +v1,13543:6630773,24645580:0,393216,0 +(1,13548:6630773,25626854:25952256,1374490,196608 +g1,13548:6630773,25626854 +g1,13548:6630773,25626854 +g1,13548:6434165,25626854 +(1,13548:6434165,25626854:0,1374490,196608 +r1,13548:32779637,25626854:26345472,1571098,196608 +k1,13548:6434165,25626854:-26345472 +) +(1,13548:6434165,25626854:26345472,1374490,196608 +[1,13548:6630773,25626854:25952256,1177882,0 +(1,13545:6630773,24853198:25952256,404226,107478 +(1,13544:6630773,24853198:0,0,0 +g1,13544:6630773,24853198 +g1,13544:6630773,24853198 +g1,13544:6303093,24853198 +(1,13544:6303093,24853198:0,0,0 +) +g1,13544:6630773,24853198 +) +k1,13545:6630773,24853198:0 +g1,13545:11689104,24853198 +g1,13545:15166707,24853198 +g1,13545:16431290,24853198 +h1,13545:16747436,24853198:0,0,0 +k1,13545:32583029,24853198:15835593 +g1,13545:32583029,24853198 +) +(1,13546:6630773,25519376:25952256,404226,107478 +h1,13546:6630773,25519376:0,0,0 +g1,13546:6946919,25519376 +g1,13546:7263065,25519376 +k1,13546:7263065,25519376:0 +h1,13546:11372958,25519376:0,0,0 +k1,13546:32583030,25519376:21210072 +g1,13546:32583030,25519376 +) +] +) +g1,13548:32583029,25626854 +g1,13548:6630773,25626854 +g1,13548:6630773,25626854 +g1,13548:32583029,25626854 +g1,13548:32583029,25626854 +) +h1,13548:6630773,25823462:0,0,0 +v1,13552:6630773,27234805:0,393216,0 +(1,13559:6630773,29548436:25952256,2706847,196608 +g1,13559:6630773,29548436 +g1,13559:6630773,29548436 +g1,13559:6434165,29548436 +(1,13559:6434165,29548436:0,2706847,196608 +r1,13559:32779637,29548436:26345472,2903455,196608 +k1,13559:6434165,29548436:-26345472 +) +(1,13559:6434165,29548436:26345472,2706847,196608 +[1,13559:6630773,29548436:25952256,2510239,0 +(1,13554:6630773,27448715:25952256,410518,107478 +(1,13553:6630773,27448715:0,0,0 +g1,13553:6630773,27448715 +g1,13553:6630773,27448715 +g1,13553:6303093,27448715 +(1,13553:6303093,27448715:0,0,0 +) +g1,13553:6630773,27448715 +) +k1,13554:6630773,27448715:0 +g1,13554:11689104,27448715 +g1,13554:15166707,27448715 +g1,13554:16115145,27448715 +g1,13554:17695874,27448715 +g1,13554:18328166,27448715 +g1,13554:20857332,27448715 +h1,13554:21173478,27448715:0,0,0 +k1,13554:32583029,27448715:11409551 +g1,13554:32583029,27448715 +) +(1,13555:6630773,28114893:25952256,404226,107478 +h1,13555:6630773,28114893:0,0,0 +g1,13555:6946919,28114893 +g1,13555:7263065,28114893 +g1,13555:12953687,28114893 +g1,13555:13585979,28114893 +g1,13555:15482854,28114893 +h1,13555:15799000,28114893:0,0,0 +k1,13555:32583028,28114893:16784028 +g1,13555:32583028,28114893 +) +(1,13556:6630773,28781071:25952256,404226,107478 +h1,13556:6630773,28781071:0,0,0 +g1,13556:6946919,28781071 +g1,13556:7263065,28781071 +g1,13556:12637542,28781071 +g1,13556:13269834,28781071 +g1,13556:15166709,28781071 +g1,13556:16747438,28781071 +g1,13556:17379730,28781071 +k1,13556:17379730,28781071:0 +h1,13556:18644313,28781071:0,0,0 +k1,13556:32583029,28781071:13938716 +g1,13556:32583029,28781071 +) +(1,13557:6630773,29447249:25952256,404226,101187 +h1,13557:6630773,29447249:0,0,0 +g1,13557:6946919,29447249 +g1,13557:7263065,29447249 +g1,13557:7579211,29447249 +g1,13557:7895357,29447249 +g1,13557:8211503,29447249 +g1,13557:8527649,29447249 +g1,13557:8843795,29447249 +g1,13557:9159941,29447249 +g1,13557:9476087,29447249 +g1,13557:9792233,29447249 +g1,13557:10108379,29447249 +g1,13557:10424525,29447249 +g1,13557:10740671,29447249 +g1,13557:12637545,29447249 +g1,13557:13269837,29447249 +g1,13557:16115149,29447249 +g1,13557:18012023,29447249 +g1,13557:18644315,29447249 +h1,13557:19592752,29447249:0,0,0 +k1,13557:32583029,29447249:12990277 +g1,13557:32583029,29447249 +) +] +) +g1,13559:32583029,29548436 +g1,13559:6630773,29548436 +g1,13559:6630773,29548436 +g1,13559:32583029,29548436 +g1,13559:32583029,29548436 +) +h1,13559:6630773,29745044:0,0,0 +(1,13562:6630773,40657841:25952256,10474678,0 +k1,13562:12599879,40657841:5969106 +h1,13561:12599879,40657841:0,0,0 +(1,13561:12599879,40657841:14014044,10474678,0 +(1,13561:12599879,40657841:14014766,10474704,0 +(1,13561:12599879,40657841:14014766,10474704,0 +(1,13561:12599879,40657841:0,10474704,0 +(1,13561:12599879,40657841:0,14155776,0 +(1,13561:12599879,40657841:18939904,14155776,0 +) +k1,13561:12599879,40657841:-18939904 +) +) +g1,13561:26614645,40657841 +) +) +) +g1,13562:26613923,40657841 +k1,13562:32583029,40657841:5969106 +) +(1,13570:6630773,41499329:25952256,505283,134348 +h1,13569:6630773,41499329:983040,0,0 +k1,13569:8587797,41499329:156095 +k1,13569:10137842,41499329:156094 +k1,13569:11995907,41499329:156095 +k1,13569:15742719,41499329:156095 +k1,13569:17407453,41499329:156095 +k1,13569:21204072,41499329:156094 +k1,13569:23193864,41499329:156095 +k1,13569:24816655,41499329:156095 +k1,13569:25991835,41499329:156095 +k1,13569:27868904,41499329:156094 +k1,13569:31089463,41499329:156095 +k1,13569:32583029,41499329:0 +) +(1,13570:6630773,42340817:25952256,513147,126483 +g1,13569:7516164,42340817 +g1,13569:9505181,42340817 +g1,13569:10895855,42340817 +g1,13569:13127355,42340817 +g1,13569:15723891,42340817 +g1,13569:16574548,42340817 +g1,13569:18470504,42340817 +g1,13569:20386121,42340817 +g1,13569:21244642,42340817 +g1,13569:23308370,42340817 +k1,13570:32583029,42340817:4436136 +g1,13570:32583029,42340817 +) +(1,13572:6630773,43182305:25952256,513147,126483 +h1,13571:6630773,43182305:983040,0,0 +k1,13571:9730844,43182305:300373 +k1,13571:11747605,43182305:300373 +k1,13571:12707270,43182305:300373 +k1,13571:15633015,43182305:300373 +k1,13571:18155059,43182305:300373 +k1,13571:19106861,43182305:300374 +k1,13571:21181294,43182305:300373 +k1,13571:23089265,43182305:300373 +k1,13571:24381198,43182305:300373 +k1,13571:27893491,43182305:300373 +k1,13571:29801462,43182305:300373 +k1,13571:31293280,43182305:300373 +k1,13572:32583029,43182305:0 +) +(1,13572:6630773,44023793:25952256,513147,134348 +k1,13571:8572605,44023793:160563 +k1,13571:9924613,44023793:160563 +k1,13571:11189458,44023793:160563 +k1,13571:12097787,44023793:160563 +k1,13571:15299221,44023793:160563 +k1,13571:16853735,44023793:160563 +k1,13571:20454283,44023793:160563 +k1,13571:22996424,44023793:160563 +k1,13571:23773025,44023793:160563 +k1,13571:26844042,44023793:160563 +k1,13571:31391584,44023793:160563 +k1,13571:32583029,44023793:0 +) +(1,13572:6630773,44865281:25952256,513147,134348 +k1,13571:9751872,44865281:171980 +k1,13571:13894022,44865281:171979 +k1,13571:14553563,44865281:171953 +k1,13571:17343706,44865281:171980 +k1,13571:20177102,44865281:171979 +k1,13571:21008374,44865281:171980 +k1,13571:21536214,44865281:171980 +k1,13571:24918802,44865281:171979 +k1,13571:26368079,44865281:171980 +k1,13571:27071556,44865281:171980 +k1,13571:29319060,44865281:171979 +k1,13571:31533142,44865281:171980 +k1,13571:32583029,44865281:0 +) +(1,13572:6630773,45706769:25952256,513147,134348 +k1,13571:7808001,45706769:158143 +k1,13571:12792216,45706769:158144 +k1,13571:13609651,45706769:158143 +k1,13571:14786879,45706769:158143 +k1,13571:17855477,45706769:158144 +k1,13571:18961271,45706769:158143 +k1,13571:21236882,45706769:158143 +k1,13571:23217581,45706769:158143 +k1,13571:24394810,45706769:158144 +k1,13571:26304730,45706769:158143 +k1,13571:28875909,45706769:158143 +k1,13571:29650091,45706769:158144 +k1,13571:31316873,45706769:158143 +k1,13572:32583029,45706769:0 +k1,13572:32583029,45706769:0 +) +] +(1,13574:32583029,45706769:0,0,0 +g1,13574:32583029,45706769 +) +) +] +(1,13574:6630773,47279633:25952256,0,0 +h1,13574:6630773,47279633:25952256,0,0 +) +] +h1,13574:4262630,4025873:0,0,0 +] +!14806 +}261 +Input:1927:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1928:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1929:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1930:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1931:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1932:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{262 +[1,13619:4262630,47279633:28320399,43253760,0 +(1,13619:4262630,4025873:0,0,0 +[1,13619:-473657,4025873:25952256,0,0 +(1,13619:-473657,-710414:25952256,0,0 +h1,13619:-473657,-710414:0,0,0 +(1,13619:-473657,-710414:0,0,0 +(1,13619:-473657,-710414:0,0,0 +g1,13619:-473657,-710414 +(1,13619:-473657,-710414:65781,0,65781 +g1,13619:-407876,-710414 +[1,13619:-407876,-644633:0,0,0 ] ) -k1,13593:-473657,-710414:-65781 +k1,13619:-473657,-710414:-65781 ) ) -k1,13593:25478599,-710414:25952256 -g1,13593:25478599,-710414 +k1,13619:25478599,-710414:25952256 +g1,13619:25478599,-710414 ) ] ) -[1,13593:6630773,47279633:25952256,43253760,0 -[1,13593:6630773,4812305:25952256,786432,0 -(1,13593:6630773,4812305:25952256,513147,134348 -(1,13593:6630773,4812305:25952256,513147,134348 -g1,13593:3078558,4812305 -[1,13593:3078558,4812305:0,0,0 -(1,13593:3078558,2439708:0,1703936,0 -k1,13593:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13593:2537886,2439708:1179648,16384,0 +[1,13619:6630773,47279633:25952256,43253760,0 +[1,13619:6630773,4812305:25952256,786432,0 +(1,13619:6630773,4812305:25952256,485622,11795 +(1,13619:6630773,4812305:25952256,485622,11795 +g1,13619:3078558,4812305 +[1,13619:3078558,4812305:0,0,0 +(1,13619:3078558,2439708:0,1703936,0 +k1,13619:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13619:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13593:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13619:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13593:3078558,4812305:0,0,0 -(1,13593:3078558,2439708:0,1703936,0 -g1,13593:29030814,2439708 -g1,13593:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13593:36151628,1915420:16384,1179648,0 +[1,13619:3078558,4812305:0,0,0 +(1,13619:3078558,2439708:0,1703936,0 +g1,13619:29030814,2439708 +g1,13619:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13619:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13593:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13619:37855564,2439708:1179648,16384,0 ) ) -k1,13593:3078556,2439708:-34777008 +k1,13619:3078556,2439708:-34777008 ) ] -[1,13593:3078558,4812305:0,0,0 -(1,13593:3078558,49800853:0,16384,2228224 -k1,13593:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13593:2537886,49800853:1179648,16384,0 +[1,13619:3078558,4812305:0,0,0 +(1,13619:3078558,49800853:0,16384,2228224 +k1,13619:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13619:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13593:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13619:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13593:3078558,4812305:0,0,0 -(1,13593:3078558,49800853:0,16384,2228224 -g1,13593:29030814,49800853 -g1,13593:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13593:36151628,51504789:16384,1179648,0 +[1,13619:3078558,4812305:0,0,0 +(1,13619:3078558,49800853:0,16384,2228224 +g1,13619:29030814,49800853 +g1,13619:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13619:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13593:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13619:37855564,49800853:1179648,16384,0 ) ) -k1,13593:3078556,49800853:-34777008 +k1,13619:3078556,49800853:-34777008 ) ] -g1,13593:6630773,4812305 -k1,13593:25712890,4812305:17886740 -g1,13593:29057847,4812305 -g1,13593:29873114,4812305 +g1,13619:6630773,4812305 +g1,13619:6630773,4812305 +g1,13619:8769212,4812305 +k1,13619:31387652,4812305:22618440 ) ) ] -[1,13593:6630773,45706769:25952256,40108032,0 -(1,13593:6630773,45706769:25952256,40108032,0 -(1,13593:6630773,45706769:0,0,0 -g1,13593:6630773,45706769 +[1,13619:6630773,45706769:25952256,40108032,0 +(1,13619:6630773,45706769:25952256,40108032,0 +(1,13619:6630773,45706769:0,0,0 +g1,13619:6630773,45706769 ) -[1,13593:6630773,45706769:25952256,40108032,0 -v1,13548:6630773,6254097:0,393216,0 -(1,13553:6630773,7235371:25952256,1374490,196608 -g1,13553:6630773,7235371 -g1,13553:6630773,7235371 -g1,13553:6434165,7235371 -(1,13553:6434165,7235371:0,1374490,196608 -r1,13553:32779637,7235371:26345472,1571098,196608 -k1,13553:6434165,7235371:-26345472 +[1,13619:6630773,45706769:25952256,40108032,0 +v1,13574:6630773,6254097:0,393216,0 +(1,13579:6630773,7235371:25952256,1374490,196608 +g1,13579:6630773,7235371 +g1,13579:6630773,7235371 +g1,13579:6434165,7235371 +(1,13579:6434165,7235371:0,1374490,196608 +r1,13579:32779637,7235371:26345472,1571098,196608 +k1,13579:6434165,7235371:-26345472 ) -(1,13553:6434165,7235371:26345472,1374490,196608 -[1,13553:6630773,7235371:25952256,1177882,0 -(1,13550:6630773,6461715:25952256,404226,107478 -(1,13549:6630773,6461715:0,0,0 -g1,13549:6630773,6461715 -g1,13549:6630773,6461715 -g1,13549:6303093,6461715 -(1,13549:6303093,6461715:0,0,0 +(1,13579:6434165,7235371:26345472,1374490,196608 +[1,13579:6630773,7235371:25952256,1177882,0 +(1,13576:6630773,6461715:25952256,404226,107478 +(1,13575:6630773,6461715:0,0,0 +g1,13575:6630773,6461715 +g1,13575:6630773,6461715 +g1,13575:6303093,6461715 +(1,13575:6303093,6461715:0,0,0 ) -g1,13549:6630773,6461715 +g1,13575:6630773,6461715 ) -k1,13550:6630773,6461715:0 -g1,13550:11689104,6461715 -g1,13550:15166707,6461715 -g1,13550:16431290,6461715 -h1,13550:16747436,6461715:0,0,0 -k1,13550:32583029,6461715:15835593 -g1,13550:32583029,6461715 +k1,13576:6630773,6461715:0 +g1,13576:11689104,6461715 +g1,13576:15166707,6461715 +g1,13576:16431290,6461715 +h1,13576:16747436,6461715:0,0,0 +k1,13576:32583029,6461715:15835593 +g1,13576:32583029,6461715 ) -(1,13551:6630773,7127893:25952256,404226,107478 -h1,13551:6630773,7127893:0,0,0 -g1,13551:6946919,7127893 -g1,13551:7263065,7127893 -k1,13551:7263065,7127893:0 -h1,13551:12953687,7127893:0,0,0 -k1,13551:32583029,7127893:19629342 -g1,13551:32583029,7127893 -) -] -) -g1,13553:32583029,7235371 -g1,13553:6630773,7235371 -g1,13553:6630773,7235371 -g1,13553:32583029,7235371 -g1,13553:32583029,7235371 -) -h1,13553:6630773,7431979:0,0,0 -(1,13556:6630773,18496481:25952256,10474678,0 -k1,13556:12599879,18496481:5969106 -h1,13555:12599879,18496481:0,0,0 -(1,13555:12599879,18496481:14014044,10474678,0 -(1,13555:12599879,18496481:14014766,10474704,0 -(1,13555:12599879,18496481:14014766,10474704,0 -(1,13555:12599879,18496481:0,10474704,0 -(1,13555:12599879,18496481:0,14155776,0 -(1,13555:12599879,18496481:18939904,14155776,0 -) -k1,13555:12599879,18496481:-18939904 -) -) -g1,13555:26614645,18496481 -) -) -) -g1,13556:26613923,18496481 -k1,13556:32583029,18496481:5969106 -) -(1,13566:6630773,21304049:25952256,32768,229376 -(1,13566:6630773,21304049:0,32768,229376 -(1,13566:6630773,21304049:5505024,32768,229376 -r1,13566:12135797,21304049:5505024,262144,229376 -) -k1,13566:6630773,21304049:-5505024 -) -(1,13566:6630773,21304049:25952256,32768,0 -r1,13566:32583029,21304049:25952256,32768,0 -) -) -(1,13566:6630773,22908377:25952256,582746,14155 -(1,13566:6630773,22908377:1974731,582746,14155 -g1,13566:6630773,22908377 -g1,13566:8605504,22908377 -) -k1,13566:32583028,22908377:21495544 -g1,13566:32583028,22908377 -) -(1,13571:6630773,24143081:25952256,513147,134348 -k1,13569:8826322,24143081:212430 -k1,13569:10030313,24143081:212431 -k1,13569:11755969,24143081:212430 -k1,13569:12584438,24143081:212431 -k1,13569:13152728,24143081:212430 -k1,13569:15559304,24143081:212431 -k1,13569:17201074,24143081:212430 -k1,13569:18072796,24143081:212430 -k1,13569:19892825,24143081:212431 -k1,13569:23467252,24143081:212430 -k1,13569:26350930,24143081:212431 -k1,13569:28637574,24143081:212430 -k1,13569:29466043,24143081:212431 -k1,13569:31563944,24143081:212430 -k1,13569:32583029,24143081:0 -) -(1,13571:6630773,24984569:25952256,513147,126483 -k1,13569:8839991,24984569:135004 -k1,13569:10711699,24984569:135004 -k1,13569:12538843,24984569:135004 -k1,13569:16143324,24984569:135005 -k1,13570:18152658,24984569:135004 -k1,13570:19552507,24984569:135004 -k1,13570:20346803,24984569:135004 -k1,13570:24310420,24984569:135004 -k1,13570:26519638,24984569:135004 -k1,13570:27646203,24984569:135005 -k1,13570:28137067,24984569:135004 -k1,13570:30249292,24984569:135004 -k1,13570:31635378,24984569:135004 -k1,13570:32583029,24984569:0 -) -(1,13571:6630773,25826057:25952256,505283,134348 -k1,13570:10240647,25826057:163991 -k1,13570:13090959,25826057:163991 -k1,13570:14817985,25826057:163992 -k1,13570:16856306,25826057:163991 -k1,13570:18627895,25826057:163991 -k1,13570:21196402,25826057:163991 -k1,13570:23860592,25826057:163991 -k1,13570:26583110,25826057:163992 -k1,13570:27766186,25826057:163991 -(1,13570:27766186,25826057:0,452978,115847 -r1,13570:30234723,25826057:2468537,568825,115847 -k1,13570:27766186,25826057:-2468537 -) -(1,13570:27766186,25826057:2468537,452978,115847 -k1,13570:27766186,25826057:3277 -h1,13570:30231446,25826057:0,411205,112570 -) -k1,13570:30398714,25826057:163991 -k1,13570:32583029,25826057:0 -) -(1,13571:6630773,26667545:25952256,513147,134348 -k1,13570:7400782,26667545:153971 -k1,13570:8081662,26667545:153971 -k1,13570:9427078,26667545:153971 -k1,13570:10600134,26667545:153971 -k1,13570:13032792,26667545:153972 -k1,13570:15766915,26667545:153971 -k1,13570:16536924,26667545:153971 -k1,13570:17279408,26667545:153971 -k1,13570:18630066,26667545:153971 -k1,13570:20405398,26667545:153971 -k1,13570:21884507,26667545:153971 -k1,13570:22569975,26667545:153971 -k1,13570:23375375,26667545:153972 -k1,13570:25004561,26667545:153971 -k1,13570:26692730,26667545:153971 -k1,13570:29056575,26667545:153971 -k1,13570:31923737,26667545:153971 -k1,13570:32583029,26667545:0 -) -(1,13571:6630773,27509033:25952256,513147,134348 -k1,13570:8395275,27509033:156904 -k1,13570:9946130,27509033:156904 -k1,13570:12880450,27509033:156904 -k1,13570:15113535,27509033:156904 -k1,13570:16036555,27509033:156904 -k1,13570:17801056,27509033:156903 -k1,13570:20608891,27509033:156904 -k1,13570:22776440,27509033:156904 -k1,13570:23880995,27509033:156904 -k1,13570:25056984,27509033:156904 -k1,13570:26867361,27509033:156904 -k1,13570:29898019,27509033:156904 -k1,13570:32583029,27509033:0 -) -(1,13571:6630773,28350521:25952256,513147,126483 -k1,13570:8224659,28350521:213042 -k1,13570:8969199,28350521:213043 -k1,13570:11159462,28350521:213042 -k1,13570:13070543,28350521:213043 -k1,13570:14938369,28350521:213042 -k1,13570:16142972,28350521:213043 -k1,13570:19027261,28350521:213042 -k1,13570:23384145,28350521:213043 -k1,13570:25821479,28350521:213042 -k1,13570:26650560,28350521:213043 -k1,13570:27219462,28350521:213042 -k1,13570:28821868,28350521:213043 -k1,13570:30143124,28350521:213042 -k1,13571:32583029,28350521:0 -) -(1,13571:6630773,29192009:25952256,513147,134348 -k1,13570:9194026,29192009:186262 -k1,13570:11161558,29192009:186263 -k1,13570:12419989,29192009:186262 -k1,13570:14000203,29192009:186263 -k1,13570:15434271,29192009:186262 -k1,13570:17523044,29192009:186263 -k1,13570:18392191,29192009:186262 -k1,13570:19972405,29192009:186263 -k1,13570:21177752,29192009:186262 -k1,13570:23017488,29192009:186263 -k1,13570:24775959,29192009:186262 -k1,13570:26034391,29192009:186263 -k1,13570:26576513,29192009:186262 -k1,13570:29542158,29192009:186263 -k1,13570:32583029,29192009:0 -) -(1,13571:6630773,30033497:25952256,513147,134348 -k1,13570:7845357,30033497:223024 -k1,13570:11516230,30033497:223024 -k1,13570:13025070,30033497:223024 -k1,13570:15398986,30033497:223024 -k1,13570:16249845,30033497:223024 -k1,13570:19301402,30033497:223024 -k1,13570:21179210,30033497:223024 -k1,13570:22393794,30033497:223024 -k1,13570:23789257,30033497:223024 -k1,13570:26642241,30033497:223024 -k1,13570:28581653,30033497:223024 -k1,13570:29463969,30033497:223024 -k1,13570:31749411,30033497:223024 -k1,13571:32583029,30033497:0 -) -(1,13571:6630773,30874985:25952256,513147,134348 -k1,13570:8103555,30874985:204660 -k1,13570:11495230,30874985:204659 -k1,13570:12315928,30874985:204660 -k1,13570:12876447,30874985:204659 -k1,13570:14539283,30874985:204660 -k1,13570:15935387,30874985:204659 -k1,13570:18028795,30874985:204660 -k1,13570:19978023,30874985:204660 -k1,13570:20538542,30874985:204659 -k1,13570:22616221,30874985:204660 -k1,13570:24420614,30874985:204659 -k1,13570:25284566,30874985:204660 -k1,13570:28315137,30874985:204659 -k1,13570:29765636,30874985:204660 -k1,13570:32583029,30874985:0 -) -(1,13571:6630773,31716473:25952256,505283,134348 -k1,13570:9649796,31716473:244229 -k1,13570:11161491,31716473:244229 -k1,13570:12578158,31716473:244228 -k1,13570:13505272,31716473:244229 -k1,13570:15399698,31716473:244229 -k1,13570:17351795,31716473:244229 -k1,13570:19470353,31716473:244228 -k1,13570:20706142,31716473:244229 -k1,13570:23991242,31716473:244229 -k1,13570:24996999,31716473:244229 -k1,13570:27428819,31716473:244228 -(1,13570:27428819,31716473:0,459977,122846 -r1,13570:31655915,31716473:4227096,582823,122846 -k1,13570:27428819,31716473:-4227096 -) -(1,13570:27428819,31716473:4227096,459977,122846 -k1,13570:27428819,31716473:3277 -h1,13570:31652638,31716473:0,411205,112570 -) -k1,13570:31900144,31716473:244229 -k1,13571:32583029,31716473:0 -) -(1,13571:6630773,32557961:25952256,513147,126483 -(1,13570:6630773,32557961:0,459977,115847 -r1,13570:10857869,32557961:4227096,575824,115847 -k1,13570:6630773,32557961:-4227096 -) -(1,13570:6630773,32557961:4227096,459977,115847 -k1,13570:6630773,32557961:3277 -h1,13570:10854592,32557961:0,411205,112570 -) -k1,13570:11261500,32557961:229961 -k1,13570:15461632,32557961:229961 -k1,13570:16319428,32557961:229961 -k1,13570:17568474,32557961:229961 -k1,13570:20790154,32557961:229961 -k1,13570:22888546,32557961:229961 -k1,13570:23986859,32557961:229961 -k1,13570:25309305,32557961:229961 -(1,13570:25309305,32557961:0,452978,122846 -r1,13570:29536401,32557961:4227096,575824,122846 -k1,13570:25309305,32557961:-4227096 -) -(1,13570:25309305,32557961:4227096,452978,122846 -k1,13570:25309305,32557961:3277 -h1,13570:29533124,32557961:0,411205,112570 -) -k1,13570:29766362,32557961:229961 -k1,13570:31068492,32557961:229961 -k1,13571:32583029,32557961:0 -) -(1,13571:6630773,33399449:25952256,513147,134348 -k1,13570:8054487,33399449:176564 -k1,13570:9335332,33399449:176563 -k1,13570:10259662,33399449:176564 -k1,13570:11949452,33399449:176564 -k1,13570:13519967,33399449:176564 -(1,13570:13519967,33399449:0,452978,122846 -r1,13570:15636792,33399449:2116825,575824,122846 -k1,13570:13519967,33399449:-2116825 -) -(1,13570:13519967,33399449:2116825,452978,122846 -k1,13570:13519967,33399449:3277 -h1,13570:15633515,33399449:0,411205,112570 -) -k1,13570:15813355,33399449:176563 -k1,13570:18279747,33399449:176564 -k1,13570:21818308,33399449:176564 -k1,13570:24287321,33399449:176564 -k1,13570:26223526,33399449:176563 -k1,13570:27059382,33399449:176564 -k1,13570:29297709,33399449:176564 -k1,13570:32583029,33399449:0 -) -(1,13571:6630773,34240937:25952256,513147,115847 -g1,13570:8685982,34240937 -g1,13570:12956963,34240937 -g1,13570:13839077,34240937 -g1,13570:17546448,34240937 -g1,13570:19313298,34240937 -(1,13570:19313298,34240937:0,452978,115847 -r1,13570:20726699,34240937:1413401,568825,115847 -k1,13570:19313298,34240937:-1413401 -) -(1,13570:19313298,34240937:1413401,452978,115847 -k1,13570:19313298,34240937:3277 -h1,13570:20723422,34240937:0,411205,112570 -) -k1,13571:32583029,34240937:11682660 -g1,13571:32583029,34240937 -) -(1,13575:6630773,35082425:25952256,505283,134348 -h1,13574:6630773,35082425:983040,0,0 -k1,13574:8736351,35082425:168989 -k1,13574:10393663,35082425:168989 -k1,13574:11324180,35082425:168989 -k1,13574:14065458,35082425:168990 -k1,13574:15425892,35082425:168989 -k1,13574:17628463,35082425:168989 -k1,13574:18153312,35082425:168989 -k1,13574:22152225,35082425:168989 -k1,13574:23598511,35082425:168989 -k1,13574:25052006,35082425:168989 -k1,13574:26089348,35082425:168990 -k1,13574:27390799,35082425:168989 -k1,13574:28652273,35082425:168989 -k1,13574:31379788,35082425:168989 -k1,13574:32583029,35082425:0 -) -(1,13575:6630773,35923913:25952256,513147,134348 -g1,13574:9108689,35923913 -g1,13574:9959346,35923913 -g1,13574:14191661,35923913 -g1,13574:15721271,35923913 -g1,13574:16939585,35923913 -g1,13574:18792287,35923913 -g1,13574:20268813,35923913 -g1,13574:23039019,35923913 -g1,13574:24936286,35923913 -g1,13574:26003867,35923913 -g1,13574:27400439,35923913 -k1,13575:32583029,35923913:3120172 -g1,13575:32583029,35923913 -) -v1,13577:6630773,37114379:0,393216,0 -(1,13583:6630773,38755540:25952256,2034377,196608 -g1,13583:6630773,38755540 -g1,13583:6630773,38755540 -g1,13583:6434165,38755540 -(1,13583:6434165,38755540:0,2034377,196608 -r1,13583:32779637,38755540:26345472,2230985,196608 -k1,13583:6434165,38755540:-26345472 -) -(1,13583:6434165,38755540:26345472,2034377,196608 -[1,13583:6630773,38755540:25952256,1837769,0 -(1,13579:6630773,37321997:25952256,404226,107478 -(1,13578:6630773,37321997:0,0,0 -g1,13578:6630773,37321997 -g1,13578:6630773,37321997 -g1,13578:6303093,37321997 -(1,13578:6303093,37321997:0,0,0 -) -g1,13578:6630773,37321997 -) -g1,13579:7263065,37321997 -g1,13579:8211503,37321997 -g1,13579:12005252,37321997 -g1,13579:12637544,37321997 -g1,13579:15166710,37321997 -g1,13579:17695876,37321997 -g1,13579:19592750,37321997 -h1,13579:19908896,37321997:0,0,0 -k1,13579:32583029,37321997:12674133 -g1,13579:32583029,37321997 -) -(1,13580:6630773,37988175:25952256,404226,107478 -h1,13580:6630773,37988175:0,0,0 -g1,13580:6946919,37988175 -g1,13580:7263065,37988175 -k1,13580:7263065,37988175:0 -h1,13580:11056813,37988175:0,0,0 -k1,13580:32583029,37988175:21526216 -g1,13580:32583029,37988175 -) -(1,13581:6630773,38654353:25952256,284164,101187 -h1,13581:6630773,38654353:0,0,0 -h1,13581:6946919,38654353:0,0,0 -k1,13581:32583029,38654353:25636110 -g1,13581:32583029,38654353 -) -] -) -g1,13583:32583029,38755540 -g1,13583:6630773,38755540 -g1,13583:6630773,38755540 -g1,13583:32583029,38755540 -g1,13583:32583029,38755540 -) -h1,13583:6630773,38952148:0,0,0 -] -(1,13593:32583029,45706769:0,0,0 -g1,13593:32583029,45706769 -) -) -] -(1,13593:6630773,47279633:25952256,0,0 -h1,13593:6630773,47279633:25952256,0,0 -) -] -h1,13593:4262630,4025873:0,0,0 -] -!16250 -}261 -Input:1936:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1937:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1938:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1939:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1940:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1941:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1942:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1943:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 -{262 -[1,13662:4262630,47279633:28320399,43253760,0 -(1,13662:4262630,4025873:0,0,0 -[1,13662:-473657,4025873:25952256,0,0 -(1,13662:-473657,-710414:25952256,0,0 -h1,13662:-473657,-710414:0,0,0 -(1,13662:-473657,-710414:0,0,0 -(1,13662:-473657,-710414:0,0,0 -g1,13662:-473657,-710414 -(1,13662:-473657,-710414:65781,0,65781 -g1,13662:-407876,-710414 -[1,13662:-407876,-644633:0,0,0 +(1,13577:6630773,7127893:25952256,404226,107478 +h1,13577:6630773,7127893:0,0,0 +g1,13577:6946919,7127893 +g1,13577:7263065,7127893 +k1,13577:7263065,7127893:0 +h1,13577:12953687,7127893:0,0,0 +k1,13577:32583029,7127893:19629342 +g1,13577:32583029,7127893 +) +] +) +g1,13579:32583029,7235371 +g1,13579:6630773,7235371 +g1,13579:6630773,7235371 +g1,13579:32583029,7235371 +g1,13579:32583029,7235371 +) +h1,13579:6630773,7431979:0,0,0 +(1,13582:6630773,18496481:25952256,10474678,0 +k1,13582:12599879,18496481:5969106 +h1,13581:12599879,18496481:0,0,0 +(1,13581:12599879,18496481:14014044,10474678,0 +(1,13581:12599879,18496481:14014766,10474704,0 +(1,13581:12599879,18496481:14014766,10474704,0 +(1,13581:12599879,18496481:0,10474704,0 +(1,13581:12599879,18496481:0,14155776,0 +(1,13581:12599879,18496481:18939904,14155776,0 +) +k1,13581:12599879,18496481:-18939904 +) +) +g1,13581:26614645,18496481 +) +) +) +g1,13582:26613923,18496481 +k1,13582:32583029,18496481:5969106 +) +(1,13592:6630773,21304049:25952256,32768,229376 +(1,13592:6630773,21304049:0,32768,229376 +(1,13592:6630773,21304049:5505024,32768,229376 +r1,13592:12135797,21304049:5505024,262144,229376 +) +k1,13592:6630773,21304049:-5505024 +) +(1,13592:6630773,21304049:25952256,32768,0 +r1,13592:32583029,21304049:25952256,32768,0 +) +) +(1,13592:6630773,22908377:25952256,582746,14155 +(1,13592:6630773,22908377:1974731,582746,14155 +g1,13592:6630773,22908377 +g1,13592:8605504,22908377 +) +k1,13592:32583028,22908377:21495544 +g1,13592:32583028,22908377 +) +(1,13597:6630773,24143081:25952256,513147,134348 +k1,13595:8826322,24143081:212430 +k1,13595:10030313,24143081:212431 +k1,13595:11755969,24143081:212430 +k1,13595:12584438,24143081:212431 +k1,13595:13152728,24143081:212430 +k1,13595:15559304,24143081:212431 +k1,13595:17201074,24143081:212430 +k1,13595:18072796,24143081:212430 +k1,13595:19892825,24143081:212431 +k1,13595:23467252,24143081:212430 +k1,13595:26350930,24143081:212431 +k1,13595:28637574,24143081:212430 +k1,13595:29466043,24143081:212431 +k1,13595:31563944,24143081:212430 +k1,13595:32583029,24143081:0 +) +(1,13597:6630773,24984569:25952256,513147,126483 +k1,13595:8930212,24984569:225225 +k1,13595:10892142,24984569:225226 +k1,13595:12809507,24984569:225225 +k1,13595:16504209,24984569:225226 +k1,13596:18603764,24984569:225225 +k1,13596:20093835,24984569:225226 +k1,13596:20978352,24984569:225225 +k1,13596:25032190,24984569:225225 +k1,13596:27331630,24984569:225226 +k1,13596:28548415,24984569:225225 +k1,13596:29129501,24984569:225226 +k1,13596:31331947,24984569:225225 +k1,13596:32583029,24984569:0 +) +(1,13597:6630773,25826057:25952256,513147,134348 +k1,13596:7866082,25826057:287658 +k1,13596:11599622,25826057:287657 +k1,13596:14573601,25826057:287658 +k1,13596:16424292,25826057:287657 +k1,13596:18586280,25826057:287658 +k1,13596:20481536,25826057:287658 +k1,13596:23173709,25826057:287657 +k1,13596:25961566,25826057:287658 +k1,13596:28807749,25826057:287657 +k1,13596:30114492,25826057:287658 +(1,13596:30114492,25826057:0,452978,115847 +r1,13596:32583029,25826057:2468537,568825,115847 +k1,13596:30114492,25826057:-2468537 +) +(1,13596:30114492,25826057:2468537,452978,115847 +k1,13596:30114492,25826057:3277 +h1,13596:32579752,25826057:0,411205,112570 +) +k1,13596:32583029,25826057:0 +) +(1,13597:6630773,26667545:25952256,505283,134348 +k1,13596:9052943,26667545:237855 +k1,13596:9906836,26667545:237855 +k1,13596:10671599,26667545:237854 +k1,13596:12100899,26667545:237855 +k1,13596:13357839,26667545:237855 +k1,13596:15874380,26667545:237855 +k1,13596:18692387,26667545:237855 +k1,13596:19546280,26667545:237855 +k1,13596:20372647,26667545:237854 +k1,13596:21807189,26667545:237855 +k1,13596:23666405,26667545:237855 +k1,13596:25229398,26667545:237855 +k1,13596:25998750,26667545:237855 +k1,13596:26888032,26667545:237854 +k1,13596:28601102,26667545:237855 +k1,13596:30373155,26667545:237855 +k1,13596:32583029,26667545:0 +) +(1,13597:6630773,27509033:25952256,513147,134348 +k1,13596:9591690,27509033:247726 +k1,13596:10498708,27509033:247726 +k1,13596:12354032,27509033:247726 +k1,13596:13995709,27509033:247726 +k1,13596:17020851,27509033:247726 +k1,13596:19344758,27509033:247726 +k1,13596:20358599,27509033:247725 +k1,13596:22213923,27509033:247726 +k1,13596:25112580,27509033:247726 +k1,13596:27370951,27509033:247726 +k1,13596:28566328,27509033:247726 +k1,13596:29833139,27509033:247726 +k1,13596:31734338,27509033:247726 +k1,13597:32583029,27509033:0 +) +(1,13597:6630773,28350521:25952256,513147,126483 +k1,13596:9154267,28350521:285439 +k1,13596:12124716,28350521:285439 +k1,13596:13790999,28350521:285439 +k1,13596:14607935,28350521:285439 +k1,13596:16870595,28350521:285439 +k1,13596:18854072,28350521:285439 +k1,13596:20794295,28350521:285439 +k1,13596:22071294,28350521:285439 +k1,13596:25027980,28350521:285439 +k1,13596:29457260,28350521:285439 +k1,13596:31966991,28350521:285439 +k1,13596:32583029,28350521:0 +) +(1,13597:6630773,29192009:25952256,513147,134348 +k1,13596:7235951,29192009:249318 +k1,13596:8874631,29192009:249317 +k1,13596:10232163,29192009:249318 +k1,13596:15298376,29192009:249317 +k1,13596:17328963,29192009:249318 +k1,13596:18650449,29192009:249317 +k1,13596:20293718,29192009:249318 +k1,13596:21790842,29192009:249318 +k1,13596:23942669,29192009:249317 +k1,13596:24874872,29192009:249318 +k1,13596:26518140,29192009:249317 +k1,13596:27786543,29192009:249318 +k1,13596:29689333,29192009:249317 +k1,13596:31510860,29192009:249318 +k1,13596:32583029,29192009:0 +) +(1,13597:6630773,30033497:25952256,513147,134348 +k1,13596:7258826,30033497:272193 +k1,13596:10310401,30033497:272193 +k1,13596:13623465,30033497:272193 +k1,13596:14887217,30033497:272192 +k1,13596:18607259,30033497:272193 +k1,13596:20165268,30033497:272193 +k1,13596:22588353,30033497:272193 +k1,13596:23488381,30033497:272193 +k1,13596:26589107,30033497:272193 +k1,13596:28516083,30033497:272192 +k1,13596:29779836,30033497:272193 +k1,13596:31224468,30033497:272193 +k1,13597:32583029,30033497:0 +) +(1,13597:6630773,30874985:25952256,513147,134348 +k1,13596:8391631,30874985:276468 +k1,13596:10384488,30874985:276469 +k1,13596:11320248,30874985:276468 +k1,13596:13659134,30874985:276468 +k1,13596:15824350,30874985:276468 +k1,13596:19287835,30874985:276469 +k1,13596:20180341,30874985:276468 +k1,13596:20812669,30874985:276468 +k1,13596:22547314,30874985:276469 +k1,13596:24015227,30874985:276468 +k1,13596:26180443,30874985:276468 +k1,13596:28201479,30874985:276468 +k1,13596:28833808,30874985:276469 +k1,13596:30983295,30874985:276468 +k1,13596:32583029,30874985:0 +) +(1,13597:6630773,31716473:25952256,513147,126483 +k1,13596:7560183,31716473:270118 +k1,13596:10656212,31716473:270117 +k1,13596:12172169,31716473:270118 +k1,13596:15259679,31716473:270117 +k1,13596:18304591,31716473:270118 +k1,13596:19842174,31716473:270117 +k1,13596:21284731,31716473:270118 +k1,13596:22237733,31716473:270117 +k1,13596:24158048,31716473:270118 +k1,13596:26136033,31716473:270117 +k1,13596:28280481,31716473:270118 +k1,13596:29542158,31716473:270117 +k1,13596:32583029,31716473:0 +) +(1,13597:6630773,32557961:25952256,505283,134348 +k1,13596:7626981,32557961:234680 +k1,13596:10049252,32557961:234679 +(1,13596:10049252,32557961:0,459977,122846 +r1,13596:14276348,32557961:4227096,582823,122846 +k1,13596:10049252,32557961:-4227096 +) +(1,13596:10049252,32557961:4227096,459977,122846 +k1,13596:10049252,32557961:3277 +h1,13596:14273071,32557961:0,411205,112570 +) +k1,13596:14511028,32557961:234680 +k1,13596:15428592,32557961:234679 +(1,13596:15428592,32557961:0,459977,115847 +r1,13596:19655688,32557961:4227096,575824,115847 +k1,13596:15428592,32557961:-4227096 +) +(1,13596:15428592,32557961:4227096,459977,115847 +k1,13596:15428592,32557961:3277 +h1,13596:19652411,32557961:0,411205,112570 +) +k1,13596:20064038,32557961:234680 +k1,13596:24268889,32557961:234680 +k1,13596:25131403,32557961:234679 +k1,13596:26385168,32557961:234680 +k1,13596:29611566,32557961:234679 +k1,13596:31714677,32557961:234680 +k1,13596:32583029,32557961:0 +) +(1,13597:6630773,33399449:25952256,513147,134348 +k1,13596:7922484,33399449:199226 +(1,13596:7922484,33399449:0,452978,122846 +r1,13596:12149580,33399449:4227096,575824,122846 +k1,13596:7922484,33399449:-4227096 +) +(1,13596:7922484,33399449:4227096,452978,122846 +k1,13596:7922484,33399449:3277 +h1,13596:12146303,33399449:0,411205,112570 +) +k1,13596:12348806,33399449:199226 +k1,13596:13620201,33399449:199226 +k1,13596:16368122,33399449:199226 +k1,13596:17671630,33399449:199226 +k1,13596:18618623,33399449:199227 +k1,13596:20331075,33399449:199226 +k1,13596:21924252,33399449:199226 +(1,13596:21924252,33399449:0,452978,122846 +r1,13596:24041077,33399449:2116825,575824,122846 +k1,13596:21924252,33399449:-2116825 +) +(1,13596:21924252,33399449:2116825,452978,122846 +k1,13596:21924252,33399449:3277 +h1,13596:24037800,33399449:0,411205,112570 +) +k1,13596:24240303,33399449:199226 +k1,13596:26729357,33399449:199226 +k1,13596:30290580,33399449:199226 +k1,13596:32583029,33399449:0 +) +(1,13597:6630773,34240937:25952256,513147,134348 +g1,13596:8589644,34240937 +g1,13596:9448165,34240937 +g1,13596:11709157,34240937 +g1,13596:15193706,34240937 +g1,13596:17248915,34240937 +g1,13596:21519896,34240937 +g1,13596:22402010,34240937 +g1,13596:26109381,34240937 +g1,13596:27876231,34240937 +(1,13596:27876231,34240937:0,452978,115847 +r1,13596:29289632,34240937:1413401,568825,115847 +k1,13596:27876231,34240937:-1413401 +) +(1,13596:27876231,34240937:1413401,452978,115847 +k1,13596:27876231,34240937:3277 +h1,13596:29286355,34240937:0,411205,112570 +) +k1,13597:32583029,34240937:3119727 +g1,13597:32583029,34240937 +) +(1,13601:6630773,35082425:25952256,505283,134348 +h1,13600:6630773,35082425:983040,0,0 +k1,13600:8736351,35082425:168989 +k1,13600:10393663,35082425:168989 +k1,13600:11324180,35082425:168989 +k1,13600:14065458,35082425:168990 +k1,13600:15425892,35082425:168989 +k1,13600:17628463,35082425:168989 +k1,13600:18153312,35082425:168989 +k1,13600:22152225,35082425:168989 +k1,13600:23598511,35082425:168989 +k1,13600:25052006,35082425:168989 +k1,13600:26089348,35082425:168990 +k1,13600:27390799,35082425:168989 +k1,13600:28652273,35082425:168989 +k1,13600:31379788,35082425:168989 +k1,13600:32583029,35082425:0 +) +(1,13601:6630773,35923913:25952256,513147,134348 +g1,13600:9108689,35923913 +g1,13600:9959346,35923913 +g1,13600:14191661,35923913 +g1,13600:15721271,35923913 +g1,13600:16939585,35923913 +g1,13600:18792287,35923913 +g1,13600:20268813,35923913 +g1,13600:23039019,35923913 +g1,13600:24936286,35923913 +g1,13600:26003867,35923913 +g1,13600:27400439,35923913 +k1,13601:32583029,35923913:3120172 +g1,13601:32583029,35923913 +) +v1,13603:6630773,37114379:0,393216,0 +(1,13609:6630773,38755540:25952256,2034377,196608 +g1,13609:6630773,38755540 +g1,13609:6630773,38755540 +g1,13609:6434165,38755540 +(1,13609:6434165,38755540:0,2034377,196608 +r1,13609:32779637,38755540:26345472,2230985,196608 +k1,13609:6434165,38755540:-26345472 +) +(1,13609:6434165,38755540:26345472,2034377,196608 +[1,13609:6630773,38755540:25952256,1837769,0 +(1,13605:6630773,37321997:25952256,404226,107478 +(1,13604:6630773,37321997:0,0,0 +g1,13604:6630773,37321997 +g1,13604:6630773,37321997 +g1,13604:6303093,37321997 +(1,13604:6303093,37321997:0,0,0 +) +g1,13604:6630773,37321997 +) +g1,13605:7263065,37321997 +g1,13605:8211503,37321997 +g1,13605:12005252,37321997 +g1,13605:12637544,37321997 +g1,13605:15166710,37321997 +g1,13605:17695876,37321997 +g1,13605:19592750,37321997 +h1,13605:19908896,37321997:0,0,0 +k1,13605:32583029,37321997:12674133 +g1,13605:32583029,37321997 +) +(1,13606:6630773,37988175:25952256,404226,107478 +h1,13606:6630773,37988175:0,0,0 +g1,13606:6946919,37988175 +g1,13606:7263065,37988175 +k1,13606:7263065,37988175:0 +h1,13606:11056813,37988175:0,0,0 +k1,13606:32583029,37988175:21526216 +g1,13606:32583029,37988175 +) +(1,13607:6630773,38654353:25952256,284164,101187 +h1,13607:6630773,38654353:0,0,0 +h1,13607:6946919,38654353:0,0,0 +k1,13607:32583029,38654353:25636110 +g1,13607:32583029,38654353 +) +] +) +g1,13609:32583029,38755540 +g1,13609:6630773,38755540 +g1,13609:6630773,38755540 +g1,13609:32583029,38755540 +g1,13609:32583029,38755540 +) +h1,13609:6630773,38952148:0,0,0 +] +(1,13619:32583029,45706769:0,0,0 +g1,13619:32583029,45706769 +) +) +] +(1,13619:6630773,47279633:25952256,0,0 +h1,13619:6630773,47279633:25952256,0,0 +) +] +h1,13619:4262630,4025873:0,0,0 +] +!16183 +}262 +Input:1933:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1934:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1935:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1936:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1937:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1938:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1939:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1940:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{263 +[1,13688:4262630,47279633:28320399,43253760,0 +(1,13688:4262630,4025873:0,0,0 +[1,13688:-473657,4025873:25952256,0,0 +(1,13688:-473657,-710414:25952256,0,0 +h1,13688:-473657,-710414:0,0,0 +(1,13688:-473657,-710414:0,0,0 +(1,13688:-473657,-710414:0,0,0 +g1,13688:-473657,-710414 +(1,13688:-473657,-710414:65781,0,65781 +g1,13688:-407876,-710414 +[1,13688:-407876,-644633:0,0,0 ] ) -k1,13662:-473657,-710414:-65781 +k1,13688:-473657,-710414:-65781 ) ) -k1,13662:25478599,-710414:25952256 -g1,13662:25478599,-710414 +k1,13688:25478599,-710414:25952256 +g1,13688:25478599,-710414 ) ] ) -[1,13662:6630773,47279633:25952256,43253760,0 -[1,13662:6630773,4812305:25952256,786432,0 -(1,13662:6630773,4812305:25952256,485622,11795 -(1,13662:6630773,4812305:25952256,485622,11795 -g1,13662:3078558,4812305 -[1,13662:3078558,4812305:0,0,0 -(1,13662:3078558,2439708:0,1703936,0 -k1,13662:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13662:2537886,2439708:1179648,16384,0 +[1,13688:6630773,47279633:25952256,43253760,0 +[1,13688:6630773,4812305:25952256,786432,0 +(1,13688:6630773,4812305:25952256,513147,134348 +(1,13688:6630773,4812305:25952256,513147,134348 +g1,13688:3078558,4812305 +[1,13688:3078558,4812305:0,0,0 +(1,13688:3078558,2439708:0,1703936,0 +k1,13688:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13688:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13662:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13688:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13662:3078558,4812305:0,0,0 -(1,13662:3078558,2439708:0,1703936,0 -g1,13662:29030814,2439708 -g1,13662:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13662:36151628,1915420:16384,1179648,0 +[1,13688:3078558,4812305:0,0,0 +(1,13688:3078558,2439708:0,1703936,0 +g1,13688:29030814,2439708 +g1,13688:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13688:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13662:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13688:37855564,2439708:1179648,16384,0 ) ) -k1,13662:3078556,2439708:-34777008 +k1,13688:3078556,2439708:-34777008 ) ] -[1,13662:3078558,4812305:0,0,0 -(1,13662:3078558,49800853:0,16384,2228224 -k1,13662:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13662:2537886,49800853:1179648,16384,0 +[1,13688:3078558,4812305:0,0,0 +(1,13688:3078558,49800853:0,16384,2228224 +k1,13688:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13688:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13662:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13688:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13662:3078558,4812305:0,0,0 -(1,13662:3078558,49800853:0,16384,2228224 -g1,13662:29030814,49800853 -g1,13662:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13662:36151628,51504789:16384,1179648,0 +[1,13688:3078558,4812305:0,0,0 +(1,13688:3078558,49800853:0,16384,2228224 +g1,13688:29030814,49800853 +g1,13688:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13688:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13662:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13688:37855564,49800853:1179648,16384,0 ) ) -k1,13662:3078556,49800853:-34777008 +k1,13688:3078556,49800853:-34777008 ) ] -g1,13662:6630773,4812305 -g1,13662:6630773,4812305 -g1,13662:8769212,4812305 -k1,13662:31387652,4812305:22618440 +g1,13688:6630773,4812305 +k1,13688:25712890,4812305:17886740 +g1,13688:29057847,4812305 +g1,13688:29873114,4812305 ) ) ] -[1,13662:6630773,45706769:25952256,40108032,0 -(1,13662:6630773,45706769:25952256,40108032,0 -(1,13662:6630773,45706769:0,0,0 -g1,13662:6630773,45706769 +[1,13688:6630773,45706769:25952256,40108032,0 +(1,13688:6630773,45706769:25952256,40108032,0 +(1,13688:6630773,45706769:0,0,0 +g1,13688:6630773,45706769 ) -[1,13662:6630773,45706769:25952256,40108032,0 -(1,13586:6630773,14661426:25952256,9062689,0 -k1,13586:10523651,14661426:3892878 -h1,13585:10523651,14661426:0,0,0 -(1,13585:10523651,14661426:18166500,9062689,0 -(1,13585:10523651,14661426:18167381,9062712,0 -(1,13585:10523651,14661426:18167381,9062712,0 -(1,13585:10523651,14661426:0,9062712,0 -(1,13585:10523651,14661426:0,14155776,0 -(1,13585:10523651,14661426:28377088,14155776,0 +[1,13688:6630773,45706769:25952256,40108032,0 +(1,13612:6630773,14661426:25952256,9062689,0 +k1,13612:10523651,14661426:3892878 +h1,13611:10523651,14661426:0,0,0 +(1,13611:10523651,14661426:18166500,9062689,0 +(1,13611:10523651,14661426:18167381,9062712,0 +(1,13611:10523651,14661426:18167381,9062712,0 +(1,13611:10523651,14661426:0,9062712,0 +(1,13611:10523651,14661426:0,14155776,0 +(1,13611:10523651,14661426:28377088,14155776,0 ) -k1,13585:10523651,14661426:-28377088 +k1,13611:10523651,14661426:-28377088 ) ) -g1,13585:28691032,14661426 -) -) -) -g1,13586:28690151,14661426 -k1,13586:32583029,14661426:3892878 -) -(1,13594:6630773,15502914:25952256,513147,134348 -h1,13593:6630773,15502914:983040,0,0 -k1,13593:8329422,15502914:228021 -k1,13593:9841977,15502914:228049 -k1,13593:10729318,15502914:228049 -k1,13593:13031582,15502914:228050 -k1,13593:14360636,15502914:228049 -k1,13593:15761125,15502914:228050 -k1,13593:19838103,15502914:228049 -(1,13593:19838103,15502914:0,414482,115847 -r1,13593:21251504,15502914:1413401,530329,115847 -k1,13593:19838103,15502914:-1413401 -) -(1,13593:19838103,15502914:1413401,414482,115847 -k1,13593:19838103,15502914:3277 -h1,13593:21248227,15502914:0,411205,112570 -) -k1,13593:21479554,15502914:228050 -k1,13593:22899048,15502914:228049 -(1,13593:22899048,15502914:0,452978,115847 -r1,13593:24312449,15502914:1413401,568825,115847 -k1,13593:22899048,15502914:-1413401 -) -(1,13593:22899048,15502914:1413401,452978,115847 -k1,13593:22899048,15502914:3277 -h1,13593:24309172,15502914:0,411205,112570 -) -k1,13593:24714169,15502914:228050 -k1,13593:26816548,15502914:228049 -k1,13593:30719857,15502914:228050 -k1,13593:31563944,15502914:228049 -k1,13593:32583029,15502914:0 -) -(1,13594:6630773,16344402:25952256,513147,134348 -k1,13593:8183170,16344402:267891 -k1,13593:9110353,16344402:267891 -k1,13593:10655541,16344402:267891 -k1,13593:12997646,16344402:267891 -k1,13593:14369819,16344402:267891 -k1,13593:15385476,16344402:267891 -k1,13593:18839072,16344402:267891 -k1,13593:19758391,16344402:267891 -k1,13593:22424244,16344402:267891 -k1,13593:24241406,16344402:267891 -k1,13593:27063890,16344402:267891 -k1,13593:27687641,16344402:267891 -k1,13593:30498984,16344402:267891 -k1,13593:32583029,16344402:0 -) -(1,13594:6630773,17185890:25952256,513147,134348 -k1,13593:8069124,17185890:231178 -k1,13593:9319387,17185890:231178 -k1,13593:10926166,17185890:231178 -k1,13593:13941313,17185890:231178 -k1,13593:15502872,17185890:231178 -k1,13593:18696933,17185890:231178 -k1,13593:20131352,17185890:231178 -k1,13593:23052128,17185890:231178 -k1,13593:24384311,17185890:231178 -k1,13593:26125439,17185890:231178 -k1,13593:29162869,17185890:231178 -k1,13593:30413132,17185890:231178 -k1,13594:32583029,17185890:0 -) -(1,13594:6630773,18027378:25952256,505283,126483 -k1,13593:7922223,18027378:235010 -k1,13593:10241279,18027378:235011 -k1,13593:11007786,18027378:235010 -k1,13593:14153251,18027378:235011 -k1,13593:15039689,18027378:235010 -k1,13593:16367185,18027378:235011 -k1,13593:17621280,18027378:235010 -k1,13593:21467325,18027378:235011 -(1,13593:21467325,18027378:0,414482,115847 -r1,13593:22880726,18027378:1413401,530329,115847 -k1,13593:21467325,18027378:-1413401 -) -(1,13593:21467325,18027378:1413401,414482,115847 -k1,13593:21467325,18027378:3277 -h1,13593:22877449,18027378:0,411205,112570 -) -k1,13593:23115736,18027378:235010 -k1,13593:24542192,18027378:235011 -(1,13593:24542192,18027378:0,452978,115847 -r1,13593:25955593,18027378:1413401,568825,115847 -k1,13593:24542192,18027378:-1413401 -) -(1,13593:24542192,18027378:1413401,452978,115847 -k1,13593:24542192,18027378:3277 -h1,13593:25952316,18027378:0,411205,112570 -) -k1,13593:26364273,18027378:235010 -k1,13593:27552833,18027378:235011 -k1,13593:28880328,18027378:235010 -(1,13593:28880328,18027378:0,452978,115847 -r1,13593:30293729,18027378:1413401,568825,115847 -k1,13593:28880328,18027378:-1413401 -) -(1,13593:28880328,18027378:1413401,452978,115847 -k1,13593:28880328,18027378:3277 -h1,13593:30290452,18027378:0,411205,112570 -) -k1,13593:30528740,18027378:235011 -k1,13593:31379788,18027378:235010 -k1,13593:32583029,18027378:0 -) -(1,13594:6630773,18868866:25952256,513147,126483 -k1,13593:9654821,18868866:188961 -k1,13593:11334727,18868866:188962 -k1,13593:12808194,18868866:188961 -k1,13593:13865507,18868866:188961 -k1,13593:15584734,18868866:188961 -k1,13593:16425124,18868866:188962 -k1,13593:17706570,18868866:188961 -(1,13593:17706570,18868866:0,452978,115847 -r1,13593:19823395,18868866:2116825,568825,115847 -k1,13593:17706570,18868866:-2116825 -) -(1,13593:17706570,18868866:2116825,452978,115847 -k1,13593:17706570,18868866:3277 -h1,13593:19820118,18868866:0,411205,112570 -) -k1,13593:20012356,18868866:188961 -k1,13593:20852745,18868866:188961 -k1,13593:23414766,18868866:188962 -k1,13593:24622812,18868866:188961 -k1,13593:26880089,18868866:188961 -k1,13593:27728342,18868866:188961 -k1,13593:28936389,18868866:188962 -k1,13593:31966991,18868866:188961 -k1,13593:32583029,18868866:0 -) -(1,13594:6630773,19710354:25952256,513147,134348 -k1,13593:7886749,19710354:236891 -k1,13593:9686673,19710354:236890 -k1,13593:11120251,19710354:236891 -k1,13593:14816788,19710354:236891 -k1,13593:15712971,19710354:236891 -k1,13593:16968946,19710354:236890 -k1,13593:19280051,19710354:236891 -k1,13593:20199827,19710354:236891 -k1,13593:21853606,19710354:236891 -k1,13593:23909120,19710354:236890 -k1,13593:25137571,19710354:236891 -k1,13593:26135990,19710354:236891 -k1,13593:28638461,19710354:236891 -k1,13593:29894436,19710354:236890 -k1,13593:31923737,19710354:236891 -k1,13593:32583029,19710354:0 -) -(1,13594:6630773,20551842:25952256,513147,7863 -g1,13593:7849087,20551842 -k1,13594:32583029,20551842:22335980 -g1,13594:32583029,20551842 -) -v1,13596:6630773,21742308:0,393216,0 -(1,13600:6630773,22063696:25952256,714604,196608 -g1,13600:6630773,22063696 -g1,13600:6630773,22063696 -g1,13600:6434165,22063696 -(1,13600:6434165,22063696:0,714604,196608 -r1,13600:32779637,22063696:26345472,911212,196608 -k1,13600:6434165,22063696:-26345472 -) -(1,13600:6434165,22063696:26345472,714604,196608 -[1,13600:6630773,22063696:25952256,517996,0 -(1,13598:6630773,21956218:25952256,410518,107478 -(1,13597:6630773,21956218:0,0,0 -g1,13597:6630773,21956218 -g1,13597:6630773,21956218 -g1,13597:6303093,21956218 -(1,13597:6303093,21956218:0,0,0 -) -g1,13597:6630773,21956218 -) -g1,13598:7263065,21956218 -g1,13598:7895357,21956218 -g1,13598:12953689,21956218 -g1,13598:13585981,21956218 -k1,13598:13585981,21956218:0 -h1,13598:16747438,21956218:0,0,0 -k1,13598:32583029,21956218:15835591 -g1,13598:32583029,21956218 -) -] -) -g1,13600:32583029,22063696 -g1,13600:6630773,22063696 -g1,13600:6630773,22063696 -g1,13600:32583029,22063696 -g1,13600:32583029,22063696 -) -h1,13600:6630773,22260304:0,0,0 -(1,13603:6630773,31912817:25952256,9062689,0 -k1,13603:10523651,31912817:3892878 -h1,13602:10523651,31912817:0,0,0 -(1,13602:10523651,31912817:18166500,9062689,0 -(1,13602:10523651,31912817:18167381,9062712,0 -(1,13602:10523651,31912817:18167381,9062712,0 -(1,13602:10523651,31912817:0,9062712,0 -(1,13602:10523651,31912817:0,14155776,0 -(1,13602:10523651,31912817:28377088,14155776,0 -) -k1,13602:10523651,31912817:-28377088 -) -) -g1,13602:28691032,31912817 -) -) -) -g1,13603:28690151,31912817 -k1,13603:32583029,31912817:3892878 -) -(1,13611:6630773,32754305:25952256,513147,126483 -h1,13610:6630773,32754305:983040,0,0 -g1,13610:8440877,32754305 -g1,13610:9659191,32754305 -g1,13610:13140463,32754305 -g1,13610:16329444,32754305 -g1,13610:17547758,32754305 -g1,13610:19400460,32754305 -g1,13610:20876986,32754305 -g1,13610:23032465,32754305 -g1,13610:24706909,32754305 -g1,13610:26416088,32754305 -g1,13610:28532245,32754305 -g1,13610:29417636,32754305 -k1,13611:32583029,32754305:676336 -g1,13611:32583029,32754305 -) -v1,13613:6630773,33944771:0,393216,0 -(1,13617:6630773,34266159:25952256,714604,196608 -g1,13617:6630773,34266159 -g1,13617:6630773,34266159 -g1,13617:6434165,34266159 -(1,13617:6434165,34266159:0,714604,196608 -r1,13617:32779637,34266159:26345472,911212,196608 -k1,13617:6434165,34266159:-26345472 -) -(1,13617:6434165,34266159:26345472,714604,196608 -[1,13617:6630773,34266159:25952256,517996,0 -(1,13615:6630773,34158681:25952256,410518,107478 -(1,13614:6630773,34158681:0,0,0 -g1,13614:6630773,34158681 -g1,13614:6630773,34158681 -g1,13614:6303093,34158681 -(1,13614:6303093,34158681:0,0,0 -) -g1,13614:6630773,34158681 -) -g1,13615:7263065,34158681 -g1,13615:7895357,34158681 -g1,13615:12005251,34158681 -g1,13615:12637543,34158681 -h1,13615:13902126,34158681:0,0,0 -k1,13615:32583030,34158681:18680904 -g1,13615:32583030,34158681 -) -] -) -g1,13617:32583029,34266159 -g1,13617:6630773,34266159 -g1,13617:6630773,34266159 -g1,13617:32583029,34266159 -g1,13617:32583029,34266159 -) -h1,13617:6630773,34462767:0,0,0 -(1,13621:6630773,35828543:25952256,513147,134348 -h1,13620:6630773,35828543:983040,0,0 -k1,13620:8595089,35828543:221058 -k1,13620:11255397,35828543:221058 -k1,13620:12242571,35828543:221058 -k1,13620:14537842,35828543:221057 -k1,13620:16495604,35828543:221058 -k1,13620:17735747,35828543:221058 -k1,13620:19610278,35828543:221058 -k1,13620:21403545,35828543:221058 -k1,13620:23439295,35828543:221058 -k1,13620:24851797,35828543:221057 -k1,13620:26809559,35828543:221058 -k1,13620:28049702,35828543:221058 -k1,13620:30795207,35828543:221058 -k1,13620:32583029,35828543:0 -) -(1,13621:6630773,36670031:25952256,513147,126483 -g1,13620:9036599,36670031 -g1,13620:10307997,36670031 -g1,13620:12203953,36670031 -g1,13620:14999063,36670031 -g1,13620:16302574,36670031 -g1,13620:17249569,36670031 -k1,13621:32583029,36670031:11679173 -g1,13621:32583029,36670031 -) -v1,13623:6630773,37860497:0,393216,0 -(1,13628:6630773,38848063:25952256,1380782,196608 -g1,13628:6630773,38848063 -g1,13628:6630773,38848063 -g1,13628:6434165,38848063 -(1,13628:6434165,38848063:0,1380782,196608 -r1,13628:32779637,38848063:26345472,1577390,196608 -k1,13628:6434165,38848063:-26345472 -) -(1,13628:6434165,38848063:26345472,1380782,196608 -[1,13628:6630773,38848063:25952256,1184174,0 -(1,13625:6630773,38074407:25952256,410518,107478 -(1,13624:6630773,38074407:0,0,0 -g1,13624:6630773,38074407 -g1,13624:6630773,38074407 -g1,13624:6303093,38074407 -(1,13624:6303093,38074407:0,0,0 -) -g1,13624:6630773,38074407 -) -g1,13625:7263065,38074407 -g1,13625:7895357,38074407 -g1,13625:12953689,38074407 -g1,13625:13585981,38074407 -g1,13625:17063584,38074407 -g1,13625:19276604,38074407 -g1,13625:19908896,38074407 -h1,13625:22121916,38074407:0,0,0 -k1,13625:32583029,38074407:10461113 -g1,13625:32583029,38074407 -) -(1,13626:6630773,38740585:25952256,410518,107478 -h1,13626:6630773,38740585:0,0,0 -g1,13626:7263065,38740585 -g1,13626:7895357,38740585 -g1,13626:12953689,38740585 -g1,13626:13585981,38740585 -g1,13626:17063584,38740585 -g1,13626:19276604,38740585 -g1,13626:19908896,38740585 -g1,13626:22438062,38740585 -g1,13626:24334936,38740585 -g1,13626:24967228,38740585 -h1,13626:27180248,38740585:0,0,0 -k1,13626:32583029,38740585:5402781 -g1,13626:32583029,38740585 -) -] -) -g1,13628:32583029,38848063 -g1,13628:6630773,38848063 -g1,13628:6630773,38848063 -g1,13628:32583029,38848063 -g1,13628:32583029,38848063 -) -h1,13628:6630773,39044671:0,0,0 -(1,13634:6630773,40410447:25952256,513147,134348 -h1,13633:6630773,40410447:983040,0,0 -g1,13633:8642072,40410447 -g1,13633:10865053,40410447 -g1,13633:11420142,40410447 -g1,13633:12521146,40410447 -g1,13633:14004881,40410447 -g1,13633:15072462,40410447 -g1,13633:16801957,40410447 -g1,13633:17652614,40410447 -g1,13633:20110869,40410447 -g1,13633:21776794,40410447 -(1,13633:21776794,40410447:0,414482,115847 -r1,13633:23190195,40410447:1413401,530329,115847 -k1,13633:21776794,40410447:-1413401 -) -(1,13633:21776794,40410447:1413401,414482,115847 -k1,13633:21776794,40410447:3277 -h1,13633:23186918,40410447:0,411205,112570 -) -g1,13633:23389424,40410447 -g1,13633:24780098,40410447 -(1,13633:24780098,40410447:0,452978,115847 -r1,13633:26193499,40410447:1413401,568825,115847 -k1,13633:24780098,40410447:-1413401 -) -(1,13633:24780098,40410447:1413401,452978,115847 -k1,13633:24780098,40410447:3277 -h1,13633:26190222,40410447:0,411205,112570 -) -k1,13634:32583029,40410447:6215860 -g1,13634:32583029,40410447 -) -v1,13636:6630773,41600913:0,393216,0 -(1,13640:6630773,41922301:25952256,714604,196608 -g1,13640:6630773,41922301 -g1,13640:6630773,41922301 -g1,13640:6434165,41922301 -(1,13640:6434165,41922301:0,714604,196608 -r1,13640:32779637,41922301:26345472,911212,196608 -k1,13640:6434165,41922301:-26345472 -) -(1,13640:6434165,41922301:26345472,714604,196608 -[1,13640:6630773,41922301:25952256,517996,0 -(1,13638:6630773,41814823:25952256,410518,107478 -(1,13637:6630773,41814823:0,0,0 -g1,13637:6630773,41814823 -g1,13637:6630773,41814823 -g1,13637:6303093,41814823 -(1,13637:6303093,41814823:0,0,0 -) -g1,13637:6630773,41814823 -) -g1,13638:7263065,41814823 -g1,13638:7895357,41814823 -g1,13638:12953689,41814823 -g1,13638:13585981,41814823 -g1,13638:16747439,41814823 -g1,13638:18328168,41814823 -g1,13638:18960460,41814823 -k1,13638:18960460,41814823:0 -h1,13638:21805771,41814823:0,0,0 -k1,13638:32583029,41814823:10777258 -g1,13638:32583029,41814823 -) -] -) -g1,13640:32583029,41922301 -g1,13640:6630773,41922301 -g1,13640:6630773,41922301 -g1,13640:32583029,41922301 -g1,13640:32583029,41922301 -) -h1,13640:6630773,42118909:0,0,0 -(1,13646:6630773,43484685:25952256,513147,134348 -h1,13645:6630773,43484685:983040,0,0 -k1,13645:10311876,43484685:169684 -k1,13645:12776630,43484685:169683 -k1,13645:13717017,43484685:169684 -k1,13645:17113693,43484685:169683 -k1,13645:19666266,43484685:169684 -k1,13645:20518834,43484685:169683 -k1,13645:21892414,43484685:169684 -k1,13645:22721390,43484685:169684 -k1,13645:24965287,43484685:169683 -k1,13645:26528922,43484685:169684 -k1,13645:27717690,43484685:169683 -k1,13645:31019995,43484685:169684 -k1,13646:32583029,43484685:0 -k1,13646:32583029,43484685:0 -) -v1,13648:6630773,44675151:0,393216,0 -(1,13652:6630773,44996539:25952256,714604,196608 -g1,13652:6630773,44996539 -g1,13652:6630773,44996539 -g1,13652:6434165,44996539 -(1,13652:6434165,44996539:0,714604,196608 -r1,13652:32779637,44996539:26345472,911212,196608 -k1,13652:6434165,44996539:-26345472 -) -(1,13652:6434165,44996539:26345472,714604,196608 -[1,13652:6630773,44996539:25952256,517996,0 -(1,13650:6630773,44889061:25952256,410518,107478 -(1,13649:6630773,44889061:0,0,0 -g1,13649:6630773,44889061 -g1,13649:6630773,44889061 -g1,13649:6303093,44889061 -(1,13649:6303093,44889061:0,0,0 -) -g1,13649:6630773,44889061 -) -g1,13650:7263065,44889061 -g1,13650:7895357,44889061 -g1,13650:12953689,44889061 -g1,13650:13585981,44889061 -g1,13650:17063584,44889061 -g1,13650:19592750,44889061 -g1,13650:20225042,44889061 -h1,13650:21805771,44889061:0,0,0 -k1,13650:32583029,44889061:10777258 -g1,13650:32583029,44889061 -) -] -) -g1,13652:32583029,44996539 -g1,13652:6630773,44996539 -g1,13652:6630773,44996539 -g1,13652:32583029,44996539 -g1,13652:32583029,44996539 -) -h1,13652:6630773,45193147:0,0,0 -] -(1,13662:32583029,45706769:0,0,0 -g1,13662:32583029,45706769 -) -) -] -(1,13662:6630773,47279633:25952256,0,0 -h1,13662:6630773,47279633:25952256,0,0 -) -] -h1,13662:4262630,4025873:0,0,0 -] -!18063 -}262 -Input:1944:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1945:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1946:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1947:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1948:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1949:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{263 -[1,13708:4262630,47279633:28320399,43253760,0 -(1,13708:4262630,4025873:0,0,0 -[1,13708:-473657,4025873:25952256,0,0 -(1,13708:-473657,-710414:25952256,0,0 -h1,13708:-473657,-710414:0,0,0 -(1,13708:-473657,-710414:0,0,0 -(1,13708:-473657,-710414:0,0,0 -g1,13708:-473657,-710414 -(1,13708:-473657,-710414:65781,0,65781 -g1,13708:-407876,-710414 -[1,13708:-407876,-644633:0,0,0 +g1,13611:28691032,14661426 +) +) +) +g1,13612:28690151,14661426 +k1,13612:32583029,14661426:3892878 +) +(1,13620:6630773,15502914:25952256,513147,134348 +h1,13619:6630773,15502914:983040,0,0 +k1,13619:8329422,15502914:228021 +k1,13619:9841977,15502914:228049 +k1,13619:10729318,15502914:228049 +k1,13619:13031582,15502914:228050 +k1,13619:14360636,15502914:228049 +k1,13619:15761125,15502914:228050 +k1,13619:19838103,15502914:228049 +(1,13619:19838103,15502914:0,414482,115847 +r1,13619:21251504,15502914:1413401,530329,115847 +k1,13619:19838103,15502914:-1413401 +) +(1,13619:19838103,15502914:1413401,414482,115847 +k1,13619:19838103,15502914:3277 +h1,13619:21248227,15502914:0,411205,112570 +) +k1,13619:21479554,15502914:228050 +k1,13619:22899048,15502914:228049 +(1,13619:22899048,15502914:0,452978,115847 +r1,13619:24312449,15502914:1413401,568825,115847 +k1,13619:22899048,15502914:-1413401 +) +(1,13619:22899048,15502914:1413401,452978,115847 +k1,13619:22899048,15502914:3277 +h1,13619:24309172,15502914:0,411205,112570 +) +k1,13619:24714169,15502914:228050 +k1,13619:26816548,15502914:228049 +k1,13619:30719857,15502914:228050 +k1,13619:31563944,15502914:228049 +k1,13619:32583029,15502914:0 +) +(1,13620:6630773,16344402:25952256,513147,134348 +k1,13619:8077808,16344402:162529 +k1,13619:8899630,16344402:162530 +k1,13619:10339456,16344402:162529 +k1,13619:12576199,16344402:162529 +k1,13619:13843010,16344402:162529 +k1,13619:14753306,16344402:162530 +k1,13619:18101540,16344402:162529 +k1,13619:18915497,16344402:162529 +k1,13619:21475989,16344402:162530 +k1,13619:23187789,16344402:162529 +k1,13619:25904911,16344402:162529 +k1,13619:26423300,16344402:162529 +k1,13619:29129282,16344402:162530 +k1,13619:31375856,16344402:162529 +k1,13619:32583029,16344402:0 +) +(1,13620:6630773,17185890:25952256,513147,134348 +k1,13619:7801410,17185890:151552 +k1,13619:9328562,17185890:151551 +k1,13619:12264083,17185890:151552 +k1,13619:13746016,17185890:151552 +k1,13619:16860451,17185890:151552 +k1,13619:18215243,17185890:151551 +k1,13619:21056393,17185890:151552 +k1,13619:22308950,17185890:151552 +k1,13619:23970452,17185890:151552 +k1,13619:26928256,17185890:151552 +k1,13619:28098892,17185890:151551 +k1,13619:31263789,17185890:151552 +k1,13620:32583029,17185890:0 +) +(1,13620:6630773,18027378:25952256,505283,126483 +k1,13619:7798754,18027378:190184 +k1,13619:8520435,18027378:190184 +k1,13619:11621073,18027378:190184 +k1,13619:12462684,18027378:190183 +k1,13619:13745353,18027378:190184 +k1,13619:14954622,18027378:190184 +k1,13619:18755840,18027378:190184 +(1,13619:18755840,18027378:0,414482,115847 +r1,13619:20169241,18027378:1413401,530329,115847 +k1,13619:18755840,18027378:-1413401 +) +(1,13619:18755840,18027378:1413401,414482,115847 +k1,13619:18755840,18027378:3277 +h1,13619:20165964,18027378:0,411205,112570 +) +k1,13619:20359425,18027378:190184 +k1,13619:21741054,18027378:190184 +(1,13619:21741054,18027378:0,452978,115847 +r1,13619:23154455,18027378:1413401,568825,115847 +k1,13619:21741054,18027378:-1413401 +) +(1,13619:21741054,18027378:1413401,452978,115847 +k1,13619:21741054,18027378:3277 +h1,13619:23151178,18027378:0,411205,112570 +) +k1,13619:23518309,18027378:190184 +k1,13619:24662042,18027378:190184 +k1,13619:25944710,18027378:190183 +(1,13619:25944710,18027378:0,452978,115847 +r1,13619:27358111,18027378:1413401,568825,115847 +k1,13619:25944710,18027378:-1413401 +) +(1,13619:25944710,18027378:1413401,452978,115847 +k1,13619:25944710,18027378:3277 +h1,13619:27354834,18027378:0,411205,112570 +) +k1,13619:27548295,18027378:190184 +k1,13619:28354517,18027378:190184 +k1,13619:29747942,18027378:190184 +k1,13619:32583029,18027378:0 +) +(1,13620:6630773,18868866:25952256,513147,115847 +k1,13619:8314679,18868866:192962 +k1,13619:9792146,18868866:192961 +k1,13619:10853460,18868866:192962 +k1,13619:12576688,18868866:192962 +k1,13619:13421077,18868866:192961 +k1,13619:14706524,18868866:192962 +(1,13619:14706524,18868866:0,452978,115847 +r1,13619:16823349,18868866:2116825,568825,115847 +k1,13619:14706524,18868866:-2116825 +) +(1,13619:14706524,18868866:2116825,452978,115847 +k1,13619:14706524,18868866:3277 +h1,13619:16820072,18868866:0,411205,112570 +) +k1,13619:17016311,18868866:192962 +k1,13619:17860700,18868866:192961 +k1,13619:20426721,18868866:192962 +k1,13619:21638768,18868866:192962 +k1,13619:23900046,18868866:192962 +k1,13619:24752299,18868866:192961 +k1,13619:25964346,18868866:192962 +k1,13619:28998949,18868866:192962 +k1,13619:29807948,18868866:192961 +k1,13619:31019995,18868866:192962 +k1,13619:32583029,18868866:0 +) +(1,13620:6630773,19710354:25952256,513147,134348 +k1,13619:8008689,19710354:181229 +k1,13619:11649564,19710354:181229 +k1,13619:12490085,19710354:181229 +k1,13619:13690398,19710354:181228 +k1,13619:15945841,19710354:181229 +k1,13619:16809955,19710354:181229 +k1,13619:18408072,19710354:181229 +k1,13619:20407925,19710354:181229 +k1,13619:21580714,19710354:181229 +k1,13619:22523471,19710354:181229 +k1,13619:24970280,19710354:181229 +k1,13619:26170593,19710354:181228 +k1,13619:28144232,19710354:181229 +k1,13619:28984753,19710354:181229 +k1,13619:30185067,19710354:181229 +k1,13620:32583029,19710354:0 +k1,13620:32583029,19710354:0 +) +v1,13622:6630773,20900820:0,393216,0 +(1,13626:6630773,21222208:25952256,714604,196608 +g1,13626:6630773,21222208 +g1,13626:6630773,21222208 +g1,13626:6434165,21222208 +(1,13626:6434165,21222208:0,714604,196608 +r1,13626:32779637,21222208:26345472,911212,196608 +k1,13626:6434165,21222208:-26345472 +) +(1,13626:6434165,21222208:26345472,714604,196608 +[1,13626:6630773,21222208:25952256,517996,0 +(1,13624:6630773,21114730:25952256,410518,107478 +(1,13623:6630773,21114730:0,0,0 +g1,13623:6630773,21114730 +g1,13623:6630773,21114730 +g1,13623:6303093,21114730 +(1,13623:6303093,21114730:0,0,0 +) +g1,13623:6630773,21114730 +) +g1,13624:7263065,21114730 +g1,13624:7895357,21114730 +g1,13624:12953689,21114730 +g1,13624:13585981,21114730 +k1,13624:13585981,21114730:0 +h1,13624:16747438,21114730:0,0,0 +k1,13624:32583029,21114730:15835591 +g1,13624:32583029,21114730 +) +] +) +g1,13626:32583029,21222208 +g1,13626:6630773,21222208 +g1,13626:6630773,21222208 +g1,13626:32583029,21222208 +g1,13626:32583029,21222208 +) +h1,13626:6630773,21418816:0,0,0 +(1,13629:6630773,31071329:25952256,9062689,0 +k1,13629:10523651,31071329:3892878 +h1,13628:10523651,31071329:0,0,0 +(1,13628:10523651,31071329:18166500,9062689,0 +(1,13628:10523651,31071329:18167381,9062712,0 +(1,13628:10523651,31071329:18167381,9062712,0 +(1,13628:10523651,31071329:0,9062712,0 +(1,13628:10523651,31071329:0,14155776,0 +(1,13628:10523651,31071329:28377088,14155776,0 +) +k1,13628:10523651,31071329:-28377088 +) +) +g1,13628:28691032,31071329 +) +) +) +g1,13629:28690151,31071329 +k1,13629:32583029,31071329:3892878 +) +(1,13637:6630773,31912817:25952256,513147,126483 +h1,13636:6630773,31912817:983040,0,0 +g1,13636:8440877,31912817 +g1,13636:9659191,31912817 +g1,13636:13140463,31912817 +g1,13636:16329444,31912817 +g1,13636:17547758,31912817 +g1,13636:19400460,31912817 +g1,13636:20876986,31912817 +g1,13636:23032465,31912817 +g1,13636:24706909,31912817 +g1,13636:26416088,31912817 +g1,13636:28532245,31912817 +g1,13636:29417636,31912817 +k1,13637:32583029,31912817:676336 +g1,13637:32583029,31912817 +) +v1,13639:6630773,33103283:0,393216,0 +(1,13643:6630773,33424671:25952256,714604,196608 +g1,13643:6630773,33424671 +g1,13643:6630773,33424671 +g1,13643:6434165,33424671 +(1,13643:6434165,33424671:0,714604,196608 +r1,13643:32779637,33424671:26345472,911212,196608 +k1,13643:6434165,33424671:-26345472 +) +(1,13643:6434165,33424671:26345472,714604,196608 +[1,13643:6630773,33424671:25952256,517996,0 +(1,13641:6630773,33317193:25952256,410518,107478 +(1,13640:6630773,33317193:0,0,0 +g1,13640:6630773,33317193 +g1,13640:6630773,33317193 +g1,13640:6303093,33317193 +(1,13640:6303093,33317193:0,0,0 +) +g1,13640:6630773,33317193 +) +g1,13641:7263065,33317193 +g1,13641:7895357,33317193 +g1,13641:12005251,33317193 +g1,13641:12637543,33317193 +h1,13641:13902126,33317193:0,0,0 +k1,13641:32583030,33317193:18680904 +g1,13641:32583030,33317193 +) +] +) +g1,13643:32583029,33424671 +g1,13643:6630773,33424671 +g1,13643:6630773,33424671 +g1,13643:32583029,33424671 +g1,13643:32583029,33424671 +) +h1,13643:6630773,33621279:0,0,0 +(1,13647:6630773,34987055:25952256,513147,134348 +h1,13646:6630773,34987055:983040,0,0 +k1,13646:8595089,34987055:221058 +k1,13646:11255397,34987055:221058 +k1,13646:12242571,34987055:221058 +k1,13646:14537842,34987055:221057 +k1,13646:16495604,34987055:221058 +k1,13646:17735747,34987055:221058 +k1,13646:19610278,34987055:221058 +k1,13646:21403545,34987055:221058 +k1,13646:23439295,34987055:221058 +k1,13646:24851797,34987055:221057 +k1,13646:26809559,34987055:221058 +k1,13646:28049702,34987055:221058 +k1,13646:30795207,34987055:221058 +k1,13646:32583029,34987055:0 +) +(1,13647:6630773,35828543:25952256,513147,126483 +g1,13646:9036599,35828543 +g1,13646:10307997,35828543 +g1,13646:12203953,35828543 +g1,13646:14999063,35828543 +g1,13646:16302574,35828543 +g1,13646:17249569,35828543 +k1,13647:32583029,35828543:11679173 +g1,13647:32583029,35828543 +) +v1,13649:6630773,37019009:0,393216,0 +(1,13654:6630773,38006575:25952256,1380782,196608 +g1,13654:6630773,38006575 +g1,13654:6630773,38006575 +g1,13654:6434165,38006575 +(1,13654:6434165,38006575:0,1380782,196608 +r1,13654:32779637,38006575:26345472,1577390,196608 +k1,13654:6434165,38006575:-26345472 +) +(1,13654:6434165,38006575:26345472,1380782,196608 +[1,13654:6630773,38006575:25952256,1184174,0 +(1,13651:6630773,37232919:25952256,410518,107478 +(1,13650:6630773,37232919:0,0,0 +g1,13650:6630773,37232919 +g1,13650:6630773,37232919 +g1,13650:6303093,37232919 +(1,13650:6303093,37232919:0,0,0 +) +g1,13650:6630773,37232919 +) +g1,13651:7263065,37232919 +g1,13651:7895357,37232919 +g1,13651:12953689,37232919 +g1,13651:13585981,37232919 +g1,13651:17063584,37232919 +g1,13651:19276604,37232919 +g1,13651:19908896,37232919 +h1,13651:22121916,37232919:0,0,0 +k1,13651:32583029,37232919:10461113 +g1,13651:32583029,37232919 +) +(1,13652:6630773,37899097:25952256,410518,107478 +h1,13652:6630773,37899097:0,0,0 +g1,13652:7263065,37899097 +g1,13652:7895357,37899097 +g1,13652:12953689,37899097 +g1,13652:13585981,37899097 +g1,13652:17063584,37899097 +g1,13652:19276604,37899097 +g1,13652:19908896,37899097 +g1,13652:22438062,37899097 +g1,13652:24334936,37899097 +g1,13652:24967228,37899097 +h1,13652:27180248,37899097:0,0,0 +k1,13652:32583029,37899097:5402781 +g1,13652:32583029,37899097 +) +] +) +g1,13654:32583029,38006575 +g1,13654:6630773,38006575 +g1,13654:6630773,38006575 +g1,13654:32583029,38006575 +g1,13654:32583029,38006575 +) +h1,13654:6630773,38203183:0,0,0 +(1,13660:6630773,39568959:25952256,513147,134348 +h1,13659:6630773,39568959:983040,0,0 +g1,13659:8642072,39568959 +g1,13659:10865053,39568959 +g1,13659:11420142,39568959 +g1,13659:12521146,39568959 +g1,13659:14004881,39568959 +g1,13659:15072462,39568959 +g1,13659:16801957,39568959 +g1,13659:17652614,39568959 +g1,13659:20110869,39568959 +g1,13659:21776794,39568959 +(1,13659:21776794,39568959:0,414482,115847 +r1,13659:23190195,39568959:1413401,530329,115847 +k1,13659:21776794,39568959:-1413401 +) +(1,13659:21776794,39568959:1413401,414482,115847 +k1,13659:21776794,39568959:3277 +h1,13659:23186918,39568959:0,411205,112570 +) +g1,13659:23389424,39568959 +g1,13659:24780098,39568959 +(1,13659:24780098,39568959:0,452978,115847 +r1,13659:26193499,39568959:1413401,568825,115847 +k1,13659:24780098,39568959:-1413401 +) +(1,13659:24780098,39568959:1413401,452978,115847 +k1,13659:24780098,39568959:3277 +h1,13659:26190222,39568959:0,411205,112570 +) +k1,13660:32583029,39568959:6215860 +g1,13660:32583029,39568959 +) +v1,13662:6630773,40759425:0,393216,0 +(1,13666:6630773,41080813:25952256,714604,196608 +g1,13666:6630773,41080813 +g1,13666:6630773,41080813 +g1,13666:6434165,41080813 +(1,13666:6434165,41080813:0,714604,196608 +r1,13666:32779637,41080813:26345472,911212,196608 +k1,13666:6434165,41080813:-26345472 +) +(1,13666:6434165,41080813:26345472,714604,196608 +[1,13666:6630773,41080813:25952256,517996,0 +(1,13664:6630773,40973335:25952256,410518,107478 +(1,13663:6630773,40973335:0,0,0 +g1,13663:6630773,40973335 +g1,13663:6630773,40973335 +g1,13663:6303093,40973335 +(1,13663:6303093,40973335:0,0,0 +) +g1,13663:6630773,40973335 +) +g1,13664:7263065,40973335 +g1,13664:7895357,40973335 +g1,13664:12953689,40973335 +g1,13664:13585981,40973335 +g1,13664:16747439,40973335 +g1,13664:18328168,40973335 +g1,13664:18960460,40973335 +k1,13664:18960460,40973335:0 +h1,13664:21805771,40973335:0,0,0 +k1,13664:32583029,40973335:10777258 +g1,13664:32583029,40973335 +) +] +) +g1,13666:32583029,41080813 +g1,13666:6630773,41080813 +g1,13666:6630773,41080813 +g1,13666:32583029,41080813 +g1,13666:32583029,41080813 +) +h1,13666:6630773,41277421:0,0,0 +(1,13672:6630773,42643197:25952256,513147,134348 +h1,13671:6630773,42643197:983040,0,0 +k1,13671:10311876,42643197:169684 +k1,13671:12776630,42643197:169683 +k1,13671:13717017,42643197:169684 +k1,13671:17113693,42643197:169683 +k1,13671:19666266,42643197:169684 +k1,13671:20518834,42643197:169683 +k1,13671:21892414,42643197:169684 +k1,13671:22721390,42643197:169684 +k1,13671:24965287,42643197:169683 +k1,13671:26528922,42643197:169684 +k1,13671:27717690,42643197:169683 +k1,13671:31019995,42643197:169684 +k1,13672:32583029,42643197:0 +k1,13672:32583029,42643197:0 +) +v1,13674:6630773,43833663:0,393216,0 +(1,13678:6630773,44155051:25952256,714604,196608 +g1,13678:6630773,44155051 +g1,13678:6630773,44155051 +g1,13678:6434165,44155051 +(1,13678:6434165,44155051:0,714604,196608 +r1,13678:32779637,44155051:26345472,911212,196608 +k1,13678:6434165,44155051:-26345472 +) +(1,13678:6434165,44155051:26345472,714604,196608 +[1,13678:6630773,44155051:25952256,517996,0 +(1,13676:6630773,44047573:25952256,410518,107478 +(1,13675:6630773,44047573:0,0,0 +g1,13675:6630773,44047573 +g1,13675:6630773,44047573 +g1,13675:6303093,44047573 +(1,13675:6303093,44047573:0,0,0 +) +g1,13675:6630773,44047573 +) +g1,13676:7263065,44047573 +g1,13676:7895357,44047573 +g1,13676:12953689,44047573 +g1,13676:13585981,44047573 +g1,13676:17063584,44047573 +g1,13676:19592750,44047573 +g1,13676:20225042,44047573 +h1,13676:21805771,44047573:0,0,0 +k1,13676:32583029,44047573:10777258 +g1,13676:32583029,44047573 +) +] +) +g1,13678:32583029,44155051 +g1,13678:6630773,44155051 +g1,13678:6630773,44155051 +g1,13678:32583029,44155051 +g1,13678:32583029,44155051 +) +h1,13678:6630773,44351659:0,0,0 +] +(1,13688:32583029,45706769:0,0,0 +g1,13688:32583029,45706769 +) +) +] +(1,13688:6630773,47279633:25952256,0,0 +h1,13688:6630773,47279633:25952256,0,0 +) +] +h1,13688:4262630,4025873:0,0,0 +] +!18025 +}263 +Input:1941:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1942:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1943:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1944:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1945:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1946:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{264 +[1,13734:4262630,47279633:28320399,43253760,0 +(1,13734:4262630,4025873:0,0,0 +[1,13734:-473657,4025873:25952256,0,0 +(1,13734:-473657,-710414:25952256,0,0 +h1,13734:-473657,-710414:0,0,0 +(1,13734:-473657,-710414:0,0,0 +(1,13734:-473657,-710414:0,0,0 +g1,13734:-473657,-710414 +(1,13734:-473657,-710414:65781,0,65781 +g1,13734:-407876,-710414 +[1,13734:-407876,-644633:0,0,0 ] ) -k1,13708:-473657,-710414:-65781 +k1,13734:-473657,-710414:-65781 ) ) -k1,13708:25478599,-710414:25952256 -g1,13708:25478599,-710414 +k1,13734:25478599,-710414:25952256 +g1,13734:25478599,-710414 ) ] ) -[1,13708:6630773,47279633:25952256,43253760,0 -[1,13708:6630773,4812305:25952256,786432,0 -(1,13708:6630773,4812305:25952256,513147,134348 -(1,13708:6630773,4812305:25952256,513147,134348 -g1,13708:3078558,4812305 -[1,13708:3078558,4812305:0,0,0 -(1,13708:3078558,2439708:0,1703936,0 -k1,13708:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13708:2537886,2439708:1179648,16384,0 +[1,13734:6630773,47279633:25952256,43253760,0 +[1,13734:6630773,4812305:25952256,786432,0 +(1,13734:6630773,4812305:25952256,485622,11795 +(1,13734:6630773,4812305:25952256,485622,11795 +g1,13734:3078558,4812305 +[1,13734:3078558,4812305:0,0,0 +(1,13734:3078558,2439708:0,1703936,0 +k1,13734:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13734:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13708:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13734:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13708:3078558,4812305:0,0,0 -(1,13708:3078558,2439708:0,1703936,0 -g1,13708:29030814,2439708 -g1,13708:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13708:36151628,1915420:16384,1179648,0 +[1,13734:3078558,4812305:0,0,0 +(1,13734:3078558,2439708:0,1703936,0 +g1,13734:29030814,2439708 +g1,13734:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13734:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13708:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13734:37855564,2439708:1179648,16384,0 ) ) -k1,13708:3078556,2439708:-34777008 +k1,13734:3078556,2439708:-34777008 ) ] -[1,13708:3078558,4812305:0,0,0 -(1,13708:3078558,49800853:0,16384,2228224 -k1,13708:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13708:2537886,49800853:1179648,16384,0 +[1,13734:3078558,4812305:0,0,0 +(1,13734:3078558,49800853:0,16384,2228224 +k1,13734:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13734:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13708:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13734:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13708:3078558,4812305:0,0,0 -(1,13708:3078558,49800853:0,16384,2228224 -g1,13708:29030814,49800853 -g1,13708:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13708:36151628,51504789:16384,1179648,0 +[1,13734:3078558,4812305:0,0,0 +(1,13734:3078558,49800853:0,16384,2228224 +g1,13734:29030814,49800853 +g1,13734:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13734:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13708:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13734:37855564,49800853:1179648,16384,0 ) ) -k1,13708:3078556,49800853:-34777008 +k1,13734:3078556,49800853:-34777008 ) ] -g1,13708:6630773,4812305 -k1,13708:25712890,4812305:17886740 -g1,13708:29057847,4812305 -g1,13708:29873114,4812305 -) +g1,13734:6630773,4812305 +g1,13734:6630773,4812305 +g1,13734:8769212,4812305 +k1,13734:31387652,4812305:22618440 +) ) ] -[1,13708:6630773,45706769:25952256,40108032,0 -(1,13708:6630773,45706769:25952256,40108032,0 -(1,13708:6630773,45706769:0,0,0 -g1,13708:6630773,45706769 +[1,13734:6630773,45706769:25952256,40108032,0 +(1,13734:6630773,45706769:25952256,40108032,0 +(1,13734:6630773,45706769:0,0,0 +g1,13734:6630773,45706769 ) -[1,13708:6630773,45706769:25952256,40108032,0 -(1,13655:6630773,14661426:25952256,9062689,0 -k1,13655:10523651,14661426:3892878 -h1,13654:10523651,14661426:0,0,0 -(1,13654:10523651,14661426:18166500,9062689,0 -(1,13654:10523651,14661426:18167381,9062712,0 -(1,13654:10523651,14661426:18167381,9062712,0 -(1,13654:10523651,14661426:0,9062712,0 -(1,13654:10523651,14661426:0,14155776,0 -(1,13654:10523651,14661426:28377088,14155776,0 +[1,13734:6630773,45706769:25952256,40108032,0 +(1,13681:6630773,14661426:25952256,9062689,0 +k1,13681:10523651,14661426:3892878 +h1,13680:10523651,14661426:0,0,0 +(1,13680:10523651,14661426:18166500,9062689,0 +(1,13680:10523651,14661426:18167381,9062712,0 +(1,13680:10523651,14661426:18167381,9062712,0 +(1,13680:10523651,14661426:0,9062712,0 +(1,13680:10523651,14661426:0,14155776,0 +(1,13680:10523651,14661426:28377088,14155776,0 ) -k1,13654:10523651,14661426:-28377088 +k1,13680:10523651,14661426:-28377088 ) -) -g1,13654:28691032,14661426 -) -) -) -g1,13655:28690151,14661426 -k1,13655:32583029,14661426:3892878 -) -(1,13663:6630773,15502914:25952256,513147,134348 -h1,13662:6630773,15502914:983040,0,0 -k1,13662:8860308,15502914:292946 -k1,13662:10257536,15502914:292946 -k1,13662:13592007,15502914:292945 -k1,13662:15535150,15502914:292946 -k1,13662:17270543,15502914:292946 -k1,13662:18720199,15502914:292946 -k1,13662:21524484,15502914:292945 -k1,13662:22873870,15502914:292946 -k1,13662:26511774,15502914:292946 -k1,13662:27464012,15502914:292946 -k1,13662:28776042,15502914:292945 -k1,13662:30353494,15502914:292946 -k1,13662:31305732,15502914:292946 -k1,13662:32583029,15502914:0 -) -(1,13663:6630773,16344402:25952256,513147,126483 -k1,13662:9045253,16344402:166595 -k1,13662:10253869,16344402:166594 -k1,13662:11623705,16344402:166595 -k1,13662:14625386,16344402:166594 -k1,13662:15660333,16344402:166595 -k1,13662:17112744,16344402:166595 -k1,13662:19924371,16344402:166594 -k1,13662:21110051,16344402:166595 -k1,13662:23542226,16344402:166595 -(1,13662:23542226,16344402:0,452978,115847 -r1,13662:26362475,16344402:2820249,568825,115847 -k1,13662:23542226,16344402:-2820249 -) -(1,13662:23542226,16344402:2820249,452978,115847 -k1,13662:23542226,16344402:3277 -h1,13662:26359198,16344402:0,411205,112570 -) -k1,13662:26529069,16344402:166594 -k1,13662:28208890,16344402:166595 -k1,13662:29323135,16344402:166594 -k1,13662:30508815,16344402:166595 -k1,13662:32583029,16344402:0 -) -(1,13663:6630773,17185890:25952256,513147,7863 -k1,13662:8241211,17185890:216487 -k1,13662:9614408,17185890:216487 -k1,13662:11115401,17185890:216487 -k1,13662:13999860,17185890:216488 -k1,13662:15235432,17185890:216487 -k1,13662:17189934,17185890:216487 -k1,13662:18065713,17185890:216487 -k1,13662:19301285,17185890:216487 -k1,13662:22029112,17185890:216487 -k1,13662:22861637,17185890:216487 -k1,13662:25744129,17185890:216487 -k1,13662:26612045,17185890:216488 -k1,13662:28722522,17185890:216487 -k1,13662:30731419,17185890:216487 -k1,13662:31563944,17185890:216487 -k1,13662:32583029,17185890:0 -) -(1,13663:6630773,18027378:25952256,505283,126483 -g1,13662:8246890,18027378 -k1,13663:32583030,18027378:22366784 -g1,13663:32583030,18027378 -) -v1,13665:6630773,19217844:0,393216,0 -(1,13669:6630773,19539232:25952256,714604,196608 -g1,13669:6630773,19539232 -g1,13669:6630773,19539232 -g1,13669:6434165,19539232 -(1,13669:6434165,19539232:0,714604,196608 -r1,13669:32779637,19539232:26345472,911212,196608 -k1,13669:6434165,19539232:-26345472 -) -(1,13669:6434165,19539232:26345472,714604,196608 -[1,13669:6630773,19539232:25952256,517996,0 -(1,13667:6630773,19431754:25952256,410518,107478 -(1,13666:6630773,19431754:0,0,0 -g1,13666:6630773,19431754 -g1,13666:6630773,19431754 -g1,13666:6303093,19431754 -(1,13666:6303093,19431754:0,0,0 -) -g1,13666:6630773,19431754 -) -g1,13667:7263065,19431754 -g1,13667:7895357,19431754 -g1,13667:12953689,19431754 -g1,13667:13585981,19431754 -g1,13667:16431293,19431754 -g1,13667:18012022,19431754 -g1,13667:20857333,19431754 -g1,13667:21489625,19431754 -h1,13667:24967227,19431754:0,0,0 -k1,13667:32583029,19431754:7615802 -g1,13667:32583029,19431754 -) -] -) -g1,13669:32583029,19539232 -g1,13669:6630773,19539232 -g1,13669:6630773,19539232 -g1,13669:32583029,19539232 -g1,13669:32583029,19539232 -) -h1,13669:6630773,19735840:0,0,0 -(1,13672:6630773,29388353:25952256,9062689,0 -k1,13672:10523651,29388353:3892878 -h1,13671:10523651,29388353:0,0,0 -(1,13671:10523651,29388353:18166500,9062689,0 -(1,13671:10523651,29388353:18167381,9062712,0 -(1,13671:10523651,29388353:18167381,9062712,0 -(1,13671:10523651,29388353:0,9062712,0 -(1,13671:10523651,29388353:0,14155776,0 -(1,13671:10523651,29388353:28377088,14155776,0 -) -k1,13671:10523651,29388353:-28377088 -) -) -g1,13671:28691032,29388353 -) -) -) -g1,13672:28690151,29388353 -k1,13672:32583029,29388353:3892878 -) -v1,13680:6630773,30754129:0,393216,0 -(1,13708:6630773,43884049:25952256,13523136,589824 -g1,13708:6630773,43884049 -(1,13708:6630773,43884049:25952256,13523136,589824 -(1,13708:6630773,44473873:25952256,14112960,0 -[1,13708:6630773,44473873:25952256,14112960,0 -(1,13708:6630773,44473873:25952256,14086746,0 -r1,13708:6656987,44473873:26214,14086746,0 -[1,13708:6656987,44473873:25899828,14086746,0 -(1,13708:6656987,43884049:25899828,12907098,0 -[1,13708:7246811,43884049:24720180,12907098,0 -(1,13681:7246811,32138836:24720180,1161885,196608 -(1,13680:7246811,32138836:0,1161885,196608 -r1,13708:8794447,32138836:1547636,1358493,196608 -k1,13680:7246811,32138836:-1547636 -) -(1,13680:7246811,32138836:1547636,1161885,196608 -) -k1,13680:8991263,32138836:196816 -k1,13680:12660833,32138836:196817 -k1,13680:13726001,32138836:196816 -k1,13680:15259751,32138836:196816 -k1,13680:17005183,32138836:196816 -k1,13680:17853428,32138836:196817 -k1,13680:19525459,32138836:196816 -k1,13680:24045685,32138836:196816 -k1,13680:28012787,32138836:196816 -k1,13680:28892489,32138836:196817 -k1,13680:30944629,32138836:196816 -k1,13681:31966991,32138836:0 -) -(1,13681:7246811,32980324:24720180,513147,134348 -k1,13680:8717540,32980324:247827 -k1,13680:9581405,32980324:247827 -k1,13680:10848317,32980324:247827 -k1,13680:12840057,32980324:247827 -k1,13680:16120890,32980324:247827 -k1,13680:17565404,32980324:247827 -k1,13680:19197352,32980324:247828 -k1,13680:22106596,32980324:247827 -k1,13680:24345407,32980324:247827 -k1,13680:24949094,32980324:247827 -k1,13680:26434896,32980324:247827 -k1,13680:27342015,32980324:247827 -k1,13680:30590080,32980324:247827 -k1,13680:31966991,32980324:0 -) -(1,13681:7246811,33821812:24720180,513147,134348 -k1,13680:8684841,33821812:241343 -k1,13680:10027189,33821812:241343 -k1,13680:10800029,33821812:241343 -k1,13680:11692800,33821812:241343 -k1,13680:13026628,33821812:241343 -k1,13680:13954133,33821812:241343 -(1,13680:13954133,33821812:0,452978,115847 -r1,13708:16774382,33821812:2820249,568825,115847 -k1,13680:13954133,33821812:-2820249 -) -(1,13680:13954133,33821812:2820249,452978,115847 -k1,13680:13954133,33821812:3277 -h1,13680:16771105,33821812:0,411205,112570 -) -k1,13680:17015725,33821812:241343 -k1,13680:17612928,33821812:241343 -k1,13680:20549767,33821812:241343 -k1,13680:22075616,33821812:241343 -k1,13680:24389863,33821812:241343 -k1,13680:27605885,33821812:241343 -k1,13680:30043339,33821812:241343 -k1,13680:31552148,33821812:241343 -k1,13681:31966991,33821812:0 -) -(1,13681:7246811,34663300:24720180,473825,126483 -k1,13681:31966992,34663300:20776224 -g1,13681:31966992,34663300 -) -v1,13683:7246811,35853766:0,393216,0 -(1,13691:7246811,38839866:24720180,3379316,196608 -g1,13691:7246811,38839866 -g1,13691:7246811,38839866 -g1,13691:7050203,38839866 -(1,13691:7050203,38839866:0,3379316,196608 -r1,13708:32163599,38839866:25113396,3575924,196608 -k1,13691:7050203,38839866:-25113396 -) -(1,13691:7050203,38839866:25113396,3379316,196608 -[1,13691:7246811,38839866:24720180,3182708,0 -(1,13685:7246811,36067676:24720180,410518,101187 -(1,13684:7246811,36067676:0,0,0 -g1,13684:7246811,36067676 -g1,13684:7246811,36067676 -g1,13684:6919131,36067676 -(1,13684:6919131,36067676:0,0,0 -) -g1,13684:7246811,36067676 -) -g1,13685:11356705,36067676 -g1,13685:12305143,36067676 -k1,13685:12305143,36067676:0 -h1,13685:17995766,36067676:0,0,0 -k1,13685:31966991,36067676:13971225 -g1,13685:31966991,36067676 -) -(1,13686:7246811,36733854:24720180,404226,101187 -h1,13686:7246811,36733854:0,0,0 -g1,13686:7562957,36733854 -g1,13686:7879103,36733854 -g1,13686:8195249,36733854 -g1,13686:8511395,36733854 -g1,13686:8827541,36733854 -g1,13686:9143687,36733854 -g1,13686:9459833,36733854 -g1,13686:9775979,36733854 -g1,13686:10092125,36733854 -g1,13686:10408271,36733854 -g1,13686:10724417,36733854 -g1,13686:11040563,36733854 -g1,13686:11356709,36733854 -g1,13686:11672855,36733854 -g1,13686:11989001,36733854 -g1,13686:12305147,36733854 -g1,13686:12621293,36733854 -g1,13686:12937439,36733854 -g1,13686:13253585,36733854 -g1,13686:13569731,36733854 -g1,13686:13885877,36733854 -g1,13686:14202023,36733854 -g1,13686:14518169,36733854 -g1,13686:16731189,36733854 -g1,13686:17363481,36733854 -g1,13686:20841085,36733854 -g1,13686:23370251,36733854 -g1,13686:26215563,36733854 -h1,13686:27796291,36733854:0,0,0 -k1,13686:31966991,36733854:4170700 -g1,13686:31966991,36733854 -) -(1,13687:7246811,37400032:24720180,404226,107478 -h1,13687:7246811,37400032:0,0,0 -g1,13687:8195248,37400032 -g1,13687:9143686,37400032 -g1,13687:12937435,37400032 -g1,13687:13569727,37400032 -g1,13687:16098893,37400032 -g1,13687:18944205,37400032 -g1,13687:20524934,37400032 -h1,13687:20841080,37400032:0,0,0 -k1,13687:31966991,37400032:11125911 -g1,13687:31966991,37400032 -) -(1,13688:7246811,38066210:24720180,404226,107478 -h1,13688:7246811,38066210:0,0,0 -g1,13688:7562957,38066210 -g1,13688:7879103,38066210 -g1,13688:8195249,38066210 -g1,13688:8511395,38066210 -g1,13688:8827541,38066210 -g1,13688:9143687,38066210 -g1,13688:13253581,38066210 -h1,13688:13569727,38066210:0,0,0 -k1,13688:31966991,38066210:18397264 -g1,13688:31966991,38066210 -) -(1,13689:7246811,38732388:24720180,410518,107478 -h1,13689:7246811,38732388:0,0,0 -g1,13689:7562957,38732388 -g1,13689:7879103,38732388 -g1,13689:8195249,38732388 -g1,13689:8511395,38732388 -g1,13689:8827541,38732388 -g1,13689:9143687,38732388 -g1,13689:14202019,38732388 -g1,13689:14834311,38732388 -g1,13689:18944206,38732388 -g1,13689:21789517,38732388 -g1,13689:22421809,38732388 -h1,13689:26531703,38732388:0,0,0 -k1,13689:31966991,38732388:5435288 -g1,13689:31966991,38732388 -) -] -) -g1,13691:31966991,38839866 -g1,13691:7246811,38839866 -g1,13691:7246811,38839866 -g1,13691:31966991,38839866 -g1,13691:31966991,38839866 -) -h1,13691:7246811,39036474:0,0,0 -(1,13695:7246811,40402250:24720180,513147,126483 -h1,13694:7246811,40402250:983040,0,0 -k1,13694:10008077,40402250:184390 -k1,13694:13497448,40402250:184390 -k1,13694:14550191,40402250:184391 -k1,13694:16071515,40402250:184390 -k1,13694:17786171,40402250:184390 -k1,13694:18621989,40402250:184390 -k1,13694:21144048,40402250:184390 -k1,13694:22347524,40402250:184391 -k1,13694:24324324,40402250:184390 -k1,13694:25168006,40402250:184390 -k1,13694:26371481,40402250:184390 -k1,13694:28449862,40402250:184391 -k1,13694:30147478,40402250:184390 -k1,13694:30947906,40402250:184390 -k1,13694:31966991,40402250:0 -) -(1,13695:7246811,41243738:24720180,513147,134348 -k1,13694:9938170,41243738:142664 -k1,13694:10766997,41243738:142665 -k1,13694:12231522,41243738:142664 -k1,13694:13033479,41243738:142665 -k1,13694:14195228,41243738:142664 -k1,13694:16355747,41243738:142665 -k1,13694:17986734,41243738:142664 -k1,13694:18997751,41243738:142665 -k1,13694:20232900,41243738:142664 -k1,13694:21061727,41243738:142665 -(1,13694:21061727,41243738:0,452978,115847 -r1,13708:23881976,41243738:2820249,568825,115847 -k1,13694:21061727,41243738:-2820249 -) -(1,13694:21061727,41243738:2820249,452978,115847 -k1,13694:21061727,41243738:3277 -h1,13694:23878699,41243738:0,411205,112570 -) -k1,13694:24198310,41243738:142664 -k1,13694:27036471,41243738:142665 -(1,13694:27036471,41243738:0,452978,115847 -r1,13708:31966991,41243738:4930520,568825,115847 -k1,13694:27036471,41243738:-4930520 -) -(1,13694:27036471,41243738:4930520,452978,115847 -k1,13694:27036471,41243738:3277 -h1,13694:31963714,41243738:0,411205,112570 -) -k1,13694:31966991,41243738:0 -) -(1,13695:7246811,42085226:24720180,505283,126483 -k1,13694:8877402,42085226:236640 -k1,13694:9469901,42085226:236639 -k1,13694:11900686,42085226:236640 -k1,13694:14221371,42085226:236640 -k1,13694:15742516,42085226:236639 -k1,13694:17991111,42085226:236640 -k1,13694:18972895,42085226:236640 -k1,13694:19860962,42085226:236639 -k1,13694:21190087,42085226:236640 -k1,13694:22197430,42085226:236640 -k1,13694:25874054,42085226:236639 -k1,13694:28029588,42085226:236640 -k1,13694:31966991,42085226:0 -) -(1,13695:7246811,42926714:24720180,513147,126483 -k1,13694:9292564,42926714:191084 -k1,13694:10293018,42926714:191084 -k1,13694:11503187,42926714:191084 -k1,13694:13252718,42926714:191085 -k1,13694:15601903,42926714:191084 -k1,13694:17182350,42926714:191084 -k1,13694:19056399,42926714:191084 -k1,13694:21083802,42926714:191084 -k1,13694:22324773,42926714:191084 -k1,13694:24794544,42926714:191084 -h1,13694:26163591,42926714:0,0,0 -k1,13694:26354676,42926714:191085 -k1,13694:27493411,42926714:191084 -k1,13694:28455198,42926714:191084 -k1,13694:31307699,42926714:191084 -k1,13694:31966991,42926714:0 -) -(1,13695:7246811,43768202:24720180,513147,115847 -g1,13694:8465125,43768202 -g1,13694:9756839,43768202 -g1,13694:10623224,43768202 -(1,13694:10623224,43768202:0,452978,115847 -r1,13708:13443473,43768202:2820249,568825,115847 -k1,13694:10623224,43768202:-2820249 -) -(1,13694:10623224,43768202:2820249,452978,115847 -k1,13694:10623224,43768202:3277 -h1,13694:13440196,43768202:0,411205,112570 -) -g1,13694:13816372,43768202 -g1,13694:15034686,43768202 -g1,13694:15648758,43768202 -g1,13694:18543483,43768202 -g1,13694:19552082,43768202 -g1,13694:21636782,43768202 -(1,13694:21636782,43768202:0,452978,115847 -r1,13708:26567302,43768202:4930520,568825,115847 -k1,13694:21636782,43768202:-4930520 -) -(1,13694:21636782,43768202:4930520,452978,115847 -k1,13694:21636782,43768202:3277 -h1,13694:26564025,43768202:0,411205,112570 -) -g1,13694:26940201,43768202 -g1,13694:27670927,43768202 -k1,13695:31966991,43768202:2643901 -g1,13695:31966991,43768202 -) -] -) -] -r1,13708:32583029,44473873:26214,14086746,0 -) -] -) -) -g1,13708:32583029,43884049 -) -] -(1,13708:32583029,45706769:0,0,0 -g1,13708:32583029,45706769 +) +g1,13680:28691032,14661426 +) +) +) +g1,13681:28690151,14661426 +k1,13681:32583029,14661426:3892878 +) +(1,13689:6630773,15502914:25952256,513147,134348 +h1,13688:6630773,15502914:983040,0,0 +k1,13688:8860308,15502914:292946 +k1,13688:10257536,15502914:292946 +k1,13688:13592007,15502914:292945 +k1,13688:15535150,15502914:292946 +k1,13688:17270543,15502914:292946 +k1,13688:18720199,15502914:292946 +k1,13688:21524484,15502914:292945 +k1,13688:22873870,15502914:292946 +k1,13688:26511774,15502914:292946 +k1,13688:27464012,15502914:292946 +k1,13688:28776042,15502914:292945 +k1,13688:30353494,15502914:292946 +k1,13688:31305732,15502914:292946 +k1,13688:32583029,15502914:0 +) +(1,13689:6630773,16344402:25952256,513147,126483 +k1,13688:9045253,16344402:166595 +k1,13688:10253869,16344402:166594 +k1,13688:11623705,16344402:166595 +k1,13688:14625386,16344402:166594 +k1,13688:15660333,16344402:166595 +k1,13688:17112744,16344402:166595 +k1,13688:19924371,16344402:166594 +k1,13688:21110051,16344402:166595 +k1,13688:23542226,16344402:166595 +(1,13688:23542226,16344402:0,452978,115847 +r1,13688:26362475,16344402:2820249,568825,115847 +k1,13688:23542226,16344402:-2820249 +) +(1,13688:23542226,16344402:2820249,452978,115847 +k1,13688:23542226,16344402:3277 +h1,13688:26359198,16344402:0,411205,112570 +) +k1,13688:26529069,16344402:166594 +k1,13688:28208890,16344402:166595 +k1,13688:29323135,16344402:166594 +k1,13688:30508815,16344402:166595 +k1,13688:32583029,16344402:0 +) +(1,13689:6630773,17185890:25952256,513147,7863 +k1,13688:8241211,17185890:216487 +k1,13688:9614408,17185890:216487 +k1,13688:11115401,17185890:216487 +k1,13688:13999860,17185890:216488 +k1,13688:15235432,17185890:216487 +k1,13688:17189934,17185890:216487 +k1,13688:18065713,17185890:216487 +k1,13688:19301285,17185890:216487 +k1,13688:22029112,17185890:216487 +k1,13688:22861637,17185890:216487 +k1,13688:25744129,17185890:216487 +k1,13688:26612045,17185890:216488 +k1,13688:28722522,17185890:216487 +k1,13688:30731419,17185890:216487 +k1,13688:31563944,17185890:216487 +k1,13688:32583029,17185890:0 +) +(1,13689:6630773,18027378:25952256,505283,126483 +g1,13688:8246890,18027378 +k1,13689:32583030,18027378:22366784 +g1,13689:32583030,18027378 +) +v1,13691:6630773,19217844:0,393216,0 +(1,13695:6630773,19539232:25952256,714604,196608 +g1,13695:6630773,19539232 +g1,13695:6630773,19539232 +g1,13695:6434165,19539232 +(1,13695:6434165,19539232:0,714604,196608 +r1,13695:32779637,19539232:26345472,911212,196608 +k1,13695:6434165,19539232:-26345472 +) +(1,13695:6434165,19539232:26345472,714604,196608 +[1,13695:6630773,19539232:25952256,517996,0 +(1,13693:6630773,19431754:25952256,410518,107478 +(1,13692:6630773,19431754:0,0,0 +g1,13692:6630773,19431754 +g1,13692:6630773,19431754 +g1,13692:6303093,19431754 +(1,13692:6303093,19431754:0,0,0 +) +g1,13692:6630773,19431754 +) +g1,13693:7263065,19431754 +g1,13693:7895357,19431754 +g1,13693:12953689,19431754 +g1,13693:13585981,19431754 +g1,13693:16431293,19431754 +g1,13693:18012022,19431754 +g1,13693:20857333,19431754 +g1,13693:21489625,19431754 +h1,13693:24967227,19431754:0,0,0 +k1,13693:32583029,19431754:7615802 +g1,13693:32583029,19431754 +) +] +) +g1,13695:32583029,19539232 +g1,13695:6630773,19539232 +g1,13695:6630773,19539232 +g1,13695:32583029,19539232 +g1,13695:32583029,19539232 +) +h1,13695:6630773,19735840:0,0,0 +(1,13698:6630773,29388353:25952256,9062689,0 +k1,13698:10523651,29388353:3892878 +h1,13697:10523651,29388353:0,0,0 +(1,13697:10523651,29388353:18166500,9062689,0 +(1,13697:10523651,29388353:18167381,9062712,0 +(1,13697:10523651,29388353:18167381,9062712,0 +(1,13697:10523651,29388353:0,9062712,0 +(1,13697:10523651,29388353:0,14155776,0 +(1,13697:10523651,29388353:28377088,14155776,0 +) +k1,13697:10523651,29388353:-28377088 +) +) +g1,13697:28691032,29388353 +) +) +) +g1,13698:28690151,29388353 +k1,13698:32583029,29388353:3892878 +) +v1,13706:6630773,30754129:0,393216,0 +(1,13734:6630773,43884049:25952256,13523136,589824 +g1,13734:6630773,43884049 +(1,13734:6630773,43884049:25952256,13523136,589824 +(1,13734:6630773,44473873:25952256,14112960,0 +[1,13734:6630773,44473873:25952256,14112960,0 +(1,13734:6630773,44473873:25952256,14086746,0 +r1,13734:6656987,44473873:26214,14086746,0 +[1,13734:6656987,44473873:25899828,14086746,0 +(1,13734:6656987,43884049:25899828,12907098,0 +[1,13734:7246811,43884049:24720180,12907098,0 +(1,13707:7246811,32138836:24720180,1161885,196608 +(1,13706:7246811,32138836:0,1161885,196608 +r1,13734:8794447,32138836:1547636,1358493,196608 +k1,13706:7246811,32138836:-1547636 +) +(1,13706:7246811,32138836:1547636,1161885,196608 +) +k1,13706:8991263,32138836:196816 +k1,13706:12660833,32138836:196817 +k1,13706:13726001,32138836:196816 +k1,13706:15259751,32138836:196816 +k1,13706:17005183,32138836:196816 +k1,13706:17853428,32138836:196817 +k1,13706:19525459,32138836:196816 +k1,13706:24045685,32138836:196816 +k1,13706:28012787,32138836:196816 +k1,13706:28892489,32138836:196817 +k1,13706:30944629,32138836:196816 +k1,13707:31966991,32138836:0 +) +(1,13707:7246811,32980324:24720180,513147,134348 +k1,13706:8717540,32980324:247827 +k1,13706:9581405,32980324:247827 +k1,13706:10848317,32980324:247827 +k1,13706:12840057,32980324:247827 +k1,13706:16120890,32980324:247827 +k1,13706:17565404,32980324:247827 +k1,13706:19197352,32980324:247828 +k1,13706:22106596,32980324:247827 +k1,13706:24345407,32980324:247827 +k1,13706:24949094,32980324:247827 +k1,13706:26434896,32980324:247827 +k1,13706:27342015,32980324:247827 +k1,13706:30590080,32980324:247827 +k1,13706:31966991,32980324:0 +) +(1,13707:7246811,33821812:24720180,513147,134348 +k1,13706:8684841,33821812:241343 +k1,13706:10027189,33821812:241343 +k1,13706:10800029,33821812:241343 +k1,13706:11692800,33821812:241343 +k1,13706:13026628,33821812:241343 +k1,13706:13954133,33821812:241343 +(1,13706:13954133,33821812:0,452978,115847 +r1,13734:16774382,33821812:2820249,568825,115847 +k1,13706:13954133,33821812:-2820249 +) +(1,13706:13954133,33821812:2820249,452978,115847 +k1,13706:13954133,33821812:3277 +h1,13706:16771105,33821812:0,411205,112570 +) +k1,13706:17015725,33821812:241343 +k1,13706:17612928,33821812:241343 +k1,13706:20549767,33821812:241343 +k1,13706:22075616,33821812:241343 +k1,13706:24389863,33821812:241343 +k1,13706:27605885,33821812:241343 +k1,13706:30043339,33821812:241343 +k1,13706:31552148,33821812:241343 +k1,13707:31966991,33821812:0 +) +(1,13707:7246811,34663300:24720180,473825,126483 +k1,13707:31966992,34663300:20776224 +g1,13707:31966992,34663300 +) +v1,13709:7246811,35853766:0,393216,0 +(1,13717:7246811,38839866:24720180,3379316,196608 +g1,13717:7246811,38839866 +g1,13717:7246811,38839866 +g1,13717:7050203,38839866 +(1,13717:7050203,38839866:0,3379316,196608 +r1,13734:32163599,38839866:25113396,3575924,196608 +k1,13717:7050203,38839866:-25113396 +) +(1,13717:7050203,38839866:25113396,3379316,196608 +[1,13717:7246811,38839866:24720180,3182708,0 +(1,13711:7246811,36067676:24720180,410518,101187 +(1,13710:7246811,36067676:0,0,0 +g1,13710:7246811,36067676 +g1,13710:7246811,36067676 +g1,13710:6919131,36067676 +(1,13710:6919131,36067676:0,0,0 +) +g1,13710:7246811,36067676 +) +g1,13711:11356705,36067676 +g1,13711:12305143,36067676 +k1,13711:12305143,36067676:0 +h1,13711:17995766,36067676:0,0,0 +k1,13711:31966991,36067676:13971225 +g1,13711:31966991,36067676 +) +(1,13712:7246811,36733854:24720180,404226,101187 +h1,13712:7246811,36733854:0,0,0 +g1,13712:7562957,36733854 +g1,13712:7879103,36733854 +g1,13712:8195249,36733854 +g1,13712:8511395,36733854 +g1,13712:8827541,36733854 +g1,13712:9143687,36733854 +g1,13712:9459833,36733854 +g1,13712:9775979,36733854 +g1,13712:10092125,36733854 +g1,13712:10408271,36733854 +g1,13712:10724417,36733854 +g1,13712:11040563,36733854 +g1,13712:11356709,36733854 +g1,13712:11672855,36733854 +g1,13712:11989001,36733854 +g1,13712:12305147,36733854 +g1,13712:12621293,36733854 +g1,13712:12937439,36733854 +g1,13712:13253585,36733854 +g1,13712:13569731,36733854 +g1,13712:13885877,36733854 +g1,13712:14202023,36733854 +g1,13712:14518169,36733854 +g1,13712:16731189,36733854 +g1,13712:17363481,36733854 +g1,13712:20841085,36733854 +g1,13712:23370251,36733854 +g1,13712:26215563,36733854 +h1,13712:27796291,36733854:0,0,0 +k1,13712:31966991,36733854:4170700 +g1,13712:31966991,36733854 +) +(1,13713:7246811,37400032:24720180,404226,107478 +h1,13713:7246811,37400032:0,0,0 +g1,13713:8195248,37400032 +g1,13713:9143686,37400032 +g1,13713:12937435,37400032 +g1,13713:13569727,37400032 +g1,13713:16098893,37400032 +g1,13713:18944205,37400032 +g1,13713:20524934,37400032 +h1,13713:20841080,37400032:0,0,0 +k1,13713:31966991,37400032:11125911 +g1,13713:31966991,37400032 +) +(1,13714:7246811,38066210:24720180,404226,107478 +h1,13714:7246811,38066210:0,0,0 +g1,13714:7562957,38066210 +g1,13714:7879103,38066210 +g1,13714:8195249,38066210 +g1,13714:8511395,38066210 +g1,13714:8827541,38066210 +g1,13714:9143687,38066210 +g1,13714:13253581,38066210 +h1,13714:13569727,38066210:0,0,0 +k1,13714:31966991,38066210:18397264 +g1,13714:31966991,38066210 +) +(1,13715:7246811,38732388:24720180,410518,107478 +h1,13715:7246811,38732388:0,0,0 +g1,13715:7562957,38732388 +g1,13715:7879103,38732388 +g1,13715:8195249,38732388 +g1,13715:8511395,38732388 +g1,13715:8827541,38732388 +g1,13715:9143687,38732388 +g1,13715:14202019,38732388 +g1,13715:14834311,38732388 +g1,13715:18944206,38732388 +g1,13715:21789517,38732388 +g1,13715:22421809,38732388 +h1,13715:26531703,38732388:0,0,0 +k1,13715:31966991,38732388:5435288 +g1,13715:31966991,38732388 +) +] +) +g1,13717:31966991,38839866 +g1,13717:7246811,38839866 +g1,13717:7246811,38839866 +g1,13717:31966991,38839866 +g1,13717:31966991,38839866 +) +h1,13717:7246811,39036474:0,0,0 +(1,13721:7246811,40402250:24720180,513147,126483 +h1,13720:7246811,40402250:983040,0,0 +k1,13720:10008077,40402250:184390 +k1,13720:13497448,40402250:184390 +k1,13720:14550191,40402250:184391 +k1,13720:16071515,40402250:184390 +k1,13720:17786171,40402250:184390 +k1,13720:18621989,40402250:184390 +k1,13720:21144048,40402250:184390 +k1,13720:22347524,40402250:184391 +k1,13720:24324324,40402250:184390 +k1,13720:25168006,40402250:184390 +k1,13720:26371481,40402250:184390 +k1,13720:28449862,40402250:184391 +k1,13720:30147478,40402250:184390 +k1,13720:30947906,40402250:184390 +k1,13720:31966991,40402250:0 +) +(1,13721:7246811,41243738:24720180,513147,134348 +k1,13720:9938170,41243738:142664 +k1,13720:10766997,41243738:142665 +k1,13720:12231522,41243738:142664 +k1,13720:13033479,41243738:142665 +k1,13720:14195228,41243738:142664 +k1,13720:16355747,41243738:142665 +k1,13720:17986734,41243738:142664 +k1,13720:18997751,41243738:142665 +k1,13720:20232900,41243738:142664 +k1,13720:21061727,41243738:142665 +(1,13720:21061727,41243738:0,452978,115847 +r1,13734:23881976,41243738:2820249,568825,115847 +k1,13720:21061727,41243738:-2820249 +) +(1,13720:21061727,41243738:2820249,452978,115847 +k1,13720:21061727,41243738:3277 +h1,13720:23878699,41243738:0,411205,112570 +) +k1,13720:24198310,41243738:142664 +k1,13720:27036471,41243738:142665 +(1,13720:27036471,41243738:0,452978,115847 +r1,13734:31966991,41243738:4930520,568825,115847 +k1,13720:27036471,41243738:-4930520 +) +(1,13720:27036471,41243738:4930520,452978,115847 +k1,13720:27036471,41243738:3277 +h1,13720:31963714,41243738:0,411205,112570 +) +k1,13720:31966991,41243738:0 +) +(1,13721:7246811,42085226:24720180,505283,126483 +k1,13720:8877402,42085226:236640 +k1,13720:9469901,42085226:236639 +k1,13720:11900686,42085226:236640 +k1,13720:14221371,42085226:236640 +k1,13720:15742516,42085226:236639 +k1,13720:17991111,42085226:236640 +k1,13720:18972895,42085226:236640 +k1,13720:19860962,42085226:236639 +k1,13720:21190087,42085226:236640 +k1,13720:22197430,42085226:236640 +k1,13720:25874054,42085226:236639 +k1,13720:28029588,42085226:236640 +k1,13720:31966991,42085226:0 +) +(1,13721:7246811,42926714:24720180,513147,126483 +k1,13720:9292564,42926714:191084 +k1,13720:10293018,42926714:191084 +k1,13720:11503187,42926714:191084 +k1,13720:13252718,42926714:191085 +k1,13720:15601903,42926714:191084 +k1,13720:17182350,42926714:191084 +k1,13720:19056399,42926714:191084 +k1,13720:21083802,42926714:191084 +k1,13720:22324773,42926714:191084 +k1,13720:24794544,42926714:191084 +h1,13720:26163591,42926714:0,0,0 +k1,13720:26354676,42926714:191085 +k1,13720:27493411,42926714:191084 +k1,13720:28455198,42926714:191084 +k1,13720:31307699,42926714:191084 +k1,13720:31966991,42926714:0 +) +(1,13721:7246811,43768202:24720180,513147,115847 +g1,13720:8465125,43768202 +g1,13720:9756839,43768202 +g1,13720:10623224,43768202 +(1,13720:10623224,43768202:0,452978,115847 +r1,13734:13443473,43768202:2820249,568825,115847 +k1,13720:10623224,43768202:-2820249 +) +(1,13720:10623224,43768202:2820249,452978,115847 +k1,13720:10623224,43768202:3277 +h1,13720:13440196,43768202:0,411205,112570 +) +g1,13720:13816372,43768202 +g1,13720:15034686,43768202 +g1,13720:15648758,43768202 +g1,13720:18543483,43768202 +g1,13720:19552082,43768202 +g1,13720:21636782,43768202 +(1,13720:21636782,43768202:0,452978,115847 +r1,13734:26567302,43768202:4930520,568825,115847 +k1,13720:21636782,43768202:-4930520 +) +(1,13720:21636782,43768202:4930520,452978,115847 +k1,13720:21636782,43768202:3277 +h1,13720:26564025,43768202:0,411205,112570 +) +g1,13720:26940201,43768202 +g1,13720:27670927,43768202 +k1,13721:31966991,43768202:2643901 +g1,13721:31966991,43768202 +) +] +) +] +r1,13734:32583029,44473873:26214,14086746,0 +) +] +) +) +g1,13734:32583029,43884049 +) +] +(1,13734:32583029,45706769:0,0,0 +g1,13734:32583029,45706769 ) ) ] -(1,13708:6630773,47279633:25952256,0,0 -h1,13708:6630773,47279633:25952256,0,0 +(1,13734:6630773,47279633:25952256,0,0 +h1,13734:6630773,47279633:25952256,0,0 ) ] -h1,13708:4262630,4025873:0,0,0 +h1,13734:4262630,4025873:0,0,0 ] -!17029 -}263 -Input:1950:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1951:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1952:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1953:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1954:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1955:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1956:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1957:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1958:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1959:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1960:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1961:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1962:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1963:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1964:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1965:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1966:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1967:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1968:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1969:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1970:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1971:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1972:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1973:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1974:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2162 -{264 -[1,13763:4262630,47279633:28320399,43253760,0 -(1,13763:4262630,4025873:0,0,0 -[1,13763:-473657,4025873:25952256,0,0 -(1,13763:-473657,-710414:25952256,0,0 -h1,13763:-473657,-710414:0,0,0 -(1,13763:-473657,-710414:0,0,0 -(1,13763:-473657,-710414:0,0,0 -g1,13763:-473657,-710414 -(1,13763:-473657,-710414:65781,0,65781 -g1,13763:-407876,-710414 -[1,13763:-407876,-644633:0,0,0 +!17025 +}264 +Input:1947:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1948:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1949:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1950:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1951:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1952:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1953:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1954:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1955:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1956:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1957:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1958:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1959:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1960:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1961:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1962:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1963:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1964:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1965:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1966:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1967:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1968:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1969:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1970:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1971:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2312 +{265 +[1,13789:4262630,47279633:28320399,43253760,0 +(1,13789:4262630,4025873:0,0,0 +[1,13789:-473657,4025873:25952256,0,0 +(1,13789:-473657,-710414:25952256,0,0 +h1,13789:-473657,-710414:0,0,0 +(1,13789:-473657,-710414:0,0,0 +(1,13789:-473657,-710414:0,0,0 +g1,13789:-473657,-710414 +(1,13789:-473657,-710414:65781,0,65781 +g1,13789:-407876,-710414 +[1,13789:-407876,-644633:0,0,0 ] ) -k1,13763:-473657,-710414:-65781 +k1,13789:-473657,-710414:-65781 ) ) -k1,13763:25478599,-710414:25952256 -g1,13763:25478599,-710414 +k1,13789:25478599,-710414:25952256 +g1,13789:25478599,-710414 ) ] ) -[1,13763:6630773,47279633:25952256,43253760,0 -[1,13763:6630773,4812305:25952256,786432,0 -(1,13763:6630773,4812305:25952256,505283,11795 -(1,13763:6630773,4812305:25952256,505283,11795 -g1,13763:3078558,4812305 -[1,13763:3078558,4812305:0,0,0 -(1,13763:3078558,2439708:0,1703936,0 -k1,13763:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13763:2537886,2439708:1179648,16384,0 +[1,13789:6630773,47279633:25952256,43253760,0 +[1,13789:6630773,4812305:25952256,786432,0 +(1,13789:6630773,4812305:25952256,513147,134348 +(1,13789:6630773,4812305:25952256,513147,134348 +g1,13789:3078558,4812305 +[1,13789:3078558,4812305:0,0,0 +(1,13789:3078558,2439708:0,1703936,0 +k1,13789:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13789:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13763:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13789:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13763:3078558,4812305:0,0,0 -(1,13763:3078558,2439708:0,1703936,0 -g1,13763:29030814,2439708 -g1,13763:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13763:36151628,1915420:16384,1179648,0 +[1,13789:3078558,4812305:0,0,0 +(1,13789:3078558,2439708:0,1703936,0 +g1,13789:29030814,2439708 +g1,13789:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13789:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13763:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13789:37855564,2439708:1179648,16384,0 ) ) -k1,13763:3078556,2439708:-34777008 +k1,13789:3078556,2439708:-34777008 ) ] -[1,13763:3078558,4812305:0,0,0 -(1,13763:3078558,49800853:0,16384,2228224 -k1,13763:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13763:2537886,49800853:1179648,16384,0 +[1,13789:3078558,4812305:0,0,0 +(1,13789:3078558,49800853:0,16384,2228224 +k1,13789:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13789:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13763:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13789:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13763:3078558,4812305:0,0,0 -(1,13763:3078558,49800853:0,16384,2228224 -g1,13763:29030814,49800853 -g1,13763:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13763:36151628,51504789:16384,1179648,0 +[1,13789:3078558,4812305:0,0,0 +(1,13789:3078558,49800853:0,16384,2228224 +g1,13789:29030814,49800853 +g1,13789:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13789:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13763:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13789:37855564,49800853:1179648,16384,0 ) ) -k1,13763:3078556,49800853:-34777008 +k1,13789:3078556,49800853:-34777008 ) ] -g1,13763:6630773,4812305 -g1,13763:6630773,4812305 -g1,13763:8724648,4812305 -k1,13763:31387652,4812305:22663004 +g1,13789:6630773,4812305 +k1,13789:25712890,4812305:17886740 +g1,13789:29057847,4812305 +g1,13789:29873114,4812305 ) ) ] -[1,13763:6630773,45706769:25952256,40108032,0 -(1,13763:6630773,45706769:25952256,40108032,0 -(1,13763:6630773,45706769:0,0,0 -g1,13763:6630773,45706769 +[1,13789:6630773,45706769:25952256,40108032,0 +(1,13789:6630773,45706769:25952256,40108032,0 +(1,13789:6630773,45706769:0,0,0 +g1,13789:6630773,45706769 ) -[1,13763:6630773,45706769:25952256,40108032,0 -v1,13708:6630773,6254097:0,393216,0 -(1,13708:6630773,9095353:25952256,3234472,616038 -g1,13708:6630773,9095353 -(1,13708:6630773,9095353:25952256,3234472,616038 -(1,13708:6630773,9711391:25952256,3850510,0 -[1,13708:6630773,9711391:25952256,3850510,0 -(1,13708:6630773,9685177:25952256,3824296,0 -r1,13708:6656987,9685177:26214,3824296,0 -[1,13708:6656987,9685177:25899828,3824296,0 -(1,13708:6656987,9095353:25899828,2644648,0 -[1,13708:7246811,9095353:24720180,2644648,0 -v1,13699:7246811,6843921:0,393216,0 -(1,13705:7246811,8374457:24720180,1923752,196608 -g1,13705:7246811,8374457 -g1,13705:7246811,8374457 -g1,13705:7050203,8374457 -(1,13705:7050203,8374457:0,1923752,196608 -r1,13708:32163599,8374457:25113396,2120360,196608 -k1,13705:7050203,8374457:-25113396 -) -(1,13705:7050203,8374457:25113396,1923752,196608 -[1,13705:7246811,8374457:24720180,1727144,0 -(1,13701:7246811,6940914:24720180,293601,101187 -(1,13700:7246811,6940914:0,0,0 -g1,13700:7246811,6940914 -g1,13700:7246811,6940914 -g1,13700:6919131,6940914 -(1,13700:6919131,6940914:0,0,0 -) -g1,13700:7246811,6940914 -) -g1,13701:7879103,6940914 -h1,13701:8195249,6940914:0,0,0 -k1,13701:31966991,6940914:23771742 -g1,13701:31966991,6940914 -) -(1,13702:7246811,7607092:24720180,410518,107478 -h1,13702:7246811,7607092:0,0,0 -g1,13702:7562957,7607092 -g1,13702:7879103,7607092 -g1,13702:12937435,7607092 -g1,13702:13569727,7607092 -k1,13702:13569727,7607092:0 -h1,13702:16731184,7607092:0,0,0 -k1,13702:31966991,7607092:15235807 -g1,13702:31966991,7607092 -) -(1,13703:7246811,8273270:24720180,404226,101187 -h1,13703:7246811,8273270:0,0,0 -g1,13703:7562957,8273270 -g1,13703:7879103,8273270 -g1,13703:8195249,8273270 -g1,13703:8511395,8273270 -g1,13703:8827541,8273270 -g1,13703:9143687,8273270 -g1,13703:9459833,8273270 -g1,13703:9775979,8273270 -g1,13703:10092125,8273270 -g1,13703:10408271,8273270 -g1,13703:10724417,8273270 -g1,13703:11040563,8273270 -g1,13703:11356709,8273270 -g1,13703:14202020,8273270 -g1,13703:14834312,8273270 -g1,13703:20524935,8273270 -g1,13703:21157227,8273270 -k1,13703:21157227,8273270:0 -h1,13703:27480140,8273270:0,0,0 -k1,13703:31966991,8273270:4486851 -g1,13703:31966991,8273270 -) -] -) -g1,13705:31966991,8374457 -g1,13705:7246811,8374457 -g1,13705:7246811,8374457 -g1,13705:31966991,8374457 -g1,13705:31966991,8374457 -) -h1,13705:7246811,8571065:0,0,0 -] -) -] -r1,13708:32583029,9685177:26214,3824296,0 -) -] -) -) -g1,13708:32583029,9095353 -) -h1,13708:6630773,9711391:0,0,0 -(1,13715:6630773,10979262:25952256,513147,126483 -h1,13714:6630773,10979262:983040,0,0 -k1,13714:8423969,10979262:182321 -k1,13714:9625375,10979262:182321 -k1,13714:11191816,10979262:182321 -k1,13714:14035555,10979262:182322 -k1,13714:15086228,10979262:182321 -k1,13714:17197929,10979262:182321 -k1,13714:17736110,10979262:182321 -k1,13714:19195728,10979262:182321 -k1,13714:20772000,10979262:182321 -k1,13714:23729115,10979262:182321 -k1,13714:25973854,10979262:182321 -k1,13714:26784011,10979262:182322 -k1,13714:28169573,10979262:182321 -k1,13714:29718975,10979262:182321 -k1,13714:30920381,10979262:182321 -k1,13715:32583029,10979262:0 -) -(1,13715:6630773,11820750:25952256,513147,134348 -k1,13714:7855247,11820750:188350 -k1,13714:8702890,11820750:188351 -k1,13714:10683650,11820750:188350 -k1,13714:11403498,11820750:188351 -k1,13714:13481906,11820750:188350 -k1,13714:14861701,11820750:188350 -k1,13714:15859422,11820750:188351 -k1,13714:19044733,11820750:188350 -k1,13714:20916049,11820750:188351 -k1,13714:22767047,11820750:188350 -k1,13714:23716925,11820750:188350 -k1,13714:26344526,11820750:188351 -k1,13714:27160711,11820750:188350 -k1,13714:29046444,11820750:188351 -k1,13714:30932832,11820750:188350 -k1,13714:32583029,11820750:0 -) -(1,13715:6630773,12662238:25952256,513147,134348 -k1,13714:8951566,12662238:246579 -k1,13714:10189705,12662238:246579 -k1,13714:13015782,12662238:246580 -k1,13714:16259322,12662238:246579 -k1,13714:17773367,12662238:246579 -k1,13714:19192385,12662238:246579 -k1,13714:20121849,12662238:246579 -k1,13714:22018625,12662238:246579 -k1,13714:26319262,12662238:246580 -k1,13714:28100039,12662238:246579 -k1,13714:28878115,12662238:246579 -k1,13714:30143779,12662238:246579 -k1,13714:32583029,12662238:0 -) -(1,13715:6630773,13503726:25952256,513147,134348 -k1,13714:8454782,13503726:162016 -k1,13714:9485150,13503726:162016 -k1,13714:11275736,13503726:162016 -k1,13714:14434714,13503726:162017 -k1,13714:15990681,13503726:162016 -(1,13714:15990681,13503726:0,435480,115847 -r1,13714:18810930,13503726:2820249,551327,115847 -k1,13714:15990681,13503726:-2820249 -) -(1,13714:15990681,13503726:2820249,435480,115847 -g1,13714:17752517,13503726 -g1,13714:18455941,13503726 -h1,13714:18807653,13503726:0,411205,112570 -) -k1,13714:19146616,13503726:162016 -k1,13714:21091867,13503726:162016 -k1,13714:22989276,13503726:162016 -(1,13714:22989276,13503726:0,459977,115847 -r1,13714:27216372,13503726:4227096,575824,115847 -k1,13714:22989276,13503726:-4227096 -) -(1,13714:22989276,13503726:4227096,459977,115847 -k1,13714:22989276,13503726:3277 -h1,13714:27213095,13503726:0,411205,112570 -) -k1,13714:27378388,13503726:162016 -k1,13714:29195189,13503726:162017 -k1,13714:29888702,13503726:162016 -k1,13714:31426319,13503726:162016 -k1,13714:32583029,13503726:0 -) -(1,13715:6630773,14345214:25952256,513147,126483 -g1,13714:10348630,14345214 -g1,13714:11739304,14345214 -g1,13714:12957618,14345214 -g1,13714:16437579,14345214 -g1,13714:17168305,14345214 -g1,13714:19235310,14345214 -(1,13714:19235310,14345214:0,459977,115847 -r1,13714:21352135,14345214:2116825,575824,115847 -k1,13714:19235310,14345214:-2116825 -) -(1,13714:19235310,14345214:2116825,459977,115847 -k1,13714:19235310,14345214:3277 -h1,13714:21348858,14345214:0,411205,112570 -) -g1,13714:21725034,14345214 -g1,13714:24251446,14345214 -g1,13714:25117831,14345214 -(1,13714:25117831,14345214:0,414482,115847 -r1,13714:26531232,14345214:1413401,530329,115847 -k1,13714:25117831,14345214:-1413401 -) -(1,13714:25117831,14345214:1413401,414482,115847 -k1,13714:25117831,14345214:3277 -h1,13714:26527955,14345214:0,411205,112570 -) -g1,13714:26730461,14345214 -g1,13714:27612575,14345214 -(1,13714:27612575,14345214:0,452978,115847 -r1,13714:29025976,14345214:1413401,568825,115847 -k1,13714:27612575,14345214:-1413401 -) -(1,13714:27612575,14345214:1413401,452978,115847 -k1,13714:27612575,14345214:3277 -h1,13714:29022699,14345214:0,411205,112570 -) -k1,13715:32583029,14345214:3383383 -g1,13715:32583029,14345214 -) -v1,13719:6630773,15437774:0,393216,0 -(1,13723:6630773,15752871:25952256,708313,196608 -g1,13723:6630773,15752871 -g1,13723:6630773,15752871 -g1,13723:6434165,15752871 -(1,13723:6434165,15752871:0,708313,196608 -r1,13723:32779637,15752871:26345472,904921,196608 -k1,13723:6434165,15752871:-26345472 -) -(1,13723:6434165,15752871:26345472,708313,196608 -[1,13723:6630773,15752871:25952256,511705,0 -(1,13721:6630773,15651684:25952256,410518,101187 -(1,13720:6630773,15651684:0,0,0 -g1,13720:6630773,15651684 -g1,13720:6630773,15651684 -g1,13720:6303093,15651684 -(1,13720:6303093,15651684:0,0,0 -) -g1,13720:6630773,15651684 -) -g1,13721:7263065,15651684 -g1,13721:7895357,15651684 -g1,13721:13585980,15651684 -g1,13721:14218272,15651684 -g1,13721:17695875,15651684 -g1,13721:19276604,15651684 -g1,13721:19908896,15651684 -h1,13721:20541188,15651684:0,0,0 -k1,13721:32583029,15651684:12041841 -g1,13721:32583029,15651684 -) -] -) -g1,13723:32583029,15752871 -g1,13723:6630773,15752871 -g1,13723:6630773,15752871 -g1,13723:32583029,15752871 -g1,13723:32583029,15752871 -) -h1,13723:6630773,15949479:0,0,0 -(1,13726:6630773,30456129:25952256,14014731,0 -k1,13726:12599879,30456129:5969106 -h1,13725:12599879,30456129:0,0,0 -(1,13725:12599879,30456129:14014044,14014731,0 -(1,13725:12599879,30456129:14014766,14014766,0 -(1,13725:12599879,30456129:14014766,14014766,0 -(1,13725:12599879,30456129:0,14014766,0 -(1,13725:12599879,30456129:0,18939904,0 -(1,13725:12599879,30456129:18939904,18939904,0 -) -k1,13725:12599879,30456129:-18939904 -) -) -g1,13725:26614645,30456129 -) -) -) -g1,13726:26613923,30456129 -k1,13726:32583029,30456129:5969106 -) -(1,13734:6630773,31297617:25952256,513147,126483 -h1,13733:6630773,31297617:983040,0,0 -k1,13733:8964071,31297617:153571 -k1,13733:11779059,31297617:153571 -k1,13733:13801062,31297617:153572 -k1,13733:15439023,31297617:153571 -k1,13733:16658865,31297617:153571 -k1,13733:19268725,31297617:153571 -k1,13733:19953794,31297617:153572 -k1,13733:22309375,31297617:153571 -k1,13733:23114374,31297617:153571 -k1,13733:24287030,31297617:153571 -k1,13733:26474184,31297617:153572 -k1,13733:27784465,31297617:153571 -k1,13733:28885687,31297617:153571 -(1,13733:28885687,31297617:0,459977,122846 -r1,13733:32409359,31297617:3523672,582823,122846 -k1,13733:28885687,31297617:-3523672 -) -(1,13733:28885687,31297617:3523672,459977,122846 -k1,13733:28885687,31297617:3277 -h1,13733:32406082,31297617:0,411205,112570 -) -k1,13733:32583029,31297617:0 -) -(1,13734:6630773,32139105:25952256,513147,134348 -k1,13733:7957220,32139105:254278 -k1,13733:10760192,32139105:254277 -k1,13733:14131362,32139105:254278 -k1,13733:15037067,32139105:254277 -k1,13733:16463784,32139105:254278 -k1,13733:18942353,32139105:254277 -k1,13733:20590582,32139105:254278 -(1,13733:20590582,32139105:0,459977,115847 -r1,13733:24817678,32139105:4227096,575824,115847 -k1,13733:20590582,32139105:-4227096 -) -(1,13733:20590582,32139105:4227096,459977,115847 -k1,13733:20590582,32139105:3277 -h1,13733:24814401,32139105:0,411205,112570 -) -k1,13733:25071955,32139105:254277 -k1,13733:27070801,32139105:254278 -k1,13733:27680938,32139105:254277 -k1,13733:29808235,32139105:254278 -k1,13733:32583029,32139105:0 -) -(1,13734:6630773,32980593:25952256,513147,126483 -g1,13733:8033898,32980593 -g1,13733:8892419,32980593 -k1,13734:32583028,32980593:21442724 -g1,13734:32583028,32980593 -) -v1,13736:6630773,34073153:0,393216,0 -(1,13740:6630773,34388250:25952256,708313,196608 -g1,13740:6630773,34388250 -g1,13740:6630773,34388250 -g1,13740:6434165,34388250 -(1,13740:6434165,34388250:0,708313,196608 -r1,13740:32779637,34388250:26345472,904921,196608 -k1,13740:6434165,34388250:-26345472 -) -(1,13740:6434165,34388250:26345472,708313,196608 -[1,13740:6630773,34388250:25952256,511705,0 -(1,13738:6630773,34287063:25952256,410518,101187 -(1,13737:6630773,34287063:0,0,0 -g1,13737:6630773,34287063 -g1,13737:6630773,34287063 -g1,13737:6303093,34287063 -(1,13737:6303093,34287063:0,0,0 -) -g1,13737:6630773,34287063 -) -g1,13738:7263065,34287063 -g1,13738:7895357,34287063 -g1,13738:13585980,34287063 -g1,13738:14218272,34287063 -g1,13738:17063584,34287063 -g1,13738:18644313,34287063 -g1,13738:21173480,34287063 -g1,13738:24018791,34287063 -g1,13738:24651083,34287063 -h1,13738:28128685,34287063:0,0,0 -k1,13738:32583029,34287063:4454344 -g1,13738:32583029,34287063 -) -] -) -g1,13740:32583029,34388250 -g1,13740:6630773,34388250 -g1,13740:6630773,34388250 -g1,13740:32583029,34388250 -g1,13740:32583029,34388250 -) -h1,13740:6630773,34584858:0,0,0 -(1,13757:6630773,37818809:25952256,32768,229376 -(1,13757:6630773,37818809:0,32768,229376 -(1,13757:6630773,37818809:5505024,32768,229376 -r1,13757:12135797,37818809:5505024,262144,229376 -) -k1,13757:6630773,37818809:-5505024 -) -(1,13757:6630773,37818809:25952256,32768,0 -r1,13757:32583029,37818809:25952256,32768,0 -) -) -(1,13757:6630773,39423137:25952256,606339,14155 -(1,13757:6630773,39423137:1974731,568590,0 -g1,13757:6630773,39423137 -g1,13757:8605504,39423137 -) -k1,13757:32583028,39423137:21567896 -g1,13757:32583028,39423137 -) -(1,13761:6630773,40657841:25952256,513147,126483 -k1,13760:7532901,40657841:274293 -k1,13760:9840776,40657841:274293 -k1,13760:12724058,40657841:274294 -k1,13760:13657643,40657841:274293 -k1,13760:15135177,40657841:274293 -k1,13760:18000764,40657841:274293 -k1,13760:21266777,40657841:274294 -k1,13760:23016285,40657841:274293 -k1,13760:24803804,40657841:274293 -k1,13760:26097182,40657841:274293 -k1,13760:28637056,40657841:274294 -k1,13760:30757499,40657841:274293 -k1,13760:31714677,40657841:274293 -k1,13760:32583029,40657841:0 -) -(1,13761:6630773,41499329:25952256,513147,126483 -k1,13760:8349181,41499329:243193 -k1,13760:9526917,41499329:243193 -k1,13760:11409166,41499329:243194 -k1,13760:13046310,41499329:243193 -k1,13760:17196104,41499329:243193 -k1,13760:20638765,41499329:243193 -k1,13760:21509793,41499329:243193 -k1,13760:22772071,41499329:243193 -k1,13760:25421092,41499329:243194 -k1,13760:27942972,41499329:243193 -k1,13760:29054517,41499329:243193 -k1,13760:31966991,41499329:243193 -k1,13760:32583029,41499329:0 -) -(1,13761:6630773,42340817:25952256,513147,7863 -k1,13760:8576100,42340817:295130 -k1,13760:10658397,42340817:295130 -k1,13760:11972613,42340817:295131 -k1,13760:13360228,42340817:295130 -k1,13760:14314650,42340817:295130 -k1,13760:16606662,42340817:295130 -k1,13760:18734179,42340817:295130 -k1,13760:20020869,42340817:295130 -k1,13760:22162150,42340817:295131 -k1,13760:25241249,42340817:295130 -k1,13760:26484030,42340817:295130 -k1,13760:29541503,42340817:295130 -k1,13761:32583029,42340817:0 -) -(1,13761:6630773,43182305:25952256,513147,134348 -$1,13760:6837867,43182305 -$1,13760:7406064,43182305 -k1,13760:7611050,43182305:204986 -k1,13760:11132159,43182305:204987 -k1,13760:11996437,43182305:204986 -k1,13760:13220509,43182305:204987 -k1,13760:15727775,43182305:204986 -k1,13760:19657173,43182305:204987 -k1,13760:22325657,43182305:204986 -k1,13760:24024210,43182305:204987 -k1,13760:24915358,43182305:204986 -k1,13760:27734576,43182305:204987 -(1,13760:27941670,43182305:0,414482,115847 -r1,13760:30410208,43182305:2468538,530329,115847 -k1,13760:27941670,43182305:-2468538 -) -(1,13760:27941670,43182305:2468538,414482,115847 -g1,13760:29000083,43182305 -g1,13760:30055219,43182305 -h1,13760:30406931,43182305:0,411205,112570 -) -k1,13760:30995958,43182305:204986 -(1,13760:30995958,43182305:0,452978,115847 -r1,13760:32409359,43182305:1413401,568825,115847 -k1,13760:30995958,43182305:-1413401 -) -(1,13760:30995958,43182305:1413401,452978,115847 -k1,13760:30995958,43182305:3277 -h1,13760:32406082,43182305:0,411205,112570 -) -k1,13761:32583029,43182305:0 -) -(1,13761:6630773,44023793:25952256,505283,126483 -(1,13760:6630773,44023793:0,452978,115847 -r1,13760:8395886,44023793:1765113,568825,115847 -k1,13760:6630773,44023793:-1765113 -) -(1,13760:6630773,44023793:1765113,452978,115847 -k1,13760:6630773,44023793:3277 -h1,13760:8392609,44023793:0,411205,112570 -) -k1,13760:8795889,44023793:226333 -(1,13760:8795889,44023793:0,452978,115847 -r1,13760:11616138,44023793:2820249,568825,115847 -k1,13760:8795889,44023793:-2820249 -) -(1,13760:8795889,44023793:2820249,452978,115847 -k1,13760:8795889,44023793:3277 -h1,13760:11612861,44023793:0,411205,112570 -) -k1,13760:12016141,44023793:226333 -(1,13760:12016141,44023793:0,452978,115847 -r1,13760:13781254,44023793:1765113,568825,115847 -k1,13760:12016141,44023793:-1765113 -) -(1,13760:12016141,44023793:1765113,452978,115847 -k1,13760:12016141,44023793:3277 -h1,13760:13777977,44023793:0,411205,112570 -) -k1,13760:14181258,44023793:226334 -(1,13760:14181258,44023793:0,459977,115847 -r1,13760:15594659,44023793:1413401,575824,115847 -k1,13760:14181258,44023793:-1413401 -) -(1,13760:14181258,44023793:1413401,459977,115847 -k1,13760:14181258,44023793:3277 -h1,13760:15591382,44023793:0,411205,112570 -) -k1,13760:15994662,44023793:226333 -(1,13760:15994662,44023793:0,452978,115847 -r1,13760:17759775,44023793:1765113,568825,115847 -k1,13760:15994662,44023793:-1765113 -) -(1,13760:15994662,44023793:1765113,452978,115847 -k1,13760:15994662,44023793:3277 -h1,13760:17756498,44023793:0,411205,112570 -) -k1,13760:17986108,44023793:226333 -k1,13760:18895326,44023793:226333 -k1,13760:23463419,44023793:226333 -(1,13760:23463419,44023793:0,452978,122846 -r1,13760:25228532,44023793:1765113,575824,122846 -k1,13760:23463419,44023793:-1765113 -) -(1,13760:23463419,44023793:1765113,452978,122846 -k1,13760:23463419,44023793:3277 -h1,13760:25225255,44023793:0,411205,112570 -) -k1,13760:25628536,44023793:226334 -k1,13760:27782283,44023793:226333 -k1,13760:31252648,44023793:226333 -k1,13760:32583029,44023793:0 -) -(1,13761:6630773,44865281:25952256,513147,126483 -k1,13760:8913361,44865281:271943 -k1,13760:9801341,44865281:271942 -(1,13760:9801341,44865281:0,452978,115847 -r1,13760:11214742,44865281:1413401,568825,115847 -k1,13760:9801341,44865281:-1413401 -) -(1,13760:9801341,44865281:1413401,452978,115847 -k1,13760:9801341,44865281:3277 -h1,13760:11211465,44865281:0,411205,112570 -) -k1,13760:11486685,44865281:271943 -k1,13760:12750187,44865281:271942 -k1,13760:15607525,44865281:271943 -k1,13760:16530895,44865281:271942 -k1,13760:18813483,44865281:271943 -k1,13760:19744717,44865281:271942 -k1,13760:20787363,44865281:271943 -k1,13760:24274501,44865281:271942 -k1,13760:25737889,44865281:271943 -k1,13760:27340212,44865281:271942 -k1,13760:29308882,44865281:271943 -k1,13760:31591469,44865281:271942 -k1,13760:32583029,44865281:0 -) -(1,13761:6630773,45706769:25952256,505283,7863 -k1,13761:32583029,45706769:23496622 -g1,13761:32583029,45706769 -) -] -(1,13763:32583029,45706769:0,0,0 -g1,13763:32583029,45706769 +[1,13789:6630773,45706769:25952256,40108032,0 +v1,13734:6630773,6254097:0,393216,0 +(1,13734:6630773,9095353:25952256,3234472,616038 +g1,13734:6630773,9095353 +(1,13734:6630773,9095353:25952256,3234472,616038 +(1,13734:6630773,9711391:25952256,3850510,0 +[1,13734:6630773,9711391:25952256,3850510,0 +(1,13734:6630773,9685177:25952256,3824296,0 +r1,13734:6656987,9685177:26214,3824296,0 +[1,13734:6656987,9685177:25899828,3824296,0 +(1,13734:6656987,9095353:25899828,2644648,0 +[1,13734:7246811,9095353:24720180,2644648,0 +v1,13725:7246811,6843921:0,393216,0 +(1,13731:7246811,8374457:24720180,1923752,196608 +g1,13731:7246811,8374457 +g1,13731:7246811,8374457 +g1,13731:7050203,8374457 +(1,13731:7050203,8374457:0,1923752,196608 +r1,13734:32163599,8374457:25113396,2120360,196608 +k1,13731:7050203,8374457:-25113396 +) +(1,13731:7050203,8374457:25113396,1923752,196608 +[1,13731:7246811,8374457:24720180,1727144,0 +(1,13727:7246811,6940914:24720180,293601,101187 +(1,13726:7246811,6940914:0,0,0 +g1,13726:7246811,6940914 +g1,13726:7246811,6940914 +g1,13726:6919131,6940914 +(1,13726:6919131,6940914:0,0,0 +) +g1,13726:7246811,6940914 +) +g1,13727:7879103,6940914 +h1,13727:8195249,6940914:0,0,0 +k1,13727:31966991,6940914:23771742 +g1,13727:31966991,6940914 +) +(1,13728:7246811,7607092:24720180,410518,107478 +h1,13728:7246811,7607092:0,0,0 +g1,13728:7562957,7607092 +g1,13728:7879103,7607092 +g1,13728:12937435,7607092 +g1,13728:13569727,7607092 +k1,13728:13569727,7607092:0 +h1,13728:16731184,7607092:0,0,0 +k1,13728:31966991,7607092:15235807 +g1,13728:31966991,7607092 +) +(1,13729:7246811,8273270:24720180,404226,101187 +h1,13729:7246811,8273270:0,0,0 +g1,13729:7562957,8273270 +g1,13729:7879103,8273270 +g1,13729:8195249,8273270 +g1,13729:8511395,8273270 +g1,13729:8827541,8273270 +g1,13729:9143687,8273270 +g1,13729:9459833,8273270 +g1,13729:9775979,8273270 +g1,13729:10092125,8273270 +g1,13729:10408271,8273270 +g1,13729:10724417,8273270 +g1,13729:11040563,8273270 +g1,13729:11356709,8273270 +g1,13729:14202020,8273270 +g1,13729:14834312,8273270 +g1,13729:20524935,8273270 +g1,13729:21157227,8273270 +k1,13729:21157227,8273270:0 +h1,13729:27480140,8273270:0,0,0 +k1,13729:31966991,8273270:4486851 +g1,13729:31966991,8273270 +) +] +) +g1,13731:31966991,8374457 +g1,13731:7246811,8374457 +g1,13731:7246811,8374457 +g1,13731:31966991,8374457 +g1,13731:31966991,8374457 +) +h1,13731:7246811,8571065:0,0,0 +] +) +] +r1,13734:32583029,9685177:26214,3824296,0 +) +] +) +) +g1,13734:32583029,9095353 +) +h1,13734:6630773,9711391:0,0,0 +(1,13741:6630773,10979262:25952256,513147,126483 +h1,13740:6630773,10979262:983040,0,0 +k1,13740:8423969,10979262:182321 +k1,13740:9625375,10979262:182321 +k1,13740:11191816,10979262:182321 +k1,13740:14035555,10979262:182322 +k1,13740:15086228,10979262:182321 +k1,13740:17197929,10979262:182321 +k1,13740:17736110,10979262:182321 +k1,13740:19195728,10979262:182321 +k1,13740:20772000,10979262:182321 +k1,13740:23729115,10979262:182321 +k1,13740:25973854,10979262:182321 +k1,13740:26784011,10979262:182322 +k1,13740:28169573,10979262:182321 +k1,13740:29718975,10979262:182321 +k1,13740:30920381,10979262:182321 +k1,13741:32583029,10979262:0 +) +(1,13741:6630773,11820750:25952256,513147,134348 +k1,13740:7855247,11820750:188350 +k1,13740:8702890,11820750:188351 +k1,13740:10683650,11820750:188350 +k1,13740:11403498,11820750:188351 +k1,13740:13481906,11820750:188350 +k1,13740:14861701,11820750:188350 +k1,13740:15859422,11820750:188351 +k1,13740:19044733,11820750:188350 +k1,13740:20916049,11820750:188351 +k1,13740:22767047,11820750:188350 +k1,13740:23716925,11820750:188350 +k1,13740:26344526,11820750:188351 +k1,13740:27160711,11820750:188350 +k1,13740:29046444,11820750:188351 +k1,13740:30932832,11820750:188350 +k1,13740:32583029,11820750:0 +) +(1,13741:6630773,12662238:25952256,513147,134348 +k1,13740:8951566,12662238:246579 +k1,13740:10189705,12662238:246579 +k1,13740:13015782,12662238:246580 +k1,13740:16259322,12662238:246579 +k1,13740:17773367,12662238:246579 +k1,13740:19192385,12662238:246579 +k1,13740:20121849,12662238:246579 +k1,13740:22018625,12662238:246579 +k1,13740:26319262,12662238:246580 +k1,13740:28100039,12662238:246579 +k1,13740:28878115,12662238:246579 +k1,13740:30143779,12662238:246579 +k1,13740:32583029,12662238:0 +) +(1,13741:6630773,13503726:25952256,513147,134348 +k1,13740:8454782,13503726:162016 +k1,13740:9485150,13503726:162016 +k1,13740:11275736,13503726:162016 +k1,13740:14434714,13503726:162017 +k1,13740:15990681,13503726:162016 +(1,13740:15990681,13503726:0,435480,115847 +r1,13740:18810930,13503726:2820249,551327,115847 +k1,13740:15990681,13503726:-2820249 +) +(1,13740:15990681,13503726:2820249,435480,115847 +g1,13740:17752517,13503726 +g1,13740:18455941,13503726 +h1,13740:18807653,13503726:0,411205,112570 +) +k1,13740:19146616,13503726:162016 +k1,13740:21091867,13503726:162016 +k1,13740:22989276,13503726:162016 +(1,13740:22989276,13503726:0,459977,115847 +r1,13740:27216372,13503726:4227096,575824,115847 +k1,13740:22989276,13503726:-4227096 +) +(1,13740:22989276,13503726:4227096,459977,115847 +k1,13740:22989276,13503726:3277 +h1,13740:27213095,13503726:0,411205,112570 +) +k1,13740:27378388,13503726:162016 +k1,13740:29195189,13503726:162017 +k1,13740:29888702,13503726:162016 +k1,13740:31426319,13503726:162016 +k1,13740:32583029,13503726:0 +) +(1,13741:6630773,14345214:25952256,513147,126483 +g1,13740:10348630,14345214 +g1,13740:11739304,14345214 +g1,13740:12957618,14345214 +g1,13740:16437579,14345214 +g1,13740:17168305,14345214 +g1,13740:19235310,14345214 +(1,13740:19235310,14345214:0,459977,115847 +r1,13740:21352135,14345214:2116825,575824,115847 +k1,13740:19235310,14345214:-2116825 +) +(1,13740:19235310,14345214:2116825,459977,115847 +k1,13740:19235310,14345214:3277 +h1,13740:21348858,14345214:0,411205,112570 +) +g1,13740:21725034,14345214 +g1,13740:24251446,14345214 +g1,13740:25117831,14345214 +(1,13740:25117831,14345214:0,414482,115847 +r1,13740:26531232,14345214:1413401,530329,115847 +k1,13740:25117831,14345214:-1413401 +) +(1,13740:25117831,14345214:1413401,414482,115847 +k1,13740:25117831,14345214:3277 +h1,13740:26527955,14345214:0,411205,112570 +) +g1,13740:26730461,14345214 +g1,13740:27612575,14345214 +(1,13740:27612575,14345214:0,452978,115847 +r1,13740:29025976,14345214:1413401,568825,115847 +k1,13740:27612575,14345214:-1413401 +) +(1,13740:27612575,14345214:1413401,452978,115847 +k1,13740:27612575,14345214:3277 +h1,13740:29022699,14345214:0,411205,112570 +) +k1,13741:32583029,14345214:3383383 +g1,13741:32583029,14345214 +) +v1,13745:6630773,15437774:0,393216,0 +(1,13749:6630773,15752871:25952256,708313,196608 +g1,13749:6630773,15752871 +g1,13749:6630773,15752871 +g1,13749:6434165,15752871 +(1,13749:6434165,15752871:0,708313,196608 +r1,13749:32779637,15752871:26345472,904921,196608 +k1,13749:6434165,15752871:-26345472 +) +(1,13749:6434165,15752871:26345472,708313,196608 +[1,13749:6630773,15752871:25952256,511705,0 +(1,13747:6630773,15651684:25952256,410518,101187 +(1,13746:6630773,15651684:0,0,0 +g1,13746:6630773,15651684 +g1,13746:6630773,15651684 +g1,13746:6303093,15651684 +(1,13746:6303093,15651684:0,0,0 +) +g1,13746:6630773,15651684 +) +g1,13747:7263065,15651684 +g1,13747:7895357,15651684 +g1,13747:13585980,15651684 +g1,13747:14218272,15651684 +g1,13747:17695875,15651684 +g1,13747:19276604,15651684 +g1,13747:19908896,15651684 +h1,13747:20541188,15651684:0,0,0 +k1,13747:32583029,15651684:12041841 +g1,13747:32583029,15651684 +) +] +) +g1,13749:32583029,15752871 +g1,13749:6630773,15752871 +g1,13749:6630773,15752871 +g1,13749:32583029,15752871 +g1,13749:32583029,15752871 +) +h1,13749:6630773,15949479:0,0,0 +(1,13752:6630773,30456129:25952256,14014731,0 +k1,13752:12599879,30456129:5969106 +h1,13751:12599879,30456129:0,0,0 +(1,13751:12599879,30456129:14014044,14014731,0 +(1,13751:12599879,30456129:14014766,14014766,0 +(1,13751:12599879,30456129:14014766,14014766,0 +(1,13751:12599879,30456129:0,14014766,0 +(1,13751:12599879,30456129:0,18939904,0 +(1,13751:12599879,30456129:18939904,18939904,0 +) +k1,13751:12599879,30456129:-18939904 +) +) +g1,13751:26614645,30456129 +) +) +) +g1,13752:26613923,30456129 +k1,13752:32583029,30456129:5969106 +) +(1,13760:6630773,31297617:25952256,513147,126483 +h1,13759:6630773,31297617:983040,0,0 +k1,13759:8964071,31297617:153571 +k1,13759:11779059,31297617:153571 +k1,13759:13801062,31297617:153572 +k1,13759:15439023,31297617:153571 +k1,13759:16658865,31297617:153571 +k1,13759:19268725,31297617:153571 +k1,13759:19953794,31297617:153572 +k1,13759:22309375,31297617:153571 +k1,13759:23114374,31297617:153571 +k1,13759:24287030,31297617:153571 +k1,13759:26474184,31297617:153572 +k1,13759:27784465,31297617:153571 +k1,13759:28885687,31297617:153571 +(1,13759:28885687,31297617:0,459977,122846 +r1,13759:32409359,31297617:3523672,582823,122846 +k1,13759:28885687,31297617:-3523672 +) +(1,13759:28885687,31297617:3523672,459977,122846 +k1,13759:28885687,31297617:3277 +h1,13759:32406082,31297617:0,411205,112570 +) +k1,13759:32583029,31297617:0 +) +(1,13760:6630773,32139105:25952256,513147,134348 +k1,13759:7957220,32139105:254278 +k1,13759:10760192,32139105:254277 +k1,13759:14131362,32139105:254278 +k1,13759:15037067,32139105:254277 +k1,13759:16463784,32139105:254278 +k1,13759:18942353,32139105:254277 +k1,13759:20590582,32139105:254278 +(1,13759:20590582,32139105:0,459977,115847 +r1,13759:24817678,32139105:4227096,575824,115847 +k1,13759:20590582,32139105:-4227096 +) +(1,13759:20590582,32139105:4227096,459977,115847 +k1,13759:20590582,32139105:3277 +h1,13759:24814401,32139105:0,411205,112570 +) +k1,13759:25071955,32139105:254277 +k1,13759:27070801,32139105:254278 +k1,13759:27680938,32139105:254277 +k1,13759:29808235,32139105:254278 +k1,13759:32583029,32139105:0 +) +(1,13760:6630773,32980593:25952256,513147,126483 +g1,13759:8033898,32980593 +g1,13759:8892419,32980593 +k1,13760:32583028,32980593:21442724 +g1,13760:32583028,32980593 +) +v1,13762:6630773,34073153:0,393216,0 +(1,13766:6630773,34388250:25952256,708313,196608 +g1,13766:6630773,34388250 +g1,13766:6630773,34388250 +g1,13766:6434165,34388250 +(1,13766:6434165,34388250:0,708313,196608 +r1,13766:32779637,34388250:26345472,904921,196608 +k1,13766:6434165,34388250:-26345472 +) +(1,13766:6434165,34388250:26345472,708313,196608 +[1,13766:6630773,34388250:25952256,511705,0 +(1,13764:6630773,34287063:25952256,410518,101187 +(1,13763:6630773,34287063:0,0,0 +g1,13763:6630773,34287063 +g1,13763:6630773,34287063 +g1,13763:6303093,34287063 +(1,13763:6303093,34287063:0,0,0 +) +g1,13763:6630773,34287063 +) +g1,13764:7263065,34287063 +g1,13764:7895357,34287063 +g1,13764:13585980,34287063 +g1,13764:14218272,34287063 +g1,13764:17063584,34287063 +g1,13764:18644313,34287063 +g1,13764:21173480,34287063 +g1,13764:24018791,34287063 +g1,13764:24651083,34287063 +h1,13764:28128685,34287063:0,0,0 +k1,13764:32583029,34287063:4454344 +g1,13764:32583029,34287063 +) +] +) +g1,13766:32583029,34388250 +g1,13766:6630773,34388250 +g1,13766:6630773,34388250 +g1,13766:32583029,34388250 +g1,13766:32583029,34388250 +) +h1,13766:6630773,34584858:0,0,0 +(1,13783:6630773,37818809:25952256,32768,229376 +(1,13783:6630773,37818809:0,32768,229376 +(1,13783:6630773,37818809:5505024,32768,229376 +r1,13783:12135797,37818809:5505024,262144,229376 +) +k1,13783:6630773,37818809:-5505024 +) +(1,13783:6630773,37818809:25952256,32768,0 +r1,13783:32583029,37818809:25952256,32768,0 +) +) +(1,13783:6630773,39423137:25952256,606339,14155 +(1,13783:6630773,39423137:1974731,568590,0 +g1,13783:6630773,39423137 +g1,13783:8605504,39423137 +) +k1,13783:32583028,39423137:21567896 +g1,13783:32583028,39423137 +) +(1,13787:6630773,40657841:25952256,513147,126483 +k1,13786:7532901,40657841:274293 +k1,13786:9840776,40657841:274293 +k1,13786:12724058,40657841:274294 +k1,13786:13657643,40657841:274293 +k1,13786:15135177,40657841:274293 +k1,13786:18000764,40657841:274293 +k1,13786:21266777,40657841:274294 +k1,13786:23016285,40657841:274293 +k1,13786:24803804,40657841:274293 +k1,13786:26097182,40657841:274293 +k1,13786:28637056,40657841:274294 +k1,13786:30757499,40657841:274293 +k1,13786:31714677,40657841:274293 +k1,13786:32583029,40657841:0 +) +(1,13787:6630773,41499329:25952256,513147,126483 +k1,13786:8349181,41499329:243193 +k1,13786:9526917,41499329:243193 +k1,13786:11409166,41499329:243194 +k1,13786:13046310,41499329:243193 +k1,13786:17196104,41499329:243193 +k1,13786:20638765,41499329:243193 +k1,13786:21509793,41499329:243193 +k1,13786:22772071,41499329:243193 +k1,13786:25421092,41499329:243194 +k1,13786:27942972,41499329:243193 +k1,13786:29054517,41499329:243193 +k1,13786:31966991,41499329:243193 +k1,13786:32583029,41499329:0 +) +(1,13787:6630773,42340817:25952256,513147,7863 +k1,13786:8576100,42340817:295130 +k1,13786:10658397,42340817:295130 +k1,13786:11972613,42340817:295131 +k1,13786:13360228,42340817:295130 +k1,13786:14314650,42340817:295130 +k1,13786:16606662,42340817:295130 +k1,13786:18734179,42340817:295130 +k1,13786:20020869,42340817:295130 +k1,13786:22162150,42340817:295131 +k1,13786:25241249,42340817:295130 +k1,13786:26484030,42340817:295130 +k1,13786:29541503,42340817:295130 +k1,13787:32583029,42340817:0 +) +(1,13787:6630773,43182305:25952256,513147,134348 +$1,13786:6837867,43182305 +$1,13786:7406064,43182305 +k1,13786:7611050,43182305:204986 +k1,13786:11132159,43182305:204987 +k1,13786:11996437,43182305:204986 +k1,13786:13220509,43182305:204987 +k1,13786:15727775,43182305:204986 +k1,13786:19657173,43182305:204987 +k1,13786:22325657,43182305:204986 +k1,13786:24024210,43182305:204987 +k1,13786:24915358,43182305:204986 +k1,13786:27734576,43182305:204987 +(1,13786:27941670,43182305:0,414482,115847 +r1,13786:30410208,43182305:2468538,530329,115847 +k1,13786:27941670,43182305:-2468538 +) +(1,13786:27941670,43182305:2468538,414482,115847 +g1,13786:29000083,43182305 +g1,13786:30055219,43182305 +h1,13786:30406931,43182305:0,411205,112570 +) +k1,13786:30995958,43182305:204986 +(1,13786:30995958,43182305:0,452978,115847 +r1,13786:32409359,43182305:1413401,568825,115847 +k1,13786:30995958,43182305:-1413401 +) +(1,13786:30995958,43182305:1413401,452978,115847 +k1,13786:30995958,43182305:3277 +h1,13786:32406082,43182305:0,411205,112570 +) +k1,13787:32583029,43182305:0 +) +(1,13787:6630773,44023793:25952256,505283,126483 +(1,13786:6630773,44023793:0,452978,115847 +r1,13786:8395886,44023793:1765113,568825,115847 +k1,13786:6630773,44023793:-1765113 +) +(1,13786:6630773,44023793:1765113,452978,115847 +k1,13786:6630773,44023793:3277 +h1,13786:8392609,44023793:0,411205,112570 +) +k1,13786:8795889,44023793:226333 +(1,13786:8795889,44023793:0,452978,115847 +r1,13786:11616138,44023793:2820249,568825,115847 +k1,13786:8795889,44023793:-2820249 +) +(1,13786:8795889,44023793:2820249,452978,115847 +k1,13786:8795889,44023793:3277 +h1,13786:11612861,44023793:0,411205,112570 +) +k1,13786:12016141,44023793:226333 +(1,13786:12016141,44023793:0,452978,115847 +r1,13786:13781254,44023793:1765113,568825,115847 +k1,13786:12016141,44023793:-1765113 +) +(1,13786:12016141,44023793:1765113,452978,115847 +k1,13786:12016141,44023793:3277 +h1,13786:13777977,44023793:0,411205,112570 +) +k1,13786:14181258,44023793:226334 +(1,13786:14181258,44023793:0,459977,115847 +r1,13786:15594659,44023793:1413401,575824,115847 +k1,13786:14181258,44023793:-1413401 +) +(1,13786:14181258,44023793:1413401,459977,115847 +k1,13786:14181258,44023793:3277 +h1,13786:15591382,44023793:0,411205,112570 +) +k1,13786:15994662,44023793:226333 +(1,13786:15994662,44023793:0,452978,115847 +r1,13786:17759775,44023793:1765113,568825,115847 +k1,13786:15994662,44023793:-1765113 +) +(1,13786:15994662,44023793:1765113,452978,115847 +k1,13786:15994662,44023793:3277 +h1,13786:17756498,44023793:0,411205,112570 +) +k1,13786:17986108,44023793:226333 +k1,13786:18895326,44023793:226333 +k1,13786:23463419,44023793:226333 +(1,13786:23463419,44023793:0,452978,122846 +r1,13786:25228532,44023793:1765113,575824,122846 +k1,13786:23463419,44023793:-1765113 +) +(1,13786:23463419,44023793:1765113,452978,122846 +k1,13786:23463419,44023793:3277 +h1,13786:25225255,44023793:0,411205,112570 +) +k1,13786:25628536,44023793:226334 +k1,13786:27782283,44023793:226333 +k1,13786:31252648,44023793:226333 +k1,13786:32583029,44023793:0 +) +(1,13787:6630773,44865281:25952256,513147,126483 +k1,13786:8913361,44865281:271943 +k1,13786:9801341,44865281:271942 +(1,13786:9801341,44865281:0,452978,115847 +r1,13786:11214742,44865281:1413401,568825,115847 +k1,13786:9801341,44865281:-1413401 +) +(1,13786:9801341,44865281:1413401,452978,115847 +k1,13786:9801341,44865281:3277 +h1,13786:11211465,44865281:0,411205,112570 +) +k1,13786:11486685,44865281:271943 +k1,13786:12750187,44865281:271942 +k1,13786:15607525,44865281:271943 +k1,13786:16530895,44865281:271942 +k1,13786:18813483,44865281:271943 +k1,13786:19744717,44865281:271942 +k1,13786:20787363,44865281:271943 +k1,13786:24274501,44865281:271942 +k1,13786:25737889,44865281:271943 +k1,13786:27340212,44865281:271942 +k1,13786:29308882,44865281:271943 +k1,13786:31591469,44865281:271942 +k1,13786:32583029,44865281:0 +) +(1,13787:6630773,45706769:25952256,505283,7863 +k1,13787:32583029,45706769:23496622 +g1,13787:32583029,45706769 ) -) -] -(1,13763:6630773,47279633:25952256,0,0 -h1,13763:6630773,47279633:25952256,0,0 -) -] -h1,13763:4262630,4025873:0,0,0 -] -!20123 -}264 -Input:1975:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1976:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1977:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1978:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1979:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1980:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1981:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1982:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1983:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1984:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1985:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1986:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1987:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1988:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1989:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1990:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1991:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1992:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1993:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1994:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1995:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1996:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1997:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1998:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:1999:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2000:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2001:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2002:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2420 -{265 -[1,13787:4262630,47279633:28320399,43253760,0 -(1,13787:4262630,4025873:0,0,0 -[1,13787:-473657,4025873:25952256,0,0 -(1,13787:-473657,-710414:25952256,0,0 -h1,13787:-473657,-710414:0,0,0 -(1,13787:-473657,-710414:0,0,0 -(1,13787:-473657,-710414:0,0,0 -g1,13787:-473657,-710414 -(1,13787:-473657,-710414:65781,0,65781 -g1,13787:-407876,-710414 -[1,13787:-407876,-644633:0,0,0 ] +(1,13789:32583029,45706769:0,0,0 +g1,13789:32583029,45706769 ) -k1,13787:-473657,-710414:-65781 ) +] +(1,13789:6630773,47279633:25952256,0,0 +h1,13789:6630773,47279633:25952256,0,0 +) +] +h1,13789:4262630,4025873:0,0,0 +] +!20127 +}265 +Input:1972:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1973:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1974:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1975:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1976:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1977:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1978:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1979:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1980:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1981:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1982:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1983:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1984:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1985:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1986:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1987:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1988:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1989:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1990:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1991:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1992:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1993:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1994:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1995:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1996:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1997:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1998:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:1999:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2588 +{266 +[1,13813:4262630,47279633:28320399,43253760,0 +(1,13813:4262630,4025873:0,0,0 +[1,13813:-473657,4025873:25952256,0,0 +(1,13813:-473657,-710414:25952256,0,0 +h1,13813:-473657,-710414:0,0,0 +(1,13813:-473657,-710414:0,0,0 +(1,13813:-473657,-710414:0,0,0 +g1,13813:-473657,-710414 +(1,13813:-473657,-710414:65781,0,65781 +g1,13813:-407876,-710414 +[1,13813:-407876,-644633:0,0,0 +] +) +k1,13813:-473657,-710414:-65781 ) -k1,13787:25478599,-710414:25952256 -g1,13787:25478599,-710414 +) +k1,13813:25478599,-710414:25952256 +g1,13813:25478599,-710414 ) ] ) -[1,13787:6630773,47279633:25952256,43253760,0 -[1,13787:6630773,4812305:25952256,786432,0 -(1,13787:6630773,4812305:25952256,513147,134348 -(1,13787:6630773,4812305:25952256,513147,134348 -g1,13787:3078558,4812305 -[1,13787:3078558,4812305:0,0,0 -(1,13787:3078558,2439708:0,1703936,0 -k1,13787:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13787:2537886,2439708:1179648,16384,0 +[1,13813:6630773,47279633:25952256,43253760,0 +[1,13813:6630773,4812305:25952256,786432,0 +(1,13813:6630773,4812305:25952256,505283,11795 +(1,13813:6630773,4812305:25952256,505283,11795 +g1,13813:3078558,4812305 +[1,13813:3078558,4812305:0,0,0 +(1,13813:3078558,2439708:0,1703936,0 +k1,13813:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13813:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13787:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13813:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13787:3078558,4812305:0,0,0 -(1,13787:3078558,2439708:0,1703936,0 -g1,13787:29030814,2439708 -g1,13787:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13787:36151628,1915420:16384,1179648,0 +[1,13813:3078558,4812305:0,0,0 +(1,13813:3078558,2439708:0,1703936,0 +g1,13813:29030814,2439708 +g1,13813:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13813:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13787:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13813:37855564,2439708:1179648,16384,0 ) ) -k1,13787:3078556,2439708:-34777008 +k1,13813:3078556,2439708:-34777008 ) ] -[1,13787:3078558,4812305:0,0,0 -(1,13787:3078558,49800853:0,16384,2228224 -k1,13787:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13787:2537886,49800853:1179648,16384,0 +[1,13813:3078558,4812305:0,0,0 +(1,13813:3078558,49800853:0,16384,2228224 +k1,13813:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13813:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13787:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13813:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13787:3078558,4812305:0,0,0 -(1,13787:3078558,49800853:0,16384,2228224 -g1,13787:29030814,49800853 -g1,13787:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13787:36151628,51504789:16384,1179648,0 +[1,13813:3078558,4812305:0,0,0 +(1,13813:3078558,49800853:0,16384,2228224 +g1,13813:29030814,49800853 +g1,13813:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13813:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13787:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13813:37855564,49800853:1179648,16384,0 ) ) -k1,13787:3078556,49800853:-34777008 +k1,13813:3078556,49800853:-34777008 ) ] -g1,13787:6630773,4812305 -k1,13787:25712890,4812305:17886740 -g1,13787:29057847,4812305 -g1,13787:29873114,4812305 -) -) -] -[1,13787:6630773,45706769:25952256,40108032,0 -(1,13787:6630773,45706769:25952256,40108032,0 -(1,13787:6630773,45706769:0,0,0 -g1,13787:6630773,45706769 -) -[1,13787:6630773,45706769:25952256,40108032,0 -(1,13763:6630773,6254097:25952256,513147,134348 -h1,13762:6630773,6254097:983040,0,0 -k1,13762:11224300,6254097:165915 -k1,13762:12199585,6254097:165915 -k1,13762:13384585,6254097:165915 -k1,13762:18178653,6254097:165915 -k1,13762:19003860,6254097:165915 -k1,13762:20188860,6254097:165915 -k1,13762:21744138,6254097:165915 -k1,13762:23648068,6254097:165915 -k1,13762:26573049,6254097:165915 -k1,13762:28585114,6254097:165915 -k1,13762:29855311,6254097:165915 -k1,13762:30768992,6254097:165915 -k1,13763:32583029,6254097:0 -) -(1,13763:6630773,7095585:25952256,513147,126483 -k1,13762:8797223,7095585:197093 -k1,13762:9677200,7095585:197092 -k1,13762:12573721,7095585:197093 -k1,13762:13718464,7095585:197092 -(1,13762:13718464,7095585:0,452978,115847 -r1,13762:16187001,7095585:2468537,568825,115847 -k1,13762:13718464,7095585:-2468537 -) -(1,13762:13718464,7095585:2468537,452978,115847 -k1,13762:13718464,7095585:3277 -h1,13762:16183724,7095585:0,411205,112570 -) -k1,13762:16384094,7095585:197093 -k1,13762:17264072,7095585:197093 -(1,13762:17264072,7095585:0,459977,115847 -r1,13762:19380897,7095585:2116825,575824,115847 -k1,13762:17264072,7095585:-2116825 -) -(1,13762:17264072,7095585:2116825,459977,115847 -k1,13762:17264072,7095585:3277 -h1,13762:19377620,7095585:0,411205,112570 -) -k1,13762:19577989,7095585:197092 -k1,13762:22616723,7095585:197093 -k1,13762:23429854,7095585:197093 -(1,13762:23429854,7095585:0,452978,115847 -r1,13762:24843255,7095585:1413401,568825,115847 -k1,13762:23429854,7095585:-1413401 -) -(1,13762:23429854,7095585:1413401,452978,115847 -k1,13762:23429854,7095585:3277 -h1,13762:24839978,7095585:0,411205,112570 -) -k1,13762:25214017,7095585:197092 -k1,13762:29381281,7095585:197093 -k1,13762:30502431,7095585:197092 -k1,13762:31718609,7095585:197093 -k1,13763:32583029,7095585:0 -) -(1,13763:6630773,7937073:25952256,505283,126483 -k1,13762:7831882,7937073:150567 -k1,13762:9762407,7937073:150567 -k1,13762:11605113,7937073:150566 -k1,13762:14970876,7937073:150567 -k1,13762:16267668,7937073:150567 -(1,13762:16267668,7937073:0,452978,115847 -r1,13762:17681069,7937073:1413401,568825,115847 -k1,13762:16267668,7937073:-1413401 -) -(1,13762:16267668,7937073:1413401,452978,115847 -k1,13762:16267668,7937073:3277 -h1,13762:17677792,7937073:0,411205,112570 -) -k1,13762:18005306,7937073:150567 -k1,13762:19260155,7937073:150567 -k1,13762:20773216,7937073:150567 -k1,13762:25060414,7937073:150566 -k1,13762:26283150,7937073:150567 -k1,13762:28465988,7937073:150567 -k1,13762:29762780,7937073:150567 -(1,13762:29762780,7937073:0,452978,115847 -r1,13762:32583029,7937073:2820249,568825,115847 -k1,13762:29762780,7937073:-2820249 -) -(1,13762:29762780,7937073:2820249,452978,115847 -k1,13762:29762780,7937073:3277 -h1,13762:32579752,7937073:0,411205,112570 -) -k1,13762:32583029,7937073:0 -) -(1,13763:6630773,8778561:25952256,513147,126483 -k1,13762:7776283,8778561:153950 -k1,13762:11182129,8778561:153950 -k1,13762:14035506,8778561:153949 -k1,13762:14817291,8778561:153950 -k1,13762:17637246,8778561:153950 -k1,13762:18442624,8778561:153950 -k1,13762:21122332,8778561:153950 -k1,13762:23178792,8778561:153950 -k1,13762:24280392,8778561:153949 -k1,13762:27686238,8778561:153950 -k1,13762:30365946,8778561:153950 -k1,13763:32583029,8778561:0 -) -(1,13763:6630773,9620049:25952256,513147,126483 -k1,13762:7971937,9620049:137923 -k1,13762:10635619,9620049:137924 -k1,13762:12676052,9620049:137923 -k1,13762:13805535,9620049:137923 -k1,13762:16727427,9620049:137923 -k1,13762:17813002,9620049:137924 -k1,13762:19694838,9620049:137923 -k1,13762:22897225,9620049:137923 -k1,13762:24319654,9620049:137923 -k1,13762:25449138,9620049:137924 -k1,13762:28838957,9620049:137923 -k1,13762:32583029,9620049:0 -) -(1,13763:6630773,10461537:25952256,505283,115847 -g1,13762:7976227,10461537 -(1,13762:7976227,10461537:0,414482,115847 -r1,13762:8334493,10461537:358266,530329,115847 -k1,13762:7976227,10461537:-358266 -) -(1,13762:7976227,10461537:358266,414482,115847 -k1,13762:7976227,10461537:3277 -h1,13762:8331216,10461537:0,411205,112570 -) -g1,13762:8707392,10461537 -(1,13762:8707392,10461537:0,414482,115847 -r1,13762:9065658,10461537:358266,530329,115847 -k1,13762:8707392,10461537:-358266 -) -(1,13762:8707392,10461537:358266,414482,115847 -k1,13762:8707392,10461537:3277 -h1,13762:9062381,10461537:0,411205,112570 -) -g1,13762:9438557,10461537 -(1,13762:9438557,10461537:0,452978,115847 -r1,13762:10851958,10461537:1413401,568825,115847 -k1,13762:9438557,10461537:-1413401 -) -(1,13762:9438557,10461537:1413401,452978,115847 -k1,13762:9438557,10461537:3277 -h1,13762:10848681,10461537:0,411205,112570 -) -g1,13762:11224857,10461537 -(1,13762:11224857,10461537:0,452978,115847 -r1,13762:12989970,10461537:1765113,568825,115847 -k1,13762:11224857,10461537:-1765113 -) -(1,13762:11224857,10461537:1765113,452978,115847 -k1,13762:11224857,10461537:3277 -h1,13762:12986693,10461537:0,411205,112570 -) -g1,13762:13362869,10461537 -k1,13763:32583028,10461537:18108668 -g1,13763:32583028,10461537 -) -(1,13765:6630773,11303025:25952256,513147,134348 -h1,13764:6630773,11303025:983040,0,0 -k1,13764:9008364,11303025:197864 -k1,13764:11108738,11303025:197864 -k1,13764:12819828,11303025:197864 -k1,13764:13779220,11303025:197864 -k1,13764:16242664,11303025:197864 -k1,13764:17375071,11303025:197864 -k1,13764:18592021,11303025:197865 -k1,13764:21597447,11303025:197864 -k1,13764:26112168,11303025:197864 -k1,13764:27759688,11303025:197864 -k1,13764:29843023,11303025:197864 -k1,13764:31657005,11303025:197864 -k1,13765:32583029,11303025:0 -) -(1,13765:6630773,12144513:25952256,513147,126483 -k1,13764:7846991,12144513:248907 -k1,13764:12059516,12144513:248908 -k1,13764:12959851,12144513:248907 -$1,13764:12959851,12144513 -k1,13764:13735367,12144513:272855 -k1,13764:14576418,12144513:272854 -$1,13764:14974877,12144513 -k1,13764:15223784,12144513:248907 -k1,13764:16664137,12144513:248908 -k1,13764:18798515,12144513:248907 -k1,13764:20204132,12144513:248907 -k1,13764:21104468,12144513:248908 -$1,13764:21104468,12144513 -k1,13764:21879983,12144513:272854 -k1,13764:22721035,12144513:272855 -$1,13764:23119494,12144513 -k1,13764:23749165,12144513:248907 -k1,13764:26932774,12144513:248907 -k1,13764:28129333,12144513:248908 -k1,13764:29829862,12144513:248907 -k1,13765:32583029,12144513:0 -) -(1,13765:6630773,12986001:25952256,513147,134348 -k1,13764:8312598,12986001:188259 -k1,13764:9187019,12986001:188259 -(1,13764:9187019,12986001:0,452978,115847 -r1,13764:10952132,12986001:1765113,568825,115847 -k1,13764:9187019,12986001:-1765113 -) -(1,13764:9187019,12986001:1765113,452978,115847 -k1,13764:9187019,12986001:3277 -h1,13764:10948855,12986001:0,411205,112570 -) -k1,13764:11314062,12986001:188260 -k1,13764:13157105,12986001:188259 -k1,13764:14336924,12986001:188259 -k1,13764:17196430,12986001:188259 -k1,13764:19287199,12986001:188259 -k1,13764:20126887,12986001:188260 -k1,13764:22530263,12986001:188259 -k1,13764:24286143,12986001:188259 -k1,13764:26172440,12986001:188259 -k1,13764:28932988,12986001:188260 -k1,13764:29477107,12986001:188259 -k1,13764:31116333,12986001:188259 -k1,13764:32583029,12986001:0 -) -(1,13765:6630773,13827489:25952256,513147,134348 -g1,13764:10400403,13827489 -g1,13764:11791077,13827489 -g1,13764:14516064,13827489 -g1,13764:16164949,13827489 -g1,13764:17161096,13827489 -g1,13764:20122668,13827489 -g1,13764:21938015,13827489 -g1,13764:24039754,13827489 -g1,13764:24855021,13827489 -g1,13764:27882783,13827489 -k1,13765:32583029,13827489:2776764 -g1,13765:32583029,13827489 -) -v1,13767:6630773,15193265:0,393216,0 -(1,13768:6630773,22594871:25952256,7794822,616038 -g1,13768:6630773,22594871 -(1,13768:6630773,22594871:25952256,7794822,616038 -(1,13768:6630773,23210909:25952256,8410860,0 -[1,13768:6630773,23210909:25952256,8410860,0 -(1,13768:6630773,23184695:25952256,8358432,0 -r1,13768:6656987,23184695:26214,8358432,0 -[1,13768:6656987,23184695:25899828,8358432,0 -(1,13768:6656987,22594871:25899828,7178784,0 -[1,13768:7246811,22594871:24720180,7178784,0 -(1,13768:7246811,16577972:24720180,1161885,196608 -(1,13767:7246811,16577972:0,1161885,196608 -r1,13768:8794447,16577972:1547636,1358493,196608 -k1,13767:7246811,16577972:-1547636 -) -(1,13767:7246811,16577972:1547636,1161885,196608 -) -k1,13767:9013364,16577972:218917 -k1,13767:12387841,16577972:218918 -k1,13767:13222796,16577972:218917 -k1,13767:13797573,16577972:218917 -k1,13767:15293788,16577972:218918 -k1,13767:17244166,16577972:218917 -k1,13767:18079121,16577972:218917 -k1,13767:20964044,16577972:218918 -k1,13767:21834389,16577972:218917 -k1,13767:23791321,16577972:218917 -k1,13767:27675012,16577972:218918 -k1,13767:28655457,16577972:218917 -k1,13767:31966991,16577972:0 -) -(1,13768:7246811,17419460:24720180,505283,134348 -k1,13767:8635563,17419460:284470 -k1,13767:10205849,17419460:284470 -k1,13767:11238085,17419460:284470 -k1,13767:12457098,17419460:284470 -k1,13767:13392996,17419460:284470 -k1,13767:16435221,17419460:284470 -k1,13767:18730336,17419460:284470 -k1,13767:20464462,17419460:284470 -k1,13767:23273379,17419460:284470 -k1,13767:24323965,17419460:284470 -k1,13767:26626944,17419460:284470 -k1,13767:27527452,17419460:284470 -k1,13767:28167782,17419460:284470 -k1,13767:30010043,17419460:284470 -k1,13767:30910551,17419460:284470 -k1,13767:31966991,17419460:0 -) -(1,13768:7246811,18260948:24720180,513147,126483 -k1,13767:9745152,18260948:171158 -k1,13767:10575602,18260948:171158 -k1,13767:11765845,18260948:171158 -k1,13767:14202584,18260948:171159 -k1,13767:16442058,18260948:171158 -k1,13767:19768775,18260948:171158 -k1,13767:20874476,18260948:171158 -k1,13767:21697062,18260948:171158 -k1,13767:24625975,18260948:171158 -k1,13767:26981449,18260948:171159 -k1,13767:28144167,18260948:171158 -k1,13767:29381596,18260948:171158 -k1,13767:31966991,18260948:0 -) -(1,13768:7246811,19102436:24720180,513147,126483 -k1,13767:8043788,19102436:145549 -k1,13767:9752372,19102436:145550 -k1,13767:11089366,19102436:145549 -k1,13767:12226475,19102436:145549 -k1,13767:16597131,19102436:145550 -k1,13767:20749551,19102436:145549 -k1,13767:21554393,19102436:145550 -k1,13767:23776123,19102436:145549 -k1,13767:24549507,19102436:145549 -k1,13767:26397027,19102436:145550 -k1,13767:28671185,19102436:145549 -k1,13767:31966991,19102436:0 -) -(1,13768:7246811,19943924:24720180,513147,134348 -k1,13767:8175409,19943924:269306 -k1,13767:9722012,19943924:269306 -k1,13767:12860485,19943924:269307 -k1,13767:14234073,19943924:269306 -k1,13767:15251145,19943924:269306 -k1,13767:17376431,19943924:269306 -k1,13767:18580281,19943924:269307 -k1,13767:19501015,19943924:269306 -k1,13767:20126181,19943924:269306 -k1,13767:22268506,19943924:269306 -k1,13767:25295567,19943924:269306 -k1,13767:27245217,19943924:269307 -k1,13767:28173815,19943924:269306 -k1,13767:29213824,19943924:269306 -k1,13768:31966991,19943924:0 -) -(1,13768:7246811,20785412:24720180,513147,134348 -k1,13767:10210516,20785412:194154 -k1,13767:11170786,20785412:194154 -k1,13767:15436692,20785412:194154 -k1,13767:18036673,20785412:194154 -k1,13767:18846865,20785412:194154 -k1,13767:20060104,20785412:194154 -k1,13767:21812050,20785412:194155 -(1,13767:21812050,20785412:0,452978,115847 -r1,13768:23225451,20785412:1413401,568825,115847 -k1,13767:21812050,20785412:-1413401 -) -(1,13767:21812050,20785412:1413401,452978,115847 -k1,13767:21812050,20785412:3277 -h1,13767:23222174,20785412:0,411205,112570 -) -k1,13767:23593275,20785412:194154 -k1,13767:24470314,20785412:194154 -k1,13767:27249863,20785412:194154 -k1,13767:28095445,20785412:194154 -k1,13767:28645459,20785412:194154 -k1,13767:31350953,20785412:194154 -k1,13768:31966991,20785412:0 -) -(1,13768:7246811,21626900:24720180,513147,126483 -(1,13767:7246811,21626900:0,452978,115847 -r1,13768:8660212,21626900:1413401,568825,115847 -k1,13767:7246811,21626900:-1413401 -) -(1,13767:7246811,21626900:1413401,452978,115847 -k1,13767:7246811,21626900:3277 -h1,13767:8656935,21626900:0,411205,112570 -) -k1,13767:8839037,21626900:178825 -k1,13767:9633899,21626900:178824 -k1,13767:11698195,21626900:178825 -k1,13767:13244101,21626900:178825 -k1,13767:14442011,21626900:178825 -k1,13767:16301178,21626900:178824 -k1,13767:17139295,21626900:178825 -k1,13767:18337205,21626900:178825 -k1,13767:21442867,21626900:178825 -k1,13767:23115257,21626900:178824 -k1,13767:23980244,21626900:178825 -(1,13767:23980244,21626900:0,452978,115847 -r1,13768:25745357,21626900:1765113,568825,115847 -k1,13767:23980244,21626900:-1765113 -) -(1,13767:23980244,21626900:1765113,452978,115847 -k1,13767:23980244,21626900:3277 -h1,13767:25742080,21626900:0,411205,112570 -) -k1,13767:26097852,21626900:178825 -k1,13767:27409139,21626900:178825 -k1,13767:29959711,21626900:178824 -k1,13767:30947906,21626900:178825 -k1,13767:31966991,21626900:0 -) -(1,13768:7246811,22468388:24720180,513147,126483 -g1,13767:9456685,22468388 -g1,13767:10315206,22468388 -g1,13767:11533520,22468388 -g1,13767:14318144,22468388 -k1,13768:31966991,22468388:14963837 -g1,13768:31966991,22468388 -) -] -) -] -r1,13768:32583029,23184695:26214,8358432,0 -) -] -) -) -g1,13768:32583029,22594871 -) -h1,13768:6630773,23210909:0,0,0 -(1,13771:6630773,24576685:25952256,505283,134348 -h1,13770:6630773,24576685:983040,0,0 -k1,13770:9100554,24576685:290054 -k1,13770:10992309,24576685:290055 -k1,13770:13130478,24576685:290054 -k1,13770:16228095,24576685:290055 -k1,13770:17169577,24576685:290054 -k1,13770:18848994,24576685:290054 -k1,13770:19670546,24576685:290055 -(1,13770:19670546,24576685:0,452978,115847 -r1,13770:22490795,24576685:2820249,568825,115847 -k1,13770:19670546,24576685:-2820249 -) -(1,13770:19670546,24576685:2820249,452978,115847 -k1,13770:19670546,24576685:3277 -h1,13770:22487518,24576685:0,411205,112570 -) -k1,13770:22954519,24576685:290054 -k1,13770:25130044,24576685:290054 -k1,13770:27488415,24576685:290055 -k1,13770:29062975,24576685:290054 -k1,13770:30372115,24576685:290055 -k1,13770:32051532,24576685:290054 -k1,13770:32583029,24576685:0 -) -(1,13771:6630773,25418173:25952256,513147,126483 -k1,13770:8630509,25418173:232230 -k1,13770:9475502,25418173:232231 -k1,13770:10496130,25418173:232230 -k1,13770:12029906,25418173:232231 -k1,13770:14116150,25418173:232230 -k1,13770:14976216,25418173:232231 -k1,13770:15564306,25418173:232230 -k1,13770:17412654,25418173:232230 -k1,13770:19390764,25418173:232231 -k1,13770:20670259,25418173:232230 -(1,13770:20670259,25418173:0,452978,115847 -r1,13770:28414473,25418173:7744214,568825,115847 -k1,13770:20670259,25418173:-7744214 -) -(1,13770:20670259,25418173:7744214,452978,115847 -k1,13770:20670259,25418173:3277 -h1,13770:28411196,25418173:0,411205,112570 -) -k1,13770:28820374,25418173:232231 -k1,13770:30071689,25418173:232230 -k1,13770:32583029,25418173:0 -) -(1,13771:6630773,26259661:25952256,505283,115847 -k1,13770:7481368,26259661:234557 -k1,13770:8735010,26259661:234557 -k1,13770:10358931,26259661:234558 -k1,13770:12549738,26259661:234557 -k1,13770:13532061,26259661:234557 -k1,13770:16445730,26259661:234557 -k1,13770:18074239,26259661:234558 -k1,13770:20319441,26259661:234557 -k1,13770:22047564,26259661:234557 -k1,13770:22968283,26259661:234557 -(1,13770:22968283,26259661:0,452978,115847 -r1,13770:24733396,26259661:1765113,568825,115847 -k1,13770:22968283,26259661:-1765113 -) -(1,13770:22968283,26259661:1765113,452978,115847 -k1,13770:22968283,26259661:3277 -h1,13770:24730119,26259661:0,411205,112570 -) -k1,13770:25141624,26259661:234558 -(1,13770:25141624,26259661:0,452978,115847 -r1,13770:27258449,26259661:2116825,568825,115847 -k1,13770:25141624,26259661:-2116825 -) -(1,13770:25141624,26259661:2116825,452978,115847 -k1,13770:25141624,26259661:3277 -h1,13770:27255172,26259661:0,411205,112570 -) -k1,13770:29217914,26259661:234557 -k1,13770:30992567,26259661:234557 -k1,13770:31641932,26259661:234522 -k1,13771:32583029,26259661:0 -) -(1,13771:6630773,27101149:25952256,513147,134348 -k1,13770:8654064,27101149:216463 -k1,13770:9498363,27101149:216464 -k1,13770:10070686,27101149:216463 -k1,13770:12411827,27101149:216464 -k1,13770:15435852,27101149:216463 -k1,13770:17387709,27101149:216464 -(1,13770:17387709,27101149:0,452978,115847 -r1,13770:25131923,27101149:7744214,568825,115847 -k1,13770:17387709,27101149:-7744214 -) -(1,13770:17387709,27101149:7744214,452978,115847 -k1,13770:17387709,27101149:3277 -h1,13770:25128646,27101149:0,411205,112570 -) -k1,13770:25348386,27101149:216463 -k1,13770:27357260,27101149:216464 -k1,13770:28233015,27101149:216463 -k1,13770:28805339,27101149:216464 -k1,13770:31089463,27101149:216463 -k1,13770:32583029,27101149:0 -) -(1,13771:6630773,27942637:25952256,505283,126483 -k1,13770:7556714,27942637:239779 -(1,13770:7556714,27942637:0,452978,115847 -r1,13770:11432098,27942637:3875384,568825,115847 -k1,13770:7556714,27942637:-3875384 -) -(1,13770:7556714,27942637:3875384,452978,115847 -k1,13770:7556714,27942637:3277 -h1,13770:11428821,27942637:0,411205,112570 -) -k1,13770:11671876,27942637:239778 -k1,13770:13103100,27942637:239779 -(1,13770:13103100,27942637:0,452978,115847 -r1,13770:16275060,27942637:3171960,568825,115847 -k1,13770:13103100,27942637:-3171960 -) -(1,13770:13103100,27942637:3171960,452978,115847 -k1,13770:13103100,27942637:3277 -h1,13770:16271783,27942637:0,411205,112570 -) -k1,13770:16514838,27942637:239778 -k1,13770:18710867,27942637:239779 -k1,13770:19698411,27942637:239778 -k1,13770:23747798,27942637:239779 -k1,13770:24673738,27942637:239778 -k1,13770:27329174,27942637:239779 -k1,13770:29930214,27942637:239778 -k1,13770:31563944,27942637:239779 -k1,13770:32583029,27942637:0 -) -(1,13771:6630773,28784125:25952256,513147,126483 -k1,13770:11870959,28784125:163767 -k1,13770:12694018,28784125:163767 -k1,13770:16050699,28784125:163767 -k1,13770:18108456,28784125:163767 -k1,13770:20064634,28784125:163768 -k1,13770:20879829,28784125:163767 -k1,13770:24236510,28784125:163767 -k1,13770:26761539,28784125:163767 -k1,13770:29513978,28784125:163767 -k1,13771:32583029,28784125:0 -) -(1,13771:6630773,29625613:25952256,513147,126483 -k1,13770:8254077,29625613:162506 -k1,13770:9178110,29625613:162505 -k1,13770:11779866,29625613:162506 -k1,13770:12570206,29625613:162505 -k1,13770:15363983,29625613:162506 -k1,13770:16920439,29625613:162505 -(1,13770:16920439,29625613:0,452978,115847 -r1,13770:23961230,29625613:7040791,568825,115847 -k1,13770:16920439,29625613:-7040791 -) -(1,13770:16920439,29625613:7040791,452978,115847 -k1,13770:16920439,29625613:3277 -h1,13770:23957953,29625613:0,411205,112570 -) -k1,13770:24123736,29625613:162506 -k1,13770:25305326,29625613:162505 -k1,13770:26848676,29625613:162506 -k1,13770:28871748,29625613:162505 -k1,13770:29685682,29625613:162506 -k1,13770:32583029,29625613:0 -) -(1,13771:6630773,30467101:25952256,513147,134348 -k1,13770:9295228,30467101:234380 -k1,13770:10548694,30467101:234381 -k1,13770:13590636,30467101:234380 -k1,13770:16460220,30467101:234381 -k1,13770:18588590,30467101:234380 -k1,13770:20615381,30467101:234381 -k1,13770:22041206,30467101:234380 -k1,13770:24636849,30467101:234381 -k1,13770:25632757,30467101:234380 -k1,13770:28294592,30467101:234381 -k1,13770:31931601,30467101:234380 -k1,13770:32583029,30467101:0 -) -(1,13771:6630773,31308589:25952256,513147,126483 -g1,13770:7849087,31308589 -g1,13770:9620525,31308589 -g1,13770:13019222,31308589 -g1,13770:16829485,31308589 -(1,13770:16829485,31308589:0,452978,115847 -r1,13770:18946310,31308589:2116825,568825,115847 -k1,13770:16829485,31308589:-2116825 -) -(1,13770:16829485,31308589:2116825,452978,115847 -k1,13770:16829485,31308589:3277 -h1,13770:18943033,31308589:0,411205,112570 -) -g1,13770:19145539,31308589 -g1,13770:20536213,31308589 -(1,13770:20536213,31308589:0,452978,115847 -r1,13770:22653038,31308589:2116825,568825,115847 -k1,13770:20536213,31308589:-2116825 -) -(1,13770:20536213,31308589:2116825,452978,115847 -k1,13770:20536213,31308589:3277 -h1,13770:22649761,31308589:0,411205,112570 -) -k1,13771:32583029,31308589:9756321 -g1,13771:32583029,31308589 -) -(1,13773:6630773,32150077:25952256,505283,134348 -h1,13772:6630773,32150077:983040,0,0 -k1,13772:8272727,32150077:171326 -k1,13772:12014481,32150077:171353 -k1,13772:13575198,32150077:171354 -k1,13772:16257891,32150077:171353 -k1,13772:18289812,32150077:171354 -k1,13772:19112593,32150077:171353 -k1,13772:20031713,32150077:171354 -k1,13772:22788461,32150077:171353 -k1,13772:23611243,32150077:171354 -k1,13772:24553299,32150077:171353 -k1,13772:27511899,32150077:171354 -k1,13772:30241778,32150077:171353 -k1,13772:30768992,32150077:171354 -k1,13773:32583029,32150077:0 -) -(1,13773:6630773,32991565:25952256,505283,115847 -k1,13772:8796864,32991565:196734 -k1,13772:10565808,32991565:196735 -k1,13772:12256108,32991565:196734 -k1,13772:13139004,32991565:196734 -(1,13772:13139004,32991565:0,452978,115847 -r1,13772:21586641,32991565:8447637,568825,115847 -k1,13772:13139004,32991565:-8447637 -) -(1,13772:13139004,32991565:8447637,452978,115847 -k1,13772:13139004,32991565:3277 -h1,13772:21583364,32991565:0,411205,112570 -) -k1,13772:21783375,32991565:196734 -k1,13772:22662995,32991565:196735 -k1,13772:24016439,32991565:196734 -k1,13772:25001571,32991565:196734 -k1,13772:27540563,32991565:196735 -k1,13772:30471459,32991565:196734 -k1,13772:32583029,32991565:0 -) -(1,13773:6630773,33833053:25952256,513147,134348 -k1,13772:7452307,33833053:205496 -k1,13772:8013664,33833053:205497 -(1,13772:8013664,33833053:0,452978,115847 -r1,13772:10482201,33833053:2468537,568825,115847 -k1,13772:8013664,33833053:-2468537 -) -(1,13772:8013664,33833053:2468537,452978,115847 -k1,13772:8013664,33833053:3277 -h1,13772:10478924,33833053:0,411205,112570 -) -k1,13772:10687697,33833053:205496 -k1,13772:13404534,33833053:205497 -k1,13772:14742492,33833053:205496 -k1,13772:15695754,33833053:205496 -k1,13772:18486646,33833053:205497 -k1,13772:19959608,33833053:205496 -k1,13772:20520964,33833053:205496 -k1,13772:24296862,33833053:205497 -k1,13772:26282971,33833053:205496 -k1,13772:27147760,33833053:205497 -k1,13772:29888189,33833053:205496 -k1,13773:32583029,33833053:0 -) -(1,13773:6630773,34674541:25952256,505283,134348 -k1,13772:7981369,34674541:167671 -k1,13772:10005020,34674541:167671 -k1,13772:14489549,34674541:167672 -k1,13772:17215746,34674541:167671 -k1,13772:17739277,34674541:167671 -k1,13772:20097161,34674541:167671 -k1,13772:20947718,34674541:167672 -k1,13772:24048125,34674541:167671 -k1,13772:24977324,34674541:167671 -k1,13772:27067821,34674541:167671 -k1,13772:28254578,34674541:167672 -k1,13772:30783511,34674541:167671 -k1,13772:31563944,34674541:167671 -k1,13772:32583029,34674541:0 -) -(1,13773:6630773,35516029:25952256,513147,134348 -k1,13772:9894645,35516029:187612 -k1,13772:11273701,35516029:187611 -k1,13772:14671266,35516029:187612 -k1,13772:15471640,35516029:187612 -k1,13772:18330498,35516029:187611 -k1,13772:22576099,35516029:187612 -k1,13772:24948025,35516029:187611 -k1,13772:27145626,35516029:187612 -k1,13772:28352323,35516029:187612 -k1,13772:30320547,35516029:187611 -k1,13772:31167451,35516029:187612 -k1,13773:32583029,35516029:0 -) -(1,13773:6630773,36357517:25952256,513147,134348 -k1,13772:8447481,36357517:193381 -k1,13772:9300155,36357517:193382 -k1,13772:10512621,36357517:193381 -k1,13772:13291398,36357517:193382 -k1,13772:15996119,36357517:193381 -k1,13772:17639157,36357517:193382 -k1,13772:19404747,36357517:193381 -k1,13772:22110124,36357517:193382 -k1,13772:23028333,36357517:193381 -k1,13772:24506221,36357517:193382 -k1,13772:25718687,36357517:193381 -k1,13772:27528187,36357517:193382 -k1,13772:29601796,36357517:193381 -k1,13772:32583029,36357517:0 -) -(1,13773:6630773,37199005:25952256,513147,134348 -k1,13772:9487012,37199005:221036 -(1,13772:9487012,37199005:0,452978,115847 -r1,13772:11252125,37199005:1765113,568825,115847 -k1,13772:9487012,37199005:-1765113 -) -(1,13772:9487012,37199005:1765113,452978,115847 -k1,13772:9487012,37199005:3277 -h1,13772:11248848,37199005:0,411205,112570 -) -k1,13772:11473161,37199005:221036 -k1,13772:12885642,37199005:221036 -(1,13772:12885642,37199005:0,452978,122846 -r1,13772:15705891,37199005:2820249,575824,122846 -k1,13772:12885642,37199005:-2820249 -) -(1,13772:12885642,37199005:2820249,452978,122846 -k1,13772:12885642,37199005:3277 -h1,13772:15702614,37199005:0,411205,112570 -) -k1,13772:16307691,37199005:221036 -k1,13772:19420831,37199005:221036 -k1,13772:20301159,37199005:221036 -k1,13772:22994213,37199005:221036 -k1,13772:25225894,37199005:221036 -k1,13772:25978427,37199005:221036 -k1,13772:27693029,37199005:221036 -k1,13772:29198571,37199005:221036 -k1,13772:32227169,37199005:221036 -k1,13772:32583029,37199005:0 -) -(1,13773:6630773,38040493:25952256,513147,126483 -k1,13772:8496569,38040493:185453 -k1,13772:9298060,38040493:185453 -k1,13772:9839373,38040493:185453 -k1,13772:12536165,38040493:185452 -k1,13772:13373046,38040493:185453 -k1,13772:14329202,38040493:185453 -(1,13772:14329202,38040493:0,414482,115847 -r1,13772:15039180,38040493:709978,530329,115847 -k1,13772:14329202,38040493:-709978 -) -(1,13772:14329202,38040493:709978,414482,115847 -k1,13772:14329202,38040493:3277 -h1,13772:15035903,38040493:0,411205,112570 -) -k1,13772:15224633,38040493:185453 -k1,13772:17090429,38040493:185453 -k1,13772:18223533,38040493:185453 -k1,13772:19179689,38040493:185453 -k1,13772:22209405,38040493:185453 -k1,13772:23888423,38040493:185452 -k1,13772:24760038,38040493:185453 -k1,13772:26561609,38040493:185453 -k1,13772:28793096,38040493:185453 -k1,13772:29997634,38040493:185453 -k1,13772:32583029,38040493:0 -) -(1,13773:6630773,38881981:25952256,513147,134348 -k1,13772:8865395,38881981:223977 -k1,13772:11921838,38881981:223977 -k1,13772:13342501,38881981:223976 -k1,13772:16046360,38881981:223977 -k1,13772:19077899,38881981:223977 -(1,13772:19077899,38881981:0,414482,115847 -r1,13772:19787877,38881981:709978,530329,115847 -k1,13772:19077899,38881981:-709978 -) -(1,13772:19077899,38881981:709978,414482,115847 -k1,13772:19077899,38881981:3277 -h1,13772:19784600,38881981:0,411205,112570 -) -k1,13772:20011854,38881981:223977 -k1,13772:22246476,38881981:223977 -k1,13772:23086490,38881981:223976 -k1,13772:24329552,38881981:223977 -k1,13772:25942892,38881981:223977 -k1,13772:26818297,38881981:223977 -k1,13772:27398133,38881981:223976 -k1,13772:30019417,38881981:223977 -k1,13772:31923737,38881981:223977 -k1,13772:32583029,38881981:0 -) -(1,13773:6630773,39723469:25952256,505283,134348 -k1,13772:7638901,39723469:237425 -k1,13772:10720589,39723469:237425 -k1,13772:11489510,39723469:237424 -k1,13772:13012751,39723469:237425 -k1,13772:15880136,39723469:237425 -k1,13772:17567217,39723469:237425 -k1,13772:21089961,39723469:237424 -(1,13772:21089961,39723469:0,414482,115847 -r1,13772:21799939,39723469:709978,530329,115847 -k1,13772:21089961,39723469:-709978 -) -(1,13772:21089961,39723469:709978,414482,115847 -k1,13772:21089961,39723469:3277 -h1,13772:21796662,39723469:0,411205,112570 -) -k1,13772:22037364,39723469:237425 -k1,13772:24285434,39723469:237425 -k1,13772:25138897,39723469:237425 -k1,13772:26395406,39723469:237424 -k1,13772:29218226,39723469:237425 -k1,13772:31966991,39723469:237425 -k1,13772:32583029,39723469:0 -) -(1,13773:6630773,40564957:25952256,513147,126483 -g1,13772:8060113,40564957 -g1,13772:9948860,40564957 -g1,13772:11850059,40564957 -g1,13772:14059933,40564957 -g1,13772:15250722,40564957 -g1,13772:18035346,40564957 -g1,13772:18886003,40564957 -g1,13772:21284620,40564957 -g1,13772:22143141,40564957 -k1,13773:32583029,40564957:8691387 -g1,13773:32583029,40564957 -) -(1,13780:6630773,42656217:25952256,555811,139132 -(1,13780:6630773,42656217:2450326,525533,0 -g1,13780:6630773,42656217 -g1,13780:9081099,42656217 -) -g1,13780:10929477,42656217 -g1,13780:12496705,42656217 -g1,13780:14069701,42656217 -k1,13780:32583029,42656217:16399661 -g1,13780:32583029,42656217 -) -(1,13787:6630773,43890921:25952256,513147,115847 -k1,13786:8245302,43890921:178635 -k1,13786:9292290,43890921:178636 -k1,13786:12140206,43890921:178635 -k1,13786:12674702,43890921:178636 -k1,13786:15128747,43890921:178635 -k1,13786:18084799,43890921:178636 -k1,13786:18914862,43890921:178635 -k1,13786:19859614,43890921:178636 -k1,13786:22114430,43890921:178635 -k1,13786:23801705,43890921:178636 -(1,13786:23801705,43890921:0,414482,115847 -r1,13786:25215106,43890921:1413401,530329,115847 -k1,13786:23801705,43890921:-1413401 -) -(1,13786:23801705,43890921:1413401,414482,115847 -k1,13786:23801705,43890921:3277 -h1,13786:25211829,43890921:0,411205,112570 -) -k1,13786:25567411,43890921:178635 -k1,13786:26942734,43890921:178636 -k1,13786:29386949,43890921:178635 -(1,13786:29386949,43890921:0,414482,115847 -r1,13786:30800350,43890921:1413401,530329,115847 -k1,13786:29386949,43890921:-1413401 -) -(1,13786:29386949,43890921:1413401,414482,115847 -k1,13786:29386949,43890921:3277 -h1,13786:30797073,43890921:0,411205,112570 -) -k1,13786:30978986,43890921:178636 -k1,13786:31816913,43890921:178635 -k1,13786:32583029,43890921:0 -) -(1,13787:6630773,44732409:25952256,513147,126483 -k1,13786:8702019,44732409:168736 -k1,13786:9402252,44732409:168736 -k1,13786:10590072,44732409:168735 -k1,13786:12496823,44732409:168736 -k1,13786:13324851,44732409:168736 -k1,13786:14512672,44732409:168736 -k1,13786:17192748,44732409:168736 -k1,13786:18044369,44732409:168736 -k1,13786:19232189,44732409:168735 -k1,13786:22840910,44732409:168736 -k1,13786:25595041,44732409:168736 -k1,13786:26415205,44732409:168736 -k1,13786:27215708,44732409:168736 -k1,13786:28012279,44732409:168736 -k1,13786:29200099,44732409:168735 -k1,13786:30735916,44732409:168736 -k1,13786:31563944,44732409:168736 -k1,13787:32583029,44732409:0 -) -(1,13787:6630773,45573897:25952256,513147,134348 -(1,13786:6630773,45573897:0,414482,115847 -r1,13786:6989039,45573897:358266,530329,115847 -k1,13786:6630773,45573897:-358266 -) -(1,13786:6630773,45573897:358266,414482,115847 -k1,13786:6630773,45573897:3277 -h1,13786:6985762,45573897:0,411205,112570 -) -k1,13786:7332276,45573897:169567 -(1,13786:7332276,45573897:0,414482,115847 -r1,13786:7690542,45573897:358266,530329,115847 -k1,13786:7332276,45573897:-358266 -) -(1,13786:7332276,45573897:358266,414482,115847 -k1,13786:7332276,45573897:3277 -h1,13786:7687265,45573897:0,411205,112570 -) -k1,13786:7860110,45573897:169568 -k1,13786:9221122,45573897:169567 -(1,13786:9221122,45573897:0,414482,115847 -r1,13786:9579388,45573897:358266,530329,115847 -k1,13786:9221122,45573897:-358266 -) -(1,13786:9221122,45573897:358266,414482,115847 -k1,13786:9221122,45573897:3277 -h1,13786:9576111,45573897:0,411205,112570 -) -k1,13786:9748955,45573897:169567 -k1,13786:12982987,45573897:169568 -k1,13786:14171639,45573897:169567 -(1,13786:14171639,45573897:0,414482,115847 -r1,13786:15585040,45573897:1413401,530329,115847 -k1,13786:14171639,45573897:-1413401 -) -(1,13786:14171639,45573897:1413401,414482,115847 -k1,13786:14171639,45573897:3277 -h1,13786:15581763,45573897:0,411205,112570 -) -k1,13786:15754607,45573897:169567 -k1,13786:17618936,45573897:169568 -k1,13786:18439931,45573897:169567 -k1,13786:19628583,45573897:169567 -k1,13786:21370360,45573897:169568 -k1,13786:22071424,45573897:169567 -k1,13786:23754217,45573897:169567 -k1,13786:24871436,45573897:169568 -k1,13786:26060088,45573897:169567 -k1,13786:27482048,45573897:169567 -k1,13786:29669470,45573897:169568 -k1,13786:30881059,45573897:169567 -k1,13786:32583029,45573897:0 -) -] -(1,13787:32583029,45706769:0,0,0 -g1,13787:32583029,45706769 +g1,13813:6630773,4812305 +g1,13813:6630773,4812305 +g1,13813:8724648,4812305 +k1,13813:31387652,4812305:22663004 +) +) +] +[1,13813:6630773,45706769:25952256,40108032,0 +(1,13813:6630773,45706769:25952256,40108032,0 +(1,13813:6630773,45706769:0,0,0 +g1,13813:6630773,45706769 ) +[1,13813:6630773,45706769:25952256,40108032,0 +(1,13789:6630773,6254097:25952256,513147,134348 +h1,13788:6630773,6254097:983040,0,0 +k1,13788:11404296,6254097:345911 +k1,13788:12559576,6254097:345910 +k1,13788:13924572,6254097:345911 +k1,13788:18898636,6254097:345911 +k1,13788:19903838,6254097:345910 +k1,13788:21268834,6254097:345911 +k1,13788:23004107,6254097:345910 +k1,13788:25088033,6254097:345911 +k1,13788:28193010,6254097:345911 +k1,13788:30385070,6254097:345910 +k1,13788:31835263,6254097:345911 +k1,13788:32583029,6254097:0 +) +(1,13789:6630773,7095585:25952256,513147,126483 +k1,13788:10459780,7095585:258606 +k1,13788:11401271,7095585:258606 +k1,13788:14359305,7095585:258606 +k1,13788:15565562,7095585:258606 +(1,13788:15565562,7095585:0,452978,115847 +r1,13788:18034099,7095585:2468537,568825,115847 +k1,13788:15565562,7095585:-2468537 +) +(1,13788:15565562,7095585:2468537,452978,115847 +k1,13788:15565562,7095585:3277 +h1,13788:18030822,7095585:0,411205,112570 +) +k1,13788:18292705,7095585:258606 +k1,13788:19234195,7095585:258605 +(1,13788:19234195,7095585:0,459977,115847 +r1,13788:21351020,7095585:2116825,575824,115847 +k1,13788:19234195,7095585:-2116825 +) +(1,13788:19234195,7095585:2116825,459977,115847 +k1,13788:19234195,7095585:3277 +h1,13788:21347743,7095585:0,411205,112570 +) +k1,13788:21609626,7095585:258606 +k1,13788:24709873,7095585:258606 +k1,13788:25584517,7095585:258606 +(1,13788:25584517,7095585:0,452978,115847 +r1,13788:26997918,7095585:1413401,568825,115847 +k1,13788:25584517,7095585:-1413401 +) +(1,13788:25584517,7095585:1413401,452978,115847 +k1,13788:25584517,7095585:3277 +h1,13788:26994641,7095585:0,411205,112570 +) +k1,13788:27430194,7095585:258606 +k1,13788:31658971,7095585:258606 +k1,13788:32583029,7095585:0 +) +(1,13789:6630773,7937073:25952256,505283,126483 +k1,13788:7896236,7937073:246378 +k1,13788:9844584,7937073:246378 +k1,13788:11870921,7937073:246379 +k1,13788:13809439,7937073:246378 +k1,13788:17271013,7937073:246378 +k1,13788:18663616,7937073:246378 +(1,13788:18663616,7937073:0,452978,115847 +r1,13788:20077017,7937073:1413401,568825,115847 +k1,13788:18663616,7937073:-1413401 +) +(1,13788:18663616,7937073:1413401,452978,115847 +k1,13788:18663616,7937073:3277 +h1,13788:20073740,7937073:0,411205,112570 +) +k1,13788:20497065,7937073:246378 +k1,13788:21847725,7937073:246378 +k1,13788:23456598,7937073:246379 +k1,13788:27839608,7937073:246378 +k1,13788:29158155,7937073:246378 +k1,13788:31436804,7937073:246378 +k1,13789:32583029,7937073:0 +) +(1,13789:6630773,8778561:25952256,513147,126483 +(1,13788:6630773,8778561:0,452978,115847 +r1,13788:9451022,8778561:2820249,568825,115847 +k1,13788:6630773,8778561:-2820249 +) +(1,13788:6630773,8778561:2820249,452978,115847 +k1,13788:6630773,8778561:3277 +h1,13788:9447745,8778561:0,411205,112570 +) +k1,13788:9673823,8778561:222801 +k1,13788:10888184,8778561:222801 +k1,13788:14362881,8778561:222801 +k1,13788:17285110,8778561:222801 +k1,13788:18135746,8778561:222801 +k1,13788:21024551,8778561:222800 +k1,13788:21898780,8778561:222801 +k1,13788:24647339,8778561:222801 +k1,13788:26772650,8778561:222801 +k1,13788:27943102,8778561:222801 +k1,13788:31417799,8778561:222801 +k1,13789:32583029,8778561:0 +) +(1,13789:6630773,9620049:25952256,513147,126483 +k1,13788:8356633,9620049:152341 +k1,13788:11724171,9620049:152342 +k1,13788:14402270,9620049:152341 +k1,13788:16457121,9620049:152341 +k1,13788:17601022,9620049:152341 +k1,13788:20537333,9620049:152342 +k1,13788:21637325,9620049:152341 +k1,13788:23533579,9620049:152341 +k1,13788:26750384,9620049:152341 +k1,13788:28187232,9620049:152342 +k1,13788:29331133,9620049:152341 +k1,13788:32583029,9620049:0 ) -] -(1,13787:6630773,47279633:25952256,0,0 -h1,13787:6630773,47279633:25952256,0,0 +(1,13789:6630773,10461537:25952256,505283,115847 +g1,13788:10574074,10461537 +g1,13788:11919528,10461537 +(1,13788:11919528,10461537:0,414482,115847 +r1,13788:12277794,10461537:358266,530329,115847 +k1,13788:11919528,10461537:-358266 +) +(1,13788:11919528,10461537:358266,414482,115847 +k1,13788:11919528,10461537:3277 +h1,13788:12274517,10461537:0,411205,112570 +) +g1,13788:12650693,10461537 +(1,13788:12650693,10461537:0,414482,115847 +r1,13788:13008959,10461537:358266,530329,115847 +k1,13788:12650693,10461537:-358266 +) +(1,13788:12650693,10461537:358266,414482,115847 +k1,13788:12650693,10461537:3277 +h1,13788:13005682,10461537:0,411205,112570 +) +g1,13788:13381858,10461537 +(1,13788:13381858,10461537:0,452978,115847 +r1,13788:14795259,10461537:1413401,568825,115847 +k1,13788:13381858,10461537:-1413401 +) +(1,13788:13381858,10461537:1413401,452978,115847 +k1,13788:13381858,10461537:3277 +h1,13788:14791982,10461537:0,411205,112570 +) +g1,13788:15168158,10461537 +(1,13788:15168158,10461537:0,452978,115847 +r1,13788:16933271,10461537:1765113,568825,115847 +k1,13788:15168158,10461537:-1765113 +) +(1,13788:15168158,10461537:1765113,452978,115847 +k1,13788:15168158,10461537:3277 +h1,13788:16929994,10461537:0,411205,112570 +) +g1,13788:17306170,10461537 +k1,13789:32583029,10461537:14165368 +g1,13789:32583029,10461537 ) -] -h1,13787:4262630,4025873:0,0,0 -] -!33926 -}265 -Input:2003:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2004:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2005:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2006:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2007:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2008:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2009:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2010:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2011:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2012:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2013:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2014:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2015:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2016:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1216 -{266 -[1,13853:4262630,47279633:28320399,43253760,0 -(1,13853:4262630,4025873:0,0,0 -[1,13853:-473657,4025873:25952256,0,0 -(1,13853:-473657,-710414:25952256,0,0 -h1,13853:-473657,-710414:0,0,0 -(1,13853:-473657,-710414:0,0,0 -(1,13853:-473657,-710414:0,0,0 -g1,13853:-473657,-710414 -(1,13853:-473657,-710414:65781,0,65781 -g1,13853:-407876,-710414 -[1,13853:-407876,-644633:0,0,0 +(1,13791:6630773,11303025:25952256,513147,134348 +h1,13790:6630773,11303025:983040,0,0 +k1,13790:8945504,11303025:135004 +k1,13790:10983018,11303025:135004 +k1,13790:12631248,11303025:135004 +k1,13790:13527781,11303025:135005 +k1,13790:15928365,11303025:135004 +k1,13790:16997912,11303025:135004 +k1,13790:18152001,11303025:135004 +k1,13790:21094567,11303025:135004 +k1,13790:25546428,11303025:135004 +k1,13790:27131089,11303025:135005 +k1,13790:29151564,11303025:135004 +k1,13790:30902686,11303025:135004 +k1,13790:32583029,11303025:0 +) +(1,13791:6630773,12144513:25952256,513147,126483 +k1,13790:10814280,12144513:219890 +k1,13790:11685599,12144513:219891 +$1,13790:11685599,12144513 +k1,13790:12408082,12144513:219822 +k1,13790:13196100,12144513:219821 +$1,13790:13594559,12144513 +k1,13790:13814450,12144513:219891 +k1,13790:15225785,12144513:219890 +k1,13790:17331147,12144513:219891 +k1,13790:18707747,12144513:219890 +k1,13790:19579065,12144513:219890 +$1,13790:19579065,12144513 +k1,13790:20301548,12144513:219822 +k1,13790:21089567,12144513:219822 +$1,13790:21488026,12144513 +k1,13790:22088681,12144513:219891 +k1,13790:25243273,12144513:219890 +k1,13790:26410814,12144513:219890 +k1,13790:28082327,12144513:219891 +k1,13790:31089463,12144513:219890 +k1,13790:32583029,12144513:0 +) +(1,13791:6630773,12986001:25952256,513147,134348 +k1,13790:7515025,12986001:198090 +(1,13790:7515025,12986001:0,452978,115847 +r1,13790:9280138,12986001:1765113,568825,115847 +k1,13790:7515025,12986001:-1765113 +) +(1,13790:7515025,12986001:1765113,452978,115847 +k1,13790:7515025,12986001:3277 +h1,13790:9276861,12986001:0,411205,112570 +) +k1,13790:9651897,12986001:198089 +k1,13790:11504771,12986001:198090 +k1,13790:12694421,12986001:198090 +k1,13790:15563757,12986001:198089 +k1,13790:17664357,12986001:198090 +k1,13790:18513874,12986001:198089 +k1,13790:20927081,12986001:198090 +k1,13790:22692792,12986001:198090 +k1,13790:24588919,12986001:198089 +k1,13790:27359297,12986001:198090 +k1,13790:27913247,12986001:198090 +k1,13790:29562303,12986001:198089 +k1,13790:31227089,12986001:198090 +k1,13791:32583029,12986001:0 +) +(1,13791:6630773,13827489:25952256,513147,134348 +g1,13790:9257456,13827489 +g1,13790:10648130,13827489 +g1,13790:13373117,13827489 +g1,13790:15022002,13827489 +g1,13790:16018149,13827489 +g1,13790:18979721,13827489 +g1,13790:20795068,13827489 +g1,13790:22896807,13827489 +g1,13790:23712074,13827489 +g1,13790:26739836,13827489 +k1,13791:32583029,13827489:3919711 +g1,13791:32583029,13827489 +) +v1,13793:6630773,15193265:0,393216,0 +(1,13794:6630773,22594871:25952256,7794822,616038 +g1,13794:6630773,22594871 +(1,13794:6630773,22594871:25952256,7794822,616038 +(1,13794:6630773,23210909:25952256,8410860,0 +[1,13794:6630773,23210909:25952256,8410860,0 +(1,13794:6630773,23184695:25952256,8358432,0 +r1,13794:6656987,23184695:26214,8358432,0 +[1,13794:6656987,23184695:25899828,8358432,0 +(1,13794:6656987,22594871:25899828,7178784,0 +[1,13794:7246811,22594871:24720180,7178784,0 +(1,13794:7246811,16577972:24720180,1161885,196608 +(1,13793:7246811,16577972:0,1161885,196608 +r1,13794:8794447,16577972:1547636,1358493,196608 +k1,13793:7246811,16577972:-1547636 +) +(1,13793:7246811,16577972:1547636,1161885,196608 +) +k1,13793:9013364,16577972:218917 +k1,13793:12387841,16577972:218918 +k1,13793:13222796,16577972:218917 +k1,13793:13797573,16577972:218917 +k1,13793:15293788,16577972:218918 +k1,13793:17244166,16577972:218917 +k1,13793:18079121,16577972:218917 +k1,13793:20964044,16577972:218918 +k1,13793:21834389,16577972:218917 +k1,13793:23791321,16577972:218917 +k1,13793:27675012,16577972:218918 +k1,13793:28655457,16577972:218917 +k1,13793:31966991,16577972:0 +) +(1,13794:7246811,17419460:24720180,505283,134348 +k1,13793:8635563,17419460:284470 +k1,13793:10205849,17419460:284470 +k1,13793:11238085,17419460:284470 +k1,13793:12457098,17419460:284470 +k1,13793:13392996,17419460:284470 +k1,13793:16435221,17419460:284470 +k1,13793:18730336,17419460:284470 +k1,13793:20464462,17419460:284470 +k1,13793:23273379,17419460:284470 +k1,13793:24323965,17419460:284470 +k1,13793:26626944,17419460:284470 +k1,13793:27527452,17419460:284470 +k1,13793:28167782,17419460:284470 +k1,13793:30010043,17419460:284470 +k1,13793:30910551,17419460:284470 +k1,13793:31966991,17419460:0 +) +(1,13794:7246811,18260948:24720180,513147,126483 +k1,13793:9745152,18260948:171158 +k1,13793:10575602,18260948:171158 +k1,13793:11765845,18260948:171158 +k1,13793:14202584,18260948:171159 +k1,13793:16442058,18260948:171158 +k1,13793:19768775,18260948:171158 +k1,13793:20874476,18260948:171158 +k1,13793:21697062,18260948:171158 +k1,13793:24625975,18260948:171158 +k1,13793:26981449,18260948:171159 +k1,13793:28144167,18260948:171158 +k1,13793:29381596,18260948:171158 +k1,13793:31966991,18260948:0 +) +(1,13794:7246811,19102436:24720180,513147,126483 +k1,13793:8043788,19102436:145549 +k1,13793:9752372,19102436:145550 +k1,13793:11089366,19102436:145549 +k1,13793:12226475,19102436:145549 +k1,13793:16597131,19102436:145550 +k1,13793:20749551,19102436:145549 +k1,13793:21554393,19102436:145550 +k1,13793:23776123,19102436:145549 +k1,13793:24549507,19102436:145549 +k1,13793:26397027,19102436:145550 +k1,13793:28671185,19102436:145549 +k1,13793:31966991,19102436:0 +) +(1,13794:7246811,19943924:24720180,513147,134348 +k1,13793:8175409,19943924:269306 +k1,13793:9722012,19943924:269306 +k1,13793:12860485,19943924:269307 +k1,13793:14234073,19943924:269306 +k1,13793:15251145,19943924:269306 +k1,13793:17376431,19943924:269306 +k1,13793:18580281,19943924:269307 +k1,13793:19501015,19943924:269306 +k1,13793:20126181,19943924:269306 +k1,13793:22268506,19943924:269306 +k1,13793:25295567,19943924:269306 +k1,13793:27245217,19943924:269307 +k1,13793:28173815,19943924:269306 +k1,13793:29213824,19943924:269306 +k1,13794:31966991,19943924:0 +) +(1,13794:7246811,20785412:24720180,513147,134348 +k1,13793:10210516,20785412:194154 +k1,13793:11170786,20785412:194154 +k1,13793:15436692,20785412:194154 +k1,13793:18036673,20785412:194154 +k1,13793:18846865,20785412:194154 +k1,13793:20060104,20785412:194154 +k1,13793:21812050,20785412:194155 +(1,13793:21812050,20785412:0,452978,115847 +r1,13794:23225451,20785412:1413401,568825,115847 +k1,13793:21812050,20785412:-1413401 +) +(1,13793:21812050,20785412:1413401,452978,115847 +k1,13793:21812050,20785412:3277 +h1,13793:23222174,20785412:0,411205,112570 +) +k1,13793:23593275,20785412:194154 +k1,13793:24470314,20785412:194154 +k1,13793:27249863,20785412:194154 +k1,13793:28095445,20785412:194154 +k1,13793:28645459,20785412:194154 +k1,13793:31350953,20785412:194154 +k1,13794:31966991,20785412:0 +) +(1,13794:7246811,21626900:24720180,513147,126483 +(1,13793:7246811,21626900:0,452978,115847 +r1,13794:8660212,21626900:1413401,568825,115847 +k1,13793:7246811,21626900:-1413401 +) +(1,13793:7246811,21626900:1413401,452978,115847 +k1,13793:7246811,21626900:3277 +h1,13793:8656935,21626900:0,411205,112570 +) +k1,13793:8839037,21626900:178825 +k1,13793:9633899,21626900:178824 +k1,13793:11698195,21626900:178825 +k1,13793:13244101,21626900:178825 +k1,13793:14442011,21626900:178825 +k1,13793:16301178,21626900:178824 +k1,13793:17139295,21626900:178825 +k1,13793:18337205,21626900:178825 +k1,13793:21442867,21626900:178825 +k1,13793:23115257,21626900:178824 +k1,13793:23980244,21626900:178825 +(1,13793:23980244,21626900:0,452978,115847 +r1,13794:25745357,21626900:1765113,568825,115847 +k1,13793:23980244,21626900:-1765113 +) +(1,13793:23980244,21626900:1765113,452978,115847 +k1,13793:23980244,21626900:3277 +h1,13793:25742080,21626900:0,411205,112570 +) +k1,13793:26097852,21626900:178825 +k1,13793:27409139,21626900:178825 +k1,13793:29959711,21626900:178824 +k1,13793:30947906,21626900:178825 +k1,13793:31966991,21626900:0 +) +(1,13794:7246811,22468388:24720180,513147,126483 +g1,13793:9456685,22468388 +g1,13793:10315206,22468388 +g1,13793:11533520,22468388 +g1,13793:14318144,22468388 +k1,13794:31966991,22468388:14963837 +g1,13794:31966991,22468388 +) +] +) +] +r1,13794:32583029,23184695:26214,8358432,0 +) +] +) +) +g1,13794:32583029,22594871 +) +h1,13794:6630773,23210909:0,0,0 +(1,13797:6630773,24576685:25952256,505283,134348 +h1,13796:6630773,24576685:983040,0,0 +k1,13796:9100554,24576685:290054 +k1,13796:10992309,24576685:290055 +k1,13796:13130478,24576685:290054 +k1,13796:16228095,24576685:290055 +k1,13796:17169577,24576685:290054 +k1,13796:18848994,24576685:290054 +k1,13796:19670546,24576685:290055 +(1,13796:19670546,24576685:0,452978,115847 +r1,13796:22490795,24576685:2820249,568825,115847 +k1,13796:19670546,24576685:-2820249 +) +(1,13796:19670546,24576685:2820249,452978,115847 +k1,13796:19670546,24576685:3277 +h1,13796:22487518,24576685:0,411205,112570 +) +k1,13796:22954519,24576685:290054 +k1,13796:25130044,24576685:290054 +k1,13796:27488415,24576685:290055 +k1,13796:29062975,24576685:290054 +k1,13796:30372115,24576685:290055 +k1,13796:32051532,24576685:290054 +k1,13796:32583029,24576685:0 +) +(1,13797:6630773,25418173:25952256,513147,126483 +k1,13796:8721823,25418173:323544 +k1,13796:9658129,25418173:323544 +k1,13796:10770071,25418173:323544 +k1,13796:12395160,25418173:323544 +k1,13796:14572718,25418173:323544 +k1,13796:15524097,25418173:323544 +k1,13796:16203500,25418173:323543 +k1,13796:18143162,25418173:323544 +k1,13796:20212585,25418173:323544 +k1,13796:21583394,25418173:323544 +(1,13796:21583394,25418173:0,452978,115847 +r1,13796:29327608,25418173:7744214,568825,115847 +k1,13796:21583394,25418173:-7744214 +) +(1,13796:21583394,25418173:7744214,452978,115847 +k1,13796:21583394,25418173:3277 +h1,13796:29324331,25418173:0,411205,112570 +) +k1,13796:29824822,25418173:323544 +k1,13796:31167451,25418173:323544 +k1,13797:32583029,25418173:0 +) +(1,13797:6630773,26259661:25952256,505283,115847 +k1,13796:8195754,26259661:256227 +k1,13796:9068019,26259661:256227 +k1,13796:10343331,26259661:256227 +k1,13796:11988921,26259661:256227 +k1,13796:14201398,26259661:256227 +k1,13796:15205391,26259661:256227 +k1,13796:18140731,26259661:256228 +k1,13796:19790909,26259661:256227 +k1,13796:22057781,26259661:256227 +k1,13796:23807574,26259661:256227 +k1,13796:24749963,26259661:256227 +(1,13796:24749963,26259661:0,452978,115847 +r1,13796:26515076,26259661:1765113,568825,115847 +k1,13796:24749963,26259661:-1765113 +) +(1,13796:24749963,26259661:1765113,452978,115847 +k1,13796:24749963,26259661:3277 +h1,13796:26511799,26259661:0,411205,112570 +) +k1,13796:26944973,26259661:256227 +(1,13796:26944973,26259661:0,452978,115847 +r1,13796:29061798,26259661:2116825,568825,115847 +k1,13796:26944973,26259661:-2116825 +) +(1,13796:26944973,26259661:2116825,452978,115847 +k1,13796:26944973,26259661:3277 +h1,13796:29058521,26259661:0,411205,112570 +) +k1,13796:31042933,26259661:256227 +k1,13797:32583029,26259661:0 +) +(1,13797:6630773,27101149:25952256,513147,134348 +k1,13796:7293909,27101149:248293 +k1,13796:10077184,27101149:248342 +k1,13796:10953362,27101149:248343 +k1,13796:11557564,27101149:248342 +k1,13796:13930583,27101149:248342 +k1,13796:16986488,27101149:248343 +k1,13796:18970223,27101149:248342 +(1,13796:18970223,27101149:0,452978,115847 +r1,13796:26714437,27101149:7744214,568825,115847 +k1,13796:18970223,27101149:-7744214 +) +(1,13796:18970223,27101149:7744214,452978,115847 +k1,13796:18970223,27101149:3277 +h1,13796:26711160,27101149:0,411205,112570 +) +k1,13796:26962779,27101149:248342 +k1,13796:29003531,27101149:248342 +k1,13796:29911166,27101149:248343 +k1,13796:30515368,27101149:248342 +k1,13796:32583029,27101149:0 +) +(1,13797:6630773,27942637:25952256,505283,126483 +k1,13796:8320983,27942637:196644 +k1,13796:9203789,27942637:196644 +(1,13796:9203789,27942637:0,452978,115847 +r1,13796:13079173,27942637:3875384,568825,115847 +k1,13796:9203789,27942637:-3875384 +) +(1,13796:9203789,27942637:3875384,452978,115847 +k1,13796:9203789,27942637:3277 +h1,13796:13075896,27942637:0,411205,112570 +) +k1,13796:13275817,27942637:196644 +k1,13796:14663906,27942637:196644 +(1,13796:14663906,27942637:0,452978,115847 +r1,13796:17835866,27942637:3171960,568825,115847 +k1,13796:14663906,27942637:-3171960 +) +(1,13796:14663906,27942637:3171960,452978,115847 +k1,13796:14663906,27942637:3277 +h1,13796:17832589,27942637:0,411205,112570 +) +k1,13796:18032510,27942637:196644 +k1,13796:20185403,27942637:196643 +k1,13796:21129813,27942637:196644 +k1,13796:25136065,27942637:196644 +k1,13796:26018871,27942637:196644 +k1,13796:28631172,27942637:196644 +k1,13796:31189078,27942637:196644 +k1,13796:32583029,27942637:0 +) +(1,13797:6630773,28784125:25952256,513147,126483 +k1,13796:7903876,28784125:254018 +k1,13796:13234312,28784125:254017 +k1,13796:14147622,28784125:254018 +k1,13796:17594553,28784125:254017 +k1,13796:19742561,28784125:254018 +k1,13796:21788988,28784125:254017 +k1,13796:22694434,28784125:254018 +k1,13796:26141365,28784125:254017 +k1,13796:28756645,28784125:254018 +k1,13796:31599334,28784125:254017 +k1,13797:32583029,28784125:0 +) +(1,13797:6630773,29625613:25952256,513147,126483 +k1,13796:10436881,29625613:259955 +k1,13796:11458365,29625613:259956 +k1,13796:14157570,29625613:259955 +k1,13796:15045360,29625613:259955 +k1,13796:17936587,29625613:259956 +k1,13796:19590493,29625613:259955 +(1,13796:19590493,29625613:0,452978,115847 +r1,13796:26631284,29625613:7040791,568825,115847 +k1,13796:19590493,29625613:-7040791 +) +(1,13796:19590493,29625613:7040791,452978,115847 +k1,13796:19590493,29625613:3277 +h1,13796:26628007,29625613:0,411205,112570 +) +k1,13796:26891239,29625613:259955 +k1,13796:28170279,29625613:259955 +k1,13796:29811079,29625613:259956 +k1,13796:31931601,29625613:259955 +k1,13796:32583029,29625613:0 +) +(1,13797:6630773,30467101:25952256,513147,134348 +k1,13796:9717996,30467101:189876 +k1,13796:12337946,30467101:189875 +k1,13796:13546907,30467101:189876 +k1,13796:16544344,30467101:189875 +k1,13796:19369423,30467101:189876 +k1,13796:21453288,30467101:189875 +k1,13796:23435574,30467101:189876 +k1,13796:24816894,30467101:189875 +k1,13796:27368032,30467101:189876 +k1,13796:28319435,30467101:189875 +k1,13796:30936765,30467101:189876 +k1,13797:32583029,30467101:0 +) +(1,13797:6630773,31308589:25952256,513147,126483 +g1,13796:8799359,31308589 +g1,13796:9650016,31308589 +g1,13796:10868330,31308589 +g1,13796:12639768,31308589 +g1,13796:16038465,31308589 +g1,13796:19848728,31308589 +(1,13796:19848728,31308589:0,452978,115847 +r1,13796:21965553,31308589:2116825,568825,115847 +k1,13796:19848728,31308589:-2116825 +) +(1,13796:19848728,31308589:2116825,452978,115847 +k1,13796:19848728,31308589:3277 +h1,13796:21962276,31308589:0,411205,112570 +) +g1,13796:22164782,31308589 +g1,13796:23555456,31308589 +(1,13796:23555456,31308589:0,452978,115847 +r1,13796:25672281,31308589:2116825,568825,115847 +k1,13796:23555456,31308589:-2116825 +) +(1,13796:23555456,31308589:2116825,452978,115847 +k1,13796:23555456,31308589:3277 +h1,13796:25669004,31308589:0,411205,112570 +) +k1,13797:32583029,31308589:6737078 +g1,13797:32583029,31308589 +) +(1,13799:6630773,32150077:25952256,505283,134348 +h1,13798:6630773,32150077:983040,0,0 +k1,13798:8240787,32150077:139386 +k1,13798:11950633,32150077:139445 +k1,13798:13479441,32150077:139445 +k1,13798:16130226,32150077:139445 +k1,13798:18130238,32150077:139445 +k1,13798:18921111,32150077:139445 +k1,13798:19808322,32150077:139445 +k1,13798:22533162,32150077:139445 +k1,13798:23324035,32150077:139445 +k1,13798:24234183,32150077:139445 +k1,13798:27160874,32150077:139445 +k1,13798:29858845,32150077:139445 +k1,13798:30354150,32150077:139445 +k1,13799:32583029,32150077:0 +) +(1,13799:6630773,32991565:25952256,505283,115847 +k1,13798:8345846,32991565:160559 +k1,13798:10078614,32991565:160559 +k1,13798:11732739,32991565:160559 +k1,13798:12579460,32991565:160559 +(1,13798:12579460,32991565:0,452978,115847 +r1,13798:21027097,32991565:8447637,568825,115847 +k1,13798:12579460,32991565:-8447637 +) +(1,13798:12579460,32991565:8447637,452978,115847 +k1,13798:12579460,32991565:3277 +h1,13798:21023820,32991565:0,411205,112570 +) +k1,13798:21187656,32991565:160559 +k1,13798:22031099,32991565:160558 +k1,13798:23348368,32991565:160559 +k1,13798:24297325,32991565:160559 +k1,13798:26800141,32991565:160559 +k1,13798:29694862,32991565:160559 +k1,13798:31966991,32991565:160559 +k1,13798:32583029,32991565:0 +) +(1,13799:6630773,33833053:25952256,513147,134348 +k1,13798:7179763,33833053:193130 +(1,13798:7179763,33833053:0,452978,115847 +r1,13798:9648300,33833053:2468537,568825,115847 +k1,13798:7179763,33833053:-2468537 +) +(1,13798:7179763,33833053:2468537,452978,115847 +k1,13798:7179763,33833053:3277 +h1,13798:9645023,33833053:0,411205,112570 +) +k1,13798:9841430,33833053:193130 +k1,13798:12545899,33833053:193129 +k1,13798:13871491,33833053:193130 +k1,13798:14812387,33833053:193130 +k1,13798:17590912,33833053:193130 +k1,13798:19051508,33833053:193130 +k1,13798:19600498,33833053:193130 +k1,13798:23364028,33833053:193129 +k1,13798:25337771,33833053:193130 +k1,13798:26190193,33833053:193130 +k1,13798:28918256,33833053:193130 +k1,13798:32583029,33833053:0 +) +(1,13799:6630773,34674541:25952256,505283,134348 +k1,13798:8766974,34674541:280221 +k1,13798:13364052,34674541:280221 +k1,13798:16202799,34674541:280221 +k1,13798:16838880,34674541:280221 +k1,13798:19309314,34674541:280221 +k1,13798:20272419,34674541:280220 +k1,13798:23485376,34674541:280221 +k1,13798:24527125,34674541:280221 +k1,13798:26730172,34674541:280221 +k1,13798:28029478,34674541:280221 +k1,13798:30670961,34674541:280221 +k1,13798:31563944,34674541:280221 +k1,13798:32583029,34674541:0 +) +(1,13799:6630773,35516029:25952256,513147,134348 +k1,13798:9894645,35516029:187612 +k1,13798:11273701,35516029:187611 +k1,13798:14671266,35516029:187612 +k1,13798:15471640,35516029:187612 +k1,13798:18330498,35516029:187611 +k1,13798:22576099,35516029:187612 +k1,13798:24948025,35516029:187611 +k1,13798:27145626,35516029:187612 +k1,13798:28352323,35516029:187612 +k1,13798:30320547,35516029:187611 +k1,13798:31167451,35516029:187612 +k1,13799:32583029,35516029:0 +) +(1,13799:6630773,36357517:25952256,513147,134348 +k1,13798:8447481,36357517:193381 +k1,13798:9300155,36357517:193382 +k1,13798:10512621,36357517:193381 +k1,13798:13291398,36357517:193382 +k1,13798:15996119,36357517:193381 +k1,13798:17639157,36357517:193382 +k1,13798:19404747,36357517:193381 +k1,13798:22110124,36357517:193382 +k1,13798:23028333,36357517:193381 +k1,13798:24506221,36357517:193382 +k1,13798:25718687,36357517:193381 +k1,13798:27528187,36357517:193382 +k1,13798:29601796,36357517:193381 +k1,13798:32583029,36357517:0 +) +(1,13799:6630773,37199005:25952256,513147,134348 +k1,13798:9487012,37199005:221036 +(1,13798:9487012,37199005:0,452978,115847 +r1,13798:11252125,37199005:1765113,568825,115847 +k1,13798:9487012,37199005:-1765113 +) +(1,13798:9487012,37199005:1765113,452978,115847 +k1,13798:9487012,37199005:3277 +h1,13798:11248848,37199005:0,411205,112570 +) +k1,13798:11473161,37199005:221036 +k1,13798:12885642,37199005:221036 +(1,13798:12885642,37199005:0,452978,122846 +r1,13798:15705891,37199005:2820249,575824,122846 +k1,13798:12885642,37199005:-2820249 +) +(1,13798:12885642,37199005:2820249,452978,122846 +k1,13798:12885642,37199005:3277 +h1,13798:15702614,37199005:0,411205,112570 +) +k1,13798:16307691,37199005:221036 +k1,13798:19420831,37199005:221036 +k1,13798:20301159,37199005:221036 +k1,13798:22994213,37199005:221036 +k1,13798:25225894,37199005:221036 +k1,13798:25978427,37199005:221036 +k1,13798:27693029,37199005:221036 +k1,13798:29198571,37199005:221036 +k1,13798:32227169,37199005:221036 +k1,13798:32583029,37199005:0 +) +(1,13799:6630773,38040493:25952256,513147,126483 +k1,13798:8496569,38040493:185453 +k1,13798:9298060,38040493:185453 +k1,13798:9839373,38040493:185453 +k1,13798:12536165,38040493:185452 +k1,13798:13373046,38040493:185453 +k1,13798:14329202,38040493:185453 +(1,13798:14329202,38040493:0,414482,115847 +r1,13798:15039180,38040493:709978,530329,115847 +k1,13798:14329202,38040493:-709978 +) +(1,13798:14329202,38040493:709978,414482,115847 +k1,13798:14329202,38040493:3277 +h1,13798:15035903,38040493:0,411205,112570 +) +k1,13798:15224633,38040493:185453 +k1,13798:17090429,38040493:185453 +k1,13798:18223533,38040493:185453 +k1,13798:19179689,38040493:185453 +k1,13798:22209405,38040493:185453 +k1,13798:23888423,38040493:185452 +k1,13798:24760038,38040493:185453 +k1,13798:26561609,38040493:185453 +k1,13798:28793096,38040493:185453 +k1,13798:29997634,38040493:185453 +k1,13798:32583029,38040493:0 +) +(1,13799:6630773,38881981:25952256,513147,134348 +k1,13798:8865395,38881981:223977 +k1,13798:11921838,38881981:223977 +k1,13798:13342501,38881981:223976 +k1,13798:16046360,38881981:223977 +k1,13798:19077899,38881981:223977 +(1,13798:19077899,38881981:0,414482,115847 +r1,13798:19787877,38881981:709978,530329,115847 +k1,13798:19077899,38881981:-709978 +) +(1,13798:19077899,38881981:709978,414482,115847 +k1,13798:19077899,38881981:3277 +h1,13798:19784600,38881981:0,411205,112570 +) +k1,13798:20011854,38881981:223977 +k1,13798:22246476,38881981:223977 +k1,13798:23086490,38881981:223976 +k1,13798:24329552,38881981:223977 +k1,13798:25942892,38881981:223977 +k1,13798:26818297,38881981:223977 +k1,13798:27398133,38881981:223976 +k1,13798:30019417,38881981:223977 +k1,13798:31923737,38881981:223977 +k1,13798:32583029,38881981:0 +) +(1,13799:6630773,39723469:25952256,505283,134348 +k1,13798:7638901,39723469:237425 +k1,13798:10720589,39723469:237425 +k1,13798:11489510,39723469:237424 +k1,13798:13012751,39723469:237425 +k1,13798:15880136,39723469:237425 +k1,13798:17567217,39723469:237425 +k1,13798:21089961,39723469:237424 +(1,13798:21089961,39723469:0,414482,115847 +r1,13798:21799939,39723469:709978,530329,115847 +k1,13798:21089961,39723469:-709978 +) +(1,13798:21089961,39723469:709978,414482,115847 +k1,13798:21089961,39723469:3277 +h1,13798:21796662,39723469:0,411205,112570 +) +k1,13798:22037364,39723469:237425 +k1,13798:24285434,39723469:237425 +k1,13798:25138897,39723469:237425 +k1,13798:26395406,39723469:237424 +k1,13798:29218226,39723469:237425 +k1,13798:31966991,39723469:237425 +k1,13798:32583029,39723469:0 +) +(1,13799:6630773,40564957:25952256,513147,126483 +g1,13798:8060113,40564957 +g1,13798:9948860,40564957 +g1,13798:11850059,40564957 +g1,13798:14059933,40564957 +g1,13798:15250722,40564957 +g1,13798:18035346,40564957 +g1,13798:18886003,40564957 +g1,13798:21284620,40564957 +g1,13798:22143141,40564957 +k1,13799:32583029,40564957:8691387 +g1,13799:32583029,40564957 +) +(1,13806:6630773,42656217:25952256,555811,139132 +(1,13806:6630773,42656217:2450326,525533,0 +g1,13806:6630773,42656217 +g1,13806:9081099,42656217 +) +g1,13806:10929477,42656217 +g1,13806:12496705,42656217 +g1,13806:14069701,42656217 +k1,13806:32583029,42656217:16399661 +g1,13806:32583029,42656217 +) +(1,13813:6630773,43890921:25952256,513147,115847 +k1,13812:8245302,43890921:178635 +k1,13812:9292290,43890921:178636 +k1,13812:12140206,43890921:178635 +k1,13812:12674702,43890921:178636 +k1,13812:15128747,43890921:178635 +k1,13812:18084799,43890921:178636 +k1,13812:18914862,43890921:178635 +k1,13812:19859614,43890921:178636 +k1,13812:22114430,43890921:178635 +k1,13812:23801705,43890921:178636 +(1,13812:23801705,43890921:0,414482,115847 +r1,13812:25215106,43890921:1413401,530329,115847 +k1,13812:23801705,43890921:-1413401 +) +(1,13812:23801705,43890921:1413401,414482,115847 +k1,13812:23801705,43890921:3277 +h1,13812:25211829,43890921:0,411205,112570 +) +k1,13812:25567411,43890921:178635 +k1,13812:26942734,43890921:178636 +k1,13812:29386949,43890921:178635 +(1,13812:29386949,43890921:0,414482,115847 +r1,13812:30800350,43890921:1413401,530329,115847 +k1,13812:29386949,43890921:-1413401 +) +(1,13812:29386949,43890921:1413401,414482,115847 +k1,13812:29386949,43890921:3277 +h1,13812:30797073,43890921:0,411205,112570 +) +k1,13812:30978986,43890921:178636 +k1,13812:31816913,43890921:178635 +k1,13812:32583029,43890921:0 +) +(1,13813:6630773,44732409:25952256,513147,126483 +k1,13812:8702019,44732409:168736 +k1,13812:9402252,44732409:168736 +k1,13812:10590072,44732409:168735 +k1,13812:12496823,44732409:168736 +k1,13812:13324851,44732409:168736 +k1,13812:14512672,44732409:168736 +k1,13812:17192748,44732409:168736 +k1,13812:18044369,44732409:168736 +k1,13812:19232189,44732409:168735 +k1,13812:22840910,44732409:168736 +k1,13812:25595041,44732409:168736 +k1,13812:26415205,44732409:168736 +k1,13812:27215708,44732409:168736 +k1,13812:28012279,44732409:168736 +k1,13812:29200099,44732409:168735 +k1,13812:30735916,44732409:168736 +k1,13812:31563944,44732409:168736 +k1,13813:32583029,44732409:0 +) +(1,13813:6630773,45573897:25952256,513147,134348 +(1,13812:6630773,45573897:0,414482,115847 +r1,13812:6989039,45573897:358266,530329,115847 +k1,13812:6630773,45573897:-358266 +) +(1,13812:6630773,45573897:358266,414482,115847 +k1,13812:6630773,45573897:3277 +h1,13812:6985762,45573897:0,411205,112570 +) +k1,13812:7332276,45573897:169567 +(1,13812:7332276,45573897:0,414482,115847 +r1,13812:7690542,45573897:358266,530329,115847 +k1,13812:7332276,45573897:-358266 +) +(1,13812:7332276,45573897:358266,414482,115847 +k1,13812:7332276,45573897:3277 +h1,13812:7687265,45573897:0,411205,112570 +) +k1,13812:7860110,45573897:169568 +k1,13812:9221122,45573897:169567 +(1,13812:9221122,45573897:0,414482,115847 +r1,13812:9579388,45573897:358266,530329,115847 +k1,13812:9221122,45573897:-358266 +) +(1,13812:9221122,45573897:358266,414482,115847 +k1,13812:9221122,45573897:3277 +h1,13812:9576111,45573897:0,411205,112570 +) +k1,13812:9748955,45573897:169567 +k1,13812:12982987,45573897:169568 +k1,13812:14171639,45573897:169567 +(1,13812:14171639,45573897:0,414482,115847 +r1,13812:15585040,45573897:1413401,530329,115847 +k1,13812:14171639,45573897:-1413401 +) +(1,13812:14171639,45573897:1413401,414482,115847 +k1,13812:14171639,45573897:3277 +h1,13812:15581763,45573897:0,411205,112570 +) +k1,13812:15754607,45573897:169567 +k1,13812:17618936,45573897:169568 +k1,13812:18439931,45573897:169567 +k1,13812:19628583,45573897:169567 +k1,13812:21370360,45573897:169568 +k1,13812:22071424,45573897:169567 +k1,13812:23754217,45573897:169567 +k1,13812:24871436,45573897:169568 +k1,13812:26060088,45573897:169567 +k1,13812:27482048,45573897:169567 +k1,13812:29669470,45573897:169568 +k1,13812:30881059,45573897:169567 +k1,13812:32583029,45573897:0 +) +] +(1,13813:32583029,45706769:0,0,0 +g1,13813:32583029,45706769 +) +) +] +(1,13813:6630773,47279633:25952256,0,0 +h1,13813:6630773,47279633:25952256,0,0 +) +] +h1,13813:4262630,4025873:0,0,0 +] +!33848 +}266 +Input:2000:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2001:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2002:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2003:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2004:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2005:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2006:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2007:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2008:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2009:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2010:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2011:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2012:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2013:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1300 +{267 +[1,13879:4262630,47279633:28320399,43253760,0 +(1,13879:4262630,4025873:0,0,0 +[1,13879:-473657,4025873:25952256,0,0 +(1,13879:-473657,-710414:25952256,0,0 +h1,13879:-473657,-710414:0,0,0 +(1,13879:-473657,-710414:0,0,0 +(1,13879:-473657,-710414:0,0,0 +g1,13879:-473657,-710414 +(1,13879:-473657,-710414:65781,0,65781 +g1,13879:-407876,-710414 +[1,13879:-407876,-644633:0,0,0 ] ) -k1,13853:-473657,-710414:-65781 +k1,13879:-473657,-710414:-65781 ) ) -k1,13853:25478599,-710414:25952256 -g1,13853:25478599,-710414 +k1,13879:25478599,-710414:25952256 +g1,13879:25478599,-710414 ) ] ) -[1,13853:6630773,47279633:25952256,43253760,0 -[1,13853:6630773,4812305:25952256,786432,0 -(1,13853:6630773,4812305:25952256,505283,11795 -(1,13853:6630773,4812305:25952256,505283,11795 -g1,13853:3078558,4812305 -[1,13853:3078558,4812305:0,0,0 -(1,13853:3078558,2439708:0,1703936,0 -k1,13853:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13853:2537886,2439708:1179648,16384,0 +[1,13879:6630773,47279633:25952256,43253760,0 +[1,13879:6630773,4812305:25952256,786432,0 +(1,13879:6630773,4812305:25952256,513147,134348 +(1,13879:6630773,4812305:25952256,513147,134348 +g1,13879:3078558,4812305 +[1,13879:3078558,4812305:0,0,0 +(1,13879:3078558,2439708:0,1703936,0 +k1,13879:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13879:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13853:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13879:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13853:3078558,4812305:0,0,0 -(1,13853:3078558,2439708:0,1703936,0 -g1,13853:29030814,2439708 -g1,13853:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13853:36151628,1915420:16384,1179648,0 +[1,13879:3078558,4812305:0,0,0 +(1,13879:3078558,2439708:0,1703936,0 +g1,13879:29030814,2439708 +g1,13879:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13879:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13853:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13879:37855564,2439708:1179648,16384,0 ) ) -k1,13853:3078556,2439708:-34777008 +k1,13879:3078556,2439708:-34777008 ) ] -[1,13853:3078558,4812305:0,0,0 -(1,13853:3078558,49800853:0,16384,2228224 -k1,13853:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13853:2537886,49800853:1179648,16384,0 +[1,13879:3078558,4812305:0,0,0 +(1,13879:3078558,49800853:0,16384,2228224 +k1,13879:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13879:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13853:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13879:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13853:3078558,4812305:0,0,0 -(1,13853:3078558,49800853:0,16384,2228224 -g1,13853:29030814,49800853 -g1,13853:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13853:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13853:37855564,49800853:1179648,16384,0 -) -) -k1,13853:3078556,49800853:-34777008 -) -] -g1,13853:6630773,4812305 -g1,13853:6630773,4812305 -g1,13853:8724648,4812305 -k1,13853:31387652,4812305:22663004 -) -) -] -[1,13853:6630773,45706769:25952256,40108032,0 -(1,13853:6630773,45706769:25952256,40108032,0 -(1,13853:6630773,45706769:0,0,0 -g1,13853:6630773,45706769 -) -[1,13853:6630773,45706769:25952256,40108032,0 -(1,13787:6630773,6254097:25952256,513147,134348 -k1,13786:9888568,6254097:193331 -k1,13786:11100984,6254097:193331 -k1,13786:13032330,6254097:193331 -k1,13786:13884953,6254097:193331 -k1,13786:15097369,6254097:193331 -k1,13786:16862909,6254097:193331 -k1,13786:19829724,6254097:193331 -k1,13786:21042141,6254097:193332 -k1,13786:24364816,6254097:193331 -k1,13786:25241032,6254097:193331 -k1,13786:26506532,6254097:193331 -k1,13786:27883443,6254097:193331 -k1,13786:28736066,6254097:193331 -k1,13786:29948482,6254097:193331 -k1,13786:31900144,6254097:193331 -k1,13786:32583029,6254097:0 -) -(1,13787:6630773,7095585:25952256,505283,134348 -k1,13786:8125525,7095585:220077 -k1,13786:9243445,7095585:220077 -k1,13786:11366032,7095585:220077 -k1,13786:13061325,7095585:220078 -k1,13786:13637262,7095585:220077 -(1,13786:13637262,7095585:0,414482,115847 -r1,13786:15050663,7095585:1413401,530329,115847 -k1,13786:13637262,7095585:-1413401 -) -(1,13786:13637262,7095585:1413401,414482,115847 -k1,13786:13637262,7095585:3277 -h1,13786:15047386,7095585:0,411205,112570 -) -k1,13786:15270740,7095585:220077 -k1,13786:18771549,7095585:220077 -k1,13786:19643054,7095585:220077 -k1,13786:21748602,7095585:220077 -k1,13786:22324539,7095585:220077 -k1,13786:25519296,7095585:220078 -k1,13786:27605183,7095585:220077 -k1,13786:28508145,7095585:220077 -k1,13786:29143044,7095585:220056 -k1,13786:32583029,7095585:0 -) -(1,13787:6630773,7937073:25952256,513147,134348 -g1,13786:8062079,7937073 -g1,13786:10539995,7937073 -h1,13786:11909042,7937073:0,0,0 -g1,13786:12315365,7937073 -g1,13786:13618876,7937073 -g1,13786:14565871,7937073 -g1,13786:16970387,7937073 -g1,13786:17855778,7937073 -g1,13786:18825710,7937073 -g1,13786:22097267,7937073 -g1,13786:22947924,7937073 -g1,13786:25792186,7937073 -g1,13786:27010500,7937073 -k1,13787:32583029,7937073:3133279 -g1,13787:32583029,7937073 -) -(1,13789:6630773,8778561:25952256,505283,126483 -h1,13788:6630773,8778561:983040,0,0 -k1,13788:11244727,8778561:172579 -k1,13788:12858444,8778561:172580 -k1,13788:15444059,8778561:172579 -k1,13788:16808083,8778561:172579 -k1,13788:19358309,8778561:172580 -k1,13788:20522448,8778561:172579 -k1,13788:21761298,8778561:172579 -k1,13788:25197571,8778561:172580 -k1,13788:26021578,8778561:172579 -k1,13788:28040307,8778561:172579 -k1,13788:28895772,8778561:172580 -(1,13788:28895772,8778561:0,452978,115847 -r1,13788:30309173,8778561:1413401,568825,115847 -k1,13788:28895772,8778561:-1413401 -) -(1,13788:28895772,8778561:1413401,452978,115847 -k1,13788:28895772,8778561:3277 -h1,13788:30305896,8778561:0,411205,112570 -) -k1,13788:30655422,8778561:172579 -k1,13788:31315563,8778561:172553 -k1,13788:32583029,8778561:0 -) -(1,13789:6630773,9620049:25952256,513147,134348 -(1,13788:6837867,9620049:0,452978,115847 -r1,13788:8602980,9620049:1765113,568825,115847 -k1,13788:6837867,9620049:-1765113 -) -(1,13788:6837867,9620049:1765113,452978,115847 -k1,13788:6837867,9620049:3277 -h1,13788:8599703,9620049:0,411205,112570 -) -k1,13788:9056982,9620049:246908 -k1,13788:10495334,9620049:246907 -(1,13788:10495334,9620049:0,452978,115847 -r1,13788:13315583,9620049:2820249,568825,115847 -k1,13788:10495334,9620049:-2820249 -) -(1,13788:10495334,9620049:2820249,452978,115847 -k1,13788:10495334,9620049:3277 -h1,13788:13312306,9620049:0,411205,112570 -) -k1,13788:13562491,9620049:246908 -k1,13788:14913680,9620049:246907 -k1,13788:15908354,9620049:246908 -k1,13788:18120686,9620049:246907 -k1,13788:19863126,9620049:246908 -k1,13788:23819371,9620049:246907 -k1,13788:25460230,9620049:246908 -k1,13788:28402633,9620049:246907 -(1,13788:28402633,9620049:0,452978,122846 -r1,13788:31574593,9620049:3171960,575824,122846 -k1,13788:28402633,9620049:-3171960 -) -(1,13788:28402633,9620049:3171960,452978,122846 -k1,13788:28402633,9620049:3277 -h1,13788:31571316,9620049:0,411205,112570 -) -k1,13788:31821501,9620049:246908 -k1,13788:32583029,9620049:0 -) -(1,13789:6630773,10461537:25952256,505283,134348 -g1,13788:9257456,10461537 -g1,13788:11312665,10461537 -g1,13788:14486573,10461537 -g1,13788:16881913,10461537 -g1,13788:17764027,10461537 -g1,13788:18378099,10461537 -g1,13788:22347614,10461537 -g1,13788:23233005,10461537 -k1,13789:32583029,10461537:5773724 -g1,13789:32583029,10461537 -) -v1,13791:6630773,11652003:0,393216,0 -(1,13803:6630773,17296523:25952256,6037736,196608 -g1,13803:6630773,17296523 -g1,13803:6630773,17296523 -g1,13803:6434165,17296523 -(1,13803:6434165,17296523:0,6037736,196608 -r1,13803:32779637,17296523:26345472,6234344,196608 -k1,13803:6434165,17296523:-26345472 -) -(1,13803:6434165,17296523:26345472,6037736,196608 -[1,13803:6630773,17296523:25952256,5841128,0 -(1,13793:6630773,11859621:25952256,404226,107478 -(1,13792:6630773,11859621:0,0,0 -g1,13792:6630773,11859621 -g1,13792:6630773,11859621 -g1,13792:6303093,11859621 -(1,13792:6303093,11859621:0,0,0 -) -g1,13792:6630773,11859621 -) -k1,13793:6630773,11859621:0 -g1,13793:10424522,11859621 -g1,13793:11056814,11859621 -k1,13793:11056814,11859621:0 -h1,13793:13269834,11859621:0,0,0 -k1,13793:32583030,11859621:19313196 -g1,13793:32583030,11859621 -) -(1,13794:6630773,12525799:25952256,410518,107478 -h1,13794:6630773,12525799:0,0,0 -g1,13794:6946919,12525799 -g1,13794:7263065,12525799 -g1,13794:7579211,12525799 -g1,13794:7895357,12525799 -g1,13794:8211503,12525799 -g1,13794:8527649,12525799 -g1,13794:8843795,12525799 -g1,13794:10740670,12525799 -g1,13794:11372962,12525799 -g1,13794:12953691,12525799 -g1,13794:13585983,12525799 -g1,13794:14218275,12525799 -g1,13794:18960461,12525799 -g1,13794:20857335,12525799 -g1,13794:21489627,12525799 -g1,13794:23702647,12525799 -h1,13794:24018793,12525799:0,0,0 -k1,13794:32583029,12525799:8564236 -g1,13794:32583029,12525799 -) -(1,13795:6630773,13191977:25952256,404226,107478 -h1,13795:6630773,13191977:0,0,0 -g1,13795:6946919,13191977 -g1,13795:7263065,13191977 -g1,13795:11056813,13191977 -h1,13795:11372959,13191977:0,0,0 -k1,13795:32583029,13191977:21210070 -g1,13795:32583029,13191977 -) -(1,13796:6630773,13858155:25952256,404226,107478 -h1,13796:6630773,13858155:0,0,0 -g1,13796:6946919,13858155 -g1,13796:7263065,13858155 -g1,13796:11372959,13858155 -h1,13796:11689105,13858155:0,0,0 -k1,13796:32583029,13858155:20893924 -g1,13796:32583029,13858155 -) -(1,13797:6630773,14524333:25952256,404226,101187 -h1,13797:6630773,14524333:0,0,0 -g1,13797:6946919,14524333 -g1,13797:7263065,14524333 -g1,13797:12321397,14524333 -g1,13797:12953689,14524333 -g1,13797:13902127,14524333 -h1,13797:14218273,14524333:0,0,0 -k1,13797:32583029,14524333:18364756 -g1,13797:32583029,14524333 -) -(1,13798:6630773,15190511:25952256,404226,76021 -h1,13798:6630773,15190511:0,0,0 -g1,13798:6946919,15190511 -g1,13798:7263065,15190511 -g1,13798:14850562,15190511 -g1,13798:15482854,15190511 -g1,13798:17379728,15190511 -g1,13798:19276603,15190511 -h1,13798:19592749,15190511:0,0,0 -k1,13798:32583029,15190511:12990280 -g1,13798:32583029,15190511 -) -(1,13799:6630773,15856689:25952256,410518,101187 -h1,13799:6630773,15856689:0,0,0 -g1,13799:6946919,15856689 -g1,13799:7263065,15856689 -g1,13799:14850562,15856689 -g1,13799:15482854,15856689 -g1,13799:20225040,15856689 -g1,13799:22438060,15856689 -h1,13799:22754206,15856689:0,0,0 -k1,13799:32583029,15856689:9828823 -g1,13799:32583029,15856689 -) -(1,13800:6630773,16522867:25952256,410518,107478 -h1,13800:6630773,16522867:0,0,0 -g1,13800:6946919,16522867 -g1,13800:7263065,16522867 -g1,13800:11689105,16522867 -g1,13800:12321397,16522867 -g1,13800:14850563,16522867 -g1,13800:15799000,16522867 -g1,13800:18012020,16522867 -k1,13800:18012020,16522867:0 -h1,13800:20225040,16522867:0,0,0 -k1,13800:32583029,16522867:12357989 -g1,13800:32583029,16522867 -) -(1,13801:6630773,17189045:25952256,410518,107478 -h1,13801:6630773,17189045:0,0,0 -g1,13801:6946919,17189045 -g1,13801:7263065,17189045 -g1,13801:7579211,17189045 -g1,13801:7895357,17189045 -g1,13801:8211503,17189045 -g1,13801:8527649,17189045 -g1,13801:8843795,17189045 -g1,13801:9159941,17189045 -g1,13801:9476087,17189045 -g1,13801:9792233,17189045 -g1,13801:12637544,17189045 -g1,13801:13269836,17189045 -g1,13801:16431293,17189045 -g1,13801:18012022,17189045 -k1,13801:18012022,17189045:0 -h1,13801:21805771,17189045:0,0,0 -k1,13801:32583029,17189045:10777258 -g1,13801:32583029,17189045 -) -] -) -g1,13803:32583029,17296523 -g1,13803:6630773,17296523 -g1,13803:6630773,17296523 -g1,13803:32583029,17296523 -g1,13803:32583029,17296523 -) -h1,13803:6630773,17493131:0,0,0 -(1,13806:6630773,27145644:25952256,9062689,0 -k1,13806:10523651,27145644:3892878 -h1,13805:10523651,27145644:0,0,0 -(1,13805:10523651,27145644:18166500,9062689,0 -(1,13805:10523651,27145644:18167381,9062712,0 -(1,13805:10523651,27145644:18167381,9062712,0 -(1,13805:10523651,27145644:0,9062712,0 -(1,13805:10523651,27145644:0,14155776,0 -(1,13805:10523651,27145644:28377088,14155776,0 -) -k1,13805:10523651,27145644:-28377088 -) -) -g1,13805:28691032,27145644 -) -) -) -g1,13806:28690151,27145644 -k1,13806:32583029,27145644:3892878 -) -(1,13814:6630773,27987132:25952256,513147,115847 -h1,13813:6630773,27987132:983040,0,0 -k1,13813:11855503,27987132:213192 -k1,13813:15094491,27987132:213191 -(1,13813:15094491,27987132:0,452978,115847 -r1,13813:17211316,27987132:2116825,568825,115847 -k1,13813:15094491,27987132:-2116825 -) -(1,13813:15094491,27987132:2116825,452978,115847 -k1,13813:15094491,27987132:3277 -h1,13813:17208039,27987132:0,411205,112570 -) -k1,13813:17424508,27987132:213192 -k1,13813:18829145,27987132:213192 -(1,13813:18829145,27987132:0,452978,115847 -r1,13813:20945970,27987132:2116825,568825,115847 -k1,13813:18829145,27987132:-2116825 -) -(1,13813:18829145,27987132:2116825,452978,115847 -k1,13813:18829145,27987132:3277 -h1,13813:20942693,27987132:0,411205,112570 -) -k1,13813:21159161,27987132:213191 -k1,13813:22476635,27987132:213192 -k1,13813:23437593,27987132:213192 -k1,13813:25164011,27987132:213192 -k1,13813:26028630,27987132:213191 -k1,13813:27176365,27987132:213192 -k1,13813:28408642,27987132:213192 -k1,13813:29874226,27987132:213191 -k1,13813:31931601,27987132:213192 -k1,13813:32583029,27987132:0 -) -(1,13814:6630773,28828620:25952256,505283,126483 -g1,13813:8811155,28828620 -g1,13813:10754297,28828620 -g1,13813:11569564,28828620 -g1,13813:12787878,28828620 -g1,13813:15741585,28828620 -k1,13814:32583029,28828620:14697106 -g1,13814:32583029,28828620 -) -v1,13816:6630773,30019086:0,393216,0 -(1,13821:6630773,30994069:25952256,1368199,196608 -g1,13821:6630773,30994069 -g1,13821:6630773,30994069 -g1,13821:6434165,30994069 -(1,13821:6434165,30994069:0,1368199,196608 -r1,13821:32779637,30994069:26345472,1564807,196608 -k1,13821:6434165,30994069:-26345472 -) -(1,13821:6434165,30994069:26345472,1368199,196608 -[1,13821:6630773,30994069:25952256,1171591,0 -(1,13818:6630773,30226704:25952256,404226,76021 -(1,13817:6630773,30226704:0,0,0 -g1,13817:6630773,30226704 -g1,13817:6630773,30226704 -g1,13817:6303093,30226704 -(1,13817:6303093,30226704:0,0,0 -) -g1,13817:6630773,30226704 -) -g1,13818:6946919,30226704 -g1,13818:7263065,30226704 -g1,13818:10740669,30226704 -g1,13818:12637544,30226704 -h1,13818:12953690,30226704:0,0,0 -k1,13818:32583030,30226704:19629340 -g1,13818:32583030,30226704 -) -(1,13819:6630773,30892882:25952256,410518,101187 -h1,13819:6630773,30892882:0,0,0 -g1,13819:6946919,30892882 -g1,13819:7263065,30892882 -g1,13819:13585980,30892882 -g1,13819:15799000,30892882 -h1,13819:16115146,30892882:0,0,0 -k1,13819:32583029,30892882:16467883 -g1,13819:32583029,30892882 -) -] -) -g1,13821:32583029,30994069 -g1,13821:6630773,30994069 -g1,13821:6630773,30994069 -g1,13821:32583029,30994069 -g1,13821:32583029,30994069 -) -h1,13821:6630773,31190677:0,0,0 -(1,13825:6630773,32556453:25952256,513147,115847 -h1,13824:6630773,32556453:983040,0,0 -k1,13824:11897300,32556453:254989 -k1,13824:14847784,32556453:254988 -(1,13824:14847784,32556453:0,452978,115847 -r1,13824:16964609,32556453:2116825,568825,115847 -k1,13824:14847784,32556453:-2116825 -) -(1,13824:14847784,32556453:2116825,452978,115847 -k1,13824:14847784,32556453:3277 -h1,13824:16961332,32556453:0,411205,112570 -) -k1,13824:17219598,32556453:254989 -k1,13824:18006083,32556453:254988 -k1,13824:20238293,32556453:254989 -k1,13824:22191319,32556453:254988 -k1,13824:23314660,32556453:254989 -k1,13824:24662133,32556453:254988 -k1,13824:27182702,32556453:254989 -k1,13824:29340200,32556453:254988 -k1,13824:30542840,32556453:254989 -k1,13824:31563944,32556453:254988 -k1,13824:32583029,32556453:0 -) -(1,13825:6630773,33397941:25952256,505283,126483 -k1,13824:9891658,33397941:196421 -k1,13824:10704116,33397941:196420 -k1,13824:11256397,33397941:196421 -k1,13824:12730115,33397941:196421 -k1,13824:13998705,33397941:196421 -k1,13824:15743741,33397941:196420 -k1,13824:16591590,33397941:196421 -k1,13824:19720747,33397941:196421 -k1,13824:20851710,33397941:196420 -k1,13824:22300524,33397941:196421 -k1,13824:24341128,33397941:196421 -k1,13824:26747423,33397941:196421 -k1,13824:28044848,33397941:196420 -k1,13824:31563944,33397941:196421 -k1,13825:32583029,33397941:0 -) -(1,13825:6630773,34239429:25952256,513147,134348 -(1,13824:6630773,34239429:0,414482,115847 -r1,13824:8044174,34239429:1413401,530329,115847 -k1,13824:6630773,34239429:-1413401 -) -(1,13824:6630773,34239429:1413401,414482,115847 -k1,13824:6630773,34239429:3277 -h1,13824:8040897,34239429:0,411205,112570 -) -k1,13824:8179195,34239429:135021 -k1,13824:8973507,34239429:135020 -k1,13824:10805255,34239429:135021 -k1,13824:13016456,34239429:135020 -(1,13824:13016456,34239429:0,452978,115847 -r1,13824:15133281,34239429:2116825,568825,115847 -k1,13824:13016456,34239429:-2116825 -) -(1,13824:13016456,34239429:2116825,452978,115847 -k1,13824:13016456,34239429:3277 -h1,13824:15130004,34239429:0,411205,112570 -) -k1,13824:15268302,34239429:135021 -k1,13824:17781624,34239429:135020 -k1,13824:21319274,34239429:135021 -k1,13824:22401946,34239429:135021 -k1,13824:24233693,34239429:135020 -k1,13824:26437030,34239429:135021 -k1,13824:28481114,34239429:135020 -k1,13824:29302297,34239429:135021 -k1,13824:32583029,34239429:0 -) -(1,13825:6630773,35080917:25952256,513147,115847 -k1,13824:9031994,35080917:159234 -k1,13824:10210313,35080917:159234 -k1,13824:12437863,35080917:159234 -k1,13824:13256389,35080917:159234 -k1,13824:14434708,35080917:159234 -k1,13824:17809138,35080917:159234 -k1,13824:18438265,35080917:159234 -k1,13824:19883316,35080917:159235 -k1,13824:22054505,35080917:159234 -k1,13824:22958883,35080917:159234 -k1,13824:23769545,35080917:159234 -k1,13824:24863322,35080917:159234 -(1,13824:24863322,35080917:0,452978,115847 -r1,13824:26628435,35080917:1765113,568825,115847 -k1,13824:24863322,35080917:-1765113 -) -(1,13824:24863322,35080917:1765113,452978,115847 -k1,13824:24863322,35080917:3277 -h1,13824:26625158,35080917:0,411205,112570 -) -k1,13824:26961339,35080917:159234 -(1,13824:26961339,35080917:0,452978,115847 -r1,13824:29781588,35080917:2820249,568825,115847 -k1,13824:26961339,35080917:-2820249 -) -(1,13824:26961339,35080917:2820249,452978,115847 -k1,13824:26961339,35080917:3277 -h1,13824:29778311,35080917:0,411205,112570 -) -k1,13824:30114492,35080917:159234 -(1,13824:30114492,35080917:0,452978,115847 -r1,13824:32583029,35080917:2468537,568825,115847 -k1,13824:30114492,35080917:-2468537 -) -(1,13824:30114492,35080917:2468537,452978,115847 -k1,13824:30114492,35080917:3277 -h1,13824:32579752,35080917:0,411205,112570 -) -k1,13824:32583029,35080917:0 -) -(1,13825:6630773,35922405:25952256,513147,122846 -g1,13824:8021447,35922405 -(1,13824:8021447,35922405:0,414482,122846 -r1,13824:9083136,35922405:1061689,537328,122846 -k1,13824:8021447,35922405:-1061689 -) -(1,13824:8021447,35922405:1061689,414482,122846 -k1,13824:8021447,35922405:3277 -h1,13824:9079859,35922405:0,411205,112570 -) -g1,13824:9456035,35922405 -g1,13824:10314556,35922405 -g1,13824:12399256,35922405 -g1,13824:13617570,35922405 -g1,13824:15122932,35922405 -g1,13824:16494600,35922405 -g1,13824:17798111,35922405 -g1,13824:19283156,35922405 -g1,13824:20230151,35922405 -g1,13824:21363923,35922405 -g1,13824:22957103,35922405 -(1,13824:22957103,35922405:0,452978,122846 -r1,13824:26129063,35922405:3171960,575824,122846 -k1,13824:22957103,35922405:-3171960 -) -(1,13824:22957103,35922405:3171960,452978,122846 -k1,13824:22957103,35922405:3277 -h1,13824:26125786,35922405:0,411205,112570 -) -k1,13825:32583029,35922405:6280296 -g1,13825:32583029,35922405 -) -v1,13827:6630773,37112871:0,393216,0 -(1,13842:6630773,44724468:25952256,8004813,196608 -g1,13842:6630773,44724468 -g1,13842:6630773,44724468 -g1,13842:6434165,44724468 -(1,13842:6434165,44724468:0,8004813,196608 -r1,13842:32779637,44724468:26345472,8201421,196608 -k1,13842:6434165,44724468:-26345472 -) -(1,13842:6434165,44724468:26345472,8004813,196608 -[1,13842:6630773,44724468:25952256,7808205,0 -(1,13829:6630773,37320489:25952256,404226,107478 -(1,13828:6630773,37320489:0,0,0 -g1,13828:6630773,37320489 -g1,13828:6630773,37320489 -g1,13828:6303093,37320489 -(1,13828:6303093,37320489:0,0,0 -) -g1,13828:6630773,37320489 -) -k1,13829:6630773,37320489:0 -g1,13829:10424522,37320489 -g1,13829:11056814,37320489 -k1,13829:11056814,37320489:0 -h1,13829:13269834,37320489:0,0,0 -k1,13829:32583030,37320489:19313196 -g1,13829:32583030,37320489 -) -(1,13830:6630773,37986667:25952256,410518,107478 -h1,13830:6630773,37986667:0,0,0 -g1,13830:6946919,37986667 -g1,13830:7263065,37986667 -g1,13830:7579211,37986667 -g1,13830:7895357,37986667 -g1,13830:8211503,37986667 -g1,13830:8527649,37986667 -g1,13830:8843795,37986667 -g1,13830:10740670,37986667 -g1,13830:11372962,37986667 -g1,13830:12953691,37986667 -g1,13830:13585983,37986667 -g1,13830:14218275,37986667 -g1,13830:18960461,37986667 -g1,13830:20857335,37986667 -g1,13830:21489627,37986667 -g1,13830:23702647,37986667 -h1,13830:24018793,37986667:0,0,0 -k1,13830:32583029,37986667:8564236 -g1,13830:32583029,37986667 -) -(1,13831:6630773,38652845:25952256,404226,107478 -h1,13831:6630773,38652845:0,0,0 -g1,13831:6946919,38652845 -g1,13831:7263065,38652845 -g1,13831:11056813,38652845 -h1,13831:11372959,38652845:0,0,0 -k1,13831:32583029,38652845:21210070 -g1,13831:32583029,38652845 -) -(1,13832:6630773,39319023:25952256,404226,107478 -h1,13832:6630773,39319023:0,0,0 -g1,13832:6946919,39319023 -g1,13832:7263065,39319023 -g1,13832:11372959,39319023 -h1,13832:11689105,39319023:0,0,0 -k1,13832:32583029,39319023:20893924 -g1,13832:32583029,39319023 -) -(1,13833:6630773,39985201:25952256,404226,101187 -h1,13833:6630773,39985201:0,0,0 -g1,13833:6946919,39985201 -g1,13833:7263065,39985201 -g1,13833:12321397,39985201 -g1,13833:12953689,39985201 -g1,13833:13902127,39985201 -h1,13833:14218273,39985201:0,0,0 -k1,13833:32583029,39985201:18364756 -g1,13833:32583029,39985201 -) -(1,13834:6630773,40651379:25952256,410518,107478 -h1,13834:6630773,40651379:0,0,0 -g1,13834:6946919,40651379 -g1,13834:7263065,40651379 -g1,13834:10740668,40651379 -g1,13834:11372960,40651379 -g1,13834:13902126,40651379 -g1,13834:14850563,40651379 -g1,13834:17063583,40651379 -k1,13834:17063583,40651379:0 -h1,13834:19276603,40651379:0,0,0 -k1,13834:32583029,40651379:13306426 -g1,13834:32583029,40651379 -) -(1,13835:6630773,41317557:25952256,410518,107478 -h1,13835:6630773,41317557:0,0,0 -g1,13835:6946919,41317557 -g1,13835:7263065,41317557 -g1,13835:7579211,41317557 -g1,13835:7895357,41317557 -g1,13835:8211503,41317557 -g1,13835:8527649,41317557 -g1,13835:8843795,41317557 -g1,13835:11689106,41317557 -g1,13835:12321398,41317557 -g1,13835:15482855,41317557 -g1,13835:17063584,41317557 -k1,13835:17063584,41317557:0 -h1,13835:20857333,41317557:0,0,0 -k1,13835:32583029,41317557:11725696 -g1,13835:32583029,41317557 -) -(1,13836:6630773,41983735:25952256,404226,101187 -h1,13836:6630773,41983735:0,0,0 -g1,13836:6946919,41983735 -g1,13836:7263065,41983735 -g1,13836:7579211,41983735 -g1,13836:7895357,41983735 -g1,13836:8211503,41983735 -g1,13836:8527649,41983735 -g1,13836:8843795,41983735 -g1,13836:11372961,41983735 -g1,13836:12005253,41983735 -g1,13836:13585982,41983735 -g1,13836:16115148,41983735 -g1,13836:17063585,41983735 -g1,13836:18012022,41983735 -g1,13836:19276605,41983735 -g1,13836:21489625,41983735 -g1,13836:22438062,41983735 -k1,13836:22438062,41983735:0 -h1,13836:24967228,41983735:0,0,0 -k1,13836:32583029,41983735:7615801 -g1,13836:32583029,41983735 -) -(1,13837:6630773,42649913:25952256,404226,107478 -h1,13837:6630773,42649913:0,0,0 -g1,13837:6946919,42649913 -g1,13837:7263065,42649913 -g1,13837:7579211,42649913 -g1,13837:7895357,42649913 -g1,13837:8211503,42649913 -g1,13837:8527649,42649913 -g1,13837:8843795,42649913 -g1,13837:10108378,42649913 -g1,13837:10740670,42649913 -k1,13837:10740670,42649913:0 -h1,13837:12005253,42649913:0,0,0 -k1,13837:32583029,42649913:20577776 -g1,13837:32583029,42649913 -) -(1,13838:6630773,43316091:25952256,404226,82312 -h1,13838:6630773,43316091:0,0,0 -g1,13838:6946919,43316091 -g1,13838:7263065,43316091 -g1,13838:7579211,43316091 -g1,13838:7895357,43316091 -g1,13838:8211503,43316091 -g1,13838:8527649,43316091 -g1,13838:8843795,43316091 -g1,13838:9476087,43316091 -g1,13838:10108379,43316091 -g1,13838:12005253,43316091 -k1,13838:12005253,43316091:0 -h1,13838:13585982,43316091:0,0,0 -k1,13838:32583030,43316091:18997048 -g1,13838:32583030,43316091 -) -(1,13839:6630773,43982269:25952256,410518,101187 -h1,13839:6630773,43982269:0,0,0 -g1,13839:6946919,43982269 -g1,13839:7263065,43982269 -g1,13839:7579211,43982269 -g1,13839:7895357,43982269 -g1,13839:8211503,43982269 -g1,13839:8527649,43982269 -g1,13839:8843795,43982269 -g1,13839:9476087,43982269 -g1,13839:10108379,43982269 -g1,13839:14850565,43982269 -k1,13839:14850565,43982269:0 -h1,13839:16747439,43982269:0,0,0 -k1,13839:32583029,43982269:15835590 -g1,13839:32583029,43982269 -) -(1,13840:6630773,44648447:25952256,404226,76021 -h1,13840:6630773,44648447:0,0,0 -g1,13840:6946919,44648447 -g1,13840:7263065,44648447 -g1,13840:7579211,44648447 -g1,13840:7895357,44648447 -g1,13840:8211503,44648447 -g1,13840:8527649,44648447 -g1,13840:8843795,44648447 -g1,13840:10740669,44648447 -g1,13840:11372961,44648447 -h1,13840:16115147,44648447:0,0,0 -k1,13840:32583029,44648447:16467882 -g1,13840:32583029,44648447 -) -] -) -g1,13842:32583029,44724468 -g1,13842:6630773,44724468 -g1,13842:6630773,44724468 -g1,13842:32583029,44724468 -g1,13842:32583029,44724468 -) -h1,13842:6630773,44921076:0,0,0 -] -(1,13853:32583029,45706769:0,0,0 -g1,13853:32583029,45706769 -) -) -] -(1,13853:6630773,47279633:25952256,0,0 -h1,13853:6630773,47279633:25952256,0,0 -) -] -h1,13853:4262630,4025873:0,0,0 -] -!25152 -}266 -Input:2017:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2018:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2019:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2020:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2021:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2022:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2023:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2024:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2025:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2026:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2027:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2028:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2029:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2030:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2031:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2032:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2033:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2034:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2035:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2036:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2037:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2038:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2039:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2040:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2041:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2042:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2043:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2044:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2045:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2046:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2047:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2048:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2049:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2050:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2051:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2052:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2053:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2054:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2055:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2056:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!3452 -{267 -[1,13891:4262630,47279633:28320399,43253760,0 -(1,13891:4262630,4025873:0,0,0 -[1,13891:-473657,4025873:25952256,0,0 -(1,13891:-473657,-710414:25952256,0,0 -h1,13891:-473657,-710414:0,0,0 -(1,13891:-473657,-710414:0,0,0 -(1,13891:-473657,-710414:0,0,0 -g1,13891:-473657,-710414 -(1,13891:-473657,-710414:65781,0,65781 -g1,13891:-407876,-710414 -[1,13891:-407876,-644633:0,0,0 +[1,13879:3078558,4812305:0,0,0 +(1,13879:3078558,49800853:0,16384,2228224 +g1,13879:29030814,49800853 +g1,13879:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13879:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13879:37855564,49800853:1179648,16384,0 +) +) +k1,13879:3078556,49800853:-34777008 +) +] +g1,13879:6630773,4812305 +k1,13879:25712890,4812305:17886740 +g1,13879:29057847,4812305 +g1,13879:29873114,4812305 +) +) +] +[1,13879:6630773,45706769:25952256,40108032,0 +(1,13879:6630773,45706769:25952256,40108032,0 +(1,13879:6630773,45706769:0,0,0 +g1,13879:6630773,45706769 +) +[1,13879:6630773,45706769:25952256,40108032,0 +(1,13813:6630773,6254097:25952256,513147,134348 +k1,13812:9888568,6254097:193331 +k1,13812:11100984,6254097:193331 +k1,13812:13032330,6254097:193331 +k1,13812:13884953,6254097:193331 +k1,13812:15097369,6254097:193331 +k1,13812:16862909,6254097:193331 +k1,13812:19829724,6254097:193331 +k1,13812:21042141,6254097:193332 +k1,13812:24364816,6254097:193331 +k1,13812:25241032,6254097:193331 +k1,13812:26506532,6254097:193331 +k1,13812:27883443,6254097:193331 +k1,13812:28736066,6254097:193331 +k1,13812:29948482,6254097:193331 +k1,13812:31900144,6254097:193331 +k1,13812:32583029,6254097:0 +) +(1,13813:6630773,7095585:25952256,505283,134348 +k1,13812:8125525,7095585:220077 +k1,13812:9243445,7095585:220077 +k1,13812:11366032,7095585:220077 +k1,13812:13061325,7095585:220078 +k1,13812:13637262,7095585:220077 +(1,13812:13637262,7095585:0,414482,115847 +r1,13812:15050663,7095585:1413401,530329,115847 +k1,13812:13637262,7095585:-1413401 +) +(1,13812:13637262,7095585:1413401,414482,115847 +k1,13812:13637262,7095585:3277 +h1,13812:15047386,7095585:0,411205,112570 +) +k1,13812:15270740,7095585:220077 +k1,13812:18771549,7095585:220077 +k1,13812:19643054,7095585:220077 +k1,13812:21748602,7095585:220077 +k1,13812:22324539,7095585:220077 +k1,13812:25519296,7095585:220078 +k1,13812:27605183,7095585:220077 +k1,13812:28508145,7095585:220077 +k1,13812:29143044,7095585:220056 +k1,13812:32583029,7095585:0 +) +(1,13813:6630773,7937073:25952256,513147,134348 +g1,13812:8062079,7937073 +g1,13812:10539995,7937073 +h1,13812:11909042,7937073:0,0,0 +g1,13812:12315365,7937073 +g1,13812:13618876,7937073 +g1,13812:14565871,7937073 +g1,13812:16970387,7937073 +g1,13812:17855778,7937073 +g1,13812:18825710,7937073 +g1,13812:22097267,7937073 +g1,13812:22947924,7937073 +g1,13812:25792186,7937073 +g1,13812:27010500,7937073 +k1,13813:32583029,7937073:3133279 +g1,13813:32583029,7937073 +) +(1,13815:6630773,8778561:25952256,505283,126483 +h1,13814:6630773,8778561:983040,0,0 +k1,13814:11244727,8778561:172579 +k1,13814:12858444,8778561:172580 +k1,13814:15444059,8778561:172579 +k1,13814:16808083,8778561:172579 +k1,13814:19358309,8778561:172580 +k1,13814:20522448,8778561:172579 +k1,13814:21761298,8778561:172579 +k1,13814:25197571,8778561:172580 +k1,13814:26021578,8778561:172579 +k1,13814:28040307,8778561:172579 +k1,13814:28895772,8778561:172580 +(1,13814:28895772,8778561:0,452978,115847 +r1,13814:30309173,8778561:1413401,568825,115847 +k1,13814:28895772,8778561:-1413401 +) +(1,13814:28895772,8778561:1413401,452978,115847 +k1,13814:28895772,8778561:3277 +h1,13814:30305896,8778561:0,411205,112570 +) +k1,13814:30655422,8778561:172579 +k1,13814:31315563,8778561:172553 +k1,13814:32583029,8778561:0 +) +(1,13815:6630773,9620049:25952256,513147,134348 +(1,13814:6837867,9620049:0,452978,115847 +r1,13814:8602980,9620049:1765113,568825,115847 +k1,13814:6837867,9620049:-1765113 +) +(1,13814:6837867,9620049:1765113,452978,115847 +k1,13814:6837867,9620049:3277 +h1,13814:8599703,9620049:0,411205,112570 +) +k1,13814:9056982,9620049:246908 +k1,13814:10495334,9620049:246907 +(1,13814:10495334,9620049:0,452978,115847 +r1,13814:13315583,9620049:2820249,568825,115847 +k1,13814:10495334,9620049:-2820249 +) +(1,13814:10495334,9620049:2820249,452978,115847 +k1,13814:10495334,9620049:3277 +h1,13814:13312306,9620049:0,411205,112570 +) +k1,13814:13562491,9620049:246908 +k1,13814:14913680,9620049:246907 +k1,13814:15908354,9620049:246908 +k1,13814:18120686,9620049:246907 +k1,13814:19863126,9620049:246908 +k1,13814:23819371,9620049:246907 +k1,13814:25460230,9620049:246908 +k1,13814:28402633,9620049:246907 +(1,13814:28402633,9620049:0,452978,122846 +r1,13814:31574593,9620049:3171960,575824,122846 +k1,13814:28402633,9620049:-3171960 +) +(1,13814:28402633,9620049:3171960,452978,122846 +k1,13814:28402633,9620049:3277 +h1,13814:31571316,9620049:0,411205,112570 +) +k1,13814:31821501,9620049:246908 +k1,13814:32583029,9620049:0 +) +(1,13815:6630773,10461537:25952256,505283,134348 +g1,13814:9257456,10461537 +g1,13814:11312665,10461537 +g1,13814:14486573,10461537 +g1,13814:16881913,10461537 +g1,13814:17764027,10461537 +g1,13814:18378099,10461537 +g1,13814:22347614,10461537 +g1,13814:23233005,10461537 +k1,13815:32583029,10461537:5773724 +g1,13815:32583029,10461537 +) +v1,13817:6630773,11652003:0,393216,0 +(1,13829:6630773,17296523:25952256,6037736,196608 +g1,13829:6630773,17296523 +g1,13829:6630773,17296523 +g1,13829:6434165,17296523 +(1,13829:6434165,17296523:0,6037736,196608 +r1,13829:32779637,17296523:26345472,6234344,196608 +k1,13829:6434165,17296523:-26345472 +) +(1,13829:6434165,17296523:26345472,6037736,196608 +[1,13829:6630773,17296523:25952256,5841128,0 +(1,13819:6630773,11859621:25952256,404226,107478 +(1,13818:6630773,11859621:0,0,0 +g1,13818:6630773,11859621 +g1,13818:6630773,11859621 +g1,13818:6303093,11859621 +(1,13818:6303093,11859621:0,0,0 +) +g1,13818:6630773,11859621 +) +k1,13819:6630773,11859621:0 +g1,13819:10424522,11859621 +g1,13819:11056814,11859621 +k1,13819:11056814,11859621:0 +h1,13819:13269834,11859621:0,0,0 +k1,13819:32583030,11859621:19313196 +g1,13819:32583030,11859621 +) +(1,13820:6630773,12525799:25952256,410518,107478 +h1,13820:6630773,12525799:0,0,0 +g1,13820:6946919,12525799 +g1,13820:7263065,12525799 +g1,13820:7579211,12525799 +g1,13820:7895357,12525799 +g1,13820:8211503,12525799 +g1,13820:8527649,12525799 +g1,13820:8843795,12525799 +g1,13820:10740670,12525799 +g1,13820:11372962,12525799 +g1,13820:12953691,12525799 +g1,13820:13585983,12525799 +g1,13820:14218275,12525799 +g1,13820:18960461,12525799 +g1,13820:20857335,12525799 +g1,13820:21489627,12525799 +g1,13820:23702647,12525799 +h1,13820:24018793,12525799:0,0,0 +k1,13820:32583029,12525799:8564236 +g1,13820:32583029,12525799 +) +(1,13821:6630773,13191977:25952256,404226,107478 +h1,13821:6630773,13191977:0,0,0 +g1,13821:6946919,13191977 +g1,13821:7263065,13191977 +g1,13821:11056813,13191977 +h1,13821:11372959,13191977:0,0,0 +k1,13821:32583029,13191977:21210070 +g1,13821:32583029,13191977 +) +(1,13822:6630773,13858155:25952256,404226,107478 +h1,13822:6630773,13858155:0,0,0 +g1,13822:6946919,13858155 +g1,13822:7263065,13858155 +g1,13822:11372959,13858155 +h1,13822:11689105,13858155:0,0,0 +k1,13822:32583029,13858155:20893924 +g1,13822:32583029,13858155 +) +(1,13823:6630773,14524333:25952256,404226,101187 +h1,13823:6630773,14524333:0,0,0 +g1,13823:6946919,14524333 +g1,13823:7263065,14524333 +g1,13823:12321397,14524333 +g1,13823:12953689,14524333 +g1,13823:13902127,14524333 +h1,13823:14218273,14524333:0,0,0 +k1,13823:32583029,14524333:18364756 +g1,13823:32583029,14524333 +) +(1,13824:6630773,15190511:25952256,404226,76021 +h1,13824:6630773,15190511:0,0,0 +g1,13824:6946919,15190511 +g1,13824:7263065,15190511 +g1,13824:14850562,15190511 +g1,13824:15482854,15190511 +g1,13824:17379728,15190511 +g1,13824:19276603,15190511 +h1,13824:19592749,15190511:0,0,0 +k1,13824:32583029,15190511:12990280 +g1,13824:32583029,15190511 +) +(1,13825:6630773,15856689:25952256,410518,101187 +h1,13825:6630773,15856689:0,0,0 +g1,13825:6946919,15856689 +g1,13825:7263065,15856689 +g1,13825:14850562,15856689 +g1,13825:15482854,15856689 +g1,13825:20225040,15856689 +g1,13825:22438060,15856689 +h1,13825:22754206,15856689:0,0,0 +k1,13825:32583029,15856689:9828823 +g1,13825:32583029,15856689 +) +(1,13826:6630773,16522867:25952256,410518,107478 +h1,13826:6630773,16522867:0,0,0 +g1,13826:6946919,16522867 +g1,13826:7263065,16522867 +g1,13826:11689105,16522867 +g1,13826:12321397,16522867 +g1,13826:14850563,16522867 +g1,13826:15799000,16522867 +g1,13826:18012020,16522867 +k1,13826:18012020,16522867:0 +h1,13826:20225040,16522867:0,0,0 +k1,13826:32583029,16522867:12357989 +g1,13826:32583029,16522867 +) +(1,13827:6630773,17189045:25952256,410518,107478 +h1,13827:6630773,17189045:0,0,0 +g1,13827:6946919,17189045 +g1,13827:7263065,17189045 +g1,13827:7579211,17189045 +g1,13827:7895357,17189045 +g1,13827:8211503,17189045 +g1,13827:8527649,17189045 +g1,13827:8843795,17189045 +g1,13827:9159941,17189045 +g1,13827:9476087,17189045 +g1,13827:9792233,17189045 +g1,13827:12637544,17189045 +g1,13827:13269836,17189045 +g1,13827:16431293,17189045 +g1,13827:18012022,17189045 +k1,13827:18012022,17189045:0 +h1,13827:21805771,17189045:0,0,0 +k1,13827:32583029,17189045:10777258 +g1,13827:32583029,17189045 +) +] +) +g1,13829:32583029,17296523 +g1,13829:6630773,17296523 +g1,13829:6630773,17296523 +g1,13829:32583029,17296523 +g1,13829:32583029,17296523 +) +h1,13829:6630773,17493131:0,0,0 +(1,13832:6630773,27145644:25952256,9062689,0 +k1,13832:10523651,27145644:3892878 +h1,13831:10523651,27145644:0,0,0 +(1,13831:10523651,27145644:18166500,9062689,0 +(1,13831:10523651,27145644:18167381,9062712,0 +(1,13831:10523651,27145644:18167381,9062712,0 +(1,13831:10523651,27145644:0,9062712,0 +(1,13831:10523651,27145644:0,14155776,0 +(1,13831:10523651,27145644:28377088,14155776,0 +) +k1,13831:10523651,27145644:-28377088 +) +) +g1,13831:28691032,27145644 +) +) +) +g1,13832:28690151,27145644 +k1,13832:32583029,27145644:3892878 +) +(1,13840:6630773,27987132:25952256,513147,115847 +h1,13839:6630773,27987132:983040,0,0 +k1,13839:11855503,27987132:213192 +k1,13839:15094491,27987132:213191 +(1,13839:15094491,27987132:0,452978,115847 +r1,13839:17211316,27987132:2116825,568825,115847 +k1,13839:15094491,27987132:-2116825 +) +(1,13839:15094491,27987132:2116825,452978,115847 +k1,13839:15094491,27987132:3277 +h1,13839:17208039,27987132:0,411205,112570 +) +k1,13839:17424508,27987132:213192 +k1,13839:18829145,27987132:213192 +(1,13839:18829145,27987132:0,452978,115847 +r1,13839:20945970,27987132:2116825,568825,115847 +k1,13839:18829145,27987132:-2116825 +) +(1,13839:18829145,27987132:2116825,452978,115847 +k1,13839:18829145,27987132:3277 +h1,13839:20942693,27987132:0,411205,112570 +) +k1,13839:21159161,27987132:213191 +k1,13839:22476635,27987132:213192 +k1,13839:23437593,27987132:213192 +k1,13839:25164011,27987132:213192 +k1,13839:26028630,27987132:213191 +k1,13839:27176365,27987132:213192 +k1,13839:28408642,27987132:213192 +k1,13839:29874226,27987132:213191 +k1,13839:31931601,27987132:213192 +k1,13839:32583029,27987132:0 +) +(1,13840:6630773,28828620:25952256,505283,126483 +g1,13839:8811155,28828620 +g1,13839:10754297,28828620 +g1,13839:11569564,28828620 +g1,13839:12787878,28828620 +g1,13839:15741585,28828620 +k1,13840:32583029,28828620:14697106 +g1,13840:32583029,28828620 +) +v1,13842:6630773,30019086:0,393216,0 +(1,13847:6630773,30994069:25952256,1368199,196608 +g1,13847:6630773,30994069 +g1,13847:6630773,30994069 +g1,13847:6434165,30994069 +(1,13847:6434165,30994069:0,1368199,196608 +r1,13847:32779637,30994069:26345472,1564807,196608 +k1,13847:6434165,30994069:-26345472 +) +(1,13847:6434165,30994069:26345472,1368199,196608 +[1,13847:6630773,30994069:25952256,1171591,0 +(1,13844:6630773,30226704:25952256,404226,76021 +(1,13843:6630773,30226704:0,0,0 +g1,13843:6630773,30226704 +g1,13843:6630773,30226704 +g1,13843:6303093,30226704 +(1,13843:6303093,30226704:0,0,0 +) +g1,13843:6630773,30226704 +) +g1,13844:6946919,30226704 +g1,13844:7263065,30226704 +g1,13844:10740669,30226704 +g1,13844:12637544,30226704 +h1,13844:12953690,30226704:0,0,0 +k1,13844:32583030,30226704:19629340 +g1,13844:32583030,30226704 +) +(1,13845:6630773,30892882:25952256,410518,101187 +h1,13845:6630773,30892882:0,0,0 +g1,13845:6946919,30892882 +g1,13845:7263065,30892882 +g1,13845:13585980,30892882 +g1,13845:15799000,30892882 +h1,13845:16115146,30892882:0,0,0 +k1,13845:32583029,30892882:16467883 +g1,13845:32583029,30892882 +) +] +) +g1,13847:32583029,30994069 +g1,13847:6630773,30994069 +g1,13847:6630773,30994069 +g1,13847:32583029,30994069 +g1,13847:32583029,30994069 +) +h1,13847:6630773,31190677:0,0,0 +(1,13851:6630773,32556453:25952256,513147,115847 +h1,13850:6630773,32556453:983040,0,0 +k1,13850:11897300,32556453:254989 +k1,13850:14847784,32556453:254988 +(1,13850:14847784,32556453:0,452978,115847 +r1,13850:16964609,32556453:2116825,568825,115847 +k1,13850:14847784,32556453:-2116825 +) +(1,13850:14847784,32556453:2116825,452978,115847 +k1,13850:14847784,32556453:3277 +h1,13850:16961332,32556453:0,411205,112570 +) +k1,13850:17219598,32556453:254989 +k1,13850:18006083,32556453:254988 +k1,13850:20238293,32556453:254989 +k1,13850:22191319,32556453:254988 +k1,13850:23314660,32556453:254989 +k1,13850:24662133,32556453:254988 +k1,13850:27182702,32556453:254989 +k1,13850:29340200,32556453:254988 +k1,13850:30542840,32556453:254989 +k1,13850:31563944,32556453:254988 +k1,13850:32583029,32556453:0 +) +(1,13851:6630773,33397941:25952256,505283,126483 +k1,13850:9891658,33397941:196421 +k1,13850:10704116,33397941:196420 +k1,13850:11256397,33397941:196421 +k1,13850:12730115,33397941:196421 +k1,13850:13998705,33397941:196421 +k1,13850:15743741,33397941:196420 +k1,13850:16591590,33397941:196421 +k1,13850:19720747,33397941:196421 +k1,13850:20851710,33397941:196420 +k1,13850:22300524,33397941:196421 +k1,13850:24341128,33397941:196421 +k1,13850:26747423,33397941:196421 +k1,13850:28044848,33397941:196420 +k1,13850:31563944,33397941:196421 +k1,13851:32583029,33397941:0 +) +(1,13851:6630773,34239429:25952256,513147,134348 +(1,13850:6630773,34239429:0,414482,115847 +r1,13850:8044174,34239429:1413401,530329,115847 +k1,13850:6630773,34239429:-1413401 +) +(1,13850:6630773,34239429:1413401,414482,115847 +k1,13850:6630773,34239429:3277 +h1,13850:8040897,34239429:0,411205,112570 +) +k1,13850:8179195,34239429:135021 +k1,13850:8973507,34239429:135020 +k1,13850:10805255,34239429:135021 +k1,13850:13016456,34239429:135020 +(1,13850:13016456,34239429:0,452978,115847 +r1,13850:15133281,34239429:2116825,568825,115847 +k1,13850:13016456,34239429:-2116825 +) +(1,13850:13016456,34239429:2116825,452978,115847 +k1,13850:13016456,34239429:3277 +h1,13850:15130004,34239429:0,411205,112570 +) +k1,13850:15268302,34239429:135021 +k1,13850:17781624,34239429:135020 +k1,13850:21319274,34239429:135021 +k1,13850:22401946,34239429:135021 +k1,13850:24233693,34239429:135020 +k1,13850:26437030,34239429:135021 +k1,13850:28481114,34239429:135020 +k1,13850:29302297,34239429:135021 +k1,13850:32583029,34239429:0 +) +(1,13851:6630773,35080917:25952256,513147,115847 +k1,13850:9031994,35080917:159234 +k1,13850:10210313,35080917:159234 +k1,13850:12437863,35080917:159234 +k1,13850:13256389,35080917:159234 +k1,13850:14434708,35080917:159234 +k1,13850:17809138,35080917:159234 +k1,13850:18438265,35080917:159234 +k1,13850:19883316,35080917:159235 +k1,13850:22054505,35080917:159234 +k1,13850:22958883,35080917:159234 +k1,13850:23769545,35080917:159234 +k1,13850:24863322,35080917:159234 +(1,13850:24863322,35080917:0,452978,115847 +r1,13850:26628435,35080917:1765113,568825,115847 +k1,13850:24863322,35080917:-1765113 +) +(1,13850:24863322,35080917:1765113,452978,115847 +k1,13850:24863322,35080917:3277 +h1,13850:26625158,35080917:0,411205,112570 +) +k1,13850:26961339,35080917:159234 +(1,13850:26961339,35080917:0,452978,115847 +r1,13850:29781588,35080917:2820249,568825,115847 +k1,13850:26961339,35080917:-2820249 +) +(1,13850:26961339,35080917:2820249,452978,115847 +k1,13850:26961339,35080917:3277 +h1,13850:29778311,35080917:0,411205,112570 +) +k1,13850:30114492,35080917:159234 +(1,13850:30114492,35080917:0,452978,115847 +r1,13850:32583029,35080917:2468537,568825,115847 +k1,13850:30114492,35080917:-2468537 +) +(1,13850:30114492,35080917:2468537,452978,115847 +k1,13850:30114492,35080917:3277 +h1,13850:32579752,35080917:0,411205,112570 +) +k1,13850:32583029,35080917:0 +) +(1,13851:6630773,35922405:25952256,513147,122846 +g1,13850:8021447,35922405 +(1,13850:8021447,35922405:0,414482,122846 +r1,13850:9083136,35922405:1061689,537328,122846 +k1,13850:8021447,35922405:-1061689 +) +(1,13850:8021447,35922405:1061689,414482,122846 +k1,13850:8021447,35922405:3277 +h1,13850:9079859,35922405:0,411205,112570 +) +g1,13850:9456035,35922405 +g1,13850:10314556,35922405 +g1,13850:12399256,35922405 +g1,13850:13617570,35922405 +g1,13850:15122932,35922405 +g1,13850:16494600,35922405 +g1,13850:17798111,35922405 +g1,13850:19283156,35922405 +g1,13850:20230151,35922405 +g1,13850:21363923,35922405 +g1,13850:22957103,35922405 +(1,13850:22957103,35922405:0,452978,122846 +r1,13850:26129063,35922405:3171960,575824,122846 +k1,13850:22957103,35922405:-3171960 +) +(1,13850:22957103,35922405:3171960,452978,122846 +k1,13850:22957103,35922405:3277 +h1,13850:26125786,35922405:0,411205,112570 +) +k1,13851:32583029,35922405:6280296 +g1,13851:32583029,35922405 +) +v1,13853:6630773,37112871:0,393216,0 +(1,13868:6630773,44724468:25952256,8004813,196608 +g1,13868:6630773,44724468 +g1,13868:6630773,44724468 +g1,13868:6434165,44724468 +(1,13868:6434165,44724468:0,8004813,196608 +r1,13868:32779637,44724468:26345472,8201421,196608 +k1,13868:6434165,44724468:-26345472 +) +(1,13868:6434165,44724468:26345472,8004813,196608 +[1,13868:6630773,44724468:25952256,7808205,0 +(1,13855:6630773,37320489:25952256,404226,107478 +(1,13854:6630773,37320489:0,0,0 +g1,13854:6630773,37320489 +g1,13854:6630773,37320489 +g1,13854:6303093,37320489 +(1,13854:6303093,37320489:0,0,0 +) +g1,13854:6630773,37320489 +) +k1,13855:6630773,37320489:0 +g1,13855:10424522,37320489 +g1,13855:11056814,37320489 +k1,13855:11056814,37320489:0 +h1,13855:13269834,37320489:0,0,0 +k1,13855:32583030,37320489:19313196 +g1,13855:32583030,37320489 +) +(1,13856:6630773,37986667:25952256,410518,107478 +h1,13856:6630773,37986667:0,0,0 +g1,13856:6946919,37986667 +g1,13856:7263065,37986667 +g1,13856:7579211,37986667 +g1,13856:7895357,37986667 +g1,13856:8211503,37986667 +g1,13856:8527649,37986667 +g1,13856:8843795,37986667 +g1,13856:10740670,37986667 +g1,13856:11372962,37986667 +g1,13856:12953691,37986667 +g1,13856:13585983,37986667 +g1,13856:14218275,37986667 +g1,13856:18960461,37986667 +g1,13856:20857335,37986667 +g1,13856:21489627,37986667 +g1,13856:23702647,37986667 +h1,13856:24018793,37986667:0,0,0 +k1,13856:32583029,37986667:8564236 +g1,13856:32583029,37986667 +) +(1,13857:6630773,38652845:25952256,404226,107478 +h1,13857:6630773,38652845:0,0,0 +g1,13857:6946919,38652845 +g1,13857:7263065,38652845 +g1,13857:11056813,38652845 +h1,13857:11372959,38652845:0,0,0 +k1,13857:32583029,38652845:21210070 +g1,13857:32583029,38652845 +) +(1,13858:6630773,39319023:25952256,404226,107478 +h1,13858:6630773,39319023:0,0,0 +g1,13858:6946919,39319023 +g1,13858:7263065,39319023 +g1,13858:11372959,39319023 +h1,13858:11689105,39319023:0,0,0 +k1,13858:32583029,39319023:20893924 +g1,13858:32583029,39319023 +) +(1,13859:6630773,39985201:25952256,404226,101187 +h1,13859:6630773,39985201:0,0,0 +g1,13859:6946919,39985201 +g1,13859:7263065,39985201 +g1,13859:12321397,39985201 +g1,13859:12953689,39985201 +g1,13859:13902127,39985201 +h1,13859:14218273,39985201:0,0,0 +k1,13859:32583029,39985201:18364756 +g1,13859:32583029,39985201 +) +(1,13860:6630773,40651379:25952256,410518,107478 +h1,13860:6630773,40651379:0,0,0 +g1,13860:6946919,40651379 +g1,13860:7263065,40651379 +g1,13860:10740668,40651379 +g1,13860:11372960,40651379 +g1,13860:13902126,40651379 +g1,13860:14850563,40651379 +g1,13860:17063583,40651379 +k1,13860:17063583,40651379:0 +h1,13860:19276603,40651379:0,0,0 +k1,13860:32583029,40651379:13306426 +g1,13860:32583029,40651379 +) +(1,13861:6630773,41317557:25952256,410518,107478 +h1,13861:6630773,41317557:0,0,0 +g1,13861:6946919,41317557 +g1,13861:7263065,41317557 +g1,13861:7579211,41317557 +g1,13861:7895357,41317557 +g1,13861:8211503,41317557 +g1,13861:8527649,41317557 +g1,13861:8843795,41317557 +g1,13861:11689106,41317557 +g1,13861:12321398,41317557 +g1,13861:15482855,41317557 +g1,13861:17063584,41317557 +k1,13861:17063584,41317557:0 +h1,13861:20857333,41317557:0,0,0 +k1,13861:32583029,41317557:11725696 +g1,13861:32583029,41317557 +) +(1,13862:6630773,41983735:25952256,404226,101187 +h1,13862:6630773,41983735:0,0,0 +g1,13862:6946919,41983735 +g1,13862:7263065,41983735 +g1,13862:7579211,41983735 +g1,13862:7895357,41983735 +g1,13862:8211503,41983735 +g1,13862:8527649,41983735 +g1,13862:8843795,41983735 +g1,13862:11372961,41983735 +g1,13862:12005253,41983735 +g1,13862:13585982,41983735 +g1,13862:16115148,41983735 +g1,13862:17063585,41983735 +g1,13862:18012022,41983735 +g1,13862:19276605,41983735 +g1,13862:21489625,41983735 +g1,13862:22438062,41983735 +k1,13862:22438062,41983735:0 +h1,13862:24967228,41983735:0,0,0 +k1,13862:32583029,41983735:7615801 +g1,13862:32583029,41983735 +) +(1,13863:6630773,42649913:25952256,404226,107478 +h1,13863:6630773,42649913:0,0,0 +g1,13863:6946919,42649913 +g1,13863:7263065,42649913 +g1,13863:7579211,42649913 +g1,13863:7895357,42649913 +g1,13863:8211503,42649913 +g1,13863:8527649,42649913 +g1,13863:8843795,42649913 +g1,13863:10108378,42649913 +g1,13863:10740670,42649913 +k1,13863:10740670,42649913:0 +h1,13863:12005253,42649913:0,0,0 +k1,13863:32583029,42649913:20577776 +g1,13863:32583029,42649913 +) +(1,13864:6630773,43316091:25952256,404226,82312 +h1,13864:6630773,43316091:0,0,0 +g1,13864:6946919,43316091 +g1,13864:7263065,43316091 +g1,13864:7579211,43316091 +g1,13864:7895357,43316091 +g1,13864:8211503,43316091 +g1,13864:8527649,43316091 +g1,13864:8843795,43316091 +g1,13864:9476087,43316091 +g1,13864:10108379,43316091 +g1,13864:12005253,43316091 +k1,13864:12005253,43316091:0 +h1,13864:13585982,43316091:0,0,0 +k1,13864:32583030,43316091:18997048 +g1,13864:32583030,43316091 +) +(1,13865:6630773,43982269:25952256,410518,101187 +h1,13865:6630773,43982269:0,0,0 +g1,13865:6946919,43982269 +g1,13865:7263065,43982269 +g1,13865:7579211,43982269 +g1,13865:7895357,43982269 +g1,13865:8211503,43982269 +g1,13865:8527649,43982269 +g1,13865:8843795,43982269 +g1,13865:9476087,43982269 +g1,13865:10108379,43982269 +g1,13865:14850565,43982269 +k1,13865:14850565,43982269:0 +h1,13865:16747439,43982269:0,0,0 +k1,13865:32583029,43982269:15835590 +g1,13865:32583029,43982269 +) +(1,13866:6630773,44648447:25952256,404226,76021 +h1,13866:6630773,44648447:0,0,0 +g1,13866:6946919,44648447 +g1,13866:7263065,44648447 +g1,13866:7579211,44648447 +g1,13866:7895357,44648447 +g1,13866:8211503,44648447 +g1,13866:8527649,44648447 +g1,13866:8843795,44648447 +g1,13866:10740669,44648447 +g1,13866:11372961,44648447 +h1,13866:16115147,44648447:0,0,0 +k1,13866:32583029,44648447:16467882 +g1,13866:32583029,44648447 +) +] +) +g1,13868:32583029,44724468 +g1,13868:6630773,44724468 +g1,13868:6630773,44724468 +g1,13868:32583029,44724468 +g1,13868:32583029,44724468 +) +h1,13868:6630773,44921076:0,0,0 +] +(1,13879:32583029,45706769:0,0,0 +g1,13879:32583029,45706769 +) +) +] +(1,13879:6630773,47279633:25952256,0,0 +h1,13879:6630773,47279633:25952256,0,0 +) +] +h1,13879:4262630,4025873:0,0,0 +] +!25156 +}267 +Input:2014:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2015:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2016:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2017:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2018:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2019:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2020:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2021:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2022:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2023:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2024:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2025:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2026:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2027:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2028:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2029:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2030:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2031:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2032:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2033:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2034:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2035:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2036:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2037:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2038:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2039:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2040:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2041:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2042:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2043:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2044:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2045:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2046:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2047:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2048:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2049:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2050:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2051:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2052:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2053:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!3692 +{268 +[1,13917:4262630,47279633:28320399,43253760,0 +(1,13917:4262630,4025873:0,0,0 +[1,13917:-473657,4025873:25952256,0,0 +(1,13917:-473657,-710414:25952256,0,0 +h1,13917:-473657,-710414:0,0,0 +(1,13917:-473657,-710414:0,0,0 +(1,13917:-473657,-710414:0,0,0 +g1,13917:-473657,-710414 +(1,13917:-473657,-710414:65781,0,65781 +g1,13917:-407876,-710414 +[1,13917:-407876,-644633:0,0,0 ] ) -k1,13891:-473657,-710414:-65781 +k1,13917:-473657,-710414:-65781 ) ) -k1,13891:25478599,-710414:25952256 -g1,13891:25478599,-710414 +k1,13917:25478599,-710414:25952256 +g1,13917:25478599,-710414 ) ] ) -[1,13891:6630773,47279633:25952256,43253760,0 -[1,13891:6630773,4812305:25952256,786432,0 -(1,13891:6630773,4812305:25952256,513147,134348 -(1,13891:6630773,4812305:25952256,513147,134348 -g1,13891:3078558,4812305 -[1,13891:3078558,4812305:0,0,0 -(1,13891:3078558,2439708:0,1703936,0 -k1,13891:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13891:2537886,2439708:1179648,16384,0 +[1,13917:6630773,47279633:25952256,43253760,0 +[1,13917:6630773,4812305:25952256,786432,0 +(1,13917:6630773,4812305:25952256,505283,11795 +(1,13917:6630773,4812305:25952256,505283,11795 +g1,13917:3078558,4812305 +[1,13917:3078558,4812305:0,0,0 +(1,13917:3078558,2439708:0,1703936,0 +k1,13917:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13917:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13891:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13917:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13891:3078558,4812305:0,0,0 -(1,13891:3078558,2439708:0,1703936,0 -g1,13891:29030814,2439708 -g1,13891:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13891:36151628,1915420:16384,1179648,0 +[1,13917:3078558,4812305:0,0,0 +(1,13917:3078558,2439708:0,1703936,0 +g1,13917:29030814,2439708 +g1,13917:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13917:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13891:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13917:37855564,2439708:1179648,16384,0 ) ) -k1,13891:3078556,2439708:-34777008 +k1,13917:3078556,2439708:-34777008 ) ] -[1,13891:3078558,4812305:0,0,0 -(1,13891:3078558,49800853:0,16384,2228224 -k1,13891:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13891:2537886,49800853:1179648,16384,0 +[1,13917:3078558,4812305:0,0,0 +(1,13917:3078558,49800853:0,16384,2228224 +k1,13917:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13917:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13891:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13917:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13891:3078558,4812305:0,0,0 -(1,13891:3078558,49800853:0,16384,2228224 -g1,13891:29030814,49800853 -g1,13891:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13891:36151628,51504789:16384,1179648,0 +[1,13917:3078558,4812305:0,0,0 +(1,13917:3078558,49800853:0,16384,2228224 +g1,13917:29030814,49800853 +g1,13917:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13917:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13891:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13917:37855564,49800853:1179648,16384,0 ) ) -k1,13891:3078556,49800853:-34777008 +k1,13917:3078556,49800853:-34777008 ) ] -g1,13891:6630773,4812305 -k1,13891:25712890,4812305:17886740 -g1,13891:29057847,4812305 -g1,13891:29873114,4812305 +g1,13917:6630773,4812305 +g1,13917:6630773,4812305 +g1,13917:8724648,4812305 +k1,13917:31387652,4812305:22663004 ) ) ] -[1,13891:6630773,45706769:25952256,40108032,0 -(1,13891:6630773,45706769:25952256,40108032,0 -(1,13891:6630773,45706769:0,0,0 -g1,13891:6630773,45706769 +[1,13917:6630773,45706769:25952256,40108032,0 +(1,13917:6630773,45706769:25952256,40108032,0 +(1,13917:6630773,45706769:0,0,0 +g1,13917:6630773,45706769 ) -[1,13891:6630773,45706769:25952256,40108032,0 -(1,13845:6630773,14661426:25952256,9062689,0 -k1,13845:10523651,14661426:3892878 -h1,13844:10523651,14661426:0,0,0 -(1,13844:10523651,14661426:18166500,9062689,0 -(1,13844:10523651,14661426:18167381,9062712,0 -(1,13844:10523651,14661426:18167381,9062712,0 -(1,13844:10523651,14661426:0,9062712,0 -(1,13844:10523651,14661426:0,14155776,0 -(1,13844:10523651,14661426:28377088,14155776,0 +[1,13917:6630773,45706769:25952256,40108032,0 +(1,13871:6630773,14661426:25952256,9062689,0 +k1,13871:10523651,14661426:3892878 +h1,13870:10523651,14661426:0,0,0 +(1,13870:10523651,14661426:18166500,9062689,0 +(1,13870:10523651,14661426:18167381,9062712,0 +(1,13870:10523651,14661426:18167381,9062712,0 +(1,13870:10523651,14661426:0,9062712,0 +(1,13870:10523651,14661426:0,14155776,0 +(1,13870:10523651,14661426:28377088,14155776,0 ) -k1,13844:10523651,14661426:-28377088 +k1,13870:10523651,14661426:-28377088 ) ) -g1,13844:28691032,14661426 +g1,13870:28691032,14661426 ) ) ) -g1,13845:28690151,14661426 -k1,13845:32583029,14661426:3892878 -) -v1,13853:6630773,16027202:0,393216,0 -(1,13854:6630773,19869725:25952256,4235739,616038 -g1,13854:6630773,19869725 -(1,13854:6630773,19869725:25952256,4235739,616038 -(1,13854:6630773,20485763:25952256,4851777,0 -[1,13854:6630773,20485763:25952256,4851777,0 -(1,13854:6630773,20459549:25952256,4799349,0 -r1,13854:6656987,20459549:26214,4799349,0 -[1,13854:6656987,20459549:25899828,4799349,0 -(1,13854:6656987,19869725:25899828,3619701,0 -[1,13854:7246811,19869725:24720180,3619701,0 -(1,13854:7246811,17337398:24720180,1087374,126483 -k1,13853:8667750,17337398:211236 -k1,13853:10538357,17337398:211235 -k1,13853:11520296,17337398:211236 -k1,13853:13737588,17337398:211235 -k1,13853:15226121,17337398:211236 -(1,13853:15433215,17337398:0,452978,122846 -r1,13854:18253464,17337398:2820249,575824,122846 -k1,13853:15433215,17337398:-2820249 -) -(1,13853:15433215,17337398:2820249,452978,122846 -k1,13853:15433215,17337398:3277 -h1,13853:18250187,17337398:0,411205,112570 -) -k1,13853:18671793,17337398:211235 -k1,13853:20074474,17337398:211236 -k1,13853:21483052,17337398:211235 -k1,13853:22345716,17337398:211236 -k1,13853:23015048,17337398:211235 -k1,13853:23912446,17337398:211236 -k1,13853:25391147,17337398:211235 -k1,13853:26373086,17337398:211236 -k1,13853:26999152,17337398:211223 -k1,13853:30650373,17337398:211236 -k1,13854:31966991,17337398:0 -) -(1,13854:7246811,18178886:24720180,615216,138281 -k1,13853:9651456,18178886:245234 -$1,13853:9651456,18178886 -k1,13853:10469409,18178886:266140 -k1,13853:11303746,18178886:266140 -(1,13853:11727765,18277200:311689,339935,8258 -) -k1,13853:12218734,18178886:179280 -k1,13853:12966212,18178886:179281 -(1,13853:13390231,18277200:311689,334430,0 -) -k1,13853:14383861,18178886:179280 -k1,13853:15131338,18178886:179280 -(1,13853:15555357,18277200:311689,339935,0 -) -(1,13853:16369707,17903605:311689,339935,0 -) -$1,13853:16681396,18178886 -k1,13853:17100299,18178886:245233 -k1,13853:19104519,18178886:245234 -k1,13853:20824967,18178886:245233 -k1,13853:21426061,18178886:245234 -k1,13853:23058036,18178886:245233 -k1,13853:23916032,18178886:245234 -k1,13853:25180350,18178886:245233 -k1,13853:28417303,18178886:245234 -k1,13853:29610188,18178886:245234 -k1,13853:30874506,18178886:245233 -k1,13853:31966991,18178886:0 -) -(1,13854:7246811,19020374:24720180,513147,134348 -k1,13853:8156417,19020374:250314 -k1,13853:12177018,19020374:250315 -k1,13853:13043370,19020374:250314 -k1,13853:14312770,19020374:250315 -(1,13853:14312770,19020374:0,452978,115847 -r1,13854:17133019,19020374:2820249,568825,115847 -k1,13853:14312770,19020374:-2820249 -) -(1,13853:14312770,19020374:2820249,452978,115847 -k1,13853:14312770,19020374:3277 -h1,13853:17129742,19020374:0,411205,112570 -) -k1,13853:17383333,19020374:250314 -k1,13853:19416227,19020374:250315 -k1,13853:20282579,19020374:250314 -k1,13853:20947686,19020374:250264 -k1,13853:21959528,19020374:250314 -k1,13853:24238838,19020374:250315 -(1,13853:24238838,19020374:0,452978,115847 -r1,13854:29169358,19020374:4930520,568825,115847 -k1,13853:24238838,19020374:-4930520 -) -(1,13853:24238838,19020374:4930520,452978,115847 -k1,13853:24238838,19020374:3277 -h1,13853:29166081,19020374:0,411205,112570 -) -k1,13853:29419672,19020374:250314 -k1,13853:30282749,19020374:250315 -k1,13853:31552148,19020374:250314 -k1,13854:31966991,19020374:0 -) -(1,13854:7246811,19861862:24720180,505283,7863 -k1,13854:31966990,19861862:22126264 -g1,13854:31966990,19861862 -) -] -) -] -r1,13854:32583029,20459549:26214,4799349,0 -) -] -) -) -g1,13854:32583029,19869725 -) -h1,13854:6630773,20485763:0,0,0 -(1,13869:6630773,23101311:25952256,555811,12975 -(1,13869:6630773,23101311:2450326,534184,0 -g1,13869:6630773,23101311 -g1,13869:9081099,23101311 -) -g1,13869:13486495,23101311 -k1,13869:32583028,23101311:16910776 -g1,13869:32583028,23101311 -) -(1,13872:6630773,24336015:25952256,513147,134348 -k1,13871:7843517,24336015:259195 -k1,13871:9591035,24336015:259195 -k1,13871:10611757,24336015:259194 -k1,13871:12854727,24336015:259195 -k1,13871:14133007,24336015:259195 -k1,13871:15993902,24336015:259195 -k1,13871:19558077,24336015:259194 -k1,13871:21330498,24336015:259195 -k1,13871:24992322,24336015:259195 -k1,13871:25902945,24336015:259195 -k1,13871:27181224,24336015:259194 -k1,13871:31010820,24336015:259195 -k1,13871:32583029,24336015:0 -) -(1,13872:6630773,25177503:25952256,513147,115847 -k1,13871:10164025,25177503:333784 -(1,13871:10164025,25177503:0,414482,115847 -r1,13871:11577426,25177503:1413401,530329,115847 -k1,13871:10164025,25177503:-1413401 -) -(1,13871:10164025,25177503:1413401,414482,115847 -k1,13871:10164025,25177503:3277 -h1,13871:11574149,25177503:0,411205,112570 -) -k1,13871:12084879,25177503:333783 -(1,13871:12084879,25177503:0,452978,115847 -r1,13871:14201704,25177503:2116825,568825,115847 -k1,13871:12084879,25177503:-2116825 -) -(1,13871:12084879,25177503:2116825,452978,115847 -k1,13871:12084879,25177503:3277 -h1,13871:14198427,25177503:0,411205,112570 -) -k1,13871:14709158,25177503:333784 -(1,13871:14709158,25177503:0,452978,115847 -r1,13871:18936254,25177503:4227096,568825,115847 -k1,13871:14709158,25177503:-4227096 -) -(1,13871:14709158,25177503:4227096,452978,115847 -k1,13871:14709158,25177503:3277 -h1,13871:18932977,25177503:0,411205,112570 -) -k1,13871:19443708,25177503:333784 -(1,13871:19443708,25177503:0,452978,115847 -r1,13871:21560533,25177503:2116825,568825,115847 -k1,13871:19443708,25177503:-2116825 -) -(1,13871:19443708,25177503:2116825,452978,115847 -k1,13871:19443708,25177503:3277 -h1,13871:21557256,25177503:0,411205,112570 -) -k1,13871:22067986,25177503:333783 -(1,13871:22067986,25177503:0,452978,115847 -r1,13871:24184811,25177503:2116825,568825,115847 -k1,13871:22067986,25177503:-2116825 -) -(1,13871:22067986,25177503:2116825,452978,115847 -k1,13871:22067986,25177503:3277 -h1,13871:24181534,25177503:0,411205,112570 -) -k1,13871:24692265,25177503:333784 -(1,13871:24692265,25177503:0,452978,115847 -r1,13871:26809090,25177503:2116825,568825,115847 -k1,13871:24692265,25177503:-2116825 -) -(1,13871:24692265,25177503:2116825,452978,115847 -k1,13871:24692265,25177503:3277 -h1,13871:26805813,25177503:0,411205,112570 -) -k1,13871:27316543,25177503:333783 -(1,13871:27316543,25177503:0,452978,115847 -r1,13871:30136792,25177503:2820249,568825,115847 -k1,13871:27316543,25177503:-2820249 -) -(1,13871:27316543,25177503:2820249,452978,115847 -k1,13871:27316543,25177503:3277 -h1,13871:30133515,25177503:0,411205,112570 -) -k1,13871:30644246,25177503:333784 -(1,13871:30644246,25177503:0,414482,115847 -r1,13871:32409359,25177503:1765113,530329,115847 -k1,13871:30644246,25177503:-1765113 -) -(1,13871:30644246,25177503:1765113,414482,115847 -k1,13871:30644246,25177503:3277 -h1,13871:32406082,25177503:0,411205,112570 -) -k1,13872:32583029,25177503:0 -) -(1,13872:6630773,26018991:25952256,513147,126483 -(1,13871:6630773,26018991:0,452978,122846 -r1,13871:8395886,26018991:1765113,575824,122846 -k1,13871:6630773,26018991:-1765113 -) -(1,13871:6630773,26018991:1765113,452978,122846 -k1,13871:6630773,26018991:3277 -h1,13871:8392609,26018991:0,411205,112570 -) -k1,13871:8786997,26018991:217441 -k1,13871:10195883,26018991:217441 -(1,13871:10195883,26018991:0,452978,115847 -r1,13871:13016132,26018991:2820249,568825,115847 -k1,13871:10195883,26018991:-2820249 -) -(1,13871:10195883,26018991:2820249,452978,115847 -k1,13871:10195883,26018991:3277 -h1,13871:13012855,26018991:0,411205,112570 -) -k1,13871:13407243,26018991:217441 -k1,13871:14821371,26018991:217441 -k1,13871:16719154,26018991:217440 -k1,13871:17603751,26018991:217441 -(1,13871:17603751,26018991:0,414482,115847 -r1,13871:19017152,26018991:1413401,530329,115847 -k1,13871:17603751,26018991:-1413401 -) -(1,13871:17603751,26018991:1413401,414482,115847 -k1,13871:17603751,26018991:3277 -h1,13871:19013875,26018991:0,411205,112570 -) -k1,13871:19234593,26018991:217441 -k1,13871:19983531,26018991:217441 -k1,13871:21714198,26018991:217441 -k1,13871:22879290,26018991:217441 -k1,13871:24349124,26018991:217441 -k1,13871:26410748,26018991:217441 -k1,13871:27311073,26018991:217440 -k1,13871:28547599,26018991:217441 -k1,13871:29866045,26018991:217441 -k1,13871:31350952,26018991:217441 -k1,13871:32583029,26018991:0 -) -(1,13872:6630773,26860479:25952256,513147,134348 -k1,13871:9567503,26860479:182252 -k1,13871:12409206,26860479:182252 -k1,13871:13788145,26860479:182252 -k1,13871:17373026,26860479:182252 -k1,13871:18206705,26860479:182251 -(1,13871:18206705,26860479:0,452978,115847 -r1,13871:20323530,26860479:2116825,568825,115847 -k1,13871:18206705,26860479:-2116825 -) -(1,13871:18206705,26860479:2116825,452978,115847 -k1,13871:18206705,26860479:3277 -h1,13871:20320253,26860479:0,411205,112570 -) -k1,13871:20505782,26860479:182252 -k1,13871:21879479,26860479:182252 -(1,13871:21879479,26860479:0,452978,115847 -r1,13871:26106575,26860479:4227096,568825,115847 -k1,13871:21879479,26860479:-4227096 -) -(1,13871:21879479,26860479:4227096,452978,115847 -k1,13871:21879479,26860479:3277 -h1,13871:26103298,26860479:0,411205,112570 -) -k1,13871:26288827,26860479:182252 -k1,13871:29116112,26860479:182252 -k1,13871:30317449,26860479:182252 -k1,13871:32583029,26860479:0 -) -(1,13872:6630773,27701967:25952256,513147,134348 -k1,13871:9692732,27701967:175098 -k1,13871:10527122,27701967:175098 -k1,13871:12587691,27701967:175098 -k1,13871:13954234,27701967:175098 -k1,13871:16048226,27701967:175098 -k1,13871:17737861,27701967:175098 -k1,13871:19104404,27701967:175098 -k1,13871:20564008,27701967:175098 -k1,13871:22411585,27701967:175098 -k1,13871:24793280,27701967:175098 -k1,13871:26607433,27701967:175098 -k1,13871:27433959,27701967:175098 -(1,13871:27433959,27701967:0,414482,115847 -r1,13871:28847360,27701967:1413401,530329,115847 -k1,13871:27433959,27701967:-1413401 -) -(1,13871:27433959,27701967:1413401,414482,115847 -k1,13871:27433959,27701967:3277 -h1,13871:28844083,27701967:0,411205,112570 -) -k1,13871:29022458,27701967:175098 -k1,13871:32583029,27701967:0 -) -(1,13872:6630773,28543455:25952256,513147,134348 -k1,13871:7858742,28543455:208884 -k1,13871:9755833,28543455:208884 -k1,13871:10724936,28543455:208885 -k1,13871:13199400,28543455:208884 -k1,13871:14427369,28543455:208884 -k1,13871:15820489,28543455:208884 -k1,13871:17873556,28543455:208884 -k1,13871:19074001,28543455:208885 -k1,13871:22435822,28543455:208884 -k1,13871:24212327,28543455:208884 -k1,13871:25440296,28543455:208884 -k1,13871:27329523,28543455:208884 -k1,13871:28205564,28543455:208885 -(1,13871:28205564,28543455:0,452978,115847 -r1,13871:30322389,28543455:2116825,568825,115847 -k1,13871:28205564,28543455:-2116825 -) -(1,13871:28205564,28543455:2116825,452978,115847 -k1,13871:28205564,28543455:3277 -h1,13871:30319112,28543455:0,411205,112570 -) -k1,13871:30531273,28543455:208884 -k1,13871:31812326,28543455:208884 -k1,13871:32583029,28543455:0 -) -(1,13872:6630773,29384943:25952256,513147,134348 -k1,13871:9923855,29384943:220754 -k1,13871:10796036,29384943:220753 -(1,13871:10796036,29384943:0,452978,115847 -r1,13871:12912861,29384943:2116825,568825,115847 -k1,13871:10796036,29384943:-2116825 -) -(1,13871:10796036,29384943:2116825,452978,115847 -k1,13871:10796036,29384943:3277 -h1,13871:12909584,29384943:0,411205,112570 -) -k1,13871:13133615,29384943:220754 -k1,13871:14013660,29384943:220753 -k1,13871:15253499,29384943:220754 -k1,13871:17127726,29384943:220754 -k1,13871:19361745,29384943:220753 -k1,13871:20268661,29384943:220754 -(1,13871:20268661,29384943:0,452978,115847 -r1,13871:22385486,29384943:2116825,568825,115847 -k1,13871:20268661,29384943:-2116825 -) -(1,13871:20268661,29384943:2116825,452978,115847 -k1,13871:20268661,29384943:3277 -h1,13871:22382209,29384943:0,411205,112570 -) -k1,13871:22606240,29384943:220754 -k1,13871:23959455,29384943:220753 -k1,13871:26478557,29384943:220754 -k1,13871:28396037,29384943:220753 -k1,13871:31386342,29384943:220754 -k1,13871:32583029,29384943:0 -) -(1,13872:6630773,30226431:25952256,513147,134348 -k1,13871:8854549,30226431:213131 -k1,13871:9734837,30226431:213132 -(1,13871:9734837,30226431:0,452978,115847 -r1,13871:11851662,30226431:2116825,568825,115847 -k1,13871:9734837,30226431:-2116825 -) -(1,13871:9734837,30226431:2116825,452978,115847 -k1,13871:9734837,30226431:3277 -h1,13871:11848385,30226431:0,411205,112570 -) -k1,13871:12064794,30226431:213132 -k1,13871:15521957,30226431:213131 -k1,13871:17201785,30226431:213132 -k1,13871:18434001,30226431:213131 -k1,13871:20427745,30226431:213131 -k1,13871:21300169,30226431:213132 -k1,13871:23523945,30226431:213131 -k1,13871:24353115,30226431:213132 -k1,13871:25585332,30226431:213132 -k1,13871:27187826,30226431:213131 -k1,13871:30159367,30226431:213131 -k1,13871:31563944,30226431:213132 -k1,13871:32583029,30226431:0 -) -(1,13872:6630773,31067919:25952256,513147,134348 -k1,13871:9341050,31067919:185830 -k1,13871:10874300,31067919:185830 -k1,13871:11746292,31067919:185830 -k1,13871:15022145,31067919:185830 -k1,13871:18480188,31067919:185830 -k1,13871:20931598,31067919:185830 -k1,13871:22136513,31067919:185830 -k1,13871:26849570,31067919:185830 -(1,13871:27056664,31067919:0,452978,115847 -r1,13871:28118353,31067919:1061689,568825,115847 -k1,13871:27056664,31067919:-1061689 -) -(1,13871:27056664,31067919:1061689,452978,115847 -k1,13871:27056664,31067919:3277 -h1,13871:28115076,31067919:0,411205,112570 -) -k1,13871:28511277,31067919:185830 -k1,13871:32583029,31067919:0 -) -(1,13872:6630773,31909407:25952256,505283,126483 -k1,13871:7781367,31909407:159034 -k1,13871:10659489,31909407:159033 -k1,13871:11580051,31909407:159034 -(1,13871:11580051,31909407:0,414482,115847 -r1,13871:12290029,31909407:709978,530329,115847 -k1,13871:11580051,31909407:-709978 -) -(1,13871:11580051,31909407:709978,414482,115847 -k1,13871:11580051,31909407:3277 -h1,13871:12286752,31909407:0,411205,112570 -) -k1,13871:12449062,31909407:159033 -k1,13871:13680265,31909407:159034 -k1,13871:14297395,31909407:159033 -k1,13871:14987926,31909407:159034 -k1,13871:17776919,31909407:159033 -k1,13871:18587381,31909407:159034 -k1,13871:21073597,31909407:159033 -k1,13871:23928782,31909407:159034 -k1,13871:25784542,31909407:159033 -k1,13871:30015328,31909407:159034 -k1,13871:32583029,31909407:0 -) -(1,13872:6630773,32750895:25952256,513147,134348 -k1,13871:7874271,32750895:224413 -k1,13871:9588317,32750895:224413 -k1,13871:10472022,32750895:224413 -k1,13871:11715520,32750895:224413 -k1,13871:14464380,32750895:224413 -k1,13871:16209884,32750895:224413 -k1,13871:17630984,32750895:224413 -k1,13871:20927725,32750895:224413 -k1,13871:21803566,32750895:224413 -(1,13871:21803566,32750895:0,452978,115847 -r1,13871:23920391,32750895:2116825,568825,115847 -k1,13871:21803566,32750895:-2116825 -) -(1,13871:21803566,32750895:2116825,452978,115847 -k1,13871:21803566,32750895:3277 -h1,13871:23917114,32750895:0,411205,112570 -) -k1,13871:24144804,32750895:224413 -k1,13871:27943551,32750895:224413 -k1,13871:29187049,32750895:224413 -k1,13871:30680239,32750895:224413 -k1,13871:31563944,32750895:224413 -k1,13871:32583029,32750895:0 -) -(1,13872:6630773,33592383:25952256,505283,134348 -k1,13871:9410423,33592383:194910 -k1,13871:10288218,33592383:194910 -k1,13871:13091461,33592383:194910 -k1,13871:15251796,33592383:194910 -k1,13871:16098134,33592383:194910 -k1,13871:17312129,33592383:194910 -k1,13871:18854460,33592383:194911 -k1,13871:22069924,33592383:194910 -k1,13871:23026362,33592383:194910 -(1,13871:23026362,33592383:0,452978,115847 -r1,13871:24439763,33592383:1413401,568825,115847 -k1,13871:23026362,33592383:-1413401 -) -(1,13871:23026362,33592383:1413401,452978,115847 -k1,13871:23026362,33592383:3277 -h1,13871:24436486,33592383:0,411205,112570 -) -k1,13871:24634673,33592383:194910 -k1,13871:26527621,33592383:194910 -k1,13871:28904225,33592383:194910 -k1,13871:30118220,33592383:194910 -k1,13871:32583029,33592383:0 -) -(1,13872:6630773,34433871:25952256,513147,134348 -k1,13871:9422715,34433871:267495 -k1,13871:11211300,34433871:267494 -k1,13871:12675481,34433871:267494 -k1,13871:14623319,34433871:267495 -k1,13871:17096101,34433871:267495 -k1,13871:18015023,34433871:267494 -(1,13871:18015023,34433871:0,452978,115847 -r1,13871:20835272,34433871:2820249,568825,115847 -k1,13871:18015023,34433871:-2820249 -) -(1,13871:18015023,34433871:2820249,452978,115847 -k1,13871:18015023,34433871:3277 -h1,13871:20831995,34433871:0,411205,112570 -) -k1,13871:21102766,34433871:267494 -k1,13871:21901758,34433871:267495 -k1,13871:23682479,34433871:267495 -k1,13871:24636135,34433871:267494 -k1,13871:25259490,34433871:267495 -k1,13871:29464387,34433871:267494 -k1,13871:30679532,34433871:267494 -(1,13871:30679532,34433871:0,414482,115847 -r1,13871:31389510,34433871:709978,530329,115847 -k1,13871:30679532,34433871:-709978 -) -(1,13871:30679532,34433871:709978,414482,115847 -k1,13871:30679532,34433871:3277 -h1,13871:31386233,34433871:0,411205,112570 -) -k1,13871:31657005,34433871:267495 -k1,13872:32583029,34433871:0 -) -(1,13872:6630773,35275359:25952256,513147,115847 -k1,13871:8191985,35275359:173159 -k1,13871:14693955,35275359:173158 -k1,13871:16844335,35275359:173159 -k1,13871:17965144,35275359:173158 -(1,13871:17965144,35275359:0,452978,115847 -r1,13871:19730257,35275359:1765113,568825,115847 -k1,13871:17965144,35275359:-1765113 -) -(1,13871:17965144,35275359:1765113,452978,115847 -k1,13871:17965144,35275359:3277 -h1,13871:19726980,35275359:0,411205,112570 -) -k1,13871:19903416,35275359:173159 -k1,13871:21268019,35275359:173158 -(1,13871:21268019,35275359:0,459977,115847 -r1,13871:22681420,35275359:1413401,575824,115847 -k1,13871:21268019,35275359:-1413401 -) -(1,13871:21268019,35275359:1413401,459977,115847 -k1,13871:21268019,35275359:3277 -h1,13871:22678143,35275359:0,411205,112570 -) -k1,13871:22854579,35275359:173159 -k1,13871:26375971,35275359:173158 -k1,13871:27745817,35275359:173159 -k1,13871:32583029,35275359:0 -) -(1,13872:6630773,36116847:25952256,513147,134348 -k1,13871:8812640,36116847:222341 -k1,13871:11240267,36116847:222340 -k1,13871:12148770,36116847:222341 -k1,13871:13141814,36116847:222341 -k1,13871:16436483,36116847:222341 -k1,13871:17310251,36116847:222340 -(1,13871:17310251,36116847:0,414482,115847 -r1,13871:19075364,36116847:1765113,530329,115847 -k1,13871:17310251,36116847:-1765113 -) -(1,13871:17310251,36116847:1765113,414482,115847 -k1,13871:17310251,36116847:3277 -h1,13871:19072087,36116847:0,411205,112570 -) -k1,13871:19297705,36116847:222341 -k1,13871:23094380,36116847:222341 -k1,13871:24335805,36116847:222340 -k1,13871:29395358,36116847:222341 -k1,13871:32583029,36116847:0 -) -(1,13872:6630773,36958335:25952256,513147,134348 -k1,13871:11656335,36958335:188350 -k1,13871:13954289,36958335:188350 -k1,13871:15161725,36958335:188351 -k1,13871:18620977,36958335:188350 -k1,13871:19881496,36958335:188350 -k1,13871:22184693,36958335:188350 -k1,13871:23564488,36958335:188350 -k1,13871:24937075,36958335:188351 -k1,13871:26969608,36958335:188350 -k1,13871:29385527,36958335:188350 -k1,13871:32583029,36958335:0 -) -(1,13872:6630773,37799823:25952256,513147,134348 -k1,13871:7429729,37799823:182918 -k1,13871:8631731,37799823:182917 -k1,13871:11249967,37799823:182918 -k1,13871:12822247,37799823:182917 -k1,13871:14796919,37799823:182918 -k1,13871:16176524,37799823:182918 -k1,13871:19431769,37799823:182917 -k1,13871:20266115,37799823:182918 -(1,13871:20266115,37799823:0,452978,122846 -r1,13871:22031228,37799823:1765113,575824,122846 -k1,13871:20266115,37799823:-1765113 -) -(1,13871:20266115,37799823:1765113,452978,122846 -k1,13871:20266115,37799823:3277 -h1,13871:22027951,37799823:0,411205,112570 -) -k1,13871:22214145,37799823:182917 -k1,13871:25971397,37799823:182918 -k1,13871:27173400,37799823:182918 -k1,13871:28742403,37799823:182917 -k1,13871:29584613,37799823:182918 -k1,13871:30868535,37799823:182917 -k1,13871:31734338,37799823:182918 -k1,13872:32583029,37799823:0 -) -(1,13872:6630773,38641311:25952256,513147,134348 -k1,13871:8832228,38641311:152144 -k1,13871:10003457,38641311:152144 -k1,13871:12421181,38641311:152144 -k1,13871:13848001,38641311:152145 -k1,13871:17444717,38641311:152144 -k1,13871:18406231,38641311:152144 -k1,13871:19577460,38641311:152144 -k1,13871:21301813,38641311:152144 -k1,13871:22069995,38641311:152144 -k1,13871:24986449,38641311:152145 -k1,13871:26204864,38641311:152144 -k1,13871:27123124,38641311:152144 -k1,13871:28971995,38641311:152144 -k1,13871:32583029,38641311:0 -) -(1,13872:6630773,39482799:25952256,505283,7863 -g1,13871:7821562,39482799 -k1,13872:32583030,39482799:21803828 -g1,13872:32583030,39482799 -) -(1,13876:6630773,40324287:25952256,513147,134348 -h1,13875:6630773,40324287:983040,0,0 -g1,13875:8766591,40324287 -g1,13875:11698016,40324287 -g1,13875:13180440,40324287 -g1,13875:14740196,40324287 -k1,13876:32583029,40324287:16279799 -g1,13876:32583029,40324287 -) -v1,13878:6630773,41514753:0,393216,0 -(1,13886:6630773,44475687:25952256,3354150,196608 -g1,13886:6630773,44475687 -g1,13886:6630773,44475687 -g1,13886:6434165,44475687 -(1,13886:6434165,44475687:0,3354150,196608 -r1,13886:32779637,44475687:26345472,3550758,196608 -k1,13886:6434165,44475687:-26345472 -) -(1,13886:6434165,44475687:26345472,3354150,196608 -[1,13886:6630773,44475687:25952256,3157542,0 -(1,13880:6630773,41728663:25952256,410518,6290 -(1,13879:6630773,41728663:0,0,0 -g1,13879:6630773,41728663 -g1,13879:6630773,41728663 -g1,13879:6303093,41728663 -(1,13879:6303093,41728663:0,0,0 -) -g1,13879:6630773,41728663 -) -g1,13880:10108376,41728663 -k1,13880:10108376,41728663:0 -h1,13880:10740668,41728663:0,0,0 -k1,13880:32583028,41728663:21842360 -g1,13880:32583028,41728663 -) -(1,13881:6630773,42394841:25952256,410518,101187 -h1,13881:6630773,42394841:0,0,0 -g1,13881:6946919,42394841 -g1,13881:7263065,42394841 -g1,13881:11372960,42394841 -g1,13881:12005252,42394841 -g1,13881:15799001,42394841 -g1,13881:17379730,42394841 -g1,13881:18012022,42394841 -g1,13881:19276605,42394841 -g1,13881:20225042,42394841 -g1,13881:20857334,42394841 -k1,13881:20857334,42394841:0 -h1,13881:21805772,42394841:0,0,0 -k1,13881:32583029,42394841:10777257 -g1,13881:32583029,42394841 -) -(1,13882:6630773,43061019:25952256,404226,82312 -h1,13882:6630773,43061019:0,0,0 -g1,13882:6946919,43061019 -g1,13882:7263065,43061019 -g1,13882:7579211,43061019 -g1,13882:7895357,43061019 -g1,13882:8211503,43061019 -g1,13882:8527649,43061019 -g1,13882:8843795,43061019 -g1,13882:9159941,43061019 -g1,13882:9476087,43061019 -g1,13882:9792233,43061019 -g1,13882:10108379,43061019 -g1,13882:10424525,43061019 -g1,13882:10740671,43061019 -g1,13882:11056817,43061019 -g1,13882:11372963,43061019 -g1,13882:11689109,43061019 -g1,13882:12005255,43061019 -g1,13882:12321401,43061019 -g1,13882:12637547,43061019 -g1,13882:15799004,43061019 -g1,13882:17379733,43061019 -g1,13882:18012025,43061019 -g1,13882:19276608,43061019 -g1,13882:20225045,43061019 -g1,13882:20857337,43061019 -k1,13882:20857337,43061019:0 -h1,13882:22438065,43061019:0,0,0 -k1,13882:32583029,43061019:10144964 -g1,13882:32583029,43061019 -) -(1,13883:6630773,43727197:25952256,410518,107478 -h1,13883:6630773,43727197:0,0,0 -g1,13883:6946919,43727197 -g1,13883:7263065,43727197 -g1,13883:7579211,43727197 -g1,13883:7895357,43727197 -g1,13883:8211503,43727197 -g1,13883:8527649,43727197 -g1,13883:8843795,43727197 -g1,13883:9159941,43727197 -g1,13883:9476087,43727197 -g1,13883:9792233,43727197 -g1,13883:10108379,43727197 -g1,13883:10424525,43727197 -g1,13883:10740671,43727197 -g1,13883:12637545,43727197 -g1,13883:13269837,43727197 -g1,13883:18960461,43727197 -g1,13883:20541190,43727197 -g1,13883:23386502,43727197 -k1,13883:23386502,43727197:0 -h1,13883:25283376,43727197:0,0,0 -k1,13883:32583029,43727197:7299653 -g1,13883:32583029,43727197 -) -(1,13884:6630773,44393375:25952256,404226,82312 -h1,13884:6630773,44393375:0,0,0 -g1,13884:6946919,44393375 -g1,13884:7263065,44393375 -g1,13884:7579211,44393375 -g1,13884:7895357,44393375 -g1,13884:8211503,44393375 -g1,13884:8527649,44393375 -g1,13884:8843795,44393375 -g1,13884:9159941,44393375 -g1,13884:9476087,44393375 -g1,13884:9792233,44393375 -g1,13884:10108379,44393375 -g1,13884:10424525,44393375 -g1,13884:10740671,44393375 -g1,13884:11372963,44393375 -g1,13884:12005255,44393375 -g1,13884:15166712,44393375 -g1,13884:16747441,44393375 -g1,13884:17379733,44393375 -g1,13884:18644316,44393375 -g1,13884:19592753,44393375 -g1,13884:20225045,44393375 -h1,13884:21173482,44393375:0,0,0 -k1,13884:32583029,44393375:11409547 -g1,13884:32583029,44393375 -) -] -) -g1,13886:32583029,44475687 -g1,13886:6630773,44475687 -g1,13886:6630773,44475687 -g1,13886:32583029,44475687 -g1,13886:32583029,44475687 -) -h1,13886:6630773,44672295:0,0,0 -] -(1,13891:32583029,45706769:0,0,0 -g1,13891:32583029,45706769 -) -) -] -(1,13891:6630773,47279633:25952256,0,0 -h1,13891:6630773,47279633:25952256,0,0 -) -] -h1,13891:4262630,4025873:0,0,0 -] -!27935 -}267 -Input:2057:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2058:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2059:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2060:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2061:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2062:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2063:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2064:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2065:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2066:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2067:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2068:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2069:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2070:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1216 -{268 -[1,13944:4262630,47279633:28320399,43253760,0 -(1,13944:4262630,4025873:0,0,0 -[1,13944:-473657,4025873:25952256,0,0 -(1,13944:-473657,-710414:25952256,0,0 -h1,13944:-473657,-710414:0,0,0 -(1,13944:-473657,-710414:0,0,0 -(1,13944:-473657,-710414:0,0,0 -g1,13944:-473657,-710414 -(1,13944:-473657,-710414:65781,0,65781 -g1,13944:-407876,-710414 -[1,13944:-407876,-644633:0,0,0 +g1,13871:28690151,14661426 +k1,13871:32583029,14661426:3892878 +) +v1,13879:6630773,16027202:0,393216,0 +(1,13880:6630773,19869725:25952256,4235739,616038 +g1,13880:6630773,19869725 +(1,13880:6630773,19869725:25952256,4235739,616038 +(1,13880:6630773,20485763:25952256,4851777,0 +[1,13880:6630773,20485763:25952256,4851777,0 +(1,13880:6630773,20459549:25952256,4799349,0 +r1,13880:6656987,20459549:26214,4799349,0 +[1,13880:6656987,20459549:25899828,4799349,0 +(1,13880:6656987,19869725:25899828,3619701,0 +[1,13880:7246811,19869725:24720180,3619701,0 +(1,13880:7246811,17337398:24720180,1087374,126483 +k1,13879:8667750,17337398:211236 +k1,13879:10538357,17337398:211235 +k1,13879:11520296,17337398:211236 +k1,13879:13737588,17337398:211235 +k1,13879:15226121,17337398:211236 +(1,13879:15433215,17337398:0,452978,122846 +r1,13880:18253464,17337398:2820249,575824,122846 +k1,13879:15433215,17337398:-2820249 +) +(1,13879:15433215,17337398:2820249,452978,122846 +k1,13879:15433215,17337398:3277 +h1,13879:18250187,17337398:0,411205,112570 +) +k1,13879:18671793,17337398:211235 +k1,13879:20074474,17337398:211236 +k1,13879:21483052,17337398:211235 +k1,13879:22345716,17337398:211236 +k1,13879:23015048,17337398:211235 +k1,13879:23912446,17337398:211236 +k1,13879:25391147,17337398:211235 +k1,13879:26373086,17337398:211236 +k1,13879:26999152,17337398:211223 +k1,13879:30650373,17337398:211236 +k1,13880:31966991,17337398:0 +) +(1,13880:7246811,18178886:24720180,615216,138281 +k1,13879:9651456,18178886:245234 +$1,13879:9651456,18178886 +k1,13879:10469409,18178886:266140 +k1,13879:11303746,18178886:266140 +(1,13879:11727765,18277200:311689,339935,8258 +) +k1,13879:12218734,18178886:179280 +k1,13879:12966212,18178886:179281 +(1,13879:13390231,18277200:311689,334430,0 +) +k1,13879:14383861,18178886:179280 +k1,13879:15131338,18178886:179280 +(1,13879:15555357,18277200:311689,339935,0 +) +(1,13879:16369707,17903605:311689,339935,0 +) +$1,13879:16681396,18178886 +k1,13879:17100299,18178886:245233 +k1,13879:19104519,18178886:245234 +k1,13879:20824967,18178886:245233 +k1,13879:21426061,18178886:245234 +k1,13879:23058036,18178886:245233 +k1,13879:23916032,18178886:245234 +k1,13879:25180350,18178886:245233 +k1,13879:28417303,18178886:245234 +k1,13879:29610188,18178886:245234 +k1,13879:30874506,18178886:245233 +k1,13879:31966991,18178886:0 +) +(1,13880:7246811,19020374:24720180,513147,134348 +k1,13879:8156417,19020374:250314 +k1,13879:12177018,19020374:250315 +k1,13879:13043370,19020374:250314 +k1,13879:14312770,19020374:250315 +(1,13879:14312770,19020374:0,452978,115847 +r1,13880:17133019,19020374:2820249,568825,115847 +k1,13879:14312770,19020374:-2820249 +) +(1,13879:14312770,19020374:2820249,452978,115847 +k1,13879:14312770,19020374:3277 +h1,13879:17129742,19020374:0,411205,112570 +) +k1,13879:17383333,19020374:250314 +k1,13879:19416227,19020374:250315 +k1,13879:20282579,19020374:250314 +k1,13879:20947686,19020374:250264 +k1,13879:21959528,19020374:250314 +k1,13879:24238838,19020374:250315 +(1,13879:24238838,19020374:0,452978,115847 +r1,13880:29169358,19020374:4930520,568825,115847 +k1,13879:24238838,19020374:-4930520 +) +(1,13879:24238838,19020374:4930520,452978,115847 +k1,13879:24238838,19020374:3277 +h1,13879:29166081,19020374:0,411205,112570 +) +k1,13879:29419672,19020374:250314 +k1,13879:30282749,19020374:250315 +k1,13879:31552148,19020374:250314 +k1,13880:31966991,19020374:0 +) +(1,13880:7246811,19861862:24720180,505283,7863 +k1,13880:31966990,19861862:22126264 +g1,13880:31966990,19861862 +) +] +) +] +r1,13880:32583029,20459549:26214,4799349,0 +) +] +) +) +g1,13880:32583029,19869725 +) +h1,13880:6630773,20485763:0,0,0 +(1,13895:6630773,23101311:25952256,555811,12975 +(1,13895:6630773,23101311:2450326,534184,0 +g1,13895:6630773,23101311 +g1,13895:9081099,23101311 +) +g1,13895:13486495,23101311 +k1,13895:32583028,23101311:16910776 +g1,13895:32583028,23101311 +) +(1,13898:6630773,24336015:25952256,513147,134348 +k1,13897:7843517,24336015:259195 +k1,13897:9591035,24336015:259195 +k1,13897:10611757,24336015:259194 +k1,13897:12854727,24336015:259195 +k1,13897:14133007,24336015:259195 +k1,13897:15993902,24336015:259195 +k1,13897:19558077,24336015:259194 +k1,13897:21330498,24336015:259195 +k1,13897:24992322,24336015:259195 +k1,13897:25902945,24336015:259195 +k1,13897:27181224,24336015:259194 +k1,13897:31010820,24336015:259195 +k1,13897:32583029,24336015:0 +) +(1,13898:6630773,25177503:25952256,513147,115847 +k1,13897:10164025,25177503:333784 +(1,13897:10164025,25177503:0,414482,115847 +r1,13897:11577426,25177503:1413401,530329,115847 +k1,13897:10164025,25177503:-1413401 +) +(1,13897:10164025,25177503:1413401,414482,115847 +k1,13897:10164025,25177503:3277 +h1,13897:11574149,25177503:0,411205,112570 +) +k1,13897:12084879,25177503:333783 +(1,13897:12084879,25177503:0,452978,115847 +r1,13897:14201704,25177503:2116825,568825,115847 +k1,13897:12084879,25177503:-2116825 +) +(1,13897:12084879,25177503:2116825,452978,115847 +k1,13897:12084879,25177503:3277 +h1,13897:14198427,25177503:0,411205,112570 +) +k1,13897:14709158,25177503:333784 +(1,13897:14709158,25177503:0,452978,115847 +r1,13897:18936254,25177503:4227096,568825,115847 +k1,13897:14709158,25177503:-4227096 +) +(1,13897:14709158,25177503:4227096,452978,115847 +k1,13897:14709158,25177503:3277 +h1,13897:18932977,25177503:0,411205,112570 +) +k1,13897:19443708,25177503:333784 +(1,13897:19443708,25177503:0,452978,115847 +r1,13897:21560533,25177503:2116825,568825,115847 +k1,13897:19443708,25177503:-2116825 +) +(1,13897:19443708,25177503:2116825,452978,115847 +k1,13897:19443708,25177503:3277 +h1,13897:21557256,25177503:0,411205,112570 +) +k1,13897:22067986,25177503:333783 +(1,13897:22067986,25177503:0,452978,115847 +r1,13897:24184811,25177503:2116825,568825,115847 +k1,13897:22067986,25177503:-2116825 +) +(1,13897:22067986,25177503:2116825,452978,115847 +k1,13897:22067986,25177503:3277 +h1,13897:24181534,25177503:0,411205,112570 +) +k1,13897:24692265,25177503:333784 +(1,13897:24692265,25177503:0,452978,115847 +r1,13897:26809090,25177503:2116825,568825,115847 +k1,13897:24692265,25177503:-2116825 +) +(1,13897:24692265,25177503:2116825,452978,115847 +k1,13897:24692265,25177503:3277 +h1,13897:26805813,25177503:0,411205,112570 +) +k1,13897:27316543,25177503:333783 +(1,13897:27316543,25177503:0,452978,115847 +r1,13897:30136792,25177503:2820249,568825,115847 +k1,13897:27316543,25177503:-2820249 +) +(1,13897:27316543,25177503:2820249,452978,115847 +k1,13897:27316543,25177503:3277 +h1,13897:30133515,25177503:0,411205,112570 +) +k1,13897:30644246,25177503:333784 +(1,13897:30644246,25177503:0,414482,115847 +r1,13897:32409359,25177503:1765113,530329,115847 +k1,13897:30644246,25177503:-1765113 +) +(1,13897:30644246,25177503:1765113,414482,115847 +k1,13897:30644246,25177503:3277 +h1,13897:32406082,25177503:0,411205,112570 +) +k1,13898:32583029,25177503:0 +) +(1,13898:6630773,26018991:25952256,513147,126483 +(1,13897:6630773,26018991:0,452978,122846 +r1,13897:8395886,26018991:1765113,575824,122846 +k1,13897:6630773,26018991:-1765113 +) +(1,13897:6630773,26018991:1765113,452978,122846 +k1,13897:6630773,26018991:3277 +h1,13897:8392609,26018991:0,411205,112570 +) +k1,13897:8786997,26018991:217441 +k1,13897:10195883,26018991:217441 +(1,13897:10195883,26018991:0,452978,115847 +r1,13897:13016132,26018991:2820249,568825,115847 +k1,13897:10195883,26018991:-2820249 +) +(1,13897:10195883,26018991:2820249,452978,115847 +k1,13897:10195883,26018991:3277 +h1,13897:13012855,26018991:0,411205,112570 +) +k1,13897:13407243,26018991:217441 +k1,13897:14821371,26018991:217441 +k1,13897:16719154,26018991:217440 +k1,13897:17603751,26018991:217441 +(1,13897:17603751,26018991:0,414482,115847 +r1,13897:19017152,26018991:1413401,530329,115847 +k1,13897:17603751,26018991:-1413401 +) +(1,13897:17603751,26018991:1413401,414482,115847 +k1,13897:17603751,26018991:3277 +h1,13897:19013875,26018991:0,411205,112570 +) +k1,13897:19234593,26018991:217441 +k1,13897:19983531,26018991:217441 +k1,13897:21714198,26018991:217441 +k1,13897:22879290,26018991:217441 +k1,13897:24349124,26018991:217441 +k1,13897:26410748,26018991:217441 +k1,13897:27311073,26018991:217440 +k1,13897:28547599,26018991:217441 +k1,13897:29866045,26018991:217441 +k1,13897:31350952,26018991:217441 +k1,13897:32583029,26018991:0 +) +(1,13898:6630773,26860479:25952256,513147,134348 +k1,13897:9567503,26860479:182252 +k1,13897:12409206,26860479:182252 +k1,13897:13788145,26860479:182252 +k1,13897:17373026,26860479:182252 +k1,13897:18206705,26860479:182251 +(1,13897:18206705,26860479:0,452978,115847 +r1,13897:20323530,26860479:2116825,568825,115847 +k1,13897:18206705,26860479:-2116825 +) +(1,13897:18206705,26860479:2116825,452978,115847 +k1,13897:18206705,26860479:3277 +h1,13897:20320253,26860479:0,411205,112570 +) +k1,13897:20505782,26860479:182252 +k1,13897:21879479,26860479:182252 +(1,13897:21879479,26860479:0,452978,115847 +r1,13897:26106575,26860479:4227096,568825,115847 +k1,13897:21879479,26860479:-4227096 +) +(1,13897:21879479,26860479:4227096,452978,115847 +k1,13897:21879479,26860479:3277 +h1,13897:26103298,26860479:0,411205,112570 +) +k1,13897:26288827,26860479:182252 +k1,13897:29116112,26860479:182252 +k1,13897:30317449,26860479:182252 +k1,13897:32583029,26860479:0 +) +(1,13898:6630773,27701967:25952256,513147,134348 +k1,13897:9692732,27701967:175098 +k1,13897:10527122,27701967:175098 +k1,13897:12587691,27701967:175098 +k1,13897:13954234,27701967:175098 +k1,13897:16048226,27701967:175098 +k1,13897:17737861,27701967:175098 +k1,13897:19104404,27701967:175098 +k1,13897:20564008,27701967:175098 +k1,13897:22411585,27701967:175098 +k1,13897:24793280,27701967:175098 +k1,13897:26607433,27701967:175098 +k1,13897:27433959,27701967:175098 +(1,13897:27433959,27701967:0,414482,115847 +r1,13897:28847360,27701967:1413401,530329,115847 +k1,13897:27433959,27701967:-1413401 +) +(1,13897:27433959,27701967:1413401,414482,115847 +k1,13897:27433959,27701967:3277 +h1,13897:28844083,27701967:0,411205,112570 +) +k1,13897:29022458,27701967:175098 +k1,13897:32583029,27701967:0 +) +(1,13898:6630773,28543455:25952256,513147,134348 +k1,13897:7858742,28543455:208884 +k1,13897:9755833,28543455:208884 +k1,13897:10724936,28543455:208885 +k1,13897:13199400,28543455:208884 +k1,13897:14427369,28543455:208884 +k1,13897:15820489,28543455:208884 +k1,13897:17873556,28543455:208884 +k1,13897:19074001,28543455:208885 +k1,13897:22435822,28543455:208884 +k1,13897:24212327,28543455:208884 +k1,13897:25440296,28543455:208884 +k1,13897:27329523,28543455:208884 +k1,13897:28205564,28543455:208885 +(1,13897:28205564,28543455:0,452978,115847 +r1,13897:30322389,28543455:2116825,568825,115847 +k1,13897:28205564,28543455:-2116825 +) +(1,13897:28205564,28543455:2116825,452978,115847 +k1,13897:28205564,28543455:3277 +h1,13897:30319112,28543455:0,411205,112570 +) +k1,13897:30531273,28543455:208884 +k1,13897:31812326,28543455:208884 +k1,13897:32583029,28543455:0 +) +(1,13898:6630773,29384943:25952256,513147,134348 +k1,13897:9923855,29384943:220754 +k1,13897:10796036,29384943:220753 +(1,13897:10796036,29384943:0,452978,115847 +r1,13897:12912861,29384943:2116825,568825,115847 +k1,13897:10796036,29384943:-2116825 +) +(1,13897:10796036,29384943:2116825,452978,115847 +k1,13897:10796036,29384943:3277 +h1,13897:12909584,29384943:0,411205,112570 +) +k1,13897:13133615,29384943:220754 +k1,13897:14013660,29384943:220753 +k1,13897:15253499,29384943:220754 +k1,13897:17127726,29384943:220754 +k1,13897:19361745,29384943:220753 +k1,13897:20268661,29384943:220754 +(1,13897:20268661,29384943:0,452978,115847 +r1,13897:22385486,29384943:2116825,568825,115847 +k1,13897:20268661,29384943:-2116825 +) +(1,13897:20268661,29384943:2116825,452978,115847 +k1,13897:20268661,29384943:3277 +h1,13897:22382209,29384943:0,411205,112570 +) +k1,13897:22606240,29384943:220754 +k1,13897:23959455,29384943:220753 +k1,13897:26478557,29384943:220754 +k1,13897:28396037,29384943:220753 +k1,13897:31386342,29384943:220754 +k1,13897:32583029,29384943:0 +) +(1,13898:6630773,30226431:25952256,513147,134348 +k1,13897:8854549,30226431:213131 +k1,13897:9734837,30226431:213132 +(1,13897:9734837,30226431:0,452978,115847 +r1,13897:11851662,30226431:2116825,568825,115847 +k1,13897:9734837,30226431:-2116825 +) +(1,13897:9734837,30226431:2116825,452978,115847 +k1,13897:9734837,30226431:3277 +h1,13897:11848385,30226431:0,411205,112570 +) +k1,13897:12064794,30226431:213132 +k1,13897:15521957,30226431:213131 +k1,13897:17201785,30226431:213132 +k1,13897:18434001,30226431:213131 +k1,13897:20427745,30226431:213131 +k1,13897:21300169,30226431:213132 +k1,13897:23523945,30226431:213131 +k1,13897:24353115,30226431:213132 +k1,13897:25585332,30226431:213132 +k1,13897:27187826,30226431:213131 +k1,13897:30159367,30226431:213131 +k1,13897:31563944,30226431:213132 +k1,13897:32583029,30226431:0 +) +(1,13898:6630773,31067919:25952256,513147,134348 +k1,13897:9341050,31067919:185830 +k1,13897:10874300,31067919:185830 +k1,13897:11746292,31067919:185830 +k1,13897:15022145,31067919:185830 +k1,13897:18480188,31067919:185830 +k1,13897:20931598,31067919:185830 +k1,13897:22136513,31067919:185830 +k1,13897:26849570,31067919:185830 +(1,13897:27056664,31067919:0,452978,115847 +r1,13897:28118353,31067919:1061689,568825,115847 +k1,13897:27056664,31067919:-1061689 +) +(1,13897:27056664,31067919:1061689,452978,115847 +k1,13897:27056664,31067919:3277 +h1,13897:28115076,31067919:0,411205,112570 +) +k1,13897:28511277,31067919:185830 +k1,13897:32583029,31067919:0 +) +(1,13898:6630773,31909407:25952256,505283,126483 +k1,13897:7781367,31909407:159034 +k1,13897:10659489,31909407:159033 +k1,13897:11580051,31909407:159034 +(1,13897:11580051,31909407:0,414482,115847 +r1,13897:12290029,31909407:709978,530329,115847 +k1,13897:11580051,31909407:-709978 +) +(1,13897:11580051,31909407:709978,414482,115847 +k1,13897:11580051,31909407:3277 +h1,13897:12286752,31909407:0,411205,112570 +) +k1,13897:12449062,31909407:159033 +k1,13897:13680265,31909407:159034 +k1,13897:14297395,31909407:159033 +k1,13897:14987926,31909407:159034 +k1,13897:17776919,31909407:159033 +k1,13897:18587381,31909407:159034 +k1,13897:21073597,31909407:159033 +k1,13897:23928782,31909407:159034 +k1,13897:25784542,31909407:159033 +k1,13897:30015328,31909407:159034 +k1,13897:32583029,31909407:0 +) +(1,13898:6630773,32750895:25952256,513147,134348 +k1,13897:7874271,32750895:224413 +k1,13897:9588317,32750895:224413 +k1,13897:10472022,32750895:224413 +k1,13897:11715520,32750895:224413 +k1,13897:14464380,32750895:224413 +k1,13897:16209884,32750895:224413 +k1,13897:17630984,32750895:224413 +k1,13897:20927725,32750895:224413 +k1,13897:21803566,32750895:224413 +(1,13897:21803566,32750895:0,452978,115847 +r1,13897:23920391,32750895:2116825,568825,115847 +k1,13897:21803566,32750895:-2116825 +) +(1,13897:21803566,32750895:2116825,452978,115847 +k1,13897:21803566,32750895:3277 +h1,13897:23917114,32750895:0,411205,112570 +) +k1,13897:24144804,32750895:224413 +k1,13897:27943551,32750895:224413 +k1,13897:29187049,32750895:224413 +k1,13897:30680239,32750895:224413 +k1,13897:31563944,32750895:224413 +k1,13897:32583029,32750895:0 +) +(1,13898:6630773,33592383:25952256,505283,134348 +k1,13897:9410423,33592383:194910 +k1,13897:10288218,33592383:194910 +k1,13897:13091461,33592383:194910 +k1,13897:15251796,33592383:194910 +k1,13897:16098134,33592383:194910 +k1,13897:17312129,33592383:194910 +k1,13897:18854460,33592383:194911 +k1,13897:22069924,33592383:194910 +k1,13897:23026362,33592383:194910 +(1,13897:23026362,33592383:0,452978,115847 +r1,13897:24439763,33592383:1413401,568825,115847 +k1,13897:23026362,33592383:-1413401 +) +(1,13897:23026362,33592383:1413401,452978,115847 +k1,13897:23026362,33592383:3277 +h1,13897:24436486,33592383:0,411205,112570 +) +k1,13897:24634673,33592383:194910 +k1,13897:26527621,33592383:194910 +k1,13897:28904225,33592383:194910 +k1,13897:30118220,33592383:194910 +k1,13897:32583029,33592383:0 +) +(1,13898:6630773,34433871:25952256,513147,134348 +k1,13897:9408063,34433871:252843 +k1,13897:11181996,34433871:252842 +k1,13897:12631526,34433871:252843 +k1,13897:14564711,34433871:252842 +k1,13897:17022841,34433871:252843 +k1,13897:17927111,34433871:252842 +(1,13897:17927111,34433871:0,452978,115847 +r1,13897:20747360,34433871:2820249,568825,115847 +k1,13897:17927111,34433871:-2820249 +) +(1,13897:17927111,34433871:2820249,452978,115847 +k1,13897:17927111,34433871:3277 +h1,13897:20744083,34433871:0,411205,112570 +) +k1,13897:21000203,34433871:252843 +k1,13897:21784543,34433871:252843 +k1,13897:23550611,34433871:252842 +k1,13897:24489616,34433871:252843 +k1,13897:25098318,34433871:252842 +k1,13897:29288564,34433871:252843 +k1,13897:30489057,34433871:252842 +(1,13897:30489057,34433871:0,414482,115847 +r1,13897:31199035,34433871:709978,530329,115847 +k1,13897:30489057,34433871:-709978 +) +(1,13897:30489057,34433871:709978,414482,115847 +k1,13897:30489057,34433871:3277 +h1,13897:31195758,34433871:0,411205,112570 +) +k1,13897:31451878,34433871:252843 +k1,13898:32583029,34433871:0 +) +(1,13898:6630773,35275359:25952256,513147,115847 +k1,13897:8009649,35275359:195951 +k1,13897:14534411,35275359:195950 +k1,13897:16707583,35275359:195951 +k1,13897:17851184,35275359:195950 +(1,13897:17851184,35275359:0,452978,115847 +r1,13897:19616297,35275359:1765113,568825,115847 +k1,13897:17851184,35275359:-1765113 +) +(1,13897:17851184,35275359:1765113,452978,115847 +k1,13897:17851184,35275359:3277 +h1,13897:19613020,35275359:0,411205,112570 +) +k1,13897:19812248,35275359:195951 +k1,13897:21199643,35275359:195950 +(1,13897:21199643,35275359:0,459977,115847 +r1,13897:22613044,35275359:1413401,575824,115847 +k1,13897:21199643,35275359:-1413401 +) +(1,13897:21199643,35275359:1413401,459977,115847 +k1,13897:21199643,35275359:3277 +h1,13897:22609767,35275359:0,411205,112570 +) +k1,13897:22808995,35275359:195951 +k1,13897:26353179,35275359:195950 +k1,13897:27745817,35275359:195951 +k1,13897:32583029,35275359:0 +) +(1,13898:6630773,36116847:25952256,513147,134348 +k1,13897:8812640,36116847:222341 +k1,13897:11240267,36116847:222340 +k1,13897:12148770,36116847:222341 +k1,13897:13141814,36116847:222341 +k1,13897:16436483,36116847:222341 +k1,13897:17310251,36116847:222340 +(1,13897:17310251,36116847:0,414482,115847 +r1,13897:19075364,36116847:1765113,530329,115847 +k1,13897:17310251,36116847:-1765113 +) +(1,13897:17310251,36116847:1765113,414482,115847 +k1,13897:17310251,36116847:3277 +h1,13897:19072087,36116847:0,411205,112570 +) +k1,13897:19297705,36116847:222341 +k1,13897:23094380,36116847:222341 +k1,13897:24335805,36116847:222340 +k1,13897:29395358,36116847:222341 +k1,13897:32583029,36116847:0 +) +(1,13898:6630773,36958335:25952256,513147,134348 +k1,13897:11656335,36958335:188350 +k1,13897:13954289,36958335:188350 +k1,13897:15161725,36958335:188351 +k1,13897:18620977,36958335:188350 +k1,13897:19881496,36958335:188350 +k1,13897:22184693,36958335:188350 +k1,13897:23564488,36958335:188350 +k1,13897:24937075,36958335:188351 +k1,13897:26969608,36958335:188350 +k1,13897:29385527,36958335:188350 +k1,13897:32583029,36958335:0 +) +(1,13898:6630773,37799823:25952256,513147,134348 +k1,13897:7429729,37799823:182918 +k1,13897:8631731,37799823:182917 +k1,13897:11249967,37799823:182918 +k1,13897:12822247,37799823:182917 +k1,13897:14796919,37799823:182918 +k1,13897:16176524,37799823:182918 +k1,13897:19431769,37799823:182917 +k1,13897:20266115,37799823:182918 +(1,13897:20266115,37799823:0,452978,122846 +r1,13897:22031228,37799823:1765113,575824,122846 +k1,13897:20266115,37799823:-1765113 +) +(1,13897:20266115,37799823:1765113,452978,122846 +k1,13897:20266115,37799823:3277 +h1,13897:22027951,37799823:0,411205,112570 +) +k1,13897:22214145,37799823:182917 +k1,13897:25971397,37799823:182918 +k1,13897:27173400,37799823:182918 +k1,13897:28742403,37799823:182917 +k1,13897:29584613,37799823:182918 +k1,13897:30868535,37799823:182917 +k1,13897:31734338,37799823:182918 +k1,13898:32583029,37799823:0 +) +(1,13898:6630773,38641311:25952256,513147,134348 +k1,13897:8832228,38641311:152144 +k1,13897:10003457,38641311:152144 +k1,13897:12421181,38641311:152144 +k1,13897:13848001,38641311:152145 +k1,13897:17444717,38641311:152144 +k1,13897:18406231,38641311:152144 +k1,13897:19577460,38641311:152144 +k1,13897:21301813,38641311:152144 +k1,13897:22069995,38641311:152144 +k1,13897:24986449,38641311:152145 +k1,13897:26204864,38641311:152144 +k1,13897:27123124,38641311:152144 +k1,13897:28971995,38641311:152144 +k1,13897:32583029,38641311:0 +) +(1,13898:6630773,39482799:25952256,505283,7863 +g1,13897:7821562,39482799 +k1,13898:32583030,39482799:21803828 +g1,13898:32583030,39482799 +) +(1,13902:6630773,40324287:25952256,513147,134348 +h1,13901:6630773,40324287:983040,0,0 +g1,13901:8766591,40324287 +g1,13901:11698016,40324287 +g1,13901:13180440,40324287 +g1,13901:14740196,40324287 +k1,13902:32583029,40324287:16279799 +g1,13902:32583029,40324287 +) +v1,13904:6630773,41514753:0,393216,0 +(1,13912:6630773,44475687:25952256,3354150,196608 +g1,13912:6630773,44475687 +g1,13912:6630773,44475687 +g1,13912:6434165,44475687 +(1,13912:6434165,44475687:0,3354150,196608 +r1,13912:32779637,44475687:26345472,3550758,196608 +k1,13912:6434165,44475687:-26345472 +) +(1,13912:6434165,44475687:26345472,3354150,196608 +[1,13912:6630773,44475687:25952256,3157542,0 +(1,13906:6630773,41728663:25952256,410518,6290 +(1,13905:6630773,41728663:0,0,0 +g1,13905:6630773,41728663 +g1,13905:6630773,41728663 +g1,13905:6303093,41728663 +(1,13905:6303093,41728663:0,0,0 +) +g1,13905:6630773,41728663 +) +g1,13906:10108376,41728663 +k1,13906:10108376,41728663:0 +h1,13906:10740668,41728663:0,0,0 +k1,13906:32583028,41728663:21842360 +g1,13906:32583028,41728663 +) +(1,13907:6630773,42394841:25952256,410518,101187 +h1,13907:6630773,42394841:0,0,0 +g1,13907:6946919,42394841 +g1,13907:7263065,42394841 +g1,13907:11372960,42394841 +g1,13907:12005252,42394841 +g1,13907:15799001,42394841 +g1,13907:17379730,42394841 +g1,13907:18012022,42394841 +g1,13907:19276605,42394841 +g1,13907:20225042,42394841 +g1,13907:20857334,42394841 +k1,13907:20857334,42394841:0 +h1,13907:21805772,42394841:0,0,0 +k1,13907:32583029,42394841:10777257 +g1,13907:32583029,42394841 +) +(1,13908:6630773,43061019:25952256,404226,82312 +h1,13908:6630773,43061019:0,0,0 +g1,13908:6946919,43061019 +g1,13908:7263065,43061019 +g1,13908:7579211,43061019 +g1,13908:7895357,43061019 +g1,13908:8211503,43061019 +g1,13908:8527649,43061019 +g1,13908:8843795,43061019 +g1,13908:9159941,43061019 +g1,13908:9476087,43061019 +g1,13908:9792233,43061019 +g1,13908:10108379,43061019 +g1,13908:10424525,43061019 +g1,13908:10740671,43061019 +g1,13908:11056817,43061019 +g1,13908:11372963,43061019 +g1,13908:11689109,43061019 +g1,13908:12005255,43061019 +g1,13908:12321401,43061019 +g1,13908:12637547,43061019 +g1,13908:15799004,43061019 +g1,13908:17379733,43061019 +g1,13908:18012025,43061019 +g1,13908:19276608,43061019 +g1,13908:20225045,43061019 +g1,13908:20857337,43061019 +k1,13908:20857337,43061019:0 +h1,13908:22438065,43061019:0,0,0 +k1,13908:32583029,43061019:10144964 +g1,13908:32583029,43061019 +) +(1,13909:6630773,43727197:25952256,410518,107478 +h1,13909:6630773,43727197:0,0,0 +g1,13909:6946919,43727197 +g1,13909:7263065,43727197 +g1,13909:7579211,43727197 +g1,13909:7895357,43727197 +g1,13909:8211503,43727197 +g1,13909:8527649,43727197 +g1,13909:8843795,43727197 +g1,13909:9159941,43727197 +g1,13909:9476087,43727197 +g1,13909:9792233,43727197 +g1,13909:10108379,43727197 +g1,13909:10424525,43727197 +g1,13909:10740671,43727197 +g1,13909:12637545,43727197 +g1,13909:13269837,43727197 +g1,13909:18960461,43727197 +g1,13909:20541190,43727197 +g1,13909:23386502,43727197 +k1,13909:23386502,43727197:0 +h1,13909:25283376,43727197:0,0,0 +k1,13909:32583029,43727197:7299653 +g1,13909:32583029,43727197 +) +(1,13910:6630773,44393375:25952256,404226,82312 +h1,13910:6630773,44393375:0,0,0 +g1,13910:6946919,44393375 +g1,13910:7263065,44393375 +g1,13910:7579211,44393375 +g1,13910:7895357,44393375 +g1,13910:8211503,44393375 +g1,13910:8527649,44393375 +g1,13910:8843795,44393375 +g1,13910:9159941,44393375 +g1,13910:9476087,44393375 +g1,13910:9792233,44393375 +g1,13910:10108379,44393375 +g1,13910:10424525,44393375 +g1,13910:10740671,44393375 +g1,13910:11372963,44393375 +g1,13910:12005255,44393375 +g1,13910:15166712,44393375 +g1,13910:16747441,44393375 +g1,13910:17379733,44393375 +g1,13910:18644316,44393375 +g1,13910:19592753,44393375 +g1,13910:20225045,44393375 +h1,13910:21173482,44393375:0,0,0 +k1,13910:32583029,44393375:11409547 +g1,13910:32583029,44393375 +) +] +) +g1,13912:32583029,44475687 +g1,13912:6630773,44475687 +g1,13912:6630773,44475687 +g1,13912:32583029,44475687 +g1,13912:32583029,44475687 +) +h1,13912:6630773,44672295:0,0,0 +] +(1,13917:32583029,45706769:0,0,0 +g1,13917:32583029,45706769 +) +) +] +(1,13917:6630773,47279633:25952256,0,0 +h1,13917:6630773,47279633:25952256,0,0 +) +] +h1,13917:4262630,4025873:0,0,0 +] +!27931 +}268 +Input:2054:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2055:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2056:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2057:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2058:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2059:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2060:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2061:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2062:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2063:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2064:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2065:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2066:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2067:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1300 +{269 +[1,13970:4262630,47279633:28320399,43253760,0 +(1,13970:4262630,4025873:0,0,0 +[1,13970:-473657,4025873:25952256,0,0 +(1,13970:-473657,-710414:25952256,0,0 +h1,13970:-473657,-710414:0,0,0 +(1,13970:-473657,-710414:0,0,0 +(1,13970:-473657,-710414:0,0,0 +g1,13970:-473657,-710414 +(1,13970:-473657,-710414:65781,0,65781 +g1,13970:-407876,-710414 +[1,13970:-407876,-644633:0,0,0 ] ) -k1,13944:-473657,-710414:-65781 +k1,13970:-473657,-710414:-65781 ) ) -k1,13944:25478599,-710414:25952256 -g1,13944:25478599,-710414 +k1,13970:25478599,-710414:25952256 +g1,13970:25478599,-710414 ) ] ) -[1,13944:6630773,47279633:25952256,43253760,0 -[1,13944:6630773,4812305:25952256,786432,0 -(1,13944:6630773,4812305:25952256,505283,11795 -(1,13944:6630773,4812305:25952256,505283,11795 -g1,13944:3078558,4812305 -[1,13944:3078558,4812305:0,0,0 -(1,13944:3078558,2439708:0,1703936,0 -k1,13944:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,13944: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,134348 +(1,13970:6630773,4812305:25952256,513147,134348 +g1,13970:3078558,4812305 +[1,13970:3078558,4812305:0,0,0 +(1,13970:3078558,2439708:0,1703936,0 +k1,13970:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,13970:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,13944:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,13970:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,13944:3078558,4812305:0,0,0 -(1,13944:3078558,2439708:0,1703936,0 -g1,13944:29030814,2439708 -g1,13944:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,13944: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,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,13970:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,13944:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,13970:37855564,2439708:1179648,16384,0 ) ) -k1,13944:3078556,2439708:-34777008 +k1,13970:3078556,2439708:-34777008 ) ] -[1,13944:3078558,4812305:0,0,0 -(1,13944:3078558,49800853:0,16384,2228224 -k1,13944:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,13944: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,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,13970:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,13944:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,13970:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,13944:3078558,4812305:0,0,0 -(1,13944:3078558,49800853:0,16384,2228224 -g1,13944:29030814,49800853 -g1,13944:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,13944:36151628,51504789:16384,1179648,0 +[1,13970:3078558,4812305:0,0,0 +(1,13970:3078558,49800853:0,16384,2228224 +g1,13970:29030814,49800853 +g1,13970:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,13970:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,13944:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,13970:37855564,49800853:1179648,16384,0 ) ) -k1,13944:3078556,49800853:-34777008 +k1,13970:3078556,49800853:-34777008 ) ] -g1,13944:6630773,4812305 -g1,13944:6630773,4812305 -g1,13944:8724648,4812305 -k1,13944:31387652,4812305:22663004 +g1,13970:6630773,4812305 +k1,13970:25712890,4812305:17886740 +g1,13970:29057847,4812305 +g1,13970:29873114,4812305 ) ) ] -[1,13944:6630773,45706769:25952256,40108032,0 -(1,13944:6630773,45706769:25952256,40108032,0 -(1,13944:6630773,45706769:0,0,0 -g1,13944:6630773,45706769 +[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,13944:6630773,45706769:25952256,40108032,0 -(1,13888:6630773,6254097:25952256,505283,7863 -(1,13888:6630773,6254097:2809528,485622,0 -g1,13888:6630773,6254097 -g1,13888:9440301,6254097 +[1,13970:6630773,45706769:25952256,40108032,0 +(1,13914:6630773,6254097:25952256,505283,7863 +(1,13914:6630773,6254097:2809528,485622,0 +g1,13914:6630773,6254097 +g1,13914:9440301,6254097 ) -k1,13888:32583028,6254097:21101936 -g1,13888:32583028,6254097 -) -(1,13891:6630773,7488801:25952256,513147,134348 -k1,13890:8814835,7488801:209462 -k1,13890:10015857,7488801:209462 -k1,13890:12798262,7488801:209462 -k1,13890:13659152,7488801:209462 -k1,13890:14634730,7488801:209462 -k1,13890:16603834,7488801:209462 -k1,13890:17472589,7488801:209463 -k1,13890:19678933,7488801:209462 -k1,13890:21862995,7488801:209462 -k1,13890:23064017,7488801:209462 -k1,13890:24208022,7488801:209462 -k1,13890:26976010,7488801:209462 -k1,13890:30466204,7488801:209462 -(1,13890:30466204,7488801:0,452978,115847 -r1,13890:32583029,7488801:2116825,568825,115847 -k1,13890:30466204,7488801:-2116825 -) -(1,13890:30466204,7488801:2116825,452978,115847 -k1,13890:30466204,7488801:3277 -h1,13890:32579752,7488801:0,411205,112570 -) -k1,13890:32583029,7488801:0 -) -(1,13891:6630773,8330289:25952256,513147,126483 -k1,13890:7599231,8330289:309166 -k1,13890:8927482,8330289:309166 -k1,13890:11998991,8330289:309166 -k1,13890:13880366,8330289:309166 -k1,13890:17389000,8330289:309166 -k1,13890:19255957,8330289:309166 -k1,13890:20669404,8330289:309165 -k1,13890:22264386,8330289:309166 -k1,13890:23321318,8330289:309166 -k1,13890:24565027,8330289:309166 -k1,13890:26268144,8330289:309166 -k1,13890:30483911,8330289:309166 -k1,13891:32583029,8330289:0 -) -(1,13891:6630773,9171777:25952256,513147,134348 -k1,13890:8026629,9171777:256185 -(1,13890:8026629,9171777:0,452978,115847 -r1,13890:10143454,9171777:2116825,568825,115847 -k1,13890:8026629,9171777:-2116825 -) -(1,13890:8026629,9171777:2116825,452978,115847 -k1,13890:8026629,9171777:3277 -h1,13890:10140177,9171777:0,411205,112570 -) -k1,13890:10399640,9171777:256186 -k1,13890:11847270,9171777:256185 -(1,13890:11847270,9171777:0,452978,115847 -r1,13890:13964095,9171777:2116825,568825,115847 -k1,13890:11847270,9171777:-2116825 -) -(1,13890:11847270,9171777:2116825,452978,115847 -k1,13890:11847270,9171777:3277 -h1,13890:13960818,9171777:0,411205,112570 -) -k1,13890:14220281,9171777:256186 -k1,13890:15092504,9171777:256185 -k1,13890:16367774,9171777:256185 -k1,13890:17991041,9171777:256186 -k1,13890:18906518,9171777:256185 -k1,13890:20181789,9171777:256186 -(1,13890:20181789,9171777:0,414482,115847 -r1,13890:20540055,9171777:358266,530329,115847 -k1,13890:20181789,9171777:-358266 -) -(1,13890:20181789,9171777:358266,414482,115847 -k1,13890:20181789,9171777:3277 -h1,13890:20536778,9171777:0,411205,112570 -) -k1,13890:20796240,9171777:256185 -k1,13890:22243870,9171777:256185 -(1,13890:22243870,9171777:0,414482,115847 -r1,13890:22602136,9171777:358266,530329,115847 -k1,13890:22243870,9171777:-358266 -) -(1,13890:22243870,9171777:358266,414482,115847 -k1,13890:22243870,9171777:3277 -h1,13890:22598859,9171777:0,411205,112570 -) -k1,13890:22858322,9171777:256186 -k1,13890:26329703,9171777:256185 -k1,13890:27777334,9171777:256186 -k1,13890:29683716,9171777:256185 -k1,13890:32583029,9171777:0 -) -(1,13891:6630773,10013265:25952256,513147,134348 -k1,13890:8242182,10013265:217458 -k1,13890:11155136,10013265:217458 -(1,13890:11155136,10013265:0,452978,115847 -r1,13890:13271961,10013265:2116825,568825,115847 -k1,13890:11155136,10013265:-2116825 -) -(1,13890:11155136,10013265:2116825,452978,115847 -k1,13890:11155136,10013265:3277 -h1,13890:13268684,10013265:0,411205,112570 -) -k1,13890:13489419,10013265:217458 -k1,13890:15592348,10013265:217458 -k1,13890:16956031,10013265:217458 -(1,13890:16956031,10013265:0,452978,115847 -r1,13890:19072856,10013265:2116825,568825,115847 -k1,13890:16956031,10013265:-2116825 -) -(1,13890:16956031,10013265:2116825,452978,115847 -k1,13890:16956031,10013265:3277 -h1,13890:19069579,10013265:0,411205,112570 -) -k1,13890:19463984,10013265:217458 -k1,13890:21364407,10013265:217458 -k1,13890:24984494,10013265:217458 -k1,13890:27360708,10013265:217458 -k1,13890:30695058,10013265:217458 -k1,13890:31563944,10013265:217458 -k1,13890:32583029,10013265:0 -) -(1,13891:6630773,10854753:25952256,513147,134348 -k1,13890:8585930,10854753:217142 -k1,13890:9462363,10854753:217141 -k1,13890:10698590,10854753:217142 -k1,13890:14130927,10854753:217141 -k1,13890:15544756,10854753:217142 -(1,13890:15544756,10854753:0,452978,115847 -r1,13890:17661581,10854753:2116825,568825,115847 -k1,13890:15544756,10854753:-2116825 -) -(1,13890:15544756,10854753:2116825,452978,115847 -k1,13890:15544756,10854753:3277 -h1,13890:17658304,10854753:0,411205,112570 -) -k1,13890:17878723,10854753:217142 -k1,13890:21168192,10854753:217141 -k1,13890:22044626,10854753:217142 -k1,13890:24164277,10854753:217141 -k1,13890:26759721,10854753:217142 -k1,13890:29458710,10854753:217141 -k1,13890:31900144,10854753:217142 -k1,13890:32583029,10854753:0 -) -(1,13891:6630773,11696241:25952256,513147,134348 -k1,13890:7211798,11696241:225165 -k1,13890:10132459,11696241:225165 -k1,13890:13788434,11696241:225165 -k1,13890:15652654,11696241:225165 -k1,13890:17445440,11696241:225165 -(1,13890:17445440,11696241:0,452978,115847 -r1,13890:18858841,11696241:1413401,568825,115847 -k1,13890:17445440,11696241:-1413401 -) -(1,13890:17445440,11696241:1413401,452978,115847 -k1,13890:17445440,11696241:3277 -h1,13890:18855564,11696241:0,411205,112570 -) -k1,13890:19257677,11696241:225166 -k1,13890:20110677,11696241:225165 -k1,13890:23140783,11696241:225165 -k1,13890:24385033,11696241:225165 -k1,13890:28516799,11696241:225165 -k1,13890:31767761,11696241:225165 -k1,13890:32583029,11696241:0 -) -(1,13891:6630773,12537729:25952256,513147,134348 -g1,13890:7896273,12537729 -g1,13890:10143502,12537729 -g1,13890:13368528,12537729 -g1,13890:14253919,12537729 -g1,13890:15961787,12537729 -k1,13891:32583029,12537729:13044942 -g1,13891:32583029,12537729 -) -(1,13893:6630773,13379217:25952256,505283,126483 -h1,13892:6630773,13379217:983040,0,0 -k1,13892:8424111,13379217:182463 -k1,13892:9625659,13379217:182463 -k1,13892:11192242,13379217:182463 -k1,13892:14036122,13379217:182463 -k1,13892:15086937,13379217:182463 -k1,13892:16203943,13379217:182463 -k1,13892:18466520,13379217:182464 -k1,13892:20637345,13379217:182463 -k1,13892:22705279,13379217:182463 -k1,13892:24020204,13379217:182463 -k1,13892:26636674,13379217:182463 -k1,13892:28511277,13379217:182463 -k1,13892:32583029,13379217:0 -) -(1,13893:6630773,14220705:25952256,513147,134348 -k1,13892:8459937,14220705:261543 -k1,13892:9740565,14220705:261543 -k1,13892:11279406,14220705:261544 -k1,13892:12732394,14220705:261543 -k1,13892:14561558,14220705:261543 -k1,13892:15954908,14220705:261543 -k1,13892:20280338,14220705:261543 -k1,13892:21201173,14220705:261543 -k1,13892:24970859,14220705:261544 -k1,13892:25915287,14220705:261543 -k1,13892:28111453,14220705:261543 -k1,13892:29032288,14220705:261543 -k1,13892:32583029,14220705:0 -) -(1,13893:6630773,15062193:25952256,513147,126483 -k1,13892:8393127,15062193:168518 -k1,13892:10960263,15062193:168518 -k1,13892:12147866,15062193:168518 -k1,13892:15224216,15062193:168518 -k1,13892:19464486,15062193:168518 -k1,13892:20624564,15062193:168518 -k1,13892:23953883,15062193:168518 -k1,13892:24773829,15062193:168518 -(1,13892:24773829,15062193:0,414482,115847 -r1,13892:25483807,15062193:709978,530329,115847 -k1,13892:24773829,15062193:-709978 -) -(1,13892:24773829,15062193:709978,414482,115847 -k1,13892:24773829,15062193:3277 -h1,13892:25480530,15062193:0,411205,112570 -) -k1,13892:25652325,15062193:168518 -k1,13892:27831488,15062193:168518 -k1,13892:30042763,15062193:168518 -k1,13892:31591469,15062193:168518 -k1,13892:32583029,15062193:0 -) -(1,13893:6630773,15903681:25952256,505283,134348 -g1,13892:9035289,15903681 -g1,13892:9920680,15903681 -(1,13892:9920680,15903681:0,452978,115847 -r1,13892:11334081,15903681:1413401,568825,115847 -k1,13892:9920680,15903681:-1413401 -) -(1,13892:9920680,15903681:1413401,452978,115847 -k1,13892:9920680,15903681:3277 -h1,13892:11330804,15903681:0,411205,112570 -) -g1,13892:11533310,15903681 -g1,13892:12383967,15903681 -k1,13893:32583029,15903681:16608345 -g1,13893:32583029,15903681 -) -v1,13895:6630773,16878301:0,393216,0 -(1,13900:6630773,17859576:25952256,1374491,196608 -g1,13900:6630773,17859576 -g1,13900:6630773,17859576 -g1,13900:6434165,17859576 -(1,13900:6434165,17859576:0,1374491,196608 -r1,13900:32779637,17859576:26345472,1571099,196608 -k1,13900:6434165,17859576:-26345472 -) -(1,13900:6434165,17859576:26345472,1374491,196608 -[1,13900:6630773,17859576:25952256,1177883,0 -(1,13897:6630773,17092211:25952256,410518,107478 -(1,13896:6630773,17092211:0,0,0 -g1,13896:6630773,17092211 -g1,13896:6630773,17092211 -g1,13896:6303093,17092211 -(1,13896:6303093,17092211:0,0,0 -) -g1,13896:6630773,17092211 -) -k1,13897:6630773,17092211:0 -g1,13897:12637541,17092211 -g1,13897:14850561,17092211 -g1,13897:16115144,17092211 -g1,13897:16747436,17092211 -g1,13897:20857330,17092211 -h1,13897:21173476,17092211:0,0,0 -k1,13897:32583029,17092211:11409553 -g1,13897:32583029,17092211 -) -(1,13898:6630773,17758389:25952256,404226,101187 -h1,13898:6630773,17758389:0,0,0 -g1,13898:6946919,17758389 -g1,13898:7263065,17758389 -g1,13898:15482853,17758389 -g1,13898:16115145,17758389 -g1,13898:17695875,17758389 -h1,13898:19276603,17758389:0,0,0 -k1,13898:32583029,17758389:13306426 -g1,13898:32583029,17758389 -) -] -) -g1,13900:32583029,17859576 -g1,13900:6630773,17859576 -g1,13900:6630773,17859576 -g1,13900:32583029,17859576 -g1,13900:32583029,17859576 -) -h1,13900:6630773,18056184:0,0,0 -(1,13904:6630773,19206114:25952256,513147,134348 -h1,13903:6630773,19206114:983040,0,0 -g1,13903:8642072,19206114 -g1,13903:9775844,19206114 -g1,13903:11350674,19206114 -g1,13903:12706613,19206114 -g1,13903:14390232,19206114 -g1,13903:16845210,19206114 -g1,13903:18063524,19206114 -g1,13903:19964723,19206114 -g1,13903:21585428,19206114 -g1,13903:22653009,19206114 -g1,13903:23956520,19206114 -g1,13903:25248234,19206114 -(1,13903:25248234,19206114:0,414482,115847 -r1,13903:25958212,19206114:709978,530329,115847 -k1,13903:25248234,19206114:-709978 -) -(1,13903:25248234,19206114:709978,414482,115847 -k1,13903:25248234,19206114:3277 -h1,13903:25954935,19206114:0,411205,112570 -) -g1,13903:26157441,19206114 -g1,13903:27042832,19206114 -g1,13903:27597921,19206114 -k1,13904:32583029,19206114:1760737 -g1,13904:32583029,19206114 -) -v1,13906:6630773,20180734:0,393216,0 -(1,13910:6630773,20489539:25952256,702021,196608 -g1,13910:6630773,20489539 -g1,13910:6630773,20489539 -g1,13910:6434165,20489539 -(1,13910:6434165,20489539:0,702021,196608 -r1,13910:32779637,20489539:26345472,898629,196608 -k1,13910:6434165,20489539:-26345472 -) -(1,13910:6434165,20489539:26345472,702021,196608 -[1,13910:6630773,20489539:25952256,505413,0 -(1,13908:6630773,20388352:25952256,404226,101187 -(1,13907:6630773,20388352:0,0,0 -g1,13907:6630773,20388352 -g1,13907:6630773,20388352 -g1,13907:6303093,20388352 -(1,13907:6303093,20388352:0,0,0 -) -g1,13907:6630773,20388352 -) -g1,13908:6946919,20388352 -g1,13908:7263065,20388352 -g1,13908:15482853,20388352 -g1,13908:16115145,20388352 -g1,13908:18012020,20388352 -h1,13908:19276602,20388352:0,0,0 -k1,13908:32583029,20388352:13306427 -g1,13908:32583029,20388352 -) -] -) -g1,13910:32583029,20489539 -g1,13910:6630773,20489539 -g1,13910:6630773,20489539 -g1,13910:32583029,20489539 -g1,13910:32583029,20489539 -) -h1,13910:6630773,20686147:0,0,0 -(1,13914:6630773,21836077:25952256,513147,115847 -h1,13913:6630773,21836077:983040,0,0 -k1,13913:11875718,21836077:233407 -k1,13913:15134922,21836077:233407 -(1,13913:15134922,21836077:0,452978,115847 -r1,13913:17251747,21836077:2116825,568825,115847 -k1,13913:15134922,21836077:-2116825 -) -(1,13913:15134922,21836077:2116825,452978,115847 -k1,13913:15134922,21836077:3277 -h1,13913:17248470,21836077:0,411205,112570 -) -k1,13913:17485154,21836077:233407 -k1,13913:18910006,21836077:233407 -(1,13913:18910006,21836077:0,452978,115847 -r1,13913:21026831,21836077:2116825,568825,115847 -k1,13913:18910006,21836077:-2116825 -) -(1,13913:18910006,21836077:2116825,452978,115847 -k1,13913:18910006,21836077:3277 -h1,13913:21023554,21836077:0,411205,112570 -) -k1,13913:21260238,21836077:233407 -k1,13913:22597927,21836077:233407 -k1,13913:23579100,21836077:233407 -k1,13913:25325733,21836077:233407 -k1,13913:26210568,21836077:233407 -k1,13913:27378518,21836077:233407 -k1,13913:28631010,21836077:233407 -k1,13913:30679109,21836077:233407 -k1,13913:31563944,21836077:233407 -k1,13913:32583029,21836077:0 -) -(1,13914:6630773,22677565:25952256,513147,138281 -k1,13913:9122582,22677565:226229 -$1,13913:9122582,22677565 -$1,13913:9625243,22677565 -k1,13913:9851471,22677565:226228 -k1,13913:11269145,22677565:226229 -$1,13913:11269145,22677565 -$1,13913:11820958,22677565 -k1,13913:12047186,22677565:226228 -k1,13913:14175925,22677565:226229 -k1,13913:15018192,22677565:226229 -k1,13913:16510576,22677565:226228 -k1,13913:17690354,22677565:226229 -k1,13913:19314465,22677565:226228 -k1,13913:20633179,22677565:226229 -(1,13913:20633179,22677565:0,452978,115847 -r1,13913:22750004,22677565:2116825,568825,115847 -k1,13913:20633179,22677565:-2116825 -) -(1,13913:20633179,22677565:2116825,452978,115847 -k1,13913:20633179,22677565:3277 -h1,13913:22746727,22677565:0,411205,112570 -) -k1,13913:23149903,22677565:226229 -k1,13913:24448300,22677565:226228 -(1,13913:24448300,22677565:0,452978,115847 -r1,13913:26565125,22677565:2116825,568825,115847 -k1,13913:24448300,22677565:-2116825 -) -(1,13913:24448300,22677565:2116825,452978,115847 -k1,13913:24448300,22677565:3277 -h1,13913:26561848,22677565:0,411205,112570 -) -k1,13913:26791354,22677565:226229 -k1,13913:27549079,22677565:226228 -k1,13913:30512091,22677565:226229 -k1,13913:32583029,22677565:0 -) -(1,13914:6630773,23519053:25952256,513147,7863 -g1,13913:7777653,23519053 -g1,13913:8995967,23519053 -g1,13913:10730049,23519053 -g1,13913:11387375,23519053 -k1,13914:32583029,23519053:18912380 -g1,13914:32583029,23519053 -) -v1,13916:6630773,24493673:0,393216,0 -(1,13920:6630773,24802478:25952256,702021,196608 -g1,13920:6630773,24802478 -g1,13920:6630773,24802478 -g1,13920:6434165,24802478 -(1,13920:6434165,24802478:0,702021,196608 -r1,13920:32779637,24802478:26345472,898629,196608 -k1,13920:6434165,24802478:-26345472 -) -(1,13920:6434165,24802478:26345472,702021,196608 -[1,13920:6630773,24802478:25952256,505413,0 -(1,13918:6630773,24701291:25952256,404226,101187 -(1,13917:6630773,24701291:0,0,0 -g1,13917:6630773,24701291 -g1,13917:6630773,24701291 -g1,13917:6303093,24701291 -(1,13917:6303093,24701291:0,0,0 -) -g1,13917:6630773,24701291 -) -g1,13918:6946919,24701291 -g1,13918:7263065,24701291 -g1,13918:10108377,24701291 -h1,13918:11056814,24701291:0,0,0 -k1,13918:32583030,24701291:21526216 -g1,13918:32583030,24701291 -) -] -) -g1,13920:32583029,24802478 -g1,13920:6630773,24802478 -g1,13920:6630773,24802478 -g1,13920:32583029,24802478 -g1,13920:32583029,24802478 -) -h1,13920:6630773,24999086:0,0,0 -(1,13925:6630773,26149016:25952256,505283,134348 -h1,13923:6630773,26149016:983040,0,0 -k1,13923:8538690,26149016:297042 -k1,13923:11342484,26149016:297042 -k1,13923:13821220,26149016:297042 -k1,13923:15598064,26149016:297041 -k1,13923:17709798,26149016:297042 -k1,13923:20187223,26149016:297042 -k1,13923:21232031,26149016:297042 -k1,13923:24200320,26149016:297042 -k1,13923:25964058,26149016:297042 -k1,13923:28531266,26149016:297041 -k1,13923:29184168,26149016:297042 -k1,13923:32051532,26149016:297042 -k1,13923:32583029,26149016:0 -) -(1,13925:6630773,26990504:25952256,505283,134348 -k1,13923:8905933,26990504:230437 -k1,13923:10958925,26990504:230436 -(1,13923:10958925,26990504:0,414482,115847 -r1,13923:11668903,26990504:709978,530329,115847 -k1,13923:10958925,26990504:-709978 -) -(1,13923:10958925,26990504:709978,414482,115847 -k1,13923:10958925,26990504:3277 -h1,13923:11665626,26990504:0,411205,112570 -) -k1,13923:11899340,26990504:230437 -k1,13923:14140422,26990504:230437 -k1,13923:16108873,26990504:230436 -k1,13923:19010557,26990504:230437 -k1,13923:19927156,26990504:230437 -k1,13923:20615689,26990504:230436 -k1,13923:21377623,26990504:230437 -k1,13923:23002665,26990504:230436 -k1,13923:23884530,26990504:230437 -k1,13923:27633595,26990504:230437 -k1,13923:29944144,26990504:230436 -k1,13923:31193666,26990504:230437 -k1,13923:32583029,26990504:0 -) -(1,13925:6630773,27831992:25952256,513147,134348 -k1,13923:8549610,27831992:180822 -k1,13923:11206382,27831992:180822 -k1,13924:11857098,27831992:180823 -k1,13924:12569417,27831992:180822 -k1,13924:16015898,27831992:180822 -k1,13924:16848148,27831992:180822 -k1,13924:18121456,27831992:180823 -k1,13924:20997774,27831992:180822 -(1,13924:20997774,27831992:0,452978,115847 -r1,13924:26280005,27831992:5282231,568825,115847 -k1,13924:20997774,27831992:-5282231 -) -(1,13924:20997774,27831992:5282231,452978,115847 -k1,13924:20997774,27831992:3277 -h1,13924:26276728,27831992:0,411205,112570 -) -k1,13924:26460827,27831992:180822 -k1,13924:27327811,27831992:180822 -k1,13924:27966731,27831992:180823 -k1,13924:30012052,27831992:180822 -k1,13925:32583029,27831992:0 -) -(1,13925:6630773,28673480:25952256,513147,134348 -k1,13924:7823747,28673480:173889 -k1,13924:11832146,28673480:173888 -k1,13924:15214678,28673480:173889 -k1,13924:17654147,28673480:173889 -k1,13924:19642728,28673480:173889 -k1,13924:20475908,28673480:173888 -k1,13924:21005657,28673480:173889 -k1,13924:24426200,28673480:173889 -k1,13924:26172298,28673480:173889 -k1,13924:28160878,28673480:173888 -k1,13924:29467229,28673480:173889 -k1,13924:31219225,28673480:173889 -k1,13924:32583029,28673480:0 -) -(1,13925:6630773,29514968:25952256,505283,126483 -k1,13924:7807800,29514968:157942 -k1,13924:11123266,29514968:157941 -k1,13924:14373852,29514968:157942 -k1,13924:16346485,29514968:157941 -k1,13924:18202465,29514968:157942 -k1,13924:20658755,29514968:157942 -k1,13924:21468124,29514968:157941 -k1,13924:26058921,29514968:157942 -k1,13924:26982978,29514968:157941 -k1,13924:31386342,29514968:157942 -k1,13924:32583029,29514968:0 -) -(1,13925:6630773,30356456:25952256,513147,134348 -k1,13924:10197314,30356456:163912 -k1,13924:11012655,30356456:163913 -(1,13924:11012655,30356456:0,414482,115847 -r1,13924:11370921,30356456:358266,530329,115847 -k1,13924:11012655,30356456:-358266 -) -(1,13924:11012655,30356456:358266,414482,115847 -k1,13924:11012655,30356456:3277 -h1,13924:11367644,30356456:0,411205,112570 -) -k1,13924:11534833,30356456:163912 -k1,13924:12890191,30356456:163913 -(1,13924:12890191,30356456:0,414482,115847 -r1,13924:13248457,30356456:358266,530329,115847 -k1,13924:12890191,30356456:-358266 -) -(1,13924:12890191,30356456:358266,414482,115847 -k1,13924:12890191,30356456:3277 -h1,13924:13245180,30356456:0,411205,112570 -) -k1,13924:13412369,30356456:163912 -k1,13924:14567842,30356456:163913 -k1,13924:17351883,30356456:163912 -k1,13924:19823974,30356456:163913 -k1,13924:20647178,30356456:163912 -k1,13924:22824357,30356456:163913 -k1,13924:24144979,30356456:163912 -k1,13924:24991777,30356456:163913 -k1,13924:26328128,30356456:163912 -k1,13924:28117334,30356456:163913 -k1,13924:31252648,30356456:163912 -k1,13924:32583029,30356456:0 -) -(1,13925:6630773,31197944:25952256,513147,138281 -k1,13924:7827155,31197944:177297 -k1,13924:9819143,31197944:177296 -k1,13924:10655732,31197944:177297 -k1,13924:11852113,31197944:177296 -$1,13924:11852113,31197944 -$1,13924:12354774,31197944 -k1,13924:12532071,31197944:177297 -k1,13924:13900813,31197944:177297 -$1,13924:13900813,31197944 -$1,13924:14452626,31197944 -k1,13924:14629922,31197944:177296 -k1,13924:18377620,31197944:177297 -k1,13924:20457426,31197944:177296 -k1,13924:21626283,31197944:177297 -k1,13924:24358829,31197944:177297 -k1,13924:26024448,31197944:177296 -k1,13924:27070097,31197944:177297 -k1,13924:29571955,31197944:177296 -k1,13924:30768337,31197944:177297 -k1,13924:32583029,31197944:0 -) -(1,13925:6630773,32039432:25952256,505283,134348 -g1,13924:7481430,32039432 -g1,13924:10018328,32039432 -g1,13924:11236642,32039432 -k1,13925:32583030,32039432:19298388 -g1,13925:32583030,32039432 -) -v1,13927:6630773,33014052:0,393216,0 -(1,13933:6630773,34661505:25952256,2040669,196608 -g1,13933:6630773,34661505 -g1,13933:6630773,34661505 -g1,13933:6434165,34661505 -(1,13933:6434165,34661505:0,2040669,196608 -r1,13933:32779637,34661505:26345472,2237277,196608 -k1,13933:6434165,34661505:-26345472 -) -(1,13933:6434165,34661505:26345472,2040669,196608 -[1,13933:6630773,34661505:25952256,1844061,0 -(1,13929:6630773,33227962:25952256,410518,107478 -(1,13928:6630773,33227962:0,0,0 -g1,13928:6630773,33227962 -g1,13928:6630773,33227962 -g1,13928:6303093,33227962 -(1,13928:6303093,33227962:0,0,0 -) -g1,13928:6630773,33227962 -) -k1,13929:6630773,33227962:0 -g1,13929:12637541,33227962 -g1,13929:14850561,33227962 -g1,13929:16115144,33227962 -h1,13929:16431290,33227962:0,0,0 -k1,13929:32583029,33227962:16151739 -g1,13929:32583029,33227962 -) -(1,13930:6630773,33894140:25952256,404226,107478 -h1,13930:6630773,33894140:0,0,0 -g1,13930:6946919,33894140 -g1,13930:7263065,33894140 -g1,13930:11372959,33894140 -h1,13930:11689105,33894140:0,0,0 -k1,13930:32583029,33894140:20893924 -g1,13930:32583029,33894140 -) -(1,13931:6630773,34560318:25952256,404226,101187 -h1,13931:6630773,34560318:0,0,0 -g1,13931:6946919,34560318 -g1,13931:7263065,34560318 -g1,13931:12321397,34560318 -g1,13931:12953689,34560318 -g1,13931:13902127,34560318 -g1,13931:14534419,34560318 -g1,13931:15166711,34560318 -h1,13931:15799003,34560318:0,0,0 -k1,13931:32583029,34560318:16784026 -g1,13931:32583029,34560318 -) -] -) -g1,13933:32583029,34661505 -g1,13933:6630773,34661505 -g1,13933:6630773,34661505 -g1,13933:32583029,34661505 -g1,13933:32583029,34661505 -) -h1,13933:6630773,34858113:0,0,0 -(1,13936:6630773,45706769:25952256,10474678,0 -k1,13936:12599879,45706769:5969106 -h1,13935:12599879,45706769:0,0,0 -(1,13935:12599879,45706769:14014044,10474678,0 -(1,13935:12599879,45706769:14014766,10474704,0 -(1,13935:12599879,45706769:14014766,10474704,0 -(1,13935:12599879,45706769:0,10474704,0 -(1,13935:12599879,45706769:0,14155776,0 -(1,13935:12599879,45706769:18939904,14155776,0 -) -k1,13935:12599879,45706769:-18939904 -) -) -g1,13935:26614645,45706769 -) -) -) -g1,13936:26613923,45706769 -k1,13936:32583029,45706769:5969106 -) -] -(1,13944:32583029,45706769:0,0,0 -g1,13944:32583029,45706769 -) -) -] -(1,13944:6630773,47279633:25952256,0,0 -h1,13944:6630773,47279633:25952256,0,0 +k1,13914:32583028,6254097:21101936 +g1,13914:32583028,6254097 ) +(1,13917:6630773,7488801:25952256,513147,134348 +k1,13916:8814835,7488801:209462 +k1,13916:10015857,7488801:209462 +k1,13916:12798262,7488801:209462 +k1,13916:13659152,7488801:209462 +k1,13916:14634730,7488801:209462 +k1,13916:16603834,7488801:209462 +k1,13916:17472589,7488801:209463 +k1,13916:19678933,7488801:209462 +k1,13916:21862995,7488801:209462 +k1,13916:23064017,7488801:209462 +k1,13916:24208022,7488801:209462 +k1,13916:26976010,7488801:209462 +k1,13916:30466204,7488801:209462 +(1,13916:30466204,7488801:0,452978,115847 +r1,13916:32583029,7488801:2116825,568825,115847 +k1,13916:30466204,7488801:-2116825 +) +(1,13916:30466204,7488801:2116825,452978,115847 +k1,13916:30466204,7488801:3277 +h1,13916:32579752,7488801:0,411205,112570 +) +k1,13916:32583029,7488801:0 +) +(1,13917:6630773,8330289:25952256,513147,126483 +k1,13916:7522008,8330289:231943 +k1,13916:8773035,8330289:231942 +k1,13916:11767321,8330289:231943 +k1,13916:13571473,8330289:231943 +k1,13916:17002883,8330289:231942 +k1,13916:18792617,8330289:231943 +k1,13916:20128842,8330289:231943 +k1,13916:21646600,8330289:231942 +k1,13916:22626309,8330289:231943 +k1,13916:23792795,8330289:231943 +k1,13916:25418688,8330289:231942 +k1,13916:29557232,8330289:231943 +k1,13917:32583029,8330289:0 +) +(1,13917:6630773,9171777:25952256,513147,134348 +(1,13916:6630773,9171777:0,452978,115847 +r1,13916:8747598,9171777:2116825,568825,115847 +k1,13916:6630773,9171777:-2116825 +) +(1,13916:6630773,9171777:2116825,452978,115847 +k1,13916:6630773,9171777:3277 +h1,13916:8744321,9171777:0,411205,112570 +) +k1,13916:8986831,9171777:239233 +k1,13916:10417510,9171777:239234 +(1,13916:10417510,9171777:0,452978,115847 +r1,13916:12534335,9171777:2116825,568825,115847 +k1,13916:10417510,9171777:-2116825 +) +(1,13916:10417510,9171777:2116825,452978,115847 +k1,13916:10417510,9171777:3277 +h1,13916:12531058,9171777:0,411205,112570 +) +k1,13916:12773568,9171777:239233 +k1,13916:13628840,9171777:239234 +k1,13916:14887158,9171777:239233 +k1,13916:16493472,9171777:239233 +k1,13916:17391998,9171777:239234 +k1,13916:18650316,9171777:239233 +(1,13916:18650316,9171777:0,414482,115847 +r1,13916:19008582,9171777:358266,530329,115847 +k1,13916:18650316,9171777:-358266 +) +(1,13916:18650316,9171777:358266,414482,115847 +k1,13916:18650316,9171777:3277 +h1,13916:19005305,9171777:0,411205,112570 +) +k1,13916:19247816,9171777:239234 +k1,13916:20678494,9171777:239233 +(1,13916:20678494,9171777:0,414482,115847 +r1,13916:21036760,9171777:358266,530329,115847 +k1,13916:20678494,9171777:-358266 +) +(1,13916:20678494,9171777:358266,414482,115847 +k1,13916:20678494,9171777:3277 +h1,13916:21033483,9171777:0,411205,112570 +) +k1,13916:21275993,9171777:239233 +k1,13916:24730423,9171777:239234 +k1,13916:26161101,9171777:239233 +k1,13916:28050532,9171777:239234 +k1,13916:31189078,9171777:239233 +k1,13916:32583029,9171777:0 +) +(1,13917:6630773,10013265:25952256,513147,134348 +k1,13916:9512448,10013265:186179 +(1,13916:9512448,10013265:0,452978,115847 +r1,13916:11629273,10013265:2116825,568825,115847 +k1,13916:9512448,10013265:-2116825 +) +(1,13916:9512448,10013265:2116825,452978,115847 +k1,13916:9512448,10013265:3277 +h1,13916:11625996,10013265:0,411205,112570 +) +k1,13916:11815453,10013265:186180 +k1,13916:13887103,10013265:186179 +k1,13916:15219508,10013265:186180 +(1,13916:15219508,10013265:0,452978,115847 +r1,13916:17336333,10013265:2116825,568825,115847 +k1,13916:15219508,10013265:-2116825 +) +(1,13916:15219508,10013265:2116825,452978,115847 +k1,13916:15219508,10013265:3277 +h1,13916:17333056,10013265:0,411205,112570 +) +k1,13916:17696182,10013265:186179 +k1,13916:19565327,10013265:186180 +k1,13916:23154135,10013265:186179 +k1,13916:25499071,10013265:186180 +k1,13916:28802142,10013265:186179 +k1,13916:29639750,10013265:186180 +k1,13916:30845014,10013265:186179 +k1,13916:32583029,10013265:0 +) +(1,13917:6630773,10854753:25952256,513147,134348 +k1,13916:7470591,10854753:180526 +k1,13916:8670201,10854753:180525 +k1,13916:12065923,10854753:180526 +k1,13916:13443135,10854753:180525 +(1,13916:13443135,10854753:0,452978,115847 +r1,13916:15559960,10854753:2116825,568825,115847 +k1,13916:13443135,10854753:-2116825 +) +(1,13916:13443135,10854753:2116825,452978,115847 +k1,13916:13443135,10854753:3277 +h1,13916:15556683,10854753:0,411205,112570 +) +k1,13916:15740486,10854753:180526 +k1,13916:18993339,10854753:180525 +k1,13916:19833157,10854753:180526 +k1,13916:21916192,10854753:180525 +k1,13916:24475020,10854753:180526 +k1,13916:27137393,10854753:180525 +k1,13916:29542211,10854753:180526 +k1,13916:30405621,10854753:180525 +k1,13916:30942007,10854753:180526 +k1,13917:32583029,10854753:0 +) +(1,13917:6630773,11696241:25952256,513147,134348 +k1,13916:8188642,11696241:290403 +k1,13916:11909855,11696241:290403 +k1,13916:13839314,11696241:290404 +k1,13916:15697338,11696241:290403 +(1,13916:15697338,11696241:0,452978,115847 +r1,13916:17110739,11696241:1413401,568825,115847 +k1,13916:15697338,11696241:-1413401 +) +(1,13916:15697338,11696241:1413401,452978,115847 +k1,13916:15697338,11696241:3277 +h1,13916:17107462,11696241:0,411205,112570 +) +k1,13916:17574812,11696241:290403 +k1,13916:18493050,11696241:290403 +k1,13916:21588394,11696241:290403 +k1,13916:22897883,11696241:290404 +k1,13916:27094887,11696241:290403 +k1,13916:30411087,11696241:290403 +k1,13916:31516758,11696241:290403 +k1,13916:32583029,11696241:0 +) +(1,13917:6630773,12537729:25952256,513147,134348 +g1,13916:8878002,12537729 +g1,13916:12103028,12537729 +g1,13916:12988419,12537729 +g1,13916:14696287,12537729 +k1,13917:32583029,12537729:14310442 +g1,13917:32583029,12537729 +) +(1,13919:6630773,13379217:25952256,505283,126483 +h1,13918:6630773,13379217:983040,0,0 +k1,13918:8424111,13379217:182463 +k1,13918:9625659,13379217:182463 +k1,13918:11192242,13379217:182463 +k1,13918:14036122,13379217:182463 +k1,13918:15086937,13379217:182463 +k1,13918:16203943,13379217:182463 +k1,13918:18466520,13379217:182464 +k1,13918:20637345,13379217:182463 +k1,13918:22705279,13379217:182463 +k1,13918:24020204,13379217:182463 +k1,13918:26636674,13379217:182463 +k1,13918:28511277,13379217:182463 +k1,13918:32583029,13379217:0 +) +(1,13919:6630773,14220705:25952256,513147,134348 +k1,13918:8459937,14220705:261543 +k1,13918:9740565,14220705:261543 +k1,13918:11279406,14220705:261544 +k1,13918:12732394,14220705:261543 +k1,13918:14561558,14220705:261543 +k1,13918:15954908,14220705:261543 +k1,13918:20280338,14220705:261543 +k1,13918:21201173,14220705:261543 +k1,13918:24970859,14220705:261544 +k1,13918:25915287,14220705:261543 +k1,13918:28111453,14220705:261543 +k1,13918:29032288,14220705:261543 +k1,13918:32583029,14220705:0 +) +(1,13919:6630773,15062193:25952256,513147,126483 +k1,13918:8393127,15062193:168518 +k1,13918:10960263,15062193:168518 +k1,13918:12147866,15062193:168518 +k1,13918:15224216,15062193:168518 +k1,13918:19464486,15062193:168518 +k1,13918:20624564,15062193:168518 +k1,13918:23953883,15062193:168518 +k1,13918:24773829,15062193:168518 +(1,13918:24773829,15062193:0,414482,115847 +r1,13918:25483807,15062193:709978,530329,115847 +k1,13918:24773829,15062193:-709978 +) +(1,13918:24773829,15062193:709978,414482,115847 +k1,13918:24773829,15062193:3277 +h1,13918:25480530,15062193:0,411205,112570 +) +k1,13918:25652325,15062193:168518 +k1,13918:27831488,15062193:168518 +k1,13918:30042763,15062193:168518 +k1,13918:31591469,15062193:168518 +k1,13918:32583029,15062193:0 +) +(1,13919:6630773,15903681:25952256,505283,134348 +g1,13918:9035289,15903681 +g1,13918:9920680,15903681 +(1,13918:9920680,15903681:0,452978,115847 +r1,13918:11334081,15903681:1413401,568825,115847 +k1,13918:9920680,15903681:-1413401 +) +(1,13918:9920680,15903681:1413401,452978,115847 +k1,13918:9920680,15903681:3277 +h1,13918:11330804,15903681:0,411205,112570 +) +g1,13918:11533310,15903681 +g1,13918:12383967,15903681 +k1,13919:32583029,15903681:16608345 +g1,13919:32583029,15903681 +) +v1,13921:6630773,16878301:0,393216,0 +(1,13926:6630773,17859576:25952256,1374491,196608 +g1,13926:6630773,17859576 +g1,13926:6630773,17859576 +g1,13926:6434165,17859576 +(1,13926:6434165,17859576:0,1374491,196608 +r1,13926:32779637,17859576:26345472,1571099,196608 +k1,13926:6434165,17859576:-26345472 +) +(1,13926:6434165,17859576:26345472,1374491,196608 +[1,13926:6630773,17859576:25952256,1177883,0 +(1,13923:6630773,17092211:25952256,410518,107478 +(1,13922:6630773,17092211:0,0,0 +g1,13922:6630773,17092211 +g1,13922:6630773,17092211 +g1,13922:6303093,17092211 +(1,13922:6303093,17092211:0,0,0 +) +g1,13922:6630773,17092211 +) +k1,13923:6630773,17092211:0 +g1,13923:12637541,17092211 +g1,13923:14850561,17092211 +g1,13923:16115144,17092211 +g1,13923:16747436,17092211 +g1,13923:20857330,17092211 +h1,13923:21173476,17092211:0,0,0 +k1,13923:32583029,17092211:11409553 +g1,13923:32583029,17092211 +) +(1,13924:6630773,17758389:25952256,404226,101187 +h1,13924:6630773,17758389:0,0,0 +g1,13924:6946919,17758389 +g1,13924:7263065,17758389 +g1,13924:15482853,17758389 +g1,13924:16115145,17758389 +g1,13924:17695875,17758389 +h1,13924:19276603,17758389:0,0,0 +k1,13924:32583029,17758389:13306426 +g1,13924:32583029,17758389 +) +] +) +g1,13926:32583029,17859576 +g1,13926:6630773,17859576 +g1,13926:6630773,17859576 +g1,13926:32583029,17859576 +g1,13926:32583029,17859576 +) +h1,13926:6630773,18056184:0,0,0 +(1,13930:6630773,19206114:25952256,513147,134348 +h1,13929:6630773,19206114:983040,0,0 +g1,13929:8642072,19206114 +g1,13929:9775844,19206114 +g1,13929:11350674,19206114 +g1,13929:12706613,19206114 +g1,13929:14390232,19206114 +g1,13929:16845210,19206114 +g1,13929:18063524,19206114 +g1,13929:19964723,19206114 +g1,13929:21585428,19206114 +g1,13929:22653009,19206114 +g1,13929:23956520,19206114 +g1,13929:25248234,19206114 +(1,13929:25248234,19206114:0,414482,115847 +r1,13929:25958212,19206114:709978,530329,115847 +k1,13929:25248234,19206114:-709978 +) +(1,13929:25248234,19206114:709978,414482,115847 +k1,13929:25248234,19206114:3277 +h1,13929:25954935,19206114:0,411205,112570 +) +g1,13929:26157441,19206114 +g1,13929:27042832,19206114 +g1,13929:27597921,19206114 +k1,13930:32583029,19206114:1760737 +g1,13930:32583029,19206114 +) +v1,13932:6630773,20180734:0,393216,0 +(1,13936:6630773,20489539:25952256,702021,196608 +g1,13936:6630773,20489539 +g1,13936:6630773,20489539 +g1,13936:6434165,20489539 +(1,13936:6434165,20489539:0,702021,196608 +r1,13936:32779637,20489539:26345472,898629,196608 +k1,13936:6434165,20489539:-26345472 +) +(1,13936:6434165,20489539:26345472,702021,196608 +[1,13936:6630773,20489539:25952256,505413,0 +(1,13934:6630773,20388352:25952256,404226,101187 +(1,13933:6630773,20388352:0,0,0 +g1,13933:6630773,20388352 +g1,13933:6630773,20388352 +g1,13933:6303093,20388352 +(1,13933:6303093,20388352:0,0,0 +) +g1,13933:6630773,20388352 +) +g1,13934:6946919,20388352 +g1,13934:7263065,20388352 +g1,13934:15482853,20388352 +g1,13934:16115145,20388352 +g1,13934:18012020,20388352 +h1,13934:19276602,20388352:0,0,0 +k1,13934:32583029,20388352:13306427 +g1,13934:32583029,20388352 +) +] +) +g1,13936:32583029,20489539 +g1,13936:6630773,20489539 +g1,13936:6630773,20489539 +g1,13936:32583029,20489539 +g1,13936:32583029,20489539 +) +h1,13936:6630773,20686147:0,0,0 +(1,13940:6630773,21836077:25952256,513147,115847 +h1,13939:6630773,21836077:983040,0,0 +k1,13939:11875718,21836077:233407 +k1,13939:15134922,21836077:233407 +(1,13939:15134922,21836077:0,452978,115847 +r1,13939:17251747,21836077:2116825,568825,115847 +k1,13939:15134922,21836077:-2116825 +) +(1,13939:15134922,21836077:2116825,452978,115847 +k1,13939:15134922,21836077:3277 +h1,13939:17248470,21836077:0,411205,112570 +) +k1,13939:17485154,21836077:233407 +k1,13939:18910006,21836077:233407 +(1,13939:18910006,21836077:0,452978,115847 +r1,13939:21026831,21836077:2116825,568825,115847 +k1,13939:18910006,21836077:-2116825 +) +(1,13939:18910006,21836077:2116825,452978,115847 +k1,13939:18910006,21836077:3277 +h1,13939:21023554,21836077:0,411205,112570 +) +k1,13939:21260238,21836077:233407 +k1,13939:22597927,21836077:233407 +k1,13939:23579100,21836077:233407 +k1,13939:25325733,21836077:233407 +k1,13939:26210568,21836077:233407 +k1,13939:27378518,21836077:233407 +k1,13939:28631010,21836077:233407 +k1,13939:30679109,21836077:233407 +k1,13939:31563944,21836077:233407 +k1,13939:32583029,21836077:0 +) +(1,13940:6630773,22677565:25952256,513147,138281 +k1,13939:9122582,22677565:226229 +$1,13939:9122582,22677565 +$1,13939:9625243,22677565 +k1,13939:9851471,22677565:226228 +k1,13939:11269145,22677565:226229 +$1,13939:11269145,22677565 +$1,13939:11820958,22677565 +k1,13939:12047186,22677565:226228 +k1,13939:14175925,22677565:226229 +k1,13939:15018192,22677565:226229 +k1,13939:16510576,22677565:226228 +k1,13939:17690354,22677565:226229 +k1,13939:19314465,22677565:226228 +k1,13939:20633179,22677565:226229 +(1,13939:20633179,22677565:0,452978,115847 +r1,13939:22750004,22677565:2116825,568825,115847 +k1,13939:20633179,22677565:-2116825 +) +(1,13939:20633179,22677565:2116825,452978,115847 +k1,13939:20633179,22677565:3277 +h1,13939:22746727,22677565:0,411205,112570 +) +k1,13939:23149903,22677565:226229 +k1,13939:24448300,22677565:226228 +(1,13939:24448300,22677565:0,452978,115847 +r1,13939:26565125,22677565:2116825,568825,115847 +k1,13939:24448300,22677565:-2116825 +) +(1,13939:24448300,22677565:2116825,452978,115847 +k1,13939:24448300,22677565:3277 +h1,13939:26561848,22677565:0,411205,112570 +) +k1,13939:26791354,22677565:226229 +k1,13939:27549079,22677565:226228 +k1,13939:30512091,22677565:226229 +k1,13939:32583029,22677565:0 +) +(1,13940:6630773,23519053:25952256,513147,7863 +g1,13939:7777653,23519053 +g1,13939:8995967,23519053 +g1,13939:10730049,23519053 +g1,13939:11387375,23519053 +k1,13940:32583029,23519053:18912380 +g1,13940:32583029,23519053 +) +v1,13942:6630773,24493673:0,393216,0 +(1,13946:6630773,24802478:25952256,702021,196608 +g1,13946:6630773,24802478 +g1,13946:6630773,24802478 +g1,13946:6434165,24802478 +(1,13946:6434165,24802478:0,702021,196608 +r1,13946:32779637,24802478:26345472,898629,196608 +k1,13946:6434165,24802478:-26345472 +) +(1,13946:6434165,24802478:26345472,702021,196608 +[1,13946:6630773,24802478:25952256,505413,0 +(1,13944:6630773,24701291:25952256,404226,101187 +(1,13943:6630773,24701291:0,0,0 +g1,13943:6630773,24701291 +g1,13943:6630773,24701291 +g1,13943:6303093,24701291 +(1,13943:6303093,24701291:0,0,0 +) +g1,13943:6630773,24701291 +) +g1,13944:6946919,24701291 +g1,13944:7263065,24701291 +g1,13944:10108377,24701291 +h1,13944:11056814,24701291:0,0,0 +k1,13944:32583030,24701291:21526216 +g1,13944:32583030,24701291 +) +] +) +g1,13946:32583029,24802478 +g1,13946:6630773,24802478 +g1,13946:6630773,24802478 +g1,13946:32583029,24802478 +g1,13946:32583029,24802478 +) +h1,13946:6630773,24999086:0,0,0 +(1,13951:6630773,26149016:25952256,505283,134348 +h1,13949:6630773,26149016:983040,0,0 +k1,13949:8538690,26149016:297042 +k1,13949:11342484,26149016:297042 +k1,13949:13821220,26149016:297042 +k1,13949:15598064,26149016:297041 +k1,13949:17709798,26149016:297042 +k1,13949:20187223,26149016:297042 +k1,13949:21232031,26149016:297042 +k1,13949:24200320,26149016:297042 +k1,13949:25964058,26149016:297042 +k1,13949:28531266,26149016:297041 +k1,13949:29184168,26149016:297042 +k1,13949:32051532,26149016:297042 +k1,13949:32583029,26149016:0 +) +(1,13951:6630773,26990504:25952256,505283,134348 +k1,13949:8905933,26990504:230437 +k1,13949:10958925,26990504:230436 +(1,13949:10958925,26990504:0,414482,115847 +r1,13949:11668903,26990504:709978,530329,115847 +k1,13949:10958925,26990504:-709978 +) +(1,13949:10958925,26990504:709978,414482,115847 +k1,13949:10958925,26990504:3277 +h1,13949:11665626,26990504:0,411205,112570 +) +k1,13949:11899340,26990504:230437 +k1,13949:14140422,26990504:230437 +k1,13949:16108873,26990504:230436 +k1,13949:19010557,26990504:230437 +k1,13949:19927156,26990504:230437 +k1,13949:20615689,26990504:230436 +k1,13949:21377623,26990504:230437 +k1,13949:23002665,26990504:230436 +k1,13949:23884530,26990504:230437 +k1,13949:27633595,26990504:230437 +k1,13949:29944144,26990504:230436 +k1,13949:31193666,26990504:230437 +k1,13949:32583029,26990504:0 +) +(1,13951:6630773,27831992:25952256,513147,134348 +k1,13949:8549610,27831992:180822 +k1,13949:11206382,27831992:180822 +k1,13950:11857098,27831992:180823 +k1,13950:12569417,27831992:180822 +k1,13950:16015898,27831992:180822 +k1,13950:16848148,27831992:180822 +k1,13950:18121456,27831992:180823 +k1,13950:20997774,27831992:180822 +(1,13950:20997774,27831992:0,452978,115847 +r1,13950:26280005,27831992:5282231,568825,115847 +k1,13950:20997774,27831992:-5282231 +) +(1,13950:20997774,27831992:5282231,452978,115847 +k1,13950:20997774,27831992:3277 +h1,13950:26276728,27831992:0,411205,112570 +) +k1,13950:26460827,27831992:180822 +k1,13950:27327811,27831992:180822 +k1,13950:27966731,27831992:180823 +k1,13950:30012052,27831992:180822 +k1,13951:32583029,27831992:0 +) +(1,13951:6630773,28673480:25952256,513147,134348 +k1,13950:7823747,28673480:173889 +k1,13950:11832146,28673480:173888 +k1,13950:15214678,28673480:173889 +k1,13950:17654147,28673480:173889 +k1,13950:19642728,28673480:173889 +k1,13950:20475908,28673480:173888 +k1,13950:21005657,28673480:173889 +k1,13950:24426200,28673480:173889 +k1,13950:26172298,28673480:173889 +k1,13950:28160878,28673480:173888 +k1,13950:29467229,28673480:173889 +k1,13950:31219225,28673480:173889 +k1,13950:32583029,28673480:0 +) +(1,13951:6630773,29514968:25952256,505283,126483 +k1,13950:7807800,29514968:157942 +k1,13950:11123266,29514968:157941 +k1,13950:14373852,29514968:157942 +k1,13950:16346485,29514968:157941 +k1,13950:18202465,29514968:157942 +k1,13950:20658755,29514968:157942 +k1,13950:21468124,29514968:157941 +k1,13950:26058921,29514968:157942 +k1,13950:26982978,29514968:157941 +k1,13950:31386342,29514968:157942 +k1,13950:32583029,29514968:0 +) +(1,13951:6630773,30356456:25952256,513147,134348 +k1,13950:10197314,30356456:163912 +k1,13950:11012655,30356456:163913 +(1,13950:11012655,30356456:0,414482,115847 +r1,13950:11370921,30356456:358266,530329,115847 +k1,13950:11012655,30356456:-358266 +) +(1,13950:11012655,30356456:358266,414482,115847 +k1,13950:11012655,30356456:3277 +h1,13950:11367644,30356456:0,411205,112570 +) +k1,13950:11534833,30356456:163912 +k1,13950:12890191,30356456:163913 +(1,13950:12890191,30356456:0,414482,115847 +r1,13950:13248457,30356456:358266,530329,115847 +k1,13950:12890191,30356456:-358266 +) +(1,13950:12890191,30356456:358266,414482,115847 +k1,13950:12890191,30356456:3277 +h1,13950:13245180,30356456:0,411205,112570 +) +k1,13950:13412369,30356456:163912 +k1,13950:14567842,30356456:163913 +k1,13950:17351883,30356456:163912 +k1,13950:19823974,30356456:163913 +k1,13950:20647178,30356456:163912 +k1,13950:22824357,30356456:163913 +k1,13950:24144979,30356456:163912 +k1,13950:24991777,30356456:163913 +k1,13950:26328128,30356456:163912 +k1,13950:28117334,30356456:163913 +k1,13950:31252648,30356456:163912 +k1,13950:32583029,30356456:0 +) +(1,13951:6630773,31197944:25952256,513147,138281 +k1,13950:7827155,31197944:177297 +k1,13950:9819143,31197944:177296 +k1,13950:10655732,31197944:177297 +k1,13950:11852113,31197944:177296 +$1,13950:11852113,31197944 +$1,13950:12354774,31197944 +k1,13950:12532071,31197944:177297 +k1,13950:13900813,31197944:177297 +$1,13950:13900813,31197944 +$1,13950:14452626,31197944 +k1,13950:14629922,31197944:177296 +k1,13950:18377620,31197944:177297 +k1,13950:20457426,31197944:177296 +k1,13950:21626283,31197944:177297 +k1,13950:24358829,31197944:177297 +k1,13950:26024448,31197944:177296 +k1,13950:27070097,31197944:177297 +k1,13950:29571955,31197944:177296 +k1,13950:30768337,31197944:177297 +k1,13950:32583029,31197944:0 +) +(1,13951:6630773,32039432:25952256,505283,134348 +g1,13950:7481430,32039432 +g1,13950:10018328,32039432 +g1,13950:11236642,32039432 +k1,13951:32583030,32039432:19298388 +g1,13951:32583030,32039432 +) +v1,13953:6630773,33014052:0,393216,0 +(1,13959:6630773,34661505:25952256,2040669,196608 +g1,13959:6630773,34661505 +g1,13959:6630773,34661505 +g1,13959:6434165,34661505 +(1,13959:6434165,34661505:0,2040669,196608 +r1,13959:32779637,34661505:26345472,2237277,196608 +k1,13959:6434165,34661505:-26345472 +) +(1,13959:6434165,34661505:26345472,2040669,196608 +[1,13959:6630773,34661505:25952256,1844061,0 +(1,13955:6630773,33227962:25952256,410518,107478 +(1,13954:6630773,33227962:0,0,0 +g1,13954:6630773,33227962 +g1,13954:6630773,33227962 +g1,13954:6303093,33227962 +(1,13954:6303093,33227962:0,0,0 +) +g1,13954:6630773,33227962 +) +k1,13955:6630773,33227962:0 +g1,13955:12637541,33227962 +g1,13955:14850561,33227962 +g1,13955:16115144,33227962 +h1,13955:16431290,33227962:0,0,0 +k1,13955:32583029,33227962:16151739 +g1,13955:32583029,33227962 +) +(1,13956:6630773,33894140:25952256,404226,107478 +h1,13956:6630773,33894140:0,0,0 +g1,13956:6946919,33894140 +g1,13956:7263065,33894140 +g1,13956:11372959,33894140 +h1,13956:11689105,33894140:0,0,0 +k1,13956:32583029,33894140:20893924 +g1,13956:32583029,33894140 +) +(1,13957:6630773,34560318:25952256,404226,101187 +h1,13957:6630773,34560318:0,0,0 +g1,13957:6946919,34560318 +g1,13957:7263065,34560318 +g1,13957:12321397,34560318 +g1,13957:12953689,34560318 +g1,13957:13902127,34560318 +g1,13957:14534419,34560318 +g1,13957:15166711,34560318 +h1,13957:15799003,34560318:0,0,0 +k1,13957:32583029,34560318:16784026 +g1,13957:32583029,34560318 +) +] +) +g1,13959:32583029,34661505 +g1,13959:6630773,34661505 +g1,13959:6630773,34661505 +g1,13959:32583029,34661505 +g1,13959:32583029,34661505 +) +h1,13959:6630773,34858113:0,0,0 +(1,13962:6630773,45706769:25952256,10474678,0 +k1,13962:12599879,45706769:5969106 +h1,13961:12599879,45706769:0,0,0 +(1,13961:12599879,45706769:14014044,10474678,0 +(1,13961:12599879,45706769:14014766,10474704,0 +(1,13961:12599879,45706769:14014766,10474704,0 +(1,13961:12599879,45706769:0,10474704,0 +(1,13961:12599879,45706769:0,14155776,0 +(1,13961:12599879,45706769:18939904,14155776,0 +) +k1,13961:12599879,45706769:-18939904 +) +) +g1,13961:26614645,45706769 +) +) +) +g1,13962:26613923,45706769 +k1,13962:32583029,45706769:5969106 +) +] +(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 +) +] +h1,13970:4262630,4025873:0,0,0 ] -h1,13944:4262630,4025873:0,0,0 -] -!25123 -}268 -Input:2071:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2072:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2073:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2074:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2075:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2076:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2077:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2078:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2079:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 -{269 -[1,14005:4262630,47279633:28320399,43253760,0 -(1,14005:4262630,4025873:0,0,0 -[1,14005:-473657,4025873:25952256,0,0 -(1,14005:-473657,-710414:25952256,0,0 -h1,14005:-473657,-710414:0,0,0 -(1,14005:-473657,-710414:0,0,0 -(1,14005:-473657,-710414:0,0,0 -g1,14005:-473657,-710414 -(1,14005:-473657,-710414:65781,0,65781 -g1,14005:-407876,-710414 -[1,14005:-407876,-644633:0,0,0 +!25128 +}269 +Input:2068:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2069:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2070:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2071:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2072:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2073:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2074:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2075:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2076:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 +{270 +[1,14031:4262630,47279633:28320399,43253760,0 +(1,14031:4262630,4025873:0,0,0 +[1,14031:-473657,4025873:25952256,0,0 +(1,14031:-473657,-710414:25952256,0,0 +h1,14031:-473657,-710414:0,0,0 +(1,14031:-473657,-710414:0,0,0 +(1,14031:-473657,-710414:0,0,0 +g1,14031:-473657,-710414 +(1,14031:-473657,-710414:65781,0,65781 +g1,14031:-407876,-710414 +[1,14031:-407876,-644633:0,0,0 ] ) -k1,14005:-473657,-710414:-65781 +k1,14031:-473657,-710414:-65781 ) ) -k1,14005:25478599,-710414:25952256 -g1,14005:25478599,-710414 +k1,14031:25478599,-710414:25952256 +g1,14031:25478599,-710414 ) ] ) -[1,14005:6630773,47279633:25952256,43253760,0 -[1,14005:6630773,4812305:25952256,786432,0 -(1,14005:6630773,4812305:25952256,513147,134348 -(1,14005:6630773,4812305:25952256,513147,134348 -g1,14005:3078558,4812305 -[1,14005:3078558,4812305:0,0,0 -(1,14005:3078558,2439708:0,1703936,0 -k1,14005:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14005:2537886,2439708:1179648,16384,0 +[1,14031:6630773,47279633:25952256,43253760,0 +[1,14031:6630773,4812305:25952256,786432,0 +(1,14031:6630773,4812305:25952256,505283,11795 +(1,14031:6630773,4812305:25952256,505283,11795 +g1,14031:3078558,4812305 +[1,14031:3078558,4812305:0,0,0 +(1,14031:3078558,2439708:0,1703936,0 +k1,14031:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14031:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14005:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14031:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14005:3078558,4812305:0,0,0 -(1,14005:3078558,2439708:0,1703936,0 -g1,14005:29030814,2439708 -g1,14005:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14005:36151628,1915420:16384,1179648,0 +[1,14031:3078558,4812305:0,0,0 +(1,14031:3078558,2439708:0,1703936,0 +g1,14031:29030814,2439708 +g1,14031:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14031:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14005:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14031:37855564,2439708:1179648,16384,0 ) ) -k1,14005:3078556,2439708:-34777008 +k1,14031:3078556,2439708:-34777008 ) ] -[1,14005:3078558,4812305:0,0,0 -(1,14005:3078558,49800853:0,16384,2228224 -k1,14005:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14005:2537886,49800853:1179648,16384,0 +[1,14031:3078558,4812305:0,0,0 +(1,14031:3078558,49800853:0,16384,2228224 +k1,14031:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14031:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14005:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14031:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14005:3078558,4812305:0,0,0 -(1,14005:3078558,49800853:0,16384,2228224 -g1,14005:29030814,49800853 -g1,14005:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14005:36151628,51504789:16384,1179648,0 +[1,14031:3078558,4812305:0,0,0 +(1,14031:3078558,49800853:0,16384,2228224 +g1,14031:29030814,49800853 +g1,14031:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14031:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14005:37855564,49800853:1179648,16384,0 -) -) -k1,14005:3078556,49800853:-34777008 -) -] -g1,14005:6630773,4812305 -k1,14005:25712890,4812305:17886740 -g1,14005:29057847,4812305 -g1,14005:29873114,4812305 -) -) -] -[1,14005:6630773,45706769:25952256,40108032,0 -(1,14005:6630773,45706769:25952256,40108032,0 -(1,14005:6630773,45706769:0,0,0 -g1,14005:6630773,45706769 -) -[1,14005:6630773,45706769:25952256,40108032,0 -(1,13944:6630773,6254097:25952256,513147,126483 -h1,13943:6630773,6254097:983040,0,0 -k1,13943:8980413,6254097:169913 -(1,13943:8980413,6254097:0,452978,115847 -r1,13943:11097238,6254097:2116825,568825,115847 -k1,13943:8980413,6254097:-2116825 -) -(1,13943:8980413,6254097:2116825,452978,115847 -k1,13943:8980413,6254097:3277 -h1,13943:11093961,6254097:0,411205,112570 -) -k1,13943:11267152,6254097:169914 -k1,13943:14717797,6254097:169913 -k1,13943:15547002,6254097:169913 -k1,13943:16736000,6254097:169913 -k1,13943:18808424,6254097:169914 -k1,13943:20651471,6254097:169913 -k1,13943:21177244,6254097:169913 -k1,13943:24109500,6254097:169913 -k1,13943:25514768,6254097:169914 -k1,13943:27127128,6254097:169913 -(1,13943:27127128,6254097:0,452978,115847 -r1,13943:32409359,6254097:5282231,568825,115847 -k1,13943:27127128,6254097:-5282231 -) -(1,13943:27127128,6254097:5282231,452978,115847 -k1,13943:27127128,6254097:3277 -h1,13943:32406082,6254097:0,411205,112570 -) -k1,13943:32583029,6254097:0 -) -(1,13944:6630773,7095585:25952256,513147,134348 -k1,13943:7291984,7095585:191318 -k1,13943:10101465,7095585:191318 -k1,13943:11623165,7095585:191319 -k1,13943:13597718,7095585:191318 -k1,13943:15648292,7095585:191318 -k1,13943:16858695,7095585:191318 -k1,13943:19514822,7095585:191318 -k1,13943:22230588,7095585:191319 -k1,13943:23769326,7095585:191318 -k1,13943:24492141,7095585:191318 -k1,13943:27864577,7095585:191318 -k1,13943:28707324,7095585:191319 -k1,13943:29917727,7095585:191318 -k1,13943:31923737,7095585:191318 -k1,13943:32583029,7095585:0 -) -(1,13944:6630773,7937073:25952256,505283,134348 -k1,13943:7840437,7937073:190579 -k1,13943:9953186,7937073:190578 -k1,13943:12668212,7937073:190579 -k1,13943:14379881,7937073:190578 -k1,13943:15198295,7937073:190579 -k1,13943:17090844,7937073:190579 -k1,13943:19410031,7937073:190578 -k1,13943:20058707,7937073:190579 -k1,13943:21776929,7937073:190578 -k1,13943:22323368,7937073:190579 -k1,13943:25368695,7937073:190579 -k1,13943:26242158,7937073:190578 -k1,13943:29041070,7937073:190579 -k1,13943:29883076,7937073:190578 -k1,13943:31092740,7937073:190579 -k1,13944:32583029,7937073:0 -) -(1,13944:6630773,8778561:25952256,505283,134348 -k1,13943:8114180,8778561:236257 -k1,13943:9697858,8778561:236258 -k1,13943:12299965,8778561:236257 -k1,13943:13555307,8778561:236257 -k1,13943:15606256,8778561:236257 -k1,13943:16777057,8778561:236258 -k1,13943:18869294,8778561:236257 -k1,13943:22940062,8778561:236257 -k1,13943:23859204,8778561:236257 -k1,13943:27201869,8778561:236258 -k1,13943:28893025,8778561:236257 -k1,13943:30975431,8778561:236257 -k1,13943:32583029,8778561:0 -) -(1,13944:6630773,9620049:25952256,513147,134348 -k1,13943:7781176,9620049:158843 -k1,13943:9940832,9620049:158842 -k1,13943:10824503,9620049:158843 -k1,13943:12267852,9620049:158843 -k1,13943:16498447,9620049:158843 -k1,13943:17648849,9620049:158842 -k1,13943:20109972,9620049:158843 -k1,13943:21078185,9620049:158843 -k1,13943:22309197,9620049:158843 -k1,13943:23127331,9620049:158842 -k1,13943:24305259,9620049:158843 -k1,13943:26036311,9620049:158843 -k1,13943:28914898,9620049:158843 -k1,13943:30276981,9620049:158842 -k1,13943:30967321,9620049:158843 -k1,13943:31482024,9620049:158843 -k1,13943:32583029,9620049:0 -) -(1,13944:6630773,10461537:25952256,513147,134348 -k1,13943:8105005,10461537:238878 -k1,13943:9011038,10461537:238877 -(1,13943:9011038,10461537:0,452978,115847 -r1,13943:11127863,10461537:2116825,568825,115847 -k1,13943:9011038,10461537:-2116825 -) -(1,13943:9011038,10461537:2116825,452978,115847 -k1,13943:9011038,10461537:3277 -h1,13943:11124586,10461537:0,411205,112570 -) -k1,13943:11540411,10461537:238878 -k1,13943:13013332,10461537:238878 -k1,13943:14859807,10461537:238877 -k1,13943:16290130,10461537:238878 -k1,13943:19344435,10461537:238878 -k1,13943:23373914,10461537:238877 -k1,13943:24745254,10461537:238878 -k1,13943:26269948,10461537:238878 -k1,13943:28800619,10461537:238877 -k1,13943:30058582,10461537:238878 -k1,13943:32583029,10461537:0 -) -(1,13944:6630773,11303025:25952256,513147,134348 -g1,13943:8177422,11303025 -g1,13943:9028079,11303025 -g1,13943:9975074,11303025 -g1,13943:13440617,11303025 -g1,13943:14267681,11303025 -g1,13943:17295443,11303025 -g1,13943:18513757,11303025 -g1,13943:20978566,11303025 -g1,13943:21709292,11303025 -g1,13943:22559949,11303025 -g1,13943:24888443,11303025 -g1,13943:26851246,11303025 -g1,13943:28742615,11303025 -k1,13944:32583029,11303025:422056 -g1,13944:32583029,11303025 -) -(1,13946:6630773,12144513:25952256,513147,134348 -h1,13945:6630773,12144513:983040,0,0 -k1,13945:8759776,12144513:192414 -k1,13945:10350072,12144513:192413 -k1,13945:11477029,12144513:192414 -k1,13945:12688528,12144513:192414 -k1,13945:14772965,12144513:192413 -k1,13945:16449769,12144513:192414 -k1,13945:17301475,12144513:192414 -k1,13945:18512973,12144513:192413 -k1,13945:21229834,12144513:192414 -k1,13945:22769668,12144513:192414 -k1,13945:23613509,12144513:192413 -k1,13945:24553689,12144513:192414 -k1,13945:27838747,12144513:192414 -k1,13945:28792688,12144513:192413 -k1,13945:31172694,12144513:192414 -k1,13946:32583029,12144513:0 -) -(1,13946:6630773,12986001:25952256,513147,134348 -k1,13945:8273667,12986001:231904 -k1,13945:9156998,12986001:231903 -k1,13945:10407987,12986001:231904 -k1,13945:11712060,12986001:231904 -k1,13945:13135408,12986001:231903 -k1,13945:15722021,12986001:231904 -k1,13945:16973010,12986001:231904 -k1,13945:19470493,12986001:231903 -k1,13945:22310730,12986001:231904 -k1,13945:24110254,12986001:231903 -k1,13945:25361243,12986001:231904 -k1,13945:27916398,12986001:231904 -k1,13945:28807593,12986001:231903 -k1,13945:30058582,12986001:231904 -k1,13945:32583029,12986001:0 -) -(1,13946:6630773,13827489:25952256,355205,7863 -k1,13946:32583028,13827489:24431164 -g1,13946:32583028,13827489 -) -v1,13948:6630773,14927130:0,393216,0 -(1,13955:6630773,17240761:25952256,2706847,196608 -g1,13955:6630773,17240761 -g1,13955:6630773,17240761 -g1,13955:6434165,17240761 -(1,13955:6434165,17240761:0,2706847,196608 -r1,13955:32779637,17240761:26345472,2903455,196608 -k1,13955:6434165,17240761:-26345472 -) -(1,13955:6434165,17240761:26345472,2706847,196608 -[1,13955:6630773,17240761:25952256,2510239,0 -(1,13950:6630773,15141040:25952256,410518,107478 -(1,13949:6630773,15141040:0,0,0 -g1,13949:6630773,15141040 -g1,13949:6630773,15141040 -g1,13949:6303093,15141040 -(1,13949:6303093,15141040:0,0,0 -) -g1,13949:6630773,15141040 -) -k1,13950:6630773,15141040:0 -k1,13950:6630773,15141040:0 -h1,13950:12321395,15141040:0,0,0 -k1,13950:32583029,15141040:20261634 -g1,13950:32583029,15141040 -) -(1,13951:6630773,15807218:25952256,410518,107478 -h1,13951:6630773,15807218:0,0,0 -g1,13951:6946919,15807218 -g1,13951:7263065,15807218 -g1,13951:10108377,15807218 -g1,13951:10740669,15807218 -g1,13951:12953689,15807218 -g1,13951:14850563,15807218 -g1,13951:15482855,15807218 -g1,13951:17695875,15807218 -g1,13951:18328167,15807218 -g1,13951:18960459,15807218 -g1,13951:20225042,15807218 -h1,13951:20541188,15807218:0,0,0 -k1,13951:32583029,15807218:12041841 -g1,13951:32583029,15807218 -) -(1,13952:6630773,16473396:25952256,404226,101187 -h1,13952:6630773,16473396:0,0,0 -g1,13952:6946919,16473396 -g1,13952:7263065,16473396 -g1,13952:13269833,16473396 -g1,13952:13902125,16473396 -g1,13952:15482854,16473396 -h1,13952:15799000,16473396:0,0,0 -k1,13952:32583028,16473396:16784028 -g1,13952:32583028,16473396 -) -(1,13953:6630773,17139574:25952256,404226,101187 -h1,13953:6630773,17139574:0,0,0 -g1,13953:6946919,17139574 -g1,13953:7263065,17139574 -g1,13953:15482853,17139574 -g1,13953:16115145,17139574 -g1,13953:21489622,17139574 -g1,13953:22121914,17139574 -g1,13953:23702644,17139574 -h1,13953:25915664,17139574:0,0,0 -k1,13953:32583029,17139574:6667365 -g1,13953:32583029,17139574 -) -] -) -g1,13955:32583029,17240761 -g1,13955:6630773,17240761 -g1,13955:6630773,17240761 -g1,13955:32583029,17240761 -g1,13955:32583029,17240761 -) -h1,13955:6630773,17437369:0,0,0 -(1,13959:6630773,18712320:25952256,513147,126483 -h1,13958:6630773,18712320:983040,0,0 -k1,13958:9309798,18712320:207662 -k1,13958:10385811,18712320:207661 -k1,13958:12920656,18712320:207662 -k1,13958:14220803,18712320:207662 -k1,13958:14784324,18712320:207661 -k1,13958:18152787,18712320:207662 -k1,13958:19011877,18712320:207662 -k1,13958:19575398,18712320:207661 -k1,13958:21985070,18712320:207662 -k1,13958:23963515,18712320:207662 -k1,13958:24857338,18712320:207661 -k1,13958:27093995,18712320:207662 -k1,13958:28170009,18712320:207662 -k1,13958:29575013,18712320:207661 -k1,13958:31021961,18712320:207662 -k1,13959:32583029,18712320:0 -) -(1,13959:6630773,19553808:25952256,513147,134348 -g1,13958:8663044,19553808 -g1,13958:9513701,19553808 -g1,13958:10732015,19553808 -g1,13958:12711857,19553808 -g1,13958:13570378,19553808 -g1,13958:14788692,19553808 -(1,13958:14788692,19553808:0,452978,115847 -r1,13958:16905517,19553808:2116825,568825,115847 -k1,13958:14788692,19553808:-2116825 -) -(1,13958:14788692,19553808:2116825,452978,115847 -k1,13958:14788692,19553808:3277 -h1,13958:16902240,19553808:0,411205,112570 -) -k1,13959:32583029,19553808:15503842 -g1,13959:32583029,19553808 -) -v1,13961:6630773,20653449:0,393216,0 -(1,13965:6630773,20962254:25952256,702021,196608 -g1,13965:6630773,20962254 -g1,13965:6630773,20962254 -g1,13965:6434165,20962254 -(1,13965:6434165,20962254:0,702021,196608 -r1,13965:32779637,20962254:26345472,898629,196608 -k1,13965:6434165,20962254:-26345472 -) -(1,13965:6434165,20962254:26345472,702021,196608 -[1,13965:6630773,20962254:25952256,505413,0 -(1,13963:6630773,20861067:25952256,404226,101187 -(1,13962:6630773,20861067:0,0,0 -g1,13962:6630773,20861067 -g1,13962:6630773,20861067 -g1,13962:6303093,20861067 -(1,13962:6303093,20861067:0,0,0 -) -g1,13962:6630773,20861067 -) -g1,13963:6946919,20861067 -g1,13963:7263065,20861067 -g1,13963:15482853,20861067 -g1,13963:16115145,20861067 -g1,13963:21805768,20861067 -g1,13963:22438060,20861067 -g1,13963:24018790,20861067 -h1,13963:25915664,20861067:0,0,0 -k1,13963:32583029,20861067:6667365 -g1,13963:32583029,20861067 -) -] -) -g1,13965:32583029,20962254 -g1,13965:6630773,20962254 -g1,13965:6630773,20962254 -g1,13965:32583029,20962254 -g1,13965:32583029,20962254 -) -h1,13965:6630773,21158862:0,0,0 -(1,13969:6630773,22433814:25952256,513147,134348 -h1,13968:6630773,22433814:983040,0,0 -k1,13968:8479241,22433814:237593 -k1,13968:9735919,22433814:237593 -k1,13968:11340593,22433814:237593 -k1,13968:12237478,22433814:237593 -k1,13968:14551252,22433814:237593 -k1,13968:15657197,22433814:237593 -k1,13968:18065343,22433814:237594 -k1,13968:20609148,22433814:237593 -k1,13968:22355380,22433814:237593 -k1,13968:25451653,22433814:237593 -k1,13968:28247772,22433814:237593 -k1,13968:29504450,22433814:237593 -k1,13968:31923737,22433814:237593 -k1,13968:32583029,22433814:0 -) -(1,13969:6630773,23275302:25952256,513147,11795 -k1,13968:8820734,23275302:201599 -k1,13968:9975882,23275302:201599 -k1,13968:11707746,23275302:201598 -k1,13968:14236528,23275302:201599 -k1,13968:15089555,23275302:201599 -k1,13968:16383639,23275302:201599 -k1,13968:16941097,23275302:201598 -k1,13968:21979908,23275302:201599 -k1,13968:22867669,23275302:201599 -k1,13968:26159291,23275302:201599 -k1,13968:26976927,23275302:201598 -k1,13968:29457213,23275302:201599 -h1,13968:31572060,23275302:0,0,0 -k1,13968:31773659,23275302:201599 -k1,13968:32583029,23275302:0 -) -(1,13969:6630773,24116790:25952256,513147,134348 -k1,13968:8334885,24116790:205959 -h1,13968:9530262,24116790:0,0,0 -k1,13968:9909892,24116790:205960 -k1,13968:11360380,24116790:205959 -k1,13968:16203012,24116790:205960 -(1,13968:16203012,24116790:0,452978,115847 -r1,13968:18319837,24116790:2116825,568825,115847 -k1,13968:16203012,24116790:-2116825 -) -(1,13968:16203012,24116790:2116825,452978,115847 -k1,13968:16203012,24116790:3277 -h1,13968:18316560,24116790:0,411205,112570 -) -k1,13968:18525796,24116790:205959 -k1,13968:19923201,24116790:205960 -(1,13968:19923201,24116790:0,452978,115847 -r1,13968:22040026,24116790:2116825,568825,115847 -k1,13968:19923201,24116790:-2116825 -) -(1,13968:19923201,24116790:2116825,452978,115847 -k1,13968:19923201,24116790:3277 -h1,13968:22036749,24116790:0,411205,112570 -) -k1,13968:22245985,24116790:205959 -k1,13968:23267213,24116790:205960 -k1,13968:26479308,24116790:205959 -k1,13968:28366922,24116790:205960 -k1,13968:29776122,24116790:205959 -k1,13969:32583029,24116790:0 -) -(1,13969:6630773,24958278:25952256,505283,134348 -g1,13968:9073299,24958278 -g1,13968:11831054,24958278 -g1,13968:13049368,24958278 -g1,13968:15868726,24958278 -g1,13968:18078600,24958278 -g1,13968:20483116,24958278 -g1,13968:21368507,24958278 -k1,13969:32583029,24958278:9226160 -g1,13969:32583029,24958278 -) -v1,13974:6630773,26233229:0,393216,0 -(1,13984:6630773,31277550:25952256,5437537,616038 -g1,13984:6630773,31277550 -(1,13984:6630773,31277550:25952256,5437537,616038 -(1,13984:6630773,31893588:25952256,6053575,0 -[1,13984:6630773,31893588:25952256,6053575,0 -(1,13984:6630773,31867374:25952256,6001147,0 -r1,13984:6656987,31867374:26214,6001147,0 -[1,13984:6656987,31867374:25899828,6001147,0 -(1,13984:6656987,31277550:25899828,4821499,0 -[1,13984:7246811,31277550:24720180,4821499,0 -(1,13975:7246811,27543425:24720180,1087374,134348 -k1,13974:8674362,27543425:217848 -k1,13974:10261257,27543425:217848 -k1,13974:12027720,27543425:217847 -k1,13974:13264653,27543425:217848 -k1,13974:15325373,27543425:217848 -k1,13974:16074718,27543425:217848 -k1,13974:17990604,27543425:217848 -k1,13974:19227536,27543425:217847 -k1,13974:20751517,27543425:217848 -k1,13974:22453755,27543425:217848 -k1,13974:23203100,27543425:217848 -k1,13974:25280204,27543425:217848 -k1,13974:26940498,27543425:217847 -k1,13974:28177431,27543425:217848 -k1,13974:30636610,27543425:217848 -k1,13974:31966991,27543425:0 -) -(1,13975:7246811,28384913:24720180,505283,134348 -g1,13974:7989333,28384913 -g1,13974:8646659,28384913 -g1,13974:9864973,28384913 -g1,13974:11717675,28384913 -g1,13974:12603066,28384913 -g1,13974:14500333,28384913 -g1,13974:16881256,28384913 -g1,13974:18777212,28384913 -g1,13974:20629914,28384913 -g1,13974:22839788,28384913 -g1,13974:23725179,28384913 -g1,13974:25739100,28384913 -g1,13974:27332280,28384913 -(1,13974:27332280,28384913:0,452978,115847 -r1,13984:29449105,28384913:2116825,568825,115847 -k1,13974:27332280,28384913:-2116825 -) -(1,13974:27332280,28384913:2116825,452978,115847 -k1,13974:27332280,28384913:3277 -h1,13974:29445828,28384913:0,411205,112570 -) -k1,13975:31966991,28384913:2190861 -g1,13975:31966991,28384913 -) -v1,13977:7246811,29575379:0,393216,0 -(1,13982:7246811,30556654:24720180,1374491,196608 -g1,13982:7246811,30556654 -g1,13982:7246811,30556654 -g1,13982:7050203,30556654 -(1,13982:7050203,30556654:0,1374491,196608 -r1,13984:32163599,30556654:25113396,1571099,196608 -k1,13982:7050203,30556654:-25113396 -) -(1,13982:7050203,30556654:25113396,1374491,196608 -[1,13982:7246811,30556654:24720180,1177883,0 -(1,13979:7246811,29789289:24720180,410518,107478 -(1,13978:7246811,29789289:0,0,0 -g1,13978:7246811,29789289 -g1,13978:7246811,29789289 -g1,13978:6919131,29789289 -(1,13978:6919131,29789289:0,0,0 -) -g1,13978:7246811,29789289 -) -k1,13979:7246811,29789289:0 -g1,13979:13253579,29789289 -g1,13979:15466599,29789289 -g1,13979:16731182,29789289 -g1,13979:17363474,29789289 -g1,13979:21473368,29789289 -h1,13979:21789514,29789289:0,0,0 -k1,13979:31966991,29789289:10177477 -g1,13979:31966991,29789289 -) -(1,13980:7246811,30455467:24720180,404226,101187 -h1,13980:7246811,30455467:0,0,0 -g1,13980:7562957,30455467 -g1,13980:7879103,30455467 -g1,13980:16098891,30455467 -g1,13980:16731183,30455467 -g1,13980:18944204,30455467 -h1,13980:19892641,30455467:0,0,0 -k1,13980:31966991,30455467:12074350 -g1,13980:31966991,30455467 -) -] -) -g1,13982:31966991,30556654 -g1,13982:7246811,30556654 -g1,13982:7246811,30556654 -g1,13982:31966991,30556654 -g1,13982:31966991,30556654 -) -h1,13982:7246811,30753262:0,0,0 -] -) -] -r1,13984:32583029,31867374:26214,6001147,0 -) -] -) -) -g1,13984:32583029,31277550 -) -h1,13984:6630773,31893588:0,0,0 -(1,13986:6630773,33521508:25952256,505283,7863 -(1,13986:6630773,33521508:2809528,485622,0 -g1,13986:6630773,33521508 -g1,13986:9440301,33521508 -) -g1,13986:11452256,33521508 -g1,13986:12877008,33521508 -g1,13986:14649101,33521508 -k1,13986:32583029,33521508:16012412 -g1,13986:32583029,33521508 -) -(1,13989:6630773,34756212:25952256,513147,134348 -k1,13988:10158171,34756212:291886 -(1,13988:10158171,34756212:0,452978,115847 -r1,13988:12274996,34756212:2116825,568825,115847 -k1,13988:10158171,34756212:-2116825 -) -(1,13988:10158171,34756212:2116825,452978,115847 -k1,13988:10158171,34756212:3277 -h1,13988:12271719,34756212:0,411205,112570 -) -k1,13988:12566883,34756212:291887 -k1,13988:13390266,34756212:291886 -k1,13988:15195379,34756212:291887 -k1,13988:16138693,34756212:291886 -k1,13988:17365123,34756212:291887 -k1,13988:18676094,34756212:291886 -k1,13988:21524540,34756212:291887 -k1,13988:22475718,34756212:291886 -k1,13988:24282142,34756212:291887 -k1,13988:26318596,34756212:291886 -k1,13988:27629568,34756212:291887 -k1,13988:29347517,34756212:291886 -k1,13989:32583029,34756212:0 -) -(1,13989:6630773,35597700:25952256,505283,126483 -(1,13988:6630773,35597700:0,452978,115847 -r1,13988:8747598,35597700:2116825,568825,115847 -k1,13988:6630773,35597700:-2116825 -) -(1,13988:6630773,35597700:2116825,452978,115847 -k1,13988:6630773,35597700:3277 -h1,13988:8744321,35597700:0,411205,112570 -) -k1,13988:8924937,35597700:177339 -k1,13988:9633774,35597700:177340 -k1,13988:11324339,35597700:177339 -k1,13988:12153107,35597700:177340 -k1,13988:13264989,35597700:177339 -k1,13988:14461413,35597700:177339 -k1,13988:15822989,35597700:177340 -k1,13988:18018182,35597700:177339 -k1,13988:19660907,35597700:177340 -k1,13988:23449280,35597700:177339 -k1,13988:24730901,35597700:177339 -k1,13988:25656007,35597700:177340 -k1,13988:28038633,35597700:177339 -k1,13988:30071953,35597700:177340 -k1,13988:30605152,35597700:177339 -k1,13988:32583029,35597700:0 -) -(1,13989:6630773,36439188:25952256,513147,134348 -k1,13988:7536434,36439188:222776 -k1,13988:8115069,36439188:222775 -k1,13988:11033341,36439188:222776 -k1,13988:11942278,36439188:222775 -k1,13988:12935757,36439188:222776 -k1,13988:16404530,36439188:222775 -k1,13988:17823993,36439188:222776 -k1,13988:20312348,36439188:222775 -k1,13988:21066621,36439188:222776 -k1,13988:21940824,36439188:222775 -k1,13988:24951502,36439188:222776 -k1,13988:27358592,36439188:222775 -k1,13988:29696215,36439188:222776 -k1,13988:31773659,36439188:222775 -k1,13988:32583029,36439188:0 -) -(1,13989:6630773,37280676:25952256,513147,134348 -g1,13988:7849087,37280676 -g1,13988:9863008,37280676 -g1,13988:11253682,37280676 -g1,13988:13633294,37280676 -g1,13988:14851608,37280676 -g1,13988:17866919,37280676 -g1,13988:18752310,37280676 -k1,13989:32583029,37280676:11460937 -g1,13989:32583029,37280676 -) -(1,13991:6630773,38122164:25952256,513147,134348 -h1,13990:6630773,38122164:983040,0,0 -k1,13990:9563564,38122164:166516 -k1,13990:12662816,38122164:166516 -k1,13990:15011025,38122164:166515 -k1,13990:17466058,38122164:166516 -k1,13990:18500926,38122164:166516 -k1,13990:19771724,38122164:166516 -k1,13990:21446223,38122164:166516 -k1,13990:22631824,38122164:166516 -k1,13990:25063919,38122164:166515 -k1,13990:28439078,38122164:166516 -k1,13990:30449777,38122164:166516 -k1,13990:31563944,38122164:166516 -k1,13991:32583029,38122164:0 -) -(1,13991:6630773,38963652:25952256,452978,115847 -(1,13990:6630773,38963652:0,452978,115847 -r1,13990:8747598,38963652:2116825,568825,115847 -k1,13990:6630773,38963652:-2116825 -) -(1,13990:6630773,38963652:2116825,452978,115847 -k1,13990:6630773,38963652:3277 -h1,13990:8744321,38963652:0,411205,112570 -) -k1,13991:32583028,38963652:23661760 -g1,13991:32583028,38963652 -) -v1,13993:6630773,40063293:0,393216,0 -(1,13999:6630773,41710746:25952256,2040669,196608 -g1,13999:6630773,41710746 -g1,13999:6630773,41710746 -g1,13999:6434165,41710746 -(1,13999:6434165,41710746:0,2040669,196608 -r1,13999:32779637,41710746:26345472,2237277,196608 -k1,13999:6434165,41710746:-26345472 -) -(1,13999:6434165,41710746:26345472,2040669,196608 -[1,13999:6630773,41710746:25952256,1844061,0 -(1,13995:6630773,40277203:25952256,410518,107478 -(1,13994:6630773,40277203:0,0,0 -g1,13994:6630773,40277203 -g1,13994:6630773,40277203 -g1,13994:6303093,40277203 -(1,13994:6303093,40277203:0,0,0 -) -g1,13994:6630773,40277203 -) -k1,13995:6630773,40277203:0 -g1,13995:12637541,40277203 -g1,13995:14850561,40277203 -g1,13995:16115144,40277203 -h1,13995:16431290,40277203:0,0,0 -k1,13995:32583029,40277203:16151739 -g1,13995:32583029,40277203 -) -(1,13996:6630773,40943381:25952256,404226,107478 -h1,13996:6630773,40943381:0,0,0 -g1,13996:6946919,40943381 -g1,13996:7263065,40943381 -g1,13996:11372959,40943381 -h1,13996:11689105,40943381:0,0,0 -k1,13996:32583029,40943381:20893924 -g1,13996:32583029,40943381 -) -(1,13997:6630773,41609559:25952256,404226,101187 -h1,13997:6630773,41609559:0,0,0 -g1,13997:6946919,41609559 -g1,13997:7263065,41609559 -g1,13997:15482853,41609559 -g1,13997:16115145,41609559 -g1,13997:18012020,41609559 -g1,13997:18960457,41609559 -g1,13997:19592749,41609559 -g1,13997:20857332,41609559 -g1,13997:22121915,41609559 -h1,13997:23386497,41609559:0,0,0 -k1,13997:32583029,41609559:9196532 -g1,13997:32583029,41609559 -) -] -) -g1,13999:32583029,41710746 -g1,13999:6630773,41710746 -g1,13999:6630773,41710746 -g1,13999:32583029,41710746 -g1,13999:32583029,41710746 -) -h1,13999:6630773,41907354:0,0,0 -(1,14003:6630773,43182305:25952256,513147,126483 -h1,14002:6630773,43182305:983040,0,0 -k1,14002:9082180,43182305:271680 -k1,14002:11619440,43182305:271680 -k1,14002:14005967,43182305:271680 -k1,14002:15269207,43182305:271680 -k1,14002:18749529,43182305:271679 -k1,14002:19782737,43182305:271680 -k1,14002:22749913,43182305:271680 -(1,14002:22749913,43182305:0,452978,115847 -r1,14002:28032144,43182305:5282231,568825,115847 -k1,14002:22749913,43182305:-5282231 -) -(1,14002:22749913,43182305:5282231,452978,115847 -k1,14002:22749913,43182305:3277 -h1,14002:28028867,43182305:0,411205,112570 -) -k1,14002:28303824,43182305:271680 -k1,14002:30143125,43182305:271680 -k1,14002:32583029,43182305:0 -) -(1,14003:6630773,44023793:25952256,505283,134348 -k1,14002:8021816,44023793:194356 -k1,14002:11288500,44023793:194356 -k1,14002:13688143,44023793:194356 -k1,14002:14533926,44023793:194355 -k1,14002:15516680,44023793:194356 -k1,14002:18991768,44023793:194356 -(1,14002:18991768,44023793:0,414482,115847 -r1,14002:19350034,44023793:358266,530329,115847 -k1,14002:18991768,44023793:-358266 -) -(1,14002:18991768,44023793:358266,414482,115847 -k1,14002:18991768,44023793:3277 -h1,14002:19346757,44023793:0,411205,112570 -) -k1,14002:19544390,44023793:194356 -k1,14002:23313080,44023793:194356 -k1,14002:24526521,44023793:194356 -k1,14002:26600449,44023793:194355 -k1,14002:29280586,44023793:194356 -k1,14002:30989479,44023793:194356 -k1,14002:31835263,44023793:194356 -k1,14002:32583029,44023793:0 -) -(1,14003:6630773,44865281:25952256,513147,134348 -k1,14002:9964947,44865281:181237 -k1,14002:14636710,44865281:181236 -k1,14002:15890116,44865281:181237 -k1,14002:17090438,44865281:181237 -k1,14002:19193846,44865281:181237 -k1,14002:21860863,44865281:181236 -k1,14002:22701392,44865281:181237 -k1,14002:24397166,44865281:181237 -k1,14002:27787046,44865281:181237 -k1,14002:29305216,44865281:181236 -k1,14002:30234219,44865281:181237 -k1,14002:32583029,44865281:0 -) -(1,14003:6630773,45706769:25952256,513147,134348 -g1,14002:9592345,45706769 -g1,14002:13153571,45706769 -g1,14002:14162170,45706769 -g1,14002:15380484,45706769 -g1,14002:17360326,45706769 -g1,14002:18218847,45706769 -g1,14002:19437161,45706769 -k1,14003:32583029,45706769:11582834 -g1,14003:32583029,45706769 -) -] -(1,14005:32583029,45706769:0,0,0 -g1,14005:32583029,45706769 -) -) -] -(1,14005:6630773,47279633:25952256,0,0 -h1,14005:6630773,47279633:25952256,0,0 -) -] -h1,14005:4262630,4025873:0,0,0 -] -!26663 -}269 -Input:2080:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2081:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2082:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2083:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2084:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2085:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2086:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2087:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2088:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2089:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2090:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2091:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2092:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 -{270 -[1,14056:4262630,47279633:28320399,43253760,0 -(1,14056:4262630,4025873:0,0,0 -[1,14056:-473657,4025873:25952256,0,0 -(1,14056:-473657,-710414:25952256,0,0 -h1,14056:-473657,-710414:0,0,0 -(1,14056:-473657,-710414:0,0,0 -(1,14056:-473657,-710414:0,0,0 -g1,14056:-473657,-710414 -(1,14056:-473657,-710414:65781,0,65781 -g1,14056:-407876,-710414 -[1,14056:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14031:37855564,49800853:1179648,16384,0 +) +) +k1,14031:3078556,49800853:-34777008 +) +] +g1,14031:6630773,4812305 +g1,14031:6630773,4812305 +g1,14031:8724648,4812305 +k1,14031:31387652,4812305:22663004 +) +) +] +[1,14031:6630773,45706769:25952256,40108032,0 +(1,14031:6630773,45706769:25952256,40108032,0 +(1,14031:6630773,45706769:0,0,0 +g1,14031:6630773,45706769 +) +[1,14031:6630773,45706769:25952256,40108032,0 +(1,13970:6630773,6254097:25952256,513147,126483 +h1,13969:6630773,6254097:983040,0,0 +k1,13969:8980413,6254097:169913 +(1,13969:8980413,6254097:0,452978,115847 +r1,13969:11097238,6254097:2116825,568825,115847 +k1,13969:8980413,6254097:-2116825 +) +(1,13969:8980413,6254097:2116825,452978,115847 +k1,13969:8980413,6254097:3277 +h1,13969:11093961,6254097:0,411205,112570 +) +k1,13969:11267152,6254097:169914 +k1,13969:14717797,6254097:169913 +k1,13969:15547002,6254097:169913 +k1,13969:16736000,6254097:169913 +k1,13969:18808424,6254097:169914 +k1,13969:20651471,6254097:169913 +k1,13969:21177244,6254097:169913 +k1,13969:24109500,6254097:169913 +k1,13969:25514768,6254097:169914 +k1,13969:27127128,6254097:169913 +(1,13969:27127128,6254097:0,452978,115847 +r1,13969:32409359,6254097:5282231,568825,115847 +k1,13969:27127128,6254097:-5282231 +) +(1,13969:27127128,6254097:5282231,452978,115847 +k1,13969:27127128,6254097:3277 +h1,13969:32406082,6254097:0,411205,112570 +) +k1,13969:32583029,6254097:0 +) +(1,13970:6630773,7095585:25952256,513147,134348 +k1,13969:7291984,7095585:191318 +k1,13969:10101465,7095585:191318 +k1,13969:11623165,7095585:191319 +k1,13969:13597718,7095585:191318 +k1,13969:15648292,7095585:191318 +k1,13969:16858695,7095585:191318 +k1,13969:19514822,7095585:191318 +k1,13969:22230588,7095585:191319 +k1,13969:23769326,7095585:191318 +k1,13969:24492141,7095585:191318 +k1,13969:27864577,7095585:191318 +k1,13969:28707324,7095585:191319 +k1,13969:29917727,7095585:191318 +k1,13969:31923737,7095585:191318 +k1,13969:32583029,7095585:0 +) +(1,13970:6630773,7937073:25952256,505283,134348 +k1,13969:7840437,7937073:190579 +k1,13969:9953186,7937073:190578 +k1,13969:12668212,7937073:190579 +k1,13969:14379881,7937073:190578 +k1,13969:15198295,7937073:190579 +k1,13969:17090844,7937073:190579 +k1,13969:19410031,7937073:190578 +k1,13969:20058707,7937073:190579 +k1,13969:21776929,7937073:190578 +k1,13969:22323368,7937073:190579 +k1,13969:25368695,7937073:190579 +k1,13969:26242158,7937073:190578 +k1,13969:29041070,7937073:190579 +k1,13969:29883076,7937073:190578 +k1,13969:31092740,7937073:190579 +k1,13970:32583029,7937073:0 +) +(1,13970:6630773,8778561:25952256,505283,134348 +k1,13969:8114180,8778561:236257 +k1,13969:9697858,8778561:236258 +k1,13969:12299965,8778561:236257 +k1,13969:13555307,8778561:236257 +k1,13969:15606256,8778561:236257 +k1,13969:16777057,8778561:236258 +k1,13969:18869294,8778561:236257 +k1,13969:22940062,8778561:236257 +k1,13969:23859204,8778561:236257 +k1,13969:27201869,8778561:236258 +k1,13969:28893025,8778561:236257 +k1,13969:30975431,8778561:236257 +k1,13969:32583029,8778561:0 +) +(1,13970:6630773,9620049:25952256,513147,134348 +k1,13969:7781176,9620049:158843 +k1,13969:9940832,9620049:158842 +k1,13969:10824503,9620049:158843 +k1,13969:12267852,9620049:158843 +k1,13969:16498447,9620049:158843 +k1,13969:17648849,9620049:158842 +k1,13969:20109972,9620049:158843 +k1,13969:21078185,9620049:158843 +k1,13969:22309197,9620049:158843 +k1,13969:23127331,9620049:158842 +k1,13969:24305259,9620049:158843 +k1,13969:26036311,9620049:158843 +k1,13969:28914898,9620049:158843 +k1,13969:30276981,9620049:158842 +k1,13969:30967321,9620049:158843 +k1,13969:31482024,9620049:158843 +k1,13969:32583029,9620049:0 +) +(1,13970:6630773,10461537:25952256,513147,134348 +k1,13969:8105005,10461537:238878 +k1,13969:9011038,10461537:238877 +(1,13969:9011038,10461537:0,452978,115847 +r1,13969:11127863,10461537:2116825,568825,115847 +k1,13969:9011038,10461537:-2116825 +) +(1,13969:9011038,10461537:2116825,452978,115847 +k1,13969:9011038,10461537:3277 +h1,13969:11124586,10461537:0,411205,112570 +) +k1,13969:11540411,10461537:238878 +k1,13969:13013332,10461537:238878 +k1,13969:14859807,10461537:238877 +k1,13969:16290130,10461537:238878 +k1,13969:19344435,10461537:238878 +k1,13969:23373914,10461537:238877 +k1,13969:24745254,10461537:238878 +k1,13969:26269948,10461537:238878 +k1,13969:28800619,10461537:238877 +k1,13969:30058582,10461537:238878 +k1,13969:32583029,10461537:0 +) +(1,13970:6630773,11303025:25952256,513147,134348 +g1,13969:8177422,11303025 +g1,13969:9028079,11303025 +g1,13969:9975074,11303025 +g1,13969:13440617,11303025 +g1,13969:14267681,11303025 +g1,13969:17295443,11303025 +g1,13969:18513757,11303025 +g1,13969:20978566,11303025 +g1,13969:21709292,11303025 +g1,13969:22559949,11303025 +g1,13969:24888443,11303025 +g1,13969:26851246,11303025 +g1,13969:28742615,11303025 +k1,13970:32583029,11303025:422056 +g1,13970:32583029,11303025 +) +(1,13972:6630773,12144513:25952256,513147,134348 +h1,13971:6630773,12144513:983040,0,0 +k1,13971:8874258,12144513:306896 +k1,13971:10579036,12144513:306895 +k1,13971:11820475,12144513:306896 +k1,13971:13146456,12144513:306896 +k1,13971:15345376,12144513:306896 +k1,13971:17136661,12144513:306895 +k1,13971:18102849,12144513:306896 +k1,13971:19428830,12144513:306896 +k1,13971:22260172,12144513:306895 +k1,13971:23914488,12144513:306896 +k1,13971:24872812,12144513:306896 +k1,13971:25927474,12144513:306896 +k1,13971:29327013,12144513:306895 +k1,13971:30395437,12144513:306896 +k1,13971:32583029,12144513:0 +) +(1,13972:6630773,12986001:25952256,513147,134348 +k1,13971:9385485,12986001:146379 +k1,13971:10183292,12986001:146379 +k1,13971:11348756,12986001:146379 +k1,13971:12567305,12986001:146380 +k1,13971:13905129,12986001:146379 +k1,13971:16406217,12986001:146379 +k1,13971:17571681,12986001:146379 +k1,13971:19983640,12986001:146379 +k1,13971:22738352,12986001:146379 +k1,13971:24452352,12986001:146379 +k1,13971:25617817,12986001:146380 +k1,13971:28087447,12986001:146379 +k1,13971:28893118,12986001:146379 +k1,13971:30058582,12986001:146379 +k1,13971:32583029,12986001:0 +) +(1,13972:6630773,13827489:25952256,355205,7863 +k1,13972:32583028,13827489:24431164 +g1,13972:32583028,13827489 +) +v1,13974:6630773,14927130:0,393216,0 +(1,13981:6630773,17240761:25952256,2706847,196608 +g1,13981:6630773,17240761 +g1,13981:6630773,17240761 +g1,13981:6434165,17240761 +(1,13981:6434165,17240761:0,2706847,196608 +r1,13981:32779637,17240761:26345472,2903455,196608 +k1,13981:6434165,17240761:-26345472 +) +(1,13981:6434165,17240761:26345472,2706847,196608 +[1,13981:6630773,17240761:25952256,2510239,0 +(1,13976:6630773,15141040:25952256,410518,107478 +(1,13975:6630773,15141040:0,0,0 +g1,13975:6630773,15141040 +g1,13975:6630773,15141040 +g1,13975:6303093,15141040 +(1,13975:6303093,15141040:0,0,0 +) +g1,13975:6630773,15141040 +) +k1,13976:6630773,15141040:0 +k1,13976:6630773,15141040:0 +h1,13976:12321395,15141040:0,0,0 +k1,13976:32583029,15141040:20261634 +g1,13976:32583029,15141040 +) +(1,13977:6630773,15807218:25952256,410518,107478 +h1,13977:6630773,15807218:0,0,0 +g1,13977:6946919,15807218 +g1,13977:7263065,15807218 +g1,13977:10108377,15807218 +g1,13977:10740669,15807218 +g1,13977:12953689,15807218 +g1,13977:14850563,15807218 +g1,13977:15482855,15807218 +g1,13977:17695875,15807218 +g1,13977:18328167,15807218 +g1,13977:18960459,15807218 +g1,13977:20225042,15807218 +h1,13977:20541188,15807218:0,0,0 +k1,13977:32583029,15807218:12041841 +g1,13977:32583029,15807218 +) +(1,13978:6630773,16473396:25952256,404226,101187 +h1,13978:6630773,16473396:0,0,0 +g1,13978:6946919,16473396 +g1,13978:7263065,16473396 +g1,13978:13269833,16473396 +g1,13978:13902125,16473396 +g1,13978:15482854,16473396 +h1,13978:15799000,16473396:0,0,0 +k1,13978:32583028,16473396:16784028 +g1,13978:32583028,16473396 +) +(1,13979:6630773,17139574:25952256,404226,101187 +h1,13979:6630773,17139574:0,0,0 +g1,13979:6946919,17139574 +g1,13979:7263065,17139574 +g1,13979:15482853,17139574 +g1,13979:16115145,17139574 +g1,13979:21489622,17139574 +g1,13979:22121914,17139574 +g1,13979:23702644,17139574 +h1,13979:25915664,17139574:0,0,0 +k1,13979:32583029,17139574:6667365 +g1,13979:32583029,17139574 +) +] +) +g1,13981:32583029,17240761 +g1,13981:6630773,17240761 +g1,13981:6630773,17240761 +g1,13981:32583029,17240761 +g1,13981:32583029,17240761 +) +h1,13981:6630773,17437369:0,0,0 +(1,13985:6630773,18712320:25952256,513147,126483 +h1,13984:6630773,18712320:983040,0,0 +k1,13984:9309798,18712320:207662 +k1,13984:10385811,18712320:207661 +k1,13984:12920656,18712320:207662 +k1,13984:14220803,18712320:207662 +k1,13984:14784324,18712320:207661 +k1,13984:18152787,18712320:207662 +k1,13984:19011877,18712320:207662 +k1,13984:19575398,18712320:207661 +k1,13984:21985070,18712320:207662 +k1,13984:23963515,18712320:207662 +k1,13984:24857338,18712320:207661 +k1,13984:27093995,18712320:207662 +k1,13984:28170009,18712320:207662 +k1,13984:29575013,18712320:207661 +k1,13984:31021961,18712320:207662 +k1,13985:32583029,18712320:0 +) +(1,13985:6630773,19553808:25952256,513147,134348 +g1,13984:8663044,19553808 +g1,13984:9513701,19553808 +g1,13984:10732015,19553808 +g1,13984:12711857,19553808 +g1,13984:13570378,19553808 +g1,13984:14788692,19553808 +(1,13984:14788692,19553808:0,452978,115847 +r1,13984:16905517,19553808:2116825,568825,115847 +k1,13984:14788692,19553808:-2116825 +) +(1,13984:14788692,19553808:2116825,452978,115847 +k1,13984:14788692,19553808:3277 +h1,13984:16902240,19553808:0,411205,112570 +) +k1,13985:32583029,19553808:15503842 +g1,13985:32583029,19553808 +) +v1,13987:6630773,20653449:0,393216,0 +(1,13991:6630773,20962254:25952256,702021,196608 +g1,13991:6630773,20962254 +g1,13991:6630773,20962254 +g1,13991:6434165,20962254 +(1,13991:6434165,20962254:0,702021,196608 +r1,13991:32779637,20962254:26345472,898629,196608 +k1,13991:6434165,20962254:-26345472 +) +(1,13991:6434165,20962254:26345472,702021,196608 +[1,13991:6630773,20962254:25952256,505413,0 +(1,13989:6630773,20861067:25952256,404226,101187 +(1,13988:6630773,20861067:0,0,0 +g1,13988:6630773,20861067 +g1,13988:6630773,20861067 +g1,13988:6303093,20861067 +(1,13988:6303093,20861067:0,0,0 +) +g1,13988:6630773,20861067 +) +g1,13989:6946919,20861067 +g1,13989:7263065,20861067 +g1,13989:15482853,20861067 +g1,13989:16115145,20861067 +g1,13989:21805768,20861067 +g1,13989:22438060,20861067 +g1,13989:24018790,20861067 +h1,13989:25915664,20861067:0,0,0 +k1,13989:32583029,20861067:6667365 +g1,13989:32583029,20861067 +) +] +) +g1,13991:32583029,20962254 +g1,13991:6630773,20962254 +g1,13991:6630773,20962254 +g1,13991:32583029,20962254 +g1,13991:32583029,20962254 +) +h1,13991:6630773,21158862:0,0,0 +(1,13995:6630773,22433814:25952256,513147,134348 +h1,13994:6630773,22433814:983040,0,0 +k1,13994:8479241,22433814:237593 +k1,13994:9735919,22433814:237593 +k1,13994:11340593,22433814:237593 +k1,13994:12237478,22433814:237593 +k1,13994:14551252,22433814:237593 +k1,13994:15657197,22433814:237593 +k1,13994:18065343,22433814:237594 +k1,13994:20609148,22433814:237593 +k1,13994:22355380,22433814:237593 +k1,13994:25451653,22433814:237593 +k1,13994:28247772,22433814:237593 +k1,13994:29504450,22433814:237593 +k1,13994:31923737,22433814:237593 +k1,13994:32583029,22433814:0 +) +(1,13995:6630773,23275302:25952256,513147,11795 +k1,13994:8820734,23275302:201599 +k1,13994:9975882,23275302:201599 +k1,13994:11707746,23275302:201598 +k1,13994:14236528,23275302:201599 +k1,13994:15089555,23275302:201599 +k1,13994:16383639,23275302:201599 +k1,13994:16941097,23275302:201598 +k1,13994:21979908,23275302:201599 +k1,13994:22867669,23275302:201599 +k1,13994:26159291,23275302:201599 +k1,13994:26976927,23275302:201598 +k1,13994:29457213,23275302:201599 +h1,13994:31572060,23275302:0,0,0 +k1,13994:31773659,23275302:201599 +k1,13994:32583029,23275302:0 +) +(1,13995:6630773,24116790:25952256,513147,134348 +k1,13994:8334885,24116790:205959 +h1,13994:9530262,24116790:0,0,0 +k1,13994:9909892,24116790:205960 +k1,13994:11360380,24116790:205959 +k1,13994:16203012,24116790:205960 +(1,13994:16203012,24116790:0,452978,115847 +r1,13994:18319837,24116790:2116825,568825,115847 +k1,13994:16203012,24116790:-2116825 +) +(1,13994:16203012,24116790:2116825,452978,115847 +k1,13994:16203012,24116790:3277 +h1,13994:18316560,24116790:0,411205,112570 +) +k1,13994:18525796,24116790:205959 +k1,13994:19923201,24116790:205960 +(1,13994:19923201,24116790:0,452978,115847 +r1,13994:22040026,24116790:2116825,568825,115847 +k1,13994:19923201,24116790:-2116825 +) +(1,13994:19923201,24116790:2116825,452978,115847 +k1,13994:19923201,24116790:3277 +h1,13994:22036749,24116790:0,411205,112570 +) +k1,13994:22245985,24116790:205959 +k1,13994:23267213,24116790:205960 +k1,13994:26479308,24116790:205959 +k1,13994:28366922,24116790:205960 +k1,13994:29776122,24116790:205959 +k1,13995:32583029,24116790:0 +) +(1,13995:6630773,24958278:25952256,505283,134348 +g1,13994:9073299,24958278 +g1,13994:11831054,24958278 +g1,13994:13049368,24958278 +g1,13994:15868726,24958278 +g1,13994:18078600,24958278 +g1,13994:20483116,24958278 +g1,13994:21368507,24958278 +k1,13995:32583029,24958278:9226160 +g1,13995:32583029,24958278 +) +v1,14000:6630773,26233229:0,393216,0 +(1,14010:6630773,31277550:25952256,5437537,616038 +g1,14010:6630773,31277550 +(1,14010:6630773,31277550:25952256,5437537,616038 +(1,14010:6630773,31893588:25952256,6053575,0 +[1,14010:6630773,31893588:25952256,6053575,0 +(1,14010:6630773,31867374:25952256,6001147,0 +r1,14010:6656987,31867374:26214,6001147,0 +[1,14010:6656987,31867374:25899828,6001147,0 +(1,14010:6656987,31277550:25899828,4821499,0 +[1,14010:7246811,31277550:24720180,4821499,0 +(1,14001:7246811,27543425:24720180,1087374,134348 +k1,14000:8674362,27543425:217848 +k1,14000:10261257,27543425:217848 +k1,14000:12027720,27543425:217847 +k1,14000:13264653,27543425:217848 +k1,14000:15325373,27543425:217848 +k1,14000:16074718,27543425:217848 +k1,14000:17990604,27543425:217848 +k1,14000:19227536,27543425:217847 +k1,14000:20751517,27543425:217848 +k1,14000:22453755,27543425:217848 +k1,14000:23203100,27543425:217848 +k1,14000:25280204,27543425:217848 +k1,14000:26940498,27543425:217847 +k1,14000:28177431,27543425:217848 +k1,14000:30636610,27543425:217848 +k1,14000:31966991,27543425:0 +) +(1,14001:7246811,28384913:24720180,505283,134348 +g1,14000:7989333,28384913 +g1,14000:8646659,28384913 +g1,14000:9864973,28384913 +g1,14000:11717675,28384913 +g1,14000:12603066,28384913 +g1,14000:14500333,28384913 +g1,14000:16881256,28384913 +g1,14000:18777212,28384913 +g1,14000:20629914,28384913 +g1,14000:22839788,28384913 +g1,14000:23725179,28384913 +g1,14000:25739100,28384913 +g1,14000:27332280,28384913 +(1,14000:27332280,28384913:0,452978,115847 +r1,14010:29449105,28384913:2116825,568825,115847 +k1,14000:27332280,28384913:-2116825 +) +(1,14000:27332280,28384913:2116825,452978,115847 +k1,14000:27332280,28384913:3277 +h1,14000:29445828,28384913:0,411205,112570 +) +k1,14001:31966991,28384913:2190861 +g1,14001:31966991,28384913 +) +v1,14003:7246811,29575379:0,393216,0 +(1,14008:7246811,30556654:24720180,1374491,196608 +g1,14008:7246811,30556654 +g1,14008:7246811,30556654 +g1,14008:7050203,30556654 +(1,14008:7050203,30556654:0,1374491,196608 +r1,14010:32163599,30556654:25113396,1571099,196608 +k1,14008:7050203,30556654:-25113396 +) +(1,14008:7050203,30556654:25113396,1374491,196608 +[1,14008:7246811,30556654:24720180,1177883,0 +(1,14005:7246811,29789289:24720180,410518,107478 +(1,14004:7246811,29789289:0,0,0 +g1,14004:7246811,29789289 +g1,14004:7246811,29789289 +g1,14004:6919131,29789289 +(1,14004:6919131,29789289:0,0,0 +) +g1,14004:7246811,29789289 +) +k1,14005:7246811,29789289:0 +g1,14005:13253579,29789289 +g1,14005:15466599,29789289 +g1,14005:16731182,29789289 +g1,14005:17363474,29789289 +g1,14005:21473368,29789289 +h1,14005:21789514,29789289:0,0,0 +k1,14005:31966991,29789289:10177477 +g1,14005:31966991,29789289 +) +(1,14006:7246811,30455467:24720180,404226,101187 +h1,14006:7246811,30455467:0,0,0 +g1,14006:7562957,30455467 +g1,14006:7879103,30455467 +g1,14006:16098891,30455467 +g1,14006:16731183,30455467 +g1,14006:18944204,30455467 +h1,14006:19892641,30455467:0,0,0 +k1,14006:31966991,30455467:12074350 +g1,14006:31966991,30455467 +) +] +) +g1,14008:31966991,30556654 +g1,14008:7246811,30556654 +g1,14008:7246811,30556654 +g1,14008:31966991,30556654 +g1,14008:31966991,30556654 +) +h1,14008:7246811,30753262:0,0,0 +] +) +] +r1,14010:32583029,31867374:26214,6001147,0 +) +] +) +) +g1,14010:32583029,31277550 +) +h1,14010:6630773,31893588:0,0,0 +(1,14012:6630773,33521508:25952256,505283,7863 +(1,14012:6630773,33521508:2809528,485622,0 +g1,14012:6630773,33521508 +g1,14012:9440301,33521508 +) +g1,14012:11452256,33521508 +g1,14012:12877008,33521508 +g1,14012:14649101,33521508 +k1,14012:32583029,33521508:16012412 +g1,14012:32583029,33521508 +) +(1,14015:6630773,34756212:25952256,513147,134348 +k1,14014:10158171,34756212:291886 +(1,14014:10158171,34756212:0,452978,115847 +r1,14014:12274996,34756212:2116825,568825,115847 +k1,14014:10158171,34756212:-2116825 +) +(1,14014:10158171,34756212:2116825,452978,115847 +k1,14014:10158171,34756212:3277 +h1,14014:12271719,34756212:0,411205,112570 +) +k1,14014:12566883,34756212:291887 +k1,14014:13390266,34756212:291886 +k1,14014:15195379,34756212:291887 +k1,14014:16138693,34756212:291886 +k1,14014:17365123,34756212:291887 +k1,14014:18676094,34756212:291886 +k1,14014:21524540,34756212:291887 +k1,14014:22475718,34756212:291886 +k1,14014:24282142,34756212:291887 +k1,14014:26318596,34756212:291886 +k1,14014:27629568,34756212:291887 +k1,14014:29347517,34756212:291886 +k1,14015:32583029,34756212:0 +) +(1,14015:6630773,35597700:25952256,505283,126483 +(1,14014:6630773,35597700:0,452978,115847 +r1,14014:8747598,35597700:2116825,568825,115847 +k1,14014:6630773,35597700:-2116825 +) +(1,14014:6630773,35597700:2116825,452978,115847 +k1,14014:6630773,35597700:3277 +h1,14014:8744321,35597700:0,411205,112570 +) +k1,14014:8924937,35597700:177339 +k1,14014:9633774,35597700:177340 +k1,14014:11324339,35597700:177339 +k1,14014:12153107,35597700:177340 +k1,14014:13264989,35597700:177339 +k1,14014:14461413,35597700:177339 +k1,14014:15822989,35597700:177340 +k1,14014:18018182,35597700:177339 +k1,14014:19660907,35597700:177340 +k1,14014:23449280,35597700:177339 +k1,14014:24730901,35597700:177339 +k1,14014:25656007,35597700:177340 +k1,14014:28038633,35597700:177339 +k1,14014:30071953,35597700:177340 +k1,14014:30605152,35597700:177339 +k1,14014:32583029,35597700:0 +) +(1,14015:6630773,36439188:25952256,513147,134348 +k1,14014:7536434,36439188:222776 +k1,14014:8115069,36439188:222775 +k1,14014:11033341,36439188:222776 +k1,14014:11942278,36439188:222775 +k1,14014:12935757,36439188:222776 +k1,14014:16404530,36439188:222775 +k1,14014:17823993,36439188:222776 +k1,14014:20312348,36439188:222775 +k1,14014:21066621,36439188:222776 +k1,14014:21940824,36439188:222775 +k1,14014:24951502,36439188:222776 +k1,14014:27358592,36439188:222775 +k1,14014:29696215,36439188:222776 +k1,14014:31773659,36439188:222775 +k1,14014:32583029,36439188:0 +) +(1,14015:6630773,37280676:25952256,513147,134348 +g1,14014:7849087,37280676 +g1,14014:9863008,37280676 +g1,14014:11253682,37280676 +g1,14014:13633294,37280676 +g1,14014:14851608,37280676 +g1,14014:17866919,37280676 +g1,14014:18752310,37280676 +k1,14015:32583029,37280676:11460937 +g1,14015:32583029,37280676 +) +(1,14017:6630773,38122164:25952256,513147,134348 +h1,14016:6630773,38122164:983040,0,0 +k1,14016:9563564,38122164:166516 +k1,14016:12662816,38122164:166516 +k1,14016:15011025,38122164:166515 +k1,14016:17466058,38122164:166516 +k1,14016:18500926,38122164:166516 +k1,14016:19771724,38122164:166516 +k1,14016:21446223,38122164:166516 +k1,14016:22631824,38122164:166516 +k1,14016:25063919,38122164:166515 +k1,14016:28439078,38122164:166516 +k1,14016:30449777,38122164:166516 +k1,14016:31563944,38122164:166516 +k1,14017:32583029,38122164:0 +) +(1,14017:6630773,38963652:25952256,452978,115847 +(1,14016:6630773,38963652:0,452978,115847 +r1,14016:8747598,38963652:2116825,568825,115847 +k1,14016:6630773,38963652:-2116825 +) +(1,14016:6630773,38963652:2116825,452978,115847 +k1,14016:6630773,38963652:3277 +h1,14016:8744321,38963652:0,411205,112570 +) +k1,14017:32583028,38963652:23661760 +g1,14017:32583028,38963652 +) +v1,14019:6630773,40063293:0,393216,0 +(1,14025:6630773,41710746:25952256,2040669,196608 +g1,14025:6630773,41710746 +g1,14025:6630773,41710746 +g1,14025:6434165,41710746 +(1,14025:6434165,41710746:0,2040669,196608 +r1,14025:32779637,41710746:26345472,2237277,196608 +k1,14025:6434165,41710746:-26345472 +) +(1,14025:6434165,41710746:26345472,2040669,196608 +[1,14025:6630773,41710746:25952256,1844061,0 +(1,14021:6630773,40277203:25952256,410518,107478 +(1,14020:6630773,40277203:0,0,0 +g1,14020:6630773,40277203 +g1,14020:6630773,40277203 +g1,14020:6303093,40277203 +(1,14020:6303093,40277203:0,0,0 +) +g1,14020:6630773,40277203 +) +k1,14021:6630773,40277203:0 +g1,14021:12637541,40277203 +g1,14021:14850561,40277203 +g1,14021:16115144,40277203 +h1,14021:16431290,40277203:0,0,0 +k1,14021:32583029,40277203:16151739 +g1,14021:32583029,40277203 +) +(1,14022:6630773,40943381:25952256,404226,107478 +h1,14022:6630773,40943381:0,0,0 +g1,14022:6946919,40943381 +g1,14022:7263065,40943381 +g1,14022:11372959,40943381 +h1,14022:11689105,40943381:0,0,0 +k1,14022:32583029,40943381:20893924 +g1,14022:32583029,40943381 +) +(1,14023:6630773,41609559:25952256,404226,101187 +h1,14023:6630773,41609559:0,0,0 +g1,14023:6946919,41609559 +g1,14023:7263065,41609559 +g1,14023:15482853,41609559 +g1,14023:16115145,41609559 +g1,14023:18012020,41609559 +g1,14023:18960457,41609559 +g1,14023:19592749,41609559 +g1,14023:20857332,41609559 +g1,14023:22121915,41609559 +h1,14023:23386497,41609559:0,0,0 +k1,14023:32583029,41609559:9196532 +g1,14023:32583029,41609559 +) +] +) +g1,14025:32583029,41710746 +g1,14025:6630773,41710746 +g1,14025:6630773,41710746 +g1,14025:32583029,41710746 +g1,14025:32583029,41710746 +) +h1,14025:6630773,41907354:0,0,0 +(1,14029:6630773,43182305:25952256,513147,126483 +h1,14028:6630773,43182305:983040,0,0 +k1,14028:9082180,43182305:271680 +k1,14028:11619440,43182305:271680 +k1,14028:14005967,43182305:271680 +k1,14028:15269207,43182305:271680 +k1,14028:18749529,43182305:271679 +k1,14028:19782737,43182305:271680 +k1,14028:22749913,43182305:271680 +(1,14028:22749913,43182305:0,452978,115847 +r1,14028:28032144,43182305:5282231,568825,115847 +k1,14028:22749913,43182305:-5282231 +) +(1,14028:22749913,43182305:5282231,452978,115847 +k1,14028:22749913,43182305:3277 +h1,14028:28028867,43182305:0,411205,112570 +) +k1,14028:28303824,43182305:271680 +k1,14028:30143125,43182305:271680 +k1,14028:32583029,43182305:0 +) +(1,14029:6630773,44023793:25952256,505283,134348 +k1,14028:8021816,44023793:194356 +k1,14028:11288500,44023793:194356 +k1,14028:13688143,44023793:194356 +k1,14028:14533926,44023793:194355 +k1,14028:15516680,44023793:194356 +k1,14028:18991768,44023793:194356 +(1,14028:18991768,44023793:0,414482,115847 +r1,14028:19350034,44023793:358266,530329,115847 +k1,14028:18991768,44023793:-358266 +) +(1,14028:18991768,44023793:358266,414482,115847 +k1,14028:18991768,44023793:3277 +h1,14028:19346757,44023793:0,411205,112570 +) +k1,14028:19544390,44023793:194356 +k1,14028:23313080,44023793:194356 +k1,14028:24526521,44023793:194356 +k1,14028:26600449,44023793:194355 +k1,14028:29280586,44023793:194356 +k1,14028:30989479,44023793:194356 +k1,14028:31835263,44023793:194356 +k1,14028:32583029,44023793:0 +) +(1,14029:6630773,44865281:25952256,513147,134348 +k1,14028:9964947,44865281:181237 +k1,14028:14636710,44865281:181236 +k1,14028:15890116,44865281:181237 +k1,14028:17090438,44865281:181237 +k1,14028:19193846,44865281:181237 +k1,14028:21860863,44865281:181236 +k1,14028:22701392,44865281:181237 +k1,14028:24397166,44865281:181237 +k1,14028:27787046,44865281:181237 +k1,14028:29305216,44865281:181236 +k1,14028:30234219,44865281:181237 +k1,14028:32583029,44865281:0 +) +(1,14029:6630773,45706769:25952256,513147,134348 +g1,14028:9592345,45706769 +g1,14028:13153571,45706769 +g1,14028:14162170,45706769 +g1,14028:15380484,45706769 +g1,14028:17360326,45706769 +g1,14028:18218847,45706769 +g1,14028:19437161,45706769 +k1,14029:32583029,45706769:11582834 +g1,14029:32583029,45706769 +) +] +(1,14031:32583029,45706769:0,0,0 +g1,14031:32583029,45706769 +) +) +] +(1,14031:6630773,47279633:25952256,0,0 +h1,14031:6630773,47279633:25952256,0,0 +) +] +h1,14031:4262630,4025873:0,0,0 +] +!26626 +}270 +Input:2077:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2078:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2079:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2080:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2081:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2082:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2083:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2084:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2085:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2086:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2087:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2088:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2089:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 +{271 +[1,14082:4262630,47279633:28320399,43253760,0 +(1,14082:4262630,4025873:0,0,0 +[1,14082:-473657,4025873:25952256,0,0 +(1,14082:-473657,-710414:25952256,0,0 +h1,14082:-473657,-710414:0,0,0 +(1,14082:-473657,-710414:0,0,0 +(1,14082:-473657,-710414:0,0,0 +g1,14082:-473657,-710414 +(1,14082:-473657,-710414:65781,0,65781 +g1,14082:-407876,-710414 +[1,14082:-407876,-644633:0,0,0 ] ) -k1,14056:-473657,-710414:-65781 +k1,14082:-473657,-710414:-65781 ) ) -k1,14056:25478599,-710414:25952256 -g1,14056:25478599,-710414 +k1,14082:25478599,-710414:25952256 +g1,14082:25478599,-710414 ) ] ) -[1,14056:6630773,47279633:25952256,43253760,0 -[1,14056:6630773,4812305:25952256,786432,0 -(1,14056:6630773,4812305:25952256,505283,11795 -(1,14056:6630773,4812305:25952256,505283,11795 -g1,14056:3078558,4812305 -[1,14056:3078558,4812305:0,0,0 -(1,14056:3078558,2439708:0,1703936,0 -k1,14056:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14056:2537886,2439708:1179648,16384,0 +[1,14082:6630773,47279633:25952256,43253760,0 +[1,14082:6630773,4812305:25952256,786432,0 +(1,14082:6630773,4812305:25952256,513147,134348 +(1,14082:6630773,4812305:25952256,513147,134348 +g1,14082:3078558,4812305 +[1,14082:3078558,4812305:0,0,0 +(1,14082:3078558,2439708:0,1703936,0 +k1,14082:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14082:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14056:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14082:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14056:3078558,4812305:0,0,0 -(1,14056:3078558,2439708:0,1703936,0 -g1,14056:29030814,2439708 -g1,14056:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14056:36151628,1915420:16384,1179648,0 +[1,14082:3078558,4812305:0,0,0 +(1,14082:3078558,2439708:0,1703936,0 +g1,14082:29030814,2439708 +g1,14082:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14082:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14056:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14082:37855564,2439708:1179648,16384,0 ) ) -k1,14056:3078556,2439708:-34777008 +k1,14082:3078556,2439708:-34777008 ) ] -[1,14056:3078558,4812305:0,0,0 -(1,14056:3078558,49800853:0,16384,2228224 -k1,14056:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14056:2537886,49800853:1179648,16384,0 +[1,14082:3078558,4812305:0,0,0 +(1,14082:3078558,49800853:0,16384,2228224 +k1,14082:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14082:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14056:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14082:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14056:3078558,4812305:0,0,0 -(1,14056:3078558,49800853:0,16384,2228224 -g1,14056:29030814,49800853 -g1,14056:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14056:36151628,51504789:16384,1179648,0 +[1,14082:3078558,4812305:0,0,0 +(1,14082:3078558,49800853:0,16384,2228224 +g1,14082:29030814,49800853 +g1,14082:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14082:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14056:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14082:37855564,49800853:1179648,16384,0 ) ) -k1,14056:3078556,49800853:-34777008 +k1,14082:3078556,49800853:-34777008 ) ] -g1,14056:6630773,4812305 -g1,14056:6630773,4812305 -g1,14056:8724648,4812305 -k1,14056:31387652,4812305:22663004 -) -) -] -[1,14056:6630773,45706769:25952256,40108032,0 -(1,14056:6630773,45706769:25952256,40108032,0 -(1,14056:6630773,45706769:0,0,0 -g1,14056:6630773,45706769 -) -[1,14056:6630773,45706769:25952256,40108032,0 -v1,14005:6630773,6254097:0,393216,0 -(1,14009:6630773,6562902:25952256,702021,196608 -g1,14009:6630773,6562902 -g1,14009:6630773,6562902 -g1,14009:6434165,6562902 -(1,14009:6434165,6562902:0,702021,196608 -r1,14009:32779637,6562902:26345472,898629,196608 -k1,14009:6434165,6562902:-26345472 -) -(1,14009:6434165,6562902:26345472,702021,196608 -[1,14009:6630773,6562902:25952256,505413,0 -(1,14007:6630773,6461715:25952256,404226,101187 -(1,14006:6630773,6461715:0,0,0 -g1,14006:6630773,6461715 -g1,14006:6630773,6461715 -g1,14006:6303093,6461715 -(1,14006:6303093,6461715:0,0,0 -) -g1,14006:6630773,6461715 -) -g1,14007:6946919,6461715 -g1,14007:7263065,6461715 -g1,14007:15482853,6461715 -g1,14007:16115145,6461715 -g1,14007:23702642,6461715 -g1,14007:24334934,6461715 -h1,14007:25283371,6461715:0,0,0 -k1,14007:32583029,6461715:7299658 -g1,14007:32583029,6461715 -) -] -) -g1,14009:32583029,6562902 -g1,14009:6630773,6562902 -g1,14009:6630773,6562902 -g1,14009:32583029,6562902 -g1,14009:32583029,6562902 -) -h1,14009:6630773,6759510:0,0,0 -(1,14013:6630773,8125286:25952256,513147,134348 -h1,14012:6630773,8125286:983040,0,0 -k1,14012:8722769,8125286:155407 -k1,14012:9982458,8125286:155407 -k1,14012:11072407,8125286:155406 -k1,14012:12412050,8125286:155407 -k1,14012:14411640,8125286:155407 -k1,14012:17673454,8125286:155407 -k1,14012:18444899,8125286:155407 -k1,14012:20983849,8125286:155406 -k1,14012:21790684,8125286:155407 -k1,14012:22965176,8125286:155407 -k1,14012:25302277,8125286:155407 -k1,14012:26124840,8125286:155407 -(1,14012:26124840,8125286:0,452978,115847 -r1,14012:28241665,8125286:2116825,568825,115847 -k1,14012:26124840,8125286:-2116825 -) -(1,14012:26124840,8125286:2116825,452978,115847 -k1,14012:26124840,8125286:3277 -h1,14012:28238388,8125286:0,411205,112570 -) -k1,14012:28397071,8125286:155406 -k1,14012:29314006,8125286:155407 -k1,14012:31896867,8125286:155407 -k1,14012:32583029,8125286:0 -) -(1,14013:6630773,8966774:25952256,513147,134348 -k1,14012:10235807,8966774:202405 -k1,14012:11610652,8966774:202406 -k1,14012:14121235,8966774:202405 -k1,14012:14982933,8966774:202406 -k1,14012:16912867,8966774:202405 -k1,14012:19302209,8966774:202406 -k1,14012:20132449,8966774:202405 -k1,14012:21353940,8966774:202406 -k1,14012:22940465,8966774:202405 -k1,14012:25804288,8966774:202406 -k1,14012:26875045,8966774:202405 -k1,14012:28169936,8966774:202406 -k1,14012:29143044,8966774:202405 -k1,14012:32583029,8966774:0 -) -(1,14013:6630773,9808262:25952256,505283,11795 -g1,14012:7481430,9808262 -g1,14012:9704411,9808262 -g1,14012:10259500,9808262 -g1,14012:12314053,9808262 -k1,14013:32583029,9808262:18393336 -g1,14013:32583029,9808262 -) -v1,14015:6630773,10998728:0,393216,0 -(1,14022:6630773,13312359:25952256,2706847,196608 -g1,14022:6630773,13312359 -g1,14022:6630773,13312359 -g1,14022:6434165,13312359 -(1,14022:6434165,13312359:0,2706847,196608 -r1,14022:32779637,13312359:26345472,2903455,196608 -k1,14022:6434165,13312359:-26345472 -) -(1,14022:6434165,13312359:26345472,2706847,196608 -[1,14022:6630773,13312359:25952256,2510239,0 -(1,14017:6630773,11212638:25952256,410518,107478 -(1,14016:6630773,11212638:0,0,0 -g1,14016:6630773,11212638 -g1,14016:6630773,11212638 -g1,14016:6303093,11212638 -(1,14016:6303093,11212638:0,0,0 -) -g1,14016:6630773,11212638 -) -k1,14017:6630773,11212638:0 -g1,14017:12637541,11212638 -g1,14017:14850561,11212638 -g1,14017:16115144,11212638 -h1,14017:16431290,11212638:0,0,0 -k1,14017:32583029,11212638:16151739 -g1,14017:32583029,11212638 -) -(1,14018:6630773,11878816:25952256,404226,107478 -h1,14018:6630773,11878816:0,0,0 -g1,14018:6946919,11878816 -g1,14018:7263065,11878816 -g1,14018:11372959,11878816 -h1,14018:11689105,11878816:0,0,0 -k1,14018:32583029,11878816:20893924 -g1,14018:32583029,11878816 -) -(1,14019:6630773,12544994:25952256,404226,101187 -h1,14019:6630773,12544994:0,0,0 -g1,14019:6946919,12544994 -g1,14019:7263065,12544994 -g1,14019:15482853,12544994 -g1,14019:16115145,12544994 -g1,14019:18012020,12544994 -g1,14019:18960457,12544994 -g1,14019:19592749,12544994 -g1,14019:20857332,12544994 -g1,14019:22121915,12544994 -k1,14019:22121915,12544994:0 -h1,14019:23386498,12544994:0,0,0 -k1,14019:32583029,12544994:9196531 -g1,14019:32583029,12544994 -) -(1,14020:6630773,13211172:25952256,404226,101187 -h1,14020:6630773,13211172:0,0,0 -g1,14020:6946919,13211172 -g1,14020:7263065,13211172 -g1,14020:7579211,13211172 -g1,14020:7895357,13211172 -g1,14020:8211503,13211172 -g1,14020:8527649,13211172 -g1,14020:8843795,13211172 -g1,14020:9159941,13211172 -g1,14020:9476087,13211172 -g1,14020:9792233,13211172 -g1,14020:10108379,13211172 -g1,14020:10424525,13211172 -g1,14020:10740671,13211172 -g1,14020:11056817,13211172 -g1,14020:11372963,13211172 -g1,14020:11689109,13211172 -g1,14020:12005255,13211172 -g1,14020:12321401,13211172 -g1,14020:12637547,13211172 -g1,14020:12953693,13211172 -g1,14020:13269839,13211172 -g1,14020:15482859,13211172 -g1,14020:16115151,13211172 -g1,14020:18644318,13211172 -g1,14020:24651087,13211172 -g1,14020:26547962,13211172 -h1,14020:28444836,13211172:0,0,0 -k1,14020:32583029,13211172:4138193 -g1,14020:32583029,13211172 -) -] -) -g1,14022:32583029,13312359 -g1,14022:6630773,13312359 -g1,14022:6630773,13312359 -g1,14022:32583029,13312359 -g1,14022:32583029,13312359 -) -h1,14022:6630773,13508967:0,0,0 -(1,14025:6630773,24573469:25952256,10474678,0 -k1,14025:12599879,24573469:5969106 -h1,14024:12599879,24573469:0,0,0 -(1,14024:12599879,24573469:14014044,10474678,0 -(1,14024:12599879,24573469:14014766,10474704,0 -(1,14024:12599879,24573469:14014766,10474704,0 -(1,14024:12599879,24573469:0,10474704,0 -(1,14024:12599879,24573469:0,14155776,0 -(1,14024:12599879,24573469:18939904,14155776,0 -) -k1,14024:12599879,24573469:-18939904 -) -) -g1,14024:26614645,24573469 -) -) -) -g1,14025:26613923,24573469 -k1,14025:32583029,24573469:5969106 -) -(1,14033:6630773,25414957:25952256,513147,134348 -h1,14032:6630773,25414957:983040,0,0 -k1,14032:10365277,25414957:216531 -k1,14032:12848042,25414957:216531 -k1,14032:15824949,25414957:216531 -k1,14032:18272981,25414957:216531 -k1,14032:21515309,25414957:216531 -k1,14032:22679491,25414957:216531 -k1,14032:23915107,25414957:216531 -k1,14032:27321275,25414957:216531 -k1,14032:30933226,25414957:216531 -k1,14032:31809049,25414957:216531 -k1,14033:32583029,25414957:0 -) -(1,14033:6630773,26256445:25952256,513147,134348 -k1,14032:8229901,26256445:142263 -k1,14032:9414187,26256445:142264 -k1,14032:12391537,26256445:142263 -k1,14032:13185229,26256445:142264 -k1,14032:15622563,26256445:142263 -k1,14032:16949063,26256445:142264 -k1,14032:18935509,26256445:142263 -k1,14032:19763935,26256445:142264 -k1,14032:23723015,26256445:142263 -k1,14032:24812930,26256445:142264 -k1,14032:26344556,26256445:142263 -k1,14032:29270789,26256445:142264 -k1,14032:30099214,26256445:142263 -k1,14032:32583029,26256445:0 -) -(1,14033:6630773,27097933:25952256,513147,115847 -g1,14032:9844003,27097933 -g1,14032:10911584,27097933 -g1,14032:12215095,27097933 -g1,14032:13506809,27097933 -g1,14032:16401534,27097933 -(1,14032:16401534,27097933:0,452978,115847 -r1,14032:22387189,27097933:5985655,568825,115847 -k1,14032:16401534,27097933:-5985655 -) -(1,14032:16401534,27097933:5985655,452978,115847 -k1,14032:16401534,27097933:3277 -h1,14032:22383912,27097933:0,411205,112570 -) -k1,14033:32583029,27097933:10022170 -g1,14033:32583029,27097933 -) -v1,14035:6630773,28288399:0,393216,0 -(1,14041:6630773,29935852:25952256,2040669,196608 -g1,14041:6630773,29935852 -g1,14041:6630773,29935852 -g1,14041:6434165,29935852 -(1,14041:6434165,29935852:0,2040669,196608 -r1,14041:32779637,29935852:26345472,2237277,196608 -k1,14041:6434165,29935852:-26345472 -) -(1,14041:6434165,29935852:26345472,2040669,196608 -[1,14041:6630773,29935852:25952256,1844061,0 -(1,14037:6630773,28502309:25952256,410518,107478 -(1,14036:6630773,28502309:0,0,0 -g1,14036:6630773,28502309 -g1,14036:6630773,28502309 -g1,14036:6303093,28502309 -(1,14036:6303093,28502309:0,0,0 -) -g1,14036:6630773,28502309 -) -k1,14037:6630773,28502309:0 -g1,14037:12637541,28502309 -g1,14037:14850561,28502309 -g1,14037:15482853,28502309 -g1,14037:16115145,28502309 -g1,14037:18960456,28502309 -h1,14037:19276602,28502309:0,0,0 -k1,14037:32583029,28502309:13306427 -g1,14037:32583029,28502309 -) -(1,14038:6630773,29168487:25952256,404226,107478 -h1,14038:6630773,29168487:0,0,0 -g1,14038:6946919,29168487 -g1,14038:7263065,29168487 -g1,14038:11372959,29168487 -h1,14038:11689105,29168487:0,0,0 -k1,14038:32583029,29168487:20893924 -g1,14038:32583029,29168487 -) -(1,14039:6630773,29834665:25952256,404226,101187 -h1,14039:6630773,29834665:0,0,0 -g1,14039:6946919,29834665 -g1,14039:7263065,29834665 -g1,14039:15482853,29834665 -g1,14039:16115145,29834665 -h1,14039:21173475,29834665:0,0,0 -k1,14039:32583029,29834665:11409554 -g1,14039:32583029,29834665 -) -] -) -g1,14041:32583029,29935852 -g1,14041:6630773,29935852 -g1,14041:6630773,29935852 -g1,14041:32583029,29935852 -g1,14041:32583029,29935852 -) -h1,14041:6630773,30132460:0,0,0 -(1,14044:6630773,41196962:25952256,10474678,0 -k1,14044:12599879,41196962:5969106 -h1,14043:12599879,41196962:0,0,0 -(1,14043:12599879,41196962:14014044,10474678,0 -(1,14043:12599879,41196962:14014766,10474704,0 -(1,14043:12599879,41196962:14014766,10474704,0 -(1,14043:12599879,41196962:0,10474704,0 -(1,14043:12599879,41196962:0,14155776,0 -(1,14043:12599879,41196962:18939904,14155776,0 -) -k1,14043:12599879,41196962:-18939904 -) -) -g1,14043:26614645,41196962 -) -) -) -g1,14044:26613923,41196962 -k1,14044:32583029,41196962:5969106 -) -(1,14052:6630773,42038450:25952256,505283,134348 -h1,14051:6630773,42038450:983040,0,0 -k1,14051:8797411,42038450:141576 -k1,14051:11894662,42038450:141577 -k1,14051:12904590,42038450:141576 -k1,14051:14150449,42038450:141577 -k1,14051:15384510,42038450:141576 -(1,14051:15384510,42038450:0,452978,115847 -r1,14051:21018453,42038450:5633943,568825,115847 -k1,14051:15384510,42038450:-5633943 -) -(1,14051:15384510,42038450:5633943,452978,115847 -k1,14051:15384510,42038450:3277 -h1,14051:21015176,42038450:0,411205,112570 -) -k1,14051:21333699,42038450:141576 -k1,14051:22126704,42038450:141577 -k1,14051:24605949,42038450:141576 -k1,14051:27401734,42038450:141577 -k1,14051:30888923,42038450:141576 -k1,14052:32583029,42038450:0 -) -(1,14052:6630773,42879938:25952256,513147,115847 -k1,14051:8910232,42879938:253741 -k1,14051:11909931,42879938:253740 -k1,14051:12888500,42879938:253741 -k1,14051:14125281,42879938:253741 -k1,14051:15247373,42879938:253740 -k1,14051:16605396,42879938:253741 -k1,14051:17951621,42879938:253740 -(1,14051:17951621,42879938:0,452978,115847 -r1,14051:23233852,42879938:5282231,568825,115847 -k1,14051:17951621,42879938:-5282231 -) -(1,14051:17951621,42879938:5282231,452978,115847 -k1,14051:17951621,42879938:3277 -h1,14051:23230575,42879938:0,411205,112570 -) -k1,14051:23661263,42879938:253741 -k1,14051:25106449,42879938:253741 -k1,14051:26307840,42879938:253740 -k1,14051:29377663,42879938:253741 -k1,14051:32583029,42879938:0 -) -(1,14052:6630773,43721426:25952256,513147,134348 -k1,14051:8669270,43721426:303104 -k1,14051:12264247,43721426:303104 -k1,14051:13226643,43721426:303104 -k1,14051:16959246,43721426:303104 -k1,14051:18210001,43721426:303104 -k1,14051:26353832,43721426:303104 -k1,14051:30083158,43721426:303104 -k1,14051:31490544,43721426:303104 -k1,14052:32583029,43721426:0 -) -(1,14052:6630773,44562914:25952256,513147,126483 -(1,14051:6630773,44562914:0,459977,115847 -r1,14051:16133546,44562914:9502773,575824,115847 -k1,14051:6630773,44562914:-9502773 -) -(1,14051:6630773,44562914:9502773,459977,115847 -k1,14051:6630773,44562914:3277 -h1,14051:16130269,44562914:0,411205,112570 -) -k1,14051:16633906,44562914:326690 -k1,14051:17430490,44562914:326691 -k1,14051:18288677,44562914:326690 -k1,14051:19901184,44562914:326691 -k1,14051:22857834,44562914:326690 -k1,14051:23835952,44562914:326690 -k1,14051:25255128,44562914:326691 -k1,14051:29557232,44562914:326690 -k1,14051:32583029,44562914:0 -) -(1,14052:6630773,45404402:25952256,513147,7863 -g1,14051:8296698,45404402 -g1,14051:9443578,45404402 -g1,14051:11757654,45404402 -g1,14051:13148328,45404402 -k1,14052:32583030,45404402:17416848 -g1,14052:32583030,45404402 -) -] -(1,14056:32583029,45706769:0,0,0 -g1,14056:32583029,45706769 -) -) -] -(1,14056:6630773,47279633:25952256,0,0 -h1,14056:6630773,47279633:25952256,0,0 -) -] -h1,14056:4262630,4025873:0,0,0 -] -!15371 -}270 -Input:2093:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2094:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2095:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2096:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2097:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2098:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2099:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2100:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 -{271 -[1,14114:4262630,47279633:28320399,43253760,0 -(1,14114:4262630,4025873:0,0,0 -[1,14114:-473657,4025873:25952256,0,0 -(1,14114:-473657,-710414:25952256,0,0 -h1,14114:-473657,-710414:0,0,0 -(1,14114:-473657,-710414:0,0,0 -(1,14114:-473657,-710414:0,0,0 -g1,14114:-473657,-710414 -(1,14114:-473657,-710414:65781,0,65781 -g1,14114:-407876,-710414 -[1,14114:-407876,-644633:0,0,0 +g1,14082:6630773,4812305 +k1,14082:25712890,4812305:17886740 +g1,14082:29057847,4812305 +g1,14082:29873114,4812305 +) +) +] +[1,14082:6630773,45706769:25952256,40108032,0 +(1,14082:6630773,45706769:25952256,40108032,0 +(1,14082:6630773,45706769:0,0,0 +g1,14082:6630773,45706769 +) +[1,14082:6630773,45706769:25952256,40108032,0 +v1,14031:6630773,6254097:0,393216,0 +(1,14035:6630773,6562902:25952256,702021,196608 +g1,14035:6630773,6562902 +g1,14035:6630773,6562902 +g1,14035:6434165,6562902 +(1,14035:6434165,6562902:0,702021,196608 +r1,14035:32779637,6562902:26345472,898629,196608 +k1,14035:6434165,6562902:-26345472 +) +(1,14035:6434165,6562902:26345472,702021,196608 +[1,14035:6630773,6562902:25952256,505413,0 +(1,14033:6630773,6461715:25952256,404226,101187 +(1,14032:6630773,6461715:0,0,0 +g1,14032:6630773,6461715 +g1,14032:6630773,6461715 +g1,14032:6303093,6461715 +(1,14032:6303093,6461715:0,0,0 +) +g1,14032:6630773,6461715 +) +g1,14033:6946919,6461715 +g1,14033:7263065,6461715 +g1,14033:15482853,6461715 +g1,14033:16115145,6461715 +g1,14033:23702642,6461715 +g1,14033:24334934,6461715 +h1,14033:25283371,6461715:0,0,0 +k1,14033:32583029,6461715:7299658 +g1,14033:32583029,6461715 +) +] +) +g1,14035:32583029,6562902 +g1,14035:6630773,6562902 +g1,14035:6630773,6562902 +g1,14035:32583029,6562902 +g1,14035:32583029,6562902 +) +h1,14035:6630773,6759510:0,0,0 +(1,14039:6630773,8125286:25952256,513147,134348 +h1,14038:6630773,8125286:983040,0,0 +k1,14038:8722769,8125286:155407 +k1,14038:9982458,8125286:155407 +k1,14038:11072407,8125286:155406 +k1,14038:12412050,8125286:155407 +k1,14038:14411640,8125286:155407 +k1,14038:17673454,8125286:155407 +k1,14038:18444899,8125286:155407 +k1,14038:20983849,8125286:155406 +k1,14038:21790684,8125286:155407 +k1,14038:22965176,8125286:155407 +k1,14038:25302277,8125286:155407 +k1,14038:26124840,8125286:155407 +(1,14038:26124840,8125286:0,452978,115847 +r1,14038:28241665,8125286:2116825,568825,115847 +k1,14038:26124840,8125286:-2116825 +) +(1,14038:26124840,8125286:2116825,452978,115847 +k1,14038:26124840,8125286:3277 +h1,14038:28238388,8125286:0,411205,112570 +) +k1,14038:28397071,8125286:155406 +k1,14038:29314006,8125286:155407 +k1,14038:31896867,8125286:155407 +k1,14038:32583029,8125286:0 +) +(1,14039:6630773,8966774:25952256,513147,134348 +k1,14038:10235807,8966774:202405 +k1,14038:11610652,8966774:202406 +k1,14038:14121235,8966774:202405 +k1,14038:14982933,8966774:202406 +k1,14038:16912867,8966774:202405 +k1,14038:19302209,8966774:202406 +k1,14038:20132449,8966774:202405 +k1,14038:21353940,8966774:202406 +k1,14038:22940465,8966774:202405 +k1,14038:25804288,8966774:202406 +k1,14038:26875045,8966774:202405 +k1,14038:28169936,8966774:202406 +k1,14038:29143044,8966774:202405 +k1,14038:32583029,8966774:0 +) +(1,14039:6630773,9808262:25952256,505283,11795 +g1,14038:7481430,9808262 +g1,14038:9704411,9808262 +g1,14038:10259500,9808262 +g1,14038:12314053,9808262 +k1,14039:32583029,9808262:18393336 +g1,14039:32583029,9808262 +) +v1,14041:6630773,10998728:0,393216,0 +(1,14048:6630773,13312359:25952256,2706847,196608 +g1,14048:6630773,13312359 +g1,14048:6630773,13312359 +g1,14048:6434165,13312359 +(1,14048:6434165,13312359:0,2706847,196608 +r1,14048:32779637,13312359:26345472,2903455,196608 +k1,14048:6434165,13312359:-26345472 +) +(1,14048:6434165,13312359:26345472,2706847,196608 +[1,14048:6630773,13312359:25952256,2510239,0 +(1,14043:6630773,11212638:25952256,410518,107478 +(1,14042:6630773,11212638:0,0,0 +g1,14042:6630773,11212638 +g1,14042:6630773,11212638 +g1,14042:6303093,11212638 +(1,14042:6303093,11212638:0,0,0 +) +g1,14042:6630773,11212638 +) +k1,14043:6630773,11212638:0 +g1,14043:12637541,11212638 +g1,14043:14850561,11212638 +g1,14043:16115144,11212638 +h1,14043:16431290,11212638:0,0,0 +k1,14043:32583029,11212638:16151739 +g1,14043:32583029,11212638 +) +(1,14044:6630773,11878816:25952256,404226,107478 +h1,14044:6630773,11878816:0,0,0 +g1,14044:6946919,11878816 +g1,14044:7263065,11878816 +g1,14044:11372959,11878816 +h1,14044:11689105,11878816:0,0,0 +k1,14044:32583029,11878816:20893924 +g1,14044:32583029,11878816 +) +(1,14045:6630773,12544994:25952256,404226,101187 +h1,14045:6630773,12544994:0,0,0 +g1,14045:6946919,12544994 +g1,14045:7263065,12544994 +g1,14045:15482853,12544994 +g1,14045:16115145,12544994 +g1,14045:18012020,12544994 +g1,14045:18960457,12544994 +g1,14045:19592749,12544994 +g1,14045:20857332,12544994 +g1,14045:22121915,12544994 +k1,14045:22121915,12544994:0 +h1,14045:23386498,12544994:0,0,0 +k1,14045:32583029,12544994:9196531 +g1,14045:32583029,12544994 +) +(1,14046:6630773,13211172:25952256,404226,101187 +h1,14046:6630773,13211172:0,0,0 +g1,14046:6946919,13211172 +g1,14046:7263065,13211172 +g1,14046:7579211,13211172 +g1,14046:7895357,13211172 +g1,14046:8211503,13211172 +g1,14046:8527649,13211172 +g1,14046:8843795,13211172 +g1,14046:9159941,13211172 +g1,14046:9476087,13211172 +g1,14046:9792233,13211172 +g1,14046:10108379,13211172 +g1,14046:10424525,13211172 +g1,14046:10740671,13211172 +g1,14046:11056817,13211172 +g1,14046:11372963,13211172 +g1,14046:11689109,13211172 +g1,14046:12005255,13211172 +g1,14046:12321401,13211172 +g1,14046:12637547,13211172 +g1,14046:12953693,13211172 +g1,14046:13269839,13211172 +g1,14046:15482859,13211172 +g1,14046:16115151,13211172 +g1,14046:18644318,13211172 +g1,14046:24651087,13211172 +g1,14046:26547962,13211172 +h1,14046:28444836,13211172:0,0,0 +k1,14046:32583029,13211172:4138193 +g1,14046:32583029,13211172 +) +] +) +g1,14048:32583029,13312359 +g1,14048:6630773,13312359 +g1,14048:6630773,13312359 +g1,14048:32583029,13312359 +g1,14048:32583029,13312359 +) +h1,14048:6630773,13508967:0,0,0 +(1,14051:6630773,24573469:25952256,10474678,0 +k1,14051:12599879,24573469:5969106 +h1,14050:12599879,24573469:0,0,0 +(1,14050:12599879,24573469:14014044,10474678,0 +(1,14050:12599879,24573469:14014766,10474704,0 +(1,14050:12599879,24573469:14014766,10474704,0 +(1,14050:12599879,24573469:0,10474704,0 +(1,14050:12599879,24573469:0,14155776,0 +(1,14050:12599879,24573469:18939904,14155776,0 +) +k1,14050:12599879,24573469:-18939904 +) +) +g1,14050:26614645,24573469 +) +) +) +g1,14051:26613923,24573469 +k1,14051:32583029,24573469:5969106 +) +(1,14059:6630773,25414957:25952256,513147,134348 +h1,14058:6630773,25414957:983040,0,0 +k1,14058:10365277,25414957:216531 +k1,14058:12848042,25414957:216531 +k1,14058:15824949,25414957:216531 +k1,14058:18272981,25414957:216531 +k1,14058:21515309,25414957:216531 +k1,14058:22679491,25414957:216531 +k1,14058:23915107,25414957:216531 +k1,14058:27321275,25414957:216531 +k1,14058:30933226,25414957:216531 +k1,14058:31809049,25414957:216531 +k1,14059:32583029,25414957:0 +) +(1,14059:6630773,26256445:25952256,513147,134348 +k1,14058:8229901,26256445:142263 +k1,14058:9414187,26256445:142264 +k1,14058:12391537,26256445:142263 +k1,14058:13185229,26256445:142264 +k1,14058:15622563,26256445:142263 +k1,14058:16949063,26256445:142264 +k1,14058:18935509,26256445:142263 +k1,14058:19763935,26256445:142264 +k1,14058:23723015,26256445:142263 +k1,14058:24812930,26256445:142264 +k1,14058:26344556,26256445:142263 +k1,14058:29270789,26256445:142264 +k1,14058:30099214,26256445:142263 +k1,14058:32583029,26256445:0 +) +(1,14059:6630773,27097933:25952256,513147,115847 +g1,14058:9844003,27097933 +g1,14058:10911584,27097933 +g1,14058:12215095,27097933 +g1,14058:13506809,27097933 +g1,14058:16401534,27097933 +(1,14058:16401534,27097933:0,452978,115847 +r1,14058:22387189,27097933:5985655,568825,115847 +k1,14058:16401534,27097933:-5985655 +) +(1,14058:16401534,27097933:5985655,452978,115847 +k1,14058:16401534,27097933:3277 +h1,14058:22383912,27097933:0,411205,112570 +) +k1,14059:32583029,27097933:10022170 +g1,14059:32583029,27097933 +) +v1,14061:6630773,28288399:0,393216,0 +(1,14067:6630773,29935852:25952256,2040669,196608 +g1,14067:6630773,29935852 +g1,14067:6630773,29935852 +g1,14067:6434165,29935852 +(1,14067:6434165,29935852:0,2040669,196608 +r1,14067:32779637,29935852:26345472,2237277,196608 +k1,14067:6434165,29935852:-26345472 +) +(1,14067:6434165,29935852:26345472,2040669,196608 +[1,14067:6630773,29935852:25952256,1844061,0 +(1,14063:6630773,28502309:25952256,410518,107478 +(1,14062:6630773,28502309:0,0,0 +g1,14062:6630773,28502309 +g1,14062:6630773,28502309 +g1,14062:6303093,28502309 +(1,14062:6303093,28502309:0,0,0 +) +g1,14062:6630773,28502309 +) +k1,14063:6630773,28502309:0 +g1,14063:12637541,28502309 +g1,14063:14850561,28502309 +g1,14063:15482853,28502309 +g1,14063:16115145,28502309 +g1,14063:18960456,28502309 +h1,14063:19276602,28502309:0,0,0 +k1,14063:32583029,28502309:13306427 +g1,14063:32583029,28502309 +) +(1,14064:6630773,29168487:25952256,404226,107478 +h1,14064:6630773,29168487:0,0,0 +g1,14064:6946919,29168487 +g1,14064:7263065,29168487 +g1,14064:11372959,29168487 +h1,14064:11689105,29168487:0,0,0 +k1,14064:32583029,29168487:20893924 +g1,14064:32583029,29168487 +) +(1,14065:6630773,29834665:25952256,404226,101187 +h1,14065:6630773,29834665:0,0,0 +g1,14065:6946919,29834665 +g1,14065:7263065,29834665 +g1,14065:15482853,29834665 +g1,14065:16115145,29834665 +h1,14065:21173475,29834665:0,0,0 +k1,14065:32583029,29834665:11409554 +g1,14065:32583029,29834665 +) +] +) +g1,14067:32583029,29935852 +g1,14067:6630773,29935852 +g1,14067:6630773,29935852 +g1,14067:32583029,29935852 +g1,14067:32583029,29935852 +) +h1,14067:6630773,30132460:0,0,0 +(1,14070:6630773,41196962:25952256,10474678,0 +k1,14070:12599879,41196962:5969106 +h1,14069:12599879,41196962:0,0,0 +(1,14069:12599879,41196962:14014044,10474678,0 +(1,14069:12599879,41196962:14014766,10474704,0 +(1,14069:12599879,41196962:14014766,10474704,0 +(1,14069:12599879,41196962:0,10474704,0 +(1,14069:12599879,41196962:0,14155776,0 +(1,14069:12599879,41196962:18939904,14155776,0 +) +k1,14069:12599879,41196962:-18939904 +) +) +g1,14069:26614645,41196962 +) +) +) +g1,14070:26613923,41196962 +k1,14070:32583029,41196962:5969106 +) +(1,14078:6630773,42038450:25952256,505283,134348 +h1,14077:6630773,42038450:983040,0,0 +k1,14077:8797411,42038450:141576 +k1,14077:11894662,42038450:141577 +k1,14077:12904590,42038450:141576 +k1,14077:14150449,42038450:141577 +k1,14077:15384510,42038450:141576 +(1,14077:15384510,42038450:0,452978,115847 +r1,14077:21018453,42038450:5633943,568825,115847 +k1,14077:15384510,42038450:-5633943 +) +(1,14077:15384510,42038450:5633943,452978,115847 +k1,14077:15384510,42038450:3277 +h1,14077:21015176,42038450:0,411205,112570 +) +k1,14077:21333699,42038450:141576 +k1,14077:22126704,42038450:141577 +k1,14077:24605949,42038450:141576 +k1,14077:27401734,42038450:141577 +k1,14077:30888923,42038450:141576 +k1,14078:32583029,42038450:0 +) +(1,14078:6630773,42879938:25952256,513147,115847 +k1,14077:8910232,42879938:253741 +k1,14077:11909931,42879938:253740 +k1,14077:12888500,42879938:253741 +k1,14077:14125281,42879938:253741 +k1,14077:15247373,42879938:253740 +k1,14077:16605396,42879938:253741 +k1,14077:17951621,42879938:253740 +(1,14077:17951621,42879938:0,452978,115847 +r1,14077:23233852,42879938:5282231,568825,115847 +k1,14077:17951621,42879938:-5282231 +) +(1,14077:17951621,42879938:5282231,452978,115847 +k1,14077:17951621,42879938:3277 +h1,14077:23230575,42879938:0,411205,112570 +) +k1,14077:23661263,42879938:253741 +k1,14077:25106449,42879938:253741 +k1,14077:26307840,42879938:253740 +k1,14077:29377663,42879938:253741 +k1,14077:32583029,42879938:0 +) +(1,14078:6630773,43721426:25952256,513147,134348 +k1,14077:8669270,43721426:303104 +k1,14077:12264247,43721426:303104 +k1,14077:13226643,43721426:303104 +k1,14077:16959246,43721426:303104 +k1,14077:18210001,43721426:303104 +k1,14077:26353832,43721426:303104 +k1,14077:30083158,43721426:303104 +k1,14077:31490544,43721426:303104 +k1,14078:32583029,43721426:0 +) +(1,14078:6630773,44562914:25952256,513147,126483 +(1,14077:6630773,44562914:0,459977,115847 +r1,14077:16133546,44562914:9502773,575824,115847 +k1,14077:6630773,44562914:-9502773 +) +(1,14077:6630773,44562914:9502773,459977,115847 +k1,14077:6630773,44562914:3277 +h1,14077:16130269,44562914:0,411205,112570 +) +k1,14077:16633906,44562914:326690 +k1,14077:17430490,44562914:326691 +k1,14077:18288677,44562914:326690 +k1,14077:19901184,44562914:326691 +k1,14077:22857834,44562914:326690 +k1,14077:23835952,44562914:326690 +k1,14077:25255128,44562914:326691 +k1,14077:29557232,44562914:326690 +k1,14077:32583029,44562914:0 +) +(1,14078:6630773,45404402:25952256,513147,7863 +g1,14077:8296698,45404402 +g1,14077:9443578,45404402 +g1,14077:11757654,45404402 +g1,14077:13148328,45404402 +k1,14078:32583030,45404402:17416848 +g1,14078:32583030,45404402 +) +] +(1,14082:32583029,45706769:0,0,0 +g1,14082:32583029,45706769 +) +) +] +(1,14082:6630773,47279633:25952256,0,0 +h1,14082:6630773,47279633:25952256,0,0 +) +] +h1,14082:4262630,4025873:0,0,0 +] +!15375 +}271 +Input:2090:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2091:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2092:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2093:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2094:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2095:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2096:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2097:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{272 +[1,14140:4262630,47279633:28320399,43253760,0 +(1,14140:4262630,4025873:0,0,0 +[1,14140:-473657,4025873:25952256,0,0 +(1,14140:-473657,-710414:25952256,0,0 +h1,14140:-473657,-710414:0,0,0 +(1,14140:-473657,-710414:0,0,0 +(1,14140:-473657,-710414:0,0,0 +g1,14140:-473657,-710414 +(1,14140:-473657,-710414:65781,0,65781 +g1,14140:-407876,-710414 +[1,14140:-407876,-644633:0,0,0 ] ) -k1,14114:-473657,-710414:-65781 +k1,14140:-473657,-710414:-65781 ) ) -k1,14114:25478599,-710414:25952256 -g1,14114:25478599,-710414 +k1,14140:25478599,-710414:25952256 +g1,14140:25478599,-710414 ) ] ) -[1,14114:6630773,47279633:25952256,43253760,0 -[1,14114:6630773,4812305:25952256,786432,0 -(1,14114:6630773,4812305:25952256,513147,134348 -(1,14114:6630773,4812305:25952256,513147,134348 -g1,14114:3078558,4812305 -[1,14114:3078558,4812305:0,0,0 -(1,14114:3078558,2439708:0,1703936,0 -k1,14114:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14114:2537886,2439708:1179648,16384,0 +[1,14140:6630773,47279633:25952256,43253760,0 +[1,14140:6630773,4812305:25952256,786432,0 +(1,14140:6630773,4812305:25952256,505283,11795 +(1,14140:6630773,4812305:25952256,505283,11795 +g1,14140:3078558,4812305 +[1,14140:3078558,4812305:0,0,0 +(1,14140:3078558,2439708:0,1703936,0 +k1,14140:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14140:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14114:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14140:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14114:3078558,4812305:0,0,0 -(1,14114:3078558,2439708:0,1703936,0 -g1,14114:29030814,2439708 -g1,14114:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14114:36151628,1915420:16384,1179648,0 +[1,14140:3078558,4812305:0,0,0 +(1,14140:3078558,2439708:0,1703936,0 +g1,14140:29030814,2439708 +g1,14140:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14140:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14114:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14140:37855564,2439708:1179648,16384,0 ) ) -k1,14114:3078556,2439708:-34777008 +k1,14140:3078556,2439708:-34777008 ) ] -[1,14114:3078558,4812305:0,0,0 -(1,14114:3078558,49800853:0,16384,2228224 -k1,14114:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14114:2537886,49800853:1179648,16384,0 +[1,14140:3078558,4812305:0,0,0 +(1,14140:3078558,49800853:0,16384,2228224 +k1,14140:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14140:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14114:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14140:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14114:3078558,4812305:0,0,0 -(1,14114:3078558,49800853:0,16384,2228224 -g1,14114:29030814,49800853 -g1,14114:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14114:36151628,51504789:16384,1179648,0 +[1,14140:3078558,4812305:0,0,0 +(1,14140:3078558,49800853:0,16384,2228224 +g1,14140:29030814,49800853 +g1,14140:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14140:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14114:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14140:37855564,49800853:1179648,16384,0 ) ) -k1,14114:3078556,49800853:-34777008 +k1,14140:3078556,49800853:-34777008 ) ] -g1,14114:6630773,4812305 -k1,14114:25712890,4812305:17886740 -g1,14114:29057847,4812305 -g1,14114:29873114,4812305 +g1,14140:6630773,4812305 +g1,14140:6630773,4812305 +g1,14140:8724648,4812305 +k1,14140:31387652,4812305:22663004 ) ) ] -[1,14114:6630773,45706769:25952256,40108032,0 -(1,14114:6630773,45706769:25952256,40108032,0 -(1,14114:6630773,45706769:0,0,0 -g1,14114:6630773,45706769 +[1,14140:6630773,45706769:25952256,40108032,0 +(1,14140:6630773,45706769:25952256,40108032,0 +(1,14140:6630773,45706769:0,0,0 +g1,14140:6630773,45706769 ) -[1,14114:6630773,45706769:25952256,40108032,0 -(1,14053:6630773,6254097:25952256,513147,11795 -(1,14053:6630773,6254097:2809528,485622,11795 -g1,14053:6630773,6254097 -g1,14053:9440301,6254097 +[1,14140:6630773,45706769:25952256,40108032,0 +(1,14079:6630773,6254097:25952256,513147,11795 +(1,14079:6630773,6254097:2809528,485622,11795 +g1,14079:6630773,6254097 +g1,14079:9440301,6254097 ) -g1,14053:13960974,6254097 -k1,14053:32583029,6254097:16635003 -g1,14053:32583029,6254097 +g1,14079:13960974,6254097 +k1,14079:32583029,6254097:16635003 +g1,14079:32583029,6254097 ) -(1,14056:6630773,7488801:25952256,513147,126483 -k1,14055:8173387,7488801:345927 -k1,14055:10784893,7488801:345926 -k1,14055:13033330,7488801:345927 -k1,14055:14892483,7488801:345927 -k1,14055:15999937,7488801:345926 -k1,14055:17364949,7488801:345927 -(1,14055:17364949,7488801:0,414482,115847 -r1,14055:17723215,7488801:358266,530329,115847 -k1,14055:17364949,7488801:-358266 -) -(1,14055:17364949,7488801:358266,414482,115847 -k1,14055:17364949,7488801:3277 -h1,14055:17719938,7488801:0,411205,112570 -) -k1,14055:18069141,7488801:345926 -k1,14055:19606513,7488801:345927 -(1,14055:19606513,7488801:0,414482,115847 -r1,14055:19964779,7488801:358266,530329,115847 -k1,14055:19606513,7488801:-358266 -) -(1,14055:19606513,7488801:358266,414482,115847 -k1,14055:19606513,7488801:3277 -h1,14055:19961502,7488801:0,411205,112570 -) -k1,14055:20310706,7488801:345927 -k1,14055:24004866,7488801:345926 -(1,14055:24004866,7488801:0,452978,115847 -r1,14055:31045657,7488801:7040791,568825,115847 -k1,14055:24004866,7488801:-7040791 -) -(1,14055:24004866,7488801:7040791,452978,115847 -k1,14055:24004866,7488801:3277 -h1,14055:31042380,7488801:0,411205,112570 -) -k1,14055:31391584,7488801:345927 -k1,14056:32583029,7488801:0 -) -(1,14056:6630773,8330289:25952256,513147,134348 -(1,14055:6630773,8330289:0,452978,115847 -r1,14055:13671564,8330289:7040791,568825,115847 -k1,14055:6630773,8330289:-7040791 -) -(1,14055:6630773,8330289:7040791,452978,115847 -k1,14055:6630773,8330289:3277 -h1,14055:13668287,8330289:0,411205,112570 -) -k1,14055:14013138,8330289:167904 -k1,14055:16229042,8330289:167904 -k1,14055:16752806,8330289:167904 -k1,14055:21275576,8330289:167903 -k1,14055:26280692,8330289:167904 -k1,14055:29144092,8330289:167904 -k1,14055:29998158,8330289:167904 -k1,14055:30936765,8330289:167904 -k1,14056:32583029,8330289:0 -) -(1,14056:6630773,9171777:25952256,513147,126483 -k1,14055:8430192,9171777:160364 -k1,14055:9241983,9171777:160363 -(1,14055:9241983,9171777:0,414482,115847 -r1,14055:11007096,9171777:1765113,530329,115847 -k1,14055:9241983,9171777:-1765113 -) -(1,14055:9241983,9171777:1765113,414482,115847 -k1,14055:9241983,9171777:3277 -h1,14055:11003819,9171777:0,411205,112570 -) -k1,14055:11167460,9171777:160364 -k1,14055:12721775,9171777:160364 -k1,14055:15147718,9171777:160363 -k1,14055:18450533,9171777:160364 -k1,14055:19179093,9171777:160363 -k1,14055:22399988,9171777:160364 -k1,14055:23576815,9171777:160364 -k1,14055:28955155,9171777:160363 -k1,14055:29743354,9171777:160364 -k1,14055:32583029,9171777:0 -) -(1,14056:6630773,10013265:25952256,513147,126483 -g1,14055:8484786,10013265 -g1,14055:9675575,10013265 -g1,14055:13312823,10013265 -g1,14055:17418653,10013265 -g1,14055:19190091,10013265 -g1,14055:22415117,10013265 -g1,14055:23561997,10013265 -(1,14055:23561997,10013265:0,452978,122846 -r1,14055:25327110,10013265:1765113,575824,122846 -k1,14055:23561997,10013265:-1765113 -) -(1,14055:23561997,10013265:1765113,452978,122846 -k1,14055:23561997,10013265:3277 -h1,14055:25323833,10013265:0,411205,112570 -) -g1,14055:25700009,10013265 -(1,14055:25700009,10013265:0,414482,115847 -r1,14055:27113410,10013265:1413401,530329,115847 -k1,14055:25700009,10013265:-1413401 -) -(1,14055:25700009,10013265:1413401,414482,115847 -k1,14055:25700009,10013265:3277 -h1,14055:27110133,10013265:0,411205,112570 -) -g1,14055:27312639,10013265 -g1,14055:28703313,10013265 -(1,14055:28703313,10013265:0,414482,115847 -r1,14055:31171850,10013265:2468537,530329,115847 -k1,14055:28703313,10013265:-2468537 -) -(1,14055:28703313,10013265:2468537,414482,115847 -k1,14055:28703313,10013265:3277 -h1,14055:31168573,10013265:0,411205,112570 -) -k1,14056:32583029,10013265:1237509 -g1,14056:32583029,10013265 -) -v1,14058:6630773,11317635:0,393216,0 -(1,14059:6630773,14443317:25952256,3518898,616038 -g1,14059:6630773,14443317 -(1,14059:6630773,14443317:25952256,3518898,616038 -(1,14059:6630773,15059355:25952256,4134936,0 -[1,14059:6630773,15059355:25952256,4134936,0 -(1,14059:6630773,15033141:25952256,4082508,0 -r1,14059:6656987,15033141:26214,4082508,0 -[1,14059:6656987,15033141:25899828,4082508,0 -(1,14059:6656987,14443317:25899828,2902860,0 -[1,14059:7246811,14443317:24720180,2902860,0 -(1,14059:7246811,12625993:24720180,1085536,298548 -(1,14058:7246811,12625993:0,1085536,298548 -r1,14059:8753226,12625993:1506415,1384084,298548 -k1,14058:7246811,12625993:-1506415 -) -(1,14058:7246811,12625993:1506415,1085536,298548 -) -k1,14058:9193799,12625993:440573 -k1,14058:11861285,12625993:440573 -k1,14058:12953286,12625993:440573 -k1,14058:14412944,12625993:440573 -k1,14058:16831394,12625993:440573 -k1,14058:20297764,12625993:440573 -k1,14058:21405493,12625993:440573 -k1,14058:22434579,12625993:440573 -k1,14058:23894237,12625993:440573 -k1,14058:26072825,12625993:440573 -k1,14058:27172690,12625993:440573 -k1,14058:28632348,12625993:440573 -k1,14058:30975431,12625993:440573 -k1,14059:31966991,12625993:0 -) -(1,14059:7246811,13467481:24720180,505283,122846 -(1,14058:7246811,13467481:0,452978,122846 -r1,14059:12529042,13467481:5282231,575824,122846 -k1,14058:7246811,13467481:-5282231 -) -(1,14058:7246811,13467481:5282231,452978,122846 -k1,14058:7246811,13467481:3277 -h1,14058:12525765,13467481:0,411205,112570 -) -k1,14058:12792703,13467481:263661 -k1,14058:14247809,13467481:263661 -(1,14058:14247809,13467481:0,452978,122846 -r1,14059:19530040,13467481:5282231,575824,122846 -k1,14058:14247809,13467481:-5282231 -) -(1,14058:14247809,13467481:5282231,452978,122846 -k1,14058:14247809,13467481:3277 -h1,14058:19526763,13467481:0,411205,112570 -) -k1,14058:19793701,13467481:263661 -k1,14058:22009025,13467481:263662 -k1,14058:23715133,13467481:263661 -(1,14058:23715133,13467481:0,452978,122846 -r1,14059:28293941,13467481:4578808,575824,122846 -k1,14058:23715133,13467481:-4578808 -) -(1,14058:23715133,13467481:4578808,452978,122846 -k1,14058:23715133,13467481:3277 -h1,14058:28290664,13467481:0,411205,112570 -) -k1,14058:28557602,13467481:263661 -k1,14058:31350953,13467481:263661 -k1,14059:31966991,13467481:0 -) -(1,14059:7246811,14308969:24720180,513147,134348 -g1,14058:8034553,14308969 -g1,14058:9252867,14308969 -g1,14058:12147592,14308969 -(1,14058:12147592,14308969:0,452978,122846 -r1,14059:13209281,14308969:1061689,575824,122846 -k1,14058:12147592,14308969:-1061689 -) -(1,14058:12147592,14308969:1061689,452978,122846 -k1,14058:12147592,14308969:3277 -h1,14058:13206004,14308969:0,411205,112570 -) -g1,14058:13408510,14308969 -g1,14058:15948685,14308969 -g1,14058:17166999,14308969 -g1,14058:19658022,14308969 -k1,14059:31966991,14308969:9024305 -g1,14059:31966991,14308969 -) -] -) -] -r1,14059:32583029,15033141:26214,4082508,0 -) -] -) -) -g1,14059:32583029,14443317 -) -h1,14059:6630773,15059355:0,0,0 -(1,14062:6630773,16363724:25952256,513147,115847 -h1,14061:6630773,16363724:983040,0,0 -g1,14061:8766591,16363724 -g1,14061:10070102,16363724 -g1,14061:11361816,16363724 -(1,14061:11361816,16363724:0,452978,115847 -r1,14061:17347471,16363724:5985655,568825,115847 -k1,14061:11361816,16363724:-5985655 -) -(1,14061:11361816,16363724:5985655,452978,115847 -k1,14061:11361816,16363724:3277 -h1,14061:17344194,16363724:0,411205,112570 -) -g1,14061:17546700,16363724 -g1,14061:18397357,16363724 -g1,14061:20902798,16363724 -g1,14061:22121112,16363724 -g1,14061:25179021,16363724 -g1,14061:26037542,16363724 -g1,14061:26592631,16363724 -g1,14061:30362261,16363724 -k1,14062:32583029,16363724:474889 -g1,14062:32583029,16363724 -) -v1,14064:6630773,17492784:0,393216,0 -(1,14070:6630773,19115071:25952256,2015503,196608 -g1,14070:6630773,19115071 -g1,14070:6630773,19115071 -g1,14070:6434165,19115071 -(1,14070:6434165,19115071:0,2015503,196608 -r1,14070:32779637,19115071:26345472,2212111,196608 -k1,14070:6434165,19115071:-26345472 -) -(1,14070:6434165,19115071:26345472,2015503,196608 -[1,14070:6630773,19115071:25952256,1818895,0 -(1,14066:6630773,17706694:25952256,410518,107478 -(1,14065:6630773,17706694:0,0,0 -g1,14065:6630773,17706694 -g1,14065:6630773,17706694 -g1,14065:6303093,17706694 -(1,14065:6303093,17706694:0,0,0 -) -g1,14065:6630773,17706694 -) -k1,14066:6630773,17706694:0 -g1,14066:12637541,17706694 -g1,14066:14850561,17706694 -g1,14066:16115144,17706694 -h1,14066:16431290,17706694:0,0,0 -k1,14066:32583029,17706694:16151739 -g1,14066:32583029,17706694 -) -(1,14067:6630773,18372872:25952256,404226,107478 -h1,14067:6630773,18372872:0,0,0 -g1,14067:6946919,18372872 -g1,14067:7263065,18372872 -g1,14067:11372959,18372872 -h1,14067:11689105,18372872:0,0,0 -k1,14067:32583029,18372872:20893924 -g1,14067:32583029,18372872 -) -(1,14068:6630773,19039050:25952256,404226,76021 -h1,14068:6630773,19039050:0,0,0 -g1,14068:6946919,19039050 -g1,14068:7263065,19039050 -k1,14068:7263065,19039050:0 -h1,14068:12637541,19039050:0,0,0 -k1,14068:32583029,19039050:19945488 -g1,14068:32583029,19039050 -) -] -) -g1,14070:32583029,19115071 -g1,14070:6630773,19115071 -g1,14070:6630773,19115071 -g1,14070:32583029,19115071 -g1,14070:32583029,19115071 -) -h1,14070:6630773,19311679:0,0,0 -(1,14073:6630773,30314774:25952256,10474678,0 -k1,14073:12599879,30314774:5969106 -h1,14072:12599879,30314774:0,0,0 -(1,14072:12599879,30314774:14014044,10474678,0 -(1,14072:12599879,30314774:14014766,10474704,0 -(1,14072:12599879,30314774:14014766,10474704,0 -(1,14072:12599879,30314774:0,10474704,0 -(1,14072:12599879,30314774:0,14155776,0 -(1,14072:12599879,30314774:18939904,14155776,0 -) -k1,14072:12599879,30314774:-18939904 -) -) -g1,14072:26614645,30314774 -) -) -) -g1,14073:26613923,30314774 -k1,14073:32583029,30314774:5969106 -) -(1,14081:6630773,31156262:25952256,513147,134348 -h1,14080:6630773,31156262:983040,0,0 -k1,14080:9193157,31156262:195224 -k1,14080:12629792,31156262:195224 -k1,14080:15120088,31156262:195225 -k1,14080:16334397,31156262:195224 -k1,14080:18964939,31156262:195224 -k1,14080:21170808,31156262:195224 -k1,14080:23408790,31156262:195225 -k1,14080:26357837,31156262:195224 -k1,14080:27572146,31156262:195224 -k1,14080:32583029,31156262:0 -) -(1,14081:6630773,31997750:25952256,505283,134348 -k1,14080:7984727,31997750:157267 -(1,14080:7984727,31997750:0,452978,115847 -r1,14080:10804976,31997750:2820249,568825,115847 -k1,14080:7984727,31997750:-2820249 -) -(1,14080:7984727,31997750:2820249,452978,115847 -k1,14080:7984727,31997750:3277 -h1,14080:10801699,31997750:0,411205,112570 -) -k1,14080:10962244,31997750:157268 -k1,14080:12649777,31997750:157267 -k1,14080:13458473,31997750:157268 -k1,14080:14363506,31997750:157267 -k1,14080:16215535,31997750:157268 -k1,14080:16988840,31997750:157267 -k1,14080:18165192,31997750:157267 -k1,14080:20757778,31997750:157268 -k1,14080:22487254,31997750:157267 -k1,14080:23330684,31997750:157268 -k1,14080:24940229,31997750:157267 -k1,14080:26051046,31997750:157268 -k1,14080:27300798,31997750:157267 -(1,14080:27300798,31997750:0,452978,122846 -r1,14080:32583029,31997750:5282231,575824,122846 -k1,14080:27300798,31997750:-5282231 -) -(1,14080:27300798,31997750:5282231,452978,122846 -k1,14080:27300798,31997750:3277 -h1,14080:32579752,31997750:0,411205,112570 -) -k1,14080:32583029,31997750:0 -) -(1,14081:6630773,32839238:25952256,513147,165547 -g1,14080:7481430,32839238 -g1,14080:9444233,32839238 -g1,14080:9999322,32839238 -$1,14080:9999322,32839238 -(1,14080:9999322,32839238:973866,505283,134349 -) -(1,14080:10973188,32996527:590610,339935,8258 -) -$1,14080:11563798,32839238 -g1,14080:11763027,32839238 -g1,14080:16799468,32839238 -g1,14080:17650125,32839238 -g1,14080:18868439,32839238 -$1,14080:18868439,32839238 -$1,14080:19420252,32839238 -g1,14080:19619481,32839238 -k1,14081:32583029,32839238:10779233 -g1,14081:32583029,32839238 -) -v1,14083:6630773,33968298:0,393216,0 -(1,14087:6630773,34283394:25952256,708312,196608 -g1,14087:6630773,34283394 -g1,14087:6630773,34283394 -g1,14087:6434165,34283394 -(1,14087:6434165,34283394:0,708312,196608 -r1,14087:32779637,34283394:26345472,904920,196608 -k1,14087:6434165,34283394:-26345472 -) -(1,14087:6434165,34283394:26345472,708312,196608 -[1,14087:6630773,34283394:25952256,511704,0 -(1,14085:6630773,34175916:25952256,404226,107478 -(1,14084:6630773,34175916:0,0,0 -g1,14084:6630773,34175916 -g1,14084:6630773,34175916 -g1,14084:6303093,34175916 -(1,14084:6303093,34175916:0,0,0 -) -g1,14084:6630773,34175916 -) -g1,14085:6946919,34175916 -g1,14085:7263065,34175916 -k1,14085:7263065,34175916:0 -h1,14085:18960456,34175916:0,0,0 -k1,14085:32583029,34175916:13622573 -g1,14085:32583029,34175916 -) -] -) -g1,14087:32583029,34283394 -g1,14087:6630773,34283394 -g1,14087:6630773,34283394 -g1,14087:32583029,34283394 -g1,14087:32583029,34283394 -) -h1,14087:6630773,34480002:0,0,0 -(1,14091:6630773,35784372:25952256,513147,134348 -h1,14090:6630773,35784372:983040,0,0 -k1,14090:9605603,35784372:200036 -k1,14090:10161499,35784372:200036 -k1,14090:15198747,35784372:200036 -k1,14090:16014821,35784372:200036 -k1,14090:16570717,35784372:200036 -k1,14090:18342962,35784372:200036 -k1,14090:19074496,35784372:200037 -k1,14090:20340803,35784372:200036 -k1,14090:23845820,35784372:200036 -k1,14090:24697284,35784372:200036 -k1,14090:27651143,35784372:200036 -k1,14090:28870264,35784372:200036 -k1,14090:30723773,35784372:200036 -k1,14091:32583029,35784372:0 -) -(1,14091:6630773,36625860:25952256,513147,138281 -k1,14090:10106103,36625860:284382 -k1,14090:11199856,36625860:284383 -k1,14090:12503323,36625860:284382 -k1,14090:13583313,36625860:284383 -k1,14090:15565733,36625860:284382 -k1,14090:18657678,36625860:284383 -k1,14090:19297920,36625860:284382 -k1,14090:22093643,36625860:284383 -k1,14090:23029453,36625860:284382 -k1,14090:24332921,36625860:284383 -$1,14090:24332921,36625860 -$1,14090:24835582,36625860 -k1,14090:25119964,36625860:284382 -k1,14090:26294326,36625860:284383 -$1,14090:26294326,36625860 -$1,14090:26846139,36625860 -k1,14090:27337615,36625860:284382 -k1,14090:30409244,36625860:284383 -k1,14090:31379788,36625860:284382 -k1,14090:32583029,36625860:0 -) -(1,14091:6630773,37467348:25952256,513147,126483 -g1,14090:9003176,37467348 -g1,14090:9818443,37467348 -g1,14090:13259083,37467348 -g1,14090:16655814,37467348 -g1,14090:17471081,37467348 -g1,14090:21652277,37467348 -k1,14091:32583029,37467348:8746437 -g1,14091:32583029,37467348 -) -v1,14093:6630773,38596407:0,393216,0 -(1,14098:6630773,39583973:25952256,1380782,196608 -g1,14098:6630773,39583973 -g1,14098:6630773,39583973 -g1,14098:6434165,39583973 -(1,14098:6434165,39583973:0,1380782,196608 -r1,14098:32779637,39583973:26345472,1577390,196608 -k1,14098:6434165,39583973:-26345472 -) -(1,14098:6434165,39583973:26345472,1380782,196608 -[1,14098:6630773,39583973:25952256,1184174,0 -(1,14095:6630773,38810317:25952256,410518,107478 -(1,14094:6630773,38810317:0,0,0 -g1,14094:6630773,38810317 -g1,14094:6630773,38810317 -g1,14094:6303093,38810317 -(1,14094:6303093,38810317:0,0,0 -) -g1,14094:6630773,38810317 -) -k1,14095:6630773,38810317:0 -g1,14095:12637541,38810317 -g1,14095:14850561,38810317 -g1,14095:18328163,38810317 -h1,14095:18644309,38810317:0,0,0 -k1,14095:32583029,38810317:13938720 -g1,14095:32583029,38810317 -) -(1,14096:6630773,39476495:25952256,404226,107478 -h1,14096:6630773,39476495:0,0,0 -g1,14096:6946919,39476495 -g1,14096:7263065,39476495 -k1,14096:7263065,39476495:0 -h1,14096:11056813,39476495:0,0,0 -k1,14096:32583029,39476495:21526216 -g1,14096:32583029,39476495 -) -] -) -g1,14098:32583029,39583973 -g1,14098:6630773,39583973 -g1,14098:6630773,39583973 -g1,14098:32583029,39583973 -g1,14098:32583029,39583973 -) -h1,14098:6630773,39780581:0,0,0 -(1,14102:6630773,41084951:25952256,513147,134348 -h1,14101:6630773,41084951:983040,0,0 -k1,14101:8807526,41084951:240164 -k1,14101:10708373,41084951:240165 -k1,14101:12332657,41084951:240164 -k1,14101:13903203,41084951:240165 -k1,14101:14794795,41084951:240164 -k1,14101:17293985,41084951:240164 -k1,14101:17890010,41084951:240165 -k1,14101:22967386,41084951:240164 -k1,14101:23858978,41084951:240164 -k1,14101:24455003,41084951:240165 -k1,14101:28265568,41084951:240164 -k1,14101:30251612,41084951:240165 -k1,14101:32227169,41084951:240164 -k1,14101:32583029,41084951:0 -) -(1,14102:6630773,41926439:25952256,513147,134348 -g1,14101:10268021,41926439 -g1,14101:15904772,41926439 -k1,14102:32583029,41926439:14545060 -g1,14102:32583029,41926439 -) -v1,14104:6630773,43055498:0,393216,0 -(1,14108:6630773,43364303:25952256,702021,196608 -g1,14108:6630773,43364303 -g1,14108:6630773,43364303 -g1,14108:6434165,43364303 -(1,14108:6434165,43364303:0,702021,196608 -r1,14108:32779637,43364303:26345472,898629,196608 -k1,14108:6434165,43364303:-26345472 -) -(1,14108:6434165,43364303:26345472,702021,196608 -[1,14108:6630773,43364303:25952256,505413,0 -(1,14106:6630773,43263116:25952256,404226,101187 -(1,14105:6630773,43263116:0,0,0 -g1,14105:6630773,43263116 -g1,14105:6630773,43263116 -g1,14105:6303093,43263116 -(1,14105:6303093,43263116:0,0,0 -) -g1,14105:6630773,43263116 -) -g1,14106:6946919,43263116 -g1,14106:7263065,43263116 -g1,14106:15166707,43263116 -g1,14106:15798999,43263116 -h1,14106:19908893,43263116:0,0,0 -k1,14106:32583029,43263116:12674136 -g1,14106:32583029,43263116 -) -] -) -g1,14108:32583029,43364303 -g1,14108:6630773,43364303 -g1,14108:6630773,43364303 -g1,14108:32583029,43364303 -g1,14108:32583029,43364303 -) -h1,14108:6630773,43560911:0,0,0 -(1,14112:6630773,44865281:25952256,505283,134348 -h1,14111:6630773,44865281:983040,0,0 -k1,14111:10202903,44865281:219963 -k1,14111:13864160,44865281:219962 -k1,14111:15075683,44865281:219963 -k1,14111:18504943,44865281:219962 -k1,14111:19340944,44865281:219963 -k1,14111:21810757,44865281:219962 -k1,14111:24585313,44865281:219963 -k1,14111:25491437,44865281:219962 -k1,14111:26730485,44865281:219963 -k1,14111:28648485,44865281:219962 -k1,14111:31157621,44865281:219963 -k1,14111:32583029,44865281:0 -) -(1,14112:6630773,45706769:25952256,505283,134348 -g1,14111:8440222,45706769 -g1,14111:9658536,45706769 -g1,14111:12217061,45706769 -g1,14111:14666141,45706769 -g1,14111:16287501,45706769 -g1,14111:17440279,45706769 -g1,14111:19300190,45706769 -g1,14111:20702660,45706769 -g1,14111:22295840,45706769 -g1,14111:23514154,45706769 -(1,14111:23514154,45706769:0,414482,122846 -r1,14111:25630979,45706769:2116825,537328,122846 -k1,14111:23514154,45706769:-2116825 -) -(1,14111:23514154,45706769:2116825,414482,122846 -k1,14111:23514154,45706769:3277 -h1,14111:25627702,45706769:0,411205,112570 -) -g1,14111:25830208,45706769 -g1,14111:27418800,45706769 -k1,14112:32583029,45706769:4056015 -g1,14112:32583029,45706769 -) -] -(1,14114:32583029,45706769:0,0,0 -g1,14114:32583029,45706769 -) -) -] -(1,14114:6630773,47279633:25952256,0,0 -h1,14114:6630773,47279633:25952256,0,0 -) -] -h1,14114:4262630,4025873:0,0,0 -] -!21666 -}271 -Input:2101:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2102:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2103:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2104:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2105:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2106:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2107:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2108:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 -{272 -[1,14172:4262630,47279633:28320399,43253760,0 -(1,14172:4262630,4025873:0,0,0 -[1,14172:-473657,4025873:25952256,0,0 -(1,14172:-473657,-710414:25952256,0,0 -h1,14172:-473657,-710414:0,0,0 -(1,14172:-473657,-710414:0,0,0 -(1,14172:-473657,-710414:0,0,0 -g1,14172:-473657,-710414 -(1,14172:-473657,-710414:65781,0,65781 -g1,14172:-407876,-710414 -[1,14172:-407876,-644633:0,0,0 +(1,14082:6630773,7488801:25952256,513147,126483 +k1,14081:8173387,7488801:345927 +k1,14081:10784893,7488801:345926 +k1,14081:13033330,7488801:345927 +k1,14081:14892483,7488801:345927 +k1,14081:15999937,7488801:345926 +k1,14081:17364949,7488801:345927 +(1,14081:17364949,7488801:0,414482,115847 +r1,14081:17723215,7488801:358266,530329,115847 +k1,14081:17364949,7488801:-358266 +) +(1,14081:17364949,7488801:358266,414482,115847 +k1,14081:17364949,7488801:3277 +h1,14081:17719938,7488801:0,411205,112570 +) +k1,14081:18069141,7488801:345926 +k1,14081:19606513,7488801:345927 +(1,14081:19606513,7488801:0,414482,115847 +r1,14081:19964779,7488801:358266,530329,115847 +k1,14081:19606513,7488801:-358266 +) +(1,14081:19606513,7488801:358266,414482,115847 +k1,14081:19606513,7488801:3277 +h1,14081:19961502,7488801:0,411205,112570 +) +k1,14081:20310706,7488801:345927 +k1,14081:24004866,7488801:345926 +(1,14081:24004866,7488801:0,452978,115847 +r1,14081:31045657,7488801:7040791,568825,115847 +k1,14081:24004866,7488801:-7040791 +) +(1,14081:24004866,7488801:7040791,452978,115847 +k1,14081:24004866,7488801:3277 +h1,14081:31042380,7488801:0,411205,112570 +) +k1,14081:31391584,7488801:345927 +k1,14082:32583029,7488801:0 +) +(1,14082:6630773,8330289:25952256,513147,134348 +(1,14081:6630773,8330289:0,452978,115847 +r1,14081:13671564,8330289:7040791,568825,115847 +k1,14081:6630773,8330289:-7040791 +) +(1,14081:6630773,8330289:7040791,452978,115847 +k1,14081:6630773,8330289:3277 +h1,14081:13668287,8330289:0,411205,112570 +) +k1,14081:14013138,8330289:167904 +k1,14081:16229042,8330289:167904 +k1,14081:16752806,8330289:167904 +k1,14081:21275576,8330289:167903 +k1,14081:26280692,8330289:167904 +k1,14081:29144092,8330289:167904 +k1,14081:29998158,8330289:167904 +k1,14081:30936765,8330289:167904 +k1,14082:32583029,8330289:0 +) +(1,14082:6630773,9171777:25952256,513147,126483 +k1,14081:8430192,9171777:160364 +k1,14081:9241983,9171777:160363 +(1,14081:9241983,9171777:0,414482,115847 +r1,14081:11007096,9171777:1765113,530329,115847 +k1,14081:9241983,9171777:-1765113 +) +(1,14081:9241983,9171777:1765113,414482,115847 +k1,14081:9241983,9171777:3277 +h1,14081:11003819,9171777:0,411205,112570 +) +k1,14081:11167460,9171777:160364 +k1,14081:12721775,9171777:160364 +k1,14081:15147718,9171777:160363 +k1,14081:18450533,9171777:160364 +k1,14081:19179093,9171777:160363 +k1,14081:22399988,9171777:160364 +k1,14081:23576815,9171777:160364 +k1,14081:28955155,9171777:160363 +k1,14081:29743354,9171777:160364 +k1,14081:32583029,9171777:0 +) +(1,14082:6630773,10013265:25952256,513147,126483 +g1,14081:8484786,10013265 +g1,14081:9675575,10013265 +g1,14081:13312823,10013265 +g1,14081:17418653,10013265 +g1,14081:19190091,10013265 +g1,14081:22415117,10013265 +g1,14081:23561997,10013265 +(1,14081:23561997,10013265:0,452978,122846 +r1,14081:25327110,10013265:1765113,575824,122846 +k1,14081:23561997,10013265:-1765113 +) +(1,14081:23561997,10013265:1765113,452978,122846 +k1,14081:23561997,10013265:3277 +h1,14081:25323833,10013265:0,411205,112570 +) +g1,14081:25700009,10013265 +(1,14081:25700009,10013265:0,414482,115847 +r1,14081:27113410,10013265:1413401,530329,115847 +k1,14081:25700009,10013265:-1413401 +) +(1,14081:25700009,10013265:1413401,414482,115847 +k1,14081:25700009,10013265:3277 +h1,14081:27110133,10013265:0,411205,112570 +) +g1,14081:27312639,10013265 +g1,14081:28703313,10013265 +(1,14081:28703313,10013265:0,414482,115847 +r1,14081:31171850,10013265:2468537,530329,115847 +k1,14081:28703313,10013265:-2468537 +) +(1,14081:28703313,10013265:2468537,414482,115847 +k1,14081:28703313,10013265:3277 +h1,14081:31168573,10013265:0,411205,112570 +) +k1,14082:32583029,10013265:1237509 +g1,14082:32583029,10013265 +) +v1,14084:6630773,11317635:0,393216,0 +(1,14085:6630773,14443317:25952256,3518898,616038 +g1,14085:6630773,14443317 +(1,14085:6630773,14443317:25952256,3518898,616038 +(1,14085:6630773,15059355:25952256,4134936,0 +[1,14085:6630773,15059355:25952256,4134936,0 +(1,14085:6630773,15033141:25952256,4082508,0 +r1,14085:6656987,15033141:26214,4082508,0 +[1,14085:6656987,15033141:25899828,4082508,0 +(1,14085:6656987,14443317:25899828,2902860,0 +[1,14085:7246811,14443317:24720180,2902860,0 +(1,14085:7246811,12625993:24720180,1085536,298548 +(1,14084:7246811,12625993:0,1085536,298548 +r1,14085:8753226,12625993:1506415,1384084,298548 +k1,14084:7246811,12625993:-1506415 +) +(1,14084:7246811,12625993:1506415,1085536,298548 +) +k1,14084:9193799,12625993:440573 +k1,14084:11861285,12625993:440573 +k1,14084:12953286,12625993:440573 +k1,14084:14412944,12625993:440573 +k1,14084:16831394,12625993:440573 +k1,14084:20297764,12625993:440573 +k1,14084:21405493,12625993:440573 +k1,14084:22434579,12625993:440573 +k1,14084:23894237,12625993:440573 +k1,14084:26072825,12625993:440573 +k1,14084:27172690,12625993:440573 +k1,14084:28632348,12625993:440573 +k1,14084:30975431,12625993:440573 +k1,14085:31966991,12625993:0 +) +(1,14085:7246811,13467481:24720180,505283,122846 +(1,14084:7246811,13467481:0,452978,122846 +r1,14085:12529042,13467481:5282231,575824,122846 +k1,14084:7246811,13467481:-5282231 +) +(1,14084:7246811,13467481:5282231,452978,122846 +k1,14084:7246811,13467481:3277 +h1,14084:12525765,13467481:0,411205,112570 +) +k1,14084:12792703,13467481:263661 +k1,14084:14247809,13467481:263661 +(1,14084:14247809,13467481:0,452978,122846 +r1,14085:19530040,13467481:5282231,575824,122846 +k1,14084:14247809,13467481:-5282231 +) +(1,14084:14247809,13467481:5282231,452978,122846 +k1,14084:14247809,13467481:3277 +h1,14084:19526763,13467481:0,411205,112570 +) +k1,14084:19793701,13467481:263661 +k1,14084:22009025,13467481:263662 +k1,14084:23715133,13467481:263661 +(1,14084:23715133,13467481:0,452978,122846 +r1,14085:28293941,13467481:4578808,575824,122846 +k1,14084:23715133,13467481:-4578808 +) +(1,14084:23715133,13467481:4578808,452978,122846 +k1,14084:23715133,13467481:3277 +h1,14084:28290664,13467481:0,411205,112570 +) +k1,14084:28557602,13467481:263661 +k1,14084:31350953,13467481:263661 +k1,14085:31966991,13467481:0 +) +(1,14085:7246811,14308969:24720180,513147,134348 +g1,14084:8034553,14308969 +g1,14084:9252867,14308969 +g1,14084:12147592,14308969 +(1,14084:12147592,14308969:0,452978,122846 +r1,14085:13209281,14308969:1061689,575824,122846 +k1,14084:12147592,14308969:-1061689 +) +(1,14084:12147592,14308969:1061689,452978,122846 +k1,14084:12147592,14308969:3277 +h1,14084:13206004,14308969:0,411205,112570 +) +g1,14084:13408510,14308969 +g1,14084:15948685,14308969 +g1,14084:17166999,14308969 +g1,14084:19658022,14308969 +k1,14085:31966991,14308969:9024305 +g1,14085:31966991,14308969 +) +] +) +] +r1,14085:32583029,15033141:26214,4082508,0 +) +] +) +) +g1,14085:32583029,14443317 +) +h1,14085:6630773,15059355:0,0,0 +(1,14088:6630773,16363724:25952256,513147,115847 +h1,14087:6630773,16363724:983040,0,0 +g1,14087:8766591,16363724 +g1,14087:10070102,16363724 +g1,14087:11361816,16363724 +(1,14087:11361816,16363724:0,452978,115847 +r1,14087:17347471,16363724:5985655,568825,115847 +k1,14087:11361816,16363724:-5985655 +) +(1,14087:11361816,16363724:5985655,452978,115847 +k1,14087:11361816,16363724:3277 +h1,14087:17344194,16363724:0,411205,112570 +) +g1,14087:17546700,16363724 +g1,14087:18397357,16363724 +g1,14087:20902798,16363724 +g1,14087:22121112,16363724 +g1,14087:25179021,16363724 +g1,14087:26037542,16363724 +g1,14087:26592631,16363724 +g1,14087:30362261,16363724 +k1,14088:32583029,16363724:474889 +g1,14088:32583029,16363724 +) +v1,14090:6630773,17492784:0,393216,0 +(1,14096:6630773,19115071:25952256,2015503,196608 +g1,14096:6630773,19115071 +g1,14096:6630773,19115071 +g1,14096:6434165,19115071 +(1,14096:6434165,19115071:0,2015503,196608 +r1,14096:32779637,19115071:26345472,2212111,196608 +k1,14096:6434165,19115071:-26345472 +) +(1,14096:6434165,19115071:26345472,2015503,196608 +[1,14096:6630773,19115071:25952256,1818895,0 +(1,14092:6630773,17706694:25952256,410518,107478 +(1,14091:6630773,17706694:0,0,0 +g1,14091:6630773,17706694 +g1,14091:6630773,17706694 +g1,14091:6303093,17706694 +(1,14091:6303093,17706694:0,0,0 +) +g1,14091:6630773,17706694 +) +k1,14092:6630773,17706694:0 +g1,14092:12637541,17706694 +g1,14092:14850561,17706694 +g1,14092:16115144,17706694 +h1,14092:16431290,17706694:0,0,0 +k1,14092:32583029,17706694:16151739 +g1,14092:32583029,17706694 +) +(1,14093:6630773,18372872:25952256,404226,107478 +h1,14093:6630773,18372872:0,0,0 +g1,14093:6946919,18372872 +g1,14093:7263065,18372872 +g1,14093:11372959,18372872 +h1,14093:11689105,18372872:0,0,0 +k1,14093:32583029,18372872:20893924 +g1,14093:32583029,18372872 +) +(1,14094:6630773,19039050:25952256,404226,76021 +h1,14094:6630773,19039050:0,0,0 +g1,14094:6946919,19039050 +g1,14094:7263065,19039050 +k1,14094:7263065,19039050:0 +h1,14094:12637541,19039050:0,0,0 +k1,14094:32583029,19039050:19945488 +g1,14094:32583029,19039050 +) +] +) +g1,14096:32583029,19115071 +g1,14096:6630773,19115071 +g1,14096:6630773,19115071 +g1,14096:32583029,19115071 +g1,14096:32583029,19115071 +) +h1,14096:6630773,19311679:0,0,0 +(1,14099:6630773,30314774:25952256,10474678,0 +k1,14099:12599879,30314774:5969106 +h1,14098:12599879,30314774:0,0,0 +(1,14098:12599879,30314774:14014044,10474678,0 +(1,14098:12599879,30314774:14014766,10474704,0 +(1,14098:12599879,30314774:14014766,10474704,0 +(1,14098:12599879,30314774:0,10474704,0 +(1,14098:12599879,30314774:0,14155776,0 +(1,14098:12599879,30314774:18939904,14155776,0 +) +k1,14098:12599879,30314774:-18939904 +) +) +g1,14098:26614645,30314774 +) +) +) +g1,14099:26613923,30314774 +k1,14099:32583029,30314774:5969106 +) +(1,14107:6630773,31156262:25952256,513147,134348 +h1,14106:6630773,31156262:983040,0,0 +k1,14106:9193157,31156262:195224 +k1,14106:12629792,31156262:195224 +k1,14106:15120088,31156262:195225 +k1,14106:16334397,31156262:195224 +k1,14106:18964939,31156262:195224 +k1,14106:21170808,31156262:195224 +k1,14106:23408790,31156262:195225 +k1,14106:26357837,31156262:195224 +k1,14106:27572146,31156262:195224 +k1,14106:32583029,31156262:0 +) +(1,14107:6630773,31997750:25952256,505283,134348 +k1,14106:7984727,31997750:157267 +(1,14106:7984727,31997750:0,452978,115847 +r1,14106:10804976,31997750:2820249,568825,115847 +k1,14106:7984727,31997750:-2820249 +) +(1,14106:7984727,31997750:2820249,452978,115847 +k1,14106:7984727,31997750:3277 +h1,14106:10801699,31997750:0,411205,112570 +) +k1,14106:10962244,31997750:157268 +k1,14106:12649777,31997750:157267 +k1,14106:13458473,31997750:157268 +k1,14106:14363506,31997750:157267 +k1,14106:16215535,31997750:157268 +k1,14106:16988840,31997750:157267 +k1,14106:18165192,31997750:157267 +k1,14106:20757778,31997750:157268 +k1,14106:22487254,31997750:157267 +k1,14106:23330684,31997750:157268 +k1,14106:24940229,31997750:157267 +k1,14106:26051046,31997750:157268 +k1,14106:27300798,31997750:157267 +(1,14106:27300798,31997750:0,452978,122846 +r1,14106:32583029,31997750:5282231,575824,122846 +k1,14106:27300798,31997750:-5282231 +) +(1,14106:27300798,31997750:5282231,452978,122846 +k1,14106:27300798,31997750:3277 +h1,14106:32579752,31997750:0,411205,112570 +) +k1,14106:32583029,31997750:0 +) +(1,14107:6630773,32839238:25952256,513147,165547 +g1,14106:7481430,32839238 +g1,14106:9444233,32839238 +g1,14106:9999322,32839238 +$1,14106:9999322,32839238 +(1,14106:9999322,32839238:973866,505283,134349 +) +(1,14106:10973188,32996527:590610,339935,8258 +) +$1,14106:11563798,32839238 +g1,14106:11763027,32839238 +g1,14106:16799468,32839238 +g1,14106:17650125,32839238 +g1,14106:18868439,32839238 +$1,14106:18868439,32839238 +$1,14106:19420252,32839238 +g1,14106:19619481,32839238 +k1,14107:32583029,32839238:10779233 +g1,14107:32583029,32839238 +) +v1,14109:6630773,33968298:0,393216,0 +(1,14113:6630773,34283394:25952256,708312,196608 +g1,14113:6630773,34283394 +g1,14113:6630773,34283394 +g1,14113:6434165,34283394 +(1,14113:6434165,34283394:0,708312,196608 +r1,14113:32779637,34283394:26345472,904920,196608 +k1,14113:6434165,34283394:-26345472 +) +(1,14113:6434165,34283394:26345472,708312,196608 +[1,14113:6630773,34283394:25952256,511704,0 +(1,14111:6630773,34175916:25952256,404226,107478 +(1,14110:6630773,34175916:0,0,0 +g1,14110:6630773,34175916 +g1,14110:6630773,34175916 +g1,14110:6303093,34175916 +(1,14110:6303093,34175916:0,0,0 +) +g1,14110:6630773,34175916 +) +g1,14111:6946919,34175916 +g1,14111:7263065,34175916 +k1,14111:7263065,34175916:0 +h1,14111:18960456,34175916:0,0,0 +k1,14111:32583029,34175916:13622573 +g1,14111:32583029,34175916 +) +] +) +g1,14113:32583029,34283394 +g1,14113:6630773,34283394 +g1,14113:6630773,34283394 +g1,14113:32583029,34283394 +g1,14113:32583029,34283394 +) +h1,14113:6630773,34480002:0,0,0 +(1,14117:6630773,35784372:25952256,513147,134348 +h1,14116:6630773,35784372:983040,0,0 +k1,14116:9605603,35784372:200036 +k1,14116:10161499,35784372:200036 +k1,14116:15198747,35784372:200036 +k1,14116:16014821,35784372:200036 +k1,14116:16570717,35784372:200036 +k1,14116:18342962,35784372:200036 +k1,14116:19074496,35784372:200037 +k1,14116:20340803,35784372:200036 +k1,14116:23845820,35784372:200036 +k1,14116:24697284,35784372:200036 +k1,14116:27651143,35784372:200036 +k1,14116:28870264,35784372:200036 +k1,14116:30723773,35784372:200036 +k1,14117:32583029,35784372:0 +) +(1,14117:6630773,36625860:25952256,513147,138281 +k1,14116:10106103,36625860:284382 +k1,14116:11199856,36625860:284383 +k1,14116:12503323,36625860:284382 +k1,14116:13583313,36625860:284383 +k1,14116:15565733,36625860:284382 +k1,14116:18657678,36625860:284383 +k1,14116:19297920,36625860:284382 +k1,14116:22093643,36625860:284383 +k1,14116:23029453,36625860:284382 +k1,14116:24332921,36625860:284383 +$1,14116:24332921,36625860 +$1,14116:24835582,36625860 +k1,14116:25119964,36625860:284382 +k1,14116:26294326,36625860:284383 +$1,14116:26294326,36625860 +$1,14116:26846139,36625860 +k1,14116:27337615,36625860:284382 +k1,14116:30409244,36625860:284383 +k1,14116:31379788,36625860:284382 +k1,14116:32583029,36625860:0 +) +(1,14117:6630773,37467348:25952256,513147,126483 +g1,14116:9003176,37467348 +g1,14116:9818443,37467348 +g1,14116:13259083,37467348 +g1,14116:16655814,37467348 +g1,14116:17471081,37467348 +g1,14116:21652277,37467348 +k1,14117:32583029,37467348:8746437 +g1,14117:32583029,37467348 +) +v1,14119:6630773,38596407:0,393216,0 +(1,14124:6630773,39583973:25952256,1380782,196608 +g1,14124:6630773,39583973 +g1,14124:6630773,39583973 +g1,14124:6434165,39583973 +(1,14124:6434165,39583973:0,1380782,196608 +r1,14124:32779637,39583973:26345472,1577390,196608 +k1,14124:6434165,39583973:-26345472 +) +(1,14124:6434165,39583973:26345472,1380782,196608 +[1,14124:6630773,39583973:25952256,1184174,0 +(1,14121:6630773,38810317:25952256,410518,107478 +(1,14120:6630773,38810317:0,0,0 +g1,14120:6630773,38810317 +g1,14120:6630773,38810317 +g1,14120:6303093,38810317 +(1,14120:6303093,38810317:0,0,0 +) +g1,14120:6630773,38810317 +) +k1,14121:6630773,38810317:0 +g1,14121:12637541,38810317 +g1,14121:14850561,38810317 +g1,14121:18328163,38810317 +h1,14121:18644309,38810317:0,0,0 +k1,14121:32583029,38810317:13938720 +g1,14121:32583029,38810317 +) +(1,14122:6630773,39476495:25952256,404226,107478 +h1,14122:6630773,39476495:0,0,0 +g1,14122:6946919,39476495 +g1,14122:7263065,39476495 +k1,14122:7263065,39476495:0 +h1,14122:11056813,39476495:0,0,0 +k1,14122:32583029,39476495:21526216 +g1,14122:32583029,39476495 +) +] +) +g1,14124:32583029,39583973 +g1,14124:6630773,39583973 +g1,14124:6630773,39583973 +g1,14124:32583029,39583973 +g1,14124:32583029,39583973 +) +h1,14124:6630773,39780581:0,0,0 +(1,14128:6630773,41084951:25952256,513147,134348 +h1,14127:6630773,41084951:983040,0,0 +k1,14127:8807526,41084951:240164 +k1,14127:10708373,41084951:240165 +k1,14127:12332657,41084951:240164 +k1,14127:13903203,41084951:240165 +k1,14127:14794795,41084951:240164 +k1,14127:17293985,41084951:240164 +k1,14127:17890010,41084951:240165 +k1,14127:22967386,41084951:240164 +k1,14127:23858978,41084951:240164 +k1,14127:24455003,41084951:240165 +k1,14127:28265568,41084951:240164 +k1,14127:30251612,41084951:240165 +k1,14127:32227169,41084951:240164 +k1,14127:32583029,41084951:0 +) +(1,14128:6630773,41926439:25952256,513147,134348 +g1,14127:10268021,41926439 +g1,14127:15904772,41926439 +k1,14128:32583029,41926439:14545060 +g1,14128:32583029,41926439 +) +v1,14130:6630773,43055498:0,393216,0 +(1,14134:6630773,43364303:25952256,702021,196608 +g1,14134:6630773,43364303 +g1,14134:6630773,43364303 +g1,14134:6434165,43364303 +(1,14134:6434165,43364303:0,702021,196608 +r1,14134:32779637,43364303:26345472,898629,196608 +k1,14134:6434165,43364303:-26345472 +) +(1,14134:6434165,43364303:26345472,702021,196608 +[1,14134:6630773,43364303:25952256,505413,0 +(1,14132:6630773,43263116:25952256,404226,101187 +(1,14131:6630773,43263116:0,0,0 +g1,14131:6630773,43263116 +g1,14131:6630773,43263116 +g1,14131:6303093,43263116 +(1,14131:6303093,43263116:0,0,0 +) +g1,14131:6630773,43263116 +) +g1,14132:6946919,43263116 +g1,14132:7263065,43263116 +g1,14132:15166707,43263116 +g1,14132:15798999,43263116 +h1,14132:19908893,43263116:0,0,0 +k1,14132:32583029,43263116:12674136 +g1,14132:32583029,43263116 +) +] +) +g1,14134:32583029,43364303 +g1,14134:6630773,43364303 +g1,14134:6630773,43364303 +g1,14134:32583029,43364303 +g1,14134:32583029,43364303 +) +h1,14134:6630773,43560911:0,0,0 +(1,14138:6630773,44865281:25952256,505283,134348 +h1,14137:6630773,44865281:983040,0,0 +k1,14137:10202903,44865281:219963 +k1,14137:13864160,44865281:219962 +k1,14137:15075683,44865281:219963 +k1,14137:18504943,44865281:219962 +k1,14137:19340944,44865281:219963 +k1,14137:21810757,44865281:219962 +k1,14137:24585313,44865281:219963 +k1,14137:25491437,44865281:219962 +k1,14137:26730485,44865281:219963 +k1,14137:28648485,44865281:219962 +k1,14137:31157621,44865281:219963 +k1,14137:32583029,44865281:0 +) +(1,14138:6630773,45706769:25952256,505283,134348 +g1,14137:8440222,45706769 +g1,14137:9658536,45706769 +g1,14137:12217061,45706769 +g1,14137:14666141,45706769 +g1,14137:16287501,45706769 +g1,14137:17440279,45706769 +g1,14137:19300190,45706769 +g1,14137:20702660,45706769 +g1,14137:22295840,45706769 +g1,14137:23514154,45706769 +(1,14137:23514154,45706769:0,414482,122846 +r1,14137:25630979,45706769:2116825,537328,122846 +k1,14137:23514154,45706769:-2116825 +) +(1,14137:23514154,45706769:2116825,414482,122846 +k1,14137:23514154,45706769:3277 +h1,14137:25627702,45706769:0,411205,112570 +) +g1,14137:25830208,45706769 +g1,14137:27418800,45706769 +k1,14138:32583029,45706769:4056015 +g1,14138:32583029,45706769 +) +] +(1,14140:32583029,45706769:0,0,0 +g1,14140:32583029,45706769 +) +) +] +(1,14140:6630773,47279633:25952256,0,0 +h1,14140:6630773,47279633:25952256,0,0 +) +] +h1,14140:4262630,4025873:0,0,0 +] +!21662 +}272 +Input:2098:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2099:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2100:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2101:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2102:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2103:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2104:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2105:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{273 +[1,14198:4262630,47279633:28320399,43253760,0 +(1,14198:4262630,4025873:0,0,0 +[1,14198:-473657,4025873:25952256,0,0 +(1,14198:-473657,-710414:25952256,0,0 +h1,14198:-473657,-710414:0,0,0 +(1,14198:-473657,-710414:0,0,0 +(1,14198:-473657,-710414:0,0,0 +g1,14198:-473657,-710414 +(1,14198:-473657,-710414:65781,0,65781 +g1,14198:-407876,-710414 +[1,14198:-407876,-644633:0,0,0 ] ) -k1,14172:-473657,-710414:-65781 +k1,14198:-473657,-710414:-65781 ) ) -k1,14172:25478599,-710414:25952256 -g1,14172:25478599,-710414 +k1,14198:25478599,-710414:25952256 +g1,14198:25478599,-710414 ) ] ) -[1,14172:6630773,47279633:25952256,43253760,0 -[1,14172:6630773,4812305:25952256,786432,0 -(1,14172:6630773,4812305:25952256,505283,11795 -(1,14172:6630773,4812305:25952256,505283,11795 -g1,14172:3078558,4812305 -[1,14172:3078558,4812305:0,0,0 -(1,14172:3078558,2439708:0,1703936,0 -k1,14172:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14172:2537886,2439708:1179648,16384,0 +[1,14198:6630773,47279633:25952256,43253760,0 +[1,14198:6630773,4812305:25952256,786432,0 +(1,14198:6630773,4812305:25952256,513147,134348 +(1,14198:6630773,4812305:25952256,513147,134348 +g1,14198:3078558,4812305 +[1,14198:3078558,4812305:0,0,0 +(1,14198:3078558,2439708:0,1703936,0 +k1,14198:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14198:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14172:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14198:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14172:3078558,4812305:0,0,0 -(1,14172:3078558,2439708:0,1703936,0 -g1,14172:29030814,2439708 -g1,14172:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14172:36151628,1915420:16384,1179648,0 +[1,14198:3078558,4812305:0,0,0 +(1,14198:3078558,2439708:0,1703936,0 +g1,14198:29030814,2439708 +g1,14198:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14198:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14172:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14198:37855564,2439708:1179648,16384,0 ) ) -k1,14172:3078556,2439708:-34777008 +k1,14198:3078556,2439708:-34777008 ) ] -[1,14172:3078558,4812305:0,0,0 -(1,14172:3078558,49800853:0,16384,2228224 -k1,14172:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14172:2537886,49800853:1179648,16384,0 +[1,14198:3078558,4812305:0,0,0 +(1,14198:3078558,49800853:0,16384,2228224 +k1,14198:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14198:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14172:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14198:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14172:3078558,4812305:0,0,0 -(1,14172:3078558,49800853:0,16384,2228224 -g1,14172:29030814,49800853 -g1,14172:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14172:36151628,51504789:16384,1179648,0 +[1,14198:3078558,4812305:0,0,0 +(1,14198:3078558,49800853:0,16384,2228224 +g1,14198:29030814,49800853 +g1,14198:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14198:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14172:37855564,49800853:1179648,16384,0 -) -) -k1,14172:3078556,49800853:-34777008 -) -] -g1,14172:6630773,4812305 -g1,14172:6630773,4812305 -g1,14172:8724648,4812305 -k1,14172:31387652,4812305:22663004 -) -) -] -[1,14172:6630773,45706769:25952256,40108032,0 -(1,14172:6630773,45706769:25952256,40108032,0 -(1,14172:6630773,45706769:0,0,0 -g1,14172:6630773,45706769 -) -[1,14172:6630773,45706769:25952256,40108032,0 -v1,14114:6630773,6254097:0,393216,0 -(1,14122:6630773,9233905:25952256,3373024,196608 -g1,14122:6630773,9233905 -g1,14122:6630773,9233905 -g1,14122:6434165,9233905 -(1,14122:6434165,9233905:0,3373024,196608 -r1,14122:32779637,9233905:26345472,3569632,196608 -k1,14122:6434165,9233905:-26345472 -) -(1,14122:6434165,9233905:26345472,3373024,196608 -[1,14122:6630773,9233905:25952256,3176416,0 -(1,14116:6630773,6461715:25952256,404226,107478 -(1,14115:6630773,6461715:0,0,0 -g1,14115:6630773,6461715 -g1,14115:6630773,6461715 -g1,14115:6303093,6461715 -(1,14115:6303093,6461715:0,0,0 -) -g1,14115:6630773,6461715 -) -k1,14116:6630773,6461715:0 -g1,14116:10424522,6461715 -g1,14116:11056814,6461715 -k1,14116:11056814,6461715:0 -h1,14116:13269834,6461715:0,0,0 -k1,14116:32583030,6461715:19313196 -g1,14116:32583030,6461715 -) -(1,14117:6630773,7127893:25952256,410518,107478 -h1,14117:6630773,7127893:0,0,0 -g1,14117:6946919,7127893 -g1,14117:7263065,7127893 -g1,14117:7579211,7127893 -g1,14117:7895357,7127893 -g1,14117:8211503,7127893 -g1,14117:8527649,7127893 -g1,14117:8843795,7127893 -g1,14117:10740670,7127893 -g1,14117:11372962,7127893 -g1,14117:12953691,7127893 -g1,14117:13585983,7127893 -g1,14117:14218275,7127893 -g1,14117:18960461,7127893 -g1,14117:20857335,7127893 -g1,14117:21489627,7127893 -g1,14117:23702647,7127893 -h1,14117:24018793,7127893:0,0,0 -k1,14117:32583029,7127893:8564236 -g1,14117:32583029,7127893 -) -(1,14118:6630773,7794071:25952256,404226,107478 -h1,14118:6630773,7794071:0,0,0 -g1,14118:6946919,7794071 -g1,14118:7263065,7794071 -g1,14118:11056813,7794071 -h1,14118:11372959,7794071:0,0,0 -k1,14118:32583029,7794071:21210070 -g1,14118:32583029,7794071 -) -(1,14119:6630773,8460249:25952256,404226,107478 -h1,14119:6630773,8460249:0,0,0 -g1,14119:6946919,8460249 -g1,14119:7263065,8460249 -g1,14119:11372959,8460249 -h1,14119:11689105,8460249:0,0,0 -k1,14119:32583029,8460249:20893924 -g1,14119:32583029,8460249 -) -(1,14120:6630773,9126427:25952256,404226,107478 -h1,14120:6630773,9126427:0,0,0 -g1,14120:6946919,9126427 -g1,14120:7263065,9126427 -g1,14120:15166707,9126427 -g1,14120:15798999,9126427 -g1,14120:18012019,9126427 -g1,14120:20225039,9126427 -g1,14120:20857331,9126427 -g1,14120:22754206,9126427 -g1,14120:24018789,9126427 -g1,14120:25599518,9126427 -h1,14120:27180246,9126427:0,0,0 -k1,14120:32583029,9126427:5402783 -g1,14120:32583029,9126427 -) -] -) -g1,14122:32583029,9233905 -g1,14122:6630773,9233905 -g1,14122:6630773,9233905 -g1,14122:32583029,9233905 -g1,14122:32583029,9233905 -) -h1,14122:6630773,9430513:0,0,0 -(1,14125:6630773,11479881:25952256,513147,138281 -(1,14125:6630773,11479881:2809528,485622,0 -g1,14125:6630773,11479881 -g1,14125:9440301,11479881 -) -g1,14125:12308812,11479881 -g1,14125:13190271,11479881 -$1,14125:13190271,11479881 -$1,14125:13692932,11479881 -g1,14125:13897404,11479881 -g1,14125:15322156,11479881 -$1,14125:15322156,11479881 -$1,14125:15873969,11479881 -g1,14125:16078441,11479881 -k1,14125:32583029,11479881:15030028 -g1,14125:32583029,11479881 -) -(1,14129:6630773,12714585:25952256,513147,134348 -k1,14128:8076178,12714585:248718 -k1,14128:10590475,12714585:248717 -k1,14128:13453424,12714585:248718 -k1,14128:14361433,12714585:248717 -k1,14128:16008689,12714585:248718 -k1,14128:17361688,12714585:248717 -k1,14128:18358172,12714585:248718 -k1,14128:21268306,12714585:248717 -k1,14128:24075550,12714585:248718 -k1,14128:27604999,12714585:248717 -(1,14128:27604999,12714585:0,452978,115847 -r1,14128:30425248,12714585:2820249,568825,115847 -k1,14128:27604999,12714585:-2820249 -) -(1,14128:27604999,12714585:2820249,452978,115847 -k1,14128:27604999,12714585:3277 -h1,14128:30421971,12714585:0,411205,112570 -) -k1,14128:30847636,12714585:248718 -k1,14128:32583029,12714585:0 -) -(1,14129:6630773,13556073:25952256,505283,122846 -g1,14128:9804681,13556073 -g1,14128:13091966,13556073 -(1,14128:13091966,13556073:0,452978,115847 -r1,14128:15912215,13556073:2820249,568825,115847 -k1,14128:13091966,13556073:-2820249 -) -(1,14128:13091966,13556073:2820249,452978,115847 -k1,14128:13091966,13556073:3277 -h1,14128:15908938,13556073:0,411205,112570 -) -g1,14128:16285114,13556073 -(1,14128:16285114,13556073:0,452978,115847 -r1,14128:18050227,13556073:1765113,568825,115847 -k1,14128:16285114,13556073:-1765113 -) -(1,14128:16285114,13556073:1765113,452978,115847 -k1,14128:16285114,13556073:3277 -h1,14128:18046950,13556073:0,411205,112570 -) -g1,14128:18423126,13556073 -(1,14128:18423126,13556073:0,459977,115847 -r1,14128:20539951,13556073:2116825,575824,115847 -k1,14128:18423126,13556073:-2116825 -) -(1,14128:18423126,13556073:2116825,459977,115847 -k1,14128:18423126,13556073:3277 -h1,14128:20536674,13556073:0,411205,112570 -) -g1,14128:20739180,13556073 -g1,14128:22129854,13556073 -(1,14128:22129854,13556073:0,452978,122846 -r1,14128:24598391,13556073:2468537,575824,122846 -k1,14128:22129854,13556073:-2468537 -) -(1,14128:22129854,13556073:2468537,452978,122846 -k1,14128:22129854,13556073:3277 -h1,14128:24595114,13556073:0,411205,112570 -) -k1,14129:32583029,13556073:7810968 -g1,14129:32583029,13556073 -) -v1,14131:6630773,14643699:0,393216,0 -(1,14138:6630773,16957329:25952256,2706846,196608 -g1,14138:6630773,16957329 -g1,14138:6630773,16957329 -g1,14138:6434165,16957329 -(1,14138:6434165,16957329:0,2706846,196608 -r1,14138:32779637,16957329:26345472,2903454,196608 -k1,14138:6434165,16957329:-26345472 -) -(1,14138:6434165,16957329:26345472,2706846,196608 -[1,14138:6630773,16957329:25952256,2510238,0 -(1,14133:6630773,14851317:25952256,404226,107478 -(1,14132:6630773,14851317:0,0,0 -g1,14132:6630773,14851317 -g1,14132:6630773,14851317 -g1,14132:6303093,14851317 -(1,14132:6303093,14851317:0,0,0 -) -g1,14132:6630773,14851317 -) -k1,14133:6630773,14851317:0 -g1,14133:10424522,14851317 -g1,14133:11056814,14851317 -g1,14133:13585980,14851317 -g1,14133:16115146,14851317 -g1,14133:18012020,14851317 -h1,14133:18328166,14851317:0,0,0 -k1,14133:32583029,14851317:14254863 -g1,14133:32583029,14851317 -) -(1,14134:6630773,15517495:25952256,404226,107478 -h1,14134:6630773,15517495:0,0,0 -g1,14134:6946919,15517495 -g1,14134:7263065,15517495 -g1,14134:11372959,15517495 -h1,14134:11689105,15517495:0,0,0 -k1,14134:32583029,15517495:20893924 -g1,14134:32583029,15517495 -) -(1,14135:6630773,16183673:25952256,404226,101187 -h1,14135:6630773,16183673:0,0,0 -g1,14135:6946919,16183673 -g1,14135:7263065,16183673 -g1,14135:16115144,16183673 -g1,14135:16747436,16183673 -g1,14135:18960456,16183673 -h1,14135:19276602,16183673:0,0,0 -k1,14135:32583029,16183673:13306427 -g1,14135:32583029,16183673 -) -(1,14136:6630773,16849851:25952256,404226,107478 -h1,14136:6630773,16849851:0,0,0 -g1,14136:6946919,16849851 -g1,14136:7263065,16849851 -g1,14136:16115144,16849851 -g1,14136:16747436,16849851 -h1,14136:19276602,16849851:0,0,0 -k1,14136:32583029,16849851:13306427 -g1,14136:32583029,16849851 -) -] -) -g1,14138:32583029,16957329 -g1,14138:6630773,16957329 -g1,14138:6630773,16957329 -g1,14138:32583029,16957329 -g1,14138:32583029,16957329 -) -h1,14138:6630773,17153937:0,0,0 -(1,14141:6630773,28115600:25952256,10474678,0 -k1,14141:12599879,28115600:5969106 -h1,14140:12599879,28115600:0,0,0 -(1,14140:12599879,28115600:14014044,10474678,0 -(1,14140:12599879,28115600:14014766,10474704,0 -(1,14140:12599879,28115600:14014766,10474704,0 -(1,14140:12599879,28115600:0,10474704,0 -(1,14140:12599879,28115600:0,14155776,0 -(1,14140:12599879,28115600:18939904,14155776,0 -) -k1,14140:12599879,28115600:-18939904 -) -) -g1,14140:26614645,28115600 -) -) -) -g1,14141:26613923,28115600 -k1,14141:32583029,28115600:5969106 -) -(1,14148:6630773,29743520:25952256,505283,126483 -(1,14148:6630773,29743520:2809528,485622,11795 -g1,14148:6630773,29743520 -g1,14148:9440301,29743520 -) -g1,14148:13088035,29743520 -k1,14148:32583029,29743520:18020434 -g1,14148:32583029,29743520 -) -(1,14151:6630773,30978224:25952256,513147,126483 -k1,14150:7378791,30978224:278125 -k1,14150:8188412,30978224:278124 -k1,14150:9752353,30978224:278125 -k1,14150:12660438,30978224:278125 -k1,14150:13589990,30978224:278124 -k1,14150:15065458,30978224:278125 -k1,14150:18590237,30978224:278125 -k1,14150:20266900,30978224:278125 -k1,14150:21938975,30978224:278124 -k1,14150:23731637,30978224:278125 -k1,14150:27072915,30978224:278125 -k1,14150:27967077,30978224:278124 -k1,14150:28601062,30978224:278125 -k1,14150:32583029,30978224:0 -) -(1,14151:6630773,31819712:25952256,505283,7863 -k1,14151:32583028,31819712:24206376 -g1,14151:32583028,31819712 -) -v1,14153:6630773,32907338:0,393216,0 -(1,14159:6630773,34548499:25952256,2034377,196608 -g1,14159:6630773,34548499 -g1,14159:6630773,34548499 -g1,14159:6434165,34548499 -(1,14159:6434165,34548499:0,2034377,196608 -r1,14159:32779637,34548499:26345472,2230985,196608 -k1,14159:6434165,34548499:-26345472 -) -(1,14159:6434165,34548499:26345472,2034377,196608 -[1,14159:6630773,34548499:25952256,1837769,0 -(1,14155:6630773,33114956:25952256,404226,107478 -(1,14154:6630773,33114956:0,0,0 -g1,14154:6630773,33114956 -g1,14154:6630773,33114956 -g1,14154:6303093,33114956 -(1,14154:6303093,33114956:0,0,0 -) -g1,14154:6630773,33114956 -) -k1,14155:6630773,33114956:0 -g1,14155:10424522,33114956 -g1,14155:11056814,33114956 -g1,14155:13585980,33114956 -g1,14155:16115146,33114956 -g1,14155:18012020,33114956 -h1,14155:18328166,33114956:0,0,0 -k1,14155:32583029,33114956:14254863 -g1,14155:32583029,33114956 -) -(1,14156:6630773,33781134:25952256,404226,107478 -h1,14156:6630773,33781134:0,0,0 -g1,14156:6946919,33781134 -g1,14156:7263065,33781134 -g1,14156:11372959,33781134 -h1,14156:11689105,33781134:0,0,0 -k1,14156:32583029,33781134:20893924 -g1,14156:32583029,33781134 -) -(1,14157:6630773,34447312:25952256,404226,101187 -h1,14157:6630773,34447312:0,0,0 -g1,14157:6946919,34447312 -g1,14157:7263065,34447312 -g1,14157:16115144,34447312 -g1,14157:16747436,34447312 -g1,14157:20225039,34447312 -g1,14157:20857331,34447312 -g1,14157:22438061,34447312 -g1,14157:24018790,34447312 -g1,14157:24651082,34447312 -g1,14157:26864102,34447312 -h1,14157:27180248,34447312:0,0,0 -k1,14157:32583029,34447312:5402781 -g1,14157:32583029,34447312 -) -] -) -g1,14159:32583029,34548499 -g1,14159:6630773,34548499 -g1,14159:6630773,34548499 -g1,14159:32583029,34548499 -g1,14159:32583029,34548499 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14198:37855564,49800853:1179648,16384,0 +) +) +k1,14198:3078556,49800853:-34777008 +) +] +g1,14198:6630773,4812305 +k1,14198:25712890,4812305:17886740 +g1,14198:29057847,4812305 +g1,14198:29873114,4812305 +) +) +] +[1,14198:6630773,45706769:25952256,40108032,0 +(1,14198:6630773,45706769:25952256,40108032,0 +(1,14198:6630773,45706769:0,0,0 +g1,14198:6630773,45706769 +) +[1,14198:6630773,45706769:25952256,40108032,0 +v1,14140:6630773,6254097:0,393216,0 +(1,14148:6630773,9233905:25952256,3373024,196608 +g1,14148:6630773,9233905 +g1,14148:6630773,9233905 +g1,14148:6434165,9233905 +(1,14148:6434165,9233905:0,3373024,196608 +r1,14148:32779637,9233905:26345472,3569632,196608 +k1,14148:6434165,9233905:-26345472 +) +(1,14148:6434165,9233905:26345472,3373024,196608 +[1,14148:6630773,9233905:25952256,3176416,0 +(1,14142:6630773,6461715:25952256,404226,107478 +(1,14141:6630773,6461715:0,0,0 +g1,14141:6630773,6461715 +g1,14141:6630773,6461715 +g1,14141:6303093,6461715 +(1,14141:6303093,6461715:0,0,0 +) +g1,14141:6630773,6461715 +) +k1,14142:6630773,6461715:0 +g1,14142:10424522,6461715 +g1,14142:11056814,6461715 +k1,14142:11056814,6461715:0 +h1,14142:13269834,6461715:0,0,0 +k1,14142:32583030,6461715:19313196 +g1,14142:32583030,6461715 +) +(1,14143:6630773,7127893:25952256,410518,107478 +h1,14143:6630773,7127893:0,0,0 +g1,14143:6946919,7127893 +g1,14143:7263065,7127893 +g1,14143:7579211,7127893 +g1,14143:7895357,7127893 +g1,14143:8211503,7127893 +g1,14143:8527649,7127893 +g1,14143:8843795,7127893 +g1,14143:10740670,7127893 +g1,14143:11372962,7127893 +g1,14143:12953691,7127893 +g1,14143:13585983,7127893 +g1,14143:14218275,7127893 +g1,14143:18960461,7127893 +g1,14143:20857335,7127893 +g1,14143:21489627,7127893 +g1,14143:23702647,7127893 +h1,14143:24018793,7127893:0,0,0 +k1,14143:32583029,7127893:8564236 +g1,14143:32583029,7127893 +) +(1,14144:6630773,7794071:25952256,404226,107478 +h1,14144:6630773,7794071:0,0,0 +g1,14144:6946919,7794071 +g1,14144:7263065,7794071 +g1,14144:11056813,7794071 +h1,14144:11372959,7794071:0,0,0 +k1,14144:32583029,7794071:21210070 +g1,14144:32583029,7794071 +) +(1,14145:6630773,8460249:25952256,404226,107478 +h1,14145:6630773,8460249:0,0,0 +g1,14145:6946919,8460249 +g1,14145:7263065,8460249 +g1,14145:11372959,8460249 +h1,14145:11689105,8460249:0,0,0 +k1,14145:32583029,8460249:20893924 +g1,14145:32583029,8460249 +) +(1,14146:6630773,9126427:25952256,404226,107478 +h1,14146:6630773,9126427:0,0,0 +g1,14146:6946919,9126427 +g1,14146:7263065,9126427 +g1,14146:15166707,9126427 +g1,14146:15798999,9126427 +g1,14146:18012019,9126427 +g1,14146:20225039,9126427 +g1,14146:20857331,9126427 +g1,14146:22754206,9126427 +g1,14146:24018789,9126427 +g1,14146:25599518,9126427 +h1,14146:27180246,9126427:0,0,0 +k1,14146:32583029,9126427:5402783 +g1,14146:32583029,9126427 +) +] +) +g1,14148:32583029,9233905 +g1,14148:6630773,9233905 +g1,14148:6630773,9233905 +g1,14148:32583029,9233905 +g1,14148:32583029,9233905 +) +h1,14148:6630773,9430513:0,0,0 +(1,14151:6630773,11479881:25952256,513147,138281 +(1,14151:6630773,11479881:2809528,485622,0 +g1,14151:6630773,11479881 +g1,14151:9440301,11479881 +) +g1,14151:12308812,11479881 +g1,14151:13190271,11479881 +$1,14151:13190271,11479881 +$1,14151:13692932,11479881 +g1,14151:13897404,11479881 +g1,14151:15322156,11479881 +$1,14151:15322156,11479881 +$1,14151:15873969,11479881 +g1,14151:16078441,11479881 +k1,14151:32583029,11479881:15030028 +g1,14151:32583029,11479881 +) +(1,14155:6630773,12714585:25952256,513147,134348 +k1,14154:8076178,12714585:248718 +k1,14154:10590475,12714585:248717 +k1,14154:13453424,12714585:248718 +k1,14154:14361433,12714585:248717 +k1,14154:16008689,12714585:248718 +k1,14154:17361688,12714585:248717 +k1,14154:18358172,12714585:248718 +k1,14154:21268306,12714585:248717 +k1,14154:24075550,12714585:248718 +k1,14154:27604999,12714585:248717 +(1,14154:27604999,12714585:0,452978,115847 +r1,14154:30425248,12714585:2820249,568825,115847 +k1,14154:27604999,12714585:-2820249 +) +(1,14154:27604999,12714585:2820249,452978,115847 +k1,14154:27604999,12714585:3277 +h1,14154:30421971,12714585:0,411205,112570 +) +k1,14154:30847636,12714585:248718 +k1,14154:32583029,12714585:0 +) +(1,14155:6630773,13556073:25952256,505283,122846 +g1,14154:9804681,13556073 +g1,14154:13091966,13556073 +(1,14154:13091966,13556073:0,452978,115847 +r1,14154:15912215,13556073:2820249,568825,115847 +k1,14154:13091966,13556073:-2820249 +) +(1,14154:13091966,13556073:2820249,452978,115847 +k1,14154:13091966,13556073:3277 +h1,14154:15908938,13556073:0,411205,112570 +) +g1,14154:16285114,13556073 +(1,14154:16285114,13556073:0,452978,115847 +r1,14154:18050227,13556073:1765113,568825,115847 +k1,14154:16285114,13556073:-1765113 +) +(1,14154:16285114,13556073:1765113,452978,115847 +k1,14154:16285114,13556073:3277 +h1,14154:18046950,13556073:0,411205,112570 +) +g1,14154:18423126,13556073 +(1,14154:18423126,13556073:0,459977,115847 +r1,14154:20539951,13556073:2116825,575824,115847 +k1,14154:18423126,13556073:-2116825 +) +(1,14154:18423126,13556073:2116825,459977,115847 +k1,14154:18423126,13556073:3277 +h1,14154:20536674,13556073:0,411205,112570 +) +g1,14154:20739180,13556073 +g1,14154:22129854,13556073 +(1,14154:22129854,13556073:0,452978,122846 +r1,14154:24598391,13556073:2468537,575824,122846 +k1,14154:22129854,13556073:-2468537 +) +(1,14154:22129854,13556073:2468537,452978,122846 +k1,14154:22129854,13556073:3277 +h1,14154:24595114,13556073:0,411205,112570 +) +k1,14155:32583029,13556073:7810968 +g1,14155:32583029,13556073 +) +v1,14157:6630773,14643699:0,393216,0 +(1,14164:6630773,16957329:25952256,2706846,196608 +g1,14164:6630773,16957329 +g1,14164:6630773,16957329 +g1,14164:6434165,16957329 +(1,14164:6434165,16957329:0,2706846,196608 +r1,14164:32779637,16957329:26345472,2903454,196608 +k1,14164:6434165,16957329:-26345472 +) +(1,14164:6434165,16957329:26345472,2706846,196608 +[1,14164:6630773,16957329:25952256,2510238,0 +(1,14159:6630773,14851317:25952256,404226,107478 +(1,14158:6630773,14851317:0,0,0 +g1,14158:6630773,14851317 +g1,14158:6630773,14851317 +g1,14158:6303093,14851317 +(1,14158:6303093,14851317:0,0,0 +) +g1,14158:6630773,14851317 +) +k1,14159:6630773,14851317:0 +g1,14159:10424522,14851317 +g1,14159:11056814,14851317 +g1,14159:13585980,14851317 +g1,14159:16115146,14851317 +g1,14159:18012020,14851317 +h1,14159:18328166,14851317:0,0,0 +k1,14159:32583029,14851317:14254863 +g1,14159:32583029,14851317 +) +(1,14160:6630773,15517495:25952256,404226,107478 +h1,14160:6630773,15517495:0,0,0 +g1,14160:6946919,15517495 +g1,14160:7263065,15517495 +g1,14160:11372959,15517495 +h1,14160:11689105,15517495:0,0,0 +k1,14160:32583029,15517495:20893924 +g1,14160:32583029,15517495 +) +(1,14161:6630773,16183673:25952256,404226,101187 +h1,14161:6630773,16183673:0,0,0 +g1,14161:6946919,16183673 +g1,14161:7263065,16183673 +g1,14161:16115144,16183673 +g1,14161:16747436,16183673 +g1,14161:18960456,16183673 +h1,14161:19276602,16183673:0,0,0 +k1,14161:32583029,16183673:13306427 +g1,14161:32583029,16183673 +) +(1,14162:6630773,16849851:25952256,404226,107478 +h1,14162:6630773,16849851:0,0,0 +g1,14162:6946919,16849851 +g1,14162:7263065,16849851 +g1,14162:16115144,16849851 +g1,14162:16747436,16849851 +h1,14162:19276602,16849851:0,0,0 +k1,14162:32583029,16849851:13306427 +g1,14162:32583029,16849851 +) +] +) +g1,14164:32583029,16957329 +g1,14164:6630773,16957329 +g1,14164:6630773,16957329 +g1,14164:32583029,16957329 +g1,14164:32583029,16957329 +) +h1,14164:6630773,17153937:0,0,0 +(1,14167:6630773,28115600:25952256,10474678,0 +k1,14167:12599879,28115600:5969106 +h1,14166:12599879,28115600:0,0,0 +(1,14166:12599879,28115600:14014044,10474678,0 +(1,14166:12599879,28115600:14014766,10474704,0 +(1,14166:12599879,28115600:14014766,10474704,0 +(1,14166:12599879,28115600:0,10474704,0 +(1,14166:12599879,28115600:0,14155776,0 +(1,14166:12599879,28115600:18939904,14155776,0 +) +k1,14166:12599879,28115600:-18939904 +) +) +g1,14166:26614645,28115600 +) +) +) +g1,14167:26613923,28115600 +k1,14167:32583029,28115600:5969106 +) +(1,14174:6630773,29743520:25952256,505283,126483 +(1,14174:6630773,29743520:2809528,485622,11795 +g1,14174:6630773,29743520 +g1,14174:9440301,29743520 +) +g1,14174:13088035,29743520 +k1,14174:32583029,29743520:18020434 +g1,14174:32583029,29743520 +) +(1,14177:6630773,30978224:25952256,513147,126483 +k1,14176:7378791,30978224:278125 +k1,14176:8188412,30978224:278124 +k1,14176:9752353,30978224:278125 +k1,14176:12660438,30978224:278125 +k1,14176:13589990,30978224:278124 +k1,14176:15065458,30978224:278125 +k1,14176:18590237,30978224:278125 +k1,14176:20266900,30978224:278125 +k1,14176:21938975,30978224:278124 +k1,14176:23731637,30978224:278125 +k1,14176:27072915,30978224:278125 +k1,14176:27967077,30978224:278124 +k1,14176:28601062,30978224:278125 +k1,14176:32583029,30978224:0 +) +(1,14177:6630773,31819712:25952256,505283,7863 +k1,14177:32583028,31819712:24206376 +g1,14177:32583028,31819712 +) +v1,14179:6630773,32907338:0,393216,0 +(1,14185:6630773,34548499:25952256,2034377,196608 +g1,14185:6630773,34548499 +g1,14185:6630773,34548499 +g1,14185:6434165,34548499 +(1,14185:6434165,34548499:0,2034377,196608 +r1,14185:32779637,34548499:26345472,2230985,196608 +k1,14185:6434165,34548499:-26345472 +) +(1,14185:6434165,34548499:26345472,2034377,196608 +[1,14185:6630773,34548499:25952256,1837769,0 +(1,14181:6630773,33114956:25952256,404226,107478 +(1,14180:6630773,33114956:0,0,0 +g1,14180:6630773,33114956 +g1,14180:6630773,33114956 +g1,14180:6303093,33114956 +(1,14180:6303093,33114956:0,0,0 +) +g1,14180:6630773,33114956 +) +k1,14181:6630773,33114956:0 +g1,14181:10424522,33114956 +g1,14181:11056814,33114956 +g1,14181:13585980,33114956 +g1,14181:16115146,33114956 +g1,14181:18012020,33114956 +h1,14181:18328166,33114956:0,0,0 +k1,14181:32583029,33114956:14254863 +g1,14181:32583029,33114956 +) +(1,14182:6630773,33781134:25952256,404226,107478 +h1,14182:6630773,33781134:0,0,0 +g1,14182:6946919,33781134 +g1,14182:7263065,33781134 +g1,14182:11372959,33781134 +h1,14182:11689105,33781134:0,0,0 +k1,14182:32583029,33781134:20893924 +g1,14182:32583029,33781134 +) +(1,14183:6630773,34447312:25952256,404226,101187 +h1,14183:6630773,34447312:0,0,0 +g1,14183:6946919,34447312 +g1,14183:7263065,34447312 +g1,14183:16115144,34447312 +g1,14183:16747436,34447312 +g1,14183:20225039,34447312 +g1,14183:20857331,34447312 +g1,14183:22438061,34447312 +g1,14183:24018790,34447312 +g1,14183:24651082,34447312 +g1,14183:26864102,34447312 +h1,14183:27180248,34447312:0,0,0 +k1,14183:32583029,34447312:5402781 +g1,14183:32583029,34447312 +) +] +) +g1,14185:32583029,34548499 +g1,14185:6630773,34548499 +g1,14185:6630773,34548499 +g1,14185:32583029,34548499 +g1,14185:32583029,34548499 ) -h1,14159:6630773,34745107:0,0,0 -(1,14162:6630773,45706769:25952256,10474678,0 -k1,14162:12599879,45706769:5969106 -h1,14161:12599879,45706769:0,0,0 -(1,14161:12599879,45706769:14014044,10474678,0 -(1,14161:12599879,45706769:14014766,10474704,0 -(1,14161:12599879,45706769:14014766,10474704,0 -(1,14161:12599879,45706769:0,10474704,0 -(1,14161:12599879,45706769:0,14155776,0 -(1,14161:12599879,45706769:18939904,14155776,0 -) -k1,14161:12599879,45706769:-18939904 -) -) -g1,14161:26614645,45706769 -) -) -) -g1,14162:26613923,45706769 -k1,14162:32583029,45706769:5969106 -) -] -(1,14172:32583029,45706769:0,0,0 -g1,14172:32583029,45706769 -) -) -] -(1,14172:6630773,47279633:25952256,0,0 -h1,14172:6630773,47279633:25952256,0,0 -) -] -h1,14172:4262630,4025873:0,0,0 +h1,14185:6630773,34745107:0,0,0 +(1,14188:6630773,45706769:25952256,10474678,0 +k1,14188:12599879,45706769:5969106 +h1,14187:12599879,45706769:0,0,0 +(1,14187:12599879,45706769:14014044,10474678,0 +(1,14187:12599879,45706769:14014766,10474704,0 +(1,14187:12599879,45706769:14014766,10474704,0 +(1,14187:12599879,45706769:0,10474704,0 +(1,14187:12599879,45706769:0,14155776,0 +(1,14187:12599879,45706769:18939904,14155776,0 +) +k1,14187:12599879,45706769:-18939904 +) +) +g1,14187:26614645,45706769 +) +) +) +g1,14188:26613923,45706769 +k1,14188:32583029,45706769:5969106 +) +] +(1,14198:32583029,45706769:0,0,0 +g1,14198:32583029,45706769 +) +) +] +(1,14198:6630773,47279633:25952256,0,0 +h1,14198:6630773,47279633:25952256,0,0 +) +] +h1,14198:4262630,4025873:0,0,0 ] -!14019 -}272 -Input:2109:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2110:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 -{273 -[1,14232:4262630,47279633:28320399,43253760,0 -(1,14232:4262630,4025873:0,0,0 -[1,14232:-473657,4025873:25952256,0,0 -(1,14232:-473657,-710414:25952256,0,0 -h1,14232:-473657,-710414:0,0,0 -(1,14232:-473657,-710414:0,0,0 -(1,14232:-473657,-710414:0,0,0 -g1,14232:-473657,-710414 -(1,14232:-473657,-710414:65781,0,65781 -g1,14232:-407876,-710414 -[1,14232:-407876,-644633:0,0,0 +!14023 +}273 +Input:2106:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2107:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 +{274 +[1,14258:4262630,47279633:28320399,43253760,0 +(1,14258:4262630,4025873:0,0,0 +[1,14258:-473657,4025873:25952256,0,0 +(1,14258:-473657,-710414:25952256,0,0 +h1,14258:-473657,-710414:0,0,0 +(1,14258:-473657,-710414:0,0,0 +(1,14258:-473657,-710414:0,0,0 +g1,14258:-473657,-710414 +(1,14258:-473657,-710414:65781,0,65781 +g1,14258:-407876,-710414 +[1,14258:-407876,-644633:0,0,0 ] ) -k1,14232:-473657,-710414:-65781 +k1,14258:-473657,-710414:-65781 ) ) -k1,14232:25478599,-710414:25952256 -g1,14232:25478599,-710414 +k1,14258:25478599,-710414:25952256 +g1,14258:25478599,-710414 ) ] ) -[1,14232:6630773,47279633:25952256,43253760,0 -[1,14232:6630773,4812305:25952256,786432,0 -(1,14232:6630773,4812305:25952256,513147,134348 -(1,14232:6630773,4812305:25952256,513147,134348 -g1,14232:3078558,4812305 -[1,14232:3078558,4812305:0,0,0 -(1,14232:3078558,2439708:0,1703936,0 -k1,14232:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14232:2537886,2439708:1179648,16384,0 +[1,14258:6630773,47279633:25952256,43253760,0 +[1,14258:6630773,4812305:25952256,786432,0 +(1,14258:6630773,4812305:25952256,505283,11795 +(1,14258:6630773,4812305:25952256,505283,11795 +g1,14258:3078558,4812305 +[1,14258:3078558,4812305:0,0,0 +(1,14258:3078558,2439708:0,1703936,0 +k1,14258:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14258:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14232:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14258:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14232:3078558,4812305:0,0,0 -(1,14232:3078558,2439708:0,1703936,0 -g1,14232:29030814,2439708 -g1,14232:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14232:36151628,1915420:16384,1179648,0 +[1,14258:3078558,4812305:0,0,0 +(1,14258:3078558,2439708:0,1703936,0 +g1,14258:29030814,2439708 +g1,14258:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14258:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14232:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14258:37855564,2439708:1179648,16384,0 ) ) -k1,14232:3078556,2439708:-34777008 +k1,14258:3078556,2439708:-34777008 ) ] -[1,14232:3078558,4812305:0,0,0 -(1,14232:3078558,49800853:0,16384,2228224 -k1,14232:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14232:2537886,49800853:1179648,16384,0 +[1,14258:3078558,4812305:0,0,0 +(1,14258:3078558,49800853:0,16384,2228224 +k1,14258:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14258:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14232:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14258:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14232:3078558,4812305:0,0,0 -(1,14232:3078558,49800853:0,16384,2228224 -g1,14232:29030814,49800853 -g1,14232:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14232:36151628,51504789:16384,1179648,0 +[1,14258:3078558,4812305:0,0,0 +(1,14258:3078558,49800853:0,16384,2228224 +g1,14258:29030814,49800853 +g1,14258:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14258:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14232:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14258:37855564,49800853:1179648,16384,0 ) ) -k1,14232:3078556,49800853:-34777008 +k1,14258:3078556,49800853:-34777008 ) ] -g1,14232:6630773,4812305 -k1,14232:25712890,4812305:17886740 -g1,14232:29057847,4812305 -g1,14232:29873114,4812305 -) -) -] -[1,14232:6630773,45706769:25952256,40108032,0 -(1,14232:6630773,45706769:25952256,40108032,0 -(1,14232:6630773,45706769:0,0,0 -g1,14232:6630773,45706769 +g1,14258:6630773,4812305 +g1,14258:6630773,4812305 +g1,14258:8724648,4812305 +k1,14258:31387652,4812305:22663004 +) +) +] +[1,14258:6630773,45706769:25952256,40108032,0 +(1,14258:6630773,45706769:25952256,40108032,0 +(1,14258:6630773,45706769:0,0,0 +g1,14258:6630773,45706769 ) -[1,14232:6630773,45706769:25952256,40108032,0 -(1,14170:6630773,6254097:25952256,513147,126483 -h1,14169:6630773,6254097:983040,0,0 -k1,14169:8337094,6254097:253388 -k1,14169:9121980,6254097:253389 -k1,14169:10661184,6254097:253388 -k1,14169:13544532,6254097:253388 -k1,14169:14449349,6254097:253389 -k1,14169:15795222,6254097:253388 -k1,14169:18810954,6254097:253389 -(1,14169:18810954,6254097:0,452978,115847 -r1,14169:20927779,6254097:2116825,568825,115847 -k1,14169:18810954,6254097:-2116825 -) -(1,14169:18810954,6254097:2116825,452978,115847 -k1,14169:18810954,6254097:3277 -h1,14169:20924502,6254097:0,411205,112570 -) -k1,14169:21181167,6254097:253388 -k1,14169:22626000,6254097:253388 -(1,14169:22626000,6254097:0,452978,115847 -r1,14169:24742825,6254097:2116825,568825,115847 -k1,14169:22626000,6254097:-2116825 -) -(1,14169:22626000,6254097:2116825,452978,115847 -k1,14169:22626000,6254097:3277 -h1,14169:24739548,6254097:0,411205,112570 -) -k1,14169:24996214,6254097:253389 -k1,14169:26692049,6254097:253388 -k1,14169:27893088,6254097:253388 -k1,14169:29165562,6254097:253389 -k1,14169:31010820,6254097:253388 -k1,14169:32583029,6254097:0 -) -(1,14170:6630773,7095585:25952256,513147,126483 -g1,14169:8021447,7095585 -g1,14169:8872104,7095585 -g1,14169:11501408,7095585 -g1,14169:12056497,7095585 -g1,14169:15018069,7095585 -(1,14169:15018069,7095585:0,414482,115847 -r1,14169:16431470,7095585:1413401,530329,115847 -k1,14169:15018069,7095585:-1413401 -) -(1,14169:15018069,7095585:1413401,414482,115847 -k1,14169:15018069,7095585:3277 -h1,14169:16428193,7095585:0,411205,112570 -) -g1,14169:16630699,7095585 -g1,14169:17481356,7095585 -g1,14169:18428351,7095585 -g1,14169:20140806,7095585 -g1,14169:21026197,7095585 -g1,14169:21581286,7095585 -g1,14169:25027169,7095585 -g1,14169:26478791,7095585 -k1,14170:32583029,7095585:4416686 -g1,14170:32583029,7095585 -) -v1,14172:6630773,8286051:0,393216,0 -(1,14176:6630773,8594856:25952256,702021,196608 -g1,14176:6630773,8594856 -g1,14176:6630773,8594856 -g1,14176:6434165,8594856 -(1,14176:6434165,8594856:0,702021,196608 -r1,14176:32779637,8594856:26345472,898629,196608 -k1,14176:6434165,8594856:-26345472 -) -(1,14176:6434165,8594856:26345472,702021,196608 -[1,14176:6630773,8594856:25952256,505413,0 -(1,14174:6630773,8493669:25952256,404226,101187 -(1,14173:6630773,8493669:0,0,0 -g1,14173:6630773,8493669 -g1,14173:6630773,8493669 -g1,14173:6303093,8493669 -(1,14173:6303093,8493669:0,0,0 -) -g1,14173:6630773,8493669 -) -g1,14174:6946919,8493669 -g1,14174:7263065,8493669 -g1,14174:16115144,8493669 -g1,14174:16747436,8493669 -g1,14174:20225039,8493669 -g1,14174:21173477,8493669 -g1,14174:22754206,8493669 -g1,14174:23386498,8493669 -g1,14174:24967227,8493669 -g1,14174:27180247,8493669 -g1,14174:27812539,8493669 -k1,14174:27812539,8493669:0 -h1,14174:29393268,8493669:0,0,0 -k1,14174:32583029,8493669:3189761 -g1,14174:32583029,8493669 -) -] -) -g1,14176:32583029,8594856 -g1,14176:6630773,8594856 -g1,14176:6630773,8594856 -g1,14176:32583029,8594856 -g1,14176:32583029,8594856 -) -h1,14176:6630773,8791464:0,0,0 -(1,14180:6630773,11407012:25952256,564462,152109 -(1,14180:6630773,11407012:2450326,534184,12975 -g1,14180:6630773,11407012 -g1,14180:9081099,11407012 -) -g1,14180:11157280,11407012 -g1,14180:12724508,11407012 -g1,14180:14505843,11407012 -g1,14180:16916520,11407012 -g1,14180:18219180,11407012 -$1,14180:18219180,11407012 -$1,14180:18772107,11407012 -g1,14180:18997027,11407012 -g1,14180:20564255,11407012 -$1,14180:20564255,11407012 -$1,14180:21171249,11407012 -k1,14180:32583029,11407012:11411780 -g1,14180:32583029,11407012 -) -(1,14183:6630773,12641716:25952256,505283,134348 -k1,14182:7521866,12641716:263258 -k1,14182:8199902,12641716:263193 -k1,14182:9654605,12641716:263258 -k1,14182:11669640,12641716:263258 -k1,14182:13634868,12641716:263258 -k1,14182:17328936,12641716:263258 -k1,14182:20938462,12641716:263258 -k1,14182:22627128,12641716:263258 -k1,14182:24901031,12641716:263258 -k1,14182:26155848,12641716:263257 -k1,14182:28457276,12641716:263258 -k1,14182:29406696,12641716:263258 -k1,14182:31900144,12641716:263258 -k1,14182:32583029,12641716:0 -) -(1,14183:6630773,13483204:25952256,513147,134348 -k1,14182:9467707,13483204:216805 -k1,14182:11695157,13483204:216805 -k1,14182:14222106,13483204:216805 -k1,14182:15090339,13483204:216805 -k1,14182:17501289,13483204:216805 -k1,14182:22337071,13483204:216804 -k1,14182:24487188,13483204:216805 -k1,14182:26742163,13483204:216805 -k1,14182:27645130,13483204:216805 -k1,14182:30151763,13483204:216805 -k1,14182:31027860,13483204:216805 -k1,14183:32583029,13483204:0 -) -(1,14183:6630773,14324692:25952256,505283,138281 -(1,14182:6630773,14324692:0,414482,115847 -r1,14182:9099310,14324692:2468537,530329,115847 -k1,14182:6630773,14324692:-2468537 -) -(1,14182:6630773,14324692:2468537,414482,115847 -k1,14182:6630773,14324692:3277 -h1,14182:9096033,14324692:0,411205,112570 -) -k1,14182:9333087,14324692:233777 -k1,14182:10671147,14324692:233778 -k1,14182:11652690,14324692:233777 -k1,14182:14471863,14324692:233778 -k1,14182:15357068,14324692:233777 -k1,14182:19161247,14324692:233778 -k1,14182:22459488,14324692:233777 -k1,14182:24186832,14324692:233778 -k1,14182:25106771,14324692:233777 -$1,14182:25106771,14324692 -$1,14182:25609432,14324692 -k1,14182:25843210,14324692:233778 -k1,14182:27268432,14324692:233777 -$1,14182:27268432,14324692 -$1,14182:27820245,14324692 -k1,14182:28227693,14324692:233778 -k1,14182:30680519,14324692:233777 -k1,14182:32583029,14324692:0 -) -(1,14183:6630773,15166180:25952256,513147,126483 -g1,14182:7821562,15166180 -g1,14182:10804760,15166180 -g1,14182:11951640,15166180 -g1,14182:13847596,15166180 -k1,14183:32583029,15166180:15378024 -g1,14183:32583029,15166180 -) -(1,14185:6630773,16007668:25952256,505283,134348 -h1,14184:6630773,16007668:983040,0,0 -k1,14184:8773473,16007668:206111 -k1,14184:10083865,16007668:206110 -k1,14184:11224519,16007668:206111 -k1,14184:13245322,16007668:206111 -k1,14184:14642877,16007668:206110 -k1,14184:16963835,16007668:206111 -k1,14184:18905339,16007668:206111 -k1,14184:22199505,16007668:206110 -k1,14184:23091778,16007668:206111 -k1,14184:24723296,16007668:206110 -k1,14184:25612292,16007668:206111 -k1,14184:27703218,16007668:206111 -k1,14184:29783658,16007668:206110 -k1,14184:30981329,16007668:206111 -k1,14184:32583029,16007668:0 -) -(1,14185:6630773,16849156:25952256,513147,134348 -g1,14184:8630931,16849156 -g1,14184:10538684,16849156 -g1,14184:12131864,16849156 -g1,14184:13350178,16849156 -g1,14184:16575204,16849156 -g1,14184:17390471,16849156 -g1,14184:20500154,16849156 -g1,14184:23897539,16849156 -g1,14184:24779653,16849156 -k1,14185:32583029,16849156:4760541 -g1,14185:32583029,16849156 -) -v1,14188:6630773,18214932:0,393216,0 -(1,14189:6630773,20491261:25952256,2669545,616038 -g1,14189:6630773,20491261 -(1,14189:6630773,20491261:25952256,2669545,616038 -(1,14189:6630773,21107299:25952256,3285583,0 -[1,14189:6630773,21107299:25952256,3285583,0 -(1,14189:6630773,21081085:25952256,3233155,0 -r1,14189:6656987,21081085:26214,3233155,0 -[1,14189:6656987,21081085:25899828,3233155,0 -(1,14189:6656987,20491261:25899828,2053507,0 -[1,14189:7246811,20491261:24720180,2053507,0 -(1,14189:7246811,19523290:24720180,1085536,298548 -(1,14188:7246811,19523290:0,1085536,298548 -r1,14189:8753226,19523290:1506415,1384084,298548 -k1,14188:7246811,19523290:-1506415 -) -(1,14188:7246811,19523290:1506415,1085536,298548 -) -k1,14188:8969701,19523290:216475 -k1,14188:12171995,19523290:216474 -k1,14188:13380030,19523290:216475 -k1,14188:15641227,19523290:216474 -k1,14188:16473740,19523290:216475 -k1,14188:17709299,19523290:216474 -k1,14188:19309894,19523290:216475 -k1,14188:20698807,19523290:216474 -k1,14188:23216251,19523290:216475 -k1,14188:24118887,19523290:216474 -k1,14188:25203714,19523290:216475 -k1,14188:26411748,19523290:216474 -k1,14188:28363616,19523290:216475 -k1,14188:30152299,19523290:216474 -k1,14188:31966991,19523290:0 -) -(1,14189:7246811,20364778:24720180,513147,126483 -g1,14188:8097468,20364778 -g1,14188:10376810,20364778 -g1,14188:10931899,20364778 -g1,14188:12452989,20364778 -g1,14188:13311510,20364778 -g1,14188:14529824,20364778 -g1,14188:18800805,20364778 -g1,14188:21405861,20364778 -g1,14188:22221128,20364778 -(1,14188:22221128,20364778:0,452978,115847 -r1,14189:23634529,20364778:1413401,568825,115847 -k1,14188:22221128,20364778:-1413401 -) -(1,14188:22221128,20364778:1413401,452978,115847 -k1,14188:22221128,20364778:3277 -h1,14188:23631252,20364778:0,411205,112570 -) -k1,14189:31966991,20364778:8158792 -g1,14189:31966991,20364778 -) -] -) -] -r1,14189:32583029,21081085:26214,3233155,0 -) -] -) -) -g1,14189:32583029,20491261 -) -h1,14189:6630773,21107299:0,0,0 -v1,14192:6630773,22822053:0,393216,0 -(1,14205:6630773,29121933:25952256,6693096,196608 -g1,14205:6630773,29121933 -g1,14205:6630773,29121933 -g1,14205:6434165,29121933 -(1,14205:6434165,29121933:0,6693096,196608 -r1,14205:32779637,29121933:26345472,6889704,196608 -k1,14205:6434165,29121933:-26345472 -) -(1,14205:6434165,29121933:26345472,6693096,196608 -[1,14205:6630773,29121933:25952256,6496488,0 -(1,14194:6630773,23029671:25952256,404226,107478 -(1,14193:6630773,23029671:0,0,0 -g1,14193:6630773,23029671 -g1,14193:6630773,23029671 -g1,14193:6303093,23029671 -(1,14193:6303093,23029671:0,0,0 -) -g1,14193:6630773,23029671 -) -k1,14194:6630773,23029671:0 -g1,14194:10424522,23029671 -g1,14194:11056814,23029671 -k1,14194:11056814,23029671:0 -h1,14194:18012019,23029671:0,0,0 -k1,14194:32583029,23029671:14571010 -g1,14194:32583029,23029671 -) -(1,14195:6630773,23695849:25952256,404226,101187 -h1,14195:6630773,23695849:0,0,0 -g1,14195:6946919,23695849 -g1,14195:7263065,23695849 -g1,14195:7579211,23695849 -g1,14195:7895357,23695849 -g1,14195:8211503,23695849 -g1,14195:8527649,23695849 -g1,14195:8843795,23695849 -g1,14195:14534418,23695849 -g1,14195:16431292,23695849 -g1,14195:17063584,23695849 -g1,14195:19592750,23695849 -g1,14195:23702644,23695849 -h1,14195:24018790,23695849:0,0,0 -k1,14195:32583029,23695849:8564239 -g1,14195:32583029,23695849 -) -(1,14196:6630773,24362027:25952256,404226,107478 -h1,14196:6630773,24362027:0,0,0 -g1,14196:6946919,24362027 -g1,14196:7263065,24362027 -g1,14196:11056813,24362027 -h1,14196:11372959,24362027:0,0,0 -k1,14196:32583029,24362027:21210070 -g1,14196:32583029,24362027 -) -(1,14197:6630773,25028205:25952256,404226,82312 -h1,14197:6630773,25028205:0,0,0 -g1,14197:6946919,25028205 -g1,14197:7263065,25028205 -g1,14197:14218271,25028205 -g1,14197:14850563,25028205 -k1,14197:14850563,25028205:0 -h1,14197:16431292,25028205:0,0,0 -k1,14197:32583029,25028205:16151737 -g1,14197:32583029,25028205 -) -(1,14198:6630773,25694383:25952256,404226,101187 -h1,14198:6630773,25694383:0,0,0 -g1,14198:6946919,25694383 -g1,14198:7263065,25694383 -g1,14198:7579211,25694383 -g1,14198:7895357,25694383 -g1,14198:8211503,25694383 -g1,14198:8527649,25694383 -g1,14198:8843795,25694383 -g1,14198:9159941,25694383 -g1,14198:9476087,25694383 -g1,14198:9792233,25694383 -g1,14198:10108379,25694383 -g1,14198:10424525,25694383 -g1,14198:10740671,25694383 -g1,14198:11056817,25694383 -g1,14198:11372963,25694383 -g1,14198:11689109,25694383 -g1,14198:12005255,25694383 -g1,14198:12321401,25694383 -g1,14198:12637547,25694383 -g1,14198:14850567,25694383 -g1,14198:15482859,25694383 -g1,14198:21489627,25694383 -g1,14198:24018793,25694383 -g1,14198:24967230,25694383 -g1,14198:25599522,25694383 -g1,14198:27812542,25694383 -g1,14198:28444834,25694383 -k1,14198:28444834,25694383:0 -h1,14198:31606293,25694383:0,0,0 -k1,14198:32583029,25694383:976736 -g1,14198:32583029,25694383 -) -(1,14199:6630773,26360561:25952256,404226,101187 -h1,14199:6630773,26360561:0,0,0 -k1,14199:6915190,26360561:284417 -k1,14199:7199607,26360561:284417 -k1,14199:7484024,26360561:284417 -k1,14199:7768441,26360561:284417 -k1,14199:8052858,26360561:284417 -k1,14199:8337275,26360561:284417 -k1,14199:8621692,26360561:284417 -k1,14199:8906110,26360561:284418 -k1,14199:9190527,26360561:284417 -k1,14199:9474944,26360561:284417 -k1,14199:9759361,26360561:284417 -k1,14199:10043778,26360561:284417 -k1,14199:10328195,26360561:284417 -k1,14199:10612612,26360561:284417 -k1,14199:10897029,26360561:284417 -k1,14199:11181446,26360561:284417 -k1,14199:11465863,26360561:284417 -k1,14199:11750280,26360561:284417 -k1,14199:12034697,26360561:284417 -k1,14199:14215988,26360561:284417 -k1,14199:14816551,26360561:284417 -k1,14199:20791591,26360561:284418 -k1,14199:23289028,26360561:284417 -k1,14199:24205736,26360561:284417 -k1,14199:24806299,26360561:284417 -k1,14199:26987590,26360561:284417 -k1,14199:27588153,26360561:284417 -k1,14199:30717883,26360561:284417 -k1,14199:32266883,26360561:284417 -h1,14199:32583029,26360561:0,0,0 -k1,14199:32583029,26360561:0 -k1,14199:32583029,26360561:0 -) -(1,14200:6630773,27026739:25952256,404226,101187 -h1,14200:6630773,27026739:0,0,0 -g1,14200:6946919,27026739 -g1,14200:7263065,27026739 -g1,14200:14850562,27026739 -g1,14200:15482854,27026739 -g1,14200:17063583,27026739 -g1,14200:20857331,27026739 -g1,14200:22754206,27026739 -h1,14200:23070352,27026739:0,0,0 -k1,14200:32583029,27026739:9512677 -g1,14200:32583029,27026739 -) -(1,14201:6630773,27692917:25952256,404226,101187 -h1,14201:6630773,27692917:0,0,0 -g1,14201:6946919,27692917 -g1,14201:7263065,27692917 -g1,14201:12321397,27692917 -g1,14201:12953689,27692917 -h1,14201:13585981,27692917:0,0,0 -k1,14201:32583029,27692917:18997048 -g1,14201:32583029,27692917 -) -(1,14205:6630773,29014455:25952256,404226,107478 -g1,14205:7579210,29014455 -g1,14205:10424521,29014455 -g1,14205:12953687,29014455 -g1,14205:14534416,29014455 -g1,14205:16115145,29014455 -g1,14205:19592748,29014455 -g1,14205:22121914,29014455 -g1,14205:24334934,29014455 -k1,14205:32583029,29014455:4454347 -g1,14205:32583029,29014455 -) -] -) -g1,14205:32583029,29121933 -g1,14205:6630773,29121933 -g1,14205:6630773,29121933 -g1,14205:32583029,29121933 -g1,14205:32583029,29121933 -) -h1,14205:6630773,29318541:0,0,0 -(1,14208:6630773,38637119:25952256,8728754,0 -k1,14208:7928465,38637119:1297692 -h1,14207:7928465,38637119:0,0,0 -(1,14207:7928465,38637119:23356872,8728754,0 -(1,14207:7928465,38637119:23357558,8728776,0 -(1,14207:7928465,38637119:23357558,8728776,0 -(1,14207:7928465,38637119:0,8728776,0 -(1,14207:7928465,38637119:0,14155776,0 -(1,14207:7928465,38637119:37879808,14155776,0 -) -k1,14207:7928465,38637119:-37879808 -) -) -g1,14207:31286023,38637119 -) -) -) -g1,14208:31285337,38637119 -k1,14208:32583029,38637119:1297692 -) -(1,14216:6630773,39478607:25952256,513147,134348 -h1,14215:6630773,39478607:983040,0,0 -k1,14215:8603883,39478607:229852 -k1,14215:11099316,39478607:229853 -k1,14215:12348253,39478607:229852 -k1,14215:13762341,39478607:229852 -k1,14215:15836376,39478607:229852 -k1,14215:19107100,39478607:229853 -k1,14215:20528397,39478607:229852 -k1,14215:22266888,39478607:229852 -k1,14215:25924273,39478607:229852 -k1,14215:27145686,39478607:229853 -k1,14215:31692395,39478607:229852 -k1,14216:32583029,39478607:0 -) -(1,14216:6630773,40320095:25952256,513147,126483 -k1,14215:8773964,40320095:232161 -k1,14215:10860795,40320095:232162 -k1,14215:11902326,40320095:232161 -k1,14215:13153572,40320095:232161 -k1,14215:15374095,40320095:232161 -k1,14215:16265549,40320095:232162 -k1,14215:17516795,40320095:232161 -k1,14215:19174364,40320095:232161 -k1,14215:20969559,40320095:232161 -k1,14215:22243743,40320095:232162 -k1,14215:25310991,40320095:232161 -k1,14215:26009113,40320095:232161 -k1,14215:27109626,40320095:232161 -k1,14215:28817003,40320095:232162 -k1,14215:29815280,40320095:232161 -k1,14215:31436804,40320095:232161 -k1,14216:32583029,40320095:0 -) -(1,14216:6630773,41161583:25952256,513147,134348 -k1,14215:8746931,41161583:205128 -k1,14215:10962047,41161583:205127 -k1,14215:11523035,41161583:205128 -k1,14215:13601182,41161583:205128 -k1,14215:15117684,41161583:205127 -k1,14215:16756740,41161583:205128 -k1,14215:17980953,41161583:205128 -k1,14215:19370316,41161583:205127 -k1,14215:21419627,41161583:205128 -k1,14215:22757217,41161583:205128 -k1,14215:24623026,41161583:205127 -k1,14215:26671026,41161583:205128 -k1,14215:28067599,41161583:205128 -k1,14215:31031792,41161583:205127 -k1,14215:31714677,41161583:205128 -k1,14215:32583029,41161583:0 -) -(1,14216:6630773,42003071:25952256,513147,126483 -k1,14215:8062342,42003071:154272 -k1,14215:9605976,42003071:154271 -k1,14215:10707899,42003071:154272 -k1,14215:13093671,42003071:154271 -k1,14215:15104578,42003071:154272 -k1,14215:16277935,42003071:154272 -k1,14215:18276389,42003071:154271 -k1,14215:19563123,42003071:154272 -k1,14215:21378076,42003071:154271 -k1,14215:22551433,42003071:154272 -k1,14215:24086549,42003071:154272 -k1,14215:26611913,42003071:154271 -k1,14215:27425477,42003071:154272 -k1,14215:28598833,42003071:154271 -k1,14215:30178513,42003071:154272 -k1,14215:32583029,42003071:0 -) -(1,14216:6630773,42844559:25952256,513147,134348 -k1,14215:8063343,42844559:235883 -k1,14215:10564805,42844559:235882 -k1,14215:11332185,42844559:235883 -k1,14215:14873049,42844559:235883 -k1,14215:16692937,42844559:235883 -k1,14215:19463096,42844559:235882 -k1,14215:20771148,42844559:235883 -k1,14215:21465128,42844559:235883 -k1,14215:22232507,42844559:235882 -k1,14215:25272020,42844559:235883 -k1,14215:26194065,42844559:235883 -k1,14215:27377599,42844559:235883 -k1,14215:30603233,42844559:235882 -k1,14215:31490544,42844559:235883 -k1,14215:32583029,42844559:0 -) -(1,14216:6630773,43686047:25952256,513147,134348 -g1,14215:9592345,43686047 -g1,14215:12864557,43686047 -g1,14215:16089583,43686047 -g1,14215:16940240,43686047 -g1,14215:19871665,43686047 -g1,14215:21089979,43686047 -g1,14215:22473444,43686047 -k1,14216:32583029,43686047:8091731 -g1,14216:32583029,43686047 -) -v1,14218:6630773,44876513:0,393216,0 -] -(1,14232:32583029,45706769:0,0,0 -g1,14232:32583029,45706769 -) -) -] -(1,14232:6630773,47279633:25952256,0,0 -h1,14232:6630773,47279633:25952256,0,0 -) -] -h1,14232:4262630,4025873:0,0,0 -] -!20725 -}273 -Input:2111:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2112:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2113:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2114:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2115:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2116:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{274 -[1,14263:4262630,47279633:28320399,43253760,0 -(1,14263:4262630,4025873:0,0,0 -[1,14263:-473657,4025873:25952256,0,0 -(1,14263:-473657,-710414:25952256,0,0 -h1,14263:-473657,-710414:0,0,0 -(1,14263:-473657,-710414:0,0,0 -(1,14263:-473657,-710414:0,0,0 -g1,14263:-473657,-710414 -(1,14263:-473657,-710414:65781,0,65781 -g1,14263:-407876,-710414 -[1,14263:-407876,-644633:0,0,0 +[1,14258:6630773,45706769:25952256,40108032,0 +(1,14196:6630773,6254097:25952256,513147,126483 +h1,14195:6630773,6254097:983040,0,0 +k1,14195:8337094,6254097:253388 +k1,14195:9121980,6254097:253389 +k1,14195:10661184,6254097:253388 +k1,14195:13544532,6254097:253388 +k1,14195:14449349,6254097:253389 +k1,14195:15795222,6254097:253388 +k1,14195:18810954,6254097:253389 +(1,14195:18810954,6254097:0,452978,115847 +r1,14195:20927779,6254097:2116825,568825,115847 +k1,14195:18810954,6254097:-2116825 +) +(1,14195:18810954,6254097:2116825,452978,115847 +k1,14195:18810954,6254097:3277 +h1,14195:20924502,6254097:0,411205,112570 +) +k1,14195:21181167,6254097:253388 +k1,14195:22626000,6254097:253388 +(1,14195:22626000,6254097:0,452978,115847 +r1,14195:24742825,6254097:2116825,568825,115847 +k1,14195:22626000,6254097:-2116825 +) +(1,14195:22626000,6254097:2116825,452978,115847 +k1,14195:22626000,6254097:3277 +h1,14195:24739548,6254097:0,411205,112570 +) +k1,14195:24996214,6254097:253389 +k1,14195:26692049,6254097:253388 +k1,14195:27893088,6254097:253388 +k1,14195:29165562,6254097:253389 +k1,14195:31010820,6254097:253388 +k1,14195:32583029,6254097:0 +) +(1,14196:6630773,7095585:25952256,513147,126483 +g1,14195:8021447,7095585 +g1,14195:8872104,7095585 +g1,14195:11501408,7095585 +g1,14195:12056497,7095585 +g1,14195:15018069,7095585 +(1,14195:15018069,7095585:0,414482,115847 +r1,14195:16431470,7095585:1413401,530329,115847 +k1,14195:15018069,7095585:-1413401 +) +(1,14195:15018069,7095585:1413401,414482,115847 +k1,14195:15018069,7095585:3277 +h1,14195:16428193,7095585:0,411205,112570 +) +g1,14195:16630699,7095585 +g1,14195:17481356,7095585 +g1,14195:18428351,7095585 +g1,14195:20140806,7095585 +g1,14195:21026197,7095585 +g1,14195:21581286,7095585 +g1,14195:25027169,7095585 +g1,14195:26478791,7095585 +k1,14196:32583029,7095585:4416686 +g1,14196:32583029,7095585 +) +v1,14198:6630773,8286051:0,393216,0 +(1,14202:6630773,8594856:25952256,702021,196608 +g1,14202:6630773,8594856 +g1,14202:6630773,8594856 +g1,14202:6434165,8594856 +(1,14202:6434165,8594856:0,702021,196608 +r1,14202:32779637,8594856:26345472,898629,196608 +k1,14202:6434165,8594856:-26345472 +) +(1,14202:6434165,8594856:26345472,702021,196608 +[1,14202:6630773,8594856:25952256,505413,0 +(1,14200:6630773,8493669:25952256,404226,101187 +(1,14199:6630773,8493669:0,0,0 +g1,14199:6630773,8493669 +g1,14199:6630773,8493669 +g1,14199:6303093,8493669 +(1,14199:6303093,8493669:0,0,0 +) +g1,14199:6630773,8493669 +) +g1,14200:6946919,8493669 +g1,14200:7263065,8493669 +g1,14200:16115144,8493669 +g1,14200:16747436,8493669 +g1,14200:20225039,8493669 +g1,14200:21173477,8493669 +g1,14200:22754206,8493669 +g1,14200:23386498,8493669 +g1,14200:24967227,8493669 +g1,14200:27180247,8493669 +g1,14200:27812539,8493669 +k1,14200:27812539,8493669:0 +h1,14200:29393268,8493669:0,0,0 +k1,14200:32583029,8493669:3189761 +g1,14200:32583029,8493669 +) +] +) +g1,14202:32583029,8594856 +g1,14202:6630773,8594856 +g1,14202:6630773,8594856 +g1,14202:32583029,8594856 +g1,14202:32583029,8594856 +) +h1,14202:6630773,8791464:0,0,0 +(1,14206:6630773,11407012:25952256,564462,152109 +(1,14206:6630773,11407012:2450326,534184,12975 +g1,14206:6630773,11407012 +g1,14206:9081099,11407012 +) +g1,14206:11157280,11407012 +g1,14206:12724508,11407012 +g1,14206:14505843,11407012 +g1,14206:16916520,11407012 +g1,14206:18219180,11407012 +$1,14206:18219180,11407012 +$1,14206:18772107,11407012 +g1,14206:18997027,11407012 +g1,14206:20564255,11407012 +$1,14206:20564255,11407012 +$1,14206:21171249,11407012 +k1,14206:32583029,11407012:11411780 +g1,14206:32583029,11407012 +) +(1,14209:6630773,12641716:25952256,505283,134348 +k1,14208:7521866,12641716:263258 +k1,14208:8199902,12641716:263193 +k1,14208:9654605,12641716:263258 +k1,14208:11669640,12641716:263258 +k1,14208:13634868,12641716:263258 +k1,14208:17328936,12641716:263258 +k1,14208:20938462,12641716:263258 +k1,14208:22627128,12641716:263258 +k1,14208:24901031,12641716:263258 +k1,14208:26155848,12641716:263257 +k1,14208:28457276,12641716:263258 +k1,14208:29406696,12641716:263258 +k1,14208:31900144,12641716:263258 +k1,14208:32583029,12641716:0 +) +(1,14209:6630773,13483204:25952256,513147,134348 +k1,14208:9467707,13483204:216805 +k1,14208:11695157,13483204:216805 +k1,14208:14222106,13483204:216805 +k1,14208:15090339,13483204:216805 +k1,14208:17501289,13483204:216805 +k1,14208:22337071,13483204:216804 +k1,14208:24487188,13483204:216805 +k1,14208:26742163,13483204:216805 +k1,14208:27645130,13483204:216805 +k1,14208:30151763,13483204:216805 +k1,14208:31027860,13483204:216805 +k1,14209:32583029,13483204:0 +) +(1,14209:6630773,14324692:25952256,505283,138281 +(1,14208:6630773,14324692:0,414482,115847 +r1,14208:9099310,14324692:2468537,530329,115847 +k1,14208:6630773,14324692:-2468537 +) +(1,14208:6630773,14324692:2468537,414482,115847 +k1,14208:6630773,14324692:3277 +h1,14208:9096033,14324692:0,411205,112570 +) +k1,14208:9333087,14324692:233777 +k1,14208:10671147,14324692:233778 +k1,14208:11652690,14324692:233777 +k1,14208:14471863,14324692:233778 +k1,14208:15357068,14324692:233777 +k1,14208:19161247,14324692:233778 +k1,14208:22459488,14324692:233777 +k1,14208:24186832,14324692:233778 +k1,14208:25106771,14324692:233777 +$1,14208:25106771,14324692 +$1,14208:25609432,14324692 +k1,14208:25843210,14324692:233778 +k1,14208:27268432,14324692:233777 +$1,14208:27268432,14324692 +$1,14208:27820245,14324692 +k1,14208:28227693,14324692:233778 +k1,14208:30680519,14324692:233777 +k1,14208:32583029,14324692:0 +) +(1,14209:6630773,15166180:25952256,513147,126483 +g1,14208:7821562,15166180 +g1,14208:10804760,15166180 +g1,14208:11951640,15166180 +g1,14208:13847596,15166180 +k1,14209:32583029,15166180:15378024 +g1,14209:32583029,15166180 +) +(1,14211:6630773,16007668:25952256,505283,134348 +h1,14210:6630773,16007668:983040,0,0 +k1,14210:8773473,16007668:206111 +k1,14210:10083865,16007668:206110 +k1,14210:11224519,16007668:206111 +k1,14210:13245322,16007668:206111 +k1,14210:14642877,16007668:206110 +k1,14210:16963835,16007668:206111 +k1,14210:18905339,16007668:206111 +k1,14210:22199505,16007668:206110 +k1,14210:23091778,16007668:206111 +k1,14210:24723296,16007668:206110 +k1,14210:25612292,16007668:206111 +k1,14210:27703218,16007668:206111 +k1,14210:29783658,16007668:206110 +k1,14210:30981329,16007668:206111 +k1,14210:32583029,16007668:0 +) +(1,14211:6630773,16849156:25952256,513147,134348 +g1,14210:8630931,16849156 +g1,14210:10538684,16849156 +g1,14210:12131864,16849156 +g1,14210:13350178,16849156 +g1,14210:16575204,16849156 +g1,14210:17390471,16849156 +g1,14210:20500154,16849156 +g1,14210:23897539,16849156 +g1,14210:24779653,16849156 +k1,14211:32583029,16849156:4760541 +g1,14211:32583029,16849156 +) +v1,14214:6630773,18214932:0,393216,0 +(1,14215:6630773,20491261:25952256,2669545,616038 +g1,14215:6630773,20491261 +(1,14215:6630773,20491261:25952256,2669545,616038 +(1,14215:6630773,21107299:25952256,3285583,0 +[1,14215:6630773,21107299:25952256,3285583,0 +(1,14215:6630773,21081085:25952256,3233155,0 +r1,14215:6656987,21081085:26214,3233155,0 +[1,14215:6656987,21081085:25899828,3233155,0 +(1,14215:6656987,20491261:25899828,2053507,0 +[1,14215:7246811,20491261:24720180,2053507,0 +(1,14215:7246811,19523290:24720180,1085536,298548 +(1,14214:7246811,19523290:0,1085536,298548 +r1,14215:8753226,19523290:1506415,1384084,298548 +k1,14214:7246811,19523290:-1506415 +) +(1,14214:7246811,19523290:1506415,1085536,298548 +) +k1,14214:8969701,19523290:216475 +k1,14214:12171995,19523290:216474 +k1,14214:13380030,19523290:216475 +k1,14214:15641227,19523290:216474 +k1,14214:16473740,19523290:216475 +k1,14214:17709299,19523290:216474 +k1,14214:19309894,19523290:216475 +k1,14214:20698807,19523290:216474 +k1,14214:23216251,19523290:216475 +k1,14214:24118887,19523290:216474 +k1,14214:25203714,19523290:216475 +k1,14214:26411748,19523290:216474 +k1,14214:28363616,19523290:216475 +k1,14214:30152299,19523290:216474 +k1,14214:31966991,19523290:0 +) +(1,14215:7246811,20364778:24720180,513147,126483 +g1,14214:8097468,20364778 +g1,14214:10376810,20364778 +g1,14214:10931899,20364778 +g1,14214:12452989,20364778 +g1,14214:13311510,20364778 +g1,14214:14529824,20364778 +g1,14214:18800805,20364778 +g1,14214:21405861,20364778 +g1,14214:22221128,20364778 +(1,14214:22221128,20364778:0,452978,115847 +r1,14215:23634529,20364778:1413401,568825,115847 +k1,14214:22221128,20364778:-1413401 +) +(1,14214:22221128,20364778:1413401,452978,115847 +k1,14214:22221128,20364778:3277 +h1,14214:23631252,20364778:0,411205,112570 +) +k1,14215:31966991,20364778:8158792 +g1,14215:31966991,20364778 +) +] +) +] +r1,14215:32583029,21081085:26214,3233155,0 +) +] +) +) +g1,14215:32583029,20491261 +) +h1,14215:6630773,21107299:0,0,0 +v1,14218:6630773,22822053:0,393216,0 +(1,14231:6630773,29121933:25952256,6693096,196608 +g1,14231:6630773,29121933 +g1,14231:6630773,29121933 +g1,14231:6434165,29121933 +(1,14231:6434165,29121933:0,6693096,196608 +r1,14231:32779637,29121933:26345472,6889704,196608 +k1,14231:6434165,29121933:-26345472 +) +(1,14231:6434165,29121933:26345472,6693096,196608 +[1,14231:6630773,29121933:25952256,6496488,0 +(1,14220:6630773,23029671:25952256,404226,107478 +(1,14219:6630773,23029671:0,0,0 +g1,14219:6630773,23029671 +g1,14219:6630773,23029671 +g1,14219:6303093,23029671 +(1,14219:6303093,23029671:0,0,0 +) +g1,14219:6630773,23029671 +) +k1,14220:6630773,23029671:0 +g1,14220:10424522,23029671 +g1,14220:11056814,23029671 +k1,14220:11056814,23029671:0 +h1,14220:18012019,23029671:0,0,0 +k1,14220:32583029,23029671:14571010 +g1,14220:32583029,23029671 +) +(1,14221:6630773,23695849:25952256,404226,101187 +h1,14221:6630773,23695849:0,0,0 +g1,14221:6946919,23695849 +g1,14221:7263065,23695849 +g1,14221:7579211,23695849 +g1,14221:7895357,23695849 +g1,14221:8211503,23695849 +g1,14221:8527649,23695849 +g1,14221:8843795,23695849 +g1,14221:14534418,23695849 +g1,14221:16431292,23695849 +g1,14221:17063584,23695849 +g1,14221:19592750,23695849 +g1,14221:23702644,23695849 +h1,14221:24018790,23695849:0,0,0 +k1,14221:32583029,23695849:8564239 +g1,14221:32583029,23695849 +) +(1,14222:6630773,24362027:25952256,404226,107478 +h1,14222:6630773,24362027:0,0,0 +g1,14222:6946919,24362027 +g1,14222:7263065,24362027 +g1,14222:11056813,24362027 +h1,14222:11372959,24362027:0,0,0 +k1,14222:32583029,24362027:21210070 +g1,14222:32583029,24362027 +) +(1,14223:6630773,25028205:25952256,404226,82312 +h1,14223:6630773,25028205:0,0,0 +g1,14223:6946919,25028205 +g1,14223:7263065,25028205 +g1,14223:14218271,25028205 +g1,14223:14850563,25028205 +k1,14223:14850563,25028205:0 +h1,14223:16431292,25028205:0,0,0 +k1,14223:32583029,25028205:16151737 +g1,14223:32583029,25028205 +) +(1,14224:6630773,25694383:25952256,404226,101187 +h1,14224:6630773,25694383:0,0,0 +g1,14224:6946919,25694383 +g1,14224:7263065,25694383 +g1,14224:7579211,25694383 +g1,14224:7895357,25694383 +g1,14224:8211503,25694383 +g1,14224:8527649,25694383 +g1,14224:8843795,25694383 +g1,14224:9159941,25694383 +g1,14224:9476087,25694383 +g1,14224:9792233,25694383 +g1,14224:10108379,25694383 +g1,14224:10424525,25694383 +g1,14224:10740671,25694383 +g1,14224:11056817,25694383 +g1,14224:11372963,25694383 +g1,14224:11689109,25694383 +g1,14224:12005255,25694383 +g1,14224:12321401,25694383 +g1,14224:12637547,25694383 +g1,14224:14850567,25694383 +g1,14224:15482859,25694383 +g1,14224:21489627,25694383 +g1,14224:24018793,25694383 +g1,14224:24967230,25694383 +g1,14224:25599522,25694383 +g1,14224:27812542,25694383 +g1,14224:28444834,25694383 +k1,14224:28444834,25694383:0 +h1,14224:31606293,25694383:0,0,0 +k1,14224:32583029,25694383:976736 +g1,14224:32583029,25694383 +) +(1,14225:6630773,26360561:25952256,404226,101187 +h1,14225:6630773,26360561:0,0,0 +k1,14225:6915190,26360561:284417 +k1,14225:7199607,26360561:284417 +k1,14225:7484024,26360561:284417 +k1,14225:7768441,26360561:284417 +k1,14225:8052858,26360561:284417 +k1,14225:8337275,26360561:284417 +k1,14225:8621692,26360561:284417 +k1,14225:8906110,26360561:284418 +k1,14225:9190527,26360561:284417 +k1,14225:9474944,26360561:284417 +k1,14225:9759361,26360561:284417 +k1,14225:10043778,26360561:284417 +k1,14225:10328195,26360561:284417 +k1,14225:10612612,26360561:284417 +k1,14225:10897029,26360561:284417 +k1,14225:11181446,26360561:284417 +k1,14225:11465863,26360561:284417 +k1,14225:11750280,26360561:284417 +k1,14225:12034697,26360561:284417 +k1,14225:14215988,26360561:284417 +k1,14225:14816551,26360561:284417 +k1,14225:20791591,26360561:284418 +k1,14225:23289028,26360561:284417 +k1,14225:24205736,26360561:284417 +k1,14225:24806299,26360561:284417 +k1,14225:26987590,26360561:284417 +k1,14225:27588153,26360561:284417 +k1,14225:30717883,26360561:284417 +k1,14225:32266883,26360561:284417 +h1,14225:32583029,26360561:0,0,0 +k1,14225:32583029,26360561:0 +k1,14225:32583029,26360561:0 +) +(1,14226:6630773,27026739:25952256,404226,101187 +h1,14226:6630773,27026739:0,0,0 +g1,14226:6946919,27026739 +g1,14226:7263065,27026739 +g1,14226:14850562,27026739 +g1,14226:15482854,27026739 +g1,14226:17063583,27026739 +g1,14226:20857331,27026739 +g1,14226:22754206,27026739 +h1,14226:23070352,27026739:0,0,0 +k1,14226:32583029,27026739:9512677 +g1,14226:32583029,27026739 +) +(1,14227:6630773,27692917:25952256,404226,101187 +h1,14227:6630773,27692917:0,0,0 +g1,14227:6946919,27692917 +g1,14227:7263065,27692917 +g1,14227:12321397,27692917 +g1,14227:12953689,27692917 +h1,14227:13585981,27692917:0,0,0 +k1,14227:32583029,27692917:18997048 +g1,14227:32583029,27692917 +) +(1,14231:6630773,29014455:25952256,404226,107478 +g1,14231:7579210,29014455 +g1,14231:10424521,29014455 +g1,14231:12953687,29014455 +g1,14231:14534416,29014455 +g1,14231:16747436,29014455 +g1,14231:20225039,29014455 +g1,14231:22754205,29014455 +g1,14231:24967225,29014455 +k1,14231:32583029,29014455:3822056 +g1,14231:32583029,29014455 +) +] +) +g1,14231:32583029,29121933 +g1,14231:6630773,29121933 +g1,14231:6630773,29121933 +g1,14231:32583029,29121933 +g1,14231:32583029,29121933 +) +h1,14231:6630773,29318541:0,0,0 +(1,14234:6630773,38637119:25952256,8728754,0 +k1,14234:7928465,38637119:1297692 +h1,14233:7928465,38637119:0,0,0 +(1,14233:7928465,38637119:23356872,8728754,0 +(1,14233:7928465,38637119:23357558,8728776,0 +(1,14233:7928465,38637119:23357558,8728776,0 +(1,14233:7928465,38637119:0,8728776,0 +(1,14233:7928465,38637119:0,14155776,0 +(1,14233:7928465,38637119:37879808,14155776,0 +) +k1,14233:7928465,38637119:-37879808 +) +) +g1,14233:31286023,38637119 +) +) +) +g1,14234:31285337,38637119 +k1,14234:32583029,38637119:1297692 +) +(1,14242:6630773,39478607:25952256,513147,134348 +h1,14241:6630773,39478607:983040,0,0 +k1,14241:8603883,39478607:229852 +k1,14241:11099316,39478607:229853 +k1,14241:12348253,39478607:229852 +k1,14241:13762341,39478607:229852 +k1,14241:15836376,39478607:229852 +k1,14241:19107100,39478607:229853 +k1,14241:20528397,39478607:229852 +k1,14241:22266888,39478607:229852 +k1,14241:25924273,39478607:229852 +k1,14241:27145686,39478607:229853 +k1,14241:31692395,39478607:229852 +k1,14242:32583029,39478607:0 +) +(1,14242:6630773,40320095:25952256,513147,126483 +k1,14241:8773964,40320095:232161 +k1,14241:10860795,40320095:232162 +k1,14241:11902326,40320095:232161 +k1,14241:13153572,40320095:232161 +k1,14241:15374095,40320095:232161 +k1,14241:16265549,40320095:232162 +k1,14241:17516795,40320095:232161 +k1,14241:19174364,40320095:232161 +k1,14241:20969559,40320095:232161 +k1,14241:22243743,40320095:232162 +k1,14241:25310991,40320095:232161 +k1,14241:26009113,40320095:232161 +k1,14241:27109626,40320095:232161 +k1,14241:28817003,40320095:232162 +k1,14241:29815280,40320095:232161 +k1,14241:31436804,40320095:232161 +k1,14242:32583029,40320095:0 +) +(1,14242:6630773,41161583:25952256,513147,134348 +k1,14241:8746931,41161583:205128 +k1,14241:10962047,41161583:205127 +k1,14241:11523035,41161583:205128 +k1,14241:13601182,41161583:205128 +k1,14241:15117684,41161583:205127 +k1,14241:16756740,41161583:205128 +k1,14241:17980953,41161583:205128 +k1,14241:19370316,41161583:205127 +k1,14241:21419627,41161583:205128 +k1,14241:22757217,41161583:205128 +k1,14241:24623026,41161583:205127 +k1,14241:26671026,41161583:205128 +k1,14241:28067599,41161583:205128 +k1,14241:31031792,41161583:205127 +k1,14241:31714677,41161583:205128 +k1,14241:32583029,41161583:0 +) +(1,14242:6630773,42003071:25952256,513147,126483 +k1,14241:8062342,42003071:154272 +k1,14241:9605976,42003071:154271 +k1,14241:10707899,42003071:154272 +k1,14241:13093671,42003071:154271 +k1,14241:15104578,42003071:154272 +k1,14241:16277935,42003071:154272 +k1,14241:18276389,42003071:154271 +k1,14241:19563123,42003071:154272 +k1,14241:21378076,42003071:154271 +k1,14241:22551433,42003071:154272 +k1,14241:24086549,42003071:154272 +k1,14241:26611913,42003071:154271 +k1,14241:27425477,42003071:154272 +k1,14241:28598833,42003071:154271 +k1,14241:30178513,42003071:154272 +k1,14241:32583029,42003071:0 +) +(1,14242:6630773,42844559:25952256,513147,134348 +k1,14241:8063343,42844559:235883 +k1,14241:10564805,42844559:235882 +k1,14241:11332185,42844559:235883 +k1,14241:14873049,42844559:235883 +k1,14241:16692937,42844559:235883 +k1,14241:19463096,42844559:235882 +k1,14241:20771148,42844559:235883 +k1,14241:21465128,42844559:235883 +k1,14241:22232507,42844559:235882 +k1,14241:25272020,42844559:235883 +k1,14241:26194065,42844559:235883 +k1,14241:27377599,42844559:235883 +k1,14241:30603233,42844559:235882 +k1,14241:31490544,42844559:235883 +k1,14241:32583029,42844559:0 +) +(1,14242:6630773,43686047:25952256,513147,134348 +g1,14241:9592345,43686047 +g1,14241:12864557,43686047 +g1,14241:16089583,43686047 +g1,14241:16940240,43686047 +g1,14241:19871665,43686047 +g1,14241:21089979,43686047 +g1,14241:22473444,43686047 +k1,14242:32583029,43686047:8091731 +g1,14242:32583029,43686047 +) +v1,14244:6630773,44876513:0,393216,0 +] +(1,14258:32583029,45706769:0,0,0 +g1,14258:32583029,45706769 +) +) +] +(1,14258:6630773,47279633:25952256,0,0 +h1,14258:6630773,47279633:25952256,0,0 +) +] +h1,14258:4262630,4025873:0,0,0 +] +!20721 +}274 +Input:2108:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2109:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2110:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2111:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2112:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2113:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{275 +[1,14291:4262630,47279633:28320399,43253760,0 +(1,14291:4262630,4025873:0,0,0 +[1,14291:-473657,4025873:25952256,0,0 +(1,14291:-473657,-710414:25952256,0,0 +h1,14291:-473657,-710414:0,0,0 +(1,14291:-473657,-710414:0,0,0 +(1,14291:-473657,-710414:0,0,0 +g1,14291:-473657,-710414 +(1,14291:-473657,-710414:65781,0,65781 +g1,14291:-407876,-710414 +[1,14291:-407876,-644633:0,0,0 ] ) -k1,14263:-473657,-710414:-65781 +k1,14291:-473657,-710414:-65781 ) ) -k1,14263:25478599,-710414:25952256 -g1,14263:25478599,-710414 +k1,14291:25478599,-710414:25952256 +g1,14291:25478599,-710414 ) ] ) -[1,14263:6630773,47279633:25952256,43253760,0 -[1,14263:6630773,4812305:25952256,786432,0 -(1,14263:6630773,4812305:25952256,505283,11795 -(1,14263:6630773,4812305:25952256,505283,11795 -g1,14263:3078558,4812305 -[1,14263:3078558,4812305:0,0,0 -(1,14263:3078558,2439708:0,1703936,0 -k1,14263:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14263:2537886,2439708:1179648,16384,0 +[1,14291:6630773,47279633:25952256,43253760,0 +[1,14291:6630773,4812305:25952256,786432,0 +(1,14291:6630773,4812305:25952256,513147,134348 +(1,14291:6630773,4812305:25952256,513147,134348 +g1,14291:3078558,4812305 +[1,14291:3078558,4812305:0,0,0 +(1,14291:3078558,2439708:0,1703936,0 +k1,14291:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14291:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14263:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14291:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14263:3078558,4812305:0,0,0 -(1,14263:3078558,2439708:0,1703936,0 -g1,14263:29030814,2439708 -g1,14263:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14263:36151628,1915420:16384,1179648,0 +[1,14291:3078558,4812305:0,0,0 +(1,14291:3078558,2439708:0,1703936,0 +g1,14291:29030814,2439708 +g1,14291:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14291:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14263:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14291:37855564,2439708:1179648,16384,0 ) ) -k1,14263:3078556,2439708:-34777008 +k1,14291:3078556,2439708:-34777008 ) ] -[1,14263:3078558,4812305:0,0,0 -(1,14263:3078558,49800853:0,16384,2228224 -k1,14263:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14263:2537886,49800853:1179648,16384,0 +[1,14291:3078558,4812305:0,0,0 +(1,14291:3078558,49800853:0,16384,2228224 +k1,14291:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14291:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14263:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14291:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14263:3078558,4812305:0,0,0 -(1,14263:3078558,49800853:0,16384,2228224 -g1,14263:29030814,49800853 -g1,14263:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14263:36151628,51504789:16384,1179648,0 +[1,14291:3078558,4812305:0,0,0 +(1,14291:3078558,49800853:0,16384,2228224 +g1,14291:29030814,49800853 +g1,14291:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14291:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14263:37855564,49800853:1179648,16384,0 -) -) -k1,14263:3078556,49800853:-34777008 -) -] -g1,14263:6630773,4812305 -g1,14263:6630773,4812305 -g1,14263:8724648,4812305 -k1,14263:31387652,4812305:22663004 -) -) -] -[1,14263:6630773,45706769:25952256,40108032,0 -(1,14263:6630773,45706769:25952256,40108032,0 -(1,14263:6630773,45706769:0,0,0 -g1,14263:6630773,45706769 -) -[1,14263:6630773,45706769:25952256,40108032,0 -v1,14232:6630773,6254097:0,393216,0 -(1,14232:6630773,13220155:25952256,7359274,196608 -g1,14232:6630773,13220155 -g1,14232:6630773,13220155 -g1,14232:6434165,13220155 -(1,14232:6434165,13220155:0,7359274,196608 -r1,14232:32779637,13220155:26345472,7555882,196608 -k1,14232:6434165,13220155:-26345472 -) -(1,14232:6434165,13220155:26345472,7359274,196608 -[1,14232:6630773,13220155:25952256,7162666,0 -(1,14220:6630773,6461715:25952256,404226,107478 -(1,14219:6630773,6461715:0,0,0 -g1,14219:6630773,6461715 -g1,14219:6630773,6461715 -g1,14219:6303093,6461715 -(1,14219:6303093,6461715:0,0,0 -) -g1,14219:6630773,6461715 -) -k1,14220:6630773,6461715:0 -g1,14220:10424522,6461715 -g1,14220:11056814,6461715 -k1,14220:11056814,6461715:0 -h1,14220:18012019,6461715:0,0,0 -k1,14220:32583029,6461715:14571010 -g1,14220:32583029,6461715 -) -(1,14221:6630773,7127893:25952256,404226,101187 -h1,14221:6630773,7127893:0,0,0 -g1,14221:6946919,7127893 -g1,14221:7263065,7127893 -g1,14221:7579211,7127893 -g1,14221:7895357,7127893 -g1,14221:8211503,7127893 -g1,14221:8527649,7127893 -g1,14221:8843795,7127893 -g1,14221:14534418,7127893 -g1,14221:16431292,7127893 -g1,14221:17063584,7127893 -g1,14221:19592750,7127893 -g1,14221:23702644,7127893 -h1,14221:24018790,7127893:0,0,0 -k1,14221:32583029,7127893:8564239 -g1,14221:32583029,7127893 -) -(1,14222:6630773,7794071:25952256,404226,107478 -h1,14222:6630773,7794071:0,0,0 -g1,14222:6946919,7794071 -g1,14222:7263065,7794071 -g1,14222:11056813,7794071 -h1,14222:11372959,7794071:0,0,0 -k1,14222:32583029,7794071:21210070 -g1,14222:32583029,7794071 -) -(1,14223:6630773,8460249:25952256,404226,82312 -h1,14223:6630773,8460249:0,0,0 -g1,14223:6946919,8460249 -g1,14223:7263065,8460249 -g1,14223:14218271,8460249 -g1,14223:14850563,8460249 -k1,14223:14850563,8460249:0 -h1,14223:16431292,8460249:0,0,0 -k1,14223:32583029,8460249:16151737 -g1,14223:32583029,8460249 -) -(1,14224:6630773,9126427:25952256,404226,82312 -h1,14224:6630773,9126427:0,0,0 -g1,14224:6946919,9126427 -g1,14224:7263065,9126427 -g1,14224:7579211,9126427 -g1,14224:7895357,9126427 -g1,14224:8211503,9126427 -g1,14224:8527649,9126427 -g1,14224:8843795,9126427 -g1,14224:9159941,9126427 -g1,14224:9476087,9126427 -g1,14224:9792233,9126427 -g1,14224:10108379,9126427 -g1,14224:10424525,9126427 -g1,14224:10740671,9126427 -g1,14224:11056817,9126427 -g1,14224:11372963,9126427 -g1,14224:11689109,9126427 -g1,14224:12005255,9126427 -g1,14224:12321401,9126427 -g1,14224:12637547,9126427 -g1,14224:16431295,9126427 -g1,14224:17063587,9126427 -g1,14224:18012024,9126427 -k1,14224:18012024,9126427:0 -h1,14224:19908898,9126427:0,0,0 -k1,14224:32583029,9126427:12674131 -g1,14224:32583029,9126427 -) -(1,14225:6630773,9792605:25952256,404226,101187 -h1,14225:6630773,9792605:0,0,0 -k1,14225:6914057,9792605:283284 -k1,14225:7197341,9792605:283284 -k1,14225:7480625,9792605:283284 -k1,14225:7763909,9792605:283284 -k1,14225:8047193,9792605:283284 -k1,14225:8330477,9792605:283284 -k1,14225:8613761,9792605:283284 -k1,14225:8897045,9792605:283284 -k1,14225:9180329,9792605:283284 -k1,14225:9463613,9792605:283284 -k1,14225:9746897,9792605:283284 -k1,14225:10030181,9792605:283284 -k1,14225:10313465,9792605:283284 -k1,14225:10596748,9792605:283283 -k1,14225:10880032,9792605:283284 -k1,14225:11163316,9792605:283284 -k1,14225:11446600,9792605:283284 -k1,14225:11729884,9792605:283284 -k1,14225:12013168,9792605:283284 -k1,14225:14193326,9792605:283284 -k1,14225:14792756,9792605:283284 -k1,14225:20766662,9792605:283284 -k1,14225:23262966,9792605:283284 -k1,14225:24178541,9792605:283284 -k1,14225:24777971,9792605:283284 -k1,14225:26958129,9792605:283284 -k1,14225:27557559,9792605:283284 -k1,14225:31002301,9792605:283284 -k1,14225:31002301,9792605:0 -h1,14225:32583029,9792605:0,0,0 -k1,14225:32583029,9792605:0 -k1,14225:32583029,9792605:0 -) -(1,14226:6630773,10458783:25952256,404226,76021 -h1,14226:6630773,10458783:0,0,0 -g1,14226:6946919,10458783 -g1,14226:7263065,10458783 -g1,14226:7579211,10458783 -g1,14226:7895357,10458783 -g1,14226:8211503,10458783 -g1,14226:8527649,10458783 -g1,14226:8843795,10458783 -g1,14226:9159941,10458783 -g1,14226:9476087,10458783 -g1,14226:9792233,10458783 -g1,14226:10108379,10458783 -g1,14226:10424525,10458783 -g1,14226:10740671,10458783 -g1,14226:11056817,10458783 -g1,14226:11372963,10458783 -g1,14226:11689109,10458783 -g1,14226:12005255,10458783 -g1,14226:12321401,10458783 -g1,14226:12637547,10458783 -g1,14226:16431295,10458783 -g1,14226:17063587,10458783 -g1,14226:19908899,10458783 -h1,14226:20225045,10458783:0,0,0 -k1,14226:32583029,10458783:12357984 -g1,14226:32583029,10458783 -) -(1,14227:6630773,11124961:25952256,404226,101187 -h1,14227:6630773,11124961:0,0,0 -g1,14227:6946919,11124961 -g1,14227:7263065,11124961 -g1,14227:14850562,11124961 -g1,14227:15482854,11124961 -g1,14227:17063583,11124961 -g1,14227:20857331,11124961 -g1,14227:22754206,11124961 -h1,14227:23070352,11124961:0,0,0 -k1,14227:32583029,11124961:9512677 -g1,14227:32583029,11124961 -) -(1,14228:6630773,11791139:25952256,404226,101187 -h1,14228:6630773,11791139:0,0,0 -g1,14228:6946919,11791139 -g1,14228:7263065,11791139 -g1,14228:12321397,11791139 -g1,14228:12953689,11791139 -h1,14228:13585981,11791139:0,0,0 -k1,14228:32583029,11791139:18997048 -g1,14228:32583029,11791139 -) -(1,14232:6630773,13112677:25952256,404226,107478 -g1,14232:7579210,13112677 -g1,14232:10424521,13112677 -g1,14232:12953687,13112677 -g1,14232:14534416,13112677 -g1,14232:16115145,13112677 -g1,14232:19592748,13112677 -g1,14232:22121914,13112677 -g1,14232:24334934,13112677 -k1,14232:32583029,13112677:4454347 -g1,14232:32583029,13112677 -) -] -) -g1,14232:32583029,13220155 -g1,14232:6630773,13220155 -g1,14232:6630773,13220155 -g1,14232:32583029,13220155 -g1,14232:32583029,13220155 -) -h1,14232:6630773,13416763:0,0,0 -(1,14235:6630773,22701006:25952256,8728754,0 -k1,14235:7928465,22701006:1297692 -h1,14234:7928465,22701006:0,0,0 -(1,14234:7928465,22701006:23356872,8728754,0 -(1,14234:7928465,22701006:23357558,8728776,0 -(1,14234:7928465,22701006:23357558,8728776,0 -(1,14234:7928465,22701006:0,8728776,0 -(1,14234:7928465,22701006:0,14155776,0 -(1,14234:7928465,22701006:37879808,14155776,0 -) -k1,14234:7928465,22701006:-37879808 -) -) -g1,14234:31286023,22701006 -) -) -) -g1,14235:31285337,22701006 -k1,14235:32583029,22701006:1297692 -) -v1,14243:6630773,24032448:0,393216,0 -(1,14244:6630773,29684432:25952256,6045200,616038 -g1,14244:6630773,29684432 -(1,14244:6630773,29684432:25952256,6045200,616038 -(1,14244:6630773,30300470:25952256,6661238,0 -[1,14244:6630773,30300470:25952256,6661238,0 -(1,14244:6630773,30274256:25952256,6608810,0 -r1,14244:6656987,30274256:26214,6608810,0 -[1,14244:6656987,30274256:25899828,6608810,0 -(1,14244:6656987,29684432:25899828,5429162,0 -[1,14244:7246811,29684432:24720180,5429162,0 -(1,14244:7246811,25342644:24720180,1087374,134348 -k1,14243:8823545,25342644:367031 -k1,14243:10387262,25342644:367030 -k1,14243:14181826,25342644:367031 -k1,14243:16744968,25342644:367031 -k1,14243:18625225,25342644:367031 -k1,14243:19983815,25342644:367030 -k1,14243:22094759,25342644:367031 -k1,14243:25756285,25342644:367031 -k1,14243:26884843,25342644:367030 -(1,14243:26884843,25342644:0,452978,115847 -r1,14244:30408515,25342644:3523672,568825,115847 -k1,14243:26884843,25342644:-3523672 -) -(1,14243:26884843,25342644:3523672,452978,115847 -k1,14243:26884843,25342644:3277 -h1,14243:30405238,25342644:0,411205,112570 -) -k1,14243:30775546,25342644:367031 -k1,14244:31966991,25342644:0 -) -(1,14244:7246811,26184132:24720180,505283,138281 -(1,14243:7246811,26184132:0,452978,115847 -r1,14244:12177331,26184132:4930520,568825,115847 -k1,14243:7246811,26184132:-4930520 -) -(1,14243:7246811,26184132:4930520,452978,115847 -k1,14243:7246811,26184132:3277 -h1,14243:12174054,26184132:0,411205,112570 -) -k1,14243:12402633,26184132:225302 -k1,14243:13951763,26184132:225303 -k1,14243:15989791,26184132:225302 -k1,14243:18751336,26184132:225302 -k1,14243:19592676,26184132:225302 -k1,14243:20837064,26184132:225303 -k1,14243:22234805,26184132:225302 -k1,14243:25451826,26184132:225302 -k1,14243:27706123,26184132:225302 -k1,14243:28950511,26184132:225303 -$1,14243:28950511,26184132 -$1,14243:29502324,26184132 -k1,14243:31193011,26184132:225302 -k1,14244:31966991,26184132:0 -) -(1,14244:7246811,27025620:24720180,513147,134348 -k1,14243:8756386,27025620:226380 -k1,14243:10495992,27025620:226380 -k1,14243:11913817,27025620:226380 -k1,14243:13159282,27025620:226380 -k1,14243:17098277,27025620:226380 -k1,14243:19662326,27025620:226380 -k1,14243:20244567,27025620:226381 -k1,14243:22343966,27025620:226380 -k1,14243:24082917,27025620:226380 -k1,14243:24992182,27025620:226380 -k1,14243:25574422,27025620:226380 -k1,14243:27683651,27025620:226380 -k1,14243:29518285,27025620:226380 -k1,14243:30403957,27025620:226380 -k1,14243:31966991,27025620:0 -) -(1,14244:7246811,27867108:24720180,513147,134348 -k1,14243:9248180,27867108:179468 -k1,14243:11313118,27867108:179467 -k1,14243:12676822,27867108:179468 -k1,14243:14700472,27867108:179467 -k1,14243:15871500,27867108:179468 -k1,14243:19091839,27867108:179468 -k1,14243:20032834,27867108:179467 -k1,14243:22477882,27867108:179468 -k1,14243:23848795,27867108:179468 -k1,14243:25462190,27867108:179467 -k1,14243:27078863,27867108:179468 -k1,14243:27944492,27867108:179467 -k1,14243:28894663,27867108:179468 -k1,14243:31966991,27867108:0 -) -(1,14244:7246811,28708596:24720180,513147,134348 -k1,14243:8070577,28708596:172338 -(1,14243:8070577,28708596:0,452978,115847 -r1,14244:11945961,28708596:3875384,568825,115847 -k1,14243:8070577,28708596:-3875384 -) -(1,14243:8070577,28708596:3875384,452978,115847 -k1,14243:8070577,28708596:3277 -h1,14243:11942684,28708596:0,411205,112570 -) -k1,14243:12118298,28708596:172337 -k1,14243:15052979,28708596:172338 -k1,14243:17405700,28708596:172338 -k1,14243:19947820,28708596:172338 -k1,14243:22115728,28708596:172337 -k1,14243:23555532,28708596:172338 -k1,14243:26232001,28708596:172338 -k1,14243:27688845,28708596:172338 -k1,14243:28477220,28708596:172337 -k1,14243:31315563,28708596:172338 -k1,14243:31966991,28708596:0 -) -(1,14244:7246811,29550084:24720180,513147,134348 -g1,14243:8465125,29550084 -g1,14243:12035526,29550084 -g1,14243:16105967,29550084 -g1,14243:18305355,29550084 -g1,14243:20684967,29550084 -g1,14243:23080307,29550084 -g1,14243:24383818,29550084 -g1,14243:26920716,29550084 -g1,14243:30346938,29550084 -k1,14244:31966991,29550084:220204 -g1,14244:31966991,29550084 -) -] -) -] -r1,14244:32583029,30274256:26214,6608810,0 -) -] -) -) -g1,14244:32583029,29684432 -) -h1,14244:6630773,30300470:0,0,0 -(1,14247:6630773,32881683:25952256,564462,152109 -(1,14247:6630773,32881683:2450326,527696,0 -g1,14247:6630773,32881683 -g1,14247:9081099,32881683 -) -g1,14247:12304226,32881683 -g1,14247:14714903,32881683 -g1,14247:16017563,32881683 -$1,14247:16017563,32881683 -$1,14247:16570490,32881683 -g1,14247:16795410,32881683 -g1,14247:18362638,32881683 -$1,14247:18362638,32881683 -$1,14247:18969632,32881683 -k1,14247:32583029,32881683:13613397 -g1,14247:32583029,32881683 -) -(1,14251:6630773,34116387:25952256,513147,126483 -k1,14250:7405278,34116387:146670 -k1,14250:8571032,34116387:146669 -k1,14250:10084783,34116387:146670 -k1,14250:10890744,34116387:146669 -k1,14250:13544821,34116387:146670 -k1,14250:14374375,34116387:146669 -k1,14250:17858138,34116387:146670 -k1,14250:20402769,34116387:146669 -k1,14250:21568524,34116387:146670 -k1,14250:22899429,34116387:146669 -k1,14250:24890282,34116387:146670 -k1,14250:26028511,34116387:146669 -k1,14250:26936709,34116387:146670 -k1,14250:29348958,34116387:146669 -k1,14250:30514713,34116387:146670 -k1,14250:32583029,34116387:0 -) -(1,14251:6630773,34957875:25952256,513147,134348 -k1,14250:7534991,34957875:244926 -k1,14250:8799002,34957875:244926 -k1,14250:10937918,34957875:244926 -k1,14250:13148924,34957875:244926 -k1,14250:17914524,34957875:244926 -k1,14250:19316159,34957875:244925 -k1,14250:23316953,34957875:244926 -k1,14250:24799854,34957875:244926 -k1,14250:25704072,34957875:244926 -k1,14250:28962999,34957875:244926 -k1,14250:30227010,34957875:244926 -k1,14250:32583029,34957875:0 -) -(1,14251:6630773,35799363:25952256,513147,126483 -k1,14250:8059084,35799363:244075 -k1,14250:10147341,35799363:244074 -k1,14250:10922913,35799363:244075 -k1,14250:11818416,35799363:244075 -k1,14250:12997034,35799363:244075 -k1,14250:14880163,35799363:244074 -k1,14250:15810400,35799363:244075 -k1,14250:17948465,35799363:244075 -k1,14250:20158619,35799363:244074 -k1,14250:21783538,35799363:244075 -k1,14250:25012123,35799363:244075 -k1,14250:25787695,35799363:244075 -k1,14250:27098040,35799363:244074 -k1,14250:31896867,35799363:244075 -k1,14250:32583029,35799363:0 -) -(1,14251:6630773,36640851:25952256,513147,134348 -k1,14250:7455175,36640851:208364 -k1,14250:9415315,36640851:208363 -k1,14250:11321061,36640851:208364 -k1,14250:12548509,36640851:208363 -k1,14250:13983052,36640851:208364 -k1,14250:14850707,36640851:208363 -k1,14250:16078156,36640851:208364 -k1,14250:18642539,36640851:208364 -k1,14250:20035138,36640851:208363 -k1,14250:22087685,36640851:208364 -k1,14250:23632982,36640851:208363 -k1,14250:24907617,36640851:208364 -k1,14250:25863746,36640851:208363 -k1,14250:29584184,36640851:208364 -k1,14250:30478709,36640851:208363 -k1,14250:31042933,36640851:208364 -k1,14250:32583029,36640851:0 -) -(1,14251:6630773,37482339:25952256,513147,134348 -k1,14250:8578197,37482339:209409 -k1,14250:11146248,37482339:209410 -k1,14250:12374742,37482339:209409 -k1,14250:14080338,37482339:209409 -k1,14250:16025140,37482339:209409 -k1,14250:17873605,37482339:209410 -k1,14250:19733211,37482339:209409 -k1,14250:22426435,37482339:209409 -k1,14250:23287272,37482339:209409 -k1,14250:24882768,37482339:209410 -k1,14250:25708215,37482339:209409 -k1,14250:28079001,37482339:209409 -k1,14250:28971295,37482339:209409 -k1,14250:29793467,37482339:209410 -k1,14250:31021961,37482339:209409 -k1,14251:32583029,37482339:0 -) -(1,14251:6630773,38323827:25952256,513147,126483 -k1,14250:8616186,38323827:173998 -k1,14250:11365094,38323827:173998 -k1,14250:12008985,38323827:173998 -k1,14250:12714480,38323827:173998 -k1,14250:14223446,38323827:173998 -k1,14250:15048872,38323827:173998 -k1,14250:16315355,38323827:173998 -k1,14250:18614030,38323827:173998 -k1,14250:22134296,38323827:173998 -k1,14250:23993225,38323827:173998 -k1,14250:26235539,38323827:173998 -k1,14250:27357188,38323827:173998 -k1,14250:29425176,38323827:173998 -k1,14250:31391584,38323827:173998 -k1,14250:32583029,38323827:0 -) -(1,14251:6630773,39165315:25952256,505283,134348 -k1,14250:9850304,39165315:204220 -k1,14250:11245969,39165315:204220 -k1,14250:12101617,39165315:204220 -k1,14250:13240381,39165315:204221 -k1,14250:15956596,39165315:204220 -k1,14250:18004999,39165315:204220 -k1,14250:20767745,39165315:204220 -k1,14250:22818115,39165315:204220 -k1,14250:24720373,39165315:204220 -k1,14250:27622711,39165315:204221 -k1,14250:28513093,39165315:204220 -k1,14250:29585665,39165315:204220 -k1,14250:30922347,39165315:204220 -k1,14250:32583029,39165315:0 -) -(1,14251:6630773,40006803:25952256,505283,7863 -k1,14251:32583030,40006803:24380704 -g1,14251:32583030,40006803 -) -(1,14253:6630773,40848291:25952256,505283,115847 -h1,14252:6630773,40848291:983040,0,0 -k1,14252:8737573,40848291:170211 -k1,14252:10012067,40848291:170212 -k1,14252:11274763,40848291:170211 -(1,14252:11274763,40848291:0,452978,115847 -r1,14252:17612130,40848291:6337367,568825,115847 -k1,14252:11274763,40848291:-6337367 -) -(1,14252:11274763,40848291:6337367,452978,115847 -k1,14252:11274763,40848291:3277 -h1,14252:17608853,40848291:0,411205,112570 -) -k1,14252:17782341,40848291:170211 -k1,14252:18603981,40848291:170212 -k1,14252:21149217,40848291:170211 -k1,14252:22510874,40848291:170212 -k1,14252:24501675,40848291:170211 -k1,14252:25690971,40848291:170211 -k1,14252:28574374,40848291:170212 -k1,14252:31204807,40848291:170211 -k1,14253:32583029,40848291:0 -) -(1,14253:6630773,41689779:25952256,513147,134348 -k1,14252:8069861,41689779:160481 -k1,14252:9249427,41689779:160481 -k1,14252:10972943,41689779:160482 -k1,14252:11611181,41689779:160481 -k1,14252:12640014,41689779:160481 -k1,14252:13892980,41689779:160481 -k1,14252:15256702,41689779:160481 -k1,14252:18401693,41689779:160481 -k1,14252:19213603,41689779:160482 -k1,14252:21454197,41689779:160481 -k1,14252:22633763,41689779:160481 -k1,14252:24357278,41689779:160481 -k1,14252:25951687,41689779:160481 -k1,14252:26763597,41689779:160482 -k1,14252:28653573,41689779:160481 -k1,14252:31714677,41689779:160481 -k1,14252:32583029,41689779:0 -) -(1,14253:6630773,42531267:25952256,505283,126483 -k1,14252:8380339,42531267:219300 -k1,14252:9251066,42531267:219299 -k1,14252:10667709,42531267:219300 -(1,14252:10667709,42531267:0,414482,115847 -r1,14252:14894805,42531267:4227096,530329,115847 -k1,14252:10667709,42531267:-4227096 -) -(1,14252:10667709,42531267:4227096,414482,115847 -g1,14252:12781257,42531267 -g1,14252:13484681,42531267 -h1,14252:14891528,42531267:0,411205,112570 -) -k1,14252:15287775,42531267:219300 -k1,14252:16460624,42531267:219300 -k1,14252:20473147,42531267:219299 -k1,14252:21784932,42531267:219300 -(1,14252:21784932,42531267:0,452978,115847 -r1,14252:27418875,42531267:5633943,568825,115847 -k1,14252:21784932,42531267:-5633943 -) -(1,14252:21784932,42531267:5633943,452978,115847 -k1,14252:21784932,42531267:3277 -h1,14252:27415598,42531267:0,411205,112570 -) -k1,14252:27638175,42531267:219300 -k1,14252:28508902,42531267:219299 -k1,14252:31120921,42531267:219300 -k1,14252:32583029,42531267:0 -) -(1,14253:6630773,43372755:25952256,426639,126483 -g1,14252:8898318,43372755 -g1,14252:9748975,43372755 -k1,14253:32583029,43372755:19401278 -g1,14253:32583029,43372755 -) -v1,14256:6630773,44528887:0,393216,0 -(1,14263:6630773,45510161:25952256,1374490,196608 -g1,14263:6630773,45510161 -g1,14263:6630773,45510161 -g1,14263:6434165,45510161 -(1,14263:6434165,45510161:0,1374490,196608 -r1,14263:32779637,45510161:26345472,1571098,196608 -k1,14263:6434165,45510161:-26345472 -) -(1,14263:6434165,45510161:26345472,1374490,196608 -[1,14263:6630773,45510161:25952256,1177882,0 -(1,14258:6630773,44736505:25952256,404226,107478 -(1,14257:6630773,44736505:0,0,0 -g1,14257:6630773,44736505 -g1,14257:6630773,44736505 -g1,14257:6303093,44736505 -(1,14257:6303093,44736505:0,0,0 -) -g1,14257:6630773,44736505 -) -k1,14258:6630773,44736505:0 -g1,14258:10424522,44736505 -g1,14258:13902125,44736505 -g1,14258:15798999,44736505 -h1,14258:16115145,44736505:0,0,0 -k1,14258:32583029,44736505:16467884 -g1,14258:32583029,44736505 -) -(1,14259:6630773,45402683:25952256,410518,107478 -h1,14259:6630773,45402683:0,0,0 -g1,14259:6946919,45402683 -g1,14259:7263065,45402683 -g1,14259:12953688,45402683 -g1,14259:13585980,45402683 -g1,14259:15799000,45402683 -g1,14259:17695874,45402683 -g1,14259:18328166,45402683 -g1,14259:20225041,45402683 -g1,14259:22121915,45402683 -g1,14259:22754207,45402683 -g1,14259:24651082,45402683 -h1,14259:24967228,45402683:0,0,0 -k1,14259:32583029,45402683:7615801 -g1,14259:32583029,45402683 -) -] -) -g1,14263:32583029,45510161 -g1,14263:6630773,45510161 -g1,14263:6630773,45510161 -g1,14263:32583029,45510161 -g1,14263:32583029,45510161 -) -] -(1,14263:32583029,45706769:0,0,0 -g1,14263:32583029,45706769 -) -) -] -(1,14263:6630773,47279633:25952256,0,0 -h1,14263:6630773,47279633:25952256,0,0 -) -] -h1,14263:4262630,4025873:0,0,0 -] -!22176 -}274 -Input:2117:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2118:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2119:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2120:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2121:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2122:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2123:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2124:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2125:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2126:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2127:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2128:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2129:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2130:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2131:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2132:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2133:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2134:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2135:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2136:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2137:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2138:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2139:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2140:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2141:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2142:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2143:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2144:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2145:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2146:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2147:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2148:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!2764 -{275 -[1,14309:4262630,47279633:28320399,43253760,0 -(1,14309:4262630,4025873:0,0,0 -[1,14309:-473657,4025873:25952256,0,0 -(1,14309:-473657,-710414:25952256,0,0 -h1,14309:-473657,-710414:0,0,0 -(1,14309:-473657,-710414:0,0,0 -(1,14309:-473657,-710414:0,0,0 -g1,14309:-473657,-710414 -(1,14309:-473657,-710414:65781,0,65781 -g1,14309:-407876,-710414 -[1,14309:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14291:37855564,49800853:1179648,16384,0 +) +) +k1,14291:3078556,49800853:-34777008 +) +] +g1,14291:6630773,4812305 +k1,14291:25712890,4812305:17886740 +g1,14291:29057847,4812305 +g1,14291:29873114,4812305 +) +) +] +[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,14258:6630773,6254097:0,393216,0 +(1,14258:6630773,13220155:25952256,7359274,196608 +g1,14258:6630773,13220155 +g1,14258:6630773,13220155 +g1,14258:6434165,13220155 +(1,14258:6434165,13220155:0,7359274,196608 +r1,14258:32779637,13220155:26345472,7555882,196608 +k1,14258:6434165,13220155:-26345472 +) +(1,14258:6434165,13220155:26345472,7359274,196608 +[1,14258:6630773,13220155:25952256,7162666,0 +(1,14246:6630773,6461715:25952256,404226,107478 +(1,14245:6630773,6461715:0,0,0 +g1,14245:6630773,6461715 +g1,14245:6630773,6461715 +g1,14245:6303093,6461715 +(1,14245:6303093,6461715:0,0,0 +) +g1,14245:6630773,6461715 +) +k1,14246:6630773,6461715:0 +g1,14246:10424522,6461715 +g1,14246:11056814,6461715 +k1,14246:11056814,6461715:0 +h1,14246:18012019,6461715:0,0,0 +k1,14246:32583029,6461715:14571010 +g1,14246:32583029,6461715 +) +(1,14247:6630773,7127893:25952256,404226,101187 +h1,14247:6630773,7127893:0,0,0 +g1,14247:6946919,7127893 +g1,14247:7263065,7127893 +g1,14247:7579211,7127893 +g1,14247:7895357,7127893 +g1,14247:8211503,7127893 +g1,14247:8527649,7127893 +g1,14247:8843795,7127893 +g1,14247:14534418,7127893 +g1,14247:16431292,7127893 +g1,14247:17063584,7127893 +g1,14247:19592750,7127893 +g1,14247:23702644,7127893 +h1,14247:24018790,7127893:0,0,0 +k1,14247:32583029,7127893:8564239 +g1,14247:32583029,7127893 +) +(1,14248:6630773,7794071:25952256,404226,107478 +h1,14248:6630773,7794071:0,0,0 +g1,14248:6946919,7794071 +g1,14248:7263065,7794071 +g1,14248:11056813,7794071 +h1,14248:11372959,7794071:0,0,0 +k1,14248:32583029,7794071:21210070 +g1,14248:32583029,7794071 +) +(1,14249:6630773,8460249:25952256,404226,82312 +h1,14249:6630773,8460249:0,0,0 +g1,14249:6946919,8460249 +g1,14249:7263065,8460249 +g1,14249:14218271,8460249 +g1,14249:14850563,8460249 +k1,14249:14850563,8460249:0 +h1,14249:16431292,8460249:0,0,0 +k1,14249:32583029,8460249:16151737 +g1,14249:32583029,8460249 +) +(1,14250:6630773,9126427:25952256,404226,82312 +h1,14250:6630773,9126427:0,0,0 +g1,14250:6946919,9126427 +g1,14250:7263065,9126427 +g1,14250:7579211,9126427 +g1,14250:7895357,9126427 +g1,14250:8211503,9126427 +g1,14250:8527649,9126427 +g1,14250:8843795,9126427 +g1,14250:9159941,9126427 +g1,14250:9476087,9126427 +g1,14250:9792233,9126427 +g1,14250:10108379,9126427 +g1,14250:10424525,9126427 +g1,14250:10740671,9126427 +g1,14250:11056817,9126427 +g1,14250:11372963,9126427 +g1,14250:11689109,9126427 +g1,14250:12005255,9126427 +g1,14250:12321401,9126427 +g1,14250:12637547,9126427 +g1,14250:16431295,9126427 +g1,14250:17063587,9126427 +g1,14250:18012024,9126427 +k1,14250:18012024,9126427:0 +h1,14250:19908898,9126427:0,0,0 +k1,14250:32583029,9126427:12674131 +g1,14250:32583029,9126427 +) +(1,14251:6630773,9792605:25952256,404226,101187 +h1,14251:6630773,9792605:0,0,0 +k1,14251:6914057,9792605:283284 +k1,14251:7197341,9792605:283284 +k1,14251:7480625,9792605:283284 +k1,14251:7763909,9792605:283284 +k1,14251:8047193,9792605:283284 +k1,14251:8330477,9792605:283284 +k1,14251:8613761,9792605:283284 +k1,14251:8897045,9792605:283284 +k1,14251:9180329,9792605:283284 +k1,14251:9463613,9792605:283284 +k1,14251:9746897,9792605:283284 +k1,14251:10030181,9792605:283284 +k1,14251:10313465,9792605:283284 +k1,14251:10596748,9792605:283283 +k1,14251:10880032,9792605:283284 +k1,14251:11163316,9792605:283284 +k1,14251:11446600,9792605:283284 +k1,14251:11729884,9792605:283284 +k1,14251:12013168,9792605:283284 +k1,14251:14193326,9792605:283284 +k1,14251:14792756,9792605:283284 +k1,14251:20766662,9792605:283284 +k1,14251:23262966,9792605:283284 +k1,14251:24178541,9792605:283284 +k1,14251:24777971,9792605:283284 +k1,14251:26958129,9792605:283284 +k1,14251:27557559,9792605:283284 +k1,14251:31002301,9792605:283284 +k1,14251:31002301,9792605:0 +h1,14251:32583029,9792605:0,0,0 +k1,14251:32583029,9792605:0 +k1,14251:32583029,9792605:0 +) +(1,14252:6630773,10458783:25952256,404226,76021 +h1,14252:6630773,10458783:0,0,0 +g1,14252:6946919,10458783 +g1,14252:7263065,10458783 +g1,14252:7579211,10458783 +g1,14252:7895357,10458783 +g1,14252:8211503,10458783 +g1,14252:8527649,10458783 +g1,14252:8843795,10458783 +g1,14252:9159941,10458783 +g1,14252:9476087,10458783 +g1,14252:9792233,10458783 +g1,14252:10108379,10458783 +g1,14252:10424525,10458783 +g1,14252:10740671,10458783 +g1,14252:11056817,10458783 +g1,14252:11372963,10458783 +g1,14252:11689109,10458783 +g1,14252:12005255,10458783 +g1,14252:12321401,10458783 +g1,14252:12637547,10458783 +g1,14252:16431295,10458783 +g1,14252:17063587,10458783 +g1,14252:19908899,10458783 +h1,14252:20225045,10458783:0,0,0 +k1,14252:32583029,10458783:12357984 +g1,14252:32583029,10458783 +) +(1,14253:6630773,11124961:25952256,404226,101187 +h1,14253:6630773,11124961:0,0,0 +g1,14253:6946919,11124961 +g1,14253:7263065,11124961 +g1,14253:14850562,11124961 +g1,14253:15482854,11124961 +g1,14253:17063583,11124961 +g1,14253:20857331,11124961 +g1,14253:22754206,11124961 +h1,14253:23070352,11124961:0,0,0 +k1,14253:32583029,11124961:9512677 +g1,14253:32583029,11124961 +) +(1,14254:6630773,11791139:25952256,404226,101187 +h1,14254:6630773,11791139:0,0,0 +g1,14254:6946919,11791139 +g1,14254:7263065,11791139 +g1,14254:12321397,11791139 +g1,14254:12953689,11791139 +h1,14254:13585981,11791139:0,0,0 +k1,14254:32583029,11791139:18997048 +g1,14254:32583029,11791139 +) +(1,14258:6630773,13112677:25952256,404226,107478 +g1,14258:7579210,13112677 +g1,14258:10424521,13112677 +g1,14258:12953687,13112677 +g1,14258:14534416,13112677 +g1,14258:16747436,13112677 +g1,14258:20225039,13112677 +g1,14258:22754205,13112677 +g1,14258:24967225,13112677 +k1,14258:32583029,13112677:3822056 +g1,14258:32583029,13112677 +) +] +) +g1,14258:32583029,13220155 +g1,14258:6630773,13220155 +g1,14258:6630773,13220155 +g1,14258:32583029,13220155 +g1,14258:32583029,13220155 +) +h1,14258:6630773,13416763:0,0,0 +(1,14261:6630773,22701006:25952256,8728754,0 +k1,14261:7928465,22701006:1297692 +h1,14260:7928465,22701006:0,0,0 +(1,14260:7928465,22701006:23356872,8728754,0 +(1,14260:7928465,22701006:23357558,8728776,0 +(1,14260:7928465,22701006:23357558,8728776,0 +(1,14260:7928465,22701006:0,8728776,0 +(1,14260:7928465,22701006:0,14155776,0 +(1,14260:7928465,22701006:37879808,14155776,0 +) +k1,14260:7928465,22701006:-37879808 +) +) +g1,14260:31286023,22701006 +) +) +) +g1,14261:31285337,22701006 +k1,14261:32583029,22701006:1297692 +) +v1,14269:6630773,24032448:0,393216,0 +(1,14270:6630773,29684432:25952256,6045200,616038 +g1,14270:6630773,29684432 +(1,14270:6630773,29684432:25952256,6045200,616038 +(1,14270:6630773,30300470:25952256,6661238,0 +[1,14270:6630773,30300470:25952256,6661238,0 +(1,14270:6630773,30274256:25952256,6608810,0 +r1,14270:6656987,30274256:26214,6608810,0 +[1,14270:6656987,30274256:25899828,6608810,0 +(1,14270:6656987,29684432:25899828,5429162,0 +[1,14270:7246811,29684432:24720180,5429162,0 +(1,14270:7246811,25342644:24720180,1087374,134348 +k1,14269:8823545,25342644:367031 +k1,14269:10387262,25342644:367030 +k1,14269:14181826,25342644:367031 +k1,14269:16744968,25342644:367031 +k1,14269:18625225,25342644:367031 +k1,14269:19983815,25342644:367030 +k1,14269:22094759,25342644:367031 +k1,14269:25756285,25342644:367031 +k1,14269:26884843,25342644:367030 +(1,14269:26884843,25342644:0,452978,115847 +r1,14270:30408515,25342644:3523672,568825,115847 +k1,14269:26884843,25342644:-3523672 +) +(1,14269:26884843,25342644:3523672,452978,115847 +k1,14269:26884843,25342644:3277 +h1,14269:30405238,25342644:0,411205,112570 +) +k1,14269:30775546,25342644:367031 +k1,14270:31966991,25342644:0 +) +(1,14270:7246811,26184132:24720180,505283,138281 +(1,14269:7246811,26184132:0,452978,115847 +r1,14270:12177331,26184132:4930520,568825,115847 +k1,14269:7246811,26184132:-4930520 +) +(1,14269:7246811,26184132:4930520,452978,115847 +k1,14269:7246811,26184132:3277 +h1,14269:12174054,26184132:0,411205,112570 +) +k1,14269:12402633,26184132:225302 +k1,14269:13951763,26184132:225303 +k1,14269:15989791,26184132:225302 +k1,14269:18751336,26184132:225302 +k1,14269:19592676,26184132:225302 +k1,14269:20837064,26184132:225303 +k1,14269:22234805,26184132:225302 +k1,14269:25451826,26184132:225302 +k1,14269:27706123,26184132:225302 +k1,14269:28950511,26184132:225303 +$1,14269:28950511,26184132 +$1,14269:29502324,26184132 +k1,14269:31193011,26184132:225302 +k1,14270:31966991,26184132:0 +) +(1,14270:7246811,27025620:24720180,513147,134348 +k1,14269:8756386,27025620:226380 +k1,14269:10495992,27025620:226380 +k1,14269:11913817,27025620:226380 +k1,14269:13159282,27025620:226380 +k1,14269:17098277,27025620:226380 +k1,14269:19662326,27025620:226380 +k1,14269:20244567,27025620:226381 +k1,14269:22343966,27025620:226380 +k1,14269:24082917,27025620:226380 +k1,14269:24992182,27025620:226380 +k1,14269:25574422,27025620:226380 +k1,14269:27683651,27025620:226380 +k1,14269:29518285,27025620:226380 +k1,14269:30403957,27025620:226380 +k1,14269:31966991,27025620:0 +) +(1,14270:7246811,27867108:24720180,513147,134348 +k1,14269:9248180,27867108:179468 +k1,14269:11313118,27867108:179467 +k1,14269:12676822,27867108:179468 +k1,14269:14700472,27867108:179467 +k1,14269:15871500,27867108:179468 +k1,14269:19091839,27867108:179468 +k1,14269:20032834,27867108:179467 +k1,14269:22477882,27867108:179468 +k1,14269:23848795,27867108:179468 +k1,14269:25462190,27867108:179467 +k1,14269:27078863,27867108:179468 +k1,14269:27944492,27867108:179467 +k1,14269:28894663,27867108:179468 +k1,14269:31966991,27867108:0 +) +(1,14270:7246811,28708596:24720180,513147,134348 +k1,14269:8070577,28708596:172338 +(1,14269:8070577,28708596:0,452978,115847 +r1,14270:11945961,28708596:3875384,568825,115847 +k1,14269:8070577,28708596:-3875384 +) +(1,14269:8070577,28708596:3875384,452978,115847 +k1,14269:8070577,28708596:3277 +h1,14269:11942684,28708596:0,411205,112570 +) +k1,14269:12118298,28708596:172337 +k1,14269:15052979,28708596:172338 +k1,14269:17405700,28708596:172338 +k1,14269:19947820,28708596:172338 +k1,14269:22115728,28708596:172337 +k1,14269:23555532,28708596:172338 +k1,14269:26232001,28708596:172338 +k1,14269:27688845,28708596:172338 +k1,14269:28477220,28708596:172337 +k1,14269:31315563,28708596:172338 +k1,14269:31966991,28708596:0 +) +(1,14270:7246811,29550084:24720180,513147,134348 +g1,14269:8465125,29550084 +g1,14269:12035526,29550084 +g1,14269:16105967,29550084 +g1,14269:18305355,29550084 +g1,14269:20684967,29550084 +g1,14269:23080307,29550084 +g1,14269:24383818,29550084 +g1,14269:26920716,29550084 +g1,14269:30346938,29550084 +k1,14270:31966991,29550084:220204 +g1,14270:31966991,29550084 +) +] +) +] +r1,14270:32583029,30274256:26214,6608810,0 +) +] +) +) +g1,14270:32583029,29684432 +) +h1,14270:6630773,30300470:0,0,0 +(1,14273:6630773,32881683:25952256,564462,152109 +(1,14273:6630773,32881683:2450326,527696,0 +g1,14273:6630773,32881683 +g1,14273:9081099,32881683 +) +g1,14273:12304226,32881683 +g1,14273:14714903,32881683 +g1,14273:16017563,32881683 +$1,14273:16017563,32881683 +$1,14273:16570490,32881683 +g1,14273:16795410,32881683 +g1,14273:18362638,32881683 +$1,14273:18362638,32881683 +$1,14273:18969632,32881683 +k1,14273:32583029,32881683:13613397 +g1,14273:32583029,32881683 +) +(1,14277:6630773,34116387:25952256,513147,126483 +k1,14276:7405278,34116387:146670 +k1,14276:8571032,34116387:146669 +k1,14276:10084783,34116387:146670 +k1,14276:10890744,34116387:146669 +k1,14276:13544821,34116387:146670 +k1,14276:14374375,34116387:146669 +k1,14276:17858138,34116387:146670 +k1,14276:20402769,34116387:146669 +k1,14276:21568524,34116387:146670 +k1,14276:22899429,34116387:146669 +k1,14276:24890282,34116387:146670 +k1,14276:26028511,34116387:146669 +k1,14276:26936709,34116387:146670 +k1,14276:29348958,34116387:146669 +k1,14276:30514713,34116387:146670 +k1,14276:32583029,34116387:0 +) +(1,14277:6630773,34957875:25952256,513147,134348 +k1,14276:7534991,34957875:244926 +k1,14276:8799002,34957875:244926 +k1,14276:10937918,34957875:244926 +k1,14276:13148924,34957875:244926 +k1,14276:17914524,34957875:244926 +k1,14276:19316159,34957875:244925 +k1,14276:23316953,34957875:244926 +k1,14276:24799854,34957875:244926 +k1,14276:25704072,34957875:244926 +k1,14276:28962999,34957875:244926 +k1,14276:30227010,34957875:244926 +k1,14276:32583029,34957875:0 +) +(1,14277:6630773,35799363:25952256,513147,126483 +k1,14276:8059084,35799363:244075 +k1,14276:10147341,35799363:244074 +k1,14276:10922913,35799363:244075 +k1,14276:11818416,35799363:244075 +k1,14276:12997034,35799363:244075 +k1,14276:14880163,35799363:244074 +k1,14276:15810400,35799363:244075 +k1,14276:17948465,35799363:244075 +k1,14276:20158619,35799363:244074 +k1,14276:21783538,35799363:244075 +k1,14276:25012123,35799363:244075 +k1,14276:25787695,35799363:244075 +k1,14276:27098040,35799363:244074 +k1,14276:31896867,35799363:244075 +k1,14276:32583029,35799363:0 +) +(1,14277:6630773,36640851:25952256,513147,134348 +k1,14276:7455175,36640851:208364 +k1,14276:9415315,36640851:208363 +k1,14276:11321061,36640851:208364 +k1,14276:12548509,36640851:208363 +k1,14276:13983052,36640851:208364 +k1,14276:14850707,36640851:208363 +k1,14276:16078156,36640851:208364 +k1,14276:18642539,36640851:208364 +k1,14276:20035138,36640851:208363 +k1,14276:22087685,36640851:208364 +k1,14276:23632982,36640851:208363 +k1,14276:24907617,36640851:208364 +k1,14276:25863746,36640851:208363 +k1,14276:29584184,36640851:208364 +k1,14276:30478709,36640851:208363 +k1,14276:31042933,36640851:208364 +k1,14276:32583029,36640851:0 +) +(1,14277:6630773,37482339:25952256,513147,134348 +k1,14276:8578197,37482339:209409 +k1,14276:11146248,37482339:209410 +k1,14276:12374742,37482339:209409 +k1,14276:14080338,37482339:209409 +k1,14276:16025140,37482339:209409 +k1,14276:17873605,37482339:209410 +k1,14276:19733211,37482339:209409 +k1,14276:22426435,37482339:209409 +k1,14276:23287272,37482339:209409 +k1,14276:24882768,37482339:209410 +k1,14276:25708215,37482339:209409 +k1,14276:28079001,37482339:209409 +k1,14276:28971295,37482339:209409 +k1,14276:29793467,37482339:209410 +k1,14276:31021961,37482339:209409 +k1,14277:32583029,37482339:0 +) +(1,14277:6630773,38323827:25952256,513147,126483 +k1,14276:8616186,38323827:173998 +k1,14276:11365094,38323827:173998 +k1,14276:12008985,38323827:173998 +k1,14276:12714480,38323827:173998 +k1,14276:14223446,38323827:173998 +k1,14276:15048872,38323827:173998 +k1,14276:16315355,38323827:173998 +k1,14276:18614030,38323827:173998 +k1,14276:22134296,38323827:173998 +k1,14276:23993225,38323827:173998 +k1,14276:26235539,38323827:173998 +k1,14276:27357188,38323827:173998 +k1,14276:29425176,38323827:173998 +k1,14276:31391584,38323827:173998 +k1,14276:32583029,38323827:0 +) +(1,14277:6630773,39165315:25952256,505283,134348 +k1,14276:9850304,39165315:204220 +k1,14276:11245969,39165315:204220 +k1,14276:12101617,39165315:204220 +k1,14276:13240381,39165315:204221 +k1,14276:15956596,39165315:204220 +k1,14276:18004999,39165315:204220 +k1,14276:20767745,39165315:204220 +k1,14276:22818115,39165315:204220 +k1,14276:24720373,39165315:204220 +k1,14276:27622711,39165315:204221 +k1,14276:28513093,39165315:204220 +k1,14276:29585665,39165315:204220 +k1,14276:30922347,39165315:204220 +k1,14276:32583029,39165315:0 +) +(1,14277:6630773,40006803:25952256,505283,7863 +k1,14277:32583030,40006803:24380704 +g1,14277:32583030,40006803 +) +(1,14279:6630773,40848291:25952256,505283,115847 +h1,14278:6630773,40848291:983040,0,0 +k1,14278:8792504,40848291:225142 +k1,14278:10121929,40848291:225143 +k1,14278:11439556,40848291:225142 +(1,14278:11439556,40848291:0,452978,115847 +r1,14278:17776923,40848291:6337367,568825,115847 +k1,14278:11439556,40848291:-6337367 +) +(1,14278:11439556,40848291:6337367,452978,115847 +k1,14278:11439556,40848291:3277 +h1,14278:17773646,40848291:0,411205,112570 +) +k1,14278:18002066,40848291:225143 +k1,14278:18878636,40848291:225142 +k1,14278:21478804,40848291:225143 +k1,14278:22895391,40848291:225142 +k1,14278:24941124,40848291:225143 +k1,14278:26185351,40848291:225142 +k1,14278:29123685,40848291:225143 +k1,14278:31809049,40848291:225142 +k1,14279:32583029,40848291:0 +) +(1,14279:6630773,41689779:25952256,513147,134348 +k1,14278:8702409,41689779:188787 +k1,14278:9910282,41689779:188788 +k1,14278:11662103,41689779:188787 +k1,14278:12328647,41689779:188787 +k1,14278:13385786,41689779:188787 +k1,14278:14667059,41689779:188788 +k1,14278:16059087,41689779:188787 +k1,14278:19232384,41689779:188787 +k1,14278:20072599,41689779:188787 +k1,14278:22341500,41689779:188788 +k1,14278:23549372,41689779:188787 +k1,14278:25301193,41689779:188787 +k1,14278:26923908,41689779:188787 +k1,14278:27764124,41689779:188788 +k1,14278:29682406,41689779:188787 +k1,14278:32583029,41689779:0 +) +(1,14279:6630773,42531267:25952256,505283,126483 +k1,14278:7777800,42531267:278675 +k1,14278:9586742,42531267:278676 +k1,14278:10516845,42531267:278675 +k1,14278:11992863,42531267:278675 +(1,14278:11992863,42531267:0,414482,115847 +r1,14278:16219959,42531267:4227096,530329,115847 +k1,14278:11992863,42531267:-4227096 +) +(1,14278:11992863,42531267:4227096,414482,115847 +g1,14278:14106411,42531267 +g1,14278:14809835,42531267 +h1,14278:16216682,42531267:0,411205,112570 +) +k1,14278:16672305,42531267:278676 +k1,14278:17904529,42531267:278675 +k1,14278:21976428,42531267:278675 +k1,14278:23347588,42531267:278675 +(1,14278:23347588,42531267:0,452978,115847 +r1,14278:28981531,42531267:5633943,568825,115847 +k1,14278:23347588,42531267:-5633943 +) +(1,14278:23347588,42531267:5633943,452978,115847 +k1,14278:23347588,42531267:3277 +h1,14278:28978254,42531267:0,411205,112570 +) +k1,14278:29260207,42531267:278676 +k1,14278:30190310,42531267:278675 +k1,14278:32583029,42531267:0 +) +(1,14279:6630773,43372755:25952256,505283,126483 +g1,14278:8292110,43372755 +g1,14278:10559655,43372755 +g1,14278:11410312,43372755 +k1,14279:32583028,43372755:17739940 +g1,14279:32583028,43372755 +) +v1,14282:6630773,44528887:0,393216,0 +(1,14291:6630773,45510161:25952256,1374490,196608 +g1,14291:6630773,45510161 +g1,14291:6630773,45510161 +g1,14291:6434165,45510161 +(1,14291:6434165,45510161:0,1374490,196608 +r1,14291:32779637,45510161:26345472,1571098,196608 +k1,14291:6434165,45510161:-26345472 +) +(1,14291:6434165,45510161:26345472,1374490,196608 +[1,14291:6630773,45510161:25952256,1177882,0 +(1,14284:6630773,44736505:25952256,404226,107478 +(1,14283:6630773,44736505:0,0,0 +g1,14283:6630773,44736505 +g1,14283:6630773,44736505 +g1,14283:6303093,44736505 +(1,14283:6303093,44736505:0,0,0 +) +g1,14283:6630773,44736505 +) +k1,14284:6630773,44736505:0 +g1,14284:10424522,44736505 +g1,14284:13902125,44736505 +g1,14284:15798999,44736505 +h1,14284:16115145,44736505:0,0,0 +k1,14284:32583029,44736505:16467884 +g1,14284:32583029,44736505 +) +(1,14285:6630773,45402683:25952256,410518,107478 +h1,14285:6630773,45402683:0,0,0 +g1,14285:6946919,45402683 +g1,14285:7263065,45402683 +g1,14285:12953688,45402683 +g1,14285:13585980,45402683 +g1,14285:15799000,45402683 +g1,14285:17695874,45402683 +g1,14285:18328166,45402683 +g1,14285:20225041,45402683 +g1,14285:22121915,45402683 +g1,14285:22754207,45402683 +g1,14285:24651082,45402683 +h1,14285:24967228,45402683:0,0,0 +k1,14285:32583029,45402683:7615801 +g1,14285:32583029,45402683 +) +] +) +g1,14291:32583029,45510161 +g1,14291:6630773,45510161 +g1,14291:6630773,45510161 +g1,14291:32583029,45510161 +g1,14291:32583029,45510161 +) +] +(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 +) +] +h1,14291:4262630,4025873:0,0,0 +] +!22174 +}275 +Input:2114:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2115:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2116:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2117:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2118:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2119:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2120:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2121:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2122:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2123:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2124:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2125:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2126:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2127:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2128:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2129:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2130:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2131:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2132:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2133:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2134:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2135:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2136:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2137:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2138:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2139:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2140:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2141:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2142:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2143:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2144:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2145:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2956 +{276 +[1,14337:4262630,47279633:28320399,43253760,0 +(1,14337:4262630,4025873:0,0,0 +[1,14337:-473657,4025873:25952256,0,0 +(1,14337:-473657,-710414:25952256,0,0 +h1,14337:-473657,-710414:0,0,0 +(1,14337:-473657,-710414:0,0,0 +(1,14337:-473657,-710414:0,0,0 +g1,14337:-473657,-710414 +(1,14337:-473657,-710414:65781,0,65781 +g1,14337:-407876,-710414 +[1,14337:-407876,-644633:0,0,0 ] ) -k1,14309:-473657,-710414:-65781 +k1,14337:-473657,-710414:-65781 ) ) -k1,14309:25478599,-710414:25952256 -g1,14309:25478599,-710414 +k1,14337:25478599,-710414:25952256 +g1,14337:25478599,-710414 ) ] ) -[1,14309:6630773,47279633:25952256,43253760,0 -[1,14309:6630773,4812305:25952256,786432,0 -(1,14309:6630773,4812305:25952256,513147,134348 -(1,14309:6630773,4812305:25952256,513147,134348 -g1,14309:3078558,4812305 -[1,14309:3078558,4812305:0,0,0 -(1,14309:3078558,2439708:0,1703936,0 -k1,14309:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14309:2537886,2439708:1179648,16384,0 +[1,14337:6630773,47279633:25952256,43253760,0 +[1,14337:6630773,4812305:25952256,786432,0 +(1,14337:6630773,4812305:25952256,505283,11795 +(1,14337:6630773,4812305:25952256,505283,11795 +g1,14337:3078558,4812305 +[1,14337:3078558,4812305:0,0,0 +(1,14337:3078558,2439708:0,1703936,0 +k1,14337:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14337:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14309:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14337:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14309:3078558,4812305:0,0,0 -(1,14309:3078558,2439708:0,1703936,0 -g1,14309:29030814,2439708 -g1,14309:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14309:36151628,1915420:16384,1179648,0 +[1,14337:3078558,4812305:0,0,0 +(1,14337:3078558,2439708:0,1703936,0 +g1,14337:29030814,2439708 +g1,14337:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14337:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14309:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14337:37855564,2439708:1179648,16384,0 ) ) -k1,14309:3078556,2439708:-34777008 +k1,14337:3078556,2439708:-34777008 ) ] -[1,14309:3078558,4812305:0,0,0 -(1,14309:3078558,49800853:0,16384,2228224 -k1,14309:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14309:2537886,49800853:1179648,16384,0 +[1,14337:3078558,4812305:0,0,0 +(1,14337:3078558,49800853:0,16384,2228224 +k1,14337:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14337:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14309:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14337:3078558,51504789:16384,1179648,0 ) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,14337:3078558,4812305:0,0,0 +(1,14337:3078558,49800853:0,16384,2228224 +g1,14337:29030814,49800853 +g1,14337:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14337:36151628,51504789:16384,1179648,0 ) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] -[1,14309:3078558,4812305:0,0,0 -(1,14309:3078558,49800853:0,16384,2228224 -g1,14309:29030814,49800853 -g1,14309:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14309:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14337:37855564,49800853:1179648,16384,0 +) +) +k1,14337:3078556,49800853:-34777008 +) +] +g1,14337:6630773,4812305 +g1,14337:6630773,4812305 +g1,14337:8724648,4812305 +k1,14337:31387652,4812305:22663004 +) ) ] +[1,14337:6630773,45706769:25952256,40108032,0 +(1,14337:6630773,45706769:25952256,40108032,0 +(1,14337:6630773,45706769:0,0,0 +g1,14337:6630773,45706769 ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14309:37855564,49800853:1179648,16384,0 -) -) -k1,14309:3078556,49800853:-34777008 -) +[1,14337:6630773,45706769:25952256,40108032,0 +v1,14291:6630773,6254097:0,393216,0 +(1,14291:6630773,8556909:25952256,2696028,196608 +g1,14291:6630773,8556909 +g1,14291:6630773,8556909 +g1,14291:6434165,8556909 +(1,14291:6434165,8556909:0,2696028,196608 +r1,14291:32779637,8556909:26345472,2892636,196608 +k1,14291:6434165,8556909:-26345472 +) +(1,14291:6434165,8556909:26345472,2696028,196608 +[1,14291:6630773,8556909:25952256,2499420,0 +(1,14286:6630773,6461715:25952256,404226,101187 +h1,14286:6630773,6461715:0,0,0 +g1,14286:6946919,6461715 +g1,14286:7263065,6461715 +g1,14286:14850562,6461715 +g1,14286:15482854,6461715 +g1,14286:19592749,6461715 +g1,14286:24018789,6461715 +k1,14286:24018789,6461715:0 +h1,14286:27496392,6461715:0,0,0 +k1,14286:32583029,6461715:5086637 +g1,14286:32583029,6461715 +) +(1,14287:6630773,7127893:25952256,404226,82312 +h1,14287:6630773,7127893:0,0,0 +g1,14287:6946919,7127893 +g1,14287:7263065,7127893 +g1,14287:7579211,7127893 +g1,14287:7895357,7127893 +g1,14287:8211503,7127893 +g1,14287:8527649,7127893 +g1,14287:8843795,7127893 +g1,14287:9159941,7127893 +g1,14287:9476087,7127893 +g1,14287:9792233,7127893 +g1,14287:10108379,7127893 +g1,14287:10424525,7127893 +g1,14287:10740671,7127893 +g1,14287:11056817,7127893 +g1,14287:11372963,7127893 +g1,14287:11689109,7127893 +g1,14287:12005255,7127893 +g1,14287:12321401,7127893 +g1,14287:12637547,7127893 +g1,14287:14850567,7127893 +g1,14287:15482859,7127893 +g1,14287:19592754,7127893 +g1,14287:24018794,7127893 +h1,14287:27496396,7127893:0,0,0 +k1,14287:32583029,7127893:5086633 +g1,14287:32583029,7127893 +) +(1,14291:6630773,8449431:25952256,410518,107478 +g1,14291:7579210,8449431 +g1,14291:10424521,8449431 +g1,14291:12953687,8449431 +g1,14291:13902124,8449431 +g1,14291:17695872,8449431 +g1,14291:18960455,8449431 +g1,14291:20857329,8449431 +k1,14291:32583029,8449431:9196535 +g1,14291:32583029,8449431 +) +] +) +g1,14291:32583029,8556909 +g1,14291:6630773,8556909 +g1,14291:6630773,8556909 +g1,14291:32583029,8556909 +g1,14291:32583029,8556909 +) +h1,14291:6630773,8753517:0,0,0 +(1,14294:6630773,19818019:25952256,10474678,0 +k1,14294:12599879,19818019:5969106 +h1,14293:12599879,19818019:0,0,0 +(1,14293:12599879,19818019:14014044,10474678,0 +(1,14293:12599879,19818019:14014766,10474704,0 +(1,14293:12599879,19818019:14014766,10474704,0 +(1,14293:12599879,19818019:0,10474704,0 +(1,14293:12599879,19818019:0,14155776,0 +(1,14293:12599879,19818019:18939904,14155776,0 +) +k1,14293:12599879,19818019:-18939904 +) +) +g1,14293:26614645,19818019 +) +) +) +g1,14294:26613923,19818019 +k1,14294:32583029,19818019:5969106 +) +(1,14302:6630773,20659507:25952256,513147,134348 +h1,14301:6630773,20659507:983040,0,0 +k1,14301:8519193,20659507:253952 +k1,14301:9459307,20659507:253952 +k1,14301:10329297,20659507:253952 +k1,14301:11602334,20659507:253952 +k1,14301:14610764,20659507:253952 +k1,14301:17699803,20659507:253952 +k1,14301:19329356,20659507:253952 +k1,14301:20602393,20659507:253952 +k1,14301:22223426,20659507:253952 +k1,14301:23136670,20659507:253952 +k1,14301:26365301,20659507:253952 +k1,14301:28815364,20659507:253952 +k1,14301:30929883,20659507:253952 +k1,14301:31835263,20659507:253952 +k1,14301:32583029,20659507:0 +) +(1,14302:6630773,21500995:25952256,513147,134348 +k1,14301:9666933,21500995:201073 +k1,14301:12295460,21500995:201073 +k1,14301:15192029,21500995:201073 +(1,14301:15192029,21500995:0,452978,115847 +r1,14301:18363989,21500995:3171960,568825,115847 +k1,14301:15192029,21500995:-3171960 +) +(1,14301:15192029,21500995:3171960,452978,115847 +k1,14301:15192029,21500995:3277 +h1,14301:18360712,21500995:0,411205,112570 +) +k1,14301:18565062,21500995:201073 +k1,14301:19449020,21500995:201073 +(1,14301:19449020,21500995:0,452978,115847 +r1,14301:22620980,21500995:3171960,568825,115847 +k1,14301:19449020,21500995:-3171960 +) +(1,14301:19449020,21500995:3171960,452978,115847 +k1,14301:19449020,21500995:3277 +h1,14301:22617703,21500995:0,411205,112570 +) +k1,14301:22822054,21500995:201074 +k1,14301:25035082,21500995:201073 +k1,14301:25592015,21500995:201073 +k1,14301:27443285,21500995:201073 +k1,14301:29977440,21500995:201073 +k1,14301:31369958,21500995:201073 +k1,14301:32583029,21500995:0 +) +(1,14302:6630773,22342483:25952256,513147,126483 +k1,14301:10479484,22342483:162966 +k1,14301:13800630,22342483:162966 +k1,14301:14591431,22342483:162966 +k1,14301:15965502,22342483:162966 +k1,14301:17260275,22342483:162966 +k1,14301:20292407,22342483:162966 +k1,14301:21836218,22342483:162967 +k1,14301:24380762,22342483:162966 +k1,14301:25226613,22342483:162966 +k1,14301:26629520,22342483:162966 +k1,14301:28677957,22342483:162966 +k1,14301:31563944,22342483:162966 +k1,14301:32583029,22342483:0 +) +(1,14302:6630773,23183971:25952256,513147,134348 +g1,14301:8840647,23183971 +g1,14301:9707032,23183971 +(1,14301:9707032,23183971:0,452978,115847 +r1,14301:11823857,23183971:2116825,568825,115847 +k1,14301:9707032,23183971:-2116825 +) +(1,14301:9707032,23183971:2116825,452978,115847 +k1,14301:9707032,23183971:3277 +h1,14301:11820580,23183971:0,411205,112570 +) +g1,14301:12023086,23183971 +g1,14301:13489781,23183971 +g1,14301:14708095,23183971 +g1,14301:17263343,23183971 +g1,14301:19473217,23183971 +g1,14301:20776728,23183971 +g1,14301:21723723,23183971 +g1,14301:24128239,23183971 +g1,14301:25013630,23183971 +g1,14301:25983562,23183971 +g1,14301:29255119,23183971 +g1,14301:30105776,23183971 +(1,14301:30105776,23183971:0,452978,115847 +r1,14301:32222601,23183971:2116825,568825,115847 +k1,14301:30105776,23183971:-2116825 +) +(1,14301:30105776,23183971:2116825,452978,115847 +k1,14301:30105776,23183971:3277 +h1,14301:32219324,23183971:0,411205,112570 +) +k1,14302:32583029,23183971:186758 +g1,14302:32583029,23183971 +) +v1,14304:6630773,24374437:0,393216,0 +(1,14309:6630773,25349420:25952256,1368199,196608 +g1,14309:6630773,25349420 +g1,14309:6630773,25349420 +g1,14309:6434165,25349420 +(1,14309:6434165,25349420:0,1368199,196608 +r1,14309:32779637,25349420:26345472,1564807,196608 +k1,14309:6434165,25349420:-26345472 +) +(1,14309:6434165,25349420:26345472,1368199,196608 +[1,14309:6630773,25349420:25952256,1171591,0 +(1,14306:6630773,24582055:25952256,404226,101187 +(1,14305:6630773,24582055:0,0,0 +g1,14305:6630773,24582055 +g1,14305:6630773,24582055 +g1,14305:6303093,24582055 +(1,14305:6303093,24582055:0,0,0 +) +g1,14305:6630773,24582055 +) +g1,14306:6946919,24582055 +g1,14306:7263065,24582055 +g1,14306:14850562,24582055 +g1,14306:15482854,24582055 +g1,14306:19592749,24582055 +g1,14306:24018789,24582055 +k1,14306:24018789,24582055:0 +h1,14306:27496392,24582055:0,0,0 +k1,14306:32583029,24582055:5086637 +g1,14306:32583029,24582055 +) +(1,14307:6630773,25248233:25952256,404226,101187 +h1,14307:6630773,25248233:0,0,0 +g1,14307:6946919,25248233 +g1,14307:7263065,25248233 +g1,14307:7579211,25248233 +g1,14307:7895357,25248233 +g1,14307:8211503,25248233 +g1,14307:8527649,25248233 +g1,14307:8843795,25248233 +g1,14307:9159941,25248233 +g1,14307:9476087,25248233 +g1,14307:9792233,25248233 +g1,14307:10108379,25248233 +g1,14307:10424525,25248233 +g1,14307:10740671,25248233 +g1,14307:11056817,25248233 +g1,14307:11372963,25248233 +g1,14307:11689109,25248233 +g1,14307:12005255,25248233 +g1,14307:12321401,25248233 +g1,14307:12637547,25248233 +g1,14307:14850567,25248233 +g1,14307:15482859,25248233 +h1,14307:18012024,25248233:0,0,0 +k1,14307:32583029,25248233:14571005 +g1,14307:32583029,25248233 +) +] +) +g1,14309:32583029,25349420 +g1,14309:6630773,25349420 +g1,14309:6630773,25349420 +g1,14309:32583029,25349420 +g1,14309:32583029,25349420 +) +h1,14309:6630773,25546028:0,0,0 +(1,14313:6630773,26911804:25952256,513147,134348 +h1,14312:6630773,26911804:983040,0,0 +k1,14312:12049895,26911804:177552 +k1,14312:13095799,26911804:177552 +k1,14312:14377633,26911804:177552 +k1,14312:16795861,26911804:177552 +k1,14312:17992498,26911804:177552 +k1,14312:19909376,26911804:177552 +k1,14312:20746219,26911804:177551 +k1,14312:21942856,26911804:177552 +k1,14312:24833599,26911804:177552 +k1,14312:25627189,26911804:177552 +k1,14312:26823826,26911804:177552 +k1,14312:28278675,26911804:177552 +k1,14312:29217755,26911804:177552 +k1,14312:32583029,26911804:0 +) +(1,14313:6630773,27753292:25952256,513147,134348 +k1,14312:7898620,27753292:248762 +k1,14312:9939792,27753292:248762 +k1,14312:10847847,27753292:248763 +k1,14312:12990599,27753292:248762 +(1,14312:12990599,27753292:0,459977,122846 +r1,14312:16162559,27753292:3171960,582823,122846 +k1,14312:12990599,27753292:-3171960 +) +(1,14312:12990599,27753292:3171960,459977,122846 +k1,14312:12990599,27753292:3277 +h1,14312:16159282,27753292:0,411205,112570 +) +k1,14312:16584991,27753292:248762 +k1,14312:18214597,27753292:248762 +k1,14312:21447869,27753292:248762 +k1,14312:23742665,27753292:248762 +k1,14312:25761555,27753292:248763 +k1,14312:26476278,27753292:248762 +k1,14312:27744125,27753292:248762 +k1,14312:30722462,27753292:248762 +k1,14312:32583029,27753292:0 +) +(1,14313:6630773,28594780:25952256,505283,134348 +k1,14312:7472130,28594780:189929 +k1,14312:8409825,28594780:189929 +k1,14312:10177205,28594780:189928 +k1,14312:16003886,28594780:189929 +k1,14312:18048484,28594780:189929 +k1,14312:19047783,28594780:189929 +k1,14312:21248357,28594780:189929 +k1,14312:22054323,28594780:189928 +(1,14312:22054323,28594780:0,452978,115847 +r1,14312:23467724,28594780:1413401,568825,115847 +k1,14312:22054323,28594780:-1413401 +) +(1,14312:22054323,28594780:1413401,452978,115847 +k1,14312:22054323,28594780:3277 +h1,14312:23464447,28594780:0,411205,112570 +) +k1,14312:23831323,28594780:189929 +k1,14312:25071139,28594780:189929 +k1,14312:27539755,28594780:189929 +h1,14312:28908802,28594780:0,0,0 +k1,14312:29098730,28594780:189928 +k1,14312:30098029,28594780:189929 +k1,14312:31786111,28594780:189929 +h1,14312:32583029,28594780:0,0,0 +k1,14312:32583029,28594780:0 +) +(1,14313:6630773,29436268:25952256,513147,134348 +k1,14312:7770206,29436268:191782 +k1,14312:10253127,29436268:191782 +k1,14312:11641596,29436268:191782 +k1,14312:14494795,29436268:191782 +k1,14312:16555008,29436268:191782 +k1,14312:18737774,29436268:191782 +k1,14312:20259937,29436268:191782 +k1,14312:21103147,29436268:191782 +k1,14312:23669954,29436268:191782 +k1,14312:24880821,29436268:191782 +k1,14312:27959464,29436268:191782 +k1,14312:32583029,29436268:0 +) +(1,14313:6630773,30277756:25952256,513147,115847 +g1,14312:7481430,30277756 +g1,14312:8699744,30277756 +g1,14312:10691383,30277756 +g1,14312:11557768,30277756 +(1,14312:11557768,30277756:0,452978,115847 +r1,14312:13322881,30277756:1765113,568825,115847 +k1,14312:11557768,30277756:-1765113 +) +(1,14312:11557768,30277756:1765113,452978,115847 +k1,14312:11557768,30277756:3277 +h1,14312:13319604,30277756:0,411205,112570 +) +g1,14312:13522110,30277756 +g1,14312:15576008,30277756 +g1,14312:16584607,30277756 +g1,14312:17802921,30277756 +(1,14312:17802921,30277756:0,452978,115847 +r1,14312:19919746,30277756:2116825,568825,115847 +k1,14312:17802921,30277756:-2116825 +) +(1,14312:17802921,30277756:2116825,452978,115847 +k1,14312:17802921,30277756:3277 +h1,14312:19916469,30277756:0,411205,112570 +) +g1,14312:20118975,30277756 +g1,14312:20985360,30277756 +(1,14312:20985360,30277756:0,452978,115847 +r1,14312:22047049,30277756:1061689,568825,115847 +k1,14312:20985360,30277756:-1061689 +) +(1,14312:20985360,30277756:1061689,452978,115847 +k1,14312:20985360,30277756:3277 +h1,14312:22043772,30277756:0,411205,112570 +) +k1,14313:32583029,30277756:10362310 +g1,14313:32583029,30277756 +) +v1,14315:6630773,31468222:0,393216,0 +(1,14320:6630773,32455788:25952256,1380782,196608 +g1,14320:6630773,32455788 +g1,14320:6630773,32455788 +g1,14320:6434165,32455788 +(1,14320:6434165,32455788:0,1380782,196608 +r1,14320:32779637,32455788:26345472,1577390,196608 +k1,14320:6434165,32455788:-26345472 +) +(1,14320:6434165,32455788:26345472,1380782,196608 +[1,14320:6630773,32455788:25952256,1184174,0 +(1,14317:6630773,31682132:25952256,410518,107478 +(1,14316:6630773,31682132:0,0,0 +g1,14316:6630773,31682132 +g1,14316:6630773,31682132 +g1,14316:6303093,31682132 +(1,14316:6303093,31682132:0,0,0 +) +g1,14316:6630773,31682132 +) +k1,14317:6630773,31682132:0 +g1,14317:10424522,31682132 +g1,14317:14850563,31682132 +g1,14317:15482855,31682132 +g1,14317:20225041,31682132 +g1,14317:20857333,31682132 +g1,14317:21489625,31682132 +g1,14317:23070354,31682132 +g1,14317:24334937,31682132 +g1,14317:24967229,31682132 +g1,14317:27180249,31682132 +g1,14317:29077123,31682132 +h1,14317:29393269,31682132:0,0,0 +k1,14317:32583029,31682132:3189760 +g1,14317:32583029,31682132 +) +(1,14318:6630773,32348310:25952256,410518,107478 +h1,14318:6630773,32348310:0,0,0 +g1,14318:6946919,32348310 +g1,14318:7263065,32348310 +g1,14318:12953688,32348310 +g1,14318:13585980,32348310 +g1,14318:15799000,32348310 +g1,14318:17695874,32348310 +g1,14318:18328166,32348310 +h1,14318:19908894,32348310:0,0,0 +k1,14318:32583029,32348310:12674135 +g1,14318:32583029,32348310 +) +] +) +g1,14320:32583029,32455788 +g1,14320:6630773,32455788 +g1,14320:6630773,32455788 +g1,14320:32583029,32455788 +g1,14320:32583029,32455788 +) +h1,14320:6630773,32652396:0,0,0 +(1,14325:6630773,35267944:25952256,555811,12975 +(1,14325:6630773,35267944:2450326,521208,12975 +g1,14325:6630773,35267944 +g1,14325:9081099,35267944 +) +k1,14325:32583029,35267944:22040674 +g1,14325:32583029,35267944 +) +(1,14328:6630773,36502648:25952256,505283,115847 +k1,14327:8120782,36502648:447987 +k1,14327:9587855,36502648:447988 +(1,14327:9587855,36502648:0,452978,115847 +r1,14327:11001256,36502648:1413401,568825,115847 +k1,14327:9587855,36502648:-1413401 +) +(1,14327:9587855,36502648:1413401,452978,115847 +k1,14327:9587855,36502648:3277 +h1,14327:10997979,36502648:0,411205,112570 +) +k1,14327:11449243,36502648:447987 +k1,14327:14824067,36502648:447987 +k1,14327:17503556,36502648:447988 +k1,14327:19854053,36502648:447987 +k1,14327:21293601,36502648:447988 +k1,14327:24699228,36502648:447987 +k1,14327:26613911,36502648:447987 +k1,14327:29587657,36502648:447988 +k1,14327:31227089,36502648:447987 +k1,14328:32583029,36502648:0 +) +(1,14328:6630773,37344136:25952256,513147,126483 +k1,14327:9648289,37344136:416392 +k1,14327:11622471,37344136:416391 +k1,14327:12854131,37344136:416392 +k1,14327:14336794,37344136:416392 +k1,14327:16496444,37344136:416392 +k1,14327:18696070,37344136:416391 +k1,14327:20680083,37344136:416392 +k1,14327:22840388,37344136:416392 +k1,14327:25591172,37344136:416392 +k1,14327:29097586,37344136:416391 +k1,14327:31542973,37344136:416392 +k1,14328:32583029,37344136:0 +) +(1,14328:6630773,38185624:25952256,473825,122846 +k1,14327:9725929,38185624:389174 +(1,14327:9725929,38185624:0,452978,122846 +r1,14327:13953025,38185624:4227096,575824,122846 +k1,14327:9725929,38185624:-4227096 +) +(1,14327:9725929,38185624:4227096,452978,122846 +k1,14327:9725929,38185624:3277 +h1,14327:13949748,38185624:0,411205,112570 +) +k1,14327:14515868,38185624:389173 +(1,14327:14515868,38185624:0,452978,122846 +r1,14327:18391252,38185624:3875384,575824,122846 +k1,14327:14515868,38185624:-3875384 +) +(1,14327:14515868,38185624:3875384,452978,122846 +k1,14327:14515868,38185624:3277 +h1,14327:18387975,38185624:0,411205,112570 +) +k1,14327:18954096,38185624:389174 +(1,14327:18954096,38185624:0,452978,122846 +r1,14327:23181192,38185624:4227096,575824,122846 +k1,14327:18954096,38185624:-4227096 +) +(1,14327:18954096,38185624:4227096,452978,122846 +k1,14327:18954096,38185624:3277 +h1,14327:23177915,38185624:0,411205,112570 +) +k1,14327:23744035,38185624:389173 +(1,14327:23744035,38185624:0,452978,122846 +r1,14327:27971131,38185624:4227096,575824,122846 +k1,14327:23744035,38185624:-4227096 +) +(1,14327:23744035,38185624:4227096,452978,122846 +k1,14327:23744035,38185624:3277 +h1,14327:27967854,38185624:0,411205,112570 +) +k1,14327:28533975,38185624:389174 +(1,14327:28533975,38185624:0,452978,122846 +r1,14327:32409359,38185624:3875384,575824,122846 +k1,14327:28533975,38185624:-3875384 +) +(1,14327:28533975,38185624:3875384,452978,122846 +k1,14327:28533975,38185624:3277 +h1,14327:32406082,38185624:0,411205,112570 +) +k1,14328:32583029,38185624:0 +) +(1,14328:6630773,39027112:25952256,513147,126483 +(1,14327:6630773,39027112:0,452978,122846 +r1,14327:10857869,39027112:4227096,575824,122846 +k1,14327:6630773,39027112:-4227096 +) +(1,14327:6630773,39027112:4227096,452978,122846 +k1,14327:6630773,39027112:3277 +h1,14327:10854592,39027112:0,411205,112570 +) +k1,14327:11261236,39027112:403367 +k1,14327:13167999,39027112:403367 +(1,14327:13167999,39027112:0,452978,115847 +r1,14327:14581400,39027112:1413401,568825,115847 +k1,14327:13167999,39027112:-1413401 +) +(1,14327:13167999,39027112:1413401,452978,115847 +k1,14327:13167999,39027112:3277 +h1,14327:14578123,39027112:0,411205,112570 +) +k1,14327:14984767,39027112:403367 +k1,14327:16074296,39027112:403367 +k1,14327:19490353,39027112:403367 +k1,14327:20521555,39027112:403367 +k1,14327:21944007,39027112:403367 +k1,14327:23714455,39027112:403367 +k1,14327:24784978,39027112:403367 +(1,14327:24784978,39027112:0,452978,122846 +r1,14327:28308650,39027112:3523672,575824,122846 +k1,14327:24784978,39027112:-3523672 +) +(1,14327:24784978,39027112:3523672,452978,122846 +k1,14327:24784978,39027112:3277 +h1,14327:28305373,39027112:0,411205,112570 +) +k1,14327:28885687,39027112:403367 +(1,14327:28885687,39027112:0,452978,122846 +r1,14327:32409359,39027112:3523672,575824,122846 +k1,14327:28885687,39027112:-3523672 +) +(1,14327:28885687,39027112:3523672,452978,122846 +k1,14327:28885687,39027112:3277 +h1,14327:32406082,39027112:0,411205,112570 +) +k1,14328:32583029,39027112:0 +) +(1,14328:6630773,39868600:25952256,505283,134348 +(1,14327:6630773,39868600:0,452978,122846 +r1,14327:10506157,39868600:3875384,575824,122846 +k1,14327:6630773,39868600:-3875384 +) +(1,14327:6630773,39868600:3875384,452978,122846 +k1,14327:6630773,39868600:3277 +h1,14327:10502880,39868600:0,411205,112570 +) +k1,14327:10763115,39868600:256958 +k1,14327:12211518,39868600:256958 +k1,14327:13234592,39868600:256958 +k1,14327:15193520,39868600:256958 +k1,14327:18613901,39868600:256958 +k1,14327:21740024,39868600:256957 +k1,14327:24904814,39868600:256958 +k1,14327:25923300,39868600:256958 +k1,14327:27852737,39868600:256958 +(1,14327:27852737,39868600:0,452978,115847 +r1,14327:29266138,39868600:1413401,568825,115847 +k1,14327:27852737,39868600:-1413401 +) +(1,14327:27852737,39868600:1413401,452978,115847 +k1,14327:27852737,39868600:3277 +h1,14327:29262861,39868600:0,411205,112570 +) +k1,14327:29523096,39868600:256958 +k1,14327:30311551,39868600:256958 +k1,14327:32583029,39868600:0 +) +(1,14328:6630773,40710088:25952256,513147,126483 +k1,14327:7627255,40710088:234954 +k1,14327:9558935,40710088:234953 +k1,14327:11933640,40710088:234954 +k1,14327:13841072,40710088:234953 +k1,14327:14703861,40710088:234954 +k1,14327:16323590,40710088:234953 +k1,14327:18260514,40710088:234954 +k1,14327:21670031,40710088:234953 +k1,14327:24196779,40710088:234954 +k1,14327:25379383,40710088:234953 +k1,14327:27113145,40710088:234954 +k1,14327:28841664,40710088:234953 +k1,14327:29762780,40710088:234954 +(1,14327:29762780,40710088:0,452978,115847 +r1,14327:32583029,40710088:2820249,568825,115847 +k1,14327:29762780,40710088:-2820249 +) +(1,14327:29762780,40710088:2820249,452978,115847 +k1,14327:29762780,40710088:3277 +h1,14327:32579752,40710088:0,411205,112570 +) +k1,14327:32583029,40710088:0 +) +(1,14328:6630773,41551576:25952256,505283,126483 +g1,14327:8115818,41551576 +g1,14327:10078621,41551576 +g1,14327:10929278,41551576 +g1,14327:12825234,41551576 +k1,14328:32583028,41551576:17114072 +g1,14328:32583028,41551576 +) +(1,14331:6630773,42393064:25952256,513147,134348 +h1,14329:6630773,42393064:983040,0,0 +k1,14329:9554191,42393064:157143 +k1,14329:11446727,42393064:157143 +(1,14329:11446727,42393064:0,452978,115847 +r1,14329:12860128,42393064:1413401,568825,115847 +k1,14329:11446727,42393064:-1413401 +) +(1,14329:11446727,42393064:1413401,452978,115847 +k1,14329:11446727,42393064:3277 +h1,14329:12856851,42393064:0,411205,112570 +) +k1,14329:13017271,42393064:157143 +k1,14329:15250594,42393064:157142 +(1,14329:15250594,42393064:0,452978,115847 +r1,14329:17367419,42393064:2116825,568825,115847 +k1,14329:15250594,42393064:-2116825 +) +(1,14329:15250594,42393064:2116825,452978,115847 +k1,14329:15250594,42393064:3277 +h1,14329:17364142,42393064:0,411205,112570 +) +k1,14329:17524562,42393064:157143 +k1,14329:18873150,42393064:157143 +(1,14329:18873150,42393064:0,452978,115847 +r1,14329:20989975,42393064:2116825,568825,115847 +k1,14329:18873150,42393064:-2116825 +) +(1,14329:18873150,42393064:2116825,452978,115847 +k1,14329:18873150,42393064:3277 +h1,14329:20986698,42393064:0,411205,112570 +) +k1,14329:21147118,42393064:157143 +k1,14329:23083563,42393064:157143 +k1,14329:24259791,42393064:157143 +k1,14329:25517939,42393064:157143 +k1,14329:26357966,42393064:157142 +(1,14329:26357966,42393064:0,452978,122846 +r1,14329:28123079,42393064:1765113,575824,122846 +k1,14329:26357966,42393064:-1765113 +) +(1,14329:26357966,42393064:1765113,452978,122846 +k1,14329:26357966,42393064:3277 +h1,14329:28119802,42393064:0,411205,112570 +) +k1,14329:28453892,42393064:157143 +k1,14329:29238870,42393064:157143 +k1,14329:31298523,42393064:157143 +k1,14329:32583029,42393064:0 +) +(1,14331:6630773,43234552:25952256,505283,134348 +k1,14329:9434897,43234552:183995 +k1,14329:9974752,43234552:183995 +k1,14329:11259751,43234552:183994 +k1,14329:13871200,43234552:183995 +(1,14329:13871200,43234552:0,452978,122846 +r1,14329:18450008,43234552:4578808,575824,122846 +k1,14329:13871200,43234552:-4578808 +) +(1,14329:13871200,43234552:4578808,452978,122846 +g1,14329:15984748,43234552 +g1,14329:16688172,43234552 +h1,14329:18446731,43234552:0,411205,112570 +) +k1,14329:18634003,43234552:183995 +k1,14329:21503008,43234552:183995 +k1,14329:22706088,43234552:183995 +k1,14329:23991088,43234552:183995 +k1,14329:28798647,43234552:183994 +k1,14329:29634070,43234552:183995 +k1,14329:30837150,43234552:183995 +k1,14329:32583029,43234552:0 +) +(1,14331:6630773,44076040:25952256,0,0 +k1,14331:32583029,44076040:25952256 +g1,14331:32583029,44076040 +) +] +(1,14337:32583029,45706769:0,0,0 +g1,14337:32583029,45706769 +) +) +] +(1,14337:6630773,47279633:25952256,0,0 +h1,14337:6630773,47279633:25952256,0,0 +) +] +h1,14337:4262630,4025873:0,0,0 ] -g1,14309:6630773,4812305 -k1,14309:25712890,4812305:17886740 -g1,14309:29057847,4812305 -g1,14309:29873114,4812305 -) -) -] -[1,14309:6630773,45706769:25952256,40108032,0 -(1,14309:6630773,45706769:25952256,40108032,0 -(1,14309:6630773,45706769:0,0,0 -g1,14309:6630773,45706769 -) -[1,14309:6630773,45706769:25952256,40108032,0 -v1,14263:6630773,6254097:0,393216,0 -(1,14263:6630773,7210205:25952256,1349324,196608 -g1,14263:6630773,7210205 -g1,14263:6630773,7210205 -g1,14263:6434165,7210205 -(1,14263:6434165,7210205:0,1349324,196608 -r1,14263:32779637,7210205:26345472,1545932,196608 -k1,14263:6434165,7210205:-26345472 -) -(1,14263:6434165,7210205:26345472,1349324,196608 -[1,14263:6630773,7210205:25952256,1152716,0 -(1,14260:6630773,6461715:25952256,404226,101187 -h1,14260:6630773,6461715:0,0,0 -g1,14260:6946919,6461715 -g1,14260:7263065,6461715 -g1,14260:14850562,6461715 -g1,14260:15482854,6461715 -g1,14260:19592749,6461715 -g1,14260:24018789,6461715 -k1,14260:24018789,6461715:0 -h1,14260:27496392,6461715:0,0,0 -k1,14260:32583029,6461715:5086637 -g1,14260:32583029,6461715 -) -(1,14261:6630773,7127893:25952256,404226,82312 -h1,14261:6630773,7127893:0,0,0 -g1,14261:6946919,7127893 -g1,14261:7263065,7127893 -g1,14261:7579211,7127893 -g1,14261:7895357,7127893 -g1,14261:8211503,7127893 -g1,14261:8527649,7127893 -g1,14261:8843795,7127893 -g1,14261:9159941,7127893 -g1,14261:9476087,7127893 -g1,14261:9792233,7127893 -g1,14261:10108379,7127893 -g1,14261:10424525,7127893 -g1,14261:10740671,7127893 -g1,14261:11056817,7127893 -g1,14261:11372963,7127893 -g1,14261:11689109,7127893 -g1,14261:12005255,7127893 -g1,14261:12321401,7127893 -g1,14261:12637547,7127893 -g1,14261:14850567,7127893 -g1,14261:15482859,7127893 -g1,14261:19592754,7127893 -g1,14261:24018794,7127893 -h1,14261:27496396,7127893:0,0,0 -k1,14261:32583029,7127893:5086633 -g1,14261:32583029,7127893 -) -] -) -g1,14263:32583029,7210205 -g1,14263:6630773,7210205 -g1,14263:6630773,7210205 -g1,14263:32583029,7210205 -g1,14263:32583029,7210205 -) -h1,14263:6630773,7406813:0,0,0 -(1,14266:6630773,18233311:25952256,10474678,0 -k1,14266:12599879,18233311:5969106 -h1,14265:12599879,18233311:0,0,0 -(1,14265:12599879,18233311:14014044,10474678,0 -(1,14265:12599879,18233311:14014766,10474704,0 -(1,14265:12599879,18233311:14014766,10474704,0 -(1,14265:12599879,18233311:0,10474704,0 -(1,14265:12599879,18233311:0,14155776,0 -(1,14265:12599879,18233311:18939904,14155776,0 -) -k1,14265:12599879,18233311:-18939904 -) -) -g1,14265:26614645,18233311 -) -) -) -g1,14266:26613923,18233311 -k1,14266:32583029,18233311:5969106 -) -(1,14274:6630773,19074799:25952256,513147,134348 -h1,14273:6630773,19074799:983040,0,0 -k1,14273:8519193,19074799:253952 -k1,14273:9459307,19074799:253952 -k1,14273:10329297,19074799:253952 -k1,14273:11602334,19074799:253952 -k1,14273:14610764,19074799:253952 -k1,14273:17699803,19074799:253952 -k1,14273:19329356,19074799:253952 -k1,14273:20602393,19074799:253952 -k1,14273:22223426,19074799:253952 -k1,14273:23136670,19074799:253952 -k1,14273:26365301,19074799:253952 -k1,14273:28815364,19074799:253952 -k1,14273:30929883,19074799:253952 -k1,14273:31835263,19074799:253952 -k1,14273:32583029,19074799:0 -) -(1,14274:6630773,19916287:25952256,513147,134348 -k1,14273:9666933,19916287:201073 -k1,14273:12295460,19916287:201073 -k1,14273:15192029,19916287:201073 -(1,14273:15192029,19916287:0,452978,115847 -r1,14273:18363989,19916287:3171960,568825,115847 -k1,14273:15192029,19916287:-3171960 -) -(1,14273:15192029,19916287:3171960,452978,115847 -k1,14273:15192029,19916287:3277 -h1,14273:18360712,19916287:0,411205,112570 -) -k1,14273:18565062,19916287:201073 -k1,14273:19449020,19916287:201073 -(1,14273:19449020,19916287:0,452978,115847 -r1,14273:22620980,19916287:3171960,568825,115847 -k1,14273:19449020,19916287:-3171960 -) -(1,14273:19449020,19916287:3171960,452978,115847 -k1,14273:19449020,19916287:3277 -h1,14273:22617703,19916287:0,411205,112570 -) -k1,14273:22822054,19916287:201074 -k1,14273:25035082,19916287:201073 -k1,14273:25592015,19916287:201073 -k1,14273:27443285,19916287:201073 -k1,14273:29977440,19916287:201073 -k1,14273:31369958,19916287:201073 -k1,14273:32583029,19916287:0 -) -(1,14274:6630773,20757775:25952256,513147,126483 -k1,14273:10479484,20757775:162966 -k1,14273:13800630,20757775:162966 -k1,14273:14591431,20757775:162966 -k1,14273:15965502,20757775:162966 -k1,14273:17260275,20757775:162966 -k1,14273:20292407,20757775:162966 -k1,14273:21836218,20757775:162967 -k1,14273:24380762,20757775:162966 -k1,14273:25226613,20757775:162966 -k1,14273:26629520,20757775:162966 -k1,14273:28677957,20757775:162966 -k1,14273:31563944,20757775:162966 -k1,14273:32583029,20757775:0 -) -(1,14274:6630773,21599263:25952256,513147,134348 -g1,14273:8840647,21599263 -g1,14273:9707032,21599263 -(1,14273:9707032,21599263:0,452978,115847 -r1,14273:11823857,21599263:2116825,568825,115847 -k1,14273:9707032,21599263:-2116825 -) -(1,14273:9707032,21599263:2116825,452978,115847 -k1,14273:9707032,21599263:3277 -h1,14273:11820580,21599263:0,411205,112570 -) -g1,14273:12023086,21599263 -g1,14273:13489781,21599263 -g1,14273:14708095,21599263 -g1,14273:17263343,21599263 -g1,14273:19473217,21599263 -g1,14273:20776728,21599263 -g1,14273:21723723,21599263 -g1,14273:24128239,21599263 -g1,14273:25013630,21599263 -g1,14273:25983562,21599263 -g1,14273:29255119,21599263 -g1,14273:30105776,21599263 -(1,14273:30105776,21599263:0,452978,115847 -r1,14273:32222601,21599263:2116825,568825,115847 -k1,14273:30105776,21599263:-2116825 -) -(1,14273:30105776,21599263:2116825,452978,115847 -k1,14273:30105776,21599263:3277 -h1,14273:32219324,21599263:0,411205,112570 -) -k1,14274:32583029,21599263:186758 -g1,14274:32583029,21599263 -) -v1,14276:6630773,22551725:0,393216,0 -(1,14281:6630773,23526708:25952256,1368199,196608 -g1,14281:6630773,23526708 -g1,14281:6630773,23526708 -g1,14281:6434165,23526708 -(1,14281:6434165,23526708:0,1368199,196608 -r1,14281:32779637,23526708:26345472,1564807,196608 -k1,14281:6434165,23526708:-26345472 -) -(1,14281:6434165,23526708:26345472,1368199,196608 -[1,14281:6630773,23526708:25952256,1171591,0 -(1,14278:6630773,22759343:25952256,404226,101187 -(1,14277:6630773,22759343:0,0,0 -g1,14277:6630773,22759343 -g1,14277:6630773,22759343 -g1,14277:6303093,22759343 -(1,14277:6303093,22759343:0,0,0 -) -g1,14277:6630773,22759343 -) -g1,14278:6946919,22759343 -g1,14278:7263065,22759343 -g1,14278:14850562,22759343 -g1,14278:15482854,22759343 -g1,14278:19592749,22759343 -g1,14278:24018789,22759343 -k1,14278:24018789,22759343:0 -h1,14278:27496392,22759343:0,0,0 -k1,14278:32583029,22759343:5086637 -g1,14278:32583029,22759343 -) -(1,14279:6630773,23425521:25952256,404226,101187 -h1,14279:6630773,23425521:0,0,0 -g1,14279:6946919,23425521 -g1,14279:7263065,23425521 -g1,14279:7579211,23425521 -g1,14279:7895357,23425521 -g1,14279:8211503,23425521 -g1,14279:8527649,23425521 -g1,14279:8843795,23425521 -g1,14279:9159941,23425521 -g1,14279:9476087,23425521 -g1,14279:9792233,23425521 -g1,14279:10108379,23425521 -g1,14279:10424525,23425521 -g1,14279:10740671,23425521 -g1,14279:11056817,23425521 -g1,14279:11372963,23425521 -g1,14279:11689109,23425521 -g1,14279:12005255,23425521 -g1,14279:12321401,23425521 -g1,14279:12637547,23425521 -g1,14279:14850567,23425521 -g1,14279:15482859,23425521 -h1,14279:18012024,23425521:0,0,0 -k1,14279:32583029,23425521:14571005 -g1,14279:32583029,23425521 -) -] -) -g1,14281:32583029,23526708 -g1,14281:6630773,23526708 -g1,14281:6630773,23526708 -g1,14281:32583029,23526708 -g1,14281:32583029,23526708 -) -h1,14281:6630773,23723316:0,0,0 -(1,14285:6630773,24851089:25952256,513147,134348 -h1,14284:6630773,24851089:983040,0,0 -k1,14284:12049895,24851089:177552 -k1,14284:13095799,24851089:177552 -k1,14284:14377633,24851089:177552 -k1,14284:16795861,24851089:177552 -k1,14284:17992498,24851089:177552 -k1,14284:19909376,24851089:177552 -k1,14284:20746219,24851089:177551 -k1,14284:21942856,24851089:177552 -k1,14284:24833599,24851089:177552 -k1,14284:25627189,24851089:177552 -k1,14284:26823826,24851089:177552 -k1,14284:28278675,24851089:177552 -k1,14284:29217755,24851089:177552 -k1,14284:32583029,24851089:0 -) -(1,14285:6630773,25692577:25952256,513147,134348 -k1,14284:7898620,25692577:248762 -k1,14284:9939792,25692577:248762 -k1,14284:10847847,25692577:248763 -k1,14284:12990599,25692577:248762 -(1,14284:12990599,25692577:0,459977,122846 -r1,14284:16162559,25692577:3171960,582823,122846 -k1,14284:12990599,25692577:-3171960 -) -(1,14284:12990599,25692577:3171960,459977,122846 -k1,14284:12990599,25692577:3277 -h1,14284:16159282,25692577:0,411205,112570 -) -k1,14284:16584991,25692577:248762 -k1,14284:18214597,25692577:248762 -k1,14284:21447869,25692577:248762 -k1,14284:23742665,25692577:248762 -k1,14284:25761555,25692577:248763 -k1,14284:26476278,25692577:248762 -k1,14284:27744125,25692577:248762 -k1,14284:30722462,25692577:248762 -k1,14284:32583029,25692577:0 -) -(1,14285:6630773,26534065:25952256,505283,134348 -k1,14284:7472130,26534065:189929 -k1,14284:8409825,26534065:189929 -k1,14284:10177205,26534065:189928 -k1,14284:16003886,26534065:189929 -k1,14284:18048484,26534065:189929 -k1,14284:19047783,26534065:189929 -k1,14284:21248357,26534065:189929 -k1,14284:22054323,26534065:189928 -(1,14284:22054323,26534065:0,452978,115847 -r1,14284:23467724,26534065:1413401,568825,115847 -k1,14284:22054323,26534065:-1413401 -) -(1,14284:22054323,26534065:1413401,452978,115847 -k1,14284:22054323,26534065:3277 -h1,14284:23464447,26534065:0,411205,112570 -) -k1,14284:23831323,26534065:189929 -k1,14284:25071139,26534065:189929 -k1,14284:27539755,26534065:189929 -h1,14284:28908802,26534065:0,0,0 -k1,14284:29098730,26534065:189928 -k1,14284:30098029,26534065:189929 -k1,14284:31786111,26534065:189929 -h1,14284:32583029,26534065:0,0,0 -k1,14284:32583029,26534065:0 -) -(1,14285:6630773,27375553:25952256,513147,134348 -k1,14284:7770206,27375553:191782 -k1,14284:10253127,27375553:191782 -k1,14284:11641596,27375553:191782 -k1,14284:14494795,27375553:191782 -k1,14284:16555008,27375553:191782 -k1,14284:18737774,27375553:191782 -k1,14284:20259937,27375553:191782 -k1,14284:21103147,27375553:191782 -k1,14284:23669954,27375553:191782 -k1,14284:24880821,27375553:191782 -k1,14284:27959464,27375553:191782 -k1,14284:32583029,27375553:0 -) -(1,14285:6630773,28217041:25952256,513147,115847 -g1,14284:7481430,28217041 -g1,14284:8699744,28217041 -g1,14284:10691383,28217041 -g1,14284:11557768,28217041 -(1,14284:11557768,28217041:0,452978,115847 -r1,14284:13322881,28217041:1765113,568825,115847 -k1,14284:11557768,28217041:-1765113 -) -(1,14284:11557768,28217041:1765113,452978,115847 -k1,14284:11557768,28217041:3277 -h1,14284:13319604,28217041:0,411205,112570 -) -g1,14284:13522110,28217041 -g1,14284:15576008,28217041 -g1,14284:16584607,28217041 -g1,14284:17802921,28217041 -(1,14284:17802921,28217041:0,452978,115847 -r1,14284:19919746,28217041:2116825,568825,115847 -k1,14284:17802921,28217041:-2116825 -) -(1,14284:17802921,28217041:2116825,452978,115847 -k1,14284:17802921,28217041:3277 -h1,14284:19916469,28217041:0,411205,112570 -) -g1,14284:20118975,28217041 -g1,14284:20985360,28217041 -(1,14284:20985360,28217041:0,452978,115847 -r1,14284:22047049,28217041:1061689,568825,115847 -k1,14284:20985360,28217041:-1061689 -) -(1,14284:20985360,28217041:1061689,452978,115847 -k1,14284:20985360,28217041:3277 -h1,14284:22043772,28217041:0,411205,112570 -) -k1,14285:32583029,28217041:10362310 -g1,14285:32583029,28217041 -) -v1,14287:6630773,29169503:0,393216,0 -(1,14292:6630773,30157069:25952256,1380782,196608 -g1,14292:6630773,30157069 -g1,14292:6630773,30157069 -g1,14292:6434165,30157069 -(1,14292:6434165,30157069:0,1380782,196608 -r1,14292:32779637,30157069:26345472,1577390,196608 -k1,14292:6434165,30157069:-26345472 -) -(1,14292:6434165,30157069:26345472,1380782,196608 -[1,14292:6630773,30157069:25952256,1184174,0 -(1,14289:6630773,29383413:25952256,410518,107478 -(1,14288:6630773,29383413:0,0,0 -g1,14288:6630773,29383413 -g1,14288:6630773,29383413 -g1,14288:6303093,29383413 -(1,14288:6303093,29383413:0,0,0 -) -g1,14288:6630773,29383413 -) -k1,14289:6630773,29383413:0 -g1,14289:10424522,29383413 -g1,14289:14850563,29383413 -g1,14289:15482855,29383413 -g1,14289:20225041,29383413 -g1,14289:20857333,29383413 -g1,14289:21489625,29383413 -g1,14289:23070354,29383413 -g1,14289:24334937,29383413 -g1,14289:24967229,29383413 -g1,14289:27180249,29383413 -g1,14289:29077123,29383413 -h1,14289:29393269,29383413:0,0,0 -k1,14289:32583029,29383413:3189760 -g1,14289:32583029,29383413 -) -(1,14290:6630773,30049591:25952256,410518,107478 -h1,14290:6630773,30049591:0,0,0 -g1,14290:6946919,30049591 -g1,14290:7263065,30049591 -g1,14290:12953688,30049591 -g1,14290:13585980,30049591 -g1,14290:15799000,30049591 -g1,14290:17695874,30049591 -g1,14290:18328166,30049591 -h1,14290:19908894,30049591:0,0,0 -k1,14290:32583029,30049591:12674135 -g1,14290:32583029,30049591 -) -] -) -g1,14292:32583029,30157069 -g1,14292:6630773,30157069 -g1,14292:6630773,30157069 -g1,14292:32583029,30157069 -g1,14292:32583029,30157069 -) -h1,14292:6630773,30353677:0,0,0 -(1,14297:6630773,32731221:25952256,555811,12975 -(1,14297:6630773,32731221:2450326,521208,12975 -g1,14297:6630773,32731221 -g1,14297:9081099,32731221 -) -k1,14297:32583029,32731221:22040674 -g1,14297:32583029,32731221 -) -(1,14300:6630773,33965925:25952256,505283,115847 -k1,14299:8120782,33965925:447987 -k1,14299:9587855,33965925:447988 -(1,14299:9587855,33965925:0,452978,115847 -r1,14299:11001256,33965925:1413401,568825,115847 -k1,14299:9587855,33965925:-1413401 -) -(1,14299:9587855,33965925:1413401,452978,115847 -k1,14299:9587855,33965925:3277 -h1,14299:10997979,33965925:0,411205,112570 -) -k1,14299:11449243,33965925:447987 -k1,14299:14824067,33965925:447987 -k1,14299:17503556,33965925:447988 -k1,14299:19854053,33965925:447987 -k1,14299:21293601,33965925:447988 -k1,14299:24699228,33965925:447987 -k1,14299:26613911,33965925:447987 -k1,14299:29587657,33965925:447988 -k1,14299:31227089,33965925:447987 -k1,14300:32583029,33965925:0 -) -(1,14300:6630773,34807413:25952256,513147,126483 -k1,14299:9648289,34807413:416392 -k1,14299:11622471,34807413:416391 -k1,14299:12854131,34807413:416392 -k1,14299:14336794,34807413:416392 -k1,14299:16496444,34807413:416392 -k1,14299:18696070,34807413:416391 -k1,14299:20680083,34807413:416392 -k1,14299:22840388,34807413:416392 -k1,14299:25591172,34807413:416392 -k1,14299:29097586,34807413:416391 -k1,14299:31542973,34807413:416392 -k1,14300:32583029,34807413:0 -) -(1,14300:6630773,35648901:25952256,473825,122846 -k1,14299:9725929,35648901:389174 -(1,14299:9725929,35648901:0,452978,122846 -r1,14299:13953025,35648901:4227096,575824,122846 -k1,14299:9725929,35648901:-4227096 -) -(1,14299:9725929,35648901:4227096,452978,122846 -k1,14299:9725929,35648901:3277 -h1,14299:13949748,35648901:0,411205,112570 -) -k1,14299:14515868,35648901:389173 -(1,14299:14515868,35648901:0,452978,122846 -r1,14299:18391252,35648901:3875384,575824,122846 -k1,14299:14515868,35648901:-3875384 -) -(1,14299:14515868,35648901:3875384,452978,122846 -k1,14299:14515868,35648901:3277 -h1,14299:18387975,35648901:0,411205,112570 -) -k1,14299:18954096,35648901:389174 -(1,14299:18954096,35648901:0,452978,122846 -r1,14299:23181192,35648901:4227096,575824,122846 -k1,14299:18954096,35648901:-4227096 -) -(1,14299:18954096,35648901:4227096,452978,122846 -k1,14299:18954096,35648901:3277 -h1,14299:23177915,35648901:0,411205,112570 -) -k1,14299:23744035,35648901:389173 -(1,14299:23744035,35648901:0,452978,122846 -r1,14299:27971131,35648901:4227096,575824,122846 -k1,14299:23744035,35648901:-4227096 -) -(1,14299:23744035,35648901:4227096,452978,122846 -k1,14299:23744035,35648901:3277 -h1,14299:27967854,35648901:0,411205,112570 -) -k1,14299:28533975,35648901:389174 -(1,14299:28533975,35648901:0,452978,122846 -r1,14299:32409359,35648901:3875384,575824,122846 -k1,14299:28533975,35648901:-3875384 -) -(1,14299:28533975,35648901:3875384,452978,122846 -k1,14299:28533975,35648901:3277 -h1,14299:32406082,35648901:0,411205,112570 -) -k1,14300:32583029,35648901:0 -) -(1,14300:6630773,36490389:25952256,513147,126483 -(1,14299:6630773,36490389:0,452978,122846 -r1,14299:10857869,36490389:4227096,575824,122846 -k1,14299:6630773,36490389:-4227096 -) -(1,14299:6630773,36490389:4227096,452978,122846 -k1,14299:6630773,36490389:3277 -h1,14299:10854592,36490389:0,411205,112570 -) -k1,14299:11261236,36490389:403367 -k1,14299:13167999,36490389:403367 -(1,14299:13167999,36490389:0,452978,115847 -r1,14299:14581400,36490389:1413401,568825,115847 -k1,14299:13167999,36490389:-1413401 -) -(1,14299:13167999,36490389:1413401,452978,115847 -k1,14299:13167999,36490389:3277 -h1,14299:14578123,36490389:0,411205,112570 -) -k1,14299:14984767,36490389:403367 -k1,14299:16074296,36490389:403367 -k1,14299:19490353,36490389:403367 -k1,14299:20521555,36490389:403367 -k1,14299:21944007,36490389:403367 -k1,14299:23714455,36490389:403367 -k1,14299:24784978,36490389:403367 -(1,14299:24784978,36490389:0,452978,122846 -r1,14299:28308650,36490389:3523672,575824,122846 -k1,14299:24784978,36490389:-3523672 -) -(1,14299:24784978,36490389:3523672,452978,122846 -k1,14299:24784978,36490389:3277 -h1,14299:28305373,36490389:0,411205,112570 -) -k1,14299:28885687,36490389:403367 -(1,14299:28885687,36490389:0,452978,122846 -r1,14299:32409359,36490389:3523672,575824,122846 -k1,14299:28885687,36490389:-3523672 -) -(1,14299:28885687,36490389:3523672,452978,122846 -k1,14299:28885687,36490389:3277 -h1,14299:32406082,36490389:0,411205,112570 -) -k1,14300:32583029,36490389:0 -) -(1,14300:6630773,37331877:25952256,505283,134348 -(1,14299:6630773,37331877:0,452978,122846 -r1,14299:10506157,37331877:3875384,575824,122846 -k1,14299:6630773,37331877:-3875384 -) -(1,14299:6630773,37331877:3875384,452978,122846 -k1,14299:6630773,37331877:3277 -h1,14299:10502880,37331877:0,411205,112570 -) -k1,14299:10763115,37331877:256958 -k1,14299:12211518,37331877:256958 -k1,14299:13234592,37331877:256958 -k1,14299:15193520,37331877:256958 -k1,14299:18613901,37331877:256958 -k1,14299:21740024,37331877:256957 -k1,14299:24904814,37331877:256958 -k1,14299:25923300,37331877:256958 -k1,14299:27852737,37331877:256958 -(1,14299:27852737,37331877:0,452978,115847 -r1,14299:29266138,37331877:1413401,568825,115847 -k1,14299:27852737,37331877:-1413401 -) -(1,14299:27852737,37331877:1413401,452978,115847 -k1,14299:27852737,37331877:3277 -h1,14299:29262861,37331877:0,411205,112570 -) -k1,14299:29523096,37331877:256958 -k1,14299:30311551,37331877:256958 -k1,14299:32583029,37331877:0 -) -(1,14300:6630773,38173365:25952256,513147,126483 -k1,14299:7627255,38173365:234954 -k1,14299:9558935,38173365:234953 -k1,14299:11933640,38173365:234954 -k1,14299:13841072,38173365:234953 -k1,14299:14703861,38173365:234954 -k1,14299:16323590,38173365:234953 -k1,14299:18260514,38173365:234954 -k1,14299:21670031,38173365:234953 -k1,14299:24196779,38173365:234954 -k1,14299:25379383,38173365:234953 -k1,14299:27113145,38173365:234954 -k1,14299:28841664,38173365:234953 -k1,14299:29762780,38173365:234954 -(1,14299:29762780,38173365:0,452978,115847 -r1,14299:32583029,38173365:2820249,568825,115847 -k1,14299:29762780,38173365:-2820249 -) -(1,14299:29762780,38173365:2820249,452978,115847 -k1,14299:29762780,38173365:3277 -h1,14299:32579752,38173365:0,411205,112570 -) -k1,14299:32583029,38173365:0 -) -(1,14300:6630773,39014853:25952256,505283,126483 -g1,14299:8115818,39014853 -g1,14299:10078621,39014853 -g1,14299:10929278,39014853 -g1,14299:12825234,39014853 -k1,14300:32583028,39014853:17114072 -g1,14300:32583028,39014853 -) -(1,14303:6630773,39856341:25952256,513147,134348 -h1,14301:6630773,39856341:983040,0,0 -k1,14301:9554191,39856341:157143 -k1,14301:11446727,39856341:157143 -(1,14301:11446727,39856341:0,452978,115847 -r1,14301:12860128,39856341:1413401,568825,115847 -k1,14301:11446727,39856341:-1413401 -) -(1,14301:11446727,39856341:1413401,452978,115847 -k1,14301:11446727,39856341:3277 -h1,14301:12856851,39856341:0,411205,112570 -) -k1,14301:13017271,39856341:157143 -k1,14301:15250594,39856341:157142 -(1,14301:15250594,39856341:0,452978,115847 -r1,14301:17367419,39856341:2116825,568825,115847 -k1,14301:15250594,39856341:-2116825 -) -(1,14301:15250594,39856341:2116825,452978,115847 -k1,14301:15250594,39856341:3277 -h1,14301:17364142,39856341:0,411205,112570 -) -k1,14301:17524562,39856341:157143 -k1,14301:18873150,39856341:157143 -(1,14301:18873150,39856341:0,452978,115847 -r1,14301:20989975,39856341:2116825,568825,115847 -k1,14301:18873150,39856341:-2116825 -) -(1,14301:18873150,39856341:2116825,452978,115847 -k1,14301:18873150,39856341:3277 -h1,14301:20986698,39856341:0,411205,112570 -) -k1,14301:21147118,39856341:157143 -k1,14301:23083563,39856341:157143 -k1,14301:24259791,39856341:157143 -k1,14301:25517939,39856341:157143 -k1,14301:26357966,39856341:157142 -(1,14301:26357966,39856341:0,452978,122846 -r1,14301:28123079,39856341:1765113,575824,122846 -k1,14301:26357966,39856341:-1765113 -) -(1,14301:26357966,39856341:1765113,452978,122846 -k1,14301:26357966,39856341:3277 -h1,14301:28119802,39856341:0,411205,112570 -) -k1,14301:28453892,39856341:157143 -k1,14301:29238870,39856341:157143 -k1,14301:31298523,39856341:157143 -k1,14301:32583029,39856341:0 -) -(1,14303:6630773,40697829:25952256,505283,134348 -k1,14301:9434897,40697829:183995 -k1,14301:9974752,40697829:183995 -k1,14301:11259751,40697829:183994 -k1,14301:13871200,40697829:183995 -(1,14301:13871200,40697829:0,452978,122846 -r1,14301:18450008,40697829:4578808,575824,122846 -k1,14301:13871200,40697829:-4578808 -) -(1,14301:13871200,40697829:4578808,452978,122846 -g1,14301:15984748,40697829 -g1,14301:16688172,40697829 -h1,14301:18446731,40697829:0,411205,112570 -) -k1,14301:18634003,40697829:183995 -k1,14301:21503008,40697829:183995 -k1,14301:22706088,40697829:183995 -k1,14301:23991088,40697829:183995 -k1,14301:28798647,40697829:183994 -k1,14301:29634070,40697829:183995 -k1,14301:30837150,40697829:183995 -k1,14301:32583029,40697829:0 -) -(1,14303:6630773,41539317:25952256,0,0 -k1,14303:32583029,41539317:25952256 -g1,14303:32583029,41539317 -) -(1,14304:6630773,43630577:25952256,564462,12975 -(1,14304:6630773,43630577:2450326,534184,12975 -g1,14304:6630773,43630577 -g1,14304:9081099,43630577 -) -g1,14304:11275507,43630577 -g1,14304:12842735,43630577 -k1,14304:32583028,43630577:18787268 -g1,14304:32583028,43630577 -) -(1,14309:6630773,44865281:25952256,513147,126483 -k1,14308:8471445,44865281:224554 -k1,14308:9887445,44865281:224555 -k1,14308:10952826,44865281:224554 -k1,14308:13079890,44865281:224554 -k1,14308:14296005,44865281:224555 -k1,14308:16896239,44865281:224554 -k1,14308:18192963,44865281:224555 -k1,14308:19797705,44865281:224554 -k1,14308:21801561,44865281:224554 -k1,14308:24788459,44865281:224555 -k1,14308:27882179,44865281:224554 -k1,14308:28766025,44865281:224554 -k1,14308:30009665,44865281:224555 -k1,14308:31685186,44865281:224554 -k1,14308:32583029,44865281:0 -) -(1,14309:6630773,45706769:25952256,505283,126483 -k1,14308:8778219,45706769:282947 -k1,14308:11930332,45706769:282947 -k1,14308:12829316,45706769:282946 -k1,14308:13468123,45706769:282947 -k1,14308:15028367,45706769:282947 -k1,14308:16814710,45706769:282947 -k1,14308:18116741,45706769:282946 -(1,14308:18116741,45706769:0,452978,115847 -r1,14308:19881854,45706769:1765113,568825,115847 -k1,14308:18116741,45706769:-1765113 -) -(1,14308:18116741,45706769:1765113,452978,115847 -k1,14308:18116741,45706769:3277 -h1,14308:19878577,45706769:0,411205,112570 -) -k1,14308:20164801,45706769:282947 -k1,14308:23374585,45706769:282947 -k1,14308:24729701,45706769:282947 -k1,14308:26388249,45706769:282947 -k1,14308:29540361,45706769:282946 -k1,14308:31107814,45706769:282947 -k1,14308:32583029,45706769:0 -) -] -(1,14309:32583029,45706769:0,0,0 -g1,14309:32583029,45706769 -) -) -] -(1,14309:6630773,47279633:25952256,0,0 -h1,14309:6630773,47279633:25952256,0,0 -) -] -h1,14309:4262630,4025873:0,0,0 -] -!26247 -}275 -Input:2149:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2150:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2151:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2152:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2153:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2154:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2155:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2156:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2157:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2158:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 -{276 -[1,14389:4262630,47279633:28320399,43253760,0 -(1,14389:4262630,4025873:0,0,0 -[1,14389:-473657,4025873:25952256,0,0 -(1,14389:-473657,-710414:25952256,0,0 -h1,14389:-473657,-710414:0,0,0 -(1,14389:-473657,-710414:0,0,0 -(1,14389:-473657,-710414:0,0,0 -g1,14389:-473657,-710414 -(1,14389:-473657,-710414:65781,0,65781 -g1,14389:-407876,-710414 -[1,14389:-407876,-644633:0,0,0 +!24935 +}276 +Input:2146:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2147:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2148:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2149:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2150:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2151:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2152:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2153:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 +{277 +[1,14411:4262630,47279633:28320399,43253760,0 +(1,14411:4262630,4025873:0,0,0 +[1,14411:-473657,4025873:25952256,0,0 +(1,14411:-473657,-710414:25952256,0,0 +h1,14411:-473657,-710414:0,0,0 +(1,14411:-473657,-710414:0,0,0 +(1,14411:-473657,-710414:0,0,0 +g1,14411:-473657,-710414 +(1,14411:-473657,-710414:65781,0,65781 +g1,14411:-407876,-710414 +[1,14411:-407876,-644633:0,0,0 ] ) -k1,14389:-473657,-710414:-65781 +k1,14411:-473657,-710414:-65781 ) ) -k1,14389:25478599,-710414:25952256 -g1,14389:25478599,-710414 +k1,14411:25478599,-710414:25952256 +g1,14411:25478599,-710414 ) ] ) -[1,14389:6630773,47279633:25952256,43253760,0 -[1,14389:6630773,4812305:25952256,786432,0 -(1,14389:6630773,4812305:25952256,505283,11795 -(1,14389:6630773,4812305:25952256,505283,11795 -g1,14389:3078558,4812305 -[1,14389:3078558,4812305:0,0,0 -(1,14389:3078558,2439708:0,1703936,0 -k1,14389:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14389:2537886,2439708:1179648,16384,0 +[1,14411:6630773,47279633:25952256,43253760,0 +[1,14411:6630773,4812305:25952256,786432,0 +(1,14411:6630773,4812305:25952256,513147,134348 +(1,14411:6630773,4812305:25952256,513147,134348 +g1,14411:3078558,4812305 +[1,14411:3078558,4812305:0,0,0 +(1,14411:3078558,2439708:0,1703936,0 +k1,14411:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14411:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14389:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14411:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14389:3078558,4812305:0,0,0 -(1,14389:3078558,2439708:0,1703936,0 -g1,14389:29030814,2439708 -g1,14389:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14389:36151628,1915420:16384,1179648,0 +[1,14411:3078558,4812305:0,0,0 +(1,14411:3078558,2439708:0,1703936,0 +g1,14411:29030814,2439708 +g1,14411:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14411:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14389:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14411:37855564,2439708:1179648,16384,0 ) ) -k1,14389:3078556,2439708:-34777008 +k1,14411:3078556,2439708:-34777008 ) ] -[1,14389:3078558,4812305:0,0,0 -(1,14389:3078558,49800853:0,16384,2228224 -k1,14389:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14389:2537886,49800853:1179648,16384,0 +[1,14411:3078558,4812305:0,0,0 +(1,14411:3078558,49800853:0,16384,2228224 +k1,14411:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14411:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14389:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14411:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14389:3078558,4812305:0,0,0 -(1,14389:3078558,49800853:0,16384,2228224 -g1,14389:29030814,49800853 -g1,14389:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14389:36151628,51504789:16384,1179648,0 +[1,14411:3078558,4812305:0,0,0 +(1,14411:3078558,49800853:0,16384,2228224 +g1,14411:29030814,49800853 +g1,14411:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14411:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14389:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14411:37855564,49800853:1179648,16384,0 ) ) -k1,14389:3078556,49800853:-34777008 +k1,14411:3078556,49800853:-34777008 ) ] -g1,14389:6630773,4812305 -g1,14389:6630773,4812305 -g1,14389:8724648,4812305 -k1,14389:31387652,4812305:22663004 -) -) -] -[1,14389:6630773,45706769:25952256,40108032,0 -(1,14389:6630773,45706769:25952256,40108032,0 -(1,14389:6630773,45706769:0,0,0 -g1,14389:6630773,45706769 -) -[1,14389:6630773,45706769:25952256,40108032,0 -(1,14309:6630773,6254097:25952256,505283,134348 -k1,14308:7658678,6254097:257202 -k1,14308:9582461,6254097:257202 -k1,14308:11860138,6254097:257202 -k1,14308:13308785,6254097:257202 -k1,14308:13921847,6254097:257202 -k1,14308:17403420,6254097:257202 -k1,14308:19164019,6254097:257203 -k1,14308:20887917,6254097:257202 -(1,14308:20887917,6254097:0,452978,115847 -r1,14308:22653030,6254097:1765113,568825,115847 -k1,14308:20887917,6254097:-1765113 -) -(1,14308:20887917,6254097:1765113,452978,115847 -k1,14308:20887917,6254097:3277 -h1,14308:22649753,6254097:0,411205,112570 -) -k1,14308:22910232,6254097:257202 -k1,14308:24358879,6254097:257202 -(1,14308:24358879,6254097:0,459977,115847 -r1,14308:25772280,6254097:1413401,575824,115847 -k1,14308:24358879,6254097:-1413401 -) -(1,14308:24358879,6254097:1413401,459977,115847 -k1,14308:24358879,6254097:3277 -h1,14308:25769003,6254097:0,411205,112570 -) -k1,14308:26029482,6254097:257202 -k1,14308:29501880,6254097:257202 -k1,14308:31591469,6254097:257202 -k1,14308:32583029,6254097:0 -) -(1,14309:6630773,7095585:25952256,513147,126483 -k1,14308:9595458,7095585:261980 -k1,14308:10929607,7095585:261980 -k1,14308:14496568,7095585:261980 -k1,14308:16023393,7095585:261980 -k1,14308:16944665,7095585:261980 -k1,14308:19109156,7095585:261981 -k1,14308:22155105,7095585:261980 -k1,14308:23364736,7095585:261980 -k1,14308:25323443,7095585:261980 -k1,14308:26757862,7095585:261980 -k1,14308:30235038,7095585:261980 -k1,14308:31450567,7095585:261980 -k1,14308:32583029,7095585:0 -) -(1,14309:6630773,7937073:25952256,513147,134348 -k1,14308:9499484,7937073:199430 -k1,14308:10314951,7937073:199429 -k1,14308:12164578,7937073:199430 -k1,14308:14151174,7937073:199429 -k1,14308:15369689,7937073:199430 -(1,14308:15369689,7937073:0,452978,115847 -r1,14308:17134802,7937073:1765113,568825,115847 -k1,14308:15369689,7937073:-1765113 -) -(1,14308:15369689,7937073:1765113,452978,115847 -k1,14308:15369689,7937073:3277 -h1,14308:17131525,7937073:0,411205,112570 -) -k1,14308:17334231,7937073:199429 -k1,14308:20320907,7937073:199430 -k1,14308:21711781,7937073:199429 -k1,14308:23191129,7937073:199430 -k1,14308:24766159,7937073:199429 -k1,14308:26657729,7937073:199430 -k1,14308:29848877,7937073:199429 -k1,14308:30995958,7937073:199430 -(1,14308:30995958,7937073:0,459977,115847 -r1,14308:32409359,7937073:1413401,575824,115847 -k1,14308:30995958,7937073:-1413401 -) -(1,14308:30995958,7937073:1413401,459977,115847 -k1,14308:30995958,7937073:3277 -h1,14308:32406082,7937073:0,411205,112570 -) -k1,14308:32583029,7937073:0 -) -(1,14309:6630773,8778561:25952256,513147,134348 -g1,14308:7783551,8778561 -g1,14308:9288913,8778561 -g1,14308:12332405,8778561 -g1,14308:14019957,8778561 -g1,14308:14980714,8778561 -g1,14308:18232610,8778561 -g1,14308:19762220,8778561 -g1,14308:21907868,8778561 -g1,14308:23098657,8778561 -g1,14308:25679464,8778561 -g1,14308:27070138,8778561 -g1,14308:28782593,8778561 -g1,14308:29597860,8778561 -k1,14309:32583029,8778561:2396656 -g1,14309:32583029,8778561 -) -(1,14310:6630773,10406481:25952256,513147,11795 -(1,14310:6630773,10406481:2809528,485622,11795 -g1,14310:6630773,10406481 -g1,14310:9440301,10406481 -) -g1,14310:11435217,10406481 -g1,14310:15161594,10406481 -g1,14310:16007663,10406481 -k1,14310:32583029,10406481:16103507 -g1,14310:32583029,10406481 -) -(1,14313:6630773,11641185:25952256,513147,134348 -k1,14312:8969607,11641185:270518 -k1,14312:10344407,11641185:270518 -k1,14312:11362690,11641185:270517 -k1,14312:14465019,11641185:270518 -k1,14312:15351575,11641185:270518 -k1,14312:16036864,11641185:270446 -k1,14312:17373653,11641185:270518 -k1,14312:19019772,11641185:270518 -k1,14312:21848816,11641185:270518 -k1,14312:25094013,11641185:270518 -k1,14312:27560641,11641185:270517 -k1,14312:29225110,11641185:270518 -k1,14312:30514713,11641185:270518 -k1,14312:32583029,11641185:0 -) -(1,14313:6630773,12482673:25952256,513147,134348 -k1,14312:7517040,12482673:226975 -k1,14312:11064725,12482673:226976 -k1,14312:13673278,12482673:226975 -k1,14312:16020343,12482673:226975 -k1,14312:17319488,12482673:226976 -k1,14312:18832279,12482673:226975 -k1,14312:21473600,12482673:226975 -k1,14312:22386738,12482673:226976 -k1,14312:24809824,12482673:226975 -k1,14312:28348989,12482673:226975 -k1,14312:29595050,12482673:226976 -k1,14312:31145824,12482673:226947 -k1,14312:32583029,12482673:0 -) -(1,14313:6630773,13324161:25952256,505283,134348 -k1,14312:8569864,13324161:166997 -k1,14312:9928307,13324161:166998 -k1,14312:11670134,13324161:166997 -k1,14312:15764705,13324161:166998 -k1,14312:16617864,13324161:166997 -k1,14312:20751756,13324161:166998 -k1,14312:23734835,13324161:166997 -k1,14312:24918296,13324161:166998 -k1,14312:26519221,13324161:166997 -k1,14312:27483137,13324161:166998 -k1,14312:30847636,13324161:166997 -k1,14312:32583029,13324161:0 -) -(1,14313:6630773,14165649:25952256,513147,134348 -k1,14312:7423312,14165649:220410 -k1,14312:8215850,14165649:220409 -k1,14312:9008389,14165649:220410 -k1,14312:9800928,14165649:220410 -k1,14312:10593466,14165649:220409 -k1,14312:11386005,14165649:220410 -k1,14312:12178544,14165649:220410 -k1,14312:12971082,14165649:220409 -k1,14312:13763621,14165649:220410 -k1,14312:14645288,14165649:220409 -k1,14312:15438483,14165649:220410 -k1,14312:16288039,14165649:220410 -k1,14312:17185435,14165649:220409 -k1,14312:17950449,14165649:220410 -k1,14312:19362304,14165649:220410 -k1,14312:19941829,14165649:220388 -k1,14312:20848401,14165649:220410 -k1,14312:23660759,14165649:220409 -k1,14312:25374735,14165649:220410 -k1,14312:26281307,14165649:220410 -(1,14312:26281307,14165649:0,452978,115847 -r1,14312:29453267,14165649:3171960,568825,115847 -k1,14312:26281307,14165649:-3171960 -) -(1,14312:26281307,14165649:3171960,452978,115847 -k1,14312:26281307,14165649:3277 -h1,14312:29449990,14165649:0,411205,112570 -) -k1,14312:29673676,14165649:220409 -k1,14312:30841737,14165649:220410 -k1,14312:32583029,14165649:0 -) -(1,14313:6630773,15007137:25952256,513147,134348 -g1,14312:7512887,15007137 -(1,14312:7512887,15007137:0,452978,115847 -r1,14312:10684847,15007137:3171960,568825,115847 -k1,14312:7512887,15007137:-3171960 -) -(1,14312:7512887,15007137:3171960,452978,115847 -k1,14312:7512887,15007137:3277 -h1,14312:10681570,15007137:0,411205,112570 -) -g1,14312:10884076,15007137 -g1,14312:12030956,15007137 -g1,14312:14091407,15007137 -g1,14312:14973521,15007137 -(1,14312:14973521,15007137:0,452978,115847 -r1,14312:18145481,15007137:3171960,568825,115847 -k1,14312:14973521,15007137:-3171960 -) -(1,14312:14973521,15007137:3171960,452978,115847 -k1,14312:14973521,15007137:3277 -h1,14312:18142204,15007137:0,411205,112570 -) -g1,14312:18344710,15007137 -g1,14312:19491590,15007137 -g1,14312:20709904,15007137 -g1,14312:23779610,15007137 -g1,14312:26762808,15007137 -g1,14312:28433320,15007137 -k1,14313:32583029,15007137:2919598 -g1,14313:32583029,15007137 -) -(1,14316:6630773,15848625:25952256,513147,134348 -h1,14314:6630773,15848625:983040,0,0 -k1,14314:8994478,15848625:183978 -k1,14314:10171983,15848625:183979 -k1,14314:11015253,15848625:183978 -k1,14314:12815350,15848625:183979 -k1,14314:15067644,15848625:183978 -k1,14314:17389407,15848625:183979 -k1,14314:18224813,15848625:183978 -k1,14314:18823619,15848625:183963 -k1,14314:20111880,15848625:183979 -k1,14314:21043624,15848625:183978 -k1,14314:24019437,15848625:183979 -k1,14314:24951181,15848625:183978 -k1,14314:27164155,15848625:183979 -(1,14314:27164155,15848625:0,452978,115847 -r1,14314:29984404,15848625:2820249,568825,115847 -k1,14314:27164155,15848625:-2820249 -) -(1,14314:27164155,15848625:2820249,452978,115847 -k1,14314:27164155,15848625:3277 -h1,14314:29981127,15848625:0,411205,112570 -) -k1,14314:30168382,15848625:183978 -k1,14314:30965123,15848625:183979 -k1,14314:32168186,15848625:183978 -k1,14316:32583029,15848625:0 -) -(1,14316:6630773,16690113:25952256,513147,126483 -k1,14314:9417817,16690113:193129 -k1,14315:11411221,16690113:193130 -k1,14315:12623435,16690113:193129 -k1,14315:15302346,16690113:193130 -k1,14315:16154767,16690113:193129 -k1,14315:18294316,16690113:193130 -k1,14315:21445085,16690113:193129 -k1,14315:22506567,16690113:193130 -k1,14315:24036630,16690113:193129 -k1,14315:25778376,16690113:193130 -k1,14315:26622933,16690113:193129 -k1,14315:28896176,16690113:193130 -k1,14315:30728360,16690113:193129 -k1,14315:32583029,16690113:0 -) -(1,14316:6630773,17531601:25952256,505283,122846 -k1,14315:7664474,17531601:224331 -k1,14315:9397444,17531601:224331 -k1,14315:11863762,17531601:224331 -k1,14315:14877960,17531601:224330 -(1,14315:14877960,17531601:0,452978,115847 -r1,14315:17698209,17531601:2820249,568825,115847 -k1,14315:14877960,17531601:-2820249 -) -(1,14315:14877960,17531601:2820249,452978,115847 -k1,14315:14877960,17531601:3277 -h1,14315:17694932,17531601:0,411205,112570 -) -k1,14315:17922540,17531601:224331 -k1,14315:20487817,17531601:224331 -k1,14315:21068008,17531601:224331 -k1,14315:24267018,17531601:224331 -k1,14315:26642896,17531601:224331 -k1,14315:27820775,17531601:224330 -k1,14315:29149388,17531601:224331 -k1,14315:30466204,17531601:224331 -(1,14315:30466204,17531601:0,452978,122846 -r1,14315:32583029,17531601:2116825,575824,122846 -k1,14315:30466204,17531601:-2116825 -) -(1,14315:30466204,17531601:2116825,452978,122846 -k1,14315:30466204,17531601:3277 -h1,14315:32579752,17531601:0,411205,112570 -) -k1,14315:32583029,17531601:0 -) -(1,14316:6630773,18373089:25952256,513147,134348 -g1,14315:7481430,18373089 -g1,14315:8946815,18373089 -g1,14315:10165129,18373089 -g1,14315:12432674,18373089 -g1,14315:15993900,18373089 -g1,14315:16548989,18373089 -g1,14315:18442979,18373089 -g1,14315:21616887,18373089 -g1,14315:25001166,18373089 -g1,14315:25816433,18373089 -g1,14315:27218903,18373089 -g1,14315:30079549,18373089 -(1,14315:30079549,18373089:0,452978,115847 -r1,14315:32196374,18373089:2116825,568825,115847 -k1,14315:30079549,18373089:-2116825 -) -(1,14315:30079549,18373089:2116825,452978,115847 -k1,14315:30079549,18373089:3277 -h1,14315:32193097,18373089:0,411205,112570 -) -k1,14316:32583029,18373089:212985 -g1,14316:32583029,18373089 -) -v1,14318:6630773,19390206:0,393216,0 -(1,14341:6630773,29152048:25952256,10155058,196608 -g1,14341:6630773,29152048 -g1,14341:6630773,29152048 -g1,14341:6434165,29152048 -(1,14341:6434165,29152048:0,10155058,196608 -r1,14341:32779637,29152048:26345472,10351666,196608 -k1,14341:6434165,29152048:-26345472 -) -(1,14341:6434165,29152048:26345472,10155058,196608 -[1,14341:6630773,29152048:25952256,9958450,0 -(1,14320:6630773,19597824:25952256,404226,107478 -(1,14319:6630773,19597824:0,0,0 -g1,14319:6630773,19597824 -g1,14319:6630773,19597824 -g1,14319:6303093,19597824 -(1,14319:6303093,19597824:0,0,0 -) -g1,14319:6630773,19597824 -) -k1,14320:6630773,19597824:0 -k1,14320:6630773,19597824:0 -h1,14320:11689104,19597824:0,0,0 -k1,14320:32583028,19597824:20893924 -g1,14320:32583028,19597824 -) -(1,14324:6630773,20329538:25952256,404226,76021 -(1,14322:6630773,20329538:0,0,0 -g1,14322:6630773,20329538 -g1,14322:6630773,20329538 -g1,14322:6303093,20329538 -(1,14322:6303093,20329538:0,0,0 -) -g1,14322:6630773,20329538 -) -g1,14324:7579210,20329538 -g1,14324:8843793,20329538 -h1,14324:9792230,20329538:0,0,0 -k1,14324:32583030,20329538:22790800 -g1,14324:32583030,20329538 -) -(1,14326:6630773,21651076:25952256,404226,107478 -(1,14325:6630773,21651076:0,0,0 -g1,14325:6630773,21651076 -g1,14325:6630773,21651076 -g1,14325:6303093,21651076 -(1,14325:6303093,21651076:0,0,0 -) -g1,14325:6630773,21651076 -) -k1,14326:6630773,21651076:0 -g1,14326:13585979,21651076 -g1,14326:15482853,21651076 -g1,14326:16115145,21651076 -h1,14326:17695874,21651076:0,0,0 -k1,14326:32583029,21651076:14887155 -g1,14326:32583029,21651076 -) -(1,14340:6630773,22382790:25952256,404226,107478 -(1,14328:6630773,22382790:0,0,0 -g1,14328:6630773,22382790 -g1,14328:6630773,22382790 -g1,14328:6303093,22382790 -(1,14328:6303093,22382790:0,0,0 -) -g1,14328:6630773,22382790 -) -g1,14340:7579210,22382790 -g1,14340:7895356,22382790 -g1,14340:9159939,22382790 -g1,14340:12637542,22382790 -g1,14340:12953688,22382790 -g1,14340:13269834,22382790 -g1,14340:13585980,22382790 -g1,14340:13902126,22382790 -g1,14340:14218272,22382790 -g1,14340:14534418,22382790 -g1,14340:14850564,22382790 -g1,14340:18328167,22382790 -g1,14340:18644313,22382790 -g1,14340:18960459,22382790 -g1,14340:19276605,22382790 -g1,14340:19592751,22382790 -g1,14340:19908897,22382790 -g1,14340:20225043,22382790 -g1,14340:20541189,22382790 -g1,14340:25599520,22382790 -g1,14340:25915666,22382790 -g1,14340:26231812,22382790 -h1,14340:31290143,22382790:0,0,0 -k1,14340:32583029,22382790:1292886 -g1,14340:32583029,22382790 -) -(1,14340:6630773,23048968:25952256,404226,107478 -h1,14340:6630773,23048968:0,0,0 -g1,14340:7579210,23048968 -g1,14340:7895356,23048968 -g1,14340:9159939,23048968 -g1,14340:14534416,23048968 -g1,14340:14850562,23048968 -g1,14340:20225039,23048968 -g1,14340:20541185,23048968 -g1,14340:25915662,23048968 -g1,14340:26231808,23048968 -h1,14340:29393265,23048968:0,0,0 -k1,14340:32583029,23048968:3189764 -g1,14340:32583029,23048968 -) -(1,14340:6630773,23715146:25952256,404226,107478 -h1,14340:6630773,23715146:0,0,0 -g1,14340:7579210,23715146 -g1,14340:7895356,23715146 -g1,14340:9159939,23715146 -g1,14340:12953687,23715146 -g1,14340:13269833,23715146 -g1,14340:13585979,23715146 -g1,14340:13902125,23715146 -g1,14340:14218271,23715146 -g1,14340:14534417,23715146 -g1,14340:14850563,23715146 -g1,14340:18328166,23715146 -g1,14340:18644312,23715146 -g1,14340:18960458,23715146 -g1,14340:19276604,23715146 -g1,14340:19592750,23715146 -g1,14340:19908896,23715146 -g1,14340:20225042,23715146 -g1,14340:20541188,23715146 -g1,14340:24334936,23715146 -g1,14340:24651082,23715146 -g1,14340:24967228,23715146 -g1,14340:25283374,23715146 -g1,14340:25599520,23715146 -g1,14340:25915666,23715146 -g1,14340:26231812,23715146 -h1,14340:30341706,23715146:0,0,0 -k1,14340:32583029,23715146:2241323 -g1,14340:32583029,23715146 -) -(1,14340:6630773,24381324:25952256,404226,107478 -h1,14340:6630773,24381324:0,0,0 -g1,14340:7579210,24381324 -g1,14340:9159939,24381324 -g1,14340:14534416,24381324 -g1,14340:14850562,24381324 -g1,14340:20541185,24381324 -g1,14340:26231808,24381324 -h1,14340:31606285,24381324:0,0,0 -k1,14340:32583029,24381324:976744 -g1,14340:32583029,24381324 -) -(1,14340:6630773,25047502:25952256,404226,107478 -h1,14340:6630773,25047502:0,0,0 -g1,14340:7579210,25047502 -g1,14340:9159939,25047502 -g1,14340:14850562,25047502 -g1,14340:18960456,25047502 -g1,14340:19276602,25047502 -g1,14340:19592748,25047502 -g1,14340:19908894,25047502 -g1,14340:20225040,25047502 -g1,14340:20541186,25047502 -g1,14340:24967226,25047502 -g1,14340:25283372,25047502 -g1,14340:25599518,25047502 -g1,14340:25915664,25047502 -g1,14340:26231810,25047502 -h1,14340:30341704,25047502:0,0,0 -k1,14340:32583029,25047502:2241325 -g1,14340:32583029,25047502 -) -(1,14340:6630773,25713680:25952256,404226,107478 -h1,14340:6630773,25713680:0,0,0 -g1,14340:7579210,25713680 -g1,14340:9159939,25713680 -g1,14340:13585979,25713680 -g1,14340:13902125,25713680 -g1,14340:14218271,25713680 -g1,14340:14534417,25713680 -g1,14340:14850563,25713680 -g1,14340:19276603,25713680 -g1,14340:19592749,25713680 -g1,14340:19908895,25713680 -g1,14340:20225041,25713680 -g1,14340:20541187,25713680 -g1,14340:24651081,25713680 -g1,14340:24967227,25713680 -g1,14340:25283373,25713680 -g1,14340:25599519,25713680 -g1,14340:25915665,25713680 -g1,14340:26231811,25713680 -h1,14340:30341705,25713680:0,0,0 -k1,14340:32583029,25713680:2241324 -g1,14340:32583029,25713680 -) -(1,14340:6630773,26379858:25952256,404226,76021 -h1,14340:6630773,26379858:0,0,0 -g1,14340:7579210,26379858 -g1,14340:9159939,26379858 -g1,14340:13585979,26379858 -g1,14340:13902125,26379858 -g1,14340:14218271,26379858 -g1,14340:14534417,26379858 -g1,14340:14850563,26379858 -g1,14340:19276603,26379858 -g1,14340:19592749,26379858 -g1,14340:19908895,26379858 -g1,14340:20225041,26379858 -g1,14340:20541187,26379858 -g1,14340:24967227,26379858 -g1,14340:25283373,26379858 -g1,14340:25599519,26379858 -g1,14340:25915665,26379858 -g1,14340:26231811,26379858 -h1,14340:29077122,26379858:0,0,0 -k1,14340:32583029,26379858:3505907 -g1,14340:32583029,26379858 -) -(1,14340:6630773,27046036:25952256,404226,107478 -h1,14340:6630773,27046036:0,0,0 -g1,14340:7579210,27046036 -g1,14340:9159939,27046036 -g1,14340:13269833,27046036 -g1,14340:13585979,27046036 -g1,14340:13902125,27046036 -g1,14340:14218271,27046036 -g1,14340:14534417,27046036 -g1,14340:14850563,27046036 -g1,14340:19592749,27046036 -g1,14340:19908895,27046036 -g1,14340:20225041,27046036 -g1,14340:20541187,27046036 -g1,14340:25599518,27046036 -g1,14340:25915664,27046036 -g1,14340:26231810,27046036 -h1,14340:30973995,27046036:0,0,0 -k1,14340:32583029,27046036:1609034 -g1,14340:32583029,27046036 -) -(1,14340:6630773,27712214:25952256,404226,107478 -h1,14340:6630773,27712214:0,0,0 -g1,14340:7579210,27712214 -g1,14340:9159939,27712214 -g1,14340:14218270,27712214 -g1,14340:14534416,27712214 -g1,14340:14850562,27712214 -g1,14340:19908893,27712214 -g1,14340:20225039,27712214 -g1,14340:20541185,27712214 -g1,14340:25599516,27712214 -g1,14340:25915662,27712214 -g1,14340:26231808,27712214 -h1,14340:30973993,27712214:0,0,0 -k1,14340:32583029,27712214:1609036 -g1,14340:32583029,27712214 -) -(1,14340:6630773,28378392:25952256,404226,107478 -h1,14340:6630773,28378392:0,0,0 -g1,14340:7579210,28378392 -g1,14340:9159939,28378392 -g1,14340:14534416,28378392 -g1,14340:14850562,28378392 -g1,14340:20225039,28378392 -g1,14340:20541185,28378392 -g1,14340:25915662,28378392 -g1,14340:26231808,28378392 -h1,14340:31290139,28378392:0,0,0 -k1,14340:32583029,28378392:1292890 -g1,14340:32583029,28378392 -) -(1,14340:6630773,29044570:25952256,404226,107478 -h1,14340:6630773,29044570:0,0,0 -g1,14340:7579210,29044570 -g1,14340:9159939,29044570 -g1,14340:14218270,29044570 -g1,14340:14534416,29044570 -g1,14340:14850562,29044570 -g1,14340:19908893,29044570 -g1,14340:20225039,29044570 -g1,14340:20541185,29044570 -h1,14340:24334933,29044570:0,0,0 -k1,14340:32583029,29044570:8248096 -g1,14340:32583029,29044570 -) -] -) -g1,14341:32583029,29152048 -g1,14341:6630773,29152048 -g1,14341:6630773,29152048 -g1,14341:32583029,29152048 -g1,14341:32583029,29152048 -) -h1,14341:6630773,29348656:0,0,0 -(1,14345:6630773,30541084:25952256,513147,11795 -h1,14344:6630773,30541084:983040,0,0 -g1,14344:8642072,30541084 -g1,14344:11275308,30541084 -g1,14344:12493622,30541084 -g1,14344:14016678,30541084 -g1,14344:16226552,30541084 -g1,14344:17373432,30541084 -g1,14344:17928521,30541084 -g1,14344:19743868,30541084 -g1,14344:23025255,30541084 -g1,14344:24092836,30541084 -k1,14345:32583029,30541084:7224037 -g1,14345:32583029,30541084 -) -v1,14347:6630773,31558201:0,393216,0 -(1,14366:6630773,38557289:25952256,7392304,196608 -g1,14366:6630773,38557289 -g1,14366:6630773,38557289 -g1,14366:6434165,38557289 -(1,14366:6434165,38557289:0,7392304,196608 -r1,14366:32779637,38557289:26345472,7588912,196608 -k1,14366:6434165,38557289:-26345472 -) -(1,14366:6434165,38557289:26345472,7392304,196608 -[1,14366:6630773,38557289:25952256,7195696,0 -(1,14349:6630773,31765819:25952256,404226,107478 -(1,14348:6630773,31765819:0,0,0 -g1,14348:6630773,31765819 -g1,14348:6630773,31765819 -g1,14348:6303093,31765819 -(1,14348:6303093,31765819:0,0,0 -) -g1,14348:6630773,31765819 -) -k1,14349:6630773,31765819:0 -h1,14349:12005250,31765819:0,0,0 -k1,14349:32583030,31765819:20577780 -g1,14349:32583030,31765819 -) -(1,14356:6630773,32497533:25952256,404226,82312 -(1,14351:6630773,32497533:0,0,0 -g1,14351:6630773,32497533 -g1,14351:6630773,32497533 -g1,14351:6303093,32497533 -(1,14351:6303093,32497533:0,0,0 -) -g1,14351:6630773,32497533 -) -g1,14356:7579210,32497533 -g1,14356:7895356,32497533 -g1,14356:8211502,32497533 -g1,14356:8527648,32497533 -g1,14356:8843794,32497533 -g1,14356:9159940,32497533 -g1,14356:9476086,32497533 -k1,14356:9476086,32497533:0 -h1,14356:10740669,32497533:0,0,0 -k1,14356:32583029,32497533:21842360 -g1,14356:32583029,32497533 -) -(1,14356:6630773,33163711:25952256,404226,9436 -h1,14356:6630773,33163711:0,0,0 -g1,14356:7579210,33163711 -g1,14356:8843793,33163711 -g1,14356:9159939,33163711 -g1,14356:9476085,33163711 -g1,14356:9792231,33163711 -h1,14356:10740668,33163711:0,0,0 -k1,14356:32583028,33163711:21842360 -g1,14356:32583028,33163711 -) -(1,14356:6630773,33829889:25952256,388497,107478 -h1,14356:6630773,33829889:0,0,0 -g1,14356:7579210,33829889 -g1,14356:9476084,33829889 -g1,14356:9792230,33829889 -g1,14356:10108376,33829889 -h1,14356:10740667,33829889:0,0,0 -k1,14356:32583029,33829889:21842362 -g1,14356:32583029,33829889 -) -(1,14356:6630773,34496067:25952256,404226,9436 -h1,14356:6630773,34496067:0,0,0 -g1,14356:7579210,34496067 -g1,14356:9159939,34496067 -g1,14356:9476085,34496067 -g1,14356:9792231,34496067 -h1,14356:10740668,34496067:0,0,0 -k1,14356:32583028,34496067:21842360 -g1,14356:32583028,34496067 -) -(1,14358:6630773,35817605:25952256,404226,107478 -(1,14357:6630773,35817605:0,0,0 -g1,14357:6630773,35817605 -g1,14357:6630773,35817605 -g1,14357:6303093,35817605 -(1,14357:6303093,35817605:0,0,0 -) -g1,14357:6630773,35817605 -) -k1,14358:6630773,35817605:0 -h1,14358:12321396,35817605:0,0,0 -k1,14358:32583028,35817605:20261632 -g1,14358:32583028,35817605 -) -(1,14365:6630773,36549319:25952256,404226,82312 -(1,14360:6630773,36549319:0,0,0 -g1,14360:6630773,36549319 -g1,14360:6630773,36549319 -g1,14360:6303093,36549319 -(1,14360:6303093,36549319:0,0,0 -) -g1,14360:6630773,36549319 -) -g1,14365:7579210,36549319 -g1,14365:7895356,36549319 -g1,14365:8211502,36549319 -g1,14365:8527648,36549319 -g1,14365:8843794,36549319 -g1,14365:9159940,36549319 -g1,14365:9476086,36549319 -k1,14365:9476086,36549319:0 -h1,14365:10740669,36549319:0,0,0 -k1,14365:32583029,36549319:21842360 -g1,14365:32583029,36549319 -) -(1,14365:6630773,37215497:25952256,404226,9436 -h1,14365:6630773,37215497:0,0,0 -g1,14365:7579210,37215497 -g1,14365:8843793,37215497 -g1,14365:9159939,37215497 -g1,14365:9476085,37215497 -g1,14365:9792231,37215497 -h1,14365:10740668,37215497:0,0,0 -k1,14365:32583028,37215497:21842360 -g1,14365:32583028,37215497 -) -(1,14365:6630773,37881675:25952256,388497,107478 -h1,14365:6630773,37881675:0,0,0 -g1,14365:7579210,37881675 -g1,14365:9476084,37881675 -g1,14365:9792230,37881675 -g1,14365:10108376,37881675 -g1,14365:10424522,37881675 -h1,14365:10740668,37881675:0,0,0 -k1,14365:32583028,37881675:21842360 -g1,14365:32583028,37881675 -) -(1,14365:6630773,38547853:25952256,404226,9436 -h1,14365:6630773,38547853:0,0,0 -g1,14365:7579210,38547853 -g1,14365:9159939,38547853 -g1,14365:9476085,38547853 -g1,14365:9792231,38547853 -g1,14365:10108377,38547853 -g1,14365:10424523,38547853 -h1,14365:10740669,38547853:0,0,0 -k1,14365:32583029,38547853:21842360 -g1,14365:32583029,38547853 -) -] -) -g1,14366:32583029,38557289 -g1,14366:6630773,38557289 -g1,14366:6630773,38557289 -g1,14366:32583029,38557289 -g1,14366:32583029,38557289 -) -h1,14366:6630773,38753897:0,0,0 -(1,14370:6630773,39946325:25952256,513147,126483 -h1,14369:6630773,39946325:983040,0,0 -k1,14369:9559231,39946325:207403 -k1,14369:13179094,39946325:207403 -k1,14369:14002535,39946325:207403 -k1,14369:14624773,39946325:207395 -k1,14369:15936458,39946325:207403 -k1,14369:18515609,39946325:207403 -k1,14369:19078872,39946325:207403 -k1,14369:23512036,39946325:207403 -k1,14369:26809462,39946325:207403 -k1,14369:27778393,39946325:207403 -k1,14369:28756499,39946325:207403 -(1,14369:28756499,39946325:0,452978,115847 -r1,14369:30521612,39946325:1765113,568825,115847 -k1,14369:28756499,39946325:-1765113 -) -(1,14369:28756499,39946325:1765113,452978,115847 -k1,14369:28756499,39946325:3277 -h1,14369:30518335,39946325:0,411205,112570 -) -k1,14369:30729015,39946325:207403 -k1,14369:32583029,39946325:0 -) -(1,14370:6630773,40787813:25952256,513147,126483 -g1,14369:8715473,40787813 -g1,14369:9676230,40787813 -g1,14369:12141039,40787813 -g1,14369:12871765,40787813 -g1,14369:14137265,40787813 -k1,14370:32583029,40787813:15493367 -g1,14370:32583029,40787813 -) -v1,14372:6630773,41804930:0,393216,0 -(1,14383:6630773,45510161:25952256,4098447,196608 -g1,14383:6630773,45510161 -g1,14383:6630773,45510161 -g1,14383:6434165,45510161 -(1,14383:6434165,45510161:0,4098447,196608 -r1,14383:32779637,45510161:26345472,4295055,196608 -k1,14383:6434165,45510161:-26345472 -) -(1,14383:6434165,45510161:26345472,4098447,196608 -[1,14383:6630773,45510161:25952256,3901839,0 -(1,14374:6630773,42012548:25952256,404226,107478 -(1,14373:6630773,42012548:0,0,0 -g1,14373:6630773,42012548 -g1,14373:6630773,42012548 -g1,14373:6303093,42012548 -(1,14373:6303093,42012548:0,0,0 -) -g1,14373:6630773,42012548 -) -k1,14374:6630773,42012548:0 -g1,14374:12321396,42012548 -g1,14374:14218270,42012548 -g1,14374:14850562,42012548 -h1,14374:16431291,42012548:0,0,0 -k1,14374:32583029,42012548:16151738 -g1,14374:32583029,42012548 -) -(1,14382:6630773,42744262:25952256,404226,82312 -(1,14376:6630773,42744262:0,0,0 -g1,14376:6630773,42744262 -g1,14376:6630773,42744262 -g1,14376:6303093,42744262 -(1,14376:6303093,42744262:0,0,0 -) -g1,14376:6630773,42744262 -) -g1,14382:7579210,42744262 -g1,14382:7895356,42744262 -g1,14382:8211502,42744262 -g1,14382:8527648,42744262 -g1,14382:8843794,42744262 -g1,14382:9159940,42744262 -g1,14382:9476086,42744262 -k1,14382:9476086,42744262:0 -h1,14382:10740669,42744262:0,0,0 -k1,14382:32583029,42744262:21842360 -g1,14382:32583029,42744262 -) -(1,14382:6630773,43410440:25952256,404226,9436 -h1,14382:6630773,43410440:0,0,0 -g1,14382:7579210,43410440 -g1,14382:8843793,43410440 -g1,14382:9159939,43410440 -g1,14382:9476085,43410440 -g1,14382:9792231,43410440 -h1,14382:10740668,43410440:0,0,0 -k1,14382:32583028,43410440:21842360 -g1,14382:32583028,43410440 -) -(1,14382:6630773,44076618:25952256,388497,107478 -h1,14382:6630773,44076618:0,0,0 -g1,14382:7579210,44076618 -g1,14382:9476084,44076618 -g1,14382:9792230,44076618 -g1,14382:10108376,44076618 -h1,14382:10740667,44076618:0,0,0 -k1,14382:32583029,44076618:21842362 -g1,14382:32583029,44076618 -) -(1,14382:6630773,44742796:25952256,404226,9436 -h1,14382:6630773,44742796:0,0,0 -g1,14382:7579210,44742796 -g1,14382:9159939,44742796 -g1,14382:9476085,44742796 -g1,14382:9792231,44742796 -h1,14382:10740668,44742796:0,0,0 -k1,14382:32583028,44742796:21842360 -g1,14382:32583028,44742796 -) -(1,14382:6630773,45408974:25952256,404226,101187 -h1,14382:6630773,45408974:0,0,0 -g1,14382:7579210,45408974 -g1,14382:9476084,45408974 -g1,14382:9792230,45408974 -h1,14382:10740667,45408974:0,0,0 -k1,14382:32583029,45408974:21842362 -g1,14382:32583029,45408974 -) -] -) -g1,14383:32583029,45510161 -g1,14383:6630773,45510161 -g1,14383:6630773,45510161 -g1,14383:32583029,45510161 -g1,14383:32583029,45510161 -) -h1,14383:6630773,45706769:0,0,0 -] -(1,14389:32583029,45706769:0,0,0 -g1,14389:32583029,45706769 -) -) -] -(1,14389:6630773,47279633:25952256,0,0 -h1,14389:6630773,47279633:25952256,0,0 -) -] -h1,14389:4262630,4025873:0,0,0 -] -!29495 -}276 -Input:2159:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2160:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2161:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2162:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2163:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2164:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2165:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2166:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2167:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2168:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2169:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2170:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2171:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2172:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2173:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2174:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2175:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2176:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1560 -{277 -[1,14450:4262630,47279633:28320399,43253760,0 -(1,14450:4262630,4025873:0,0,0 -[1,14450:-473657,4025873:25952256,0,0 -(1,14450:-473657,-710414:25952256,0,0 -h1,14450:-473657,-710414:0,0,0 -(1,14450:-473657,-710414:0,0,0 -(1,14450:-473657,-710414:0,0,0 -g1,14450:-473657,-710414 -(1,14450:-473657,-710414:65781,0,65781 -g1,14450:-407876,-710414 -[1,14450:-407876,-644633:0,0,0 +g1,14411:6630773,4812305 +k1,14411:25712890,4812305:17886740 +g1,14411:29057847,4812305 +g1,14411:29873114,4812305 +) +) +] +[1,14411:6630773,45706769:25952256,40108032,0 +(1,14411:6630773,45706769:25952256,40108032,0 +(1,14411:6630773,45706769:0,0,0 +g1,14411:6630773,45706769 +) +[1,14411:6630773,45706769:25952256,40108032,0 +(1,14332:6630773,6254097:25952256,564462,12975 +(1,14332:6630773,6254097:2450326,534184,12975 +g1,14332:6630773,6254097 +g1,14332:9081099,6254097 +) +g1,14332:11275507,6254097 +g1,14332:12842735,6254097 +k1,14332:32583028,6254097:18787268 +g1,14332:32583028,6254097 +) +(1,14337:6630773,7488801:25952256,513147,126483 +k1,14336:8471445,7488801:224554 +k1,14336:9887445,7488801:224555 +k1,14336:10952826,7488801:224554 +k1,14336:13079890,7488801:224554 +k1,14336:14296005,7488801:224555 +k1,14336:16896239,7488801:224554 +k1,14336:18192963,7488801:224555 +k1,14336:19797705,7488801:224554 +k1,14336:21801561,7488801:224554 +k1,14336:24788459,7488801:224555 +k1,14336:27882179,7488801:224554 +k1,14336:28766025,7488801:224554 +k1,14336:30009665,7488801:224555 +k1,14336:31685186,7488801:224554 +k1,14336:32583029,7488801:0 +) +(1,14337:6630773,8330289:25952256,505283,126483 +k1,14336:8778219,8330289:282947 +k1,14336:11930332,8330289:282947 +k1,14336:12829316,8330289:282946 +k1,14336:13468123,8330289:282947 +k1,14336:15028367,8330289:282947 +k1,14336:16814710,8330289:282947 +k1,14336:18116741,8330289:282946 +(1,14336:18116741,8330289:0,452978,115847 +r1,14336:19881854,8330289:1765113,568825,115847 +k1,14336:18116741,8330289:-1765113 +) +(1,14336:18116741,8330289:1765113,452978,115847 +k1,14336:18116741,8330289:3277 +h1,14336:19878577,8330289:0,411205,112570 +) +k1,14336:20164801,8330289:282947 +k1,14336:23374585,8330289:282947 +k1,14336:24729701,8330289:282947 +k1,14336:26388249,8330289:282947 +k1,14336:29540361,8330289:282946 +k1,14336:31107814,8330289:282947 +k1,14336:32583029,8330289:0 +) +(1,14337:6630773,9171777:25952256,505283,134348 +k1,14336:7658678,9171777:257202 +k1,14336:9582461,9171777:257202 +k1,14336:11860138,9171777:257202 +k1,14336:13308785,9171777:257202 +k1,14336:13921847,9171777:257202 +k1,14336:17403420,9171777:257202 +k1,14336:19164019,9171777:257203 +k1,14336:20887917,9171777:257202 +(1,14336:20887917,9171777:0,452978,115847 +r1,14336:22653030,9171777:1765113,568825,115847 +k1,14336:20887917,9171777:-1765113 +) +(1,14336:20887917,9171777:1765113,452978,115847 +k1,14336:20887917,9171777:3277 +h1,14336:22649753,9171777:0,411205,112570 +) +k1,14336:22910232,9171777:257202 +k1,14336:24358879,9171777:257202 +(1,14336:24358879,9171777:0,459977,115847 +r1,14336:25772280,9171777:1413401,575824,115847 +k1,14336:24358879,9171777:-1413401 +) +(1,14336:24358879,9171777:1413401,459977,115847 +k1,14336:24358879,9171777:3277 +h1,14336:25769003,9171777:0,411205,112570 +) +k1,14336:26029482,9171777:257202 +k1,14336:29501880,9171777:257202 +k1,14336:31591469,9171777:257202 +k1,14336:32583029,9171777:0 +) +(1,14337:6630773,10013265:25952256,513147,126483 +k1,14336:9595458,10013265:261980 +k1,14336:10929607,10013265:261980 +k1,14336:14496568,10013265:261980 +k1,14336:16023393,10013265:261980 +k1,14336:16944665,10013265:261980 +k1,14336:19109156,10013265:261981 +k1,14336:22155105,10013265:261980 +k1,14336:23364736,10013265:261980 +k1,14336:25323443,10013265:261980 +k1,14336:26757862,10013265:261980 +k1,14336:30235038,10013265:261980 +k1,14336:31450567,10013265:261980 +k1,14336:32583029,10013265:0 +) +(1,14337:6630773,10854753:25952256,513147,134348 +k1,14336:9499484,10854753:199430 +k1,14336:10314951,10854753:199429 +k1,14336:12164578,10854753:199430 +k1,14336:14151174,10854753:199429 +k1,14336:15369689,10854753:199430 +(1,14336:15369689,10854753:0,452978,115847 +r1,14336:17134802,10854753:1765113,568825,115847 +k1,14336:15369689,10854753:-1765113 +) +(1,14336:15369689,10854753:1765113,452978,115847 +k1,14336:15369689,10854753:3277 +h1,14336:17131525,10854753:0,411205,112570 +) +k1,14336:17334231,10854753:199429 +k1,14336:20320907,10854753:199430 +k1,14336:21711781,10854753:199429 +k1,14336:23191129,10854753:199430 +k1,14336:24766159,10854753:199429 +k1,14336:26657729,10854753:199430 +k1,14336:29848877,10854753:199429 +k1,14336:30995958,10854753:199430 +(1,14336:30995958,10854753:0,459977,115847 +r1,14336:32409359,10854753:1413401,575824,115847 +k1,14336:30995958,10854753:-1413401 +) +(1,14336:30995958,10854753:1413401,459977,115847 +k1,14336:30995958,10854753:3277 +h1,14336:32406082,10854753:0,411205,112570 +) +k1,14336:32583029,10854753:0 +) +(1,14337:6630773,11696241:25952256,513147,134348 +g1,14336:7783551,11696241 +g1,14336:9288913,11696241 +g1,14336:12332405,11696241 +g1,14336:14019957,11696241 +g1,14336:14980714,11696241 +g1,14336:18232610,11696241 +g1,14336:19762220,11696241 +g1,14336:21907868,11696241 +g1,14336:23098657,11696241 +g1,14336:25679464,11696241 +g1,14336:27070138,11696241 +g1,14336:28782593,11696241 +g1,14336:29597860,11696241 +k1,14337:32583029,11696241:2396656 +g1,14337:32583029,11696241 +) +(1,14338:6630773,13324161:25952256,513147,11795 +(1,14338:6630773,13324161:2809528,485622,11795 +g1,14338:6630773,13324161 +g1,14338:9440301,13324161 +) +g1,14338:11435217,13324161 +g1,14338:15161594,13324161 +g1,14338:16007663,13324161 +k1,14338:32583029,13324161:16103507 +g1,14338:32583029,13324161 +) +(1,14341:6630773,14558865:25952256,513147,134348 +k1,14340:8969607,14558865:270518 +k1,14340:10344407,14558865:270518 +k1,14340:11362690,14558865:270517 +k1,14340:14465019,14558865:270518 +k1,14340:15351575,14558865:270518 +k1,14340:16036864,14558865:270446 +k1,14340:17373653,14558865:270518 +k1,14340:19019772,14558865:270518 +k1,14340:21848816,14558865:270518 +k1,14340:25094013,14558865:270518 +k1,14340:27560641,14558865:270517 +k1,14340:29225110,14558865:270518 +k1,14340:30514713,14558865:270518 +k1,14340:32583029,14558865:0 +) +(1,14341:6630773,15400353:25952256,513147,134348 +k1,14340:7517040,15400353:226975 +k1,14340:11064725,15400353:226976 +k1,14340:13673278,15400353:226975 +k1,14340:16020343,15400353:226975 +k1,14340:17319488,15400353:226976 +k1,14340:18832279,15400353:226975 +k1,14340:21473600,15400353:226975 +k1,14340:22386738,15400353:226976 +k1,14340:24809824,15400353:226975 +k1,14340:28348989,15400353:226975 +k1,14340:29595050,15400353:226976 +k1,14340:31145824,15400353:226947 +k1,14340:32583029,15400353:0 +) +(1,14341:6630773,16241841:25952256,505283,134348 +k1,14340:8569864,16241841:166997 +k1,14340:9928307,16241841:166998 +k1,14340:11670134,16241841:166997 +k1,14340:15764705,16241841:166998 +k1,14340:16617864,16241841:166997 +k1,14340:20751756,16241841:166998 +k1,14340:23734835,16241841:166997 +k1,14340:24918296,16241841:166998 +k1,14340:26519221,16241841:166997 +k1,14340:27483137,16241841:166998 +k1,14340:30847636,16241841:166997 +k1,14340:32583029,16241841:0 +) +(1,14341:6630773,17083329:25952256,513147,134348 +k1,14340:7423312,17083329:220410 +k1,14340:8215850,17083329:220409 +k1,14340:9008389,17083329:220410 +k1,14340:9800928,17083329:220410 +k1,14340:10593466,17083329:220409 +k1,14340:11386005,17083329:220410 +k1,14340:12178544,17083329:220410 +k1,14340:12971082,17083329:220409 +k1,14340:13763621,17083329:220410 +k1,14340:14645288,17083329:220409 +k1,14340:15438483,17083329:220410 +k1,14340:16288039,17083329:220410 +k1,14340:17185435,17083329:220409 +k1,14340:17950449,17083329:220410 +k1,14340:19362304,17083329:220410 +k1,14340:19941829,17083329:220388 +k1,14340:20848401,17083329:220410 +k1,14340:23660759,17083329:220409 +k1,14340:25374735,17083329:220410 +k1,14340:26281307,17083329:220410 +(1,14340:26281307,17083329:0,452978,115847 +r1,14340:29453267,17083329:3171960,568825,115847 +k1,14340:26281307,17083329:-3171960 +) +(1,14340:26281307,17083329:3171960,452978,115847 +k1,14340:26281307,17083329:3277 +h1,14340:29449990,17083329:0,411205,112570 +) +k1,14340:29673676,17083329:220409 +k1,14340:30841737,17083329:220410 +k1,14340:32583029,17083329:0 +) +(1,14341:6630773,17924817:25952256,513147,134348 +g1,14340:7512887,17924817 +(1,14340:7512887,17924817:0,452978,115847 +r1,14340:10684847,17924817:3171960,568825,115847 +k1,14340:7512887,17924817:-3171960 +) +(1,14340:7512887,17924817:3171960,452978,115847 +k1,14340:7512887,17924817:3277 +h1,14340:10681570,17924817:0,411205,112570 +) +g1,14340:10884076,17924817 +g1,14340:12030956,17924817 +g1,14340:14091407,17924817 +g1,14340:14973521,17924817 +(1,14340:14973521,17924817:0,452978,115847 +r1,14340:18145481,17924817:3171960,568825,115847 +k1,14340:14973521,17924817:-3171960 +) +(1,14340:14973521,17924817:3171960,452978,115847 +k1,14340:14973521,17924817:3277 +h1,14340:18142204,17924817:0,411205,112570 +) +g1,14340:18344710,17924817 +g1,14340:19491590,17924817 +g1,14340:20709904,17924817 +g1,14340:23779610,17924817 +g1,14340:26762808,17924817 +g1,14340:28433320,17924817 +k1,14341:32583029,17924817:2919598 +g1,14341:32583029,17924817 +) +(1,14344:6630773,18766305:25952256,513147,134348 +h1,14342:6630773,18766305:983040,0,0 +k1,14342:8994478,18766305:183978 +k1,14342:10171983,18766305:183979 +k1,14342:11015253,18766305:183978 +k1,14342:12815350,18766305:183979 +k1,14342:15067644,18766305:183978 +k1,14342:17389407,18766305:183979 +k1,14342:18224813,18766305:183978 +k1,14342:18823619,18766305:183963 +k1,14342:20111880,18766305:183979 +k1,14342:21043624,18766305:183978 +k1,14342:24019437,18766305:183979 +k1,14342:24951181,18766305:183978 +k1,14342:27164155,18766305:183979 +(1,14342:27164155,18766305:0,452978,115847 +r1,14342:29984404,18766305:2820249,568825,115847 +k1,14342:27164155,18766305:-2820249 +) +(1,14342:27164155,18766305:2820249,452978,115847 +k1,14342:27164155,18766305:3277 +h1,14342:29981127,18766305:0,411205,112570 +) +k1,14342:30168382,18766305:183978 +k1,14342:30965123,18766305:183979 +k1,14342:32168186,18766305:183978 +k1,14344:32583029,18766305:0 +) +(1,14344:6630773,19607793:25952256,513147,126483 +k1,14342:9417817,19607793:193129 +k1,14343:11411221,19607793:193130 +k1,14343:12623435,19607793:193129 +k1,14343:15302346,19607793:193130 +k1,14343:16154767,19607793:193129 +k1,14343:18294316,19607793:193130 +k1,14343:21445085,19607793:193129 +k1,14343:22506567,19607793:193130 +k1,14343:24036630,19607793:193129 +k1,14343:25778376,19607793:193130 +k1,14343:26622933,19607793:193129 +k1,14343:28896176,19607793:193130 +k1,14343:30728360,19607793:193129 +k1,14343:32583029,19607793:0 +) +(1,14344:6630773,20449281:25952256,505283,122846 +k1,14343:7664474,20449281:224331 +k1,14343:9397444,20449281:224331 +k1,14343:11863762,20449281:224331 +k1,14343:14877960,20449281:224330 +(1,14343:14877960,20449281:0,452978,115847 +r1,14343:17698209,20449281:2820249,568825,115847 +k1,14343:14877960,20449281:-2820249 +) +(1,14343:14877960,20449281:2820249,452978,115847 +k1,14343:14877960,20449281:3277 +h1,14343:17694932,20449281:0,411205,112570 +) +k1,14343:17922540,20449281:224331 +k1,14343:20487817,20449281:224331 +k1,14343:21068008,20449281:224331 +k1,14343:24267018,20449281:224331 +k1,14343:26642896,20449281:224331 +k1,14343:27820775,20449281:224330 +k1,14343:29149388,20449281:224331 +k1,14343:30466204,20449281:224331 +(1,14343:30466204,20449281:0,452978,122846 +r1,14343:32583029,20449281:2116825,575824,122846 +k1,14343:30466204,20449281:-2116825 +) +(1,14343:30466204,20449281:2116825,452978,122846 +k1,14343:30466204,20449281:3277 +h1,14343:32579752,20449281:0,411205,112570 +) +k1,14343:32583029,20449281:0 +) +(1,14344:6630773,21290769:25952256,513147,134348 +g1,14343:7481430,21290769 +g1,14343:8946815,21290769 +g1,14343:10165129,21290769 +g1,14343:12432674,21290769 +g1,14343:15993900,21290769 +g1,14343:16548989,21290769 +g1,14343:18442979,21290769 +g1,14343:21616887,21290769 +g1,14343:25001166,21290769 +g1,14343:25816433,21290769 +g1,14343:27218903,21290769 +g1,14343:30079549,21290769 +(1,14343:30079549,21290769:0,452978,115847 +r1,14343:32196374,21290769:2116825,568825,115847 +k1,14343:30079549,21290769:-2116825 +) +(1,14343:30079549,21290769:2116825,452978,115847 +k1,14343:30079549,21290769:3277 +h1,14343:32193097,21290769:0,411205,112570 +) +k1,14344:32583029,21290769:212985 +g1,14344:32583029,21290769 +) +v1,14346:6630773,22481235:0,393216,0 +(1,14369:6630773,32243077:25952256,10155058,196608 +g1,14369:6630773,32243077 +g1,14369:6630773,32243077 +g1,14369:6434165,32243077 +(1,14369:6434165,32243077:0,10155058,196608 +r1,14369:32779637,32243077:26345472,10351666,196608 +k1,14369:6434165,32243077:-26345472 +) +(1,14369:6434165,32243077:26345472,10155058,196608 +[1,14369:6630773,32243077:25952256,9958450,0 +(1,14348:6630773,22688853:25952256,404226,107478 +(1,14347:6630773,22688853:0,0,0 +g1,14347:6630773,22688853 +g1,14347:6630773,22688853 +g1,14347:6303093,22688853 +(1,14347:6303093,22688853:0,0,0 +) +g1,14347:6630773,22688853 +) +k1,14348:6630773,22688853:0 +k1,14348:6630773,22688853:0 +h1,14348:11689104,22688853:0,0,0 +k1,14348:32583028,22688853:20893924 +g1,14348:32583028,22688853 +) +(1,14352:6630773,23420567:25952256,404226,76021 +(1,14350:6630773,23420567:0,0,0 +g1,14350:6630773,23420567 +g1,14350:6630773,23420567 +g1,14350:6303093,23420567 +(1,14350:6303093,23420567:0,0,0 +) +g1,14350:6630773,23420567 +) +g1,14352:7579210,23420567 +g1,14352:8843793,23420567 +h1,14352:9792230,23420567:0,0,0 +k1,14352:32583030,23420567:22790800 +g1,14352:32583030,23420567 +) +(1,14354:6630773,24742105:25952256,404226,107478 +(1,14353:6630773,24742105:0,0,0 +g1,14353:6630773,24742105 +g1,14353:6630773,24742105 +g1,14353:6303093,24742105 +(1,14353:6303093,24742105:0,0,0 +) +g1,14353:6630773,24742105 +) +k1,14354:6630773,24742105:0 +g1,14354:13585979,24742105 +g1,14354:15482853,24742105 +g1,14354:16115145,24742105 +h1,14354:17695874,24742105:0,0,0 +k1,14354:32583029,24742105:14887155 +g1,14354:32583029,24742105 +) +(1,14368:6630773,25473819:25952256,404226,107478 +(1,14356:6630773,25473819:0,0,0 +g1,14356:6630773,25473819 +g1,14356:6630773,25473819 +g1,14356:6303093,25473819 +(1,14356:6303093,25473819:0,0,0 +) +g1,14356:6630773,25473819 +) +g1,14368:7579210,25473819 +g1,14368:7895356,25473819 +g1,14368:9159939,25473819 +g1,14368:12637542,25473819 +g1,14368:12953688,25473819 +g1,14368:13269834,25473819 +g1,14368:13585980,25473819 +g1,14368:13902126,25473819 +g1,14368:14218272,25473819 +g1,14368:14534418,25473819 +g1,14368:14850564,25473819 +g1,14368:18328167,25473819 +g1,14368:18644313,25473819 +g1,14368:18960459,25473819 +g1,14368:19276605,25473819 +g1,14368:19592751,25473819 +g1,14368:19908897,25473819 +g1,14368:20225043,25473819 +g1,14368:20541189,25473819 +g1,14368:25599520,25473819 +g1,14368:25915666,25473819 +g1,14368:26231812,25473819 +h1,14368:31290143,25473819:0,0,0 +k1,14368:32583029,25473819:1292886 +g1,14368:32583029,25473819 +) +(1,14368:6630773,26139997:25952256,404226,107478 +h1,14368:6630773,26139997:0,0,0 +g1,14368:7579210,26139997 +g1,14368:7895356,26139997 +g1,14368:9159939,26139997 +g1,14368:14534416,26139997 +g1,14368:14850562,26139997 +g1,14368:20225039,26139997 +g1,14368:20541185,26139997 +g1,14368:25915662,26139997 +g1,14368:26231808,26139997 +h1,14368:29393265,26139997:0,0,0 +k1,14368:32583029,26139997:3189764 +g1,14368:32583029,26139997 +) +(1,14368:6630773,26806175:25952256,404226,107478 +h1,14368:6630773,26806175:0,0,0 +g1,14368:7579210,26806175 +g1,14368:7895356,26806175 +g1,14368:9159939,26806175 +g1,14368:12953687,26806175 +g1,14368:13269833,26806175 +g1,14368:13585979,26806175 +g1,14368:13902125,26806175 +g1,14368:14218271,26806175 +g1,14368:14534417,26806175 +g1,14368:14850563,26806175 +g1,14368:18328166,26806175 +g1,14368:18644312,26806175 +g1,14368:18960458,26806175 +g1,14368:19276604,26806175 +g1,14368:19592750,26806175 +g1,14368:19908896,26806175 +g1,14368:20225042,26806175 +g1,14368:20541188,26806175 +g1,14368:24334936,26806175 +g1,14368:24651082,26806175 +g1,14368:24967228,26806175 +g1,14368:25283374,26806175 +g1,14368:25599520,26806175 +g1,14368:25915666,26806175 +g1,14368:26231812,26806175 +h1,14368:30341706,26806175:0,0,0 +k1,14368:32583029,26806175:2241323 +g1,14368:32583029,26806175 +) +(1,14368:6630773,27472353:25952256,404226,107478 +h1,14368:6630773,27472353:0,0,0 +g1,14368:7579210,27472353 +g1,14368:9159939,27472353 +g1,14368:14534416,27472353 +g1,14368:14850562,27472353 +g1,14368:20541185,27472353 +g1,14368:26231808,27472353 +h1,14368:31606285,27472353:0,0,0 +k1,14368:32583029,27472353:976744 +g1,14368:32583029,27472353 +) +(1,14368:6630773,28138531:25952256,404226,107478 +h1,14368:6630773,28138531:0,0,0 +g1,14368:7579210,28138531 +g1,14368:9159939,28138531 +g1,14368:14850562,28138531 +g1,14368:18960456,28138531 +g1,14368:19276602,28138531 +g1,14368:19592748,28138531 +g1,14368:19908894,28138531 +g1,14368:20225040,28138531 +g1,14368:20541186,28138531 +g1,14368:24967226,28138531 +g1,14368:25283372,28138531 +g1,14368:25599518,28138531 +g1,14368:25915664,28138531 +g1,14368:26231810,28138531 +h1,14368:30341704,28138531:0,0,0 +k1,14368:32583029,28138531:2241325 +g1,14368:32583029,28138531 +) +(1,14368:6630773,28804709:25952256,404226,107478 +h1,14368:6630773,28804709:0,0,0 +g1,14368:7579210,28804709 +g1,14368:9159939,28804709 +g1,14368:13585979,28804709 +g1,14368:13902125,28804709 +g1,14368:14218271,28804709 +g1,14368:14534417,28804709 +g1,14368:14850563,28804709 +g1,14368:19276603,28804709 +g1,14368:19592749,28804709 +g1,14368:19908895,28804709 +g1,14368:20225041,28804709 +g1,14368:20541187,28804709 +g1,14368:24651081,28804709 +g1,14368:24967227,28804709 +g1,14368:25283373,28804709 +g1,14368:25599519,28804709 +g1,14368:25915665,28804709 +g1,14368:26231811,28804709 +h1,14368:30341705,28804709:0,0,0 +k1,14368:32583029,28804709:2241324 +g1,14368:32583029,28804709 +) +(1,14368:6630773,29470887:25952256,404226,76021 +h1,14368:6630773,29470887:0,0,0 +g1,14368:7579210,29470887 +g1,14368:9159939,29470887 +g1,14368:13585979,29470887 +g1,14368:13902125,29470887 +g1,14368:14218271,29470887 +g1,14368:14534417,29470887 +g1,14368:14850563,29470887 +g1,14368:19276603,29470887 +g1,14368:19592749,29470887 +g1,14368:19908895,29470887 +g1,14368:20225041,29470887 +g1,14368:20541187,29470887 +g1,14368:24967227,29470887 +g1,14368:25283373,29470887 +g1,14368:25599519,29470887 +g1,14368:25915665,29470887 +g1,14368:26231811,29470887 +h1,14368:29077122,29470887:0,0,0 +k1,14368:32583029,29470887:3505907 +g1,14368:32583029,29470887 +) +(1,14368:6630773,30137065:25952256,404226,107478 +h1,14368:6630773,30137065:0,0,0 +g1,14368:7579210,30137065 +g1,14368:9159939,30137065 +g1,14368:13269833,30137065 +g1,14368:13585979,30137065 +g1,14368:13902125,30137065 +g1,14368:14218271,30137065 +g1,14368:14534417,30137065 +g1,14368:14850563,30137065 +g1,14368:19592749,30137065 +g1,14368:19908895,30137065 +g1,14368:20225041,30137065 +g1,14368:20541187,30137065 +g1,14368:25599518,30137065 +g1,14368:25915664,30137065 +g1,14368:26231810,30137065 +h1,14368:30973995,30137065:0,0,0 +k1,14368:32583029,30137065:1609034 +g1,14368:32583029,30137065 +) +(1,14368:6630773,30803243:25952256,404226,107478 +h1,14368:6630773,30803243:0,0,0 +g1,14368:7579210,30803243 +g1,14368:9159939,30803243 +g1,14368:14218270,30803243 +g1,14368:14534416,30803243 +g1,14368:14850562,30803243 +g1,14368:19908893,30803243 +g1,14368:20225039,30803243 +g1,14368:20541185,30803243 +g1,14368:25599516,30803243 +g1,14368:25915662,30803243 +g1,14368:26231808,30803243 +h1,14368:30973993,30803243:0,0,0 +k1,14368:32583029,30803243:1609036 +g1,14368:32583029,30803243 +) +(1,14368:6630773,31469421:25952256,404226,107478 +h1,14368:6630773,31469421:0,0,0 +g1,14368:7579210,31469421 +g1,14368:9159939,31469421 +g1,14368:14534416,31469421 +g1,14368:14850562,31469421 +g1,14368:20225039,31469421 +g1,14368:20541185,31469421 +g1,14368:25915662,31469421 +g1,14368:26231808,31469421 +h1,14368:31290139,31469421:0,0,0 +k1,14368:32583029,31469421:1292890 +g1,14368:32583029,31469421 +) +(1,14368:6630773,32135599:25952256,404226,107478 +h1,14368:6630773,32135599:0,0,0 +g1,14368:7579210,32135599 +g1,14368:9159939,32135599 +g1,14368:14218270,32135599 +g1,14368:14534416,32135599 +g1,14368:14850562,32135599 +g1,14368:19908893,32135599 +g1,14368:20225039,32135599 +g1,14368:20541185,32135599 +h1,14368:24334933,32135599:0,0,0 +k1,14368:32583029,32135599:8248096 +g1,14368:32583029,32135599 +) +] +) +g1,14369:32583029,32243077 +g1,14369:6630773,32243077 +g1,14369:6630773,32243077 +g1,14369:32583029,32243077 +g1,14369:32583029,32243077 +) +h1,14369:6630773,32439685:0,0,0 +(1,14373:6630773,33805461:25952256,513147,11795 +h1,14372:6630773,33805461:983040,0,0 +g1,14372:8642072,33805461 +g1,14372:11275308,33805461 +g1,14372:12493622,33805461 +g1,14372:14016678,33805461 +g1,14372:16226552,33805461 +g1,14372:17373432,33805461 +g1,14372:17928521,33805461 +g1,14372:19743868,33805461 +g1,14372:23025255,33805461 +g1,14372:24092836,33805461 +k1,14373:32583029,33805461:7224037 +g1,14373:32583029,33805461 +) +v1,14375:6630773,34995927:0,393216,0 +(1,14394:6630773,41995015:25952256,7392304,196608 +g1,14394:6630773,41995015 +g1,14394:6630773,41995015 +g1,14394:6434165,41995015 +(1,14394:6434165,41995015:0,7392304,196608 +r1,14394:32779637,41995015:26345472,7588912,196608 +k1,14394:6434165,41995015:-26345472 +) +(1,14394:6434165,41995015:26345472,7392304,196608 +[1,14394:6630773,41995015:25952256,7195696,0 +(1,14377:6630773,35203545:25952256,404226,107478 +(1,14376:6630773,35203545:0,0,0 +g1,14376:6630773,35203545 +g1,14376:6630773,35203545 +g1,14376:6303093,35203545 +(1,14376:6303093,35203545:0,0,0 +) +g1,14376:6630773,35203545 +) +k1,14377:6630773,35203545:0 +h1,14377:12005250,35203545:0,0,0 +k1,14377:32583030,35203545:20577780 +g1,14377:32583030,35203545 +) +(1,14384:6630773,35935259:25952256,404226,82312 +(1,14379:6630773,35935259:0,0,0 +g1,14379:6630773,35935259 +g1,14379:6630773,35935259 +g1,14379:6303093,35935259 +(1,14379:6303093,35935259:0,0,0 +) +g1,14379:6630773,35935259 +) +g1,14384:7579210,35935259 +g1,14384:7895356,35935259 +g1,14384:8211502,35935259 +g1,14384:8527648,35935259 +g1,14384:8843794,35935259 +g1,14384:9159940,35935259 +g1,14384:9476086,35935259 +k1,14384:9476086,35935259:0 +h1,14384:10740669,35935259:0,0,0 +k1,14384:32583029,35935259:21842360 +g1,14384:32583029,35935259 +) +(1,14384:6630773,36601437:25952256,404226,9436 +h1,14384:6630773,36601437:0,0,0 +g1,14384:7579210,36601437 +g1,14384:8843793,36601437 +g1,14384:9159939,36601437 +g1,14384:9476085,36601437 +g1,14384:9792231,36601437 +h1,14384:10740668,36601437:0,0,0 +k1,14384:32583028,36601437:21842360 +g1,14384:32583028,36601437 +) +(1,14384:6630773,37267615:25952256,388497,107478 +h1,14384:6630773,37267615:0,0,0 +g1,14384:7579210,37267615 +g1,14384:9476084,37267615 +g1,14384:9792230,37267615 +g1,14384:10108376,37267615 +h1,14384:10740667,37267615:0,0,0 +k1,14384:32583029,37267615:21842362 +g1,14384:32583029,37267615 +) +(1,14384:6630773,37933793:25952256,404226,9436 +h1,14384:6630773,37933793:0,0,0 +g1,14384:7579210,37933793 +g1,14384:9159939,37933793 +g1,14384:9476085,37933793 +g1,14384:9792231,37933793 +h1,14384:10740668,37933793:0,0,0 +k1,14384:32583028,37933793:21842360 +g1,14384:32583028,37933793 +) +(1,14386:6630773,39255331:25952256,404226,107478 +(1,14385:6630773,39255331:0,0,0 +g1,14385:6630773,39255331 +g1,14385:6630773,39255331 +g1,14385:6303093,39255331 +(1,14385:6303093,39255331:0,0,0 +) +g1,14385:6630773,39255331 +) +k1,14386:6630773,39255331:0 +h1,14386:12321396,39255331:0,0,0 +k1,14386:32583028,39255331:20261632 +g1,14386:32583028,39255331 +) +(1,14393:6630773,39987045:25952256,404226,82312 +(1,14388:6630773,39987045:0,0,0 +g1,14388:6630773,39987045 +g1,14388:6630773,39987045 +g1,14388:6303093,39987045 +(1,14388:6303093,39987045:0,0,0 +) +g1,14388:6630773,39987045 +) +g1,14393:7579210,39987045 +g1,14393:7895356,39987045 +g1,14393:8211502,39987045 +g1,14393:8527648,39987045 +g1,14393:8843794,39987045 +g1,14393:9159940,39987045 +g1,14393:9476086,39987045 +k1,14393:9476086,39987045:0 +h1,14393:10740669,39987045:0,0,0 +k1,14393:32583029,39987045:21842360 +g1,14393:32583029,39987045 +) +(1,14393:6630773,40653223:25952256,404226,9436 +h1,14393:6630773,40653223:0,0,0 +g1,14393:7579210,40653223 +g1,14393:8843793,40653223 +g1,14393:9159939,40653223 +g1,14393:9476085,40653223 +g1,14393:9792231,40653223 +h1,14393:10740668,40653223:0,0,0 +k1,14393:32583028,40653223:21842360 +g1,14393:32583028,40653223 +) +(1,14393:6630773,41319401:25952256,388497,107478 +h1,14393:6630773,41319401:0,0,0 +g1,14393:7579210,41319401 +g1,14393:9476084,41319401 +g1,14393:9792230,41319401 +g1,14393:10108376,41319401 +g1,14393:10424522,41319401 +h1,14393:10740668,41319401:0,0,0 +k1,14393:32583028,41319401:21842360 +g1,14393:32583028,41319401 +) +(1,14393:6630773,41985579:25952256,404226,9436 +h1,14393:6630773,41985579:0,0,0 +g1,14393:7579210,41985579 +g1,14393:9159939,41985579 +g1,14393:9476085,41985579 +g1,14393:9792231,41985579 +g1,14393:10108377,41985579 +g1,14393:10424523,41985579 +h1,14393:10740669,41985579:0,0,0 +k1,14393:32583029,41985579:21842360 +g1,14393:32583029,41985579 +) +] +) +g1,14394:32583029,41995015 +g1,14394:6630773,41995015 +g1,14394:6630773,41995015 +g1,14394:32583029,41995015 +g1,14394:32583029,41995015 +) +h1,14394:6630773,42191623:0,0,0 +(1,14398:6630773,43557399:25952256,513147,126483 +h1,14397:6630773,43557399:983040,0,0 +k1,14397:9559231,43557399:207403 +k1,14397:13179094,43557399:207403 +k1,14397:14002535,43557399:207403 +k1,14397:14624773,43557399:207395 +k1,14397:15936458,43557399:207403 +k1,14397:18515609,43557399:207403 +k1,14397:19078872,43557399:207403 +k1,14397:23512036,43557399:207403 +k1,14397:26809462,43557399:207403 +k1,14397:27778393,43557399:207403 +k1,14397:28756499,43557399:207403 +(1,14397:28756499,43557399:0,452978,115847 +r1,14397:30521612,43557399:1765113,568825,115847 +k1,14397:28756499,43557399:-1765113 +) +(1,14397:28756499,43557399:1765113,452978,115847 +k1,14397:28756499,43557399:3277 +h1,14397:30518335,43557399:0,411205,112570 +) +k1,14397:30729015,43557399:207403 +k1,14397:32583029,43557399:0 +) +(1,14398:6630773,44398887:25952256,513147,126483 +g1,14397:8715473,44398887 +g1,14397:9676230,44398887 +g1,14397:12141039,44398887 +g1,14397:12871765,44398887 +g1,14397:14137265,44398887 +k1,14398:32583029,44398887:15493367 +g1,14398:32583029,44398887 +) +v1,14400:6630773,45589353:0,393216,0 +] +(1,14411:32583029,45706769:0,0,0 +g1,14411:32583029,45706769 +) +) +] +(1,14411:6630773,47279633:25952256,0,0 +h1,14411:6630773,47279633:25952256,0,0 +) +] +h1,14411:4262630,4025873:0,0,0 +] +!28499 +}277 +Input:2154:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2155:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2156:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2157:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2158:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2159:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2160:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2161:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2162:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2163:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2164:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2165:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2166:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2167:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2168:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1392 +{278 +[1,14474:4262630,47279633:28320399,43253760,0 +(1,14474:4262630,4025873:0,0,0 +[1,14474:-473657,4025873:25952256,0,0 +(1,14474:-473657,-710414:25952256,0,0 +h1,14474:-473657,-710414:0,0,0 +(1,14474:-473657,-710414:0,0,0 +(1,14474:-473657,-710414:0,0,0 +g1,14474:-473657,-710414 +(1,14474:-473657,-710414:65781,0,65781 +g1,14474:-407876,-710414 +[1,14474:-407876,-644633:0,0,0 ] ) -k1,14450:-473657,-710414:-65781 +k1,14474:-473657,-710414:-65781 ) ) -k1,14450:25478599,-710414:25952256 -g1,14450:25478599,-710414 +k1,14474:25478599,-710414:25952256 +g1,14474:25478599,-710414 ) ] ) -[1,14450:6630773,47279633:25952256,43253760,0 -[1,14450:6630773,4812305:25952256,786432,0 -(1,14450:6630773,4812305:25952256,513147,134348 -(1,14450:6630773,4812305:25952256,513147,134348 -g1,14450:3078558,4812305 -[1,14450:3078558,4812305:0,0,0 -(1,14450:3078558,2439708:0,1703936,0 -k1,14450:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14450:2537886,2439708:1179648,16384,0 +[1,14474:6630773,47279633:25952256,43253760,0 +[1,14474:6630773,4812305:25952256,786432,0 +(1,14474:6630773,4812305:25952256,505283,11795 +(1,14474:6630773,4812305:25952256,505283,11795 +g1,14474:3078558,4812305 +[1,14474:3078558,4812305:0,0,0 +(1,14474:3078558,2439708:0,1703936,0 +k1,14474:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14474:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14450:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14474:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14450:3078558,4812305:0,0,0 -(1,14450:3078558,2439708:0,1703936,0 -g1,14450:29030814,2439708 -g1,14450:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14450:36151628,1915420:16384,1179648,0 +[1,14474:3078558,4812305:0,0,0 +(1,14474:3078558,2439708:0,1703936,0 +g1,14474:29030814,2439708 +g1,14474:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14474:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14450:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14474:37855564,2439708:1179648,16384,0 ) ) -k1,14450:3078556,2439708:-34777008 +k1,14474:3078556,2439708:-34777008 ) ] -[1,14450:3078558,4812305:0,0,0 -(1,14450:3078558,49800853:0,16384,2228224 -k1,14450:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14450:2537886,49800853:1179648,16384,0 +[1,14474:3078558,4812305:0,0,0 +(1,14474:3078558,49800853:0,16384,2228224 +k1,14474:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14474:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14450:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14474:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14450:3078558,4812305:0,0,0 -(1,14450:3078558,49800853:0,16384,2228224 -g1,14450:29030814,49800853 -g1,14450:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14450:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14450:37855564,49800853:1179648,16384,0 +[1,14474:3078558,4812305:0,0,0 +(1,14474:3078558,49800853:0,16384,2228224 +g1,14474:29030814,49800853 +g1,14474:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14474:36151628,51504789:16384,1179648,0 ) -) -k1,14450:3078556,49800853:-34777008 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] -g1,14450:6630773,4812305 -k1,14450:25712890,4812305:17886740 -g1,14450:29057847,4812305 -g1,14450:29873114,4812305 ) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14474:37855564,49800853:1179648,16384,0 ) -] -[1,14450:6630773,45706769:25952256,40108032,0 -(1,14450:6630773,45706769:25952256,40108032,0 -(1,14450:6630773,45706769:0,0,0 -g1,14450:6630773,45706769 ) -[1,14450:6630773,45706769:25952256,40108032,0 -(1,14387:6630773,6254097:25952256,513147,122846 -h1,14386:6630773,6254097:983040,0,0 -k1,14386:9255743,6254097:162782 -k1,14386:12114020,6254097:162781 -(1,14386:12114020,6254097:0,452978,122846 -r1,14386:13879133,6254097:1765113,575824,122846 -k1,14386:12114020,6254097:-1765113 +k1,14474:3078556,49800853:-34777008 +) +] +g1,14474:6630773,4812305 +g1,14474:6630773,4812305 +g1,14474:8724648,4812305 +k1,14474:31387652,4812305:22663004 +) +) +] +[1,14474:6630773,45706769:25952256,40108032,0 +(1,14474:6630773,45706769:25952256,40108032,0 +(1,14474:6630773,45706769:0,0,0 +g1,14474:6630773,45706769 ) -(1,14386:12114020,6254097:1765113,452978,122846 -k1,14386:12114020,6254097:3277 -h1,14386:13875856,6254097:0,411205,112570 +[1,14474:6630773,45706769:25952256,40108032,0 +v1,14411:6630773,6254097:0,393216,0 +(1,14411:6630773,9959328:25952256,4098447,196608 +g1,14411:6630773,9959328 +g1,14411:6630773,9959328 +g1,14411:6434165,9959328 +(1,14411:6434165,9959328:0,4098447,196608 +r1,14411:32779637,9959328:26345472,4295055,196608 +k1,14411:6434165,9959328:-26345472 ) -k1,14386:14041915,6254097:162782 -k1,14386:15073048,6254097:162781 -k1,14386:16340112,6254097:162782 -k1,14386:18463730,6254097:162781 -k1,14386:19909707,6254097:162782 -k1,14386:22192579,6254097:162782 -k1,14386:24033737,6254097:162781 -(1,14386:24033737,6254097:0,452978,122846 -r1,14386:27205697,6254097:3171960,575824,122846 -k1,14386:24033737,6254097:-3171960 -) -(1,14386:24033737,6254097:3171960,452978,122846 -k1,14386:24033737,6254097:3277 -h1,14386:27202420,6254097:0,411205,112570 -) -k1,14386:27368479,6254097:162782 -k1,14386:28478911,6254097:162781 -k1,14386:30291890,6254097:162782 -k1,14387:32583029,6254097:0 -k1,14387:32583029,6254097:0 -) -v1,14389:6630773,7186665:0,393216,0 -(1,14410:6630773,13574293:25952256,6780844,196608 -g1,14410:6630773,13574293 -g1,14410:6630773,13574293 -g1,14410:6434165,13574293 -(1,14410:6434165,13574293:0,6780844,196608 -r1,14410:32779637,13574293:26345472,6977452,196608 -k1,14410:6434165,13574293:-26345472 -) -(1,14410:6434165,13574293:26345472,6780844,196608 -[1,14410:6630773,13574293:25952256,6584236,0 -(1,14391:6630773,7394283:25952256,404226,107478 -(1,14390:6630773,7394283:0,0,0 -g1,14390:6630773,7394283 -g1,14390:6630773,7394283 -g1,14390:6303093,7394283 -(1,14390:6303093,7394283:0,0,0 -) -g1,14390:6630773,7394283 -) -k1,14391:6630773,7394283:0 -g1,14391:8843794,7394283 -g1,14391:9792232,7394283 -h1,14391:10424524,7394283:0,0,0 -k1,14391:32583028,7394283:22158504 -g1,14391:32583028,7394283 -) -(1,14395:6630773,8125997:25952256,404226,76021 -(1,14393:6630773,8125997:0,0,0 -g1,14393:6630773,8125997 -g1,14393:6630773,8125997 -g1,14393:6303093,8125997 -(1,14393:6303093,8125997:0,0,0 -) -g1,14393:6630773,8125997 -) -g1,14395:7579210,8125997 -g1,14395:8843793,8125997 -h1,14395:11689104,8125997:0,0,0 -k1,14395:32583028,8125997:20893924 -g1,14395:32583028,8125997 -) -(1,14397:6630773,9447535:25952256,404226,107478 -(1,14396:6630773,9447535:0,0,0 -g1,14396:6630773,9447535 -g1,14396:6630773,9447535 -g1,14396:6303093,9447535 -(1,14396:6303093,9447535:0,0,0 -) -g1,14396:6630773,9447535 -) -k1,14397:6630773,9447535:0 -g1,14397:8843794,9447535 -g1,14397:9792232,9447535 -g1,14397:10740670,9447535 -g1,14397:12637544,9447535 -g1,14397:13269836,9447535 -h1,14397:16747439,9447535:0,0,0 -k1,14397:32583029,9447535:15835590 -g1,14397:32583029,9447535 -) -(1,14402:6630773,10179249:25952256,404226,101187 -(1,14399:6630773,10179249:0,0,0 -g1,14399:6630773,10179249 -g1,14399:6630773,10179249 -g1,14399:6303093,10179249 -(1,14399:6303093,10179249:0,0,0 -) -g1,14399:6630773,10179249 -) -g1,14402:7579210,10179249 -g1,14402:7895356,10179249 -h1,14402:10424521,10179249:0,0,0 -k1,14402:32583029,10179249:22158508 -g1,14402:32583029,10179249 -) -(1,14402:6630773,10845427:25952256,404226,9436 -h1,14402:6630773,10845427:0,0,0 -g1,14402:7579210,10845427 -h1,14402:10424521,10845427:0,0,0 -k1,14402:32583029,10845427:22158508 -g1,14402:32583029,10845427 -) -(1,14404:6630773,12166965:25952256,404226,107478 -(1,14403:6630773,12166965:0,0,0 -g1,14403:6630773,12166965 -g1,14403:6630773,12166965 -g1,14403:6303093,12166965 -(1,14403:6303093,12166965:0,0,0 -) -g1,14403:6630773,12166965 -) -k1,14404:6630773,12166965:0 -g1,14404:9476085,12166965 -g1,14404:11056814,12166965 -g1,14404:12005252,12166965 -g1,14404:13902126,12166965 -g1,14404:14534418,12166965 -g1,14404:18328167,12166965 -g1,14404:22754207,12166965 -g1,14404:23386499,12166965 -h1,14404:24651082,12166965:0,0,0 -k1,14404:32583029,12166965:7931947 -g1,14404:32583029,12166965 -) -(1,14409:6630773,12898679:25952256,404226,101187 -(1,14406:6630773,12898679:0,0,0 -g1,14406:6630773,12898679 -g1,14406:6630773,12898679 -g1,14406:6303093,12898679 -(1,14406:6303093,12898679:0,0,0 -) -g1,14406:6630773,12898679 -) -g1,14409:7579210,12898679 -g1,14409:7895356,12898679 -h1,14409:10424521,12898679:0,0,0 -k1,14409:32583029,12898679:22158508 -g1,14409:32583029,12898679 -) -(1,14409:6630773,13564857:25952256,404226,9436 -h1,14409:6630773,13564857:0,0,0 -g1,14409:7579210,13564857 -h1,14409:10424521,13564857:0,0,0 -k1,14409:32583029,13564857:22158508 -g1,14409:32583029,13564857 -) -] -) -g1,14410:32583029,13574293 -g1,14410:6630773,13574293 -g1,14410:6630773,13574293 -g1,14410:32583029,13574293 -g1,14410:32583029,13574293 -) -h1,14410:6630773,13770901:0,0,0 -(1,14414:6630773,14878779:25952256,513147,126483 -h1,14413:6630773,14878779:983040,0,0 -k1,14413:8730117,14878779:298415 -k1,14413:12118556,14878779:298416 -k1,14413:14445966,14878779:298415 -k1,14413:16690801,14878779:298416 -k1,14413:18093498,14878779:298415 -k1,14413:19139680,14878779:298416 -k1,14413:21819673,14878779:298415 -k1,14413:22734127,14878779:298416 -k1,14413:24051627,14878779:298415 -k1,14413:25673770,14878779:298316 -k1,14413:27522768,14878779:298416 -k1,14413:29738766,14878779:298415 -k1,14413:32583029,14878779:0 -) -(1,14414:6630773,15720267:25952256,513147,102891 -k1,14413:8523172,15720267:190429 -k1,14413:10329720,15720267:190430 -k1,14413:12838157,15720267:190429 -k1,14413:14522153,15720267:190430 -k1,14413:15398744,15720267:190429 -k1,14413:16907749,15720267:190421 -k1,14413:18655969,15720267:190429 -k1,14413:22289661,15720267:190430 -k1,14413:24367527,15720267:190429 -k1,14413:25662238,15720267:190429 -k1,14413:26600434,15720267:190430 -k1,14413:28076679,15720267:190429 -k1,14413:29780335,15720267:190430 -k1,14413:30622192,15720267:190429 -k1,14413:32583029,15720267:0 -) -(1,14414:6630773,16561755:25952256,505283,7863 -k1,14414:32583030,16561755:23417324 -g1,14414:32583030,16561755 -) -v1,14416:6630773,17494323:0,393216,0 -(1,14423:6630773,18509676:25952256,1408569,196608 -g1,14423:6630773,18509676 -g1,14423:6630773,18509676 -g1,14423:6434165,18509676 -(1,14423:6434165,18509676:0,1408569,196608 -r1,14423:32779637,18509676:26345472,1605177,196608 -k1,14423:6434165,18509676:-26345472 -) -(1,14423:6434165,18509676:26345472,1408569,196608 -[1,14423:6630773,18509676:25952256,1211961,0 -(1,14418:6630773,17701941:25952256,404226,82312 -(1,14417:6630773,17701941:0,0,0 -g1,14417:6630773,17701941 -g1,14417:6630773,17701941 -g1,14417:6303093,17701941 -(1,14417:6303093,17701941:0,0,0 -) -g1,14417:6630773,17701941 -) -k1,14418:6630773,17701941:0 -g1,14418:14850565,17701941 -g1,14418:16431294,17701941 -h1,14418:17695877,17701941:0,0,0 -k1,14418:32583029,17701941:14887152 -g1,14418:32583029,17701941 -) -(1,14422:6630773,18433655:25952256,404226,76021 -(1,14420:6630773,18433655:0,0,0 -g1,14420:6630773,18433655 -g1,14420:6630773,18433655 -g1,14420:6303093,18433655 -(1,14420:6303093,18433655:0,0,0 -) -g1,14420:6630773,18433655 -) -g1,14422:7579210,18433655 -g1,14422:8843793,18433655 -g1,14422:12005250,18433655 -g1,14422:15166707,18433655 -g1,14422:18328164,18433655 -g1,14422:21489621,18433655 -h1,14422:24334932,18433655:0,0,0 -k1,14422:32583029,18433655:8248097 -g1,14422:32583029,18433655 -) -] -) -g1,14423:32583029,18509676 -g1,14423:6630773,18509676 -g1,14423:6630773,18509676 -g1,14423:32583029,18509676 -g1,14423:32583029,18509676 -) -h1,14423:6630773,18706284:0,0,0 -(1,14427:6630773,19814162:25952256,513147,126483 -h1,14426:6630773,19814162:983040,0,0 -k1,14426:10564948,19814162:169787 -k1,14426:11090595,19814162:169787 -k1,14426:12910579,19814162:169787 -k1,14426:15057587,19814162:169787 -k1,14426:17057795,19814162:169787 -k1,14426:17886875,19814162:169788 -k1,14426:19375216,19814162:169757 -k1,14426:21491422,19814162:169787 -k1,14426:22608861,19814162:169788 -k1,14426:23871133,19814162:169787 -k1,14426:24656958,19814162:169787 -k1,14426:26729255,19814162:169787 -k1,14426:27890602,19814162:169787 -k1,14426:29804302,19814162:169787 -k1,14426:32583029,19814162:0 -) -(1,14427:6630773,20655650:25952256,513147,126483 -k1,14426:7606530,20655650:214229 -k1,14426:10516255,20655650:214229 -(1,14426:10516255,20655650:0,452978,115847 -r1,14426:12281368,20655650:1765113,568825,115847 -k1,14426:10516255,20655650:-1765113 -) -(1,14426:10516255,20655650:1765113,452978,115847 -k1,14426:10516255,20655650:3277 -h1,14426:12278091,20655650:0,411205,112570 -) -k1,14426:12495597,20655650:214229 -k1,14426:13657477,20655650:214229 -k1,14426:15222403,20655650:214229 -k1,14426:17843769,20655650:214229 -k1,14426:19249442,20655650:214228 -k1,14426:22944943,20655650:214229 -k1,14426:24933887,20655650:214229 -k1,14426:26167201,20655650:214229 -k1,14426:28662083,20655650:214229 -k1,14426:30067757,20655650:214229 -k1,14427:32583029,20655650:0 -) -(1,14427:6630773,21497138:25952256,505283,126483 -k1,14426:8370302,21497138:171908 -k1,14426:9158248,21497138:171908 -k1,14426:10648713,21497138:171881 -k1,14426:11812181,21497138:171908 -k1,14426:13838758,21497138:171908 -k1,14426:14820035,21497138:171907 -k1,14426:17614694,21497138:171908 -k1,14426:19970917,21497138:171908 -k1,14426:21161910,21497138:171908 -k1,14426:24341265,21497138:171908 -k1,14426:25704618,21497138:171908 -k1,14426:29784438,21497138:171908 -k1,14426:31966991,21497138:171908 -k1,14426:32583029,21497138:0 -) -(1,14427:6630773,22338626:25952256,505283,126483 -k1,14426:8164416,22338626:207850 -k1,14426:9363835,22338626:207859 -k1,14426:11426363,22338626:207859 -k1,14426:12443592,22338626:207859 -k1,14426:14871811,22338626:207859 -k1,14426:16944169,22338626:207859 -k1,14426:20751265,22338626:207859 -k1,14426:23442283,22338626:207859 -k1,14426:25044093,22338626:207859 -k1,14426:26979481,22338626:207859 -k1,14426:30494942,22338626:207859 -k1,14426:31835263,22338626:207859 -k1,14426:32583029,22338626:0 -) -(1,14427:6630773,23180114:25952256,513147,134348 -k1,14426:8295902,23180114:225303 -k1,14426:9207368,23180114:225304 -k1,14426:11726431,23180114:225303 -k1,14426:13887668,23180114:225303 -k1,14426:14874499,23180114:225303 -k1,14426:15870506,23180114:225304 -k1,14426:19122262,23180114:225303 -k1,14426:21741595,23180114:225303 -k1,14426:22594734,23180114:225304 -k1,14426:23175897,23180114:225303 -k1,14426:24973409,23180114:225303 -k1,14426:27053381,23180114:225303 -k1,14426:28088055,23180114:225304 -k1,14426:31075701,23180114:225303 -k1,14426:32583029,23180114:0 -) -(1,14427:6630773,24021602:25952256,505283,134348 -k1,14426:7902226,24021602:199284 -k1,14426:9829039,24021602:199284 -k1,14426:12435461,24021602:199285 -k1,14426:13826190,24021602:199284 -k1,14426:17333076,24021602:199284 -k1,14426:19716675,24021602:199284 -k1,14426:20602121,24021602:199284 -k1,14426:22314631,24021602:199284 -k1,14426:23275443,24021602:199284 -k1,14426:26054880,24021602:199285 -k1,14426:29256367,24021602:199284 -k1,14426:30221767,24021602:199284 -k1,14426:32583029,24021602:0 -) -(1,14427:6630773,24863090:25952256,505283,134348 -k1,14426:7766418,24863090:144085 -k1,14426:10974312,24863090:144086 -k1,14426:11804559,24863090:144085 -k1,14426:14242405,24863090:144086 -k1,14426:16496094,24863090:144085 -k1,14426:17836867,24863090:144086 -k1,14426:19488280,24863090:144085 -k1,14426:21162632,24863090:144086 -k1,14426:21958145,24863090:144085 -k1,14426:22849997,24863090:144086 -k1,14426:26191584,24863090:144085 -k1,14426:27021832,24863090:144086 -k1,14426:29193601,24863090:144085 -k1,14426:29953725,24863090:144086 -k1,14426:32583029,24863090:0 -) -(1,14427:6630773,25704578:25952256,505283,11795 -g1,14426:8223953,25704578 -g1,14426:10433827,25704578 -g1,14426:13268259,25704578 -g1,14426:14887653,25704578 -g1,14426:16278327,25704578 -k1,14427:32583029,25704578:14935655 -g1,14427:32583029,25704578 -) -v1,14429:6630773,26637146:0,393216,0 -(1,14436:6630773,27652499:25952256,1408569,196608 -g1,14436:6630773,27652499 -g1,14436:6630773,27652499 -g1,14436:6434165,27652499 -(1,14436:6434165,27652499:0,1408569,196608 -r1,14436:32779637,27652499:26345472,1605177,196608 -k1,14436:6434165,27652499:-26345472 -) -(1,14436:6434165,27652499:26345472,1408569,196608 -[1,14436:6630773,27652499:25952256,1211961,0 -(1,14431:6630773,26844764:25952256,404226,82312 -(1,14430:6630773,26844764:0,0,0 -g1,14430:6630773,26844764 -g1,14430:6630773,26844764 -g1,14430:6303093,26844764 -(1,14430:6303093,26844764:0,0,0 -) -g1,14430:6630773,26844764 -) -k1,14431:6630773,26844764:0 -g1,14431:14534419,26844764 -g1,14431:15166711,26844764 -h1,14431:16431294,26844764:0,0,0 -k1,14431:32583029,26844764:16151735 -g1,14431:32583029,26844764 -) -(1,14435:6630773,27576478:25952256,404226,76021 -(1,14433:6630773,27576478:0,0,0 -g1,14433:6630773,27576478 -g1,14433:6630773,27576478 -g1,14433:6303093,27576478 -(1,14433:6303093,27576478:0,0,0 -) -g1,14433:6630773,27576478 -) -g1,14435:7579210,27576478 -g1,14435:8843793,27576478 -g1,14435:12005250,27576478 -g1,14435:15166707,27576478 -g1,14435:18328164,27576478 -g1,14435:21489621,27576478 -h1,14435:24334932,27576478:0,0,0 -k1,14435:32583029,27576478:8248097 -g1,14435:32583029,27576478 -) -] -) -g1,14436:32583029,27652499 -g1,14436:6630773,27652499 -g1,14436:6630773,27652499 -g1,14436:32583029,27652499 -g1,14436:32583029,27652499 -) -h1,14436:6630773,27849107:0,0,0 -(1,14441:6630773,28956985:25952256,505283,134348 -h1,14439:6630773,28956985:983040,0,0 -k1,14439:8340225,28956985:256519 -k1,14439:9128241,28956985:256519 -k1,14439:10670576,28956985:256519 -k1,14439:14136392,28956985:256518 -k1,14439:15044339,28956985:256519 -k1,14439:18559963,28956985:256519 -k1,14439:20100988,28956985:256519 -k1,14439:22908168,28956985:256519 -k1,14439:24268969,28956985:256519 -k1,14439:25901088,28956985:256518 -k1,14439:29718178,28956985:256519 -k1,14439:30330557,28956985:256519 -k1,14439:32583029,28956985:0 -) -(1,14441:6630773,29798473:25952256,513147,134348 -k1,14439:7793885,29798473:228569 -k1,14439:8681746,29798473:228569 -k1,14439:11445249,29798473:228570 -k1,14439:12865263,29798473:228569 -k1,14439:14560528,29798473:228569 -k1,14439:17141184,29798473:228569 -k1,14439:18985872,29798473:228570 -k1,14439:21566528,29798473:228569 -k1,14439:22899379,29798473:228569 -k1,14439:23875714,29798473:228569 -k1,14439:27780854,29798473:228570 -k1,14439:28770951,29798473:228569 -k1,14439:31391584,29798473:228569 -k1,14439:32583029,29798473:0 -) -(1,14441:6630773,30639961:25952256,513147,126483 -k1,14439:9579827,30639961:227344 -k1,14439:14000821,30639961:227345 -k1,14439:17054077,30639961:227344 -k1,14439:18849043,30639961:227345 -k1,14439:22269301,30639961:227344 -k1,14439:23148073,30639961:227344 -k1,14439:26568332,30639961:227345 -k1,14439:28626752,30639961:227344 -k1,14439:29470135,30639961:227345 -k1,14439:31313597,30639961:227344 -k1,14441:32583029,30639961:0 -) -(1,14441:6630773,31481449:25952256,513147,134348 -k1,14439:9425064,31481449:251494 -k1,14439:12657136,31481449:251495 -k1,14439:15670973,31481449:251494 -k1,14439:17638855,31481449:251494 -k1,14439:18549642,31481449:251495 -k1,14439:20417254,31481449:251494 -k1,14439:23907537,31481449:251494 -k1,14439:24628925,31481449:251495 -k1,14439:25411916,31481449:251494 -k1,14439:28872708,31481449:251494 -k1,14439:29775631,31481449:251495 -k1,14439:31379788,31481449:251494 -k1,14439:32583029,31481449:0 -) -(1,14441:6630773,32322937:25952256,505283,134348 -g1,14439:8097468,32322937 -g1,14439:10800828,32322937 -g1,14439:12698095,32322937 -g1,14439:15755349,32322937 -g1,14439:16973663,32322937 -g1,14439:19119311,32322937 -g1,14439:20831766,32322937 -g1,14439:21647033,32322937 -g1,14439:25875415,32322937 -k1,14441:32583029,32322937:6707614 -g1,14441:32583029,32322937 -) -(1,14442:6630773,34414197:25952256,555811,12975 -(1,14442:6630773,34414197:2450326,521208,0 -g1,14442:6630773,34414197 -g1,14442:9081099,34414197 -) -g1,14442:13486495,34414197 -g1,14442:18295593,34414197 -k1,14442:32583029,34414197:12101679 -g1,14442:32583029,34414197 -) -(1,14445:6630773,35648901:25952256,505283,122846 -k1,14444:10873606,35648901:550535 -k1,14444:13040259,35648901:550535 -k1,14444:15493303,35648901:550534 -(1,14444:15493303,35648901:0,452978,115847 -r1,14444:23940940,35648901:8447637,568825,115847 -k1,14444:15493303,35648901:-8447637 -) -(1,14444:15493303,35648901:8447637,452978,115847 -k1,14444:15493303,35648901:3277 -h1,14444:23937663,35648901:0,411205,112570 -) -k1,14444:24665145,35648901:550535 -(1,14444:24665145,35648901:0,452978,122846 -r1,14444:32409359,35648901:7744214,575824,122846 -k1,14444:24665145,35648901:-7744214 -) -(1,14444:24665145,35648901:7744214,452978,122846 -k1,14444:24665145,35648901:3277 -h1,14444:32406082,35648901:0,411205,112570 -) -k1,14445:32583029,35648901:0 -) -(1,14445:6630773,36490389:25952256,505283,122846 -(1,14444:6630773,36490389:0,452978,122846 -r1,14444:14726699,36490389:8095926,575824,122846 -k1,14444:6630773,36490389:-8095926 -) -(1,14444:6630773,36490389:8095926,452978,122846 -k1,14444:6630773,36490389:3277 -h1,14444:14723422,36490389:0,411205,112570 -) -k1,14444:15528453,36490389:628084 -(1,14444:15528453,36490389:0,452978,122846 -r1,14444:23624379,36490389:8095926,575824,122846 -k1,14444:15528453,36490389:-8095926 -) -(1,14444:15528453,36490389:8095926,452978,122846 -k1,14444:15528453,36490389:3277 -h1,14444:23621102,36490389:0,411205,112570 -) -k1,14444:24426133,36490389:628084 -(1,14444:24426133,36490389:0,452978,115847 -r1,14444:30763500,36490389:6337367,568825,115847 -k1,14444:24426133,36490389:-6337367 -) -(1,14444:24426133,36490389:6337367,452978,115847 -k1,14444:24426133,36490389:3277 -h1,14444:30760223,36490389:0,411205,112570 -) -k1,14444:31391584,36490389:628084 -k1,14445:32583029,36490389:0 -) -(1,14445:6630773,37331877:25952256,505283,134348 -(1,14444:6630773,37331877:0,452978,115847 -r1,14444:14374987,37331877:7744214,568825,115847 -k1,14444:6630773,37331877:-7744214 -) -(1,14444:6630773,37331877:7744214,452978,115847 -k1,14444:6630773,37331877:3277 -h1,14444:14371710,37331877:0,411205,112570 -) -k1,14444:14728318,37331877:179661 -k1,14444:16187897,37331877:179661 -k1,14444:16723418,37331877:179661 -k1,14444:19314149,37331877:179661 -k1,14444:23064210,37331877:179660 -k1,14444:25903322,37331877:179661 -k1,14444:28718186,37331877:179661 -k1,14444:30070286,37331877:179661 -k1,14444:30932832,37331877:179661 -k1,14444:32583029,37331877:0 -) -(1,14445:6630773,38173365:25952256,505283,134348 -k1,14444:9458379,38173365:292673 -k1,14444:11308842,38173365:292672 -k1,14444:12593075,38173365:292673 -k1,14444:14398974,38173365:292673 -k1,14444:16085598,38173365:292673 -(1,14444:16085598,38173365:0,452978,115847 -r1,14444:18554135,38173365:2468537,568825,115847 -k1,14444:16085598,38173365:-2468537 -) -(1,14444:16085598,38173365:2468537,452978,115847 -k1,14444:16085598,38173365:3277 -h1,14444:18550858,38173365:0,411205,112570 -) -k1,14444:19020477,38173365:292672 -(1,14444:19020477,38173365:0,452978,115847 -r1,14444:20433878,38173365:1413401,568825,115847 -k1,14444:19020477,38173365:-1413401 -) -(1,14444:19020477,38173365:1413401,452978,115847 -k1,14444:19020477,38173365:3277 -h1,14444:20430601,38173365:0,411205,112570 -) -k1,14444:20726551,38173365:292673 -k1,14444:22210669,38173365:292673 -(1,14444:22210669,38173365:0,452978,115847 -r1,14444:25030918,38173365:2820249,568825,115847 -k1,14444:22210669,38173365:-2820249 -) -(1,14444:22210669,38173365:2820249,452978,115847 -k1,14444:22210669,38173365:3277 -h1,14444:25027641,38173365:0,411205,112570 -) -k1,14444:25323590,38173365:292672 -k1,14444:27179297,38173365:292673 -k1,14444:27959464,38173365:292579 -k1,14444:32583029,38173365:0 -) -(1,14445:6630773,39014853:25952256,513147,115847 -k1,14444:7756855,39014853:191539 -k1,14444:8615550,39014853:191539 -(1,14444:8615550,39014853:0,459977,115847 -r1,14444:10028951,39014853:1413401,575824,115847 -k1,14444:8615550,39014853:-1413401 -) -(1,14444:8615550,39014853:1413401,459977,115847 -k1,14444:8615550,39014853:3277 -h1,14444:10025674,39014853:0,411205,112570 -) -k1,14444:10220490,39014853:191539 -k1,14444:12314539,39014853:191539 -k1,14444:13037575,39014853:191539 -k1,14444:14514930,39014853:191539 -k1,14444:17664109,39014853:191539 -k1,14444:19672306,39014853:191539 -k1,14444:21766355,39014853:191539 -k1,14444:23104119,39014853:191539 -(1,14444:23104119,39014853:0,452978,115847 -r1,14444:31200045,39014853:8095926,568825,115847 -k1,14444:23104119,39014853:-8095926 -) -(1,14444:23104119,39014853:8095926,452978,115847 -k1,14444:23104119,39014853:3277 -h1,14444:31196768,39014853:0,411205,112570 -) -k1,14444:31391584,39014853:191539 -k1,14445:32583029,39014853:0 -) -(1,14445:6630773,39856341:25952256,513147,126483 -(1,14444:6630773,39856341:0,452978,115847 -r1,14444:14726699,39856341:8095926,568825,115847 -k1,14444:6630773,39856341:-8095926 -) -(1,14444:6630773,39856341:8095926,452978,115847 -k1,14444:6630773,39856341:3277 -h1,14444:14723422,39856341:0,411205,112570 -) -k1,14444:14962664,39856341:235965 -k1,14444:16190189,39856341:235965 -k1,14444:18280823,39856341:235965 -k1,14444:19326158,39856341:235965 -k1,14444:20581208,39856341:235965 -k1,14444:21909659,39856341:235966 -k1,14444:22804916,39856341:235965 -k1,14444:26771190,39856341:235965 -k1,14444:29527670,39856341:235965 -k1,14444:30422927,39856341:235965 -k1,14444:31923737,39856341:235965 -k1,14444:32583029,39856341:0 -) -(1,14445:6630773,40697829:25952256,513147,134348 -k1,14444:8439458,40697829:192567 -k1,14444:11621776,40697829:192566 -k1,14444:14049776,40697829:192567 -k1,14444:14893770,40697829:192566 -k1,14444:16682794,40697829:192567 -k1,14444:18153967,40697829:192566 -k1,14444:21026957,40697829:192567 -k1,14444:23105650,40697829:192567 -k1,14444:25969463,40697829:192566 -k1,14444:29524682,40697829:192567 -k1,14444:30400133,40697829:192566 -k1,14444:31540351,40697829:192567 -k1,14445:32583029,40697829:0 -) -(1,14445:6630773,41539317:25952256,513147,134348 -g1,14444:8220676,41539317 -g1,14444:10319138,41539317 -g1,14444:13498944,41539317 -g1,14444:16460516,41539317 -g1,14444:18376133,41539317 -g1,14444:19234654,41539317 -g1,14444:21050001,41539317 -k1,14445:32583029,41539317:8294239 -g1,14445:32583029,41539317 -) -(1,14446:6630773,43630577:25952256,555811,12975 -(1,14446:6630773,43630577:2450326,534184,12975 -g1,14446:6630773,43630577 -g1,14446:9081099,43630577 -) -g1,14446:12304226,43630577 -g1,14446:17113324,43630577 -k1,14446:32583029,43630577:13283948 -g1,14446:32583029,43630577 -) -(1,14449:6630773,44865281:25952256,505283,122846 -k1,14448:8843077,44865281:474289 -k1,14448:11219876,44865281:474289 -(1,14448:11219876,44865281:0,452978,115847 -r1,14448:18964090,44865281:7744214,568825,115847 -k1,14448:11219876,44865281:-7744214 -) -(1,14448:11219876,44865281:7744214,452978,115847 -k1,14448:11219876,44865281:3277 -h1,14448:18960813,44865281:0,411205,112570 -) -k1,14448:19612048,44865281:474288 -(1,14448:19612048,44865281:0,452978,115847 -r1,14448:25597703,44865281:5985655,568825,115847 -k1,14448:19612048,44865281:-5985655 -) -(1,14448:19612048,44865281:5985655,452978,115847 -k1,14448:19612048,44865281:3277 -h1,14448:25594426,44865281:0,411205,112570 -) -k1,14448:26245662,44865281:474289 -(1,14448:26245662,44865281:0,452978,122846 -r1,14448:32583029,44865281:6337367,575824,122846 -k1,14448:26245662,44865281:-6337367 -) -(1,14448:26245662,44865281:6337367,452978,122846 -k1,14448:26245662,44865281:3277 -h1,14448:32579752,44865281:0,411205,112570 -) -k1,14448:32583029,44865281:0 -) -(1,14449:6630773,45706769:25952256,513147,134348 -k1,14448:8345326,45706769:722993 -k1,14448:10581545,45706769:722993 -k1,14448:12698489,45706769:722993 -k1,14448:16868020,45706769:722993 -k1,14448:18980377,45706769:722994 -k1,14448:21741540,45706769:722993 -k1,14448:23150695,45706769:722993 -k1,14448:26271650,45706769:722993 -k1,14448:28811301,45706769:722993 -k1,14448:31436804,45706769:722993 -k1,14449:32583029,45706769:0 -) -] -(1,14450:32583029,45706769:0,0,0 -g1,14450:32583029,45706769 -) -) -] -(1,14450:6630773,47279633:25952256,0,0 -h1,14450:6630773,47279633:25952256,0,0 -) -] -h1,14450:4262630,4025873:0,0,0 -] -!26517 -}277 -Input:2177:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2178:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2179:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2180:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2181:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2182:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2183:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2184:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2185:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2186:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2187:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2188:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2189:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2190:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2191:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1302 -{278 -[1,14488:4262630,47279633:28320399,43253760,0 -(1,14488:4262630,4025873:0,0,0 -[1,14488:-473657,4025873:25952256,0,0 -(1,14488:-473657,-710414:25952256,0,0 -h1,14488:-473657,-710414:0,0,0 -(1,14488:-473657,-710414:0,0,0 -(1,14488:-473657,-710414:0,0,0 -g1,14488:-473657,-710414 -(1,14488:-473657,-710414:65781,0,65781 -g1,14488:-407876,-710414 -[1,14488:-407876,-644633:0,0,0 +(1,14411:6434165,9959328:26345472,4098447,196608 +[1,14411:6630773,9959328:25952256,3901839,0 +(1,14402:6630773,6461715:25952256,404226,107478 +(1,14401:6630773,6461715:0,0,0 +g1,14401:6630773,6461715 +g1,14401:6630773,6461715 +g1,14401:6303093,6461715 +(1,14401:6303093,6461715:0,0,0 +) +g1,14401:6630773,6461715 +) +k1,14402:6630773,6461715:0 +g1,14402:12321396,6461715 +g1,14402:14218270,6461715 +g1,14402:14850562,6461715 +h1,14402:16431291,6461715:0,0,0 +k1,14402:32583029,6461715:16151738 +g1,14402:32583029,6461715 +) +(1,14410:6630773,7193429:25952256,404226,82312 +(1,14404:6630773,7193429:0,0,0 +g1,14404:6630773,7193429 +g1,14404:6630773,7193429 +g1,14404:6303093,7193429 +(1,14404:6303093,7193429:0,0,0 +) +g1,14404:6630773,7193429 +) +g1,14410:7579210,7193429 +g1,14410:7895356,7193429 +g1,14410:8211502,7193429 +g1,14410:8527648,7193429 +g1,14410:8843794,7193429 +g1,14410:9159940,7193429 +g1,14410:9476086,7193429 +k1,14410:9476086,7193429:0 +h1,14410:10740669,7193429:0,0,0 +k1,14410:32583029,7193429:21842360 +g1,14410:32583029,7193429 +) +(1,14410:6630773,7859607:25952256,404226,9436 +h1,14410:6630773,7859607:0,0,0 +g1,14410:7579210,7859607 +g1,14410:8843793,7859607 +g1,14410:9159939,7859607 +g1,14410:9476085,7859607 +g1,14410:9792231,7859607 +h1,14410:10740668,7859607:0,0,0 +k1,14410:32583028,7859607:21842360 +g1,14410:32583028,7859607 +) +(1,14410:6630773,8525785:25952256,388497,107478 +h1,14410:6630773,8525785:0,0,0 +g1,14410:7579210,8525785 +g1,14410:9476084,8525785 +g1,14410:9792230,8525785 +g1,14410:10108376,8525785 +h1,14410:10740667,8525785:0,0,0 +k1,14410:32583029,8525785:21842362 +g1,14410:32583029,8525785 +) +(1,14410:6630773,9191963:25952256,404226,9436 +h1,14410:6630773,9191963:0,0,0 +g1,14410:7579210,9191963 +g1,14410:9159939,9191963 +g1,14410:9476085,9191963 +g1,14410:9792231,9191963 +h1,14410:10740668,9191963:0,0,0 +k1,14410:32583028,9191963:21842360 +g1,14410:32583028,9191963 +) +(1,14410:6630773,9858141:25952256,404226,101187 +h1,14410:6630773,9858141:0,0,0 +g1,14410:7579210,9858141 +g1,14410:9476084,9858141 +g1,14410:9792230,9858141 +h1,14410:10740667,9858141:0,0,0 +k1,14410:32583029,9858141:21842362 +g1,14410:32583029,9858141 +) +] +) +g1,14411:32583029,9959328 +g1,14411:6630773,9959328 +g1,14411:6630773,9959328 +g1,14411:32583029,9959328 +g1,14411:32583029,9959328 +) +h1,14411:6630773,10155936:0,0,0 +(1,14415:6630773,11504128:25952256,513147,122846 +h1,14414:6630773,11504128:983040,0,0 +k1,14414:9255743,11504128:162782 +k1,14414:12114020,11504128:162781 +(1,14414:12114020,11504128:0,452978,122846 +r1,14414:13879133,11504128:1765113,575824,122846 +k1,14414:12114020,11504128:-1765113 +) +(1,14414:12114020,11504128:1765113,452978,122846 +k1,14414:12114020,11504128:3277 +h1,14414:13875856,11504128:0,411205,112570 +) +k1,14414:14041915,11504128:162782 +k1,14414:15073048,11504128:162781 +k1,14414:16340112,11504128:162782 +k1,14414:18463730,11504128:162781 +k1,14414:19909707,11504128:162782 +k1,14414:22192579,11504128:162782 +k1,14414:24033737,11504128:162781 +(1,14414:24033737,11504128:0,452978,122846 +r1,14414:27205697,11504128:3171960,575824,122846 +k1,14414:24033737,11504128:-3171960 +) +(1,14414:24033737,11504128:3171960,452978,122846 +k1,14414:24033737,11504128:3277 +h1,14414:27202420,11504128:0,411205,112570 +) +k1,14414:27368479,11504128:162782 +k1,14414:28478911,11504128:162781 +k1,14414:30291890,11504128:162782 +k1,14415:32583029,11504128:0 +k1,14415:32583029,11504128:0 +) +v1,14417:6630773,12677010:0,393216,0 +(1,14438:6630773,19064638:25952256,6780844,196608 +g1,14438:6630773,19064638 +g1,14438:6630773,19064638 +g1,14438:6434165,19064638 +(1,14438:6434165,19064638:0,6780844,196608 +r1,14438:32779637,19064638:26345472,6977452,196608 +k1,14438:6434165,19064638:-26345472 +) +(1,14438:6434165,19064638:26345472,6780844,196608 +[1,14438:6630773,19064638:25952256,6584236,0 +(1,14419:6630773,12884628:25952256,404226,107478 +(1,14418:6630773,12884628:0,0,0 +g1,14418:6630773,12884628 +g1,14418:6630773,12884628 +g1,14418:6303093,12884628 +(1,14418:6303093,12884628:0,0,0 +) +g1,14418:6630773,12884628 +) +k1,14419:6630773,12884628:0 +g1,14419:8843794,12884628 +g1,14419:9792232,12884628 +h1,14419:10424524,12884628:0,0,0 +k1,14419:32583028,12884628:22158504 +g1,14419:32583028,12884628 +) +(1,14423:6630773,13616342:25952256,404226,76021 +(1,14421:6630773,13616342:0,0,0 +g1,14421:6630773,13616342 +g1,14421:6630773,13616342 +g1,14421:6303093,13616342 +(1,14421:6303093,13616342:0,0,0 +) +g1,14421:6630773,13616342 +) +g1,14423:7579210,13616342 +g1,14423:8843793,13616342 +h1,14423:11689104,13616342:0,0,0 +k1,14423:32583028,13616342:20893924 +g1,14423:32583028,13616342 +) +(1,14425:6630773,14937880:25952256,404226,107478 +(1,14424:6630773,14937880:0,0,0 +g1,14424:6630773,14937880 +g1,14424:6630773,14937880 +g1,14424:6303093,14937880 +(1,14424:6303093,14937880:0,0,0 +) +g1,14424:6630773,14937880 +) +k1,14425:6630773,14937880:0 +g1,14425:8843794,14937880 +g1,14425:9792232,14937880 +g1,14425:10740670,14937880 +g1,14425:12637544,14937880 +g1,14425:13269836,14937880 +h1,14425:16747439,14937880:0,0,0 +k1,14425:32583029,14937880:15835590 +g1,14425:32583029,14937880 +) +(1,14430:6630773,15669594:25952256,404226,101187 +(1,14427:6630773,15669594:0,0,0 +g1,14427:6630773,15669594 +g1,14427:6630773,15669594 +g1,14427:6303093,15669594 +(1,14427:6303093,15669594:0,0,0 +) +g1,14427:6630773,15669594 +) +g1,14430:7579210,15669594 +g1,14430:7895356,15669594 +h1,14430:10424521,15669594:0,0,0 +k1,14430:32583029,15669594:22158508 +g1,14430:32583029,15669594 +) +(1,14430:6630773,16335772:25952256,404226,9436 +h1,14430:6630773,16335772:0,0,0 +g1,14430:7579210,16335772 +h1,14430:10424521,16335772:0,0,0 +k1,14430:32583029,16335772:22158508 +g1,14430:32583029,16335772 +) +(1,14432:6630773,17657310:25952256,404226,107478 +(1,14431:6630773,17657310:0,0,0 +g1,14431:6630773,17657310 +g1,14431:6630773,17657310 +g1,14431:6303093,17657310 +(1,14431:6303093,17657310:0,0,0 +) +g1,14431:6630773,17657310 +) +k1,14432:6630773,17657310:0 +g1,14432:9476085,17657310 +g1,14432:11056814,17657310 +g1,14432:12005252,17657310 +g1,14432:13902126,17657310 +g1,14432:14534418,17657310 +g1,14432:18328167,17657310 +g1,14432:22754207,17657310 +g1,14432:23386499,17657310 +h1,14432:24651082,17657310:0,0,0 +k1,14432:32583029,17657310:7931947 +g1,14432:32583029,17657310 +) +(1,14437:6630773,18389024:25952256,404226,101187 +(1,14434:6630773,18389024:0,0,0 +g1,14434:6630773,18389024 +g1,14434:6630773,18389024 +g1,14434:6303093,18389024 +(1,14434:6303093,18389024:0,0,0 +) +g1,14434:6630773,18389024 +) +g1,14437:7579210,18389024 +g1,14437:7895356,18389024 +h1,14437:10424521,18389024:0,0,0 +k1,14437:32583029,18389024:22158508 +g1,14437:32583029,18389024 +) +(1,14437:6630773,19055202:25952256,404226,9436 +h1,14437:6630773,19055202:0,0,0 +g1,14437:7579210,19055202 +h1,14437:10424521,19055202:0,0,0 +k1,14437:32583029,19055202:22158508 +g1,14437:32583029,19055202 +) +] +) +g1,14438:32583029,19064638 +g1,14438:6630773,19064638 +g1,14438:6630773,19064638 +g1,14438:32583029,19064638 +g1,14438:32583029,19064638 +) +h1,14438:6630773,19261246:0,0,0 +(1,14442:6630773,20609438:25952256,513147,126483 +h1,14441:6630773,20609438:983040,0,0 +k1,14441:8730117,20609438:298415 +k1,14441:12118556,20609438:298416 +k1,14441:14445966,20609438:298415 +k1,14441:16690801,20609438:298416 +k1,14441:18093498,20609438:298415 +k1,14441:19139680,20609438:298416 +k1,14441:21819673,20609438:298415 +k1,14441:22734127,20609438:298416 +k1,14441:24051627,20609438:298415 +k1,14441:25673770,20609438:298316 +k1,14441:27522768,20609438:298416 +k1,14441:29738766,20609438:298415 +k1,14441:32583029,20609438:0 +) +(1,14442:6630773,21450926:25952256,513147,102891 +k1,14441:8523172,21450926:190429 +k1,14441:10329720,21450926:190430 +k1,14441:12838157,21450926:190429 +k1,14441:14522153,21450926:190430 +k1,14441:15398744,21450926:190429 +k1,14441:16907749,21450926:190421 +k1,14441:18655969,21450926:190429 +k1,14441:22289661,21450926:190430 +k1,14441:24367527,21450926:190429 +k1,14441:25662238,21450926:190429 +k1,14441:26600434,21450926:190430 +k1,14441:28076679,21450926:190429 +k1,14441:29780335,21450926:190430 +k1,14441:30622192,21450926:190429 +k1,14441:32583029,21450926:0 +) +(1,14442:6630773,22292414:25952256,505283,7863 +k1,14442:32583030,22292414:23417324 +g1,14442:32583030,22292414 +) +v1,14444:6630773,23465297:0,393216,0 +(1,14451:6630773,24480650:25952256,1408569,196608 +g1,14451:6630773,24480650 +g1,14451:6630773,24480650 +g1,14451:6434165,24480650 +(1,14451:6434165,24480650:0,1408569,196608 +r1,14451:32779637,24480650:26345472,1605177,196608 +k1,14451:6434165,24480650:-26345472 +) +(1,14451:6434165,24480650:26345472,1408569,196608 +[1,14451:6630773,24480650:25952256,1211961,0 +(1,14446:6630773,23672915:25952256,404226,82312 +(1,14445:6630773,23672915:0,0,0 +g1,14445:6630773,23672915 +g1,14445:6630773,23672915 +g1,14445:6303093,23672915 +(1,14445:6303093,23672915:0,0,0 +) +g1,14445:6630773,23672915 +) +k1,14446:6630773,23672915:0 +g1,14446:14850565,23672915 +g1,14446:16431294,23672915 +h1,14446:17695877,23672915:0,0,0 +k1,14446:32583029,23672915:14887152 +g1,14446:32583029,23672915 +) +(1,14450:6630773,24404629:25952256,404226,76021 +(1,14448:6630773,24404629:0,0,0 +g1,14448:6630773,24404629 +g1,14448:6630773,24404629 +g1,14448:6303093,24404629 +(1,14448:6303093,24404629:0,0,0 +) +g1,14448:6630773,24404629 +) +g1,14450:7579210,24404629 +g1,14450:8843793,24404629 +g1,14450:12005250,24404629 +g1,14450:15166707,24404629 +g1,14450:18328164,24404629 +g1,14450:21489621,24404629 +h1,14450:24334932,24404629:0,0,0 +k1,14450:32583029,24404629:8248097 +g1,14450:32583029,24404629 +) +] +) +g1,14451:32583029,24480650 +g1,14451:6630773,24480650 +g1,14451:6630773,24480650 +g1,14451:32583029,24480650 +g1,14451:32583029,24480650 +) +h1,14451:6630773,24677258:0,0,0 +(1,14455:6630773,26025450:25952256,513147,126483 +h1,14454:6630773,26025450:983040,0,0 +k1,14454:10564948,26025450:169787 +k1,14454:11090595,26025450:169787 +k1,14454:12910579,26025450:169787 +k1,14454:15057587,26025450:169787 +k1,14454:17057795,26025450:169787 +k1,14454:17886875,26025450:169788 +k1,14454:19375216,26025450:169757 +k1,14454:21491422,26025450:169787 +k1,14454:22608861,26025450:169788 +k1,14454:23871133,26025450:169787 +k1,14454:24656958,26025450:169787 +k1,14454:26729255,26025450:169787 +k1,14454:27890602,26025450:169787 +k1,14454:29804302,26025450:169787 +k1,14454:32583029,26025450:0 +) +(1,14455:6630773,26866938:25952256,513147,126483 +k1,14454:7606530,26866938:214229 +k1,14454:10516255,26866938:214229 +(1,14454:10516255,26866938:0,452978,115847 +r1,14454:12281368,26866938:1765113,568825,115847 +k1,14454:10516255,26866938:-1765113 +) +(1,14454:10516255,26866938:1765113,452978,115847 +k1,14454:10516255,26866938:3277 +h1,14454:12278091,26866938:0,411205,112570 +) +k1,14454:12495597,26866938:214229 +k1,14454:13657477,26866938:214229 +k1,14454:15222403,26866938:214229 +k1,14454:17843769,26866938:214229 +k1,14454:19249442,26866938:214228 +k1,14454:22944943,26866938:214229 +k1,14454:24933887,26866938:214229 +k1,14454:26167201,26866938:214229 +k1,14454:28662083,26866938:214229 +k1,14454:30067757,26866938:214229 +k1,14455:32583029,26866938:0 +) +(1,14455:6630773,27708426:25952256,505283,126483 +k1,14454:8370302,27708426:171908 +k1,14454:9158248,27708426:171908 +k1,14454:10648713,27708426:171881 +k1,14454:11812181,27708426:171908 +k1,14454:13838758,27708426:171908 +k1,14454:14820035,27708426:171907 +k1,14454:17614694,27708426:171908 +k1,14454:19970917,27708426:171908 +k1,14454:21161910,27708426:171908 +k1,14454:24341265,27708426:171908 +k1,14454:25704618,27708426:171908 +k1,14454:29784438,27708426:171908 +k1,14454:31966991,27708426:171908 +k1,14454:32583029,27708426:0 +) +(1,14455:6630773,28549914:25952256,505283,126483 +k1,14454:8164416,28549914:207850 +k1,14454:9363835,28549914:207859 +k1,14454:11426363,28549914:207859 +k1,14454:12443592,28549914:207859 +k1,14454:14871811,28549914:207859 +k1,14454:16944169,28549914:207859 +k1,14454:20751265,28549914:207859 +k1,14454:23442283,28549914:207859 +k1,14454:25044093,28549914:207859 +k1,14454:26979481,28549914:207859 +k1,14454:30494942,28549914:207859 +k1,14454:31835263,28549914:207859 +k1,14454:32583029,28549914:0 +) +(1,14455:6630773,29391402:25952256,513147,134348 +k1,14454:8295902,29391402:225303 +k1,14454:9207368,29391402:225304 +k1,14454:11726431,29391402:225303 +k1,14454:13887668,29391402:225303 +k1,14454:14874499,29391402:225303 +k1,14454:15870506,29391402:225304 +k1,14454:19122262,29391402:225303 +k1,14454:21741595,29391402:225303 +k1,14454:22594734,29391402:225304 +k1,14454:23175897,29391402:225303 +k1,14454:24973409,29391402:225303 +k1,14454:27053381,29391402:225303 +k1,14454:28088055,29391402:225304 +k1,14454:31075701,29391402:225303 +k1,14454:32583029,29391402:0 +) +(1,14455:6630773,30232890:25952256,505283,134348 +k1,14454:7902226,30232890:199284 +k1,14454:9829039,30232890:199284 +k1,14454:12435461,30232890:199285 +k1,14454:13826190,30232890:199284 +k1,14454:17333076,30232890:199284 +k1,14454:19716675,30232890:199284 +k1,14454:20602121,30232890:199284 +k1,14454:22314631,30232890:199284 +k1,14454:23275443,30232890:199284 +k1,14454:26054880,30232890:199285 +k1,14454:29256367,30232890:199284 +k1,14454:30221767,30232890:199284 +k1,14454:32583029,30232890:0 +) +(1,14455:6630773,31074378:25952256,505283,134348 +k1,14454:7766418,31074378:144085 +k1,14454:10974312,31074378:144086 +k1,14454:11804559,31074378:144085 +k1,14454:14242405,31074378:144086 +k1,14454:16496094,31074378:144085 +k1,14454:17836867,31074378:144086 +k1,14454:19488280,31074378:144085 +k1,14454:21162632,31074378:144086 +k1,14454:21958145,31074378:144085 +k1,14454:22849997,31074378:144086 +k1,14454:26191584,31074378:144085 +k1,14454:27021832,31074378:144086 +k1,14454:29193601,31074378:144085 +k1,14454:29953725,31074378:144086 +k1,14454:32583029,31074378:0 +) +(1,14455:6630773,31915866:25952256,505283,11795 +g1,14454:8223953,31915866 +g1,14454:10433827,31915866 +g1,14454:13268259,31915866 +g1,14454:14887653,31915866 +g1,14454:16278327,31915866 +k1,14455:32583029,31915866:14935655 +g1,14455:32583029,31915866 +) +v1,14457:6630773,33088748:0,393216,0 +(1,14464:6630773,34104101:25952256,1408569,196608 +g1,14464:6630773,34104101 +g1,14464:6630773,34104101 +g1,14464:6434165,34104101 +(1,14464:6434165,34104101:0,1408569,196608 +r1,14464:32779637,34104101:26345472,1605177,196608 +k1,14464:6434165,34104101:-26345472 +) +(1,14464:6434165,34104101:26345472,1408569,196608 +[1,14464:6630773,34104101:25952256,1211961,0 +(1,14459:6630773,33296366:25952256,404226,82312 +(1,14458:6630773,33296366:0,0,0 +g1,14458:6630773,33296366 +g1,14458:6630773,33296366 +g1,14458:6303093,33296366 +(1,14458:6303093,33296366:0,0,0 +) +g1,14458:6630773,33296366 +) +k1,14459:6630773,33296366:0 +g1,14459:14534419,33296366 +g1,14459:15166711,33296366 +h1,14459:16431294,33296366:0,0,0 +k1,14459:32583029,33296366:16151735 +g1,14459:32583029,33296366 +) +(1,14463:6630773,34028080:25952256,404226,76021 +(1,14461:6630773,34028080:0,0,0 +g1,14461:6630773,34028080 +g1,14461:6630773,34028080 +g1,14461:6303093,34028080 +(1,14461:6303093,34028080:0,0,0 +) +g1,14461:6630773,34028080 +) +g1,14463:7579210,34028080 +g1,14463:8843793,34028080 +g1,14463:12005250,34028080 +g1,14463:15166707,34028080 +g1,14463:18328164,34028080 +g1,14463:21489621,34028080 +h1,14463:24334932,34028080:0,0,0 +k1,14463:32583029,34028080:8248097 +g1,14463:32583029,34028080 +) +] +) +g1,14464:32583029,34104101 +g1,14464:6630773,34104101 +g1,14464:6630773,34104101 +g1,14464:32583029,34104101 +g1,14464:32583029,34104101 +) +h1,14464:6630773,34300709:0,0,0 +(1,14469:6630773,35648901:25952256,505283,134348 +h1,14467:6630773,35648901:983040,0,0 +k1,14467:8340225,35648901:256519 +k1,14467:9128241,35648901:256519 +k1,14467:10670576,35648901:256519 +k1,14467:14136392,35648901:256518 +k1,14467:15044339,35648901:256519 +k1,14467:18559963,35648901:256519 +k1,14467:20100988,35648901:256519 +k1,14467:22908168,35648901:256519 +k1,14467:24268969,35648901:256519 +k1,14467:25901088,35648901:256518 +k1,14467:29718178,35648901:256519 +k1,14467:30330557,35648901:256519 +k1,14467:32583029,35648901:0 +) +(1,14469:6630773,36490389:25952256,513147,134348 +k1,14467:7793885,36490389:228569 +k1,14467:8681746,36490389:228569 +k1,14467:11445249,36490389:228570 +k1,14467:12865263,36490389:228569 +k1,14467:14560528,36490389:228569 +k1,14467:17141184,36490389:228569 +k1,14467:18985872,36490389:228570 +k1,14467:21566528,36490389:228569 +k1,14467:22899379,36490389:228569 +k1,14467:23875714,36490389:228569 +k1,14467:27780854,36490389:228570 +k1,14467:28770951,36490389:228569 +k1,14467:31391584,36490389:228569 +k1,14467:32583029,36490389:0 +) +(1,14469:6630773,37331877:25952256,513147,126483 +k1,14467:9579827,37331877:227344 +k1,14467:14000821,37331877:227345 +k1,14467:17054077,37331877:227344 +k1,14467:18849043,37331877:227345 +k1,14467:22269301,37331877:227344 +k1,14467:23148073,37331877:227344 +k1,14467:26568332,37331877:227345 +k1,14467:28626752,37331877:227344 +k1,14467:29470135,37331877:227345 +k1,14467:31313597,37331877:227344 +k1,14469:32583029,37331877:0 +) +(1,14469:6630773,38173365:25952256,513147,134348 +k1,14467:9425064,38173365:251494 +k1,14467:12657136,38173365:251495 +k1,14467:15670973,38173365:251494 +k1,14467:17638855,38173365:251494 +k1,14467:18549642,38173365:251495 +k1,14467:20417254,38173365:251494 +k1,14467:23907537,38173365:251494 +k1,14467:24628925,38173365:251495 +k1,14467:25411916,38173365:251494 +k1,14467:28872708,38173365:251494 +k1,14467:29775631,38173365:251495 +k1,14467:31379788,38173365:251494 +k1,14467:32583029,38173365:0 +) +(1,14469:6630773,39014853:25952256,505283,134348 +g1,14467:8097468,39014853 +g1,14467:10800828,39014853 +g1,14467:12698095,39014853 +g1,14467:15755349,39014853 +g1,14467:16973663,39014853 +g1,14467:19119311,39014853 +g1,14467:20831766,39014853 +g1,14467:21647033,39014853 +g1,14467:25875415,39014853 +k1,14469:32583029,39014853:6707614 +g1,14469:32583029,39014853 +) +(1,14470:6630773,41106113:25952256,555811,12975 +(1,14470:6630773,41106113:2450326,521208,0 +g1,14470:6630773,41106113 +g1,14470:9081099,41106113 +) +g1,14470:13486495,41106113 +g1,14470:18295593,41106113 +k1,14470:32583029,41106113:12101679 +g1,14470:32583029,41106113 +) +(1,14473:6630773,42340817:25952256,505283,122846 +k1,14472:10873606,42340817:550535 +k1,14472:13040259,42340817:550535 +k1,14472:15493303,42340817:550534 +(1,14472:15493303,42340817:0,452978,115847 +r1,14472:23940940,42340817:8447637,568825,115847 +k1,14472:15493303,42340817:-8447637 +) +(1,14472:15493303,42340817:8447637,452978,115847 +k1,14472:15493303,42340817:3277 +h1,14472:23937663,42340817:0,411205,112570 +) +k1,14472:24665145,42340817:550535 +(1,14472:24665145,42340817:0,452978,122846 +r1,14472:32409359,42340817:7744214,575824,122846 +k1,14472:24665145,42340817:-7744214 +) +(1,14472:24665145,42340817:7744214,452978,122846 +k1,14472:24665145,42340817:3277 +h1,14472:32406082,42340817:0,411205,112570 +) +k1,14473:32583029,42340817:0 +) +(1,14473:6630773,43182305:25952256,505283,122846 +(1,14472:6630773,43182305:0,452978,122846 +r1,14472:14726699,43182305:8095926,575824,122846 +k1,14472:6630773,43182305:-8095926 +) +(1,14472:6630773,43182305:8095926,452978,122846 +k1,14472:6630773,43182305:3277 +h1,14472:14723422,43182305:0,411205,112570 +) +k1,14472:15528453,43182305:628084 +(1,14472:15528453,43182305:0,452978,122846 +r1,14472:23624379,43182305:8095926,575824,122846 +k1,14472:15528453,43182305:-8095926 +) +(1,14472:15528453,43182305:8095926,452978,122846 +k1,14472:15528453,43182305:3277 +h1,14472:23621102,43182305:0,411205,112570 +) +k1,14472:24426133,43182305:628084 +(1,14472:24426133,43182305:0,452978,115847 +r1,14472:30763500,43182305:6337367,568825,115847 +k1,14472:24426133,43182305:-6337367 +) +(1,14472:24426133,43182305:6337367,452978,115847 +k1,14472:24426133,43182305:3277 +h1,14472:30760223,43182305:0,411205,112570 +) +k1,14472:31391584,43182305:628084 +k1,14473:32583029,43182305:0 +) +(1,14473:6630773,44023793:25952256,505283,134348 +(1,14472:6630773,44023793:0,452978,115847 +r1,14472:14374987,44023793:7744214,568825,115847 +k1,14472:6630773,44023793:-7744214 +) +(1,14472:6630773,44023793:7744214,452978,115847 +k1,14472:6630773,44023793:3277 +h1,14472:14371710,44023793:0,411205,112570 +) +k1,14472:14728318,44023793:179661 +k1,14472:16187897,44023793:179661 +k1,14472:16723418,44023793:179661 +k1,14472:19314149,44023793:179661 +k1,14472:23064210,44023793:179660 +k1,14472:25903322,44023793:179661 +k1,14472:28718186,44023793:179661 +k1,14472:30070286,44023793:179661 +k1,14472:30932832,44023793:179661 +k1,14472:32583029,44023793:0 +) +(1,14473:6630773,44865281:25952256,505283,134348 +k1,14472:9458379,44865281:292673 +k1,14472:11308842,44865281:292672 +k1,14472:12593075,44865281:292673 +k1,14472:14398974,44865281:292673 +k1,14472:16085598,44865281:292673 +(1,14472:16085598,44865281:0,452978,115847 +r1,14472:18554135,44865281:2468537,568825,115847 +k1,14472:16085598,44865281:-2468537 +) +(1,14472:16085598,44865281:2468537,452978,115847 +k1,14472:16085598,44865281:3277 +h1,14472:18550858,44865281:0,411205,112570 +) +k1,14472:19020477,44865281:292672 +(1,14472:19020477,44865281:0,452978,115847 +r1,14472:20433878,44865281:1413401,568825,115847 +k1,14472:19020477,44865281:-1413401 +) +(1,14472:19020477,44865281:1413401,452978,115847 +k1,14472:19020477,44865281:3277 +h1,14472:20430601,44865281:0,411205,112570 +) +k1,14472:20726551,44865281:292673 +k1,14472:22210669,44865281:292673 +(1,14472:22210669,44865281:0,452978,115847 +r1,14472:25030918,44865281:2820249,568825,115847 +k1,14472:22210669,44865281:-2820249 +) +(1,14472:22210669,44865281:2820249,452978,115847 +k1,14472:22210669,44865281:3277 +h1,14472:25027641,44865281:0,411205,112570 +) +k1,14472:25323590,44865281:292672 +k1,14472:27179297,44865281:292673 +k1,14472:27959464,44865281:292579 +k1,14472:32583029,44865281:0 +) +(1,14473:6630773,45706769:25952256,513147,115847 +k1,14472:7756855,45706769:191539 +k1,14472:8615550,45706769:191539 +(1,14472:8615550,45706769:0,459977,115847 +r1,14472:10028951,45706769:1413401,575824,115847 +k1,14472:8615550,45706769:-1413401 +) +(1,14472:8615550,45706769:1413401,459977,115847 +k1,14472:8615550,45706769:3277 +h1,14472:10025674,45706769:0,411205,112570 +) +k1,14472:10220490,45706769:191539 +k1,14472:12314539,45706769:191539 +k1,14472:13037575,45706769:191539 +k1,14472:14514930,45706769:191539 +k1,14472:17664109,45706769:191539 +k1,14472:19672306,45706769:191539 +k1,14472:21766355,45706769:191539 +k1,14472:23104119,45706769:191539 +(1,14472:23104119,45706769:0,452978,115847 +r1,14472:31200045,45706769:8095926,568825,115847 +k1,14472:23104119,45706769:-8095926 +) +(1,14472:23104119,45706769:8095926,452978,115847 +k1,14472:23104119,45706769:3277 +h1,14472:31196768,45706769:0,411205,112570 +) +k1,14472:31391584,45706769:191539 +k1,14473:32583029,45706769:0 +) +] +(1,14474:32583029,45706769:0,0,0 +g1,14474:32583029,45706769 +) +) +] +(1,14474:6630773,47279633:25952256,0,0 +h1,14474:6630773,47279633:25952256,0,0 +) +] +h1,14474:4262630,4025873:0,0,0 +] +!25984 +}278 +Input:2169:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2170:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2171:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2172:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2173:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2174:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2175:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2176:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2177:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2178:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2179:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2180:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2181:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2182:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2183:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2184:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2185:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2186:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2187:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2188:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1852 +{279 +[1,14516:4262630,47279633:28320399,43253760,0 +(1,14516:4262630,4025873:0,0,0 +[1,14516:-473657,4025873:25952256,0,0 +(1,14516:-473657,-710414:25952256,0,0 +h1,14516:-473657,-710414:0,0,0 +(1,14516:-473657,-710414:0,0,0 +(1,14516:-473657,-710414:0,0,0 +g1,14516:-473657,-710414 +(1,14516:-473657,-710414:65781,0,65781 +g1,14516:-407876,-710414 +[1,14516:-407876,-644633:0,0,0 ] ) -k1,14488:-473657,-710414:-65781 +k1,14516:-473657,-710414:-65781 ) ) -k1,14488:25478599,-710414:25952256 -g1,14488:25478599,-710414 +k1,14516:25478599,-710414:25952256 +g1,14516:25478599,-710414 ) ] ) -[1,14488:6630773,47279633:25952256,43253760,0 -[1,14488:6630773,4812305:25952256,786432,0 -(1,14488:6630773,4812305:25952256,505283,134348 -(1,14488:6630773,4812305:25952256,505283,134348 -g1,14488:3078558,4812305 -[1,14488:3078558,4812305:0,0,0 -(1,14488:3078558,2439708:0,1703936,0 -k1,14488:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14488:2537886,2439708:1179648,16384,0 +[1,14516:6630773,47279633:25952256,43253760,0 +[1,14516:6630773,4812305:25952256,786432,0 +(1,14516:6630773,4812305:25952256,513147,134348 +(1,14516:6630773,4812305:25952256,513147,134348 +g1,14516:3078558,4812305 +[1,14516:3078558,4812305:0,0,0 +(1,14516:3078558,2439708:0,1703936,0 +k1,14516:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14516:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14488:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14516:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14488:3078558,4812305:0,0,0 -(1,14488:3078558,2439708:0,1703936,0 -g1,14488:29030814,2439708 -g1,14488:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14488:36151628,1915420:16384,1179648,0 +[1,14516:3078558,4812305:0,0,0 +(1,14516:3078558,2439708:0,1703936,0 +g1,14516:29030814,2439708 +g1,14516:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14516:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14488:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14516:37855564,2439708:1179648,16384,0 ) ) -k1,14488:3078556,2439708:-34777008 +k1,14516:3078556,2439708:-34777008 ) ] -[1,14488:3078558,4812305:0,0,0 -(1,14488:3078558,49800853:0,16384,2228224 -k1,14488:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14488:2537886,49800853:1179648,16384,0 +[1,14516:3078558,4812305:0,0,0 +(1,14516:3078558,49800853:0,16384,2228224 +k1,14516:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14516:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14488:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14516:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14488:3078558,4812305:0,0,0 -(1,14488:3078558,49800853:0,16384,2228224 -g1,14488:29030814,49800853 -g1,14488:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14488:36151628,51504789:16384,1179648,0 +[1,14516:3078558,4812305:0,0,0 +(1,14516:3078558,49800853:0,16384,2228224 +g1,14516:29030814,49800853 +g1,14516:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14516:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14488:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14516:37855564,49800853:1179648,16384,0 ) ) -k1,14488:3078556,49800853:-34777008 +k1,14516:3078556,49800853:-34777008 ) ] -g1,14488:6630773,4812305 -g1,14488:6630773,4812305 -g1,14488:9113932,4812305 -g1,14488:13027742,4812305 -k1,14488:31387652,4812305:18359910 +g1,14516:6630773,4812305 +k1,14516:25712890,4812305:17886740 +g1,14516:29057847,4812305 +g1,14516:29873114,4812305 ) ) ] -[1,14488:6630773,45706769:25952256,40108032,0 -(1,14488:6630773,45706769:25952256,40108032,0 -(1,14488:6630773,45706769:0,0,0 -g1,14488:6630773,45706769 +[1,14516:6630773,45706769:25952256,40108032,0 +(1,14516:6630773,45706769:25952256,40108032,0 +(1,14516:6630773,45706769:0,0,0 +g1,14516:6630773,45706769 ) -[1,14488:6630773,45706769:25952256,40108032,0 -(1,14449:6630773,6254097:25952256,513147,126483 -(1,14448:6630773,6254097:0,452978,115847 -r1,14448:14726699,6254097:8095926,568825,115847 -k1,14448:6630773,6254097:-8095926 +[1,14516:6630773,45706769:25952256,40108032,0 +(1,14473:6630773,6254097:25952256,513147,126483 +(1,14472:6630773,6254097:0,452978,115847 +r1,14472:14726699,6254097:8095926,568825,115847 +k1,14472:6630773,6254097:-8095926 ) -(1,14448:6630773,6254097:8095926,452978,115847 -k1,14448:6630773,6254097:3277 -h1,14448:14723422,6254097:0,411205,112570 +(1,14472:6630773,6254097:8095926,452978,115847 +k1,14472:6630773,6254097:3277 +h1,14472:14723422,6254097:0,411205,112570 ) -k1,14448:15184053,6254097:457354 -k1,14448:16832852,6254097:457354 -(1,14448:16832852,6254097:0,452978,115847 -r1,14448:23873643,6254097:7040791,568825,115847 -k1,14448:16832852,6254097:-7040791 -) -(1,14448:16832852,6254097:7040791,452978,115847 -k1,14448:16832852,6254097:3277 -h1,14448:23870366,6254097:0,411205,112570 -) -k1,14448:24330997,6254097:457354 -k1,14448:27218426,6254097:457354 -k1,14448:30201538,6254097:457354 -k1,14448:31923737,6254097:457354 -k1,14448:32583029,6254097:0 -) -(1,14449:6630773,7095585:25952256,505283,126483 -g1,14448:9191264,7095585 -g1,14448:11245162,7095585 -g1,14448:12253761,7095585 -k1,14449:32583030,7095585:17635084 -g1,14449:32583030,7095585 -) -(1,14450:6630773,9186845:25952256,555811,139132 -(1,14450:6630773,9186845:2450326,534184,12975 -g1,14450:6630773,9186845 -g1,14450:9081099,9186845 -) -g1,14450:12170860,9186845 -k1,14450:32583029,9186845:18226412 -g1,14450:32583029,9186845 -) -(1,14453:6630773,10421549:25952256,513147,134348 -k1,14452:7465003,10421549:206395 -k1,14452:8690482,10421549:206394 -k1,14452:10263958,10421549:206395 -k1,14452:11129645,10421549:206395 -k1,14452:13796261,10421549:206394 -k1,14452:16078837,10421549:206395 -k1,14452:17304317,10421549:206395 -k1,14452:20318273,10421549:206394 -k1,14452:21056165,10421549:206395 -k1,14452:22419270,10421549:206395 -k1,14452:24646794,10421549:206394 -k1,14452:25504617,10421549:206395 -k1,14452:26730097,10421549:206395 -k1,14452:28499525,10421549:206394 -k1,14452:29747942,10421549:206395 -k1,14452:32583029,10421549:0 -) -(1,14453:6630773,11263037:25952256,513147,134348 -k1,14452:7309685,11263037:212951 -k1,14452:8390987,11263037:212950 -k1,14452:10000510,11263037:212951 -k1,14452:11232545,11263037:212950 -(1,14452:11232545,11263037:0,452978,115847 -r1,14452:12997658,11263037:1765113,568825,115847 -k1,14452:11232545,11263037:-1765113 -) -(1,14452:11232545,11263037:1765113,452978,115847 -k1,14452:11232545,11263037:3277 -h1,14452:12994381,11263037:0,411205,112570 -) -k1,14452:13210609,11263037:212951 -k1,14452:14106444,11263037:212950 -(1,14452:14106444,11263037:0,459977,115847 -r1,14452:15519845,11263037:1413401,575824,115847 -k1,14452:14106444,11263037:-1413401 -) -(1,14452:14106444,11263037:1413401,459977,115847 -k1,14452:14106444,11263037:3277 -h1,14452:15516568,11263037:0,411205,112570 -) -k1,14452:15732796,11263037:212951 -k1,14452:18732992,11263037:212950 -k1,14452:19597371,11263037:212951 -k1,14452:20166181,11263037:212950 -k1,14452:22890472,11263037:212951 -k1,14452:24838815,11263037:212950 -(1,14452:24838815,11263037:0,452978,115847 -r1,14452:32583029,11263037:7744214,568825,115847 -k1,14452:24838815,11263037:-7744214 -) -(1,14452:24838815,11263037:7744214,452978,115847 -k1,14452:24838815,11263037:3277 -h1,14452:32579752,11263037:0,411205,112570 -) -k1,14452:32583029,11263037:0 -) -(1,14453:6630773,12104525:25952256,505283,126483 -k1,14452:7547326,12104525:233668 -(1,14452:7547326,12104525:0,459977,115847 -r1,14452:14939828,12104525:7392502,575824,115847 -k1,14452:7547326,12104525:-7392502 -) -(1,14452:7547326,12104525:7392502,459977,115847 -k1,14452:7547326,12104525:3277 -h1,14452:14936551,12104525:0,411205,112570 -) -k1,14452:15347165,12104525:233667 -k1,14452:16599918,12104525:233668 -k1,14452:19418981,12104525:233668 -k1,14452:22163988,12104525:233667 -k1,14452:24019672,12104525:233668 -k1,14452:26587732,12104525:233668 -k1,14452:29193147,12104525:233667 -k1,14452:30966911,12104525:233668 -k1,14452:32583029,12104525:0 -) -(1,14453:6630773,12946013:25952256,513147,134348 -k1,14452:10366197,12946013:149294 -k1,14452:11143325,12946013:149293 -k1,14452:12311704,12946013:149294 -k1,14452:13828079,12946013:149294 -k1,14452:14636665,12946013:149294 -k1,14452:17593520,12946013:149293 -(1,14452:17593520,12946013:0,452978,115847 -r1,14452:19358633,12946013:1765113,568825,115847 -k1,14452:17593520,12946013:-1765113 -) -(1,14452:17593520,12946013:1765113,452978,115847 -k1,14452:17593520,12946013:3277 -h1,14452:19355356,12946013:0,411205,112570 -) -k1,14452:19681597,12946013:149294 -k1,14452:20849976,12946013:149294 -k1,14452:23510610,12946013:149294 -k1,14452:25281919,12946013:149293 -k1,14452:27802961,12946013:149294 -k1,14452:30572384,12946013:149294 -k1,14452:32583029,12946013:0 -) -(1,14453:6630773,13787501:25952256,505283,134348 -g1,14452:7446040,13787501 -g1,14452:8664354,13787501 -g1,14452:10644196,13787501 -g1,14452:11241884,13787501 -g1,14452:12092541,13787501 -k1,14453:32583030,13787501:19918360 -g1,14453:32583030,13787501 -) -(1,14455:6630773,14628989:25952256,513147,134348 -h1,14454:6630773,14628989:983040,0,0 -k1,14454:8711540,14628989:144178 -k1,14454:10785098,14628989:144178 -k1,14454:11285136,14628989:144178 -k1,14454:12818677,14628989:144178 -k1,14454:14839151,14628989:144178 -k1,14454:18345327,14628989:144179 -k1,14454:18845365,14628989:144178 -k1,14454:21500883,14628989:144178 -(1,14454:21500883,14628989:0,452978,115847 -r1,14454:23617708,14628989:2116825,568825,115847 -k1,14454:21500883,14628989:-2116825 -) -(1,14454:21500883,14628989:2116825,452978,115847 -k1,14454:21500883,14628989:3277 -h1,14454:23614431,14628989:0,411205,112570 -) -k1,14454:23761886,14628989:144178 -k1,14454:27268061,14628989:144178 -k1,14454:30386918,14628989:144178 -k1,14454:32583029,14628989:0 -) -(1,14455:6630773,15470477:25952256,513147,126483 -k1,14454:11058688,15470477:297181 -k1,14454:12042030,15470477:297180 -k1,14454:13358296,15470477:297181 -k1,14454:15723792,15470477:297180 -k1,14454:16680265,15470477:297181 -k1,14454:18593563,15470477:297180 -k1,14454:22303204,15470477:297181 -k1,14454:24738168,15470477:297180 -k1,14454:25686777,15470477:297181 -k1,14454:26572470,15470477:297180 -k1,14454:27823200,15470477:297181 -k1,14454:29554308,15470477:297180 -k1,14454:30943974,15470477:297181 -k1,14454:32583029,15470477:0 -) -(1,14455:6630773,16311965:25952256,505283,126483 -g1,14454:9244348,16311965 -g1,14454:10059615,16311965 -g1,14454:11277929,16311965 -k1,14455:32583028,16311965:19854132 -g1,14455:32583028,16311965 -) -v1,14457:6630773,17502431:0,393216,0 -(1,14465:6630773,20482240:25952256,3373025,196608 -g1,14465:6630773,20482240 -g1,14465:6630773,20482240 -g1,14465:6434165,20482240 -(1,14465:6434165,20482240:0,3373025,196608 -r1,14465:32779637,20482240:26345472,3569633,196608 -k1,14465:6434165,20482240:-26345472 -) -(1,14465:6434165,20482240:26345472,3373025,196608 -[1,14465:6630773,20482240:25952256,3176417,0 -(1,14459:6630773,17716341:25952256,410518,101187 -(1,14458:6630773,17716341:0,0,0 -g1,14458:6630773,17716341 -g1,14458:6630773,17716341 -g1,14458:6303093,17716341 -(1,14458:6303093,17716341:0,0,0 -) -g1,14458:6630773,17716341 -) -g1,14459:8211502,17716341 -g1,14459:9159940,17716341 -g1,14459:13269835,17716341 -g1,14459:13902127,17716341 -g1,14459:15799002,17716341 -g1,14459:16431294,17716341 -g1,14459:17063586,17716341 -g1,14459:20541189,17716341 -g1,14459:22754209,17716341 -g1,14459:23386501,17716341 -g1,14459:27496396,17716341 -g1,14459:30341708,17716341 -h1,14459:31290145,17716341:0,0,0 -k1,14459:32583029,17716341:1292884 -g1,14459:32583029,17716341 -) -(1,14460:6630773,18382519:25952256,0,0 -h1,14460:6630773,18382519:0,0,0 -h1,14460:6630773,18382519:0,0,0 -k1,14460:32583029,18382519:25952256 -g1,14460:32583029,18382519 -) -(1,14461:6630773,19048697:25952256,410518,107478 -h1,14461:6630773,19048697:0,0,0 -g1,14461:10740667,19048697 -g1,14461:12953687,19048697 -g1,14461:13902125,19048697 -g1,14461:15798999,19048697 -g1,14461:16431291,19048697 -g1,14461:19276602,19048697 -h1,14461:19592748,19048697:0,0,0 -k1,14461:32583029,19048697:12990281 -g1,14461:32583029,19048697 -) -(1,14462:6630773,19714875:25952256,404226,107478 -h1,14462:6630773,19714875:0,0,0 -g1,14462:6946919,19714875 -g1,14462:7263065,19714875 -g1,14462:11372959,19714875 -h1,14462:11689105,19714875:0,0,0 -k1,14462:32583029,19714875:20893924 -g1,14462:32583029,19714875 -) -(1,14463:6630773,20381053:25952256,404226,101187 -h1,14463:6630773,20381053:0,0,0 -g1,14463:6946919,20381053 -g1,14463:7263065,20381053 -k1,14463:7263065,20381053:0 -h1,14463:14218270,20381053:0,0,0 -k1,14463:32583030,20381053:18364760 -g1,14463:32583030,20381053 -) -] -) -g1,14465:32583029,20482240 -g1,14465:6630773,20482240 -g1,14465:6630773,20482240 -g1,14465:32583029,20482240 -g1,14465:32583029,20482240 -) -h1,14465:6630773,20678848:0,0,0 -(1,14468:6630773,30331361:25952256,9062689,0 -k1,14468:10523651,30331361:3892878 -h1,14467:10523651,30331361:0,0,0 -(1,14467:10523651,30331361:18166500,9062689,0 -(1,14467:10523651,30331361:18167381,9062712,0 -(1,14467:10523651,30331361:18167381,9062712,0 -(1,14467:10523651,30331361:0,9062712,0 -(1,14467:10523651,30331361:0,14155776,0 -(1,14467:10523651,30331361:28377088,14155776,0 -) -k1,14467:10523651,30331361:-28377088 -) -) -g1,14467:28691032,30331361 -) -) -) -g1,14468:28690151,30331361 -k1,14468:32583029,30331361:3892878 -) -v1,14476:6630773,31697137:0,393216,0 -(1,14479:6630773,35666145:25952256,4362224,616038 -g1,14479:6630773,35666145 -(1,14479:6630773,35666145:25952256,4362224,616038 -(1,14479:6630773,36282183:25952256,4978262,0 -[1,14479:6630773,36282183:25952256,4978262,0 -(1,14479:6630773,36255969:25952256,4925834,0 -r1,14479:6656987,36255969:26214,4925834,0 -[1,14479:6656987,36255969:25899828,4925834,0 -(1,14479:6656987,35666145:25899828,3746186,0 -[1,14479:7246811,35666145:24720180,3746186,0 -(1,14477:7246811,33007333:24720180,1087374,126483 -k1,14476:8677751,33007333:221237 -k1,14476:10319809,33007333:221237 -k1,14476:12033957,33007333:221238 -k1,14476:13274279,33007333:221237 -k1,14476:14772813,33007333:221237 -k1,14476:16554462,33007333:221237 -k1,14476:17241661,33007333:221238 -k1,14476:18481983,33007333:221237 -k1,14476:21163442,33007333:221237 -k1,14476:22956888,33007333:221237 -k1,14476:23709622,33007333:221237 -k1,14476:26276394,33007333:221238 -k1,14476:28065252,33007333:221237 -k1,14476:29305574,33007333:221237 -k1,14476:31966991,33007333:0 -) -(1,14477:7246811,33848821:24720180,505283,126483 -g1,14476:9628389,33848821 -g1,14476:11077390,33848821 -g1,14476:12468064,33848821 -g1,14476:14634028,33848821 -g1,14476:15852342,33848821 -g1,14476:18712988,33848821 -k1,14477:31966991,33848821:11584146 -g1,14477:31966991,33848821 -) -(1,14479:7246811,34690309:24720180,505283,134348 -h1,14478:7246811,34690309:983040,0,0 -k1,14478:10210853,34690309:206287 -k1,14478:12152533,34690309:206287 -k1,14478:13377905,34690309:206287 -k1,14478:16044414,34690309:206287 -k1,14478:17996580,34690309:206287 -k1,14478:19533248,34690309:206287 -k1,14478:21695786,34690309:206288 -k1,14478:23072546,34690309:206287 -k1,14478:24809099,34690309:206287 -k1,14478:25666814,34690309:206287 -k1,14478:28113777,34690309:206287 -k1,14478:29339149,34690309:206287 -k1,14478:31041623,34690309:206287 -k1,14479:31966991,34690309:0 -) -(1,14479:7246811,35531797:24720180,505283,134348 -g1,14478:9395081,35531797 -g1,14478:11623305,35531797 -g1,14478:12473962,35531797 -g1,14478:15293320,35531797 -g1,14478:15848409,35531797 -g1,14478:17324935,35531797 -g1,14478:18918115,35531797 -g1,14478:20889438,35531797 -g1,14478:22280112,35531797 -g1,14478:24576493,35531797 -k1,14479:31966991,35531797:5044964 -g1,14479:31966991,35531797 -) -] -) -] -r1,14479:32583029,36255969:26214,4925834,0 -) -] -) -) -g1,14479:32583029,35666145 -) -h1,14479:6630773,36282183:0,0,0 -(1,14485:6630773,39614039:25952256,32768,229376 -(1,14485:6630773,39614039:0,32768,229376 -(1,14485:6630773,39614039:5505024,32768,229376 -r1,14485:12135797,39614039:5505024,262144,229376 -) -k1,14485:6630773,39614039:-5505024 -) -(1,14485:6630773,39614039:25952256,32768,0 -r1,14485:32583029,39614039:25952256,32768,0 -) -) -(1,14485:6630773,41218367:25952256,606339,161218 -(1,14485:6630773,41218367:1974731,582746,14155 -g1,14485:6630773,41218367 -g1,14485:8605504,41218367 -) -g1,14485:11742582,41218367 -k1,14485:32583029,41218367:16172973 -g1,14485:32583029,41218367 -) -(1,14488:6630773,42453071:25952256,513147,126483 -k1,14487:8065168,42453071:237708 -k1,14487:9628015,42453071:237709 -k1,14487:10525015,42453071:237708 -k1,14487:14553325,42453071:237708 -k1,14487:15322531,42453071:237709 -k1,14487:16844745,42453071:237708 -k1,14487:18462642,42453071:237709 -k1,14487:19897693,42453071:237708 -k1,14487:21412698,42453071:237708 -k1,14487:24519573,42453071:237709 -k1,14487:26041787,42453071:237708 -k1,14487:27271055,42453071:237708 -k1,14487:28575035,42453071:237709 -k1,14487:31227089,42453071:237708 -k1,14488:32583029,42453071:0 -) -(1,14488:6630773,43294559:25952256,505283,134348 -k1,14487:8962963,43294559:211445 -k1,14487:10568360,43294559:211446 -(1,14487:10568360,43294559:0,452978,115847 -r1,14487:11981761,43294559:1413401,568825,115847 -k1,14487:10568360,43294559:-1413401 -) -(1,14487:10568360,43294559:1413401,452978,115847 -k1,14487:10568360,43294559:3277 -h1,14487:11978484,43294559:0,411205,112570 -) -k1,14487:12366876,43294559:211445 -k1,14487:14463792,43294559:211445 -k1,14487:15543590,43294559:211446 -k1,14487:17523852,43294559:211445 -k1,14487:18834991,43294559:211445 -k1,14487:23384919,43294559:211445 -k1,14487:25089931,43294559:211446 -k1,14487:25987538,43294559:211445 -k1,14487:28377400,43294559:211445 -k1,14487:30102072,43294559:211446 -k1,14487:30964945,43294559:211445 -k1,14488:32583029,43294559:0 -) -(1,14488:6630773,44136047:25952256,513147,134348 -k1,14487:8280314,44136047:197263 -k1,14487:10169717,44136047:197263 -k1,14487:12642391,44136047:197264 -k1,14487:13498946,44136047:197263 -k1,14487:14715294,44136047:197263 -k1,14487:16475591,44136047:197263 -k1,14487:19070161,44136047:197263 -k1,14487:21285934,44136047:197264 -k1,14487:23227765,44136047:197263 -k1,14487:24195731,44136047:197263 -k1,14487:25819057,44136047:197263 -k1,14487:27127812,44136047:197264 -k1,14487:28882866,44136047:197263 -k1,14487:30071689,44136047:197263 -k1,14488:32583029,44136047:0 -) -(1,14488:6630773,44977535:25952256,505283,126483 -k1,14487:7974971,44977535:242538 -k1,14487:8868936,44977535:242537 -k1,14487:10130559,44977535:242538 -k1,14487:13265201,44977535:242538 -k1,14487:17245912,44977535:242537 -k1,14487:19001676,44977535:242538 -k1,14487:19895642,44977535:242538 -k1,14487:21415476,44977535:242537 -k1,14487:22677099,44977535:242538 -k1,14487:27165059,44977535:242538 -k1,14487:28479765,44977535:242537 -k1,14487:29713863,44977535:242538 -k1,14487:32583029,44977535:0 -) -] -(1,14488:32583029,45706769:0,0,0 -g1,14488:32583029,45706769 -) -) -] -(1,14488:6630773,47279633:25952256,0,0 -h1,14488:6630773,47279633:25952256,0,0 -) -] -h1,14488:4262630,4025873:0,0,0 -] -!17712 -}278 -Input:2192:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2193:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2194:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2195:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2196:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2197:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2198:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{279 -[1,14524:4262630,47279633:28320399,43253760,0 -(1,14524:4262630,4025873:0,0,0 -[1,14524:-473657,4025873:25952256,0,0 -(1,14524:-473657,-710414:25952256,0,0 -h1,14524:-473657,-710414:0,0,0 -(1,14524:-473657,-710414:0,0,0 -(1,14524:-473657,-710414:0,0,0 -g1,14524:-473657,-710414 -(1,14524:-473657,-710414:65781,0,65781 -g1,14524:-407876,-710414 -[1,14524:-407876,-644633:0,0,0 +k1,14472:14962664,6254097:235965 +k1,14472:16190189,6254097:235965 +k1,14472:18280823,6254097:235965 +k1,14472:19326158,6254097:235965 +k1,14472:20581208,6254097:235965 +k1,14472:21909659,6254097:235966 +k1,14472:22804916,6254097:235965 +k1,14472:26771190,6254097:235965 +k1,14472:29527670,6254097:235965 +k1,14472:30422927,6254097:235965 +k1,14472:31923737,6254097:235965 +k1,14472:32583029,6254097:0 +) +(1,14473:6630773,7095585:25952256,513147,134348 +k1,14472:8439458,7095585:192567 +k1,14472:11621776,7095585:192566 +k1,14472:14049776,7095585:192567 +k1,14472:14893770,7095585:192566 +k1,14472:16682794,7095585:192567 +k1,14472:18153967,7095585:192566 +k1,14472:21026957,7095585:192567 +k1,14472:23105650,7095585:192567 +k1,14472:25969463,7095585:192566 +k1,14472:29524682,7095585:192567 +k1,14472:30400133,7095585:192566 +k1,14472:31540351,7095585:192567 +k1,14473:32583029,7095585:0 +) +(1,14473:6630773,7937073:25952256,513147,134348 +g1,14472:8220676,7937073 +g1,14472:10319138,7937073 +g1,14472:13498944,7937073 +g1,14472:16460516,7937073 +g1,14472:18376133,7937073 +g1,14472:19234654,7937073 +g1,14472:21050001,7937073 +k1,14473:32583029,7937073:8294239 +g1,14473:32583029,7937073 +) +(1,14474:6630773,10028333:25952256,555811,12975 +(1,14474:6630773,10028333:2450326,534184,12975 +g1,14474:6630773,10028333 +g1,14474:9081099,10028333 +) +g1,14474:12304226,10028333 +g1,14474:17113324,10028333 +k1,14474:32583029,10028333:13283948 +g1,14474:32583029,10028333 +) +(1,14477:6630773,11263037:25952256,505283,122846 +k1,14476:8843077,11263037:474289 +k1,14476:11219876,11263037:474289 +(1,14476:11219876,11263037:0,452978,115847 +r1,14476:18964090,11263037:7744214,568825,115847 +k1,14476:11219876,11263037:-7744214 +) +(1,14476:11219876,11263037:7744214,452978,115847 +k1,14476:11219876,11263037:3277 +h1,14476:18960813,11263037:0,411205,112570 +) +k1,14476:19612048,11263037:474288 +(1,14476:19612048,11263037:0,452978,115847 +r1,14476:25597703,11263037:5985655,568825,115847 +k1,14476:19612048,11263037:-5985655 +) +(1,14476:19612048,11263037:5985655,452978,115847 +k1,14476:19612048,11263037:3277 +h1,14476:25594426,11263037:0,411205,112570 +) +k1,14476:26245662,11263037:474289 +(1,14476:26245662,11263037:0,452978,122846 +r1,14476:32583029,11263037:6337367,575824,122846 +k1,14476:26245662,11263037:-6337367 +) +(1,14476:26245662,11263037:6337367,452978,122846 +k1,14476:26245662,11263037:3277 +h1,14476:32579752,11263037:0,411205,112570 +) +k1,14476:32583029,11263037:0 +) +(1,14477:6630773,12104525:25952256,513147,134348 +k1,14476:8345326,12104525:722993 +k1,14476:10581545,12104525:722993 +k1,14476:12698489,12104525:722993 +k1,14476:16868020,12104525:722993 +k1,14476:18980377,12104525:722994 +k1,14476:21741540,12104525:722993 +k1,14476:23150695,12104525:722993 +k1,14476:26271650,12104525:722993 +k1,14476:28811301,12104525:722993 +k1,14476:31436804,12104525:722993 +k1,14477:32583029,12104525:0 +) +(1,14477:6630773,12946013:25952256,513147,126483 +(1,14476:6630773,12946013:0,452978,115847 +r1,14476:14726699,12946013:8095926,568825,115847 +k1,14476:6630773,12946013:-8095926 +) +(1,14476:6630773,12946013:8095926,452978,115847 +k1,14476:6630773,12946013:3277 +h1,14476:14723422,12946013:0,411205,112570 +) +k1,14476:15184053,12946013:457354 +k1,14476:16832852,12946013:457354 +(1,14476:16832852,12946013:0,452978,115847 +r1,14476:23873643,12946013:7040791,568825,115847 +k1,14476:16832852,12946013:-7040791 +) +(1,14476:16832852,12946013:7040791,452978,115847 +k1,14476:16832852,12946013:3277 +h1,14476:23870366,12946013:0,411205,112570 +) +k1,14476:24330997,12946013:457354 +k1,14476:27218426,12946013:457354 +k1,14476:30201538,12946013:457354 +k1,14476:31923737,12946013:457354 +k1,14476:32583029,12946013:0 +) +(1,14477:6630773,13787501:25952256,505283,126483 +g1,14476:9191264,13787501 +g1,14476:11245162,13787501 +g1,14476:12253761,13787501 +k1,14477:32583030,13787501:17635084 +g1,14477:32583030,13787501 +) +(1,14478:6630773,15878761:25952256,555811,139132 +(1,14478:6630773,15878761:2450326,534184,12975 +g1,14478:6630773,15878761 +g1,14478:9081099,15878761 +) +g1,14478:12170860,15878761 +k1,14478:32583029,15878761:18226412 +g1,14478:32583029,15878761 +) +(1,14481:6630773,17113465:25952256,513147,134348 +k1,14480:7465003,17113465:206395 +k1,14480:8690482,17113465:206394 +k1,14480:10263958,17113465:206395 +k1,14480:11129645,17113465:206395 +k1,14480:13796261,17113465:206394 +k1,14480:16078837,17113465:206395 +k1,14480:17304317,17113465:206395 +k1,14480:20318273,17113465:206394 +k1,14480:21056165,17113465:206395 +k1,14480:22419270,17113465:206395 +k1,14480:24646794,17113465:206394 +k1,14480:25504617,17113465:206395 +k1,14480:26730097,17113465:206395 +k1,14480:28499525,17113465:206394 +k1,14480:29747942,17113465:206395 +k1,14480:32583029,17113465:0 +) +(1,14481:6630773,17954953:25952256,513147,134348 +k1,14480:7309685,17954953:212951 +k1,14480:8390987,17954953:212950 +k1,14480:10000510,17954953:212951 +k1,14480:11232545,17954953:212950 +(1,14480:11232545,17954953:0,452978,115847 +r1,14480:12997658,17954953:1765113,568825,115847 +k1,14480:11232545,17954953:-1765113 +) +(1,14480:11232545,17954953:1765113,452978,115847 +k1,14480:11232545,17954953:3277 +h1,14480:12994381,17954953:0,411205,112570 +) +k1,14480:13210609,17954953:212951 +k1,14480:14106444,17954953:212950 +(1,14480:14106444,17954953:0,459977,115847 +r1,14480:15519845,17954953:1413401,575824,115847 +k1,14480:14106444,17954953:-1413401 +) +(1,14480:14106444,17954953:1413401,459977,115847 +k1,14480:14106444,17954953:3277 +h1,14480:15516568,17954953:0,411205,112570 +) +k1,14480:15732796,17954953:212951 +k1,14480:18732992,17954953:212950 +k1,14480:19597371,17954953:212951 +k1,14480:20166181,17954953:212950 +k1,14480:22890472,17954953:212951 +k1,14480:24838815,17954953:212950 +(1,14480:24838815,17954953:0,452978,115847 +r1,14480:32583029,17954953:7744214,568825,115847 +k1,14480:24838815,17954953:-7744214 +) +(1,14480:24838815,17954953:7744214,452978,115847 +k1,14480:24838815,17954953:3277 +h1,14480:32579752,17954953:0,411205,112570 +) +k1,14480:32583029,17954953:0 +) +(1,14481:6630773,18796441:25952256,505283,126483 +k1,14480:7547326,18796441:233668 +(1,14480:7547326,18796441:0,459977,115847 +r1,14480:14939828,18796441:7392502,575824,115847 +k1,14480:7547326,18796441:-7392502 +) +(1,14480:7547326,18796441:7392502,459977,115847 +k1,14480:7547326,18796441:3277 +h1,14480:14936551,18796441:0,411205,112570 +) +k1,14480:15347165,18796441:233667 +k1,14480:16599918,18796441:233668 +k1,14480:19418981,18796441:233668 +k1,14480:22163988,18796441:233667 +k1,14480:24019672,18796441:233668 +k1,14480:26587732,18796441:233668 +k1,14480:29193147,18796441:233667 +k1,14480:30966911,18796441:233668 +k1,14480:32583029,18796441:0 +) +(1,14481:6630773,19637929:25952256,513147,134348 +k1,14480:10366197,19637929:149294 +k1,14480:11143325,19637929:149293 +k1,14480:12311704,19637929:149294 +k1,14480:13828079,19637929:149294 +k1,14480:14636665,19637929:149294 +k1,14480:17593520,19637929:149293 +(1,14480:17593520,19637929:0,452978,115847 +r1,14480:19358633,19637929:1765113,568825,115847 +k1,14480:17593520,19637929:-1765113 +) +(1,14480:17593520,19637929:1765113,452978,115847 +k1,14480:17593520,19637929:3277 +h1,14480:19355356,19637929:0,411205,112570 +) +k1,14480:19681597,19637929:149294 +k1,14480:20849976,19637929:149294 +k1,14480:23510610,19637929:149294 +k1,14480:25281919,19637929:149293 +k1,14480:27802961,19637929:149294 +k1,14480:30572384,19637929:149294 +k1,14480:32583029,19637929:0 +) +(1,14481:6630773,20479417:25952256,505283,134348 +g1,14480:7446040,20479417 +g1,14480:8664354,20479417 +g1,14480:10644196,20479417 +g1,14480:11241884,20479417 +g1,14480:12092541,20479417 +k1,14481:32583030,20479417:19918360 +g1,14481:32583030,20479417 +) +(1,14483:6630773,21320905:25952256,513147,134348 +h1,14482:6630773,21320905:983040,0,0 +k1,14482:8711540,21320905:144178 +k1,14482:10785098,21320905:144178 +k1,14482:11285136,21320905:144178 +k1,14482:12818677,21320905:144178 +k1,14482:14839151,21320905:144178 +k1,14482:18345327,21320905:144179 +k1,14482:18845365,21320905:144178 +k1,14482:21500883,21320905:144178 +(1,14482:21500883,21320905:0,452978,115847 +r1,14482:23617708,21320905:2116825,568825,115847 +k1,14482:21500883,21320905:-2116825 +) +(1,14482:21500883,21320905:2116825,452978,115847 +k1,14482:21500883,21320905:3277 +h1,14482:23614431,21320905:0,411205,112570 +) +k1,14482:23761886,21320905:144178 +k1,14482:27268061,21320905:144178 +k1,14482:30386918,21320905:144178 +k1,14482:32583029,21320905:0 +) +(1,14483:6630773,22162393:25952256,513147,126483 +k1,14482:11058688,22162393:297181 +k1,14482:12042030,22162393:297180 +k1,14482:13358296,22162393:297181 +k1,14482:15723792,22162393:297180 +k1,14482:16680265,22162393:297181 +k1,14482:18593563,22162393:297180 +k1,14482:22303204,22162393:297181 +k1,14482:24738168,22162393:297180 +k1,14482:25686777,22162393:297181 +k1,14482:26572470,22162393:297180 +k1,14482:27823200,22162393:297181 +k1,14482:29554308,22162393:297180 +k1,14482:30943974,22162393:297181 +k1,14482:32583029,22162393:0 +) +(1,14483:6630773,23003881:25952256,505283,126483 +g1,14482:9244348,23003881 +g1,14482:10059615,23003881 +g1,14482:11277929,23003881 +k1,14483:32583028,23003881:19854132 +g1,14483:32583028,23003881 +) +v1,14485:6630773,24194347:0,393216,0 +(1,14493:6630773,27174156:25952256,3373025,196608 +g1,14493:6630773,27174156 +g1,14493:6630773,27174156 +g1,14493:6434165,27174156 +(1,14493:6434165,27174156:0,3373025,196608 +r1,14493:32779637,27174156:26345472,3569633,196608 +k1,14493:6434165,27174156:-26345472 +) +(1,14493:6434165,27174156:26345472,3373025,196608 +[1,14493:6630773,27174156:25952256,3176417,0 +(1,14487:6630773,24408257:25952256,410518,101187 +(1,14486:6630773,24408257:0,0,0 +g1,14486:6630773,24408257 +g1,14486:6630773,24408257 +g1,14486:6303093,24408257 +(1,14486:6303093,24408257:0,0,0 +) +g1,14486:6630773,24408257 +) +g1,14487:8211502,24408257 +g1,14487:9159940,24408257 +g1,14487:13269835,24408257 +g1,14487:13902127,24408257 +g1,14487:15799002,24408257 +g1,14487:16431294,24408257 +g1,14487:17063586,24408257 +g1,14487:20541189,24408257 +g1,14487:22754209,24408257 +g1,14487:23386501,24408257 +g1,14487:27496396,24408257 +g1,14487:30341708,24408257 +h1,14487:31290145,24408257:0,0,0 +k1,14487:32583029,24408257:1292884 +g1,14487:32583029,24408257 +) +(1,14488:6630773,25074435:25952256,0,0 +h1,14488:6630773,25074435:0,0,0 +h1,14488:6630773,25074435:0,0,0 +k1,14488:32583029,25074435:25952256 +g1,14488:32583029,25074435 +) +(1,14489:6630773,25740613:25952256,410518,107478 +h1,14489:6630773,25740613:0,0,0 +g1,14489:10740667,25740613 +g1,14489:12953687,25740613 +g1,14489:13902125,25740613 +g1,14489:15798999,25740613 +g1,14489:16431291,25740613 +g1,14489:19276602,25740613 +h1,14489:19592748,25740613:0,0,0 +k1,14489:32583029,25740613:12990281 +g1,14489:32583029,25740613 +) +(1,14490:6630773,26406791:25952256,404226,107478 +h1,14490:6630773,26406791:0,0,0 +g1,14490:6946919,26406791 +g1,14490:7263065,26406791 +g1,14490:11372959,26406791 +h1,14490:11689105,26406791:0,0,0 +k1,14490:32583029,26406791:20893924 +g1,14490:32583029,26406791 +) +(1,14491:6630773,27072969:25952256,404226,101187 +h1,14491:6630773,27072969:0,0,0 +g1,14491:6946919,27072969 +g1,14491:7263065,27072969 +k1,14491:7263065,27072969:0 +h1,14491:14218270,27072969:0,0,0 +k1,14491:32583030,27072969:18364760 +g1,14491:32583030,27072969 +) +] +) +g1,14493:32583029,27174156 +g1,14493:6630773,27174156 +g1,14493:6630773,27174156 +g1,14493:32583029,27174156 +g1,14493:32583029,27174156 +) +h1,14493:6630773,27370764:0,0,0 +(1,14496:6630773,37023277:25952256,9062689,0 +k1,14496:10523651,37023277:3892878 +h1,14495:10523651,37023277:0,0,0 +(1,14495:10523651,37023277:18166500,9062689,0 +(1,14495:10523651,37023277:18167381,9062712,0 +(1,14495:10523651,37023277:18167381,9062712,0 +(1,14495:10523651,37023277:0,9062712,0 +(1,14495:10523651,37023277:0,14155776,0 +(1,14495:10523651,37023277:28377088,14155776,0 +) +k1,14495:10523651,37023277:-28377088 +) +) +g1,14495:28691032,37023277 +) +) +) +g1,14496:28690151,37023277 +k1,14496:32583029,37023277:3892878 +) +v1,14504:6630773,38389053:0,393216,0 +(1,14507:6630773,42358061:25952256,4362224,616038 +g1,14507:6630773,42358061 +(1,14507:6630773,42358061:25952256,4362224,616038 +(1,14507:6630773,42974099:25952256,4978262,0 +[1,14507:6630773,42974099:25952256,4978262,0 +(1,14507:6630773,42947885:25952256,4925834,0 +r1,14507:6656987,42947885:26214,4925834,0 +[1,14507:6656987,42947885:25899828,4925834,0 +(1,14507:6656987,42358061:25899828,3746186,0 +[1,14507:7246811,42358061:24720180,3746186,0 +(1,14505:7246811,39699249:24720180,1087374,126483 +k1,14504:8677751,39699249:221237 +k1,14504:10319809,39699249:221237 +k1,14504:12033957,39699249:221238 +k1,14504:13274279,39699249:221237 +k1,14504:14772813,39699249:221237 +k1,14504:16554462,39699249:221237 +k1,14504:17241661,39699249:221238 +k1,14504:18481983,39699249:221237 +k1,14504:21163442,39699249:221237 +k1,14504:22956888,39699249:221237 +k1,14504:23709622,39699249:221237 +k1,14504:26276394,39699249:221238 +k1,14504:28065252,39699249:221237 +k1,14504:29305574,39699249:221237 +k1,14504:31966991,39699249:0 +) +(1,14505:7246811,40540737:24720180,505283,126483 +g1,14504:9628389,40540737 +g1,14504:11077390,40540737 +g1,14504:12468064,40540737 +g1,14504:14634028,40540737 +g1,14504:15852342,40540737 +g1,14504:18712988,40540737 +k1,14505:31966991,40540737:11584146 +g1,14505:31966991,40540737 +) +(1,14507:7246811,41382225:24720180,505283,134348 +h1,14506:7246811,41382225:983040,0,0 +k1,14506:10210853,41382225:206287 +k1,14506:12152533,41382225:206287 +k1,14506:13377905,41382225:206287 +k1,14506:16044414,41382225:206287 +k1,14506:17996580,41382225:206287 +k1,14506:19533248,41382225:206287 +k1,14506:21695786,41382225:206288 +k1,14506:23072546,41382225:206287 +k1,14506:24809099,41382225:206287 +k1,14506:25666814,41382225:206287 +k1,14506:28113777,41382225:206287 +k1,14506:29339149,41382225:206287 +k1,14506:31041623,41382225:206287 +k1,14507:31966991,41382225:0 +) +(1,14507:7246811,42223713:24720180,505283,134348 +g1,14506:9395081,42223713 +g1,14506:11623305,42223713 +g1,14506:12473962,42223713 +g1,14506:15293320,42223713 +g1,14506:15848409,42223713 +g1,14506:17324935,42223713 +g1,14506:18918115,42223713 +g1,14506:20889438,42223713 +g1,14506:22280112,42223713 +g1,14506:24576493,42223713 +k1,14507:31966991,42223713:5044964 +g1,14507:31966991,42223713 +) +] +) +] +r1,14507:32583029,42947885:26214,4925834,0 +) +] +) +) +g1,14507:32583029,42358061 +) +h1,14507:6630773,42974099:0,0,0 +] +(1,14516:32583029,45706769:0,0,0 +g1,14516:32583029,45706769 +) +) +] +(1,14516:6630773,47279633:25952256,0,0 +h1,14516:6630773,47279633:25952256,0,0 +) +] +h1,14516:4262630,4025873:0,0,0 +] +!17913 +}279 +Input:2189:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2190:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2191:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2192:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2193:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2194:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2195:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 +{280 +[1,14550:4262630,47279633:28320399,43253760,0 +(1,14550:4262630,4025873:0,0,0 +[1,14550:-473657,4025873:25952256,0,0 +(1,14550:-473657,-710414:25952256,0,0 +h1,14550:-473657,-710414:0,0,0 +(1,14550:-473657,-710414:0,0,0 +(1,14550:-473657,-710414:0,0,0 +g1,14550:-473657,-710414 +(1,14550:-473657,-710414:65781,0,65781 +g1,14550:-407876,-710414 +[1,14550:-407876,-644633:0,0,0 ] ) -k1,14524:-473657,-710414:-65781 +k1,14550:-473657,-710414:-65781 ) ) -k1,14524:25478599,-710414:25952256 -g1,14524:25478599,-710414 +k1,14550:25478599,-710414:25952256 +g1,14550:25478599,-710414 ) ] ) -[1,14524:6630773,47279633:25952256,43253760,0 -[1,14524:6630773,4812305:25952256,786432,0 -(1,14524:6630773,4812305:25952256,513147,134348 -(1,14524:6630773,4812305:25952256,513147,134348 -g1,14524:3078558,4812305 -[1,14524:3078558,4812305:0,0,0 -(1,14524:3078558,2439708:0,1703936,0 -k1,14524:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14524:2537886,2439708:1179648,16384,0 +[1,14550:6630773,47279633:25952256,43253760,0 +[1,14550:6630773,4812305:25952256,786432,0 +(1,14550:6630773,4812305:25952256,505283,134348 +(1,14550:6630773,4812305:25952256,505283,134348 +g1,14550:3078558,4812305 +[1,14550:3078558,4812305:0,0,0 +(1,14550:3078558,2439708:0,1703936,0 +k1,14550:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14550:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14524:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14550:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14524:3078558,4812305:0,0,0 -(1,14524:3078558,2439708:0,1703936,0 -g1,14524:29030814,2439708 -g1,14524:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14524:36151628,1915420:16384,1179648,0 +[1,14550:3078558,4812305:0,0,0 +(1,14550:3078558,2439708:0,1703936,0 +g1,14550:29030814,2439708 +g1,14550:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14550:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14524:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14550:37855564,2439708:1179648,16384,0 ) ) -k1,14524:3078556,2439708:-34777008 +k1,14550:3078556,2439708:-34777008 ) ] -[1,14524:3078558,4812305:0,0,0 -(1,14524:3078558,49800853:0,16384,2228224 -k1,14524:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14524:2537886,49800853:1179648,16384,0 +[1,14550:3078558,4812305:0,0,0 +(1,14550:3078558,49800853:0,16384,2228224 +k1,14550:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14550:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14524:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14550:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14524:3078558,4812305:0,0,0 -(1,14524:3078558,49800853:0,16384,2228224 -g1,14524:29030814,49800853 -g1,14524:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14524:36151628,51504789:16384,1179648,0 +[1,14550:3078558,4812305:0,0,0 +(1,14550:3078558,49800853:0,16384,2228224 +g1,14550:29030814,49800853 +g1,14550:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14550:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14524:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14550:37855564,49800853:1179648,16384,0 ) ) -k1,14524:3078556,49800853:-34777008 +k1,14550:3078556,49800853:-34777008 ) ] -g1,14524:6630773,4812305 -k1,14524:25712890,4812305:17886740 -g1,14524:29057847,4812305 -g1,14524:29873114,4812305 -) -) -] -[1,14524:6630773,45706769:25952256,40108032,0 -(1,14524:6630773,45706769:25952256,40108032,0 -(1,14524:6630773,45706769:0,0,0 -g1,14524:6630773,45706769 +g1,14550:6630773,4812305 +g1,14550:6630773,4812305 +g1,14550:9113932,4812305 +g1,14550:13027742,4812305 +k1,14550:31387652,4812305:18359910 +) +) +] +[1,14550:6630773,45706769:25952256,40108032,0 +(1,14550:6630773,45706769:25952256,40108032,0 +(1,14550:6630773,45706769:0,0,0 +g1,14550:6630773,45706769 +) +[1,14550:6630773,45706769:25952256,40108032,0 +(1,14513:6630773,6254097:25952256,32768,229376 +(1,14513:6630773,6254097:0,32768,229376 +(1,14513:6630773,6254097:5505024,32768,229376 +r1,14513:12135797,6254097:5505024,262144,229376 +) +k1,14513:6630773,6254097:-5505024 +) +(1,14513:6630773,6254097:25952256,32768,0 +r1,14513:32583029,6254097:25952256,32768,0 +) +) +(1,14513:6630773,7858425:25952256,606339,161218 +(1,14513:6630773,7858425:1974731,582746,14155 +g1,14513:6630773,7858425 +g1,14513:8605504,7858425 +) +g1,14513:11742582,7858425 +k1,14513:32583029,7858425:16172973 +g1,14513:32583029,7858425 +) +(1,14516:6630773,9093129:25952256,513147,126483 +k1,14515:8065168,9093129:237708 +k1,14515:9628015,9093129:237709 +k1,14515:10525015,9093129:237708 +k1,14515:14553325,9093129:237708 +k1,14515:15322531,9093129:237709 +k1,14515:16844745,9093129:237708 +k1,14515:18462642,9093129:237709 +k1,14515:19897693,9093129:237708 +k1,14515:21412698,9093129:237708 +k1,14515:24519573,9093129:237709 +k1,14515:26041787,9093129:237708 +k1,14515:27271055,9093129:237708 +k1,14515:28575035,9093129:237709 +k1,14515:31227089,9093129:237708 +k1,14516:32583029,9093129:0 +) +(1,14516:6630773,9934617:25952256,505283,134348 +k1,14515:8962963,9934617:211445 +k1,14515:10568360,9934617:211446 +(1,14515:10568360,9934617:0,452978,115847 +r1,14515:11981761,9934617:1413401,568825,115847 +k1,14515:10568360,9934617:-1413401 +) +(1,14515:10568360,9934617:1413401,452978,115847 +k1,14515:10568360,9934617:3277 +h1,14515:11978484,9934617:0,411205,112570 +) +k1,14515:12366876,9934617:211445 +k1,14515:14463792,9934617:211445 +k1,14515:15543590,9934617:211446 +k1,14515:17523852,9934617:211445 +k1,14515:18834991,9934617:211445 +k1,14515:23384919,9934617:211445 +k1,14515:25089931,9934617:211446 +k1,14515:25987538,9934617:211445 +k1,14515:28377400,9934617:211445 +k1,14515:30102072,9934617:211446 +k1,14515:30964945,9934617:211445 +k1,14516:32583029,9934617:0 +) +(1,14516:6630773,10776105:25952256,513147,134348 +k1,14515:8216838,10776105:133787 +k1,14515:10042765,10776105:133787 +k1,14515:12451962,10776105:133787 +k1,14515:13245041,10776105:133787 +k1,14515:14397913,10776105:133787 +k1,14515:16094734,10776105:133787 +k1,14515:18625827,10776105:133786 +k1,14515:20778123,10776105:133787 +k1,14515:22656478,10776105:133787 +k1,14515:23560968,10776105:133787 +k1,14515:25120818,10776105:133787 +k1,14515:26366096,10776105:133787 +k1,14515:28057674,10776105:133787 +k1,14515:29183021,10776105:133787 +k1,14515:32583029,10776105:0 +) +(1,14516:6630773,11617593:25952256,505283,126483 +k1,14515:7429304,11617593:147103 +k1,14515:8595492,11617593:147103 +k1,14515:11634699,11617593:147103 +k1,14515:15519976,11617593:147103 +k1,14515:17180305,11617593:147103 +k1,14515:17978836,11617593:147103 +k1,14515:19403235,11617593:147102 +k1,14515:20569423,11617593:147103 +k1,14515:24961948,11617593:147103 +k1,14515:26181220,11617593:147103 +k1,14515:27319883,11617593:147103 +k1,14515:30336152,11617593:147103 +k1,14515:31767761,11617593:147103 +k1,14515:32583029,11617593:0 +) +(1,14516:6630773,12459081:25952256,513147,126483 +k1,14515:7876613,12459081:179569 +k1,14515:11097707,12459081:179568 +k1,14515:15349028,12459081:179569 +k1,14515:16211481,12459081:179568 +k1,14515:19899192,12459081:179569 +k1,14515:23287403,12459081:179568 +k1,14515:25034593,12459081:179569 +k1,14515:26233246,12459081:179568 +k1,14515:30658237,12459081:179569 +k1,14516:32583029,12459081:0 +) +(1,14516:6630773,13300569:25952256,505283,134348 +k1,14515:8987663,13300569:146361 +k1,14515:10125584,13300569:146361 +k1,14515:12237370,13300569:146361 +k1,14515:13035158,13300569:146360 +k1,14515:13537379,13300569:146361 +k1,14515:15709458,13300569:146361 +k1,14515:17249770,13300569:146361 +(1,14515:17249770,13300569:0,452978,115847 +r1,14515:20773442,13300569:3523672,568825,115847 +k1,14515:17249770,13300569:-3523672 +) +(1,14515:17249770,13300569:3523672,452978,115847 +k1,14515:17249770,13300569:3277 +h1,14515:20770165,13300569:0,411205,112570 +) +k1,14515:20919803,13300569:146361 +k1,14515:21752326,13300569:146361 +k1,14515:23175984,13300569:146361 +k1,14515:25210436,13300569:146360 +k1,14515:27015513,13300569:146361 +k1,14515:28261568,13300569:146361 +k1,14515:29059357,13300569:146361 +(1,14515:29059357,13300569:0,452978,115847 +r1,14515:32583029,13300569:3523672,568825,115847 +k1,14515:29059357,13300569:-3523672 +) +(1,14515:29059357,13300569:3523672,452978,115847 +k1,14515:29059357,13300569:3277 +h1,14515:32579752,13300569:0,411205,112570 +) +k1,14515:32583029,13300569:0 +) +(1,14516:6630773,14142057:25952256,513147,126483 +k1,14515:9087140,14142057:196686 +k1,14515:9639685,14142057:196685 +k1,14515:11119566,14142057:196686 +k1,14515:13254807,14142057:196686 +k1,14515:14280522,14142057:196685 +k1,14515:16834538,14142057:196686 +k1,14515:18050308,14142057:196685 +k1,14515:21006715,14142057:196686 +k1,14515:24042421,14142057:196686 +k1,14515:24898398,14142057:196685 +k1,14515:29059357,14142057:196686 +(1,14515:29059357,14142057:0,452978,115847 +r1,14515:32583029,14142057:3523672,568825,115847 +k1,14515:29059357,14142057:-3523672 +) +(1,14515:29059357,14142057:3523672,452978,115847 +k1,14515:29059357,14142057:3277 +h1,14515:32579752,14142057:0,411205,112570 +) +k1,14515:32583029,14142057:0 +) +(1,14516:6630773,14983545:25952256,513147,122846 +k1,14515:8301102,14983545:177419 +k1,14515:9544791,14983545:177418 +k1,14515:11846887,14983545:177419 +k1,14515:13043390,14983545:177418 +k1,14515:15486389,14983545:177419 +(1,14515:15486389,14983545:0,452978,115847 +r1,14515:16899790,14983545:1413401,568825,115847 +k1,14515:15486389,14983545:-1413401 +) +(1,14515:15486389,14983545:1413401,452978,115847 +k1,14515:15486389,14983545:3277 +h1,14515:16896513,14983545:0,411205,112570 +) +k1,14515:17077208,14983545:177418 +k1,14515:17937512,14983545:177419 +(1,14515:17937512,14983545:0,452978,122846 +r1,14515:20406049,14983545:2468537,575824,122846 +k1,14515:17937512,14983545:-2468537 +) +(1,14515:17937512,14983545:2468537,452978,122846 +k1,14515:17937512,14983545:3277 +h1,14515:20402772,14983545:0,411205,112570 +) +k1,14515:20583468,14983545:177419 +k1,14515:21420178,14983545:177418 +k1,14515:24439238,14983545:177419 +k1,14515:25268084,14983545:177418 +k1,14515:28660699,14983545:177419 +k1,14515:32583029,14983545:0 +) +(1,14516:6630773,15825033:25952256,513147,134348 +k1,14515:10227824,15825033:292070 +k1,14515:12235626,15825033:292069 +k1,14515:13620181,15825033:292070 +k1,14515:14579407,15825033:292070 +(1,14515:14579407,15825033:0,452978,115847 +r1,14515:16696232,15825033:2116825,568825,115847 +k1,14515:14579407,15825033:-2116825 +) +(1,14515:14579407,15825033:2116825,452978,115847 +k1,14515:14579407,15825033:3277 +h1,14515:16692955,15825033:0,411205,112570 +) +k1,14515:16988301,15825033:292069 +k1,14515:17963256,15825033:292070 +(1,14515:17963256,15825033:0,452978,115847 +r1,14515:20431793,15825033:2468537,568825,115847 +k1,14515:17963256,15825033:-2468537 +) +(1,14515:17963256,15825033:2468537,452978,115847 +k1,14515:17963256,15825033:3277 +h1,14515:20428516,15825033:0,411205,112570 +) +k1,14515:20723862,15825033:292069 +k1,14515:24455917,15825033:292070 +k1,14515:26141938,15825033:292070 +k1,14515:29408686,15825033:292069 +k1,14515:31896867,15825033:292070 +k1,14515:32583029,15825033:0 +) +(1,14516:6630773,16666521:25952256,513147,126483 +k1,14515:8434203,16666521:240396 +k1,14515:11318322,16666521:240397 +k1,14515:12210146,16666521:240396 +k1,14515:13198308,16666521:240396 +k1,14515:15602047,16666521:240396 +k1,14515:16528606,16666521:240397 +k1,14515:20712959,16666521:240396 +k1,14515:23888057,16666521:240396 +k1,14515:25076104,16666521:240396 +k1,14515:28151588,16666521:240397 +k1,14515:29411069,16666521:240396 +(1,14515:29411069,16666521:0,452978,122846 +r1,14515:32583029,16666521:3171960,575824,122846 +k1,14515:29411069,16666521:-3171960 +) +(1,14515:29411069,16666521:3171960,452978,122846 +k1,14515:29411069,16666521:3277 +h1,14515:32579752,16666521:0,411205,112570 +) +k1,14515:32583029,16666521:0 +) +(1,14516:6630773,17508009:25952256,505283,134348 +g1,14515:9819754,17508009 +g1,14515:11123265,17508009 +g1,14515:12070260,17508009 +g1,14515:13782715,17508009 +g1,14515:14633372,17508009 +g1,14515:16029944,17508009 +k1,14516:32583029,17508009:14200998 +g1,14516:32583029,17508009 +) +v1,14518:6630773,18820400:0,393216,0 +(1,14519:6630773,23629058:25952256,5201874,616038 +g1,14519:6630773,23629058 +(1,14519:6630773,23629058:25952256,5201874,616038 +(1,14519:6630773,24245096:25952256,5817912,0 +[1,14519:6630773,24245096:25952256,5817912,0 +(1,14519:6630773,24218882:25952256,5765484,0 +r1,14519:6656987,24218882:26214,5765484,0 +[1,14519:6656987,24218882:25899828,5765484,0 +(1,14519:6656987,23629058:25899828,4585836,0 +[1,14519:7246811,23629058:24720180,4585836,0 +(1,14519:7246811,20128758:24720180,1085536,298548 +(1,14518:7246811,20128758:0,1085536,298548 +r1,14519:8753226,20128758:1506415,1384084,298548 +k1,14518:7246811,20128758:-1506415 +) +(1,14518:7246811,20128758:1506415,1085536,298548 +) +k1,14518:9002284,20128758:249058 +k1,14518:11026057,20128758:249058 +k1,14518:13163208,20128758:249059 +k1,14518:15377691,20128758:249058 +k1,14518:16278177,20128758:249058 +k1,14518:16883096,20128758:249059 +k1,14518:18409451,20128758:249058 +k1,14518:21072855,20128758:249058 +k1,14518:23057306,20128758:249058 +k1,14518:26746349,20128758:249058 +k1,14518:28186853,20128758:249059 +k1,14518:31118300,20128758:249058 +k1,14519:31966991,20128758:0 +) +(1,14519:7246811,20970246:24720180,513147,134348 +k1,14518:9254128,20970246:318454 +k1,14518:12294948,20970246:318454 +k1,14518:16073703,20970246:318454 +k1,14518:18280249,20970246:318454 +k1,14518:20564129,20970246:318455 +k1,14518:22276534,20970246:318454 +(1,14518:22276534,20970246:0,452978,115847 +r1,14519:25800206,20970246:3523672,568825,115847 +k1,14518:22276534,20970246:-3523672 +) +(1,14518:22276534,20970246:3523672,452978,115847 +k1,14518:22276534,20970246:3277 +h1,14518:25796929,20970246:0,411205,112570 +) +k1,14518:26118660,20970246:318454 +k1,14518:27428674,20970246:318454 +k1,14518:30924313,20970246:318454 +k1,14519:31966991,20970246:0 +) +(1,14519:7246811,21811734:24720180,513147,134348 +k1,14518:10116885,21811734:208657 +k1,14518:10941579,21811734:208656 +k1,14518:12851551,21811734:208657 +k1,14518:14804120,21811734:208656 +k1,14518:15672069,21811734:208657 +k1,14518:16236586,21811734:208657 +k1,14518:18771770,21811734:208656 +k1,14518:20431394,21811734:208657 +k1,14518:21836738,21811734:208657 +k1,14518:24176625,21811734:208656 +k1,14518:24916779,21811734:208657 +k1,14518:26409941,21811734:208656 +k1,14518:30078899,21811734:208657 +k1,14518:31966991,21811734:0 +) +(1,14519:7246811,22653222:24720180,513147,126483 +k1,14518:9531068,22653222:236257 +k1,14518:12831789,22653222:236257 +k1,14518:14443647,22653222:236257 +k1,14518:15366066,22653222:236257 +k1,14518:18360078,22653222:236257 +k1,14518:20606981,22653222:236258 +k1,14518:22728709,22653222:236257 +k1,14518:23956526,22653222:236257 +k1,14518:25211868,22653222:236257 +k1,14518:27101598,22653222:236257 +k1,14518:28285506,22653222:236257 +k1,14518:30223078,22653222:236257 +k1,14518:31966991,22653222:0 +) +(1,14519:7246811,23494710:24720180,505283,134348 +g1,14518:8132202,23494710 +g1,14518:9140801,23494710 +g1,14518:12222959,23494710 +g1,14518:12953685,23494710 +g1,14518:15782874,23494710 +g1,14518:18442325,23494710 +g1,14518:18997414,23494710 +(1,14518:18997414,23494710:0,452978,122846 +r1,14519:21465951,23494710:2468537,575824,122846 +k1,14518:18997414,23494710:-2468537 +) +(1,14518:18997414,23494710:2468537,452978,122846 +k1,14518:18997414,23494710:3277 +h1,14518:21462674,23494710:0,411205,112570 +) +g1,14518:21665180,23494710 +g1,14518:22515837,23494710 +(1,14518:22515837,23494710:0,452978,115847 +r1,14519:23929238,23494710:1413401,568825,115847 +k1,14518:22515837,23494710:-1413401 +) +(1,14518:22515837,23494710:1413401,452978,115847 +k1,14518:22515837,23494710:3277 +h1,14518:23925961,23494710:0,411205,112570 +) +k1,14519:31966991,23494710:7864083 +g1,14519:31966991,23494710 +) +] +) +] +r1,14519:32583029,24218882:26214,5765484,0 +) +] +) +) +g1,14519:32583029,23629058 +) +h1,14519:6630773,24245096:0,0,0 +(1,14522:6630773,25557488:25952256,505283,134348 +h1,14521:6630773,25557488:983040,0,0 +g1,14521:8766591,25557488 +g1,14521:10626502,25557488 +g1,14521:11181591,25557488 +g1,14521:13505497,25557488 +g1,14521:16366143,25557488 +g1,14521:18300765,25557488 +(1,14521:18300765,25557488:0,452978,115847 +r1,14521:20417590,25557488:2116825,568825,115847 +k1,14521:18300765,25557488:-2116825 +) +(1,14521:18300765,25557488:2116825,452978,115847 +k1,14521:18300765,25557488:3277 +h1,14521:20414313,25557488:0,411205,112570 +) +g1,14521:20616819,25557488 +g1,14521:21502210,25557488 +k1,14522:32583029,25557488:7941645 +g1,14522:32583029,25557488 +) +v1,14524:6630773,26694569:0,393216,0 +(1,14534:6630773,30981568:25952256,4680215,196608 +g1,14534:6630773,30981568 +g1,14534:6630773,30981568 +g1,14534:6434165,30981568 +(1,14534:6434165,30981568:0,4680215,196608 +r1,14534:32779637,30981568:26345472,4876823,196608 +k1,14534:6434165,30981568:-26345472 +) +(1,14534:6434165,30981568:26345472,4680215,196608 +[1,14534:6630773,30981568:25952256,4483607,0 +(1,14526:6630773,26908479:25952256,410518,107478 +(1,14525:6630773,26908479:0,0,0 +g1,14525:6630773,26908479 +g1,14525:6630773,26908479 +g1,14525:6303093,26908479 +(1,14525:6303093,26908479:0,0,0 +) +g1,14525:6630773,26908479 +) +k1,14526:6630773,26908479:0 +g1,14526:12637541,26908479 +g1,14526:14850561,26908479 +g1,14526:16115144,26908479 +h1,14526:16431290,26908479:0,0,0 +k1,14526:32583029,26908479:16151739 +g1,14526:32583029,26908479 +) +(1,14527:6630773,27574657:25952256,404226,107478 +h1,14527:6630773,27574657:0,0,0 +g1,14527:6946919,27574657 +g1,14527:7263065,27574657 +g1,14527:11372959,27574657 +h1,14527:11689105,27574657:0,0,0 +k1,14527:32583029,27574657:20893924 +g1,14527:32583029,27574657 +) +(1,14528:6630773,28240835:25952256,404226,107478 +h1,14528:6630773,28240835:0,0,0 +g1,14528:6946919,28240835 +g1,14528:7263065,28240835 +g1,14528:11689105,28240835 +g1,14528:12321397,28240835 +k1,14528:12321397,28240835:0 +h1,14528:14534417,28240835:0,0,0 +k1,14528:32583029,28240835:18048612 +g1,14528:32583029,28240835 +) +(1,14529:6630773,28907013:25952256,404226,107478 +h1,14529:6630773,28907013:0,0,0 +g1,14529:6946919,28907013 +g1,14529:7263065,28907013 +g1,14529:7579211,28907013 +g1,14529:7895357,28907013 +g1,14529:8211503,28907013 +g1,14529:8527649,28907013 +g1,14529:8843795,28907013 +g1,14529:9159941,28907013 +g1,14529:9476087,28907013 +g1,14529:9792233,28907013 +g1,14529:10108379,28907013 +g1,14529:12005253,28907013 +g1,14529:12637545,28907013 +k1,14529:12637545,28907013:0 +h1,14529:15482856,28907013:0,0,0 +k1,14529:32583028,28907013:17100172 +g1,14529:32583028,28907013 +) +(1,14530:6630773,29573191:25952256,388497,101187 +h1,14530:6630773,29573191:0,0,0 +g1,14530:6946919,29573191 +g1,14530:7263065,29573191 +g1,14530:7579211,29573191 +g1,14530:7895357,29573191 +g1,14530:8211503,29573191 +g1,14530:8527649,29573191 +g1,14530:8843795,29573191 +g1,14530:9159941,29573191 +g1,14530:9476087,29573191 +g1,14530:9792233,29573191 +g1,14530:10108379,29573191 +g1,14530:10740671,29573191 +g1,14530:11372963,29573191 +g1,14530:12321401,29573191 +g1,14530:12953693,29573191 +g1,14530:13585985,29573191 +k1,14530:13585985,29573191:0 +h1,14530:14218277,29573191:0,0,0 +k1,14530:32583029,29573191:18364752 +g1,14530:32583029,29573191 +) +(1,14531:6630773,30239369:25952256,404226,82312 +h1,14531:6630773,30239369:0,0,0 +g1,14531:6946919,30239369 +g1,14531:7263065,30239369 +g1,14531:7579211,30239369 +g1,14531:7895357,30239369 +g1,14531:8211503,30239369 +g1,14531:8527649,30239369 +g1,14531:8843795,30239369 +g1,14531:9159941,30239369 +g1,14531:9476087,30239369 +g1,14531:9792233,30239369 +g1,14531:10108379,30239369 +g1,14531:12005253,30239369 +g1,14531:12637545,30239369 +k1,14531:12637545,30239369:0 +h1,14531:14850565,30239369:0,0,0 +k1,14531:32583029,30239369:17732464 +g1,14531:32583029,30239369 +) +(1,14532:6630773,30905547:25952256,404226,76021 +h1,14532:6630773,30905547:0,0,0 +g1,14532:6946919,30905547 +g1,14532:7263065,30905547 +g1,14532:7579211,30905547 +g1,14532:7895357,30905547 +g1,14532:8211503,30905547 +g1,14532:8527649,30905547 +g1,14532:8843795,30905547 +g1,14532:9159941,30905547 +g1,14532:9476087,30905547 +g1,14532:9792233,30905547 +g1,14532:10108379,30905547 +h1,14532:12321400,30905547:0,0,0 +k1,14532:32583028,30905547:20261628 +g1,14532:32583028,30905547 +) +] +) +g1,14534:32583029,30981568 +g1,14534:6630773,30981568 +g1,14534:6630773,30981568 +g1,14534:32583029,30981568 +g1,14534:32583029,30981568 +) +h1,14534:6630773,31178176:0,0,0 +(1,14537:6630773,40777305:25952256,9062689,0 +k1,14537:10523651,40777305:3892878 +h1,14536:10523651,40777305:0,0,0 +(1,14536:10523651,40777305:18166500,9062689,0 +(1,14536:10523651,40777305:18167381,9062712,0 +(1,14536:10523651,40777305:18167381,9062712,0 +(1,14536:10523651,40777305:0,9062712,0 +(1,14536:10523651,40777305:0,14155776,0 +(1,14536:10523651,40777305:28377088,14155776,0 +) +k1,14536:10523651,40777305:-28377088 +) +) +g1,14536:28691032,40777305 +) +) +) +g1,14537:28690151,40777305 +k1,14537:32583029,40777305:3892878 +) +v1,14545:6630773,42089696:0,393216,0 +(1,14546:6630773,45090731:25952256,3394251,616038 +g1,14546:6630773,45090731 +(1,14546:6630773,45090731:25952256,3394251,616038 +(1,14546:6630773,45706769:25952256,4010289,0 +[1,14546:6630773,45706769:25952256,4010289,0 +(1,14546:6630773,45680555:25952256,3957861,0 +r1,14546:6656987,45680555:26214,3957861,0 +[1,14546:6656987,45680555:25899828,3957861,0 +(1,14546:6656987,45090731:25899828,2778213,0 +[1,14546:7246811,45090731:24720180,2778213,0 +(1,14546:7246811,43399892:24720180,1087374,134348 +k1,14545:8665142,43399892:208628 +k1,14545:10171384,43399892:208629 +k1,14545:11773963,43399892:208628 +k1,14545:13001676,43399892:208628 +k1,14545:15220950,43399892:208629 +k1,14545:16088870,43399892:208628 +k1,14545:17316583,43399892:208628 +k1,14545:20927840,43399892:208628 +k1,14545:21787897,43399892:208629 +(1,14545:21787897,43399892:0,452978,115847 +r1,14546:25311569,43399892:3523672,568825,115847 +k1,14545:21787897,43399892:-3523672 +) +(1,14545:21787897,43399892:3523672,452978,115847 +k1,14545:21787897,43399892:3277 +h1,14545:25308292,43399892:0,411205,112570 +) +k1,14545:25520197,43399892:208628 +k1,14545:26380253,43399892:208628 +k1,14545:27951376,43399892:208629 +k1,14545:29179089,43399892:208628 +k1,14545:31966991,43399892:0 +) +(1,14546:7246811,44241380:24720180,513147,134348 +k1,14545:8891601,44241380:202343 +k1,14545:10883731,44241380:202342 +k1,14545:12417110,44241380:202343 +k1,14545:14801146,44241380:202342 +k1,14545:16334525,44241380:202343 +k1,14545:18012082,44241380:202342 +k1,14545:20777538,44241380:202343 +k1,14545:22677262,44241380:202342 +k1,14545:24071050,44241380:202343 +k1,14545:28090864,44241380:202342 +k1,14545:28952499,44241380:202343 +k1,14545:30173926,44241380:202342 +k1,14546:31966991,44241380:0 +) +(1,14546:7246811,45082868:24720180,473825,7863 +k1,14546:31966991,45082868:22666282 +g1,14546:31966991,45082868 ) -[1,14524:6630773,45706769:25952256,40108032,0 -(1,14488:6630773,6254097:25952256,513147,126483 -k1,14487:8169427,6254097:254148 -k1,14487:9238844,6254097:254149 -k1,14487:10559263,6254097:254148 -k1,14487:13854938,6254097:254149 -k1,14487:18180838,6254097:254148 -k1,14487:19117871,6254097:254148 -k1,14487:22880162,6254097:254149 -k1,14487:26342953,6254097:254148 -k1,14487:28164723,6254097:254149 -k1,14487:29437956,6254097:254148 -k1,14488:32583029,6254097:0 -) -(1,14488:6630773,7095585:25952256,505283,134348 -k1,14487:8126085,7095585:181970 -k1,14487:12230385,7095585:181970 -k1,14487:13403915,7095585:181970 -k1,14487:15551310,7095585:181970 -k1,14487:16384708,7095585:181970 -k1,14487:16922538,7095585:181970 -k1,14487:19130226,7095585:181970 -k1,14487:20706148,7095585:181971 -(1,14487:20706148,7095585:0,452978,115847 -r1,14487:24229820,7095585:3523672,568825,115847 -k1,14487:20706148,7095585:-3523672 -) -(1,14487:20706148,7095585:3523672,452978,115847 -k1,14487:20706148,7095585:3277 -h1,14487:24226543,7095585:0,411205,112570 -) -k1,14487:24411790,7095585:181970 -k1,14487:25279922,7095585:181970 -k1,14487:26739189,7095585:181970 -k1,14487:28809251,7095585:181970 -k1,14487:30649937,7095585:181970 -k1,14487:31931601,7095585:181970 -k1,14488:32583029,7095585:0 -) -(1,14488:6630773,7937073:25952256,513147,126483 -(1,14487:6630773,7937073:0,452978,115847 -r1,14487:10154445,7937073:3523672,568825,115847 -k1,14487:6630773,7937073:-3523672 -) -(1,14487:6630773,7937073:3523672,452978,115847 -k1,14487:6630773,7937073:3277 -h1,14487:10151168,7937073:0,411205,112570 -) -k1,14487:10351131,7937073:196686 -k1,14487:12807497,7937073:196685 -k1,14487:13360043,7937073:196686 -k1,14487:14839924,7937073:196686 -k1,14487:16975164,7937073:196685 -k1,14487:18000880,7937073:196686 -k1,14487:20554895,7937073:196685 -k1,14487:21770666,7937073:196686 -k1,14487:24727073,7937073:196686 -k1,14487:27762778,7937073:196685 -k1,14487:28618756,7937073:196686 -k1,14488:32583029,7937073:0 -) -(1,14488:6630773,8778561:25952256,513147,122846 -(1,14487:6630773,8778561:0,452978,115847 -r1,14487:10154445,8778561:3523672,568825,115847 -k1,14487:6630773,8778561:-3523672 -) -(1,14487:6630773,8778561:3523672,452978,115847 -k1,14487:6630773,8778561:3277 -h1,14487:10151168,8778561:0,411205,112570 -) -k1,14487:10365085,8778561:210640 -k1,14487:12068635,8778561:210640 -k1,14487:13345546,8778561:210640 -k1,14487:15680863,8778561:210640 -k1,14487:16910588,8778561:210640 -k1,14487:19386809,8778561:210641 -(1,14487:19386809,8778561:0,452978,115847 -r1,14487:20800210,8778561:1413401,568825,115847 -k1,14487:19386809,8778561:-1413401 -) -(1,14487:19386809,8778561:1413401,452978,115847 -k1,14487:19386809,8778561:3277 -h1,14487:20796933,8778561:0,411205,112570 -) -k1,14487:21010850,8778561:210640 -k1,14487:21904375,8778561:210640 -(1,14487:21904375,8778561:0,452978,122846 -r1,14487:24372912,8778561:2468537,575824,122846 -k1,14487:21904375,8778561:-2468537 -) -(1,14487:21904375,8778561:2468537,452978,122846 -k1,14487:21904375,8778561:3277 -h1,14487:24369635,8778561:0,411205,112570 -) -k1,14487:24583552,8778561:210640 -k1,14487:25453484,8778561:210640 -k1,14487:28505765,8778561:210640 -k1,14487:29367833,8778561:210640 -k1,14487:32583029,8778561:0 -) -(1,14488:6630773,9620049:25952256,513147,134348 -k1,14487:10770374,9620049:217271 -k1,14487:14292626,9620049:217271 -k1,14487:16225630,9620049:217271 -k1,14487:17535386,9620049:217271 -k1,14487:18419813,9620049:217271 -(1,14487:18419813,9620049:0,452978,115847 -r1,14487:20536638,9620049:2116825,568825,115847 -k1,14487:18419813,9620049:-2116825 -) -(1,14487:18419813,9620049:2116825,452978,115847 -k1,14487:18419813,9620049:3277 -h1,14487:20533361,9620049:0,411205,112570 -) -k1,14487:20753908,9620049:217270 -k1,14487:21654064,9620049:217271 -(1,14487:21654064,9620049:0,452978,115847 -r1,14487:24122601,9620049:2468537,568825,115847 -k1,14487:21654064,9620049:-2468537 -) -(1,14487:21654064,9620049:2468537,452978,115847 -k1,14487:21654064,9620049:3277 -h1,14487:24119324,9620049:0,411205,112570 -) -k1,14487:24339872,9620049:217271 -k1,14487:27997128,9620049:217271 -k1,14487:29608350,9620049:217271 -k1,14487:32583029,9620049:0 -) -(1,14488:6630773,10461537:25952256,513147,134348 -k1,14487:9071388,10461537:244504 -k1,14487:10002054,10461537:244504 -k1,14487:11809592,10461537:244504 -k1,14487:14697817,10461537:244503 -k1,14487:15593749,10461537:244504 -k1,14487:16586019,10461537:244504 -k1,14487:18993866,10461537:244504 -k1,14487:19924532,10461537:244504 -k1,14487:24112993,10461537:244504 -k1,14487:27292198,10461537:244503 -k1,14487:28484353,10461537:244504 -k1,14487:31563944,10461537:244504 -k1,14488:32583029,10461537:0 -) -(1,14488:6630773,11303025:25952256,505283,134348 -(1,14487:6630773,11303025:0,452978,122846 -r1,14487:9802733,11303025:3171960,575824,122846 -k1,14487:6630773,11303025:-3171960 -) -(1,14487:6630773,11303025:3171960,452978,122846 -k1,14487:6630773,11303025:3277 -h1,14487:9799456,11303025:0,411205,112570 -) -g1,14487:10001962,11303025 -g1,14487:13190943,11303025 -g1,14487:14494454,11303025 -g1,14487:15441449,11303025 -g1,14487:17153904,11303025 -g1,14487:18004561,11303025 -g1,14487:19401133,11303025 -k1,14488:32583029,11303025:10829809 -g1,14488:32583029,11303025 -) -v1,14490:6630773,12589360:0,393216,0 -(1,14491:6630773,17398018:25952256,5201874,616038 -g1,14491:6630773,17398018 -(1,14491:6630773,17398018:25952256,5201874,616038 -(1,14491:6630773,18014056:25952256,5817912,0 -[1,14491:6630773,18014056:25952256,5817912,0 -(1,14491:6630773,17987842:25952256,5765484,0 -r1,14491:6656987,17987842:26214,5765484,0 -[1,14491:6656987,17987842:25899828,5765484,0 -(1,14491:6656987,17398018:25899828,4585836,0 -[1,14491:7246811,17398018:24720180,4585836,0 -(1,14491:7246811,13897718:24720180,1085536,298548 -(1,14490:7246811,13897718:0,1085536,298548 -r1,14491:8753226,13897718:1506415,1384084,298548 -k1,14490:7246811,13897718:-1506415 -) -(1,14490:7246811,13897718:1506415,1085536,298548 -) -k1,14490:9002284,13897718:249058 -k1,14490:11026057,13897718:249058 -k1,14490:13163208,13897718:249059 -k1,14490:15377691,13897718:249058 -k1,14490:16278177,13897718:249058 -k1,14490:16883096,13897718:249059 -k1,14490:18409451,13897718:249058 -k1,14490:21072855,13897718:249058 -k1,14490:23057306,13897718:249058 -k1,14490:26746349,13897718:249058 -k1,14490:28186853,13897718:249059 -k1,14490:31118300,13897718:249058 -k1,14491:31966991,13897718:0 -) -(1,14491:7246811,14739206:24720180,513147,134348 -k1,14490:9085337,14739206:149663 -k1,14490:11957365,14739206:149662 -k1,14490:15567329,14739206:149663 -k1,14490:17605083,14739206:149662 -k1,14490:19720171,14739206:149663 -k1,14490:21263784,14739206:149662 -(1,14490:21263784,14739206:0,452978,115847 -r1,14491:24787456,14739206:3523672,568825,115847 -k1,14490:21263784,14739206:-3523672 -) -(1,14490:21263784,14739206:3523672,452978,115847 -k1,14490:21263784,14739206:3277 -h1,14490:24784179,14739206:0,411205,112570 -) -k1,14490:24937119,14739206:149663 -k1,14490:26078341,14739206:149662 -k1,14490:29405189,14739206:149663 -k1,14491:31966991,14739206:0 -) -(1,14491:7246811,15580694:24720180,513147,134348 -k1,14490:8545080,15580694:155976 -k1,14490:9317093,15580694:155975 -k1,14490:11174384,15580694:155976 -k1,14490:13074273,15580694:155976 -k1,14490:13889541,15580694:155976 -k1,14490:14401376,15580694:155975 -k1,14490:16883880,15580694:155976 -k1,14490:18490823,15580694:155976 -k1,14490:19843485,15580694:155975 -k1,14490:22130692,15580694:155976 -k1,14490:22818165,15580694:155976 -k1,14490:24258647,15580694:155976 -k1,14490:27874923,15580694:155975 -k1,14490:29918991,15580694:155976 -k1,14490:31966991,15580694:0 -) -(1,14491:7246811,16422182:24720180,513147,126483 -k1,14490:10571856,16422182:260581 -k1,14490:12208038,16422182:260581 -k1,14490:13154781,16422182:260581 -k1,14490:16173117,16422182:260581 -k1,14490:18444343,16422182:260581 -k1,14490:20590395,16422182:260581 -k1,14490:21842536,16422182:260581 -k1,14490:23122202,16422182:260581 -k1,14490:25036256,16422182:260581 -k1,14490:26244488,16422182:260581 -k1,14490:28206384,16422182:260581 -k1,14490:30210878,16422182:260581 -k1,14490:31157621,16422182:260581 -k1,14490:31966991,16422182:0 -) -(1,14491:7246811,17263670:24720180,505283,134348 -g1,14490:10328969,17263670 -g1,14490:11059695,17263670 -g1,14490:13888884,17263670 -g1,14490:16548335,17263670 -g1,14490:17103424,17263670 -(1,14490:17103424,17263670:0,452978,122846 -r1,14491:19571961,17263670:2468537,575824,122846 -k1,14490:17103424,17263670:-2468537 -) -(1,14490:17103424,17263670:2468537,452978,122846 -k1,14490:17103424,17263670:3277 -h1,14490:19568684,17263670:0,411205,112570 -) -g1,14490:19771190,17263670 -g1,14490:20621847,17263670 -(1,14490:20621847,17263670:0,452978,115847 -r1,14491:22035248,17263670:1413401,568825,115847 -k1,14490:20621847,17263670:-1413401 -) -(1,14490:20621847,17263670:1413401,452978,115847 -k1,14490:20621847,17263670:3277 -h1,14490:22031971,17263670:0,411205,112570 -) -k1,14491:31966991,17263670:9758073 -g1,14491:31966991,17263670 -) -] -) -] -r1,14491:32583029,17987842:26214,5765484,0 -) -] -) -) -g1,14491:32583029,17398018 -) -h1,14491:6630773,18014056:0,0,0 -(1,14494:6630773,19300392:25952256,505283,134348 -h1,14493:6630773,19300392:983040,0,0 -g1,14493:8766591,19300392 -g1,14493:10626502,19300392 -g1,14493:11181591,19300392 -g1,14493:13505497,19300392 -g1,14493:16366143,19300392 -g1,14493:18300765,19300392 -(1,14493:18300765,19300392:0,452978,115847 -r1,14493:20417590,19300392:2116825,568825,115847 -k1,14493:18300765,19300392:-2116825 -) -(1,14493:18300765,19300392:2116825,452978,115847 -k1,14493:18300765,19300392:3277 -h1,14493:20414313,19300392:0,411205,112570 -) -g1,14493:20616819,19300392 -g1,14493:21502210,19300392 -k1,14494:32583029,19300392:7941645 -g1,14494:32583029,19300392 -) -v1,14496:6630773,20411417:0,393216,0 -(1,14506:6630773,24698416:25952256,4680215,196608 -g1,14506:6630773,24698416 -g1,14506:6630773,24698416 -g1,14506:6434165,24698416 -(1,14506:6434165,24698416:0,4680215,196608 -r1,14506:32779637,24698416:26345472,4876823,196608 -k1,14506:6434165,24698416:-26345472 -) -(1,14506:6434165,24698416:26345472,4680215,196608 -[1,14506:6630773,24698416:25952256,4483607,0 -(1,14498:6630773,20625327:25952256,410518,107478 -(1,14497:6630773,20625327:0,0,0 -g1,14497:6630773,20625327 -g1,14497:6630773,20625327 -g1,14497:6303093,20625327 -(1,14497:6303093,20625327:0,0,0 -) -g1,14497:6630773,20625327 -) -k1,14498:6630773,20625327:0 -g1,14498:12637541,20625327 -g1,14498:14850561,20625327 -g1,14498:16115144,20625327 -h1,14498:16431290,20625327:0,0,0 -k1,14498:32583029,20625327:16151739 -g1,14498:32583029,20625327 -) -(1,14499:6630773,21291505:25952256,404226,107478 -h1,14499:6630773,21291505:0,0,0 -g1,14499:6946919,21291505 -g1,14499:7263065,21291505 -g1,14499:11372959,21291505 -h1,14499:11689105,21291505:0,0,0 -k1,14499:32583029,21291505:20893924 -g1,14499:32583029,21291505 -) -(1,14500:6630773,21957683:25952256,404226,107478 -h1,14500:6630773,21957683:0,0,0 -g1,14500:6946919,21957683 -g1,14500:7263065,21957683 -g1,14500:11689105,21957683 -g1,14500:12321397,21957683 -k1,14500:12321397,21957683:0 -h1,14500:14534417,21957683:0,0,0 -k1,14500:32583029,21957683:18048612 -g1,14500:32583029,21957683 -) -(1,14501:6630773,22623861:25952256,404226,107478 -h1,14501:6630773,22623861:0,0,0 -g1,14501:6946919,22623861 -g1,14501:7263065,22623861 -g1,14501:7579211,22623861 -g1,14501:7895357,22623861 -g1,14501:8211503,22623861 -g1,14501:8527649,22623861 -g1,14501:8843795,22623861 -g1,14501:9159941,22623861 -g1,14501:9476087,22623861 -g1,14501:9792233,22623861 -g1,14501:10108379,22623861 -g1,14501:12005253,22623861 -g1,14501:12637545,22623861 -k1,14501:12637545,22623861:0 -h1,14501:15482856,22623861:0,0,0 -k1,14501:32583028,22623861:17100172 -g1,14501:32583028,22623861 -) -(1,14502:6630773,23290039:25952256,388497,101187 -h1,14502:6630773,23290039:0,0,0 -g1,14502:6946919,23290039 -g1,14502:7263065,23290039 -g1,14502:7579211,23290039 -g1,14502:7895357,23290039 -g1,14502:8211503,23290039 -g1,14502:8527649,23290039 -g1,14502:8843795,23290039 -g1,14502:9159941,23290039 -g1,14502:9476087,23290039 -g1,14502:9792233,23290039 -g1,14502:10108379,23290039 -g1,14502:10740671,23290039 -g1,14502:11372963,23290039 -g1,14502:12321401,23290039 -g1,14502:12953693,23290039 -g1,14502:13585985,23290039 -k1,14502:13585985,23290039:0 -h1,14502:14218277,23290039:0,0,0 -k1,14502:32583029,23290039:18364752 -g1,14502:32583029,23290039 -) -(1,14503:6630773,23956217:25952256,404226,82312 -h1,14503:6630773,23956217:0,0,0 -g1,14503:6946919,23956217 -g1,14503:7263065,23956217 -g1,14503:7579211,23956217 -g1,14503:7895357,23956217 -g1,14503:8211503,23956217 -g1,14503:8527649,23956217 -g1,14503:8843795,23956217 -g1,14503:9159941,23956217 -g1,14503:9476087,23956217 -g1,14503:9792233,23956217 -g1,14503:10108379,23956217 -g1,14503:12005253,23956217 -g1,14503:12637545,23956217 -k1,14503:12637545,23956217:0 -h1,14503:14850565,23956217:0,0,0 -k1,14503:32583029,23956217:17732464 -g1,14503:32583029,23956217 -) -(1,14504:6630773,24622395:25952256,404226,76021 -h1,14504:6630773,24622395:0,0,0 -g1,14504:6946919,24622395 -g1,14504:7263065,24622395 -g1,14504:7579211,24622395 -g1,14504:7895357,24622395 -g1,14504:8211503,24622395 -g1,14504:8527649,24622395 -g1,14504:8843795,24622395 -g1,14504:9159941,24622395 -g1,14504:9476087,24622395 -g1,14504:9792233,24622395 -g1,14504:10108379,24622395 -h1,14504:12321400,24622395:0,0,0 -k1,14504:32583028,24622395:20261628 -g1,14504:32583028,24622395 -) -] -) -g1,14506:32583029,24698416 -g1,14506:6630773,24698416 -g1,14506:6630773,24698416 -g1,14506:32583029,24698416 -g1,14506:32583029,24698416 -) -h1,14506:6630773,24895024:0,0,0 -(1,14509:6630773,34468097:25952256,9062689,0 -k1,14509:10523651,34468097:3892878 -h1,14508:10523651,34468097:0,0,0 -(1,14508:10523651,34468097:18166500,9062689,0 -(1,14508:10523651,34468097:18167381,9062712,0 -(1,14508:10523651,34468097:18167381,9062712,0 -(1,14508:10523651,34468097:0,9062712,0 -(1,14508:10523651,34468097:0,14155776,0 -(1,14508:10523651,34468097:28377088,14155776,0 -) -k1,14508:10523651,34468097:-28377088 -) -) -g1,14508:28691032,34468097 -) -) -) -g1,14509:28690151,34468097 -k1,14509:32583029,34468097:3892878 -) -v1,14517:6630773,35754432:0,393216,0 -(1,14518:6630773,38755467:25952256,3394251,616038 -g1,14518:6630773,38755467 -(1,14518:6630773,38755467:25952256,3394251,616038 -(1,14518:6630773,39371505:25952256,4010289,0 -[1,14518:6630773,39371505:25952256,4010289,0 -(1,14518:6630773,39345291:25952256,3957861,0 -r1,14518:6656987,39345291:26214,3957861,0 -[1,14518:6656987,39345291:25899828,3957861,0 -(1,14518:6656987,38755467:25899828,2778213,0 -[1,14518:7246811,38755467:24720180,2778213,0 -(1,14518:7246811,37064628:24720180,1087374,134348 -k1,14517:8665142,37064628:208628 -k1,14517:10171384,37064628:208629 -k1,14517:11773963,37064628:208628 -k1,14517:13001676,37064628:208628 -k1,14517:15220950,37064628:208629 -k1,14517:16088870,37064628:208628 -k1,14517:17316583,37064628:208628 -k1,14517:20927840,37064628:208628 -k1,14517:21787897,37064628:208629 -(1,14517:21787897,37064628:0,452978,115847 -r1,14518:25311569,37064628:3523672,568825,115847 -k1,14517:21787897,37064628:-3523672 -) -(1,14517:21787897,37064628:3523672,452978,115847 -k1,14517:21787897,37064628:3277 -h1,14517:25308292,37064628:0,411205,112570 -) -k1,14517:25520197,37064628:208628 -k1,14517:26380253,37064628:208628 -k1,14517:27951376,37064628:208629 -k1,14517:29179089,37064628:208628 -k1,14517:31966991,37064628:0 -) -(1,14518:7246811,37906116:24720180,513147,134348 -k1,14517:8891601,37906116:202343 -k1,14517:10883731,37906116:202342 -k1,14517:12417110,37906116:202343 -k1,14517:14801146,37906116:202342 -k1,14517:16334525,37906116:202343 -k1,14517:18012082,37906116:202342 -k1,14517:20777538,37906116:202343 -k1,14517:22677262,37906116:202342 -k1,14517:24071050,37906116:202343 -k1,14517:28090864,37906116:202342 -k1,14517:28952499,37906116:202343 -k1,14517:30173926,37906116:202342 -k1,14518:31966991,37906116:0 -) -(1,14518:7246811,38747604:24720180,473825,7863 -k1,14518:31966991,38747604:22666282 -g1,14518:31966991,38747604 -) -] -) -] -r1,14518:32583029,39345291:26214,3957861,0 -) -] -) -) -g1,14518:32583029,38755467 -) -h1,14518:6630773,39371505:0,0,0 -(1,14522:6630773,40657841:25952256,505283,126483 -h1,14521:6630773,40657841:983040,0,0 -k1,14521:8269126,40657841:185420 -k1,14521:8986043,40657841:185420 -k1,14521:12096990,40657841:185420 -k1,14521:15059826,40657841:185420 -k1,14521:15896674,40657841:185420 -k1,14521:17174579,40657841:185420 -k1,14521:18910581,40657841:185420 -k1,14521:21165628,40657841:185420 -k1,14521:23132317,40657841:185420 -k1,14521:25903132,40657841:185420 -k1,14521:26771437,40657841:185420 -k1,14521:28934734,40657841:185420 -k1,14521:30727752,40657841:185420 -k1,14521:31599334,40657841:185420 -k1,14522:32583029,40657841:0 -) -(1,14522:6630773,41499329:25952256,505283,134348 -k1,14521:10031238,41499329:206896 -k1,14521:11717281,41499329:206895 -(1,14521:11717281,41499329:0,452978,115847 -r1,14521:18406359,41499329:6689078,568825,115847 -k1,14521:11717281,41499329:-6689078 -) -(1,14521:11717281,41499329:6689078,452978,115847 -k1,14521:11717281,41499329:3277 -h1,14521:18403082,41499329:0,411205,112570 -) -k1,14521:18786925,41499329:206896 -k1,14521:20781642,41499329:206895 -k1,14521:22821579,41499329:206896 -k1,14521:25978249,41499329:206895 -k1,14521:28351765,41499329:206896 -k1,14521:29662942,41499329:206895 -k1,14521:30617604,41499329:206896 -k1,14521:32583029,41499329:0 -) -(1,14522:6630773,42340817:25952256,513147,134348 -k1,14521:7498894,42340817:216693 -k1,14521:8071447,42340817:216693 -k1,14521:10487528,42340817:216693 -k1,14521:11533251,42340817:216693 -k1,14521:12947286,42340817:216692 -k1,14521:15636652,42340817:216693 -k1,14521:16536230,42340817:216693 -k1,14521:17772008,42340817:216693 -k1,14521:19642174,42340817:216693 -k1,14521:21136164,42340817:216693 -k1,14521:22039019,42340817:216693 -k1,14521:23026415,42340817:216693 -k1,14521:24967359,42340817:216692 -k1,14521:26052404,42340817:216693 -k1,14521:27575230,42340817:216693 -k1,14521:29322189,42340817:216693 -k1,14521:30190310,42340817:216693 -k1,14521:32583029,42340817:0 -) -(1,14522:6630773,43182305:25952256,513147,134348 -k1,14521:7358344,43182305:269474 -k1,14521:8895285,43182305:269475 -k1,14521:9520619,43182305:269474 -k1,14521:11421285,43182305:269475 -k1,14521:12318594,43182305:269474 -k1,14521:13607153,43182305:269474 -k1,14521:15243709,43182305:269475 -k1,14521:16172475,43182305:269474 -k1,14521:16797809,43182305:269474 -k1,14521:19093002,43182305:269475 -k1,14521:20230828,43182305:269474 -k1,14521:21592788,43182305:269475 -(1,14521:21592788,43182305:0,452978,122846 -r1,14521:25819884,43182305:4227096,575824,122846 -k1,14521:21592788,43182305:-4227096 -) -(1,14521:21592788,43182305:4227096,452978,122846 -k1,14521:21592788,43182305:3277 -h1,14521:25816607,43182305:0,411205,112570 -) -k1,14521:26263028,43182305:269474 -k1,14521:27160337,43182305:269474 -k1,14521:28633053,43182305:269475 -k1,14521:31563944,43182305:269474 -k1,14521:32583029,43182305:0 -) -(1,14522:6630773,44023793:25952256,505283,134348 -k1,14521:8402779,44023793:221424 -k1,14521:9155700,44023793:221424 -k1,14521:9732984,44023793:221424 -k1,14521:13350485,44023793:221425 -k1,14521:16045238,44023793:221424 -k1,14521:17534128,44023793:221424 -k1,14521:18774637,44023793:221424 -k1,14521:20587931,44023793:221424 -k1,14521:22260322,44023793:221424 -k1,14521:23109581,44023793:221424 -k1,14521:25997010,44023793:221424 -k1,14521:26869863,44023793:221425 -k1,14521:28110372,44023793:221424 -k1,14521:29962987,44023793:221424 -k1,14521:31052763,44023793:221424 -k1,14521:32583029,44023793:0 -) -(1,14522:6630773,44865281:25952256,513147,126483 -k1,14521:7505679,44865281:223478 -k1,14521:10159231,44865281:223477 -k1,14521:11401794,44865281:223478 -k1,14521:15363445,44865281:223477 -k1,14521:18784425,44865281:223478 -k1,14521:19623940,44865281:223477 -k1,14521:22739522,44865281:223478 -k1,14521:24352362,44865281:223477 -k1,14521:26193924,44865281:223478 -k1,14521:27076693,44865281:223477 -k1,14521:28319256,44865281:223478 -k1,14521:30134603,44865281:223477 -k1,14521:31635378,44865281:223478 -k1,14521:32583029,44865281:0 -) -(1,14522:6630773,45706769:25952256,513147,134348 -g1,14521:7849087,45706769 -g1,14521:10604875,45706769 -g1,14521:11463396,45706769 -g1,14521:12681710,45706769 -k1,14522:32583029,45706769:18270128 -g1,14522:32583029,45706769 -) -] -(1,14524:32583029,45706769:0,0,0 -g1,14524:32583029,45706769 -) -) -] -(1,14524:6630773,47279633:25952256,0,0 -h1,14524:6630773,47279633:25952256,0,0 -) -] -h1,14524:4262630,4025873:0,0,0 -] -!23320 -}279 -Input:2199:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2200:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 -{280 -[1,14580:4262630,47279633:28320399,43253760,0 -(1,14580:4262630,4025873:0,0,0 -[1,14580:-473657,4025873:25952256,0,0 -(1,14580:-473657,-710414:25952256,0,0 -h1,14580:-473657,-710414:0,0,0 -(1,14580:-473657,-710414:0,0,0 -(1,14580:-473657,-710414:0,0,0 -g1,14580:-473657,-710414 -(1,14580:-473657,-710414:65781,0,65781 -g1,14580:-407876,-710414 -[1,14580:-407876,-644633:0,0,0 ] ) -k1,14580:-473657,-710414:-65781 +] +r1,14546:32583029,45680555:26214,3957861,0 ) +] ) -k1,14580:25478599,-710414:25952256 -g1,14580:25478599,-710414 ) -] +g1,14546:32583029,45090731 ) -[1,14580:6630773,47279633:25952256,43253760,0 -[1,14580:6630773,4812305:25952256,786432,0 -(1,14580:6630773,4812305:25952256,505283,134348 -(1,14580:6630773,4812305:25952256,505283,134348 -g1,14580:3078558,4812305 -[1,14580:3078558,4812305:0,0,0 -(1,14580:3078558,2439708:0,1703936,0 -k1,14580:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14580:2537886,2439708:1179648,16384,0 +h1,14546:6630773,45706769:0,0,0 +] +(1,14550:32583029,45706769:0,0,0 +g1,14550:32583029,45706769 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14580:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +] +(1,14550:6630773,47279633:25952256,0,0 +h1,14550:6630773,47279633:25952256,0,0 ) ] +h1,14550:4262630,4025873:0,0,0 +] +!22204 +}280 +Input:2196:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2197:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 +{281 +[1,14608:4262630,47279633:28320399,43253760,0 +(1,14608:4262630,4025873:0,0,0 +[1,14608:-473657,4025873:25952256,0,0 +(1,14608:-473657,-710414:25952256,0,0 +h1,14608:-473657,-710414:0,0,0 +(1,14608:-473657,-710414:0,0,0 +(1,14608:-473657,-710414:0,0,0 +g1,14608:-473657,-710414 +(1,14608:-473657,-710414:65781,0,65781 +g1,14608:-407876,-710414 +[1,14608:-407876,-644633:0,0,0 +] ) +k1,14608:-473657,-710414:-65781 ) ) +k1,14608:25478599,-710414:25952256 +g1,14608:25478599,-710414 +) ] -[1,14580:3078558,4812305:0,0,0 -(1,14580:3078558,2439708:0,1703936,0 -g1,14580:29030814,2439708 -g1,14580:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14580:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +[1,14608:6630773,47279633:25952256,43253760,0 +[1,14608:6630773,4812305:25952256,786432,0 +(1,14608:6630773,4812305:25952256,513147,134348 +(1,14608:6630773,4812305:25952256,513147,134348 +g1,14608:3078558,4812305 +[1,14608:3078558,4812305:0,0,0 +(1,14608:3078558,2439708:0,1703936,0 +k1,14608:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14608:2537886,2439708:1179648,16384,0 +) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14608:3078558,1915420:16384,1179648,0 +) +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14580:37855564,2439708:1179648,16384,0 ) ) -k1,14580:3078556,2439708:-34777008 +] +[1,14608:3078558,4812305:0,0,0 +(1,14608:3078558,2439708:0,1703936,0 +g1,14608:29030814,2439708 +g1,14608:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14608:36151628,1915420:16384,1179648,0 +) +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] -[1,14580:3078558,4812305:0,0,0 -(1,14580:3078558,49800853:0,16384,2228224 -k1,14580:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14580:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14580:3078558,51504789:16384,1179648,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14608:37855564,2439708:1179648,16384,0 +) ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,14608:3078556,2439708:-34777008 ) ] +[1,14608:3078558,4812305:0,0,0 +(1,14608:3078558,49800853:0,16384,2228224 +k1,14608:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14608:2537886,49800853:1179648,16384,0 ) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14608:3078558,51504789:16384,1179648,0 ) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] -[1,14580:3078558,4812305:0,0,0 -(1,14580:3078558,49800853:0,16384,2228224 -g1,14580:29030814,49800853 -g1,14580:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14580:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +) +) +] +[1,14608:3078558,4812305:0,0,0 +(1,14608:3078558,49800853:0,16384,2228224 +g1,14608:29030814,49800853 +g1,14608:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14608:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14580:37855564,49800853:1179648,16384,0 -) -) -k1,14580:3078556,49800853:-34777008 -) -] -g1,14580:6630773,4812305 -g1,14580:6630773,4812305 -g1,14580:9113932,4812305 -g1,14580:13027742,4812305 -k1,14580:31387652,4812305:18359910 -) -) -] -[1,14580:6630773,45706769:25952256,40108032,0 -(1,14580:6630773,45706769:25952256,40108032,0 -(1,14580:6630773,45706769:0,0,0 -g1,14580:6630773,45706769 -) -[1,14580:6630773,45706769:25952256,40108032,0 -v1,14524:6630773,6254097:0,393216,0 -(1,14533:6630773,9900084:25952256,4039203,196608 -g1,14533:6630773,9900084 -g1,14533:6630773,9900084 -g1,14533:6434165,9900084 -(1,14533:6434165,9900084:0,4039203,196608 -r1,14533:32779637,9900084:26345472,4235811,196608 -k1,14533:6434165,9900084:-26345472 -) -(1,14533:6434165,9900084:26345472,4039203,196608 -[1,14533:6630773,9900084:25952256,3842595,0 -(1,14526:6630773,6468007:25952256,410518,107478 -(1,14525:6630773,6468007:0,0,0 -g1,14525:6630773,6468007 -g1,14525:6630773,6468007 -g1,14525:6303093,6468007 -(1,14525:6303093,6468007:0,0,0 -) -g1,14525:6630773,6468007 -) -g1,14526:7263065,6468007 -g1,14526:8211503,6468007 -g1,14526:14218271,6468007 -g1,14526:16431291,6468007 -g1,14526:17695874,6468007 -h1,14526:18012020,6468007:0,0,0 -k1,14526:32583029,6468007:14571009 -g1,14526:32583029,6468007 -) -(1,14527:6630773,7134185:25952256,404226,107478 -h1,14527:6630773,7134185:0,0,0 -g1,14527:6946919,7134185 -g1,14527:7263065,7134185 -k1,14527:7263065,7134185:0 -h1,14527:11056813,7134185:0,0,0 -k1,14527:32583029,7134185:21526216 -g1,14527:32583029,7134185 -) -(1,14528:6630773,7800363:25952256,404226,101187 -h1,14528:6630773,7800363:0,0,0 -g1,14528:7263065,7800363 -g1,14528:7895357,7800363 -g1,14528:12953689,7800363 -g1,14528:13585981,7800363 -g1,14528:14850564,7800363 -h1,14528:15166710,7800363:0,0,0 -k1,14528:32583030,7800363:17416320 -g1,14528:32583030,7800363 -) -(1,14529:6630773,8466541:25952256,404226,107478 -h1,14529:6630773,8466541:0,0,0 -k1,14529:6841537,8466541:210764 -k1,14529:7052301,8466541:210764 -k1,14529:16747436,8466541:210764 -k1,14529:17274346,8466541:210764 -k1,14529:23808024,8466541:210764 -k1,14529:24334934,8466541:210764 -k1,14529:25810282,8466541:210764 -k1,14529:27285629,8466541:210764 -k1,14529:28760976,8466541:210764 -k1,14529:29287886,8466541:210764 -k1,14529:31079379,8466541:210764 -k1,14529:32554725,8466541:210764 -h1,14529:32870871,8466541:0,0,0 -k1,14529:32870871,8466541:0 -k1,14529:32870871,8466541:0 -) -(1,14530:6630773,9132719:25952256,404226,82312 -h1,14530:6630773,9132719:0,0,0 -g1,14530:6946919,9132719 -g1,14530:7263065,9132719 -g1,14530:7579211,9132719 -g1,14530:7895357,9132719 -g1,14530:8211503,9132719 -g1,14530:8527649,9132719 -g1,14530:8843795,9132719 -g1,14530:9159941,9132719 -g1,14530:9476087,9132719 -g1,14530:9792233,9132719 -g1,14530:10108379,9132719 -g1,14530:10424525,9132719 -g1,14530:10740671,9132719 -g1,14530:11056817,9132719 -g1,14530:11372963,9132719 -g1,14530:11689109,9132719 -g1,14530:12005255,9132719 -g1,14530:12321401,9132719 -g1,14530:12637547,9132719 -g1,14530:12953693,9132719 -g1,14530:13269839,9132719 -g1,14530:13585985,9132719 -g1,14530:13902131,9132719 -g1,14530:14218277,9132719 -g1,14530:14534423,9132719 -g1,14530:14850569,9132719 -g1,14530:15166715,9132719 -g1,14530:15482861,9132719 -g1,14530:15799007,9132719 -g1,14530:16115153,9132719 -g1,14530:16431299,9132719 -k1,14530:16431299,9132719:0 -h1,14530:20857338,9132719:0,0,0 -k1,14530:32583029,9132719:11725691 -g1,14530:32583029,9132719 -) -(1,14531:6630773,9798897:25952256,404226,101187 -h1,14531:6630773,9798897:0,0,0 -g1,14531:6946919,9798897 -g1,14531:7263065,9798897 -g1,14531:7579211,9798897 -g1,14531:7895357,9798897 -g1,14531:8211503,9798897 -g1,14531:8527649,9798897 -g1,14531:8843795,9798897 -g1,14531:9159941,9798897 -g1,14531:9476087,9798897 -g1,14531:9792233,9798897 -g1,14531:10108379,9798897 -g1,14531:10424525,9798897 -g1,14531:10740671,9798897 -g1,14531:11056817,9798897 -g1,14531:11372963,9798897 -g1,14531:11689109,9798897 -g1,14531:12005255,9798897 -g1,14531:12321401,9798897 -g1,14531:12637547,9798897 -g1,14531:12953693,9798897 -g1,14531:14534422,9798897 -g1,14531:15166714,9798897 -g1,14531:16431297,9798897 -g1,14531:18012026,9798897 -g1,14531:18644318,9798897 -g1,14531:19908901,9798897 -g1,14531:21489630,9798897 -g1,14531:22121922,9798897 -g1,14531:23386505,9798897 -g1,14531:24967234,9798897 -g1,14531:25599526,9798897 -h1,14531:26547963,9798897:0,0,0 -k1,14531:32583029,9798897:6035066 -g1,14531:32583029,9798897 -) -] -) -g1,14533:32583029,9900084 -g1,14533:6630773,9900084 -g1,14533:6630773,9900084 -g1,14533:32583029,9900084 -g1,14533:32583029,9900084 -) -h1,14533:6630773,10096692:0,0,0 -(1,14536:6630773,19749205:25952256,9062689,0 -k1,14536:10523651,19749205:3892878 -h1,14535:10523651,19749205:0,0,0 -(1,14535:10523651,19749205:18166500,9062689,0 -(1,14535:10523651,19749205:18167381,9062712,0 -(1,14535:10523651,19749205:18167381,9062712,0 -(1,14535:10523651,19749205:0,9062712,0 -(1,14535:10523651,19749205:0,14155776,0 -(1,14535:10523651,19749205:28377088,14155776,0 -) -k1,14535:10523651,19749205:-28377088 -) -) -g1,14535:28691032,19749205 -) -) -) -g1,14536:28690151,19749205 -k1,14536:32583029,19749205:3892878 -) -(1,14545:6630773,20590693:25952256,513147,134348 -h1,14543:6630773,20590693:983040,0,0 -k1,14543:9223487,20590693:228830 -k1,14543:12436826,20590693:228829 -k1,14543:13766661,20590693:228830 -k1,14543:15014575,20590693:228829 -k1,14543:18351122,20590693:228830 -k1,14543:19864458,20590693:228830 -k1,14543:20559248,20590693:228829 -k1,14543:22301304,20590693:228830 -k1,14543:25210556,20590693:228829 -k1,14543:26833337,20590693:228830 -k1,14543:29784532,20590693:228829 -k1,14543:31032447,20590693:228830 -k1,14543:32583029,20590693:0 -) -(1,14545:6630773,21432181:25952256,513147,134348 -k1,14543:7967663,21432181:204428 -k1,14543:8919858,21432181:204429 -k1,14543:10143371,21432181:204428 -k1,14543:12001273,21432181:204429 -k1,14543:13153352,21432181:204428 -k1,14543:14809403,21432181:204429 -k1,14543:16291128,21432181:204428 -k1,14543:18413140,21432181:204429 -k1,14543:19667455,21432181:204428 -k1,14543:22150571,21432181:204429 -h1,14543:23693289,21432181:0,0,0 -k1,14543:23897717,21432181:204428 -k1,14543:24911516,21432181:204429 -k1,14543:26614097,21432181:204428 -h1,14543:27809474,21432181:0,0,0 -k1,14543:28013903,21432181:204429 -k1,14543:29165982,21432181:204428 -k1,14545:32583029,21432181:0 -) -(1,14545:6630773,22273669:25952256,505283,7863 -g1,14543:8114508,22273669 -g1,14543:9418019,22273669 -g1,14543:10365014,22273669 -g1,14543:12077469,22273669 -g1,14543:12928126,22273669 -g1,14543:14324698,22273669 -g1,14543:16578481,22273669 -k1,14545:32583029,22273669:16004548 -g1,14545:32583029,22273669 -) -(1,14547:6630773,23115157:25952256,505283,134348 -h1,14546:6630773,23115157:983040,0,0 -k1,14546:8577371,23115157:335723 -k1,14546:9932179,23115157:335723 -k1,14546:11652022,23115157:335723 -k1,14546:14822832,23115157:335723 -k1,14546:15774593,23115157:335723 -k1,14546:18776321,23115157:335723 -k1,14546:19763472,23115157:335723 -k1,14546:22286787,23115157:335723 -k1,14546:26392796,23115157:335723 -k1,14546:27414681,23115157:335723 -k1,14546:31714677,23115157:335723 -k1,14546:32583029,23115157:0 -) -(1,14547:6630773,23956645:25952256,505283,134348 -k1,14546:8249613,23956645:333024 -k1,14546:10019841,23956645:333023 -k1,14546:14123151,23956645:333024 -k1,14546:15142336,23956645:333023 -k1,14546:16659596,23956645:333024 -k1,14546:18836803,23956645:333024 -k1,14546:21728352,23956645:333023 -k1,14546:23080461,23956645:333024 -k1,14546:25159364,23956645:333024 -k1,14546:26390230,23956645:333023 -k1,14546:28671639,23956645:333024 -k1,14546:30289168,23956645:333023 -k1,14546:31490544,23956645:333024 -k1,14546:32583029,23956645:0 -) -(1,14547:6630773,24798133:25952256,513147,134348 -k1,14546:9788171,24798133:298062 -k1,14546:11033883,24798133:298061 -k1,14546:13513639,24798133:298062 -k1,14546:14830785,24798133:298061 -k1,14546:17417364,24798133:298062 -k1,14546:18401587,24798133:298061 -(1,14546:18401587,24798133:0,452978,115847 -r1,14546:27200938,24798133:8799351,568825,115847 -k1,14546:18401587,24798133:-8799351 -) -(1,14546:18401587,24798133:8799351,452978,115847 -g1,14546:20163423,24798133 -g1,14546:21921982,24798133 -g1,14546:22977118,24798133 -g1,14546:24735677,24798133 -g1,14546:25790813,24798133 -g1,14546:26494237,24798133 -h1,14546:27197661,24798133:0,411205,112570 -) -k1,14546:27499000,24798133:298062 -k1,14546:28328558,24798133:298061 -k1,14546:31931601,24798133:298062 -k1,14547:32583029,24798133:0 -) -(1,14547:6630773,25639621:25952256,505283,126483 -(1,14546:6630773,25639621:0,452978,115847 -r1,14546:18947241,25639621:12316468,568825,115847 -k1,14546:6630773,25639621:-12316468 -) -(1,14546:6630773,25639621:12316468,452978,115847 -g1,14546:8392609,25639621 -g1,14546:9799456,25639621 -g1,14546:10502880,25639621 -g1,14546:11909727,25639621 -g1,14546:13316574,25639621 -g1,14546:14723421,25639621 -g1,14546:15426845,25639621 -g1,14546:16833692,25639621 -g1,14546:17537116,25639621 -g1,14546:18240540,25639621 -h1,14546:18943964,25639621:0,411205,112570 -) -k1,14546:19297255,25639621:176344 -k1,14546:23395929,25639621:176344 -k1,14546:24563833,25639621:176344 -k1,14546:27042458,25639621:176345 -k1,14546:27831564,25639621:176344 -k1,14546:29516547,25639621:176344 -k1,14546:31023272,25639621:176344 -k1,14547:32583029,25639621:0 -) -(1,14547:6630773,26481109:25952256,505283,134348 -k1,14546:8250924,26481109:179014 -k1,14546:11481294,26481109:179014 -k1,14546:12311736,26481109:179014 -k1,14546:13622557,26481109:179014 -k1,14546:17543021,26481109:179014 -k1,14546:18338073,26481109:179014 -k1,14546:19536172,26481109:179014 -k1,14546:21278220,26481109:179014 -k1,14546:22529403,26481109:179014 -k1,14546:24443810,26481109:179014 -k1,14546:25641909,26481109:179014 -k1,14546:27474396,26481109:179014 -k1,14546:31391584,26481109:179014 -k1,14546:32583029,26481109:0 -) -(1,14547:6630773,27322597:25952256,513147,134348 -g1,14546:8448086,27322597 -g1,14546:9333477,27322597 -g1,14546:10480357,27322597 -g1,14546:13204033,27322597 -g1,14546:14422347,27322597 -k1,14547:32583029,27322597:16597648 -g1,14547:32583029,27322597 -) -v1,14549:6630773,28513063:0,393216,0 -(1,14569:6630773,39461842:25952256,11341995,196608 -g1,14569:6630773,39461842 -g1,14569:6630773,39461842 -g1,14569:6434165,39461842 -(1,14569:6434165,39461842:0,11341995,196608 -r1,14569:32779637,39461842:26345472,11538603,196608 -k1,14569:6434165,39461842:-26345472 -) -(1,14569:6434165,39461842:26345472,11341995,196608 -[1,14569:6630773,39461842:25952256,11145387,0 -(1,14551:6630773,28726973:25952256,410518,107478 -(1,14550:6630773,28726973:0,0,0 -g1,14550:6630773,28726973 -g1,14550:6630773,28726973 -g1,14550:6303093,28726973 -(1,14550:6303093,28726973:0,0,0 -) -g1,14550:6630773,28726973 -) -k1,14551:6630773,28726973:0 -g1,14551:12953688,28726973 -g1,14551:13585980,28726973 -g1,14551:15166710,28726973 -g1,14551:15799002,28726973 -g1,14551:16431294,28726973 -g1,14551:18328169,28726973 -g1,14551:20225044,28726973 -g1,14551:20857336,28726973 -g1,14551:22121919,28726973 -h1,14551:22438065,28726973:0,0,0 -k1,14551:32583029,28726973:10144964 -g1,14551:32583029,28726973 -) -(1,14552:6630773,29393151:25952256,410518,76021 -h1,14552:6630773,29393151:0,0,0 -g1,14552:6946919,29393151 -g1,14552:7263065,29393151 -g1,14552:12953688,29393151 -g1,14552:13585980,29393151 -g1,14552:15166709,29393151 -h1,14552:15482855,29393151:0,0,0 -k1,14552:32583029,29393151:17100174 -g1,14552:32583029,29393151 -) -(1,14553:6630773,30059329:25952256,404226,76021 -h1,14553:6630773,30059329:0,0,0 -g1,14553:6946919,30059329 -g1,14553:7263065,30059329 -k1,14553:7263065,30059329:0 -h1,14553:13269833,30059329:0,0,0 -k1,14553:32583029,30059329:19313196 -g1,14553:32583029,30059329 -) -(1,14554:6630773,30725507:25952256,404226,101187 -h1,14554:6630773,30725507:0,0,0 -g1,14554:6946919,30725507 -g1,14554:7263065,30725507 -g1,14554:7579211,30725507 -g1,14554:7895357,30725507 -g1,14554:10108377,30725507 -g1,14554:10740669,30725507 -g1,14554:12321399,30725507 -g1,14554:13902128,30725507 -g1,14554:14850566,30725507 -g1,14554:16431295,30725507 -g1,14554:17379733,30725507 -g1,14554:18012025,30725507 -k1,14554:18012025,30725507:0 -h1,14554:18960462,30725507:0,0,0 -k1,14554:32583029,30725507:13622567 -g1,14554:32583029,30725507 -) -(1,14555:6630773,31391685:25952256,404226,101187 -h1,14555:6630773,31391685:0,0,0 -g1,14555:6946919,31391685 -g1,14555:7263065,31391685 -g1,14555:7579211,31391685 -g1,14555:7895357,31391685 -g1,14555:10108377,31391685 -g1,14555:10740669,31391685 -g1,14555:12953690,31391685 -g1,14555:19276605,31391685 -k1,14555:19276605,31391685:0 -h1,14555:24018791,31391685:0,0,0 -k1,14555:32583029,31391685:8564238 -g1,14555:32583029,31391685 -) -(1,14556:6630773,32057863:25952256,404226,101187 -h1,14556:6630773,32057863:0,0,0 -g1,14556:6946919,32057863 -g1,14556:7263065,32057863 -g1,14556:7579211,32057863 -g1,14556:7895357,32057863 -g1,14556:8211503,32057863 -g1,14556:8527649,32057863 -g1,14556:8843795,32057863 -g1,14556:9159941,32057863 -g1,14556:9476087,32057863 -g1,14556:9792233,32057863 -g1,14556:10108379,32057863 -g1,14556:10424525,32057863 -g1,14556:10740671,32057863 -g1,14556:17063586,32057863 -g1,14556:23070355,32057863 -h1,14556:23386501,32057863:0,0,0 -k1,14556:32583029,32057863:9196528 -g1,14556:32583029,32057863 -) -(1,14557:6630773,32724041:25952256,404226,101187 -h1,14557:6630773,32724041:0,0,0 -g1,14557:6946919,32724041 -g1,14557:7263065,32724041 -g1,14557:9476086,32724041 -g1,14557:10108378,32724041 -g1,14557:13269835,32724041 -h1,14557:13585981,32724041:0,0,0 -k1,14557:32583029,32724041:18997048 -g1,14557:32583029,32724041 -) -(1,14558:6630773,33390219:25952256,404226,107478 -h1,14558:6630773,33390219:0,0,0 -g1,14558:6946919,33390219 -g1,14558:7263065,33390219 -g1,14558:11689105,33390219 -g1,14558:12321397,33390219 -k1,14558:12321397,33390219:0 -h1,14558:14534417,33390219:0,0,0 -k1,14558:32583029,33390219:18048612 -g1,14558:32583029,33390219 -) -(1,14559:6630773,34056397:25952256,404226,82312 -h1,14559:6630773,34056397:0,0,0 -g1,14559:6946919,34056397 -g1,14559:7263065,34056397 -g1,14559:7579211,34056397 -g1,14559:7895357,34056397 -g1,14559:8211503,34056397 -g1,14559:8527649,34056397 -g1,14559:8843795,34056397 -g1,14559:9159941,34056397 -g1,14559:9476087,34056397 -g1,14559:9792233,34056397 -g1,14559:10108379,34056397 -g1,14559:12005253,34056397 -g1,14559:12637545,34056397 -g1,14559:14850566,34056397 -k1,14559:14850566,34056397:0 -h1,14559:16431295,34056397:0,0,0 -k1,14559:32583029,34056397:16151734 -g1,14559:32583029,34056397 -) -(1,14560:6630773,34722575:25952256,404226,101187 -h1,14560:6630773,34722575:0,0,0 -g1,14560:6946919,34722575 -g1,14560:7263065,34722575 -g1,14560:7579211,34722575 -g1,14560:7895357,34722575 -g1,14560:8211503,34722575 -g1,14560:8527649,34722575 -g1,14560:8843795,34722575 -g1,14560:9159941,34722575 -g1,14560:9476087,34722575 -g1,14560:9792233,34722575 -g1,14560:10108379,34722575 -g1,14560:10740671,34722575 -g1,14560:11372963,34722575 -g1,14560:13585984,34722575 -g1,14560:15166713,34722575 -g1,14560:15799005,34722575 -g1,14560:17063588,34722575 -g1,14560:17695880,34722575 -g1,14560:18328172,34722575 -g1,14560:20541193,34722575 -k1,14560:20541193,34722575:0 -h1,14560:22438068,34722575:0,0,0 -k1,14560:32583029,34722575:10144961 -g1,14560:32583029,34722575 -) -(1,14561:6630773,35388753:25952256,404226,76021 -h1,14561:6630773,35388753:0,0,0 -g1,14561:6946919,35388753 -g1,14561:7263065,35388753 -g1,14561:7579211,35388753 -g1,14561:7895357,35388753 -g1,14561:8211503,35388753 -g1,14561:8527649,35388753 -g1,14561:8843795,35388753 -g1,14561:9159941,35388753 -g1,14561:9476087,35388753 -g1,14561:9792233,35388753 -g1,14561:10108379,35388753 -g1,14561:11689108,35388753 -g1,14561:12321400,35388753 -g1,14561:13585983,35388753 -h1,14561:13902129,35388753:0,0,0 -k1,14561:32583029,35388753:18680900 -g1,14561:32583029,35388753 -) -(1,14562:6630773,36054931:25952256,404226,107478 -h1,14562:6630773,36054931:0,0,0 -g1,14562:6946919,36054931 -g1,14562:7263065,36054931 -g1,14562:11689105,36054931 -g1,14562:12321397,36054931 -k1,14562:12321397,36054931:0 -h1,14562:14850563,36054931:0,0,0 -k1,14562:32583029,36054931:17732466 -g1,14562:32583029,36054931 -) -(1,14563:6630773,36721109:25952256,404226,82312 -h1,14563:6630773,36721109:0,0,0 -g1,14563:6946919,36721109 -g1,14563:7263065,36721109 -g1,14563:7579211,36721109 -g1,14563:7895357,36721109 -g1,14563:8211503,36721109 -g1,14563:8527649,36721109 -g1,14563:8843795,36721109 -g1,14563:9159941,36721109 -g1,14563:9476087,36721109 -g1,14563:9792233,36721109 -g1,14563:10108379,36721109 -g1,14563:12005253,36721109 -g1,14563:12637545,36721109 -k1,14563:12637545,36721109:0 -h1,14563:14534419,36721109:0,0,0 -k1,14563:32583029,36721109:18048610 -g1,14563:32583029,36721109 -) -(1,14564:6630773,37387287:25952256,404226,101187 -h1,14564:6630773,37387287:0,0,0 -g1,14564:6946919,37387287 -g1,14564:7263065,37387287 -g1,14564:7579211,37387287 -g1,14564:7895357,37387287 -g1,14564:8211503,37387287 -g1,14564:8527649,37387287 -g1,14564:8843795,37387287 -g1,14564:9159941,37387287 -g1,14564:9476087,37387287 -g1,14564:9792233,37387287 -g1,14564:10108379,37387287 -g1,14564:12005253,37387287 -g1,14564:12637545,37387287 -k1,14564:12637545,37387287:0 -h1,14564:13585982,37387287:0,0,0 -k1,14564:32583030,37387287:18997048 -g1,14564:32583030,37387287 -) -(1,14565:6630773,38053465:25952256,410518,82312 -h1,14565:6630773,38053465:0,0,0 -g1,14565:6946919,38053465 -g1,14565:7263065,38053465 -g1,14565:7579211,38053465 -g1,14565:7895357,38053465 -g1,14565:8211503,38053465 -g1,14565:8527649,38053465 -g1,14565:8843795,38053465 -g1,14565:9159941,38053465 -g1,14565:9476087,38053465 -g1,14565:9792233,38053465 -g1,14565:10108379,38053465 -g1,14565:11689108,38053465 -g1,14565:12321400,38053465 -k1,14565:12321400,38053465:0 -h1,14565:14850566,38053465:0,0,0 -k1,14565:32583030,38053465:17732464 -g1,14565:32583030,38053465 -) -(1,14566:6630773,38719643:25952256,404226,101187 -h1,14566:6630773,38719643:0,0,0 -g1,14566:6946919,38719643 -g1,14566:7263065,38719643 -g1,14566:7579211,38719643 -g1,14566:7895357,38719643 -g1,14566:8211503,38719643 -g1,14566:8527649,38719643 -g1,14566:8843795,38719643 -g1,14566:9159941,38719643 -g1,14566:9476087,38719643 -g1,14566:9792233,38719643 -g1,14566:10108379,38719643 -g1,14566:10740671,38719643 -g1,14566:11372963,38719643 -g1,14566:12953693,38719643 -g1,14566:13902131,38719643 -g1,14566:14850569,38719643 -g1,14566:15482861,38719643 -g1,14566:16747444,38719643 -g1,14566:17379736,38719643 -g1,14566:18012028,38719643 -k1,14566:18012028,38719643:0 -h1,14566:18644320,38719643:0,0,0 -k1,14566:32583029,38719643:13938709 -g1,14566:32583029,38719643 -) -(1,14567:6630773,39385821:25952256,404226,76021 -h1,14567:6630773,39385821:0,0,0 -g1,14567:6946919,39385821 -g1,14567:7263065,39385821 -g1,14567:7579211,39385821 -g1,14567:7895357,39385821 -g1,14567:8211503,39385821 -g1,14567:8527649,39385821 -g1,14567:8843795,39385821 -g1,14567:9159941,39385821 -g1,14567:9476087,39385821 -g1,14567:9792233,39385821 -g1,14567:10108379,39385821 -g1,14567:11689108,39385821 -g1,14567:12321400,39385821 -h1,14567:12953692,39385821:0,0,0 -k1,14567:32583028,39385821:19629336 -g1,14567:32583028,39385821 -) -] -) -g1,14569:32583029,39461842 -g1,14569:6630773,39461842 -g1,14569:6630773,39461842 -g1,14569:32583029,39461842 -g1,14569:32583029,39461842 -) -h1,14569:6630773,39658450:0,0,0 -] -(1,14580:32583029,45706769:0,0,0 -g1,14580:32583029,45706769 -) -) -] -(1,14580:6630773,47279633:25952256,0,0 -h1,14580:6630773,47279633:25952256,0,0 -) -] -h1,14580:4262630,4025873:0,0,0 -] -!21911 -}280 -Input:2201:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2202:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2203:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2204:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2205:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2206:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2207:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2208:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2209:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2210:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2211:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2212:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2213:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1130 -{281 -[1,14598:4262630,47279633:28320399,43253760,0 -(1,14598:4262630,4025873:0,0,0 -[1,14598:-473657,4025873:25952256,0,0 -(1,14598:-473657,-710414:25952256,0,0 -h1,14598:-473657,-710414:0,0,0 -(1,14598:-473657,-710414:0,0,0 -(1,14598:-473657,-710414:0,0,0 -g1,14598:-473657,-710414 -(1,14598:-473657,-710414:65781,0,65781 -g1,14598:-407876,-710414 -[1,14598:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14608:37855564,49800853:1179648,16384,0 +) +) +k1,14608:3078556,49800853:-34777008 +) +] +g1,14608:6630773,4812305 +k1,14608:25712890,4812305:17886740 +g1,14608:29057847,4812305 +g1,14608:29873114,4812305 +) +) +] +[1,14608:6630773,45706769:25952256,40108032,0 +(1,14608:6630773,45706769:25952256,40108032,0 +(1,14608:6630773,45706769:0,0,0 +g1,14608:6630773,45706769 +) +[1,14608:6630773,45706769:25952256,40108032,0 +(1,14550:6630773,6254097:25952256,505283,126483 +h1,14549:6630773,6254097:983040,0,0 +k1,14549:8269126,6254097:185420 +k1,14549:8986043,6254097:185420 +k1,14549:12096990,6254097:185420 +k1,14549:15059826,6254097:185420 +k1,14549:15896674,6254097:185420 +k1,14549:17174579,6254097:185420 +k1,14549:18910581,6254097:185420 +k1,14549:21165628,6254097:185420 +k1,14549:23132317,6254097:185420 +k1,14549:25903132,6254097:185420 +k1,14549:26771437,6254097:185420 +k1,14549:28934734,6254097:185420 +k1,14549:30727752,6254097:185420 +k1,14549:31599334,6254097:185420 +k1,14550:32583029,6254097:0 +) +(1,14550:6630773,7095585:25952256,505283,134348 +k1,14549:10031238,7095585:206896 +k1,14549:11717281,7095585:206895 +(1,14549:11717281,7095585:0,452978,115847 +r1,14549:18406359,7095585:6689078,568825,115847 +k1,14549:11717281,7095585:-6689078 +) +(1,14549:11717281,7095585:6689078,452978,115847 +k1,14549:11717281,7095585:3277 +h1,14549:18403082,7095585:0,411205,112570 +) +k1,14549:18786925,7095585:206896 +k1,14549:20781642,7095585:206895 +k1,14549:22821579,7095585:206896 +k1,14549:25978249,7095585:206895 +k1,14549:28351765,7095585:206896 +k1,14549:29662942,7095585:206895 +k1,14549:30617604,7095585:206896 +k1,14549:32583029,7095585:0 +) +(1,14550:6630773,7937073:25952256,513147,134348 +k1,14549:7498894,7937073:216693 +k1,14549:8071447,7937073:216693 +k1,14549:10487528,7937073:216693 +k1,14549:11533251,7937073:216693 +k1,14549:12947286,7937073:216692 +k1,14549:15636652,7937073:216693 +k1,14549:16536230,7937073:216693 +k1,14549:17772008,7937073:216693 +k1,14549:19642174,7937073:216693 +k1,14549:21136164,7937073:216693 +k1,14549:22039019,7937073:216693 +k1,14549:23026415,7937073:216693 +k1,14549:24967359,7937073:216692 +k1,14549:26052404,7937073:216693 +k1,14549:27575230,7937073:216693 +k1,14549:29322189,7937073:216693 +k1,14549:30190310,7937073:216693 +k1,14549:32583029,7937073:0 +) +(1,14550:6630773,8778561:25952256,513147,134348 +k1,14549:7358344,8778561:269474 +k1,14549:8895285,8778561:269475 +k1,14549:9520619,8778561:269474 +k1,14549:11421285,8778561:269475 +k1,14549:12318594,8778561:269474 +k1,14549:13607153,8778561:269474 +k1,14549:15243709,8778561:269475 +k1,14549:16172475,8778561:269474 +k1,14549:16797809,8778561:269474 +k1,14549:19093002,8778561:269475 +k1,14549:20230828,8778561:269474 +k1,14549:21592788,8778561:269475 +(1,14549:21592788,8778561:0,452978,122846 +r1,14549:25819884,8778561:4227096,575824,122846 +k1,14549:21592788,8778561:-4227096 +) +(1,14549:21592788,8778561:4227096,452978,122846 +k1,14549:21592788,8778561:3277 +h1,14549:25816607,8778561:0,411205,112570 +) +k1,14549:26263028,8778561:269474 +k1,14549:27160337,8778561:269474 +k1,14549:28633053,8778561:269475 +k1,14549:31563944,8778561:269474 +k1,14549:32583029,8778561:0 +) +(1,14550:6630773,9620049:25952256,505283,134348 +k1,14549:8402779,9620049:221424 +k1,14549:9155700,9620049:221424 +k1,14549:9732984,9620049:221424 +k1,14549:13350485,9620049:221425 +k1,14549:16045238,9620049:221424 +k1,14549:17534128,9620049:221424 +k1,14549:18774637,9620049:221424 +k1,14549:20587931,9620049:221424 +k1,14549:22260322,9620049:221424 +k1,14549:23109581,9620049:221424 +k1,14549:25997010,9620049:221424 +k1,14549:26869863,9620049:221425 +k1,14549:28110372,9620049:221424 +k1,14549:29962987,9620049:221424 +k1,14549:31052763,9620049:221424 +k1,14549:32583029,9620049:0 +) +(1,14550:6630773,10461537:25952256,513147,126483 +k1,14549:7505679,10461537:223478 +k1,14549:10159231,10461537:223477 +k1,14549:11401794,10461537:223478 +k1,14549:15363445,10461537:223477 +k1,14549:18784425,10461537:223478 +k1,14549:19623940,10461537:223477 +k1,14549:22739522,10461537:223478 +k1,14549:24352362,10461537:223477 +k1,14549:26193924,10461537:223478 +k1,14549:27076693,10461537:223477 +k1,14549:28319256,10461537:223478 +k1,14549:30134603,10461537:223477 +k1,14549:31635378,10461537:223478 +k1,14549:32583029,10461537:0 +) +(1,14550:6630773,11303025:25952256,513147,134348 +g1,14549:7849087,11303025 +g1,14549:10604875,11303025 +g1,14549:11463396,11303025 +g1,14549:12681710,11303025 +k1,14550:32583029,11303025:18270128 +g1,14550:32583029,11303025 +) +v1,14552:6630773,12429799:0,393216,0 +(1,14561:6630773,16075786:25952256,4039203,196608 +g1,14561:6630773,16075786 +g1,14561:6630773,16075786 +g1,14561:6434165,16075786 +(1,14561:6434165,16075786:0,4039203,196608 +r1,14561:32779637,16075786:26345472,4235811,196608 +k1,14561:6434165,16075786:-26345472 +) +(1,14561:6434165,16075786:26345472,4039203,196608 +[1,14561:6630773,16075786:25952256,3842595,0 +(1,14554:6630773,12643709:25952256,410518,107478 +(1,14553:6630773,12643709:0,0,0 +g1,14553:6630773,12643709 +g1,14553:6630773,12643709 +g1,14553:6303093,12643709 +(1,14553:6303093,12643709:0,0,0 +) +g1,14553:6630773,12643709 +) +g1,14554:7263065,12643709 +g1,14554:8211503,12643709 +g1,14554:14218271,12643709 +g1,14554:16431291,12643709 +g1,14554:17695874,12643709 +h1,14554:18012020,12643709:0,0,0 +k1,14554:32583029,12643709:14571009 +g1,14554:32583029,12643709 +) +(1,14555:6630773,13309887:25952256,404226,107478 +h1,14555:6630773,13309887:0,0,0 +g1,14555:6946919,13309887 +g1,14555:7263065,13309887 +k1,14555:7263065,13309887:0 +h1,14555:11056813,13309887:0,0,0 +k1,14555:32583029,13309887:21526216 +g1,14555:32583029,13309887 +) +(1,14556:6630773,13976065:25952256,404226,101187 +h1,14556:6630773,13976065:0,0,0 +g1,14556:7263065,13976065 +g1,14556:7895357,13976065 +g1,14556:12953689,13976065 +g1,14556:13585981,13976065 +g1,14556:14850564,13976065 +h1,14556:15166710,13976065:0,0,0 +k1,14556:32583030,13976065:17416320 +g1,14556:32583030,13976065 +) +(1,14557:6630773,14642243:25952256,404226,107478 +h1,14557:6630773,14642243:0,0,0 +k1,14557:6841537,14642243:210764 +k1,14557:7052301,14642243:210764 +k1,14557:16747436,14642243:210764 +k1,14557:17274346,14642243:210764 +k1,14557:23808024,14642243:210764 +k1,14557:24334934,14642243:210764 +k1,14557:25810282,14642243:210764 +k1,14557:27285629,14642243:210764 +k1,14557:28760976,14642243:210764 +k1,14557:29287886,14642243:210764 +k1,14557:31079379,14642243:210764 +k1,14557:32554725,14642243:210764 +h1,14557:32870871,14642243:0,0,0 +k1,14557:32870871,14642243:0 +k1,14557:32870871,14642243:0 +) +(1,14558:6630773,15308421:25952256,404226,82312 +h1,14558:6630773,15308421:0,0,0 +g1,14558:6946919,15308421 +g1,14558:7263065,15308421 +g1,14558:7579211,15308421 +g1,14558:7895357,15308421 +g1,14558:8211503,15308421 +g1,14558:8527649,15308421 +g1,14558:8843795,15308421 +g1,14558:9159941,15308421 +g1,14558:9476087,15308421 +g1,14558:9792233,15308421 +g1,14558:10108379,15308421 +g1,14558:10424525,15308421 +g1,14558:10740671,15308421 +g1,14558:11056817,15308421 +g1,14558:11372963,15308421 +g1,14558:11689109,15308421 +g1,14558:12005255,15308421 +g1,14558:12321401,15308421 +g1,14558:12637547,15308421 +g1,14558:12953693,15308421 +g1,14558:13269839,15308421 +g1,14558:13585985,15308421 +g1,14558:13902131,15308421 +g1,14558:14218277,15308421 +g1,14558:14534423,15308421 +g1,14558:14850569,15308421 +g1,14558:15166715,15308421 +g1,14558:15482861,15308421 +g1,14558:15799007,15308421 +g1,14558:16115153,15308421 +g1,14558:16431299,15308421 +k1,14558:16431299,15308421:0 +h1,14558:20857338,15308421:0,0,0 +k1,14558:32583029,15308421:11725691 +g1,14558:32583029,15308421 +) +(1,14559:6630773,15974599:25952256,404226,101187 +h1,14559:6630773,15974599:0,0,0 +g1,14559:6946919,15974599 +g1,14559:7263065,15974599 +g1,14559:7579211,15974599 +g1,14559:7895357,15974599 +g1,14559:8211503,15974599 +g1,14559:8527649,15974599 +g1,14559:8843795,15974599 +g1,14559:9159941,15974599 +g1,14559:9476087,15974599 +g1,14559:9792233,15974599 +g1,14559:10108379,15974599 +g1,14559:10424525,15974599 +g1,14559:10740671,15974599 +g1,14559:11056817,15974599 +g1,14559:11372963,15974599 +g1,14559:11689109,15974599 +g1,14559:12005255,15974599 +g1,14559:12321401,15974599 +g1,14559:12637547,15974599 +g1,14559:12953693,15974599 +g1,14559:14534422,15974599 +g1,14559:15166714,15974599 +g1,14559:16431297,15974599 +g1,14559:18012026,15974599 +g1,14559:18644318,15974599 +g1,14559:19908901,15974599 +g1,14559:21489630,15974599 +g1,14559:22121922,15974599 +g1,14559:23386505,15974599 +g1,14559:24967234,15974599 +g1,14559:25599526,15974599 +h1,14559:26547963,15974599:0,0,0 +k1,14559:32583029,15974599:6035066 +g1,14559:32583029,15974599 +) +] +) +g1,14561:32583029,16075786 +g1,14561:6630773,16075786 +g1,14561:6630773,16075786 +g1,14561:32583029,16075786 +g1,14561:32583029,16075786 +) +h1,14561:6630773,16272394:0,0,0 +(1,14564:6630773,25861216:25952256,9062689,0 +k1,14564:10523651,25861216:3892878 +h1,14563:10523651,25861216:0,0,0 +(1,14563:10523651,25861216:18166500,9062689,0 +(1,14563:10523651,25861216:18167381,9062712,0 +(1,14563:10523651,25861216:18167381,9062712,0 +(1,14563:10523651,25861216:0,9062712,0 +(1,14563:10523651,25861216:0,14155776,0 +(1,14563:10523651,25861216:28377088,14155776,0 +) +k1,14563:10523651,25861216:-28377088 +) +) +g1,14563:28691032,25861216 +) +) +) +g1,14564:28690151,25861216 +k1,14564:32583029,25861216:3892878 +) +(1,14573:6630773,26702704:25952256,513147,134348 +h1,14571:6630773,26702704:983040,0,0 +k1,14571:9223487,26702704:228830 +k1,14571:12436826,26702704:228829 +k1,14571:13766661,26702704:228830 +k1,14571:15014575,26702704:228829 +k1,14571:18351122,26702704:228830 +k1,14571:19864458,26702704:228830 +k1,14571:20559248,26702704:228829 +k1,14571:22301304,26702704:228830 +k1,14571:25210556,26702704:228829 +k1,14571:26833337,26702704:228830 +k1,14571:29784532,26702704:228829 +k1,14571:31032447,26702704:228830 +k1,14571:32583029,26702704:0 +) +(1,14573:6630773,27544192:25952256,513147,134348 +k1,14571:7967663,27544192:204428 +k1,14571:8919858,27544192:204429 +k1,14571:10143371,27544192:204428 +k1,14571:12001273,27544192:204429 +k1,14571:13153352,27544192:204428 +k1,14571:14809403,27544192:204429 +k1,14571:16291128,27544192:204428 +k1,14571:18413140,27544192:204429 +k1,14571:19667455,27544192:204428 +k1,14571:22150571,27544192:204429 +h1,14571:23693289,27544192:0,0,0 +k1,14571:23897717,27544192:204428 +k1,14571:24911516,27544192:204429 +k1,14571:26614097,27544192:204428 +h1,14571:27809474,27544192:0,0,0 +k1,14571:28013903,27544192:204429 +k1,14571:29165982,27544192:204428 +k1,14573:32583029,27544192:0 +) +(1,14573:6630773,28385680:25952256,505283,7863 +g1,14571:8114508,28385680 +g1,14571:9418019,28385680 +g1,14571:10365014,28385680 +g1,14571:12077469,28385680 +g1,14571:12928126,28385680 +g1,14571:14324698,28385680 +g1,14571:16578481,28385680 +k1,14573:32583029,28385680:16004548 +g1,14573:32583029,28385680 +) +(1,14575:6630773,29227168:25952256,505283,134348 +h1,14574:6630773,29227168:983040,0,0 +k1,14574:8577371,29227168:335723 +k1,14574:9932179,29227168:335723 +k1,14574:11652022,29227168:335723 +k1,14574:14822832,29227168:335723 +k1,14574:15774593,29227168:335723 +k1,14574:18776321,29227168:335723 +k1,14574:19763472,29227168:335723 +k1,14574:22286787,29227168:335723 +k1,14574:26392796,29227168:335723 +k1,14574:27414681,29227168:335723 +k1,14574:31714677,29227168:335723 +k1,14574:32583029,29227168:0 +) +(1,14575:6630773,30068656:25952256,505283,134348 +k1,14574:8249613,30068656:333024 +k1,14574:10019841,30068656:333023 +k1,14574:14123151,30068656:333024 +k1,14574:15142336,30068656:333023 +k1,14574:16659596,30068656:333024 +k1,14574:18836803,30068656:333024 +k1,14574:21728352,30068656:333023 +k1,14574:23080461,30068656:333024 +k1,14574:25159364,30068656:333024 +k1,14574:26390230,30068656:333023 +k1,14574:28671639,30068656:333024 +k1,14574:30289168,30068656:333023 +k1,14574:31490544,30068656:333024 +k1,14574:32583029,30068656:0 +) +(1,14575:6630773,30910144:25952256,513147,134348 +k1,14574:9788171,30910144:298062 +k1,14574:11033883,30910144:298061 +k1,14574:13513639,30910144:298062 +k1,14574:14830785,30910144:298061 +k1,14574:17417364,30910144:298062 +k1,14574:18401587,30910144:298061 +(1,14574:18401587,30910144:0,452978,115847 +r1,14574:27200938,30910144:8799351,568825,115847 +k1,14574:18401587,30910144:-8799351 +) +(1,14574:18401587,30910144:8799351,452978,115847 +g1,14574:20163423,30910144 +g1,14574:21921982,30910144 +g1,14574:22977118,30910144 +g1,14574:24735677,30910144 +g1,14574:25790813,30910144 +g1,14574:26494237,30910144 +h1,14574:27197661,30910144:0,411205,112570 +) +k1,14574:27499000,30910144:298062 +k1,14574:28328558,30910144:298061 +k1,14574:31931601,30910144:298062 +k1,14575:32583029,30910144:0 +) +(1,14575:6630773,31751632:25952256,505283,126483 +(1,14574:6630773,31751632:0,452978,115847 +r1,14574:18947241,31751632:12316468,568825,115847 +k1,14574:6630773,31751632:-12316468 +) +(1,14574:6630773,31751632:12316468,452978,115847 +g1,14574:8392609,31751632 +g1,14574:9799456,31751632 +g1,14574:10502880,31751632 +g1,14574:11909727,31751632 +g1,14574:13316574,31751632 +g1,14574:14723421,31751632 +g1,14574:15426845,31751632 +g1,14574:16833692,31751632 +g1,14574:17537116,31751632 +g1,14574:18240540,31751632 +h1,14574:18943964,31751632:0,411205,112570 +) +k1,14574:19297255,31751632:176344 +k1,14574:23395929,31751632:176344 +k1,14574:24563833,31751632:176344 +k1,14574:27042458,31751632:176345 +k1,14574:27831564,31751632:176344 +k1,14574:29516547,31751632:176344 +k1,14574:31023272,31751632:176344 +k1,14575:32583029,31751632:0 +) +(1,14575:6630773,32593120:25952256,505283,134348 +k1,14574:8250924,32593120:179014 +k1,14574:11481294,32593120:179014 +k1,14574:12311736,32593120:179014 +k1,14574:13622557,32593120:179014 +k1,14574:17543021,32593120:179014 +k1,14574:18338073,32593120:179014 +k1,14574:19536172,32593120:179014 +k1,14574:21278220,32593120:179014 +k1,14574:22529403,32593120:179014 +k1,14574:24443810,32593120:179014 +k1,14574:25641909,32593120:179014 +k1,14574:27474396,32593120:179014 +k1,14574:31391584,32593120:179014 +k1,14574:32583029,32593120:0 +) +(1,14575:6630773,33434608:25952256,513147,134348 +g1,14574:8448086,33434608 +g1,14574:9333477,33434608 +g1,14574:10480357,33434608 +g1,14574:13204033,33434608 +g1,14574:14422347,33434608 +k1,14575:32583029,33434608:16597648 +g1,14575:32583029,33434608 +) +v1,14577:6630773,34561382:0,393216,0 +(1,14597:6630773,45510161:25952256,11341995,196608 +g1,14597:6630773,45510161 +g1,14597:6630773,45510161 +g1,14597:6434165,45510161 +(1,14597:6434165,45510161:0,11341995,196608 +r1,14597:32779637,45510161:26345472,11538603,196608 +k1,14597:6434165,45510161:-26345472 +) +(1,14597:6434165,45510161:26345472,11341995,196608 +[1,14597:6630773,45510161:25952256,11145387,0 +(1,14579:6630773,34775292:25952256,410518,107478 +(1,14578:6630773,34775292:0,0,0 +g1,14578:6630773,34775292 +g1,14578:6630773,34775292 +g1,14578:6303093,34775292 +(1,14578:6303093,34775292:0,0,0 +) +g1,14578:6630773,34775292 +) +k1,14579:6630773,34775292:0 +g1,14579:12953688,34775292 +g1,14579:13585980,34775292 +g1,14579:15166710,34775292 +g1,14579:15799002,34775292 +g1,14579:16431294,34775292 +g1,14579:18328169,34775292 +g1,14579:20225044,34775292 +g1,14579:20857336,34775292 +g1,14579:22121919,34775292 +h1,14579:22438065,34775292:0,0,0 +k1,14579:32583029,34775292:10144964 +g1,14579:32583029,34775292 +) +(1,14580:6630773,35441470:25952256,410518,76021 +h1,14580:6630773,35441470:0,0,0 +g1,14580:6946919,35441470 +g1,14580:7263065,35441470 +g1,14580:12953688,35441470 +g1,14580:13585980,35441470 +g1,14580:15166709,35441470 +h1,14580:15482855,35441470:0,0,0 +k1,14580:32583029,35441470:17100174 +g1,14580:32583029,35441470 +) +(1,14581:6630773,36107648:25952256,404226,76021 +h1,14581:6630773,36107648:0,0,0 +g1,14581:6946919,36107648 +g1,14581:7263065,36107648 +k1,14581:7263065,36107648:0 +h1,14581:13269833,36107648:0,0,0 +k1,14581:32583029,36107648:19313196 +g1,14581:32583029,36107648 +) +(1,14582:6630773,36773826:25952256,404226,101187 +h1,14582:6630773,36773826:0,0,0 +g1,14582:6946919,36773826 +g1,14582:7263065,36773826 +g1,14582:7579211,36773826 +g1,14582:7895357,36773826 +g1,14582:10108377,36773826 +g1,14582:10740669,36773826 +g1,14582:12321399,36773826 +g1,14582:13902128,36773826 +g1,14582:14850566,36773826 +g1,14582:16431295,36773826 +g1,14582:17379733,36773826 +g1,14582:18012025,36773826 +k1,14582:18012025,36773826:0 +h1,14582:18960462,36773826:0,0,0 +k1,14582:32583029,36773826:13622567 +g1,14582:32583029,36773826 +) +(1,14583:6630773,37440004:25952256,404226,101187 +h1,14583:6630773,37440004:0,0,0 +g1,14583:6946919,37440004 +g1,14583:7263065,37440004 +g1,14583:7579211,37440004 +g1,14583:7895357,37440004 +g1,14583:10108377,37440004 +g1,14583:10740669,37440004 +g1,14583:12953690,37440004 +g1,14583:19276605,37440004 +k1,14583:19276605,37440004:0 +h1,14583:24018791,37440004:0,0,0 +k1,14583:32583029,37440004:8564238 +g1,14583:32583029,37440004 +) +(1,14584:6630773,38106182:25952256,404226,101187 +h1,14584:6630773,38106182:0,0,0 +g1,14584:6946919,38106182 +g1,14584:7263065,38106182 +g1,14584:7579211,38106182 +g1,14584:7895357,38106182 +g1,14584:8211503,38106182 +g1,14584:8527649,38106182 +g1,14584:8843795,38106182 +g1,14584:9159941,38106182 +g1,14584:9476087,38106182 +g1,14584:9792233,38106182 +g1,14584:10108379,38106182 +g1,14584:10424525,38106182 +g1,14584:10740671,38106182 +g1,14584:17063586,38106182 +g1,14584:23070355,38106182 +h1,14584:23386501,38106182:0,0,0 +k1,14584:32583029,38106182:9196528 +g1,14584:32583029,38106182 +) +(1,14585:6630773,38772360:25952256,404226,101187 +h1,14585:6630773,38772360:0,0,0 +g1,14585:6946919,38772360 +g1,14585:7263065,38772360 +g1,14585:9476086,38772360 +g1,14585:10108378,38772360 +g1,14585:13269835,38772360 +h1,14585:13585981,38772360:0,0,0 +k1,14585:32583029,38772360:18997048 +g1,14585:32583029,38772360 +) +(1,14586:6630773,39438538:25952256,404226,107478 +h1,14586:6630773,39438538:0,0,0 +g1,14586:6946919,39438538 +g1,14586:7263065,39438538 +g1,14586:11689105,39438538 +g1,14586:12321397,39438538 +k1,14586:12321397,39438538:0 +h1,14586:14534417,39438538:0,0,0 +k1,14586:32583029,39438538:18048612 +g1,14586:32583029,39438538 +) +(1,14587:6630773,40104716:25952256,404226,82312 +h1,14587:6630773,40104716:0,0,0 +g1,14587:6946919,40104716 +g1,14587:7263065,40104716 +g1,14587:7579211,40104716 +g1,14587:7895357,40104716 +g1,14587:8211503,40104716 +g1,14587:8527649,40104716 +g1,14587:8843795,40104716 +g1,14587:9159941,40104716 +g1,14587:9476087,40104716 +g1,14587:9792233,40104716 +g1,14587:10108379,40104716 +g1,14587:12005253,40104716 +g1,14587:12637545,40104716 +g1,14587:14850566,40104716 +k1,14587:14850566,40104716:0 +h1,14587:16431295,40104716:0,0,0 +k1,14587:32583029,40104716:16151734 +g1,14587:32583029,40104716 +) +(1,14588:6630773,40770894:25952256,404226,101187 +h1,14588:6630773,40770894:0,0,0 +g1,14588:6946919,40770894 +g1,14588:7263065,40770894 +g1,14588:7579211,40770894 +g1,14588:7895357,40770894 +g1,14588:8211503,40770894 +g1,14588:8527649,40770894 +g1,14588:8843795,40770894 +g1,14588:9159941,40770894 +g1,14588:9476087,40770894 +g1,14588:9792233,40770894 +g1,14588:10108379,40770894 +g1,14588:10740671,40770894 +g1,14588:11372963,40770894 +g1,14588:13585984,40770894 +g1,14588:15166713,40770894 +g1,14588:15799005,40770894 +g1,14588:17063588,40770894 +g1,14588:17695880,40770894 +g1,14588:18328172,40770894 +g1,14588:20541193,40770894 +k1,14588:20541193,40770894:0 +h1,14588:22438068,40770894:0,0,0 +k1,14588:32583029,40770894:10144961 +g1,14588:32583029,40770894 +) +(1,14589:6630773,41437072:25952256,404226,76021 +h1,14589:6630773,41437072:0,0,0 +g1,14589:6946919,41437072 +g1,14589:7263065,41437072 +g1,14589:7579211,41437072 +g1,14589:7895357,41437072 +g1,14589:8211503,41437072 +g1,14589:8527649,41437072 +g1,14589:8843795,41437072 +g1,14589:9159941,41437072 +g1,14589:9476087,41437072 +g1,14589:9792233,41437072 +g1,14589:10108379,41437072 +g1,14589:11689108,41437072 +g1,14589:12321400,41437072 +g1,14589:13585983,41437072 +h1,14589:13902129,41437072:0,0,0 +k1,14589:32583029,41437072:18680900 +g1,14589:32583029,41437072 +) +(1,14590:6630773,42103250:25952256,404226,107478 +h1,14590:6630773,42103250:0,0,0 +g1,14590:6946919,42103250 +g1,14590:7263065,42103250 +g1,14590:11689105,42103250 +g1,14590:12321397,42103250 +k1,14590:12321397,42103250:0 +h1,14590:14850563,42103250:0,0,0 +k1,14590:32583029,42103250:17732466 +g1,14590:32583029,42103250 +) +(1,14591:6630773,42769428:25952256,404226,82312 +h1,14591:6630773,42769428:0,0,0 +g1,14591:6946919,42769428 +g1,14591:7263065,42769428 +g1,14591:7579211,42769428 +g1,14591:7895357,42769428 +g1,14591:8211503,42769428 +g1,14591:8527649,42769428 +g1,14591:8843795,42769428 +g1,14591:9159941,42769428 +g1,14591:9476087,42769428 +g1,14591:9792233,42769428 +g1,14591:10108379,42769428 +g1,14591:12005253,42769428 +g1,14591:12637545,42769428 +k1,14591:12637545,42769428:0 +h1,14591:14534419,42769428:0,0,0 +k1,14591:32583029,42769428:18048610 +g1,14591:32583029,42769428 +) +(1,14592:6630773,43435606:25952256,404226,101187 +h1,14592:6630773,43435606:0,0,0 +g1,14592:6946919,43435606 +g1,14592:7263065,43435606 +g1,14592:7579211,43435606 +g1,14592:7895357,43435606 +g1,14592:8211503,43435606 +g1,14592:8527649,43435606 +g1,14592:8843795,43435606 +g1,14592:9159941,43435606 +g1,14592:9476087,43435606 +g1,14592:9792233,43435606 +g1,14592:10108379,43435606 +g1,14592:12005253,43435606 +g1,14592:12637545,43435606 +k1,14592:12637545,43435606:0 +h1,14592:13585982,43435606:0,0,0 +k1,14592:32583030,43435606:18997048 +g1,14592:32583030,43435606 +) +(1,14593:6630773,44101784:25952256,410518,82312 +h1,14593:6630773,44101784:0,0,0 +g1,14593:6946919,44101784 +g1,14593:7263065,44101784 +g1,14593:7579211,44101784 +g1,14593:7895357,44101784 +g1,14593:8211503,44101784 +g1,14593:8527649,44101784 +g1,14593:8843795,44101784 +g1,14593:9159941,44101784 +g1,14593:9476087,44101784 +g1,14593:9792233,44101784 +g1,14593:10108379,44101784 +g1,14593:11689108,44101784 +g1,14593:12321400,44101784 +k1,14593:12321400,44101784:0 +h1,14593:14850566,44101784:0,0,0 +k1,14593:32583030,44101784:17732464 +g1,14593:32583030,44101784 +) +(1,14594:6630773,44767962:25952256,404226,101187 +h1,14594:6630773,44767962:0,0,0 +g1,14594:6946919,44767962 +g1,14594:7263065,44767962 +g1,14594:7579211,44767962 +g1,14594:7895357,44767962 +g1,14594:8211503,44767962 +g1,14594:8527649,44767962 +g1,14594:8843795,44767962 +g1,14594:9159941,44767962 +g1,14594:9476087,44767962 +g1,14594:9792233,44767962 +g1,14594:10108379,44767962 +g1,14594:10740671,44767962 +g1,14594:11372963,44767962 +g1,14594:12953693,44767962 +g1,14594:13902131,44767962 +g1,14594:14850569,44767962 +g1,14594:15482861,44767962 +g1,14594:16747444,44767962 +g1,14594:17379736,44767962 +g1,14594:18012028,44767962 +k1,14594:18012028,44767962:0 +h1,14594:18644320,44767962:0,0,0 +k1,14594:32583029,44767962:13938709 +g1,14594:32583029,44767962 +) +(1,14595:6630773,45434140:25952256,404226,76021 +h1,14595:6630773,45434140:0,0,0 +g1,14595:6946919,45434140 +g1,14595:7263065,45434140 +g1,14595:7579211,45434140 +g1,14595:7895357,45434140 +g1,14595:8211503,45434140 +g1,14595:8527649,45434140 +g1,14595:8843795,45434140 +g1,14595:9159941,45434140 +g1,14595:9476087,45434140 +g1,14595:9792233,45434140 +g1,14595:10108379,45434140 +g1,14595:11689108,45434140 +g1,14595:12321400,45434140 +h1,14595:12953692,45434140:0,0,0 +k1,14595:32583028,45434140:19629336 +g1,14595:32583028,45434140 +) +] +) +g1,14597:32583029,45510161 +g1,14597:6630773,45510161 +g1,14597:6630773,45510161 +g1,14597:32583029,45510161 +g1,14597:32583029,45510161 +) +h1,14597:6630773,45706769:0,0,0 +] +(1,14608:32583029,45706769:0,0,0 +g1,14608:32583029,45706769 +) +) +] +(1,14608:6630773,47279633:25952256,0,0 +h1,14608:6630773,47279633:25952256,0,0 +) +] +h1,14608:4262630,4025873:0,0,0 +] +!26026 +}281 +Input:2198:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2199:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2200:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2201:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2202:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2203:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2204:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2205:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2206:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2207:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2208:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2209:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2210:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 +{282 +[1,14626:4262630,47279633:28320399,43253760,0 +(1,14626:4262630,4025873:0,0,0 +[1,14626:-473657,4025873:25952256,0,0 +(1,14626:-473657,-710414:25952256,0,0 +h1,14626:-473657,-710414:0,0,0 +(1,14626:-473657,-710414:0,0,0 +(1,14626:-473657,-710414:0,0,0 +g1,14626:-473657,-710414 +(1,14626:-473657,-710414:65781,0,65781 +g1,14626:-407876,-710414 +[1,14626:-407876,-644633:0,0,0 ] ) -k1,14598:-473657,-710414:-65781 +k1,14626:-473657,-710414:-65781 ) ) -k1,14598:25478599,-710414:25952256 -g1,14598:25478599,-710414 +k1,14626:25478599,-710414:25952256 +g1,14626:25478599,-710414 ) ] ) -[1,14598:6630773,47279633:25952256,43253760,0 -[1,14598:6630773,4812305:25952256,786432,0 -(1,14598:6630773,4812305:25952256,513147,134348 -(1,14598:6630773,4812305:25952256,513147,134348 -g1,14598:3078558,4812305 -[1,14598:3078558,4812305:0,0,0 -(1,14598:3078558,2439708:0,1703936,0 -k1,14598:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14598:2537886,2439708:1179648,16384,0 +[1,14626:6630773,47279633:25952256,43253760,0 +[1,14626:6630773,4812305:25952256,786432,0 +(1,14626:6630773,4812305:25952256,505283,126483 +(1,14626:6630773,4812305:25952256,505283,126483 +g1,14626:3078558,4812305 +[1,14626:3078558,4812305:0,0,0 +(1,14626:3078558,2439708:0,1703936,0 +k1,14626:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14626:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14598:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14626:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14598:3078558,4812305:0,0,0 -(1,14598:3078558,2439708:0,1703936,0 -g1,14598:29030814,2439708 -g1,14598:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14598:36151628,1915420:16384,1179648,0 +[1,14626:3078558,4812305:0,0,0 +(1,14626:3078558,2439708:0,1703936,0 +g1,14626:29030814,2439708 +g1,14626:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14626:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14598:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14626:37855564,2439708:1179648,16384,0 ) ) -k1,14598:3078556,2439708:-34777008 +k1,14626:3078556,2439708:-34777008 ) ] -[1,14598:3078558,4812305:0,0,0 -(1,14598:3078558,49800853:0,16384,2228224 -k1,14598:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14598:2537886,49800853:1179648,16384,0 +[1,14626:3078558,4812305:0,0,0 +(1,14626:3078558,49800853:0,16384,2228224 +k1,14626:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14626:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14598:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14626:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14598:3078558,4812305:0,0,0 -(1,14598:3078558,49800853:0,16384,2228224 -g1,14598:29030814,49800853 -g1,14598:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14598:36151628,51504789:16384,1179648,0 +[1,14626:3078558,4812305:0,0,0 +(1,14626:3078558,49800853:0,16384,2228224 +g1,14626:29030814,49800853 +g1,14626:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14626:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14598:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14626:37855564,49800853:1179648,16384,0 ) ) -k1,14598:3078556,49800853:-34777008 +k1,14626:3078556,49800853:-34777008 ) ] -g1,14598:6630773,4812305 -k1,14598:25712890,4812305:17886740 -g1,14598:29057847,4812305 -g1,14598:29873114,4812305 +g1,14626:6630773,4812305 +g1,14626:6630773,4812305 +g1,14626:10600288,4812305 +g1,14626:12009967,4812305 +g1,14626:14653689,4812305 +g1,14626:16328789,4812305 +k1,14626:31387652,4812305:15058863 ) ) ] -[1,14598:6630773,45706769:25952256,40108032,0 -(1,14598:6630773,45706769:25952256,40108032,0 -(1,14598:6630773,45706769:0,0,0 -g1,14598:6630773,45706769 +[1,14626:6630773,45706769:25952256,40108032,0 +(1,14626:6630773,45706769:25952256,40108032,0 +(1,14626:6630773,45706769:0,0,0 +g1,14626:6630773,45706769 ) -[1,14598:6630773,45706769:25952256,40108032,0 -(1,14572:6630773,14661426:25952256,9062689,0 -k1,14572:10523651,14661426:3892878 -h1,14571:10523651,14661426:0,0,0 -(1,14571:10523651,14661426:18166500,9062689,0 -(1,14571:10523651,14661426:18167381,9062712,0 -(1,14571:10523651,14661426:18167381,9062712,0 -(1,14571:10523651,14661426:0,9062712,0 -(1,14571:10523651,14661426:0,14155776,0 -(1,14571:10523651,14661426:28377088,14155776,0 +[1,14626:6630773,45706769:25952256,40108032,0 +(1,14600:6630773,14661426:25952256,9062689,0 +k1,14600:10523651,14661426:3892878 +h1,14599:10523651,14661426:0,0,0 +(1,14599:10523651,14661426:18166500,9062689,0 +(1,14599:10523651,14661426:18167381,9062712,0 +(1,14599:10523651,14661426:18167381,9062712,0 +(1,14599:10523651,14661426:0,9062712,0 +(1,14599:10523651,14661426:0,14155776,0 +(1,14599:10523651,14661426:28377088,14155776,0 ) -k1,14571:10523651,14661426:-28377088 +k1,14599:10523651,14661426:-28377088 ) ) -g1,14571:28691032,14661426 +g1,14599:28691032,14661426 ) ) ) -g1,14572:28690151,14661426 -k1,14572:32583029,14661426:3892878 +g1,14600:28690151,14661426 +k1,14600:32583029,14661426:3892878 ) -v1,14580:6630773,16027202:0,393216,0 -(1,14581:6630773,19028237:25952256,3394251,616038 -g1,14581:6630773,19028237 -(1,14581:6630773,19028237:25952256,3394251,616038 -(1,14581:6630773,19644275:25952256,4010289,0 -[1,14581:6630773,19644275:25952256,4010289,0 -(1,14581:6630773,19618061:25952256,3957861,0 -r1,14581:6656987,19618061:26214,3957861,0 -[1,14581:6656987,19618061:25899828,3957861,0 -(1,14581:6656987,19028237:25899828,2778213,0 -[1,14581:7246811,19028237:24720180,2778213,0 -(1,14581:7246811,17337398:24720180,1087374,126483 -k1,14580:8655282,17337398:198768 -k1,14580:11059992,17337398:198768 -k1,14580:12277845,17337398:198768 -k1,14580:13753909,17337398:198767 -k1,14580:15808001,17337398:198768 -k1,14580:16658197,17337398:198768 -k1,14580:18517647,17337398:198768 -k1,14580:19735500,17337398:198768 -k1,14580:21956054,17337398:198768 -k1,14580:24482005,17337398:198768 -k1,14580:25340064,17337398:198767 -k1,14580:26557917,17337398:198768 -k1,14580:28050366,17337398:198768 -k1,14580:31118300,17337398:198768 -k1,14581:31966991,17337398:0 -) -(1,14581:7246811,18178886:24720180,505283,134348 -k1,14580:9716576,18178886:164208 -(1,14580:9716576,18178886:0,452978,115847 -r1,14581:10778265,18178886:1061689,568825,115847 -k1,14580:9716576,18178886:-1061689 -) -(1,14580:9716576,18178886:1061689,452978,115847 -k1,14580:9716576,18178886:3277 -h1,14580:10774988,18178886:0,411205,112570 -) -k1,14580:10942473,18178886:164208 -k1,14580:12500631,18178886:164207 -(1,14580:12500631,18178886:0,414482,115847 -r1,14581:13562320,18178886:1061689,530329,115847 -k1,14580:12500631,18178886:-1061689 -) -(1,14580:12500631,18178886:1061689,414482,115847 -k1,14580:12500631,18178886:3277 -h1,14580:13559043,18178886:0,411205,112570 -) -k1,14580:13900198,18178886:164208 -k1,14580:15445250,18178886:164208 -k1,14580:16140955,18178886:164208 -k1,14580:17873440,18178886:164208 -k1,14580:19109816,18178886:164207 -k1,14580:20293109,18178886:164208 -k1,14580:22152078,18178886:164208 -k1,14580:22847783,18178886:164208 -k1,14580:24296497,18178886:164208 -k1,14580:25631178,18178886:164208 -k1,14580:26927847,18178886:164207 -k1,14580:28622321,18178886:164208 -k1,14580:29437957,18178886:164208 -k1,14580:31966991,18178886:0 -) -(1,14581:7246811,19020374:24720180,505283,7863 -g1,14580:8465125,19020374 -k1,14581:31966990,19020374:19537592 -g1,14581:31966990,19020374 -) -] -) -] -r1,14581:32583029,19618061:26214,3957861,0 -) -] -) -) -g1,14581:32583029,19028237 -) -h1,14581:6630773,19644275:0,0,0 -v1,14584:6630773,21010051:0,393216,0 -(1,14585:6630773,24914031:25952256,4297196,616038 -g1,14585:6630773,24914031 -(1,14585:6630773,24914031:25952256,4297196,616038 -(1,14585:6630773,25530069:25952256,4913234,0 -[1,14585:6630773,25530069:25952256,4913234,0 -(1,14585:6630773,25503855:25952256,4860806,0 -r1,14585:6656987,25503855:26214,4860806,0 -[1,14585:6656987,25503855:25899828,4860806,0 -(1,14585:6656987,24914031:25899828,3681158,0 -[1,14585:7246811,24914031:24720180,3681158,0 -(1,14585:7246811,22255219:24720180,1022346,122846 -k1,14584:8846810,22255219:344486 -k1,14584:10144844,22255219:344485 -k1,14584:12659882,22255219:344486 -k1,14584:14096853,22255219:344486 -(1,14584:14096853,22255219:0,452978,115847 -r1,14585:17620525,22255219:3523672,568825,115847 -k1,14584:14096853,22255219:-3523672 -) -(1,14584:14096853,22255219:3523672,452978,115847 -k1,14584:14096853,22255219:3277 -h1,14584:17617248,22255219:0,411205,112570 -) -k1,14584:17965010,22255219:344485 -k1,14584:19703447,22255219:344486 -(1,14584:19703447,22255219:0,452978,122846 -r1,14585:24633967,22255219:4930520,575824,122846 -k1,14584:19703447,22255219:-4930520 -) -(1,14584:19703447,22255219:4930520,452978,122846 -g1,14584:21465283,22255219 -g1,14584:22168707,22255219 -h1,14584:24630690,22255219:0,411205,112570 -) -k1,14584:24978453,22255219:344486 -k1,14584:26005823,22255219:344485 -(1,14584:26005823,22255219:0,452978,122846 -r1,14585:30936343,22255219:4930520,575824,122846 -k1,14584:26005823,22255219:-4930520 -) -(1,14584:26005823,22255219:4930520,452978,122846 -g1,14584:27767659,22255219 -g1,14584:28471083,22255219 -h1,14584:30933066,22255219:0,411205,112570 -) -k1,14584:31280829,22255219:344486 -k1,14584:31966991,22255219:0 -) -(1,14585:7246811,23096707:24720180,505283,122846 -k1,14584:8319680,23096707:204517 -k1,14584:9628479,23096707:204517 -k1,14584:10925481,23096707:204517 -(1,14584:10925481,23096707:0,452978,122846 -r1,14585:15504289,23096707:4578808,575824,122846 -k1,14584:10925481,23096707:-4578808 -) -(1,14584:10925481,23096707:4578808,452978,122846 -g1,14584:12687317,23096707 -g1,14584:13390741,23096707 -h1,14584:15501012,23096707:0,411205,112570 -) -k1,14584:15708806,23096707:204517 -k1,14584:16596207,23096707:204516 -(1,14584:16596207,23096707:0,452978,122846 -r1,14585:22230150,23096707:5633943,575824,122846 -k1,14584:16596207,23096707:-5633943 -) -(1,14584:16596207,23096707:5633943,452978,122846 -g1,14584:18358043,23096707 -g1,14584:19061467,23096707 -h1,14584:22226873,23096707:0,411205,112570 -) -k1,14584:22608337,23096707:204517 -k1,14584:25325504,23096707:204517 -(1,14584:25325504,23096707:0,452978,122846 -r1,14585:29552600,23096707:4227096,575824,122846 -k1,14584:25325504,23096707:-4227096 -) -(1,14584:25325504,23096707:4227096,452978,122846 -k1,14584:25325504,23096707:3277 -h1,14584:29549323,23096707:0,411205,112570 -) -k1,14584:29757117,23096707:204517 -k1,14585:31966991,23096707:0 -) -(1,14585:7246811,23938195:24720180,505283,134348 -(1,14584:7246811,23938195:0,452978,122846 -r1,14585:11473907,23938195:4227096,575824,122846 -k1,14584:7246811,23938195:-4227096 -) -(1,14584:7246811,23938195:4227096,452978,122846 -k1,14584:7246811,23938195:3277 -h1,14584:11470630,23938195:0,411205,112570 -) -k1,14584:11735066,23938195:261159 -k1,14584:13100506,23938195:261158 -k1,14584:14109431,23938195:261159 -k1,14584:15883815,23938195:261158 -k1,14584:18559320,23938195:261159 -k1,14584:21247932,23938195:261158 -k1,14584:24266846,23938195:261159 -k1,14584:27930633,23938195:261158 -k1,14584:28843220,23938195:261159 -k1,14584:30917104,23938195:261158 -k1,14584:31966991,23938195:0 -) -(1,14585:7246811,24779683:24720180,485622,134348 -g1,14584:9724727,24779683 -h1,14584:11267445,24779683:0,0,0 -g1,14584:11466674,24779683 -g1,14584:12475273,24779683 -g1,14584:14172655,24779683 -h1,14584:15368032,24779683:0,0,0 -k1,14585:31966991,24779683:16425289 -g1,14585:31966991,24779683 -) -] -) -] -r1,14585:32583029,25503855:26214,4860806,0 -) -] -) -) -g1,14585:32583029,24914031 -) -h1,14585:6630773,25530069:0,0,0 -(1,14588:6630773,28861925:25952256,32768,229376 -(1,14588:6630773,28861925:0,32768,229376 -(1,14588:6630773,28861925:5505024,32768,229376 -r1,14588:12135797,28861925:5505024,262144,229376 -) -k1,14588:6630773,28861925:-5505024 -) -(1,14588:6630773,28861925:25952256,32768,0 -r1,14588:32583029,28861925:25952256,32768,0 -) -) -(1,14588:6630773,30466253:25952256,606339,151780 -(1,14588:6630773,30466253:1974731,582746,14155 -g1,14588:6630773,30466253 -g1,14588:8605504,30466253 -) -g1,14588:13623727,30466253 -g1,14588:15333430,30466253 -g1,14588:18619143,30466253 -k1,14588:32583029,30466253:11992301 -g1,14588:32583029,30466253 -) -(1,14593:6630773,31700957:25952256,513147,134348 -k1,14591:9406626,31700957:233056 -k1,14591:11247280,31700957:233056 -k1,14591:12584618,31700957:233056 -k1,14591:13565440,31700957:233056 -k1,14591:16325564,31700957:233056 -k1,14591:17217912,31700957:233056 -k1,14591:18137130,31700957:233056 -k1,14591:19977784,31700957:233056 -k1,14591:23515821,31700957:233056 -k1,14591:24400305,31700957:233056 -k1,14591:26377274,31700957:233056 -k1,14591:29700353,31700957:233056 -k1,14591:31966991,31700957:233056 -k1,14591:32583029,31700957:0 -) -(1,14593:6630773,32542445:25952256,513147,134348 -k1,14591:8076123,32542445:242109 -k1,14591:10735854,32542445:242108 -k1,14591:12050132,32542445:242109 -k1,14591:14293055,32542445:242109 -k1,14591:16270557,32542445:242109 -k1,14591:16868525,32542445:242108 -k1,14591:19872977,32542445:242109 -k1,14591:22361005,32542445:242109 -k1,14591:23262405,32542445:242108 -k1,14591:27416358,32542445:242109 -k1,14591:29039311,32542445:242109 -k1,14591:29812917,32542445:242109 -k1,14591:30410885,32542445:242108 -k1,14591:31753999,32542445:242109 -k1,14593:32583029,32542445:0 -) -(1,14593:6630773,33383933:25952256,513147,134348 -k1,14591:8572958,33383933:191063 -k1,14591:10048526,33383933:191062 -k1,14591:11258674,33383933:191063 -k1,14591:14352326,33383933:191062 -k1,14591:15202681,33383933:191063 -k1,14591:18112833,33383933:191063 -k1,14591:18990057,33383933:191062 -k1,14591:23382633,33383933:191063 -k1,14591:24189734,33383933:191063 -k1,14591:27209329,33383933:191062 -k1,14591:29446426,33383933:191063 -k1,14591:30729973,33383933:191062 -k1,14591:31753999,33383933:191063 -k1,14591:32583029,33383933:0 -) -(1,14593:6630773,34225421:25952256,505283,134348 -k1,14591:8816248,34225421:161723 -k1,14591:11398870,34225421:161722 -k1,14591:13168191,34225421:161723 -k1,14591:14198265,34225421:161722 -k1,14591:15452473,34225421:161723 -k1,14591:16633280,34225421:161722 -k1,14591:18448476,34225421:161723 -k1,14591:22200915,34225421:161722 -k1,14591:25045027,34225421:161723 -k1,14591:26398194,34225421:161722 -k1,14591:28406067,34225421:161723 -k1,14591:29436141,34225421:161722 -k1,14591:31073079,34225421:161723 -k1,14591:32583029,34225421:0 -) -(1,14593:6630773,35066909:25952256,513147,134348 -k1,14591:8513824,35066909:147658 -k1,14591:10055432,35066909:147657 -k1,14591:11222175,35066909:147658 -k1,14591:13635412,35066909:147657 -k1,14591:16028989,35066909:147658 -k1,14591:16835938,35066909:147657 -k1,14591:19867835,35066909:147658 -k1,14591:23927336,35066909:147657 -k1,14591:25271681,35066909:147658 -k1,14591:26794939,35066909:147657 -k1,14591:28604590,35066909:147658 -k1,14591:30036753,35066909:147657 -k1,14591:31052763,35066909:147658 -k1,14591:32583029,35066909:0 -) -(1,14593:6630773,35908397:25952256,513147,126483 -k1,14591:7420402,35908397:138201 -k1,14591:8373871,35908397:138201 -k1,14591:9043569,35908397:138201 -k1,14591:9833197,35908397:138200 -k1,14591:11168741,35908397:138201 -(1,14591:11168741,35908397:0,452978,115847 -r1,14591:15747549,35908397:4578808,568825,115847 -k1,14591:11168741,35908397:-4578808 -) -(1,14591:11168741,35908397:4578808,452978,115847 -k1,14591:11168741,35908397:3277 -h1,14591:15744272,35908397:0,411205,112570 -) -k1,14591:15885750,35908397:138201 -k1,14591:16675379,35908397:138201 -k1,14591:19458613,35908397:138201 -k1,14591:20615899,35908397:138201 -k1,14591:23193350,35908397:138201 -k1,14591:24105530,35908397:138200 -k1,14591:26352680,35908397:138201 -k1,14591:27866482,35908397:138201 -k1,14591:29696823,35908397:138201 -k1,14591:32583029,35908397:0 -) -(1,14593:6630773,36749885:25952256,505283,126483 -k1,14591:9986065,36749885:171553 -k1,14591:11261900,36749885:171553 -k1,14591:12181219,36749885:171553 -k1,14591:14250039,36749885:171553 -k1,14591:17485400,36749885:171553 -k1,14591:18272991,36749885:171553 -k1,14591:20865445,36749885:171554 -k1,14591:22644596,36749885:171553 -k1,14591:24258596,36749885:171553 -k1,14591:25046187,36749885:171553 -k1,14591:28101979,36749885:171553 -k1,14591:30054801,36749885:171553 -k1,14591:31714677,36749885:171553 -k1,14591:32583029,36749885:0 -) -(1,14593:6630773,37591373:25952256,513147,134348 -k1,14591:7997979,37591373:169863 -k1,14591:8523703,37591373:169864 -k1,14591:9976761,37591373:169863 -k1,14591:12371572,37591373:169864 -k1,14591:13192863,37591373:169863 -k1,14591:14381812,37591373:169864 -k1,14591:17454265,37591373:169863 -k1,14591:18283421,37591373:169864 -k1,14591:21346043,37591373:169863 -k1,14591:25311096,37591373:169864 -k1,14591:26974525,37591373:169863 -k1,14591:27830551,37591373:169864 -(1,14591:27830551,37591373:0,452978,115847 -r1,14591:32409359,37591373:4578808,568825,115847 -k1,14591:27830551,37591373:-4578808 -) -(1,14591:27830551,37591373:4578808,452978,115847 -k1,14591:27830551,37591373:3277 -h1,14591:32406082,37591373:0,411205,112570 -) -k1,14591:32583029,37591373:0 -) -(1,14593:6630773,38432861:25952256,505283,134348 -k1,14592:8619622,38432861:205614 -k1,14592:10560630,38432861:205615 -k1,14592:12430858,38432861:205614 -k1,14592:16548317,38432861:205615 -k1,14592:17773016,38432861:205614 -(1,14592:17773016,38432861:0,414482,115847 -r1,14592:18131282,38432861:358266,530329,115847 -k1,14592:17773016,38432861:-358266 -) -(1,14592:17773016,38432861:358266,414482,115847 -k1,14592:17773016,38432861:3277 -h1,14592:18128005,38432861:0,411205,112570 -) -k1,14592:18336897,38432861:205615 -k1,14592:19733956,38432861:205614 -(1,14592:19733956,38432861:0,414482,115847 -r1,14592:20092222,38432861:358266,530329,115847 -k1,14592:19733956,38432861:-358266 -) -(1,14592:19733956,38432861:358266,414482,115847 -k1,14592:19733956,38432861:3277 -h1,14592:20088945,38432861:0,411205,112570 -) -k1,14592:20297837,38432861:205615 -k1,14592:23567915,38432861:205614 -k1,14592:27406846,38432861:205615 -k1,14592:28263888,38432861:205614 -k1,14592:29488588,38432861:205615 -k1,14592:31391584,38432861:205614 -k1,14592:32583029,38432861:0 -) -(1,14593:6630773,39274349:25952256,505283,126483 -g1,14592:8657146,39274349 -g1,14592:11690807,39274349 -k1,14593:32583030,39274349:16922052 -g1,14593:32583030,39274349 -) -(1,14594:6630773,41365609:25952256,555811,139132 -(1,14594:6630773,41365609:2450326,534184,12975 -g1,14594:6630773,41365609 -g1,14594:9081099,41365609 -) -g1,14594:12939335,41365609 -k1,14594:32583029,41365609:17836408 -g1,14594:32583029,41365609 -) -(1,14597:6630773,42600313:25952256,513147,126483 -k1,14596:8623559,42600313:275743 -k1,14596:10615689,42600313:275742 -k1,14596:11550724,42600313:275743 -k1,14596:13215829,42600313:275742 -k1,14596:14483132,42600313:275743 -k1,14596:16409072,42600313:275743 -k1,14596:19542839,42600313:275742 -k1,14596:23016084,42600313:275743 -k1,14596:24101196,42600313:275742 -k1,14596:26041553,42600313:275743 -k1,14596:30055469,42600313:275742 -k1,14596:31773659,42600313:275743 -k1,14596:32583029,42600313:0 -) -(1,14597:6630773,43441801:25952256,513147,126483 -k1,14596:9651506,43441801:136494 -k1,14596:13699843,43441801:136493 -k1,14596:15033024,43441801:136494 -k1,14596:17634326,43441801:136493 -k1,14596:20432237,43441801:136494 -k1,14596:21100227,43441801:136493 -k1,14596:22794512,43441801:136494 -k1,14596:25963356,43441801:136493 -k1,14596:27667471,43441801:136494 -k1,14596:29689435,43441801:136493 -k1,14596:30845014,43441801:136494 -k1,14596:32583029,43441801:0 -) -(1,14597:6630773,44283289:25952256,513147,134348 -k1,14596:9332974,44283289:236081 -k1,14596:10196890,44283289:236081 -k1,14596:12125111,44283289:236081 -k1,14596:14058573,44283289:236080 -k1,14596:14953946,44283289:236081 -k1,14596:16615435,44283289:236081 -k1,14596:18696354,44283289:236081 -k1,14596:20321798,44283289:236081 -k1,14596:21951830,44283289:236081 -k1,14596:22543770,44283289:236080 -k1,14596:24838992,44283289:236081 -k1,14596:27682751,44283289:236081 -k1,14596:30918415,44283289:236081 -k1,14596:32583029,44283289:0 -) -(1,14597:6630773,45124777:25952256,513147,134348 -k1,14596:10586879,45124777:217932 -k1,14596:11909094,45124777:217933 -k1,14596:12874792,45124777:217932 -k1,14596:14605950,45124777:217932 -k1,14596:15475311,45124777:217933 -k1,14596:18550613,45124777:217932 -k1,14596:19900352,45124777:217932 -k1,14596:21987371,45124777:217932 -k1,14596:24003612,45124777:217933 -k1,14596:24904429,45124777:217932 -k1,14596:27693338,45124777:217932 -k1,14596:28527309,45124777:217933 -k1,14596:32095441,45124777:217932 -k1,14596:32583029,45124777:0 -) -] -(1,14598:32583029,45706769:0,0,0 -g1,14598:32583029,45706769 -) -) -] -(1,14598:6630773,47279633:25952256,0,0 -h1,14598:6630773,47279633:25952256,0,0 -) -] -h1,14598:4262630,4025873:0,0,0 -] -!19107 -}281 -Input:2214:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2215:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2216:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2217:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2218:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2219:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{282 -[1,14642:4262630,47279633:28320399,43253760,0 -(1,14642:4262630,4025873:0,0,0 -[1,14642:-473657,4025873:25952256,0,0 -(1,14642:-473657,-710414:25952256,0,0 -h1,14642:-473657,-710414:0,0,0 -(1,14642:-473657,-710414:0,0,0 -(1,14642:-473657,-710414:0,0,0 -g1,14642:-473657,-710414 -(1,14642:-473657,-710414:65781,0,65781 -g1,14642:-407876,-710414 -[1,14642:-407876,-644633:0,0,0 +v1,14608:6630773,16027202:0,393216,0 +(1,14609:6630773,19028237:25952256,3394251,616038 +g1,14609:6630773,19028237 +(1,14609:6630773,19028237:25952256,3394251,616038 +(1,14609:6630773,19644275:25952256,4010289,0 +[1,14609:6630773,19644275:25952256,4010289,0 +(1,14609:6630773,19618061:25952256,3957861,0 +r1,14609:6656987,19618061:26214,3957861,0 +[1,14609:6656987,19618061:25899828,3957861,0 +(1,14609:6656987,19028237:25899828,2778213,0 +[1,14609:7246811,19028237:24720180,2778213,0 +(1,14609:7246811,17337398:24720180,1087374,126483 +k1,14608:8655282,17337398:198768 +k1,14608:11059992,17337398:198768 +k1,14608:12277845,17337398:198768 +k1,14608:13753909,17337398:198767 +k1,14608:15808001,17337398:198768 +k1,14608:16658197,17337398:198768 +k1,14608:18517647,17337398:198768 +k1,14608:19735500,17337398:198768 +k1,14608:21956054,17337398:198768 +k1,14608:24482005,17337398:198768 +k1,14608:25340064,17337398:198767 +k1,14608:26557917,17337398:198768 +k1,14608:28050366,17337398:198768 +k1,14608:31118300,17337398:198768 +k1,14609:31966991,17337398:0 +) +(1,14609:7246811,18178886:24720180,505283,134348 +k1,14608:9716576,18178886:164208 +(1,14608:9716576,18178886:0,452978,115847 +r1,14609:10778265,18178886:1061689,568825,115847 +k1,14608:9716576,18178886:-1061689 +) +(1,14608:9716576,18178886:1061689,452978,115847 +k1,14608:9716576,18178886:3277 +h1,14608:10774988,18178886:0,411205,112570 +) +k1,14608:10942473,18178886:164208 +k1,14608:12500631,18178886:164207 +(1,14608:12500631,18178886:0,414482,115847 +r1,14609:13562320,18178886:1061689,530329,115847 +k1,14608:12500631,18178886:-1061689 +) +(1,14608:12500631,18178886:1061689,414482,115847 +k1,14608:12500631,18178886:3277 +h1,14608:13559043,18178886:0,411205,112570 +) +k1,14608:13900198,18178886:164208 +k1,14608:15445250,18178886:164208 +k1,14608:16140955,18178886:164208 +k1,14608:17873440,18178886:164208 +k1,14608:19109816,18178886:164207 +k1,14608:20293109,18178886:164208 +k1,14608:22152078,18178886:164208 +k1,14608:22847783,18178886:164208 +k1,14608:24296497,18178886:164208 +k1,14608:25631178,18178886:164208 +k1,14608:26927847,18178886:164207 +k1,14608:28622321,18178886:164208 +k1,14608:29437957,18178886:164208 +k1,14608:31966991,18178886:0 +) +(1,14609:7246811,19020374:24720180,505283,7863 +g1,14608:8465125,19020374 +k1,14609:31966990,19020374:19537592 +g1,14609:31966990,19020374 +) +] +) +] +r1,14609:32583029,19618061:26214,3957861,0 +) +] +) +) +g1,14609:32583029,19028237 +) +h1,14609:6630773,19644275:0,0,0 +v1,14612:6630773,21010051:0,393216,0 +(1,14613:6630773,24914031:25952256,4297196,616038 +g1,14613:6630773,24914031 +(1,14613:6630773,24914031:25952256,4297196,616038 +(1,14613:6630773,25530069:25952256,4913234,0 +[1,14613:6630773,25530069:25952256,4913234,0 +(1,14613:6630773,25503855:25952256,4860806,0 +r1,14613:6656987,25503855:26214,4860806,0 +[1,14613:6656987,25503855:25899828,4860806,0 +(1,14613:6656987,24914031:25899828,3681158,0 +[1,14613:7246811,24914031:24720180,3681158,0 +(1,14613:7246811,22255219:24720180,1022346,122846 +k1,14612:8846810,22255219:344486 +k1,14612:10144844,22255219:344485 +k1,14612:12659882,22255219:344486 +k1,14612:14096853,22255219:344486 +(1,14612:14096853,22255219:0,452978,115847 +r1,14613:17620525,22255219:3523672,568825,115847 +k1,14612:14096853,22255219:-3523672 +) +(1,14612:14096853,22255219:3523672,452978,115847 +k1,14612:14096853,22255219:3277 +h1,14612:17617248,22255219:0,411205,112570 +) +k1,14612:17965010,22255219:344485 +k1,14612:19703447,22255219:344486 +(1,14612:19703447,22255219:0,452978,122846 +r1,14613:24633967,22255219:4930520,575824,122846 +k1,14612:19703447,22255219:-4930520 +) +(1,14612:19703447,22255219:4930520,452978,122846 +g1,14612:21465283,22255219 +g1,14612:22168707,22255219 +h1,14612:24630690,22255219:0,411205,112570 +) +k1,14612:24978453,22255219:344486 +k1,14612:26005823,22255219:344485 +(1,14612:26005823,22255219:0,452978,122846 +r1,14613:30936343,22255219:4930520,575824,122846 +k1,14612:26005823,22255219:-4930520 +) +(1,14612:26005823,22255219:4930520,452978,122846 +g1,14612:27767659,22255219 +g1,14612:28471083,22255219 +h1,14612:30933066,22255219:0,411205,112570 +) +k1,14612:31280829,22255219:344486 +k1,14612:31966991,22255219:0 +) +(1,14613:7246811,23096707:24720180,505283,122846 +k1,14612:8319680,23096707:204517 +k1,14612:9628479,23096707:204517 +k1,14612:10925481,23096707:204517 +(1,14612:10925481,23096707:0,452978,122846 +r1,14613:15504289,23096707:4578808,575824,122846 +k1,14612:10925481,23096707:-4578808 +) +(1,14612:10925481,23096707:4578808,452978,122846 +g1,14612:12687317,23096707 +g1,14612:13390741,23096707 +h1,14612:15501012,23096707:0,411205,112570 +) +k1,14612:15708806,23096707:204517 +k1,14612:16596207,23096707:204516 +(1,14612:16596207,23096707:0,452978,122846 +r1,14613:22230150,23096707:5633943,575824,122846 +k1,14612:16596207,23096707:-5633943 +) +(1,14612:16596207,23096707:5633943,452978,122846 +g1,14612:18358043,23096707 +g1,14612:19061467,23096707 +h1,14612:22226873,23096707:0,411205,112570 +) +k1,14612:22608337,23096707:204517 +k1,14612:25325504,23096707:204517 +(1,14612:25325504,23096707:0,452978,122846 +r1,14613:29552600,23096707:4227096,575824,122846 +k1,14612:25325504,23096707:-4227096 +) +(1,14612:25325504,23096707:4227096,452978,122846 +k1,14612:25325504,23096707:3277 +h1,14612:29549323,23096707:0,411205,112570 +) +k1,14612:29757117,23096707:204517 +k1,14613:31966991,23096707:0 +) +(1,14613:7246811,23938195:24720180,505283,134348 +(1,14612:7246811,23938195:0,452978,122846 +r1,14613:11473907,23938195:4227096,575824,122846 +k1,14612:7246811,23938195:-4227096 +) +(1,14612:7246811,23938195:4227096,452978,122846 +k1,14612:7246811,23938195:3277 +h1,14612:11470630,23938195:0,411205,112570 +) +k1,14612:11735066,23938195:261159 +k1,14612:13100506,23938195:261158 +k1,14612:14109431,23938195:261159 +k1,14612:15883815,23938195:261158 +k1,14612:18559320,23938195:261159 +k1,14612:21247932,23938195:261158 +k1,14612:24266846,23938195:261159 +k1,14612:27930633,23938195:261158 +k1,14612:28843220,23938195:261159 +k1,14612:30917104,23938195:261158 +k1,14612:31966991,23938195:0 +) +(1,14613:7246811,24779683:24720180,485622,134348 +g1,14612:9724727,24779683 +h1,14612:11267445,24779683:0,0,0 +g1,14612:11466674,24779683 +g1,14612:12475273,24779683 +g1,14612:14172655,24779683 +h1,14612:15368032,24779683:0,0,0 +k1,14613:31966991,24779683:16425289 +g1,14613:31966991,24779683 +) +] +) +] +r1,14613:32583029,25503855:26214,4860806,0 +) +] +) +) +g1,14613:32583029,24914031 +) +h1,14613:6630773,25530069:0,0,0 +(1,14616:6630773,28861925:25952256,32768,229376 +(1,14616:6630773,28861925:0,32768,229376 +(1,14616:6630773,28861925:5505024,32768,229376 +r1,14616:12135797,28861925:5505024,262144,229376 +) +k1,14616:6630773,28861925:-5505024 +) +(1,14616:6630773,28861925:25952256,32768,0 +r1,14616:32583029,28861925:25952256,32768,0 +) +) +(1,14616:6630773,30466253:25952256,606339,151780 +(1,14616:6630773,30466253:1974731,582746,14155 +g1,14616:6630773,30466253 +g1,14616:8605504,30466253 +) +g1,14616:13623727,30466253 +g1,14616:15333430,30466253 +g1,14616:18619143,30466253 +k1,14616:32583029,30466253:11992301 +g1,14616:32583029,30466253 +) +(1,14621:6630773,31700957:25952256,513147,134348 +k1,14619:9406626,31700957:233056 +k1,14619:11247280,31700957:233056 +k1,14619:12584618,31700957:233056 +k1,14619:13565440,31700957:233056 +k1,14619:16325564,31700957:233056 +k1,14619:17217912,31700957:233056 +k1,14619:18137130,31700957:233056 +k1,14619:19977784,31700957:233056 +k1,14619:23515821,31700957:233056 +k1,14619:24400305,31700957:233056 +k1,14619:26377274,31700957:233056 +k1,14619:29700353,31700957:233056 +k1,14619:31966991,31700957:233056 +k1,14619:32583029,31700957:0 +) +(1,14621:6630773,32542445:25952256,513147,134348 +k1,14619:8076123,32542445:242109 +k1,14619:10735854,32542445:242108 +k1,14619:12050132,32542445:242109 +k1,14619:14293055,32542445:242109 +k1,14619:16270557,32542445:242109 +k1,14619:16868525,32542445:242108 +k1,14619:19872977,32542445:242109 +k1,14619:22361005,32542445:242109 +k1,14619:23262405,32542445:242108 +k1,14619:27416358,32542445:242109 +k1,14619:29039311,32542445:242109 +k1,14619:29812917,32542445:242109 +k1,14619:30410885,32542445:242108 +k1,14619:31753999,32542445:242109 +k1,14621:32583029,32542445:0 +) +(1,14621:6630773,33383933:25952256,513147,134348 +k1,14619:8572958,33383933:191063 +k1,14619:10048526,33383933:191062 +k1,14619:11258674,33383933:191063 +k1,14619:14352326,33383933:191062 +k1,14619:15202681,33383933:191063 +k1,14619:18112833,33383933:191063 +k1,14619:18990057,33383933:191062 +k1,14619:23382633,33383933:191063 +k1,14619:24189734,33383933:191063 +k1,14619:27209329,33383933:191062 +k1,14619:29446426,33383933:191063 +k1,14619:30729973,33383933:191062 +k1,14619:31753999,33383933:191063 +k1,14619:32583029,33383933:0 +) +(1,14621:6630773,34225421:25952256,505283,134348 +k1,14619:8816248,34225421:161723 +k1,14619:11398870,34225421:161722 +k1,14619:13168191,34225421:161723 +k1,14619:14198265,34225421:161722 +k1,14619:15452473,34225421:161723 +k1,14619:16633280,34225421:161722 +k1,14619:18448476,34225421:161723 +k1,14619:22200915,34225421:161722 +k1,14619:25045027,34225421:161723 +k1,14619:26398194,34225421:161722 +k1,14619:28406067,34225421:161723 +k1,14619:29436141,34225421:161722 +k1,14619:31073079,34225421:161723 +k1,14619:32583029,34225421:0 +) +(1,14621:6630773,35066909:25952256,513147,134348 +k1,14619:8513824,35066909:147658 +k1,14619:10055432,35066909:147657 +k1,14619:11222175,35066909:147658 +k1,14619:13635412,35066909:147657 +k1,14619:16028989,35066909:147658 +k1,14619:16835938,35066909:147657 +k1,14619:19867835,35066909:147658 +k1,14619:23927336,35066909:147657 +k1,14619:25271681,35066909:147658 +k1,14619:26794939,35066909:147657 +k1,14619:28604590,35066909:147658 +k1,14619:30036753,35066909:147657 +k1,14619:31052763,35066909:147658 +k1,14619:32583029,35066909:0 +) +(1,14621:6630773,35908397:25952256,513147,126483 +k1,14619:7420402,35908397:138201 +k1,14619:8373871,35908397:138201 +k1,14619:9043569,35908397:138201 +k1,14619:9833197,35908397:138200 +k1,14619:11168741,35908397:138201 +(1,14619:11168741,35908397:0,452978,115847 +r1,14619:15747549,35908397:4578808,568825,115847 +k1,14619:11168741,35908397:-4578808 +) +(1,14619:11168741,35908397:4578808,452978,115847 +k1,14619:11168741,35908397:3277 +h1,14619:15744272,35908397:0,411205,112570 +) +k1,14619:15885750,35908397:138201 +k1,14619:16675379,35908397:138201 +k1,14619:19458613,35908397:138201 +k1,14619:20615899,35908397:138201 +k1,14619:23193350,35908397:138201 +k1,14619:24105530,35908397:138200 +k1,14619:26352680,35908397:138201 +k1,14619:27866482,35908397:138201 +k1,14619:29696823,35908397:138201 +k1,14619:32583029,35908397:0 +) +(1,14621:6630773,36749885:25952256,505283,126483 +k1,14619:9986065,36749885:171553 +k1,14619:11261900,36749885:171553 +k1,14619:12181219,36749885:171553 +k1,14619:14250039,36749885:171553 +k1,14619:17485400,36749885:171553 +k1,14619:18272991,36749885:171553 +k1,14619:20865445,36749885:171554 +k1,14619:22644596,36749885:171553 +k1,14619:24258596,36749885:171553 +k1,14619:25046187,36749885:171553 +k1,14619:28101979,36749885:171553 +k1,14619:30054801,36749885:171553 +k1,14619:31714677,36749885:171553 +k1,14619:32583029,36749885:0 +) +(1,14621:6630773,37591373:25952256,513147,134348 +k1,14619:7997979,37591373:169863 +k1,14619:8523703,37591373:169864 +k1,14619:9976761,37591373:169863 +k1,14619:12371572,37591373:169864 +k1,14619:13192863,37591373:169863 +k1,14619:14381812,37591373:169864 +k1,14619:17454265,37591373:169863 +k1,14619:18283421,37591373:169864 +k1,14619:21346043,37591373:169863 +k1,14619:25311096,37591373:169864 +k1,14619:26974525,37591373:169863 +k1,14619:27830551,37591373:169864 +(1,14619:27830551,37591373:0,452978,115847 +r1,14619:32409359,37591373:4578808,568825,115847 +k1,14619:27830551,37591373:-4578808 +) +(1,14619:27830551,37591373:4578808,452978,115847 +k1,14619:27830551,37591373:3277 +h1,14619:32406082,37591373:0,411205,112570 +) +k1,14619:32583029,37591373:0 +) +(1,14621:6630773,38432861:25952256,505283,134348 +k1,14620:8619622,38432861:205614 +k1,14620:10560630,38432861:205615 +k1,14620:12430858,38432861:205614 +k1,14620:16548317,38432861:205615 +k1,14620:17773016,38432861:205614 +(1,14620:17773016,38432861:0,414482,115847 +r1,14620:18131282,38432861:358266,530329,115847 +k1,14620:17773016,38432861:-358266 +) +(1,14620:17773016,38432861:358266,414482,115847 +k1,14620:17773016,38432861:3277 +h1,14620:18128005,38432861:0,411205,112570 +) +k1,14620:18336897,38432861:205615 +k1,14620:19733956,38432861:205614 +(1,14620:19733956,38432861:0,414482,115847 +r1,14620:20092222,38432861:358266,530329,115847 +k1,14620:19733956,38432861:-358266 +) +(1,14620:19733956,38432861:358266,414482,115847 +k1,14620:19733956,38432861:3277 +h1,14620:20088945,38432861:0,411205,112570 +) +k1,14620:20297837,38432861:205615 +k1,14620:23567915,38432861:205614 +k1,14620:27406846,38432861:205615 +k1,14620:28263888,38432861:205614 +k1,14620:29488588,38432861:205615 +k1,14620:31391584,38432861:205614 +k1,14620:32583029,38432861:0 +) +(1,14621:6630773,39274349:25952256,505283,126483 +g1,14620:8657146,39274349 +g1,14620:11690807,39274349 +k1,14621:32583030,39274349:16922052 +g1,14621:32583030,39274349 +) +(1,14622:6630773,41365609:25952256,555811,139132 +(1,14622:6630773,41365609:2450326,534184,12975 +g1,14622:6630773,41365609 +g1,14622:9081099,41365609 +) +g1,14622:12939335,41365609 +k1,14622:32583029,41365609:17836408 +g1,14622:32583029,41365609 +) +(1,14625:6630773,42600313:25952256,513147,126483 +k1,14624:8623559,42600313:275743 +k1,14624:10615689,42600313:275742 +k1,14624:11550724,42600313:275743 +k1,14624:13215829,42600313:275742 +k1,14624:14483132,42600313:275743 +k1,14624:16409072,42600313:275743 +k1,14624:19542839,42600313:275742 +k1,14624:23016084,42600313:275743 +k1,14624:24101196,42600313:275742 +k1,14624:26041553,42600313:275743 +k1,14624:30055469,42600313:275742 +k1,14624:31773659,42600313:275743 +k1,14624:32583029,42600313:0 +) +(1,14625:6630773,43441801:25952256,513147,126483 +k1,14624:9651506,43441801:136494 +k1,14624:13699843,43441801:136493 +k1,14624:15033024,43441801:136494 +k1,14624:17634326,43441801:136493 +k1,14624:20432237,43441801:136494 +k1,14624:21100227,43441801:136493 +k1,14624:22794512,43441801:136494 +k1,14624:25963356,43441801:136493 +k1,14624:27667471,43441801:136494 +k1,14624:29689435,43441801:136493 +k1,14624:30845014,43441801:136494 +k1,14624:32583029,43441801:0 +) +(1,14625:6630773,44283289:25952256,513147,134348 +k1,14624:9332974,44283289:236081 +k1,14624:10196890,44283289:236081 +k1,14624:12125111,44283289:236081 +k1,14624:14058573,44283289:236080 +k1,14624:14953946,44283289:236081 +k1,14624:16615435,44283289:236081 +k1,14624:18696354,44283289:236081 +k1,14624:20321798,44283289:236081 +k1,14624:21951830,44283289:236081 +k1,14624:22543770,44283289:236080 +k1,14624:24838992,44283289:236081 +k1,14624:27682751,44283289:236081 +k1,14624:30918415,44283289:236081 +k1,14624:32583029,44283289:0 +) +(1,14625:6630773,45124777:25952256,513147,134348 +k1,14624:10586879,45124777:217932 +k1,14624:11909094,45124777:217933 +k1,14624:12874792,45124777:217932 +k1,14624:14605950,45124777:217932 +k1,14624:15475311,45124777:217933 +k1,14624:18550613,45124777:217932 +k1,14624:19900352,45124777:217932 +k1,14624:21987371,45124777:217932 +k1,14624:24003612,45124777:217933 +k1,14624:24904429,45124777:217932 +k1,14624:27693338,45124777:217932 +k1,14624:28527309,45124777:217933 +k1,14624:32095441,45124777:217932 +k1,14624:32583029,45124777:0 +) +] +(1,14626:32583029,45706769:0,0,0 +g1,14626:32583029,45706769 +) +) +] +(1,14626:6630773,47279633:25952256,0,0 +h1,14626:6630773,47279633:25952256,0,0 +) +] +h1,14626:4262630,4025873:0,0,0 +] +!19184 +}282 +Input:2211:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2212:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2213:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2214:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2215:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2216:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{283 +[1,14671:4262630,47279633:28320399,43253760,0 +(1,14671:4262630,4025873:0,0,0 +[1,14671:-473657,4025873:25952256,0,0 +(1,14671:-473657,-710414:25952256,0,0 +h1,14671:-473657,-710414:0,0,0 +(1,14671:-473657,-710414:0,0,0 +(1,14671:-473657,-710414:0,0,0 +g1,14671:-473657,-710414 +(1,14671:-473657,-710414:65781,0,65781 +g1,14671:-407876,-710414 +[1,14671:-407876,-644633:0,0,0 ] ) -k1,14642:-473657,-710414:-65781 +k1,14671:-473657,-710414:-65781 ) ) -k1,14642:25478599,-710414:25952256 -g1,14642:25478599,-710414 +k1,14671:25478599,-710414:25952256 +g1,14671:25478599,-710414 ) ] ) -[1,14642:6630773,47279633:25952256,43253760,0 -[1,14642:6630773,4812305:25952256,786432,0 -(1,14642:6630773,4812305:25952256,505283,126483 -(1,14642:6630773,4812305:25952256,505283,126483 -g1,14642:3078558,4812305 -[1,14642:3078558,4812305:0,0,0 -(1,14642:3078558,2439708:0,1703936,0 -k1,14642:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14642:2537886,2439708:1179648,16384,0 +[1,14671:6630773,47279633:25952256,43253760,0 +[1,14671:6630773,4812305:25952256,786432,0 +(1,14671:6630773,4812305:25952256,513147,134348 +(1,14671:6630773,4812305:25952256,513147,134348 +g1,14671:3078558,4812305 +[1,14671:3078558,4812305:0,0,0 +(1,14671:3078558,2439708:0,1703936,0 +k1,14671:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14671:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14642:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14671:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14642:3078558,4812305:0,0,0 -(1,14642:3078558,2439708:0,1703936,0 -g1,14642:29030814,2439708 -g1,14642:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14642:36151628,1915420:16384,1179648,0 +[1,14671:3078558,4812305:0,0,0 +(1,14671:3078558,2439708:0,1703936,0 +g1,14671:29030814,2439708 +g1,14671:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14671:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14642:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14671:37855564,2439708:1179648,16384,0 ) ) -k1,14642:3078556,2439708:-34777008 +k1,14671:3078556,2439708:-34777008 ) ] -[1,14642:3078558,4812305:0,0,0 -(1,14642:3078558,49800853:0,16384,2228224 -k1,14642:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14642:2537886,49800853:1179648,16384,0 +[1,14671:3078558,4812305:0,0,0 +(1,14671:3078558,49800853:0,16384,2228224 +k1,14671:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14671:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14642:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14671:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,14642:3078558,4812305:0,0,0 -(1,14642:3078558,49800853:0,16384,2228224 -g1,14642:29030814,49800853 -g1,14642:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14642:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14642:37855564,49800853:1179648,16384,0 -) -) -k1,14642:3078556,49800853:-34777008 -) -] -g1,14642:6630773,4812305 -g1,14642:6630773,4812305 -g1,14642:10600288,4812305 -g1,14642:12009967,4812305 -g1,14642:14653689,4812305 -g1,14642:16328789,4812305 -k1,14642:31387652,4812305:15058863 -) -) -] -[1,14642:6630773,45706769:25952256,40108032,0 -(1,14642:6630773,45706769:25952256,40108032,0 -(1,14642:6630773,45706769:0,0,0 -g1,14642:6630773,45706769 -) -[1,14642:6630773,45706769:25952256,40108032,0 -(1,14597:6630773,6254097:25952256,505283,134348 -k1,14596:8491996,6254097:211026 -k1,14596:11691464,6254097:211026 -k1,14596:15463060,6254097:211025 -k1,14596:16205583,6254097:211026 -k1,14596:17068037,6254097:211026 -k1,14596:18556360,6254097:211026 -k1,14596:21593297,6254097:211025 -k1,14596:22420361,6254097:211026 -k1,14596:22987247,6254097:211026 -k1,14596:26072027,6254097:211026 -k1,14596:28794392,6254097:211025 -k1,14596:31563944,6254097:211026 -k1,14596:32583029,6254097:0 -) -(1,14597:6630773,7095585:25952256,513147,126483 -g1,14596:7967707,7095585 -g1,14596:9560887,7095585 -g1,14596:10115976,7095585 -g1,14596:14848330,7095585 -g1,14596:19712412,7095585 -g1,14596:20570933,7095585 -g1,14596:22195570,7095585 -g1,14596:23054091,7095585 -k1,14597:32583029,7095585:8217563 -g1,14597:32583029,7095585 -) -(1,14599:6630773,7937073:25952256,513147,134348 -h1,14598:6630773,7937073:983040,0,0 -k1,14598:9421196,7937073:164395 -k1,14598:10946117,7937073:164394 -k1,14598:12718110,7937073:164395 -k1,14598:13874064,7937073:164394 -k1,14598:17343440,7937073:164395 -k1,14598:21074303,7937073:164394 -k1,14598:21921583,7937073:164395 -k1,14598:24418403,7937073:164394 -k1,14598:26190396,7937073:164395 -k1,14598:28355604,7937073:164394 -k1,14598:29329369,7937073:164395 -k1,14598:29849623,7937073:164394 -k1,14598:31678632,7937073:164395 -k1,14599:32583029,7937073:0 -) -(1,14599:6630773,8778561:25952256,513147,134348 -k1,14598:8396817,8778561:211530 -k1,14598:9267639,8778561:211530 -k1,14598:13217342,8778561:211529 -k1,14598:14660949,8778561:211530 -k1,14598:17481467,8778561:211530 -h1,14598:19024185,8778561:0,0,0 -k1,14598:19235715,8778561:211530 -k1,14598:20638689,8778561:211529 -h1,14598:22181407,8778561:0,0,0 -k1,14598:22392937,8778561:211530 -k1,14598:23413837,8778561:211530 -k1,14598:25453821,8778561:211530 -h1,14598:26649198,8778561:0,0,0 -k1,14598:26860727,8778561:211529 -k1,14598:28263702,8778561:211530 -h1,14598:29459079,8778561:0,0,0 -k1,14598:29844279,8778561:211530 -k1,14599:32583029,8778561:0 -) -(1,14599:6630773,9620049:25952256,513147,134348 -k1,14598:8170682,9620049:269166 -k1,14598:9387498,9620049:269165 -k1,14598:10012524,9620049:269166 -k1,14598:13891413,9620049:269166 -k1,14598:14819870,9620049:269165 -k1,14598:16108121,9620049:269166 -k1,14598:17469772,9620049:269166 -k1,14598:18398229,9620049:269165 -k1,14598:20364122,9620049:269166 -k1,14598:23315676,9620049:269165 -k1,14598:24776287,9620049:269166 -k1,14598:28866202,9620049:269166 -k1,14598:30088916,9620049:269165 -k1,14598:31490544,9620049:269166 -k1,14598:32583029,9620049:0 -) -(1,14599:6630773,10461537:25952256,513147,126483 -k1,14598:8491230,10461537:221402 -k1,14598:9660284,10461537:221403 -k1,14598:12873405,10461537:221402 -k1,14598:15013701,10461537:221402 -k1,14598:16103455,10461537:221402 -k1,14598:17602155,10461537:221403 -k1,14598:19381348,10461537:221402 -k1,14598:21469215,10461537:221402 -k1,14598:22882062,10461537:221402 -k1,14598:25962145,10461537:221403 -k1,14598:27746581,10461537:221402 -k1,14598:31092740,10461537:221402 -k1,14598:32583029,10461537:0 -) -(1,14599:6630773,11303025:25952256,513147,134348 -g1,14598:7886442,11303025 -g1,14598:10340765,11303025 -g1,14598:12654185,11303025 -g1,14598:13650332,11303025 -g1,14598:14264404,11303025 -g1,14598:16238348,11303025 -g1,14598:19017729,11303025 -k1,14599:32583029,11303025:9378206 -g1,14599:32583029,11303025 -) -(1,14601:6630773,12144513:25952256,513147,134348 -h1,14600:6630773,12144513:983040,0,0 -k1,14600:9298803,12144513:196667 -k1,14600:10363823,12144513:196668 -k1,14600:11837787,12144513:196667 -k1,14600:12390315,12144513:196668 -k1,14600:15007882,12144513:196667 -k1,14600:18440718,12144513:196668 -k1,14600:19296677,12144513:196667 -k1,14600:21051136,12144513:196668 -k1,14600:24436785,12144513:196667 -k1,14600:26027404,12144513:196668 -k1,14600:31062594,12144513:196667 -k1,14600:32583029,12144513:0 -) -(1,14601:6630773,12986001:25952256,513147,134348 -k1,14600:7742178,12986001:157856 -k1,14600:8992519,12986001:157856 -(1,14600:8992519,12986001:0,452978,115847 -r1,14600:12516191,12986001:3523672,568825,115847 -k1,14600:8992519,12986001:-3523672 -) -(1,14600:8992519,12986001:3523672,452978,115847 -k1,14600:8992519,12986001:3277 -h1,14600:12512914,12986001:0,411205,112570 -) -k1,14600:12847718,12986001:157857 -k1,14600:14202261,12986001:157856 -k1,14600:16505110,12986001:157856 -k1,14600:19704492,12986001:157856 -k1,14600:20881434,12986001:157857 -k1,14600:23525071,12986001:157856 -k1,14600:24342219,12986001:157856 -k1,14600:27085470,12986001:157856 -k1,14600:29357518,12986001:157857 -k1,14600:30312292,12986001:157856 -k1,14600:30884991,12986001:157856 -k1,14600:32583029,12986001:0 -) -(1,14601:6630773,13827489:25952256,505283,7863 -g1,14600:7849087,13827489 -g1,14600:9606107,13827489 -g1,14600:12664016,13827489 -g1,14600:14070418,13827489 -g1,14600:16279636,13827489 -g1,14600:17930487,13827489 -k1,14601:32583029,13827489:13462408 -g1,14601:32583029,13827489 -) -v1,14603:6630773,15017955:0,393216,0 -(1,14616:6630773,21297196:25952256,6672457,196608 -g1,14616:6630773,21297196 -g1,14616:6630773,21297196 -g1,14616:6434165,21297196 -(1,14616:6434165,21297196:0,6672457,196608 -r1,14616:32779637,21297196:26345472,6869065,196608 -k1,14616:6434165,21297196:-26345472 -) -(1,14616:6434165,21297196:26345472,6672457,196608 -[1,14616:6630773,21297196:25952256,6475849,0 -(1,14605:6630773,15225573:25952256,404226,107478 -(1,14604:6630773,15225573:0,0,0 -g1,14604:6630773,15225573 -g1,14604:6630773,15225573 -g1,14604:6303093,15225573 -(1,14604:6303093,15225573:0,0,0 -) -g1,14604:6630773,15225573 -) -k1,14605:6630773,15225573:0 -g1,14605:13902124,15225573 -g1,14605:20541184,15225573 -g1,14605:20857330,15225573 -h1,14605:21173476,15225573:0,0,0 -k1,14605:32583029,15225573:11409553 -g1,14605:32583029,15225573 -) -(1,14606:6630773,15891751:25952256,404226,101187 -h1,14606:6630773,15891751:0,0,0 -g1,14606:6946919,15891751 -g1,14606:7263065,15891751 -g1,14606:11689104,15891751 -h1,14606:12005250,15891751:0,0,0 -k1,14606:32583030,15891751:20577780 -g1,14606:32583030,15891751 -) -(1,14607:6630773,16557929:25952256,410518,107478 -h1,14607:6630773,16557929:0,0,0 -g1,14607:6946919,16557929 -g1,14607:7263065,16557929 -g1,14607:12005250,16557929 -g1,14607:12637542,16557929 -g1,14607:15482854,16557929 -g1,14607:17063583,16557929 -g1,14607:17695875,16557929 -g1,14607:20857332,16557929 -g1,14607:22438061,16557929 -g1,14607:23070353,16557929 -k1,14607:23070353,16557929:0 -h1,14607:24967227,16557929:0,0,0 -k1,14607:32583029,16557929:7615802 -g1,14607:32583029,16557929 -) -(1,14608:6630773,17224107:25952256,404226,82312 -h1,14608:6630773,17224107:0,0,0 -g1,14608:6946919,17224107 -g1,14608:7263065,17224107 -g1,14608:7579211,17224107 -g1,14608:7895357,17224107 -g1,14608:8211503,17224107 -g1,14608:8527649,17224107 -g1,14608:8843795,17224107 -g1,14608:9159941,17224107 -g1,14608:9476087,17224107 -g1,14608:9792233,17224107 -g1,14608:10108379,17224107 -g1,14608:12953690,17224107 -g1,14608:13585982,17224107 -g1,14608:14850565,17224107 -g1,14608:16747439,17224107 -g1,14608:17379731,17224107 -g1,14608:19276606,17224107 -h1,14608:19592752,17224107:0,0,0 -k1,14608:32583029,17224107:12990277 -g1,14608:32583029,17224107 -) -(1,14609:6630773,17890285:25952256,404226,101187 -h1,14609:6630773,17890285:0,0,0 -g1,14609:6946919,17890285 -g1,14609:7263065,17890285 -g1,14609:14850562,17890285 -g1,14609:15482854,17890285 -g1,14609:19592748,17890285 -h1,14609:19908894,17890285:0,0,0 -k1,14609:32583029,17890285:12674135 -g1,14609:32583029,17890285 -) -(1,14610:6630773,18556463:25952256,404226,82312 -h1,14610:6630773,18556463:0,0,0 -g1,14610:6946919,18556463 -g1,14610:7263065,18556463 -g1,14610:15482853,18556463 -g1,14610:16115145,18556463 -g1,14610:17695875,18556463 -g1,14610:18960458,18556463 -g1,14610:20541187,18556463 -k1,14610:20541187,18556463:0 -h1,14610:22121916,18556463:0,0,0 -k1,14610:32583029,18556463:10461113 -g1,14610:32583029,18556463 -) -(1,14611:6630773,19222641:25952256,404226,82312 -h1,14611:6630773,19222641:0,0,0 -g1,14611:6946919,19222641 -g1,14611:7263065,19222641 -g1,14611:7579211,19222641 -g1,14611:7895357,19222641 -g1,14611:8211503,19222641 -g1,14611:8527649,19222641 -g1,14611:8843795,19222641 -g1,14611:9159941,19222641 -g1,14611:9476087,19222641 -g1,14611:9792233,19222641 -g1,14611:10108379,19222641 -g1,14611:10424525,19222641 -g1,14611:10740671,19222641 -g1,14611:11056817,19222641 -g1,14611:11372963,19222641 -g1,14611:11689109,19222641 -g1,14611:12005255,19222641 -g1,14611:12321401,19222641 -g1,14611:12637547,19222641 -g1,14611:12953693,19222641 -g1,14611:13269839,19222641 -g1,14611:15482859,19222641 -g1,14611:16115151,19222641 -g1,14611:18328172,19222641 -g1,14611:19908901,19222641 -g1,14611:21489630,19222641 -k1,14611:21489630,19222641:0 -h1,14611:23070359,19222641:0,0,0 -k1,14611:32583029,19222641:9512670 -g1,14611:32583029,19222641 -) -(1,14612:6630773,19888819:25952256,404226,82312 -h1,14612:6630773,19888819:0,0,0 -g1,14612:6946919,19888819 -g1,14612:7263065,19888819 -g1,14612:7579211,19888819 -g1,14612:7895357,19888819 -g1,14612:8211503,19888819 -g1,14612:8527649,19888819 -g1,14612:8843795,19888819 -g1,14612:9159941,19888819 -g1,14612:9476087,19888819 -g1,14612:9792233,19888819 -g1,14612:10108379,19888819 -g1,14612:10424525,19888819 -g1,14612:10740671,19888819 -g1,14612:11056817,19888819 -g1,14612:11372963,19888819 -g1,14612:11689109,19888819 -g1,14612:12005255,19888819 -g1,14612:12321401,19888819 -g1,14612:12637547,19888819 -g1,14612:12953693,19888819 -g1,14612:13269839,19888819 -g1,14612:15482859,19888819 -g1,14612:16115151,19888819 -g1,14612:17695881,19888819 -k1,14612:17695881,19888819:0 -h1,14612:19276610,19888819:0,0,0 -k1,14612:32583029,19888819:13306419 -g1,14612:32583029,19888819 -) -(1,14613:6630773,20554997:25952256,404226,101187 -h1,14613:6630773,20554997:0,0,0 -g1,14613:6946919,20554997 -g1,14613:7263065,20554997 -g1,14613:7579211,20554997 -g1,14613:7895357,20554997 -g1,14613:8211503,20554997 -g1,14613:8527649,20554997 -g1,14613:8843795,20554997 -g1,14613:9159941,20554997 -g1,14613:9476087,20554997 -g1,14613:9792233,20554997 -g1,14613:10108379,20554997 -g1,14613:10424525,20554997 -g1,14613:10740671,20554997 -g1,14613:11056817,20554997 -g1,14613:11372963,20554997 -g1,14613:11689109,20554997 -g1,14613:12005255,20554997 -g1,14613:12321401,20554997 -g1,14613:12637547,20554997 -g1,14613:12953693,20554997 -g1,14613:13269839,20554997 -g1,14613:15482859,20554997 -g1,14613:16115151,20554997 -g1,14613:17695881,20554997 -k1,14613:17695881,20554997:0 -h1,14613:18644319,20554997:0,0,0 -k1,14613:32583029,20554997:13938710 -g1,14613:32583029,20554997 -) -(1,14614:6630773,21221175:25952256,404226,76021 -h1,14614:6630773,21221175:0,0,0 -g1,14614:6946919,21221175 -g1,14614:7263065,21221175 -g1,14614:7579211,21221175 -g1,14614:7895357,21221175 -g1,14614:8211503,21221175 -g1,14614:8527649,21221175 -g1,14614:8843795,21221175 -g1,14614:9159941,21221175 -g1,14614:9476087,21221175 -g1,14614:9792233,21221175 -g1,14614:10108379,21221175 -g1,14614:10424525,21221175 -g1,14614:10740671,21221175 -g1,14614:11056817,21221175 -g1,14614:11372963,21221175 -g1,14614:11689109,21221175 -g1,14614:12005255,21221175 -g1,14614:12321401,21221175 -g1,14614:12637547,21221175 -g1,14614:12953693,21221175 -g1,14614:13269839,21221175 -g1,14614:14850568,21221175 -g1,14614:15482860,21221175 -g1,14614:17379734,21221175 -h1,14614:20857337,21221175:0,0,0 -k1,14614:32583029,21221175:11725692 -g1,14614:32583029,21221175 -) -] -) -g1,14616:32583029,21297196 -g1,14616:6630773,21297196 -g1,14616:6630773,21297196 -g1,14616:32583029,21297196 -g1,14616:32583029,21297196 -) -h1,14616:6630773,21493804:0,0,0 -(1,14619:6630773,31146317:25952256,9062689,0 -k1,14619:10523651,31146317:3892878 -h1,14618:10523651,31146317:0,0,0 -(1,14618:10523651,31146317:18166500,9062689,0 -(1,14618:10523651,31146317:18167381,9062712,0 -(1,14618:10523651,31146317:18167381,9062712,0 -(1,14618:10523651,31146317:0,9062712,0 -(1,14618:10523651,31146317:0,14155776,0 -(1,14618:10523651,31146317:28377088,14155776,0 -) -k1,14618:10523651,31146317:-28377088 -) -) -g1,14618:28691032,31146317 -) -) -) -g1,14619:28690151,31146317 -k1,14619:32583029,31146317:3892878 -) -(1,14627:6630773,31987805:25952256,505283,134348 -h1,14626:6630773,31987805:983040,0,0 -k1,14626:9231062,31987805:575227 -k1,14626:10576993,31987805:575228 -k1,14626:14457201,31987805:575227 -k1,14626:16483396,31987805:575228 -k1,14626:18794016,31987805:575227 -k1,14626:20139947,31987805:575228 -k1,14626:23688542,31987805:575227 -k1,14626:26769867,31987805:575228 -k1,14626:28213446,31987805:575227 -k1,14626:30263889,31987805:575228 -k1,14626:31490544,31987805:575227 -k1,14627:32583029,31987805:0 -) -(1,14627:6630773,32829293:25952256,513147,134348 -(1,14626:6630773,32829293:0,452978,115847 -r1,14626:11561293,32829293:4930520,568825,115847 -k1,14626:6630773,32829293:-4930520 -) -(1,14626:6630773,32829293:4930520,452978,115847 -k1,14626:6630773,32829293:3277 -h1,14626:11558016,32829293:0,411205,112570 -) -g1,14626:11760522,32829293 -g1,14626:14286934,32829293 -g1,14626:15153319,32829293 -(1,14626:15153319,32829293:0,452978,115847 -r1,14626:18676991,32829293:3523672,568825,115847 -k1,14626:15153319,32829293:-3523672 -) -(1,14626:15153319,32829293:3523672,452978,115847 -k1,14626:15153319,32829293:3277 -h1,14626:18673714,32829293:0,411205,112570 -) -g1,14626:18876220,32829293 -g1,14626:20266894,32829293 -g1,14626:22706799,32829293 -g1,14626:23925113,32829293 -(1,14626:23925113,32829293:0,414482,115847 -r1,14626:25338514,32829293:1413401,530329,115847 -k1,14626:23925113,32829293:-1413401 -) -(1,14626:23925113,32829293:1413401,414482,115847 -k1,14626:23925113,32829293:3277 -h1,14626:25335237,32829293:0,411205,112570 -) -g1,14626:25537743,32829293 -g1,14626:26396264,32829293 -g1,14626:27614578,32829293 -(1,14626:27614578,32829293:0,414482,115847 -r1,14626:27972844,32829293:358266,530329,115847 -k1,14626:27614578,32829293:-358266 -) -(1,14626:27614578,32829293:358266,414482,115847 -k1,14626:27614578,32829293:3277 -h1,14626:27969567,32829293:0,411205,112570 -) -g1,14626:28172073,32829293 -k1,14627:32583029,32829293:2665077 -g1,14627:32583029,32829293 -) -(1,14632:6630773,42091866:25952256,9062689,0 -k1,14632:10523651,42091866:3892878 -h1,14631:10523651,42091866:0,0,0 -(1,14631:10523651,42091866:18166500,9062689,0 -(1,14631:10523651,42091866:18167381,9062712,0 -(1,14631:10523651,42091866:18167381,9062712,0 -(1,14631:10523651,42091866:0,9062712,0 -(1,14631:10523651,42091866:0,14155776,0 -(1,14631:10523651,42091866:28377088,14155776,0 -) -k1,14631:10523651,42091866:-28377088 -) -) -g1,14631:28691032,42091866 -) -) -) -g1,14632:28690151,42091866 -k1,14632:32583029,42091866:3892878 -) -(1,14640:6630773,42933354:25952256,513147,126483 -h1,14639:6630773,42933354:983040,0,0 -k1,14639:8665466,42933354:233764 -k1,14639:9918316,42933354:233765 -k1,14639:11558483,42933354:233764 -k1,14639:14923558,42933354:233765 -k1,14639:16434619,42933354:233764 -k1,14639:19503471,42933354:233765 -k1,14639:20605587,42933354:233764 -k1,14639:21654620,42933354:233765 -k1,14639:22790124,42933354:233729 -k1,14639:25356315,42933354:233765 -k1,14639:26867376,42933354:233764 -k1,14639:28495092,42933354:233765 -k1,14639:30617604,42933354:233764 -k1,14639:32583029,42933354:0 -) -(1,14640:6630773,43774842:25952256,513147,126483 -k1,14639:8278397,43774842:253673 -(1,14639:8278397,43774842:0,459977,115847 -r1,14639:12505493,43774842:4227096,575824,115847 -k1,14639:8278397,43774842:-4227096 -) -(1,14639:8278397,43774842:4227096,459977,115847 -k1,14639:8278397,43774842:3277 -h1,14639:12502216,43774842:0,411205,112570 -) -k1,14639:12759166,43774842:253673 -k1,14639:13664267,43774842:253673 -k1,14639:15393155,43774842:253673 -k1,14639:18349534,43774842:253674 -k1,14639:20677421,43774842:253673 -k1,14639:21878745,43774842:253673 -k1,14639:23183561,43774842:253618 -k1,14639:24628679,43774842:253673 -k1,14639:25995154,43774842:253674 -k1,14639:27629671,43774842:253673 -k1,14639:29160641,43774842:253673 -k1,14639:30837101,43774842:253673 -k1,14639:31931601,43774842:253673 -k1,14639:32583029,43774842:0 -) -(1,14640:6630773,44616330:25952256,513147,126483 -k1,14639:9569552,44616330:269498 -k1,14639:10858136,44616330:269499 -k1,14639:13460060,44616330:269498 -k1,14639:14388851,44616330:269499 -k1,14639:18730101,44616330:269498 -k1,14639:19947251,44616330:269499 -k1,14639:22979092,44616330:269498 -k1,14639:27566758,44616330:269499 -k1,14639:29394047,44616330:269498 -k1,14639:32583029,44616330:0 -) -] -(1,14642:32583029,45706769:0,0,0 -g1,14642:32583029,45706769 -) -) -] -(1,14642:6630773,47279633:25952256,0,0 -h1,14642:6630773,47279633:25952256,0,0 -) -] -h1,14642:4262630,4025873:0,0,0 -] -!19582 -}282 -Input:2220:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2221:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 -{283 -[1,14708:4262630,47279633:28320399,43253760,0 -(1,14708:4262630,4025873:0,0,0 -[1,14708:-473657,4025873:25952256,0,0 -(1,14708:-473657,-710414:25952256,0,0 -h1,14708:-473657,-710414:0,0,0 -(1,14708:-473657,-710414:0,0,0 -(1,14708:-473657,-710414:0,0,0 -g1,14708:-473657,-710414 -(1,14708:-473657,-710414:65781,0,65781 -g1,14708:-407876,-710414 -[1,14708:-407876,-644633:0,0,0 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,14671:3078558,4812305:0,0,0 +(1,14671:3078558,49800853:0,16384,2228224 +g1,14671:29030814,49800853 +g1,14671:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14671:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14671:37855564,49800853:1179648,16384,0 +) +) +k1,14671:3078556,49800853:-34777008 +) +] +g1,14671:6630773,4812305 +k1,14671:25712890,4812305:17886740 +g1,14671:29057847,4812305 +g1,14671:29873114,4812305 +) +) +] +[1,14671:6630773,45706769:25952256,40108032,0 +(1,14671:6630773,45706769:25952256,40108032,0 +(1,14671:6630773,45706769:0,0,0 +g1,14671:6630773,45706769 +) +[1,14671:6630773,45706769:25952256,40108032,0 +(1,14625:6630773,6254097:25952256,505283,134348 +k1,14624:8491996,6254097:211026 +k1,14624:11691464,6254097:211026 +k1,14624:15463060,6254097:211025 +k1,14624:16205583,6254097:211026 +k1,14624:17068037,6254097:211026 +k1,14624:18556360,6254097:211026 +k1,14624:21593297,6254097:211025 +k1,14624:22420361,6254097:211026 +k1,14624:22987247,6254097:211026 +k1,14624:26072027,6254097:211026 +k1,14624:28794392,6254097:211025 +k1,14624:31563944,6254097:211026 +k1,14624:32583029,6254097:0 +) +(1,14625:6630773,7095585:25952256,513147,126483 +g1,14624:7967707,7095585 +g1,14624:9560887,7095585 +g1,14624:10115976,7095585 +g1,14624:14848330,7095585 +g1,14624:19712412,7095585 +g1,14624:20570933,7095585 +g1,14624:22195570,7095585 +g1,14624:23054091,7095585 +k1,14625:32583029,7095585:8217563 +g1,14625:32583029,7095585 +) +(1,14627:6630773,7937073:25952256,513147,134348 +h1,14626:6630773,7937073:983040,0,0 +k1,14626:9510261,7937073:253460 +k1,14626:11124249,7937073:253461 +k1,14626:12985308,7937073:253461 +k1,14626:14230328,7937073:253460 +k1,14626:17788770,7937073:253461 +k1,14626:21608699,7937073:253460 +k1,14626:22545045,7937073:253461 +k1,14626:25130931,7937073:253460 +k1,14626:26991989,7937073:253460 +k1,14626:29246264,7937073:253461 +k1,14626:30309095,7937073:253461 +k1,14626:30918415,7937073:253460 +k1,14626:32583029,7937073:0 +) +(1,14627:6630773,8778561:25952256,513147,134348 +k1,14626:9070275,8778561:193583 +k1,14626:9923150,8778561:193583 +k1,14626:13854907,8778561:193583 +k1,14626:15280567,8778561:193583 +k1,14626:18083138,8778561:193583 +h1,14626:19625856,8778561:0,0,0 +k1,14626:19819439,8778561:193583 +k1,14626:21204467,8778561:193583 +h1,14626:22747185,8778561:0,0,0 +k1,14626:22940768,8778561:193583 +k1,14626:23943721,8778561:193583 +k1,14626:25965758,8778561:193583 +h1,14626:27161135,8778561:0,0,0 +k1,14626:27354718,8778561:193583 +k1,14626:28739746,8778561:193583 +h1,14626:29935123,8778561:0,0,0 +k1,14626:30302376,8778561:193583 +k1,14627:32583029,8778561:0 +) +(1,14627:6630773,9620049:25952256,513147,134348 +k1,14626:8596057,9620049:236444 +k1,14626:9780153,9620049:236445 +k1,14626:10372457,9620049:236444 +k1,14626:14218625,9620049:236445 +k1,14626:15114361,9620049:236444 +k1,14626:16369891,9620049:236445 +k1,14626:17698820,9620049:236444 +k1,14626:18594556,9620049:236444 +k1,14626:20527728,9620049:236445 +k1,14626:23446561,9620049:236444 +k1,14626:24874451,9620049:236445 +k1,14626:28931644,9620049:236444 +k1,14626:30121638,9620049:236445 +k1,14626:31490544,9620049:236444 +k1,14626:32583029,9620049:0 +) +(1,14627:6630773,10461537:25952256,513147,126483 +k1,14626:8491230,10461537:221402 +k1,14626:9660284,10461537:221403 +k1,14626:12873405,10461537:221402 +k1,14626:15013701,10461537:221402 +k1,14626:16103455,10461537:221402 +k1,14626:17602155,10461537:221403 +k1,14626:19381348,10461537:221402 +k1,14626:21469215,10461537:221402 +k1,14626:22882062,10461537:221402 +k1,14626:25962145,10461537:221403 +k1,14626:27746581,10461537:221402 +k1,14626:31092740,10461537:221402 +k1,14626:32583029,10461537:0 +) +(1,14627:6630773,11303025:25952256,513147,134348 +g1,14626:7886442,11303025 +g1,14626:10340765,11303025 +g1,14626:12654185,11303025 +g1,14626:13650332,11303025 +g1,14626:14264404,11303025 +g1,14626:16238348,11303025 +g1,14626:19017729,11303025 +k1,14627:32583029,11303025:9378206 +g1,14627:32583029,11303025 +) +(1,14629:6630773,12144513:25952256,513147,134348 +h1,14628:6630773,12144513:983040,0,0 +k1,14628:9298803,12144513:196667 +k1,14628:10363823,12144513:196668 +k1,14628:11837787,12144513:196667 +k1,14628:12390315,12144513:196668 +k1,14628:15007882,12144513:196667 +k1,14628:18440718,12144513:196668 +k1,14628:19296677,12144513:196667 +k1,14628:21051136,12144513:196668 +k1,14628:24436785,12144513:196667 +k1,14628:26027404,12144513:196668 +k1,14628:31062594,12144513:196667 +k1,14628:32583029,12144513:0 +) +(1,14629:6630773,12986001:25952256,513147,134348 +k1,14628:7742178,12986001:157856 +k1,14628:8992519,12986001:157856 +(1,14628:8992519,12986001:0,452978,115847 +r1,14628:12516191,12986001:3523672,568825,115847 +k1,14628:8992519,12986001:-3523672 +) +(1,14628:8992519,12986001:3523672,452978,115847 +k1,14628:8992519,12986001:3277 +h1,14628:12512914,12986001:0,411205,112570 +) +k1,14628:12847718,12986001:157857 +k1,14628:14202261,12986001:157856 +k1,14628:16505110,12986001:157856 +k1,14628:19704492,12986001:157856 +k1,14628:20881434,12986001:157857 +k1,14628:23525071,12986001:157856 +k1,14628:24342219,12986001:157856 +k1,14628:27085470,12986001:157856 +k1,14628:29357518,12986001:157857 +k1,14628:30312292,12986001:157856 +k1,14628:30884991,12986001:157856 +k1,14628:32583029,12986001:0 +) +(1,14629:6630773,13827489:25952256,505283,7863 +g1,14628:7849087,13827489 +g1,14628:9606107,13827489 +g1,14628:12664016,13827489 +g1,14628:14070418,13827489 +g1,14628:16279636,13827489 +g1,14628:17930487,13827489 +k1,14629:32583029,13827489:13462408 +g1,14629:32583029,13827489 +) +v1,14631:6630773,15017955:0,393216,0 +(1,14644:6630773,21297196:25952256,6672457,196608 +g1,14644:6630773,21297196 +g1,14644:6630773,21297196 +g1,14644:6434165,21297196 +(1,14644:6434165,21297196:0,6672457,196608 +r1,14644:32779637,21297196:26345472,6869065,196608 +k1,14644:6434165,21297196:-26345472 +) +(1,14644:6434165,21297196:26345472,6672457,196608 +[1,14644:6630773,21297196:25952256,6475849,0 +(1,14633:6630773,15225573:25952256,404226,107478 +(1,14632:6630773,15225573:0,0,0 +g1,14632:6630773,15225573 +g1,14632:6630773,15225573 +g1,14632:6303093,15225573 +(1,14632:6303093,15225573:0,0,0 +) +g1,14632:6630773,15225573 +) +k1,14633:6630773,15225573:0 +g1,14633:13902124,15225573 +g1,14633:20541184,15225573 +g1,14633:20857330,15225573 +h1,14633:21173476,15225573:0,0,0 +k1,14633:32583029,15225573:11409553 +g1,14633:32583029,15225573 +) +(1,14634:6630773,15891751:25952256,404226,101187 +h1,14634:6630773,15891751:0,0,0 +g1,14634:6946919,15891751 +g1,14634:7263065,15891751 +g1,14634:11689104,15891751 +h1,14634:12005250,15891751:0,0,0 +k1,14634:32583030,15891751:20577780 +g1,14634:32583030,15891751 +) +(1,14635:6630773,16557929:25952256,410518,107478 +h1,14635:6630773,16557929:0,0,0 +g1,14635:6946919,16557929 +g1,14635:7263065,16557929 +g1,14635:12005250,16557929 +g1,14635:12637542,16557929 +g1,14635:15482854,16557929 +g1,14635:17063583,16557929 +g1,14635:17695875,16557929 +g1,14635:20857332,16557929 +g1,14635:22438061,16557929 +g1,14635:23070353,16557929 +k1,14635:23070353,16557929:0 +h1,14635:24967227,16557929:0,0,0 +k1,14635:32583029,16557929:7615802 +g1,14635:32583029,16557929 +) +(1,14636:6630773,17224107:25952256,404226,82312 +h1,14636:6630773,17224107:0,0,0 +g1,14636:6946919,17224107 +g1,14636:7263065,17224107 +g1,14636:7579211,17224107 +g1,14636:7895357,17224107 +g1,14636:8211503,17224107 +g1,14636:8527649,17224107 +g1,14636:8843795,17224107 +g1,14636:9159941,17224107 +g1,14636:9476087,17224107 +g1,14636:9792233,17224107 +g1,14636:10108379,17224107 +g1,14636:12953690,17224107 +g1,14636:13585982,17224107 +g1,14636:14850565,17224107 +g1,14636:16747439,17224107 +g1,14636:17379731,17224107 +g1,14636:19276606,17224107 +h1,14636:19592752,17224107:0,0,0 +k1,14636:32583029,17224107:12990277 +g1,14636:32583029,17224107 +) +(1,14637:6630773,17890285:25952256,404226,101187 +h1,14637:6630773,17890285:0,0,0 +g1,14637:6946919,17890285 +g1,14637:7263065,17890285 +g1,14637:14850562,17890285 +g1,14637:15482854,17890285 +g1,14637:19592748,17890285 +h1,14637:19908894,17890285:0,0,0 +k1,14637:32583029,17890285:12674135 +g1,14637:32583029,17890285 +) +(1,14638:6630773,18556463:25952256,404226,82312 +h1,14638:6630773,18556463:0,0,0 +g1,14638:6946919,18556463 +g1,14638:7263065,18556463 +g1,14638:15482853,18556463 +g1,14638:16115145,18556463 +g1,14638:17695875,18556463 +g1,14638:18960458,18556463 +g1,14638:20541187,18556463 +k1,14638:20541187,18556463:0 +h1,14638:22121916,18556463:0,0,0 +k1,14638:32583029,18556463:10461113 +g1,14638:32583029,18556463 +) +(1,14639:6630773,19222641:25952256,404226,82312 +h1,14639:6630773,19222641:0,0,0 +g1,14639:6946919,19222641 +g1,14639:7263065,19222641 +g1,14639:7579211,19222641 +g1,14639:7895357,19222641 +g1,14639:8211503,19222641 +g1,14639:8527649,19222641 +g1,14639:8843795,19222641 +g1,14639:9159941,19222641 +g1,14639:9476087,19222641 +g1,14639:9792233,19222641 +g1,14639:10108379,19222641 +g1,14639:10424525,19222641 +g1,14639:10740671,19222641 +g1,14639:11056817,19222641 +g1,14639:11372963,19222641 +g1,14639:11689109,19222641 +g1,14639:12005255,19222641 +g1,14639:12321401,19222641 +g1,14639:12637547,19222641 +g1,14639:12953693,19222641 +g1,14639:13269839,19222641 +g1,14639:15482859,19222641 +g1,14639:16115151,19222641 +g1,14639:18328172,19222641 +g1,14639:19908901,19222641 +g1,14639:21489630,19222641 +k1,14639:21489630,19222641:0 +h1,14639:23070359,19222641:0,0,0 +k1,14639:32583029,19222641:9512670 +g1,14639:32583029,19222641 +) +(1,14640:6630773,19888819:25952256,404226,82312 +h1,14640:6630773,19888819:0,0,0 +g1,14640:6946919,19888819 +g1,14640:7263065,19888819 +g1,14640:7579211,19888819 +g1,14640:7895357,19888819 +g1,14640:8211503,19888819 +g1,14640:8527649,19888819 +g1,14640:8843795,19888819 +g1,14640:9159941,19888819 +g1,14640:9476087,19888819 +g1,14640:9792233,19888819 +g1,14640:10108379,19888819 +g1,14640:10424525,19888819 +g1,14640:10740671,19888819 +g1,14640:11056817,19888819 +g1,14640:11372963,19888819 +g1,14640:11689109,19888819 +g1,14640:12005255,19888819 +g1,14640:12321401,19888819 +g1,14640:12637547,19888819 +g1,14640:12953693,19888819 +g1,14640:13269839,19888819 +g1,14640:15482859,19888819 +g1,14640:16115151,19888819 +g1,14640:17695881,19888819 +k1,14640:17695881,19888819:0 +h1,14640:19276610,19888819:0,0,0 +k1,14640:32583029,19888819:13306419 +g1,14640:32583029,19888819 +) +(1,14641:6630773,20554997:25952256,404226,101187 +h1,14641:6630773,20554997:0,0,0 +g1,14641:6946919,20554997 +g1,14641:7263065,20554997 +g1,14641:7579211,20554997 +g1,14641:7895357,20554997 +g1,14641:8211503,20554997 +g1,14641:8527649,20554997 +g1,14641:8843795,20554997 +g1,14641:9159941,20554997 +g1,14641:9476087,20554997 +g1,14641:9792233,20554997 +g1,14641:10108379,20554997 +g1,14641:10424525,20554997 +g1,14641:10740671,20554997 +g1,14641:11056817,20554997 +g1,14641:11372963,20554997 +g1,14641:11689109,20554997 +g1,14641:12005255,20554997 +g1,14641:12321401,20554997 +g1,14641:12637547,20554997 +g1,14641:12953693,20554997 +g1,14641:13269839,20554997 +g1,14641:15482859,20554997 +g1,14641:16115151,20554997 +g1,14641:17695881,20554997 +k1,14641:17695881,20554997:0 +h1,14641:18644319,20554997:0,0,0 +k1,14641:32583029,20554997:13938710 +g1,14641:32583029,20554997 +) +(1,14642:6630773,21221175:25952256,404226,76021 +h1,14642:6630773,21221175:0,0,0 +g1,14642:6946919,21221175 +g1,14642:7263065,21221175 +g1,14642:7579211,21221175 +g1,14642:7895357,21221175 +g1,14642:8211503,21221175 +g1,14642:8527649,21221175 +g1,14642:8843795,21221175 +g1,14642:9159941,21221175 +g1,14642:9476087,21221175 +g1,14642:9792233,21221175 +g1,14642:10108379,21221175 +g1,14642:10424525,21221175 +g1,14642:10740671,21221175 +g1,14642:11056817,21221175 +g1,14642:11372963,21221175 +g1,14642:11689109,21221175 +g1,14642:12005255,21221175 +g1,14642:12321401,21221175 +g1,14642:12637547,21221175 +g1,14642:12953693,21221175 +g1,14642:13269839,21221175 +g1,14642:14850568,21221175 +g1,14642:15482860,21221175 +g1,14642:17379734,21221175 +h1,14642:20857337,21221175:0,0,0 +k1,14642:32583029,21221175:11725692 +g1,14642:32583029,21221175 +) +] +) +g1,14644:32583029,21297196 +g1,14644:6630773,21297196 +g1,14644:6630773,21297196 +g1,14644:32583029,21297196 +g1,14644:32583029,21297196 +) +h1,14644:6630773,21493804:0,0,0 +(1,14647:6630773,31146317:25952256,9062689,0 +k1,14647:10523651,31146317:3892878 +h1,14646:10523651,31146317:0,0,0 +(1,14646:10523651,31146317:18166500,9062689,0 +(1,14646:10523651,31146317:18167381,9062712,0 +(1,14646:10523651,31146317:18167381,9062712,0 +(1,14646:10523651,31146317:0,9062712,0 +(1,14646:10523651,31146317:0,14155776,0 +(1,14646:10523651,31146317:28377088,14155776,0 +) +k1,14646:10523651,31146317:-28377088 +) +) +g1,14646:28691032,31146317 +) +) +) +g1,14647:28690151,31146317 +k1,14647:32583029,31146317:3892878 +) +(1,14655:6630773,31987805:25952256,505283,134348 +h1,14654:6630773,31987805:983040,0,0 +k1,14654:9231062,31987805:575227 +k1,14654:10576993,31987805:575228 +k1,14654:14457201,31987805:575227 +k1,14654:16483396,31987805:575228 +k1,14654:18794016,31987805:575227 +k1,14654:20139947,31987805:575228 +k1,14654:23688542,31987805:575227 +k1,14654:26769867,31987805:575228 +k1,14654:28213446,31987805:575227 +k1,14654:30263889,31987805:575228 +k1,14654:31490544,31987805:575227 +k1,14655:32583029,31987805:0 +) +(1,14655:6630773,32829293:25952256,513147,134348 +(1,14654:6630773,32829293:0,452978,115847 +r1,14654:11561293,32829293:4930520,568825,115847 +k1,14654:6630773,32829293:-4930520 +) +(1,14654:6630773,32829293:4930520,452978,115847 +k1,14654:6630773,32829293:3277 +h1,14654:11558016,32829293:0,411205,112570 +) +g1,14654:11760522,32829293 +g1,14654:14286934,32829293 +g1,14654:15153319,32829293 +(1,14654:15153319,32829293:0,452978,115847 +r1,14654:18676991,32829293:3523672,568825,115847 +k1,14654:15153319,32829293:-3523672 +) +(1,14654:15153319,32829293:3523672,452978,115847 +k1,14654:15153319,32829293:3277 +h1,14654:18673714,32829293:0,411205,112570 +) +g1,14654:18876220,32829293 +g1,14654:20266894,32829293 +g1,14654:22706799,32829293 +g1,14654:23925113,32829293 +(1,14654:23925113,32829293:0,414482,115847 +r1,14654:25338514,32829293:1413401,530329,115847 +k1,14654:23925113,32829293:-1413401 +) +(1,14654:23925113,32829293:1413401,414482,115847 +k1,14654:23925113,32829293:3277 +h1,14654:25335237,32829293:0,411205,112570 +) +g1,14654:25537743,32829293 +g1,14654:26396264,32829293 +g1,14654:27614578,32829293 +(1,14654:27614578,32829293:0,414482,115847 +r1,14654:27972844,32829293:358266,530329,115847 +k1,14654:27614578,32829293:-358266 +) +(1,14654:27614578,32829293:358266,414482,115847 +k1,14654:27614578,32829293:3277 +h1,14654:27969567,32829293:0,411205,112570 +) +g1,14654:28172073,32829293 +k1,14655:32583029,32829293:2665077 +g1,14655:32583029,32829293 +) +v1,14657:6630773,34019759:0,393216,0 +(1,14660:6630773,35007325:25952256,1380782,196608 +g1,14660:6630773,35007325 +g1,14660:6630773,35007325 +g1,14660:6434165,35007325 +(1,14660:6434165,35007325:0,1380782,196608 +r1,14660:32779637,35007325:26345472,1577390,196608 +k1,14660:6434165,35007325:-26345472 +) +(1,14660:6434165,35007325:26345472,1380782,196608 +[1,14660:6630773,35007325:25952256,1184174,0 +(1,14660:6630773,34233669:25952256,410518,107478 +k1,14660:7840448,34233669:577384 +k1,14660:10630852,34233669:577384 +k1,14660:11840527,34233669:577384 +k1,14660:17476242,34233669:577384 +k1,14660:18369772,34233669:577384 +k1,14660:21476321,34233669:577384 +k1,14660:24582870,34233669:577384 +k1,14660:26740982,34233669:577384 +k1,14660:27634512,34233669:577384 +k1,14660:30424916,34233669:577384 +k1,14660:32266883,34233669:577384 +k1,14660:32583029,34233669:0 +) +(1,14660:6630773,34899847:25952256,410518,107478 +g1,14660:11056813,34899847 +g1,14660:13269833,34899847 +g1,14660:15482853,34899847 +g1,14660:17695873,34899847 +g1,14660:18644310,34899847 +g1,14660:19908893,34899847 +g1,14660:20541185,34899847 +g1,14660:23386496,34899847 +g1,14660:24334933,34899847 +g1,14660:26864099,34899847 +g1,14660:29077119,34899847 +k1,14660:32583029,34899847:1609036 +g1,14660:32583029,34899847 +) +] +) +g1,14660:32583029,35007325 +g1,14660:6630773,35007325 +g1,14660:6630773,35007325 +g1,14660:32583029,35007325 +g1,14660:32583029,35007325 +) +h1,14660:6630773,35203933:0,0,0 +(1,14663:6630773,44856446:25952256,9062689,0 +k1,14663:10523651,44856446:3892878 +h1,14662:10523651,44856446:0,0,0 +(1,14662:10523651,44856446:18166500,9062689,0 +(1,14662:10523651,44856446:18167381,9062712,0 +(1,14662:10523651,44856446:18167381,9062712,0 +(1,14662:10523651,44856446:0,9062712,0 +(1,14662:10523651,44856446:0,14155776,0 +(1,14662:10523651,44856446:28377088,14155776,0 +) +k1,14662:10523651,44856446:-28377088 +) +) +g1,14662:28691032,44856446 +) +) +) +g1,14663:28690151,44856446 +k1,14663:32583029,44856446:3892878 +) +(1,14671:6630773,45697934:25952256,513147,126483 +h1,14670:6630773,45697934:983040,0,0 +k1,14670:8665466,45697934:233764 +k1,14670:9918316,45697934:233765 +k1,14670:11558483,45697934:233764 +k1,14670:14923558,45697934:233765 +k1,14670:16434619,45697934:233764 +k1,14670:19503471,45697934:233765 +k1,14670:20605587,45697934:233764 +k1,14670:21654620,45697934:233765 +k1,14670:22790124,45697934:233729 +k1,14670:25356315,45697934:233765 +k1,14670:26867376,45697934:233764 +k1,14670:28495092,45697934:233765 +k1,14670:30617604,45697934:233764 +k1,14670:32583029,45697934:0 +) +] +(1,14671:32583029,45706769:0,0,0 +g1,14671:32583029,45706769 +) +) +] +(1,14671:6630773,47279633:25952256,0,0 +h1,14671:6630773,47279633:25952256,0,0 +) +] +h1,14671:4262630,4025873:0,0,0 +] +!19706 +}283 +Input:2217:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2218:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 +{284 +[1,14739:4262630,47279633:28320399,43253760,0 +(1,14739:4262630,4025873:0,0,0 +[1,14739:-473657,4025873:25952256,0,0 +(1,14739:-473657,-710414:25952256,0,0 +h1,14739:-473657,-710414:0,0,0 +(1,14739:-473657,-710414:0,0,0 +(1,14739:-473657,-710414:0,0,0 +g1,14739:-473657,-710414 +(1,14739:-473657,-710414:65781,0,65781 +g1,14739:-407876,-710414 +[1,14739:-407876,-644633:0,0,0 ] ) -k1,14708:-473657,-710414:-65781 +k1,14739:-473657,-710414:-65781 ) ) -k1,14708:25478599,-710414:25952256 -g1,14708:25478599,-710414 +k1,14739:25478599,-710414:25952256 +g1,14739:25478599,-710414 ) ] ) -[1,14708:6630773,47279633:25952256,43253760,0 -[1,14708:6630773,4812305:25952256,786432,0 -(1,14708:6630773,4812305:25952256,513147,134348 -(1,14708:6630773,4812305:25952256,513147,134348 -g1,14708:3078558,4812305 -[1,14708:3078558,4812305:0,0,0 -(1,14708:3078558,2439708:0,1703936,0 -k1,14708:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14708:2537886,2439708:1179648,16384,0 +[1,14739:6630773,47279633:25952256,43253760,0 +[1,14739:6630773,4812305:25952256,786432,0 +(1,14739:6630773,4812305:25952256,505283,126483 +(1,14739:6630773,4812305:25952256,505283,126483 +g1,14739:3078558,4812305 +[1,14739:3078558,4812305:0,0,0 +(1,14739:3078558,2439708:0,1703936,0 +k1,14739:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14739:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14708:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14739:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14708:3078558,4812305:0,0,0 -(1,14708:3078558,2439708:0,1703936,0 -g1,14708:29030814,2439708 -g1,14708:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14708:36151628,1915420:16384,1179648,0 +[1,14739:3078558,4812305:0,0,0 +(1,14739:3078558,2439708:0,1703936,0 +g1,14739:29030814,2439708 +g1,14739:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14739:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14708:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14739:37855564,2439708:1179648,16384,0 ) ) -k1,14708:3078556,2439708:-34777008 +k1,14739:3078556,2439708:-34777008 ) ] -[1,14708:3078558,4812305:0,0,0 -(1,14708:3078558,49800853:0,16384,2228224 -k1,14708:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14708:2537886,49800853:1179648,16384,0 +[1,14739:3078558,4812305:0,0,0 +(1,14739:3078558,49800853:0,16384,2228224 +k1,14739:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14739:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14708:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14739:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14708:3078558,4812305:0,0,0 -(1,14708:3078558,49800853:0,16384,2228224 -g1,14708:29030814,49800853 -g1,14708:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14708:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14708:37855564,49800853:1179648,16384,0 -) -) -k1,14708:3078556,49800853:-34777008 +[1,14739:3078558,4812305:0,0,0 +(1,14739:3078558,49800853:0,16384,2228224 +g1,14739:29030814,49800853 +g1,14739:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14739:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] -g1,14708:6630773,4812305 -k1,14708:25712890,4812305:17886740 -g1,14708:29057847,4812305 -g1,14708:29873114,4812305 -) -) -] -[1,14708:6630773,45706769:25952256,40108032,0 -(1,14708:6630773,45706769:25952256,40108032,0 -(1,14708:6630773,45706769:0,0,0 -g1,14708:6630773,45706769 ) -[1,14708:6630773,45706769:25952256,40108032,0 -(1,14640:6630773,6254097:25952256,505283,138281 -k1,14639:8094646,6254097:272428 -k1,14639:10737511,6254097:272428 -k1,14639:12029024,6254097:272428 -k1,14639:14312752,6254097:272428 -$1,14639:14519846,6254097 -$1,14639:15071659,6254097 -k1,14639:15344087,6254097:272428 -k1,14639:18610855,6254097:272428 -k1,14639:19534710,6254097:272427 -k1,14639:22848664,6254097:272428 -k1,14639:24678883,6254097:272428 -k1,14639:27148078,6254097:272428 -k1,14639:28611951,6254097:272428 -k1,14639:29903464,6254097:272428 -k1,14639:31873274,6254097:272428 -$1,14639:32080368,6254097 -$1,14639:32583029,6254097 -k1,14640:32583029,6254097:0 -) -(1,14640:6630773,7095585:25952256,505283,126483 -g1,14639:9824342,7095585 -g1,14639:10674999,7095585 -g1,14639:13915754,7095585 -g1,14639:15672774,7095585 -k1,14640:32583029,7095585:13877904 -g1,14640:32583029,7095585 -) -v1,14642:6630773,8286051:0,393216,0 -(1,14646:6630773,8607439:25952256,714604,196608 -g1,14646:6630773,8607439 -g1,14646:6630773,8607439 -g1,14646:6434165,8607439 -(1,14646:6434165,8607439:0,714604,196608 -r1,14646:32779637,8607439:26345472,911212,196608 -k1,14646:6434165,8607439:-26345472 -) -(1,14646:6434165,8607439:26345472,714604,196608 -[1,14646:6630773,8607439:25952256,517996,0 -(1,14644:6630773,8499961:25952256,410518,107478 -(1,14643:6630773,8499961:0,0,0 -g1,14643:6630773,8499961 -g1,14643:6630773,8499961 -g1,14643:6303093,8499961 -(1,14643:6303093,8499961:0,0,0 -) -g1,14643:6630773,8499961 -) -k1,14644:6630773,8499961:0 -h1,14644:17379727,8499961:0,0,0 -k1,14644:32583029,8499961:15203302 -g1,14644:32583029,8499961 -) -] -) -g1,14646:32583029,8607439 -g1,14646:6630773,8607439 -g1,14646:6630773,8607439 -g1,14646:32583029,8607439 -g1,14646:32583029,8607439 -) -h1,14646:6630773,8804047:0,0,0 -v1,14650:6630773,10518801:0,393216,0 -(1,14663:6630773,16823208:25952256,6697623,196608 -g1,14663:6630773,16823208 -g1,14663:6630773,16823208 -g1,14663:6434165,16823208 -(1,14663:6434165,16823208:0,6697623,196608 -r1,14663:32779637,16823208:26345472,6894231,196608 -k1,14663:6434165,16823208:-26345472 -) -(1,14663:6434165,16823208:26345472,6697623,196608 -[1,14663:6630773,16823208:25952256,6501015,0 -(1,14652:6630773,10726419:25952256,404226,107478 -(1,14651:6630773,10726419:0,0,0 -g1,14651:6630773,10726419 -g1,14651:6630773,10726419 -g1,14651:6303093,10726419 -(1,14651:6303093,10726419:0,0,0 -) -g1,14651:6630773,10726419 -) -k1,14652:6630773,10726419:0 -g1,14652:13902124,10726419 -g1,14652:20225038,10726419 -g1,14652:25283369,10726419 -h1,14652:25599515,10726419:0,0,0 -k1,14652:32583029,10726419:6983514 -g1,14652:32583029,10726419 -) -(1,14653:6630773,11392597:25952256,404226,101187 -h1,14653:6630773,11392597:0,0,0 -g1,14653:6946919,11392597 -g1,14653:7263065,11392597 -g1,14653:11689104,11392597 -h1,14653:12005250,11392597:0,0,0 -k1,14653:32583030,11392597:20577780 -g1,14653:32583030,11392597 -) -(1,14654:6630773,12058775:25952256,410518,107478 -h1,14654:6630773,12058775:0,0,0 -g1,14654:6946919,12058775 -g1,14654:7263065,12058775 -g1,14654:15166708,12058775 -g1,14654:15799000,12058775 -g1,14654:20225040,12058775 -g1,14654:21805769,12058775 -g1,14654:22438061,12058775 -g1,14654:25915664,12058775 -h1,14654:26231810,12058775:0,0,0 -k1,14654:32583029,12058775:6351219 -g1,14654:32583029,12058775 -) -(1,14655:6630773,12724953:25952256,404226,82312 -h1,14655:6630773,12724953:0,0,0 -g1,14655:6946919,12724953 -g1,14655:7263065,12724953 -g1,14655:15482853,12724953 -g1,14655:16115145,12724953 -g1,14655:17695875,12724953 -g1,14655:18960458,12724953 -g1,14655:20541187,12724953 -k1,14655:20541187,12724953:0 -h1,14655:22121916,12724953:0,0,0 -k1,14655:32583029,12724953:10461113 -g1,14655:32583029,12724953 -) -(1,14656:6630773,13391131:25952256,404226,82312 -h1,14656:6630773,13391131:0,0,0 -g1,14656:6946919,13391131 -g1,14656:7263065,13391131 -g1,14656:7579211,13391131 -g1,14656:7895357,13391131 -g1,14656:8211503,13391131 -g1,14656:8527649,13391131 -g1,14656:8843795,13391131 -g1,14656:9159941,13391131 -g1,14656:9476087,13391131 -g1,14656:9792233,13391131 -g1,14656:10108379,13391131 -g1,14656:10424525,13391131 -g1,14656:10740671,13391131 -g1,14656:11056817,13391131 -g1,14656:11372963,13391131 -g1,14656:11689109,13391131 -g1,14656:12005255,13391131 -g1,14656:12321401,13391131 -g1,14656:12637547,13391131 -g1,14656:12953693,13391131 -g1,14656:13269839,13391131 -g1,14656:15482859,13391131 -g1,14656:16115151,13391131 -g1,14656:18328172,13391131 -g1,14656:19908901,13391131 -g1,14656:21489630,13391131 -k1,14656:21489630,13391131:0 -h1,14656:23070359,13391131:0,0,0 -k1,14656:32583029,13391131:9512670 -g1,14656:32583029,13391131 -) -(1,14657:6630773,14057309:25952256,404226,82312 -h1,14657:6630773,14057309:0,0,0 -g1,14657:6946919,14057309 -g1,14657:7263065,14057309 -g1,14657:7579211,14057309 -g1,14657:7895357,14057309 -g1,14657:8211503,14057309 -g1,14657:8527649,14057309 -g1,14657:8843795,14057309 -g1,14657:9159941,14057309 -g1,14657:9476087,14057309 -g1,14657:9792233,14057309 -g1,14657:10108379,14057309 -g1,14657:10424525,14057309 -g1,14657:10740671,14057309 -g1,14657:11056817,14057309 -g1,14657:11372963,14057309 -g1,14657:11689109,14057309 -g1,14657:12005255,14057309 -g1,14657:12321401,14057309 -g1,14657:12637547,14057309 -g1,14657:12953693,14057309 -g1,14657:13269839,14057309 -g1,14657:15482859,14057309 -g1,14657:16115151,14057309 -g1,14657:17695881,14057309 -k1,14657:17695881,14057309:0 -h1,14657:19276610,14057309:0,0,0 -k1,14657:32583029,14057309:13306419 -g1,14657:32583029,14057309 -) -(1,14658:6630773,14723487:25952256,404226,101187 -h1,14658:6630773,14723487:0,0,0 -g1,14658:6946919,14723487 -g1,14658:7263065,14723487 -g1,14658:7579211,14723487 -g1,14658:7895357,14723487 -g1,14658:8211503,14723487 -g1,14658:8527649,14723487 -g1,14658:8843795,14723487 -g1,14658:9159941,14723487 -g1,14658:9476087,14723487 -g1,14658:9792233,14723487 -g1,14658:10108379,14723487 -g1,14658:10424525,14723487 -g1,14658:10740671,14723487 -g1,14658:11056817,14723487 -g1,14658:11372963,14723487 -g1,14658:11689109,14723487 -g1,14658:12005255,14723487 -g1,14658:12321401,14723487 -g1,14658:12637547,14723487 -g1,14658:12953693,14723487 -g1,14658:13269839,14723487 -g1,14658:15482859,14723487 -g1,14658:16115151,14723487 -g1,14658:17695881,14723487 -k1,14658:17695881,14723487:0 -h1,14658:18644319,14723487:0,0,0 -k1,14658:32583029,14723487:13938710 -g1,14658:32583029,14723487 -) -(1,14659:6630773,15389665:25952256,404226,76021 -h1,14659:6630773,15389665:0,0,0 -g1,14659:6946919,15389665 -g1,14659:7263065,15389665 -g1,14659:7579211,15389665 -g1,14659:7895357,15389665 -g1,14659:8211503,15389665 -g1,14659:8527649,15389665 -g1,14659:8843795,15389665 -g1,14659:9159941,15389665 -g1,14659:9476087,15389665 -g1,14659:9792233,15389665 -g1,14659:10108379,15389665 -g1,14659:10424525,15389665 -g1,14659:10740671,15389665 -g1,14659:11056817,15389665 -g1,14659:11372963,15389665 -g1,14659:11689109,15389665 -g1,14659:12005255,15389665 -g1,14659:12321401,15389665 -g1,14659:12637547,15389665 -g1,14659:12953693,15389665 -g1,14659:13269839,15389665 -g1,14659:14850568,15389665 -g1,14659:15482860,15389665 -g1,14659:17379734,15389665 -g1,14659:21173483,15389665 -h1,14659:21489629,15389665:0,0,0 -k1,14659:32583029,15389665:11093400 -g1,14659:32583029,15389665 -) -(1,14660:6630773,16055843:25952256,404226,101187 -h1,14660:6630773,16055843:0,0,0 -g1,14660:6946919,16055843 -g1,14660:7263065,16055843 -g1,14660:14850562,16055843 -g1,14660:15482854,16055843 -g1,14660:17379728,16055843 -g1,14660:19276602,16055843 -g1,14660:21805768,16055843 -h1,14660:22121914,16055843:0,0,0 -k1,14660:32583029,16055843:10461115 -g1,14660:32583029,16055843 -) -(1,14661:6630773,16722021:25952256,410518,101187 -h1,14661:6630773,16722021:0,0,0 -g1,14661:6946919,16722021 -g1,14661:7263065,16722021 -g1,14661:20857331,16722021 -g1,14661:21489623,16722021 -g1,14661:22754206,16722021 -g1,14661:24651081,16722021 -h1,14661:26864101,16722021:0,0,0 -k1,14661:32583029,16722021:5718928 -g1,14661:32583029,16722021 -) -] -) -g1,14663:32583029,16823208 -g1,14663:6630773,16823208 -g1,14663:6630773,16823208 -g1,14663:32583029,16823208 -g1,14663:32583029,16823208 -) -h1,14663:6630773,17019816:0,0,0 -(1,14666:6630773,26338394:25952256,8728754,0 -k1,14666:7928465,26338394:1297692 -h1,14665:7928465,26338394:0,0,0 -(1,14665:7928465,26338394:23356872,8728754,0 -(1,14665:7928465,26338394:23357558,8728776,0 -(1,14665:7928465,26338394:23357558,8728776,0 -(1,14665:7928465,26338394:0,8728776,0 -(1,14665:7928465,26338394:0,14155776,0 -(1,14665:7928465,26338394:37879808,14155776,0 -) -k1,14665:7928465,26338394:-37879808 -) -) -g1,14665:31286023,26338394 -) -) -) -g1,14666:31285337,26338394 -k1,14666:32583029,26338394:1297692 -) -(1,14675:6630773,28429654:25952256,555811,12975 -(1,14675:6630773,28429654:2450326,534184,12975 -g1,14675:6630773,28429654 -g1,14675:9081099,28429654 -) -g1,14675:10388084,28429654 -k1,14675:32583029,28429654:19941424 -g1,14675:32583029,28429654 -) -v1,14679:6630773,30188646:0,393216,0 -(1,14680:6630773,34997304:25952256,5201874,616038 -g1,14680:6630773,34997304 -(1,14680:6630773,34997304:25952256,5201874,616038 -(1,14680:6630773,35613342:25952256,5817912,0 -[1,14680:6630773,35613342:25952256,5817912,0 -(1,14680:6630773,35587128:25952256,5765484,0 -r1,14680:6656987,35587128:26214,5765484,0 -[1,14680:6656987,35587128:25899828,5765484,0 -(1,14680:6656987,34997304:25899828,4585836,0 -[1,14680:7246811,34997304:24720180,4585836,0 -(1,14680:7246811,31497004:24720180,1085536,298548 -(1,14679:7246811,31497004:0,1085536,298548 -r1,14680:8753226,31497004:1506415,1384084,298548 -k1,14679:7246811,31497004:-1506415 -) -(1,14679:7246811,31497004:1506415,1085536,298548 -) -k1,14679:9012113,31497004:258887 -k1,14679:10195058,31497004:258887 -k1,14679:12433788,31497004:258887 -k1,14679:13684234,31497004:258886 -k1,14679:15593318,31497004:258887 -k1,14679:18336020,31497004:258887 -k1,14679:19246335,31497004:258887 -k1,14679:20917523,31497004:258887 -k1,14679:22618857,31497004:258887 -k1,14679:23922388,31497004:258887 -k1,14679:26161117,31497004:258886 -k1,14679:28949694,31497004:258887 -k1,14679:30306309,31497004:258887 -k1,14679:31966991,31497004:0 -) -(1,14680:7246811,32338492:24720180,513147,134348 -k1,14679:7999114,32338492:220806 -k1,14679:10117187,32338492:220806 -k1,14679:10950755,32338492:220806 -k1,14679:14574846,32338492:220806 -k1,14679:17139219,32338492:220806 -k1,14679:18802472,32338492:220806 -k1,14679:21224631,32338492:220805 -k1,14679:21923194,32338492:220806 -k1,14679:23830897,32338492:220806 -k1,14679:25020980,32338492:220806 -k1,14679:27221629,32338492:220806 -k1,14679:29622818,32338492:220806 -k1,14679:31219225,32338492:220806 -k1,14679:31966991,32338492:0 -) -(1,14680:7246811,33179980:24720180,513147,126483 -k1,14679:8950948,33179980:190911 -k1,14679:9793288,33179980:190912 -k1,14679:11644881,33179980:190911 -k1,14679:15971770,33179980:190912 -k1,14679:16845566,33179980:190911 -k1,14679:20107494,33179980:190911 -k1,14679:24225979,33179980:190912 -k1,14679:25701396,33179980:190911 -k1,14679:27089650,33179980:190911 -k1,14679:28116146,33179980:190912 -k1,14679:28958485,33179980:190911 -k1,14679:29505257,33179980:190912 -k1,14679:31339156,33179980:190911 -k1,14679:31966991,33179980:0 -) -(1,14680:7246811,34021468:24720180,513147,126483 -k1,14679:8629533,34021468:179481 -k1,14679:10349766,34021468:179482 -k1,14679:12042473,34021468:179481 -k1,14679:13597555,34021468:179481 -k1,14679:14242997,34021468:179481 -k1,14679:15441564,34021468:179482 -k1,14679:18106826,34021468:179481 -k1,14679:18945599,34021468:179481 -k1,14679:20394512,34021468:179481 -k1,14679:22621994,34021468:179482 -k1,14679:23332972,34021468:179481 -k1,14679:25228841,34021468:179481 -k1,14679:26871086,34021468:179481 -k1,14679:27709860,34021468:179482 -k1,14679:30169994,34021468:179481 -k1,14679:31966991,34021468:0 -) -(1,14680:7246811,34862956:24720180,505283,134348 -g1,14679:8058802,34862956 -g1,14679:10240495,34862956 -g1,14679:13110316,34862956 -g1,14679:13925583,34862956 -g1,14679:16631564,34862956 -g1,14679:18210981,34862956 -g1,14679:19401770,34862956 -g1,14679:20935967,34862956 -k1,14680:31966991,34862956:8359777 -g1,14680:31966991,34862956 -) -] -) -] -r1,14680:32583029,35587128:26214,5765484,0 -) -] -) -) -g1,14680:32583029,34997304 -) -h1,14680:6630773,35613342:0,0,0 -(1,14683:6630773,36979118:25952256,513147,122846 -k1,14682:7671515,36979118:222853 -k1,14682:8762720,36979118:222853 -k1,14682:10078058,36979118:222853 -(1,14682:10078058,36979118:0,452978,122846 -r1,14682:13601730,36979118:3523672,575824,122846 -k1,14682:10078058,36979118:-3523672 -) -(1,14682:10078058,36979118:3523672,452978,122846 -k1,14682:10078058,36979118:3277 -h1,14682:13598453,36979118:0,411205,112570 -) -k1,14682:13824583,36979118:222853 -k1,14682:15932907,36979118:222853 -k1,14682:18751641,36979118:222853 -k1,14682:19625921,36979118:222852 -k1,14682:20941259,36979118:222853 -(1,14682:20941259,36979118:0,414482,115847 -r1,14682:24464931,36979118:3523672,530329,115847 -k1,14682:20941259,36979118:-3523672 -) -(1,14682:20941259,36979118:3523672,414482,115847 -k1,14682:20941259,36979118:3277 -h1,14682:24461654,36979118:0,411205,112570 -) -k1,14682:24861454,36979118:222853 -k1,14682:26037856,36979118:222853 -k1,14682:27353194,36979118:222853 -k1,14682:28595132,36979118:222853 -k1,14682:31010820,36979118:222853 -k1,14682:32583029,36979118:0 -) -(1,14683:6630773,37820606:25952256,513147,7863 -g1,14682:7777653,37820606 -g1,14682:9273840,37820606 -k1,14683:32583030,37820606:21189100 -g1,14683:32583030,37820606 -) -v1,14685:6630773,39011072:0,393216,0 -(1,14694:6630773,42638184:25952256,4020328,196608 -g1,14694:6630773,42638184 -g1,14694:6630773,42638184 -g1,14694:6434165,42638184 -(1,14694:6434165,42638184:0,4020328,196608 -r1,14694:32779637,42638184:26345472,4216936,196608 -k1,14694:6434165,42638184:-26345472 -) -(1,14694:6434165,42638184:26345472,4020328,196608 -[1,14694:6630773,42638184:25952256,3823720,0 -(1,14687:6630773,39224982:25952256,410518,107478 -(1,14686:6630773,39224982:0,0,0 -g1,14686:6630773,39224982 -g1,14686:6630773,39224982 -g1,14686:6303093,39224982 -(1,14686:6303093,39224982:0,0,0 -) -g1,14686:6630773,39224982 -) -k1,14687:6630773,39224982:0 -g1,14687:10424522,39224982 -g1,14687:11056814,39224982 -g1,14687:12637543,39224982 -g1,14687:14534418,39224982 -g1,14687:15166710,39224982 -g1,14687:18644314,39224982 -g1,14687:20225043,39224982 -g1,14687:20857335,39224982 -g1,14687:25915666,39224982 -h1,14687:26231812,39224982:0,0,0 -k1,14687:32583029,39224982:6351217 -g1,14687:32583029,39224982 -) -(1,14688:6630773,39891160:25952256,404226,107478 -h1,14688:6630773,39891160:0,0,0 -g1,14688:6946919,39891160 -g1,14688:7263065,39891160 -g1,14688:12005250,39891160 -g1,14688:12637542,39891160 -g1,14688:13585980,39891160 -g1,14688:15482854,39891160 -g1,14688:16115146,39891160 -g1,14688:18960458,39891160 -h1,14688:19276604,39891160:0,0,0 -k1,14688:32583029,39891160:13306425 -g1,14688:32583029,39891160 -) -(1,14689:6630773,40557338:25952256,404226,101187 -h1,14689:6630773,40557338:0,0,0 -g1,14689:6946919,40557338 -g1,14689:7263065,40557338 -g1,14689:12953687,40557338 -g1,14689:13585979,40557338 -g1,14689:15166708,40557338 -h1,14689:15482854,40557338:0,0,0 -k1,14689:32583030,40557338:17100176 -g1,14689:32583030,40557338 -) -(1,14690:6630773,41223516:25952256,410518,76021 -h1,14690:6630773,41223516:0,0,0 -g1,14690:6946919,41223516 -g1,14690:7263065,41223516 -g1,14690:13585979,41223516 -h1,14690:13902125,41223516:0,0,0 -k1,14690:32583029,41223516:18680904 -g1,14690:32583029,41223516 -) -(1,14691:6630773,41889694:25952256,404226,76021 -h1,14691:6630773,41889694:0,0,0 -g1,14691:6946919,41889694 -g1,14691:7263065,41889694 -g1,14691:14850562,41889694 -g1,14691:15482854,41889694 -g1,14691:17379729,41889694 -h1,14691:17695875,41889694:0,0,0 -k1,14691:32583029,41889694:14887154 -g1,14691:32583029,41889694 -) -(1,14692:6630773,42555872:25952256,410518,82312 -h1,14692:6630773,42555872:0,0,0 -g1,14692:6946919,42555872 -g1,14692:7263065,42555872 -g1,14692:9476086,42555872 -g1,14692:10108378,42555872 -g1,14692:12005253,42555872 -g1,14692:13585982,42555872 -g1,14692:14218274,42555872 -g1,14692:17063585,42555872 -h1,14692:19276605,42555872:0,0,0 -k1,14692:32583029,42555872:13306424 -g1,14692:32583029,42555872 -) -] -) -g1,14694:32583029,42638184 -g1,14694:6630773,42638184 -g1,14694:6630773,42638184 -g1,14694:32583029,42638184 -g1,14694:32583029,42638184 -) -h1,14694:6630773,42834792:0,0,0 -] -(1,14708:32583029,45706769:0,0,0 -g1,14708:32583029,45706769 -) -) -] -(1,14708:6630773,47279633:25952256,0,0 -h1,14708:6630773,47279633:25952256,0,0 -) -] -h1,14708:4262630,4025873:0,0,0 -] -!19406 -}283 -Input:2222:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2223:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2224:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2225:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 -{284 -[1,14721:4262630,47279633:28320399,43253760,0 -(1,14721:4262630,4025873:0,0,0 -[1,14721:-473657,4025873:25952256,0,0 -(1,14721:-473657,-710414:25952256,0,0 -h1,14721:-473657,-710414:0,0,0 -(1,14721:-473657,-710414:0,0,0 -(1,14721:-473657,-710414:0,0,0 -g1,14721:-473657,-710414 -(1,14721:-473657,-710414:65781,0,65781 -g1,14721:-407876,-710414 -[1,14721:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14739:37855564,49800853:1179648,16384,0 +) +) +k1,14739:3078556,49800853:-34777008 +) +] +g1,14739:6630773,4812305 +g1,14739:6630773,4812305 +g1,14739:10600288,4812305 +g1,14739:12009967,4812305 +g1,14739:14653689,4812305 +g1,14739:16328789,4812305 +k1,14739:31387652,4812305:15058863 +) +) +] +[1,14739:6630773,45706769:25952256,40108032,0 +(1,14739:6630773,45706769:25952256,40108032,0 +(1,14739:6630773,45706769:0,0,0 +g1,14739:6630773,45706769 +) +[1,14739:6630773,45706769:25952256,40108032,0 +(1,14671:6630773,6254097:25952256,513147,126483 +k1,14670:8278397,6254097:253673 +(1,14670:8278397,6254097:0,459977,115847 +r1,14670:12505493,6254097:4227096,575824,115847 +k1,14670:8278397,6254097:-4227096 +) +(1,14670:8278397,6254097:4227096,459977,115847 +k1,14670:8278397,6254097:3277 +h1,14670:12502216,6254097:0,411205,112570 +) +k1,14670:12759166,6254097:253673 +k1,14670:13664267,6254097:253673 +k1,14670:15393155,6254097:253673 +k1,14670:18349534,6254097:253674 +k1,14670:20677421,6254097:253673 +k1,14670:21878745,6254097:253673 +k1,14670:23183561,6254097:253618 +k1,14670:24628679,6254097:253673 +k1,14670:25995154,6254097:253674 +k1,14670:27629671,6254097:253673 +k1,14670:29160641,6254097:253673 +k1,14670:30837101,6254097:253673 +k1,14670:31931601,6254097:253673 +k1,14670:32583029,6254097:0 +) +(1,14671:6630773,7095585:25952256,513147,126483 +k1,14670:9569552,7095585:269498 +k1,14670:10858136,7095585:269499 +k1,14670:13460060,7095585:269498 +k1,14670:14388851,7095585:269499 +k1,14670:18730101,7095585:269498 +k1,14670:19947251,7095585:269499 +k1,14670:22979092,7095585:269498 +k1,14670:27566758,7095585:269499 +k1,14670:29394047,7095585:269498 +k1,14670:32583029,7095585:0 +) +(1,14671:6630773,7937073:25952256,505283,138281 +k1,14670:8094646,7937073:272428 +k1,14670:10737511,7937073:272428 +k1,14670:12029024,7937073:272428 +k1,14670:14312752,7937073:272428 +$1,14670:14519846,7937073 +$1,14670:15071659,7937073 +k1,14670:15344087,7937073:272428 +k1,14670:18610855,7937073:272428 +k1,14670:19534710,7937073:272427 +k1,14670:22848664,7937073:272428 +k1,14670:24678883,7937073:272428 +k1,14670:27148078,7937073:272428 +k1,14670:28611951,7937073:272428 +k1,14670:29903464,7937073:272428 +k1,14670:31873274,7937073:272428 +$1,14670:32080368,7937073 +$1,14670:32583029,7937073 +k1,14671:32583029,7937073:0 +) +(1,14671:6630773,8778561:25952256,505283,126483 +g1,14670:9824342,8778561 +g1,14670:10674999,8778561 +g1,14670:13915754,8778561 +g1,14670:15672774,8778561 +k1,14671:32583029,8778561:13877904 +g1,14671:32583029,8778561 +) +v1,14673:6630773,9969027:0,393216,0 +(1,14677:6630773,10290415:25952256,714604,196608 +g1,14677:6630773,10290415 +g1,14677:6630773,10290415 +g1,14677:6434165,10290415 +(1,14677:6434165,10290415:0,714604,196608 +r1,14677:32779637,10290415:26345472,911212,196608 +k1,14677:6434165,10290415:-26345472 +) +(1,14677:6434165,10290415:26345472,714604,196608 +[1,14677:6630773,10290415:25952256,517996,0 +(1,14675:6630773,10182937:25952256,410518,107478 +(1,14674:6630773,10182937:0,0,0 +g1,14674:6630773,10182937 +g1,14674:6630773,10182937 +g1,14674:6303093,10182937 +(1,14674:6303093,10182937:0,0,0 +) +g1,14674:6630773,10182937 +) +k1,14675:6630773,10182937:0 +h1,14675:17379727,10182937:0,0,0 +k1,14675:32583029,10182937:15203302 +g1,14675:32583029,10182937 +) +] +) +g1,14677:32583029,10290415 +g1,14677:6630773,10290415 +g1,14677:6630773,10290415 +g1,14677:32583029,10290415 +g1,14677:32583029,10290415 +) +h1,14677:6630773,10487023:0,0,0 +v1,14681:6630773,12201777:0,393216,0 +(1,14694:6630773,18506184:25952256,6697623,196608 +g1,14694:6630773,18506184 +g1,14694:6630773,18506184 +g1,14694:6434165,18506184 +(1,14694:6434165,18506184:0,6697623,196608 +r1,14694:32779637,18506184:26345472,6894231,196608 +k1,14694:6434165,18506184:-26345472 +) +(1,14694:6434165,18506184:26345472,6697623,196608 +[1,14694:6630773,18506184:25952256,6501015,0 +(1,14683:6630773,12409395:25952256,404226,107478 +(1,14682:6630773,12409395:0,0,0 +g1,14682:6630773,12409395 +g1,14682:6630773,12409395 +g1,14682:6303093,12409395 +(1,14682:6303093,12409395:0,0,0 +) +g1,14682:6630773,12409395 +) +k1,14683:6630773,12409395:0 +g1,14683:13902124,12409395 +g1,14683:20225038,12409395 +g1,14683:25283369,12409395 +h1,14683:25599515,12409395:0,0,0 +k1,14683:32583029,12409395:6983514 +g1,14683:32583029,12409395 +) +(1,14684:6630773,13075573:25952256,404226,101187 +h1,14684:6630773,13075573:0,0,0 +g1,14684:6946919,13075573 +g1,14684:7263065,13075573 +g1,14684:11689104,13075573 +h1,14684:12005250,13075573:0,0,0 +k1,14684:32583030,13075573:20577780 +g1,14684:32583030,13075573 +) +(1,14685:6630773,13741751:25952256,410518,107478 +h1,14685:6630773,13741751:0,0,0 +g1,14685:6946919,13741751 +g1,14685:7263065,13741751 +g1,14685:15166708,13741751 +g1,14685:15799000,13741751 +g1,14685:20225040,13741751 +g1,14685:21805769,13741751 +g1,14685:22438061,13741751 +g1,14685:25915664,13741751 +h1,14685:26231810,13741751:0,0,0 +k1,14685:32583029,13741751:6351219 +g1,14685:32583029,13741751 +) +(1,14686:6630773,14407929:25952256,404226,82312 +h1,14686:6630773,14407929:0,0,0 +g1,14686:6946919,14407929 +g1,14686:7263065,14407929 +g1,14686:15482853,14407929 +g1,14686:16115145,14407929 +g1,14686:17695875,14407929 +g1,14686:18960458,14407929 +g1,14686:20541187,14407929 +k1,14686:20541187,14407929:0 +h1,14686:22121916,14407929:0,0,0 +k1,14686:32583029,14407929:10461113 +g1,14686:32583029,14407929 +) +(1,14687:6630773,15074107:25952256,404226,82312 +h1,14687:6630773,15074107:0,0,0 +g1,14687:6946919,15074107 +g1,14687:7263065,15074107 +g1,14687:7579211,15074107 +g1,14687:7895357,15074107 +g1,14687:8211503,15074107 +g1,14687:8527649,15074107 +g1,14687:8843795,15074107 +g1,14687:9159941,15074107 +g1,14687:9476087,15074107 +g1,14687:9792233,15074107 +g1,14687:10108379,15074107 +g1,14687:10424525,15074107 +g1,14687:10740671,15074107 +g1,14687:11056817,15074107 +g1,14687:11372963,15074107 +g1,14687:11689109,15074107 +g1,14687:12005255,15074107 +g1,14687:12321401,15074107 +g1,14687:12637547,15074107 +g1,14687:12953693,15074107 +g1,14687:13269839,15074107 +g1,14687:15482859,15074107 +g1,14687:16115151,15074107 +g1,14687:18328172,15074107 +g1,14687:19908901,15074107 +g1,14687:21489630,15074107 +k1,14687:21489630,15074107:0 +h1,14687:23070359,15074107:0,0,0 +k1,14687:32583029,15074107:9512670 +g1,14687:32583029,15074107 +) +(1,14688:6630773,15740285:25952256,404226,82312 +h1,14688:6630773,15740285:0,0,0 +g1,14688:6946919,15740285 +g1,14688:7263065,15740285 +g1,14688:7579211,15740285 +g1,14688:7895357,15740285 +g1,14688:8211503,15740285 +g1,14688:8527649,15740285 +g1,14688:8843795,15740285 +g1,14688:9159941,15740285 +g1,14688:9476087,15740285 +g1,14688:9792233,15740285 +g1,14688:10108379,15740285 +g1,14688:10424525,15740285 +g1,14688:10740671,15740285 +g1,14688:11056817,15740285 +g1,14688:11372963,15740285 +g1,14688:11689109,15740285 +g1,14688:12005255,15740285 +g1,14688:12321401,15740285 +g1,14688:12637547,15740285 +g1,14688:12953693,15740285 +g1,14688:13269839,15740285 +g1,14688:15482859,15740285 +g1,14688:16115151,15740285 +g1,14688:17695881,15740285 +k1,14688:17695881,15740285:0 +h1,14688:19276610,15740285:0,0,0 +k1,14688:32583029,15740285:13306419 +g1,14688:32583029,15740285 +) +(1,14689:6630773,16406463:25952256,404226,101187 +h1,14689:6630773,16406463:0,0,0 +g1,14689:6946919,16406463 +g1,14689:7263065,16406463 +g1,14689:7579211,16406463 +g1,14689:7895357,16406463 +g1,14689:8211503,16406463 +g1,14689:8527649,16406463 +g1,14689:8843795,16406463 +g1,14689:9159941,16406463 +g1,14689:9476087,16406463 +g1,14689:9792233,16406463 +g1,14689:10108379,16406463 +g1,14689:10424525,16406463 +g1,14689:10740671,16406463 +g1,14689:11056817,16406463 +g1,14689:11372963,16406463 +g1,14689:11689109,16406463 +g1,14689:12005255,16406463 +g1,14689:12321401,16406463 +g1,14689:12637547,16406463 +g1,14689:12953693,16406463 +g1,14689:13269839,16406463 +g1,14689:15482859,16406463 +g1,14689:16115151,16406463 +g1,14689:17695881,16406463 +k1,14689:17695881,16406463:0 +h1,14689:18644319,16406463:0,0,0 +k1,14689:32583029,16406463:13938710 +g1,14689:32583029,16406463 +) +(1,14690:6630773,17072641:25952256,404226,76021 +h1,14690:6630773,17072641:0,0,0 +g1,14690:6946919,17072641 +g1,14690:7263065,17072641 +g1,14690:7579211,17072641 +g1,14690:7895357,17072641 +g1,14690:8211503,17072641 +g1,14690:8527649,17072641 +g1,14690:8843795,17072641 +g1,14690:9159941,17072641 +g1,14690:9476087,17072641 +g1,14690:9792233,17072641 +g1,14690:10108379,17072641 +g1,14690:10424525,17072641 +g1,14690:10740671,17072641 +g1,14690:11056817,17072641 +g1,14690:11372963,17072641 +g1,14690:11689109,17072641 +g1,14690:12005255,17072641 +g1,14690:12321401,17072641 +g1,14690:12637547,17072641 +g1,14690:12953693,17072641 +g1,14690:13269839,17072641 +g1,14690:14850568,17072641 +g1,14690:15482860,17072641 +g1,14690:17379734,17072641 +g1,14690:21173483,17072641 +h1,14690:21489629,17072641:0,0,0 +k1,14690:32583029,17072641:11093400 +g1,14690:32583029,17072641 +) +(1,14691:6630773,17738819:25952256,404226,101187 +h1,14691:6630773,17738819:0,0,0 +g1,14691:6946919,17738819 +g1,14691:7263065,17738819 +g1,14691:14850562,17738819 +g1,14691:15482854,17738819 +g1,14691:17379728,17738819 +g1,14691:19276602,17738819 +g1,14691:21805768,17738819 +h1,14691:22121914,17738819:0,0,0 +k1,14691:32583029,17738819:10461115 +g1,14691:32583029,17738819 +) +(1,14692:6630773,18404997:25952256,410518,101187 +h1,14692:6630773,18404997:0,0,0 +g1,14692:6946919,18404997 +g1,14692:7263065,18404997 +g1,14692:20857331,18404997 +g1,14692:21489623,18404997 +g1,14692:22754206,18404997 +g1,14692:24651081,18404997 +h1,14692:26864101,18404997:0,0,0 +k1,14692:32583029,18404997:5718928 +g1,14692:32583029,18404997 +) +] +) +g1,14694:32583029,18506184 +g1,14694:6630773,18506184 +g1,14694:6630773,18506184 +g1,14694:32583029,18506184 +g1,14694:32583029,18506184 +) +h1,14694:6630773,18702792:0,0,0 +(1,14697:6630773,28021370:25952256,8728754,0 +k1,14697:7928465,28021370:1297692 +h1,14696:7928465,28021370:0,0,0 +(1,14696:7928465,28021370:23356872,8728754,0 +(1,14696:7928465,28021370:23357558,8728776,0 +(1,14696:7928465,28021370:23357558,8728776,0 +(1,14696:7928465,28021370:0,8728776,0 +(1,14696:7928465,28021370:0,14155776,0 +(1,14696:7928465,28021370:37879808,14155776,0 +) +k1,14696:7928465,28021370:-37879808 +) +) +g1,14696:31286023,28021370 +) +) +) +g1,14697:31285337,28021370 +k1,14697:32583029,28021370:1297692 +) +(1,14706:6630773,30112630:25952256,555811,12975 +(1,14706:6630773,30112630:2450326,534184,12975 +g1,14706:6630773,30112630 +g1,14706:9081099,30112630 +) +g1,14706:10388084,30112630 +k1,14706:32583029,30112630:19941424 +g1,14706:32583029,30112630 +) +v1,14710:6630773,31871622:0,393216,0 +(1,14711:6630773,36680280:25952256,5201874,616038 +g1,14711:6630773,36680280 +(1,14711:6630773,36680280:25952256,5201874,616038 +(1,14711:6630773,37296318:25952256,5817912,0 +[1,14711:6630773,37296318:25952256,5817912,0 +(1,14711:6630773,37270104:25952256,5765484,0 +r1,14711:6656987,37270104:26214,5765484,0 +[1,14711:6656987,37270104:25899828,5765484,0 +(1,14711:6656987,36680280:25899828,4585836,0 +[1,14711:7246811,36680280:24720180,4585836,0 +(1,14711:7246811,33179980:24720180,1085536,298548 +(1,14710:7246811,33179980:0,1085536,298548 +r1,14711:8753226,33179980:1506415,1384084,298548 +k1,14710:7246811,33179980:-1506415 +) +(1,14710:7246811,33179980:1506415,1085536,298548 +) +k1,14710:9012113,33179980:258887 +k1,14710:10195058,33179980:258887 +k1,14710:12433788,33179980:258887 +k1,14710:13684234,33179980:258886 +k1,14710:15593318,33179980:258887 +k1,14710:18336020,33179980:258887 +k1,14710:19246335,33179980:258887 +k1,14710:20917523,33179980:258887 +k1,14710:22618857,33179980:258887 +k1,14710:23922388,33179980:258887 +k1,14710:26161117,33179980:258886 +k1,14710:28949694,33179980:258887 +k1,14710:30306309,33179980:258887 +k1,14710:31966991,33179980:0 +) +(1,14711:7246811,34021468:24720180,513147,134348 +k1,14710:7999114,34021468:220806 +k1,14710:10117187,34021468:220806 +k1,14710:10950755,34021468:220806 +k1,14710:14574846,34021468:220806 +k1,14710:17139219,34021468:220806 +k1,14710:18802472,34021468:220806 +k1,14710:21224631,34021468:220805 +k1,14710:21923194,34021468:220806 +k1,14710:23830897,34021468:220806 +k1,14710:25020980,34021468:220806 +k1,14710:27221629,34021468:220806 +k1,14710:29622818,34021468:220806 +k1,14710:31219225,34021468:220806 +k1,14710:31966991,34021468:0 +) +(1,14711:7246811,34862956:24720180,513147,126483 +k1,14710:8950948,34862956:190911 +k1,14710:9793288,34862956:190912 +k1,14710:11644881,34862956:190911 +k1,14710:15971770,34862956:190912 +k1,14710:16845566,34862956:190911 +k1,14710:20107494,34862956:190911 +k1,14710:24225979,34862956:190912 +k1,14710:25701396,34862956:190911 +k1,14710:27089650,34862956:190911 +k1,14710:28116146,34862956:190912 +k1,14710:28958485,34862956:190911 +k1,14710:29505257,34862956:190912 +k1,14710:31339156,34862956:190911 +k1,14710:31966991,34862956:0 +) +(1,14711:7246811,35704444:24720180,513147,126483 +k1,14710:8629533,35704444:179481 +k1,14710:10349766,35704444:179482 +k1,14710:12042473,35704444:179481 +k1,14710:13597555,35704444:179481 +k1,14710:14242997,35704444:179481 +k1,14710:15441564,35704444:179482 +k1,14710:18106826,35704444:179481 +k1,14710:18945599,35704444:179481 +k1,14710:20394512,35704444:179481 +k1,14710:22621994,35704444:179482 +k1,14710:23332972,35704444:179481 +k1,14710:25228841,35704444:179481 +k1,14710:26871086,35704444:179481 +k1,14710:27709860,35704444:179482 +k1,14710:30169994,35704444:179481 +k1,14710:31966991,35704444:0 +) +(1,14711:7246811,36545932:24720180,505283,134348 +g1,14710:8058802,36545932 +g1,14710:10240495,36545932 +g1,14710:13110316,36545932 +g1,14710:13925583,36545932 +g1,14710:16631564,36545932 +g1,14710:18210981,36545932 +g1,14710:19401770,36545932 +g1,14710:20935967,36545932 +k1,14711:31966991,36545932:8359777 +g1,14711:31966991,36545932 +) +] +) +] +r1,14711:32583029,37270104:26214,5765484,0 +) +] +) +) +g1,14711:32583029,36680280 +) +h1,14711:6630773,37296318:0,0,0 +(1,14714:6630773,38662094:25952256,513147,122846 +k1,14713:7671515,38662094:222853 +k1,14713:8762720,38662094:222853 +k1,14713:10078058,38662094:222853 +(1,14713:10078058,38662094:0,452978,122846 +r1,14713:13601730,38662094:3523672,575824,122846 +k1,14713:10078058,38662094:-3523672 +) +(1,14713:10078058,38662094:3523672,452978,122846 +k1,14713:10078058,38662094:3277 +h1,14713:13598453,38662094:0,411205,112570 +) +k1,14713:13824583,38662094:222853 +k1,14713:15932907,38662094:222853 +k1,14713:18751641,38662094:222853 +k1,14713:19625921,38662094:222852 +k1,14713:20941259,38662094:222853 +(1,14713:20941259,38662094:0,414482,115847 +r1,14713:24464931,38662094:3523672,530329,115847 +k1,14713:20941259,38662094:-3523672 +) +(1,14713:20941259,38662094:3523672,414482,115847 +k1,14713:20941259,38662094:3277 +h1,14713:24461654,38662094:0,411205,112570 +) +k1,14713:24861454,38662094:222853 +k1,14713:26037856,38662094:222853 +k1,14713:27353194,38662094:222853 +k1,14713:28595132,38662094:222853 +k1,14713:31010820,38662094:222853 +k1,14713:32583029,38662094:0 +) +(1,14714:6630773,39503582:25952256,513147,7863 +g1,14713:7777653,39503582 +g1,14713:9273840,39503582 +k1,14714:32583030,39503582:21189100 +g1,14714:32583030,39503582 +) +v1,14716:6630773,40694048:0,393216,0 +(1,14725:6630773,44321160:25952256,4020328,196608 +g1,14725:6630773,44321160 +g1,14725:6630773,44321160 +g1,14725:6434165,44321160 +(1,14725:6434165,44321160:0,4020328,196608 +r1,14725:32779637,44321160:26345472,4216936,196608 +k1,14725:6434165,44321160:-26345472 +) +(1,14725:6434165,44321160:26345472,4020328,196608 +[1,14725:6630773,44321160:25952256,3823720,0 +(1,14718:6630773,40907958:25952256,410518,107478 +(1,14717:6630773,40907958:0,0,0 +g1,14717:6630773,40907958 +g1,14717:6630773,40907958 +g1,14717:6303093,40907958 +(1,14717:6303093,40907958:0,0,0 +) +g1,14717:6630773,40907958 +) +k1,14718:6630773,40907958:0 +g1,14718:10424522,40907958 +g1,14718:11056814,40907958 +g1,14718:12637543,40907958 +g1,14718:14534418,40907958 +g1,14718:15166710,40907958 +g1,14718:18644314,40907958 +g1,14718:20225043,40907958 +g1,14718:20857335,40907958 +g1,14718:25915666,40907958 +h1,14718:26231812,40907958:0,0,0 +k1,14718:32583029,40907958:6351217 +g1,14718:32583029,40907958 +) +(1,14719:6630773,41574136:25952256,404226,107478 +h1,14719:6630773,41574136:0,0,0 +g1,14719:6946919,41574136 +g1,14719:7263065,41574136 +g1,14719:12005250,41574136 +g1,14719:12637542,41574136 +g1,14719:13585980,41574136 +g1,14719:15482854,41574136 +g1,14719:16115146,41574136 +g1,14719:18960458,41574136 +h1,14719:19276604,41574136:0,0,0 +k1,14719:32583029,41574136:13306425 +g1,14719:32583029,41574136 +) +(1,14720:6630773,42240314:25952256,404226,101187 +h1,14720:6630773,42240314:0,0,0 +g1,14720:6946919,42240314 +g1,14720:7263065,42240314 +g1,14720:12953687,42240314 +g1,14720:13585979,42240314 +g1,14720:15166708,42240314 +h1,14720:15482854,42240314:0,0,0 +k1,14720:32583030,42240314:17100176 +g1,14720:32583030,42240314 +) +(1,14721:6630773,42906492:25952256,410518,76021 +h1,14721:6630773,42906492:0,0,0 +g1,14721:6946919,42906492 +g1,14721:7263065,42906492 +g1,14721:13585979,42906492 +h1,14721:13902125,42906492:0,0,0 +k1,14721:32583029,42906492:18680904 +g1,14721:32583029,42906492 +) +(1,14722:6630773,43572670:25952256,404226,76021 +h1,14722:6630773,43572670:0,0,0 +g1,14722:6946919,43572670 +g1,14722:7263065,43572670 +g1,14722:14850562,43572670 +g1,14722:15482854,43572670 +g1,14722:17379729,43572670 +h1,14722:17695875,43572670:0,0,0 +k1,14722:32583029,43572670:14887154 +g1,14722:32583029,43572670 +) +(1,14723:6630773,44238848:25952256,410518,82312 +h1,14723:6630773,44238848:0,0,0 +g1,14723:6946919,44238848 +g1,14723:7263065,44238848 +g1,14723:9476086,44238848 +g1,14723:10108378,44238848 +g1,14723:12005253,44238848 +g1,14723:13585982,44238848 +g1,14723:14218274,44238848 +g1,14723:17063585,44238848 +h1,14723:19276605,44238848:0,0,0 +k1,14723:32583029,44238848:13306424 +g1,14723:32583029,44238848 +) +] +) +g1,14725:32583029,44321160 +g1,14725:6630773,44321160 +g1,14725:6630773,44321160 +g1,14725:32583029,44321160 +g1,14725:32583029,44321160 +) +h1,14725:6630773,44517768:0,0,0 +] +(1,14739:32583029,45706769:0,0,0 +g1,14739:32583029,45706769 +) +) +] +(1,14739:6630773,47279633:25952256,0,0 +h1,14739:6630773,47279633:25952256,0,0 +) +] +h1,14739:4262630,4025873:0,0,0 +] +!20668 +}284 +Input:2219:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2220:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2221:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2222:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 +{285 +[1,14752:4262630,47279633:28320399,43253760,0 +(1,14752:4262630,4025873:0,0,0 +[1,14752:-473657,4025873:25952256,0,0 +(1,14752:-473657,-710414:25952256,0,0 +h1,14752:-473657,-710414:0,0,0 +(1,14752:-473657,-710414:0,0,0 +(1,14752:-473657,-710414:0,0,0 +g1,14752:-473657,-710414 +(1,14752:-473657,-710414:65781,0,65781 +g1,14752:-407876,-710414 +[1,14752:-407876,-644633:0,0,0 ] ) -k1,14721:-473657,-710414:-65781 +k1,14752:-473657,-710414:-65781 ) ) -k1,14721:25478599,-710414:25952256 -g1,14721:25478599,-710414 +k1,14752:25478599,-710414:25952256 +g1,14752:25478599,-710414 ) ] ) -[1,14721:6630773,47279633:25952256,43253760,0 -[1,14721:6630773,4812305:25952256,786432,0 -(1,14721:6630773,4812305:25952256,505283,11795 -(1,14721:6630773,4812305:25952256,505283,11795 -g1,14721:3078558,4812305 -[1,14721:3078558,4812305:0,0,0 -(1,14721:3078558,2439708:0,1703936,0 -k1,14721:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14721:2537886,2439708:1179648,16384,0 +[1,14752:6630773,47279633:25952256,43253760,0 +[1,14752:6630773,4812305:25952256,786432,0 +(1,14752:6630773,4812305:25952256,513147,134348 +(1,14752:6630773,4812305:25952256,513147,134348 +g1,14752:3078558,4812305 +[1,14752:3078558,4812305:0,0,0 +(1,14752:3078558,2439708:0,1703936,0 +k1,14752:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14752:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14721:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14752:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14721:3078558,4812305:0,0,0 -(1,14721:3078558,2439708:0,1703936,0 -g1,14721:29030814,2439708 -g1,14721:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14721:36151628,1915420:16384,1179648,0 +[1,14752:3078558,4812305:0,0,0 +(1,14752:3078558,2439708:0,1703936,0 +g1,14752:29030814,2439708 +g1,14752:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14752:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14721:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14752:37855564,2439708:1179648,16384,0 ) ) -k1,14721:3078556,2439708:-34777008 +k1,14752:3078556,2439708:-34777008 ) ] -[1,14721:3078558,4812305:0,0,0 -(1,14721:3078558,49800853:0,16384,2228224 -k1,14721:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14721:2537886,49800853:1179648,16384,0 +[1,14752:3078558,4812305:0,0,0 +(1,14752:3078558,49800853:0,16384,2228224 +k1,14752:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14752:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14721:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14752:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14721:3078558,4812305:0,0,0 -(1,14721:3078558,49800853:0,16384,2228224 -g1,14721:29030814,49800853 -g1,14721:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14721:36151628,51504789:16384,1179648,0 +[1,14752:3078558,4812305:0,0,0 +(1,14752:3078558,49800853:0,16384,2228224 +g1,14752:29030814,49800853 +g1,14752:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14752:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14721:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14752:37855564,49800853:1179648,16384,0 ) ) -k1,14721:3078556,49800853:-34777008 +k1,14752:3078556,49800853:-34777008 ) ] -g1,14721:6630773,4812305 -g1,14721:6630773,4812305 -g1,14721:9264009,4812305 -k1,14721:31387653,4812305:22123644 +g1,14752:6630773,4812305 +k1,14752:25712890,4812305:17886740 +g1,14752:29057847,4812305 +g1,14752:29873114,4812305 ) ) ] -[1,14721:6630773,45706769:25952256,40108032,0 -(1,14721:6630773,45706769:25952256,40108032,0 -(1,14721:6630773,45706769:0,0,0 -g1,14721:6630773,45706769 +[1,14752:6630773,45706769:25952256,40108032,0 +(1,14752:6630773,45706769:25952256,40108032,0 +(1,14752:6630773,45706769:0,0,0 +g1,14752:6630773,45706769 ) -[1,14721:6630773,45706769:25952256,40108032,0 -(1,14697:6630773,16073415:25952256,10474678,0 -k1,14697:12599879,16073415:5969106 -h1,14696:12599879,16073415:0,0,0 -(1,14696:12599879,16073415:14014044,10474678,0 -(1,14696:12599879,16073415:14014766,10474704,0 -(1,14696:12599879,16073415:14014766,10474704,0 -(1,14696:12599879,16073415:0,10474704,0 -(1,14696:12599879,16073415:0,14155776,0 -(1,14696:12599879,16073415:18939904,14155776,0 +[1,14752:6630773,45706769:25952256,40108032,0 +(1,14728:6630773,16073415:25952256,10474678,0 +k1,14728:12599879,16073415:5969106 +h1,14727:12599879,16073415:0,0,0 +(1,14727:12599879,16073415:14014044,10474678,0 +(1,14727:12599879,16073415:14014766,10474704,0 +(1,14727:12599879,16073415:14014766,10474704,0 +(1,14727:12599879,16073415:0,10474704,0 +(1,14727:12599879,16073415:0,14155776,0 +(1,14727:12599879,16073415:18939904,14155776,0 ) -k1,14696:12599879,16073415:-18939904 +k1,14727:12599879,16073415:-18939904 ) ) -g1,14696:26614645,16073415 +g1,14727:26614645,16073415 ) ) ) -g1,14697:26613923,16073415 -k1,14697:32583029,16073415:5969106 +g1,14728:26613923,16073415 +k1,14728:32583029,16073415:5969106 ) -v1,14708:6630773,17439191:0,393216,0 -(1,14709:6630773,19717358:25952256,2671383,616038 -g1,14709:6630773,19717358 -(1,14709:6630773,19717358:25952256,2671383,616038 -(1,14709:6630773,20333396:25952256,3287421,0 -[1,14709:6630773,20333396:25952256,3287421,0 -(1,14709:6630773,20307182:25952256,3234993,0 -r1,14709:6656987,20307182:26214,3234993,0 -[1,14709:6656987,20307182:25899828,3234993,0 -(1,14709:6656987,19717358:25899828,2055345,0 -[1,14709:7246811,19717358:24720180,2055345,0 -(1,14709:7246811,18749387:24720180,1087374,126483 -k1,14708:8682701,18749387:226187 -k1,14708:10158660,18749387:226187 -k1,14708:11403931,18749387:226186 -k1,14708:13126305,18749387:226187 -k1,14708:14300143,18749387:226187 -k1,14708:15545415,18749387:226187 -k1,14708:16740879,18749387:226187 -k1,14708:18616607,18749387:226187 -k1,14708:20698117,18749387:226186 -k1,14708:21575732,18749387:226187 -k1,14708:23825671,18749387:226187 -k1,14708:24407718,18749387:226187 -k1,14708:25678549,18749387:226187 -k1,14708:27727947,18749387:226186 -k1,14708:29924802,18749387:226187 -k1,14708:31307699,18749387:226187 -k1,14708:31966991,18749387:0 -) -(1,14709:7246811,19590875:24720180,505283,126483 -g1,14708:8465125,19590875 -g1,14708:9836793,19590875 -g1,14708:11643620,19590875 -g1,14708:12374346,19590875 -g1,14708:14443973,19590875 -g1,14708:15294630,19590875 -k1,14709:31966991,19590875:14933035 -g1,14709:31966991,19590875 -) -] -) -] -r1,14709:32583029,20307182:26214,3234993,0 -) -] -) -) -g1,14709:32583029,19717358 -) -h1,14709:6630773,20333396:0,0,0 -(1,14711:6630773,23140964:25952256,32768,229376 -(1,14711:6630773,23140964:0,32768,229376 -(1,14711:6630773,23140964:5505024,32768,229376 -r1,14711:12135797,23140964:5505024,262144,229376 -) -k1,14711:6630773,23140964:-5505024 -) -(1,14711:6630773,23140964:25952256,32768,0 -r1,14711:32583029,23140964:25952256,32768,0 -) -) -(1,14711:6630773,24745292:25952256,606339,14155 -(1,14711:6630773,24745292:2464678,582746,14155 -g1,14711:6630773,24745292 -g1,14711:9095451,24745292 -) -k1,14711:32583030,24745292:20355220 -g1,14711:32583030,24745292 -) -(1,14715:6630773,25979996:25952256,513147,134348 -k1,14714:7528562,25979996:269954 -k1,14714:10800718,25979996:269953 -k1,14714:13325766,25979996:269954 -k1,14714:14587280,25979996:269954 -k1,14714:15876318,25979996:269953 -k1,14714:19451253,25979996:269954 -k1,14714:20380499,25979996:269954 -k1,14714:22151226,25979996:269953 -k1,14714:24621879,25979996:269954 -k1,14714:26449624,25979996:269954 -k1,14714:29963609,25979996:269953 -k1,14714:31563944,25979996:269954 -k1,14714:32583029,25979996:0 -) -(1,14715:6630773,26821484:25952256,513147,126483 -k1,14714:9652739,26821484:259623 -k1,14714:12781529,26821484:259624 -k1,14714:13700444,26821484:259623 -k1,14714:14315928,26821484:259624 -k1,14714:15852848,26821484:259623 -k1,14714:17104031,26821484:259623 -k1,14714:20238719,26821484:259624 -k1,14714:22196380,26821484:259623 -k1,14714:25692826,26821484:259623 -k1,14714:28302571,26821484:259624 -k1,14714:29245079,26821484:259623 -k1,14714:31316118,26821484:259624 -k1,14714:32227169,26821484:259623 -k1,14714:32583029,26821484:0 -) -(1,14715:6630773,27662972:25952256,513147,126483 -k1,14714:8041435,27662972:253952 -k1,14714:10752332,27662972:253952 -k1,14714:11821552,27662972:253952 -k1,14714:13141774,27662972:253951 -k1,14714:14849315,27662972:253952 -k1,14714:16651883,27662972:253952 -k1,14714:20080399,27662972:253952 -k1,14714:21017236,27662972:253952 -k1,14714:23173698,27662972:253952 -k1,14714:24419210,27662972:253952 -k1,14714:26186387,27662972:253951 -k1,14714:27091767,27662972:253952 -k1,14714:28623016,27662972:253952 -k1,14714:29896053,27662972:253952 -k1,14715:32583029,27662972:0 -) -(1,14715:6630773,28504460:25952256,505283,134348 -k1,14714:8487146,28504460:258605 -k1,14714:9428636,28504460:258605 -k1,14714:13369054,28504460:258605 -k1,14714:14699828,28504460:258605 -k1,14714:17285616,28504460:258605 -k1,14714:18874601,28504460:258604 -k1,14714:22590230,28504460:258605 -k1,14714:24620273,28504460:258605 -k1,14714:26451087,28504460:258605 -k1,14714:28498170,28504460:258605 -k1,14714:32583029,28504460:0 -) -(1,14715:6630773,29345948:25952256,513147,134348 -k1,14714:10589366,29345948:168646 -k1,14714:11949457,29345948:168646 -k1,14714:13576278,29345948:168645 -k1,14714:15030085,29345948:168646 -k1,14714:16190291,29345948:168646 -k1,14714:19564303,29345948:168646 -k1,14714:20924394,29345948:168646 -k1,14714:21559001,29345948:168646 -k1,14714:24790799,29345948:168645 -k1,14714:25642330,29345948:168646 -k1,14714:27050917,29345948:168646 -k1,14714:29754496,29345948:168646 -k1,14714:32583029,29345948:0 -) -(1,14715:6630773,30187436:25952256,513147,126483 -k1,14714:9486905,30187436:188161 -k1,14714:11906567,30187436:188161 -k1,14714:15532746,30187436:188160 -k1,14714:17664705,30187436:188161 -k1,14714:21732598,30187436:188161 -k1,14714:24415059,30187436:188161 -k1,14714:27693242,30187436:188160 -k1,14714:28567565,30187436:188161 -k1,14714:31391584,30187436:188161 -k1,14714:32583029,30187436:0 -) -(1,14715:6630773,31028924:25952256,513147,134348 -k1,14714:11460940,31028924:257065 -k1,14714:14979076,31028924:257065 -k1,14714:18308469,31028924:257065 -k1,14714:21475987,31028924:257064 -k1,14714:23693889,31028924:257065 -k1,14714:27177947,31028924:257065 -k1,14714:29095694,31028924:257065 -k1,14714:31227089,31028924:257065 -k1,14715:32583029,31028924:0 -) -(1,14715:6630773,31870412:25952256,505283,126483 -k1,14714:9708835,31870412:183992 -k1,14714:11903472,31870412:183992 -k1,14714:15012991,31870412:183992 -k1,14714:17687352,31870412:183993 -k1,14714:19756815,31870412:183992 -k1,14714:21638845,31870412:183992 -k1,14714:23788262,31870412:183992 -k1,14714:24623682,31870412:183992 -k1,14714:25163534,31870412:183992 -k1,14714:26798494,31870412:183993 -k1,14714:29280834,31870412:183992 -k1,14714:30596633,31870412:183992 -k1,14714:32583029,31870412:0 -) -(1,14715:6630773,32711900:25952256,505283,134348 -k1,14714:9216227,32711900:251062 -k1,14714:11873117,32711900:251063 -k1,14714:12740217,32711900:251062 -k1,14714:15047800,32711900:251063 -k1,14714:15926697,32711900:251062 -k1,14714:18843765,32711900:251063 -k1,14714:19746255,32711900:251062 -k1,14714:22855343,32711900:251063 -k1,14714:25265816,32711900:251062 -k1,14714:27213606,32711900:251063 -k1,14714:29799060,32711900:251062 -k1,14714:32583029,32711900:0 -) -(1,14715:6630773,33553388:25952256,513147,134348 -k1,14714:9622492,33553388:187433 -k1,14714:12215751,33553388:187433 -k1,14714:14114328,33553388:187432 -k1,14714:15406043,33553388:187433 -k1,14714:17855779,33553388:187433 -k1,14714:19062297,33553388:187433 -k1,14714:20736742,33553388:187433 -k1,14714:23258567,33553388:187433 -k1,14714:25851826,33553388:187432 -k1,14714:26800787,33553388:187433 -k1,14714:29175812,33553388:187433 -k1,14714:32583029,33553388:0 -) -(1,14715:6630773,34394876:25952256,505283,126483 -k1,14714:9072364,34394876:186497 -k1,14714:9910288,34394876:186496 -k1,14714:10452645,34394876:186497 -k1,14714:12090108,34394876:186496 -k1,14714:14059840,34394876:186497 -k1,14714:15759562,34394876:186496 -k1,14714:16562097,34394876:186497 -k1,14714:17951835,34394876:186497 -k1,14714:19549977,34394876:186496 -k1,14714:23143691,34394876:186497 -k1,14714:25585281,34394876:186496 -k1,14714:28058985,34394876:186497 -k1,14714:29237041,34394876:186496 -k1,14714:31773659,34394876:186497 -k1,14714:32583029,34394876:0 -) -(1,14715:6630773,35236364:25952256,513147,126483 -k1,14714:7875907,35236364:226049 -k1,14714:9071232,35236364:226048 -k1,14714:9767174,35236364:226049 -k1,14714:10524720,35236364:226049 -k1,14714:12036584,35236364:226048 -k1,14714:14892593,35236364:226049 -k1,14714:15770070,35236364:226049 -k1,14714:17925499,35236364:226049 -k1,14714:19434742,35236364:226048 -k1,14714:21647187,35236364:226049 -k1,14714:25910254,35236364:226049 -k1,14714:27420808,35236364:226048 -k1,14714:29657502,35236364:226049 -k1,14714:32583029,35236364:0 -) -(1,14715:6630773,36077852:25952256,513147,134348 -g1,14714:9320370,36077852 -g1,14714:11721609,36077852 -g1,14714:12572266,36077852 -(1,14714:12572266,36077852:0,452978,122846 -r1,14714:16799362,36077852:4227096,575824,122846 -k1,14714:12572266,36077852:-4227096 -) -(1,14714:12572266,36077852:4227096,452978,122846 -k1,14714:12572266,36077852:3277 -h1,14714:16796085,36077852:0,411205,112570 -) -g1,14714:16998591,36077852 -g1,14714:18765441,36077852 -k1,14715:32583029,36077852:10815385 -g1,14715:32583029,36077852 -) -(1,14716:6630773,38169112:25952256,555811,139132 -(1,14716:6630773,38169112:2899444,534184,12975 -g1,14716:6630773,38169112 -g1,14716:9530217,38169112 -) -g1,14716:13204624,38169112 -k1,14716:32583029,38169112:16741367 -g1,14716:32583029,38169112 -) -(1,14719:6630773,39403816:25952256,513147,134348 -k1,14718:8064221,39403816:236761 -k1,14718:10287379,39403816:236762 -k1,14718:12037366,39403816:236761 -k1,14718:13035656,39403816:236762 -k1,14718:15537997,39403816:236761 -k1,14718:16306256,39403816:236762 -(1,14718:16306256,39403816:0,452978,122846 -r1,14718:20533352,39403816:4227096,575824,122846 -k1,14718:16306256,39403816:-4227096 -) -(1,14718:16306256,39403816:4227096,452978,122846 -k1,14718:16306256,39403816:3277 -h1,14718:20530075,39403816:0,411205,112570 -) -k1,14718:20770113,39403816:236761 -k1,14718:22400826,39403816:236762 -k1,14718:24903167,39403816:236761 -k1,14718:28716229,39403816:236762 -k1,14718:29580825,39403816:236761 -k1,14718:32583029,39403816:0 -) -(1,14719:6630773,40245304:25952256,513147,126483 -k1,14718:10310911,40245304:242119 -k1,14718:12869728,40245304:242119 -k1,14718:14103407,40245304:242119 -k1,14718:16727104,40245304:242119 -k1,14718:17655384,40245304:242118 -k1,14718:21604219,40245304:242119 -k1,14718:25045806,40245304:242119 -k1,14718:26681876,40245304:242119 -k1,14718:30708699,40245304:242119 -k1,14718:32583029,40245304:0 -) -(1,14719:6630773,41086792:25952256,513147,134348 -k1,14718:10534292,41086792:292485 -k1,14718:12508431,41086792:292485 -k1,14718:15684501,41086792:292486 -k1,14718:17669126,41086792:292485 -k1,14718:19995849,41086792:292485 -k1,14718:23757810,41086792:292485 -k1,14718:25246982,41086792:292485 -(1,14718:25246982,41086792:0,452978,115847 -r1,14718:28418942,41086792:3171960,568825,115847 -k1,14718:25246982,41086792:-3171960 -) -(1,14718:25246982,41086792:3171960,452978,115847 -k1,14718:25246982,41086792:3277 -h1,14718:28415665,41086792:0,411205,112570 -) -k1,14718:28711428,41086792:292486 -k1,14718:29951564,41086792:292485 -k1,14718:31470228,41086792:292485 -k1,14719:32583029,41086792:0 -) -(1,14719:6630773,41928280:25952256,513147,134348 -k1,14718:8839437,41928280:239307 -k1,14718:12339815,41928280:239307 -k1,14718:13110619,41928280:239307 -k1,14718:15044688,41928280:239308 -k1,14718:15900033,41928280:239307 -k1,14718:18331519,41928280:239307 -k1,14718:19762271,41928280:239307 -k1,14718:22111182,41928280:239307 -k1,14718:23116605,41928280:239307 -k1,14718:24582092,41928280:239308 -k1,14718:27690565,41928280:239307 -k1,14718:28545910,41928280:239307 -k1,14718:29804302,41928280:239307 -k1,14718:32583029,41928280:0 -) -(1,14719:6630773,42769768:25952256,513147,134348 -k1,14718:8891250,42769768:274081 -k1,14718:11124857,42769768:274081 -k1,14718:12085100,42769768:274081 -k1,14718:13378266,42769768:274081 -k1,14718:14921124,42769768:274081 -k1,14718:15854497,42769768:274081 -k1,14718:17825305,42769768:274081 -k1,14718:20968551,42769768:274080 -k1,14718:21774129,42769768:274081 -k1,14718:22809738,42769768:274081 -k1,14718:25349399,42769768:274081 -k1,14718:28005058,42769768:274081 -k1,14718:30638435,42769768:274081 -k1,14718:31563944,42769768:274081 -k1,14718:32583029,42769768:0 -) -(1,14719:6630773,43611256:25952256,513147,126483 -k1,14718:8249383,43611256:184682 -k1,14718:9876512,43611256:184682 -k1,14718:12665595,43611256:184682 -k1,14718:16304681,43611256:184683 -(1,14718:16304681,43611256:0,459977,115847 -r1,14718:20180065,43611256:3875384,575824,115847 -k1,14718:16304681,43611256:-3875384 -) -(1,14718:16304681,43611256:3875384,459977,115847 -k1,14718:16304681,43611256:3277 -h1,14718:20176788,43611256:0,411205,112570 -) -k1,14718:20538417,43611256:184682 -k1,14718:22735054,43611256:184682 -k1,14718:23938821,43611256:184682 -k1,14718:25454539,43611256:184682 -k1,14718:27647244,43611256:184682 -k1,14718:28483355,43611256:184683 -k1,14718:29415803,43611256:184682 -k1,14718:30708699,43611256:184682 -k1,14718:32583029,43611256:0 -) -(1,14719:6630773,44452744:25952256,513147,126483 -g1,14718:9855799,44452744 -g1,14718:12065673,44452744 -g1,14718:15190429,44452744 -k1,14719:32583029,44452744:14902232 -g1,14719:32583029,44452744 -) -] -(1,14721:32583029,45706769:0,0,0 -g1,14721:32583029,45706769 -) -) -] -(1,14721:6630773,47279633:25952256,0,0 -h1,14721:6630773,47279633:25952256,0,0 -) -] -h1,14721:4262630,4025873:0,0,0 -] -!16259 -}284 -Input:2226:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2227:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2228:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2229:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2230:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2231:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2232:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2233:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2234:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2235:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2236:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2237:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2238:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2239:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2240:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2241:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1388 -{285 -[1,14750:4262630,47279633:28320399,43253760,0 -(1,14750:4262630,4025873:0,0,0 -[1,14750:-473657,4025873:25952256,0,0 -(1,14750:-473657,-710414:25952256,0,0 -h1,14750:-473657,-710414:0,0,0 -(1,14750:-473657,-710414:0,0,0 -(1,14750:-473657,-710414:0,0,0 -g1,14750:-473657,-710414 -(1,14750:-473657,-710414:65781,0,65781 -g1,14750:-407876,-710414 -[1,14750:-407876,-644633:0,0,0 +v1,14739:6630773,17439191:0,393216,0 +(1,14740:6630773,19717358:25952256,2671383,616038 +g1,14740:6630773,19717358 +(1,14740:6630773,19717358:25952256,2671383,616038 +(1,14740:6630773,20333396:25952256,3287421,0 +[1,14740:6630773,20333396:25952256,3287421,0 +(1,14740:6630773,20307182:25952256,3234993,0 +r1,14740:6656987,20307182:26214,3234993,0 +[1,14740:6656987,20307182:25899828,3234993,0 +(1,14740:6656987,19717358:25899828,2055345,0 +[1,14740:7246811,19717358:24720180,2055345,0 +(1,14740:7246811,18749387:24720180,1087374,126483 +k1,14739:8682701,18749387:226187 +k1,14739:10158660,18749387:226187 +k1,14739:11403931,18749387:226186 +k1,14739:13126305,18749387:226187 +k1,14739:14300143,18749387:226187 +k1,14739:15545415,18749387:226187 +k1,14739:16740879,18749387:226187 +k1,14739:18616607,18749387:226187 +k1,14739:20698117,18749387:226186 +k1,14739:21575732,18749387:226187 +k1,14739:23825671,18749387:226187 +k1,14739:24407718,18749387:226187 +k1,14739:25678549,18749387:226187 +k1,14739:27727947,18749387:226186 +k1,14739:29924802,18749387:226187 +k1,14739:31307699,18749387:226187 +k1,14739:31966991,18749387:0 +) +(1,14740:7246811,19590875:24720180,505283,126483 +g1,14739:8465125,19590875 +g1,14739:9836793,19590875 +g1,14739:11643620,19590875 +g1,14739:12374346,19590875 +g1,14739:14443973,19590875 +g1,14739:15294630,19590875 +k1,14740:31966991,19590875:14933035 +g1,14740:31966991,19590875 +) +] +) +] +r1,14740:32583029,20307182:26214,3234993,0 +) +] +) +) +g1,14740:32583029,19717358 +) +h1,14740:6630773,20333396:0,0,0 +(1,14742:6630773,23140964:25952256,32768,229376 +(1,14742:6630773,23140964:0,32768,229376 +(1,14742:6630773,23140964:5505024,32768,229376 +r1,14742:12135797,23140964:5505024,262144,229376 +) +k1,14742:6630773,23140964:-5505024 +) +(1,14742:6630773,23140964:25952256,32768,0 +r1,14742:32583029,23140964:25952256,32768,0 +) +) +(1,14742:6630773,24745292:25952256,606339,14155 +(1,14742:6630773,24745292:2464678,582746,14155 +g1,14742:6630773,24745292 +g1,14742:9095451,24745292 +) +k1,14742:32583030,24745292:20355220 +g1,14742:32583030,24745292 +) +(1,14746:6630773,25979996:25952256,513147,134348 +k1,14745:7528562,25979996:269954 +k1,14745:10800718,25979996:269953 +k1,14745:13325766,25979996:269954 +k1,14745:14587280,25979996:269954 +k1,14745:15876318,25979996:269953 +k1,14745:19451253,25979996:269954 +k1,14745:20380499,25979996:269954 +k1,14745:22151226,25979996:269953 +k1,14745:24621879,25979996:269954 +k1,14745:26449624,25979996:269954 +k1,14745:29963609,25979996:269953 +k1,14745:31563944,25979996:269954 +k1,14745:32583029,25979996:0 +) +(1,14746:6630773,26821484:25952256,513147,126483 +k1,14745:9652739,26821484:259623 +k1,14745:12781529,26821484:259624 +k1,14745:13700444,26821484:259623 +k1,14745:14315928,26821484:259624 +k1,14745:15852848,26821484:259623 +k1,14745:17104031,26821484:259623 +k1,14745:20238719,26821484:259624 +k1,14745:22196380,26821484:259623 +k1,14745:25692826,26821484:259623 +k1,14745:28302571,26821484:259624 +k1,14745:29245079,26821484:259623 +k1,14745:31316118,26821484:259624 +k1,14745:32227169,26821484:259623 +k1,14745:32583029,26821484:0 +) +(1,14746:6630773,27662972:25952256,513147,126483 +k1,14745:8041435,27662972:253952 +k1,14745:10752332,27662972:253952 +k1,14745:11821552,27662972:253952 +k1,14745:13141774,27662972:253951 +k1,14745:14849315,27662972:253952 +k1,14745:16651883,27662972:253952 +k1,14745:20080399,27662972:253952 +k1,14745:21017236,27662972:253952 +k1,14745:23173698,27662972:253952 +k1,14745:24419210,27662972:253952 +k1,14745:26186387,27662972:253951 +k1,14745:27091767,27662972:253952 +k1,14745:28623016,27662972:253952 +k1,14745:29896053,27662972:253952 +k1,14746:32583029,27662972:0 +) +(1,14746:6630773,28504460:25952256,505283,134348 +k1,14745:8487146,28504460:258605 +k1,14745:9428636,28504460:258605 +k1,14745:13369054,28504460:258605 +k1,14745:14699828,28504460:258605 +k1,14745:17285616,28504460:258605 +k1,14745:18874601,28504460:258604 +k1,14745:22590230,28504460:258605 +k1,14745:24620273,28504460:258605 +k1,14745:26451087,28504460:258605 +k1,14745:28498170,28504460:258605 +k1,14745:32583029,28504460:0 +) +(1,14746:6630773,29345948:25952256,513147,134348 +k1,14745:10589366,29345948:168646 +k1,14745:11949457,29345948:168646 +k1,14745:13576278,29345948:168645 +k1,14745:15030085,29345948:168646 +k1,14745:16190291,29345948:168646 +k1,14745:19564303,29345948:168646 +k1,14745:20924394,29345948:168646 +k1,14745:21559001,29345948:168646 +k1,14745:24790799,29345948:168645 +k1,14745:25642330,29345948:168646 +k1,14745:27050917,29345948:168646 +k1,14745:29754496,29345948:168646 +k1,14745:32583029,29345948:0 +) +(1,14746:6630773,30187436:25952256,513147,126483 +k1,14745:9486905,30187436:188161 +k1,14745:11906567,30187436:188161 +k1,14745:15532746,30187436:188160 +k1,14745:17664705,30187436:188161 +k1,14745:21732598,30187436:188161 +k1,14745:24415059,30187436:188161 +k1,14745:27693242,30187436:188160 +k1,14745:28567565,30187436:188161 +k1,14745:31391584,30187436:188161 +k1,14745:32583029,30187436:0 +) +(1,14746:6630773,31028924:25952256,513147,134348 +k1,14745:11460940,31028924:257065 +k1,14745:14979076,31028924:257065 +k1,14745:18308469,31028924:257065 +k1,14745:21475987,31028924:257064 +k1,14745:23693889,31028924:257065 +k1,14745:27177947,31028924:257065 +k1,14745:29095694,31028924:257065 +k1,14745:31227089,31028924:257065 +k1,14746:32583029,31028924:0 +) +(1,14746:6630773,31870412:25952256,505283,126483 +k1,14745:9708835,31870412:183992 +k1,14745:11903472,31870412:183992 +k1,14745:15012991,31870412:183992 +k1,14745:17687352,31870412:183993 +k1,14745:19756815,31870412:183992 +k1,14745:21638845,31870412:183992 +k1,14745:23788262,31870412:183992 +k1,14745:24623682,31870412:183992 +k1,14745:25163534,31870412:183992 +k1,14745:26798494,31870412:183993 +k1,14745:29280834,31870412:183992 +k1,14745:30596633,31870412:183992 +k1,14745:32583029,31870412:0 +) +(1,14746:6630773,32711900:25952256,505283,134348 +k1,14745:9216227,32711900:251062 +k1,14745:11873117,32711900:251063 +k1,14745:12740217,32711900:251062 +k1,14745:15047800,32711900:251063 +k1,14745:15926697,32711900:251062 +k1,14745:18843765,32711900:251063 +k1,14745:19746255,32711900:251062 +k1,14745:22855343,32711900:251063 +k1,14745:25265816,32711900:251062 +k1,14745:27213606,32711900:251063 +k1,14745:29799060,32711900:251062 +k1,14745:32583029,32711900:0 +) +(1,14746:6630773,33553388:25952256,513147,134348 +k1,14745:9622492,33553388:187433 +k1,14745:12215751,33553388:187433 +k1,14745:14114328,33553388:187432 +k1,14745:15406043,33553388:187433 +k1,14745:17855779,33553388:187433 +k1,14745:19062297,33553388:187433 +k1,14745:20736742,33553388:187433 +k1,14745:23258567,33553388:187433 +k1,14745:25851826,33553388:187432 +k1,14745:26800787,33553388:187433 +k1,14745:29175812,33553388:187433 +k1,14745:32583029,33553388:0 +) +(1,14746:6630773,34394876:25952256,505283,126483 +k1,14745:9072364,34394876:186497 +k1,14745:9910288,34394876:186496 +k1,14745:10452645,34394876:186497 +k1,14745:12090108,34394876:186496 +k1,14745:14059840,34394876:186497 +k1,14745:15759562,34394876:186496 +k1,14745:16562097,34394876:186497 +k1,14745:17951835,34394876:186497 +k1,14745:19549977,34394876:186496 +k1,14745:23143691,34394876:186497 +k1,14745:25585281,34394876:186496 +k1,14745:28058985,34394876:186497 +k1,14745:29237041,34394876:186496 +k1,14745:31773659,34394876:186497 +k1,14745:32583029,34394876:0 +) +(1,14746:6630773,35236364:25952256,513147,126483 +k1,14745:7875907,35236364:226049 +k1,14745:9071232,35236364:226048 +k1,14745:9767174,35236364:226049 +k1,14745:10524720,35236364:226049 +k1,14745:12036584,35236364:226048 +k1,14745:14892593,35236364:226049 +k1,14745:15770070,35236364:226049 +k1,14745:17925499,35236364:226049 +k1,14745:19434742,35236364:226048 +k1,14745:21647187,35236364:226049 +k1,14745:25910254,35236364:226049 +k1,14745:27420808,35236364:226048 +k1,14745:29657502,35236364:226049 +k1,14745:32583029,35236364:0 +) +(1,14746:6630773,36077852:25952256,513147,134348 +g1,14745:9320370,36077852 +g1,14745:11721609,36077852 +g1,14745:12572266,36077852 +(1,14745:12572266,36077852:0,452978,122846 +r1,14745:16799362,36077852:4227096,575824,122846 +k1,14745:12572266,36077852:-4227096 +) +(1,14745:12572266,36077852:4227096,452978,122846 +k1,14745:12572266,36077852:3277 +h1,14745:16796085,36077852:0,411205,112570 +) +g1,14745:16998591,36077852 +g1,14745:18765441,36077852 +k1,14746:32583029,36077852:10815385 +g1,14746:32583029,36077852 +) +(1,14747:6630773,38169112:25952256,555811,139132 +(1,14747:6630773,38169112:2899444,534184,12975 +g1,14747:6630773,38169112 +g1,14747:9530217,38169112 +) +g1,14747:13204624,38169112 +k1,14747:32583029,38169112:16741367 +g1,14747:32583029,38169112 +) +(1,14750:6630773,39403816:25952256,513147,134348 +k1,14749:8064221,39403816:236761 +k1,14749:10287379,39403816:236762 +k1,14749:12037366,39403816:236761 +k1,14749:13035656,39403816:236762 +k1,14749:15537997,39403816:236761 +k1,14749:16306256,39403816:236762 +(1,14749:16306256,39403816:0,452978,122846 +r1,14749:20533352,39403816:4227096,575824,122846 +k1,14749:16306256,39403816:-4227096 +) +(1,14749:16306256,39403816:4227096,452978,122846 +k1,14749:16306256,39403816:3277 +h1,14749:20530075,39403816:0,411205,112570 +) +k1,14749:20770113,39403816:236761 +k1,14749:22400826,39403816:236762 +k1,14749:24903167,39403816:236761 +k1,14749:28716229,39403816:236762 +k1,14749:29580825,39403816:236761 +k1,14749:32583029,39403816:0 +) +(1,14750:6630773,40245304:25952256,513147,126483 +k1,14749:10310911,40245304:242119 +k1,14749:12869728,40245304:242119 +k1,14749:14103407,40245304:242119 +k1,14749:16727104,40245304:242119 +k1,14749:17655384,40245304:242118 +k1,14749:21604219,40245304:242119 +k1,14749:25045806,40245304:242119 +k1,14749:26681876,40245304:242119 +k1,14749:30708699,40245304:242119 +k1,14749:32583029,40245304:0 +) +(1,14750:6630773,41086792:25952256,513147,134348 +k1,14749:10534292,41086792:292485 +k1,14749:12508431,41086792:292485 +k1,14749:15684501,41086792:292486 +k1,14749:17669126,41086792:292485 +k1,14749:19995849,41086792:292485 +k1,14749:23757810,41086792:292485 +k1,14749:25246982,41086792:292485 +(1,14749:25246982,41086792:0,452978,115847 +r1,14749:28418942,41086792:3171960,568825,115847 +k1,14749:25246982,41086792:-3171960 +) +(1,14749:25246982,41086792:3171960,452978,115847 +k1,14749:25246982,41086792:3277 +h1,14749:28415665,41086792:0,411205,112570 +) +k1,14749:28711428,41086792:292486 +k1,14749:29951564,41086792:292485 +k1,14749:31470228,41086792:292485 +k1,14750:32583029,41086792:0 +) +(1,14750:6630773,41928280:25952256,513147,134348 +k1,14749:8839437,41928280:239307 +k1,14749:12339815,41928280:239307 +k1,14749:13110619,41928280:239307 +k1,14749:15044688,41928280:239308 +k1,14749:15900033,41928280:239307 +k1,14749:18331519,41928280:239307 +k1,14749:19762271,41928280:239307 +k1,14749:22111182,41928280:239307 +k1,14749:23116605,41928280:239307 +k1,14749:24582092,41928280:239308 +k1,14749:27690565,41928280:239307 +k1,14749:28545910,41928280:239307 +k1,14749:29804302,41928280:239307 +k1,14749:32583029,41928280:0 +) +(1,14750:6630773,42769768:25952256,513147,134348 +k1,14749:8891250,42769768:274081 +k1,14749:11124857,42769768:274081 +k1,14749:12085100,42769768:274081 +k1,14749:13378266,42769768:274081 +k1,14749:14921124,42769768:274081 +k1,14749:15854497,42769768:274081 +k1,14749:17825305,42769768:274081 +k1,14749:20968551,42769768:274080 +k1,14749:21774129,42769768:274081 +k1,14749:22809738,42769768:274081 +k1,14749:25349399,42769768:274081 +k1,14749:28005058,42769768:274081 +k1,14749:30638435,42769768:274081 +k1,14749:31563944,42769768:274081 +k1,14749:32583029,42769768:0 +) +(1,14750:6630773,43611256:25952256,513147,126483 +k1,14749:8249383,43611256:184682 +k1,14749:9876512,43611256:184682 +k1,14749:12665595,43611256:184682 +k1,14749:16304681,43611256:184683 +(1,14749:16304681,43611256:0,459977,115847 +r1,14749:20180065,43611256:3875384,575824,115847 +k1,14749:16304681,43611256:-3875384 +) +(1,14749:16304681,43611256:3875384,459977,115847 +k1,14749:16304681,43611256:3277 +h1,14749:20176788,43611256:0,411205,112570 +) +k1,14749:20538417,43611256:184682 +k1,14749:22735054,43611256:184682 +k1,14749:23938821,43611256:184682 +k1,14749:25454539,43611256:184682 +k1,14749:27647244,43611256:184682 +k1,14749:28483355,43611256:184683 +k1,14749:29415803,43611256:184682 +k1,14749:30708699,43611256:184682 +k1,14749:32583029,43611256:0 +) +(1,14750:6630773,44452744:25952256,513147,126483 +g1,14749:9855799,44452744 +g1,14749:12065673,44452744 +g1,14749:15190429,44452744 +k1,14750:32583029,44452744:14902232 +g1,14750:32583029,44452744 +) +] +(1,14752:32583029,45706769:0,0,0 +g1,14752:32583029,45706769 +) +) +] +(1,14752:6630773,47279633:25952256,0,0 +h1,14752:6630773,47279633:25952256,0,0 +) +] +h1,14752:4262630,4025873:0,0,0 +] +!16263 +}285 +Input:2223:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2224:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2225:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2226:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2227:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2228:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2229:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2230:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2231:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2232:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2233:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2234:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2235:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2236:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2237:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2238:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1484 +{286 +[1,14781:4262630,47279633:28320399,43253760,0 +(1,14781:4262630,4025873:0,0,0 +[1,14781:-473657,4025873:25952256,0,0 +(1,14781:-473657,-710414:25952256,0,0 +h1,14781:-473657,-710414:0,0,0 +(1,14781:-473657,-710414:0,0,0 +(1,14781:-473657,-710414:0,0,0 +g1,14781:-473657,-710414 +(1,14781:-473657,-710414:65781,0,65781 +g1,14781:-407876,-710414 +[1,14781:-407876,-644633:0,0,0 ] ) -k1,14750:-473657,-710414:-65781 +k1,14781:-473657,-710414:-65781 ) ) -k1,14750:25478599,-710414:25952256 -g1,14750:25478599,-710414 +k1,14781:25478599,-710414:25952256 +g1,14781:25478599,-710414 ) ] ) -[1,14750:6630773,47279633:25952256,43253760,0 -[1,14750:6630773,4812305:25952256,786432,0 -(1,14750:6630773,4812305:25952256,513147,134348 -(1,14750:6630773,4812305:25952256,513147,134348 -g1,14750:3078558,4812305 -[1,14750:3078558,4812305:0,0,0 -(1,14750:3078558,2439708:0,1703936,0 -k1,14750:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14750:2537886,2439708:1179648,16384,0 +[1,14781:6630773,47279633:25952256,43253760,0 +[1,14781:6630773,4812305:25952256,786432,0 +(1,14781:6630773,4812305:25952256,505283,11795 +(1,14781:6630773,4812305:25952256,505283,11795 +g1,14781:3078558,4812305 +[1,14781:3078558,4812305:0,0,0 +(1,14781:3078558,2439708:0,1703936,0 +k1,14781:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14781:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14750:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14781:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14750:3078558,4812305:0,0,0 -(1,14750:3078558,2439708:0,1703936,0 -g1,14750:29030814,2439708 -g1,14750:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14750:36151628,1915420:16384,1179648,0 +[1,14781:3078558,4812305:0,0,0 +(1,14781:3078558,2439708:0,1703936,0 +g1,14781:29030814,2439708 +g1,14781:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14781:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14750:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14781:37855564,2439708:1179648,16384,0 ) ) -k1,14750:3078556,2439708:-34777008 +k1,14781:3078556,2439708:-34777008 ) ] -[1,14750:3078558,4812305:0,0,0 -(1,14750:3078558,49800853:0,16384,2228224 -k1,14750:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14750:2537886,49800853:1179648,16384,0 +[1,14781:3078558,4812305:0,0,0 +(1,14781:3078558,49800853:0,16384,2228224 +k1,14781:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14781:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14750:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14781:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14750:3078558,4812305:0,0,0 -(1,14750:3078558,49800853:0,16384,2228224 -g1,14750:29030814,49800853 -g1,14750:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14750:36151628,51504789:16384,1179648,0 +[1,14781:3078558,4812305:0,0,0 +(1,14781:3078558,49800853:0,16384,2228224 +g1,14781:29030814,49800853 +g1,14781:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14781:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14750:37855564,49800853:1179648,16384,0 -) -) -k1,14750:3078556,49800853:-34777008 -) -] -g1,14750:6630773,4812305 -k1,14750:25712890,4812305:17886740 -g1,14750:29057847,4812305 -g1,14750:29873114,4812305 -) -) -] -[1,14750:6630773,45706769:25952256,40108032,0 -(1,14750:6630773,45706769:25952256,40108032,0 -(1,14750:6630773,45706769:0,0,0 -g1,14750:6630773,45706769 -) -[1,14750:6630773,45706769:25952256,40108032,0 -v1,14721:6630773,6254097:0,393216,0 -(1,14722:6630773,12737866:25952256,6876985,616038 -g1,14722:6630773,12737866 -(1,14722:6630773,12737866:25952256,6876985,616038 -(1,14722:6630773,13353904:25952256,7493023,0 -[1,14722:6630773,13353904:25952256,7493023,0 -(1,14722:6630773,13327690:25952256,7440595,0 -r1,14722:6656987,13327690:26214,7440595,0 -[1,14722:6656987,13327690:25899828,7440595,0 -(1,14722:6656987,12737866:25899828,6260947,0 -[1,14722:7246811,12737866:24720180,6260947,0 -(1,14722:7246811,7562455:24720180,1085536,298548 -(1,14721:7246811,7562455:0,1085536,298548 -r1,14722:8753226,7562455:1506415,1384084,298548 -k1,14721:7246811,7562455:-1506415 -) -(1,14721:7246811,7562455:1506415,1085536,298548 -) -k1,14721:8943520,7562455:190294 -k1,14721:11590759,7562455:190294 -k1,14721:13256269,7562455:190295 -k1,14721:14255933,7562455:190294 -k1,14721:16217010,7562455:190294 -k1,14721:17216674,7562455:190294 -k1,14721:19295061,7562455:190295 -k1,14721:22526226,7562455:190294 -k1,14721:23478048,7562455:190294 -k1,14721:27108327,7562455:190294 -k1,14721:27984784,7562455:190295 -k1,14721:30491776,7562455:190294 -k1,14721:31966991,7562455:0 -) -(1,14722:7246811,8403943:24720180,513147,134348 -k1,14721:8247028,8403943:190847 -k1,14721:10208658,8403943:190847 -k1,14721:11208874,8403943:190846 -k1,14721:14673244,8403943:190847 -k1,14721:16710241,8403943:190847 -k1,14721:17583973,8403943:190847 -k1,14721:20990016,8403943:190847 -k1,14721:21808698,8403943:190847 -k1,14721:23018629,8403943:190846 -k1,14721:24947491,8403943:190847 -(1,14721:24947491,8403943:0,452978,115847 -r1,14722:28471163,8403943:3523672,568825,115847 -k1,14721:24947491,8403943:-3523672 -) -(1,14721:24947491,8403943:3523672,452978,115847 -k1,14721:24947491,8403943:3277 -h1,14721:28467886,8403943:0,411205,112570 -) -k1,14721:28662010,8403943:190847 -k1,14721:31966991,8403943:0 -) -(1,14722:7246811,9245431:24720180,513147,134348 -k1,14721:9128175,9245431:140072 -k1,14721:11134712,9245431:140072 -k1,14721:11926213,9245431:140073 -k1,14721:13085370,9245431:140072 -k1,14721:14841560,9245431:140072 -k1,14721:15640924,9245431:140072 -k1,14721:16800081,9245431:140072 -k1,14721:20730101,9245431:140073 -k1,14721:21529465,9245431:140072 -k1,14721:22688622,9245431:140072 -k1,14721:25353141,9245431:140072 -k1,14721:26840633,9245431:140072 -k1,14721:28172151,9245431:140073 -k1,14721:30330077,9245431:140072 -k1,14721:30947906,9245431:140072 -k1,14721:31966991,9245431:0 -) -(1,14722:7246811,10086919:24720180,513147,134348 -k1,14721:9058576,10086919:204822 -k1,14721:9946283,10086919:204822 -k1,14721:10991932,10086919:204822 -k1,14721:14261217,10086919:204821 -k1,14721:15457599,10086919:204822 -k1,14721:18247816,10086919:204822 -k1,14721:19135523,10086919:204822 -k1,14721:20274888,10086919:204822 -k1,14721:21131138,10086919:204822 -k1,14721:21691820,10086919:204822 -k1,14721:24654397,10086919:204822 -k1,14721:25475256,10086919:204821 -k1,14721:26699163,10086919:204822 -k1,14721:28932980,10086919:204822 -k1,14721:30834529,10086919:204822 -k1,14721:31966991,10086919:0 -) -(1,14722:7246811,10928407:24720180,513147,134348 -k1,14721:8175658,10928407:181081 -k1,14721:11449383,10928407:181081 -k1,14721:15350287,10928407:181081 -k1,14721:16190661,10928407:181082 -k1,14721:17390827,10928407:181081 -k1,14721:19731975,10928407:181081 -k1,14721:20866605,10928407:181081 -k1,14721:23218238,10928407:181081 -k1,14721:25792038,10928407:181081 -k1,14721:26328980,10928407:181082 -k1,14721:28126179,10928407:181081 -k1,14721:30162584,10928407:181081 -k1,14721:31611131,10928407:181081 -k1,14721:31966991,10928407:0 -) -(1,14722:7246811,11769895:24720180,505283,134348 -k1,14721:12462548,11769895:169465 -k1,14721:13788723,11769895:169465 -k1,14721:14719716,11769895:169465 -k1,14721:17076774,11769895:169466 -k1,14721:17602099,11769895:169465 -k1,14721:19889032,11769895:169465 -k1,14721:20926849,11769895:169465 -k1,14721:22626580,11769895:169465 -k1,14721:23447473,11769895:169465 -k1,14721:25857615,11769895:169466 -k1,14721:27046165,11769895:169465 -k1,14721:30280094,11769895:169465 -k1,14721:31966991,11769895:0 -) -(1,14722:7246811,12611383:24720180,513147,126483 -g1,14721:8393691,12611383 -g1,14721:11428007,12611383 -g1,14721:12719721,12611383 -(1,14721:12719721,12611383:0,452978,115847 -r1,14722:14484834,12611383:1765113,568825,115847 -k1,14721:12719721,12611383:-1765113 -) -(1,14721:12719721,12611383:1765113,452978,115847 -k1,14721:12719721,12611383:3277 -h1,14721:14481557,12611383:0,411205,112570 -) -g1,14721:14684063,12611383 -g1,14721:17210475,12611383 -g1,14721:18076860,12611383 -(1,14721:18076860,12611383:0,452978,115847 -r1,14722:19841973,12611383:1765113,568825,115847 -k1,14721:18076860,12611383:-1765113 -) -(1,14721:18076860,12611383:1765113,452978,115847 -k1,14721:18076860,12611383:3277 -h1,14721:19838696,12611383:0,411205,112570 -) -g1,14721:20041202,12611383 -g1,14721:21188082,12611383 -g1,14721:21743171,12611383 -g1,14721:23500191,12611383 -g1,14721:25664845,12611383 -g1,14721:27258025,12611383 -(1,14721:27258025,12611383:0,452978,122846 -r1,14722:31485121,12611383:4227096,575824,122846 -k1,14721:27258025,12611383:-4227096 -) -(1,14721:27258025,12611383:4227096,452978,122846 -k1,14721:27258025,12611383:3277 -h1,14721:31481844,12611383:0,411205,112570 -) -k1,14722:31966991,12611383:308200 -g1,14722:31966991,12611383 -) -] -) -] -r1,14722:32583029,13327690:26214,7440595,0 -) -] -) -) -g1,14722:32583029,12737866 -) -h1,14722:6630773,13353904:0,0,0 -(1,14725:6630773,14719680:25952256,513147,134348 -h1,14724:6630773,14719680:983040,0,0 -k1,14724:9266770,14719680:162668 -k1,14724:10448523,14719680:162668 -k1,14724:12876771,14719680:162668 -(1,14724:12876771,14719680:0,452978,122846 -r1,14724:17103867,14719680:4227096,575824,122846 -k1,14724:12876771,14719680:-4227096 -) -(1,14724:12876771,14719680:4227096,452978,122846 -k1,14724:12876771,14719680:3277 -h1,14724:17100590,14719680:0,411205,112570 -) -k1,14724:17266534,14719680:162667 -k1,14724:18533484,14719680:162668 -k1,14724:19443918,14719680:162668 -k1,14724:21572011,14719680:162668 -k1,14724:22386107,14719680:162668 -k1,14724:22904635,14719680:162668 -k1,14724:24518270,14719680:162668 -k1,14724:25332365,14719680:162667 -k1,14724:27757336,14719680:162668 -k1,14724:28551771,14719680:162668 -k1,14724:29180400,14719680:162668 -k1,14724:32583029,14719680:0 -) -(1,14725:6630773,15561168:25952256,513147,126483 -k1,14724:9620979,15561168:227863 -k1,14724:10500271,15561168:227864 -k1,14724:11747219,15561168:227863 -k1,14724:14570964,15561168:227864 -k1,14724:15790387,15561168:227863 -k1,14724:18223538,15561168:227864 -k1,14724:20149439,15561168:227863 -k1,14724:22418749,15561168:227864 -k1,14724:23274447,15561168:227863 -k1,14724:24705552,15561168:227864 -k1,14724:27594832,15561168:227863 -k1,14724:28691048,15561168:227864 -k1,14724:31563944,15561168:227863 -k1,14724:32583029,15561168:0 -) -(1,14725:6630773,16402656:25952256,513147,134348 -k1,14724:9138508,16402656:242155 -k1,14724:10814592,16402656:242156 -k1,14724:12325524,16402656:242155 -k1,14724:13961631,16402656:242156 -k1,14724:14559646,16402656:242155 -k1,14724:16661058,16402656:242156 -k1,14724:18059923,16402656:242155 -k1,14724:19493523,16402656:242155 -k1,14724:20754764,16402656:242156 -k1,14724:23262499,16402656:242155 -k1,14724:26580915,16402656:242156 -k1,14724:28154106,16402656:242155 -k1,14724:29790213,16402656:242156 -k1,14724:31189078,16402656:242155 -k1,14724:32583029,16402656:0 -) -(1,14725:6630773,17244144:25952256,513147,7863 -k1,14725:32583029,17244144:24016322 -g1,14725:32583029,17244144 -) -v1,14727:6630773,18434610:0,393216,0 -(1,14734:6630773,20748241:25952256,2706847,196608 -g1,14734:6630773,20748241 -g1,14734:6630773,20748241 -g1,14734:6434165,20748241 -(1,14734:6434165,20748241:0,2706847,196608 -r1,14734:32779637,20748241:26345472,2903455,196608 -k1,14734:6434165,20748241:-26345472 -) -(1,14734:6434165,20748241:26345472,2706847,196608 -[1,14734:6630773,20748241:25952256,2510239,0 -(1,14729:6630773,18648520:25952256,410518,107478 -(1,14728:6630773,18648520:0,0,0 -g1,14728:6630773,18648520 -g1,14728:6630773,18648520 -g1,14728:6303093,18648520 -(1,14728:6303093,18648520:0,0,0 -) -g1,14728:6630773,18648520 -) -k1,14729:6630773,18648520:0 -g1,14729:12637541,18648520 -g1,14729:14850561,18648520 -g1,14729:16115144,18648520 -h1,14729:16431290,18648520:0,0,0 -k1,14729:32583029,18648520:16151739 -g1,14729:32583029,18648520 -) -(1,14730:6630773,19314698:25952256,404226,107478 -h1,14730:6630773,19314698:0,0,0 -g1,14730:6946919,19314698 -g1,14730:7263065,19314698 -g1,14730:11372959,19314698 -h1,14730:11689105,19314698:0,0,0 -k1,14730:32583029,19314698:20893924 -g1,14730:32583029,19314698 -) -(1,14731:6630773,19980876:25952256,404226,107478 -h1,14731:6630773,19980876:0,0,0 -g1,14731:6946919,19980876 -g1,14731:7263065,19980876 -g1,14731:13902125,19980876 -g1,14731:14534417,19980876 -k1,14731:14534417,19980876:0 -h1,14731:15482854,19980876:0,0,0 -k1,14731:32583030,19980876:17100176 -g1,14731:32583030,19980876 -) -(1,14732:6630773,20647054:25952256,410518,101187 -h1,14732:6630773,20647054:0,0,0 -g1,14732:6946919,20647054 -g1,14732:7263065,20647054 -g1,14732:7579211,20647054 -g1,14732:7895357,20647054 -g1,14732:8211503,20647054 -g1,14732:8527649,20647054 -g1,14732:8843795,20647054 -g1,14732:9159941,20647054 -g1,14732:9476087,20647054 -g1,14732:9792233,20647054 -g1,14732:10108379,20647054 -g1,14732:10424525,20647054 -g1,14732:10740671,20647054 -g1,14732:14534419,20647054 -g1,14732:15166711,20647054 -h1,14732:17695877,20647054:0,0,0 -k1,14732:32583029,20647054:14887152 -g1,14732:32583029,20647054 -) -] -) -g1,14734:32583029,20748241 -g1,14734:6630773,20748241 -g1,14734:6630773,20748241 -g1,14734:32583029,20748241 -g1,14734:32583029,20748241 -) -h1,14734:6630773,20944849:0,0,0 -(1,14737:6630773,32009351:25952256,10474678,0 -k1,14737:12599879,32009351:5969106 -h1,14736:12599879,32009351:0,0,0 -(1,14736:12599879,32009351:14014044,10474678,0 -(1,14736:12599879,32009351:14014766,10474704,0 -(1,14736:12599879,32009351:14014766,10474704,0 -(1,14736:12599879,32009351:0,10474704,0 -(1,14736:12599879,32009351:0,14155776,0 -(1,14736:12599879,32009351:18939904,14155776,0 -) -k1,14736:12599879,32009351:-18939904 -) -) -g1,14736:26614645,32009351 -) -) -) -g1,14737:26613923,32009351 -k1,14737:32583029,32009351:5969106 -) -v1,14745:6630773,33375127:0,393216,0 -(1,14746:6630773,37325634:25952256,4343723,616038 -g1,14746:6630773,37325634 -(1,14746:6630773,37325634:25952256,4343723,616038 -(1,14746:6630773,37941672:25952256,4959761,0 -[1,14746:6630773,37941672:25952256,4959761,0 -(1,14746:6630773,37915458:25952256,4907333,0 -r1,14746:6656987,37915458:26214,4907333,0 -[1,14746:6656987,37915458:25899828,4907333,0 -(1,14746:6656987,37325634:25899828,3727685,0 -[1,14746:7246811,37325634:24720180,3727685,0 -(1,14746:7246811,34685323:24720180,1087374,134348 -k1,14745:8826425,34685323:369911 -k1,14745:11558908,34685323:369910 -k1,14745:12947904,34685323:369911 -k1,14745:14814001,34685323:369910 -k1,14745:15799950,34685323:369911 -k1,14745:17188945,34685323:369910 -k1,14745:20313334,34685323:369911 -k1,14745:22653912,34685323:369910 -k1,14745:23675251,34685323:369911 -k1,14745:25311317,34685323:369910 -k1,14745:26837938,34685323:369911 -k1,14745:27820610,34685323:369910 -k1,14745:28546381,34685323:369911 -k1,14745:30515369,34685323:369910 -k1,14745:31966991,34685323:0 -) -(1,14746:7246811,35526811:24720180,513147,134348 -k1,14745:8415249,35526811:509146 -k1,14745:9943479,35526811:509145 -k1,14745:13890644,35526811:509146 -k1,14745:16716487,35526811:509145 -k1,14745:18793254,35526811:509146 -k1,14745:22304602,35526811:509145 -(1,14745:22304602,35526811:0,452978,115847 -r1,14746:25828274,35526811:3523672,568825,115847 -k1,14745:22304602,35526811:-3523672 -) -(1,14745:22304602,35526811:3523672,452978,115847 -k1,14745:22304602,35526811:3277 -h1,14745:25824997,35526811:0,411205,112570 -) -k1,14745:26511090,35526811:509146 -(1,14745:26511090,35526811:0,452978,115847 -r1,14746:31793321,35526811:5282231,568825,115847 -k1,14745:26511090,35526811:-5282231 -) -(1,14745:26511090,35526811:5282231,452978,115847 -k1,14745:26511090,35526811:3277 -h1,14745:31790044,35526811:0,411205,112570 -) -k1,14746:31966991,35526811:0 -) -(1,14746:7246811,36368299:24720180,505283,122846 -(1,14745:7246811,36368299:0,452978,115847 -r1,14746:12529042,36368299:5282231,568825,115847 -k1,14745:7246811,36368299:-5282231 -) -(1,14745:7246811,36368299:5282231,452978,115847 -k1,14745:7246811,36368299:3277 -h1,14745:12525765,36368299:0,411205,112570 -) -k1,14745:13524124,36368299:821412 -(1,14745:13524124,36368299:0,452978,115847 -r1,14746:19158067,36368299:5633943,568825,115847 -k1,14745:13524124,36368299:-5633943 -) -(1,14745:13524124,36368299:5633943,452978,115847 -k1,14745:13524124,36368299:3277 -h1,14745:19154790,36368299:0,411205,112570 -) -k1,14745:20153149,36368299:821412 -(1,14745:20153149,36368299:0,452978,122846 -r1,14746:24731957,36368299:4578808,575824,122846 -k1,14745:20153149,36368299:-4578808 -) -(1,14745:20153149,36368299:4578808,452978,122846 -k1,14745:20153149,36368299:3277 -h1,14745:24728680,36368299:0,411205,112570 -) -k1,14745:25727038,36368299:821411 -(1,14745:25727038,36368299:0,452978,115847 -r1,14746:29954134,36368299:4227096,568825,115847 -k1,14745:25727038,36368299:-4227096 -) -(1,14745:25727038,36368299:4227096,452978,115847 -k1,14745:25727038,36368299:3277 -h1,14745:29950857,36368299:0,411205,112570 -) -k1,14745:30775546,36368299:821412 -k1,14746:31966991,36368299:0 -) -(1,14746:7246811,37209787:24720180,452978,115847 -(1,14745:7246811,37209787:0,452978,115847 -r1,14746:11473907,37209787:4227096,568825,115847 -k1,14745:7246811,37209787:-4227096 -) -(1,14745:7246811,37209787:4227096,452978,115847 -k1,14745:7246811,37209787:3277 -h1,14745:11470630,37209787:0,411205,112570 -) -k1,14746:31966991,37209787:20319414 -g1,14746:31966991,37209787 -) -] -) -] -r1,14746:32583029,37915458:26214,4907333,0 -) -] -) -) -g1,14746:32583029,37325634 -) -h1,14746:6630773,37941672:0,0,0 -v1,14749:6630773,39307448:0,393216,0 -(1,14750:6630773,45033943:25952256,6119711,589824 -g1,14750:6630773,45033943 -(1,14750:6630773,45033943:25952256,6119711,589824 -(1,14750:6630773,45623767:25952256,6709535,0 -[1,14750:6630773,45623767:25952256,6709535,0 -(1,14750:6630773,45623767:25952256,6683321,0 -r1,14750:6656987,45623767:26214,6683321,0 -[1,14750:6656987,45623767:25899828,6683321,0 -(1,14750:6656987,45033943:25899828,5503673,0 -[1,14750:7246811,45033943:24720180,5503673,0 -(1,14750:7246811,40692155:24720180,1161885,196608 -(1,14749:7246811,40692155:0,1161885,196608 -r1,14750:8794447,40692155:1547636,1358493,196608 -k1,14749:7246811,40692155:-1547636 -) -(1,14749:7246811,40692155:1547636,1161885,196608 -) -k1,14749:9253961,40692155:459514 -k1,14749:13106273,40692155:459513 -k1,14749:16482794,40692155:459514 -k1,14749:18088532,40692155:459513 -(1,14749:18088532,40692155:0,452978,122846 -r1,14750:22315628,40692155:4227096,575824,122846 -k1,14749:18088532,40692155:-4227096 -) -(1,14749:18088532,40692155:4227096,452978,122846 -k1,14749:18088532,40692155:3277 -h1,14749:22312351,40692155:0,411205,112570 -) -k1,14749:22775142,40692155:459514 -k1,14749:24399885,40692155:459513 -k1,14749:25475437,40692155:459514 -k1,14749:28124509,40692155:459514 -k1,14749:29650293,40692155:459513 -k1,14749:31966991,40692155:0 -) -(1,14750:7246811,41533643:24720180,513147,134348 -k1,14749:8753025,41533643:434045 -k1,14749:11514253,41533643:434045 -k1,14749:12939858,41533643:434045 -k1,14749:17410921,41533643:434045 -k1,14749:18504258,41533643:434045 -k1,14749:20924699,41533643:434045 -k1,14749:23822242,41533643:434045 -k1,14749:25452974,41533643:434045 -k1,14749:28142113,41533643:434045 -k1,14749:29956346,41533643:434045 -k1,14749:31966991,41533643:0 -) -(1,14750:7246811,42375131:24720180,505283,134348 -k1,14749:9422213,42375131:477364 -k1,14749:11767353,42375131:477364 -k1,14749:14616465,42375131:477364 -k1,14749:15903199,42375131:477364 -k1,14749:17399649,42375131:477365 -k1,14749:21279642,42375131:477364 -k1,14749:23962293,42375131:477364 -k1,14749:25091085,42375131:477364 -k1,14749:27077088,42375131:477364 -k1,14749:31339156,42375131:477364 -k1,14749:31966991,42375131:0 -) -(1,14750:7246811,43216619:24720180,513147,122846 -k1,14749:9342801,43216619:394020 -k1,14749:11865431,43216619:394021 -(1,14749:11865431,43216619:0,452978,122846 -r1,14750:21016493,43216619:9151062,575824,122846 -k1,14749:11865431,43216619:-9151062 -) -(1,14749:11865431,43216619:9151062,452978,122846 -g1,14749:19254657,43216619 -g1,14749:19958081,43216619 -h1,14749:21013216,43216619:0,411205,112570 -) -k1,14749:21584183,43216619:394020 -k1,14749:24237884,43216619:394020 -k1,14749:24987764,43216619:394020 -k1,14749:28144128,43216619:394021 -k1,14749:30524544,43216619:394020 -k1,14750:31966991,43216619:0 -) -(1,14750:7246811,44058107:24720180,513147,122846 -(1,14749:7246811,44058107:0,452978,122846 -r1,14750:16397873,44058107:9151062,575824,122846 -k1,14749:7246811,44058107:-9151062 -) -(1,14749:7246811,44058107:9151062,452978,122846 -g1,14749:14636037,44058107 -g1,14749:15339461,44058107 -h1,14749:16394596,44058107:0,411205,112570 -) -k1,14749:16818365,44058107:246822 -k1,14749:17693023,44058107:246823 -k1,14749:19143086,44058107:246822 -k1,14749:20930659,44058107:246822 -k1,14749:21863644,44058107:246823 -k1,14749:23709544,44058107:246822 -k1,14749:24615658,44058107:246822 -k1,14749:27624824,44058107:246823 -k1,14749:29097825,44058107:246822 -k1,14749:31966991,44058107:0 -) -(1,14750:7246811,44899595:24720180,513147,134348 -k1,14749:8484459,44899595:246088 -k1,14749:11112124,44899595:246087 -k1,14749:13717508,44899595:246088 -k1,14749:14615024,44899595:246088 -k1,14749:15880197,44899595:246088 -k1,14749:17560212,44899595:246087 -k1,14749:19248747,44899595:246088 -k1,14749:20513920,44899595:246088 -k1,14749:22028784,44899595:246087 -k1,14749:22934164,44899595:246088 -k1,14749:23946368,44899595:246088 -k1,14749:25418635,44899595:246088 -k1,14749:28533888,44899595:246087 -k1,14749:31350953,44899595:246088 -k1,14749:31966991,44899595:0 -) -] -) -] -r1,14750:32583029,45623767:26214,6683321,0 -) -] -) -) -g1,14750:32583029,45033943 -) -] -(1,14750:32583029,45706769:0,0,0 -g1,14750:32583029,45706769 -) -) -] -(1,14750:6630773,47279633:25952256,0,0 -h1,14750:6630773,47279633:25952256,0,0 -) -] -h1,14750:4262630,4025873:0,0,0 -] -!21131 -}285 -Input:2242:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2243:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2244:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 -{286 -[1,14809:4262630,47279633:28320399,43253760,0 -(1,14809:4262630,4025873:0,0,0 -[1,14809:-473657,4025873:25952256,0,0 -(1,14809:-473657,-710414:25952256,0,0 -h1,14809:-473657,-710414:0,0,0 -(1,14809:-473657,-710414:0,0,0 -(1,14809:-473657,-710414:0,0,0 -g1,14809:-473657,-710414 -(1,14809:-473657,-710414:65781,0,65781 -g1,14809:-407876,-710414 -[1,14809:-407876,-644633:0,0,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14781:37855564,49800853:1179648,16384,0 +) +) +k1,14781:3078556,49800853:-34777008 +) +] +g1,14781:6630773,4812305 +g1,14781:6630773,4812305 +g1,14781:9264009,4812305 +k1,14781:31387653,4812305:22123644 +) +) +] +[1,14781:6630773,45706769:25952256,40108032,0 +(1,14781:6630773,45706769:25952256,40108032,0 +(1,14781:6630773,45706769:0,0,0 +g1,14781:6630773,45706769 +) +[1,14781:6630773,45706769:25952256,40108032,0 +v1,14752:6630773,6254097:0,393216,0 +(1,14753:6630773,12737866:25952256,6876985,616038 +g1,14753:6630773,12737866 +(1,14753:6630773,12737866:25952256,6876985,616038 +(1,14753:6630773,13353904:25952256,7493023,0 +[1,14753:6630773,13353904:25952256,7493023,0 +(1,14753:6630773,13327690:25952256,7440595,0 +r1,14753:6656987,13327690:26214,7440595,0 +[1,14753:6656987,13327690:25899828,7440595,0 +(1,14753:6656987,12737866:25899828,6260947,0 +[1,14753:7246811,12737866:24720180,6260947,0 +(1,14753:7246811,7562455:24720180,1085536,298548 +(1,14752:7246811,7562455:0,1085536,298548 +r1,14753:8753226,7562455:1506415,1384084,298548 +k1,14752:7246811,7562455:-1506415 +) +(1,14752:7246811,7562455:1506415,1085536,298548 +) +k1,14752:8943520,7562455:190294 +k1,14752:11590759,7562455:190294 +k1,14752:13256269,7562455:190295 +k1,14752:14255933,7562455:190294 +k1,14752:16217010,7562455:190294 +k1,14752:17216674,7562455:190294 +k1,14752:19295061,7562455:190295 +k1,14752:22526226,7562455:190294 +k1,14752:23478048,7562455:190294 +k1,14752:27108327,7562455:190294 +k1,14752:27984784,7562455:190295 +k1,14752:30491776,7562455:190294 +k1,14752:31966991,7562455:0 +) +(1,14753:7246811,8403943:24720180,513147,134348 +k1,14752:8247028,8403943:190847 +k1,14752:10208658,8403943:190847 +k1,14752:11208874,8403943:190846 +k1,14752:14673244,8403943:190847 +k1,14752:16710241,8403943:190847 +k1,14752:17583973,8403943:190847 +k1,14752:20990016,8403943:190847 +k1,14752:21808698,8403943:190847 +k1,14752:23018629,8403943:190846 +k1,14752:24947491,8403943:190847 +(1,14752:24947491,8403943:0,452978,115847 +r1,14753:28471163,8403943:3523672,568825,115847 +k1,14752:24947491,8403943:-3523672 +) +(1,14752:24947491,8403943:3523672,452978,115847 +k1,14752:24947491,8403943:3277 +h1,14752:28467886,8403943:0,411205,112570 +) +k1,14752:28662010,8403943:190847 +k1,14752:31966991,8403943:0 +) +(1,14753:7246811,9245431:24720180,513147,134348 +k1,14752:9128175,9245431:140072 +k1,14752:11134712,9245431:140072 +k1,14752:11926213,9245431:140073 +k1,14752:13085370,9245431:140072 +k1,14752:14841560,9245431:140072 +k1,14752:15640924,9245431:140072 +k1,14752:16800081,9245431:140072 +k1,14752:20730101,9245431:140073 +k1,14752:21529465,9245431:140072 +k1,14752:22688622,9245431:140072 +k1,14752:25353141,9245431:140072 +k1,14752:26840633,9245431:140072 +k1,14752:28172151,9245431:140073 +k1,14752:30330077,9245431:140072 +k1,14752:30947906,9245431:140072 +k1,14752:31966991,9245431:0 +) +(1,14753:7246811,10086919:24720180,513147,134348 +k1,14752:9058576,10086919:204822 +k1,14752:9946283,10086919:204822 +k1,14752:10991932,10086919:204822 +k1,14752:14261217,10086919:204821 +k1,14752:15457599,10086919:204822 +k1,14752:18247816,10086919:204822 +k1,14752:19135523,10086919:204822 +k1,14752:20274888,10086919:204822 +k1,14752:21131138,10086919:204822 +k1,14752:21691820,10086919:204822 +k1,14752:24654397,10086919:204822 +k1,14752:25475256,10086919:204821 +k1,14752:26699163,10086919:204822 +k1,14752:28932980,10086919:204822 +k1,14752:30834529,10086919:204822 +k1,14752:31966991,10086919:0 +) +(1,14753:7246811,10928407:24720180,513147,134348 +k1,14752:8175658,10928407:181081 +k1,14752:11449383,10928407:181081 +k1,14752:15350287,10928407:181081 +k1,14752:16190661,10928407:181082 +k1,14752:17390827,10928407:181081 +k1,14752:19731975,10928407:181081 +k1,14752:20866605,10928407:181081 +k1,14752:23218238,10928407:181081 +k1,14752:25792038,10928407:181081 +k1,14752:26328980,10928407:181082 +k1,14752:28126179,10928407:181081 +k1,14752:30162584,10928407:181081 +k1,14752:31611131,10928407:181081 +k1,14752:31966991,10928407:0 +) +(1,14753:7246811,11769895:24720180,505283,134348 +k1,14752:12462548,11769895:169465 +k1,14752:13788723,11769895:169465 +k1,14752:14719716,11769895:169465 +k1,14752:17076774,11769895:169466 +k1,14752:17602099,11769895:169465 +k1,14752:19889032,11769895:169465 +k1,14752:20926849,11769895:169465 +k1,14752:22626580,11769895:169465 +k1,14752:23447473,11769895:169465 +k1,14752:25857615,11769895:169466 +k1,14752:27046165,11769895:169465 +k1,14752:30280094,11769895:169465 +k1,14752:31966991,11769895:0 +) +(1,14753:7246811,12611383:24720180,513147,126483 +g1,14752:8393691,12611383 +g1,14752:11428007,12611383 +g1,14752:12719721,12611383 +(1,14752:12719721,12611383:0,452978,115847 +r1,14753:14484834,12611383:1765113,568825,115847 +k1,14752:12719721,12611383:-1765113 +) +(1,14752:12719721,12611383:1765113,452978,115847 +k1,14752:12719721,12611383:3277 +h1,14752:14481557,12611383:0,411205,112570 +) +g1,14752:14684063,12611383 +g1,14752:17210475,12611383 +g1,14752:18076860,12611383 +(1,14752:18076860,12611383:0,452978,115847 +r1,14753:19841973,12611383:1765113,568825,115847 +k1,14752:18076860,12611383:-1765113 +) +(1,14752:18076860,12611383:1765113,452978,115847 +k1,14752:18076860,12611383:3277 +h1,14752:19838696,12611383:0,411205,112570 +) +g1,14752:20041202,12611383 +g1,14752:21188082,12611383 +g1,14752:21743171,12611383 +g1,14752:23500191,12611383 +g1,14752:25664845,12611383 +g1,14752:27258025,12611383 +(1,14752:27258025,12611383:0,452978,122846 +r1,14753:31485121,12611383:4227096,575824,122846 +k1,14752:27258025,12611383:-4227096 +) +(1,14752:27258025,12611383:4227096,452978,122846 +k1,14752:27258025,12611383:3277 +h1,14752:31481844,12611383:0,411205,112570 +) +k1,14753:31966991,12611383:308200 +g1,14753:31966991,12611383 +) +] +) +] +r1,14753:32583029,13327690:26214,7440595,0 +) +] +) +) +g1,14753:32583029,12737866 +) +h1,14753:6630773,13353904:0,0,0 +(1,14756:6630773,14567983:25952256,513147,134348 +h1,14755:6630773,14567983:983040,0,0 +k1,14755:9266770,14567983:162668 +k1,14755:10448523,14567983:162668 +k1,14755:12876771,14567983:162668 +(1,14755:12876771,14567983:0,452978,122846 +r1,14755:17103867,14567983:4227096,575824,122846 +k1,14755:12876771,14567983:-4227096 +) +(1,14755:12876771,14567983:4227096,452978,122846 +k1,14755:12876771,14567983:3277 +h1,14755:17100590,14567983:0,411205,112570 +) +k1,14755:17266534,14567983:162667 +k1,14755:18533484,14567983:162668 +k1,14755:19443918,14567983:162668 +k1,14755:21572011,14567983:162668 +k1,14755:22386107,14567983:162668 +k1,14755:22904635,14567983:162668 +k1,14755:24518270,14567983:162668 +k1,14755:25332365,14567983:162667 +k1,14755:27757336,14567983:162668 +k1,14755:28551771,14567983:162668 +k1,14755:29180400,14567983:162668 +k1,14755:32583029,14567983:0 +) +(1,14756:6630773,15409471:25952256,513147,126483 +k1,14755:9620979,15409471:227863 +k1,14755:10500271,15409471:227864 +k1,14755:11747219,15409471:227863 +k1,14755:14570964,15409471:227864 +k1,14755:15790387,15409471:227863 +k1,14755:18223538,15409471:227864 +k1,14755:20149439,15409471:227863 +k1,14755:22418749,15409471:227864 +k1,14755:23274447,15409471:227863 +k1,14755:24705552,15409471:227864 +k1,14755:27594832,15409471:227863 +k1,14755:28691048,15409471:227864 +k1,14755:31563944,15409471:227863 +k1,14755:32583029,15409471:0 +) +(1,14756:6630773,16250959:25952256,513147,134348 +k1,14755:9138508,16250959:242155 +k1,14755:10814592,16250959:242156 +k1,14755:12325524,16250959:242155 +k1,14755:13961631,16250959:242156 +k1,14755:14559646,16250959:242155 +k1,14755:16661058,16250959:242156 +k1,14755:18059923,16250959:242155 +k1,14755:19493523,16250959:242155 +k1,14755:20754764,16250959:242156 +k1,14755:23262499,16250959:242155 +k1,14755:26580915,16250959:242156 +k1,14755:28154106,16250959:242155 +k1,14755:29790213,16250959:242156 +k1,14755:31189078,16250959:242155 +k1,14755:32583029,16250959:0 +) +(1,14756:6630773,17092447:25952256,513147,7863 +k1,14756:32583029,17092447:24016322 +g1,14756:32583029,17092447 +) +v1,14758:6630773,18131216:0,393216,0 +(1,14765:6630773,20444847:25952256,2706847,196608 +g1,14765:6630773,20444847 +g1,14765:6630773,20444847 +g1,14765:6434165,20444847 +(1,14765:6434165,20444847:0,2706847,196608 +r1,14765:32779637,20444847:26345472,2903455,196608 +k1,14765:6434165,20444847:-26345472 +) +(1,14765:6434165,20444847:26345472,2706847,196608 +[1,14765:6630773,20444847:25952256,2510239,0 +(1,14760:6630773,18345126:25952256,410518,107478 +(1,14759:6630773,18345126:0,0,0 +g1,14759:6630773,18345126 +g1,14759:6630773,18345126 +g1,14759:6303093,18345126 +(1,14759:6303093,18345126:0,0,0 +) +g1,14759:6630773,18345126 +) +k1,14760:6630773,18345126:0 +g1,14760:12637541,18345126 +g1,14760:14850561,18345126 +g1,14760:16115144,18345126 +h1,14760:16431290,18345126:0,0,0 +k1,14760:32583029,18345126:16151739 +g1,14760:32583029,18345126 +) +(1,14761:6630773,19011304:25952256,404226,107478 +h1,14761:6630773,19011304:0,0,0 +g1,14761:6946919,19011304 +g1,14761:7263065,19011304 +g1,14761:11372959,19011304 +h1,14761:11689105,19011304:0,0,0 +k1,14761:32583029,19011304:20893924 +g1,14761:32583029,19011304 +) +(1,14762:6630773,19677482:25952256,404226,107478 +h1,14762:6630773,19677482:0,0,0 +g1,14762:6946919,19677482 +g1,14762:7263065,19677482 +g1,14762:13902125,19677482 +g1,14762:14534417,19677482 +k1,14762:14534417,19677482:0 +h1,14762:15482854,19677482:0,0,0 +k1,14762:32583030,19677482:17100176 +g1,14762:32583030,19677482 +) +(1,14763:6630773,20343660:25952256,410518,101187 +h1,14763:6630773,20343660:0,0,0 +g1,14763:6946919,20343660 +g1,14763:7263065,20343660 +g1,14763:7579211,20343660 +g1,14763:7895357,20343660 +g1,14763:8211503,20343660 +g1,14763:8527649,20343660 +g1,14763:8843795,20343660 +g1,14763:9159941,20343660 +g1,14763:9476087,20343660 +g1,14763:9792233,20343660 +g1,14763:10108379,20343660 +g1,14763:10424525,20343660 +g1,14763:10740671,20343660 +g1,14763:14534419,20343660 +g1,14763:15166711,20343660 +h1,14763:17695877,20343660:0,0,0 +k1,14763:32583029,20343660:14887152 +g1,14763:32583029,20343660 +) +] +) +g1,14765:32583029,20444847 +g1,14765:6630773,20444847 +g1,14765:6630773,20444847 +g1,14765:32583029,20444847 +g1,14765:32583029,20444847 +) +h1,14765:6630773,20641455:0,0,0 +(1,14768:6630773,31554259:25952256,10474678,0 +k1,14768:12599879,31554259:5969106 +h1,14767:12599879,31554259:0,0,0 +(1,14767:12599879,31554259:14014044,10474678,0 +(1,14767:12599879,31554259:14014766,10474704,0 +(1,14767:12599879,31554259:14014766,10474704,0 +(1,14767:12599879,31554259:0,10474704,0 +(1,14767:12599879,31554259:0,14155776,0 +(1,14767:12599879,31554259:18939904,14155776,0 +) +k1,14767:12599879,31554259:-18939904 +) +) +g1,14767:26614645,31554259 +) +) +) +g1,14768:26613923,31554259 +k1,14768:32583029,31554259:5969106 +) +v1,14776:6630773,32768338:0,393216,0 +(1,14777:6630773,36718845:25952256,4343723,616038 +g1,14777:6630773,36718845 +(1,14777:6630773,36718845:25952256,4343723,616038 +(1,14777:6630773,37334883:25952256,4959761,0 +[1,14777:6630773,37334883:25952256,4959761,0 +(1,14777:6630773,37308669:25952256,4907333,0 +r1,14777:6656987,37308669:26214,4907333,0 +[1,14777:6656987,37308669:25899828,4907333,0 +(1,14777:6656987,36718845:25899828,3727685,0 +[1,14777:7246811,36718845:24720180,3727685,0 +(1,14777:7246811,34078534:24720180,1087374,134348 +k1,14776:8826425,34078534:369911 +k1,14776:11558908,34078534:369910 +k1,14776:12947904,34078534:369911 +k1,14776:14814001,34078534:369910 +k1,14776:15799950,34078534:369911 +k1,14776:17188945,34078534:369910 +k1,14776:20313334,34078534:369911 +k1,14776:22653912,34078534:369910 +k1,14776:23675251,34078534:369911 +k1,14776:25311317,34078534:369910 +k1,14776:26837938,34078534:369911 +k1,14776:27820610,34078534:369910 +k1,14776:28546381,34078534:369911 +k1,14776:30515369,34078534:369910 +k1,14776:31966991,34078534:0 +) +(1,14777:7246811,34920022:24720180,513147,134348 +k1,14776:8415249,34920022:509146 +k1,14776:9943479,34920022:509145 +k1,14776:13890644,34920022:509146 +k1,14776:16716487,34920022:509145 +k1,14776:18793254,34920022:509146 +k1,14776:22304602,34920022:509145 +(1,14776:22304602,34920022:0,452978,115847 +r1,14777:25828274,34920022:3523672,568825,115847 +k1,14776:22304602,34920022:-3523672 +) +(1,14776:22304602,34920022:3523672,452978,115847 +k1,14776:22304602,34920022:3277 +h1,14776:25824997,34920022:0,411205,112570 +) +k1,14776:26511090,34920022:509146 +(1,14776:26511090,34920022:0,452978,115847 +r1,14777:31793321,34920022:5282231,568825,115847 +k1,14776:26511090,34920022:-5282231 +) +(1,14776:26511090,34920022:5282231,452978,115847 +k1,14776:26511090,34920022:3277 +h1,14776:31790044,34920022:0,411205,112570 +) +k1,14777:31966991,34920022:0 +) +(1,14777:7246811,35761510:24720180,505283,122846 +(1,14776:7246811,35761510:0,452978,115847 +r1,14777:12529042,35761510:5282231,568825,115847 +k1,14776:7246811,35761510:-5282231 +) +(1,14776:7246811,35761510:5282231,452978,115847 +k1,14776:7246811,35761510:3277 +h1,14776:12525765,35761510:0,411205,112570 +) +k1,14776:13524124,35761510:821412 +(1,14776:13524124,35761510:0,452978,115847 +r1,14777:19158067,35761510:5633943,568825,115847 +k1,14776:13524124,35761510:-5633943 +) +(1,14776:13524124,35761510:5633943,452978,115847 +k1,14776:13524124,35761510:3277 +h1,14776:19154790,35761510:0,411205,112570 +) +k1,14776:20153149,35761510:821412 +(1,14776:20153149,35761510:0,452978,122846 +r1,14777:24731957,35761510:4578808,575824,122846 +k1,14776:20153149,35761510:-4578808 +) +(1,14776:20153149,35761510:4578808,452978,122846 +k1,14776:20153149,35761510:3277 +h1,14776:24728680,35761510:0,411205,112570 +) +k1,14776:25727038,35761510:821411 +(1,14776:25727038,35761510:0,452978,115847 +r1,14777:29954134,35761510:4227096,568825,115847 +k1,14776:25727038,35761510:-4227096 +) +(1,14776:25727038,35761510:4227096,452978,115847 +k1,14776:25727038,35761510:3277 +h1,14776:29950857,35761510:0,411205,112570 +) +k1,14776:30775546,35761510:821412 +k1,14777:31966991,35761510:0 +) +(1,14777:7246811,36602998:24720180,452978,115847 +(1,14776:7246811,36602998:0,452978,115847 +r1,14777:11473907,36602998:4227096,568825,115847 +k1,14776:7246811,36602998:-4227096 +) +(1,14776:7246811,36602998:4227096,452978,115847 +k1,14776:7246811,36602998:3277 +h1,14776:11470630,36602998:0,411205,112570 +) +k1,14777:31966991,36602998:20319414 +g1,14777:31966991,36602998 +) +] +) +] +r1,14777:32583029,37308669:26214,4907333,0 +) +] +) +) +g1,14777:32583029,36718845 +) +h1,14777:6630773,37334883:0,0,0 +v1,14780:6630773,38548962:0,393216,0 +(1,14781:6630773,45116945:25952256,6961199,589824 +g1,14781:6630773,45116945 +(1,14781:6630773,45116945:25952256,6961199,589824 +(1,14781:6630773,45706769:25952256,7551023,0 +[1,14781:6630773,45706769:25952256,7551023,0 +(1,14781:6630773,45706769:25952256,7524809,0 +r1,14781:6656987,45706769:26214,7524809,0 +[1,14781:6656987,45706769:25899828,7524809,0 +(1,14781:6656987,45116945:25899828,6345161,0 +[1,14781:7246811,45116945:24720180,6345161,0 +(1,14781:7246811,39933669:24720180,1161885,196608 +(1,14780:7246811,39933669:0,1161885,196608 +r1,14781:8794447,39933669:1547636,1358493,196608 +k1,14780:7246811,39933669:-1547636 +) +(1,14780:7246811,39933669:1547636,1161885,196608 +) +k1,14780:9253961,39933669:459514 +k1,14780:13106273,39933669:459513 +k1,14780:16482794,39933669:459514 +k1,14780:18088532,39933669:459513 +(1,14780:18088532,39933669:0,452978,122846 +r1,14781:22315628,39933669:4227096,575824,122846 +k1,14780:18088532,39933669:-4227096 +) +(1,14780:18088532,39933669:4227096,452978,122846 +k1,14780:18088532,39933669:3277 +h1,14780:22312351,39933669:0,411205,112570 +) +k1,14780:22775142,39933669:459514 +k1,14780:24399885,39933669:459513 +k1,14780:25475437,39933669:459514 +k1,14780:28124509,39933669:459514 +k1,14780:29650293,39933669:459513 +k1,14780:31966991,39933669:0 +) +(1,14781:7246811,40775157:24720180,513147,134348 +k1,14780:8753025,40775157:434045 +k1,14780:11514253,40775157:434045 +k1,14780:12939858,40775157:434045 +k1,14780:17410921,40775157:434045 +k1,14780:18504258,40775157:434045 +k1,14780:20924699,40775157:434045 +k1,14780:23822242,40775157:434045 +k1,14780:25452974,40775157:434045 +k1,14780:28142113,40775157:434045 +k1,14780:29956346,40775157:434045 +k1,14780:31966991,40775157:0 +) +(1,14781:7246811,41616645:24720180,505283,134348 +k1,14780:9422213,41616645:477364 +k1,14780:11767353,41616645:477364 +k1,14780:14616465,41616645:477364 +k1,14780:15903199,41616645:477364 +k1,14780:17399649,41616645:477365 +k1,14780:21279642,41616645:477364 +k1,14780:23962293,41616645:477364 +k1,14780:25091085,41616645:477364 +k1,14780:27077088,41616645:477364 +k1,14780:31339156,41616645:477364 +k1,14780:31966991,41616645:0 +) +(1,14781:7246811,42458133:24720180,513147,122846 +k1,14780:9342801,42458133:394020 +k1,14780:11865431,42458133:394021 +(1,14780:11865431,42458133:0,452978,122846 +r1,14781:21016493,42458133:9151062,575824,122846 +k1,14780:11865431,42458133:-9151062 +) +(1,14780:11865431,42458133:9151062,452978,122846 +g1,14780:19254657,42458133 +g1,14780:19958081,42458133 +h1,14780:21013216,42458133:0,411205,112570 +) +k1,14780:21584183,42458133:394020 +k1,14780:24237884,42458133:394020 +k1,14780:24987764,42458133:394020 +k1,14780:28144128,42458133:394021 +k1,14780:30524544,42458133:394020 +k1,14781:31966991,42458133:0 +) +(1,14781:7246811,43299621:24720180,513147,122846 +(1,14780:7246811,43299621:0,452978,122846 +r1,14781:16397873,43299621:9151062,575824,122846 +k1,14780:7246811,43299621:-9151062 +) +(1,14780:7246811,43299621:9151062,452978,122846 +g1,14780:14636037,43299621 +g1,14780:15339461,43299621 +h1,14780:16394596,43299621:0,411205,112570 +) +k1,14780:16818365,43299621:246822 +k1,14780:17693023,43299621:246823 +k1,14780:19143086,43299621:246822 +k1,14780:20930659,43299621:246822 +k1,14780:21863644,43299621:246823 +k1,14780:23709544,43299621:246822 +k1,14780:24615658,43299621:246822 +k1,14780:27624824,43299621:246823 +k1,14780:29097825,43299621:246822 +k1,14780:31966991,43299621:0 +) +(1,14781:7246811,44141109:24720180,513147,134348 +k1,14780:8405313,44141109:166942 +k1,14780:10953833,44141109:166942 +k1,14780:13480071,44141109:166942 +k1,14780:14298441,44141109:166942 +k1,14780:15484468,44141109:166942 +k1,14780:17085338,44141109:166942 +k1,14780:18694727,44141109:166942 +k1,14780:19880755,44141109:166943 +k1,14780:21316474,44141109:166942 +k1,14780:22142708,44141109:166942 +k1,14780:23075766,44141109:166942 +k1,14780:24468887,44141109:166942 +k1,14780:27504995,44141109:166942 +k1,14780:30242914,44141109:166942 +k1,14780:31025894,44141109:166942 +k1,14781:31966991,44141109:0 +) +(1,14781:7246811,44982597:24720180,513147,134348 +k1,14780:10946365,44982597:182892 +k1,14780:12554666,44982597:182893 +k1,14780:14006335,44982597:182892 +k1,14780:16760204,44982597:182892 +k1,14780:17704624,44982597:182892 +k1,14780:20142611,44982597:182893 +k1,14780:21140771,44982597:182892 +k1,14780:22389934,44982597:182892 +k1,14780:24352129,44982597:182893 +k1,14780:25554106,44982597:182892 +k1,14780:27005775,44982597:182892 +k1,14780:27847959,44982597:182892 +k1,14780:29257031,44982597:182893 +k1,14780:30122808,44982597:182892 +k1,14780:31966991,44982597:0 +) +] +) +] +r1,14781:32583029,45706769:26214,7524809,0 +) +] +) +) +g1,14781:32583029,45116945 +) +] +(1,14781:32583029,45706769:0,0,0 +g1,14781:32583029,45706769 +) +) +] +(1,14781:6630773,47279633:25952256,0,0 +h1,14781:6630773,47279633:25952256,0,0 +) +] +h1,14781:4262630,4025873:0,0,0 +] +!21717 +}286 +Input:2239:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2240:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2241:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 +{287 +[1,14840:4262630,47279633:28320399,43253760,0 +(1,14840:4262630,4025873:0,0,0 +[1,14840:-473657,4025873:25952256,0,0 +(1,14840:-473657,-710414:25952256,0,0 +h1,14840:-473657,-710414:0,0,0 +(1,14840:-473657,-710414:0,0,0 +(1,14840:-473657,-710414:0,0,0 +g1,14840:-473657,-710414 +(1,14840:-473657,-710414:65781,0,65781 +g1,14840:-407876,-710414 +[1,14840:-407876,-644633:0,0,0 ] ) -k1,14809:-473657,-710414:-65781 +k1,14840:-473657,-710414:-65781 ) ) -k1,14809:25478599,-710414:25952256 -g1,14809:25478599,-710414 +k1,14840:25478599,-710414:25952256 +g1,14840:25478599,-710414 ) ] ) -[1,14809:6630773,47279633:25952256,43253760,0 -[1,14809:6630773,4812305:25952256,786432,0 -(1,14809:6630773,4812305:25952256,505283,11795 -(1,14809:6630773,4812305:25952256,505283,11795 -g1,14809:3078558,4812305 -[1,14809:3078558,4812305:0,0,0 -(1,14809:3078558,2439708:0,1703936,0 -k1,14809:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14809:2537886,2439708:1179648,16384,0 +[1,14840:6630773,47279633:25952256,43253760,0 +[1,14840:6630773,4812305:25952256,786432,0 +(1,14840:6630773,4812305:25952256,513147,134348 +(1,14840:6630773,4812305:25952256,513147,134348 +g1,14840:3078558,4812305 +[1,14840:3078558,4812305:0,0,0 +(1,14840:3078558,2439708:0,1703936,0 +k1,14840:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14840:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14809:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14840:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14809:3078558,4812305:0,0,0 -(1,14809:3078558,2439708:0,1703936,0 -g1,14809:29030814,2439708 -g1,14809:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14809:36151628,1915420:16384,1179648,0 +[1,14840:3078558,4812305:0,0,0 +(1,14840:3078558,2439708:0,1703936,0 +g1,14840:29030814,2439708 +g1,14840:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14840:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14809:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14840:37855564,2439708:1179648,16384,0 ) ) -k1,14809:3078556,2439708:-34777008 +k1,14840:3078556,2439708:-34777008 ) ] -[1,14809:3078558,4812305:0,0,0 -(1,14809:3078558,49800853:0,16384,2228224 -k1,14809:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14809:2537886,49800853:1179648,16384,0 +[1,14840:3078558,4812305:0,0,0 +(1,14840:3078558,49800853:0,16384,2228224 +k1,14840:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14840:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14809:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14840:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14809:3078558,4812305:0,0,0 -(1,14809:3078558,49800853:0,16384,2228224 -g1,14809:29030814,49800853 -g1,14809:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14809:36151628,51504789:16384,1179648,0 +[1,14840:3078558,4812305:0,0,0 +(1,14840:3078558,49800853:0,16384,2228224 +g1,14840:29030814,49800853 +g1,14840:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14840:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14809:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14840:37855564,49800853:1179648,16384,0 ) ) -k1,14809:3078556,49800853:-34777008 +k1,14840:3078556,49800853:-34777008 ) ] -g1,14809:6630773,4812305 -g1,14809:6630773,4812305 -g1,14809:9264009,4812305 -k1,14809:31387653,4812305:22123644 +g1,14840:6630773,4812305 +k1,14840:25712890,4812305:17886740 +g1,14840:29057847,4812305 +g1,14840:29873114,4812305 ) ) ] -[1,14809:6630773,45706769:25952256,40108032,0 -(1,14809:6630773,45706769:25952256,40108032,0 -(1,14809:6630773,45706769:0,0,0 -g1,14809:6630773,45706769 +[1,14840:6630773,45706769:25952256,40108032,0 +(1,14840:6630773,45706769:25952256,40108032,0 +(1,14840:6630773,45706769:0,0,0 +g1,14840:6630773,45706769 ) -[1,14809:6630773,45706769:25952256,40108032,0 -v1,14750:6630773,6254097:0,393216,0 -(1,14750:6630773,8762675:25952256,2901794,616038 -g1,14750:6630773,8762675 -(1,14750:6630773,8762675:25952256,2901794,616038 -(1,14750:6630773,9378713:25952256,3517832,0 -[1,14750:6630773,9378713:25952256,3517832,0 -(1,14750:6630773,9352499:25952256,3491618,0 -r1,14750:6656987,9352499:26214,3491618,0 -[1,14750:6656987,9352499:25899828,3491618,0 -(1,14750:6656987,8762675:25899828,2311970,0 -[1,14750:7246811,8762675:24720180,2311970,0 -(1,14750:7246811,6963852:24720180,513147,134348 -k1,14749:11698906,6963852:207328 -k1,14749:13331642,6963852:207328 -k1,14749:14807747,6963852:207328 -k1,14749:17586051,6963852:207327 -k1,14749:18554907,6963852:207328 -k1,14749:21017329,6963852:207328 -k1,14749:22039925,6963852:207328 -k1,14749:23313524,6963852:207328 -k1,14749:25300154,6963852:207328 -k1,14749:26526567,6963852:207328 -k1,14749:28002671,6963852:207327 -k1,14749:28869291,6963852:207328 -k1,14749:30302798,6963852:207328 -k1,14749:31193011,6963852:207328 -k1,14750:31966991,6963852:0 -) -(1,14750:7246811,7805340:24720180,505283,134348 -k1,14749:8775665,7805340:245659 -k1,14749:9637362,7805340:245659 -k1,14749:11160319,7805340:245660 -k1,14749:13294070,7805340:245659 -k1,14749:15889850,7805340:245659 -k1,14749:17529460,7805340:245659 -k1,14749:21456277,7805340:245660 -k1,14749:22388098,7805340:245659 -k1,14749:24142396,7805340:245659 -k1,14749:25656832,7805340:245659 -k1,14749:26433989,7805340:245660 -k1,14749:29940719,7805340:245659 -k1,14749:30947906,7805340:245659 -k1,14750:31966991,7805340:0 -) -(1,14750:7246811,8646828:24720180,505283,115847 -(1,14749:7246811,8646828:0,452978,115847 -r1,14750:8660212,8646828:1413401,568825,115847 -k1,14749:7246811,8646828:-1413401 -) -(1,14749:7246811,8646828:1413401,452978,115847 -k1,14749:7246811,8646828:3277 -h1,14749:8656935,8646828:0,411205,112570 -) -g1,14749:8859441,8646828 -k1,14750:31966990,8646828:20180712 -g1,14750:31966990,8646828 -) -] -) -] -r1,14750:32583029,9352499:26214,3491618,0 -) -] -) -) -g1,14750:32583029,8762675 -) -h1,14750:6630773,9378713:0,0,0 -(1,14753:6630773,10744489:25952256,513147,134348 -h1,14752:6630773,10744489:983040,0,0 -k1,14752:8338465,10744489:237064 -k1,14752:11314318,10744489:237103 -k1,14752:13389050,10744489:237102 -k1,14752:14157649,10744489:237102 -k1,14752:15046180,10744489:237103 -k1,14752:17212662,10744489:237102 -k1,14752:17805625,10744489:237103 -k1,14752:19320024,10744489:237102 -k1,14752:22017348,10744489:237102 -k1,14752:25503726,10744489:237103 -k1,14752:26096688,10744489:237102 -k1,14752:28493857,10744489:237102 -k1,14752:29922405,10744489:237103 -k1,14752:31593435,10744489:237102 -k1,14753:32583029,10744489:0 -) -(1,14753:6630773,11585977:25952256,513147,134348 -k1,14752:8241086,11585977:199323 -k1,14752:9459494,11585977:199323 -k1,14752:11645213,11585977:199323 -k1,14752:13542574,11585977:199323 -k1,14752:16314185,11585977:199323 -k1,14752:17196393,11585977:199323 -k1,14752:19429298,11585977:199323 -k1,14752:20260388,11585977:199323 -k1,14752:21840555,11585977:199323 -k1,14752:23144160,11585977:199323 -k1,14752:24734157,11585977:199323 -k1,14752:26703607,11585977:199323 -k1,14752:27850581,11585977:199323 -k1,14752:30884991,11585977:199323 -k1,14752:32583029,11585977:0 -) -(1,14753:6630773,12427465:25952256,513147,134348 -g1,14752:10093040,12427465 -g1,14752:13054612,12427465 -g1,14752:15917880,12427465 -g1,14752:16776401,12427465 -g1,14752:17994715,12427465 -g1,14752:19847417,12427465 -g1,14752:21323943,12427465 -g1,14752:22470823,12427465 -g1,14752:23025912,12427465 -g1,14752:26824378,12427465 -g1,14752:28215052,12427465 -g1,14752:28770141,12427465 -k1,14753:32583029,12427465:2428768 -g1,14753:32583029,12427465 -) -v1,14755:6630773,13617931:0,393216,0 -(1,14761:6630773,15265384:25952256,2040669,196608 -g1,14761:6630773,15265384 -g1,14761:6630773,15265384 -g1,14761:6434165,15265384 -(1,14761:6434165,15265384:0,2040669,196608 -r1,14761:32779637,15265384:26345472,2237277,196608 -k1,14761:6434165,15265384:-26345472 -) -(1,14761:6434165,15265384:26345472,2040669,196608 -[1,14761:6630773,15265384:25952256,1844061,0 -(1,14757:6630773,13831841:25952256,410518,107478 -(1,14756:6630773,13831841:0,0,0 -g1,14756:6630773,13831841 -g1,14756:6630773,13831841 -g1,14756:6303093,13831841 -(1,14756:6303093,13831841:0,0,0 -) -g1,14756:6630773,13831841 -) -g1,14757:7263065,13831841 -g1,14757:8211503,13831841 -g1,14757:14218271,13831841 -g1,14757:16431291,13831841 -g1,14757:17695874,13831841 -h1,14757:18012020,13831841:0,0,0 -k1,14757:32583029,13831841:14571009 -g1,14757:32583029,13831841 -) -(1,14758:6630773,14498019:25952256,404226,107478 -h1,14758:6630773,14498019:0,0,0 -g1,14758:6946919,14498019 -g1,14758:7263065,14498019 -g1,14758:7579211,14498019 -g1,14758:7895357,14498019 -g1,14758:8211503,14498019 -g1,14758:8527649,14498019 -g1,14758:8843795,14498019 -k1,14758:8843795,14498019:0 -h1,14758:12637543,14498019:0,0,0 -k1,14758:32583029,14498019:19945486 -g1,14758:32583029,14498019 -) -(1,14759:6630773,15164197:25952256,404226,101187 -h1,14759:6630773,15164197:0,0,0 -g1,14759:9159938,15164197 -g1,14759:9792230,15164197 -k1,14759:9792230,15164197:0 -h1,14759:13269832,15164197:0,0,0 -k1,14759:32583028,15164197:19313196 -g1,14759:32583028,15164197 -) -] -) -g1,14761:32583029,15265384 -g1,14761:6630773,15265384 -g1,14761:6630773,15265384 -g1,14761:32583029,15265384 -g1,14761:32583029,15265384 -) -h1,14761:6630773,15461992:0,0,0 -(1,14765:6630773,16827768:25952256,513147,134348 -h1,14764:6630773,16827768:983040,0,0 -k1,14764:8275115,16827768:191409 -k1,14764:8998022,16827768:191410 -k1,14764:10475247,16827768:191409 -k1,14764:13296616,16827768:191409 -k1,14764:14139454,16827768:191410 -k1,14764:16571539,16827768:191409 -k1,14764:17782033,16827768:191409 -k1,14764:19959839,16827768:191410 -k1,14764:21664474,16827768:191409 -k1,14764:22617411,16827768:191409 -k1,14764:25074400,16827768:191409 -k1,14764:25881848,16827768:191410 -k1,14764:27092342,16827768:191409 -k1,14764:29627974,16827768:191409 -k1,14764:30234219,16827768:191402 -k1,14764:32583029,16827768:0 -) -(1,14765:6630773,17669256:25952256,505283,115847 -g1,14764:8223953,17669256 -(1,14764:8223953,17669256:0,452978,115847 -r1,14764:12099337,17669256:3875384,568825,115847 -k1,14764:8223953,17669256:-3875384 -) -(1,14764:8223953,17669256:3875384,452978,115847 -k1,14764:8223953,17669256:3277 -h1,14764:12096060,17669256:0,411205,112570 -) -k1,14765:32583029,17669256:20310022 -g1,14765:32583029,17669256 -) -v1,14767:6630773,18859722:0,393216,0 -(1,14771:6630773,19143361:25952256,676855,196608 -g1,14771:6630773,19143361 -g1,14771:6630773,19143361 -g1,14771:6434165,19143361 -(1,14771:6434165,19143361:0,676855,196608 -r1,14771:32779637,19143361:26345472,873463,196608 -k1,14771:6434165,19143361:-26345472 -) -(1,14771:6434165,19143361:26345472,676855,196608 -[1,14771:6630773,19143361:25952256,480247,0 -(1,14769:6630773,19067340:25952256,404226,76021 -(1,14768:6630773,19067340:0,0,0 -g1,14768:6630773,19067340 -g1,14768:6630773,19067340 -g1,14768:6303093,19067340 -(1,14768:6303093,19067340:0,0,0 -) -g1,14768:6630773,19067340 -) -g1,14769:9792230,19067340 -g1,14769:10740668,19067340 -k1,14769:10740668,19067340:0 -h1,14769:18012018,19067340:0,0,0 -k1,14769:32583029,19067340:14571011 -g1,14769:32583029,19067340 -) -] -) -g1,14771:32583029,19143361 -g1,14771:6630773,19143361 -g1,14771:6630773,19143361 -g1,14771:32583029,19143361 -g1,14771:32583029,19143361 -) -h1,14771:6630773,19339969:0,0,0 -(1,14775:6630773,20705745:25952256,513147,134348 -h1,14774:6630773,20705745:983040,0,0 -k1,14774:10016124,20705745:175398 -k1,14774:10842950,20705745:175398 -k1,14774:12720318,20705745:175398 -k1,14774:15921513,20705745:175398 -k1,14774:17610137,20705745:175398 -k1,14774:18436963,20705745:175398 -k1,14774:20853037,20705745:175398 -k1,14774:23441471,20705745:175398 -k1,14774:24232907,20705745:175398 -k1,14774:24996818,20705745:175398 -(1,14774:24996818,20705745:0,452978,115847 -r1,14774:28872202,20705745:3875384,568825,115847 -k1,14774:24996818,20705745:-3875384 -) -(1,14774:24996818,20705745:3875384,452978,115847 -k1,14774:24996818,20705745:3277 -h1,14774:28868925,20705745:0,411205,112570 -) -k1,14774:29047600,20705745:175398 -k1,14774:31563944,20705745:175398 -k1,14774:32583029,20705745:0 -) -(1,14775:6630773,21547233:25952256,505283,134348 -k1,14774:9593046,21547233:207795 -k1,14774:12156204,21547233:207794 -k1,14774:13124217,21547233:207795 -k1,14774:15365594,21547233:207795 -k1,14774:16776629,21547233:207794 -k1,14774:18664767,21547233:207795 -k1,14774:19523990,21547233:207795 -k1,14774:20087644,21547233:207794 -k1,14774:22980449,21547233:207795 -k1,14774:24586126,21547233:207794 -(1,14774:24586126,21547233:0,452978,115847 -r1,14774:27758086,21547233:3171960,568825,115847 -k1,14774:24586126,21547233:-3171960 -) -(1,14774:24586126,21547233:3171960,452978,115847 -k1,14774:24586126,21547233:3277 -h1,14774:27754809,21547233:0,411205,112570 -) -k1,14774:28139551,21547233:207795 -k1,14774:29215698,21547233:207795 -k1,14774:30415052,21547233:207794 -k1,14774:31931601,21547233:207795 -k1,14774:32583029,21547233:0 -) -(1,14775:6630773,22388721:25952256,513147,134348 -g1,14774:9083130,22388721 -g1,14774:10301444,22388721 -g1,14774:13255151,22388721 -g1,14774:15893630,22388721 -g1,14774:16775744,22388721 -g1,14774:18619927,22388721 -g1,14774:19838241,22388721 -k1,14775:32583029,22388721:10330442 -g1,14775:32583029,22388721 -) -v1,14777:6630773,23579187:0,393216,0 -(1,14782:6630773,24554170:25952256,1368199,196608 -g1,14782:6630773,24554170 -g1,14782:6630773,24554170 -g1,14782:6434165,24554170 -(1,14782:6434165,24554170:0,1368199,196608 -r1,14782:32779637,24554170:26345472,1564807,196608 -k1,14782:6434165,24554170:-26345472 -) -(1,14782:6434165,24554170:26345472,1368199,196608 -[1,14782:6630773,24554170:25952256,1171591,0 -(1,14779:6630773,23786805:25952256,404226,76021 -(1,14778:6630773,23786805:0,0,0 -g1,14778:6630773,23786805 -g1,14778:6630773,23786805 -g1,14778:6303093,23786805 -(1,14778:6303093,23786805:0,0,0 -) -g1,14778:6630773,23786805 -) -k1,14779:6630773,23786805:0 -h1,14779:12953686,23786805:0,0,0 -k1,14779:32583030,23786805:19629344 -g1,14779:32583030,23786805 -) -(1,14780:6630773,24452983:25952256,284164,101187 -h1,14780:6630773,24452983:0,0,0 -h1,14780:6946919,24452983:0,0,0 -k1,14780:32583029,24452983:25636110 -g1,14780:32583029,24452983 -) -] -) -g1,14782:32583029,24554170 -g1,14782:6630773,24554170 -g1,14782:6630773,24554170 -g1,14782:32583029,24554170 -g1,14782:32583029,24554170 -) -h1,14782:6630773,24750778:0,0,0 -(1,14786:6630773,27366326:25952256,555811,139132 -(1,14786:6630773,27366326:2899444,534184,12975 -g1,14786:6630773,27366326 -g1,14786:9530217,27366326 -) -g1,14786:13805131,27366326 -k1,14786:32583029,27366326:16140860 -g1,14786:32583029,27366326 -) -(1,14789:6630773,28601030:25952256,513147,126483 -k1,14788:7351188,28601030:242658 -k1,14788:8462198,28601030:242658 -k1,14788:10253472,28601030:242658 -k1,14788:11147558,28601030:242658 -k1,14788:14923917,28601030:242658 -k1,14788:17428878,28601030:242658 -k1,14788:18027396,28601030:242658 -k1,14788:20430120,28601030:242657 -k1,14788:22882652,28601030:242658 -k1,14788:24853494,28601030:242658 -k1,14788:25554249,28601030:242658 -k1,14788:26412945,28601030:242658 -k1,14788:29326850,28601030:242658 -k1,14788:31350777,28601030:242658 -k1,14788:32051532,28601030:242658 -k1,14788:32583029,28601030:0 -) -(1,14789:6630773,29442518:25952256,513147,126483 -k1,14788:8222592,29442518:256851 -k1,14788:9130871,29442518:256851 -k1,14788:11317101,29442518:256850 -k1,14788:11929812,29442518:256851 -k1,14788:13469858,29442518:256851 -k1,14788:17607096,29442518:256851 -k1,14788:18546831,29442518:256850 -k1,14788:19159542,29442518:256851 -k1,14788:22251480,29442518:256851 -k1,14788:25433858,29442518:256851 -k1,14788:27677104,29442518:256850 -k1,14788:28620117,29442518:256851 -k1,14788:31966991,29442518:256851 -k1,14788:32583029,29442518:0 -) -(1,14789:6630773,30284006:25952256,513147,134348 -k1,14788:7870845,30284006:220987 -k1,14788:9475953,30284006:220988 -k1,14788:12149297,30284006:220987 -k1,14788:12998120,30284006:220988 -k1,14788:14921077,30284006:220987 -k1,14788:16839446,30284006:220987 -k1,14788:17928786,30284006:220988 -k1,14788:19486707,30284006:220987 -k1,14788:21237961,30284006:220988 -k1,14788:22110376,30284006:220987 -k1,14788:24205037,30284006:220987 -k1,14788:26118165,30284006:220988 -k1,14788:28325548,30284006:220987 -k1,14788:31058531,30284006:220988 -k1,14788:32227169,30284006:220987 -k1,14788:32583029,30284006:0 -) -(1,14789:6630773,31125494:25952256,513147,134348 -k1,14788:8658151,31125494:154359 -k1,14788:10841505,31125494:154359 -k1,14788:11611902,31125494:154359 -k1,14788:13651732,31125494:154359 -k1,14788:15173172,31125494:154359 -k1,14788:16195883,31125494:154359 -k1,14788:17454524,31125494:154359 -k1,14788:19210584,31125494:154360 -k1,14788:22607664,31125494:154359 -k1,14788:23577291,31125494:154359 -k1,14788:24934891,31125494:154359 -k1,14788:26787288,31125494:154359 -k1,14788:29513935,31125494:154359 -k1,14788:30024154,31125494:154359 -k1,14788:31629480,31125494:154359 -k1,14788:32583029,31125494:0 -) -(1,14789:6630773,31966982:25952256,513147,134348 -k1,14788:9971381,31966982:207987 -k1,14788:11382610,31966982:207988 -k1,14788:14575107,31966982:207987 -k1,14788:15544622,31966982:207987 -k1,14788:18029985,31966982:207987 -k1,14788:19257058,31966982:207988 -k1,14788:22141535,31966982:207987 -k1,14788:23008814,31966982:207987 -k1,14788:26996918,31966982:207987 -$1,14788:26996918,31966982 -$1,14788:27499579,31966982 -k1,14788:29172952,31966982:207988 -k1,14788:30565175,31966982:207987 -k1,14788:32583029,31966982:0 -) -(1,14789:6630773,32808470:25952256,513147,134348 -k1,14788:7492118,32808470:233510 -k1,14788:10263182,32808470:233510 -k1,14788:11699932,32808470:233509 -k1,14788:14609932,32808470:233510 -k1,14788:15374939,32808470:233510 -k1,14788:17210149,32808470:233510 -k1,14788:20182408,32808470:233509 -k1,14788:22113956,32808470:233510 -k1,14788:24241456,32808470:233510 -k1,14788:26267376,32808470:233510 -k1,14788:27976100,32808470:233509 -k1,14788:29598318,32808470:233510 -k1,14788:31900144,32808470:233510 -k1,14788:32583029,32808470:0 -) -(1,14789:6630773,33649958:25952256,513147,134348 -k1,14788:7850773,33649958:200915 -k1,14788:9895870,33649958:200914 -k1,14788:11088345,33649958:200915 -k1,14788:13174074,33649958:200914 -k1,14788:16074417,33649958:200915 -k1,14788:17294416,33649958:200914 -k1,14788:18679567,33649958:200915 -k1,14788:20724665,33649958:200915 -k1,14788:21457076,33649958:200914 -k1,14788:22677076,33649958:200915 -k1,14788:24479690,33649958:200914 -k1,14788:26982229,33649958:200915 -k1,14788:29795408,33649958:200914 -k1,14788:31563944,33649958:200915 -k1,14788:32583029,33649958:0 -) -(1,14789:6630773,34491446:25952256,513147,134348 -g1,14788:9549091,34491446 -g1,14788:11836952,34491446 -g1,14788:13724388,34491446 -g1,14788:14582909,34491446 -k1,14789:32583029,34491446:16399731 -g1,14789:32583029,34491446 -) -v1,14791:6630773,35681912:0,393216,0 -(1,14798:6630773,38001834:25952256,2713138,196608 -g1,14798:6630773,38001834 -g1,14798:6630773,38001834 -g1,14798:6434165,38001834 -(1,14798:6434165,38001834:0,2713138,196608 -r1,14798:32779637,38001834:26345472,2909746,196608 -k1,14798:6434165,38001834:-26345472 -) -(1,14798:6434165,38001834:26345472,2713138,196608 -[1,14798:6630773,38001834:25952256,2516530,0 -(1,14793:6630773,35895822:25952256,410518,107478 -(1,14792:6630773,35895822:0,0,0 -g1,14792:6630773,35895822 -g1,14792:6630773,35895822 -g1,14792:6303093,35895822 -(1,14792:6303093,35895822:0,0,0 -) -g1,14792:6630773,35895822 -) -k1,14793:6630773,35895822:0 -g1,14793:12637541,35895822 -g1,14793:14534415,35895822 -g1,14793:15166707,35895822 -g1,14793:17063582,35895822 -g1,14793:18328165,35895822 -h1,14793:18644311,35895822:0,0,0 -k1,14793:32583029,35895822:13938718 -g1,14793:32583029,35895822 -) -(1,14794:6630773,36562000:25952256,404226,107478 -h1,14794:6630773,36562000:0,0,0 -g1,14794:6946919,36562000 -g1,14794:7263065,36562000 -g1,14794:11372959,36562000 -h1,14794:11689105,36562000:0,0,0 -k1,14794:32583029,36562000:20893924 -g1,14794:32583029,36562000 -) -(1,14795:6630773,37228178:25952256,404226,101187 -h1,14795:6630773,37228178:0,0,0 -g1,14795:6946919,37228178 -g1,14795:7263065,37228178 -g1,14795:15482853,37228178 -g1,14795:16115145,37228178 -g1,14795:23702642,37228178 -g1,14795:24334934,37228178 -g1,14795:25599517,37228178 -h1,14795:25915663,37228178:0,0,0 -k1,14795:32583029,37228178:6667366 -g1,14795:32583029,37228178 -) -(1,14796:6630773,37894356:25952256,404226,107478 -h1,14796:6630773,37894356:0,0,0 -g1,14796:6946919,37894356 -g1,14796:7263065,37894356 -g1,14796:12953687,37894356 -g1,14796:13585979,37894356 -g1,14796:19592747,37894356 -g1,14796:20225039,37894356 -g1,14796:21489622,37894356 -g1,14796:23386496,37894356 -g1,14796:24018788,37894356 -g1,14796:24967226,37894356 -g1,14796:26864100,37894356 -g1,14796:27496392,37894356 -h1,14796:29077120,37894356:0,0,0 -k1,14796:32583029,37894356:3505909 -g1,14796:32583029,37894356 -) -] -) -g1,14798:32583029,38001834 -g1,14798:6630773,38001834 -g1,14798:6630773,38001834 -g1,14798:32583029,38001834 -g1,14798:32583029,38001834 -) -h1,14798:6630773,38198442:0,0,0 -] -(1,14809:32583029,45706769:0,0,0 -g1,14809:32583029,45706769 -) -) -] -(1,14809:6630773,47279633:25952256,0,0 -h1,14809:6630773,47279633:25952256,0,0 -) -] -h1,14809:4262630,4025873:0,0,0 -] -!20220 -}286 -Input:2245:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2246:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2247:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2248:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2249:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2250:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2251:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2252:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2253:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2254:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2255:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 -{287 -[1,14835:4262630,47279633:28320399,43253760,0 -(1,14835:4262630,4025873:0,0,0 -[1,14835:-473657,4025873:25952256,0,0 -(1,14835:-473657,-710414:25952256,0,0 -h1,14835:-473657,-710414:0,0,0 -(1,14835:-473657,-710414:0,0,0 -(1,14835:-473657,-710414:0,0,0 -g1,14835:-473657,-710414 -(1,14835:-473657,-710414:65781,0,65781 -g1,14835:-407876,-710414 -[1,14835:-407876,-644633:0,0,0 +[1,14840:6630773,45706769:25952256,40108032,0 +v1,14781:6630773,6254097:0,393216,0 +(1,14781:6630773,7805339:25952256,1944458,616038 +g1,14781:6630773,7805339 +(1,14781:6630773,7805339:25952256,1944458,616038 +(1,14781:6630773,8421377:25952256,2560496,0 +[1,14781:6630773,8421377:25952256,2560496,0 +(1,14781:6630773,8395163:25952256,2534282,0 +r1,14781:6656987,8395163:26214,2534282,0 +[1,14781:6656987,8395163:25899828,2534282,0 +(1,14781:6656987,7805339:25899828,1354634,0 +[1,14781:7246811,7805339:24720180,1354634,0 +(1,14781:7246811,6955988:24720180,505283,134348 +k1,14780:8098492,6955988:235643 +k1,14780:9611433,6955988:235644 +k1,14780:11735168,6955988:235643 +k1,14780:14320933,6955988:235644 +k1,14780:15950527,6955988:235643 +k1,14780:19867327,6955988:235643 +k1,14780:20789133,6955988:235644 +k1,14780:22533415,6955988:235643 +k1,14780:24037835,6955988:235643 +k1,14780:24804976,6955988:235644 +k1,14780:28301690,6955988:235643 +k1,14780:29298862,6955988:235644 +k1,14780:30553590,6955988:235643 +(1,14780:30553590,6955988:0,452978,115847 +r1,14781:31966991,6955988:1413401,568825,115847 +k1,14780:30553590,6955988:-1413401 +) +(1,14780:30553590,6955988:1413401,452978,115847 +k1,14780:30553590,6955988:3277 +h1,14780:31963714,6955988:0,411205,112570 +) +k1,14780:31966991,6955988:0 +) +(1,14781:7246811,7797476:24720180,505283,7863 +k1,14781:31966992,7797476:21793344 +g1,14781:31966992,7797476 +) +] +) +] +r1,14781:32583029,8395163:26214,2534282,0 +) +] +) +) +g1,14781:32583029,7805339 +) +h1,14781:6630773,8421377:0,0,0 +(1,14784:6630773,9787153:25952256,513147,134348 +h1,14783:6630773,9787153:983040,0,0 +k1,14783:8252885,9787153:151484 +k1,14783:11143167,9787153:151532 +k1,14783:13132329,9787153:151532 +k1,14783:13815358,9787153:151532 +k1,14783:14618317,9787153:151531 +k1,14783:16699229,9787153:151532 +k1,14783:17206621,9787153:151532 +k1,14783:18635450,9787153:151532 +k1,14783:21247203,9787153:151531 +k1,14783:24648010,9787153:151532 +k1,14783:25155402,9787153:151532 +k1,14783:27467000,9787153:151531 +k1,14783:28809977,9787153:151532 +k1,14783:30395437,9787153:151532 +k1,14783:32583029,9787153:0 +) +(1,14784:6630773,10628641:25952256,513147,134348 +k1,14783:7855922,10628641:206064 +k1,14783:10048382,10628641:206064 +k1,14783:11952484,10628641:206064 +k1,14783:14730835,10628641:206063 +k1,14783:15619784,10628641:206064 +k1,14783:17859430,10628641:206064 +k1,14783:18697261,10628641:206064 +k1,14783:20284169,10628641:206064 +k1,14783:21594515,10628641:206064 +k1,14783:23191253,10628641:206064 +k1,14783:25167443,10628641:206063 +k1,14783:26321158,10628641:206064 +k1,14783:29362309,10628641:206064 +k1,14783:31266411,10628641:206064 +k1,14784:32583029,10628641:0 +) +(1,14784:6630773,11470129:25952256,513147,134348 +g1,14783:8989413,11470129 +g1,14783:11950985,11470129 +g1,14783:14814253,11470129 +g1,14783:15672774,11470129 +g1,14783:16891088,11470129 +g1,14783:18743790,11470129 +g1,14783:20220316,11470129 +g1,14783:21367196,11470129 +g1,14783:21922285,11470129 +g1,14783:25720751,11470129 +g1,14783:27111425,11470129 +g1,14783:27666514,11470129 +k1,14784:32583029,11470129:3532395 +g1,14784:32583029,11470129 +) +v1,14786:6630773,12660595:0,393216,0 +(1,14792:6630773,14308048:25952256,2040669,196608 +g1,14792:6630773,14308048 +g1,14792:6630773,14308048 +g1,14792:6434165,14308048 +(1,14792:6434165,14308048:0,2040669,196608 +r1,14792:32779637,14308048:26345472,2237277,196608 +k1,14792:6434165,14308048:-26345472 +) +(1,14792:6434165,14308048:26345472,2040669,196608 +[1,14792:6630773,14308048:25952256,1844061,0 +(1,14788:6630773,12874505:25952256,410518,107478 +(1,14787:6630773,12874505:0,0,0 +g1,14787:6630773,12874505 +g1,14787:6630773,12874505 +g1,14787:6303093,12874505 +(1,14787:6303093,12874505:0,0,0 +) +g1,14787:6630773,12874505 +) +g1,14788:7263065,12874505 +g1,14788:8211503,12874505 +g1,14788:14218271,12874505 +g1,14788:16431291,12874505 +g1,14788:17695874,12874505 +h1,14788:18012020,12874505:0,0,0 +k1,14788:32583029,12874505:14571009 +g1,14788:32583029,12874505 +) +(1,14789:6630773,13540683:25952256,404226,107478 +h1,14789:6630773,13540683:0,0,0 +g1,14789:6946919,13540683 +g1,14789:7263065,13540683 +g1,14789:7579211,13540683 +g1,14789:7895357,13540683 +g1,14789:8211503,13540683 +g1,14789:8527649,13540683 +g1,14789:8843795,13540683 +k1,14789:8843795,13540683:0 +h1,14789:12637543,13540683:0,0,0 +k1,14789:32583029,13540683:19945486 +g1,14789:32583029,13540683 +) +(1,14790:6630773,14206861:25952256,404226,101187 +h1,14790:6630773,14206861:0,0,0 +g1,14790:9159938,14206861 +g1,14790:9792230,14206861 +k1,14790:9792230,14206861:0 +h1,14790:13269832,14206861:0,0,0 +k1,14790:32583028,14206861:19313196 +g1,14790:32583028,14206861 +) +] +) +g1,14792:32583029,14308048 +g1,14792:6630773,14308048 +g1,14792:6630773,14308048 +g1,14792:32583029,14308048 +g1,14792:32583029,14308048 +) +h1,14792:6630773,14504656:0,0,0 +(1,14796:6630773,15870432:25952256,513147,134348 +h1,14795:6630773,15870432:983040,0,0 +k1,14795:8275115,15870432:191409 +k1,14795:8998022,15870432:191410 +k1,14795:10475247,15870432:191409 +k1,14795:13296616,15870432:191409 +k1,14795:14139454,15870432:191410 +k1,14795:16571539,15870432:191409 +k1,14795:17782033,15870432:191409 +k1,14795:19959839,15870432:191410 +k1,14795:21664474,15870432:191409 +k1,14795:22617411,15870432:191409 +k1,14795:25074400,15870432:191409 +k1,14795:25881848,15870432:191410 +k1,14795:27092342,15870432:191409 +k1,14795:29627974,15870432:191409 +k1,14795:30234219,15870432:191402 +k1,14795:32583029,15870432:0 +) +(1,14796:6630773,16711920:25952256,505283,115847 +g1,14795:8223953,16711920 +(1,14795:8223953,16711920:0,452978,115847 +r1,14795:12099337,16711920:3875384,568825,115847 +k1,14795:8223953,16711920:-3875384 +) +(1,14795:8223953,16711920:3875384,452978,115847 +k1,14795:8223953,16711920:3277 +h1,14795:12096060,16711920:0,411205,112570 +) +k1,14796:32583029,16711920:20310022 +g1,14796:32583029,16711920 +) +v1,14798:6630773,17902386:0,393216,0 +(1,14802:6630773,18186025:25952256,676855,196608 +g1,14802:6630773,18186025 +g1,14802:6630773,18186025 +g1,14802:6434165,18186025 +(1,14802:6434165,18186025:0,676855,196608 +r1,14802:32779637,18186025:26345472,873463,196608 +k1,14802:6434165,18186025:-26345472 +) +(1,14802:6434165,18186025:26345472,676855,196608 +[1,14802:6630773,18186025:25952256,480247,0 +(1,14800:6630773,18110004:25952256,404226,76021 +(1,14799:6630773,18110004:0,0,0 +g1,14799:6630773,18110004 +g1,14799:6630773,18110004 +g1,14799:6303093,18110004 +(1,14799:6303093,18110004:0,0,0 +) +g1,14799:6630773,18110004 +) +g1,14800:9792230,18110004 +g1,14800:10740668,18110004 +k1,14800:10740668,18110004:0 +h1,14800:18012018,18110004:0,0,0 +k1,14800:32583029,18110004:14571011 +g1,14800:32583029,18110004 +) +] +) +g1,14802:32583029,18186025 +g1,14802:6630773,18186025 +g1,14802:6630773,18186025 +g1,14802:32583029,18186025 +g1,14802:32583029,18186025 +) +h1,14802:6630773,18382633:0,0,0 +(1,14806:6630773,19748409:25952256,513147,134348 +h1,14805:6630773,19748409:983040,0,0 +k1,14805:10016124,19748409:175398 +k1,14805:10842950,19748409:175398 +k1,14805:12720318,19748409:175398 +k1,14805:15921513,19748409:175398 +k1,14805:17610137,19748409:175398 +k1,14805:18436963,19748409:175398 +k1,14805:20853037,19748409:175398 +k1,14805:23441471,19748409:175398 +k1,14805:24232907,19748409:175398 +k1,14805:24996818,19748409:175398 +(1,14805:24996818,19748409:0,452978,115847 +r1,14805:28872202,19748409:3875384,568825,115847 +k1,14805:24996818,19748409:-3875384 +) +(1,14805:24996818,19748409:3875384,452978,115847 +k1,14805:24996818,19748409:3277 +h1,14805:28868925,19748409:0,411205,112570 +) +k1,14805:29047600,19748409:175398 +k1,14805:31563944,19748409:175398 +k1,14805:32583029,19748409:0 +) +(1,14806:6630773,20589897:25952256,505283,134348 +k1,14805:9593046,20589897:207795 +k1,14805:12156204,20589897:207794 +k1,14805:13124217,20589897:207795 +k1,14805:15365594,20589897:207795 +k1,14805:16776629,20589897:207794 +k1,14805:18664767,20589897:207795 +k1,14805:19523990,20589897:207795 +k1,14805:20087644,20589897:207794 +k1,14805:22980449,20589897:207795 +k1,14805:24586126,20589897:207794 +(1,14805:24586126,20589897:0,452978,115847 +r1,14805:27758086,20589897:3171960,568825,115847 +k1,14805:24586126,20589897:-3171960 +) +(1,14805:24586126,20589897:3171960,452978,115847 +k1,14805:24586126,20589897:3277 +h1,14805:27754809,20589897:0,411205,112570 +) +k1,14805:28139551,20589897:207795 +k1,14805:29215698,20589897:207795 +k1,14805:30415052,20589897:207794 +k1,14805:31931601,20589897:207795 +k1,14805:32583029,20589897:0 +) +(1,14806:6630773,21431385:25952256,513147,134348 +g1,14805:9083130,21431385 +g1,14805:10301444,21431385 +g1,14805:13255151,21431385 +g1,14805:15893630,21431385 +g1,14805:16775744,21431385 +g1,14805:18619927,21431385 +g1,14805:19838241,21431385 +k1,14806:32583029,21431385:10330442 +g1,14806:32583029,21431385 +) +v1,14808:6630773,22621851:0,393216,0 +(1,14813:6630773,23596834:25952256,1368199,196608 +g1,14813:6630773,23596834 +g1,14813:6630773,23596834 +g1,14813:6434165,23596834 +(1,14813:6434165,23596834:0,1368199,196608 +r1,14813:32779637,23596834:26345472,1564807,196608 +k1,14813:6434165,23596834:-26345472 +) +(1,14813:6434165,23596834:26345472,1368199,196608 +[1,14813:6630773,23596834:25952256,1171591,0 +(1,14810:6630773,22829469:25952256,404226,76021 +(1,14809:6630773,22829469:0,0,0 +g1,14809:6630773,22829469 +g1,14809:6630773,22829469 +g1,14809:6303093,22829469 +(1,14809:6303093,22829469:0,0,0 +) +g1,14809:6630773,22829469 +) +k1,14810:6630773,22829469:0 +h1,14810:12953686,22829469:0,0,0 +k1,14810:32583030,22829469:19629344 +g1,14810:32583030,22829469 +) +(1,14811:6630773,23495647:25952256,284164,101187 +h1,14811:6630773,23495647:0,0,0 +h1,14811:6946919,23495647:0,0,0 +k1,14811:32583029,23495647:25636110 +g1,14811:32583029,23495647 +) +] +) +g1,14813:32583029,23596834 +g1,14813:6630773,23596834 +g1,14813:6630773,23596834 +g1,14813:32583029,23596834 +g1,14813:32583029,23596834 +) +h1,14813:6630773,23793442:0,0,0 +(1,14817:6630773,26408990:25952256,555811,139132 +(1,14817:6630773,26408990:2899444,534184,12975 +g1,14817:6630773,26408990 +g1,14817:9530217,26408990 +) +g1,14817:13805131,26408990 +k1,14817:32583029,26408990:16140860 +g1,14817:32583029,26408990 +) +(1,14820:6630773,27643694:25952256,513147,126483 +k1,14819:7351188,27643694:242658 +k1,14819:8462198,27643694:242658 +k1,14819:10253472,27643694:242658 +k1,14819:11147558,27643694:242658 +k1,14819:14923917,27643694:242658 +k1,14819:17428878,27643694:242658 +k1,14819:18027396,27643694:242658 +k1,14819:20430120,27643694:242657 +k1,14819:22882652,27643694:242658 +k1,14819:24853494,27643694:242658 +k1,14819:25554249,27643694:242658 +k1,14819:26412945,27643694:242658 +k1,14819:29326850,27643694:242658 +k1,14819:31350777,27643694:242658 +k1,14819:32051532,27643694:242658 +k1,14819:32583029,27643694:0 +) +(1,14820:6630773,28485182:25952256,513147,126483 +k1,14819:8222592,28485182:256851 +k1,14819:9130871,28485182:256851 +k1,14819:11317101,28485182:256850 +k1,14819:11929812,28485182:256851 +k1,14819:13469858,28485182:256851 +k1,14819:17607096,28485182:256851 +k1,14819:18546831,28485182:256850 +k1,14819:19159542,28485182:256851 +k1,14819:22251480,28485182:256851 +k1,14819:25433858,28485182:256851 +k1,14819:27677104,28485182:256850 +k1,14819:28620117,28485182:256851 +k1,14819:31966991,28485182:256851 +k1,14819:32583029,28485182:0 +) +(1,14820:6630773,29326670:25952256,513147,134348 +k1,14819:7870845,29326670:220987 +k1,14819:9475953,29326670:220988 +k1,14819:12149297,29326670:220987 +k1,14819:12998120,29326670:220988 +k1,14819:14921077,29326670:220987 +k1,14819:16839446,29326670:220987 +k1,14819:17928786,29326670:220988 +k1,14819:19486707,29326670:220987 +k1,14819:21237961,29326670:220988 +k1,14819:22110376,29326670:220987 +k1,14819:24205037,29326670:220987 +k1,14819:26118165,29326670:220988 +k1,14819:28325548,29326670:220987 +k1,14819:31058531,29326670:220988 +k1,14819:32227169,29326670:220987 +k1,14819:32583029,29326670:0 +) +(1,14820:6630773,30168158:25952256,513147,134348 +k1,14819:8658151,30168158:154359 +k1,14819:10841505,30168158:154359 +k1,14819:11611902,30168158:154359 +k1,14819:13651732,30168158:154359 +k1,14819:15173172,30168158:154359 +k1,14819:16195883,30168158:154359 +k1,14819:17454524,30168158:154359 +k1,14819:19210584,30168158:154360 +k1,14819:22607664,30168158:154359 +k1,14819:23577291,30168158:154359 +k1,14819:24934891,30168158:154359 +k1,14819:26787288,30168158:154359 +k1,14819:29513935,30168158:154359 +k1,14819:30024154,30168158:154359 +k1,14819:31629480,30168158:154359 +k1,14819:32583029,30168158:0 +) +(1,14820:6630773,31009646:25952256,513147,134348 +k1,14819:9971381,31009646:207987 +k1,14819:11382610,31009646:207988 +k1,14819:14575107,31009646:207987 +k1,14819:15544622,31009646:207987 +k1,14819:18029985,31009646:207987 +k1,14819:19257058,31009646:207988 +k1,14819:22141535,31009646:207987 +k1,14819:23008814,31009646:207987 +k1,14819:26996918,31009646:207987 +$1,14819:26996918,31009646 +$1,14819:27499579,31009646 +k1,14819:29172952,31009646:207988 +k1,14819:30565175,31009646:207987 +k1,14819:32583029,31009646:0 +) +(1,14820:6630773,31851134:25952256,513147,134348 +k1,14819:7492118,31851134:233510 +k1,14819:10263182,31851134:233510 +k1,14819:11699932,31851134:233509 +k1,14819:14609932,31851134:233510 +k1,14819:15374939,31851134:233510 +k1,14819:17210149,31851134:233510 +k1,14819:20182408,31851134:233509 +k1,14819:22113956,31851134:233510 +k1,14819:24241456,31851134:233510 +k1,14819:26267376,31851134:233510 +k1,14819:27976100,31851134:233509 +k1,14819:29598318,31851134:233510 +k1,14819:31900144,31851134:233510 +k1,14819:32583029,31851134:0 +) +(1,14820:6630773,32692622:25952256,513147,134348 +k1,14819:7850773,32692622:200915 +k1,14819:9895870,32692622:200914 +k1,14819:11088345,32692622:200915 +k1,14819:13174074,32692622:200914 +k1,14819:16074417,32692622:200915 +k1,14819:17294416,32692622:200914 +k1,14819:18679567,32692622:200915 +k1,14819:20724665,32692622:200915 +k1,14819:21457076,32692622:200914 +k1,14819:22677076,32692622:200915 +k1,14819:24479690,32692622:200914 +k1,14819:26982229,32692622:200915 +k1,14819:29795408,32692622:200914 +k1,14819:31563944,32692622:200915 +k1,14819:32583029,32692622:0 +) +(1,14820:6630773,33534110:25952256,513147,134348 +g1,14819:9549091,33534110 +g1,14819:11836952,33534110 +g1,14819:13724388,33534110 +g1,14819:14582909,33534110 +k1,14820:32583029,33534110:16399731 +g1,14820:32583029,33534110 +) +v1,14822:6630773,34724576:0,393216,0 +(1,14829:6630773,37044498:25952256,2713138,196608 +g1,14829:6630773,37044498 +g1,14829:6630773,37044498 +g1,14829:6434165,37044498 +(1,14829:6434165,37044498:0,2713138,196608 +r1,14829:32779637,37044498:26345472,2909746,196608 +k1,14829:6434165,37044498:-26345472 +) +(1,14829:6434165,37044498:26345472,2713138,196608 +[1,14829:6630773,37044498:25952256,2516530,0 +(1,14824:6630773,34938486:25952256,410518,107478 +(1,14823:6630773,34938486:0,0,0 +g1,14823:6630773,34938486 +g1,14823:6630773,34938486 +g1,14823:6303093,34938486 +(1,14823:6303093,34938486:0,0,0 +) +g1,14823:6630773,34938486 +) +k1,14824:6630773,34938486:0 +g1,14824:12637541,34938486 +g1,14824:14534415,34938486 +g1,14824:15166707,34938486 +g1,14824:17063582,34938486 +g1,14824:18328165,34938486 +h1,14824:18644311,34938486:0,0,0 +k1,14824:32583029,34938486:13938718 +g1,14824:32583029,34938486 +) +(1,14825:6630773,35604664:25952256,404226,107478 +h1,14825:6630773,35604664:0,0,0 +g1,14825:6946919,35604664 +g1,14825:7263065,35604664 +g1,14825:11372959,35604664 +h1,14825:11689105,35604664:0,0,0 +k1,14825:32583029,35604664:20893924 +g1,14825:32583029,35604664 +) +(1,14826:6630773,36270842:25952256,404226,101187 +h1,14826:6630773,36270842:0,0,0 +g1,14826:6946919,36270842 +g1,14826:7263065,36270842 +g1,14826:15482853,36270842 +g1,14826:16115145,36270842 +g1,14826:23702642,36270842 +g1,14826:24334934,36270842 +g1,14826:25599517,36270842 +h1,14826:25915663,36270842:0,0,0 +k1,14826:32583029,36270842:6667366 +g1,14826:32583029,36270842 +) +(1,14827:6630773,36937020:25952256,404226,107478 +h1,14827:6630773,36937020:0,0,0 +g1,14827:6946919,36937020 +g1,14827:7263065,36937020 +g1,14827:12953687,36937020 +g1,14827:13585979,36937020 +g1,14827:19592747,36937020 +g1,14827:20225039,36937020 +g1,14827:21489622,36937020 +g1,14827:23386496,36937020 +g1,14827:24018788,36937020 +g1,14827:24967226,36937020 +g1,14827:26864100,36937020 +g1,14827:27496392,36937020 +h1,14827:29077120,36937020:0,0,0 +k1,14827:32583029,36937020:3505909 +g1,14827:32583029,36937020 +) +] +) +g1,14829:32583029,37044498 +g1,14829:6630773,37044498 +g1,14829:6630773,37044498 +g1,14829:32583029,37044498 +g1,14829:32583029,37044498 +) +h1,14829:6630773,37241106:0,0,0 +] +(1,14840:32583029,45706769:0,0,0 +g1,14840:32583029,45706769 +) +) +] +(1,14840:6630773,47279633:25952256,0,0 +h1,14840:6630773,47279633:25952256,0,0 +) +] +h1,14840:4262630,4025873:0,0,0 +] +!19646 +}287 +Input:2242:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2243:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2244:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2245:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2246:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2247:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2248:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2249:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2250:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2251:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2252:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 +{288 +[1,14866:4262630,47279633:28320399,43253760,0 +(1,14866:4262630,4025873:0,0,0 +[1,14866:-473657,4025873:25952256,0,0 +(1,14866:-473657,-710414:25952256,0,0 +h1,14866:-473657,-710414:0,0,0 +(1,14866:-473657,-710414:0,0,0 +(1,14866:-473657,-710414:0,0,0 +g1,14866:-473657,-710414 +(1,14866:-473657,-710414:65781,0,65781 +g1,14866:-407876,-710414 +[1,14866:-407876,-644633:0,0,0 ] ) -k1,14835:-473657,-710414:-65781 +k1,14866:-473657,-710414:-65781 ) ) -k1,14835:25478599,-710414:25952256 -g1,14835:25478599,-710414 +k1,14866:25478599,-710414:25952256 +g1,14866:25478599,-710414 ) ] ) -[1,14835:6630773,47279633:25952256,43253760,0 -[1,14835:6630773,4812305:25952256,786432,0 -(1,14835:6630773,4812305:25952256,513147,134348 -(1,14835:6630773,4812305:25952256,513147,134348 -g1,14835:3078558,4812305 -[1,14835:3078558,4812305:0,0,0 -(1,14835:3078558,2439708:0,1703936,0 -k1,14835:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14835:2537886,2439708:1179648,16384,0 +[1,14866:6630773,47279633:25952256,43253760,0 +[1,14866:6630773,4812305:25952256,786432,0 +(1,14866:6630773,4812305:25952256,505283,7863 +(1,14866:6630773,4812305:25952256,505283,7863 +g1,14866:3078558,4812305 +[1,14866:3078558,4812305:0,0,0 +(1,14866:3078558,2439708:0,1703936,0 +k1,14866:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14866:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14835:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14866:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14835:3078558,4812305:0,0,0 -(1,14835:3078558,2439708:0,1703936,0 -g1,14835:29030814,2439708 -g1,14835:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14835:36151628,1915420:16384,1179648,0 +[1,14866:3078558,4812305:0,0,0 +(1,14866:3078558,2439708:0,1703936,0 +g1,14866:29030814,2439708 +g1,14866:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14866:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14835:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14866:37855564,2439708:1179648,16384,0 ) ) -k1,14835:3078556,2439708:-34777008 +k1,14866:3078556,2439708:-34777008 ) ] -[1,14835:3078558,4812305:0,0,0 -(1,14835:3078558,49800853:0,16384,2228224 -k1,14835:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14835:2537886,49800853:1179648,16384,0 +[1,14866:3078558,4812305:0,0,0 +(1,14866:3078558,49800853:0,16384,2228224 +k1,14866:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14866:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14835:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14866:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14835:3078558,4812305:0,0,0 -(1,14835:3078558,49800853:0,16384,2228224 -g1,14835:29030814,49800853 -g1,14835:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14835:36151628,51504789:16384,1179648,0 +[1,14866:3078558,4812305:0,0,0 +(1,14866:3078558,49800853:0,16384,2228224 +g1,14866:29030814,49800853 +g1,14866:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14866:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14835:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14866:37855564,49800853:1179648,16384,0 ) ) -k1,14835:3078556,49800853:-34777008 +k1,14866:3078556,49800853:-34777008 ) ] -g1,14835:6630773,4812305 -k1,14835:25712890,4812305:17886740 -g1,14835:29057847,4812305 -g1,14835:29873114,4812305 +g1,14866:6630773,4812305 +g1,14866:6630773,4812305 +g1,14866:9264009,4812305 +k1,14866:31387653,4812305:22123644 ) ) ] -[1,14835:6630773,45706769:25952256,40108032,0 -(1,14835:6630773,45706769:25952256,40108032,0 -(1,14835:6630773,45706769:0,0,0 -g1,14835:6630773,45706769 +[1,14866:6630773,45706769:25952256,40108032,0 +(1,14866:6630773,45706769:25952256,40108032,0 +(1,14866:6630773,45706769:0,0,0 +g1,14866:6630773,45706769 ) -[1,14835:6630773,45706769:25952256,40108032,0 -(1,14801:6630773,16073415:25952256,10474678,0 -k1,14801:12599879,16073415:5969106 -h1,14800:12599879,16073415:0,0,0 -(1,14800:12599879,16073415:14014044,10474678,0 -(1,14800:12599879,16073415:14014766,10474704,0 -(1,14800:12599879,16073415:14014766,10474704,0 -(1,14800:12599879,16073415:0,10474704,0 -(1,14800:12599879,16073415:0,14155776,0 -(1,14800:12599879,16073415:18939904,14155776,0 +[1,14866:6630773,45706769:25952256,40108032,0 +(1,14832:6630773,16073415:25952256,10474678,0 +k1,14832:12599879,16073415:5969106 +h1,14831:12599879,16073415:0,0,0 +(1,14831:12599879,16073415:14014044,10474678,0 +(1,14831:12599879,16073415:14014766,10474704,0 +(1,14831:12599879,16073415:14014766,10474704,0 +(1,14831:12599879,16073415:0,10474704,0 +(1,14831:12599879,16073415:0,14155776,0 +(1,14831:12599879,16073415:18939904,14155776,0 ) -k1,14800:12599879,16073415:-18939904 +k1,14831:12599879,16073415:-18939904 +) +) +g1,14831:26614645,16073415 +) +) +) +g1,14832:26613923,16073415 +k1,14832:32583029,16073415:5969106 +) +v1,14840:6630773,17439191:0,393216,0 +(1,14841:6630773,23050015:25952256,6004040,616038 +g1,14841:6630773,23050015 +(1,14841:6630773,23050015:25952256,6004040,616038 +(1,14841:6630773,23666053:25952256,6620078,0 +[1,14841:6630773,23666053:25952256,6620078,0 +(1,14841:6630773,23639839:25952256,6567650,0 +r1,14841:6656987,23639839:26214,6567650,0 +[1,14841:6656987,23639839:25899828,6567650,0 +(1,14841:6656987,23050015:25899828,5388002,0 +[1,14841:7246811,23050015:24720180,5388002,0 +(1,14841:7246811,18747549:24720180,1085536,298548 +(1,14840:7246811,18747549:0,1085536,298548 +r1,14841:8753226,18747549:1506415,1384084,298548 +k1,14840:7246811,18747549:-1506415 +) +(1,14840:7246811,18747549:1506415,1085536,298548 +) +k1,14840:8924295,18747549:171069 +k1,14840:10878598,18747549:171068 +k1,14840:12233903,18747549:171069 +k1,14840:14249155,18747549:171069 +k1,14840:15411783,18747549:171068 +k1,14840:18077152,18747549:171069 +k1,14840:19404931,18747549:171069 +k1,14840:21863207,18747549:171069 +k1,14840:23894842,18747549:171068 +k1,14840:24717339,18747549:171069 +k1,14840:25822951,18747549:171069 +k1,14840:27460715,18747549:171068 +k1,14840:28650869,18747549:171069 +k1,14840:31966991,18747549:0 +) +(1,14841:7246811,19589037:24720180,513147,134348 +k1,14840:8726871,19589037:288615 +k1,14840:11361019,19589037:288614 +k1,14840:15640777,19589037:288615 +(1,14840:15640777,19589037:0,452978,122846 +r1,14841:17405890,19589037:1765113,575824,122846 +k1,14840:15640777,19589037:-1765113 +) +(1,14840:15640777,19589037:1765113,452978,122846 +k1,14840:15640777,19589037:3277 +h1,14840:17402613,19589037:0,411205,112570 +) +k1,14840:17694504,19589037:288614 +k1,14840:19174564,19589037:288615 +(1,14840:19174564,19589037:0,452978,122846 +r1,14841:20939677,19589037:1765113,575824,122846 +k1,14840:19174564,19589037:-1765113 +) +(1,14840:19174564,19589037:1765113,452978,122846 +k1,14840:19174564,19589037:3277 +h1,14840:20936400,19589037:0,411205,112570 +) +k1,14840:21401961,19589037:288614 +k1,14840:22376738,19589037:288615 +k1,14840:23684437,19589037:288614 +k1,14840:26238632,19589037:288615 +k1,14840:28537891,19589037:288614 +k1,14840:30228976,19589037:288615 +k1,14840:31966991,19589037:0 +) +(1,14841:7246811,20430525:24720180,513147,134348 +k1,14840:10115674,20430525:183198 +k1,14840:11679716,20430525:183198 +k1,14840:12394412,20430525:183199 +k1,14840:13760535,20430525:183198 +k1,14840:14595161,20430525:183198 +k1,14840:15797444,20430525:183198 +k1,14840:17191748,20430525:183199 +k1,14840:18659452,20430525:183198 +k1,14840:22660122,20430525:183198 +k1,14840:25355315,20430525:183198 +k1,14840:26530074,20430525:183199 +k1,14840:30113280,20430525:183198 +k1,14840:30947906,20430525:183198 +k1,14840:31966991,20430525:0 +) +(1,14841:7246811,21272013:24720180,513147,134348 +k1,14840:8652105,21272013:179115 +k1,14840:10436852,21272013:179115 +k1,14840:12567629,21272013:179115 +k1,14840:14189191,21272013:179115 +k1,14840:15019734,21272013:179115 +k1,14840:16217934,21272013:179115 +k1,14840:17848015,21272013:179114 +k1,14840:19096678,21272013:179115 +k1,14840:21777302,21272013:179115 +k1,14840:25773889,21272013:179115 +k1,14840:26612296,21272013:179115 +$1,14840:26612296,21272013 +$1,14840:27114957,21272013 +k1,14840:28759457,21272013:179115 +k1,14840:30122808,21272013:179115 +k1,14840:31966991,21272013:0 +) +(1,14841:7246811,22113501:24720180,513147,134348 +k1,14840:9762847,22113501:195406 +k1,14840:10755172,22113501:195407 +k1,14840:13406212,22113501:195406 +k1,14840:15399926,22113501:195406 +k1,14840:17103972,22113501:195407 +k1,14840:20489671,22113501:195406 +k1,14840:22079028,22113501:195406 +k1,14840:24598997,22113501:195407 +k1,14840:25445831,22113501:195406 +k1,14840:26825473,22113501:195406 +k1,14840:29007932,22113501:195407 +k1,14840:30947906,22113501:195406 +k1,14840:31966991,22113501:0 +) +(1,14841:7246811,22954989:24720180,505283,95026 +g1,14840:11256959,22954989 +$1,14840:11256959,22954989 +$1,14840:11759620,22954989 +g1,14840:11958849,22954989 +k1,14841:31966992,22954989:18582080 +g1,14841:31966992,22954989 +) +] +) +] +r1,14841:32583029,23639839:26214,6567650,0 +) +] +) +) +g1,14841:32583029,23050015 +) +h1,14841:6630773,23666053:0,0,0 +v1,14844:6630773,25031829:0,393216,0 +(1,14845:6630773,28120027:25952256,3481414,616038 +g1,14845:6630773,28120027 +(1,14845:6630773,28120027:25952256,3481414,616038 +(1,14845:6630773,28736065:25952256,4097452,0 +[1,14845:6630773,28736065:25952256,4097452,0 +(1,14845:6630773,28709851:25952256,4045024,0 +r1,14845:6656987,28709851:26214,4045024,0 +[1,14845:6656987,28709851:25899828,4045024,0 +(1,14845:6656987,28120027:25899828,2865376,0 +[1,14845:7246811,28120027:24720180,2865376,0 +(1,14845:7246811,26342025:24720180,1087374,134348 +k1,14844:8654907,26342025:198393 +k1,14844:10150913,26342025:198393 +k1,14844:11743258,26342025:198394 +k1,14844:12960736,26342025:198393 +k1,14844:14655316,26342025:198393 +k1,14844:15469747,26342025:198393 +k1,14844:16687225,26342025:198393 +k1,14844:18033810,26342025:198394 +k1,14844:20202871,26342025:198393 +k1,14844:22430259,26342025:198393 +k1,14844:25881204,26342025:198393 +k1,14844:27098683,26342025:198394 +k1,14844:29307721,26342025:198393 +k1,14844:31019340,26342025:198393 +k1,14845:31966991,26342025:0 +) +(1,14845:7246811,27183513:24720180,513147,134348 +(1,14844:7246811,27183513:0,452978,122846 +r1,14845:9011924,27183513:1765113,575824,122846 +k1,14844:7246811,27183513:-1765113 +) +(1,14844:7246811,27183513:1765113,452978,122846 +k1,14844:7246811,27183513:3277 +h1,14844:9008647,27183513:0,411205,112570 +) +k1,14844:9338528,27183513:152934 +(1,14844:9338528,27183513:0,452978,122846 +r1,14845:11103641,27183513:1765113,575824,122846 +k1,14844:9338528,27183513:-1765113 +) +(1,14844:9338528,27183513:1765113,452978,122846 +k1,14844:9338528,27183513:3277 +h1,14844:11100364,27183513:0,411205,112570 +) +k1,14844:11256576,27183513:152935 +k1,14844:12600955,27183513:152934 +(1,14844:12600955,27183513:0,452978,122846 +r1,14845:14366068,27183513:1765113,575824,122846 +k1,14844:12600955,27183513:-1765113 +) +(1,14844:12600955,27183513:1765113,452978,122846 +k1,14844:12600955,27183513:3277 +h1,14844:14362791,27183513:0,411205,112570 +) +k1,14844:14692673,27183513:152935 +k1,14844:17212112,27183513:152934 +k1,14844:18356607,27183513:152935 +k1,14844:21707043,27183513:152934 +k1,14844:22476016,27183513:152935 +k1,14844:25258254,27183513:152934 +k1,14844:26602634,27183513:152935 +k1,14844:30573040,27183513:152934 +k1,14844:31966991,27183513:0 +) +(1,14845:7246811,28025001:24720180,505283,95026 +g1,14844:9456685,28025001 +g1,14844:12291117,28025001 +g1,14844:12888805,28025001 +g1,14844:14279479,28025001 +k1,14845:31966990,28025001:16908288 +g1,14845:31966990,28025001 +) +] +) +] +r1,14845:32583029,28709851:26214,4045024,0 +) +] +) +) +g1,14845:32583029,28120027 +) +h1,14845:6630773,28736065:0,0,0 +(1,14848:6630773,30101841:25952256,513147,134348 +h1,14847:6630773,30101841:983040,0,0 +k1,14847:8316209,30101841:214808 +k1,14847:9744104,30101841:214824 +k1,14847:12260552,30101841:214824 +k1,14847:15459886,30101841:214824 +k1,14847:16206206,30101841:214823 +k1,14847:17072458,30101841:214824 +k1,14847:18379767,30101841:214824 +k1,14847:18950451,30101841:214824 +k1,14847:21517362,30101841:214824 +k1,14847:23063222,30101841:214824 +k1,14847:24720492,30101841:214823 +k1,14847:27030502,30101841:214824 +(1,14847:27030502,30101841:0,452978,115847 +r1,14847:29499039,30101841:2468537,568825,115847 +k1,14847:27030502,30101841:-2468537 +) +(1,14847:27030502,30101841:2468537,452978,115847 +k1,14847:27030502,30101841:3277 +h1,14847:29495762,30101841:0,411205,112570 +) +k1,14847:29887533,30101841:214824 +k1,14848:32583029,30101841:0 +) +(1,14848:6630773,30943329:25952256,505283,126483 +(1,14847:6630773,30943329:0,452978,115847 +r1,14847:8395886,30943329:1765113,568825,115847 +k1,14847:6630773,30943329:-1765113 +) +(1,14847:6630773,30943329:1765113,452978,115847 +k1,14847:6630773,30943329:3277 +h1,14847:8392609,30943329:0,411205,112570 +) +k1,14847:8673007,30943329:277121 +k1,14847:10054410,30943329:277121 +k1,14847:11079297,30943329:277121 +k1,14847:12869644,30943329:277121 +k1,14847:13798193,30943329:277121 +k1,14847:15009857,30943329:277121 +k1,14847:16555755,30943329:277121 +k1,14847:19192173,30943329:277122 +k1,14847:20120722,30943329:277121 +k1,14847:21416928,30943329:277121 +k1,14847:23127977,30943329:277121 +k1,14847:24847545,30943329:277121 +k1,14847:25752501,30943329:277121 +k1,14847:27232863,30943329:277121 +k1,14847:30345071,30943329:277121 +k1,14847:31490544,30943329:277121 +k1,14848:32583029,30943329:0 +) +(1,14848:6630773,31784817:25952256,513147,134348 +(1,14847:6630773,31784817:0,452978,115847 +r1,14847:10506157,31784817:3875384,568825,115847 +k1,14847:6630773,31784817:-3875384 +) +(1,14847:6630773,31784817:3875384,452978,115847 +k1,14847:6630773,31784817:3277 +h1,14847:10502880,31784817:0,411205,112570 +) +g1,14847:10705386,31784817 +g1,14847:11629443,31784817 +g1,14847:12514834,31784817 +g1,14847:13365491,31784817 +g1,14847:15805396,31784817 +g1,14847:17023710,31784817 +g1,14847:18491716,31784817 +g1,14847:19350237,31784817 +g1,14847:20733702,31784817 +g1,14847:22777114,31784817 +g1,14847:24351944,31784817 +g1,14847:25498824,31784817 +g1,14847:26717138,31784817 +$1,14847:26717138,31784817 +$1,14847:27219799,31784817 +g1,14847:27419028,31784817 +k1,14848:32583029,31784817:3737938 +g1,14848:32583029,31784817 +) +v1,14850:6630773,32975283:0,393216,0 +(1,14854:6630773,33258922:25952256,676855,196608 +g1,14854:6630773,33258922 +g1,14854:6630773,33258922 +g1,14854:6434165,33258922 +(1,14854:6434165,33258922:0,676855,196608 +r1,14854:32779637,33258922:26345472,873463,196608 +k1,14854:6434165,33258922:-26345472 +) +(1,14854:6434165,33258922:26345472,676855,196608 +[1,14854:6630773,33258922:25952256,480247,0 +(1,14852:6630773,33182901:25952256,404226,76021 +(1,14851:6630773,33182901:0,0,0 +g1,14851:6630773,33182901 +g1,14851:6630773,33182901 +g1,14851:6303093,33182901 +(1,14851:6303093,33182901:0,0,0 +) +g1,14851:6630773,33182901 +) +g1,14852:6946919,33182901 +g1,14852:7263065,33182901 +g1,14852:12953687,33182901 +g1,14852:13585979,33182901 +g1,14852:19276602,33182901 +g1,14852:19908894,33182901 +k1,14852:19908894,33182901:0 +h1,14852:23070351,33182901:0,0,0 +k1,14852:32583029,33182901:9512678 +g1,14852:32583029,33182901 +) +] +) +g1,14854:32583029,33258922 +g1,14854:6630773,33258922 +g1,14854:6630773,33258922 +g1,14854:32583029,33258922 +g1,14854:32583029,33258922 +) +h1,14854:6630773,33455530:0,0,0 +(1,14858:6630773,34821306:25952256,513147,134348 +h1,14857:6630773,34821306:983040,0,0 +k1,14857:9999264,34821306:221452 +k1,14857:13633176,34821306:221452 +k1,14857:15839714,34821306:221452 +k1,14857:16417026,34821306:221452 +k1,14857:19817629,34821306:221452 +k1,14857:22710984,34821306:221452 +k1,14857:23677580,34821306:221452 +k1,14857:24550460,34821306:221452 +k1,14857:27034215,34821306:221452 +k1,14857:28274752,34821306:221452 +k1,14857:31923737,34821306:221452 +k1,14857:32583029,34821306:0 +) +(1,14858:6630773,35662794:25952256,513147,134348 +k1,14857:9056260,35662794:202506 +k1,14857:9918058,35662794:202506 +k1,14857:12322574,35662794:202506 +k1,14857:15567917,35662794:202506 +k1,14857:16456585,35662794:202506 +k1,14857:17937698,35662794:202506 +k1,14857:18826367,35662794:202507 +k1,14857:19688165,35662794:202506 +k1,14857:23083585,35662794:202506 +k1,14857:26328928,35662794:202506 +k1,14857:27159269,35662794:202506 +k1,14857:28380860,35662794:202506 +k1,14857:30554034,35662794:202506 +k1,14857:32583029,35662794:0 +) +(1,14858:6630773,36504282:25952256,513147,134348 +k1,14857:7981067,36504282:158849 +k1,14857:9008267,36504282:158848 +k1,14857:10680342,36504282:158849 +(1,14857:10680342,36504282:0,452978,115847 +r1,14857:13852302,36504282:3171960,568825,115847 +k1,14857:10680342,36504282:-3171960 +) +(1,14857:10680342,36504282:3171960,452978,115847 +k1,14857:10680342,36504282:3277 +h1,14857:13849025,36504282:0,411205,112570 +) +k1,14857:14011151,36504282:158849 +k1,14857:16497183,36504282:158849 +k1,14857:17323187,36504282:158848 +(1,14857:17323187,36504282:0,452978,115847 +r1,14857:21198571,36504282:3875384,568825,115847 +k1,14857:17323187,36504282:-3875384 +) +(1,14857:17323187,36504282:3875384,452978,115847 +k1,14857:17323187,36504282:3277 +h1,14857:21195294,36504282:0,411205,112570 +) +k1,14857:21531090,36504282:158849 +k1,14857:22709024,36504282:158849 +k1,14857:25108549,36504282:158849 +k1,14857:27223647,36504282:158848 +k1,14857:28857711,36504282:158849 +k1,14857:31563944,36504282:158849 +k1,14857:32583029,36504282:0 +) +(1,14858:6630773,37345770:25952256,505283,138281 +g1,14857:8014238,37345770 +g1,14857:10057650,37345770 +g1,14857:10872917,37345770 +g1,14857:12538842,37345770 +$1,14857:12538842,37345770 +$1,14857:13041503,37345770 +g1,14857:13240732,37345770 +g1,14857:14631406,37345770 +$1,14857:14631406,37345770 +$1,14857:15183219,37345770 +g1,14857:15382448,37345770 +k1,14858:32583029,37345770:15628372 +g1,14858:32583029,37345770 +) +v1,14860:6630773,38711546:0,393216,0 +(1,14861:6630773,43522042:25952256,5203712,616038 +g1,14861:6630773,43522042 +(1,14861:6630773,43522042:25952256,5203712,616038 +(1,14861:6630773,44138080:25952256,5819750,0 +[1,14861:6630773,44138080:25952256,5819750,0 +(1,14861:6630773,44111866:25952256,5767322,0 +r1,14861:6656987,44111866:26214,5767322,0 +[1,14861:6656987,44111866:25899828,5767322,0 +(1,14861:6656987,43522042:25899828,4587674,0 +[1,14861:7246811,43522042:24720180,4587674,0 +(1,14861:7246811,40021742:24720180,1087374,126483 +k1,14860:8698114,40021742:241600 +k1,14860:11145656,40021742:241600 +k1,14860:12406342,40021742:241601 +k1,14860:15309359,40021742:241600 +k1,14860:17579954,40021742:241600 +k1,14860:18546382,40021742:241600 +k1,14860:20072489,40021742:241601 +k1,14860:21333174,40021742:241600 +k1,14860:22759010,40021742:241600 +k1,14860:24844793,40021742:241600 +k1,14860:25895763,40021742:241600 +k1,14860:27156449,40021742:241601 +$1,14860:27156449,40021742 +$1,14860:27659110,40021742 +k1,14860:29366095,40021742:241600 +k1,14860:30599255,40021742:241600 +k1,14860:31966991,40021742:0 +) +(1,14861:7246811,40863230:24720180,513147,138281 +k1,14860:8665502,40863230:227246 +k1,14860:10636661,40863230:227246 +k1,14860:11673277,40863230:227246 +k1,14860:12919608,40863230:227246 +$1,14860:12919608,40863230 +$1,14860:13471421,40863230 +k1,14860:15164052,40863230:227246 +k1,14860:16621409,40863230:227246 +k1,14860:18040100,40863230:227246 +k1,14860:19286430,40863230:227245 +k1,14860:20844712,40863230:227246 +k1,14860:22340735,40863230:227246 +k1,14860:23099478,40863230:227246 +k1,14860:24345809,40863230:227246 +k1,14860:26226528,40863230:227246 +k1,14860:27401425,40863230:227246 +k1,14860:29095367,40863230:227246 +k1,14860:30894822,40863230:227246 +k1,14860:31966991,40863230:0 +) +(1,14861:7246811,41704718:24720180,513147,134348 +k1,14860:10118736,41704718:210508 +k1,14860:11896865,41704718:210508 +k1,14860:13126459,41704718:210509 +k1,14860:15776217,41704718:210508 +k1,14860:18458743,41704718:210508 +k1,14860:19688336,41704718:210508 +k1,14860:24724915,41704718:210508 +k1,14860:25883074,41704718:210508 +(1,14860:25883074,41704718:0,452978,115847 +r1,14861:28351611,41704718:2468537,568825,115847 +k1,14860:25883074,41704718:-2468537 +) +(1,14860:25883074,41704718:2468537,452978,115847 +k1,14860:25883074,41704718:3277 +h1,14860:28348334,41704718:0,411205,112570 +) +k1,14860:28562120,41704718:210509 +k1,14860:29424056,41704718:210508 +k1,14860:30900720,41704718:210508 +k1,14860:31966991,41704718:0 +) +(1,14861:7246811,42546206:24720180,513147,134348 +k1,14860:8442796,42546206:176900 +k1,14860:10688013,42546206:176901 +k1,14860:11524205,42546206:176900 +k1,14860:12720190,42546206:176900 +k1,14860:15766257,42546206:176901 +k1,14860:17227663,42546206:176900 +k1,14860:18934829,42546206:176900 +k1,14860:19763158,42546206:176901 +k1,14860:20687824,42546206:176900 +k1,14860:22559486,42546206:176901 +k1,14860:24019581,42546206:176900 +k1,14860:26380796,42546206:176900 +k1,14860:27599719,42546206:176901 +k1,14860:30942008,42546206:176900 +k1,14860:31966991,42546206:0 +) +(1,14861:7246811,43387694:24720180,505283,134348 +(1,14860:7246811,43387694:4681892,505283,11795 +) +g1,14860:12127932,43387694 +(1,14860:12335026,43387694:4681892,505283,11795 +) +g1,14860:17423241,43387694 +g1,14860:18813915,43387694 +(1,14860:18813915,43387694:3713270,505283,134348 +) +g1,14860:22726414,43387694 +(1,14860:22933508,43387694:3713270,505283,134348 +) +k1,14861:31966991,43387694:4939449 +g1,14861:31966991,43387694 +) +] +) +] +r1,14861:32583029,44111866:26214,5767322,0 +) +] +) +) +g1,14861:32583029,43522042 +) +h1,14861:6630773,44138080:0,0,0 +(1,14864:6630773,45503856:25952256,513147,134348 +h1,14863:6630773,45503856:983040,0,0 +k1,14863:11359196,45503856:223478 +k1,14863:12241965,45503856:223477 +k1,14863:14167413,45503856:223478 +k1,14863:15617070,45503856:223478 +k1,14863:18709713,45503856:223477 +k1,14863:20037473,45503856:223478 +k1,14863:21008717,45503856:223478 +k1,14863:24005678,45503856:223477 +k1,14863:24845194,45503856:223478 +k1,14863:25424531,45503856:223477 +k1,14863:27850019,45503856:223478 +k1,14863:29485143,45503856:223478 +k1,14863:30394782,45503856:223477 +k1,14863:31896867,45503856:223478 +k1,14863:32583029,45503856:0 +) +] +(1,14866:32583029,45706769:0,0,0 +g1,14866:32583029,45706769 +) +) +] +(1,14866:6630773,47279633:25952256,0,0 +h1,14866:6630773,47279633:25952256,0,0 ) -) -g1,14800:26614645,16073415 -) -) -) -g1,14801:26613923,16073415 -k1,14801:32583029,16073415:5969106 -) -v1,14809:6630773,17347966:0,393216,0 -(1,14810:6630773,22958790:25952256,6004040,616038 -g1,14810:6630773,22958790 -(1,14810:6630773,22958790:25952256,6004040,616038 -(1,14810:6630773,23574828:25952256,6620078,0 -[1,14810:6630773,23574828:25952256,6620078,0 -(1,14810:6630773,23548614:25952256,6567650,0 -r1,14810:6656987,23548614:26214,6567650,0 -[1,14810:6656987,23548614:25899828,6567650,0 -(1,14810:6656987,22958790:25899828,5388002,0 -[1,14810:7246811,22958790:24720180,5388002,0 -(1,14810:7246811,18656324:24720180,1085536,298548 -(1,14809:7246811,18656324:0,1085536,298548 -r1,14810:8753226,18656324:1506415,1384084,298548 -k1,14809:7246811,18656324:-1506415 -) -(1,14809:7246811,18656324:1506415,1085536,298548 -) -k1,14809:8924295,18656324:171069 -k1,14809:10878598,18656324:171068 -k1,14809:12233903,18656324:171069 -k1,14809:14249155,18656324:171069 -k1,14809:15411783,18656324:171068 -k1,14809:18077152,18656324:171069 -k1,14809:19404931,18656324:171069 -k1,14809:21863207,18656324:171069 -k1,14809:23894842,18656324:171068 -k1,14809:24717339,18656324:171069 -k1,14809:25822951,18656324:171069 -k1,14809:27460715,18656324:171068 -k1,14809:28650869,18656324:171069 -k1,14809:31966991,18656324:0 -) -(1,14810:7246811,19497812:24720180,513147,134348 -k1,14809:8726871,19497812:288615 -k1,14809:11361019,19497812:288614 -k1,14809:15640777,19497812:288615 -(1,14809:15640777,19497812:0,452978,122846 -r1,14810:17405890,19497812:1765113,575824,122846 -k1,14809:15640777,19497812:-1765113 -) -(1,14809:15640777,19497812:1765113,452978,122846 -k1,14809:15640777,19497812:3277 -h1,14809:17402613,19497812:0,411205,112570 -) -k1,14809:17694504,19497812:288614 -k1,14809:19174564,19497812:288615 -(1,14809:19174564,19497812:0,452978,122846 -r1,14810:20939677,19497812:1765113,575824,122846 -k1,14809:19174564,19497812:-1765113 -) -(1,14809:19174564,19497812:1765113,452978,122846 -k1,14809:19174564,19497812:3277 -h1,14809:20936400,19497812:0,411205,112570 -) -k1,14809:21401961,19497812:288614 -k1,14809:22376738,19497812:288615 -k1,14809:23684437,19497812:288614 -k1,14809:26238632,19497812:288615 -k1,14809:28537891,19497812:288614 -k1,14809:30228976,19497812:288615 -k1,14809:31966991,19497812:0 -) -(1,14810:7246811,20339300:24720180,513147,134348 -k1,14809:10115674,20339300:183198 -k1,14809:11679716,20339300:183198 -k1,14809:12394412,20339300:183199 -k1,14809:13760535,20339300:183198 -k1,14809:14595161,20339300:183198 -k1,14809:15797444,20339300:183198 -k1,14809:17191748,20339300:183199 -k1,14809:18659452,20339300:183198 -k1,14809:22660122,20339300:183198 -k1,14809:25355315,20339300:183198 -k1,14809:26530074,20339300:183199 -k1,14809:30113280,20339300:183198 -k1,14809:30947906,20339300:183198 -k1,14809:31966991,20339300:0 -) -(1,14810:7246811,21180788:24720180,513147,134348 -k1,14809:8652105,21180788:179115 -k1,14809:10436852,21180788:179115 -k1,14809:12567629,21180788:179115 -k1,14809:14189191,21180788:179115 -k1,14809:15019734,21180788:179115 -k1,14809:16217934,21180788:179115 -k1,14809:17848015,21180788:179114 -k1,14809:19096678,21180788:179115 -k1,14809:21777302,21180788:179115 -k1,14809:25773889,21180788:179115 -k1,14809:26612296,21180788:179115 -$1,14809:26612296,21180788 -$1,14809:27114957,21180788 -k1,14809:28759457,21180788:179115 -k1,14809:30122808,21180788:179115 -k1,14809:31966991,21180788:0 -) -(1,14810:7246811,22022276:24720180,513147,134348 -k1,14809:9762847,22022276:195406 -k1,14809:10755172,22022276:195407 -k1,14809:13406212,22022276:195406 -k1,14809:15399926,22022276:195406 -k1,14809:17103972,22022276:195407 -k1,14809:20489671,22022276:195406 -k1,14809:22079028,22022276:195406 -k1,14809:24598997,22022276:195407 -k1,14809:25445831,22022276:195406 -k1,14809:26825473,22022276:195406 -k1,14809:29007932,22022276:195407 -k1,14809:30947906,22022276:195406 -k1,14809:31966991,22022276:0 -) -(1,14810:7246811,22863764:24720180,505283,95026 -g1,14809:11256959,22863764 -$1,14809:11256959,22863764 -$1,14809:11759620,22863764 -g1,14809:11958849,22863764 -k1,14810:31966992,22863764:18582080 -g1,14810:31966992,22863764 -) -] -) -] -r1,14810:32583029,23548614:26214,6567650,0 -) -] -) -) -g1,14810:32583029,22958790 -) -h1,14810:6630773,23574828:0,0,0 -v1,14813:6630773,24849379:0,393216,0 -(1,14814:6630773,27937577:25952256,3481414,616038 -g1,14814:6630773,27937577 -(1,14814:6630773,27937577:25952256,3481414,616038 -(1,14814:6630773,28553615:25952256,4097452,0 -[1,14814:6630773,28553615:25952256,4097452,0 -(1,14814:6630773,28527401:25952256,4045024,0 -r1,14814:6656987,28527401:26214,4045024,0 -[1,14814:6656987,28527401:25899828,4045024,0 -(1,14814:6656987,27937577:25899828,2865376,0 -[1,14814:7246811,27937577:24720180,2865376,0 -(1,14814:7246811,26159575:24720180,1087374,134348 -k1,14813:8654907,26159575:198393 -k1,14813:10150913,26159575:198393 -k1,14813:11743258,26159575:198394 -k1,14813:12960736,26159575:198393 -k1,14813:14655316,26159575:198393 -k1,14813:15469747,26159575:198393 -k1,14813:16687225,26159575:198393 -k1,14813:18033810,26159575:198394 -k1,14813:20202871,26159575:198393 -k1,14813:22430259,26159575:198393 -k1,14813:25881204,26159575:198393 -k1,14813:27098683,26159575:198394 -k1,14813:29307721,26159575:198393 -k1,14813:31019340,26159575:198393 -k1,14814:31966991,26159575:0 -) -(1,14814:7246811,27001063:24720180,513147,134348 -(1,14813:7246811,27001063:0,452978,122846 -r1,14814:9011924,27001063:1765113,575824,122846 -k1,14813:7246811,27001063:-1765113 -) -(1,14813:7246811,27001063:1765113,452978,122846 -k1,14813:7246811,27001063:3277 -h1,14813:9008647,27001063:0,411205,112570 -) -k1,14813:9338528,27001063:152934 -(1,14813:9338528,27001063:0,452978,122846 -r1,14814:11103641,27001063:1765113,575824,122846 -k1,14813:9338528,27001063:-1765113 -) -(1,14813:9338528,27001063:1765113,452978,122846 -k1,14813:9338528,27001063:3277 -h1,14813:11100364,27001063:0,411205,112570 -) -k1,14813:11256576,27001063:152935 -k1,14813:12600955,27001063:152934 -(1,14813:12600955,27001063:0,452978,122846 -r1,14814:14366068,27001063:1765113,575824,122846 -k1,14813:12600955,27001063:-1765113 -) -(1,14813:12600955,27001063:1765113,452978,122846 -k1,14813:12600955,27001063:3277 -h1,14813:14362791,27001063:0,411205,112570 -) -k1,14813:14692673,27001063:152935 -k1,14813:17212112,27001063:152934 -k1,14813:18356607,27001063:152935 -k1,14813:21707043,27001063:152934 -k1,14813:22476016,27001063:152935 -k1,14813:25258254,27001063:152934 -k1,14813:26602634,27001063:152935 -k1,14813:30573040,27001063:152934 -k1,14813:31966991,27001063:0 -) -(1,14814:7246811,27842551:24720180,505283,95026 -g1,14813:9456685,27842551 -g1,14813:12291117,27842551 -g1,14813:12888805,27842551 -g1,14813:14279479,27842551 -k1,14814:31966990,27842551:16908288 -g1,14814:31966990,27842551 -) -] -) -] -r1,14814:32583029,28527401:26214,4045024,0 -) -] -) -) -g1,14814:32583029,27937577 -) -h1,14814:6630773,28553615:0,0,0 -(1,14817:6630773,29828166:25952256,513147,134348 -h1,14816:6630773,29828166:983040,0,0 -k1,14816:8316209,29828166:214808 -k1,14816:9744104,29828166:214824 -k1,14816:12260552,29828166:214824 -k1,14816:15459886,29828166:214824 -k1,14816:16206206,29828166:214823 -k1,14816:17072458,29828166:214824 -k1,14816:18379767,29828166:214824 -k1,14816:18950451,29828166:214824 -k1,14816:21517362,29828166:214824 -k1,14816:23063222,29828166:214824 -k1,14816:24720492,29828166:214823 -k1,14816:27030502,29828166:214824 -(1,14816:27030502,29828166:0,452978,115847 -r1,14816:29499039,29828166:2468537,568825,115847 -k1,14816:27030502,29828166:-2468537 -) -(1,14816:27030502,29828166:2468537,452978,115847 -k1,14816:27030502,29828166:3277 -h1,14816:29495762,29828166:0,411205,112570 -) -k1,14816:29887533,29828166:214824 -k1,14817:32583029,29828166:0 -) -(1,14817:6630773,30669654:25952256,505283,126483 -(1,14816:6630773,30669654:0,452978,115847 -r1,14816:8395886,30669654:1765113,568825,115847 -k1,14816:6630773,30669654:-1765113 -) -(1,14816:6630773,30669654:1765113,452978,115847 -k1,14816:6630773,30669654:3277 -h1,14816:8392609,30669654:0,411205,112570 -) -k1,14816:8673007,30669654:277121 -k1,14816:10054410,30669654:277121 -k1,14816:11079297,30669654:277121 -k1,14816:12869644,30669654:277121 -k1,14816:13798193,30669654:277121 -k1,14816:15009857,30669654:277121 -k1,14816:16555755,30669654:277121 -k1,14816:19192173,30669654:277122 -k1,14816:20120722,30669654:277121 -k1,14816:21416928,30669654:277121 -k1,14816:23127977,30669654:277121 -k1,14816:24847545,30669654:277121 -k1,14816:25752501,30669654:277121 -k1,14816:27232863,30669654:277121 -k1,14816:30345071,30669654:277121 -k1,14816:31490544,30669654:277121 -k1,14817:32583029,30669654:0 -) -(1,14817:6630773,31511142:25952256,513147,134348 -(1,14816:6630773,31511142:0,452978,115847 -r1,14816:10506157,31511142:3875384,568825,115847 -k1,14816:6630773,31511142:-3875384 -) -(1,14816:6630773,31511142:3875384,452978,115847 -k1,14816:6630773,31511142:3277 -h1,14816:10502880,31511142:0,411205,112570 -) -g1,14816:10705386,31511142 -g1,14816:11629443,31511142 -g1,14816:12514834,31511142 -g1,14816:13365491,31511142 -g1,14816:15805396,31511142 -g1,14816:17023710,31511142 -g1,14816:18491716,31511142 -g1,14816:19350237,31511142 -g1,14816:20733702,31511142 -g1,14816:22777114,31511142 -g1,14816:24351944,31511142 -g1,14816:25498824,31511142 -g1,14816:26717138,31511142 -$1,14816:26717138,31511142 -$1,14816:27219799,31511142 -g1,14816:27419028,31511142 -k1,14817:32583029,31511142:3737938 -g1,14817:32583029,31511142 -) -v1,14819:6630773,32610383:0,393216,0 -(1,14823:6630773,32894022:25952256,676855,196608 -g1,14823:6630773,32894022 -g1,14823:6630773,32894022 -g1,14823:6434165,32894022 -(1,14823:6434165,32894022:0,676855,196608 -r1,14823:32779637,32894022:26345472,873463,196608 -k1,14823:6434165,32894022:-26345472 -) -(1,14823:6434165,32894022:26345472,676855,196608 -[1,14823:6630773,32894022:25952256,480247,0 -(1,14821:6630773,32818001:25952256,404226,76021 -(1,14820:6630773,32818001:0,0,0 -g1,14820:6630773,32818001 -g1,14820:6630773,32818001 -g1,14820:6303093,32818001 -(1,14820:6303093,32818001:0,0,0 -) -g1,14820:6630773,32818001 -) -g1,14821:6946919,32818001 -g1,14821:7263065,32818001 -g1,14821:12953687,32818001 -g1,14821:13585979,32818001 -g1,14821:19276602,32818001 -g1,14821:19908894,32818001 -k1,14821:19908894,32818001:0 -h1,14821:23070351,32818001:0,0,0 -k1,14821:32583029,32818001:9512678 -g1,14821:32583029,32818001 -) -] -) -g1,14823:32583029,32894022 -g1,14823:6630773,32894022 -g1,14823:6630773,32894022 -g1,14823:32583029,32894022 -g1,14823:32583029,32894022 -) -h1,14823:6630773,33090630:0,0,0 -(1,14827:6630773,34365181:25952256,513147,134348 -h1,14826:6630773,34365181:983040,0,0 -k1,14826:9999264,34365181:221452 -k1,14826:13633176,34365181:221452 -k1,14826:15839714,34365181:221452 -k1,14826:16417026,34365181:221452 -k1,14826:19817629,34365181:221452 -k1,14826:22710984,34365181:221452 -k1,14826:23677580,34365181:221452 -k1,14826:24550460,34365181:221452 -k1,14826:27034215,34365181:221452 -k1,14826:28274752,34365181:221452 -k1,14826:31923737,34365181:221452 -k1,14826:32583029,34365181:0 -) -(1,14827:6630773,35206669:25952256,513147,134348 -k1,14826:9056260,35206669:202506 -k1,14826:9918058,35206669:202506 -k1,14826:12322574,35206669:202506 -k1,14826:15567917,35206669:202506 -k1,14826:16456585,35206669:202506 -k1,14826:17937698,35206669:202506 -k1,14826:18826367,35206669:202507 -k1,14826:19688165,35206669:202506 -k1,14826:23083585,35206669:202506 -k1,14826:26328928,35206669:202506 -k1,14826:27159269,35206669:202506 -k1,14826:28380860,35206669:202506 -k1,14826:30554034,35206669:202506 -k1,14826:32583029,35206669:0 -) -(1,14827:6630773,36048157:25952256,513147,134348 -k1,14826:7981067,36048157:158849 -k1,14826:9008267,36048157:158848 -k1,14826:10680342,36048157:158849 -(1,14826:10680342,36048157:0,452978,115847 -r1,14826:13852302,36048157:3171960,568825,115847 -k1,14826:10680342,36048157:-3171960 -) -(1,14826:10680342,36048157:3171960,452978,115847 -k1,14826:10680342,36048157:3277 -h1,14826:13849025,36048157:0,411205,112570 -) -k1,14826:14011151,36048157:158849 -k1,14826:16497183,36048157:158849 -k1,14826:17323187,36048157:158848 -(1,14826:17323187,36048157:0,452978,115847 -r1,14826:21198571,36048157:3875384,568825,115847 -k1,14826:17323187,36048157:-3875384 -) -(1,14826:17323187,36048157:3875384,452978,115847 -k1,14826:17323187,36048157:3277 -h1,14826:21195294,36048157:0,411205,112570 -) -k1,14826:21531090,36048157:158849 -k1,14826:22709024,36048157:158849 -k1,14826:25108549,36048157:158849 -k1,14826:27223647,36048157:158848 -k1,14826:28857711,36048157:158849 -k1,14826:31563944,36048157:158849 -k1,14826:32583029,36048157:0 -) -(1,14827:6630773,36889645:25952256,505283,138281 -g1,14826:8014238,36889645 -g1,14826:10057650,36889645 -g1,14826:10872917,36889645 -g1,14826:12538842,36889645 -$1,14826:12538842,36889645 -$1,14826:13041503,36889645 -g1,14826:13240732,36889645 -g1,14826:14631406,36889645 -$1,14826:14631406,36889645 -$1,14826:15183219,36889645 -g1,14826:15382448,36889645 -k1,14827:32583029,36889645:15628372 -g1,14827:32583029,36889645 -) -v1,14829:6630773,38164196:0,393216,0 -(1,14830:6630773,43816180:25952256,6045200,616038 -g1,14830:6630773,43816180 -(1,14830:6630773,43816180:25952256,6045200,616038 -(1,14830:6630773,44432218:25952256,6661238,0 -[1,14830:6630773,44432218:25952256,6661238,0 -(1,14830:6630773,44406004:25952256,6608810,0 -r1,14830:6656987,44406004:26214,6608810,0 -[1,14830:6656987,44406004:25899828,6608810,0 -(1,14830:6656987,43816180:25899828,5429162,0 -[1,14830:7246811,43816180:24720180,5429162,0 -(1,14830:7246811,39474392:24720180,1087374,126483 -k1,14829:8698114,39474392:241600 -k1,14829:11145656,39474392:241600 -k1,14829:12406342,39474392:241601 -k1,14829:15309359,39474392:241600 -k1,14829:17579954,39474392:241600 -k1,14829:18546382,39474392:241600 -k1,14829:20072489,39474392:241601 -k1,14829:21333174,39474392:241600 -k1,14829:22759010,39474392:241600 -k1,14829:24844793,39474392:241600 -k1,14829:25895763,39474392:241600 -k1,14829:27156449,39474392:241601 -$1,14829:27156449,39474392 -$1,14829:27659110,39474392 -k1,14829:29366095,39474392:241600 -k1,14829:30599255,39474392:241600 -k1,14829:31966991,39474392:0 -) -(1,14830:7246811,40315880:24720180,513147,138281 -k1,14829:8665502,40315880:227246 -k1,14829:10636661,40315880:227246 -k1,14829:11673277,40315880:227246 -k1,14829:12919608,40315880:227246 -$1,14829:12919608,40315880 -$1,14829:13471421,40315880 -k1,14829:15164052,40315880:227246 -k1,14829:16621409,40315880:227246 -k1,14829:18040100,40315880:227246 -k1,14829:19286430,40315880:227245 -k1,14829:20844712,40315880:227246 -k1,14829:22340735,40315880:227246 -k1,14829:23099478,40315880:227246 -k1,14829:24345809,40315880:227246 -k1,14829:26226528,40315880:227246 -k1,14829:27401425,40315880:227246 -k1,14829:29095367,40315880:227246 -k1,14829:30894822,40315880:227246 -k1,14829:31966991,40315880:0 -) -(1,14830:7246811,41157368:24720180,513147,134348 -k1,14829:10118736,41157368:210508 -k1,14829:11896865,41157368:210508 -k1,14829:13126459,41157368:210509 -k1,14829:15776217,41157368:210508 -k1,14829:18458743,41157368:210508 -k1,14829:19688336,41157368:210508 -k1,14829:24724915,41157368:210508 -k1,14829:25883074,41157368:210508 -(1,14829:25883074,41157368:0,452978,115847 -r1,14830:28351611,41157368:2468537,568825,115847 -k1,14829:25883074,41157368:-2468537 -) -(1,14829:25883074,41157368:2468537,452978,115847 -k1,14829:25883074,41157368:3277 -h1,14829:28348334,41157368:0,411205,112570 -) -k1,14829:28562120,41157368:210509 -k1,14829:29424056,41157368:210508 -k1,14829:30900720,41157368:210508 -k1,14829:31966991,41157368:0 -) -(1,14830:7246811,41998856:24720180,513147,134348 -k1,14829:8442796,41998856:176900 -k1,14829:10688013,41998856:176901 -k1,14829:11524205,41998856:176900 -k1,14829:12720190,41998856:176900 -k1,14829:15766257,41998856:176901 -k1,14829:17227663,41998856:176900 -k1,14829:18934829,41998856:176900 -k1,14829:19763158,41998856:176901 -k1,14829:20687824,41998856:176900 -k1,14829:22559486,41998856:176901 -k1,14829:24019581,41998856:176900 -k1,14829:26380796,41998856:176900 -k1,14829:27599719,41998856:176901 -k1,14829:30942008,41998856:176900 -k1,14829:31966991,41998856:0 -) -(1,14830:7246811,42840344:24720180,513147,134348 -k1,14829:9977180,42840344:181674 -k1,14829:12499712,42840344:181586 -k1,14829:15492137,42840344:181586 -k1,14829:16597782,42840344:181587 -k1,14829:18313566,42840344:181586 -k1,14829:21140841,42840344:181586 -k1,14829:24453737,42840344:181586 -k1,14829:25826768,42840344:181586 -k1,14829:28161868,42840344:181587 -k1,14829:30144383,42840344:181586 -k1,14829:31517414,42840344:181586 -k1,14829:31966991,42840344:0 -) -(1,14830:7246811,43681832:24720180,505283,134348 -g1,14829:10256879,43681832 -g1,14829:13538921,43681832 -g1,14829:15960476,43681832 -k1,14830:31966991,43681832:14031915 -g1,14830:31966991,43681832 -) -] -) -] -r1,14830:32583029,44406004:26214,6608810,0 -) -] -) -) -g1,14830:32583029,43816180 -) -h1,14830:6630773,44432218:0,0,0 -(1,14833:6630773,45706769:25952256,513147,134348 -h1,14832:6630773,45706769:983040,0,0 -k1,14832:11359196,45706769:223478 -k1,14832:12241965,45706769:223477 -k1,14832:14167413,45706769:223478 -k1,14832:15617070,45706769:223478 -k1,14832:18709713,45706769:223477 -k1,14832:20037473,45706769:223478 -k1,14832:21008717,45706769:223478 -k1,14832:24005678,45706769:223477 -k1,14832:24845194,45706769:223478 -k1,14832:25424531,45706769:223477 -k1,14832:27850019,45706769:223478 -k1,14832:29485143,45706769:223478 -k1,14832:30394782,45706769:223477 -k1,14832:31896867,45706769:223478 -k1,14832:32583029,45706769:0 -) -] -(1,14835:32583029,45706769:0,0,0 -g1,14835:32583029,45706769 -) -) -] -(1,14835:6630773,47279633:25952256,0,0 -h1,14835:6630773,47279633:25952256,0,0 -) -] -h1,14835:4262630,4025873:0,0,0 -] -!21038 -}287 -Input:2256:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 -{288 -[1,14878:4262630,47279633:28320399,43253760,0 -(1,14878:4262630,4025873:0,0,0 -[1,14878:-473657,4025873:25952256,0,0 -(1,14878:-473657,-710414:25952256,0,0 -h1,14878:-473657,-710414:0,0,0 -(1,14878:-473657,-710414:0,0,0 -(1,14878:-473657,-710414:0,0,0 -g1,14878:-473657,-710414 -(1,14878:-473657,-710414:65781,0,65781 -g1,14878:-407876,-710414 -[1,14878:-407876,-644633:0,0,0 +] +h1,14866:4262630,4025873:0,0,0 +] +!20807 +}288 +Input:2253:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 +{289 +[1,14909:4262630,47279633:28320399,43253760,0 +(1,14909:4262630,4025873:0,0,0 +[1,14909:-473657,4025873:25952256,0,0 +(1,14909:-473657,-710414:25952256,0,0 +h1,14909:-473657,-710414:0,0,0 +(1,14909:-473657,-710414:0,0,0 +(1,14909:-473657,-710414:0,0,0 +g1,14909:-473657,-710414 +(1,14909:-473657,-710414:65781,0,65781 +g1,14909:-407876,-710414 +[1,14909:-407876,-644633:0,0,0 ] ) -k1,14878:-473657,-710414:-65781 +k1,14909:-473657,-710414:-65781 ) ) -k1,14878:25478599,-710414:25952256 -g1,14878:25478599,-710414 +k1,14909:25478599,-710414:25952256 +g1,14909:25478599,-710414 ) ] ) -[1,14878:6630773,47279633:25952256,43253760,0 -[1,14878:6630773,4812305:25952256,786432,0 -(1,14878:6630773,4812305:25952256,505283,7863 -(1,14878:6630773,4812305:25952256,505283,7863 -g1,14878:3078558,4812305 -[1,14878:3078558,4812305:0,0,0 -(1,14878:3078558,2439708:0,1703936,0 -k1,14878:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14878:2537886,2439708:1179648,16384,0 +[1,14909:6630773,47279633:25952256,43253760,0 +[1,14909:6630773,4812305:25952256,786432,0 +(1,14909:6630773,4812305:25952256,513147,134348 +(1,14909:6630773,4812305:25952256,513147,134348 +g1,14909:3078558,4812305 +[1,14909:3078558,4812305:0,0,0 +(1,14909:3078558,2439708:0,1703936,0 +k1,14909:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14909:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14878:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14909:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14878:3078558,4812305:0,0,0 -(1,14878:3078558,2439708:0,1703936,0 -g1,14878:29030814,2439708 -g1,14878:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14878:36151628,1915420:16384,1179648,0 +[1,14909:3078558,4812305:0,0,0 +(1,14909:3078558,2439708:0,1703936,0 +g1,14909:29030814,2439708 +g1,14909:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14909:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14878:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14909:37855564,2439708:1179648,16384,0 ) ) -k1,14878:3078556,2439708:-34777008 +k1,14909:3078556,2439708:-34777008 ) ] -[1,14878:3078558,4812305:0,0,0 -(1,14878:3078558,49800853:0,16384,2228224 -k1,14878:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14878:2537886,49800853:1179648,16384,0 +[1,14909:3078558,4812305:0,0,0 +(1,14909:3078558,49800853:0,16384,2228224 +k1,14909:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14909:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14878:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14909:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,14878:3078558,4812305:0,0,0 -(1,14878:3078558,49800853:0,16384,2228224 -g1,14878:29030814,49800853 -g1,14878:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14878:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14878:37855564,49800853:1179648,16384,0 -) -) -k1,14878:3078556,49800853:-34777008 -) -] -g1,14878:6630773,4812305 -g1,14878:6630773,4812305 -g1,14878:9264009,4812305 -k1,14878:31387653,4812305:22123644 -) -) -] -[1,14878:6630773,45706769:25952256,40108032,0 -(1,14878:6630773,45706769:25952256,40108032,0 -(1,14878:6630773,45706769:0,0,0 -g1,14878:6630773,45706769 -) -[1,14878:6630773,45706769:25952256,40108032,0 -(1,14833:6630773,6254097:25952256,513147,134348 -k1,14832:9800234,6254097:147596 -k1,14832:10607123,6254097:147597 -k1,14832:12326928,6254097:147596 -k1,14832:14487790,6254097:147596 -k1,14832:15294679,6254097:147597 -k1,14832:16626511,6254097:147596 -k1,14832:18934829,6254097:147596 -k1,14832:20366932,6254097:147597 -k1,14832:22187007,6254097:147596 -k1,14832:23446095,6254097:147597 -k1,14832:26528393,6254097:147596 -k1,14832:27292027,6254097:147596 -k1,14832:29041324,6254097:147597 -k1,14832:30886302,6254097:147596 -k1,14832:32583029,6254097:0 -) -(1,14833:6630773,7095585:25952256,513147,134348 -k1,14832:7801355,7095585:179022 -k1,14832:10369165,7095585:179023 -k1,14832:12636819,7095585:179022 -k1,14832:15685008,7095585:179023 -k1,14832:17148536,7095585:179022 -k1,14832:18319119,7095585:179023 -k1,14832:19833109,7095585:179022 -k1,14832:21429676,7095585:179023 -k1,14832:24889430,7095585:179022 -k1,14832:28693249,7095585:179023 -k1,14832:30137116,7095585:179022 -k1,14832:30975431,7095585:179023 -k1,14832:32583029,7095585:0 -) -(1,14833:6630773,7937073:25952256,505283,134348 -g1,14832:8021447,7937073 -g1,14832:9555644,7937073 -g1,14832:12334370,7937073 -g1,14832:13295127,7937073 -g1,14832:16066644,7937073 -g1,14832:16621733,7937073 -g1,14832:18104157,7937073 -g1,14832:20247184,7937073 -g1,14832:21730919,7937073 -g1,14832:23034430,7937073 -g1,14832:23981425,7937073 -g1,14832:25981583,7937073 -k1,14833:32583029,7937073:4278850 -g1,14833:32583029,7937073 -) -v1,14835:6630773,9302849:0,393216,0 -(1,14836:6630773,13270019:25952256,4360386,616038 -g1,14836:6630773,13270019 -(1,14836:6630773,13270019:25952256,4360386,616038 -(1,14836:6630773,13886057:25952256,4976424,0 -[1,14836:6630773,13886057:25952256,4976424,0 -(1,14836:6630773,13859843:25952256,4923996,0 -r1,14836:6656987,13859843:26214,4923996,0 -[1,14836:6656987,13859843:25899828,4923996,0 -(1,14836:6656987,13270019:25899828,3744348,0 -[1,14836:7246811,13270019:24720180,3744348,0 -(1,14836:7246811,10611207:24720180,1085536,298548 -(1,14835:7246811,10611207:0,1085536,298548 -r1,14836:8753226,10611207:1506415,1384084,298548 -k1,14835:7246811,10611207:-1506415 -) -(1,14835:7246811,10611207:1506415,1085536,298548 -) -k1,14835:9012635,10611207:259409 -k1,14835:9749800,10611207:259408 -k1,14835:11179682,10611207:259409 -k1,14835:12905786,10611207:259408 -k1,14835:14362538,10611207:259409 -k1,14835:14977807,10611207:259409 -k1,14835:18041501,10611207:259408 -k1,14835:20244708,10611207:259409 -k1,14835:21695561,10611207:259408 -k1,14835:23503586,10611207:259409 -k1,14835:24414423,10611207:259409 -k1,14835:26936134,10611207:259408 -k1,14835:28887683,10611207:259409 -k1,14835:29806383,10611207:259408 -k1,14835:30854190,10611207:259409 -k1,14836:31966991,10611207:0 -) -(1,14836:7246811,11452695:24720180,513147,134348 -k1,14835:9534611,11452695:144773 -k1,14835:10849857,11452695:144773 -k1,14835:13175012,11452695:144772 -k1,14835:14517128,11452695:144773 -k1,14835:15680986,11452695:144773 -k1,14835:17708608,11452695:144773 -k1,14835:19839777,11452695:144773 -k1,14835:22027307,11452695:144773 -k1,14835:25424631,11452695:144772 -k1,14835:26027501,11452695:144773 -k1,14835:27566225,11452695:144773 -(1,14835:27566225,11452695:0,452978,115847 -r1,14836:31793321,11452695:4227096,568825,115847 -k1,14835:27566225,11452695:-4227096 -) -(1,14835:27566225,11452695:4227096,452978,115847 -g1,14835:28272926,11452695 -h1,14835:31790044,11452695:0,411205,112570 -) -k1,14835:31966991,11452695:0 -) -(1,14836:7246811,12294183:24720180,513147,134348 -k1,14835:8790091,12294183:162436 -k1,14835:10289460,12294183:162435 -k1,14835:12096850,12294183:162436 -k1,14835:14752276,12294183:162436 -k1,14835:16405000,12294183:162435 -k1,14835:17724146,12294183:162436 -k1,14835:18987586,12294183:162435 -k1,14835:19505882,12294183:162436 -k1,14835:21252323,12294183:162436 -k1,14835:23184230,12294183:162435 -k1,14835:24005958,12294183:162436 -k1,14835:25187479,12294183:162436 -k1,14835:28252504,12294183:162435 -k1,14835:29074232,12294183:162436 -k1,14835:31966991,12294183:0 -) -(1,14836:7246811,13135671:24720180,513147,134348 -g1,14835:8518209,13135671 -g1,14835:9821720,13135671 -g1,14835:10768715,13135671 -g1,14835:11580706,13135671 -g1,14835:13086068,13135671 -k1,14836:31966991,13135671:14395639 -g1,14836:31966991,13135671 -) -] -) -] -r1,14836:32583029,13859843:26214,4923996,0 -) -] -) -) -g1,14836:32583029,13270019 -) -h1,14836:6630773,13886057:0,0,0 -(1,14839:6630773,15251833:25952256,513147,134348 -h1,14838:6630773,15251833:983040,0,0 -k1,14838:8228440,15251833:144734 -k1,14838:8904670,15251833:144733 -k1,14838:10335220,15251833:144734 -k1,14838:13109914,15251833:144734 -k1,14838:13906075,15251833:144733 -k1,14838:16313112,15251833:144734 -k1,14838:17476931,15251833:144734 -k1,14838:19887245,15251833:144734 -k1,14838:22018374,15251833:144733 -k1,14838:23676334,15251833:144734 -k1,14838:24768719,15251833:144734 -k1,14838:28010683,15251833:144733 -k1,14838:28921533,15251833:144734 -k1,14838:32583029,15251833:0 -) -(1,14839:6630773,16093321:25952256,505283,126483 -k1,14839:32583030,16093321:24170988 -g1,14839:32583030,16093321 -) -v1,14841:6630773,17283787:0,393216,0 -(1,14845:6630773,17592592:25952256,702021,196608 -g1,14845:6630773,17592592 -g1,14845:6630773,17592592 -g1,14845:6434165,17592592 -(1,14845:6434165,17592592:0,702021,196608 -r1,14845:32779637,17592592:26345472,898629,196608 -k1,14845:6434165,17592592:-26345472 -) -(1,14845:6434165,17592592:26345472,702021,196608 -[1,14845:6630773,17592592:25952256,505413,0 -(1,14843:6630773,17491405:25952256,404226,101187 -(1,14842:6630773,17491405:0,0,0 -g1,14842:6630773,17491405 -g1,14842:6630773,17491405 -g1,14842:6303093,17491405 -(1,14842:6303093,17491405:0,0,0 -) -g1,14842:6630773,17491405 -) -g1,14843:9792230,17491405 -g1,14843:10740668,17491405 -g1,14843:16431291,17491405 -g1,14843:17063583,17491405 -g1,14843:23070351,17491405 -g1,14843:23702643,17491405 -h1,14843:27180245,17491405:0,0,0 -k1,14843:32583029,17491405:5402784 -g1,14843:32583029,17491405 -) -] -) -g1,14845:32583029,17592592 -g1,14845:6630773,17592592 -g1,14845:6630773,17592592 -g1,14845:32583029,17592592 -g1,14845:32583029,17592592 -) -h1,14845:6630773,17789200:0,0,0 -(1,14851:6630773,20404748:25952256,564462,147783 -(1,14851:6630773,20404748:2899444,534184,12975 -g1,14851:6630773,20404748 -g1,14851:9530217,20404748 -) -g1,14851:12826154,20404748 -g1,14851:13451892,20404748 -g1,14851:15187810,20404748 -k1,14851:32583029,20404748:15135931 -g1,14851:32583029,20404748 -) -(1,14854:6630773,21639452:25952256,513147,134348 -k1,14853:9309502,21639452:184429 -k1,14853:10598213,21639452:184429 -k1,14853:11530409,21639452:184430 -k1,14853:14096416,21639452:184429 -k1,14853:15747541,21639452:184429 -k1,14853:17499591,21639452:184429 -k1,14853:20171112,21639452:184430 -k1,14853:21038426,21639452:184429 -k1,14853:21984383,21639452:184429 -k1,14853:25421364,21639452:184429 -k1,14853:28096817,21639452:184430 -k1,14853:30092661,21639452:184429 -k1,14853:32583029,21639452:0 -) -(1,14854:6630773,22480940:25952256,513147,134348 -k1,14853:8043125,22480940:220907 -k1,14853:10297613,22480940:220906 -k1,14853:11537605,22480940:220907 -k1,14853:14593599,22480940:220907 -k1,14853:17321912,22480940:220906 -k1,14853:18360708,22480940:220907 -k1,14853:21710959,22480940:220907 -k1,14853:23960861,22480940:220907 -k1,14853:24639864,22480940:220906 -k1,14853:25392268,22480940:220907 -k1,14853:26898991,22480940:220907 -k1,14853:29749857,22480940:220906 -k1,14853:30622192,22480940:220907 -k1,14853:32583029,22480940:0 -) -(1,14854:6630773,23322428:25952256,513147,126483 -g1,14853:7185862,23322428 -g1,14853:8841956,23322428 -g1,14853:13681134,23322428 -g1,14853:15866759,23322428 -g1,14853:19772704,23322428 -k1,14854:32583029,23322428:9941159 -g1,14854:32583029,23322428 -) -(1,14856:6630773,24163916:25952256,513147,126483 -h1,14855:6630773,24163916:983040,0,0 -k1,14855:9865018,24163916:152087 -k1,14855:10885457,24163916:152087 -k1,14855:12434116,24163916:152087 -k1,14855:13237631,24163916:152087 -k1,14855:15446238,24163916:152087 -k1,14855:17326509,24163916:152087 -k1,14855:18497681,24163916:152087 -k1,14855:19932964,24163916:152088 -k1,14855:22245118,24163916:152087 -k1,14855:24051989,24163916:152087 -k1,14855:24735573,24163916:152087 -k1,14855:27174867,24163916:152087 -k1,14855:28136324,24163916:152087 -k1,14855:29818677,24163916:152087 -k1,14855:30622192,24163916:152087 -k1,14855:32583029,24163916:0 -) -(1,14856:6630773,25005404:25952256,513147,126483 -k1,14855:7174107,25005404:187474 -k1,14855:8644776,25005404:187474 -k1,14855:11701415,25005404:187473 -k1,14855:12842438,25005404:187474 -k1,14855:14134194,25005404:187474 -k1,14855:16460108,25005404:187474 -k1,14855:18038256,25005404:187474 -k1,14855:19244814,25005404:187473 -k1,14855:22267375,25005404:187474 -k1,14855:24441245,25005404:187474 -k1,14855:25280147,25005404:187474 -k1,14855:25823481,25005404:187474 -k1,14855:28522295,25005404:187474 -k1,14855:29901213,25005404:187473 -k1,14855:31286030,25005404:187474 -k1,14855:31931601,25005404:187474 -k1,14855:32583029,25005404:0 -) -(1,14856:6630773,25846892:25952256,513147,134348 -k1,14855:9561392,25846892:168276 -k1,14855:11337267,25846892:168277 -k1,14855:12191705,25846892:168276 -k1,14855:14831999,25846892:168276 -k1,14855:15818165,25846892:168277 -k1,14855:16854793,25846892:168276 -k1,14855:18155531,25846892:168276 -k1,14855:19071573,25846892:168276 -k1,14855:21427442,25846892:168277 -k1,14855:21951578,25846892:168276 -k1,14855:26348892,25846892:168276 -k1,14855:28503565,25846892:168277 -k1,14855:30631367,25846892:168276 -k1,14855:32583029,25846892:0 -) -(1,14856:6630773,26688380:25952256,513147,126483 -g1,14855:8272449,26688380 -g1,14855:8827538,26688380 -g1,14855:11895933,26688380 -g1,14855:12963514,26688380 -g1,14855:13978011,26688380 -g1,14855:15243511,26688380 -g1,14855:16535225,26688380 -k1,14856:32583029,26688380:12019961 -g1,14856:32583029,26688380 -) -v1,14858:6630773,27878846:0,393216,0 -(1,14863:6630773,28853829:25952256,1368199,196608 -g1,14863:6630773,28853829 -g1,14863:6630773,28853829 -g1,14863:6434165,28853829 -(1,14863:6434165,28853829:0,1368199,196608 -r1,14863:32779637,28853829:26345472,1564807,196608 -k1,14863:6434165,28853829:-26345472 -) -(1,14863:6434165,28853829:26345472,1368199,196608 -[1,14863:6630773,28853829:25952256,1171591,0 -(1,14860:6630773,28086464:25952256,404226,101187 -(1,14859:6630773,28086464:0,0,0 -g1,14859:6630773,28086464 -g1,14859:6630773,28086464 -g1,14859:6303093,28086464 -(1,14859:6303093,28086464:0,0,0 -) -g1,14859:6630773,28086464 -) -g1,14860:9476084,28086464 -g1,14860:10424522,28086464 -g1,14860:13902124,28086464 -g1,14860:14534416,28086464 -g1,14860:18012019,28086464 -g1,14860:18644311,28086464 -g1,14860:24651079,28086464 -g1,14860:25283371,28086464 -h1,14860:28760973,28086464:0,0,0 -k1,14860:32583029,28086464:3822056 -g1,14860:32583029,28086464 -) -(1,14861:6630773,28752642:25952256,404226,101187 -h1,14861:6630773,28752642:0,0,0 -g1,14861:7263065,28752642 -g1,14861:7895357,28752642 -h1,14861:10424522,28752642:0,0,0 -k1,14861:32583030,28752642:22158508 -g1,14861:32583030,28752642 -) -] -) -g1,14863:32583029,28853829 -g1,14863:6630773,28853829 -g1,14863:6630773,28853829 -g1,14863:32583029,28853829 -g1,14863:32583029,28853829 -) -h1,14863:6630773,29050437:0,0,0 -(1,14866:6630773,40114939:25952256,10474678,0 -k1,14866:12599879,40114939:5969106 -h1,14865:12599879,40114939:0,0,0 -(1,14865:12599879,40114939:14014044,10474678,0 -(1,14865:12599879,40114939:14014766,10474704,0 -(1,14865:12599879,40114939:14014766,10474704,0 -(1,14865:12599879,40114939:0,10474704,0 -(1,14865:12599879,40114939:0,14155776,0 -(1,14865:12599879,40114939:18939904,14155776,0 -) -k1,14865:12599879,40114939:-18939904 -) -) -g1,14865:26614645,40114939 -) -) -) -g1,14866:26613923,40114939 -k1,14866:32583029,40114939:5969106 -) -v1,14874:6630773,41480715:0,393216,0 -(1,14875:6630773,44608235:25952256,3520736,616038 -g1,14875:6630773,44608235 -(1,14875:6630773,44608235:25952256,3520736,616038 -(1,14875:6630773,45224273:25952256,4136774,0 -[1,14875:6630773,45224273:25952256,4136774,0 -(1,14875:6630773,45198059:25952256,4084346,0 -r1,14875:6656987,45198059:26214,4084346,0 -[1,14875:6656987,45198059:25899828,4084346,0 -(1,14875:6656987,44608235:25899828,2904698,0 -[1,14875:7246811,44608235:24720180,2904698,0 -(1,14875:7246811,42790911:24720180,1087374,134348 -k1,14874:8670777,42790911:214263 -k1,14874:9354932,42790911:214262 -k1,14874:10100692,42790911:214263 -k1,14874:12444219,42790911:214262 -k1,14874:14242487,42790911:214263 -k1,14874:15108177,42790911:214262 -k1,14874:16933970,42790911:214263 -k1,14874:17799660,42790911:214262 -k1,14874:21105256,42790911:214263 -k1,14874:22926461,42790911:214262 -k1,14874:26350022,42790911:214263 -k1,14874:27835682,42790911:214262 -k1,14874:29287920,42790911:214263 -k1,14874:30161474,42790911:214262 -k1,14874:31966991,42790911:0 -) -(1,14875:7246811,43632399:24720180,505283,134348 -k1,14874:8591459,43632399:141407 -k1,14874:9264362,43632399:141406 -k1,14874:10167297,43632399:141407 -k1,14874:13683807,43632399:141406 -k1,14874:15762458,43632399:141407 -k1,14874:16713234,43632399:141406 -k1,14874:19645164,43632399:141407 -k1,14874:20536302,43632399:141406 -k1,14874:21492977,43632399:141407 -k1,14874:22831726,43632399:141406 -k1,14874:26827305,43632399:141407 -k1,14874:27620139,43632399:141406 -k1,14874:28780631,43632399:141407 -k1,14874:31966991,43632399:0 -) -(1,14875:7246811,44473887:24720180,505283,134348 -g1,14874:8062078,44473887 -g1,14874:9280392,44473887 -g1,14874:10975808,44473887 -g1,14874:13145705,44473887 -g1,14874:15200258,44473887 -g1,14874:16590932,44473887 -g1,14874:18574051,44473887 -g1,14874:19792365,44473887 -g1,14874:21598537,44473887 -k1,14875:31966991,44473887:7489457 -g1,14875:31966991,44473887 -) -] +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,14909:3078558,4812305:0,0,0 +(1,14909:3078558,49800853:0,16384,2228224 +g1,14909:29030814,49800853 +g1,14909:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14909:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14909:37855564,49800853:1179648,16384,0 +) +) +k1,14909:3078556,49800853:-34777008 +) +] +g1,14909:6630773,4812305 +k1,14909:25712890,4812305:17886740 +g1,14909:29057847,4812305 +g1,14909:29873114,4812305 +) +) +] +[1,14909:6630773,45706769:25952256,40108032,0 +(1,14909:6630773,45706769:25952256,40108032,0 +(1,14909:6630773,45706769:0,0,0 +g1,14909:6630773,45706769 +) +[1,14909:6630773,45706769:25952256,40108032,0 +(1,14864:6630773,6254097:25952256,513147,134348 +k1,14863:9800234,6254097:147596 +k1,14863:10607123,6254097:147597 +k1,14863:12326928,6254097:147596 +k1,14863:14487790,6254097:147596 +k1,14863:15294679,6254097:147597 +k1,14863:16626511,6254097:147596 +k1,14863:18934829,6254097:147596 +k1,14863:20366932,6254097:147597 +k1,14863:22187007,6254097:147596 +k1,14863:23446095,6254097:147597 +k1,14863:26528393,6254097:147596 +k1,14863:27292027,6254097:147596 +k1,14863:29041324,6254097:147597 +k1,14863:30886302,6254097:147596 +k1,14863:32583029,6254097:0 +) +(1,14864:6630773,7095585:25952256,513147,134348 +k1,14863:7801355,7095585:179022 +k1,14863:10369165,7095585:179023 +k1,14863:12636819,7095585:179022 +k1,14863:15685008,7095585:179023 +k1,14863:17148536,7095585:179022 +k1,14863:18319119,7095585:179023 +k1,14863:19833109,7095585:179022 +k1,14863:21429676,7095585:179023 +k1,14863:24889430,7095585:179022 +k1,14863:28693249,7095585:179023 +k1,14863:30137116,7095585:179022 +k1,14863:30975431,7095585:179023 +k1,14863:32583029,7095585:0 +) +(1,14864:6630773,7937073:25952256,505283,134348 +g1,14863:8021447,7937073 +g1,14863:9555644,7937073 +g1,14863:12334370,7937073 +g1,14863:13295127,7937073 +g1,14863:16066644,7937073 +g1,14863:16621733,7937073 +g1,14863:18104157,7937073 +g1,14863:20247184,7937073 +g1,14863:21730919,7937073 +g1,14863:23034430,7937073 +g1,14863:23981425,7937073 +g1,14863:25981583,7937073 +k1,14864:32583029,7937073:4278850 +g1,14864:32583029,7937073 +) +v1,14866:6630773,9302849:0,393216,0 +(1,14867:6630773,13270019:25952256,4360386,616038 +g1,14867:6630773,13270019 +(1,14867:6630773,13270019:25952256,4360386,616038 +(1,14867:6630773,13886057:25952256,4976424,0 +[1,14867:6630773,13886057:25952256,4976424,0 +(1,14867:6630773,13859843:25952256,4923996,0 +r1,14867:6656987,13859843:26214,4923996,0 +[1,14867:6656987,13859843:25899828,4923996,0 +(1,14867:6656987,13270019:25899828,3744348,0 +[1,14867:7246811,13270019:24720180,3744348,0 +(1,14867:7246811,10611207:24720180,1085536,298548 +(1,14866:7246811,10611207:0,1085536,298548 +r1,14867:8753226,10611207:1506415,1384084,298548 +k1,14866:7246811,10611207:-1506415 +) +(1,14866:7246811,10611207:1506415,1085536,298548 +) +k1,14866:9012635,10611207:259409 +k1,14866:9749800,10611207:259408 +k1,14866:11179682,10611207:259409 +k1,14866:12905786,10611207:259408 +k1,14866:14362538,10611207:259409 +k1,14866:14977807,10611207:259409 +k1,14866:18041501,10611207:259408 +k1,14866:20244708,10611207:259409 +k1,14866:21695561,10611207:259408 +k1,14866:23503586,10611207:259409 +k1,14866:24414423,10611207:259409 +k1,14866:26936134,10611207:259408 +k1,14866:28887683,10611207:259409 +k1,14866:29806383,10611207:259408 +k1,14866:30854190,10611207:259409 +k1,14867:31966991,10611207:0 +) +(1,14867:7246811,11452695:24720180,513147,134348 +k1,14866:9534611,11452695:144773 +k1,14866:10849857,11452695:144773 +k1,14866:13175012,11452695:144772 +k1,14866:14517128,11452695:144773 +k1,14866:15680986,11452695:144773 +k1,14866:17708608,11452695:144773 +k1,14866:19839777,11452695:144773 +k1,14866:22027307,11452695:144773 +k1,14866:25424631,11452695:144772 +k1,14866:26027501,11452695:144773 +k1,14866:27566225,11452695:144773 +(1,14866:27566225,11452695:0,452978,115847 +r1,14867:31793321,11452695:4227096,568825,115847 +k1,14866:27566225,11452695:-4227096 +) +(1,14866:27566225,11452695:4227096,452978,115847 +g1,14866:28272926,11452695 +h1,14866:31790044,11452695:0,411205,112570 +) +k1,14866:31966991,11452695:0 +) +(1,14867:7246811,12294183:24720180,513147,134348 +k1,14866:8790091,12294183:162436 +k1,14866:10289460,12294183:162435 +k1,14866:12096850,12294183:162436 +k1,14866:14752276,12294183:162436 +k1,14866:16405000,12294183:162435 +k1,14866:17724146,12294183:162436 +k1,14866:18987586,12294183:162435 +k1,14866:19505882,12294183:162436 +k1,14866:21252323,12294183:162436 +k1,14866:23184230,12294183:162435 +k1,14866:24005958,12294183:162436 +k1,14866:25187479,12294183:162436 +k1,14866:28252504,12294183:162435 +k1,14866:29074232,12294183:162436 +k1,14866:31966991,12294183:0 +) +(1,14867:7246811,13135671:24720180,513147,134348 +g1,14866:8518209,13135671 +g1,14866:9821720,13135671 +g1,14866:10768715,13135671 +g1,14866:11580706,13135671 +g1,14866:13086068,13135671 +k1,14867:31966991,13135671:14395639 +g1,14867:31966991,13135671 +) +] +) +] +r1,14867:32583029,13859843:26214,4923996,0 +) +] +) +) +g1,14867:32583029,13270019 +) +h1,14867:6630773,13886057:0,0,0 +(1,14870:6630773,15251833:25952256,513147,134348 +h1,14869:6630773,15251833:983040,0,0 +k1,14869:8228440,15251833:144734 +k1,14869:8904670,15251833:144733 +k1,14869:10335220,15251833:144734 +k1,14869:13109914,15251833:144734 +k1,14869:13906075,15251833:144733 +k1,14869:16313112,15251833:144734 +k1,14869:17476931,15251833:144734 +k1,14869:19887245,15251833:144734 +k1,14869:22018374,15251833:144733 +k1,14869:23676334,15251833:144734 +k1,14869:24768719,15251833:144734 +k1,14869:28010683,15251833:144733 +k1,14869:28921533,15251833:144734 +k1,14869:32583029,15251833:0 +) +(1,14870:6630773,16093321:25952256,505283,126483 +k1,14870:32583030,16093321:24170988 +g1,14870:32583030,16093321 +) +v1,14872:6630773,17283787:0,393216,0 +(1,14876:6630773,17592592:25952256,702021,196608 +g1,14876:6630773,17592592 +g1,14876:6630773,17592592 +g1,14876:6434165,17592592 +(1,14876:6434165,17592592:0,702021,196608 +r1,14876:32779637,17592592:26345472,898629,196608 +k1,14876:6434165,17592592:-26345472 +) +(1,14876:6434165,17592592:26345472,702021,196608 +[1,14876:6630773,17592592:25952256,505413,0 +(1,14874:6630773,17491405:25952256,404226,101187 +(1,14873:6630773,17491405:0,0,0 +g1,14873:6630773,17491405 +g1,14873:6630773,17491405 +g1,14873:6303093,17491405 +(1,14873:6303093,17491405:0,0,0 +) +g1,14873:6630773,17491405 +) +g1,14874:9792230,17491405 +g1,14874:10740668,17491405 +g1,14874:16431291,17491405 +g1,14874:17063583,17491405 +g1,14874:23070351,17491405 +g1,14874:23702643,17491405 +h1,14874:27180245,17491405:0,0,0 +k1,14874:32583029,17491405:5402784 +g1,14874:32583029,17491405 +) +] +) +g1,14876:32583029,17592592 +g1,14876:6630773,17592592 +g1,14876:6630773,17592592 +g1,14876:32583029,17592592 +g1,14876:32583029,17592592 +) +h1,14876:6630773,17789200:0,0,0 +(1,14882:6630773,20404748:25952256,564462,147783 +(1,14882:6630773,20404748:2899444,534184,12975 +g1,14882:6630773,20404748 +g1,14882:9530217,20404748 +) +g1,14882:12826154,20404748 +g1,14882:13451892,20404748 +g1,14882:15187810,20404748 +k1,14882:32583029,20404748:15135931 +g1,14882:32583029,20404748 +) +(1,14885:6630773,21639452:25952256,513147,134348 +k1,14884:9309502,21639452:184429 +k1,14884:10598213,21639452:184429 +k1,14884:11530409,21639452:184430 +k1,14884:14096416,21639452:184429 +k1,14884:15747541,21639452:184429 +k1,14884:17499591,21639452:184429 +k1,14884:20171112,21639452:184430 +k1,14884:21038426,21639452:184429 +k1,14884:21984383,21639452:184429 +k1,14884:25421364,21639452:184429 +k1,14884:28096817,21639452:184430 +k1,14884:30092661,21639452:184429 +k1,14884:32583029,21639452:0 +) +(1,14885:6630773,22480940:25952256,513147,134348 +k1,14884:8043125,22480940:220907 +k1,14884:10297613,22480940:220906 +k1,14884:11537605,22480940:220907 +k1,14884:14593599,22480940:220907 +k1,14884:17321912,22480940:220906 +k1,14884:18360708,22480940:220907 +k1,14884:21710959,22480940:220907 +k1,14884:23960861,22480940:220907 +k1,14884:24639864,22480940:220906 +k1,14884:25392268,22480940:220907 +k1,14884:26898991,22480940:220907 +k1,14884:29749857,22480940:220906 +k1,14884:30622192,22480940:220907 +k1,14884:32583029,22480940:0 +) +(1,14885:6630773,23322428:25952256,513147,126483 +g1,14884:7185862,23322428 +g1,14884:8841956,23322428 +g1,14884:13681134,23322428 +g1,14884:15866759,23322428 +g1,14884:19772704,23322428 +k1,14885:32583029,23322428:9941159 +g1,14885:32583029,23322428 +) +(1,14887:6630773,24163916:25952256,513147,126483 +h1,14886:6630773,24163916:983040,0,0 +k1,14886:9865018,24163916:152087 +k1,14886:10885457,24163916:152087 +k1,14886:12434116,24163916:152087 +k1,14886:13237631,24163916:152087 +k1,14886:15446238,24163916:152087 +k1,14886:17326509,24163916:152087 +k1,14886:18497681,24163916:152087 +k1,14886:19932964,24163916:152088 +k1,14886:22245118,24163916:152087 +k1,14886:24051989,24163916:152087 +k1,14886:24735573,24163916:152087 +k1,14886:27174867,24163916:152087 +k1,14886:28136324,24163916:152087 +k1,14886:29818677,24163916:152087 +k1,14886:30622192,24163916:152087 +k1,14886:32583029,24163916:0 +) +(1,14887:6630773,25005404:25952256,513147,126483 +k1,14886:7174107,25005404:187474 +k1,14886:8644776,25005404:187474 +k1,14886:11701415,25005404:187473 +k1,14886:12842438,25005404:187474 +k1,14886:14134194,25005404:187474 +k1,14886:16460108,25005404:187474 +k1,14886:18038256,25005404:187474 +k1,14886:19244814,25005404:187473 +k1,14886:22267375,25005404:187474 +k1,14886:24441245,25005404:187474 +k1,14886:25280147,25005404:187474 +k1,14886:25823481,25005404:187474 +k1,14886:28522295,25005404:187474 +k1,14886:29901213,25005404:187473 +k1,14886:31286030,25005404:187474 +k1,14886:31931601,25005404:187474 +k1,14886:32583029,25005404:0 +) +(1,14887:6630773,25846892:25952256,513147,134348 +k1,14886:9561392,25846892:168276 +k1,14886:11337267,25846892:168277 +k1,14886:12191705,25846892:168276 +k1,14886:14831999,25846892:168276 +k1,14886:15818165,25846892:168277 +k1,14886:16854793,25846892:168276 +k1,14886:18155531,25846892:168276 +k1,14886:19071573,25846892:168276 +k1,14886:21427442,25846892:168277 +k1,14886:21951578,25846892:168276 +k1,14886:26348892,25846892:168276 +k1,14886:28503565,25846892:168277 +k1,14886:30631367,25846892:168276 +k1,14886:32583029,25846892:0 +) +(1,14887:6630773,26688380:25952256,513147,126483 +g1,14886:8272449,26688380 +g1,14886:8827538,26688380 +g1,14886:11895933,26688380 +g1,14886:12963514,26688380 +g1,14886:13978011,26688380 +g1,14886:15243511,26688380 +g1,14886:16535225,26688380 +k1,14887:32583029,26688380:12019961 +g1,14887:32583029,26688380 +) +v1,14889:6630773,27878846:0,393216,0 +(1,14894:6630773,28853829:25952256,1368199,196608 +g1,14894:6630773,28853829 +g1,14894:6630773,28853829 +g1,14894:6434165,28853829 +(1,14894:6434165,28853829:0,1368199,196608 +r1,14894:32779637,28853829:26345472,1564807,196608 +k1,14894:6434165,28853829:-26345472 +) +(1,14894:6434165,28853829:26345472,1368199,196608 +[1,14894:6630773,28853829:25952256,1171591,0 +(1,14891:6630773,28086464:25952256,404226,101187 +(1,14890:6630773,28086464:0,0,0 +g1,14890:6630773,28086464 +g1,14890:6630773,28086464 +g1,14890:6303093,28086464 +(1,14890:6303093,28086464:0,0,0 +) +g1,14890:6630773,28086464 +) +g1,14891:9476084,28086464 +g1,14891:10424522,28086464 +g1,14891:13902124,28086464 +g1,14891:14534416,28086464 +g1,14891:18012019,28086464 +g1,14891:18644311,28086464 +g1,14891:24651079,28086464 +g1,14891:25283371,28086464 +h1,14891:28760973,28086464:0,0,0 +k1,14891:32583029,28086464:3822056 +g1,14891:32583029,28086464 +) +(1,14892:6630773,28752642:25952256,404226,101187 +h1,14892:6630773,28752642:0,0,0 +g1,14892:7263065,28752642 +g1,14892:7895357,28752642 +h1,14892:10424522,28752642:0,0,0 +k1,14892:32583030,28752642:22158508 +g1,14892:32583030,28752642 +) +] +) +g1,14894:32583029,28853829 +g1,14894:6630773,28853829 +g1,14894:6630773,28853829 +g1,14894:32583029,28853829 +g1,14894:32583029,28853829 +) +h1,14894:6630773,29050437:0,0,0 +(1,14897:6630773,40114939:25952256,10474678,0 +k1,14897:12599879,40114939:5969106 +h1,14896:12599879,40114939:0,0,0 +(1,14896:12599879,40114939:14014044,10474678,0 +(1,14896:12599879,40114939:14014766,10474704,0 +(1,14896:12599879,40114939:14014766,10474704,0 +(1,14896:12599879,40114939:0,10474704,0 +(1,14896:12599879,40114939:0,14155776,0 +(1,14896:12599879,40114939:18939904,14155776,0 +) +k1,14896:12599879,40114939:-18939904 +) +) +g1,14896:26614645,40114939 +) +) +) +g1,14897:26613923,40114939 +k1,14897:32583029,40114939:5969106 +) +v1,14905:6630773,41480715:0,393216,0 +(1,14906:6630773,44608235:25952256,3520736,616038 +g1,14906:6630773,44608235 +(1,14906:6630773,44608235:25952256,3520736,616038 +(1,14906:6630773,45224273:25952256,4136774,0 +[1,14906:6630773,45224273:25952256,4136774,0 +(1,14906:6630773,45198059:25952256,4084346,0 +r1,14906:6656987,45198059:26214,4084346,0 +[1,14906:6656987,45198059:25899828,4084346,0 +(1,14906:6656987,44608235:25899828,2904698,0 +[1,14906:7246811,44608235:24720180,2904698,0 +(1,14906:7246811,42790911:24720180,1087374,134348 +k1,14905:8670777,42790911:214263 +k1,14905:9354932,42790911:214262 +k1,14905:10100692,42790911:214263 +k1,14905:12444219,42790911:214262 +k1,14905:14242487,42790911:214263 +k1,14905:15108177,42790911:214262 +k1,14905:16933970,42790911:214263 +k1,14905:17799660,42790911:214262 +k1,14905:21105256,42790911:214263 +k1,14905:22926461,42790911:214262 +k1,14905:26350022,42790911:214263 +k1,14905:27835682,42790911:214262 +k1,14905:29287920,42790911:214263 +k1,14905:30161474,42790911:214262 +k1,14905:31966991,42790911:0 +) +(1,14906:7246811,43632399:24720180,505283,134348 +k1,14905:8591459,43632399:141407 +k1,14905:9264362,43632399:141406 +k1,14905:10167297,43632399:141407 +k1,14905:13683807,43632399:141406 +k1,14905:15762458,43632399:141407 +k1,14905:16713234,43632399:141406 +k1,14905:19645164,43632399:141407 +k1,14905:20536302,43632399:141406 +k1,14905:21492977,43632399:141407 +k1,14905:22831726,43632399:141406 +k1,14905:26827305,43632399:141407 +k1,14905:27620139,43632399:141406 +k1,14905:28780631,43632399:141407 +k1,14905:31966991,43632399:0 +) +(1,14906:7246811,44473887:24720180,505283,134348 +g1,14905:8062078,44473887 +g1,14905:9280392,44473887 +g1,14905:10975808,44473887 +g1,14905:13145705,44473887 +g1,14905:15200258,44473887 +g1,14905:16590932,44473887 +g1,14905:18574051,44473887 +g1,14905:19792365,44473887 +g1,14905:21598537,44473887 +k1,14906:31966991,44473887:7489457 +g1,14906:31966991,44473887 +) +] ) ] -r1,14875:32583029,45198059:26214,4084346,0 +r1,14906:32583029,45198059:26214,4084346,0 ) ] ) ) -g1,14875:32583029,44608235 +g1,14906:32583029,44608235 ) -h1,14875:6630773,45224273:0,0,0 +h1,14906:6630773,45224273:0,0,0 ] -(1,14878:32583029,45706769:0,0,0 -g1,14878:32583029,45706769 +(1,14909:32583029,45706769:0,0,0 +g1,14909:32583029,45706769 ) ) -] -(1,14878:6630773,47279633:25952256,0,0 -h1,14878:6630773,47279633:25952256,0,0 +] +(1,14909:6630773,47279633:25952256,0,0 +h1,14909:6630773,47279633:25952256,0,0 ) ] -h1,14878:4262630,4025873:0,0,0 +h1,14909:4262630,4025873:0,0,0 ] -!17011 -}288 -Input:2257:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2258:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2259:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2260:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2261:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2262:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2263:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{289 -[1,14929:4262630,47279633:28320399,43253760,0 -(1,14929:4262630,4025873:0,0,0 -[1,14929:-473657,4025873:25952256,0,0 -(1,14929:-473657,-710414:25952256,0,0 -h1,14929:-473657,-710414:0,0,0 -(1,14929:-473657,-710414:0,0,0 -(1,14929:-473657,-710414:0,0,0 -g1,14929:-473657,-710414 -(1,14929:-473657,-710414:65781,0,65781 -g1,14929:-407876,-710414 -[1,14929:-407876,-644633:0,0,0 +!17018 +}289 +Input:2254:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2255:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2256:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2257:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2258:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2259:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2260:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 +{290 +[1,14960:4262630,47279633:28320399,43253760,0 +(1,14960:4262630,4025873:0,0,0 +[1,14960:-473657,4025873:25952256,0,0 +(1,14960:-473657,-710414:25952256,0,0 +h1,14960:-473657,-710414:0,0,0 +(1,14960:-473657,-710414:0,0,0 +(1,14960:-473657,-710414:0,0,0 +g1,14960:-473657,-710414 +(1,14960:-473657,-710414:65781,0,65781 +g1,14960:-407876,-710414 +[1,14960:-407876,-644633:0,0,0 ] ) -k1,14929:-473657,-710414:-65781 +k1,14960:-473657,-710414:-65781 ) ) -k1,14929:25478599,-710414:25952256 -g1,14929:25478599,-710414 +k1,14960:25478599,-710414:25952256 +g1,14960:25478599,-710414 ) ] ) -[1,14929:6630773,47279633:25952256,43253760,0 -[1,14929:6630773,4812305:25952256,786432,0 -(1,14929:6630773,4812305:25952256,513147,134348 -(1,14929:6630773,4812305:25952256,513147,134348 -g1,14929:3078558,4812305 -[1,14929:3078558,4812305:0,0,0 -(1,14929:3078558,2439708:0,1703936,0 -k1,14929:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14929:2537886,2439708:1179648,16384,0 +[1,14960:6630773,47279633:25952256,43253760,0 +[1,14960:6630773,4812305:25952256,786432,0 +(1,14960:6630773,4812305:25952256,505283,11795 +(1,14960:6630773,4812305:25952256,505283,11795 +g1,14960:3078558,4812305 +[1,14960:3078558,4812305:0,0,0 +(1,14960:3078558,2439708:0,1703936,0 +k1,14960:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14960:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14929:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14960:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321: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,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14929:36151628,1915420:16384,1179648,0 +[1,14960:3078558,4812305:0,0,0 +(1,14960:3078558,2439708:0,1703936,0 +g1,14960:29030814,2439708 +g1,14960:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14960:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14929:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14960:37855564,2439708:1179648,16384,0 ) ) -k1,14929:3078556,2439708:-34777008 +k1,14960:3078556,2439708:-34777008 ) ] -[1,14929:3078558,4812305:0,0,0 -(1,14929:3078558,49800853:0,16384,2228224 -k1,14929:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14929:2537886,49800853:1179648,16384,0 +[1,14960:3078558,4812305:0,0,0 +(1,14960:3078558,49800853:0,16384,2228224 +k1,14960:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14960:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14929:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14960:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321: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,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14929:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14929:37855564,49800853:1179648,16384,0 -) -) -k1,14929:3078556,49800853:-34777008 -) -] -g1,14929:6630773,4812305 -k1,14929:25712890,4812305:17886740 -g1,14929:29057847,4812305 -g1,14929:29873114,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,14878:6630773,6254097:0,393216,0 -(1,14929:6630773,45116945:25952256,39256064,589824 -g1,14929:6630773,45116945 -(1,14929:6630773,45116945:25952256,39256064,589824 -(1,14929:6630773,45706769:25952256,39845888,0 -[1,14929:6630773,45706769:25952256,39845888,0 -(1,14929:6630773,45706769:25952256,39819674,0 -r1,14929:6656987,45706769:26214,39819674,0 -[1,14929:6656987,45706769:25899828,39819674,0 -(1,14929:6656987,45116945:25899828,38640026,0 -[1,14929:7246811,45116945:24720180,38640026,0 -(1,14879:7246811,7638804:24720180,1161885,196608 -(1,14878:7246811,7638804:0,1161885,196608 -r1,14929:8794447,7638804:1547636,1358493,196608 -k1,14878:7246811,7638804:-1547636 -) -(1,14878:7246811,7638804:1547636,1161885,196608 -) -k1,14878:9131548,7638804:337101 -k1,14878:10889469,7638804:337100 -k1,14878:11877998,7638804:337101 -k1,14878:14144478,7638804:337100 -k1,14878:14837439,7638804:337101 -k1,14878:16457735,7638804:337101 -k1,14878:18781231,7638804:337100 -k1,14878:22825048,7638804:337101 -k1,14878:25364158,7638804:337100 -k1,14878:26352687,7638804:337101 -k1,14878:28433701,7638804:337101 -k1,14878:29386839,7638804:337100 -k1,14878:31966991,7638804:0 -) -(1,14879:7246811,8480292:24720180,513147,134348 -k1,14878:10324545,8480292:249201 -k1,14878:11678027,8480292:249200 -k1,14878:12674994,8480292:249201 -k1,14878:14600606,8480292:249201 -k1,14878:16974483,8480292:249200 -k1,14878:17689645,8480292:249201 -k1,14878:18957931,8480292:249201 -k1,14878:21778108,8480292:249200 -k1,14878:23018869,8480292:249201 -k1,14878:24574858,8480292:249201 -k1,14878:25641947,8480292:249200 -k1,14878:26910233,8480292:249201 -k1,14878:31966991,8480292:0 -) -(1,14879:7246811,9321780:24720180,513147,134348 -k1,14878:9552313,9321780:188034 -k1,14878:10399639,9321780:188034 -k1,14878:12574068,9321780:188033 -k1,14878:15051930,9321780:188034 -k1,14878:16576898,9321780:188034 -k1,14878:19005608,9321780:188034 -k1,14878:19809680,9321780:188034 -k1,14878:21984766,9321780:188034 -k1,14878:24836838,9321780:188033 -k1,14878:25684164,9321780:188034 -k1,14878:28874401,9321780:188034 -k1,14878:30081520,9321780:188034 -k1,14878:31966991,9321780:0 -) -(1,14879:7246811,10163268:24720180,513147,134348 -k1,14878:10423060,10163268:191739 -k1,14878:11146297,10163268:191740 -k1,14878:11989464,10163268:191739 -k1,14878:13383134,10163268:191740 -k1,14878:14950474,10163268:191739 -k1,14878:15951584,10163268:191740 -k1,14878:17162408,10163268:191739 -k1,14878:19330058,10163268:191740 -k1,14878:22331981,10163268:191739 -k1,14878:23183013,10163268:191740 -k1,14878:24393837,10163268:191739 -k1,14878:27339400,10163268:191740 -k1,14878:28484688,10163268:191739 -k1,14878:29780710,10163268:191740 -k1,14878:31966991,10163268:0 -) -(1,14879:7246811,11004756:24720180,513147,134348 -k1,14878:8443116,11004756:177220 -k1,14878:11646134,11004756:177221 -k1,14878:14664340,11004756:177220 -k1,14878:15603089,11004756:177221 -k1,14878:18360462,11004756:177221 -k1,14878:21366215,11004756:177220 -k1,14878:23459052,11004756:177220 -k1,14878:23992133,11004756:177221 -k1,14878:25452548,11004756:177220 -k1,14878:28498935,11004756:177221 -k1,14878:29718178,11004756:177221 -k1,14878:31098639,11004756:177220 -k1,14878:31966991,11004756:0 -) -(1,14879:7246811,11846244:24720180,513147,126483 -k1,14878:8929635,11846244:152558 -k1,14878:9733621,11846244:152558 -k1,14878:11152336,11846244:152559 -k1,14878:12371165,11846244:152558 -k1,14878:14072339,11846244:152558 -k1,14878:15216457,11846244:152558 -k1,14878:16388100,11846244:152558 -k1,14878:20151693,11846244:152559 -k1,14878:21495696,11846244:152558 -k1,14878:23156893,11846244:152558 -k1,14878:25048777,11846244:152558 -k1,14878:26392781,11846244:152559 -k1,14878:29501668,11846244:152558 -k1,14878:31350953,11846244:152558 -k1,14878:31966991,11846244:0 -) -(1,14879:7246811,12687732:24720180,513147,134348 -k1,14878:8527601,12687732:183062 -k1,14878:11526744,12687732:183061 -k1,14878:14246705,12687732:183062 -k1,14878:15042529,12687732:183062 -k1,14878:16244676,12687732:183062 -k1,14878:18850603,12687732:183061 -k1,14878:21312352,12687732:183062 -k1,14878:22154706,12687732:183062 -k1,14878:23356853,12687732:183062 -k1,14878:24927967,12687732:183061 -k1,14878:26609182,12687732:183062 -k1,14878:27739895,12687732:183062 -(1,14878:27739895,12687732:0,452978,122846 -r1,14929:31966991,12687732:4227096,575824,122846 -k1,14878:27739895,12687732:-4227096 -) -(1,14878:27739895,12687732:4227096,452978,122846 -k1,14878:27739895,12687732:3277 -h1,14878:31963714,12687732:0,411205,112570 -) -k1,14878:31966991,12687732:0 -) -(1,14879:7246811,13529220:24720180,505283,134348 -k1,14878:8026286,13529220:247978 -k1,14878:10808541,13529220:247978 -k1,14878:11684354,13529220:247978 -k1,14878:13135574,13529220:247979 -k1,14878:14924303,13529220:247978 -k1,14878:16040633,13529220:247978 -k1,14878:18153110,13529220:247978 -k1,14878:22783481,13529220:247978 -k1,14878:24103628,13529220:247978 -k1,14878:25548950,13529220:247979 -k1,14878:26152788,13529220:247978 -k1,14878:27683961,13529220:247978 -k1,14878:29365867,13529220:247978 -k1,14879:31966991,13529220:0 -) -(1,14879:7246811,14370708:24720180,513147,126483 -k1,14878:8549227,14370708:236145 -(1,14878:8549227,14370708:0,452978,115847 -r1,14929:12072899,14370708:3523672,568825,115847 -k1,14878:8549227,14370708:-3523672 -) -(1,14878:8549227,14370708:3523672,452978,115847 -k1,14878:8549227,14370708:3277 -h1,14878:12069622,14370708:0,411205,112570 -) -k1,14878:12482713,14370708:236144 -k1,14878:13910303,14370708:236145 -k1,14878:15080990,14370708:236144 -k1,14878:15672995,14370708:236145 -k1,14878:18671483,14370708:236145 -k1,14878:21173207,14370708:236144 -k1,14878:22357003,14370708:236145 -(1,14878:22357003,14370708:0,459977,115847 -r1,14929:26232387,14370708:3875384,575824,115847 -k1,14878:22357003,14370708:-3875384 -) -(1,14878:22357003,14370708:3875384,459977,115847 -k1,14878:22357003,14370708:3277 -h1,14878:26229110,14370708:0,411205,112570 -) -k1,14878:26642201,14370708:236144 -k1,14878:28075033,14370708:236145 -k1,14878:29412182,14370708:236144 -k1,14878:31435494,14370708:236145 -k1,14878:31966991,14370708:0 -) -(1,14879:7246811,15212196:24720180,505283,134348 -k1,14878:9883519,15212196:209254 -(1,14878:9883519,15212196:0,452978,115847 -r1,14929:15165751,15212196:5282232,568825,115847 -k1,14878:9883519,15212196:-5282232 -) -(1,14878:9883519,15212196:5282232,452978,115847 -g1,14878:13052203,15212196 -g1,14878:13755627,15212196 -h1,14878:15162474,15212196:0,411205,112570 -) -k1,14878:15375006,15212196:209255 -k1,14878:16235688,15212196:209254 -(1,14878:16235688,15212196:0,452978,115847 -r1,14929:18704225,15212196:2468537,568825,115847 -k1,14878:16235688,15212196:-2468537 -) -(1,14878:16235688,15212196:2468537,452978,115847 -k1,14878:16235688,15212196:3277 -h1,14878:18700948,15212196:0,411205,112570 -) -k1,14878:19087149,15212196:209254 -k1,14878:19982565,15212196:209254 -k1,14878:21395061,15212196:209255 -k1,14878:22921589,15212196:209254 -k1,14878:24149928,15212196:209254 -k1,14878:27137909,15212196:209254 -k1,14878:29333560,15212196:209255 -k1,14878:30228976,15212196:209254 -k1,14878:31966991,15212196:0 -) -(1,14879:7246811,16053684:24720180,513147,134348 -k1,14878:9506845,16053684:206136 -k1,14878:10474509,16053684:206136 -k1,14878:12459947,16053684:206136 -k1,14878:15499205,16053684:206137 -k1,14878:16321379,16053684:206136 -k1,14878:20464918,16053684:206136 -k1,14878:21330346,16053684:206136 -k1,14878:22668289,16053684:206136 -k1,14878:24860821,16053684:206136 -k1,14878:27401350,16053684:206137 -k1,14878:28223524,16053684:206136 -k1,14878:28785520,16053684:206136 -k1,14878:30268953,16053684:206136 -k1,14878:31966991,16053684:0 -) -(1,14879:7246811,16895172:24720180,505283,7863 -g1,14878:7904137,16895172 -g1,14878:8634863,16895172 -k1,14879:31966990,16895172:21193032 -g1,14879:31966990,16895172 -) -v1,14881:7246811,18587064:0,393216,0 -(1,14900:7246811,28863373:24720180,10669525,196608 -g1,14900:7246811,28863373 -g1,14900:7246811,28863373 -g1,14900:7050203,28863373 -(1,14900:7050203,28863373:0,10669525,196608 -r1,14929:32163599,28863373:25113396,10866133,196608 -k1,14900:7050203,28863373:-25113396 -) -(1,14900:7050203,28863373:25113396,10669525,196608 -[1,14900:7246811,28863373:24720180,10472917,0 -(1,14883:7246811,18794682:24720180,404226,107478 -(1,14882:7246811,18794682:0,0,0 -g1,14882:7246811,18794682 -g1,14882:7246811,18794682 -g1,14882:6919131,18794682 -(1,14882:6919131,18794682:0,0,0 -) -g1,14882:7246811,18794682 -) -g1,14883:11672851,18794682 -k1,14883:11672851,18794682:0 -h1,14883:12305143,18794682:0,0,0 -k1,14883:31966991,18794682:19661848 -g1,14883:31966991,18794682 -) -(1,14884:7246811,19460860:24720180,410518,82312 -h1,14884:7246811,19460860:0,0,0 -g1,14884:7562957,19460860 -g1,14884:7879103,19460860 -g1,14884:10724414,19460860 -g1,14884:14202017,19460860 -g1,14884:14834309,19460860 -k1,14884:14834309,19460860:0 -h1,14884:15782746,19460860:0,0,0 -k1,14884:31966991,19460860:16184245 -g1,14884:31966991,19460860 -) -(1,14885:7246811,20127038:24720180,410518,101187 -h1,14885:7246811,20127038:0,0,0 -g1,14885:7562957,20127038 -g1,14885:7879103,20127038 -g1,14885:8195249,20127038 -g1,14885:8511395,20127038 -g1,14885:8827541,20127038 -g1,14885:9143687,20127038 -g1,14885:9459833,20127038 -g1,14885:9775979,20127038 -g1,14885:10092125,20127038 -g1,14885:10408271,20127038 -g1,14885:10724417,20127038 -g1,14885:11040563,20127038 -g1,14885:14834311,20127038 -g1,14885:15466603,20127038 -k1,14885:15466603,20127038:0 -h1,14885:17995769,20127038:0,0,0 -k1,14885:31966991,20127038:13971222 -g1,14885:31966991,20127038 -) -(1,14886:7246811,20793216:24720180,404226,82312 -h1,14886:7246811,20793216:0,0,0 -g1,14886:7562957,20793216 -g1,14886:7879103,20793216 -g1,14886:8195249,20793216 -g1,14886:8511395,20793216 -g1,14886:8827541,20793216 -g1,14886:9143687,20793216 -g1,14886:9459833,20793216 -g1,14886:9775979,20793216 -g1,14886:10092125,20793216 -g1,14886:10408271,20793216 -g1,14886:10724417,20793216 -g1,14886:11040563,20793216 -g1,14886:15782749,20793216 -g1,14886:16415041,20793216 -k1,14886:16415041,20793216:0 -h1,14886:20524935,20793216:0,0,0 -k1,14886:31966991,20793216:11442056 -g1,14886:31966991,20793216 -) -(1,14887:7246811,21459394:24720180,404226,82312 -h1,14887:7246811,21459394:0,0,0 -g1,14887:7562957,21459394 -g1,14887:7879103,21459394 -g1,14887:8195249,21459394 -g1,14887:8511395,21459394 -g1,14887:8827541,21459394 -g1,14887:9143687,21459394 -g1,14887:9459833,21459394 -g1,14887:9775979,21459394 -g1,14887:10092125,21459394 -g1,14887:10408271,21459394 -g1,14887:10724417,21459394 -g1,14887:11040563,21459394 -g1,14887:15782749,21459394 -g1,14887:16415041,21459394 -k1,14887:16415041,21459394:0 -h1,14887:20524935,21459394:0,0,0 -k1,14887:31966991,21459394:11442056 -g1,14887:31966991,21459394 -) -(1,14888:7246811,22125572:24720180,404226,76021 -h1,14888:7246811,22125572:0,0,0 -g1,14888:7562957,22125572 -g1,14888:7879103,22125572 -g1,14888:8195249,22125572 -g1,14888:8511395,22125572 -g1,14888:8827541,22125572 -g1,14888:9143687,22125572 -g1,14888:9459833,22125572 -g1,14888:9775979,22125572 -g1,14888:10092125,22125572 -g1,14888:10408271,22125572 -g1,14888:10724417,22125572 -g1,14888:11040563,22125572 -g1,14888:14518166,22125572 -g1,14888:15150458,22125572 -g1,14888:18944207,22125572 -h1,14888:19260353,22125572:0,0,0 -k1,14888:31966991,22125572:12706638 -g1,14888:31966991,22125572 -) -(1,14889:7246811,22791750:24720180,404226,107478 -h1,14889:7246811,22791750:0,0,0 -g1,14889:7562957,22791750 -g1,14889:7879103,22791750 -g1,14889:8195249,22791750 -g1,14889:8511395,22791750 -g1,14889:15150455,22791750 -g1,14889:15782747,22791750 -k1,14889:15782747,22791750:0 -h1,14889:18944204,22791750:0,0,0 -k1,14889:31966991,22791750:13022787 -g1,14889:31966991,22791750 -) -(1,14890:7246811,23457928:24720180,410518,101187 -h1,14890:7246811,23457928:0,0,0 -g1,14890:7562957,23457928 -g1,14890:7879103,23457928 -g1,14890:8195249,23457928 -g1,14890:8511395,23457928 -g1,14890:8827541,23457928 -g1,14890:9143687,23457928 -g1,14890:9459833,23457928 -g1,14890:9775979,23457928 -g1,14890:10092125,23457928 -g1,14890:10408271,23457928 -g1,14890:10724417,23457928 -g1,14890:11040563,23457928 -g1,14890:11356709,23457928 -g1,14890:11672855,23457928 -g1,14890:11989001,23457928 -g1,14890:15782749,23457928 -g1,14890:16415041,23457928 -k1,14890:16415041,23457928:0 -h1,14890:20208789,23457928:0,0,0 -k1,14890:31966991,23457928:11758202 -g1,14890:31966991,23457928 -) -(1,14891:7246811,24124106:24720180,404226,82312 -h1,14891:7246811,24124106:0,0,0 -g1,14891:7562957,24124106 -g1,14891:7879103,24124106 -g1,14891:8195249,24124106 -g1,14891:8511395,24124106 -g1,14891:8827541,24124106 -g1,14891:9143687,24124106 -g1,14891:9459833,24124106 -g1,14891:9775979,24124106 -g1,14891:10092125,24124106 -g1,14891:10408271,24124106 -g1,14891:10724417,24124106 -g1,14891:11040563,24124106 -g1,14891:11356709,24124106 -g1,14891:11672855,24124106 -g1,14891:11989001,24124106 -g1,14891:16731187,24124106 -g1,14891:17363479,24124106 -k1,14891:17363479,24124106:0 -h1,14891:22105665,24124106:0,0,0 -k1,14891:31966991,24124106:9861326 -g1,14891:31966991,24124106 -) -(1,14892:7246811,24790284:24720180,404226,76021 -h1,14892:7246811,24790284:0,0,0 -g1,14892:7562957,24790284 -g1,14892:7879103,24790284 -g1,14892:8195249,24790284 -g1,14892:8511395,24790284 -g1,14892:8827541,24790284 -g1,14892:9143687,24790284 -g1,14892:9459833,24790284 -g1,14892:9775979,24790284 -g1,14892:10092125,24790284 -g1,14892:10408271,24790284 -g1,14892:10724417,24790284 -g1,14892:11040563,24790284 -g1,14892:11356709,24790284 -g1,14892:11672855,24790284 -g1,14892:11989001,24790284 -g1,14892:16731187,24790284 -g1,14892:17363479,24790284 -g1,14892:22421810,24790284 -h1,14892:22737956,24790284:0,0,0 -k1,14892:31966991,24790284:9229035 -g1,14892:31966991,24790284 -) -(1,14893:7246811,25456462:24720180,404226,82312 -h1,14893:7246811,25456462:0,0,0 -g1,14893:7562957,25456462 -g1,14893:7879103,25456462 -g1,14893:8195249,25456462 -g1,14893:8511395,25456462 -g1,14893:11988998,25456462 -g1,14893:12621290,25456462 -g1,14893:18628058,25456462 -g1,14893:19260350,25456462 -k1,14893:19260350,25456462:0 -h1,14893:23054098,25456462:0,0,0 -k1,14893:31966991,25456462:8912893 -g1,14893:31966991,25456462 -) -(1,14894:7246811,26122640:24720180,404226,82312 -h1,14894:7246811,26122640:0,0,0 -g1,14894:7562957,26122640 -g1,14894:7879103,26122640 -g1,14894:8195249,26122640 -g1,14894:8511395,26122640 -g1,14894:8827541,26122640 -g1,14894:9143687,26122640 -g1,14894:9459833,26122640 -g1,14894:9775979,26122640 -g1,14894:10092125,26122640 -g1,14894:10408271,26122640 -g1,14894:11989000,26122640 -g1,14894:12621292,26122640 -g1,14894:18628060,26122640 -g1,14894:19260352,26122640 -k1,14894:19260352,26122640:0 -h1,14894:23054100,26122640:0,0,0 -k1,14894:31966991,26122640:8912891 -g1,14894:31966991,26122640 -) -(1,14895:7246811,26788818:24720180,404226,82312 -h1,14895:7246811,26788818:0,0,0 -g1,14895:7562957,26788818 -g1,14895:7879103,26788818 -g1,14895:8195249,26788818 -g1,14895:8511395,26788818 -g1,14895:8827541,26788818 -g1,14895:9143687,26788818 -g1,14895:9459833,26788818 -g1,14895:9775979,26788818 -g1,14895:10092125,26788818 -g1,14895:10408271,26788818 -g1,14895:11989000,26788818 -g1,14895:12621292,26788818 -g1,14895:18628060,26788818 -g1,14895:19260352,26788818 -k1,14895:19260352,26788818:0 -h1,14895:23054100,26788818:0,0,0 -k1,14895:31966991,26788818:8912891 -g1,14895:31966991,26788818 -) -(1,14896:7246811,27454996:24720180,404226,82312 -h1,14896:7246811,27454996:0,0,0 -g1,14896:7562957,27454996 -g1,14896:7879103,27454996 -g1,14896:8195249,27454996 -g1,14896:8511395,27454996 -g1,14896:8827541,27454996 -g1,14896:9143687,27454996 -g1,14896:9459833,27454996 -g1,14896:9775979,27454996 -g1,14896:10092125,27454996 -g1,14896:10408271,27454996 -g1,14896:12305145,27454996 -g1,14896:12937437,27454996 -g1,14896:18944205,27454996 -g1,14896:19576497,27454996 -k1,14896:19576497,27454996:0 -h1,14896:23370245,27454996:0,0,0 -k1,14896:31966991,27454996:8596746 -g1,14896:31966991,27454996 -) -(1,14897:7246811,28121174:24720180,404226,101187 -h1,14897:7246811,28121174:0,0,0 -g1,14897:7562957,28121174 -g1,14897:7879103,28121174 -g1,14897:8195249,28121174 -g1,14897:8511395,28121174 -g1,14897:8827541,28121174 -g1,14897:9143687,28121174 -g1,14897:9459833,28121174 -g1,14897:9775979,28121174 -g1,14897:10092125,28121174 -g1,14897:10408271,28121174 -g1,14897:13569728,28121174 -g1,14897:14202020,28121174 -g1,14897:20208788,28121174 -g1,14897:20841080,28121174 -g1,14897:24950974,28121174 -g1,14897:27796285,28121174 -g1,14897:28428577,28121174 -h1,14897:30009306,28121174:0,0,0 -k1,14897:31966991,28121174:1957685 -g1,14897:31966991,28121174 -) -(1,14898:7246811,28787352:24720180,404226,76021 -h1,14898:7246811,28787352:0,0,0 -g1,14898:7562957,28787352 -g1,14898:7879103,28787352 -h1,14898:8195249,28787352:0,0,0 -k1,14898:31966991,28787352:23771742 -g1,14898:31966991,28787352 -) -] -) -g1,14900:31966991,28863373 -g1,14900:7246811,28863373 -g1,14900:7246811,28863373 -g1,14900:31966991,28863373 -g1,14900:31966991,28863373 -) -h1,14900:7246811,29059981:0,0,0 -(1,14904:7246811,31177896:24720180,505283,102891 -h1,14903:7246811,31177896:983040,0,0 -k1,14903:9005142,31177896:147456 -k1,14903:10171683,31177896:147456 -k1,14903:12289807,31177896:147456 -k1,14903:14292587,31177896:147456 -k1,14903:15308395,31177896:147456 -k1,14903:16931065,31177896:147455 -k1,14903:19428642,31177896:147456 -k1,14903:20673826,31177896:147456 -k1,14903:22151663,31177896:147456 -k1,14903:24285515,31177896:147456 -k1,14903:28313358,31177896:147456 -k1,14903:30921036,31177896:147456 -k1,14903:31966991,31177896:0 -) -(1,14904:7246811,32019384:24720180,513147,134348 -k1,14903:9185114,32019384:155068 -k1,14903:11286601,32019384:155068 -k1,14903:12633114,32019384:155068 -k1,14903:14523576,32019384:155069 -k1,14903:15449347,32019384:155068 -k1,14903:18588925,32019384:155068 -k1,14903:20028499,32019384:155068 -k1,14903:20715064,32019384:155068 -k1,14903:22224106,32019384:155068 -k1,14903:24091631,32019384:155069 -k1,14903:24898127,32019384:155068 -k1,14903:27831266,32019384:155068 -k1,14903:30573040,32019384:155068 -k1,14903:31966991,32019384:0 -) -(1,14904:7246811,32860872:24720180,513147,134348 -k1,14903:9490705,32860872:256842 -k1,14903:12411585,32860872:256841 -k1,14903:13327719,32860872:256842 -k1,14903:16586764,32860872:256842 -k1,14903:18040292,32860872:256841 -k1,14903:20108549,32860872:256842 -k1,14903:22351786,32860872:256841 -k1,14903:23140125,32860872:256842 -k1,14903:23752827,32860872:256842 -k1,14903:26705164,32860872:256841 -k1,14903:28355957,32860872:256842 -k1,14903:31966991,32860872:0 -) -(1,14904:7246811,33702360:24720180,513147,126483 -k1,14903:8654361,33702360:216105 -k1,14903:11466347,33702360:216105 -k1,14903:12630103,33702360:216105 -k1,14903:14658933,33702360:216104 -k1,14903:15502873,33702360:216105 -k1,14903:16922219,33702360:216105 -k1,14903:19799741,33702360:216105 -k1,14903:20884198,33702360:216105 -k1,14903:22575518,33702360:216105 -k1,14903:24209166,33702360:216104 -k1,14903:25444356,33702360:216105 -k1,14903:28355957,33702360:216105 -k1,14903:31966991,33702360:0 -) -(1,14904:7246811,34543848:24720180,513147,134348 -k1,14903:8443499,34543848:177603 -k1,14903:10274574,34543848:177602 -k1,14903:11138339,34543848:177603 -k1,14903:13059855,34543848:177603 -k1,14903:14750684,34543848:177603 -k1,14903:15544324,34543848:177602 -k1,14903:18724130,34543848:177603 -k1,14903:20277334,34543848:177603 -k1,14903:22642529,34543848:177603 -k1,14903:23590834,34543848:177602 -k1,14903:26995430,34543848:177603 -k1,14903:30453765,34543848:177603 -k1,14903:31966991,34543848:0 -) -(1,14904:7246811,35385336:24720180,505283,134348 -k1,14903:8552223,35385336:286327 -k1,14903:11329573,35385336:286327 -k1,14903:13102912,35385336:286327 -k1,14903:14040667,35385336:286327 -k1,14903:17427502,35385336:286327 -k1,14903:21922550,35385336:286326 -k1,14903:23400322,35385336:286327 -k1,14903:25416144,35385336:286327 -k1,14903:28966819,35385336:286327 -k1,14903:31137961,35385336:286327 -k1,14903:31966991,35385336:0 -) -(1,14904:7246811,36226824:24720180,505283,134348 -k1,14903:9205220,36226824:228914 -k1,14903:12698483,36226824:228915 -k1,14903:14812212,36226824:228914 -k1,14903:15909479,36226824:228915 -k1,14903:17475327,36226824:228914 -k1,14903:19252857,36226824:228914 -k1,14903:23274996,36226824:228915 -k1,14903:24155338,36226824:228914 -k1,14903:26099986,36226824:228915 -(1,14903:26099986,36226824:0,452978,122846 -r1,14929:31382217,36226824:5282231,575824,122846 -k1,14903:26099986,36226824:-5282231 -) -(1,14903:26099986,36226824:5282231,452978,122846 -k1,14903:26099986,36226824:3277 -h1,14903:31378940,36226824:0,411205,112570 -) -k1,14903:31611131,36226824:228914 -k1,14903:31966991,36226824:0 -) -(1,14904:7246811,37068312:24720180,513147,134348 -g1,14903:10342731,37068312 -g1,14903:11209116,37068312 -(1,14903:11209116,37068312:0,452978,122846 -r1,14929:16491347,37068312:5282231,575824,122846 -k1,14903:11209116,37068312:-5282231 -) -(1,14903:11209116,37068312:5282231,452978,122846 -k1,14903:11209116,37068312:3277 -h1,14903:16488070,37068312:0,411205,112570 -) -g1,14903:16690576,37068312 -g1,14903:19865140,37068312 -g1,14903:22892902,37068312 -k1,14904:31966991,37068312:6362865 -g1,14904:31966991,37068312 -) -v1,14906:7246811,38760204:0,393216,0 -(1,14910:7246811,39075300:24720180,708312,196608 -g1,14910:7246811,39075300 -g1,14910:7246811,39075300 -g1,14910:7050203,39075300 -(1,14910:7050203,39075300:0,708312,196608 -r1,14929:32163599,39075300:25113396,904920,196608 -k1,14910:7050203,39075300:-25113396 -) -(1,14910:7050203,39075300:25113396,708312,196608 -[1,14910:7246811,39075300:24720180,511704,0 -(1,14908:7246811,38967822:24720180,404226,107478 -(1,14907:7246811,38967822:0,0,0 -g1,14907:7246811,38967822 -g1,14907:7246811,38967822 -g1,14907:6919131,38967822 -(1,14907:6919131,38967822:0,0,0 -) -g1,14907:7246811,38967822 -) -g1,14908:11672851,38967822 -g1,14908:12621289,38967822 -h1,14908:16731183,38967822:0,0,0 -k1,14908:31966991,38967822:15235808 -g1,14908:31966991,38967822 -) -] -) -g1,14910:31966991,39075300 -g1,14910:7246811,39075300 -g1,14910:7246811,39075300 -g1,14910:31966991,39075300 -g1,14910:31966991,39075300 -) -h1,14910:7246811,39271908:0,0,0 -(1,14914:7246811,41389823:24720180,513147,126483 -h1,14913:7246811,41389823:983040,0,0 -k1,14913:10672579,41389823:166663 -k1,14913:11707594,41389823:166663 -k1,14913:12966743,41389823:166664 -k1,14913:14152491,41389823:166663 -k1,14913:15602349,41389823:166663 -k1,14913:17755408,41389823:166663 -k1,14913:21628788,41389823:166664 -k1,14913:22411489,41389823:166663 -k1,14913:23597237,41389823:166663 -k1,14913:25417373,41389823:166663 -k1,14913:26822012,41389823:166664 -k1,14913:27674837,41389823:166663 -k1,14913:29585413,41389823:166663 -k1,14913:31966991,41389823:0 -) -(1,14914:7246811,42231311:24720180,505283,134348 -g1,14913:8062078,42231311 -k1,14914:31966991,42231311:20902710 -g1,14914:31966991,42231311 +[1,14960:3078558,4812305:0,0,0 +(1,14960:3078558,49800853:0,16384,2228224 +g1,14960:29030814,49800853 +g1,14960:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14960:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14960:37855564,49800853:1179648,16384,0 +) +) +k1,14960:3078556,49800853:-34777008 +) +] +g1,14960:6630773,4812305 +g1,14960:6630773,4812305 +g1,14960:9264009,4812305 +k1,14960:31387653,4812305:22123644 +) +) +] +[1,14960:6630773,45706769:25952256,40108032,0 +(1,14960:6630773,45706769:25952256,40108032,0 +(1,14960:6630773,45706769:0,0,0 +g1,14960:6630773,45706769 +) +[1,14960:6630773,45706769:25952256,40108032,0 +v1,14909:6630773,6254097:0,393216,0 +(1,14960:6630773,45116945:25952256,39256064,589824 +g1,14960:6630773,45116945 +(1,14960:6630773,45116945:25952256,39256064,589824 +(1,14960:6630773,45706769:25952256,39845888,0 +[1,14960:6630773,45706769:25952256,39845888,0 +(1,14960:6630773,45706769:25952256,39819674,0 +r1,14960:6656987,45706769:26214,39819674,0 +[1,14960:6656987,45706769:25899828,39819674,0 +(1,14960:6656987,45116945:25899828,38640026,0 +[1,14960:7246811,45116945:24720180,38640026,0 +(1,14910:7246811,7638804:24720180,1161885,196608 +(1,14909:7246811,7638804:0,1161885,196608 +r1,14960:8794447,7638804:1547636,1358493,196608 +k1,14909:7246811,7638804:-1547636 +) +(1,14909:7246811,7638804:1547636,1161885,196608 +) +k1,14909:9131548,7638804:337101 +k1,14909:10889469,7638804:337100 +k1,14909:11877998,7638804:337101 +k1,14909:14144478,7638804:337100 +k1,14909:14837439,7638804:337101 +k1,14909:16457735,7638804:337101 +k1,14909:18781231,7638804:337100 +k1,14909:22825048,7638804:337101 +k1,14909:25364158,7638804:337100 +k1,14909:26352687,7638804:337101 +k1,14909:28433701,7638804:337101 +k1,14909:29386839,7638804:337100 +k1,14909:31966991,7638804:0 +) +(1,14910:7246811,8480292:24720180,513147,134348 +k1,14909:10324545,8480292:249201 +k1,14909:11678027,8480292:249200 +k1,14909:12674994,8480292:249201 +k1,14909:14600606,8480292:249201 +k1,14909:16974483,8480292:249200 +k1,14909:17689645,8480292:249201 +k1,14909:18957931,8480292:249201 +k1,14909:21778108,8480292:249200 +k1,14909:23018869,8480292:249201 +k1,14909:24574858,8480292:249201 +k1,14909:25641947,8480292:249200 +k1,14909:26910233,8480292:249201 +k1,14909:31966991,8480292:0 +) +(1,14910:7246811,9321780:24720180,513147,134348 +k1,14909:9552313,9321780:188034 +k1,14909:10399639,9321780:188034 +k1,14909:12574068,9321780:188033 +k1,14909:15051930,9321780:188034 +k1,14909:16576898,9321780:188034 +k1,14909:19005608,9321780:188034 +k1,14909:19809680,9321780:188034 +k1,14909:21984766,9321780:188034 +k1,14909:24836838,9321780:188033 +k1,14909:25684164,9321780:188034 +k1,14909:28874401,9321780:188034 +k1,14909:30081520,9321780:188034 +k1,14909:31966991,9321780:0 +) +(1,14910:7246811,10163268:24720180,513147,134348 +k1,14909:10423060,10163268:191739 +k1,14909:11146297,10163268:191740 +k1,14909:11989464,10163268:191739 +k1,14909:13383134,10163268:191740 +k1,14909:14950474,10163268:191739 +k1,14909:15951584,10163268:191740 +k1,14909:17162408,10163268:191739 +k1,14909:19330058,10163268:191740 +k1,14909:22331981,10163268:191739 +k1,14909:23183013,10163268:191740 +k1,14909:24393837,10163268:191739 +k1,14909:27339400,10163268:191740 +k1,14909:28484688,10163268:191739 +k1,14909:29780710,10163268:191740 +k1,14909:31966991,10163268:0 +) +(1,14910:7246811,11004756:24720180,513147,134348 +k1,14909:8443116,11004756:177220 +k1,14909:11646134,11004756:177221 +k1,14909:14664340,11004756:177220 +k1,14909:15603089,11004756:177221 +k1,14909:18360462,11004756:177221 +k1,14909:21366215,11004756:177220 +k1,14909:23459052,11004756:177220 +k1,14909:23992133,11004756:177221 +k1,14909:25452548,11004756:177220 +k1,14909:28498935,11004756:177221 +k1,14909:29718178,11004756:177221 +k1,14909:31098639,11004756:177220 +k1,14909:31966991,11004756:0 +) +(1,14910:7246811,11846244:24720180,513147,126483 +k1,14909:8929635,11846244:152558 +k1,14909:9733621,11846244:152558 +k1,14909:11152336,11846244:152559 +k1,14909:12371165,11846244:152558 +k1,14909:14072339,11846244:152558 +k1,14909:15216457,11846244:152558 +k1,14909:16388100,11846244:152558 +k1,14909:20151693,11846244:152559 +k1,14909:21495696,11846244:152558 +k1,14909:23156893,11846244:152558 +k1,14909:25048777,11846244:152558 +k1,14909:26392781,11846244:152559 +k1,14909:29501668,11846244:152558 +k1,14909:31350953,11846244:152558 +k1,14909:31966991,11846244:0 +) +(1,14910:7246811,12687732:24720180,513147,134348 +k1,14909:8527601,12687732:183062 +k1,14909:11526744,12687732:183061 +k1,14909:14246705,12687732:183062 +k1,14909:15042529,12687732:183062 +k1,14909:16244676,12687732:183062 +k1,14909:18850603,12687732:183061 +k1,14909:21312352,12687732:183062 +k1,14909:22154706,12687732:183062 +k1,14909:23356853,12687732:183062 +k1,14909:24927967,12687732:183061 +k1,14909:26609182,12687732:183062 +k1,14909:27739895,12687732:183062 +(1,14909:27739895,12687732:0,452978,122846 +r1,14960:31966991,12687732:4227096,575824,122846 +k1,14909:27739895,12687732:-4227096 +) +(1,14909:27739895,12687732:4227096,452978,122846 +k1,14909:27739895,12687732:3277 +h1,14909:31963714,12687732:0,411205,112570 +) +k1,14909:31966991,12687732:0 +) +(1,14910:7246811,13529220:24720180,505283,134348 +k1,14909:8026286,13529220:247978 +k1,14909:10808541,13529220:247978 +k1,14909:11684354,13529220:247978 +k1,14909:13135574,13529220:247979 +k1,14909:14924303,13529220:247978 +k1,14909:16040633,13529220:247978 +k1,14909:18153110,13529220:247978 +k1,14909:22783481,13529220:247978 +k1,14909:24103628,13529220:247978 +k1,14909:25548950,13529220:247979 +k1,14909:26152788,13529220:247978 +k1,14909:27683961,13529220:247978 +k1,14909:29365867,13529220:247978 +k1,14910:31966991,13529220:0 +) +(1,14910:7246811,14370708:24720180,513147,126483 +k1,14909:8549227,14370708:236145 +(1,14909:8549227,14370708:0,452978,115847 +r1,14960:12072899,14370708:3523672,568825,115847 +k1,14909:8549227,14370708:-3523672 +) +(1,14909:8549227,14370708:3523672,452978,115847 +k1,14909:8549227,14370708:3277 +h1,14909:12069622,14370708:0,411205,112570 +) +k1,14909:12482713,14370708:236144 +k1,14909:13910303,14370708:236145 +k1,14909:15080990,14370708:236144 +k1,14909:15672995,14370708:236145 +k1,14909:18671483,14370708:236145 +k1,14909:21173207,14370708:236144 +k1,14909:22357003,14370708:236145 +(1,14909:22357003,14370708:0,459977,115847 +r1,14960:26232387,14370708:3875384,575824,115847 +k1,14909:22357003,14370708:-3875384 +) +(1,14909:22357003,14370708:3875384,459977,115847 +k1,14909:22357003,14370708:3277 +h1,14909:26229110,14370708:0,411205,112570 +) +k1,14909:26642201,14370708:236144 +k1,14909:28075033,14370708:236145 +k1,14909:29412182,14370708:236144 +k1,14909:31435494,14370708:236145 +k1,14909:31966991,14370708:0 +) +(1,14910:7246811,15212196:24720180,505283,134348 +k1,14909:9883519,15212196:209254 +(1,14909:9883519,15212196:0,452978,115847 +r1,14960:15165751,15212196:5282232,568825,115847 +k1,14909:9883519,15212196:-5282232 +) +(1,14909:9883519,15212196:5282232,452978,115847 +g1,14909:13052203,15212196 +g1,14909:13755627,15212196 +h1,14909:15162474,15212196:0,411205,112570 +) +k1,14909:15375006,15212196:209255 +k1,14909:16235688,15212196:209254 +(1,14909:16235688,15212196:0,452978,115847 +r1,14960:18704225,15212196:2468537,568825,115847 +k1,14909:16235688,15212196:-2468537 +) +(1,14909:16235688,15212196:2468537,452978,115847 +k1,14909:16235688,15212196:3277 +h1,14909:18700948,15212196:0,411205,112570 +) +k1,14909:19087149,15212196:209254 +k1,14909:19982565,15212196:209254 +k1,14909:21395061,15212196:209255 +k1,14909:22921589,15212196:209254 +k1,14909:24149928,15212196:209254 +k1,14909:27137909,15212196:209254 +k1,14909:29333560,15212196:209255 +k1,14909:30228976,15212196:209254 +k1,14909:31966991,15212196:0 +) +(1,14910:7246811,16053684:24720180,513147,134348 +k1,14909:9506845,16053684:206136 +k1,14909:10474509,16053684:206136 +k1,14909:12459947,16053684:206136 +k1,14909:15499205,16053684:206137 +k1,14909:16321379,16053684:206136 +k1,14909:20464918,16053684:206136 +k1,14909:21330346,16053684:206136 +k1,14909:22668289,16053684:206136 +k1,14909:24860821,16053684:206136 +k1,14909:27401350,16053684:206137 +k1,14909:28223524,16053684:206136 +k1,14909:28785520,16053684:206136 +k1,14909:30268953,16053684:206136 +k1,14909:31966991,16053684:0 +) +(1,14910:7246811,16895172:24720180,505283,7863 +g1,14909:7904137,16895172 +g1,14909:8634863,16895172 +k1,14910:31966990,16895172:21193032 +g1,14910:31966990,16895172 +) +v1,14912:7246811,18587064:0,393216,0 +(1,14931:7246811,28863373:24720180,10669525,196608 +g1,14931:7246811,28863373 +g1,14931:7246811,28863373 +g1,14931:7050203,28863373 +(1,14931:7050203,28863373:0,10669525,196608 +r1,14960:32163599,28863373:25113396,10866133,196608 +k1,14931:7050203,28863373:-25113396 +) +(1,14931:7050203,28863373:25113396,10669525,196608 +[1,14931:7246811,28863373:24720180,10472917,0 +(1,14914:7246811,18794682:24720180,404226,107478 +(1,14913:7246811,18794682:0,0,0 +g1,14913:7246811,18794682 +g1,14913:7246811,18794682 +g1,14913:6919131,18794682 +(1,14913:6919131,18794682:0,0,0 +) +g1,14913:7246811,18794682 +) +g1,14914:11672851,18794682 +k1,14914:11672851,18794682:0 +h1,14914:12305143,18794682:0,0,0 +k1,14914:31966991,18794682:19661848 +g1,14914:31966991,18794682 +) +(1,14915:7246811,19460860:24720180,410518,82312 +h1,14915:7246811,19460860:0,0,0 +g1,14915:7562957,19460860 +g1,14915:7879103,19460860 +g1,14915:10724414,19460860 +g1,14915:14202017,19460860 +g1,14915:14834309,19460860 +k1,14915:14834309,19460860:0 +h1,14915:15782746,19460860:0,0,0 +k1,14915:31966991,19460860:16184245 +g1,14915:31966991,19460860 +) +(1,14916:7246811,20127038:24720180,410518,101187 +h1,14916:7246811,20127038:0,0,0 +g1,14916:7562957,20127038 +g1,14916:7879103,20127038 +g1,14916:8195249,20127038 +g1,14916:8511395,20127038 +g1,14916:8827541,20127038 +g1,14916:9143687,20127038 +g1,14916:9459833,20127038 +g1,14916:9775979,20127038 +g1,14916:10092125,20127038 +g1,14916:10408271,20127038 +g1,14916:10724417,20127038 +g1,14916:11040563,20127038 +g1,14916:14834311,20127038 +g1,14916:15466603,20127038 +k1,14916:15466603,20127038:0 +h1,14916:17995769,20127038:0,0,0 +k1,14916:31966991,20127038:13971222 +g1,14916:31966991,20127038 +) +(1,14917:7246811,20793216:24720180,404226,82312 +h1,14917:7246811,20793216:0,0,0 +g1,14917:7562957,20793216 +g1,14917:7879103,20793216 +g1,14917:8195249,20793216 +g1,14917:8511395,20793216 +g1,14917:8827541,20793216 +g1,14917:9143687,20793216 +g1,14917:9459833,20793216 +g1,14917:9775979,20793216 +g1,14917:10092125,20793216 +g1,14917:10408271,20793216 +g1,14917:10724417,20793216 +g1,14917:11040563,20793216 +g1,14917:15782749,20793216 +g1,14917:16415041,20793216 +k1,14917:16415041,20793216:0 +h1,14917:20524935,20793216:0,0,0 +k1,14917:31966991,20793216:11442056 +g1,14917:31966991,20793216 +) +(1,14918:7246811,21459394:24720180,404226,82312 +h1,14918:7246811,21459394:0,0,0 +g1,14918:7562957,21459394 +g1,14918:7879103,21459394 +g1,14918:8195249,21459394 +g1,14918:8511395,21459394 +g1,14918:8827541,21459394 +g1,14918:9143687,21459394 +g1,14918:9459833,21459394 +g1,14918:9775979,21459394 +g1,14918:10092125,21459394 +g1,14918:10408271,21459394 +g1,14918:10724417,21459394 +g1,14918:11040563,21459394 +g1,14918:15782749,21459394 +g1,14918:16415041,21459394 +k1,14918:16415041,21459394:0 +h1,14918:20524935,21459394:0,0,0 +k1,14918:31966991,21459394:11442056 +g1,14918:31966991,21459394 +) +(1,14919:7246811,22125572:24720180,404226,76021 +h1,14919:7246811,22125572:0,0,0 +g1,14919:7562957,22125572 +g1,14919:7879103,22125572 +g1,14919:8195249,22125572 +g1,14919:8511395,22125572 +g1,14919:8827541,22125572 +g1,14919:9143687,22125572 +g1,14919:9459833,22125572 +g1,14919:9775979,22125572 +g1,14919:10092125,22125572 +g1,14919:10408271,22125572 +g1,14919:10724417,22125572 +g1,14919:11040563,22125572 +g1,14919:14518166,22125572 +g1,14919:15150458,22125572 +g1,14919:18944207,22125572 +h1,14919:19260353,22125572:0,0,0 +k1,14919:31966991,22125572:12706638 +g1,14919:31966991,22125572 +) +(1,14920:7246811,22791750:24720180,404226,107478 +h1,14920:7246811,22791750:0,0,0 +g1,14920:7562957,22791750 +g1,14920:7879103,22791750 +g1,14920:8195249,22791750 +g1,14920:8511395,22791750 +g1,14920:15150455,22791750 +g1,14920:15782747,22791750 +k1,14920:15782747,22791750:0 +h1,14920:18944204,22791750:0,0,0 +k1,14920:31966991,22791750:13022787 +g1,14920:31966991,22791750 +) +(1,14921:7246811,23457928:24720180,410518,101187 +h1,14921:7246811,23457928:0,0,0 +g1,14921:7562957,23457928 +g1,14921:7879103,23457928 +g1,14921:8195249,23457928 +g1,14921:8511395,23457928 +g1,14921:8827541,23457928 +g1,14921:9143687,23457928 +g1,14921:9459833,23457928 +g1,14921:9775979,23457928 +g1,14921:10092125,23457928 +g1,14921:10408271,23457928 +g1,14921:10724417,23457928 +g1,14921:11040563,23457928 +g1,14921:11356709,23457928 +g1,14921:11672855,23457928 +g1,14921:11989001,23457928 +g1,14921:15782749,23457928 +g1,14921:16415041,23457928 +k1,14921:16415041,23457928:0 +h1,14921:20208789,23457928:0,0,0 +k1,14921:31966991,23457928:11758202 +g1,14921:31966991,23457928 +) +(1,14922:7246811,24124106:24720180,404226,82312 +h1,14922:7246811,24124106:0,0,0 +g1,14922:7562957,24124106 +g1,14922:7879103,24124106 +g1,14922:8195249,24124106 +g1,14922:8511395,24124106 +g1,14922:8827541,24124106 +g1,14922:9143687,24124106 +g1,14922:9459833,24124106 +g1,14922:9775979,24124106 +g1,14922:10092125,24124106 +g1,14922:10408271,24124106 +g1,14922:10724417,24124106 +g1,14922:11040563,24124106 +g1,14922:11356709,24124106 +g1,14922:11672855,24124106 +g1,14922:11989001,24124106 +g1,14922:16731187,24124106 +g1,14922:17363479,24124106 +k1,14922:17363479,24124106:0 +h1,14922:22105665,24124106:0,0,0 +k1,14922:31966991,24124106:9861326 +g1,14922:31966991,24124106 +) +(1,14923:7246811,24790284:24720180,404226,76021 +h1,14923:7246811,24790284:0,0,0 +g1,14923:7562957,24790284 +g1,14923:7879103,24790284 +g1,14923:8195249,24790284 +g1,14923:8511395,24790284 +g1,14923:8827541,24790284 +g1,14923:9143687,24790284 +g1,14923:9459833,24790284 +g1,14923:9775979,24790284 +g1,14923:10092125,24790284 +g1,14923:10408271,24790284 +g1,14923:10724417,24790284 +g1,14923:11040563,24790284 +g1,14923:11356709,24790284 +g1,14923:11672855,24790284 +g1,14923:11989001,24790284 +g1,14923:16731187,24790284 +g1,14923:17363479,24790284 +g1,14923:22421810,24790284 +h1,14923:22737956,24790284:0,0,0 +k1,14923:31966991,24790284:9229035 +g1,14923:31966991,24790284 +) +(1,14924:7246811,25456462:24720180,404226,82312 +h1,14924:7246811,25456462:0,0,0 +g1,14924:7562957,25456462 +g1,14924:7879103,25456462 +g1,14924:8195249,25456462 +g1,14924:8511395,25456462 +g1,14924:11988998,25456462 +g1,14924:12621290,25456462 +g1,14924:18628058,25456462 +g1,14924:19260350,25456462 +k1,14924:19260350,25456462:0 +h1,14924:23054098,25456462:0,0,0 +k1,14924:31966991,25456462:8912893 +g1,14924:31966991,25456462 +) +(1,14925:7246811,26122640:24720180,404226,82312 +h1,14925:7246811,26122640:0,0,0 +g1,14925:7562957,26122640 +g1,14925:7879103,26122640 +g1,14925:8195249,26122640 +g1,14925:8511395,26122640 +g1,14925:8827541,26122640 +g1,14925:9143687,26122640 +g1,14925:9459833,26122640 +g1,14925:9775979,26122640 +g1,14925:10092125,26122640 +g1,14925:10408271,26122640 +g1,14925:11989000,26122640 +g1,14925:12621292,26122640 +g1,14925:18628060,26122640 +g1,14925:19260352,26122640 +k1,14925:19260352,26122640:0 +h1,14925:23054100,26122640:0,0,0 +k1,14925:31966991,26122640:8912891 +g1,14925:31966991,26122640 +) +(1,14926:7246811,26788818:24720180,404226,82312 +h1,14926:7246811,26788818:0,0,0 +g1,14926:7562957,26788818 +g1,14926:7879103,26788818 +g1,14926:8195249,26788818 +g1,14926:8511395,26788818 +g1,14926:8827541,26788818 +g1,14926:9143687,26788818 +g1,14926:9459833,26788818 +g1,14926:9775979,26788818 +g1,14926:10092125,26788818 +g1,14926:10408271,26788818 +g1,14926:11989000,26788818 +g1,14926:12621292,26788818 +g1,14926:18628060,26788818 +g1,14926:19260352,26788818 +k1,14926:19260352,26788818:0 +h1,14926:23054100,26788818:0,0,0 +k1,14926:31966991,26788818:8912891 +g1,14926:31966991,26788818 +) +(1,14927:7246811,27454996:24720180,404226,82312 +h1,14927:7246811,27454996:0,0,0 +g1,14927:7562957,27454996 +g1,14927:7879103,27454996 +g1,14927:8195249,27454996 +g1,14927:8511395,27454996 +g1,14927:8827541,27454996 +g1,14927:9143687,27454996 +g1,14927:9459833,27454996 +g1,14927:9775979,27454996 +g1,14927:10092125,27454996 +g1,14927:10408271,27454996 +g1,14927:12305145,27454996 +g1,14927:12937437,27454996 +g1,14927:18944205,27454996 +g1,14927:19576497,27454996 +k1,14927:19576497,27454996:0 +h1,14927:23370245,27454996:0,0,0 +k1,14927:31966991,27454996:8596746 +g1,14927:31966991,27454996 +) +(1,14928:7246811,28121174:24720180,404226,101187 +h1,14928:7246811,28121174:0,0,0 +g1,14928:7562957,28121174 +g1,14928:7879103,28121174 +g1,14928:8195249,28121174 +g1,14928:8511395,28121174 +g1,14928:8827541,28121174 +g1,14928:9143687,28121174 +g1,14928:9459833,28121174 +g1,14928:9775979,28121174 +g1,14928:10092125,28121174 +g1,14928:10408271,28121174 +g1,14928:13569728,28121174 +g1,14928:14202020,28121174 +g1,14928:20208788,28121174 +g1,14928:20841080,28121174 +g1,14928:24950974,28121174 +g1,14928:27796285,28121174 +g1,14928:28428577,28121174 +h1,14928:30009306,28121174:0,0,0 +k1,14928:31966991,28121174:1957685 +g1,14928:31966991,28121174 +) +(1,14929:7246811,28787352:24720180,404226,76021 +h1,14929:7246811,28787352:0,0,0 +g1,14929:7562957,28787352 +g1,14929:7879103,28787352 +h1,14929:8195249,28787352:0,0,0 +k1,14929:31966991,28787352:23771742 +g1,14929:31966991,28787352 +) +] +) +g1,14931:31966991,28863373 +g1,14931:7246811,28863373 +g1,14931:7246811,28863373 +g1,14931:31966991,28863373 +g1,14931:31966991,28863373 +) +h1,14931:7246811,29059981:0,0,0 +(1,14935:7246811,31177896:24720180,505283,102891 +h1,14934:7246811,31177896:983040,0,0 +k1,14934:9005142,31177896:147456 +k1,14934:10171683,31177896:147456 +k1,14934:12289807,31177896:147456 +k1,14934:14292587,31177896:147456 +k1,14934:15308395,31177896:147456 +k1,14934:16931065,31177896:147455 +k1,14934:19428642,31177896:147456 +k1,14934:20673826,31177896:147456 +k1,14934:22151663,31177896:147456 +k1,14934:24285515,31177896:147456 +k1,14934:28313358,31177896:147456 +k1,14934:30921036,31177896:147456 +k1,14934:31966991,31177896:0 +) +(1,14935:7246811,32019384:24720180,513147,134348 +k1,14934:9185114,32019384:155068 +k1,14934:11286601,32019384:155068 +k1,14934:12633114,32019384:155068 +k1,14934:14523576,32019384:155069 +k1,14934:15449347,32019384:155068 +k1,14934:18588925,32019384:155068 +k1,14934:20028499,32019384:155068 +k1,14934:20715064,32019384:155068 +k1,14934:22224106,32019384:155068 +k1,14934:24091631,32019384:155069 +k1,14934:24898127,32019384:155068 +k1,14934:27831266,32019384:155068 +k1,14934:30573040,32019384:155068 +k1,14934:31966991,32019384:0 +) +(1,14935:7246811,32860872:24720180,513147,134348 +k1,14934:9490705,32860872:256842 +k1,14934:12411585,32860872:256841 +k1,14934:13327719,32860872:256842 +k1,14934:16586764,32860872:256842 +k1,14934:18040292,32860872:256841 +k1,14934:20108549,32860872:256842 +k1,14934:22351786,32860872:256841 +k1,14934:23140125,32860872:256842 +k1,14934:23752827,32860872:256842 +k1,14934:26705164,32860872:256841 +k1,14934:28355957,32860872:256842 +k1,14934:31966991,32860872:0 +) +(1,14935:7246811,33702360:24720180,513147,126483 +k1,14934:8654361,33702360:216105 +k1,14934:11466347,33702360:216105 +k1,14934:12630103,33702360:216105 +k1,14934:14658933,33702360:216104 +k1,14934:15502873,33702360:216105 +k1,14934:16922219,33702360:216105 +k1,14934:19799741,33702360:216105 +k1,14934:20884198,33702360:216105 +k1,14934:22575518,33702360:216105 +k1,14934:24209166,33702360:216104 +k1,14934:25444356,33702360:216105 +k1,14934:28355957,33702360:216105 +k1,14934:31966991,33702360:0 +) +(1,14935:7246811,34543848:24720180,513147,134348 +k1,14934:8443499,34543848:177603 +k1,14934:10274574,34543848:177602 +k1,14934:11138339,34543848:177603 +k1,14934:13059855,34543848:177603 +k1,14934:14750684,34543848:177603 +k1,14934:15544324,34543848:177602 +k1,14934:18724130,34543848:177603 +k1,14934:20277334,34543848:177603 +k1,14934:22642529,34543848:177603 +k1,14934:23590834,34543848:177602 +k1,14934:26995430,34543848:177603 +k1,14934:30453765,34543848:177603 +k1,14934:31966991,34543848:0 +) +(1,14935:7246811,35385336:24720180,505283,134348 +k1,14934:8552223,35385336:286327 +k1,14934:11329573,35385336:286327 +k1,14934:13102912,35385336:286327 +k1,14934:14040667,35385336:286327 +k1,14934:17427502,35385336:286327 +k1,14934:21922550,35385336:286326 +k1,14934:23400322,35385336:286327 +k1,14934:25416144,35385336:286327 +k1,14934:28966819,35385336:286327 +k1,14934:31137961,35385336:286327 +k1,14934:31966991,35385336:0 +) +(1,14935:7246811,36226824:24720180,505283,134348 +k1,14934:9205220,36226824:228914 +k1,14934:12698483,36226824:228915 +k1,14934:14812212,36226824:228914 +k1,14934:15909479,36226824:228915 +k1,14934:17475327,36226824:228914 +k1,14934:19252857,36226824:228914 +k1,14934:23274996,36226824:228915 +k1,14934:24155338,36226824:228914 +k1,14934:26099986,36226824:228915 +(1,14934:26099986,36226824:0,452978,122846 +r1,14960:31382217,36226824:5282231,575824,122846 +k1,14934:26099986,36226824:-5282231 +) +(1,14934:26099986,36226824:5282231,452978,122846 +k1,14934:26099986,36226824:3277 +h1,14934:31378940,36226824:0,411205,112570 +) +k1,14934:31611131,36226824:228914 +k1,14934:31966991,36226824:0 +) +(1,14935:7246811,37068312:24720180,513147,134348 +g1,14934:10342731,37068312 +g1,14934:11209116,37068312 +(1,14934:11209116,37068312:0,452978,122846 +r1,14960:16491347,37068312:5282231,575824,122846 +k1,14934:11209116,37068312:-5282231 +) +(1,14934:11209116,37068312:5282231,452978,122846 +k1,14934:11209116,37068312:3277 +h1,14934:16488070,37068312:0,411205,112570 +) +g1,14934:16690576,37068312 +g1,14934:19865140,37068312 +g1,14934:22892902,37068312 +k1,14935:31966991,37068312:6362865 +g1,14935:31966991,37068312 +) +v1,14937:7246811,38760204:0,393216,0 +(1,14941:7246811,39075300:24720180,708312,196608 +g1,14941:7246811,39075300 +g1,14941:7246811,39075300 +g1,14941:7050203,39075300 +(1,14941:7050203,39075300:0,708312,196608 +r1,14960:32163599,39075300:25113396,904920,196608 +k1,14941:7050203,39075300:-25113396 +) +(1,14941:7050203,39075300:25113396,708312,196608 +[1,14941:7246811,39075300:24720180,511704,0 +(1,14939:7246811,38967822:24720180,404226,107478 +(1,14938:7246811,38967822:0,0,0 +g1,14938:7246811,38967822 +g1,14938:7246811,38967822 +g1,14938:6919131,38967822 +(1,14938:6919131,38967822:0,0,0 +) +g1,14938:7246811,38967822 +) +g1,14939:11672851,38967822 +g1,14939:12621289,38967822 +h1,14939:16731183,38967822:0,0,0 +k1,14939:31966991,38967822:15235808 +g1,14939:31966991,38967822 +) +] +) +g1,14941:31966991,39075300 +g1,14941:7246811,39075300 +g1,14941:7246811,39075300 +g1,14941:31966991,39075300 +g1,14941:31966991,39075300 +) +h1,14941:7246811,39271908:0,0,0 +(1,14945:7246811,41389823:24720180,513147,126483 +h1,14944:7246811,41389823:983040,0,0 +k1,14944:10672579,41389823:166663 +k1,14944:11707594,41389823:166663 +k1,14944:12966743,41389823:166664 +k1,14944:14152491,41389823:166663 +k1,14944:15602349,41389823:166663 +k1,14944:17755408,41389823:166663 +k1,14944:21628788,41389823:166664 +k1,14944:22411489,41389823:166663 +k1,14944:23597237,41389823:166663 +k1,14944:25417373,41389823:166663 +k1,14944:26822012,41389823:166664 +k1,14944:27674837,41389823:166663 +k1,14944:29585413,41389823:166663 +k1,14944:31966991,41389823:0 +) +(1,14945:7246811,42231311:24720180,505283,134348 +g1,14944:8062078,42231311 +k1,14945:31966991,42231311:20902710 +g1,14945:31966991,42231311 ) ] ) ] -r1,14929:32583029,45706769:26214,39819674,0 +r1,14960:32583029,45706769:26214,39819674,0 ) ] ) ) -g1,14929:32583029,45116945 +g1,14960:32583029,45116945 ) ] -(1,14929:32583029,45706769:0,0,0 -g1,14929:32583029,45706769 +(1,14960:32583029,45706769:0,0,0 +g1,14960:32583029,45706769 ) ) ] -(1,14929:6630773,47279633:25952256,0,0 -h1,14929:6630773,47279633:25952256,0,0 +(1,14960:6630773,47279633:25952256,0,0 +h1,14960:6630773,47279633:25952256,0,0 ) ] -h1,14929:4262630,4025873:0,0,0 +h1,14960:4262630,4025873:0,0,0 ] -!25843 -}289 -Input:2264:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2265:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2266:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2267:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2268:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2269:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 -{290 -[1,14967:4262630,47279633:28320399,43253760,0 -(1,14967:4262630,4025873:0,0,0 -[1,14967:-473657,4025873:25952256,0,0 -(1,14967:-473657,-710414:25952256,0,0 -h1,14967:-473657,-710414:0,0,0 -(1,14967:-473657,-710414:0,0,0 -(1,14967:-473657,-710414:0,0,0 -g1,14967:-473657,-710414 -(1,14967:-473657,-710414:65781,0,65781 -g1,14967:-407876,-710414 -[1,14967:-407876,-644633:0,0,0 +!25839 +}290 +Input:2261:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2262:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2263:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2264:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2265:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2266:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 +{291 +[1,14998:4262630,47279633:28320399,43253760,0 +(1,14998:4262630,4025873:0,0,0 +[1,14998:-473657,4025873:25952256,0,0 +(1,14998:-473657,-710414:25952256,0,0 +h1,14998:-473657,-710414:0,0,0 +(1,14998:-473657,-710414:0,0,0 +(1,14998:-473657,-710414:0,0,0 +g1,14998:-473657,-710414 +(1,14998:-473657,-710414:65781,0,65781 +g1,14998:-407876,-710414 +[1,14998:-407876,-644633:0,0,0 ] ) -k1,14967:-473657,-710414:-65781 +k1,14998:-473657,-710414:-65781 ) ) -k1,14967:25478599,-710414:25952256 -g1,14967:25478599,-710414 +k1,14998:25478599,-710414:25952256 +g1,14998:25478599,-710414 ) ] ) -[1,14967:6630773,47279633:25952256,43253760,0 -[1,14967:6630773,4812305:25952256,786432,0 -(1,14967:6630773,4812305:25952256,505283,134348 -(1,14967:6630773,4812305:25952256,505283,134348 -g1,14967:3078558,4812305 -[1,14967:3078558,4812305:0,0,0 -(1,14967:3078558,2439708:0,1703936,0 -k1,14967:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14967:2537886,2439708:1179648,16384,0 +[1,14998:6630773,47279633:25952256,43253760,0 +[1,14998:6630773,4812305:25952256,786432,0 +(1,14998:6630773,4812305:25952256,513147,134348 +(1,14998:6630773,4812305:25952256,513147,134348 +g1,14998:3078558,4812305 +[1,14998:3078558,4812305:0,0,0 +(1,14998:3078558,2439708:0,1703936,0 +k1,14998:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,14998:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14967:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,14998:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14967:3078558,4812305:0,0,0 -(1,14967:3078558,2439708:0,1703936,0 -g1,14967:29030814,2439708 -g1,14967:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14967:36151628,1915420:16384,1179648,0 +[1,14998:3078558,4812305:0,0,0 +(1,14998:3078558,2439708:0,1703936,0 +g1,14998:29030814,2439708 +g1,14998:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,14998:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14967:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,14998:37855564,2439708:1179648,16384,0 ) ) -k1,14967:3078556,2439708:-34777008 +k1,14998:3078556,2439708:-34777008 ) ] -[1,14967:3078558,4812305:0,0,0 -(1,14967:3078558,49800853:0,16384,2228224 -k1,14967:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14967:2537886,49800853:1179648,16384,0 +[1,14998:3078558,4812305:0,0,0 +(1,14998:3078558,49800853:0,16384,2228224 +k1,14998:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,14998:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14967:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,14998:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14967:3078558,4812305:0,0,0 -(1,14967:3078558,49800853:0,16384,2228224 -g1,14967:29030814,49800853 -g1,14967:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14967:36151628,51504789:16384,1179648,0 +[1,14998:3078558,4812305:0,0,0 +(1,14998:3078558,49800853:0,16384,2228224 +g1,14998:29030814,49800853 +g1,14998:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,14998:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14967:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,14998:37855564,49800853:1179648,16384,0 ) ) -k1,14967:3078556,49800853:-34777008 +k1,14998:3078556,49800853:-34777008 ) ] -g1,14967:6630773,4812305 -g1,14967:6630773,4812305 -g1,14967:10334867,4812305 -g1,14967:12009967,4812305 -k1,14967:31387651,4812305:19377684 +g1,14998:6630773,4812305 +k1,14998:25712890,4812305:17886740 +g1,14998:29057847,4812305 +g1,14998:29873114,4812305 ) ) ] -[1,14967:6630773,45706769:25952256,40108032,0 -(1,14967:6630773,45706769:25952256,40108032,0 -(1,14967:6630773,45706769:0,0,0 -g1,14967:6630773,45706769 +[1,14998:6630773,45706769:25952256,40108032,0 +(1,14998:6630773,45706769:25952256,40108032,0 +(1,14998:6630773,45706769:0,0,0 +g1,14998:6630773,45706769 ) -[1,14967:6630773,45706769:25952256,40108032,0 -v1,14929:6630773,6254097:0,393216,0 -(1,14929:6630773,17922680:25952256,12061799,616038 -g1,14929:6630773,17922680 -(1,14929:6630773,17922680:25952256,12061799,616038 -(1,14929:6630773,18538718:25952256,12677837,0 -[1,14929:6630773,18538718:25952256,12677837,0 -(1,14929:6630773,18512504:25952256,12651623,0 -r1,14929:6656987,18512504:26214,12651623,0 -[1,14929:6656987,18512504:25899828,12651623,0 -(1,14929:6656987,17922680:25899828,11471975,0 -[1,14929:7246811,17922680:24720180,11471975,0 -v1,14916:7246811,6843921:0,393216,0 -(1,14920:7246811,7159017:24720180,708312,196608 -g1,14920:7246811,7159017 -g1,14920:7246811,7159017 -g1,14920:7050203,7159017 -(1,14920:7050203,7159017:0,708312,196608 -r1,14929:32163599,7159017:25113396,904920,196608 -k1,14920:7050203,7159017:-25113396 +[1,14998:6630773,45706769:25952256,40108032,0 +v1,14960:6630773,6254097:0,393216,0 +(1,14960:6630773,17922680:25952256,12061799,616038 +g1,14960:6630773,17922680 +(1,14960:6630773,17922680:25952256,12061799,616038 +(1,14960:6630773,18538718:25952256,12677837,0 +[1,14960:6630773,18538718:25952256,12677837,0 +(1,14960:6630773,18512504:25952256,12651623,0 +r1,14960:6656987,18512504:26214,12651623,0 +[1,14960:6656987,18512504:25899828,12651623,0 +(1,14960:6656987,17922680:25899828,11471975,0 +[1,14960:7246811,17922680:24720180,11471975,0 +v1,14947:7246811,6843921:0,393216,0 +(1,14951:7246811,7159017:24720180,708312,196608 +g1,14951:7246811,7159017 +g1,14951:7246811,7159017 +g1,14951:7050203,7159017 +(1,14951:7050203,7159017:0,708312,196608 +r1,14960:32163599,7159017:25113396,904920,196608 +k1,14951:7050203,7159017:-25113396 ) -(1,14920:7050203,7159017:25113396,708312,196608 -[1,14920:7246811,7159017:24720180,511704,0 -(1,14918:7246811,7051539:24720180,404226,107478 -(1,14917:7246811,7051539:0,0,0 -g1,14917:7246811,7051539 -g1,14917:7246811,7051539 -g1,14917:6919131,7051539 -(1,14917:6919131,7051539:0,0,0 +(1,14951:7050203,7159017:25113396,708312,196608 +[1,14951:7246811,7159017:24720180,511704,0 +(1,14949:7246811,7051539:24720180,404226,107478 +(1,14948:7246811,7051539:0,0,0 +g1,14948:7246811,7051539 +g1,14948:7246811,7051539 +g1,14948:6919131,7051539 +(1,14948:6919131,7051539:0,0,0 ) -g1,14917:7246811,7051539 +g1,14948:7246811,7051539 ) -g1,14918:7879103,7051539 -g1,14918:8511395,7051539 -g1,14918:14202018,7051539 -g1,14918:17679621,7051539 -g1,14918:18311913,7051539 -h1,14918:21473370,7051539:0,0,0 -k1,14918:31966991,7051539:10493621 -g1,14918:31966991,7051539 +g1,14949:7879103,7051539 +g1,14949:8511395,7051539 +g1,14949:14202018,7051539 +g1,14949:17679621,7051539 +g1,14949:18311913,7051539 +h1,14949:21473370,7051539:0,0,0 +k1,14949:31966991,7051539:10493621 +g1,14949:31966991,7051539 ) ] ) -g1,14920:31966991,7159017 -g1,14920:7246811,7159017 -g1,14920:7246811,7159017 -g1,14920:31966991,7159017 -g1,14920:31966991,7159017 -) -h1,14920:7246811,7355625:0,0,0 -(1,14923:7246811,17922680:24720180,9977231,0 -k1,14923:12932536,17922680:5685725 -h1,14922:12932536,17922680:0,0,0 -(1,14922:12932536,17922680:13348731,9977231,0 -(1,14922:12932536,17922680:13349199,9977256,0 -(1,14922:12932536,17922680:13349199,9977256,0 -(1,14922:12932536,17922680:0,9977256,0 -(1,14922:12932536,17922680:0,14155776,0 -(1,14922:12932536,17922680:18939904,14155776,0 -) -k1,14922:12932536,17922680:-18939904 -) -) -g1,14922:26281735,17922680 -) -) -) -g1,14923:26281267,17922680 -k1,14923:31966991,17922680:5685724 -) -] -) -] -r1,14929:32583029,18512504:26214,12651623,0 -) -] -) -) -g1,14929:32583029,17922680 -) -h1,14929:6630773,18538718:0,0,0 -(1,14934:6630773,21870574:25952256,32768,229376 -(1,14934:6630773,21870574:0,32768,229376 -(1,14934:6630773,21870574:5505024,32768,229376 -r1,14934:12135797,21870574:5505024,262144,229376 -) -k1,14934:6630773,21870574:-5505024 -) -(1,14934:6630773,21870574:25952256,32768,0 -r1,14934:32583029,21870574:25952256,32768,0 -) -) -(1,14934:6630773,23474902:25952256,606339,161218 -(1,14934:6630773,23474902:2464678,573309,0 -g1,14934:6630773,23474902 -g1,14934:9095451,23474902 -) -g1,14934:13796742,23474902 -k1,14934:32583029,23474902:16814702 -g1,14934:32583029,23474902 -) -(1,14937:6630773,24709606:25952256,513147,134348 -k1,14936:7473959,24709606:215351 -k1,14936:9967997,24709606:215351 -h1,14936:10938585,24709606:0,0,0 -k1,14936:11153936,24709606:215351 -k1,14936:12178658,24709606:215352 -k1,14936:13892162,24709606:215351 -h1,14936:15087539,24709606:0,0,0 -k1,14936:15476560,24709606:215351 -k1,14936:16560263,24709606:215351 -k1,14936:19865637,24709606:215351 -k1,14936:21411369,24709606:215351 -k1,14936:23515468,24709606:215351 -k1,14936:24835101,24709606:215351 -k1,14936:25798219,24709606:215352 -k1,14936:27526796,24709606:215351 -k1,14936:28393575,24709606:215351 -k1,14936:30959047,24709606:215351 -k1,14937:32583029,24709606:0 -) -(1,14937:6630773,25551094:25952256,513147,134348 -k1,14936:9286619,25551094:238223 -k1,14936:10789688,25551094:238224 -k1,14936:11687203,25551094:238223 -k1,14936:14173311,25551094:238223 -k1,14936:16266203,25551094:238223 -k1,14936:17313797,25551094:238224 -k1,14936:17907880,25551094:238223 -k1,14936:20019122,25551094:238223 -k1,14936:21646709,25551094:238224 -k1,14936:22993146,25551094:238223 -k1,14936:25339662,25551094:238223 -k1,14936:29056536,25551094:238223 -k1,14936:30163112,25551094:238224 -k1,14936:31931601,25551094:238223 -k1,14936:32583029,25551094:0 -) -(1,14937:6630773,26392582:25952256,513147,126483 -k1,14936:9794032,26392582:226591 -k1,14936:10376483,26392582:226591 -k1,14936:13902156,26392582:226591 -k1,14936:15406043,26392582:226590 -k1,14936:17200255,26392582:226591 -k1,14936:21185991,26392582:226591 -k1,14936:23762703,26392582:226591 -k1,14936:25770563,26392582:226591 -k1,14936:26474911,26392582:226591 -k1,14936:27858211,26392582:226590 -k1,14936:30229795,26392582:226591 -k1,14936:31107814,26392582:226591 -k1,14936:32583029,26392582:0 -) -(1,14937:6630773,27234070:25952256,513147,134348 -k1,14936:9637728,27234070:198082 -k1,14936:12155130,27234070:198083 -k1,14936:13605605,27234070:198082 -k1,14936:15647871,27234070:198083 -k1,14936:17037398,27234070:198082 -k1,14936:19759927,27234070:198082 -k1,14936:21809402,27234070:198083 -k1,14936:24209494,27234070:198082 -k1,14936:25059005,27234070:198083 -k1,14936:26955125,27234070:198082 -k1,14936:28888601,27234070:198083 -k1,14936:31149101,27234070:198082 -k1,14936:32583029,27234070:0 -) -(1,14937:6630773,28075558:25952256,513147,126483 -g1,14936:7849087,28075558 -g1,14936:9383940,28075558 -g1,14936:10114666,28075558 -g1,14936:11380166,28075558 -g1,14936:12974001,28075558 -g1,14936:13824658,28075558 -g1,14936:16381217,28075558 -g1,14936:19040668,28075558 -g1,14936:20258982,28075558 -g1,14936:21846264,28075558 -g1,14936:22704785,28075558 -g1,14936:25445500,28075558 -k1,14937:32583029,28075558:5382475 -g1,14937:32583029,28075558 -) -(1,14939:6630773,28917046:25952256,513147,134348 -h1,14938:6630773,28917046:983040,0,0 -k1,14938:10449192,28917046:300446 -k1,14938:14416377,28917046:300446 -k1,14938:17007962,28917046:300446 -k1,14938:17664268,28917046:300446 -k1,14938:20089391,28917046:300446 -k1,14938:23292427,28917046:300446 -k1,14938:24540524,28917046:300446 -k1,14938:28324864,28917046:300446 -k1,14938:30232908,28917046:300446 -k1,14938:32583029,28917046:0 -) -(1,14939:6630773,29758534:25952256,513147,134348 -k1,14938:8254006,29758534:229282 -k1,14938:11485491,29758534:229282 -k1,14938:12668322,29758534:229282 -k1,14938:14930531,29758534:229282 -k1,14938:17829094,29758534:229282 -k1,14938:19456259,29758534:229282 -k1,14938:20704626,29758534:229282 -k1,14938:22026392,29758534:229281 -k1,14938:22914966,29758534:229282 -k1,14938:26221163,29758534:229282 -(1,14938:26221163,29758534:0,414482,115847 -r1,14938:26579429,29758534:358266,530329,115847 -k1,14938:26221163,29758534:-358266 -) -(1,14938:26221163,29758534:358266,414482,115847 -k1,14938:26221163,29758534:3277 -h1,14938:26576152,29758534:0,411205,112570 -) -k1,14938:26982381,29758534:229282 -(1,14938:26982381,29758534:0,452978,115847 -r1,14938:27340647,29758534:358266,568825,115847 -k1,14938:26982381,29758534:-358266 -) -(1,14938:26982381,29758534:358266,452978,115847 -k1,14938:26982381,29758534:3277 -h1,14938:27337370,29758534:0,411205,112570 -) -k1,14938:27569929,29758534:229282 -k1,14938:28990656,29758534:229282 -(1,14938:28990656,29758534:0,452978,115847 -r1,14938:29348922,29758534:358266,568825,115847 -k1,14938:28990656,29758534:-358266 -) -(1,14938:28990656,29758534:358266,452978,115847 -k1,14938:28990656,29758534:3277 -h1,14938:29345645,29758534:0,411205,112570 -) -k1,14938:29751874,29758534:229282 -k1,14938:32583029,29758534:0 -) -(1,14939:6630773,30600022:25952256,513147,134348 -k1,14938:10445361,30600022:147849 -k1,14938:13353586,30600022:147849 -k1,14938:16728428,30600022:147849 -k1,14938:18457661,30600022:147849 -k1,14938:19553161,30600022:147849 -k1,14938:22304756,30600022:147850 -k1,14938:25138926,30600022:147849 -k1,14938:27605439,30600022:147849 -k1,14938:28412580,30600022:147849 -k1,14938:30808314,30600022:147849 -k1,14939:32583029,30600022:0 -) -(1,14939:6630773,31441510:25952256,513147,126483 -(1,14938:6630773,31441510:0,414482,115847 -r1,14938:6989039,31441510:358266,530329,115847 -k1,14938:6630773,31441510:-358266 -) -(1,14938:6630773,31441510:358266,414482,115847 -k1,14938:6630773,31441510:3277 -h1,14938:6985762,31441510:0,411205,112570 -) -k1,14938:7186554,31441510:197515 -k1,14938:9396024,31441510:197515 -k1,14938:12355882,31441510:197515 -k1,14938:15045730,31441510:197514 -(1,14938:15045730,31441510:0,452978,115847 -r1,14938:15403996,31441510:358266,568825,115847 -k1,14938:15045730,31441510:-358266 -) -(1,14938:15045730,31441510:358266,452978,115847 -k1,14938:15045730,31441510:3277 -h1,14938:15400719,31441510:0,411205,112570 -) -k1,14938:15601511,31441510:197515 -k1,14938:18970313,31441510:197515 -k1,14938:21242042,31441510:197515 -k1,14938:22739136,31441510:197515 -k1,14938:23698179,31441510:197515 -k1,14938:25195272,31441510:197514 -k1,14938:26584232,31441510:197515 -(1,14938:26584232,31441510:0,452978,115847 -r1,14938:26942498,31441510:358266,568825,115847 -k1,14938:26584232,31441510:-358266 -) -(1,14938:26584232,31441510:358266,452978,115847 -k1,14938:26584232,31441510:3277 -h1,14938:26939221,31441510:0,411205,112570 -) -k1,14938:27140013,31441510:197515 -k1,14938:30508815,31441510:197515 -k1,14938:32583029,31441510:0 -) -(1,14939:6630773,32282998:25952256,513147,134348 -k1,14938:7631508,32282998:191365 -k1,14938:8895042,32282998:191365 -k1,14938:9745699,32282998:191365 -k1,14938:11388686,32282998:191365 -k1,14938:13455692,32282998:191366 -k1,14938:14843744,32282998:191365 -k1,14938:16642707,32282998:191365 -k1,14938:17485500,32282998:191365 -k1,14938:18424631,32282998:191365 -k1,14938:20129222,32282998:191365 -k1,14938:21006749,32282998:191365 -k1,14938:23272328,32282998:191365 -k1,14938:24567976,32282998:191366 -k1,14938:25507107,32282998:191365 -k1,14938:28359234,32282998:191365 -k1,14938:30285992,32282998:191365 -k1,14939:32583029,32282998:0 -) -(1,14939:6630773,33124486:25952256,505283,7863 -k1,14939:32583029,33124486:24008458 -g1,14939:32583029,33124486 -) -(1,14942:6630773,33790664:25952256,505283,134348 -h1,14940:6630773,33790664:983040,0,0 -g1,14940:8766591,33790664 -g1,14940:10454143,33790664 -g1,14940:11414900,33790664 -g1,14940:14186417,33790664 -g1,14940:15577091,33790664 -g1,14940:17809902,33790664 -g1,14940:19663915,33790664 -g1,14940:21644413,33790664 -k1,14942:32583029,33790664:10938616 -g1,14942:32583029,33790664 -) -v1,14942:6630773,34981130:0,393216,0 -(1,14955:6630773,41298120:25952256,6710206,196608 -g1,14955:6630773,41298120 -g1,14955:6630773,41298120 -g1,14955:6434165,41298120 -(1,14955:6434165,41298120:0,6710206,196608 -r1,14955:32779637,41298120:26345472,6906814,196608 -k1,14955:6434165,41298120:-26345472 -) -(1,14955:6434165,41298120:26345472,6710206,196608 -[1,14955:6630773,41298120:25952256,6513598,0 -(1,14944:6630773,35195040:25952256,410518,107478 -(1,14943:6630773,35195040:0,0,0 -g1,14943:6630773,35195040 -g1,14943:6630773,35195040 -g1,14943:6303093,35195040 -(1,14943:6303093,35195040:0,0,0 -) -g1,14943:6630773,35195040 -) -g1,14944:7579210,35195040 -g1,14944:8527648,35195040 -g1,14944:12321397,35195040 -g1,14944:15799000,35195040 -g1,14944:17379729,35195040 -g1,14944:19276603,35195040 -g1,14944:19908895,35195040 -g1,14944:24334935,35195040 -h1,14944:24651081,35195040:0,0,0 -k1,14944:32583029,35195040:7931948 -g1,14944:32583029,35195040 -) -(1,14945:6630773,35861218:25952256,404226,107478 -h1,14945:6630773,35861218:0,0,0 -g1,14945:6946919,35861218 -g1,14945:7263065,35861218 -g1,14945:7579211,35861218 -g1,14945:7895357,35861218 -g1,14945:8211503,35861218 -g1,14945:8527649,35861218 -g1,14945:8843795,35861218 -g1,14945:9159941,35861218 -g1,14945:13269835,35861218 -h1,14945:13585981,35861218:0,0,0 -k1,14945:32583029,35861218:18997048 -g1,14945:32583029,35861218 -) -(1,14946:6630773,36527396:25952256,404226,107478 -h1,14946:6630773,36527396:0,0,0 -g1,14946:6946919,36527396 -g1,14946:7263065,36527396 -g1,14946:7579211,36527396 -g1,14946:7895357,36527396 -g1,14946:8211503,36527396 -g1,14946:8527649,36527396 -g1,14946:8843795,36527396 -g1,14946:9159941,36527396 -g1,14946:16115146,36527396 -g1,14946:16747438,36527396 -h1,14946:18644312,36527396:0,0,0 -k1,14946:32583029,36527396:13938717 -g1,14946:32583029,36527396 -) -(1,14947:6630773,37193574:25952256,410518,107478 -h1,14947:6630773,37193574:0,0,0 -g1,14947:7579210,37193574 -g1,14947:8527648,37193574 -g1,14947:12321397,37193574 -g1,14947:15799000,37193574 -g1,14947:17379729,37193574 -g1,14947:19276603,37193574 -g1,14947:19908895,37193574 -g1,14947:24651080,37193574 -h1,14947:24967226,37193574:0,0,0 -k1,14947:32583029,37193574:7615803 -g1,14947:32583029,37193574 -) -(1,14948:6630773,37859752:25952256,404226,107478 -h1,14948:6630773,37859752:0,0,0 -g1,14948:6946919,37859752 -g1,14948:7263065,37859752 -g1,14948:7579211,37859752 -g1,14948:7895357,37859752 -g1,14948:8211503,37859752 -g1,14948:8527649,37859752 -g1,14948:8843795,37859752 -g1,14948:9159941,37859752 -g1,14948:13269835,37859752 -h1,14948:13585981,37859752:0,0,0 -k1,14948:32583029,37859752:18997048 -g1,14948:32583029,37859752 -) -(1,14949:6630773,38525930:25952256,404226,107478 -h1,14949:6630773,38525930:0,0,0 -g1,14949:6946919,38525930 -g1,14949:7263065,38525930 -g1,14949:7579211,38525930 -g1,14949:7895357,38525930 -g1,14949:8211503,38525930 -g1,14949:8527649,38525930 -g1,14949:8843795,38525930 -g1,14949:9159941,38525930 -g1,14949:16115146,38525930 -g1,14949:16747438,38525930 -h1,14949:18644312,38525930:0,0,0 -k1,14949:32583029,38525930:13938717 -g1,14949:32583029,38525930 -) -(1,14950:6630773,39192108:25952256,410518,107478 -h1,14950:6630773,39192108:0,0,0 -g1,14950:7579210,39192108 -g1,14950:8527648,39192108 -g1,14950:12321397,39192108 -g1,14950:18328166,39192108 -g1,14950:20225040,39192108 -h1,14950:20541186,39192108:0,0,0 -k1,14950:32583029,39192108:12041843 -g1,14950:32583029,39192108 -) -(1,14951:6630773,39858286:25952256,404226,107478 -h1,14951:6630773,39858286:0,0,0 -g1,14951:6946919,39858286 -g1,14951:7263065,39858286 -g1,14951:7579211,39858286 -g1,14951:7895357,39858286 -g1,14951:8211503,39858286 -g1,14951:8527649,39858286 -g1,14951:8843795,39858286 -g1,14951:9159941,39858286 -g1,14951:13269835,39858286 -h1,14951:13585981,39858286:0,0,0 -k1,14951:32583029,39858286:18997048 -g1,14951:32583029,39858286 -) -(1,14952:6630773,40524464:25952256,404226,76021 -h1,14952:6630773,40524464:0,0,0 -g1,14952:6946919,40524464 -g1,14952:7263065,40524464 -g1,14952:7579211,40524464 -g1,14952:7895357,40524464 -g1,14952:8211503,40524464 -g1,14952:8527649,40524464 -g1,14952:8843795,40524464 -g1,14952:9159941,40524464 -g1,14952:14850563,40524464 -h1,14952:15166709,40524464:0,0,0 -k1,14952:32583029,40524464:17416320 -g1,14952:32583029,40524464 -) -(1,14953:6630773,41190642:25952256,404226,107478 -h1,14953:6630773,41190642:0,0,0 -g1,14953:6946919,41190642 -g1,14953:7263065,41190642 -g1,14953:7579211,41190642 -g1,14953:7895357,41190642 -g1,14953:8211503,41190642 -g1,14953:8527649,41190642 -g1,14953:8843795,41190642 -g1,14953:9159941,41190642 -g1,14953:9476087,41190642 -g1,14953:9792233,41190642 -g1,14953:10108379,41190642 -g1,14953:10424525,41190642 -g1,14953:10740671,41190642 -g1,14953:11056817,41190642 -g1,14953:11372963,41190642 -g1,14953:11689109,41190642 -g1,14953:17695877,41190642 -g1,14953:18328169,41190642 -g1,14953:19592752,41190642 -g1,14953:21489626,41190642 -g1,14953:22121918,41190642 -g1,14953:23070356,41190642 -g1,14953:24967230,41190642 -g1,14953:25599522,41190642 -h1,14953:27180250,41190642:0,0,0 -k1,14953:32583029,41190642:5402779 -g1,14953:32583029,41190642 -) -] -) -g1,14955:32583029,41298120 -g1,14955:6630773,41298120 -g1,14955:6630773,41298120 -g1,14955:32583029,41298120 -g1,14955:32583029,41298120 -) -h1,14955:6630773,41494728:0,0,0 -(1,14959:6630773,42860504:25952256,505283,134348 -h1,14958:6630773,42860504:983040,0,0 -k1,14958:9424526,42860504:175590 -k1,14958:10468467,42860504:175589 -k1,14958:13485043,42860504:175590 -k1,14958:14016493,42860504:175590 -k1,14958:15469380,42860504:175590 -k1,14958:17380362,42860504:175589 -k1,14958:18242114,42860504:175590 -k1,14958:20491918,42860504:175590 -k1,14958:21686592,42860504:175589 -k1,14958:23516966,42860504:175590 -k1,14958:25300154,42860504:175590 -k1,14958:27825865,42860504:175590 -k1,14958:29856778,42860504:175589 -k1,14958:31516758,42860504:175590 -k1,14958:32583029,42860504:0 -) -(1,14959:6630773,43701992:25952256,505283,95026 -k1,14959:32583030,43701992:23495968 -g1,14959:32583030,43701992 -) -v1,14963:6630773,44892458:0,393216,0 -] -(1,14967:32583029,45706769:0,0,0 -g1,14967:32583029,45706769 -) -) -] -(1,14967:6630773,47279633:25952256,0,0 -h1,14967:6630773,47279633:25952256,0,0 -) -] -h1,14967:4262630,4025873:0,0,0 -] -!19237 -}290 -Input:2270:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2271:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2272:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2273:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2274:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2275:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2276:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{291 -[1,14997:4262630,47279633:28320399,43253760,0 -(1,14997:4262630,4025873:0,0,0 -[1,14997:-473657,4025873:25952256,0,0 -(1,14997:-473657,-710414:25952256,0,0 -h1,14997:-473657,-710414:0,0,0 -(1,14997:-473657,-710414:0,0,0 -(1,14997:-473657,-710414:0,0,0 -g1,14997:-473657,-710414 -(1,14997:-473657,-710414:65781,0,65781 -g1,14997:-407876,-710414 -[1,14997:-407876,-644633:0,0,0 +g1,14951:31966991,7159017 +g1,14951:7246811,7159017 +g1,14951:7246811,7159017 +g1,14951:31966991,7159017 +g1,14951:31966991,7159017 +) +h1,14951:7246811,7355625:0,0,0 +(1,14954:7246811,17922680:24720180,9977231,0 +k1,14954:12932536,17922680:5685725 +h1,14953:12932536,17922680:0,0,0 +(1,14953:12932536,17922680:13348731,9977231,0 +(1,14953:12932536,17922680:13349199,9977256,0 +(1,14953:12932536,17922680:13349199,9977256,0 +(1,14953:12932536,17922680:0,9977256,0 +(1,14953:12932536,17922680:0,14155776,0 +(1,14953:12932536,17922680:18939904,14155776,0 +) +k1,14953:12932536,17922680:-18939904 +) +) +g1,14953:26281735,17922680 +) +) +) +g1,14954:26281267,17922680 +k1,14954:31966991,17922680:5685724 +) +] +) +] +r1,14960:32583029,18512504:26214,12651623,0 +) +] +) +) +g1,14960:32583029,17922680 +) +h1,14960:6630773,18538718:0,0,0 +(1,14965:6630773,21870574:25952256,32768,229376 +(1,14965:6630773,21870574:0,32768,229376 +(1,14965:6630773,21870574:5505024,32768,229376 +r1,14965:12135797,21870574:5505024,262144,229376 +) +k1,14965:6630773,21870574:-5505024 +) +(1,14965:6630773,21870574:25952256,32768,0 +r1,14965:32583029,21870574:25952256,32768,0 +) +) +(1,14965:6630773,23474902:25952256,606339,161218 +(1,14965:6630773,23474902:2464678,573309,0 +g1,14965:6630773,23474902 +g1,14965:9095451,23474902 +) +g1,14965:13796742,23474902 +k1,14965:32583029,23474902:16814702 +g1,14965:32583029,23474902 +) +(1,14968:6630773,24709606:25952256,513147,134348 +k1,14967:7473959,24709606:215351 +k1,14967:9967997,24709606:215351 +h1,14967:10938585,24709606:0,0,0 +k1,14967:11153936,24709606:215351 +k1,14967:12178658,24709606:215352 +k1,14967:13892162,24709606:215351 +h1,14967:15087539,24709606:0,0,0 +k1,14967:15476560,24709606:215351 +k1,14967:16560263,24709606:215351 +k1,14967:19865637,24709606:215351 +k1,14967:21411369,24709606:215351 +k1,14967:23515468,24709606:215351 +k1,14967:24835101,24709606:215351 +k1,14967:25798219,24709606:215352 +k1,14967:27526796,24709606:215351 +k1,14967:28393575,24709606:215351 +k1,14967:30959047,24709606:215351 +k1,14968:32583029,24709606:0 +) +(1,14968:6630773,25551094:25952256,513147,134348 +k1,14967:9286619,25551094:238223 +k1,14967:10789688,25551094:238224 +k1,14967:11687203,25551094:238223 +k1,14967:14173311,25551094:238223 +k1,14967:16266203,25551094:238223 +k1,14967:17313797,25551094:238224 +k1,14967:17907880,25551094:238223 +k1,14967:20019122,25551094:238223 +k1,14967:21646709,25551094:238224 +k1,14967:22993146,25551094:238223 +k1,14967:25339662,25551094:238223 +k1,14967:29056536,25551094:238223 +k1,14967:30163112,25551094:238224 +k1,14967:31931601,25551094:238223 +k1,14967:32583029,25551094:0 +) +(1,14968:6630773,26392582:25952256,513147,126483 +k1,14967:9794032,26392582:226591 +k1,14967:10376483,26392582:226591 +k1,14967:13902156,26392582:226591 +k1,14967:15406043,26392582:226590 +k1,14967:17200255,26392582:226591 +k1,14967:21185991,26392582:226591 +k1,14967:23762703,26392582:226591 +k1,14967:25770563,26392582:226591 +k1,14967:26474911,26392582:226591 +k1,14967:27858211,26392582:226590 +k1,14967:30229795,26392582:226591 +k1,14967:31107814,26392582:226591 +k1,14967:32583029,26392582:0 +) +(1,14968:6630773,27234070:25952256,513147,134348 +k1,14967:9637728,27234070:198082 +k1,14967:12155130,27234070:198083 +k1,14967:13605605,27234070:198082 +k1,14967:15647871,27234070:198083 +k1,14967:17037398,27234070:198082 +k1,14967:19759927,27234070:198082 +k1,14967:21809402,27234070:198083 +k1,14967:24209494,27234070:198082 +k1,14967:25059005,27234070:198083 +k1,14967:26955125,27234070:198082 +k1,14967:28888601,27234070:198083 +k1,14967:31149101,27234070:198082 +k1,14967:32583029,27234070:0 +) +(1,14968:6630773,28075558:25952256,513147,126483 +g1,14967:7849087,28075558 +g1,14967:9383940,28075558 +g1,14967:10114666,28075558 +g1,14967:11380166,28075558 +g1,14967:12974001,28075558 +g1,14967:13824658,28075558 +g1,14967:16381217,28075558 +g1,14967:19040668,28075558 +g1,14967:20258982,28075558 +g1,14967:21846264,28075558 +g1,14967:22704785,28075558 +g1,14967:25445500,28075558 +k1,14968:32583029,28075558:5382475 +g1,14968:32583029,28075558 +) +(1,14970:6630773,28917046:25952256,513147,134348 +h1,14969:6630773,28917046:983040,0,0 +k1,14969:10449192,28917046:300446 +k1,14969:14416377,28917046:300446 +k1,14969:17007962,28917046:300446 +k1,14969:17664268,28917046:300446 +k1,14969:20089391,28917046:300446 +k1,14969:23292427,28917046:300446 +k1,14969:24540524,28917046:300446 +k1,14969:28324864,28917046:300446 +k1,14969:30232908,28917046:300446 +k1,14969:32583029,28917046:0 +) +(1,14970:6630773,29758534:25952256,513147,134348 +k1,14969:8254006,29758534:229282 +k1,14969:11485491,29758534:229282 +k1,14969:12668322,29758534:229282 +k1,14969:14930531,29758534:229282 +k1,14969:17829094,29758534:229282 +k1,14969:19456259,29758534:229282 +k1,14969:20704626,29758534:229282 +k1,14969:22026392,29758534:229281 +k1,14969:22914966,29758534:229282 +k1,14969:26221163,29758534:229282 +(1,14969:26221163,29758534:0,414482,115847 +r1,14969:26579429,29758534:358266,530329,115847 +k1,14969:26221163,29758534:-358266 +) +(1,14969:26221163,29758534:358266,414482,115847 +k1,14969:26221163,29758534:3277 +h1,14969:26576152,29758534:0,411205,112570 +) +k1,14969:26982381,29758534:229282 +(1,14969:26982381,29758534:0,452978,115847 +r1,14969:27340647,29758534:358266,568825,115847 +k1,14969:26982381,29758534:-358266 +) +(1,14969:26982381,29758534:358266,452978,115847 +k1,14969:26982381,29758534:3277 +h1,14969:27337370,29758534:0,411205,112570 +) +k1,14969:27569929,29758534:229282 +k1,14969:28990656,29758534:229282 +(1,14969:28990656,29758534:0,452978,115847 +r1,14969:29348922,29758534:358266,568825,115847 +k1,14969:28990656,29758534:-358266 +) +(1,14969:28990656,29758534:358266,452978,115847 +k1,14969:28990656,29758534:3277 +h1,14969:29345645,29758534:0,411205,112570 +) +k1,14969:29751874,29758534:229282 +k1,14969:32583029,29758534:0 +) +(1,14970:6630773,30600022:25952256,513147,134348 +k1,14969:10445361,30600022:147849 +k1,14969:13353586,30600022:147849 +k1,14969:16728428,30600022:147849 +k1,14969:18457661,30600022:147849 +k1,14969:19553161,30600022:147849 +k1,14969:22304756,30600022:147850 +k1,14969:25138926,30600022:147849 +k1,14969:27605439,30600022:147849 +k1,14969:28412580,30600022:147849 +k1,14969:30808314,30600022:147849 +k1,14970:32583029,30600022:0 +) +(1,14970:6630773,31441510:25952256,513147,126483 +(1,14969:6630773,31441510:0,414482,115847 +r1,14969:6989039,31441510:358266,530329,115847 +k1,14969:6630773,31441510:-358266 +) +(1,14969:6630773,31441510:358266,414482,115847 +k1,14969:6630773,31441510:3277 +h1,14969:6985762,31441510:0,411205,112570 +) +k1,14969:7224716,31441510:235677 +k1,14969:9472348,31441510:235677 +k1,14969:12470368,31441510:235677 +k1,14969:15198379,31441510:235677 +(1,14969:15198379,31441510:0,452978,115847 +r1,14969:15556645,31441510:358266,568825,115847 +k1,14969:15198379,31441510:-358266 +) +(1,14969:15198379,31441510:358266,452978,115847 +k1,14969:15198379,31441510:3277 +h1,14969:15553368,31441510:0,411205,112570 +) +k1,14969:15792322,31441510:235677 +k1,14969:19199286,31441510:235677 +k1,14969:21509176,31441510:235676 +k1,14969:23044432,31441510:235677 +k1,14969:24041637,31441510:235677 +k1,14969:25750563,31441510:235677 +k1,14969:27177685,31441510:235677 +(1,14969:27177685,31441510:0,452978,115847 +r1,14969:27535951,31441510:358266,568825,115847 +k1,14969:27177685,31441510:-358266 +) +(1,14969:27177685,31441510:358266,452978,115847 +k1,14969:27177685,31441510:3277 +h1,14969:27532674,31441510:0,411205,112570 +) +k1,14969:27771628,31441510:235677 +k1,14969:31178592,31441510:235677 +k1,14970:32583029,31441510:0 +) +(1,14970:6630773,32282998:25952256,513147,134348 +k1,14969:7793300,32282998:279757 +k1,14969:8882427,32282998:279757 +k1,14969:10234352,32282998:279756 +k1,14969:11173401,32282998:279757 +k1,14969:12904780,32282998:279757 +k1,14969:15060177,32282998:279757 +k1,14969:16536621,32282998:279757 +k1,14969:18423976,32282998:279757 +k1,14969:19355160,32282998:279756 +k1,14969:20382683,32282998:279757 +k1,14969:22175666,32282998:279757 +k1,14969:23141585,32282998:279757 +k1,14969:25495556,32282998:279757 +k1,14969:26879594,32282998:279756 +k1,14969:27907117,32282998:279757 +k1,14969:30847636,32282998:279757 +k1,14969:32583029,32282998:0 +) +(1,14970:6630773,33124486:25952256,505283,126483 +k1,14970:32583028,33124486:21924412 +g1,14970:32583028,33124486 +) +(1,14973:6630773,33790664:25952256,505283,134348 +h1,14971:6630773,33790664:983040,0,0 +g1,14971:8766591,33790664 +g1,14971:10454143,33790664 +g1,14971:11414900,33790664 +g1,14971:14186417,33790664 +g1,14971:15577091,33790664 +g1,14971:17809902,33790664 +g1,14971:19663915,33790664 +g1,14971:21644413,33790664 +k1,14973:32583029,33790664:10938616 +g1,14973:32583029,33790664 +) +v1,14973:6630773,34981130:0,393216,0 +(1,14986:6630773,41298120:25952256,6710206,196608 +g1,14986:6630773,41298120 +g1,14986:6630773,41298120 +g1,14986:6434165,41298120 +(1,14986:6434165,41298120:0,6710206,196608 +r1,14986:32779637,41298120:26345472,6906814,196608 +k1,14986:6434165,41298120:-26345472 +) +(1,14986:6434165,41298120:26345472,6710206,196608 +[1,14986:6630773,41298120:25952256,6513598,0 +(1,14975:6630773,35195040:25952256,410518,107478 +(1,14974:6630773,35195040:0,0,0 +g1,14974:6630773,35195040 +g1,14974:6630773,35195040 +g1,14974:6303093,35195040 +(1,14974:6303093,35195040:0,0,0 +) +g1,14974:6630773,35195040 +) +g1,14975:7579210,35195040 +g1,14975:8527648,35195040 +g1,14975:12321397,35195040 +g1,14975:15799000,35195040 +g1,14975:17379729,35195040 +g1,14975:19276603,35195040 +g1,14975:19908895,35195040 +g1,14975:24334935,35195040 +h1,14975:24651081,35195040:0,0,0 +k1,14975:32583029,35195040:7931948 +g1,14975:32583029,35195040 +) +(1,14976:6630773,35861218:25952256,404226,107478 +h1,14976:6630773,35861218:0,0,0 +g1,14976:6946919,35861218 +g1,14976:7263065,35861218 +g1,14976:7579211,35861218 +g1,14976:7895357,35861218 +g1,14976:8211503,35861218 +g1,14976:8527649,35861218 +g1,14976:8843795,35861218 +g1,14976:9159941,35861218 +g1,14976:13269835,35861218 +h1,14976:13585981,35861218:0,0,0 +k1,14976:32583029,35861218:18997048 +g1,14976:32583029,35861218 +) +(1,14977:6630773,36527396:25952256,404226,107478 +h1,14977:6630773,36527396:0,0,0 +g1,14977:6946919,36527396 +g1,14977:7263065,36527396 +g1,14977:7579211,36527396 +g1,14977:7895357,36527396 +g1,14977:8211503,36527396 +g1,14977:8527649,36527396 +g1,14977:8843795,36527396 +g1,14977:9159941,36527396 +g1,14977:16115146,36527396 +g1,14977:16747438,36527396 +h1,14977:18644312,36527396:0,0,0 +k1,14977:32583029,36527396:13938717 +g1,14977:32583029,36527396 +) +(1,14978:6630773,37193574:25952256,410518,107478 +h1,14978:6630773,37193574:0,0,0 +g1,14978:7579210,37193574 +g1,14978:8527648,37193574 +g1,14978:12321397,37193574 +g1,14978:15799000,37193574 +g1,14978:17379729,37193574 +g1,14978:19276603,37193574 +g1,14978:19908895,37193574 +g1,14978:24651080,37193574 +h1,14978:24967226,37193574:0,0,0 +k1,14978:32583029,37193574:7615803 +g1,14978:32583029,37193574 +) +(1,14979:6630773,37859752:25952256,404226,107478 +h1,14979:6630773,37859752:0,0,0 +g1,14979:6946919,37859752 +g1,14979:7263065,37859752 +g1,14979:7579211,37859752 +g1,14979:7895357,37859752 +g1,14979:8211503,37859752 +g1,14979:8527649,37859752 +g1,14979:8843795,37859752 +g1,14979:9159941,37859752 +g1,14979:13269835,37859752 +h1,14979:13585981,37859752:0,0,0 +k1,14979:32583029,37859752:18997048 +g1,14979:32583029,37859752 +) +(1,14980:6630773,38525930:25952256,404226,107478 +h1,14980:6630773,38525930:0,0,0 +g1,14980:6946919,38525930 +g1,14980:7263065,38525930 +g1,14980:7579211,38525930 +g1,14980:7895357,38525930 +g1,14980:8211503,38525930 +g1,14980:8527649,38525930 +g1,14980:8843795,38525930 +g1,14980:9159941,38525930 +g1,14980:16115146,38525930 +g1,14980:16747438,38525930 +h1,14980:18644312,38525930:0,0,0 +k1,14980:32583029,38525930:13938717 +g1,14980:32583029,38525930 +) +(1,14981:6630773,39192108:25952256,410518,107478 +h1,14981:6630773,39192108:0,0,0 +g1,14981:7579210,39192108 +g1,14981:8527648,39192108 +g1,14981:12321397,39192108 +g1,14981:18328166,39192108 +g1,14981:20225040,39192108 +h1,14981:20541186,39192108:0,0,0 +k1,14981:32583029,39192108:12041843 +g1,14981:32583029,39192108 +) +(1,14982:6630773,39858286:25952256,404226,107478 +h1,14982:6630773,39858286:0,0,0 +g1,14982:6946919,39858286 +g1,14982:7263065,39858286 +g1,14982:7579211,39858286 +g1,14982:7895357,39858286 +g1,14982:8211503,39858286 +g1,14982:8527649,39858286 +g1,14982:8843795,39858286 +g1,14982:9159941,39858286 +g1,14982:13269835,39858286 +h1,14982:13585981,39858286:0,0,0 +k1,14982:32583029,39858286:18997048 +g1,14982:32583029,39858286 +) +(1,14983:6630773,40524464:25952256,404226,76021 +h1,14983:6630773,40524464:0,0,0 +g1,14983:6946919,40524464 +g1,14983:7263065,40524464 +g1,14983:7579211,40524464 +g1,14983:7895357,40524464 +g1,14983:8211503,40524464 +g1,14983:8527649,40524464 +g1,14983:8843795,40524464 +g1,14983:9159941,40524464 +g1,14983:14850563,40524464 +h1,14983:15166709,40524464:0,0,0 +k1,14983:32583029,40524464:17416320 +g1,14983:32583029,40524464 +) +(1,14984:6630773,41190642:25952256,404226,107478 +h1,14984:6630773,41190642:0,0,0 +g1,14984:6946919,41190642 +g1,14984:7263065,41190642 +g1,14984:7579211,41190642 +g1,14984:7895357,41190642 +g1,14984:8211503,41190642 +g1,14984:8527649,41190642 +g1,14984:8843795,41190642 +g1,14984:9159941,41190642 +g1,14984:9476087,41190642 +g1,14984:9792233,41190642 +g1,14984:10108379,41190642 +g1,14984:10424525,41190642 +g1,14984:10740671,41190642 +g1,14984:11056817,41190642 +g1,14984:11372963,41190642 +g1,14984:11689109,41190642 +g1,14984:17695877,41190642 +g1,14984:18328169,41190642 +g1,14984:19592752,41190642 +g1,14984:21489626,41190642 +g1,14984:22121918,41190642 +g1,14984:23070356,41190642 +g1,14984:24967230,41190642 +g1,14984:25599522,41190642 +h1,14984:27180250,41190642:0,0,0 +k1,14984:32583029,41190642:5402779 +g1,14984:32583029,41190642 +) +] +) +g1,14986:32583029,41298120 +g1,14986:6630773,41298120 +g1,14986:6630773,41298120 +g1,14986:32583029,41298120 +g1,14986:32583029,41298120 +) +h1,14986:6630773,41494728:0,0,0 +(1,14990:6630773,42860504:25952256,505283,134348 +h1,14989:6630773,42860504:983040,0,0 +k1,14989:9424526,42860504:175590 +k1,14989:10468467,42860504:175589 +k1,14989:13485043,42860504:175590 +k1,14989:14016493,42860504:175590 +k1,14989:15469380,42860504:175590 +k1,14989:17380362,42860504:175589 +k1,14989:18242114,42860504:175590 +k1,14989:20491918,42860504:175590 +k1,14989:21686592,42860504:175589 +k1,14989:23516966,42860504:175590 +k1,14989:25300154,42860504:175590 +k1,14989:27825865,42860504:175590 +k1,14989:29856778,42860504:175589 +k1,14989:31516758,42860504:175590 +k1,14989:32583029,42860504:0 +) +(1,14990:6630773,43701992:25952256,505283,95026 +k1,14990:32583030,43701992:23495968 +g1,14990:32583030,43701992 +) +v1,14994:6630773,44892458:0,393216,0 +] +(1,14998:32583029,45706769:0,0,0 +g1,14998:32583029,45706769 +) +) +] +(1,14998:6630773,47279633:25952256,0,0 +h1,14998:6630773,47279633:25952256,0,0 +) +] +h1,14998:4262630,4025873:0,0,0 +] +!19215 +}291 +Input:2267:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2268:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2269:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2270:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2271:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2272:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2273:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 +{292 +[1,15028:4262630,47279633:28320399,43253760,0 +(1,15028:4262630,4025873:0,0,0 +[1,15028:-473657,4025873:25952256,0,0 +(1,15028:-473657,-710414:25952256,0,0 +h1,15028:-473657,-710414:0,0,0 +(1,15028:-473657,-710414:0,0,0 +(1,15028:-473657,-710414:0,0,0 +g1,15028:-473657,-710414 +(1,15028:-473657,-710414:65781,0,65781 +g1,15028:-407876,-710414 +[1,15028:-407876,-644633:0,0,0 ] ) -k1,14997:-473657,-710414:-65781 +k1,15028:-473657,-710414:-65781 ) ) -k1,14997:25478599,-710414:25952256 -g1,14997:25478599,-710414 +k1,15028:25478599,-710414:25952256 +g1,15028:25478599,-710414 ) ] ) -[1,14997:6630773,47279633:25952256,43253760,0 -[1,14997:6630773,4812305:25952256,786432,0 -(1,14997:6630773,4812305:25952256,513147,134348 -(1,14997:6630773,4812305:25952256,513147,134348 -g1,14997:3078558,4812305 -[1,14997:3078558,4812305:0,0,0 -(1,14997:3078558,2439708:0,1703936,0 -k1,14997:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,14997:2537886,2439708:1179648,16384,0 +[1,15028:6630773,47279633:25952256,43253760,0 +[1,15028:6630773,4812305:25952256,786432,0 +(1,15028:6630773,4812305:25952256,505283,134348 +(1,15028:6630773,4812305:25952256,505283,134348 +g1,15028:3078558,4812305 +[1,15028:3078558,4812305:0,0,0 +(1,15028:3078558,2439708:0,1703936,0 +k1,15028:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15028:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,14997:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15028:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,14997:3078558,4812305:0,0,0 -(1,14997:3078558,2439708:0,1703936,0 -g1,14997:29030814,2439708 -g1,14997:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,14997:36151628,1915420:16384,1179648,0 +[1,15028:3078558,4812305:0,0,0 +(1,15028:3078558,2439708:0,1703936,0 +g1,15028:29030814,2439708 +g1,15028:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15028:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,14997:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15028:37855564,2439708:1179648,16384,0 ) ) -k1,14997:3078556,2439708:-34777008 +k1,15028:3078556,2439708:-34777008 ) ] -[1,14997:3078558,4812305:0,0,0 -(1,14997:3078558,49800853:0,16384,2228224 -k1,14997:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,14997:2537886,49800853:1179648,16384,0 +[1,15028:3078558,4812305:0,0,0 +(1,15028:3078558,49800853:0,16384,2228224 +k1,15028:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15028:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,14997:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15028:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,14997:3078558,4812305:0,0,0 -(1,14997:3078558,49800853:0,16384,2228224 -g1,14997:29030814,49800853 -g1,14997:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,14997:36151628,51504789:16384,1179648,0 +[1,15028:3078558,4812305:0,0,0 +(1,15028:3078558,49800853:0,16384,2228224 +g1,15028:29030814,49800853 +g1,15028:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15028:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,14997:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15028:37855564,49800853:1179648,16384,0 ) ) -k1,14997:3078556,49800853:-34777008 -) -] -g1,14997:6630773,4812305 -k1,14997:25712890,4812305:17886740 -g1,14997:29057847,4812305 -g1,14997:29873114,4812305 -) -) -] -[1,14997:6630773,45706769:25952256,40108032,0 -(1,14997:6630773,45706769:25952256,40108032,0 -(1,14997:6630773,45706769:0,0,0 -g1,14997:6630773,45706769 -) -[1,14997:6630773,45706769:25952256,40108032,0 -v1,14967:6630773,6254097:0,393216,0 -(1,14967:6630773,6562902:25952256,702021,196608 -g1,14967:6630773,6562902 -g1,14967:6630773,6562902 -g1,14967:6434165,6562902 -(1,14967:6434165,6562902:0,702021,196608 -r1,14967:32779637,6562902:26345472,898629,196608 -k1,14967:6434165,6562902:-26345472 -) -(1,14967:6434165,6562902:26345472,702021,196608 -[1,14967:6630773,6562902:25952256,505413,0 -(1,14965:6630773,6461715:25952256,404226,101187 -(1,14964:6630773,6461715:0,0,0 -g1,14964:6630773,6461715 -g1,14964:6630773,6461715 -g1,14964:6303093,6461715 -(1,14964:6303093,6461715:0,0,0 -) -g1,14964:6630773,6461715 -) -g1,14965:7895356,6461715 -g1,14965:8527648,6461715 -g1,14965:9792231,6461715 -g1,14965:10424523,6461715 -h1,14965:11056814,6461715:0,0,0 -k1,14965:32583030,6461715:21526216 -g1,14965:32583030,6461715 -) -] -) -g1,14967:32583029,6562902 -g1,14967:6630773,6562902 -g1,14967:6630773,6562902 -g1,14967:32583029,6562902 -g1,14967:32583029,6562902 -) -h1,14967:6630773,6759510:0,0,0 -(1,14971:6630773,8034884:25952256,505283,134348 -h1,14970:6630773,8034884:983040,0,0 -k1,14970:8738083,8034884:170721 -k1,14970:10106147,8034884:170721 -k1,14970:10632729,8034884:170722 -k1,14970:12070916,8034884:170721 -k1,14970:13433082,8034884:170721 -k1,14970:14590775,8034884:170721 -k1,14970:15780582,8034884:170722 -k1,14970:18025517,8034884:170721 -k1,14970:19590189,8034884:170721 -k1,14970:20116770,8034884:170721 -k1,14970:22163132,8034884:170722 -k1,14970:22961688,8034884:170721 -k1,14970:24509320,8034884:170721 -k1,14970:25871486,8034884:170721 -k1,14970:28244218,8034884:170722 -k1,14970:30285992,8034884:170721 -k1,14971:32583029,8034884:0 -) -(1,14971:6630773,8876372:25952256,513147,126483 -g1,14970:8600129,8876372 -g1,14970:10136292,8876372 -g1,14970:11083287,8876372 -g1,14970:13580864,8876372 -g1,14970:14431521,8876372 -g1,14970:16084339,8876372 -g1,14970:17302653,8876372 -g1,14970:19767462,8876372 -g1,14970:23567894,8876372 -g1,14970:24426415,8876372 -g1,14970:25644729,8876372 -g1,14970:26258801,8876372 -k1,14971:32583029,8876372:3073642 -g1,14971:32583029,8876372 -) -v1,14973:6630773,9976436:0,393216,0 -(1,14978:6630773,10957710:25952256,1374490,196608 -g1,14978:6630773,10957710 -g1,14978:6630773,10957710 -g1,14978:6434165,10957710 -(1,14978:6434165,10957710:0,1374490,196608 -r1,14978:32779637,10957710:26345472,1571098,196608 -k1,14978:6434165,10957710:-26345472 -) -(1,14978:6434165,10957710:26345472,1374490,196608 -[1,14978:6630773,10957710:25952256,1177882,0 -(1,14975:6630773,10184054:25952256,404226,101187 -(1,14974:6630773,10184054:0,0,0 -g1,14974:6630773,10184054 -g1,14974:6630773,10184054 -g1,14974:6303093,10184054 -(1,14974:6303093,10184054:0,0,0 -) -g1,14974:6630773,10184054 -) -g1,14975:8211502,10184054 -g1,14975:8843794,10184054 -g1,14975:10108377,10184054 -g1,14975:10740669,10184054 -g1,14975:12005252,10184054 -h1,14975:12321398,10184054:0,0,0 -k1,14975:32583030,10184054:20261632 -g1,14975:32583030,10184054 -) -(1,14976:6630773,10850232:25952256,410518,107478 -h1,14976:6630773,10850232:0,0,0 -g1,14976:6946919,10850232 -g1,14976:7263065,10850232 -g1,14976:7579211,10850232 -g1,14976:14534416,10850232 -g1,14976:15166708,10850232 -g1,14976:17063582,10850232 -g1,14976:18328165,10850232 -g1,14976:19276602,10850232 -g1,14976:20857331,10850232 -g1,14976:23702643,10850232 -g1,14976:27180246,10850232 -g1,14976:27812538,10850232 -h1,14976:29077122,10850232:0,0,0 -k1,14976:32583029,10850232:3505907 -g1,14976:32583029,10850232 -) -] -) -g1,14978:32583029,10957710 -g1,14978:6630773,10957710 -g1,14978:6630773,10957710 -g1,14978:32583029,10957710 -g1,14978:32583029,10957710 -) -h1,14978:6630773,11154318:0,0,0 -(1,14981:6630773,35011241:25952256,23357501,0 -k1,14981:7928465,35011241:1297692 -h1,14980:7928465,35011241:0,0,0 -(1,14980:7928465,35011241:23356872,23357501,0 -(1,14980:7928465,35011241:23357558,23357558,0 -(1,14980:7928465,35011241:23357558,23357558,0 -(1,14980:7928465,35011241:0,23357558,0 -(1,14980:7928465,35011241:0,37879808,0 -(1,14980:7928465,35011241:37879808,37879808,0 -) -k1,14980:7928465,35011241:-37879808 -) -) -g1,14980:31286023,35011241 -) -) -) -g1,14981:31285337,35011241 -k1,14981:32583029,35011241:1297692 -) -(1,14991:6630773,37818809:25952256,32768,229376 -(1,14991:6630773,37818809:0,32768,229376 -(1,14991:6630773,37818809:5505024,32768,229376 -r1,14991:12135797,37818809:5505024,262144,229376 -) -k1,14991:6630773,37818809:-5505024 -) -(1,14991:6630773,37818809:25952256,32768,0 -r1,14991:32583029,37818809:25952256,32768,0 -) -) -(1,14991:6630773,39423137:25952256,606339,161218 -(1,14991:6630773,39423137:2464678,582746,0 -g1,14991:6630773,39423137 -g1,14991:9095451,39423137 -) -g1,14991:11581363,39423137 -(1,14991:11581363,39423137:0,542918,138361 -r1,14991:14964351,39423137:3382988,681279,138361 -k1,14991:11581363,39423137:-3382988 -) -(1,14991:11581363,39423137:3382988,542918,138361 -k1,14991:11581363,39423137:3277 -h1,14991:14961074,39423137:0,493446,135084 -) -g1,14991:15209718,39423137 -k1,14991:32583029,39423137:12643709 -g1,14991:32583029,39423137 -) -(1,14995:6630773,40657841:25952256,513147,134348 -k1,14994:7433984,40657841:175376 -k1,14994:10218348,40657841:175376 -h1,14994:11761066,40657841:0,0,0 -k1,14994:11936441,40657841:175375 -k1,14994:13303262,40657841:175376 -h1,14994:14845980,40657841:0,0,0 -k1,14994:15021356,40657841:175376 -k1,14994:16065084,40657841:175376 -k1,14994:17675042,40657841:175375 -k1,14994:19542558,40657841:175376 -k1,14994:21842611,40657841:175376 -k1,14994:25009706,40657841:175376 -k1,14994:25844374,40657841:175376 -k1,14994:27038834,40657841:175375 -k1,14994:28306695,40657841:175376 -k1,14994:29149227,40657841:175376 -k1,14994:29739422,40657841:175352 -k1,14995:32583029,40657841:0 -) -(1,14995:6630773,41499329:25952256,513147,134348 -k1,14994:7932444,41499329:162000 -k1,14994:8710482,41499329:162000 -k1,14994:10653751,41499329:162000 -k1,14994:12012439,41499329:162001 -(1,14994:12012439,41499329:0,452978,115847 -r1,14994:14832688,41499329:2820249,568825,115847 -k1,14994:12012439,41499329:-2820249 -) -(1,14994:12012439,41499329:2820249,452978,115847 -k1,14994:12012439,41499329:3277 -h1,14994:14829411,41499329:0,411205,112570 -) -k1,14994:14994688,41499329:162000 -k1,14994:16939267,41499329:162000 -k1,14994:18292712,41499329:162000 -k1,14994:19842765,41499329:162000 -k1,14994:20620803,41499329:162000 -k1,14994:21197609,41499329:161963 -k1,14994:23789685,41499329:162001 -k1,14994:26312292,41499329:162000 -k1,14994:30281278,41499329:162000 -k1,14994:31094706,41499329:162000 -k1,14994:32583029,41499329:0 -) -(1,14995:6630773,42340817:25952256,505283,134348 -k1,14994:8571949,42340817:205783 -k1,14994:12548018,42340817:205783 -k1,14994:13369839,42340817:205783 -k1,14994:15356891,42340817:205783 -k1,14994:18497376,42340817:205783 -k1,14994:22187053,42340817:205783 -k1,14994:26364318,42340817:205783 -k1,14994:28812743,42340817:205783 -k1,14994:32583029,42340817:0 -) -(1,14995:6630773,43182305:25952256,505283,134348 -k1,14994:7974654,43182305:239599 -k1,14994:8962020,43182305:239600 -k1,14994:12842799,43182305:239599 -k1,14994:15612089,43182305:239600 -k1,14994:17360327,43182305:239599 -k1,14994:19683971,43182305:239599 -k1,14994:20455068,43182305:239600 -k1,14994:22646329,43182305:239599 -k1,14994:25610261,43182305:239600 -k1,14994:28812743,43182305:239599 -k1,14994:32583029,43182305:0 -) -(1,14995:6630773,44023793:25952256,513147,134348 -k1,14994:7843757,44023793:221424 -k1,14994:10140707,44023793:221425 -k1,14994:11760014,44023793:221424 -k1,14994:12597476,44023793:221424 -k1,14994:13837986,44023793:221425 -k1,14994:16428537,44023793:221424 -k1,14994:17309253,44023793:221424 -k1,14994:20228795,44023793:221425 -k1,14994:21830407,44023793:221424 -k1,14994:23043391,44023793:221424 -k1,14994:24550632,44023793:221425 -k1,14994:26285282,44023793:221424 -k1,14994:27122744,44023793:221424 -k1,14994:29046139,44023793:221425 -k1,14994:31966991,44023793:221424 -k1,14995:32583029,44023793:0 -) -(1,14995:6630773,44865281:25952256,505283,7863 -g1,14994:7244845,44865281 -k1,14995:32583030,44865281:23668328 -g1,14995:32583030,44865281 -) -(1,14997:6630773,45706769:25952256,513147,134348 -h1,14996:6630773,45706769:983040,0,0 -k1,14996:8766001,45706769:524353 -k1,14996:11623436,45706769:524353 -k1,14996:12605887,45706769:524354 -k1,14996:13661737,45706769:524353 -k1,14996:16816050,45706769:524353 -k1,14996:17991831,45706769:524353 -k1,14996:20445565,45706769:524354 -k1,14996:24547529,45706769:524353 -k1,14996:27969229,45706769:524353 -k1,14996:29887533,45706769:524353 -k1,14997:32583029,45706769:0 -) -] -(1,14997:32583029,45706769:0,0,0 -g1,14997:32583029,45706769 -) -) -] -(1,14997:6630773,47279633:25952256,0,0 -h1,14997:6630773,47279633:25952256,0,0 -) -] -h1,14997:4262630,4025873:0,0,0 -] -!11813 -}291 -Input:2277:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2278:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2279:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2280:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2281:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2282:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2283:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2284:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2285:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 -{292 -[1,15042:4262630,47279633:28320399,43253760,0 -(1,15042:4262630,4025873:0,0,0 -[1,15042:-473657,4025873:25952256,0,0 -(1,15042:-473657,-710414:25952256,0,0 -h1,15042:-473657,-710414:0,0,0 -(1,15042:-473657,-710414:0,0,0 -(1,15042:-473657,-710414:0,0,0 -g1,15042:-473657,-710414 -(1,15042:-473657,-710414:65781,0,65781 -g1,15042:-407876,-710414 -[1,15042:-407876,-644633:0,0,0 +k1,15028:3078556,49800853:-34777008 +) +] +g1,15028:6630773,4812305 +g1,15028:6630773,4812305 +g1,15028:8592265,4812305 +g1,15028:11642310,4812305 +g1,15028:15396212,4812305 +k1,15028:31387652,4812305:15991440 +) +) +] +[1,15028:6630773,45706769:25952256,40108032,0 +(1,15028:6630773,45706769:25952256,40108032,0 +(1,15028:6630773,45706769:0,0,0 +g1,15028:6630773,45706769 +) +[1,15028:6630773,45706769:25952256,40108032,0 +v1,14998:6630773,6254097:0,393216,0 +(1,14998:6630773,6562902:25952256,702021,196608 +g1,14998:6630773,6562902 +g1,14998:6630773,6562902 +g1,14998:6434165,6562902 +(1,14998:6434165,6562902:0,702021,196608 +r1,14998:32779637,6562902:26345472,898629,196608 +k1,14998:6434165,6562902:-26345472 +) +(1,14998:6434165,6562902:26345472,702021,196608 +[1,14998:6630773,6562902:25952256,505413,0 +(1,14996:6630773,6461715:25952256,404226,101187 +(1,14995:6630773,6461715:0,0,0 +g1,14995:6630773,6461715 +g1,14995:6630773,6461715 +g1,14995:6303093,6461715 +(1,14995:6303093,6461715:0,0,0 +) +g1,14995:6630773,6461715 +) +g1,14996:7895356,6461715 +g1,14996:8527648,6461715 +g1,14996:9792231,6461715 +g1,14996:10424523,6461715 +h1,14996:11056814,6461715:0,0,0 +k1,14996:32583030,6461715:21526216 +g1,14996:32583030,6461715 +) +] +) +g1,14998:32583029,6562902 +g1,14998:6630773,6562902 +g1,14998:6630773,6562902 +g1,14998:32583029,6562902 +g1,14998:32583029,6562902 +) +h1,14998:6630773,6759510:0,0,0 +(1,15002:6630773,8034884:25952256,505283,134348 +h1,15001:6630773,8034884:983040,0,0 +k1,15001:8754140,8034884:186778 +k1,15001:10138260,8034884:186777 +k1,15001:10680898,8034884:186778 +k1,15001:12135141,8034884:186777 +k1,15001:13513364,8034884:186778 +k1,15001:14687113,8034884:186777 +k1,15001:15892976,8034884:186778 +k1,15001:18153967,8034884:186777 +k1,15001:19734696,8034884:186778 +k1,15001:20277334,8034884:186778 +k1,15001:22339751,8034884:186777 +k1,15001:23154364,8034884:186778 +k1,15001:24718052,8034884:186777 +k1,15001:26096275,8034884:186778 +k1,15001:28485062,8034884:186777 +k1,15001:30542893,8034884:186778 +k1,15002:32583029,8034884:0 +) +(1,15002:6630773,8876372:25952256,513147,126483 +g1,15001:8857031,8876372 +g1,15001:10393194,8876372 +g1,15001:11340189,8876372 +g1,15001:13837766,8876372 +g1,15001:14688423,8876372 +g1,15001:16341241,8876372 +g1,15001:17559555,8876372 +g1,15001:20024364,8876372 +g1,15001:23824796,8876372 +g1,15001:24683317,8876372 +g1,15001:25901631,8876372 +g1,15001:26515703,8876372 +k1,15002:32583029,8876372:2816740 +g1,15002:32583029,8876372 +) +v1,15004:6630773,9976436:0,393216,0 +(1,15009:6630773,10957710:25952256,1374490,196608 +g1,15009:6630773,10957710 +g1,15009:6630773,10957710 +g1,15009:6434165,10957710 +(1,15009:6434165,10957710:0,1374490,196608 +r1,15009:32779637,10957710:26345472,1571098,196608 +k1,15009:6434165,10957710:-26345472 +) +(1,15009:6434165,10957710:26345472,1374490,196608 +[1,15009:6630773,10957710:25952256,1177882,0 +(1,15006:6630773,10184054:25952256,404226,101187 +(1,15005:6630773,10184054:0,0,0 +g1,15005:6630773,10184054 +g1,15005:6630773,10184054 +g1,15005:6303093,10184054 +(1,15005:6303093,10184054:0,0,0 +) +g1,15005:6630773,10184054 +) +g1,15006:8211502,10184054 +g1,15006:8843794,10184054 +g1,15006:10108377,10184054 +g1,15006:10740669,10184054 +g1,15006:12005252,10184054 +h1,15006:12321398,10184054:0,0,0 +k1,15006:32583030,10184054:20261632 +g1,15006:32583030,10184054 +) +(1,15007:6630773,10850232:25952256,410518,107478 +h1,15007:6630773,10850232:0,0,0 +g1,15007:6946919,10850232 +g1,15007:7263065,10850232 +g1,15007:7579211,10850232 +g1,15007:14534416,10850232 +g1,15007:15166708,10850232 +g1,15007:17063582,10850232 +g1,15007:18328165,10850232 +g1,15007:19276602,10850232 +g1,15007:20857331,10850232 +g1,15007:24334934,10850232 +g1,15007:27812537,10850232 +g1,15007:28444829,10850232 +h1,15007:29709413,10850232:0,0,0 +k1,15007:32583029,10850232:2873616 +g1,15007:32583029,10850232 +) +] +) +g1,15009:32583029,10957710 +g1,15009:6630773,10957710 +g1,15009:6630773,10957710 +g1,15009:32583029,10957710 +g1,15009:32583029,10957710 +) +h1,15009:6630773,11154318:0,0,0 +(1,15012:6630773,35011241:25952256,23357501,0 +k1,15012:7928465,35011241:1297692 +h1,15011:7928465,35011241:0,0,0 +(1,15011:7928465,35011241:23356872,23357501,0 +(1,15011:7928465,35011241:23357558,23357558,0 +(1,15011:7928465,35011241:23357558,23357558,0 +(1,15011:7928465,35011241:0,23357558,0 +(1,15011:7928465,35011241:0,37879808,0 +(1,15011:7928465,35011241:37879808,37879808,0 +) +k1,15011:7928465,35011241:-37879808 +) +) +g1,15011:31286023,35011241 +) +) +) +g1,15012:31285337,35011241 +k1,15012:32583029,35011241:1297692 +) +(1,15022:6630773,37818809:25952256,32768,229376 +(1,15022:6630773,37818809:0,32768,229376 +(1,15022:6630773,37818809:5505024,32768,229376 +r1,15022:12135797,37818809:5505024,262144,229376 +) +k1,15022:6630773,37818809:-5505024 +) +(1,15022:6630773,37818809:25952256,32768,0 +r1,15022:32583029,37818809:25952256,32768,0 +) +) +(1,15022:6630773,39423137:25952256,606339,161218 +(1,15022:6630773,39423137:2464678,582746,0 +g1,15022:6630773,39423137 +g1,15022:9095451,39423137 +) +g1,15022:11581363,39423137 +(1,15022:11581363,39423137:0,542918,138361 +r1,15022:14964351,39423137:3382988,681279,138361 +k1,15022:11581363,39423137:-3382988 +) +(1,15022:11581363,39423137:3382988,542918,138361 +k1,15022:11581363,39423137:3277 +h1,15022:14961074,39423137:0,493446,135084 +) +g1,15022:15209718,39423137 +k1,15022:32583029,39423137:12643709 +g1,15022:32583029,39423137 +) +(1,15026:6630773,40657841:25952256,513147,134348 +k1,15025:7469416,40657841:210808 +k1,15025:10289212,40657841:210808 +h1,15025:11831930,40657841:0,0,0 +k1,15025:12042738,40657841:210808 +k1,15025:13444991,40657841:210808 +h1,15025:14987709,40657841:0,0,0 +k1,15025:15198518,40657841:210809 +k1,15025:16277678,40657841:210808 +k1,15025:17923069,40657841:210808 +k1,15025:19826017,40657841:210808 +k1,15025:22161502,40657841:210808 +k1,15025:25364029,40657841:210808 +k1,15025:26234129,40657841:210808 +k1,15025:27464022,40657841:210808 +k1,15025:28767315,40657841:210808 +k1,15025:29645280,40657841:210809 +k1,15025:30270919,40657841:210796 +k1,15026:32583029,40657841:0 +) +(1,15026:6630773,41499329:25952256,513147,134348 +k1,15025:8550006,41499329:248065 +k1,15025:9414108,41499329:248064 +k1,15025:11443442,41499329:248065 +k1,15025:12888193,41499329:248064 +(1,15025:12888193,41499329:0,452978,115847 +r1,15025:15708442,41499329:2820249,568825,115847 +k1,15025:12888193,41499329:-2820249 +) +(1,15025:12888193,41499329:2820249,452978,115847 +k1,15025:12888193,41499329:3277 +h1,15025:15705165,41499329:0,411205,112570 +) +k1,15025:15956507,41499329:248065 +k1,15025:17987151,41499329:248065 +k1,15025:19426660,41499329:248064 +k1,15025:21062778,41499329:248065 +k1,15025:21926881,41499329:248065 +k1,15025:22589739,41499329:248015 +k1,15025:25267879,41499329:248065 +k1,15025:27876550,41499329:248064 +k1,15025:31931601,41499329:248065 +k1,15025:32583029,41499329:0 +) +(1,15026:6630773,42340817:25952256,505283,134348 +k1,15025:8298665,42340817:179569 +k1,15025:10213626,42340817:179568 +k1,15025:14163481,42340817:179569 +k1,15025:14959087,42340817:179568 +k1,15025:16919925,42340817:179569 +k1,15025:20034195,42340817:179568 +k1,15025:23697658,42340817:179569 +k1,15025:27848708,42340817:179568 +k1,15025:30270919,42340817:179569 +k1,15026:32583029,42340817:0 +) +(1,15026:6630773,43182305:25952256,505283,134348 +k1,15025:8500396,43182305:198455 +k1,15025:9803132,43182305:198454 +k1,15025:10749353,43182305:198455 +k1,15025:14588988,43182305:198455 +k1,15025:17317133,43182305:198455 +k1,15025:19024226,43182305:198454 +k1,15025:21306726,43182305:198455 +k1,15025:22036678,43182305:198455 +k1,15025:24186795,43182305:198455 +k1,15025:27109581,43182305:198454 +k1,15025:30270919,43182305:198455 +k1,15026:32583029,43182305:0 +) +(1,15026:6630773,44023793:25952256,513147,134348 +k1,15025:8453023,44023793:151082 +k1,15025:9595666,44023793:151083 +k1,15025:11822273,44023793:151082 +k1,15025:13371238,44023793:151082 +k1,15025:14138359,44023793:151083 +k1,15025:15308526,44023793:151082 +k1,15025:17828735,44023793:151082 +k1,15025:18639110,44023793:151083 +k1,15025:21488309,44023793:151082 +k1,15025:23019579,44023793:151082 +k1,15025:24162222,44023793:151083 +k1,15025:25599120,44023793:151082 +k1,15025:27263428,44023793:151082 +k1,15025:28030549,44023793:151083 +k1,15025:29883601,44023793:151082 +k1,15025:32583029,44023793:0 +) +(1,15026:6630773,44865281:25952256,505283,7863 +g1,15025:7446040,44865281 +g1,15025:8060112,44865281 +k1,15026:32583029,44865281:22853060 +g1,15026:32583029,44865281 +) +(1,15028:6630773,45706769:25952256,513147,134348 +h1,15027:6630773,45706769:983040,0,0 +k1,15027:8766001,45706769:524353 +k1,15027:11623436,45706769:524353 +k1,15027:12605887,45706769:524354 +k1,15027:13661737,45706769:524353 +k1,15027:16816050,45706769:524353 +k1,15027:17991831,45706769:524353 +k1,15027:20445565,45706769:524354 +k1,15027:24547529,45706769:524353 +k1,15027:27969229,45706769:524353 +k1,15027:29887533,45706769:524353 +k1,15028:32583029,45706769:0 +) +] +(1,15028:32583029,45706769:0,0,0 +g1,15028:32583029,45706769 +) +) +] +(1,15028:6630773,47279633:25952256,0,0 +h1,15028:6630773,47279633:25952256,0,0 +) +] +h1,15028:4262630,4025873:0,0,0 +] +!11922 +}292 +Input:2274:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2275:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2276:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2277:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2278:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2279:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2280:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2281:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2282:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 +{293 +[1,15073:4262630,47279633:28320399,43253760,0 +(1,15073:4262630,4025873:0,0,0 +[1,15073:-473657,4025873:25952256,0,0 +(1,15073:-473657,-710414:25952256,0,0 +h1,15073:-473657,-710414:0,0,0 +(1,15073:-473657,-710414:0,0,0 +(1,15073:-473657,-710414:0,0,0 +g1,15073:-473657,-710414 +(1,15073:-473657,-710414:65781,0,65781 +g1,15073:-407876,-710414 +[1,15073:-407876,-644633:0,0,0 ] ) -k1,15042:-473657,-710414:-65781 +k1,15073:-473657,-710414:-65781 ) ) -k1,15042:25478599,-710414:25952256 -g1,15042:25478599,-710414 +k1,15073:25478599,-710414:25952256 +g1,15073:25478599,-710414 ) ] ) -[1,15042:6630773,47279633:25952256,43253760,0 -[1,15042:6630773,4812305:25952256,786432,0 -(1,15042:6630773,4812305:25952256,505283,134348 -(1,15042:6630773,4812305:25952256,505283,134348 -g1,15042:3078558,4812305 -[1,15042:3078558,4812305:0,0,0 -(1,15042:3078558,2439708:0,1703936,0 -k1,15042:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15042:2537886,2439708:1179648,16384,0 +[1,15073:6630773,47279633:25952256,43253760,0 +[1,15073:6630773,4812305:25952256,786432,0 +(1,15073:6630773,4812305:25952256,513147,134348 +(1,15073:6630773,4812305:25952256,513147,134348 +g1,15073:3078558,4812305 +[1,15073:3078558,4812305:0,0,0 +(1,15073:3078558,2439708:0,1703936,0 +k1,15073:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15073:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15042:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15073:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15042:3078558,4812305:0,0,0 -(1,15042:3078558,2439708:0,1703936,0 -g1,15042:29030814,2439708 -g1,15042:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15042:36151628,1915420:16384,1179648,0 +[1,15073:3078558,4812305:0,0,0 +(1,15073:3078558,2439708:0,1703936,0 +g1,15073:29030814,2439708 +g1,15073:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15073:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15042:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15073:37855564,2439708:1179648,16384,0 ) ) -k1,15042:3078556,2439708:-34777008 +k1,15073:3078556,2439708:-34777008 ) ] -[1,15042:3078558,4812305:0,0,0 -(1,15042:3078558,49800853:0,16384,2228224 -k1,15042:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15042:2537886,49800853:1179648,16384,0 +[1,15073:3078558,4812305:0,0,0 +(1,15073:3078558,49800853:0,16384,2228224 +k1,15073:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15073:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15042:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15073:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,15042:3078558,4812305:0,0,0 -(1,15042:3078558,49800853:0,16384,2228224 -g1,15042:29030814,49800853 -g1,15042:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15042:36151628,51504789:16384,1179648,0 +[1,15073:3078558,4812305:0,0,0 +(1,15073:3078558,49800853:0,16384,2228224 +g1,15073:29030814,49800853 +g1,15073:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15073:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15042:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15073:37855564,49800853:1179648,16384,0 ) ) -k1,15042:3078556,49800853:-34777008 +k1,15073:3078556,49800853:-34777008 ) ] -g1,15042:6630773,4812305 -g1,15042:6630773,4812305 -g1,15042:8592265,4812305 -g1,15042:11642310,4812305 -g1,15042:15396212,4812305 -k1,15042:31387652,4812305:15991440 -) -) -] -[1,15042:6630773,45706769:25952256,40108032,0 -(1,15042:6630773,45706769:25952256,40108032,0 -(1,15042:6630773,45706769:0,0,0 -g1,15042:6630773,45706769 -) -[1,15042:6630773,45706769:25952256,40108032,0 -(1,14997:6630773,6254097:25952256,513147,134348 -(1,14996:6630773,6254097:0,452978,115847 -r1,14996:10857869,6254097:4227096,568825,115847 -k1,14996:6630773,6254097:-4227096 -) -(1,14996:6630773,6254097:4227096,452978,115847 -k1,14996:6630773,6254097:3277 -h1,14996:10854592,6254097:0,411205,112570 -) -k1,14996:11278457,6254097:246918 -k1,14996:12208259,6254097:246917 -k1,14996:13216705,6254097:246918 -k1,14996:15849134,6254097:246918 -k1,14996:16451911,6254097:246917 -k1,14996:19673508,6254097:246918 -k1,14996:21959906,6254097:246918 -k1,14996:22834659,6254097:246918 -k1,14996:24100661,6254097:246917 -k1,14996:25714660,6254097:246918 -k1,14996:26620870,6254097:246918 -k1,14996:29696320,6254097:246917 -k1,14996:30890889,6254097:246918 -k1,14996:32583029,6254097:0 -) -(1,14997:6630773,7095585:25952256,505283,126483 -k1,14996:8125070,7095585:217000 -k1,14996:11384907,7095585:217000 -k1,14996:13489999,7095585:217000 -k1,14996:16057120,7095585:217000 -k1,14996:17668071,7095585:217000 -(1,14996:17668071,7095585:0,414482,122846 -r1,14996:20840031,7095585:3171960,537328,122846 -k1,14996:17668071,7095585:-3171960 -) -(1,14996:17668071,7095585:3171960,414482,122846 -k1,14996:17668071,7095585:3277 -h1,14996:20836754,7095585:0,411205,112570 -) -k1,14996:21057031,7095585:217000 -k1,14996:22465476,7095585:217000 -(1,14996:22465476,7095585:0,452978,122846 -r1,14996:25989148,7095585:3523672,575824,122846 -k1,14996:22465476,7095585:-3523672 -) -(1,14996:22465476,7095585:3523672,452978,122846 -k1,14996:22465476,7095585:3277 -h1,14996:25985871,7095585:0,411205,112570 -) -k1,14996:26379818,7095585:217000 -k1,14996:27788263,7095585:217000 -k1,14996:29024348,7095585:217000 -k1,14996:30738846,7095585:217000 -k1,14996:32583029,7095585:0 -) -(1,14997:6630773,7937073:25952256,513147,134348 -k1,14996:7458559,7937073:168494 -k1,14996:9515801,7937073:168494 -k1,14996:10703380,7937073:168494 -k1,14996:13257385,7937073:168494 -k1,14996:13957376,7937073:168494 -k1,14996:16584125,7937073:168494 -k1,14996:17944065,7937073:168495 -k1,14996:20484307,7937073:168494 -k1,14996:21304229,7937073:168494 -k1,14996:24058118,7937073:168494 -k1,14996:27201291,7937073:168494 -k1,14996:30211426,7937073:168494 -k1,14996:30995958,7937073:168494 -(1,14996:30995958,7937073:0,452978,115847 -r1,14996:32409359,7937073:1413401,568825,115847 -k1,14996:30995958,7937073:-1413401 -) -(1,14996:30995958,7937073:1413401,452978,115847 -k1,14996:30995958,7937073:3277 -h1,14996:32406082,7937073:0,411205,112570 -) -k1,14996:32583029,7937073:0 -) -(1,14997:6630773,8778561:25952256,513147,134348 -k1,14996:7459386,8778561:200778 -k1,14996:10465106,8778561:200779 -k1,14996:11613535,8778561:200778 -k1,14996:13585751,8778561:200778 -k1,14996:16703536,8778561:200778 -k1,14996:19785933,8778561:200779 -k1,14996:23469950,8778561:200778 -k1,14996:24782219,8778561:200778 -k1,14996:27983891,8778561:200778 -k1,14996:29469176,8778561:200779 -k1,14996:30201451,8778561:200778 -k1,14996:32583029,8778561:0 -) -(1,14997:6630773,9620049:25952256,505283,126483 -k1,14996:8834546,9620049:193784 -(1,14996:8834546,9620049:0,452978,115847 -r1,14996:10951371,9620049:2116825,568825,115847 -k1,14996:8834546,9620049:-2116825 -) -(1,14996:8834546,9620049:2116825,452978,115847 -k1,14996:8834546,9620049:3277 -h1,14996:10948094,9620049:0,411205,112570 -) -k1,14996:11352249,9620049:193784 -k1,14996:12565118,9620049:193784 -k1,14996:16529188,9620049:193784 -k1,14996:18198187,9620049:193784 -k1,14996:19043399,9620049:193784 -k1,14996:19984948,9620049:193783 -k1,14996:22601598,9620049:193784 -k1,14996:25866399,9620049:193784 -k1,14996:26743068,9620049:193784 -k1,14996:28748267,9620049:193784 -k1,14996:29628213,9620049:193784 -k1,14996:31315563,9620049:193784 -k1,14996:32583029,9620049:0 -) -(1,14997:6630773,10461537:25952256,505283,134348 -g1,14996:7185862,10461537 -g1,14996:10070101,10461537 -g1,14996:11460775,10461537 -g1,14996:12679089,10461537 -g1,14996:15389658,10461537 -g1,14996:17794174,10461537 -g1,14996:18679565,10461537 -g1,14996:19649497,10461537 -k1,14997:32583029,10461537:9687534 -g1,14997:32583029,10461537 -) -(1,14999:6630773,11303025:25952256,505283,134348 -h1,14998:6630773,11303025:983040,0,0 -k1,14998:9623123,11303025:226075 -k1,14998:12373645,11303025:226075 -k1,14998:16370006,11303025:226075 -k1,14998:18331474,11303025:226075 -(1,14998:18331474,11303025:0,452978,122846 -r1,14998:22206858,11303025:3875384,575824,122846 -k1,14998:18331474,11303025:-3875384 -) -(1,14998:18331474,11303025:3875384,452978,122846 -k1,14998:18331474,11303025:3277 -h1,14998:22203581,11303025:0,411205,112570 -) -k1,14998:22606604,11303025:226076 -k1,14998:24117185,11303025:226075 -k1,14998:27317939,11303025:226075 -k1,14998:29740125,11303025:226075 -k1,14998:30957760,11303025:226075 -k1,14998:31835263,11303025:226075 -k1,14998:32583029,11303025:0 -) -(1,14999:6630773,12144513:25952256,513147,134348 -k1,14998:8985933,12144513:191817 -k1,14998:9709247,12144513:191817 -k1,14998:12550685,12144513:191817 -k1,14998:14136452,12144513:191816 -(1,14998:14136452,12144513:0,414482,115847 -r1,14998:18363548,12144513:4227096,530329,115847 -k1,14998:14136452,12144513:-4227096 -) -(1,14998:14136452,12144513:4227096,414482,115847 -g1,14998:16250000,12144513 -g1,14998:16953424,12144513 -h1,14998:18360271,12144513:0,411205,112570 -) -k1,14998:18729035,12144513:191817 -k1,14998:19548687,12144513:191817 -k1,14998:20759589,12144513:191817 -k1,14998:22318487,12144513:191817 -k1,14998:23169596,12144513:191817 -k1,14998:25423830,12144513:191816 -k1,14998:27113145,12144513:191817 -k1,14998:29322816,12144513:191817 -k1,14998:31900144,12144513:191817 -k1,14998:32583029,12144513:0 -) -(1,14999:6630773,12986001:25952256,513147,126483 -k1,14998:7921317,12986001:224273 -k1,14998:10847640,12986001:224274 -k1,14998:11881283,12986001:224273 -k1,14998:13124642,12986001:224274 -k1,14998:15749499,12986001:224273 -k1,14998:18669269,12986001:224274 -k1,14998:20580439,12986001:224273 -k1,14998:21707143,12986001:224273 -k1,14998:25158410,12986001:224274 -k1,14998:26948993,12986001:224273 -k1,14998:27704764,12986001:224274 -k1,14998:28545075,12986001:224273 -k1,14998:29972590,12986001:224274 -k1,14998:31563944,12986001:224273 -k1,14998:32583029,12986001:0 -) -(1,14999:6630773,13827489:25952256,513147,134348 -g1,14998:10133017,13827489 -g1,14998:10991538,13827489 -g1,14998:14545555,13827489 -g1,14998:16479522,13827489 -g1,14998:19653430,13827489 -g1,14998:22048770,13827489 -g1,14998:23641950,13827489 -g1,14998:25851824,13827489 -g1,14998:27818559,13827489 -g1,14998:29585409,13827489 -(1,14998:29585409,13827489:0,452978,115847 -r1,14998:30998810,13827489:1413401,568825,115847 -k1,14998:29585409,13827489:-1413401 -) -(1,14998:29585409,13827489:1413401,452978,115847 -k1,14998:29585409,13827489:3277 -h1,14998:30995533,13827489:0,411205,112570 -) -k1,14999:32583029,13827489:1410549 -g1,14999:32583029,13827489 -) -(1,15001:6630773,14668977:25952256,513147,134348 -h1,15000:6630773,14668977:983040,0,0 -k1,15000:9020434,14668977:209934 -k1,15000:10832067,14668977:209933 -k1,15000:13525816,14668977:209934 -k1,15000:15397742,14668977:209933 -k1,15000:16259104,14668977:209934 -k1,15000:19728143,14668977:209934 -k1,15000:21636114,14668977:209933 -k1,15000:24103763,14668977:209934 -k1,15000:28083982,14668977:209933 -k1,15000:28825413,14668977:209934 -k1,15000:30365727,14668977:209933 -k1,15000:31227089,14668977:209934 -k1,15001:32583029,14668977:0 -) -(1,15001:6630773,15510465:25952256,513147,126483 -k1,15000:8155407,15510465:171971 -k1,15000:9346463,15510465:171971 -k1,15000:12280777,15510465:171971 -k1,15000:14278581,15510465:171971 -k1,15000:14938113,15510465:171944 -k1,15000:16541390,15510465:171971 -(1,15000:16748484,15510465:0,414482,115847 -r1,15000:17106750,15510465:358266,530329,115847 -k1,15000:16748484,15510465:-358266 -) -(1,15000:16748484,15510465:358266,414482,115847 -k1,15000:16748484,15510465:3277 -h1,15000:17103473,15510465:0,411205,112570 -) -k1,15000:17485815,15510465:171971 -k1,15000:19185430,15510465:171971 -k1,15000:21145223,15510465:171971 -k1,15000:21933232,15510465:171971 -k1,15000:24740406,15510465:171971 -k1,15000:27727804,15510465:171971 -k1,15000:30534322,15510465:171971 -(1,15000:30741416,15510465:0,414482,115847 -r1,15000:31099682,15510465:358266,530329,115847 -k1,15000:30741416,15510465:-358266 -) -(1,15000:30741416,15510465:358266,414482,115847 -k1,15000:30741416,15510465:3277 -h1,15000:31096405,15510465:0,411205,112570 -) -k1,15000:31478747,15510465:171971 -k1,15000:32583029,15510465:0 -) -(1,15001:6630773,16351953:25952256,505283,134348 -k1,15000:7632516,16351953:253977 -k1,15000:9172309,16351953:253977 -k1,15000:10939512,16351953:253977 -k1,15000:11879651,16351953:253977 -k1,15000:12489488,16351953:253977 -k1,15000:16095632,16351953:253977 -k1,15000:17541055,16351953:253978 -k1,15000:18326529,16351953:253977 -k1,15000:20878854,16351953:253977 -k1,15000:23420038,16351953:253977 -k1,15000:25372053,16351953:253977 -k1,15000:27945349,16351953:253977 -k1,15000:29593277,16351953:253977 -k1,15000:32583029,16351953:0 -) -(1,15001:6630773,17193441:25952256,513147,134348 -k1,15000:8592615,17193441:170088 -k1,15000:10550524,17193441:170087 -k1,15000:11252109,17193441:170088 -k1,15000:13871933,17193441:170088 -k1,15000:14658059,17193441:170088 -k1,15000:16520286,17193441:170087 -k1,15000:20020914,17193441:170088 -k1,15000:21263171,17193441:170088 -k1,15000:22499530,17193441:170088 -k1,15000:23285655,17193441:170087 -k1,15000:25661685,17193441:170088 -k1,15000:26660803,17193441:170088 -k1,15000:29168560,17193441:170088 -k1,15000:30527470,17193441:170087 -k1,15000:31356850,17193441:170088 -k1,15000:32583029,17193441:0 -) -(1,15001:6630773,18034929:25952256,513147,134348 -k1,15000:8848137,18034929:207375 -k1,15000:9826214,18034929:207374 -k1,15000:13473574,18034929:207375 -k1,15000:14549300,18034929:207374 -k1,15000:16286941,18034929:207375 -k1,15000:17145743,18034929:207374 -k1,15000:18445603,18034929:207375 -k1,15000:21746933,18034929:207375 -k1,15000:24115029,18034929:207374 -k1,15000:25364426,18034929:207375 -k1,15000:25927660,18034929:207374 -k1,15000:27523743,18034929:207375 -k1,15000:28724643,18034929:207374 -k1,15000:29591310,18034929:207375 -k1,15000:32583029,18034929:0 -) -(1,15001:6630773,18876417:25952256,505283,126483 -k1,15000:8269906,18876417:163918 -k1,15000:8789685,18876417:163919 -k1,15000:10340345,18876417:163918 -k1,15000:11117025,18876417:163918 -k1,15000:12300029,18876417:163919 -k1,15000:14622703,18876417:163918 -k1,15000:15978067,18876417:163919 -k1,15000:17638172,18876417:163918 -k1,15000:20865243,18876417:163918 -k1,15000:21790690,18876417:163919 -(1,15000:21790690,18876417:0,452978,115847 -r1,15000:26721210,18876417:4930520,568825,115847 -k1,15000:21790690,18876417:-4930520 -) -(1,15000:21790690,18876417:4930520,452978,115847 -k1,15000:21790690,18876417:3277 -h1,15000:26717933,18876417:0,411205,112570 -) -k1,15000:26885128,18876417:163918 -k1,15000:27661808,18876417:163918 -k1,15000:28844812,18876417:163919 -k1,15000:29423538,18876417:163883 -k1,15000:32583029,18876417:0 -) -(1,15001:6630773,19717905:25952256,426639,126483 -k1,15001:32583029,19717905:23377346 -g1,15001:32583029,19717905 -) -(1,15004:6630773,20559393:25952256,513147,126483 -h1,15002:6630773,20559393:983040,0,0 -k1,15002:8861568,20559393:294206 -k1,15002:10288236,20559393:294206 -k1,15002:11674927,20559393:294206 -k1,15002:12324994,20559393:294207 -k1,15002:14735358,20559393:294206 -k1,15002:15688856,20559393:294206 -k1,15002:18669383,20559393:294206 -k1,15002:21955308,20559393:294206 -k1,15002:22900942,20559393:294206 -k1,15002:24855831,20559393:294207 -k1,15002:26480418,20559393:294206 -k1,15002:27426052,20559393:294206 -k1,15002:28812743,20559393:294206 -k1,15002:32583029,20559393:0 -) -(1,15004:6630773,21400881:25952256,513147,134348 -k1,15002:7868950,21400881:290526 -k1,15002:10921820,21400881:290527 -k1,15002:14081512,21400881:290526 -k1,15002:15031330,21400881:290526 -k1,15002:15677716,21400881:290526 -k1,15002:17419210,21400881:290527 -k1,15003:18663285,21400881:290526 -k1,15003:20259944,21400881:290526 -k1,15003:22479851,21400881:290527 -k1,15003:23126237,21400881:290526 -k1,15003:24806126,21400881:290526 -k1,15003:27146618,21400881:290526 -k1,15003:29172538,21400881:290527 -(1,15003:29172538,21400881:0,452978,115847 -r1,15003:31641075,21400881:2468537,568825,115847 -k1,15003:29172538,21400881:-2468537 -) -(1,15003:29172538,21400881:2468537,452978,115847 -k1,15003:29172538,21400881:3277 -h1,15003:31637798,21400881:0,411205,112570 -) -k1,15003:31931601,21400881:290526 -k1,15003:32583029,21400881:0 -) -(1,15004:6630773,22242369:25952256,513147,134348 -k1,15003:9738872,22242369:171431 -k1,15003:10266163,22242369:171431 -k1,15003:12415471,22242369:171431 -k1,15003:13246195,22242369:171432 -k1,15003:17162353,22242369:171431 -$1,15003:17162353,22242369 -$1,15003:17670257,22242369 -k1,15003:17841688,22242369:171431 -k1,15003:20023764,22242369:171431 -k1,15003:20881357,22242369:171431 -k1,15003:24027467,22242369:171431 -k1,15003:26395010,22242369:171432 -k1,15003:29078436,22242369:171431 -k1,15003:30197518,22242369:171431 -k1,15003:32583029,22242369:0 -) -(1,15004:6630773,23083857:25952256,473825,126483 -g1,15003:8097468,23083857 -k1,15004:32583029,23083857:20541604 -g1,15004:32583029,23083857 -) -v1,15006:6630773,24274323:0,393216,0 -(1,15014:6630773,27254131:25952256,3373024,196608 -g1,15014:6630773,27254131 -g1,15014:6630773,27254131 -g1,15014:6434165,27254131 -(1,15014:6434165,27254131:0,3373024,196608 -r1,15014:32779637,27254131:26345472,3569632,196608 -k1,15014:6434165,27254131:-26345472 -) -(1,15014:6434165,27254131:26345472,3373024,196608 -[1,15014:6630773,27254131:25952256,3176416,0 -(1,15008:6630773,24481941:25952256,404226,107478 -(1,15007:6630773,24481941:0,0,0 -g1,15007:6630773,24481941 -g1,15007:6630773,24481941 -g1,15007:6303093,24481941 -(1,15007:6303093,24481941:0,0,0 -) -g1,15007:6630773,24481941 -) -k1,15008:6630773,24481941:0 -g1,15008:11689104,24481941 -g1,15008:12321396,24481941 -g1,15008:13902125,24481941 -g1,15008:15482854,24481941 -g1,15008:16431291,24481941 -g1,15008:18644311,24481941 -g1,15008:21489622,24481941 -g1,15008:22754205,24481941 -g1,15008:24334934,24481941 -k1,15008:24334934,24481941:11534 -h1,15008:25611051,24481941:0,0,0 -k1,15008:32583029,24481941:6971978 -g1,15008:32583029,24481941 -) -(1,15009:6630773,25148119:25952256,404226,101187 -h1,15009:6630773,25148119:0,0,0 -g1,15009:9159939,25148119 -k1,15009:9159939,25148119:0 -h1,15009:9792231,25148119:0,0,0 -k1,15009:32583029,25148119:22790798 -g1,15009:32583029,25148119 -) -(1,15010:6630773,25814297:25952256,410518,82312 -h1,15010:6630773,25814297:0,0,0 -g1,15010:6946919,25814297 -g1,15010:7263065,25814297 -g1,15010:11372960,25814297 -g1,15010:12005252,25814297 -k1,15010:12005252,25814297:0 -h1,15010:13269836,25814297:0,0,0 -k1,15010:32583028,25814297:19313192 -g1,15010:32583028,25814297 -) -(1,15011:6630773,26480475:25952256,404226,101187 -h1,15011:6630773,26480475:0,0,0 -g1,15011:6946919,26480475 -g1,15011:7263065,26480475 -g1,15011:7579211,26480475 -g1,15011:7895357,26480475 -g1,15011:8211503,26480475 -g1,15011:8527649,26480475 -g1,15011:8843795,26480475 -g1,15011:9159941,26480475 -g1,15011:9476087,26480475 -g1,15011:9792233,26480475 -g1,15011:10108379,26480475 -g1,15011:10424525,26480475 -g1,15011:10740671,26480475 -g1,15011:11372963,26480475 -g1,15011:12005255,26480475 -k1,15011:12005255,26480475:0 -h1,15011:14850567,26480475:0,0,0 -k1,15011:32583029,26480475:17732462 -g1,15011:32583029,26480475 -) -(1,15012:6630773,27146653:25952256,404226,107478 -h1,15012:6630773,27146653:0,0,0 -g1,15012:6946919,27146653 -g1,15012:7263065,27146653 -g1,15012:7579211,27146653 -g1,15012:7895357,27146653 -g1,15012:8211503,27146653 -g1,15012:8527649,27146653 -g1,15012:8843795,27146653 -g1,15012:9159941,27146653 -g1,15012:9476087,27146653 -g1,15012:9792233,27146653 -g1,15012:10108379,27146653 -g1,15012:10424525,27146653 -g1,15012:10740671,27146653 -g1,15012:14534419,27146653 -g1,15012:15166711,27146653 -g1,15012:20225042,27146653 -g1,15012:21805772,27146653 -g1,15012:23386501,27146653 -g1,15012:24651084,27146653 -g1,15012:25283376,27146653 -h1,15012:26547958,27146653:0,0,0 -k1,15012:32583029,27146653:6035071 -g1,15012:32583029,27146653 -) -] -) -g1,15014:32583029,27254131 -g1,15014:6630773,27254131 -g1,15014:6630773,27254131 -g1,15014:32583029,27254131 -g1,15014:32583029,27254131 -) -h1,15014:6630773,27450739:0,0,0 -(1,15018:6630773,28816515:25952256,505283,138281 -h1,15017:6630773,28816515:983040,0,0 -k1,15017:8803578,28816515:236216 -k1,15017:10132280,28816515:236217 -k1,15017:11054658,28816515:236216 -$1,15017:11054658,28816515 -$1,15017:11557319,28816515 -k1,15017:13258920,28816515:236216 -k1,15017:15182689,28816515:236217 -k1,15017:15774765,28816515:236216 -k1,15017:17866305,28816515:236216 -$1,15017:17866305,28816515 -$1,15017:18374209,28816515 -k1,15017:18610426,28816515:236217 -k1,15017:21821321,28816515:236216 -k1,15017:23451488,28816515:236216 -$1,15017:23451488,28816515 -$1,15017:23737880,28816515 -k1,15017:23974096,28816515:236216 -k1,15017:24896475,28816515:236217 -k1,15017:28283007,28816515:236216 -k1,15017:29710668,28816515:236216 -k1,15017:30562923,28816515:236217 -k1,15017:31818224,28816515:236216 -$1,15017:31818224,28816515 -$1,15017:32370037,28816515 -k1,15018:32583029,28816515:0 -) -(1,15018:6630773,29658003:25952256,505283,134348 -k1,15017:8056140,29658003:172974 -k1,15017:9916666,29658003:172974 -k1,15017:10957993,29658003:172975 -k1,15017:12606182,29658003:172974 -k1,15017:13135016,29658003:172974 -k1,15017:16940651,29658003:172974 -k1,15017:17729663,29658003:172974 -k1,15017:18921722,29658003:172974 -k1,15017:20886451,29658003:172975 -k1,15017:22101447,29658003:172974 -k1,15017:23293506,29658003:172974 -k1,15017:24733946,29658003:172974 -k1,15017:25775272,29658003:172974 -k1,15017:27040732,29658003:172975 -k1,15017:27569566,29658003:172974 -k1,15017:30717219,29658003:172974 -k1,15017:32583029,29658003:0 -) -(1,15018:6630773,30499491:25952256,513147,126483 -k1,15017:7882019,30499491:179077 -k1,15017:9008747,30499491:179077 -k1,15017:10206909,30499491:179077 -k1,15017:12799022,30499491:179077 -k1,15017:13333959,30499491:179077 -k1,15017:15464698,30499491:179077 -k1,15017:18330096,30499491:179077 -k1,15017:22122828,30499491:179077 -k1,15017:23255454,30499491:179077 -k1,15017:25363911,30499491:179077 -k1,15017:27239715,30499491:179077 -k1,15017:31189078,30499491:179077 -k1,15017:32583029,30499491:0 -) -(1,15018:6630773,31340979:25952256,513147,115847 -g1,15017:9525498,31340979 -(1,15017:9525498,31340979:0,452978,115847 -r1,15017:13752594,31340979:4227096,568825,115847 -k1,15017:9525498,31340979:-4227096 -) -(1,15017:9525498,31340979:4227096,452978,115847 -k1,15017:9525498,31340979:3277 -h1,15017:13749317,31340979:0,411205,112570 -) -k1,15018:32583028,31340979:18656764 -g1,15018:32583028,31340979 -) -(1,15020:6630773,32182467:25952256,505283,138281 -h1,15019:6630773,32182467:983040,0,0 -k1,15019:8806509,32182467:239147 -k1,15019:10559538,32182467:239147 -k1,15019:12250307,32182467:239147 -k1,15019:16230904,32182467:239147 -k1,15019:17864002,32182467:239147 -k1,15019:18459008,32182467:239146 -k1,15019:22442882,32182467:239147 -$1,15019:22442882,32182467 -$1,15019:24579355,32182467 -k1,15019:24992172,32182467:239147 -k1,15019:26184868,32182467:239147 -k1,15019:28594567,32182467:239147 -k1,15019:30270919,32182467:239147 -k1,15020:32583029,32182467:0 -) -(1,15020:6630773,33023955:25952256,505283,134348 -k1,15019:8573588,33023955:271647 -k1,15019:9496662,33023955:271646 -k1,15019:13208294,33023955:271647 -k1,15019:14241469,33023955:271647 -k1,15019:16651555,33023955:271646 -k1,15019:19730764,33023955:271647 -k1,15019:21641466,33023955:271647 -k1,15019:22564540,33023955:271646 -k1,15019:23855272,33023955:271647 -k1,15019:25640801,33023955:271647 -k1,15019:28930380,33023955:271646 -k1,15019:31714677,33023955:271647 -k1,15019:32583029,33023955:0 -) -(1,15020:6630773,33865443:25952256,505283,134348 -k1,15019:8322749,33865443:254771 -k1,15019:11552199,33865443:254771 -k1,15019:14003081,33865443:254771 -k1,15019:15542358,33865443:254771 -k1,15019:16901411,33865443:254771 -k1,15019:17903949,33865443:254772 -k1,15019:20322063,33865443:254771 -k1,15019:21844300,33865443:254771 -k1,15019:26043028,33865443:254771 -k1,15019:26925634,33865443:254771 -k1,15019:28882375,33865443:254771 -k1,15019:31265755,33865443:254771 -k1,15020:32583029,33865443:0 -) -(1,15020:6630773,34706931:25952256,513147,134348 -k1,15019:8781010,34706931:279839 -k1,15019:11430630,34706931:279838 -k1,15019:12994975,34706931:279839 -k1,15019:14266373,34706931:279838 -k1,15019:16832763,34706931:279839 -k1,15019:18847994,34706931:279838 -k1,15019:20146918,34706931:279839 -k1,15019:22510801,34706931:279838 -k1,15019:23449932,34706931:279839 -k1,15019:27673727,34706931:279838 -k1,15019:28907115,34706931:279839 -k1,15019:30717219,34706931:279838 -k1,15019:31648486,34706931:279839 -k1,15020:32583029,34706931:0 -) -(1,15020:6630773,35548419:25952256,513147,134348 -(1,15019:6630773,35548419:0,414482,115847 -r1,15019:10857869,35548419:4227096,530329,115847 -k1,15019:6630773,35548419:-4227096 -) -(1,15019:6630773,35548419:4227096,414482,115847 -g1,15019:8744321,35548419 -g1,15019:9447745,35548419 -h1,15019:10854592,35548419:0,411205,112570 -) -k1,15019:11050683,35548419:192814 -k1,15019:11859536,35548419:192815 -k1,15019:13071435,35548419:192814 -k1,15019:14363944,35548419:192815 -k1,15019:15208186,35548419:192814 -k1,15019:16420086,35548419:192815 -k1,15019:19620347,35548419:192814 -k1,15019:20537990,35548419:192815 -k1,15019:22015310,35548419:192814 -k1,15019:23227210,35548419:192815 -k1,15019:25789806,35548419:192814 -k1,15019:28309804,35548419:192815 -k1,15019:29161910,35548419:192814 -k1,15019:31092740,35548419:192815 -k1,15020:32583029,35548419:0 -) -(1,15020:6630773,36389907:25952256,513147,126483 -g1,15019:7854985,36389907 -g1,15019:8740376,36389907 -g1,15019:9644772,36389907 -g1,15019:10835561,36389907 -g1,15019:13198133,36389907 -g1,15019:14664828,36389907 -g1,15019:18634343,36389907 -g1,15019:20876329,36389907 -g1,15019:22094643,36389907 -g1,15019:23571169,36389907 -g1,15019:24301895,36389907 -k1,15020:32583029,36389907:5232399 -g1,15020:32583029,36389907 -) -v1,15022:6630773,37580373:0,393216,0 -(1,15032:6630773,41892537:25952256,4705380,196608 -g1,15032:6630773,41892537 -g1,15032:6630773,41892537 -g1,15032:6434165,41892537 -(1,15032:6434165,41892537:0,4705380,196608 -r1,15032:32779637,41892537:26345472,4901988,196608 -k1,15032:6434165,41892537:-26345472 -) -(1,15032:6434165,41892537:26345472,4705380,196608 -[1,15032:6630773,41892537:25952256,4508772,0 -(1,15024:6630773,37787991:25952256,404226,107478 -(1,15023:6630773,37787991:0,0,0 -g1,15023:6630773,37787991 -g1,15023:6630773,37787991 -g1,15023:6303093,37787991 -(1,15023:6303093,37787991:0,0,0 -) -g1,15023:6630773,37787991 -) -k1,15024:6630773,37787991:0 -g1,15024:11689104,37787991 -g1,15024:13902124,37787991 -g1,15024:14850562,37787991 -g1,15024:16747436,37787991 -g1,15024:17379728,37787991 -g1,15024:21805768,37787991 -h1,15024:22121914,37787991:0,0,0 -k1,15024:32583029,37787991:10461115 -g1,15024:32583029,37787991 -) -(1,15025:6630773,38454169:25952256,404226,107478 -h1,15025:6630773,38454169:0,0,0 -g1,15025:6946919,38454169 -g1,15025:7263065,38454169 -g1,15025:7579211,38454169 -g1,15025:11689105,38454169 -h1,15025:12005251,38454169:0,0,0 -k1,15025:32583029,38454169:20577778 -g1,15025:32583029,38454169 -) -(1,15026:6630773,39120347:25952256,404226,107478 -h1,15026:6630773,39120347:0,0,0 -g1,15026:6946919,39120347 -g1,15026:7263065,39120347 -g1,15026:7579211,39120347 -g1,15026:12637542,39120347 -g1,15026:13269834,39120347 -g1,15026:14534417,39120347 -g1,15026:16431291,39120347 -g1,15026:17063583,39120347 -g1,15026:18644312,39120347 -g1,15026:20541186,39120347 -g1,15026:21173478,39120347 -g1,15026:23070353,39120347 -h1,15026:23386499,39120347:0,0,0 -k1,15026:32583029,39120347:9196530 -g1,15026:32583029,39120347 -) -(1,15027:6630773,39786525:25952256,404226,101187 -h1,15027:6630773,39786525:0,0,0 -g1,15027:6946919,39786525 -g1,15027:7263065,39786525 -g1,15027:7579211,39786525 -g1,15027:9792232,39786525 -g1,15027:10424524,39786525 -k1,15027:10424524,39786525:0 -h1,15027:17063584,39786525:0,0,0 -k1,15027:32583029,39786525:15519445 -g1,15027:32583029,39786525 -) -(1,15028:6630773,40452703:25952256,404226,101187 -h1,15028:6630773,40452703:0,0,0 -g1,15028:6946919,40452703 -g1,15028:7263065,40452703 -g1,15028:7579211,40452703 -g1,15028:7895357,40452703 -g1,15028:8211503,40452703 -g1,15028:8527649,40452703 -g1,15028:8843795,40452703 -g1,15028:9159941,40452703 -g1,15028:9792233,40452703 -g1,15028:10424525,40452703 -k1,15028:10424525,40452703:0 -h1,15028:19908897,40452703:0,0,0 -k1,15028:32583029,40452703:12674132 -g1,15028:32583029,40452703 -) -(1,15029:6630773,41118881:25952256,404226,107478 -h1,15029:6630773,41118881:0,0,0 -g1,15029:6946919,41118881 -g1,15029:7263065,41118881 -g1,15029:7579211,41118881 -g1,15029:7895357,41118881 -g1,15029:8211503,41118881 -g1,15029:8527649,41118881 -g1,15029:8843795,41118881 -g1,15029:9159941,41118881 -g1,15029:11056815,41118881 -g1,15029:11689107,41118881 -g1,15029:13902127,41118881 -k1,15029:13902127,41118881:0 -h1,15029:18012021,41118881:0,0,0 -k1,15029:32583029,41118881:14571008 -g1,15029:32583029,41118881 -) -(1,15030:6630773,41785059:25952256,410518,107478 -h1,15030:6630773,41785059:0,0,0 -g1,15030:6946919,41785059 -g1,15030:7263065,41785059 -g1,15030:7579211,41785059 -g1,15030:7895357,41785059 -g1,15030:8211503,41785059 -g1,15030:8527649,41785059 -g1,15030:8843795,41785059 -g1,15030:9159941,41785059 -g1,15030:12005252,41785059 -g1,15030:12637544,41785059 -g1,15030:20541188,41785059 -g1,15030:21173480,41785059 -g1,15030:24651083,41785059 -h1,15030:27496394,41785059:0,0,0 -k1,15030:32583029,41785059:5086635 -g1,15030:32583029,41785059 -) -] -) -g1,15032:32583029,41892537 -g1,15032:6630773,41892537 -g1,15032:6630773,41892537 -g1,15032:32583029,41892537 -g1,15032:32583029,41892537 -) -h1,15032:6630773,42089145:0,0,0 -] -(1,15042:32583029,45706769:0,0,0 -g1,15042:32583029,45706769 -) -) -] -(1,15042:6630773,47279633:25952256,0,0 -h1,15042:6630773,47279633:25952256,0,0 -) -] -h1,15042:4262630,4025873:0,0,0 -] -!28835 -}292 -Input:2286:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2287:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2288:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2289:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2290:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2291:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2292:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2293:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2294:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2295:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2296:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2297:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2298:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2299:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2300:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2301:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2302:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2303:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2304:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2305:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2306:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2307:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1904 -{293 -[1,15161:4262630,47279633:28320399,43253760,0 -(1,15161:4262630,4025873:0,0,0 -[1,15161:-473657,4025873:25952256,0,0 -(1,15161:-473657,-710414:25952256,0,0 -h1,15161:-473657,-710414:0,0,0 -(1,15161:-473657,-710414:0,0,0 -(1,15161:-473657,-710414:0,0,0 -g1,15161:-473657,-710414 -(1,15161:-473657,-710414:65781,0,65781 -g1,15161:-407876,-710414 -[1,15161:-407876,-644633:0,0,0 +g1,15073:6630773,4812305 +k1,15073:25712890,4812305:17886740 +g1,15073:29057847,4812305 +g1,15073:29873114,4812305 +) +) +] +[1,15073:6630773,45706769:25952256,40108032,0 +(1,15073:6630773,45706769:25952256,40108032,0 +(1,15073:6630773,45706769:0,0,0 +g1,15073:6630773,45706769 +) +[1,15073:6630773,45706769:25952256,40108032,0 +(1,15028:6630773,6254097:25952256,513147,134348 +(1,15027:6630773,6254097:0,452978,115847 +r1,15027:10857869,6254097:4227096,568825,115847 +k1,15027:6630773,6254097:-4227096 +) +(1,15027:6630773,6254097:4227096,452978,115847 +k1,15027:6630773,6254097:3277 +h1,15027:10854592,6254097:0,411205,112570 +) +k1,15027:11278457,6254097:246918 +k1,15027:12208259,6254097:246917 +k1,15027:13216705,6254097:246918 +k1,15027:15849134,6254097:246918 +k1,15027:16451911,6254097:246917 +k1,15027:19673508,6254097:246918 +k1,15027:21959906,6254097:246918 +k1,15027:22834659,6254097:246918 +k1,15027:24100661,6254097:246917 +k1,15027:25714660,6254097:246918 +k1,15027:26620870,6254097:246918 +k1,15027:29696320,6254097:246917 +k1,15027:30890889,6254097:246918 +k1,15027:32583029,6254097:0 +) +(1,15028:6630773,7095585:25952256,505283,126483 +k1,15027:8125070,7095585:217000 +k1,15027:11384907,7095585:217000 +k1,15027:13489999,7095585:217000 +k1,15027:16057120,7095585:217000 +k1,15027:17668071,7095585:217000 +(1,15027:17668071,7095585:0,414482,122846 +r1,15027:20840031,7095585:3171960,537328,122846 +k1,15027:17668071,7095585:-3171960 +) +(1,15027:17668071,7095585:3171960,414482,122846 +k1,15027:17668071,7095585:3277 +h1,15027:20836754,7095585:0,411205,112570 +) +k1,15027:21057031,7095585:217000 +k1,15027:22465476,7095585:217000 +(1,15027:22465476,7095585:0,452978,122846 +r1,15027:25989148,7095585:3523672,575824,122846 +k1,15027:22465476,7095585:-3523672 +) +(1,15027:22465476,7095585:3523672,452978,122846 +k1,15027:22465476,7095585:3277 +h1,15027:25985871,7095585:0,411205,112570 +) +k1,15027:26379818,7095585:217000 +k1,15027:27788263,7095585:217000 +k1,15027:29024348,7095585:217000 +k1,15027:30738846,7095585:217000 +k1,15027:32583029,7095585:0 +) +(1,15028:6630773,7937073:25952256,513147,134348 +k1,15027:7458559,7937073:168494 +k1,15027:9515801,7937073:168494 +k1,15027:10703380,7937073:168494 +k1,15027:13257385,7937073:168494 +k1,15027:13957376,7937073:168494 +k1,15027:16584125,7937073:168494 +k1,15027:17944065,7937073:168495 +k1,15027:20484307,7937073:168494 +k1,15027:21304229,7937073:168494 +k1,15027:24058118,7937073:168494 +k1,15027:27201291,7937073:168494 +k1,15027:30211426,7937073:168494 +k1,15027:30995958,7937073:168494 +(1,15027:30995958,7937073:0,452978,115847 +r1,15027:32409359,7937073:1413401,568825,115847 +k1,15027:30995958,7937073:-1413401 +) +(1,15027:30995958,7937073:1413401,452978,115847 +k1,15027:30995958,7937073:3277 +h1,15027:32406082,7937073:0,411205,112570 +) +k1,15027:32583029,7937073:0 +) +(1,15028:6630773,8778561:25952256,513147,134348 +k1,15027:7459386,8778561:200778 +k1,15027:10465106,8778561:200779 +k1,15027:11613535,8778561:200778 +k1,15027:13585751,8778561:200778 +k1,15027:16703536,8778561:200778 +k1,15027:19785933,8778561:200779 +k1,15027:23469950,8778561:200778 +k1,15027:24782219,8778561:200778 +k1,15027:27983891,8778561:200778 +k1,15027:29469176,8778561:200779 +k1,15027:30201451,8778561:200778 +k1,15027:32583029,8778561:0 +) +(1,15028:6630773,9620049:25952256,505283,126483 +k1,15027:8834546,9620049:193784 +(1,15027:8834546,9620049:0,452978,115847 +r1,15027:10951371,9620049:2116825,568825,115847 +k1,15027:8834546,9620049:-2116825 +) +(1,15027:8834546,9620049:2116825,452978,115847 +k1,15027:8834546,9620049:3277 +h1,15027:10948094,9620049:0,411205,112570 +) +k1,15027:11352249,9620049:193784 +k1,15027:12565118,9620049:193784 +k1,15027:16529188,9620049:193784 +k1,15027:18198187,9620049:193784 +k1,15027:19043399,9620049:193784 +k1,15027:19984948,9620049:193783 +k1,15027:22601598,9620049:193784 +k1,15027:25866399,9620049:193784 +k1,15027:26743068,9620049:193784 +k1,15027:28748267,9620049:193784 +k1,15027:29628213,9620049:193784 +k1,15027:31315563,9620049:193784 +k1,15027:32583029,9620049:0 +) +(1,15028:6630773,10461537:25952256,505283,134348 +g1,15027:7185862,10461537 +g1,15027:10070101,10461537 +g1,15027:11460775,10461537 +g1,15027:12679089,10461537 +g1,15027:15389658,10461537 +g1,15027:17794174,10461537 +g1,15027:18679565,10461537 +g1,15027:19649497,10461537 +k1,15028:32583029,10461537:9687534 +g1,15028:32583029,10461537 +) +(1,15030:6630773,11303025:25952256,505283,134348 +h1,15029:6630773,11303025:983040,0,0 +k1,15029:9623123,11303025:226075 +k1,15029:12373645,11303025:226075 +k1,15029:16370006,11303025:226075 +k1,15029:18331474,11303025:226075 +(1,15029:18331474,11303025:0,452978,122846 +r1,15029:22206858,11303025:3875384,575824,122846 +k1,15029:18331474,11303025:-3875384 +) +(1,15029:18331474,11303025:3875384,452978,122846 +k1,15029:18331474,11303025:3277 +h1,15029:22203581,11303025:0,411205,112570 +) +k1,15029:22606604,11303025:226076 +k1,15029:24117185,11303025:226075 +k1,15029:27317939,11303025:226075 +k1,15029:29740125,11303025:226075 +k1,15029:30957760,11303025:226075 +k1,15029:31835263,11303025:226075 +k1,15029:32583029,11303025:0 +) +(1,15030:6630773,12144513:25952256,513147,134348 +k1,15029:8985933,12144513:191817 +k1,15029:9709247,12144513:191817 +k1,15029:12550685,12144513:191817 +k1,15029:14136452,12144513:191816 +(1,15029:14136452,12144513:0,414482,115847 +r1,15029:18363548,12144513:4227096,530329,115847 +k1,15029:14136452,12144513:-4227096 +) +(1,15029:14136452,12144513:4227096,414482,115847 +g1,15029:16250000,12144513 +g1,15029:16953424,12144513 +h1,15029:18360271,12144513:0,411205,112570 +) +k1,15029:18729035,12144513:191817 +k1,15029:19548687,12144513:191817 +k1,15029:20759589,12144513:191817 +k1,15029:22318487,12144513:191817 +k1,15029:23169596,12144513:191817 +k1,15029:25423830,12144513:191816 +k1,15029:27113145,12144513:191817 +k1,15029:29322816,12144513:191817 +k1,15029:31900144,12144513:191817 +k1,15029:32583029,12144513:0 +) +(1,15030:6630773,12986001:25952256,513147,126483 +k1,15029:7921317,12986001:224273 +k1,15029:10847640,12986001:224274 +k1,15029:11881283,12986001:224273 +k1,15029:13124642,12986001:224274 +k1,15029:15749499,12986001:224273 +k1,15029:18669269,12986001:224274 +k1,15029:20580439,12986001:224273 +k1,15029:21707143,12986001:224273 +k1,15029:25158410,12986001:224274 +k1,15029:26948993,12986001:224273 +k1,15029:27704764,12986001:224274 +k1,15029:28545075,12986001:224273 +k1,15029:29972590,12986001:224274 +k1,15029:31563944,12986001:224273 +k1,15029:32583029,12986001:0 +) +(1,15030:6630773,13827489:25952256,513147,134348 +g1,15029:10133017,13827489 +g1,15029:10991538,13827489 +g1,15029:14545555,13827489 +g1,15029:16479522,13827489 +g1,15029:19653430,13827489 +g1,15029:22048770,13827489 +g1,15029:23641950,13827489 +g1,15029:25851824,13827489 +g1,15029:27818559,13827489 +g1,15029:29585409,13827489 +(1,15029:29585409,13827489:0,452978,115847 +r1,15029:30998810,13827489:1413401,568825,115847 +k1,15029:29585409,13827489:-1413401 +) +(1,15029:29585409,13827489:1413401,452978,115847 +k1,15029:29585409,13827489:3277 +h1,15029:30995533,13827489:0,411205,112570 +) +k1,15030:32583029,13827489:1410549 +g1,15030:32583029,13827489 +) +(1,15032:6630773,14668977:25952256,513147,134348 +h1,15031:6630773,14668977:983040,0,0 +k1,15031:9020434,14668977:209934 +k1,15031:10832067,14668977:209933 +k1,15031:13525816,14668977:209934 +k1,15031:15397742,14668977:209933 +k1,15031:16259104,14668977:209934 +k1,15031:19728143,14668977:209934 +k1,15031:21636114,14668977:209933 +k1,15031:24103763,14668977:209934 +k1,15031:28083982,14668977:209933 +k1,15031:28825413,14668977:209934 +k1,15031:30365727,14668977:209933 +k1,15031:31227089,14668977:209934 +k1,15032:32583029,14668977:0 +) +(1,15032:6630773,15510465:25952256,513147,126483 +k1,15031:8155407,15510465:171971 +k1,15031:9346463,15510465:171971 +k1,15031:12280777,15510465:171971 +k1,15031:14278581,15510465:171971 +k1,15031:14938113,15510465:171944 +k1,15031:16541390,15510465:171971 +(1,15031:16748484,15510465:0,414482,115847 +r1,15031:17106750,15510465:358266,530329,115847 +k1,15031:16748484,15510465:-358266 +) +(1,15031:16748484,15510465:358266,414482,115847 +k1,15031:16748484,15510465:3277 +h1,15031:17103473,15510465:0,411205,112570 +) +k1,15031:17485815,15510465:171971 +k1,15031:19185430,15510465:171971 +k1,15031:21145223,15510465:171971 +k1,15031:21933232,15510465:171971 +k1,15031:24740406,15510465:171971 +k1,15031:27727804,15510465:171971 +k1,15031:30534322,15510465:171971 +(1,15031:30741416,15510465:0,414482,115847 +r1,15031:31099682,15510465:358266,530329,115847 +k1,15031:30741416,15510465:-358266 +) +(1,15031:30741416,15510465:358266,414482,115847 +k1,15031:30741416,15510465:3277 +h1,15031:31096405,15510465:0,411205,112570 +) +k1,15031:31478747,15510465:171971 +k1,15031:32583029,15510465:0 +) +(1,15032:6630773,16351953:25952256,505283,134348 +k1,15031:7632516,16351953:253977 +k1,15031:9172309,16351953:253977 +k1,15031:10939512,16351953:253977 +k1,15031:11879651,16351953:253977 +k1,15031:12489488,16351953:253977 +k1,15031:16095632,16351953:253977 +k1,15031:17541055,16351953:253978 +k1,15031:18326529,16351953:253977 +k1,15031:20878854,16351953:253977 +k1,15031:23420038,16351953:253977 +k1,15031:25372053,16351953:253977 +k1,15031:27945349,16351953:253977 +k1,15031:29593277,16351953:253977 +k1,15031:32583029,16351953:0 +) +(1,15032:6630773,17193441:25952256,513147,134348 +k1,15031:8592615,17193441:170088 +k1,15031:10550524,17193441:170087 +k1,15031:11252109,17193441:170088 +k1,15031:13871933,17193441:170088 +k1,15031:14658059,17193441:170088 +k1,15031:16520286,17193441:170087 +k1,15031:20020914,17193441:170088 +k1,15031:21263171,17193441:170088 +k1,15031:22499530,17193441:170088 +k1,15031:23285655,17193441:170087 +k1,15031:25661685,17193441:170088 +k1,15031:26660803,17193441:170088 +k1,15031:29168560,17193441:170088 +k1,15031:30527470,17193441:170087 +k1,15031:31356850,17193441:170088 +k1,15031:32583029,17193441:0 +) +(1,15032:6630773,18034929:25952256,513147,134348 +k1,15031:8848137,18034929:207375 +k1,15031:9826214,18034929:207374 +k1,15031:13473574,18034929:207375 +k1,15031:14549300,18034929:207374 +k1,15031:16286941,18034929:207375 +k1,15031:17145743,18034929:207374 +k1,15031:18445603,18034929:207375 +k1,15031:21746933,18034929:207375 +k1,15031:24115029,18034929:207374 +k1,15031:25364426,18034929:207375 +k1,15031:25927660,18034929:207374 +k1,15031:27523743,18034929:207375 +k1,15031:28724643,18034929:207374 +k1,15031:29591310,18034929:207375 +k1,15031:32583029,18034929:0 +) +(1,15032:6630773,18876417:25952256,505283,126483 +k1,15031:8269906,18876417:163918 +k1,15031:8789685,18876417:163919 +k1,15031:10340345,18876417:163918 +k1,15031:11117025,18876417:163918 +k1,15031:12300029,18876417:163919 +k1,15031:14622703,18876417:163918 +k1,15031:15978067,18876417:163919 +k1,15031:17638172,18876417:163918 +k1,15031:20865243,18876417:163918 +k1,15031:21790690,18876417:163919 +(1,15031:21790690,18876417:0,452978,115847 +r1,15031:26721210,18876417:4930520,568825,115847 +k1,15031:21790690,18876417:-4930520 +) +(1,15031:21790690,18876417:4930520,452978,115847 +k1,15031:21790690,18876417:3277 +h1,15031:26717933,18876417:0,411205,112570 +) +k1,15031:26885128,18876417:163918 +k1,15031:27661808,18876417:163918 +k1,15031:28844812,18876417:163919 +k1,15031:29423538,18876417:163883 +k1,15031:32583029,18876417:0 +) +(1,15032:6630773,19717905:25952256,426639,126483 +k1,15032:32583029,19717905:23377346 +g1,15032:32583029,19717905 +) +(1,15035:6630773,20559393:25952256,513147,126483 +h1,15033:6630773,20559393:983040,0,0 +k1,15033:8861568,20559393:294206 +k1,15033:10288236,20559393:294206 +k1,15033:11674927,20559393:294206 +k1,15033:12324994,20559393:294207 +k1,15033:14735358,20559393:294206 +k1,15033:15688856,20559393:294206 +k1,15033:18669383,20559393:294206 +k1,15033:21955308,20559393:294206 +k1,15033:22900942,20559393:294206 +k1,15033:24855831,20559393:294207 +k1,15033:26480418,20559393:294206 +k1,15033:27426052,20559393:294206 +k1,15033:28812743,20559393:294206 +k1,15033:32583029,20559393:0 +) +(1,15035:6630773,21400881:25952256,513147,134348 +k1,15033:7868950,21400881:290526 +k1,15033:10921820,21400881:290527 +k1,15033:14081512,21400881:290526 +k1,15033:15031330,21400881:290526 +k1,15033:15677716,21400881:290526 +k1,15033:17419210,21400881:290527 +k1,15034:18663285,21400881:290526 +k1,15034:20259944,21400881:290526 +k1,15034:22479851,21400881:290527 +k1,15034:23126237,21400881:290526 +k1,15034:24806126,21400881:290526 +k1,15034:27146618,21400881:290526 +k1,15034:29172538,21400881:290527 +(1,15034:29172538,21400881:0,452978,115847 +r1,15034:31641075,21400881:2468537,568825,115847 +k1,15034:29172538,21400881:-2468537 +) +(1,15034:29172538,21400881:2468537,452978,115847 +k1,15034:29172538,21400881:3277 +h1,15034:31637798,21400881:0,411205,112570 +) +k1,15034:31931601,21400881:290526 +k1,15034:32583029,21400881:0 +) +(1,15035:6630773,22242369:25952256,513147,134348 +k1,15034:9738872,22242369:171431 +k1,15034:10266163,22242369:171431 +k1,15034:12415471,22242369:171431 +k1,15034:13246195,22242369:171432 +k1,15034:17162353,22242369:171431 +$1,15034:17162353,22242369 +$1,15034:17670257,22242369 +k1,15034:17841688,22242369:171431 +k1,15034:20023764,22242369:171431 +k1,15034:20881357,22242369:171431 +k1,15034:24027467,22242369:171431 +k1,15034:26395010,22242369:171432 +k1,15034:29078436,22242369:171431 +k1,15034:30197518,22242369:171431 +k1,15034:32583029,22242369:0 +) +(1,15035:6630773,23083857:25952256,473825,126483 +g1,15034:8097468,23083857 +k1,15035:32583029,23083857:20541604 +g1,15035:32583029,23083857 +) +v1,15037:6630773,24274323:0,393216,0 +(1,15045:6630773,27254131:25952256,3373024,196608 +g1,15045:6630773,27254131 +g1,15045:6630773,27254131 +g1,15045:6434165,27254131 +(1,15045:6434165,27254131:0,3373024,196608 +r1,15045:32779637,27254131:26345472,3569632,196608 +k1,15045:6434165,27254131:-26345472 +) +(1,15045:6434165,27254131:26345472,3373024,196608 +[1,15045:6630773,27254131:25952256,3176416,0 +(1,15039:6630773,24481941:25952256,404226,107478 +(1,15038:6630773,24481941:0,0,0 +g1,15038:6630773,24481941 +g1,15038:6630773,24481941 +g1,15038:6303093,24481941 +(1,15038:6303093,24481941:0,0,0 +) +g1,15038:6630773,24481941 +) +k1,15039:6630773,24481941:0 +g1,15039:11689104,24481941 +g1,15039:12321396,24481941 +g1,15039:13902125,24481941 +g1,15039:15482854,24481941 +g1,15039:16431291,24481941 +g1,15039:18644311,24481941 +g1,15039:21489622,24481941 +g1,15039:22754205,24481941 +g1,15039:24334934,24481941 +k1,15039:24334934,24481941:11534 +h1,15039:25611051,24481941:0,0,0 +k1,15039:32583029,24481941:6971978 +g1,15039:32583029,24481941 +) +(1,15040:6630773,25148119:25952256,404226,101187 +h1,15040:6630773,25148119:0,0,0 +g1,15040:9159939,25148119 +k1,15040:9159939,25148119:0 +h1,15040:9792231,25148119:0,0,0 +k1,15040:32583029,25148119:22790798 +g1,15040:32583029,25148119 +) +(1,15041:6630773,25814297:25952256,410518,82312 +h1,15041:6630773,25814297:0,0,0 +g1,15041:6946919,25814297 +g1,15041:7263065,25814297 +g1,15041:11372960,25814297 +g1,15041:12005252,25814297 +k1,15041:12005252,25814297:0 +h1,15041:13269836,25814297:0,0,0 +k1,15041:32583028,25814297:19313192 +g1,15041:32583028,25814297 +) +(1,15042:6630773,26480475:25952256,404226,101187 +h1,15042:6630773,26480475:0,0,0 +g1,15042:6946919,26480475 +g1,15042:7263065,26480475 +g1,15042:7579211,26480475 +g1,15042:7895357,26480475 +g1,15042:8211503,26480475 +g1,15042:8527649,26480475 +g1,15042:8843795,26480475 +g1,15042:9159941,26480475 +g1,15042:9476087,26480475 +g1,15042:9792233,26480475 +g1,15042:10108379,26480475 +g1,15042:10424525,26480475 +g1,15042:10740671,26480475 +g1,15042:11372963,26480475 +g1,15042:12005255,26480475 +k1,15042:12005255,26480475:0 +h1,15042:14850567,26480475:0,0,0 +k1,15042:32583029,26480475:17732462 +g1,15042:32583029,26480475 +) +(1,15043:6630773,27146653:25952256,404226,107478 +h1,15043:6630773,27146653:0,0,0 +g1,15043:6946919,27146653 +g1,15043:7263065,27146653 +g1,15043:7579211,27146653 +g1,15043:7895357,27146653 +g1,15043:8211503,27146653 +g1,15043:8527649,27146653 +g1,15043:8843795,27146653 +g1,15043:9159941,27146653 +g1,15043:9476087,27146653 +g1,15043:9792233,27146653 +g1,15043:10108379,27146653 +g1,15043:10424525,27146653 +g1,15043:10740671,27146653 +g1,15043:14534419,27146653 +g1,15043:15166711,27146653 +g1,15043:20225042,27146653 +g1,15043:21805772,27146653 +g1,15043:23386501,27146653 +g1,15043:24651084,27146653 +g1,15043:25283376,27146653 +h1,15043:26547958,27146653:0,0,0 +k1,15043:32583029,27146653:6035071 +g1,15043:32583029,27146653 +) +] +) +g1,15045:32583029,27254131 +g1,15045:6630773,27254131 +g1,15045:6630773,27254131 +g1,15045:32583029,27254131 +g1,15045:32583029,27254131 +) +h1,15045:6630773,27450739:0,0,0 +(1,15049:6630773,28816515:25952256,505283,138281 +h1,15048:6630773,28816515:983040,0,0 +k1,15048:8803578,28816515:236216 +k1,15048:10132280,28816515:236217 +k1,15048:11054658,28816515:236216 +$1,15048:11054658,28816515 +$1,15048:11557319,28816515 +k1,15048:13258920,28816515:236216 +k1,15048:15182689,28816515:236217 +k1,15048:15774765,28816515:236216 +k1,15048:17866305,28816515:236216 +$1,15048:17866305,28816515 +$1,15048:18374209,28816515 +k1,15048:18610426,28816515:236217 +k1,15048:21821321,28816515:236216 +k1,15048:23451488,28816515:236216 +$1,15048:23451488,28816515 +$1,15048:23737880,28816515 +k1,15048:23974096,28816515:236216 +k1,15048:24896475,28816515:236217 +k1,15048:28283007,28816515:236216 +k1,15048:29710668,28816515:236216 +k1,15048:30562923,28816515:236217 +k1,15048:31818224,28816515:236216 +$1,15048:31818224,28816515 +$1,15048:32370037,28816515 +k1,15049:32583029,28816515:0 +) +(1,15049:6630773,29658003:25952256,505283,134348 +k1,15048:8056140,29658003:172974 +k1,15048:9916666,29658003:172974 +k1,15048:10957993,29658003:172975 +k1,15048:12606182,29658003:172974 +k1,15048:13135016,29658003:172974 +k1,15048:16940651,29658003:172974 +k1,15048:17729663,29658003:172974 +k1,15048:18921722,29658003:172974 +k1,15048:20886451,29658003:172975 +k1,15048:22101447,29658003:172974 +k1,15048:23293506,29658003:172974 +k1,15048:24733946,29658003:172974 +k1,15048:25775272,29658003:172974 +k1,15048:27040732,29658003:172975 +k1,15048:27569566,29658003:172974 +k1,15048:30717219,29658003:172974 +k1,15048:32583029,29658003:0 +) +(1,15049:6630773,30499491:25952256,513147,126483 +k1,15048:7882019,30499491:179077 +k1,15048:9008747,30499491:179077 +k1,15048:10206909,30499491:179077 +k1,15048:12799022,30499491:179077 +k1,15048:13333959,30499491:179077 +k1,15048:15464698,30499491:179077 +k1,15048:18330096,30499491:179077 +k1,15048:22122828,30499491:179077 +k1,15048:23255454,30499491:179077 +k1,15048:25363911,30499491:179077 +k1,15048:27239715,30499491:179077 +k1,15048:31189078,30499491:179077 +k1,15048:32583029,30499491:0 +) +(1,15049:6630773,31340979:25952256,513147,115847 +g1,15048:9525498,31340979 +(1,15048:9525498,31340979:0,452978,115847 +r1,15048:13752594,31340979:4227096,568825,115847 +k1,15048:9525498,31340979:-4227096 +) +(1,15048:9525498,31340979:4227096,452978,115847 +k1,15048:9525498,31340979:3277 +h1,15048:13749317,31340979:0,411205,112570 +) +k1,15049:32583028,31340979:18656764 +g1,15049:32583028,31340979 +) +(1,15051:6630773,32182467:25952256,505283,138281 +h1,15050:6630773,32182467:983040,0,0 +k1,15050:8806509,32182467:239147 +k1,15050:10559538,32182467:239147 +k1,15050:12250307,32182467:239147 +k1,15050:16230904,32182467:239147 +k1,15050:17864002,32182467:239147 +k1,15050:18459008,32182467:239146 +k1,15050:22442882,32182467:239147 +$1,15050:22442882,32182467 +$1,15050:24579355,32182467 +k1,15050:24992172,32182467:239147 +k1,15050:26184868,32182467:239147 +k1,15050:28594567,32182467:239147 +k1,15050:30270919,32182467:239147 +k1,15051:32583029,32182467:0 +) +(1,15051:6630773,33023955:25952256,505283,134348 +k1,15050:8573588,33023955:271647 +k1,15050:9496662,33023955:271646 +k1,15050:13208294,33023955:271647 +k1,15050:14241469,33023955:271647 +k1,15050:16651555,33023955:271646 +k1,15050:19730764,33023955:271647 +k1,15050:21641466,33023955:271647 +k1,15050:22564540,33023955:271646 +k1,15050:23855272,33023955:271647 +k1,15050:25640801,33023955:271647 +k1,15050:28930380,33023955:271646 +k1,15050:31714677,33023955:271647 +k1,15050:32583029,33023955:0 +) +(1,15051:6630773,33865443:25952256,505283,134348 +k1,15050:8298719,33865443:230741 +k1,15050:11504139,33865443:230741 +k1,15050:13930992,33865443:230742 +k1,15050:15446239,33865443:230741 +k1,15050:16781262,33865443:230741 +k1,15050:17759770,33865443:230742 +k1,15050:20153854,33865443:230741 +k1,15050:21652061,33865443:230741 +k1,15050:25826759,33865443:230741 +k1,15050:26685336,33865443:230742 +k1,15050:28618047,33865443:230741 +k1,15050:30977397,33865443:230741 +k1,15051:32583029,33865443:0 +) +(1,15051:6630773,34706931:25952256,513147,134348 +k1,15050:8514832,34706931:302020 +k1,15050:11186634,34706931:302020 +k1,15050:12773160,34706931:302020 +k1,15050:14066740,34706931:302020 +k1,15050:16655311,34706931:302020 +k1,15050:18692724,34706931:302020 +k1,15050:20013829,34706931:302020 +k1,15050:22399894,34706931:302020 +k1,15050:23361206,34706931:302020 +k1,15050:27607183,34706931:302020 +k1,15050:28862752,34706931:302020 +k1,15050:30695038,34706931:302020 +k1,15050:31648486,34706931:302020 +k1,15051:32583029,34706931:0 +) +(1,15051:6630773,35548419:25952256,513147,134348 +(1,15050:6630773,35548419:0,414482,115847 +r1,15050:10857869,35548419:4227096,530329,115847 +k1,15050:6630773,35548419:-4227096 +) +(1,15050:6630773,35548419:4227096,414482,115847 +g1,15050:8744321,35548419 +g1,15050:9447745,35548419 +h1,15050:10854592,35548419:0,411205,112570 +) +k1,15050:11050683,35548419:192814 +k1,15050:11859536,35548419:192815 +k1,15050:13071435,35548419:192814 +k1,15050:14363944,35548419:192815 +k1,15050:15208186,35548419:192814 +k1,15050:16420086,35548419:192815 +k1,15050:19620347,35548419:192814 +k1,15050:20537990,35548419:192815 +k1,15050:22015310,35548419:192814 +k1,15050:23227210,35548419:192815 +k1,15050:25789806,35548419:192814 +k1,15050:28309804,35548419:192815 +k1,15050:29161910,35548419:192814 +k1,15050:31092740,35548419:192815 +k1,15051:32583029,35548419:0 +) +(1,15051:6630773,36389907:25952256,513147,126483 +g1,15050:7854985,36389907 +g1,15050:8740376,36389907 +g1,15050:9644772,36389907 +g1,15050:10835561,36389907 +g1,15050:13198133,36389907 +g1,15050:14664828,36389907 +g1,15050:18634343,36389907 +g1,15050:20876329,36389907 +g1,15050:22094643,36389907 +g1,15050:23571169,36389907 +g1,15050:24301895,36389907 +k1,15051:32583029,36389907:5232399 +g1,15051:32583029,36389907 +) +v1,15053:6630773,37580373:0,393216,0 +(1,15063:6630773,41892537:25952256,4705380,196608 +g1,15063:6630773,41892537 +g1,15063:6630773,41892537 +g1,15063:6434165,41892537 +(1,15063:6434165,41892537:0,4705380,196608 +r1,15063:32779637,41892537:26345472,4901988,196608 +k1,15063:6434165,41892537:-26345472 +) +(1,15063:6434165,41892537:26345472,4705380,196608 +[1,15063:6630773,41892537:25952256,4508772,0 +(1,15055:6630773,37787991:25952256,404226,107478 +(1,15054:6630773,37787991:0,0,0 +g1,15054:6630773,37787991 +g1,15054:6630773,37787991 +g1,15054:6303093,37787991 +(1,15054:6303093,37787991:0,0,0 +) +g1,15054:6630773,37787991 +) +k1,15055:6630773,37787991:0 +g1,15055:11689104,37787991 +g1,15055:13902124,37787991 +g1,15055:14850562,37787991 +g1,15055:16747436,37787991 +g1,15055:17379728,37787991 +g1,15055:21805768,37787991 +h1,15055:22121914,37787991:0,0,0 +k1,15055:32583029,37787991:10461115 +g1,15055:32583029,37787991 +) +(1,15056:6630773,38454169:25952256,404226,107478 +h1,15056:6630773,38454169:0,0,0 +g1,15056:6946919,38454169 +g1,15056:7263065,38454169 +g1,15056:7579211,38454169 +g1,15056:11689105,38454169 +h1,15056:12005251,38454169:0,0,0 +k1,15056:32583029,38454169:20577778 +g1,15056:32583029,38454169 +) +(1,15057:6630773,39120347:25952256,404226,107478 +h1,15057:6630773,39120347:0,0,0 +g1,15057:6946919,39120347 +g1,15057:7263065,39120347 +g1,15057:7579211,39120347 +g1,15057:12637542,39120347 +g1,15057:13269834,39120347 +g1,15057:14534417,39120347 +g1,15057:16431291,39120347 +g1,15057:17063583,39120347 +g1,15057:18644312,39120347 +g1,15057:20541186,39120347 +g1,15057:21173478,39120347 +g1,15057:23070353,39120347 +h1,15057:23386499,39120347:0,0,0 +k1,15057:32583029,39120347:9196530 +g1,15057:32583029,39120347 +) +(1,15058:6630773,39786525:25952256,404226,101187 +h1,15058:6630773,39786525:0,0,0 +g1,15058:6946919,39786525 +g1,15058:7263065,39786525 +g1,15058:7579211,39786525 +g1,15058:9792232,39786525 +g1,15058:10424524,39786525 +k1,15058:10424524,39786525:0 +h1,15058:17063584,39786525:0,0,0 +k1,15058:32583029,39786525:15519445 +g1,15058:32583029,39786525 +) +(1,15059:6630773,40452703:25952256,404226,101187 +h1,15059:6630773,40452703:0,0,0 +g1,15059:6946919,40452703 +g1,15059:7263065,40452703 +g1,15059:7579211,40452703 +g1,15059:7895357,40452703 +g1,15059:8211503,40452703 +g1,15059:8527649,40452703 +g1,15059:8843795,40452703 +g1,15059:9159941,40452703 +g1,15059:9792233,40452703 +g1,15059:10424525,40452703 +k1,15059:10424525,40452703:0 +h1,15059:19908897,40452703:0,0,0 +k1,15059:32583029,40452703:12674132 +g1,15059:32583029,40452703 +) +(1,15060:6630773,41118881:25952256,404226,107478 +h1,15060:6630773,41118881:0,0,0 +g1,15060:6946919,41118881 +g1,15060:7263065,41118881 +g1,15060:7579211,41118881 +g1,15060:7895357,41118881 +g1,15060:8211503,41118881 +g1,15060:8527649,41118881 +g1,15060:8843795,41118881 +g1,15060:9159941,41118881 +g1,15060:11056815,41118881 +g1,15060:11689107,41118881 +g1,15060:13902127,41118881 +k1,15060:13902127,41118881:0 +h1,15060:18012021,41118881:0,0,0 +k1,15060:32583029,41118881:14571008 +g1,15060:32583029,41118881 +) +(1,15061:6630773,41785059:25952256,410518,107478 +h1,15061:6630773,41785059:0,0,0 +g1,15061:6946919,41785059 +g1,15061:7263065,41785059 +g1,15061:7579211,41785059 +g1,15061:7895357,41785059 +g1,15061:8211503,41785059 +g1,15061:8527649,41785059 +g1,15061:8843795,41785059 +g1,15061:9159941,41785059 +g1,15061:12005252,41785059 +g1,15061:12637544,41785059 +g1,15061:20541188,41785059 +g1,15061:21173480,41785059 +g1,15061:24651083,41785059 +h1,15061:27496394,41785059:0,0,0 +k1,15061:32583029,41785059:5086635 +g1,15061:32583029,41785059 +) +] +) +g1,15063:32583029,41892537 +g1,15063:6630773,41892537 +g1,15063:6630773,41892537 +g1,15063:32583029,41892537 +g1,15063:32583029,41892537 +) +h1,15063:6630773,42089145:0,0,0 +] +(1,15073:32583029,45706769:0,0,0 +g1,15073:32583029,45706769 +) +) +] +(1,15073:6630773,47279633:25952256,0,0 +h1,15073:6630773,47279633:25952256,0,0 +) +] +h1,15073:4262630,4025873:0,0,0 +] +!28785 +}293 +Input:2283:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2284:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2285:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2286:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2287:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2288:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2289:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2290:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2291:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2292:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2293:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2294:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2295:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2296:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2297:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2298:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2299:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2300:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2301:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2302:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2303:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2304:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!2036 +{294 +[1,15192:4262630,47279633:28320399,43253760,0 +(1,15192:4262630,4025873:0,0,0 +[1,15192:-473657,4025873:25952256,0,0 +(1,15192:-473657,-710414:25952256,0,0 +h1,15192:-473657,-710414:0,0,0 +(1,15192:-473657,-710414:0,0,0 +(1,15192:-473657,-710414:0,0,0 +g1,15192:-473657,-710414 +(1,15192:-473657,-710414:65781,0,65781 +g1,15192:-407876,-710414 +[1,15192:-407876,-644633:0,0,0 ] ) -k1,15161:-473657,-710414:-65781 +k1,15192:-473657,-710414:-65781 ) ) -k1,15161:25478599,-710414:25952256 -g1,15161:25478599,-710414 +k1,15192:25478599,-710414:25952256 +g1,15192:25478599,-710414 ) ] ) -[1,15161:6630773,47279633:25952256,43253760,0 -[1,15161:6630773,4812305:25952256,786432,0 -(1,15161:6630773,4812305:25952256,513147,134348 -(1,15161:6630773,4812305:25952256,513147,134348 -g1,15161:3078558,4812305 -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,2439708:0,1703936,0 -k1,15161:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15161:2537886,2439708:1179648,16384,0 +[1,15192:6630773,47279633:25952256,43253760,0 +[1,15192:6630773,4812305:25952256,786432,0 +(1,15192:6630773,4812305:25952256,505283,134348 +(1,15192:6630773,4812305:25952256,505283,134348 +g1,15192:3078558,4812305 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,2439708:0,1703936,0 +k1,15192:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15192:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15161:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15192:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,2439708:0,1703936,0 -g1,15161:29030814,2439708 -g1,15161:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15161:36151628,1915420:16384,1179648,0 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,2439708:0,1703936,0 +g1,15192:29030814,2439708 +g1,15192:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15192:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15161:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15192:37855564,2439708:1179648,16384,0 ) ) -k1,15161:3078556,2439708:-34777008 +k1,15192:3078556,2439708:-34777008 ) ] -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,49800853:0,16384,2228224 -k1,15161:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15161:2537886,49800853:1179648,16384,0 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,49800853:0,16384,2228224 +k1,15192:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15192:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15161:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15192:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,49800853:0,16384,2228224 -g1,15161:29030814,49800853 -g1,15161:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15161:36151628,51504789:16384,1179648,0 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,49800853:0,16384,2228224 +g1,15192:29030814,49800853 +g1,15192:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15192:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15161:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15192:37855564,49800853:1179648,16384,0 ) ) -k1,15161:3078556,49800853:-34777008 +k1,15192:3078556,49800853:-34777008 ) ] -g1,15161:6630773,4812305 -k1,15161:25712890,4812305:17886740 -g1,15161:29057847,4812305 -g1,15161:29873114,4812305 +g1,15192:6630773,4812305 +g1,15192:6630773,4812305 +g1,15192:8592265,4812305 +g1,15192:11642310,4812305 +g1,15192:15396212,4812305 +k1,15192:31387652,4812305:15991440 ) ) ] -[1,15161:6630773,45706769:25952256,40108032,0 -(1,15161:6630773,45706769:25952256,40108032,0 -(1,15161:6630773,45706769:0,0,0 -g1,15161:6630773,45706769 -) -[1,15161:6630773,45706769:25952256,40108032,0 -(1,15035:6630773,14661426:25952256,9062689,0 -k1,15035:10523651,14661426:3892878 -h1,15034:10523651,14661426:0,0,0 -(1,15034:10523651,14661426:18166500,9062689,0 -(1,15034:10523651,14661426:18167381,9062712,0 -(1,15034:10523651,14661426:18167381,9062712,0 -(1,15034:10523651,14661426:0,9062712,0 -(1,15034:10523651,14661426:0,14155776,0 -(1,15034:10523651,14661426:28377088,14155776,0 +[1,15192:6630773,45706769:25952256,40108032,0 +(1,15192:6630773,45706769:25952256,40108032,0 +(1,15192:6630773,45706769:0,0,0 +g1,15192:6630773,45706769 ) -k1,15034:10523651,14661426:-28377088 +[1,15192:6630773,45706769:25952256,40108032,0 +(1,15066:6630773,14661426:25952256,9062689,0 +k1,15066:10523651,14661426:3892878 +h1,15065:10523651,14661426:0,0,0 +(1,15065:10523651,14661426:18166500,9062689,0 +(1,15065:10523651,14661426:18167381,9062712,0 +(1,15065:10523651,14661426:18167381,9062712,0 +(1,15065:10523651,14661426:0,9062712,0 +(1,15065:10523651,14661426:0,14155776,0 +(1,15065:10523651,14661426:28377088,14155776,0 ) +k1,15065:10523651,14661426:-28377088 ) -g1,15034:28691032,14661426 -) -) -) -g1,15035:28690151,14661426 -k1,15035:32583029,14661426:3892878 -) -(1,15043:6630773,15502914:25952256,513147,134348 -h1,15042:6630773,15502914:983040,0,0 -k1,15042:8724054,15502914:156692 -k1,15042:9985029,15502914:156693 -k1,15042:11427537,15502914:156692 -k1,15042:12676715,15502914:156693 -k1,15042:13189267,15502914:156692 -k1,15042:16320639,15502914:156693 -k1,15042:18343141,15502914:156692 -k1,15042:20538003,15502914:156692 -k1,15042:21310734,15502914:156693 -k1,15042:21823286,15502914:156692 -k1,15042:24664989,15502914:156693 -k1,15042:26013126,15502914:156692 -k1,15042:27262304,15502914:156693 -k1,15042:30114492,15502914:156692 -(1,15042:30114492,15502914:0,452978,115847 -r1,15042:32583029,15502914:2468537,568825,115847 -k1,15042:30114492,15502914:-2468537 -) -(1,15042:30114492,15502914:2468537,452978,115847 -k1,15042:30114492,15502914:3277 -h1,15042:32579752,15502914:0,411205,112570 -) -k1,15042:32583029,15502914:0 -) -(1,15043:6630773,16344402:25952256,513147,126483 -k1,15042:7529125,16344402:246924 -k1,15042:9518651,16344402:246924 -k1,15042:10223672,16344402:246924 -k1,15042:11086634,16344402:246924 -k1,15042:13030940,16344402:246924 -k1,15042:15196758,16344402:246924 -k1,15042:16214385,16344402:246924 -k1,15042:19901294,16344402:246924 -k1,15042:20679715,16344402:246924 -k1,15042:23639174,16344402:246924 -k1,15042:24572260,16344402:246924 -k1,15042:25687536,16344402:246924 -k1,15042:26749728,16344402:246924 -k1,15042:28394535,16344402:246924 -k1,15042:29589110,16344402:246924 -(1,15042:29589110,16344402:0,452978,115847 -r1,15042:32409359,16344402:2820249,568825,115847 -k1,15042:29589110,16344402:-2820249 -) -(1,15042:29589110,16344402:2820249,452978,115847 -k1,15042:29589110,16344402:3277 -h1,15042:32406082,16344402:0,411205,112570 -) -k1,15042:32583029,16344402:0 -) -(1,15043:6630773,17185890:25952256,505283,134348 -k1,15042:7610973,17185890:352365 -k1,15042:9166579,17185890:352365 -k1,15042:12180362,17185890:352366 -k1,15042:13401079,17185890:352365 -k1,15042:15039260,17185890:352365 -k1,15042:16326168,17185890:352365 -k1,15042:17862769,17185890:352365 -k1,15042:20059317,17185890:352365 -k1,15042:21063111,17185890:352366 -k1,15042:25359433,17185890:352365 -k1,15042:27707369,17185890:352365 -k1,15042:31298523,17185890:352365 -k1,15043:32583029,17185890:0 -) -(1,15043:6630773,18027378:25952256,505283,134348 -(1,15042:6630773,18027378:0,452978,115847 -r1,15042:10857869,18027378:4227096,568825,115847 -k1,15042:6630773,18027378:-4227096 -) -(1,15042:6630773,18027378:4227096,452978,115847 -k1,15042:6630773,18027378:3277 -h1,15042:10854592,18027378:0,411205,112570 -) -k1,15042:11013332,18027378:155463 -k1,15042:13547097,18027378:155463 -k1,15042:16373808,18027378:155464 -k1,15042:19931900,18027378:155463 -k1,15042:23210809,18027378:155463 -k1,15042:24127800,18027378:155463 -k1,15042:26937472,18027378:155464 -k1,15042:30093829,18027378:155463 -k1,15042:30605152,18027378:155463 -k1,15042:32583029,18027378:0 -) -(1,15043:6630773,18868866:25952256,513147,126483 -g1,15042:7489294,18868866 -k1,15043:32583029,18868866:21149778 -g1,15043:32583029,18868866 -) -v1,15045:6630773,19926968:0,393216,0 -(1,15055:6630773,24232841:25952256,4699089,196608 -g1,15055:6630773,24232841 -g1,15055:6630773,24232841 -g1,15055:6434165,24232841 -(1,15055:6434165,24232841:0,4699089,196608 -r1,15055:32779637,24232841:26345472,4895697,196608 -k1,15055:6434165,24232841:-26345472 -) -(1,15055:6434165,24232841:26345472,4699089,196608 -[1,15055:6630773,24232841:25952256,4502481,0 -(1,15047:6630773,20134586:25952256,404226,101187 -(1,15046:6630773,20134586:0,0,0 -g1,15046:6630773,20134586 -g1,15046:6630773,20134586 -g1,15046:6303093,20134586 -(1,15046:6303093,20134586:0,0,0 -) -g1,15046:6630773,20134586 -) -g1,15047:10108376,20134586 -g1,15047:11056814,20134586 -h1,15047:14218271,20134586:0,0,0 -k1,15047:32583029,20134586:18364758 -g1,15047:32583029,20134586 -) -(1,15048:6630773,20800764:25952256,404226,107478 -h1,15048:6630773,20800764:0,0,0 -g1,15048:11689104,20800764 -g1,15048:13902124,20800764 -g1,15048:15166707,20800764 -h1,15048:15482853,20800764:0,0,0 -k1,15048:32583029,20800764:17100176 -g1,15048:32583029,20800764 -) -(1,15049:6630773,21466942:25952256,404226,107478 -h1,15049:6630773,21466942:0,0,0 -g1,15049:6946919,21466942 -g1,15049:7263065,21466942 -g1,15049:7579211,21466942 -g1,15049:11689105,21466942 -h1,15049:12005251,21466942:0,0,0 -k1,15049:32583029,21466942:20577778 -g1,15049:32583029,21466942 -) -(1,15050:6630773,22133120:25952256,404226,101187 -h1,15050:6630773,22133120:0,0,0 -g1,15050:6946919,22133120 -g1,15050:7263065,22133120 -g1,15050:7579211,22133120 -g1,15050:11056814,22133120 -g1,15050:11689106,22133120 -g1,15050:15166709,22133120 -g1,15050:15799001,22133120 -g1,15050:19908895,22133120 -h1,15050:20225041,22133120:0,0,0 -k1,15050:32583029,22133120:12357988 -g1,15050:32583029,22133120 -) -(1,15051:6630773,22799298:25952256,404226,101187 -h1,15051:6630773,22799298:0,0,0 -g1,15051:6946919,22799298 -g1,15051:7263065,22799298 -g1,15051:7579211,22799298 -g1,15051:15166708,22799298 -g1,15051:15799000,22799298 -k1,15051:15799000,22799298:0 -h1,15051:22438060,22799298:0,0,0 -k1,15051:32583029,22799298:10144969 -g1,15051:32583029,22799298 -) -(1,15052:6630773,23465476:25952256,404226,82312 -h1,15052:6630773,23465476:0,0,0 -g1,15052:6946919,23465476 -g1,15052:7263065,23465476 -g1,15052:7579211,23465476 -g1,15052:7895357,23465476 -g1,15052:8211503,23465476 -g1,15052:8527649,23465476 -g1,15052:8843795,23465476 -g1,15052:9159941,23465476 -g1,15052:9476087,23465476 -g1,15052:9792233,23465476 -g1,15052:10108379,23465476 -g1,15052:10424525,23465476 -g1,15052:10740671,23465476 -g1,15052:11056817,23465476 -g1,15052:11372963,23465476 -g1,15052:11689109,23465476 -g1,15052:12005255,23465476 -g1,15052:12321401,23465476 -g1,15052:12637547,23465476 -g1,15052:12953693,23465476 -g1,15052:13269839,23465476 -g1,15052:13585985,23465476 -g1,15052:15799005,23465476 -g1,15052:16431297,23465476 -k1,15052:16431297,23465476:0 -h1,15052:19276611,23465476:0,0,0 -k1,15052:32583029,23465476:13306418 -g1,15052:32583029,23465476 -) -(1,15053:6630773,24131654:25952256,404226,101187 -h1,15053:6630773,24131654:0,0,0 -g1,15053:6946919,24131654 -g1,15053:7263065,24131654 -g1,15053:7579211,24131654 -g1,15053:7895357,24131654 -g1,15053:8211503,24131654 -g1,15053:8527649,24131654 -g1,15053:8843795,24131654 -g1,15053:9159941,24131654 -g1,15053:9476087,24131654 -g1,15053:9792233,24131654 -g1,15053:10108379,24131654 -g1,15053:10424525,24131654 -g1,15053:10740671,24131654 -g1,15053:11056817,24131654 -g1,15053:11372963,24131654 -g1,15053:11689109,24131654 -g1,15053:12005255,24131654 -g1,15053:12321401,24131654 -g1,15053:12637547,24131654 -g1,15053:12953693,24131654 -g1,15053:13269839,24131654 -g1,15053:13585985,24131654 -g1,15053:15799005,24131654 -g1,15053:16431297,24131654 -g1,15053:23070358,24131654 -g1,15053:26231816,24131654 -h1,15053:29393273,24131654:0,0,0 -k1,15053:32583029,24131654:3189756 -g1,15053:32583029,24131654 -) -] -) -g1,15055:32583029,24232841 -g1,15055:6630773,24232841 -g1,15055:6630773,24232841 -g1,15055:32583029,24232841 -g1,15055:32583029,24232841 -) -h1,15055:6630773,24429449:0,0,0 -(1,15058:6630773,33949598:25952256,9062689,0 -k1,15058:10523651,33949598:3892878 -h1,15057:10523651,33949598:0,0,0 -(1,15057:10523651,33949598:18166500,9062689,0 -(1,15057:10523651,33949598:18167381,9062712,0 -(1,15057:10523651,33949598:18167381,9062712,0 -(1,15057:10523651,33949598:0,9062712,0 -(1,15057:10523651,33949598:0,14155776,0 -(1,15057:10523651,33949598:28377088,14155776,0 -) -k1,15057:10523651,33949598:-28377088 -) -) -g1,15057:28691032,33949598 -) -) -) -g1,15058:28690151,33949598 -k1,15058:32583029,33949598:3892878 -) -(1,15066:6630773,34791086:25952256,513147,126483 -h1,15065:6630773,34791086:983040,0,0 -k1,15065:8269107,34791086:167706 -k1,15065:11199187,34791086:167737 -k1,15065:14351434,34791086:167737 -k1,15065:15535633,34791086:167736 -k1,15065:18364787,34791086:167737 -k1,15065:20815143,34791086:167737 -k1,15065:22939130,34791086:167737 -k1,15065:23854633,34791086:167737 -k1,15065:24673798,34791086:167737 -k1,15065:25934020,34791086:167737 -(1,15065:25934020,34791086:0,452978,115847 -r1,15065:28402557,34791086:2468537,568825,115847 -k1,15065:25934020,34791086:-2468537 -) -(1,15065:25934020,34791086:2468537,452978,115847 -k1,15065:25934020,34791086:3277 -h1,15065:28399280,34791086:0,411205,112570 -) -k1,15065:28570294,34791086:167737 -k1,15065:31635378,34791086:167737 -k1,15065:32583029,34791086:0 -) -(1,15066:6630773,35632574:25952256,513147,134348 -k1,15065:8269921,35632574:187526 -k1,15065:11650362,35632574:187527 -k1,15065:13525440,35632574:187526 -k1,15065:17067099,35632574:187526 -k1,15065:18539132,35632574:187527 -k1,15065:20593779,35632574:187526 -k1,15065:21529071,35632574:187526 -k1,15065:24014946,35632574:187527 -k1,15065:24668433,35632574:187526 -k1,15065:25875045,35632574:187527 -k1,15065:27246807,35632574:187526 -k1,15065:29278516,35632574:187526 -k1,15065:30996309,35632574:187527 -k1,15065:31835263,35632574:187526 -k1,15065:32583029,35632574:0 -) -(1,15066:6630773,36474062:25952256,513147,134348 -g1,15065:10787721,36474062 -g1,15065:16623702,36474062 -g1,15065:19150114,36474062 -g1,15065:20008635,36474062 -g1,15065:21142407,36474062 -g1,15065:22027798,36474062 -k1,15066:32583029,36474062:7293504 -g1,15066:32583029,36474062 -) -v1,15068:6630773,37707474:0,393216,0 -(1,15161:6630773,45116945:25952256,7802687,589824 -g1,15161:6630773,45116945 -(1,15161:6630773,45116945:25952256,7802687,589824 -(1,15161:6630773,45706769:25952256,8392511,0 -[1,15161:6630773,45706769:25952256,8392511,0 -(1,15161:6630773,45706769:25952256,8366297,0 -r1,15161:6656987,45706769:26214,8366297,0 -[1,15161:6656987,45706769:25899828,8366297,0 -(1,15161:6656987,45116945:25899828,7186649,0 -[1,15161:7246811,45116945:24720180,7186649,0 -(1,15069:7246811,39092181:24720180,1161885,196608 -(1,15068:7246811,39092181:0,1161885,196608 -r1,15161:8794447,39092181:1547636,1358493,196608 -k1,15068:7246811,39092181:-1547636 -) -(1,15068:7246811,39092181:1547636,1161885,196608 -) -k1,15068:8991338,39092181:196891 -k1,15068:12954522,39092181:202073 -k1,15068:15941219,39092181:202072 -(1,15068:15941219,39092181:0,452978,115847 -r1,15161:18409756,39092181:2468537,568825,115847 -k1,15068:15941219,39092181:-2468537 -) -(1,15068:15941219,39092181:2468537,452978,115847 -k1,15068:15941219,39092181:3277 -h1,15068:18406479,39092181:0,411205,112570 -) -k1,15068:18611829,39092181:202073 -k1,15068:20034182,39092181:202073 -(1,15068:20034182,39092181:0,452978,115847 -r1,15161:24261278,39092181:4227096,568825,115847 -k1,15068:20034182,39092181:-4227096 -) -(1,15068:20034182,39092181:4227096,452978,115847 -k1,15068:20034182,39092181:3277 -h1,15068:24258001,39092181:0,411205,112570 -) -k1,15068:24631839,39092181:196891 -k1,15068:27618598,39092181:196891 -(1,15068:27618598,39092181:0,452978,115847 -r1,15161:30087135,39092181:2468537,568825,115847 -k1,15068:27618598,39092181:-2468537 -) -(1,15068:27618598,39092181:2468537,452978,115847 -k1,15068:27618598,39092181:3277 -h1,15068:30083858,39092181:0,411205,112570 -) -k1,15068:30284026,39092181:196891 -k1,15068:31966991,39092181:0 -) -(1,15069:7246811,39933669:24720180,513147,134348 -k1,15068:8166180,39933669:233207 -k1,15068:9170091,39933669:233208 -k1,15068:12475626,39933669:233207 -k1,15068:13064694,39933669:233208 -k1,15068:16272580,39933669:233207 -k1,15068:18545267,39933669:233207 -k1,15068:20159319,39933669:233208 -k1,15068:20924023,39933669:233207 -k1,15068:22511204,39933669:233207 -k1,15068:24721633,39933669:233208 -k1,15068:25641002,39933669:233207 -k1,15068:26893295,39933669:233208 -k1,15068:30101181,39933669:233207 -k1,15068:31966991,39933669:0 -) -(1,15069:7246811,40775157:24720180,505283,134348 -k1,15068:8486816,40775157:135723 -k1,15068:9370304,40775157:135722 -k1,15068:11856148,40775157:135723 -k1,15068:17802292,40775157:135722 -k1,15068:19721250,40775157:135723 -k1,15068:21592366,40775157:135723 -(1,15068:21592366,40775157:0,452978,115847 -r1,15161:25819462,40775157:4227096,568825,115847 -k1,15068:21592366,40775157:-4227096 -) -(1,15068:21592366,40775157:4227096,452978,115847 -k1,15068:21592366,40775157:3277 -h1,15068:25816185,40775157:0,411205,112570 -) -k1,15068:25955184,40775157:135722 -k1,15068:27294148,40775157:135723 -k1,15068:27961367,40775157:135722 -k1,15068:29163361,40775157:135723 -k1,15068:31966991,40775157:0 -) -(1,15069:7246811,41616645:24720180,513147,126483 -k1,15068:9615119,41616645:297370 -k1,15068:10860139,41616645:297369 -k1,15068:15030687,41616645:297370 -k1,15068:15940818,41616645:297369 -k1,15068:19313793,41616645:297370 -k1,15068:21036570,41616645:297369 -k1,15068:21993232,41616645:297370 -k1,15068:23309686,41616645:297369 -k1,15068:25287399,41616645:297370 -k1,15068:26244060,41616645:297369 -k1,15068:29383071,41616645:297370 -k1,15068:30947906,41616645:297369 -k1,15068:31966991,41616645:0 -) -(1,15069:7246811,42458133:24720180,513147,134348 -g1,15068:11059695,42458133 -g1,15068:12308811,42458133 -g1,15068:13527125,42458133 -g1,15068:15114407,42458133 -g1,15068:17142090,42458133 -g1,15068:18288970,42458133 -g1,15068:19954895,42458133 -k1,15069:31966991,42458133:8812628 -g1,15069:31966991,42458133 -) -(1,15071:7246811,43299621:24720180,505283,134348 -h1,15070:7246811,43299621:983040,0,0 -k1,15070:11472101,43299621:452382 -(1,15070:11472101,43299621:0,452978,115847 -r1,15161:15699197,43299621:4227096,568825,115847 -k1,15070:11472101,43299621:-4227096 -) -(1,15070:11472101,43299621:4227096,452978,115847 -k1,15070:11472101,43299621:3277 -h1,15070:15695920,43299621:0,411205,112570 -) -k1,15070:16151579,43299621:452382 -k1,15070:18982263,43299621:452382 -k1,15070:20223044,43299621:452383 -k1,15070:24078055,43299621:452382 -k1,15070:26990659,43299621:452382 -k1,15070:28574848,43299621:452382 -k1,15070:31966991,43299621:0 -) -(1,15071:7246811,44141109:24720180,505283,134348 -k1,15070:10240349,44141109:203670 -(1,15070:10240349,44141109:0,452978,115847 -r1,15161:12708886,44141109:2468537,568825,115847 -k1,15070:10240349,44141109:-2468537 -) -(1,15070:10240349,44141109:2468537,452978,115847 -k1,15070:10240349,44141109:3277 -h1,15070:12705609,44141109:0,411205,112570 -) -k1,15070:12912556,44141109:203670 -k1,15070:14799191,44141109:203670 -k1,15070:15358721,44141109:203670 -k1,15070:17435410,44141109:203670 -k1,15070:20613760,44141109:203671 -k1,15070:22683240,44141109:203670 -k1,15070:23573072,44141109:203670 -k1,15070:24547445,44141109:203670 -k1,15070:27823443,44141109:203670 -k1,15070:28678541,44141109:203670 -k1,15070:29629977,44141109:203670 -k1,15070:31966991,44141109:0 -) -(1,15071:7246811,44982597:24720180,505283,134348 -k1,15070:8076429,44982597:213580 -k1,15070:10175480,44982597:213580 -k1,15070:11756140,44982597:213579 -k1,15070:15063675,44982597:213580 -k1,15070:17264307,44982597:213580 -k1,15070:19487876,44982597:213580 -k1,15070:20720540,44982597:213579 -k1,15070:22799930,44982597:213580 -k1,15070:24543776,44982597:213580 -k1,15070:25408784,44982597:213580 -k1,15070:26370129,44982597:213579 -k1,15070:29100946,44982597:213580 -k1,15070:31257013,44982597:213580 -(1,15070:31257013,44982597:0,452978,115847 -r1,15161:31966991,44982597:709978,568825,115847 -k1,15070:31257013,44982597:-709978 -) -(1,15070:31257013,44982597:709978,452978,115847 -k1,15070:31257013,44982597:3277 -h1,15070:31963714,44982597:0,411205,112570 -) -k1,15070:31966991,44982597:0 -) -] -) -] -r1,15161:32583029,45706769:26214,8366297,0 -) -] -) -) -g1,15161:32583029,45116945 -) -] -(1,15161:32583029,45706769:0,0,0 -g1,15161:32583029,45706769 -) -) -] -(1,15161:6630773,47279633:25952256,0,0 -h1,15161:6630773,47279633:25952256,0,0 +) +g1,15065:28691032,14661426 +) +) +) +g1,15066:28690151,14661426 +k1,15066:32583029,14661426:3892878 +) +(1,15074:6630773,15502914:25952256,513147,134348 +h1,15073:6630773,15502914:983040,0,0 +k1,15073:8724054,15502914:156692 +k1,15073:9985029,15502914:156693 +k1,15073:11427537,15502914:156692 +k1,15073:12676715,15502914:156693 +k1,15073:13189267,15502914:156692 +k1,15073:16320639,15502914:156693 +k1,15073:18343141,15502914:156692 +k1,15073:20538003,15502914:156692 +k1,15073:21310734,15502914:156693 +k1,15073:21823286,15502914:156692 +k1,15073:24664989,15502914:156693 +k1,15073:26013126,15502914:156692 +k1,15073:27262304,15502914:156693 +k1,15073:30114492,15502914:156692 +(1,15073:30114492,15502914:0,452978,115847 +r1,15073:32583029,15502914:2468537,568825,115847 +k1,15073:30114492,15502914:-2468537 +) +(1,15073:30114492,15502914:2468537,452978,115847 +k1,15073:30114492,15502914:3277 +h1,15073:32579752,15502914:0,411205,112570 +) +k1,15073:32583029,15502914:0 +) +(1,15074:6630773,16344402:25952256,513147,126483 +k1,15073:7529125,16344402:246924 +k1,15073:9518651,16344402:246924 +k1,15073:10223672,16344402:246924 +k1,15073:11086634,16344402:246924 +k1,15073:13030940,16344402:246924 +k1,15073:15196758,16344402:246924 +k1,15073:16214385,16344402:246924 +k1,15073:19901294,16344402:246924 +k1,15073:20679715,16344402:246924 +k1,15073:23639174,16344402:246924 +k1,15073:24572260,16344402:246924 +k1,15073:25687536,16344402:246924 +k1,15073:26749728,16344402:246924 +k1,15073:28394535,16344402:246924 +k1,15073:29589110,16344402:246924 +(1,15073:29589110,16344402:0,452978,115847 +r1,15073:32409359,16344402:2820249,568825,115847 +k1,15073:29589110,16344402:-2820249 +) +(1,15073:29589110,16344402:2820249,452978,115847 +k1,15073:29589110,16344402:3277 +h1,15073:32406082,16344402:0,411205,112570 +) +k1,15073:32583029,16344402:0 +) +(1,15074:6630773,17185890:25952256,505283,134348 +k1,15073:7610973,17185890:352365 +k1,15073:9166579,17185890:352365 +k1,15073:12180362,17185890:352366 +k1,15073:13401079,17185890:352365 +k1,15073:15039260,17185890:352365 +k1,15073:16326168,17185890:352365 +k1,15073:17862769,17185890:352365 +k1,15073:20059317,17185890:352365 +k1,15073:21063111,17185890:352366 +k1,15073:25359433,17185890:352365 +k1,15073:27707369,17185890:352365 +k1,15073:31298523,17185890:352365 +k1,15074:32583029,17185890:0 +) +(1,15074:6630773,18027378:25952256,505283,134348 +(1,15073:6630773,18027378:0,452978,115847 +r1,15073:10857869,18027378:4227096,568825,115847 +k1,15073:6630773,18027378:-4227096 +) +(1,15073:6630773,18027378:4227096,452978,115847 +k1,15073:6630773,18027378:3277 +h1,15073:10854592,18027378:0,411205,112570 +) +k1,15073:11013332,18027378:155463 +k1,15073:13547097,18027378:155463 +k1,15073:16373808,18027378:155464 +k1,15073:19931900,18027378:155463 +k1,15073:23210809,18027378:155463 +k1,15073:24127800,18027378:155463 +k1,15073:26937472,18027378:155464 +k1,15073:30093829,18027378:155463 +k1,15073:30605152,18027378:155463 +k1,15073:32583029,18027378:0 +) +(1,15074:6630773,18868866:25952256,513147,126483 +g1,15073:7489294,18868866 +k1,15074:32583029,18868866:21149778 +g1,15074:32583029,18868866 +) +v1,15076:6630773,19926968:0,393216,0 +(1,15086:6630773,24232841:25952256,4699089,196608 +g1,15086:6630773,24232841 +g1,15086:6630773,24232841 +g1,15086:6434165,24232841 +(1,15086:6434165,24232841:0,4699089,196608 +r1,15086:32779637,24232841:26345472,4895697,196608 +k1,15086:6434165,24232841:-26345472 +) +(1,15086:6434165,24232841:26345472,4699089,196608 +[1,15086:6630773,24232841:25952256,4502481,0 +(1,15078:6630773,20134586:25952256,404226,101187 +(1,15077:6630773,20134586:0,0,0 +g1,15077:6630773,20134586 +g1,15077:6630773,20134586 +g1,15077:6303093,20134586 +(1,15077:6303093,20134586:0,0,0 +) +g1,15077:6630773,20134586 +) +g1,15078:10108376,20134586 +g1,15078:11056814,20134586 +h1,15078:14218271,20134586:0,0,0 +k1,15078:32583029,20134586:18364758 +g1,15078:32583029,20134586 +) +(1,15079:6630773,20800764:25952256,404226,107478 +h1,15079:6630773,20800764:0,0,0 +g1,15079:11689104,20800764 +g1,15079:13902124,20800764 +g1,15079:15166707,20800764 +h1,15079:15482853,20800764:0,0,0 +k1,15079:32583029,20800764:17100176 +g1,15079:32583029,20800764 +) +(1,15080:6630773,21466942:25952256,404226,107478 +h1,15080:6630773,21466942:0,0,0 +g1,15080:6946919,21466942 +g1,15080:7263065,21466942 +g1,15080:7579211,21466942 +g1,15080:11689105,21466942 +h1,15080:12005251,21466942:0,0,0 +k1,15080:32583029,21466942:20577778 +g1,15080:32583029,21466942 +) +(1,15081:6630773,22133120:25952256,404226,101187 +h1,15081:6630773,22133120:0,0,0 +g1,15081:6946919,22133120 +g1,15081:7263065,22133120 +g1,15081:7579211,22133120 +g1,15081:11056814,22133120 +g1,15081:11689106,22133120 +g1,15081:15166709,22133120 +g1,15081:15799001,22133120 +g1,15081:19908895,22133120 +h1,15081:20225041,22133120:0,0,0 +k1,15081:32583029,22133120:12357988 +g1,15081:32583029,22133120 +) +(1,15082:6630773,22799298:25952256,404226,101187 +h1,15082:6630773,22799298:0,0,0 +g1,15082:6946919,22799298 +g1,15082:7263065,22799298 +g1,15082:7579211,22799298 +g1,15082:15166708,22799298 +g1,15082:15799000,22799298 +k1,15082:15799000,22799298:0 +h1,15082:22438060,22799298:0,0,0 +k1,15082:32583029,22799298:10144969 +g1,15082:32583029,22799298 +) +(1,15083:6630773,23465476:25952256,404226,82312 +h1,15083:6630773,23465476:0,0,0 +g1,15083:6946919,23465476 +g1,15083:7263065,23465476 +g1,15083:7579211,23465476 +g1,15083:7895357,23465476 +g1,15083:8211503,23465476 +g1,15083:8527649,23465476 +g1,15083:8843795,23465476 +g1,15083:9159941,23465476 +g1,15083:9476087,23465476 +g1,15083:9792233,23465476 +g1,15083:10108379,23465476 +g1,15083:10424525,23465476 +g1,15083:10740671,23465476 +g1,15083:11056817,23465476 +g1,15083:11372963,23465476 +g1,15083:11689109,23465476 +g1,15083:12005255,23465476 +g1,15083:12321401,23465476 +g1,15083:12637547,23465476 +g1,15083:12953693,23465476 +g1,15083:13269839,23465476 +g1,15083:13585985,23465476 +g1,15083:15799005,23465476 +g1,15083:16431297,23465476 +k1,15083:16431297,23465476:0 +h1,15083:19276611,23465476:0,0,0 +k1,15083:32583029,23465476:13306418 +g1,15083:32583029,23465476 +) +(1,15084:6630773,24131654:25952256,404226,101187 +h1,15084:6630773,24131654:0,0,0 +g1,15084:6946919,24131654 +g1,15084:7263065,24131654 +g1,15084:7579211,24131654 +g1,15084:7895357,24131654 +g1,15084:8211503,24131654 +g1,15084:8527649,24131654 +g1,15084:8843795,24131654 +g1,15084:9159941,24131654 +g1,15084:9476087,24131654 +g1,15084:9792233,24131654 +g1,15084:10108379,24131654 +g1,15084:10424525,24131654 +g1,15084:10740671,24131654 +g1,15084:11056817,24131654 +g1,15084:11372963,24131654 +g1,15084:11689109,24131654 +g1,15084:12005255,24131654 +g1,15084:12321401,24131654 +g1,15084:12637547,24131654 +g1,15084:12953693,24131654 +g1,15084:13269839,24131654 +g1,15084:13585985,24131654 +g1,15084:15799005,24131654 +g1,15084:16431297,24131654 +g1,15084:23070358,24131654 +g1,15084:26231816,24131654 +h1,15084:29393273,24131654:0,0,0 +k1,15084:32583029,24131654:3189756 +g1,15084:32583029,24131654 +) +] +) +g1,15086:32583029,24232841 +g1,15086:6630773,24232841 +g1,15086:6630773,24232841 +g1,15086:32583029,24232841 +g1,15086:32583029,24232841 +) +h1,15086:6630773,24429449:0,0,0 +(1,15089:6630773,33949598:25952256,9062689,0 +k1,15089:10523651,33949598:3892878 +h1,15088:10523651,33949598:0,0,0 +(1,15088:10523651,33949598:18166500,9062689,0 +(1,15088:10523651,33949598:18167381,9062712,0 +(1,15088:10523651,33949598:18167381,9062712,0 +(1,15088:10523651,33949598:0,9062712,0 +(1,15088:10523651,33949598:0,14155776,0 +(1,15088:10523651,33949598:28377088,14155776,0 +) +k1,15088:10523651,33949598:-28377088 +) +) +g1,15088:28691032,33949598 +) +) +) +g1,15089:28690151,33949598 +k1,15089:32583029,33949598:3892878 +) +(1,15097:6630773,34791086:25952256,513147,126483 +h1,15096:6630773,34791086:983040,0,0 +k1,15096:8269107,34791086:167706 +k1,15096:11199187,34791086:167737 +k1,15096:14351434,34791086:167737 +k1,15096:15535633,34791086:167736 +k1,15096:18364787,34791086:167737 +k1,15096:20815143,34791086:167737 +k1,15096:22939130,34791086:167737 +k1,15096:23854633,34791086:167737 +k1,15096:24673798,34791086:167737 +k1,15096:25934020,34791086:167737 +(1,15096:25934020,34791086:0,452978,115847 +r1,15096:28402557,34791086:2468537,568825,115847 +k1,15096:25934020,34791086:-2468537 +) +(1,15096:25934020,34791086:2468537,452978,115847 +k1,15096:25934020,34791086:3277 +h1,15096:28399280,34791086:0,411205,112570 +) +k1,15096:28570294,34791086:167737 +k1,15096:31635378,34791086:167737 +k1,15096:32583029,34791086:0 +) +(1,15097:6630773,35632574:25952256,513147,134348 +k1,15096:8269921,35632574:187526 +k1,15096:11650362,35632574:187527 +k1,15096:13525440,35632574:187526 +k1,15096:17067099,35632574:187526 +k1,15096:18539132,35632574:187527 +k1,15096:20593779,35632574:187526 +k1,15096:21529071,35632574:187526 +k1,15096:24014946,35632574:187527 +k1,15096:24668433,35632574:187526 +k1,15096:25875045,35632574:187527 +k1,15096:27246807,35632574:187526 +k1,15096:29278516,35632574:187526 +k1,15096:30996309,35632574:187527 +k1,15096:31835263,35632574:187526 +k1,15096:32583029,35632574:0 +) +(1,15097:6630773,36474062:25952256,513147,134348 +g1,15096:10787721,36474062 +g1,15096:16623702,36474062 +g1,15096:19150114,36474062 +g1,15096:20008635,36474062 +g1,15096:21142407,36474062 +g1,15096:22027798,36474062 +k1,15097:32583029,36474062:7293504 +g1,15097:32583029,36474062 +) +v1,15099:6630773,37707474:0,393216,0 +(1,15192:6630773,45116945:25952256,7802687,589824 +g1,15192:6630773,45116945 +(1,15192:6630773,45116945:25952256,7802687,589824 +(1,15192:6630773,45706769:25952256,8392511,0 +[1,15192:6630773,45706769:25952256,8392511,0 +(1,15192:6630773,45706769:25952256,8366297,0 +r1,15192:6656987,45706769:26214,8366297,0 +[1,15192:6656987,45706769:25899828,8366297,0 +(1,15192:6656987,45116945:25899828,7186649,0 +[1,15192:7246811,45116945:24720180,7186649,0 +(1,15100:7246811,39092181:24720180,1161885,196608 +(1,15099:7246811,39092181:0,1161885,196608 +r1,15192:8794447,39092181:1547636,1358493,196608 +k1,15099:7246811,39092181:-1547636 +) +(1,15099:7246811,39092181:1547636,1161885,196608 +) +k1,15099:8991338,39092181:196891 +k1,15099:12954522,39092181:202073 +k1,15099:15941219,39092181:202072 +(1,15099:15941219,39092181:0,452978,115847 +r1,15192:18409756,39092181:2468537,568825,115847 +k1,15099:15941219,39092181:-2468537 +) +(1,15099:15941219,39092181:2468537,452978,115847 +k1,15099:15941219,39092181:3277 +h1,15099:18406479,39092181:0,411205,112570 +) +k1,15099:18611829,39092181:202073 +k1,15099:20034182,39092181:202073 +(1,15099:20034182,39092181:0,452978,115847 +r1,15192:24261278,39092181:4227096,568825,115847 +k1,15099:20034182,39092181:-4227096 +) +(1,15099:20034182,39092181:4227096,452978,115847 +k1,15099:20034182,39092181:3277 +h1,15099:24258001,39092181:0,411205,112570 +) +k1,15099:24631839,39092181:196891 +k1,15099:27618598,39092181:196891 +(1,15099:27618598,39092181:0,452978,115847 +r1,15192:30087135,39092181:2468537,568825,115847 +k1,15099:27618598,39092181:-2468537 +) +(1,15099:27618598,39092181:2468537,452978,115847 +k1,15099:27618598,39092181:3277 +h1,15099:30083858,39092181:0,411205,112570 +) +k1,15099:30284026,39092181:196891 +k1,15099:31966991,39092181:0 +) +(1,15100:7246811,39933669:24720180,513147,134348 +k1,15099:8166180,39933669:233207 +k1,15099:9170091,39933669:233208 +k1,15099:12475626,39933669:233207 +k1,15099:13064694,39933669:233208 +k1,15099:16272580,39933669:233207 +k1,15099:18545267,39933669:233207 +k1,15099:20159319,39933669:233208 +k1,15099:20924023,39933669:233207 +k1,15099:22511204,39933669:233207 +k1,15099:24721633,39933669:233208 +k1,15099:25641002,39933669:233207 +k1,15099:26893295,39933669:233208 +k1,15099:30101181,39933669:233207 +k1,15099:31966991,39933669:0 +) +(1,15100:7246811,40775157:24720180,505283,134348 +k1,15099:8486816,40775157:135723 +k1,15099:9370304,40775157:135722 +k1,15099:11856148,40775157:135723 +k1,15099:17802292,40775157:135722 +k1,15099:19721250,40775157:135723 +k1,15099:21592366,40775157:135723 +(1,15099:21592366,40775157:0,452978,115847 +r1,15192:25819462,40775157:4227096,568825,115847 +k1,15099:21592366,40775157:-4227096 +) +(1,15099:21592366,40775157:4227096,452978,115847 +k1,15099:21592366,40775157:3277 +h1,15099:25816185,40775157:0,411205,112570 +) +k1,15099:25955184,40775157:135722 +k1,15099:27294148,40775157:135723 +k1,15099:27961367,40775157:135722 +k1,15099:29163361,40775157:135723 +k1,15099:31966991,40775157:0 +) +(1,15100:7246811,41616645:24720180,513147,126483 +k1,15099:9615119,41616645:297370 +k1,15099:10860139,41616645:297369 +k1,15099:15030687,41616645:297370 +k1,15099:15940818,41616645:297369 +k1,15099:19313793,41616645:297370 +k1,15099:21036570,41616645:297369 +k1,15099:21993232,41616645:297370 +k1,15099:23309686,41616645:297369 +k1,15099:25287399,41616645:297370 +k1,15099:26244060,41616645:297369 +k1,15099:29383071,41616645:297370 +k1,15099:30947906,41616645:297369 +k1,15099:31966991,41616645:0 +) +(1,15100:7246811,42458133:24720180,513147,134348 +g1,15099:11059695,42458133 +g1,15099:12308811,42458133 +g1,15099:13527125,42458133 +g1,15099:15114407,42458133 +g1,15099:17142090,42458133 +g1,15099:18288970,42458133 +g1,15099:19954895,42458133 +k1,15100:31966991,42458133:8812628 +g1,15100:31966991,42458133 +) +(1,15102:7246811,43299621:24720180,505283,134348 +h1,15101:7246811,43299621:983040,0,0 +k1,15101:11198629,43299621:178910 +(1,15101:11198629,43299621:0,452978,115847 +r1,15192:15425725,43299621:4227096,568825,115847 +k1,15101:11198629,43299621:-4227096 +) +(1,15101:11198629,43299621:4227096,452978,115847 +k1,15101:11198629,43299621:3277 +h1,15101:15422448,43299621:0,411205,112570 +) +k1,15101:15604635,43299621:178910 +k1,15101:18161848,43299621:178911 +k1,15101:19129156,43299621:178910 +k1,15101:22710695,43299621:178910 +k1,15101:25349827,43299621:178910 +k1,15101:26660545,43299621:178911 +k1,15101:30231598,43299621:178910 +k1,15102:31966991,43299621:0 +) +(1,15102:7246811,44141109:24720180,505283,134348 +k1,15101:8772000,44141109:257723 +(1,15101:8772000,44141109:0,452978,115847 +r1,15192:11240537,44141109:2468537,568825,115847 +k1,15101:8772000,44141109:-2468537 +) +(1,15101:8772000,44141109:2468537,452978,115847 +k1,15101:8772000,44141109:3277 +h1,15101:11237260,44141109:0,411205,112570 +) +k1,15101:11498261,44141109:257724 +k1,15101:13438949,44141109:257723 +k1,15101:14052533,44141109:257724 +k1,15101:16183275,44141109:257723 +k1,15101:19415678,44141109:257724 +k1,15101:21539211,44141109:257723 +k1,15101:22483097,44141109:257724 +k1,15101:23511523,44141109:257723 +k1,15101:26841575,44141109:257724 +k1,15101:27750726,44141109:257723 +k1,15101:28756216,44141109:257724 +k1,15101:31350953,44141109:257723 +k1,15101:31966991,44141109:0 +) +(1,15102:7246811,44982597:24720180,505283,134348 +k1,15101:9414997,44982597:282715 +k1,15101:11064792,44982597:282714 +k1,15101:14441462,44982597:282715 +k1,15101:16711228,44982597:282714 +k1,15101:19003932,44982597:282715 +k1,15101:20305731,44982597:282714 +k1,15101:22454256,44982597:282715 +k1,15101:24267237,44982597:282715 +k1,15101:25201379,44982597:282714 +k1,15101:26231860,44982597:282715 +k1,15101:29031811,44982597:282714 +k1,15101:31257013,44982597:282715 +(1,15101:31257013,44982597:0,452978,115847 +r1,15192:31966991,44982597:709978,568825,115847 +k1,15101:31257013,44982597:-709978 +) +(1,15101:31257013,44982597:709978,452978,115847 +k1,15101:31257013,44982597:3277 +h1,15101:31963714,44982597:0,411205,112570 +) +k1,15101:31966991,44982597:0 +) +] +) +] +r1,15192:32583029,45706769:26214,8366297,0 +) +] +) +) +g1,15192:32583029,45116945 +) +] +(1,15192:32583029,45706769:0,0,0 +g1,15192:32583029,45706769 +) +) +] +(1,15192:6630773,47279633:25952256,0,0 +h1,15192:6630773,47279633:25952256,0,0 ) ] -h1,15161:4262630,4025873:0,0,0 +h1,15192:4262630,4025873:0,0,0 ] -!19020 -}293 +!19099 +}294 !12 -{294 -[1,15161:4262630,47279633:28320399,43253760,0 -(1,15161:4262630,4025873:0,0,0 -[1,15161:-473657,4025873:25952256,0,0 -(1,15161:-473657,-710414:25952256,0,0 -h1,15161:-473657,-710414:0,0,0 -(1,15161:-473657,-710414:0,0,0 -(1,15161:-473657,-710414:0,0,0 -g1,15161:-473657,-710414 -(1,15161:-473657,-710414:65781,0,65781 -g1,15161:-407876,-710414 -[1,15161:-407876,-644633:0,0,0 +{295 +[1,15192:4262630,47279633:28320399,43253760,0 +(1,15192:4262630,4025873:0,0,0 +[1,15192:-473657,4025873:25952256,0,0 +(1,15192:-473657,-710414:25952256,0,0 +h1,15192:-473657,-710414:0,0,0 +(1,15192:-473657,-710414:0,0,0 +(1,15192:-473657,-710414:0,0,0 +g1,15192:-473657,-710414 +(1,15192:-473657,-710414:65781,0,65781 +g1,15192:-407876,-710414 +[1,15192:-407876,-644633:0,0,0 ] ) -k1,15161:-473657,-710414:-65781 +k1,15192:-473657,-710414:-65781 ) ) -k1,15161:25478599,-710414:25952256 -g1,15161:25478599,-710414 +k1,15192:25478599,-710414:25952256 +g1,15192:25478599,-710414 ) ] ) -[1,15161:6630773,47279633:25952256,43253760,0 -[1,15161:6630773,4812305:25952256,786432,0 -(1,15161:6630773,4812305:25952256,505283,134348 -(1,15161:6630773,4812305:25952256,505283,134348 -g1,15161:3078558,4812305 -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,2439708:0,1703936,0 -k1,15161:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15161:2537886,2439708:1179648,16384,0 +[1,15192:6630773,47279633:25952256,43253760,0 +[1,15192:6630773,4812305:25952256,786432,0 +(1,15192:6630773,4812305:25952256,513147,134348 +(1,15192:6630773,4812305:25952256,513147,134348 +g1,15192:3078558,4812305 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,2439708:0,1703936,0 +k1,15192:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15192:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15161:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15192:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,2439708:0,1703936,0 -g1,15161:29030814,2439708 -g1,15161:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15161:36151628,1915420:16384,1179648,0 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,2439708:0,1703936,0 +g1,15192:29030814,2439708 +g1,15192:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15192:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15161:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15192:37855564,2439708:1179648,16384,0 ) ) -k1,15161:3078556,2439708:-34777008 +k1,15192:3078556,2439708:-34777008 ) ] -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,49800853:0,16384,2228224 -k1,15161:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15161:2537886,49800853:1179648,16384,0 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,49800853:0,16384,2228224 +k1,15192:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15192:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15161:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15192:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,15161:3078558,4812305:0,0,0 -(1,15161:3078558,49800853:0,16384,2228224 -g1,15161:29030814,49800853 -g1,15161:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15161:36151628,51504789:16384,1179648,0 +[1,15192:3078558,4812305:0,0,0 +(1,15192:3078558,49800853:0,16384,2228224 +g1,15192:29030814,49800853 +g1,15192:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15192:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15161:37855564,49800853:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15192:37855564,49800853:1179648,16384,0 ) ) -k1,15161:3078556,49800853:-34777008 +k1,15192:3078556,49800853:-34777008 ) ] -g1,15161:6630773,4812305 -g1,15161:6630773,4812305 -g1,15161:8592265,4812305 -g1,15161:11642310,4812305 -g1,15161:15396212,4812305 -k1,15161:31387652,4812305:15991440 -) -) -] -[1,15161:6630773,45706769:25952256,40108032,0 -(1,15161:6630773,45706769:25952256,40108032,0 -(1,15161:6630773,45706769:0,0,0 -g1,15161:6630773,45706769 -) -[1,15161:6630773,45706769:25952256,40108032,0 -v1,15161:6630773,6254097:0,393216,0 -(1,15161:6630773,45116945:25952256,39256064,616038 -g1,15161:6630773,45116945 -(1,15161:6630773,45116945:25952256,39256064,616038 -(1,15161:6630773,45732983:25952256,39872102,0 -[1,15161:6630773,45732983:25952256,39872102,0 -(1,15161:6630773,45706769:25952256,39845888,0 -r1,15161:6656987,45706769:26214,39845888,0 -[1,15161:6656987,45706769:25899828,39845888,0 -(1,15161:6656987,45116945:25899828,38666240,0 -[1,15161:7246811,45116945:24720180,38666240,0 -(1,15071:7246811,6955988:24720180,505283,134348 -k1,15070:9309418,6955988:143713 -k1,15070:9808991,6955988:143713 -k1,15070:11812616,6955988:143713 -(1,15070:11812616,6955988:0,452978,115847 -r1,15161:12170882,6955988:358266,568825,115847 -k1,15070:11812616,6955988:-358266 -) -(1,15070:11812616,6955988:358266,452978,115847 -k1,15070:11812616,6955988:3277 -h1,15070:12167605,6955988:0,411205,112570 -) -k1,15070:12314596,6955988:143714 -k1,15070:12989806,6955988:143713 -k1,15070:15870302,6955988:143713 -k1,15070:16967564,6955988:143713 -k1,15070:18389229,6955988:143713 -k1,15070:19818758,6955988:143713 -k1,15070:20578509,6955988:143713 -k1,15070:22188918,6955988:143713 -k1,15070:24203685,6955988:143714 -k1,15070:26483216,6955988:143713 -k1,15070:26982789,6955988:143713 -k1,15070:30101181,6955988:143713 -k1,15070:31966991,6955988:0 -) -(1,15071:7246811,7797476:24720180,513147,126483 -k1,15070:8254451,7797476:246112 -k1,15070:10568878,7797476:246111 -k1,15070:11474282,7797476:246112 -k1,15070:12877104,7797476:246112 -k1,15070:13782507,7797476:246111 -k1,15070:15047704,7797476:246112 -k1,15070:18319612,7797476:246111 -(1,15070:18319612,7797476:0,452978,115847 -r1,15161:20788149,7797476:2468537,568825,115847 -k1,15070:18319612,7797476:-2468537 -) -(1,15070:18319612,7797476:2468537,452978,115847 -k1,15070:18319612,7797476:3277 -h1,15070:20784872,7797476:0,411205,112570 -) -k1,15070:21207931,7797476:246112 -(1,15070:21207931,7797476:0,452978,115847 -r1,15161:24028180,7797476:2820249,568825,115847 -k1,15070:21207931,7797476:-2820249 -) -(1,15070:21207931,7797476:2820249,452978,115847 -k1,15070:21207931,7797476:3277 -h1,15070:24024903,7797476:0,411205,112570 -) -k1,15070:24447962,7797476:246112 -(1,15070:24447962,7797476:0,452978,115847 -r1,15161:26564787,7797476:2116825,568825,115847 -k1,15070:24447962,7797476:-2116825 -) -(1,15070:24447962,7797476:2116825,452978,115847 -k1,15070:24447962,7797476:3277 -h1,15070:26561510,7797476:0,411205,112570 -) -k1,15070:26810898,7797476:246111 -k1,15070:27739895,7797476:246112 -(1,15070:27739895,7797476:0,452978,115847 -r1,15161:31966991,7797476:4227096,568825,115847 -k1,15070:27739895,7797476:-4227096 -) -(1,15070:27739895,7797476:4227096,452978,115847 -k1,15070:27739895,7797476:3277 -h1,15070:31963714,7797476:0,411205,112570 -) -k1,15070:31966991,7797476:0 -) -(1,15071:7246811,8638964:24720180,513147,134348 -k1,15070:9349962,8638964:217680 -k1,15070:10853459,8638964:217681 -k1,15070:12850441,8638964:217680 -k1,15070:14087207,8638964:217681 -k1,15070:15635923,8638964:217680 -k1,15070:17540500,8638964:217680 -k1,15070:18954868,8638964:217681 -k1,15070:22244876,8638964:217680 -k1,15070:23113984,8638964:217680 -k1,15070:25028392,8638964:217681 -k1,15070:28271869,8638964:217680 -k1,15070:30350117,8638964:217681 -k1,15070:31219225,8638964:217680 -k1,15070:31966991,8638964:0 -) -(1,15071:7246811,9480452:24720180,513147,134348 -g1,15070:7801900,9480452 -g1,15070:10975808,9480452 -g1,15070:13040847,9480452 -g1,15070:16260630,9480452 -g1,15070:17221387,9480452 -g1,15070:20514571,9480452 -g1,15070:22700852,9480452 -g1,15070:23366042,9480452 -g1,15070:24023368,9480452 -g1,15070:24754094,9480452 -g1,15070:26019594,9480452 -g1,15070:26870251,9480452 -g1,15070:27817246,9480452 -k1,15071:31966991,9480452:1812731 -g1,15071:31966991,9480452 -) -(1,15073:7246811,10321940:24720180,505283,134348 -h1,15072:7246811,10321940:983040,0,0 -g1,15072:10212315,10321940 -g1,15072:12146937,10321940 -(1,15072:12146937,10321940:0,452978,115847 -r1,15161:16374033,10321940:4227096,568825,115847 -k1,15072:12146937,10321940:-4227096 -) -(1,15072:12146937,10321940:4227096,452978,115847 -k1,15072:12146937,10321940:3277 -h1,15072:16370756,10321940:0,411205,112570 -) -g1,15072:16746932,10321940 -g1,15072:18338146,10321940 -g1,15072:21631330,10321940 -g1,15072:23817611,10321940 -g1,15072:25121122,10321940 -g1,15072:26068117,10321940 -k1,15073:31966991,10321940:2400562 -g1,15073:31966991,10321940 -) -v1,15075:7246811,11288482:0,393216,0 -(1,15081:7246811,12929643:24720180,2034377,196608 -g1,15081:7246811,12929643 -g1,15081:7246811,12929643 -g1,15081:7050203,12929643 -(1,15081:7050203,12929643:0,2034377,196608 -r1,15161:32163599,12929643:25113396,2230985,196608 -k1,15081:7050203,12929643:-25113396 -) -(1,15081:7050203,12929643:25113396,2034377,196608 -[1,15081:7246811,12929643:24720180,1837769,0 -(1,15077:7246811,11496100:24720180,404226,107478 -(1,15076:7246811,11496100:0,0,0 -g1,15076:7246811,11496100 -g1,15076:7246811,11496100 -g1,15076:6919131,11496100 -(1,15076:6919131,11496100:0,0,0 -) -g1,15076:7246811,11496100 -) -k1,15077:7246811,11496100:0 -g1,15077:11356705,11496100 -g1,15077:14834308,11496100 -g1,15077:17047328,11496100 -h1,15077:17363474,11496100:0,0,0 -k1,15077:31966991,11496100:14603517 -g1,15077:31966991,11496100 -) -(1,15078:7246811,12162278:24720180,404226,107478 -h1,15078:7246811,12162278:0,0,0 -g1,15078:7562957,12162278 -g1,15078:7879103,12162278 -g1,15078:11988997,12162278 -h1,15078:12305143,12162278:0,0,0 -k1,15078:31966991,12162278:19661848 -g1,15078:31966991,12162278 -) -(1,15079:7246811,12828456:24720180,404226,101187 -h1,15079:7246811,12828456:0,0,0 -g1,15079:7562957,12828456 -g1,15079:7879103,12828456 -g1,15079:15150456,12828456 -g1,15079:15466602,12828456 -h1,15079:17679621,12828456:0,0,0 -k1,15079:31966991,12828456:14287370 -g1,15079:31966991,12828456 -) -] -) -g1,15081:31966991,12929643 -g1,15081:7246811,12929643 -g1,15081:7246811,12929643 -g1,15081:31966991,12929643 -g1,15081:31966991,12929643 -) -h1,15081:7246811,13126251:0,0,0 -(1,15085:7246811,14268103:24720180,513147,126483 -h1,15084:7246811,14268103:983040,0,0 -g1,15084:10118598,14268103 -g1,15084:10933865,14268103 -g1,15084:12152179,14268103 -g1,15084:13718489,14268103 -g1,15084:14584874,14268103 -(1,15084:14584874,14268103:0,452978,115847 -r1,15161:17053411,14268103:2468537,568825,115847 -k1,15084:14584874,14268103:-2468537 -) -(1,15084:14584874,14268103:2468537,452978,115847 -k1,15084:14584874,14268103:3277 -h1,15084:17050134,14268103:0,411205,112570 -) -g1,15084:17252640,14268103 -g1,15084:18832057,14268103 -g1,15084:20561552,14268103 -g1,15084:21412209,14268103 -g1,15084:22359204,14268103 -k1,15085:31966991,14268103:6952269 -g1,15085:31966991,14268103 -) -v1,15087:7246811,15234644:0,393216,0 -(1,15093:7246811,16875805:24720180,2034377,196608 -g1,15093:7246811,16875805 -g1,15093:7246811,16875805 -g1,15093:7050203,16875805 -(1,15093:7050203,16875805:0,2034377,196608 -r1,15161:32163599,16875805:25113396,2230985,196608 -k1,15093:7050203,16875805:-25113396 -) -(1,15093:7050203,16875805:25113396,2034377,196608 -[1,15093:7246811,16875805:24720180,1837769,0 -(1,15089:7246811,15442262:24720180,404226,107478 -(1,15088:7246811,15442262:0,0,0 -g1,15088:7246811,15442262 -g1,15088:7246811,15442262 -g1,15088:6919131,15442262 -(1,15088:6919131,15442262:0,0,0 -) -g1,15088:7246811,15442262 -) -k1,15089:7246811,15442262:0 -g1,15089:11356705,15442262 -g1,15089:14834308,15442262 -g1,15089:17047328,15442262 -h1,15089:17363474,15442262:0,0,0 -k1,15089:31966991,15442262:14603517 -g1,15089:31966991,15442262 -) -(1,15090:7246811,16108440:24720180,404226,107478 -h1,15090:7246811,16108440:0,0,0 -g1,15090:7562957,16108440 -g1,15090:7879103,16108440 -g1,15090:11988997,16108440 -h1,15090:12305143,16108440:0,0,0 -k1,15090:31966991,16108440:19661848 -g1,15090:31966991,16108440 -) -(1,15091:7246811,16774618:24720180,404226,101187 -h1,15091:7246811,16774618:0,0,0 -g1,15091:7562957,16774618 -g1,15091:7879103,16774618 -g1,15091:12937435,16774618 -g1,15091:13569727,16774618 -g1,15091:16415038,16774618 -g1,15091:16731184,16774618 -h1,15091:19576495,16774618:0,0,0 -k1,15091:31966991,16774618:12390496 -g1,15091:31966991,16774618 -) -] -) -g1,15093:31966991,16875805 -g1,15093:7246811,16875805 -g1,15093:7246811,16875805 -g1,15093:31966991,16875805 -g1,15093:31966991,16875805 -) -h1,15093:7246811,17072413:0,0,0 -(1,15097:7246811,18214265:24720180,513147,7863 -h1,15096:7246811,18214265:983040,0,0 -g1,15096:9620525,18214265 -g1,15096:10435792,18214265 -g1,15096:12327161,18214265 -g1,15096:14223772,18214265 -g1,15096:15555463,18214265 -g1,15096:16502458,18214265 -g1,15096:19495487,18214265 -g1,15096:21704705,18214265 -g1,15096:22259794,18214265 -g1,15096:24639406,18214265 -k1,15097:31966991,18214265:4458419 -g1,15097:31966991,18214265 -) -v1,15099:7246811,19180807:0,393216,0 -(1,15105:7246811,20821968:24720180,2034377,196608 -g1,15105:7246811,20821968 -g1,15105:7246811,20821968 -g1,15105:7050203,20821968 -(1,15105:7050203,20821968:0,2034377,196608 -r1,15161:32163599,20821968:25113396,2230985,196608 -k1,15105:7050203,20821968:-25113396 -) -(1,15105:7050203,20821968:25113396,2034377,196608 -[1,15105:7246811,20821968:24720180,1837769,0 -(1,15101:7246811,19388425:24720180,404226,107478 -(1,15100:7246811,19388425:0,0,0 -g1,15100:7246811,19388425 -g1,15100:7246811,19388425 -g1,15100:6919131,19388425 -(1,15100:6919131,19388425:0,0,0 -) -g1,15100:7246811,19388425 -) -k1,15101:7246811,19388425:0 -g1,15101:11356705,19388425 -g1,15101:14834308,19388425 -g1,15101:17047328,19388425 -h1,15101:17363474,19388425:0,0,0 -k1,15101:31966991,19388425:14603517 -g1,15101:31966991,19388425 -) -(1,15102:7246811,20054603:24720180,404226,107478 -h1,15102:7246811,20054603:0,0,0 -g1,15102:7562957,20054603 -g1,15102:7879103,20054603 -g1,15102:11988997,20054603 -h1,15102:12305143,20054603:0,0,0 -k1,15102:31966991,20054603:19661848 -g1,15102:31966991,20054603 -) -(1,15103:7246811,20720781:24720180,404226,101187 -h1,15103:7246811,20720781:0,0,0 -g1,15103:7562957,20720781 -g1,15103:7879103,20720781 -g1,15103:12937435,20720781 -g1,15103:13569727,20720781 -g1,15103:18628058,20720781 -g1,15103:18944204,20720781 -h1,15103:22105660,20720781:0,0,0 -k1,15103:31966991,20720781:9861331 -g1,15103:31966991,20720781 -) -] -) -g1,15105:31966991,20821968 -g1,15105:7246811,20821968 -g1,15105:7246811,20821968 -g1,15105:31966991,20821968 -g1,15105:31966991,20821968 -) -h1,15105:7246811,21018576:0,0,0 -(1,15109:7246811,22160428:24720180,513147,134348 -h1,15108:7246811,22160428:983040,0,0 -k1,15108:10151509,22160428:204615 -k1,15108:13583118,22160428:204616 -k1,15108:16584154,22160428:204615 -k1,15108:17274390,22160428:204615 -(1,15108:17274390,22160428:0,452978,115847 -r1,15161:21501486,22160428:4227096,568825,115847 -k1,15108:17274390,22160428:-4227096 -) -(1,15108:17274390,22160428:4227096,452978,115847 -k1,15108:17274390,22160428:3277 -h1,15108:21498209,22160428:0,411205,112570 -) -k1,15108:21706102,22160428:204616 -k1,15108:22442214,22160428:204615 -k1,15108:24852116,22160428:204615 -k1,15108:27727979,22160428:204616 -k1,15108:31508894,22160428:204615 -k1,15108:31966991,22160428:0 -) -(1,15109:7246811,23001916:24720180,513147,134348 -k1,15108:9825306,23001916:237549 -k1,15108:10418714,23001916:237548 -k1,15108:12634140,23001916:237549 -k1,15108:13530980,23001916:237548 -k1,15108:17712486,23001916:237549 -k1,15108:19954125,23001916:237548 -(1,15108:19954125,23001916:0,452978,122846 -r1,15161:22774374,23001916:2820249,575824,122846 -k1,15108:19954125,23001916:-2820249 -) -(1,15108:19954125,23001916:2820249,452978,122846 -k1,15108:19954125,23001916:3277 -h1,15108:22771097,23001916:0,411205,112570 -) -k1,15108:23011923,23001916:237549 -k1,15108:25650710,23001916:237548 -k1,15108:26244119,23001916:237549 -k1,15108:28354686,23001916:237548 -k1,15108:30272578,23001916:237549 -k1,15108:31196288,23001916:237548 -k1,15108:31966991,23001916:0 -) -(1,15109:7246811,23843404:24720180,513147,134348 -k1,15108:10675698,23843404:182889 -k1,15108:11544749,23843404:182889 -k1,15108:12343676,23843404:182889 -k1,15108:13545650,23843404:182889 -k1,15108:15095620,23843404:182889 -k1,15108:15937801,23843404:182889 -k1,15108:17373083,23843404:182889 -k1,15108:19573827,23843404:182890 -k1,15108:21132317,23843404:182889 -k1,15108:22334291,23843404:182889 -k1,15108:23823313,23843404:182889 -k1,15108:26629608,23843404:182889 -k1,15108:27471789,23843404:182889 -k1,15108:28673763,23843404:182889 -k1,15108:30834529,23843404:182889 -k1,15108:31966991,23843404:0 -) -(1,15109:7246811,24684892:24720180,505283,7863 -g1,15108:8193806,24684892 -k1,15109:31966991,24684892:22086288 -g1,15109:31966991,24684892 -) -v1,15111:7246811,25651434:0,393216,0 -(1,15117:7246811,27292595:24720180,2034377,196608 -g1,15117:7246811,27292595 -g1,15117:7246811,27292595 -g1,15117:7050203,27292595 -(1,15117:7050203,27292595:0,2034377,196608 -r1,15161:32163599,27292595:25113396,2230985,196608 -k1,15117:7050203,27292595:-25113396 -) -(1,15117:7050203,27292595:25113396,2034377,196608 -[1,15117:7246811,27292595:24720180,1837769,0 -(1,15113:7246811,25859052:24720180,404226,107478 -(1,15112:7246811,25859052:0,0,0 -g1,15112:7246811,25859052 -g1,15112:7246811,25859052 -g1,15112:6919131,25859052 -(1,15112:6919131,25859052:0,0,0 -) -g1,15112:7246811,25859052 -) -k1,15113:7246811,25859052:0 -g1,15113:11356705,25859052 -g1,15113:14834308,25859052 -g1,15113:17047328,25859052 -h1,15113:17363474,25859052:0,0,0 -k1,15113:31966991,25859052:14603517 -g1,15113:31966991,25859052 -) -(1,15114:7246811,26525230:24720180,404226,107478 -h1,15114:7246811,26525230:0,0,0 -g1,15114:7562957,26525230 -g1,15114:7879103,26525230 -g1,15114:11988997,26525230 -h1,15114:12305143,26525230:0,0,0 -k1,15114:31966991,26525230:19661848 -g1,15114:31966991,26525230 -) -(1,15115:7246811,27191408:24720180,404226,101187 -h1,15115:7246811,27191408:0,0,0 -g1,15115:7562957,27191408 -g1,15115:7879103,27191408 -g1,15115:14834310,27191408 -g1,15115:15466602,27191408 -g1,15115:15782748,27191408 -h1,15115:17995767,27191408:0,0,0 -k1,15115:31966991,27191408:13971224 -g1,15115:31966991,27191408 -) -] -) -g1,15117:31966991,27292595 -g1,15117:7246811,27292595 -g1,15117:7246811,27292595 -g1,15117:31966991,27292595 -g1,15117:31966991,27292595 -) -h1,15117:7246811,27489203:0,0,0 -(1,15121:7246811,28631054:24720180,505283,134348 -h1,15120:7246811,28631054:983040,0,0 -k1,15120:11917168,28631054:242745 -k1,15120:12969284,28631054:242746 -k1,15120:14231114,28631054:242745 -k1,15120:17030419,28631054:242746 -k1,15120:19283153,28631054:242745 -k1,15120:19881758,28631054:242745 -k1,15120:23738159,28631054:242746 -k1,15120:26099028,28631054:242745 -k1,15120:28426474,28631054:242746 -k1,15120:31284106,28631054:242745 -k1,15120:31966991,28631054:0 -) -(1,15121:7246811,29472542:24720180,505283,134348 -k1,15120:9532131,29472542:217659 -k1,15120:10578819,29472542:217658 -k1,15120:13908783,29472542:217659 -k1,15120:16995608,29472542:217659 -k1,15120:19673489,29472542:217659 -k1,15120:22078739,29472542:217658 -k1,15120:24084220,29472542:217659 -k1,15120:25394364,29472542:217659 -(1,15120:25394364,29472542:0,414482,115847 -r1,15161:25752630,29472542:358266,530329,115847 -k1,15120:25394364,29472542:-358266 -) -(1,15120:25394364,29472542:358266,414482,115847 -k1,15120:25394364,29472542:3277 -h1,15120:25749353,29472542:0,411205,112570 -) -k1,15120:26143959,29472542:217659 -k1,15120:27013045,29472542:217658 -k1,15120:30128051,29472542:217659 -k1,15120:31966991,29472542:0 -) -(1,15121:7246811,30314030:24720180,505283,126483 -k1,15120:9229457,30314030:241354 -k1,15120:11432305,30314030:241355 -k1,15120:12766144,30314030:241354 -(1,15120:12766144,30314030:0,414482,115847 -r1,15161:13124410,30314030:358266,530329,115847 -k1,15120:12766144,30314030:-358266 -) -(1,15120:12766144,30314030:358266,414482,115847 -k1,15120:12766144,30314030:3277 -h1,15120:13121133,30314030:0,411205,112570 -) -k1,15120:13539434,30314030:241354 -k1,15120:14598677,30314030:241354 -k1,15120:16915556,30314030:241354 -k1,15120:19185906,30314030:241355 -k1,15120:21545384,30314030:241354 -k1,15120:22778298,30314030:241354 -k1,15120:25835735,30314030:241355 -k1,15120:28087078,30314030:241354 -k1,15120:30567142,30314030:241354 -k1,15120:31966991,30314030:0 -) -(1,15121:7246811,31155518:24720180,513147,134348 -g1,15120:11966714,31155518 -g1,15120:13185028,31155518 -g1,15120:16359592,31155518 -g1,15120:20276023,31155518 -g1,15120:21579534,31155518 -g1,15120:23064579,31155518 -g1,15120:24011574,31155518 -k1,15121:31966991,31155518:6268520 -g1,15121:31966991,31155518 -) -v1,15123:7246811,32122060:0,393216,0 -(1,15127:7246811,32430865:24720180,702021,196608 -g1,15127:7246811,32430865 -g1,15127:7246811,32430865 -g1,15127:7050203,32430865 -(1,15127:7050203,32430865:0,702021,196608 -r1,15161:32163599,32430865:25113396,898629,196608 -k1,15127:7050203,32430865:-25113396 -) -(1,15127:7050203,32430865:25113396,702021,196608 -[1,15127:7246811,32430865:24720180,505413,0 -(1,15125:7246811,32329678:24720180,404226,101187 -(1,15124:7246811,32329678:0,0,0 -g1,15124:7246811,32329678 -g1,15124:7246811,32329678 -g1,15124:6919131,32329678 -(1,15124:6919131,32329678:0,0,0 -) -g1,15124:7246811,32329678 -) -g1,15125:7562957,32329678 -g1,15125:7879103,32329678 -g1,15125:12937435,32329678 -g1,15125:13569727,32329678 -h1,15125:19892640,32329678:0,0,0 -k1,15125:31966991,32329678:12074351 -g1,15125:31966991,32329678 -) -] -) -g1,15127:31966991,32430865 -g1,15127:7246811,32430865 -g1,15127:7246811,32430865 -g1,15127:31966991,32430865 -g1,15127:31966991,32430865 -) -h1,15127:7246811,32627473:0,0,0 -v1,15131:7246811,33894379:0,393216,0 -(1,15135:7246811,34203184:24720180,702021,196608 -g1,15135:7246811,34203184 -g1,15135:7246811,34203184 -g1,15135:7050203,34203184 -(1,15135:7050203,34203184:0,702021,196608 -r1,15161:32163599,34203184:25113396,898629,196608 -k1,15135:7050203,34203184:-25113396 -) -(1,15135:7050203,34203184:25113396,702021,196608 -[1,15135:7246811,34203184:24720180,505413,0 -(1,15133:7246811,34101997:24720180,404226,101187 -(1,15132:7246811,34101997:0,0,0 -g1,15132:7246811,34101997 -g1,15132:7246811,34101997 -g1,15132:6919131,34101997 -(1,15132:6919131,34101997:0,0,0 -) -g1,15132:7246811,34101997 -) -g1,15133:7562957,34101997 -g1,15133:7879103,34101997 -g1,15133:12937435,34101997 -g1,15133:13569727,34101997 -h1,15133:20841077,34101997:0,0,0 -k1,15133:31966991,34101997:11125914 -g1,15133:31966991,34101997 -) -] -) -g1,15135:31966991,34203184 -g1,15135:7246811,34203184 -g1,15135:7246811,34203184 -g1,15135:31966991,34203184 -g1,15135:31966991,34203184 -) -h1,15135:7246811,34399792:0,0,0 -(1,15139:7246811,35541644:24720180,505283,126483 -h1,15138:7246811,35541644:983040,0,0 -g1,15138:11363782,35541644 -g1,15138:14631407,35541644 -g1,15138:16571928,35541644 -g1,15138:18558979,35541644 -g1,15138:19289705,35541644 -k1,15139:31966991,35541644:9384757 -g1,15139:31966991,35541644 -) -v1,15141:7246811,36508185:0,393216,0 -(1,15145:7246811,36816990:24720180,702021,196608 -g1,15145:7246811,36816990 -g1,15145:7246811,36816990 -g1,15145:7050203,36816990 -(1,15145:7050203,36816990:0,702021,196608 -r1,15161:32163599,36816990:25113396,898629,196608 -k1,15145:7050203,36816990:-25113396 -) -(1,15145:7050203,36816990:25113396,702021,196608 -[1,15145:7246811,36816990:24720180,505413,0 -(1,15143:7246811,36715803:24720180,404226,101187 -(1,15142:7246811,36715803:0,0,0 -g1,15142:7246811,36715803 -g1,15142:7246811,36715803 -g1,15142:6919131,36715803 -(1,15142:6919131,36715803:0,0,0 -) -g1,15142:7246811,36715803 -) -g1,15143:7562957,36715803 -g1,15143:7879103,36715803 -g1,15143:12937435,36715803 -g1,15143:13569727,36715803 -g1,15143:17679621,36715803 -g1,15143:17995767,36715803 -g1,15143:18311913,36715803 -h1,15143:20841078,36715803:0,0,0 -k1,15143:31966991,36715803:11125913 -g1,15143:31966991,36715803 -) -] -) -g1,15145:31966991,36816990 -g1,15145:7246811,36816990 -g1,15145:7246811,36816990 -g1,15145:31966991,36816990 -g1,15145:31966991,36816990 -) -h1,15145:7246811,37013598:0,0,0 -(1,15149:7246811,38155450:24720180,505283,134348 -h1,15148:7246811,38155450:983040,0,0 -k1,15148:10699366,38155450:193450 -k1,15148:11350914,38155450:193451 -k1,15148:12648646,38155450:193450 -k1,15148:13589862,38155450:193450 -k1,15148:17047661,38155450:193451 -k1,15148:18525617,38155450:193450 -k1,15148:21016760,38155450:193451 -k1,15148:22960677,38155450:193450 -k1,15148:23770165,38155450:193450 -k1,15148:26583745,38155450:193451 -k1,15148:28787840,38155450:193450 -k1,15148:31966991,38155450:0 -) -(1,15149:7246811,38996938:24720180,513147,134348 -k1,15148:9516423,38996938:259623 -k1,15148:10546750,38996938:259624 -k1,15148:14246358,38996938:259623 -k1,15148:15188867,38996938:259624 -k1,15148:16674669,38996938:259623 -k1,15148:17585720,38996938:259623 -k1,15148:18593110,38996938:259624 -k1,15148:21016076,38996938:259623 -k1,15148:22267259,38996938:259623 -k1,15148:25413744,38996938:259624 -k1,15148:26502397,38996938:259623 -k1,15148:28390591,38996938:259624 -k1,15148:29669299,38996938:259623 -k1,15148:31966991,38996938:0 -) -(1,15149:7246811,39838426:24720180,505283,126483 -k1,15148:9273285,39838426:276007 -k1,15148:10200720,39838426:276007 -k1,15148:11224494,39838426:276008 -k1,15148:14133082,39838426:276007 -k1,15148:15277441,39838426:276007 -k1,15148:17083714,39838426:276007 -k1,15148:18011150,39838426:276008 -k1,15148:20660216,39838426:276007 -k1,15148:21955308,39838426:276007 -k1,15148:24717096,39838426:276007 -k1,15148:25609142,39838426:276008 -k1,15148:28979104,39838426:276007 -k1,15148:31242163,39838426:276007 -k1,15148:31966991,39838426:0 -) -(1,15149:7246811,40679914:24720180,505283,134348 -g1,15148:8730546,40679914 -g1,15148:9387872,40679914 -g1,15148:10118598,40679914 -g1,15148:13907889,40679914 -g1,15148:14793280,40679914 -g1,15148:15348369,40679914 -g1,15148:18522277,40679914 -k1,15149:31966991,40679914:11405234 -g1,15149:31966991,40679914 -) -v1,15151:7246811,41646456:0,393216,0 -(1,15159:7246811,44619973:24720180,3366733,196608 -g1,15159:7246811,44619973 -g1,15159:7246811,44619973 -g1,15159:7050203,44619973 -(1,15159:7050203,44619973:0,3366733,196608 -r1,15161:32163599,44619973:25113396,3563341,196608 -k1,15159:7050203,44619973:-25113396 -) -(1,15159:7050203,44619973:25113396,3366733,196608 -[1,15159:7246811,44619973:24720180,3170125,0 -(1,15153:7246811,41854074:24720180,404226,107478 -(1,15152:7246811,41854074:0,0,0 -g1,15152:7246811,41854074 -g1,15152:7246811,41854074 -g1,15152:6919131,41854074 -(1,15152:6919131,41854074:0,0,0 -) -g1,15152:7246811,41854074 -) -k1,15153:7246811,41854074:0 -g1,15153:11356705,41854074 -g1,15153:14834308,41854074 -g1,15153:17047328,41854074 -h1,15153:17363474,41854074:0,0,0 -k1,15153:31966991,41854074:14603517 -g1,15153:31966991,41854074 -) -(1,15154:7246811,42520252:24720180,404226,107478 -h1,15154:7246811,42520252:0,0,0 -g1,15154:7562957,42520252 -g1,15154:7879103,42520252 -g1,15154:11988997,42520252 -h1,15154:12305143,42520252:0,0,0 -k1,15154:31966991,42520252:19661848 -g1,15154:31966991,42520252 -) -(1,15155:7246811,43186430:24720180,404226,107478 -h1,15155:7246811,43186430:0,0,0 -g1,15155:7562957,43186430 -g1,15155:7879103,43186430 -g1,15155:12305143,43186430 -g1,15155:12937435,43186430 -k1,15155:12937435,43186430:0 -h1,15155:15150455,43186430:0,0,0 -k1,15155:31966991,43186430:16816536 -g1,15155:31966991,43186430 -) -(1,15156:7246811,43852608:24720180,404226,101187 -h1,15156:7246811,43852608:0,0,0 -g1,15156:7562957,43852608 -g1,15156:7879103,43852608 -g1,15156:8195249,43852608 -g1,15156:8511395,43852608 -g1,15156:8827541,43852608 -g1,15156:9143687,43852608 -g1,15156:9459833,43852608 -g1,15156:9775979,43852608 -g1,15156:10092125,43852608 -g1,15156:10408271,43852608 -g1,15156:10724417,43852608 -g1,15156:11356709,43852608 -g1,15156:11989001,43852608 -g1,15156:14202022,43852608 -g1,15156:15466606,43852608 -g1,15156:16098898,43852608 -g1,15156:16731190,43852608 -g1,15156:18628065,43852608 -g1,15156:20208794,43852608 -k1,15156:20208794,43852608:0 -h1,15156:21789523,43852608:0,0,0 -k1,15156:31966991,43852608:10177468 -g1,15156:31966991,43852608 -) -(1,15157:7246811,44518786:24720180,404226,101187 -h1,15157:7246811,44518786:0,0,0 -g1,15157:7562957,44518786 -g1,15157:7879103,44518786 -g1,15157:8195249,44518786 -g1,15157:8511395,44518786 -g1,15157:8827541,44518786 -g1,15157:9143687,44518786 -g1,15157:9459833,44518786 -g1,15157:9775979,44518786 -g1,15157:10092125,44518786 -g1,15157:10408271,44518786 -g1,15157:10724417,44518786 -g1,15157:12621291,44518786 -g1,15157:13253583,44518786 -g1,15157:18311916,44518786 -g1,15157:22105665,44518786 -g1,15157:26215560,44518786 -g1,15157:28112434,44518786 -g1,15157:28744726,44518786 -h1,15157:30325455,44518786:0,0,0 -k1,15157:31966991,44518786:1641536 -g1,15157:31966991,44518786 -) -] -) -g1,15159:31966991,44619973 -g1,15159:7246811,44619973 -g1,15159:7246811,44619973 -g1,15159:31966991,44619973 -g1,15159:31966991,44619973 -) -h1,15159:7246811,44816581:0,0,0 -] -) -] -r1,15161:32583029,45706769:26214,39845888,0 -) -] -) -) -g1,15161:32583029,45116945 -) -h1,15161:6630773,45732983:0,0,0 -] -(1,15161:32583029,45706769:0,0,0 -g1,15161:32583029,45706769 -) -) -] -(1,15161:6630773,47279633:25952256,0,0 -h1,15161:6630773,47279633:25952256,0,0 -) -] -h1,15161:4262630,4025873:0,0,0 -] -!27803 -}294 -Input:2308:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2309:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2310:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2311:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2312:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2313:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2314:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2315:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2316:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2317:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2318:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2319:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2320:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2321:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2322:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2323:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2324:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1474 -{295 -[1,15214:4262630,47279633:28320399,43253760,0 -(1,15214:4262630,4025873:0,0,0 -[1,15214:-473657,4025873:25952256,0,0 -(1,15214:-473657,-710414:25952256,0,0 -h1,15214:-473657,-710414:0,0,0 -(1,15214:-473657,-710414:0,0,0 -(1,15214:-473657,-710414:0,0,0 -g1,15214:-473657,-710414 -(1,15214:-473657,-710414:65781,0,65781 -g1,15214:-407876,-710414 -[1,15214:-407876,-644633:0,0,0 +g1,15192:6630773,4812305 +k1,15192:25712890,4812305:17886740 +g1,15192:29057847,4812305 +g1,15192:29873114,4812305 +) +) +] +[1,15192:6630773,45706769:25952256,40108032,0 +(1,15192:6630773,45706769:25952256,40108032,0 +(1,15192:6630773,45706769:0,0,0 +g1,15192:6630773,45706769 +) +[1,15192:6630773,45706769:25952256,40108032,0 +v1,15192:6630773,6254097:0,393216,0 +(1,15192:6630773,45116945:25952256,39256064,616038 +g1,15192:6630773,45116945 +(1,15192:6630773,45116945:25952256,39256064,616038 +(1,15192:6630773,45732983:25952256,39872102,0 +[1,15192:6630773,45732983:25952256,39872102,0 +(1,15192:6630773,45706769:25952256,39845888,0 +r1,15192:6656987,45706769:26214,39845888,0 +[1,15192:6656987,45706769:25899828,39845888,0 +(1,15192:6656987,45116945:25899828,38666240,0 +[1,15192:7246811,45116945:24720180,38666240,0 +(1,15102:7246811,6955988:24720180,505283,134348 +k1,15101:9309418,6955988:143713 +k1,15101:9808991,6955988:143713 +k1,15101:11812616,6955988:143713 +(1,15101:11812616,6955988:0,452978,115847 +r1,15192:12170882,6955988:358266,568825,115847 +k1,15101:11812616,6955988:-358266 +) +(1,15101:11812616,6955988:358266,452978,115847 +k1,15101:11812616,6955988:3277 +h1,15101:12167605,6955988:0,411205,112570 +) +k1,15101:12314596,6955988:143714 +k1,15101:12989806,6955988:143713 +k1,15101:15870302,6955988:143713 +k1,15101:16967564,6955988:143713 +k1,15101:18389229,6955988:143713 +k1,15101:19818758,6955988:143713 +k1,15101:20578509,6955988:143713 +k1,15101:22188918,6955988:143713 +k1,15101:24203685,6955988:143714 +k1,15101:26483216,6955988:143713 +k1,15101:26982789,6955988:143713 +k1,15101:30101181,6955988:143713 +k1,15101:31966991,6955988:0 +) +(1,15102:7246811,7797476:24720180,513147,126483 +k1,15101:8254451,7797476:246112 +k1,15101:10568878,7797476:246111 +k1,15101:11474282,7797476:246112 +k1,15101:12877104,7797476:246112 +k1,15101:13782507,7797476:246111 +k1,15101:15047704,7797476:246112 +k1,15101:18319612,7797476:246111 +(1,15101:18319612,7797476:0,452978,115847 +r1,15192:20788149,7797476:2468537,568825,115847 +k1,15101:18319612,7797476:-2468537 +) +(1,15101:18319612,7797476:2468537,452978,115847 +k1,15101:18319612,7797476:3277 +h1,15101:20784872,7797476:0,411205,112570 +) +k1,15101:21207931,7797476:246112 +(1,15101:21207931,7797476:0,452978,115847 +r1,15192:24028180,7797476:2820249,568825,115847 +k1,15101:21207931,7797476:-2820249 +) +(1,15101:21207931,7797476:2820249,452978,115847 +k1,15101:21207931,7797476:3277 +h1,15101:24024903,7797476:0,411205,112570 +) +k1,15101:24447962,7797476:246112 +(1,15101:24447962,7797476:0,452978,115847 +r1,15192:26564787,7797476:2116825,568825,115847 +k1,15101:24447962,7797476:-2116825 +) +(1,15101:24447962,7797476:2116825,452978,115847 +k1,15101:24447962,7797476:3277 +h1,15101:26561510,7797476:0,411205,112570 +) +k1,15101:26810898,7797476:246111 +k1,15101:27739895,7797476:246112 +(1,15101:27739895,7797476:0,452978,115847 +r1,15192:31966991,7797476:4227096,568825,115847 +k1,15101:27739895,7797476:-4227096 +) +(1,15101:27739895,7797476:4227096,452978,115847 +k1,15101:27739895,7797476:3277 +h1,15101:31963714,7797476:0,411205,112570 +) +k1,15101:31966991,7797476:0 +) +(1,15102:7246811,8638964:24720180,513147,134348 +k1,15101:9349962,8638964:217680 +k1,15101:10853459,8638964:217681 +k1,15101:12850441,8638964:217680 +k1,15101:14087207,8638964:217681 +k1,15101:15635923,8638964:217680 +k1,15101:17540500,8638964:217680 +k1,15101:18954868,8638964:217681 +k1,15101:22244876,8638964:217680 +k1,15101:23113984,8638964:217680 +k1,15101:25028392,8638964:217681 +k1,15101:28271869,8638964:217680 +k1,15101:30350117,8638964:217681 +k1,15101:31219225,8638964:217680 +k1,15101:31966991,8638964:0 +) +(1,15102:7246811,9480452:24720180,513147,134348 +g1,15101:7801900,9480452 +g1,15101:10975808,9480452 +g1,15101:13040847,9480452 +g1,15101:16260630,9480452 +g1,15101:17221387,9480452 +g1,15101:20514571,9480452 +g1,15101:22700852,9480452 +g1,15101:23366042,9480452 +g1,15101:24023368,9480452 +g1,15101:24754094,9480452 +g1,15101:26019594,9480452 +g1,15101:26870251,9480452 +g1,15101:27817246,9480452 +k1,15102:31966991,9480452:1812731 +g1,15102:31966991,9480452 +) +(1,15104:7246811,10321940:24720180,505283,134348 +h1,15103:7246811,10321940:983040,0,0 +g1,15103:10212315,10321940 +g1,15103:12146937,10321940 +(1,15103:12146937,10321940:0,452978,115847 +r1,15192:16374033,10321940:4227096,568825,115847 +k1,15103:12146937,10321940:-4227096 +) +(1,15103:12146937,10321940:4227096,452978,115847 +k1,15103:12146937,10321940:3277 +h1,15103:16370756,10321940:0,411205,112570 +) +g1,15103:16746932,10321940 +g1,15103:18338146,10321940 +g1,15103:21631330,10321940 +g1,15103:23817611,10321940 +g1,15103:25121122,10321940 +g1,15103:26068117,10321940 +k1,15104:31966991,10321940:2400562 +g1,15104:31966991,10321940 +) +v1,15106:7246811,11288482:0,393216,0 +(1,15112:7246811,12929643:24720180,2034377,196608 +g1,15112:7246811,12929643 +g1,15112:7246811,12929643 +g1,15112:7050203,12929643 +(1,15112:7050203,12929643:0,2034377,196608 +r1,15192:32163599,12929643:25113396,2230985,196608 +k1,15112:7050203,12929643:-25113396 +) +(1,15112:7050203,12929643:25113396,2034377,196608 +[1,15112:7246811,12929643:24720180,1837769,0 +(1,15108:7246811,11496100:24720180,404226,107478 +(1,15107:7246811,11496100:0,0,0 +g1,15107:7246811,11496100 +g1,15107:7246811,11496100 +g1,15107:6919131,11496100 +(1,15107:6919131,11496100:0,0,0 +) +g1,15107:7246811,11496100 +) +k1,15108:7246811,11496100:0 +g1,15108:11356705,11496100 +g1,15108:14834308,11496100 +g1,15108:17047328,11496100 +h1,15108:17363474,11496100:0,0,0 +k1,15108:31966991,11496100:14603517 +g1,15108:31966991,11496100 +) +(1,15109:7246811,12162278:24720180,404226,107478 +h1,15109:7246811,12162278:0,0,0 +g1,15109:7562957,12162278 +g1,15109:7879103,12162278 +g1,15109:11988997,12162278 +h1,15109:12305143,12162278:0,0,0 +k1,15109:31966991,12162278:19661848 +g1,15109:31966991,12162278 +) +(1,15110:7246811,12828456:24720180,404226,101187 +h1,15110:7246811,12828456:0,0,0 +g1,15110:7562957,12828456 +g1,15110:7879103,12828456 +g1,15110:15150456,12828456 +g1,15110:15466602,12828456 +h1,15110:17679621,12828456:0,0,0 +k1,15110:31966991,12828456:14287370 +g1,15110:31966991,12828456 +) +] +) +g1,15112:31966991,12929643 +g1,15112:7246811,12929643 +g1,15112:7246811,12929643 +g1,15112:31966991,12929643 +g1,15112:31966991,12929643 +) +h1,15112:7246811,13126251:0,0,0 +(1,15116:7246811,14268103:24720180,513147,126483 +h1,15115:7246811,14268103:983040,0,0 +g1,15115:10118598,14268103 +g1,15115:10933865,14268103 +g1,15115:12152179,14268103 +g1,15115:13718489,14268103 +g1,15115:14584874,14268103 +(1,15115:14584874,14268103:0,452978,115847 +r1,15192:17053411,14268103:2468537,568825,115847 +k1,15115:14584874,14268103:-2468537 +) +(1,15115:14584874,14268103:2468537,452978,115847 +k1,15115:14584874,14268103:3277 +h1,15115:17050134,14268103:0,411205,112570 +) +g1,15115:17252640,14268103 +g1,15115:18832057,14268103 +g1,15115:20561552,14268103 +g1,15115:21412209,14268103 +g1,15115:22359204,14268103 +k1,15116:31966991,14268103:6952269 +g1,15116:31966991,14268103 +) +v1,15118:7246811,15234644:0,393216,0 +(1,15124:7246811,16875805:24720180,2034377,196608 +g1,15124:7246811,16875805 +g1,15124:7246811,16875805 +g1,15124:7050203,16875805 +(1,15124:7050203,16875805:0,2034377,196608 +r1,15192:32163599,16875805:25113396,2230985,196608 +k1,15124:7050203,16875805:-25113396 +) +(1,15124:7050203,16875805:25113396,2034377,196608 +[1,15124:7246811,16875805:24720180,1837769,0 +(1,15120:7246811,15442262:24720180,404226,107478 +(1,15119:7246811,15442262:0,0,0 +g1,15119:7246811,15442262 +g1,15119:7246811,15442262 +g1,15119:6919131,15442262 +(1,15119:6919131,15442262:0,0,0 +) +g1,15119:7246811,15442262 +) +k1,15120:7246811,15442262:0 +g1,15120:11356705,15442262 +g1,15120:14834308,15442262 +g1,15120:17047328,15442262 +h1,15120:17363474,15442262:0,0,0 +k1,15120:31966991,15442262:14603517 +g1,15120:31966991,15442262 +) +(1,15121:7246811,16108440:24720180,404226,107478 +h1,15121:7246811,16108440:0,0,0 +g1,15121:7562957,16108440 +g1,15121:7879103,16108440 +g1,15121:11988997,16108440 +h1,15121:12305143,16108440:0,0,0 +k1,15121:31966991,16108440:19661848 +g1,15121:31966991,16108440 +) +(1,15122:7246811,16774618:24720180,404226,101187 +h1,15122:7246811,16774618:0,0,0 +g1,15122:7562957,16774618 +g1,15122:7879103,16774618 +g1,15122:12937435,16774618 +g1,15122:13569727,16774618 +g1,15122:16415038,16774618 +g1,15122:16731184,16774618 +h1,15122:19576495,16774618:0,0,0 +k1,15122:31966991,16774618:12390496 +g1,15122:31966991,16774618 +) +] +) +g1,15124:31966991,16875805 +g1,15124:7246811,16875805 +g1,15124:7246811,16875805 +g1,15124:31966991,16875805 +g1,15124:31966991,16875805 +) +h1,15124:7246811,17072413:0,0,0 +(1,15128:7246811,18214265:24720180,513147,7863 +h1,15127:7246811,18214265:983040,0,0 +g1,15127:9620525,18214265 +g1,15127:10435792,18214265 +g1,15127:12327161,18214265 +g1,15127:14223772,18214265 +g1,15127:15555463,18214265 +g1,15127:16502458,18214265 +g1,15127:19495487,18214265 +g1,15127:21704705,18214265 +g1,15127:22259794,18214265 +g1,15127:24639406,18214265 +k1,15128:31966991,18214265:4458419 +g1,15128:31966991,18214265 +) +v1,15130:7246811,19180807:0,393216,0 +(1,15136:7246811,20821968:24720180,2034377,196608 +g1,15136:7246811,20821968 +g1,15136:7246811,20821968 +g1,15136:7050203,20821968 +(1,15136:7050203,20821968:0,2034377,196608 +r1,15192:32163599,20821968:25113396,2230985,196608 +k1,15136:7050203,20821968:-25113396 +) +(1,15136:7050203,20821968:25113396,2034377,196608 +[1,15136:7246811,20821968:24720180,1837769,0 +(1,15132:7246811,19388425:24720180,404226,107478 +(1,15131:7246811,19388425:0,0,0 +g1,15131:7246811,19388425 +g1,15131:7246811,19388425 +g1,15131:6919131,19388425 +(1,15131:6919131,19388425:0,0,0 +) +g1,15131:7246811,19388425 +) +k1,15132:7246811,19388425:0 +g1,15132:11356705,19388425 +g1,15132:14834308,19388425 +g1,15132:17047328,19388425 +h1,15132:17363474,19388425:0,0,0 +k1,15132:31966991,19388425:14603517 +g1,15132:31966991,19388425 +) +(1,15133:7246811,20054603:24720180,404226,107478 +h1,15133:7246811,20054603:0,0,0 +g1,15133:7562957,20054603 +g1,15133:7879103,20054603 +g1,15133:11988997,20054603 +h1,15133:12305143,20054603:0,0,0 +k1,15133:31966991,20054603:19661848 +g1,15133:31966991,20054603 +) +(1,15134:7246811,20720781:24720180,404226,101187 +h1,15134:7246811,20720781:0,0,0 +g1,15134:7562957,20720781 +g1,15134:7879103,20720781 +g1,15134:12937435,20720781 +g1,15134:13569727,20720781 +g1,15134:18628058,20720781 +g1,15134:18944204,20720781 +h1,15134:22105660,20720781:0,0,0 +k1,15134:31966991,20720781:9861331 +g1,15134:31966991,20720781 +) +] +) +g1,15136:31966991,20821968 +g1,15136:7246811,20821968 +g1,15136:7246811,20821968 +g1,15136:31966991,20821968 +g1,15136:31966991,20821968 +) +h1,15136:7246811,21018576:0,0,0 +(1,15140:7246811,22160428:24720180,513147,134348 +h1,15139:7246811,22160428:983040,0,0 +k1,15139:10151509,22160428:204615 +k1,15139:13583118,22160428:204616 +k1,15139:16584154,22160428:204615 +k1,15139:17274390,22160428:204615 +(1,15139:17274390,22160428:0,452978,115847 +r1,15192:21501486,22160428:4227096,568825,115847 +k1,15139:17274390,22160428:-4227096 +) +(1,15139:17274390,22160428:4227096,452978,115847 +k1,15139:17274390,22160428:3277 +h1,15139:21498209,22160428:0,411205,112570 +) +k1,15139:21706102,22160428:204616 +k1,15139:22442214,22160428:204615 +k1,15139:24852116,22160428:204615 +k1,15139:27727979,22160428:204616 +k1,15139:31508894,22160428:204615 +k1,15139:31966991,22160428:0 +) +(1,15140:7246811,23001916:24720180,513147,134348 +k1,15139:9825306,23001916:237549 +k1,15139:10418714,23001916:237548 +k1,15139:12634140,23001916:237549 +k1,15139:13530980,23001916:237548 +k1,15139:17712486,23001916:237549 +k1,15139:19954125,23001916:237548 +(1,15139:19954125,23001916:0,452978,122846 +r1,15192:22774374,23001916:2820249,575824,122846 +k1,15139:19954125,23001916:-2820249 +) +(1,15139:19954125,23001916:2820249,452978,122846 +k1,15139:19954125,23001916:3277 +h1,15139:22771097,23001916:0,411205,112570 +) +k1,15139:23011923,23001916:237549 +k1,15139:25650710,23001916:237548 +k1,15139:26244119,23001916:237549 +k1,15139:28354686,23001916:237548 +k1,15139:30272578,23001916:237549 +k1,15139:31196288,23001916:237548 +k1,15139:31966991,23001916:0 +) +(1,15140:7246811,23843404:24720180,513147,134348 +k1,15139:10675698,23843404:182889 +k1,15139:11544749,23843404:182889 +k1,15139:12343676,23843404:182889 +k1,15139:13545650,23843404:182889 +k1,15139:15095620,23843404:182889 +k1,15139:15937801,23843404:182889 +k1,15139:17373083,23843404:182889 +k1,15139:19573827,23843404:182890 +k1,15139:21132317,23843404:182889 +k1,15139:22334291,23843404:182889 +k1,15139:23823313,23843404:182889 +k1,15139:26629608,23843404:182889 +k1,15139:27471789,23843404:182889 +k1,15139:28673763,23843404:182889 +k1,15139:30834529,23843404:182889 +k1,15139:31966991,23843404:0 +) +(1,15140:7246811,24684892:24720180,505283,7863 +g1,15139:8193806,24684892 +k1,15140:31966991,24684892:22086288 +g1,15140:31966991,24684892 +) +v1,15142:7246811,25651434:0,393216,0 +(1,15148:7246811,27292595:24720180,2034377,196608 +g1,15148:7246811,27292595 +g1,15148:7246811,27292595 +g1,15148:7050203,27292595 +(1,15148:7050203,27292595:0,2034377,196608 +r1,15192:32163599,27292595:25113396,2230985,196608 +k1,15148:7050203,27292595:-25113396 +) +(1,15148:7050203,27292595:25113396,2034377,196608 +[1,15148:7246811,27292595:24720180,1837769,0 +(1,15144:7246811,25859052:24720180,404226,107478 +(1,15143:7246811,25859052:0,0,0 +g1,15143:7246811,25859052 +g1,15143:7246811,25859052 +g1,15143:6919131,25859052 +(1,15143:6919131,25859052:0,0,0 +) +g1,15143:7246811,25859052 +) +k1,15144:7246811,25859052:0 +g1,15144:11356705,25859052 +g1,15144:14834308,25859052 +g1,15144:17047328,25859052 +h1,15144:17363474,25859052:0,0,0 +k1,15144:31966991,25859052:14603517 +g1,15144:31966991,25859052 +) +(1,15145:7246811,26525230:24720180,404226,107478 +h1,15145:7246811,26525230:0,0,0 +g1,15145:7562957,26525230 +g1,15145:7879103,26525230 +g1,15145:11988997,26525230 +h1,15145:12305143,26525230:0,0,0 +k1,15145:31966991,26525230:19661848 +g1,15145:31966991,26525230 +) +(1,15146:7246811,27191408:24720180,404226,101187 +h1,15146:7246811,27191408:0,0,0 +g1,15146:7562957,27191408 +g1,15146:7879103,27191408 +g1,15146:14834310,27191408 +g1,15146:15466602,27191408 +g1,15146:15782748,27191408 +h1,15146:17995767,27191408:0,0,0 +k1,15146:31966991,27191408:13971224 +g1,15146:31966991,27191408 +) +] +) +g1,15148:31966991,27292595 +g1,15148:7246811,27292595 +g1,15148:7246811,27292595 +g1,15148:31966991,27292595 +g1,15148:31966991,27292595 +) +h1,15148:7246811,27489203:0,0,0 +(1,15152:7246811,28631054:24720180,505283,134348 +h1,15151:7246811,28631054:983040,0,0 +k1,15151:11917168,28631054:242745 +k1,15151:12969284,28631054:242746 +k1,15151:14231114,28631054:242745 +k1,15151:17030419,28631054:242746 +k1,15151:19283153,28631054:242745 +k1,15151:19881758,28631054:242745 +k1,15151:23738159,28631054:242746 +k1,15151:26099028,28631054:242745 +k1,15151:28426474,28631054:242746 +k1,15151:31284106,28631054:242745 +k1,15151:31966991,28631054:0 +) +(1,15152:7246811,29472542:24720180,505283,134348 +k1,15151:9532131,29472542:217659 +k1,15151:10578819,29472542:217658 +k1,15151:13908783,29472542:217659 +k1,15151:16995608,29472542:217659 +k1,15151:19673489,29472542:217659 +k1,15151:22078739,29472542:217658 +k1,15151:24084220,29472542:217659 +k1,15151:25394364,29472542:217659 +(1,15151:25394364,29472542:0,414482,115847 +r1,15192:25752630,29472542:358266,530329,115847 +k1,15151:25394364,29472542:-358266 +) +(1,15151:25394364,29472542:358266,414482,115847 +k1,15151:25394364,29472542:3277 +h1,15151:25749353,29472542:0,411205,112570 +) +k1,15151:26143959,29472542:217659 +k1,15151:27013045,29472542:217658 +k1,15151:30128051,29472542:217659 +k1,15151:31966991,29472542:0 +) +(1,15152:7246811,30314030:24720180,505283,126483 +k1,15151:9229457,30314030:241354 +k1,15151:11432305,30314030:241355 +k1,15151:12766144,30314030:241354 +(1,15151:12766144,30314030:0,414482,115847 +r1,15192:13124410,30314030:358266,530329,115847 +k1,15151:12766144,30314030:-358266 +) +(1,15151:12766144,30314030:358266,414482,115847 +k1,15151:12766144,30314030:3277 +h1,15151:13121133,30314030:0,411205,112570 +) +k1,15151:13539434,30314030:241354 +k1,15151:14598677,30314030:241354 +k1,15151:16915556,30314030:241354 +k1,15151:19185906,30314030:241355 +k1,15151:21545384,30314030:241354 +k1,15151:22778298,30314030:241354 +k1,15151:25835735,30314030:241355 +k1,15151:28087078,30314030:241354 +k1,15151:30567142,30314030:241354 +k1,15151:31966991,30314030:0 +) +(1,15152:7246811,31155518:24720180,513147,134348 +g1,15151:11966714,31155518 +g1,15151:13185028,31155518 +g1,15151:16359592,31155518 +g1,15151:20276023,31155518 +g1,15151:21579534,31155518 +g1,15151:23064579,31155518 +g1,15151:24011574,31155518 +k1,15152:31966991,31155518:6268520 +g1,15152:31966991,31155518 +) +v1,15154:7246811,32122060:0,393216,0 +(1,15158:7246811,32430865:24720180,702021,196608 +g1,15158:7246811,32430865 +g1,15158:7246811,32430865 +g1,15158:7050203,32430865 +(1,15158:7050203,32430865:0,702021,196608 +r1,15192:32163599,32430865:25113396,898629,196608 +k1,15158:7050203,32430865:-25113396 +) +(1,15158:7050203,32430865:25113396,702021,196608 +[1,15158:7246811,32430865:24720180,505413,0 +(1,15156:7246811,32329678:24720180,404226,101187 +(1,15155:7246811,32329678:0,0,0 +g1,15155:7246811,32329678 +g1,15155:7246811,32329678 +g1,15155:6919131,32329678 +(1,15155:6919131,32329678:0,0,0 +) +g1,15155:7246811,32329678 +) +g1,15156:7562957,32329678 +g1,15156:7879103,32329678 +g1,15156:12937435,32329678 +g1,15156:13569727,32329678 +h1,15156:19892640,32329678:0,0,0 +k1,15156:31966991,32329678:12074351 +g1,15156:31966991,32329678 +) +] +) +g1,15158:31966991,32430865 +g1,15158:7246811,32430865 +g1,15158:7246811,32430865 +g1,15158:31966991,32430865 +g1,15158:31966991,32430865 +) +h1,15158:7246811,32627473:0,0,0 +v1,15162:7246811,33894379:0,393216,0 +(1,15166:7246811,34203184:24720180,702021,196608 +g1,15166:7246811,34203184 +g1,15166:7246811,34203184 +g1,15166:7050203,34203184 +(1,15166:7050203,34203184:0,702021,196608 +r1,15192:32163599,34203184:25113396,898629,196608 +k1,15166:7050203,34203184:-25113396 +) +(1,15166:7050203,34203184:25113396,702021,196608 +[1,15166:7246811,34203184:24720180,505413,0 +(1,15164:7246811,34101997:24720180,404226,101187 +(1,15163:7246811,34101997:0,0,0 +g1,15163:7246811,34101997 +g1,15163:7246811,34101997 +g1,15163:6919131,34101997 +(1,15163:6919131,34101997:0,0,0 +) +g1,15163:7246811,34101997 +) +g1,15164:7562957,34101997 +g1,15164:7879103,34101997 +g1,15164:12937435,34101997 +g1,15164:13569727,34101997 +h1,15164:20841077,34101997:0,0,0 +k1,15164:31966991,34101997:11125914 +g1,15164:31966991,34101997 +) +] +) +g1,15166:31966991,34203184 +g1,15166:7246811,34203184 +g1,15166:7246811,34203184 +g1,15166:31966991,34203184 +g1,15166:31966991,34203184 +) +h1,15166:7246811,34399792:0,0,0 +(1,15170:7246811,35541644:24720180,505283,126483 +h1,15169:7246811,35541644:983040,0,0 +g1,15169:11363782,35541644 +g1,15169:14631407,35541644 +g1,15169:16571928,35541644 +g1,15169:18558979,35541644 +g1,15169:19289705,35541644 +k1,15170:31966991,35541644:9384757 +g1,15170:31966991,35541644 +) +v1,15172:7246811,36508185:0,393216,0 +(1,15176:7246811,36816990:24720180,702021,196608 +g1,15176:7246811,36816990 +g1,15176:7246811,36816990 +g1,15176:7050203,36816990 +(1,15176:7050203,36816990:0,702021,196608 +r1,15192:32163599,36816990:25113396,898629,196608 +k1,15176:7050203,36816990:-25113396 +) +(1,15176:7050203,36816990:25113396,702021,196608 +[1,15176:7246811,36816990:24720180,505413,0 +(1,15174:7246811,36715803:24720180,404226,101187 +(1,15173:7246811,36715803:0,0,0 +g1,15173:7246811,36715803 +g1,15173:7246811,36715803 +g1,15173:6919131,36715803 +(1,15173:6919131,36715803:0,0,0 +) +g1,15173:7246811,36715803 +) +g1,15174:7562957,36715803 +g1,15174:7879103,36715803 +g1,15174:12937435,36715803 +g1,15174:13569727,36715803 +g1,15174:17679621,36715803 +g1,15174:17995767,36715803 +g1,15174:18311913,36715803 +h1,15174:20841078,36715803:0,0,0 +k1,15174:31966991,36715803:11125913 +g1,15174:31966991,36715803 +) +] +) +g1,15176:31966991,36816990 +g1,15176:7246811,36816990 +g1,15176:7246811,36816990 +g1,15176:31966991,36816990 +g1,15176:31966991,36816990 +) +h1,15176:7246811,37013598:0,0,0 +(1,15180:7246811,38155450:24720180,505283,134348 +h1,15179:7246811,38155450:983040,0,0 +k1,15179:10699366,38155450:193450 +k1,15179:11350914,38155450:193451 +k1,15179:12648646,38155450:193450 +k1,15179:13589862,38155450:193450 +k1,15179:17047661,38155450:193451 +k1,15179:18525617,38155450:193450 +k1,15179:21016760,38155450:193451 +k1,15179:22960677,38155450:193450 +k1,15179:23770165,38155450:193450 +k1,15179:26583745,38155450:193451 +k1,15179:28787840,38155450:193450 +k1,15179:31966991,38155450:0 +) +(1,15180:7246811,38996938:24720180,513147,134348 +k1,15179:9516423,38996938:259623 +k1,15179:10546750,38996938:259624 +k1,15179:14246358,38996938:259623 +k1,15179:15188867,38996938:259624 +k1,15179:16674669,38996938:259623 +k1,15179:17585720,38996938:259623 +k1,15179:18593110,38996938:259624 +k1,15179:21016076,38996938:259623 +k1,15179:22267259,38996938:259623 +k1,15179:25413744,38996938:259624 +k1,15179:26502397,38996938:259623 +k1,15179:28390591,38996938:259624 +k1,15179:29669299,38996938:259623 +k1,15179:31966991,38996938:0 +) +(1,15180:7246811,39838426:24720180,505283,126483 +k1,15179:9273285,39838426:276007 +k1,15179:10200720,39838426:276007 +k1,15179:11224494,39838426:276008 +k1,15179:14133082,39838426:276007 +k1,15179:15277441,39838426:276007 +k1,15179:17083714,39838426:276007 +k1,15179:18011150,39838426:276008 +k1,15179:20660216,39838426:276007 +k1,15179:21955308,39838426:276007 +k1,15179:24717096,39838426:276007 +k1,15179:25609142,39838426:276008 +k1,15179:28979104,39838426:276007 +k1,15179:31242163,39838426:276007 +k1,15179:31966991,39838426:0 +) +(1,15180:7246811,40679914:24720180,505283,134348 +g1,15179:8730546,40679914 +g1,15179:9387872,40679914 +g1,15179:10118598,40679914 +g1,15179:13907889,40679914 +g1,15179:14793280,40679914 +g1,15179:15348369,40679914 +g1,15179:18522277,40679914 +k1,15180:31966991,40679914:11405234 +g1,15180:31966991,40679914 +) +v1,15182:7246811,41646456:0,393216,0 +(1,15190:7246811,44619973:24720180,3366733,196608 +g1,15190:7246811,44619973 +g1,15190:7246811,44619973 +g1,15190:7050203,44619973 +(1,15190:7050203,44619973:0,3366733,196608 +r1,15192:32163599,44619973:25113396,3563341,196608 +k1,15190:7050203,44619973:-25113396 +) +(1,15190:7050203,44619973:25113396,3366733,196608 +[1,15190:7246811,44619973:24720180,3170125,0 +(1,15184:7246811,41854074:24720180,404226,107478 +(1,15183:7246811,41854074:0,0,0 +g1,15183:7246811,41854074 +g1,15183:7246811,41854074 +g1,15183:6919131,41854074 +(1,15183:6919131,41854074:0,0,0 +) +g1,15183:7246811,41854074 +) +k1,15184:7246811,41854074:0 +g1,15184:11356705,41854074 +g1,15184:14834308,41854074 +g1,15184:17047328,41854074 +h1,15184:17363474,41854074:0,0,0 +k1,15184:31966991,41854074:14603517 +g1,15184:31966991,41854074 +) +(1,15185:7246811,42520252:24720180,404226,107478 +h1,15185:7246811,42520252:0,0,0 +g1,15185:7562957,42520252 +g1,15185:7879103,42520252 +g1,15185:11988997,42520252 +h1,15185:12305143,42520252:0,0,0 +k1,15185:31966991,42520252:19661848 +g1,15185:31966991,42520252 +) +(1,15186:7246811,43186430:24720180,404226,107478 +h1,15186:7246811,43186430:0,0,0 +g1,15186:7562957,43186430 +g1,15186:7879103,43186430 +g1,15186:12305143,43186430 +g1,15186:12937435,43186430 +k1,15186:12937435,43186430:0 +h1,15186:15150455,43186430:0,0,0 +k1,15186:31966991,43186430:16816536 +g1,15186:31966991,43186430 +) +(1,15187:7246811,43852608:24720180,404226,101187 +h1,15187:7246811,43852608:0,0,0 +g1,15187:7562957,43852608 +g1,15187:7879103,43852608 +g1,15187:8195249,43852608 +g1,15187:8511395,43852608 +g1,15187:8827541,43852608 +g1,15187:9143687,43852608 +g1,15187:9459833,43852608 +g1,15187:9775979,43852608 +g1,15187:10092125,43852608 +g1,15187:10408271,43852608 +g1,15187:10724417,43852608 +g1,15187:11356709,43852608 +g1,15187:11989001,43852608 +g1,15187:14202022,43852608 +g1,15187:15466606,43852608 +g1,15187:16098898,43852608 +g1,15187:16731190,43852608 +g1,15187:18628065,43852608 +g1,15187:20208794,43852608 +k1,15187:20208794,43852608:0 +h1,15187:21789523,43852608:0,0,0 +k1,15187:31966991,43852608:10177468 +g1,15187:31966991,43852608 +) +(1,15188:7246811,44518786:24720180,404226,101187 +h1,15188:7246811,44518786:0,0,0 +g1,15188:7562957,44518786 +g1,15188:7879103,44518786 +g1,15188:8195249,44518786 +g1,15188:8511395,44518786 +g1,15188:8827541,44518786 +g1,15188:9143687,44518786 +g1,15188:9459833,44518786 +g1,15188:9775979,44518786 +g1,15188:10092125,44518786 +g1,15188:10408271,44518786 +g1,15188:10724417,44518786 +g1,15188:12621291,44518786 +g1,15188:13253583,44518786 +g1,15188:18311916,44518786 +g1,15188:22105665,44518786 +g1,15188:26215560,44518786 +g1,15188:28112434,44518786 +g1,15188:28744726,44518786 +h1,15188:30325455,44518786:0,0,0 +k1,15188:31966991,44518786:1641536 +g1,15188:31966991,44518786 +) +] +) +g1,15190:31966991,44619973 +g1,15190:7246811,44619973 +g1,15190:7246811,44619973 +g1,15190:31966991,44619973 +g1,15190:31966991,44619973 +) +h1,15190:7246811,44816581:0,0,0 +] +) +] +r1,15192:32583029,45706769:26214,39845888,0 +) +] +) +) +g1,15192:32583029,45116945 +) +h1,15192:6630773,45732983:0,0,0 +] +(1,15192:32583029,45706769:0,0,0 +g1,15192:32583029,45706769 +) +) +] +(1,15192:6630773,47279633:25952256,0,0 +h1,15192:6630773,47279633:25952256,0,0 +) +] +h1,15192:4262630,4025873:0,0,0 +] +!27753 +}295 +Input:2305:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2306:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2307:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2308:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2309:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2310:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2311:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2312:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2313:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2314:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2315:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2316:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2317:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2318:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2319:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2320:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2321:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1576 +{296 +[1,15245:4262630,47279633:28320399,43253760,0 +(1,15245:4262630,4025873:0,0,0 +[1,15245:-473657,4025873:25952256,0,0 +(1,15245:-473657,-710414:25952256,0,0 +h1,15245:-473657,-710414:0,0,0 +(1,15245:-473657,-710414:0,0,0 +(1,15245:-473657,-710414:0,0,0 +g1,15245:-473657,-710414 +(1,15245:-473657,-710414:65781,0,65781 +g1,15245:-407876,-710414 +[1,15245:-407876,-644633:0,0,0 ] ) -k1,15214:-473657,-710414:-65781 +k1,15245:-473657,-710414:-65781 ) ) -k1,15214:25478599,-710414:25952256 -g1,15214:25478599,-710414 +k1,15245:25478599,-710414:25952256 +g1,15245:25478599,-710414 ) ] ) -[1,15214:6630773,47279633:25952256,43253760,0 -[1,15214:6630773,4812305:25952256,786432,0 -(1,15214:6630773,4812305:25952256,513147,134348 -(1,15214:6630773,4812305:25952256,513147,134348 -g1,15214:3078558,4812305 -[1,15214:3078558,4812305:0,0,0 -(1,15214:3078558,2439708:0,1703936,0 -k1,15214:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15214:2537886,2439708:1179648,16384,0 +[1,15245:6630773,47279633:25952256,43253760,0 +[1,15245:6630773,4812305:25952256,786432,0 +(1,15245:6630773,4812305:25952256,505283,134348 +(1,15245:6630773,4812305:25952256,505283,134348 +g1,15245:3078558,4812305 +[1,15245:3078558,4812305:0,0,0 +(1,15245:3078558,2439708:0,1703936,0 +k1,15245:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15245:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15214:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15245:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15214:3078558,4812305:0,0,0 -(1,15214:3078558,2439708:0,1703936,0 -g1,15214:29030814,2439708 -g1,15214:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15214:36151628,1915420:16384,1179648,0 +[1,15245:3078558,4812305:0,0,0 +(1,15245:3078558,2439708:0,1703936,0 +g1,15245:29030814,2439708 +g1,15245:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15245:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15214:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15245:37855564,2439708:1179648,16384,0 ) ) -k1,15214:3078556,2439708:-34777008 +k1,15245:3078556,2439708:-34777008 ) ] -[1,15214:3078558,4812305:0,0,0 -(1,15214:3078558,49800853:0,16384,2228224 -k1,15214:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15214:2537886,49800853:1179648,16384,0 +[1,15245:3078558,4812305:0,0,0 +(1,15245:3078558,49800853:0,16384,2228224 +k1,15245:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15245:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15214:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15245:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,15214:3078558,4812305:0,0,0 -(1,15214:3078558,49800853:0,16384,2228224 -g1,15214:29030814,49800853 -g1,15214:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15214:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15214:37855564,49800853:1179648,16384,0 +[1,15245:3078558,4812305:0,0,0 +(1,15245:3078558,49800853:0,16384,2228224 +g1,15245:29030814,49800853 +g1,15245:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15245:36151628,51504789:16384,1179648,0 ) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) -k1,15214:3078556,49800853:-34777008 -) -] -g1,15214:6630773,4812305 -k1,15214:25712890,4812305:17886740 -g1,15214:29057847,4812305 -g1,15214:29873114,4812305 -) -) -] -[1,15214:6630773,45706769:25952256,40108032,0 -(1,15214:6630773,45706769:25952256,40108032,0 -(1,15214:6630773,45706769:0,0,0 -g1,15214:6630773,45706769 -) -[1,15214:6630773,45706769:25952256,40108032,0 -(1,15164:6630773,6254097:25952256,513147,115847 -h1,15163:6630773,6254097:983040,0,0 -k1,15163:9760552,6254097:159687 -k1,15163:10788591,6254097:159687 -k1,15163:12461504,6254097:159687 -(1,15163:12461504,6254097:0,452978,115847 -r1,15163:14930041,6254097:2468537,568825,115847 -k1,15163:12461504,6254097:-2468537 -) -(1,15163:12461504,6254097:2468537,452978,115847 -k1,15163:12461504,6254097:3277 -h1,15163:14926764,6254097:0,411205,112570 -) -k1,15163:15089727,6254097:159686 -k1,15163:15900842,6254097:159687 -k1,15163:17899469,6254097:159687 -k1,15163:20069801,6254097:159687 -k1,15163:22267658,6254097:159687 -k1,15163:23043382,6254097:159686 -k1,15163:23558929,6254097:159687 -k1,15163:26403626,6254097:159687 -k1,15163:29589110,6254097:159687 -(1,15163:29589110,6254097:0,459977,115847 -r1,15163:32409359,6254097:2820249,575824,115847 -k1,15163:29589110,6254097:-2820249 -) -(1,15163:29589110,6254097:2820249,459977,115847 -k1,15163:29589110,6254097:3277 -h1,15163:32406082,6254097:0,411205,112570 -) -k1,15164:32583029,6254097:0 -) -(1,15164:6630773,7095585:25952256,513147,134348 -(1,15163:6630773,7095585:0,459977,115847 -r1,15163:9802733,7095585:3171960,575824,115847 -k1,15163:6630773,7095585:-3171960 -) -(1,15163:6630773,7095585:3171960,459977,115847 -k1,15163:6630773,7095585:3277 -h1,15163:9799456,7095585:0,411205,112570 -) -k1,15163:10157180,7095585:180777 -k1,15163:11529401,7095585:180776 -(1,15163:11529401,7095585:0,459977,115847 -r1,15163:15053073,7095585:3523672,575824,115847 -k1,15163:11529401,7095585:-3523672 -) -(1,15163:11529401,7095585:3523672,459977,115847 -k1,15163:11529401,7095585:3277 -h1,15163:15049796,7095585:0,411205,112570 -) -k1,15163:15233850,7095585:180777 -k1,15163:17096281,7095585:180777 -k1,15163:18296142,7095585:180776 -k1,15163:21953604,7095585:180777 -k1,15163:23401846,7095585:180776 -k1,15163:26557302,7095585:180777 -k1,15163:28934190,7095585:180777 -k1,15163:29774258,7095585:180776 -k1,15163:31657005,7095585:180777 -k1,15164:32583029,7095585:0 -) -(1,15164:6630773,7937073:25952256,513147,134348 -k1,15163:8362452,7937073:260396 -k1,15163:10497179,7937073:260397 -k1,15163:13783372,7937073:260396 -k1,15163:15148050,7937073:260396 -k1,15163:16156212,7937073:260396 -k1,15163:17929835,7937073:260397 -k1,15163:19888269,7937073:260396 -k1,15163:22720953,7937073:260396 -k1,15163:24588947,7937073:260396 -k1,15163:25500772,7937073:260397 -k1,15163:28493364,7937073:260396 -k1,15163:31265755,7937073:260396 -k1,15164:32583029,7937073:0 -) -(1,15164:6630773,8778561:25952256,513147,134348 -k1,15163:8715960,8778561:214789 -k1,15163:11126860,8778561:214789 -k1,15163:12289300,8778561:214789 -k1,15163:13523175,8778561:214790 -(1,15163:13523175,8778561:0,452978,115847 -r1,15163:15288288,8778561:1765113,568825,115847 -k1,15163:13523175,8778561:-1765113 -) -(1,15163:13523175,8778561:1765113,452978,115847 -k1,15163:13523175,8778561:3277 -h1,15163:15285011,8778561:0,411205,112570 -) -k1,15163:15503077,8778561:214789 -k1,15163:18505112,8778561:214789 -k1,15163:19786172,8778561:214789 -k1,15163:20660253,8778561:214789 -k1,15163:23668842,8778561:214789 -k1,15163:26126929,8778561:214790 -k1,15163:27896232,8778561:214789 -k1,15163:29710099,8778561:214789 -k1,15163:31116333,8778561:214789 -k1,15163:32583029,8778561:0 -) -(1,15164:6630773,9620049:25952256,513147,126483 -k1,15163:9846297,9620049:240845 -k1,15163:12271457,9620049:240845 -k1,15163:14070092,9620049:240844 -k1,15163:15415219,9620049:240845 -k1,15163:16577500,9620049:240845 -k1,15163:17765996,9620049:240845 -k1,15163:20841928,9620049:240845 -k1,15163:22595998,9620049:240844 -k1,15163:23488271,9620049:240845 -k1,15163:25658496,9620049:240845 -k1,15163:27743524,9620049:240845 -k1,15163:29994357,9620049:240844 -k1,15163:30591062,9620049:240845 -k1,15163:31931601,9620049:240845 -k1,15164:32583029,9620049:0 -) -(1,15164:6630773,10461537:25952256,452978,115847 -(1,15163:6630773,10461537:0,452978,115847 -r1,15163:8395886,10461537:1765113,568825,115847 -k1,15163:6630773,10461537:-1765113 -) -(1,15163:6630773,10461537:1765113,452978,115847 -k1,15163:6630773,10461537:3277 -h1,15163:8392609,10461537:0,411205,112570 -) -k1,15164:32583028,10461537:24013472 -g1,15164:32583028,10461537 -) -v1,15166:6630773,11596438:0,393216,0 -(1,15179:6630773,14702792:25952256,3499570,196608 -g1,15179:6630773,14702792 -g1,15179:6630773,14702792 -g1,15179:6434165,14702792 -(1,15179:6434165,14702792:0,3499570,196608 -r1,15179:32779637,14702792:26345472,3696178,196608 -k1,15179:6434165,14702792:-26345472 -) -(1,15179:6434165,14702792:26345472,3499570,196608 -[1,15179:6630773,14702792:25952256,3302962,0 -(1,15168:6630773,11810348:25952256,410518,107478 -(1,15167:6630773,11810348:0,0,0 -g1,15167:6630773,11810348 -g1,15167:6630773,11810348 -g1,15167:6303093,11810348 -(1,15167:6303093,11810348:0,0,0 -) -g1,15167:6630773,11810348 -) -k1,15168:6630773,11810348:0 -g1,15168:12637542,11810348 -g1,15168:13269834,11810348 -g1,15168:15482854,11810348 -g1,15168:16431292,11810348 -k1,15168:16431292,11810348:0 -h1,15168:18644312,11810348:0,0,0 -k1,15168:32583029,11810348:13938717 -g1,15168:32583029,11810348 -) -(1,15172:6630773,12542062:25952256,404226,107478 -(1,15170:6630773,12542062:0,0,0 -g1,15170:6630773,12542062 -g1,15170:6630773,12542062 -g1,15170:6303093,12542062 -(1,15170:6303093,12542062:0,0,0 -) -g1,15170:6630773,12542062 -) -g1,15172:7579210,12542062 -g1,15172:8843793,12542062 -g1,15172:12637541,12542062 -g1,15172:13269833,12542062 -h1,15172:15166707,12542062:0,0,0 -k1,15172:32583029,12542062:17416322 -g1,15172:32583029,12542062 -) -(1,15174:6630773,13863600:25952256,410518,107478 -(1,15173:6630773,13863600:0,0,0 -g1,15173:6630773,13863600 -g1,15173:6630773,13863600 -g1,15173:6303093,13863600 -(1,15173:6303093,13863600:0,0,0 -) -g1,15173:6630773,13863600 -) -k1,15174:6630773,13863600:0 -g1,15174:12637542,13863600 -g1,15174:13269834,13863600 -g1,15174:15482854,13863600 -g1,15174:16431292,13863600 -k1,15174:16431292,13863600:0 -h1,15174:18644312,13863600:0,0,0 -k1,15174:32583029,13863600:13938717 -g1,15174:32583029,13863600 -) -(1,15178:6630773,14595314:25952256,404226,107478 -(1,15176:6630773,14595314:0,0,0 -g1,15176:6630773,14595314 -g1,15176:6630773,14595314 -g1,15176:6303093,14595314 -(1,15176:6303093,14595314:0,0,0 -) -g1,15176:6630773,14595314 -) -g1,15178:7579210,14595314 -g1,15178:8843793,14595314 -g1,15178:11372959,14595314 -g1,15178:12005251,14595314 -h1,15178:13585979,14595314:0,0,0 -k1,15178:32583029,14595314:18997050 -g1,15178:32583029,14595314 -) -] -) -g1,15179:32583029,14702792 -g1,15179:6630773,14702792 -g1,15179:6630773,14702792 -g1,15179:32583029,14702792 -g1,15179:32583029,14702792 -) -h1,15179:6630773,14899400:0,0,0 -v1,15183:6630773,16678335:0,393216,0 -(1,15186:6630773,21488831:25952256,5203712,616038 -g1,15186:6630773,21488831 -(1,15186:6630773,21488831:25952256,5203712,616038 -(1,15186:6630773,22104869:25952256,5819750,0 -[1,15186:6630773,22104869:25952256,5819750,0 -(1,15186:6630773,22078655:25952256,5767322,0 -r1,15186:6656987,22078655:26214,5767322,0 -[1,15186:6656987,22078655:25899828,5767322,0 -(1,15186:6656987,21488831:25899828,4587674,0 -[1,15186:7246811,21488831:24720180,4587674,0 -(1,15184:7246811,17988531:24720180,1087374,126483 -k1,15183:8818696,17988531:362182 -k1,15183:10989671,17988531:362181 -k1,15183:12370938,17988531:362182 -k1,15183:15037365,17988531:362181 -k1,15183:17428542,17988531:362182 -k1,15183:18268481,17988531:362182 -k1,15183:19801135,17988531:362181 -k1,15183:21154877,17988531:362182 -k1,15183:24009392,17988531:362181 -k1,15183:25765525,17988531:362182 -k1,15183:26581052,17988531:362018 -k1,15183:27626118,17988531:362181 -k1,15183:29271495,17988531:362182 -k1,15184:31966991,17988531:0 -) -(1,15184:7246811,18830019:24720180,513147,134348 -(1,15183:7246811,18830019:0,459977,115847 -r1,15186:10418771,18830019:3171960,575824,115847 -k1,15183:7246811,18830019:-3171960 -) -(1,15183:7246811,18830019:3171960,459977,115847 -k1,15183:7246811,18830019:3277 -h1,15183:10415494,18830019:0,411205,112570 -) -g1,15183:10618000,18830019 -g1,15183:11949691,18830019 -g1,15183:14483312,18830019 -g1,15183:15430307,18830019 -g1,15183:18121870,18830019 -g1,15183:18972527,18830019 -g1,15183:20515899,18830019 -g1,15183:23816947,18830019 -g1,15183:25800066,18830019 -g1,15183:26787693,18830019 -g1,15183:28374975,18830019 -k1,15184:31966991,18830019:1920193 -g1,15184:31966991,18830019 -) -(1,15186:7246811,19671507:24720180,513147,134348 -h1,15185:7246811,19671507:983040,0,0 -k1,15185:9739466,19671507:212002 -k1,15185:11345420,19671507:212003 -k1,15185:14583219,19671507:212002 -(1,15185:14583219,19671507:0,459977,115847 -r1,15186:17403468,19671507:2820249,575824,115847 -k1,15185:14583219,19671507:-2820249 -) -(1,15185:14583219,19671507:2820249,459977,115847 -k1,15185:14583219,19671507:3277 -h1,15185:17400191,19671507:0,411205,112570 -) -k1,15185:17789141,19671507:212003 -(1,15185:17789141,19671507:0,459977,115847 -r1,15186:20961101,19671507:3171960,575824,115847 -k1,15185:17789141,19671507:-3171960 -) -(1,15185:17789141,19671507:3171960,459977,115847 -k1,15185:17789141,19671507:3277 -h1,15185:20957824,19671507:0,411205,112570 -) -k1,15185:21346773,19671507:212002 -k1,15185:22750220,19671507:212002 -(1,15185:22750220,19671507:0,459977,115847 -r1,15186:26273892,19671507:3523672,575824,115847 -k1,15185:22750220,19671507:-3523672 -) -(1,15185:22750220,19671507:3523672,459977,115847 -k1,15185:22750220,19671507:3277 -h1,15185:26270615,19671507:0,411205,112570 -) -k1,15185:26659565,19671507:212003 -k1,15185:30299100,19671507:212002 -k1,15186:31966991,19671507:0 -) -(1,15186:7246811,20512995:24720180,513147,134348 -k1,15185:8839633,20512995:285379 -k1,15185:10841401,20512995:285380 -k1,15185:11786072,20512995:285379 -k1,15185:13634486,20512995:285380 -k1,15185:15187331,20512995:285379 -k1,15185:18447390,20512995:285380 -k1,15185:20928880,20512995:285379 -k1,15185:21873552,20512995:285380 -k1,15185:24921274,20512995:285379 -k1,15185:27525318,20512995:285380 -k1,15185:29204648,20512995:285379 -k1,15185:31966991,20512995:0 -) -(1,15186:7246811,21354483:24720180,513147,134348 -g1,15185:10262122,21354483 -g1,15185:11120643,21354483 -g1,15185:13278088,21354483 -k1,15186:31966991,21354483:17577412 -g1,15186:31966991,21354483 -) -] -) -] -r1,15186:32583029,22078655:26214,5767322,0 -) -] -) -) -g1,15186:32583029,21488831 -) -h1,15186:6630773,22104869:0,0,0 -(1,15189:6630773,23415080:25952256,513147,126483 -h1,15188:6630773,23415080:983040,0,0 -k1,15188:8324485,23415080:240779 -k1,15188:9096762,23415080:240780 -k1,15188:10623357,23415080:240779 -k1,15188:13494096,23415080:240779 -k1,15188:14386303,23415080:240779 -k1,15188:17837036,23415080:240780 -k1,15188:19096900,23415080:240779 -k1,15188:21018022,23415080:240779 -k1,15188:21918093,23415080:240779 -k1,15188:25000514,23415080:240780 -k1,15188:26097849,23415080:240779 -k1,15188:26954666,23415080:240779 -k1,15188:28580221,23415080:240779 -k1,15188:29840086,23415080:240780 -k1,15188:31923737,23415080:240779 -k1,15188:32583029,23415080:0 -) -(1,15189:6630773,24256568:25952256,513147,134348 -k1,15188:10291852,24256568:183739 -k1,15188:11743057,24256568:183739 -k1,15188:12282656,24256568:183739 -k1,15188:13749590,24256568:183739 -k1,15188:17546984,24256568:183739 -k1,15188:20402627,24256568:183740 -k1,15188:21395736,24256568:183739 -k1,15188:22598560,24256568:183739 -k1,15188:23577906,24256568:183739 -k1,15188:27796041,24256568:183739 -k1,15188:28639072,24256568:183739 -k1,15188:32583029,24256568:0 -) -(1,15189:6630773,25098056:25952256,513147,134348 -k1,15188:8372337,25098056:223095 -k1,15188:12365719,25098056:223096 -k1,15188:13580374,25098056:223095 -k1,15188:17108450,25098056:223095 -k1,15188:18844772,25098056:223096 -k1,15188:19754029,25098056:223095 -k1,15188:21821307,25098056:223095 -k1,15188:22660441,25098056:223096 -k1,15188:24664805,25098056:223095 -k1,15188:26268744,25098056:223095 -k1,15188:27023337,25098056:223096 -k1,15188:30024503,25098056:223095 -k1,15188:32583029,25098056:0 -) -(1,15189:6630773,25939544:25952256,513147,134348 -g1,15188:7922487,25939544 -g1,15188:8781008,25939544 -g1,15188:11392617,25939544 -g1,15188:12783291,25939544 -k1,15189:32583029,25939544:15975713 -g1,15189:32583029,25939544 -) -(1,15191:6630773,26781032:25952256,505283,126483 -h1,15190:6630773,26781032:983040,0,0 -k1,15190:8721806,26781032:154444 -k1,15190:9968736,26781032:154445 -(1,15190:9968736,26781032:0,452978,115847 -r1,15190:12788985,26781032:2820249,568825,115847 -k1,15190:9968736,26781032:-2820249 -) -(1,15190:9968736,26781032:2820249,452978,115847 -k1,15190:9968736,26781032:3277 -h1,15190:12785708,26781032:0,411205,112570 -) -k1,15190:12943429,26781032:154444 -k1,15190:13749302,26781032:154445 -k1,15190:17113699,26781032:154444 -k1,15190:20109784,26781032:154444 -k1,15190:20947114,26781032:154445 -k1,15190:24871844,26781032:154444 -k1,15190:27820089,26781032:154445 -k1,15190:28590571,26781032:154444 -(1,15190:28590571,26781032:0,452978,115847 -r1,15190:30003973,26781032:1413402,568825,115847 -k1,15190:28590571,26781032:-1413402 -) -(1,15190:28590571,26781032:1413402,452978,115847 -g1,15190:29648984,26781032 -h1,15190:30000696,26781032:0,411205,112570 -) -k1,15190:30158418,26781032:154445 -k1,15190:31074390,26781032:154444 -k1,15190:32583029,26781032:0 -) -(1,15191:6630773,27622520:25952256,505283,134348 -k1,15190:8721964,27622520:237177 -k1,15190:9705595,27622520:237176 -k1,15190:11811203,27622520:237177 -k1,15190:13332886,27622520:237177 -k1,15190:14589147,27622520:237176 -k1,15190:17898652,27622520:237177 -k1,15190:18787257,27622520:237177 -(1,15190:18787257,27622520:0,452978,115847 -r1,15190:21607506,27622520:2820249,568825,115847 -k1,15190:18787257,27622520:-2820249 -) -(1,15190:18787257,27622520:2820249,452978,115847 -k1,15190:18787257,27622520:3277 -h1,15190:21604229,27622520:0,411205,112570 -) -k1,15190:21844682,27622520:237176 -k1,15190:23942426,27622520:237177 -k1,15190:24831030,27622520:237176 -k1,15190:25815973,27622520:237177 -k1,15190:28339701,27622520:237177 -k1,15190:29263039,27622520:237176 -k1,15190:30270919,27622520:237177 -k1,15191:32583029,27622520:0 -) -(1,15191:6630773,28464008:25952256,505283,126483 -k1,15190:8390551,28464008:245241 -k1,15190:9251830,28464008:245241 -k1,15190:10700312,28464008:245241 -k1,15190:13606970,28464008:245241 -k1,15190:14720563,28464008:245241 -k1,15190:16496070,28464008:245241 -k1,15190:17392739,28464008:245241 -k1,15190:18730466,28464008:245242 -k1,15190:19331567,28464008:245241 -k1,15190:21181785,28464008:245241 -(1,15190:21181785,28464008:0,414482,115847 -r1,15190:21540051,28464008:358266,530329,115847 -k1,15190:21181785,28464008:-358266 -) -(1,15190:21181785,28464008:358266,414482,115847 -k1,15190:21181785,28464008:3277 -h1,15190:21536774,28464008:0,411205,112570 -) -k1,15190:21958962,28464008:245241 -k1,15190:22855631,28464008:245241 -k1,15190:24939812,28464008:245241 -k1,15190:25540913,28464008:245241 -k1,15190:27573976,28464008:245241 -k1,15190:30454420,28464008:245241 -k1,15190:32583029,28464008:0 -) -(1,15191:6630773,29305496:25952256,513147,126483 -k1,15190:11003772,29305496:179350 -k1,15190:11649083,29305496:179350 -k1,15190:12847518,29305496:179350 -k1,15190:16797155,29305496:179351 -k1,15190:19314174,29305496:179350 -k1,15190:22508835,29305496:179350 -k1,15190:24384912,29305496:179350 -k1,15190:25696724,29305496:179350 -k1,15190:26623840,29305496:179350 -k1,15190:29641555,29305496:179351 -k1,15190:30768556,29305496:179350 -k1,15190:31563944,29305496:179350 -k1,15190:32583029,29305496:0 -) -(1,15191:6630773,30146984:25952256,505283,126483 -g1,15190:10887336,30146984 -g1,15190:13038227,30146984 -g1,15190:14679903,30146984 -g1,15190:15495170,30146984 -(1,15190:15495170,30146984:0,452978,115847 -r1,15190:16908571,30146984:1413401,568825,115847 -k1,15190:15495170,30146984:-1413401 -) -(1,15190:15495170,30146984:1413401,452978,115847 -k1,15190:15495170,30146984:3277 -h1,15190:16905294,30146984:0,411205,112570 -) -g1,15190:17281470,30146984 -g1,15190:19551637,30146984 -g1,15190:21760855,30146984 -g1,15190:22315944,30146984 -g1,15190:23614867,30146984 -g1,15190:24465524,30146984 -(1,15190:24465524,30146984:0,452978,115847 -r1,15190:26230637,30146984:1765113,568825,115847 -k1,15190:24465524,30146984:-1765113 -) -(1,15190:24465524,30146984:1765113,452978,115847 -k1,15190:24465524,30146984:3277 -h1,15190:26227360,30146984:0,411205,112570 -) -k1,15191:32583029,30146984:6178722 -g1,15191:32583029,30146984 -) -v1,15193:6630773,31281886:0,393216,0 -(1,15201:6630773,34230237:25952256,3341567,196608 -g1,15201:6630773,34230237 -g1,15201:6630773,34230237 -g1,15201:6434165,34230237 -(1,15201:6434165,34230237:0,3341567,196608 -r1,15201:32779637,34230237:26345472,3538175,196608 -k1,15201:6434165,34230237:-26345472 -) -(1,15201:6434165,34230237:26345472,3341567,196608 -[1,15201:6630773,34230237:25952256,3144959,0 -(1,15195:6630773,31489504:25952256,404226,107478 -(1,15194:6630773,31489504:0,0,0 -g1,15194:6630773,31489504 -g1,15194:6630773,31489504 -g1,15194:6303093,31489504 -(1,15194:6303093,31489504:0,0,0 -) -g1,15194:6630773,31489504 -) -k1,15195:6630773,31489504:0 -g1,15195:10740667,31489504 -g1,15195:14218270,31489504 -g1,15195:16431290,31489504 -h1,15195:16747436,31489504:0,0,0 -k1,15195:32583029,31489504:15835593 -g1,15195:32583029,31489504 -) -(1,15196:6630773,32155682:25952256,404226,107478 -h1,15196:6630773,32155682:0,0,0 -g1,15196:6946919,32155682 -g1,15196:7263065,32155682 -g1,15196:11372959,32155682 -h1,15196:11689105,32155682:0,0,0 -k1,15196:32583029,32155682:20893924 -g1,15196:32583029,32155682 -) -(1,15197:6630773,32821860:25952256,404226,101187 -h1,15197:6630773,32821860:0,0,0 -g1,15197:6946919,32821860 -g1,15197:7263065,32821860 -g1,15197:10740668,32821860 -g1,15197:11372960,32821860 -g1,15197:17063583,32821860 -k1,15197:17063583,32821860:0 -h1,15197:23070352,32821860:0,0,0 -k1,15197:32583029,32821860:9512677 -g1,15197:32583029,32821860 -) -(1,15198:6630773,33488038:25952256,404226,101187 -h1,15198:6630773,33488038:0,0,0 -g1,15198:6946919,33488038 -g1,15198:7263065,33488038 -g1,15198:7579211,33488038 -g1,15198:7895357,33488038 -g1,15198:8211503,33488038 -g1,15198:8527649,33488038 -g1,15198:8843795,33488038 -g1,15198:11689106,33488038 -g1,15198:12321398,33488038 -g1,15198:16431292,33488038 -k1,15198:16431292,33488038:0 -h1,15198:24334934,33488038:0,0,0 -k1,15198:32583029,33488038:8248095 -g1,15198:32583029,33488038 -) -(1,15199:6630773,34154216:25952256,404226,76021 -h1,15199:6630773,34154216:0,0,0 -g1,15199:6946919,34154216 -g1,15199:7263065,34154216 -g1,15199:7579211,34154216 -g1,15199:7895357,34154216 -g1,15199:8211503,34154216 -g1,15199:8527649,34154216 -g1,15199:8843795,34154216 -h1,15199:9159941,34154216:0,0,0 -k1,15199:32583029,34154216:23423088 -g1,15199:32583029,34154216 -) -] -) -g1,15201:32583029,34230237 -g1,15201:6630773,34230237 -g1,15201:6630773,34230237 -g1,15201:32583029,34230237 -g1,15201:32583029,34230237 -) -h1,15201:6630773,34426845:0,0,0 -(1,15204:6630773,44023793:25952256,9062689,0 -k1,15204:10523651,44023793:3892878 -h1,15203:10523651,44023793:0,0,0 -(1,15203:10523651,44023793:18166500,9062689,0 -(1,15203:10523651,44023793:18167381,9062712,0 -(1,15203:10523651,44023793:18167381,9062712,0 -(1,15203:10523651,44023793:0,9062712,0 -(1,15203:10523651,44023793:0,14155776,0 -(1,15203:10523651,44023793:28377088,14155776,0 -) -k1,15203:10523651,44023793:-28377088 -) -) -g1,15203:28691032,44023793 -) -) -) -g1,15204:28690151,44023793 -k1,15204:32583029,44023793:3892878 -) -(1,15212:6630773,44865281:25952256,513147,126483 -h1,15211:6630773,44865281:983040,0,0 -k1,15211:8566755,44865281:325107 -k1,15211:9910947,44865281:325107 -k1,15211:11603135,44865281:325107 -k1,15211:12595398,44865281:325107 -(1,15211:12595398,44865281:0,452978,115847 -r1,15211:16822494,44865281:4227096,568825,115847 -k1,15211:12595398,44865281:-4227096 -) -(1,15211:12595398,44865281:4227096,452978,115847 -k1,15211:12595398,44865281:3277 -h1,15211:16819217,44865281:0,411205,112570 -) -k1,15211:17147601,44865281:325107 -k1,15211:18341060,44865281:325107 -k1,15211:20819025,44865281:325107 -k1,15211:22692748,44865281:325107 -k1,15211:23549352,44865281:325107 -k1,15211:24525887,44865281:325107 -k1,15211:25598760,44865281:325107 -k1,15211:27437093,44865281:325107 -k1,15211:28709851,44865281:325107 -k1,15211:32583029,44865281:0 -) -(1,15212:6630773,45706769:25952256,505283,134348 -g1,15211:9388528,45706769 -g1,15211:9943617,45706769 -g1,15211:12301602,45706769 -k1,15212:32583030,45706769:19114232 -g1,15212:32583030,45706769 -) -] -(1,15214:32583029,45706769:0,0,0 -g1,15214:32583029,45706769 -) -) -] -(1,15214:6630773,47279633:25952256,0,0 -h1,15214:6630773,47279633:25952256,0,0 -) -] -h1,15214:4262630,4025873:0,0,0 -] -!23380 -}295 -Input:2325:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2326:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2327:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2328:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 -{296 -[1,15272:4262630,47279633:28320399,43253760,0 -(1,15272:4262630,4025873:0,0,0 -[1,15272:-473657,4025873:25952256,0,0 -(1,15272:-473657,-710414:25952256,0,0 -h1,15272:-473657,-710414:0,0,0 -(1,15272:-473657,-710414:0,0,0 -(1,15272:-473657,-710414:0,0,0 -g1,15272:-473657,-710414 -(1,15272:-473657,-710414:65781,0,65781 -g1,15272:-407876,-710414 -[1,15272:-407876,-644633:0,0,0 ] ) -k1,15272:-473657,-710414:-65781 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15245:37855564,49800853:1179648,16384,0 ) ) -k1,15272:25478599,-710414:25952256 -g1,15272:25478599,-710414 +k1,15245:3078556,49800853:-34777008 ) ] -) -[1,15272:6630773,47279633:25952256,43253760,0 -[1,15272:6630773,4812305:25952256,786432,0 -(1,15272:6630773,4812305:25952256,505283,134348 -(1,15272:6630773,4812305:25952256,505283,134348 -g1,15272:3078558,4812305 -[1,15272:3078558,4812305:0,0,0 -(1,15272:3078558,2439708:0,1703936,0 -k1,15272:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15272:2537886,2439708:1179648,16384,0 -) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15272:3078558,1915420:16384,1179648,0 -) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 -) +g1,15245:6630773,4812305 +g1,15245:6630773,4812305 +g1,15245:8592265,4812305 +g1,15245:11642310,4812305 +g1,15245:15396212,4812305 +k1,15245:31387652,4812305:15991440 +) +) +] +[1,15245:6630773,45706769:25952256,40108032,0 +(1,15245:6630773,45706769:25952256,40108032,0 +(1,15245:6630773,45706769:0,0,0 +g1,15245:6630773,45706769 +) +[1,15245:6630773,45706769:25952256,40108032,0 +(1,15195:6630773,6254097:25952256,513147,115847 +h1,15194:6630773,6254097:983040,0,0 +k1,15194:9760552,6254097:159687 +k1,15194:10788591,6254097:159687 +k1,15194:12461504,6254097:159687 +(1,15194:12461504,6254097:0,452978,115847 +r1,15194:14930041,6254097:2468537,568825,115847 +k1,15194:12461504,6254097:-2468537 +) +(1,15194:12461504,6254097:2468537,452978,115847 +k1,15194:12461504,6254097:3277 +h1,15194:14926764,6254097:0,411205,112570 +) +k1,15194:15089727,6254097:159686 +k1,15194:15900842,6254097:159687 +k1,15194:17899469,6254097:159687 +k1,15194:20069801,6254097:159687 +k1,15194:22267658,6254097:159687 +k1,15194:23043382,6254097:159686 +k1,15194:23558929,6254097:159687 +k1,15194:26403626,6254097:159687 +k1,15194:29589110,6254097:159687 +(1,15194:29589110,6254097:0,459977,115847 +r1,15194:32409359,6254097:2820249,575824,115847 +k1,15194:29589110,6254097:-2820249 +) +(1,15194:29589110,6254097:2820249,459977,115847 +k1,15194:29589110,6254097:3277 +h1,15194:32406082,6254097:0,411205,112570 +) +k1,15195:32583029,6254097:0 +) +(1,15195:6630773,7095585:25952256,513147,134348 +(1,15194:6630773,7095585:0,459977,115847 +r1,15194:9802733,7095585:3171960,575824,115847 +k1,15194:6630773,7095585:-3171960 +) +(1,15194:6630773,7095585:3171960,459977,115847 +k1,15194:6630773,7095585:3277 +h1,15194:9799456,7095585:0,411205,112570 +) +k1,15194:10138532,7095585:162129 +k1,15194:11492105,7095585:162128 +(1,15194:11492105,7095585:0,459977,115847 +r1,15194:15015777,7095585:3523672,575824,115847 +k1,15194:11492105,7095585:-3523672 +) +(1,15194:11492105,7095585:3523672,459977,115847 +k1,15194:11492105,7095585:3277 +h1,15194:15012500,7095585:0,411205,112570 +) +k1,15194:15177906,7095585:162129 +k1,15194:17021689,7095585:162129 +k1,15194:18202903,7095585:162129 +k1,15194:21841716,7095585:162128 +k1,15194:23271311,7095585:162129 +k1,15194:26408119,7095585:162129 +k1,15194:28766359,7095585:162129 +k1,15194:29587779,7095585:162128 +k1,15194:31451878,7095585:162129 +k1,15195:32583029,7095585:0 +) +(1,15195:6630773,7937073:25952256,513147,134348 +k1,15194:8036302,7937073:139373 +k1,15194:10050005,7937073:139373 +k1,15194:13215175,7937073:139373 +k1,15194:14458830,7937073:139373 +k1,15194:15345969,7937073:139373 +k1,15194:16998568,7937073:139373 +k1,15194:18835980,7937073:139374 +k1,15194:21547641,7937073:139373 +k1,15194:23294612,7937073:139373 +k1,15194:24085413,7937073:139373 +k1,15194:26956982,7937073:139373 +k1,15194:29608350,7937073:139373 +k1,15194:32583029,7937073:0 +) +(1,15195:6630773,8778561:25952256,513147,134348 +k1,15194:9009006,8778561:182122 +k1,15194:10138779,8778561:182122 +k1,15194:11339986,8778561:182122 +(1,15194:11339986,8778561:0,452978,115847 +r1,15194:13105099,8778561:1765113,568825,115847 +k1,15194:11339986,8778561:-1765113 +) +(1,15194:11339986,8778561:1765113,452978,115847 +k1,15194:11339986,8778561:3277 +h1,15194:13101822,8778561:0,411205,112570 +) +k1,15194:13287221,8778561:182122 +k1,15194:16256589,8778561:182122 +k1,15194:17504982,8778561:182122 +k1,15194:18346396,8778561:182122 +k1,15194:21322318,8778561:182122 +k1,15194:23747737,8778561:182122 +k1,15194:25484373,8778561:182122 +k1,15194:27265573,8778561:182122 +k1,15194:28639140,8778561:182122 +k1,15194:30287958,8778561:182122 +k1,15195:32583029,8778561:0 +) +(1,15195:6630773,9620049:25952256,513147,126483 +g1,15194:7722602,9620049 +g1,15194:10106146,9620049 +g1,15194:11863166,9620049 +g1,15194:13166677,9620049 +g1,15194:14287342,9620049 +g1,15194:15434222,9620049 +g1,15194:18468538,9620049 +g1,15194:20180993,9620049 +g1,15194:21031650,9620049 +g1,15194:23160259,9620049 +g1,15194:25203671,9620049 +g1,15194:27412889,9620049 +g1,15194:27967978,9620049 +g1,15194:29266901,9620049 +g1,15194:30117558,9620049 +(1,15194:30117558,9620049:0,452978,115847 +r1,15194:31882671,9620049:1765113,568825,115847 +k1,15194:30117558,9620049:-1765113 +) +(1,15194:30117558,9620049:1765113,452978,115847 +k1,15194:30117558,9620049:3277 +h1,15194:31879394,9620049:0,411205,112570 +) +k1,15195:32583029,9620049:526688 +g1,15195:32583029,9620049 +) +v1,15197:6630773,10810515:0,393216,0 +(1,15210:6630773,13916869:25952256,3499570,196608 +g1,15210:6630773,13916869 +g1,15210:6630773,13916869 +g1,15210:6434165,13916869 +(1,15210:6434165,13916869:0,3499570,196608 +r1,15210:32779637,13916869:26345472,3696178,196608 +k1,15210:6434165,13916869:-26345472 +) +(1,15210:6434165,13916869:26345472,3499570,196608 +[1,15210:6630773,13916869:25952256,3302962,0 +(1,15199:6630773,11024425:25952256,410518,107478 +(1,15198:6630773,11024425:0,0,0 +g1,15198:6630773,11024425 +g1,15198:6630773,11024425 +g1,15198:6303093,11024425 +(1,15198:6303093,11024425:0,0,0 +) +g1,15198:6630773,11024425 +) +k1,15199:6630773,11024425:0 +g1,15199:12637542,11024425 +g1,15199:13269834,11024425 +g1,15199:15482854,11024425 +g1,15199:16431292,11024425 +k1,15199:16431292,11024425:0 +h1,15199:18644312,11024425:0,0,0 +k1,15199:32583029,11024425:13938717 +g1,15199:32583029,11024425 +) +(1,15203:6630773,11756139:25952256,404226,107478 +(1,15201:6630773,11756139:0,0,0 +g1,15201:6630773,11756139 +g1,15201:6630773,11756139 +g1,15201:6303093,11756139 +(1,15201:6303093,11756139:0,0,0 +) +g1,15201:6630773,11756139 +) +g1,15203:7579210,11756139 +g1,15203:8843793,11756139 +g1,15203:12637541,11756139 +g1,15203:13269833,11756139 +h1,15203:15166707,11756139:0,0,0 +k1,15203:32583029,11756139:17416322 +g1,15203:32583029,11756139 +) +(1,15205:6630773,13077677:25952256,410518,107478 +(1,15204:6630773,13077677:0,0,0 +g1,15204:6630773,13077677 +g1,15204:6630773,13077677 +g1,15204:6303093,13077677 +(1,15204:6303093,13077677:0,0,0 +) +g1,15204:6630773,13077677 +) +k1,15205:6630773,13077677:0 +g1,15205:12637542,13077677 +g1,15205:13269834,13077677 +g1,15205:15482854,13077677 +g1,15205:16431292,13077677 +k1,15205:16431292,13077677:0 +h1,15205:18644312,13077677:0,0,0 +k1,15205:32583029,13077677:13938717 +g1,15205:32583029,13077677 +) +(1,15209:6630773,13809391:25952256,404226,107478 +(1,15207:6630773,13809391:0,0,0 +g1,15207:6630773,13809391 +g1,15207:6630773,13809391 +g1,15207:6303093,13809391 +(1,15207:6303093,13809391:0,0,0 +) +g1,15207:6630773,13809391 +) +g1,15209:7579210,13809391 +g1,15209:8843793,13809391 +g1,15209:11372959,13809391 +g1,15209:12005251,13809391 +h1,15209:13585979,13809391:0,0,0 +k1,15209:32583029,13809391:18997050 +g1,15209:32583029,13809391 +) +] +) +g1,15210:32583029,13916869 +g1,15210:6630773,13916869 +g1,15210:6630773,13916869 +g1,15210:32583029,13916869 +g1,15210:32583029,13916869 +) +h1,15210:6630773,14113477:0,0,0 +v1,15214:6630773,16003541:0,393216,0 +(1,15217:6630773,20814037:25952256,5203712,616038 +g1,15217:6630773,20814037 +(1,15217:6630773,20814037:25952256,5203712,616038 +(1,15217:6630773,21430075:25952256,5819750,0 +[1,15217:6630773,21430075:25952256,5819750,0 +(1,15217:6630773,21403861:25952256,5767322,0 +r1,15217:6656987,21403861:26214,5767322,0 +[1,15217:6656987,21403861:25899828,5767322,0 +(1,15217:6656987,20814037:25899828,4587674,0 +[1,15217:7246811,20814037:24720180,4587674,0 +(1,15215:7246811,17313737:24720180,1087374,126483 +k1,15214:8818696,17313737:362182 +k1,15214:10989671,17313737:362181 +k1,15214:12370938,17313737:362182 +k1,15214:15037365,17313737:362181 +k1,15214:17428542,17313737:362182 +k1,15214:18268481,17313737:362182 +k1,15214:19801135,17313737:362181 +k1,15214:21154877,17313737:362182 +k1,15214:24009392,17313737:362181 +k1,15214:25765525,17313737:362182 +k1,15214:26581052,17313737:362018 +k1,15214:27626118,17313737:362181 +k1,15214:29271495,17313737:362182 +k1,15215:31966991,17313737:0 +) +(1,15215:7246811,18155225:24720180,513147,134348 +(1,15214:7246811,18155225:0,459977,115847 +r1,15217:10418771,18155225:3171960,575824,115847 +k1,15214:7246811,18155225:-3171960 +) +(1,15214:7246811,18155225:3171960,459977,115847 +k1,15214:7246811,18155225:3277 +h1,15214:10415494,18155225:0,411205,112570 +) +g1,15214:10618000,18155225 +g1,15214:11949691,18155225 +g1,15214:14483312,18155225 +g1,15214:15430307,18155225 +g1,15214:18121870,18155225 +g1,15214:18972527,18155225 +g1,15214:20515899,18155225 +g1,15214:23816947,18155225 +g1,15214:25800066,18155225 +g1,15214:26787693,18155225 +g1,15214:28374975,18155225 +k1,15215:31966991,18155225:1920193 +g1,15215:31966991,18155225 +) +(1,15217:7246811,18996713:24720180,513147,134348 +h1,15216:7246811,18996713:983040,0,0 +k1,15216:9810491,18996713:283027 +k1,15216:11487469,18996713:283027 +k1,15216:14796293,18996713:283027 +(1,15216:14796293,18996713:0,459977,115847 +r1,15217:17616542,18996713:2820249,575824,115847 +k1,15216:14796293,18996713:-2820249 +) +(1,15216:14796293,18996713:2820249,459977,115847 +k1,15216:14796293,18996713:3277 +h1,15216:17613265,18996713:0,411205,112570 +) +k1,15216:18073239,18996713:283027 +(1,15216:18073239,18996713:0,459977,115847 +r1,15217:21245199,18996713:3171960,575824,115847 +k1,15216:18073239,18996713:-3171960 +) +(1,15216:18073239,18996713:3171960,459977,115847 +k1,15216:18073239,18996713:3277 +h1,15216:21241922,18996713:0,411205,112570 +) +k1,15216:21701896,18996713:283027 +k1,15216:23176368,18996713:283027 +(1,15216:23176368,18996713:0,459977,115847 +r1,15217:26700040,18996713:3523672,575824,115847 +k1,15216:23176368,18996713:-3523672 +) +(1,15216:23176368,18996713:3523672,459977,115847 +k1,15216:23176368,18996713:3277 +h1,15216:26696763,18996713:0,411205,112570 +) +k1,15216:27156737,18996713:283027 +k1,15216:30867297,18996713:283027 +k1,15217:31966991,18996713:0 +) +(1,15217:7246811,19838201:24720180,513147,134348 +k1,15216:9396094,19838201:229733 +k1,15216:11342216,19838201:229734 +k1,15216:12231241,19838201:229733 +k1,15216:14024008,19838201:229733 +k1,15216:15521208,19838201:229734 +k1,15216:18725620,19838201:229733 +k1,15216:21151465,19838201:229734 +k1,15216:22040490,19838201:229733 +k1,15216:25032566,19838201:229733 +k1,15216:27580964,19838201:229734 +k1,15216:29204648,19838201:229733 +k1,15216:31966991,19838201:0 +) +(1,15217:7246811,20679689:24720180,513147,134348 +g1,15216:10262122,20679689 +g1,15216:11120643,20679689 +g1,15216:13278088,20679689 +k1,15217:31966991,20679689:17577412 +g1,15217:31966991,20679689 +) +] +) +] +r1,15217:32583029,21403861:26214,5767322,0 +) +] +) +) +g1,15217:32583029,20814037 +) +h1,15217:6630773,21430075:0,0,0 +(1,15220:6630773,22795851:25952256,513147,126483 +h1,15219:6630773,22795851:983040,0,0 +k1,15219:8324485,22795851:240779 +k1,15219:9096762,22795851:240780 +k1,15219:10623357,22795851:240779 +k1,15219:13494096,22795851:240779 +k1,15219:14386303,22795851:240779 +k1,15219:17837036,22795851:240780 +k1,15219:19096900,22795851:240779 +k1,15219:21018022,22795851:240779 +k1,15219:21918093,22795851:240779 +k1,15219:25000514,22795851:240780 +k1,15219:26097849,22795851:240779 +k1,15219:26954666,22795851:240779 +k1,15219:28580221,22795851:240779 +k1,15219:29840086,22795851:240780 +k1,15219:31923737,22795851:240779 +k1,15219:32583029,22795851:0 +) +(1,15220:6630773,23637339:25952256,513147,134348 +k1,15219:10291852,23637339:183739 +k1,15219:11743057,23637339:183739 +k1,15219:12282656,23637339:183739 +k1,15219:13749590,23637339:183739 +k1,15219:17546984,23637339:183739 +k1,15219:20402627,23637339:183740 +k1,15219:21395736,23637339:183739 +k1,15219:22598560,23637339:183739 +k1,15219:23577906,23637339:183739 +k1,15219:27796041,23637339:183739 +k1,15219:28639072,23637339:183739 +k1,15219:32583029,23637339:0 +) +(1,15220:6630773,24478827:25952256,513147,134348 +k1,15219:8372337,24478827:223095 +k1,15219:12365719,24478827:223096 +k1,15219:13580374,24478827:223095 +k1,15219:17108450,24478827:223095 +k1,15219:18844772,24478827:223096 +k1,15219:19754029,24478827:223095 +k1,15219:21821307,24478827:223095 +k1,15219:22660441,24478827:223096 +k1,15219:24664805,24478827:223095 +k1,15219:26268744,24478827:223095 +k1,15219:27023337,24478827:223096 +k1,15219:30024503,24478827:223095 +k1,15219:32583029,24478827:0 +) +(1,15220:6630773,25320315:25952256,513147,134348 +g1,15219:7922487,25320315 +g1,15219:8781008,25320315 +g1,15219:11392617,25320315 +g1,15219:12783291,25320315 +k1,15220:32583029,25320315:15975713 +g1,15220:32583029,25320315 +) +(1,15222:6630773,26161803:25952256,505283,126483 +h1,15221:6630773,26161803:983040,0,0 +k1,15221:8721806,26161803:154444 +k1,15221:9968736,26161803:154445 +(1,15221:9968736,26161803:0,452978,115847 +r1,15221:12788985,26161803:2820249,568825,115847 +k1,15221:9968736,26161803:-2820249 +) +(1,15221:9968736,26161803:2820249,452978,115847 +k1,15221:9968736,26161803:3277 +h1,15221:12785708,26161803:0,411205,112570 +) +k1,15221:12943429,26161803:154444 +k1,15221:13749302,26161803:154445 +k1,15221:17113699,26161803:154444 +k1,15221:20109784,26161803:154444 +k1,15221:20947114,26161803:154445 +k1,15221:24871844,26161803:154444 +k1,15221:27820089,26161803:154445 +k1,15221:28590571,26161803:154444 +(1,15221:28590571,26161803:0,452978,115847 +r1,15221:30003973,26161803:1413402,568825,115847 +k1,15221:28590571,26161803:-1413402 +) +(1,15221:28590571,26161803:1413402,452978,115847 +g1,15221:29648984,26161803 +h1,15221:30000696,26161803:0,411205,112570 +) +k1,15221:30158418,26161803:154445 +k1,15221:31074390,26161803:154444 +k1,15221:32583029,26161803:0 +) +(1,15222:6630773,27003291:25952256,505283,134348 +k1,15221:8721964,27003291:237177 +k1,15221:9705595,27003291:237176 +k1,15221:11811203,27003291:237177 +k1,15221:13332886,27003291:237177 +k1,15221:14589147,27003291:237176 +k1,15221:17898652,27003291:237177 +k1,15221:18787257,27003291:237177 +(1,15221:18787257,27003291:0,452978,115847 +r1,15221:21607506,27003291:2820249,568825,115847 +k1,15221:18787257,27003291:-2820249 +) +(1,15221:18787257,27003291:2820249,452978,115847 +k1,15221:18787257,27003291:3277 +h1,15221:21604229,27003291:0,411205,112570 +) +k1,15221:21844682,27003291:237176 +k1,15221:23942426,27003291:237177 +k1,15221:24831030,27003291:237176 +k1,15221:25815973,27003291:237177 +k1,15221:28339701,27003291:237177 +k1,15221:29263039,27003291:237176 +k1,15221:30270919,27003291:237177 +k1,15222:32583029,27003291:0 +) +(1,15222:6630773,27844779:25952256,505283,126483 +k1,15221:8390551,27844779:245241 +k1,15221:9251830,27844779:245241 +k1,15221:10700312,27844779:245241 +k1,15221:13606970,27844779:245241 +k1,15221:14720563,27844779:245241 +k1,15221:16496070,27844779:245241 +k1,15221:17392739,27844779:245241 +k1,15221:18730466,27844779:245242 +k1,15221:19331567,27844779:245241 +k1,15221:21181785,27844779:245241 +(1,15221:21181785,27844779:0,414482,115847 +r1,15221:21540051,27844779:358266,530329,115847 +k1,15221:21181785,27844779:-358266 +) +(1,15221:21181785,27844779:358266,414482,115847 +k1,15221:21181785,27844779:3277 +h1,15221:21536774,27844779:0,411205,112570 +) +k1,15221:21958962,27844779:245241 +k1,15221:22855631,27844779:245241 +k1,15221:24939812,27844779:245241 +k1,15221:25540913,27844779:245241 +k1,15221:27573976,27844779:245241 +k1,15221:30454420,27844779:245241 +k1,15221:32583029,27844779:0 +) +(1,15222:6630773,28686267:25952256,513147,126483 +k1,15221:11003772,28686267:179350 +k1,15221:11649083,28686267:179350 +k1,15221:12847518,28686267:179350 +k1,15221:16797155,28686267:179351 +k1,15221:19314174,28686267:179350 +k1,15221:22508835,28686267:179350 +k1,15221:24384912,28686267:179350 +k1,15221:25696724,28686267:179350 +k1,15221:26623840,28686267:179350 +k1,15221:29641555,28686267:179351 +k1,15221:30768556,28686267:179350 +k1,15221:31563944,28686267:179350 +k1,15221:32583029,28686267:0 +) +(1,15222:6630773,29527755:25952256,505283,126483 +g1,15221:10887336,29527755 +g1,15221:13038227,29527755 +g1,15221:14679903,29527755 +g1,15221:15495170,29527755 +(1,15221:15495170,29527755:0,452978,115847 +r1,15221:16908571,29527755:1413401,568825,115847 +k1,15221:15495170,29527755:-1413401 +) +(1,15221:15495170,29527755:1413401,452978,115847 +k1,15221:15495170,29527755:3277 +h1,15221:16905294,29527755:0,411205,112570 +) +g1,15221:17281470,29527755 +g1,15221:19551637,29527755 +g1,15221:21760855,29527755 +g1,15221:22315944,29527755 +g1,15221:23614867,29527755 +g1,15221:24465524,29527755 +(1,15221:24465524,29527755:0,452978,115847 +r1,15221:26230637,29527755:1765113,568825,115847 +k1,15221:24465524,29527755:-1765113 +) +(1,15221:24465524,29527755:1765113,452978,115847 +k1,15221:24465524,29527755:3277 +h1,15221:26227360,29527755:0,411205,112570 +) +k1,15222:32583029,29527755:6178722 +g1,15222:32583029,29527755 +) +v1,15224:6630773,30718221:0,393216,0 +(1,15232:6630773,33666572:25952256,3341567,196608 +g1,15232:6630773,33666572 +g1,15232:6630773,33666572 +g1,15232:6434165,33666572 +(1,15232:6434165,33666572:0,3341567,196608 +r1,15232:32779637,33666572:26345472,3538175,196608 +k1,15232:6434165,33666572:-26345472 +) +(1,15232:6434165,33666572:26345472,3341567,196608 +[1,15232:6630773,33666572:25952256,3144959,0 +(1,15226:6630773,30925839:25952256,404226,107478 +(1,15225:6630773,30925839:0,0,0 +g1,15225:6630773,30925839 +g1,15225:6630773,30925839 +g1,15225:6303093,30925839 +(1,15225:6303093,30925839:0,0,0 +) +g1,15225:6630773,30925839 +) +k1,15226:6630773,30925839:0 +g1,15226:10740667,30925839 +g1,15226:14218270,30925839 +g1,15226:16431290,30925839 +h1,15226:16747436,30925839:0,0,0 +k1,15226:32583029,30925839:15835593 +g1,15226:32583029,30925839 +) +(1,15227:6630773,31592017:25952256,404226,107478 +h1,15227:6630773,31592017:0,0,0 +g1,15227:6946919,31592017 +g1,15227:7263065,31592017 +g1,15227:11372959,31592017 +h1,15227:11689105,31592017:0,0,0 +k1,15227:32583029,31592017:20893924 +g1,15227:32583029,31592017 +) +(1,15228:6630773,32258195:25952256,404226,101187 +h1,15228:6630773,32258195:0,0,0 +g1,15228:6946919,32258195 +g1,15228:7263065,32258195 +g1,15228:10740668,32258195 +g1,15228:11372960,32258195 +g1,15228:17063583,32258195 +k1,15228:17063583,32258195:0 +h1,15228:23070352,32258195:0,0,0 +k1,15228:32583029,32258195:9512677 +g1,15228:32583029,32258195 +) +(1,15229:6630773,32924373:25952256,404226,101187 +h1,15229:6630773,32924373:0,0,0 +g1,15229:6946919,32924373 +g1,15229:7263065,32924373 +g1,15229:7579211,32924373 +g1,15229:7895357,32924373 +g1,15229:8211503,32924373 +g1,15229:8527649,32924373 +g1,15229:8843795,32924373 +g1,15229:11689106,32924373 +g1,15229:12321398,32924373 +g1,15229:16431292,32924373 +k1,15229:16431292,32924373:0 +h1,15229:24334934,32924373:0,0,0 +k1,15229:32583029,32924373:8248095 +g1,15229:32583029,32924373 +) +(1,15230:6630773,33590551:25952256,404226,76021 +h1,15230:6630773,33590551:0,0,0 +g1,15230:6946919,33590551 +g1,15230:7263065,33590551 +g1,15230:7579211,33590551 +g1,15230:7895357,33590551 +g1,15230:8211503,33590551 +g1,15230:8527649,33590551 +g1,15230:8843795,33590551 +h1,15230:9159941,33590551:0,0,0 +k1,15230:32583029,33590551:23423088 +g1,15230:32583029,33590551 +) +] +) +g1,15232:32583029,33666572 +g1,15232:6630773,33666572 +g1,15232:6630773,33666572 +g1,15232:32583029,33666572 +g1,15232:32583029,33666572 +) +h1,15232:6630773,33863180:0,0,0 +(1,15235:6630773,43515693:25952256,9062689,0 +k1,15235:10523651,43515693:3892878 +h1,15234:10523651,43515693:0,0,0 +(1,15234:10523651,43515693:18166500,9062689,0 +(1,15234:10523651,43515693:18167381,9062712,0 +(1,15234:10523651,43515693:18167381,9062712,0 +(1,15234:10523651,43515693:0,9062712,0 +(1,15234:10523651,43515693:0,14155776,0 +(1,15234:10523651,43515693:28377088,14155776,0 +) +k1,15234:10523651,43515693:-28377088 +) +) +g1,15234:28691032,43515693 +) +) +) +g1,15235:28690151,43515693 +k1,15235:32583029,43515693:3892878 +) +(1,15243:6630773,44357181:25952256,513147,126483 +h1,15242:6630773,44357181:983040,0,0 +k1,15242:8566755,44357181:325107 +k1,15242:9910947,44357181:325107 +k1,15242:11603135,44357181:325107 +k1,15242:12595398,44357181:325107 +(1,15242:12595398,44357181:0,452978,115847 +r1,15242:16822494,44357181:4227096,568825,115847 +k1,15242:12595398,44357181:-4227096 +) +(1,15242:12595398,44357181:4227096,452978,115847 +k1,15242:12595398,44357181:3277 +h1,15242:16819217,44357181:0,411205,112570 +) +k1,15242:17147601,44357181:325107 +k1,15242:18341060,44357181:325107 +k1,15242:20819025,44357181:325107 +k1,15242:22692748,44357181:325107 +k1,15242:23549352,44357181:325107 +k1,15242:24525887,44357181:325107 +k1,15242:25598760,44357181:325107 +k1,15242:27437093,44357181:325107 +k1,15242:28709851,44357181:325107 +k1,15242:32583029,44357181:0 +) +(1,15243:6630773,45198669:25952256,505283,134348 +g1,15242:9388528,45198669 +g1,15242:9943617,45198669 +g1,15242:12301602,45198669 +k1,15243:32583030,45198669:19114232 +g1,15243:32583030,45198669 +) +] +(1,15245:32583029,45706769:0,0,0 +g1,15245:32583029,45706769 +) +) +] +(1,15245:6630773,47279633:25952256,0,0 +h1,15245:6630773,47279633:25952256,0,0 +) +] +h1,15245:4262630,4025873:0,0,0 +] +!23275 +}296 +Input:2322:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2323:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2324:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2325:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 +{297 +[1,15303:4262630,47279633:28320399,43253760,0 +(1,15303:4262630,4025873:0,0,0 +[1,15303:-473657,4025873:25952256,0,0 +(1,15303:-473657,-710414:25952256,0,0 +h1,15303:-473657,-710414:0,0,0 +(1,15303:-473657,-710414:0,0,0 +(1,15303:-473657,-710414:0,0,0 +g1,15303:-473657,-710414 +(1,15303:-473657,-710414:65781,0,65781 +g1,15303:-407876,-710414 +[1,15303:-407876,-644633:0,0,0 ] ) +k1,15303:-473657,-710414:-65781 ) ) -] -[1,15272:3078558,4812305:0,0,0 -(1,15272:3078558,2439708:0,1703936,0 -g1,15272:29030814,2439708 -g1,15272:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15272:36151628,1915420:16384,1179648,0 -) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,15303:25478599,-710414:25952256 +g1,15303:25478599,-710414 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15272:37855564,2439708:1179648,16384,0 -) -) -k1,15272:3078556,2439708:-34777008 +[1,15303:6630773,47279633:25952256,43253760,0 +[1,15303:6630773,4812305:25952256,786432,0 +(1,15303:6630773,4812305:25952256,513147,134348 +(1,15303:6630773,4812305:25952256,513147,134348 +g1,15303:3078558,4812305 +[1,15303:3078558,4812305:0,0,0 +(1,15303:3078558,2439708:0,1703936,0 +k1,15303:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15303:2537886,2439708:1179648,16384,0 ) -] -[1,15272:3078558,4812305:0,0,0 -(1,15272:3078558,49800853:0,16384,2228224 -k1,15272:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15272:2537886,49800853:1179648,16384,0 -) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15272:3078558,51504789:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15303:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15272:3078558,4812305:0,0,0 -(1,15272:3078558,49800853:0,16384,2228224 -g1,15272:29030814,49800853 -g1,15272:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15272:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] +[1,15303:3078558,4812305:0,0,0 +(1,15303:3078558,2439708:0,1703936,0 +g1,15303:29030814,2439708 +g1,15303:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15303:36151628,1915420:16384,1179648,0 ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15272:37855564,49800853:1179648,16384,0 -) -) -k1,15272:3078556,49800853:-34777008 -) -] -g1,15272:6630773,4812305 -g1,15272:6630773,4812305 -g1,15272:9573994,4812305 -g1,15272:12339613,4812305 -g1,15272:13966872,4812305 -g1,15272:16682684,4812305 -k1,15272:31387652,4812305:14704968 -) -) -] -[1,15272:6630773,45706769:25952256,40108032,0 -(1,15272:6630773,45706769:25952256,40108032,0 -(1,15272:6630773,45706769:0,0,0 -g1,15272:6630773,45706769 -) -[1,15272:6630773,45706769:25952256,40108032,0 -v1,15214:6630773,6254097:0,393216,0 -(1,15222:6630773,9202448:25952256,3341567,196608 -g1,15222:6630773,9202448 -g1,15222:6630773,9202448 -g1,15222:6434165,9202448 -(1,15222:6434165,9202448:0,3341567,196608 -r1,15222:32779637,9202448:26345472,3538175,196608 -k1,15222:6434165,9202448:-26345472 -) -(1,15222:6434165,9202448:26345472,3341567,196608 -[1,15222:6630773,9202448:25952256,3144959,0 -(1,15216:6630773,6461715:25952256,404226,107478 -(1,15215:6630773,6461715:0,0,0 -g1,15215:6630773,6461715 -g1,15215:6630773,6461715 -g1,15215:6303093,6461715 -(1,15215:6303093,6461715:0,0,0 -) -g1,15215:6630773,6461715 -) -k1,15216:6630773,6461715:0 -g1,15216:10740667,6461715 -g1,15216:14218270,6461715 -g1,15216:16431290,6461715 -h1,15216:16747436,6461715:0,0,0 -k1,15216:32583029,6461715:15835593 -g1,15216:32583029,6461715 -) -(1,15217:6630773,7127893:25952256,404226,107478 -h1,15217:6630773,7127893:0,0,0 -g1,15217:6946919,7127893 -g1,15217:7263065,7127893 -g1,15217:11372959,7127893 -h1,15217:11689105,7127893:0,0,0 -k1,15217:32583029,7127893:20893924 -g1,15217:32583029,7127893 -) -(1,15218:6630773,7794071:25952256,404226,101187 -h1,15218:6630773,7794071:0,0,0 -g1,15218:6946919,7794071 -g1,15218:7263065,7794071 -g1,15218:10740668,7794071 -g1,15218:11372960,7794071 -g1,15218:18328166,7794071 -g1,15218:19592749,7794071 -g1,15218:22121915,7794071 -g1,15218:22754207,7794071 -k1,15218:22754207,7794071:0 -h1,15218:28128684,7794071:0,0,0 -k1,15218:32583029,7794071:4454345 -g1,15218:32583029,7794071 -) -(1,15219:6630773,8460249:25952256,404226,101187 -h1,15219:6630773,8460249:0,0,0 -g1,15219:6946919,8460249 -g1,15219:7263065,8460249 -g1,15219:7579211,8460249 -g1,15219:7895357,8460249 -g1,15219:8211503,8460249 -g1,15219:8527649,8460249 -g1,15219:8843795,8460249 -g1,15219:11689106,8460249 -g1,15219:12321398,8460249 -g1,15219:17695875,8460249 -g1,15219:19592750,8460249 -g1,15219:22754208,8460249 -g1,15219:23386500,8460249 -k1,15219:23386500,8460249:0 -h1,15219:30657850,8460249:0,0,0 -k1,15219:32583029,8460249:1925179 -g1,15219:32583029,8460249 -) -(1,15220:6630773,9126427:25952256,404226,76021 -h1,15220:6630773,9126427:0,0,0 -g1,15220:6946919,9126427 -g1,15220:7263065,9126427 -g1,15220:7579211,9126427 -g1,15220:7895357,9126427 -g1,15220:8211503,9126427 -g1,15220:8527649,9126427 -g1,15220:8843795,9126427 -h1,15220:9159941,9126427:0,0,0 -k1,15220:32583029,9126427:23423088 -g1,15220:32583029,9126427 -) -] -) -g1,15222:32583029,9202448 -g1,15222:6630773,9202448 -g1,15222:6630773,9202448 -g1,15222:32583029,9202448 -g1,15222:32583029,9202448 -) -h1,15222:6630773,9399056:0,0,0 -(1,15225:6630773,19051569:25952256,9062689,0 -k1,15225:10523651,19051569:3892878 -h1,15224:10523651,19051569:0,0,0 -(1,15224:10523651,19051569:18166500,9062689,0 -(1,15224:10523651,19051569:18167381,9062712,0 -(1,15224:10523651,19051569:18167381,9062712,0 -(1,15224:10523651,19051569:0,9062712,0 -(1,15224:10523651,19051569:0,14155776,0 -(1,15224:10523651,19051569:28377088,14155776,0 -) -k1,15224:10523651,19051569:-28377088 -) -) -g1,15224:28691032,19051569 -) -) -) -g1,15225:28690151,19051569 -k1,15225:32583029,19051569:3892878 -) -(1,15233:6630773,19893057:25952256,505283,126483 -h1,15232:6630773,19893057:983040,0,0 -k1,15232:8991201,19893057:335366 -k1,15232:12161653,19893057:335365 -k1,15232:16370197,19893057:335366 -k1,15232:17809845,19893057:335366 -k1,15232:18892976,19893057:335365 -k1,15232:20741568,19893057:335366 -k1,15232:21728362,19893057:335366 -k1,15232:25000395,19893057:335365 -k1,15232:26106464,19893057:335366 -k1,15232:29881814,19893057:335365 -k1,15232:32227169,19893057:335366 -k1,15232:32583029,19893057:0 -) -(1,15233:6630773,20734545:25952256,513147,134348 -k1,15232:9588967,20734545:262698 -k1,15232:11706335,20734545:262699 -k1,15232:12778403,20734545:262698 -k1,15232:14060187,20734545:262699 -k1,15232:17725514,20734545:262698 -k1,15232:20367170,20734545:262699 -k1,15232:21901266,20734545:262698 -k1,15232:23531046,20734545:262699 -k1,15232:24453036,20734545:262698 -k1,15232:27158917,20734545:262699 -k1,15232:27953112,20734545:262698 -k1,15232:28867239,20734545:262699 -k1,15232:31563944,20734545:262698 -k1,15232:32583029,20734545:0 -) -(1,15233:6630773,21576033:25952256,513147,134348 -g1,15232:8568017,21576033 -g1,15232:9426538,21576033 -g1,15232:10644852,21576033 -g1,15232:12803607,21576033 -g1,15232:15208123,21576033 -g1,15232:16093514,21576033 -g1,15232:17063446,21576033 -g1,15232:20508673,21576033 -g1,15232:22275523,21576033 -g1,15232:24484741,21576033 -g1,15232:25039830,21576033 -k1,15233:32583029,21576033:4674033 -g1,15233:32583029,21576033 -) -v1,15235:6630773,22766499:0,393216,0 -(1,15260:6630773,31891716:25952256,9518433,196608 -g1,15260:6630773,31891716 -g1,15260:6630773,31891716 -g1,15260:6434165,31891716 -(1,15260:6434165,31891716:0,9518433,196608 -r1,15260:32779637,31891716:26345472,9715041,196608 -k1,15260:6434165,31891716:-26345472 -) -(1,15260:6434165,31891716:26345472,9518433,196608 -[1,15260:6630773,31891716:25952256,9321825,0 -(1,15237:6630773,22980409:25952256,410518,101187 -(1,15236:6630773,22980409:0,0,0 -g1,15236:6630773,22980409 -g1,15236:6630773,22980409 -g1,15236:6303093,22980409 -(1,15236:6303093,22980409:0,0,0 -) -g1,15236:6630773,22980409 -) -g1,15237:10740667,22980409 -g1,15237:11689105,22980409 -g1,15237:15482854,22980409 -h1,15237:15799000,22980409:0,0,0 -k1,15237:32583028,22980409:16784028 -g1,15237:32583028,22980409 -) -(1,15238:6630773,23646587:25952256,404226,101187 -h1,15238:6630773,23646587:0,0,0 -g1,15238:6946919,23646587 -g1,15238:7263065,23646587 -k1,15238:7263065,23646587:0 -h1,15238:16431290,23646587:0,0,0 -k1,15238:32583029,23646587:16151739 -g1,15238:32583029,23646587 -) -(1,15239:6630773,24312765:25952256,404226,76021 -h1,15239:6630773,24312765:0,0,0 -h1,15239:6946919,24312765:0,0,0 -k1,15239:32583029,24312765:25636110 -g1,15239:32583029,24312765 -) -(1,15240:6630773,24978943:25952256,0,0 -h1,15240:6630773,24978943:0,0,0 -h1,15240:6630773,24978943:0,0,0 -k1,15240:32583029,24978943:25952256 -g1,15240:32583029,24978943 -) -(1,15241:6630773,25645121:25952256,404226,6290 -h1,15241:6630773,25645121:0,0,0 -g1,15241:7263065,25645121 -g1,15241:8211503,25645121 -g1,15241:10424523,25645121 -g1,15241:11372960,25645121 -h1,15241:14218271,25645121:0,0,0 -k1,15241:32583029,25645121:18364758 -g1,15241:32583029,25645121 -) -(1,15242:6630773,26311299:25952256,0,0 -h1,15242:6630773,26311299:0,0,0 -h1,15242:6630773,26311299:0,0,0 -k1,15242:32583029,26311299:25952256 -g1,15242:32583029,26311299 -) -(1,15243:6630773,26977477:25952256,404226,101187 -h1,15243:6630773,26977477:0,0,0 -k1,15243:6630773,26977477:0 -h1,15243:14218270,26977477:0,0,0 -k1,15243:32583030,26977477:18364760 -g1,15243:32583030,26977477 -) -(1,15247:6630773,27709191:25952256,404226,76021 -(1,15245:6630773,27709191:0,0,0 -g1,15245:6630773,27709191 -g1,15245:6630773,27709191 -g1,15245:6303093,27709191 -(1,15245:6303093,27709191:0,0,0 -) -g1,15245:6630773,27709191 -) -g1,15247:7579210,27709191 -g1,15247:8843793,27709191 -h1,15247:13269833,27709191:0,0,0 -k1,15247:32583029,27709191:19313196 -g1,15247:32583029,27709191 -) -(1,15249:6630773,29030729:25952256,404226,101187 -(1,15248:6630773,29030729:0,0,0 -g1,15248:6630773,29030729 -g1,15248:6630773,29030729 -g1,15248:6303093,29030729 -(1,15248:6303093,29030729:0,0,0 -) -g1,15248:6630773,29030729 -) -k1,15249:6630773,29030729:0 -g1,15249:11372959,29030729 -g1,15249:12005251,29030729 -h1,15249:12637543,29030729:0,0,0 -k1,15249:32583029,29030729:19945486 -g1,15249:32583029,29030729 -) -(1,15253:6630773,29762443:25952256,404226,76021 -(1,15251:6630773,29762443:0,0,0 -g1,15251:6630773,29762443 -g1,15251:6630773,29762443 -g1,15251:6303093,29762443 -(1,15251:6303093,29762443:0,0,0 -) -g1,15251:6630773,29762443 -) -g1,15253:7579210,29762443 -g1,15253:8843793,29762443 -g1,15253:9792230,29762443 -g1,15253:10424522,29762443 -h1,15253:11056813,29762443:0,0,0 -k1,15253:32583029,29762443:21526216 -g1,15253:32583029,29762443 -) -(1,15255:6630773,31083981:25952256,404226,101187 -(1,15254:6630773,31083981:0,0,0 -g1,15254:6630773,31083981 -g1,15254:6630773,31083981 -g1,15254:6303093,31083981 -(1,15254:6303093,31083981:0,0,0 -) -g1,15254:6630773,31083981 -) -k1,15255:6630773,31083981:0 -h1,15255:11372958,31083981:0,0,0 -k1,15255:32583030,31083981:21210072 -g1,15255:32583030,31083981 -) -(1,15259:6630773,31815695:25952256,404226,76021 -(1,15257:6630773,31815695:0,0,0 -g1,15257:6630773,31815695 -g1,15257:6630773,31815695 -g1,15257:6303093,31815695 -(1,15257:6303093,31815695:0,0,0 -) -g1,15257:6630773,31815695 -) -g1,15259:7579210,31815695 -g1,15259:8843793,31815695 -h1,15259:9792230,31815695:0,0,0 -k1,15259:32583030,31815695:22790800 -g1,15259:32583030,31815695 -) -] -) -g1,15260:32583029,31891716 -g1,15260:6630773,31891716 -g1,15260:6630773,31891716 -g1,15260:32583029,31891716 -g1,15260:32583029,31891716 -) -h1,15260:6630773,32088324:0,0,0 -v1,15264:6630773,33978388:0,393216,0 -(1,15265:6630773,37040880:25952256,3455708,616038 -g1,15265:6630773,37040880 -(1,15265:6630773,37040880:25952256,3455708,616038 -(1,15265:6630773,37656918:25952256,4071746,0 -[1,15265:6630773,37656918:25952256,4071746,0 -(1,15265:6630773,37630704:25952256,4019318,0 -r1,15265:6656987,37630704:26214,4019318,0 -[1,15265:6656987,37630704:25899828,4019318,0 -(1,15265:6656987,37040880:25899828,2839670,0 -[1,15265:7246811,37040880:24720180,2839670,0 -(1,15265:7246811,35223556:24720180,1022346,134348 -k1,15264:8653174,35223556:150850 -k1,15264:9291563,35223556:150801 -k1,15264:10725608,35223556:150850 -k1,15264:13630280,35223556:150849 -k1,15264:16375699,35223556:150850 -k1,15264:18412019,35223556:150849 -k1,15264:19094366,35223556:150850 -k1,15264:20311486,35223556:150849 -k1,15264:21427681,35223556:150850 -k1,15264:22194568,35223556:150849 -k1,15264:24399316,35223556:150850 -k1,15264:27310541,35223556:150849 -k1,15264:30138537,35223556:150850 -k1,15265:31966991,35223556:0 -) -(1,15265:7246811,36065044:24720180,513147,134348 -k1,15264:9238017,36065044:181757 -k1,15264:10611237,36065044:181775 -k1,15264:14303120,36065044:181774 -k1,15264:17011308,36065044:181775 -k1,15264:18140733,36065044:181774 -k1,15264:21324711,36065044:181775 -k1,15264:22973181,36065044:181774 -k1,15264:24102607,36065044:181775 -k1,15264:28074983,36065044:181774 -k1,15264:29448203,36065044:181775 -k1,15264:30577628,36065044:181774 -k1,15264:31966991,36065044:0 -) -(1,15265:7246811,36906532:24720180,513147,134348 -k1,15264:11663047,36906532:163605 -k1,15264:13207496,36906532:163605 -k1,15264:15951253,36906532:163605 -k1,15264:18875234,36906532:163605 -k1,15264:19809542,36906532:163605 -k1,15264:23360048,36906532:163605 -k1,15264:24175081,36906532:163605 -k1,15264:25357771,36906532:163605 -k1,15264:26613861,36906532:163605 -k1,15264:27444621,36906532:163604 -k1,15264:28023034,36906532:163570 -k1,15265:31966991,36906532:0 -k1,15265:31966991,36906532:0 -) -] -) -] -r1,15265:32583029,37630704:26214,4019318,0 -) -] -) -) -g1,15265:32583029,37040880 -) -h1,15265:6630773,37656918:0,0,0 -(1,15268:6630773,40988774:25952256,32768,229376 -(1,15268:6630773,40988774:0,32768,229376 -(1,15268:6630773,40988774:5505024,32768,229376 -r1,15268:12135797,40988774:5505024,262144,229376 -) -k1,15268:6630773,40988774:-5505024 -) -(1,15268:6630773,40988774:25952256,32768,0 -r1,15268:32583029,40988774:25952256,32768,0 -) -) -(1,15268:6630773,42593102:25952256,606339,161218 -(1,15268:6630773,42593102:2464678,582746,14155 -g1,15268:6630773,42593102 -g1,15268:9095451,42593102 -) -g1,15268:12689446,42593102 -g1,15268:16294451,42593102 -g1,15268:18233006,42593102 -k1,15268:32583029,42593102:11037571 -g1,15268:32583029,42593102 -) -(1,15272:6630773,43827806:25952256,513147,134348 -k1,15271:8006272,43827806:178812 -k1,15271:11087675,43827806:178813 -k1,15271:11925779,43827806:178812 -k1,15271:14823681,43827806:178813 -k1,15271:17014448,43827806:178812 -k1,15271:18349970,43827806:178812 -k1,15271:19180211,43827806:178813 -k1,15271:21001355,43827806:178812 -k1,15271:22371612,43827806:178812 -k1,15271:23741870,43827806:178813 -k1,15271:25528280,43827806:178812 -k1,15271:30232354,43827806:178813 -k1,15271:31039001,43827806:178812 -k1,15271:32583029,43827806:0 -) -(1,15272:6630773,44669294:25952256,505283,134348 -k1,15271:8124033,44669294:227104 -k1,15271:10049175,44669294:227104 -k1,15271:12848567,44669294:227104 -k1,15271:13431531,44669294:227104 -k1,15271:17150393,44669294:227104 -k1,15271:18660692,44669294:227104 -k1,15271:20338763,44669294:227104 -k1,15271:21023965,44669294:227105 -k1,15271:21782566,44669294:227104 -k1,15271:23344638,44669294:227104 -k1,15271:24223170,44669294:227104 -k1,15271:25938597,44669294:227104 -k1,15271:27559652,44669294:227104 -k1,15271:28142616,44669294:227104 -k1,15271:30494397,44669294:227104 -k1,15271:32583029,44669294:0 -) -(1,15272:6630773,45510782:25952256,513147,134348 -k1,15271:7780900,45510782:202476 -k1,15271:8339236,45510782:202476 -k1,15271:9992679,45510782:202476 -(1,15271:9992679,45510782:0,452978,115847 -r1,15271:12461216,45510782:2468537,568825,115847 -k1,15271:9992679,45510782:-2468537 -) -(1,15271:9992679,45510782:2468537,452978,115847 -k1,15271:9992679,45510782:3277 -h1,15271:12457939,45510782:0,411205,112570 -) -k1,15271:12663692,45510782:202476 -k1,15271:14069409,45510782:202476 -k1,15271:15722852,45510782:202476 -k1,15271:18737478,45510782:202476 -k1,15271:20224460,45510782:202476 -k1,15271:21446021,45510782:202476 -k1,15271:23807253,45510782:202476 -k1,15271:24541226,45510782:202476 -k1,15271:25429864,45510782:202476 -k1,15271:28471360,45510782:202476 -k1,15271:29865281,45510782:202476 -k1,15271:31086842,45510782:202476 -k1,15271:32583029,45510782:0 -) -] -(1,15272:32583029,45706769:0,0,0 -g1,15272:32583029,45706769 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) -) -] -(1,15272:6630773,47279633:25952256,0,0 -h1,15272:6630773,47279633:25952256,0,0 -) -] -h1,15272:4262630,4025873:0,0,0 -] -!16774 -}296 -Input:2329:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2330:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2331:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2332:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 -{297 -[1,15306:4262630,47279633:28320399,43253760,0 -(1,15306:4262630,4025873:0,0,0 -[1,15306:-473657,4025873:25952256,0,0 -(1,15306:-473657,-710414:25952256,0,0 -h1,15306:-473657,-710414:0,0,0 -(1,15306:-473657,-710414:0,0,0 -(1,15306:-473657,-710414:0,0,0 -g1,15306:-473657,-710414 -(1,15306:-473657,-710414:65781,0,65781 -g1,15306:-407876,-710414 -[1,15306:-407876,-644633:0,0,0 ] ) -k1,15306:-473657,-710414:-65781 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15303:37855564,2439708:1179648,16384,0 ) ) -k1,15306:25478599,-710414:25952256 -g1,15306:25478599,-710414 +k1,15303:3078556,2439708:-34777008 ) ] +[1,15303:3078558,4812305:0,0,0 +(1,15303:3078558,49800853:0,16384,2228224 +k1,15303:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15303:2537886,49800853:1179648,16384,0 ) -[1,15306:6630773,47279633:25952256,43253760,0 -[1,15306:6630773,4812305:25952256,786432,0 -(1,15306:6630773,4812305:25952256,513147,134348 -(1,15306:6630773,4812305:25952256,513147,134348 -g1,15306:3078558,4812305 -[1,15306:3078558,4812305:0,0,0 -(1,15306:3078558,2439708:0,1703936,0 -k1,15306:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15306:2537886,2439708:1179648,16384,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15303:3078558,51504789:16384,1179648,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15306:3078558,1915420:16384,1179648,0 -) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,15306:3078558,4812305:0,0,0 -(1,15306:3078558,2439708:0,1703936,0 -g1,15306:29030814,2439708 -g1,15306:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15306:36151628,1915420:16384,1179648,0 +[1,15303:3078558,4812305:0,0,0 +(1,15303:3078558,49800853:0,16384,2228224 +g1,15303:29030814,49800853 +g1,15303:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15303:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15306:37855564,2439708:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15303:37855564,49800853:1179648,16384,0 +) +) +k1,15303:3078556,49800853:-34777008 +) +] +g1,15303:6630773,4812305 +k1,15303:25712890,4812305:17886740 +g1,15303:29057847,4812305 +g1,15303:29873114,4812305 +) +) +] +[1,15303:6630773,45706769:25952256,40108032,0 +(1,15303:6630773,45706769:25952256,40108032,0 +(1,15303:6630773,45706769:0,0,0 +g1,15303:6630773,45706769 +) +[1,15303:6630773,45706769:25952256,40108032,0 +v1,15245:6630773,6254097:0,393216,0 +(1,15253:6630773,9202448:25952256,3341567,196608 +g1,15253:6630773,9202448 +g1,15253:6630773,9202448 +g1,15253:6434165,9202448 +(1,15253:6434165,9202448:0,3341567,196608 +r1,15253:32779637,9202448:26345472,3538175,196608 +k1,15253:6434165,9202448:-26345472 ) +(1,15253:6434165,9202448:26345472,3341567,196608 +[1,15253:6630773,9202448:25952256,3144959,0 +(1,15247:6630773,6461715:25952256,404226,107478 +(1,15246:6630773,6461715:0,0,0 +g1,15246:6630773,6461715 +g1,15246:6630773,6461715 +g1,15246:6303093,6461715 +(1,15246:6303093,6461715:0,0,0 +) +g1,15246:6630773,6461715 +) +k1,15247:6630773,6461715:0 +g1,15247:10740667,6461715 +g1,15247:14218270,6461715 +g1,15247:16431290,6461715 +h1,15247:16747436,6461715:0,0,0 +k1,15247:32583029,6461715:15835593 +g1,15247:32583029,6461715 +) +(1,15248:6630773,7127893:25952256,404226,107478 +h1,15248:6630773,7127893:0,0,0 +g1,15248:6946919,7127893 +g1,15248:7263065,7127893 +g1,15248:11372959,7127893 +h1,15248:11689105,7127893:0,0,0 +k1,15248:32583029,7127893:20893924 +g1,15248:32583029,7127893 +) +(1,15249:6630773,7794071:25952256,404226,101187 +h1,15249:6630773,7794071:0,0,0 +g1,15249:6946919,7794071 +g1,15249:7263065,7794071 +g1,15249:10740668,7794071 +g1,15249:11372960,7794071 +g1,15249:18328166,7794071 +g1,15249:19592749,7794071 +g1,15249:22121915,7794071 +g1,15249:22754207,7794071 +k1,15249:22754207,7794071:0 +h1,15249:28128684,7794071:0,0,0 +k1,15249:32583029,7794071:4454345 +g1,15249:32583029,7794071 +) +(1,15250:6630773,8460249:25952256,404226,101187 +h1,15250:6630773,8460249:0,0,0 +g1,15250:6946919,8460249 +g1,15250:7263065,8460249 +g1,15250:7579211,8460249 +g1,15250:7895357,8460249 +g1,15250:8211503,8460249 +g1,15250:8527649,8460249 +g1,15250:8843795,8460249 +g1,15250:11689106,8460249 +g1,15250:12321398,8460249 +g1,15250:17695875,8460249 +g1,15250:19592750,8460249 +g1,15250:22754208,8460249 +g1,15250:23386500,8460249 +k1,15250:23386500,8460249:0 +h1,15250:30657850,8460249:0,0,0 +k1,15250:32583029,8460249:1925179 +g1,15250:32583029,8460249 +) +(1,15251:6630773,9126427:25952256,404226,76021 +h1,15251:6630773,9126427:0,0,0 +g1,15251:6946919,9126427 +g1,15251:7263065,9126427 +g1,15251:7579211,9126427 +g1,15251:7895357,9126427 +g1,15251:8211503,9126427 +g1,15251:8527649,9126427 +g1,15251:8843795,9126427 +h1,15251:9159941,9126427:0,0,0 +k1,15251:32583029,9126427:23423088 +g1,15251:32583029,9126427 +) +] +) +g1,15253:32583029,9202448 +g1,15253:6630773,9202448 +g1,15253:6630773,9202448 +g1,15253:32583029,9202448 +g1,15253:32583029,9202448 +) +h1,15253:6630773,9399056:0,0,0 +(1,15256:6630773,19051569:25952256,9062689,0 +k1,15256:10523651,19051569:3892878 +h1,15255:10523651,19051569:0,0,0 +(1,15255:10523651,19051569:18166500,9062689,0 +(1,15255:10523651,19051569:18167381,9062712,0 +(1,15255:10523651,19051569:18167381,9062712,0 +(1,15255:10523651,19051569:0,9062712,0 +(1,15255:10523651,19051569:0,14155776,0 +(1,15255:10523651,19051569:28377088,14155776,0 +) +k1,15255:10523651,19051569:-28377088 +) +) +g1,15255:28691032,19051569 +) +) +) +g1,15256:28690151,19051569 +k1,15256:32583029,19051569:3892878 +) +(1,15264:6630773,19893057:25952256,513147,126483 +h1,15263:6630773,19893057:983040,0,0 +k1,15263:8826502,19893057:170667 +k1,15263:11832255,19893057:170666 +k1,15263:15876100,19893057:170667 +k1,15263:17151049,19893057:170667 +k1,15263:18069481,19893057:170666 +k1,15263:19753374,19893057:170667 +k1,15263:20575469,19893057:170667 +k1,15263:23682803,19893057:170666 +k1,15263:24624173,19893057:170667 +k1,15263:28234825,19893057:170667 +k1,15263:30415480,19893057:170666 +k1,15263:30942007,19893057:170667 +k1,15264:32583029,19893057:0 +) +(1,15264:6630773,20734545:25952256,513147,134348 +k1,15263:8120032,20734545:221793 +k1,15263:10196493,20734545:221792 +k1,15263:11227656,20734545:221793 +k1,15263:12468533,20734545:221792 +k1,15263:16092955,20734545:221793 +k1,15263:18693704,20734545:221792 +k1,15263:20186895,20734545:221793 +k1,15263:21775768,20734545:221792 +k1,15263:22656853,20734545:221793 +k1,15263:25321827,20734545:221792 +k1,15263:26075117,20734545:221793 +k1,15263:26948337,20734545:221792 +k1,15263:29604137,20734545:221793 +k1,15263:30845014,20734545:221792 +k1,15263:32583029,20734545:0 +) +(1,15264:6630773,21576033:25952256,513147,134348 +g1,15263:7489294,21576033 +g1,15263:8707608,21576033 +g1,15263:10866363,21576033 +g1,15263:13270879,21576033 +g1,15263:14156270,21576033 +g1,15263:15126202,21576033 +g1,15263:18571429,21576033 +g1,15263:20338279,21576033 +g1,15263:22547497,21576033 +g1,15263:23102586,21576033 +k1,15264:32583029,21576033:6611277 +g1,15264:32583029,21576033 +) +v1,15266:6630773,22766499:0,393216,0 +(1,15291:6630773,31891716:25952256,9518433,196608 +g1,15291:6630773,31891716 +g1,15291:6630773,31891716 +g1,15291:6434165,31891716 +(1,15291:6434165,31891716:0,9518433,196608 +r1,15291:32779637,31891716:26345472,9715041,196608 +k1,15291:6434165,31891716:-26345472 +) +(1,15291:6434165,31891716:26345472,9518433,196608 +[1,15291:6630773,31891716:25952256,9321825,0 +(1,15268:6630773,22980409:25952256,410518,101187 +(1,15267:6630773,22980409:0,0,0 +g1,15267:6630773,22980409 +g1,15267:6630773,22980409 +g1,15267:6303093,22980409 +(1,15267:6303093,22980409:0,0,0 +) +g1,15267:6630773,22980409 +) +g1,15268:10740667,22980409 +g1,15268:11689105,22980409 +g1,15268:15482854,22980409 +h1,15268:15799000,22980409:0,0,0 +k1,15268:32583028,22980409:16784028 +g1,15268:32583028,22980409 +) +(1,15269:6630773,23646587:25952256,404226,101187 +h1,15269:6630773,23646587:0,0,0 +g1,15269:6946919,23646587 +g1,15269:7263065,23646587 +k1,15269:7263065,23646587:0 +h1,15269:16431290,23646587:0,0,0 +k1,15269:32583029,23646587:16151739 +g1,15269:32583029,23646587 +) +(1,15270:6630773,24312765:25952256,404226,76021 +h1,15270:6630773,24312765:0,0,0 +h1,15270:6946919,24312765:0,0,0 +k1,15270:32583029,24312765:25636110 +g1,15270:32583029,24312765 +) +(1,15271:6630773,24978943:25952256,0,0 +h1,15271:6630773,24978943:0,0,0 +h1,15271:6630773,24978943:0,0,0 +k1,15271:32583029,24978943:25952256 +g1,15271:32583029,24978943 +) +(1,15272:6630773,25645121:25952256,404226,6290 +h1,15272:6630773,25645121:0,0,0 +g1,15272:7263065,25645121 +g1,15272:8211503,25645121 +g1,15272:10424523,25645121 +g1,15272:11372960,25645121 +h1,15272:14218271,25645121:0,0,0 +k1,15272:32583029,25645121:18364758 +g1,15272:32583029,25645121 +) +(1,15273:6630773,26311299:25952256,0,0 +h1,15273:6630773,26311299:0,0,0 +h1,15273:6630773,26311299:0,0,0 +k1,15273:32583029,26311299:25952256 +g1,15273:32583029,26311299 +) +(1,15274:6630773,26977477:25952256,404226,101187 +h1,15274:6630773,26977477:0,0,0 +k1,15274:6630773,26977477:0 +h1,15274:14218270,26977477:0,0,0 +k1,15274:32583030,26977477:18364760 +g1,15274:32583030,26977477 +) +(1,15278:6630773,27709191:25952256,404226,76021 +(1,15276:6630773,27709191:0,0,0 +g1,15276:6630773,27709191 +g1,15276:6630773,27709191 +g1,15276:6303093,27709191 +(1,15276:6303093,27709191:0,0,0 +) +g1,15276:6630773,27709191 +) +g1,15278:7579210,27709191 +g1,15278:8843793,27709191 +h1,15278:13269833,27709191:0,0,0 +k1,15278:32583029,27709191:19313196 +g1,15278:32583029,27709191 +) +(1,15280:6630773,29030729:25952256,404226,101187 +(1,15279:6630773,29030729:0,0,0 +g1,15279:6630773,29030729 +g1,15279:6630773,29030729 +g1,15279:6303093,29030729 +(1,15279:6303093,29030729:0,0,0 +) +g1,15279:6630773,29030729 +) +k1,15280:6630773,29030729:0 +g1,15280:11372959,29030729 +g1,15280:12005251,29030729 +h1,15280:12637543,29030729:0,0,0 +k1,15280:32583029,29030729:19945486 +g1,15280:32583029,29030729 +) +(1,15284:6630773,29762443:25952256,404226,76021 +(1,15282:6630773,29762443:0,0,0 +g1,15282:6630773,29762443 +g1,15282:6630773,29762443 +g1,15282:6303093,29762443 +(1,15282:6303093,29762443:0,0,0 +) +g1,15282:6630773,29762443 +) +g1,15284:7579210,29762443 +g1,15284:8843793,29762443 +g1,15284:9792230,29762443 +g1,15284:10424522,29762443 +h1,15284:11056813,29762443:0,0,0 +k1,15284:32583029,29762443:21526216 +g1,15284:32583029,29762443 +) +(1,15286:6630773,31083981:25952256,404226,101187 +(1,15285:6630773,31083981:0,0,0 +g1,15285:6630773,31083981 +g1,15285:6630773,31083981 +g1,15285:6303093,31083981 +(1,15285:6303093,31083981:0,0,0 +) +g1,15285:6630773,31083981 +) +k1,15286:6630773,31083981:0 +h1,15286:11372958,31083981:0,0,0 +k1,15286:32583030,31083981:21210072 +g1,15286:32583030,31083981 +) +(1,15290:6630773,31815695:25952256,404226,76021 +(1,15288:6630773,31815695:0,0,0 +g1,15288:6630773,31815695 +g1,15288:6630773,31815695 +g1,15288:6303093,31815695 +(1,15288:6303093,31815695:0,0,0 +) +g1,15288:6630773,31815695 +) +g1,15290:7579210,31815695 +g1,15290:8843793,31815695 +h1,15290:9792230,31815695:0,0,0 +k1,15290:32583030,31815695:22790800 +g1,15290:32583030,31815695 +) +] +) +g1,15291:32583029,31891716 +g1,15291:6630773,31891716 +g1,15291:6630773,31891716 +g1,15291:32583029,31891716 +g1,15291:32583029,31891716 +) +h1,15291:6630773,32088324:0,0,0 +v1,15295:6630773,33978388:0,393216,0 +(1,15296:6630773,37040880:25952256,3455708,616038 +g1,15296:6630773,37040880 +(1,15296:6630773,37040880:25952256,3455708,616038 +(1,15296:6630773,37656918:25952256,4071746,0 +[1,15296:6630773,37656918:25952256,4071746,0 +(1,15296:6630773,37630704:25952256,4019318,0 +r1,15296:6656987,37630704:26214,4019318,0 +[1,15296:6656987,37630704:25899828,4019318,0 +(1,15296:6656987,37040880:25899828,2839670,0 +[1,15296:7246811,37040880:24720180,2839670,0 +(1,15296:7246811,35223556:24720180,1022346,134348 +k1,15295:8653174,35223556:150850 +k1,15295:9291563,35223556:150801 +k1,15295:10725608,35223556:150850 +k1,15295:13630280,35223556:150849 +k1,15295:16375699,35223556:150850 +k1,15295:18412019,35223556:150849 +k1,15295:19094366,35223556:150850 +k1,15295:20311486,35223556:150849 +k1,15295:21427681,35223556:150850 +k1,15295:22194568,35223556:150849 +k1,15295:24399316,35223556:150850 +k1,15295:27310541,35223556:150849 +k1,15295:30138537,35223556:150850 +k1,15296:31966991,35223556:0 +) +(1,15296:7246811,36065044:24720180,513147,134348 +k1,15295:9238017,36065044:181757 +k1,15295:10611237,36065044:181775 +k1,15295:14303120,36065044:181774 +k1,15295:17011308,36065044:181775 +k1,15295:18140733,36065044:181774 +k1,15295:21324711,36065044:181775 +k1,15295:22973181,36065044:181774 +k1,15295:24102607,36065044:181775 +k1,15295:28074983,36065044:181774 +k1,15295:29448203,36065044:181775 +k1,15295:30577628,36065044:181774 +k1,15295:31966991,36065044:0 +) +(1,15296:7246811,36906532:24720180,513147,134348 +k1,15295:11663047,36906532:163605 +k1,15295:13207496,36906532:163605 +k1,15295:15951253,36906532:163605 +k1,15295:18875234,36906532:163605 +k1,15295:19809542,36906532:163605 +k1,15295:23360048,36906532:163605 +k1,15295:24175081,36906532:163605 +k1,15295:25357771,36906532:163605 +k1,15295:26613861,36906532:163605 +k1,15295:27444621,36906532:163604 +k1,15295:28023034,36906532:163570 +k1,15296:31966991,36906532:0 +k1,15296:31966991,36906532:0 +) +] +) +] +r1,15296:32583029,37630704:26214,4019318,0 +) +] +) +) +g1,15296:32583029,37040880 +) +h1,15296:6630773,37656918:0,0,0 +(1,15299:6630773,40988774:25952256,32768,229376 +(1,15299:6630773,40988774:0,32768,229376 +(1,15299:6630773,40988774:5505024,32768,229376 +r1,15299:12135797,40988774:5505024,262144,229376 +) +k1,15299:6630773,40988774:-5505024 +) +(1,15299:6630773,40988774:25952256,32768,0 +r1,15299:32583029,40988774:25952256,32768,0 +) +) +(1,15299:6630773,42593102:25952256,606339,161218 +(1,15299:6630773,42593102:2464678,582746,14155 +g1,15299:6630773,42593102 +g1,15299:9095451,42593102 +) +g1,15299:12689446,42593102 +g1,15299:16294451,42593102 +g1,15299:18233006,42593102 +k1,15299:32583029,42593102:11037571 +g1,15299:32583029,42593102 +) +(1,15303:6630773,43827806:25952256,513147,134348 +k1,15302:8006272,43827806:178812 +k1,15302:11087675,43827806:178813 +k1,15302:11925779,43827806:178812 +k1,15302:14823681,43827806:178813 +k1,15302:17014448,43827806:178812 +k1,15302:18349970,43827806:178812 +k1,15302:19180211,43827806:178813 +k1,15302:21001355,43827806:178812 +k1,15302:22371612,43827806:178812 +k1,15302:23741870,43827806:178813 +k1,15302:25528280,43827806:178812 +k1,15302:30232354,43827806:178813 +k1,15302:31039001,43827806:178812 +k1,15302:32583029,43827806:0 +) +(1,15303:6630773,44669294:25952256,505283,134348 +k1,15302:8124033,44669294:227104 +k1,15302:10049175,44669294:227104 +k1,15302:12848567,44669294:227104 +k1,15302:13431531,44669294:227104 +k1,15302:17150393,44669294:227104 +k1,15302:18660692,44669294:227104 +k1,15302:20338763,44669294:227104 +k1,15302:21023965,44669294:227105 +k1,15302:21782566,44669294:227104 +k1,15302:23344638,44669294:227104 +k1,15302:24223170,44669294:227104 +k1,15302:25938597,44669294:227104 +k1,15302:27559652,44669294:227104 +k1,15302:28142616,44669294:227104 +k1,15302:30494397,44669294:227104 +k1,15302:32583029,44669294:0 +) +(1,15303:6630773,45510782:25952256,513147,134348 +k1,15302:7780900,45510782:202476 +k1,15302:8339236,45510782:202476 +k1,15302:9992679,45510782:202476 +(1,15302:9992679,45510782:0,452978,115847 +r1,15302:12461216,45510782:2468537,568825,115847 +k1,15302:9992679,45510782:-2468537 +) +(1,15302:9992679,45510782:2468537,452978,115847 +k1,15302:9992679,45510782:3277 +h1,15302:12457939,45510782:0,411205,112570 +) +k1,15302:12663692,45510782:202476 +k1,15302:14069409,45510782:202476 +k1,15302:15722852,45510782:202476 +k1,15302:18737478,45510782:202476 +k1,15302:20224460,45510782:202476 +k1,15302:21446021,45510782:202476 +k1,15302:23807253,45510782:202476 +k1,15302:24541226,45510782:202476 +k1,15302:25429864,45510782:202476 +k1,15302:28471360,45510782:202476 +k1,15302:29865281,45510782:202476 +k1,15302:31086842,45510782:202476 +k1,15302:32583029,45510782:0 +) +] +(1,15303:32583029,45706769:0,0,0 +g1,15303:32583029,45706769 ) -k1,15306:3078556,2439708:-34777008 ) ] -[1,15306:3078558,4812305:0,0,0 -(1,15306:3078558,49800853:0,16384,2228224 -k1,15306:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15306:2537886,49800853:1179648,16384,0 -) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15306:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,15306:3078558,4812305:0,0,0 -(1,15306:3078558,49800853:0,16384,2228224 -g1,15306:29030814,49800853 -g1,15306:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15306:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15306:37855564,49800853:1179648,16384,0 -) -) -k1,15306:3078556,49800853:-34777008 -) -] -g1,15306:6630773,4812305 -k1,15306:25712890,4812305:17886740 -g1,15306:29057847,4812305 -g1,15306:29873114,4812305 -) -) -] -[1,15306:6630773,45706769:25952256,40108032,0 -(1,15306:6630773,45706769:25952256,40108032,0 -(1,15306:6630773,45706769:0,0,0 -g1,15306:6630773,45706769 -) -[1,15306:6630773,45706769:25952256,40108032,0 -(1,15272:6630773,6254097:25952256,513147,134348 -k1,15271:10072855,6254097:200671 -k1,15271:14008423,6254097:200671 -k1,15271:15365804,6254097:200671 -k1,15271:16670757,6254097:200671 -k1,15271:18268000,6254097:200671 -k1,15271:21695663,6254097:200670 -k1,15271:24960798,6254097:200671 -k1,15271:26352914,6254097:200671 -k1,15271:27750928,6254097:200671 -k1,15271:31391584,6254097:200671 -k1,15271:32583029,6254097:0 -) -(1,15272:6630773,7095585:25952256,513147,134348 -k1,15271:9597386,7095585:284224 -k1,15271:13036514,7095585:284225 -k1,15271:14517425,7095585:284224 -k1,15271:16208052,7095585:284224 -k1,15271:18177863,7095585:284225 -k1,15271:19453647,7095585:284224 -k1,15271:21171799,7095585:284224 -k1,15271:22107452,7095585:284225 -k1,15271:23589019,7095585:284224 -k1,15271:27610762,7095585:284224 -k1,15271:29086431,7095585:284224 -k1,15271:30389741,7095585:284225 -k1,15271:31900144,7095585:284224 -k1,15271:32583029,7095585:0 -) -(1,15272:6630773,7937073:25952256,513147,126483 -k1,15271:10626855,7937073:225796 -k1,15271:12365878,7937073:225797 -k1,15271:13539325,7937073:225796 -k1,15271:15536560,7937073:225797 -k1,15271:16953801,7937073:225796 -k1,15271:18431991,7937073:225797 -k1,15271:19849232,7937073:225796 -k1,15271:21176034,7937073:225797 -k1,15271:23419684,7937073:225796 -k1,15271:26249882,7937073:225797 -k1,15271:29460188,7937073:225796 -k1,15271:30217482,7937073:225797 -k1,15271:31094706,7937073:225796 -k1,15271:32583029,7937073:0 -) -(1,15272:6630773,8778561:25952256,513147,134348 -k1,15271:8318091,8778561:293367 -k1,15271:9382161,8778561:293367 -k1,15271:12166551,8778561:293367 -k1,15271:13737216,8778561:293368 -k1,15271:15222028,8778561:293367 -k1,15271:17777698,8778561:293367 -k1,15271:18702832,8778561:293367 -k1,15271:20238762,8778561:293367 -k1,15271:21293657,8778561:293367 -k1,15271:23322417,8778561:293367 -k1,15271:24634870,8778561:293368 -k1,15271:26581710,8778561:293367 -k1,15271:29399524,8778561:293367 -k1,15271:31189078,8778561:293367 -k1,15271:32583029,8778561:0 -) -(1,15272:6630773,9620049:25952256,513147,134348 -k1,15271:9646938,9620049:253822 -(1,15271:9646938,9620049:0,452978,115847 -r1,15271:11060339,9620049:1413401,568825,115847 -k1,15271:9646938,9620049:-1413401 -) -(1,15271:9646938,9620049:1413401,452978,115847 -k1,15271:9646938,9620049:3277 -h1,15271:11057062,9620049:0,411205,112570 -) -k1,15271:11314161,9620049:253822 -k1,15271:12250868,9620049:253822 -k1,15271:15312252,9620049:253822 -k1,15271:18328417,9620049:253822 -k1,15271:21597550,9620049:253822 -k1,15271:23634607,9620049:253822 -k1,15271:26259522,9620049:253822 -k1,15271:28009531,9620049:253822 -k1,15271:29211004,9620049:253822 -k1,15271:29820686,9620049:253822 -k1,15271:32583029,9620049:0 -) -(1,15272:6630773,10461537:25952256,505283,126483 -g1,15271:8219365,10461537 -g1,15271:9526808,10461537 -g1,15271:11298246,10461537 -(1,15271:11298246,10461537:0,452978,115847 -r1,15271:13415071,10461537:2116825,568825,115847 -k1,15271:11298246,10461537:-2116825 -) -(1,15271:11298246,10461537:2116825,452978,115847 -k1,15271:11298246,10461537:3277 -h1,15271:13411794,10461537:0,411205,112570 -) -g1,15271:13614300,10461537 -g1,15271:15004974,10461537 -(1,15271:15004974,10461537:0,414482,115847 -r1,15271:16770087,10461537:1765113,530329,115847 -k1,15271:15004974,10461537:-1765113 -) -(1,15271:15004974,10461537:1765113,414482,115847 -k1,15271:15004974,10461537:3277 -h1,15271:16766810,10461537:0,411205,112570 -) -g1,15271:16969316,10461537 -g1,15271:18160105,10461537 -g1,15271:20071790,10461537 -g1,15271:20922447,10461537 -g1,15271:22651942,10461537 -g1,15271:23502599,10461537 -g1,15271:24449594,10461537 -k1,15272:32583029,10461537:5965504 -g1,15272:32583029,10461537 -) -v1,15274:6630773,11827313:0,393216,0 -(1,15275:6630773,17479297:25952256,6045200,616038 -g1,15275:6630773,17479297 -(1,15275:6630773,17479297:25952256,6045200,616038 -(1,15275:6630773,18095335:25952256,6661238,0 -[1,15275:6630773,18095335:25952256,6661238,0 -(1,15275:6630773,18069121:25952256,6608810,0 -r1,15275:6656987,18069121:26214,6608810,0 -[1,15275:6656987,18069121:25899828,6608810,0 -(1,15275:6656987,17479297:25899828,5429162,0 -[1,15275:7246811,17479297:24720180,5429162,0 -(1,15275:7246811,13137509:24720180,1087374,134348 -k1,15274:8609968,13137509:153454 -k1,15274:10404445,13137509:153455 -k1,15274:10913759,13137509:153454 -k1,15274:14583220,13137509:153454 -k1,15274:17422995,13137509:153454 -k1,15274:18965813,13137509:153455 -k1,15274:20396564,13137509:153454 -k1,15274:21209310,13137509:153454 -k1,15274:22821596,13137509:153455 -k1,15274:25591903,13137509:153454 -k1,15274:27100642,13137509:153454 -k1,15274:28015624,13137509:153454 -k1,15274:29698034,13137509:153455 -k1,15274:30611706,13137509:153454 -k1,15274:31966991,13137509:0 -) -(1,15275:7246811,13978997:24720180,513147,134348 -k1,15274:8207036,13978997:198697 -k1,15274:9934688,13978997:198697 -k1,15274:10346376,13978997:198696 -k1,15274:11360341,13978997:198697 -k1,15274:12625309,13978997:198697 -k1,15274:14360170,13978997:198697 -k1,15274:15210295,13978997:198697 -k1,15274:17144385,13978997:198697 -k1,15274:18362167,13978997:198697 -k1,15274:21463454,13978997:198697 -k1,15274:22278189,13978997:198697 -k1,15274:23495971,13978997:198697 -k1,15274:27729064,13978997:198697 -k1,15274:28587053,13978997:198697 -k1,15274:29804835,13978997:198697 -k1,15274:31280829,13978997:198697 -k1,15274:31966991,13978997:0 -) -(1,15275:7246811,14820485:24720180,513147,134348 -k1,15274:9599613,14820485:145549 -k1,15274:10817332,14820485:145550 -k1,15274:11622173,14820485:145549 -k1,15274:13763294,14820485:145550 -k1,15274:17147632,14820485:145549 -k1,15274:17952474,14820485:145550 -k1,15274:19301264,14820485:145549 -k1,15274:22965442,14820485:145550 -k1,15274:23762419,14820485:145549 -k1,15274:25099414,14820485:145550 -k1,15274:29302952,14820485:145549 -k1,15274:31966991,14820485:0 -) -(1,15275:7246811,15661973:24720180,513147,134348 -k1,15274:8084714,15661973:221865 -k1,15274:9077281,15661973:221864 -k1,15274:11911411,15661973:221865 -k1,15274:14221907,15661973:221864 -k1,15274:17062591,15661973:221865 -k1,15274:18590589,15661973:221865 -k1,15274:19573981,15661973:221864 -k1,15274:22428427,15661973:221865 -k1,15274:23485876,15661973:221865 -k1,15274:24726825,15661973:221864 -k1,15274:27635011,15661973:221865 -k1,15274:29134172,15661973:221864 -k1,15274:29972075,15661973:221865 -k1,15274:31966991,15661973:0 -) -(1,15275:7246811,16503461:24720180,513147,134348 -k1,15274:8127464,16503461:194491 -k1,15274:8677814,16503461:194490 -k1,15274:10123387,16503461:194491 -k1,15274:10933916,16503461:194491 -k1,15274:14624096,16503461:194490 -k1,15274:16010032,16503461:194491 -k1,15274:17658112,16503461:194491 -k1,15274:19587996,16503461:194491 -k1,15274:22499609,16503461:194490 -k1,15274:23310138,16503461:194491 -k1,15274:24523714,16503461:194491 -k1,15274:27840995,16503461:194490 -k1,15274:28694778,16503461:194491 -k1,15274:31966991,16503461:0 -) -(1,15275:7246811,17344949:24720180,513147,134348 -k1,15274:8462027,17344949:196131 -k1,15274:11046946,17344949:196132 -k1,15274:13331709,17344949:196131 -k1,15274:14187132,17344949:196131 -k1,15274:15402348,17344949:196131 -k1,15274:16875777,17344949:196132 -k1,15274:18263353,17344949:196131 -k1,15274:21731697,17344949:196131 -k1,15274:22716226,17344949:196131 -k1,15274:26306468,17344949:196132 -k1,15274:27694044,17344949:196131 -k1,15275:31966991,17344949:0 -k1,15275:31966991,17344949:0 -) -] -) -] -r1,15275:32583029,18069121:26214,6608810,0 -) -] -) -) -g1,15275:32583029,17479297 -) -h1,15275:6630773,18095335:0,0,0 -(1,15277:6630773,20902903:25952256,32768,229376 -(1,15277:6630773,20902903:0,32768,229376 -(1,15277:6630773,20902903:5505024,32768,229376 -r1,15277:12135797,20902903:5505024,262144,229376 -) -k1,15277:6630773,20902903:-5505024 -) -(1,15277:6630773,20902903:25952256,32768,0 -r1,15277:32583029,20902903:25952256,32768,0 -) -) -(1,15277:6630773,22507231:25952256,615776,161218 -(1,15277:6630773,22507231:2464678,575668,0 -g1,15277:6630773,22507231 -g1,15277:9095451,22507231 -) -g1,15277:12689446,22507231 -g1,15277:14506891,22507231 -g1,15277:15564642,22507231 -k1,15277:32583029,22507231:15046802 -g1,15277:32583029,22507231 -) -(1,15280:6630773,23741935:25952256,513147,134348 -k1,15279:8434498,23741935:241347 -k1,15279:9327273,23741935:241347 -k1,15279:10316387,23741935:241348 -k1,15279:13731643,23741935:241347 -k1,15279:14585752,23741935:241347 -k1,15279:15182959,23741935:241347 -k1,15279:17119067,23741935:241347 -k1,15279:20118825,23741935:241348 -k1,15279:21043057,23741935:241347 -k1,15279:24439963,23741935:241347 -k1,15279:25367472,23741935:241347 -k1,15279:26930680,23741935:241347 -k1,15279:27831320,23741935:241348 -k1,15279:29091752,23741935:241347 -k1,15279:30986572,23741935:241347 -k1,15279:32583029,23741935:0 -) -(1,15280:6630773,24583423:25952256,505283,126483 -k1,15279:8316717,24583423:155678 -k1,15279:9123822,24583423:155677 -k1,15279:10027266,24583423:155678 -k1,15279:13463676,24583423:155678 -k1,15279:14235391,24583423:155677 -k1,15279:16733326,24583423:155678 -k1,15279:19717537,24583423:155677 -k1,15279:22363583,24583423:155678 -k1,15279:24421771,24583423:155678 -k1,15279:25768893,24583423:155677 -k1,15279:28618756,24583423:155678 -k1,15279:32583029,24583423:0 -) -(1,15280:6630773,25424911:25952256,505283,134348 -k1,15279:8379328,25424911:150787 -k1,15279:9721560,25424911:150787 -k1,15279:12753966,25424911:150788 -k1,15279:13733783,25424911:150787 -k1,15279:17040129,25424911:150787 -k1,15279:18394157,25424911:150787 -k1,15279:22263458,25424911:150788 -k1,15279:23282597,25424911:150787 -k1,15279:24963650,25424911:150787 -k1,15279:25765865,25424911:150787 -k1,15279:27558985,25424911:150788 -k1,15279:29317370,25424911:150787 -k1,15279:32583029,25424911:0 -) -(1,15280:6630773,26266399:25952256,505283,134348 -k1,15279:8079472,26266399:257254 -k1,15279:10066221,26266399:257254 -k1,15279:13452819,26266399:257254 -k1,15279:14471601,26266399:257254 -k1,15279:17725816,26266399:257254 -k1,15279:20051386,26266399:257254 -k1,15279:20960067,26266399:257253 -k1,15279:22236406,26266399:257254 -k1,15279:25826821,26266399:257254 -k1,15279:27368581,26266399:257254 -k1,15279:29156101,26266399:257254 -k1,15279:30064783,26266399:257254 -k1,15279:31069803,26266399:257254 -k1,15279:32583029,26266399:0 -) -(1,15280:6630773,27107887:25952256,505283,126483 -g1,15279:9501249,27107887 -k1,15280:32583029,27107887:21152400 -g1,15280:32583029,27107887 -) -(1,15281:6630773,29199147:25952256,555811,147783 -(1,15281:6630773,29199147:2899444,527696,0 -g1,15281:6630773,29199147 -g1,15281:9530217,29199147 -) -g1,15281:12167976,29199147 -g1,15281:13822433,29199147 -g1,15281:16269875,29199147 -g1,15281:17837103,29199147 -g1,15281:20247780,29199147 -g1,15281:21178457,29199147 -k1,15281:32583029,29199147:8083404 -g1,15281:32583029,29199147 -) -(1,15284:6630773,30433851:25952256,505283,134348 -k1,15283:8635592,30433851:221584 -k1,15283:11429465,30433851:221585 -k1,15283:13258647,30433851:221584 -k1,15283:14874182,30433851:221584 -k1,15283:18097969,30433851:221584 -k1,15283:20609382,30433851:221585 -k1,15283:21822526,30433851:221584 -k1,15283:25305837,30433851:221584 -k1,15283:27262814,30433851:221584 -k1,15283:30231013,30433851:221585 -(1,15283:30231013,30433851:0,414482,115847 -r1,15283:30589279,30433851:358266,530329,115847 -k1,15283:30231013,30433851:-358266 -) -(1,15283:30231013,30433851:358266,414482,115847 -k1,15283:30231013,30433851:3277 -h1,15283:30586002,30433851:0,411205,112570 -) -k1,15283:30810863,30433851:221584 -k1,15283:31683875,30433851:221584 -k1,15284:32583029,30433851:0 -) -(1,15284:6630773,31275339:25952256,513147,134348 -k1,15283:9074544,31275339:193265 -k1,15283:11948233,31275339:193266 -k1,15283:13160583,31275339:193265 -k1,15283:16546763,31275339:193266 -k1,15283:20841271,31275339:193265 -k1,15283:22231224,31275339:193266 -k1,15283:25450286,31275339:193265 -k1,15283:26928058,31275339:193266 -k1,15283:29050703,31275339:193265 -k1,15283:30521266,31275339:193266 -k1,15283:32583029,31275339:0 -) -(1,15284:6630773,32116827:25952256,513147,134348 -k1,15283:8938145,32116827:231191 -k1,15283:10280826,32116827:231190 -k1,15283:11503577,32116827:231191 -k1,15283:15771785,32116827:231190 -k1,15283:16662268,32116827:231191 -k1,15283:19183286,32116827:231190 -k1,15283:20605922,32116827:231191 -k1,15283:21856197,32116827:231190 -k1,15283:24377216,32116827:231191 -k1,15283:25988594,32116827:231190 -k1,15283:28230430,32116827:231191 -k1,15283:29565902,32116827:231190 -k1,15283:30544859,32116827:231191 -k1,15283:32583029,32116827:0 -) -(1,15284:6630773,32958315:25952256,505283,126483 -g1,15283:7446040,32958315 -g1,15283:10660580,32958315 -g1,15283:12051254,32958315 -g1,15283:13740772,32958315 -g1,15283:15925087,32958315 -g1,15283:18089741,32958315 -g1,15283:18940398,32958315 -g1,15283:21810874,32958315 -g1,15283:23617701,32958315 -g1,15283:24429692,32958315 -g1,15283:24984781,32958315 -g1,15283:26637599,32958315 -k1,15284:32583029,32958315:4346352 -g1,15284:32583029,32958315 -) -(1,15286:6630773,33799803:25952256,505283,126483 -h1,15285:6630773,33799803:983040,0,0 -k1,15285:8726308,33799803:158946 -k1,15285:10814633,33799803:158945 -k1,15285:11329439,33799803:158946 -k1,15285:12765681,33799803:158945 -k1,15285:14116072,33799803:158946 -k1,15285:15665692,33799803:158946 -k1,15285:16282734,33799803:158945 -k1,15285:17093108,33799803:158946 -k1,15285:19763393,33799803:158945 -(1,15285:19763393,33799803:0,452978,115847 -r1,15285:21880218,33799803:2116825,568825,115847 -k1,15285:19763393,33799803:-2116825 -) -(1,15285:19763393,33799803:2116825,452978,115847 -k1,15285:19763393,33799803:3277 -h1,15285:21876941,33799803:0,411205,112570 -) -k1,15285:22039164,33799803:158946 -k1,15285:23389555,33799803:158946 -k1,15285:24416852,33799803:158945 -k1,15285:27844734,33799803:158946 -k1,15285:29394353,33799803:158945 -k1,15285:30572384,33799803:158946 -k1,15285:32583029,33799803:0 -) -(1,15286:6630773,34641291:25952256,513147,126483 -g1,15285:9608729,34641291 -g1,15285:10569486,34641291 -g1,15285:11124575,34641291 -g1,15285:12423498,34641291 -g1,15285:13274155,34641291 -g1,15285:16168880,34641291 -(1,15285:16168880,34641291:0,452978,115847 -r1,15285:18285705,34641291:2116825,568825,115847 -k1,15285:16168880,34641291:-2116825 -) -(1,15285:16168880,34641291:2116825,452978,115847 -k1,15285:16168880,34641291:3277 -h1,15285:18282428,34641291:0,411205,112570 -) -k1,15286:32583029,34641291:14123654 -g1,15286:32583029,34641291 -) -v1,15288:6630773,35831757:0,393216,0 -(1,15300:6630773,41469986:25952256,6031445,196608 -g1,15300:6630773,41469986 -g1,15300:6630773,41469986 -g1,15300:6434165,41469986 -(1,15300:6434165,41469986:0,6031445,196608 -r1,15300:32779637,41469986:26345472,6228053,196608 -k1,15300:6434165,41469986:-26345472 -) -(1,15300:6434165,41469986:26345472,6031445,196608 -[1,15300:6630773,41469986:25952256,5834837,0 -(1,15290:6630773,36039375:25952256,404226,107478 -(1,15289:6630773,36039375:0,0,0 -g1,15289:6630773,36039375 -g1,15289:6630773,36039375 -g1,15289:6303093,36039375 -(1,15289:6303093,36039375:0,0,0 -) -g1,15289:6630773,36039375 -) -g1,15290:8843793,36039375 -g1,15290:9792231,36039375 -g1,15290:13585980,36039375 -g1,15290:14218272,36039375 -k1,15290:14218272,36039375:0 -h1,15290:16431292,36039375:0,0,0 -k1,15290:32583029,36039375:16151737 -g1,15290:32583029,36039375 -) -(1,15291:6630773,36705553:25952256,404226,107478 -h1,15291:6630773,36705553:0,0,0 -g1,15291:6946919,36705553 -g1,15291:7263065,36705553 -g1,15291:7579211,36705553 -g1,15291:7895357,36705553 -g1,15291:8211503,36705553 -g1,15291:8527649,36705553 -g1,15291:8843795,36705553 -g1,15291:9159941,36705553 -g1,15291:9476087,36705553 -g1,15291:9792233,36705553 -g1,15291:10108379,36705553 -g1,15291:10424525,36705553 -g1,15291:10740671,36705553 -g1,15291:11056817,36705553 -g1,15291:11372963,36705553 -g1,15291:11689109,36705553 -g1,15291:12005255,36705553 -g1,15291:13902130,36705553 -g1,15291:14534422,36705553 -g1,15291:16431297,36705553 -g1,15291:17063589,36705553 -g1,15291:17695881,36705553 -k1,15291:17695881,36705553:0 -h1,15291:18960464,36705553:0,0,0 -k1,15291:32583029,36705553:13622565 -g1,15291:32583029,36705553 -) -(1,15292:6630773,37371731:25952256,410518,101187 -h1,15292:6630773,37371731:0,0,0 -g1,15292:6946919,37371731 -g1,15292:7263065,37371731 -g1,15292:7579211,37371731 -g1,15292:7895357,37371731 -g1,15292:8211503,37371731 -g1,15292:8527649,37371731 -g1,15292:8843795,37371731 -g1,15292:9159941,37371731 -g1,15292:9476087,37371731 -g1,15292:9792233,37371731 -g1,15292:10108379,37371731 -g1,15292:10424525,37371731 -g1,15292:10740671,37371731 -g1,15292:11056817,37371731 -g1,15292:11372963,37371731 -g1,15292:11689109,37371731 -g1,15292:12005255,37371731 -g1,15292:13902129,37371731 -g1,15292:14534421,37371731 -g1,15292:18960461,37371731 -h1,15292:19276607,37371731:0,0,0 -k1,15292:32583029,37371731:13306422 -g1,15292:32583029,37371731 -) -(1,15293:6630773,38037909:25952256,404226,107478 -h1,15293:6630773,38037909:0,0,0 -g1,15293:6946919,38037909 -g1,15293:7263065,38037909 -g1,15293:7579211,38037909 -g1,15293:7895357,38037909 -g1,15293:8211503,38037909 -g1,15293:8527649,38037909 -g1,15293:8843795,38037909 -g1,15293:9159941,38037909 -g1,15293:9476087,38037909 -g1,15293:9792233,38037909 -k1,15293:9792233,38037909:0 -h1,15293:13585981,38037909:0,0,0 -k1,15293:32583029,38037909:18997048 -g1,15293:32583029,38037909 -) -(1,15294:6630773,38704087:25952256,0,0 -h1,15294:6630773,38704087:0,0,0 -h1,15294:6630773,38704087:0,0,0 -k1,15294:32583029,38704087:25952256 -g1,15294:32583029,38704087 -) -(1,15295:6630773,39370265:25952256,404226,107478 -h1,15295:6630773,39370265:0,0,0 -g1,15295:8843793,39370265 -g1,15295:9792231,39370265 -g1,15295:12005252,39370265 -g1,15295:12637544,39370265 -g1,15295:15166710,39370265 -k1,15295:15166710,39370265:0 -h1,15295:19908896,39370265:0,0,0 -k1,15295:32583029,39370265:12674133 -g1,15295:32583029,39370265 -) -(1,15296:6630773,40036443:25952256,404226,101187 -h1,15296:6630773,40036443:0,0,0 -g1,15296:6946919,40036443 -g1,15296:7263065,40036443 -g1,15296:7579211,40036443 -g1,15296:7895357,40036443 -g1,15296:8211503,40036443 -g1,15296:8527649,40036443 -g1,15296:8843795,40036443 -g1,15296:9159941,40036443 -g1,15296:9476087,40036443 -g1,15296:9792233,40036443 -g1,15296:10108379,40036443 -g1,15296:10424525,40036443 -g1,15296:10740671,40036443 -g1,15296:11056817,40036443 -g1,15296:11372963,40036443 -g1,15296:12005255,40036443 -g1,15296:12637547,40036443 -g1,15296:14850567,40036443 -k1,15296:14850567,40036443:0 -h1,15296:18644315,40036443:0,0,0 -k1,15296:32583029,40036443:13938714 -g1,15296:32583029,40036443 -) -(1,15297:6630773,40702621:25952256,410518,101187 -h1,15297:6630773,40702621:0,0,0 -g1,15297:6946919,40702621 -g1,15297:7263065,40702621 -g1,15297:7579211,40702621 -g1,15297:7895357,40702621 -g1,15297:8211503,40702621 -g1,15297:8527649,40702621 -g1,15297:8843795,40702621 -g1,15297:9159941,40702621 -g1,15297:9476087,40702621 -g1,15297:9792233,40702621 -g1,15297:10108379,40702621 -g1,15297:10424525,40702621 -g1,15297:10740671,40702621 -g1,15297:11056817,40702621 -g1,15297:11372963,40702621 -g1,15297:13269837,40702621 -g1,15297:13902129,40702621 -g1,15297:16431295,40702621 -k1,15297:16431295,40702621:0 -h1,15297:21173481,40702621:0,0,0 -k1,15297:32583029,40702621:11409548 -g1,15297:32583029,40702621 -) -(1,15298:6630773,41368799:25952256,410518,101187 -h1,15298:6630773,41368799:0,0,0 -g1,15298:6946919,41368799 -g1,15298:7263065,41368799 -g1,15298:7579211,41368799 -g1,15298:7895357,41368799 -g1,15298:8211503,41368799 -g1,15298:8527649,41368799 -g1,15298:8843795,41368799 -g1,15298:9159941,41368799 -g1,15298:9476087,41368799 -g1,15298:9792233,41368799 -g1,15298:10108379,41368799 -g1,15298:10424525,41368799 -g1,15298:10740671,41368799 -g1,15298:11056817,41368799 -g1,15298:11372963,41368799 -g1,15298:13269837,41368799 -g1,15298:13902129,41368799 -g1,15298:16431295,41368799 -h1,15298:21173481,41368799:0,0,0 -k1,15298:32583029,41368799:11409548 -g1,15298:32583029,41368799 -) -] -) -g1,15300:32583029,41469986 -g1,15300:6630773,41469986 -g1,15300:6630773,41469986 -g1,15300:32583029,41469986 -g1,15300:32583029,41469986 -) -h1,15300:6630773,41666594:0,0,0 -(1,15304:6630773,43032370:25952256,513147,126483 -h1,15303:6630773,43032370:983040,0,0 -k1,15303:8788078,43032370:220716 -k1,15303:11945462,43032370:220716 -k1,15303:13185262,43032370:220715 -k1,15303:14812381,43032370:220716 -k1,15303:16310394,43032370:220716 -k1,15303:18098731,43032370:220716 -k1,15303:19338532,43032370:220716 -k1,15303:20731686,43032370:220715 -k1,15303:22604565,43032370:220716 -k1,15303:23693633,43032370:220716 -k1,15303:25725764,43032370:220716 -k1,15303:27213945,43032370:220715 -k1,15303:30449972,43032370:220716 -k1,15303:32051532,43032370:220716 -k1,15303:32583029,43032370:0 -) -(1,15304:6630773,43873858:25952256,513147,134348 -k1,15303:8762473,43873858:154479 -k1,15303:10614991,43873858:154480 -k1,15303:11637822,43873858:154479 -k1,15303:13322568,43873858:154480 -k1,15303:14128475,43873858:154479 -k1,15303:16212334,43873858:154479 -k1,15303:18598315,43873858:154480 -k1,15303:20360392,43873858:154479 -k1,15303:23300806,43873858:154479 -k1,15303:24739792,43873858:154480 -k1,15303:26466480,43873858:154479 -(1,15303:26466480,43873858:0,414482,115847 -r1,15303:27879881,43873858:1413401,530329,115847 -k1,15303:26466480,43873858:-1413401 -) -(1,15303:26466480,43873858:1413401,414482,115847 -k1,15303:26466480,43873858:3277 -h1,15303:27876604,43873858:0,411205,112570 -) -k1,15303:28034361,43873858:154480 -k1,15303:31591469,43873858:154479 -k1,15303:32583029,43873858:0 -) -(1,15304:6630773,44715346:25952256,505283,126483 -k1,15303:8342901,44715346:198902 -k1,15303:12562436,44715346:198901 -k1,15303:13389173,44715346:198902 -k1,15303:14607159,44715346:198901 -k1,15303:17467478,44715346:198902 -k1,15303:19695374,44715346:198901 -k1,15303:20762628,44715346:198902 -k1,15303:22772945,44715346:198902 -k1,15303:24668573,44715346:198901 -k1,15303:27109462,44715346:198902 -k1,15303:28380532,44715346:198901 -k1,15303:29598519,44715346:198902 -k1,15303:32583029,44715346:0 -) -(1,15304:6630773,45556834:25952256,513147,126483 -g1,15303:7934284,45556834 -g1,15303:8881279,45556834 -g1,15303:10593734,45556834 -g1,15303:11740614,45556834 -g1,15303:13641813,45556834 -g1,15303:15118339,45556834 -g1,15303:19245141,45556834 -g1,15303:20127255,45556834 -g1,15303:21650311,45556834 -g1,15303:22508832,45556834 -k1,15304:32583029,45556834:5972954 -g1,15304:32583029,45556834 -) -] -(1,15306:32583029,45706769:0,0,0 -g1,15306:32583029,45706769 -) -) -] -(1,15306:6630773,47279633:25952256,0,0 -h1,15306:6630773,47279633:25952256,0,0 -) -] -h1,15306:4262630,4025873:0,0,0 -] -!25307 +(1,15303:6630773,47279633:25952256,0,0 +h1,15303:6630773,47279633:25952256,0,0 +) +] +h1,15303:4262630,4025873:0,0,0 +] +!16739 }297 -Input:2333:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2334:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2335:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2336:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2337:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2338:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2339:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2340:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2341:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2342:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 +Input:2326:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2327:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2328:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2329:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {298 -[1,15365:4262630,47279633:28320399,43253760,0 -(1,15365:4262630,4025873:0,0,0 -[1,15365:-473657,4025873:25952256,0,0 -(1,15365:-473657,-710414:25952256,0,0 -h1,15365:-473657,-710414:0,0,0 -(1,15365:-473657,-710414:0,0,0 -(1,15365:-473657,-710414:0,0,0 -g1,15365:-473657,-710414 -(1,15365:-473657,-710414:65781,0,65781 -g1,15365:-407876,-710414 -[1,15365:-407876,-644633:0,0,0 +[1,15337:4262630,47279633:28320399,43253760,0 +(1,15337:4262630,4025873:0,0,0 +[1,15337:-473657,4025873:25952256,0,0 +(1,15337:-473657,-710414:25952256,0,0 +h1,15337:-473657,-710414:0,0,0 +(1,15337:-473657,-710414:0,0,0 +(1,15337:-473657,-710414:0,0,0 +g1,15337:-473657,-710414 +(1,15337:-473657,-710414:65781,0,65781 +g1,15337:-407876,-710414 +[1,15337:-407876,-644633:0,0,0 ] ) -k1,15365:-473657,-710414:-65781 +k1,15337:-473657,-710414:-65781 ) ) -k1,15365:25478599,-710414:25952256 -g1,15365:25478599,-710414 +k1,15337:25478599,-710414:25952256 +g1,15337:25478599,-710414 ) ] ) -[1,15365:6630773,47279633:25952256,43253760,0 -[1,15365:6630773,4812305:25952256,786432,0 -(1,15365:6630773,4812305:25952256,513147,134348 -(1,15365:6630773,4812305:25952256,513147,134348 -g1,15365:3078558,4812305 -[1,15365:3078558,4812305:0,0,0 -(1,15365:3078558,2439708:0,1703936,0 -k1,15365:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15365:2537886,2439708:1179648,16384,0 +[1,15337:6630773,47279633:25952256,43253760,0 +[1,15337:6630773,4812305:25952256,786432,0 +(1,15337:6630773,4812305:25952256,513147,134348 +(1,15337:6630773,4812305:25952256,513147,134348 +g1,15337:3078558,4812305 +[1,15337:3078558,4812305:0,0,0 +(1,15337:3078558,2439708:0,1703936,0 +k1,15337:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15337:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15365:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15337:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15365:3078558,4812305:0,0,0 -(1,15365:3078558,2439708:0,1703936,0 -g1,15365:29030814,2439708 -g1,15365:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15365:36151628,1915420:16384,1179648,0 +[1,15337:3078558,4812305:0,0,0 +(1,15337:3078558,2439708:0,1703936,0 +g1,15337:29030814,2439708 +g1,15337:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15337:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15365:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15337:37855564,2439708:1179648,16384,0 ) ) -k1,15365:3078556,2439708:-34777008 +k1,15337:3078556,2439708:-34777008 ) ] -[1,15365:3078558,4812305:0,0,0 -(1,15365:3078558,49800853:0,16384,2228224 -k1,15365:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15365:2537886,49800853:1179648,16384,0 -) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15365:3078558,51504789:16384,1179648,0 +[1,15337:3078558,4812305:0,0,0 +(1,15337:3078558,49800853:0,16384,2228224 +k1,15337:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15337:2537886,49800853:1179648,16384,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15337:3078558,51504789:16384,1179648,0 ) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,15337:3078558,4812305:0,0,0 +(1,15337:3078558,49800853:0,16384,2228224 +g1,15337:29030814,49800853 +g1,15337:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15337:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15337:37855564,49800853:1179648,16384,0 +) +) +k1,15337:3078556,49800853:-34777008 +) +] +g1,15337:6630773,4812305 +g1,15337:6630773,4812305 +g1,15337:9573994,4812305 +g1,15337:10922069,4812305 +g1,15337:11737336,4812305 +g1,15337:13412436,4812305 +k1,15337:31387652,4812305:17975216 +) +) +] +[1,15337:6630773,45706769:25952256,40108032,0 +(1,15337:6630773,45706769:25952256,40108032,0 +(1,15337:6630773,45706769:0,0,0 +g1,15337:6630773,45706769 +) +[1,15337:6630773,45706769:25952256,40108032,0 +(1,15303:6630773,6254097:25952256,513147,134348 +k1,15302:10072855,6254097:200671 +k1,15302:14008423,6254097:200671 +k1,15302:15365804,6254097:200671 +k1,15302:16670757,6254097:200671 +k1,15302:18268000,6254097:200671 +k1,15302:21695663,6254097:200670 +k1,15302:24960798,6254097:200671 +k1,15302:26352914,6254097:200671 +k1,15302:27750928,6254097:200671 +k1,15302:31391584,6254097:200671 +k1,15302:32583029,6254097:0 +) +(1,15303:6630773,7095585:25952256,513147,134348 +k1,15302:9597386,7095585:284224 +k1,15302:13036514,7095585:284225 +k1,15302:14517425,7095585:284224 +k1,15302:16208052,7095585:284224 +k1,15302:18177863,7095585:284225 +k1,15302:19453647,7095585:284224 +k1,15302:21171799,7095585:284224 +k1,15302:22107452,7095585:284225 +k1,15302:23589019,7095585:284224 +k1,15302:27610762,7095585:284224 +k1,15302:29086431,7095585:284224 +k1,15302:30389741,7095585:284225 +k1,15302:31900144,7095585:284224 +k1,15302:32583029,7095585:0 +) +(1,15303:6630773,7937073:25952256,513147,126483 +k1,15302:10626855,7937073:225796 +k1,15302:12365878,7937073:225797 +k1,15302:13539325,7937073:225796 +k1,15302:15536560,7937073:225797 +k1,15302:16953801,7937073:225796 +k1,15302:18431991,7937073:225797 +k1,15302:19849232,7937073:225796 +k1,15302:21176034,7937073:225797 +k1,15302:23419684,7937073:225796 +k1,15302:26249882,7937073:225797 +k1,15302:29460188,7937073:225796 +k1,15302:30217482,7937073:225797 +k1,15302:31094706,7937073:225796 +k1,15302:32583029,7937073:0 +) +(1,15303:6630773,8778561:25952256,513147,134348 +k1,15302:8318091,8778561:293367 +k1,15302:9382161,8778561:293367 +k1,15302:12166551,8778561:293367 +k1,15302:13737216,8778561:293368 +k1,15302:15222028,8778561:293367 +k1,15302:17777698,8778561:293367 +k1,15302:18702832,8778561:293367 +k1,15302:20238762,8778561:293367 +k1,15302:21293657,8778561:293367 +k1,15302:23322417,8778561:293367 +k1,15302:24634870,8778561:293368 +k1,15302:26581710,8778561:293367 +k1,15302:29399524,8778561:293367 +k1,15302:31189078,8778561:293367 +k1,15302:32583029,8778561:0 +) +(1,15303:6630773,9620049:25952256,513147,134348 +k1,15302:9646938,9620049:253822 +(1,15302:9646938,9620049:0,452978,115847 +r1,15302:11060339,9620049:1413401,568825,115847 +k1,15302:9646938,9620049:-1413401 +) +(1,15302:9646938,9620049:1413401,452978,115847 +k1,15302:9646938,9620049:3277 +h1,15302:11057062,9620049:0,411205,112570 +) +k1,15302:11314161,9620049:253822 +k1,15302:12250868,9620049:253822 +k1,15302:15312252,9620049:253822 +k1,15302:18328417,9620049:253822 +k1,15302:21597550,9620049:253822 +k1,15302:23634607,9620049:253822 +k1,15302:26259522,9620049:253822 +k1,15302:28009531,9620049:253822 +k1,15302:29211004,9620049:253822 +k1,15302:29820686,9620049:253822 +k1,15302:32583029,9620049:0 +) +(1,15303:6630773,10461537:25952256,505283,126483 +g1,15302:8219365,10461537 +g1,15302:9526808,10461537 +g1,15302:11298246,10461537 +(1,15302:11298246,10461537:0,452978,115847 +r1,15302:13415071,10461537:2116825,568825,115847 +k1,15302:11298246,10461537:-2116825 +) +(1,15302:11298246,10461537:2116825,452978,115847 +k1,15302:11298246,10461537:3277 +h1,15302:13411794,10461537:0,411205,112570 +) +g1,15302:13614300,10461537 +g1,15302:15004974,10461537 +(1,15302:15004974,10461537:0,414482,115847 +r1,15302:16770087,10461537:1765113,530329,115847 +k1,15302:15004974,10461537:-1765113 +) +(1,15302:15004974,10461537:1765113,414482,115847 +k1,15302:15004974,10461537:3277 +h1,15302:16766810,10461537:0,411205,112570 +) +g1,15302:16969316,10461537 +g1,15302:18160105,10461537 +g1,15302:20071790,10461537 +g1,15302:20922447,10461537 +g1,15302:22651942,10461537 +g1,15302:23502599,10461537 +g1,15302:24449594,10461537 +k1,15303:32583029,10461537:5965504 +g1,15303:32583029,10461537 +) +v1,15305:6630773,11827313:0,393216,0 +(1,15306:6630773,17479297:25952256,6045200,616038 +g1,15306:6630773,17479297 +(1,15306:6630773,17479297:25952256,6045200,616038 +(1,15306:6630773,18095335:25952256,6661238,0 +[1,15306:6630773,18095335:25952256,6661238,0 +(1,15306:6630773,18069121:25952256,6608810,0 +r1,15306:6656987,18069121:26214,6608810,0 +[1,15306:6656987,18069121:25899828,6608810,0 +(1,15306:6656987,17479297:25899828,5429162,0 +[1,15306:7246811,17479297:24720180,5429162,0 +(1,15306:7246811,13137509:24720180,1087374,134348 +k1,15305:8609968,13137509:153454 +k1,15305:10404445,13137509:153455 +k1,15305:10913759,13137509:153454 +k1,15305:14583220,13137509:153454 +k1,15305:17422995,13137509:153454 +k1,15305:18965813,13137509:153455 +k1,15305:20396564,13137509:153454 +k1,15305:21209310,13137509:153454 +k1,15305:22821596,13137509:153455 +k1,15305:25591903,13137509:153454 +k1,15305:27100642,13137509:153454 +k1,15305:28015624,13137509:153454 +k1,15305:29698034,13137509:153455 +k1,15305:30611706,13137509:153454 +k1,15305:31966991,13137509:0 +) +(1,15306:7246811,13978997:24720180,513147,134348 +k1,15305:8207036,13978997:198697 +k1,15305:9934688,13978997:198697 +k1,15305:10346376,13978997:198696 +k1,15305:11360341,13978997:198697 +k1,15305:12625309,13978997:198697 +k1,15305:14360170,13978997:198697 +k1,15305:15210295,13978997:198697 +k1,15305:17144385,13978997:198697 +k1,15305:18362167,13978997:198697 +k1,15305:21463454,13978997:198697 +k1,15305:22278189,13978997:198697 +k1,15305:23495971,13978997:198697 +k1,15305:27729064,13978997:198697 +k1,15305:28587053,13978997:198697 +k1,15305:29804835,13978997:198697 +k1,15305:31280829,13978997:198697 +k1,15305:31966991,13978997:0 +) +(1,15306:7246811,14820485:24720180,513147,134348 +k1,15305:9599613,14820485:145549 +k1,15305:10817332,14820485:145550 +k1,15305:11622173,14820485:145549 +k1,15305:13763294,14820485:145550 +k1,15305:17147632,14820485:145549 +k1,15305:17952474,14820485:145550 +k1,15305:19301264,14820485:145549 +k1,15305:22965442,14820485:145550 +k1,15305:23762419,14820485:145549 +k1,15305:25099414,14820485:145550 +k1,15305:29302952,14820485:145549 +k1,15305:31966991,14820485:0 +) +(1,15306:7246811,15661973:24720180,513147,134348 +k1,15305:8084714,15661973:221865 +k1,15305:9077281,15661973:221864 +k1,15305:11911411,15661973:221865 +k1,15305:14221907,15661973:221864 +k1,15305:17062591,15661973:221865 +k1,15305:18590589,15661973:221865 +k1,15305:19573981,15661973:221864 +k1,15305:22428427,15661973:221865 +k1,15305:23485876,15661973:221865 +k1,15305:24726825,15661973:221864 +k1,15305:27635011,15661973:221865 +k1,15305:29134172,15661973:221864 +k1,15305:29972075,15661973:221865 +k1,15305:31966991,15661973:0 +) +(1,15306:7246811,16503461:24720180,513147,134348 +k1,15305:8127464,16503461:194491 +k1,15305:8677814,16503461:194490 +k1,15305:10123387,16503461:194491 +k1,15305:10933916,16503461:194491 +k1,15305:14624096,16503461:194490 +k1,15305:16010032,16503461:194491 +k1,15305:17658112,16503461:194491 +k1,15305:19587996,16503461:194491 +k1,15305:22499609,16503461:194490 +k1,15305:23310138,16503461:194491 +k1,15305:24523714,16503461:194491 +k1,15305:27840995,16503461:194490 +k1,15305:28694778,16503461:194491 +k1,15305:31966991,16503461:0 +) +(1,15306:7246811,17344949:24720180,513147,134348 +k1,15305:8462027,17344949:196131 +k1,15305:11046946,17344949:196132 +k1,15305:13331709,17344949:196131 +k1,15305:14187132,17344949:196131 +k1,15305:15402348,17344949:196131 +k1,15305:16875777,17344949:196132 +k1,15305:18263353,17344949:196131 +k1,15305:21731697,17344949:196131 +k1,15305:22716226,17344949:196131 +k1,15305:26306468,17344949:196132 +k1,15305:27694044,17344949:196131 +k1,15306:31966991,17344949:0 +k1,15306:31966991,17344949:0 +) +] +) +] +r1,15306:32583029,18069121:26214,6608810,0 +) +] +) +) +g1,15306:32583029,17479297 +) +h1,15306:6630773,18095335:0,0,0 +(1,15308:6630773,20902903:25952256,32768,229376 +(1,15308:6630773,20902903:0,32768,229376 +(1,15308:6630773,20902903:5505024,32768,229376 +r1,15308:12135797,20902903:5505024,262144,229376 +) +k1,15308:6630773,20902903:-5505024 +) +(1,15308:6630773,20902903:25952256,32768,0 +r1,15308:32583029,20902903:25952256,32768,0 +) +) +(1,15308:6630773,22507231:25952256,615776,161218 +(1,15308:6630773,22507231:2464678,575668,0 +g1,15308:6630773,22507231 +g1,15308:9095451,22507231 +) +g1,15308:12689446,22507231 +g1,15308:14506891,22507231 +g1,15308:15564642,22507231 +k1,15308:32583029,22507231:15046802 +g1,15308:32583029,22507231 +) +(1,15311:6630773,23741935:25952256,513147,134348 +k1,15310:8434498,23741935:241347 +k1,15310:9327273,23741935:241347 +k1,15310:10316387,23741935:241348 +k1,15310:13731643,23741935:241347 +k1,15310:14585752,23741935:241347 +k1,15310:15182959,23741935:241347 +k1,15310:17119067,23741935:241347 +k1,15310:20118825,23741935:241348 +k1,15310:21043057,23741935:241347 +k1,15310:24439963,23741935:241347 +k1,15310:25367472,23741935:241347 +k1,15310:26930680,23741935:241347 +k1,15310:27831320,23741935:241348 +k1,15310:29091752,23741935:241347 +k1,15310:30986572,23741935:241347 +k1,15310:32583029,23741935:0 +) +(1,15311:6630773,24583423:25952256,505283,126483 +k1,15310:8316717,24583423:155678 +k1,15310:9123822,24583423:155677 +k1,15310:10027266,24583423:155678 +k1,15310:13463676,24583423:155678 +k1,15310:14235391,24583423:155677 +k1,15310:16733326,24583423:155678 +k1,15310:19717537,24583423:155677 +k1,15310:22363583,24583423:155678 +k1,15310:24421771,24583423:155678 +k1,15310:25768893,24583423:155677 +k1,15310:28618756,24583423:155678 +k1,15310:32583029,24583423:0 +) +(1,15311:6630773,25424911:25952256,505283,134348 +k1,15310:8379328,25424911:150787 +k1,15310:9721560,25424911:150787 +k1,15310:12753966,25424911:150788 +k1,15310:13733783,25424911:150787 +k1,15310:17040129,25424911:150787 +k1,15310:18394157,25424911:150787 +k1,15310:22263458,25424911:150788 +k1,15310:23282597,25424911:150787 +k1,15310:24963650,25424911:150787 +k1,15310:25765865,25424911:150787 +k1,15310:27558985,25424911:150788 +k1,15310:29317370,25424911:150787 +k1,15310:32583029,25424911:0 +) +(1,15311:6630773,26266399:25952256,505283,134348 +k1,15310:8079472,26266399:257254 +k1,15310:10066221,26266399:257254 +k1,15310:13452819,26266399:257254 +k1,15310:14471601,26266399:257254 +k1,15310:17725816,26266399:257254 +k1,15310:20051386,26266399:257254 +k1,15310:20960067,26266399:257253 +k1,15310:22236406,26266399:257254 +k1,15310:25826821,26266399:257254 +k1,15310:27368581,26266399:257254 +k1,15310:29156101,26266399:257254 +k1,15310:30064783,26266399:257254 +k1,15310:31069803,26266399:257254 +k1,15310:32583029,26266399:0 +) +(1,15311:6630773,27107887:25952256,505283,126483 +g1,15310:9501249,27107887 +k1,15311:32583029,27107887:21152400 +g1,15311:32583029,27107887 +) +(1,15312:6630773,29199147:25952256,555811,147783 +(1,15312:6630773,29199147:2899444,527696,0 +g1,15312:6630773,29199147 +g1,15312:9530217,29199147 +) +g1,15312:12167976,29199147 +g1,15312:13822433,29199147 +g1,15312:16269875,29199147 +g1,15312:17837103,29199147 +g1,15312:20247780,29199147 +g1,15312:21178457,29199147 +k1,15312:32583029,29199147:8083404 +g1,15312:32583029,29199147 +) +(1,15315:6630773,30433851:25952256,505283,134348 +k1,15314:8635592,30433851:221584 +k1,15314:11429465,30433851:221585 +k1,15314:13258647,30433851:221584 +k1,15314:14874182,30433851:221584 +k1,15314:18097969,30433851:221584 +k1,15314:20609382,30433851:221585 +k1,15314:21822526,30433851:221584 +k1,15314:25305837,30433851:221584 +k1,15314:27262814,30433851:221584 +k1,15314:30231013,30433851:221585 +(1,15314:30231013,30433851:0,414482,115847 +r1,15314:30589279,30433851:358266,530329,115847 +k1,15314:30231013,30433851:-358266 +) +(1,15314:30231013,30433851:358266,414482,115847 +k1,15314:30231013,30433851:3277 +h1,15314:30586002,30433851:0,411205,112570 +) +k1,15314:30810863,30433851:221584 +k1,15314:31683875,30433851:221584 +k1,15315:32583029,30433851:0 +) +(1,15315:6630773,31275339:25952256,513147,134348 +k1,15314:9074544,31275339:193265 +k1,15314:11948233,31275339:193266 +k1,15314:13160583,31275339:193265 +k1,15314:16546763,31275339:193266 +k1,15314:20841271,31275339:193265 +k1,15314:22231224,31275339:193266 +k1,15314:25450286,31275339:193265 +k1,15314:26928058,31275339:193266 +k1,15314:29050703,31275339:193265 +k1,15314:30521266,31275339:193266 +k1,15314:32583029,31275339:0 +) +(1,15315:6630773,32116827:25952256,513147,134348 +k1,15314:8938145,32116827:231191 +k1,15314:10280826,32116827:231190 +k1,15314:11503577,32116827:231191 +k1,15314:15771785,32116827:231190 +k1,15314:16662268,32116827:231191 +k1,15314:19183286,32116827:231190 +k1,15314:20605922,32116827:231191 +k1,15314:21856197,32116827:231190 +k1,15314:24377216,32116827:231191 +k1,15314:25988594,32116827:231190 +k1,15314:28230430,32116827:231191 +k1,15314:29565902,32116827:231190 +k1,15314:30544859,32116827:231191 +k1,15314:32583029,32116827:0 +) +(1,15315:6630773,32958315:25952256,505283,126483 +g1,15314:7446040,32958315 +g1,15314:10660580,32958315 +g1,15314:12051254,32958315 +g1,15314:13740772,32958315 +g1,15314:15925087,32958315 +g1,15314:18089741,32958315 +g1,15314:18940398,32958315 +g1,15314:21810874,32958315 +g1,15314:23617701,32958315 +g1,15314:24429692,32958315 +g1,15314:24984781,32958315 +g1,15314:26637599,32958315 +k1,15315:32583029,32958315:4346352 +g1,15315:32583029,32958315 +) +(1,15317:6630773,33799803:25952256,505283,126483 +h1,15316:6630773,33799803:983040,0,0 +k1,15316:8726308,33799803:158946 +k1,15316:10814633,33799803:158945 +k1,15316:11329439,33799803:158946 +k1,15316:12765681,33799803:158945 +k1,15316:14116072,33799803:158946 +k1,15316:15665692,33799803:158946 +k1,15316:16282734,33799803:158945 +k1,15316:17093108,33799803:158946 +k1,15316:19763393,33799803:158945 +(1,15316:19763393,33799803:0,452978,115847 +r1,15316:21880218,33799803:2116825,568825,115847 +k1,15316:19763393,33799803:-2116825 +) +(1,15316:19763393,33799803:2116825,452978,115847 +k1,15316:19763393,33799803:3277 +h1,15316:21876941,33799803:0,411205,112570 +) +k1,15316:22039164,33799803:158946 +k1,15316:23389555,33799803:158946 +k1,15316:24416852,33799803:158945 +k1,15316:27844734,33799803:158946 +k1,15316:29394353,33799803:158945 +k1,15316:30572384,33799803:158946 +k1,15316:32583029,33799803:0 +) +(1,15317:6630773,34641291:25952256,513147,126483 +g1,15316:9608729,34641291 +g1,15316:10569486,34641291 +g1,15316:11124575,34641291 +g1,15316:12423498,34641291 +g1,15316:13274155,34641291 +g1,15316:16168880,34641291 +(1,15316:16168880,34641291:0,452978,115847 +r1,15316:18285705,34641291:2116825,568825,115847 +k1,15316:16168880,34641291:-2116825 +) +(1,15316:16168880,34641291:2116825,452978,115847 +k1,15316:16168880,34641291:3277 +h1,15316:18282428,34641291:0,411205,112570 +) +k1,15317:32583029,34641291:14123654 +g1,15317:32583029,34641291 +) +v1,15319:6630773,35831757:0,393216,0 +(1,15331:6630773,41469986:25952256,6031445,196608 +g1,15331:6630773,41469986 +g1,15331:6630773,41469986 +g1,15331:6434165,41469986 +(1,15331:6434165,41469986:0,6031445,196608 +r1,15331:32779637,41469986:26345472,6228053,196608 +k1,15331:6434165,41469986:-26345472 +) +(1,15331:6434165,41469986:26345472,6031445,196608 +[1,15331:6630773,41469986:25952256,5834837,0 +(1,15321:6630773,36039375:25952256,404226,107478 +(1,15320:6630773,36039375:0,0,0 +g1,15320:6630773,36039375 +g1,15320:6630773,36039375 +g1,15320:6303093,36039375 +(1,15320:6303093,36039375:0,0,0 +) +g1,15320:6630773,36039375 +) +g1,15321:8843793,36039375 +g1,15321:9792231,36039375 +g1,15321:13585980,36039375 +g1,15321:14218272,36039375 +k1,15321:14218272,36039375:0 +h1,15321:16431292,36039375:0,0,0 +k1,15321:32583029,36039375:16151737 +g1,15321:32583029,36039375 +) +(1,15322:6630773,36705553:25952256,404226,107478 +h1,15322:6630773,36705553:0,0,0 +g1,15322:6946919,36705553 +g1,15322:7263065,36705553 +g1,15322:7579211,36705553 +g1,15322:7895357,36705553 +g1,15322:8211503,36705553 +g1,15322:8527649,36705553 +g1,15322:8843795,36705553 +g1,15322:9159941,36705553 +g1,15322:9476087,36705553 +g1,15322:9792233,36705553 +g1,15322:10108379,36705553 +g1,15322:10424525,36705553 +g1,15322:10740671,36705553 +g1,15322:11056817,36705553 +g1,15322:11372963,36705553 +g1,15322:11689109,36705553 +g1,15322:12005255,36705553 +g1,15322:13902130,36705553 +g1,15322:14534422,36705553 +g1,15322:16431297,36705553 +g1,15322:17063589,36705553 +g1,15322:17695881,36705553 +k1,15322:17695881,36705553:0 +h1,15322:18960464,36705553:0,0,0 +k1,15322:32583029,36705553:13622565 +g1,15322:32583029,36705553 +) +(1,15323:6630773,37371731:25952256,410518,101187 +h1,15323:6630773,37371731:0,0,0 +g1,15323:6946919,37371731 +g1,15323:7263065,37371731 +g1,15323:7579211,37371731 +g1,15323:7895357,37371731 +g1,15323:8211503,37371731 +g1,15323:8527649,37371731 +g1,15323:8843795,37371731 +g1,15323:9159941,37371731 +g1,15323:9476087,37371731 +g1,15323:9792233,37371731 +g1,15323:10108379,37371731 +g1,15323:10424525,37371731 +g1,15323:10740671,37371731 +g1,15323:11056817,37371731 +g1,15323:11372963,37371731 +g1,15323:11689109,37371731 +g1,15323:12005255,37371731 +g1,15323:13902129,37371731 +g1,15323:14534421,37371731 +g1,15323:18960461,37371731 +h1,15323:19276607,37371731:0,0,0 +k1,15323:32583029,37371731:13306422 +g1,15323:32583029,37371731 +) +(1,15324:6630773,38037909:25952256,404226,107478 +h1,15324:6630773,38037909:0,0,0 +g1,15324:6946919,38037909 +g1,15324:7263065,38037909 +g1,15324:7579211,38037909 +g1,15324:7895357,38037909 +g1,15324:8211503,38037909 +g1,15324:8527649,38037909 +g1,15324:8843795,38037909 +g1,15324:9159941,38037909 +g1,15324:9476087,38037909 +g1,15324:9792233,38037909 +k1,15324:9792233,38037909:0 +h1,15324:13585981,38037909:0,0,0 +k1,15324:32583029,38037909:18997048 +g1,15324:32583029,38037909 +) +(1,15325:6630773,38704087:25952256,0,0 +h1,15325:6630773,38704087:0,0,0 +h1,15325:6630773,38704087:0,0,0 +k1,15325:32583029,38704087:25952256 +g1,15325:32583029,38704087 +) +(1,15326:6630773,39370265:25952256,404226,107478 +h1,15326:6630773,39370265:0,0,0 +g1,15326:8843793,39370265 +g1,15326:9792231,39370265 +g1,15326:12005252,39370265 +g1,15326:12637544,39370265 +g1,15326:15166710,39370265 +k1,15326:15166710,39370265:0 +h1,15326:19908896,39370265:0,0,0 +k1,15326:32583029,39370265:12674133 +g1,15326:32583029,39370265 +) +(1,15327:6630773,40036443:25952256,404226,101187 +h1,15327:6630773,40036443:0,0,0 +g1,15327:6946919,40036443 +g1,15327:7263065,40036443 +g1,15327:7579211,40036443 +g1,15327:7895357,40036443 +g1,15327:8211503,40036443 +g1,15327:8527649,40036443 +g1,15327:8843795,40036443 +g1,15327:9159941,40036443 +g1,15327:9476087,40036443 +g1,15327:9792233,40036443 +g1,15327:10108379,40036443 +g1,15327:10424525,40036443 +g1,15327:10740671,40036443 +g1,15327:11056817,40036443 +g1,15327:11372963,40036443 +g1,15327:12005255,40036443 +g1,15327:12637547,40036443 +g1,15327:14850567,40036443 +k1,15327:14850567,40036443:0 +h1,15327:18644315,40036443:0,0,0 +k1,15327:32583029,40036443:13938714 +g1,15327:32583029,40036443 +) +(1,15328:6630773,40702621:25952256,410518,101187 +h1,15328:6630773,40702621:0,0,0 +g1,15328:6946919,40702621 +g1,15328:7263065,40702621 +g1,15328:7579211,40702621 +g1,15328:7895357,40702621 +g1,15328:8211503,40702621 +g1,15328:8527649,40702621 +g1,15328:8843795,40702621 +g1,15328:9159941,40702621 +g1,15328:9476087,40702621 +g1,15328:9792233,40702621 +g1,15328:10108379,40702621 +g1,15328:10424525,40702621 +g1,15328:10740671,40702621 +g1,15328:11056817,40702621 +g1,15328:11372963,40702621 +g1,15328:13269837,40702621 +g1,15328:13902129,40702621 +g1,15328:16431295,40702621 +k1,15328:16431295,40702621:0 +h1,15328:21173481,40702621:0,0,0 +k1,15328:32583029,40702621:11409548 +g1,15328:32583029,40702621 +) +(1,15329:6630773,41368799:25952256,410518,101187 +h1,15329:6630773,41368799:0,0,0 +g1,15329:6946919,41368799 +g1,15329:7263065,41368799 +g1,15329:7579211,41368799 +g1,15329:7895357,41368799 +g1,15329:8211503,41368799 +g1,15329:8527649,41368799 +g1,15329:8843795,41368799 +g1,15329:9159941,41368799 +g1,15329:9476087,41368799 +g1,15329:9792233,41368799 +g1,15329:10108379,41368799 +g1,15329:10424525,41368799 +g1,15329:10740671,41368799 +g1,15329:11056817,41368799 +g1,15329:11372963,41368799 +g1,15329:13269837,41368799 +g1,15329:13902129,41368799 +g1,15329:16431295,41368799 +h1,15329:21173481,41368799:0,0,0 +k1,15329:32583029,41368799:11409548 +g1,15329:32583029,41368799 +) +] +) +g1,15331:32583029,41469986 +g1,15331:6630773,41469986 +g1,15331:6630773,41469986 +g1,15331:32583029,41469986 +g1,15331:32583029,41469986 +) +h1,15331:6630773,41666594:0,0,0 +(1,15335:6630773,43032370:25952256,513147,126483 +h1,15334:6630773,43032370:983040,0,0 +k1,15334:8788078,43032370:220716 +k1,15334:11945462,43032370:220716 +k1,15334:13185262,43032370:220715 +k1,15334:14812381,43032370:220716 +k1,15334:16310394,43032370:220716 +k1,15334:18098731,43032370:220716 +k1,15334:19338532,43032370:220716 +k1,15334:20731686,43032370:220715 +k1,15334:22604565,43032370:220716 +k1,15334:23693633,43032370:220716 +k1,15334:25725764,43032370:220716 +k1,15334:27213945,43032370:220715 +k1,15334:30449972,43032370:220716 +k1,15334:32051532,43032370:220716 +k1,15334:32583029,43032370:0 +) +(1,15335:6630773,43873858:25952256,513147,134348 +k1,15334:8762473,43873858:154479 +k1,15334:10614991,43873858:154480 +k1,15334:11637822,43873858:154479 +k1,15334:13322568,43873858:154480 +k1,15334:14128475,43873858:154479 +k1,15334:16212334,43873858:154479 +k1,15334:18598315,43873858:154480 +k1,15334:20360392,43873858:154479 +k1,15334:23300806,43873858:154479 +k1,15334:24739792,43873858:154480 +k1,15334:26466480,43873858:154479 +(1,15334:26466480,43873858:0,414482,115847 +r1,15334:27879881,43873858:1413401,530329,115847 +k1,15334:26466480,43873858:-1413401 +) +(1,15334:26466480,43873858:1413401,414482,115847 +k1,15334:26466480,43873858:3277 +h1,15334:27876604,43873858:0,411205,112570 +) +k1,15334:28034361,43873858:154480 +k1,15334:31591469,43873858:154479 +k1,15334:32583029,43873858:0 +) +(1,15335:6630773,44715346:25952256,505283,126483 +k1,15334:8342901,44715346:198902 +k1,15334:12562436,44715346:198901 +k1,15334:13389173,44715346:198902 +k1,15334:14607159,44715346:198901 +k1,15334:17467478,44715346:198902 +k1,15334:19695374,44715346:198901 +k1,15334:20762628,44715346:198902 +k1,15334:22772945,44715346:198902 +k1,15334:24668573,44715346:198901 +k1,15334:27109462,44715346:198902 +k1,15334:28380532,44715346:198901 +k1,15334:29598519,44715346:198902 +k1,15334:32583029,44715346:0 +) +(1,15335:6630773,45556834:25952256,513147,126483 +g1,15334:7934284,45556834 +g1,15334:8881279,45556834 +g1,15334:10593734,45556834 +g1,15334:11740614,45556834 +g1,15334:13641813,45556834 +g1,15334:15118339,45556834 +g1,15334:19245141,45556834 +g1,15334:20127255,45556834 +g1,15334:21650311,45556834 +g1,15334:22508832,45556834 +k1,15335:32583029,45556834:5972954 +g1,15335:32583029,45556834 +) +] +(1,15337:32583029,45706769:0,0,0 +g1,15337:32583029,45706769 +) +) +] +(1,15337:6630773,47279633:25952256,0,0 +h1,15337:6630773,47279633:25952256,0,0 +) +] +h1,15337:4262630,4025873:0,0,0 +] +!25383 +}298 +Input:2330:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2331:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2332:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2333:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2334:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2335:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2336:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2337:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2338:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2339:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 +{299 +[1,15396:4262630,47279633:28320399,43253760,0 +(1,15396:4262630,4025873:0,0,0 +[1,15396:-473657,4025873:25952256,0,0 +(1,15396:-473657,-710414:25952256,0,0 +h1,15396:-473657,-710414:0,0,0 +(1,15396:-473657,-710414:0,0,0 +(1,15396:-473657,-710414:0,0,0 +g1,15396:-473657,-710414 +(1,15396:-473657,-710414:65781,0,65781 +g1,15396:-407876,-710414 +[1,15396:-407876,-644633:0,0,0 ] ) +k1,15396:-473657,-710414:-65781 ) ) -] -[1,15365:3078558,4812305:0,0,0 -(1,15365:3078558,49800853:0,16384,2228224 -g1,15365:29030814,49800853 -g1,15365:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15365:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 +k1,15396:25478599,-710414:25952256 +g1,15396:25478599,-710414 ) ] ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15365:37855564,49800853:1179648,16384,0 +[1,15396:6630773,47279633:25952256,43253760,0 +[1,15396:6630773,4812305:25952256,786432,0 +(1,15396:6630773,4812305:25952256,513147,134348 +(1,15396:6630773,4812305:25952256,513147,134348 +g1,15396:3078558,4812305 +[1,15396:3078558,4812305:0,0,0 +(1,15396:3078558,2439708:0,1703936,0 +k1,15396:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15396:2537886,2439708:1179648,16384,0 ) +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15396:3078558,1915420:16384,1179648,0 ) -k1,15365:3078556,49800853:-34777008 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] -g1,15365:6630773,4812305 -g1,15365:6630773,4812305 -g1,15365:9573994,4812305 -g1,15365:10922069,4812305 -g1,15365:11737336,4812305 -g1,15365:13412436,4812305 -k1,15365:31387652,4812305:17975216 ) ) -] -[1,15365:6630773,45706769:25952256,40108032,0 -(1,15365:6630773,45706769:25952256,40108032,0 -(1,15365:6630773,45706769:0,0,0 -g1,15365:6630773,45706769 -) -[1,15365:6630773,45706769:25952256,40108032,0 -v1,15306:6630773,6254097:0,393216,0 -(1,15307:6630773,9253294:25952256,3392413,616038 -g1,15307:6630773,9253294 -(1,15307:6630773,9253294:25952256,3392413,616038 -(1,15307:6630773,9869332:25952256,4008451,0 -[1,15307:6630773,9869332:25952256,4008451,0 -(1,15307:6630773,9843118:25952256,3956023,0 -r1,15307:6656987,9843118:26214,3956023,0 -[1,15307:6656987,9843118:25899828,3956023,0 -(1,15307:6656987,9253294:25899828,2776375,0 -[1,15307:7246811,9253294:24720180,2776375,0 -(1,15307:7246811,7562455:24720180,1085536,298548 -(1,15306:7246811,7562455:0,1085536,298548 -r1,15307:8753226,7562455:1506415,1384084,298548 -k1,15306:7246811,7562455:-1506415 ) -(1,15306:7246811,7562455:1506415,1085536,298548 +] +[1,15396:3078558,4812305:0,0,0 +(1,15396:3078558,2439708:0,1703936,0 +g1,15396:29030814,2439708 +g1,15396:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15396:36151628,1915420:16384,1179648,0 ) -k1,15306:9011223,7562455:257997 -k1,15306:11052455,7562455:257997 -k1,15306:14794346,7562455:257997 -k1,15306:16659941,7562455:257997 -k1,15306:18311889,7562455:257997 -k1,15306:19588970,7562455:257996 -(1,15306:19588970,7562455:0,414482,115847 -r1,15307:19947236,7562455:358266,530329,115847 -k1,15306:19588970,7562455:-358266 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) -(1,15306:19588970,7562455:358266,414482,115847 -k1,15306:19588970,7562455:3277 -h1,15306:19943959,7562455:0,411205,112570 -) -k1,15306:20205233,7562455:257997 -k1,15306:23383514,7562455:257997 -k1,15306:24660596,7562455:257997 -k1,15306:29324579,7562455:257997 -k1,15306:31966991,7562455:0 -) -(1,15307:7246811,8403943:24720180,513147,134348 -k1,15306:9121081,8403943:252254 -k1,15306:10121102,8403943:252255 -k1,15306:10729216,8403943:252254 -(1,15306:10729216,8403943:0,452978,122846 -r1,15307:12142617,8403943:1413401,575824,122846 -k1,15306:10729216,8403943:-1413401 -) -(1,15306:10729216,8403943:1413401,452978,122846 -k1,15306:10729216,8403943:3277 -h1,15306:12139340,8403943:0,411205,112570 -) -k1,15306:12394871,8403943:252254 -k1,15306:14780322,8403943:252254 -k1,15306:16229264,8403943:252255 -k1,15306:17555653,8403943:252254 -k1,15306:20450319,8403943:252254 -k1,15306:21234070,8403943:252254 -k1,15306:23451750,8403943:252255 -k1,15306:24355432,8403943:252254 -k1,15306:25626771,8403943:252254 -(1,15306:25626771,8403943:0,452978,122846 -r1,15307:27040172,8403943:1413401,575824,122846 -k1,15306:25626771,8403943:-1413401 -) -(1,15306:25626771,8403943:1413401,452978,122846 -k1,15306:25626771,8403943:3277 -h1,15306:27036895,8403943:0,411205,112570 -) -k1,15306:27292427,8403943:252255 -k1,15306:29504207,8403943:252254 -k1,15306:30947906,8403943:252254 -k1,15306:31966991,8403943:0 -) -(1,15307:7246811,9245431:24720180,505283,7863 -g1,15306:9288912,9245431 -k1,15307:31966991,9245431:19725682 -g1,15307:31966991,9245431 -) -] -) -] -r1,15307:32583029,9843118:26214,3956023,0 -) -] -) -) -g1,15307:32583029,9253294 -) -h1,15307:6630773,9869332:0,0,0 -v1,15310:6630773,11584086:0,393216,0 -(1,15316:6630773,13225247:25952256,2034377,196608 -g1,15316:6630773,13225247 -g1,15316:6630773,13225247 -g1,15316:6434165,13225247 -(1,15316:6434165,13225247:0,2034377,196608 -r1,15316:32779637,13225247:26345472,2230985,196608 -k1,15316:6434165,13225247:-26345472 -) -(1,15316:6434165,13225247:26345472,2034377,196608 -[1,15316:6630773,13225247:25952256,1837769,0 -(1,15312:6630773,11791704:25952256,404226,101187 -(1,15311:6630773,11791704:0,0,0 -g1,15311:6630773,11791704 -g1,15311:6630773,11791704 -g1,15311:6303093,11791704 -(1,15311:6303093,11791704:0,0,0 -) -g1,15311:6630773,11791704 -) -h1,15312:8527647,11791704:0,0,0 -k1,15312:32583029,11791704:24055382 -g1,15312:32583029,11791704 -) -(1,15313:6630773,12457882:25952256,404226,101187 -h1,15313:6630773,12457882:0,0,0 -g1,15313:8843793,12457882 -g1,15313:9476085,12457882 -g1,15313:11689105,12457882 -g1,15313:12321397,12457882 -k1,15313:12321397,12457882:0 -h1,15313:16115145,12457882:0,0,0 -k1,15313:32583029,12457882:16467884 -g1,15313:32583029,12457882 -) -(1,15314:6630773,13124060:25952256,404226,101187 -h1,15314:6630773,13124060:0,0,0 -g1,15314:8843793,13124060 -g1,15314:9476085,13124060 -g1,15314:11689105,13124060 -g1,15314:12321397,13124060 -g1,15314:16431291,13124060 -g1,15314:17063583,13124060 -g1,15314:19592750,13124060 -h1,15314:20541187,13124060:0,0,0 -k1,15314:32583029,13124060:12041842 -g1,15314:32583029,13124060 -) -] -) -g1,15316:32583029,13225247 -g1,15316:6630773,13225247 -g1,15316:6630773,13225247 -g1,15316:32583029,13225247 -g1,15316:32583029,13225247 -) -h1,15316:6630773,13421855:0,0,0 -(1,15320:6630773,14787631:25952256,505283,7863 -h1,15319:6630773,14787631:983040,0,0 -g1,15319:8766591,14787631 -g1,15319:10070102,14787631 -g1,15319:11555147,14787631 -g1,15319:13145050,14787631 -g1,15319:17402268,14787631 -k1,15320:32583029,14787631:12833917 -g1,15320:32583029,14787631 -) -v1,15322:6630773,15978097:0,393216,0 -(1,15327:6630773,16959371:25952256,1374490,196608 -g1,15327:6630773,16959371 -g1,15327:6630773,16959371 -g1,15327:6434165,16959371 -(1,15327:6434165,16959371:0,1374490,196608 -r1,15327:32779637,16959371:26345472,1571098,196608 -k1,15327:6434165,16959371:-26345472 -) -(1,15327:6434165,16959371:26345472,1374490,196608 -[1,15327:6630773,16959371:25952256,1177882,0 -(1,15324:6630773,16185715:25952256,404226,107478 -(1,15323:6630773,16185715:0,0,0 -g1,15323:6630773,16185715 -g1,15323:6630773,16185715 -g1,15323:6303093,16185715 -(1,15323:6303093,16185715:0,0,0 -) -g1,15323:6630773,16185715 -) -g1,15324:9792230,16185715 -g1,15324:10740668,16185715 -g1,15324:12953688,16185715 -g1,15324:13585980,16185715 -k1,15324:13585980,16185715:0 -h1,15324:22754206,16185715:0,0,0 -k1,15324:32583029,16185715:9828823 -g1,15324:32583029,16185715 -) -(1,15325:6630773,16851893:25952256,404226,107478 -h1,15325:6630773,16851893:0,0,0 -g1,15325:9792230,16851893 -g1,15325:10424522,16851893 -g1,15325:12637542,16851893 -g1,15325:13269834,16851893 -k1,15325:13269834,16851893:0 -h1,15325:17063582,16851893:0,0,0 -k1,15325:32583029,16851893:15519447 -g1,15325:32583029,16851893 -) -] -) -g1,15327:32583029,16959371 -g1,15327:6630773,16959371 -g1,15327:6630773,16959371 -g1,15327:32583029,16959371 -g1,15327:32583029,16959371 -) -h1,15327:6630773,17155979:0,0,0 -(1,15330:6630773,19771527:25952256,555811,147783 -(1,15330:6630773,19771527:2899444,534184,0 -g1,15330:6630773,19771527 -g1,15330:9530217,19771527 -) -g1,15330:12167976,19771527 -g1,15330:13822433,19771527 -g1,15330:16269875,19771527 -g1,15330:17837103,19771527 -g1,15330:20247780,19771527 -g1,15330:21178457,19771527 -k1,15330:32583029,19771527:9900062 -g1,15330:32583029,19771527 -) -(1,15333:6630773,21006231:25952256,513147,134348 -k1,15332:7338329,21006231:229799 -k1,15332:8587212,21006231:229798 -k1,15332:10797509,21006231:229799 -k1,15332:11678736,21006231:229799 -k1,15332:12656300,21006231:229798 -k1,15332:13978584,21006231:229799 -k1,15332:16888806,21006231:229799 -k1,15332:17933873,21006231:229799 -k1,15332:19229942,21006231:229798 -k1,15332:21797410,21006231:229799 -k1,15332:22383069,21006231:229799 -(1,15332:22383069,21006231:0,452978,122846 -r1,15332:23796470,21006231:1413401,575824,122846 -k1,15332:22383069,21006231:-1413401 -) -(1,15332:22383069,21006231:1413401,452978,122846 -k1,15332:22383069,21006231:3277 -h1,15332:23793193,21006231:0,411205,112570 -) -k1,15332:24026268,21006231:229798 -k1,15332:26389264,21006231:229799 -k1,15332:27487415,21006231:229799 -k1,15332:28821495,21006231:229798 -k1,15332:30943974,21006231:229799 -k1,15332:32583029,21006231:0 -) -(1,15333:6630773,21847719:25952256,505283,134348 -k1,15332:8153371,21847719:255132 -k1,15332:9179206,21847719:255132 -k1,15332:9849124,21847719:255075 -k1,15332:11097782,21847719:255132 -k1,15332:12544359,21847719:255132 -k1,15332:14190165,21847719:255132 -k1,15332:15077063,21847719:255131 -k1,15332:17115430,21847719:255132 -k1,15332:18238914,21847719:255132 -k1,15332:19947635,21847719:255132 -k1,15332:21400110,21847719:255132 -k1,15332:22674326,21847719:255131 -k1,15332:24740873,21847719:255132 -k1,15332:25989531,21847719:255132 -k1,15332:26896091,21847719:255132 -k1,15332:27507082,21847719:255131 -(1,15332:27507082,21847719:0,452978,122846 -r1,15332:28920483,21847719:1413401,575824,122846 -k1,15332:27507082,21847719:-1413401 -) -(1,15332:27507082,21847719:1413401,452978,122846 -k1,15332:27507082,21847719:3277 -h1,15332:28917206,21847719:0,411205,112570 -) -k1,15332:29175615,21847719:255132 -k1,15332:31563944,21847719:255132 -k1,15332:32583029,21847719:0 -) -(1,15333:6630773,22689207:25952256,513147,134348 -g1,15332:9783710,22689207 -g1,15332:10642231,22689207 -g1,15332:11860545,22689207 -g1,15332:13053300,22689207 -g1,15332:14244089,22689207 -g1,15332:16408743,22689207 -g1,15332:17764682,22689207 -g1,15332:18725439,22689207 -g1,15332:20081378,22689207 -g1,15332:20932035,22689207 -g1,15332:22150349,22689207 -g1,15332:23626875,22689207 -g1,15332:27140915,22689207 -g1,15332:28848783,22689207 -k1,15333:32583029,22689207:1821250 -g1,15333:32583029,22689207 -) -v1,15335:6630773,23879673:0,393216,0 -(1,15340:6630773,24860947:25952256,1374490,196608 -g1,15340:6630773,24860947 -g1,15340:6630773,24860947 -g1,15340:6434165,24860947 -(1,15340:6434165,24860947:0,1374490,196608 -r1,15340:32779637,24860947:26345472,1571098,196608 -k1,15340:6434165,24860947:-26345472 -) -(1,15340:6434165,24860947:26345472,1374490,196608 -[1,15340:6630773,24860947:25952256,1177882,0 -(1,15337:6630773,24087291:25952256,404226,101187 -(1,15336:6630773,24087291:0,0,0 -g1,15336:6630773,24087291 -g1,15336:6630773,24087291 -g1,15336:6303093,24087291 -(1,15336:6303093,24087291:0,0,0 -) -g1,15336:6630773,24087291 -) -g1,15337:9159939,24087291 -g1,15337:10108377,24087291 -g1,15337:14218272,24087291 -k1,15337:14218272,24087291:0 -h1,15337:18328165,24087291:0,0,0 -k1,15337:32583029,24087291:14254864 -g1,15337:32583029,24087291 -) -(1,15338:6630773,24753469:25952256,404226,107478 -h1,15338:6630773,24753469:0,0,0 -g1,15338:9792230,24753469 -g1,15338:10424522,24753469 -h1,15338:12637542,24753469:0,0,0 -k1,15338:32583030,24753469:19945488 -g1,15338:32583030,24753469 -) -] -) -g1,15340:32583029,24860947 -g1,15340:6630773,24860947 -g1,15340:6630773,24860947 -g1,15340:32583029,24860947 -g1,15340:32583029,24860947 -) -h1,15340:6630773,25057555:0,0,0 -v1,15344:6630773,26947619:0,393216,0 -(1,15345:6630773,30908762:25952256,4354359,616038 -g1,15345:6630773,30908762 -(1,15345:6630773,30908762:25952256,4354359,616038 -(1,15345:6630773,31524800:25952256,4970397,0 -[1,15345:6630773,31524800:25952256,4970397,0 -(1,15345:6630773,31498586:25952256,4917969,0 -r1,15345:6656987,31498586:26214,4917969,0 -[1,15345:6656987,31498586:25899828,4917969,0 -(1,15345:6656987,30908762:25899828,3738321,0 -[1,15345:7246811,30908762:24720180,3738321,0 -(1,15345:7246811,28257815:24720180,1087374,134348 -k1,15344:8687591,28257815:231077 -k1,15344:10947006,28257815:231076 -k1,15344:12197168,28257815:231077 -k1,15344:13924432,28257815:231077 -k1,15344:15325981,28257815:231076 -k1,15344:17365196,28257815:231077 -k1,15344:18543924,28257815:231077 -k1,15344:19794085,28257815:231076 -k1,15344:24275827,28257815:231077 -k1,15344:27067396,28257815:231077 -k1,15344:27914510,28257815:231076 -k1,15344:30424274,28257815:231077 -h1,15344:31793321,28257815:0,0,0 -k1,15344:31966991,28257815:0 -) -(1,15345:7246811,29099303:24720180,513147,134348 -k1,15344:8551469,29099303:232489 -k1,15344:9987199,29099303:232489 -k1,15344:11818766,29099303:232489 -k1,15344:15953269,29099303:232489 -k1,15344:17377203,29099303:232489 -k1,15344:19643274,29099303:232489 -k1,15344:22098743,29099303:232488 -k1,15344:22990524,29099303:232489 -k1,15344:26092179,29099303:232489 -k1,15344:27609174,29099303:232489 -k1,15344:29012136,29099303:232489 -k1,15344:31315563,29099303:232489 -k1,15344:31966991,29099303:0 -) -(1,15345:7246811,29940791:24720180,513147,134348 -k1,15344:8225062,29940791:230485 -k1,15344:10432768,29940791:230485 -k1,15344:14154356,29940791:230485 -k1,15344:16082879,29940791:230485 -k1,15344:19797258,29940791:230485 -k1,15344:20383603,29940791:230485 -k1,15344:23376432,29940791:230486 -k1,15344:24884214,29940791:230485 -k1,15344:25773991,29940791:230485 -k1,15344:27023561,29940791:230485 -k1,15344:28907519,29940791:230485 -k1,15344:30697761,29940791:230485 -k1,15344:31611131,29940791:230485 -k1,15344:31966991,29940791:0 -) -(1,15345:7246811,30782279:24720180,513147,126483 -g1,15344:8723337,30782279 -g1,15344:9581858,30782279 -g1,15344:10136947,30782279 -g1,15344:13098519,30782279 -g1,15344:14683834,30782279 -g1,15344:16450684,30782279 -g1,15344:17668998,30782279 -g1,15344:19521700,30782279 -k1,15345:31966991,30782279:10882257 -g1,15345:31966991,30782279 -) -] -) -] -r1,15345:32583029,31498586:26214,4917969,0 -) -] -) -) -g1,15345:32583029,30908762 -) -h1,15345:6630773,31524800:0,0,0 -(1,15347:6630773,33616060:25952256,564462,147783 -(1,15347:6630773,33616060:2899444,534184,12975 -g1,15347:6630773,33616060 -g1,15347:9530217,33616060 -) -g1,15347:11808970,33616060 -g1,15347:15475448,33616060 -g1,15347:16478936,33616060 -g1,15347:19712876,33616060 -k1,15347:32583029,33616060:10490475 -g1,15347:32583029,33616060 -) -(1,15350:6630773,34850764:25952256,505283,134348 -k1,15349:8666019,34850764:252011 -k1,15349:9937115,34850764:252011 -k1,15349:12245646,34850764:252011 -k1,15349:13366009,34850764:252011 -k1,15349:16554688,34850764:252011 -k1,15349:18336965,34850764:252011 -k1,15349:19240404,34850764:252011 -k1,15349:21540415,34850764:252011 -k1,15349:25195055,34850764:252011 -k1,15349:27145104,34850764:252011 -k1,15349:29084012,34850764:252011 -k1,15349:30204375,34850764:252011 -k1,15349:31931601,34850764:252011 -k1,15349:32583029,34850764:0 -) -(1,15350:6630773,35692252:25952256,513147,134348 -k1,15349:8771894,35692252:180284 -k1,15349:11977974,35692252:180283 -k1,15349:14485441,35692252:180284 -k1,15349:15325017,35692252:180284 -k1,15349:17538882,35692252:180283 -k1,15349:18996463,35692252:180284 -k1,15349:23104319,35692252:180283 -k1,15349:23936031,35692252:180284 -k1,15349:27131626,35692252:180284 -k1,15349:28508596,35692252:180283 -k1,15349:31714677,35692252:180284 -k1,15349:32583029,35692252:0 -) -(1,15350:6630773,36533740:25952256,513147,134348 -k1,15349:8930322,36533740:165041 -k1,15349:10570578,36533740:165041 -k1,15349:11387047,36533740:165041 -k1,15349:13562733,36533740:165041 -k1,15349:14083634,36533740:165041 -(1,15349:14083634,36533740:0,452978,122846 -r1,15349:15497035,36533740:1413401,575824,122846 -k1,15349:14083634,36533740:-1413401 -) -(1,15349:14083634,36533740:1413401,452978,122846 -k1,15349:14083634,36533740:3277 -h1,15349:15493758,36533740:0,411205,112570 -) -k1,15349:15662076,36533740:165041 -k1,15349:17960314,36533740:165041 -k1,15349:18481214,36533740:165040 -k1,15349:19639781,36533740:165041 -k1,15349:20464114,36533740:165041 -k1,15349:21906452,36533740:165041 -k1,15349:26172736,36533740:165041 -k1,15349:27020662,36533740:165041 -k1,15349:27541563,36533740:165041 -k1,15349:29579623,36533740:165041 -k1,15349:31021961,36533740:165041 -k1,15350:32583029,36533740:0 -) -(1,15350:6630773,37375228:25952256,513147,134348 -k1,15349:9277881,37375228:224242 -k1,15349:10698811,37375228:224243 -k1,15349:13634933,37375228:224242 -k1,15349:14951660,37375228:224242 -k1,15349:15707400,37375228:224243 -k1,15349:16583070,37375228:224242 -k1,15349:18260901,37375228:224242 -k1,15349:20177284,37375228:224243 -k1,15349:22997407,37375228:224242 -k1,15349:23837687,37375228:224242 -k1,15349:26552953,37375228:224243 -k1,15349:30483911,37375228:224242 -k1,15350:32583029,37375228:0 -) -(1,15350:6630773,38216716:25952256,505283,134348 -k1,15349:7954235,38216716:183791 -k1,15349:11138920,38216716:183791 -(1,15349:11138920,38216716:0,452978,122846 -r1,15349:12552321,38216716:1413401,575824,122846 -k1,15349:11138920,38216716:-1413401 -) -(1,15349:11138920,38216716:1413401,452978,122846 -k1,15349:11138920,38216716:3277 -h1,15349:12549044,38216716:0,411205,112570 -) -k1,15349:12736111,38216716:183790 -k1,15349:15209730,38216716:183791 -k1,15349:16076406,38216716:183791 -k1,15349:18321960,38216716:183791 -k1,15349:19702438,38216716:183791 -k1,15349:22127560,38216716:183791 -(1,15349:22334654,38216716:0,414482,115847 -r1,15349:23396343,38216716:1061689,530329,115847 -k1,15349:22334654,38216716:-1061689 -) -(1,15349:22334654,38216716:1061689,414482,115847 -k1,15349:22334654,38216716:3277 -h1,15349:23393066,38216716:0,411205,112570 -) -k1,15349:23787227,38216716:183790 -k1,15349:25982973,38216716:183791 -k1,15349:28594218,38216716:183791 -k1,15349:30936765,38216716:183791 -k1,15350:32583029,38216716:0 -) -(1,15350:6630773,39058204:25952256,513147,134348 -k1,15349:8786861,39058204:186731 -k1,15349:9625019,39058204:186730 -k1,15349:10167610,39058204:186731 -k1,15349:12471809,39058204:186731 -k1,15349:15527706,39058204:186731 -k1,15349:16342271,39058204:186730 -k1,15349:17732243,39058204:186731 -k1,15349:19459725,39058204:186731 -k1,15349:21347770,39058204:186730 -k1,15349:23407520,39058204:186731 -k1,15349:26666579,39058204:186731 -k1,15349:29058597,39058204:186731 -k1,15349:30006855,39058204:186730 -k1,15349:31931601,39058204:186731 -k1,15350:32583029,39058204:0 -) -(1,15350:6630773,39899692:25952256,505283,134348 -(1,15349:6630773,39899692:0,452978,122846 -r1,15349:10506157,39899692:3875384,575824,122846 -k1,15349:6630773,39899692:-3875384 -) -(1,15349:6630773,39899692:3875384,452978,122846 -k1,15349:6630773,39899692:3277 -h1,15349:10502880,39899692:0,411205,112570 -) -k1,15349:10736807,39899692:230650 -k1,15349:12099919,39899692:230650 -k1,15349:13078335,39899692:230650 -k1,15349:15427109,39899692:230650 -k1,15349:16343921,39899692:230650 -k1,15349:19646899,39899692:230650 -k1,15349:20528978,39899692:230651 -k1,15349:21778713,39899692:230650 -k1,15349:24126831,39899692:230650 -k1,15349:25457175,39899692:230650 -k1,15349:26339253,39899692:230650 -(1,15349:26339253,39899692:0,452978,122846 -r1,15349:29159502,39899692:2820249,575824,122846 -k1,15349:26339253,39899692:-2820249 -) -(1,15349:26339253,39899692:2820249,452978,122846 -k1,15349:26339253,39899692:3277 -h1,15349:29156225,39899692:0,411205,112570 -) -k1,15349:29563822,39899692:230650 -k1,15349:30540927,39899692:230650 -k1,15349:32583029,39899692:0 -) -(1,15350:6630773,40741180:25952256,513147,134348 -k1,15349:8173228,40741180:257949 -k1,15349:11574285,40741180:257950 -k1,15349:15234863,40741180:257949 -k1,15349:16254341,40741180:257950 -k1,15349:19300192,40741180:257949 -k1,15349:20089638,40741180:257949 -k1,15349:22977548,40741180:257950 -k1,15349:24611098,40741180:257949 -k1,15349:25816699,40741180:257950 -k1,15349:29685682,40741180:257949 -k1,15349:32583029,40741180:0 -) -(1,15350:6630773,41582668:25952256,513147,126483 -g1,15349:9588412,41582668 -g1,15349:10403679,41582668 -g1,15349:11621993,41582668 -g1,15349:14903380,41582668 -g1,15349:15761901,41582668 -g1,15349:16980215,41582668 -g1,15349:19821856,41582668 -k1,15350:32583029,41582668:9892007 -g1,15350:32583029,41582668 -) -v1,15352:6630773,42773134:0,393216,0 -(1,15359:6630773,45061599:25952256,2681681,196608 -g1,15359:6630773,45061599 -g1,15359:6630773,45061599 -g1,15359:6434165,45061599 -(1,15359:6434165,45061599:0,2681681,196608 -r1,15359:32779637,45061599:26345472,2878289,196608 -k1,15359:6434165,45061599:-26345472 -) -(1,15359:6434165,45061599:26345472,2681681,196608 -[1,15359:6630773,45061599:25952256,2485073,0 -(1,15354:6630773,42987044:25952256,410518,107478 -(1,15353:6630773,42987044:0,0,0 -g1,15353:6630773,42987044 -g1,15353:6630773,42987044 -g1,15353:6303093,42987044 -(1,15353:6303093,42987044:0,0,0 -) -g1,15353:6630773,42987044 -) -g1,15354:9792230,42987044 -g1,15354:10740668,42987044 -g1,15354:15166708,42987044 -h1,15354:15482854,42987044:0,0,0 -k1,15354:32583030,42987044:17100176 -g1,15354:32583030,42987044 -) -(1,15355:6630773,43653222:25952256,404226,107478 -h1,15355:6630773,43653222:0,0,0 -g1,15355:6946919,43653222 -g1,15355:7263065,43653222 -g1,15355:11056813,43653222 -h1,15355:11372959,43653222:0,0,0 -k1,15355:32583029,43653222:21210070 -g1,15355:32583029,43653222 -) -(1,15356:6630773,44319400:25952256,404226,76021 -h1,15356:6630773,44319400:0,0,0 -g1,15356:6946919,44319400 -g1,15356:7263065,44319400 -k1,15356:7263065,44319400:0 -h1,15356:10424521,44319400:0,0,0 -k1,15356:32583029,44319400:22158508 -g1,15356:32583029,44319400 -) -(1,15357:6630773,44985578:25952256,404226,76021 -h1,15357:6630773,44985578:0,0,0 -h1,15357:6946919,44985578:0,0,0 -k1,15357:32583029,44985578:25636110 -g1,15357:32583029,44985578 -) -] -) -g1,15359:32583029,45061599 -g1,15359:6630773,45061599 -g1,15359:6630773,45061599 -g1,15359:32583029,45061599 -g1,15359:32583029,45061599 -) -h1,15359:6630773,45258207:0,0,0 -] -(1,15365:32583029,45706769:0,0,0 -g1,15365:32583029,45706769 -) -) -] -(1,15365:6630773,47279633:25952256,0,0 -h1,15365:6630773,47279633:25952256,0,0 -) -] -h1,15365:4262630,4025873:0,0,0 -] -!23365 -}298 -Input:2343:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2344:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2345:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2346:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2347:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2348:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2349:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 -{299 -[1,15431:4262630,47279633:28320399,43253760,0 -(1,15431:4262630,4025873:0,0,0 -[1,15431:-473657,4025873:25952256,0,0 -(1,15431:-473657,-710414:25952256,0,0 -h1,15431:-473657,-710414:0,0,0 -(1,15431:-473657,-710414:0,0,0 -(1,15431:-473657,-710414:0,0,0 -g1,15431:-473657,-710414 -(1,15431:-473657,-710414:65781,0,65781 -g1,15431:-407876,-710414 -[1,15431:-407876,-644633:0,0,0 ] ) -k1,15431:-473657,-710414:-65781 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15396:37855564,2439708:1179648,16384,0 ) ) -k1,15431:25478599,-710414:25952256 -g1,15431:25478599,-710414 +k1,15396:3078556,2439708:-34777008 ) ] +[1,15396:3078558,4812305:0,0,0 +(1,15396:3078558,49800853:0,16384,2228224 +k1,15396:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15396:2537886,49800853:1179648,16384,0 ) -[1,15431:6630773,47279633:25952256,43253760,0 -[1,15431:6630773,4812305:25952256,786432,0 -(1,15431:6630773,4812305:25952256,513147,134348 -(1,15431:6630773,4812305:25952256,513147,134348 -g1,15431:3078558,4812305 -[1,15431:3078558,4812305:0,0,0 -(1,15431:3078558,2439708:0,1703936,0 -k1,15431:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15431:2537886,2439708:1179648,16384,0 -) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15431:3078558,1915420:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15396:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) ] ) ) ) ] -[1,15431:3078558,4812305:0,0,0 -(1,15431:3078558,2439708:0,1703936,0 -g1,15431:29030814,2439708 -g1,15431:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15431:36151628,1915420:16384,1179648,0 +[1,15396:3078558,4812305:0,0,0 +(1,15396:3078558,49800853:0,16384,2228224 +g1,15396:29030814,49800853 +g1,15396:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15396:36151628,51504789:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15431:37855564,2439708:1179648,16384,0 +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15396:37855564,49800853:1179648,16384,0 ) ) -k1,15431:3078556,2439708:-34777008 +k1,15396:3078556,49800853:-34777008 ) ] -[1,15431:3078558,4812305:0,0,0 -(1,15431:3078558,49800853:0,16384,2228224 -k1,15431:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15431:2537886,49800853:1179648,16384,0 +g1,15396:6630773,4812305 +k1,15396:25712890,4812305:17886740 +g1,15396:29057847,4812305 +g1,15396:29873114,4812305 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15431:3078558,51504789:16384,1179648,0 -) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 ) ] +[1,15396:6630773,45706769:25952256,40108032,0 +(1,15396:6630773,45706769:25952256,40108032,0 +(1,15396:6630773,45706769:0,0,0 +g1,15396:6630773,45706769 ) +[1,15396:6630773,45706769:25952256,40108032,0 +v1,15337:6630773,6254097:0,393216,0 +(1,15338:6630773,9253294:25952256,3392413,616038 +g1,15338:6630773,9253294 +(1,15338:6630773,9253294:25952256,3392413,616038 +(1,15338:6630773,9869332:25952256,4008451,0 +[1,15338:6630773,9869332:25952256,4008451,0 +(1,15338:6630773,9843118:25952256,3956023,0 +r1,15338:6656987,9843118:26214,3956023,0 +[1,15338:6656987,9843118:25899828,3956023,0 +(1,15338:6656987,9253294:25899828,2776375,0 +[1,15338:7246811,9253294:24720180,2776375,0 +(1,15338:7246811,7562455:24720180,1085536,298548 +(1,15337:7246811,7562455:0,1085536,298548 +r1,15338:8753226,7562455:1506415,1384084,298548 +k1,15337:7246811,7562455:-1506415 ) +(1,15337:7246811,7562455:1506415,1085536,298548 ) -] -[1,15431:3078558,4812305:0,0,0 -(1,15431:3078558,49800853:0,16384,2228224 -g1,15431:29030814,49800853 -g1,15431:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15431:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] +k1,15337:9011223,7562455:257997 +k1,15337:11052455,7562455:257997 +k1,15337:14794346,7562455:257997 +k1,15337:16659941,7562455:257997 +k1,15337:18311889,7562455:257997 +k1,15337:19588970,7562455:257996 +(1,15337:19588970,7562455:0,414482,115847 +r1,15338:19947236,7562455:358266,530329,115847 +k1,15337:19588970,7562455:-358266 ) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15431:37855564,49800853:1179648,16384,0 -) -) -k1,15431:3078556,49800853:-34777008 -) -] -g1,15431:6630773,4812305 -k1,15431:25712890,4812305:17886740 -g1,15431:29057847,4812305 -g1,15431:29873114,4812305 -) -) -] -[1,15431:6630773,45706769:25952256,40108032,0 -(1,15431:6630773,45706769:25952256,40108032,0 -(1,15431:6630773,45706769:0,0,0 -g1,15431:6630773,45706769 -) -[1,15431:6630773,45706769:25952256,40108032,0 -(1,15363:6630773,6254097:25952256,513147,7863 -h1,15362:6630773,6254097:983040,0,0 -g1,15362:9698513,6254097 -g1,15362:11666559,6254097 -g1,15362:12613554,6254097 -g1,15362:14326009,6254097 -g1,15362:15211400,6254097 -k1,15363:32583029,6254097:14882572 -g1,15363:32583029,6254097 -) -v1,15365:6630773,7351883:0,393216,0 -(1,15372:6630773,9665513:25952256,2706846,196608 -g1,15372:6630773,9665513 -g1,15372:6630773,9665513 -g1,15372:6434165,9665513 -(1,15372:6434165,9665513:0,2706846,196608 -r1,15372:32779637,9665513:26345472,2903454,196608 -k1,15372:6434165,9665513:-26345472 -) -(1,15372:6434165,9665513:26345472,2706846,196608 -[1,15372:6630773,9665513:25952256,2510238,0 -(1,15367:6630773,7559501:25952256,404226,107478 -(1,15366:6630773,7559501:0,0,0 -g1,15366:6630773,7559501 -g1,15366:6630773,7559501 -g1,15366:6303093,7559501 -(1,15366:6303093,7559501:0,0,0 -) -g1,15366:6630773,7559501 -) -k1,15367:6630773,7559501:0 -g1,15367:11372959,7559501 -g1,15367:12005251,7559501 -k1,15367:12005251,7559501:0 -h1,15367:14218271,7559501:0,0,0 -k1,15367:32583029,7559501:18364758 -g1,15367:32583029,7559501 -) -(1,15368:6630773,8225679:25952256,404226,107478 -h1,15368:6630773,8225679:0,0,0 -g1,15368:6946919,8225679 -g1,15368:7263065,8225679 -g1,15368:7579211,8225679 -g1,15368:7895357,8225679 -g1,15368:8211503,8225679 -g1,15368:8527649,8225679 -g1,15368:8843795,8225679 -g1,15368:9159941,8225679 -g1,15368:9476087,8225679 -g1,15368:9792233,8225679 -g1,15368:11689108,8225679 -g1,15368:12321400,8225679 -g1,15368:14218275,8225679 -g1,15368:14850567,8225679 -g1,15368:15482859,8225679 -k1,15368:15482859,8225679:0 -h1,15368:16747442,8225679:0,0,0 -k1,15368:32583029,8225679:15835587 -g1,15368:32583029,8225679 -) -(1,15369:6630773,8891857:25952256,410518,101187 -h1,15369:6630773,8891857:0,0,0 -g1,15369:6946919,8891857 -g1,15369:7263065,8891857 -g1,15369:7579211,8891857 -g1,15369:7895357,8891857 -g1,15369:8211503,8891857 -g1,15369:8527649,8891857 -g1,15369:8843795,8891857 -g1,15369:9159941,8891857 -g1,15369:9476087,8891857 -g1,15369:9792233,8891857 -g1,15369:11689107,8891857 -g1,15369:12321399,8891857 -g1,15369:16747439,8891857 -h1,15369:17063585,8891857:0,0,0 -k1,15369:32583029,8891857:15519444 -g1,15369:32583029,8891857 -) -(1,15370:6630773,9558035:25952256,404226,107478 -h1,15370:6630773,9558035:0,0,0 -g1,15370:6946919,9558035 -g1,15370:7263065,9558035 -g1,15370:7579211,9558035 -g1,15370:7895357,9558035 -g1,15370:8211503,9558035 -g1,15370:8527649,9558035 -g1,15370:8843795,9558035 -g1,15370:9159941,9558035 -g1,15370:9476087,9558035 -g1,15370:9792233,9558035 -k1,15370:9792233,9558035:0 -h1,15370:13585981,9558035:0,0,0 -k1,15370:32583029,9558035:18997048 -g1,15370:32583029,9558035 -) -] -) -g1,15372:32583029,9665513 -g1,15372:6630773,9665513 -g1,15372:6630773,9665513 -g1,15372:32583029,9665513 -g1,15372:32583029,9665513 -) -h1,15372:6630773,9862121:0,0,0 -(1,15378:6630773,13101296:25952256,32768,229376 -(1,15378:6630773,13101296:0,32768,229376 -(1,15378:6630773,13101296:5505024,32768,229376 -r1,15378:12135797,13101296:5505024,262144,229376 -) -k1,15378:6630773,13101296:-5505024 -) -(1,15378:6630773,13101296:25952256,32768,0 -r1,15378:32583029,13101296:25952256,32768,0 -) -) -(1,15378:6630773,14705624:25952256,615776,161218 -(1,15378:6630773,14705624:2464678,573309,14155 -g1,15378:6630773,14705624 -g1,15378:9095451,14705624 -) -g1,15378:13678777,14705624 -g1,15378:16562623,14705624 -k1,15378:32583029,14705624:14382268 -g1,15378:32583029,14705624 -) -(1,15384:6630773,15940328:25952256,513147,134348 -k1,15383:7359767,15940328:259101 -k1,15383:8150365,15940328:259101 -k1,15383:11213097,15940328:259102 -k1,15383:13170236,15940328:259101 -k1,15383:15164730,15940328:259101 -k1,15383:18021678,15940328:259101 -k1,15383:18932208,15940328:259102 -k1,15383:21605655,15940328:259101 -k1,15383:23937660,15940328:259101 -k1,15383:25215846,15940328:259101 -k1,15383:28538100,15940328:259101 -k1,15383:30074499,15940328:259102 -k1,15383:30985028,15940328:259101 -k1,15383:31599989,15940328:259101 -k1,15383:32583029,15940328:0 -) -(1,15384:6630773,16781816:25952256,513147,134348 -k1,15383:8538025,16781816:171859 -k1,15383:9065743,16781816:171858 -k1,15383:11208270,16781816:171859 -k1,15383:14314830,16781816:171858 -k1,15383:14952650,16781816:171859 -k1,15383:16143593,16781816:171858 -k1,15383:17298492,16781816:171859 -k1,15383:18602812,16781816:171858 -k1,15383:20249886,16781816:171859 -k1,15383:21073172,16781816:171858 -k1,15383:21992797,16781816:171859 -k1,15383:25317592,16781816:171858 -k1,15383:27191421,16781816:171859 -k1,15383:27976041,16781816:171858 -k1,15383:28503760,16781816:171859 -k1,15383:30129207,16781816:171858 -k1,15383:31900144,16781816:171859 -k1,15383:32583029,16781816:0 -) -(1,15384:6630773,17623304:25952256,513147,126483 -k1,15383:7198096,17623304:211463 -k1,15383:9254397,17623304:211463 -k1,15383:10125151,17623304:211462 -k1,15383:11944212,17623304:211463 -k1,15383:13685941,17623304:211463 -k1,15383:14548832,17623304:211463 -k1,15383:15508061,17623304:211463 -k1,15383:18760394,17623304:211462 -k1,15383:20365808,17623304:211463 -k1,15383:23858003,17623304:211463 -k1,15383:26423519,17623304:211463 -k1,15383:27093079,17623304:211463 -k1,15383:27836038,17623304:211462 -k1,15383:29382469,17623304:211463 -k1,15383:30245360,17623304:211463 -k1,15383:32583029,17623304:0 -) -(1,15384:6630773,18464792:25952256,505283,126483 -g1,15383:7849087,18464792 -g1,15383:11538108,18464792 -g1,15383:12388765,18464792 -g1,15383:14660898,18464792 -g1,15383:15879212,18464792 -g1,15383:17355738,18464792 -g1,15383:18171005,18464792 -g1,15383:19389319,18464792 -k1,15384:32583029,18464792:11188964 -g1,15384:32583029,18464792 -) -(1,15386:6630773,19306280:25952256,513147,134348 -h1,15385:6630773,19306280:983040,0,0 -k1,15385:8511858,19306280:270210 -k1,15385:9370581,19306280:270210 -k1,15385:10954133,19306280:270210 -k1,15385:12215902,19306280:270209 -k1,15385:14836233,19306280:270210 -k1,15385:15867971,19306280:270210 -k1,15385:18710469,19306280:270210 -k1,15385:19632107,19306280:270210 -k1,15385:22664660,19306280:270210 -k1,15385:25446209,19306280:270209 -k1,15385:28243487,19306280:270210 -k1,15385:29045194,19306280:270210 -k1,15385:31931601,19306280:270210 -k1,15385:32583029,19306280:0 -) -(1,15386:6630773,20147768:25952256,505283,126483 -k1,15385:7222290,20147768:235657 -k1,15385:10368400,20147768:235656 -k1,15385:12181508,20147768:235656 -k1,15385:14424533,20147768:235657 -k1,15385:16153756,20147768:235657 -k1,15385:16745272,20147768:235656 -k1,15385:19454257,20147768:235656 -k1,15385:20305952,20147768:235657 -k1,15385:23139456,20147768:235657 -k1,15385:25092155,20147768:235656 -k1,15385:27665481,20147768:235657 -k1,15385:30521266,20147768:235656 -k1,15385:32583029,20147768:0 -) -(1,15386:6630773,20989256:25952256,513147,126483 -k1,15385:9228838,20989256:265639 -k1,15385:11526748,20989256:265639 -k1,15385:13279399,20989256:265639 -k1,15385:15965283,20989256:265639 -k1,15385:18602670,20989256:265639 -k1,15385:19677680,20989256:265640 -k1,15385:22350456,20989256:265639 -k1,15385:24448482,20989256:265639 -k1,15385:25705681,20989256:265639 -k1,15385:27438016,20989256:265639 -k1,15385:30041324,20989256:265639 -k1,15385:31591469,20989256:265639 -k1,15385:32583029,20989256:0 -) -(1,15386:6630773,21830744:25952256,513147,134348 -g1,15385:8151863,21830744 -g1,15385:9018248,21830744 -g1,15385:9632320,21830744 -g1,15385:11022994,21830744 -g1,15385:14449216,21830744 -g1,15385:16135457,21830744 -g1,15385:18716264,21830744 -g1,15385:19531531,21830744 -g1,15385:23460414,21830744 -k1,15386:32583029,21830744:6038491 -g1,15386:32583029,21830744 -) -(1,15388:6630773,22672232:25952256,513147,134348 -h1,15387:6630773,22672232:983040,0,0 -k1,15387:10604985,22672232:296987 -k1,15387:11257833,22672232:296988 -k1,15387:12537860,22672232:296987 -k1,15387:15442525,22672232:296987 -k1,15387:18307213,22672232:296987 -k1,15387:18960061,22672232:296988 -k1,15387:21438086,22672232:296987 -k1,15387:24307361,22672232:296987 -k1,15387:25795793,22672232:296987 -k1,15387:28346564,22672232:296988 -k1,15387:29662636,22672232:296987 -k1,15387:31966991,22672232:296987 -k1,15387:32583029,22672232:0 -) -(1,15388:6630773,23513720:25952256,513147,126483 -g1,15387:9943617,23513720 -g1,15387:10770681,23513720 -g1,15387:12571610,23513720 -g1,15387:14468221,23513720 -g1,15387:15686535,23513720 -g1,15387:16868804,23513720 -g1,15387:19625903,23513720 -g1,15387:21919007,23513720 -g1,15387:23611146,23513720 -g1,15387:24829460,23513720 -g1,15387:27036057,23513720 -g1,15387:27766783,23513720 -k1,15388:32583029,23513720:3031701 -g1,15388:32583029,23513720 -) -(1,15390:6630773,24355208:25952256,505283,134348 -h1,15389:6630773,24355208:983040,0,0 -k1,15389:8808975,24355208:153140 -k1,15389:11623531,24355208:153139 -k1,15389:13474709,24355208:153140 -k1,15389:16725080,24355208:153140 -k1,15389:17234079,24355208:153139 -k1,15389:18664516,24355208:153140 -k1,15389:19469084,24355208:153140 -k1,15389:21033869,24355208:153139 -k1,15389:25414081,24355208:153140 -k1,15389:28598915,24355208:153139 -k1,15389:30045034,24355208:153094 -k1,15389:30881059,24355208:153140 -k1,15389:32583029,24355208:0 -) -(1,15390:6630773,25196696:25952256,513147,134348 -k1,15389:8829842,25196696:221192 -k1,15389:11770122,25196696:221191 -k1,15389:14675669,25196696:221192 -k1,15389:18299490,25196696:221192 -k1,15389:20725968,25196696:221191 -k1,15389:21598588,25196696:221192 -(1,15389:21598588,25196696:0,452978,115847 -r1,15389:23363701,25196696:1765113,568825,115847 -k1,15389:21598588,25196696:-1765113 -) -(1,15389:21598588,25196696:1765113,452978,115847 -k1,15389:21598588,25196696:3277 -h1,15389:23360424,25196696:0,411205,112570 -) -k1,15389:23584892,25196696:221191 -k1,15389:24997529,25196696:221192 -(1,15389:24997529,25196696:0,452978,122846 -r1,15389:27114354,25196696:2116825,575824,122846 -k1,15389:24997529,25196696:-2116825 -) -(1,15389:24997529,25196696:2116825,452978,122846 -k1,15389:24997529,25196696:3277 -h1,15389:27111077,25196696:0,411205,112570 -) -k1,15389:27335546,25196696:221192 -k1,15389:28548297,25196696:221191 -k1,15389:31966991,25196696:221192 -k1,15389:32583029,25196696:0 -) -(1,15390:6630773,26038184:25952256,505283,7863 -k1,15390:32583029,26038184:23736484 -g1,15390:32583029,26038184 -) -v1,15392:6630773,27135970:0,393216,0 -(1,15400:6630773,30090613:25952256,3347859,196608 -g1,15400:6630773,30090613 -g1,15400:6630773,30090613 -g1,15400:6434165,30090613 -(1,15400:6434165,30090613:0,3347859,196608 -r1,15400:32779637,30090613:26345472,3544467,196608 -k1,15400:6434165,30090613:-26345472 -) -(1,15400:6434165,30090613:26345472,3347859,196608 -[1,15400:6630773,30090613:25952256,3151251,0 -(1,15394:6630773,27349880:25952256,410518,107478 -(1,15393:6630773,27349880:0,0,0 -g1,15393:6630773,27349880 -g1,15393:6630773,27349880 -g1,15393:6303093,27349880 -(1,15393:6303093,27349880:0,0,0 -) -g1,15393:6630773,27349880 -) -g1,15394:8211502,27349880 -g1,15394:9159940,27349880 -g1,15394:15482855,27349880 -g1,15394:16115147,27349880 -g1,15394:18328169,27349880 -g1,15394:20225044,27349880 -g1,15394:20857336,27349880 -g1,15394:22121919,27349880 -h1,15394:22438065,27349880:0,0,0 -k1,15394:32583029,27349880:10144964 -g1,15394:32583029,27349880 -) -(1,15395:6630773,28016058:25952256,410518,76021 -h1,15395:6630773,28016058:0,0,0 -g1,15395:6946919,28016058 -g1,15395:7263065,28016058 -g1,15395:12953688,28016058 -g1,15395:13585980,28016058 -h1,15395:15482854,28016058:0,0,0 -k1,15395:32583030,28016058:17100176 -g1,15395:32583030,28016058 -) -(1,15396:6630773,28682236:25952256,410518,107478 -h1,15396:6630773,28682236:0,0,0 -g1,15396:9476085,28682236 -g1,15396:10108377,28682236 -g1,15396:13902126,28682236 -g1,15396:15799000,28682236 -g1,15396:16431292,28682236 -g1,15396:17379730,28682236 -g1,15396:19592750,28682236 -g1,15396:20225042,28682236 -h1,15396:20857334,28682236:0,0,0 -k1,15396:32583029,28682236:11725695 -g1,15396:32583029,28682236 -) -(1,15397:6630773,29348414:25952256,410518,107478 -h1,15397:6630773,29348414:0,0,0 -k1,15397:6630773,29348414:0 -h1,15397:10108375,29348414:0,0,0 -k1,15397:32583029,29348414:22474654 -g1,15397:32583029,29348414 -) -(1,15398:6630773,30014592:25952256,410518,76021 -h1,15398:6630773,30014592:0,0,0 -k1,15398:6630773,30014592:0 -h1,15398:9476084,30014592:0,0,0 -k1,15398:32583028,30014592:23106944 -g1,15398:32583028,30014592 -) -] -) -g1,15400:32583029,30090613 -g1,15400:6630773,30090613 -g1,15400:6630773,30090613 -g1,15400:32583029,30090613 -g1,15400:32583029,30090613 -) -h1,15400:6630773,30287221:0,0,0 -(1,15404:6630773,31560317:25952256,505283,126483 -h1,15403:6630773,31560317:983040,0,0 -k1,15403:8864398,31560317:208563 -k1,15403:13300033,31560317:208563 -k1,15403:16696924,31560317:208564 -k1,15403:18096932,31560317:208563 -k1,15403:19598511,31560317:208554 -k1,15403:22139500,31560317:208563 -k1,15403:23216415,31560317:208563 -k1,15403:24800579,31560317:208563 -k1,15403:26539409,31560317:208564 -k1,15403:27399400,31560317:208563 -k1,15403:30817916,31560317:208563 -(1,15403:30817916,31560317:0,459977,115847 -r1,15403:32583029,31560317:1765113,575824,115847 -k1,15403:30817916,31560317:-1765113 -) -(1,15403:30817916,31560317:1765113,459977,115847 -k1,15403:30817916,31560317:3277 -h1,15403:32579752,31560317:0,411205,112570 -) -k1,15403:32583029,31560317:0 -) -(1,15404:6630773,32401805:25952256,505283,126483 -g1,15403:8223953,32401805 -(1,15403:8223953,32401805:0,452978,115847 -r1,15403:12451049,32401805:4227096,568825,115847 -k1,15403:8223953,32401805:-4227096 -) -(1,15403:8223953,32401805:4227096,452978,115847 -k1,15403:8223953,32401805:3277 -h1,15403:12447772,32401805:0,411205,112570 -) -g1,15403:12650278,32401805 -g1,15403:13532392,32401805 -(1,15403:13532392,32401805:0,452978,122846 -r1,15403:15297505,32401805:1765113,575824,122846 -k1,15403:13532392,32401805:-1765113 -) -(1,15403:13532392,32401805:1765113,452978,122846 -k1,15403:13532392,32401805:3277 -h1,15403:15294228,32401805:0,411205,112570 -) -g1,15403:15670404,32401805 -k1,15404:32583029,32401805:12942454 -g1,15404:32583029,32401805 -) -v1,15406:6630773,33499590:0,393216,0 -(1,15412:6630773,35121877:25952256,2015503,196608 -g1,15412:6630773,35121877 -g1,15412:6630773,35121877 -g1,15412:6434165,35121877 -(1,15412:6434165,35121877:0,2015503,196608 -r1,15412:32779637,35121877:26345472,2212111,196608 -k1,15412:6434165,35121877:-26345472 -) -(1,15412:6434165,35121877:26345472,2015503,196608 -[1,15412:6630773,35121877:25952256,1818895,0 -(1,15408:6630773,33713500:25952256,410518,107478 -(1,15407:6630773,33713500:0,0,0 -g1,15407:6630773,33713500 -g1,15407:6630773,33713500 -g1,15407:6303093,33713500 -(1,15407:6303093,33713500:0,0,0 -) -g1,15407:6630773,33713500 -) -k1,15408:6630773,33713500:0 -g1,15408:11689105,33713500 -g1,15408:12321397,33713500 -g1,15408:16115146,33713500 -g1,15408:18012020,33713500 -g1,15408:18644312,33713500 -g1,15408:19592750,33713500 -g1,15408:21805770,33713500 -g1,15408:22438062,33713500 -h1,15408:23070354,33713500:0,0,0 -k1,15408:32583029,33713500:9512675 -g1,15408:32583029,33713500 -) -(1,15409:6630773,34379678:25952256,410518,107478 -h1,15409:6630773,34379678:0,0,0 -k1,15409:6630773,34379678:0 -h1,15409:10108375,34379678:0,0,0 -k1,15409:32583029,34379678:22474654 -g1,15409:32583029,34379678 -) -(1,15410:6630773,35045856:25952256,410518,76021 -h1,15410:6630773,35045856:0,0,0 -k1,15410:6630773,35045856:0 -h1,15410:9476084,35045856:0,0,0 -k1,15410:32583028,35045856:23106944 -g1,15410:32583028,35045856 -) -] -) -g1,15412:32583029,35121877 -g1,15412:6630773,35121877 -g1,15412:6630773,35121877 -g1,15412:32583029,35121877 -g1,15412:32583029,35121877 -) -h1,15412:6630773,35318485:0,0,0 -(1,15416:6630773,36591581:25952256,513147,134348 -h1,15415:6630773,36591581:983040,0,0 -k1,15415:8387363,36591581:145715 -k1,15415:9552164,36591581:145716 -k1,15415:11064960,36591581:145715 -k1,15415:11869967,36591581:145715 -k1,15415:14734772,36591581:145716 -k1,15415:17218156,36591581:145715 -k1,15415:18311523,36591581:145716 -k1,15415:19440278,36591581:145715 -k1,15415:21744749,36591581:145715 -k1,15415:22506503,36591581:145716 -k1,15415:24164134,36591581:145715 -k1,15415:25986260,36591581:145715 -k1,15415:27479342,36591581:145662 -k1,15415:28816503,36591581:145716 -k1,15415:30327935,36591581:145662 -k1,15415:32583029,36591581:0 -) -(1,15416:6630773,37433069:25952256,513147,134348 -g1,15415:9514357,37433069 -g1,15415:13116215,37433069 -g1,15415:15520731,37433069 -g1,15415:16371388,37433069 -(1,15415:16371388,37433069:0,452978,115847 -r1,15415:18136501,37433069:1765113,568825,115847 -k1,15415:16371388,37433069:-1765113 -) -(1,15415:16371388,37433069:1765113,452978,115847 -k1,15415:16371388,37433069:3277 -h1,15415:18133224,37433069:0,411205,112570 -) -g1,15415:18335730,37433069 -g1,15415:19726404,37433069 -(1,15415:19726404,37433069:0,452978,122846 -r1,15415:21843229,37433069:2116825,575824,122846 -k1,15415:19726404,37433069:-2116825 -) -(1,15415:19726404,37433069:2116825,452978,122846 -k1,15415:19726404,37433069:3277 -h1,15415:21839952,37433069:0,411205,112570 -) -g1,15415:22042458,37433069 -g1,15415:23233247,37433069 -g1,15415:26629978,37433069 -g1,15415:27445245,37433069 -k1,15416:32583029,37433069:3094371 -g1,15416:32583029,37433069 -) -v1,15418:6630773,38530855:0,393216,0 -(1,15424:6630773,40153142:25952256,2015503,196608 -g1,15424:6630773,40153142 -g1,15424:6630773,40153142 -g1,15424:6434165,40153142 -(1,15424:6434165,40153142:0,2015503,196608 -r1,15424:32779637,40153142:26345472,2212111,196608 -k1,15424:6434165,40153142:-26345472 -) -(1,15424:6434165,40153142:26345472,2015503,196608 -[1,15424:6630773,40153142:25952256,1818895,0 -(1,15420:6630773,38744765:25952256,410518,107478 -(1,15419:6630773,38744765:0,0,0 -g1,15419:6630773,38744765 -g1,15419:6630773,38744765 -g1,15419:6303093,38744765 -(1,15419:6303093,38744765:0,0,0 -) -g1,15419:6630773,38744765 -) -k1,15420:6630773,38744765:0 -g1,15420:9792231,38744765 -g1,15420:10424523,38744765 -g1,15420:14534417,38744765 -g1,15420:16431291,38744765 -g1,15420:17063583,38744765 -g1,15420:18960458,38744765 -g1,15420:21173478,38744765 -g1,15420:21805770,38744765 -h1,15420:23070353,38744765:0,0,0 -k1,15420:32583029,38744765:9512676 -g1,15420:32583029,38744765 -) -(1,15421:6630773,39410943:25952256,410518,107478 -h1,15421:6630773,39410943:0,0,0 -k1,15421:6630773,39410943:0 -h1,15421:10108375,39410943:0,0,0 -k1,15421:32583029,39410943:22474654 -g1,15421:32583029,39410943 -) -(1,15422:6630773,40077121:25952256,410518,76021 -h1,15422:6630773,40077121:0,0,0 -k1,15422:6630773,40077121:0 -h1,15422:9476084,40077121:0,0,0 -k1,15422:32583028,40077121:23106944 -g1,15422:32583028,40077121 -) -] -) -g1,15424:32583029,40153142 -g1,15424:6630773,40153142 -g1,15424:6630773,40153142 -g1,15424:32583029,40153142 -g1,15424:32583029,40153142 -) -h1,15424:6630773,40349750:0,0,0 -v1,15430:6630773,42054453:0,393216,0 -(1,15431:6630773,45116945:25952256,3455708,589824 -g1,15431:6630773,45116945 -(1,15431:6630773,45116945:25952256,3455708,589824 -(1,15431:6630773,45706769:25952256,4045532,0 -[1,15431:6630773,45706769:25952256,4045532,0 -(1,15431:6630773,45706769:25952256,4019318,0 -r1,15431:6656987,45706769:26214,4019318,0 -[1,15431:6656987,45706769:25899828,4019318,0 -(1,15431:6656987,45116945:25899828,2839670,0 -[1,15431:7246811,45116945:24720180,2839670,0 -(1,15431:7246811,43299621:24720180,1022346,134348 -k1,15430:8706482,43299621:204158 -k1,15430:10627683,43299621:204158 -k1,15430:13550929,43299621:204157 -k1,15430:16092756,43299621:204158 -k1,15430:17288474,43299621:204158 -k1,15430:18814493,43299621:204158 -k1,15430:19677942,43299621:204157 -k1,15430:22117533,43299621:204158 -k1,15430:23513136,43299621:204158 -k1,15430:25749565,43299621:204158 -k1,15430:26945282,43299621:204157 -k1,15430:31350953,43299621:204158 -k1,15430:31966991,43299621:0 -) -(1,15431:7246811,44141109:24720180,505283,134348 -k1,15430:11228320,44141109:251855 -k1,15430:14564299,44141109:251855 -k1,15430:15443988,44141109:251854 -k1,15430:17387983,44141109:251855 -k1,15430:19510891,44141109:251855 -k1,15430:21417530,44141109:251855 -k1,15430:22660945,44141109:251855 -k1,15430:25584046,44141109:251854 -k1,15430:28224688,44141109:251855 -k1,15430:30483911,44141109:251855 -k1,15431:31966991,44141109:0 -) -(1,15431:7246811,44982597:24720180,513147,134348 -k1,15430:8997933,44982597:237240 -k1,15430:10182825,44982597:237241 -k1,15430:13517296,44982597:237240 -k1,15430:16473625,44982597:237240 -k1,15430:17326904,44982597:237241 -k1,15430:17920004,44982597:237240 -k1,15430:19852005,44982597:237240 -k1,15430:21072286,44982597:237241 -k1,15430:23663579,44982597:237240 -k1,15430:25775149,44982597:237240 -k1,15430:28350059,44982597:237241 -k1,15430:30874506,44982597:237240 -k1,15430:31966991,44982597:0 -) -] -) -] -r1,15431:32583029,45706769:26214,4019318,0 -) -] -) -) -g1,15431:32583029,45116945 -) -] -(1,15431:32583029,45706769:0,0,0 -g1,15431:32583029,45706769 -) -) -] -(1,15431:6630773,47279633:25952256,0,0 -h1,15431:6630773,47279633:25952256,0,0 -) -] -h1,15431:4262630,4025873:0,0,0 -] -!23658 +(1,15337:19588970,7562455:358266,414482,115847 +k1,15337:19588970,7562455:3277 +h1,15337:19943959,7562455:0,411205,112570 +) +k1,15337:20205233,7562455:257997 +k1,15337:23383514,7562455:257997 +k1,15337:24660596,7562455:257997 +k1,15337:29324579,7562455:257997 +k1,15337:31966991,7562455:0 +) +(1,15338:7246811,8403943:24720180,513147,134348 +k1,15337:9121081,8403943:252254 +k1,15337:10121102,8403943:252255 +k1,15337:10729216,8403943:252254 +(1,15337:10729216,8403943:0,452978,122846 +r1,15338:12142617,8403943:1413401,575824,122846 +k1,15337:10729216,8403943:-1413401 +) +(1,15337:10729216,8403943:1413401,452978,122846 +k1,15337:10729216,8403943:3277 +h1,15337:12139340,8403943:0,411205,112570 +) +k1,15337:12394871,8403943:252254 +k1,15337:14780322,8403943:252254 +k1,15337:16229264,8403943:252255 +k1,15337:17555653,8403943:252254 +k1,15337:20450319,8403943:252254 +k1,15337:21234070,8403943:252254 +k1,15337:23451750,8403943:252255 +k1,15337:24355432,8403943:252254 +k1,15337:25626771,8403943:252254 +(1,15337:25626771,8403943:0,452978,122846 +r1,15338:27040172,8403943:1413401,575824,122846 +k1,15337:25626771,8403943:-1413401 +) +(1,15337:25626771,8403943:1413401,452978,122846 +k1,15337:25626771,8403943:3277 +h1,15337:27036895,8403943:0,411205,112570 +) +k1,15337:27292427,8403943:252255 +k1,15337:29504207,8403943:252254 +k1,15337:30947906,8403943:252254 +k1,15337:31966991,8403943:0 +) +(1,15338:7246811,9245431:24720180,505283,7863 +g1,15337:9288912,9245431 +k1,15338:31966991,9245431:19725682 +g1,15338:31966991,9245431 +) +] +) +] +r1,15338:32583029,9843118:26214,3956023,0 +) +] +) +) +g1,15338:32583029,9253294 +) +h1,15338:6630773,9869332:0,0,0 +v1,15341:6630773,11584086:0,393216,0 +(1,15347:6630773,13225247:25952256,2034377,196608 +g1,15347:6630773,13225247 +g1,15347:6630773,13225247 +g1,15347:6434165,13225247 +(1,15347:6434165,13225247:0,2034377,196608 +r1,15347:32779637,13225247:26345472,2230985,196608 +k1,15347:6434165,13225247:-26345472 +) +(1,15347:6434165,13225247:26345472,2034377,196608 +[1,15347:6630773,13225247:25952256,1837769,0 +(1,15343:6630773,11791704:25952256,404226,101187 +(1,15342:6630773,11791704:0,0,0 +g1,15342:6630773,11791704 +g1,15342:6630773,11791704 +g1,15342:6303093,11791704 +(1,15342:6303093,11791704:0,0,0 +) +g1,15342:6630773,11791704 +) +h1,15343:8527647,11791704:0,0,0 +k1,15343:32583029,11791704:24055382 +g1,15343:32583029,11791704 +) +(1,15344:6630773,12457882:25952256,404226,101187 +h1,15344:6630773,12457882:0,0,0 +g1,15344:8843793,12457882 +g1,15344:9476085,12457882 +g1,15344:11689105,12457882 +g1,15344:12321397,12457882 +k1,15344:12321397,12457882:0 +h1,15344:16115145,12457882:0,0,0 +k1,15344:32583029,12457882:16467884 +g1,15344:32583029,12457882 +) +(1,15345:6630773,13124060:25952256,404226,101187 +h1,15345:6630773,13124060:0,0,0 +g1,15345:8843793,13124060 +g1,15345:9476085,13124060 +g1,15345:11689105,13124060 +g1,15345:12321397,13124060 +g1,15345:16431291,13124060 +g1,15345:17063583,13124060 +g1,15345:19592750,13124060 +h1,15345:20541187,13124060:0,0,0 +k1,15345:32583029,13124060:12041842 +g1,15345:32583029,13124060 +) +] +) +g1,15347:32583029,13225247 +g1,15347:6630773,13225247 +g1,15347:6630773,13225247 +g1,15347:32583029,13225247 +g1,15347:32583029,13225247 +) +h1,15347:6630773,13421855:0,0,0 +(1,15351:6630773,14787631:25952256,505283,7863 +h1,15350:6630773,14787631:983040,0,0 +g1,15350:8766591,14787631 +g1,15350:10070102,14787631 +g1,15350:11555147,14787631 +g1,15350:13145050,14787631 +g1,15350:17402268,14787631 +k1,15351:32583029,14787631:12833917 +g1,15351:32583029,14787631 +) +v1,15353:6630773,15978097:0,393216,0 +(1,15358:6630773,16959371:25952256,1374490,196608 +g1,15358:6630773,16959371 +g1,15358:6630773,16959371 +g1,15358:6434165,16959371 +(1,15358:6434165,16959371:0,1374490,196608 +r1,15358:32779637,16959371:26345472,1571098,196608 +k1,15358:6434165,16959371:-26345472 +) +(1,15358:6434165,16959371:26345472,1374490,196608 +[1,15358:6630773,16959371:25952256,1177882,0 +(1,15355:6630773,16185715:25952256,404226,107478 +(1,15354:6630773,16185715:0,0,0 +g1,15354:6630773,16185715 +g1,15354:6630773,16185715 +g1,15354:6303093,16185715 +(1,15354:6303093,16185715:0,0,0 +) +g1,15354:6630773,16185715 +) +g1,15355:9792230,16185715 +g1,15355:10740668,16185715 +g1,15355:12953688,16185715 +g1,15355:13585980,16185715 +k1,15355:13585980,16185715:0 +h1,15355:22754206,16185715:0,0,0 +k1,15355:32583029,16185715:9828823 +g1,15355:32583029,16185715 +) +(1,15356:6630773,16851893:25952256,404226,107478 +h1,15356:6630773,16851893:0,0,0 +g1,15356:9792230,16851893 +g1,15356:10424522,16851893 +g1,15356:12637542,16851893 +g1,15356:13269834,16851893 +k1,15356:13269834,16851893:0 +h1,15356:17063582,16851893:0,0,0 +k1,15356:32583029,16851893:15519447 +g1,15356:32583029,16851893 +) +] +) +g1,15358:32583029,16959371 +g1,15358:6630773,16959371 +g1,15358:6630773,16959371 +g1,15358:32583029,16959371 +g1,15358:32583029,16959371 +) +h1,15358:6630773,17155979:0,0,0 +(1,15361:6630773,19771527:25952256,555811,147783 +(1,15361:6630773,19771527:2899444,534184,0 +g1,15361:6630773,19771527 +g1,15361:9530217,19771527 +) +g1,15361:12167976,19771527 +g1,15361:13822433,19771527 +g1,15361:16269875,19771527 +g1,15361:17837103,19771527 +g1,15361:20247780,19771527 +g1,15361:21178457,19771527 +k1,15361:32583029,19771527:9900062 +g1,15361:32583029,19771527 +) +(1,15364:6630773,21006231:25952256,513147,134348 +k1,15363:7338329,21006231:229799 +k1,15363:8587212,21006231:229798 +k1,15363:10797509,21006231:229799 +k1,15363:11678736,21006231:229799 +k1,15363:12656300,21006231:229798 +k1,15363:13978584,21006231:229799 +k1,15363:16888806,21006231:229799 +k1,15363:17933873,21006231:229799 +k1,15363:19229942,21006231:229798 +k1,15363:21797410,21006231:229799 +k1,15363:22383069,21006231:229799 +(1,15363:22383069,21006231:0,452978,122846 +r1,15363:23796470,21006231:1413401,575824,122846 +k1,15363:22383069,21006231:-1413401 +) +(1,15363:22383069,21006231:1413401,452978,122846 +k1,15363:22383069,21006231:3277 +h1,15363:23793193,21006231:0,411205,112570 +) +k1,15363:24026268,21006231:229798 +k1,15363:26389264,21006231:229799 +k1,15363:27487415,21006231:229799 +k1,15363:28821495,21006231:229798 +k1,15363:30943974,21006231:229799 +k1,15363:32583029,21006231:0 +) +(1,15364:6630773,21847719:25952256,505283,134348 +k1,15363:8153371,21847719:255132 +k1,15363:9179206,21847719:255132 +k1,15363:9849124,21847719:255075 +k1,15363:11097782,21847719:255132 +k1,15363:12544359,21847719:255132 +k1,15363:14190165,21847719:255132 +k1,15363:15077063,21847719:255131 +k1,15363:17115430,21847719:255132 +k1,15363:18238914,21847719:255132 +k1,15363:19947635,21847719:255132 +k1,15363:21400110,21847719:255132 +k1,15363:22674326,21847719:255131 +k1,15363:24740873,21847719:255132 +k1,15363:25989531,21847719:255132 +k1,15363:26896091,21847719:255132 +k1,15363:27507082,21847719:255131 +(1,15363:27507082,21847719:0,452978,122846 +r1,15363:28920483,21847719:1413401,575824,122846 +k1,15363:27507082,21847719:-1413401 +) +(1,15363:27507082,21847719:1413401,452978,122846 +k1,15363:27507082,21847719:3277 +h1,15363:28917206,21847719:0,411205,112570 +) +k1,15363:29175615,21847719:255132 +k1,15363:31563944,21847719:255132 +k1,15363:32583029,21847719:0 +) +(1,15364:6630773,22689207:25952256,513147,134348 +g1,15363:9783710,22689207 +g1,15363:10642231,22689207 +g1,15363:11860545,22689207 +g1,15363:13053300,22689207 +g1,15363:14244089,22689207 +g1,15363:16408743,22689207 +g1,15363:17764682,22689207 +g1,15363:18725439,22689207 +g1,15363:20081378,22689207 +g1,15363:20932035,22689207 +g1,15363:22150349,22689207 +g1,15363:23626875,22689207 +g1,15363:27140915,22689207 +g1,15363:28848783,22689207 +k1,15364:32583029,22689207:1821250 +g1,15364:32583029,22689207 +) +v1,15366:6630773,23879673:0,393216,0 +(1,15371:6630773,24860947:25952256,1374490,196608 +g1,15371:6630773,24860947 +g1,15371:6630773,24860947 +g1,15371:6434165,24860947 +(1,15371:6434165,24860947:0,1374490,196608 +r1,15371:32779637,24860947:26345472,1571098,196608 +k1,15371:6434165,24860947:-26345472 +) +(1,15371:6434165,24860947:26345472,1374490,196608 +[1,15371:6630773,24860947:25952256,1177882,0 +(1,15368:6630773,24087291:25952256,404226,101187 +(1,15367:6630773,24087291:0,0,0 +g1,15367:6630773,24087291 +g1,15367:6630773,24087291 +g1,15367:6303093,24087291 +(1,15367:6303093,24087291:0,0,0 +) +g1,15367:6630773,24087291 +) +g1,15368:9159939,24087291 +g1,15368:10108377,24087291 +g1,15368:14218272,24087291 +k1,15368:14218272,24087291:0 +h1,15368:18328165,24087291:0,0,0 +k1,15368:32583029,24087291:14254864 +g1,15368:32583029,24087291 +) +(1,15369:6630773,24753469:25952256,404226,107478 +h1,15369:6630773,24753469:0,0,0 +g1,15369:9792230,24753469 +g1,15369:10424522,24753469 +h1,15369:12637542,24753469:0,0,0 +k1,15369:32583030,24753469:19945488 +g1,15369:32583030,24753469 +) +] +) +g1,15371:32583029,24860947 +g1,15371:6630773,24860947 +g1,15371:6630773,24860947 +g1,15371:32583029,24860947 +g1,15371:32583029,24860947 +) +h1,15371:6630773,25057555:0,0,0 +v1,15375:6630773,26947619:0,393216,0 +(1,15376:6630773,30908762:25952256,4354359,616038 +g1,15376:6630773,30908762 +(1,15376:6630773,30908762:25952256,4354359,616038 +(1,15376:6630773,31524800:25952256,4970397,0 +[1,15376:6630773,31524800:25952256,4970397,0 +(1,15376:6630773,31498586:25952256,4917969,0 +r1,15376:6656987,31498586:26214,4917969,0 +[1,15376:6656987,31498586:25899828,4917969,0 +(1,15376:6656987,30908762:25899828,3738321,0 +[1,15376:7246811,30908762:24720180,3738321,0 +(1,15376:7246811,28257815:24720180,1087374,134348 +k1,15375:8687591,28257815:231077 +k1,15375:10947006,28257815:231076 +k1,15375:12197168,28257815:231077 +k1,15375:13924432,28257815:231077 +k1,15375:15325981,28257815:231076 +k1,15375:17365196,28257815:231077 +k1,15375:18543924,28257815:231077 +k1,15375:19794085,28257815:231076 +k1,15375:24275827,28257815:231077 +k1,15375:27067396,28257815:231077 +k1,15375:27914510,28257815:231076 +k1,15375:30424274,28257815:231077 +h1,15375:31793321,28257815:0,0,0 +k1,15375:31966991,28257815:0 +) +(1,15376:7246811,29099303:24720180,513147,134348 +k1,15375:8551469,29099303:232489 +k1,15375:9987199,29099303:232489 +k1,15375:11818766,29099303:232489 +k1,15375:15953269,29099303:232489 +k1,15375:17377203,29099303:232489 +k1,15375:19643274,29099303:232489 +k1,15375:22098743,29099303:232488 +k1,15375:22990524,29099303:232489 +k1,15375:26092179,29099303:232489 +k1,15375:27609174,29099303:232489 +k1,15375:29012136,29099303:232489 +k1,15375:31315563,29099303:232489 +k1,15375:31966991,29099303:0 +) +(1,15376:7246811,29940791:24720180,513147,134348 +k1,15375:8225062,29940791:230485 +k1,15375:10432768,29940791:230485 +k1,15375:14154356,29940791:230485 +k1,15375:16082879,29940791:230485 +k1,15375:19797258,29940791:230485 +k1,15375:20383603,29940791:230485 +k1,15375:23376432,29940791:230486 +k1,15375:24884214,29940791:230485 +k1,15375:25773991,29940791:230485 +k1,15375:27023561,29940791:230485 +k1,15375:28907519,29940791:230485 +k1,15375:30697761,29940791:230485 +k1,15375:31611131,29940791:230485 +k1,15375:31966991,29940791:0 +) +(1,15376:7246811,30782279:24720180,513147,126483 +g1,15375:8723337,30782279 +g1,15375:9581858,30782279 +g1,15375:10136947,30782279 +g1,15375:13098519,30782279 +g1,15375:14683834,30782279 +g1,15375:16450684,30782279 +g1,15375:17668998,30782279 +g1,15375:19521700,30782279 +k1,15376:31966991,30782279:10882257 +g1,15376:31966991,30782279 +) +] +) +] +r1,15376:32583029,31498586:26214,4917969,0 +) +] +) +) +g1,15376:32583029,30908762 +) +h1,15376:6630773,31524800:0,0,0 +(1,15378:6630773,33616060:25952256,564462,147783 +(1,15378:6630773,33616060:2899444,534184,12975 +g1,15378:6630773,33616060 +g1,15378:9530217,33616060 +) +g1,15378:11808970,33616060 +g1,15378:15475448,33616060 +g1,15378:16478936,33616060 +g1,15378:19712876,33616060 +k1,15378:32583029,33616060:10490475 +g1,15378:32583029,33616060 +) +(1,15381:6630773,34850764:25952256,505283,134348 +k1,15380:8666019,34850764:252011 +k1,15380:9937115,34850764:252011 +k1,15380:12245646,34850764:252011 +k1,15380:13366009,34850764:252011 +k1,15380:16554688,34850764:252011 +k1,15380:18336965,34850764:252011 +k1,15380:19240404,34850764:252011 +k1,15380:21540415,34850764:252011 +k1,15380:25195055,34850764:252011 +k1,15380:27145104,34850764:252011 +k1,15380:29084012,34850764:252011 +k1,15380:30204375,34850764:252011 +k1,15380:31931601,34850764:252011 +k1,15380:32583029,34850764:0 +) +(1,15381:6630773,35692252:25952256,513147,134348 +k1,15380:8876757,35692252:285147 +k1,15380:12187701,35692252:285147 +k1,15380:14800032,35692252:285148 +k1,15380:15744471,35692252:285147 +k1,15380:18063200,35692252:285147 +k1,15380:19625644,35692252:285147 +k1,15380:23838364,35692252:285147 +k1,15380:24774940,35692252:285148 +k1,15380:28075398,35692252:285147 +k1,15380:29557232,35692252:285147 +k1,15380:32583029,35692252:0 +) +(1,15381:6630773,36533740:25952256,513147,134348 +k1,15380:7707461,36533740:208336 +k1,15380:10050304,36533740:208335 +k1,15380:11733855,36533740:208336 +k1,15380:12593619,36533740:208336 +k1,15380:14812599,36533740:208335 +k1,15380:15376795,36533740:208336 +(1,15380:15376795,36533740:0,452978,122846 +r1,15380:16790196,36533740:1413401,575824,122846 +k1,15380:15376795,36533740:-1413401 +) +(1,15380:15376795,36533740:1413401,452978,122846 +k1,15380:15376795,36533740:3277 +h1,15380:16786919,36533740:0,411205,112570 +) +k1,15380:16998532,36533740:208336 +k1,15380:19340065,36533740:208336 +k1,15380:19904260,36533740:208335 +k1,15380:21106122,36533740:208336 +k1,15380:21973750,36533740:208336 +k1,15380:23459382,36533740:208335 +k1,15380:27768961,36533740:208336 +k1,15380:28660182,36533740:208336 +k1,15380:29224377,36533740:208335 +k1,15380:31305732,36533740:208336 +k1,15380:32583029,36533740:0 +) +(1,15381:6630773,37375228:25952256,513147,134348 +k1,15380:10551792,37375228:150077 +k1,15380:11898557,37375228:150078 +k1,15380:14760514,37375228:150077 +k1,15380:16003076,37375228:150077 +k1,15380:16684651,37375228:150078 +k1,15380:17486156,37375228:150077 +k1,15380:19089822,37375228:150077 +k1,15380:20932040,37375228:150078 +k1,15380:23677998,37375228:150077 +k1,15380:24444113,37375228:150077 +k1,15380:27085214,37375228:150078 +k1,15380:30942007,37375228:150077 +k1,15381:32583029,37375228:0 +) +(1,15381:6630773,38216716:25952256,505283,134348 +k1,15380:8439912,38216716:211371 +k1,15380:11652176,38216716:211370 +(1,15380:11652176,38216716:0,452978,122846 +r1,15380:13065577,38216716:1413401,575824,122846 +k1,15380:11652176,38216716:-1413401 +) +(1,15380:11652176,38216716:1413401,452978,122846 +k1,15380:11652176,38216716:3277 +h1,15380:13062300,38216716:0,411205,112570 +) +k1,15380:13276948,38216716:211371 +k1,15380:15778146,38216716:211370 +k1,15380:16672402,38216716:211371 +k1,15380:18945535,38216716:211370 +k1,15380:20353593,38216716:211371 +k1,15380:22806294,38216716:211370 +(1,15380:23013388,38216716:0,414482,115847 +r1,15380:24075077,38216716:1061689,530329,115847 +k1,15380:23013388,38216716:-1061689 +) +(1,15380:23013388,38216716:1061689,414482,115847 +k1,15380:23013388,38216716:3277 +h1,15380:24071800,38216716:0,411205,112570 +) +k1,15380:24493542,38216716:211371 +k1,15380:26716867,38216716:211370 +k1,15380:29355692,38216716:211371 +k1,15380:31725818,38216716:211370 +k1,15381:32583029,38216716:0 +) +(1,15381:6630773,39058204:25952256,513147,134348 +k1,15380:9579691,39058204:190508 +k1,15380:10421627,39058204:190508 +k1,15380:10967995,39058204:190508 +k1,15380:13275971,39058204:190508 +k1,15380:16335645,39058204:190508 +k1,15380:17153988,39058204:190508 +k1,15380:18547738,39058204:190509 +k1,15380:20278997,39058204:190508 +k1,15380:22170820,39058204:190508 +k1,15380:24234347,39058204:190508 +k1,15380:27497183,39058204:190508 +k1,15380:29892978,39058204:190508 +k1,15380:30845014,39058204:190508 +k1,15380:32583029,39058204:0 +) +(1,15381:6630773,39899692:25952256,505283,134348 +k1,15380:7449845,39899692:167644 +(1,15380:7449845,39899692:0,452978,122846 +r1,15380:11325229,39899692:3875384,575824,122846 +k1,15380:7449845,39899692:-3875384 +) +(1,15380:7449845,39899692:3875384,452978,122846 +k1,15380:7449845,39899692:3277 +h1,15380:11321952,39899692:0,411205,112570 +) +k1,15380:11492874,39899692:167645 +k1,15380:12792980,39899692:167644 +k1,15380:13708391,39899692:167645 +k1,15380:15994159,39899692:167644 +k1,15380:16847966,39899692:167645 +k1,15380:20087938,39899692:167644 +k1,15380:20907011,39899692:167645 +k1,15380:22093740,39899692:167644 +k1,15380:24378853,39899692:167645 +k1,15380:25646191,39899692:167644 +k1,15380:26465264,39899692:167645 +(1,15380:26465264,39899692:0,452978,122846 +r1,15380:29285513,39899692:2820249,575824,122846 +k1,15380:26465264,39899692:-2820249 +) +(1,15380:26465264,39899692:2820249,452978,122846 +k1,15380:26465264,39899692:3277 +h1,15380:29282236,39899692:0,411205,112570 +) +k1,15380:29626827,39899692:167644 +k1,15380:30540927,39899692:167645 +k1,15380:32583029,39899692:0 +) +(1,15381:6630773,40741180:25952256,513147,134348 +k1,15380:8173228,40741180:257949 +k1,15380:11574285,40741180:257950 +k1,15380:15234863,40741180:257949 +k1,15380:16254341,40741180:257950 +k1,15380:19300192,40741180:257949 +k1,15380:20089638,40741180:257949 +k1,15380:22977548,40741180:257950 +k1,15380:24611098,40741180:257949 +k1,15380:25816699,40741180:257950 +k1,15380:29685682,40741180:257949 +k1,15380:32583029,40741180:0 +) +(1,15381:6630773,41582668:25952256,513147,126483 +g1,15380:9588412,41582668 +g1,15380:10403679,41582668 +g1,15380:11621993,41582668 +g1,15380:14903380,41582668 +g1,15380:15761901,41582668 +g1,15380:16980215,41582668 +g1,15380:19821856,41582668 +k1,15381:32583029,41582668:9892007 +g1,15381:32583029,41582668 +) +v1,15383:6630773,42773134:0,393216,0 +(1,15390:6630773,45061599:25952256,2681681,196608 +g1,15390:6630773,45061599 +g1,15390:6630773,45061599 +g1,15390:6434165,45061599 +(1,15390:6434165,45061599:0,2681681,196608 +r1,15390:32779637,45061599:26345472,2878289,196608 +k1,15390:6434165,45061599:-26345472 +) +(1,15390:6434165,45061599:26345472,2681681,196608 +[1,15390:6630773,45061599:25952256,2485073,0 +(1,15385:6630773,42987044:25952256,410518,107478 +(1,15384:6630773,42987044:0,0,0 +g1,15384:6630773,42987044 +g1,15384:6630773,42987044 +g1,15384:6303093,42987044 +(1,15384:6303093,42987044:0,0,0 +) +g1,15384:6630773,42987044 +) +g1,15385:9792230,42987044 +g1,15385:10740668,42987044 +g1,15385:15166708,42987044 +h1,15385:15482854,42987044:0,0,0 +k1,15385:32583030,42987044:17100176 +g1,15385:32583030,42987044 +) +(1,15386:6630773,43653222:25952256,404226,107478 +h1,15386:6630773,43653222:0,0,0 +g1,15386:6946919,43653222 +g1,15386:7263065,43653222 +g1,15386:11056813,43653222 +h1,15386:11372959,43653222:0,0,0 +k1,15386:32583029,43653222:21210070 +g1,15386:32583029,43653222 +) +(1,15387:6630773,44319400:25952256,404226,76021 +h1,15387:6630773,44319400:0,0,0 +g1,15387:6946919,44319400 +g1,15387:7263065,44319400 +k1,15387:7263065,44319400:0 +h1,15387:10424521,44319400:0,0,0 +k1,15387:32583029,44319400:22158508 +g1,15387:32583029,44319400 +) +(1,15388:6630773,44985578:25952256,404226,76021 +h1,15388:6630773,44985578:0,0,0 +h1,15388:6946919,44985578:0,0,0 +k1,15388:32583029,44985578:25636110 +g1,15388:32583029,44985578 +) +] +) +g1,15390:32583029,45061599 +g1,15390:6630773,45061599 +g1,15390:6630773,45061599 +g1,15390:32583029,45061599 +g1,15390:32583029,45061599 +) +h1,15390:6630773,45258207:0,0,0 +] +(1,15396:32583029,45706769:0,0,0 +g1,15396:32583029,45706769 +) +) +] +(1,15396:6630773,47279633:25952256,0,0 +h1,15396:6630773,47279633:25952256,0,0 +) +] +h1,15396:4262630,4025873:0,0,0 +] +!23256 }299 -!12 +Input:2340:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2341:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2342:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2343:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2344:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2345:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2346:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {300 -[1,15445:4262630,47279633:28320399,43253760,0 -(1,15445:4262630,4025873:0,0,0 -[1,15445:-473657,4025873:25952256,0,0 -(1,15445:-473657,-710414:25952256,0,0 -h1,15445:-473657,-710414:0,0,0 -(1,15445:-473657,-710414:0,0,0 -(1,15445:-473657,-710414:0,0,0 -g1,15445:-473657,-710414 -(1,15445:-473657,-710414:65781,0,65781 -g1,15445:-407876,-710414 -[1,15445:-407876,-644633:0,0,0 +[1,15462:4262630,47279633:28320399,43253760,0 +(1,15462:4262630,4025873:0,0,0 +[1,15462:-473657,4025873:25952256,0,0 +(1,15462:-473657,-710414:25952256,0,0 +h1,15462:-473657,-710414:0,0,0 +(1,15462:-473657,-710414:0,0,0 +(1,15462:-473657,-710414:0,0,0 +g1,15462:-473657,-710414 +(1,15462:-473657,-710414:65781,0,65781 +g1,15462:-407876,-710414 +[1,15462:-407876,-644633:0,0,0 ] ) -k1,15445:-473657,-710414:-65781 +k1,15462:-473657,-710414:-65781 ) ) -k1,15445:25478599,-710414:25952256 -g1,15445:25478599,-710414 +k1,15462:25478599,-710414:25952256 +g1,15462:25478599,-710414 ) ] ) -[1,15445:6630773,47279633:25952256,43253760,0 -[1,15445:6630773,4812305:25952256,786432,0 -(1,15445:6630773,4812305:25952256,505283,134348 -(1,15445:6630773,4812305:25952256,505283,134348 -g1,15445:3078558,4812305 -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,2439708:0,1703936,0 -k1,15445:1358238,2439708:-1720320 -(1,11316:1358238,2439708:1720320,1703936,0 -(1,11316:1358238,2439708:1179648,16384,0 -r1,15445:2537886,2439708:1179648,16384,0 +[1,15462:6630773,47279633:25952256,43253760,0 +[1,15462:6630773,4812305:25952256,786432,0 +(1,15462:6630773,4812305:25952256,513147,134348 +(1,15462:6630773,4812305:25952256,513147,134348 +g1,15462:3078558,4812305 +[1,15462:3078558,4812305:0,0,0 +(1,15462:3078558,2439708:0,1703936,0 +k1,15462:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15462:2537886,2439708:1179648,16384,0 ) -g1,11316:3062174,2439708 -(1,11316:3062174,2439708:16384,1703936,0 -[1,11316:3062174,2439708:25952256,1703936,0 -(1,11316:3062174,1915420:25952256,1179648,0 -(1,11316:3062174,1915420:16384,1179648,0 -r1,15445:3078558,1915420:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15462:3078558,1915420:16384,1179648,0 ) -k1,11316:29014430,1915420:25935872 -g1,11316:29014430,1915420 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,2439708:0,1703936,0 -g1,15445:29030814,2439708 -g1,15445:36135244,2439708 -(1,11316:36135244,2439708:1720320,1703936,0 -(1,11316:36135244,2439708:16384,1703936,0 -[1,11316:36135244,2439708:25952256,1703936,0 -(1,11316:36135244,1915420:25952256,1179648,0 -(1,11316:36135244,1915420:16384,1179648,0 -r1,15445:36151628,1915420:16384,1179648,0 +[1,15462:3078558,4812305:0,0,0 +(1,15462:3078558,2439708:0,1703936,0 +g1,15462:29030814,2439708 +g1,15462:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15462:36151628,1915420:16384,1179648,0 ) -k1,11316:62087500,1915420:25935872 -g1,11316:62087500,1915420 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,11316:36675916,2439708 -(1,11316:36675916,2439708:1179648,16384,0 -r1,15445:37855564,2439708:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15462:37855564,2439708:1179648,16384,0 ) ) -k1,15445:3078556,2439708:-34777008 +k1,15462:3078556,2439708:-34777008 ) ] -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,49800853:0,16384,2228224 -k1,15445:1358238,49800853:-1720320 -(1,11316:1358238,49800853:1720320,16384,2228224 -(1,11316:1358238,49800853:1179648,16384,0 -r1,15445:2537886,49800853:1179648,16384,0 +[1,15462:3078558,4812305:0,0,0 +(1,15462:3078558,49800853:0,16384,2228224 +k1,15462:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15462:2537886,49800853:1179648,16384,0 ) -g1,11316:3062174,49800853 -(1,11316:3062174,52029077:16384,1703936,0 -[1,11316:3062174,52029077:25952256,1703936,0 -(1,11316:3062174,51504789:25952256,1179648,0 -(1,11316:3062174,51504789:16384,1179648,0 -r1,15445:3078558,51504789:16384,1179648,0 +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15462:3078558,51504789:16384,1179648,0 ) -k1,11316:29014430,51504789:25935872 -g1,11316:29014430,51504789 -) -] -) -) -) -] -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,49800853:0,16384,2228224 -g1,15445:29030814,49800853 -g1,15445:36135244,49800853 -(1,11316:36135244,49800853:1720320,16384,2228224 -(1,11316:36135244,52029077:16384,1703936,0 -[1,11316:36135244,52029077:25952256,1703936,0 -(1,11316:36135244,51504789:25952256,1179648,0 -(1,11316:36135244,51504789:16384,1179648,0 -r1,15445:36151628,51504789:16384,1179648,0 -) -k1,11316:62087500,51504789:25935872 -g1,11316:62087500,51504789 -) -] -) -g1,11316:36675916,49800853 -(1,11316:36675916,49800853:1179648,16384,0 -r1,15445:37855564,49800853:1179648,16384,0 -) -) -k1,15445:3078556,49800853:-34777008 -) -] -g1,15445:6630773,4812305 -g1,15445:6630773,4812305 -g1,15445:9205682,4812305 -g1,15445:11846782,4812305 -k1,15445:31387652,4812305:19540870 -) -) -] -[1,15445:6630773,45706769:25952256,40108032,0 -(1,15445:6630773,45706769:25952256,40108032,0 -(1,15445:6630773,45706769:0,0,0 -g1,15445:6630773,45706769 +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 ) -[1,15445:6630773,45706769:25952256,40108032,0 -v1,15431:6630773,6254097:0,393216,0 -(1,15431:6630773,10464152:25952256,4603271,616038 -g1,15431:6630773,10464152 -(1,15431:6630773,10464152:25952256,4603271,616038 -(1,15431:6630773,11080190:25952256,5219309,0 -[1,15431:6630773,11080190:25952256,5219309,0 -(1,15431:6630773,11053976:25952256,5193095,0 -r1,15431:6656987,11053976:26214,5193095,0 -[1,15431:6656987,11053976:25899828,5193095,0 -(1,15431:6656987,10464152:25899828,4013447,0 -[1,15431:7246811,10464152:24720180,4013447,0 -(1,15431:7246811,6963852:24720180,513147,134348 -k1,15430:10163426,6963852:154272 -k1,15430:13109531,6963852:154271 -k1,15430:13946688,6963852:154272 -k1,15430:15576174,6963852:154271 -k1,15430:17240396,6963852:154272 -k1,15430:20251382,6963852:154272 -k1,15430:21799604,6963852:154271 -k1,15430:24716219,6963852:154272 -k1,15430:26551488,6963852:154271 -k1,15430:28580090,6963852:154272 -k1,15430:31966991,6963852:0 -) -(1,15431:7246811,7805340:24720180,513147,134348 -k1,15430:9801166,7805340:165568 -k1,15430:12304402,7805340:165567 -k1,15430:13574252,7805340:165568 -k1,15430:15025636,7805340:165568 -k1,15430:16934462,7805340:165568 -k1,15430:17716067,7805340:165567 -k1,15430:19390274,7805340:165568 -k1,15430:22251338,7805340:165568 -k1,15430:25574431,7805340:165568 -k1,15430:26809546,7805340:165567 -k1,15430:28450329,7805340:165568 -k1,15430:31966991,7805340:0 -) -(1,15431:7246811,8646828:24720180,513147,134348 -k1,15430:8050937,8646828:188088 -k1,15430:9258111,8646828:188089 -k1,15430:13057233,8646828:188088 -k1,15430:14436766,8646828:188088 -k1,15430:16133493,8646828:188088 -k1,15430:18563569,8646828:188089 -k1,15430:19379492,8646828:188088 -k1,15430:21264962,8646828:188088 -k1,15430:23151088,8646828:188088 -k1,15430:26436408,8646828:188089 -k1,15430:27981747,8646828:188088 -k1,15430:31966991,8646828:0 -) -(1,15431:7246811,9488316:24720180,513147,134348 -k1,15430:7929930,9488316:225022 -k1,15430:9259235,9488316:225023 -k1,15430:10232023,9488316:225022 -k1,15430:14022204,9488316:225022 -k1,15430:14898655,9488316:225023 -k1,15430:17181507,9488316:225022 -k1,15430:18057958,9488316:225023 -k1,15430:19053683,9488316:225022 -k1,15430:22665606,9488316:225022 -k1,15430:25609718,9488316:225023 -k1,15430:27842108,9488316:225022 -k1,15430:28718558,9488316:225022 -k1,15430:30209737,9488316:225023 -k1,15430:31501030,9488316:225022 -k1,15430:31966991,9488316:0 -) -(1,15431:7246811,10329804:24720180,505283,134348 -g1,15430:8465125,10329804 -g1,15430:11340844,10329804 -g1,15430:12071570,10329804 -g1,15430:12886837,10329804 -g1,15430:14105151,10329804 -g1,15430:15581677,10329804 -g1,15430:16463791,10329804 -g1,15430:17279058,10329804 -g1,15430:18497372,10329804 -g1,15430:21793832,10329804 -k1,15431:31966991,10329804:7899715 -g1,15431:31966991,10329804 -) -] -) -] -r1,15431:32583029,11053976:26214,5193095,0 -) -] -) -) -g1,15431:32583029,10464152 -) -h1,15431:6630773,11080190:0,0,0 -(1,15433:6630773,13887758:25952256,32768,229376 -(1,15433:6630773,13887758:0,32768,229376 -(1,15433:6630773,13887758:5505024,32768,229376 -r1,15433:12135797,13887758:5505024,262144,229376 -) -k1,15433:6630773,13887758:-5505024 -) -(1,15433:6630773,13887758:25952256,32768,0 -r1,15433:32583029,13887758:25952256,32768,0 -) -) -(1,15433:6630773,15492086:25952256,606339,161218 -(1,15433:6630773,15492086:2464678,582746,14155 -g1,15433:6630773,15492086 -g1,15433:9095451,15492086 -) -g1,15433:12303307,15492086 -k1,15433:32583029,15492086:17283416 -g1,15433:32583029,15492086 -) -(1,15435:6630773,16726790:25952256,513147,134348 -k1,15434:7714793,16726790:181589 -k1,15434:10585981,16726790:181590 -k1,15434:14139397,16726790:181589 -k1,15434:14980278,16726790:181589 -k1,15434:16180953,16726790:181590 -k1,15434:18114319,16726790:181589 -k1,15434:21698537,16726790:181589 -k1,15434:22531555,16726790:181590 -k1,15434:25293296,16726790:181589 -k1,15434:28303418,16726790:181589 -k1,15434:29016505,16726790:181590 -k1,15434:31563944,16726790:181589 -k1,15434:32583029,16726790:0 -) -(1,15435:6630773,17568278:25952256,513147,134348 -k1,15434:8746124,17568278:288863 -k1,15434:9694278,17568278:288862 -k1,15434:11186382,17568278:288863 -k1,15434:13230954,17568278:288862 -k1,15434:15776222,17568278:288863 -k1,15434:17977425,17568278:288862 -k1,15434:20935569,17568278:288863 -k1,15434:21840469,17568278:288862 -k1,15434:23916499,17568278:288863 -k1,15434:25224446,17568278:288862 -k1,15434:26605794,17568278:288863 -k1,15434:27553949,17568278:288863 -k1,15434:30845014,17568278:288862 -k1,15434:32583029,17568278:0 -) -(1,15435:6630773,18409766:25952256,513147,134348 -k1,15434:9424661,18409766:245193 -k1,15434:12010572,18409766:244965 -k1,15434:15066375,18409766:244964 -k1,15434:16235398,18409766:244965 -k1,15434:18014561,18409766:244965 -k1,15434:20905214,18409766:244964 -k1,15434:24281489,18409766:244965 -k1,15434:25717898,18409766:244964 -k1,15434:28116376,18409766:244965 -k1,15434:30162269,18409766:244964 -k1,15434:31426319,18409766:244965 -k1,15434:32583029,18409766:0 -) -(1,15435:6630773,19251254:25952256,513147,134348 -k1,15434:9066141,19251254:148817 -k1,15434:9976486,19251254:148817 -k1,15434:11144388,19251254:148817 -k1,15434:12885075,19251254:148817 -k1,15434:15159225,19251254:148817 -k1,15434:15967334,19251254:148817 -k1,15434:17135236,19251254:148817 -k1,15434:20037876,19251254:148817 -k1,15434:21228715,19251254:148817 -k1,15434:24857494,19251254:148817 -k1,15434:25689196,19251254:148817 -k1,15434:28202552,19251254:148817 -k1,15434:29417640,19251254:148817 -k1,15434:32583029,19251254:0 -) -(1,15435:6630773,20092742:25952256,513147,134348 -k1,15434:7918064,20092742:268206 -k1,15434:9768309,20092742:268206 -k1,15434:10486092,20092742:268206 -k1,15434:13565137,20092742:268206 -k1,15434:16916156,20092742:268206 -k1,15434:19406689,20092742:268207 -k1,15434:21475824,20092742:268206 -k1,15434:22275527,20092742:268206 -k1,15434:23314436,20092742:268206 -k1,15434:26405278,20092742:268206 -k1,15434:29826421,20092742:268206 -k1,15434:30722462,20092742:268206 -k1,15434:32583029,20092742:0 -) -(1,15435:6630773,20934230:25952256,513147,134348 -k1,15434:10980253,20934230:286903 -k1,15434:11926448,20934230:286903 -k1,15434:13232436,20934230:286903 -k1,15434:16382608,20934230:286904 -k1,15434:19044536,20934230:286903 -k1,15434:19998595,20934230:286903 -k1,15434:20700253,20934230:286815 -k1,15434:23706245,20934230:286903 -k1,15434:24984708,20934230:286903 -k1,15434:28055581,20934230:286904 -k1,15434:28958522,20934230:286903 -k1,15434:30264510,20934230:286903 -k1,15434:32133452,20934230:286903 -k1,15434:32583029,20934230:0 -) -(1,15435:6630773,21775718:25952256,505283,126483 -g1,15434:9663779,21775718 -g1,15434:12382868,21775718 -k1,15435:32583028,21775718:18225560 -g1,15435:32583028,21775718 -) -] -(1,15445:32583029,45706769:0,0,0 -g1,15445:32583029,45706769 -) -) -] -(1,15445:6630773,47279633:25952256,0,0 -h1,15445:6630773,47279633:25952256,0,0 -) -] -h1,15445:4262630,4025873:0,0,0 -] -!10054 -}300 -!12 -{301 -[1,15445:4262630,47279633:28320399,43253760,0 -(1,15445:4262630,4025873:0,0,0 -[1,15445:-473657,4025873:25952256,0,0 -(1,15445:-473657,-710414:25952256,0,0 -h1,15445:-473657,-710414:0,0,0 -(1,15445:-473657,-710414:0,0,0 -(1,15445:-473657,-710414:0,0,0 -g1,15445:-473657,-710414 -(1,15445:-473657,-710414:65781,0,65781 -g1,15445:-407876,-710414 -[1,15445:-407876,-644633:0,0,0 ] ) -k1,15445:-473657,-710414:-65781 ) ) -k1,15445:25478599,-710414:25952256 -g1,15445:25478599,-710414 -) ] -) -[1,15445:6630773,47279633:25952256,43253760,0 -[1,15445:6630773,4812305:25952256,786432,0 -(1,15445:6630773,4812305:25952256,0,0 -(1,15445:6630773,4812305:25952256,0,0 -g1,15445:3078558,4812305 -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,2439708:0,1703936,0 -k1,15445:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15445:2537886,2439708:1179648,16384,0 -) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15445:3078558,1915420:16384,1179648,0 -) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 -) +[1,15462:3078558,4812305:0,0,0 +(1,15462:3078558,49800853:0,16384,2228224 +g1,15462:29030814,49800853 +g1,15462:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15462:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15462:37855564,49800853:1179648,16384,0 +) +) +k1,15462:3078556,49800853:-34777008 +) +] +g1,15462:6630773,4812305 +g1,15462:6630773,4812305 +g1,15462:10354528,4812305 +g1,15462:12610277,4812305 +g1,15462:14041583,4812305 +k1,15462:31387651,4812305:17346068 +) +) +] +[1,15462:6630773,45706769:25952256,40108032,0 +(1,15462:6630773,45706769:25952256,40108032,0 +(1,15462:6630773,45706769:0,0,0 +g1,15462:6630773,45706769 +) +[1,15462:6630773,45706769:25952256,40108032,0 +(1,15394:6630773,6254097:25952256,513147,7863 +h1,15393:6630773,6254097:983040,0,0 +g1,15393:9698513,6254097 +g1,15393:11666559,6254097 +g1,15393:12613554,6254097 +g1,15393:14326009,6254097 +g1,15393:15211400,6254097 +k1,15394:32583029,6254097:14882572 +g1,15394:32583029,6254097 +) +v1,15396:6630773,7351883:0,393216,0 +(1,15403:6630773,9665513:25952256,2706846,196608 +g1,15403:6630773,9665513 +g1,15403:6630773,9665513 +g1,15403:6434165,9665513 +(1,15403:6434165,9665513:0,2706846,196608 +r1,15403:32779637,9665513:26345472,2903454,196608 +k1,15403:6434165,9665513:-26345472 +) +(1,15403:6434165,9665513:26345472,2706846,196608 +[1,15403:6630773,9665513:25952256,2510238,0 +(1,15398:6630773,7559501:25952256,404226,107478 +(1,15397:6630773,7559501:0,0,0 +g1,15397:6630773,7559501 +g1,15397:6630773,7559501 +g1,15397:6303093,7559501 +(1,15397:6303093,7559501:0,0,0 +) +g1,15397:6630773,7559501 +) +k1,15398:6630773,7559501:0 +g1,15398:11372959,7559501 +g1,15398:12005251,7559501 +k1,15398:12005251,7559501:0 +h1,15398:14218271,7559501:0,0,0 +k1,15398:32583029,7559501:18364758 +g1,15398:32583029,7559501 +) +(1,15399:6630773,8225679:25952256,404226,107478 +h1,15399:6630773,8225679:0,0,0 +g1,15399:6946919,8225679 +g1,15399:7263065,8225679 +g1,15399:7579211,8225679 +g1,15399:7895357,8225679 +g1,15399:8211503,8225679 +g1,15399:8527649,8225679 +g1,15399:8843795,8225679 +g1,15399:9159941,8225679 +g1,15399:9476087,8225679 +g1,15399:9792233,8225679 +g1,15399:11689108,8225679 +g1,15399:12321400,8225679 +g1,15399:14218275,8225679 +g1,15399:14850567,8225679 +g1,15399:15482859,8225679 +k1,15399:15482859,8225679:0 +h1,15399:16747442,8225679:0,0,0 +k1,15399:32583029,8225679:15835587 +g1,15399:32583029,8225679 +) +(1,15400:6630773,8891857:25952256,410518,101187 +h1,15400:6630773,8891857:0,0,0 +g1,15400:6946919,8891857 +g1,15400:7263065,8891857 +g1,15400:7579211,8891857 +g1,15400:7895357,8891857 +g1,15400:8211503,8891857 +g1,15400:8527649,8891857 +g1,15400:8843795,8891857 +g1,15400:9159941,8891857 +g1,15400:9476087,8891857 +g1,15400:9792233,8891857 +g1,15400:11689107,8891857 +g1,15400:12321399,8891857 +g1,15400:16747439,8891857 +h1,15400:17063585,8891857:0,0,0 +k1,15400:32583029,8891857:15519444 +g1,15400:32583029,8891857 +) +(1,15401:6630773,9558035:25952256,404226,107478 +h1,15401:6630773,9558035:0,0,0 +g1,15401:6946919,9558035 +g1,15401:7263065,9558035 +g1,15401:7579211,9558035 +g1,15401:7895357,9558035 +g1,15401:8211503,9558035 +g1,15401:8527649,9558035 +g1,15401:8843795,9558035 +g1,15401:9159941,9558035 +g1,15401:9476087,9558035 +g1,15401:9792233,9558035 +k1,15401:9792233,9558035:0 +h1,15401:13585981,9558035:0,0,0 +k1,15401:32583029,9558035:18997048 +g1,15401:32583029,9558035 +) +] +) +g1,15403:32583029,9665513 +g1,15403:6630773,9665513 +g1,15403:6630773,9665513 +g1,15403:32583029,9665513 +g1,15403:32583029,9665513 +) +h1,15403:6630773,9862121:0,0,0 +(1,15409:6630773,13101296:25952256,32768,229376 +(1,15409:6630773,13101296:0,32768,229376 +(1,15409:6630773,13101296:5505024,32768,229376 +r1,15409:12135797,13101296:5505024,262144,229376 +) +k1,15409:6630773,13101296:-5505024 +) +(1,15409:6630773,13101296:25952256,32768,0 +r1,15409:32583029,13101296:25952256,32768,0 +) +) +(1,15409:6630773,14705624:25952256,615776,161218 +(1,15409:6630773,14705624:2464678,573309,14155 +g1,15409:6630773,14705624 +g1,15409:9095451,14705624 +) +g1,15409:13678777,14705624 +g1,15409:16562623,14705624 +k1,15409:32583029,14705624:14382268 +g1,15409:32583029,14705624 +) +(1,15415:6630773,15940328:25952256,513147,134348 +k1,15414:7359767,15940328:259101 +k1,15414:8150365,15940328:259101 +k1,15414:11213097,15940328:259102 +k1,15414:13170236,15940328:259101 +k1,15414:15164730,15940328:259101 +k1,15414:18021678,15940328:259101 +k1,15414:18932208,15940328:259102 +k1,15414:21605655,15940328:259101 +k1,15414:23937660,15940328:259101 +k1,15414:25215846,15940328:259101 +k1,15414:28538100,15940328:259101 +k1,15414:30074499,15940328:259102 +k1,15414:30985028,15940328:259101 +k1,15414:31599989,15940328:259101 +k1,15414:32583029,15940328:0 +) +(1,15415:6630773,16781816:25952256,513147,134348 +k1,15414:8538025,16781816:171859 +k1,15414:9065743,16781816:171858 +k1,15414:11208270,16781816:171859 +k1,15414:14314830,16781816:171858 +k1,15414:14952650,16781816:171859 +k1,15414:16143593,16781816:171858 +k1,15414:17298492,16781816:171859 +k1,15414:18602812,16781816:171858 +k1,15414:20249886,16781816:171859 +k1,15414:21073172,16781816:171858 +k1,15414:21992797,16781816:171859 +k1,15414:25317592,16781816:171858 +k1,15414:27191421,16781816:171859 +k1,15414:27976041,16781816:171858 +k1,15414:28503760,16781816:171859 +k1,15414:30129207,16781816:171858 +k1,15414:31900144,16781816:171859 +k1,15414:32583029,16781816:0 +) +(1,15415:6630773,17623304:25952256,513147,126483 +k1,15414:7198096,17623304:211463 +k1,15414:9254397,17623304:211463 +k1,15414:10125151,17623304:211462 +k1,15414:11944212,17623304:211463 +k1,15414:13685941,17623304:211463 +k1,15414:14548832,17623304:211463 +k1,15414:15508061,17623304:211463 +k1,15414:18760394,17623304:211462 +k1,15414:20365808,17623304:211463 +k1,15414:23858003,17623304:211463 +k1,15414:26423519,17623304:211463 +k1,15414:27093079,17623304:211463 +k1,15414:27836038,17623304:211462 +k1,15414:29382469,17623304:211463 +k1,15414:30245360,17623304:211463 +k1,15414:32583029,17623304:0 +) +(1,15415:6630773,18464792:25952256,505283,126483 +g1,15414:7849087,18464792 +g1,15414:11538108,18464792 +g1,15414:12388765,18464792 +g1,15414:14660898,18464792 +g1,15414:15879212,18464792 +g1,15414:17355738,18464792 +g1,15414:18171005,18464792 +g1,15414:19389319,18464792 +k1,15415:32583029,18464792:11188964 +g1,15415:32583029,18464792 +) +(1,15417:6630773,19306280:25952256,513147,134348 +h1,15416:6630773,19306280:983040,0,0 +k1,15416:8511858,19306280:270210 +k1,15416:9370581,19306280:270210 +k1,15416:10954133,19306280:270210 +k1,15416:12215902,19306280:270209 +k1,15416:14836233,19306280:270210 +k1,15416:15867971,19306280:270210 +k1,15416:18710469,19306280:270210 +k1,15416:19632107,19306280:270210 +k1,15416:22664660,19306280:270210 +k1,15416:25446209,19306280:270209 +k1,15416:28243487,19306280:270210 +k1,15416:29045194,19306280:270210 +k1,15416:31931601,19306280:270210 +k1,15416:32583029,19306280:0 +) +(1,15417:6630773,20147768:25952256,505283,126483 +k1,15416:7222290,20147768:235657 +k1,15416:10368400,20147768:235656 +k1,15416:12181508,20147768:235656 +k1,15416:14424533,20147768:235657 +k1,15416:16153756,20147768:235657 +k1,15416:16745272,20147768:235656 +k1,15416:19454257,20147768:235656 +k1,15416:20305952,20147768:235657 +k1,15416:23139456,20147768:235657 +k1,15416:25092155,20147768:235656 +k1,15416:27665481,20147768:235657 +k1,15416:30521266,20147768:235656 +k1,15416:32583029,20147768:0 +) +(1,15417:6630773,20989256:25952256,513147,126483 +k1,15416:9228838,20989256:265639 +k1,15416:11526748,20989256:265639 +k1,15416:13279399,20989256:265639 +k1,15416:15965283,20989256:265639 +k1,15416:18602670,20989256:265639 +k1,15416:19677680,20989256:265640 +k1,15416:22350456,20989256:265639 +k1,15416:24448482,20989256:265639 +k1,15416:25705681,20989256:265639 +k1,15416:27438016,20989256:265639 +k1,15416:30041324,20989256:265639 +k1,15416:31591469,20989256:265639 +k1,15416:32583029,20989256:0 +) +(1,15417:6630773,21830744:25952256,513147,134348 +g1,15416:8151863,21830744 +g1,15416:9018248,21830744 +g1,15416:9632320,21830744 +g1,15416:11022994,21830744 +g1,15416:14449216,21830744 +g1,15416:16135457,21830744 +g1,15416:18716264,21830744 +g1,15416:19531531,21830744 +g1,15416:23460414,21830744 +k1,15417:32583029,21830744:6038491 +g1,15417:32583029,21830744 +) +(1,15419:6630773,22672232:25952256,513147,134348 +h1,15418:6630773,22672232:983040,0,0 +k1,15418:10604985,22672232:296987 +k1,15418:11257833,22672232:296988 +k1,15418:12537860,22672232:296987 +k1,15418:15442525,22672232:296987 +k1,15418:18307213,22672232:296987 +k1,15418:18960061,22672232:296988 +k1,15418:21438086,22672232:296987 +k1,15418:24307361,22672232:296987 +k1,15418:25795793,22672232:296987 +k1,15418:28346564,22672232:296988 +k1,15418:29662636,22672232:296987 +k1,15418:31966991,22672232:296987 +k1,15418:32583029,22672232:0 +) +(1,15419:6630773,23513720:25952256,513147,126483 +g1,15418:9943617,23513720 +g1,15418:10770681,23513720 +g1,15418:12571610,23513720 +g1,15418:14468221,23513720 +g1,15418:15686535,23513720 +g1,15418:16868804,23513720 +g1,15418:19625903,23513720 +g1,15418:21919007,23513720 +g1,15418:23611146,23513720 +g1,15418:24829460,23513720 +g1,15418:27036057,23513720 +g1,15418:27766783,23513720 +k1,15419:32583029,23513720:3031701 +g1,15419:32583029,23513720 +) +(1,15421:6630773,24355208:25952256,505283,134348 +h1,15420:6630773,24355208:983040,0,0 +k1,15420:8808975,24355208:153140 +k1,15420:11623531,24355208:153139 +k1,15420:13474709,24355208:153140 +k1,15420:16725080,24355208:153140 +k1,15420:17234079,24355208:153139 +k1,15420:18664516,24355208:153140 +k1,15420:19469084,24355208:153140 +k1,15420:21033869,24355208:153139 +k1,15420:25414081,24355208:153140 +k1,15420:28598915,24355208:153139 +k1,15420:30045034,24355208:153094 +k1,15420:30881059,24355208:153140 +k1,15420:32583029,24355208:0 +) +(1,15421:6630773,25196696:25952256,513147,134348 +k1,15420:8829842,25196696:221192 +k1,15420:11770122,25196696:221191 +k1,15420:14675669,25196696:221192 +k1,15420:18299490,25196696:221192 +k1,15420:20725968,25196696:221191 +k1,15420:21598588,25196696:221192 +(1,15420:21598588,25196696:0,452978,115847 +r1,15420:23363701,25196696:1765113,568825,115847 +k1,15420:21598588,25196696:-1765113 +) +(1,15420:21598588,25196696:1765113,452978,115847 +k1,15420:21598588,25196696:3277 +h1,15420:23360424,25196696:0,411205,112570 +) +k1,15420:23584892,25196696:221191 +k1,15420:24997529,25196696:221192 +(1,15420:24997529,25196696:0,452978,122846 +r1,15420:27114354,25196696:2116825,575824,122846 +k1,15420:24997529,25196696:-2116825 +) +(1,15420:24997529,25196696:2116825,452978,122846 +k1,15420:24997529,25196696:3277 +h1,15420:27111077,25196696:0,411205,112570 +) +k1,15420:27335546,25196696:221192 +k1,15420:28548297,25196696:221191 +k1,15420:31966991,25196696:221192 +k1,15420:32583029,25196696:0 +) +(1,15421:6630773,26038184:25952256,505283,7863 +k1,15421:32583029,26038184:23736484 +g1,15421:32583029,26038184 +) +v1,15423:6630773,27135970:0,393216,0 +(1,15431:6630773,30090613:25952256,3347859,196608 +g1,15431:6630773,30090613 +g1,15431:6630773,30090613 +g1,15431:6434165,30090613 +(1,15431:6434165,30090613:0,3347859,196608 +r1,15431:32779637,30090613:26345472,3544467,196608 +k1,15431:6434165,30090613:-26345472 +) +(1,15431:6434165,30090613:26345472,3347859,196608 +[1,15431:6630773,30090613:25952256,3151251,0 +(1,15425:6630773,27349880:25952256,410518,107478 +(1,15424:6630773,27349880:0,0,0 +g1,15424:6630773,27349880 +g1,15424:6630773,27349880 +g1,15424:6303093,27349880 +(1,15424:6303093,27349880:0,0,0 +) +g1,15424:6630773,27349880 +) +g1,15425:8211502,27349880 +g1,15425:9159940,27349880 +g1,15425:15482855,27349880 +g1,15425:16115147,27349880 +g1,15425:18328169,27349880 +g1,15425:20225044,27349880 +g1,15425:20857336,27349880 +g1,15425:22121919,27349880 +h1,15425:22438065,27349880:0,0,0 +k1,15425:32583029,27349880:10144964 +g1,15425:32583029,27349880 +) +(1,15426:6630773,28016058:25952256,410518,76021 +h1,15426:6630773,28016058:0,0,0 +g1,15426:6946919,28016058 +g1,15426:7263065,28016058 +g1,15426:12953688,28016058 +g1,15426:13585980,28016058 +h1,15426:15482854,28016058:0,0,0 +k1,15426:32583030,28016058:17100176 +g1,15426:32583030,28016058 +) +(1,15427:6630773,28682236:25952256,410518,107478 +h1,15427:6630773,28682236:0,0,0 +g1,15427:9476085,28682236 +g1,15427:10108377,28682236 +g1,15427:13902126,28682236 +g1,15427:15799000,28682236 +g1,15427:16431292,28682236 +g1,15427:17379730,28682236 +g1,15427:19592750,28682236 +g1,15427:20225042,28682236 +h1,15427:20857334,28682236:0,0,0 +k1,15427:32583029,28682236:11725695 +g1,15427:32583029,28682236 +) +(1,15428:6630773,29348414:25952256,410518,107478 +h1,15428:6630773,29348414:0,0,0 +k1,15428:6630773,29348414:0 +h1,15428:10108375,29348414:0,0,0 +k1,15428:32583029,29348414:22474654 +g1,15428:32583029,29348414 +) +(1,15429:6630773,30014592:25952256,410518,76021 +h1,15429:6630773,30014592:0,0,0 +k1,15429:6630773,30014592:0 +h1,15429:9476084,30014592:0,0,0 +k1,15429:32583028,30014592:23106944 +g1,15429:32583028,30014592 +) +] +) +g1,15431:32583029,30090613 +g1,15431:6630773,30090613 +g1,15431:6630773,30090613 +g1,15431:32583029,30090613 +g1,15431:32583029,30090613 +) +h1,15431:6630773,30287221:0,0,0 +(1,15435:6630773,31560317:25952256,505283,126483 +h1,15434:6630773,31560317:983040,0,0 +k1,15434:8864398,31560317:208563 +k1,15434:13300033,31560317:208563 +k1,15434:16696924,31560317:208564 +k1,15434:18096932,31560317:208563 +k1,15434:19598511,31560317:208554 +k1,15434:22139500,31560317:208563 +k1,15434:23216415,31560317:208563 +k1,15434:24800579,31560317:208563 +k1,15434:26539409,31560317:208564 +k1,15434:27399400,31560317:208563 +k1,15434:30817916,31560317:208563 +(1,15434:30817916,31560317:0,459977,115847 +r1,15434:32583029,31560317:1765113,575824,115847 +k1,15434:30817916,31560317:-1765113 +) +(1,15434:30817916,31560317:1765113,459977,115847 +k1,15434:30817916,31560317:3277 +h1,15434:32579752,31560317:0,411205,112570 +) +k1,15434:32583029,31560317:0 +) +(1,15435:6630773,32401805:25952256,505283,126483 +g1,15434:8223953,32401805 +(1,15434:8223953,32401805:0,452978,115847 +r1,15434:12451049,32401805:4227096,568825,115847 +k1,15434:8223953,32401805:-4227096 +) +(1,15434:8223953,32401805:4227096,452978,115847 +k1,15434:8223953,32401805:3277 +h1,15434:12447772,32401805:0,411205,112570 +) +g1,15434:12650278,32401805 +g1,15434:13532392,32401805 +(1,15434:13532392,32401805:0,452978,122846 +r1,15434:15297505,32401805:1765113,575824,122846 +k1,15434:13532392,32401805:-1765113 +) +(1,15434:13532392,32401805:1765113,452978,122846 +k1,15434:13532392,32401805:3277 +h1,15434:15294228,32401805:0,411205,112570 +) +g1,15434:15670404,32401805 +k1,15435:32583029,32401805:12942454 +g1,15435:32583029,32401805 +) +v1,15437:6630773,33499590:0,393216,0 +(1,15443:6630773,35121877:25952256,2015503,196608 +g1,15443:6630773,35121877 +g1,15443:6630773,35121877 +g1,15443:6434165,35121877 +(1,15443:6434165,35121877:0,2015503,196608 +r1,15443:32779637,35121877:26345472,2212111,196608 +k1,15443:6434165,35121877:-26345472 +) +(1,15443:6434165,35121877:26345472,2015503,196608 +[1,15443:6630773,35121877:25952256,1818895,0 +(1,15439:6630773,33713500:25952256,410518,107478 +(1,15438:6630773,33713500:0,0,0 +g1,15438:6630773,33713500 +g1,15438:6630773,33713500 +g1,15438:6303093,33713500 +(1,15438:6303093,33713500:0,0,0 +) +g1,15438:6630773,33713500 +) +k1,15439:6630773,33713500:0 +g1,15439:11689105,33713500 +g1,15439:12321397,33713500 +g1,15439:16115146,33713500 +g1,15439:18012020,33713500 +g1,15439:18644312,33713500 +g1,15439:19592750,33713500 +g1,15439:21805770,33713500 +g1,15439:22438062,33713500 +h1,15439:23070354,33713500:0,0,0 +k1,15439:32583029,33713500:9512675 +g1,15439:32583029,33713500 +) +(1,15440:6630773,34379678:25952256,410518,107478 +h1,15440:6630773,34379678:0,0,0 +k1,15440:6630773,34379678:0 +h1,15440:10108375,34379678:0,0,0 +k1,15440:32583029,34379678:22474654 +g1,15440:32583029,34379678 +) +(1,15441:6630773,35045856:25952256,410518,76021 +h1,15441:6630773,35045856:0,0,0 +k1,15441:6630773,35045856:0 +h1,15441:9476084,35045856:0,0,0 +k1,15441:32583028,35045856:23106944 +g1,15441:32583028,35045856 +) +] +) +g1,15443:32583029,35121877 +g1,15443:6630773,35121877 +g1,15443:6630773,35121877 +g1,15443:32583029,35121877 +g1,15443:32583029,35121877 +) +h1,15443:6630773,35318485:0,0,0 +(1,15447:6630773,36591581:25952256,513147,134348 +h1,15446:6630773,36591581:983040,0,0 +k1,15446:8387363,36591581:145715 +k1,15446:9552164,36591581:145716 +k1,15446:11064960,36591581:145715 +k1,15446:11869967,36591581:145715 +k1,15446:14734772,36591581:145716 +k1,15446:17218156,36591581:145715 +k1,15446:18311523,36591581:145716 +k1,15446:19440278,36591581:145715 +k1,15446:21744749,36591581:145715 +k1,15446:22506503,36591581:145716 +k1,15446:24164134,36591581:145715 +k1,15446:25986260,36591581:145715 +k1,15446:27479342,36591581:145662 +k1,15446:28816503,36591581:145716 +k1,15446:30327935,36591581:145662 +k1,15446:32583029,36591581:0 +) +(1,15447:6630773,37433069:25952256,513147,134348 +g1,15446:9514357,37433069 +g1,15446:13116215,37433069 +g1,15446:15520731,37433069 +g1,15446:16371388,37433069 +(1,15446:16371388,37433069:0,452978,115847 +r1,15446:18136501,37433069:1765113,568825,115847 +k1,15446:16371388,37433069:-1765113 +) +(1,15446:16371388,37433069:1765113,452978,115847 +k1,15446:16371388,37433069:3277 +h1,15446:18133224,37433069:0,411205,112570 +) +g1,15446:18335730,37433069 +g1,15446:19726404,37433069 +(1,15446:19726404,37433069:0,452978,122846 +r1,15446:21843229,37433069:2116825,575824,122846 +k1,15446:19726404,37433069:-2116825 +) +(1,15446:19726404,37433069:2116825,452978,122846 +k1,15446:19726404,37433069:3277 +h1,15446:21839952,37433069:0,411205,112570 +) +g1,15446:22042458,37433069 +g1,15446:23233247,37433069 +g1,15446:26629978,37433069 +g1,15446:27445245,37433069 +k1,15447:32583029,37433069:3094371 +g1,15447:32583029,37433069 +) +v1,15449:6630773,38530855:0,393216,0 +(1,15455:6630773,40153142:25952256,2015503,196608 +g1,15455:6630773,40153142 +g1,15455:6630773,40153142 +g1,15455:6434165,40153142 +(1,15455:6434165,40153142:0,2015503,196608 +r1,15455:32779637,40153142:26345472,2212111,196608 +k1,15455:6434165,40153142:-26345472 +) +(1,15455:6434165,40153142:26345472,2015503,196608 +[1,15455:6630773,40153142:25952256,1818895,0 +(1,15451:6630773,38744765:25952256,410518,107478 +(1,15450:6630773,38744765:0,0,0 +g1,15450:6630773,38744765 +g1,15450:6630773,38744765 +g1,15450:6303093,38744765 +(1,15450:6303093,38744765:0,0,0 +) +g1,15450:6630773,38744765 +) +k1,15451:6630773,38744765:0 +g1,15451:9792231,38744765 +g1,15451:10424523,38744765 +g1,15451:14534417,38744765 +g1,15451:16431291,38744765 +g1,15451:17063583,38744765 +g1,15451:18960458,38744765 +g1,15451:21173478,38744765 +g1,15451:21805770,38744765 +h1,15451:23070353,38744765:0,0,0 +k1,15451:32583029,38744765:9512676 +g1,15451:32583029,38744765 +) +(1,15452:6630773,39410943:25952256,410518,107478 +h1,15452:6630773,39410943:0,0,0 +k1,15452:6630773,39410943:0 +h1,15452:10108375,39410943:0,0,0 +k1,15452:32583029,39410943:22474654 +g1,15452:32583029,39410943 +) +(1,15453:6630773,40077121:25952256,410518,76021 +h1,15453:6630773,40077121:0,0,0 +k1,15453:6630773,40077121:0 +h1,15453:9476084,40077121:0,0,0 +k1,15453:32583028,40077121:23106944 +g1,15453:32583028,40077121 +) +] +) +g1,15455:32583029,40153142 +g1,15455:6630773,40153142 +g1,15455:6630773,40153142 +g1,15455:32583029,40153142 +g1,15455:32583029,40153142 +) +h1,15455:6630773,40349750:0,0,0 +v1,15461:6630773,42054453:0,393216,0 +(1,15462:6630773,45116945:25952256,3455708,589824 +g1,15462:6630773,45116945 +(1,15462:6630773,45116945:25952256,3455708,589824 +(1,15462:6630773,45706769:25952256,4045532,0 +[1,15462:6630773,45706769:25952256,4045532,0 +(1,15462:6630773,45706769:25952256,4019318,0 +r1,15462:6656987,45706769:26214,4019318,0 +[1,15462:6656987,45706769:25899828,4019318,0 +(1,15462:6656987,45116945:25899828,2839670,0 +[1,15462:7246811,45116945:24720180,2839670,0 +(1,15462:7246811,43299621:24720180,1022346,134348 +k1,15461:8706482,43299621:204158 +k1,15461:10627683,43299621:204158 +k1,15461:13550929,43299621:204157 +k1,15461:16092756,43299621:204158 +k1,15461:17288474,43299621:204158 +k1,15461:18814493,43299621:204158 +k1,15461:19677942,43299621:204157 +k1,15461:22117533,43299621:204158 +k1,15461:23513136,43299621:204158 +k1,15461:25749565,43299621:204158 +k1,15461:26945282,43299621:204157 +k1,15461:31350953,43299621:204158 +k1,15461:31966991,43299621:0 +) +(1,15462:7246811,44141109:24720180,505283,134348 +k1,15461:11207807,44141109:231342 +k1,15461:14523273,44141109:231342 +k1,15461:15382450,44141109:231342 +k1,15461:17305932,44141109:231342 +k1,15461:19408328,44141109:231343 +k1,15461:21294454,44141109:231342 +k1,15461:22517356,44141109:231342 +k1,15461:25419945,44141109:231342 +k1,15461:28040074,44141109:231342 +k1,15461:30278784,44141109:231342 +k1,15462:31966991,44141109:0 +) +(1,15462:7246811,44982597:24720180,513147,134348 +k1,15461:8809899,44982597:254334 +k1,15461:10011885,44982597:254335 +k1,15461:13363450,44982597:254334 +k1,15461:16336873,44982597:254334 +k1,15461:17207246,44982597:254335 +k1,15461:17817440,44982597:254334 +k1,15461:19766535,44982597:254334 +k1,15461:21003910,44982597:254335 +k1,15461:23612297,44982597:254334 +k1,15461:25740961,44982597:254334 +k1,15461:28332965,44982597:254335 +k1,15461:30874506,44982597:254334 +k1,15461:31966991,44982597:0 +) +] +) +] +r1,15462:32583029,45706769:26214,4019318,0 +) +] +) +) +g1,15462:32583029,45116945 +) +] +(1,15462:32583029,45706769:0,0,0 +g1,15462:32583029,45706769 +) +) +] +(1,15462:6630773,47279633:25952256,0,0 +h1,15462:6630773,47279633:25952256,0,0 +) +] +h1,15462:4262630,4025873:0,0,0 +] +!23709 +}300 +!12 +{301 +[1,15476:4262630,47279633:28320399,43253760,0 +(1,15476:4262630,4025873:0,0,0 +[1,15476:-473657,4025873:25952256,0,0 +(1,15476:-473657,-710414:25952256,0,0 +h1,15476:-473657,-710414:0,0,0 +(1,15476:-473657,-710414:0,0,0 +(1,15476:-473657,-710414:0,0,0 +g1,15476:-473657,-710414 +(1,15476:-473657,-710414:65781,0,65781 +g1,15476:-407876,-710414 +[1,15476:-407876,-644633:0,0,0 ] ) +k1,15476:-473657,-710414:-65781 ) ) -] -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,2439708:0,1703936,0 -g1,15445:29030814,2439708 -g1,15445:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15445:36151628,1915420:16384,1179648,0 -) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:25478599,-710414:25952256 +g1,15476:25478599,-710414 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15445:37855564,2439708:1179648,16384,0 -) -) -k1,15445:3078556,2439708:-34777008 -) -] -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,49800853:0,16384,2228224 -k1,15445:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15445:2537886,49800853:1179648,16384,0 +[1,15476:6630773,47279633:25952256,43253760,0 +[1,15476:6630773,4812305:25952256,786432,0 +(1,15476:6630773,4812305:25952256,513147,134348 +(1,15476:6630773,4812305:25952256,513147,134348 +g1,15476:3078558,4812305 +[1,15476:3078558,4812305:0,0,0 +(1,15476:3078558,2439708:0,1703936,0 +k1,15476:1358238,2439708:-1720320 +(1,11321:1358238,2439708:1720320,1703936,0 +(1,11321:1358238,2439708:1179648,16384,0 +r1,15476:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15445:3078558,51504789:16384,1179648,0 +g1,11321:3062174,2439708 +(1,11321:3062174,2439708:16384,1703936,0 +[1,11321:3062174,2439708:25952256,1703936,0 +(1,11321:3062174,1915420:25952256,1179648,0 +(1,11321:3062174,1915420:16384,1179648,0 +r1,15476:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,11321:29014430,1915420:25935872 +g1,11321:29014430,1915420 ) ] ) ) ) ] -[1,15445:3078558,4812305:0,0,0 -(1,15445:3078558,49800853:0,16384,2228224 -g1,15445:29030814,49800853 -g1,15445:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15445:36151628,51504789:16384,1179648,0 +[1,15476:3078558,4812305:0,0,0 +(1,15476:3078558,2439708:0,1703936,0 +g1,15476:29030814,2439708 +g1,15476:36135244,2439708 +(1,11321:36135244,2439708:1720320,1703936,0 +(1,11321:36135244,2439708:16384,1703936,0 +[1,11321:36135244,2439708:25952256,1703936,0 +(1,11321:36135244,1915420:25952256,1179648,0 +(1,11321:36135244,1915420:16384,1179648,0 +r1,15476:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,11321:62087500,1915420:25935872 +g1,11321:62087500,1915420 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15445:37855564,49800853:1179648,16384,0 +g1,11321:36675916,2439708 +(1,11321:36675916,2439708:1179648,16384,0 +r1,15476:37855564,2439708:1179648,16384,0 ) ) -k1,15445:3078556,49800853:-34777008 +k1,15476:3078556,2439708:-34777008 ) ] -g1,15445:6630773,4812305 +[1,15476:3078558,4812305:0,0,0 +(1,15476:3078558,49800853:0,16384,2228224 +k1,15476:1358238,49800853:-1720320 +(1,11321:1358238,49800853:1720320,16384,2228224 +(1,11321:1358238,49800853:1179648,16384,0 +r1,15476:2537886,49800853:1179648,16384,0 ) +g1,11321:3062174,49800853 +(1,11321:3062174,52029077:16384,1703936,0 +[1,11321:3062174,52029077:25952256,1703936,0 +(1,11321:3062174,51504789:25952256,1179648,0 +(1,11321:3062174,51504789:16384,1179648,0 +r1,15476:3078558,51504789:16384,1179648,0 ) -] -[1,15445:6630773,45706769:0,40108032,0 -(1,15445:6630773,45706769:0,40108032,0 -(1,15445:6630773,45706769:0,0,0 -g1,15445:6630773,45706769 -) -[1,15445:6630773,45706769:0,40108032,0 -h1,15445:6630773,6254097:0,0,0 -] -(1,15445:6630773,45706769:0,0,0 -g1,15445:6630773,45706769 -) +k1,11321:29014430,51504789:25935872 +g1,11321:29014430,51504789 +) +] +) +) +) +] +[1,15476:3078558,4812305:0,0,0 +(1,15476:3078558,49800853:0,16384,2228224 +g1,15476:29030814,49800853 +g1,15476:36135244,49800853 +(1,11321:36135244,49800853:1720320,16384,2228224 +(1,11321:36135244,52029077:16384,1703936,0 +[1,11321:36135244,52029077:25952256,1703936,0 +(1,11321:36135244,51504789:25952256,1179648,0 +(1,11321:36135244,51504789:16384,1179648,0 +r1,15476:36151628,51504789:16384,1179648,0 +) +k1,11321:62087500,51504789:25935872 +g1,11321:62087500,51504789 +) +] +) +g1,11321:36675916,49800853 +(1,11321:36675916,49800853:1179648,16384,0 +r1,15476:37855564,49800853:1179648,16384,0 +) +) +k1,15476:3078556,49800853:-34777008 +) +] +g1,15476:6630773,4812305 +k1,15476:25712890,4812305:17886740 +g1,15476:29057847,4812305 +g1,15476:29873114,4812305 +) +) +] +[1,15476:6630773,45706769:25952256,40108032,0 +(1,15476:6630773,45706769:25952256,40108032,0 +(1,15476:6630773,45706769:0,0,0 +g1,15476:6630773,45706769 ) -] -(1,15445:6630773,47279633:25952256,0,0 -h1,15445:6630773,47279633:25952256,0,0 -) -] -h1,15445:4262630,4025873:0,0,0 -] -!3420 +[1,15476:6630773,45706769:25952256,40108032,0 +v1,15462:6630773,6254097:0,393216,0 +(1,15462:6630773,10464152:25952256,4603271,616038 +g1,15462:6630773,10464152 +(1,15462:6630773,10464152:25952256,4603271,616038 +(1,15462:6630773,11080190:25952256,5219309,0 +[1,15462:6630773,11080190:25952256,5219309,0 +(1,15462:6630773,11053976:25952256,5193095,0 +r1,15462:6656987,11053976:26214,5193095,0 +[1,15462:6656987,11053976:25899828,5193095,0 +(1,15462:6656987,10464152:25899828,4013447,0 +[1,15462:7246811,10464152:24720180,4013447,0 +(1,15462:7246811,6963852:24720180,513147,134348 +k1,15461:10163426,6963852:154272 +k1,15461:13109531,6963852:154271 +k1,15461:13946688,6963852:154272 +k1,15461:15576174,6963852:154271 +k1,15461:17240396,6963852:154272 +k1,15461:20251382,6963852:154272 +k1,15461:21799604,6963852:154271 +k1,15461:24716219,6963852:154272 +k1,15461:26551488,6963852:154271 +k1,15461:28580090,6963852:154272 +k1,15461:31966991,6963852:0 +) +(1,15462:7246811,7805340:24720180,513147,134348 +k1,15461:9801166,7805340:165568 +k1,15461:12304402,7805340:165567 +k1,15461:13574252,7805340:165568 +k1,15461:15025636,7805340:165568 +k1,15461:16934462,7805340:165568 +k1,15461:17716067,7805340:165567 +k1,15461:19390274,7805340:165568 +k1,15461:22251338,7805340:165568 +k1,15461:25574431,7805340:165568 +k1,15461:26809546,7805340:165567 +k1,15461:28450329,7805340:165568 +k1,15461:31966991,7805340:0 +) +(1,15462:7246811,8646828:24720180,513147,134348 +k1,15461:8050937,8646828:188088 +k1,15461:9258111,8646828:188089 +k1,15461:13057233,8646828:188088 +k1,15461:14436766,8646828:188088 +k1,15461:16133493,8646828:188088 +k1,15461:18563569,8646828:188089 +k1,15461:19379492,8646828:188088 +k1,15461:21264962,8646828:188088 +k1,15461:23151088,8646828:188088 +k1,15461:26436408,8646828:188089 +k1,15461:27981747,8646828:188088 +k1,15461:31966991,8646828:0 +) +(1,15462:7246811,9488316:24720180,513147,134348 +k1,15461:7929930,9488316:225022 +k1,15461:9259235,9488316:225023 +k1,15461:10232023,9488316:225022 +k1,15461:14022204,9488316:225022 +k1,15461:14898655,9488316:225023 +k1,15461:17181507,9488316:225022 +k1,15461:18057958,9488316:225023 +k1,15461:19053683,9488316:225022 +k1,15461:22665606,9488316:225022 +k1,15461:25609718,9488316:225023 +k1,15461:27842108,9488316:225022 +k1,15461:28718558,9488316:225022 +k1,15461:30209737,9488316:225023 +k1,15461:31501030,9488316:225022 +k1,15461:31966991,9488316:0 +) +(1,15462:7246811,10329804:24720180,505283,134348 +g1,15461:8465125,10329804 +g1,15461:11340844,10329804 +g1,15461:12071570,10329804 +g1,15461:12886837,10329804 +g1,15461:14105151,10329804 +g1,15461:15581677,10329804 +g1,15461:16463791,10329804 +g1,15461:17279058,10329804 +g1,15461:18497372,10329804 +g1,15461:21793832,10329804 +k1,15462:31966991,10329804:7899715 +g1,15462:31966991,10329804 +) +] +) +] +r1,15462:32583029,11053976:26214,5193095,0 +) +] +) +) +g1,15462:32583029,10464152 +) +h1,15462:6630773,11080190:0,0,0 +(1,15464:6630773,13887758:25952256,32768,229376 +(1,15464:6630773,13887758:0,32768,229376 +(1,15464:6630773,13887758:5505024,32768,229376 +r1,15464:12135797,13887758:5505024,262144,229376 +) +k1,15464:6630773,13887758:-5505024 +) +(1,15464:6630773,13887758:25952256,32768,0 +r1,15464:32583029,13887758:25952256,32768,0 +) +) +(1,15464:6630773,15492086:25952256,606339,161218 +(1,15464:6630773,15492086:2464678,582746,14155 +g1,15464:6630773,15492086 +g1,15464:9095451,15492086 +) +g1,15464:12303307,15492086 +k1,15464:32583029,15492086:17283416 +g1,15464:32583029,15492086 +) +(1,15466:6630773,16726790:25952256,513147,134348 +k1,15465:7823946,16726790:290742 +k1,15465:10804285,16726790:290741 +k1,15465:14466854,16726790:290742 +k1,15465:15416887,16726790:290741 +k1,15465:16726714,16726790:290742 +k1,15465:18769232,16726790:290741 +k1,15465:22462603,16726790:290742 +k1,15465:23404772,16726790:290741 +k1,15465:26275666,16726790:290742 +k1,15465:29394941,16726790:290742 +k1,15465:30217179,16726790:290741 +k1,15465:32583029,16726790:0 +) +(1,15466:6630773,17568278:25952256,513147,134348 +k1,15465:7845296,17568278:195438 +k1,15465:9867221,17568278:195437 +k1,15465:10721951,17568278:195438 +k1,15465:12120630,17568278:195438 +k1,15465:14071778,17568278:195438 +k1,15465:16523620,17568278:195437 +k1,15465:18631399,17568278:195438 +k1,15465:21496118,17568278:195438 +k1,15465:22307593,17568278:195437 +k1,15465:24290198,17568278:195438 +k1,15465:25504721,17568278:195438 +k1,15465:26792644,17568278:195438 +k1,15465:27647373,17568278:195437 +k1,15465:30845014,17568278:195438 +k1,15465:32583029,17568278:0 +) +(1,15466:6630773,18409766:25952256,513147,134348 +(1,15465:6630773,18409766:4681892,505283,11795 +) +k1,15465:11474658,18409766:161993 +(1,15465:11681752,18409766:4681892,505283,11795 +) +k1,15465:16732731,18409766:161993 +k1,15465:17913809,18409766:161993 +k1,15465:19232512,18409766:161993 +k1,15465:21681056,18409766:161993 +k1,15465:22604576,18409766:161992 +k1,15465:23785654,18409766:161993 +k1,15465:25539517,18409766:161993 +k1,15465:27826843,18409766:161993 +k1,15465:28648128,18409766:161993 +k1,15465:29829206,18409766:161993 +k1,15465:32583029,18409766:0 +) +(1,15466:6630773,19251254:25952256,505283,134348 +k1,15465:7891626,19251254:218831 +k1,15465:11590418,19251254:218830 +k1,15465:12492134,19251254:218831 +k1,15465:15075503,19251254:218830 +k1,15465:16360605,19251254:218831 +k1,15465:19744824,19251254:218830 +k1,15465:20982740,19251254:218831 +k1,15465:22783609,19251254:218830 +(1,15465:22783609,19251254:3713270,505283,134348 +) +k1,15465:26715710,19251254:218831 +(1,15465:26922804,19251254:3713270,505283,134348 +) +k1,15465:31061998,19251254:218830 +k1,15465:31812326,19251254:218831 +k1,15465:32583029,19251254:0 +) +(1,15466:6630773,20092742:25952256,513147,134348 +k1,15465:9699590,20092742:246181 +k1,15465:13098708,20092742:246181 +k1,15465:13972725,20092742:246182 +k1,15465:16079473,20092742:246181 +k1,15465:20388231,20092742:246181 +k1,15465:21293704,20092742:246181 +k1,15465:22558970,20092742:246181 +k1,15465:25668420,20092742:246182 +k1,15465:28289626,20092742:246181 +k1,15465:29202963,20092742:246181 +k1,15465:29863940,20092742:246134 +k1,15465:32583029,20092742:0 +) +(1,15466:6630773,20934230:25952256,505283,95026 +g1,15465:7821562,20934230 +g1,15465:10804760,20934230 +g1,15465:11620027,20934230 +g1,15465:12838341,20934230 +g1,15465:14619609,20934230 +(1,15465:14619609,20934230:4054057,505283,11795 +) +g1,15465:18872895,20934230 +(1,15465:19079989,20934230:4054057,505283,11795 +) +k1,15466:32583029,20934230:9068219 +g1,15466:32583029,20934230 +) +] +(1,15476:32583029,45706769:0,0,0 +g1,15476:32583029,45706769 +) +) +] +(1,15476:6630773,47279633:25952256,0,0 +h1,15476:6630773,47279633:25952256,0,0 +) +] +h1,15476:4262630,4025873:0,0,0 +] +!9816 }301 -Input:2350:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2351:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2352:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2353:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!355 +Input:2347:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2348:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2349:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2350:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!379 {302 -[1,15466:4262630,47279633:28320399,43253760,11795 -(1,15466:4262630,4025873:0,0,0 -[1,15466:-473657,4025873:25952256,0,0 -(1,15466:-473657,-710414:25952256,0,0 -h1,15466:-473657,-710414:0,0,0 -(1,15466:-473657,-710414:0,0,0 -(1,15466:-473657,-710414:0,0,0 -g1,15466:-473657,-710414 -(1,15466:-473657,-710414:65781,0,65781 -g1,15466:-407876,-710414 -[1,15466:-407876,-644633:0,0,0 +[1,15497:4262630,47279633:28320399,43253760,11795 +(1,15497:4262630,4025873:0,0,0 +[1,15497:-473657,4025873:25952256,0,0 +(1,15497:-473657,-710414:25952256,0,0 +h1,15497:-473657,-710414:0,0,0 +(1,15497:-473657,-710414:0,0,0 +(1,15497:-473657,-710414:0,0,0 +g1,15497:-473657,-710414 +(1,15497:-473657,-710414:65781,0,65781 +g1,15497:-407876,-710414 +[1,15497:-407876,-644633:0,0,0 ] ) -k1,15466:-473657,-710414:-65781 +k1,15497:-473657,-710414:-65781 ) ) -k1,15466:25478599,-710414:25952256 -g1,15466:25478599,-710414 +k1,15497:25478599,-710414:25952256 +g1,15497:25478599,-710414 ) ] ) -[1,15466:6630773,47279633:25952256,43253760,11795 -[1,15466:6630773,4812305:25952256,786432,0 -(1,15466:6630773,4812305:25952256,0,0 -(1,15466:6630773,4812305:25952256,0,0 -g1,15466:3078558,4812305 -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,2439708:0,1703936,0 -k1,15466:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15466:2537886,2439708:1179648,16384,0 +[1,15497:6630773,47279633:25952256,43253760,11795 +[1,15497:6630773,4812305:25952256,786432,0 +(1,15497:6630773,4812305:25952256,0,0 +(1,15497:6630773,4812305:25952256,0,0 +g1,15497:3078558,4812305 +[1,15497:3078558,4812305:0,0,0 +(1,15497:3078558,2439708:0,1703936,0 +k1,15497:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15497:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15466:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15497:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,2439708:0,1703936,0 -g1,15466:29030814,2439708 -g1,15466:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15466:36151628,1915420:16384,1179648,0 +[1,15497:3078558,4812305:0,0,0 +(1,15497:3078558,2439708:0,1703936,0 +g1,15497:29030814,2439708 +g1,15497:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15497:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15466:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15497:37855564,2439708:1179648,16384,0 ) ) -k1,15466:3078556,2439708:-34777008 +k1,15497:3078556,2439708:-34777008 ) ] -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,49800853:0,16384,2228224 -k1,15466:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15466:2537886,49800853:1179648,16384,0 +[1,15497:3078558,4812305:0,0,0 +(1,15497:3078558,49800853:0,16384,2228224 +k1,15497:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15497:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15466:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15497:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,15466:3078558,4812305:0,0,0 -(1,15466:3078558,49800853:0,16384,2228224 -g1,15466:29030814,49800853 -g1,15466:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15466:36151628,51504789:16384,1179648,0 +[1,15497:3078558,4812305:0,0,0 +(1,15497:3078558,49800853:0,16384,2228224 +g1,15497:29030814,49800853 +g1,15497:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15497:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15466:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15497:37855564,49800853:1179648,16384,0 ) ) -k1,15466:3078556,49800853:-34777008 +k1,15497:3078556,49800853:-34777008 ) ] -g1,15466:6630773,4812305 +g1,15497:6630773,4812305 ) ) ] -[1,15466:6630773,45706769:25952256,40108032,0 -(1,15466:6630773,45706769:25952256,40108032,0 -(1,15466:6630773,45706769:0,0,0 -g1,15466:6630773,45706769 +[1,15497:6630773,45706769:25952256,40108032,0 +(1,15497:6630773,45706769:25952256,40108032,0 +(1,15497:6630773,45706769:0,0,0 +g1,15497:6630773,45706769 ) -[1,15466:6630773,45706769:25952256,40108032,0 -[1,15445:6630773,11663733:25952256,6064996,0 -(1,15445:6630773,6633157:25952256,1165492,28311 -h1,15445:6630773,6633157:0,0,0 -k1,15445:20096848,6633157:12486181 -k1,15445:32583029,6633157:12486181 +[1,15497:6630773,45706769:25952256,40108032,0 +[1,15476:6630773,11663733:25952256,6064996,0 +(1,15476:6630773,6633157:25952256,1165492,28311 +h1,15476:6630773,6633157:0,0,0 +k1,15476:20096848,6633157:12486181 +k1,15476:32583029,6633157:12486181 ) -(1,15445:6630773,7333093:25952256,32768,229376 -(1,15445:6630773,7333093:0,32768,229376 -(1,15445:6630773,7333093:5505024,32768,229376 -r1,15445:12135797,7333093:5505024,262144,229376 +(1,15476:6630773,7333093:25952256,32768,229376 +(1,15476:6630773,7333093:0,32768,229376 +(1,15476:6630773,7333093:5505024,32768,229376 +r1,15476:12135797,7333093:5505024,262144,229376 ) -k1,15445:6630773,7333093:-5505024 +k1,15476:6630773,7333093:-5505024 ) -(1,15445:6630773,7333093:25952256,32768,0 -r1,15445:32583029,7333093:25952256,32768,0 +(1,15476:6630773,7333093:25952256,32768,0 +r1,15476:32583029,7333093:25952256,32768,0 ) ) -(1,15445:6630773,9128789:25952256,909509,227671 -h1,15445:6630773,9128789:0,0,0 -g1,15445:9750942,9128789 -g1,15445:13915100,9128789 -g1,15445:16452523,9128789 -k1,15445:26299635,9128789:6283395 -k1,15445:32583029,9128789:6283394 +(1,15476:6630773,9128789:25952256,909509,227671 +h1,15476:6630773,9128789:0,0,0 +g1,15476:9750942,9128789 +g1,15476:13915100,9128789 +g1,15476:16452523,9128789 +k1,15476:26299635,9128789:6283395 +k1,15476:32583029,9128789:6283394 ) -(1,15445:6630773,9828725:25952256,32768,0 -(1,15445:6630773,9828725:5505024,32768,0 -r1,15445:12135797,9828725:5505024,32768,0 +(1,15476:6630773,9828725:25952256,32768,0 +(1,15476:6630773,9828725:5505024,32768,0 +r1,15476:12135797,9828725:5505024,32768,0 ) -k1,15445:22359413,9828725:10223616 -k1,15445:32583029,9828725:10223616 -) -] -(1,15447:6630773,14556498:25952256,131072,0 -r1,15447:32583029,14556498:25952256,131072,0 -g1,15447:32583029,14556498 -g1,15447:32583029,14556498 -) -(1,15449:6630773,15876399:25952256,505283,134348 -k1,15449:8596853,15876399:1966080 -k1,15448:10309891,15876399:167699 -k1,15448:14805588,15876399:167699 -k1,15448:16448502,15876399:167699 -k1,15448:18056027,15876399:167699 -k1,15448:20036453,15876399:167700 -k1,15448:21395597,15876399:167699 -k1,15448:23164996,15876399:167699 -k1,15448:24916700,15876399:167699 -k1,15448:29412397,15876399:167699 -k1,15449:32583029,15876399:1966080 -) -(1,15449:6630773,16717887:25952256,505283,134348 -k1,15449:8596853,16717887:1966080 -k1,15448:9924850,16717887:184394 -k1,15448:12367615,16717887:184394 -k1,15448:14838561,16717887:184395 -k1,15448:15635717,16717887:184394 -k1,15448:17315643,16717887:184394 -k1,15448:18830418,16717887:184394 -k1,15448:20572603,16717887:184394 -k1,15448:21748557,16717887:184394 -k1,15448:23657860,16717887:184395 -k1,15448:26004942,16717887:184394 -k1,15448:27544621,16717887:184394 -k1,15448:32583029,16717887:1966080 -) -(1,15449:6630773,17559375:25952256,513147,134348 -g1,15449:8596853,17559375 -g1,15448:10080588,17559375 -g1,15448:12460200,17559375 -g1,15448:14134644,17559375 -g1,15448:15843823,17559375 -g1,15448:17901653,17559375 -g1,15448:19931303,17559375 -g1,15448:22991834,17559375 -k1,15449:30616949,17559375:4379117 -g1,15449:32583029,17559375 -) -(1,15450:6630773,19187295:25952256,505283,126483 -k1,15450:26585175,19187295:19954402 -h1,15450:26585175,19187295:0,0,0 -g1,15450:28285178,19187295 -g1,15450:30616949,19187295 -g1,15450:32583029,19187295 -) -(1,15451:6630773,20028783:25952256,505283,134348 -k1,15451:22157562,20028783:15526789 -h1,15450:22157562,20028783:0,0,0 -g1,15450:26747048,20028783 -g1,15450:29023113,20028783 -g1,15451:30616949,20028783 -g1,15451:32583029,20028783 -) -(1,15451:6630773,21263487:25952256,131072,0 -r1,15451:32583029,21263487:25952256,131072,0 -g1,15451:32583029,21263487 -g1,15451:34549109,21263487 -) -(1,15455:6630773,24071055:25952256,32768,229376 -(1,15455:6630773,24071055:0,32768,229376 -(1,15455:6630773,24071055:5505024,32768,229376 -r1,15455:12135797,24071055:5505024,262144,229376 -) -k1,15455:6630773,24071055:-5505024 -) -(1,15455:6630773,24071055:25952256,32768,0 -r1,15455:32583029,24071055:25952256,32768,0 -) -) -(1,15455:6630773,25675383:25952256,615776,151780 -(1,15455:6630773,25675383:1974731,582746,14155 -g1,15455:6630773,25675383 -g1,15455:8605504,25675383 -) -g1,15455:10904245,25675383 -g1,15455:11961996,25675383 -g1,15455:13695292,25675383 -k1,15455:32583029,25675383:15886712 -g1,15455:32583029,25675383 -) -(1,15458:6630773,26910087:25952256,513147,134348 -k1,15457:8207217,26910087:143827 -k1,15457:8765831,26910087:143771 -k1,15457:10101103,26910087:143827 -k1,15457:11264014,26910087:143826 -k1,15457:15962593,26910087:143827 -k1,15457:19016874,26910087:143827 -k1,15457:22105233,26910087:143826 -k1,15457:23010588,26910087:143827 -k1,15457:25627088,26910087:143827 -k1,15457:28108583,26910087:143826 -k1,15457:30483911,26910087:143827 -k1,15458:32583029,26910087:0 -) -(1,15458:6630773,27751575:25952256,513147,134348 -k1,15457:7940968,27751575:170524 -k1,15457:9059144,27751575:170525 -k1,15457:12401611,27751575:170524 -k1,15457:13763580,27751575:170524 -k1,15457:16997257,27751575:170524 -k1,15457:18730816,27751575:170525 -k1,15457:22752891,27751575:170524 -k1,15457:25833869,27751575:170524 -k1,15457:28434469,27751575:170525 -k1,15457:30071689,27751575:170524 -k1,15458:32583029,27751575:0 -) -(1,15458:6630773,28593063:25952256,513147,126483 -k1,15457:8780954,28593063:180824 -k1,15457:9909430,28593063:180825 -k1,15457:11782394,28593063:180824 -k1,15457:12622511,28593063:180825 -k1,15457:14500062,28593063:180824 -k1,15457:17706684,28593063:180825 -k1,15457:19078953,28593063:180824 -k1,15457:21786191,28593063:180825 -k1,15457:22914666,28593063:180824 -k1,15457:25326992,28593063:180825 -k1,15457:28734809,28593063:180824 -k1,15457:29898674,28593063:180825 -k1,15457:32583029,28593063:0 -) -(1,15458:6630773,29434551:25952256,505283,134348 -k1,15457:7455122,29434551:196514 -k1,15457:8670722,29434551:196515 -k1,15457:11273063,29434551:196514 -k1,15457:14060871,29434551:196514 -k1,15457:14470375,29434551:196512 -k1,15457:15843916,29434551:196514 -k1,15457:16653193,29434551:196515 -k1,15457:20161897,29434551:196514 -k1,15457:21825107,29434551:196514 -k1,15457:23410985,29434551:196515 -k1,15457:25316023,29434551:196514 -k1,15457:26703982,29434551:196514 -k1,15457:29059253,29434551:196515 -k1,15457:31966991,29434551:196514 -k1,15457:32583029,29434551:0 -) -(1,15458:6630773,30276039:25952256,513147,134348 -g1,15457:8617169,30276039 -g1,15457:10191999,30276039 -g1,15457:11410313,30276039 -g1,15457:13211242,30276039 -g1,15457:16187887,30276039 -g1,15457:19272666,30276039 -g1,15457:20861258,30276039 -g1,15457:23571171,30276039 -g1,15457:25721407,30276039 -g1,15457:26986907,30276039 -g1,15457:29119448,30276039 -g1,15457:29970105,30276039 -k1,15458:32583029,30276039:1817317 -g1,15458:32583029,30276039 -) -(1,15460:6630773,31117527:25952256,513147,134348 -h1,15459:6630773,31117527:983040,0,0 -k1,15459:9338491,31117527:252739 -k1,15459:10574269,31117527:252738 -k1,15459:13337692,31117527:252739 -k1,15459:14874936,31117527:252738 -k1,15459:16119235,31117527:252739 -k1,15459:18657213,31117527:252738 -k1,15459:19561380,31117527:252739 -k1,15459:20228908,31117527:252685 -k1,15459:21473206,31117527:252738 -k1,15459:22792216,31117527:252739 -k1,15459:25174219,31117527:252738 -k1,15459:26705565,31117527:252739 -k1,15459:29513552,31117527:252738 -k1,15459:32124932,31117527:252739 -k1,15459:32583029,31117527:0 -) -(1,15460:6630773,31959015:25952256,513147,134348 -k1,15459:9914126,31959015:174325 -k1,15459:10739880,31959015:174326 -k1,15459:16168882,31959015:174325 -k1,15459:17362293,31959015:174326 -k1,15459:20977913,31959015:174325 -k1,15459:23450587,31959015:174326 -k1,15459:24276340,31959015:174325 -k1,15459:25862967,31959015:174326 -k1,15459:27850018,31959015:174325 -k1,15459:29898674,31959015:174326 -k1,15459:32583029,31959015:0 -) -(1,15460:6630773,32800503:25952256,513147,134348 -k1,15459:8309100,32800503:211631 -k1,15459:10218769,32800503:211631 -k1,15459:12526896,32800503:211630 -k1,15459:15293776,32800503:211631 -k1,15459:16842341,32800503:211631 -k1,15459:17801738,32800503:211631 -k1,15459:20650537,32800503:211630 -k1,15459:21623696,32800503:211631 -k1,15459:22854412,32800503:211631 -k1,15459:26525033,32800503:211631 -k1,15459:27395955,32800503:211630 -k1,15459:28626671,32800503:211631 -k1,15459:31123542,32800503:211631 -k1,15460:32583029,32800503:0 -) -(1,15460:6630773,33641991:25952256,513147,134348 -k1,15459:8289817,33641991:146473 -k1,15459:9720795,33641991:146472 -k1,15459:11812377,33641991:146473 -k1,15459:12977934,33641991:146472 -k1,15459:14611419,33641991:146473 -k1,15459:19278565,33641991:146472 -k1,15459:22908277,33641991:146473 -k1,15459:25813816,33641991:146473 -k1,15459:26611716,33641991:146472 -k1,15459:28170490,33641991:146473 -k1,15459:29508407,33641991:146472 -k1,15459:31269687,33641991:146473 -k1,15459:32583029,33641991:0 -) -(1,15460:6630773,34483479:25952256,513147,134348 -k1,15459:8578831,34483479:212665 -k1,15459:11076736,34483479:212665 -k1,15459:13800086,34483479:212666 -k1,15459:15117033,34483479:212665 -k1,15459:17130627,34483479:212665 -k1,15459:19186164,34483479:212665 -k1,15459:20014868,34483479:212666 -k1,15459:21789911,34483479:212665 -k1,15459:24165264,34483479:212665 -k1,15459:25569374,34483479:212665 -k1,15459:27137325,34483479:212666 -k1,15459:27764820,34483479:212652 -k1,15459:30312533,34483479:212665 -k1,15459:31478747,34483479:212665 -k1,15459:32583029,34483479:0 -) -(1,15460:6630773,35324967:25952256,513147,134348 -k1,15459:8137683,35324967:221094 -k1,15459:11877406,35324967:221095 -k1,15459:13713307,35324967:221094 -k1,15459:15430589,35324967:221095 -k1,15459:16936189,35324967:221094 -k1,15459:19444491,35324967:221095 -k1,15459:21592343,35324967:221094 -k1,15459:22885607,35324967:221095 -k1,15459:26992331,35324967:221094 -k1,15459:28570677,35324967:221095 -k1,15459:30185722,35324967:221094 -k1,15459:32583029,35324967:0 -) -(1,15460:6630773,36166455:25952256,513147,126483 -k1,15459:8347816,36166455:230031 -k1,15459:9260733,36166455:230032 -k1,15459:10957460,36166455:230031 -k1,15459:13242700,36166455:230031 -k1,15459:17358361,36166455:230031 -k1,15459:19910334,36166455:230032 -k1,15459:22867973,36166455:230031 -k1,15459:24117089,36166455:230031 -k1,15459:27296895,36166455:230031 -k1,15459:29089961,36166455:230032 -k1,15459:30516679,36166455:230031 -k1,15459:31923737,36166455:230031 -k1,15459:32583029,36166455:0 -) -(1,15460:6630773,37007943:25952256,513147,134348 -k1,15459:8017951,37007943:183937 -k1,15459:10619512,37007943:183938 -k1,15459:11334946,37007943:183937 -k1,15459:12170312,37007943:183938 -k1,15459:14784324,37007943:183937 -k1,15459:17830875,37007943:183938 -k1,15459:18962463,37007943:183937 -k1,15459:21402806,37007943:183938 -k1,15459:24612540,37007943:183937 -k1,15459:25744129,37007943:183938 -k1,15459:28330616,37007943:183937 -k1,15459:29903917,37007943:183938 -k1,15459:32583029,37007943:0 -) -(1,15460:6630773,37849431:25952256,513147,134348 -k1,15459:8591133,37849431:224967 -k1,15459:11101340,37849431:224967 -k1,15459:14010663,37849431:224968 -k1,15459:16946854,37849431:224967 -k1,15459:18638517,37849431:224967 -k1,15459:20297412,37849431:224967 -k1,15459:21110892,37849431:224967 -k1,15459:24316436,37849431:224967 -k1,15459:25560489,37849431:224968 -k1,15459:28412794,37849431:224967 -k1,15459:31391584,37849431:224967 -k1,15459:32583029,37849431:0 -) -(1,15460:6630773,38690919:25952256,513147,134348 -g1,15459:11403104,38690919 -g1,15459:15331987,38690919 -g1,15459:18615340,38690919 -g1,15459:20333038,38690919 -g1,15459:23558064,38690919 -g1,15459:24748853,38690919 -g1,15459:26226689,38690919 -g1,15459:28385444,38690919 -g1,15459:29267558,38690919 -k1,15460:32583029,38690919:220861 -g1,15460:32583029,38690919 -) -(1,15462:6630773,39532407:25952256,513147,134348 -h1,15461:6630773,39532407:983040,0,0 -k1,15461:8410567,39532407:168919 -k1,15461:9782727,39532407:168919 -k1,15461:12369269,39532407:168919 -k1,15461:13708661,39532407:168919 -k1,15461:15010042,39532407:168919 -k1,15461:18609770,39532407:168918 -k1,15461:21385056,39532407:168919 -k1,15461:22947926,39532407:168919 -k1,15461:24447226,39532407:168919 -k1,15461:25267573,39532407:168919 -k1,15461:28389544,39532407:168919 -k1,15461:29947826,39532407:168919 -k1,15462:32583029,39532407:0 -) -(1,15462:6630773,40373895:25952256,513147,126483 -k1,15461:7336746,40373895:291130 -k1,15461:8819414,40373895:291223 -k1,15461:10812606,40373895:291222 -k1,15461:15168372,40373895:291223 -k1,15461:16656282,40373895:291223 -k1,15461:19973301,40373895:291222 -(1,15461:19973301,40373895:0,452978,115847 -r1,15461:22090126,40373895:2116825,568825,115847 -k1,15461:19973301,40373895:-2116825 -) -(1,15461:19973301,40373895:2116825,452978,115847 -k1,15461:19973301,40373895:3277 -h1,15461:22086849,40373895:0,411205,112570 -) -k1,15461:22381349,40373895:291223 -k1,15461:23864016,40373895:291222 -(1,15461:23864016,40373895:0,452978,115847 -r1,15461:25980841,40373895:2116825,568825,115847 -k1,15461:23864016,40373895:-2116825 -) -(1,15461:23864016,40373895:2116825,452978,115847 -k1,15461:23864016,40373895:3277 -h1,15461:25977564,40373895:0,411205,112570 -) -k1,15461:26445734,40373895:291223 -k1,15461:27928401,40373895:291222 -(1,15461:27928401,40373895:0,452978,115847 -r1,15461:31100361,40373895:3171960,568825,115847 -k1,15461:27928401,40373895:-3171960 -) -(1,15461:27928401,40373895:3171960,452978,115847 -k1,15461:27928401,40373895:3277 -h1,15461:31097084,40373895:0,411205,112570 -) -k1,15461:31391584,40373895:291223 -k1,15462:32583029,40373895:0 -) -(1,15462:6630773,41215383:25952256,513147,115847 -(1,15461:6630773,41215383:0,452978,115847 -r1,15461:9802733,41215383:3171960,568825,115847 -k1,15461:6630773,41215383:-3171960 -) -(1,15461:6630773,41215383:3171960,452978,115847 -k1,15461:6630773,41215383:3277 -h1,15461:9799456,41215383:0,411205,112570 -) -k1,15461:10195105,41215383:218702 -k1,15461:11179922,41215383:218701 -k1,15461:12057916,41215383:218702 -k1,15461:14162089,41215383:218702 -k1,15461:15771464,41215383:218701 -k1,15461:17181611,41215383:218702 -k1,15461:18812614,41215383:218702 -k1,15461:20420678,41215383:218701 -k1,15461:21255418,41215383:218702 -k1,15461:22392934,41215383:218701 -k1,15461:24544948,41215383:218702 -k1,15461:27448005,41215383:218702 -k1,15461:28658266,41215383:218701 -k1,15461:31966991,41215383:218702 -k1,15461:32583029,41215383:0 -) -(1,15462:6630773,42056871:25952256,505283,134348 -g1,15461:9438990,42056871 -h1,15461:11380166,42056871:0,0,0 -g1,15461:11579395,42056871 -g1,15461:12970069,42056871 -h1,15461:14911245,42056871:0,0,0 -g1,15461:15110474,42056871 -g1,15461:17788275,42056871 -g1,15461:18796874,42056871 -g1,15461:20494256,42056871 -h1,15461:21291174,42056871:0,0,0 -k1,15462:32583029,42056871:11118185 -g1,15462:32583029,42056871 -) -] -(1,15466:32583029,45706769:0,0,0 -g1,15466:32583029,45706769 -) -) -] -(1,15466:6630773,47279633:25952256,485622,11795 -(1,15466:6630773,47279633:25952256,485622,11795 -(1,15466:6630773,47279633:0,0,0 -v1,15466:6630773,47279633:0,0,0 -) -g1,15466:6830002,47279633 -k1,15466:31387652,47279633:24557650 -) -) -] -h1,15466:4262630,4025873:0,0,0 -] -!17180 +k1,15476:22359413,9828725:10223616 +k1,15476:32583029,9828725:10223616 +) +] +(1,15478:6630773,14556498:25952256,131072,0 +r1,15478:32583029,14556498:25952256,131072,0 +g1,15478:32583029,14556498 +g1,15478:32583029,14556498 +) +(1,15480:6630773,15876399:25952256,505283,134348 +k1,15480:8596853,15876399:1966080 +k1,15479:10349431,15876399:207239 +k1,15479:14884668,15876399:207239 +k1,15479:16567123,15876399:207240 +k1,15479:18214188,15876399:207239 +k1,15479:20234153,15876399:207239 +k1,15479:21632837,15876399:207239 +k1,15479:23441777,15876399:207240 +k1,15479:25233021,15876399:207239 +k1,15479:29768258,15876399:207239 +k1,15480:32583029,15876399:1966080 +) +(1,15480:6630773,16717887:25952256,505283,134348 +k1,15480:8596853,16717887:1966080 +k1,15479:10248360,16717887:152043 +k1,15479:12658774,16717887:152043 +k1,15479:15097369,16717887:152044 +k1,15479:15862174,16717887:152043 +k1,15479:17509749,16717887:152043 +k1,15479:18992173,16717887:152043 +k1,15479:20702007,16717887:152043 +k1,15479:21845610,16717887:152043 +k1,15479:23722562,16717887:152044 +k1,15479:26037293,16717887:152043 +k1,15479:27544621,16717887:152043 +k1,15479:32583029,16717887:1966080 +) +(1,15480:6630773,17559375:25952256,513147,134348 +g1,15480:8596853,17559375 +g1,15479:10080588,17559375 +g1,15479:12460200,17559375 +g1,15479:14134644,17559375 +g1,15479:15843823,17559375 +g1,15479:17901653,17559375 +g1,15479:19931303,17559375 +g1,15479:22991834,17559375 +k1,15480:30616949,17559375:4379117 +g1,15480:32583029,17559375 +) +(1,15481:6630773,19187295:25952256,505283,126483 +k1,15481:26585175,19187295:19954402 +h1,15481:26585175,19187295:0,0,0 +g1,15481:28285178,19187295 +g1,15481:30616949,19187295 +g1,15481:32583029,19187295 +) +(1,15482:6630773,20028783:25952256,505283,134348 +k1,15482:22157562,20028783:15526789 +h1,15481:22157562,20028783:0,0,0 +g1,15481:26747048,20028783 +g1,15481:29023113,20028783 +g1,15482:30616949,20028783 +g1,15482:32583029,20028783 +) +(1,15482:6630773,21263487:25952256,131072,0 +r1,15482:32583029,21263487:25952256,131072,0 +g1,15482:32583029,21263487 +g1,15482:34549109,21263487 +) +(1,15486:6630773,24071055:25952256,32768,229376 +(1,15486:6630773,24071055:0,32768,229376 +(1,15486:6630773,24071055:5505024,32768,229376 +r1,15486:12135797,24071055:5505024,262144,229376 +) +k1,15486:6630773,24071055:-5505024 +) +(1,15486:6630773,24071055:25952256,32768,0 +r1,15486:32583029,24071055:25952256,32768,0 +) +) +(1,15486:6630773,25675383:25952256,615776,151780 +(1,15486:6630773,25675383:1974731,582746,14155 +g1,15486:6630773,25675383 +g1,15486:8605504,25675383 +) +g1,15486:10904245,25675383 +g1,15486:11961996,25675383 +g1,15486:13695292,25675383 +k1,15486:32583029,25675383:15886712 +g1,15486:32583029,25675383 +) +(1,15489:6630773,26910087:25952256,513147,134348 +k1,15488:8248858,26910087:185468 +k1,15488:8849155,26910087:185454 +k1,15488:10226068,26910087:185468 +k1,15488:11430621,26910087:185468 +k1,15488:16170841,26910087:185468 +k1,15488:19266763,26910087:185468 +k1,15488:22396764,26910087:185468 +k1,15488:23343760,26910087:185468 +k1,15488:26001901,26910087:185468 +k1,15488:28525038,26910087:185468 +k1,15488:30942007,26910087:185468 +k1,15489:32583029,26910087:0 +) +(1,15489:6630773,27751575:25952256,513147,134348 +k1,15488:8519521,27751575:290980 +k1,15488:9758151,27751575:290979 +k1,15488:13221074,27751575:290980 +k1,15488:14703498,27751575:290979 +k1,15488:18057631,27751575:290980 +k1,15488:19911644,27751575:290979 +k1,15488:24054175,27751575:290980 +k1,15488:27255608,27751575:290979 +k1,15488:29976663,27751575:290980 +k1,15488:31734338,27751575:290979 +k1,15489:32583029,27751575:0 +) +(1,15489:6630773,28593063:25952256,513147,126483 +k1,15488:10552924,28593063:290146 +k1,15488:11790720,28593063:290145 +k1,15488:13773006,28593063:290146 +k1,15488:14722443,28593063:290145 +k1,15488:16709316,28593063:290146 +k1,15488:20025258,28593063:290145 +k1,15488:21506849,28593063:290146 +k1,15488:24323407,28593063:290145 +k1,15488:25561204,28593063:290146 +k1,15488:28082850,28593063:290145 +k1,15488:31599989,28593063:290146 +k1,15488:32583029,28593063:0 +) +(1,15489:6630773,29434551:25952256,513147,134348 +k1,15488:9576218,29434551:261090 +k1,15488:10465143,29434551:261090 +k1,15488:11745317,29434551:261089 +k1,15488:14412234,29434551:261090 +k1,15488:17264618,29434551:261090 +k1,15488:17738638,29434551:261028 +k1,15488:19176754,29434551:261089 +k1,15488:20050606,29434551:261090 +k1,15488:23623886,29434551:261090 +k1,15488:25351672,29434551:261090 +k1,15488:27002124,29434551:261089 +k1,15488:28971738,29434551:261090 +k1,15488:30424273,29434551:261090 +k1,15488:32583029,29434551:0 +) +(1,15489:6630773,30276039:25952256,513147,134348 +k1,15488:9535983,30276039:193986 +k1,15488:10346008,30276039:193987 +k1,15488:12327161,30276039:193986 +k1,15488:13896749,30276039:193987 +k1,15488:15109820,30276039:193986 +k1,15488:16905507,30276039:193987 +k1,15488:19876909,30276039:193986 +k1,15488:22956446,30276039:193987 +k1,15488:24539795,30276039:193986 +k1,15488:27244466,30276039:193987 +k1,15488:29389459,30276039:193986 +k1,15488:30649717,30276039:193987 +k1,15488:32583029,30276039:0 +) +(1,15489:6630773,31117527:25952256,505283,95026 +g1,15488:7481430,31117527 +k1,15489:32583029,31117527:24305992 +g1,15489:32583029,31117527 +) +(1,15491:6630773,31959015:25952256,513147,134348 +h1,15490:6630773,31959015:983040,0,0 +k1,15490:9338491,31959015:252739 +k1,15490:10574269,31959015:252738 +k1,15490:13337692,31959015:252739 +k1,15490:14874936,31959015:252738 +k1,15490:16119235,31959015:252739 +k1,15490:18657213,31959015:252738 +k1,15490:19561380,31959015:252739 +k1,15490:20228908,31959015:252685 +k1,15490:21473206,31959015:252738 +k1,15490:22792216,31959015:252739 +k1,15490:25174219,31959015:252738 +k1,15490:26705565,31959015:252739 +k1,15490:29513552,31959015:252738 +k1,15490:32124932,31959015:252739 +k1,15490:32583029,31959015:0 +) +(1,15491:6630773,32800503:25952256,513147,134348 +k1,15490:9914126,32800503:174325 +k1,15490:10739880,32800503:174326 +k1,15490:16168882,32800503:174325 +k1,15490:17362293,32800503:174326 +k1,15490:20977913,32800503:174325 +k1,15490:23450587,32800503:174326 +k1,15490:24276340,32800503:174325 +k1,15490:25862967,32800503:174326 +k1,15490:27850018,32800503:174325 +k1,15490:29898674,32800503:174326 +k1,15490:32583029,32800503:0 +) +(1,15491:6630773,33641991:25952256,513147,134348 +k1,15490:8309100,33641991:211631 +k1,15490:10218769,33641991:211631 +k1,15490:12526896,33641991:211630 +k1,15490:15293776,33641991:211631 +k1,15490:16842341,33641991:211631 +k1,15490:17801738,33641991:211631 +k1,15490:20650537,33641991:211630 +k1,15490:21623696,33641991:211631 +k1,15490:22854412,33641991:211631 +k1,15490:26525033,33641991:211631 +k1,15490:27395955,33641991:211630 +k1,15490:28626671,33641991:211631 +k1,15490:31123542,33641991:211631 +k1,15491:32583029,33641991:0 +) +(1,15491:6630773,34483479:25952256,513147,134348 +k1,15490:8289817,34483479:146473 +k1,15490:9720795,34483479:146472 +k1,15490:11812377,34483479:146473 +k1,15490:12977934,34483479:146472 +k1,15490:14611419,34483479:146473 +k1,15490:19278565,34483479:146472 +k1,15490:22908277,34483479:146473 +k1,15490:25813816,34483479:146473 +k1,15490:26611716,34483479:146472 +k1,15490:28170490,34483479:146473 +k1,15490:29508407,34483479:146472 +k1,15490:31269687,34483479:146473 +k1,15490:32583029,34483479:0 +) +(1,15491:6630773,35324967:25952256,513147,134348 +k1,15490:8578831,35324967:212665 +k1,15490:11076736,35324967:212665 +k1,15490:13800086,35324967:212666 +k1,15490:15117033,35324967:212665 +k1,15490:17130627,35324967:212665 +k1,15490:19186164,35324967:212665 +k1,15490:20014868,35324967:212666 +k1,15490:21789911,35324967:212665 +k1,15490:24165264,35324967:212665 +k1,15490:25569374,35324967:212665 +k1,15490:27137325,35324967:212666 +k1,15490:27764820,35324967:212652 +k1,15490:30312533,35324967:212665 +k1,15490:31478747,35324967:212665 +k1,15490:32583029,35324967:0 +) +(1,15491:6630773,36166455:25952256,513147,134348 +k1,15490:8137683,36166455:221094 +k1,15490:11877406,36166455:221095 +k1,15490:13713307,36166455:221094 +k1,15490:15430589,36166455:221095 +k1,15490:16936189,36166455:221094 +k1,15490:19444491,36166455:221095 +k1,15490:21592343,36166455:221094 +k1,15490:22885607,36166455:221095 +k1,15490:26992331,36166455:221094 +k1,15490:28570677,36166455:221095 +k1,15490:30185722,36166455:221094 +k1,15490:32583029,36166455:0 +) +(1,15491:6630773,37007943:25952256,513147,126483 +k1,15490:8347816,37007943:230031 +k1,15490:9260733,37007943:230032 +k1,15490:10957460,37007943:230031 +k1,15490:13242700,37007943:230031 +k1,15490:17358361,37007943:230031 +k1,15490:19910334,37007943:230032 +k1,15490:22867973,37007943:230031 +k1,15490:24117089,37007943:230031 +k1,15490:27296895,37007943:230031 +k1,15490:29089961,37007943:230032 +k1,15490:30516679,37007943:230031 +k1,15490:31923737,37007943:230031 +k1,15490:32583029,37007943:0 +) +(1,15491:6630773,37849431:25952256,513147,134348 +k1,15490:8017951,37849431:183937 +k1,15490:10619512,37849431:183938 +k1,15490:11334946,37849431:183937 +k1,15490:12170312,37849431:183938 +k1,15490:14784324,37849431:183937 +k1,15490:17830875,37849431:183938 +k1,15490:18962463,37849431:183937 +k1,15490:21402806,37849431:183938 +k1,15490:24612540,37849431:183937 +k1,15490:25744129,37849431:183938 +k1,15490:28330616,37849431:183937 +k1,15490:29903917,37849431:183938 +k1,15490:32583029,37849431:0 +) +(1,15491:6630773,38690919:25952256,513147,134348 +k1,15490:8591133,38690919:224967 +k1,15490:11101340,38690919:224967 +k1,15490:14010663,38690919:224968 +k1,15490:16946854,38690919:224967 +k1,15490:18638517,38690919:224967 +k1,15490:20297412,38690919:224967 +k1,15490:21110892,38690919:224967 +k1,15490:24316436,38690919:224967 +k1,15490:25560489,38690919:224968 +k1,15490:28412794,38690919:224967 +k1,15490:31391584,38690919:224967 +k1,15490:32583029,38690919:0 +) +(1,15491:6630773,39532407:25952256,513147,134348 +g1,15490:11403104,39532407 +g1,15490:15331987,39532407 +g1,15490:18615340,39532407 +g1,15490:20333038,39532407 +g1,15490:23558064,39532407 +g1,15490:24748853,39532407 +g1,15490:26226689,39532407 +g1,15490:28385444,39532407 +g1,15490:29267558,39532407 +k1,15491:32583029,39532407:220861 +g1,15491:32583029,39532407 +) +(1,15493:6630773,40373895:25952256,513147,134348 +h1,15492:6630773,40373895:983040,0,0 +k1,15492:8410567,40373895:168919 +k1,15492:9782727,40373895:168919 +k1,15492:12369269,40373895:168919 +k1,15492:13708661,40373895:168919 +k1,15492:15010042,40373895:168919 +k1,15492:18609770,40373895:168918 +k1,15492:21385056,40373895:168919 +k1,15492:22947926,40373895:168919 +k1,15492:24447226,40373895:168919 +k1,15492:25267573,40373895:168919 +k1,15492:28389544,40373895:168919 +k1,15492:29947826,40373895:168919 +k1,15493:32583029,40373895:0 +) +(1,15493:6630773,41215383:25952256,513147,126483 +k1,15492:7336746,41215383:291130 +k1,15492:8819414,41215383:291223 +k1,15492:10812606,41215383:291222 +k1,15492:15168372,41215383:291223 +k1,15492:16656282,41215383:291223 +k1,15492:19973301,41215383:291222 +(1,15492:19973301,41215383:0,452978,115847 +r1,15492:22090126,41215383:2116825,568825,115847 +k1,15492:19973301,41215383:-2116825 +) +(1,15492:19973301,41215383:2116825,452978,115847 +k1,15492:19973301,41215383:3277 +h1,15492:22086849,41215383:0,411205,112570 +) +k1,15492:22381349,41215383:291223 +k1,15492:23864016,41215383:291222 +(1,15492:23864016,41215383:0,452978,115847 +r1,15492:25980841,41215383:2116825,568825,115847 +k1,15492:23864016,41215383:-2116825 +) +(1,15492:23864016,41215383:2116825,452978,115847 +k1,15492:23864016,41215383:3277 +h1,15492:25977564,41215383:0,411205,112570 +) +k1,15492:26445734,41215383:291223 +k1,15492:27928401,41215383:291222 +(1,15492:27928401,41215383:0,452978,115847 +r1,15492:31100361,41215383:3171960,568825,115847 +k1,15492:27928401,41215383:-3171960 +) +(1,15492:27928401,41215383:3171960,452978,115847 +k1,15492:27928401,41215383:3277 +h1,15492:31097084,41215383:0,411205,112570 +) +k1,15492:31391584,41215383:291223 +k1,15493:32583029,41215383:0 +) +(1,15493:6630773,42056871:25952256,513147,115847 +(1,15492:6630773,42056871:0,452978,115847 +r1,15492:9802733,42056871:3171960,568825,115847 +k1,15492:6630773,42056871:-3171960 +) +(1,15492:6630773,42056871:3171960,452978,115847 +k1,15492:6630773,42056871:3277 +h1,15492:9799456,42056871:0,411205,112570 +) +k1,15492:10195105,42056871:218702 +k1,15492:11179922,42056871:218701 +k1,15492:12057916,42056871:218702 +k1,15492:14162089,42056871:218702 +k1,15492:15771464,42056871:218701 +k1,15492:17181611,42056871:218702 +k1,15492:18812614,42056871:218702 +k1,15492:20420678,42056871:218701 +k1,15492:21255418,42056871:218702 +k1,15492:22392934,42056871:218701 +k1,15492:24544948,42056871:218702 +k1,15492:27448005,42056871:218702 +k1,15492:28658266,42056871:218701 +k1,15492:31966991,42056871:218702 +k1,15492:32583029,42056871:0 +) +(1,15493:6630773,42898359:25952256,505283,134348 +g1,15492:9438990,42898359 +h1,15492:11380166,42898359:0,0,0 +g1,15492:11579395,42898359 +g1,15492:12970069,42898359 +h1,15492:14911245,42898359:0,0,0 +g1,15492:15110474,42898359 +g1,15492:17788275,42898359 +g1,15492:18796874,42898359 +g1,15492:20494256,42898359 +h1,15492:21291174,42898359:0,0,0 +k1,15493:32583029,42898359:11118185 +g1,15493:32583029,42898359 +) +] +(1,15497:32583029,45706769:0,0,0 +g1,15497:32583029,45706769 +) +) +] +(1,15497:6630773,47279633:25952256,485622,11795 +(1,15497:6630773,47279633:25952256,485622,11795 +(1,15497:6630773,47279633:0,0,0 +v1,15497:6630773,47279633:0,0,0 +) +g1,15497:6830002,47279633 +k1,15497:31387652,47279633:24557650 +) +) +] +h1,15497:4262630,4025873:0,0,0 +] +!17306 }302 !12 {303 -[1,15509:4262630,47279633:28320399,43253760,0 -(1,15509:4262630,4025873:0,0,0 -[1,15509:-473657,4025873:25952256,0,0 -(1,15509:-473657,-710414:25952256,0,0 -h1,15509:-473657,-710414:0,0,0 -(1,15509:-473657,-710414:0,0,0 -(1,15509:-473657,-710414:0,0,0 -g1,15509:-473657,-710414 -(1,15509:-473657,-710414:65781,0,65781 -g1,15509:-407876,-710414 -[1,15509:-407876,-644633:0,0,0 +[1,15540:4262630,47279633:28320399,43253760,0 +(1,15540:4262630,4025873:0,0,0 +[1,15540:-473657,4025873:25952256,0,0 +(1,15540:-473657,-710414:25952256,0,0 +h1,15540:-473657,-710414:0,0,0 +(1,15540:-473657,-710414:0,0,0 +(1,15540:-473657,-710414:0,0,0 +g1,15540:-473657,-710414 +(1,15540:-473657,-710414:65781,0,65781 +g1,15540:-407876,-710414 +[1,15540:-407876,-644633:0,0,0 ] ) -k1,15509:-473657,-710414:-65781 +k1,15540:-473657,-710414:-65781 ) ) -k1,15509:25478599,-710414:25952256 -g1,15509:25478599,-710414 +k1,15540:25478599,-710414:25952256 +g1,15540:25478599,-710414 ) ] ) -[1,15509:6630773,47279633:25952256,43253760,0 -[1,15509:6630773,4812305:25952256,786432,0 -(1,15509:6630773,4812305:25952256,505283,126483 -(1,15509:6630773,4812305:25952256,505283,126483 -g1,15509:3078558,4812305 -[1,15509:3078558,4812305:0,0,0 -(1,15509:3078558,2439708:0,1703936,0 -k1,15509:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15509:2537886,2439708:1179648,16384,0 +[1,15540:6630773,47279633:25952256,43253760,0 +[1,15540:6630773,4812305:25952256,786432,0 +(1,15540:6630773,4812305:25952256,505283,126483 +(1,15540:6630773,4812305:25952256,505283,126483 +g1,15540:3078558,4812305 +[1,15540:3078558,4812305:0,0,0 +(1,15540:3078558,2439708:0,1703936,0 +k1,15540:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15540:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15509:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15540:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15509:3078558,4812305:0,0,0 -(1,15509:3078558,2439708:0,1703936,0 -g1,15509:29030814,2439708 -g1,15509:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15509:36151628,1915420:16384,1179648,0 +[1,15540:3078558,4812305:0,0,0 +(1,15540:3078558,2439708:0,1703936,0 +g1,15540:29030814,2439708 +g1,15540:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15540:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15509:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15540:37855564,2439708:1179648,16384,0 ) ) -k1,15509:3078556,2439708:-34777008 +k1,15540:3078556,2439708:-34777008 ) ] -[1,15509:3078558,4812305:0,0,0 -(1,15509:3078558,49800853:0,16384,2228224 -k1,15509:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15509:2537886,49800853:1179648,16384,0 +[1,15540:3078558,4812305:0,0,0 +(1,15540:3078558,49800853:0,16384,2228224 +k1,15540:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15540:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15509:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15540:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,15509:3078558,4812305:0,0,0 -(1,15509:3078558,49800853:0,16384,2228224 -g1,15509:29030814,49800853 -g1,15509:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15509:36151628,51504789:16384,1179648,0 +[1,15540:3078558,4812305:0,0,0 +(1,15540:3078558,49800853:0,16384,2228224 +g1,15540:29030814,49800853 +g1,15540:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15540:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15509:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15540:37855564,49800853:1179648,16384,0 ) ) -k1,15509:3078556,49800853:-34777008 -) -] -g1,15509:6630773,4812305 -k1,15509:25146660,4812305:17320510 -g1,15509:26880087,4812305 -g1,15509:29193507,4812305 -g1,15509:30603186,4812305 -) -) -] -[1,15509:6630773,45706769:25952256,40108032,0 -(1,15509:6630773,45706769:25952256,40108032,0 -(1,15509:6630773,45706769:0,0,0 -g1,15509:6630773,45706769 -) -[1,15509:6630773,45706769:25952256,40108032,0 -(1,15463:6630773,6254097:25952256,32768,229376 -(1,15463:6630773,6254097:0,32768,229376 -(1,15463:6630773,6254097:5505024,32768,229376 -r1,15463:12135797,6254097:5505024,262144,229376 -) -k1,15463:6630773,6254097:-5505024 -) -(1,15463:6630773,6254097:25952256,32768,0 -r1,15463:32583029,6254097:25952256,32768,0 -) -) -(1,15463:6630773,7858425:25952256,606339,14155 -(1,15463:6630773,7858425:1974731,582746,14155 -g1,15463:6630773,7858425 -g1,15463:8605504,7858425 -) -k1,15463:32583029,7858425:19020644 -g1,15463:32583029,7858425 -) -(1,15466:6630773,9093129:25952256,513147,126483 -k1,15465:8032465,9093129:205005 -k1,15465:9543603,9093129:205005 -k1,15465:11103893,9093129:205005 -k1,15465:11924936,9093129:205005 -k1,15465:13261748,9093129:205005 -k1,15465:14856116,9093129:205005 -k1,15465:17615714,9093129:205005 -k1,15465:19214670,9093129:205005 -k1,15465:19834513,9093129:205000 -k1,15465:20571015,9093129:205005 -k1,15465:21427448,9093129:205005 -k1,15465:23340977,9093129:205005 -k1,15465:24228867,9093129:205005 -k1,15465:26675203,9093129:205005 -k1,15465:27899293,9093129:205005 -k1,15465:29667332,9093129:205005 -k1,15465:32583029,9093129:0 -) -(1,15466:6630773,9934617:25952256,513147,134348 -k1,15465:9357726,9934617:287703 -k1,15465:10304721,9934617:287703 -k1,15465:11981787,9934617:287703 -k1,15465:13261050,9934617:287703 -k1,15465:15300530,9934617:287703 -k1,15465:16779678,9934617:287703 -k1,15465:18456743,9934617:287702 -k1,15465:19848728,9934617:287703 -k1,15465:20884197,9934617:287703 -k1,15465:23210070,9934617:287703 -k1,15465:24180658,9934617:287703 -k1,15465:28217676,9934617:287703 -k1,15465:30240772,9934617:287703 -k1,15465:32583029,9934617:0 -) -(1,15466:6630773,10776105:25952256,513147,134348 -k1,15465:9460050,10776105:144922 -k1,15465:11071667,10776105:144921 -k1,15465:13071258,10776105:144922 -k1,15465:14025550,10776105:144922 -k1,15465:15396650,10776105:144921 -k1,15465:16224457,10776105:144922 -k1,15465:18391165,10776105:144922 -k1,15465:21941337,10776105:144921 -k1,15465:22556152,10776105:144922 -k1,15465:23232571,10776105:144922 -k1,15465:25510034,10776105:144921 -k1,15465:26939462,10776105:144922 -k1,15465:28473747,10776105:144922 -k1,15465:29150165,10776105:144921 -k1,15465:30361358,10776105:144922 -k1,15465:32583029,10776105:0 -) -(1,15466:6630773,11617593:25952256,513147,126483 -k1,15465:10413838,11617593:203489 -k1,15465:12315365,11617593:203489 -k1,15465:13931156,11617593:203490 -k1,15465:15326090,11617593:203489 -k1,15465:16814085,11617593:203489 -k1,15465:17633612,11617593:203489 -k1,15465:18856187,11617593:203490 -k1,15465:21759104,11617593:203489 -k1,15465:23329674,11617593:203489 -k1,15465:24192455,11617593:203489 -k1,15465:25166647,11617593:203489 -k1,15465:27150750,11617593:203490 -k1,15465:29291483,11617593:203489 -k1,15465:30486532,11617593:203489 -k1,15465:32583029,11617593:0 -) -(1,15466:6630773,12459081:25952256,505283,134348 -g1,15465:9767981,12459081 -g1,15465:11512549,12459081 -g1,15465:15052803,12459081 -g1,15465:16243592,12459081 -g1,15465:18198531,12459081 -g1,15465:23777610,12459081 -k1,15466:32583029,12459081:6694504 -g1,15466:32583029,12459081 -) -(1,15468:6630773,13300569:25952256,513147,126483 -h1,15467:6630773,13300569:983040,0,0 -k1,15467:9079689,13300569:269189 -k1,15467:10702852,13300569:269189 -k1,15467:13740937,13300569:269189 -k1,15467:16628945,13300569:269189 -k1,15467:17557426,13300569:269189 -k1,15467:21117833,13300569:269189 -k1,15467:22046314,13300569:269189 -k1,15467:23334588,13300569:269189 -k1,15467:25134043,13300569:269189 -k1,15467:26350883,13300569:269189 -k1,15467:28197524,13300569:269189 -k1,15467:31923737,13300569:269189 -k1,15467:32583029,13300569:0 -) -(1,15468:6630773,14142057:25952256,513147,134348 -k1,15467:8459949,14142057:266142 -k1,15467:10772124,14142057:266141 -k1,15467:12057351,14142057:266142 -k1,15467:14482249,14142057:266142 -k1,15467:15407683,14142057:266142 -k1,15467:17063187,14142057:266141 -k1,15467:18896950,14142057:266142 -k1,15467:19577868,14142057:266075 -k1,15467:21111476,14142057:266142 -k1,15467:25250795,14142057:266141 -k1,15467:30072345,14142057:266142 -k1,15467:32583029,14142057:0 -) -(1,15468:6630773,14983545:25952256,505283,126483 -k1,15467:9316110,14983545:212664 -k1,15467:11661317,14983545:212665 -k1,15467:13402936,14983545:212664 -k1,15467:18136274,14983545:212664 -k1,15467:18964977,14983545:212665 -k1,15467:20929418,14983545:212664 -k1,15467:22839464,14983545:212664 -k1,15467:23822832,14983545:212665 -k1,15467:27244794,14983545:212664 -k1,15467:28812743,14983545:212664 -k1,15467:29641446,14983545:212665 -k1,15467:31243473,14983545:212664 -k1,15468:32583029,14983545:0 -) -(1,15468:6630773,15825033:25952256,513147,126483 -k1,15467:8221473,15825033:162670 -k1,15467:8915639,15825033:162669 -k1,15467:9729737,15825033:162670 -k1,15467:11965311,15825033:162670 -k1,15467:13147065,15825033:162669 -k1,15467:14699098,15825033:162670 -k1,15467:15809418,15825033:162669 -k1,15467:19609991,15825033:162670 -k1,15467:20424089,15825033:162670 -k1,15467:20942618,15825033:162669 -k1,15467:24562312,15825033:162670 -k1,15467:25341020,15825033:162670 -k1,15467:28169694,15825033:162669 -k1,15467:28983792,15825033:162670 -k1,15467:32583029,15825033:0 -) -(1,15468:6630773,16666521:25952256,513147,126483 -g1,15467:7489294,16666521 -g1,15467:8707608,16666521 -g1,15467:11080011,16666521 -g1,15467:11938532,16666521 -g1,15467:13156846,16666521 -k1,15468:32583029,16666521:16697919 -g1,15468:32583029,16666521 -) -(1,15470:6630773,17508009:25952256,505283,126483 -h1,15469:6630773,17508009:983040,0,0 -k1,15469:9876553,17508009:324840 -k1,15469:12729117,17508009:324840 -k1,15469:15084917,17508009:324839 -k1,15469:16061185,17508009:324840 -k1,15469:17775388,17508009:324840 -k1,15469:20539478,17508009:324840 -k1,15469:22055762,17508009:324839 -k1,15469:24888665,17508009:324840 -k1,15469:29951758,17508009:324840 -k1,15469:32583029,17508009:0 -) -(1,15470:6630773,18349497:25952256,513147,134348 -k1,15469:8816580,18349497:275433 -k1,15469:10193094,18349497:275509 -k1,15469:12212516,18349497:275509 -k1,15469:12946122,18349497:275509 -k1,15469:15851591,18349497:275509 -k1,15469:16778528,18349497:275509 -k1,15469:20172895,18349497:275509 -k1,15469:22044861,18349497:275509 -k1,15469:23714322,18349497:275510 -k1,15469:26915358,18349497:275509 -k1,15469:28761765,18349497:275509 -k1,15469:30426637,18349497:275509 -k1,15469:31966991,18349497:275509 -k1,15470:32583029,18349497:0 -) -(1,15470:6630773,19190985:25952256,513147,126483 -k1,15469:7488029,19190985:268743 -k1,15469:9218880,19190985:268743 -k1,15469:9902396,19190985:268673 -k1,15469:12009424,19190985:268743 -k1,15469:13044283,19190985:268743 -k1,15469:14702388,19190985:268742 -k1,15469:15587169,19190985:268743 -k1,15469:18487183,19190985:268743 -k1,15469:20839971,19190985:268743 -k1,15469:23753092,19190985:268743 -k1,15469:25836527,19190985:268743 -k1,15469:26756698,19190985:268743 -k1,15469:28044525,19190985:268742 -k1,15469:29582045,19190985:268743 -k1,15469:30510080,19190985:268743 -k1,15469:32168186,19190985:268743 -k1,15470:32583029,19190985:0 -) -(1,15470:6630773,20032473:25952256,513147,134348 -k1,15469:9873213,20032473:216643 -k1,15469:11194138,20032473:216643 -k1,15469:13821852,20032473:216644 -k1,15469:15021535,20032473:216643 -k1,15469:16280200,20032473:216643 -k1,15469:17886206,20032473:216643 -k1,15469:19367695,20032473:216644 -k1,15469:21155236,20032473:216643 -k1,15469:23732486,20032473:216643 -k1,15469:25015400,20032473:216643 -k1,15469:25883471,20032473:216643 -k1,15469:26787588,20032473:216644 -k1,15469:27620269,20032473:216643 -k1,15469:30913172,20032473:216643 -k1,15469:32583029,20032473:0 -) -(1,15470:6630773,20873961:25952256,513147,134348 -k1,15469:7993921,20873961:206438 -k1,15469:9304642,20873961:206439 -k1,15469:10603565,20873961:206438 -k1,15469:13536302,20873961:206439 -k1,15469:16145290,20873961:206438 -k1,15469:17011021,20873961:206439 -k1,15469:18606822,20873961:206438 -k1,15469:20380881,20873961:206438 -k1,15469:21634585,20873961:206439 -k1,15469:23328035,20873961:206438 -k1,15469:24217359,20873961:206439 -k1,15469:25991418,20873961:206438 -k1,15469:29351449,20873961:206439 -k1,15469:31923737,20873961:206438 -k1,15470:32583029,20873961:0 -) -(1,15470:6630773,21715449:25952256,473825,0 -k1,15470:32583030,21715449:25363744 -g1,15470:32583030,21715449 -) -(1,15472:6630773,22556937:25952256,513147,134348 -h1,15471:6630773,22556937:983040,0,0 -k1,15471:9514639,22556937:183783 -k1,15471:10113249,22556937:183767 -k1,15471:13207486,22556937:183783 -k1,15471:14866484,22556937:183783 -k1,15471:16794179,22556937:183782 -k1,15471:17436059,22556937:183783 -k1,15471:19463370,22556937:183783 -k1,15471:20298581,22556937:183783 -k1,15471:22664057,22556937:183782 -k1,15471:24237203,22556937:183783 -k1,15471:26232401,22556937:183783 -k1,15471:27032222,22556937:183783 -k1,15471:28235089,22556937:183782 -k1,15471:30072345,22556937:183783 -k1,15471:32583029,22556937:0 -) -(1,15472:6630773,23398425:25952256,513147,134348 -k1,15471:9214420,23398425:249255 -k1,15471:12758171,23398425:249256 -k1,15471:13768954,23398425:249255 -k1,15471:15452137,23398425:249255 -k1,15471:16289906,23398425:249256 -k1,15471:17611330,23398425:249255 -k1,15471:18476623,23398425:249255 -k1,15471:20418019,23398425:249256 -k1,15471:22364656,23398425:249255 -k1,15471:25686894,23398425:249255 -k1,15471:28188622,23398425:249256 -k1,15471:31923737,23398425:249255 -k1,15471:32583029,23398425:0 -) -(1,15472:6630773,24239913:25952256,505283,134348 -k1,15471:7894089,24239913:197045 -k1,15471:11478689,24239913:197044 -k1,15471:12694819,24239913:197045 -k1,15471:14281227,24239913:197045 -k1,15471:15920719,24239913:197045 -k1,15471:17551691,24239913:197044 -k1,15471:18337249,24239913:197045 -k1,15471:20350952,24239913:197045 -k1,15471:24277651,24239913:197045 -k1,15471:27385149,24239913:197044 -k1,15471:29297927,24239913:197045 -k1,15471:29953069,24239913:197045 -k1,15471:32583029,24239913:0 -) -(1,15472:6630773,25081401:25952256,513147,126483 -k1,15471:7435558,25081401:153357 -k1,15471:9770610,25081401:153358 -k1,15471:11115412,25081401:153357 -k1,15471:13341673,25081401:153357 -k1,15471:14884394,25081401:153358 -k1,15471:17075921,25081401:153357 -k1,15471:17845316,25081401:153357 -k1,15471:18981714,25081401:153358 -k1,15471:21645755,25081401:153357 -k1,15471:22865383,25081401:153357 -k1,15471:26313236,25081401:153358 -k1,15471:27228121,25081401:153357 -k1,15471:28815406,25081401:153357 -k1,15471:29383561,25081401:153312 -k1,15471:32583029,25081401:0 -) -(1,15472:6630773,25922889:25952256,513147,134348 -k1,15471:8502809,25922889:154993 -k1,15471:9317093,25922889:154992 -k1,15471:11168813,25922889:154993 -k1,15471:13834490,25922889:154993 -k1,15471:14981042,25922889:154992 -k1,15471:19006591,25922889:154993 -k1,15471:21558891,25922889:154993 -k1,15471:23403401,25922889:154992 -k1,15471:25590665,25922889:154993 -k1,15471:26737218,25922889:154993 -k1,15471:27508248,25922889:154992 -k1,15471:31316873,25922889:154993 -k1,15472:32583029,25922889:0 -k1,15472:32583029,25922889:0 -) -(1,15473:6630773,28730457:25952256,32768,229376 -(1,15473:6630773,28730457:0,32768,229376 -(1,15473:6630773,28730457:5505024,32768,229376 -r1,15473:12135797,28730457:5505024,262144,229376 -) -k1,15473:6630773,28730457:-5505024 -) -(1,15473:6630773,28730457:25952256,32768,0 -r1,15473:32583029,28730457:25952256,32768,0 -) -) -(1,15473:6630773,30334785:25952256,606339,161218 -(1,15473:6630773,30334785:1974731,582746,14155 -g1,15473:6630773,30334785 -g1,15473:8605504,30334785 -) -g1,15473:12473177,30334785 -g1,15473:14599689,30334785 -g1,15473:15614973,30334785 -g1,15473:17348269,30334785 -k1,15473:32583029,30334785:12233735 -g1,15473:32583029,30334785 -) -v1,15476:6630773,31918467:0,393216,0 -(1,15480:6630773,32233563:25952256,708312,196608 -g1,15480:6630773,32233563 -g1,15480:6630773,32233563 -g1,15480:6434165,32233563 -(1,15480:6434165,32233563:0,708312,196608 -r1,15480:32779637,32233563:26345472,904920,196608 -k1,15480:6434165,32233563:-26345472 -) -(1,15480:6434165,32233563:26345472,708312,196608 -[1,15480:6630773,32233563:25952256,511704,0 -(1,15478:6630773,32126085:25952256,404226,107478 -(1,15477:6630773,32126085:0,0,0 -g1,15477:6630773,32126085 -g1,15477:6630773,32126085 -g1,15477:6303093,32126085 -(1,15477:6303093,32126085:0,0,0 -) -g1,15477:6630773,32126085 -) -k1,15478:6630773,32126085:0 -h1,15478:19908891,32126085:0,0,0 -k1,15478:32583029,32126085:12674138 -g1,15478:32583029,32126085 -) -] -) -g1,15480:32583029,32233563 -g1,15480:6630773,32233563 -g1,15480:6630773,32233563 -g1,15480:32583029,32233563 -g1,15480:32583029,32233563 -) -h1,15480:6630773,32430171:0,0,0 -(1,15484:6630773,33795947:25952256,513147,126483 -h1,15483:6630773,33795947:983040,0,0 -k1,15483:8588848,33795947:146005 -k1,15483:9852896,33795947:146004 -k1,15483:11017986,33795947:146005 -k1,15483:14155710,33795947:146005 -k1,15483:17060125,33795947:146005 -k1,15483:17822167,33795947:146004 -k1,15483:19171413,33795947:146005 -k1,15483:21908712,33795947:146005 -k1,15483:23225189,33795947:146004 -k1,15483:24901460,33795947:146005 -k1,15483:26353598,33795947:146005 -k1,15483:27151031,33795947:146005 -k1,15483:28673291,33795947:146004 -k1,15483:30511436,33795947:146005 -k1,15484:32583029,33795947:0 -) -(1,15484:6630773,34637435:25952256,513147,134348 -k1,15483:7825904,34637435:143278 -k1,15483:9536803,34637435:143278 -k1,15483:10699166,34637435:143278 -k1,15483:12942873,34637435:143278 -k1,15483:14318228,34637435:143278 -k1,15483:16740193,34637435:143278 -h1,15483:17710781,34637435:0,0,0 -k1,15483:17854059,34637435:143278 -k1,15483:18806706,34637435:143277 -k1,15483:20448137,34637435:143278 -h1,15483:21643514,34637435:0,0,0 -k1,15483:21786792,34637435:143278 -k1,15483:22877721,34637435:143278 -k1,15483:25138467,34637435:143278 -k1,15483:26091115,34637435:143278 -k1,15483:27253478,34637435:143278 -k1,15483:28489241,34637435:143278 -k1,15483:29291811,34637435:143278 -k1,15484:32583029,34637435:0 -k1,15484:32583029,34637435:0 -) -v1,15486:6630773,35827901:0,393216,0 -(1,15509:6630773,45463198:25952256,10028513,196608 -g1,15509:6630773,45463198 -g1,15509:6630773,45463198 -g1,15509:6434165,45463198 -(1,15509:6434165,45463198:0,10028513,196608 -r1,15509:32779637,45463198:26345472,10225121,196608 -k1,15509:6434165,45463198:-26345472 -) -(1,15509:6434165,45463198:26345472,10028513,196608 -[1,15509:6630773,45463198:25952256,9831905,0 -(1,15488:6630773,36035519:25952256,404226,101187 -(1,15487:6630773,36035519:0,0,0 -g1,15487:6630773,36035519 -g1,15487:6630773,36035519 -g1,15487:6303093,36035519 -(1,15487:6303093,36035519:0,0,0 -) -g1,15487:6630773,36035519 -) -k1,15488:6630773,36035519:0 -h1,15488:12637541,36035519:0,0,0 -k1,15488:32583029,36035519:19945488 -g1,15488:32583029,36035519 -) -(1,15489:6630773,36701697:25952256,404226,101187 -h1,15489:6630773,36701697:0,0,0 -k1,15489:6630773,36701697:0 -h1,15489:11372958,36701697:0,0,0 -k1,15489:32583030,36701697:21210072 -g1,15489:32583030,36701697 -) -(1,15490:6630773,37367875:25952256,404226,101187 -h1,15490:6630773,37367875:0,0,0 -k1,15490:6630773,37367875:0 -h1,15490:11056813,37367875:0,0,0 -k1,15490:32583029,37367875:21526216 -g1,15490:32583029,37367875 -) -(1,15491:6630773,38034053:25952256,404226,101187 -h1,15491:6630773,38034053:0,0,0 -k1,15491:6630773,38034053:0 -h1,15491:11056813,38034053:0,0,0 -k1,15491:32583029,38034053:21526216 -g1,15491:32583029,38034053 -) -(1,15492:6630773,38700231:25952256,404226,107478 -h1,15492:6630773,38700231:0,0,0 -k1,15492:6630773,38700231:0 -h1,15492:11689104,38700231:0,0,0 -k1,15492:32583028,38700231:20893924 -g1,15492:32583028,38700231 -) -(1,15493:6630773,39366409:25952256,404226,101187 -h1,15493:6630773,39366409:0,0,0 -k1,15493:6630773,39366409:0 -h1,15493:11056813,39366409:0,0,0 -k1,15493:32583029,39366409:21526216 -g1,15493:32583029,39366409 -) -(1,15494:6630773,40032587:25952256,404226,101187 -h1,15494:6630773,40032587:0,0,0 -k1,15494:6630773,40032587:0 -h1,15494:11056813,40032587:0,0,0 -k1,15494:32583029,40032587:21526216 -g1,15494:32583029,40032587 -) -(1,15495:6630773,40698765:25952256,404226,101187 -h1,15495:6630773,40698765:0,0,0 -k1,15495:6630773,40698765:0 -h1,15495:11056813,40698765:0,0,0 -k1,15495:32583029,40698765:21526216 -g1,15495:32583029,40698765 -) -(1,15496:6630773,41364943:25952256,404226,101187 -h1,15496:6630773,41364943:0,0,0 -k1,15496:6630773,41364943:0 -h1,15496:11372958,41364943:0,0,0 -k1,15496:32583030,41364943:21210072 -g1,15496:32583030,41364943 -) -(1,15497:6630773,42031121:25952256,404226,101187 -h1,15497:6630773,42031121:0,0,0 -k1,15497:6630773,42031121:0 -h1,15497:10740667,42031121:0,0,0 -k1,15497:32583029,42031121:21842362 -g1,15497:32583029,42031121 -) -(1,15498:6630773,42697299:25952256,404226,101187 -h1,15498:6630773,42697299:0,0,0 -k1,15498:6630773,42697299:0 -h1,15498:11689104,42697299:0,0,0 -k1,15498:32583028,42697299:20893924 -g1,15498:32583028,42697299 -) -(1,15499:6630773,43363477:25952256,410518,101187 -h1,15499:6630773,43363477:0,0,0 -k1,15499:6630773,43363477:0 -h1,15499:12005250,43363477:0,0,0 -k1,15499:32583030,43363477:20577780 -g1,15499:32583030,43363477 -) -(1,15500:6630773,44029655:25952256,410518,107478 -h1,15500:6630773,44029655:0,0,0 -k1,15500:6630773,44029655:0 -h1,15500:11689104,44029655:0,0,0 -k1,15500:32583028,44029655:20893924 -g1,15500:32583028,44029655 -) -(1,15501:6630773,44695833:25952256,404226,101187 -h1,15501:6630773,44695833:0,0,0 -k1,15501:6630773,44695833:0 -h1,15501:11056813,44695833:0,0,0 -k1,15501:32583029,44695833:21526216 -g1,15501:32583029,44695833 -) -(1,15502:6630773,45362011:25952256,404226,101187 -h1,15502:6630773,45362011:0,0,0 -k1,15502:6630773,45362011:0 -h1,15502:10740667,45362011:0,0,0 -k1,15502:32583029,45362011:21842362 -g1,15502:32583029,45362011 -) -] -) -g1,15509:32583029,45463198 -g1,15509:6630773,45463198 -g1,15509:6630773,45463198 -g1,15509:32583029,45463198 -g1,15509:32583029,45463198 -) -] -(1,15509:32583029,45706769:0,0,0 -g1,15509:32583029,45706769 -) -) -] -(1,15509:6630773,47279633:25952256,0,0 -h1,15509:6630773,47279633:25952256,0,0 -) -] -h1,15509:4262630,4025873:0,0,0 -] -!20902 +k1,15540:3078556,49800853:-34777008 +) +] +g1,15540:6630773,4812305 +k1,15540:25146660,4812305:17320510 +g1,15540:26880087,4812305 +g1,15540:29193507,4812305 +g1,15540:30603186,4812305 +) +) +] +[1,15540:6630773,45706769:25952256,40108032,0 +(1,15540:6630773,45706769:25952256,40108032,0 +(1,15540:6630773,45706769:0,0,0 +g1,15540:6630773,45706769 +) +[1,15540:6630773,45706769:25952256,40108032,0 +(1,15494:6630773,6254097:25952256,32768,229376 +(1,15494:6630773,6254097:0,32768,229376 +(1,15494:6630773,6254097:5505024,32768,229376 +r1,15494:12135797,6254097:5505024,262144,229376 +) +k1,15494:6630773,6254097:-5505024 +) +(1,15494:6630773,6254097:25952256,32768,0 +r1,15494:32583029,6254097:25952256,32768,0 +) +) +(1,15494:6630773,7858425:25952256,606339,14155 +(1,15494:6630773,7858425:1974731,582746,14155 +g1,15494:6630773,7858425 +g1,15494:8605504,7858425 +) +k1,15494:32583029,7858425:19020644 +g1,15494:32583029,7858425 +) +(1,15497:6630773,9093129:25952256,513147,126483 +k1,15496:8032465,9093129:205005 +k1,15496:9543603,9093129:205005 +k1,15496:11103893,9093129:205005 +k1,15496:11924936,9093129:205005 +k1,15496:13261748,9093129:205005 +k1,15496:14856116,9093129:205005 +k1,15496:17615714,9093129:205005 +k1,15496:19214670,9093129:205005 +k1,15496:19834513,9093129:205000 +k1,15496:20571015,9093129:205005 +k1,15496:21427448,9093129:205005 +k1,15496:23340977,9093129:205005 +k1,15496:24228867,9093129:205005 +k1,15496:26675203,9093129:205005 +k1,15496:27899293,9093129:205005 +k1,15496:29667332,9093129:205005 +k1,15496:32583029,9093129:0 +) +(1,15497:6630773,9934617:25952256,513147,134348 +k1,15496:9357726,9934617:287703 +k1,15496:10304721,9934617:287703 +k1,15496:11981787,9934617:287703 +k1,15496:13261050,9934617:287703 +k1,15496:15300530,9934617:287703 +k1,15496:16779678,9934617:287703 +k1,15496:18456743,9934617:287702 +k1,15496:19848728,9934617:287703 +k1,15496:20884197,9934617:287703 +k1,15496:23210070,9934617:287703 +k1,15496:24180658,9934617:287703 +k1,15496:28217676,9934617:287703 +k1,15496:30240772,9934617:287703 +k1,15496:32583029,9934617:0 +) +(1,15497:6630773,10776105:25952256,513147,134348 +k1,15496:9460050,10776105:144922 +k1,15496:11071667,10776105:144921 +k1,15496:13071258,10776105:144922 +k1,15496:14025550,10776105:144922 +k1,15496:15396650,10776105:144921 +k1,15496:16224457,10776105:144922 +k1,15496:18391165,10776105:144922 +k1,15496:21941337,10776105:144921 +k1,15496:22556152,10776105:144922 +k1,15496:23232571,10776105:144922 +k1,15496:25510034,10776105:144921 +k1,15496:26939462,10776105:144922 +k1,15496:28473747,10776105:144922 +k1,15496:29150165,10776105:144921 +k1,15496:30361358,10776105:144922 +k1,15496:32583029,10776105:0 +) +(1,15497:6630773,11617593:25952256,513147,126483 +k1,15496:10413838,11617593:203489 +k1,15496:12315365,11617593:203489 +k1,15496:13931156,11617593:203490 +k1,15496:15326090,11617593:203489 +k1,15496:16814085,11617593:203489 +k1,15496:17633612,11617593:203489 +k1,15496:18856187,11617593:203490 +k1,15496:21759104,11617593:203489 +k1,15496:23329674,11617593:203489 +k1,15496:24192455,11617593:203489 +k1,15496:25166647,11617593:203489 +k1,15496:27150750,11617593:203490 +k1,15496:29291483,11617593:203489 +k1,15496:30486532,11617593:203489 +k1,15496:32583029,11617593:0 +) +(1,15497:6630773,12459081:25952256,505283,134348 +g1,15496:9767981,12459081 +g1,15496:11512549,12459081 +g1,15496:15052803,12459081 +g1,15496:16243592,12459081 +g1,15496:18198531,12459081 +g1,15496:23777610,12459081 +k1,15497:32583029,12459081:6694504 +g1,15497:32583029,12459081 +) +(1,15499:6630773,13300569:25952256,513147,126483 +h1,15498:6630773,13300569:983040,0,0 +k1,15498:9079689,13300569:269189 +k1,15498:10702852,13300569:269189 +k1,15498:13740937,13300569:269189 +k1,15498:16628945,13300569:269189 +k1,15498:17557426,13300569:269189 +k1,15498:21117833,13300569:269189 +k1,15498:22046314,13300569:269189 +k1,15498:23334588,13300569:269189 +k1,15498:25134043,13300569:269189 +k1,15498:26350883,13300569:269189 +k1,15498:28197524,13300569:269189 +k1,15498:31923737,13300569:269189 +k1,15498:32583029,13300569:0 +) +(1,15499:6630773,14142057:25952256,513147,134348 +k1,15498:8459949,14142057:266142 +k1,15498:10772124,14142057:266141 +k1,15498:12057351,14142057:266142 +k1,15498:14482249,14142057:266142 +k1,15498:15407683,14142057:266142 +k1,15498:17063187,14142057:266141 +k1,15498:18896950,14142057:266142 +k1,15498:19577868,14142057:266075 +k1,15498:21111476,14142057:266142 +k1,15498:25250795,14142057:266141 +k1,15498:30072345,14142057:266142 +k1,15498:32583029,14142057:0 +) +(1,15499:6630773,14983545:25952256,505283,126483 +k1,15498:9299016,14983545:195570 +k1,15498:11627129,14983545:195571 +k1,15498:13351654,14983545:195570 +k1,15498:18067898,14983545:195570 +k1,15498:18879507,14983545:195571 +k1,15498:20826854,14983545:195570 +k1,15498:22719806,14983545:195570 +k1,15498:23686080,14983545:195571 +k1,15498:27090948,14983545:195570 +k1,15498:28641803,14983545:195570 +k1,15498:29453412,14983545:195571 +k1,15498:31038345,14983545:195570 +k1,15499:32583029,14983545:0 +) +(1,15499:6630773,15825033:25952256,513147,126483 +k1,15498:8030997,15825033:177322 +k1,15498:8739815,15825033:177321 +k1,15498:9568565,15825033:177322 +k1,15498:11818791,15825033:177322 +k1,15498:13015197,15825033:177321 +k1,15498:14581882,15825033:177322 +k1,15498:15706854,15825033:177321 +k1,15498:19522079,15825033:177322 +k1,15498:20350829,15825033:177322 +k1,15498:20884010,15825033:177321 +k1,15498:24518356,15825033:177322 +k1,15498:25311716,15825033:177322 +k1,15498:28155042,15825033:177321 +k1,15498:28983792,15825033:177322 +k1,15498:32583029,15825033:0 +) +(1,15499:6630773,16666521:25952256,513147,126483 +g1,15498:7489294,16666521 +g1,15498:8707608,16666521 +g1,15498:11080011,16666521 +g1,15498:11938532,16666521 +g1,15498:13156846,16666521 +k1,15499:32583029,16666521:16697919 +g1,15499:32583029,16666521 +) +(1,15501:6630773,17508009:25952256,505283,126483 +h1,15500:6630773,17508009:983040,0,0 +k1,15500:9876553,17508009:324840 +k1,15500:12729117,17508009:324840 +k1,15500:15084917,17508009:324839 +k1,15500:16061185,17508009:324840 +k1,15500:17775388,17508009:324840 +k1,15500:20539478,17508009:324840 +k1,15500:22055762,17508009:324839 +k1,15500:24888665,17508009:324840 +k1,15500:29951758,17508009:324840 +k1,15500:32583029,17508009:0 +) +(1,15501:6630773,18349497:25952256,513147,134348 +k1,15500:8816580,18349497:275433 +k1,15500:10193094,18349497:275509 +k1,15500:12212516,18349497:275509 +k1,15500:12946122,18349497:275509 +k1,15500:15851591,18349497:275509 +k1,15500:16778528,18349497:275509 +k1,15500:20172895,18349497:275509 +k1,15500:22044861,18349497:275509 +k1,15500:23714322,18349497:275510 +k1,15500:26915358,18349497:275509 +k1,15500:28761765,18349497:275509 +k1,15500:30426637,18349497:275509 +k1,15500:31966991,18349497:275509 +k1,15501:32583029,18349497:0 +) +(1,15501:6630773,19190985:25952256,513147,126483 +k1,15500:7488029,19190985:268743 +k1,15500:9218880,19190985:268743 +k1,15500:9902396,19190985:268673 +k1,15500:12009424,19190985:268743 +k1,15500:13044283,19190985:268743 +k1,15500:14702388,19190985:268742 +k1,15500:15587169,19190985:268743 +k1,15500:18487183,19190985:268743 +k1,15500:20839971,19190985:268743 +k1,15500:23753092,19190985:268743 +k1,15500:25836527,19190985:268743 +k1,15500:26756698,19190985:268743 +k1,15500:28044525,19190985:268742 +k1,15500:29582045,19190985:268743 +k1,15500:30510080,19190985:268743 +k1,15500:32168186,19190985:268743 +k1,15501:32583029,19190985:0 +) +(1,15501:6630773,20032473:25952256,513147,134348 +k1,15500:9873213,20032473:216643 +k1,15500:11194138,20032473:216643 +k1,15500:13821852,20032473:216644 +k1,15500:15021535,20032473:216643 +k1,15500:16280200,20032473:216643 +k1,15500:17886206,20032473:216643 +k1,15500:19367695,20032473:216644 +k1,15500:21155236,20032473:216643 +k1,15500:23732486,20032473:216643 +k1,15500:25015400,20032473:216643 +k1,15500:25883471,20032473:216643 +k1,15500:26787588,20032473:216644 +k1,15500:27620269,20032473:216643 +k1,15500:30913172,20032473:216643 +k1,15500:32583029,20032473:0 +) +(1,15501:6630773,20873961:25952256,513147,134348 +k1,15500:7993921,20873961:206438 +k1,15500:9304642,20873961:206439 +k1,15500:10603565,20873961:206438 +k1,15500:13536302,20873961:206439 +k1,15500:16145290,20873961:206438 +k1,15500:17011021,20873961:206439 +k1,15500:18606822,20873961:206438 +k1,15500:20380881,20873961:206438 +k1,15500:21634585,20873961:206439 +k1,15500:23328035,20873961:206438 +k1,15500:24217359,20873961:206439 +k1,15500:25991418,20873961:206438 +k1,15500:29351449,20873961:206439 +k1,15500:31923737,20873961:206438 +k1,15501:32583029,20873961:0 +) +(1,15501:6630773,21715449:25952256,473825,0 +k1,15501:32583030,21715449:25363744 +g1,15501:32583030,21715449 +) +(1,15503:6630773,22556937:25952256,513147,134348 +h1,15502:6630773,22556937:983040,0,0 +k1,15502:9514639,22556937:183783 +k1,15502:10113249,22556937:183767 +k1,15502:13207486,22556937:183783 +k1,15502:14866484,22556937:183783 +k1,15502:16794179,22556937:183782 +k1,15502:17436059,22556937:183783 +k1,15502:19463370,22556937:183783 +k1,15502:20298581,22556937:183783 +k1,15502:22664057,22556937:183782 +k1,15502:24237203,22556937:183783 +k1,15502:26232401,22556937:183783 +k1,15502:27032222,22556937:183783 +k1,15502:28235089,22556937:183782 +k1,15502:30072345,22556937:183783 +k1,15502:32583029,22556937:0 +) +(1,15503:6630773,23398425:25952256,513147,134348 +k1,15502:9214420,23398425:249255 +k1,15502:12758171,23398425:249256 +k1,15502:13768954,23398425:249255 +k1,15502:15452137,23398425:249255 +k1,15502:16289906,23398425:249256 +k1,15502:17611330,23398425:249255 +k1,15502:18476623,23398425:249255 +k1,15502:20418019,23398425:249256 +k1,15502:22364656,23398425:249255 +k1,15502:25686894,23398425:249255 +k1,15502:28188622,23398425:249256 +k1,15502:31923737,23398425:249255 +k1,15502:32583029,23398425:0 +) +(1,15503:6630773,24239913:25952256,505283,134348 +k1,15502:7894089,24239913:197045 +k1,15502:11478689,24239913:197044 +k1,15502:12694819,24239913:197045 +k1,15502:14281227,24239913:197045 +k1,15502:15920719,24239913:197045 +k1,15502:17551691,24239913:197044 +k1,15502:18337249,24239913:197045 +k1,15502:20350952,24239913:197045 +k1,15502:24277651,24239913:197045 +k1,15502:27385149,24239913:197044 +k1,15502:29297927,24239913:197045 +k1,15502:29953069,24239913:197045 +k1,15502:32583029,24239913:0 +) +(1,15503:6630773,25081401:25952256,513147,126483 +k1,15502:7435558,25081401:153357 +k1,15502:9770610,25081401:153358 +k1,15502:11115412,25081401:153357 +k1,15502:13341673,25081401:153357 +k1,15502:14884394,25081401:153358 +k1,15502:17075921,25081401:153357 +k1,15502:17845316,25081401:153357 +k1,15502:18981714,25081401:153358 +k1,15502:21645755,25081401:153357 +k1,15502:22865383,25081401:153357 +k1,15502:26313236,25081401:153358 +k1,15502:27228121,25081401:153357 +k1,15502:28815406,25081401:153357 +k1,15502:29383561,25081401:153312 +k1,15502:32583029,25081401:0 +) +(1,15503:6630773,25922889:25952256,513147,134348 +k1,15502:8502809,25922889:154993 +k1,15502:9317093,25922889:154992 +k1,15502:11168813,25922889:154993 +k1,15502:13834490,25922889:154993 +k1,15502:14981042,25922889:154992 +k1,15502:19006591,25922889:154993 +k1,15502:21558891,25922889:154993 +k1,15502:23403401,25922889:154992 +k1,15502:25590665,25922889:154993 +k1,15502:26737218,25922889:154993 +k1,15502:27508248,25922889:154992 +k1,15502:31316873,25922889:154993 +k1,15503:32583029,25922889:0 +k1,15503:32583029,25922889:0 +) +(1,15504:6630773,28730457:25952256,32768,229376 +(1,15504:6630773,28730457:0,32768,229376 +(1,15504:6630773,28730457:5505024,32768,229376 +r1,15504:12135797,28730457:5505024,262144,229376 +) +k1,15504:6630773,28730457:-5505024 +) +(1,15504:6630773,28730457:25952256,32768,0 +r1,15504:32583029,28730457:25952256,32768,0 +) +) +(1,15504:6630773,30334785:25952256,606339,161218 +(1,15504:6630773,30334785:1974731,582746,14155 +g1,15504:6630773,30334785 +g1,15504:8605504,30334785 +) +g1,15504:12473177,30334785 +g1,15504:14599689,30334785 +g1,15504:15614973,30334785 +g1,15504:17348269,30334785 +k1,15504:32583029,30334785:12233735 +g1,15504:32583029,30334785 +) +v1,15507:6630773,31875685:0,393216,0 +(1,15511:6630773,32190781:25952256,708312,196608 +g1,15511:6630773,32190781 +g1,15511:6630773,32190781 +g1,15511:6434165,32190781 +(1,15511:6434165,32190781:0,708312,196608 +r1,15511:32779637,32190781:26345472,904920,196608 +k1,15511:6434165,32190781:-26345472 +) +(1,15511:6434165,32190781:26345472,708312,196608 +[1,15511:6630773,32190781:25952256,511704,0 +(1,15509:6630773,32083303:25952256,404226,107478 +(1,15508:6630773,32083303:0,0,0 +g1,15508:6630773,32083303 +g1,15508:6630773,32083303 +g1,15508:6303093,32083303 +(1,15508:6303093,32083303:0,0,0 +) +g1,15508:6630773,32083303 +) +k1,15509:6630773,32083303:0 +h1,15509:19908891,32083303:0,0,0 +k1,15509:32583029,32083303:12674138 +g1,15509:32583029,32083303 +) +] +) +g1,15511:32583029,32190781 +g1,15511:6630773,32190781 +g1,15511:6630773,32190781 +g1,15511:32583029,32190781 +g1,15511:32583029,32190781 +) +h1,15511:6630773,32387389:0,0,0 +(1,15515:6630773,33710382:25952256,513147,126483 +h1,15514:6630773,33710382:983040,0,0 +k1,15514:8614266,33710382:171423 +k1,15514:9903734,33710382:171424 +k1,15514:11094242,33710382:171423 +k1,15514:14257384,33710382:171423 +k1,15514:17187217,33710382:171423 +k1,15514:17974679,33710382:171424 +k1,15514:19349343,33710382:171423 +k1,15514:22112060,33710382:171423 +k1,15514:23453957,33710382:171424 +k1,15514:25155646,33710382:171423 +k1,15514:26633202,33710382:171423 +k1,15514:27456053,33710382:171423 +k1,15514:29003733,33710382:171424 +k1,15514:30867296,33710382:171423 +k1,15515:32583029,33710382:0 +) +(1,15515:6630773,34551870:25952256,513147,134348 +k1,15514:8257991,34551870:219505 +k1,15514:10045116,34551870:219504 +k1,15514:11283706,34551870:219505 +k1,15514:13603639,34551870:219504 +k1,15514:15055221,34551870:219505 +k1,15514:17553412,34551870:219504 +h1,15514:18524000,34551870:0,0,0 +k1,15514:18743505,34551870:219505 +k1,15514:19772379,34551870:219504 +k1,15514:21490037,34551870:219505 +h1,15514:22685414,34551870:0,0,0 +k1,15514:22904918,34551870:219504 +k1,15514:24072074,34551870:219505 +k1,15514:26409046,34551870:219504 +k1,15514:27437921,34551870:219505 +k1,15514:28676510,34551870:219504 +k1,15514:29988500,34551870:219505 +k1,15514:30867296,34551870:219504 +k1,15515:32583029,34551870:0 +) +(1,15515:6630773,35393358:25952256,505283,134348 +k1,15515:32583029,35393358:24163778 +g1,15515:32583029,35393358 +) +v1,15517:6630773,36541042:0,393216,0 +(1,15540:6630773,45510161:25952256,9362335,196608 +g1,15540:6630773,45510161 +g1,15540:6630773,45510161 +g1,15540:6434165,45510161 +(1,15540:6434165,45510161:0,9362335,196608 +r1,15540:32779637,45510161:26345472,9558943,196608 +k1,15540:6434165,45510161:-26345472 +) +(1,15540:6434165,45510161:26345472,9362335,196608 +[1,15540:6630773,45510161:25952256,9165727,0 +(1,15519:6630773,36748660:25952256,404226,101187 +(1,15518:6630773,36748660:0,0,0 +g1,15518:6630773,36748660 +g1,15518:6630773,36748660 +g1,15518:6303093,36748660 +(1,15518:6303093,36748660:0,0,0 +) +g1,15518:6630773,36748660 +) +k1,15519:6630773,36748660:0 +h1,15519:12637541,36748660:0,0,0 +k1,15519:32583029,36748660:19945488 +g1,15519:32583029,36748660 +) +(1,15520:6630773,37414838:25952256,404226,101187 +h1,15520:6630773,37414838:0,0,0 +k1,15520:6630773,37414838:0 +h1,15520:11372958,37414838:0,0,0 +k1,15520:32583030,37414838:21210072 +g1,15520:32583030,37414838 +) +(1,15521:6630773,38081016:25952256,404226,101187 +h1,15521:6630773,38081016:0,0,0 +k1,15521:6630773,38081016:0 +h1,15521:11056813,38081016:0,0,0 +k1,15521:32583029,38081016:21526216 +g1,15521:32583029,38081016 +) +(1,15522:6630773,38747194:25952256,404226,101187 +h1,15522:6630773,38747194:0,0,0 +k1,15522:6630773,38747194:0 +h1,15522:11056813,38747194:0,0,0 +k1,15522:32583029,38747194:21526216 +g1,15522:32583029,38747194 +) +(1,15523:6630773,39413372:25952256,404226,107478 +h1,15523:6630773,39413372:0,0,0 +k1,15523:6630773,39413372:0 +h1,15523:11689104,39413372:0,0,0 +k1,15523:32583028,39413372:20893924 +g1,15523:32583028,39413372 +) +(1,15524:6630773,40079550:25952256,404226,101187 +h1,15524:6630773,40079550:0,0,0 +k1,15524:6630773,40079550:0 +h1,15524:11056813,40079550:0,0,0 +k1,15524:32583029,40079550:21526216 +g1,15524:32583029,40079550 +) +(1,15525:6630773,40745728:25952256,404226,101187 +h1,15525:6630773,40745728:0,0,0 +k1,15525:6630773,40745728:0 +h1,15525:11056813,40745728:0,0,0 +k1,15525:32583029,40745728:21526216 +g1,15525:32583029,40745728 +) +(1,15526:6630773,41411906:25952256,404226,101187 +h1,15526:6630773,41411906:0,0,0 +k1,15526:6630773,41411906:0 +h1,15526:11056813,41411906:0,0,0 +k1,15526:32583029,41411906:21526216 +g1,15526:32583029,41411906 +) +(1,15527:6630773,42078084:25952256,404226,101187 +h1,15527:6630773,42078084:0,0,0 +k1,15527:6630773,42078084:0 +h1,15527:11372958,42078084:0,0,0 +k1,15527:32583030,42078084:21210072 +g1,15527:32583030,42078084 +) +(1,15528:6630773,42744262:25952256,404226,101187 +h1,15528:6630773,42744262:0,0,0 +k1,15528:6630773,42744262:0 +h1,15528:10740667,42744262:0,0,0 +k1,15528:32583029,42744262:21842362 +g1,15528:32583029,42744262 +) +(1,15529:6630773,43410440:25952256,404226,101187 +h1,15529:6630773,43410440:0,0,0 +k1,15529:6630773,43410440:0 +h1,15529:11689104,43410440:0,0,0 +k1,15529:32583028,43410440:20893924 +g1,15529:32583028,43410440 +) +(1,15530:6630773,44076618:25952256,410518,101187 +h1,15530:6630773,44076618:0,0,0 +k1,15530:6630773,44076618:0 +h1,15530:12005250,44076618:0,0,0 +k1,15530:32583030,44076618:20577780 +g1,15530:32583030,44076618 +) +(1,15531:6630773,44742796:25952256,410518,107478 +h1,15531:6630773,44742796:0,0,0 +k1,15531:6630773,44742796:0 +h1,15531:11689104,44742796:0,0,0 +k1,15531:32583028,44742796:20893924 +g1,15531:32583028,44742796 +) +(1,15532:6630773,45408974:25952256,404226,101187 +h1,15532:6630773,45408974:0,0,0 +k1,15532:6630773,45408974:0 +h1,15532:11056813,45408974:0,0,0 +k1,15532:32583029,45408974:21526216 +g1,15532:32583029,45408974 +) +] +) +g1,15540:32583029,45510161 +g1,15540:6630773,45510161 +g1,15540:6630773,45510161 +g1,15540:32583029,45510161 +g1,15540:32583029,45510161 +) +] +(1,15540:32583029,45706769:0,0,0 +g1,15540:32583029,45706769 +) +) +] +(1,15540:6630773,47279633:25952256,0,0 +h1,15540:6630773,47279633:25952256,0,0 +) +] +h1,15540:4262630,4025873:0,0,0 +] +!20777 }303 -Input:2354:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2355:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2356:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2357:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2358:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2359:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:2351:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2352:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2353:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {304 -[1,15555:4262630,47279633:28320399,43253760,0 -(1,15555:4262630,4025873:0,0,0 -[1,15555:-473657,4025873:25952256,0,0 -(1,15555:-473657,-710414:25952256,0,0 -h1,15555:-473657,-710414:0,0,0 -(1,15555:-473657,-710414:0,0,0 -(1,15555:-473657,-710414:0,0,0 -g1,15555:-473657,-710414 -(1,15555:-473657,-710414:65781,0,65781 -g1,15555:-407876,-710414 -[1,15555:-407876,-644633:0,0,0 +[1,15583:4262630,47279633:28320399,43253760,0 +(1,15583:4262630,4025873:0,0,0 +[1,15583:-473657,4025873:25952256,0,0 +(1,15583:-473657,-710414:25952256,0,0 +h1,15583:-473657,-710414:0,0,0 +(1,15583:-473657,-710414:0,0,0 +(1,15583:-473657,-710414:0,0,0 +g1,15583:-473657,-710414 +(1,15583:-473657,-710414:65781,0,65781 +g1,15583:-407876,-710414 +[1,15583:-407876,-644633:0,0,0 ] ) -k1,15555:-473657,-710414:-65781 +k1,15583:-473657,-710414:-65781 ) ) -k1,15555:25478599,-710414:25952256 -g1,15555:25478599,-710414 +k1,15583:25478599,-710414:25952256 +g1,15583:25478599,-710414 ) ] ) -[1,15555:6630773,47279633:25952256,43253760,0 -[1,15555:6630773,4812305:25952256,786432,0 -(1,15555:6630773,4812305:25952256,505283,126483 -(1,15555:6630773,4812305:25952256,505283,126483 -g1,15555:3078558,4812305 -[1,15555:3078558,4812305:0,0,0 -(1,15555:3078558,2439708:0,1703936,0 -k1,15555:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15555:2537886,2439708:1179648,16384,0 +[1,15583:6630773,47279633:25952256,43253760,0 +[1,15583:6630773,4812305:25952256,786432,0 +(1,15583:6630773,4812305:25952256,505283,126483 +(1,15583:6630773,4812305:25952256,505283,126483 +g1,15583:3078558,4812305 +[1,15583:3078558,4812305:0,0,0 +(1,15583:3078558,2439708:0,1703936,0 +k1,15583:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15583:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15555:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15583:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15555:3078558,4812305:0,0,0 -(1,15555:3078558,2439708:0,1703936,0 -g1,15555:29030814,2439708 -g1,15555:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15555:36151628,1915420:16384,1179648,0 +[1,15583:3078558,4812305:0,0,0 +(1,15583:3078558,2439708:0,1703936,0 +g1,15583:29030814,2439708 +g1,15583:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15583:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15555:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15583:37855564,2439708:1179648,16384,0 ) ) -k1,15555:3078556,2439708:-34777008 +k1,15583:3078556,2439708:-34777008 ) ] -[1,15555:3078558,4812305:0,0,0 -(1,15555:3078558,49800853:0,16384,2228224 -k1,15555:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15555:2537886,49800853:1179648,16384,0 +[1,15583:3078558,4812305:0,0,0 +(1,15583:3078558,49800853:0,16384,2228224 +k1,15583:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15583:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15555:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15583:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,15555:3078558,4812305:0,0,0 -(1,15555:3078558,49800853:0,16384,2228224 -g1,15555:29030814,49800853 -g1,15555:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15555:36151628,51504789:16384,1179648,0 +[1,15583:3078558,4812305:0,0,0 +(1,15583:3078558,49800853:0,16384,2228224 +g1,15583:29030814,49800853 +g1,15583:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15583:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15555:37855564,49800853:1179648,16384,0 -) -) -k1,15555:3078556,49800853:-34777008 -) -] -g1,15555:6630773,4812305 -g1,15555:6630773,4812305 -g1,15555:7909380,4812305 -g1,15555:10167095,4812305 -g1,15555:11576774,4812305 -g1,15555:15078362,4812305 -k1,15555:31387652,4812305:16309290 -) -) -] -[1,15555:6630773,45706769:25952256,40108032,0 -(1,15555:6630773,45706769:25952256,40108032,0 -(1,15555:6630773,45706769:0,0,0 -g1,15555:6630773,45706769 -) -[1,15555:6630773,45706769:25952256,40108032,0 -v1,15509:6630773,6254097:0,393216,0 -(1,15509:6630773,9233905:25952256,3373024,196608 -g1,15509:6630773,9233905 -g1,15509:6630773,9233905 -g1,15509:6434165,9233905 -(1,15509:6434165,9233905:0,3373024,196608 -r1,15509:32779637,9233905:26345472,3569632,196608 -k1,15509:6434165,9233905:-26345472 -) -(1,15509:6434165,9233905:26345472,3373024,196608 -[1,15509:6630773,9233905:25952256,3176416,0 -(1,15503:6630773,6461715:25952256,404226,101187 -h1,15503:6630773,6461715:0,0,0 -k1,15503:6630773,6461715:0 -h1,15503:10424521,6461715:0,0,0 -k1,15503:32583029,6461715:22158508 -g1,15503:32583029,6461715 -) -(1,15504:6630773,7127893:25952256,410518,101187 -h1,15504:6630773,7127893:0,0,0 -k1,15504:6630773,7127893:0 -h1,15504:11056813,7127893:0,0,0 -k1,15504:32583029,7127893:21526216 -g1,15504:32583029,7127893 -) -(1,15505:6630773,7794071:25952256,404226,101187 -h1,15505:6630773,7794071:0,0,0 -k1,15505:6630773,7794071:0 -h1,15505:11372958,7794071:0,0,0 -k1,15505:32583030,7794071:21210072 -g1,15505:32583030,7794071 -) -(1,15506:6630773,8460249:25952256,404226,101187 -h1,15506:6630773,8460249:0,0,0 -k1,15506:6630773,8460249:0 -h1,15506:12321395,8460249:0,0,0 -k1,15506:32583029,8460249:20261634 -g1,15506:32583029,8460249 -) -(1,15507:6630773,9126427:25952256,404226,107478 -h1,15507:6630773,9126427:0,0,0 -k1,15507:6630773,9126427:0 -h1,15507:12005250,9126427:0,0,0 -k1,15507:32583030,9126427:20577780 -g1,15507:32583030,9126427 -) -] -) -g1,15509:32583029,9233905 -g1,15509:6630773,9233905 -g1,15509:6630773,9233905 -g1,15509:32583029,9233905 -g1,15509:32583029,9233905 -) -h1,15509:6630773,9430513:0,0,0 -v1,15513:6630773,11114827:0,393216,0 -(1,15542:6630773,26884619:25952256,16163008,616038 -g1,15542:6630773,26884619 -(1,15542:6630773,26884619:25952256,16163008,616038 -(1,15542:6630773,27500657:25952256,16779046,0 -[1,15542:6630773,27500657:25952256,16779046,0 -(1,15542:6630773,27474443:25952256,16726618,0 -r1,15542:6656987,27474443:26214,16726618,0 -[1,15542:6656987,27474443:25899828,16726618,0 -(1,15542:6656987,26884619:25899828,15546970,0 -[1,15542:7246811,26884619:24720180,15546970,0 -(1,15515:7246811,12359995:24720180,1022346,134348 -k1,15513:8744466,12359995:242142 -k1,15513:10703652,12359995:242143 -k1,15513:12335157,12359995:242142 -k1,15513:13842145,12359995:242143 -k1,15513:15597513,12359995:242142 -k1,15513:16455694,12359995:242143 -k1,15513:17901077,12359995:242142 -k1,15513:19334665,12359995:242143 -k1,15513:21278777,12359995:242142 -k1,15513:24268845,12359995:242143 -k1,15513:25502547,12359995:242142 -k1,15513:28528659,12359995:242143 -k1,15513:29386839,12359995:242142 -k1,15513:31966991,12359995:0 -) -(1,15515:7246811,13201483:24720180,513147,134348 -k1,15513:11394334,13201483:167523 -k1,15513:12189691,13201483:167522 -k1,15513:15023219,13201483:167523 -k1,15513:15842170,13201483:167523 -k1,15513:17028777,13201483:167522 -k1,15514:17641257,13201483:167491 -k1,15514:19198143,13201483:167523 -k1,15514:21829164,13201483:167523 -k1,15514:22865038,13201483:167522 -k1,15514:25462636,13201483:167523 -k1,15514:26943501,13201483:167523 -k1,15514:28922438,13201483:167522 -k1,15514:29705999,13201483:167523 -k1,15515:31966991,13201483:0 -) -(1,15515:7246811,14042971:24720180,513147,126483 -k1,15514:10164240,14042971:233074 -k1,15514:12282785,14042971:233074 -k1,15514:13384211,14042971:233074 -k1,15514:15130511,14042971:233074 -k1,15514:15979623,14042971:233074 -k1,15514:19204416,14042971:233074 -k1,15514:20246859,14042971:233073 -k1,15514:21810314,14042971:233074 -k1,15514:22694816,14042971:233074 -k1,15514:25109584,14042971:233074 -k1,15514:26905692,14042971:233074 -k1,15514:28335453,14042971:233074 -k1,15514:29881869,14042971:233074 -k1,15514:31219225,14042971:233074 -k1,15514:31966991,14042971:0 -) -(1,15515:7246811,14884459:24720180,513147,126483 -k1,15514:9305953,14884459:203162 -k1,15514:10921416,14884459:203162 -k1,15514:12692199,14884459:203162 -k1,15514:13914445,14884459:203161 -k1,15514:14532446,14884459:203158 -k1,15514:17009707,14884459:203162 -k1,15514:17895754,14884459:203162 -k1,15514:19666537,14884459:203162 -k1,15514:20225559,14884459:203162 -k1,15514:21938671,14884459:203162 -k1,15514:22757871,14884459:203162 -k1,15514:23316893,14884459:203162 -k1,15514:25014275,14884459:203161 -k1,15514:27311968,14884459:203162 -k1,15514:28142965,14884459:203162 -k1,15514:29549368,14884459:203162 -k1,15514:31966991,14884459:0 -) -(1,15515:7246811,15725947:24720180,513147,134348 -k1,15514:8388094,15725947:272931 -k1,15514:11059643,15725947:272931 -k1,15514:12351659,15725947:272931 -k1,15514:14005433,15725947:272930 -k1,15514:15379369,15725947:272931 -k1,15514:17770424,15725947:272931 -k1,15514:19062440,15725947:272931 -k1,15514:21256231,15725947:272931 -(1,15514:21256231,15725947:0,452978,115847 -r1,15542:24428191,15725947:3171960,568825,115847 -k1,15514:21256231,15725947:-3171960 -) -(1,15514:21256231,15725947:3171960,452978,115847 -k1,15514:21256231,15725947:3277 -h1,15514:24424914,15725947:0,411205,112570 -) -k1,15514:24701122,15725947:272931 -k1,15514:26541673,15725947:272930 -k1,15514:27833689,15725947:272931 -k1,15514:30686772,15725947:272931 -k1,15514:31611131,15725947:272931 -k1,15514:31966991,15725947:0 -) -(1,15515:7246811,16567435:24720180,513147,134348 -g1,15514:10032746,16567435 -k1,15515:31966991,16567435:19839714 -g1,15515:31966991,16567435 -) -(1,15517:7246811,17408923:24720180,513147,134348 -h1,15516:7246811,17408923:983040,0,0 -g1,15516:10060926,17408923 -g1,15516:11279240,17408923 -g1,15516:12791811,17408923 -k1,15517:31966991,17408923:17266116 -g1,15517:31966991,17408923 -) -v1,15519:7246811,18599389:0,393216,0 -(1,15527:7246811,20287212:24720180,2081039,196608 -g1,15527:7246811,20287212 -g1,15527:7246811,20287212 -g1,15527:7050203,20287212 -(1,15527:7050203,20287212:0,2081039,196608 -r1,15542:32163599,20287212:25113396,2277647,196608 -k1,15527:7050203,20287212:-25113396 -) -(1,15527:7050203,20287212:25113396,2081039,196608 -[1,15527:7246811,20287212:24720180,1884431,0 -(1,15521:7246811,18813299:24720180,410518,107478 -(1,15520:7246811,18813299:0,0,0 -g1,15520:7246811,18813299 -g1,15520:7246811,18813299 -g1,15520:6919131,18813299 -(1,15520:6919131,18813299:0,0,0 -) -g1,15520:7246811,18813299 -) -g1,15521:10092122,18813299 -g1,15521:11040560,18813299 -g1,15521:18311911,18813299 -g1,15521:20841077,18813299 -g1,15521:21473369,18813299 -h1,15521:25583263,18813299:0,0,0 -k1,15521:31966991,18813299:6383728 -g1,15521:31966991,18813299 -) -(1,15522:7246811,19479477:24720180,410518,107478 -h1,15522:7246811,19479477:0,0,0 -g1,15522:13569725,19479477 -g1,15522:15150454,19479477 -g1,15522:18311911,19479477 -g1,15522:18944203,19479477 -g1,15522:20841078,19479477 -g1,15522:24002535,19479477 -g1,15522:24634827,19479477 -h1,15522:26215556,19479477:0,0,0 -k1,15522:31966991,19479477:5751435 -g1,15522:31966991,19479477 -) -(1,15526:7246811,20211191:24720180,404226,76021 -(1,15524:7246811,20211191:0,0,0 -g1,15524:7246811,20211191 -g1,15524:7246811,20211191 -g1,15524:6919131,20211191 -(1,15524:6919131,20211191:0,0,0 -) -g1,15524:7246811,20211191 -) -g1,15526:8195248,20211191 -g1,15526:9459831,20211191 -h1,15526:10724414,20211191:0,0,0 -k1,15526:31966990,20211191:21242576 -g1,15526:31966990,20211191 -) -] -) -g1,15527:31966991,20287212 -g1,15527:7246811,20287212 -g1,15527:7246811,20287212 -g1,15527:31966991,20287212 -g1,15527:31966991,20287212 -) -h1,15527:7246811,20483820:0,0,0 -(1,15531:7246811,21849596:24720180,513147,102891 -h1,15530:7246811,21849596:983040,0,0 -k1,15530:9476951,21849596:293551 -k1,15530:11056318,21849596:293551 -k1,15530:13065602,21849596:293551 -k1,15530:14739996,21849596:293550 -k1,15530:16052632,21849596:293551 -k1,15530:18267043,21849596:293551 -k1,15530:20073820,21849596:293551 -k1,15530:21018799,21849596:293551 -k1,15530:22703024,21849596:293551 -k1,15530:24385937,21849596:293550 -k1,15530:26091789,21849596:293551 -k1,15530:27952961,21849596:293551 -k1,15530:29265597,21849596:293551 -k1,15530:31966991,21849596:0 -) -(1,15531:7246811,22691084:24720180,473825,7863 -k1,15531:31966991,22691084:22715434 -g1,15531:31966991,22691084 -) -v1,15533:7246811,23881550:0,393216,0 -(1,15540:7246811,26163723:24720180,2675389,196608 -g1,15540:7246811,26163723 -g1,15540:7246811,26163723 -g1,15540:7050203,26163723 -(1,15540:7050203,26163723:0,2675389,196608 -r1,15542:32163599,26163723:25113396,2871997,196608 -k1,15540:7050203,26163723:-25113396 -) -(1,15540:7050203,26163723:25113396,2675389,196608 -[1,15540:7246811,26163723:24720180,2478781,0 -(1,15535:7246811,24089168:24720180,404226,101187 -(1,15534:7246811,24089168:0,0,0 -g1,15534:7246811,24089168 -g1,15534:7246811,24089168 -g1,15534:6919131,24089168 -(1,15534:6919131,24089168:0,0,0 -) -g1,15534:7246811,24089168 -) -g1,15535:10408268,24089168 -g1,15535:11040560,24089168 -h1,15535:13569725,24089168:0,0,0 -k1,15535:31966991,24089168:18397266 -g1,15535:31966991,24089168 -) -(1,15536:7246811,24755346:24720180,410518,101187 -h1,15536:7246811,24755346:0,0,0 -g1,15536:8195248,24755346 -g1,15536:16098891,24755346 -h1,15536:16415037,24755346:0,0,0 -k1,15536:31966991,24755346:15551954 -g1,15536:31966991,24755346 -) -(1,15537:7246811,25421524:24720180,404226,101187 -h1,15537:7246811,25421524:0,0,0 -g1,15537:7562957,25421524 -g1,15537:7879103,25421524 -k1,15537:7879103,25421524:0 -h1,15537:14518162,25421524:0,0,0 -k1,15537:31966990,25421524:17448828 -g1,15537:31966990,25421524 -) -(1,15538:7246811,26087702:24720180,404226,76021 -h1,15538:7246811,26087702:0,0,0 -h1,15538:7562957,26087702:0,0,0 -k1,15538:31966991,26087702:24404034 -g1,15538:31966991,26087702 -) -] -) -g1,15540:31966991,26163723 -g1,15540:7246811,26163723 -g1,15540:7246811,26163723 -g1,15540:31966991,26163723 -g1,15540:31966991,26163723 -) -h1,15540:7246811,26360331:0,0,0 -] -) -] -r1,15542:32583029,27474443:26214,16726618,0 -) -] -) -) -g1,15542:32583029,26884619 -) -h1,15542:6630773,27500657:0,0,0 -(1,15544:6630773,30308225:25952256,32768,229376 -(1,15544:6630773,30308225:0,32768,229376 -(1,15544:6630773,30308225:5505024,32768,229376 -r1,15544:12135797,30308225:5505024,262144,229376 -) -k1,15544:6630773,30308225:-5505024 -) -(1,15544:6630773,30308225:25952256,32768,0 -r1,15544:32583029,30308225:25952256,32768,0 -) -) -(1,15544:6630773,31912553:25952256,606339,151780 -(1,15544:6630773,31912553:1974731,582746,14155 -g1,15544:6630773,31912553 -g1,15544:8605504,31912553 -) -g1,15544:10263303,31912553 -g1,15544:13074798,31912553 -g1,15544:14784501,31912553 -k1,15544:32583029,31912553:13584825 -g1,15544:32583029,31912553 -) -(1,15548:6630773,33147257:25952256,513147,134348 -k1,15547:7727147,33147257:142825 -k1,15547:9358294,33147257:142824 -k1,15547:10895070,33147257:142825 -k1,15547:12056980,33147257:142825 -k1,15547:14580727,33147257:142824 -k1,15547:15382844,33147257:142825 -k1,15547:16839011,33147257:142825 -k1,15547:17667997,33147257:142824 -k1,15547:18268919,33147257:142825 -k1,15547:20521348,33147257:142825 -k1,15547:22053535,33147257:142824 -k1,15547:24575972,33147257:142825 -k1,15547:28438620,33147257:142825 -k1,15547:29240736,33147257:142824 -k1,15547:30402646,33147257:142825 -k1,15547:32583029,33147257:0 -) -(1,15548:6630773,33988745:25952256,513147,134348 -k1,15547:8336565,33988745:192566 -k1,15547:9476783,33988745:192567 -k1,15547:10457747,33988745:192566 -k1,15547:13725263,33988745:192567 -k1,15547:15114516,33988745:192566 -k1,15547:16898953,33988745:192567 -k1,15547:19936437,33988745:192566 -k1,15547:20660501,33988745:192567 -k1,15547:22137573,33988745:192566 -k1,15547:25092483,33988745:192567 -k1,15547:28339027,33988745:192566 -k1,15547:31107814,33988745:192567 -k1,15547:32583029,33988745:0 -) -(1,15548:6630773,34830233:25952256,513147,134348 -k1,15547:9648152,34830233:255036 -k1,15547:11489158,34830233:255035 -k1,15547:14910894,34830233:255036 -k1,15547:16185015,34830233:255036 -k1,15547:18524095,34830233:255035 -k1,15547:20292357,34830233:255036 -k1,15547:21495044,34830233:255036 -k1,15547:22733120,34830233:255036 -k1,15547:25056471,34830233:255035 -k1,15547:26502952,34830233:255036 -k1,15547:27741028,34830233:255036 -k1,15547:29948381,34830233:255035 -k1,15547:30831252,34830233:255036 -k1,15547:32583029,34830233:0 -) -(1,15548:6630773,35671721:25952256,513147,134348 -k1,15547:8776775,35671721:274949 -k1,15547:10197948,35671721:274948 -k1,15547:12170935,35671721:274949 -k1,15547:15807881,35671721:274949 -k1,15547:17472192,35671721:274948 -k1,15547:19060483,35671721:274949 -k1,15547:19951470,35671721:274949 -k1,15547:20582279,35671721:274949 -k1,15547:22833137,35671721:274948 -k1,15547:26565110,35671721:274949 -k1,15547:27708411,35671721:274949 -k1,15547:29513625,35671721:274948 -k1,15547:30440002,35671721:274949 -k1,15547:32583029,35671721:0 -) -(1,15548:6630773,36513209:25952256,513147,134348 -k1,15547:8121858,36513209:206579 -k1,15547:9311477,36513209:206579 -k1,15547:11586372,36513209:206579 -k1,15547:12784510,36513209:206578 -k1,15547:14531185,36513209:206579 -k1,15547:15353802,36513209:206579 -k1,15547:18231628,36513209:206579 -k1,15547:21492185,36513209:206579 -k1,15547:24274984,36513209:206579 -k1,15547:26264142,36513209:206579 -k1,15547:26948477,36513209:206578 -k1,15547:28174141,36513209:206579 -k1,15547:30211796,36513209:206579 -k1,15547:31931601,36513209:206579 -k1,15547:32583029,36513209:0 -) -(1,15548:6630773,37354697:25952256,513147,134348 -k1,15547:8789572,37354697:229419 -k1,15547:10038075,37354697:229418 -k1,15547:11580836,37354697:229419 -k1,15547:12341752,37354697:229419 -k1,15547:14176803,37354697:229419 -k1,15547:17245241,37354697:229418 -k1,15547:18126088,37354697:229419 -k1,15547:19103273,37354697:229419 -k1,15547:20197081,37354697:229388 -k1,15547:23261587,37354697:229419 -k1,15547:24359357,37354697:229418 -k1,15547:25874592,37354697:229419 -k1,15547:27634277,37354697:229419 -k1,15547:28515124,37354697:229419 -k1,15547:29492308,37354697:229418 -k1,15547:31931601,37354697:229419 -k1,15547:32583029,37354697:0 -) -(1,15548:6630773,38196185:25952256,513147,134348 -k1,15547:8614903,38196185:168127 -k1,15547:9802115,38196185:168127 -k1,15547:10834632,38196185:168097 -k1,15547:11950410,38196185:168127 -k1,15547:13101577,38196185:168127 -k1,15547:15338020,38196185:168127 -k1,15547:16697592,38196185:168127 -k1,15547:18644366,38196185:168127 -k1,15547:21272715,38196185:168127 -k1,15547:23799484,38196185:168128 -k1,15547:28037397,38196185:168127 -k1,15547:29014894,38196185:168127 -k1,15547:30202106,38196185:168127 -k1,15547:32583029,38196185:0 -) -(1,15548:6630773,39037673:25952256,505283,134348 -k1,15547:8448208,39037673:231464 -k1,15547:9362557,39037673:231464 -k1,15547:12377990,39037673:231464 -k1,15547:13473842,39037673:231432 -k1,15547:17368769,39037673:231464 -k1,15547:18981077,39037673:231464 -k1,15547:19744038,39037673:231464 -k1,15547:23083219,39037673:231464 -k1,15547:26523981,39037673:231464 -k1,15547:28453483,39037673:231464 -k1,15547:32168186,39037673:231464 -k1,15548:32583029,39037673:0 -) -(1,15548:6630773,39879161:25952256,505283,134348 -k1,15548:32583029,39879161:22868132 -g1,15548:32583029,39879161 -) -v1,15550:6630773,41142062:0,393216,0 -(1,15552:6630773,45090731:25952256,4341885,616038 -g1,15552:6630773,45090731 -(1,15552:6630773,45090731:25952256,4341885,616038 -(1,15552:6630773,45706769:25952256,4957923,0 -[1,15552:6630773,45706769:25952256,4957923,0 -(1,15552:6630773,45680555:25952256,4905495,0 -r1,15552:6656987,45680555:26214,4905495,0 -[1,15552:6656987,45680555:25899828,4905495,0 -(1,15552:6656987,45090731:25899828,3725847,0 -[1,15552:7246811,45090731:24720180,3725847,0 -(1,15552:7246811,42450420:24720180,1085536,298548 -(1,15550:7246811,42450420:0,1085536,298548 -r1,15552:8753226,42450420:1506415,1384084,298548 -k1,15550:7246811,42450420:-1506415 -) -(1,15550:7246811,42450420:1506415,1085536,298548 -) -k1,15550:9015253,42450420:262027 -k1,15550:9015253,42450420:0 -k1,15551:10319302,42450420:262027 -k1,15551:13778175,42450420:262027 -k1,15551:17556209,42450420:262027 -k1,15551:18801276,42450420:262027 -k1,15551:21131619,42450420:262027 -k1,15551:23574029,42450420:262027 -k1,15551:25591110,42450420:262027 -k1,15551:28224885,42450420:262027 -k1,15551:31966991,42450420:0 -) -(1,15552:7246811,43291908:24720180,505283,126483 -k1,15551:10820013,43291908:268221 -k1,15551:12279679,43291908:268221 -k1,15551:14919648,43291908:268221 -k1,15551:15800631,43291908:268221 -k1,15551:17670552,43291908:268221 -k1,15551:19095482,43291908:268220 -k1,15551:20609542,43291908:268221 -k1,15551:21919785,43291908:268221 -k1,15551:23207091,43291908:268221 -k1,15551:25552803,43291908:268221 -k1,15551:28450984,43291908:268221 -k1,15551:31966991,43291908:0 -) -(1,15552:7246811,44133396:24720180,505283,134348 -k1,15551:11377086,44133396:219742 -k1,15551:13777212,44133396:219743 -k1,15551:14744720,44133396:219742 -k1,15551:17462040,44133396:219743 -k1,15551:19417175,44133396:219742 -k1,15551:21836305,44133396:219742 -k1,15551:24556902,44133396:219743 -k1,15551:25594533,44133396:219742 -k1,15551:26584979,44133396:219743 -k1,15551:29639808,44133396:219742 -k1,15551:31966991,44133396:0 -) -(1,15552:7246811,44974884:24720180,513147,115847 -g1,15551:8113196,44974884 -(1,15551:8113196,44974884:0,452978,115847 -r1,15552:13747140,44974884:5633944,568825,115847 -k1,15551:8113196,44974884:-5633944 -) -(1,15551:8113196,44974884:5633944,452978,115847 -g1,15551:9171609,44974884 -h1,15551:13743863,44974884:0,411205,112570 -) -g1,15551:14120039,44974884 -g1,15551:15411753,44974884 -(1,15551:15411753,44974884:0,452978,115847 -r1,15552:21045696,44974884:5633943,568825,115847 -k1,15551:15411753,44974884:-5633943 -) -(1,15551:15411753,44974884:5633943,452978,115847 -k1,15551:15411753,44974884:3277 -h1,15551:21042419,44974884:0,411205,112570 -) -k1,15552:31966991,44974884:10747625 -g1,15552:31966991,44974884 -) -] -) -] -r1,15552:32583029,45680555:26214,4905495,0 -) -] -) -) -g1,15552:32583029,45090731 -) -h1,15552:6630773,45706769:0,0,0 -] -(1,15555:32583029,45706769:0,0,0 -g1,15555:32583029,45706769 -) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15583:37855564,49800853:1179648,16384,0 ) -] -(1,15555:6630773,47279633:25952256,0,0 -h1,15555:6630773,47279633:25952256,0,0 ) -] -h1,15555:4262630,4025873:0,0,0 -] -!20899 +k1,15583:3078556,49800853:-34777008 +) +] +g1,15583:6630773,4812305 +g1,15583:6630773,4812305 +g1,15583:7909380,4812305 +g1,15583:10167095,4812305 +g1,15583:11576774,4812305 +g1,15583:15078362,4812305 +k1,15583:31387652,4812305:16309290 +) +) +] +[1,15583:6630773,45706769:25952256,40108032,0 +(1,15583:6630773,45706769:25952256,40108032,0 +(1,15583:6630773,45706769:0,0,0 +g1,15583:6630773,45706769 +) +[1,15583:6630773,45706769:25952256,40108032,0 +v1,15540:6630773,6254097:0,393216,0 +(1,15540:6630773,9900083:25952256,4039202,196608 +g1,15540:6630773,9900083 +g1,15540:6630773,9900083 +g1,15540:6434165,9900083 +(1,15540:6434165,9900083:0,4039202,196608 +r1,15540:32779637,9900083:26345472,4235810,196608 +k1,15540:6434165,9900083:-26345472 +) +(1,15540:6434165,9900083:26345472,4039202,196608 +[1,15540:6630773,9900083:25952256,3842594,0 +(1,15533:6630773,6461715:25952256,404226,101187 +h1,15533:6630773,6461715:0,0,0 +k1,15533:6630773,6461715:0 +h1,15533:10740667,6461715:0,0,0 +k1,15533:32583029,6461715:21842362 +g1,15533:32583029,6461715 +) +(1,15534:6630773,7127893:25952256,404226,101187 +h1,15534:6630773,7127893:0,0,0 +k1,15534:6630773,7127893:0 +h1,15534:10424521,7127893:0,0,0 +k1,15534:32583029,7127893:22158508 +g1,15534:32583029,7127893 +) +(1,15535:6630773,7794071:25952256,410518,101187 +h1,15535:6630773,7794071:0,0,0 +k1,15535:6630773,7794071:0 +h1,15535:11056813,7794071:0,0,0 +k1,15535:32583029,7794071:21526216 +g1,15535:32583029,7794071 +) +(1,15536:6630773,8460249:25952256,404226,101187 +h1,15536:6630773,8460249:0,0,0 +k1,15536:6630773,8460249:0 +h1,15536:11372958,8460249:0,0,0 +k1,15536:32583030,8460249:21210072 +g1,15536:32583030,8460249 +) +(1,15537:6630773,9126427:25952256,404226,101187 +h1,15537:6630773,9126427:0,0,0 +k1,15537:6630773,9126427:0 +h1,15537:12321395,9126427:0,0,0 +k1,15537:32583029,9126427:20261634 +g1,15537:32583029,9126427 +) +(1,15538:6630773,9792605:25952256,404226,107478 +h1,15538:6630773,9792605:0,0,0 +k1,15538:6630773,9792605:0 +h1,15538:12005250,9792605:0,0,0 +k1,15538:32583030,9792605:20577780 +g1,15538:32583030,9792605 +) +] +) +g1,15540:32583029,9900083 +g1,15540:6630773,9900083 +g1,15540:6630773,9900083 +g1,15540:32583029,9900083 +g1,15540:32583029,9900083 +) +h1,15540:6630773,10096691:0,0,0 +v1,15544:6630773,11986755:0,393216,0 +(1,15573:6630773,27756547:25952256,16163008,616038 +g1,15573:6630773,27756547 +(1,15573:6630773,27756547:25952256,16163008,616038 +(1,15573:6630773,28372585:25952256,16779046,0 +[1,15573:6630773,28372585:25952256,16779046,0 +(1,15573:6630773,28346371:25952256,16726618,0 +r1,15573:6656987,28346371:26214,16726618,0 +[1,15573:6656987,28346371:25899828,16726618,0 +(1,15573:6656987,27756547:25899828,15546970,0 +[1,15573:7246811,27756547:24720180,15546970,0 +(1,15546:7246811,13231923:24720180,1022346,134348 +k1,15544:8744466,13231923:242142 +k1,15544:10703652,13231923:242143 +k1,15544:12335157,13231923:242142 +k1,15544:13842145,13231923:242143 +k1,15544:15597513,13231923:242142 +k1,15544:16455694,13231923:242143 +k1,15544:17901077,13231923:242142 +k1,15544:19334665,13231923:242143 +k1,15544:21278777,13231923:242142 +k1,15544:24268845,13231923:242143 +k1,15544:25502547,13231923:242142 +k1,15544:28528659,13231923:242143 +k1,15544:29386839,13231923:242142 +k1,15544:31966991,13231923:0 +) +(1,15546:7246811,14073411:24720180,513147,134348 +k1,15544:11394334,14073411:167523 +k1,15544:12189691,14073411:167522 +k1,15544:15023219,14073411:167523 +k1,15544:15842170,14073411:167523 +k1,15544:17028777,14073411:167522 +k1,15545:17641257,14073411:167491 +k1,15545:19198143,14073411:167523 +k1,15545:21829164,14073411:167523 +k1,15545:22865038,14073411:167522 +k1,15545:25462636,14073411:167523 +k1,15545:26943501,14073411:167523 +k1,15545:28922438,14073411:167522 +k1,15545:29705999,14073411:167523 +k1,15546:31966991,14073411:0 +) +(1,15546:7246811,14914899:24720180,513147,126483 +k1,15545:10164240,14914899:233074 +k1,15545:12282785,14914899:233074 +k1,15545:13384211,14914899:233074 +k1,15545:15130511,14914899:233074 +k1,15545:15979623,14914899:233074 +k1,15545:19204416,14914899:233074 +k1,15545:20246859,14914899:233073 +k1,15545:21810314,14914899:233074 +k1,15545:22694816,14914899:233074 +k1,15545:25109584,14914899:233074 +k1,15545:26905692,14914899:233074 +k1,15545:28335453,14914899:233074 +k1,15545:29881869,14914899:233074 +k1,15545:31219225,14914899:233074 +k1,15545:31966991,14914899:0 +) +(1,15546:7246811,15756387:24720180,513147,126483 +k1,15545:9305953,15756387:203162 +k1,15545:10921416,15756387:203162 +k1,15545:12692199,15756387:203162 +k1,15545:13914445,15756387:203161 +k1,15545:14532446,15756387:203158 +k1,15545:17009707,15756387:203162 +k1,15545:17895754,15756387:203162 +k1,15545:19666537,15756387:203162 +k1,15545:20225559,15756387:203162 +k1,15545:21938671,15756387:203162 +k1,15545:22757871,15756387:203162 +k1,15545:23316893,15756387:203162 +k1,15545:25014275,15756387:203161 +k1,15545:27311968,15756387:203162 +k1,15545:28142965,15756387:203162 +k1,15545:29549368,15756387:203162 +k1,15545:31966991,15756387:0 +) +(1,15546:7246811,16597875:24720180,513147,134348 +k1,15545:8388094,16597875:272931 +k1,15545:11059643,16597875:272931 +k1,15545:12351659,16597875:272931 +k1,15545:14005433,16597875:272930 +k1,15545:15379369,16597875:272931 +k1,15545:17770424,16597875:272931 +k1,15545:19062440,16597875:272931 +k1,15545:21256231,16597875:272931 +(1,15545:21256231,16597875:0,452978,115847 +r1,15573:24428191,16597875:3171960,568825,115847 +k1,15545:21256231,16597875:-3171960 +) +(1,15545:21256231,16597875:3171960,452978,115847 +k1,15545:21256231,16597875:3277 +h1,15545:24424914,16597875:0,411205,112570 +) +k1,15545:24701122,16597875:272931 +k1,15545:26541673,16597875:272930 +k1,15545:27833689,16597875:272931 +k1,15545:30686772,16597875:272931 +k1,15545:31611131,16597875:272931 +k1,15545:31966991,16597875:0 +) +(1,15546:7246811,17439363:24720180,513147,134348 +g1,15545:10032746,17439363 +k1,15546:31966991,17439363:19839714 +g1,15546:31966991,17439363 +) +(1,15548:7246811,18280851:24720180,513147,134348 +h1,15547:7246811,18280851:983040,0,0 +g1,15547:10060926,18280851 +g1,15547:11279240,18280851 +g1,15547:12791811,18280851 +k1,15548:31966991,18280851:17266116 +g1,15548:31966991,18280851 +) +v1,15550:7246811,19471317:0,393216,0 +(1,15558:7246811,21159140:24720180,2081039,196608 +g1,15558:7246811,21159140 +g1,15558:7246811,21159140 +g1,15558:7050203,21159140 +(1,15558:7050203,21159140:0,2081039,196608 +r1,15573:32163599,21159140:25113396,2277647,196608 +k1,15558:7050203,21159140:-25113396 +) +(1,15558:7050203,21159140:25113396,2081039,196608 +[1,15558:7246811,21159140:24720180,1884431,0 +(1,15552:7246811,19685227:24720180,410518,107478 +(1,15551:7246811,19685227:0,0,0 +g1,15551:7246811,19685227 +g1,15551:7246811,19685227 +g1,15551:6919131,19685227 +(1,15551:6919131,19685227:0,0,0 +) +g1,15551:7246811,19685227 +) +g1,15552:10092122,19685227 +g1,15552:11040560,19685227 +g1,15552:18311911,19685227 +g1,15552:20841077,19685227 +g1,15552:21473369,19685227 +h1,15552:25583263,19685227:0,0,0 +k1,15552:31966991,19685227:6383728 +g1,15552:31966991,19685227 +) +(1,15553:7246811,20351405:24720180,410518,107478 +h1,15553:7246811,20351405:0,0,0 +g1,15553:13569725,20351405 +g1,15553:15150454,20351405 +g1,15553:18311911,20351405 +g1,15553:18944203,20351405 +g1,15553:20841078,20351405 +g1,15553:24002535,20351405 +g1,15553:24634827,20351405 +h1,15553:26215556,20351405:0,0,0 +k1,15553:31966991,20351405:5751435 +g1,15553:31966991,20351405 +) +(1,15557:7246811,21083119:24720180,404226,76021 +(1,15555:7246811,21083119:0,0,0 +g1,15555:7246811,21083119 +g1,15555:7246811,21083119 +g1,15555:6919131,21083119 +(1,15555:6919131,21083119:0,0,0 +) +g1,15555:7246811,21083119 +) +g1,15557:8195248,21083119 +g1,15557:9459831,21083119 +h1,15557:10724414,21083119:0,0,0 +k1,15557:31966990,21083119:21242576 +g1,15557:31966990,21083119 +) +] +) +g1,15558:31966991,21159140 +g1,15558:7246811,21159140 +g1,15558:7246811,21159140 +g1,15558:31966991,21159140 +g1,15558:31966991,21159140 +) +h1,15558:7246811,21355748:0,0,0 +(1,15562:7246811,22721524:24720180,513147,102891 +h1,15561:7246811,22721524:983040,0,0 +k1,15561:9476951,22721524:293551 +k1,15561:11056318,22721524:293551 +k1,15561:13065602,22721524:293551 +k1,15561:14739996,22721524:293550 +k1,15561:16052632,22721524:293551 +k1,15561:18267043,22721524:293551 +k1,15561:20073820,22721524:293551 +k1,15561:21018799,22721524:293551 +k1,15561:22703024,22721524:293551 +k1,15561:24385937,22721524:293550 +k1,15561:26091789,22721524:293551 +k1,15561:27952961,22721524:293551 +k1,15561:29265597,22721524:293551 +k1,15561:31966991,22721524:0 +) +(1,15562:7246811,23563012:24720180,473825,7863 +k1,15562:31966991,23563012:22715434 +g1,15562:31966991,23563012 +) +v1,15564:7246811,24753478:0,393216,0 +(1,15571:7246811,27035651:24720180,2675389,196608 +g1,15571:7246811,27035651 +g1,15571:7246811,27035651 +g1,15571:7050203,27035651 +(1,15571:7050203,27035651:0,2675389,196608 +r1,15573:32163599,27035651:25113396,2871997,196608 +k1,15571:7050203,27035651:-25113396 +) +(1,15571:7050203,27035651:25113396,2675389,196608 +[1,15571:7246811,27035651:24720180,2478781,0 +(1,15566:7246811,24961096:24720180,404226,101187 +(1,15565:7246811,24961096:0,0,0 +g1,15565:7246811,24961096 +g1,15565:7246811,24961096 +g1,15565:6919131,24961096 +(1,15565:6919131,24961096:0,0,0 +) +g1,15565:7246811,24961096 +) +g1,15566:10408268,24961096 +g1,15566:11040560,24961096 +h1,15566:13569725,24961096:0,0,0 +k1,15566:31966991,24961096:18397266 +g1,15566:31966991,24961096 +) +(1,15567:7246811,25627274:24720180,410518,101187 +h1,15567:7246811,25627274:0,0,0 +g1,15567:8195248,25627274 +g1,15567:16098891,25627274 +h1,15567:16415037,25627274:0,0,0 +k1,15567:31966991,25627274:15551954 +g1,15567:31966991,25627274 +) +(1,15568:7246811,26293452:24720180,404226,101187 +h1,15568:7246811,26293452:0,0,0 +g1,15568:7562957,26293452 +g1,15568:7879103,26293452 +k1,15568:7879103,26293452:0 +h1,15568:14518162,26293452:0,0,0 +k1,15568:31966990,26293452:17448828 +g1,15568:31966990,26293452 +) +(1,15569:7246811,26959630:24720180,404226,76021 +h1,15569:7246811,26959630:0,0,0 +h1,15569:7562957,26959630:0,0,0 +k1,15569:31966991,26959630:24404034 +g1,15569:31966991,26959630 +) +] +) +g1,15571:31966991,27035651 +g1,15571:7246811,27035651 +g1,15571:7246811,27035651 +g1,15571:31966991,27035651 +g1,15571:31966991,27035651 +) +h1,15571:7246811,27232259:0,0,0 +] +) +] +r1,15573:32583029,28346371:26214,16726618,0 +) +] +) +) +g1,15573:32583029,27756547 +) +h1,15573:6630773,28372585:0,0,0 +(1,15575:6630773,31180153:25952256,32768,229376 +(1,15575:6630773,31180153:0,32768,229376 +(1,15575:6630773,31180153:5505024,32768,229376 +r1,15575:12135797,31180153:5505024,262144,229376 +) +k1,15575:6630773,31180153:-5505024 +) +(1,15575:6630773,31180153:25952256,32768,0 +r1,15575:32583029,31180153:25952256,32768,0 +) +) +(1,15575:6630773,32784481:25952256,606339,151780 +(1,15575:6630773,32784481:1974731,582746,14155 +g1,15575:6630773,32784481 +g1,15575:8605504,32784481 +) +g1,15575:10263303,32784481 +g1,15575:13074798,32784481 +g1,15575:14784501,32784481 +k1,15575:32583029,32784481:13584825 +g1,15575:32583029,32784481 +) +(1,15579:6630773,34019185:25952256,513147,134348 +k1,15578:7727147,34019185:142825 +k1,15578:9358294,34019185:142824 +k1,15578:10895070,34019185:142825 +k1,15578:12056980,34019185:142825 +k1,15578:14580727,34019185:142824 +k1,15578:15382844,34019185:142825 +k1,15578:16839011,34019185:142825 +k1,15578:17667997,34019185:142824 +k1,15578:18268919,34019185:142825 +k1,15578:20521348,34019185:142825 +k1,15578:22053535,34019185:142824 +k1,15578:24575972,34019185:142825 +k1,15578:28438620,34019185:142825 +k1,15578:29240736,34019185:142824 +k1,15578:30402646,34019185:142825 +k1,15578:32583029,34019185:0 +) +(1,15579:6630773,34860673:25952256,513147,134348 +k1,15578:8336565,34860673:192566 +k1,15578:9476783,34860673:192567 +k1,15578:10457747,34860673:192566 +k1,15578:13725263,34860673:192567 +k1,15578:15114516,34860673:192566 +k1,15578:16898953,34860673:192567 +k1,15578:19936437,34860673:192566 +k1,15578:20660501,34860673:192567 +k1,15578:22137573,34860673:192566 +k1,15578:25092483,34860673:192567 +k1,15578:28339027,34860673:192566 +k1,15578:31107814,34860673:192567 +k1,15578:32583029,34860673:0 +) +(1,15579:6630773,35702161:25952256,513147,134348 +k1,15578:9648152,35702161:255036 +k1,15578:11489158,35702161:255035 +k1,15578:14910894,35702161:255036 +k1,15578:16185015,35702161:255036 +k1,15578:18524095,35702161:255035 +k1,15578:20292357,35702161:255036 +k1,15578:21495044,35702161:255036 +k1,15578:22733120,35702161:255036 +k1,15578:25056471,35702161:255035 +k1,15578:26502952,35702161:255036 +k1,15578:27741028,35702161:255036 +k1,15578:29948381,35702161:255035 +k1,15578:30831252,35702161:255036 +k1,15578:32583029,35702161:0 +) +(1,15579:6630773,36543649:25952256,513147,134348 +k1,15578:8776775,36543649:274949 +k1,15578:10197948,36543649:274948 +k1,15578:12170935,36543649:274949 +k1,15578:15807881,36543649:274949 +k1,15578:17472192,36543649:274948 +k1,15578:19060483,36543649:274949 +k1,15578:19951470,36543649:274949 +k1,15578:20582279,36543649:274949 +k1,15578:22833137,36543649:274948 +k1,15578:26565110,36543649:274949 +k1,15578:27708411,36543649:274949 +k1,15578:29513625,36543649:274948 +k1,15578:30440002,36543649:274949 +k1,15578:32583029,36543649:0 +) +(1,15579:6630773,37385137:25952256,513147,134348 +k1,15578:8121858,37385137:206579 +k1,15578:9311477,37385137:206579 +k1,15578:11586372,37385137:206579 +k1,15578:12784510,37385137:206578 +k1,15578:14531185,37385137:206579 +k1,15578:15353802,37385137:206579 +k1,15578:18231628,37385137:206579 +k1,15578:21492185,37385137:206579 +k1,15578:24274984,37385137:206579 +k1,15578:26264142,37385137:206579 +k1,15578:26948477,37385137:206578 +k1,15578:28174141,37385137:206579 +k1,15578:30211796,37385137:206579 +k1,15578:31931601,37385137:206579 +k1,15578:32583029,37385137:0 +) +(1,15579:6630773,38226625:25952256,513147,134348 +k1,15578:8789572,38226625:229419 +k1,15578:10038075,38226625:229418 +k1,15578:11580836,38226625:229419 +k1,15578:12341752,38226625:229419 +k1,15578:14176803,38226625:229419 +k1,15578:17245241,38226625:229418 +k1,15578:18126088,38226625:229419 +k1,15578:19103273,38226625:229419 +k1,15578:20197081,38226625:229388 +k1,15578:23261587,38226625:229419 +k1,15578:24359357,38226625:229418 +k1,15578:25874592,38226625:229419 +k1,15578:27634277,38226625:229419 +k1,15578:28515124,38226625:229419 +k1,15578:29492308,38226625:229418 +k1,15578:31931601,38226625:229419 +k1,15578:32583029,38226625:0 +) +(1,15579:6630773,39068113:25952256,513147,134348 +k1,15578:8614903,39068113:168127 +k1,15578:9802115,39068113:168127 +k1,15578:10834632,39068113:168097 +k1,15578:11950410,39068113:168127 +k1,15578:13101577,39068113:168127 +k1,15578:15338020,39068113:168127 +k1,15578:16697592,39068113:168127 +k1,15578:18644366,39068113:168127 +k1,15578:21272715,39068113:168127 +k1,15578:23799484,39068113:168128 +k1,15578:28037397,39068113:168127 +k1,15578:29014894,39068113:168127 +k1,15578:30202106,39068113:168127 +k1,15578:32583029,39068113:0 +) +(1,15579:6630773,39909601:25952256,505283,134348 +k1,15578:8448208,39909601:231464 +k1,15578:9362557,39909601:231464 +k1,15578:12377990,39909601:231464 +k1,15578:13473842,39909601:231432 +k1,15578:17368769,39909601:231464 +k1,15578:18981077,39909601:231464 +k1,15578:19744038,39909601:231464 +k1,15578:23083219,39909601:231464 +k1,15578:26523981,39909601:231464 +k1,15578:28453483,39909601:231464 +k1,15578:32168186,39909601:231464 +k1,15579:32583029,39909601:0 +) +(1,15579:6630773,40751089:25952256,505283,134348 +k1,15579:32583029,40751089:22868132 +g1,15579:32583029,40751089 +) +v1,15581:6630773,42116865:0,393216,0 +(1,15583:6630773,44393194:25952256,2669545,589824 +g1,15583:6630773,44393194 +(1,15583:6630773,44393194:25952256,2669545,589824 +(1,15583:6630773,44983018:25952256,3259369,0 +[1,15583:6630773,44983018:25952256,3259369,0 +(1,15583:6630773,44983018:25952256,3233155,0 +r1,15583:6656987,44983018:26214,3233155,0 +[1,15583:6656987,44983018:25899828,3233155,0 +(1,15583:6656987,44393194:25899828,2053507,0 +[1,15583:7246811,44393194:24720180,2053507,0 +(1,15583:7246811,43425223:24720180,1085536,298548 +(1,15581:7246811,43425223:0,1085536,298548 +r1,15583:8753226,43425223:1506415,1384084,298548 +k1,15581:7246811,43425223:-1506415 +) +(1,15581:7246811,43425223:1506415,1085536,298548 +) +k1,15581:9015253,43425223:262027 +k1,15581:9015253,43425223:0 +k1,15582:10319302,43425223:262027 +k1,15582:13778175,43425223:262027 +k1,15582:17556209,43425223:262027 +k1,15582:18801276,43425223:262027 +k1,15582:21131619,43425223:262027 +k1,15582:23574029,43425223:262027 +k1,15582:25591110,43425223:262027 +k1,15582:28224885,43425223:262027 +k1,15582:31966991,43425223:0 +) +(1,15583:7246811,44266711:24720180,505283,126483 +k1,15582:10820013,44266711:268221 +k1,15582:12279679,44266711:268221 +k1,15582:14919648,44266711:268221 +k1,15582:15800631,44266711:268221 +k1,15582:17670552,44266711:268221 +k1,15582:19095482,44266711:268220 +k1,15582:20609542,44266711:268221 +k1,15582:21919785,44266711:268221 +k1,15582:23207091,44266711:268221 +k1,15582:25552803,44266711:268221 +k1,15582:28450984,44266711:268221 +k1,15582:31966991,44266711:0 +) +] +) +] +r1,15583:32583029,44983018:26214,3233155,0 +) +] +) +) +g1,15583:32583029,44393194 +) +] +(1,15583:32583029,45706769:0,0,0 +g1,15583:32583029,45706769 +) +) +] +(1,15583:6630773,47279633:25952256,0,0 +h1,15583:6630773,47279633:25952256,0,0 +) +] +h1,15583:4262630,4025873:0,0,0 +] +!19952 }304 -Input:2360:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2361:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2362:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2363:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2364:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2365:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2366:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:2354:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2355:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2356:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2357:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2358:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2359:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2360:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2361:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2362:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2363:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 {305 -[1,15631:4262630,47279633:28320399,43253760,0 -(1,15631:4262630,4025873:0,0,0 -[1,15631:-473657,4025873:25952256,0,0 -(1,15631:-473657,-710414:25952256,0,0 -h1,15631:-473657,-710414:0,0,0 -(1,15631:-473657,-710414:0,0,0 -(1,15631:-473657,-710414:0,0,0 -g1,15631:-473657,-710414 -(1,15631:-473657,-710414:65781,0,65781 -g1,15631:-407876,-710414 -[1,15631:-407876,-644633:0,0,0 +[1,15650:4262630,47279633:28320399,43253760,0 +(1,15650:4262630,4025873:0,0,0 +[1,15650:-473657,4025873:25952256,0,0 +(1,15650:-473657,-710414:25952256,0,0 +h1,15650:-473657,-710414:0,0,0 +(1,15650:-473657,-710414:0,0,0 +(1,15650:-473657,-710414:0,0,0 +g1,15650:-473657,-710414 +(1,15650:-473657,-710414:65781,0,65781 +g1,15650:-407876,-710414 +[1,15650:-407876,-644633:0,0,0 ] ) -k1,15631:-473657,-710414:-65781 +k1,15650:-473657,-710414:-65781 ) ) -k1,15631:25478599,-710414:25952256 -g1,15631:25478599,-710414 +k1,15650:25478599,-710414:25952256 +g1,15650:25478599,-710414 ) ] ) -[1,15631:6630773,47279633:25952256,43253760,0 -[1,15631:6630773,4812305:25952256,786432,0 -(1,15631:6630773,4812305:25952256,505283,126483 -(1,15631:6630773,4812305:25952256,505283,126483 -g1,15631:3078558,4812305 -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,2439708:0,1703936,0 -k1,15631:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15631:2537886,2439708:1179648,16384,0 +[1,15650:6630773,47279633:25952256,43253760,0 +[1,15650:6630773,4812305:25952256,786432,0 +(1,15650:6630773,4812305:25952256,505283,126483 +(1,15650:6630773,4812305:25952256,505283,126483 +g1,15650:3078558,4812305 +[1,15650:3078558,4812305:0,0,0 +(1,15650:3078558,2439708:0,1703936,0 +k1,15650:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15650:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15631:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15650:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,2439708:0,1703936,0 -g1,15631:29030814,2439708 -g1,15631:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15631:36151628,1915420:16384,1179648,0 +[1,15650:3078558,4812305:0,0,0 +(1,15650:3078558,2439708:0,1703936,0 +g1,15650:29030814,2439708 +g1,15650:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15650:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15631:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15650:37855564,2439708:1179648,16384,0 +) +) +k1,15650:3078556,2439708:-34777008 +) +] +[1,15650:3078558,4812305:0,0,0 +(1,15650:3078558,49800853:0,16384,2228224 +k1,15650:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15650:2537886,49800853:1179648,16384,0 ) +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15650:3078558,51504789:16384,1179648,0 ) -k1,15631:3078556,2439708:-34777008 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,49800853:0,16384,2228224 -k1,15631:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15631:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15631:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +) +] +[1,15650:3078558,4812305:0,0,0 +(1,15650:3078558,49800853:0,16384,2228224 +g1,15650:29030814,49800853 +g1,15650:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15650:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15650:37855564,49800853:1179648,16384,0 ) ) +k1,15650:3078556,49800853:-34777008 +) ] -[1,15631:3078558,4812305:0,0,0 -(1,15631:3078558,49800853:0,16384,2228224 -g1,15631:29030814,49800853 -g1,15631:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15631:36151628,51504789:16384,1179648,0 +g1,15650:6630773,4812305 +k1,15650:25146660,4812305:17320510 +g1,15650:26880087,4812305 +g1,15650:29193507,4812305 +g1,15650:30603186,4812305 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 ) ] +[1,15650:6630773,45706769:25952256,40108032,0 +(1,15650:6630773,45706769:25952256,40108032,0 +(1,15650:6630773,45706769:0,0,0 +g1,15650:6630773,45706769 ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15631:37855564,49800853:1179648,16384,0 -) -) -k1,15631:3078556,49800853:-34777008 -) -] -g1,15631:6630773,4812305 -k1,15631:25146660,4812305:17320510 -g1,15631:26880087,4812305 -g1,15631:29193507,4812305 -g1,15631:30603186,4812305 -) -) -] -[1,15631:6630773,45706769:25952256,40108032,0 -(1,15631:6630773,45706769:25952256,40108032,0 -(1,15631:6630773,45706769:0,0,0 -g1,15631:6630773,45706769 -) -[1,15631:6630773,45706769:25952256,40108032,0 -(1,15555:6630773,6254097:25952256,513147,134348 -h1,15554:6630773,6254097:983040,0,0 -k1,15554:8174694,6254097:146038 -k1,15554:11081160,6254097:146090 -k1,15554:14253047,6254097:146090 -k1,15554:16284609,6254097:146091 -k1,15554:17818752,6254097:146090 -k1,15554:19358793,6254097:146090 -k1,15554:23020891,6254097:146091 -k1,15554:23928509,6254097:146090 -k1,15554:26101628,6254097:146090 -k1,15554:27266804,6254097:146091 -k1,15554:31923737,6254097:146090 -k1,15554:32583029,6254097:0 -) -(1,15555:6630773,7095585:25952256,513147,126483 -k1,15554:7840871,7095585:191013 -k1,15554:10794227,7095585:191013 -k1,15554:12179961,7095585:191013 -k1,15554:13938594,7095585:191012 -k1,15554:14544442,7095585:191005 -k1,15554:16405312,7095585:191013 -k1,15554:17224160,7095585:191013 -k1,15554:19576550,7095585:191013 -k1,15554:21464290,7095585:191013 -k1,15554:24681099,7095585:191012 -k1,15554:27052495,7095585:191013 -k1,15554:27991274,7095585:191013 -k1,15554:31195632,7095585:191013 -k1,15554:32583029,7095585:0 -) -(1,15555:6630773,7937073:25952256,505283,134348 -k1,15554:8748543,7937073:269655 -k1,15554:10117891,7937073:269654 -k1,15554:11038974,7937073:269655 -k1,15554:12172977,7937073:269583 -k1,15554:15932424,7937073:269655 -k1,15554:17478719,7937073:269654 -k1,15554:19483767,7937073:269655 -(1,15554:19483767,7937073:0,452978,115847 -r1,15554:21952304,7937073:2468537,568825,115847 -k1,15554:19483767,7937073:-2468537 -) -(1,15554:19483767,7937073:2468537,452978,115847 -k1,15554:19483767,7937073:3277 -h1,15554:21949027,7937073:0,411205,112570 -) -k1,15554:22221958,7937073:269654 -k1,15554:23174498,7937073:269655 -(1,15554:23174498,7937073:0,452978,115847 -r1,15554:25994747,7937073:2820249,568825,115847 -k1,15554:23174498,7937073:-2820249 -) -(1,15554:23174498,7937073:2820249,452978,115847 -k1,15554:23174498,7937073:3277 -h1,15554:25991470,7937073:0,411205,112570 -) -k1,15554:26471496,7937073:269655 -k1,15554:29779399,7937073:269654 -k1,15554:32583029,7937073:0 -) -(1,15555:6630773,8778561:25952256,513147,134348 -k1,15554:7700979,8778561:252317 -k1,15554:8972381,8778561:252317 -k1,15554:12335692,8778561:252317 -k1,15554:14886357,8778561:252317 -k1,15554:15790101,8778561:252316 -k1,15554:18246394,8778561:252317 -k1,15554:18854571,8778561:252317 -k1,15554:20089928,8778561:252317 -k1,15554:22080260,8778561:252317 -k1,15554:23900198,8778561:252317 -k1,15554:24508375,8778561:252317 -k1,15554:25743732,8778561:252317 -k1,15554:27444395,8778561:252317 -k1,15554:28228209,8778561:252317 -k1,15554:29344892,8778561:252263 -k1,15554:32168186,8778561:252317 -k1,15555:32583029,8778561:0 -) -(1,15555:6630773,9620049:25952256,513147,126483 -k1,15554:9627037,9620049:235888 -k1,15554:12888721,9620049:235887 -k1,15554:14618175,9620049:235888 -k1,15554:15540224,9620049:235887 -(1,15554:15540224,9620049:0,452978,115847 -r1,15554:19063896,9620049:3523672,568825,115847 -k1,15554:15540224,9620049:-3523672 -) -(1,15554:15540224,9620049:3523672,452978,115847 -k1,15554:15540224,9620049:3277 -h1,15554:19060619,9620049:0,411205,112570 -) -k1,15554:19473454,9620049:235888 -k1,15554:21717364,9620049:235887 -k1,15554:27010010,9620049:235888 -k1,15554:27777395,9620049:235888 -k1,15554:28877665,9620049:235850 -k1,15554:31510860,9620049:235888 -k1,15554:32583029,9620049:0 -) -(1,15555:6630773,10461537:25952256,513147,126483 -k1,15554:8440583,10461537:242189 -k1,15554:9701857,10461537:242189 -k1,15554:11243626,10461537:242190 -k1,15554:12152971,10461537:242189 -k1,15554:12809960,10461537:242146 -k1,15554:14548336,10461537:242189 -k1,15554:17013506,10461537:242189 -k1,15554:22910797,10461537:242189 -k1,15554:26178784,10461537:242190 -k1,15554:27805093,10461537:242189 -k1,15554:29066367,10461537:242189 -k1,15554:32583029,10461537:0 -) -(1,15555:6630773,11303025:25952256,513147,134348 -k1,15554:8962937,11303025:172753 -k1,15554:10330411,11303025:172753 -k1,15554:12070785,11303025:172753 -k1,15554:13262622,11303025:172752 -k1,15554:14816219,11303025:172753 -k1,15554:15656128,11303025:172753 -k1,15554:16417394,11303025:172753 -k1,15554:17786834,11303025:172753 -k1,15554:19930255,11303025:172753 -k1,15554:21971439,11303025:172753 -k1,15554:23248474,11303025:172753 -k1,15554:24168992,11303025:172752 -k1,15554:27180765,11303025:172753 -k1,15554:28004946,11303025:172753 -k1,15554:29774156,11303025:172753 -k1,15554:32583029,11303025:0 -) -(1,15555:6630773,12144513:25952256,513147,126483 -g1,15554:8716128,12144513 -g1,15554:10047164,12144513 -g1,15554:11110813,12144513 -g1,15554:12257693,12144513 -g1,15554:14342393,12144513 -g1,15554:14956465,12144513 -g1,15554:15687191,12144513 -k1,15555:32583029,12144513:13938198 -g1,15555:32583029,12144513 -) -v1,15557:6630773,13279929:0,393216,0 -(1,15564:6630773,14326740:25952256,1440027,196608 -g1,15564:6630773,14326740 -g1,15564:6630773,14326740 -g1,15564:6434165,14326740 -(1,15564:6434165,14326740:0,1440027,196608 -r1,15564:32779637,14326740:26345472,1636635,196608 -k1,15564:6434165,14326740:-26345472 -) -(1,15564:6434165,14326740:26345472,1440027,196608 -[1,15564:6630773,14326740:25952256,1243419,0 -(1,15559:6630773,13493839:25952256,410518,101187 -(1,15558:6630773,13493839:0,0,0 -g1,15558:6630773,13493839 -g1,15558:6630773,13493839 -g1,15558:6303093,13493839 -(1,15558:6303093,13493839:0,0,0 -) -g1,15558:6630773,13493839 -) -k1,15559:6630773,13493839:0 -k1,15559:6630773,13493839:0 -h1,15559:16431289,13493839:0,0,0 -k1,15559:32583029,13493839:16151740 -g1,15559:32583029,13493839 -) -(1,15563:6630773,14225553:25952256,410518,101187 -(1,15561:6630773,14225553:0,0,0 -g1,15561:6630773,14225553 -g1,15561:6630773,14225553 -g1,15561:6303093,14225553 -(1,15561:6303093,14225553:0,0,0 -) -g1,15561:6630773,14225553 -) -g1,15563:7579210,14225553 -g1,15563:8843793,14225553 -k1,15563:8843793,14225553:0 -h1,15563:12953687,14225553:0,0,0 -k1,15563:32583029,14225553:19629342 -g1,15563:32583029,14225553 -) -] -) -g1,15564:32583029,14326740 -g1,15564:6630773,14326740 -g1,15564:6630773,14326740 -g1,15564:32583029,14326740 -g1,15564:32583029,14326740 -) -h1,15564:6630773,14523348:0,0,0 -v1,15568:6630773,16303313:0,393216,0 -(1,15589:6630773,28513512:25952256,12603415,616038 -g1,15589:6630773,28513512 -(1,15589:6630773,28513512:25952256,12603415,616038 -(1,15589:6630773,29129550:25952256,13219453,0 -[1,15589:6630773,29129550:25952256,13219453,0 -(1,15589:6630773,29103336:25952256,13167025,0 -r1,15589:6656987,29103336:26214,13167025,0 -[1,15589:6656987,29103336:25899828,13167025,0 -(1,15589:6656987,28513512:25899828,11987377,0 -[1,15589:7246811,28513512:24720180,11987377,0 -(1,15572:7246811,17611671:24720180,1085536,298548 -(1,15568:7246811,17611671:0,1085536,298548 -r1,15589:8753226,17611671:1506415,1384084,298548 -k1,15568:7246811,17611671:-1506415 -) -(1,15568:7246811,17611671:1506415,1085536,298548 -) -k1,15568:9025392,17611671:272166 -k1,15568:9025392,17611671:0 -k1,15569:9297559,17611671:272167 -k1,15570:9297559,17611671:0 -k1,15571:11344440,17611671:272166 -k1,15571:12232645,17611671:272167 -k1,15571:13956433,17611671:272166 -k1,15571:15420045,17611671:272167 -k1,15571:17445299,17611671:272166 -k1,15571:19638326,17611671:272167 -k1,15571:22250127,17611671:272166 -k1,15571:23138332,17611671:272167 -k1,15571:24393538,17611671:272166 -k1,15571:26444352,17611671:272167 -k1,15571:27248015,17611671:272166 -k1,15571:29945014,17611671:272167 -k1,15571:31611131,17611671:272166 -k1,15571:31966991,17611671:0 -) -(1,15572:7246811,18453159:24720180,513147,102891 -k1,15571:10006175,18453159:225742 -k1,15571:11868351,18453159:225742 -k1,15571:15068771,18453159:225741 -h1,15571:15275865,18453159:0,0,0 -k1,15571:16277553,18453159:225742 -k1,15571:18389421,18453159:225742 -k1,15571:22555187,18453159:225742 -k1,15571:23239026,18453159:225742 -k1,15571:23996265,18453159:225742 -k1,15571:26646838,18453159:225741 -k1,15571:28266531,18453159:225742 -k1,15571:28848133,18453159:225742 -k1,15571:31966991,18453159:0 -) -(1,15572:7246811,19294647:24720180,505283,126483 -k1,15571:10445020,19294647:223530 -h1,15571:10652114,19294647:0,0,0 -k1,15571:11651590,19294647:223530 -k1,15571:14992668,19294647:223530 -h1,15571:15199762,19294647:0,0,0 -k1,15571:16025568,19294647:223530 -k1,15571:16780595,19294647:223530 -k1,15571:17774828,19294647:223530 -k1,15571:20133521,19294647:223530 -k1,15571:23331730,19294647:223530 -k1,15571:24171298,19294647:223530 -k1,15571:24809647,19294647:223506 -k1,15571:26224622,19294647:223530 -k1,15571:30038214,19294647:223530 -k1,15571:30947906,19294647:223530 -k1,15571:31966991,19294647:0 -) -(1,15572:7246811,20136135:24720180,513147,134348 -k1,15571:8950966,20136135:215832 -k1,15571:9826090,20136135:215832 -k1,15571:10812625,20136135:215832 -k1,15571:14353098,20136135:215832 -k1,15571:16763075,20136135:215832 -k1,15571:19918852,20136135:215832 -k1,15571:20793975,20136135:215831 -k1,15571:24314788,20136135:215832 -k1,15571:25762697,20136135:215832 -k1,15571:28257216,20136135:215832 -h1,15571:29227804,20136135:0,0,0 -k1,15571:29443636,20136135:215832 -k1,15571:30468838,20136135:215832 -k1,15571:31966991,20136135:0 -) -(1,15572:7246811,20977623:24720180,513147,126483 -h1,15571:8043729,20977623:0,0,0 -k1,15571:8696759,20977623:272266 -k1,15571:10658542,20977623:272265 -k1,15571:11546846,20977623:272266 -k1,15571:12233882,20977623:272193 -k1,15571:12862007,20977623:272265 -k1,15571:15667895,20977623:272266 -k1,15571:17576595,20977623:272266 -h1,15571:17783689,20977623:0,0,0 -k1,15571:18658230,20977623:272265 -k1,15571:20034778,20977623:272266 -k1,15571:21054810,20977623:272266 -k1,15571:22840301,20977623:272265 -k1,15571:24060218,20977623:272266 -k1,15571:25315524,20977623:272266 -k1,15571:27366437,20977623:272266 -k1,15571:29524828,20977623:272265 -k1,15571:30928901,20977623:272266 -k1,15571:31966991,20977623:0 -) -(1,15572:7246811,21819111:24720180,505283,126483 -k1,15571:8658850,21819111:220594 -k1,15571:11435348,21819111:220594 -k1,15571:14774800,21819111:220594 -h1,15571:14981894,21819111:0,0,0 -k1,15571:16199946,21819111:220594 -k1,15571:16952038,21819111:220595 -k1,15571:18712728,21819111:220594 -k1,15571:20308923,21819111:220594 -k1,15571:22415643,21819111:220594 -k1,15571:26830541,21819111:220594 -k1,15571:31571809,21819111:220594 -h1,15571:31571809,21819111:0,0,0 -k1,15571:31966991,21819111:0 -) -(1,15572:7246811,22660599:24720180,513147,126483 -k1,15571:9691413,22660599:264219 -k1,15571:10703398,22660599:264219 -k1,15571:13096883,22660599:264220 -k1,15571:16374447,22660599:264219 -k1,15571:17290094,22660599:264219 -h1,15571:17290094,22660599:0,0,0 -k1,15571:18344677,22660599:264219 -k1,15571:19260324,22660599:264219 -k1,15571:21667570,22660599:264219 -k1,15571:25447797,22660599:264220 -k1,15571:26903461,22660599:264219 -k1,15571:27699177,22660599:264219 -k1,15571:28982481,22660599:264219 -k1,15571:31966991,22660599:0 -) -(1,15572:7246811,23502087:24720180,505283,7863 -g1,15571:8959266,23502087 -g1,15571:9774533,23502087 -g1,15571:11177003,23502087 -k1,15572:31966991,23502087:19034278 -g1,15572:31966991,23502087 -) -v1,15574:7246811,24692553:0,393216,0 -(1,15587:7246811,27792616:24720180,3493279,196608 -g1,15587:7246811,27792616 -g1,15587:7246811,27792616 -g1,15587:7050203,27792616 -(1,15587:7050203,27792616:0,3493279,196608 -r1,15589:32163599,27792616:25113396,3689887,196608 -k1,15587:7050203,27792616:-25113396 -) -(1,15587:7050203,27792616:25113396,3493279,196608 -[1,15587:7246811,27792616:24720180,3296671,0 -(1,15576:7246811,24906463:24720180,410518,101187 -(1,15575:7246811,24906463:0,0,0 -g1,15575:7246811,24906463 -g1,15575:7246811,24906463 -g1,15575:6919131,24906463 -(1,15575:6919131,24906463:0,0,0 -) -g1,15575:7246811,24906463 -) -k1,15576:7246811,24906463:0 -k1,15576:7246811,24906463:0 -h1,15576:17047327,24906463:0,0,0 -k1,15576:31966991,24906463:14919664 -g1,15576:31966991,24906463 -) -(1,15580:7246811,25638177:24720180,410518,101187 -(1,15578:7246811,25638177:0,0,0 -g1,15578:7246811,25638177 -g1,15578:7246811,25638177 -g1,15578:6919131,25638177 -(1,15578:6919131,25638177:0,0,0 -) -g1,15578:7246811,25638177 -) -g1,15580:8195248,25638177 -g1,15580:9459831,25638177 -k1,15580:9459831,25638177:0 -h1,15580:13569725,25638177:0,0,0 -k1,15580:31966991,25638177:18397266 -g1,15580:31966991,25638177 -) -(1,15582:7246811,26959715:24720180,410518,101187 -(1,15581:7246811,26959715:0,0,0 -g1,15581:7246811,26959715 -g1,15581:7246811,26959715 -g1,15581:6919131,26959715 -(1,15581:6919131,26959715:0,0,0 -) -g1,15581:7246811,26959715 -) -k1,15582:7246811,26959715:0 -k1,15582:7246811,26959715:0 -h1,15582:17363473,26959715:0,0,0 -k1,15582:31966991,26959715:14603518 -g1,15582:31966991,26959715 -) -(1,15586:7246811,27691429:24720180,410518,101187 -(1,15584:7246811,27691429:0,0,0 -g1,15584:7246811,27691429 -g1,15584:7246811,27691429 -g1,15584:6919131,27691429 -(1,15584:6919131,27691429:0,0,0 -) -g1,15584:7246811,27691429 -) -g1,15586:8195248,27691429 -g1,15586:9459831,27691429 -k1,15586:9459831,27691429:0 -h1,15586:13569725,27691429:0,0,0 -k1,15586:31966991,27691429:18397266 -g1,15586:31966991,27691429 -) -] -) -g1,15587:31966991,27792616 -g1,15587:7246811,27792616 -g1,15587:7246811,27792616 -g1,15587:31966991,27792616 -g1,15587:31966991,27792616 -) -h1,15587:7246811,27989224:0,0,0 -] -) -] -r1,15589:32583029,29103336:26214,13167025,0 -) -] -) -) -g1,15589:32583029,28513512 -) -h1,15589:6630773,29129550:0,0,0 -(1,15592:6630773,30440276:25952256,513147,126483 -h1,15591:6630773,30440276:983040,0,0 -k1,15591:9020102,30440276:209602 -k1,15591:14195367,30440276:209602 -k1,15591:17100465,30440276:209602 -k1,15591:17961495,30440276:209602 -(1,15591:17961495,30440276:0,452978,115847 -r1,15591:21485167,30440276:3523672,568825,115847 -k1,15591:17961495,30440276:-3523672 -) -(1,15591:17961495,30440276:3523672,452978,115847 -k1,15591:17961495,30440276:3277 -h1,15591:21481890,30440276:0,411205,112570 -) -k1,15591:21694770,30440276:209603 -k1,15591:22435869,30440276:209602 -(1,15591:22435869,30440276:0,452978,115847 -r1,15591:25607829,30440276:3171960,568825,115847 -k1,15591:22435869,30440276:-3171960 -) -(1,15591:22435869,30440276:3171960,452978,115847 -k1,15591:22435869,30440276:3277 -h1,15591:25604552,30440276:0,411205,112570 -) -k1,15591:25817431,30440276:209602 -k1,15591:27218478,30440276:209602 -k1,15591:29962357,30440276:209602 -k1,15591:31191044,30440276:209602 -k1,15591:32583029,30440276:0 -) -(1,15592:6630773,31281764:25952256,513147,134348 -g1,15591:8278348,31281764 -g1,15591:9129005,31281764 -g1,15591:10347319,31281764 -g1,15591:13908545,31281764 -g1,15591:16202305,31281764 -g1,15591:17969155,31281764 -g1,15591:18524244,31281764 -g1,15591:19813337,31281764 -g1,15591:20995606,31281764 -k1,15592:32583029,31281764:9965407 -g1,15592:32583029,31281764 -) -v1,15594:6630773,32417181:0,393216,0 -(1,15601:6630773,33438826:25952256,1414861,196608 -g1,15601:6630773,33438826 -g1,15601:6630773,33438826 -g1,15601:6434165,33438826 -(1,15601:6434165,33438826:0,1414861,196608 -r1,15601:32779637,33438826:26345472,1611469,196608 -k1,15601:6434165,33438826:-26345472 -) -(1,15601:6434165,33438826:26345472,1414861,196608 -[1,15601:6630773,33438826:25952256,1218253,0 -(1,15596:6630773,32631091:25952256,410518,101187 -(1,15595:6630773,32631091:0,0,0 -g1,15595:6630773,32631091 -g1,15595:6630773,32631091 -g1,15595:6303093,32631091 -(1,15595:6303093,32631091:0,0,0 -) -g1,15595:6630773,32631091 -) -k1,15596:6630773,32631091:0 -k1,15596:6630773,32631091:0 -h1,15596:16115144,32631091:0,0,0 -k1,15596:32583029,32631091:16467885 -g1,15596:32583029,32631091 -) -(1,15600:6630773,33362805:25952256,404226,76021 -(1,15598:6630773,33362805:0,0,0 -g1,15598:6630773,33362805 -g1,15598:6630773,33362805 -g1,15598:6303093,33362805 -(1,15598:6303093,33362805:0,0,0 -) -g1,15598:6630773,33362805 -) -g1,15600:7579210,33362805 -g1,15600:8843793,33362805 -h1,15600:11689104,33362805:0,0,0 -k1,15600:32583028,33362805:20893924 -g1,15600:32583028,33362805 -) -] -) -g1,15601:32583029,33438826 -g1,15601:6630773,33438826 -g1,15601:6630773,33438826 -g1,15601:32583029,33438826 -g1,15601:32583029,33438826 -) -h1,15601:6630773,33635434:0,0,0 -(1,15606:6630773,34946160:25952256,505283,134348 -h1,15605:6630773,34946160:983040,0,0 -k1,15605:10935862,34946160:201880 -(1,15605:10935862,34946160:0,452978,122846 -r1,15605:13404399,34946160:2468537,575824,122846 -k1,15605:10935862,34946160:-2468537 -) -(1,15605:10935862,34946160:2468537,452978,122846 -k1,15605:10935862,34946160:3277 -h1,15605:13401122,34946160:0,411205,112570 -) -k1,15605:13606279,34946160:201880 -k1,15605:14999604,34946160:201880 -(1,15605:14999604,34946160:0,452978,115847 -r1,15605:17468141,34946160:2468537,568825,115847 -k1,15605:14999604,34946160:-2468537 -) -(1,15605:14999604,34946160:2468537,452978,115847 -k1,15605:14999604,34946160:3277 -h1,15605:17464864,34946160:0,411205,112570 -) -k1,15605:17670020,34946160:201879 -k1,15605:18976182,34946160:201880 -k1,15605:19925828,34946160:201880 -k1,15605:21640934,34946160:201880 -k1,15605:22494242,34946160:201880 -k1,15605:23674575,34946160:201880 -k1,15605:24895540,34946160:201880 -k1,15605:26545765,34946160:201879 -k1,15605:27399073,34946160:201880 -k1,15605:28620038,34946160:201880 -k1,15605:31166141,34946160:201880 -k1,15606:32583029,34946160:0 -) -(1,15606:6630773,35787648:25952256,505283,134348 -g1,15605:8212812,35787648 -g1,15605:11304145,35787648 -g1,15605:12694819,35787648 -g1,15605:13545476,35787648 -g1,15605:14679248,35787648 -g1,15605:15234337,35787648 -g1,15605:18325670,35787648 -g1,15605:19211061,35787648 -g1,15605:21928183,35787648 -k1,15606:32583029,35787648:6684675 -g1,15606:32583029,35787648 -) -v1,15608:6630773,36923064:0,393216,0 -(1,15613:6630773,37879172:25952256,1349324,196608 -g1,15613:6630773,37879172 -g1,15613:6630773,37879172 -g1,15613:6434165,37879172 -(1,15613:6434165,37879172:0,1349324,196608 -r1,15613:32779637,37879172:26345472,1545932,196608 -k1,15613:6434165,37879172:-26345472 -) -(1,15613:6434165,37879172:26345472,1349324,196608 -[1,15613:6630773,37879172:25952256,1152716,0 -(1,15610:6630773,37105516:25952256,379060,6290 -(1,15609:6630773,37105516:0,0,0 -g1,15609:6630773,37105516 -g1,15609:6630773,37105516 -g1,15609:6303093,37105516 -(1,15609:6303093,37105516:0,0,0 -) -g1,15609:6630773,37105516 -) -g1,15610:7263065,37105516 -g1,15610:8527648,37105516 -k1,15610:8527648,37105516:0 -h1,15610:9476085,37105516:0,0,0 -k1,15610:32583029,37105516:23106944 -g1,15610:32583029,37105516 -) -(1,15611:6630773,37771694:25952256,404226,107478 -h1,15611:6630773,37771694:0,0,0 -k1,15611:6630773,37771694:0 -h1,15611:8843792,37771694:0,0,0 -k1,15611:32583028,37771694:23739236 -g1,15611:32583028,37771694 -) -] -) -g1,15613:32583029,37879172 -g1,15613:6630773,37879172 -g1,15613:6630773,37879172 -g1,15613:32583029,37879172 -g1,15613:32583029,37879172 -) -h1,15613:6630773,38075780:0,0,0 -(1,15617:6630773,39386507:25952256,505283,134348 -h1,15616:6630773,39386507:983040,0,0 -k1,15616:10660013,39386507:256332 -(1,15616:10660013,39386507:0,452978,115847 -r1,15616:13128550,39386507:2468537,568825,115847 -k1,15616:10660013,39386507:-2468537 -) -(1,15616:10660013,39386507:2468537,452978,115847 -k1,15616:10660013,39386507:3277 -h1,15616:13125273,39386507:0,411205,112570 -) -k1,15616:13384881,39386507:256331 -k1,15616:15982159,39386507:256332 -k1,15616:17257575,39386507:256331 -k1,15616:18962253,39386507:256332 -k1,15616:19870012,39386507:256331 -k1,15616:21145429,39386507:256332 -k1,15616:23745983,39386507:256331 -k1,15616:26589021,39386507:256332 -k1,15616:29911126,39386507:256331 -k1,15616:32583029,39386507:0 -) -(1,15617:6630773,40227995:25952256,505283,134348 -k1,15616:7612956,40227995:237039 -k1,15616:8501422,40227995:237038 -k1,15616:11421505,40227995:237039 -k1,15616:12593086,40227995:237038 -k1,15616:13849210,40227995:237039 -k1,15616:16672955,40227995:237039 -k1,15616:19802097,40227995:237038 -k1,15616:20690564,40227995:237039 -k1,15616:21946688,40227995:237039 -k1,15616:24938204,40227995:237038 -k1,15616:26505624,40227995:237039 -k1,15616:28208047,40227995:237038 -k1,15616:30804382,40227995:237039 -k1,15616:32583029,40227995:0 -) -(1,15617:6630773,41069483:25952256,505283,134348 -k1,15616:9462857,41069483:265694 -k1,15616:10379979,41069483:265694 -k1,15616:11664758,41069483:265694 -k1,15616:14274674,41069483:265693 -k1,15616:17127074,41069483:265694 -k1,15616:20665636,41069483:265694 -k1,15616:21617492,41069483:265694 -k1,15616:22499224,41069483:265694 -k1,15616:23784003,41069483:265694 -k1,15616:26884783,41069483:265693 -k1,15616:27833362,41069483:265694 -k1,15616:30804382,41069483:265694 -k1,15616:32583029,41069483:0 -) -(1,15617:6630773,41910971:25952256,513147,134348 -k1,15616:8776791,41910971:244163 -k1,15616:9636993,41910971:244164 -k1,15616:11178114,41910971:244163 -k1,15616:12413838,41910971:244164 -k1,15616:15474083,41910971:244163 -k1,15616:16404408,41910971:244163 -k1,15616:17419275,41910971:244164 -k1,15616:20909436,41910971:244163 -k1,15616:21781434,41910971:244163 -k1,15616:25816200,41910971:244164 -k1,15616:27255084,41910971:244163 -(1,15616:27555239,41910971:0,414482,115847 -r1,15616:27913505,41910971:358266,530329,115847 -k1,15616:27555239,41910971:-358266 -) -(1,15616:27555239,41910971:358266,414482,115847 -k1,15616:27555239,41910971:3277 -h1,15616:27910228,41910971:0,411205,112570 -) -k1,15616:28457824,41910971:244164 -k1,15616:31563944,41910971:244163 -k1,15616:32583029,41910971:0 -) -(1,15617:6630773,42752459:25952256,505283,126483 -g1,15616:9174225,42752459 -g1,15616:12265558,42752459 -g1,15616:13656232,42752459 -(1,15616:13956387,42752459:0,414482,115847 -r1,15616:14666365,42752459:709978,530329,115847 -k1,15616:13956387,42752459:-709978 -) -(1,15616:13956387,42752459:709978,414482,115847 -k1,15616:13956387,42752459:3277 -h1,15616:14663088,42752459:0,411205,112570 -) -g1,15616:15165749,42752459 -g1,15616:16384063,42752459 -g1,15616:19475396,42752459 -g1,15616:21529949,42752459 -g1,15616:22748263,42752459 -g1,15616:25291715,42752459 -k1,15617:32583029,42752459:5960933 -g1,15617:32583029,42752459 -) -v1,15619:6630773,43887875:0,393216,0 -(1,15625:6630773,45510161:25952256,2015502,196608 -g1,15625:6630773,45510161 -g1,15625:6630773,45510161 -g1,15625:6434165,45510161 -(1,15625:6434165,45510161:0,2015502,196608 -r1,15625:32779637,45510161:26345472,2212110,196608 -k1,15625:6434165,45510161:-26345472 -) -(1,15625:6434165,45510161:26345472,2015502,196608 -[1,15625:6630773,45510161:25952256,1818894,0 -(1,15621:6630773,44070327:25952256,379060,6290 -(1,15620:6630773,44070327:0,0,0 -g1,15620:6630773,44070327 -g1,15620:6630773,44070327 -g1,15620:6303093,44070327 -(1,15620:6303093,44070327:0,0,0 -) -g1,15620:6630773,44070327 -) -g1,15621:7263065,44070327 -g1,15621:8527648,44070327 -k1,15621:8527648,44070327:0 -h1,15621:9476085,44070327:0,0,0 -k1,15621:32583029,44070327:23106944 -g1,15621:32583029,44070327 -) -(1,15622:6630773,44736505:25952256,404226,76021 -h1,15622:6630773,44736505:0,0,0 -g1,15622:8527647,44736505 -g1,15622:9476085,44736505 -k1,15622:9476085,44736505:0 -h1,15622:12953688,44736505:0,0,0 -k1,15622:32583028,44736505:19629340 -g1,15622:32583028,44736505 -) -(1,15623:6630773,45402683:25952256,404226,107478 -h1,15623:6630773,45402683:0,0,0 -k1,15623:6630773,45402683:0 -h1,15623:8843792,45402683:0,0,0 -k1,15623:32583028,45402683:23739236 -g1,15623:32583028,45402683 -) -] -) -g1,15625:32583029,45510161 -g1,15625:6630773,45510161 -g1,15625:6630773,45510161 -g1,15625:32583029,45510161 -g1,15625:32583029,45510161 -) -h1,15625:6630773,45706769:0,0,0 -] -(1,15631:32583029,45706769:0,0,0 -g1,15631:32583029,45706769 -) -) -] -(1,15631:6630773,47279633:25952256,0,0 -h1,15631:6630773,47279633:25952256,0,0 -) -] -h1,15631:4262630,4025873:0,0,0 -] -!26205 +[1,15650:6630773,45706769:25952256,40108032,0 +v1,15583:6630773,6254097:0,393216,0 +(1,15583:6630773,7913323:25952256,2052442,616038 +g1,15583:6630773,7913323 +(1,15583:6630773,7913323:25952256,2052442,616038 +(1,15583:6630773,8529361:25952256,2668480,0 +[1,15583:6630773,8529361:25952256,2668480,0 +(1,15583:6630773,8503147:25952256,2642266,0 +r1,15583:6656987,8503147:26214,2642266,0 +[1,15583:6656987,8503147:25899828,2642266,0 +(1,15583:6656987,7913323:25899828,1462618,0 +[1,15583:7246811,7913323:24720180,1462618,0 +(1,15583:7246811,6955988:24720180,505283,134348 +k1,15582:11377086,6955988:219742 +k1,15582:13777212,6955988:219743 +k1,15582:14744720,6955988:219742 +k1,15582:17462040,6955988:219743 +k1,15582:19417175,6955988:219742 +k1,15582:21836305,6955988:219742 +k1,15582:24556902,6955988:219743 +k1,15582:25594533,6955988:219742 +k1,15582:26584979,6955988:219743 +k1,15582:29639808,6955988:219742 +k1,15582:31966991,6955988:0 +) +(1,15583:7246811,7797476:24720180,513147,115847 +g1,15582:8113196,7797476 +(1,15582:8113196,7797476:0,452978,115847 +r1,15583:13747140,7797476:5633944,568825,115847 +k1,15582:8113196,7797476:-5633944 +) +(1,15582:8113196,7797476:5633944,452978,115847 +g1,15582:9171609,7797476 +h1,15582:13743863,7797476:0,411205,112570 +) +g1,15582:14120039,7797476 +g1,15582:15411753,7797476 +(1,15582:15411753,7797476:0,452978,115847 +r1,15583:21045696,7797476:5633943,568825,115847 +k1,15582:15411753,7797476:-5633943 +) +(1,15582:15411753,7797476:5633943,452978,115847 +k1,15582:15411753,7797476:3277 +h1,15582:21042419,7797476:0,411205,112570 +) +k1,15583:31966991,7797476:10747625 +g1,15583:31966991,7797476 +) +] +) +] +r1,15583:32583029,8503147:26214,2642266,0 +) +] +) +) +g1,15583:32583029,7913323 +) +h1,15583:6630773,8529361:0,0,0 +(1,15586:6630773,9769901:25952256,513147,134348 +h1,15585:6630773,9769901:983040,0,0 +k1,15585:8174694,9769901:146038 +k1,15585:11081160,9769901:146090 +k1,15585:14253047,9769901:146090 +k1,15585:16284609,9769901:146091 +k1,15585:17818752,9769901:146090 +k1,15585:19358793,9769901:146090 +k1,15585:23020891,9769901:146091 +k1,15585:23928509,9769901:146090 +k1,15585:26101628,9769901:146090 +k1,15585:27266804,9769901:146091 +k1,15585:31923737,9769901:146090 +k1,15585:32583029,9769901:0 +) +(1,15586:6630773,10611389:25952256,513147,126483 +k1,15585:7840871,10611389:191013 +k1,15585:10794227,10611389:191013 +k1,15585:12179961,10611389:191013 +k1,15585:13938594,10611389:191012 +k1,15585:14544442,10611389:191005 +k1,15585:16405312,10611389:191013 +k1,15585:17224160,10611389:191013 +k1,15585:19576550,10611389:191013 +k1,15585:21464290,10611389:191013 +k1,15585:24681099,10611389:191012 +k1,15585:27052495,10611389:191013 +k1,15585:27991274,10611389:191013 +k1,15585:31195632,10611389:191013 +k1,15585:32583029,10611389:0 +) +(1,15586:6630773,11452877:25952256,505283,134348 +k1,15585:8748543,11452877:269655 +k1,15585:10117891,11452877:269654 +k1,15585:11038974,11452877:269655 +k1,15585:12172977,11452877:269583 +k1,15585:15932424,11452877:269655 +k1,15585:17478719,11452877:269654 +k1,15585:19483767,11452877:269655 +(1,15585:19483767,11452877:0,452978,115847 +r1,15585:21952304,11452877:2468537,568825,115847 +k1,15585:19483767,11452877:-2468537 +) +(1,15585:19483767,11452877:2468537,452978,115847 +k1,15585:19483767,11452877:3277 +h1,15585:21949027,11452877:0,411205,112570 +) +k1,15585:22221958,11452877:269654 +k1,15585:23174498,11452877:269655 +(1,15585:23174498,11452877:0,452978,115847 +r1,15585:25994747,11452877:2820249,568825,115847 +k1,15585:23174498,11452877:-2820249 +) +(1,15585:23174498,11452877:2820249,452978,115847 +k1,15585:23174498,11452877:3277 +h1,15585:25991470,11452877:0,411205,112570 +) +k1,15585:26471496,11452877:269655 +k1,15585:29779399,11452877:269654 +k1,15585:32583029,11452877:0 +) +(1,15586:6630773,12294365:25952256,513147,134348 +k1,15585:7700979,12294365:252317 +k1,15585:8972381,12294365:252317 +k1,15585:12335692,12294365:252317 +k1,15585:14886357,12294365:252317 +k1,15585:15790101,12294365:252316 +k1,15585:18246394,12294365:252317 +k1,15585:18854571,12294365:252317 +k1,15585:20089928,12294365:252317 +k1,15585:22080260,12294365:252317 +k1,15585:23900198,12294365:252317 +k1,15585:24508375,12294365:252317 +k1,15585:25743732,12294365:252317 +k1,15585:27444395,12294365:252317 +k1,15585:28228209,12294365:252317 +k1,15585:29344892,12294365:252263 +k1,15585:32168186,12294365:252317 +k1,15586:32583029,12294365:0 +) +(1,15586:6630773,13135853:25952256,513147,126483 +k1,15585:9627037,13135853:235888 +k1,15585:12888721,13135853:235887 +k1,15585:14618175,13135853:235888 +k1,15585:15540224,13135853:235887 +(1,15585:15540224,13135853:0,452978,115847 +r1,15585:19063896,13135853:3523672,568825,115847 +k1,15585:15540224,13135853:-3523672 +) +(1,15585:15540224,13135853:3523672,452978,115847 +k1,15585:15540224,13135853:3277 +h1,15585:19060619,13135853:0,411205,112570 +) +k1,15585:19473454,13135853:235888 +k1,15585:21717364,13135853:235887 +k1,15585:27010010,13135853:235888 +k1,15585:27777395,13135853:235888 +k1,15585:28877665,13135853:235850 +k1,15585:31510860,13135853:235888 +k1,15585:32583029,13135853:0 +) +(1,15586:6630773,13977341:25952256,513147,126483 +k1,15585:8440583,13977341:242189 +k1,15585:9701857,13977341:242189 +k1,15585:11243626,13977341:242190 +k1,15585:12152971,13977341:242189 +k1,15585:12809960,13977341:242146 +k1,15585:14548336,13977341:242189 +k1,15585:17013506,13977341:242189 +k1,15585:22910797,13977341:242189 +k1,15585:26178784,13977341:242190 +k1,15585:27805093,13977341:242189 +k1,15585:29066367,13977341:242189 +k1,15585:32583029,13977341:0 +) +(1,15586:6630773,14818829:25952256,513147,134348 +k1,15585:8962937,14818829:172753 +k1,15585:10330411,14818829:172753 +k1,15585:12070785,14818829:172753 +k1,15585:13262622,14818829:172752 +k1,15585:14816219,14818829:172753 +k1,15585:15656128,14818829:172753 +k1,15585:16417394,14818829:172753 +k1,15585:17786834,14818829:172753 +k1,15585:19930255,14818829:172753 +k1,15585:21971439,14818829:172753 +k1,15585:23248474,14818829:172753 +k1,15585:24168992,14818829:172752 +k1,15585:27180765,14818829:172753 +k1,15585:28004946,14818829:172753 +k1,15585:29774156,14818829:172753 +k1,15585:32583029,14818829:0 +) +(1,15586:6630773,15660317:25952256,513147,126483 +g1,15585:8716128,15660317 +g1,15585:10047164,15660317 +g1,15585:11110813,15660317 +g1,15585:12257693,15660317 +g1,15585:14342393,15660317 +g1,15585:14956465,15660317 +g1,15585:15687191,15660317 +k1,15586:32583029,15660317:13938198 +g1,15586:32583029,15660317 +) +v1,15588:6630773,16725546:0,393216,0 +(1,15595:6630773,17772357:25952256,1440027,196608 +g1,15595:6630773,17772357 +g1,15595:6630773,17772357 +g1,15595:6434165,17772357 +(1,15595:6434165,17772357:0,1440027,196608 +r1,15595:32779637,17772357:26345472,1636635,196608 +k1,15595:6434165,17772357:-26345472 +) +(1,15595:6434165,17772357:26345472,1440027,196608 +[1,15595:6630773,17772357:25952256,1243419,0 +(1,15590:6630773,16939456:25952256,410518,101187 +(1,15589:6630773,16939456:0,0,0 +g1,15589:6630773,16939456 +g1,15589:6630773,16939456 +g1,15589:6303093,16939456 +(1,15589:6303093,16939456:0,0,0 +) +g1,15589:6630773,16939456 +) +k1,15590:6630773,16939456:0 +k1,15590:6630773,16939456:0 +h1,15590:16431289,16939456:0,0,0 +k1,15590:32583029,16939456:16151740 +g1,15590:32583029,16939456 +) +(1,15594:6630773,17671170:25952256,410518,101187 +(1,15592:6630773,17671170:0,0,0 +g1,15592:6630773,17671170 +g1,15592:6630773,17671170 +g1,15592:6303093,17671170 +(1,15592:6303093,17671170:0,0,0 +) +g1,15592:6630773,17671170 +) +g1,15594:7579210,17671170 +g1,15594:8843793,17671170 +k1,15594:8843793,17671170:0 +h1,15594:12953687,17671170:0,0,0 +k1,15594:32583029,17671170:19629342 +g1,15594:32583029,17671170 +) +] +) +g1,15595:32583029,17772357 +g1,15595:6630773,17772357 +g1,15595:6630773,17772357 +g1,15595:32583029,17772357 +g1,15595:32583029,17772357 +) +h1,15595:6630773,17968965:0,0,0 +v1,15599:6630773,19608557:0,393216,0 +(1,15620:6630773,31818756:25952256,12603415,616038 +g1,15620:6630773,31818756 +(1,15620:6630773,31818756:25952256,12603415,616038 +(1,15620:6630773,32434794:25952256,13219453,0 +[1,15620:6630773,32434794:25952256,13219453,0 +(1,15620:6630773,32408580:25952256,13167025,0 +r1,15620:6656987,32408580:26214,13167025,0 +[1,15620:6656987,32408580:25899828,13167025,0 +(1,15620:6656987,31818756:25899828,11987377,0 +[1,15620:7246811,31818756:24720180,11987377,0 +(1,15603:7246811,20916915:24720180,1085536,298548 +(1,15599:7246811,20916915:0,1085536,298548 +r1,15620:8753226,20916915:1506415,1384084,298548 +k1,15599:7246811,20916915:-1506415 +) +(1,15599:7246811,20916915:1506415,1085536,298548 +) +k1,15599:9025392,20916915:272166 +k1,15599:9025392,20916915:0 +k1,15600:9297559,20916915:272167 +k1,15601:9297559,20916915:0 +k1,15602:11344440,20916915:272166 +k1,15602:12232645,20916915:272167 +k1,15602:13956433,20916915:272166 +k1,15602:15420045,20916915:272167 +k1,15602:17445299,20916915:272166 +k1,15602:19638326,20916915:272167 +k1,15602:22250127,20916915:272166 +k1,15602:23138332,20916915:272167 +k1,15602:24393538,20916915:272166 +k1,15602:26444352,20916915:272167 +k1,15602:27248015,20916915:272166 +k1,15602:29945014,20916915:272167 +k1,15602:31611131,20916915:272166 +k1,15602:31966991,20916915:0 +) +(1,15603:7246811,21758403:24720180,513147,102891 +k1,15602:10006175,21758403:225742 +k1,15602:11868351,21758403:225742 +k1,15602:15068771,21758403:225741 +h1,15602:15275865,21758403:0,0,0 +k1,15602:16277553,21758403:225742 +k1,15602:18389421,21758403:225742 +k1,15602:22555187,21758403:225742 +k1,15602:23239026,21758403:225742 +k1,15602:23996265,21758403:225742 +k1,15602:26646838,21758403:225741 +k1,15602:28266531,21758403:225742 +k1,15602:28848133,21758403:225742 +k1,15602:31966991,21758403:0 +) +(1,15603:7246811,22599891:24720180,505283,126483 +k1,15602:10445020,22599891:223530 +h1,15602:10652114,22599891:0,0,0 +k1,15602:11651590,22599891:223530 +k1,15602:14992668,22599891:223530 +h1,15602:15199762,22599891:0,0,0 +k1,15602:16025568,22599891:223530 +k1,15602:16780595,22599891:223530 +k1,15602:17774828,22599891:223530 +k1,15602:20133521,22599891:223530 +k1,15602:23331730,22599891:223530 +k1,15602:24171298,22599891:223530 +k1,15602:24809647,22599891:223506 +k1,15602:26224622,22599891:223530 +k1,15602:30038214,22599891:223530 +k1,15602:30947906,22599891:223530 +k1,15602:31966991,22599891:0 +) +(1,15603:7246811,23441379:24720180,513147,134348 +k1,15602:8950966,23441379:215832 +k1,15602:9826090,23441379:215832 +k1,15602:10812625,23441379:215832 +k1,15602:14353098,23441379:215832 +k1,15602:16763075,23441379:215832 +k1,15602:19918852,23441379:215832 +k1,15602:20793975,23441379:215831 +k1,15602:24314788,23441379:215832 +k1,15602:25762697,23441379:215832 +k1,15602:28257216,23441379:215832 +h1,15602:29227804,23441379:0,0,0 +k1,15602:29443636,23441379:215832 +k1,15602:30468838,23441379:215832 +k1,15602:31966991,23441379:0 +) +(1,15603:7246811,24282867:24720180,513147,126483 +h1,15602:8043729,24282867:0,0,0 +k1,15602:8696759,24282867:272266 +k1,15602:10658542,24282867:272265 +k1,15602:11546846,24282867:272266 +k1,15602:12233882,24282867:272193 +k1,15602:12862007,24282867:272265 +k1,15602:15667895,24282867:272266 +k1,15602:17576595,24282867:272266 +h1,15602:17783689,24282867:0,0,0 +k1,15602:18658230,24282867:272265 +k1,15602:20034778,24282867:272266 +k1,15602:21054810,24282867:272266 +k1,15602:22840301,24282867:272265 +k1,15602:24060218,24282867:272266 +k1,15602:25315524,24282867:272266 +k1,15602:27366437,24282867:272266 +k1,15602:29524828,24282867:272265 +k1,15602:30928901,24282867:272266 +k1,15602:31966991,24282867:0 +) +(1,15603:7246811,25124355:24720180,505283,126483 +k1,15602:8658850,25124355:220594 +k1,15602:11435348,25124355:220594 +k1,15602:14774800,25124355:220594 +h1,15602:14981894,25124355:0,0,0 +k1,15602:16199946,25124355:220594 +k1,15602:16952038,25124355:220595 +k1,15602:18712728,25124355:220594 +k1,15602:20308923,25124355:220594 +k1,15602:22415643,25124355:220594 +k1,15602:26830541,25124355:220594 +k1,15602:31571809,25124355:220594 +h1,15602:31571809,25124355:0,0,0 +k1,15602:31966991,25124355:0 +) +(1,15603:7246811,25965843:24720180,513147,126483 +k1,15602:9691413,25965843:264219 +k1,15602:10703398,25965843:264219 +k1,15602:13096883,25965843:264220 +k1,15602:16374447,25965843:264219 +k1,15602:17290094,25965843:264219 +h1,15602:17290094,25965843:0,0,0 +k1,15602:18344677,25965843:264219 +k1,15602:19260324,25965843:264219 +k1,15602:21667570,25965843:264219 +k1,15602:25447797,25965843:264220 +k1,15602:26903461,25965843:264219 +k1,15602:27699177,25965843:264219 +k1,15602:28982481,25965843:264219 +k1,15602:31966991,25965843:0 +) +(1,15603:7246811,26807331:24720180,505283,7863 +g1,15602:8959266,26807331 +g1,15602:9774533,26807331 +g1,15602:11177003,26807331 +k1,15603:31966991,26807331:19034278 +g1,15603:31966991,26807331 +) +v1,15605:7246811,27997797:0,393216,0 +(1,15618:7246811,31097860:24720180,3493279,196608 +g1,15618:7246811,31097860 +g1,15618:7246811,31097860 +g1,15618:7050203,31097860 +(1,15618:7050203,31097860:0,3493279,196608 +r1,15620:32163599,31097860:25113396,3689887,196608 +k1,15618:7050203,31097860:-25113396 +) +(1,15618:7050203,31097860:25113396,3493279,196608 +[1,15618:7246811,31097860:24720180,3296671,0 +(1,15607:7246811,28211707:24720180,410518,101187 +(1,15606:7246811,28211707:0,0,0 +g1,15606:7246811,28211707 +g1,15606:7246811,28211707 +g1,15606:6919131,28211707 +(1,15606:6919131,28211707:0,0,0 +) +g1,15606:7246811,28211707 +) +k1,15607:7246811,28211707:0 +k1,15607:7246811,28211707:0 +h1,15607:17047327,28211707:0,0,0 +k1,15607:31966991,28211707:14919664 +g1,15607:31966991,28211707 +) +(1,15611:7246811,28943421:24720180,410518,101187 +(1,15609:7246811,28943421:0,0,0 +g1,15609:7246811,28943421 +g1,15609:7246811,28943421 +g1,15609:6919131,28943421 +(1,15609:6919131,28943421:0,0,0 +) +g1,15609:7246811,28943421 +) +g1,15611:8195248,28943421 +g1,15611:9459831,28943421 +k1,15611:9459831,28943421:0 +h1,15611:13569725,28943421:0,0,0 +k1,15611:31966991,28943421:18397266 +g1,15611:31966991,28943421 +) +(1,15613:7246811,30264959:24720180,410518,101187 +(1,15612:7246811,30264959:0,0,0 +g1,15612:7246811,30264959 +g1,15612:7246811,30264959 +g1,15612:6919131,30264959 +(1,15612:6919131,30264959:0,0,0 +) +g1,15612:7246811,30264959 +) +k1,15613:7246811,30264959:0 +k1,15613:7246811,30264959:0 +h1,15613:17363473,30264959:0,0,0 +k1,15613:31966991,30264959:14603518 +g1,15613:31966991,30264959 +) +(1,15617:7246811,30996673:24720180,410518,101187 +(1,15615:7246811,30996673:0,0,0 +g1,15615:7246811,30996673 +g1,15615:7246811,30996673 +g1,15615:6919131,30996673 +(1,15615:6919131,30996673:0,0,0 +) +g1,15615:7246811,30996673 +) +g1,15617:8195248,30996673 +g1,15617:9459831,30996673 +k1,15617:9459831,30996673:0 +h1,15617:13569725,30996673:0,0,0 +k1,15617:31966991,30996673:18397266 +g1,15617:31966991,30996673 +) +] +) +g1,15618:31966991,31097860 +g1,15618:7246811,31097860 +g1,15618:7246811,31097860 +g1,15618:31966991,31097860 +g1,15618:31966991,31097860 +) +h1,15618:7246811,31294468:0,0,0 +] +) +] +r1,15620:32583029,32408580:26214,13167025,0 +) +] +) +) +g1,15620:32583029,31818756 +) +h1,15620:6630773,32434794:0,0,0 +(1,15623:6630773,33675333:25952256,513147,126483 +h1,15622:6630773,33675333:983040,0,0 +k1,15622:9020102,33675333:209602 +k1,15622:14195367,33675333:209602 +k1,15622:17100465,33675333:209602 +k1,15622:17961495,33675333:209602 +(1,15622:17961495,33675333:0,452978,115847 +r1,15622:21485167,33675333:3523672,568825,115847 +k1,15622:17961495,33675333:-3523672 +) +(1,15622:17961495,33675333:3523672,452978,115847 +k1,15622:17961495,33675333:3277 +h1,15622:21481890,33675333:0,411205,112570 +) +k1,15622:21694770,33675333:209603 +k1,15622:22435869,33675333:209602 +(1,15622:22435869,33675333:0,452978,115847 +r1,15622:25607829,33675333:3171960,568825,115847 +k1,15622:22435869,33675333:-3171960 +) +(1,15622:22435869,33675333:3171960,452978,115847 +k1,15622:22435869,33675333:3277 +h1,15622:25604552,33675333:0,411205,112570 +) +k1,15622:25817431,33675333:209602 +k1,15622:27218478,33675333:209602 +k1,15622:29962357,33675333:209602 +k1,15622:31191044,33675333:209602 +k1,15622:32583029,33675333:0 +) +(1,15623:6630773,34516821:25952256,513147,134348 +g1,15622:8278348,34516821 +g1,15622:9129005,34516821 +g1,15622:10347319,34516821 +g1,15622:13908545,34516821 +g1,15622:16202305,34516821 +g1,15622:17969155,34516821 +g1,15622:18524244,34516821 +g1,15622:19813337,34516821 +g1,15622:20995606,34516821 +k1,15623:32583029,34516821:9965407 +g1,15623:32583029,34516821 +) +v1,15625:6630773,35582051:0,393216,0 +(1,15632:6630773,36603696:25952256,1414861,196608 +g1,15632:6630773,36603696 +g1,15632:6630773,36603696 +g1,15632:6434165,36603696 +(1,15632:6434165,36603696:0,1414861,196608 +r1,15632:32779637,36603696:26345472,1611469,196608 +k1,15632:6434165,36603696:-26345472 +) +(1,15632:6434165,36603696:26345472,1414861,196608 +[1,15632:6630773,36603696:25952256,1218253,0 +(1,15627:6630773,35795961:25952256,410518,101187 +(1,15626:6630773,35795961:0,0,0 +g1,15626:6630773,35795961 +g1,15626:6630773,35795961 +g1,15626:6303093,35795961 +(1,15626:6303093,35795961:0,0,0 +) +g1,15626:6630773,35795961 +) +k1,15627:6630773,35795961:0 +k1,15627:6630773,35795961:0 +h1,15627:16115144,35795961:0,0,0 +k1,15627:32583029,35795961:16467885 +g1,15627:32583029,35795961 +) +(1,15631:6630773,36527675:25952256,404226,76021 +(1,15629:6630773,36527675:0,0,0 +g1,15629:6630773,36527675 +g1,15629:6630773,36527675 +g1,15629:6303093,36527675 +(1,15629:6303093,36527675:0,0,0 +) +g1,15629:6630773,36527675 +) +g1,15631:7579210,36527675 +g1,15631:8843793,36527675 +h1,15631:11689104,36527675:0,0,0 +k1,15631:32583028,36527675:20893924 +g1,15631:32583028,36527675 +) +] +) +g1,15632:32583029,36603696 +g1,15632:6630773,36603696 +g1,15632:6630773,36603696 +g1,15632:32583029,36603696 +g1,15632:32583029,36603696 +) +h1,15632:6630773,36800304:0,0,0 +(1,15637:6630773,38040844:25952256,505283,134348 +h1,15636:6630773,38040844:983040,0,0 +k1,15636:10907822,38040844:173840 +(1,15636:10907822,38040844:0,452978,122846 +r1,15636:13376359,38040844:2468537,575824,122846 +k1,15636:10907822,38040844:-2468537 +) +(1,15636:10907822,38040844:2468537,452978,122846 +k1,15636:10907822,38040844:3277 +h1,15636:13373082,38040844:0,411205,112570 +) +k1,15636:13550199,38040844:173840 +k1,15636:14915483,38040844:173839 +(1,15636:14915483,38040844:0,452978,115847 +r1,15636:17384020,38040844:2468537,568825,115847 +k1,15636:14915483,38040844:-2468537 +) +(1,15636:14915483,38040844:2468537,452978,115847 +k1,15636:14915483,38040844:3277 +h1,15636:17380743,38040844:0,411205,112570 +) +k1,15636:17557860,38040844:173840 +k1,15636:18835982,38040844:173840 +k1,15636:19757588,38040844:173840 +k1,15636:21444653,38040844:173839 +k1,15636:22269921,38040844:173840 +k1,15636:23422214,38040844:173840 +k1,15636:24615139,38040844:173840 +k1,15636:26237325,38040844:173840 +k1,15636:27062592,38040844:173839 +k1,15636:28255517,38040844:173840 +k1,15636:30773580,38040844:173840 +k1,15637:32583029,38040844:0 +) +(1,15637:6630773,38882332:25952256,505283,134348 +g1,15636:7820251,38882332 +g1,15636:10911584,38882332 +g1,15636:12302258,38882332 +g1,15636:13152915,38882332 +g1,15636:14286687,38882332 +g1,15636:14841776,38882332 +g1,15636:17933109,38882332 +g1,15636:18818500,38882332 +g1,15636:21535622,38882332 +k1,15637:32583029,38882332:7077236 +g1,15637:32583029,38882332 +) +v1,15639:6630773,39947561:0,393216,0 +(1,15644:6630773,40903669:25952256,1349324,196608 +g1,15644:6630773,40903669 +g1,15644:6630773,40903669 +g1,15644:6434165,40903669 +(1,15644:6434165,40903669:0,1349324,196608 +r1,15644:32779637,40903669:26345472,1545932,196608 +k1,15644:6434165,40903669:-26345472 +) +(1,15644:6434165,40903669:26345472,1349324,196608 +[1,15644:6630773,40903669:25952256,1152716,0 +(1,15641:6630773,40130013:25952256,379060,6290 +(1,15640:6630773,40130013:0,0,0 +g1,15640:6630773,40130013 +g1,15640:6630773,40130013 +g1,15640:6303093,40130013 +(1,15640:6303093,40130013:0,0,0 +) +g1,15640:6630773,40130013 +) +g1,15641:7263065,40130013 +g1,15641:8527648,40130013 +k1,15641:8527648,40130013:0 +h1,15641:9476085,40130013:0,0,0 +k1,15641:32583029,40130013:23106944 +g1,15641:32583029,40130013 +) +(1,15642:6630773,40796191:25952256,404226,107478 +h1,15642:6630773,40796191:0,0,0 +k1,15642:6630773,40796191:0 +h1,15642:8843792,40796191:0,0,0 +k1,15642:32583028,40796191:23739236 +g1,15642:32583028,40796191 +) +] +) +g1,15644:32583029,40903669 +g1,15644:6630773,40903669 +g1,15644:6630773,40903669 +g1,15644:32583029,40903669 +g1,15644:32583029,40903669 +) +h1,15644:6630773,41100277:0,0,0 +(1,15648:6630773,42340817:25952256,505283,134348 +h1,15647:6630773,42340817:983040,0,0 +k1,15647:10660013,42340817:256332 +(1,15647:10660013,42340817:0,452978,115847 +r1,15647:13128550,42340817:2468537,568825,115847 +k1,15647:10660013,42340817:-2468537 +) +(1,15647:10660013,42340817:2468537,452978,115847 +k1,15647:10660013,42340817:3277 +h1,15647:13125273,42340817:0,411205,112570 +) +k1,15647:13384881,42340817:256331 +k1,15647:15982159,42340817:256332 +k1,15647:17257575,42340817:256331 +k1,15647:18962253,42340817:256332 +k1,15647:19870012,42340817:256331 +k1,15647:21145429,42340817:256332 +k1,15647:23745983,42340817:256331 +k1,15647:26589021,42340817:256332 +k1,15647:29911126,42340817:256331 +k1,15647:32583029,42340817:0 +) +(1,15648:6630773,43182305:25952256,505283,134348 +k1,15647:7612956,43182305:237039 +k1,15647:8501422,43182305:237038 +k1,15647:11421505,43182305:237039 +k1,15647:12593086,43182305:237038 +k1,15647:13849210,43182305:237039 +k1,15647:16672955,43182305:237039 +k1,15647:19802097,43182305:237038 +k1,15647:20690564,43182305:237039 +k1,15647:21946688,43182305:237039 +k1,15647:24938204,43182305:237038 +k1,15647:26505624,43182305:237039 +k1,15647:28208047,43182305:237038 +k1,15647:30804382,43182305:237039 +k1,15647:32583029,43182305:0 +) +(1,15648:6630773,44023793:25952256,505283,134348 +k1,15647:9462857,44023793:265694 +k1,15647:10379979,44023793:265694 +k1,15647:11664758,44023793:265694 +k1,15647:14274674,44023793:265693 +k1,15647:17127074,44023793:265694 +k1,15647:20665636,44023793:265694 +k1,15647:21617492,44023793:265694 +k1,15647:22499224,44023793:265694 +k1,15647:23784003,44023793:265694 +k1,15647:26884783,44023793:265693 +k1,15647:27833362,44023793:265694 +k1,15647:30804382,44023793:265694 +k1,15647:32583029,44023793:0 +) +(1,15648:6630773,44865281:25952256,513147,134348 +k1,15647:8776791,44865281:244163 +k1,15647:9636993,44865281:244164 +k1,15647:11178114,44865281:244163 +k1,15647:12413838,44865281:244164 +k1,15647:15474083,44865281:244163 +k1,15647:16404408,44865281:244163 +k1,15647:17419275,44865281:244164 +k1,15647:20909436,44865281:244163 +k1,15647:21781434,44865281:244163 +k1,15647:25816200,44865281:244164 +k1,15647:27255084,44865281:244163 +(1,15647:27555239,44865281:0,414482,115847 +r1,15647:27913505,44865281:358266,530329,115847 +k1,15647:27555239,44865281:-358266 +) +(1,15647:27555239,44865281:358266,414482,115847 +k1,15647:27555239,44865281:3277 +h1,15647:27910228,44865281:0,411205,112570 +) +k1,15647:28457824,44865281:244164 +k1,15647:31563944,44865281:244163 +k1,15647:32583029,44865281:0 +) +(1,15648:6630773,45706769:25952256,505283,126483 +g1,15647:9174225,45706769 +g1,15647:12265558,45706769 +g1,15647:13656232,45706769 +(1,15647:13956387,45706769:0,414482,115847 +r1,15647:14666365,45706769:709978,530329,115847 +k1,15647:13956387,45706769:-709978 +) +(1,15647:13956387,45706769:709978,414482,115847 +k1,15647:13956387,45706769:3277 +h1,15647:14663088,45706769:0,411205,112570 +) +g1,15647:15165749,45706769 +g1,15647:16384063,45706769 +g1,15647:19475396,45706769 +g1,15647:21529949,45706769 +g1,15647:22748263,45706769 +g1,15647:25291715,45706769 +k1,15648:32583029,45706769:5960933 +g1,15648:32583029,45706769 +) +] +(1,15650:32583029,45706769:0,0,0 +g1,15650:32583029,45706769 +) +) +] +(1,15650:6630773,47279633:25952256,0,0 +h1,15650:6630773,47279633:25952256,0,0 +) +] +h1,15650:4262630,4025873:0,0,0 +] +!26524 }305 -Input:2367:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2368:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2369:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2370:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2371:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2372:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2373:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2374:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2375:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2376:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2377:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 +Input:2364:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2365:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2366:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2367:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2368:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2369:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2370:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2371:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2372:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2373:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2374:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1024 {306 -[1,15735:4262630,47279633:28320399,43253760,0 -(1,15735:4262630,4025873:0,0,0 -[1,15735:-473657,4025873:25952256,0,0 -(1,15735:-473657,-710414:25952256,0,0 -h1,15735:-473657,-710414:0,0,0 -(1,15735:-473657,-710414:0,0,0 -(1,15735:-473657,-710414:0,0,0 -g1,15735:-473657,-710414 -(1,15735:-473657,-710414:65781,0,65781 -g1,15735:-407876,-710414 -[1,15735:-407876,-644633:0,0,0 +[1,15766:4262630,47279633:28320399,43253760,0 +(1,15766:4262630,4025873:0,0,0 +[1,15766:-473657,4025873:25952256,0,0 +(1,15766:-473657,-710414:25952256,0,0 +h1,15766:-473657,-710414:0,0,0 +(1,15766:-473657,-710414:0,0,0 +(1,15766:-473657,-710414:0,0,0 +g1,15766:-473657,-710414 +(1,15766:-473657,-710414:65781,0,65781 +g1,15766:-407876,-710414 +[1,15766:-407876,-644633:0,0,0 ] ) -k1,15735:-473657,-710414:-65781 +k1,15766:-473657,-710414:-65781 ) ) -k1,15735:25478599,-710414:25952256 -g1,15735:25478599,-710414 +k1,15766:25478599,-710414:25952256 +g1,15766:25478599,-710414 ) ] ) -[1,15735:6630773,47279633:25952256,43253760,0 -[1,15735:6630773,4812305:25952256,786432,0 -(1,15735:6630773,4812305:25952256,505283,126483 -(1,15735:6630773,4812305:25952256,505283,126483 -g1,15735:3078558,4812305 -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,2439708:0,1703936,0 -k1,15735:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15735:2537886,2439708:1179648,16384,0 +[1,15766:6630773,47279633:25952256,43253760,0 +[1,15766:6630773,4812305:25952256,786432,0 +(1,15766:6630773,4812305:25952256,505283,126483 +(1,15766:6630773,4812305:25952256,505283,126483 +g1,15766:3078558,4812305 +[1,15766:3078558,4812305:0,0,0 +(1,15766:3078558,2439708:0,1703936,0 +k1,15766:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15766:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15735:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15766:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,2439708:0,1703936,0 -g1,15735:29030814,2439708 -g1,15735:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15735:36151628,1915420:16384,1179648,0 +[1,15766:3078558,4812305:0,0,0 +(1,15766:3078558,2439708:0,1703936,0 +g1,15766:29030814,2439708 +g1,15766:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15766:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15735:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15766:37855564,2439708:1179648,16384,0 ) ) -k1,15735:3078556,2439708:-34777008 +k1,15766:3078556,2439708:-34777008 ) ] -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,49800853:0,16384,2228224 -k1,15735:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15735:2537886,49800853:1179648,16384,0 +[1,15766:3078558,4812305:0,0,0 +(1,15766:3078558,49800853:0,16384,2228224 +k1,15766:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15766:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15735:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15766:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,15735:3078558,4812305:0,0,0 -(1,15735:3078558,49800853:0,16384,2228224 -g1,15735:29030814,49800853 -g1,15735:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15735:36151628,51504789:16384,1179648,0 +[1,15766:3078558,4812305:0,0,0 +(1,15766:3078558,49800853:0,16384,2228224 +g1,15766:29030814,49800853 +g1,15766:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15766:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15735:37855564,49800853:1179648,16384,0 +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15766:37855564,49800853:1179648,16384,0 ) ) -k1,15735:3078556,49800853:-34777008 +k1,15766:3078556,49800853:-34777008 +) +] +g1,15766:6630773,4812305 +g1,15766:6630773,4812305 +g1,15766:7909380,4812305 +g1,15766:10167095,4812305 +g1,15766:11576774,4812305 +g1,15766:15078362,4812305 +k1,15766:31387652,4812305:16309290 +) +) +] +[1,15766:6630773,45706769:25952256,40108032,0 +(1,15766:6630773,45706769:25952256,40108032,0 +(1,15766:6630773,45706769:0,0,0 +g1,15766:6630773,45706769 +) +[1,15766:6630773,45706769:25952256,40108032,0 +v1,15650:6630773,6254097:0,393216,0 +(1,15656:6630773,7876383:25952256,2015502,196608 +g1,15656:6630773,7876383 +g1,15656:6630773,7876383 +g1,15656:6434165,7876383 +(1,15656:6434165,7876383:0,2015502,196608 +r1,15656:32779637,7876383:26345472,2212110,196608 +k1,15656:6434165,7876383:-26345472 +) +(1,15656:6434165,7876383:26345472,2015502,196608 +[1,15656:6630773,7876383:25952256,1818894,0 +(1,15652:6630773,6436549:25952256,379060,6290 +(1,15651:6630773,6436549:0,0,0 +g1,15651:6630773,6436549 +g1,15651:6630773,6436549 +g1,15651:6303093,6436549 +(1,15651:6303093,6436549:0,0,0 +) +g1,15651:6630773,6436549 +) +g1,15652:7263065,6436549 +g1,15652:8527648,6436549 +k1,15652:8527648,6436549:0 +h1,15652:9476085,6436549:0,0,0 +k1,15652:32583029,6436549:23106944 +g1,15652:32583029,6436549 +) +(1,15653:6630773,7102727:25952256,404226,76021 +h1,15653:6630773,7102727:0,0,0 +g1,15653:8527647,7102727 +g1,15653:9476085,7102727 +k1,15653:9476085,7102727:0 +h1,15653:12953688,7102727:0,0,0 +k1,15653:32583028,7102727:19629340 +g1,15653:32583028,7102727 +) +(1,15654:6630773,7768905:25952256,404226,107478 +h1,15654:6630773,7768905:0,0,0 +k1,15654:6630773,7768905:0 +h1,15654:8843792,7768905:0,0,0 +k1,15654:32583028,7768905:23739236 +g1,15654:32583028,7768905 +) +] +) +g1,15656:32583029,7876383 +g1,15656:6630773,7876383 +g1,15656:6630773,7876383 +g1,15656:32583029,7876383 +g1,15656:32583029,7876383 +) +h1,15656:6630773,8072991:0,0,0 +(1,15660:6630773,9402063:25952256,513147,126483 +h1,15659:6630773,9402063:983040,0,0 +k1,15659:9042731,9402063:232231 +k1,15659:12053690,9402063:232232 +k1,15659:13966264,9402063:232231 +k1,15659:14729993,9402063:232232 +k1,15659:17091489,9402063:232231 +k1,15659:18094424,9402063:232232 +k1,15659:21031981,9402063:232231 +k1,15659:22354076,9402063:232231 +k1,15659:24208324,9402063:232232 +k1,15659:25165383,9402063:232231 +k1,15659:25855712,9402063:232232 +k1,15659:28645813,9402063:232231 +k1,15659:30418141,9402063:232232 +k1,15659:32117068,9402063:232231 +k1,15659:32583029,9402063:0 +) +(1,15660:6630773,10243551:25952256,513147,134348 +g1,15659:7849087,10243551 +g1,15659:9496662,10243551 +g1,15659:10347319,10243551 +g1,15659:11565633,10243551 +g1,15659:14351568,10243551 +g1,15659:17442901,10243551 +g1,15659:20213107,10243551 +g1,15659:22062533,10243551 +g1,15659:23704209,10243551 +g1,15659:25393727,10243551 +g1,15659:27635713,10243551 +g1,15659:29572957,10243551 +k1,15660:32583029,10243551:162533 +g1,15660:32583029,10243551 +) +v1,15662:6630773,11397313:0,393216,0 +(1,15669:6630773,13685777:25952256,2681680,196608 +g1,15669:6630773,13685777 +g1,15669:6630773,13685777 +g1,15669:6434165,13685777 +(1,15669:6434165,13685777:0,2681680,196608 +r1,15669:32779637,13685777:26345472,2878288,196608 +k1,15669:6434165,13685777:-26345472 +) +(1,15669:6434165,13685777:26345472,2681680,196608 +[1,15669:6630773,13685777:25952256,2485072,0 +(1,15664:6630773,11579765:25952256,379060,6290 +(1,15663:6630773,11579765:0,0,0 +g1,15663:6630773,11579765 +g1,15663:6630773,11579765 +g1,15663:6303093,11579765 +(1,15663:6303093,11579765:0,0,0 +) +g1,15663:6630773,11579765 +) +g1,15664:7263065,11579765 +g1,15664:8527648,11579765 +k1,15664:8527648,11579765:0 +h1,15664:9476085,11579765:0,0,0 +k1,15664:32583029,11579765:23106944 +g1,15664:32583029,11579765 +) +(1,15665:6630773,12245943:25952256,404226,6290 +h1,15665:6630773,12245943:0,0,0 +h1,15665:8211501,12245943:0,0,0 +k1,15665:32583029,12245943:24371528 +g1,15665:32583029,12245943 +) +(1,15666:6630773,12912121:25952256,404226,76021 +h1,15666:6630773,12912121:0,0,0 +k1,15666:6630773,12912121:0 +h1,15666:10424521,12912121:0,0,0 +k1,15666:32583029,12912121:22158508 +g1,15666:32583029,12912121 +) +(1,15667:6630773,13578299:25952256,404226,107478 +h1,15667:6630773,13578299:0,0,0 +k1,15667:6630773,13578299:0 +h1,15667:8843792,13578299:0,0,0 +k1,15667:32583028,13578299:23739236 +g1,15667:32583028,13578299 +) +] +) +g1,15669:32583029,13685777 +g1,15669:6630773,13685777 +g1,15669:6630773,13685777 +g1,15669:32583029,13685777 +g1,15669:32583029,13685777 +) +h1,15669:6630773,13882385:0,0,0 +(1,15675:6630773,15211457:25952256,513147,126483 +h1,15674:6630773,15211457:983040,0,0 +k1,15674:8852717,15211457:285355 +k1,15674:10242353,15211457:285354 +k1,15674:11813524,15211457:285355 +k1,15674:14122630,15211457:285354 +k1,15674:15731812,15211457:285355 +k1,15674:16676459,15211457:285355 +k1,15674:18275155,15211457:285354 +k1,15674:20770384,15211457:285355 +k1,15674:24465576,15211457:285354 +k1,15674:25526222,15211457:285355 +k1,15674:27156375,15211457:285354 +k1,15674:29899985,15211457:285355 +k1,15674:32583029,15211457:0 +) +(1,15675:6630773,16052945:25952256,485622,11795 +g1,15674:8862929,16052945 +k1,15675:32583029,16052945:22351708 +g1,15675:32583029,16052945 +) +v1,15677:6630773,17206707:0,393216,0 +(1,15699:6630773,24364847:25952256,7551356,196608 +g1,15699:6630773,24364847 +g1,15699:6630773,24364847 +g1,15699:6434165,24364847 +(1,15699:6434165,24364847:0,7551356,196608 +r1,15699:32779637,24364847:26345472,7747964,196608 +k1,15699:6434165,24364847:-26345472 +) +(1,15699:6434165,24364847:26345472,7551356,196608 +[1,15699:6630773,24364847:25952256,7354748,0 +(1,15679:6630773,17420617:25952256,410518,76021 +(1,15678:6630773,17420617:0,0,0 +g1,15678:6630773,17420617 +g1,15678:6630773,17420617 +g1,15678:6303093,17420617 +(1,15678:6303093,17420617:0,0,0 +) +g1,15678:6630773,17420617 +) +k1,15679:6630773,17420617:0 +k1,15679:6630773,17420617:0 +h1,15679:12321396,17420617:0,0,0 +k1,15679:32583028,17420617:20261632 +g1,15679:32583028,17420617 +) +(1,15684:6630773,18152331:25952256,410518,107478 +(1,15681:6630773,18152331:0,0,0 +g1,15681:6630773,18152331 +g1,15681:6630773,18152331 +g1,15681:6303093,18152331 +(1,15681:6303093,18152331:0,0,0 +) +g1,15681:6630773,18152331 +) +g1,15684:7579210,18152331 +g1,15684:8843793,18152331 +g1,15684:12953687,18152331 +g1,15684:13269833,18152331 +g1,15684:13585979,18152331 +g1,15684:13902125,18152331 +g1,15684:14218271,18152331 +g1,15684:14534417,18152331 +g1,15684:14850563,18152331 +g1,15684:15166709,18152331 +g1,15684:15482855,18152331 +g1,15684:15799001,18152331 +g1,15684:16115147,18152331 +g1,15684:16431293,18152331 +g1,15684:21173479,18152331 +g1,15684:21489625,18152331 +g1,15684:21805771,18152331 +g1,15684:22121917,18152331 +g1,15684:22438063,18152331 +g1,15684:22754209,18152331 +g1,15684:23070355,18152331 +g1,15684:23386501,18152331 +g1,15684:23702647,18152331 +g1,15684:24018793,18152331 +k1,15684:24018793,18152331:0 +h1,15684:31290144,18152331:0,0,0 +k1,15684:32583029,18152331:1292885 +g1,15684:32583029,18152331 +) +(1,15684:6630773,18818509:25952256,410518,107478 +h1,15684:6630773,18818509:0,0,0 +g1,15684:7579210,18818509 +g1,15684:8843793,18818509 +g1,15684:16431290,18818509 +g1,15684:21805767,18818509 +g1,15684:22121913,18818509 +g1,15684:22438059,18818509 +g1,15684:22754205,18818509 +g1,15684:23070351,18818509 +g1,15684:23386497,18818509 +g1,15684:23702643,18818509 +g1,15684:24018789,18818509 +h1,15684:30341703,18818509:0,0,0 +k1,15684:32583029,18818509:2241326 +g1,15684:32583029,18818509 +) +(1,15686:6630773,20140047:25952256,404226,76021 +(1,15685:6630773,20140047:0,0,0 +g1,15685:6630773,20140047 +g1,15685:6630773,20140047 +g1,15685:6303093,20140047 +(1,15685:6303093,20140047:0,0,0 +) +g1,15685:6630773,20140047 +) +k1,15686:6630773,20140047:0 +k1,15686:6630773,20140047:0 +h1,15686:12005250,20140047:0,0,0 +k1,15686:32583030,20140047:20577780 +g1,15686:32583030,20140047 +) +(1,15691:6630773,20871761:25952256,410518,107478 +(1,15688:6630773,20871761:0,0,0 +g1,15688:6630773,20871761 +g1,15688:6630773,20871761 +g1,15688:6303093,20871761 +(1,15688:6303093,20871761:0,0,0 +) +g1,15688:6630773,20871761 +) +g1,15691:7579210,20871761 +g1,15691:8843793,20871761 +g1,15691:10108376,20871761 +g1,15691:10424522,20871761 +g1,15691:10740668,20871761 +g1,15691:11056814,20871761 +g1,15691:11372960,20871761 +g1,15691:11689106,20871761 +g1,15691:12005252,20871761 +g1,15691:12321398,20871761 +g1,15691:12637544,20871761 +g1,15691:12953690,20871761 +g1,15691:13269836,20871761 +g1,15691:13585982,20871761 +g1,15691:13902128,20871761 +g1,15691:14218274,20871761 +g1,15691:14534420,20871761 +g1,15691:14850566,20871761 +g1,15691:17695877,20871761 +g1,15691:18012023,20871761 +g1,15691:18328169,20871761 +g1,15691:18644315,20871761 +g1,15691:18960461,20871761 +g1,15691:19276607,20871761 +g1,15691:19592753,20871761 +g1,15691:19908899,20871761 +g1,15691:20225045,20871761 +g1,15691:20541191,20871761 +g1,15691:20857337,20871761 +g1,15691:25599523,20871761 +g1,15691:25915669,20871761 +g1,15691:26231815,20871761 +g1,15691:26547961,20871761 +g1,15691:26864107,20871761 +h1,15691:30974001,20871761:0,0,0 +k1,15691:32583029,20871761:1609028 +g1,15691:32583029,20871761 +) +(1,15691:6630773,21537939:25952256,410518,107478 +h1,15691:6630773,21537939:0,0,0 +g1,15691:7579210,21537939 +g1,15691:8843793,21537939 +g1,15691:13269833,21537939 +g1,15691:13585979,21537939 +g1,15691:13902125,21537939 +g1,15691:14218271,21537939 +g1,15691:14534417,21537939 +g1,15691:14850563,21537939 +h1,15691:20541185,21537939:0,0,0 +k1,15691:32583029,21537939:12041844 +g1,15691:32583029,21537939 +) +(1,15693:6630773,22859477:25952256,404226,76021 +(1,15692:6630773,22859477:0,0,0 +g1,15692:6630773,22859477 +g1,15692:6630773,22859477 +g1,15692:6303093,22859477 +(1,15692:6303093,22859477:0,0,0 +) +g1,15692:6630773,22859477 +) +k1,15693:6630773,22859477:0 +k1,15693:6630773,22859477:0 +h1,15693:10108376,22859477:0,0,0 +k1,15693:32583028,22859477:22474652 +g1,15693:32583028,22859477 +) +(1,15698:6630773,23591191:25952256,410518,107478 +(1,15695:6630773,23591191:0,0,0 +g1,15695:6630773,23591191 +g1,15695:6630773,23591191 +g1,15695:6303093,23591191 +(1,15695:6303093,23591191:0,0,0 +) +g1,15695:6630773,23591191 +) +g1,15698:7579210,23591191 +g1,15698:8843793,23591191 +g1,15698:12953687,23591191 +g1,15698:13269833,23591191 +g1,15698:13585979,23591191 +g1,15698:13902125,23591191 +g1,15698:14218271,23591191 +g1,15698:14534417,23591191 +g1,15698:14850563,23591191 +g1,15698:15166709,23591191 +g1,15698:15482855,23591191 +g1,15698:15799001,23591191 +g1,15698:16115147,23591191 +g1,15698:16431293,23591191 +g1,15698:21173479,23591191 +g1,15698:21489625,23591191 +g1,15698:21805771,23591191 +g1,15698:22121917,23591191 +g1,15698:22438063,23591191 +g1,15698:22754209,23591191 +g1,15698:23070355,23591191 +g1,15698:23386501,23591191 +g1,15698:23702647,23591191 +g1,15698:24018793,23591191 +k1,15698:24018793,23591191:0 +h1,15698:31290144,23591191:0,0,0 +k1,15698:32583029,23591191:1292885 +g1,15698:32583029,23591191 +) +(1,15698:6630773,24257369:25952256,410518,107478 +h1,15698:6630773,24257369:0,0,0 +g1,15698:7579210,24257369 +g1,15698:8843793,24257369 +g1,15698:16431290,24257369 +g1,15698:21805767,24257369 +g1,15698:22121913,24257369 +g1,15698:22438059,24257369 +g1,15698:22754205,24257369 +g1,15698:23070351,24257369 +g1,15698:23386497,24257369 +g1,15698:23702643,24257369 +g1,15698:24018789,24257369 +h1,15698:30341703,24257369:0,0,0 +k1,15698:32583029,24257369:2241326 +g1,15698:32583029,24257369 +) +] +) +g1,15699:32583029,24364847 +g1,15699:6630773,24364847 +g1,15699:6630773,24364847 +g1,15699:32583029,24364847 +g1,15699:32583029,24364847 +) +h1,15699:6630773,24561455:0,0,0 +v1,15703:6630773,26378111:0,393216,0 +(1,15704:6630773,31180742:25952256,5195847,616038 +g1,15704:6630773,31180742 +(1,15704:6630773,31180742:25952256,5195847,616038 +(1,15704:6630773,31796780:25952256,5811885,0 +[1,15704:6630773,31796780:25952256,5811885,0 +(1,15704:6630773,31770566:25952256,5759457,0 +r1,15704:6656987,31770566:26214,5759457,0 +[1,15704:6656987,31770566:25899828,5759457,0 +(1,15704:6656987,31180742:25899828,4579809,0 +[1,15704:7246811,31180742:24720180,4579809,0 +(1,15704:7246811,27688307:24720180,1087374,134348 +k1,15703:8618952,27688307:162438 +k1,15703:9978076,27688307:162437 +k1,15703:12406094,27688307:162438 +k1,15703:15640859,27688307:162437 +k1,15703:16750948,27688307:162438 +k1,15703:20194117,27688307:162437 +(1,15703:20194117,27688307:0,452978,115847 +r1,15704:21607518,27688307:1413401,568825,115847 +k1,15703:20194117,27688307:-1413401 +) +(1,15703:20194117,27688307:1413401,452978,115847 +k1,15703:20194117,27688307:3277 +h1,15703:21604241,27688307:0,411205,112570 +) +k1,15703:21769956,27688307:162438 +k1,15703:22463890,27688307:162437 +k1,15703:23645413,27688307:162438 +k1,15703:26152073,27688307:162437 +k1,15703:28901217,27688307:162438 +k1,15703:31966991,27688307:0 +) +(1,15704:7246811,28529795:24720180,513147,126483 +k1,15703:9335741,28529795:202804 +k1,15703:12601041,28529795:202803 +k1,15703:14429793,28529795:202804 +k1,15703:15824042,28529795:202804 +k1,15703:17787797,28529795:202803 +k1,15703:20942998,28529795:202804 +k1,15703:21907329,28529795:202803 +(1,15703:21907329,28529795:0,452978,115847 +r1,15704:22969018,28529795:1061689,568825,115847 +k1,15703:21907329,28529795:-1061689 +) +(1,15703:21907329,28529795:1061689,452978,115847 +k1,15703:21907329,28529795:3277 +h1,15703:22965741,28529795:0,411205,112570 +) +k1,15703:23345492,28529795:202804 +k1,15703:26467270,28529795:202804 +k1,15703:29276440,28529795:202803 +k1,15703:30763750,28529795:202804 +k1,15703:31966991,28529795:0 +) +(1,15704:7246811,29371283:24720180,513147,134348 +k1,15703:7984036,29371283:205728 +k1,15703:10341967,29371283:205729 +k1,15703:11566780,29371283:205728 +k1,15703:14038089,29371283:205729 +k1,15703:15005345,29371283:205728 +k1,15703:17301017,29371283:205729 +k1,15703:18525830,29371283:205728 +k1,15703:21757355,29371283:205728 +k1,15703:23357035,29371283:205729 +k1,15703:24333466,29371283:205728 +k1,15703:26870311,29371283:205729 +k1,15703:30322037,29371283:205728 +k1,15703:31966991,29371283:0 +) +(1,15704:7246811,30212771:24720180,513147,134348 +k1,15703:8889977,30212771:266255 +k1,15703:10499065,30212771:266255 +k1,15703:12159271,30212771:266255 +k1,15703:13444611,30212771:266255 +k1,15703:16736663,30212771:266255 +k1,15703:18899529,30212771:266254 +k1,15703:20867754,30212771:266255 +k1,15703:23625032,30212771:266255 +k1,15703:25082732,30212771:266255 +k1,15703:29306051,30212771:266255 +k1,15703:31350953,30212771:266255 +k1,15703:31966991,30212771:0 +) +(1,15704:7246811,31054259:24720180,426639,126483 +g1,15703:8904871,31054259 +k1,15704:31966991,31054259:19812190 +g1,15704:31966991,31054259 +) +] +) +] +r1,15704:32583029,31770566:26214,5759457,0 +) +] +) +) +g1,15704:32583029,31180742 +) +h1,15704:6630773,31796780:0,0,0 +v1,15707:6630773,33125852:0,393216,0 +(1,15708:6630773,36253372:25952256,3520736,616038 +g1,15708:6630773,36253372 +(1,15708:6630773,36253372:25952256,3520736,616038 +(1,15708:6630773,36869410:25952256,4136774,0 +[1,15708:6630773,36869410:25952256,4136774,0 +(1,15708:6630773,36843196:25952256,4084346,0 +r1,15708:6656987,36843196:26214,4084346,0 +[1,15708:6656987,36843196:25899828,4084346,0 +(1,15708:6656987,36253372:25899828,2904698,0 +[1,15708:7246811,36253372:24720180,2904698,0 +(1,15708:7246811,34436048:24720180,1087374,126483 +k1,15707:8657623,34436048:201109 +k1,15707:10007577,34436048:201108 +k1,15707:13489418,34436048:201109 +(1,15707:13489418,34436048:0,459977,115847 +r1,15708:17013090,34436048:3523672,575824,115847 +k1,15707:13489418,34436048:-3523672 +) +(1,15707:13489418,34436048:3523672,459977,115847 +k1,15707:13489418,34436048:3277 +h1,15707:17009813,34436048:0,411205,112570 +) +k1,15707:17214198,34436048:201108 +k1,15707:18809258,34436048:201109 +(1,15707:18809258,34436048:0,459977,115847 +r1,15708:23036354,34436048:4227096,575824,115847 +k1,15707:18809258,34436048:-4227096 +) +(1,15707:18809258,34436048:4227096,459977,115847 +k1,15707:18809258,34436048:3277 +h1,15707:23033077,34436048:0,411205,112570 +) +k1,15707:23237462,34436048:201108 +k1,15707:24089999,34436048:201109 +k1,15707:26314859,34436048:201108 +k1,15707:28371948,34436048:201109 +k1,15707:28928916,34436048:201108 +k1,15707:30123551,34436048:201109 +k1,15707:30983951,34436048:201108 +k1,15707:31966991,34436048:0 +) +(1,15708:7246811,35277536:24720180,513147,134348 +k1,15707:9225897,35277536:200439 +k1,15707:10109221,35277536:200439 +k1,15707:11701645,35277536:200439 +k1,15707:12885125,35277536:200440 +k1,15707:15327551,35277536:200439 +k1,15707:18494805,35277536:200439 +k1,15707:22138506,35277536:200439 +k1,15707:23669326,35277536:200439 +k1,15707:24888850,35277536:200439 +k1,15707:27868017,35277536:200440 +k1,15707:29061982,35277536:200439 +k1,15707:29921713,35277536:200439 +k1,15707:31435494,35277536:200439 +k1,15707:31966991,35277536:0 +) +(1,15708:7246811,36119024:24720180,513147,134348 +g1,15707:9993424,36119024 +g1,15707:10954181,36119024 +g1,15707:12172495,36119024 +g1,15707:15444052,36119024 +g1,15707:17848568,36119024 +g1,15707:18699225,36119024 +(1,15707:18699225,36119024:0,452978,115847 +r1,15708:21871185,36119024:3171960,568825,115847 +k1,15707:18699225,36119024:-3171960 +) +(1,15707:18699225,36119024:3171960,452978,115847 +k1,15707:18699225,36119024:3277 +h1,15707:21867908,36119024:0,411205,112570 +) +k1,15708:31966991,36119024:9922136 +g1,15708:31966991,36119024 +) +] +) +] +r1,15708:32583029,36843196:26214,4084346,0 +) +] +) +) +g1,15708:32583029,36253372 +) +h1,15708:6630773,36869410:0,0,0 +v1,15711:6630773,38198482:0,393216,0 +(1,15712:6630773,41318137:25952256,3512871,616038 +g1,15712:6630773,41318137 +(1,15712:6630773,41318137:25952256,3512871,616038 +(1,15712:6630773,41934175:25952256,4128909,0 +[1,15712:6630773,41934175:25952256,4128909,0 +(1,15712:6630773,41907961:25952256,4076481,0 +r1,15712:6656987,41907961:26214,4076481,0 +[1,15712:6656987,41907961:25899828,4076481,0 +(1,15712:6656987,41318137:25899828,2896833,0 +[1,15712:7246811,41318137:24720180,2896833,0 +(1,15712:7246811,39508678:24720180,1087374,126483 +k1,15711:8598095,39508678:141581 +k1,15711:11621949,39508678:141581 +k1,15711:12782615,39508678:141581 +k1,15711:15683917,39508678:141581 +k1,15711:16484790,39508678:141581 +k1,15711:19652168,39508678:141581 +(1,15711:19652168,39508678:0,452978,115847 +r1,15712:21417281,39508678:1765113,568825,115847 +k1,15711:19652168,39508678:-1765113 +) +(1,15711:19652168,39508678:1765113,452978,115847 +k1,15711:19652168,39508678:3277 +h1,15711:21414004,39508678:0,411205,112570 +) +k1,15711:21558862,39508678:141581 +k1,15711:22891888,39508678:141581 +(1,15711:22891888,39508678:0,452978,115847 +r1,15712:26767272,39508678:3875384,568825,115847 +k1,15711:22891888,39508678:-3875384 +) +(1,15711:22891888,39508678:3875384,452978,115847 +k1,15711:22891888,39508678:3277 +h1,15711:26763995,39508678:0,411205,112570 +) +k1,15711:27082523,39508678:141581 +k1,15711:28415549,39508678:141581 +k1,15711:29463493,39508678:141581 +k1,15711:30366602,39508678:141581 +k1,15712:31966991,39508678:0 +) +(1,15712:7246811,40350166:24720180,513147,134348 +k1,15711:9326804,40350166:179449 +k1,15711:10525339,40350166:179450 +k1,15711:12970368,40350166:179449 +k1,15711:16552446,40350166:179449 +k1,15711:17399052,40350166:179450 +(1,15711:17399052,40350166:0,452978,115847 +r1,15712:21274436,40350166:3875384,568825,115847 +k1,15711:17399052,40350166:-3875384 +) +(1,15711:17399052,40350166:3875384,452978,115847 +k1,15711:17399052,40350166:3277 +h1,15711:21271159,40350166:0,411205,112570 +) +k1,15711:21627555,40350166:179449 +k1,15711:22458432,40350166:179449 +k1,15711:23616334,40350166:179449 +k1,15711:24814869,40350166:179450 +k1,15711:26094012,40350166:179449 +k1,15711:26924889,40350166:179449 +k1,15711:29114984,40350166:179450 +k1,15711:30313518,40350166:179449 +k1,15711:31966991,40350166:0 +) +(1,15712:7246811,41191654:24720180,513147,126483 +g1,15711:9604796,41191654 +g1,15711:10490187,41191654 +(1,15711:10490187,41191654:0,452978,115847 +r1,15712:12255300,41191654:1765113,568825,115847 +k1,15711:10490187,41191654:-1765113 +) +(1,15711:10490187,41191654:1765113,452978,115847 +k1,15711:10490187,41191654:3277 +h1,15711:12252023,41191654:0,411205,112570 +) +g1,15711:12454529,41191654 +g1,15711:14146668,41191654 +g1,15711:15107425,41191654 +k1,15712:31966991,41191654:14420316 +g1,15712:31966991,41191654 +) +] +) +] +r1,15712:32583029,41907961:26214,4076481,0 +) +] +) +) +g1,15712:32583029,41318137 +) +h1,15712:6630773,41934175:0,0,0 +(1,15716:6630773,43263247:25952256,513147,134348 +h1,15715:6630773,43263247:983040,0,0 +k1,15715:9249974,43263247:203544 +k1,15715:9868357,43263247:203540 +k1,15715:12832277,43263247:203544 +k1,15715:15267322,43263247:203544 +k1,15715:18496663,43263247:203544 +k1,15715:19647858,43263247:203544 +k1,15715:22534446,43263247:203544 +k1,15715:25324697,43263247:203545 +k1,15715:26922192,43263247:203544 +k1,15715:28612748,43263247:203544 +k1,15715:30007737,43263247:203544 +k1,15715:31591469,43263247:203544 +k1,15715:32583029,43263247:0 +) +(1,15716:6630773,44104735:25952256,513147,134348 +k1,15715:8610714,44104735:218333 +k1,15715:9445085,44104735:218333 +k1,15715:10682502,44104735:218332 +k1,15715:12288888,44104735:218333 +k1,15715:14005374,44104735:218333 +k1,15715:15171358,44104735:218333 +(1,15715:15171358,44104735:0,459977,115847 +r1,15715:16936471,44104735:1765113,575824,115847 +k1,15715:15171358,44104735:-1765113 +) +(1,15715:15171358,44104735:1765113,459977,115847 +k1,15715:15171358,44104735:3277 +h1,15715:16933194,44104735:0,411205,112570 +) +k1,15715:17154803,44104735:218332 +k1,15715:18564581,44104735:218333 +k1,15715:19398952,44104735:218333 +k1,15715:22810199,44104735:218333 +k1,15715:24416584,44104735:218332 +k1,15715:26637042,44104735:218333 +k1,15715:28004221,44104735:218333 +(1,15715:28004221,44104735:0,459977,115847 +r1,15715:32583029,44104735:4578808,575824,115847 +k1,15715:28004221,44104735:-4578808 +) +(1,15715:28004221,44104735:4578808,459977,115847 +k1,15715:28004221,44104735:3277 +h1,15715:32579752,44104735:0,411205,112570 +) +k1,15715:32583029,44104735:0 +) +(1,15716:6630773,44946223:25952256,513147,126483 +g1,15715:7481430,44946223 +g1,15715:9711620,44946223 +g1,15715:10929934,44946223 +g1,15715:12517216,44946223 +g1,15715:13664096,44946223 +g1,15715:15066566,44946223 +g1,15715:17874128,44946223 +g1,15715:18732649,44946223 +k1,15716:32583029,44946223:10650912 +g1,15716:32583029,44946223 +) +v1,15718:6630773,46099985:0,393216,0 +] +(1,15766:32583029,45706769:0,0,0 +g1,15766:32583029,45706769 +) +) +] +(1,15766:6630773,47279633:25952256,0,0 +h1,15766:6630773,47279633:25952256,0,0 ) ] -g1,15735:6630773,4812305 -g1,15735:6630773,4812305 -g1,15735:7909380,4812305 -g1,15735:10167095,4812305 -g1,15735:11576774,4812305 -g1,15735:15078362,4812305 -k1,15735:31387652,4812305:16309290 -) -) -] -[1,15735:6630773,45706769:25952256,40108032,0 -(1,15735:6630773,45706769:25952256,40108032,0 -(1,15735:6630773,45706769:0,0,0 -g1,15735:6630773,45706769 -) -[1,15735:6630773,45706769:25952256,40108032,0 -(1,15629:6630773,6254097:25952256,513147,126483 -h1,15628:6630773,6254097:983040,0,0 -k1,15628:9042731,6254097:232231 -k1,15628:12053690,6254097:232232 -k1,15628:13966264,6254097:232231 -k1,15628:14729993,6254097:232232 -k1,15628:17091489,6254097:232231 -k1,15628:18094424,6254097:232232 -k1,15628:21031981,6254097:232231 -k1,15628:22354076,6254097:232231 -k1,15628:24208324,6254097:232232 -k1,15628:25165383,6254097:232231 -k1,15628:25855712,6254097:232232 -k1,15628:28645813,6254097:232231 -k1,15628:30418141,6254097:232232 -k1,15628:32117068,6254097:232231 -k1,15628:32583029,6254097:0 -) -(1,15629:6630773,7095585:25952256,513147,134348 -g1,15628:7849087,7095585 -g1,15628:9496662,7095585 -g1,15628:10347319,7095585 -g1,15628:11565633,7095585 -g1,15628:14351568,7095585 -g1,15628:17442901,7095585 -g1,15628:20213107,7095585 -g1,15628:22062533,7095585 -g1,15628:23704209,7095585 -g1,15628:25393727,7095585 -g1,15628:27635713,7095585 -g1,15628:29572957,7095585 -k1,15629:32583029,7095585:162533 -g1,15629:32583029,7095585 -) -v1,15631:6630773,8281175:0,393216,0 -(1,15638:6630773,10569639:25952256,2681680,196608 -g1,15638:6630773,10569639 -g1,15638:6630773,10569639 -g1,15638:6434165,10569639 -(1,15638:6434165,10569639:0,2681680,196608 -r1,15638:32779637,10569639:26345472,2878288,196608 -k1,15638:6434165,10569639:-26345472 -) -(1,15638:6434165,10569639:26345472,2681680,196608 -[1,15638:6630773,10569639:25952256,2485072,0 -(1,15633:6630773,8463627:25952256,379060,6290 -(1,15632:6630773,8463627:0,0,0 -g1,15632:6630773,8463627 -g1,15632:6630773,8463627 -g1,15632:6303093,8463627 -(1,15632:6303093,8463627:0,0,0 -) -g1,15632:6630773,8463627 -) -g1,15633:7263065,8463627 -g1,15633:8527648,8463627 -k1,15633:8527648,8463627:0 -h1,15633:9476085,8463627:0,0,0 -k1,15633:32583029,8463627:23106944 -g1,15633:32583029,8463627 -) -(1,15634:6630773,9129805:25952256,404226,6290 -h1,15634:6630773,9129805:0,0,0 -h1,15634:8211501,9129805:0,0,0 -k1,15634:32583029,9129805:24371528 -g1,15634:32583029,9129805 -) -(1,15635:6630773,9795983:25952256,404226,76021 -h1,15635:6630773,9795983:0,0,0 -k1,15635:6630773,9795983:0 -h1,15635:10424521,9795983:0,0,0 -k1,15635:32583029,9795983:22158508 -g1,15635:32583029,9795983 -) -(1,15636:6630773,10462161:25952256,404226,107478 -h1,15636:6630773,10462161:0,0,0 -k1,15636:6630773,10462161:0 -h1,15636:8843792,10462161:0,0,0 -k1,15636:32583028,10462161:23739236 -g1,15636:32583028,10462161 -) -] -) -g1,15638:32583029,10569639 -g1,15638:6630773,10569639 -g1,15638:6630773,10569639 -g1,15638:32583029,10569639 -g1,15638:32583029,10569639 -) -h1,15638:6630773,10766247:0,0,0 -(1,15644:6630773,12127147:25952256,513147,126483 -h1,15643:6630773,12127147:983040,0,0 -k1,15643:8852717,12127147:285355 -k1,15643:10242353,12127147:285354 -k1,15643:11813524,12127147:285355 -k1,15643:14122630,12127147:285354 -k1,15643:15731812,12127147:285355 -k1,15643:16676459,12127147:285355 -k1,15643:18275155,12127147:285354 -k1,15643:20770384,12127147:285355 -k1,15643:24465576,12127147:285354 -k1,15643:25526222,12127147:285355 -k1,15643:27156375,12127147:285354 -k1,15643:29899985,12127147:285355 -k1,15643:32583029,12127147:0 -) -(1,15644:6630773,12968635:25952256,485622,11795 -g1,15643:8862929,12968635 -k1,15644:32583029,12968635:22351708 -g1,15644:32583029,12968635 -) -v1,15646:6630773,14154225:0,393216,0 -(1,15668:6630773,21306074:25952256,7545065,196608 -g1,15668:6630773,21306074 -g1,15668:6630773,21306074 -g1,15668:6434165,21306074 -(1,15668:6434165,21306074:0,7545065,196608 -r1,15668:32779637,21306074:26345472,7741673,196608 -k1,15668:6434165,21306074:-26345472 -) -(1,15668:6434165,21306074:26345472,7545065,196608 -[1,15668:6630773,21306074:25952256,7348457,0 -(1,15648:6630773,14368135:25952256,410518,76021 -(1,15647:6630773,14368135:0,0,0 -g1,15647:6630773,14368135 -g1,15647:6630773,14368135 -g1,15647:6303093,14368135 -(1,15647:6303093,14368135:0,0,0 -) -g1,15647:6630773,14368135 -) -k1,15648:6630773,14368135:0 -k1,15648:6630773,14368135:0 -h1,15648:12321396,14368135:0,0,0 -k1,15648:32583028,14368135:20261632 -g1,15648:32583028,14368135 -) -(1,15653:6630773,15099849:25952256,410518,107478 -(1,15650:6630773,15099849:0,0,0 -g1,15650:6630773,15099849 -g1,15650:6630773,15099849 -g1,15650:6303093,15099849 -(1,15650:6303093,15099849:0,0,0 -) -g1,15650:6630773,15099849 -) -g1,15653:7579210,15099849 -g1,15653:8843793,15099849 -g1,15653:12953687,15099849 -g1,15653:13269833,15099849 -g1,15653:13585979,15099849 -g1,15653:13902125,15099849 -g1,15653:14218271,15099849 -g1,15653:14534417,15099849 -g1,15653:14850563,15099849 -g1,15653:15166709,15099849 -g1,15653:15482855,15099849 -g1,15653:15799001,15099849 -g1,15653:16115147,15099849 -g1,15653:16431293,15099849 -g1,15653:21173479,15099849 -g1,15653:21489625,15099849 -g1,15653:21805771,15099849 -g1,15653:22121917,15099849 -g1,15653:22438063,15099849 -g1,15653:22754209,15099849 -g1,15653:23070355,15099849 -g1,15653:23386501,15099849 -g1,15653:23702647,15099849 -g1,15653:24018793,15099849 -k1,15653:24018793,15099849:0 -h1,15653:31290144,15099849:0,0,0 -k1,15653:32583029,15099849:1292885 -g1,15653:32583029,15099849 -) -(1,15653:6630773,15766027:25952256,410518,101187 -h1,15653:6630773,15766027:0,0,0 -g1,15653:7579210,15766027 -g1,15653:8843793,15766027 -g1,15653:16431290,15766027 -g1,15653:24018787,15766027 -k1,15653:24018787,15766027:0 -h1,15653:31290138,15766027:0,0,0 -k1,15653:32583029,15766027:1292891 -g1,15653:32583029,15766027 -) -(1,15655:6630773,17087565:25952256,404226,76021 -(1,15654:6630773,17087565:0,0,0 -g1,15654:6630773,17087565 -g1,15654:6630773,17087565 -g1,15654:6303093,17087565 -(1,15654:6303093,17087565:0,0,0 -) -g1,15654:6630773,17087565 -) -k1,15655:6630773,17087565:0 -k1,15655:6630773,17087565:0 -h1,15655:12005250,17087565:0,0,0 -k1,15655:32583030,17087565:20577780 -g1,15655:32583030,17087565 -) -(1,15660:6630773,17819279:25952256,410518,107478 -(1,15657:6630773,17819279:0,0,0 -g1,15657:6630773,17819279 -g1,15657:6630773,17819279 -g1,15657:6303093,17819279 -(1,15657:6303093,17819279:0,0,0 -) -g1,15657:6630773,17819279 -) -g1,15660:7579210,17819279 -g1,15660:8843793,17819279 -g1,15660:10108376,17819279 -g1,15660:10424522,17819279 -g1,15660:10740668,17819279 -g1,15660:11056814,17819279 -g1,15660:11372960,17819279 -g1,15660:11689106,17819279 -g1,15660:12005252,17819279 -g1,15660:12321398,17819279 -g1,15660:12637544,17819279 -g1,15660:12953690,17819279 -g1,15660:13269836,17819279 -g1,15660:13585982,17819279 -g1,15660:13902128,17819279 -g1,15660:14218274,17819279 -g1,15660:14534420,17819279 -g1,15660:14850566,17819279 -g1,15660:17695877,17819279 -g1,15660:18012023,17819279 -g1,15660:18328169,17819279 -g1,15660:18644315,17819279 -g1,15660:18960461,17819279 -g1,15660:19276607,17819279 -g1,15660:19592753,17819279 -g1,15660:19908899,17819279 -g1,15660:20225045,17819279 -g1,15660:20541191,17819279 -g1,15660:20857337,17819279 -g1,15660:25599523,17819279 -g1,15660:25915669,17819279 -g1,15660:26231815,17819279 -g1,15660:26547961,17819279 -g1,15660:26864107,17819279 -h1,15660:30974001,17819279:0,0,0 -k1,15660:32583029,17819279:1609028 -g1,15660:32583029,17819279 -) -(1,15660:6630773,18485457:25952256,410518,107478 -h1,15660:6630773,18485457:0,0,0 -g1,15660:7579210,18485457 -g1,15660:8843793,18485457 -g1,15660:13269833,18485457 -g1,15660:13585979,18485457 -g1,15660:13902125,18485457 -g1,15660:14218271,18485457 -g1,15660:14534417,18485457 -g1,15660:14850563,18485457 -h1,15660:20541185,18485457:0,0,0 -k1,15660:32583029,18485457:12041844 -g1,15660:32583029,18485457 -) -(1,15662:6630773,19806995:25952256,404226,76021 -(1,15661:6630773,19806995:0,0,0 -g1,15661:6630773,19806995 -g1,15661:6630773,19806995 -g1,15661:6303093,19806995 -(1,15661:6303093,19806995:0,0,0 -) -g1,15661:6630773,19806995 -) -k1,15662:6630773,19806995:0 -k1,15662:6630773,19806995:0 -h1,15662:10108376,19806995:0,0,0 -k1,15662:32583028,19806995:22474652 -g1,15662:32583028,19806995 -) -(1,15667:6630773,20538709:25952256,410518,107478 -(1,15664:6630773,20538709:0,0,0 -g1,15664:6630773,20538709 -g1,15664:6630773,20538709 -g1,15664:6303093,20538709 -(1,15664:6303093,20538709:0,0,0 -) -g1,15664:6630773,20538709 -) -g1,15667:7579210,20538709 -g1,15667:8843793,20538709 -g1,15667:12953687,20538709 -g1,15667:13269833,20538709 -g1,15667:13585979,20538709 -g1,15667:13902125,20538709 -g1,15667:14218271,20538709 -g1,15667:14534417,20538709 -g1,15667:14850563,20538709 -g1,15667:15166709,20538709 -g1,15667:15482855,20538709 -g1,15667:15799001,20538709 -g1,15667:16115147,20538709 -g1,15667:16431293,20538709 -g1,15667:21173479,20538709 -g1,15667:21489625,20538709 -g1,15667:21805771,20538709 -g1,15667:22121917,20538709 -g1,15667:22438063,20538709 -g1,15667:22754209,20538709 -g1,15667:23070355,20538709 -g1,15667:23386501,20538709 -g1,15667:23702647,20538709 -g1,15667:24018793,20538709 -k1,15667:24018793,20538709:0 -h1,15667:31290144,20538709:0,0,0 -k1,15667:32583029,20538709:1292885 -g1,15667:32583029,20538709 -) -(1,15667:6630773,21204887:25952256,410518,101187 -h1,15667:6630773,21204887:0,0,0 -g1,15667:7579210,21204887 -g1,15667:8843793,21204887 -g1,15667:16431290,21204887 -g1,15667:24018787,21204887 -k1,15667:24018787,21204887:0 -h1,15667:31290138,21204887:0,0,0 -k1,15667:32583029,21204887:1292891 -g1,15667:32583029,21204887 -) -] -) -g1,15668:32583029,21306074 -g1,15668:6630773,21306074 -g1,15668:6630773,21306074 -g1,15668:32583029,21306074 -g1,15668:32583029,21306074 -) -h1,15668:6630773,21502682:0,0,0 -v1,15672:6630773,23382995:0,393216,0 -(1,15673:6630773,28185626:25952256,5195847,616038 -g1,15673:6630773,28185626 -(1,15673:6630773,28185626:25952256,5195847,616038 -(1,15673:6630773,28801664:25952256,5811885,0 -[1,15673:6630773,28801664:25952256,5811885,0 -(1,15673:6630773,28775450:25952256,5759457,0 -r1,15673:6656987,28775450:26214,5759457,0 -[1,15673:6656987,28775450:25899828,5759457,0 -(1,15673:6656987,28185626:25899828,4579809,0 -[1,15673:7246811,28185626:24720180,4579809,0 -(1,15673:7246811,24693191:24720180,1087374,134348 -k1,15672:8618952,24693191:162438 -k1,15672:9978076,24693191:162437 -k1,15672:12406094,24693191:162438 -k1,15672:15640859,24693191:162437 -k1,15672:16750948,24693191:162438 -k1,15672:20194117,24693191:162437 -(1,15672:20194117,24693191:0,452978,115847 -r1,15673:21607518,24693191:1413401,568825,115847 -k1,15672:20194117,24693191:-1413401 -) -(1,15672:20194117,24693191:1413401,452978,115847 -k1,15672:20194117,24693191:3277 -h1,15672:21604241,24693191:0,411205,112570 -) -k1,15672:21769956,24693191:162438 -k1,15672:22463890,24693191:162437 -k1,15672:23645413,24693191:162438 -k1,15672:26152073,24693191:162437 -k1,15672:28901217,24693191:162438 -k1,15672:31966991,24693191:0 -) -(1,15673:7246811,25534679:24720180,513147,126483 -k1,15672:9335741,25534679:202804 -k1,15672:12601041,25534679:202803 -k1,15672:14429793,25534679:202804 -k1,15672:15824042,25534679:202804 -k1,15672:17787797,25534679:202803 -k1,15672:20942998,25534679:202804 -k1,15672:21907329,25534679:202803 -(1,15672:21907329,25534679:0,452978,115847 -r1,15673:22969018,25534679:1061689,568825,115847 -k1,15672:21907329,25534679:-1061689 -) -(1,15672:21907329,25534679:1061689,452978,115847 -k1,15672:21907329,25534679:3277 -h1,15672:22965741,25534679:0,411205,112570 -) -k1,15672:23345492,25534679:202804 -k1,15672:26467270,25534679:202804 -k1,15672:29276440,25534679:202803 -k1,15672:30763750,25534679:202804 -k1,15672:31966991,25534679:0 -) -(1,15673:7246811,26376167:24720180,513147,134348 -k1,15672:7984036,26376167:205728 -k1,15672:10341967,26376167:205729 -k1,15672:11566780,26376167:205728 -k1,15672:14038089,26376167:205729 -k1,15672:15005345,26376167:205728 -k1,15672:17301017,26376167:205729 -k1,15672:18525830,26376167:205728 -k1,15672:21757355,26376167:205728 -k1,15672:23357035,26376167:205729 -k1,15672:24333466,26376167:205728 -k1,15672:26870311,26376167:205729 -k1,15672:30322037,26376167:205728 -k1,15672:31966991,26376167:0 -) -(1,15673:7246811,27217655:24720180,513147,134348 -k1,15672:8889977,27217655:266255 -k1,15672:10499065,27217655:266255 -k1,15672:12159271,27217655:266255 -k1,15672:13444611,27217655:266255 -k1,15672:16736663,27217655:266255 -k1,15672:18899529,27217655:266254 -k1,15672:20867754,27217655:266255 -k1,15672:23625032,27217655:266255 -k1,15672:25082732,27217655:266255 -k1,15672:29306051,27217655:266255 -k1,15672:31350953,27217655:266255 -k1,15672:31966991,27217655:0 -) -(1,15673:7246811,28059143:24720180,426639,126483 -g1,15672:8904871,28059143 -k1,15673:31966991,28059143:19812190 -g1,15673:31966991,28059143 -) -] -) -] -r1,15673:32583029,28775450:26214,5759457,0 -) -] -) -) -g1,15673:32583029,28185626 -) -h1,15673:6630773,28801664:0,0,0 -v1,15676:6630773,30162564:0,393216,0 -(1,15677:6630773,33290084:25952256,3520736,616038 -g1,15677:6630773,33290084 -(1,15677:6630773,33290084:25952256,3520736,616038 -(1,15677:6630773,33906122:25952256,4136774,0 -[1,15677:6630773,33906122:25952256,4136774,0 -(1,15677:6630773,33879908:25952256,4084346,0 -r1,15677:6656987,33879908:26214,4084346,0 -[1,15677:6656987,33879908:25899828,4084346,0 -(1,15677:6656987,33290084:25899828,2904698,0 -[1,15677:7246811,33290084:24720180,2904698,0 -(1,15677:7246811,31472760:24720180,1087374,126483 -k1,15676:8657623,31472760:201109 -k1,15676:10007577,31472760:201108 -k1,15676:13489418,31472760:201109 -(1,15676:13489418,31472760:0,459977,115847 -r1,15677:17013090,31472760:3523672,575824,115847 -k1,15676:13489418,31472760:-3523672 -) -(1,15676:13489418,31472760:3523672,459977,115847 -k1,15676:13489418,31472760:3277 -h1,15676:17009813,31472760:0,411205,112570 -) -k1,15676:17214198,31472760:201108 -k1,15676:18809258,31472760:201109 -(1,15676:18809258,31472760:0,459977,115847 -r1,15677:23036354,31472760:4227096,575824,115847 -k1,15676:18809258,31472760:-4227096 -) -(1,15676:18809258,31472760:4227096,459977,115847 -k1,15676:18809258,31472760:3277 -h1,15676:23033077,31472760:0,411205,112570 -) -k1,15676:23237462,31472760:201108 -k1,15676:24089999,31472760:201109 -k1,15676:26314859,31472760:201108 -k1,15676:28371948,31472760:201109 -k1,15676:28928916,31472760:201108 -k1,15676:30123551,31472760:201109 -k1,15676:30983951,31472760:201108 -k1,15676:31966991,31472760:0 -) -(1,15677:7246811,32314248:24720180,513147,134348 -k1,15676:9225897,32314248:200439 -k1,15676:10109221,32314248:200439 -k1,15676:11701645,32314248:200439 -k1,15676:12885125,32314248:200440 -k1,15676:15327551,32314248:200439 -k1,15676:18494805,32314248:200439 -k1,15676:22138506,32314248:200439 -k1,15676:23669326,32314248:200439 -k1,15676:24888850,32314248:200439 -k1,15676:27868017,32314248:200440 -k1,15676:29061982,32314248:200439 -k1,15676:29921713,32314248:200439 -k1,15676:31435494,32314248:200439 -k1,15676:31966991,32314248:0 -) -(1,15677:7246811,33155736:24720180,513147,134348 -g1,15676:9993424,33155736 -g1,15676:10954181,33155736 -g1,15676:12172495,33155736 -g1,15676:15444052,33155736 -g1,15676:17848568,33155736 -g1,15676:18699225,33155736 -(1,15676:18699225,33155736:0,452978,115847 -r1,15677:21871185,33155736:3171960,568825,115847 -k1,15676:18699225,33155736:-3171960 -) -(1,15676:18699225,33155736:3171960,452978,115847 -k1,15676:18699225,33155736:3277 -h1,15676:21867908,33155736:0,411205,112570 -) -k1,15677:31966991,33155736:9922136 -g1,15677:31966991,33155736 -) -] -) -] -r1,15677:32583029,33879908:26214,4084346,0 -) -] -) -) -g1,15677:32583029,33290084 -) -h1,15677:6630773,33906122:0,0,0 -v1,15680:6630773,35267022:0,393216,0 -(1,15681:6630773,38386677:25952256,3512871,616038 -g1,15681:6630773,38386677 -(1,15681:6630773,38386677:25952256,3512871,616038 -(1,15681:6630773,39002715:25952256,4128909,0 -[1,15681:6630773,39002715:25952256,4128909,0 -(1,15681:6630773,38976501:25952256,4076481,0 -r1,15681:6656987,38976501:26214,4076481,0 -[1,15681:6656987,38976501:25899828,4076481,0 -(1,15681:6656987,38386677:25899828,2896833,0 -[1,15681:7246811,38386677:24720180,2896833,0 -(1,15681:7246811,36577218:24720180,1087374,126483 -k1,15680:8598095,36577218:141581 -k1,15680:11621949,36577218:141581 -k1,15680:12782615,36577218:141581 -k1,15680:15683917,36577218:141581 -k1,15680:16484790,36577218:141581 -k1,15680:19652168,36577218:141581 -(1,15680:19652168,36577218:0,452978,115847 -r1,15681:21417281,36577218:1765113,568825,115847 -k1,15680:19652168,36577218:-1765113 -) -(1,15680:19652168,36577218:1765113,452978,115847 -k1,15680:19652168,36577218:3277 -h1,15680:21414004,36577218:0,411205,112570 -) -k1,15680:21558862,36577218:141581 -k1,15680:22891888,36577218:141581 -(1,15680:22891888,36577218:0,452978,115847 -r1,15681:26767272,36577218:3875384,568825,115847 -k1,15680:22891888,36577218:-3875384 -) -(1,15680:22891888,36577218:3875384,452978,115847 -k1,15680:22891888,36577218:3277 -h1,15680:26763995,36577218:0,411205,112570 -) -k1,15680:27082523,36577218:141581 -k1,15680:28415549,36577218:141581 -k1,15680:29463493,36577218:141581 -k1,15680:30366602,36577218:141581 -k1,15681:31966991,36577218:0 -) -(1,15681:7246811,37418706:24720180,513147,134348 -k1,15680:9326804,37418706:179449 -k1,15680:10525339,37418706:179450 -k1,15680:12970368,37418706:179449 -k1,15680:16552446,37418706:179449 -k1,15680:17399052,37418706:179450 -(1,15680:17399052,37418706:0,452978,115847 -r1,15681:21274436,37418706:3875384,568825,115847 -k1,15680:17399052,37418706:-3875384 -) -(1,15680:17399052,37418706:3875384,452978,115847 -k1,15680:17399052,37418706:3277 -h1,15680:21271159,37418706:0,411205,112570 -) -k1,15680:21627555,37418706:179449 -k1,15680:22458432,37418706:179449 -k1,15680:23616334,37418706:179449 -k1,15680:24814869,37418706:179450 -k1,15680:26094012,37418706:179449 -k1,15680:26924889,37418706:179449 -k1,15680:29114984,37418706:179450 -k1,15680:30313518,37418706:179449 -k1,15680:31966991,37418706:0 -) -(1,15681:7246811,38260194:24720180,513147,126483 -g1,15680:9604796,38260194 -g1,15680:10490187,38260194 -(1,15680:10490187,38260194:0,452978,115847 -r1,15681:12255300,38260194:1765113,568825,115847 -k1,15680:10490187,38260194:-1765113 -) -(1,15680:10490187,38260194:1765113,452978,115847 -k1,15680:10490187,38260194:3277 -h1,15680:12252023,38260194:0,411205,112570 -) -g1,15680:12454529,38260194 -g1,15680:14146668,38260194 -g1,15680:15107425,38260194 -k1,15681:31966991,38260194:14420316 -g1,15681:31966991,38260194 -) -] -) -] -r1,15681:32583029,38976501:26214,4076481,0 -) -] -) -) -g1,15681:32583029,38386677 -) -h1,15681:6630773,39002715:0,0,0 -(1,15685:6630773,40363615:25952256,513147,134348 -h1,15684:6630773,40363615:983040,0,0 -k1,15684:9249974,40363615:203544 -k1,15684:9868357,40363615:203540 -k1,15684:12832277,40363615:203544 -k1,15684:15267322,40363615:203544 -k1,15684:18496663,40363615:203544 -k1,15684:19647858,40363615:203544 -k1,15684:22534446,40363615:203544 -k1,15684:25324697,40363615:203545 -k1,15684:26922192,40363615:203544 -k1,15684:28612748,40363615:203544 -k1,15684:30007737,40363615:203544 -k1,15684:31591469,40363615:203544 -k1,15684:32583029,40363615:0 -) -(1,15685:6630773,41205103:25952256,513147,134348 -k1,15684:8610714,41205103:218333 -k1,15684:9445085,41205103:218333 -k1,15684:10682502,41205103:218332 -k1,15684:12288888,41205103:218333 -k1,15684:14005374,41205103:218333 -k1,15684:15171358,41205103:218333 -(1,15684:15171358,41205103:0,459977,115847 -r1,15684:16936471,41205103:1765113,575824,115847 -k1,15684:15171358,41205103:-1765113 -) -(1,15684:15171358,41205103:1765113,459977,115847 -k1,15684:15171358,41205103:3277 -h1,15684:16933194,41205103:0,411205,112570 -) -k1,15684:17154803,41205103:218332 -k1,15684:18564581,41205103:218333 -k1,15684:19398952,41205103:218333 -k1,15684:22810199,41205103:218333 -k1,15684:24416584,41205103:218332 -k1,15684:26637042,41205103:218333 -k1,15684:28004221,41205103:218333 -(1,15684:28004221,41205103:0,459977,115847 -r1,15684:32583029,41205103:4578808,575824,115847 -k1,15684:28004221,41205103:-4578808 -) -(1,15684:28004221,41205103:4578808,459977,115847 -k1,15684:28004221,41205103:3277 -h1,15684:32579752,41205103:0,411205,112570 -) -k1,15684:32583029,41205103:0 -) -(1,15685:6630773,42046591:25952256,513147,126483 -g1,15684:7481430,42046591 -g1,15684:9711620,42046591 -g1,15684:10929934,42046591 -g1,15684:12517216,42046591 -g1,15684:13664096,42046591 -g1,15684:15066566,42046591 -g1,15684:17874128,42046591 -g1,15684:18732649,42046591 -k1,15685:32583029,42046591:10650912 -g1,15685:32583029,42046591 -) -v1,15687:6630773,43232181:0,393216,0 -(1,15735:6630773,45510161:25952256,2671196,196608 -g1,15735:6630773,45510161 -g1,15735:6630773,45510161 -g1,15735:6434165,45510161 -(1,15735:6434165,45510161:0,2671196,196608 -r1,15735:32779637,45510161:26345472,2867804,196608 -k1,15735:6434165,45510161:-26345472 -) -(1,15735:6434165,45510161:26345472,2671196,196608 -[1,15735:6630773,45510161:25952256,2474588,0 -(1,15689:6630773,43446091:25952256,410518,76021 -(1,15688:6630773,43446091:0,0,0 -g1,15688:6630773,43446091 -g1,15688:6630773,43446091 -g1,15688:6303093,43446091 -(1,15688:6303093,43446091:0,0,0 -) -g1,15688:6630773,43446091 -) -k1,15689:6630773,43446091:0 -g1,15689:7579210,43446091 -g1,15689:15798998,43446091 -h1,15689:16115144,43446091:0,0,0 -k1,15689:32583029,43446091:16467885 -g1,15689:32583029,43446091 -) -(1,15690:6630773,44112269:25952256,410518,76021 -h1,15690:6630773,44112269:0,0,0 -g1,15690:6946919,44112269 -g1,15690:7263065,44112269 -k1,15690:7263065,44112269:0 -h1,15690:14218270,44112269:0,0,0 -k1,15690:32583030,44112269:18364760 -g1,15690:32583030,44112269 -) -(1,15691:6630773,44778447:25952256,404226,76021 -h1,15691:6630773,44778447:0,0,0 -h1,15691:6946919,44778447:0,0,0 -k1,15691:32583029,44778447:25636110 -g1,15691:32583029,44778447 -) -(1,15695:6630773,45510161:25952256,404226,76021 -(1,15693:6630773,45510161:0,0,0 -g1,15693:6630773,45510161 -g1,15693:6630773,45510161 -g1,15693:6303093,45510161 -(1,15693:6303093,45510161:0,0,0 -) -g1,15693:6630773,45510161 -) -g1,15695:7579210,45510161 -g1,15695:8843793,45510161 -h1,15695:10108376,45510161:0,0,0 -k1,15695:32583028,45510161:22474652 -g1,15695:32583028,45510161 -) -] -) -g1,15735:32583029,45510161 -g1,15735:6630773,45510161 -g1,15735:6630773,45510161 -g1,15735:32583029,45510161 -g1,15735:32583029,45510161 -) -] -(1,15735:32583029,45706769:0,0,0 -g1,15735:32583029,45706769 -) -) -] -(1,15735:6630773,47279633:25952256,0,0 -h1,15735:6630773,47279633:25952256,0,0 -) -] -h1,15735:4262630,4025873:0,0,0 -] -!24926 +h1,15766:4262630,4025873:0,0,0 +] +!24969 }306 -Input:2378:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2379:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2380:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2381:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2382:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2383:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2384:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:2375:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2376:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2377:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2378:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {307 -[1,15774:4262630,47279633:28320399,43253760,0 -(1,15774:4262630,4025873:0,0,0 -[1,15774:-473657,4025873:25952256,0,0 -(1,15774:-473657,-710414:25952256,0,0 -h1,15774:-473657,-710414:0,0,0 -(1,15774:-473657,-710414:0,0,0 -(1,15774:-473657,-710414:0,0,0 -g1,15774:-473657,-710414 -(1,15774:-473657,-710414:65781,0,65781 -g1,15774:-407876,-710414 -[1,15774:-407876,-644633:0,0,0 +[1,15791:4262630,47279633:28320399,43253760,0 +(1,15791:4262630,4025873:0,0,0 +[1,15791:-473657,4025873:25952256,0,0 +(1,15791:-473657,-710414:25952256,0,0 +h1,15791:-473657,-710414:0,0,0 +(1,15791:-473657,-710414:0,0,0 +(1,15791:-473657,-710414:0,0,0 +g1,15791:-473657,-710414 +(1,15791:-473657,-710414:65781,0,65781 +g1,15791:-407876,-710414 +[1,15791:-407876,-644633:0,0,0 ] ) -k1,15774:-473657,-710414:-65781 +k1,15791:-473657,-710414:-65781 ) ) -k1,15774:25478599,-710414:25952256 -g1,15774:25478599,-710414 +k1,15791:25478599,-710414:25952256 +g1,15791:25478599,-710414 ) ] ) -[1,15774:6630773,47279633:25952256,43253760,0 -[1,15774:6630773,4812305:25952256,786432,0 -(1,15774:6630773,4812305:25952256,505283,126483 -(1,15774:6630773,4812305:25952256,505283,126483 -g1,15774:3078558,4812305 -[1,15774:3078558,4812305:0,0,0 -(1,15774:3078558,2439708:0,1703936,0 -k1,15774:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15774:2537886,2439708:1179648,16384,0 +[1,15791:6630773,47279633:25952256,43253760,0 +[1,15791:6630773,4812305:25952256,786432,0 +(1,15791:6630773,4812305:25952256,505283,126483 +(1,15791:6630773,4812305:25952256,505283,126483 +g1,15791:3078558,4812305 +[1,15791:3078558,4812305:0,0,0 +(1,15791:3078558,2439708:0,1703936,0 +k1,15791:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15791:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15774:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15791:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15774:3078558,4812305:0,0,0 -(1,15774:3078558,2439708:0,1703936,0 -g1,15774:29030814,2439708 -g1,15774:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15774:36151628,1915420:16384,1179648,0 +[1,15791:3078558,4812305:0,0,0 +(1,15791:3078558,2439708:0,1703936,0 +g1,15791:29030814,2439708 +g1,15791:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15791:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15774:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15791:37855564,2439708:1179648,16384,0 ) ) -k1,15774:3078556,2439708:-34777008 +k1,15791:3078556,2439708:-34777008 ) ] -[1,15774:3078558,4812305:0,0,0 -(1,15774:3078558,49800853:0,16384,2228224 -k1,15774:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15774:2537886,49800853:1179648,16384,0 +[1,15791:3078558,4812305:0,0,0 +(1,15791:3078558,49800853:0,16384,2228224 +k1,15791:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15791:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15774:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15791:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,15774:3078558,4812305:0,0,0 -(1,15774:3078558,49800853:0,16384,2228224 -g1,15774:29030814,49800853 -g1,15774:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15774:36151628,51504789:16384,1179648,0 +[1,15791:3078558,4812305:0,0,0 +(1,15791:3078558,49800853:0,16384,2228224 +g1,15791:29030814,49800853 +g1,15791:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15791:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15774:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15791:37855564,49800853:1179648,16384,0 ) ) -k1,15774:3078556,49800853:-34777008 +k1,15791:3078556,49800853:-34777008 ) ] -g1,15774:6630773,4812305 -k1,15774:25146660,4812305:17320510 -g1,15774:26880087,4812305 -g1,15774:29193507,4812305 -g1,15774:30603186,4812305 -) -) -] -[1,15774:6630773,45706769:25952256,40108032,0 -(1,15774:6630773,45706769:25952256,40108032,0 -(1,15774:6630773,45706769:0,0,0 -g1,15774:6630773,45706769 -) -[1,15774:6630773,45706769:25952256,40108032,0 -v1,15735:6630773,6254097:0,393216,0 -(1,15735:6630773,19540536:25952256,13679655,196608 -g1,15735:6630773,19540536 -g1,15735:6630773,19540536 -g1,15735:6434165,19540536 -(1,15735:6434165,19540536:0,13679655,196608 -r1,15735:32779637,19540536:26345472,13876263,196608 -k1,15735:6434165,19540536:-26345472 -) -(1,15735:6434165,19540536:26345472,13679655,196608 -[1,15735:6630773,19540536:25952256,13483047,0 -(1,15697:6630773,6468007:25952256,410518,76021 -(1,15696:6630773,6468007:0,0,0 -g1,15696:6630773,6468007 -g1,15696:6630773,6468007 -g1,15696:6303093,6468007 -(1,15696:6303093,6468007:0,0,0 -) -g1,15696:6630773,6468007 -) -k1,15697:6630773,6468007:0 -h1,15697:12953687,6468007:0,0,0 -k1,15697:32583029,6468007:19629342 -g1,15697:32583029,6468007 -) -(1,15701:6630773,7199721:25952256,404226,76021 -(1,15699:6630773,7199721:0,0,0 -g1,15699:6630773,7199721 -g1,15699:6630773,7199721 -g1,15699:6303093,7199721 -(1,15699:6303093,7199721:0,0,0 -) -g1,15699:6630773,7199721 -) -g1,15701:7579210,7199721 -g1,15701:8843793,7199721 -h1,15701:9159939,7199721:0,0,0 -k1,15701:32583029,7199721:23423090 -g1,15701:32583029,7199721 -) -(1,15703:6630773,8521259:25952256,410518,76021 -(1,15702:6630773,8521259:0,0,0 -g1,15702:6630773,8521259 -g1,15702:6630773,8521259 -g1,15702:6303093,8521259 -(1,15702:6303093,8521259:0,0,0 -) -g1,15702:6630773,8521259 -) -k1,15703:6630773,8521259:0 -h1,15703:12953687,8521259:0,0,0 -k1,15703:32583029,8521259:19629342 -g1,15703:32583029,8521259 -) -(1,15710:6630773,9252973:25952256,404226,6290 -(1,15705:6630773,9252973:0,0,0 -g1,15705:6630773,9252973 -g1,15705:6630773,9252973 -g1,15705:6303093,9252973 -(1,15705:6303093,9252973:0,0,0 -) -g1,15705:6630773,9252973 -) -g1,15710:7579210,9252973 -g1,15710:7895356,9252973 -g1,15710:8211502,9252973 -g1,15710:8527648,9252973 -g1,15710:8843794,9252973 -g1,15710:9159940,9252973 -g1,15710:9476086,9252973 -g1,15710:9792232,9252973 -g1,15710:10108378,9252973 -g1,15710:11689107,9252973 -g1,15710:13585981,9252973 -g1,15710:15166710,9252973 -g1,15710:15482856,9252973 -g1,15710:15799002,9252973 -g1,15710:16115148,9252973 -g1,15710:16431294,9252973 -g1,15710:16747440,9252973 -g1,15710:17063586,9252973 -g1,15710:17379732,9252973 -g1,15710:17695878,9252973 -g1,15710:18012024,9252973 -g1,15710:18328170,9252973 -g1,15710:18644316,9252973 -g1,15710:18960462,9252973 -g1,15710:19276608,9252973 -g1,15710:19592754,9252973 -g1,15710:21489628,9252973 -g1,15710:21805774,9252973 -g1,15710:22121920,9252973 -g1,15710:22438066,9252973 -g1,15710:22754212,9252973 -g1,15710:23070358,9252973 -g1,15710:23386504,9252973 -g1,15710:23702650,9252973 -g1,15710:24018796,9252973 -g1,15710:24334942,9252973 -g1,15710:24651088,9252973 -g1,15710:24967234,9252973 -g1,15710:25283380,9252973 -g1,15710:25599526,9252973 -g1,15710:25915672,9252973 -h1,15710:27496400,9252973:0,0,0 -k1,15710:32583029,9252973:5086629 -g1,15710:32583029,9252973 -) -(1,15710:6630773,9919151:25952256,388497,9436 -h1,15710:6630773,9919151:0,0,0 -g1,15710:7579210,9919151 -g1,15710:10108376,9919151 -g1,15710:10424522,9919151 -g1,15710:10740668,9919151 -g1,15710:11056814,9919151 -g1,15710:11689106,9919151 -g1,15710:13585980,9919151 -g1,15710:13902126,9919151 -g1,15710:15166709,9919151 -g1,15710:18644312,9919151 -g1,15710:21489623,9919151 -g1,15710:24967226,9919151 -h1,15710:27496391,9919151:0,0,0 -k1,15710:32583029,9919151:5086638 -g1,15710:32583029,9919151 -) -(1,15710:6630773,10585329:25952256,404226,6290 -h1,15710:6630773,10585329:0,0,0 -g1,15710:7579210,10585329 -g1,15710:7895356,10585329 -g1,15710:8211502,10585329 -g1,15710:8527648,10585329 -g1,15710:8843794,10585329 -g1,15710:9159940,10585329 -g1,15710:9476086,10585329 -g1,15710:9792232,10585329 -g1,15710:10108378,10585329 -g1,15710:10424524,10585329 -g1,15710:10740670,10585329 -g1,15710:11056816,10585329 -g1,15710:11372962,10585329 -g1,15710:11689108,10585329 -g1,15710:12005254,10585329 -g1,15710:12321400,10585329 -g1,15710:12637546,10585329 -g1,15710:12953692,10585329 -g1,15710:13269838,10585329 -g1,15710:13585984,10585329 -g1,15710:13902130,10585329 -g1,15710:14218276,10585329 -g1,15710:14534422,10585329 -g1,15710:16431296,10585329 -h1,15710:17379733,10585329:0,0,0 -k1,15710:32583029,10585329:15203296 -g1,15710:32583029,10585329 -) -(1,15710:6630773,11251507:25952256,388497,9436 -h1,15710:6630773,11251507:0,0,0 -g1,15710:7579210,11251507 -g1,15710:10108376,11251507 -g1,15710:13585979,11251507 -g1,15710:16431290,11251507 -g1,15710:16747436,11251507 -h1,15710:17379727,11251507:0,0,0 -k1,15710:32583029,11251507:15203302 -g1,15710:32583029,11251507 -) -(1,15712:6630773,12573045:25952256,410518,82312 -(1,15711:6630773,12573045:0,0,0 -g1,15711:6630773,12573045 -g1,15711:6630773,12573045 -g1,15711:6303093,12573045 -(1,15711:6303093,12573045:0,0,0 -) -g1,15711:6630773,12573045 -) -k1,15712:6630773,12573045:0 -g1,15712:13902124,12573045 -h1,15712:17063581,12573045:0,0,0 -k1,15712:32583029,12573045:15519448 -g1,15712:32583029,12573045 -) -(1,15716:6630773,13304759:25952256,404226,76021 -(1,15714:6630773,13304759:0,0,0 -g1,15714:6630773,13304759 -g1,15714:6630773,13304759 -g1,15714:6303093,13304759 -(1,15714:6303093,13304759:0,0,0 -) -g1,15714:6630773,13304759 -) -g1,15716:7579210,13304759 -g1,15716:8843793,13304759 -h1,15716:10108376,13304759:0,0,0 -k1,15716:32583028,13304759:22474652 -g1,15716:32583028,13304759 -) -(1,15718:6630773,14626297:25952256,410518,76021 -(1,15717:6630773,14626297:0,0,0 -g1,15717:6630773,14626297 -g1,15717:6630773,14626297 -g1,15717:6303093,14626297 -(1,15717:6303093,14626297:0,0,0 -) -g1,15717:6630773,14626297 -) -k1,15718:6630773,14626297:0 -h1,15718:13585978,14626297:0,0,0 -k1,15718:32583030,14626297:18997052 -g1,15718:32583030,14626297 -) -(1,15722:6630773,15358011:25952256,404226,76021 -(1,15720:6630773,15358011:0,0,0 -g1,15720:6630773,15358011 -g1,15720:6630773,15358011 -g1,15720:6303093,15358011 -(1,15720:6303093,15358011:0,0,0 -) -g1,15720:6630773,15358011 -) -g1,15722:7579210,15358011 -g1,15722:8843793,15358011 -h1,15722:10424521,15358011:0,0,0 -k1,15722:32583029,15358011:22158508 -g1,15722:32583029,15358011 -) -(1,15724:6630773,16679549:25952256,410518,76021 -(1,15723:6630773,16679549:0,0,0 -g1,15723:6630773,16679549 -g1,15723:6630773,16679549 -g1,15723:6303093,16679549 -(1,15723:6303093,16679549:0,0,0 -) -g1,15723:6630773,16679549 -) -k1,15724:6630773,16679549:0 -h1,15724:13585978,16679549:0,0,0 -k1,15724:32583030,16679549:18997052 -g1,15724:32583030,16679549 -) -(1,15728:6630773,17411263:25952256,404226,76021 -(1,15726:6630773,17411263:0,0,0 -g1,15726:6630773,17411263 -g1,15726:6630773,17411263 -g1,15726:6303093,17411263 -(1,15726:6303093,17411263:0,0,0 -) -g1,15726:6630773,17411263 -) -g1,15728:7579210,17411263 -g1,15728:8843793,17411263 -h1,15728:10108376,17411263:0,0,0 -k1,15728:32583028,17411263:22474652 -g1,15728:32583028,17411263 -) -(1,15730:6630773,18732801:25952256,410518,76021 -(1,15729:6630773,18732801:0,0,0 -g1,15729:6630773,18732801 -g1,15729:6630773,18732801 -g1,15729:6303093,18732801 -(1,15729:6303093,18732801:0,0,0 -) -g1,15729:6630773,18732801 -) -k1,15730:6630773,18732801:0 -h1,15730:13585978,18732801:0,0,0 -k1,15730:32583030,18732801:18997052 -g1,15730:32583030,18732801 -) -(1,15734:6630773,19464515:25952256,404226,76021 -(1,15732:6630773,19464515:0,0,0 -g1,15732:6630773,19464515 -g1,15732:6630773,19464515 -g1,15732:6303093,19464515 -(1,15732:6303093,19464515:0,0,0 -) -g1,15732:6630773,19464515 -) -g1,15734:7579210,19464515 -g1,15734:8843793,19464515 -h1,15734:10108376,19464515:0,0,0 -k1,15734:32583028,19464515:22474652 -g1,15734:32583028,19464515 -) -] -) -g1,15735:32583029,19540536 -g1,15735:6630773,19540536 -g1,15735:6630773,19540536 -g1,15735:32583029,19540536 -g1,15735:32583029,19540536 -) -h1,15735:6630773,19737144:0,0,0 -v1,15739:6630773,21627208:0,393216,0 -(1,15740:6630773,24754728:25952256,3520736,616038 -g1,15740:6630773,24754728 -(1,15740:6630773,24754728:25952256,3520736,616038 -(1,15740:6630773,25370766:25952256,4136774,0 -[1,15740:6630773,25370766:25952256,4136774,0 -(1,15740:6630773,25344552:25952256,4084346,0 -r1,15740:6656987,25344552:26214,4084346,0 -[1,15740:6656987,25344552:25899828,4084346,0 -(1,15740:6656987,24754728:25899828,2904698,0 -[1,15740:7246811,24754728:24720180,2904698,0 -(1,15740:7246811,22937404:24720180,1087374,126483 -k1,15739:8632290,22937404:175776 -k1,15739:11597935,22937404:175777 -(1,15739:11597935,22937404:0,459977,115847 -r1,15740:15473319,22937404:3875384,575824,115847 -k1,15739:11597935,22937404:-3875384 -) -(1,15739:11597935,22937404:3875384,459977,115847 -k1,15739:11597935,22937404:3277 -h1,15739:15470042,22937404:0,411205,112570 -) -k1,15739:15649095,22937404:175776 -k1,15739:16929153,22937404:175776 -k1,15739:17852696,22937404:175777 -k1,15739:19541698,22937404:175776 -k1,15739:20368902,22937404:175776 -k1,15739:23568509,22937404:175776 -k1,15739:24100146,22937404:175777 -k1,15739:25258962,22937404:175776 -k1,15739:26883084,22937404:175776 -k1,15739:28626482,22937404:175777 -k1,15739:29590656,22937404:175776 -k1,15740:31966991,22937404:0 -) -(1,15740:7246811,23778892:24720180,505283,134348 -k1,15739:9190199,23778892:179159 -k1,15739:9985396,23778892:179159 -k1,15739:10520415,23778892:179159 -k1,15739:11937549,23778892:179159 -k1,15739:13401214,23778892:179159 -k1,15739:14111870,23778892:179159 -k1,15739:16960310,23778892:179159 -k1,15739:19172395,23778892:179158 -k1,15739:20719946,23778892:179159 -k1,15739:22445755,23778892:179159 -k1,15739:23237676,23778892:179159 -k1,15739:24435920,23778892:179159 -k1,15739:26003132,23778892:179159 -k1,15739:27680444,23778892:179159 -k1,15739:29051048,23778892:179159 -k1,15739:30573040,23778892:179159 -k1,15739:31966991,23778892:0 -) -(1,15740:7246811,24620380:24720180,513147,134348 -k1,15739:8448893,24620380:182997 -k1,15739:11327385,24620380:182996 -k1,15739:12161810,24620380:182997 -k1,15739:15281474,24620380:182996 -k1,15739:17156611,24620380:182997 -k1,15739:19118255,24620380:182997 -k1,15739:20585757,24620380:182996 -k1,15739:22269528,24620380:182997 -k1,15739:23068563,24620380:182997 -k1,15739:24270644,24620380:182996 -k1,15739:27529901,24620380:182997 -k1,15739:28883370,24620380:182996 -k1,15739:30057927,24620380:182997 -k1,15740:31966991,24620380:0 -k1,15740:31966991,24620380:0 -) -] -) -] -r1,15740:32583029,25344552:26214,4084346,0 -) -] -) -) -g1,15740:32583029,24754728 -) -h1,15740:6630773,25370766:0,0,0 -(1,15743:6630773,28702622:25952256,32768,229376 -(1,15743:6630773,28702622:0,32768,229376 -(1,15743:6630773,28702622:5505024,32768,229376 -r1,15743:12135797,28702622:5505024,262144,229376 -) -k1,15743:6630773,28702622:-5505024 -) -(1,15743:6630773,28702622:25952256,32768,0 -r1,15743:32583029,28702622:25952256,32768,0 -) -) -(1,15743:6630773,30306950:25952256,615776,161218 -(1,15743:6630773,30306950:1974731,582746,14155 -g1,15743:6630773,30306950 -g1,15743:8605504,30306950 -) -g1,15743:12197926,30306950 -g1,15743:13907629,30306950 -g1,15743:16972355,30306950 -g1,15743:18443770,30306950 -k1,15743:32583029,30306950:9359325 -g1,15743:32583029,30306950 -) -(1,15746:6630773,31541654:25952256,513147,134348 -k1,15745:9848386,31541654:202302 -k1,15745:10666726,31541654:202302 -k1,15745:11888112,31541654:202301 -k1,15745:13313316,31541654:202302 -k1,15745:14174910,31541654:202302 -k1,15745:15580453,31541654:202302 -k1,15745:18200378,31541654:202302 -k1,15745:19495164,31541654:202301 -k1,15745:20383628,31541654:202302 -k1,15745:21356633,31541654:202302 -k1,15745:24631263,31541654:202302 -k1,15745:25781216,31541654:202302 -k1,15745:27002602,31541654:202301 -(1,15745:27002602,31541654:0,459977,115847 -r1,15745:28416003,31541654:1413401,575824,115847 -k1,15745:27002602,31541654:-1413401 -) -(1,15745:27002602,31541654:1413401,459977,115847 -k1,15745:27002602,31541654:3277 -h1,15745:28412726,31541654:0,411205,112570 -) -k1,15745:28618305,31541654:202302 -k1,15745:30949216,31541654:202302 -k1,15746:32583029,31541654:0 -) -(1,15746:6630773,32383142:25952256,505283,134348 -k1,15745:8665011,32383142:174326 -k1,15745:10699248,32383142:174325 -k1,15745:12652221,32383142:174326 -k1,15745:13509432,32383142:174326 -k1,15745:15468958,32383142:174325 -k1,15745:16834729,32383142:174326 -k1,15745:19934582,32383142:174326 -k1,15745:21127992,32383142:174325 -k1,15745:23704868,32383142:174326 -k1,15745:24562079,32383142:174326 -k1,15745:26994119,32383142:174325 -k1,15745:30573040,32383142:174326 -k1,15745:32583029,32383142:0 -) -(1,15746:6630773,33224630:25952256,513147,126483 -k1,15745:7836554,33224630:186696 -k1,15745:9122943,33224630:186695 -k1,15745:9961067,33224630:186696 -k1,15745:10503622,33224630:186695 -k1,15745:13559484,33224630:186696 -k1,15745:17218933,33224630:186696 -k1,15745:17863725,33224630:186695 -k1,15745:18581918,33224630:186696 -k1,15745:21877642,33224630:186696 -k1,15745:22715765,33224630:186695 -k1,15745:24314762,33224630:186696 -k1,15745:25184342,33224630:186695 -k1,15745:26985845,33224630:186696 -k1,15745:27528401,33224630:186696 -k1,15745:28941275,33224630:186695 -k1,15745:30111011,33224630:186696 -k1,15746:32583029,33224630:0 -) -(1,15746:6630773,34066118:25952256,513147,126483 -k1,15745:8577811,34066118:188052 -k1,15745:9922573,34066118:188052 -k1,15745:11314521,34066118:188052 -k1,15745:12185458,34066118:188052 -k1,15745:14446414,34066118:188052 -k1,15745:15247228,34066118:188052 -k1,15745:15791140,34066118:188052 -k1,15745:17578270,34066118:188052 -k1,15745:18394156,34066118:188051 -k1,15745:20075774,34066118:188052 -k1,15745:21961208,34066118:188052 -k1,15745:22607357,34066118:188052 -k1,15745:23326906,34066118:188052 -k1,15745:25116658,34066118:188052 -k1,15745:27857337,34066118:188052 -k1,15745:28696817,34066118:188052 -k1,15745:30392852,34066118:188052 -k1,15745:31599989,34066118:188052 -k1,15745:32583029,34066118:0 -) -(1,15746:6630773,34907606:25952256,505283,134348 -k1,15745:8462101,34907606:253876 -k1,15745:11351180,34907606:253876 -k1,15745:13347658,34907606:253876 -k1,15745:14792980,34907606:253877 -k1,15745:16657731,34907606:253876 -k1,15745:17930692,34907606:253876 -k1,15745:21690744,34907606:253876 -k1,15745:23320221,34907606:253876 -k1,15745:25272135,34907606:253876 -k1,15745:25984109,34907606:253877 -k1,15745:26769482,34907606:253876 -k1,15745:27832728,34907606:253876 -k1,15745:30111011,34907606:253876 -k1,15745:32583029,34907606:0 -) -(1,15746:6630773,35749094:25952256,513147,115847 -k1,15745:7896445,35749094:215785 -(1,15745:7896445,35749094:0,452978,115847 -r1,15745:13882100,35749094:5985655,568825,115847 -k1,15745:7896445,35749094:-5985655 -) -(1,15745:7896445,35749094:5985655,452978,115847 -k1,15745:7896445,35749094:3277 -h1,15745:13878823,35749094:0,411205,112570 -) -k1,15745:14097884,35749094:215784 -k1,15745:15261320,35749094:215785 -k1,15745:17594573,35749094:215785 -k1,15745:19632914,35749094:215785 -k1,15745:20867783,35749094:215784 -k1,15745:23425825,35749094:215785 -k1,15745:26667407,35749094:215785 -k1,15745:29667160,35749094:215784 -k1,15745:31074390,35749094:215785 -k1,15745:32583029,35749094:0 -) -(1,15746:6630773,36590582:25952256,513147,126483 -k1,15745:9583638,36590582:193144 -k1,15745:10392820,36590582:193144 -k1,15745:13348307,36590582:193144 -k1,15745:14909842,36590582:193143 -k1,15745:15730821,36590582:193144 -k1,15745:16943050,36590582:193144 -k1,15745:18520314,36590582:193144 -k1,15745:21374875,36590582:193144 -k1,15745:22436371,36590582:193144 -k1,15745:24206967,36590582:193144 -k1,15745:24755970,36590582:193143 -k1,15745:25932154,36590582:193144 -k1,15745:29805145,36590582:193144 -k1,15745:31410590,36590582:193144 -k1,15745:32583029,36590582:0 -) -(1,15746:6630773,37432070:25952256,513147,126483 -k1,15745:8471943,37432070:168691 -k1,15745:9946767,37432070:168691 -k1,15745:11134544,37432070:168692 -k1,15745:12375404,37432070:168691 -k1,15745:13700805,37432070:168691 -k1,15745:15263447,37432070:168691 -k1,15745:17815027,37432070:168691 -k1,15745:20662175,37432070:168692 -k1,15745:22264794,37432070:168691 -k1,15745:23049523,37432070:168691 -k1,15745:23574074,37432070:168691 -k1,15745:26445471,37432070:168692 -k1,15745:27713856,37432070:168691 -k1,15745:28533975,37432070:168691 -(1,15745:28533975,37432070:0,452978,115847 -r1,15745:32409359,37432070:3875384,568825,115847 -k1,15745:28533975,37432070:-3875384 -) -(1,15745:28533975,37432070:3875384,452978,115847 -k1,15745:28533975,37432070:3277 -h1,15745:32406082,37432070:0,411205,112570 -) -k1,15745:32583029,37432070:0 -) -(1,15746:6630773,38273558:25952256,513147,126483 -g1,15745:7849087,38273558 -g1,15745:9220755,38273558 -g1,15745:10918792,38273558 -g1,15745:11800906,38273558 -g1,15745:14403340,38273558 -g1,15745:15996520,38273558 -g1,15745:17758783,38273558 -g1,15745:19149457,38273558 -g1,15745:21321320,38273558 -g1,15745:23131424,38273558 -g1,15745:24349738,38273558 -k1,15746:32583029,38273558:4553444 -g1,15746:32583029,38273558 -) -v1,15748:6630773,39464024:0,393216,0 -(1,15756:6630773,41158138:25952256,2087330,196608 -g1,15756:6630773,41158138 -g1,15756:6630773,41158138 -g1,15756:6434165,41158138 -(1,15756:6434165,41158138:0,2087330,196608 -r1,15756:32779637,41158138:26345472,2283938,196608 -k1,15756:6434165,41158138:-26345472 -) -(1,15756:6434165,41158138:26345472,2087330,196608 -[1,15756:6630773,41158138:25952256,1890722,0 -(1,15750:6630773,39677934:25952256,410518,107478 -(1,15749:6630773,39677934:0,0,0 -g1,15749:6630773,39677934 -g1,15749:6630773,39677934 -g1,15749:6303093,39677934 -(1,15749:6303093,39677934:0,0,0 -) -g1,15749:6630773,39677934 -) -g1,15750:7579210,39677934 -g1,15750:8527648,39677934 -g1,15750:21489621,39677934 -g1,15750:23070350,39677934 -g1,15750:23702642,39677934 -g1,15750:25283371,39677934 -g1,15750:25915663,39677934 -g1,15750:27496392,39677934 -g1,15750:28760975,39677934 -k1,15750:28760975,39677934:11010 -h1,15750:30985005,39677934:0,0,0 -k1,15750:32583029,39677934:1598024 -g1,15750:32583029,39677934 -) -(1,15751:6630773,40344112:25952256,410518,82312 -h1,15751:6630773,40344112:0,0,0 -g1,15751:11056813,40344112 -g1,15751:11689105,40344112 -g1,15751:12321397,40344112 -h1,15751:13269834,40344112:0,0,0 -k1,15751:32583030,40344112:19313196 -g1,15751:32583030,40344112 -) -(1,15755:6630773,41075826:25952256,404226,82312 -(1,15753:6630773,41075826:0,0,0 -g1,15753:6630773,41075826 -g1,15753:6630773,41075826 -g1,15753:6303093,41075826 -(1,15753:6303093,41075826:0,0,0 -) -g1,15753:6630773,41075826 -) -g1,15755:7579210,41075826 -g1,15755:8843793,41075826 -k1,15755:8843793,41075826:0 -h1,15755:15482851,41075826:0,0,0 -k1,15755:32583029,41075826:17100178 -g1,15755:32583029,41075826 -) -] -) -g1,15756:32583029,41158138 -g1,15756:6630773,41158138 -g1,15756:6630773,41158138 -g1,15756:32583029,41158138 -g1,15756:32583029,41158138 -) -h1,15756:6630773,41354746:0,0,0 -v1,15760:6630773,43069500:0,393216,0 -(1,15770:6630773,45412683:25952256,2736399,196608 -g1,15770:6630773,45412683 -g1,15770:6630773,45412683 -g1,15770:6434165,45412683 -(1,15770:6434165,45412683:0,2736399,196608 -r1,15770:32779637,45412683:26345472,2933007,196608 -k1,15770:6434165,45412683:-26345472 -) -(1,15770:6434165,45412683:26345472,2736399,196608 -[1,15770:6630773,45412683:25952256,2539791,0 -(1,15762:6630773,43283410:25952256,410518,82312 -(1,15761:6630773,43283410:0,0,0 -g1,15761:6630773,43283410 -g1,15761:6630773,43283410 -g1,15761:6303093,43283410 -(1,15761:6303093,43283410:0,0,0 -) -g1,15761:6630773,43283410 -) -k1,15762:6630773,43283410:0 -g1,15762:11056813,43283410 -g1,15762:11689105,43283410 -g1,15762:12321397,43283410 -h1,15762:13269834,43283410:0,0,0 -k1,15762:32583030,43283410:19313196 -g1,15762:32583030,43283410 -) -(1,15766:6630773,44015124:25952256,404226,82312 -(1,15764:6630773,44015124:0,0,0 -g1,15764:6630773,44015124 -g1,15764:6630773,44015124 -g1,15764:6303093,44015124 -(1,15764:6303093,44015124:0,0,0 -) -g1,15764:6630773,44015124 -) -g1,15766:7579210,44015124 -g1,15766:8843793,44015124 -g1,15766:14850561,44015124 -g1,15766:19908891,44015124 -h1,15766:20541182,44015124:0,0,0 -k1,15766:32583029,44015124:12041847 -g1,15766:32583029,44015124 -) -(1,15768:6630773,45336662:25952256,410518,76021 -(1,15767:6630773,45336662:0,0,0 -g1,15767:6630773,45336662 -g1,15767:6630773,45336662 -g1,15767:6303093,45336662 -(1,15767:6303093,45336662:0,0,0 -) -g1,15767:6630773,45336662 -) -k1,15768:6630773,45336662:0 -h1,15768:9476084,45336662:0,0,0 -k1,15768:32583028,45336662:23106944 -g1,15768:32583028,45336662 -) -] -) -g1,15770:32583029,45412683 -g1,15770:6630773,45412683 -g1,15770:6630773,45412683 -g1,15770:32583029,45412683 -g1,15770:32583029,45412683 -) -h1,15770:6630773,45609291:0,0,0 -] -(1,15774:32583029,45706769:0,0,0 -g1,15774:32583029,45706769 +g1,15791:6630773,4812305 +k1,15791:25146660,4812305:17320510 +g1,15791:26880087,4812305 +g1,15791:29193507,4812305 +g1,15791:30603186,4812305 ) ) ] -(1,15774:6630773,47279633:25952256,0,0 -h1,15774:6630773,47279633:25952256,0,0 +[1,15791:6630773,45706769:25952256,40108032,0 +(1,15791:6630773,45706769:25952256,40108032,0 +(1,15791:6630773,45706769:0,0,0 +g1,15791:6630773,45706769 ) -] -h1,15774:4262630,4025873:0,0,0 -] -!23364 +[1,15791:6630773,45706769:25952256,40108032,0 +v1,15766:6630773,6254097:0,393216,0 +(1,15766:6630773,22926144:25952256,17065263,196608 +g1,15766:6630773,22926144 +g1,15766:6630773,22926144 +g1,15766:6434165,22926144 +(1,15766:6434165,22926144:0,17065263,196608 +r1,15766:32779637,22926144:26345472,17261871,196608 +k1,15766:6434165,22926144:-26345472 +) +(1,15766:6434165,22926144:26345472,17065263,196608 +[1,15766:6630773,22926144:25952256,16868655,0 +(1,15720:6630773,6468007:25952256,410518,76021 +(1,15719:6630773,6468007:0,0,0 +g1,15719:6630773,6468007 +g1,15719:6630773,6468007 +g1,15719:6303093,6468007 +(1,15719:6303093,6468007:0,0,0 +) +g1,15719:6630773,6468007 +) +k1,15720:6630773,6468007:0 +g1,15720:7579210,6468007 +g1,15720:15798998,6468007 +h1,15720:16115144,6468007:0,0,0 +k1,15720:32583029,6468007:16467885 +g1,15720:32583029,6468007 +) +(1,15721:6630773,7134185:25952256,410518,76021 +h1,15721:6630773,7134185:0,0,0 +g1,15721:6946919,7134185 +g1,15721:7263065,7134185 +k1,15721:7263065,7134185:0 +h1,15721:14218270,7134185:0,0,0 +k1,15721:32583030,7134185:18364760 +g1,15721:32583030,7134185 +) +(1,15722:6630773,7800363:25952256,404226,76021 +h1,15722:6630773,7800363:0,0,0 +h1,15722:6946919,7800363:0,0,0 +k1,15722:32583029,7800363:25636110 +g1,15722:32583029,7800363 +) +(1,15726:6630773,8532077:25952256,404226,76021 +(1,15724:6630773,8532077:0,0,0 +g1,15724:6630773,8532077 +g1,15724:6630773,8532077 +g1,15724:6303093,8532077 +(1,15724:6303093,8532077:0,0,0 +) +g1,15724:6630773,8532077 +) +g1,15726:7579210,8532077 +g1,15726:8843793,8532077 +h1,15726:10108376,8532077:0,0,0 +k1,15726:32583028,8532077:22474652 +g1,15726:32583028,8532077 +) +(1,15728:6630773,9853615:25952256,410518,76021 +(1,15727:6630773,9853615:0,0,0 +g1,15727:6630773,9853615 +g1,15727:6630773,9853615 +g1,15727:6303093,9853615 +(1,15727:6303093,9853615:0,0,0 +) +g1,15727:6630773,9853615 +) +k1,15728:6630773,9853615:0 +h1,15728:12953687,9853615:0,0,0 +k1,15728:32583029,9853615:19629342 +g1,15728:32583029,9853615 +) +(1,15732:6630773,10585329:25952256,404226,76021 +(1,15730:6630773,10585329:0,0,0 +g1,15730:6630773,10585329 +g1,15730:6630773,10585329 +g1,15730:6303093,10585329 +(1,15730:6303093,10585329:0,0,0 +) +g1,15730:6630773,10585329 +) +g1,15732:7579210,10585329 +g1,15732:8843793,10585329 +h1,15732:9159939,10585329:0,0,0 +k1,15732:32583029,10585329:23423090 +g1,15732:32583029,10585329 +) +(1,15734:6630773,11906867:25952256,410518,76021 +(1,15733:6630773,11906867:0,0,0 +g1,15733:6630773,11906867 +g1,15733:6630773,11906867 +g1,15733:6303093,11906867 +(1,15733:6303093,11906867:0,0,0 +) +g1,15733:6630773,11906867 +) +k1,15734:6630773,11906867:0 +h1,15734:12953687,11906867:0,0,0 +k1,15734:32583029,11906867:19629342 +g1,15734:32583029,11906867 +) +(1,15741:6630773,12638581:25952256,404226,6290 +(1,15736:6630773,12638581:0,0,0 +g1,15736:6630773,12638581 +g1,15736:6630773,12638581 +g1,15736:6303093,12638581 +(1,15736:6303093,12638581:0,0,0 +) +g1,15736:6630773,12638581 +) +g1,15741:7579210,12638581 +g1,15741:7895356,12638581 +g1,15741:8211502,12638581 +g1,15741:8527648,12638581 +g1,15741:8843794,12638581 +g1,15741:9159940,12638581 +g1,15741:9476086,12638581 +g1,15741:9792232,12638581 +g1,15741:10108378,12638581 +g1,15741:11689107,12638581 +g1,15741:13585981,12638581 +g1,15741:15166710,12638581 +g1,15741:15482856,12638581 +g1,15741:15799002,12638581 +g1,15741:16115148,12638581 +g1,15741:16431294,12638581 +g1,15741:16747440,12638581 +g1,15741:17063586,12638581 +g1,15741:17379732,12638581 +g1,15741:17695878,12638581 +g1,15741:18012024,12638581 +g1,15741:18328170,12638581 +g1,15741:18644316,12638581 +g1,15741:18960462,12638581 +g1,15741:19276608,12638581 +g1,15741:19592754,12638581 +g1,15741:21489628,12638581 +g1,15741:21805774,12638581 +g1,15741:22121920,12638581 +g1,15741:22438066,12638581 +g1,15741:22754212,12638581 +g1,15741:23070358,12638581 +g1,15741:23386504,12638581 +g1,15741:23702650,12638581 +g1,15741:24018796,12638581 +g1,15741:24334942,12638581 +g1,15741:24651088,12638581 +g1,15741:24967234,12638581 +g1,15741:25283380,12638581 +g1,15741:25599526,12638581 +g1,15741:25915672,12638581 +h1,15741:27496400,12638581:0,0,0 +k1,15741:32583029,12638581:5086629 +g1,15741:32583029,12638581 +) +(1,15741:6630773,13304759:25952256,388497,9436 +h1,15741:6630773,13304759:0,0,0 +g1,15741:7579210,13304759 +g1,15741:10108376,13304759 +g1,15741:10424522,13304759 +g1,15741:10740668,13304759 +g1,15741:11056814,13304759 +g1,15741:11689106,13304759 +g1,15741:13585980,13304759 +g1,15741:13902126,13304759 +g1,15741:15166709,13304759 +g1,15741:18644312,13304759 +g1,15741:21489623,13304759 +g1,15741:24967226,13304759 +h1,15741:27496391,13304759:0,0,0 +k1,15741:32583029,13304759:5086638 +g1,15741:32583029,13304759 +) +(1,15741:6630773,13970937:25952256,404226,6290 +h1,15741:6630773,13970937:0,0,0 +g1,15741:7579210,13970937 +g1,15741:7895356,13970937 +g1,15741:8211502,13970937 +g1,15741:8527648,13970937 +g1,15741:8843794,13970937 +g1,15741:9159940,13970937 +g1,15741:9476086,13970937 +g1,15741:9792232,13970937 +g1,15741:10108378,13970937 +g1,15741:10424524,13970937 +g1,15741:10740670,13970937 +g1,15741:11056816,13970937 +g1,15741:11372962,13970937 +g1,15741:11689108,13970937 +g1,15741:12005254,13970937 +g1,15741:12321400,13970937 +g1,15741:12637546,13970937 +g1,15741:12953692,13970937 +g1,15741:13269838,13970937 +g1,15741:13585984,13970937 +g1,15741:13902130,13970937 +g1,15741:14218276,13970937 +g1,15741:14534422,13970937 +g1,15741:16431296,13970937 +h1,15741:17379733,13970937:0,0,0 +k1,15741:32583029,13970937:15203296 +g1,15741:32583029,13970937 +) +(1,15741:6630773,14637115:25952256,388497,9436 +h1,15741:6630773,14637115:0,0,0 +g1,15741:7579210,14637115 +g1,15741:10108376,14637115 +g1,15741:13585979,14637115 +g1,15741:16431290,14637115 +g1,15741:16747436,14637115 +h1,15741:17379727,14637115:0,0,0 +k1,15741:32583029,14637115:15203302 +g1,15741:32583029,14637115 +) +(1,15743:6630773,15958653:25952256,410518,82312 +(1,15742:6630773,15958653:0,0,0 +g1,15742:6630773,15958653 +g1,15742:6630773,15958653 +g1,15742:6303093,15958653 +(1,15742:6303093,15958653:0,0,0 +) +g1,15742:6630773,15958653 +) +k1,15743:6630773,15958653:0 +g1,15743:13902124,15958653 +h1,15743:17063581,15958653:0,0,0 +k1,15743:32583029,15958653:15519448 +g1,15743:32583029,15958653 +) +(1,15747:6630773,16690367:25952256,404226,76021 +(1,15745:6630773,16690367:0,0,0 +g1,15745:6630773,16690367 +g1,15745:6630773,16690367 +g1,15745:6303093,16690367 +(1,15745:6303093,16690367:0,0,0 +) +g1,15745:6630773,16690367 +) +g1,15747:7579210,16690367 +g1,15747:8843793,16690367 +h1,15747:10108376,16690367:0,0,0 +k1,15747:32583028,16690367:22474652 +g1,15747:32583028,16690367 +) +(1,15749:6630773,18011905:25952256,410518,76021 +(1,15748:6630773,18011905:0,0,0 +g1,15748:6630773,18011905 +g1,15748:6630773,18011905 +g1,15748:6303093,18011905 +(1,15748:6303093,18011905:0,0,0 +) +g1,15748:6630773,18011905 +) +k1,15749:6630773,18011905:0 +h1,15749:13585978,18011905:0,0,0 +k1,15749:32583030,18011905:18997052 +g1,15749:32583030,18011905 +) +(1,15753:6630773,18743619:25952256,404226,76021 +(1,15751:6630773,18743619:0,0,0 +g1,15751:6630773,18743619 +g1,15751:6630773,18743619 +g1,15751:6303093,18743619 +(1,15751:6303093,18743619:0,0,0 +) +g1,15751:6630773,18743619 +) +g1,15753:7579210,18743619 +g1,15753:8843793,18743619 +h1,15753:10424521,18743619:0,0,0 +k1,15753:32583029,18743619:22158508 +g1,15753:32583029,18743619 +) +(1,15755:6630773,20065157:25952256,410518,76021 +(1,15754:6630773,20065157:0,0,0 +g1,15754:6630773,20065157 +g1,15754:6630773,20065157 +g1,15754:6303093,20065157 +(1,15754:6303093,20065157:0,0,0 +) +g1,15754:6630773,20065157 +) +k1,15755:6630773,20065157:0 +h1,15755:13585978,20065157:0,0,0 +k1,15755:32583030,20065157:18997052 +g1,15755:32583030,20065157 +) +(1,15759:6630773,20796871:25952256,404226,76021 +(1,15757:6630773,20796871:0,0,0 +g1,15757:6630773,20796871 +g1,15757:6630773,20796871 +g1,15757:6303093,20796871 +(1,15757:6303093,20796871:0,0,0 +) +g1,15757:6630773,20796871 +) +g1,15759:7579210,20796871 +g1,15759:8843793,20796871 +h1,15759:10108376,20796871:0,0,0 +k1,15759:32583028,20796871:22474652 +g1,15759:32583028,20796871 +) +(1,15761:6630773,22118409:25952256,410518,76021 +(1,15760:6630773,22118409:0,0,0 +g1,15760:6630773,22118409 +g1,15760:6630773,22118409 +g1,15760:6303093,22118409 +(1,15760:6303093,22118409:0,0,0 +) +g1,15760:6630773,22118409 +) +k1,15761:6630773,22118409:0 +h1,15761:13585978,22118409:0,0,0 +k1,15761:32583030,22118409:18997052 +g1,15761:32583030,22118409 +) +(1,15765:6630773,22850123:25952256,404226,76021 +(1,15763:6630773,22850123:0,0,0 +g1,15763:6630773,22850123 +g1,15763:6630773,22850123 +g1,15763:6303093,22850123 +(1,15763:6303093,22850123:0,0,0 +) +g1,15763:6630773,22850123 +) +g1,15765:7579210,22850123 +g1,15765:8843793,22850123 +h1,15765:10108376,22850123:0,0,0 +k1,15765:32583028,22850123:22474652 +g1,15765:32583028,22850123 +) +] +) +g1,15766:32583029,22926144 +g1,15766:6630773,22926144 +g1,15766:6630773,22926144 +g1,15766:32583029,22926144 +g1,15766:32583029,22926144 +) +h1,15766:6630773,23122752:0,0,0 +v1,15770:6630773,25012816:0,393216,0 +(1,15771:6630773,28140336:25952256,3520736,616038 +g1,15771:6630773,28140336 +(1,15771:6630773,28140336:25952256,3520736,616038 +(1,15771:6630773,28756374:25952256,4136774,0 +[1,15771:6630773,28756374:25952256,4136774,0 +(1,15771:6630773,28730160:25952256,4084346,0 +r1,15771:6656987,28730160:26214,4084346,0 +[1,15771:6656987,28730160:25899828,4084346,0 +(1,15771:6656987,28140336:25899828,2904698,0 +[1,15771:7246811,28140336:24720180,2904698,0 +(1,15771:7246811,26323012:24720180,1087374,126483 +k1,15770:8632290,26323012:175776 +k1,15770:11597935,26323012:175777 +(1,15770:11597935,26323012:0,459977,115847 +r1,15771:15473319,26323012:3875384,575824,115847 +k1,15770:11597935,26323012:-3875384 +) +(1,15770:11597935,26323012:3875384,459977,115847 +k1,15770:11597935,26323012:3277 +h1,15770:15470042,26323012:0,411205,112570 +) +k1,15770:15649095,26323012:175776 +k1,15770:16929153,26323012:175776 +k1,15770:17852696,26323012:175777 +k1,15770:19541698,26323012:175776 +k1,15770:20368902,26323012:175776 +k1,15770:23568509,26323012:175776 +k1,15770:24100146,26323012:175777 +k1,15770:25258962,26323012:175776 +k1,15770:26883084,26323012:175776 +k1,15770:28626482,26323012:175777 +k1,15770:29590656,26323012:175776 +k1,15771:31966991,26323012:0 +) +(1,15771:7246811,27164500:24720180,505283,134348 +k1,15770:9190199,27164500:179159 +k1,15770:9985396,27164500:179159 +k1,15770:10520415,27164500:179159 +k1,15770:11937549,27164500:179159 +k1,15770:13401214,27164500:179159 +k1,15770:14111870,27164500:179159 +k1,15770:16960310,27164500:179159 +k1,15770:19172395,27164500:179158 +k1,15770:20719946,27164500:179159 +k1,15770:22445755,27164500:179159 +k1,15770:23237676,27164500:179159 +k1,15770:24435920,27164500:179159 +k1,15770:26003132,27164500:179159 +k1,15770:27680444,27164500:179159 +k1,15770:29051048,27164500:179159 +k1,15770:30573040,27164500:179159 +k1,15770:31966991,27164500:0 +) +(1,15771:7246811,28005988:24720180,513147,134348 +k1,15770:8448893,28005988:182997 +k1,15770:11327385,28005988:182996 +k1,15770:12161810,28005988:182997 +k1,15770:15281474,28005988:182996 +k1,15770:17156611,28005988:182997 +k1,15770:19118255,28005988:182997 +k1,15770:20585757,28005988:182996 +k1,15770:22269528,28005988:182997 +k1,15770:23068563,28005988:182997 +k1,15770:24270644,28005988:182996 +k1,15770:27529901,28005988:182997 +k1,15770:28883370,28005988:182996 +k1,15770:30057927,28005988:182997 +k1,15771:31966991,28005988:0 +k1,15771:31966991,28005988:0 +) +] +) +] +r1,15771:32583029,28730160:26214,4084346,0 +) +] +) +) +g1,15771:32583029,28140336 +) +h1,15771:6630773,28756374:0,0,0 +(1,15774:6630773,32088230:25952256,32768,229376 +(1,15774:6630773,32088230:0,32768,229376 +(1,15774:6630773,32088230:5505024,32768,229376 +r1,15774:12135797,32088230:5505024,262144,229376 +) +k1,15774:6630773,32088230:-5505024 +) +(1,15774:6630773,32088230:25952256,32768,0 +r1,15774:32583029,32088230:25952256,32768,0 +) +) +(1,15774:6630773,33692558:25952256,615776,161218 +(1,15774:6630773,33692558:1974731,582746,14155 +g1,15774:6630773,33692558 +g1,15774:8605504,33692558 +) +g1,15774:12197926,33692558 +g1,15774:13907629,33692558 +g1,15774:16972355,33692558 +g1,15774:18443770,33692558 +k1,15774:32583029,33692558:9359325 +g1,15774:32583029,33692558 +) +(1,15777:6630773,34927262:25952256,513147,134348 +k1,15776:9807054,34927262:160970 +k1,15776:10584063,34927262:160971 +k1,15776:11764118,34927262:160970 +k1,15776:13147991,34927262:160971 +k1,15776:13968253,34927262:160970 +k1,15776:15332465,34927262:160971 +k1,15776:17911058,34927262:160970 +k1,15776:19164514,34927262:160971 +k1,15776:20011646,34927262:160970 +k1,15776:20943320,34927262:160971 +k1,15776:24176618,34927262:160970 +k1,15776:25285240,34927262:160971 +k1,15776:26465295,34927262:160970 +(1,15776:26465295,34927262:0,459977,115847 +r1,15776:27878696,34927262:1413401,575824,115847 +k1,15776:26465295,34927262:-1413401 +) +(1,15776:26465295,34927262:1413401,459977,115847 +k1,15776:26465295,34927262:3277 +h1,15776:27875419,34927262:0,411205,112570 +) +k1,15776:28039667,34927262:160971 +k1,15776:30329246,34927262:160970 +k1,15777:32583029,34927262:0 +) +(1,15777:6630773,35768750:25952256,505283,134348 +k1,15776:8096704,35768750:225990 +k1,15776:10182606,35768750:225990 +k1,15776:12187243,35768750:225990 +k1,15776:13096118,35768750:225990 +k1,15776:15107309,35768750:225990 +k1,15776:16524744,35768750:225990 +k1,15776:19676260,35768750:225989 +k1,15776:20921335,35768750:225990 +k1,15776:23549875,35768750:225990 +k1,15776:24458750,35768750:225990 +k1,15776:26942455,35768750:225990 +k1,15776:30573040,35768750:225990 +k1,15776:32583029,35768750:0 +) +(1,15777:6630773,36610238:25952256,513147,126483 +k1,15776:7836554,36610238:186696 +k1,15776:9122943,36610238:186695 +k1,15776:9961067,36610238:186696 +k1,15776:10503622,36610238:186695 +k1,15776:13559484,36610238:186696 +k1,15776:17218933,36610238:186696 +k1,15776:17863725,36610238:186695 +k1,15776:18581918,36610238:186696 +k1,15776:21877642,36610238:186696 +k1,15776:22715765,36610238:186695 +k1,15776:24314762,36610238:186696 +k1,15776:25184342,36610238:186695 +k1,15776:26985845,36610238:186696 +k1,15776:27528401,36610238:186696 +k1,15776:28941275,36610238:186695 +k1,15776:30111011,36610238:186696 +k1,15777:32583029,36610238:0 +) +(1,15777:6630773,37451726:25952256,513147,126483 +k1,15776:8577811,37451726:188052 +k1,15776:9922573,37451726:188052 +k1,15776:11314521,37451726:188052 +k1,15776:12185458,37451726:188052 +k1,15776:14446414,37451726:188052 +k1,15776:15247228,37451726:188052 +k1,15776:15791140,37451726:188052 +k1,15776:17578270,37451726:188052 +k1,15776:18394156,37451726:188051 +k1,15776:20075774,37451726:188052 +k1,15776:21961208,37451726:188052 +k1,15776:22607357,37451726:188052 +k1,15776:23326906,37451726:188052 +k1,15776:25116658,37451726:188052 +k1,15776:27857337,37451726:188052 +k1,15776:28696817,37451726:188052 +k1,15776:30392852,37451726:188052 +k1,15776:31599989,37451726:188052 +k1,15776:32583029,37451726:0 +) +(1,15777:6630773,38293214:25952256,505283,134348 +k1,15776:8462101,38293214:253876 +k1,15776:11351180,38293214:253876 +k1,15776:13347658,38293214:253876 +k1,15776:14792980,38293214:253877 +k1,15776:16657731,38293214:253876 +k1,15776:17930692,38293214:253876 +k1,15776:21690744,38293214:253876 +k1,15776:23320221,38293214:253876 +k1,15776:25272135,38293214:253876 +k1,15776:25984109,38293214:253877 +k1,15776:26769482,38293214:253876 +k1,15776:27832728,38293214:253876 +k1,15776:30111011,38293214:253876 +k1,15776:32583029,38293214:0 +) +(1,15777:6630773,39134702:25952256,513147,115847 +k1,15776:7896445,39134702:215785 +(1,15776:7896445,39134702:0,452978,115847 +r1,15776:13882100,39134702:5985655,568825,115847 +k1,15776:7896445,39134702:-5985655 +) +(1,15776:7896445,39134702:5985655,452978,115847 +k1,15776:7896445,39134702:3277 +h1,15776:13878823,39134702:0,411205,112570 +) +k1,15776:14097884,39134702:215784 +k1,15776:15261320,39134702:215785 +k1,15776:17594573,39134702:215785 +k1,15776:19632914,39134702:215785 +k1,15776:20867783,39134702:215784 +k1,15776:23425825,39134702:215785 +k1,15776:26667407,39134702:215785 +k1,15776:29667160,39134702:215784 +k1,15776:31074390,39134702:215785 +k1,15776:32583029,39134702:0 +) +(1,15777:6630773,39976190:25952256,513147,126483 +k1,15776:9583638,39976190:193144 +k1,15776:10392820,39976190:193144 +k1,15776:13348307,39976190:193144 +k1,15776:14909842,39976190:193143 +k1,15776:15730821,39976190:193144 +k1,15776:16943050,39976190:193144 +k1,15776:18520314,39976190:193144 +k1,15776:21374875,39976190:193144 +k1,15776:22436371,39976190:193144 +k1,15776:24206967,39976190:193144 +k1,15776:24755970,39976190:193143 +k1,15776:25932154,39976190:193144 +k1,15776:29805145,39976190:193144 +k1,15776:31410590,39976190:193144 +k1,15776:32583029,39976190:0 +) +(1,15777:6630773,40817678:25952256,513147,126483 +k1,15776:8471943,40817678:168691 +k1,15776:9946767,40817678:168691 +k1,15776:11134544,40817678:168692 +k1,15776:12375404,40817678:168691 +k1,15776:13700805,40817678:168691 +k1,15776:15263447,40817678:168691 +k1,15776:17815027,40817678:168691 +k1,15776:20662175,40817678:168692 +k1,15776:22264794,40817678:168691 +k1,15776:23049523,40817678:168691 +k1,15776:23574074,40817678:168691 +k1,15776:26445471,40817678:168692 +k1,15776:27713856,40817678:168691 +k1,15776:28533975,40817678:168691 +(1,15776:28533975,40817678:0,452978,115847 +r1,15776:32409359,40817678:3875384,568825,115847 +k1,15776:28533975,40817678:-3875384 +) +(1,15776:28533975,40817678:3875384,452978,115847 +k1,15776:28533975,40817678:3277 +h1,15776:32406082,40817678:0,411205,112570 +) +k1,15776:32583029,40817678:0 +) +(1,15777:6630773,41659166:25952256,513147,126483 +g1,15776:7849087,41659166 +g1,15776:9220755,41659166 +g1,15776:10918792,41659166 +g1,15776:11800906,41659166 +g1,15776:14403340,41659166 +g1,15776:15996520,41659166 +g1,15776:17758783,41659166 +g1,15776:19149457,41659166 +g1,15776:21321320,41659166 +g1,15776:23131424,41659166 +g1,15776:24349738,41659166 +k1,15777:32583029,41659166:4553444 +g1,15777:32583029,41659166 +) +v1,15779:6630773,42849632:0,393216,0 +(1,15787:6630773,44543746:25952256,2087330,196608 +g1,15787:6630773,44543746 +g1,15787:6630773,44543746 +g1,15787:6434165,44543746 +(1,15787:6434165,44543746:0,2087330,196608 +r1,15787:32779637,44543746:26345472,2283938,196608 +k1,15787:6434165,44543746:-26345472 +) +(1,15787:6434165,44543746:26345472,2087330,196608 +[1,15787:6630773,44543746:25952256,1890722,0 +(1,15781:6630773,43063542:25952256,410518,107478 +(1,15780:6630773,43063542:0,0,0 +g1,15780:6630773,43063542 +g1,15780:6630773,43063542 +g1,15780:6303093,43063542 +(1,15780:6303093,43063542:0,0,0 +) +g1,15780:6630773,43063542 +) +g1,15781:7579210,43063542 +g1,15781:8527648,43063542 +g1,15781:21489621,43063542 +g1,15781:23070350,43063542 +g1,15781:23702642,43063542 +g1,15781:25283371,43063542 +g1,15781:25915663,43063542 +g1,15781:27496392,43063542 +g1,15781:28760975,43063542 +k1,15781:28760975,43063542:11010 +h1,15781:30985005,43063542:0,0,0 +k1,15781:32583029,43063542:1598024 +g1,15781:32583029,43063542 +) +(1,15782:6630773,43729720:25952256,410518,82312 +h1,15782:6630773,43729720:0,0,0 +g1,15782:11056813,43729720 +g1,15782:11689105,43729720 +g1,15782:12321397,43729720 +h1,15782:13269834,43729720:0,0,0 +k1,15782:32583030,43729720:19313196 +g1,15782:32583030,43729720 +) +(1,15786:6630773,44461434:25952256,404226,82312 +(1,15784:6630773,44461434:0,0,0 +g1,15784:6630773,44461434 +g1,15784:6630773,44461434 +g1,15784:6303093,44461434 +(1,15784:6303093,44461434:0,0,0 +) +g1,15784:6630773,44461434 +) +g1,15786:7579210,44461434 +g1,15786:8843793,44461434 +k1,15786:8843793,44461434:0 +h1,15786:15482851,44461434:0,0,0 +k1,15786:32583029,44461434:17100178 +g1,15786:32583029,44461434 +) +] +) +g1,15787:32583029,44543746 +g1,15787:6630773,44543746 +g1,15787:6630773,44543746 +g1,15787:32583029,44543746 +g1,15787:32583029,44543746 +) +h1,15787:6630773,44740354:0,0,0 +] +(1,15791:32583029,45706769:0,0,0 +g1,15791:32583029,45706769 +) +) +] +(1,15791:6630773,47279633:25952256,0,0 +h1,15791:6630773,47279633:25952256,0,0 +) +] +h1,15791:4262630,4025873:0,0,0 +] +!22862 }307 -Input:2385:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2386:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2387:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2388:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2389:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2390:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2391:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2392:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2393:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!786 +Input:2379:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2380:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2381:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2382:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2383:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2384:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2385:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2386:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2387:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2388:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2389:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2390:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1116 {308 -[1,15828:4262630,47279633:28320399,43253760,0 -(1,15828:4262630,4025873:0,0,0 -[1,15828:-473657,4025873:25952256,0,0 -(1,15828:-473657,-710414:25952256,0,0 -h1,15828:-473657,-710414:0,0,0 -(1,15828:-473657,-710414:0,0,0 -(1,15828:-473657,-710414:0,0,0 -g1,15828:-473657,-710414 -(1,15828:-473657,-710414:65781,0,65781 -g1,15828:-407876,-710414 -[1,15828:-407876,-644633:0,0,0 +[1,15859:4262630,47279633:28320399,43253760,0 +(1,15859:4262630,4025873:0,0,0 +[1,15859:-473657,4025873:25952256,0,0 +(1,15859:-473657,-710414:25952256,0,0 +h1,15859:-473657,-710414:0,0,0 +(1,15859:-473657,-710414:0,0,0 +(1,15859:-473657,-710414:0,0,0 +g1,15859:-473657,-710414 +(1,15859:-473657,-710414:65781,0,65781 +g1,15859:-407876,-710414 +[1,15859:-407876,-644633:0,0,0 ] ) -k1,15828:-473657,-710414:-65781 +k1,15859:-473657,-710414:-65781 ) ) -k1,15828:25478599,-710414:25952256 -g1,15828:25478599,-710414 +k1,15859:25478599,-710414:25952256 +g1,15859:25478599,-710414 ) ] ) -[1,15828:6630773,47279633:25952256,43253760,0 -[1,15828:6630773,4812305:25952256,786432,0 -(1,15828:6630773,4812305:25952256,513147,126483 -(1,15828:6630773,4812305:25952256,513147,126483 -g1,15828:3078558,4812305 -[1,15828:3078558,4812305:0,0,0 -(1,15828:3078558,2439708:0,1703936,0 -k1,15828:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15828:2537886,2439708:1179648,16384,0 +[1,15859:6630773,47279633:25952256,43253760,0 +[1,15859:6630773,4812305:25952256,786432,0 +(1,15859:6630773,4812305:25952256,513147,126483 +(1,15859:6630773,4812305:25952256,513147,126483 +g1,15859:3078558,4812305 +[1,15859:3078558,4812305:0,0,0 +(1,15859:3078558,2439708:0,1703936,0 +k1,15859:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15859:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15828:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15859:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15828:3078558,4812305:0,0,0 -(1,15828:3078558,2439708:0,1703936,0 -g1,15828:29030814,2439708 -g1,15828:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15828:36151628,1915420:16384,1179648,0 +[1,15859:3078558,4812305:0,0,0 +(1,15859:3078558,2439708:0,1703936,0 +g1,15859:29030814,2439708 +g1,15859:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15859:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15828:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15859:37855564,2439708:1179648,16384,0 ) ) -k1,15828:3078556,2439708:-34777008 +k1,15859:3078556,2439708:-34777008 ) ] -[1,15828:3078558,4812305:0,0,0 -(1,15828:3078558,49800853:0,16384,2228224 -k1,15828:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15828:2537886,49800853:1179648,16384,0 +[1,15859:3078558,4812305:0,0,0 +(1,15859:3078558,49800853:0,16384,2228224 +k1,15859:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15859:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15828:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15859:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,15828:3078558,4812305:0,0,0 -(1,15828:3078558,49800853:0,16384,2228224 -g1,15828:29030814,49800853 -g1,15828:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15828:36151628,51504789:16384,1179648,0 +[1,15859:3078558,4812305:0,0,0 +(1,15859:3078558,49800853:0,16384,2228224 +g1,15859:29030814,49800853 +g1,15859:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15859:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15859:37855564,49800853:1179648,16384,0 +) ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15859:3078556,49800853:-34777008 ) ] +g1,15859:6630773,4812305 +g1,15859:6630773,4812305 +g1,15859:9744388,4812305 +g1,15859:11175694,4812305 +k1,15859:31387652,4812305:20211958 ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15828:37855564,49800853:1179648,16384,0 ) +] +[1,15859:6630773,45706769:25952256,40108032,0 +(1,15859:6630773,45706769:25952256,40108032,0 +(1,15859:6630773,45706769:0,0,0 +g1,15859:6630773,45706769 ) -k1,15828:3078556,49800853:-34777008 -) -] -g1,15828:6630773,4812305 -g1,15828:6630773,4812305 -g1,15828:9744388,4812305 -g1,15828:11175694,4812305 -k1,15828:31387652,4812305:20211958 -) -) -] -[1,15828:6630773,45706769:25952256,40108032,0 -(1,15828:6630773,45706769:25952256,40108032,0 -(1,15828:6630773,45706769:0,0,0 -g1,15828:6630773,45706769 +[1,15859:6630773,45706769:25952256,40108032,0 +v1,15791:6630773,6254097:0,393216,0 +(1,15801:6630773,8597280:25952256,2736399,196608 +g1,15801:6630773,8597280 +g1,15801:6630773,8597280 +g1,15801:6434165,8597280 +(1,15801:6434165,8597280:0,2736399,196608 +r1,15801:32779637,8597280:26345472,2933007,196608 +k1,15801:6434165,8597280:-26345472 ) -[1,15828:6630773,45706769:25952256,40108032,0 -(1,15774:6630773,6254097:25952256,513147,115847 -h1,15773:6630773,6254097:983040,0,0 -k1,15773:9649940,6254097:252892 -k1,15773:10317621,6254097:252838 -k1,15773:11102010,6254097:252892 -k1,15773:12868128,6254097:252892 -k1,15773:13737058,6254097:252892 -k1,15773:15751558,6254097:252892 -k1,15773:17960700,6254097:252892 -k1,15773:19232677,6254097:252892 -k1,15773:21399219,6254097:252891 -(1,15773:21399219,6254097:0,452978,115847 -r1,15773:23164332,6254097:1765113,568825,115847 -k1,15773:21399219,6254097:-1765113 -) -(1,15773:21399219,6254097:1765113,452978,115847 -k1,15773:21399219,6254097:3277 -h1,15773:23161055,6254097:0,411205,112570 -) -k1,15773:23590894,6254097:252892 -(1,15773:23590894,6254097:0,452978,115847 -r1,15773:25707719,6254097:2116825,568825,115847 -k1,15773:23590894,6254097:-2116825 -) -(1,15773:23590894,6254097:2116825,452978,115847 -k1,15773:23590894,6254097:3277 -h1,15773:25704442,6254097:0,411205,112570 -) -k1,15773:25960611,6254097:252892 -k1,15773:27404948,6254097:252892 -(1,15773:27404948,6254097:0,452978,115847 -r1,15773:30225197,6254097:2820249,568825,115847 -k1,15773:27404948,6254097:-2820249 -) -(1,15773:27404948,6254097:2820249,452978,115847 -k1,15773:27404948,6254097:3277 -h1,15773:30221920,6254097:0,411205,112570 -) -k1,15773:30478089,6254097:252892 -k1,15773:31835263,6254097:252892 -k1,15773:32583029,6254097:0 -) -(1,15774:6630773,7095585:25952256,513147,126483 -k1,15773:9377639,7095585:227662 -k1,15773:10796746,7095585:227662 -k1,15773:12413771,7095585:227662 -k1,15773:14053734,7095585:227662 -k1,15773:16022688,7095585:227662 -k1,15773:16933235,7095585:227662 -k1,15773:19447447,7095585:227661 -k1,15773:20500207,7095585:227662 -k1,15773:22602199,7095585:227662 -k1,15773:25701648,7095585:227662 -k1,15773:28368560,7095585:227662 -k1,15773:29787667,7095585:227662 -k1,15773:31858201,7095585:227662 -k1,15773:32583029,7095585:0 -) -(1,15774:6630773,7937073:25952256,513147,134348 -k1,15773:9316876,7937073:193769 -k1,15773:10162073,7937073:193769 -k1,15773:10809345,7937073:193763 -k1,15773:15504782,7937073:193769 -k1,15773:17380205,7937073:193769 -k1,15773:18593059,7937073:193769 -k1,15773:19879313,7937073:193769 -k1,15773:20740237,7937073:193768 -k1,15773:21348844,7937073:193764 -k1,15773:23703990,7937073:193769 -k1,15773:24583921,7937073:193769 -k1,15773:26359073,7937073:193768 -k1,15773:27168880,7937073:193769 -k1,15773:28752012,7937073:193769 -k1,15773:30666101,7937073:193769 -k1,15773:32583029,7937073:0 -) -(1,15774:6630773,8778561:25952256,505283,126483 -g1,15773:7516164,8778561 -g1,15773:9218134,8778561 -g1,15773:11578740,8778561 -g1,15773:13664095,8778561 -g1,15773:15315602,8778561 -g1,15773:16706276,8778561 -g1,15773:18607475,8778561 -k1,15774:32583029,8778561:12607162 -g1,15774:32583029,8778561 -) -(1,15775:6630773,11586129:25952256,32768,229376 -(1,15775:6630773,11586129:0,32768,229376 -(1,15775:6630773,11586129:5505024,32768,229376 -r1,15775:12135797,11586129:5505024,262144,229376 -) -k1,15775:6630773,11586129:-5505024 -) -(1,15775:6630773,11586129:25952256,32768,0 -r1,15775:32583029,11586129:25952256,32768,0 -) -) -(1,15775:6630773,13190457:25952256,615776,14155 -(1,15775:6630773,13190457:1974731,582746,14155 -g1,15775:6630773,13190457 -g1,15775:8605504,13190457 -) -g1,15775:12555752,13190457 -k1,15775:32583030,13190457:18389140 -g1,15775:32583030,13190457 -) -(1,15778:6630773,14425161:25952256,513147,134348 -k1,15777:7509711,14425161:251103 -k1,15777:10267567,14425161:251104 -k1,15777:11744849,14425161:251103 -k1,15777:13309295,14425161:251104 -k1,15777:14551958,14425161:251103 -k1,15777:15822147,14425161:251104 -k1,15777:17674950,14425161:251103 -k1,15777:20595335,14425161:251104 -k1,15777:23830948,14425161:251103 -k1,15777:24733480,14425161:251104 -k1,15777:26373946,14425161:251103 -k1,15777:28972550,14425161:251104 -k1,15777:30295822,14425161:251103 -k1,15777:32583029,14425161:0 -) -(1,15778:6630773,15266649:25952256,513147,126483 -k1,15777:8125649,15266649:209060 -k1,15777:9353793,15266649:209059 -k1,15777:11058385,15266649:209060 -k1,15777:13820072,15266649:209060 -k1,15777:15423083,15266649:209060 -k1,15777:17956704,15266649:209059 -k1,15777:18817192,15266649:209060 -k1,15777:20045337,15266649:209060 -k1,15777:21523174,15266649:209060 -k1,15777:22391525,15266649:209059 -k1,15777:23619670,15266649:209060 -k1,15777:24985440,15266649:209060 -k1,15777:26598281,15266649:209060 -k1,15777:28120682,15266649:209059 -k1,15777:29321302,15266649:209060 -k1,15777:32583029,15266649:0 -) -(1,15778:6630773,16108137:25952256,513147,126483 -k1,15777:7482928,16108137:192863 -k1,15777:10354903,16108137:192863 -k1,15777:14026417,16108137:192863 -k1,15777:15600124,16108137:192863 -k1,15777:17839021,16108137:192863 -k1,15777:19670939,16108137:192863 -k1,15777:21258407,16108137:192862 -k1,15777:22102698,16108137:192863 -k1,15777:23521740,16108137:192863 -k1,15777:25108554,16108137:192863 -k1,15777:26527596,16108137:192863 -k1,15777:28959824,16108137:192863 -k1,15777:30344132,16108137:192863 -k1,15777:31931601,16108137:192863 -k1,15777:32583029,16108137:0 -) -(1,15778:6630773,16949625:25952256,513147,134348 -k1,15777:8249631,16949625:206557 -k1,15777:10023810,16949625:206558 -k1,15777:13302695,16949625:206557 -k1,15777:15795804,16949625:206558 -k1,15777:16618399,16949625:206557 -k1,15777:18426657,16949625:206558 -k1,15777:22985460,16949625:206557 -k1,15777:26538286,16949625:206558 -k1,15777:27668901,16949625:206557 -k1,15777:28894544,16949625:206558 -k1,15777:30803071,16949625:206557 -k1,15777:32583029,16949625:0 -) -(1,15778:6630773,17791113:25952256,513147,134348 -k1,15777:8246941,17791113:285787 -k1,15777:9551813,17791113:285787 -k1,15777:11226963,17791113:285787 -k1,15777:14191863,17791113:285788 -k1,15777:15163812,17791113:285787 -k1,15777:18754580,17791113:285787 -k1,15777:19571864,17791113:285787 -k1,15777:22703224,17791113:285787 -k1,15777:24093293,17791113:285787 -k1,15777:25126847,17791113:285788 -k1,15777:27267303,17791113:285787 -k1,15777:28362460,17791113:285787 -k1,15777:29820686,17791113:285787 -k1,15777:32583029,17791113:0 -) -(1,15778:6630773,18632601:25952256,513147,134348 -k1,15777:10663799,18632601:197204 -k1,15777:14036222,18632601:197204 -k1,15777:14916311,18632601:197204 -k1,15777:16848908,18632601:197204 -k1,15777:17401972,18632601:197204 -k1,15777:19996483,18632601:197204 -k1,15777:23168366,18632601:197204 -k1,15777:24051732,18632601:197204 -k1,15777:24604796,18632601:197204 -k1,15777:28013919,18632601:197204 -k1,15777:29407810,18632601:197204 -k1,15777:32583029,18632601:0 -) -(1,15778:6630773,19474089:25952256,505283,126483 -k1,15777:9795406,19474089:180123 -k1,15777:10507026,19474089:180123 -k1,15777:12337346,19474089:180123 -k1,15777:14872833,19474089:180123 -k1,15777:16125125,19474089:180123 -k1,15777:18467936,19474089:180123 -k1,15777:22198800,19474089:180123 -k1,15777:23030351,19474089:180123 -k1,15777:25761135,19474089:180123 -k1,15777:26627420,19474089:180123 -k1,15777:27826628,19474089:180123 -k1,15777:30017396,19474089:180123 -k1,15777:31315563,19474089:180123 -k1,15777:32583029,19474089:0 -) -(1,15778:6630773,20315577:25952256,513147,134348 -k1,15777:8284355,20315577:201960 -k1,15777:10361955,20315577:201960 -k1,15777:13123097,20315577:201961 -k1,15777:13984349,20315577:201960 -k1,15777:15575672,20315577:201960 -k1,15777:17815802,20315577:201960 -k1,15777:19753155,20315577:201960 -k1,15777:20310975,20315577:201960 -k1,15777:23688155,20315577:201961 -k1,15777:26874625,20315577:201960 -k1,15777:29698680,20315577:201960 -k1,15777:31931601,20315577:201960 -k1,15777:32583029,20315577:0 -) -(1,15778:6630773,21157065:25952256,513147,11795 -k1,15777:7231593,21157065:244960 -k1,15777:9656937,21157065:244961 -k1,15777:12984055,21157065:244960 -k1,15777:14420460,21157065:244960 -k1,15777:15872593,21157065:244960 -k1,15777:18894970,21157065:244961 -k1,15777:19755968,21157065:244960 -k1,15777:23173480,21157065:244914 -k1,15777:24609886,21157065:244961 -k1,15777:27092855,21157065:244914 -k1,15777:27950577,21157065:244960 -k1,15777:29214623,21157065:244961 -k1,15777:30884991,21157065:244960 -k1,15777:32583029,21157065:0 -) -(1,15778:6630773,21998553:25952256,513147,126483 -k1,15777:8785697,21998553:156076 -k1,15777:10670614,21998553:156077 -k1,15777:12330741,21998553:156076 -k1,15777:14000043,21998553:156076 -k1,15777:14807548,21998553:156077 -k1,15777:16581053,21998553:156076 -k1,15777:18300163,21998553:156076 -k1,15777:19084074,21998553:156076 -k1,15777:20259236,21998553:156077 -k1,15777:21782393,21998553:156076 -k1,15777:22597761,21998553:156076 -k1,15777:26296059,21998553:156077 -k1,15777:29214478,21998553:156076 -k1,15777:32583029,21998553:0 -) -(1,15778:6630773,22840041:25952256,505283,134348 -k1,15777:7801010,22840041:178677 -k1,15777:8595724,22840041:178676 -k1,15777:11551817,22840041:178677 -k1,15777:12996649,22840041:178676 -k1,15777:18957568,22840041:178677 -k1,15777:21146889,22840041:178676 -k1,15777:23008511,22840041:178657 -k1,15777:26418767,22840041:178676 -k1,15777:27689929,22840041:178677 -k1,15777:29724585,22840041:178676 -k1,15777:30259122,22840041:178677 -k1,15777:32583029,22840041:0 -) -(1,15778:6630773,23681529:25952256,513147,126483 -k1,15777:7497993,23681529:184335 -k1,15777:10923738,23681529:184334 -k1,15777:11759501,23681529:184335 -k1,15777:14646541,23681529:184335 -k1,15777:15849960,23681529:184334 -k1,15777:17768378,23681529:184335 -k1,15777:18635597,23681529:184334 -k1,15777:21706793,23681529:184335 -k1,15777:25171205,23681529:184335 -k1,15777:26038424,23681529:184334 -k1,15777:30572384,23681529:184335 -k1,15777:32583029,23681529:0 -) -(1,15778:6630773,24523017:25952256,505283,126483 -k1,15777:8485638,24523017:192872 -k1,15777:9771001,24523017:192878 -k1,15777:10982964,24523017:192878 -k1,15777:12189028,24523017:192877 -k1,15777:15356585,24523017:192878 -k1,15777:16235625,24523017:192878 -k1,15777:16784363,24523017:192878 -k1,15777:19360130,24523017:192878 -k1,15777:22764927,24523017:192878 -k1,15777:26430558,24523017:192878 -k1,15777:28364728,24523017:192878 -k1,15777:30345428,24523017:192878 -k1,15777:31069803,24523017:192878 -k1,15777:32583029,24523017:0 -) -(1,15778:6630773,25364505:25952256,505283,126483 -g1,15777:7516164,25364505 -g1,15777:8071253,25364505 -g1,15777:11482401,25364505 -g1,15777:13283330,25364505 -g1,15777:16826206,25364505 -g1,15777:18723473,25364505 -g1,15777:19688818,25364505 -g1,15777:21898692,25364505 -g1,15777:23089481,25364505 -g1,15777:23940138,25364505 -g1,15777:24887133,25364505 -g1,15777:28247163,25364505 -g1,15777:29097820,25364505 -(1,15777:29097820,25364505:0,452978,115847 -r1,15777:31566357,25364505:2468537,568825,115847 -k1,15777:29097820,25364505:-2468537 -) -(1,15777:29097820,25364505:2468537,452978,115847 -k1,15777:29097820,25364505:3277 -h1,15777:31563080,25364505:0,411205,112570 -) -k1,15778:32583029,25364505:843002 -g1,15778:32583029,25364505 -) -v1,15780:6630773,26730281:0,393216,0 -(1,15828:6630773,45079096:25952256,18742031,589824 -g1,15828:6630773,45079096 -(1,15828:6630773,45079096:25952256,18742031,589824 -(1,15828:6630773,45668920:25952256,19331855,0 -[1,15828:6630773,45668920:25952256,19331855,0 -(1,15828:6630773,45668920:25952256,19305641,0 -r1,15828:6656987,45668920:26214,19305641,0 -[1,15828:6656987,45668920:25899828,19305641,0 -(1,15828:6656987,45079096:25899828,18125993,0 -[1,15828:7246811,45079096:24720180,18125993,0 -(1,15781:7246811,28114988:24720180,1161885,196608 -(1,15780:7246811,28114988:0,1161885,196608 -r1,15828:8794447,28114988:1547636,1358493,196608 -k1,15780:7246811,28114988:-1547636 -) -(1,15780:7246811,28114988:1547636,1161885,196608 -) -k1,15780:9072247,28114988:277800 -k1,15780:10533074,28114988:285111 -k1,15780:11608549,28114988:285111 -k1,15780:13170301,28114988:285111 -k1,15780:14820527,28114988:285111 -k1,15780:16141107,28114988:285111 -k1,15780:17981387,28114988:285111 -k1,15780:20226578,28114988:277800 -k1,15780:22287613,28114988:277800 -k1,15780:24967963,28114988:277800 -k1,15780:26471942,28114988:277800 -k1,15780:28236754,28114988:277800 -k1,15780:29705999,28114988:277800 -k1,15781:31966991,28114988:0 -) -(1,15781:7246811,28956476:24720180,513147,134348 -k1,15780:9530681,28956476:262084 -k1,15780:11106108,28956476:262085 -k1,15780:13253663,28956476:262084 -k1,15780:14852681,28956476:262084 -k1,15780:17486513,28956476:262084 -k1,15780:21073239,28956476:262085 -k1,15780:22561502,28956476:262084 -k1,15780:25193368,28956476:262084 -k1,15780:27110237,28956476:262085 -k1,15780:27903818,28956476:262084 -k1,15780:31019340,28956476:262084 -k1,15780:31966991,28956476:0 -) -(1,15781:7246811,29797964:24720180,513147,134348 -k1,15780:9003759,29797964:248309 -k1,15780:14848842,29797964:248308 -k1,15780:17211342,29797964:248309 -k1,15780:18478735,29797964:248308 -k1,15780:20908738,29797964:248309 -k1,15780:24405010,29797964:248308 -k1,15780:25924717,29797964:248309 -k1,15780:28950441,29797964:248308 -k1,15780:31307699,29797964:248309 -k1,15780:31966991,29797964:0 -) -(1,15781:7246811,30639452:24720180,505283,126483 -k1,15780:10689656,30639452:262383 -k1,15780:11483535,30639452:262382 -k1,15780:13030424,30639452:262383 -k1,15780:15675695,30639452:262382 -k1,15780:18442864,30639452:262383 -k1,15780:19696806,30639452:262382 -k1,15780:20610617,30639452:262383 -k1,15780:21620765,30639452:262382 -k1,15780:23295449,30639452:262383 -k1,15780:24243993,30639452:262382 -k1,15780:24921155,30639452:262319 -k1,15780:27425525,30639452:262383 -k1,15780:28505797,30639452:262383 -k1,15780:30801761,30639452:262382 -k1,15781:31966991,30639452:0 -) -(1,15781:7246811,31480940:24720180,505283,134348 -k1,15780:9879094,31480940:281507 -k1,15780:11815385,31480940:281507 -k1,15780:13088451,31480940:281506 -k1,15780:15037194,31480940:281507 -k1,15780:17078343,31480940:281507 -k1,15780:18853416,31480940:281507 -k1,15780:19821085,31480940:281507 -k1,15780:22822336,31480940:281507 -k1,15780:25221966,31480940:281506 -k1,15780:26186358,31480940:281507 -k1,15780:28662010,31480940:281507 -k1,15780:31966991,31480940:0 -) -(1,15781:7246811,32322428:24720180,513147,126483 -k1,15780:7944395,32322428:231623 -k1,15780:9195103,32322428:231623 -k1,15780:11495042,32322428:231623 -k1,15780:12718224,32322428:231622 -k1,15780:13601275,32322428:231623 -k1,15780:14580664,32322428:231623 -k1,15780:16325513,32322428:231623 -k1,15780:17951087,32322428:231623 -k1,15780:19201795,32322428:231623 -k1,15780:21712105,32322428:231623 -k1,15780:24201442,32322428:231622 -k1,15780:25357123,32322428:231623 -k1,15780:27944110,32322428:231623 -k1,15780:29867873,32322428:231623 -k1,15781:31966991,32322428:0 -) -(1,15781:7246811,33163916:24720180,505283,126483 -k1,15780:8623420,33163916:236938 -k1,15780:9992820,33163916:236938 -k1,15780:12744374,33163916:236938 -k1,15780:13632739,33163916:236937 -k1,15780:16367254,33163916:236938 -k1,15780:17623277,33163916:236938 -k1,15780:20102202,33163916:236938 -k1,15780:21411309,33163916:236938 -k1,15780:23680518,33163916:236938 -k1,15780:25157396,33163916:236937 -k1,15780:26939673,33163916:236938 -k1,15780:28670177,33163916:236938 -k1,15780:30975431,33163916:236938 -k1,15780:31966991,33163916:0 -) -(1,15781:7246811,34005404:24720180,505283,126483 -k1,15780:8637032,34005404:191567 -k1,15780:12013650,34005404:191568 -k1,15780:12821255,34005404:191567 -k1,15780:13427658,34005404:191560 -k1,15780:17309557,34005404:191567 -k1,15780:18573294,34005404:191568 -k1,15780:19120721,34005404:191567 -k1,15780:21506433,34005404:191567 -k1,15780:23782046,34005404:191568 -k1,15780:24505110,34005404:191567 -k1,15780:26995025,34005404:191567 -k1,15780:27838021,34005404:191568 -k1,15780:30327936,34005404:191567 -k1,15780:31966991,34005404:0 -) -(1,15781:7246811,34846892:24720180,513147,134348 -k1,15780:9013297,34846892:198865 -k1,15780:12332987,34846892:198866 -k1,15780:14615897,34846892:198865 -k1,15780:16752006,34846892:198865 -k1,15780:19509398,34846892:198866 -k1,15780:21216902,34846892:198865 -k1,15780:25861074,34846892:198865 -k1,15780:26746102,34846892:198866 -k1,15780:30299100,34846892:198865 -k1,15781:31966991,34846892:0 -) -(1,15781:7246811,35688380:24720180,513147,134348 -k1,15780:8751517,35688380:197263 -k1,15780:10391228,35688380:197264 -k1,15780:13099831,35688380:197263 -k1,15780:13979980,35688380:197264 -k1,15780:16872739,35688380:197263 -k1,15780:20409718,35688380:197264 -k1,15780:21021822,35688380:197261 -k1,15780:23273639,35688380:197263 -k1,15780:24339255,35688380:197264 -k1,15780:25583783,35688380:197263 -k1,15780:27065553,35688380:197264 -k1,15780:28643004,35688380:197263 -k1,15780:30370534,35688380:197264 -k1,15780:31219225,35688380:197263 -k1,15780:31966991,35688380:0 -) -(1,15781:7246811,36529868:24720180,505283,126483 -k1,15781:31966991,36529868:22307800 -g1,15781:31966991,36529868 -) -(1,15787:7246811,37371356:24720180,513147,134348 -h1,15782:7246811,37371356:983040,0,0 -k1,15782:10174085,37371356:227191 -k1,15782:11060569,37371356:227192 -k1,15782:12306845,37371356:227191 -k1,15782:14526331,37371356:227192 -k1,15782:15621874,37371356:227191 -k1,15782:17379331,37371356:227191 -k1,15782:18257951,37371356:227192 -k1,15782:19232908,37371356:227191 -k1,15782:20269470,37371356:227192 -k1,15782:21515746,37371356:227191 -k1,15782:23625131,37371356:227191 -k1,15782:24799974,37371356:227192 -k1,15782:26192395,37371356:227191 -k1,15783:27025140,37371356:227192 -k1,15783:31006233,37371356:227191 -k1,15787:31966991,37371356:0 -) -(1,15787:7246811,38212844:24720180,513147,134348 -k1,15783:9373400,38212844:239152 -k1,15783:10631637,38212844:239152 -k1,15783:13845467,38212844:239151 -k1,15783:16985898,38212844:239152 -k1,15783:20064070,38212844:239152 -k1,15783:21064750,38212844:239152 -k1,15783:22322986,38212844:239151 -k1,15783:25257634,38212844:239152 -k1,15783:27010012,38212844:239152 -k1,15783:27900592,38212844:239152 -k1,15783:29552044,38212844:239151 -k1,15783:30810281,38212844:239152 -k1,15783:31966991,38212844:0 -) -(1,15787:7246811,39054332:24720180,513147,134348 -k1,15783:8685148,39054332:246892 -k1,15783:9951125,39054332:246892 -k1,15783:13099295,39054332:246891 -k1,15783:14859413,39054332:246892 -k1,15783:16053956,39054332:246892 -k1,15783:18334430,39054332:246892 -k1,15783:19600407,39054332:246892 -k1,15783:23772906,39054332:246892 -k1,15783:26549487,39054332:246891 -k1,15783:27455671,39054332:246892 -k1,15783:30464906,39054332:246892 -k1,15787:31966991,39054332:0 -) -(1,15787:7246811,39895820:24720180,505283,134348 -k1,15783:8528094,39895820:224843 -k1,15784:9358490,39895820:224843 -k1,15784:12062560,39895820:224843 -k1,15784:12970288,39895820:224843 -k1,15784:15492823,39895820:224843 -k1,15784:18790650,39895820:224844 -k1,15784:21133617,39895820:224843 -k1,15784:23764287,39895820:224843 -k1,15784:24605168,39895820:224843 -k1,15784:25849096,39895820:224843 -k1,15784:29048618,39895820:224843 -k1,15784:31284106,39895820:224843 -k1,15784:31966991,39895820:0 -) -(1,15787:7246811,40737308:24720180,513147,126483 -k1,15784:9879720,40737308:250020 -k1,15784:14738887,40737308:250020 -k1,15784:15980466,40737308:250019 -k1,15784:18393174,40737308:250020 -k1,15784:21301990,40737308:250020 -k1,15784:23250048,40737308:250020 -k1,15784:24889431,40737308:250020 -k1,15784:27346047,40737308:250019 -k1,15784:28587627,40737308:250020 -k1,15784:31361438,40737308:250020 -k1,15785:31966991,40737308:0 -) -(1,15787:7246811,41578796:24720180,513147,134348 -k1,15785:10096776,41578796:205587 -k1,15785:12867441,41578796:205586 -k1,15785:15455917,41578796:205587 -k1,15785:18905535,41578796:205586 -k1,15785:21140117,41578796:205587 -k1,15785:23849834,41578796:205586 -k1,15785:26824972,41578796:205587 -k1,15785:27386418,41578796:205586 -k1,15785:29465024,41578796:205587 -k1,15785:31350953,41578796:205586 -k1,15785:31966991,41578796:0 -) -(1,15787:7246811,42420284:24720180,513147,134348 -k1,15785:7834505,42420284:231834 -k1,15785:10622897,42420284:231833 -k1,15785:12097294,42420284:231834 -k1,15785:13348212,42420284:231833 -k1,15785:15572996,42420284:231834 -k1,15785:17234170,42420284:231834 -k1,15785:18125295,42420284:231833 -k1,15785:20840944,42420284:231834 -k1,15785:23538897,42420284:231833 -k1,15785:26533729,42420284:231834 -k1,15785:27784647,42420284:231833 -k1,15785:30399370,42420284:231834 -k1,15785:31966991,42420284:0 -) -(1,15787:7246811,43261772:24720180,513147,134348 -k1,15785:9194672,43261772:209846 -k1,15785:12916591,43261772:209845 -k1,15785:13812599,43261772:209846 -k1,15785:16816245,43261772:209846 -k1,15786:17631644,43261772:209846 -k1,15786:21685831,43261772:209845 -k1,15786:24379492,43261772:209846 -k1,15786:26881787,43261772:209846 -k1,15786:27707670,43261772:209845 -(1,15786:27707670,43261772:0,414482,115847 -r1,15828:28769359,43261772:1061689,530329,115847 -k1,15786:27707670,43261772:-1061689 -) -(1,15786:27707670,43261772:1061689,414482,115847 -k1,15786:27707670,43261772:3277 -h1,15786:28766082,43261772:0,411205,112570 -) -k1,15786:28979205,43261772:209846 -k1,15786:31966991,43261772:0 -) -(1,15787:7246811,44103260:24720180,505283,134348 -g1,15786:9738489,44103260 -g1,15786:12639767,44103260 -g1,15786:13648366,44103260 -g1,15786:14866680,44103260 -g1,15786:16907471,44103260 -g1,15786:20156090,44103260 -g1,15786:21546764,44103260 -g1,15786:25193842,44103260 -g1,15786:28064318,44103260 -k1,15787:31966991,44103260:1217008 -g1,15787:31966991,44103260 -) -(1,15789:7246811,44944748:24720180,513147,134348 -h1,15788:7246811,44944748:983040,0,0 -k1,15788:8898973,44944748:191365 -k1,15788:10260811,44944748:191365 -k1,15788:13664751,44944748:191365 -k1,15788:16862909,44944748:191366 -k1,15788:18567500,44944748:191365 -k1,15788:21114229,44944748:191365 -k1,15788:22799160,44944748:191365 -k1,15788:23676687,44944748:191365 -k1,15788:25945543,44944748:191365 -k1,15788:26796201,44944748:191366 -k1,15788:29726971,44944748:191365 -k1,15788:30577628,44944748:191365 -k1,15788:31966991,44944748:0 -) -] -) -] -r1,15828:32583029,45668920:26214,19305641,0 -) -] -) -) -g1,15828:32583029,45079096 -) -] -(1,15828:32583029,45706769:0,0,0 -g1,15828:32583029,45706769 -) -) -] -(1,15828:6630773,47279633:25952256,0,0 -h1,15828:6630773,47279633:25952256,0,0 -) -] -h1,15828:4262630,4025873:0,0,0 -] -!24776 +(1,15801:6434165,8597280:26345472,2736399,196608 +[1,15801:6630773,8597280:25952256,2539791,0 +(1,15793:6630773,6468007:25952256,410518,82312 +(1,15792:6630773,6468007:0,0,0 +g1,15792:6630773,6468007 +g1,15792:6630773,6468007 +g1,15792:6303093,6468007 +(1,15792:6303093,6468007:0,0,0 +) +g1,15792:6630773,6468007 +) +k1,15793:6630773,6468007:0 +g1,15793:11056813,6468007 +g1,15793:11689105,6468007 +g1,15793:12321397,6468007 +h1,15793:13269834,6468007:0,0,0 +k1,15793:32583030,6468007:19313196 +g1,15793:32583030,6468007 +) +(1,15797:6630773,7199721:25952256,404226,82312 +(1,15795:6630773,7199721:0,0,0 +g1,15795:6630773,7199721 +g1,15795:6630773,7199721 +g1,15795:6303093,7199721 +(1,15795:6303093,7199721:0,0,0 +) +g1,15795:6630773,7199721 +) +g1,15797:7579210,7199721 +g1,15797:8843793,7199721 +g1,15797:14850561,7199721 +g1,15797:19908891,7199721 +h1,15797:20541182,7199721:0,0,0 +k1,15797:32583029,7199721:12041847 +g1,15797:32583029,7199721 +) +(1,15799:6630773,8521259:25952256,410518,76021 +(1,15798:6630773,8521259:0,0,0 +g1,15798:6630773,8521259 +g1,15798:6630773,8521259 +g1,15798:6303093,8521259 +(1,15798:6303093,8521259:0,0,0 +) +g1,15798:6630773,8521259 +) +k1,15799:6630773,8521259:0 +h1,15799:9476084,8521259:0,0,0 +k1,15799:32583028,8521259:23106944 +g1,15799:32583028,8521259 +) +] +) +g1,15801:32583029,8597280 +g1,15801:6630773,8597280 +g1,15801:6630773,8597280 +g1,15801:32583029,8597280 +g1,15801:32583029,8597280 +) +h1,15801:6630773,8793888:0,0,0 +(1,15805:6630773,9949948:25952256,513147,115847 +h1,15804:6630773,9949948:983040,0,0 +k1,15804:9649940,9949948:252892 +k1,15804:10317621,9949948:252838 +k1,15804:11102010,9949948:252892 +k1,15804:12868128,9949948:252892 +k1,15804:13737058,9949948:252892 +k1,15804:15751558,9949948:252892 +k1,15804:17960700,9949948:252892 +k1,15804:19232677,9949948:252892 +k1,15804:21399219,9949948:252891 +(1,15804:21399219,9949948:0,452978,115847 +r1,15804:23164332,9949948:1765113,568825,115847 +k1,15804:21399219,9949948:-1765113 +) +(1,15804:21399219,9949948:1765113,452978,115847 +k1,15804:21399219,9949948:3277 +h1,15804:23161055,9949948:0,411205,112570 +) +k1,15804:23590894,9949948:252892 +(1,15804:23590894,9949948:0,452978,115847 +r1,15804:25707719,9949948:2116825,568825,115847 +k1,15804:23590894,9949948:-2116825 +) +(1,15804:23590894,9949948:2116825,452978,115847 +k1,15804:23590894,9949948:3277 +h1,15804:25704442,9949948:0,411205,112570 +) +k1,15804:25960611,9949948:252892 +k1,15804:27404948,9949948:252892 +(1,15804:27404948,9949948:0,452978,115847 +r1,15804:30225197,9949948:2820249,568825,115847 +k1,15804:27404948,9949948:-2820249 +) +(1,15804:27404948,9949948:2820249,452978,115847 +k1,15804:27404948,9949948:3277 +h1,15804:30221920,9949948:0,411205,112570 +) +k1,15804:30478089,9949948:252892 +k1,15804:31835263,9949948:252892 +k1,15804:32583029,9949948:0 +) +(1,15805:6630773,10791436:25952256,513147,126483 +k1,15804:9377639,10791436:227662 +k1,15804:10796746,10791436:227662 +k1,15804:12413771,10791436:227662 +k1,15804:14053734,10791436:227662 +k1,15804:16022688,10791436:227662 +k1,15804:16933235,10791436:227662 +k1,15804:19447447,10791436:227661 +k1,15804:20500207,10791436:227662 +k1,15804:22602199,10791436:227662 +k1,15804:25701648,10791436:227662 +k1,15804:28368560,10791436:227662 +k1,15804:29787667,10791436:227662 +k1,15804:31858201,10791436:227662 +k1,15804:32583029,10791436:0 +) +(1,15805:6630773,11632924:25952256,513147,134348 +k1,15804:9316876,11632924:193769 +k1,15804:10162073,11632924:193769 +k1,15804:10809345,11632924:193763 +k1,15804:15504782,11632924:193769 +k1,15804:17380205,11632924:193769 +k1,15804:18593059,11632924:193769 +k1,15804:19879313,11632924:193769 +k1,15804:20740237,11632924:193768 +k1,15804:21348844,11632924:193764 +k1,15804:23703990,11632924:193769 +k1,15804:24583921,11632924:193769 +k1,15804:26359073,11632924:193768 +k1,15804:27168880,11632924:193769 +k1,15804:28752012,11632924:193769 +k1,15804:30666101,11632924:193769 +k1,15804:32583029,11632924:0 +) +(1,15805:6630773,12474412:25952256,505283,126483 +g1,15804:7516164,12474412 +g1,15804:9218134,12474412 +g1,15804:11578740,12474412 +g1,15804:13664095,12474412 +g1,15804:15315602,12474412 +g1,15804:16706276,12474412 +g1,15804:18607475,12474412 +k1,15805:32583029,12474412:12607162 +g1,15805:32583029,12474412 +) +(1,15806:6630773,15281980:25952256,32768,229376 +(1,15806:6630773,15281980:0,32768,229376 +(1,15806:6630773,15281980:5505024,32768,229376 +r1,15806:12135797,15281980:5505024,262144,229376 +) +k1,15806:6630773,15281980:-5505024 +) +(1,15806:6630773,15281980:25952256,32768,0 +r1,15806:32583029,15281980:25952256,32768,0 +) +) +(1,15806:6630773,16886308:25952256,615776,14155 +(1,15806:6630773,16886308:1974731,582746,14155 +g1,15806:6630773,16886308 +g1,15806:8605504,16886308 +) +g1,15806:12555752,16886308 +k1,15806:32583030,16886308:18389140 +g1,15806:32583030,16886308 +) +(1,15809:6630773,18121012:25952256,513147,134348 +k1,15808:7509711,18121012:251103 +k1,15808:10267567,18121012:251104 +k1,15808:11744849,18121012:251103 +k1,15808:13309295,18121012:251104 +k1,15808:14551958,18121012:251103 +k1,15808:15822147,18121012:251104 +k1,15808:17674950,18121012:251103 +k1,15808:20595335,18121012:251104 +k1,15808:23830948,18121012:251103 +k1,15808:24733480,18121012:251104 +k1,15808:26373946,18121012:251103 +k1,15808:28972550,18121012:251104 +k1,15808:30295822,18121012:251103 +k1,15808:32583029,18121012:0 +) +(1,15809:6630773,18962500:25952256,513147,126483 +k1,15808:8125649,18962500:209060 +k1,15808:9353793,18962500:209059 +k1,15808:11058385,18962500:209060 +k1,15808:13820072,18962500:209060 +k1,15808:15423083,18962500:209060 +k1,15808:17956704,18962500:209059 +k1,15808:18817192,18962500:209060 +k1,15808:20045337,18962500:209060 +k1,15808:21523174,18962500:209060 +k1,15808:22391525,18962500:209059 +k1,15808:23619670,18962500:209060 +k1,15808:24985440,18962500:209060 +k1,15808:26598281,18962500:209060 +k1,15808:28120682,18962500:209059 +k1,15808:29321302,18962500:209060 +k1,15808:32583029,18962500:0 +) +(1,15809:6630773,19803988:25952256,513147,126483 +k1,15808:7482928,19803988:192863 +k1,15808:10354903,19803988:192863 +k1,15808:14026417,19803988:192863 +k1,15808:15600124,19803988:192863 +k1,15808:17839021,19803988:192863 +k1,15808:19670939,19803988:192863 +k1,15808:21258407,19803988:192862 +k1,15808:22102698,19803988:192863 +k1,15808:23521740,19803988:192863 +k1,15808:25108554,19803988:192863 +k1,15808:26527596,19803988:192863 +k1,15808:28959824,19803988:192863 +k1,15808:30344132,19803988:192863 +k1,15808:31931601,19803988:192863 +k1,15808:32583029,19803988:0 +) +(1,15809:6630773,20645476:25952256,513147,134348 +k1,15808:8249631,20645476:206557 +k1,15808:10023810,20645476:206558 +k1,15808:13302695,20645476:206557 +k1,15808:15795804,20645476:206558 +k1,15808:16618399,20645476:206557 +k1,15808:18426657,20645476:206558 +k1,15808:22985460,20645476:206557 +k1,15808:26538286,20645476:206558 +k1,15808:27668901,20645476:206557 +k1,15808:28894544,20645476:206558 +k1,15808:30803071,20645476:206557 +k1,15808:32583029,20645476:0 +) +(1,15809:6630773,21486964:25952256,513147,134348 +k1,15808:8246941,21486964:285787 +k1,15808:9551813,21486964:285787 +k1,15808:11226963,21486964:285787 +k1,15808:14191863,21486964:285788 +k1,15808:15163812,21486964:285787 +k1,15808:18754580,21486964:285787 +k1,15808:19571864,21486964:285787 +k1,15808:22703224,21486964:285787 +k1,15808:24093293,21486964:285787 +k1,15808:25126847,21486964:285788 +k1,15808:27267303,21486964:285787 +k1,15808:28362460,21486964:285787 +k1,15808:29820686,21486964:285787 +k1,15808:32583029,21486964:0 +) +(1,15809:6630773,22328452:25952256,513147,134348 +k1,15808:10663799,22328452:197204 +k1,15808:14036222,22328452:197204 +k1,15808:14916311,22328452:197204 +k1,15808:16848908,22328452:197204 +k1,15808:17401972,22328452:197204 +k1,15808:19996483,22328452:197204 +k1,15808:23168366,22328452:197204 +k1,15808:24051732,22328452:197204 +k1,15808:24604796,22328452:197204 +k1,15808:28013919,22328452:197204 +k1,15808:29407810,22328452:197204 +k1,15808:32583029,22328452:0 +) +(1,15809:6630773,23169940:25952256,505283,126483 +k1,15808:9795406,23169940:180123 +k1,15808:10507026,23169940:180123 +k1,15808:12337346,23169940:180123 +k1,15808:14872833,23169940:180123 +k1,15808:16125125,23169940:180123 +k1,15808:18467936,23169940:180123 +k1,15808:22198800,23169940:180123 +k1,15808:23030351,23169940:180123 +k1,15808:25761135,23169940:180123 +k1,15808:26627420,23169940:180123 +k1,15808:27826628,23169940:180123 +k1,15808:30017396,23169940:180123 +k1,15808:31315563,23169940:180123 +k1,15808:32583029,23169940:0 +) +(1,15809:6630773,24011428:25952256,513147,134348 +k1,15808:8284355,24011428:201960 +k1,15808:10361955,24011428:201960 +k1,15808:13123097,24011428:201961 +k1,15808:13984349,24011428:201960 +k1,15808:15575672,24011428:201960 +k1,15808:17815802,24011428:201960 +k1,15808:19753155,24011428:201960 +k1,15808:20310975,24011428:201960 +k1,15808:23688155,24011428:201961 +k1,15808:26874625,24011428:201960 +k1,15808:29698680,24011428:201960 +k1,15808:31931601,24011428:201960 +k1,15808:32583029,24011428:0 +) +(1,15809:6630773,24852916:25952256,513147,11795 +k1,15808:7231593,24852916:244960 +k1,15808:9656937,24852916:244961 +k1,15808:12984055,24852916:244960 +k1,15808:14420460,24852916:244960 +k1,15808:15872593,24852916:244960 +k1,15808:18894970,24852916:244961 +k1,15808:19755968,24852916:244960 +k1,15808:23173480,24852916:244914 +k1,15808:24609886,24852916:244961 +k1,15808:27092855,24852916:244914 +k1,15808:27950577,24852916:244960 +k1,15808:29214623,24852916:244961 +k1,15808:30884991,24852916:244960 +k1,15808:32583029,24852916:0 +) +(1,15809:6630773,25694404:25952256,513147,126483 +k1,15808:8785697,25694404:156076 +k1,15808:10670614,25694404:156077 +k1,15808:12330741,25694404:156076 +k1,15808:14000043,25694404:156076 +k1,15808:14807548,25694404:156077 +k1,15808:16581053,25694404:156076 +k1,15808:18300163,25694404:156076 +k1,15808:19084074,25694404:156076 +k1,15808:20259236,25694404:156077 +k1,15808:21782393,25694404:156076 +k1,15808:22597761,25694404:156076 +k1,15808:26296059,25694404:156077 +k1,15808:29214478,25694404:156076 +k1,15808:32583029,25694404:0 +) +(1,15809:6630773,26535892:25952256,505283,134348 +k1,15808:7801010,26535892:178677 +k1,15808:8595724,26535892:178676 +k1,15808:11551817,26535892:178677 +k1,15808:12996649,26535892:178676 +k1,15808:18957568,26535892:178677 +k1,15808:21146889,26535892:178676 +k1,15808:23008511,26535892:178657 +k1,15808:26418767,26535892:178676 +k1,15808:27689929,26535892:178677 +k1,15808:29724585,26535892:178676 +k1,15808:30259122,26535892:178677 +k1,15808:32583029,26535892:0 +) +(1,15809:6630773,27377380:25952256,513147,126483 +k1,15808:7497993,27377380:184335 +k1,15808:10923738,27377380:184334 +k1,15808:11759501,27377380:184335 +k1,15808:14646541,27377380:184335 +k1,15808:15849960,27377380:184334 +k1,15808:17768378,27377380:184335 +k1,15808:18635597,27377380:184334 +k1,15808:21706793,27377380:184335 +k1,15808:25171205,27377380:184335 +k1,15808:26038424,27377380:184334 +k1,15808:30572384,27377380:184335 +k1,15808:32583029,27377380:0 +) +(1,15809:6630773,28218868:25952256,505283,126483 +k1,15808:8485638,28218868:192872 +k1,15808:9771001,28218868:192878 +k1,15808:10982964,28218868:192878 +k1,15808:12189028,28218868:192877 +k1,15808:15356585,28218868:192878 +k1,15808:16235625,28218868:192878 +k1,15808:16784363,28218868:192878 +k1,15808:19360130,28218868:192878 +k1,15808:22764927,28218868:192878 +k1,15808:26430558,28218868:192878 +k1,15808:28364728,28218868:192878 +k1,15808:30345428,28218868:192878 +k1,15808:31069803,28218868:192878 +k1,15808:32583029,28218868:0 +) +(1,15809:6630773,29060356:25952256,505283,126483 +g1,15808:7516164,29060356 +g1,15808:8071253,29060356 +g1,15808:11482401,29060356 +g1,15808:13283330,29060356 +g1,15808:16826206,29060356 +g1,15808:18723473,29060356 +g1,15808:19688818,29060356 +g1,15808:21898692,29060356 +g1,15808:23089481,29060356 +g1,15808:23940138,29060356 +g1,15808:24887133,29060356 +g1,15808:28247163,29060356 +g1,15808:29097820,29060356 +(1,15808:29097820,29060356:0,452978,115847 +r1,15808:31566357,29060356:2468537,568825,115847 +k1,15808:29097820,29060356:-2468537 +) +(1,15808:29097820,29060356:2468537,452978,115847 +k1,15808:29097820,29060356:3277 +h1,15808:31563080,29060356:0,411205,112570 +) +k1,15809:32583029,29060356:843002 +g1,15809:32583029,29060356 +) +v1,15811:6630773,30216416:0,393216,0 +(1,15859:6630773,45116945:25952256,15293745,589824 +g1,15859:6630773,45116945 +(1,15859:6630773,45116945:25952256,15293745,589824 +(1,15859:6630773,45706769:25952256,15883569,0 +[1,15859:6630773,45706769:25952256,15883569,0 +(1,15859:6630773,45706769:25952256,15857355,0 +r1,15859:6656987,45706769:26214,15857355,0 +[1,15859:6656987,45706769:25899828,15857355,0 +(1,15859:6656987,45116945:25899828,14677707,0 +[1,15859:7246811,45116945:24720180,14677707,0 +(1,15812:7246811,31601123:24720180,1161885,196608 +(1,15811:7246811,31601123:0,1161885,196608 +r1,15859:8794447,31601123:1547636,1358493,196608 +k1,15811:7246811,31601123:-1547636 +) +(1,15811:7246811,31601123:1547636,1161885,196608 +) +k1,15811:8994995,31601123:200548 +k1,15811:10376537,31601123:205826 +k1,15811:11372727,31601123:205826 +k1,15811:12855194,31601123:205826 +k1,15811:14426135,31601123:205826 +k1,15811:15667430,31601123:205826 +k1,15811:17428425,31601123:205826 +k1,15811:19596364,31601123:200548 +k1,15811:21580148,31601123:200549 +k1,15811:24183246,31601123:200548 +k1,15811:25609973,31601123:200548 +k1,15811:27297533,31601123:200548 +k1,15811:28689527,31601123:200549 +k1,15811:31152378,31601123:200548 +k1,15812:31966991,31601123:0 +) +(1,15812:7246811,32442611:24720180,513147,134348 +k1,15811:8831635,32442611:164659 +k1,15811:10309636,32442611:164659 +k1,15811:12359766,32442611:164659 +k1,15811:13861359,32442611:164659 +k1,15811:16397766,32442611:164659 +k1,15811:19887066,32442611:164659 +k1,15811:21277905,32442611:164660 +k1,15811:23812346,32442611:164659 +k1,15811:25631789,32442611:164659 +k1,15811:26327945,32442611:164659 +k1,15811:29346042,32442611:164659 +k1,15811:30458352,32442611:164659 +k1,15811:31966991,32442611:0 +) +(1,15812:7246811,33284099:24720180,513147,134348 +k1,15811:13068739,33284099:225153 +k1,15811:15408082,33284099:225152 +k1,15811:16652320,33284099:225153 +k1,15811:19059166,33284099:225152 +k1,15811:22532283,33284099:225153 +k1,15811:24028833,33284099:225152 +k1,15811:27031402,33284099:225153 +k1,15811:29365503,33284099:225152 +k1,15811:30249948,33284099:225153 +k1,15812:31966991,33284099:0 +) +(1,15812:7246811,34125587:24720180,505283,102891 +k1,15811:9140335,34125587:217113 +k1,15811:9888944,34125587:217112 +k1,15811:11390563,34125587:217113 +k1,15811:13990564,34125587:217112 +k1,15811:16712463,34125587:217113 +k1,15811:17921135,34125587:217112 +k1,15811:18789676,34125587:217113 +k1,15811:19754555,34125587:217113 +k1,15811:21383968,34125587:217112 +k1,15811:22287243,34125587:217113 +k1,15811:22919180,34125587:217094 +k1,15811:25378280,34125587:217113 +k1,15811:26413281,34125587:217112 +k1,15811:28663976,34125587:217113 +k1,15811:31966991,34125587:0 +) +(1,15812:7246811,34967075:24720180,513147,134348 +k1,15811:9047286,34967075:145691 +k1,15811:10184538,34967075:145692 +k1,15811:11997465,34967075:145691 +k1,15811:13902799,34967075:145692 +k1,15811:15542056,34967075:145691 +k1,15811:16373910,34967075:145692 +k1,15811:19239345,34967075:145691 +k1,15811:21503161,34967075:145692 +k1,15811:22331737,34967075:145691 +k1,15811:24671574,34967075:145692 +k1,15811:28122246,34967075:145691 +k1,15811:28733898,34967075:145691 +k1,15811:29898675,34967075:145692 +k1,15811:31966991,34967075:0 +) +(1,15812:7246811,35808563:24720180,513147,126483 +k1,15811:8409319,35808563:170948 +k1,15811:9231695,35808563:170948 +k1,15811:10150409,35808563:170948 +k1,15811:11834583,35808563:170948 +k1,15811:13399482,35808563:170948 +k1,15811:14589515,35808563:170948 +k1,15811:17039151,35808563:170949 +k1,15811:19467814,35808563:170948 +k1,15811:20562820,35808563:170948 +k1,15811:23089132,35808563:170948 +k1,15811:24952220,35808563:170948 +k1,15811:28148965,35808563:170948 +k1,15811:29452375,35808563:170948 +k1,15811:31966991,35808563:0 +) +(1,15812:7246811,36650051:24720180,505283,102891 +k1,15811:8118793,36650051:220554 +k1,15811:10836924,36650051:220554 +k1,15811:12076562,36650051:220553 +k1,15811:14539103,36650051:220554 +k1,15811:15831826,36650051:220554 +k1,15811:18084651,36650051:220554 +k1,15811:19545145,36650051:220553 +k1,15811:21311038,36650051:220554 +k1,15811:23025158,36650051:220554 +k1,15811:25314028,36650051:220554 +k1,15811:26526141,36650051:220553 +k1,15811:27945349,36650051:220554 +k1,15811:31350953,36650051:220554 +k1,15812:31966991,36650051:0 +) +(1,15812:7246811,37491539:24720180,513147,134348 +k1,15811:7895095,37491539:233441 +k1,15811:11818902,37491539:233475 +k1,15811:13124545,37491539:233474 +k1,15811:13713880,37491539:233475 +k1,15811:16141500,37491539:233475 +k1,15811:18459020,37491539:233475 +k1,15811:19223992,37491539:233475 +k1,15811:21755815,37491539:233475 +k1,15811:22640718,37491539:233475 +k1,15811:25172541,37491539:233475 +k1,15811:27045071,37491539:233475 +k1,15811:28846167,37491539:233475 +k1,15811:31966991,37491539:0 +) +(1,15812:7246811,38333027:24720180,513147,134348 +k1,15811:9489744,38333027:158888 +k1,15811:11585876,38333027:158888 +k1,15811:14303291,38333027:158889 +k1,15811:15970818,38333027:158888 +k1,15811:20575013,38333027:158888 +k1,15811:21420063,38333027:158888 +k1,15811:24933085,38333027:158889 +k1,15811:27854316,38333027:158888 +k1,15811:29455651,38333027:158888 +k1,15811:31966991,38333027:0 +) +(1,15812:7246811,39174515:24720180,513147,134348 +g1,15811:8128925,39174515 +g1,15811:11023650,39174515 +g1,15811:14562594,39174515 +g1,15811:15176666,39174515 +g1,15811:17430449,39174515 +g1,15811:18498030,39174515 +g1,15811:19744524,39174515 +g1,15811:21228259,39174515 +g1,15811:22807676,39174515 +g1,15811:24537171,39174515 +g1,15811:25387828,39174515 +g1,15811:26334823,39174515 +k1,15812:31966991,39174515:3219788 +g1,15812:31966991,39174515 +) +(1,15818:7246811,40016003:24720180,513147,134348 +h1,15813:7246811,40016003:983040,0,0 +k1,15813:10174085,40016003:227191 +k1,15813:11060569,40016003:227192 +k1,15813:12306845,40016003:227191 +k1,15813:14526331,40016003:227192 +k1,15813:15621874,40016003:227191 +k1,15813:17379331,40016003:227191 +k1,15813:18257951,40016003:227192 +k1,15813:19232908,40016003:227191 +k1,15813:20269470,40016003:227192 +k1,15813:21515746,40016003:227191 +k1,15813:23625131,40016003:227191 +k1,15813:24799974,40016003:227192 +k1,15813:26192395,40016003:227191 +k1,15814:27025140,40016003:227192 +k1,15814:31006233,40016003:227191 +k1,15818:31966991,40016003:0 +) +(1,15818:7246811,40857491:24720180,513147,134348 +k1,15814:9373400,40857491:239152 +k1,15814:10631637,40857491:239152 +k1,15814:13845467,40857491:239151 +k1,15814:16985898,40857491:239152 +k1,15814:20064070,40857491:239152 +k1,15814:21064750,40857491:239152 +k1,15814:22322986,40857491:239151 +k1,15814:25257634,40857491:239152 +k1,15814:27010012,40857491:239152 +k1,15814:27900592,40857491:239152 +k1,15814:29552044,40857491:239151 +k1,15814:30810281,40857491:239152 +k1,15814:31966991,40857491:0 +) +(1,15818:7246811,41698979:24720180,513147,134348 +k1,15814:8747824,41698979:309568 +k1,15814:10076477,41698979:309568 +k1,15814:13287324,41698979:309568 +k1,15814:15110118,41698979:309568 +k1,15814:16367337,41698979:309568 +k1,15814:18710488,41698979:309569 +k1,15814:20039141,41698979:309568 +k1,15814:24274316,41698979:309568 +k1,15814:27113574,41698979:309568 +k1,15814:28082434,41698979:309568 +k1,15814:31154345,41698979:309568 +k1,15818:31966991,41698979:0 +) +(1,15818:7246811,42540467:24720180,505283,134348 +k1,15814:9237378,42540467:244688 +k1,15815:10087618,42540467:244687 +k1,15815:12811533,42540467:244688 +k1,15815:13739105,42540467:244687 +k1,15815:16281485,42540467:244688 +k1,15815:19599155,42540467:244687 +k1,15815:21961967,42540467:244688 +k1,15815:24612481,42540467:244687 +k1,15815:25473207,42540467:244688 +k1,15815:26736979,42540467:244687 +k1,15815:29956346,42540467:244688 +k1,15815:31966991,42540467:0 +) +(1,15818:7246811,43381955:24720180,513147,126483 +k1,15815:8094906,43381955:165210 +k1,15815:10643006,43381955:165211 +k1,15815:15417363,43381955:165210 +k1,15815:16574133,43381955:165210 +k1,15815:18902031,43381955:165210 +k1,15815:21726038,43381955:165211 +k1,15815:23589286,43381955:165210 +k1,15815:25143859,43381955:165210 +k1,15815:27515666,43381955:165210 +k1,15815:28672437,43381955:165211 +k1,15815:31361438,43381955:165210 +k1,15816:31966991,43381955:0 +) +(1,15818:7246811,44223443:24720180,513147,134348 +k1,15816:10096776,44223443:205587 +k1,15816:12867441,44223443:205586 +k1,15816:15455917,44223443:205587 +k1,15816:18905535,44223443:205586 +k1,15816:21140117,44223443:205587 +k1,15816:23849834,44223443:205586 +k1,15816:26824972,44223443:205587 +k1,15816:27386418,44223443:205586 +k1,15816:29465024,44223443:205587 +k1,15816:31350953,44223443:205586 +k1,15816:31966991,44223443:0 +) +(1,15818:7246811,45064931:24720180,513147,134348 +k1,15816:7834505,45064931:231834 +k1,15816:10622897,45064931:231833 +k1,15816:12097294,45064931:231834 +k1,15816:13348212,45064931:231833 +k1,15816:15572996,45064931:231834 +k1,15816:17234170,45064931:231834 +k1,15816:18125295,45064931:231833 +k1,15816:20840944,45064931:231834 +k1,15816:23538897,45064931:231833 +k1,15816:26533729,45064931:231834 +k1,15816:27784647,45064931:231833 +k1,15816:30399370,45064931:231834 +k1,15816:31966991,45064931:0 +) +] +) +] +r1,15859:32583029,45706769:26214,15857355,0 +) +] +) +) +g1,15859:32583029,45116945 +) +] +(1,15859:32583029,45706769:0,0,0 +g1,15859:32583029,45706769 +) +) +] +(1,15859:6630773,47279633:25952256,0,0 +h1,15859:6630773,47279633:25952256,0,0 +) +] +h1,15859:4262630,4025873:0,0,0 +] +!24806 }308 !12 {309 -[1,15833:4262630,47279633:28320399,43253760,0 -(1,15833:4262630,4025873:0,0,0 -[1,15833:-473657,4025873:25952256,0,0 -(1,15833:-473657,-710414:25952256,0,0 -h1,15833:-473657,-710414:0,0,0 -(1,15833:-473657,-710414:0,0,0 -(1,15833:-473657,-710414:0,0,0 -g1,15833:-473657,-710414 -(1,15833:-473657,-710414:65781,0,65781 -g1,15833:-407876,-710414 -[1,15833:-407876,-644633:0,0,0 +[1,15864:4262630,47279633:28320399,43253760,0 +(1,15864:4262630,4025873:0,0,0 +[1,15864:-473657,4025873:25952256,0,0 +(1,15864:-473657,-710414:25952256,0,0 +h1,15864:-473657,-710414:0,0,0 +(1,15864:-473657,-710414:0,0,0 +(1,15864:-473657,-710414:0,0,0 +g1,15864:-473657,-710414 +(1,15864:-473657,-710414:65781,0,65781 +g1,15864:-407876,-710414 +[1,15864:-407876,-644633:0,0,0 ] ) -k1,15833:-473657,-710414:-65781 +k1,15864:-473657,-710414:-65781 ) ) -k1,15833:25478599,-710414:25952256 -g1,15833:25478599,-710414 +k1,15864:25478599,-710414:25952256 +g1,15864:25478599,-710414 ) ] ) -[1,15833:6630773,47279633:25952256,43253760,0 -[1,15833:6630773,4812305:25952256,786432,0 -(1,15833:6630773,4812305:25952256,505283,126483 -(1,15833:6630773,4812305:25952256,505283,126483 -g1,15833:3078558,4812305 -[1,15833:3078558,4812305:0,0,0 -(1,15833:3078558,2439708:0,1703936,0 -k1,15833:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15833:2537886,2439708:1179648,16384,0 +[1,15864:6630773,47279633:25952256,43253760,0 +[1,15864:6630773,4812305:25952256,786432,0 +(1,15864:6630773,4812305:25952256,505283,126483 +(1,15864:6630773,4812305:25952256,505283,126483 +g1,15864:3078558,4812305 +[1,15864:3078558,4812305:0,0,0 +(1,15864:3078558,2439708:0,1703936,0 +k1,15864:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15864:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15833:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15864:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15833:3078558,4812305:0,0,0 -(1,15833:3078558,2439708:0,1703936,0 -g1,15833:29030814,2439708 -g1,15833:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15833:36151628,1915420:16384,1179648,0 +[1,15864:3078558,4812305:0,0,0 +(1,15864:3078558,2439708:0,1703936,0 +g1,15864:29030814,2439708 +g1,15864:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15864:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15833:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15864:37855564,2439708:1179648,16384,0 ) ) -k1,15833:3078556,2439708:-34777008 +k1,15864:3078556,2439708:-34777008 +) +] +[1,15864:3078558,4812305:0,0,0 +(1,15864:3078558,49800853:0,16384,2228224 +k1,15864:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15864:2537886,49800853:1179648,16384,0 +) +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15864:3078558,51504789:16384,1179648,0 +) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] -[1,15833:3078558,4812305:0,0,0 -(1,15833:3078558,49800853:0,16384,2228224 -k1,15833:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15833:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15833:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 ) ] -) -) +[1,15864:3078558,4812305:0,0,0 +(1,15864:3078558,49800853:0,16384,2228224 +g1,15864:29030814,49800853 +g1,15864:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15864:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] -[1,15833:3078558,4812305:0,0,0 -(1,15833:3078558,49800853:0,16384,2228224 -g1,15833:29030814,49800853 -g1,15833:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15833:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15833:37855564,49800853:1179648,16384,0 -) -) -k1,15833:3078556,49800853:-34777008 -) -] -g1,15833:6630773,4812305 -k1,15833:25146660,4812305:17320510 -g1,15833:26880087,4812305 -g1,15833:29193507,4812305 -g1,15833:30603186,4812305 -) -) -] -[1,15833:6630773,45706769:25952256,40108032,0 -(1,15833:6630773,45706769:25952256,40108032,0 -(1,15833:6630773,45706769:0,0,0 -g1,15833:6630773,45706769 -) -[1,15833:6630773,45706769:25952256,40108032,0 -v1,15828:6630773,6254097:0,393216,0 -(1,15828:6630773,38761518:25952256,32900637,616038 -g1,15828:6630773,38761518 -(1,15828:6630773,38761518:25952256,32900637,616038 -(1,15828:6630773,39377556:25952256,33516675,0 -[1,15828:6630773,39377556:25952256,33516675,0 -(1,15828:6630773,39351342:25952256,33490461,0 -r1,15828:6656987,39351342:26214,33490461,0 -[1,15828:6656987,39351342:25899828,33490461,0 -(1,15828:6656987,38761518:25899828,32310813,0 -[1,15828:7246811,38761518:24720180,32310813,0 -(1,15789:7246811,6963852:24720180,513147,134348 -k1,15788:9413285,6963852:290178 -k1,15788:12416653,6963852:290177 -k1,15788:13468359,6963852:290178 -k1,15788:15670221,6963852:290177 -k1,15788:17052884,6963852:290178 -k1,15788:20038558,6963852:290178 -(1,15788:20038558,6963852:0,452978,115847 -r1,15828:22507095,6963852:2468537,568825,115847 -k1,15788:20038558,6963852:-2468537 -) -(1,15788:20038558,6963852:2468537,452978,115847 -k1,15788:20038558,6963852:3277 -h1,15788:22503818,6963852:0,411205,112570 -) -k1,15788:22797272,6963852:290177 -k1,15788:23738878,6963852:290178 -k1,15788:25007508,6963852:290177 -k1,15788:26316771,6963852:290178 -k1,15788:28675264,6963852:290177 -k1,15788:31315563,6963852:290178 -k1,15788:31966991,6963852:0 -) -(1,15789:7246811,7805340:24720180,513147,7863 -k1,15788:8467474,7805340:201578 -k1,15788:11089297,7805340:201578 -k1,15788:11977036,7805340:201577 -k1,15788:12534474,7805340:201578 -k1,15788:15710731,7805340:201578 -k1,15788:18063856,7805340:201578 -k1,15788:19646277,7805340:201577 -k1,15788:20379352,7805340:201578 -k1,15788:22558151,7805340:201578 -k1,15788:25289419,7805340:201578 -k1,15788:28465675,7805340:201577 -k1,15788:30975431,7805340:201578 -k1,15788:31966991,7805340:0 -) -(1,15789:7246811,8646828:24720180,505283,134348 -k1,15788:9574912,8646828:198836 -k1,15788:12123869,8646828:198836 -k1,15788:13716657,8646828:198837 -k1,15788:15367115,8646828:198836 -k1,15788:17431761,8646828:198836 -k1,15788:20651151,8646828:198836 -k1,15788:21611515,8646828:198836 -k1,15788:24904307,8646828:198837 -k1,15788:27090195,8646828:198836 -k1,15788:29647672,8646828:198836 -k1,15788:31966991,8646828:0 -) -(1,15789:7246811,9488316:24720180,513147,134348 -k1,15788:8691861,9488316:253605 -k1,15788:11243158,9488316:253605 -k1,15788:13614886,9488316:253604 -k1,15788:15964988,9488316:253605 -k1,15788:18435021,9488316:253605 -k1,15788:19885313,9488316:253605 -k1,15788:21792390,9488316:253604 -k1,15788:24327303,9488316:253605 -k1,15788:25232336,9488316:253605 -k1,15788:26578426,9488316:253605 -k1,15788:27499186,9488316:253604 -(1,15788:27499186,9488316:0,452978,115847 -r1,15828:30319435,9488316:2820249,568825,115847 -k1,15788:27499186,9488316:-2820249 -) -(1,15788:27499186,9488316:2820249,452978,115847 -k1,15788:27499186,9488316:3277 -h1,15788:30316158,9488316:0,411205,112570 -) -k1,15788:30573040,9488316:253605 -k1,15788:31966991,9488316:0 -) -(1,15789:7246811,10329804:24720180,513147,134348 -g1,15788:9670332,10329804 -g1,15788:12219682,10329804 -g1,15788:13812862,10329804 -g1,15788:15401454,10329804 -g1,15788:16885189,10329804 -g1,15788:18951539,10329804 -g1,15788:20625983,10329804 -g1,15788:23965042,10329804 -k1,15789:31966991,10329804:4993846 -g1,15789:31966991,10329804 -) -(1,15791:7246811,11171292:24720180,513147,126483 -h1,15790:7246811,11171292:983040,0,0 -k1,15790:9288096,11171292:229215 -k1,15790:13550396,11171292:229214 -k1,15790:15471751,11171292:229215 -k1,15790:16360258,11171292:229215 -k1,15790:18286199,11171292:229214 -k1,15790:21695876,11171292:229215 -k1,15790:22138053,11171292:229185 -k1,15790:24296647,11171292:229214 -k1,15790:24881722,11171292:229215 -k1,15790:26500300,11171292:229215 -k1,15790:28605810,11171292:229214 -k1,15790:30228976,11171292:229215 -k1,15790:31966991,11171292:0 -) -(1,15791:7246811,12012780:24720180,505283,102891 -k1,15790:10628206,12012780:198967 -k1,15790:13682578,12012780:198968 -k1,15790:15072990,12012780:198967 -k1,15790:15887996,12012780:198968 -k1,15790:17106048,12012780:198967 -k1,15790:19546346,12012780:198967 -k1,15790:22931674,12012780:198968 -k1,15790:24524592,12012780:198967 -k1,15790:27905988,12012780:198968 -k1,15790:30770304,12012780:198967 -k1,15790:31966991,12012780:0 -) -(1,15791:7246811,12854268:24720180,513147,134348 -k1,15790:8808773,12854268:255829 -k1,15790:12250961,12854268:255828 -k1,15790:13038287,12854268:255829 -k1,15790:16599097,12854268:255829 -k1,15790:17506354,12854268:255829 -k1,15790:18781267,12854268:255828 -k1,15790:21302676,12854268:255829 -k1,15790:24318226,12854268:255829 -k1,15790:25233347,12854268:255829 -k1,15790:28514972,12854268:255828 -k1,15790:29386839,12854268:255829 -k1,15790:31966991,12854268:0 -) -(1,15791:7246811,13695756:24720180,513147,126483 -k1,15790:9442823,13695756:172916 -k1,15790:10807184,13695756:172916 -k1,15790:11999185,13695756:172916 -k1,15790:14413433,13695756:172917 -k1,15790:15117846,13695756:172916 -k1,15790:18595743,13695756:172916 -k1,15790:19420087,13695756:172916 -k1,15790:20612088,13695756:172916 -k1,15790:23544725,13695756:172916 -k1,15790:24376934,13695756:172917 -k1,15790:25983778,13695756:172916 -k1,15790:26571511,13695756:172890 -k1,15790:29943895,13695756:172916 -k1,15790:31966991,13695756:0 -) -(1,15791:7246811,14537244:24720180,513147,134348 -k1,15790:10821150,14537244:254285 -k1,15790:12094520,14537244:254285 -k1,15790:15050855,14537244:254286 -k1,15790:15964432,14537244:254285 -k1,15790:17237802,14537244:254285 -k1,15790:19927405,14537244:254285 -k1,15790:21571054,14537244:254286 -k1,15790:23514857,14537244:254285 -k1,15790:24183930,14537244:254230 -k1,15790:27758269,14537244:254285 -k1,15790:31966991,14537244:0 -) -(1,15791:7246811,15378732:24720180,505283,134348 -g1,15790:8839991,15378732 -g1,15790:9988181,15378732 -g1,15790:12568333,15378732 -k1,15791:31966991,15378732:17639016 -g1,15791:31966991,15378732 -) -v1,15793:7246811,16569198:0,393216,0 -(1,15808:7246811,20909866:24720180,4733884,196608 -g1,15808:7246811,20909866 -g1,15808:7246811,20909866 -g1,15808:7050203,20909866 -(1,15808:7050203,20909866:0,4733884,196608 -r1,15828:32163599,20909866:25113396,4930492,196608 -k1,15808:7050203,20909866:-25113396 -) -(1,15808:7050203,20909866:25113396,4733884,196608 -[1,15808:7246811,20909866:24720180,4537276,0 -(1,15795:7246811,16783108:24720180,410518,82312 -(1,15794:7246811,16783108:0,0,0 -g1,15794:7246811,16783108 -g1,15794:7246811,16783108 -g1,15794:6919131,16783108 -(1,15794:6919131,16783108:0,0,0 -) -g1,15794:7246811,16783108 -) -k1,15795:7246811,16783108:0 -g1,15795:11356706,16783108 -g1,15795:11988998,16783108 -g1,15795:12937436,16783108 -g1,15795:13885873,16783108 -g1,15795:14518165,16783108 -g1,15795:15150457,16783108 -g1,15795:16098895,16783108 -g1,15795:16731187,16783108 -g1,15795:17679624,16783108 -g1,15795:18311916,16783108 -g1,15795:19260354,16783108 -g1,15795:23054102,16783108 -g1,15795:23686394,16783108 -h1,15795:25583268,16783108:0,0,0 -k1,15795:31966991,16783108:6383723 -g1,15795:31966991,16783108 -) -(1,15800:7246811,17514822:24720180,379060,4718 -(1,15797:7246811,17514822:0,0,0 -g1,15797:7246811,17514822 -g1,15797:7246811,17514822 -g1,15797:6919131,17514822 -(1,15797:6919131,17514822:0,0,0 -) -g1,15797:7246811,17514822 -) -g1,15800:8195248,17514822 -g1,15800:8511394,17514822 -g1,15800:8827540,17514822 -g1,15800:9459832,17514822 -g1,15800:10092124,17514822 -g1,15800:10408270,17514822 -g1,15800:10724416,17514822 -h1,15800:11040562,17514822:0,0,0 -k1,15800:31966990,17514822:20926428 -g1,15800:31966990,17514822 -) -(1,15800:7246811,18181000:24720180,388497,9436 -h1,15800:7246811,18181000:0,0,0 -g1,15800:8195248,18181000 -g1,15800:8827540,18181000 -g1,15800:9459832,18181000 -g1,15800:9775978,18181000 -g1,15800:10408270,18181000 -g1,15800:10724416,18181000 -h1,15800:11040562,18181000:0,0,0 -k1,15800:31966990,18181000:20926428 -g1,15800:31966990,18181000 -) -(1,15802:7246811,19502538:24720180,410518,82312 -(1,15801:7246811,19502538:0,0,0 -g1,15801:7246811,19502538 -g1,15801:7246811,19502538 -g1,15801:6919131,19502538 -(1,15801:6919131,19502538:0,0,0 -) -g1,15801:7246811,19502538 -) -k1,15802:7246811,19502538:0 -g1,15802:11356706,19502538 -g1,15802:11988998,19502538 -g1,15802:12937436,19502538 -g1,15802:13885873,19502538 -g1,15802:14518165,19502538 -g1,15802:15150457,19502538 -g1,15802:16098895,19502538 -g1,15802:16731187,19502538 -g1,15802:17679624,19502538 -g1,15802:18311916,19502538 -h1,15802:18944208,19502538:0,0,0 -k1,15802:31966991,19502538:13022783 -g1,15802:31966991,19502538 -) -(1,15807:7246811,20234252:24720180,379060,4718 -(1,15804:7246811,20234252:0,0,0 -g1,15804:7246811,20234252 -g1,15804:7246811,20234252 -g1,15804:6919131,20234252 -(1,15804:6919131,20234252:0,0,0 -) -g1,15804:7246811,20234252 -) -g1,15807:8195248,20234252 -g1,15807:8511394,20234252 -g1,15807:8827540,20234252 -g1,15807:9459832,20234252 -g1,15807:10408269,20234252 -h1,15807:11356706,20234252:0,0,0 -k1,15807:31966990,20234252:20610284 -g1,15807:31966990,20234252 -) -(1,15807:7246811,20900430:24720180,388497,9436 -h1,15807:7246811,20900430:0,0,0 -g1,15807:8195248,20900430 -g1,15807:8827540,20900430 -g1,15807:9459832,20900430 -g1,15807:9775978,20900430 -g1,15807:10408270,20900430 -g1,15807:10724416,20900430 -g1,15807:11040562,20900430 -h1,15807:11356708,20900430:0,0,0 -k1,15807:31966992,20900430:20610284 -g1,15807:31966992,20900430 -) -] -) -g1,15808:31966991,20909866 -g1,15808:7246811,20909866 -g1,15808:7246811,20909866 -g1,15808:31966991,20909866 -g1,15808:31966991,20909866 -) -h1,15808:7246811,21106474:0,0,0 -(1,15812:7246811,22472250:24720180,513147,126483 -h1,15811:7246811,22472250:983040,0,0 -k1,15811:9426102,22472250:293820 -k1,15811:11186617,22472250:293819 -k1,15811:13130634,22472250:293820 -k1,15811:15379392,22472250:293819 -k1,15811:17040293,22472250:293820 -k1,15811:17865610,22472250:293820 -k1,15811:19857467,22472250:293819 -k1,15811:23456268,22472250:293820 -k1,15811:24854369,22472250:293819 -k1,15811:25895955,22472250:293820 -k1,15811:27990703,22472250:293819 -k1,15811:31205463,22472250:293820 -k1,15811:31966991,22472250:0 -) -(1,15812:7246811,23313738:24720180,505283,134348 -k1,15811:8535659,23313738:269763 -k1,15811:10186266,23313738:269763 -k1,15811:12858579,23313738:269763 -k1,15811:14147427,23313738:269763 -k1,15811:16749616,23313738:269763 -k1,15811:18439544,23313738:269763 -k1,15811:19900752,23313738:269763 -k1,15811:20565042,23313738:269763 -(1,15811:20772136,23313738:0,435480,115847 -r1,15828:21482114,23313738:709978,551327,115847 -k1,15811:20772136,23313738:-709978 -) -(1,15811:20772136,23313738:709978,435480,115847 -k1,15811:20772136,23313738:3277 -h1,15811:21478837,23313738:0,411205,112570 -) -k1,15811:21751876,23313738:269762 -k1,15811:22882782,23313738:269763 -(1,15811:22882782,23313738:0,414482,115847 -r1,15828:23592760,23313738:709978,530329,115847 -k1,15811:22882782,23313738:-709978 -) -(1,15811:22882782,23313738:709978,414482,115847 -k1,15811:22882782,23313738:3277 -h1,15811:23589483,23313738:0,411205,112570 -) -k1,15811:24069617,23313738:269763 -k1,15811:25022265,23313738:269763 -k1,15811:25844497,23313738:269763 -k1,15811:27305705,23313738:269763 -k1,15811:28732178,23313738:269763 -(1,15811:28939272,23313738:0,452978,115847 -r1,15828:29649250,23313738:709978,568825,115847 -k1,15811:28939272,23313738:-709978 -) -(1,15811:28939272,23313738:709978,452978,115847 -k1,15811:28939272,23313738:3277 -h1,15811:29645973,23313738:0,411205,112570 -) -k1,15811:29919013,23313738:269763 -k1,15811:31049919,23313738:269763 -(1,15811:31049919,23313738:0,435480,115847 -r1,15828:31759897,23313738:709978,551327,115847 -k1,15811:31049919,23313738:-709978 -) -(1,15811:31049919,23313738:709978,435480,115847 -k1,15811:31049919,23313738:3277 -h1,15811:31756620,23313738:0,411205,112570 -) -k1,15811:31966991,23313738:0 -) -(1,15812:7246811,24155226:24720180,513147,134348 -k1,15811:8534484,24155226:183391 -k1,15811:9465642,24155226:183392 -k1,15811:12132848,24155226:183391 -k1,15811:12967668,24155226:183392 -k1,15811:16711630,24155226:183391 -k1,15811:17511060,24155226:183392 -k1,15811:19386591,24155226:183391 -k1,15811:21404991,24155226:183392 -k1,15811:23371617,24155226:183391 -k1,15811:25290402,24155226:183392 -k1,15811:28705373,24155226:183391 -k1,15811:31307699,24155226:183392 -k1,15811:31966991,24155226:0 -) -(1,15812:7246811,24996714:24720180,505283,134348 -k1,15811:9688683,24996714:181535 -k1,15811:11621994,24996714:181534 -k1,15811:14778208,24996714:181535 -k1,15811:17332802,24996714:181535 -k1,15811:19007902,24996714:181534 -k1,15811:19875599,24996714:181535 -k1,15811:22757872,24996714:181534 -k1,15811:23555445,24996714:181535 -k1,15811:25429120,24996714:181535 -k1,15811:27308036,24996714:181534 -k1,15811:28662010,24996714:181535 -k1,15811:31966991,24996714:0 -) -(1,15812:7246811,25838202:24720180,513147,126483 -g1,15811:8839991,25838202 -g1,15811:11201908,25838202 -g1,15811:14137920,25838202 -g1,15811:16201648,25838202 -g1,15811:18269964,25838202 -g1,15811:19806127,25838202 -g1,15811:20753122,25838202 -g1,15811:23631463,25838202 -g1,15811:24516854,25838202 -g1,15811:27478426,25838202 -k1,15812:31966991,25838202:1009914 -g1,15812:31966991,25838202 -) -v1,15814:7246811,27028668:0,393216,0 -(1,15822:7246811,28649906:24720180,2014454,196608 -g1,15822:7246811,28649906 -g1,15822:7246811,28649906 -g1,15822:7050203,28649906 -(1,15822:7050203,28649906:0,2014454,196608 -r1,15828:32163599,28649906:25113396,2211062,196608 -k1,15822:7050203,28649906:-25113396 -) -(1,15822:7050203,28649906:25113396,2014454,196608 -[1,15822:7246811,28649906:24720180,1817846,0 -(1,15816:7246811,27242578:24720180,410518,82312 -(1,15815:7246811,27242578:0,0,0 -g1,15815:7246811,27242578 -g1,15815:7246811,27242578 -g1,15815:6919131,27242578 -(1,15815:6919131,27242578:0,0,0 -) -g1,15815:7246811,27242578 -) -k1,15816:7246811,27242578:0 -g1,15816:11672851,27242578 -g1,15816:12305143,27242578 -g1,15816:13253581,27242578 -g1,15816:14202018,27242578 -g1,15816:14834310,27242578 -g1,15816:15782748,27242578 -g1,15816:16731185,27242578 -g1,15816:17363477,27242578 -g1,15816:18311915,27242578 -g1,15816:19260352,27242578 -g1,15816:19892644,27242578 -h1,15816:20524936,27242578:0,0,0 -k1,15816:31966991,27242578:11442055 -g1,15816:31966991,27242578 -) -(1,15821:7246811,27974292:24720180,404226,9436 -(1,15818:7246811,27974292:0,0,0 -g1,15818:7246811,27974292 -g1,15818:7246811,27974292 -g1,15818:6919131,27974292 -(1,15818:6919131,27974292:0,0,0 -) -g1,15818:7246811,27974292 -) -g1,15821:8195248,27974292 -g1,15821:8511394,27974292 -g1,15821:8827540,27974292 -g1,15821:9775977,27974292 -g1,15821:10724414,27974292 -g1,15821:11672851,27974292 -h1,15821:12305142,27974292:0,0,0 -k1,15821:31966990,27974292:19661848 -g1,15821:31966990,27974292 -) -(1,15821:7246811,28640470:24720180,388497,9436 -h1,15821:7246811,28640470:0,0,0 -g1,15821:8195248,28640470 -g1,15821:8827540,28640470 -g1,15821:9143686,28640470 -g1,15821:9775978,28640470 -g1,15821:10092124,28640470 -g1,15821:10724416,28640470 -g1,15821:11040562,28640470 -g1,15821:11672854,28640470 -g1,15821:11989000,28640470 -h1,15821:12305146,28640470:0,0,0 -k1,15821:31966990,28640470:19661844 -g1,15821:31966990,28640470 -) -] -) -g1,15822:31966991,28649906 -g1,15822:7246811,28649906 -g1,15822:7246811,28649906 -g1,15822:31966991,28649906 -g1,15822:31966991,28649906 -) -h1,15822:7246811,28846514:0,0,0 -(1,15826:7246811,30212290:24720180,513147,134348 -h1,15825:7246811,30212290:983040,0,0 -k1,15825:11027692,30212290:238660 -k1,15825:12655716,30212290:238661 -k1,15825:14461997,30212290:238660 -k1,15825:15056517,30212290:238660 -k1,15825:16521356,30212290:238660 -k1,15825:17743057,30212290:238661 -k1,15825:19085999,30212290:238660 -k1,15825:21167531,30212290:238660 -k1,15825:22022229,30212290:238660 -k1,15825:23614864,30212290:238661 -k1,15825:27679516,30212290:238660 -k1,15825:29928821,30212290:238660 -k1,15825:31966991,30212290:0 -) -(1,15826:7246811,31053778:24720180,513147,134348 -k1,15825:8085675,31053778:222826 -k1,15825:8723320,31053778:222802 -k1,15825:11787787,31053778:222826 -k1,15825:14540303,31053778:222826 -k1,15825:15422421,31053778:222826 -k1,15825:16001107,31053778:222826 -k1,15825:19356554,31053778:222826 -k1,15825:20195417,31053778:222825 -k1,15825:23493192,31053778:222826 -k1,15825:24958581,31053778:222826 -k1,15825:26879445,31053778:222826 -k1,15825:27458131,31053778:222826 -k1,15825:28949710,31053778:222802 -k1,15825:30155576,31053778:222826 -k1,15825:31966991,31053778:0 -) -(1,15826:7246811,31895266:24720180,513147,134348 -k1,15825:8856594,31895266:215832 -k1,15825:11849842,31895266:215832 -k1,15825:12597171,31895266:215832 -k1,15825:15134944,31895266:215832 -k1,15825:18029888,31895266:215832 -k1,15825:19981113,31895266:215832 -k1,15825:22065375,31895266:215831 -k1,15825:24808275,31895266:215832 -k1,15825:27378160,31895266:215832 -k1,15825:28666161,31895266:215832 -k1,15825:30294294,31895266:215832 -k1,15825:31196288,31895266:215832 -k1,15825:31966991,31895266:0 -) -(1,15826:7246811,32736754:24720180,513147,11795 -g1,15825:8916013,32736754 -g1,15825:11642310,32736754 -g1,15825:14520651,32736754 -k1,15826:31966991,32736754:16289630 -g1,15826:31966991,32736754 -) -(1,15828:7246811,33578242:24720180,513147,134348 -h1,15827:7246811,33578242:983040,0,0 -k1,15827:9794086,33578242:367548 -k1,15827:12575980,33578242:367548 -k1,15827:14265388,33578242:367547 -k1,15827:15292228,33578242:367548 -k1,15827:16425892,33578242:367548 -k1,15827:18490167,33578242:367548 -k1,15827:21864506,33578242:367547 -k1,15827:22763551,33578242:367548 -k1,15827:23782527,33578242:367548 -k1,15827:26989095,33578242:367548 -k1,15827:28865281,33578242:367547 -k1,15827:31280829,33578242:367548 -k1,15827:31966991,33578242:0 -) -(1,15828:7246811,34419730:24720180,513147,134348 -k1,15827:10202944,34419730:260637 -k1,15827:13866209,34419730:260636 -k1,15827:15318291,34419730:260637 -k1,15827:18165633,34419730:260636 -k1,15827:22483604,34419730:260637 -k1,15827:25157277,34419730:260637 -k1,15827:26522195,34419730:260636 -k1,15827:27398870,34419730:260637 -k1,15827:29261206,34419730:260636 -k1,15827:31219225,34419730:260637 -k1,15827:31966991,34419730:0 -) -(1,15828:7246811,35261218:24720180,513147,134348 -k1,15827:9039220,35261218:279183 -k1,15827:9969832,35261218:279184 -k1,15827:11877585,35261218:279183 -k1,15827:13175853,35261218:279183 -k1,15827:15697678,35261218:279183 -k1,15827:18884039,35261218:279184 -k1,15827:19822514,35261218:279183 -k1,15827:21327876,35261218:279183 -k1,15827:22920401,35261218:279183 -k1,15827:24593536,35261218:279184 -k1,15827:27165168,35261218:279183 -k1,15827:31966991,35261218:0 -) -(1,15828:7246811,36102706:24720180,513147,134348 -k1,15827:9682431,36102706:230989 -k1,15827:11104865,36102706:230989 -k1,15827:13973678,36102706:230989 -k1,15827:15694957,36102706:230990 -k1,15827:17082656,36102706:230989 -k1,15827:19366888,36102706:230989 -k1,15827:21146493,36102706:230989 -k1,15827:21908979,36102706:230989 -k1,15827:25026174,36102706:230989 -k1,15827:26528562,36102706:230990 -k1,15827:29455047,36102706:230989 -k1,15827:30302074,36102706:230989 -k1,15827:31552148,36102706:230989 -k1,15828:31966991,36102706:0 -) -(1,15828:7246811,36944194:24720180,513147,134348 -k1,15827:9324738,36944194:157723 -k1,15827:12236285,36944194:157724 -k1,15827:14279479,36944194:157723 -k1,15827:14968699,36944194:157723 -k1,15827:16192693,36944194:157723 -k1,15827:19365073,36944194:157724 -k1,15827:20627078,36944194:157723 -k1,15827:21397563,36944194:157723 -k1,15827:22574371,36944194:157723 -k1,15827:24157503,36944194:157724 -k1,15827:24974518,36944194:157723 -k1,15827:27389956,36944194:157723 -k1,15827:28295445,36944194:157723 -k1,15827:29966395,36944194:157724 -k1,15827:30775546,36944194:157723 -k1,15827:31966991,36944194:0 -) -(1,15828:7246811,37785682:24720180,513147,126483 -k1,15827:8822455,37785682:262302 -k1,15827:10032407,37785682:262301 -k1,15827:11313794,37785682:262302 -k1,15827:14405940,37785682:262301 -k1,15827:15477612,37785682:262302 -k1,15827:18901307,37785682:262238 -k1,15827:22642260,37785682:262302 -(1,15827:22642260,37785682:0,459977,115847 -r1,15828:31793321,37785682:9151061,575824,115847 -k1,15827:22642260,37785682:-9151061 -) -(1,15827:22642260,37785682:9151061,459977,115847 -k1,15827:22642260,37785682:3277 -h1,15827:31790044,37785682:0,411205,112570 -) -k1,15827:31966991,37785682:0 -) -(1,15828:7246811,38627170:24720180,513147,134348 -g1,15827:8826884,38627170 -g1,15827:11721609,38627170 -g1,15827:13603803,38627170 -g1,15827:14489194,38627170 -g1,15827:15459126,38627170 -g1,15827:18730683,38627170 -g1,15827:19948997,38627170 -g1,15827:21596572,38627170 -g1,15827:22447229,38627170 -g1,15827:23002318,38627170 -k1,15828:31966991,38627170:7807963 -g1,15828:31966991,38627170 -) -] -) -] -r1,15828:32583029,39351342:26214,33490461,0 -) -] -) -) -g1,15828:32583029,38761518 -) -h1,15828:6630773,39377556:0,0,0 -(1,15830:6630773,41468816:25952256,555811,12975 -(1,15830:6630773,41468816:2450326,534184,12975 -g1,15830:6630773,41468816 -g1,15830:9081099,41468816 -) -g1,15830:10950383,41468816 -g1,15830:11672721,41468816 -g1,15830:13239949,41468816 -k1,15830:32583028,41468816:17318804 -g1,15830:32583028,41468816 -) -(1,15833:6630773,42703520:25952256,513147,134348 -k1,15832:8212660,42703520:178106 -k1,15832:9704109,42703520:178107 -k1,15832:13244212,42703520:178106 -k1,15832:14811682,42703520:178107 -k1,15832:15605826,42703520:178106 -k1,15832:18497124,42703520:178107 -k1,15832:19779512,42703520:178106 -k1,15832:20705385,42703520:178107 -k1,15832:23252618,42703520:178106 -k1,15832:24698191,42703520:178107 -k1,15832:26048736,42703520:178106 -k1,15832:28086755,42703520:178107 -k1,15832:30661513,42703520:178106 -k1,15832:32583029,42703520:0 -) -(1,15833:6630773,43545008:25952256,513147,7863 -k1,15832:8217936,43545008:193212 -k1,15832:12002521,43545008:193212 -k1,15832:13929816,43545008:193212 -k1,15832:15314473,43545008:193212 -k1,15832:17251598,43545008:193212 -k1,15832:18838760,43545008:193211 -k1,15832:22052526,43545008:193212 -k1,15832:24153491,43545008:193212 -k1,15832:28067837,43545008:193212 -k1,15832:29995132,43545008:193212 -k1,15832:31692395,43545008:193212 -k1,15833:32583029,43545008:0 -) -(1,15833:6630773,44386496:25952256,513147,134348 -k1,15832:9356814,44386496:295966 -k1,15832:12430195,44386496:295965 -k1,15832:13342199,44386496:295966 -k1,15832:14657250,44386496:295966 -k1,15832:16511006,44386496:295965 -k1,15832:18274978,44386496:295966 -k1,15832:19238100,44386496:295966 -k1,15832:22574839,44386496:295868 -k1,15832:24062250,44386496:295966 -k1,15832:26556197,44386496:295869 -k1,15832:28550200,44386496:295965 -k1,15832:30235529,44386496:295966 -k1,15832:32583029,44386496:0 -) -(1,15833:6630773,45227984:25952256,513147,134348 -k1,15832:9509234,45227984:259642 -k1,15832:10976048,45227984:259641 -k1,15832:12589664,45227984:259642 -k1,15832:15275448,45227984:259641 -k1,15832:17409420,45227984:259642 -k1,15832:20179745,45227984:259641 -k1,15832:21430947,45227984:259642 -k1,15832:24995569,45227984:259641 -k1,15832:27674145,45227984:259642 -k1,15832:28593078,45227984:259641 -k1,15832:31753999,45227984:259642 -k1,15833:32583029,45227984:0 -) -] -(1,15833:32583029,45706769:0,0,0 -g1,15833:32583029,45706769 -) -) -] -(1,15833:6630773,47279633:25952256,0,0 -h1,15833:6630773,47279633:25952256,0,0 -) -] -h1,15833:4262630,4025873:0,0,0 -] -!25889 +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15864:37855564,49800853:1179648,16384,0 +) +) +k1,15864:3078556,49800853:-34777008 +) +] +g1,15864:6630773,4812305 +k1,15864:25146660,4812305:17320510 +g1,15864:26880087,4812305 +g1,15864:29193507,4812305 +g1,15864:30603186,4812305 +) +) +] +[1,15864:6630773,45706769:25952256,40108032,0 +(1,15864:6630773,45706769:25952256,40108032,0 +(1,15864:6630773,45706769:0,0,0 +g1,15864:6630773,45706769 +) +[1,15864:6630773,45706769:25952256,40108032,0 +v1,15859:6630773,6254097:0,393216,0 +(1,15859:6630773,41285982:25952256,35425101,616038 +g1,15859:6630773,41285982 +(1,15859:6630773,41285982:25952256,35425101,616038 +(1,15859:6630773,41902020:25952256,36041139,0 +[1,15859:6630773,41902020:25952256,36041139,0 +(1,15859:6630773,41875806:25952256,36014925,0 +r1,15859:6656987,41875806:26214,36014925,0 +[1,15859:6656987,41875806:25899828,36014925,0 +(1,15859:6656987,41285982:25899828,34835277,0 +[1,15859:7246811,41285982:24720180,34835277,0 +(1,15818:7246811,6963852:24720180,513147,134348 +k1,15816:9194672,6963852:209846 +k1,15816:12916591,6963852:209845 +k1,15816:13812599,6963852:209846 +k1,15816:16816245,6963852:209846 +k1,15817:17631644,6963852:209846 +k1,15817:21685831,6963852:209845 +k1,15817:24379492,6963852:209846 +k1,15817:26881787,6963852:209846 +k1,15817:27707670,6963852:209845 +(1,15817:27707670,6963852:0,414482,115847 +r1,15859:28769359,6963852:1061689,530329,115847 +k1,15817:27707670,6963852:-1061689 +) +(1,15817:27707670,6963852:1061689,414482,115847 +k1,15817:27707670,6963852:3277 +h1,15817:28766082,6963852:0,411205,112570 +) +k1,15817:28979205,6963852:209846 +k1,15817:31966991,6963852:0 +) +(1,15818:7246811,7805340:24720180,505283,134348 +g1,15817:9738489,7805340 +g1,15817:12639767,7805340 +g1,15817:13648366,7805340 +g1,15817:14866680,7805340 +g1,15817:16907471,7805340 +g1,15817:20156090,7805340 +g1,15817:21546764,7805340 +g1,15817:25193842,7805340 +g1,15817:28064318,7805340 +k1,15818:31966991,7805340:1217008 +g1,15818:31966991,7805340 +) +(1,15820:7246811,8646828:24720180,513147,134348 +h1,15819:7246811,8646828:983040,0,0 +k1,15819:8898973,8646828:191365 +k1,15819:10260811,8646828:191365 +k1,15819:13664751,8646828:191365 +k1,15819:16862909,8646828:191366 +k1,15819:18567500,8646828:191365 +k1,15819:21114229,8646828:191365 +k1,15819:22799160,8646828:191365 +k1,15819:23676687,8646828:191365 +k1,15819:25945543,8646828:191365 +k1,15819:26796201,8646828:191366 +k1,15819:29726971,8646828:191365 +k1,15819:30577628,8646828:191365 +k1,15819:31966991,8646828:0 +) +(1,15820:7246811,9488316:24720180,513147,134348 +k1,15819:9413285,9488316:290178 +k1,15819:12416653,9488316:290177 +k1,15819:13468359,9488316:290178 +k1,15819:15670221,9488316:290177 +k1,15819:17052884,9488316:290178 +k1,15819:20038558,9488316:290178 +(1,15819:20038558,9488316:0,452978,115847 +r1,15859:22507095,9488316:2468537,568825,115847 +k1,15819:20038558,9488316:-2468537 +) +(1,15819:20038558,9488316:2468537,452978,115847 +k1,15819:20038558,9488316:3277 +h1,15819:22503818,9488316:0,411205,112570 +) +k1,15819:22797272,9488316:290177 +k1,15819:23738878,9488316:290178 +k1,15819:25007508,9488316:290177 +k1,15819:26316771,9488316:290178 +k1,15819:28675264,9488316:290177 +k1,15819:31315563,9488316:290178 +k1,15819:31966991,9488316:0 +) +(1,15820:7246811,10329804:24720180,513147,7863 +k1,15819:8467474,10329804:201578 +k1,15819:11089297,10329804:201578 +k1,15819:11977036,10329804:201577 +k1,15819:12534474,10329804:201578 +k1,15819:15710731,10329804:201578 +k1,15819:18063856,10329804:201578 +k1,15819:19646277,10329804:201577 +k1,15819:20379352,10329804:201578 +k1,15819:22558151,10329804:201578 +k1,15819:25289419,10329804:201578 +k1,15819:28465675,10329804:201577 +k1,15819:30975431,10329804:201578 +k1,15819:31966991,10329804:0 +) +(1,15820:7246811,11171292:24720180,505283,134348 +k1,15819:9574912,11171292:198836 +k1,15819:12123869,11171292:198836 +k1,15819:13716657,11171292:198837 +k1,15819:15367115,11171292:198836 +k1,15819:17431761,11171292:198836 +k1,15819:20651151,11171292:198836 +k1,15819:21611515,11171292:198836 +k1,15819:24904307,11171292:198837 +k1,15819:27090195,11171292:198836 +k1,15819:29647672,11171292:198836 +k1,15819:31966991,11171292:0 +) +(1,15820:7246811,12012780:24720180,513147,134348 +k1,15819:8691861,12012780:253605 +k1,15819:11243158,12012780:253605 +k1,15819:13614886,12012780:253604 +k1,15819:15964988,12012780:253605 +k1,15819:18435021,12012780:253605 +k1,15819:19885313,12012780:253605 +k1,15819:21792390,12012780:253604 +k1,15819:24327303,12012780:253605 +k1,15819:25232336,12012780:253605 +k1,15819:26578426,12012780:253605 +k1,15819:27499186,12012780:253604 +(1,15819:27499186,12012780:0,452978,115847 +r1,15859:30319435,12012780:2820249,568825,115847 +k1,15819:27499186,12012780:-2820249 +) +(1,15819:27499186,12012780:2820249,452978,115847 +k1,15819:27499186,12012780:3277 +h1,15819:30316158,12012780:0,411205,112570 +) +k1,15819:30573040,12012780:253605 +k1,15819:31966991,12012780:0 +) +(1,15820:7246811,12854268:24720180,513147,134348 +g1,15819:9670332,12854268 +g1,15819:12219682,12854268 +g1,15819:13812862,12854268 +g1,15819:15401454,12854268 +g1,15819:16885189,12854268 +g1,15819:18951539,12854268 +g1,15819:20625983,12854268 +g1,15819:23965042,12854268 +k1,15820:31966991,12854268:4993846 +g1,15820:31966991,12854268 +) +(1,15822:7246811,13695756:24720180,513147,126483 +h1,15821:7246811,13695756:983040,0,0 +k1,15821:9288096,13695756:229215 +k1,15821:13550396,13695756:229214 +k1,15821:15471751,13695756:229215 +k1,15821:16360258,13695756:229215 +k1,15821:18286199,13695756:229214 +k1,15821:21695876,13695756:229215 +k1,15821:22138053,13695756:229185 +k1,15821:24296647,13695756:229214 +k1,15821:24881722,13695756:229215 +k1,15821:26500300,13695756:229215 +k1,15821:28605810,13695756:229214 +k1,15821:30228976,13695756:229215 +k1,15821:31966991,13695756:0 +) +(1,15822:7246811,14537244:24720180,505283,102891 +k1,15821:10628206,14537244:198967 +k1,15821:13682578,14537244:198968 +k1,15821:15072990,14537244:198967 +k1,15821:15887996,14537244:198968 +k1,15821:17106048,14537244:198967 +k1,15821:19546346,14537244:198967 +k1,15821:22931674,14537244:198968 +k1,15821:24524592,14537244:198967 +k1,15821:27905988,14537244:198968 +k1,15821:30770304,14537244:198967 +k1,15821:31966991,14537244:0 +) +(1,15822:7246811,15378732:24720180,513147,134348 +k1,15821:8808773,15378732:255829 +k1,15821:12250961,15378732:255828 +k1,15821:13038287,15378732:255829 +k1,15821:16599097,15378732:255829 +k1,15821:17506354,15378732:255829 +k1,15821:18781267,15378732:255828 +k1,15821:21302676,15378732:255829 +k1,15821:24318226,15378732:255829 +k1,15821:25233347,15378732:255829 +k1,15821:28514972,15378732:255828 +k1,15821:29386839,15378732:255829 +k1,15821:31966991,15378732:0 +) +(1,15822:7246811,16220220:24720180,513147,126483 +k1,15821:9442823,16220220:172916 +k1,15821:10807184,16220220:172916 +k1,15821:11999185,16220220:172916 +k1,15821:14413433,16220220:172917 +k1,15821:15117846,16220220:172916 +k1,15821:18595743,16220220:172916 +k1,15821:19420087,16220220:172916 +k1,15821:20612088,16220220:172916 +k1,15821:23544725,16220220:172916 +k1,15821:24376934,16220220:172917 +k1,15821:25983778,16220220:172916 +k1,15821:26571511,16220220:172890 +k1,15821:29943895,16220220:172916 +k1,15821:31966991,16220220:0 +) +(1,15822:7246811,17061708:24720180,513147,134348 +k1,15821:10821150,17061708:254285 +k1,15821:12094520,17061708:254285 +k1,15821:15050855,17061708:254286 +k1,15821:15964432,17061708:254285 +k1,15821:17237802,17061708:254285 +k1,15821:19927405,17061708:254285 +k1,15821:21571054,17061708:254286 +k1,15821:23514857,17061708:254285 +k1,15821:24183930,17061708:254230 +k1,15821:27758269,17061708:254285 +k1,15821:31966991,17061708:0 +) +(1,15822:7246811,17903196:24720180,505283,134348 +g1,15821:8839991,17903196 +g1,15821:9988181,17903196 +g1,15821:12568333,17903196 +k1,15822:31966991,17903196:17639016 +g1,15822:31966991,17903196 +) +v1,15824:7246811,19093662:0,393216,0 +(1,15839:7246811,23434330:24720180,4733884,196608 +g1,15839:7246811,23434330 +g1,15839:7246811,23434330 +g1,15839:7050203,23434330 +(1,15839:7050203,23434330:0,4733884,196608 +r1,15859:32163599,23434330:25113396,4930492,196608 +k1,15839:7050203,23434330:-25113396 +) +(1,15839:7050203,23434330:25113396,4733884,196608 +[1,15839:7246811,23434330:24720180,4537276,0 +(1,15826:7246811,19307572:24720180,410518,82312 +(1,15825:7246811,19307572:0,0,0 +g1,15825:7246811,19307572 +g1,15825:7246811,19307572 +g1,15825:6919131,19307572 +(1,15825:6919131,19307572:0,0,0 +) +g1,15825:7246811,19307572 +) +k1,15826:7246811,19307572:0 +g1,15826:11356706,19307572 +g1,15826:11988998,19307572 +g1,15826:12937436,19307572 +g1,15826:13885873,19307572 +g1,15826:14518165,19307572 +g1,15826:15150457,19307572 +g1,15826:16098895,19307572 +g1,15826:16731187,19307572 +g1,15826:17679624,19307572 +g1,15826:18311916,19307572 +g1,15826:19260354,19307572 +g1,15826:23054102,19307572 +g1,15826:23686394,19307572 +h1,15826:25583268,19307572:0,0,0 +k1,15826:31966991,19307572:6383723 +g1,15826:31966991,19307572 +) +(1,15831:7246811,20039286:24720180,379060,4718 +(1,15828:7246811,20039286:0,0,0 +g1,15828:7246811,20039286 +g1,15828:7246811,20039286 +g1,15828:6919131,20039286 +(1,15828:6919131,20039286:0,0,0 +) +g1,15828:7246811,20039286 +) +g1,15831:8195248,20039286 +g1,15831:8511394,20039286 +g1,15831:8827540,20039286 +g1,15831:9459832,20039286 +g1,15831:10092124,20039286 +g1,15831:10408270,20039286 +g1,15831:10724416,20039286 +h1,15831:11040562,20039286:0,0,0 +k1,15831:31966990,20039286:20926428 +g1,15831:31966990,20039286 +) +(1,15831:7246811,20705464:24720180,388497,9436 +h1,15831:7246811,20705464:0,0,0 +g1,15831:8195248,20705464 +g1,15831:8827540,20705464 +g1,15831:9459832,20705464 +g1,15831:9775978,20705464 +g1,15831:10408270,20705464 +g1,15831:10724416,20705464 +h1,15831:11040562,20705464:0,0,0 +k1,15831:31966990,20705464:20926428 +g1,15831:31966990,20705464 +) +(1,15833:7246811,22027002:24720180,410518,82312 +(1,15832:7246811,22027002:0,0,0 +g1,15832:7246811,22027002 +g1,15832:7246811,22027002 +g1,15832:6919131,22027002 +(1,15832:6919131,22027002:0,0,0 +) +g1,15832:7246811,22027002 +) +k1,15833:7246811,22027002:0 +g1,15833:11356706,22027002 +g1,15833:11988998,22027002 +g1,15833:12937436,22027002 +g1,15833:13885873,22027002 +g1,15833:14518165,22027002 +g1,15833:15150457,22027002 +g1,15833:16098895,22027002 +g1,15833:16731187,22027002 +g1,15833:17679624,22027002 +g1,15833:18311916,22027002 +h1,15833:18944208,22027002:0,0,0 +k1,15833:31966991,22027002:13022783 +g1,15833:31966991,22027002 +) +(1,15838:7246811,22758716:24720180,379060,4718 +(1,15835:7246811,22758716:0,0,0 +g1,15835:7246811,22758716 +g1,15835:7246811,22758716 +g1,15835:6919131,22758716 +(1,15835:6919131,22758716:0,0,0 +) +g1,15835:7246811,22758716 +) +g1,15838:8195248,22758716 +g1,15838:8511394,22758716 +g1,15838:8827540,22758716 +g1,15838:9459832,22758716 +g1,15838:10408269,22758716 +h1,15838:11356706,22758716:0,0,0 +k1,15838:31966990,22758716:20610284 +g1,15838:31966990,22758716 +) +(1,15838:7246811,23424894:24720180,388497,9436 +h1,15838:7246811,23424894:0,0,0 +g1,15838:8195248,23424894 +g1,15838:8827540,23424894 +g1,15838:9459832,23424894 +g1,15838:9775978,23424894 +g1,15838:10408270,23424894 +g1,15838:10724416,23424894 +g1,15838:11040562,23424894 +h1,15838:11356708,23424894:0,0,0 +k1,15838:31966992,23424894:20610284 +g1,15838:31966992,23424894 +) +] +) +g1,15839:31966991,23434330 +g1,15839:7246811,23434330 +g1,15839:7246811,23434330 +g1,15839:31966991,23434330 +g1,15839:31966991,23434330 +) +h1,15839:7246811,23630938:0,0,0 +(1,15843:7246811,24996714:24720180,513147,126483 +h1,15842:7246811,24996714:983040,0,0 +k1,15842:9426102,24996714:293820 +k1,15842:11186617,24996714:293819 +k1,15842:13130634,24996714:293820 +k1,15842:15379392,24996714:293819 +k1,15842:17040293,24996714:293820 +k1,15842:17865610,24996714:293820 +k1,15842:19857467,24996714:293819 +k1,15842:23456268,24996714:293820 +k1,15842:24854369,24996714:293819 +k1,15842:25895955,24996714:293820 +k1,15842:27990703,24996714:293819 +k1,15842:31205463,24996714:293820 +k1,15842:31966991,24996714:0 +) +(1,15843:7246811,25838202:24720180,505283,134348 +k1,15842:8535659,25838202:269763 +k1,15842:10186266,25838202:269763 +k1,15842:12858579,25838202:269763 +k1,15842:14147427,25838202:269763 +k1,15842:16749616,25838202:269763 +k1,15842:18439544,25838202:269763 +k1,15842:19900752,25838202:269763 +k1,15842:20565042,25838202:269763 +(1,15842:20772136,25838202:0,435480,115847 +r1,15859:21482114,25838202:709978,551327,115847 +k1,15842:20772136,25838202:-709978 +) +(1,15842:20772136,25838202:709978,435480,115847 +k1,15842:20772136,25838202:3277 +h1,15842:21478837,25838202:0,411205,112570 +) +k1,15842:21751876,25838202:269762 +k1,15842:22882782,25838202:269763 +(1,15842:22882782,25838202:0,414482,115847 +r1,15859:23592760,25838202:709978,530329,115847 +k1,15842:22882782,25838202:-709978 +) +(1,15842:22882782,25838202:709978,414482,115847 +k1,15842:22882782,25838202:3277 +h1,15842:23589483,25838202:0,411205,112570 +) +k1,15842:24069617,25838202:269763 +k1,15842:25022265,25838202:269763 +k1,15842:25844497,25838202:269763 +k1,15842:27305705,25838202:269763 +k1,15842:28732178,25838202:269763 +(1,15842:28939272,25838202:0,452978,115847 +r1,15859:29649250,25838202:709978,568825,115847 +k1,15842:28939272,25838202:-709978 +) +(1,15842:28939272,25838202:709978,452978,115847 +k1,15842:28939272,25838202:3277 +h1,15842:29645973,25838202:0,411205,112570 +) +k1,15842:29919013,25838202:269763 +k1,15842:31049919,25838202:269763 +(1,15842:31049919,25838202:0,435480,115847 +r1,15859:31759897,25838202:709978,551327,115847 +k1,15842:31049919,25838202:-709978 +) +(1,15842:31049919,25838202:709978,435480,115847 +k1,15842:31049919,25838202:3277 +h1,15842:31756620,25838202:0,411205,112570 +) +k1,15842:31966991,25838202:0 +) +(1,15843:7246811,26679690:24720180,513147,134348 +k1,15842:8534484,26679690:183391 +k1,15842:9465642,26679690:183392 +k1,15842:12132848,26679690:183391 +k1,15842:12967668,26679690:183392 +k1,15842:16711630,26679690:183391 +k1,15842:17511060,26679690:183392 +k1,15842:19386591,26679690:183391 +k1,15842:21404991,26679690:183392 +k1,15842:23371617,26679690:183391 +k1,15842:25290402,26679690:183392 +k1,15842:28705373,26679690:183391 +k1,15842:31307699,26679690:183392 +k1,15842:31966991,26679690:0 +) +(1,15843:7246811,27521178:24720180,505283,134348 +k1,15842:9688683,27521178:181535 +k1,15842:11621994,27521178:181534 +k1,15842:14778208,27521178:181535 +k1,15842:17332802,27521178:181535 +k1,15842:19007902,27521178:181534 +k1,15842:19875599,27521178:181535 +k1,15842:22757872,27521178:181534 +k1,15842:23555445,27521178:181535 +k1,15842:25429120,27521178:181535 +k1,15842:27308036,27521178:181534 +k1,15842:28662010,27521178:181535 +k1,15842:31966991,27521178:0 +) +(1,15843:7246811,28362666:24720180,513147,126483 +g1,15842:8839991,28362666 +g1,15842:11201908,28362666 +g1,15842:14137920,28362666 +g1,15842:16201648,28362666 +g1,15842:18269964,28362666 +g1,15842:19806127,28362666 +g1,15842:20753122,28362666 +g1,15842:23631463,28362666 +g1,15842:24516854,28362666 +g1,15842:27478426,28362666 +k1,15843:31966991,28362666:1009914 +g1,15843:31966991,28362666 +) +v1,15845:7246811,29553132:0,393216,0 +(1,15853:7246811,31174370:24720180,2014454,196608 +g1,15853:7246811,31174370 +g1,15853:7246811,31174370 +g1,15853:7050203,31174370 +(1,15853:7050203,31174370:0,2014454,196608 +r1,15859:32163599,31174370:25113396,2211062,196608 +k1,15853:7050203,31174370:-25113396 +) +(1,15853:7050203,31174370:25113396,2014454,196608 +[1,15853:7246811,31174370:24720180,1817846,0 +(1,15847:7246811,29767042:24720180,410518,82312 +(1,15846:7246811,29767042:0,0,0 +g1,15846:7246811,29767042 +g1,15846:7246811,29767042 +g1,15846:6919131,29767042 +(1,15846:6919131,29767042:0,0,0 +) +g1,15846:7246811,29767042 +) +k1,15847:7246811,29767042:0 +g1,15847:11672851,29767042 +g1,15847:12305143,29767042 +g1,15847:13253581,29767042 +g1,15847:14202018,29767042 +g1,15847:14834310,29767042 +g1,15847:15782748,29767042 +g1,15847:16731185,29767042 +g1,15847:17363477,29767042 +g1,15847:18311915,29767042 +g1,15847:19260352,29767042 +g1,15847:19892644,29767042 +h1,15847:20524936,29767042:0,0,0 +k1,15847:31966991,29767042:11442055 +g1,15847:31966991,29767042 +) +(1,15852:7246811,30498756:24720180,404226,9436 +(1,15849:7246811,30498756:0,0,0 +g1,15849:7246811,30498756 +g1,15849:7246811,30498756 +g1,15849:6919131,30498756 +(1,15849:6919131,30498756:0,0,0 +) +g1,15849:7246811,30498756 +) +g1,15852:8195248,30498756 +g1,15852:8511394,30498756 +g1,15852:8827540,30498756 +g1,15852:9775977,30498756 +g1,15852:10724414,30498756 +g1,15852:11672851,30498756 +h1,15852:12305142,30498756:0,0,0 +k1,15852:31966990,30498756:19661848 +g1,15852:31966990,30498756 +) +(1,15852:7246811,31164934:24720180,388497,9436 +h1,15852:7246811,31164934:0,0,0 +g1,15852:8195248,31164934 +g1,15852:8827540,31164934 +g1,15852:9143686,31164934 +g1,15852:9775978,31164934 +g1,15852:10092124,31164934 +g1,15852:10724416,31164934 +g1,15852:11040562,31164934 +g1,15852:11672854,31164934 +g1,15852:11989000,31164934 +h1,15852:12305146,31164934:0,0,0 +k1,15852:31966990,31164934:19661844 +g1,15852:31966990,31164934 +) +] +) +g1,15853:31966991,31174370 +g1,15853:7246811,31174370 +g1,15853:7246811,31174370 +g1,15853:31966991,31174370 +g1,15853:31966991,31174370 +) +h1,15853:7246811,31370978:0,0,0 +(1,15857:7246811,32736754:24720180,513147,134348 +h1,15856:7246811,32736754:983040,0,0 +k1,15856:11027692,32736754:238660 +k1,15856:12655716,32736754:238661 +k1,15856:14461997,32736754:238660 +k1,15856:15056517,32736754:238660 +k1,15856:16521356,32736754:238660 +k1,15856:17743057,32736754:238661 +k1,15856:19085999,32736754:238660 +k1,15856:21167531,32736754:238660 +k1,15856:22022229,32736754:238660 +k1,15856:23614864,32736754:238661 +k1,15856:27679516,32736754:238660 +k1,15856:29928821,32736754:238660 +k1,15856:31966991,32736754:0 +) +(1,15857:7246811,33578242:24720180,513147,134348 +k1,15856:8085675,33578242:222826 +k1,15856:8723320,33578242:222802 +k1,15856:11787787,33578242:222826 +k1,15856:14540303,33578242:222826 +k1,15856:15422421,33578242:222826 +k1,15856:16001107,33578242:222826 +k1,15856:19356554,33578242:222826 +k1,15856:20195417,33578242:222825 +k1,15856:23493192,33578242:222826 +k1,15856:24958581,33578242:222826 +k1,15856:26879445,33578242:222826 +k1,15856:27458131,33578242:222826 +k1,15856:28949710,33578242:222802 +k1,15856:30155576,33578242:222826 +k1,15856:31966991,33578242:0 +) +(1,15857:7246811,34419730:24720180,513147,134348 +k1,15856:8856594,34419730:215832 +k1,15856:11849842,34419730:215832 +k1,15856:12597171,34419730:215832 +k1,15856:15134944,34419730:215832 +k1,15856:18029888,34419730:215832 +k1,15856:19981113,34419730:215832 +k1,15856:22065375,34419730:215831 +k1,15856:24808275,34419730:215832 +k1,15856:27378160,34419730:215832 +k1,15856:28666161,34419730:215832 +k1,15856:30294294,34419730:215832 +k1,15856:31196288,34419730:215832 +k1,15856:31966991,34419730:0 +) +(1,15857:7246811,35261218:24720180,513147,11795 +g1,15856:8916013,35261218 +g1,15856:11642310,35261218 +g1,15856:14520651,35261218 +k1,15857:31966991,35261218:16289630 +g1,15857:31966991,35261218 +) +(1,15859:7246811,36102706:24720180,513147,134348 +h1,15858:7246811,36102706:983040,0,0 +k1,15858:9639580,36102706:213042 +k1,15858:12266969,36102706:213043 +k1,15858:13801872,36102706:213042 +k1,15858:14674207,36102706:213043 +k1,15858:15653365,36102706:213042 +k1,15858:17563134,36102706:213042 +k1,15858:20782969,36102706:213043 +k1,15858:21527508,36102706:213042 +k1,15858:22391978,36102706:213042 +k1,15858:25444041,36102706:213043 +k1,15858:27165722,36102706:213042 +k1,15858:29426765,36102706:213043 +k1,15858:30325969,36102706:213042 +k1,15859:31966991,36102706:0 +) +(1,15859:7246811,36944194:24720180,505283,134348 +k1,15858:8743474,36944194:229197 +k1,15858:12375301,36944194:229198 +k1,15858:13795943,36944194:229197 +k1,15858:16611846,36944194:229197 +k1,15858:20898377,36944194:229197 +k1,15858:23540611,36944194:229198 +k1,15858:24874090,36944194:229197 +k1,15858:25719325,36944194:229197 +k1,15858:27550222,36944194:229197 +k1,15858:29476802,36944194:229198 +k1,15858:30453765,36944194:229197 +k1,15858:31966991,36944194:0 +) +(1,15859:7246811,37785682:24720180,513147,134348 +k1,15858:8114567,37785682:216328 +k1,15858:9959466,37785682:216329 +k1,15858:11194879,37785682:216328 +k1,15858:13653849,37785682:216328 +k1,15858:16777354,37785682:216328 +k1,15858:17652975,37785682:216329 +k1,15858:19095482,37785682:216328 +k1,15858:20625152,37785682:216328 +k1,15858:22235431,37785682:216328 +k1,15858:24744209,37785682:216329 +k1,15858:29762360,37785682:216328 +k1,15858:31966991,37785682:0 +) +(1,15859:7246811,38627170:24720180,513147,134348 +k1,15858:8691128,38627170:252872 +k1,15858:11581825,38627170:252873 +k1,15858:13324986,38627170:252872 +k1,15858:14734568,38627170:252872 +k1,15858:17040684,38627170:252873 +k1,15858:18842172,38627170:252872 +k1,15858:19626541,38627170:252872 +k1,15858:22765619,38627170:252872 +k1,15858:24289890,38627170:252873 +k1,15858:27238258,38627170:252872 +k1,15858:28107168,38627170:252872 +k1,15858:29379126,38627170:252873 +k1,15858:30046787,38627170:252818 +k1,15858:31966991,38627170:0 +) +(1,15859:7246811,39468658:24720180,513147,134348 +k1,15858:10198815,39468658:198181 +k1,15858:12282466,39468658:198180 +k1,15858:13012144,39468658:198181 +k1,15858:14276596,39468658:198181 +k1,15858:17489433,39468658:198181 +k1,15858:18791895,39468658:198180 +k1,15858:19602838,39468658:198181 +k1,15858:20820104,39468658:198181 +k1,15858:22443693,39468658:198181 +k1,15858:23301165,39468658:198180 +k1,15858:25757061,39468658:198181 +k1,15858:26703008,39468658:198181 +k1,15858:28414415,39468658:198181 +k1,15858:29264023,39468658:198180 +k1,15858:30653649,39468658:198181 +k1,15858:31966991,39468658:0 +) +(1,15859:7246811,40310146:24720180,513147,126483 +k1,15858:8447119,40310146:252657 +k1,15858:9718861,40310146:252657 +k1,15858:12801363,40310146:252657 +k1,15858:13863390,40310146:252657 +k1,15858:17277451,40310146:252604 +k1,15858:21008759,40310146:252657 +(1,15858:21008759,40310146:0,459977,115847 +r1,15859:30159820,40310146:9151061,575824,115847 +k1,15858:21008759,40310146:-9151061 +) +(1,15858:21008759,40310146:9151061,459977,115847 +k1,15858:21008759,40310146:3277 +h1,15858:30156543,40310146:0,411205,112570 +) +k1,15858:30586147,40310146:252657 +k1,15858:31966991,40310146:0 +) +(1,15859:7246811,41151634:24720180,513147,134348 +g1,15858:10141536,41151634 +g1,15858:12023730,41151634 +g1,15858:12909121,41151634 +g1,15858:13879053,41151634 +g1,15858:17150610,41151634 +g1,15858:18368924,41151634 +g1,15858:20016499,41151634 +g1,15858:20867156,41151634 +g1,15858:21422245,41151634 +k1,15859:31966991,41151634:9388036 +g1,15859:31966991,41151634 +) +] +) +] +r1,15859:32583029,41875806:26214,36014925,0 +) +] +) +) +g1,15859:32583029,41285982 +) +h1,15859:6630773,41902020:0,0,0 +] +(1,15864:32583029,45706769:0,0,0 +g1,15864:32583029,45706769 +) +) +] +(1,15864:6630773,47279633:25952256,0,0 +h1,15864:6630773,47279633:25952256,0,0 +) +] +h1,15864:4262630,4025873:0,0,0 +] +!25279 }309 -Input:2394:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2395:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2396:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2397:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2398:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2399:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2400:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2401:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:2391:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2392:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2393:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2394:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2395:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2396:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2397:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {310 -[1,15929:4262630,47279633:28320399,43253760,0 -(1,15929:4262630,4025873:0,0,0 -[1,15929:-473657,4025873:25952256,0,0 -(1,15929:-473657,-710414:25952256,0,0 -h1,15929:-473657,-710414:0,0,0 -(1,15929:-473657,-710414:0,0,0 -(1,15929:-473657,-710414:0,0,0 -g1,15929:-473657,-710414 -(1,15929:-473657,-710414:65781,0,65781 -g1,15929:-407876,-710414 -[1,15929:-407876,-644633:0,0,0 +[1,15930:4262630,47279633:28320399,43253760,0 +(1,15930:4262630,4025873:0,0,0 +[1,15930:-473657,4025873:25952256,0,0 +(1,15930:-473657,-710414:25952256,0,0 +h1,15930:-473657,-710414:0,0,0 +(1,15930:-473657,-710414:0,0,0 +(1,15930:-473657,-710414:0,0,0 +g1,15930:-473657,-710414 +(1,15930:-473657,-710414:65781,0,65781 +g1,15930:-407876,-710414 +[1,15930:-407876,-644633:0,0,0 ] ) -k1,15929:-473657,-710414:-65781 +k1,15930:-473657,-710414:-65781 ) ) -k1,15929:25478599,-710414:25952256 -g1,15929:25478599,-710414 +k1,15930:25478599,-710414:25952256 +g1,15930:25478599,-710414 ) ] ) -[1,15929:6630773,47279633:25952256,43253760,0 -[1,15929:6630773,4812305:25952256,786432,0 -(1,15929:6630773,4812305:25952256,513147,126483 -(1,15929:6630773,4812305:25952256,513147,126483 -g1,15929:3078558,4812305 -[1,15929:3078558,4812305:0,0,0 -(1,15929:3078558,2439708:0,1703936,0 -k1,15929:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15929:2537886,2439708:1179648,16384,0 +[1,15930:6630773,47279633:25952256,43253760,0 +[1,15930:6630773,4812305:25952256,786432,0 +(1,15930:6630773,4812305:25952256,513147,126483 +(1,15930:6630773,4812305:25952256,513147,126483 +g1,15930:3078558,4812305 +[1,15930:3078558,4812305:0,0,0 +(1,15930:3078558,2439708:0,1703936,0 +k1,15930:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,15930:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15929:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,15930:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,15929:3078558,4812305:0,0,0 -(1,15929:3078558,2439708:0,1703936,0 -g1,15929:29030814,2439708 -g1,15929:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15929:36151628,1915420:16384,1179648,0 +[1,15930:3078558,4812305:0,0,0 +(1,15930:3078558,2439708:0,1703936,0 +g1,15930:29030814,2439708 +g1,15930:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,15930:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15929:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,15930:37855564,2439708:1179648,16384,0 ) ) -k1,15929:3078556,2439708:-34777008 +k1,15930:3078556,2439708:-34777008 ) ] -[1,15929:3078558,4812305:0,0,0 -(1,15929:3078558,49800853:0,16384,2228224 -k1,15929:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15929:2537886,49800853:1179648,16384,0 +[1,15930:3078558,4812305:0,0,0 +(1,15930:3078558,49800853:0,16384,2228224 +k1,15930:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,15930:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15929:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,15930:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 -) -] -) -) -) -] -[1,15929:3078558,4812305:0,0,0 -(1,15929:3078558,49800853:0,16384,2228224 -g1,15929:29030814,49800853 -g1,15929:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15929:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15929:37855564,49800853:1179648,16384,0 -) -) -k1,15929:3078556,49800853:-34777008 -) -] -g1,15929:6630773,4812305 -g1,15929:6630773,4812305 -g1,15929:9744388,4812305 -g1,15929:11175694,4812305 -k1,15929:31387652,4812305:20211958 -) -) -] -[1,15929:6630773,45706769:25952256,40108032,0 -(1,15929:6630773,45706769:25952256,40108032,0 -(1,15929:6630773,45706769:0,0,0 -g1,15929:6630773,45706769 -) -[1,15929:6630773,45706769:25952256,40108032,0 -(1,15833:6630773,6254097:25952256,513147,134348 -k1,15832:10080529,6254097:258808 -k1,15832:12074729,6254097:258807 -k1,15832:14102354,6254097:258808 -k1,15832:17666142,6254097:258807 -k1,15832:19367397,6254097:258808 -k1,15832:21324242,6254097:258807 -k1,15832:24603604,6254097:258808 -k1,15832:26596494,6254097:258807 -k1,15832:27846862,6254097:258808 -k1,15832:29792566,6254097:258807 -k1,15832:31248061,6254097:258808 -k1,15832:32583029,6254097:0 -) -(1,15833:6630773,7095585:25952256,513147,134348 -k1,15832:8115342,7095585:246594 -k1,15832:9021228,7095585:246594 -k1,15832:13922844,7095585:246594 -k1,15832:15188523,7095585:246594 -k1,15832:18951779,7095585:246594 -k1,15832:19729870,7095585:246594 -k1,15832:21370415,7095585:246594 -k1,15832:24782398,7095585:246594 -k1,15832:27991875,7095585:246594 -k1,15832:28854507,7095585:246594 -k1,15832:30304342,7095585:246594 -k1,15832:32583029,7095585:0 -) -(1,15833:6630773,7937073:25952256,513147,134348 -k1,15832:7742030,7937073:242905 -k1,15832:11117555,7937073:242904 -k1,15832:12379545,7937073:242905 -k1,15832:13714934,7937073:242904 -k1,15832:14617131,7937073:242905 -k1,15832:17885832,7937073:242904 -k1,15832:18890265,7937073:242905 -k1,15832:21560623,7937073:242904 -k1,15832:22159388,7937073:242905 -k1,15832:23385332,7937073:242904 -k1,15832:25366252,7937073:242905 -k1,15832:26295318,7937073:242904 -k1,15832:27308926,7937073:242905 -k1,15832:30797828,7937073:242904 -k1,15832:32583029,7937073:0 -) -(1,15833:6630773,8778561:25952256,513147,134348 -g1,15832:8021447,8778561 -g1,15832:9798128,8778561 -g1,15832:10980397,8778561 -g1,15832:14791970,8778561 -g1,15832:15982759,8778561 -g1,15832:17467804,8778561 -g1,15832:20483115,8778561 -g1,15832:21914421,8778561 -g1,15832:24392337,8778561 -h1,15832:25362925,8778561:0,0,0 -g1,15832:25562154,8778561 -g1,15832:26570753,8778561 -g1,15832:28268135,8778561 -h1,15832:29463512,8778561:0,0,0 -k1,15833:32583029,8778561:2738753 -g1,15833:32583029,8778561 -) -(1,15835:6630773,9620049:25952256,513147,126483 -h1,15834:6630773,9620049:983040,0,0 -k1,15834:8428466,9620049:186818 -k1,15834:9634370,9620049:186819 -k1,15834:11127321,9620049:186818 -k1,15834:13975557,9620049:186819 -k1,15834:15030727,9620049:186818 -k1,15834:16350008,9620049:186819 -k1,15834:17949127,9620049:186818 -k1,15834:18491805,9620049:186818 -k1,15834:19661664,9620049:186819 -k1,15834:21242433,9620049:186818 -k1,15834:23163335,9620049:186819 -k1,15834:25193681,9620049:186818 -k1,15834:28401054,9620049:186819 -k1,15834:29349400,9620049:186818 -k1,15834:30483870,9620049:186819 -k1,15834:32051532,9620049:186818 -k1,15834:32583029,9620049:0 -) -(1,15835:6630773,10461537:25952256,513147,126483 -k1,15834:8327505,10461537:148116 -k1,15834:9007117,10461537:148115 -k1,15834:11023009,10461537:148116 -k1,15834:19055106,10461537:148116 -k1,15834:20886136,10461537:148065 -k1,15834:23214634,10461537:148115 -k1,15834:25248221,10461537:148116 -k1,15834:26500619,10461537:148116 -k1,15834:27396501,10461537:148116 -k1,15834:28956917,10461537:148115 -k1,15834:30296478,10461537:148116 -k1,15834:32583029,10461537:0 -) -(1,15835:6630773,11303025:25952256,505283,126483 -g1,15834:8223953,11303025 -(1,15834:8223953,11303025:0,452978,115847 -r1,15834:11747625,11303025:3523672,568825,115847 -k1,15834:8223953,11303025:-3523672 -) -(1,15834:8223953,11303025:3523672,452978,115847 -k1,15834:8223953,11303025:3277 -h1,15834:11744348,11303025:0,411205,112570 -) -g1,15834:11946854,11303025 -g1,15834:13337528,11303025 -(1,15834:13337528,11303025:0,452978,115847 -r1,15834:17212912,11303025:3875384,568825,115847 -k1,15834:13337528,11303025:-3875384 -) -(1,15834:13337528,11303025:3875384,452978,115847 -k1,15834:13337528,11303025:3277 -h1,15834:17209635,11303025:0,411205,112570 -) -g1,15834:17585811,11303025 -k1,15835:32583029,11303025:11027047 -g1,15835:32583029,11303025 -) -(1,15837:6630773,12144513:25952256,513147,126483 -h1,15836:6630773,12144513:983040,0,0 -g1,15836:10498052,12144513 -g1,15836:11680321,12144513 -(1,15836:11680321,12144513:0,452978,122846 -r1,15836:20127958,12144513:8447637,575824,122846 -k1,15836:11680321,12144513:-8447637 -) -(1,15836:11680321,12144513:8447637,452978,122846 -k1,15836:11680321,12144513:3277 -h1,15836:20124681,12144513:0,411205,112570 -) -g1,15836:20327187,12144513 -k1,15837:32583029,12144513:9380122 -g1,15837:32583029,12144513 -) -v1,15839:6630773,13246884:0,393216,0 -(1,15845:6630773,14869170:25952256,2015502,196608 -g1,15845:6630773,14869170 -g1,15845:6630773,14869170 -g1,15845:6434165,14869170 -(1,15845:6434165,14869170:0,2015502,196608 -r1,15845:32779637,14869170:26345472,2212110,196608 -k1,15845:6434165,14869170:-26345472 -) -(1,15845:6434165,14869170:26345472,2015502,196608 -[1,15845:6630773,14869170:25952256,1818894,0 -(1,15844:6630773,13454502:25952256,404226,82312 -(1,15840:6630773,13454502:0,0,0 -g1,15840:6630773,13454502 -g1,15840:6630773,13454502 -g1,15840:6303093,13454502 -(1,15840:6303093,13454502:0,0,0 -) -g1,15840:6630773,13454502 -) -k1,15844:6630773,13454502:0 -k1,15844:6630773,13454502:0 -h1,15844:12637540,13454502:0,0,0 -k1,15844:32583028,13454502:19945488 -g1,15844:32583028,13454502 -) -(1,15844:6630773,14120680:25952256,388497,82312 -h1,15844:6630773,14120680:0,0,0 -k1,15844:6630773,14120680:0 -h1,15844:11689104,14120680:0,0,0 -k1,15844:32583028,14120680:20893924 -g1,15844:32583028,14120680 -) -(1,15844:6630773,14786858:25952256,388497,82312 -h1,15844:6630773,14786858:0,0,0 -g1,15844:11372958,14786858 -h1,15844:11689104,14786858:0,0,0 -k1,15844:32583028,14786858:20893924 -g1,15844:32583028,14786858 -) -] -) -g1,15845:32583029,14869170 -g1,15845:6630773,14869170 -g1,15845:6630773,14869170 -g1,15845:32583029,14869170 -g1,15845:32583029,14869170 -) -h1,15845:6630773,15065778:0,0,0 -v1,15849:6630773,16604343:0,393216,0 -(1,15853:6630773,16925731:25952256,714604,196608 -g1,15853:6630773,16925731 -g1,15853:6630773,16925731 -g1,15853:6434165,16925731 -(1,15853:6434165,16925731:0,714604,196608 -r1,15853:32779637,16925731:26345472,911212,196608 -k1,15853:6434165,16925731:-26345472 -) -(1,15853:6434165,16925731:26345472,714604,196608 -[1,15853:6630773,16925731:25952256,517996,0 -(1,15851:6630773,16818253:25952256,410518,107478 -(1,15850:6630773,16818253:0,0,0 -g1,15850:6630773,16818253 -g1,15850:6630773,16818253 -g1,15850:6303093,16818253 -(1,15850:6303093,16818253:0,0,0 -) -g1,15850:6630773,16818253 -) -g1,15851:11056813,16818253 -g1,15851:12005251,16818253 -k1,15851:12005251,16818253:0 -h1,15851:25915660,16818253:0,0,0 -k1,15851:32583029,16818253:6667369 -g1,15851:32583029,16818253 -) -] -) -g1,15853:32583029,16925731 -g1,15853:6630773,16925731 -g1,15853:6630773,16925731 -g1,15853:32583029,16925731 -g1,15853:32583029,16925731 -) -h1,15853:6630773,17122339:0,0,0 -v1,15857:6630773,18660903:0,393216,0 -(1,15878:6630773,25121408:25952256,6853721,196608 -g1,15878:6630773,25121408 -g1,15878:6630773,25121408 -g1,15878:6434165,25121408 -(1,15878:6434165,25121408:0,6853721,196608 -r1,15878:32779637,25121408:26345472,7050329,196608 -k1,15878:6434165,25121408:-26345472 -) -(1,15878:6434165,25121408:26345472,6853721,196608 -[1,15878:6630773,25121408:25952256,6657113,0 -(1,15859:6630773,18874813:25952256,410518,101187 -(1,15858:6630773,18874813:0,0,0 -g1,15858:6630773,18874813 -g1,15858:6630773,18874813 -g1,15858:6303093,18874813 -(1,15858:6303093,18874813:0,0,0 -) -g1,15858:6630773,18874813 -) -k1,15859:6630773,18874813:0 -g1,15859:13585979,18874813 -h1,15859:15482853,18874813:0,0,0 -k1,15859:32583029,18874813:17100176 -g1,15859:32583029,18874813 -) -(1,15864:6630773,19606527:25952256,404226,9436 -(1,15861:6630773,19606527:0,0,0 -g1,15861:6630773,19606527 -g1,15861:6630773,19606527 -g1,15861:6303093,19606527 -(1,15861:6303093,19606527:0,0,0 -) -g1,15861:6630773,19606527 -) -g1,15864:7579210,19606527 -g1,15864:7895356,19606527 -g1,15864:8211502,19606527 -g1,15864:8527648,19606527 -g1,15864:8843794,19606527 -g1,15864:9159940,19606527 -g1,15864:10740669,19606527 -g1,15864:11056815,19606527 -g1,15864:11372961,19606527 -g1,15864:11689107,19606527 -g1,15864:12005253,19606527 -g1,15864:12321399,19606527 -g1,15864:13902128,19606527 -g1,15864:14218274,19606527 -g1,15864:14534420,19606527 -g1,15864:14850566,19606527 -g1,15864:15166712,19606527 -g1,15864:15482858,19606527 -g1,15864:17063587,19606527 -g1,15864:17379733,19606527 -g1,15864:17695879,19606527 -g1,15864:18012025,19606527 -g1,15864:18328171,19606527 -g1,15864:18644317,19606527 -h1,15864:19908900,19606527:0,0,0 -k1,15864:32583029,19606527:12674129 -g1,15864:32583029,19606527 -) -(1,15864:6630773,20272705:25952256,410518,107478 -h1,15864:6630773,20272705:0,0,0 -g1,15864:7579210,20272705 -g1,15864:10740667,20272705 -g1,15864:13902124,20272705 -g1,15864:17063581,20272705 -g1,15864:17379727,20272705 -h1,15864:19908892,20272705:0,0,0 -k1,15864:32583029,20272705:12674137 -g1,15864:32583029,20272705 -) -(1,15866:6630773,21594243:25952256,410518,76021 -(1,15865:6630773,21594243:0,0,0 -g1,15865:6630773,21594243 -g1,15865:6630773,21594243 -g1,15865:6303093,21594243 -(1,15865:6303093,21594243:0,0,0 -) -g1,15865:6630773,21594243 -) -h1,15866:13902123,21594243:0,0,0 -k1,15866:32583029,21594243:18680906 -g1,15866:32583029,21594243 -) -(1,15871:6630773,22325957:25952256,404226,76021 -(1,15868:6630773,22325957:0,0,0 -g1,15868:6630773,22325957 -g1,15868:6630773,22325957 -g1,15868:6303093,22325957 -(1,15868:6303093,22325957:0,0,0 -) -g1,15868:6630773,22325957 -) -g1,15871:7579210,22325957 -g1,15871:8843793,22325957 -g1,15871:10108376,22325957 -g1,15871:10740668,22325957 -h1,15871:11056814,22325957:0,0,0 -k1,15871:32583030,22325957:21526216 -g1,15871:32583030,22325957 -) -(1,15871:6630773,22992135:25952256,404226,7863 -h1,15871:6630773,22992135:0,0,0 -g1,15871:7579210,22992135 -g1,15871:10108376,22992135 -g1,15871:11372959,22992135 -g1,15871:12005251,22992135 -h1,15871:12321397,22992135:0,0,0 -k1,15871:32583029,22992135:20261632 -g1,15871:32583029,22992135 -) -(1,15873:6630773,24313673:25952256,410518,76021 -(1,15872:6630773,24313673:0,0,0 -g1,15872:6630773,24313673 -g1,15872:6630773,24313673 -g1,15872:6303093,24313673 -(1,15872:6303093,24313673:0,0,0 -) -g1,15872:6630773,24313673 -) -k1,15873:6630773,24313673:0 -h1,15873:16431289,24313673:0,0,0 -k1,15873:32583029,24313673:16151740 -g1,15873:32583029,24313673 -) -(1,15877:6630773,25045387:25952256,404226,76021 -(1,15875:6630773,25045387:0,0,0 -g1,15875:6630773,25045387 -g1,15875:6630773,25045387 -g1,15875:6303093,25045387 -(1,15875:6303093,25045387:0,0,0 -) -g1,15875:6630773,25045387 -) -g1,15877:7579210,25045387 -g1,15877:8843793,25045387 -g1,15877:10740667,25045387 -g1,15877:11689104,25045387 -h1,15877:12321395,25045387:0,0,0 -k1,15877:32583029,25045387:20261634 -g1,15877:32583029,25045387 -) -] -) -g1,15878:32583029,25121408 -g1,15878:6630773,25121408 -g1,15878:6630773,25121408 -g1,15878:32583029,25121408 -g1,15878:32583029,25121408 -) -h1,15878:6630773,25318016:0,0,0 -v1,15882:6630773,27031891:0,393216,0 -(1,15883:6630773,31834522:25952256,5195847,616038 -g1,15883:6630773,31834522 -(1,15883:6630773,31834522:25952256,5195847,616038 -(1,15883:6630773,32450560:25952256,5811885,0 -[1,15883:6630773,32450560:25952256,5811885,0 -(1,15883:6630773,32424346:25952256,5759457,0 -r1,15883:6656987,32424346:26214,5759457,0 -[1,15883:6656987,32424346:25899828,5759457,0 -(1,15883:6656987,31834522:25899828,4579809,0 -[1,15883:7246811,31834522:24720180,4579809,0 -(1,15883:7246811,28342087:24720180,1087374,122846 -k1,15882:8606485,28342087:149971 -k1,15882:10325388,28342087:149971 -k1,15882:11494444,28342087:149971 -k1,15882:12627455,28342087:149971 -(1,15882:12627455,28342087:0,452978,122846 -r1,15883:21075092,28342087:8447637,575824,122846 -k1,15882:12627455,28342087:-8447637 -) -(1,15882:12627455,28342087:8447637,452978,122846 -k1,15882:12627455,28342087:3277 -h1,15882:21071815,28342087:0,411205,112570 -) -k1,15882:21225064,28342087:149972 -k1,15882:22768986,28342087:149971 -k1,15882:25614453,28342087:149971 -(1,15882:25614453,28342087:0,452978,115847 -r1,15883:29489837,28342087:3875384,568825,115847 -k1,15882:25614453,28342087:-3875384 -) -(1,15882:25614453,28342087:3875384,452978,115847 -k1,15882:25614453,28342087:3277 -h1,15882:29486560,28342087:0,411205,112570 -) -k1,15882:29639808,28342087:149971 -k1,15882:31966991,28342087:0 -) -(1,15883:7246811,29183575:24720180,513147,134348 -k1,15882:8164563,29183575:250596 -(1,15882:8164563,29183575:0,452978,115847 -r1,15883:11688235,29183575:3523672,568825,115847 -k1,15882:8164563,29183575:-3523672 -) -(1,15882:8164563,29183575:3523672,452978,115847 -k1,15882:8164563,29183575:3277 -h1,15882:11684958,29183575:0,411205,112570 -) -k1,15882:12112501,29183575:250596 -k1,15882:15325980,29183575:250596 -k1,15882:16779817,29183575:250596 -k1,15882:18367347,29183575:250596 -k1,15882:20004685,29183575:250596 -k1,15882:21401506,29183575:250596 -k1,15882:22007961,29183575:250595 -k1,15882:24069972,29183575:250596 -k1,15882:24979860,29183575:250596 -k1,15882:26829534,29183575:250596 -k1,15882:28099215,29183575:250596 -k1,15882:30038018,29183575:250596 -k1,15882:30947906,29183575:250596 -k1,15882:31966991,29183575:0 -) -(1,15883:7246811,30025063:24720180,513147,134348 -k1,15882:9949110,30025063:141807 -k1,15882:10622414,30025063:141807 -k1,15882:11711872,30025063:141807 -k1,15882:13024152,30025063:141807 -k1,15882:13817387,30025063:141807 -k1,15882:14937647,30025063:141807 -k1,15882:17571788,30025063:141807 -k1,15882:19107546,30025063:141807 -k1,15882:19664139,30025063:141750 -k1,15882:22565667,30025063:141807 -k1,15882:23323512,30025063:141807 -k1,15882:24832400,30025063:141807 -k1,15882:25633499,30025063:141807 -k1,15882:27268872,30025063:141807 -k1,15882:27766539,30025063:141807 -k1,15882:30586147,30025063:141807 -k1,15882:31966991,30025063:0 -) -(1,15883:7246811,30866551:24720180,505283,134348 -k1,15882:8557829,30866551:178556 -k1,15882:10124438,30866551:178556 -k1,15882:11473466,30866551:178555 -k1,15882:14743355,30866551:178556 -k1,15882:17123921,30866551:178556 -k1,15882:19239721,30866551:178556 -k1,15882:21116315,30866551:178556 -k1,15882:22675059,30866551:178556 -k1,15882:25227983,30866551:178555 -k1,15882:29371467,30866551:178556 -k1,15882:31435494,30866551:178556 -k1,15882:31966991,30866551:0 -) -(1,15883:7246811,31708039:24720180,513147,126483 -g1,15882:9070678,31708039 -g1,15882:12047323,31708039 -g1,15882:13944590,31708039 -g1,15882:15457161,31708039 -g1,15882:16647950,31708039 -k1,15883:31966991,31708039:12987925 -g1,15883:31966991,31708039 -) -] -) -] -r1,15883:32583029,32424346:26214,5759457,0 -) -] -) -) -g1,15883:32583029,31834522 -) -h1,15883:6630773,32450560:0,0,0 -(1,15886:6630773,33728241:25952256,513147,126483 -h1,15885:6630773,33728241:983040,0,0 -k1,15885:10513956,33728241:215133 -k1,15885:11712130,33728241:215134 -(1,15885:11712130,33728241:0,452978,122846 -r1,15885:18752921,33728241:7040791,575824,122846 -k1,15885:11712130,33728241:-7040791 -) -(1,15885:11712130,33728241:7040791,452978,122846 -k1,15885:11712130,33728241:3277 -h1,15885:18749644,33728241:0,411205,112570 -) -k1,15885:18968054,33728241:215133 -k1,15885:21885236,33728241:215133 -k1,15885:29984351,33728241:215134 -k1,15885:31593435,33728241:215133 -k1,15886:32583029,33728241:0 -) -(1,15886:6630773,34569729:25952256,505283,134348 -k1,15885:8020005,34569729:200409 -k1,15885:9961706,34569729:200409 -k1,15885:11949937,34569729:200409 -k1,15885:12801773,34569729:200408 -k1,15885:14553419,34569729:200409 -k1,15885:15772913,34569729:200409 -k1,15885:18860183,34569729:200409 -k1,15885:19712020,34569729:200409 -k1,15885:21628162,34569729:200409 -k1,15885:22286668,34569729:200409 -k1,15885:24357475,34569729:200409 -k1,15885:25209311,34569729:200408 -k1,15885:26822021,34569729:200409 -k1,15885:27783958,34569729:200409 -k1,15885:30708699,34569729:200409 -k1,15885:32583029,34569729:0 -) -(1,15886:6630773,35411217:25952256,513147,134348 -k1,15885:9145334,35411217:195242 -k1,15885:11074660,35411217:195243 -k1,15885:13641650,35411217:195242 -k1,15885:16156212,35411217:195243 -k1,15885:17542899,35411217:195242 -k1,15885:20035834,35411217:195243 -k1,15885:21972368,35411217:195242 -k1,15885:24285735,35411217:195243 -k1,15885:25765483,35411217:195242 -k1,15885:26952286,35411217:195243 -k1,15885:29905938,35411217:195242 -k1,15885:30717219,35411217:195243 -k1,15885:32583029,35411217:0 -) -(1,15886:6630773,36252705:25952256,513147,7863 -g1,15885:8840647,36252705 -g1,15885:10737914,36252705 -g1,15885:11956228,36252705 -g1,15885:13138497,36252705 -g1,15885:13869223,36252705 -k1,15886:32583030,36252705:17127836 -g1,15886:32583030,36252705 -) -v1,15888:6630773,37355076:0,393216,0 -(1,15894:6630773,38977362:25952256,2015502,196608 -g1,15894:6630773,38977362 -g1,15894:6630773,38977362 -g1,15894:6434165,38977362 -(1,15894:6434165,38977362:0,2015502,196608 -r1,15894:32779637,38977362:26345472,2212110,196608 -k1,15894:6434165,38977362:-26345472 -) -(1,15894:6434165,38977362:26345472,2015502,196608 -[1,15894:6630773,38977362:25952256,1818894,0 -(1,15893:6630773,37562694:25952256,404226,82312 -(1,15889:6630773,37562694:0,0,0 -g1,15889:6630773,37562694 -g1,15889:6630773,37562694 -g1,15889:6303093,37562694 -(1,15889:6303093,37562694:0,0,0 -) -g1,15889:6630773,37562694 -) -k1,15893:6630773,37562694:0 -g1,15893:8527648,37562694 -g1,15893:10424523,37562694 -g1,15893:12321398,37562694 -h1,15893:13585981,37562694:0,0,0 -k1,15893:32583029,37562694:18997048 -g1,15893:32583029,37562694 -) -(1,15893:6630773,38228872:25952256,388497,82312 -h1,15893:6630773,38228872:0,0,0 -g1,15893:6946919,38228872 -g1,15893:8527648,38228872 -g1,15893:10424523,38228872 -g1,15893:10740669,38228872 -g1,15893:12321398,38228872 -g1,15893:12637544,38228872 -h1,15893:13585981,38228872:0,0,0 -k1,15893:32583029,38228872:18997048 -g1,15893:32583029,38228872 -) -(1,15893:6630773,38895050:25952256,388497,82312 -h1,15893:6630773,38895050:0,0,0 -g1,15893:8527648,38895050 -g1,15893:10424523,38895050 -g1,15893:10740669,38895050 -g1,15893:11056815,38895050 -g1,15893:12321398,38895050 -g1,15893:12637544,38895050 -g1,15893:13269836,38895050 -h1,15893:13585982,38895050:0,0,0 -k1,15893:32583030,38895050:18997048 -g1,15893:32583030,38895050 -) -] -) -g1,15894:32583029,38977362 -g1,15894:6630773,38977362 -g1,15894:6630773,38977362 -g1,15894:32583029,38977362 -g1,15894:32583029,38977362 -) -h1,15894:6630773,39173970:0,0,0 -(1,15899:6630773,40276341:25952256,513147,134348 -h1,15897:6630773,40276341:983040,0,0 -k1,15897:10761659,40276341:184963 -k1,15897:12734443,40276341:184962 -k1,15897:16224387,40276341:184963 -k1,15897:17400909,40276341:184962 -k1,15897:18998173,40276341:184963 -k1,15897:19869298,40276341:184963 -k1,15897:21376121,40276341:184962 -k1,15897:22220376,40276341:184963 -k1,15897:23424424,40276341:184963 -k1,15897:25517139,40276341:184962 -k1,15897:27082290,40276341:184963 -k1,15897:28258812,40276341:184962 -k1,15897:30884991,40276341:184963 -k1,15897:32583029,40276341:0 -) -(1,15899:6630773,40942519:25952256,505283,134348 -k1,15897:10355422,40942519:247964 -k1,15897:11254815,40942519:247965 -k1,15897:14122908,40942519:247964 -k1,15897:16053837,40942519:247964 -k1,15897:18138120,40942519:247964 -k1,15897:19582772,40942519:247965 -k1,15897:23048554,40942519:247964 -k1,15897:25615837,40942519:247964 -k1,15897:27055246,40942519:247964 -k1,15897:29600903,40942519:247965 -k1,15897:31966991,40942519:247964 -k1,15897:32583029,40942519:0 -) -(1,15899:6630773,41608697:25952256,513147,134348 -g1,15897:9804681,41608697 -g1,15897:12200021,41608697 -g1,15897:13390810,41608697 -g1,15897:16073854,41608697 -g1,15897:16924511,41608697 -g1,15897:18148723,41608697 -g1,15897:20045990,41608697 -g1,15897:21634582,41608697 -g1,15897:24040408,41608697 -g1,15897:25231197,41608697 -g1,15897:27954217,41608697 -k1,15899:32583029,41608697:4628812 -g1,15899:32583029,41608697 -) -v1,15899:6630773,42711069:0,393216,0 -(1,15903:6630773,43032457:25952256,714604,196608 -g1,15903:6630773,43032457 -g1,15903:6630773,43032457 -g1,15903:6434165,43032457 -(1,15903:6434165,43032457:0,714604,196608 -r1,15903:32779637,43032457:26345472,911212,196608 -k1,15903:6434165,43032457:-26345472 -) -(1,15903:6434165,43032457:26345472,714604,196608 -[1,15903:6630773,43032457:25952256,517996,0 -(1,15901:6630773,42924979:25952256,410518,107478 -(1,15900:6630773,42924979:0,0,0 -g1,15900:6630773,42924979 -g1,15900:6630773,42924979 -g1,15900:6303093,42924979 -(1,15900:6303093,42924979:0,0,0 -) -g1,15900:6630773,42924979 -) -g1,15901:11056813,42924979 -g1,15901:12005251,42924979 -k1,15901:12005251,42924979:0 -h1,15901:24651078,42924979:0,0,0 -k1,15901:32583029,42924979:7931951 -g1,15901:32583029,42924979 -) -] -) -g1,15903:32583029,43032457 -g1,15903:6630773,43032457 -g1,15903:6630773,43032457 -g1,15903:32583029,43032457 -g1,15903:32583029,43032457 -) -h1,15903:6630773,43229065:0,0,0 -(1,15908:6630773,44331436:25952256,513147,134348 -h1,15906:6630773,44331436:983040,0,0 -k1,15906:9694725,44331436:289158 -(1,15906:9694725,44331436:0,452978,115847 -r1,15906:12514974,44331436:2820249,568825,115847 -k1,15906:9694725,44331436:-2820249 -) -(1,15906:9694725,44331436:2820249,452978,115847 -k1,15906:9694725,44331436:3277 -h1,15906:12511697,44331436:0,411205,112570 -) -k1,15906:12804132,44331436:289158 -k1,15906:13961642,44331436:289158 -k1,15906:15355081,44331436:289157 -k1,15906:17294436,44331436:289158 -k1,15906:19680091,44331436:289158 -k1,15906:20994232,44331436:289158 -k1,15906:22567896,44331436:289158 -k1,15906:23876139,44331436:289158 -k1,15906:26009479,44331436:289157 -k1,15906:26957929,44331436:289158 -k1,15906:28266172,44331436:289158 -k1,15906:32583029,44331436:0 -) -(1,15908:6630773,44997614:25952256,513147,134348 -g1,15906:9180123,44997614 -g1,15906:11273342,44997614 -g1,15906:13264981,44997614 -g1,15906:15835958,44997614 -g1,15906:18354506,44997614 -g1,15906:20845529,44997614 -k1,15908:32583029,44997614:11737500 -g1,15908:32583029,44997614 -) -v1,15908:6630773,46099985:0,393216,0 -] -(1,15929:32583029,45706769:0,0,0 -g1,15929:32583029,45706769 -) -) -] -(1,15929:6630773,47279633:25952256,0,0 -h1,15929:6630773,47279633:25952256,0,0 -) -] -h1,15929:4262630,4025873:0,0,0 -] -!24715 -}310 -Input:2402:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2403:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2404:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2405:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2406:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2407:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2408:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2409:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 -{311 -[1,15998:4262630,47279633:28320399,43253760,0 -(1,15998:4262630,4025873:0,0,0 -[1,15998:-473657,4025873:25952256,0,0 -(1,15998:-473657,-710414:25952256,0,0 -h1,15998:-473657,-710414:0,0,0 -(1,15998:-473657,-710414:0,0,0 -(1,15998:-473657,-710414:0,0,0 -g1,15998:-473657,-710414 -(1,15998:-473657,-710414:65781,0,65781 -g1,15998:-407876,-710414 -[1,15998:-407876,-644633:0,0,0 -] +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) -k1,15998:-473657,-710414:-65781 +] ) ) -k1,15998:25478599,-710414:25952256 -g1,15998:25478599,-710414 ) ] +[1,15930:3078558,4812305:0,0,0 +(1,15930:3078558,49800853:0,16384,2228224 +g1,15930:29030814,49800853 +g1,15930:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,15930:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,15930:37855564,49800853:1179648,16384,0 +) +) +k1,15930:3078556,49800853:-34777008 +) +] +g1,15930:6630773,4812305 +g1,15930:6630773,4812305 +g1,15930:9744388,4812305 +g1,15930:11175694,4812305 +k1,15930:31387652,4812305:20211958 +) +) +] +[1,15930:6630773,45706769:25952256,40108032,0 +(1,15930:6630773,45706769:25952256,40108032,0 +(1,15930:6630773,45706769:0,0,0 +g1,15930:6630773,45706769 +) +[1,15930:6630773,45706769:25952256,40108032,0 +(1,15861:6630773,6254097:25952256,555811,12975 +(1,15861:6630773,6254097:2450326,534184,12975 +g1,15861:6630773,6254097 +g1,15861:9081099,6254097 +) +g1,15861:10950383,6254097 +g1,15861:11672721,6254097 +g1,15861:13239949,6254097 +k1,15861:32583028,6254097:17318804 +g1,15861:32583028,6254097 +) +(1,15864:6630773,7488801:25952256,513147,134348 +k1,15863:8212660,7488801:178106 +k1,15863:9704109,7488801:178107 +k1,15863:13244212,7488801:178106 +k1,15863:14811682,7488801:178107 +k1,15863:15605826,7488801:178106 +k1,15863:18497124,7488801:178107 +k1,15863:19779512,7488801:178106 +k1,15863:20705385,7488801:178107 +k1,15863:23252618,7488801:178106 +k1,15863:24698191,7488801:178107 +k1,15863:26048736,7488801:178106 +k1,15863:28086755,7488801:178107 +k1,15863:30661513,7488801:178106 +k1,15863:32583029,7488801:0 +) +(1,15864:6630773,8330289:25952256,513147,7863 +k1,15863:8217936,8330289:193212 +k1,15863:12002521,8330289:193212 +k1,15863:13929816,8330289:193212 +k1,15863:15314473,8330289:193212 +k1,15863:17251598,8330289:193212 +k1,15863:18838760,8330289:193211 +k1,15863:22052526,8330289:193212 +k1,15863:24153491,8330289:193212 +k1,15863:28067837,8330289:193212 +k1,15863:29995132,8330289:193212 +k1,15863:31692395,8330289:193212 +k1,15864:32583029,8330289:0 +) +(1,15864:6630773,9171777:25952256,513147,134348 +k1,15863:9356814,9171777:295966 +k1,15863:12430195,9171777:295965 +k1,15863:13342199,9171777:295966 +k1,15863:14657250,9171777:295966 +k1,15863:16511006,9171777:295965 +k1,15863:18274978,9171777:295966 +k1,15863:19238100,9171777:295966 +k1,15863:22574839,9171777:295868 +k1,15863:24062250,9171777:295966 +k1,15863:26556197,9171777:295869 +k1,15863:28550200,9171777:295965 +k1,15863:30235529,9171777:295966 +k1,15863:32583029,9171777:0 +) +(1,15864:6630773,10013265:25952256,513147,134348 +k1,15863:9509234,10013265:259642 +k1,15863:10976048,10013265:259641 +k1,15863:12589664,10013265:259642 +k1,15863:15275448,10013265:259641 +k1,15863:17409420,10013265:259642 +k1,15863:20179745,10013265:259641 +k1,15863:21430947,10013265:259642 +k1,15863:24995569,10013265:259641 +k1,15863:27674145,10013265:259642 +k1,15863:28593078,10013265:259641 +k1,15863:31753999,10013265:259642 +k1,15864:32583029,10013265:0 +) +(1,15864:6630773,10854753:25952256,513147,134348 +k1,15863:10080529,10854753:258808 +k1,15863:12074729,10854753:258807 +k1,15863:14102354,10854753:258808 +k1,15863:17666142,10854753:258807 +k1,15863:19367397,10854753:258808 +k1,15863:21324242,10854753:258807 +k1,15863:24603604,10854753:258808 +k1,15863:26596494,10854753:258807 +k1,15863:27846862,10854753:258808 +k1,15863:29792566,10854753:258807 +k1,15863:31248061,10854753:258808 +k1,15863:32583029,10854753:0 +) +(1,15864:6630773,11696241:25952256,513147,134348 +k1,15863:8115342,11696241:246594 +k1,15863:9021228,11696241:246594 +k1,15863:13922844,11696241:246594 +k1,15863:15188523,11696241:246594 +k1,15863:18951779,11696241:246594 +k1,15863:19729870,11696241:246594 +k1,15863:21370415,11696241:246594 +k1,15863:24782398,11696241:246594 +k1,15863:27991875,11696241:246594 +k1,15863:28854507,11696241:246594 +k1,15863:30304342,11696241:246594 +k1,15863:32583029,11696241:0 +) +(1,15864:6630773,12537729:25952256,513147,134348 +k1,15863:7742030,12537729:242905 +k1,15863:11117555,12537729:242904 +k1,15863:12379545,12537729:242905 +k1,15863:13714934,12537729:242904 +k1,15863:14617131,12537729:242905 +k1,15863:17885832,12537729:242904 +k1,15863:18890265,12537729:242905 +k1,15863:21560623,12537729:242904 +k1,15863:22159388,12537729:242905 +k1,15863:23385332,12537729:242904 +k1,15863:25366252,12537729:242905 +k1,15863:26295318,12537729:242904 +k1,15863:27308926,12537729:242905 +k1,15863:30797828,12537729:242904 +k1,15863:32583029,12537729:0 +) +(1,15864:6630773,13379217:25952256,513147,134348 +g1,15863:8021447,13379217 +g1,15863:9798128,13379217 +g1,15863:10980397,13379217 +g1,15863:14791970,13379217 +g1,15863:15982759,13379217 +g1,15863:17467804,13379217 +g1,15863:20483115,13379217 +g1,15863:21914421,13379217 +g1,15863:24392337,13379217 +h1,15863:25362925,13379217:0,0,0 +g1,15863:25562154,13379217 +g1,15863:26570753,13379217 +g1,15863:28268135,13379217 +h1,15863:29463512,13379217:0,0,0 +k1,15864:32583029,13379217:2738753 +g1,15864:32583029,13379217 +) +(1,15866:6630773,14220705:25952256,513147,126483 +h1,15865:6630773,14220705:983040,0,0 +k1,15865:8428466,14220705:186818 +k1,15865:9634370,14220705:186819 +k1,15865:11127321,14220705:186818 +k1,15865:13975557,14220705:186819 +k1,15865:15030727,14220705:186818 +k1,15865:16350008,14220705:186819 +k1,15865:17949127,14220705:186818 +k1,15865:18491805,14220705:186818 +k1,15865:19661664,14220705:186819 +k1,15865:21242433,14220705:186818 +k1,15865:23163335,14220705:186819 +k1,15865:25193681,14220705:186818 +k1,15865:28401054,14220705:186819 +k1,15865:29349400,14220705:186818 +k1,15865:30483870,14220705:186819 +k1,15865:32051532,14220705:186818 +k1,15865:32583029,14220705:0 +) +(1,15866:6630773,15062193:25952256,513147,126483 +k1,15865:8327505,15062193:148116 +k1,15865:9007117,15062193:148115 +k1,15865:11023009,15062193:148116 +k1,15865:19055106,15062193:148116 +k1,15865:20886136,15062193:148065 +k1,15865:23214634,15062193:148115 +k1,15865:25248221,15062193:148116 +k1,15865:26500619,15062193:148116 +k1,15865:27396501,15062193:148116 +k1,15865:28956917,15062193:148115 +k1,15865:30296478,15062193:148116 +k1,15865:32583029,15062193:0 +) +(1,15866:6630773,15903681:25952256,505283,126483 +g1,15865:8223953,15903681 +(1,15865:8223953,15903681:0,452978,115847 +r1,15865:11747625,15903681:3523672,568825,115847 +k1,15865:8223953,15903681:-3523672 +) +(1,15865:8223953,15903681:3523672,452978,115847 +k1,15865:8223953,15903681:3277 +h1,15865:11744348,15903681:0,411205,112570 +) +g1,15865:11946854,15903681 +g1,15865:13337528,15903681 +(1,15865:13337528,15903681:0,452978,115847 +r1,15865:17212912,15903681:3875384,568825,115847 +k1,15865:13337528,15903681:-3875384 +) +(1,15865:13337528,15903681:3875384,452978,115847 +k1,15865:13337528,15903681:3277 +h1,15865:17209635,15903681:0,411205,112570 +) +g1,15865:17585811,15903681 +k1,15866:32583029,15903681:11027047 +g1,15866:32583029,15903681 +) +(1,15868:6630773,16745169:25952256,513147,126483 +h1,15867:6630773,16745169:983040,0,0 +g1,15867:10498052,16745169 +g1,15867:11680321,16745169 +(1,15867:11680321,16745169:0,452978,122846 +r1,15867:20127958,16745169:8447637,575824,122846 +k1,15867:11680321,16745169:-8447637 +) +(1,15867:11680321,16745169:8447637,452978,122846 +k1,15867:11680321,16745169:3277 +h1,15867:20124681,16745169:0,411205,112570 +) +g1,15867:20327187,16745169 +k1,15868:32583029,16745169:9380122 +g1,15868:32583029,16745169 +) +v1,15870:6630773,17797282:0,393216,0 +(1,15876:6630773,19419568:25952256,2015502,196608 +g1,15876:6630773,19419568 +g1,15876:6630773,19419568 +g1,15876:6434165,19419568 +(1,15876:6434165,19419568:0,2015502,196608 +r1,15876:32779637,19419568:26345472,2212110,196608 +k1,15876:6434165,19419568:-26345472 +) +(1,15876:6434165,19419568:26345472,2015502,196608 +[1,15876:6630773,19419568:25952256,1818894,0 +(1,15875:6630773,18004900:25952256,404226,82312 +(1,15871:6630773,18004900:0,0,0 +g1,15871:6630773,18004900 +g1,15871:6630773,18004900 +g1,15871:6303093,18004900 +(1,15871:6303093,18004900:0,0,0 +) +g1,15871:6630773,18004900 +) +k1,15875:6630773,18004900:0 +k1,15875:6630773,18004900:0 +h1,15875:12637540,18004900:0,0,0 +k1,15875:32583028,18004900:19945488 +g1,15875:32583028,18004900 +) +(1,15875:6630773,18671078:25952256,388497,82312 +h1,15875:6630773,18671078:0,0,0 +k1,15875:6630773,18671078:0 +h1,15875:11689104,18671078:0,0,0 +k1,15875:32583028,18671078:20893924 +g1,15875:32583028,18671078 +) +(1,15875:6630773,19337256:25952256,388497,82312 +h1,15875:6630773,19337256:0,0,0 +g1,15875:11372958,19337256 +h1,15875:11689104,19337256:0,0,0 +k1,15875:32583028,19337256:20893924 +g1,15875:32583028,19337256 +) +] +) +g1,15876:32583029,19419568 +g1,15876:6630773,19419568 +g1,15876:6630773,19419568 +g1,15876:32583029,19419568 +g1,15876:32583029,19419568 +) +h1,15876:6630773,19616176:0,0,0 +v1,15880:6630773,21054223:0,393216,0 +(1,15884:6630773,21375611:25952256,714604,196608 +g1,15884:6630773,21375611 +g1,15884:6630773,21375611 +g1,15884:6434165,21375611 +(1,15884:6434165,21375611:0,714604,196608 +r1,15884:32779637,21375611:26345472,911212,196608 +k1,15884:6434165,21375611:-26345472 +) +(1,15884:6434165,21375611:26345472,714604,196608 +[1,15884:6630773,21375611:25952256,517996,0 +(1,15882:6630773,21268133:25952256,410518,107478 +(1,15881:6630773,21268133:0,0,0 +g1,15881:6630773,21268133 +g1,15881:6630773,21268133 +g1,15881:6303093,21268133 +(1,15881:6303093,21268133:0,0,0 +) +g1,15881:6630773,21268133 +) +g1,15882:11056813,21268133 +g1,15882:12005251,21268133 +k1,15882:12005251,21268133:0 +h1,15882:25915660,21268133:0,0,0 +k1,15882:32583029,21268133:6667369 +g1,15882:32583029,21268133 +) +] +) +g1,15884:32583029,21375611 +g1,15884:6630773,21375611 +g1,15884:6630773,21375611 +g1,15884:32583029,21375611 +g1,15884:32583029,21375611 +) +h1,15884:6630773,21572219:0,0,0 +v1,15888:6630773,23010267:0,393216,0 +(1,15909:6630773,29470772:25952256,6853721,196608 +g1,15909:6630773,29470772 +g1,15909:6630773,29470772 +g1,15909:6434165,29470772 +(1,15909:6434165,29470772:0,6853721,196608 +r1,15909:32779637,29470772:26345472,7050329,196608 +k1,15909:6434165,29470772:-26345472 +) +(1,15909:6434165,29470772:26345472,6853721,196608 +[1,15909:6630773,29470772:25952256,6657113,0 +(1,15890:6630773,23224177:25952256,410518,101187 +(1,15889:6630773,23224177:0,0,0 +g1,15889:6630773,23224177 +g1,15889:6630773,23224177 +g1,15889:6303093,23224177 +(1,15889:6303093,23224177:0,0,0 +) +g1,15889:6630773,23224177 +) +k1,15890:6630773,23224177:0 +g1,15890:13585979,23224177 +h1,15890:15482853,23224177:0,0,0 +k1,15890:32583029,23224177:17100176 +g1,15890:32583029,23224177 +) +(1,15895:6630773,23955891:25952256,404226,9436 +(1,15892:6630773,23955891:0,0,0 +g1,15892:6630773,23955891 +g1,15892:6630773,23955891 +g1,15892:6303093,23955891 +(1,15892:6303093,23955891:0,0,0 +) +g1,15892:6630773,23955891 +) +g1,15895:7579210,23955891 +g1,15895:7895356,23955891 +g1,15895:8211502,23955891 +g1,15895:8527648,23955891 +g1,15895:8843794,23955891 +g1,15895:9159940,23955891 +g1,15895:10740669,23955891 +g1,15895:11056815,23955891 +g1,15895:11372961,23955891 +g1,15895:11689107,23955891 +g1,15895:12005253,23955891 +g1,15895:12321399,23955891 +g1,15895:13902128,23955891 +g1,15895:14218274,23955891 +g1,15895:14534420,23955891 +g1,15895:14850566,23955891 +g1,15895:15166712,23955891 +g1,15895:15482858,23955891 +g1,15895:17063587,23955891 +g1,15895:17379733,23955891 +g1,15895:17695879,23955891 +g1,15895:18012025,23955891 +g1,15895:18328171,23955891 +g1,15895:18644317,23955891 +h1,15895:19908900,23955891:0,0,0 +k1,15895:32583029,23955891:12674129 +g1,15895:32583029,23955891 +) +(1,15895:6630773,24622069:25952256,410518,107478 +h1,15895:6630773,24622069:0,0,0 +g1,15895:7579210,24622069 +g1,15895:10740667,24622069 +g1,15895:13902124,24622069 +g1,15895:17063581,24622069 +g1,15895:17379727,24622069 +h1,15895:19908892,24622069:0,0,0 +k1,15895:32583029,24622069:12674137 +g1,15895:32583029,24622069 +) +(1,15897:6630773,25943607:25952256,410518,76021 +(1,15896:6630773,25943607:0,0,0 +g1,15896:6630773,25943607 +g1,15896:6630773,25943607 +g1,15896:6303093,25943607 +(1,15896:6303093,25943607:0,0,0 +) +g1,15896:6630773,25943607 +) +h1,15897:13902123,25943607:0,0,0 +k1,15897:32583029,25943607:18680906 +g1,15897:32583029,25943607 +) +(1,15902:6630773,26675321:25952256,404226,76021 +(1,15899:6630773,26675321:0,0,0 +g1,15899:6630773,26675321 +g1,15899:6630773,26675321 +g1,15899:6303093,26675321 +(1,15899:6303093,26675321:0,0,0 +) +g1,15899:6630773,26675321 +) +g1,15902:7579210,26675321 +g1,15902:8843793,26675321 +g1,15902:10108376,26675321 +g1,15902:10740668,26675321 +h1,15902:11056814,26675321:0,0,0 +k1,15902:32583030,26675321:21526216 +g1,15902:32583030,26675321 +) +(1,15902:6630773,27341499:25952256,404226,7863 +h1,15902:6630773,27341499:0,0,0 +g1,15902:7579210,27341499 +g1,15902:10108376,27341499 +g1,15902:11372959,27341499 +g1,15902:12005251,27341499 +h1,15902:12321397,27341499:0,0,0 +k1,15902:32583029,27341499:20261632 +g1,15902:32583029,27341499 +) +(1,15904:6630773,28663037:25952256,410518,76021 +(1,15903:6630773,28663037:0,0,0 +g1,15903:6630773,28663037 +g1,15903:6630773,28663037 +g1,15903:6303093,28663037 +(1,15903:6303093,28663037:0,0,0 +) +g1,15903:6630773,28663037 +) +k1,15904:6630773,28663037:0 +h1,15904:16431289,28663037:0,0,0 +k1,15904:32583029,28663037:16151740 +g1,15904:32583029,28663037 +) +(1,15908:6630773,29394751:25952256,404226,76021 +(1,15906:6630773,29394751:0,0,0 +g1,15906:6630773,29394751 +g1,15906:6630773,29394751 +g1,15906:6303093,29394751 +(1,15906:6303093,29394751:0,0,0 +) +g1,15906:6630773,29394751 +) +g1,15908:7579210,29394751 +g1,15908:8843793,29394751 +g1,15908:10740667,29394751 +g1,15908:11689104,29394751 +h1,15908:12321395,29394751:0,0,0 +k1,15908:32583029,29394751:20261634 +g1,15908:32583029,29394751 +) +] +) +g1,15909:32583029,29470772 +g1,15909:6630773,29470772 +g1,15909:6630773,29470772 +g1,15909:32583029,29470772 +g1,15909:32583029,29470772 +) +h1,15909:6630773,29667380:0,0,0 +v1,15913:6630773,31280738:0,393216,0 +(1,15914:6630773,36083369:25952256,5195847,616038 +g1,15914:6630773,36083369 +(1,15914:6630773,36083369:25952256,5195847,616038 +(1,15914:6630773,36699407:25952256,5811885,0 +[1,15914:6630773,36699407:25952256,5811885,0 +(1,15914:6630773,36673193:25952256,5759457,0 +r1,15914:6656987,36673193:26214,5759457,0 +[1,15914:6656987,36673193:25899828,5759457,0 +(1,15914:6656987,36083369:25899828,4579809,0 +[1,15914:7246811,36083369:24720180,4579809,0 +(1,15914:7246811,32590934:24720180,1087374,122846 +k1,15913:8606485,32590934:149971 +k1,15913:10325388,32590934:149971 +k1,15913:11494444,32590934:149971 +k1,15913:12627455,32590934:149971 +(1,15913:12627455,32590934:0,452978,122846 +r1,15914:21075092,32590934:8447637,575824,122846 +k1,15913:12627455,32590934:-8447637 +) +(1,15913:12627455,32590934:8447637,452978,122846 +k1,15913:12627455,32590934:3277 +h1,15913:21071815,32590934:0,411205,112570 +) +k1,15913:21225064,32590934:149972 +k1,15913:22768986,32590934:149971 +k1,15913:25614453,32590934:149971 +(1,15913:25614453,32590934:0,452978,115847 +r1,15914:29489837,32590934:3875384,568825,115847 +k1,15913:25614453,32590934:-3875384 +) +(1,15913:25614453,32590934:3875384,452978,115847 +k1,15913:25614453,32590934:3277 +h1,15913:29486560,32590934:0,411205,112570 +) +k1,15913:29639808,32590934:149971 +k1,15913:31966991,32590934:0 +) +(1,15914:7246811,33432422:24720180,513147,134348 +k1,15913:8164563,33432422:250596 +(1,15913:8164563,33432422:0,452978,115847 +r1,15914:11688235,33432422:3523672,568825,115847 +k1,15913:8164563,33432422:-3523672 +) +(1,15913:8164563,33432422:3523672,452978,115847 +k1,15913:8164563,33432422:3277 +h1,15913:11684958,33432422:0,411205,112570 +) +k1,15913:12112501,33432422:250596 +k1,15913:15325980,33432422:250596 +k1,15913:16779817,33432422:250596 +k1,15913:18367347,33432422:250596 +k1,15913:20004685,33432422:250596 +k1,15913:21401506,33432422:250596 +k1,15913:22007961,33432422:250595 +k1,15913:24069972,33432422:250596 +k1,15913:24979860,33432422:250596 +k1,15913:26829534,33432422:250596 +k1,15913:28099215,33432422:250596 +k1,15913:30038018,33432422:250596 +k1,15913:30947906,33432422:250596 +k1,15913:31966991,33432422:0 +) +(1,15914:7246811,34273910:24720180,513147,134348 +k1,15913:9949110,34273910:141807 +k1,15913:10622414,34273910:141807 +k1,15913:11711872,34273910:141807 +k1,15913:13024152,34273910:141807 +k1,15913:13817387,34273910:141807 +k1,15913:14937647,34273910:141807 +k1,15913:17571788,34273910:141807 +k1,15913:19107546,34273910:141807 +k1,15913:19664139,34273910:141750 +k1,15913:22565667,34273910:141807 +k1,15913:23323512,34273910:141807 +k1,15913:24832400,34273910:141807 +k1,15913:25633499,34273910:141807 +k1,15913:27268872,34273910:141807 +k1,15913:27766539,34273910:141807 +k1,15913:30586147,34273910:141807 +k1,15913:31966991,34273910:0 +) +(1,15914:7246811,35115398:24720180,505283,134348 +k1,15913:8557829,35115398:178556 +k1,15913:10124438,35115398:178556 +k1,15913:11473466,35115398:178555 +k1,15913:14743355,35115398:178556 +k1,15913:17123921,35115398:178556 +k1,15913:19239721,35115398:178556 +k1,15913:21116315,35115398:178556 +k1,15913:22675059,35115398:178556 +k1,15913:25227983,35115398:178555 +k1,15913:29371467,35115398:178556 +k1,15913:31435494,35115398:178556 +k1,15913:31966991,35115398:0 +) +(1,15914:7246811,35956886:24720180,513147,126483 +g1,15913:9070678,35956886 +g1,15913:12047323,35956886 +g1,15913:13944590,35956886 +g1,15913:15457161,35956886 +g1,15913:16647950,35956886 +k1,15914:31966991,35956886:12987925 +g1,15914:31966991,35956886 +) +] +) +] +r1,15914:32583029,36673193:26214,5759457,0 +) +] +) +) +g1,15914:32583029,36083369 +) +h1,15914:6630773,36699407:0,0,0 +(1,15917:6630773,37926829:25952256,513147,126483 +h1,15916:6630773,37926829:983040,0,0 +k1,15916:10754902,37926829:456079 +k1,15916:12194021,37926829:456079 +(1,15916:12194021,37926829:0,452978,122846 +r1,15916:19234812,37926829:7040791,575824,122846 +k1,15916:12194021,37926829:-7040791 +) +(1,15916:12194021,37926829:7040791,452978,122846 +k1,15916:12194021,37926829:3277 +h1,15916:19231535,37926829:0,411205,112570 +) +k1,15916:19690890,37926829:456078 +k1,15916:22849018,37926829:456079 +k1,15916:31189078,37926829:456079 +k1,15916:32583029,37926829:0 +) +(1,15917:6630773,38768317:25952256,505283,134348 +k1,15916:8889331,38768317:293133 +k1,15916:10923756,38768317:293133 +k1,15916:13004711,38768317:293133 +k1,15916:13949272,38768317:293133 +k1,15916:15793642,38768317:293133 +k1,15916:17105860,38768317:293133 +k1,15916:20285854,38768317:293133 +k1,15916:21230414,38768317:293132 +k1,15916:23239280,38768317:293133 +k1,15916:23990510,38768317:293133 +k1,15916:26154041,38768317:293133 +k1,15916:27098602,38768317:293133 +k1,15916:28804036,38768317:293133 +k1,15916:29858697,38768317:293133 +k1,15916:32583029,38768317:0 +) +(1,15917:6630773,39609805:25952256,513147,134348 +k1,15916:8699635,39609805:194532 +k1,15916:11213487,39609805:194533 +k1,15916:13142102,39609805:194532 +k1,15916:15708383,39609805:194533 +k1,15916:18222234,39609805:194532 +k1,15916:19608212,39609805:194533 +k1,15916:22100436,39609805:194532 +k1,15916:24036261,39609805:194533 +k1,15916:26348917,39609805:194532 +k1,15916:27827956,39609805:194533 +k1,15916:29014048,39609805:194532 +k1,15916:31966991,39609805:194533 +k1,15916:32583029,39609805:0 +) +(1,15917:6630773,40451293:25952256,513147,134348 +g1,15916:8695812,40451293 +g1,15916:10905686,40451293 +g1,15916:12802953,40451293 +g1,15916:14021267,40451293 +g1,15916:15203536,40451293 +g1,15916:15934262,40451293 +k1,15917:32583029,40451293:15062796 +g1,15917:32583029,40451293 +) +v1,15919:6630773,41503406:0,393216,0 +(1,15925:6630773,43125692:25952256,2015502,196608 +g1,15925:6630773,43125692 +g1,15925:6630773,43125692 +g1,15925:6434165,43125692 +(1,15925:6434165,43125692:0,2015502,196608 +r1,15925:32779637,43125692:26345472,2212110,196608 +k1,15925:6434165,43125692:-26345472 +) +(1,15925:6434165,43125692:26345472,2015502,196608 +[1,15925:6630773,43125692:25952256,1818894,0 +(1,15924:6630773,41711024:25952256,404226,82312 +(1,15920:6630773,41711024:0,0,0 +g1,15920:6630773,41711024 +g1,15920:6630773,41711024 +g1,15920:6303093,41711024 +(1,15920:6303093,41711024:0,0,0 +) +g1,15920:6630773,41711024 +) +k1,15924:6630773,41711024:0 +g1,15924:8527648,41711024 +g1,15924:10424523,41711024 +g1,15924:12321398,41711024 +h1,15924:13585981,41711024:0,0,0 +k1,15924:32583029,41711024:18997048 +g1,15924:32583029,41711024 +) +(1,15924:6630773,42377202:25952256,388497,82312 +h1,15924:6630773,42377202:0,0,0 +g1,15924:6946919,42377202 +g1,15924:8527648,42377202 +g1,15924:10424523,42377202 +g1,15924:10740669,42377202 +g1,15924:12321398,42377202 +g1,15924:12637544,42377202 +h1,15924:13585981,42377202:0,0,0 +k1,15924:32583029,42377202:18997048 +g1,15924:32583029,42377202 +) +(1,15924:6630773,43043380:25952256,388497,82312 +h1,15924:6630773,43043380:0,0,0 +g1,15924:8527648,43043380 +g1,15924:10424523,43043380 +g1,15924:10740669,43043380 +g1,15924:11056815,43043380 +g1,15924:12321398,43043380 +g1,15924:12637544,43043380 +g1,15924:13269836,43043380 +h1,15924:13585982,43043380:0,0,0 +k1,15924:32583030,43043380:18997048 +g1,15924:32583030,43043380 +) +] +) +g1,15925:32583029,43125692 +g1,15925:6630773,43125692 +g1,15925:6630773,43125692 +g1,15925:32583029,43125692 +g1,15925:32583029,43125692 +) +h1,15925:6630773,43322300:0,0,0 +(1,15930:6630773,44374413:25952256,513147,134348 +h1,15928:6630773,44374413:983040,0,0 +k1,15928:10761659,44374413:184963 +k1,15928:12734443,44374413:184962 +k1,15928:16224387,44374413:184963 +k1,15928:17400909,44374413:184962 +k1,15928:18998173,44374413:184963 +k1,15928:19869298,44374413:184963 +k1,15928:21376121,44374413:184962 +k1,15928:22220376,44374413:184963 +k1,15928:23424424,44374413:184963 +k1,15928:25517139,44374413:184962 +k1,15928:27082290,44374413:184963 +k1,15928:28258812,44374413:184962 +k1,15928:30884991,44374413:184963 +k1,15928:32583029,44374413:0 +) +(1,15930:6630773,45040591:25952256,505283,134348 +k1,15928:10355422,45040591:247964 +k1,15928:11254815,45040591:247965 +k1,15928:14122908,45040591:247964 +k1,15928:16053837,45040591:247964 +k1,15928:18138120,45040591:247964 +k1,15928:19582772,45040591:247965 +k1,15928:23048554,45040591:247964 +k1,15928:25615837,45040591:247964 +k1,15928:27055246,45040591:247964 +k1,15928:29600903,45040591:247965 +k1,15928:31966991,45040591:247964 +k1,15928:32583029,45040591:0 +) +(1,15930:6630773,45706769:25952256,513147,134348 +g1,15928:9804681,45706769 +g1,15928:12200021,45706769 +g1,15928:13390810,45706769 +g1,15928:16073854,45706769 +g1,15928:16924511,45706769 +g1,15928:18148723,45706769 +g1,15928:20045990,45706769 +g1,15928:21634582,45706769 +g1,15928:24040408,45706769 +g1,15928:25231197,45706769 +g1,15928:27954217,45706769 +k1,15930:32583029,45706769:4628812 +g1,15930:32583029,45706769 +) +] +(1,15930:32583029,45706769:0,0,0 +g1,15930:32583029,45706769 +) +) +] +(1,15930:6630773,47279633:25952256,0,0 +h1,15930:6630773,47279633:25952256,0,0 +) +] +h1,15930:4262630,4025873:0,0,0 +] +!24863 +}310 +Input:2398:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2399:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2400:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2401:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2402:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2403:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2404:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2405:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2406:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!840 +{311 +[1,16023:4262630,47279633:28320399,43253760,0 +(1,16023:4262630,4025873:0,0,0 +[1,16023:-473657,4025873:25952256,0,0 +(1,16023:-473657,-710414:25952256,0,0 +h1,16023:-473657,-710414:0,0,0 +(1,16023:-473657,-710414:0,0,0 +(1,16023:-473657,-710414:0,0,0 +g1,16023:-473657,-710414 +(1,16023:-473657,-710414:65781,0,65781 +g1,16023:-407876,-710414 +[1,16023:-407876,-644633:0,0,0 +] ) -[1,15998:6630773,47279633:25952256,43253760,0 -[1,15998:6630773,4812305:25952256,786432,0 -(1,15998:6630773,4812305:25952256,505283,126483 -(1,15998:6630773,4812305:25952256,505283,126483 -g1,15998:3078558,4812305 -[1,15998:3078558,4812305:0,0,0 -(1,15998:3078558,2439708:0,1703936,0 -k1,15998:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,15998:2537886,2439708:1179648,16384,0 +k1,16023:-473657,-710414:-65781 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,15998:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,16023:25478599,-710414:25952256 +g1,16023:25478599,-710414 ) ] ) +[1,16023:6630773,47279633:25952256,43253760,0 +[1,16023:6630773,4812305:25952256,786432,0 +(1,16023:6630773,4812305:25952256,505283,126483 +(1,16023:6630773,4812305:25952256,505283,126483 +g1,16023:3078558,4812305 +[1,16023:3078558,4812305:0,0,0 +(1,16023:3078558,2439708:0,1703936,0 +k1,16023:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16023:2537886,2439708:1179648,16384,0 ) +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16023:3078558,1915420:16384,1179648,0 ) -] -[1,15998:3078558,4812305:0,0,0 -(1,15998:3078558,2439708:0,1703936,0 -g1,15998:29030814,2439708 -g1,15998:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,15998:36151628,1915420:16384,1179648,0 -) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,15998:37855564,2439708:1179648,16384,0 ) ) -k1,15998:3078556,2439708:-34777008 -) ] -[1,15998:3078558,4812305:0,0,0 -(1,15998:3078558,49800853:0,16384,2228224 -k1,15998:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,15998:2537886,49800853:1179648,16384,0 -) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,15998:3078558,51504789:16384,1179648,0 +[1,16023:3078558,4812305:0,0,0 +(1,16023:3078558,2439708:0,1703936,0 +g1,16023:29030814,2439708 +g1,16023:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16023:36151628,1915420:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16023:37855564,2439708:1179648,16384,0 ) ) -] -[1,15998:3078558,4812305:0,0,0 -(1,15998:3078558,49800853:0,16384,2228224 -g1,15998:29030814,49800853 -g1,15998:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,15998:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,16023:3078556,2439708:-34777008 ) ] +[1,16023:3078558,4812305:0,0,0 +(1,16023:3078558,49800853:0,16384,2228224 +k1,16023:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16023:2537886,49800853:1179648,16384,0 ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,15998:37855564,49800853:1179648,16384,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16023:3078558,51504789:16384,1179648,0 ) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) -k1,15998:3078556,49800853:-34777008 -) -] -g1,15998:6630773,4812305 -k1,15998:25146660,4812305:17320510 -g1,15998:26880087,4812305 -g1,15998:29193507,4812305 -g1,15998:30603186,4812305 -) -) -] -[1,15998:6630773,45706769:25952256,40108032,0 -(1,15998:6630773,45706769:25952256,40108032,0 -(1,15998:6630773,45706769:0,0,0 -g1,15998:6630773,45706769 -) -[1,15998:6630773,45706769:25952256,40108032,0 -v1,15929:6630773,6254097:0,393216,0 -(1,15929:6630773,12714602:25952256,6853721,196608 -g1,15929:6630773,12714602 -g1,15929:6630773,12714602 -g1,15929:6434165,12714602 -(1,15929:6434165,12714602:0,6853721,196608 -r1,15929:32779637,12714602:26345472,7050329,196608 -k1,15929:6434165,12714602:-26345472 -) -(1,15929:6434165,12714602:26345472,6853721,196608 -[1,15929:6630773,12714602:25952256,6657113,0 -(1,15910:6630773,6468007:25952256,410518,101187 -(1,15909:6630773,6468007:0,0,0 -g1,15909:6630773,6468007 -g1,15909:6630773,6468007 -g1,15909:6303093,6468007 -(1,15909:6303093,6468007:0,0,0 -) -g1,15909:6630773,6468007 -) -k1,15910:6630773,6468007:0 -g1,15910:13585979,6468007 -h1,15910:15482853,6468007:0,0,0 -k1,15910:32583029,6468007:17100176 -g1,15910:32583029,6468007 -) -(1,15915:6630773,7199721:25952256,404226,9436 -(1,15912:6630773,7199721:0,0,0 -g1,15912:6630773,7199721 -g1,15912:6630773,7199721 -g1,15912:6303093,7199721 -(1,15912:6303093,7199721:0,0,0 -) -g1,15912:6630773,7199721 -) -g1,15915:7579210,7199721 -g1,15915:7895356,7199721 -g1,15915:8211502,7199721 -g1,15915:8527648,7199721 -g1,15915:8843794,7199721 -g1,15915:9159940,7199721 -g1,15915:10740669,7199721 -g1,15915:11056815,7199721 -g1,15915:11372961,7199721 -g1,15915:11689107,7199721 -g1,15915:12005253,7199721 -g1,15915:12321399,7199721 -g1,15915:13902128,7199721 -g1,15915:14218274,7199721 -g1,15915:14534420,7199721 -g1,15915:14850566,7199721 -g1,15915:15166712,7199721 -g1,15915:15482858,7199721 -g1,15915:17063587,7199721 -g1,15915:17379733,7199721 -g1,15915:17695879,7199721 -g1,15915:18012025,7199721 -g1,15915:18328171,7199721 -g1,15915:18644317,7199721 -h1,15915:19908900,7199721:0,0,0 -k1,15915:32583029,7199721:12674129 -g1,15915:32583029,7199721 -) -(1,15915:6630773,7865899:25952256,410518,107478 -h1,15915:6630773,7865899:0,0,0 -g1,15915:7579210,7865899 -g1,15915:10740667,7865899 -g1,15915:13902124,7865899 -g1,15915:17063581,7865899 -g1,15915:17379727,7865899 -h1,15915:19908892,7865899:0,0,0 -k1,15915:32583029,7865899:12674137 -g1,15915:32583029,7865899 -) -(1,15917:6630773,9187437:25952256,410518,76021 -(1,15916:6630773,9187437:0,0,0 -g1,15916:6630773,9187437 -g1,15916:6630773,9187437 -g1,15916:6303093,9187437 -(1,15916:6303093,9187437:0,0,0 -) -g1,15916:6630773,9187437 -) -h1,15917:13902123,9187437:0,0,0 -k1,15917:32583029,9187437:18680906 -g1,15917:32583029,9187437 -) -(1,15922:6630773,9919151:25952256,404226,76021 -(1,15919:6630773,9919151:0,0,0 -g1,15919:6630773,9919151 -g1,15919:6630773,9919151 -g1,15919:6303093,9919151 -(1,15919:6303093,9919151:0,0,0 -) -g1,15919:6630773,9919151 -) -g1,15922:7579210,9919151 -g1,15922:8843793,9919151 -g1,15922:9159939,9919151 -g1,15922:9476085,9919151 -g1,15922:10740668,9919151 -g1,15922:11056814,9919151 -g1,15922:11372960,9919151 -g1,15922:12005252,9919151 -h1,15922:12321398,9919151:0,0,0 -k1,15922:32583030,9919151:20261632 -g1,15922:32583030,9919151 -) -(1,15922:6630773,10585329:25952256,404226,7863 -h1,15922:6630773,10585329:0,0,0 -g1,15922:7579210,10585329 -g1,15922:10108376,10585329 -g1,15922:10424522,10585329 -g1,15922:10740668,10585329 -g1,15922:12005251,10585329 -g1,15922:12321397,10585329 -g1,15922:12637543,10585329 -g1,15922:13269835,10585329 -h1,15922:13585981,10585329:0,0,0 -k1,15922:32583029,10585329:18997048 -g1,15922:32583029,10585329 -) -(1,15924:6630773,11906867:25952256,410518,76021 -(1,15923:6630773,11906867:0,0,0 -g1,15923:6630773,11906867 -g1,15923:6630773,11906867 -g1,15923:6303093,11906867 -(1,15923:6303093,11906867:0,0,0 -) -g1,15923:6630773,11906867 -) -k1,15924:6630773,11906867:0 -h1,15924:16431289,11906867:0,0,0 -k1,15924:32583029,11906867:16151740 -g1,15924:32583029,11906867 -) -(1,15928:6630773,12638581:25952256,404226,76021 -(1,15926:6630773,12638581:0,0,0 -g1,15926:6630773,12638581 -g1,15926:6630773,12638581 -g1,15926:6303093,12638581 -(1,15926:6303093,12638581:0,0,0 -) -g1,15926:6630773,12638581 -) -g1,15928:7579210,12638581 -g1,15928:8843793,12638581 -g1,15928:9476085,12638581 -g1,15928:9792231,12638581 -g1,15928:11372960,12638581 -g1,15928:12005252,12638581 -g1,15928:12321398,12638581 -g1,15928:12953690,12638581 -h1,15928:13585981,12638581:0,0,0 -k1,15928:32583029,12638581:18997048 -g1,15928:32583029,12638581 -) -] -) -g1,15929:32583029,12714602 -g1,15929:6630773,12714602 -g1,15929:6630773,12714602 -g1,15929:32583029,12714602 -g1,15929:32583029,12714602 -) -h1,15929:6630773,12911210:0,0,0 -(1,15933:6630773,14224400:25952256,513147,134348 -h1,15932:6630773,14224400:983040,0,0 -k1,15932:8567198,14224400:193167 -k1,15932:11199615,14224400:193167 -k1,15932:13775672,14224400:193168 -k1,15932:16037155,14224400:193167 -k1,15932:17221882,14224400:193167 -k1,15932:20333367,14224400:193167 -k1,15932:21598704,14224400:193168 -k1,15932:23685861,14224400:193167 -k1,15932:25671438,14224400:193167 -k1,15932:26856165,14224400:193167 -k1,15932:28289274,14224400:193168 -k1,15932:29242659,14224400:193167 -k1,15932:32583029,14224400:0 -) -(1,15933:6630773,15065888:25952256,505283,134348 -k1,15932:7826846,15065888:176988 -k1,15932:12829905,15065888:176988 -k1,15932:14400844,15065888:176988 -(1,15932:14400844,15065888:0,452978,115847 -r1,15932:19331364,15065888:4930520,568825,115847 -k1,15932:14400844,15065888:-4930520 -) -(1,15932:14400844,15065888:4930520,452978,115847 -k1,15932:14400844,15065888:3277 -h1,15932:19328087,15065888:0,411205,112570 -) -k1,15932:19508352,15065888:176988 -k1,15932:20553691,15065888:176987 -k1,15932:23403893,15065888:176988 -k1,15932:24865387,15065888:176988 -k1,15932:25803903,15065888:176988 -k1,15932:28408345,15065888:176988 -k1,15932:29356036,15065888:176988 -k1,15932:32583029,15065888:0 -) -(1,15933:6630773,15907376:25952256,513147,134348 -k1,15932:9964690,15907376:261589 -k1,15932:11094631,15907376:261589 -k1,15932:12460503,15907376:261590 -k1,15932:14962768,15907376:261589 -k1,15932:16427598,15907376:261589 -k1,15932:18954767,15907376:261589 -k1,15932:20407802,15907376:261590 -k1,15932:22693143,15907376:261589 -k1,15932:23973817,15907376:261589 -k1,15932:25624769,15907376:261589 -k1,15932:27298660,15907376:261590 -k1,15932:28246411,15907376:261589 -k1,15932:31037690,15907376:261589 -k1,15932:32583029,15907376:0 -) -(1,15933:6630773,16748864:25952256,513147,134348 -g1,15932:8542458,16748864 -g1,15932:9760772,16748864 -g1,15932:12225581,16748864 -g1,15932:13525815,16748864 -g1,15932:15234994,16748864 -g1,15932:17669656,16748864 -g1,15932:18593713,16748864 -g1,15932:20077448,16748864 -g1,15932:21038205,16748864 -g1,15932:23503014,16748864 -g1,15932:25091606,16748864 -g1,15932:27992884,16748864 -g1,15932:28723610,16748864 -k1,15933:32583029,16748864:96997 -g1,15933:32583029,16748864 -) -v1,15935:6630773,17886745:0,393216,0 -(1,15957:6630773,25013428:25952256,7519899,196608 -g1,15957:6630773,25013428 -g1,15957:6630773,25013428 -g1,15957:6434165,25013428 -(1,15957:6434165,25013428:0,7519899,196608 -r1,15957:32779637,25013428:26345472,7716507,196608 -k1,15957:6434165,25013428:-26345472 -) -(1,15957:6434165,25013428:26345472,7519899,196608 -[1,15957:6630773,25013428:25952256,7323291,0 -(1,15937:6630773,18100655:25952256,410518,107478 -(1,15936:6630773,18100655:0,0,0 -g1,15936:6630773,18100655 -g1,15936:6630773,18100655 -g1,15936:6303093,18100655 -(1,15936:6303093,18100655:0,0,0 -) -g1,15936:6630773,18100655 -) -g1,15937:11056813,18100655 -g1,15937:12005251,18100655 -g1,15937:24967224,18100655 -g1,15937:28760972,18100655 -g1,15937:29393264,18100655 -h1,15937:30973993,18100655:0,0,0 -k1,15937:32583029,18100655:1609036 -g1,15937:32583029,18100655 -) -(1,15938:6630773,18766833:25952256,410518,101187 -h1,15938:6630773,18766833:0,0,0 -g1,15938:13585979,18766833 -h1,15938:15482853,18766833:0,0,0 -k1,15938:32583029,18766833:17100176 -g1,15938:32583029,18766833 -) -(1,15943:6630773,19498547:25952256,404226,9436 -(1,15940:6630773,19498547:0,0,0 -g1,15940:6630773,19498547 -g1,15940:6630773,19498547 -g1,15940:6303093,19498547 -(1,15940:6303093,19498547:0,0,0 -) -g1,15940:6630773,19498547 -) -g1,15943:7579210,19498547 -g1,15943:7895356,19498547 -g1,15943:8211502,19498547 -g1,15943:8527648,19498547 -g1,15943:8843794,19498547 -g1,15943:9159940,19498547 -g1,15943:10740669,19498547 -g1,15943:11056815,19498547 -g1,15943:11372961,19498547 -g1,15943:11689107,19498547 -g1,15943:12005253,19498547 -g1,15943:12321399,19498547 -g1,15943:13902128,19498547 -g1,15943:14218274,19498547 -g1,15943:14534420,19498547 -g1,15943:14850566,19498547 -g1,15943:15166712,19498547 -g1,15943:15482858,19498547 -g1,15943:17063587,19498547 -g1,15943:17379733,19498547 -g1,15943:17695879,19498547 -g1,15943:18012025,19498547 -g1,15943:18328171,19498547 -g1,15943:18644317,19498547 -h1,15943:19908900,19498547:0,0,0 -k1,15943:32583029,19498547:12674129 -g1,15943:32583029,19498547 -) -(1,15943:6630773,20164725:25952256,410518,107478 -h1,15943:6630773,20164725:0,0,0 -g1,15943:7579210,20164725 -g1,15943:10740667,20164725 -g1,15943:13902124,20164725 -g1,15943:17063581,20164725 -g1,15943:17379727,20164725 -h1,15943:19908892,20164725:0,0,0 -k1,15943:32583029,20164725:12674137 -g1,15943:32583029,20164725 -) -(1,15945:6630773,21486263:25952256,410518,76021 -(1,15944:6630773,21486263:0,0,0 -g1,15944:6630773,21486263 -g1,15944:6630773,21486263 -g1,15944:6303093,21486263 -(1,15944:6303093,21486263:0,0,0 -) -g1,15944:6630773,21486263 -) -h1,15945:13902123,21486263:0,0,0 -k1,15945:32583029,21486263:18680906 -g1,15945:32583029,21486263 -) -(1,15950:6630773,22217977:25952256,404226,76021 -(1,15947:6630773,22217977:0,0,0 -g1,15947:6630773,22217977 -g1,15947:6630773,22217977 -g1,15947:6303093,22217977 -(1,15947:6303093,22217977:0,0,0 -) -g1,15947:6630773,22217977 -) -g1,15950:7579210,22217977 -g1,15950:8843793,22217977 -g1,15950:10108376,22217977 -g1,15950:10740668,22217977 -h1,15950:11056814,22217977:0,0,0 -k1,15950:32583030,22217977:21526216 -g1,15950:32583030,22217977 -) -(1,15950:6630773,22884155:25952256,404226,7863 -h1,15950:6630773,22884155:0,0,0 -g1,15950:7579210,22884155 -g1,15950:10108376,22884155 -g1,15950:11372959,22884155 -g1,15950:12005251,22884155 -h1,15950:12321397,22884155:0,0,0 -k1,15950:32583029,22884155:20261632 -g1,15950:32583029,22884155 -) -(1,15952:6630773,24205693:25952256,410518,76021 -(1,15951:6630773,24205693:0,0,0 -g1,15951:6630773,24205693 -g1,15951:6630773,24205693 -g1,15951:6303093,24205693 -(1,15951:6303093,24205693:0,0,0 -) -g1,15951:6630773,24205693 -) -k1,15952:6630773,24205693:0 -h1,15952:16431289,24205693:0,0,0 -k1,15952:32583029,24205693:16151740 -g1,15952:32583029,24205693 -) -(1,15956:6630773,24937407:25952256,404226,76021 -(1,15954:6630773,24937407:0,0,0 -g1,15954:6630773,24937407 -g1,15954:6630773,24937407 -g1,15954:6303093,24937407 -(1,15954:6303093,24937407:0,0,0 -) -g1,15954:6630773,24937407 -) -g1,15956:7579210,24937407 -g1,15956:8843793,24937407 -g1,15956:10740667,24937407 -g1,15956:11689104,24937407 -h1,15956:12321395,24937407:0,0,0 -k1,15956:32583029,24937407:20261634 -g1,15956:32583029,24937407 -) -] -) -g1,15957:32583029,25013428 -g1,15957:6630773,25013428 -g1,15957:6630773,25013428 -g1,15957:32583029,25013428 -g1,15957:32583029,25013428 -) -h1,15957:6630773,25210036:0,0,0 -(1,15961:6630773,26523226:25952256,513147,134348 -h1,15960:6630773,26523226:983040,0,0 -k1,15960:8988581,26523226:178081 -k1,15960:12192459,26523226:178081 -k1,15960:13938162,26523226:178082 -k1,15960:15135328,26523226:178081 -k1,15960:15728231,26523226:178060 -k1,15960:17617456,26523226:178081 -k1,15960:20375689,26523226:178081 -k1,15960:21315298,26523226:178081 -k1,15960:23758960,26523226:178082 -k1,15960:26329760,26523226:178081 -k1,15960:29221032,26523226:178081 -k1,15960:32583029,26523226:0 -) -(1,15961:6630773,27364714:25952256,513147,134348 -k1,15960:9820208,27364714:214756 -k1,15960:12231076,27364714:214757 -k1,15960:13713298,27364714:214756 -k1,15960:16326016,27364714:214756 -k1,15960:17226935,27364714:214757 -k1,15960:18881517,27364714:214756 -k1,15960:21125268,27364714:214756 -k1,15960:22720868,27364714:214756 -k1,15960:25201205,27364714:214757 -k1,15960:26520243,27364714:214756 -k1,15960:27482765,27364714:214756 -k1,15960:30358939,27364714:214757 -k1,15960:31298523,27364714:214756 -k1,15960:32583029,27364714:0 -) -(1,15961:6630773,28206202:25952256,505283,134348 -g1,15960:9804681,28206202 -g1,15960:12200021,28206202 -g1,15960:14626819,28206202 -g1,15960:15512210,28206202 -k1,15961:32583029,28206202:16365652 -g1,15961:32583029,28206202 -) -v1,15963:6630773,29344082:0,393216,0 -(1,15968:6630773,30331648:25952256,1380782,196608 -g1,15968:6630773,30331648 -g1,15968:6630773,30331648 -g1,15968:6434165,30331648 -(1,15968:6434165,30331648:0,1380782,196608 -r1,15968:32779637,30331648:26345472,1577390,196608 -k1,15968:6434165,30331648:-26345472 -) -(1,15968:6434165,30331648:26345472,1380782,196608 -[1,15968:6630773,30331648:25952256,1184174,0 -(1,15965:6630773,29557992:25952256,410518,107478 -(1,15964:6630773,29557992:0,0,0 -g1,15964:6630773,29557992 -g1,15964:6630773,29557992 -g1,15964:6303093,29557992 -(1,15964:6303093,29557992:0,0,0 -) -g1,15964:6630773,29557992 -) -g1,15965:11056813,29557992 -g1,15965:12005251,29557992 -k1,15965:12005251,29557992:0 -h1,15965:25915660,29557992:0,0,0 -k1,15965:32583029,29557992:6667369 -g1,15965:32583029,29557992 -) -(1,15966:6630773,30224170:25952256,404226,107478 -h1,15966:6630773,30224170:0,0,0 -g1,15966:6946919,30224170 -g1,15966:7263065,30224170 -g1,15966:7579211,30224170 -g1,15966:7895357,30224170 -g1,15966:8211503,30224170 -g1,15966:8527649,30224170 -g1,15966:8843795,30224170 -g1,15966:9159941,30224170 -g1,15966:9476087,30224170 -g1,15966:9792233,30224170 -g1,15966:10108379,30224170 -g1,15966:10424525,30224170 -g1,15966:10740671,30224170 -g1,15966:11056817,30224170 -g1,15966:11372963,30224170 -g1,15966:11689109,30224170 -g1,15966:12005255,30224170 -g1,15966:12321401,30224170 -g1,15966:12637547,30224170 -g1,15966:12953693,30224170 -g1,15966:13269839,30224170 -g1,15966:13585985,30224170 -g1,15966:13902131,30224170 -g1,15966:14218277,30224170 -g1,15966:14534423,30224170 -g1,15966:14850569,30224170 -g1,15966:20225046,30224170 -g1,15966:20857338,30224170 -h1,15966:22754212,30224170:0,0,0 -k1,15966:32583029,30224170:9828817 -g1,15966:32583029,30224170 -) -] -) -g1,15968:32583029,30331648 -g1,15968:6630773,30331648 -g1,15968:6630773,30331648 -g1,15968:32583029,30331648 -g1,15968:32583029,30331648 -) -h1,15968:6630773,30528256:0,0,0 -v1,15972:6630773,32137839:0,393216,0 -(1,15986:6630773,35878914:25952256,4134291,196608 -g1,15986:6630773,35878914 -g1,15986:6630773,35878914 -g1,15986:6434165,35878914 -(1,15986:6434165,35878914:0,4134291,196608 -r1,15986:32779637,35878914:26345472,4330899,196608 -k1,15986:6434165,35878914:-26345472 -) -(1,15986:6434165,35878914:26345472,4134291,196608 -[1,15986:6630773,35878914:25952256,3937683,0 -(1,15974:6630773,32351749:25952256,410518,101187 -(1,15973:6630773,32351749:0,0,0 -g1,15973:6630773,32351749 -g1,15973:6630773,32351749 -g1,15973:6303093,32351749 -(1,15973:6303093,32351749:0,0,0 -) -g1,15973:6630773,32351749 -) -k1,15974:6630773,32351749:0 -g1,15974:13585979,32351749 -h1,15974:15482853,32351749:0,0,0 -k1,15974:32583029,32351749:17100176 -g1,15974:32583029,32351749 -) -(1,15979:6630773,33083463:25952256,404226,9436 -(1,15976:6630773,33083463:0,0,0 -g1,15976:6630773,33083463 -g1,15976:6630773,33083463 -g1,15976:6303093,33083463 -(1,15976:6303093,33083463:0,0,0 -) -g1,15976:6630773,33083463 -) -g1,15979:7579210,33083463 -g1,15979:7895356,33083463 -g1,15979:8211502,33083463 -g1,15979:8527648,33083463 -g1,15979:8843794,33083463 -g1,15979:9159940,33083463 -g1,15979:9476086,33083463 -g1,15979:9792232,33083463 -g1,15979:11372961,33083463 -g1,15979:11689107,33083463 -g1,15979:12005253,33083463 -g1,15979:12321399,33083463 -g1,15979:12637545,33083463 -g1,15979:12953691,33083463 -g1,15979:13269837,33083463 -g1,15979:13585983,33083463 -g1,15979:15166712,33083463 -g1,15979:15482858,33083463 -g1,15979:15799004,33083463 -g1,15979:16115150,33083463 -g1,15979:16431296,33083463 -g1,15979:16747442,33083463 -g1,15979:17063588,33083463 -g1,15979:17379734,33083463 -g1,15979:18960463,33083463 -g1,15979:19276609,33083463 -g1,15979:19592755,33083463 -g1,15979:19908901,33083463 -g1,15979:20225047,33083463 -g1,15979:20541193,33083463 -g1,15979:20857339,33083463 -g1,15979:21173485,33083463 -h1,15979:22438068,33083463:0,0,0 -k1,15979:32583029,33083463:10144961 -g1,15979:32583029,33083463 -) -(1,15979:6630773,33749641:25952256,404226,107478 -h1,15979:6630773,33749641:0,0,0 -g1,15979:7579210,33749641 -g1,15979:7895356,33749641 -g1,15979:8211502,33749641 -g1,15979:11372959,33749641 -g1,15979:11689105,33749641 -g1,15979:12005251,33749641 -g1,15979:15166708,33749641 -g1,15979:15482854,33749641 -g1,15979:15799000,33749641 -g1,15979:18960457,33749641 -h1,15979:22438059,33749641:0,0,0 -k1,15979:32583029,33749641:10144970 -g1,15979:32583029,33749641 -) -(1,15981:6630773,35071179:25952256,410518,76021 -(1,15980:6630773,35071179:0,0,0 -g1,15980:6630773,35071179 -g1,15980:6630773,35071179 -g1,15980:6303093,35071179 -(1,15980:6303093,35071179:0,0,0 -) -g1,15980:6630773,35071179 -) -h1,15981:13902123,35071179:0,0,0 -k1,15981:32583029,35071179:18680906 -g1,15981:32583029,35071179 -) -(1,15985:6630773,35802893:25952256,404226,76021 -(1,15983:6630773,35802893:0,0,0 -g1,15983:6630773,35802893 -g1,15983:6630773,35802893 -g1,15983:6303093,35802893 -(1,15983:6303093,35802893:0,0,0 -) -g1,15983:6630773,35802893 -) -g1,15985:7579210,35802893 -g1,15985:8843793,35802893 -g1,15985:10740667,35802893 -g1,15985:11689104,35802893 -h1,15985:12321395,35802893:0,0,0 -k1,15985:32583029,35802893:20261634 -g1,15985:32583029,35802893 -) -] -) -g1,15986:32583029,35878914 -g1,15986:6630773,35878914 -g1,15986:6630773,35878914 -g1,15986:32583029,35878914 -g1,15986:32583029,35878914 -) -h1,15986:6630773,36075522:0,0,0 -(1,15990:6630773,37388713:25952256,513147,134348 -h1,15989:6630773,37388713:983040,0,0 -k1,15989:10388804,37388713:208601 -k1,15989:12615914,37388713:208601 -k1,15989:14015959,37388713:208600 -k1,15989:17948316,37388713:208601 -k1,15989:20846515,37388713:208601 -k1,15989:22046676,37388713:208601 -k1,15989:24705013,37388713:208601 -k1,15989:25861264,37388713:208600 -k1,15989:28501906,37388713:208601 -k1,15989:30398714,37388713:208601 -k1,15989:32583029,37388713:0 -) -(1,15990:6630773,38230201:25952256,505283,134348 -k1,15989:7395326,38230201:136718 -k1,15989:12893544,38230201:136718 -k1,15989:15375796,38230201:136718 -k1,15989:16531600,38230201:136719 -k1,15989:19152133,38230201:136718 -k1,15989:20945601,38230201:136718 -k1,15989:21613816,38230201:136718 -k1,15989:22106394,38230201:136718 -k1,15989:24104990,38230201:136718 -k1,15989:25931227,38230201:136719 -k1,15989:26683983,38230201:136718 -k1,15989:28572478,38230201:136718 -k1,15989:30411166,38230201:136718 -k1,15989:32583029,38230201:0 -) -(1,15990:6630773,39071689:25952256,513147,134348 -k1,15989:7323744,39071689:234874 -k1,15989:8090114,39071689:234873 -k1,15989:8680848,39071689:234874 -k1,15989:11413299,39071689:234874 -k1,15989:12125929,39071689:234873 -k1,15989:12716663,39071689:234874 -k1,15989:15275444,39071689:234874 -k1,15989:16041814,39071689:234873 -k1,15989:17789914,39071689:234874 -k1,15989:18710950,39071689:234874 -k1,15989:21429638,39071689:234873 -k1,15989:24130632,39071689:234874 -k1,15989:25233858,39071689:234874 -k1,15989:26573013,39071689:234873 -k1,15989:27617257,39071689:234874 -k1,15989:29876538,39071689:234874 -k1,15989:31203896,39071689:234873 -k1,15989:31896867,39071689:234874 -k1,15989:32583029,39071689:0 -) -(1,15990:6630773,39913177:25952256,513147,126483 -k1,15989:8307043,39913177:272489 -k1,15989:11617781,39913177:272489 -k1,15989:13081716,39913177:272490 -k1,15989:13885702,39913177:272489 -k1,15989:16445398,39913177:272489 -k1,15989:20348582,39913177:272489 -k1,15989:21382600,39913177:272490 -k1,15989:22010949,39913177:272489 -k1,15989:25524849,39913177:272489 -h1,15989:25731943,39913177:0,0,0 -k1,15989:26780378,39913177:272489 -k1,15989:27680702,39913177:272489 -k1,15989:29446758,39913177:272490 -k1,15989:30075107,39913177:272489 -k1,15989:31714677,39913177:272489 -k1,15989:32583029,39913177:0 -) -(1,15990:6630773,40754665:25952256,505283,126483 -k1,15989:7954071,40754665:219016 -k1,15989:9265572,40754665:219016 -(1,15989:9265572,40754665:0,452978,115847 -r1,15989:13140956,40754665:3875384,568825,115847 -k1,15989:9265572,40754665:-3875384 -) -(1,15989:9265572,40754665:3875384,452978,115847 -k1,15989:9265572,40754665:3277 -h1,15989:13137679,40754665:0,411205,112570 -) -k1,15989:13359971,40754665:219015 -k1,15989:14770432,40754665:219016 -(1,15989:14770432,40754665:0,452978,115847 -r1,15989:18294104,40754665:3523672,568825,115847 -k1,15989:14770432,40754665:-3523672 -) -(1,15989:14770432,40754665:3523672,452978,115847 -k1,15989:14770432,40754665:3277 -h1,15989:18290827,40754665:0,411205,112570 -) -k1,15989:18686790,40754665:219016 -k1,15989:23099455,40754665:219016 -k1,15989:26929505,40754665:219016 -(1,15989:26929505,40754665:0,452978,115847 -r1,15989:27991194,40754665:1061689,568825,115847 -k1,15989:26929505,40754665:-1061689 -) -(1,15989:26929505,40754665:1061689,452978,115847 -k1,15989:26929505,40754665:3277 -h1,15989:27987917,40754665:0,411205,112570 -) -k1,15989:28210209,40754665:219015 -k1,15989:29620670,40754665:219016 -(1,15989:29620670,40754665:0,414482,115847 -r1,15989:30682359,40754665:1061689,530329,115847 -k1,15989:29620670,40754665:-1061689 -) -(1,15989:29620670,40754665:1061689,414482,115847 -k1,15989:29620670,40754665:3277 -h1,15989:30679082,40754665:0,411205,112570 -) -k1,15989:30901375,40754665:219016 -k1,15989:32583029,40754665:0 -) -(1,15990:6630773,41596153:25952256,505283,134348 -k1,15989:9028209,41596153:215742 -k1,15989:10883006,41596153:215742 -k1,15989:11750176,41596153:215742 -k1,15989:14762339,41596153:215742 -k1,15989:18456732,41596153:215742 -k1,15989:21462342,41596153:215742 -(1,15989:21462342,41596153:0,452978,115847 -r1,15989:25689438,41596153:4227096,568825,115847 -k1,15989:21462342,41596153:-4227096 -) -(1,15989:21462342,41596153:4227096,452978,115847 -k1,15989:21462342,41596153:3277 -h1,15989:25686161,41596153:0,411205,112570 -) -k1,15989:25905180,41596153:215742 -k1,15989:27613832,41596153:215742 -k1,15989:28848659,41596153:215742 -k1,15989:30986572,41596153:215742 -k1,15989:32583029,41596153:0 -) -(1,15990:6630773,42437641:25952256,513147,134348 -k1,15989:7981705,42437641:159487 -k1,15989:11166989,42437641:159487 -k1,15989:12472702,42437641:159488 -(1,15989:12472702,42437641:0,452978,115847 -r1,15989:15996374,42437641:3523672,568825,115847 -k1,15989:12472702,42437641:-3523672 -) -(1,15989:12472702,42437641:3523672,452978,115847 -k1,15989:12472702,42437641:3277 -h1,15989:15993097,42437641:0,411205,112570 -) -k1,15989:16155861,42437641:159487 -k1,15989:17690949,42437641:159487 -k1,15989:19593694,42437641:159487 -k1,15989:20369220,42437641:159488 -k1,15989:21547792,42437641:159487 -k1,15989:23972859,42437641:159487 -k1,15989:27534975,42437641:159487 -k1,15989:28642114,42437641:159488 -k1,15989:29820686,42437641:159487 -k1,15989:32583029,42437641:0 -) -(1,15990:6630773,43279129:25952256,513147,126483 -k1,15989:10578421,43279129:162944 -k1,15989:11501583,43279129:162944 -k1,15989:14103777,43279129:162944 -(1,15989:14103777,43279129:0,452978,115847 -r1,15989:18330873,43279129:4227096,568825,115847 -k1,15989:14103777,43279129:-4227096 -) -(1,15989:14103777,43279129:4227096,452978,115847 -k1,15989:14103777,43279129:3277 -h1,15989:18327596,43279129:0,411205,112570 -) -k1,15989:18493817,43279129:162944 -k1,15989:21058000,43279129:162944 -k1,15989:22955027,43279129:162944 -k1,15989:23769399,43279129:162944 -k1,15989:24680109,43279129:162944 -k1,15989:27966499,43279129:162944 -k1,15989:28890971,43279129:162944 -k1,15989:30795207,43279129:162944 -k1,15989:32583029,43279129:0 -) -(1,15990:6630773,44120617:25952256,505283,134348 -k1,15989:8238917,44120617:244340 -k1,15989:9166142,44120617:244340 -k1,15989:11060679,44120617:244340 -k1,15989:13596813,44120617:244340 -k1,15989:15358311,44120617:244340 -k1,15989:16885846,44120617:244340 -k1,15989:18802665,44120617:244340 -k1,15989:19729890,44120617:244340 -k1,15989:22518993,44120617:244340 -k1,15989:25154742,44120617:244340 -k1,15989:27620097,44120617:244340 -k1,15989:29258388,44120617:244340 -k1,15989:32583029,44120617:0 -) -(1,15990:6630773,44962105:25952256,513147,126483 -g1,15989:8948126,44962105 -g1,15989:10677621,44962105 -g1,15989:11528278,44962105 -g1,15989:12475273,44962105 -g1,15989:14913212,44962105 -g1,15989:15728479,44962105 -g1,15989:16946793,44962105 -g1,15989:18129062,44962105 -g1,15989:19014453,44962105 -g1,15989:21289207,44962105 -k1,15990:32583029,44962105:9251720 -g1,15990:32583029,44962105 -) -v1,15992:6630773,46099985:0,393216,0 -] -(1,15998:32583029,45706769:0,0,0 -g1,15998:32583029,45706769 -) -) -] -(1,15998:6630773,47279633:25952256,0,0 -h1,15998:6630773,47279633:25952256,0,0 -) -] -h1,15998:4262630,4025873:0,0,0 -] -!27400 -}311 -Input:2410:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2411:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2412:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2413:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2414:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2415:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2416:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2417:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2418:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2419:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 -{312 -[1,16078:4262630,47279633:28320399,43253760,0 -(1,16078:4262630,4025873:0,0,0 -[1,16078:-473657,4025873:25952256,0,0 -(1,16078:-473657,-710414:25952256,0,0 -h1,16078:-473657,-710414:0,0,0 -(1,16078:-473657,-710414:0,0,0 -(1,16078:-473657,-710414:0,0,0 -g1,16078:-473657,-710414 -(1,16078:-473657,-710414:65781,0,65781 -g1,16078:-407876,-710414 -[1,16078:-407876,-644633:0,0,0 ] ) -k1,16078:-473657,-710414:-65781 ) ) -k1,16078:25478599,-710414:25952256 -g1,16078:25478599,-710414 +] +[1,16023:3078558,4812305:0,0,0 +(1,16023:3078558,49800853:0,16384,2228224 +g1,16023:29030814,49800853 +g1,16023:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16023:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -[1,16078:6630773,47279633:25952256,43253760,0 -[1,16078:6630773,4812305:25952256,786432,0 -(1,16078:6630773,4812305:25952256,513147,126483 -(1,16078:6630773,4812305:25952256,513147,126483 -g1,16078:3078558,4812305 -[1,16078:3078558,4812305:0,0,0 -(1,16078:3078558,2439708:0,1703936,0 -k1,16078:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16078:2537886,2439708:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16023:37855564,49800853:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16078:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,16023:3078556,49800853:-34777008 ) ] -) +g1,16023:6630773,4812305 +k1,16023:25146660,4812305:17320510 +g1,16023:26880087,4812305 +g1,16023:29193507,4812305 +g1,16023:30603186,4812305 ) ) ] -[1,16078:3078558,4812305:0,0,0 -(1,16078:3078558,2439708:0,1703936,0 -g1,16078:29030814,2439708 -g1,16078:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16078:36151628,1915420:16384,1179648,0 +[1,16023:6630773,45706769:25952256,40108032,0 +(1,16023:6630773,45706769:25952256,40108032,0 +(1,16023:6630773,45706769:0,0,0 +g1,16023:6630773,45706769 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +[1,16023:6630773,45706769:25952256,40108032,0 +v1,15930:6630773,6254097:0,393216,0 +(1,15934:6630773,6575485:25952256,714604,196608 +g1,15934:6630773,6575485 +g1,15934:6630773,6575485 +g1,15934:6434165,6575485 +(1,15934:6434165,6575485:0,714604,196608 +r1,15934:32779637,6575485:26345472,911212,196608 +k1,15934:6434165,6575485:-26345472 ) +(1,15934:6434165,6575485:26345472,714604,196608 +[1,15934:6630773,6575485:25952256,517996,0 +(1,15932:6630773,6468007:25952256,410518,107478 +(1,15931:6630773,6468007:0,0,0 +g1,15931:6630773,6468007 +g1,15931:6630773,6468007 +g1,15931:6303093,6468007 +(1,15931:6303093,6468007:0,0,0 +) +g1,15931:6630773,6468007 +) +g1,15932:11056813,6468007 +g1,15932:12005251,6468007 +k1,15932:12005251,6468007:0 +h1,15932:24651078,6468007:0,0,0 +k1,15932:32583029,6468007:7931951 +g1,15932:32583029,6468007 +) +] +) +g1,15934:32583029,6575485 +g1,15934:6630773,6575485 +g1,15934:6630773,6575485 +g1,15934:32583029,6575485 +g1,15934:32583029,6575485 +) +h1,15934:6630773,6772093:0,0,0 +(1,15939:6630773,7962559:25952256,513147,134348 +h1,15937:6630773,7962559:983040,0,0 +k1,15937:9694725,7962559:289158 +(1,15937:9694725,7962559:0,452978,115847 +r1,15937:12514974,7962559:2820249,568825,115847 +k1,15937:9694725,7962559:-2820249 +) +(1,15937:9694725,7962559:2820249,452978,115847 +k1,15937:9694725,7962559:3277 +h1,15937:12511697,7962559:0,411205,112570 +) +k1,15937:12804132,7962559:289158 +k1,15937:13961642,7962559:289158 +k1,15937:15355081,7962559:289157 +k1,15937:17294436,7962559:289158 +k1,15937:19680091,7962559:289158 +k1,15937:20994232,7962559:289158 +k1,15937:22567896,7962559:289158 +k1,15937:23876139,7962559:289158 +k1,15937:26009479,7962559:289157 +k1,15937:26957929,7962559:289158 +k1,15937:28266172,7962559:289158 +k1,15937:32583029,7962559:0 +) +(1,15939:6630773,8628737:25952256,513147,134348 +g1,15937:9180123,8628737 +g1,15937:11273342,8628737 +g1,15937:13264981,8628737 +g1,15937:15835958,8628737 +g1,15937:18354506,8628737 +g1,15937:20845529,8628737 +k1,15939:32583029,8628737:11737500 +g1,15939:32583029,8628737 +) +v1,15939:6630773,9819203:0,393216,0 +(1,15960:6630773,16279708:25952256,6853721,196608 +g1,15960:6630773,16279708 +g1,15960:6630773,16279708 +g1,15960:6434165,16279708 +(1,15960:6434165,16279708:0,6853721,196608 +r1,15960:32779637,16279708:26345472,7050329,196608 +k1,15960:6434165,16279708:-26345472 +) +(1,15960:6434165,16279708:26345472,6853721,196608 +[1,15960:6630773,16279708:25952256,6657113,0 +(1,15941:6630773,10033113:25952256,410518,101187 +(1,15940:6630773,10033113:0,0,0 +g1,15940:6630773,10033113 +g1,15940:6630773,10033113 +g1,15940:6303093,10033113 +(1,15940:6303093,10033113:0,0,0 +) +g1,15940:6630773,10033113 +) +k1,15941:6630773,10033113:0 +g1,15941:13585979,10033113 +h1,15941:15482853,10033113:0,0,0 +k1,15941:32583029,10033113:17100176 +g1,15941:32583029,10033113 +) +(1,15946:6630773,10764827:25952256,404226,9436 +(1,15943:6630773,10764827:0,0,0 +g1,15943:6630773,10764827 +g1,15943:6630773,10764827 +g1,15943:6303093,10764827 +(1,15943:6303093,10764827:0,0,0 +) +g1,15943:6630773,10764827 +) +g1,15946:7579210,10764827 +g1,15946:7895356,10764827 +g1,15946:8211502,10764827 +g1,15946:8527648,10764827 +g1,15946:8843794,10764827 +g1,15946:9159940,10764827 +g1,15946:10740669,10764827 +g1,15946:11056815,10764827 +g1,15946:11372961,10764827 +g1,15946:11689107,10764827 +g1,15946:12005253,10764827 +g1,15946:12321399,10764827 +g1,15946:13902128,10764827 +g1,15946:14218274,10764827 +g1,15946:14534420,10764827 +g1,15946:14850566,10764827 +g1,15946:15166712,10764827 +g1,15946:15482858,10764827 +g1,15946:17063587,10764827 +g1,15946:17379733,10764827 +g1,15946:17695879,10764827 +g1,15946:18012025,10764827 +g1,15946:18328171,10764827 +g1,15946:18644317,10764827 +h1,15946:19908900,10764827:0,0,0 +k1,15946:32583029,10764827:12674129 +g1,15946:32583029,10764827 +) +(1,15946:6630773,11431005:25952256,410518,107478 +h1,15946:6630773,11431005:0,0,0 +g1,15946:7579210,11431005 +g1,15946:10740667,11431005 +g1,15946:13902124,11431005 +g1,15946:17063581,11431005 +g1,15946:17379727,11431005 +h1,15946:19908892,11431005:0,0,0 +k1,15946:32583029,11431005:12674137 +g1,15946:32583029,11431005 +) +(1,15948:6630773,12752543:25952256,410518,76021 +(1,15947:6630773,12752543:0,0,0 +g1,15947:6630773,12752543 +g1,15947:6630773,12752543 +g1,15947:6303093,12752543 +(1,15947:6303093,12752543:0,0,0 +) +g1,15947:6630773,12752543 +) +h1,15948:13902123,12752543:0,0,0 +k1,15948:32583029,12752543:18680906 +g1,15948:32583029,12752543 +) +(1,15953:6630773,13484257:25952256,404226,76021 +(1,15950:6630773,13484257:0,0,0 +g1,15950:6630773,13484257 +g1,15950:6630773,13484257 +g1,15950:6303093,13484257 +(1,15950:6303093,13484257:0,0,0 +) +g1,15950:6630773,13484257 +) +g1,15953:7579210,13484257 +g1,15953:8843793,13484257 +g1,15953:9159939,13484257 +g1,15953:9476085,13484257 +g1,15953:10740668,13484257 +g1,15953:11056814,13484257 +g1,15953:11372960,13484257 +g1,15953:12005252,13484257 +h1,15953:12321398,13484257:0,0,0 +k1,15953:32583030,13484257:20261632 +g1,15953:32583030,13484257 +) +(1,15953:6630773,14150435:25952256,404226,7863 +h1,15953:6630773,14150435:0,0,0 +g1,15953:7579210,14150435 +g1,15953:10108376,14150435 +g1,15953:10424522,14150435 +g1,15953:10740668,14150435 +g1,15953:12005251,14150435 +g1,15953:12321397,14150435 +g1,15953:12637543,14150435 +g1,15953:13269835,14150435 +h1,15953:13585981,14150435:0,0,0 +k1,15953:32583029,14150435:18997048 +g1,15953:32583029,14150435 +) +(1,15955:6630773,15471973:25952256,410518,76021 +(1,15954:6630773,15471973:0,0,0 +g1,15954:6630773,15471973 +g1,15954:6630773,15471973 +g1,15954:6303093,15471973 +(1,15954:6303093,15471973:0,0,0 +) +g1,15954:6630773,15471973 +) +k1,15955:6630773,15471973:0 +h1,15955:16431289,15471973:0,0,0 +k1,15955:32583029,15471973:16151740 +g1,15955:32583029,15471973 +) +(1,15959:6630773,16203687:25952256,404226,76021 +(1,15957:6630773,16203687:0,0,0 +g1,15957:6630773,16203687 +g1,15957:6630773,16203687 +g1,15957:6303093,16203687 +(1,15957:6303093,16203687:0,0,0 +) +g1,15957:6630773,16203687 +) +g1,15959:7579210,16203687 +g1,15959:8843793,16203687 +g1,15959:9476085,16203687 +g1,15959:9792231,16203687 +g1,15959:11372960,16203687 +g1,15959:12005252,16203687 +g1,15959:12321398,16203687 +g1,15959:12953690,16203687 +h1,15959:13585981,16203687:0,0,0 +k1,15959:32583029,16203687:18997048 +g1,15959:32583029,16203687 +) +] +) +g1,15960:32583029,16279708 +g1,15960:6630773,16279708 +g1,15960:6630773,16279708 +g1,15960:32583029,16279708 +g1,15960:32583029,16279708 +) +h1,15960:6630773,16476316:0,0,0 +(1,15964:6630773,17842092:25952256,513147,134348 +h1,15963:6630773,17842092:983040,0,0 +k1,15963:8567198,17842092:193167 +k1,15963:11199615,17842092:193167 +k1,15963:13775672,17842092:193168 +k1,15963:16037155,17842092:193167 +k1,15963:17221882,17842092:193167 +k1,15963:20333367,17842092:193167 +k1,15963:21598704,17842092:193168 +k1,15963:23685861,17842092:193167 +k1,15963:25671438,17842092:193167 +k1,15963:26856165,17842092:193167 +k1,15963:28289274,17842092:193168 +k1,15963:29242659,17842092:193167 +k1,15963:32583029,17842092:0 +) +(1,15964:6630773,18683580:25952256,505283,134348 +k1,15963:7826846,18683580:176988 +k1,15963:12829905,18683580:176988 +k1,15963:14400844,18683580:176988 +(1,15963:14400844,18683580:0,452978,115847 +r1,15963:19331364,18683580:4930520,568825,115847 +k1,15963:14400844,18683580:-4930520 +) +(1,15963:14400844,18683580:4930520,452978,115847 +k1,15963:14400844,18683580:3277 +h1,15963:19328087,18683580:0,411205,112570 +) +k1,15963:19508352,18683580:176988 +k1,15963:20553691,18683580:176987 +k1,15963:23403893,18683580:176988 +k1,15963:24865387,18683580:176988 +k1,15963:25803903,18683580:176988 +k1,15963:28408345,18683580:176988 +k1,15963:29356036,18683580:176988 +k1,15963:32583029,18683580:0 +) +(1,15964:6630773,19525068:25952256,513147,134348 +k1,15963:9964690,19525068:261589 +k1,15963:11094631,19525068:261589 +k1,15963:12460503,19525068:261590 +k1,15963:14962768,19525068:261589 +k1,15963:16427598,19525068:261589 +k1,15963:18954767,19525068:261589 +k1,15963:20407802,19525068:261590 +k1,15963:22693143,19525068:261589 +k1,15963:23973817,19525068:261589 +k1,15963:25624769,19525068:261589 +k1,15963:27298660,19525068:261590 +k1,15963:28246411,19525068:261589 +k1,15963:31037690,19525068:261589 +k1,15963:32583029,19525068:0 +) +(1,15964:6630773,20366556:25952256,513147,134348 +g1,15963:8542458,20366556 +g1,15963:9760772,20366556 +g1,15963:12225581,20366556 +g1,15963:13525815,20366556 +g1,15963:15234994,20366556 +g1,15963:17669656,20366556 +g1,15963:18593713,20366556 +g1,15963:20077448,20366556 +g1,15963:21038205,20366556 +g1,15963:23503014,20366556 +g1,15963:25091606,20366556 +g1,15963:27992884,20366556 +g1,15963:28723610,20366556 +k1,15964:32583029,20366556:96997 +g1,15964:32583029,20366556 +) +v1,15966:6630773,21557022:0,393216,0 +(1,15988:6630773,28683705:25952256,7519899,196608 +g1,15988:6630773,28683705 +g1,15988:6630773,28683705 +g1,15988:6434165,28683705 +(1,15988:6434165,28683705:0,7519899,196608 +r1,15988:32779637,28683705:26345472,7716507,196608 +k1,15988:6434165,28683705:-26345472 +) +(1,15988:6434165,28683705:26345472,7519899,196608 +[1,15988:6630773,28683705:25952256,7323291,0 +(1,15968:6630773,21770932:25952256,410518,107478 +(1,15967:6630773,21770932:0,0,0 +g1,15967:6630773,21770932 +g1,15967:6630773,21770932 +g1,15967:6303093,21770932 +(1,15967:6303093,21770932:0,0,0 +) +g1,15967:6630773,21770932 +) +g1,15968:11056813,21770932 +g1,15968:12005251,21770932 +g1,15968:24967224,21770932 +g1,15968:28760972,21770932 +g1,15968:29393264,21770932 +h1,15968:30973993,21770932:0,0,0 +k1,15968:32583029,21770932:1609036 +g1,15968:32583029,21770932 +) +(1,15969:6630773,22437110:25952256,410518,101187 +h1,15969:6630773,22437110:0,0,0 +g1,15969:13585979,22437110 +h1,15969:15482853,22437110:0,0,0 +k1,15969:32583029,22437110:17100176 +g1,15969:32583029,22437110 +) +(1,15974:6630773,23168824:25952256,404226,9436 +(1,15971:6630773,23168824:0,0,0 +g1,15971:6630773,23168824 +g1,15971:6630773,23168824 +g1,15971:6303093,23168824 +(1,15971:6303093,23168824:0,0,0 +) +g1,15971:6630773,23168824 +) +g1,15974:7579210,23168824 +g1,15974:7895356,23168824 +g1,15974:8211502,23168824 +g1,15974:8527648,23168824 +g1,15974:8843794,23168824 +g1,15974:9159940,23168824 +g1,15974:10740669,23168824 +g1,15974:11056815,23168824 +g1,15974:11372961,23168824 +g1,15974:11689107,23168824 +g1,15974:12005253,23168824 +g1,15974:12321399,23168824 +g1,15974:13902128,23168824 +g1,15974:14218274,23168824 +g1,15974:14534420,23168824 +g1,15974:14850566,23168824 +g1,15974:15166712,23168824 +g1,15974:15482858,23168824 +g1,15974:17063587,23168824 +g1,15974:17379733,23168824 +g1,15974:17695879,23168824 +g1,15974:18012025,23168824 +g1,15974:18328171,23168824 +g1,15974:18644317,23168824 +h1,15974:19908900,23168824:0,0,0 +k1,15974:32583029,23168824:12674129 +g1,15974:32583029,23168824 +) +(1,15974:6630773,23835002:25952256,410518,107478 +h1,15974:6630773,23835002:0,0,0 +g1,15974:7579210,23835002 +g1,15974:10740667,23835002 +g1,15974:13902124,23835002 +g1,15974:17063581,23835002 +g1,15974:17379727,23835002 +h1,15974:19908892,23835002:0,0,0 +k1,15974:32583029,23835002:12674137 +g1,15974:32583029,23835002 +) +(1,15976:6630773,25156540:25952256,410518,76021 +(1,15975:6630773,25156540:0,0,0 +g1,15975:6630773,25156540 +g1,15975:6630773,25156540 +g1,15975:6303093,25156540 +(1,15975:6303093,25156540:0,0,0 +) +g1,15975:6630773,25156540 +) +h1,15976:13902123,25156540:0,0,0 +k1,15976:32583029,25156540:18680906 +g1,15976:32583029,25156540 +) +(1,15981:6630773,25888254:25952256,404226,76021 +(1,15978:6630773,25888254:0,0,0 +g1,15978:6630773,25888254 +g1,15978:6630773,25888254 +g1,15978:6303093,25888254 +(1,15978:6303093,25888254:0,0,0 +) +g1,15978:6630773,25888254 +) +g1,15981:7579210,25888254 +g1,15981:8843793,25888254 +g1,15981:10108376,25888254 +g1,15981:10740668,25888254 +h1,15981:11056814,25888254:0,0,0 +k1,15981:32583030,25888254:21526216 +g1,15981:32583030,25888254 +) +(1,15981:6630773,26554432:25952256,404226,7863 +h1,15981:6630773,26554432:0,0,0 +g1,15981:7579210,26554432 +g1,15981:10108376,26554432 +g1,15981:11372959,26554432 +g1,15981:12005251,26554432 +h1,15981:12321397,26554432:0,0,0 +k1,15981:32583029,26554432:20261632 +g1,15981:32583029,26554432 +) +(1,15983:6630773,27875970:25952256,410518,76021 +(1,15982:6630773,27875970:0,0,0 +g1,15982:6630773,27875970 +g1,15982:6630773,27875970 +g1,15982:6303093,27875970 +(1,15982:6303093,27875970:0,0,0 +) +g1,15982:6630773,27875970 +) +k1,15983:6630773,27875970:0 +h1,15983:16431289,27875970:0,0,0 +k1,15983:32583029,27875970:16151740 +g1,15983:32583029,27875970 +) +(1,15987:6630773,28607684:25952256,404226,76021 +(1,15985:6630773,28607684:0,0,0 +g1,15985:6630773,28607684 +g1,15985:6630773,28607684 +g1,15985:6303093,28607684 +(1,15985:6303093,28607684:0,0,0 +) +g1,15985:6630773,28607684 +) +g1,15987:7579210,28607684 +g1,15987:8843793,28607684 +g1,15987:10740667,28607684 +g1,15987:11689104,28607684 +h1,15987:12321395,28607684:0,0,0 +k1,15987:32583029,28607684:20261634 +g1,15987:32583029,28607684 +) +] +) +g1,15988:32583029,28683705 +g1,15988:6630773,28683705 +g1,15988:6630773,28683705 +g1,15988:32583029,28683705 +g1,15988:32583029,28683705 +) +h1,15988:6630773,28880313:0,0,0 +(1,15992:6630773,30246089:25952256,513147,134348 +h1,15991:6630773,30246089:983040,0,0 +k1,15991:8988581,30246089:178081 +k1,15991:12192459,30246089:178081 +k1,15991:13938162,30246089:178082 +k1,15991:15135328,30246089:178081 +k1,15991:15728231,30246089:178060 +k1,15991:17617456,30246089:178081 +k1,15991:20375689,30246089:178081 +k1,15991:21315298,30246089:178081 +k1,15991:23758960,30246089:178082 +k1,15991:26329760,30246089:178081 +k1,15991:29221032,30246089:178081 +k1,15991:32583029,30246089:0 +) +(1,15992:6630773,31087577:25952256,513147,134348 +k1,15991:9820208,31087577:214756 +k1,15991:12231076,31087577:214757 +k1,15991:13713298,31087577:214756 +k1,15991:16326016,31087577:214756 +k1,15991:17226935,31087577:214757 +k1,15991:18881517,31087577:214756 +k1,15991:21125268,31087577:214756 +k1,15991:22720868,31087577:214756 +k1,15991:25201205,31087577:214757 +k1,15991:26520243,31087577:214756 +k1,15991:27482765,31087577:214756 +k1,15991:30358939,31087577:214757 +k1,15991:31298523,31087577:214756 +k1,15991:32583029,31087577:0 +) +(1,15992:6630773,31929065:25952256,505283,134348 +g1,15991:9804681,31929065 +g1,15991:12200021,31929065 +g1,15991:14626819,31929065 +g1,15991:15512210,31929065 +k1,15992:32583029,31929065:16365652 +g1,15992:32583029,31929065 +) +v1,15994:6630773,33119531:0,393216,0 +(1,15999:6630773,34107097:25952256,1380782,196608 +g1,15999:6630773,34107097 +g1,15999:6630773,34107097 +g1,15999:6434165,34107097 +(1,15999:6434165,34107097:0,1380782,196608 +r1,15999:32779637,34107097:26345472,1577390,196608 +k1,15999:6434165,34107097:-26345472 +) +(1,15999:6434165,34107097:26345472,1380782,196608 +[1,15999:6630773,34107097:25952256,1184174,0 +(1,15996:6630773,33333441:25952256,410518,107478 +(1,15995:6630773,33333441:0,0,0 +g1,15995:6630773,33333441 +g1,15995:6630773,33333441 +g1,15995:6303093,33333441 +(1,15995:6303093,33333441:0,0,0 +) +g1,15995:6630773,33333441 +) +g1,15996:11056813,33333441 +g1,15996:12005251,33333441 +k1,15996:12005251,33333441:0 +h1,15996:25915660,33333441:0,0,0 +k1,15996:32583029,33333441:6667369 +g1,15996:32583029,33333441 +) +(1,15997:6630773,33999619:25952256,404226,107478 +h1,15997:6630773,33999619:0,0,0 +g1,15997:6946919,33999619 +g1,15997:7263065,33999619 +g1,15997:7579211,33999619 +g1,15997:7895357,33999619 +g1,15997:8211503,33999619 +g1,15997:8527649,33999619 +g1,15997:8843795,33999619 +g1,15997:9159941,33999619 +g1,15997:9476087,33999619 +g1,15997:9792233,33999619 +g1,15997:10108379,33999619 +g1,15997:10424525,33999619 +g1,15997:10740671,33999619 +g1,15997:11056817,33999619 +g1,15997:11372963,33999619 +g1,15997:11689109,33999619 +g1,15997:12005255,33999619 +g1,15997:12321401,33999619 +g1,15997:12637547,33999619 +g1,15997:12953693,33999619 +g1,15997:13269839,33999619 +g1,15997:13585985,33999619 +g1,15997:13902131,33999619 +g1,15997:14218277,33999619 +g1,15997:14534423,33999619 +g1,15997:14850569,33999619 +g1,15997:20225046,33999619 +g1,15997:20857338,33999619 +h1,15997:22754212,33999619:0,0,0 +k1,15997:32583029,33999619:9828817 +g1,15997:32583029,33999619 +) +] +) +g1,15999:32583029,34107097 +g1,15999:6630773,34107097 +g1,15999:6630773,34107097 +g1,15999:32583029,34107097 +g1,15999:32583029,34107097 +) +h1,15999:6630773,34303705:0,0,0 +v1,16003:6630773,36018459:0,393216,0 +(1,16017:6630773,39759534:25952256,4134291,196608 +g1,16017:6630773,39759534 +g1,16017:6630773,39759534 +g1,16017:6434165,39759534 +(1,16017:6434165,39759534:0,4134291,196608 +r1,16017:32779637,39759534:26345472,4330899,196608 +k1,16017:6434165,39759534:-26345472 +) +(1,16017:6434165,39759534:26345472,4134291,196608 +[1,16017:6630773,39759534:25952256,3937683,0 +(1,16005:6630773,36232369:25952256,410518,101187 +(1,16004:6630773,36232369:0,0,0 +g1,16004:6630773,36232369 +g1,16004:6630773,36232369 +g1,16004:6303093,36232369 +(1,16004:6303093,36232369:0,0,0 +) +g1,16004:6630773,36232369 +) +k1,16005:6630773,36232369:0 +g1,16005:13585979,36232369 +h1,16005:15482853,36232369:0,0,0 +k1,16005:32583029,36232369:17100176 +g1,16005:32583029,36232369 +) +(1,16010:6630773,36964083:25952256,404226,9436 +(1,16007:6630773,36964083:0,0,0 +g1,16007:6630773,36964083 +g1,16007:6630773,36964083 +g1,16007:6303093,36964083 +(1,16007:6303093,36964083:0,0,0 +) +g1,16007:6630773,36964083 +) +g1,16010:7579210,36964083 +g1,16010:7895356,36964083 +g1,16010:8211502,36964083 +g1,16010:8527648,36964083 +g1,16010:8843794,36964083 +g1,16010:9159940,36964083 +g1,16010:9476086,36964083 +g1,16010:9792232,36964083 +g1,16010:11372961,36964083 +g1,16010:11689107,36964083 +g1,16010:12005253,36964083 +g1,16010:12321399,36964083 +g1,16010:12637545,36964083 +g1,16010:12953691,36964083 +g1,16010:13269837,36964083 +g1,16010:13585983,36964083 +g1,16010:15166712,36964083 +g1,16010:15482858,36964083 +g1,16010:15799004,36964083 +g1,16010:16115150,36964083 +g1,16010:16431296,36964083 +g1,16010:16747442,36964083 +g1,16010:17063588,36964083 +g1,16010:17379734,36964083 +g1,16010:18960463,36964083 +g1,16010:19276609,36964083 +g1,16010:19592755,36964083 +g1,16010:19908901,36964083 +g1,16010:20225047,36964083 +g1,16010:20541193,36964083 +g1,16010:20857339,36964083 +g1,16010:21173485,36964083 +h1,16010:22438068,36964083:0,0,0 +k1,16010:32583029,36964083:10144961 +g1,16010:32583029,36964083 +) +(1,16010:6630773,37630261:25952256,404226,107478 +h1,16010:6630773,37630261:0,0,0 +g1,16010:7579210,37630261 +g1,16010:7895356,37630261 +g1,16010:8211502,37630261 +g1,16010:11372959,37630261 +g1,16010:11689105,37630261 +g1,16010:12005251,37630261 +g1,16010:15166708,37630261 +g1,16010:15482854,37630261 +g1,16010:15799000,37630261 +g1,16010:18960457,37630261 +h1,16010:22438059,37630261:0,0,0 +k1,16010:32583029,37630261:10144970 +g1,16010:32583029,37630261 +) +(1,16012:6630773,38951799:25952256,410518,76021 +(1,16011:6630773,38951799:0,0,0 +g1,16011:6630773,38951799 +g1,16011:6630773,38951799 +g1,16011:6303093,38951799 +(1,16011:6303093,38951799:0,0,0 +) +g1,16011:6630773,38951799 +) +h1,16012:13902123,38951799:0,0,0 +k1,16012:32583029,38951799:18680906 +g1,16012:32583029,38951799 +) +(1,16016:6630773,39683513:25952256,404226,76021 +(1,16014:6630773,39683513:0,0,0 +g1,16014:6630773,39683513 +g1,16014:6630773,39683513 +g1,16014:6303093,39683513 +(1,16014:6303093,39683513:0,0,0 +) +g1,16014:6630773,39683513 +) +g1,16016:7579210,39683513 +g1,16016:8843793,39683513 +g1,16016:10740667,39683513 +g1,16016:11689104,39683513 +h1,16016:12321395,39683513:0,0,0 +k1,16016:32583029,39683513:20261634 +g1,16016:32583029,39683513 +) +] +) +g1,16017:32583029,39759534 +g1,16017:6630773,39759534 +g1,16017:6630773,39759534 +g1,16017:32583029,39759534 +g1,16017:32583029,39759534 +) +h1,16017:6630773,39956142:0,0,0 +(1,16021:6630773,41321918:25952256,513147,134348 +h1,16020:6630773,41321918:983040,0,0 +k1,16020:10388804,41321918:208601 +k1,16020:12615914,41321918:208601 +k1,16020:14015959,41321918:208600 +k1,16020:17948316,41321918:208601 +k1,16020:20846515,41321918:208601 +k1,16020:22046676,41321918:208601 +k1,16020:24705013,41321918:208601 +k1,16020:25861264,41321918:208600 +k1,16020:28501906,41321918:208601 +k1,16020:30398714,41321918:208601 +k1,16020:32583029,41321918:0 +) +(1,16021:6630773,42163406:25952256,505283,134348 +k1,16020:7395326,42163406:136718 +k1,16020:12893544,42163406:136718 +k1,16020:15375796,42163406:136718 +k1,16020:16531600,42163406:136719 +k1,16020:19152133,42163406:136718 +k1,16020:20945601,42163406:136718 +k1,16020:21613816,42163406:136718 +k1,16020:22106394,42163406:136718 +k1,16020:24104990,42163406:136718 +k1,16020:25931227,42163406:136719 +k1,16020:26683983,42163406:136718 +k1,16020:28572478,42163406:136718 +k1,16020:30411166,42163406:136718 +k1,16020:32583029,42163406:0 +) +(1,16021:6630773,43004894:25952256,513147,134348 +k1,16020:7323744,43004894:234874 +k1,16020:8090114,43004894:234873 +k1,16020:8680848,43004894:234874 +k1,16020:11413299,43004894:234874 +k1,16020:12125929,43004894:234873 +k1,16020:12716663,43004894:234874 +k1,16020:15275444,43004894:234874 +k1,16020:16041814,43004894:234873 +k1,16020:17789914,43004894:234874 +k1,16020:18710950,43004894:234874 +k1,16020:21429638,43004894:234873 +k1,16020:24130632,43004894:234874 +k1,16020:25233858,43004894:234874 +k1,16020:26573013,43004894:234873 +k1,16020:27617257,43004894:234874 +k1,16020:29876538,43004894:234874 +k1,16020:31203896,43004894:234873 +k1,16020:31896867,43004894:234874 +k1,16020:32583029,43004894:0 +) +(1,16021:6630773,43846382:25952256,513147,126483 +k1,16020:8307043,43846382:272489 +k1,16020:11617781,43846382:272489 +k1,16020:13081716,43846382:272490 +k1,16020:13885702,43846382:272489 +k1,16020:16445398,43846382:272489 +k1,16020:20348582,43846382:272489 +k1,16020:21382600,43846382:272490 +k1,16020:22010949,43846382:272489 +k1,16020:25524849,43846382:272489 +h1,16020:25731943,43846382:0,0,0 +k1,16020:26780378,43846382:272489 +k1,16020:27680702,43846382:272489 +k1,16020:29446758,43846382:272490 +k1,16020:30075107,43846382:272489 +k1,16020:31714677,43846382:272489 +k1,16020:32583029,43846382:0 +) +(1,16021:6630773,44687870:25952256,505283,126483 +k1,16020:7954071,44687870:219016 +k1,16020:9265572,44687870:219016 +(1,16020:9265572,44687870:0,452978,115847 +r1,16020:13140956,44687870:3875384,568825,115847 +k1,16020:9265572,44687870:-3875384 +) +(1,16020:9265572,44687870:3875384,452978,115847 +k1,16020:9265572,44687870:3277 +h1,16020:13137679,44687870:0,411205,112570 +) +k1,16020:13359971,44687870:219015 +k1,16020:14770432,44687870:219016 +(1,16020:14770432,44687870:0,452978,115847 +r1,16020:18294104,44687870:3523672,568825,115847 +k1,16020:14770432,44687870:-3523672 +) +(1,16020:14770432,44687870:3523672,452978,115847 +k1,16020:14770432,44687870:3277 +h1,16020:18290827,44687870:0,411205,112570 +) +k1,16020:18686790,44687870:219016 +k1,16020:23099455,44687870:219016 +k1,16020:26929505,44687870:219016 +(1,16020:26929505,44687870:0,452978,115847 +r1,16020:27991194,44687870:1061689,568825,115847 +k1,16020:26929505,44687870:-1061689 +) +(1,16020:26929505,44687870:1061689,452978,115847 +k1,16020:26929505,44687870:3277 +h1,16020:27987917,44687870:0,411205,112570 +) +k1,16020:28210209,44687870:219015 +k1,16020:29620670,44687870:219016 +(1,16020:29620670,44687870:0,414482,115847 +r1,16020:30682359,44687870:1061689,530329,115847 +k1,16020:29620670,44687870:-1061689 +) +(1,16020:29620670,44687870:1061689,414482,115847 +k1,16020:29620670,44687870:3277 +h1,16020:30679082,44687870:0,411205,112570 +) +k1,16020:30901375,44687870:219016 +k1,16020:32583029,44687870:0 +) +(1,16021:6630773,45529358:25952256,505283,134348 +k1,16020:9028209,45529358:215742 +k1,16020:10883006,45529358:215742 +k1,16020:11750176,45529358:215742 +k1,16020:14762339,45529358:215742 +k1,16020:18456732,45529358:215742 +k1,16020:21462342,45529358:215742 +(1,16020:21462342,45529358:0,452978,115847 +r1,16020:25689438,45529358:4227096,568825,115847 +k1,16020:21462342,45529358:-4227096 +) +(1,16020:21462342,45529358:4227096,452978,115847 +k1,16020:21462342,45529358:3277 +h1,16020:25686161,45529358:0,411205,112570 +) +k1,16020:25905180,45529358:215742 +k1,16020:27613832,45529358:215742 +k1,16020:28848659,45529358:215742 +k1,16020:30986572,45529358:215742 +k1,16020:32583029,45529358:0 +) +] +(1,16023:32583029,45706769:0,0,0 +g1,16023:32583029,45706769 +) +) +] +(1,16023:6630773,47279633:25952256,0,0 +h1,16023:6630773,47279633:25952256,0,0 +) +] +h1,16023:4262630,4025873:0,0,0 +] +!27077 +}311 +Input:2407:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2408:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2409:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 +{312 +[1,16108:4262630,47279633:28320399,43253760,0 +(1,16108:4262630,4025873:0,0,0 +[1,16108:-473657,4025873:25952256,0,0 +(1,16108:-473657,-710414:25952256,0,0 +h1,16108:-473657,-710414:0,0,0 +(1,16108:-473657,-710414:0,0,0 +(1,16108:-473657,-710414:0,0,0 +g1,16108:-473657,-710414 +(1,16108:-473657,-710414:65781,0,65781 +g1,16108:-407876,-710414 +[1,16108:-407876,-644633:0,0,0 ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16078:37855564,2439708:1179648,16384,0 +k1,16108:-473657,-710414:-65781 ) ) -k1,16078:3078556,2439708:-34777008 +k1,16108:25478599,-710414:25952256 +g1,16108:25478599,-710414 ) ] -[1,16078:3078558,4812305:0,0,0 -(1,16078:3078558,49800853:0,16384,2228224 -k1,16078:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16078:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16078:3078558,51504789:16384,1179648,0 +[1,16108:6630773,47279633:25952256,43253760,0 +[1,16108:6630773,4812305:25952256,786432,0 +(1,16108:6630773,4812305:25952256,513147,126483 +(1,16108:6630773,4812305:25952256,513147,126483 +g1,16108:3078558,4812305 +[1,16108:3078558,4812305:0,0,0 +(1,16108:3078558,2439708:0,1703936,0 +k1,16108:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16108:2537886,2439708:1179648,16384,0 +) +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16108:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16078:3078558,4812305:0,0,0 -(1,16078:3078558,49800853:0,16384,2228224 -g1,16078:29030814,49800853 -g1,16078:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16078:36151628,51504789:16384,1179648,0 +[1,16108:3078558,4812305:0,0,0 +(1,16108:3078558,2439708:0,1703936,0 +g1,16108:29030814,2439708 +g1,16108:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16108:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16078:37855564,49800853:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16108:37855564,2439708:1179648,16384,0 ) ) -k1,16078:3078556,49800853:-34777008 +k1,16108:3078556,2439708:-34777008 ) ] -g1,16078:6630773,4812305 -g1,16078:6630773,4812305 -g1,16078:9744388,4812305 -g1,16078:11175694,4812305 -k1,16078:31387652,4812305:20211958 +[1,16108:3078558,4812305:0,0,0 +(1,16108:3078558,49800853:0,16384,2228224 +k1,16108:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16108:2537886,49800853:1179648,16384,0 ) +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16108:3078558,51504789:16384,1179648,0 +) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] -[1,16078:6630773,45706769:25952256,40108032,0 -(1,16078:6630773,45706769:25952256,40108032,0 -(1,16078:6630773,45706769:0,0,0 -g1,16078:6630773,45706769 ) -[1,16078:6630773,45706769:25952256,40108032,0 -v1,15998:6630773,6254097:0,393216,0 -(1,15998:6630773,7803507:25952256,1942626,196608 -g1,15998:6630773,7803507 -g1,15998:6630773,7803507 -g1,15998:6434165,7803507 -(1,15998:6434165,7803507:0,1942626,196608 -r1,15998:32779637,7803507:26345472,2139234,196608 -k1,15998:6434165,7803507:-26345472 ) -(1,15998:6434165,7803507:26345472,1942626,196608 -[1,15998:6630773,7803507:25952256,1746018,0 -(1,15997:6630773,6461715:25952256,404226,9436 -(1,15993:6630773,6461715:0,0,0 -g1,15993:6630773,6461715 -g1,15993:6630773,6461715 -g1,15993:6303093,6461715 -(1,15993:6303093,6461715:0,0,0 -) -g1,15993:6630773,6461715 -) -g1,15997:8211502,6461715 -g1,15997:9792231,6461715 -g1,15997:11372960,6461715 -h1,15997:12637543,6461715:0,0,0 -k1,15997:32583029,6461715:19945486 -g1,15997:32583029,6461715 -) -(1,15997:6630773,7127893:25952256,388497,9436 -h1,15997:6630773,7127893:0,0,0 -g1,15997:6946919,7127893 -g1,15997:8211502,7127893 -g1,15997:9792231,7127893 -g1,15997:10108377,7127893 -g1,15997:11372960,7127893 -h1,15997:12321397,7127893:0,0,0 -k1,15997:32583029,7127893:20261632 -g1,15997:32583029,7127893 -) -(1,15997:6630773,7794071:25952256,404226,9436 -h1,15997:6630773,7794071:0,0,0 -g1,15997:8211502,7794071 -g1,15997:9792231,7794071 -g1,15997:10108377,7794071 -g1,15997:10424523,7794071 -g1,15997:11372960,7794071 -g1,15997:12321397,7794071 -h1,15997:12953688,7794071:0,0,0 -k1,15997:32583028,7794071:19629340 -g1,15997:32583028,7794071 -) -] -) -g1,15998:32583029,7803507 -g1,15998:6630773,7803507 -g1,15998:6630773,7803507 -g1,15998:32583029,7803507 -g1,15998:32583029,7803507 -) -h1,15998:6630773,8000115:0,0,0 -v1,16002:6630773,9608016:0,393216,0 -(1,16006:6630773,9929404:25952256,714604,196608 -g1,16006:6630773,9929404 -g1,16006:6630773,9929404 -g1,16006:6434165,9929404 -(1,16006:6434165,9929404:0,714604,196608 -r1,16006:32779637,9929404:26345472,911212,196608 -k1,16006:6434165,9929404:-26345472 -) -(1,16006:6434165,9929404:26345472,714604,196608 -[1,16006:6630773,9929404:25952256,517996,0 -(1,16004:6630773,9821926:25952256,410518,107478 -(1,16003:6630773,9821926:0,0,0 -g1,16003:6630773,9821926 -g1,16003:6630773,9821926 -g1,16003:6303093,9821926 -(1,16003:6303093,9821926:0,0,0 -) -g1,16003:6630773,9821926 -) -g1,16004:11056813,9821926 -g1,16004:12005251,9821926 -g1,16004:24651079,9821926 -g1,16004:26864099,9821926 -g1,16004:27496391,9821926 -h1,16004:29077120,9821926:0,0,0 -k1,16004:32583029,9821926:3505909 -g1,16004:32583029,9821926 -) -] -) -g1,16006:32583029,9929404 -g1,16006:6630773,9929404 -g1,16006:6630773,9929404 -g1,16006:32583029,9929404 -g1,16006:32583029,9929404 -) -h1,16006:6630773,10126012:0,0,0 -v1,16010:6630773,11733914:0,393216,0 -(1,16031:6630773,18194419:25952256,6853721,196608 -g1,16031:6630773,18194419 -g1,16031:6630773,18194419 -g1,16031:6434165,18194419 -(1,16031:6434165,18194419:0,6853721,196608 -r1,16031:32779637,18194419:26345472,7050329,196608 -k1,16031:6434165,18194419:-26345472 -) -(1,16031:6434165,18194419:26345472,6853721,196608 -[1,16031:6630773,18194419:25952256,6657113,0 -(1,16012:6630773,11947824:25952256,410518,101187 -(1,16011:6630773,11947824:0,0,0 -g1,16011:6630773,11947824 -g1,16011:6630773,11947824 -g1,16011:6303093,11947824 -(1,16011:6303093,11947824:0,0,0 -) -g1,16011:6630773,11947824 -) -k1,16012:6630773,11947824:0 -g1,16012:13585979,11947824 -h1,16012:15482853,11947824:0,0,0 -k1,16012:32583029,11947824:17100176 -g1,16012:32583029,11947824 -) -(1,16017:6630773,12679538:25952256,404226,9436 -(1,16014:6630773,12679538:0,0,0 -g1,16014:6630773,12679538 -g1,16014:6630773,12679538 -g1,16014:6303093,12679538 -(1,16014:6303093,12679538:0,0,0 -) -g1,16014:6630773,12679538 -) -g1,16017:7579210,12679538 -g1,16017:7895356,12679538 -g1,16017:8211502,12679538 -g1,16017:8527648,12679538 -g1,16017:8843794,12679538 -g1,16017:9159940,12679538 -g1,16017:10740669,12679538 -g1,16017:11056815,12679538 -g1,16017:11372961,12679538 -g1,16017:11689107,12679538 -g1,16017:12005253,12679538 -g1,16017:12321399,12679538 -g1,16017:13902128,12679538 -g1,16017:14218274,12679538 -g1,16017:14534420,12679538 -g1,16017:14850566,12679538 -g1,16017:15166712,12679538 -g1,16017:15482858,12679538 -g1,16017:17063587,12679538 -g1,16017:17379733,12679538 -g1,16017:17695879,12679538 -g1,16017:18012025,12679538 -g1,16017:18328171,12679538 -g1,16017:18644317,12679538 -h1,16017:19908900,12679538:0,0,0 -k1,16017:32583029,12679538:12674129 -g1,16017:32583029,12679538 -) -(1,16017:6630773,13345716:25952256,410518,107478 -h1,16017:6630773,13345716:0,0,0 -g1,16017:7579210,13345716 -g1,16017:10740667,13345716 -g1,16017:13902124,13345716 -g1,16017:17063581,13345716 -g1,16017:17379727,13345716 -h1,16017:19908892,13345716:0,0,0 -k1,16017:32583029,13345716:12674137 -g1,16017:32583029,13345716 -) -(1,16019:6630773,14667254:25952256,410518,76021 -(1,16018:6630773,14667254:0,0,0 -g1,16018:6630773,14667254 -g1,16018:6630773,14667254 -g1,16018:6303093,14667254 -(1,16018:6303093,14667254:0,0,0 -) -g1,16018:6630773,14667254 -) -h1,16019:13902123,14667254:0,0,0 -k1,16019:32583029,14667254:18680906 -g1,16019:32583029,14667254 -) -(1,16024:6630773,15398968:25952256,404226,76021 -(1,16021:6630773,15398968:0,0,0 -g1,16021:6630773,15398968 -g1,16021:6630773,15398968 -g1,16021:6303093,15398968 -(1,16021:6303093,15398968:0,0,0 -) -g1,16021:6630773,15398968 -) -g1,16024:7579210,15398968 -g1,16024:8843793,15398968 -g1,16024:10108376,15398968 -g1,16024:10740668,15398968 -h1,16024:11056814,15398968:0,0,0 -k1,16024:32583030,15398968:21526216 -g1,16024:32583030,15398968 -) -(1,16024:6630773,16065146:25952256,404226,7863 -h1,16024:6630773,16065146:0,0,0 -g1,16024:7579210,16065146 -g1,16024:10108376,16065146 -g1,16024:11372959,16065146 -g1,16024:12005251,16065146 -h1,16024:12321397,16065146:0,0,0 -k1,16024:32583029,16065146:20261632 -g1,16024:32583029,16065146 -) -(1,16026:6630773,17386684:25952256,410518,76021 -(1,16025:6630773,17386684:0,0,0 -g1,16025:6630773,17386684 -g1,16025:6630773,17386684 -g1,16025:6303093,17386684 -(1,16025:6303093,17386684:0,0,0 -) -g1,16025:6630773,17386684 -) -k1,16026:6630773,17386684:0 -h1,16026:16431289,17386684:0,0,0 -k1,16026:32583029,17386684:16151740 -g1,16026:32583029,17386684 -) -(1,16030:6630773,18118398:25952256,404226,76021 -(1,16028:6630773,18118398:0,0,0 -g1,16028:6630773,18118398 -g1,16028:6630773,18118398 -g1,16028:6303093,18118398 -(1,16028:6303093,18118398:0,0,0 -) -g1,16028:6630773,18118398 -) -g1,16030:7579210,18118398 -g1,16030:8843793,18118398 -g1,16030:10740667,18118398 -g1,16030:11689104,18118398 -h1,16030:12321395,18118398:0,0,0 -k1,16030:32583029,18118398:20261634 -g1,16030:32583029,18118398 -) -] -) -g1,16031:32583029,18194419 -g1,16031:6630773,18194419 -g1,16031:6630773,18194419 -g1,16031:32583029,18194419 -g1,16031:32583029,18194419 -) -h1,16031:6630773,18391027:0,0,0 -(1,16036:6630773,19703377:25952256,513147,134348 -h1,16035:6630773,19703377:983040,0,0 -k1,16035:9318226,19703377:225265 -k1,16035:9899351,19703377:225265 -k1,16035:13715989,19703377:225265 -k1,16035:16295307,19703377:225265 -k1,16035:17329942,19703377:225265 -k1,16035:20773680,19703377:225265 -k1,16035:21990505,19703377:225265 -k1,16035:24687788,19703377:225265 -k1,16035:27902805,19703377:225265 -k1,16035:28659567,19703377:225265 -k1,16035:30739501,19703377:225265 -k1,16035:32583029,19703377:0 -) -(1,16036:6630773,20544865:25952256,513147,126483 -k1,16035:7693566,20544865:253423 -k1,16035:8966074,20544865:253423 -k1,16035:11833728,20544865:253423 -k1,16035:12746442,20544865:253422 -k1,16035:14018950,20544865:253423 -k1,16035:17577354,20544865:253423 -k1,16035:18446815,20544865:253423 -k1,16035:19719323,20544865:253423 -k1,16035:21141253,20544865:253423 -k1,16035:22077560,20544865:253422 -k1,16035:24577557,20544865:253423 -k1,16035:25318514,20544865:253369 -k1,16035:26554977,20544865:253423 -k1,16035:27954624,20544865:253422 -k1,16035:29411288,20544865:253423 -k1,16035:31835263,20544865:253423 -k1,16035:32583029,20544865:0 -) -(1,16036:6630773,21386353:25952256,513147,134348 -k1,16035:10517331,21386353:296496 -k1,16035:13274048,21386353:296495 -k1,16035:13926404,21386353:296496 -k1,16035:17832623,21386353:296496 -k1,16035:18788410,21386353:296495 -k1,16035:20103991,21386353:296496 -k1,16035:22580870,21386353:296496 -k1,16035:24390591,21386353:296495 -k1,16035:25634738,21386353:296496 -k1,16035:27964816,21386353:296496 -k1,16035:29280396,21386353:296495 -k1,16035:31139926,21386353:296496 -k1,16035:32583029,21386353:0 -) -(1,16036:6630773,22227841:25952256,513147,134348 -k1,16035:10161378,22227841:168608 -k1,16035:11719349,22227841:168608 -k1,16035:13926126,22227841:168607 -k1,16035:14710772,22227841:168608 -k1,16035:16366392,22227841:168608 -k1,16035:18296608,22227841:168608 -k1,16035:20688852,22227841:168608 -k1,16035:21961742,22227841:168608 -k1,16035:22878115,22227841:168607 -k1,16035:24459024,22227841:168608 -k1,16035:26021583,22227841:168608 -k1,16035:28885687,22227841:168608 -(1,16035:28885687,22227841:0,459977,115847 -r1,16035:32409359,22227841:3523672,575824,115847 -k1,16035:28885687,22227841:-3523672 -) -(1,16035:28885687,22227841:3523672,459977,115847 -k1,16035:28885687,22227841:3277 -h1,16035:32406082,22227841:0,411205,112570 -) -k1,16035:32583029,22227841:0 -) -(1,16036:6630773,23069329:25952256,513147,134348 -k1,16035:9339201,23069329:148592 -k1,16035:10435444,23069329:148592 -k1,16035:10939896,23069329:148592 -k1,16035:12961507,23069329:148592 -k1,16035:16851549,23069329:148592 -k1,16035:18104423,23069329:148592 -k1,16035:19000781,23069329:148592 -k1,16035:21187542,23069329:148591 -k1,16035:21952172,23069329:148592 -k1,16035:22456624,23069329:148592 -k1,16035:24478235,23069329:148592 -k1,16035:25309712,23069329:148592 -k1,16035:28129551,23069329:148592 -k1,16035:29950622,23069329:148592 -k1,16035:30727049,23069329:148592 -k1,16035:32583029,23069329:0 -) -(1,16036:6630773,23910817:25952256,513147,102891 -g1,16035:8370753,23910817 -g1,16035:10021604,23910817 -g1,16035:11389340,23910817 -g1,16035:12689574,23910817 -g1,16035:14622886,23910817 -g1,16035:15481407,23910817 -g1,16035:18442979,23910817 -g1,16035:19714377,23910817 -g1,16035:21477295,23910817 -g1,16035:23814308,23910817 -k1,16036:32583029,23910817:6450057 -g1,16036:32583029,23910817 -) -(1,16038:6630773,24752305:25952256,513147,126483 -h1,16037:6630773,24752305:983040,0,0 -k1,16037:10616799,24752305:213118 -(1,16037:10616799,24752305:0,459977,115847 -r1,16037:15547319,24752305:4930520,575824,115847 -k1,16037:10616799,24752305:-4930520 -) -(1,16037:10616799,24752305:4930520,459977,115847 -k1,16037:10616799,24752305:3277 -h1,16037:15544042,24752305:0,411205,112570 -) -k1,16037:15760437,24752305:213118 -k1,16037:16505052,24752305:213118 -k1,16037:17074030,24752305:213118 -k1,16037:19929560,24752305:213118 -k1,16037:20952048,24752305:213118 -(1,16037:20952048,24752305:0,459977,115847 -r1,16037:24475720,24752305:3523672,575824,115847 -k1,16037:20952048,24752305:-3523672 -) -(1,16037:20952048,24752305:3523672,459977,115847 -k1,16037:20952048,24752305:3277 -h1,16037:24472443,24752305:0,411205,112570 -) -k1,16037:24688838,24752305:213118 -k1,16037:26186462,24752305:213118 -k1,16037:28777882,24752305:213118 -k1,16037:31171383,24752305:213118 -k1,16038:32583029,24752305:0 -) -(1,16038:6630773,25593793:25952256,513147,126483 -k1,16037:9002167,25593793:157588 -k1,16037:11361765,25593793:157588 -k1,16037:12170781,25593793:157588 -k1,16037:14072282,25593793:157588 -k1,16037:15743097,25593793:157589 -k1,16037:16516723,25593793:157588 -k1,16037:19888852,25593793:157588 -k1,16037:21317838,25593793:157588 -k1,16037:25415450,25593793:157588 -k1,16037:26240194,25593793:157588 -k1,16037:29438612,25593793:157547 -k1,16037:32583029,25593793:0 -) -(1,16038:6630773,26435281:25952256,513147,126483 -k1,16037:8296131,26435281:237328 -k1,16037:11127373,26435281:237327 -k1,16037:11896198,26435281:237328 -k1,16037:13418031,26435281:237327 -k1,16037:14674444,26435281:237328 -k1,16037:17395586,26435281:237327 -k1,16037:19925363,26435281:237328 -k1,16037:21266972,26435281:237327 -k1,16037:22252066,26435281:237328 -k1,16037:24986970,26435281:237327 -k1,16037:25840336,26435281:237328 -k1,16037:27096748,26435281:237327 -k1,16037:29145491,26435281:237328 -k1,16037:30365859,26435281:237328 -k1,16037:31794631,26435281:237327 -k1,16037:32583029,26435281:0 -) -(1,16038:6630773,27276769:25952256,513147,126483 -k1,16037:9468950,27276769:223946 -k1,16037:12524706,27276769:223945 -k1,16037:13434814,27276769:223946 -k1,16037:14980621,27276769:223946 -k1,16037:15863859,27276769:223946 -k1,16037:17106889,27276769:223945 -k1,16037:19511218,27276769:223946 -k1,16037:22990993,27276769:223946 -k1,16037:23570798,27276769:223945 -k1,16037:25267338,27276769:223946 -k1,16037:27004510,27276769:223946 -k1,16037:27879884,27276769:223946 -k1,16037:29819562,27276769:223945 -k1,16037:31269687,27276769:223946 -k1,16037:32583029,27276769:0 -) -(1,16038:6630773,28118257:25952256,513147,134348 -k1,16037:7706101,28118257:185349 -k1,16037:9890953,28118257:185349 -k1,16037:10735593,28118257:185348 -k1,16037:12919790,28118257:185349 -k1,16037:15214743,28118257:185349 -k1,16037:17925850,28118257:185349 -k1,16037:20540619,28118257:185349 -k1,16037:23390006,28118257:185348 -k1,16037:24242511,28118257:185349 -k1,16037:27468717,28118257:185335 -k1,16037:30180479,28118257:185349 -k1,16037:32583029,28118257:0 -) -(1,16038:6630773,28959745:25952256,513147,134348 -k1,16037:8340443,28959745:142049 -k1,16037:9673937,28959745:142049 -k1,16037:12073701,28959745:142049 -k1,16037:12867179,28959745:142050 -k1,16037:14711198,28959745:142049 -k1,16037:17363931,28959745:142049 -k1,16037:18652205,28959745:142049 -k1,16037:20538167,28959745:142049 -k1,16037:22415610,28959745:142050 -k1,16037:23961440,28959745:142049 -k1,16037:27321962,28959745:142049 -k1,16037:30554034,28959745:142049 -k1,16038:32583029,28959745:0 -k1,16038:32583029,28959745:0 -) -v1,16040:6630773,30096784:0,393216,0 -(1,16045:6630773,30964287:25952256,1260719,196608 -g1,16045:6630773,30964287 -g1,16045:6630773,30964287 -g1,16045:6434165,30964287 -(1,16045:6434165,30964287:0,1260719,196608 -r1,16045:32779637,30964287:26345472,1457327,196608 -k1,16045:6434165,30964287:-26345472 -) -(1,16045:6434165,30964287:26345472,1260719,196608 -[1,16045:6630773,30964287:25952256,1064111,0 -(1,16044:6630773,30288673:25952256,388497,9436 -(1,16041:6630773,30288673:0,0,0 -g1,16041:6630773,30288673 -g1,16041:6630773,30288673 -g1,16041:6303093,30288673 -(1,16041:6303093,30288673:0,0,0 -) -g1,16041:6630773,30288673 -) -g1,16044:6946919,30288673 -h1,16044:10424521,30288673:0,0,0 -k1,16044:32583029,30288673:22158508 -g1,16044:32583029,30288673 -) -(1,16044:6630773,30954851:25952256,388497,9436 -h1,16044:6630773,30954851:0,0,0 -g1,16044:8843793,30954851 -g1,16044:10108376,30954851 -h1,16044:10424522,30954851:0,0,0 -k1,16044:32583030,30954851:22158508 -g1,16044:32583030,30954851 -) -] -) -g1,16045:32583029,30964287 -g1,16045:6630773,30964287 -g1,16045:6630773,30964287 -g1,16045:32583029,30964287 -g1,16045:32583029,30964287 -) -h1,16045:6630773,31160895:0,0,0 -v1,16049:6630773,32768797:0,393216,0 -(1,16055:6630773,34397375:25952256,2021794,196608 -g1,16055:6630773,34397375 -g1,16055:6630773,34397375 -g1,16055:6434165,34397375 -(1,16055:6434165,34397375:0,2021794,196608 -r1,16055:32779637,34397375:26345472,2218402,196608 -k1,16055:6434165,34397375:-26345472 -) -(1,16055:6434165,34397375:26345472,2021794,196608 -[1,16055:6630773,34397375:25952256,1825186,0 -(1,16051:6630773,32982707:25952256,410518,107478 -(1,16050:6630773,32982707:0,0,0 -g1,16050:6630773,32982707 -g1,16050:6630773,32982707 -g1,16050:6303093,32982707 -(1,16050:6303093,32982707:0,0,0 -) -g1,16050:6630773,32982707 -) -g1,16051:11056813,32982707 -g1,16051:12005251,32982707 -k1,16051:12005251,32982707:0 -h1,16051:24967224,32982707:0,0,0 -k1,16051:32583029,32982707:7615805 -g1,16051:32583029,32982707 -) -(1,16052:6630773,33648885:25952256,410518,82312 -h1,16052:6630773,33648885:0,0,0 -g1,16052:6946919,33648885 -g1,16052:7263065,33648885 -g1,16052:7579211,33648885 -g1,16052:7895357,33648885 -g1,16052:8211503,33648885 -g1,16052:8527649,33648885 -g1,16052:8843795,33648885 -g1,16052:9159941,33648885 -g1,16052:9476087,33648885 -g1,16052:9792233,33648885 -g1,16052:10108379,33648885 -g1,16052:10424525,33648885 -g1,16052:10740671,33648885 -g1,16052:11056817,33648885 -g1,16052:11372963,33648885 -g1,16052:11689109,33648885 -g1,16052:12005255,33648885 -g1,16052:12321401,33648885 -g1,16052:12637547,33648885 -g1,16052:12953693,33648885 -g1,16052:13269839,33648885 -g1,16052:13585985,33648885 -g1,16052:13902131,33648885 -g1,16052:14218277,33648885 -g1,16052:14534423,33648885 -g1,16052:14850569,33648885 -g1,16052:15166715,33648885 -g1,16052:15482861,33648885 -g1,16052:15799007,33648885 -g1,16052:16115153,33648885 -g1,16052:18328173,33648885 -g1,16052:18960465,33648885 -g1,16052:22438069,33648885 -g1,16052:24967235,33648885 -k1,16052:24967235,33648885:0 -h1,16052:26864110,33648885:0,0,0 -k1,16052:32583029,33648885:5718919 -g1,16052:32583029,33648885 -) -(1,16053:6630773,34315063:25952256,404226,82312 -h1,16053:6630773,34315063:0,0,0 -g1,16053:6946919,34315063 -g1,16053:7263065,34315063 -g1,16053:7579211,34315063 -g1,16053:7895357,34315063 -g1,16053:8211503,34315063 -g1,16053:8527649,34315063 -g1,16053:8843795,34315063 -g1,16053:9159941,34315063 -g1,16053:9476087,34315063 -g1,16053:9792233,34315063 -g1,16053:10108379,34315063 -g1,16053:10424525,34315063 -g1,16053:10740671,34315063 -g1,16053:11056817,34315063 -g1,16053:11372963,34315063 -g1,16053:11689109,34315063 -g1,16053:12005255,34315063 -g1,16053:12321401,34315063 -g1,16053:12637547,34315063 -g1,16053:12953693,34315063 -g1,16053:13269839,34315063 -g1,16053:13585985,34315063 -g1,16053:13902131,34315063 -g1,16053:14218277,34315063 -g1,16053:14534423,34315063 -g1,16053:14850569,34315063 -g1,16053:15166715,34315063 -g1,16053:15482861,34315063 -g1,16053:15799007,34315063 -g1,16053:16115153,34315063 -g1,16053:19276610,34315063 -g1,16053:19908902,34315063 -g1,16053:23070360,34315063 -g1,16053:25599526,34315063 -g1,16053:28128692,34315063 -h1,16053:30657857,34315063:0,0,0 -k1,16053:32583029,34315063:1925172 -g1,16053:32583029,34315063 -) -] -) -g1,16055:32583029,34397375 -g1,16055:6630773,34397375 -g1,16055:6630773,34397375 -g1,16055:32583029,34397375 -g1,16055:32583029,34397375 -) -h1,16055:6630773,34593983:0,0,0 -v1,16059:6630773,36201884:0,393216,0 -(1,16073:6630773,39942959:25952256,4134291,196608 -g1,16073:6630773,39942959 -g1,16073:6630773,39942959 -g1,16073:6434165,39942959 -(1,16073:6434165,39942959:0,4134291,196608 -r1,16073:32779637,39942959:26345472,4330899,196608 -k1,16073:6434165,39942959:-26345472 -) -(1,16073:6434165,39942959:26345472,4134291,196608 -[1,16073:6630773,39942959:25952256,3937683,0 -(1,16061:6630773,36415794:25952256,410518,101187 -(1,16060:6630773,36415794:0,0,0 -g1,16060:6630773,36415794 -g1,16060:6630773,36415794 -g1,16060:6303093,36415794 -(1,16060:6303093,36415794:0,0,0 -) -g1,16060:6630773,36415794 -) -k1,16061:6630773,36415794:0 -g1,16061:13585979,36415794 -h1,16061:15482853,36415794:0,0,0 -k1,16061:32583029,36415794:17100176 -g1,16061:32583029,36415794 -) -(1,16066:6630773,37147508:25952256,404226,9436 -(1,16063:6630773,37147508:0,0,0 -g1,16063:6630773,37147508 -g1,16063:6630773,37147508 -g1,16063:6303093,37147508 -(1,16063:6303093,37147508:0,0,0 -) -g1,16063:6630773,37147508 -) -g1,16066:7579210,37147508 -g1,16066:7895356,37147508 -g1,16066:8211502,37147508 -g1,16066:8527648,37147508 -g1,16066:8843794,37147508 -g1,16066:9159940,37147508 -g1,16066:9476086,37147508 -g1,16066:9792232,37147508 -g1,16066:11372961,37147508 -g1,16066:11689107,37147508 -g1,16066:12005253,37147508 -g1,16066:12321399,37147508 -g1,16066:12637545,37147508 -g1,16066:12953691,37147508 -g1,16066:13269837,37147508 -g1,16066:13585983,37147508 -g1,16066:15166712,37147508 -g1,16066:15482858,37147508 -g1,16066:15799004,37147508 -g1,16066:16115150,37147508 -g1,16066:16431296,37147508 -g1,16066:16747442,37147508 -g1,16066:17063588,37147508 -g1,16066:17379734,37147508 -g1,16066:18960463,37147508 -g1,16066:19276609,37147508 -g1,16066:19592755,37147508 -g1,16066:19908901,37147508 -g1,16066:20225047,37147508 -g1,16066:20541193,37147508 -g1,16066:20857339,37147508 -g1,16066:21173485,37147508 -h1,16066:22438068,37147508:0,0,0 -k1,16066:32583029,37147508:10144961 -g1,16066:32583029,37147508 -) -(1,16066:6630773,37813686:25952256,404226,6290 -h1,16066:6630773,37813686:0,0,0 -g1,16066:7579210,37813686 -g1,16066:7895356,37813686 -g1,16066:8211502,37813686 -g1,16066:11372959,37813686 -g1,16066:11689105,37813686 -g1,16066:12005251,37813686 -g1,16066:15166708,37813686 -g1,16066:15482854,37813686 -g1,16066:15799000,37813686 -g1,16066:18960457,37813686 -h1,16066:22438059,37813686:0,0,0 -k1,16066:32583029,37813686:10144970 -g1,16066:32583029,37813686 -) -(1,16068:6630773,39135224:25952256,410518,76021 -(1,16067:6630773,39135224:0,0,0 -g1,16067:6630773,39135224 -g1,16067:6630773,39135224 -g1,16067:6303093,39135224 -(1,16067:6303093,39135224:0,0,0 -) -g1,16067:6630773,39135224 -) -h1,16068:13902123,39135224:0,0,0 -k1,16068:32583029,39135224:18680906 -g1,16068:32583029,39135224 -) -(1,16072:6630773,39866938:25952256,404226,76021 -(1,16070:6630773,39866938:0,0,0 -g1,16070:6630773,39866938 -g1,16070:6630773,39866938 -g1,16070:6303093,39866938 -(1,16070:6303093,39866938:0,0,0 -) -g1,16070:6630773,39866938 -) -g1,16072:7579210,39866938 -g1,16072:8843793,39866938 -g1,16072:10740667,39866938 -g1,16072:11689104,39866938 -h1,16072:12321395,39866938:0,0,0 -k1,16072:32583029,39866938:20261634 -g1,16072:32583029,39866938 -) -] -) -g1,16073:32583029,39942959 -g1,16073:6630773,39942959 -g1,16073:6630773,39942959 -g1,16073:32583029,39942959 -g1,16073:32583029,39942959 -) -h1,16073:6630773,40139567:0,0,0 -v1,16077:6630773,41922779:0,393216,0 -(1,16078:6630773,45116945:25952256,3587382,589824 -g1,16078:6630773,45116945 -(1,16078:6630773,45116945:25952256,3587382,589824 -(1,16078:6630773,45706769:25952256,4177206,0 -[1,16078:6630773,45706769:25952256,4177206,0 -(1,16078:6630773,45706769:25952256,4150992,0 -r1,16078:6656987,45706769:26214,4150992,0 -[1,16078:6656987,45706769:25899828,4150992,0 -(1,16078:6656987,45116945:25899828,2971344,0 -[1,16078:7246811,45116945:24720180,2971344,0 -(1,16078:7246811,43307486:24720180,1161885,196608 -(1,16077:7246811,43307486:0,1161885,196608 -r1,16078:8794447,43307486:1547636,1358493,196608 -k1,16077:7246811,43307486:-1547636 -) -(1,16077:7246811,43307486:1547636,1161885,196608 -) -k1,16077:9018676,43307486:224229 -k1,16077:10439591,43307486:224228 -k1,16077:11646860,43307486:224229 -k1,16077:14273639,43307486:224229 -k1,16077:17523664,43307486:224228 -k1,16077:20837916,43307486:224229 -k1,16077:22917469,43307486:224229 -k1,16077:24878402,43307486:224229 -k1,16077:26496581,43307486:224228 -(1,16077:26496581,43307486:0,452978,115847 -r1,16078:30723677,43307486:4227096,568825,115847 -k1,16077:26496581,43307486:-4227096 -) -(1,16077:26496581,43307486:4227096,452978,115847 -k1,16077:26496581,43307486:3277 -h1,16077:30720400,43307486:0,411205,112570 -) -k1,16077:30947906,43307486:224229 -k1,16077:31966991,43307486:0 -) -(1,16078:7246811,44148974:24720180,513147,126483 -k1,16077:9116422,44148974:216138 -k1,16077:13117263,44148974:216137 -k1,16077:13961236,44148974:216138 -k1,16077:16843378,44148974:216137 -k1,16077:17710944,44148974:216138 -k1,16077:19670995,44148974:216138 -k1,16077:22977155,44148974:216137 -k1,16077:25222288,44148974:216138 -k1,16077:27140395,44148974:216137 -k1,16077:30661514,44148974:216138 -k1,16078:31966991,44148974:0 -) -(1,16078:7246811,44990462:24720180,513147,126483 -k1,16077:8345142,44990462:213595 -k1,16077:12169772,44990462:213596 -k1,16077:13374927,44990462:213595 -(1,16077:13374927,44990462:0,452978,115847 -r1,16078:14788328,44990462:1413401,568825,115847 -k1,16077:13374927,44990462:-1413401 -) -(1,16077:13374927,44990462:1413401,452978,115847 -k1,16077:13374927,44990462:3277 -h1,16077:14785051,44990462:0,411205,112570 -) -k1,16077:15001923,44990462:213595 -k1,16077:16406963,44990462:213595 -(1,16077:16406963,44990462:0,414482,115847 -r1,16078:16765229,44990462:358266,530329,115847 -k1,16077:16406963,44990462:-358266 -) -(1,16077:16406963,44990462:358266,414482,115847 -k1,16077:16406963,44990462:3277 -h1,16077:16761952,44990462:0,411205,112570 -) -k1,16077:17152495,44990462:213596 -k1,16077:19251561,44990462:213595 -k1,16077:20569438,44990462:213595 -k1,16077:21530800,44990462:213596 -k1,16077:23257621,44990462:213595 -k1,16077:24122644,44990462:213595 -k1,16077:25681039,44990462:213596 -k1,16077:27393442,44990462:213595 -k1,16077:28219799,44990462:213595 -k1,16077:29452479,44990462:213595 -k1,16077:30738244,44990462:213596 -k1,16077:31611131,44990462:213595 -k1,16077:31966991,44990462:0 -) -] ) ] -r1,16078:32583029,45706769:26214,4150992,0 +[1,16108:3078558,4812305:0,0,0 +(1,16108:3078558,49800853:0,16384,2228224 +g1,16108:29030814,49800853 +g1,16108:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16108:36151628,51504789:16384,1179648,0 ) -] -) -) -g1,16078:32583029,45116945 -) -] -(1,16078:32583029,45706769:0,0,0 -g1,16078:32583029,45706769 -) -) -] -(1,16078:6630773,47279633:25952256,0,0 -h1,16078:6630773,47279633:25952256,0,0 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] -h1,16078:4262630,4025873:0,0,0 -] -!27556 +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16108:37855564,49800853:1179648,16384,0 +) +) +k1,16108:3078556,49800853:-34777008 +) +] +g1,16108:6630773,4812305 +g1,16108:6630773,4812305 +g1,16108:9744388,4812305 +g1,16108:11175694,4812305 +k1,16108:31387652,4812305:20211958 +) +) +] +[1,16108:6630773,45706769:25952256,40108032,0 +(1,16108:6630773,45706769:25952256,40108032,0 +(1,16108:6630773,45706769:0,0,0 +g1,16108:6630773,45706769 +) +[1,16108:6630773,45706769:25952256,40108032,0 +(1,16021:6630773,6254097:25952256,513147,134348 +k1,16020:7981705,6254097:159487 +k1,16020:11166989,6254097:159487 +k1,16020:12472702,6254097:159488 +(1,16020:12472702,6254097:0,452978,115847 +r1,16020:15996374,6254097:3523672,568825,115847 +k1,16020:12472702,6254097:-3523672 +) +(1,16020:12472702,6254097:3523672,452978,115847 +k1,16020:12472702,6254097:3277 +h1,16020:15993097,6254097:0,411205,112570 +) +k1,16020:16155861,6254097:159487 +k1,16020:17690949,6254097:159487 +k1,16020:19593694,6254097:159487 +k1,16020:20369220,6254097:159488 +k1,16020:21547792,6254097:159487 +k1,16020:23972859,6254097:159487 +k1,16020:27534975,6254097:159487 +k1,16020:28642114,6254097:159488 +k1,16020:29820686,6254097:159487 +k1,16020:32583029,6254097:0 +) +(1,16021:6630773,7095585:25952256,513147,126483 +k1,16020:10578421,7095585:162944 +k1,16020:11501583,7095585:162944 +k1,16020:14103777,7095585:162944 +(1,16020:14103777,7095585:0,452978,115847 +r1,16020:18330873,7095585:4227096,568825,115847 +k1,16020:14103777,7095585:-4227096 +) +(1,16020:14103777,7095585:4227096,452978,115847 +k1,16020:14103777,7095585:3277 +h1,16020:18327596,7095585:0,411205,112570 +) +k1,16020:18493817,7095585:162944 +k1,16020:21058000,7095585:162944 +k1,16020:22955027,7095585:162944 +k1,16020:23769399,7095585:162944 +k1,16020:24680109,7095585:162944 +k1,16020:27966499,7095585:162944 +k1,16020:28890971,7095585:162944 +k1,16020:30795207,7095585:162944 +k1,16020:32583029,7095585:0 +) +(1,16021:6630773,7937073:25952256,505283,134348 +k1,16020:8238917,7937073:244340 +k1,16020:9166142,7937073:244340 +k1,16020:11060679,7937073:244340 +k1,16020:13596813,7937073:244340 +k1,16020:15358311,7937073:244340 +k1,16020:16885846,7937073:244340 +k1,16020:18802665,7937073:244340 +k1,16020:19729890,7937073:244340 +k1,16020:22518993,7937073:244340 +k1,16020:25154742,7937073:244340 +k1,16020:27620097,7937073:244340 +k1,16020:29258388,7937073:244340 +k1,16020:32583029,7937073:0 +) +(1,16021:6630773,8778561:25952256,513147,126483 +g1,16020:8948126,8778561 +g1,16020:10677621,8778561 +g1,16020:11528278,8778561 +g1,16020:12475273,8778561 +g1,16020:14913212,8778561 +g1,16020:15728479,8778561 +g1,16020:16946793,8778561 +g1,16020:18129062,8778561 +g1,16020:19014453,8778561 +g1,16020:21289207,8778561 +k1,16021:32583029,8778561:9251720 +g1,16021:32583029,8778561 +) +v1,16023:6630773,9965046:0,393216,0 +(1,16029:6630773,11514456:25952256,1942626,196608 +g1,16029:6630773,11514456 +g1,16029:6630773,11514456 +g1,16029:6434165,11514456 +(1,16029:6434165,11514456:0,1942626,196608 +r1,16029:32779637,11514456:26345472,2139234,196608 +k1,16029:6434165,11514456:-26345472 +) +(1,16029:6434165,11514456:26345472,1942626,196608 +[1,16029:6630773,11514456:25952256,1746018,0 +(1,16028:6630773,10172664:25952256,404226,9436 +(1,16024:6630773,10172664:0,0,0 +g1,16024:6630773,10172664 +g1,16024:6630773,10172664 +g1,16024:6303093,10172664 +(1,16024:6303093,10172664:0,0,0 +) +g1,16024:6630773,10172664 +) +g1,16028:8211502,10172664 +g1,16028:9792231,10172664 +g1,16028:11372960,10172664 +h1,16028:12637543,10172664:0,0,0 +k1,16028:32583029,10172664:19945486 +g1,16028:32583029,10172664 +) +(1,16028:6630773,10838842:25952256,388497,9436 +h1,16028:6630773,10838842:0,0,0 +g1,16028:6946919,10838842 +g1,16028:8211502,10838842 +g1,16028:9792231,10838842 +g1,16028:10108377,10838842 +g1,16028:11372960,10838842 +h1,16028:12321397,10838842:0,0,0 +k1,16028:32583029,10838842:20261632 +g1,16028:32583029,10838842 +) +(1,16028:6630773,11505020:25952256,404226,9436 +h1,16028:6630773,11505020:0,0,0 +g1,16028:8211502,11505020 +g1,16028:9792231,11505020 +g1,16028:10108377,11505020 +g1,16028:10424523,11505020 +g1,16028:11372960,11505020 +g1,16028:12321397,11505020 +h1,16028:12953688,11505020:0,0,0 +k1,16028:32583028,11505020:19629340 +g1,16028:32583028,11505020 +) +] +) +g1,16029:32583029,11514456 +g1,16029:6630773,11514456 +g1,16029:6630773,11514456 +g1,16029:32583029,11514456 +g1,16029:32583029,11514456 +) +h1,16029:6630773,11711064:0,0,0 +v1,16033:6630773,13417857:0,393216,0 +(1,16037:6630773,13739245:25952256,714604,196608 +g1,16037:6630773,13739245 +g1,16037:6630773,13739245 +g1,16037:6434165,13739245 +(1,16037:6434165,13739245:0,714604,196608 +r1,16037:32779637,13739245:26345472,911212,196608 +k1,16037:6434165,13739245:-26345472 +) +(1,16037:6434165,13739245:26345472,714604,196608 +[1,16037:6630773,13739245:25952256,517996,0 +(1,16035:6630773,13631767:25952256,410518,107478 +(1,16034:6630773,13631767:0,0,0 +g1,16034:6630773,13631767 +g1,16034:6630773,13631767 +g1,16034:6303093,13631767 +(1,16034:6303093,13631767:0,0,0 +) +g1,16034:6630773,13631767 +) +g1,16035:11056813,13631767 +g1,16035:12005251,13631767 +g1,16035:24651079,13631767 +g1,16035:26864099,13631767 +g1,16035:27496391,13631767 +h1,16035:29077120,13631767:0,0,0 +k1,16035:32583029,13631767:3505909 +g1,16035:32583029,13631767 +) +] +) +g1,16037:32583029,13739245 +g1,16037:6630773,13739245 +g1,16037:6630773,13739245 +g1,16037:32583029,13739245 +g1,16037:32583029,13739245 +) +h1,16037:6630773,13935853:0,0,0 +v1,16041:6630773,15642646:0,393216,0 +(1,16062:6630773,22103151:25952256,6853721,196608 +g1,16062:6630773,22103151 +g1,16062:6630773,22103151 +g1,16062:6434165,22103151 +(1,16062:6434165,22103151:0,6853721,196608 +r1,16062:32779637,22103151:26345472,7050329,196608 +k1,16062:6434165,22103151:-26345472 +) +(1,16062:6434165,22103151:26345472,6853721,196608 +[1,16062:6630773,22103151:25952256,6657113,0 +(1,16043:6630773,15856556:25952256,410518,101187 +(1,16042:6630773,15856556:0,0,0 +g1,16042:6630773,15856556 +g1,16042:6630773,15856556 +g1,16042:6303093,15856556 +(1,16042:6303093,15856556:0,0,0 +) +g1,16042:6630773,15856556 +) +k1,16043:6630773,15856556:0 +g1,16043:13585979,15856556 +h1,16043:15482853,15856556:0,0,0 +k1,16043:32583029,15856556:17100176 +g1,16043:32583029,15856556 +) +(1,16048:6630773,16588270:25952256,404226,9436 +(1,16045:6630773,16588270:0,0,0 +g1,16045:6630773,16588270 +g1,16045:6630773,16588270 +g1,16045:6303093,16588270 +(1,16045:6303093,16588270:0,0,0 +) +g1,16045:6630773,16588270 +) +g1,16048:7579210,16588270 +g1,16048:7895356,16588270 +g1,16048:8211502,16588270 +g1,16048:8527648,16588270 +g1,16048:8843794,16588270 +g1,16048:9159940,16588270 +g1,16048:10740669,16588270 +g1,16048:11056815,16588270 +g1,16048:11372961,16588270 +g1,16048:11689107,16588270 +g1,16048:12005253,16588270 +g1,16048:12321399,16588270 +g1,16048:13902128,16588270 +g1,16048:14218274,16588270 +g1,16048:14534420,16588270 +g1,16048:14850566,16588270 +g1,16048:15166712,16588270 +g1,16048:15482858,16588270 +g1,16048:17063587,16588270 +g1,16048:17379733,16588270 +g1,16048:17695879,16588270 +g1,16048:18012025,16588270 +g1,16048:18328171,16588270 +g1,16048:18644317,16588270 +h1,16048:19908900,16588270:0,0,0 +k1,16048:32583029,16588270:12674129 +g1,16048:32583029,16588270 +) +(1,16048:6630773,17254448:25952256,410518,107478 +h1,16048:6630773,17254448:0,0,0 +g1,16048:7579210,17254448 +g1,16048:10740667,17254448 +g1,16048:13902124,17254448 +g1,16048:17063581,17254448 +g1,16048:17379727,17254448 +h1,16048:19908892,17254448:0,0,0 +k1,16048:32583029,17254448:12674137 +g1,16048:32583029,17254448 +) +(1,16050:6630773,18575986:25952256,410518,76021 +(1,16049:6630773,18575986:0,0,0 +g1,16049:6630773,18575986 +g1,16049:6630773,18575986 +g1,16049:6303093,18575986 +(1,16049:6303093,18575986:0,0,0 +) +g1,16049:6630773,18575986 +) +h1,16050:13902123,18575986:0,0,0 +k1,16050:32583029,18575986:18680906 +g1,16050:32583029,18575986 +) +(1,16055:6630773,19307700:25952256,404226,76021 +(1,16052:6630773,19307700:0,0,0 +g1,16052:6630773,19307700 +g1,16052:6630773,19307700 +g1,16052:6303093,19307700 +(1,16052:6303093,19307700:0,0,0 +) +g1,16052:6630773,19307700 +) +g1,16055:7579210,19307700 +g1,16055:8843793,19307700 +g1,16055:10108376,19307700 +g1,16055:10740668,19307700 +h1,16055:11056814,19307700:0,0,0 +k1,16055:32583030,19307700:21526216 +g1,16055:32583030,19307700 +) +(1,16055:6630773,19973878:25952256,404226,7863 +h1,16055:6630773,19973878:0,0,0 +g1,16055:7579210,19973878 +g1,16055:10108376,19973878 +g1,16055:11372959,19973878 +g1,16055:12005251,19973878 +h1,16055:12321397,19973878:0,0,0 +k1,16055:32583029,19973878:20261632 +g1,16055:32583029,19973878 +) +(1,16057:6630773,21295416:25952256,410518,76021 +(1,16056:6630773,21295416:0,0,0 +g1,16056:6630773,21295416 +g1,16056:6630773,21295416 +g1,16056:6303093,21295416 +(1,16056:6303093,21295416:0,0,0 +) +g1,16056:6630773,21295416 +) +k1,16057:6630773,21295416:0 +h1,16057:16431289,21295416:0,0,0 +k1,16057:32583029,21295416:16151740 +g1,16057:32583029,21295416 +) +(1,16061:6630773,22027130:25952256,404226,76021 +(1,16059:6630773,22027130:0,0,0 +g1,16059:6630773,22027130 +g1,16059:6630773,22027130 +g1,16059:6303093,22027130 +(1,16059:6303093,22027130:0,0,0 +) +g1,16059:6630773,22027130 +) +g1,16061:7579210,22027130 +g1,16061:8843793,22027130 +g1,16061:10740667,22027130 +g1,16061:11689104,22027130 +h1,16061:12321395,22027130:0,0,0 +k1,16061:32583029,22027130:20261634 +g1,16061:32583029,22027130 +) +] +) +g1,16062:32583029,22103151 +g1,16062:6630773,22103151 +g1,16062:6630773,22103151 +g1,16062:32583029,22103151 +g1,16062:32583029,22103151 +) +h1,16062:6630773,22299759:0,0,0 +(1,16067:6630773,23661554:25952256,513147,134348 +h1,16066:6630773,23661554:983040,0,0 +k1,16066:9318226,23661554:225265 +k1,16066:9899351,23661554:225265 +k1,16066:13715989,23661554:225265 +k1,16066:16295307,23661554:225265 +k1,16066:17329942,23661554:225265 +k1,16066:20773680,23661554:225265 +k1,16066:21990505,23661554:225265 +k1,16066:24687788,23661554:225265 +k1,16066:27902805,23661554:225265 +k1,16066:28659567,23661554:225265 +k1,16066:30739501,23661554:225265 +k1,16066:32583029,23661554:0 +) +(1,16067:6630773,24503042:25952256,513147,126483 +k1,16066:7693566,24503042:253423 +k1,16066:8966074,24503042:253423 +k1,16066:11833728,24503042:253423 +k1,16066:12746442,24503042:253422 +k1,16066:14018950,24503042:253423 +k1,16066:17577354,24503042:253423 +k1,16066:18446815,24503042:253423 +k1,16066:19719323,24503042:253423 +k1,16066:21141253,24503042:253423 +k1,16066:22077560,24503042:253422 +k1,16066:24577557,24503042:253423 +k1,16066:25318514,24503042:253369 +k1,16066:26554977,24503042:253423 +k1,16066:27954624,24503042:253422 +k1,16066:29411288,24503042:253423 +k1,16066:31835263,24503042:253423 +k1,16066:32583029,24503042:0 +) +(1,16067:6630773,25344530:25952256,513147,134348 +k1,16066:10517331,25344530:296496 +k1,16066:13274048,25344530:296495 +k1,16066:13926404,25344530:296496 +k1,16066:17832623,25344530:296496 +k1,16066:18788410,25344530:296495 +k1,16066:20103991,25344530:296496 +k1,16066:22580870,25344530:296496 +k1,16066:24390591,25344530:296495 +k1,16066:25634738,25344530:296496 +k1,16066:27964816,25344530:296496 +k1,16066:29280396,25344530:296495 +k1,16066:31139926,25344530:296496 +k1,16066:32583029,25344530:0 +) +(1,16067:6630773,26186018:25952256,513147,134348 +k1,16066:10161378,26186018:168608 +k1,16066:11719349,26186018:168608 +k1,16066:13926126,26186018:168607 +k1,16066:14710772,26186018:168608 +k1,16066:16366392,26186018:168608 +k1,16066:18296608,26186018:168608 +k1,16066:20688852,26186018:168608 +k1,16066:21961742,26186018:168608 +k1,16066:22878115,26186018:168607 +k1,16066:24459024,26186018:168608 +k1,16066:26021583,26186018:168608 +k1,16066:28885687,26186018:168608 +(1,16066:28885687,26186018:0,459977,115847 +r1,16066:32409359,26186018:3523672,575824,115847 +k1,16066:28885687,26186018:-3523672 +) +(1,16066:28885687,26186018:3523672,459977,115847 +k1,16066:28885687,26186018:3277 +h1,16066:32406082,26186018:0,411205,112570 +) +k1,16066:32583029,26186018:0 +) +(1,16067:6630773,27027506:25952256,513147,134348 +k1,16066:9339201,27027506:148592 +k1,16066:10435444,27027506:148592 +k1,16066:10939896,27027506:148592 +k1,16066:12961507,27027506:148592 +k1,16066:16851549,27027506:148592 +k1,16066:18104423,27027506:148592 +k1,16066:19000781,27027506:148592 +k1,16066:21187542,27027506:148591 +k1,16066:21952172,27027506:148592 +k1,16066:22456624,27027506:148592 +k1,16066:24478235,27027506:148592 +k1,16066:25309712,27027506:148592 +k1,16066:28129551,27027506:148592 +k1,16066:29950622,27027506:148592 +k1,16066:30727049,27027506:148592 +k1,16066:32583029,27027506:0 +) +(1,16067:6630773,27868994:25952256,513147,102891 +g1,16066:8370753,27868994 +g1,16066:10021604,27868994 +g1,16066:11389340,27868994 +g1,16066:12689574,27868994 +g1,16066:14622886,27868994 +g1,16066:15481407,27868994 +g1,16066:18442979,27868994 +g1,16066:19714377,27868994 +g1,16066:21477295,27868994 +g1,16066:23814308,27868994 +k1,16067:32583029,27868994:6450057 +g1,16067:32583029,27868994 +) +(1,16069:6630773,28710482:25952256,513147,126483 +h1,16068:6630773,28710482:983040,0,0 +k1,16068:10616799,28710482:213118 +(1,16068:10616799,28710482:0,459977,115847 +r1,16068:15547319,28710482:4930520,575824,115847 +k1,16068:10616799,28710482:-4930520 +) +(1,16068:10616799,28710482:4930520,459977,115847 +k1,16068:10616799,28710482:3277 +h1,16068:15544042,28710482:0,411205,112570 +) +k1,16068:15760437,28710482:213118 +k1,16068:16505052,28710482:213118 +k1,16068:17074030,28710482:213118 +k1,16068:19929560,28710482:213118 +k1,16068:20952048,28710482:213118 +(1,16068:20952048,28710482:0,459977,115847 +r1,16068:24475720,28710482:3523672,575824,115847 +k1,16068:20952048,28710482:-3523672 +) +(1,16068:20952048,28710482:3523672,459977,115847 +k1,16068:20952048,28710482:3277 +h1,16068:24472443,28710482:0,411205,112570 +) +k1,16068:24688838,28710482:213118 +k1,16068:26186462,28710482:213118 +k1,16068:28777882,28710482:213118 +k1,16068:31171383,28710482:213118 +k1,16069:32583029,28710482:0 +) +(1,16069:6630773,29551970:25952256,513147,126483 +k1,16068:9002167,29551970:157588 +k1,16068:11361765,29551970:157588 +k1,16068:12170781,29551970:157588 +k1,16068:14072282,29551970:157588 +k1,16068:15743097,29551970:157589 +k1,16068:16516723,29551970:157588 +k1,16068:19888852,29551970:157588 +k1,16068:21317838,29551970:157588 +k1,16068:25415450,29551970:157588 +k1,16068:26240194,29551970:157588 +k1,16068:29438612,29551970:157547 +k1,16068:32583029,29551970:0 +) +(1,16069:6630773,30393458:25952256,513147,126483 +k1,16068:8296131,30393458:237328 +k1,16068:11127373,30393458:237327 +k1,16068:11896198,30393458:237328 +k1,16068:13418031,30393458:237327 +k1,16068:14674444,30393458:237328 +k1,16068:17395586,30393458:237327 +k1,16068:19925363,30393458:237328 +k1,16068:21266972,30393458:237327 +k1,16068:22252066,30393458:237328 +k1,16068:24986970,30393458:237327 +k1,16068:25840336,30393458:237328 +k1,16068:27096748,30393458:237327 +k1,16068:29145491,30393458:237328 +k1,16068:30365859,30393458:237328 +k1,16068:31794631,30393458:237327 +k1,16068:32583029,30393458:0 +) +(1,16069:6630773,31234946:25952256,513147,126483 +k1,16068:9468950,31234946:223946 +k1,16068:12524706,31234946:223945 +k1,16068:13434814,31234946:223946 +k1,16068:14980621,31234946:223946 +k1,16068:15863859,31234946:223946 +k1,16068:17106889,31234946:223945 +k1,16068:19511218,31234946:223946 +k1,16068:22990993,31234946:223946 +k1,16068:23570798,31234946:223945 +k1,16068:25267338,31234946:223946 +k1,16068:27004510,31234946:223946 +k1,16068:27879884,31234946:223946 +k1,16068:29819562,31234946:223945 +k1,16068:31269687,31234946:223946 +k1,16068:32583029,31234946:0 +) +(1,16069:6630773,32076434:25952256,513147,126483 +k1,16068:7776764,32076434:256012 +k1,16068:10032280,32076434:256013 +k1,16068:10947584,32076434:256012 +k1,16068:13202445,32076434:256013 +k1,16068:15568061,32076434:256012 +k1,16068:18349832,32076434:256013 +k1,16068:21035264,32076434:256012 +k1,16068:23955316,32076434:256013 +k1,16068:24878484,32076434:256012 +k1,16068:28175311,32076434:255956 +k1,16068:30957736,32076434:256012 +k1,16069:32583029,32076434:0 +) +(1,16069:6630773,32917922:25952256,513147,134348 +k1,16068:7849633,32917922:228611 +k1,16068:9645866,32917922:228612 +k1,16068:11065922,32917922:228611 +k1,16068:13552248,32917922:228611 +k1,16068:14432288,32917922:228612 +k1,16068:16362869,32917922:228611 +k1,16068:19102164,32917922:228611 +k1,16068:20477001,32917922:228612 +k1,16068:22449525,32917922:228611 +k1,16068:24413529,32917922:228611 +k1,16068:26045922,32917922:228612 +k1,16068:29493006,32917922:228611 +k1,16068:32583029,32917922:0 +) +(1,16069:6630773,33759410:25952256,505283,7863 +k1,16069:32583028,33759410:23923260 +g1,16069:32583028,33759410 +) +v1,16071:6630773,34945896:0,393216,0 +(1,16076:6630773,35813399:25952256,1260719,196608 +g1,16076:6630773,35813399 +g1,16076:6630773,35813399 +g1,16076:6434165,35813399 +(1,16076:6434165,35813399:0,1260719,196608 +r1,16076:32779637,35813399:26345472,1457327,196608 +k1,16076:6434165,35813399:-26345472 +) +(1,16076:6434165,35813399:26345472,1260719,196608 +[1,16076:6630773,35813399:25952256,1064111,0 +(1,16075:6630773,35137785:25952256,388497,9436 +(1,16072:6630773,35137785:0,0,0 +g1,16072:6630773,35137785 +g1,16072:6630773,35137785 +g1,16072:6303093,35137785 +(1,16072:6303093,35137785:0,0,0 +) +g1,16072:6630773,35137785 +) +g1,16075:6946919,35137785 +h1,16075:10424521,35137785:0,0,0 +k1,16075:32583029,35137785:22158508 +g1,16075:32583029,35137785 +) +(1,16075:6630773,35803963:25952256,388497,9436 +h1,16075:6630773,35803963:0,0,0 +g1,16075:8843793,35803963 +g1,16075:10108376,35803963 +h1,16075:10424522,35803963:0,0,0 +k1,16075:32583030,35803963:22158508 +g1,16075:32583030,35803963 +) +] +) +g1,16076:32583029,35813399 +g1,16076:6630773,35813399 +g1,16076:6630773,35813399 +g1,16076:32583029,35813399 +g1,16076:32583029,35813399 +) +h1,16076:6630773,36010007:0,0,0 +v1,16080:6630773,37716800:0,393216,0 +(1,16086:6630773,39345378:25952256,2021794,196608 +g1,16086:6630773,39345378 +g1,16086:6630773,39345378 +g1,16086:6434165,39345378 +(1,16086:6434165,39345378:0,2021794,196608 +r1,16086:32779637,39345378:26345472,2218402,196608 +k1,16086:6434165,39345378:-26345472 +) +(1,16086:6434165,39345378:26345472,2021794,196608 +[1,16086:6630773,39345378:25952256,1825186,0 +(1,16082:6630773,37930710:25952256,410518,107478 +(1,16081:6630773,37930710:0,0,0 +g1,16081:6630773,37930710 +g1,16081:6630773,37930710 +g1,16081:6303093,37930710 +(1,16081:6303093,37930710:0,0,0 +) +g1,16081:6630773,37930710 +) +g1,16082:11056813,37930710 +g1,16082:12005251,37930710 +k1,16082:12005251,37930710:0 +h1,16082:24967224,37930710:0,0,0 +k1,16082:32583029,37930710:7615805 +g1,16082:32583029,37930710 +) +(1,16083:6630773,38596888:25952256,410518,82312 +h1,16083:6630773,38596888:0,0,0 +g1,16083:6946919,38596888 +g1,16083:7263065,38596888 +g1,16083:7579211,38596888 +g1,16083:7895357,38596888 +g1,16083:8211503,38596888 +g1,16083:8527649,38596888 +g1,16083:8843795,38596888 +g1,16083:9159941,38596888 +g1,16083:9476087,38596888 +g1,16083:9792233,38596888 +g1,16083:10108379,38596888 +g1,16083:10424525,38596888 +g1,16083:10740671,38596888 +g1,16083:11056817,38596888 +g1,16083:11372963,38596888 +g1,16083:11689109,38596888 +g1,16083:12005255,38596888 +g1,16083:12321401,38596888 +g1,16083:12637547,38596888 +g1,16083:12953693,38596888 +g1,16083:13269839,38596888 +g1,16083:13585985,38596888 +g1,16083:13902131,38596888 +g1,16083:14218277,38596888 +g1,16083:14534423,38596888 +g1,16083:14850569,38596888 +g1,16083:15166715,38596888 +g1,16083:15482861,38596888 +g1,16083:15799007,38596888 +g1,16083:16115153,38596888 +g1,16083:18328173,38596888 +g1,16083:18960465,38596888 +g1,16083:22438069,38596888 +g1,16083:24967235,38596888 +k1,16083:24967235,38596888:0 +h1,16083:26864110,38596888:0,0,0 +k1,16083:32583029,38596888:5718919 +g1,16083:32583029,38596888 +) +(1,16084:6630773,39263066:25952256,404226,82312 +h1,16084:6630773,39263066:0,0,0 +g1,16084:6946919,39263066 +g1,16084:7263065,39263066 +g1,16084:7579211,39263066 +g1,16084:7895357,39263066 +g1,16084:8211503,39263066 +g1,16084:8527649,39263066 +g1,16084:8843795,39263066 +g1,16084:9159941,39263066 +g1,16084:9476087,39263066 +g1,16084:9792233,39263066 +g1,16084:10108379,39263066 +g1,16084:10424525,39263066 +g1,16084:10740671,39263066 +g1,16084:11056817,39263066 +g1,16084:11372963,39263066 +g1,16084:11689109,39263066 +g1,16084:12005255,39263066 +g1,16084:12321401,39263066 +g1,16084:12637547,39263066 +g1,16084:12953693,39263066 +g1,16084:13269839,39263066 +g1,16084:13585985,39263066 +g1,16084:13902131,39263066 +g1,16084:14218277,39263066 +g1,16084:14534423,39263066 +g1,16084:14850569,39263066 +g1,16084:15166715,39263066 +g1,16084:15482861,39263066 +g1,16084:15799007,39263066 +g1,16084:16115153,39263066 +g1,16084:19276610,39263066 +g1,16084:19908902,39263066 +g1,16084:23070360,39263066 +g1,16084:25599526,39263066 +g1,16084:28128692,39263066 +h1,16084:30657857,39263066:0,0,0 +k1,16084:32583029,39263066:1925172 +g1,16084:32583029,39263066 +) +] +) +g1,16086:32583029,39345378 +g1,16086:6630773,39345378 +g1,16086:6630773,39345378 +g1,16086:32583029,39345378 +g1,16086:32583029,39345378 +) +h1,16086:6630773,39541986:0,0,0 +v1,16090:6630773,41248779:0,393216,0 +(1,16104:6630773,44989854:25952256,4134291,196608 +g1,16104:6630773,44989854 +g1,16104:6630773,44989854 +g1,16104:6434165,44989854 +(1,16104:6434165,44989854:0,4134291,196608 +r1,16104:32779637,44989854:26345472,4330899,196608 +k1,16104:6434165,44989854:-26345472 +) +(1,16104:6434165,44989854:26345472,4134291,196608 +[1,16104:6630773,44989854:25952256,3937683,0 +(1,16092:6630773,41462689:25952256,410518,101187 +(1,16091:6630773,41462689:0,0,0 +g1,16091:6630773,41462689 +g1,16091:6630773,41462689 +g1,16091:6303093,41462689 +(1,16091:6303093,41462689:0,0,0 +) +g1,16091:6630773,41462689 +) +k1,16092:6630773,41462689:0 +g1,16092:13585979,41462689 +h1,16092:15482853,41462689:0,0,0 +k1,16092:32583029,41462689:17100176 +g1,16092:32583029,41462689 +) +(1,16097:6630773,42194403:25952256,404226,9436 +(1,16094:6630773,42194403:0,0,0 +g1,16094:6630773,42194403 +g1,16094:6630773,42194403 +g1,16094:6303093,42194403 +(1,16094:6303093,42194403:0,0,0 +) +g1,16094:6630773,42194403 +) +g1,16097:7579210,42194403 +g1,16097:7895356,42194403 +g1,16097:8211502,42194403 +g1,16097:8527648,42194403 +g1,16097:8843794,42194403 +g1,16097:9159940,42194403 +g1,16097:9476086,42194403 +g1,16097:9792232,42194403 +g1,16097:11372961,42194403 +g1,16097:11689107,42194403 +g1,16097:12005253,42194403 +g1,16097:12321399,42194403 +g1,16097:12637545,42194403 +g1,16097:12953691,42194403 +g1,16097:13269837,42194403 +g1,16097:13585983,42194403 +g1,16097:15166712,42194403 +g1,16097:15482858,42194403 +g1,16097:15799004,42194403 +g1,16097:16115150,42194403 +g1,16097:16431296,42194403 +g1,16097:16747442,42194403 +g1,16097:17063588,42194403 +g1,16097:17379734,42194403 +g1,16097:18960463,42194403 +g1,16097:19276609,42194403 +g1,16097:19592755,42194403 +g1,16097:19908901,42194403 +g1,16097:20225047,42194403 +g1,16097:20541193,42194403 +g1,16097:20857339,42194403 +g1,16097:21173485,42194403 +h1,16097:22438068,42194403:0,0,0 +k1,16097:32583029,42194403:10144961 +g1,16097:32583029,42194403 +) +(1,16097:6630773,42860581:25952256,404226,6290 +h1,16097:6630773,42860581:0,0,0 +g1,16097:7579210,42860581 +g1,16097:7895356,42860581 +g1,16097:8211502,42860581 +g1,16097:11372959,42860581 +g1,16097:11689105,42860581 +g1,16097:12005251,42860581 +g1,16097:15166708,42860581 +g1,16097:15482854,42860581 +g1,16097:15799000,42860581 +g1,16097:18960457,42860581 +h1,16097:22438059,42860581:0,0,0 +k1,16097:32583029,42860581:10144970 +g1,16097:32583029,42860581 +) +(1,16099:6630773,44182119:25952256,410518,76021 +(1,16098:6630773,44182119:0,0,0 +g1,16098:6630773,44182119 +g1,16098:6630773,44182119 +g1,16098:6303093,44182119 +(1,16098:6303093,44182119:0,0,0 +) +g1,16098:6630773,44182119 +) +h1,16099:13902123,44182119:0,0,0 +k1,16099:32583029,44182119:18680906 +g1,16099:32583029,44182119 +) +(1,16103:6630773,44913833:25952256,404226,76021 +(1,16101:6630773,44913833:0,0,0 +g1,16101:6630773,44913833 +g1,16101:6630773,44913833 +g1,16101:6303093,44913833 +(1,16101:6303093,44913833:0,0,0 +) +g1,16101:6630773,44913833 +) +g1,16103:7579210,44913833 +g1,16103:8843793,44913833 +g1,16103:10740667,44913833 +g1,16103:11689104,44913833 +h1,16103:12321395,44913833:0,0,0 +k1,16103:32583029,44913833:20261634 +g1,16103:32583029,44913833 +) +] +) +g1,16104:32583029,44989854 +g1,16104:6630773,44989854 +g1,16104:6630773,44989854 +g1,16104:32583029,44989854 +g1,16104:32583029,44989854 +) +h1,16104:6630773,45186462:0,0,0 +] +(1,16108:32583029,45706769:0,0,0 +g1,16108:32583029,45706769 +) +) +] +(1,16108:6630773,47279633:25952256,0,0 +h1,16108:6630773,47279633:25952256,0,0 +) +] +h1,16108:4262630,4025873:0,0,0 +] +!26972 }312 -Input:2420:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2421:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2422:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2423:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2424:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2425:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2426:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2427:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2428:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2429:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2430:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2431:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1044 +Input:2410:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2411:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2412:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2413:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2414:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2415:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2416:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2417:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2418:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2419:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2420:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2421:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2422:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2423:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2424:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2425:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2426:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1576 {313 -[1,16126:4262630,47279633:28320399,43253760,0 -(1,16126:4262630,4025873:0,0,0 -[1,16126:-473657,4025873:25952256,0,0 -(1,16126:-473657,-710414:25952256,0,0 -h1,16126:-473657,-710414:0,0,0 -(1,16126:-473657,-710414:0,0,0 -(1,16126:-473657,-710414:0,0,0 -g1,16126:-473657,-710414 -(1,16126:-473657,-710414:65781,0,65781 -g1,16126:-407876,-710414 -[1,16126:-407876,-644633:0,0,0 +[1,16156:4262630,47279633:28320399,43253760,0 +(1,16156:4262630,4025873:0,0,0 +[1,16156:-473657,4025873:25952256,0,0 +(1,16156:-473657,-710414:25952256,0,0 +h1,16156:-473657,-710414:0,0,0 +(1,16156:-473657,-710414:0,0,0 +(1,16156:-473657,-710414:0,0,0 +g1,16156:-473657,-710414 +(1,16156:-473657,-710414:65781,0,65781 +g1,16156:-407876,-710414 +[1,16156:-407876,-644633:0,0,0 ] ) -k1,16126:-473657,-710414:-65781 +k1,16156:-473657,-710414:-65781 ) ) -k1,16126:25478599,-710414:25952256 -g1,16126:25478599,-710414 +k1,16156:25478599,-710414:25952256 +g1,16156:25478599,-710414 ) ] ) -[1,16126:6630773,47279633:25952256,43253760,0 -[1,16126:6630773,4812305:25952256,786432,0 -(1,16126:6630773,4812305:25952256,505283,126483 -(1,16126:6630773,4812305:25952256,505283,126483 -g1,16126:3078558,4812305 -[1,16126:3078558,4812305:0,0,0 -(1,16126:3078558,2439708:0,1703936,0 -k1,16126:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16126:2537886,2439708:1179648,16384,0 +[1,16156:6630773,47279633:25952256,43253760,0 +[1,16156:6630773,4812305:25952256,786432,0 +(1,16156:6630773,4812305:25952256,505283,126483 +(1,16156:6630773,4812305:25952256,505283,126483 +g1,16156:3078558,4812305 +[1,16156:3078558,4812305:0,0,0 +(1,16156:3078558,2439708:0,1703936,0 +k1,16156:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16156:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16126:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16156:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16126:3078558,4812305:0,0,0 -(1,16126:3078558,2439708:0,1703936,0 -g1,16126:29030814,2439708 -g1,16126:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16126:36151628,1915420:16384,1179648,0 +[1,16156:3078558,4812305:0,0,0 +(1,16156:3078558,2439708:0,1703936,0 +g1,16156:29030814,2439708 +g1,16156:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16156:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16126:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16156:37855564,2439708:1179648,16384,0 +) ) +k1,16156:3078556,2439708:-34777008 ) -k1,16126:3078556,2439708:-34777008 +] +[1,16156:3078558,4812305:0,0,0 +(1,16156:3078558,49800853:0,16384,2228224 +k1,16156:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16156:2537886,49800853:1179648,16384,0 +) +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16156:3078558,51504789:16384,1179648,0 +) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] -[1,16126:3078558,4812305:0,0,0 -(1,16126:3078558,49800853:0,16384,2228224 -k1,16126:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16126:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16126:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 ) ] +[1,16156:3078558,4812305:0,0,0 +(1,16156:3078558,49800853:0,16384,2228224 +g1,16156:29030814,49800853 +g1,16156:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16156:36151628,51504789:16384,1179648,0 ) -) -) -] -[1,16126:3078558,4812305:0,0,0 -(1,16126:3078558,49800853:0,16384,2228224 -g1,16126:29030814,49800853 -g1,16126:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16126:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16126:37855564,49800853:1179648,16384,0 -) -) -k1,16126:3078556,49800853:-34777008 -) -] -g1,16126:6630773,4812305 -k1,16126:25146660,4812305:17320510 -g1,16126:26880087,4812305 -g1,16126:29193507,4812305 -g1,16126:30603186,4812305 -) -) -] -[1,16126:6630773,45706769:25952256,40108032,0 -(1,16126:6630773,45706769:25952256,40108032,0 -(1,16126:6630773,45706769:0,0,0 -g1,16126:6630773,45706769 -) -[1,16126:6630773,45706769:25952256,40108032,0 -v1,16078:6630773,6254097:0,393216,0 -(1,16078:6630773,12147128:25952256,6286247,616038 -g1,16078:6630773,12147128 -(1,16078:6630773,12147128:25952256,6286247,616038 -(1,16078:6630773,12763166:25952256,6902285,0 -[1,16078:6630773,12763166:25952256,6902285,0 -(1,16078:6630773,12736952:25952256,6876071,0 -r1,16078:6656987,12736952:26214,6876071,0 -[1,16078:6656987,12736952:25899828,6876071,0 -(1,16078:6656987,12147128:25899828,5696423,0 -[1,16078:7246811,12147128:24720180,5696423,0 -(1,16078:7246811,6963852:24720180,513147,126483 -k1,16077:8468804,6963852:238953 -k1,16077:9899203,6963852:238954 -k1,16077:11622546,6963852:238953 -k1,16077:12880585,6963852:238954 -k1,16077:15605319,6963852:238953 -k1,16077:16503564,6963852:238953 -k1,16077:18241326,6963852:238954 -k1,16077:19370258,6963852:238953 -k1,16077:22219510,6963852:238953 -k1,16077:23109892,6963852:238954 -k1,16077:24934816,6963852:238953 -(1,16077:24934816,6963852:0,452978,115847 -r1,16078:27051641,6963852:2116825,568825,115847 -k1,16077:24934816,6963852:-2116825 -) -(1,16077:24934816,6963852:2116825,452978,115847 -k1,16077:24934816,6963852:3277 -h1,16077:27048364,6963852:0,411205,112570 -) -k1,16077:27464265,6963852:238954 -k1,16077:29588689,6963852:238953 -k1,16077:31966991,6963852:0 -) -(1,16078:7246811,7805340:24720180,513147,134348 -k1,16077:7827834,7805340:225163 -k1,16077:10122624,7805340:225163 -k1,16077:13420115,7805340:225163 -k1,16077:16819841,7805340:225162 -k1,16077:17510965,7805340:225163 -k1,16077:18755213,7805340:225163 -k1,16077:20714459,7805340:225163 -k1,16077:21555660,7805340:225163 -k1,16077:22799908,7805340:225163 -k1,16077:24331204,7805340:225163 -k1,16077:25782545,7805340:225162 -k1,16077:27176215,7805340:225163 -k1,16077:28813679,7805340:225163 -k1,16077:31219225,7805340:225163 -k1,16077:31966991,7805340:0 -) -(1,16078:7246811,8646828:24720180,505283,126483 -k1,16077:10143027,8646828:211206 -k1,16077:11040396,8646828:211207 -k1,16077:13634491,8646828:211206 -k1,16077:15914013,8646828:211206 -k1,16077:18076882,8646828:211207 -k1,16077:19730535,8646828:211206 -k1,16077:21504775,8646828:211206 -(1,16077:21504775,8646828:0,452978,122846 -r1,16078:25028447,8646828:3523672,575824,122846 -k1,16077:21504775,8646828:-3523672 -) -(1,16077:21504775,8646828:3523672,452978,122846 -k1,16077:21504775,8646828:3277 -h1,16077:25025170,8646828:0,411205,112570 -) -k1,16077:25413324,8646828:211207 -k1,16077:26275958,8646828:211206 -k1,16077:28372635,8646828:211206 -k1,16077:29688124,8646828:211207 -k1,16077:30647096,8646828:211206 -k1,16078:31966991,8646828:0 -) -(1,16078:7246811,9488316:24720180,505283,134348 -k1,16077:8618150,9488316:272956 -k1,16077:9246965,9488316:272955 -k1,16077:12494599,9488316:272955 -k1,16077:14745432,9488316:272956 -k1,16077:16412339,9488316:272956 -k1,16077:18881405,9488316:272955 -k1,16077:19805788,9488316:272955 -k1,16077:20826510,9488316:272956 -k1,16077:24689528,9488316:272956 -k1,16077:25648645,9488316:272955 -(1,16077:25648645,9488316:0,414482,115847 -r1,16078:26358623,9488316:709978,530329,115847 -k1,16077:25648645,9488316:-709978 -) -(1,16077:25648645,9488316:709978,414482,115847 -k1,16077:25648645,9488316:3277 -h1,16077:26355346,9488316:0,411205,112570 -) -k1,16077:26805248,9488316:272955 -k1,16077:28269649,9488316:272956 -(1,16077:28269649,9488316:0,452978,115847 -r1,16078:31793321,9488316:3523672,568825,115847 -k1,16077:28269649,9488316:-3523672 -) -(1,16077:28269649,9488316:3523672,452978,115847 -k1,16077:28269649,9488316:3277 -h1,16077:31790044,9488316:0,411205,112570 -) -k1,16077:31966991,9488316:0 -) -(1,16078:7246811,10329804:24720180,513147,126483 -k1,16077:9350619,10329804:218337 -k1,16077:12329332,10329804:218337 -k1,16077:14835531,10329804:218337 -k1,16077:15713160,10329804:218337 -k1,16077:16950582,10329804:218337 -k1,16077:20645605,10329804:218338 -k1,16077:21523234,10329804:218337 -k1,16077:22760656,10329804:218337 -k1,16077:24713076,10329804:218337 -k1,16077:25582841,10329804:218337 -k1,16077:26216002,10329804:218318 -k1,16077:28667151,10329804:218337 -k1,16077:30076933,10329804:218337 -k1,16078:31966991,10329804:0 -) -(1,16078:7246811,11171292:24720180,505283,134348 -k1,16077:8440877,11171292:227410 -k1,16077:11424076,11171292:227410 -k1,16077:13343625,11171292:227409 -k1,16077:16284226,11171292:227410 -k1,16077:19926717,11171292:227410 -k1,16077:21051970,11171292:227410 -k1,16077:22976107,11171292:227410 -k1,16077:26814550,11171292:227409 -k1,16077:28033520,11171292:227410 -k1,16077:31350953,11171292:227410 -k1,16077:31966991,11171292:0 -) -(1,16078:7246811,12012780:24720180,505283,134348 -g1,16077:8465125,12012780 -g1,16077:13287919,12012780 -g1,16077:14875201,12012780 -k1,16078:31966991,12012780:15089665 -g1,16078:31966991,12012780 -) -] -) -] -r1,16078:32583029,12736952:26214,6876071,0 -) -] -) -) -g1,16078:32583029,12147128 -) -h1,16078:6630773,12763166:0,0,0 -v1,16081:6630773,14128942:0,393216,0 -(1,16082:6630773,18079449:25952256,4343723,616038 -g1,16082:6630773,18079449 -(1,16082:6630773,18079449:25952256,4343723,616038 -(1,16082:6630773,18695487:25952256,4959761,0 -[1,16082:6630773,18695487:25952256,4959761,0 -(1,16082:6630773,18669273:25952256,4907333,0 -r1,16082:6656987,18669273:26214,4907333,0 -[1,16082:6656987,18669273:25899828,4907333,0 -(1,16082:6656987,18079449:25899828,3727685,0 -[1,16082:7246811,18079449:24720180,3727685,0 -(1,16082:7246811,15439138:24720180,1087374,126483 -k1,16081:8608101,15439138:151587 -k1,16081:9387524,15439138:151588 -k1,16081:11554998,15439138:151587 -(1,16081:11554998,15439138:0,452978,115847 -r1,16082:15078670,15439138:3523672,568825,115847 -k1,16081:11554998,15439138:-3523672 -) -(1,16081:11554998,15439138:3523672,452978,115847 -k1,16081:11554998,15439138:3277 -h1,16081:15075393,15439138:0,411205,112570 -) -k1,16081:15403928,15439138:151588 -(1,16081:15403928,15439138:0,452978,115847 -r1,16082:19279312,15439138:3875384,568825,115847 -k1,16081:15403928,15439138:-3875384 -) -(1,16081:15403928,15439138:3875384,452978,115847 -k1,16081:15403928,15439138:3277 -h1,16081:19276035,15439138:0,411205,112570 -) -k1,16081:19430899,15439138:151587 -k1,16081:20773931,15439138:151587 -(1,16081:20773931,15439138:0,452978,115847 -r1,16082:25001027,15439138:4227096,568825,115847 -k1,16081:20773931,15439138:-4227096 -) -(1,16081:20773931,15439138:4227096,452978,115847 -k1,16081:20773931,15439138:3277 -h1,16081:24997750,15439138:0,411205,112570 -) -k1,16081:25152615,15439138:151588 -k1,16081:26295762,15439138:151587 -k1,16081:27466435,15439138:151588 -k1,16081:29271495,15439138:151587 -k1,16081:31966991,15439138:0 -) -(1,16082:7246811,16280626:24720180,513147,134348 -k1,16081:8963985,16280626:323223 -k1,16081:12049552,16280626:323224 -k1,16081:14638355,16280626:323223 -k1,16081:18364208,16280626:323224 -k1,16081:19338859,16280626:323223 -k1,16081:21893583,16280626:323223 -k1,16081:22876099,16280626:323224 -k1,16081:24707961,16280626:323223 -k1,16081:28815889,16280626:323224 -k1,16081:30947906,16280626:323223 -k1,16081:31966991,16280626:0 -) -(1,16082:7246811,17122114:24720180,505283,134348 -k1,16081:8893161,17122114:258297 -k1,16081:10823281,17122114:258297 -k1,16081:12273023,17122114:258297 -k1,16081:13292848,17122114:258297 -k1,16081:15978600,17122114:258298 -k1,16081:18748892,17122114:258297 -k1,16081:22583489,17122114:258297 -k1,16081:24557519,17122114:258297 -(1,16081:24557519,17122114:0,452978,115847 -r1,16082:28081191,17122114:3523672,568825,115847 -k1,16081:24557519,17122114:-3523672 -) -(1,16081:24557519,17122114:3523672,452978,115847 -k1,16081:24557519,17122114:3277 -h1,16081:28077914,17122114:0,411205,112570 -) -k1,16081:28339488,17122114:258297 -k1,16081:30820766,17122114:258297 -k1,16082:31966991,17122114:0 -) -(1,16082:7246811,17963602:24720180,505283,115847 -(1,16081:7246811,17963602:0,452978,115847 -r1,16082:11473907,17963602:4227096,568825,115847 -k1,16081:7246811,17963602:-4227096 -) -(1,16081:7246811,17963602:4227096,452978,115847 -k1,16081:7246811,17963602:3277 -h1,16081:11470630,17963602:0,411205,112570 -) -g1,16081:11846806,17963602 -g1,16081:13479963,17963602 -g1,16081:15394925,17963602 -(1,16081:15394925,17963602:0,452978,115847 -r1,16082:19622021,17963602:4227096,568825,115847 -k1,16081:15394925,17963602:-4227096 -) -(1,16081:15394925,17963602:4227096,452978,115847 -k1,16081:15394925,17963602:3277 -h1,16081:19618744,17963602:0,411205,112570 -) -g1,16081:19821250,17963602 -g1,16081:22243460,17963602 -g1,16081:23588914,17963602 -(1,16081:23588914,17963602:0,452978,115847 -r1,16082:27464298,17963602:3875384,568825,115847 -k1,16081:23588914,17963602:-3875384 -) -(1,16081:23588914,17963602:3875384,452978,115847 -k1,16081:23588914,17963602:3277 -h1,16081:27461021,17963602:0,411205,112570 -) -k1,16082:31966991,17963602:4329023 -g1,16082:31966991,17963602 -) -] -) -] -r1,16082:32583029,18669273:26214,4907333,0 -) -] -) -) -g1,16082:32583029,18079449 -) -h1,16082:6630773,18695487:0,0,0 -v1,16085:6630773,20061263:0,393216,0 -(1,16086:6630773,25787758:25952256,6119711,616038 -g1,16086:6630773,25787758 -(1,16086:6630773,25787758:25952256,6119711,616038 -(1,16086:6630773,26403796:25952256,6735749,0 -[1,16086:6630773,26403796:25952256,6735749,0 -(1,16086:6630773,26377582:25952256,6683321,0 -r1,16086:6656987,26377582:26214,6683321,0 -[1,16086:6656987,26377582:25899828,6683321,0 -(1,16086:6656987,25787758:25899828,5503673,0 -[1,16086:7246811,25787758:24720180,5503673,0 -(1,16086:7246811,21445970:24720180,1161885,196608 -(1,16085:7246811,21445970:0,1161885,196608 -r1,16086:8794447,21445970:1547636,1358493,196608 -k1,16085:7246811,21445970:-1547636 -) -(1,16085:7246811,21445970:1547636,1161885,196608 -) -k1,16085:8965672,21445970:171225 -k1,16085:10090446,21445970:171225 -k1,16085:11365953,21445970:171225 -k1,16085:12949479,21445970:171225 -k1,16085:13476564,21445970:171225 -k1,16085:14873968,21445970:171225 -k1,16085:16028234,21445970:171226 -k1,16085:16885621,21445970:171225 -k1,16085:20031525,21445970:171225 -k1,16085:22572532,21445970:171225 -k1,16085:25203979,21445970:171225 -k1,16085:28880069,21445970:171225 -k1,16085:29702722,21445970:171225 -k1,16085:31966991,21445970:0 -) -(1,16086:7246811,22287458:24720180,513147,134348 -k1,16085:9259796,22287458:200259 -k1,16085:10840899,22287458:200259 -k1,16085:11572655,22287458:200259 -k1,16085:15658545,22287458:200260 -k1,16085:18009696,22287458:200259 -k1,16085:19703521,22287458:200259 -k1,16085:20589942,22287458:200259 -k1,16085:22488239,22287458:200259 -k1,16085:23556850,22287458:200259 -k1,16085:24572377,22287458:200259 -k1,16085:25791722,22287458:200260 -k1,16085:28899158,22287458:200259 -k1,16085:29785579,22287458:200259 -k1,16085:31307699,22287458:200259 -k1,16085:31966991,22287458:0 -) -(1,16086:7246811,23128946:24720180,513147,126483 -k1,16085:8567696,23128946:223157 -k1,16085:10121234,23128946:223157 -k1,16085:12349137,23128946:223157 -k1,16085:13200128,23128946:223156 -k1,16085:14626526,23128946:223157 -k1,16085:16390434,23128946:223157 -k1,16085:17632676,23128946:223157 -k1,16085:20551329,23128946:223157 -k1,16085:21425914,23128946:223157 -k1,16085:22741555,23128946:223156 -k1,16085:23496209,23128946:223157 -(1,16085:23496209,23128946:0,452978,115847 -r1,16086:27371593,23128946:3875384,568825,115847 -k1,16085:23496209,23128946:-3875384 -) -(1,16085:23496209,23128946:3875384,452978,115847 -k1,16085:23496209,23128946:3277 -h1,16085:27368316,23128946:0,411205,112570 -) -k1,16085:27768420,23128946:223157 -k1,16085:29188264,23128946:223157 -k1,16085:31966991,23128946:0 -) -(1,16086:7246811,23970434:24720180,505283,134348 -k1,16085:9175973,23970434:248819 -k1,16085:9956288,23970434:248818 -k1,16085:10560967,23970434:248819 -k1,16085:13784464,23970434:248818 -k1,16085:16011160,23970434:248819 -k1,16085:16876016,23970434:248818 -k1,16085:19010306,23970434:248819 -k1,16085:20710746,23970434:248818 -k1,16085:23582971,23970434:248819 -k1,16085:25697599,23970434:248818 -k1,16085:29910035,23970434:248819 -k1,16085:30810281,23970434:248818 -k1,16085:31966991,23970434:0 -) -(1,16086:7246811,24811922:24720180,513147,126483 -k1,16085:8594987,24811922:179669 -k1,16085:9457542,24811922:179670 -k1,16085:11710115,24811922:179669 -k1,16085:12505823,24811922:179670 -k1,16085:13704577,24811922:179669 -k1,16085:15040957,24811922:179670 -k1,16085:16614577,24811922:179669 -k1,16085:17813332,24811922:179670 -k1,16085:21429709,24811922:179669 -k1,16085:24232130,24811922:179670 -k1,16085:27098120,24811922:179669 -k1,16085:28509867,24811922:179670 -k1,16085:31350953,24811922:179669 -k1,16085:31966991,24811922:0 -) -(1,16086:7246811,25653410:24720180,505283,134348 -g1,16085:9724727,25653410 -h1,16085:10695315,25653410:0,0,0 -g1,16085:10894544,25653410 -g1,16085:11903143,25653410 -g1,16085:13600525,25653410 -h1,16085:14795902,25653410:0,0,0 -k1,16086:31966990,25653410:16790324 -g1,16086:31966990,25653410 -) -] -) -] -r1,16086:32583029,26377582:26214,6683321,0 -) -] -) -) -g1,16086:32583029,25787758 -) -h1,16086:6630773,26403796:0,0,0 -(1,16091:6630773,27769572:25952256,513147,134348 -h1,16090:6630773,27769572:983040,0,0 -k1,16090:9319016,27769572:243750 -k1,16090:10431119,27769572:243751 -k1,16090:11954787,27769572:243750 -k1,16090:13355247,27769572:243750 -k1,16090:16260415,27769572:243751 -k1,16090:17163457,27769572:243750 -k1,16090:18426292,27769572:243750 -k1,16090:19762528,27769572:243751 -k1,16090:20665570,27769572:243750 -k1,16090:21265180,27769572:243750 -k1,16090:23106043,27769572:243751 -k1,16090:26045289,27769572:243750 -k1,16090:29260441,27769572:243750 -k1,16090:30660902,27769572:243751 -k1,16090:31563944,27769572:243750 -k1,16090:32583029,27769572:0 -) -(1,16091:6630773,28611060:25952256,513147,134348 -k1,16090:8345367,28611060:234791 -k1,16090:11605956,28611060:234792 -k1,16090:14930770,28611060:234791 -k1,16090:17194556,28611060:234791 -k1,16090:18626035,28611060:234792 -(1,16090:18626035,28611060:0,452978,115847 -r1,16090:22501419,28611060:3875384,568825,115847 -k1,16090:18626035,28611060:-3875384 -) -(1,16090:18626035,28611060:3875384,452978,115847 -k1,16090:18626035,28611060:3277 -h1,16090:22498142,28611060:0,411205,112570 -) -k1,16090:22736210,28611060:234791 -k1,16090:25666497,28611060:234791 -k1,16090:27584253,28611060:234791 -k1,16090:28505207,28611060:234792 -k1,16090:29510701,28611060:234791 -k1,16090:32583029,28611060:0 -) -(1,16091:6630773,29452548:25952256,513147,134348 -k1,16090:7252054,29452548:265421 -k1,16090:8906838,29452548:265421 -k1,16090:11222225,29452548:265421 -k1,16090:12170531,29452548:265421 -k1,16090:13206654,29452548:265420 -k1,16090:15431601,29452548:265421 -k1,16090:16981528,29452548:265421 -k1,16090:18351231,29452548:265421 -k1,16090:19364418,29452548:265421 -k1,16090:22095303,29452548:265421 -k1,16090:23628190,29452548:265421 -k1,16090:24249471,29452548:265421 -k1,16090:25904254,29452548:265420 -k1,16090:28219641,29452548:265421 -k1,16090:31208083,29452548:265421 -k1,16090:31931601,29452548:265421 -k1,16090:32583029,29452548:0 -) -(1,16091:6630773,30294036:25952256,513147,134348 -k1,16090:9799307,30294036:193855 -k1,16090:12362945,30294036:193856 -k1,16090:13748245,30294036:193855 -k1,16090:15663076,30294036:193856 -k1,16090:17495986,30294036:193855 -k1,16090:18341269,30294036:193855 -k1,16090:18890985,30294036:193856 -k1,16090:20311019,30294036:193855 -k1,16090:21661585,30294036:193856 -k1,16090:22808989,30294036:193855 -k1,16090:24308977,30294036:193855 -k1,16090:26432213,30294036:193856 -k1,16090:27645153,30294036:193855 -k1,16090:29228372,30294036:193856 -k1,16090:31298523,30294036:193855 -k1,16090:32583029,30294036:0 -) -(1,16091:6630773,31135524:25952256,505283,7863 -g1,16090:7698354,31135524 -g1,16090:9030045,31135524 -g1,16090:10844081,31135524 -g1,16090:11694738,31135524 -k1,16091:32583029,31135524:19369822 -g1,16091:32583029,31135524 -) -v1,16093:6630773,32325990:0,393216,0 -(1,16097:6630773,32641087:25952256,708313,196608 -g1,16097:6630773,32641087 -g1,16097:6630773,32641087 -g1,16097:6434165,32641087 -(1,16097:6434165,32641087:0,708313,196608 -r1,16097:32779637,32641087:26345472,904921,196608 -k1,16097:6434165,32641087:-26345472 -) -(1,16097:6434165,32641087:26345472,708313,196608 -[1,16097:6630773,32641087:25952256,511705,0 -(1,16095:6630773,32539900:25952256,410518,101187 -(1,16094:6630773,32539900:0,0,0 -g1,16094:6630773,32539900 -g1,16094:6630773,32539900 -g1,16094:6303093,32539900 -(1,16094:6303093,32539900:0,0,0 -) -g1,16094:6630773,32539900 -) -g1,16095:8527647,32539900 -g1,16095:9476085,32539900 -g1,16095:13585980,32539900 -g1,16095:14218272,32539900 -g1,16095:15799002,32539900 -g1,16095:16431294,32539900 -g1,16095:17063586,32539900 -g1,16095:18328170,32539900 -g1,16095:18960462,32539900 -g1,16095:20225045,32539900 -g1,16095:20857337,32539900 -g1,16095:21489629,32539900 -h1,16095:25599523,32539900:0,0,0 -k1,16095:32583029,32539900:6983506 -g1,16095:32583029,32539900 -) -] -) -g1,16097:32583029,32641087 -g1,16097:6630773,32641087 -g1,16097:6630773,32641087 -g1,16097:32583029,32641087 -g1,16097:32583029,32641087 -) -h1,16097:6630773,32837695:0,0,0 -(1,16101:6630773,34203471:25952256,513147,134348 -h1,16100:6630773,34203471:983040,0,0 -k1,16100:8806789,34203471:239427 -k1,16100:10661023,34203471:239427 -(1,16100:10661023,34203471:0,459977,115847 -r1,16100:12426136,34203471:1765113,575824,115847 -k1,16100:10661023,34203471:-1765113 -) -(1,16100:10661023,34203471:1765113,459977,115847 -k1,16100:10661023,34203471:3277 -h1,16100:12422859,34203471:0,411205,112570 -) -k1,16100:12665563,34203471:239427 -k1,16100:13556418,34203471:239427 -k1,16100:14151705,34203471:239427 -k1,16100:15659868,34203471:239386 -k1,16100:16882335,34203471:239427 -k1,16100:19633757,34203471:239427 -k1,16100:20820835,34203471:239427 -k1,16100:21830965,34203471:239427 -k1,16100:24381847,34203471:239427 -k1,16100:27463570,34203471:239427 -k1,16100:29718229,34203471:239427 -k1,16100:31149101,34203471:239427 -k1,16100:32583029,34203471:0 -) -(1,16101:6630773,35044959:25952256,505283,126483 -g1,16100:9125073,35044959 -g1,16100:10112700,35044959 -k1,16101:32583030,35044959:19547424 -g1,16101:32583030,35044959 -) -v1,16103:6630773,36235425:0,393216,0 -(1,16108:6630773,37222991:25952256,1380782,196608 -g1,16108:6630773,37222991 -g1,16108:6630773,37222991 -g1,16108:6434165,37222991 -(1,16108:6434165,37222991:0,1380782,196608 -r1,16108:32779637,37222991:26345472,1577390,196608 -k1,16108:6434165,37222991:-26345472 -) -(1,16108:6434165,37222991:26345472,1380782,196608 -[1,16108:6630773,37222991:25952256,1184174,0 -(1,16105:6630773,36449335:25952256,410518,101187 -(1,16104:6630773,36449335:0,0,0 -g1,16104:6630773,36449335 -g1,16104:6630773,36449335 -g1,16104:6303093,36449335 -(1,16104:6303093,36449335:0,0,0 -) -g1,16104:6630773,36449335 -) -k1,16105:6630773,36449335:0 -g1,16105:12005250,36449335 -g1,16105:13585979,36449335 -g1,16105:14218271,36449335 -g1,16105:19276602,36449335 -g1,16105:22438059,36449335 -g1,16105:23070351,36449335 -h1,16105:24967225,36449335:0,0,0 -k1,16105:32583029,36449335:7615804 -g1,16105:32583029,36449335 -) -(1,16106:6630773,37115513:25952256,410518,107478 -h1,16106:6630773,37115513:0,0,0 -g1,16106:14850561,37115513 -g1,16106:16747435,37115513 -g1,16106:17379727,37115513 -h1,16106:20541184,37115513:0,0,0 -k1,16106:32583029,37115513:12041845 -g1,16106:32583029,37115513 -) -] -) -g1,16108:32583029,37222991 -g1,16108:6630773,37222991 -g1,16108:6630773,37222991 -g1,16108:32583029,37222991 -g1,16108:32583029,37222991 -) -h1,16108:6630773,37419599:0,0,0 -v1,16112:6630773,39134353:0,393216,0 -(1,16121:6630773,42755173:25952256,4014036,196608 -g1,16121:6630773,42755173 -g1,16121:6630773,42755173 -g1,16121:6434165,42755173 -(1,16121:6434165,42755173:0,4014036,196608 -r1,16121:32779637,42755173:26345472,4210644,196608 -k1,16121:6434165,42755173:-26345472 -) -(1,16121:6434165,42755173:26345472,4014036,196608 -[1,16121:6630773,42755173:25952256,3817428,0 -(1,16120:6630773,39341971:25952256,404226,101187 -(1,16113:6630773,39341971:0,0,0 -g1,16113:6630773,39341971 -g1,16113:6630773,39341971 -g1,16113:6303093,39341971 -(1,16113:6303093,39341971:0,0,0 -) -g1,16113:6630773,39341971 -) -k1,16120:6630773,39341971:0 -k1,16120:6630773,39341971:0 -h1,16120:10108376,39341971:0,0,0 -k1,16120:32583028,39341971:22474652 -g1,16120:32583028,39341971 -) -(1,16120:6630773,40008149:25952256,404226,82312 -h1,16120:6630773,40008149:0,0,0 -k1,16120:6630773,40008149:0 -h1,16120:9476085,40008149:0,0,0 -k1,16120:32583029,40008149:23106944 -g1,16120:32583029,40008149 -) -(1,16120:6630773,40674327:25952256,404226,82312 -h1,16120:6630773,40674327:0,0,0 -k1,16120:6630773,40674327:0 -h1,16120:9476085,40674327:0,0,0 -k1,16120:32583029,40674327:23106944 -g1,16120:32583029,40674327 -) -(1,16120:6630773,41340505:25952256,404226,82312 -h1,16120:6630773,41340505:0,0,0 -k1,16120:6630773,41340505:0 -h1,16120:9476085,41340505:0,0,0 -k1,16120:32583029,41340505:23106944 -g1,16120:32583029,41340505 -) -(1,16120:6630773,42006683:25952256,404226,82312 -h1,16120:6630773,42006683:0,0,0 -k1,16120:6630773,42006683:0 -h1,16120:9476085,42006683:0,0,0 -k1,16120:32583029,42006683:23106944 -g1,16120:32583029,42006683 -) -(1,16120:6630773,42672861:25952256,404226,82312 -h1,16120:6630773,42672861:0,0,0 -k1,16120:6630773,42672861:0 -h1,16120:9476085,42672861:0,0,0 -k1,16120:32583029,42672861:23106944 -g1,16120:32583029,42672861 -) -] -) -g1,16121:32583029,42755173 -g1,16121:6630773,42755173 -g1,16121:6630773,42755173 -g1,16121:32583029,42755173 -g1,16121:32583029,42755173 -) -h1,16121:6630773,42951781:0,0,0 -v1,16125:6630773,44841845:0,393216,0 -] -(1,16126:32583029,45706769:0,0,0 -g1,16126:32583029,45706769 -) -) -] -(1,16126:6630773,47279633:25952256,0,0 -h1,16126:6630773,47279633:25952256,0,0 -) -] -h1,16126:4262630,4025873:0,0,0 -] -!24367 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16156:37855564,49800853:1179648,16384,0 +) +) +k1,16156:3078556,49800853:-34777008 +) +] +g1,16156:6630773,4812305 +k1,16156:25146660,4812305:17320510 +g1,16156:26880087,4812305 +g1,16156:29193507,4812305 +g1,16156:30603186,4812305 +) +) +] +[1,16156:6630773,45706769:25952256,40108032,0 +(1,16156:6630773,45706769:25952256,40108032,0 +(1,16156:6630773,45706769:0,0,0 +g1,16156:6630773,45706769 +) +[1,16156:6630773,45706769:25952256,40108032,0 +v1,16108:6630773,6254097:0,393216,0 +(1,16109:6630773,15346544:25952256,9485663,616038 +g1,16109:6630773,15346544 +(1,16109:6630773,15346544:25952256,9485663,616038 +(1,16109:6630773,15962582:25952256,10101701,0 +[1,16109:6630773,15962582:25952256,10101701,0 +(1,16109:6630773,15936368:25952256,10049273,0 +r1,16109:6656987,15936368:26214,10049273,0 +[1,16109:6656987,15936368:25899828,10049273,0 +(1,16109:6656987,15346544:25899828,8869625,0 +[1,16109:7246811,15346544:24720180,8869625,0 +(1,16109:7246811,7638804:24720180,1161885,196608 +(1,16108:7246811,7638804:0,1161885,196608 +r1,16109:8794447,7638804:1547636,1358493,196608 +k1,16108:7246811,7638804:-1547636 +) +(1,16108:7246811,7638804:1547636,1161885,196608 +) +k1,16108:9018676,7638804:224229 +k1,16108:10439591,7638804:224228 +k1,16108:11646860,7638804:224229 +k1,16108:14273639,7638804:224229 +k1,16108:17523664,7638804:224228 +k1,16108:20837916,7638804:224229 +k1,16108:22917469,7638804:224229 +k1,16108:24878402,7638804:224229 +k1,16108:26496581,7638804:224228 +(1,16108:26496581,7638804:0,452978,115847 +r1,16109:30723677,7638804:4227096,568825,115847 +k1,16108:26496581,7638804:-4227096 +) +(1,16108:26496581,7638804:4227096,452978,115847 +k1,16108:26496581,7638804:3277 +h1,16108:30720400,7638804:0,411205,112570 +) +k1,16108:30947906,7638804:224229 +k1,16108:31966991,7638804:0 +) +(1,16109:7246811,8480292:24720180,513147,126483 +k1,16108:9116422,8480292:216138 +k1,16108:13117263,8480292:216137 +k1,16108:13961236,8480292:216138 +k1,16108:16843378,8480292:216137 +k1,16108:17710944,8480292:216138 +k1,16108:19670995,8480292:216138 +k1,16108:22977155,8480292:216137 +k1,16108:25222288,8480292:216138 +k1,16108:27140395,8480292:216137 +k1,16108:30661514,8480292:216138 +k1,16109:31966991,8480292:0 +) +(1,16109:7246811,9321780:24720180,513147,126483 +k1,16108:8345142,9321780:213595 +k1,16108:12169772,9321780:213596 +k1,16108:13374927,9321780:213595 +(1,16108:13374927,9321780:0,452978,115847 +r1,16109:14788328,9321780:1413401,568825,115847 +k1,16108:13374927,9321780:-1413401 +) +(1,16108:13374927,9321780:1413401,452978,115847 +k1,16108:13374927,9321780:3277 +h1,16108:14785051,9321780:0,411205,112570 +) +k1,16108:15001923,9321780:213595 +k1,16108:16406963,9321780:213595 +(1,16108:16406963,9321780:0,414482,115847 +r1,16109:16765229,9321780:358266,530329,115847 +k1,16108:16406963,9321780:-358266 +) +(1,16108:16406963,9321780:358266,414482,115847 +k1,16108:16406963,9321780:3277 +h1,16108:16761952,9321780:0,411205,112570 +) +k1,16108:17152495,9321780:213596 +k1,16108:19251561,9321780:213595 +k1,16108:20569438,9321780:213595 +k1,16108:21530800,9321780:213596 +k1,16108:23257621,9321780:213595 +k1,16108:24122644,9321780:213595 +k1,16108:25681039,9321780:213596 +k1,16108:27393442,9321780:213595 +k1,16108:28219799,9321780:213595 +k1,16108:29452479,9321780:213595 +k1,16108:30738244,9321780:213596 +k1,16108:31611131,9321780:213595 +k1,16108:31966991,9321780:0 +) +(1,16109:7246811,10163268:24720180,513147,126483 +k1,16108:8426318,10163268:196467 +k1,16108:9814229,10163268:196466 +k1,16108:11495086,10163268:196467 +k1,16108:12710638,10163268:196467 +k1,16108:15392886,10163268:196467 +k1,16108:16248644,10163268:196466 +k1,16108:17943919,10163268:196467 +k1,16108:19030365,10163268:196467 +k1,16108:21837130,10163268:196466 +k1,16108:22685025,10163268:196467 +k1,16108:24467463,10163268:196467 +(1,16108:24467463,10163268:0,452978,115847 +r1,16109:26584288,10163268:2116825,568825,115847 +k1,16108:24467463,10163268:-2116825 +) +(1,16108:24467463,10163268:2116825,452978,115847 +k1,16108:24467463,10163268:3277 +h1,16108:26581011,10163268:0,411205,112570 +) +k1,16108:26954425,10163268:196467 +k1,16108:29036362,10163268:196466 +k1,16108:31611131,10163268:196467 +k1,16108:31966991,10163268:0 +) +(1,16109:7246811,11004756:24720180,513147,134348 +k1,16108:9496943,11004756:180505 +k1,16108:12749775,11004756:180504 +k1,16108:16104844,11004756:180505 +k1,16108:16751310,11004756:180505 +k1,16108:17950900,11004756:180505 +k1,16108:19865487,11004756:180504 +k1,16108:20662030,11004756:180505 +k1,16108:21861620,11004756:180505 +k1,16108:23348257,11004756:180504 +k1,16108:24754941,11004756:180505 +k1,16108:26103953,11004756:180505 +k1,16108:27696759,11004756:180505 +k1,16108:30057646,11004756:180504 +k1,16108:30985917,11004756:180505 +k1,16109:31966991,11004756:0 +) +(1,16109:7246811,11846244:24720180,505283,126483 +k1,16108:9365170,11846244:201431 +k1,16108:10252762,11846244:201430 +k1,16108:12837082,11846244:201431 +k1,16108:15106828,11846244:201430 +k1,16108:17259921,11846244:201431 +k1,16108:18903798,11846244:201430 +k1,16108:20668263,11846244:201431 +(1,16108:20668263,11846244:0,452978,122846 +r1,16109:24191935,11846244:3523672,575824,122846 +k1,16108:20668263,11846244:-3523672 +) +(1,16108:20668263,11846244:3523672,452978,122846 +k1,16108:20668263,11846244:3277 +h1,16108:24188658,11846244:0,411205,112570 +) +k1,16108:24567035,11846244:201430 +k1,16108:25419894,11846244:201431 +k1,16108:27506795,11846244:201430 +k1,16108:28812508,11846244:201431 +k1,16108:29761704,11846244:201430 +k1,16108:31966991,11846244:0 +) +(1,16109:7246811,12687732:24720180,505283,134348 +k1,16108:7810036,12687732:207365 +k1,16108:10992080,12687732:207365 +k1,16108:13177322,12687732:207365 +k1,16108:14778637,12687732:207364 +k1,16108:17182113,12687732:207365 +k1,16108:18040906,12687732:207365 +k1,16108:18996037,12687732:207365 +k1,16108:22793464,12687732:207365 +k1,16108:23686991,12687732:207365 +(1,16108:23686991,12687732:0,414482,115847 +r1,16109:24396969,12687732:709978,530329,115847 +k1,16108:23686991,12687732:-709978 +) +(1,16108:23686991,12687732:709978,414482,115847 +k1,16108:23686991,12687732:3277 +h1,16108:24393692,12687732:0,411205,112570 +) +k1,16108:24778003,12687732:207364 +k1,16108:26176813,12687732:207365 +(1,16108:26176813,12687732:0,452978,115847 +r1,16109:29700485,12687732:3523672,568825,115847 +k1,16108:26176813,12687732:-3523672 +) +(1,16108:26176813,12687732:3523672,452978,115847 +k1,16108:26176813,12687732:3277 +h1,16108:29697208,12687732:0,411205,112570 +) +k1,16108:30081520,12687732:207365 +k1,16108:31966991,12687732:0 +) +(1,16109:7246811,13529220:24720180,513147,126483 +k1,16108:10192756,13529220:185569 +k1,16108:12666186,13529220:185568 +k1,16108:13511047,13529220:185569 +k1,16108:14715701,13529220:185569 +k1,16108:18377954,13529220:185568 +k1,16108:19222815,13529220:185569 +k1,16108:20427469,13529220:185569 +k1,16108:22347120,13529220:185568 +k1,16108:23184117,13529220:185569 +k1,16108:23784515,13529220:185555 +k1,16108:26202896,13529220:185569 +k1,16108:27579909,13529220:185568 +k1,16108:30409200,13529220:185569 +k1,16109:31966991,13529220:0 +) +(1,16109:7246811,14370708:24720180,505283,134348 +k1,16108:8870257,14370708:212456 +k1,16108:10774852,14370708:212455 +k1,16108:13700499,14370708:212456 +k1,16108:17328036,14370708:212456 +k1,16108:18438335,14370708:212456 +k1,16108:20347517,14370708:212455 +k1,16108:24171007,14370708:212456 +k1,16108:25375023,14370708:212456 +k1,16108:28677502,14370708:212456 +k1,16108:29505995,14370708:212455 +k1,16108:30737536,14370708:212456 +k1,16109:31966991,14370708:0 +) +(1,16109:7246811,15212196:24720180,505283,134348 +g1,16108:11053142,15212196 +g1,16108:12640424,15212196 +k1,16109:31966991,15212196:17324442 +g1,16109:31966991,15212196 +) +] +) +] +r1,16109:32583029,15936368:26214,10049273,0 +) +] +) +) +g1,16109:32583029,15346544 +) +h1,16109:6630773,15962582:0,0,0 +v1,16112:6630773,17272804:0,393216,0 +(1,16113:6630773,21223311:25952256,4343723,616038 +g1,16113:6630773,21223311 +(1,16113:6630773,21223311:25952256,4343723,616038 +(1,16113:6630773,21839349:25952256,4959761,0 +[1,16113:6630773,21839349:25952256,4959761,0 +(1,16113:6630773,21813135:25952256,4907333,0 +r1,16113:6656987,21813135:26214,4907333,0 +[1,16113:6656987,21813135:25899828,4907333,0 +(1,16113:6656987,21223311:25899828,3727685,0 +[1,16113:7246811,21223311:24720180,3727685,0 +(1,16113:7246811,18583000:24720180,1087374,126483 +k1,16112:8713549,18583000:257035 +k1,16112:9598419,18583000:257035 +k1,16112:11871340,18583000:257034 +(1,16112:11871340,18583000:0,452978,115847 +r1,16113:15395012,18583000:3523672,568825,115847 +k1,16112:11871340,18583000:-3523672 +) +(1,16112:11871340,18583000:3523672,452978,115847 +k1,16112:11871340,18583000:3277 +h1,16112:15391735,18583000:0,411205,112570 +) +k1,16112:15825717,18583000:257035 +(1,16112:15825717,18583000:0,452978,115847 +r1,16113:19701101,18583000:3875384,568825,115847 +k1,16112:15825717,18583000:-3875384 +) +(1,16112:15825717,18583000:3875384,452978,115847 +k1,16112:15825717,18583000:3277 +h1,16112:19697824,18583000:0,411205,112570 +) +k1,16112:19958136,18583000:257035 +k1,16112:21406616,18583000:257035 +(1,16112:21406616,18583000:0,452978,115847 +r1,16113:25633712,18583000:4227096,568825,115847 +k1,16112:21406616,18583000:-4227096 +) +(1,16112:21406616,18583000:4227096,452978,115847 +k1,16112:21406616,18583000:3277 +h1,16112:25630435,18583000:0,411205,112570 +) +k1,16112:25890747,18583000:257035 +k1,16112:27139341,18583000:257034 +k1,16112:28415461,18583000:257035 +k1,16112:30325969,18583000:257035 +k1,16113:31966991,18583000:0 +) +(1,16113:7246811,19424488:24720180,513147,134348 +k1,16112:8692892,19424488:178615 +k1,16112:10265459,19424488:178616 +k1,16112:13206417,19424488:178615 +k1,16112:15650612,19424488:178615 +k1,16112:19231856,19424488:178615 +k1,16112:20061900,19424488:178616 +k1,16112:22472016,19424488:178615 +k1,16112:23309923,19424488:178615 +k1,16112:24997177,19424488:178615 +k1,16112:28960497,19424488:178616 +k1,16112:30947906,19424488:178615 +k1,16112:31966991,19424488:0 +) +(1,16113:7246811,20265976:24720180,505283,134348 +k1,16112:8893161,20265976:258297 +k1,16112:10823281,20265976:258297 +k1,16112:12273023,20265976:258297 +k1,16112:13292848,20265976:258297 +k1,16112:15978600,20265976:258298 +k1,16112:18748892,20265976:258297 +k1,16112:22583489,20265976:258297 +k1,16112:24557519,20265976:258297 +(1,16112:24557519,20265976:0,452978,115847 +r1,16113:28081191,20265976:3523672,568825,115847 +k1,16112:24557519,20265976:-3523672 +) +(1,16112:24557519,20265976:3523672,452978,115847 +k1,16112:24557519,20265976:3277 +h1,16112:28077914,20265976:0,411205,112570 +) +k1,16112:28339488,20265976:258297 +k1,16112:30820766,20265976:258297 +k1,16113:31966991,20265976:0 +) +(1,16113:7246811,21107464:24720180,505283,115847 +(1,16112:7246811,21107464:0,452978,115847 +r1,16113:11473907,21107464:4227096,568825,115847 +k1,16112:7246811,21107464:-4227096 +) +(1,16112:7246811,21107464:4227096,452978,115847 +k1,16112:7246811,21107464:3277 +h1,16112:11470630,21107464:0,411205,112570 +) +g1,16112:11846806,21107464 +g1,16112:13479963,21107464 +g1,16112:15394925,21107464 +(1,16112:15394925,21107464:0,452978,115847 +r1,16113:19622021,21107464:4227096,568825,115847 +k1,16112:15394925,21107464:-4227096 +) +(1,16112:15394925,21107464:4227096,452978,115847 +k1,16112:15394925,21107464:3277 +h1,16112:19618744,21107464:0,411205,112570 +) +g1,16112:19821250,21107464 +g1,16112:22243460,21107464 +g1,16112:23588914,21107464 +(1,16112:23588914,21107464:0,452978,115847 +r1,16113:27464298,21107464:3875384,568825,115847 +k1,16112:23588914,21107464:-3875384 +) +(1,16112:23588914,21107464:3875384,452978,115847 +k1,16112:23588914,21107464:3277 +h1,16112:27461021,21107464:0,411205,112570 +) +k1,16113:31966991,21107464:4329023 +g1,16113:31966991,21107464 +) +] +) +] +r1,16113:32583029,21813135:26214,4907333,0 +) +] +) +) +g1,16113:32583029,21223311 +) +h1,16113:6630773,21839349:0,0,0 +v1,16116:6630773,23149572:0,393216,0 +(1,16117:6630773,28876067:25952256,6119711,616038 +g1,16117:6630773,28876067 +(1,16117:6630773,28876067:25952256,6119711,616038 +(1,16117:6630773,29492105:25952256,6735749,0 +[1,16117:6630773,29492105:25952256,6735749,0 +(1,16117:6630773,29465891:25952256,6683321,0 +r1,16117:6656987,29465891:26214,6683321,0 +[1,16117:6656987,29465891:25899828,6683321,0 +(1,16117:6656987,28876067:25899828,5503673,0 +[1,16117:7246811,28876067:24720180,5503673,0 +(1,16117:7246811,24534279:24720180,1161885,196608 +(1,16116:7246811,24534279:0,1161885,196608 +r1,16117:8794447,24534279:1547636,1358493,196608 +k1,16116:7246811,24534279:-1547636 +) +(1,16116:7246811,24534279:1547636,1161885,196608 +) +k1,16116:8965672,24534279:171225 +k1,16116:10090446,24534279:171225 +k1,16116:11365953,24534279:171225 +k1,16116:12949479,24534279:171225 +k1,16116:13476564,24534279:171225 +k1,16116:14873968,24534279:171225 +k1,16116:16028234,24534279:171226 +k1,16116:16885621,24534279:171225 +k1,16116:20031525,24534279:171225 +k1,16116:22572532,24534279:171225 +k1,16116:25203979,24534279:171225 +k1,16116:28880069,24534279:171225 +k1,16116:29702722,24534279:171225 +k1,16116:31966991,24534279:0 +) +(1,16117:7246811,25375767:24720180,513147,134348 +k1,16116:9259796,25375767:200259 +k1,16116:10840899,25375767:200259 +k1,16116:11572655,25375767:200259 +k1,16116:15658545,25375767:200260 +k1,16116:18009696,25375767:200259 +k1,16116:19703521,25375767:200259 +k1,16116:20589942,25375767:200259 +k1,16116:22488239,25375767:200259 +k1,16116:23556850,25375767:200259 +k1,16116:24572377,25375767:200259 +k1,16116:25791722,25375767:200260 +k1,16116:28899158,25375767:200259 +k1,16116:29785579,25375767:200259 +k1,16116:31307699,25375767:200259 +k1,16116:31966991,25375767:0 +) +(1,16117:7246811,26217255:24720180,513147,126483 +k1,16116:8567696,26217255:223157 +k1,16116:10121234,26217255:223157 +k1,16116:12349137,26217255:223157 +k1,16116:13200128,26217255:223156 +k1,16116:14626526,26217255:223157 +k1,16116:16390434,26217255:223157 +k1,16116:17632676,26217255:223157 +k1,16116:20551329,26217255:223157 +k1,16116:21425914,26217255:223157 +k1,16116:22741555,26217255:223156 +k1,16116:23496209,26217255:223157 +(1,16116:23496209,26217255:0,452978,115847 +r1,16117:27371593,26217255:3875384,568825,115847 +k1,16116:23496209,26217255:-3875384 +) +(1,16116:23496209,26217255:3875384,452978,115847 +k1,16116:23496209,26217255:3277 +h1,16116:27368316,26217255:0,411205,112570 +) +k1,16116:27768420,26217255:223157 +k1,16116:29188264,26217255:223157 +k1,16116:31966991,26217255:0 +) +(1,16117:7246811,27058743:24720180,505283,134348 +k1,16116:9175973,27058743:248819 +k1,16116:9956288,27058743:248818 +k1,16116:10560967,27058743:248819 +k1,16116:13784464,27058743:248818 +k1,16116:16011160,27058743:248819 +k1,16116:16876016,27058743:248818 +k1,16116:19010306,27058743:248819 +k1,16116:20710746,27058743:248818 +k1,16116:23582971,27058743:248819 +k1,16116:25697599,27058743:248818 +k1,16116:29910035,27058743:248819 +k1,16116:30810281,27058743:248818 +k1,16116:31966991,27058743:0 +) +(1,16117:7246811,27900231:24720180,513147,126483 +k1,16116:8594987,27900231:179669 +k1,16116:9457542,27900231:179670 +k1,16116:11710115,27900231:179669 +k1,16116:12505823,27900231:179670 +k1,16116:13704577,27900231:179669 +k1,16116:15040957,27900231:179670 +k1,16116:16614577,27900231:179669 +k1,16116:17813332,27900231:179670 +k1,16116:21429709,27900231:179669 +k1,16116:24232130,27900231:179670 +k1,16116:27098120,27900231:179669 +k1,16116:28509867,27900231:179670 +k1,16116:31350953,27900231:179669 +k1,16116:31966991,27900231:0 +) +(1,16117:7246811,28741719:24720180,505283,134348 +g1,16116:9724727,28741719 +h1,16116:10695315,28741719:0,0,0 +g1,16116:10894544,28741719 +g1,16116:11903143,28741719 +g1,16116:13600525,28741719 +h1,16116:14795902,28741719:0,0,0 +k1,16117:31966990,28741719:16790324 +g1,16117:31966990,28741719 +) +] +) +] +r1,16117:32583029,29465891:26214,6683321,0 +) +] +) +) +g1,16117:32583029,28876067 +) +h1,16117:6630773,29492105:0,0,0 +(1,16122:6630773,30802327:25952256,513147,134348 +h1,16121:6630773,30802327:983040,0,0 +k1,16121:9319016,30802327:243750 +k1,16121:10431119,30802327:243751 +k1,16121:11954787,30802327:243750 +k1,16121:13355247,30802327:243750 +k1,16121:16260415,30802327:243751 +k1,16121:17163457,30802327:243750 +k1,16121:18426292,30802327:243750 +k1,16121:19762528,30802327:243751 +k1,16121:20665570,30802327:243750 +k1,16121:21265180,30802327:243750 +k1,16121:23106043,30802327:243751 +k1,16121:26045289,30802327:243750 +k1,16121:29260441,30802327:243750 +k1,16121:30660902,30802327:243751 +k1,16121:31563944,30802327:243750 +k1,16121:32583029,30802327:0 +) +(1,16122:6630773,31643815:25952256,513147,134348 +k1,16121:8345367,31643815:234791 +k1,16121:11605956,31643815:234792 +k1,16121:14930770,31643815:234791 +k1,16121:17194556,31643815:234791 +k1,16121:18626035,31643815:234792 +(1,16121:18626035,31643815:0,452978,115847 +r1,16121:22501419,31643815:3875384,568825,115847 +k1,16121:18626035,31643815:-3875384 +) +(1,16121:18626035,31643815:3875384,452978,115847 +k1,16121:18626035,31643815:3277 +h1,16121:22498142,31643815:0,411205,112570 +) +k1,16121:22736210,31643815:234791 +k1,16121:25666497,31643815:234791 +k1,16121:27584253,31643815:234791 +k1,16121:28505207,31643815:234792 +k1,16121:29510701,31643815:234791 +k1,16121:32583029,31643815:0 +) +(1,16122:6630773,32485303:25952256,513147,134348 +k1,16121:7252054,32485303:265421 +k1,16121:8906838,32485303:265421 +k1,16121:11222225,32485303:265421 +k1,16121:12170531,32485303:265421 +k1,16121:13206654,32485303:265420 +k1,16121:15431601,32485303:265421 +k1,16121:16981528,32485303:265421 +k1,16121:18351231,32485303:265421 +k1,16121:19364418,32485303:265421 +k1,16121:22095303,32485303:265421 +k1,16121:23628190,32485303:265421 +k1,16121:24249471,32485303:265421 +k1,16121:25904254,32485303:265420 +k1,16121:28219641,32485303:265421 +k1,16121:31208083,32485303:265421 +k1,16121:31931601,32485303:265421 +k1,16121:32583029,32485303:0 +) +(1,16122:6630773,33326791:25952256,513147,134348 +k1,16121:9799307,33326791:193855 +k1,16121:12362945,33326791:193856 +k1,16121:13748245,33326791:193855 +k1,16121:15663076,33326791:193856 +k1,16121:17495986,33326791:193855 +k1,16121:18341269,33326791:193855 +k1,16121:18890985,33326791:193856 +k1,16121:20311019,33326791:193855 +k1,16121:21661585,33326791:193856 +k1,16121:22808989,33326791:193855 +k1,16121:24308977,33326791:193855 +k1,16121:26432213,33326791:193856 +k1,16121:27645153,33326791:193855 +k1,16121:29228372,33326791:193856 +k1,16121:31298523,33326791:193855 +k1,16121:32583029,33326791:0 +) +(1,16122:6630773,34168279:25952256,505283,7863 +g1,16121:7698354,34168279 +g1,16121:9030045,34168279 +g1,16121:10844081,34168279 +g1,16121:11694738,34168279 +k1,16122:32583029,34168279:19369822 +g1,16122:32583029,34168279 +) +v1,16124:6630773,35303192:0,393216,0 +(1,16128:6630773,35618289:25952256,708313,196608 +g1,16128:6630773,35618289 +g1,16128:6630773,35618289 +g1,16128:6434165,35618289 +(1,16128:6434165,35618289:0,708313,196608 +r1,16128:32779637,35618289:26345472,904921,196608 +k1,16128:6434165,35618289:-26345472 +) +(1,16128:6434165,35618289:26345472,708313,196608 +[1,16128:6630773,35618289:25952256,511705,0 +(1,16126:6630773,35517102:25952256,410518,101187 +(1,16125:6630773,35517102:0,0,0 +g1,16125:6630773,35517102 +g1,16125:6630773,35517102 +g1,16125:6303093,35517102 +(1,16125:6303093,35517102:0,0,0 +) +g1,16125:6630773,35517102 +) +g1,16126:8527647,35517102 +g1,16126:9476085,35517102 +g1,16126:13585980,35517102 +g1,16126:14218272,35517102 +g1,16126:15799002,35517102 +g1,16126:16431294,35517102 +g1,16126:17063586,35517102 +g1,16126:18328170,35517102 +g1,16126:18960462,35517102 +g1,16126:20225045,35517102 +g1,16126:20857337,35517102 +g1,16126:21489629,35517102 +h1,16126:25599523,35517102:0,0,0 +k1,16126:32583029,35517102:6983506 +g1,16126:32583029,35517102 +) +] +) +g1,16128:32583029,35618289 +g1,16128:6630773,35618289 +g1,16128:6630773,35618289 +g1,16128:32583029,35618289 +g1,16128:32583029,35618289 +) +h1,16128:6630773,35814897:0,0,0 +(1,16132:6630773,37125119:25952256,513147,134348 +h1,16131:6630773,37125119:983040,0,0 +k1,16131:8806789,37125119:239427 +k1,16131:10661023,37125119:239427 +(1,16131:10661023,37125119:0,459977,115847 +r1,16131:12426136,37125119:1765113,575824,115847 +k1,16131:10661023,37125119:-1765113 +) +(1,16131:10661023,37125119:1765113,459977,115847 +k1,16131:10661023,37125119:3277 +h1,16131:12422859,37125119:0,411205,112570 +) +k1,16131:12665563,37125119:239427 +k1,16131:13556418,37125119:239427 +k1,16131:14151705,37125119:239427 +k1,16131:15659868,37125119:239386 +k1,16131:16882335,37125119:239427 +k1,16131:19633757,37125119:239427 +k1,16131:20820835,37125119:239427 +k1,16131:21830965,37125119:239427 +k1,16131:24381847,37125119:239427 +k1,16131:27463570,37125119:239427 +k1,16131:29718229,37125119:239427 +k1,16131:31149101,37125119:239427 +k1,16131:32583029,37125119:0 +) +(1,16132:6630773,37966607:25952256,505283,126483 +g1,16131:9125073,37966607 +g1,16131:10112700,37966607 +k1,16132:32583030,37966607:19547424 +g1,16132:32583030,37966607 +) +v1,16134:6630773,39101520:0,393216,0 +(1,16139:6630773,40089086:25952256,1380782,196608 +g1,16139:6630773,40089086 +g1,16139:6630773,40089086 +g1,16139:6434165,40089086 +(1,16139:6434165,40089086:0,1380782,196608 +r1,16139:32779637,40089086:26345472,1577390,196608 +k1,16139:6434165,40089086:-26345472 +) +(1,16139:6434165,40089086:26345472,1380782,196608 +[1,16139:6630773,40089086:25952256,1184174,0 +(1,16136:6630773,39315430:25952256,410518,101187 +(1,16135:6630773,39315430:0,0,0 +g1,16135:6630773,39315430 +g1,16135:6630773,39315430 +g1,16135:6303093,39315430 +(1,16135:6303093,39315430:0,0,0 +) +g1,16135:6630773,39315430 +) +k1,16136:6630773,39315430:0 +g1,16136:12005250,39315430 +g1,16136:13585979,39315430 +g1,16136:14218271,39315430 +g1,16136:19276602,39315430 +g1,16136:22438059,39315430 +g1,16136:23070351,39315430 +h1,16136:24967225,39315430:0,0,0 +k1,16136:32583029,39315430:7615804 +g1,16136:32583029,39315430 +) +(1,16137:6630773,39981608:25952256,410518,107478 +h1,16137:6630773,39981608:0,0,0 +g1,16137:14850561,39981608 +g1,16137:16747435,39981608 +g1,16137:17379727,39981608 +h1,16137:20541184,39981608:0,0,0 +k1,16137:32583029,39981608:12041845 +g1,16137:32583029,39981608 +) +] +) +g1,16139:32583029,40089086 +g1,16139:6630773,40089086 +g1,16139:6630773,40089086 +g1,16139:32583029,40089086 +g1,16139:32583029,40089086 +) +h1,16139:6630773,40285694:0,0,0 +v1,16143:6630773,41889341:0,393216,0 +(1,16152:6630773,45510161:25952256,4014036,196608 +g1,16152:6630773,45510161 +g1,16152:6630773,45510161 +g1,16152:6434165,45510161 +(1,16152:6434165,45510161:0,4014036,196608 +r1,16152:32779637,45510161:26345472,4210644,196608 +k1,16152:6434165,45510161:-26345472 +) +(1,16152:6434165,45510161:26345472,4014036,196608 +[1,16152:6630773,45510161:25952256,3817428,0 +(1,16151:6630773,42096959:25952256,404226,101187 +(1,16144:6630773,42096959:0,0,0 +g1,16144:6630773,42096959 +g1,16144:6630773,42096959 +g1,16144:6303093,42096959 +(1,16144:6303093,42096959:0,0,0 +) +g1,16144:6630773,42096959 +) +k1,16151:6630773,42096959:0 +k1,16151:6630773,42096959:0 +h1,16151:10108376,42096959:0,0,0 +k1,16151:32583028,42096959:22474652 +g1,16151:32583028,42096959 +) +(1,16151:6630773,42763137:25952256,404226,82312 +h1,16151:6630773,42763137:0,0,0 +k1,16151:6630773,42763137:0 +h1,16151:9476085,42763137:0,0,0 +k1,16151:32583029,42763137:23106944 +g1,16151:32583029,42763137 +) +(1,16151:6630773,43429315:25952256,404226,82312 +h1,16151:6630773,43429315:0,0,0 +k1,16151:6630773,43429315:0 +h1,16151:9476085,43429315:0,0,0 +k1,16151:32583029,43429315:23106944 +g1,16151:32583029,43429315 +) +(1,16151:6630773,44095493:25952256,404226,82312 +h1,16151:6630773,44095493:0,0,0 +k1,16151:6630773,44095493:0 +h1,16151:9476085,44095493:0,0,0 +k1,16151:32583029,44095493:23106944 +g1,16151:32583029,44095493 +) +(1,16151:6630773,44761671:25952256,404226,82312 +h1,16151:6630773,44761671:0,0,0 +k1,16151:6630773,44761671:0 +h1,16151:9476085,44761671:0,0,0 +k1,16151:32583029,44761671:23106944 +g1,16151:32583029,44761671 +) +(1,16151:6630773,45427849:25952256,404226,82312 +h1,16151:6630773,45427849:0,0,0 +k1,16151:6630773,45427849:0 +h1,16151:9476085,45427849:0,0,0 +k1,16151:32583029,45427849:23106944 +g1,16151:32583029,45427849 +) +] +) +g1,16152:32583029,45510161 +g1,16152:6630773,45510161 +g1,16152:6630773,45510161 +g1,16152:32583029,45510161 +g1,16152:32583029,45510161 +) +h1,16152:6630773,45706769:0,0,0 +] +(1,16156:32583029,45706769:0,0,0 +g1,16156:32583029,45706769 +) +) +] +(1,16156:6630773,47279633:25952256,0,0 +h1,16156:6630773,47279633:25952256,0,0 +) +] +h1,16156:4262630,4025873:0,0,0 +] +!26872 }313 -Input:2432:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2433:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2434:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2435:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2436:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2437:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2438:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2439:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2440:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2441:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2442:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!958 +Input:2427:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2428:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2429:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2430:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2431:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2432:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2433:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2434:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2435:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2436:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2437:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2438:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2439:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1208 {314 -[1,16165:4262630,47279633:28320399,43253760,0 -(1,16165:4262630,4025873:0,0,0 -[1,16165:-473657,4025873:25952256,0,0 -(1,16165:-473657,-710414:25952256,0,0 -h1,16165:-473657,-710414:0,0,0 -(1,16165:-473657,-710414:0,0,0 -(1,16165:-473657,-710414:0,0,0 -g1,16165:-473657,-710414 -(1,16165:-473657,-710414:65781,0,65781 -g1,16165:-407876,-710414 -[1,16165:-407876,-644633:0,0,0 +[1,16196:4262630,47279633:28320399,43253760,0 +(1,16196:4262630,4025873:0,0,0 +[1,16196:-473657,4025873:25952256,0,0 +(1,16196:-473657,-710414:25952256,0,0 +h1,16196:-473657,-710414:0,0,0 +(1,16196:-473657,-710414:0,0,0 +(1,16196:-473657,-710414:0,0,0 +g1,16196:-473657,-710414 +(1,16196:-473657,-710414:65781,0,65781 +g1,16196:-407876,-710414 +[1,16196:-407876,-644633:0,0,0 ] ) -k1,16165:-473657,-710414:-65781 +k1,16196:-473657,-710414:-65781 ) ) -k1,16165:25478599,-710414:25952256 -g1,16165:25478599,-710414 +k1,16196:25478599,-710414:25952256 +g1,16196:25478599,-710414 ) ] ) -[1,16165:6630773,47279633:25952256,43253760,0 -[1,16165:6630773,4812305:25952256,786432,0 -(1,16165:6630773,4812305:25952256,513147,126483 -(1,16165:6630773,4812305:25952256,513147,126483 -g1,16165:3078558,4812305 -[1,16165:3078558,4812305:0,0,0 -(1,16165:3078558,2439708:0,1703936,0 -k1,16165:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16165:2537886,2439708:1179648,16384,0 +[1,16196:6630773,47279633:25952256,43253760,0 +[1,16196:6630773,4812305:25952256,786432,0 +(1,16196:6630773,4812305:25952256,513147,126483 +(1,16196:6630773,4812305:25952256,513147,126483 +g1,16196:3078558,4812305 +[1,16196:3078558,4812305:0,0,0 +(1,16196:3078558,2439708:0,1703936,0 +k1,16196:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16196:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16165:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16196:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16165:3078558,4812305:0,0,0 -(1,16165:3078558,2439708:0,1703936,0 -g1,16165:29030814,2439708 -g1,16165:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16165:36151628,1915420:16384,1179648,0 +[1,16196:3078558,4812305:0,0,0 +(1,16196:3078558,2439708:0,1703936,0 +g1,16196:29030814,2439708 +g1,16196:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16196:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16165:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16196:37855564,2439708:1179648,16384,0 ) ) -k1,16165:3078556,2439708:-34777008 +k1,16196:3078556,2439708:-34777008 ) ] -[1,16165:3078558,4812305:0,0,0 -(1,16165:3078558,49800853:0,16384,2228224 -k1,16165:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16165:2537886,49800853:1179648,16384,0 +[1,16196:3078558,4812305:0,0,0 +(1,16196:3078558,49800853:0,16384,2228224 +k1,16196:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16196:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16165:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16196:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16165:3078558,4812305:0,0,0 -(1,16165:3078558,49800853:0,16384,2228224 -g1,16165:29030814,49800853 -g1,16165:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16165:36151628,51504789:16384,1179648,0 +[1,16196:3078558,4812305:0,0,0 +(1,16196:3078558,49800853:0,16384,2228224 +g1,16196:29030814,49800853 +g1,16196:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16196:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16165:37855564,49800853:1179648,16384,0 -) -) -k1,16165:3078556,49800853:-34777008 -) -] -g1,16165:6630773,4812305 -g1,16165:6630773,4812305 -g1,16165:9744388,4812305 -g1,16165:11175694,4812305 -k1,16165:31387652,4812305:20211958 -) -) -] -[1,16165:6630773,45706769:25952256,40108032,0 -(1,16165:6630773,45706769:25952256,40108032,0 -(1,16165:6630773,45706769:0,0,0 -g1,16165:6630773,45706769 -) -[1,16165:6630773,45706769:25952256,40108032,0 -v1,16126:6630773,6254097:0,393216,0 -(1,16126:6630773,11980592:25952256,6119711,616038 -g1,16126:6630773,11980592 -(1,16126:6630773,11980592:25952256,6119711,616038 -(1,16126:6630773,12596630:25952256,6735749,0 -[1,16126:6630773,12596630:25952256,6735749,0 -(1,16126:6630773,12570416:25952256,6683321,0 -r1,16126:6656987,12570416:26214,6683321,0 -[1,16126:6656987,12570416:25899828,6683321,0 -(1,16126:6656987,11980592:25899828,5503673,0 -[1,16126:7246811,11980592:24720180,5503673,0 -(1,16126:7246811,7638804:24720180,1161885,196608 -(1,16125:7246811,7638804:0,1161885,196608 -r1,16126:8794447,7638804:1547636,1358493,196608 -k1,16125:7246811,7638804:-1547636 -) -(1,16125:7246811,7638804:1547636,1161885,196608 -) -k1,16125:9031634,7638804:237187 -k1,16125:9896657,7638804:237188 -k1,16125:11735544,7638804:237187 -k1,16125:13670113,7638804:237187 -k1,16125:16262665,7638804:237188 -k1,16125:17186014,7638804:237187 -k1,16125:19452197,7638804:237188 -(1,16125:19452197,7638804:0,414482,115847 -r1,16126:25437852,7638804:5985655,530329,115847 -k1,16125:19452197,7638804:-5985655 -) -(1,16125:19452197,7638804:5985655,414482,115847 -g1,16125:22972592,7638804 -g1,16125:23676016,7638804 -h1,16125:25434575,7638804:0,411205,112570 -) -k1,16125:25675039,7638804:237187 -k1,16125:27610264,7638804:237187 -k1,16125:30105167,7638804:237188 -k1,16125:30698214,7638804:237187 -k1,16125:31966991,7638804:0 -) -(1,16126:7246811,8480292:24720180,513147,126483 -k1,16125:8497846,8480292:267995 -k1,16125:9898304,8480292:267996 -k1,16125:11554352,8480292:267995 -k1,16125:13520386,8480292:267996 -k1,16125:14246478,8480292:267995 -k1,16125:15045971,8480292:267996 -k1,16125:16899937,8480292:267995 -k1,16125:17941912,8480292:267995 -k1,16125:20492527,8480292:267996 -k1,16125:21226483,8480292:267995 -k1,16125:22698375,8480292:267996 -k1,16125:25034686,8480292:267995 -k1,16125:26117950,8480292:267996 -k1,16125:28757693,8480292:267995 -k1,16125:31966991,8480292:0 -) -(1,16126:7246811,9321780:24720180,513147,134348 -k1,16125:11433604,9321780:206136 -k1,16125:13133306,9321780:206136 -k1,16125:14025604,9321780:206136 -k1,16125:15715475,9321780:206136 -k1,16125:17412555,9321780:206136 -k1,16125:18789164,9321780:206136 -k1,16125:21165851,9321780:206135 -k1,16125:22716786,9321780:206136 -k1,16125:25180637,9321780:206136 -k1,16125:26405858,9321780:206136 -k1,16125:27815890,9321780:206136 -k1,16125:30090342,9321780:206136 -k1,16125:30947906,9321780:206136 -k1,16125:31966991,9321780:0 -) -(1,16126:7246811,10163268:24720180,513147,126483 -k1,16125:8513669,10163268:283818 -k1,16125:10840244,10163268:283818 -k1,16125:12294534,10163268:283817 -k1,16125:13884485,10163268:283818 -k1,16125:15678253,10163268:283818 -k1,16125:17658798,10163268:283818 -k1,16125:19331979,10163268:283818 -k1,16125:20883262,10163268:283817 -k1,16125:21522940,10163268:283818 -k1,16125:24189647,10163268:283818 -k1,16125:25089503,10163268:283818 -k1,16125:26392405,10163268:283817 -k1,16125:28065586,10163268:283818 -k1,16125:30399370,10163268:283818 -k1,16125:31966991,10163268:0 -) -(1,16126:7246811,11004756:24720180,505283,134348 -k1,16125:9516102,11004756:200975 -k1,16125:10708638,11004756:200976 -k1,16125:12947783,11004756:200975 -k1,16125:16417694,11004756:200975 -k1,16125:17304831,11004756:200975 -k1,16125:18276510,11004756:200976 -k1,16125:21256212,11004756:200975 -k1,16125:22073225,11004756:200975 -(1,16125:22073225,11004756:0,459977,115847 -r1,16126:25596897,11004756:3523672,575824,115847 -k1,16125:22073225,11004756:-3523672 -) -(1,16125:22073225,11004756:3523672,459977,115847 -k1,16125:22073225,11004756:3277 -h1,16125:25593620,11004756:0,411205,112570 -) -k1,16125:25797872,11004756:200975 -k1,16125:28462346,11004756:200976 -k1,16125:29688304,11004756:200975 -k1,16125:31966991,11004756:0 -) -(1,16126:7246811,11846244:24720180,513147,134348 -h1,16125:8615858,11846244:0,0,0 -g1,16125:8815087,11846244 -g1,16125:9823686,11846244 -g1,16125:11521068,11846244 -h1,16125:12317986,11846244:0,0,0 -g1,16125:12517215,11846244 -g1,16125:13664095,11846244 -k1,16126:31966991,11846244:15804664 -g1,16126:31966991,11846244 -) -] -) -] -r1,16126:32583029,12570416:26214,6683321,0 -) -] -) -) -g1,16126:32583029,11980592 -) -h1,16126:6630773,12596630:0,0,0 -v1,16129:6630773,13962406:0,393216,0 -(1,16130:6630773,16240573:25952256,2671383,616038 -g1,16130:6630773,16240573 -(1,16130:6630773,16240573:25952256,2671383,616038 -(1,16130:6630773,16856611:25952256,3287421,0 -[1,16130:6630773,16856611:25952256,3287421,0 -(1,16130:6630773,16830397:25952256,3234993,0 -r1,16130:6656987,16830397:26214,3234993,0 -[1,16130:6656987,16830397:25899828,3234993,0 -(1,16130:6656987,16240573:25899828,2055345,0 -[1,16130:7246811,16240573:24720180,2055345,0 -(1,16130:7246811,15272602:24720180,1087374,115847 -k1,16129:8632792,15272602:176278 -k1,16129:10509075,15272602:176279 -k1,16129:11704438,15272602:176278 -k1,16129:13270079,15272602:176278 -k1,16129:15322654,15272602:176279 -(1,16129:15322654,15272602:0,459977,115847 -r1,16130:17087767,15272602:1765113,575824,115847 -k1,16129:15322654,15272602:-1765113 -) -(1,16129:15322654,15272602:1765113,459977,115847 -k1,16129:15322654,15272602:3277 -h1,16129:17084490,15272602:0,411205,112570 -) -k1,16129:17264045,15272602:176278 -k1,16129:18707789,15272602:176278 -k1,16129:20110247,15272602:176279 -k1,16129:21599867,15272602:176278 -k1,16129:23170096,15272602:176278 -k1,16129:26372172,15272602:176279 -(1,16129:26372172,15272602:0,452978,115847 -r1,16130:30599268,15272602:4227096,568825,115847 -k1,16129:26372172,15272602:-4227096 -) -(1,16129:26372172,15272602:4227096,452978,115847 -k1,16129:26372172,15272602:3277 -h1,16129:30595991,15272602:0,411205,112570 -) -k1,16129:30775546,15272602:176278 -k1,16130:31966991,15272602:0 -) -(1,16130:7246811,16114090:24720180,513147,126483 -(1,16129:7246811,16114090:0,452978,115847 -r1,16130:11825619,16114090:4578808,568825,115847 -k1,16129:7246811,16114090:-4578808 -) -(1,16129:7246811,16114090:4578808,452978,115847 -k1,16129:7246811,16114090:3277 -h1,16129:11822342,16114090:0,411205,112570 -) -g1,16129:12024848,16114090 -g1,16129:14551260,16114090 -g1,16129:15417645,16114090 -(1,16129:15417645,16114090:0,452978,115847 -r1,16130:18941317,16114090:3523672,568825,115847 -k1,16129:15417645,16114090:-3523672 -) -(1,16129:15417645,16114090:3523672,452978,115847 -k1,16129:15417645,16114090:3277 -h1,16129:18938040,16114090:0,411205,112570 -) -g1,16129:19140546,16114090 -g1,16129:20531220,16114090 -g1,16129:23025520,16114090 -g1,16129:24243834,16114090 -k1,16130:31966991,16114090:6236145 -g1,16130:31966991,16114090 -) -] -) -] -r1,16130:32583029,16830397:26214,3234993,0 -) -] -) -) -g1,16130:32583029,16240573 -) -h1,16130:6630773,16856611:0,0,0 -(1,16133:6630773,18222387:25952256,513147,134348 -h1,16132:6630773,18222387:983040,0,0 -k1,16132:10643228,18222387:239547 -(1,16132:10643228,18222387:0,452978,115847 -r1,16132:12408341,18222387:1765113,568825,115847 -k1,16132:10643228,18222387:-1765113 -) -(1,16132:10643228,18222387:1765113,452978,115847 -k1,16132:10643228,18222387:3277 -h1,16132:12405064,18222387:0,411205,112570 -) -k1,16132:12647887,18222387:239546 -k1,16132:14570399,18222387:239547 -k1,16132:15224748,18222387:239506 -k1,16132:17754122,18222387:239546 -k1,16132:19185114,18222387:239547 -k1,16132:21369770,18222387:239547 -k1,16132:23248371,18222387:239546 -k1,16132:25001144,18222387:239547 -k1,16132:28717375,18222387:239546 -k1,16132:29608350,18222387:239547 -k1,16132:32583029,18222387:0 -) -(1,16133:6630773,19063875:25952256,513147,134348 -k1,16132:9030888,19063875:204004 -k1,16132:9886320,19063875:204004 -k1,16132:11109410,19063875:204005 -k1,16132:13733659,19063875:204004 -k1,16132:14620548,19063875:204004 -k1,16132:15180412,19063875:204004 -k1,16132:16541127,19063875:204005 -k1,16132:19574320,19063875:204004 -k1,16132:20935034,19063875:204004 -k1,16132:21821923,19063875:204004 -k1,16132:23676124,19063875:204004 -k1,16132:27185110,19063875:204005 -k1,16132:28075276,19063875:204004 -k1,16132:31821501,19063875:204004 -k1,16132:32583029,19063875:0 -) -(1,16133:6630773,19905363:25952256,513147,134348 -k1,16132:9264513,19905363:194490 -k1,16132:9814863,19905363:194490 -k1,16132:11970846,19905363:194490 -k1,16132:13546181,19905363:194491 -k1,16132:16778920,19905363:194490 -k1,16132:18077692,19905363:194490 -k1,16132:19019948,19905363:194490 -k1,16132:20148981,19905363:194490 -k1,16132:22901997,19905363:194490 -k1,16132:26377220,19905363:194491 -(1,16132:26377220,19905363:0,414482,115847 -r1,16132:27438909,19905363:1061689,530329,115847 -k1,16132:26377220,19905363:-1061689 -) -(1,16132:26377220,19905363:1061689,414482,115847 -k1,16132:26377220,19905363:3277 -h1,16132:27435632,19905363:0,411205,112570 -) -k1,16132:27807069,19905363:194490 -k1,16132:28629394,19905363:194490 -k1,16132:29921612,19905363:194490 -k1,16132:32583029,19905363:0 -) -(1,16133:6630773,20746851:25952256,505283,126483 -g1,16132:7698354,20746851 -g1,16132:8832126,20746851 -(1,16132:8832126,20746851:0,414482,115847 -r1,16132:9893815,20746851:1061689,530329,115847 -k1,16132:8832126,20746851:-1061689 -) -(1,16132:8832126,20746851:1061689,414482,115847 -k1,16132:8832126,20746851:3277 -h1,16132:9890538,20746851:0,411205,112570 -) -g1,16132:10093044,20746851 -g1,16132:10943701,20746851 -g1,16132:11498790,20746851 -g1,16132:12981214,20746851 -g1,16132:14348950,20746851 -g1,16132:17178139,20746851 -g1,16132:18063530,20746851 -g1,16132:19281844,20746851 -g1,16132:21616236,20746851 -g1,16132:24755410,20746851 -(1,16132:24755410,20746851:0,452978,115847 -r1,16132:26168811,20746851:1413401,568825,115847 -k1,16132:24755410,20746851:-1413401 -) -(1,16132:24755410,20746851:1413401,452978,115847 -k1,16132:24755410,20746851:3277 -h1,16132:26165534,20746851:0,411205,112570 -) -k1,16133:32583029,20746851:6033454 -g1,16133:32583029,20746851 -) -v1,16135:6630773,21937317:0,393216,0 -(1,16141:6630773,23584769:25952256,2040668,196608 -g1,16141:6630773,23584769 -g1,16141:6630773,23584769 -g1,16141:6434165,23584769 -(1,16141:6434165,23584769:0,2040668,196608 -r1,16141:32779637,23584769:26345472,2237276,196608 -k1,16141:6434165,23584769:-26345472 -) -(1,16141:6434165,23584769:26345472,2040668,196608 -[1,16141:6630773,23584769:25952256,1844060,0 -(1,16137:6630773,22144935:25952256,404226,101187 -(1,16136:6630773,22144935:0,0,0 -g1,16136:6630773,22144935 -g1,16136:6630773,22144935 -g1,16136:6303093,22144935 -(1,16136:6303093,22144935:0,0,0 -) -g1,16136:6630773,22144935 -) -g1,16137:9476084,22144935 -g1,16137:10424522,22144935 -g1,16137:13585980,22144935 -g1,16137:15799000,22144935 -g1,16137:18328166,22144935 -h1,16137:21173477,22144935:0,0,0 -k1,16137:32583029,22144935:11409552 -g1,16137:32583029,22144935 -) -(1,16138:6630773,22811113:25952256,410518,101187 -h1,16138:6630773,22811113:0,0,0 -g1,16138:11056813,22811113 -g1,16138:12637542,22811113 -g1,16138:13269834,22811113 -g1,16138:18328165,22811113 -g1,16138:19592748,22811113 -g1,16138:20225040,22811113 -h1,16138:21805769,22811113:0,0,0 -k1,16138:32583029,22811113:10777260 -g1,16138:32583029,22811113 -) -(1,16139:6630773,23477291:25952256,410518,107478 -h1,16139:6630773,23477291:0,0,0 -g1,16139:14850561,23477291 -g1,16139:16747435,23477291 -g1,16139:17379727,23477291 -h1,16139:20541184,23477291:0,0,0 -k1,16139:32583029,23477291:12041845 -g1,16139:32583029,23477291 -) -] -) -g1,16141:32583029,23584769 -g1,16141:6630773,23584769 -g1,16141:6630773,23584769 -g1,16141:32583029,23584769 -g1,16141:32583029,23584769 -) -h1,16141:6630773,23781377:0,0,0 -v1,16145:6630773,25496131:0,393216,0 -(1,16151:6630773,27045541:25952256,1942626,196608 -g1,16151:6630773,27045541 -g1,16151:6630773,27045541 -g1,16151:6434165,27045541 -(1,16151:6434165,27045541:0,1942626,196608 -r1,16151:32779637,27045541:26345472,2139234,196608 -k1,16151:6434165,27045541:-26345472 -) -(1,16151:6434165,27045541:26345472,1942626,196608 -[1,16151:6630773,27045541:25952256,1746018,0 -(1,16150:6630773,25703749:25952256,404226,6290 -(1,16146:6630773,25703749:0,0,0 -g1,16146:6630773,25703749 -g1,16146:6630773,25703749 -g1,16146:6303093,25703749 -(1,16146:6303093,25703749:0,0,0 -) -g1,16146:6630773,25703749 -) -h1,16150:7895356,25703749:0,0,0 -k1,16150:32583028,25703749:24687672 -g1,16150:32583028,25703749 -) -(1,16150:6630773,26369927:25952256,404226,6290 -h1,16150:6630773,26369927:0,0,0 -g1,16150:8527647,26369927 -h1,16150:10108375,26369927:0,0,0 -k1,16150:32583029,26369927:22474654 -g1,16150:32583029,26369927 -) -(1,16150:6630773,27036105:25952256,388497,9436 -h1,16150:6630773,27036105:0,0,0 -h1,16150:8527647,27036105:0,0,0 -k1,16150:32583029,27036105:24055382 -g1,16150:32583029,27036105 -) -] -) -g1,16151:32583029,27045541 -g1,16151:6630773,27045541 -g1,16151:6630773,27045541 -g1,16151:32583029,27045541 -g1,16151:32583029,27045541 -) -h1,16151:6630773,27242149:0,0,0 -(1,16155:6630773,29857697:25952256,555811,12975 -(1,16155:6630773,29857697:2450326,534184,12975 -g1,16155:6630773,29857697 -g1,16155:9081099,29857697 -) -k1,16155:32583029,29857697:21140996 -g1,16155:32583029,29857697 -) -(1,16161:6630773,31092401:25952256,513147,134348 -k1,16160:9345224,31092401:179518 -k1,16160:11547838,31092401:179518 -k1,16160:12258853,31092401:179518 -k1,16160:13760233,31092401:179519 -k1,16160:14599043,31092401:179518 -k1,16160:15797646,31092401:179518 -k1,16160:19185151,31092401:179518 -k1,16160:21088921,31092401:179518 -k1,16160:21738332,31092401:179518 -k1,16160:24208990,31092401:179519 -k1,16160:27414305,31092401:179518 -k1,16160:28878329,31092401:179518 -k1,16160:30739501,31092401:179518 -k1,16160:32583029,31092401:0 -) -(1,16161:6630773,31933889:25952256,513147,126483 -k1,16160:8562394,31933889:223097 -k1,16160:9976936,31933889:223097 -k1,16160:12532460,31933889:223098 -k1,16160:13947002,31933889:223097 -k1,16160:15645314,31933889:223097 -k1,16160:18630754,31933889:223097 -k1,16160:21119432,31933889:223098 -k1,16160:24275920,31933889:223097 -k1,16160:27314444,31933889:223097 -k1,16160:28188969,31933889:223097 -k1,16160:29845995,31933889:223098 -k1,16160:30483911,31933889:223073 -k1,16161:32583029,31933889:0 -) -(1,16161:6630773,32775377:25952256,513147,134348 -k1,16160:8121553,32775377:177438 -k1,16160:9679180,32775377:177439 -k1,16160:10848178,32775377:177438 -k1,16160:14278169,32775377:177439 -k1,16160:15403258,32775377:177438 -k1,16160:17620833,32775377:177439 -k1,16160:18870440,32775377:177438 -k1,16160:20384813,32775377:177439 -k1,16160:24010100,32775377:177438 -k1,16160:26746720,32775377:177439 -k1,16160:29188427,32775377:177438 -k1,16160:30874505,32775377:177439 -k1,16160:32583029,32775377:0 -) -(1,16161:6630773,33616865:25952256,513147,134348 -k1,16160:8012741,33616865:190523 -k1,16160:10049413,33616865:190523 -k1,16160:11706632,33616865:190523 -k1,16160:14219096,33616865:190523 -k1,16160:15224887,33616865:190523 -k1,16160:16792321,33616865:190523 -k1,16160:18415461,33616865:190523 -k1,16160:19020819,33616865:190515 -k1,16160:22237139,33616865:190523 -k1,16160:23242930,33616865:190523 -k1,16160:24646524,33616865:190523 -k1,16160:27731772,33616865:190523 -k1,16160:29164858,33616865:190523 -k1,16160:30374466,33616865:190523 -k1,16161:32583029,33616865:0 -) -(1,16161:6630773,34458353:25952256,513147,134348 -k1,16160:8067084,34458353:213409 -k1,16160:9902509,34458353:213409 -k1,16160:10863684,34458353:213409 -k1,16160:13838125,34458353:213409 -k1,16160:14737696,34458353:213409 -k1,16160:18527404,34458353:213408 -k1,16160:19937500,34458353:213409 -k1,16160:22174005,34458353:213409 -k1,16160:25413211,34458353:213409 -k1,16160:27423617,34458353:213409 -k1,16160:29287223,34458353:213409 -k1,16160:32583029,34458353:0 -) -(1,16161:6630773,35299841:25952256,513147,126483 -k1,16160:7461245,35299841:171180 -k1,16160:8651510,35299841:171180 -k1,16160:10048869,35299841:171180 -k1,16160:11203089,35299841:171180 -k1,16160:13728322,35299841:171180 -k1,16160:14515540,35299841:171180 -k1,16160:16288420,35299841:171180 -k1,16160:18156982,35299841:171180 -k1,16160:19708350,35299841:171180 -k1,16160:22580924,35299841:171180 -k1,16160:24637575,35299841:171180 -k1,16160:25340252,35299841:171180 -k1,16160:26865406,35299841:171180 -k1,16160:29177647,35299841:171180 -k1,16160:30420996,35299841:171180 -k1,16161:32583029,35299841:0 -) -(1,16161:6630773,36141329:25952256,513147,134348 -k1,16160:8768319,36141329:200957 -k1,16160:10349464,36141329:200957 -k1,16160:11751041,36141329:200957 -k1,16160:15273363,36141329:200957 -k1,16160:18261566,36141329:200957 -k1,16160:19566805,36141329:200957 -k1,16160:20515528,36141329:200957 -k1,16160:24197102,36141329:200957 -k1,16160:25159587,36141329:200957 -k1,16160:27787998,36141329:200957 -k1,16160:31391584,36141329:200957 -k1,16160:32583029,36141329:0 -) -(1,16161:6630773,36982817:25952256,513147,126483 -k1,16160:8066948,36982817:232934 -k1,16160:8831378,36982817:232933 -k1,16160:13619064,36982817:232934 -k1,16160:14799648,36982817:232933 -k1,16160:17193959,36982817:232934 -k1,16160:18711398,36982817:232933 -k1,16160:20281266,36982817:232934 -k1,16160:21261965,36982817:232933 -k1,16160:23643825,36982817:232934 -k1,16160:24528186,36982817:232933 -k1,16160:26173421,36982817:232934 -k1,16160:29168697,36982817:232933 -k1,16160:30714973,36982817:232934 -k1,16160:31563944,36982817:232933 -k1,16160:32583029,36982817:0 -) -(1,16161:6630773,37824305:25952256,513147,134348 -k1,16160:8953238,37824305:161743 -k1,16160:11719382,37824305:161743 -k1,16160:15090422,37824305:161742 -k1,16160:18490954,37824305:161743 -k1,16160:19184194,37824305:161743 -k1,16160:20630443,37824305:161743 -k1,16160:22488913,37824305:161743 -k1,16160:25676452,37824305:161742 -k1,16160:27250496,37824305:161743 -k1,16160:30386918,37824305:161743 -k1,16160:32583029,37824305:0 -) -(1,16161:6630773,38665793:25952256,513147,126483 -k1,16160:9982081,38665793:145942 -k1,16160:10814185,38665793:145942 -k1,16160:12671271,38665793:145941 -k1,16160:13500098,38665793:145942 -k1,16160:15401750,38665793:145942 -k1,16160:17962038,38665793:145942 -k1,16160:19375445,38665793:145941 -k1,16160:22234578,38665793:145942 -k1,16160:23039812,38665793:145942 -k1,16160:24740923,38665793:145942 -(1,16160:24740923,38665793:0,414482,115847 -r1,16160:27209460,38665793:2468537,530329,115847 -k1,16160:24740923,38665793:-2468537 -) -(1,16160:24740923,38665793:2468537,414482,115847 -k1,16160:24740923,38665793:3277 -h1,16160:27206183,38665793:0,411205,112570 -) -k1,16160:27529071,38665793:145941 -k1,16160:28572856,38665793:145942 -(1,16160:28572856,38665793:0,452978,115847 -r1,16160:30337969,38665793:1765113,568825,115847 -k1,16160:28572856,38665793:-1765113 -) -(1,16160:28572856,38665793:1765113,452978,115847 -k1,16160:28572856,38665793:3277 -h1,16160:30334692,38665793:0,411205,112570 -) -k1,16160:30483911,38665793:145942 -k1,16161:32583029,38665793:0 -) -(1,16161:6630773,39507281:25952256,513147,134348 -k1,16160:7971358,39507281:200914 -k1,16160:10553850,39507281:200914 -k1,16160:11370801,39507281:200913 -k1,16160:13594811,39507281:200914 -k1,16160:15270940,39507281:200914 -k1,16160:16242557,39507281:200914 -(1,16160:16242557,39507281:0,452978,115847 -r1,16160:18359382,39507281:2116825,568825,115847 -k1,16160:16242557,39507281:-2116825 -) -(1,16160:16242557,39507281:2116825,452978,115847 -k1,16160:16242557,39507281:3277 -h1,16160:18356105,39507281:0,411205,112570 -) -k1,16160:18560296,39507281:200914 -k1,16160:22215612,39507281:200913 -k1,16160:24301997,39507281:200914 -k1,16160:25607193,39507281:200914 -k1,16160:26555873,39507281:200914 -k1,16160:28270012,39507281:200913 -k1,16160:29122354,39507281:200914 -k1,16160:31563944,39507281:200914 -k1,16160:32583029,39507281:0 -) -(1,16161:6630773,40348769:25952256,513147,134348 -k1,16160:9094490,40348769:198137 -k1,16160:12052348,40348769:198137 -k1,16160:12909777,40348769:198137 -k1,16160:16753027,40348769:198138 -k1,16160:17721867,40348769:198137 -k1,16160:20411027,40348769:198137 -k1,16160:21592204,40348769:198137 -k1,16160:23184292,40348769:198137 -k1,16160:24401514,40348769:198137 -k1,16160:26253125,40348769:198138 -k1,16160:28362947,40348769:198137 -k1,16160:29212512,40348769:198137 -k1,16160:32583029,40348769:0 -) -(1,16161:6630773,41190257:25952256,505283,126483 -g1,16160:7849087,41190257 -g1,16160:10207072,41190257 -g1,16160:11019063,41190257 -g1,16160:12006690,41190257 -k1,16161:32583029,41190257:19219744 -g1,16161:32583029,41190257 -) -(1,16163:6630773,42031745:25952256,513147,134348 -h1,16162:6630773,42031745:983040,0,0 -k1,16162:10797401,42031745:220705 -k1,16162:11634144,42031745:220705 -k1,16162:13058090,42031745:220705 -k1,16162:15557482,42031745:220705 -k1,16162:16646539,42031745:220705 -k1,16162:19999865,42031745:220705 -k1,16162:21239656,42031745:220706 -k1,16162:22552846,42031745:220705 -k1,16162:23432843,42031745:220705 -k1,16162:25350275,42031745:220705 -k1,16162:28596777,42031745:220705 -k1,16162:29579010,42031745:220705 -k1,16162:32227169,42031745:220705 -k1,16162:32583029,42031745:0 -) -(1,16163:6630773,42873233:25952256,513147,134348 -k1,16162:7842404,42873233:228591 -k1,16162:9809011,42873233:228592 -k1,16162:10723764,42873233:228591 -k1,16162:11723058,42873233:228591 -k1,16162:15197648,42873233:228592 -k1,16162:16112401,42873233:228591 -k1,16162:16872490,42873233:228592 -k1,16162:18120166,42873233:228591 -k1,16162:19715838,42873233:228591 -k1,16162:21338381,42873233:228592 -k1,16162:21981786,42873233:228562 -k1,16162:24143689,42873233:228591 -k1,16162:27571748,42873233:228591 -k1,16162:29585541,42873233:228592 -k1,16162:31005577,42873233:228591 -k1,16162:32583029,42873233:0 -) -(1,16163:6630773,43714721:25952256,513147,134348 -k1,16162:7784559,43714721:170746 -k1,16162:11567650,43714721:170747 -k1,16162:12729956,43714721:170746 -k1,16162:14186519,43714721:170747 -k1,16162:17173347,43714721:170746 -k1,16162:18576170,43714721:170746 -k1,16162:21025604,43714721:170747 -h1,16162:21996192,43714721:0,0,0 -k1,16162:22166938,43714721:170746 -k1,16162:23147054,43714721:170746 -k1,16162:24815954,43714721:170747 -h1,16162:26011331,43714721:0,0,0 -k1,16162:26562841,43714721:170746 -k1,16162:30927237,43714721:170747 -k1,16162:31563944,43714721:170746 -k1,16162:32583029,43714721:0 -) -(1,16163:6630773,44556209:25952256,513147,134348 -k1,16162:7779338,44556209:165525 -k1,16162:9682879,44556209:165526 -k1,16162:11361630,44556209:165525 -k1,16162:12143193,44556209:165525 -k1,16162:12664578,44556209:165525 -k1,16162:13817076,44556209:165526 -k1,16162:18035347,44556209:165525 -k1,16162:18887034,44556209:165525 -k1,16162:22227124,44556209:165526 -k1,16162:22748509,44556209:165525 -k1,16162:26747235,44556209:165525 -k1,16162:27895800,44556209:165525 -k1,16162:30415379,44556209:165526 -k1,16162:31599989,44556209:165525 -k1,16162:32583029,44556209:0 -) -(1,16163:6630773,45397697:25952256,513147,126483 -g1,16162:7962464,45397697 -g1,16162:8909459,45397697 -g1,16162:13771575,45397697 -g1,16162:14780174,45397697 -g1,16162:15998488,45397697 -k1,16163:32583029,45397697:15615264 -g1,16163:32583029,45397697 -) -] -(1,16165:32583029,45706769:0,0,0 -g1,16165:32583029,45706769 -) -) -] -(1,16165:6630773,47279633:25952256,0,0 -h1,16165:6630773,47279633:25952256,0,0 -) -] -h1,16165:4262630,4025873:0,0,0 -] -!25755 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16196:37855564,49800853:1179648,16384,0 +) +) +k1,16196:3078556,49800853:-34777008 +) +] +g1,16196:6630773,4812305 +g1,16196:6630773,4812305 +g1,16196:9744388,4812305 +g1,16196:11175694,4812305 +k1,16196:31387652,4812305:20211958 +) +) +] +[1,16196:6630773,45706769:25952256,40108032,0 +(1,16196:6630773,45706769:25952256,40108032,0 +(1,16196:6630773,45706769:0,0,0 +g1,16196:6630773,45706769 +) +[1,16196:6630773,45706769:25952256,40108032,0 +v1,16156:6630773,6254097:0,393216,0 +(1,16157:6630773,11980592:25952256,6119711,616038 +g1,16157:6630773,11980592 +(1,16157:6630773,11980592:25952256,6119711,616038 +(1,16157:6630773,12596630:25952256,6735749,0 +[1,16157:6630773,12596630:25952256,6735749,0 +(1,16157:6630773,12570416:25952256,6683321,0 +r1,16157:6656987,12570416:26214,6683321,0 +[1,16157:6656987,12570416:25899828,6683321,0 +(1,16157:6656987,11980592:25899828,5503673,0 +[1,16157:7246811,11980592:24720180,5503673,0 +(1,16157:7246811,7638804:24720180,1161885,196608 +(1,16156:7246811,7638804:0,1161885,196608 +r1,16157:8794447,7638804:1547636,1358493,196608 +k1,16156:7246811,7638804:-1547636 +) +(1,16156:7246811,7638804:1547636,1161885,196608 +) +k1,16156:9031634,7638804:237187 +k1,16156:9896657,7638804:237188 +k1,16156:11735544,7638804:237187 +k1,16156:13670113,7638804:237187 +k1,16156:16262665,7638804:237188 +k1,16156:17186014,7638804:237187 +k1,16156:19452197,7638804:237188 +(1,16156:19452197,7638804:0,414482,115847 +r1,16157:25437852,7638804:5985655,530329,115847 +k1,16156:19452197,7638804:-5985655 +) +(1,16156:19452197,7638804:5985655,414482,115847 +g1,16156:22972592,7638804 +g1,16156:23676016,7638804 +h1,16156:25434575,7638804:0,411205,112570 +) +k1,16156:25675039,7638804:237187 +k1,16156:27610264,7638804:237187 +k1,16156:30105167,7638804:237188 +k1,16156:30698214,7638804:237187 +k1,16156:31966991,7638804:0 +) +(1,16157:7246811,8480292:24720180,513147,126483 +k1,16156:8497846,8480292:267995 +k1,16156:9898304,8480292:267996 +k1,16156:11554352,8480292:267995 +k1,16156:13520386,8480292:267996 +k1,16156:14246478,8480292:267995 +k1,16156:15045971,8480292:267996 +k1,16156:16899937,8480292:267995 +k1,16156:17941912,8480292:267995 +k1,16156:20492527,8480292:267996 +k1,16156:21226483,8480292:267995 +k1,16156:22698375,8480292:267996 +k1,16156:25034686,8480292:267995 +k1,16156:26117950,8480292:267996 +k1,16156:28757693,8480292:267995 +k1,16156:31966991,8480292:0 +) +(1,16157:7246811,9321780:24720180,513147,134348 +k1,16156:11433604,9321780:206136 +k1,16156:13133306,9321780:206136 +k1,16156:14025604,9321780:206136 +k1,16156:15715475,9321780:206136 +k1,16156:17412555,9321780:206136 +k1,16156:18789164,9321780:206136 +k1,16156:21165851,9321780:206135 +k1,16156:22716786,9321780:206136 +k1,16156:25180637,9321780:206136 +k1,16156:26405858,9321780:206136 +k1,16156:27815890,9321780:206136 +k1,16156:30090342,9321780:206136 +k1,16156:30947906,9321780:206136 +k1,16156:31966991,9321780:0 +) +(1,16157:7246811,10163268:24720180,513147,126483 +k1,16156:8513669,10163268:283818 +k1,16156:10840244,10163268:283818 +k1,16156:12294534,10163268:283817 +k1,16156:13884485,10163268:283818 +k1,16156:15678253,10163268:283818 +k1,16156:17658798,10163268:283818 +k1,16156:19331979,10163268:283818 +k1,16156:20883262,10163268:283817 +k1,16156:21522940,10163268:283818 +k1,16156:24189647,10163268:283818 +k1,16156:25089503,10163268:283818 +k1,16156:26392405,10163268:283817 +k1,16156:28065586,10163268:283818 +k1,16156:30399370,10163268:283818 +k1,16156:31966991,10163268:0 +) +(1,16157:7246811,11004756:24720180,505283,134348 +k1,16156:9516102,11004756:200975 +k1,16156:10708638,11004756:200976 +k1,16156:12947783,11004756:200975 +k1,16156:16417694,11004756:200975 +k1,16156:17304831,11004756:200975 +k1,16156:18276510,11004756:200976 +k1,16156:21256212,11004756:200975 +k1,16156:22073225,11004756:200975 +(1,16156:22073225,11004756:0,459977,115847 +r1,16157:25596897,11004756:3523672,575824,115847 +k1,16156:22073225,11004756:-3523672 +) +(1,16156:22073225,11004756:3523672,459977,115847 +k1,16156:22073225,11004756:3277 +h1,16156:25593620,11004756:0,411205,112570 +) +k1,16156:25797872,11004756:200975 +k1,16156:28462346,11004756:200976 +k1,16156:29688304,11004756:200975 +k1,16156:31966991,11004756:0 +) +(1,16157:7246811,11846244:24720180,513147,134348 +h1,16156:8615858,11846244:0,0,0 +g1,16156:8815087,11846244 +g1,16156:9823686,11846244 +g1,16156:11521068,11846244 +h1,16156:12317986,11846244:0,0,0 +g1,16156:12517215,11846244 +g1,16156:13664095,11846244 +k1,16157:31966991,11846244:15804664 +g1,16157:31966991,11846244 +) +] +) +] +r1,16157:32583029,12570416:26214,6683321,0 +) +] +) +) +g1,16157:32583029,11980592 +) +h1,16157:6630773,12596630:0,0,0 +v1,16160:6630773,13962406:0,393216,0 +(1,16161:6630773,16240573:25952256,2671383,616038 +g1,16161:6630773,16240573 +(1,16161:6630773,16240573:25952256,2671383,616038 +(1,16161:6630773,16856611:25952256,3287421,0 +[1,16161:6630773,16856611:25952256,3287421,0 +(1,16161:6630773,16830397:25952256,3234993,0 +r1,16161:6656987,16830397:26214,3234993,0 +[1,16161:6656987,16830397:25899828,3234993,0 +(1,16161:6656987,16240573:25899828,2055345,0 +[1,16161:7246811,16240573:24720180,2055345,0 +(1,16161:7246811,15272602:24720180,1087374,115847 +k1,16160:8632792,15272602:176278 +k1,16160:10509075,15272602:176279 +k1,16160:11704438,15272602:176278 +k1,16160:13270079,15272602:176278 +k1,16160:15322654,15272602:176279 +(1,16160:15322654,15272602:0,459977,115847 +r1,16161:17087767,15272602:1765113,575824,115847 +k1,16160:15322654,15272602:-1765113 +) +(1,16160:15322654,15272602:1765113,459977,115847 +k1,16160:15322654,15272602:3277 +h1,16160:17084490,15272602:0,411205,112570 +) +k1,16160:17264045,15272602:176278 +k1,16160:18707789,15272602:176278 +k1,16160:20110247,15272602:176279 +k1,16160:21599867,15272602:176278 +k1,16160:23170096,15272602:176278 +k1,16160:26372172,15272602:176279 +(1,16160:26372172,15272602:0,452978,115847 +r1,16161:30599268,15272602:4227096,568825,115847 +k1,16160:26372172,15272602:-4227096 +) +(1,16160:26372172,15272602:4227096,452978,115847 +k1,16160:26372172,15272602:3277 +h1,16160:30595991,15272602:0,411205,112570 +) +k1,16160:30775546,15272602:176278 +k1,16161:31966991,15272602:0 +) +(1,16161:7246811,16114090:24720180,513147,126483 +(1,16160:7246811,16114090:0,452978,115847 +r1,16161:11825619,16114090:4578808,568825,115847 +k1,16160:7246811,16114090:-4578808 +) +(1,16160:7246811,16114090:4578808,452978,115847 +k1,16160:7246811,16114090:3277 +h1,16160:11822342,16114090:0,411205,112570 +) +g1,16160:12024848,16114090 +g1,16160:14551260,16114090 +g1,16160:15417645,16114090 +(1,16160:15417645,16114090:0,452978,115847 +r1,16161:18941317,16114090:3523672,568825,115847 +k1,16160:15417645,16114090:-3523672 +) +(1,16160:15417645,16114090:3523672,452978,115847 +k1,16160:15417645,16114090:3277 +h1,16160:18938040,16114090:0,411205,112570 +) +g1,16160:19140546,16114090 +g1,16160:20531220,16114090 +g1,16160:23025520,16114090 +g1,16160:24243834,16114090 +k1,16161:31966991,16114090:6236145 +g1,16161:31966991,16114090 +) +] +) +] +r1,16161:32583029,16830397:26214,3234993,0 +) +] +) +) +g1,16161:32583029,16240573 +) +h1,16161:6630773,16856611:0,0,0 +(1,16164:6630773,18222387:25952256,513147,134348 +h1,16163:6630773,18222387:983040,0,0 +k1,16163:10643228,18222387:239547 +(1,16163:10643228,18222387:0,452978,115847 +r1,16163:12408341,18222387:1765113,568825,115847 +k1,16163:10643228,18222387:-1765113 +) +(1,16163:10643228,18222387:1765113,452978,115847 +k1,16163:10643228,18222387:3277 +h1,16163:12405064,18222387:0,411205,112570 +) +k1,16163:12647887,18222387:239546 +k1,16163:14570399,18222387:239547 +k1,16163:15224748,18222387:239506 +k1,16163:17754122,18222387:239546 +k1,16163:19185114,18222387:239547 +k1,16163:21369770,18222387:239547 +k1,16163:23248371,18222387:239546 +k1,16163:25001144,18222387:239547 +k1,16163:28717375,18222387:239546 +k1,16163:29608350,18222387:239547 +k1,16163:32583029,18222387:0 +) +(1,16164:6630773,19063875:25952256,513147,134348 +k1,16163:9030888,19063875:204004 +k1,16163:9886320,19063875:204004 +k1,16163:11109410,19063875:204005 +k1,16163:13733659,19063875:204004 +k1,16163:14620548,19063875:204004 +k1,16163:15180412,19063875:204004 +k1,16163:16541127,19063875:204005 +k1,16163:19574320,19063875:204004 +k1,16163:20935034,19063875:204004 +k1,16163:21821923,19063875:204004 +k1,16163:23676124,19063875:204004 +k1,16163:27185110,19063875:204005 +k1,16163:28075276,19063875:204004 +k1,16163:31821501,19063875:204004 +k1,16163:32583029,19063875:0 +) +(1,16164:6630773,19905363:25952256,513147,134348 +k1,16163:9264513,19905363:194490 +k1,16163:9814863,19905363:194490 +k1,16163:11970846,19905363:194490 +k1,16163:13546181,19905363:194491 +k1,16163:16778920,19905363:194490 +k1,16163:18077692,19905363:194490 +k1,16163:19019948,19905363:194490 +k1,16163:20148981,19905363:194490 +k1,16163:22901997,19905363:194490 +k1,16163:26377220,19905363:194491 +(1,16163:26377220,19905363:0,414482,115847 +r1,16163:27438909,19905363:1061689,530329,115847 +k1,16163:26377220,19905363:-1061689 +) +(1,16163:26377220,19905363:1061689,414482,115847 +k1,16163:26377220,19905363:3277 +h1,16163:27435632,19905363:0,411205,112570 +) +k1,16163:27807069,19905363:194490 +k1,16163:28629394,19905363:194490 +k1,16163:29921612,19905363:194490 +k1,16163:32583029,19905363:0 +) +(1,16164:6630773,20746851:25952256,505283,126483 +g1,16163:7698354,20746851 +g1,16163:8832126,20746851 +(1,16163:8832126,20746851:0,414482,115847 +r1,16163:9893815,20746851:1061689,530329,115847 +k1,16163:8832126,20746851:-1061689 +) +(1,16163:8832126,20746851:1061689,414482,115847 +k1,16163:8832126,20746851:3277 +h1,16163:9890538,20746851:0,411205,112570 +) +g1,16163:10093044,20746851 +g1,16163:10943701,20746851 +g1,16163:11498790,20746851 +g1,16163:12981214,20746851 +g1,16163:14348950,20746851 +g1,16163:17178139,20746851 +g1,16163:18063530,20746851 +g1,16163:19281844,20746851 +g1,16163:21616236,20746851 +g1,16163:24755410,20746851 +(1,16163:24755410,20746851:0,452978,115847 +r1,16163:26168811,20746851:1413401,568825,115847 +k1,16163:24755410,20746851:-1413401 +) +(1,16163:24755410,20746851:1413401,452978,115847 +k1,16163:24755410,20746851:3277 +h1,16163:26165534,20746851:0,411205,112570 +) +k1,16164:32583029,20746851:6033454 +g1,16164:32583029,20746851 +) +v1,16166:6630773,21937317:0,393216,0 +(1,16172:6630773,23584769:25952256,2040668,196608 +g1,16172:6630773,23584769 +g1,16172:6630773,23584769 +g1,16172:6434165,23584769 +(1,16172:6434165,23584769:0,2040668,196608 +r1,16172:32779637,23584769:26345472,2237276,196608 +k1,16172:6434165,23584769:-26345472 +) +(1,16172:6434165,23584769:26345472,2040668,196608 +[1,16172:6630773,23584769:25952256,1844060,0 +(1,16168:6630773,22144935:25952256,404226,101187 +(1,16167:6630773,22144935:0,0,0 +g1,16167:6630773,22144935 +g1,16167:6630773,22144935 +g1,16167:6303093,22144935 +(1,16167:6303093,22144935:0,0,0 +) +g1,16167:6630773,22144935 +) +g1,16168:9476084,22144935 +g1,16168:10424522,22144935 +g1,16168:13585980,22144935 +g1,16168:15799000,22144935 +g1,16168:18328166,22144935 +h1,16168:21173477,22144935:0,0,0 +k1,16168:32583029,22144935:11409552 +g1,16168:32583029,22144935 +) +(1,16169:6630773,22811113:25952256,410518,101187 +h1,16169:6630773,22811113:0,0,0 +g1,16169:11056813,22811113 +g1,16169:12637542,22811113 +g1,16169:13269834,22811113 +g1,16169:18328165,22811113 +g1,16169:19592748,22811113 +g1,16169:20225040,22811113 +h1,16169:21805769,22811113:0,0,0 +k1,16169:32583029,22811113:10777260 +g1,16169:32583029,22811113 +) +(1,16170:6630773,23477291:25952256,410518,107478 +h1,16170:6630773,23477291:0,0,0 +g1,16170:14850561,23477291 +g1,16170:16747435,23477291 +g1,16170:17379727,23477291 +h1,16170:20541184,23477291:0,0,0 +k1,16170:32583029,23477291:12041845 +g1,16170:32583029,23477291 +) +] +) +g1,16172:32583029,23584769 +g1,16172:6630773,23584769 +g1,16172:6630773,23584769 +g1,16172:32583029,23584769 +g1,16172:32583029,23584769 +) +h1,16172:6630773,23781377:0,0,0 +v1,16176:6630773,25496131:0,393216,0 +(1,16182:6630773,27045541:25952256,1942626,196608 +g1,16182:6630773,27045541 +g1,16182:6630773,27045541 +g1,16182:6434165,27045541 +(1,16182:6434165,27045541:0,1942626,196608 +r1,16182:32779637,27045541:26345472,2139234,196608 +k1,16182:6434165,27045541:-26345472 +) +(1,16182:6434165,27045541:26345472,1942626,196608 +[1,16182:6630773,27045541:25952256,1746018,0 +(1,16181:6630773,25703749:25952256,404226,6290 +(1,16177:6630773,25703749:0,0,0 +g1,16177:6630773,25703749 +g1,16177:6630773,25703749 +g1,16177:6303093,25703749 +(1,16177:6303093,25703749:0,0,0 +) +g1,16177:6630773,25703749 +) +h1,16181:7895356,25703749:0,0,0 +k1,16181:32583028,25703749:24687672 +g1,16181:32583028,25703749 +) +(1,16181:6630773,26369927:25952256,404226,6290 +h1,16181:6630773,26369927:0,0,0 +g1,16181:8527647,26369927 +h1,16181:10108375,26369927:0,0,0 +k1,16181:32583029,26369927:22474654 +g1,16181:32583029,26369927 +) +(1,16181:6630773,27036105:25952256,388497,9436 +h1,16181:6630773,27036105:0,0,0 +h1,16181:8527647,27036105:0,0,0 +k1,16181:32583029,27036105:24055382 +g1,16181:32583029,27036105 +) +] +) +g1,16182:32583029,27045541 +g1,16182:6630773,27045541 +g1,16182:6630773,27045541 +g1,16182:32583029,27045541 +g1,16182:32583029,27045541 +) +h1,16182:6630773,27242149:0,0,0 +(1,16186:6630773,29857697:25952256,555811,12975 +(1,16186:6630773,29857697:2450326,534184,12975 +g1,16186:6630773,29857697 +g1,16186:9081099,29857697 +) +k1,16186:32583029,29857697:21140996 +g1,16186:32583029,29857697 +) +(1,16192:6630773,31092401:25952256,513147,134348 +k1,16191:9345224,31092401:179518 +k1,16191:11547838,31092401:179518 +k1,16191:12258853,31092401:179518 +k1,16191:13760233,31092401:179519 +k1,16191:14599043,31092401:179518 +k1,16191:15797646,31092401:179518 +k1,16191:19185151,31092401:179518 +k1,16191:21088921,31092401:179518 +k1,16191:21738332,31092401:179518 +k1,16191:24208990,31092401:179519 +k1,16191:27414305,31092401:179518 +k1,16191:28878329,31092401:179518 +k1,16191:30739501,31092401:179518 +k1,16191:32583029,31092401:0 +) +(1,16192:6630773,31933889:25952256,513147,126483 +k1,16191:8600572,31933889:261275 +k1,16191:10053292,31933889:261275 +k1,16191:12646993,31933889:261275 +k1,16191:14099713,31933889:261275 +k1,16191:15836204,31933889:261276 +k1,16191:18859822,31933889:261275 +k1,16191:21386677,31933889:261275 +k1,16191:24581343,31933889:261275 +k1,16191:27658045,31933889:261275 +k1,16191:28570748,31933889:261275 +k1,16191:30265951,31933889:261275 +k1,16191:30942007,31933889:261213 +k1,16192:32583029,31933889:0 +) +(1,16192:6630773,32775377:25952256,513147,134348 +k1,16191:8541475,32775377:139264 +k1,16191:10060927,32775377:139264 +k1,16191:11191750,32775377:139263 +k1,16191:14583566,32775377:139264 +k1,16191:15670481,32775377:139264 +k1,16191:17849881,32775377:139264 +k1,16191:19061314,32775377:139264 +k1,16191:20537512,32775377:139264 +k1,16191:24124624,32775377:139263 +k1,16191:26823069,32775377:139264 +k1,16191:29226602,32775377:139264 +k1,16191:30874505,32775377:139264 +k1,16191:32583029,32775377:0 +) +(1,16192:6630773,33616865:25952256,513147,134348 +k1,16191:8027112,33616865:204894 +k1,16191:10078155,33616865:204894 +k1,16191:11749745,33616865:204894 +k1,16191:14276580,33616865:204894 +k1,16191:15296742,33616865:204894 +k1,16191:16878546,33616865:204893 +k1,16191:18516057,33616865:204894 +k1,16191:19135789,33616865:204889 +k1,16191:22366479,33616865:204893 +k1,16191:23386641,33616865:204894 +k1,16191:24804606,33616865:204894 +k1,16191:27904225,33616865:204894 +k1,16191:29351682,33616865:204894 +k1,16191:30575661,33616865:204894 +k1,16192:32583029,33616865:0 +) +(1,16192:6630773,34458353:25952256,513147,134348 +k1,16191:8249988,34458353:195118 +k1,16191:10067123,34458353:195119 +k1,16191:11010007,34458353:195118 +k1,16191:13966158,34458353:195119 +k1,16191:14847438,34458353:195118 +k1,16191:18618857,34458353:195119 +k1,16191:20010662,34458353:195118 +k1,16191:22228877,34458353:195119 +k1,16191:25449792,34458353:195118 +k1,16191:27441908,34458353:195119 +k1,16191:29287223,34458353:195118 +k1,16191:32583029,34458353:0 +) +(1,16192:6630773,35299841:25952256,513147,126483 +k1,16191:7496678,35299841:206613 +k1,16191:8722376,35299841:206613 +k1,16191:10155168,35299841:206613 +k1,16191:11344822,35299841:206614 +k1,16191:13905488,35299841:206613 +k1,16191:14728139,35299841:206613 +k1,16191:16536452,35299841:206613 +k1,16191:18440447,35299841:206613 +k1,16191:20027248,35299841:206613 +k1,16191:22935255,35299841:206613 +k1,16191:25027339,35299841:206613 +k1,16191:25765450,35299841:206614 +k1,16191:27326037,35299841:206613 +k1,16191:29673711,35299841:206613 +k1,16191:30952493,35299841:206613 +k1,16192:32583029,35299841:0 +) +(1,16192:6630773,36141329:25952256,513147,134348 +k1,16191:9251498,36141329:152639 +k1,16191:10784325,36141329:152639 +k1,16191:12137584,36141329:152639 +k1,16191:15611588,36141329:152639 +k1,16191:18551473,36141329:152639 +k1,16191:19808395,36141329:152640 +k1,16191:20708800,36141329:152639 +k1,16191:24342056,36141329:152639 +k1,16191:25256223,36141329:152639 +k1,16191:27836316,36141329:152639 +k1,16191:31391584,36141329:152639 +k1,16191:32583029,36141329:0 +) +(1,16192:6630773,36982817:25952256,513147,126483 +k1,16191:8066948,36982817:232934 +k1,16191:8831378,36982817:232933 +k1,16191:13619064,36982817:232934 +k1,16191:14799648,36982817:232933 +k1,16191:17193959,36982817:232934 +k1,16191:18711398,36982817:232933 +k1,16191:20281266,36982817:232934 +k1,16191:21261965,36982817:232933 +k1,16191:23643825,36982817:232934 +k1,16191:24528186,36982817:232933 +k1,16191:26173421,36982817:232934 +k1,16191:29168697,36982817:232933 +k1,16191:30714973,36982817:232934 +k1,16191:31563944,36982817:232933 +k1,16191:32583029,36982817:0 +) +(1,16192:6630773,37824305:25952256,513147,134348 +k1,16191:8953238,37824305:161743 +k1,16191:11719382,37824305:161743 +k1,16191:15090422,37824305:161742 +k1,16191:18490954,37824305:161743 +k1,16191:19184194,37824305:161743 +k1,16191:20630443,37824305:161743 +k1,16191:22488913,37824305:161743 +k1,16191:25676452,37824305:161742 +k1,16191:27250496,37824305:161743 +k1,16191:30386918,37824305:161743 +k1,16191:32583029,37824305:0 +) +(1,16192:6630773,38665793:25952256,513147,126483 +k1,16191:10017319,38665793:181180 +k1,16191:10884661,38665793:181180 +k1,16191:12776986,38665793:181180 +k1,16191:13641051,38665793:181180 +k1,16191:15577941,38665793:181180 +k1,16191:18173467,38665793:181180 +k1,16191:19622112,38665793:181179 +k1,16191:22516483,38665793:181180 +k1,16191:23356955,38665793:181180 +k1,16191:25093304,38665793:181180 +(1,16191:25093304,38665793:0,414482,115847 +r1,16191:27561841,38665793:2468537,530329,115847 +k1,16191:25093304,38665793:-2468537 +) +(1,16191:25093304,38665793:2468537,414482,115847 +k1,16191:25093304,38665793:3277 +h1,16191:27558564,38665793:0,411205,112570 +) +k1,16191:27916691,38665793:181180 +k1,16191:28995714,38665793:181180 +(1,16191:28995714,38665793:0,452978,115847 +r1,16191:30760827,38665793:1765113,568825,115847 +k1,16191:28995714,38665793:-1765113 +) +(1,16191:28995714,38665793:1765113,452978,115847 +k1,16191:28995714,38665793:3277 +h1,16191:30757550,38665793:0,411205,112570 +) +k1,16191:30942007,38665793:181180 +k1,16192:32583029,38665793:0 +) +(1,16192:6630773,39507281:25952256,513147,134348 +k1,16191:8396734,39507281:168193 +k1,16191:10946504,39507281:168192 +k1,16191:11730735,39507281:168193 +k1,16191:13922023,39507281:168192 +k1,16191:15565431,39507281:168193 +k1,16191:16504326,39507281:168192 +(1,16191:16504326,39507281:0,452978,115847 +r1,16191:18621151,39507281:2116825,568825,115847 +k1,16191:16504326,39507281:-2116825 +) +(1,16191:16504326,39507281:2116825,452978,115847 +k1,16191:16504326,39507281:3277 +h1,16191:18617874,39507281:0,411205,112570 +) +k1,16191:18789344,39507281:168193 +k1,16191:22411940,39507281:168193 +k1,16191:24465603,39507281:168192 +k1,16191:25738078,39507281:168193 +k1,16191:26654036,39507281:168192 +k1,16191:28335455,39507281:168193 +k1,16191:29155075,39507281:168192 +k1,16191:31563944,39507281:168193 +k1,16191:32583029,39507281:0 +) +(1,16192:6630773,40348769:25952256,513147,134348 +k1,16191:9094490,40348769:198137 +k1,16191:12052348,40348769:198137 +k1,16191:12909777,40348769:198137 +k1,16191:16753027,40348769:198138 +k1,16191:17721867,40348769:198137 +k1,16191:20411027,40348769:198137 +k1,16191:21592204,40348769:198137 +k1,16191:23184292,40348769:198137 +k1,16191:24401514,40348769:198137 +k1,16191:26253125,40348769:198138 +k1,16191:28362947,40348769:198137 +k1,16191:29212512,40348769:198137 +k1,16191:32583029,40348769:0 +) +(1,16192:6630773,41190257:25952256,505283,126483 +g1,16191:7849087,41190257 +g1,16191:10207072,41190257 +g1,16191:11019063,41190257 +g1,16191:12006690,41190257 +k1,16192:32583029,41190257:19219744 +g1,16192:32583029,41190257 +) +(1,16194:6630773,42031745:25952256,513147,134348 +h1,16193:6630773,42031745:983040,0,0 +k1,16193:10797401,42031745:220705 +k1,16193:11634144,42031745:220705 +k1,16193:13058090,42031745:220705 +k1,16193:15557482,42031745:220705 +k1,16193:16646539,42031745:220705 +k1,16193:19999865,42031745:220705 +k1,16193:21239656,42031745:220706 +k1,16193:22552846,42031745:220705 +k1,16193:23432843,42031745:220705 +k1,16193:25350275,42031745:220705 +k1,16193:28596777,42031745:220705 +k1,16193:29579010,42031745:220705 +k1,16193:32227169,42031745:220705 +k1,16193:32583029,42031745:0 +) +(1,16194:6630773,42873233:25952256,513147,134348 +k1,16193:7842404,42873233:228591 +k1,16193:9809011,42873233:228592 +k1,16193:10723764,42873233:228591 +k1,16193:11723058,42873233:228591 +k1,16193:15197648,42873233:228592 +k1,16193:16112401,42873233:228591 +k1,16193:16872490,42873233:228592 +k1,16193:18120166,42873233:228591 +k1,16193:19715838,42873233:228591 +k1,16193:21338381,42873233:228592 +k1,16193:21981786,42873233:228562 +k1,16193:24143689,42873233:228591 +k1,16193:27571748,42873233:228591 +k1,16193:29585541,42873233:228592 +k1,16193:31005577,42873233:228591 +k1,16193:32583029,42873233:0 +) +(1,16194:6630773,43714721:25952256,513147,134348 +k1,16193:7784559,43714721:170746 +k1,16193:11567650,43714721:170747 +k1,16193:12729956,43714721:170746 +k1,16193:14186519,43714721:170747 +k1,16193:17173347,43714721:170746 +k1,16193:18576170,43714721:170746 +k1,16193:21025604,43714721:170747 +h1,16193:21996192,43714721:0,0,0 +k1,16193:22166938,43714721:170746 +k1,16193:23147054,43714721:170746 +k1,16193:24815954,43714721:170747 +h1,16193:26011331,43714721:0,0,0 +k1,16193:26562841,43714721:170746 +k1,16193:30927237,43714721:170747 +k1,16193:31563944,43714721:170746 +k1,16193:32583029,43714721:0 +) +(1,16194:6630773,44556209:25952256,513147,134348 +k1,16193:7779338,44556209:165525 +k1,16193:9682879,44556209:165526 +k1,16193:11361630,44556209:165525 +k1,16193:12143193,44556209:165525 +k1,16193:12664578,44556209:165525 +k1,16193:13817076,44556209:165526 +k1,16193:18035347,44556209:165525 +k1,16193:18887034,44556209:165525 +k1,16193:22227124,44556209:165526 +k1,16193:22748509,44556209:165525 +k1,16193:26747235,44556209:165525 +k1,16193:27895800,44556209:165525 +k1,16193:30415379,44556209:165526 +k1,16193:31599989,44556209:165525 +k1,16193:32583029,44556209:0 +) +(1,16194:6630773,45397697:25952256,513147,126483 +g1,16193:7962464,45397697 +g1,16193:8909459,45397697 +g1,16193:13771575,45397697 +g1,16193:14780174,45397697 +g1,16193:15998488,45397697 +k1,16194:32583029,45397697:15615264 +g1,16194:32583029,45397697 +) +] +(1,16196:32583029,45706769:0,0,0 +g1,16196:32583029,45706769 +) +) +] +(1,16196:6630773,47279633:25952256,0,0 +h1,16196:6630773,47279633:25952256,0,0 +) +] +h1,16196:4262630,4025873:0,0,0 +] +!25760 }314 -Input:2443:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2444:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2445:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2446:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2447:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2448:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2449:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2450:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:2440:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2441:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2442:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2443:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2444:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2445:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2446:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2447:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {315 -[1,16220:4262630,47279633:28320399,43253760,0 -(1,16220:4262630,4025873:0,0,0 -[1,16220:-473657,4025873:25952256,0,0 -(1,16220:-473657,-710414:25952256,0,0 -h1,16220:-473657,-710414:0,0,0 -(1,16220:-473657,-710414:0,0,0 -(1,16220:-473657,-710414:0,0,0 -g1,16220:-473657,-710414 -(1,16220:-473657,-710414:65781,0,65781 -g1,16220:-407876,-710414 -[1,16220:-407876,-644633:0,0,0 +[1,16251:4262630,47279633:28320399,43253760,0 +(1,16251:4262630,4025873:0,0,0 +[1,16251:-473657,4025873:25952256,0,0 +(1,16251:-473657,-710414:25952256,0,0 +h1,16251:-473657,-710414:0,0,0 +(1,16251:-473657,-710414:0,0,0 +(1,16251:-473657,-710414:0,0,0 +g1,16251:-473657,-710414 +(1,16251:-473657,-710414:65781,0,65781 +g1,16251:-407876,-710414 +[1,16251:-407876,-644633:0,0,0 ] ) -k1,16220:-473657,-710414:-65781 +k1,16251:-473657,-710414:-65781 ) ) -k1,16220:25478599,-710414:25952256 -g1,16220:25478599,-710414 +k1,16251:25478599,-710414:25952256 +g1,16251:25478599,-710414 ) ] ) -[1,16220:6630773,47279633:25952256,43253760,0 -[1,16220:6630773,4812305:25952256,786432,0 -(1,16220:6630773,4812305:25952256,505283,126483 -(1,16220:6630773,4812305:25952256,505283,126483 -g1,16220:3078558,4812305 -[1,16220:3078558,4812305:0,0,0 -(1,16220:3078558,2439708:0,1703936,0 -k1,16220:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16220:2537886,2439708:1179648,16384,0 +[1,16251:6630773,47279633:25952256,43253760,0 +[1,16251:6630773,4812305:25952256,786432,0 +(1,16251:6630773,4812305:25952256,505283,126483 +(1,16251:6630773,4812305:25952256,505283,126483 +g1,16251:3078558,4812305 +[1,16251:3078558,4812305:0,0,0 +(1,16251:3078558,2439708:0,1703936,0 +k1,16251:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16251:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16220:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16251:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16220:3078558,4812305:0,0,0 -(1,16220:3078558,2439708:0,1703936,0 -g1,16220:29030814,2439708 -g1,16220:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16220:36151628,1915420:16384,1179648,0 +[1,16251:3078558,4812305:0,0,0 +(1,16251:3078558,2439708:0,1703936,0 +g1,16251:29030814,2439708 +g1,16251:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16251:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16220:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16251:37855564,2439708:1179648,16384,0 ) ) -k1,16220:3078556,2439708:-34777008 +k1,16251:3078556,2439708:-34777008 ) ] -[1,16220:3078558,4812305:0,0,0 -(1,16220:3078558,49800853:0,16384,2228224 -k1,16220:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16220:2537886,49800853:1179648,16384,0 +[1,16251:3078558,4812305:0,0,0 +(1,16251:3078558,49800853:0,16384,2228224 +k1,16251:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16251:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16220:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16251:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16220:3078558,4812305:0,0,0 -(1,16220:3078558,49800853:0,16384,2228224 -g1,16220:29030814,49800853 -g1,16220:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16220:36151628,51504789:16384,1179648,0 +[1,16251:3078558,4812305:0,0,0 +(1,16251:3078558,49800853:0,16384,2228224 +g1,16251:29030814,49800853 +g1,16251:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16251:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16220:37855564,49800853:1179648,16384,0 -) -) -k1,16220:3078556,49800853:-34777008 -) -] -g1,16220:6630773,4812305 -k1,16220:25146660,4812305:17320510 -g1,16220:26880087,4812305 -g1,16220:29193507,4812305 -g1,16220:30603186,4812305 -) -) -] -[1,16220:6630773,45706769:25952256,40108032,0 -(1,16220:6630773,45706769:25952256,40108032,0 -(1,16220:6630773,45706769:0,0,0 -g1,16220:6630773,45706769 -) -[1,16220:6630773,45706769:25952256,40108032,0 -v1,16165:6630773,6254097:0,393216,0 -(1,16166:6630773,15270195:25952256,9409314,616038 -g1,16166:6630773,15270195 -(1,16166:6630773,15270195:25952256,9409314,616038 -(1,16166:6630773,15886233:25952256,10025352,0 -[1,16166:6630773,15886233:25952256,10025352,0 -(1,16166:6630773,15860019:25952256,9972924,0 -r1,16166:6656987,15860019:26214,9972924,0 -[1,16166:6656987,15860019:25899828,9972924,0 -(1,16166:6656987,15270195:25899828,8793276,0 -[1,16166:7246811,15270195:24720180,8793276,0 -(1,16166:7246811,7562455:24720180,1085536,298548 -(1,16165:7246811,7562455:0,1085536,298548 -r1,16166:8753226,7562455:1506415,1384084,298548 -k1,16165:7246811,7562455:-1506415 -) -(1,16165:7246811,7562455:1506415,1085536,298548 -) -k1,16165:9063235,7562455:310009 -k1,16165:10569931,7562455:310009 -k1,16165:12948255,7562455:310008 -k1,16165:13917556,7562455:310009 -k1,16165:17253362,7562455:310009 -k1,16165:21468661,7562455:310009 -k1,16165:22430098,7562455:310009 -k1,16165:24484020,7562455:310009 -k1,16165:27884051,7562455:310008 -k1,16165:28810098,7562455:310009 -k1,16165:30139192,7562455:310009 -k1,16166:31966991,7562455:0 -) -(1,16166:7246811,8403943:24720180,513147,134348 -k1,16165:8592101,8403943:205619 -k1,16165:11076408,8403943:205620 -k1,16165:12757242,8403943:205619 -k1,16165:15031177,8403943:205619 -k1,16165:17572499,8403943:205619 -k1,16165:18539647,8403943:205620 -k1,16165:21686522,8403943:205619 -k1,16165:22911226,8403943:205619 -k1,16165:24189014,8403943:205619 -k1,16165:25788584,8403943:205619 -k1,16165:26764907,8403943:205620 -k1,16165:30724428,8403943:205619 -k1,16166:31966991,8403943:0 -) -(1,16166:7246811,9245431:24720180,513147,126483 -(1,16165:7246811,9245431:0,452978,115847 -r1,16166:10770483,9245431:3523672,568825,115847 -k1,16165:7246811,9245431:-3523672 -) -(1,16165:7246811,9245431:3523672,452978,115847 -k1,16165:7246811,9245431:3277 -h1,16165:10767206,9245431:0,411205,112570 -) -k1,16165:10971985,9245431:201502 -$1,16165:10971985,9245431 -$1,16165:11540182,9245431 -k1,16165:11741684,9245431:201502 -(1,16165:11741684,9245431:0,452978,115847 -r1,16166:15265356,9245431:3523672,568825,115847 -k1,16165:11741684,9245431:-3523672 -) -(1,16165:11741684,9245431:3523672,452978,115847 -k1,16165:11741684,9245431:3277 -h1,16165:15262079,9245431:0,411205,112570 -) -k1,16165:15640527,9245431:201501 -k1,16165:17038716,9245431:201502 -k1,16165:20261428,9245431:201502 -k1,16165:22329395,9245431:201502 -k1,16165:23182324,9245431:201501 -k1,16165:24402911,9245431:201502 -k1,16165:26784796,9245431:201502 -k1,16165:27645590,9245431:201502 -k1,16165:28866176,9245431:201501 -k1,16165:30381020,9245431:201502 -k1,16165:31966991,9245431:0 -) -(1,16166:7246811,10086919:24720180,513147,126483 -k1,16165:8585712,10086919:266732 -k1,16165:9918714,10086919:266731 -k1,16165:11204531,10086919:266732 -k1,16165:13384258,10086919:266731 -k1,16165:15892977,10086919:266732 -k1,16165:16842594,10086919:266732 -k1,16165:18674980,10086919:266731 -k1,16165:19601004,10086919:266732 -k1,16165:21376374,10086919:266731 -k1,16165:23771715,10086919:266732 -k1,16165:27823150,10086919:266731 -k1,16165:29131904,10086919:266732 -k1,16165:31966991,10086919:0 -) -(1,16166:7246811,10928407:24720180,513147,134348 -k1,16165:10119613,10928407:177306 -(1,16165:10119613,10928407:0,452978,115847 -r1,16166:14346709,10928407:4227096,568825,115847 -k1,16165:10119613,10928407:-4227096 -) -(1,16165:10119613,10928407:4227096,452978,115847 -k1,16165:10119613,10928407:3277 -h1,16165:14343432,10928407:0,411205,112570 -) -k1,16165:14524015,10928407:177306 -k1,16165:15802326,10928407:177306 -k1,16165:16335492,10928407:177306 -k1,16165:18861609,10928407:177307 -k1,16165:21801258,10928407:177306 -k1,16165:24738285,10928407:177306 -k1,16165:26358038,10928407:177306 -(1,16165:26358038,10928407:0,452978,115847 -r1,16166:30585134,10928407:4227096,568825,115847 -k1,16165:26358038,10928407:-4227096 -) -(1,16165:26358038,10928407:4227096,452978,115847 -k1,16165:26358038,10928407:3277 -h1,16165:30581857,10928407:0,411205,112570 -) -k1,16165:30936110,10928407:177306 -k1,16166:31966991,10928407:0 -) -(1,16166:7246811,11769895:24720180,513147,134348 -k1,16165:9531396,11769895:271319 -k1,16165:11182903,11769895:271319 -k1,16165:12920918,11769895:271319 -k1,16165:14604538,11769895:271319 -k1,16165:16609940,11769895:271319 -k1,16165:20004705,11769895:271319 -k1,16165:21037551,11769895:271318 -k1,16165:23050162,11769895:271319 -k1,16165:25282974,11769895:271319 -k1,16165:27370951,11769895:271319 -k1,16165:30017295,11769895:271319 -k1,16165:30947906,11769895:271319 -k1,16165:31966991,11769895:0 -) -(1,16166:7246811,12611383:24720180,513147,126483 -k1,16165:9747486,12611383:235095 -k1,16165:12742303,12611383:235096 -k1,16165:13968958,12611383:235095 -k1,16165:15489870,12611383:235096 -k1,16165:18660978,12611383:235095 -k1,16165:19843725,12611383:235096 -k1,16165:22740237,12611383:235095 -k1,16165:24998429,12611383:235096 -k1,16165:28259321,12611383:235095 -k1,16165:29309685,12611383:235096 -k1,16165:30611051,12611383:235095 -k1,16166:31966991,12611383:0 -) -(1,16166:7246811,13452871:24720180,513147,134348 -k1,16165:8664027,13452871:167444 -k1,16165:11544663,13452871:167445 -k1,16165:12371399,13452871:167444 -k1,16165:15513523,13452871:167445 -k1,16165:17877078,13452871:167444 -k1,16165:19311989,13452871:167445 -k1,16165:21703725,13452871:167444 -k1,16165:23062615,13452871:167445 -k1,16165:24433955,13452871:167444 -k1,16165:26669716,13452871:167445 -k1,16165:27828720,13452871:167444 -k1,16165:29062436,13452871:167445 -k1,16165:30164423,13452871:167444 -k1,16165:30947906,13452871:167445 -k1,16165:31966991,13452871:0 -) -(1,16166:7246811,14294359:24720180,513147,126483 -k1,16165:10264435,14294359:238897 -(1,16165:10264435,14294359:0,452978,115847 -r1,16166:12381260,14294359:2116825,568825,115847 -k1,16165:10264435,14294359:-2116825 -) -(1,16165:10264435,14294359:2116825,452978,115847 -k1,16165:10264435,14294359:3277 -h1,16165:12377983,14294359:0,411205,112570 -) -k1,16165:12793828,14294359:238898 -k1,16165:14918196,14294359:238897 -k1,16165:17612073,14294359:238898 -k1,16165:19418591,14294359:238897 -(1,16165:19418591,14294359:0,459977,115847 -r1,16166:22942263,14294359:3523672,575824,115847 -k1,16165:19418591,14294359:-3523672 -) -(1,16165:19418591,14294359:3523672,459977,115847 -k1,16165:19418591,14294359:3277 -h1,16165:22938986,14294359:0,411205,112570 -) -k1,16165:23354830,14294359:238897 -k1,16165:24665897,14294359:238898 -k1,16165:25436291,14294359:238897 -k1,16165:26741460,14294359:238898 -k1,16165:28431324,14294359:238897 -k1,16165:31966991,14294359:0 -) -(1,16166:7246811,15135847:24720180,505283,134348 -g1,16165:8678117,15135847 -g1,16165:11156033,15135847 -h1,16165:12698751,15135847:0,0,0 -g1,16165:12897980,15135847 -g1,16165:13906579,15135847 -g1,16165:15603961,15135847 -h1,16165:16799338,15135847:0,0,0 -k1,16166:31966991,15135847:14786889 -g1,16166:31966991,15135847 -) -] -) -] -r1,16166:32583029,15860019:26214,9972924,0 -) -] -) -) -g1,16166:32583029,15270195 -) -h1,16166:6630773,15886233:0,0,0 -(1,16169:6630773,17227955:25952256,513147,126483 -h1,16168:6630773,17227955:983040,0,0 -k1,16168:8652980,17227955:221278 -k1,16168:9742609,17227955:221277 -k1,16168:11068169,17227955:221278 -k1,16168:12314429,17227955:221277 -k1,16168:13151745,17227955:221278 -k1,16168:14576263,17227955:221277 -k1,16168:16103674,17227955:221278 -k1,16168:19160039,17227955:221278 -k1,16168:21078043,17227955:221277 -k1,16168:24325118,17227955:221278 -k1,16168:25832211,17227955:221277 -k1,16168:28049716,17227955:221278 -k1,16168:28922421,17227955:221277 -k1,16168:30162784,17227955:221278 -k1,16168:32583029,17227955:0 -) -(1,16169:6630773,18069443:25952256,513147,134348 -k1,16168:7805834,18069443:155976 -k1,16168:12312744,18069443:155975 -k1,16168:13128012,18069443:155976 -k1,16168:14303072,18069443:155975 -k1,16168:17345909,18069443:155976 -k1,16168:19387355,18069443:155975 -k1,16168:20074828,18069443:155976 -k1,16168:23440102,18069443:155976 -k1,16168:25294115,18069443:155975 -k1,16168:27146818,18069443:155976 -k1,16168:28294353,18069443:155975 -k1,16168:31015408,18069443:155976 -k1,16168:32583029,18069443:0 -) -(1,16169:6630773,18910931:25952256,513147,126483 -g1,16168:7849087,18910931 -g1,16168:9031356,18910931 -g1,16168:12153491,18910931 -g1,16168:13035605,18910931 -g1,16168:14556695,18910931 -g1,16168:15415216,18910931 -k1,16169:32583029,18910931:16536046 -g1,16169:32583029,18910931 -) -v1,16171:6630773,20077344:0,393216,0 -(1,16184:6630773,28950186:25952256,9266058,196608 -g1,16184:6630773,28950186 -g1,16184:6630773,28950186 -g1,16184:6434165,28950186 -(1,16184:6434165,28950186:0,9266058,196608 -r1,16184:32779637,28950186:26345472,9462666,196608 -k1,16184:6434165,28950186:-26345472 -) -(1,16184:6434165,28950186:26345472,9266058,196608 -[1,16184:6630773,28950186:25952256,9069450,0 -(1,16173:6630773,20291254:25952256,410518,107478 -(1,16172:6630773,20291254:0,0,0 -g1,16172:6630773,20291254 -g1,16172:6630773,20291254 -g1,16172:6303093,20291254 -(1,16172:6303093,20291254:0,0,0 -) -g1,16172:6630773,20291254 -) -k1,16173:6630773,20291254:0 -g1,16173:11056813,20291254 -g1,16173:11689105,20291254 -k1,16173:11689105,20291254:0 -h1,16173:21489621,20291254:0,0,0 -k1,16173:32583029,20291254:11093408 -g1,16173:32583029,20291254 -) -(1,16177:6630773,21612792:25952256,410518,101187 -g1,16177:7579210,21612792 -g1,16177:9792230,21612792 -g1,16177:11372959,21612792 -g1,16177:13585979,21612792 -k1,16177:32583029,21612792:14571010 -g1,16177:32583029,21612792 -) -(1,16177:6630773,22278970:25952256,404226,76021 -g1,16177:7579210,22278970 -k1,16177:32583030,22278970:23423092 -g1,16177:32583030,22278970 -) -(1,16177:6630773,22945148:25952256,404226,82312 -g1,16177:7579210,22945148 -g1,16177:7895356,22945148 -g1,16177:9476085,22945148 -g1,16177:10108377,22945148 -k1,16177:32583029,22945148:18364758 -g1,16177:32583029,22945148 -) -(1,16177:6630773,23611326:25952256,404226,82312 -g1,16177:7579210,23611326 -g1,16177:7895356,23611326 -g1,16177:9476085,23611326 -g1,16177:10108377,23611326 -k1,16177:32583029,23611326:18364758 -g1,16177:32583029,23611326 -) -(1,16177:6630773,24277504:25952256,404226,82312 -g1,16177:7579210,24277504 -g1,16177:7895356,24277504 -g1,16177:9476085,24277504 -g1,16177:10108377,24277504 -k1,16177:32583029,24277504:18364758 -g1,16177:32583029,24277504 -) -(1,16177:6630773,24943682:25952256,404226,76021 -g1,16177:7579210,24943682 -g1,16177:7895356,24943682 -g1,16177:9476085,24943682 -g1,16177:10108377,24943682 -k1,16177:32583030,24943682:17732468 -g1,16177:32583030,24943682 -) -(1,16177:6630773,25609860:25952256,404226,76021 -g1,16177:7579210,25609860 -k1,16177:32583028,25609860:24687672 -g1,16177:32583028,25609860 -) -(1,16183:6630773,26276038:25952256,404226,6290 -(1,16177:6630773,26276038:0,0,0 -g1,16177:6630773,26276038 -g1,16177:6630773,26276038 -g1,16177:6303093,26276038 -(1,16177:6303093,26276038:0,0,0 -) -g1,16177:6630773,26276038 -) -g1,16183:7579210,26276038 -g1,16183:8211502,26276038 -g1,16183:8843794,26276038 -g1,16183:11372960,26276038 -g1,16183:12005252,26276038 -g1,16183:12637544,26276038 -h1,16183:12953690,26276038:0,0,0 -k1,16183:32583030,26276038:19629340 -g1,16183:32583030,26276038 -) -(1,16183:6630773,26942216:25952256,404226,9436 -h1,16183:6630773,26942216:0,0,0 -g1,16183:7579210,26942216 -g1,16183:7895356,26942216 -g1,16183:8211502,26942216 -g1,16183:8527648,26942216 -g1,16183:10108377,26942216 -g1,16183:10424523,26942216 -g1,16183:12005252,26942216 -g1,16183:12321398,26942216 -g1,16183:13902127,26942216 -h1,16183:15166710,26942216:0,0,0 -k1,16183:32583030,26942216:17416320 -g1,16183:32583030,26942216 -) -(1,16183:6630773,27608394:25952256,404226,6290 -h1,16183:6630773,27608394:0,0,0 -g1,16183:7579210,27608394 -g1,16183:7895356,27608394 -g1,16183:8211502,27608394 -g1,16183:10108377,27608394 -g1,16183:12005252,27608394 -g1,16183:13902127,27608394 -k1,16183:13902127,27608394:0 -h1,16183:15482856,27608394:0,0,0 -k1,16183:32583028,27608394:17100172 -g1,16183:32583028,27608394 -) -(1,16183:6630773,28274572:25952256,388497,9436 -h1,16183:6630773,28274572:0,0,0 -g1,16183:7579210,28274572 -g1,16183:8211502,28274572 -g1,16183:8527648,28274572 -g1,16183:8843794,28274572 -g1,16183:9476086,28274572 -g1,16183:9792232,28274572 -g1,16183:10108378,28274572 -g1,16183:10424524,28274572 -g1,16183:12005253,28274572 -g1,16183:12321399,28274572 -g1,16183:12637545,28274572 -g1,16183:13902128,28274572 -h1,16183:14850565,28274572:0,0,0 -k1,16183:32583029,28274572:17732464 -g1,16183:32583029,28274572 -) -(1,16183:6630773,28940750:25952256,388497,9436 -h1,16183:6630773,28940750:0,0,0 -g1,16183:7579210,28940750 -g1,16183:8211502,28940750 -g1,16183:8527648,28940750 -g1,16183:10108377,28940750 -g1,16183:10424523,28940750 -g1,16183:12005252,28940750 -g1,16183:12321398,28940750 -g1,16183:12637544,28940750 -g1,16183:12953690,28940750 -g1,16183:13902127,28940750 -g1,16183:14534419,28940750 -h1,16183:14850565,28940750:0,0,0 -k1,16183:32583029,28940750:17732464 -g1,16183:32583029,28940750 -) -] -) -g1,16184:32583029,28950186 -g1,16184:6630773,28950186 -g1,16184:6630773,28950186 -g1,16184:32583029,28950186 -g1,16184:32583029,28950186 -) -h1,16184:6630773,29146794:0,0,0 -v1,16188:6630773,30813441:0,393216,0 -(1,16201:6630773,39686283:25952256,9266058,196608 -g1,16201:6630773,39686283 -g1,16201:6630773,39686283 -g1,16201:6434165,39686283 -(1,16201:6434165,39686283:0,9266058,196608 -r1,16201:32779637,39686283:26345472,9462666,196608 -k1,16201:6434165,39686283:-26345472 -) -(1,16201:6434165,39686283:26345472,9266058,196608 -[1,16201:6630773,39686283:25952256,9069450,0 -(1,16190:6630773,31027351:25952256,410518,107478 -(1,16189:6630773,31027351:0,0,0 -g1,16189:6630773,31027351 -g1,16189:6630773,31027351 -g1,16189:6303093,31027351 -(1,16189:6303093,31027351:0,0,0 -) -g1,16189:6630773,31027351 -) -k1,16190:6630773,31027351:0 -g1,16190:11056813,31027351 -g1,16190:11689105,31027351 -k1,16190:11689105,31027351:0 -h1,16190:22754203,31027351:0,0,0 -k1,16190:32583029,31027351:9828826 -g1,16190:32583029,31027351 -) -(1,16194:6630773,32348889:25952256,410518,101187 -g1,16194:7579210,32348889 -g1,16194:9792230,32348889 -g1,16194:11372959,32348889 -g1,16194:13585979,32348889 -k1,16194:32583029,32348889:14571010 -g1,16194:32583029,32348889 -) -(1,16194:6630773,33015067:25952256,404226,76021 -g1,16194:7579210,33015067 -k1,16194:32583030,33015067:23423092 -g1,16194:32583030,33015067 -) -(1,16194:6630773,33681245:25952256,404226,82312 -g1,16194:7579210,33681245 -g1,16194:7895356,33681245 -g1,16194:9476085,33681245 -g1,16194:10108377,33681245 -k1,16194:32583029,33681245:18364758 -g1,16194:32583029,33681245 -) -(1,16194:6630773,34347423:25952256,404226,82312 -g1,16194:7579210,34347423 -g1,16194:7895356,34347423 -g1,16194:9476085,34347423 -g1,16194:10108377,34347423 -k1,16194:32583029,34347423:18364758 -g1,16194:32583029,34347423 -) -(1,16194:6630773,35013601:25952256,404226,82312 -g1,16194:7579210,35013601 -g1,16194:7895356,35013601 -g1,16194:9476085,35013601 -g1,16194:10108377,35013601 -k1,16194:32583029,35013601:18364758 -g1,16194:32583029,35013601 -) -(1,16194:6630773,35679779:25952256,404226,76021 -g1,16194:7579210,35679779 -g1,16194:7895356,35679779 -g1,16194:9476085,35679779 -g1,16194:10108377,35679779 -k1,16194:32583030,35679779:17732468 -g1,16194:32583030,35679779 -) -(1,16194:6630773,36345957:25952256,404226,76021 -g1,16194:7579210,36345957 -k1,16194:32583028,36345957:24687672 -g1,16194:32583028,36345957 -) -(1,16200:6630773,37012135:25952256,404226,6290 -(1,16194:6630773,37012135:0,0,0 -g1,16194:6630773,37012135 -g1,16194:6630773,37012135 -g1,16194:6303093,37012135 -(1,16194:6303093,37012135:0,0,0 -) -g1,16194:6630773,37012135 -) -g1,16200:7579210,37012135 -g1,16200:8211502,37012135 -g1,16200:8843794,37012135 -g1,16200:11372960,37012135 -g1,16200:12005252,37012135 -g1,16200:12637544,37012135 -h1,16200:12953690,37012135:0,0,0 -k1,16200:32583030,37012135:19629340 -g1,16200:32583030,37012135 -) -(1,16200:6630773,37678313:25952256,404226,9436 -h1,16200:6630773,37678313:0,0,0 -g1,16200:7579210,37678313 -g1,16200:7895356,37678313 -g1,16200:8211502,37678313 -g1,16200:8527648,37678313 -g1,16200:10108377,37678313 -g1,16200:10424523,37678313 -g1,16200:12005252,37678313 -g1,16200:12321398,37678313 -g1,16200:13902127,37678313 -h1,16200:15166710,37678313:0,0,0 -k1,16200:32583030,37678313:17416320 -g1,16200:32583030,37678313 -) -(1,16200:6630773,38344491:25952256,404226,6290 -h1,16200:6630773,38344491:0,0,0 -g1,16200:7579210,38344491 -g1,16200:7895356,38344491 -g1,16200:8211502,38344491 -g1,16200:10108377,38344491 -g1,16200:12005252,38344491 -g1,16200:13902127,38344491 -k1,16200:13902127,38344491:0 -h1,16200:15482856,38344491:0,0,0 -k1,16200:32583028,38344491:17100172 -g1,16200:32583028,38344491 -) -(1,16200:6630773,39010669:25952256,388497,9436 -h1,16200:6630773,39010669:0,0,0 -g1,16200:7579210,39010669 -g1,16200:8211502,39010669 -g1,16200:8527648,39010669 -g1,16200:8843794,39010669 -g1,16200:9476086,39010669 -g1,16200:9792232,39010669 -g1,16200:10108378,39010669 -g1,16200:10424524,39010669 -g1,16200:12005253,39010669 -g1,16200:12321399,39010669 -g1,16200:12637545,39010669 -g1,16200:13902128,39010669 -h1,16200:14850565,39010669:0,0,0 -k1,16200:32583029,39010669:17732464 -g1,16200:32583029,39010669 -) -(1,16200:6630773,39676847:25952256,388497,9436 -h1,16200:6630773,39676847:0,0,0 -g1,16200:7579210,39676847 -g1,16200:8211502,39676847 -g1,16200:8527648,39676847 -g1,16200:10108377,39676847 -g1,16200:10424523,39676847 -g1,16200:12005252,39676847 -g1,16200:12321398,39676847 -g1,16200:12637544,39676847 -g1,16200:12953690,39676847 -g1,16200:13902127,39676847 -g1,16200:14534419,39676847 -h1,16200:14850565,39676847:0,0,0 -k1,16200:32583029,39676847:17732464 -g1,16200:32583029,39676847 -) -] -) -g1,16201:32583029,39686283 -g1,16201:6630773,39686283 -g1,16201:6630773,39686283 -g1,16201:32583029,39686283 -g1,16201:32583029,39686283 -) -h1,16201:6630773,39882891:0,0,0 -(1,16205:6630773,41224613:25952256,513147,126483 -h1,16204:6630773,41224613:983040,0,0 -k1,16204:10668951,41224613:265270 -(1,16204:10668951,41224613:0,452978,115847 -r1,16204:14896047,41224613:4227096,568825,115847 -k1,16204:10668951,41224613:-4227096 -) -(1,16204:10668951,41224613:4227096,452978,115847 -k1,16204:10668951,41224613:3277 -h1,16204:14892770,41224613:0,411205,112570 -) -k1,16204:15334987,41224613:265270 -k1,16204:18928830,41224613:265269 -k1,16204:19845528,41224613:265270 -(1,16204:19845528,41224613:0,452978,115847 -r1,16204:24072624,41224613:4227096,568825,115847 -k1,16204:19845528,41224613:-4227096 -) -(1,16204:19845528,41224613:4227096,452978,115847 -k1,16204:19845528,41224613:3277 -h1,16204:24069347,41224613:0,411205,112570 -) -k1,16204:24511564,41224613:265270 -k1,16204:26971635,41224613:265270 -k1,16204:29385174,41224613:265269 -k1,16204:30336606,41224613:265270 -k1,16204:31923737,41224613:265270 -k1,16204:32583029,41224613:0 -) -(1,16205:6630773,42066101:25952256,505283,134348 -g1,16204:8242303,42066101 -g1,16204:11416211,42066101 -k1,16205:32583029,42066101:18797036 -g1,16205:32583029,42066101 -) -v1,16207:6630773,43232514:0,393216,0 -(1,16220:6630773,45510161:25952256,2670863,196608 -g1,16220:6630773,45510161 -g1,16220:6630773,45510161 -g1,16220:6434165,45510161 -(1,16220:6434165,45510161:0,2670863,196608 -r1,16220:32779637,45510161:26345472,2867471,196608 -k1,16220:6434165,45510161:-26345472 -) -(1,16220:6434165,45510161:26345472,2670863,196608 -[1,16220:6630773,45510161:25952256,2474255,0 -(1,16209:6630773,43446424:25952256,410518,107478 -(1,16208:6630773,43446424:0,0,0 -g1,16208:6630773,43446424 -g1,16208:6630773,43446424 -g1,16208:6303093,43446424 -(1,16208:6303093,43446424:0,0,0 -) -g1,16208:6630773,43446424 -) -k1,16209:6630773,43446424:0 -g1,16209:11689105,43446424 -g1,16209:12321397,43446424 -k1,16209:12321397,43446424:0 -h1,16209:21173476,43446424:0,0,0 -k1,16209:32583029,43446424:11409553 -g1,16209:32583029,43446424 -) -(1,16213:6630773,44767962:25952256,410518,101187 -g1,16213:7579210,44767962 -g1,16213:9792230,44767962 -g1,16213:11372959,44767962 -g1,16213:13585979,44767962 -k1,16213:32583029,44767962:14571010 -g1,16213:32583029,44767962 -) -(1,16213:6630773,45434140:25952256,404226,76021 -g1,16213:7579210,45434140 -k1,16213:32583030,45434140:23423092 -g1,16213:32583030,45434140 -) -] -) -g1,16220:32583029,45510161 -g1,16220:6630773,45510161 -g1,16220:6630773,45510161 -g1,16220:32583029,45510161 -g1,16220:32583029,45510161 -) -] -(1,16220:32583029,45706769:0,0,0 -g1,16220:32583029,45706769 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16251:37855564,49800853:1179648,16384,0 +) +) +k1,16251:3078556,49800853:-34777008 +) +] +g1,16251:6630773,4812305 +k1,16251:25146660,4812305:17320510 +g1,16251:26880087,4812305 +g1,16251:29193507,4812305 +g1,16251:30603186,4812305 +) +) +] +[1,16251:6630773,45706769:25952256,40108032,0 +(1,16251:6630773,45706769:25952256,40108032,0 +(1,16251:6630773,45706769:0,0,0 +g1,16251:6630773,45706769 +) +[1,16251:6630773,45706769:25952256,40108032,0 +v1,16196:6630773,6254097:0,393216,0 +(1,16197:6630773,15270195:25952256,9409314,616038 +g1,16197:6630773,15270195 +(1,16197:6630773,15270195:25952256,9409314,616038 +(1,16197:6630773,15886233:25952256,10025352,0 +[1,16197:6630773,15886233:25952256,10025352,0 +(1,16197:6630773,15860019:25952256,9972924,0 +r1,16197:6656987,15860019:26214,9972924,0 +[1,16197:6656987,15860019:25899828,9972924,0 +(1,16197:6656987,15270195:25899828,8793276,0 +[1,16197:7246811,15270195:24720180,8793276,0 +(1,16197:7246811,7562455:24720180,1085536,298548 +(1,16196:7246811,7562455:0,1085536,298548 +r1,16197:8753226,7562455:1506415,1384084,298548 +k1,16196:7246811,7562455:-1506415 +) +(1,16196:7246811,7562455:1506415,1085536,298548 +) +k1,16196:9063235,7562455:310009 +k1,16196:10569931,7562455:310009 +k1,16196:12948255,7562455:310008 +k1,16196:13917556,7562455:310009 +k1,16196:17253362,7562455:310009 +k1,16196:21468661,7562455:310009 +k1,16196:22430098,7562455:310009 +k1,16196:24484020,7562455:310009 +k1,16196:27884051,7562455:310008 +k1,16196:28810098,7562455:310009 +k1,16196:30139192,7562455:310009 +k1,16197:31966991,7562455:0 +) +(1,16197:7246811,8403943:24720180,513147,134348 +k1,16196:8592101,8403943:205619 +k1,16196:11076408,8403943:205620 +k1,16196:12757242,8403943:205619 +k1,16196:15031177,8403943:205619 +k1,16196:17572499,8403943:205619 +k1,16196:18539647,8403943:205620 +k1,16196:21686522,8403943:205619 +k1,16196:22911226,8403943:205619 +k1,16196:24189014,8403943:205619 +k1,16196:25788584,8403943:205619 +k1,16196:26764907,8403943:205620 +k1,16196:30724428,8403943:205619 +k1,16197:31966991,8403943:0 +) +(1,16197:7246811,9245431:24720180,513147,126483 +(1,16196:7246811,9245431:0,452978,115847 +r1,16197:10770483,9245431:3523672,568825,115847 +k1,16196:7246811,9245431:-3523672 +) +(1,16196:7246811,9245431:3523672,452978,115847 +k1,16196:7246811,9245431:3277 +h1,16196:10767206,9245431:0,411205,112570 +) +k1,16196:10971985,9245431:201502 +$1,16196:10971985,9245431 +$1,16196:11540182,9245431 +k1,16196:11741684,9245431:201502 +(1,16196:11741684,9245431:0,452978,115847 +r1,16197:15265356,9245431:3523672,568825,115847 +k1,16196:11741684,9245431:-3523672 +) +(1,16196:11741684,9245431:3523672,452978,115847 +k1,16196:11741684,9245431:3277 +h1,16196:15262079,9245431:0,411205,112570 +) +k1,16196:15640527,9245431:201501 +k1,16196:17038716,9245431:201502 +k1,16196:20261428,9245431:201502 +k1,16196:22329395,9245431:201502 +k1,16196:23182324,9245431:201501 +k1,16196:24402911,9245431:201502 +k1,16196:26784796,9245431:201502 +k1,16196:27645590,9245431:201502 +k1,16196:28866176,9245431:201501 +k1,16196:30381020,9245431:201502 +k1,16196:31966991,9245431:0 +) +(1,16197:7246811,10086919:24720180,513147,126483 +k1,16196:8585712,10086919:266732 +k1,16196:9918714,10086919:266731 +k1,16196:11204531,10086919:266732 +k1,16196:13384258,10086919:266731 +k1,16196:15892977,10086919:266732 +k1,16196:16842594,10086919:266732 +k1,16196:18674980,10086919:266731 +k1,16196:19601004,10086919:266732 +k1,16196:21376374,10086919:266731 +k1,16196:23771715,10086919:266732 +k1,16196:27823150,10086919:266731 +k1,16196:29131904,10086919:266732 +k1,16196:31966991,10086919:0 +) +(1,16197:7246811,10928407:24720180,513147,134348 +k1,16196:10148158,10928407:205851 +(1,16196:10148158,10928407:0,452978,115847 +r1,16197:14375254,10928407:4227096,568825,115847 +k1,16196:10148158,10928407:-4227096 +) +(1,16196:10148158,10928407:4227096,452978,115847 +k1,16196:10148158,10928407:3277 +h1,16196:14371977,10928407:0,411205,112570 +) +k1,16196:14581104,10928407:205850 +k1,16196:15887960,10928407:205851 +k1,16196:16449671,10928407:205851 +k1,16196:19004331,10928407:205850 +k1,16196:21972525,10928407:205851 +k1,16196:24938097,10928407:205851 +k1,16196:26586394,10928407:205850 +(1,16196:26586394,10928407:0,452978,115847 +r1,16197:30813490,10928407:4227096,568825,115847 +k1,16196:26586394,10928407:-4227096 +) +(1,16196:26586394,10928407:4227096,452978,115847 +k1,16196:26586394,10928407:3277 +h1,16196:30810213,10928407:0,411205,112570 +) +k1,16196:31193011,10928407:205851 +k1,16197:31966991,10928407:0 +) +(1,16197:7246811,11769895:24720180,513147,134348 +k1,16196:9766889,11769895:249911 +k1,16196:11396987,11769895:249910 +k1,16196:13113594,11769895:249911 +k1,16196:14775805,11769895:249910 +k1,16196:16759798,11769895:249910 +k1,16196:20133155,11769895:249911 +k1,16196:21144594,11769895:249911 +k1,16196:23135796,11769895:249910 +k1,16196:25347200,11769895:249911 +k1,16196:27413768,11769895:249910 +k1,16196:30038704,11769895:249911 +k1,16196:30947906,11769895:249910 +k1,16196:31966991,11769895:0 +) +(1,16197:7246811,12611383:24720180,513147,126483 +k1,16196:9747486,12611383:235095 +k1,16196:12742303,12611383:235096 +k1,16196:13968958,12611383:235095 +k1,16196:15489870,12611383:235096 +k1,16196:18660978,12611383:235095 +k1,16196:19843725,12611383:235096 +k1,16196:22740237,12611383:235095 +k1,16196:24998429,12611383:235096 +k1,16196:28259321,12611383:235095 +k1,16196:29309685,12611383:235096 +k1,16196:30611051,12611383:235095 +k1,16197:31966991,12611383:0 +) +(1,16197:7246811,13452871:24720180,513147,134348 +k1,16196:8664027,13452871:167444 +k1,16196:11544663,13452871:167445 +k1,16196:12371399,13452871:167444 +k1,16196:15513523,13452871:167445 +k1,16196:17877078,13452871:167444 +k1,16196:19311989,13452871:167445 +k1,16196:21703725,13452871:167444 +k1,16196:23062615,13452871:167445 +k1,16196:24433955,13452871:167444 +k1,16196:26669716,13452871:167445 +k1,16196:27828720,13452871:167444 +k1,16196:29062436,13452871:167445 +k1,16196:30164423,13452871:167444 +k1,16196:30947906,13452871:167445 +k1,16196:31966991,13452871:0 +) +(1,16197:7246811,14294359:24720180,513147,126483 +k1,16196:10264435,14294359:238897 +(1,16196:10264435,14294359:0,452978,115847 +r1,16197:12381260,14294359:2116825,568825,115847 +k1,16196:10264435,14294359:-2116825 +) +(1,16196:10264435,14294359:2116825,452978,115847 +k1,16196:10264435,14294359:3277 +h1,16196:12377983,14294359:0,411205,112570 +) +k1,16196:12793828,14294359:238898 +k1,16196:14918196,14294359:238897 +k1,16196:17612073,14294359:238898 +k1,16196:19418591,14294359:238897 +(1,16196:19418591,14294359:0,459977,115847 +r1,16197:22942263,14294359:3523672,575824,115847 +k1,16196:19418591,14294359:-3523672 +) +(1,16196:19418591,14294359:3523672,459977,115847 +k1,16196:19418591,14294359:3277 +h1,16196:22938986,14294359:0,411205,112570 +) +k1,16196:23354830,14294359:238897 +k1,16196:24665897,14294359:238898 +k1,16196:25436291,14294359:238897 +k1,16196:26741460,14294359:238898 +k1,16196:28431324,14294359:238897 +k1,16196:31966991,14294359:0 +) +(1,16197:7246811,15135847:24720180,505283,134348 +g1,16196:8678117,15135847 +g1,16196:11156033,15135847 +h1,16196:12698751,15135847:0,0,0 +g1,16196:12897980,15135847 +g1,16196:13906579,15135847 +g1,16196:15603961,15135847 +h1,16196:16799338,15135847:0,0,0 +k1,16197:31966991,15135847:14786889 +g1,16197:31966991,15135847 +) +] +) +] +r1,16197:32583029,15860019:26214,9972924,0 +) +] +) +) +g1,16197:32583029,15270195 +) +h1,16197:6630773,15886233:0,0,0 +(1,16200:6630773,17227955:25952256,513147,126483 +h1,16199:6630773,17227955:983040,0,0 +k1,16199:8652980,17227955:221278 +k1,16199:9742609,17227955:221277 +k1,16199:11068169,17227955:221278 +k1,16199:12314429,17227955:221277 +k1,16199:13151745,17227955:221278 +k1,16199:14576263,17227955:221277 +k1,16199:16103674,17227955:221278 +k1,16199:19160039,17227955:221278 +k1,16199:21078043,17227955:221277 +k1,16199:24325118,17227955:221278 +k1,16199:25832211,17227955:221277 +k1,16199:28049716,17227955:221278 +k1,16199:28922421,17227955:221277 +k1,16199:30162784,17227955:221278 +k1,16199:32583029,17227955:0 +) +(1,16200:6630773,18069443:25952256,513147,134348 +k1,16199:7805834,18069443:155976 +k1,16199:12312744,18069443:155975 +k1,16199:13128012,18069443:155976 +k1,16199:14303072,18069443:155975 +k1,16199:17345909,18069443:155976 +k1,16199:19387355,18069443:155975 +k1,16199:20074828,18069443:155976 +k1,16199:23440102,18069443:155976 +k1,16199:25294115,18069443:155975 +k1,16199:27146818,18069443:155976 +k1,16199:28294353,18069443:155975 +k1,16199:31015408,18069443:155976 +k1,16199:32583029,18069443:0 +) +(1,16200:6630773,18910931:25952256,513147,126483 +g1,16199:7849087,18910931 +g1,16199:9031356,18910931 +g1,16199:12153491,18910931 +g1,16199:13035605,18910931 +g1,16199:14556695,18910931 +g1,16199:15415216,18910931 +k1,16200:32583029,18910931:16536046 +g1,16200:32583029,18910931 +) +v1,16202:6630773,20077344:0,393216,0 +(1,16215:6630773,28950186:25952256,9266058,196608 +g1,16215:6630773,28950186 +g1,16215:6630773,28950186 +g1,16215:6434165,28950186 +(1,16215:6434165,28950186:0,9266058,196608 +r1,16215:32779637,28950186:26345472,9462666,196608 +k1,16215:6434165,28950186:-26345472 +) +(1,16215:6434165,28950186:26345472,9266058,196608 +[1,16215:6630773,28950186:25952256,9069450,0 +(1,16204:6630773,20291254:25952256,410518,107478 +(1,16203:6630773,20291254:0,0,0 +g1,16203:6630773,20291254 +g1,16203:6630773,20291254 +g1,16203:6303093,20291254 +(1,16203:6303093,20291254:0,0,0 +) +g1,16203:6630773,20291254 +) +k1,16204:6630773,20291254:0 +g1,16204:11056813,20291254 +g1,16204:11689105,20291254 +k1,16204:11689105,20291254:0 +h1,16204:21489621,20291254:0,0,0 +k1,16204:32583029,20291254:11093408 +g1,16204:32583029,20291254 +) +(1,16208:6630773,21612792:25952256,410518,101187 +g1,16208:7579210,21612792 +g1,16208:9792230,21612792 +g1,16208:11372959,21612792 +g1,16208:13585979,21612792 +k1,16208:32583029,21612792:14571010 +g1,16208:32583029,21612792 +) +(1,16208:6630773,22278970:25952256,404226,76021 +g1,16208:7579210,22278970 +k1,16208:32583030,22278970:23423092 +g1,16208:32583030,22278970 +) +(1,16208:6630773,22945148:25952256,404226,82312 +g1,16208:7579210,22945148 +g1,16208:7895356,22945148 +g1,16208:9476085,22945148 +g1,16208:10108377,22945148 +k1,16208:32583029,22945148:18364758 +g1,16208:32583029,22945148 +) +(1,16208:6630773,23611326:25952256,404226,82312 +g1,16208:7579210,23611326 +g1,16208:7895356,23611326 +g1,16208:9476085,23611326 +g1,16208:10108377,23611326 +k1,16208:32583029,23611326:18364758 +g1,16208:32583029,23611326 +) +(1,16208:6630773,24277504:25952256,404226,82312 +g1,16208:7579210,24277504 +g1,16208:7895356,24277504 +g1,16208:9476085,24277504 +g1,16208:10108377,24277504 +k1,16208:32583029,24277504:18364758 +g1,16208:32583029,24277504 +) +(1,16208:6630773,24943682:25952256,404226,76021 +g1,16208:7579210,24943682 +g1,16208:7895356,24943682 +g1,16208:9476085,24943682 +g1,16208:10108377,24943682 +k1,16208:32583030,24943682:17732468 +g1,16208:32583030,24943682 +) +(1,16208:6630773,25609860:25952256,404226,76021 +g1,16208:7579210,25609860 +k1,16208:32583028,25609860:24687672 +g1,16208:32583028,25609860 +) +(1,16214:6630773,26276038:25952256,404226,6290 +(1,16208:6630773,26276038:0,0,0 +g1,16208:6630773,26276038 +g1,16208:6630773,26276038 +g1,16208:6303093,26276038 +(1,16208:6303093,26276038:0,0,0 +) +g1,16208:6630773,26276038 +) +g1,16214:7579210,26276038 +g1,16214:8211502,26276038 +g1,16214:8843794,26276038 +g1,16214:11372960,26276038 +g1,16214:12005252,26276038 +g1,16214:12637544,26276038 +h1,16214:12953690,26276038:0,0,0 +k1,16214:32583030,26276038:19629340 +g1,16214:32583030,26276038 +) +(1,16214:6630773,26942216:25952256,404226,9436 +h1,16214:6630773,26942216:0,0,0 +g1,16214:7579210,26942216 +g1,16214:7895356,26942216 +g1,16214:8211502,26942216 +g1,16214:8527648,26942216 +g1,16214:10108377,26942216 +g1,16214:10424523,26942216 +g1,16214:12005252,26942216 +g1,16214:12321398,26942216 +g1,16214:13902127,26942216 +h1,16214:15166710,26942216:0,0,0 +k1,16214:32583030,26942216:17416320 +g1,16214:32583030,26942216 +) +(1,16214:6630773,27608394:25952256,404226,6290 +h1,16214:6630773,27608394:0,0,0 +g1,16214:7579210,27608394 +g1,16214:7895356,27608394 +g1,16214:8211502,27608394 +g1,16214:10108377,27608394 +g1,16214:12005252,27608394 +g1,16214:13902127,27608394 +k1,16214:13902127,27608394:0 +h1,16214:15482856,27608394:0,0,0 +k1,16214:32583028,27608394:17100172 +g1,16214:32583028,27608394 +) +(1,16214:6630773,28274572:25952256,388497,9436 +h1,16214:6630773,28274572:0,0,0 +g1,16214:7579210,28274572 +g1,16214:8211502,28274572 +g1,16214:8527648,28274572 +g1,16214:8843794,28274572 +g1,16214:9476086,28274572 +g1,16214:9792232,28274572 +g1,16214:10108378,28274572 +g1,16214:10424524,28274572 +g1,16214:12005253,28274572 +g1,16214:12321399,28274572 +g1,16214:12637545,28274572 +g1,16214:13902128,28274572 +h1,16214:14850565,28274572:0,0,0 +k1,16214:32583029,28274572:17732464 +g1,16214:32583029,28274572 +) +(1,16214:6630773,28940750:25952256,388497,9436 +h1,16214:6630773,28940750:0,0,0 +g1,16214:7579210,28940750 +g1,16214:8211502,28940750 +g1,16214:8527648,28940750 +g1,16214:10108377,28940750 +g1,16214:10424523,28940750 +g1,16214:12005252,28940750 +g1,16214:12321398,28940750 +g1,16214:12637544,28940750 +g1,16214:12953690,28940750 +g1,16214:13902127,28940750 +g1,16214:14534419,28940750 +h1,16214:14850565,28940750:0,0,0 +k1,16214:32583029,28940750:17732464 +g1,16214:32583029,28940750 +) +] +) +g1,16215:32583029,28950186 +g1,16215:6630773,28950186 +g1,16215:6630773,28950186 +g1,16215:32583029,28950186 +g1,16215:32583029,28950186 +) +h1,16215:6630773,29146794:0,0,0 +v1,16219:6630773,30813441:0,393216,0 +(1,16232:6630773,39686283:25952256,9266058,196608 +g1,16232:6630773,39686283 +g1,16232:6630773,39686283 +g1,16232:6434165,39686283 +(1,16232:6434165,39686283:0,9266058,196608 +r1,16232:32779637,39686283:26345472,9462666,196608 +k1,16232:6434165,39686283:-26345472 +) +(1,16232:6434165,39686283:26345472,9266058,196608 +[1,16232:6630773,39686283:25952256,9069450,0 +(1,16221:6630773,31027351:25952256,410518,107478 +(1,16220:6630773,31027351:0,0,0 +g1,16220:6630773,31027351 +g1,16220:6630773,31027351 +g1,16220:6303093,31027351 +(1,16220:6303093,31027351:0,0,0 +) +g1,16220:6630773,31027351 +) +k1,16221:6630773,31027351:0 +g1,16221:11056813,31027351 +g1,16221:11689105,31027351 +k1,16221:11689105,31027351:0 +h1,16221:22754203,31027351:0,0,0 +k1,16221:32583029,31027351:9828826 +g1,16221:32583029,31027351 +) +(1,16225:6630773,32348889:25952256,410518,101187 +g1,16225:7579210,32348889 +g1,16225:9792230,32348889 +g1,16225:11372959,32348889 +g1,16225:13585979,32348889 +k1,16225:32583029,32348889:14571010 +g1,16225:32583029,32348889 +) +(1,16225:6630773,33015067:25952256,404226,76021 +g1,16225:7579210,33015067 +k1,16225:32583030,33015067:23423092 +g1,16225:32583030,33015067 +) +(1,16225:6630773,33681245:25952256,404226,82312 +g1,16225:7579210,33681245 +g1,16225:7895356,33681245 +g1,16225:9476085,33681245 +g1,16225:10108377,33681245 +k1,16225:32583029,33681245:18364758 +g1,16225:32583029,33681245 +) +(1,16225:6630773,34347423:25952256,404226,82312 +g1,16225:7579210,34347423 +g1,16225:7895356,34347423 +g1,16225:9476085,34347423 +g1,16225:10108377,34347423 +k1,16225:32583029,34347423:18364758 +g1,16225:32583029,34347423 +) +(1,16225:6630773,35013601:25952256,404226,82312 +g1,16225:7579210,35013601 +g1,16225:7895356,35013601 +g1,16225:9476085,35013601 +g1,16225:10108377,35013601 +k1,16225:32583029,35013601:18364758 +g1,16225:32583029,35013601 +) +(1,16225:6630773,35679779:25952256,404226,76021 +g1,16225:7579210,35679779 +g1,16225:7895356,35679779 +g1,16225:9476085,35679779 +g1,16225:10108377,35679779 +k1,16225:32583030,35679779:17732468 +g1,16225:32583030,35679779 +) +(1,16225:6630773,36345957:25952256,404226,76021 +g1,16225:7579210,36345957 +k1,16225:32583028,36345957:24687672 +g1,16225:32583028,36345957 +) +(1,16231:6630773,37012135:25952256,404226,6290 +(1,16225:6630773,37012135:0,0,0 +g1,16225:6630773,37012135 +g1,16225:6630773,37012135 +g1,16225:6303093,37012135 +(1,16225:6303093,37012135:0,0,0 +) +g1,16225:6630773,37012135 +) +g1,16231:7579210,37012135 +g1,16231:8211502,37012135 +g1,16231:8843794,37012135 +g1,16231:11372960,37012135 +g1,16231:12005252,37012135 +g1,16231:12637544,37012135 +h1,16231:12953690,37012135:0,0,0 +k1,16231:32583030,37012135:19629340 +g1,16231:32583030,37012135 +) +(1,16231:6630773,37678313:25952256,404226,9436 +h1,16231:6630773,37678313:0,0,0 +g1,16231:7579210,37678313 +g1,16231:7895356,37678313 +g1,16231:8211502,37678313 +g1,16231:8527648,37678313 +g1,16231:10108377,37678313 +g1,16231:10424523,37678313 +g1,16231:12005252,37678313 +g1,16231:12321398,37678313 +g1,16231:13902127,37678313 +h1,16231:15166710,37678313:0,0,0 +k1,16231:32583030,37678313:17416320 +g1,16231:32583030,37678313 +) +(1,16231:6630773,38344491:25952256,404226,6290 +h1,16231:6630773,38344491:0,0,0 +g1,16231:7579210,38344491 +g1,16231:7895356,38344491 +g1,16231:8211502,38344491 +g1,16231:10108377,38344491 +g1,16231:12005252,38344491 +g1,16231:13902127,38344491 +k1,16231:13902127,38344491:0 +h1,16231:15482856,38344491:0,0,0 +k1,16231:32583028,38344491:17100172 +g1,16231:32583028,38344491 +) +(1,16231:6630773,39010669:25952256,388497,9436 +h1,16231:6630773,39010669:0,0,0 +g1,16231:7579210,39010669 +g1,16231:8211502,39010669 +g1,16231:8527648,39010669 +g1,16231:8843794,39010669 +g1,16231:9476086,39010669 +g1,16231:9792232,39010669 +g1,16231:10108378,39010669 +g1,16231:10424524,39010669 +g1,16231:12005253,39010669 +g1,16231:12321399,39010669 +g1,16231:12637545,39010669 +g1,16231:13902128,39010669 +h1,16231:14850565,39010669:0,0,0 +k1,16231:32583029,39010669:17732464 +g1,16231:32583029,39010669 +) +(1,16231:6630773,39676847:25952256,388497,9436 +h1,16231:6630773,39676847:0,0,0 +g1,16231:7579210,39676847 +g1,16231:8211502,39676847 +g1,16231:8527648,39676847 +g1,16231:10108377,39676847 +g1,16231:10424523,39676847 +g1,16231:12005252,39676847 +g1,16231:12321398,39676847 +g1,16231:12637544,39676847 +g1,16231:12953690,39676847 +g1,16231:13902127,39676847 +g1,16231:14534419,39676847 +h1,16231:14850565,39676847:0,0,0 +k1,16231:32583029,39676847:17732464 +g1,16231:32583029,39676847 +) +] +) +g1,16232:32583029,39686283 +g1,16232:6630773,39686283 +g1,16232:6630773,39686283 +g1,16232:32583029,39686283 +g1,16232:32583029,39686283 +) +h1,16232:6630773,39882891:0,0,0 +(1,16236:6630773,41224613:25952256,513147,126483 +h1,16235:6630773,41224613:983040,0,0 +k1,16235:10668951,41224613:265270 +(1,16235:10668951,41224613:0,452978,115847 +r1,16235:14896047,41224613:4227096,568825,115847 +k1,16235:10668951,41224613:-4227096 +) +(1,16235:10668951,41224613:4227096,452978,115847 +k1,16235:10668951,41224613:3277 +h1,16235:14892770,41224613:0,411205,112570 +) +k1,16235:15334987,41224613:265270 +k1,16235:18928830,41224613:265269 +k1,16235:19845528,41224613:265270 +(1,16235:19845528,41224613:0,452978,115847 +r1,16235:24072624,41224613:4227096,568825,115847 +k1,16235:19845528,41224613:-4227096 +) +(1,16235:19845528,41224613:4227096,452978,115847 +k1,16235:19845528,41224613:3277 +h1,16235:24069347,41224613:0,411205,112570 +) +k1,16235:24511564,41224613:265270 +k1,16235:26971635,41224613:265270 +k1,16235:29385174,41224613:265269 +k1,16235:30336606,41224613:265270 +k1,16235:31923737,41224613:265270 +k1,16235:32583029,41224613:0 +) +(1,16236:6630773,42066101:25952256,505283,134348 +g1,16235:8242303,42066101 +g1,16235:11416211,42066101 +k1,16236:32583029,42066101:18797036 +g1,16236:32583029,42066101 +) +v1,16238:6630773,43232514:0,393216,0 +(1,16251:6630773,45510161:25952256,2670863,196608 +g1,16251:6630773,45510161 +g1,16251:6630773,45510161 +g1,16251:6434165,45510161 +(1,16251:6434165,45510161:0,2670863,196608 +r1,16251:32779637,45510161:26345472,2867471,196608 +k1,16251:6434165,45510161:-26345472 +) +(1,16251:6434165,45510161:26345472,2670863,196608 +[1,16251:6630773,45510161:25952256,2474255,0 +(1,16240:6630773,43446424:25952256,410518,107478 +(1,16239:6630773,43446424:0,0,0 +g1,16239:6630773,43446424 +g1,16239:6630773,43446424 +g1,16239:6303093,43446424 +(1,16239:6303093,43446424:0,0,0 +) +g1,16239:6630773,43446424 +) +k1,16240:6630773,43446424:0 +g1,16240:11689105,43446424 +g1,16240:12321397,43446424 +k1,16240:12321397,43446424:0 +h1,16240:21173476,43446424:0,0,0 +k1,16240:32583029,43446424:11409553 +g1,16240:32583029,43446424 +) +(1,16244:6630773,44767962:25952256,410518,101187 +g1,16244:7579210,44767962 +g1,16244:9792230,44767962 +g1,16244:11372959,44767962 +g1,16244:13585979,44767962 +k1,16244:32583029,44767962:14571010 +g1,16244:32583029,44767962 +) +(1,16244:6630773,45434140:25952256,404226,76021 +g1,16244:7579210,45434140 +k1,16244:32583030,45434140:23423092 +g1,16244:32583030,45434140 +) +] +) +g1,16251:32583029,45510161 +g1,16251:6630773,45510161 +g1,16251:6630773,45510161 +g1,16251:32583029,45510161 +g1,16251:32583029,45510161 +) +] +(1,16251:32583029,45706769:0,0,0 +g1,16251:32583029,45706769 ) ) ] -(1,16220:6630773,47279633:25952256,0,0 -h1,16220:6630773,47279633:25952256,0,0 -) -] -h1,16220:4262630,4025873:0,0,0 +(1,16251:6630773,47279633:25952256,0,0 +h1,16251:6630773,47279633:25952256,0,0 +) +] +h1,16251:4262630,4025873:0,0,0 ] !23322 }315 -Input:2451:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2452:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2453:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2454:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2455:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2456:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2457:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2458:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!700 +Input:2448:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2449:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2450:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2451:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2452:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2453:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2454:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2455:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!748 {316 -[1,16266:4262630,47279633:28320399,43253760,0 -(1,16266:4262630,4025873:0,0,0 -[1,16266:-473657,4025873:25952256,0,0 -(1,16266:-473657,-710414:25952256,0,0 -h1,16266:-473657,-710414:0,0,0 -(1,16266:-473657,-710414:0,0,0 -(1,16266:-473657,-710414:0,0,0 -g1,16266:-473657,-710414 -(1,16266:-473657,-710414:65781,0,65781 -g1,16266:-407876,-710414 -[1,16266:-407876,-644633:0,0,0 +[1,16297:4262630,47279633:28320399,43253760,0 +(1,16297:4262630,4025873:0,0,0 +[1,16297:-473657,4025873:25952256,0,0 +(1,16297:-473657,-710414:25952256,0,0 +h1,16297:-473657,-710414:0,0,0 +(1,16297:-473657,-710414:0,0,0 +(1,16297:-473657,-710414:0,0,0 +g1,16297:-473657,-710414 +(1,16297:-473657,-710414:65781,0,65781 +g1,16297:-407876,-710414 +[1,16297:-407876,-644633:0,0,0 ] ) -k1,16266:-473657,-710414:-65781 +k1,16297:-473657,-710414:-65781 ) ) -k1,16266:25478599,-710414:25952256 -g1,16266:25478599,-710414 +k1,16297:25478599,-710414:25952256 +g1,16297:25478599,-710414 ) ] ) -[1,16266:6630773,47279633:25952256,43253760,0 -[1,16266:6630773,4812305:25952256,786432,0 -(1,16266:6630773,4812305:25952256,513147,126483 -(1,16266:6630773,4812305:25952256,513147,126483 -g1,16266:3078558,4812305 -[1,16266:3078558,4812305:0,0,0 -(1,16266:3078558,2439708:0,1703936,0 -k1,16266:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16266:2537886,2439708:1179648,16384,0 +[1,16297:6630773,47279633:25952256,43253760,0 +[1,16297:6630773,4812305:25952256,786432,0 +(1,16297:6630773,4812305:25952256,513147,126483 +(1,16297:6630773,4812305:25952256,513147,126483 +g1,16297:3078558,4812305 +[1,16297:3078558,4812305:0,0,0 +(1,16297:3078558,2439708:0,1703936,0 +k1,16297:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16297:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16266:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16297:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16266:3078558,4812305:0,0,0 -(1,16266:3078558,2439708:0,1703936,0 -g1,16266:29030814,2439708 -g1,16266:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16266:36151628,1915420:16384,1179648,0 +[1,16297:3078558,4812305:0,0,0 +(1,16297:3078558,2439708:0,1703936,0 +g1,16297:29030814,2439708 +g1,16297:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16297:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16266:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16297:37855564,2439708:1179648,16384,0 ) ) -k1,16266:3078556,2439708:-34777008 +k1,16297:3078556,2439708:-34777008 ) ] -[1,16266:3078558,4812305:0,0,0 -(1,16266:3078558,49800853:0,16384,2228224 -k1,16266:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16266:2537886,49800853:1179648,16384,0 +[1,16297:3078558,4812305:0,0,0 +(1,16297:3078558,49800853:0,16384,2228224 +k1,16297:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16297:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16266:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16297:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16266:3078558,4812305:0,0,0 -(1,16266:3078558,49800853:0,16384,2228224 -g1,16266:29030814,49800853 -g1,16266:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16266:36151628,51504789:16384,1179648,0 +[1,16297:3078558,4812305:0,0,0 +(1,16297:3078558,49800853:0,16384,2228224 +g1,16297:29030814,49800853 +g1,16297:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16297:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16266:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16297:37855564,49800853:1179648,16384,0 ) ) -k1,16266:3078556,49800853:-34777008 -) -] -g1,16266:6630773,4812305 -g1,16266:6630773,4812305 -g1,16266:9744388,4812305 -g1,16266:11175694,4812305 -k1,16266:31387652,4812305:20211958 -) -) -] -[1,16266:6630773,45706769:25952256,40108032,0 -(1,16266:6630773,45706769:25952256,40108032,0 -(1,16266:6630773,45706769:0,0,0 -g1,16266:6630773,45706769 -) -[1,16266:6630773,45706769:25952256,40108032,0 -v1,16220:6630773,6254097:0,393216,0 -(1,16220:6630773,12533338:25952256,6672457,196608 -g1,16220:6630773,12533338 -g1,16220:6630773,12533338 -g1,16220:6434165,12533338 -(1,16220:6434165,12533338:0,6672457,196608 -r1,16220:32779637,12533338:26345472,6869065,196608 -k1,16220:6434165,12533338:-26345472 -) -(1,16220:6434165,12533338:26345472,6672457,196608 -[1,16220:6630773,12533338:25952256,6475849,0 -(1,16213:6630773,6461715:25952256,404226,82312 -g1,16213:7579210,6461715 -g1,16213:7895356,6461715 -g1,16213:9476085,6461715 -g1,16213:10108377,6461715 -k1,16213:32583029,6461715:18364758 -g1,16213:32583029,6461715 -) -(1,16213:6630773,7127893:25952256,404226,82312 -g1,16213:7579210,7127893 -g1,16213:7895356,7127893 -g1,16213:9476085,7127893 -g1,16213:10108377,7127893 -k1,16213:32583029,7127893:18364758 -g1,16213:32583029,7127893 -) -(1,16213:6630773,7794071:25952256,404226,82312 -g1,16213:7579210,7794071 -g1,16213:7895356,7794071 -g1,16213:9476085,7794071 -g1,16213:10108377,7794071 -k1,16213:32583029,7794071:18364758 -g1,16213:32583029,7794071 -) -(1,16213:6630773,8460249:25952256,404226,76021 -g1,16213:7579210,8460249 -g1,16213:7895356,8460249 -g1,16213:9476085,8460249 -g1,16213:10108377,8460249 -k1,16213:32583030,8460249:17732468 -g1,16213:32583030,8460249 -) -(1,16213:6630773,9126427:25952256,404226,76021 -g1,16213:7579210,9126427 -k1,16213:32583028,9126427:24687672 -g1,16213:32583028,9126427 -) -(1,16219:6630773,9792605:25952256,404226,6290 -(1,16213:6630773,9792605:0,0,0 -g1,16213:6630773,9792605 -g1,16213:6630773,9792605 -g1,16213:6303093,9792605 -(1,16213:6303093,9792605:0,0,0 -) -g1,16213:6630773,9792605 -) -g1,16219:7579210,9792605 -g1,16219:8211502,9792605 -g1,16219:8843794,9792605 -g1,16219:11372960,9792605 -g1,16219:12005252,9792605 -g1,16219:12637544,9792605 -h1,16219:12953690,9792605:0,0,0 -k1,16219:32583030,9792605:19629340 -g1,16219:32583030,9792605 -) -(1,16219:6630773,10458783:25952256,404226,9436 -h1,16219:6630773,10458783:0,0,0 -g1,16219:7579210,10458783 -g1,16219:7895356,10458783 -g1,16219:8211502,10458783 -g1,16219:8527648,10458783 -g1,16219:10108377,10458783 -g1,16219:10424523,10458783 -g1,16219:12005252,10458783 -g1,16219:12321398,10458783 -g1,16219:13902127,10458783 -h1,16219:15166710,10458783:0,0,0 -k1,16219:32583030,10458783:17416320 -g1,16219:32583030,10458783 -) -(1,16219:6630773,11124961:25952256,404226,6290 -h1,16219:6630773,11124961:0,0,0 -g1,16219:7579210,11124961 -g1,16219:7895356,11124961 -g1,16219:8211502,11124961 -g1,16219:10108377,11124961 -g1,16219:12005252,11124961 -g1,16219:13902127,11124961 -k1,16219:13902127,11124961:0 -h1,16219:15482856,11124961:0,0,0 -k1,16219:32583028,11124961:17100172 -g1,16219:32583028,11124961 -) -(1,16219:6630773,11791139:25952256,404226,9436 -h1,16219:6630773,11791139:0,0,0 -g1,16219:7579210,11791139 -g1,16219:8211502,11791139 -g1,16219:8527648,11791139 -g1,16219:8843794,11791139 -g1,16219:9476086,11791139 -g1,16219:9792232,11791139 -g1,16219:10108378,11791139 -g1,16219:10424524,11791139 -g1,16219:12005253,11791139 -g1,16219:12321399,11791139 -g1,16219:12637545,11791139 -g1,16219:13902128,11791139 -h1,16219:15482856,11791139:0,0,0 -k1,16219:32583028,11791139:17100172 -g1,16219:32583028,11791139 -) -(1,16219:6630773,12457317:25952256,404226,76021 -h1,16219:6630773,12457317:0,0,0 -g1,16219:7579210,12457317 -g1,16219:8211502,12457317 -g1,16219:8527648,12457317 -g1,16219:10108377,12457317 -g1,16219:10424523,12457317 -g1,16219:12005252,12457317 -g1,16219:12321398,12457317 -g1,16219:12637544,12457317 -g1,16219:12953690,12457317 -g1,16219:13902127,12457317 -g1,16219:15482856,12457317 -h1,16219:16747439,12457317:0,0,0 -k1,16219:32583029,12457317:15835590 -g1,16219:32583029,12457317 -) -] -) -g1,16220:32583029,12533338 -g1,16220:6630773,12533338 -g1,16220:6630773,12533338 -g1,16220:32583029,12533338 -g1,16220:32583029,12533338 -) -h1,16220:6630773,12729946:0,0,0 -(1,16224:6630773,14095722:25952256,513147,134348 -h1,16223:6630773,14095722:983040,0,0 -k1,16223:10282772,14095722:140580 -k1,16223:11082645,14095722:140581 -k1,16223:12242310,14095722:140580 -k1,16223:15853678,14095722:140581 -k1,16223:17728341,14095722:140580 -k1,16223:18484960,14095722:140581 -k1,16223:19608580,14095722:140580 -(1,16223:19608580,14095722:0,452978,122846 -r1,16223:27704506,14095722:8095926,575824,122846 -k1,16223:19608580,14095722:-8095926 -) -(1,16223:19608580,14095722:8095926,452978,122846 -k1,16223:19608580,14095722:3277 -h1,16223:27701229,14095722:0,411205,112570 -) -k1,16223:28018757,14095722:140581 -k1,16223:29027689,14095722:140580 -k1,16223:30698536,14095722:140581 -k1,16223:31490544,14095722:140580 -k1,16224:32583029,14095722:0 -) -(1,16224:6630773,14937210:25952256,513147,134348 -(1,16223:6630773,14937210:0,452978,115847 -r1,16223:11209581,14937210:4578808,568825,115847 -k1,16223:6630773,14937210:-4578808 -) -(1,16223:6630773,14937210:4578808,452978,115847 -k1,16223:6630773,14937210:3277 -h1,16223:11206304,14937210:0,411205,112570 -) -k1,16223:11589927,14937210:206676 -k1,16223:13682073,14937210:206675 -k1,16223:15900704,14937210:206676 -k1,16223:20449140,14937210:206676 -k1,16223:21315107,14937210:206675 -k1,16223:23429536,14937210:206676 -k1,16223:24782437,14937210:206676 -(1,16223:24782437,14937210:0,452978,115847 -r1,16223:29009533,14937210:4227096,568825,115847 -k1,16223:24782437,14937210:-4227096 -) -(1,16223:24782437,14937210:4227096,452978,115847 -k1,16223:24782437,14937210:3277 -h1,16223:29006256,14937210:0,411205,112570 -) -k1,16223:29389878,14937210:206675 -k1,16223:31923737,14937210:206676 -k1,16224:32583029,14937210:0 -) -(1,16224:6630773,15778698:25952256,513147,134348 -(1,16223:6630773,15778698:0,452978,115847 -r1,16223:10857869,15778698:4227096,568825,115847 -k1,16223:6630773,15778698:-4227096 -) -(1,16223:6630773,15778698:4227096,452978,115847 -k1,16223:6630773,15778698:3277 -h1,16223:10854592,15778698:0,411205,112570 -) -k1,16223:11212023,15778698:180484 -k1,16223:13277977,15778698:180483 -k1,16223:15859700,15778698:180484 -k1,16223:18951949,15778698:180484 -k1,16223:21451752,15778698:180484 -k1,16223:23366318,15778698:180483 -k1,16223:25579729,15778698:180484 -k1,16223:27468081,15778698:180484 -k1,16223:30583266,15778698:180483 -k1,16223:31379788,15778698:180484 -k1,16223:32583029,15778698:0 -) -(1,16224:6630773,16620186:25952256,505283,134348 -k1,16223:8160602,16620186:162748 -k1,16223:9342434,16620186:162747 -k1,16223:12829823,16620186:162748 -k1,16223:14780393,16620186:162748 -k1,16223:17917819,16620186:162747 -k1,16223:18696605,16620186:162748 -k1,16223:19878438,16620186:162748 -k1,16223:22279895,16620186:162747 -k1,16223:24308453,16620186:162748 -k1,16223:25002698,16620186:162748 -k1,16223:29906975,16620186:162747 -k1,16223:31261168,16620186:162748 -k1,16223:32583029,16620186:0 -) -(1,16224:6630773,17461674:25952256,513147,134348 -g1,16223:7489294,17461674 -g1,16223:8707608,17461674 -g1,16223:10772647,17461674 -g1,16223:13685067,17461674 -g1,16223:15278247,17461674 -g1,16223:15833336,17461674 -k1,16224:32583029,17461674:14005701 -g1,16224:32583029,17461674 -) -v1,16226:6630773,18652140:0,393216,0 -(1,16241:6630773,29590101:25952256,11331177,196608 -g1,16241:6630773,29590101 -g1,16241:6630773,29590101 -g1,16241:6434165,29590101 -(1,16241:6434165,29590101:0,11331177,196608 -r1,16241:32779637,29590101:26345472,11527785,196608 -k1,16241:6434165,29590101:-26345472 -) -(1,16241:6434165,29590101:26345472,11331177,196608 -[1,16241:6630773,29590101:25952256,11134569,0 -(1,16228:6630773,18866050:25952256,410518,107478 -(1,16227:6630773,18866050:0,0,0 -g1,16227:6630773,18866050 -g1,16227:6630773,18866050 -g1,16227:6303093,18866050 -(1,16227:6303093,18866050:0,0,0 -) -g1,16227:6630773,18866050 -) -k1,16228:6630773,18866050:0 -g1,16228:12005250,18866050 -g1,16228:12637542,18866050 -k1,16228:12637542,18866050:0 -h1,16228:22754203,18866050:0,0,0 -k1,16228:32583029,18866050:9828826 -g1,16228:32583029,18866050 -) -(1,16233:6630773,20187588:25952256,410518,101187 -g1,16232:7579210,20187588 -g1,16232:9792230,20187588 -g1,16232:11372959,20187588 -g1,16232:13585979,20187588 -k1,16232:32583029,20187588:14571010 -g1,16233:32583029,20187588 -) -(1,16233:6630773,20853766:25952256,404226,76021 -g1,16232:7579210,20853766 -k1,16232:32583030,20853766:23423092 -g1,16233:32583030,20853766 -) -(1,16233:6630773,21519944:25952256,404226,82312 -g1,16232:7579210,21519944 -g1,16232:7895356,21519944 -g1,16232:9476085,21519944 -g1,16232:10108377,21519944 -k1,16232:32583029,21519944:18364758 -g1,16233:32583029,21519944 -) -(1,16233:6630773,22186122:25952256,404226,82312 -g1,16232:7579210,22186122 -g1,16232:7895356,22186122 -g1,16232:9476085,22186122 -g1,16232:10108377,22186122 -k1,16232:32583029,22186122:18364758 -g1,16233:32583029,22186122 -) -(1,16233:6630773,22852300:25952256,404226,82312 -g1,16232:7579210,22852300 -g1,16232:7895356,22852300 -g1,16232:9476085,22852300 -g1,16232:10108377,22852300 -k1,16232:32583029,22852300:18364758 -g1,16233:32583029,22852300 -) -(1,16233:6630773,23518478:25952256,404226,76021 -g1,16232:7579210,23518478 -g1,16232:7895356,23518478 -g1,16232:9476085,23518478 -g1,16232:10108377,23518478 -k1,16232:32583030,23518478:17732468 -g1,16233:32583030,23518478 -) -(1,16233:6630773,24184656:25952256,404226,76021 -g1,16232:7579210,24184656 -k1,16233:32583028,24184656:24687672 -g1,16233:32583028,24184656 -) -(1,16234:6630773,24850834:25952256,410518,107478 -g1,16234:7579210,24850834 -g1,16234:10424521,24850834 -g1,16234:11056813,24850834 -g1,16234:13585979,24850834 -k1,16234:32583029,24850834:16467885 -g1,16234:32583029,24850834 -) -(1,16234:6630773,25517012:25952256,410518,101187 -g1,16234:7579210,25517012 -g1,16234:8843793,25517012 -g1,16234:10108376,25517012 -g1,16234:10424522,25517012 -g1,16234:13269833,25517012 -g1,16234:13585979,25517012 -g1,16234:13902125,25517012 -g1,16234:14218271,25517012 -g1,16234:16431291,25517012 -g1,16234:16747437,25517012 -g1,16234:17063583,25517012 -g1,16234:17379729,25517012 -g1,16234:17695875,25517012 -g1,16234:18012021,25517012 -g1,16234:18328167,25517012 -g1,16234:18644313,25517012 -g1,16234:18960459,25517012 -g1,16234:19276605,25517012 -g1,16234:19592751,25517012 -g1,16234:19908897,25517012 -g1,16234:20225043,25517012 -g1,16234:20541189,25517012 -g1,16234:20857335,25517012 -g1,16234:21173481,25517012 -g1,16234:21489627,25517012 -g1,16234:21805773,25517012 -g1,16234:22121919,25517012 -g1,16234:22438065,25517012 -g1,16234:22754211,25517012 -g1,16234:23070357,25517012 -g1,16234:23386503,25517012 -g1,16234:23702649,25517012 -g1,16234:24018795,25517012 -g1,16234:24334941,25517012 -g1,16234:24651087,25517012 -g1,16234:24967233,25517012 -k1,16234:32583029,25517012:6351213 -g1,16234:32583029,25517012 -) -(1,16234:6630773,26183190:25952256,404226,107478 -g1,16234:7579210,26183190 -g1,16234:7895356,26183190 -g1,16234:8527648,26183190 -g1,16234:8843794,26183190 -g1,16234:9792231,26183190 -g1,16234:10424523,26183190 -g1,16234:12953689,26183190 -g1,16234:13585981,26183190 -g1,16234:16115147,26183190 -k1,16234:32583029,26183190:6667366 -g1,16234:32583029,26183190 -) -(1,16240:6630773,26849368:25952256,404226,6290 -(1,16234:6630773,26849368:0,0,0 -g1,16234:6630773,26849368 -g1,16234:6630773,26849368 -g1,16234:6303093,26849368 -(1,16234:6303093,26849368:0,0,0 -) -g1,16234:6630773,26849368 -) -g1,16240:7579210,26849368 -g1,16240:8211502,26849368 -g1,16240:8843794,26849368 -g1,16240:11372960,26849368 -g1,16240:12005252,26849368 -g1,16240:12637544,26849368 -h1,16240:12953690,26849368:0,0,0 -k1,16240:32583030,26849368:19629340 -g1,16240:32583030,26849368 -) -(1,16240:6630773,27515546:25952256,404226,9436 -h1,16240:6630773,27515546:0,0,0 -g1,16240:7579210,27515546 -g1,16240:7895356,27515546 -g1,16240:8211502,27515546 -g1,16240:8527648,27515546 -g1,16240:10108377,27515546 -g1,16240:10424523,27515546 -g1,16240:12005252,27515546 -g1,16240:12321398,27515546 -g1,16240:13902127,27515546 -h1,16240:15166710,27515546:0,0,0 -k1,16240:32583030,27515546:17416320 -g1,16240:32583030,27515546 -) -(1,16240:6630773,28181724:25952256,404226,6290 -h1,16240:6630773,28181724:0,0,0 -g1,16240:7579210,28181724 -g1,16240:7895356,28181724 -g1,16240:8211502,28181724 -g1,16240:10108377,28181724 -g1,16240:12005252,28181724 -g1,16240:13902127,28181724 -k1,16240:13902127,28181724:0 -h1,16240:15482856,28181724:0,0,0 -k1,16240:32583028,28181724:17100172 -g1,16240:32583028,28181724 -) -(1,16240:6630773,28847902:25952256,404226,9436 -h1,16240:6630773,28847902:0,0,0 -g1,16240:7579210,28847902 -g1,16240:8211502,28847902 -g1,16240:8527648,28847902 -g1,16240:8843794,28847902 -g1,16240:9476086,28847902 -g1,16240:9792232,28847902 -g1,16240:10108378,28847902 -g1,16240:10424524,28847902 -g1,16240:12005253,28847902 -g1,16240:12321399,28847902 -g1,16240:12637545,28847902 -g1,16240:13902128,28847902 -h1,16240:15482856,28847902:0,0,0 -k1,16240:32583028,28847902:17100172 -g1,16240:32583028,28847902 -) -(1,16240:6630773,29514080:25952256,404226,76021 -h1,16240:6630773,29514080:0,0,0 -g1,16240:7579210,29514080 -g1,16240:8211502,29514080 -g1,16240:8527648,29514080 -g1,16240:10108377,29514080 -g1,16240:10424523,29514080 -g1,16240:12005252,29514080 -g1,16240:12321398,29514080 -g1,16240:12637544,29514080 -g1,16240:12953690,29514080 -g1,16240:13902127,29514080 -h1,16240:15482855,29514080:0,0,0 -k1,16240:32583029,29514080:17100174 -g1,16240:32583029,29514080 -) -] -) -g1,16241:32583029,29590101 -g1,16241:6630773,29590101 -g1,16241:6630773,29590101 -g1,16241:32583029,29590101 -g1,16241:32583029,29590101 -) -h1,16241:6630773,29786709:0,0,0 -(1,16245:6630773,31152485:25952256,505283,126483 -h1,16244:6630773,31152485:983040,0,0 -g1,16244:10602910,31152485 -(1,16244:10602910,31152485:0,452978,115847 -r1,16244:14830006,31152485:4227096,568825,115847 -k1,16244:10602910,31152485:-4227096 -) -(1,16244:10602910,31152485:4227096,452978,115847 -k1,16244:10602910,31152485:3277 -h1,16244:14826729,31152485:0,411205,112570 -) -g1,16244:15029235,31152485 -g1,16244:16622415,31152485 -g1,16244:18609466,31152485 -g1,16244:19494857,31152485 -g1,16244:20713171,31152485 -g1,16244:23800572,31152485 -g1,16244:25860368,31152485 -g1,16244:26711025,31152485 -g1,16244:27658020,31152485 -k1,16245:32583029,31152485:3238112 -g1,16245:32583029,31152485 -) -v1,16247:6630773,32342951:0,393216,0 -(1,16260:6630773,41215793:25952256,9266058,196608 -g1,16260:6630773,41215793 -g1,16260:6630773,41215793 -g1,16260:6434165,41215793 -(1,16260:6434165,41215793:0,9266058,196608 -r1,16260:32779637,41215793:26345472,9462666,196608 -k1,16260:6434165,41215793:-26345472 -) -(1,16260:6434165,41215793:26345472,9266058,196608 -[1,16260:6630773,41215793:25952256,9069450,0 -(1,16249:6630773,32556861:25952256,410518,107478 -(1,16248:6630773,32556861:0,0,0 -g1,16248:6630773,32556861 -g1,16248:6630773,32556861 -g1,16248:6303093,32556861 -(1,16248:6303093,32556861:0,0,0 -) -g1,16248:6630773,32556861 -) -k1,16249:6630773,32556861:0 -g1,16249:11689105,32556861 -g1,16249:12321397,32556861 -g1,16249:22754204,32556861 -g1,16249:24651078,32556861 -g1,16249:25283370,32556861 -g1,16249:25915662,32556861 -h1,16249:26547954,32556861:0,0,0 -k1,16249:32583029,32556861:6035075 -g1,16249:32583029,32556861 -) -(1,16253:6630773,33878399:25952256,410518,101187 -g1,16253:7579210,33878399 -g1,16253:9792230,33878399 -g1,16253:11372959,33878399 -g1,16253:13585979,33878399 -k1,16253:32583029,33878399:14571010 -g1,16253:32583029,33878399 -) -(1,16253:6630773,34544577:25952256,404226,76021 -g1,16253:7579210,34544577 -k1,16253:32583030,34544577:23423092 -g1,16253:32583030,34544577 -) -(1,16253:6630773,35210755:25952256,404226,82312 -g1,16253:7579210,35210755 -g1,16253:7895356,35210755 -g1,16253:9476085,35210755 -g1,16253:10108377,35210755 -k1,16253:32583029,35210755:18364758 -g1,16253:32583029,35210755 -) -(1,16253:6630773,35876933:25952256,404226,82312 -g1,16253:7579210,35876933 -g1,16253:7895356,35876933 -g1,16253:9476085,35876933 -g1,16253:10108377,35876933 -k1,16253:32583029,35876933:18364758 -g1,16253:32583029,35876933 -) -(1,16253:6630773,36543111:25952256,404226,82312 -g1,16253:7579210,36543111 -g1,16253:7895356,36543111 -g1,16253:9476085,36543111 -g1,16253:10108377,36543111 -k1,16253:32583029,36543111:18364758 -g1,16253:32583029,36543111 -) -(1,16253:6630773,37209289:25952256,404226,76021 -g1,16253:7579210,37209289 -g1,16253:7895356,37209289 -g1,16253:9476085,37209289 -g1,16253:10108377,37209289 -k1,16253:32583030,37209289:17732468 -g1,16253:32583030,37209289 -) -(1,16253:6630773,37875467:25952256,404226,76021 -g1,16253:7579210,37875467 -k1,16253:32583028,37875467:24687672 -g1,16253:32583028,37875467 -) -(1,16259:6630773,38541645:25952256,404226,6290 -(1,16253:6630773,38541645:0,0,0 -g1,16253:6630773,38541645 -g1,16253:6630773,38541645 -g1,16253:6303093,38541645 -(1,16253:6303093,38541645:0,0,0 -) -g1,16253:6630773,38541645 -) -g1,16259:7579210,38541645 -g1,16259:8211502,38541645 -g1,16259:8843794,38541645 -g1,16259:11372960,38541645 -g1,16259:12005252,38541645 -g1,16259:12637544,38541645 -h1,16259:12953690,38541645:0,0,0 -k1,16259:32583030,38541645:19629340 -g1,16259:32583030,38541645 -) -(1,16259:6630773,39207823:25952256,404226,9436 -h1,16259:6630773,39207823:0,0,0 -g1,16259:7579210,39207823 -g1,16259:7895356,39207823 -g1,16259:8211502,39207823 -g1,16259:8527648,39207823 -g1,16259:10108377,39207823 -g1,16259:10424523,39207823 -g1,16259:12005252,39207823 -g1,16259:12321398,39207823 -g1,16259:13902127,39207823 -h1,16259:15166710,39207823:0,0,0 -k1,16259:32583030,39207823:17416320 -g1,16259:32583030,39207823 -) -(1,16259:6630773,39874001:25952256,404226,6290 -h1,16259:6630773,39874001:0,0,0 -g1,16259:7579210,39874001 -g1,16259:7895356,39874001 -g1,16259:8211502,39874001 -g1,16259:10108377,39874001 -g1,16259:12005252,39874001 -g1,16259:13902127,39874001 -k1,16259:13902127,39874001:0 -h1,16259:15482856,39874001:0,0,0 -k1,16259:32583028,39874001:17100172 -g1,16259:32583028,39874001 -) -(1,16259:6630773,40540179:25952256,388497,9436 -h1,16259:6630773,40540179:0,0,0 -g1,16259:7579210,40540179 -g1,16259:8211502,40540179 -g1,16259:8527648,40540179 -g1,16259:8843794,40540179 -g1,16259:9476086,40540179 -g1,16259:9792232,40540179 -g1,16259:10108378,40540179 -g1,16259:10424524,40540179 -g1,16259:12005253,40540179 -g1,16259:12321399,40540179 -g1,16259:12637545,40540179 -g1,16259:13902128,40540179 -h1,16259:14850565,40540179:0,0,0 -k1,16259:32583029,40540179:17732464 -g1,16259:32583029,40540179 -) -(1,16259:6630773,41206357:25952256,388497,9436 -h1,16259:6630773,41206357:0,0,0 -g1,16259:7579210,41206357 -g1,16259:8211502,41206357 -g1,16259:8527648,41206357 -g1,16259:10108377,41206357 -g1,16259:10424523,41206357 -g1,16259:12005252,41206357 -g1,16259:12321398,41206357 -g1,16259:12637544,41206357 -g1,16259:12953690,41206357 -g1,16259:13902127,41206357 -g1,16259:14534419,41206357 -h1,16259:14850565,41206357:0,0,0 -k1,16259:32583029,41206357:17732464 -g1,16259:32583029,41206357 -) -] -) -g1,16260:32583029,41215793 -g1,16260:6630773,41215793 -g1,16260:6630773,41215793 -g1,16260:32583029,41215793 -g1,16260:32583029,41215793 -) -h1,16260:6630773,41412401:0,0,0 -(1,16264:6630773,42778177:25952256,513147,115847 -h1,16263:6630773,42778177:983040,0,0 -k1,16263:10563011,42778177:159330 -(1,16263:10563011,42778177:0,452978,115847 -r1,16263:14086683,42778177:3523672,568825,115847 -k1,16263:10563011,42778177:-3523672 -) -(1,16263:10563011,42778177:3523672,452978,115847 -k1,16263:10563011,42778177:3277 -h1,16263:14083406,42778177:0,411205,112570 -) -k1,16263:14246013,42778177:159330 -k1,16263:16147945,42778177:159330 -k1,16263:17620617,42778177:159330 -k1,16263:20459059,42778177:159330 -k1,16263:22012339,42778177:159329 -k1,16263:23190754,42778177:159330 -k1,16263:24363271,42778177:159330 -k1,16263:27497280,42778177:159330 -k1,16263:28342772,42778177:159330 -k1,16263:29521187,42778177:159330 -k1,16263:32583029,42778177:0 -) -(1,16264:6630773,43619665:25952256,513147,126483 -k1,16263:7989296,43619665:167078 -(1,16263:7989296,43619665:0,459977,115847 -r1,16263:11512968,43619665:3523672,575824,115847 -k1,16263:7989296,43619665:-3523672 -) -(1,16263:7989296,43619665:3523672,459977,115847 -k1,16263:7989296,43619665:3277 -h1,16263:11509691,43619665:0,411205,112570 -) -k1,16263:11680047,43619665:167079 -k1,16263:13589727,43619665:167078 -k1,16263:15070148,43619665:167079 -k1,16263:16631177,43619665:167078 -k1,16263:18361945,43619665:167079 -k1,16263:20343715,43619665:167078 -k1,16263:22418547,43619665:167079 -k1,16263:24418012,43619665:167078 -k1,16263:25290258,43619665:167079 -k1,16263:28301599,43619665:167078 -k1,16263:29278048,43619665:167079 -k1,16263:32583029,43619665:0 -) -(1,16264:6630773,44461153:25952256,505283,134348 -g1,16263:7481430,44461153 -(1,16263:7481430,44461153:0,459977,115847 -r1,16263:12411950,44461153:4930520,575824,115847 -k1,16263:7481430,44461153:-4930520 -) -(1,16263:7481430,44461153:4930520,459977,115847 -k1,16263:7481430,44461153:3277 -h1,16263:12408673,44461153:0,411205,112570 -) -g1,16263:12784849,44461153 -g1,16263:16500740,44461153 -g1,16263:19139874,44461153 -g1,16263:21822918,44461153 -k1,16264:32583029,44461153:8567932 -g1,16264:32583029,44461153 -) -] -(1,16266:32583029,45706769:0,0,0 -g1,16266:32583029,45706769 -) -) -] -(1,16266:6630773,47279633:25952256,0,0 -h1,16266:6630773,47279633:25952256,0,0 -) -] -h1,16266:4262630,4025873:0,0,0 +k1,16297:3078556,49800853:-34777008 +) +] +g1,16297:6630773,4812305 +g1,16297:6630773,4812305 +g1,16297:9744388,4812305 +g1,16297:11175694,4812305 +k1,16297:31387652,4812305:20211958 +) +) +] +[1,16297:6630773,45706769:25952256,40108032,0 +(1,16297:6630773,45706769:25952256,40108032,0 +(1,16297:6630773,45706769:0,0,0 +g1,16297:6630773,45706769 +) +[1,16297:6630773,45706769:25952256,40108032,0 +v1,16251:6630773,6254097:0,393216,0 +(1,16251:6630773,12533338:25952256,6672457,196608 +g1,16251:6630773,12533338 +g1,16251:6630773,12533338 +g1,16251:6434165,12533338 +(1,16251:6434165,12533338:0,6672457,196608 +r1,16251:32779637,12533338:26345472,6869065,196608 +k1,16251:6434165,12533338:-26345472 +) +(1,16251:6434165,12533338:26345472,6672457,196608 +[1,16251:6630773,12533338:25952256,6475849,0 +(1,16244:6630773,6461715:25952256,404226,82312 +g1,16244:7579210,6461715 +g1,16244:7895356,6461715 +g1,16244:9476085,6461715 +g1,16244:10108377,6461715 +k1,16244:32583029,6461715:18364758 +g1,16244:32583029,6461715 +) +(1,16244:6630773,7127893:25952256,404226,82312 +g1,16244:7579210,7127893 +g1,16244:7895356,7127893 +g1,16244:9476085,7127893 +g1,16244:10108377,7127893 +k1,16244:32583029,7127893:18364758 +g1,16244:32583029,7127893 +) +(1,16244:6630773,7794071:25952256,404226,82312 +g1,16244:7579210,7794071 +g1,16244:7895356,7794071 +g1,16244:9476085,7794071 +g1,16244:10108377,7794071 +k1,16244:32583029,7794071:18364758 +g1,16244:32583029,7794071 +) +(1,16244:6630773,8460249:25952256,404226,76021 +g1,16244:7579210,8460249 +g1,16244:7895356,8460249 +g1,16244:9476085,8460249 +g1,16244:10108377,8460249 +k1,16244:32583030,8460249:17732468 +g1,16244:32583030,8460249 +) +(1,16244:6630773,9126427:25952256,404226,76021 +g1,16244:7579210,9126427 +k1,16244:32583028,9126427:24687672 +g1,16244:32583028,9126427 +) +(1,16250:6630773,9792605:25952256,404226,6290 +(1,16244:6630773,9792605:0,0,0 +g1,16244:6630773,9792605 +g1,16244:6630773,9792605 +g1,16244:6303093,9792605 +(1,16244:6303093,9792605:0,0,0 +) +g1,16244:6630773,9792605 +) +g1,16250:7579210,9792605 +g1,16250:8211502,9792605 +g1,16250:8843794,9792605 +g1,16250:11372960,9792605 +g1,16250:12005252,9792605 +g1,16250:12637544,9792605 +h1,16250:12953690,9792605:0,0,0 +k1,16250:32583030,9792605:19629340 +g1,16250:32583030,9792605 +) +(1,16250:6630773,10458783:25952256,404226,9436 +h1,16250:6630773,10458783:0,0,0 +g1,16250:7579210,10458783 +g1,16250:7895356,10458783 +g1,16250:8211502,10458783 +g1,16250:8527648,10458783 +g1,16250:10108377,10458783 +g1,16250:10424523,10458783 +g1,16250:12005252,10458783 +g1,16250:12321398,10458783 +g1,16250:13902127,10458783 +h1,16250:15166710,10458783:0,0,0 +k1,16250:32583030,10458783:17416320 +g1,16250:32583030,10458783 +) +(1,16250:6630773,11124961:25952256,404226,6290 +h1,16250:6630773,11124961:0,0,0 +g1,16250:7579210,11124961 +g1,16250:7895356,11124961 +g1,16250:8211502,11124961 +g1,16250:10108377,11124961 +g1,16250:12005252,11124961 +g1,16250:13902127,11124961 +k1,16250:13902127,11124961:0 +h1,16250:15482856,11124961:0,0,0 +k1,16250:32583028,11124961:17100172 +g1,16250:32583028,11124961 +) +(1,16250:6630773,11791139:25952256,404226,9436 +h1,16250:6630773,11791139:0,0,0 +g1,16250:7579210,11791139 +g1,16250:8211502,11791139 +g1,16250:8527648,11791139 +g1,16250:8843794,11791139 +g1,16250:9476086,11791139 +g1,16250:9792232,11791139 +g1,16250:10108378,11791139 +g1,16250:10424524,11791139 +g1,16250:12005253,11791139 +g1,16250:12321399,11791139 +g1,16250:12637545,11791139 +g1,16250:13902128,11791139 +h1,16250:15482856,11791139:0,0,0 +k1,16250:32583028,11791139:17100172 +g1,16250:32583028,11791139 +) +(1,16250:6630773,12457317:25952256,404226,76021 +h1,16250:6630773,12457317:0,0,0 +g1,16250:7579210,12457317 +g1,16250:8211502,12457317 +g1,16250:8527648,12457317 +g1,16250:10108377,12457317 +g1,16250:10424523,12457317 +g1,16250:12005252,12457317 +g1,16250:12321398,12457317 +g1,16250:12637544,12457317 +g1,16250:12953690,12457317 +g1,16250:13902127,12457317 +g1,16250:15482856,12457317 +h1,16250:16747439,12457317:0,0,0 +k1,16250:32583029,12457317:15835590 +g1,16250:32583029,12457317 +) +] +) +g1,16251:32583029,12533338 +g1,16251:6630773,12533338 +g1,16251:6630773,12533338 +g1,16251:32583029,12533338 +g1,16251:32583029,12533338 +) +h1,16251:6630773,12729946:0,0,0 +(1,16255:6630773,14095722:25952256,513147,134348 +h1,16254:6630773,14095722:983040,0,0 +k1,16254:10282772,14095722:140580 +k1,16254:11082645,14095722:140581 +k1,16254:12242310,14095722:140580 +k1,16254:15853678,14095722:140581 +k1,16254:17728341,14095722:140580 +k1,16254:18484960,14095722:140581 +k1,16254:19608580,14095722:140580 +(1,16254:19608580,14095722:0,452978,122846 +r1,16254:27704506,14095722:8095926,575824,122846 +k1,16254:19608580,14095722:-8095926 +) +(1,16254:19608580,14095722:8095926,452978,122846 +k1,16254:19608580,14095722:3277 +h1,16254:27701229,14095722:0,411205,112570 +) +k1,16254:28018757,14095722:140581 +k1,16254:29027689,14095722:140580 +k1,16254:30698536,14095722:140581 +k1,16254:31490544,14095722:140580 +k1,16255:32583029,14095722:0 +) +(1,16255:6630773,14937210:25952256,513147,134348 +(1,16254:6630773,14937210:0,452978,115847 +r1,16254:11209581,14937210:4578808,568825,115847 +k1,16254:6630773,14937210:-4578808 +) +(1,16254:6630773,14937210:4578808,452978,115847 +k1,16254:6630773,14937210:3277 +h1,16254:11206304,14937210:0,411205,112570 +) +k1,16254:11589927,14937210:206676 +k1,16254:13682073,14937210:206675 +k1,16254:15900704,14937210:206676 +k1,16254:20449140,14937210:206676 +k1,16254:21315107,14937210:206675 +k1,16254:23429536,14937210:206676 +k1,16254:24782437,14937210:206676 +(1,16254:24782437,14937210:0,452978,115847 +r1,16254:29009533,14937210:4227096,568825,115847 +k1,16254:24782437,14937210:-4227096 +) +(1,16254:24782437,14937210:4227096,452978,115847 +k1,16254:24782437,14937210:3277 +h1,16254:29006256,14937210:0,411205,112570 +) +k1,16254:29389878,14937210:206675 +k1,16254:31923737,14937210:206676 +k1,16255:32583029,14937210:0 +) +(1,16255:6630773,15778698:25952256,513147,134348 +(1,16254:6630773,15778698:0,452978,115847 +r1,16254:10857869,15778698:4227096,568825,115847 +k1,16254:6630773,15778698:-4227096 +) +(1,16254:6630773,15778698:4227096,452978,115847 +k1,16254:6630773,15778698:3277 +h1,16254:10854592,15778698:0,411205,112570 +) +k1,16254:11212023,15778698:180484 +k1,16254:13277977,15778698:180483 +k1,16254:15859700,15778698:180484 +k1,16254:18951949,15778698:180484 +k1,16254:21451752,15778698:180484 +k1,16254:23366318,15778698:180483 +k1,16254:25579729,15778698:180484 +k1,16254:27468081,15778698:180484 +k1,16254:30583266,15778698:180483 +k1,16254:31379788,15778698:180484 +k1,16254:32583029,15778698:0 +) +(1,16255:6630773,16620186:25952256,505283,134348 +k1,16254:8160602,16620186:162748 +k1,16254:9342434,16620186:162747 +k1,16254:12829823,16620186:162748 +k1,16254:14780393,16620186:162748 +k1,16254:17917819,16620186:162747 +k1,16254:18696605,16620186:162748 +k1,16254:19878438,16620186:162748 +k1,16254:22279895,16620186:162747 +k1,16254:24308453,16620186:162748 +k1,16254:25002698,16620186:162748 +k1,16254:29906975,16620186:162747 +k1,16254:31261168,16620186:162748 +k1,16254:32583029,16620186:0 +) +(1,16255:6630773,17461674:25952256,513147,134348 +g1,16254:7489294,17461674 +g1,16254:8707608,17461674 +g1,16254:10772647,17461674 +g1,16254:13685067,17461674 +g1,16254:15278247,17461674 +g1,16254:15833336,17461674 +k1,16255:32583029,17461674:14005701 +g1,16255:32583029,17461674 +) +v1,16257:6630773,18652140:0,393216,0 +(1,16272:6630773,29590101:25952256,11331177,196608 +g1,16272:6630773,29590101 +g1,16272:6630773,29590101 +g1,16272:6434165,29590101 +(1,16272:6434165,29590101:0,11331177,196608 +r1,16272:32779637,29590101:26345472,11527785,196608 +k1,16272:6434165,29590101:-26345472 +) +(1,16272:6434165,29590101:26345472,11331177,196608 +[1,16272:6630773,29590101:25952256,11134569,0 +(1,16259:6630773,18866050:25952256,410518,107478 +(1,16258:6630773,18866050:0,0,0 +g1,16258:6630773,18866050 +g1,16258:6630773,18866050 +g1,16258:6303093,18866050 +(1,16258:6303093,18866050:0,0,0 +) +g1,16258:6630773,18866050 +) +k1,16259:6630773,18866050:0 +g1,16259:12005250,18866050 +g1,16259:12637542,18866050 +k1,16259:12637542,18866050:0 +h1,16259:22754203,18866050:0,0,0 +k1,16259:32583029,18866050:9828826 +g1,16259:32583029,18866050 +) +(1,16264:6630773,20187588:25952256,410518,101187 +g1,16263:7579210,20187588 +g1,16263:9792230,20187588 +g1,16263:11372959,20187588 +g1,16263:13585979,20187588 +k1,16263:32583029,20187588:14571010 +g1,16264:32583029,20187588 +) +(1,16264:6630773,20853766:25952256,404226,76021 +g1,16263:7579210,20853766 +k1,16263:32583030,20853766:23423092 +g1,16264:32583030,20853766 +) +(1,16264:6630773,21519944:25952256,404226,82312 +g1,16263:7579210,21519944 +g1,16263:7895356,21519944 +g1,16263:9476085,21519944 +g1,16263:10108377,21519944 +k1,16263:32583029,21519944:18364758 +g1,16264:32583029,21519944 +) +(1,16264:6630773,22186122:25952256,404226,82312 +g1,16263:7579210,22186122 +g1,16263:7895356,22186122 +g1,16263:9476085,22186122 +g1,16263:10108377,22186122 +k1,16263:32583029,22186122:18364758 +g1,16264:32583029,22186122 +) +(1,16264:6630773,22852300:25952256,404226,82312 +g1,16263:7579210,22852300 +g1,16263:7895356,22852300 +g1,16263:9476085,22852300 +g1,16263:10108377,22852300 +k1,16263:32583029,22852300:18364758 +g1,16264:32583029,22852300 +) +(1,16264:6630773,23518478:25952256,404226,76021 +g1,16263:7579210,23518478 +g1,16263:7895356,23518478 +g1,16263:9476085,23518478 +g1,16263:10108377,23518478 +k1,16263:32583030,23518478:17732468 +g1,16264:32583030,23518478 +) +(1,16264:6630773,24184656:25952256,404226,76021 +g1,16263:7579210,24184656 +k1,16264:32583028,24184656:24687672 +g1,16264:32583028,24184656 +) +(1,16265:6630773,24850834:25952256,410518,107478 +g1,16265:7579210,24850834 +g1,16265:10424521,24850834 +g1,16265:11056813,24850834 +g1,16265:13585979,24850834 +k1,16265:32583029,24850834:16467885 +g1,16265:32583029,24850834 +) +(1,16265:6630773,25517012:25952256,410518,101187 +g1,16265:7579210,25517012 +g1,16265:8843793,25517012 +g1,16265:10108376,25517012 +g1,16265:10424522,25517012 +g1,16265:13269833,25517012 +g1,16265:13585979,25517012 +g1,16265:13902125,25517012 +g1,16265:14218271,25517012 +g1,16265:16431291,25517012 +g1,16265:16747437,25517012 +g1,16265:17063583,25517012 +g1,16265:17379729,25517012 +g1,16265:17695875,25517012 +g1,16265:18012021,25517012 +g1,16265:18328167,25517012 +g1,16265:18644313,25517012 +g1,16265:18960459,25517012 +g1,16265:19276605,25517012 +g1,16265:19592751,25517012 +g1,16265:19908897,25517012 +g1,16265:20225043,25517012 +g1,16265:20541189,25517012 +g1,16265:20857335,25517012 +g1,16265:21173481,25517012 +g1,16265:21489627,25517012 +g1,16265:21805773,25517012 +g1,16265:22121919,25517012 +g1,16265:22438065,25517012 +g1,16265:22754211,25517012 +g1,16265:23070357,25517012 +g1,16265:23386503,25517012 +g1,16265:23702649,25517012 +g1,16265:24018795,25517012 +g1,16265:24334941,25517012 +g1,16265:24651087,25517012 +g1,16265:24967233,25517012 +k1,16265:32583029,25517012:6351213 +g1,16265:32583029,25517012 +) +(1,16265:6630773,26183190:25952256,404226,107478 +g1,16265:7579210,26183190 +g1,16265:7895356,26183190 +g1,16265:8527648,26183190 +g1,16265:8843794,26183190 +g1,16265:9792231,26183190 +g1,16265:10424523,26183190 +g1,16265:12953689,26183190 +g1,16265:13585981,26183190 +g1,16265:16115147,26183190 +k1,16265:32583029,26183190:6667366 +g1,16265:32583029,26183190 +) +(1,16271:6630773,26849368:25952256,404226,6290 +(1,16265:6630773,26849368:0,0,0 +g1,16265:6630773,26849368 +g1,16265:6630773,26849368 +g1,16265:6303093,26849368 +(1,16265:6303093,26849368:0,0,0 +) +g1,16265:6630773,26849368 +) +g1,16271:7579210,26849368 +g1,16271:8211502,26849368 +g1,16271:8843794,26849368 +g1,16271:11372960,26849368 +g1,16271:12005252,26849368 +g1,16271:12637544,26849368 +h1,16271:12953690,26849368:0,0,0 +k1,16271:32583030,26849368:19629340 +g1,16271:32583030,26849368 +) +(1,16271:6630773,27515546:25952256,404226,9436 +h1,16271:6630773,27515546:0,0,0 +g1,16271:7579210,27515546 +g1,16271:7895356,27515546 +g1,16271:8211502,27515546 +g1,16271:8527648,27515546 +g1,16271:10108377,27515546 +g1,16271:10424523,27515546 +g1,16271:12005252,27515546 +g1,16271:12321398,27515546 +g1,16271:13902127,27515546 +h1,16271:15166710,27515546:0,0,0 +k1,16271:32583030,27515546:17416320 +g1,16271:32583030,27515546 +) +(1,16271:6630773,28181724:25952256,404226,6290 +h1,16271:6630773,28181724:0,0,0 +g1,16271:7579210,28181724 +g1,16271:7895356,28181724 +g1,16271:8211502,28181724 +g1,16271:10108377,28181724 +g1,16271:12005252,28181724 +g1,16271:13902127,28181724 +k1,16271:13902127,28181724:0 +h1,16271:15482856,28181724:0,0,0 +k1,16271:32583028,28181724:17100172 +g1,16271:32583028,28181724 +) +(1,16271:6630773,28847902:25952256,404226,9436 +h1,16271:6630773,28847902:0,0,0 +g1,16271:7579210,28847902 +g1,16271:8211502,28847902 +g1,16271:8527648,28847902 +g1,16271:8843794,28847902 +g1,16271:9476086,28847902 +g1,16271:9792232,28847902 +g1,16271:10108378,28847902 +g1,16271:10424524,28847902 +g1,16271:12005253,28847902 +g1,16271:12321399,28847902 +g1,16271:12637545,28847902 +g1,16271:13902128,28847902 +h1,16271:15482856,28847902:0,0,0 +k1,16271:32583028,28847902:17100172 +g1,16271:32583028,28847902 +) +(1,16271:6630773,29514080:25952256,404226,76021 +h1,16271:6630773,29514080:0,0,0 +g1,16271:7579210,29514080 +g1,16271:8211502,29514080 +g1,16271:8527648,29514080 +g1,16271:10108377,29514080 +g1,16271:10424523,29514080 +g1,16271:12005252,29514080 +g1,16271:12321398,29514080 +g1,16271:12637544,29514080 +g1,16271:12953690,29514080 +g1,16271:13902127,29514080 +h1,16271:15482855,29514080:0,0,0 +k1,16271:32583029,29514080:17100174 +g1,16271:32583029,29514080 +) +] +) +g1,16272:32583029,29590101 +g1,16272:6630773,29590101 +g1,16272:6630773,29590101 +g1,16272:32583029,29590101 +g1,16272:32583029,29590101 +) +h1,16272:6630773,29786709:0,0,0 +(1,16276:6630773,31152485:25952256,505283,126483 +h1,16275:6630773,31152485:983040,0,0 +g1,16275:10602910,31152485 +(1,16275:10602910,31152485:0,452978,115847 +r1,16275:14830006,31152485:4227096,568825,115847 +k1,16275:10602910,31152485:-4227096 +) +(1,16275:10602910,31152485:4227096,452978,115847 +k1,16275:10602910,31152485:3277 +h1,16275:14826729,31152485:0,411205,112570 +) +g1,16275:15029235,31152485 +g1,16275:16622415,31152485 +g1,16275:18609466,31152485 +g1,16275:19494857,31152485 +g1,16275:20713171,31152485 +g1,16275:23800572,31152485 +g1,16275:25860368,31152485 +g1,16275:26711025,31152485 +g1,16275:27658020,31152485 +k1,16276:32583029,31152485:3238112 +g1,16276:32583029,31152485 +) +v1,16278:6630773,32342951:0,393216,0 +(1,16291:6630773,41215793:25952256,9266058,196608 +g1,16291:6630773,41215793 +g1,16291:6630773,41215793 +g1,16291:6434165,41215793 +(1,16291:6434165,41215793:0,9266058,196608 +r1,16291:32779637,41215793:26345472,9462666,196608 +k1,16291:6434165,41215793:-26345472 +) +(1,16291:6434165,41215793:26345472,9266058,196608 +[1,16291:6630773,41215793:25952256,9069450,0 +(1,16280:6630773,32556861:25952256,410518,107478 +(1,16279:6630773,32556861:0,0,0 +g1,16279:6630773,32556861 +g1,16279:6630773,32556861 +g1,16279:6303093,32556861 +(1,16279:6303093,32556861:0,0,0 +) +g1,16279:6630773,32556861 +) +k1,16280:6630773,32556861:0 +g1,16280:11689105,32556861 +g1,16280:12321397,32556861 +g1,16280:22754204,32556861 +g1,16280:24651078,32556861 +g1,16280:25283370,32556861 +g1,16280:25915662,32556861 +h1,16280:26547954,32556861:0,0,0 +k1,16280:32583029,32556861:6035075 +g1,16280:32583029,32556861 +) +(1,16284:6630773,33878399:25952256,410518,101187 +g1,16284:7579210,33878399 +g1,16284:9792230,33878399 +g1,16284:11372959,33878399 +g1,16284:13585979,33878399 +k1,16284:32583029,33878399:14571010 +g1,16284:32583029,33878399 +) +(1,16284:6630773,34544577:25952256,404226,76021 +g1,16284:7579210,34544577 +k1,16284:32583030,34544577:23423092 +g1,16284:32583030,34544577 +) +(1,16284:6630773,35210755:25952256,404226,82312 +g1,16284:7579210,35210755 +g1,16284:7895356,35210755 +g1,16284:9476085,35210755 +g1,16284:10108377,35210755 +k1,16284:32583029,35210755:18364758 +g1,16284:32583029,35210755 +) +(1,16284:6630773,35876933:25952256,404226,82312 +g1,16284:7579210,35876933 +g1,16284:7895356,35876933 +g1,16284:9476085,35876933 +g1,16284:10108377,35876933 +k1,16284:32583029,35876933:18364758 +g1,16284:32583029,35876933 +) +(1,16284:6630773,36543111:25952256,404226,82312 +g1,16284:7579210,36543111 +g1,16284:7895356,36543111 +g1,16284:9476085,36543111 +g1,16284:10108377,36543111 +k1,16284:32583029,36543111:18364758 +g1,16284:32583029,36543111 +) +(1,16284:6630773,37209289:25952256,404226,76021 +g1,16284:7579210,37209289 +g1,16284:7895356,37209289 +g1,16284:9476085,37209289 +g1,16284:10108377,37209289 +k1,16284:32583030,37209289:17732468 +g1,16284:32583030,37209289 +) +(1,16284:6630773,37875467:25952256,404226,76021 +g1,16284:7579210,37875467 +k1,16284:32583028,37875467:24687672 +g1,16284:32583028,37875467 +) +(1,16290:6630773,38541645:25952256,404226,6290 +(1,16284:6630773,38541645:0,0,0 +g1,16284:6630773,38541645 +g1,16284:6630773,38541645 +g1,16284:6303093,38541645 +(1,16284:6303093,38541645:0,0,0 +) +g1,16284:6630773,38541645 +) +g1,16290:7579210,38541645 +g1,16290:8211502,38541645 +g1,16290:8843794,38541645 +g1,16290:11372960,38541645 +g1,16290:12005252,38541645 +g1,16290:12637544,38541645 +h1,16290:12953690,38541645:0,0,0 +k1,16290:32583030,38541645:19629340 +g1,16290:32583030,38541645 +) +(1,16290:6630773,39207823:25952256,404226,9436 +h1,16290:6630773,39207823:0,0,0 +g1,16290:7579210,39207823 +g1,16290:7895356,39207823 +g1,16290:8211502,39207823 +g1,16290:8527648,39207823 +g1,16290:10108377,39207823 +g1,16290:10424523,39207823 +g1,16290:12005252,39207823 +g1,16290:12321398,39207823 +g1,16290:13902127,39207823 +h1,16290:15166710,39207823:0,0,0 +k1,16290:32583030,39207823:17416320 +g1,16290:32583030,39207823 +) +(1,16290:6630773,39874001:25952256,404226,6290 +h1,16290:6630773,39874001:0,0,0 +g1,16290:7579210,39874001 +g1,16290:7895356,39874001 +g1,16290:8211502,39874001 +g1,16290:10108377,39874001 +g1,16290:12005252,39874001 +g1,16290:13902127,39874001 +k1,16290:13902127,39874001:0 +h1,16290:15482856,39874001:0,0,0 +k1,16290:32583028,39874001:17100172 +g1,16290:32583028,39874001 +) +(1,16290:6630773,40540179:25952256,388497,9436 +h1,16290:6630773,40540179:0,0,0 +g1,16290:7579210,40540179 +g1,16290:8211502,40540179 +g1,16290:8527648,40540179 +g1,16290:8843794,40540179 +g1,16290:9476086,40540179 +g1,16290:9792232,40540179 +g1,16290:10108378,40540179 +g1,16290:10424524,40540179 +g1,16290:12005253,40540179 +g1,16290:12321399,40540179 +g1,16290:12637545,40540179 +g1,16290:13902128,40540179 +h1,16290:14850565,40540179:0,0,0 +k1,16290:32583029,40540179:17732464 +g1,16290:32583029,40540179 +) +(1,16290:6630773,41206357:25952256,388497,9436 +h1,16290:6630773,41206357:0,0,0 +g1,16290:7579210,41206357 +g1,16290:8211502,41206357 +g1,16290:8527648,41206357 +g1,16290:10108377,41206357 +g1,16290:10424523,41206357 +g1,16290:12005252,41206357 +g1,16290:12321398,41206357 +g1,16290:12637544,41206357 +g1,16290:12953690,41206357 +g1,16290:13902127,41206357 +g1,16290:14534419,41206357 +h1,16290:14850565,41206357:0,0,0 +k1,16290:32583029,41206357:17732464 +g1,16290:32583029,41206357 +) +] +) +g1,16291:32583029,41215793 +g1,16291:6630773,41215793 +g1,16291:6630773,41215793 +g1,16291:32583029,41215793 +g1,16291:32583029,41215793 +) +h1,16291:6630773,41412401:0,0,0 +(1,16295:6630773,42778177:25952256,513147,115847 +h1,16294:6630773,42778177:983040,0,0 +k1,16294:10563011,42778177:159330 +(1,16294:10563011,42778177:0,452978,115847 +r1,16294:14086683,42778177:3523672,568825,115847 +k1,16294:10563011,42778177:-3523672 +) +(1,16294:10563011,42778177:3523672,452978,115847 +k1,16294:10563011,42778177:3277 +h1,16294:14083406,42778177:0,411205,112570 +) +k1,16294:14246013,42778177:159330 +k1,16294:16147945,42778177:159330 +k1,16294:17620617,42778177:159330 +k1,16294:20459059,42778177:159330 +k1,16294:22012339,42778177:159329 +k1,16294:23190754,42778177:159330 +k1,16294:24363271,42778177:159330 +k1,16294:27497280,42778177:159330 +k1,16294:28342772,42778177:159330 +k1,16294:29521187,42778177:159330 +k1,16294:32583029,42778177:0 +) +(1,16295:6630773,43619665:25952256,513147,126483 +k1,16294:7989296,43619665:167078 +(1,16294:7989296,43619665:0,459977,115847 +r1,16294:11512968,43619665:3523672,575824,115847 +k1,16294:7989296,43619665:-3523672 +) +(1,16294:7989296,43619665:3523672,459977,115847 +k1,16294:7989296,43619665:3277 +h1,16294:11509691,43619665:0,411205,112570 +) +k1,16294:11680047,43619665:167079 +k1,16294:13589727,43619665:167078 +k1,16294:15070148,43619665:167079 +k1,16294:16631177,43619665:167078 +k1,16294:18361945,43619665:167079 +k1,16294:20343715,43619665:167078 +k1,16294:22418547,43619665:167079 +k1,16294:24418012,43619665:167078 +k1,16294:25290258,43619665:167079 +k1,16294:28301599,43619665:167078 +k1,16294:29278048,43619665:167079 +k1,16294:32583029,43619665:0 +) +(1,16295:6630773,44461153:25952256,505283,134348 +g1,16294:7481430,44461153 +(1,16294:7481430,44461153:0,459977,115847 +r1,16294:12411950,44461153:4930520,575824,115847 +k1,16294:7481430,44461153:-4930520 +) +(1,16294:7481430,44461153:4930520,459977,115847 +k1,16294:7481430,44461153:3277 +h1,16294:12408673,44461153:0,411205,112570 +) +g1,16294:12784849,44461153 +g1,16294:16500740,44461153 +g1,16294:19139874,44461153 +g1,16294:21822918,44461153 +k1,16295:32583029,44461153:8567932 +g1,16295:32583029,44461153 +) +] +(1,16297:32583029,45706769:0,0,0 +g1,16297:32583029,45706769 +) +) +] +(1,16297:6630773,47279633:25952256,0,0 +h1,16297:6630773,47279633:25952256,0,0 +) +] +h1,16297:4262630,4025873:0,0,0 ] !23910 }316 -Input:2459:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2460:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2461:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2462:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 +Input:2456:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2457:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2458:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2459:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {317 -[1,16313:4262630,47279633:28320399,43253760,0 -(1,16313:4262630,4025873:0,0,0 -[1,16313:-473657,4025873:25952256,0,0 -(1,16313:-473657,-710414:25952256,0,0 -h1,16313:-473657,-710414:0,0,0 -(1,16313:-473657,-710414:0,0,0 -(1,16313:-473657,-710414:0,0,0 -g1,16313:-473657,-710414 -(1,16313:-473657,-710414:65781,0,65781 -g1,16313:-407876,-710414 -[1,16313:-407876,-644633:0,0,0 +[1,16344:4262630,47279633:28320399,43253760,0 +(1,16344:4262630,4025873:0,0,0 +[1,16344:-473657,4025873:25952256,0,0 +(1,16344:-473657,-710414:25952256,0,0 +h1,16344:-473657,-710414:0,0,0 +(1,16344:-473657,-710414:0,0,0 +(1,16344:-473657,-710414:0,0,0 +g1,16344:-473657,-710414 +(1,16344:-473657,-710414:65781,0,65781 +g1,16344:-407876,-710414 +[1,16344:-407876,-644633:0,0,0 ] ) -k1,16313:-473657,-710414:-65781 +k1,16344:-473657,-710414:-65781 ) ) -k1,16313:25478599,-710414:25952256 -g1,16313:25478599,-710414 +k1,16344:25478599,-710414:25952256 +g1,16344:25478599,-710414 ) ] ) -[1,16313:6630773,47279633:25952256,43253760,0 -[1,16313:6630773,4812305:25952256,786432,0 -(1,16313:6630773,4812305:25952256,505283,126483 -(1,16313:6630773,4812305:25952256,505283,126483 -g1,16313:3078558,4812305 -[1,16313:3078558,4812305:0,0,0 -(1,16313:3078558,2439708:0,1703936,0 -k1,16313:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16313:2537886,2439708:1179648,16384,0 +[1,16344:6630773,47279633:25952256,43253760,0 +[1,16344:6630773,4812305:25952256,786432,0 +(1,16344:6630773,4812305:25952256,505283,126483 +(1,16344:6630773,4812305:25952256,505283,126483 +g1,16344:3078558,4812305 +[1,16344:3078558,4812305:0,0,0 +(1,16344:3078558,2439708:0,1703936,0 +k1,16344:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16344:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16313:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16344:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16313:3078558,4812305:0,0,0 -(1,16313:3078558,2439708:0,1703936,0 -g1,16313:29030814,2439708 -g1,16313:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16313:36151628,1915420:16384,1179648,0 +[1,16344:3078558,4812305:0,0,0 +(1,16344:3078558,2439708:0,1703936,0 +g1,16344:29030814,2439708 +g1,16344:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16344:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16313:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16344:37855564,2439708:1179648,16384,0 ) ) -k1,16313:3078556,2439708:-34777008 +k1,16344:3078556,2439708:-34777008 ) ] -[1,16313:3078558,4812305:0,0,0 -(1,16313:3078558,49800853:0,16384,2228224 -k1,16313:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16313:2537886,49800853:1179648,16384,0 +[1,16344:3078558,4812305:0,0,0 +(1,16344:3078558,49800853:0,16384,2228224 +k1,16344:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16344:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16313:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16344:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) -) -) -] -[1,16313:3078558,4812305:0,0,0 -(1,16313:3078558,49800853:0,16384,2228224 -g1,16313:29030814,49800853 -g1,16313:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16313:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16313:37855564,49800853:1179648,16384,0 -) -) -k1,16313:3078556,49800853:-34777008 -) -] -g1,16313:6630773,4812305 -k1,16313:25146660,4812305:17320510 -g1,16313:26880087,4812305 -g1,16313:29193507,4812305 -g1,16313:30603186,4812305 -) -) -] -[1,16313:6630773,45706769:25952256,40108032,0 -(1,16313:6630773,45706769:25952256,40108032,0 -(1,16313:6630773,45706769:0,0,0 -g1,16313:6630773,45706769 -) -[1,16313:6630773,45706769:25952256,40108032,0 -v1,16266:6630773,6254097:0,393216,0 -(1,16267:6630773,11064593:25952256,5203712,616038 -g1,16267:6630773,11064593 -(1,16267:6630773,11064593:25952256,5203712,616038 -(1,16267:6630773,11680631:25952256,5819750,0 -[1,16267:6630773,11680631:25952256,5819750,0 -(1,16267:6630773,11654417:25952256,5767322,0 -r1,16267:6656987,11654417:26214,5767322,0 -[1,16267:6656987,11654417:25899828,5767322,0 -(1,16267:6656987,11064593:25899828,4587674,0 -[1,16267:7246811,11064593:24720180,4587674,0 -(1,16267:7246811,7564293:24720180,1087374,134348 -k1,16266:8750868,7564293:294354 -k1,16266:10194069,7564293:294355 -k1,16266:11507508,7564293:294354 -k1,16266:14395123,7564293:294355 -(1,16266:14395123,7564293:0,452978,115847 -r1,16267:16160236,7564293:1765113,568825,115847 -k1,16266:14395123,7564293:-1765113 -) -(1,16266:14395123,7564293:1765113,452978,115847 -k1,16266:14395123,7564293:3277 -h1,16266:16156959,7564293:0,411205,112570 -) -k1,16266:16454590,7564293:294354 -k1,16266:19774742,7564293:294355 -k1,16266:20720524,7564293:294354 -k1,16266:22427179,7564293:294354 -k1,16266:23740619,7564293:294355 -k1,16266:26696390,7564293:294354 -k1,16266:28304087,7564293:294355 -k1,16266:30111667,7564293:294354 -k1,16266:31966991,7564293:0 -) -(1,16267:7246811,8405781:24720180,513147,134348 -k1,16266:9717191,8405781:260506 -k1,16266:11436527,8405781:260505 -k1,16266:13027414,8405781:260506 -k1,16266:14774931,8405781:260505 -k1,16266:15853326,8405781:260506 -k1,16266:19531534,8405781:260505 -k1,16266:21999293,8405781:260506 -k1,16266:24531276,8405781:260505 -k1,16266:26729026,8405781:260506 -k1,16266:28121993,8405781:260505 -k1,16266:29770552,8405781:260506 -k1,16266:31201530,8405781:260505 -k1,16267:31966991,8405781:0 -) -(1,16267:7246811,9247269:24720180,505283,134348 -k1,16266:8519520,9247269:213647 -k1,16266:10063548,9247269:213647 -k1,16266:10928624,9247269:213648 -k1,16266:13981291,9247269:213647 -k1,16266:15892976,9247269:213647 -k1,16266:17600189,9247269:213647 -k1,16266:19751081,9247269:213648 -k1,16266:20956288,9247269:213647 -k1,16266:23372600,9247269:213647 -k1,16266:24347775,9247269:213647 -k1,16266:26700518,9247269:213648 -k1,16266:29922268,9247269:213647 -k1,16266:30763750,9247269:213647 -k1,16266:31966991,9247269:0 -) -(1,16267:7246811,10088757:24720180,505283,134348 -k1,16266:9048013,10088757:260451 -k1,16266:9994626,10088757:260451 -k1,16266:12814258,10088757:260451 -k1,16266:14487010,10088757:260451 -k1,16266:16136824,10088757:260451 -k1,16266:17388835,10088757:260451 -k1,16266:18715557,10088757:260451 -k1,16266:21105273,10088757:260451 -k1,16266:25563960,10088757:260451 -k1,16266:26585939,10088757:260451 -k1,16266:28453333,10088757:260451 -k1,16266:29396669,10088757:260451 -k1,16266:31966991,10088757:0 -) -(1,16267:7246811,10930245:24720180,513147,134348 -g1,16266:10655338,10930245 -g1,16266:13630672,10930245 -g1,16266:15651802,10930245 -g1,16266:16870116,10930245 -g1,16266:19848072,10930245 -g1,16266:22189018,10930245 -g1,16266:23335898,10930245 -g1,16266:26098895,10930245 -g1,16266:27687487,10930245 -k1,16267:31966991,10930245:2095189 -g1,16267:31966991,10930245 -) -] -) -] -r1,16267:32583029,11654417:26214,5767322,0 -) -] -) -) -g1,16267:32583029,11064593 -) -h1,16267:6630773,11680631:0,0,0 -v1,16270:6630773,13046407:0,393216,0 -(1,16313:6630773,38011306:25952256,25358115,589824 -g1,16313:6630773,38011306 -(1,16313:6630773,38011306:25952256,25358115,589824 -(1,16313:6630773,38601130:25952256,25947939,0 -[1,16313:6630773,38601130:25952256,25947939,0 -(1,16313:6630773,38601130:25952256,25921725,0 -r1,16313:6656987,38601130:26214,25921725,0 -[1,16313:6656987,38601130:25899828,25921725,0 -(1,16313:6656987,38011306:25899828,24742077,0 -[1,16313:7246811,38011306:24720180,24742077,0 -(1,16271:7246811,14431114:24720180,1161885,196608 -(1,16270:7246811,14431114:0,1161885,196608 -r1,16313:8794447,14431114:1547636,1358493,196608 -k1,16270:7246811,14431114:-1547636 -) -(1,16270:7246811,14431114:1547636,1161885,196608 -) -k1,16270:8945608,14431114:151161 -k1,16270:10293456,14431114:151161 -k1,16270:13470415,14431114:151162 -k1,16270:15189197,14431114:151161 -k1,16270:16289319,14431114:151161 -k1,16270:18151624,14431114:151161 -k1,16270:19715087,14431114:151162 -k1,16270:20885333,14431114:151161 -k1,16270:22919343,14431114:151161 -k1,16270:24053544,14431114:151161 -k1,16270:24890868,14431114:151162 -k1,16270:26268208,14431114:151161 -k1,16270:28462126,14431114:151161 -k1,16270:31966991,14431114:0 -) -(1,16271:7246811,15272602:24720180,513147,134348 -k1,16270:8109967,15272602:211728 -k1,16270:10118692,15272602:211728 -k1,16270:11349505,15272602:211728 -k1,16270:13116402,15272602:211728 -k1,16270:13987422,15272602:211728 -k1,16270:15218235,15272602:211728 -k1,16270:18143155,15272602:211729 -k1,16270:19037768,15272602:211728 -k1,16270:20758135,15272602:211728 -k1,16270:24333826,15272602:211728 -k1,16270:25926398,15272602:211728 -k1,16270:26669623,15272602:211728 -k1,16270:29232127,15272602:211728 -k1,16270:30516024,15272602:211728 -k1,16270:31966991,15272602:0 -) -(1,16271:7246811,16114090:24720180,513147,134348 -k1,16270:8362281,16114090:167819 -k1,16270:9884074,16114090:167819 -k1,16270:11622791,16114090:167819 -k1,16270:13016789,16114090:167819 -k1,16270:14671620,16114090:167819 -k1,16270:16036126,16114090:167819 -k1,16270:19229741,16114090:167818 -k1,16270:20965181,16114090:167819 -k1,16270:23156096,16114090:167819 -k1,16270:24736216,16114090:167819 -k1,16270:26279636,16114090:167819 -k1,16270:27466540,16114090:167819 -k1,16270:28706528,16114090:167819 -k1,16270:30468183,16114090:167819 -k1,16270:31966991,16114090:0 -) -(1,16271:7246811,16955578:24720180,513147,134348 -k1,16270:8202489,16955578:194150 -k1,16270:10662219,16955578:194150 -k1,16270:11804021,16955578:194151 -k1,16270:14959088,16955578:194150 -k1,16270:16344683,16955578:194150 -k1,16270:17972761,16955578:194150 -k1,16270:20118574,16955578:194151 -k1,16270:22521287,16955578:194150 -k1,16270:24127738,16955578:194150 -k1,16270:25340973,16955578:194150 -k1,16270:27417973,16955578:194151 -k1,16270:28925465,16955578:194150 -k1,16270:31966991,16955578:0 -) -(1,16271:7246811,17797066:24720180,513147,134348 -k1,16270:8823960,17797066:292643 -k1,16270:10135689,17797066:292644 -k1,16270:12993411,17797066:292643 -k1,16270:16581861,17797066:292644 -k1,16270:18160320,17797066:292643 -k1,16270:20216537,17797066:292643 -k1,16270:21160609,17797066:292644 -k1,16270:22472337,17797066:292643 -k1,16270:26048990,17797066:292644 -k1,16270:27000925,17797066:292643 -k1,16270:28312653,17797066:292643 -k1,16270:29762007,17797066:292644 -k1,16270:31435494,17797066:292643 -k1,16270:31966991,17797066:0 -) -(1,16271:7246811,18638554:24720180,513147,126483 -k1,16270:9043044,18638554:146036 -k1,16270:11915378,18638554:146036 -k1,16270:13133583,18638554:146036 -k1,16270:16302139,18638554:146036 -k1,16270:18195365,18638554:146036 -k1,16270:18969236,18638554:146036 -k1,16270:21148855,18638554:146037 -k1,16270:23958930,18638554:146036 -k1,16270:24764258,18638554:146036 -k1,16270:27107060,18638554:146036 -k1,16270:27608956,18638554:146036 -k1,16270:29889500,18638554:146036 -k1,16270:31966991,18638554:0 -) -(1,16271:7246811,19480042:24720180,513147,134348 -k1,16270:8124993,19480042:226754 -k1,16270:11160621,19480042:226755 -k1,16270:13651644,19480042:226754 -k1,16270:15612482,19480042:226755 -k1,16270:17046409,19480042:226754 -k1,16270:18971202,19480042:226755 -k1,16270:22014038,19480042:226754 -k1,16270:23232352,19480042:226754 -k1,16270:24075145,19480042:226755 -k1,16270:27563626,19480042:226754 -k1,16270:29529707,19480042:226755 -k1,16270:30947906,19480042:226754 -k1,16270:31966991,19480042:0 -) -(1,16271:7246811,20321530:24720180,513147,134348 -k1,16270:8920005,20321530:269413 -k1,16270:11334410,20321530:269412 -k1,16270:14381894,20321530:269413 -k1,16270:17913034,20321530:269413 -k1,16270:18798484,20321530:269412 -k1,16270:20086982,20321530:269413 -k1,16270:21855202,20321530:269412 -k1,16270:23993046,20321530:269413 -k1,16270:26006372,20321530:269413 -k1,16270:27789010,20321530:269412 -k1,16270:29006074,20321530:269413 -k1,16270:31966991,20321530:0 -) -(1,16271:7246811,21163018:24720180,513147,134348 -k1,16270:8609258,21163018:290278 -k1,16270:10102777,21163018:290278 -k1,16270:11760135,21163018:290277 -k1,16270:14025668,21163018:290278 -k1,16270:14967374,21163018:290278 -k1,16270:16179088,21163018:290278 -k1,16270:17082128,21163018:290278 -k1,16270:18391490,21163018:290277 -k1,16270:20107176,21163018:290278 -k1,16270:21056746,21163018:290278 -k1,16270:23604739,21163018:290278 -k1,16270:26877559,21163018:290277 -k1,16270:29921004,21163018:290278 -k1,16270:30681175,21163018:290278 -k1,16270:31966991,21163018:0 -) -(1,16271:7246811,22004506:24720180,513147,122846 -k1,16270:9532596,22004506:217469 -k1,16270:11034571,22004506:217469 -k1,16270:11868078,22004506:217469 -k1,16270:13782929,22004506:217469 -k1,16270:15698436,22004506:217469 -k1,16270:16686608,22004506:217469 -k1,16270:20096991,22004506:217469 -k1,16270:21994803,22004506:217469 -k1,16270:23725498,22004506:217469 -(1,16270:23725498,22004506:0,414482,122846 -r1,16313:26897458,22004506:3171960,537328,122846 -k1,16270:23725498,22004506:-3171960 -) -(1,16270:23725498,22004506:3171960,414482,122846 -k1,16270:23725498,22004506:3277 -h1,16270:26894181,22004506:0,411205,112570 -) -k1,16270:27114927,22004506:217469 -k1,16270:28831204,22004506:217469 -k1,16270:31219225,22004506:217469 -k1,16270:31966991,22004506:0 -) -(1,16271:7246811,22845994:24720180,513147,134348 -k1,16270:10604339,22845994:196727 -k1,16270:11452495,22845994:196728 -k1,16270:14443022,22845994:196727 -k1,16270:16966932,22845994:196727 -k1,16270:17822951,22845994:196727 -k1,16270:21020573,22845994:196728 -k1,16270:21573160,22845994:196727 -k1,16270:24152776,22845994:196727 -k1,16270:25008795,22845994:196727 -k1,16270:28180202,22845994:196728 -k1,16270:30573040,22845994:196727 -k1,16270:31966991,22845994:0 -) -(1,16271:7246811,23687482:24720180,513147,134348 -k1,16270:8958086,23687482:277347 -k1,16270:9650199,23687482:277270 -k1,16270:13127014,23687482:277347 -k1,16270:14607602,23687482:277347 -k1,16270:16565293,23687482:277348 -k1,16270:17374137,23687482:277347 -k1,16270:20330597,23687482:277348 -k1,16270:21294106,23687482:277347 -k1,16270:21927314,23687482:277348 -k1,16270:24824790,23687482:277347 -(1,16270:24824790,23687482:0,414482,115847 -r1,16313:25534768,23687482:709978,530329,115847 -k1,16270:24824790,23687482:-709978 -) -(1,16270:24824790,23687482:709978,414482,115847 -k1,16270:24824790,23687482:3277 -h1,16270:25531491,23687482:0,411205,112570 -) -k1,16270:25812116,23687482:277348 -k1,16270:27483414,23687482:277347 -k1,16270:28116622,23687482:277348 -k1,16270:31137961,23687482:277347 -k1,16270:31966991,23687482:0 -) -(1,16271:7246811,24528970:24720180,513147,126483 -k1,16270:11481150,24528970:201253 -k1,16270:12885645,24528970:201254 -k1,16270:13955250,24528970:201253 -k1,16270:15288966,24528970:201254 -k1,16270:18804375,24528970:201253 -k1,16270:21157831,24528970:201254 -(1,16270:21157831,24528970:0,414482,122846 -r1,16313:24329791,24528970:3171960,537328,122846 -k1,16270:21157831,24528970:-3171960 -) -(1,16270:21157831,24528970:3171960,414482,122846 -k1,16270:21157831,24528970:3277 -h1,16270:24326514,24528970:0,411205,112570 -) -k1,16270:24531044,24528970:201253 -k1,16270:26299919,24528970:201254 -k1,16270:27289570,24528970:201253 -k1,16270:29756404,24528970:201254 -k1,16270:30682485,24528970:201253 -k1,16270:31966991,24528970:0 -) -(1,16271:7246811,25370458:24720180,513147,134348 -g1,16270:8314392,25370458 -g1,16270:9617903,25370458 -g1,16270:10909617,25370458 -g1,16270:11879549,25370458 -g1,16270:14740195,25370458 -g1,16270:15922464,25370458 -g1,16270:17497294,25370458 -g1,16270:18052383,25370458 -g1,16270:19384730,25370458 -g1,16270:21082767,25370458 -g1,16270:21898034,25370458 -k1,16271:31966991,25370458:7882021 -g1,16271:31966991,25370458 -) -v1,16275:7246811,26560924:0,393216,0 -(1,16290:7246811,36766122:24720180,10598414,196608 -g1,16290:7246811,36766122 -g1,16290:7246811,36766122 -g1,16290:7050203,36766122 -(1,16290:7050203,36766122:0,10598414,196608 -r1,16313:32163599,36766122:25113396,10795022,196608 -k1,16290:7050203,36766122:-25113396 -) -(1,16290:7050203,36766122:25113396,10598414,196608 -[1,16290:7246811,36766122:24720180,10401806,0 -(1,16277:7246811,26774834:24720180,410518,107478 -(1,16276:7246811,26774834:0,0,0 -g1,16276:7246811,26774834 -g1,16276:7246811,26774834 -g1,16276:6919131,26774834 -(1,16276:6919131,26774834:0,0,0 -) -g1,16276:7246811,26774834 -) -k1,16277:7246811,26774834:0 -g1,16277:12621288,26774834 -g1,16277:13253580,26774834 -k1,16277:13253580,26774834:0 -h1,16277:23686387,26774834:0,0,0 -k1,16277:31966991,26774834:8280604 -g1,16277:31966991,26774834 -) -(1,16281:7246811,28096372:24720180,410518,101187 -g1,16281:8195248,28096372 -g1,16281:10408268,28096372 -g1,16281:11988997,28096372 -g1,16281:14202017,28096372 -k1,16281:31966991,28096372:13338934 -g1,16281:31966991,28096372 -) -(1,16281:7246811,28762550:24720180,404226,76021 -g1,16281:8195248,28762550 -k1,16281:31966992,28762550:22191016 -g1,16281:31966992,28762550 -) -(1,16281:7246811,29428728:24720180,404226,82312 -g1,16281:8195248,29428728 -g1,16281:8511394,29428728 -g1,16281:10092123,29428728 -g1,16281:10724415,29428728 -k1,16281:31966991,29428728:16184245 -g1,16281:31966991,29428728 -) -(1,16281:7246811,30094906:24720180,404226,82312 -g1,16281:8195248,30094906 -g1,16281:8511394,30094906 -g1,16281:10092123,30094906 -g1,16281:10724415,30094906 -k1,16281:31966991,30094906:17132682 -g1,16281:31966991,30094906 -) -(1,16281:7246811,30761084:24720180,404226,82312 -g1,16281:8195248,30761084 -g1,16281:8511394,30761084 -g1,16281:10092123,30761084 -g1,16281:10724415,30761084 -k1,16281:31966991,30761084:17132682 -g1,16281:31966991,30761084 -) -(1,16281:7246811,31427262:24720180,404226,76021 -g1,16281:8195248,31427262 -g1,16281:8511394,31427262 -g1,16281:10092123,31427262 -g1,16281:10724415,31427262 -k1,16281:31966991,31427262:16500391 -g1,16281:31966991,31427262 -) -(1,16281:7246811,32093440:24720180,404226,76021 -g1,16281:8195248,32093440 -k1,16281:31966990,32093440:23455596 -g1,16281:31966990,32093440 -) -(1,16289:7246811,32759618:24720180,404226,6290 -(1,16281:7246811,32759618:0,0,0 -g1,16281:7246811,32759618 -g1,16281:7246811,32759618 -g1,16281:6919131,32759618 -(1,16281:6919131,32759618:0,0,0 -) -g1,16281:7246811,32759618 -) -g1,16289:8195248,32759618 -g1,16289:8827540,32759618 -g1,16289:9459832,32759618 -g1,16289:11988998,32759618 -g1,16289:12621290,32759618 -g1,16289:13253582,32759618 -h1,16289:13569728,32759618:0,0,0 -k1,16289:31966992,32759618:18397264 -g1,16289:31966992,32759618 -) -(1,16289:7246811,33425796:24720180,404226,9436 -h1,16289:7246811,33425796:0,0,0 -g1,16289:8195248,33425796 -g1,16289:8511394,33425796 -g1,16289:8827540,33425796 -g1,16289:10408269,33425796 -g1,16289:10724415,33425796 -g1,16289:11040561,33425796 -g1,16289:12621290,33425796 -g1,16289:12937436,33425796 -g1,16289:14518165,33425796 -h1,16289:15782748,33425796:0,0,0 -k1,16289:31966991,33425796:16184243 -g1,16289:31966991,33425796 -) -(1,16289:7246811,34091974:24720180,404226,6290 -h1,16289:7246811,34091974:0,0,0 -g1,16289:8195248,34091974 -g1,16289:8511394,34091974 -g1,16289:8827540,34091974 -g1,16289:10724415,34091974 -g1,16289:12621290,34091974 -g1,16289:14518165,34091974 -k1,16289:14518165,34091974:0 -h1,16289:16098894,34091974:0,0,0 -k1,16289:31966991,34091974:15868097 -g1,16289:31966991,34091974 -) -(1,16289:7246811,34758152:24720180,388497,9436 -h1,16289:7246811,34758152:0,0,0 -g1,16289:8195248,34758152 -g1,16289:8827540,34758152 -g1,16289:10092123,34758152 -g1,16289:10408269,34758152 -g1,16289:10724415,34758152 -g1,16289:11040561,34758152 -g1,16289:12621290,34758152 -g1,16289:12937436,34758152 -g1,16289:13253582,34758152 -g1,16289:14518165,34758152 -h1,16289:15466602,34758152:0,0,0 -k1,16289:31966991,34758152:16500389 -g1,16289:31966991,34758152 -) -(1,16289:7246811,35424330:24720180,388497,9436 -h1,16289:7246811,35424330:0,0,0 -g1,16289:8195248,35424330 -g1,16289:8827540,35424330 -g1,16289:10092123,35424330 -g1,16289:10408269,35424330 -g1,16289:10724415,35424330 -g1,16289:11040561,35424330 -g1,16289:12621290,35424330 -g1,16289:12937436,35424330 -g1,16289:13253582,35424330 -g1,16289:13569728,35424330 -g1,16289:14518165,35424330 -h1,16289:15466602,35424330:0,0,0 -k1,16289:31966991,35424330:16500389 -g1,16289:31966991,35424330 -) -(1,16289:7246811,36090508:24720180,388497,9436 -h1,16289:7246811,36090508:0,0,0 -g1,16289:8195248,36090508 -g1,16289:8827540,36090508 -g1,16289:10408269,36090508 -g1,16289:10724415,36090508 -g1,16289:11040561,36090508 -g1,16289:12621290,36090508 -g1,16289:12937436,36090508 -g1,16289:13253582,36090508 -g1,16289:13569728,36090508 -g1,16289:14518165,36090508 -h1,16289:15466602,36090508:0,0,0 -k1,16289:31966991,36090508:16500389 -g1,16289:31966991,36090508 -) -(1,16289:7246811,36756686:24720180,404226,9436 -h1,16289:7246811,36756686:0,0,0 -g1,16289:8195248,36756686 -g1,16289:8827540,36756686 -g1,16289:9459832,36756686 -g1,16289:9775978,36756686 -g1,16289:10092124,36756686 -g1,16289:10408270,36756686 -g1,16289:10724416,36756686 -g1,16289:11040562,36756686 -g1,16289:11988999,36756686 -g1,16289:12305145,36756686 -g1,16289:12621291,36756686 -g1,16289:12937437,36756686 -g1,16289:14518166,36756686 -h1,16289:15466603,36756686:0,0,0 -k1,16289:31966991,36756686:16500388 -g1,16289:31966991,36756686 -) -] -) -g1,16290:31966991,36766122 -g1,16290:7246811,36766122 -g1,16290:7246811,36766122 -g1,16290:31966991,36766122 -g1,16290:31966991,36766122 -) -h1,16290:7246811,36962730:0,0,0 -] -) -] -r1,16313:32583029,38601130:26214,25921725,0 -) -] -) -) -g1,16313:32583029,38011306 -) -] -(1,16313:32583029,45706769:0,0,0 -g1,16313:32583029,45706769 -) -) -] -(1,16313:6630773,47279633:25952256,0,0 -h1,16313:6630773,47279633:25952256,0,0 -) -] -h1,16313:4262630,4025873:0,0,0 -] -!20693 +) +) +] +[1,16344:3078558,4812305:0,0,0 +(1,16344:3078558,49800853:0,16384,2228224 +g1,16344:29030814,49800853 +g1,16344:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16344:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16344:37855564,49800853:1179648,16384,0 +) +) +k1,16344:3078556,49800853:-34777008 +) +] +g1,16344:6630773,4812305 +k1,16344:25146660,4812305:17320510 +g1,16344:26880087,4812305 +g1,16344:29193507,4812305 +g1,16344:30603186,4812305 +) +) +] +[1,16344:6630773,45706769:25952256,40108032,0 +(1,16344:6630773,45706769:25952256,40108032,0 +(1,16344:6630773,45706769:0,0,0 +g1,16344:6630773,45706769 +) +[1,16344:6630773,45706769:25952256,40108032,0 +v1,16297:6630773,6254097:0,393216,0 +(1,16298:6630773,11064593:25952256,5203712,616038 +g1,16298:6630773,11064593 +(1,16298:6630773,11064593:25952256,5203712,616038 +(1,16298:6630773,11680631:25952256,5819750,0 +[1,16298:6630773,11680631:25952256,5819750,0 +(1,16298:6630773,11654417:25952256,5767322,0 +r1,16298:6656987,11654417:26214,5767322,0 +[1,16298:6656987,11654417:25899828,5767322,0 +(1,16298:6656987,11064593:25899828,4587674,0 +[1,16298:7246811,11064593:24720180,4587674,0 +(1,16298:7246811,7564293:24720180,1087374,134348 +k1,16297:8750868,7564293:294354 +k1,16297:10194069,7564293:294355 +k1,16297:11507508,7564293:294354 +k1,16297:14395123,7564293:294355 +(1,16297:14395123,7564293:0,452978,115847 +r1,16298:16160236,7564293:1765113,568825,115847 +k1,16297:14395123,7564293:-1765113 +) +(1,16297:14395123,7564293:1765113,452978,115847 +k1,16297:14395123,7564293:3277 +h1,16297:16156959,7564293:0,411205,112570 +) +k1,16297:16454590,7564293:294354 +k1,16297:19774742,7564293:294355 +k1,16297:20720524,7564293:294354 +k1,16297:22427179,7564293:294354 +k1,16297:23740619,7564293:294355 +k1,16297:26696390,7564293:294354 +k1,16297:28304087,7564293:294355 +k1,16297:30111667,7564293:294354 +k1,16297:31966991,7564293:0 +) +(1,16298:7246811,8405781:24720180,513147,134348 +k1,16297:9646685,8405781:190000 +k1,16297:11295515,8405781:189999 +k1,16297:12815896,8405781:190000 +k1,16297:14492908,8405781:190000 +k1,16297:15500797,8405781:190000 +k1,16297:19108499,8405781:189999 +k1,16297:21505752,8405781:190000 +k1,16297:23967230,8405781:190000 +k1,16297:26094474,8405781:190000 +k1,16297:27416935,8405781:189999 +k1,16297:28994988,8405781:190000 +k1,16297:30355461,8405781:190000 +k1,16297:31966991,8405781:0 +) +(1,16298:7246811,9247269:24720180,505283,134348 +k1,16297:8753786,9247269:176594 +k1,16297:9581808,9247269:176594 +k1,16297:12597423,9247269:176595 +k1,16297:14472055,9247269:176594 +k1,16297:16142215,9247269:176594 +k1,16297:18256053,9247269:176594 +k1,16297:19424208,9247269:176595 +k1,16297:21803467,9247269:176594 +k1,16297:22741589,9247269:176594 +k1,16297:25057278,9247269:176594 +k1,16297:28241976,9247269:176595 +k1,16297:29046405,9247269:176594 +k1,16297:30426240,9247269:176594 +k1,16297:31966991,9247269:0 +) +(1,16298:7246811,10088757:24720180,505283,134348 +k1,16297:8195936,10088757:262963 +k1,16297:11018080,10088757:262963 +k1,16297:12693345,10088757:262964 +k1,16297:14345671,10088757:262963 +k1,16297:15600194,10088757:262963 +k1,16297:16929428,10088757:262963 +k1,16297:19321656,10088757:262963 +k1,16297:23782855,10088757:262963 +k1,16297:24807347,10088757:262964 +k1,16297:26677253,10088757:262963 +k1,16297:27623101,10088757:262963 +k1,16297:30456386,10088757:262963 +k1,16298:31966991,10088757:0 +) +(1,16298:7246811,10930245:24720180,513147,134348 +g1,16297:9357725,10930245 +g1,16297:12333059,10930245 +g1,16297:14354189,10930245 +g1,16297:15572503,10930245 +g1,16297:18550459,10930245 +g1,16297:20891405,10930245 +g1,16297:22038285,10930245 +g1,16297:24801282,10930245 +g1,16297:26389874,10930245 +k1,16298:31966991,10930245:3392802 +g1,16298:31966991,10930245 +) +] +) +] +r1,16298:32583029,11654417:26214,5767322,0 +) +] +) +) +g1,16298:32583029,11064593 +) +h1,16298:6630773,11680631:0,0,0 +v1,16301:6630773,13046407:0,393216,0 +(1,16344:6630773,38011306:25952256,25358115,589824 +g1,16344:6630773,38011306 +(1,16344:6630773,38011306:25952256,25358115,589824 +(1,16344:6630773,38601130:25952256,25947939,0 +[1,16344:6630773,38601130:25952256,25947939,0 +(1,16344:6630773,38601130:25952256,25921725,0 +r1,16344:6656987,38601130:26214,25921725,0 +[1,16344:6656987,38601130:25899828,25921725,0 +(1,16344:6656987,38011306:25899828,24742077,0 +[1,16344:7246811,38011306:24720180,24742077,0 +(1,16302:7246811,14431114:24720180,1161885,196608 +(1,16301:7246811,14431114:0,1161885,196608 +r1,16344:8794447,14431114:1547636,1358493,196608 +k1,16301:7246811,14431114:-1547636 +) +(1,16301:7246811,14431114:1547636,1161885,196608 +) +k1,16301:8945608,14431114:151161 +k1,16301:10293456,14431114:151161 +k1,16301:13470415,14431114:151162 +k1,16301:15189197,14431114:151161 +k1,16301:16289319,14431114:151161 +k1,16301:18151624,14431114:151161 +k1,16301:19715087,14431114:151162 +k1,16301:20885333,14431114:151161 +k1,16301:22919343,14431114:151161 +k1,16301:24053544,14431114:151161 +k1,16301:24890868,14431114:151162 +k1,16301:26268208,14431114:151161 +k1,16301:28462126,14431114:151161 +k1,16301:31966991,14431114:0 +) +(1,16302:7246811,15272602:24720180,513147,134348 +k1,16301:8109967,15272602:211728 +k1,16301:10118692,15272602:211728 +k1,16301:11349505,15272602:211728 +k1,16301:13116402,15272602:211728 +k1,16301:13987422,15272602:211728 +k1,16301:15218235,15272602:211728 +k1,16301:18143155,15272602:211729 +k1,16301:19037768,15272602:211728 +k1,16301:20758135,15272602:211728 +k1,16301:24333826,15272602:211728 +k1,16301:25926398,15272602:211728 +k1,16301:26669623,15272602:211728 +k1,16301:29232127,15272602:211728 +k1,16301:30516024,15272602:211728 +k1,16301:31966991,15272602:0 +) +(1,16302:7246811,16114090:24720180,513147,134348 +k1,16301:8362281,16114090:167819 +k1,16301:9884074,16114090:167819 +k1,16301:11622791,16114090:167819 +k1,16301:13016789,16114090:167819 +k1,16301:14671620,16114090:167819 +k1,16301:16036126,16114090:167819 +k1,16301:19229741,16114090:167818 +k1,16301:20965181,16114090:167819 +k1,16301:23156096,16114090:167819 +k1,16301:24736216,16114090:167819 +k1,16301:26279636,16114090:167819 +k1,16301:27466540,16114090:167819 +k1,16301:28706528,16114090:167819 +k1,16301:30468183,16114090:167819 +k1,16301:31966991,16114090:0 +) +(1,16302:7246811,16955578:24720180,513147,134348 +k1,16301:8202489,16955578:194150 +k1,16301:10662219,16955578:194150 +k1,16301:11804021,16955578:194151 +k1,16301:14959088,16955578:194150 +k1,16301:16344683,16955578:194150 +k1,16301:17972761,16955578:194150 +k1,16301:20118574,16955578:194151 +k1,16301:22521287,16955578:194150 +k1,16301:24127738,16955578:194150 +k1,16301:25340973,16955578:194150 +k1,16301:27417973,16955578:194151 +k1,16301:28925465,16955578:194150 +k1,16301:31966991,16955578:0 +) +(1,16302:7246811,17797066:24720180,513147,134348 +k1,16301:8823960,17797066:292643 +k1,16301:10135689,17797066:292644 +k1,16301:12993411,17797066:292643 +k1,16301:16581861,17797066:292644 +k1,16301:18160320,17797066:292643 +k1,16301:20216537,17797066:292643 +k1,16301:21160609,17797066:292644 +k1,16301:22472337,17797066:292643 +k1,16301:26048990,17797066:292644 +k1,16301:27000925,17797066:292643 +k1,16301:28312653,17797066:292643 +k1,16301:29762007,17797066:292644 +k1,16301:31435494,17797066:292643 +k1,16301:31966991,17797066:0 +) +(1,16302:7246811,18638554:24720180,513147,126483 +k1,16301:9043044,18638554:146036 +k1,16301:11915378,18638554:146036 +k1,16301:13133583,18638554:146036 +k1,16301:16302139,18638554:146036 +k1,16301:18195365,18638554:146036 +k1,16301:18969236,18638554:146036 +k1,16301:21148855,18638554:146037 +k1,16301:23958930,18638554:146036 +k1,16301:24764258,18638554:146036 +k1,16301:27107060,18638554:146036 +k1,16301:27608956,18638554:146036 +k1,16301:29889500,18638554:146036 +k1,16301:31966991,18638554:0 +) +(1,16302:7246811,19480042:24720180,513147,134348 +k1,16301:8124993,19480042:226754 +k1,16301:11160621,19480042:226755 +k1,16301:13651644,19480042:226754 +k1,16301:15612482,19480042:226755 +k1,16301:17046409,19480042:226754 +k1,16301:18971202,19480042:226755 +k1,16301:22014038,19480042:226754 +k1,16301:23232352,19480042:226754 +k1,16301:24075145,19480042:226755 +k1,16301:27563626,19480042:226754 +k1,16301:29529707,19480042:226755 +k1,16301:30947906,19480042:226754 +k1,16301:31966991,19480042:0 +) +(1,16302:7246811,20321530:24720180,513147,134348 +k1,16301:8920005,20321530:269413 +k1,16301:11334410,20321530:269412 +k1,16301:14381894,20321530:269413 +k1,16301:17913034,20321530:269413 +k1,16301:18798484,20321530:269412 +k1,16301:20086982,20321530:269413 +k1,16301:21855202,20321530:269412 +k1,16301:23993046,20321530:269413 +k1,16301:26006372,20321530:269413 +k1,16301:27789010,20321530:269412 +k1,16301:29006074,20321530:269413 +k1,16301:31966991,20321530:0 +) +(1,16302:7246811,21163018:24720180,513147,134348 +k1,16301:8609258,21163018:290278 +k1,16301:10102777,21163018:290278 +k1,16301:11760135,21163018:290277 +k1,16301:14025668,21163018:290278 +k1,16301:14967374,21163018:290278 +k1,16301:16179088,21163018:290278 +k1,16301:17082128,21163018:290278 +k1,16301:18391490,21163018:290277 +k1,16301:20107176,21163018:290278 +k1,16301:21056746,21163018:290278 +k1,16301:23604739,21163018:290278 +k1,16301:26877559,21163018:290277 +k1,16301:29921004,21163018:290278 +k1,16301:30681175,21163018:290278 +k1,16301:31966991,21163018:0 +) +(1,16302:7246811,22004506:24720180,513147,122846 +k1,16301:9532596,22004506:217469 +k1,16301:11034571,22004506:217469 +k1,16301:11868078,22004506:217469 +k1,16301:13782929,22004506:217469 +k1,16301:15698436,22004506:217469 +k1,16301:16686608,22004506:217469 +k1,16301:20096991,22004506:217469 +k1,16301:21994803,22004506:217469 +k1,16301:23725498,22004506:217469 +(1,16301:23725498,22004506:0,414482,122846 +r1,16344:26897458,22004506:3171960,537328,122846 +k1,16301:23725498,22004506:-3171960 +) +(1,16301:23725498,22004506:3171960,414482,122846 +k1,16301:23725498,22004506:3277 +h1,16301:26894181,22004506:0,411205,112570 +) +k1,16301:27114927,22004506:217469 +k1,16301:28831204,22004506:217469 +k1,16301:31219225,22004506:217469 +k1,16301:31966991,22004506:0 +) +(1,16302:7246811,22845994:24720180,513147,134348 +k1,16301:10604339,22845994:196727 +k1,16301:11452495,22845994:196728 +k1,16301:14443022,22845994:196727 +k1,16301:16966932,22845994:196727 +k1,16301:17822951,22845994:196727 +k1,16301:21020573,22845994:196728 +k1,16301:21573160,22845994:196727 +k1,16301:24152776,22845994:196727 +k1,16301:25008795,22845994:196727 +k1,16301:28180202,22845994:196728 +k1,16301:30573040,22845994:196727 +k1,16301:31966991,22845994:0 +) +(1,16302:7246811,23687482:24720180,513147,134348 +k1,16301:8958086,23687482:277347 +k1,16301:9650199,23687482:277270 +k1,16301:13127014,23687482:277347 +k1,16301:14607602,23687482:277347 +k1,16301:16565293,23687482:277348 +k1,16301:17374137,23687482:277347 +k1,16301:20330597,23687482:277348 +k1,16301:21294106,23687482:277347 +k1,16301:21927314,23687482:277348 +k1,16301:24824790,23687482:277347 +(1,16301:24824790,23687482:0,414482,115847 +r1,16344:25534768,23687482:709978,530329,115847 +k1,16301:24824790,23687482:-709978 +) +(1,16301:24824790,23687482:709978,414482,115847 +k1,16301:24824790,23687482:3277 +h1,16301:25531491,23687482:0,411205,112570 +) +k1,16301:25812116,23687482:277348 +k1,16301:27483414,23687482:277347 +k1,16301:28116622,23687482:277348 +k1,16301:31137961,23687482:277347 +k1,16301:31966991,23687482:0 +) +(1,16302:7246811,24528970:24720180,513147,126483 +k1,16301:11481150,24528970:201253 +k1,16301:12885645,24528970:201254 +k1,16301:13955250,24528970:201253 +k1,16301:15288966,24528970:201254 +k1,16301:18804375,24528970:201253 +k1,16301:21157831,24528970:201254 +(1,16301:21157831,24528970:0,414482,122846 +r1,16344:24329791,24528970:3171960,537328,122846 +k1,16301:21157831,24528970:-3171960 +) +(1,16301:21157831,24528970:3171960,414482,122846 +k1,16301:21157831,24528970:3277 +h1,16301:24326514,24528970:0,411205,112570 +) +k1,16301:24531044,24528970:201253 +k1,16301:26299919,24528970:201254 +k1,16301:27289570,24528970:201253 +k1,16301:29756404,24528970:201254 +k1,16301:30682485,24528970:201253 +k1,16301:31966991,24528970:0 +) +(1,16302:7246811,25370458:24720180,513147,134348 +g1,16301:8314392,25370458 +g1,16301:9617903,25370458 +g1,16301:10909617,25370458 +g1,16301:11879549,25370458 +g1,16301:14740195,25370458 +g1,16301:15922464,25370458 +g1,16301:17497294,25370458 +g1,16301:18052383,25370458 +g1,16301:19384730,25370458 +g1,16301:21082767,25370458 +g1,16301:21898034,25370458 +k1,16302:31966991,25370458:7882021 +g1,16302:31966991,25370458 +) +v1,16306:7246811,26560924:0,393216,0 +(1,16321:7246811,36766122:24720180,10598414,196608 +g1,16321:7246811,36766122 +g1,16321:7246811,36766122 +g1,16321:7050203,36766122 +(1,16321:7050203,36766122:0,10598414,196608 +r1,16344:32163599,36766122:25113396,10795022,196608 +k1,16321:7050203,36766122:-25113396 +) +(1,16321:7050203,36766122:25113396,10598414,196608 +[1,16321:7246811,36766122:24720180,10401806,0 +(1,16308:7246811,26774834:24720180,410518,107478 +(1,16307:7246811,26774834:0,0,0 +g1,16307:7246811,26774834 +g1,16307:7246811,26774834 +g1,16307:6919131,26774834 +(1,16307:6919131,26774834:0,0,0 +) +g1,16307:7246811,26774834 +) +k1,16308:7246811,26774834:0 +g1,16308:12621288,26774834 +g1,16308:13253580,26774834 +k1,16308:13253580,26774834:0 +h1,16308:23686387,26774834:0,0,0 +k1,16308:31966991,26774834:8280604 +g1,16308:31966991,26774834 +) +(1,16312:7246811,28096372:24720180,410518,101187 +g1,16312:8195248,28096372 +g1,16312:10408268,28096372 +g1,16312:11988997,28096372 +g1,16312:14202017,28096372 +k1,16312:31966991,28096372:13338934 +g1,16312:31966991,28096372 +) +(1,16312:7246811,28762550:24720180,404226,76021 +g1,16312:8195248,28762550 +k1,16312:31966992,28762550:22191016 +g1,16312:31966992,28762550 +) +(1,16312:7246811,29428728:24720180,404226,82312 +g1,16312:8195248,29428728 +g1,16312:8511394,29428728 +g1,16312:10092123,29428728 +g1,16312:10724415,29428728 +k1,16312:31966991,29428728:16184245 +g1,16312:31966991,29428728 +) +(1,16312:7246811,30094906:24720180,404226,82312 +g1,16312:8195248,30094906 +g1,16312:8511394,30094906 +g1,16312:10092123,30094906 +g1,16312:10724415,30094906 +k1,16312:31966991,30094906:17132682 +g1,16312:31966991,30094906 +) +(1,16312:7246811,30761084:24720180,404226,82312 +g1,16312:8195248,30761084 +g1,16312:8511394,30761084 +g1,16312:10092123,30761084 +g1,16312:10724415,30761084 +k1,16312:31966991,30761084:17132682 +g1,16312:31966991,30761084 +) +(1,16312:7246811,31427262:24720180,404226,76021 +g1,16312:8195248,31427262 +g1,16312:8511394,31427262 +g1,16312:10092123,31427262 +g1,16312:10724415,31427262 +k1,16312:31966991,31427262:16500391 +g1,16312:31966991,31427262 +) +(1,16312:7246811,32093440:24720180,404226,76021 +g1,16312:8195248,32093440 +k1,16312:31966990,32093440:23455596 +g1,16312:31966990,32093440 +) +(1,16320:7246811,32759618:24720180,404226,6290 +(1,16312:7246811,32759618:0,0,0 +g1,16312:7246811,32759618 +g1,16312:7246811,32759618 +g1,16312:6919131,32759618 +(1,16312:6919131,32759618:0,0,0 +) +g1,16312:7246811,32759618 +) +g1,16320:8195248,32759618 +g1,16320:8827540,32759618 +g1,16320:9459832,32759618 +g1,16320:11988998,32759618 +g1,16320:12621290,32759618 +g1,16320:13253582,32759618 +h1,16320:13569728,32759618:0,0,0 +k1,16320:31966992,32759618:18397264 +g1,16320:31966992,32759618 +) +(1,16320:7246811,33425796:24720180,404226,9436 +h1,16320:7246811,33425796:0,0,0 +g1,16320:8195248,33425796 +g1,16320:8511394,33425796 +g1,16320:8827540,33425796 +g1,16320:10408269,33425796 +g1,16320:10724415,33425796 +g1,16320:11040561,33425796 +g1,16320:12621290,33425796 +g1,16320:12937436,33425796 +g1,16320:14518165,33425796 +h1,16320:15782748,33425796:0,0,0 +k1,16320:31966991,33425796:16184243 +g1,16320:31966991,33425796 +) +(1,16320:7246811,34091974:24720180,404226,6290 +h1,16320:7246811,34091974:0,0,0 +g1,16320:8195248,34091974 +g1,16320:8511394,34091974 +g1,16320:8827540,34091974 +g1,16320:10724415,34091974 +g1,16320:12621290,34091974 +g1,16320:14518165,34091974 +k1,16320:14518165,34091974:0 +h1,16320:16098894,34091974:0,0,0 +k1,16320:31966991,34091974:15868097 +g1,16320:31966991,34091974 +) +(1,16320:7246811,34758152:24720180,388497,9436 +h1,16320:7246811,34758152:0,0,0 +g1,16320:8195248,34758152 +g1,16320:8827540,34758152 +g1,16320:10092123,34758152 +g1,16320:10408269,34758152 +g1,16320:10724415,34758152 +g1,16320:11040561,34758152 +g1,16320:12621290,34758152 +g1,16320:12937436,34758152 +g1,16320:13253582,34758152 +g1,16320:14518165,34758152 +h1,16320:15466602,34758152:0,0,0 +k1,16320:31966991,34758152:16500389 +g1,16320:31966991,34758152 +) +(1,16320:7246811,35424330:24720180,388497,9436 +h1,16320:7246811,35424330:0,0,0 +g1,16320:8195248,35424330 +g1,16320:8827540,35424330 +g1,16320:10092123,35424330 +g1,16320:10408269,35424330 +g1,16320:10724415,35424330 +g1,16320:11040561,35424330 +g1,16320:12621290,35424330 +g1,16320:12937436,35424330 +g1,16320:13253582,35424330 +g1,16320:13569728,35424330 +g1,16320:14518165,35424330 +h1,16320:15466602,35424330:0,0,0 +k1,16320:31966991,35424330:16500389 +g1,16320:31966991,35424330 +) +(1,16320:7246811,36090508:24720180,388497,9436 +h1,16320:7246811,36090508:0,0,0 +g1,16320:8195248,36090508 +g1,16320:8827540,36090508 +g1,16320:10408269,36090508 +g1,16320:10724415,36090508 +g1,16320:11040561,36090508 +g1,16320:12621290,36090508 +g1,16320:12937436,36090508 +g1,16320:13253582,36090508 +g1,16320:13569728,36090508 +g1,16320:14518165,36090508 +h1,16320:15466602,36090508:0,0,0 +k1,16320:31966991,36090508:16500389 +g1,16320:31966991,36090508 +) +(1,16320:7246811,36756686:24720180,404226,9436 +h1,16320:7246811,36756686:0,0,0 +g1,16320:8195248,36756686 +g1,16320:8827540,36756686 +g1,16320:9459832,36756686 +g1,16320:9775978,36756686 +g1,16320:10092124,36756686 +g1,16320:10408270,36756686 +g1,16320:10724416,36756686 +g1,16320:11040562,36756686 +g1,16320:11988999,36756686 +g1,16320:12305145,36756686 +g1,16320:12621291,36756686 +g1,16320:12937437,36756686 +g1,16320:14518166,36756686 +h1,16320:15466603,36756686:0,0,0 +k1,16320:31966991,36756686:16500388 +g1,16320:31966991,36756686 +) +] +) +g1,16321:31966991,36766122 +g1,16321:7246811,36766122 +g1,16321:7246811,36766122 +g1,16321:31966991,36766122 +g1,16321:31966991,36766122 +) +h1,16321:7246811,36962730:0,0,0 +] +) +] +r1,16344:32583029,38601130:26214,25921725,0 +) +] +) +) +g1,16344:32583029,38011306 +) +] +(1,16344:32583029,45706769:0,0,0 +g1,16344:32583029,45706769 +) +) +] +(1,16344:6630773,47279633:25952256,0,0 +h1,16344:6630773,47279633:25952256,0,0 +) +] +h1,16344:4262630,4025873:0,0,0 +] +!20692 }317 -Input:2463:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2464:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2465:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2466:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2467:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2468:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2469:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2470:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2471:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2472:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2473:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2474:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2475:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2476:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2477:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2478:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2479:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2480:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!1560 +Input:2460:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2461:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2462:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2463:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2464:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2465:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2466:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2467:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2468:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2469:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2470:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2471:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2472:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2473:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2474:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2475:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2476:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2477:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!1668 {318 -[1,16353:4262630,47279633:28320399,43253760,0 -(1,16353:4262630,4025873:0,0,0 -[1,16353:-473657,4025873:25952256,0,0 -(1,16353:-473657,-710414:25952256,0,0 -h1,16353:-473657,-710414:0,0,0 -(1,16353:-473657,-710414:0,0,0 -(1,16353:-473657,-710414:0,0,0 -g1,16353:-473657,-710414 -(1,16353:-473657,-710414:65781,0,65781 -g1,16353:-407876,-710414 -[1,16353:-407876,-644633:0,0,0 +[1,16384:4262630,47279633:28320399,43253760,0 +(1,16384:4262630,4025873:0,0,0 +[1,16384:-473657,4025873:25952256,0,0 +(1,16384:-473657,-710414:25952256,0,0 +h1,16384:-473657,-710414:0,0,0 +(1,16384:-473657,-710414:0,0,0 +(1,16384:-473657,-710414:0,0,0 +g1,16384:-473657,-710414 +(1,16384:-473657,-710414:65781,0,65781 +g1,16384:-407876,-710414 +[1,16384:-407876,-644633:0,0,0 ] ) -k1,16353:-473657,-710414:-65781 +k1,16384:-473657,-710414:-65781 ) ) -k1,16353:25478599,-710414:25952256 -g1,16353:25478599,-710414 +k1,16384:25478599,-710414:25952256 +g1,16384:25478599,-710414 ) ] ) -[1,16353:6630773,47279633:25952256,43253760,0 -[1,16353:6630773,4812305:25952256,786432,0 -(1,16353:6630773,4812305:25952256,513147,126483 -(1,16353:6630773,4812305:25952256,513147,126483 -g1,16353:3078558,4812305 -[1,16353:3078558,4812305:0,0,0 -(1,16353:3078558,2439708:0,1703936,0 -k1,16353:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16353:2537886,2439708:1179648,16384,0 +[1,16384:6630773,47279633:25952256,43253760,0 +[1,16384:6630773,4812305:25952256,786432,0 +(1,16384:6630773,4812305:25952256,513147,126483 +(1,16384:6630773,4812305:25952256,513147,126483 +g1,16384:3078558,4812305 +[1,16384:3078558,4812305:0,0,0 +(1,16384:3078558,2439708:0,1703936,0 +k1,16384:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16384:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16353:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16384:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16353:3078558,4812305:0,0,0 -(1,16353:3078558,2439708:0,1703936,0 -g1,16353:29030814,2439708 -g1,16353:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16353:36151628,1915420:16384,1179648,0 +[1,16384:3078558,4812305:0,0,0 +(1,16384:3078558,2439708:0,1703936,0 +g1,16384:29030814,2439708 +g1,16384:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16384:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16353:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16384:37855564,2439708:1179648,16384,0 ) ) -k1,16353:3078556,2439708:-34777008 +k1,16384:3078556,2439708:-34777008 ) ] -[1,16353:3078558,4812305:0,0,0 -(1,16353:3078558,49800853:0,16384,2228224 -k1,16353:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16353:2537886,49800853:1179648,16384,0 +[1,16384:3078558,4812305:0,0,0 +(1,16384:3078558,49800853:0,16384,2228224 +k1,16384:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16384:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16353:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16384:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16353:3078558,4812305:0,0,0 -(1,16353:3078558,49800853:0,16384,2228224 -g1,16353:29030814,49800853 -g1,16353:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16353:36151628,51504789:16384,1179648,0 +[1,16384:3078558,4812305:0,0,0 +(1,16384:3078558,49800853:0,16384,2228224 +g1,16384:29030814,49800853 +g1,16384:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16384:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16353:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16384:37855564,49800853:1179648,16384,0 ) ) -k1,16353:3078556,49800853:-34777008 -) -] -g1,16353:6630773,4812305 -g1,16353:6630773,4812305 -g1,16353:9744388,4812305 -g1,16353:11175694,4812305 -k1,16353:31387652,4812305:20211958 -) -) -] -[1,16353:6630773,45706769:25952256,40108032,0 -(1,16353:6630773,45706769:25952256,40108032,0 -(1,16353:6630773,45706769:0,0,0 -g1,16353:6630773,45706769 -) -[1,16353:6630773,45706769:25952256,40108032,0 -v1,16313:6630773,6254097:0,393216,0 -(1,16313:6630773,19768549:25952256,13907668,616038 -g1,16313:6630773,19768549 -(1,16313:6630773,19768549:25952256,13907668,616038 -(1,16313:6630773,20384587:25952256,14523706,0 -[1,16313:6630773,20384587:25952256,14523706,0 -(1,16313:6630773,20358373:25952256,14497492,0 -r1,16313:6656987,20358373:26214,14497492,0 -[1,16313:6656987,20358373:25899828,14497492,0 -(1,16313:6656987,19768549:25899828,13317844,0 -[1,16313:7246811,19768549:24720180,13317844,0 -v1,16294:7246811,6843921:0,393216,0 -(1,16311:7246811,19047653:24720180,12596948,196608 -g1,16311:7246811,19047653 -g1,16311:7246811,19047653 -g1,16311:7050203,19047653 -(1,16311:7050203,19047653:0,12596948,196608 -r1,16313:32163599,19047653:25113396,12793556,196608 -k1,16311:7050203,19047653:-25113396 -) -(1,16311:7050203,19047653:25113396,12596948,196608 -[1,16311:7246811,19047653:24720180,12400340,0 -(1,16296:7246811,7057831:24720180,410518,107478 -(1,16295:7246811,7057831:0,0,0 -g1,16295:7246811,7057831 -g1,16295:7246811,7057831 -g1,16295:6919131,7057831 -(1,16295:6919131,7057831:0,0,0 -) -g1,16295:7246811,7057831 -) -k1,16296:7246811,7057831:0 -g1,16296:12621288,7057831 -g1,16296:13253580,7057831 -g1,16296:24002533,7057831 -g1,16296:27163990,7057831 -g1,16296:27796282,7057831 -h1,16296:28744719,7057831:0,0,0 -k1,16296:31966991,7057831:3222272 -g1,16296:31966991,7057831 -) -(1,16301:7246811,8379369:24720180,410518,101187 -g1,16300:8195248,8379369 -g1,16300:10408268,8379369 -g1,16300:11988997,8379369 -g1,16300:14202017,8379369 -k1,16300:31966991,8379369:13338934 -g1,16301:31966991,8379369 -) -(1,16301:7246811,9045547:24720180,404226,76021 -g1,16300:8195248,9045547 -k1,16300:31966992,9045547:22191016 -g1,16301:31966992,9045547 -) -(1,16301:7246811,9711725:24720180,404226,82312 -g1,16300:8195248,9711725 -g1,16300:8511394,9711725 -g1,16300:10092123,9711725 -g1,16300:10724415,9711725 -k1,16300:31966991,9711725:17132682 -g1,16301:31966991,9711725 -) -(1,16301:7246811,10377903:24720180,404226,82312 -g1,16300:8195248,10377903 -g1,16300:8511394,10377903 -g1,16300:10092123,10377903 -g1,16300:10724415,10377903 -k1,16300:31966991,10377903:17132682 -g1,16301:31966991,10377903 -) -(1,16301:7246811,11044081:24720180,404226,82312 -g1,16300:8195248,11044081 -g1,16300:8511394,11044081 -g1,16300:10092123,11044081 -g1,16300:10724415,11044081 -k1,16300:31966991,11044081:17132682 -g1,16301:31966991,11044081 -) -(1,16301:7246811,11710259:24720180,404226,76021 -g1,16300:8195248,11710259 -g1,16300:8511394,11710259 -g1,16300:10092123,11710259 -g1,16300:10724415,11710259 -k1,16300:31966991,11710259:16500391 -g1,16301:31966991,11710259 -) -(1,16301:7246811,12376437:24720180,404226,76021 -g1,16300:8195248,12376437 -k1,16301:31966990,12376437:23455596 -g1,16301:31966990,12376437 -) -(1,16302:7246811,13042615:24720180,410518,107478 -g1,16302:8195248,13042615 -g1,16302:11040559,13042615 -g1,16302:11672851,13042615 -g1,16302:14202017,13042615 -k1,16302:31966991,13042615:15235809 -g1,16302:31966991,13042615 -) -(1,16302:7246811,13708793:24720180,410518,101187 -g1,16302:8195248,13708793 -g1,16302:9459831,13708793 -g1,16302:9775977,13708793 -g1,16302:11040560,13708793 -g1,16302:13885871,13708793 -g1,16302:16098891,13708793 -g1,16302:16415037,13708793 -g1,16302:16731183,13708793 -g1,16302:17047329,13708793 -g1,16302:17363475,13708793 -g1,16302:17679621,13708793 -g1,16302:17995767,13708793 -g1,16302:18311913,13708793 -g1,16302:18628059,13708793 -g1,16302:18944205,13708793 -g1,16302:19260351,13708793 -g1,16302:19576497,13708793 -g1,16302:19892643,13708793 -g1,16302:20208789,13708793 -g1,16302:20524935,13708793 -g1,16302:20841081,13708793 -g1,16302:21157227,13708793 -g1,16302:21473373,13708793 -g1,16302:21789519,13708793 -g1,16302:22105665,13708793 -g1,16302:22421811,13708793 -g1,16302:22737957,13708793 -g1,16302:23054103,13708793 -g1,16302:23370249,13708793 -g1,16302:23686395,13708793 -g1,16302:24002541,13708793 -g1,16302:24318687,13708793 -g1,16302:24634833,13708793 -k1,16302:31966991,13708793:6067575 -g1,16302:31966991,13708793 -) -(1,16302:7246811,14374971:24720180,404226,107478 -g1,16302:8195248,14374971 -g1,16302:8511394,14374971 -g1,16302:9143686,14374971 -g1,16302:10724415,14374971 -g1,16302:11356707,14374971 -g1,16302:13569727,14374971 -g1,16302:13885873,14374971 -g1,16302:14202019,14374971 -g1,16302:14518165,14374971 -g1,16302:14834311,14374971 -g1,16302:15150457,14374971 -g1,16302:15782749,14374971 -k1,16302:31966991,14374971:6067581 -g1,16302:31966991,14374971 -) -(1,16310:7246811,15041149:24720180,404226,6290 -(1,16302:7246811,15041149:0,0,0 -g1,16302:7246811,15041149 -g1,16302:7246811,15041149 -g1,16302:6919131,15041149 -(1,16302:6919131,15041149:0,0,0 -) -g1,16302:7246811,15041149 -) -g1,16310:8195248,15041149 -g1,16310:8827540,15041149 -g1,16310:9459832,15041149 -g1,16310:11988998,15041149 -g1,16310:12621290,15041149 -g1,16310:13253582,15041149 -h1,16310:13569728,15041149:0,0,0 -k1,16310:31966992,15041149:18397264 -g1,16310:31966992,15041149 -) -(1,16310:7246811,15707327:24720180,404226,9436 -h1,16310:7246811,15707327:0,0,0 -g1,16310:8195248,15707327 -g1,16310:8511394,15707327 -g1,16310:8827540,15707327 -g1,16310:9143686,15707327 -g1,16310:10724415,15707327 -g1,16310:11040561,15707327 -g1,16310:12621290,15707327 -g1,16310:12937436,15707327 -g1,16310:14518165,15707327 -h1,16310:15782748,15707327:0,0,0 -k1,16310:31966991,15707327:16184243 -g1,16310:31966991,15707327 -) -(1,16310:7246811,16373505:24720180,404226,6290 -h1,16310:7246811,16373505:0,0,0 -g1,16310:8195248,16373505 -g1,16310:8511394,16373505 -g1,16310:8827540,16373505 -g1,16310:10724415,16373505 -g1,16310:12621290,16373505 -g1,16310:14518165,16373505 -k1,16310:14518165,16373505:0 -h1,16310:16098894,16373505:0,0,0 -k1,16310:31966991,16373505:15868097 -g1,16310:31966991,16373505 -) -(1,16310:7246811,17039683:24720180,388497,9436 -h1,16310:7246811,17039683:0,0,0 -g1,16310:8195248,17039683 -g1,16310:8827540,17039683 -g1,16310:9143686,17039683 -g1,16310:9459832,17039683 -g1,16310:10092124,17039683 -g1,16310:10408270,17039683 -g1,16310:10724416,17039683 -g1,16310:11040562,17039683 -g1,16310:12621291,17039683 -g1,16310:12937437,17039683 -g1,16310:13253583,17039683 -g1,16310:14518166,17039683 -h1,16310:15466603,17039683:0,0,0 -k1,16310:31966991,17039683:16500388 -g1,16310:31966991,17039683 -) -(1,16310:7246811,17705861:24720180,388497,9436 -h1,16310:7246811,17705861:0,0,0 -g1,16310:8195248,17705861 -g1,16310:8827540,17705861 -g1,16310:9143686,17705861 -g1,16310:9459832,17705861 -g1,16310:10724415,17705861 -g1,16310:11040561,17705861 -g1,16310:12621290,17705861 -g1,16310:12937436,17705861 -g1,16310:13253582,17705861 -g1,16310:13569728,17705861 -g1,16310:14518165,17705861 -h1,16310:15466602,17705861:0,0,0 -k1,16310:31966991,17705861:16500389 -g1,16310:31966991,17705861 -) -(1,16310:7246811,18372039:24720180,388497,9436 -h1,16310:7246811,18372039:0,0,0 -g1,16310:8195248,18372039 -g1,16310:8827540,18372039 -g1,16310:9143686,18372039 -g1,16310:10724415,18372039 -g1,16310:11040561,18372039 -g1,16310:12621290,18372039 -g1,16310:12937436,18372039 -g1,16310:13253582,18372039 -g1,16310:13569728,18372039 -g1,16310:14518165,18372039 -h1,16310:15466602,18372039:0,0,0 -k1,16310:31966991,18372039:16500389 -g1,16310:31966991,18372039 -) -(1,16310:7246811,19038217:24720180,404226,9436 -h1,16310:7246811,19038217:0,0,0 -g1,16310:8195248,19038217 -g1,16310:8827540,19038217 -g1,16310:9143686,19038217 -g1,16310:10092123,19038217 -g1,16310:10408269,19038217 -g1,16310:10724415,19038217 -g1,16310:11040561,19038217 -g1,16310:11988998,19038217 -g1,16310:12305144,19038217 -g1,16310:12621290,19038217 -g1,16310:12937436,19038217 -g1,16310:14518165,19038217 -h1,16310:15466602,19038217:0,0,0 -k1,16310:31966991,19038217:16500389 -g1,16310:31966991,19038217 -) -] -) -g1,16311:31966991,19047653 -g1,16311:7246811,19047653 -g1,16311:7246811,19047653 -g1,16311:31966991,19047653 -g1,16311:31966991,19047653 -) -h1,16311:7246811,19244261:0,0,0 -] -) -] -r1,16313:32583029,20358373:26214,14497492,0 -) -] -) -) -g1,16313:32583029,19768549 -) -h1,16313:6630773,20384587:0,0,0 -(1,16320:6630773,21750363:25952256,513147,126483 -h1,16319:6630773,21750363:983040,0,0 -k1,16319:8982738,21750363:172238 -(1,16319:8982738,21750363:0,452978,115847 -r1,16319:11099563,21750363:2116825,568825,115847 -k1,16319:8982738,21750363:-2116825 -) -(1,16319:8982738,21750363:2116825,452978,115847 -k1,16319:8982738,21750363:3277 -h1,16319:11096286,21750363:0,411205,112570 -) -k1,16319:11271802,21750363:172239 -k1,16319:14469837,21750363:172238 -k1,16319:16209696,21750363:172238 -k1,16319:18405031,21750363:172239 -k1,16319:19568829,21750363:172238 -k1,16319:20760153,21750363:172239 -k1,16319:24704643,21750363:172238 -k1,16319:25528309,21750363:172238 -(1,16319:25528309,21750363:0,452978,115847 -r1,16319:27645134,21750363:2116825,568825,115847 -k1,16319:25528309,21750363:-2116825 -) -(1,16319:25528309,21750363:2116825,452978,115847 -k1,16319:25528309,21750363:3277 -h1,16319:27641857,21750363:0,411205,112570 -) -k1,16319:27817373,21750363:172239 -k1,16319:31015408,21750363:172238 -k1,16319:32583029,21750363:0 -) -(1,16320:6630773,22591851:25952256,505283,126483 -k1,16319:8820856,22591851:305269 -k1,16319:9753960,22591851:305269 -k1,16319:12725234,22591851:305269 -k1,16319:13681931,22591851:305269 -k1,16319:15006284,22591851:305268 -k1,16319:18150573,22591851:305269 -(1,16319:18150573,22591851:0,452978,115847 -r1,16319:22025957,22591851:3875384,568825,115847 -k1,16319:18150573,22591851:-3875384 -) -(1,16319:18150573,22591851:3875384,452978,115847 -k1,16319:18150573,22591851:3277 -h1,16319:22022680,22591851:0,411205,112570 -) -k1,16319:22504896,22591851:305269 -(1,16319:22504896,22591851:0,452978,115847 -r1,16319:26731992,22591851:4227096,568825,115847 -k1,16319:22504896,22591851:-4227096 -) -(1,16319:22504896,22591851:4227096,452978,115847 -k1,16319:22504896,22591851:3277 -h1,16319:26728715,22591851:0,411205,112570 -) -k1,16319:27210931,22591851:305269 -(1,16319:27210931,22591851:0,452978,115847 -r1,16319:31086315,22591851:3875384,568825,115847 -k1,16319:27210931,22591851:-3875384 -) -(1,16319:27210931,22591851:3875384,452978,115847 -k1,16319:27210931,22591851:3277 -h1,16319:31083038,22591851:0,411205,112570 -) -k1,16319:31391584,22591851:305269 -k1,16320:32583029,22591851:0 -) -(1,16320:6630773,23433339:25952256,513147,126483 -(1,16319:6630773,23433339:0,452978,115847 -r1,16319:11209581,23433339:4578808,568825,115847 -k1,16319:6630773,23433339:-4578808 -) -(1,16319:6630773,23433339:4578808,452978,115847 -k1,16319:6630773,23433339:3277 -h1,16319:11206304,23433339:0,411205,112570 -) -k1,16319:11663452,23433339:280201 -k1,16319:13966748,23433339:280200 -k1,16319:17007325,23433339:280201 -k1,16319:20313323,23433339:280201 -k1,16319:21878029,23433339:280200 -k1,16319:23773037,23433339:280201 -k1,16319:29547121,23433339:280201 -k1,16319:31096017,23433339:280119 -k1,16319:32583029,23433339:0 -) -(1,16320:6630773,24274827:25952256,513147,126483 -k1,16319:7882053,24274827:297731 -k1,16319:12212870,24274827:297731 -k1,16319:13908484,24274827:297731 -k1,16319:15225299,24274827:297730 -k1,16319:16615515,24274827:297731 -k1,16319:17580402,24274827:297731 -(1,16319:17580402,24274827:0,452978,115847 -r1,16319:23566057,24274827:5985655,568825,115847 -k1,16319:17580402,24274827:-5985655 -) -(1,16319:17580402,24274827:5985655,452978,115847 -k1,16319:17580402,24274827:3277 -h1,16319:23562780,24274827:0,411205,112570 -) -k1,16319:23863788,24274827:297731 -k1,16319:24812947,24274827:297731 -k1,16319:27730807,24274827:297731 -k1,16319:28384397,24274827:297730 -k1,16319:29908307,24274827:297731 -k1,16319:31189078,24274827:297731 -k1,16319:32583029,24274827:0 -) -(1,16320:6630773,25116315:25952256,513147,126483 -g1,16319:12490347,25116315 -g1,16319:14423659,25116315 -g1,16319:17134883,25116315 -g1,16319:18281763,25116315 -g1,16319:20662686,25116315 -g1,16319:22129381,25116315 -k1,16320:32583029,25116315:7502562 -g1,16320:32583029,25116315 -) -v1,16322:6630773,26306781:0,393216,0 -(1,16327:6630773,27294347:25952256,1380782,196608 -g1,16327:6630773,27294347 -g1,16327:6630773,27294347 -g1,16327:6434165,27294347 -(1,16327:6434165,27294347:0,1380782,196608 -r1,16327:32779637,27294347:26345472,1577390,196608 -k1,16327:6434165,27294347:-26345472 -) -(1,16327:6434165,27294347:26345472,1380782,196608 -[1,16327:6630773,27294347:25952256,1184174,0 -(1,16324:6630773,26520691:25952256,410518,101187 -(1,16323:6630773,26520691:0,0,0 -g1,16323:6630773,26520691 -g1,16323:6630773,26520691 -g1,16323:6303093,26520691 -(1,16323:6303093,26520691:0,0,0 -) -g1,16323:6630773,26520691 -) -k1,16324:6630773,26520691:0 -g1,16324:13902124,26520691 -g1,16324:15482853,26520691 -g1,16324:16115145,26520691 -k1,16324:16115145,26520691:0 -h1,16324:20857330,26520691:0,0,0 -k1,16324:32583029,26520691:11725699 -g1,16324:32583029,26520691 -) -(1,16325:6630773,27186869:25952256,410518,107478 -h1,16325:6630773,27186869:0,0,0 -g1,16325:14850561,27186869 -g1,16325:16747435,27186869 -g1,16325:17379727,27186869 -h1,16325:20541184,27186869:0,0,0 -k1,16325:32583029,27186869:12041845 -g1,16325:32583029,27186869 -) -] -) -g1,16327:32583029,27294347 -g1,16327:6630773,27294347 -g1,16327:6630773,27294347 -g1,16327:32583029,27294347 -g1,16327:32583029,27294347 -) -h1,16327:6630773,27490955:0,0,0 -(1,16332:6630773,28681421:25952256,513147,134348 -h1,16330:6630773,28681421:983040,0,0 -g1,16330:9275150,28681421 -g1,16330:11195354,28681421 -g1,16330:11750443,28681421 -g1,16330:12932712,28681421 -g1,16330:16493938,28681421 -g1,16330:17712252,28681421 -g1,16330:20886816,28681421 -g1,16330:22485894,28681421 -k1,16332:32583029,28681421:10097135 -g1,16332:32583029,28681421 -) -v1,16332:6630773,29871887:0,393216,0 -(1,16341:6630773,33366354:25952256,3887683,196608 -g1,16341:6630773,33366354 -g1,16341:6630773,33366354 -g1,16341:6434165,33366354 -(1,16341:6434165,33366354:0,3887683,196608 -r1,16341:32779637,33366354:26345472,4084291,196608 -k1,16341:6434165,33366354:-26345472 -) -(1,16341:6434165,33366354:26345472,3887683,196608 -[1,16341:6630773,33366354:25952256,3691075,0 -(1,16340:6630773,29953152:25952256,277873,101187 -(1,16333:6630773,29953152:0,0,0 -g1,16333:6630773,29953152 -g1,16333:6630773,29953152 -g1,16333:6303093,29953152 -(1,16333:6303093,29953152:0,0,0 -) -g1,16333:6630773,29953152 -) -k1,16340:6630773,29953152:0 -k1,16340:6630773,29953152:0 -h1,16340:8211501,29953152:0,0,0 -k1,16340:32583029,29953152:24371528 -g1,16340:32583029,29953152 -) -(1,16340:6630773,30619330:25952256,388497,82312 -h1,16340:6630773,30619330:0,0,0 -k1,16340:6630773,30619330:0 -h1,16340:8843793,30619330:0,0,0 -k1,16340:32583029,30619330:23739236 -g1,16340:32583029,30619330 -) -(1,16340:6630773,31285508:25952256,404226,82312 -h1,16340:6630773,31285508:0,0,0 -k1,16340:6630773,31285508:0 -h1,16340:8843793,31285508:0,0,0 -k1,16340:32583029,31285508:23739236 -g1,16340:32583029,31285508 -) -(1,16340:6630773,31951686:25952256,388497,82312 -h1,16340:6630773,31951686:0,0,0 -k1,16340:6630773,31951686:0 -h1,16340:8843793,31951686:0,0,0 -k1,16340:32583029,31951686:23739236 -g1,16340:32583029,31951686 -) -(1,16340:6630773,32617864:25952256,404226,82312 -h1,16340:6630773,32617864:0,0,0 -k1,16340:6630773,32617864:0 -h1,16340:8843793,32617864:0,0,0 -k1,16340:32583029,32617864:23739236 -g1,16340:32583029,32617864 -) -(1,16340:6630773,33284042:25952256,388497,82312 -h1,16340:6630773,33284042:0,0,0 -k1,16340:6630773,33284042:0 -h1,16340:8843793,33284042:0,0,0 -k1,16340:32583029,33284042:23739236 -g1,16340:32583029,33284042 -) -] -) -g1,16341:32583029,33366354 -g1,16341:6630773,33366354 -g1,16341:6630773,33366354 -g1,16341:32583029,33366354 -g1,16341:32583029,33366354 -) -h1,16341:6630773,33562962:0,0,0 -v1,16345:6630773,35453026:0,393216,0 -(1,16346:6630773,38580546:25952256,3520736,616038 -g1,16346:6630773,38580546 -(1,16346:6630773,38580546:25952256,3520736,616038 -(1,16346:6630773,39196584:25952256,4136774,0 -[1,16346:6630773,39196584:25952256,4136774,0 -(1,16346:6630773,39170370:25952256,4084346,0 -r1,16346:6656987,39170370:26214,4084346,0 -[1,16346:6656987,39170370:25899828,4084346,0 -(1,16346:6656987,38580546:25899828,2904698,0 -[1,16346:7246811,38580546:24720180,2904698,0 -(1,16346:7246811,36763222:24720180,1087374,126483 -k1,16345:8733323,36763222:276809 -k1,16345:11892404,36763222:276808 -k1,16345:13188298,36763222:276809 -k1,16345:15623863,36763222:276809 -k1,16345:17468292,36763222:276808 -(1,16345:17468292,36763222:0,452978,115847 -r1,16346:23453947,36763222:5985655,568825,115847 -k1,16345:17468292,36763222:-5985655 -) -(1,16345:17468292,36763222:5985655,452978,115847 -k1,16345:17468292,36763222:3277 -h1,16345:23450670,36763222:0,411205,112570 -) -k1,16345:23730756,36763222:276809 -k1,16345:25199010,36763222:276809 -(1,16345:25199010,36763222:0,452978,115847 -r1,16346:29074394,36763222:3875384,568825,115847 -k1,16345:25199010,36763222:-3875384 -) -(1,16345:25199010,36763222:3875384,452978,115847 -k1,16345:25199010,36763222:3277 -h1,16345:29071117,36763222:0,411205,112570 -) -k1,16345:29524872,36763222:276808 -k1,16345:31435494,36763222:276809 -k1,16345:31966991,36763222:0 -) -(1,16346:7246811,37604710:24720180,513147,126483 -k1,16345:8460639,37604710:194743 -k1,16345:12168767,37604710:194743 -k1,16345:13938996,37604710:194743 -k1,16345:14591836,37604710:194743 -k1,16345:16911912,37604710:194743 -k1,16345:18804693,37604710:194743 -k1,16345:20169909,37604710:194743 -k1,16345:22546346,37604710:194743 -k1,16345:23760174,37604710:194743 -k1,16345:26241468,37604710:194743 -k1,16345:27704983,37604710:194738 -k1,16345:28882766,37604710:194743 -k1,16345:30344975,37604710:194743 -k1,16345:31966991,37604710:0 -) -(1,16346:7246811,38446198:24720180,513147,134348 -g1,16345:8672219,38446198 -g1,16345:11205185,38446198 -g1,16345:12574887,38446198 -g1,16345:13765676,38446198 -g1,16345:15873969,38446198 -g1,16345:17467149,38446198 -g1,16345:18685463,38446198 -g1,16345:20726254,38446198 -g1,16345:23437478,38446198 -g1,16345:24295999,38446198 -g1,16345:25954059,38446198 -k1,16346:31966991,38446198:2402554 -g1,16346:31966991,38446198 -) -] -) -] -r1,16346:32583029,39170370:26214,4084346,0 -) -] -) -) -g1,16346:32583029,38580546 -) -h1,16346:6630773,39196584:0,0,0 -(1,16349:6630773,40562360:25952256,513147,126483 -h1,16348:6630773,40562360:983040,0,0 -k1,16348:9041531,40562360:231031 -k1,16348:10538718,40562360:231031 -k1,16348:11429041,40562360:231031 -k1,16348:14685869,40562360:231031 -(1,16348:14685869,40562360:0,452978,115847 -r1,16348:18912965,40562360:4227096,568825,115847 -k1,16348:14685869,40562360:-4227096 -) -(1,16348:14685869,40562360:4227096,452978,115847 -k1,16348:14685869,40562360:3277 -h1,16348:18909688,40562360:0,411205,112570 -) -k1,16348:19143997,40562360:231032 -k1,16348:20566473,40562360:231031 -(1,16348:20566473,40562360:0,452978,115847 -r1,16348:25145281,40562360:4578808,568825,115847 -k1,16348:20566473,40562360:-4578808 -) -(1,16348:20566473,40562360:4578808,452978,115847 -k1,16348:20566473,40562360:3277 -h1,16348:25142004,40562360:0,411205,112570 -) -k1,16348:25376312,40562360:231031 -k1,16348:27019644,40562360:231031 -k1,16348:28442120,40562360:231031 -k1,16348:30287958,40562360:231031 -k1,16349:32583029,40562360:0 -) -(1,16349:6630773,41403848:25952256,505283,126483 -k1,16348:7713860,41403848:190487 -k1,16348:10212526,41403848:190488 -k1,16348:12863235,41403848:190487 -k1,16348:16704078,41403848:190488 -k1,16348:19662806,41403848:190487 -k1,16348:20504722,41403848:190488 -k1,16348:22129137,41403848:190487 -k1,16348:22734459,41403848:190479 -(1,16348:22734459,41403848:0,452978,115847 -r1,16348:26609843,41403848:3875384,568825,115847 -k1,16348:22734459,41403848:-3875384 -) -(1,16348:22734459,41403848:3875384,452978,115847 -k1,16348:22734459,41403848:3277 -h1,16348:26606566,41403848:0,411205,112570 -) -k1,16348:26800331,41403848:190488 -k1,16348:28182263,41403848:190487 -(1,16348:28182263,41403848:0,452978,115847 -r1,16348:32409359,41403848:4227096,568825,115847 -k1,16348:28182263,41403848:-4227096 -) -(1,16348:28182263,41403848:4227096,452978,115847 -k1,16348:28182263,41403848:3277 -h1,16348:32406082,41403848:0,411205,112570 -) -k1,16348:32583029,41403848:0 -) -(1,16349:6630773,42245336:25952256,513147,115847 -k1,16348:9992150,42245336:241208 -(1,16348:9992150,42245336:0,459977,115847 -r1,16348:13867534,42245336:3875384,575824,115847 -k1,16348:9992150,42245336:-3875384 -) -(1,16348:9992150,42245336:3875384,459977,115847 -k1,16348:9992150,42245336:3277 -h1,16348:13864257,42245336:0,411205,112570 -) -k1,16348:14108742,42245336:241208 -k1,16348:15541395,42245336:241208 -(1,16348:15541395,42245336:0,459977,115847 -r1,16348:19768491,42245336:4227096,575824,115847 -k1,16348:15541395,42245336:-4227096 -) -(1,16348:15541395,42245336:4227096,459977,115847 -k1,16348:15541395,42245336:3277 -h1,16348:19765214,42245336:0,411205,112570 -) -k1,16348:20009699,42245336:241208 -k1,16348:21663208,42245336:241208 -k1,16348:23095861,42245336:241208 -k1,16348:24951876,42245336:241208 -k1,16348:26212169,42245336:241208 -k1,16348:29202612,42245336:241208 -k1,16348:30103112,42245336:241208 -k1,16348:30700180,42245336:241208 -k1,16348:32583029,42245336:0 -) -(1,16349:6630773,43086824:25952256,513147,134348 -k1,16348:8215054,43086824:358102 -k1,16348:9556197,43086824:358103 -k1,16348:11355436,43086824:358102 -k1,16348:12904984,43086824:358103 -k1,16348:15004378,43086824:358102 -k1,16348:15718341,43086824:358103 -k1,16348:17949462,43086824:358102 -k1,16348:21282244,43086824:358103 -k1,16348:23679826,43086824:358102 -k1,16348:27158098,43086824:358103 -(1,16348:27158098,43086824:0,459977,115847 -r1,16348:31033482,43086824:3875384,575824,115847 -k1,16348:27158098,43086824:-3875384 -) -(1,16348:27158098,43086824:3875384,459977,115847 -k1,16348:27158098,43086824:3277 -h1,16348:31030205,43086824:0,411205,112570 -) -k1,16348:31391584,43086824:358102 -k1,16349:32583029,43086824:0 -) -(1,16349:6630773,43928312:25952256,513147,126483 -(1,16348:6630773,43928312:0,459977,115847 -r1,16348:10857869,43928312:4227096,575824,115847 -k1,16348:6630773,43928312:-4227096 -) -(1,16348:6630773,43928312:4227096,459977,115847 -k1,16348:6630773,43928312:3277 -h1,16348:10854592,43928312:0,411205,112570 -) -k1,16348:11094920,43928312:237051 -k1,16348:12436253,43928312:237051 -k1,16348:13959121,43928312:237052 -k1,16348:14943938,43928312:237051 -k1,16348:16694215,43928312:237051 -k1,16348:18325217,43928312:237051 -k1,16348:19727499,43928312:237052 -k1,16348:22272728,43928312:237051 -k1,16348:23161207,43928312:237051 -k1,16348:24810559,43928312:237051 -k1,16348:26239055,43928312:237051 -k1,16348:28090914,43928312:237052 -k1,16348:30349751,43928312:237051 -k1,16348:31900144,43928312:237051 -k1,16348:32583029,43928312:0 -) -(1,16349:6630773,44769800:25952256,513147,134348 -g1,16348:8056181,44769800 -g1,16348:9568752,44769800 -g1,16348:10427273,44769800 -g1,16348:13593972,44769800 -k1,16349:32583029,44769800:15914108 -g1,16349:32583029,44769800 -) -(1,16351:6630773,45611288:25952256,513147,134348 -h1,16350:6630773,45611288:983040,0,0 -k1,16350:9004159,45611288:193659 -k1,16350:11947053,45611288:193659 -k1,16350:12800004,45611288:193659 -k1,16350:14012747,45611288:193658 -k1,16350:16089255,45611288:193659 -k1,16350:17265954,45611288:193659 -k1,16350:18451173,45611288:193659 -k1,16350:21423559,45611288:193659 -k1,16350:22303380,45611288:193659 -k1,16350:22852899,45611288:193659 -k1,16350:26021236,45611288:193658 -k1,16350:28192772,45611288:193659 -k1,16350:29045723,45611288:193659 -k1,16350:31252648,45611288:193659 -k1,16350:32583029,45611288:0 -) -] -(1,16353:32583029,45706769:0,0,0 -g1,16353:32583029,45706769 -) -) -] -(1,16353:6630773,47279633:25952256,0,0 -h1,16353:6630773,47279633:25952256,0,0 -) -] -h1,16353:4262630,4025873:0,0,0 +k1,16384:3078556,49800853:-34777008 +) +] +g1,16384:6630773,4812305 +g1,16384:6630773,4812305 +g1,16384:9744388,4812305 +g1,16384:11175694,4812305 +k1,16384:31387652,4812305:20211958 +) +) +] +[1,16384:6630773,45706769:25952256,40108032,0 +(1,16384:6630773,45706769:25952256,40108032,0 +(1,16384:6630773,45706769:0,0,0 +g1,16384:6630773,45706769 +) +[1,16384:6630773,45706769:25952256,40108032,0 +v1,16344:6630773,6254097:0,393216,0 +(1,16344:6630773,19768549:25952256,13907668,616038 +g1,16344:6630773,19768549 +(1,16344:6630773,19768549:25952256,13907668,616038 +(1,16344:6630773,20384587:25952256,14523706,0 +[1,16344:6630773,20384587:25952256,14523706,0 +(1,16344:6630773,20358373:25952256,14497492,0 +r1,16344:6656987,20358373:26214,14497492,0 +[1,16344:6656987,20358373:25899828,14497492,0 +(1,16344:6656987,19768549:25899828,13317844,0 +[1,16344:7246811,19768549:24720180,13317844,0 +v1,16325:7246811,6843921:0,393216,0 +(1,16342:7246811,19047653:24720180,12596948,196608 +g1,16342:7246811,19047653 +g1,16342:7246811,19047653 +g1,16342:7050203,19047653 +(1,16342:7050203,19047653:0,12596948,196608 +r1,16344:32163599,19047653:25113396,12793556,196608 +k1,16342:7050203,19047653:-25113396 +) +(1,16342:7050203,19047653:25113396,12596948,196608 +[1,16342:7246811,19047653:24720180,12400340,0 +(1,16327:7246811,7057831:24720180,410518,107478 +(1,16326:7246811,7057831:0,0,0 +g1,16326:7246811,7057831 +g1,16326:7246811,7057831 +g1,16326:6919131,7057831 +(1,16326:6919131,7057831:0,0,0 +) +g1,16326:7246811,7057831 +) +k1,16327:7246811,7057831:0 +g1,16327:12621288,7057831 +g1,16327:13253580,7057831 +g1,16327:24002533,7057831 +g1,16327:27163990,7057831 +g1,16327:27796282,7057831 +h1,16327:28744719,7057831:0,0,0 +k1,16327:31966991,7057831:3222272 +g1,16327:31966991,7057831 +) +(1,16332:7246811,8379369:24720180,410518,101187 +g1,16331:8195248,8379369 +g1,16331:10408268,8379369 +g1,16331:11988997,8379369 +g1,16331:14202017,8379369 +k1,16331:31966991,8379369:13338934 +g1,16332:31966991,8379369 +) +(1,16332:7246811,9045547:24720180,404226,76021 +g1,16331:8195248,9045547 +k1,16331:31966992,9045547:22191016 +g1,16332:31966992,9045547 +) +(1,16332:7246811,9711725:24720180,404226,82312 +g1,16331:8195248,9711725 +g1,16331:8511394,9711725 +g1,16331:10092123,9711725 +g1,16331:10724415,9711725 +k1,16331:31966991,9711725:17132682 +g1,16332:31966991,9711725 +) +(1,16332:7246811,10377903:24720180,404226,82312 +g1,16331:8195248,10377903 +g1,16331:8511394,10377903 +g1,16331:10092123,10377903 +g1,16331:10724415,10377903 +k1,16331:31966991,10377903:17132682 +g1,16332:31966991,10377903 +) +(1,16332:7246811,11044081:24720180,404226,82312 +g1,16331:8195248,11044081 +g1,16331:8511394,11044081 +g1,16331:10092123,11044081 +g1,16331:10724415,11044081 +k1,16331:31966991,11044081:17132682 +g1,16332:31966991,11044081 +) +(1,16332:7246811,11710259:24720180,404226,76021 +g1,16331:8195248,11710259 +g1,16331:8511394,11710259 +g1,16331:10092123,11710259 +g1,16331:10724415,11710259 +k1,16331:31966991,11710259:16500391 +g1,16332:31966991,11710259 +) +(1,16332:7246811,12376437:24720180,404226,76021 +g1,16331:8195248,12376437 +k1,16332:31966990,12376437:23455596 +g1,16332:31966990,12376437 +) +(1,16333:7246811,13042615:24720180,410518,107478 +g1,16333:8195248,13042615 +g1,16333:11040559,13042615 +g1,16333:11672851,13042615 +g1,16333:14202017,13042615 +k1,16333:31966991,13042615:15235809 +g1,16333:31966991,13042615 +) +(1,16333:7246811,13708793:24720180,410518,101187 +g1,16333:8195248,13708793 +g1,16333:9459831,13708793 +g1,16333:9775977,13708793 +g1,16333:11040560,13708793 +g1,16333:13885871,13708793 +g1,16333:16098891,13708793 +g1,16333:16415037,13708793 +g1,16333:16731183,13708793 +g1,16333:17047329,13708793 +g1,16333:17363475,13708793 +g1,16333:17679621,13708793 +g1,16333:17995767,13708793 +g1,16333:18311913,13708793 +g1,16333:18628059,13708793 +g1,16333:18944205,13708793 +g1,16333:19260351,13708793 +g1,16333:19576497,13708793 +g1,16333:19892643,13708793 +g1,16333:20208789,13708793 +g1,16333:20524935,13708793 +g1,16333:20841081,13708793 +g1,16333:21157227,13708793 +g1,16333:21473373,13708793 +g1,16333:21789519,13708793 +g1,16333:22105665,13708793 +g1,16333:22421811,13708793 +g1,16333:22737957,13708793 +g1,16333:23054103,13708793 +g1,16333:23370249,13708793 +g1,16333:23686395,13708793 +g1,16333:24002541,13708793 +g1,16333:24318687,13708793 +g1,16333:24634833,13708793 +k1,16333:31966991,13708793:6067575 +g1,16333:31966991,13708793 +) +(1,16333:7246811,14374971:24720180,404226,107478 +g1,16333:8195248,14374971 +g1,16333:8511394,14374971 +g1,16333:9143686,14374971 +g1,16333:10724415,14374971 +g1,16333:11356707,14374971 +g1,16333:13569727,14374971 +g1,16333:13885873,14374971 +g1,16333:14202019,14374971 +g1,16333:14518165,14374971 +g1,16333:14834311,14374971 +g1,16333:15150457,14374971 +g1,16333:15782749,14374971 +k1,16333:31966991,14374971:6067581 +g1,16333:31966991,14374971 +) +(1,16341:7246811,15041149:24720180,404226,6290 +(1,16333:7246811,15041149:0,0,0 +g1,16333:7246811,15041149 +g1,16333:7246811,15041149 +g1,16333:6919131,15041149 +(1,16333:6919131,15041149:0,0,0 +) +g1,16333:7246811,15041149 +) +g1,16341:8195248,15041149 +g1,16341:8827540,15041149 +g1,16341:9459832,15041149 +g1,16341:11988998,15041149 +g1,16341:12621290,15041149 +g1,16341:13253582,15041149 +h1,16341:13569728,15041149:0,0,0 +k1,16341:31966992,15041149:18397264 +g1,16341:31966992,15041149 +) +(1,16341:7246811,15707327:24720180,404226,9436 +h1,16341:7246811,15707327:0,0,0 +g1,16341:8195248,15707327 +g1,16341:8511394,15707327 +g1,16341:8827540,15707327 +g1,16341:9143686,15707327 +g1,16341:10724415,15707327 +g1,16341:11040561,15707327 +g1,16341:12621290,15707327 +g1,16341:12937436,15707327 +g1,16341:14518165,15707327 +h1,16341:15782748,15707327:0,0,0 +k1,16341:31966991,15707327:16184243 +g1,16341:31966991,15707327 +) +(1,16341:7246811,16373505:24720180,404226,6290 +h1,16341:7246811,16373505:0,0,0 +g1,16341:8195248,16373505 +g1,16341:8511394,16373505 +g1,16341:8827540,16373505 +g1,16341:10724415,16373505 +g1,16341:12621290,16373505 +g1,16341:14518165,16373505 +k1,16341:14518165,16373505:0 +h1,16341:16098894,16373505:0,0,0 +k1,16341:31966991,16373505:15868097 +g1,16341:31966991,16373505 +) +(1,16341:7246811,17039683:24720180,388497,9436 +h1,16341:7246811,17039683:0,0,0 +g1,16341:8195248,17039683 +g1,16341:8827540,17039683 +g1,16341:9143686,17039683 +g1,16341:9459832,17039683 +g1,16341:10092124,17039683 +g1,16341:10408270,17039683 +g1,16341:10724416,17039683 +g1,16341:11040562,17039683 +g1,16341:12621291,17039683 +g1,16341:12937437,17039683 +g1,16341:13253583,17039683 +g1,16341:14518166,17039683 +h1,16341:15466603,17039683:0,0,0 +k1,16341:31966991,17039683:16500388 +g1,16341:31966991,17039683 +) +(1,16341:7246811,17705861:24720180,388497,9436 +h1,16341:7246811,17705861:0,0,0 +g1,16341:8195248,17705861 +g1,16341:8827540,17705861 +g1,16341:9143686,17705861 +g1,16341:9459832,17705861 +g1,16341:10724415,17705861 +g1,16341:11040561,17705861 +g1,16341:12621290,17705861 +g1,16341:12937436,17705861 +g1,16341:13253582,17705861 +g1,16341:13569728,17705861 +g1,16341:14518165,17705861 +h1,16341:15466602,17705861:0,0,0 +k1,16341:31966991,17705861:16500389 +g1,16341:31966991,17705861 +) +(1,16341:7246811,18372039:24720180,388497,9436 +h1,16341:7246811,18372039:0,0,0 +g1,16341:8195248,18372039 +g1,16341:8827540,18372039 +g1,16341:9143686,18372039 +g1,16341:10724415,18372039 +g1,16341:11040561,18372039 +g1,16341:12621290,18372039 +g1,16341:12937436,18372039 +g1,16341:13253582,18372039 +g1,16341:13569728,18372039 +g1,16341:14518165,18372039 +h1,16341:15466602,18372039:0,0,0 +k1,16341:31966991,18372039:16500389 +g1,16341:31966991,18372039 +) +(1,16341:7246811,19038217:24720180,404226,9436 +h1,16341:7246811,19038217:0,0,0 +g1,16341:8195248,19038217 +g1,16341:8827540,19038217 +g1,16341:9143686,19038217 +g1,16341:10092123,19038217 +g1,16341:10408269,19038217 +g1,16341:10724415,19038217 +g1,16341:11040561,19038217 +g1,16341:11988998,19038217 +g1,16341:12305144,19038217 +g1,16341:12621290,19038217 +g1,16341:12937436,19038217 +g1,16341:14518165,19038217 +h1,16341:15466602,19038217:0,0,0 +k1,16341:31966991,19038217:16500389 +g1,16341:31966991,19038217 +) +] +) +g1,16342:31966991,19047653 +g1,16342:7246811,19047653 +g1,16342:7246811,19047653 +g1,16342:31966991,19047653 +g1,16342:31966991,19047653 +) +h1,16342:7246811,19244261:0,0,0 +] +) +] +r1,16344:32583029,20358373:26214,14497492,0 +) +] +) +) +g1,16344:32583029,19768549 +) +h1,16344:6630773,20384587:0,0,0 +(1,16351:6630773,21750363:25952256,513147,126483 +h1,16350:6630773,21750363:983040,0,0 +k1,16350:8982738,21750363:172238 +(1,16350:8982738,21750363:0,452978,115847 +r1,16350:11099563,21750363:2116825,568825,115847 +k1,16350:8982738,21750363:-2116825 +) +(1,16350:8982738,21750363:2116825,452978,115847 +k1,16350:8982738,21750363:3277 +h1,16350:11096286,21750363:0,411205,112570 +) +k1,16350:11271802,21750363:172239 +k1,16350:14469837,21750363:172238 +k1,16350:16209696,21750363:172238 +k1,16350:18405031,21750363:172239 +k1,16350:19568829,21750363:172238 +k1,16350:20760153,21750363:172239 +k1,16350:24704643,21750363:172238 +k1,16350:25528309,21750363:172238 +(1,16350:25528309,21750363:0,452978,115847 +r1,16350:27645134,21750363:2116825,568825,115847 +k1,16350:25528309,21750363:-2116825 +) +(1,16350:25528309,21750363:2116825,452978,115847 +k1,16350:25528309,21750363:3277 +h1,16350:27641857,21750363:0,411205,112570 +) +k1,16350:27817373,21750363:172239 +k1,16350:31015408,21750363:172238 +k1,16350:32583029,21750363:0 +) +(1,16351:6630773,22591851:25952256,505283,126483 +k1,16350:8820856,22591851:305269 +k1,16350:9753960,22591851:305269 +k1,16350:12725234,22591851:305269 +k1,16350:13681931,22591851:305269 +k1,16350:15006284,22591851:305268 +k1,16350:18150573,22591851:305269 +(1,16350:18150573,22591851:0,452978,115847 +r1,16350:22025957,22591851:3875384,568825,115847 +k1,16350:18150573,22591851:-3875384 +) +(1,16350:18150573,22591851:3875384,452978,115847 +k1,16350:18150573,22591851:3277 +h1,16350:22022680,22591851:0,411205,112570 +) +k1,16350:22504896,22591851:305269 +(1,16350:22504896,22591851:0,452978,115847 +r1,16350:26731992,22591851:4227096,568825,115847 +k1,16350:22504896,22591851:-4227096 +) +(1,16350:22504896,22591851:4227096,452978,115847 +k1,16350:22504896,22591851:3277 +h1,16350:26728715,22591851:0,411205,112570 +) +k1,16350:27210931,22591851:305269 +(1,16350:27210931,22591851:0,452978,115847 +r1,16350:31086315,22591851:3875384,568825,115847 +k1,16350:27210931,22591851:-3875384 +) +(1,16350:27210931,22591851:3875384,452978,115847 +k1,16350:27210931,22591851:3277 +h1,16350:31083038,22591851:0,411205,112570 +) +k1,16350:31391584,22591851:305269 +k1,16351:32583029,22591851:0 +) +(1,16351:6630773,23433339:25952256,513147,126483 +(1,16350:6630773,23433339:0,452978,115847 +r1,16350:11209581,23433339:4578808,568825,115847 +k1,16350:6630773,23433339:-4578808 +) +(1,16350:6630773,23433339:4578808,452978,115847 +k1,16350:6630773,23433339:3277 +h1,16350:11206304,23433339:0,411205,112570 +) +k1,16350:11663452,23433339:280201 +k1,16350:13966748,23433339:280200 +k1,16350:17007325,23433339:280201 +k1,16350:20313323,23433339:280201 +k1,16350:21878029,23433339:280200 +k1,16350:23773037,23433339:280201 +k1,16350:29547121,23433339:280201 +k1,16350:31096017,23433339:280119 +k1,16350:32583029,23433339:0 +) +(1,16351:6630773,24274827:25952256,513147,126483 +k1,16350:7882053,24274827:297731 +k1,16350:12212870,24274827:297731 +k1,16350:13908484,24274827:297731 +k1,16350:15225299,24274827:297730 +k1,16350:16615515,24274827:297731 +k1,16350:17580402,24274827:297731 +(1,16350:17580402,24274827:0,452978,115847 +r1,16350:23566057,24274827:5985655,568825,115847 +k1,16350:17580402,24274827:-5985655 +) +(1,16350:17580402,24274827:5985655,452978,115847 +k1,16350:17580402,24274827:3277 +h1,16350:23562780,24274827:0,411205,112570 +) +k1,16350:23863788,24274827:297731 +k1,16350:24812947,24274827:297731 +k1,16350:27730807,24274827:297731 +k1,16350:28384397,24274827:297730 +k1,16350:29908307,24274827:297731 +k1,16350:31189078,24274827:297731 +k1,16350:32583029,24274827:0 +) +(1,16351:6630773,25116315:25952256,513147,126483 +g1,16350:12490347,25116315 +g1,16350:14423659,25116315 +g1,16350:17134883,25116315 +g1,16350:18281763,25116315 +g1,16350:20662686,25116315 +g1,16350:22129381,25116315 +k1,16351:32583029,25116315:7502562 +g1,16351:32583029,25116315 +) +v1,16353:6630773,26306781:0,393216,0 +(1,16358:6630773,27294347:25952256,1380782,196608 +g1,16358:6630773,27294347 +g1,16358:6630773,27294347 +g1,16358:6434165,27294347 +(1,16358:6434165,27294347:0,1380782,196608 +r1,16358:32779637,27294347:26345472,1577390,196608 +k1,16358:6434165,27294347:-26345472 +) +(1,16358:6434165,27294347:26345472,1380782,196608 +[1,16358:6630773,27294347:25952256,1184174,0 +(1,16355:6630773,26520691:25952256,410518,101187 +(1,16354:6630773,26520691:0,0,0 +g1,16354:6630773,26520691 +g1,16354:6630773,26520691 +g1,16354:6303093,26520691 +(1,16354:6303093,26520691:0,0,0 +) +g1,16354:6630773,26520691 +) +k1,16355:6630773,26520691:0 +g1,16355:13902124,26520691 +g1,16355:15482853,26520691 +g1,16355:16115145,26520691 +k1,16355:16115145,26520691:0 +h1,16355:20857330,26520691:0,0,0 +k1,16355:32583029,26520691:11725699 +g1,16355:32583029,26520691 +) +(1,16356:6630773,27186869:25952256,410518,107478 +h1,16356:6630773,27186869:0,0,0 +g1,16356:14850561,27186869 +g1,16356:16747435,27186869 +g1,16356:17379727,27186869 +h1,16356:20541184,27186869:0,0,0 +k1,16356:32583029,27186869:12041845 +g1,16356:32583029,27186869 +) +] +) +g1,16358:32583029,27294347 +g1,16358:6630773,27294347 +g1,16358:6630773,27294347 +g1,16358:32583029,27294347 +g1,16358:32583029,27294347 +) +h1,16358:6630773,27490955:0,0,0 +(1,16363:6630773,28681421:25952256,513147,134348 +h1,16361:6630773,28681421:983040,0,0 +g1,16361:9275150,28681421 +g1,16361:11195354,28681421 +g1,16361:11750443,28681421 +g1,16361:12932712,28681421 +g1,16361:16493938,28681421 +g1,16361:17712252,28681421 +g1,16361:20886816,28681421 +g1,16361:22485894,28681421 +k1,16363:32583029,28681421:10097135 +g1,16363:32583029,28681421 +) +v1,16363:6630773,29871887:0,393216,0 +(1,16372:6630773,33366354:25952256,3887683,196608 +g1,16372:6630773,33366354 +g1,16372:6630773,33366354 +g1,16372:6434165,33366354 +(1,16372:6434165,33366354:0,3887683,196608 +r1,16372:32779637,33366354:26345472,4084291,196608 +k1,16372:6434165,33366354:-26345472 +) +(1,16372:6434165,33366354:26345472,3887683,196608 +[1,16372:6630773,33366354:25952256,3691075,0 +(1,16371:6630773,29953152:25952256,277873,101187 +(1,16364:6630773,29953152:0,0,0 +g1,16364:6630773,29953152 +g1,16364:6630773,29953152 +g1,16364:6303093,29953152 +(1,16364:6303093,29953152:0,0,0 +) +g1,16364:6630773,29953152 +) +k1,16371:6630773,29953152:0 +k1,16371:6630773,29953152:0 +h1,16371:8211501,29953152:0,0,0 +k1,16371:32583029,29953152:24371528 +g1,16371:32583029,29953152 +) +(1,16371:6630773,30619330:25952256,388497,82312 +h1,16371:6630773,30619330:0,0,0 +k1,16371:6630773,30619330:0 +h1,16371:8843793,30619330:0,0,0 +k1,16371:32583029,30619330:23739236 +g1,16371:32583029,30619330 +) +(1,16371:6630773,31285508:25952256,404226,82312 +h1,16371:6630773,31285508:0,0,0 +k1,16371:6630773,31285508:0 +h1,16371:8843793,31285508:0,0,0 +k1,16371:32583029,31285508:23739236 +g1,16371:32583029,31285508 +) +(1,16371:6630773,31951686:25952256,388497,82312 +h1,16371:6630773,31951686:0,0,0 +k1,16371:6630773,31951686:0 +h1,16371:8843793,31951686:0,0,0 +k1,16371:32583029,31951686:23739236 +g1,16371:32583029,31951686 +) +(1,16371:6630773,32617864:25952256,404226,82312 +h1,16371:6630773,32617864:0,0,0 +k1,16371:6630773,32617864:0 +h1,16371:8843793,32617864:0,0,0 +k1,16371:32583029,32617864:23739236 +g1,16371:32583029,32617864 +) +(1,16371:6630773,33284042:25952256,388497,82312 +h1,16371:6630773,33284042:0,0,0 +k1,16371:6630773,33284042:0 +h1,16371:8843793,33284042:0,0,0 +k1,16371:32583029,33284042:23739236 +g1,16371:32583029,33284042 +) +] +) +g1,16372:32583029,33366354 +g1,16372:6630773,33366354 +g1,16372:6630773,33366354 +g1,16372:32583029,33366354 +g1,16372:32583029,33366354 +) +h1,16372:6630773,33562962:0,0,0 +v1,16376:6630773,35453026:0,393216,0 +(1,16377:6630773,38580546:25952256,3520736,616038 +g1,16377:6630773,38580546 +(1,16377:6630773,38580546:25952256,3520736,616038 +(1,16377:6630773,39196584:25952256,4136774,0 +[1,16377:6630773,39196584:25952256,4136774,0 +(1,16377:6630773,39170370:25952256,4084346,0 +r1,16377:6656987,39170370:26214,4084346,0 +[1,16377:6656987,39170370:25899828,4084346,0 +(1,16377:6656987,38580546:25899828,2904698,0 +[1,16377:7246811,38580546:24720180,2904698,0 +(1,16377:7246811,36763222:24720180,1087374,126483 +k1,16376:8733323,36763222:276809 +k1,16376:11892404,36763222:276808 +k1,16376:13188298,36763222:276809 +k1,16376:15623863,36763222:276809 +k1,16376:17468292,36763222:276808 +(1,16376:17468292,36763222:0,452978,115847 +r1,16377:23453947,36763222:5985655,568825,115847 +k1,16376:17468292,36763222:-5985655 +) +(1,16376:17468292,36763222:5985655,452978,115847 +k1,16376:17468292,36763222:3277 +h1,16376:23450670,36763222:0,411205,112570 +) +k1,16376:23730756,36763222:276809 +k1,16376:25199010,36763222:276809 +(1,16376:25199010,36763222:0,452978,115847 +r1,16377:29074394,36763222:3875384,568825,115847 +k1,16376:25199010,36763222:-3875384 +) +(1,16376:25199010,36763222:3875384,452978,115847 +k1,16376:25199010,36763222:3277 +h1,16376:29071117,36763222:0,411205,112570 +) +k1,16376:29524872,36763222:276808 +k1,16376:31435494,36763222:276809 +k1,16376:31966991,36763222:0 +) +(1,16377:7246811,37604710:24720180,513147,126483 +k1,16376:8460639,37604710:194743 +k1,16376:12168767,37604710:194743 +k1,16376:13938996,37604710:194743 +k1,16376:14591836,37604710:194743 +k1,16376:16911912,37604710:194743 +k1,16376:18804693,37604710:194743 +k1,16376:20169909,37604710:194743 +k1,16376:22546346,37604710:194743 +k1,16376:23760174,37604710:194743 +k1,16376:26241468,37604710:194743 +k1,16376:27704983,37604710:194738 +k1,16376:28882766,37604710:194743 +k1,16376:30344975,37604710:194743 +k1,16376:31966991,37604710:0 +) +(1,16377:7246811,38446198:24720180,513147,134348 +g1,16376:8672219,38446198 +g1,16376:11205185,38446198 +g1,16376:12574887,38446198 +g1,16376:13765676,38446198 +g1,16376:15873969,38446198 +g1,16376:17467149,38446198 +g1,16376:18685463,38446198 +g1,16376:20726254,38446198 +g1,16376:23437478,38446198 +g1,16376:24295999,38446198 +g1,16376:25954059,38446198 +k1,16377:31966991,38446198:2402554 +g1,16377:31966991,38446198 +) +] +) +] +r1,16377:32583029,39170370:26214,4084346,0 +) +] +) +) +g1,16377:32583029,38580546 +) +h1,16377:6630773,39196584:0,0,0 +(1,16380:6630773,40562360:25952256,513147,126483 +h1,16379:6630773,40562360:983040,0,0 +k1,16379:9041531,40562360:231031 +k1,16379:10538718,40562360:231031 +k1,16379:11429041,40562360:231031 +k1,16379:14685869,40562360:231031 +(1,16379:14685869,40562360:0,452978,115847 +r1,16379:18912965,40562360:4227096,568825,115847 +k1,16379:14685869,40562360:-4227096 +) +(1,16379:14685869,40562360:4227096,452978,115847 +k1,16379:14685869,40562360:3277 +h1,16379:18909688,40562360:0,411205,112570 +) +k1,16379:19143997,40562360:231032 +k1,16379:20566473,40562360:231031 +(1,16379:20566473,40562360:0,452978,115847 +r1,16379:25145281,40562360:4578808,568825,115847 +k1,16379:20566473,40562360:-4578808 +) +(1,16379:20566473,40562360:4578808,452978,115847 +k1,16379:20566473,40562360:3277 +h1,16379:25142004,40562360:0,411205,112570 +) +k1,16379:25376312,40562360:231031 +k1,16379:27019644,40562360:231031 +k1,16379:28442120,40562360:231031 +k1,16379:30287958,40562360:231031 +k1,16380:32583029,40562360:0 +) +(1,16380:6630773,41403848:25952256,505283,126483 +k1,16379:7713860,41403848:190487 +k1,16379:10212526,41403848:190488 +k1,16379:12863235,41403848:190487 +k1,16379:16704078,41403848:190488 +k1,16379:19662806,41403848:190487 +k1,16379:20504722,41403848:190488 +k1,16379:22129137,41403848:190487 +k1,16379:22734459,41403848:190479 +(1,16379:22734459,41403848:0,452978,115847 +r1,16379:26609843,41403848:3875384,568825,115847 +k1,16379:22734459,41403848:-3875384 +) +(1,16379:22734459,41403848:3875384,452978,115847 +k1,16379:22734459,41403848:3277 +h1,16379:26606566,41403848:0,411205,112570 +) +k1,16379:26800331,41403848:190488 +k1,16379:28182263,41403848:190487 +(1,16379:28182263,41403848:0,452978,115847 +r1,16379:32409359,41403848:4227096,568825,115847 +k1,16379:28182263,41403848:-4227096 +) +(1,16379:28182263,41403848:4227096,452978,115847 +k1,16379:28182263,41403848:3277 +h1,16379:32406082,41403848:0,411205,112570 +) +k1,16379:32583029,41403848:0 +) +(1,16380:6630773,42245336:25952256,513147,115847 +k1,16379:9992150,42245336:241208 +(1,16379:9992150,42245336:0,459977,115847 +r1,16379:13867534,42245336:3875384,575824,115847 +k1,16379:9992150,42245336:-3875384 +) +(1,16379:9992150,42245336:3875384,459977,115847 +k1,16379:9992150,42245336:3277 +h1,16379:13864257,42245336:0,411205,112570 +) +k1,16379:14108742,42245336:241208 +k1,16379:15541395,42245336:241208 +(1,16379:15541395,42245336:0,459977,115847 +r1,16379:19768491,42245336:4227096,575824,115847 +k1,16379:15541395,42245336:-4227096 +) +(1,16379:15541395,42245336:4227096,459977,115847 +k1,16379:15541395,42245336:3277 +h1,16379:19765214,42245336:0,411205,112570 +) +k1,16379:20009699,42245336:241208 +k1,16379:21663208,42245336:241208 +k1,16379:23095861,42245336:241208 +k1,16379:24951876,42245336:241208 +k1,16379:26212169,42245336:241208 +k1,16379:29202612,42245336:241208 +k1,16379:30103112,42245336:241208 +k1,16379:30700180,42245336:241208 +k1,16379:32583029,42245336:0 +) +(1,16380:6630773,43086824:25952256,513147,134348 +k1,16379:8215054,43086824:358102 +k1,16379:9556197,43086824:358103 +k1,16379:11355436,43086824:358102 +k1,16379:12904984,43086824:358103 +k1,16379:15004378,43086824:358102 +k1,16379:15718341,43086824:358103 +k1,16379:17949462,43086824:358102 +k1,16379:21282244,43086824:358103 +k1,16379:23679826,43086824:358102 +k1,16379:27158098,43086824:358103 +(1,16379:27158098,43086824:0,459977,115847 +r1,16379:31033482,43086824:3875384,575824,115847 +k1,16379:27158098,43086824:-3875384 +) +(1,16379:27158098,43086824:3875384,459977,115847 +k1,16379:27158098,43086824:3277 +h1,16379:31030205,43086824:0,411205,112570 +) +k1,16379:31391584,43086824:358102 +k1,16380:32583029,43086824:0 +) +(1,16380:6630773,43928312:25952256,513147,126483 +(1,16379:6630773,43928312:0,459977,115847 +r1,16379:10857869,43928312:4227096,575824,115847 +k1,16379:6630773,43928312:-4227096 +) +(1,16379:6630773,43928312:4227096,459977,115847 +k1,16379:6630773,43928312:3277 +h1,16379:10854592,43928312:0,411205,112570 +) +k1,16379:11094920,43928312:237051 +k1,16379:12436253,43928312:237051 +k1,16379:13959121,43928312:237052 +k1,16379:14943938,43928312:237051 +k1,16379:16694215,43928312:237051 +k1,16379:18325217,43928312:237051 +k1,16379:19727499,43928312:237052 +k1,16379:22272728,43928312:237051 +k1,16379:23161207,43928312:237051 +k1,16379:24810559,43928312:237051 +k1,16379:26239055,43928312:237051 +k1,16379:28090914,43928312:237052 +k1,16379:30349751,43928312:237051 +k1,16379:31900144,43928312:237051 +k1,16379:32583029,43928312:0 +) +(1,16380:6630773,44769800:25952256,513147,134348 +g1,16379:8056181,44769800 +g1,16379:9568752,44769800 +g1,16379:10427273,44769800 +g1,16379:13593972,44769800 +k1,16380:32583029,44769800:15914108 +g1,16380:32583029,44769800 +) +(1,16382:6630773,45611288:25952256,513147,134348 +h1,16381:6630773,45611288:983040,0,0 +k1,16381:9004159,45611288:193659 +k1,16381:11947053,45611288:193659 +k1,16381:12800004,45611288:193659 +k1,16381:14012747,45611288:193658 +k1,16381:16089255,45611288:193659 +k1,16381:17265954,45611288:193659 +k1,16381:18451173,45611288:193659 +k1,16381:21423559,45611288:193659 +k1,16381:22303380,45611288:193659 +k1,16381:22852899,45611288:193659 +k1,16381:26021236,45611288:193658 +k1,16381:28192772,45611288:193659 +k1,16381:29045723,45611288:193659 +k1,16381:31252648,45611288:193659 +k1,16381:32583029,45611288:0 +) +] +(1,16384:32583029,45706769:0,0,0 +g1,16384:32583029,45706769 +) +) +] +(1,16384:6630773,47279633:25952256,0,0 +h1,16384:6630773,47279633:25952256,0,0 +) +] +h1,16384:4262630,4025873:0,0,0 ] !26347 }318 -Input:2481:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2482:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2483:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:2478:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2479:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2480:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {319 -[1,16434:4262630,47279633:28320399,43253760,0 -(1,16434:4262630,4025873:0,0,0 -[1,16434:-473657,4025873:25952256,0,0 -(1,16434:-473657,-710414:25952256,0,0 -h1,16434:-473657,-710414:0,0,0 -(1,16434:-473657,-710414:0,0,0 -(1,16434:-473657,-710414:0,0,0 -g1,16434:-473657,-710414 -(1,16434:-473657,-710414:65781,0,65781 -g1,16434:-407876,-710414 -[1,16434:-407876,-644633:0,0,0 +[1,16465:4262630,47279633:28320399,43253760,0 +(1,16465:4262630,4025873:0,0,0 +[1,16465:-473657,4025873:25952256,0,0 +(1,16465:-473657,-710414:25952256,0,0 +h1,16465:-473657,-710414:0,0,0 +(1,16465:-473657,-710414:0,0,0 +(1,16465:-473657,-710414:0,0,0 +g1,16465:-473657,-710414 +(1,16465:-473657,-710414:65781,0,65781 +g1,16465:-407876,-710414 +[1,16465:-407876,-644633:0,0,0 ] ) -k1,16434:-473657,-710414:-65781 +k1,16465:-473657,-710414:-65781 ) ) -k1,16434:25478599,-710414:25952256 -g1,16434:25478599,-710414 +k1,16465:25478599,-710414:25952256 +g1,16465:25478599,-710414 ) ] ) -[1,16434:6630773,47279633:25952256,43253760,0 -[1,16434:6630773,4812305:25952256,786432,0 -(1,16434:6630773,4812305:25952256,505283,126483 -(1,16434:6630773,4812305:25952256,505283,126483 -g1,16434:3078558,4812305 -[1,16434:3078558,4812305:0,0,0 -(1,16434:3078558,2439708:0,1703936,0 -k1,16434:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16434:2537886,2439708:1179648,16384,0 +[1,16465:6630773,47279633:25952256,43253760,0 +[1,16465:6630773,4812305:25952256,786432,0 +(1,16465:6630773,4812305:25952256,505283,126483 +(1,16465:6630773,4812305:25952256,505283,126483 +g1,16465:3078558,4812305 +[1,16465:3078558,4812305:0,0,0 +(1,16465:3078558,2439708:0,1703936,0 +k1,16465:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16465:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16434:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16465:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16434:3078558,4812305:0,0,0 -(1,16434:3078558,2439708:0,1703936,0 -g1,16434:29030814,2439708 -g1,16434:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16434:36151628,1915420:16384,1179648,0 +[1,16465:3078558,4812305:0,0,0 +(1,16465:3078558,2439708:0,1703936,0 +g1,16465:29030814,2439708 +g1,16465:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16465:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16434:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16465:37855564,2439708:1179648,16384,0 ) ) -k1,16434:3078556,2439708:-34777008 +k1,16465:3078556,2439708:-34777008 ) ] -[1,16434:3078558,4812305:0,0,0 -(1,16434:3078558,49800853:0,16384,2228224 -k1,16434:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16434:2537886,49800853:1179648,16384,0 +[1,16465:3078558,4812305:0,0,0 +(1,16465:3078558,49800853:0,16384,2228224 +k1,16465:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16465:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16434:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16465:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16434:3078558,4812305:0,0,0 -(1,16434:3078558,49800853:0,16384,2228224 -g1,16434:29030814,49800853 -g1,16434:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16434:36151628,51504789:16384,1179648,0 +[1,16465:3078558,4812305:0,0,0 +(1,16465:3078558,49800853:0,16384,2228224 +g1,16465:29030814,49800853 +g1,16465:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16465:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16434:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16465:37855564,49800853:1179648,16384,0 ) ) -k1,16434:3078556,49800853:-34777008 +k1,16465:3078556,49800853:-34777008 ) ] -g1,16434:6630773,4812305 -k1,16434:25146660,4812305:17320510 -g1,16434:26880087,4812305 -g1,16434:29193507,4812305 -g1,16434:30603186,4812305 -) -) -] -[1,16434:6630773,45706769:25952256,40108032,0 -(1,16434:6630773,45706769:25952256,40108032,0 -(1,16434:6630773,45706769:0,0,0 -g1,16434:6630773,45706769 +g1,16465:6630773,4812305 +k1,16465:25146660,4812305:17320510 +g1,16465:26880087,4812305 +g1,16465:29193507,4812305 +g1,16465:30603186,4812305 +) +) +] +[1,16465:6630773,45706769:25952256,40108032,0 +(1,16465:6630773,45706769:25952256,40108032,0 +(1,16465:6630773,45706769:0,0,0 +g1,16465:6630773,45706769 ) -[1,16434:6630773,45706769:25952256,40108032,0 -(1,16351:6630773,6254097:25952256,505283,126483 -k1,16350:8264090,6254097:239366 -k1,16350:9522541,6254097:239366 -k1,16350:13086548,6254097:239366 -k1,16350:14609108,6254097:239365 -k1,16350:16016981,6254097:239366 -k1,16350:19052768,6254097:239366 -k1,16350:20245683,6254097:239366 -k1,16350:21577534,6254097:239366 -(1,16350:21577534,6254097:0,452978,115847 -r1,16350:23342647,6254097:1765113,568825,115847 -k1,16350:21577534,6254097:-1765113 -) -(1,16350:21577534,6254097:1765113,452978,115847 -k1,16350:21577534,6254097:3277 -h1,16350:23339370,6254097:0,411205,112570 -) -k1,16350:23582013,6254097:239366 -k1,16350:24472807,6254097:239366 -k1,16350:26294212,6254097:239366 -k1,16350:26991674,6254097:239365 -k1,16350:27955868,6254097:239366 -k1,16350:29891961,6254097:239366 -k1,16350:31414522,6254097:239366 -k1,16350:32583029,6254097:0 -) -(1,16351:6630773,7095585:25952256,513147,126483 -g1,16350:10134983,7095585 -g1,16350:11962782,7095585 -g1,16350:13181096,7095585 -g1,16350:14868648,7095585 -g1,16350:15727169,7095585 -g1,16350:16282258,7095585 -g1,16350:17764682,7095585 -g1,16350:20825213,7095585 -k1,16351:32583029,7095585:10415639 -g1,16351:32583029,7095585 -) -v1,16353:6630773,8286051:0,393216,0 -(1,16376:6630773,17946707:25952256,10053872,196608 -g1,16376:6630773,17946707 -g1,16376:6630773,17946707 -g1,16376:6434165,17946707 -(1,16376:6434165,17946707:0,10053872,196608 -r1,16376:32779637,17946707:26345472,10250480,196608 -k1,16376:6434165,17946707:-26345472 -) -(1,16376:6434165,17946707:26345472,10053872,196608 -[1,16376:6630773,17946707:25952256,9857264,0 -(1,16355:6630773,8499961:25952256,410518,107478 -(1,16354:6630773,8499961:0,0,0 -g1,16354:6630773,8499961 -g1,16354:6630773,8499961 -g1,16354:6303093,8499961 -(1,16354:6303093,8499961:0,0,0 -) -g1,16354:6630773,8499961 -) -g1,16355:9159939,8499961 -g1,16355:10108377,8499961 -g1,16355:14850563,8499961 -g1,16355:15482855,8499961 -k1,16355:15482855,8499961:0 -h1,16355:25915662,8499961:0,0,0 -k1,16355:32583029,8499961:6667367 -g1,16355:32583029,8499961 -) -(1,16356:6630773,9166139:25952256,404226,107478 -h1,16356:6630773,9166139:0,0,0 -k1,16356:6630773,9166139:0 -h1,16356:11372958,9166139:0,0,0 -k1,16356:32583030,9166139:21210072 -g1,16356:32583030,9166139 -) -(1,16360:6630773,9897853:25952256,404226,76021 -(1,16358:6630773,9897853:0,0,0 -g1,16358:6630773,9897853 -g1,16358:6630773,9897853 -g1,16358:6303093,9897853 -(1,16358:6303093,9897853:0,0,0 -) -g1,16358:6630773,9897853 -) -g1,16360:7579210,9897853 -g1,16360:8843793,9897853 -h1,16360:9159939,9897853:0,0,0 -k1,16360:32583029,9897853:23423090 -g1,16360:32583029,9897853 -) -(1,16362:6630773,11219391:25952256,404226,76021 -(1,16361:6630773,11219391:0,0,0 -g1,16361:6630773,11219391 -g1,16361:6630773,11219391 -g1,16361:6303093,11219391 -(1,16361:6303093,11219391:0,0,0 -) -g1,16361:6630773,11219391 -) -k1,16362:6630773,11219391:0 -h1,16362:10424521,11219391:0,0,0 -k1,16362:32583029,11219391:22158508 -g1,16362:32583029,11219391 -) -(1,16375:6630773,11951105:25952256,404226,9436 -(1,16364:6630773,11951105:0,0,0 -g1,16364:6630773,11951105 -g1,16364:6630773,11951105 -g1,16364:6303093,11951105 -(1,16364:6303093,11951105:0,0,0 -) -g1,16364:6630773,11951105 -) -g1,16375:7579210,11951105 -g1,16375:9159939,11951105 -g1,16375:9476085,11951105 -g1,16375:11056814,11951105 -g1,16375:12637543,11951105 -h1,16375:13902126,11951105:0,0,0 -k1,16375:32583030,11951105:18680904 -g1,16375:32583030,11951105 -) -(1,16375:6630773,12617283:25952256,0,0 -h1,16375:6630773,12617283:0,0,0 -h1,16375:6630773,12617283:0,0,0 -k1,16375:32583029,12617283:25952256 -g1,16375:32583029,12617283 -) -(1,16375:6630773,13283461:25952256,388497,9436 -h1,16375:6630773,13283461:0,0,0 -g1,16375:7579210,13283461 -g1,16375:8843793,13283461 -g1,16375:9159939,13283461 -g1,16375:9476085,13283461 -g1,16375:11056814,13283461 -g1,16375:11372960,13283461 -g1,16375:12637543,13283461 -h1,16375:13585980,13283461:0,0,0 -k1,16375:32583028,13283461:18997048 -g1,16375:32583028,13283461 -) -(1,16375:6630773,13949639:25952256,0,0 -h1,16375:6630773,13949639:0,0,0 -h1,16375:6630773,13949639:0,0,0 -k1,16375:32583029,13949639:25952256 -g1,16375:32583029,13949639 -) -(1,16375:6630773,14615817:25952256,388497,9436 -h1,16375:6630773,14615817:0,0,0 -g1,16375:7579210,14615817 -g1,16375:8843793,14615817 -g1,16375:9159939,14615817 -g1,16375:9476085,14615817 -g1,16375:11056814,14615817 -g1,16375:11372960,14615817 -g1,16375:11689106,14615817 -g1,16375:12637543,14615817 -h1,16375:13585980,14615817:0,0,0 -k1,16375:32583028,14615817:18997048 -g1,16375:32583028,14615817 -) -(1,16375:6630773,15281995:25952256,0,0 -h1,16375:6630773,15281995:0,0,0 -h1,16375:6630773,15281995:0,0,0 -k1,16375:32583029,15281995:25952256 -g1,16375:32583029,15281995 -) -(1,16375:6630773,15948173:25952256,388497,9436 -h1,16375:6630773,15948173:0,0,0 -g1,16375:7579210,15948173 -g1,16375:9159939,15948173 -g1,16375:9476085,15948173 -g1,16375:9792231,15948173 -g1,16375:11372960,15948173 -g1,16375:11689106,15948173 -g1,16375:12005252,15948173 -g1,16375:12953689,15948173 -h1,16375:13902126,15948173:0,0,0 -k1,16375:32583030,15948173:18680904 -g1,16375:32583030,15948173 -) -(1,16375:6630773,16614351:25952256,0,0 -h1,16375:6630773,16614351:0,0,0 -h1,16375:6630773,16614351:0,0,0 -k1,16375:32583029,16614351:25952256 -g1,16375:32583029,16614351 -) -(1,16375:6630773,17280529:25952256,404226,9436 -h1,16375:6630773,17280529:0,0,0 -g1,16375:7579210,17280529 -g1,16375:7895356,17280529 -g1,16375:8527648,17280529 -g1,16375:8843794,17280529 -g1,16375:9159940,17280529 -g1,16375:9476086,17280529 -g1,16375:10424523,17280529 -g1,16375:10740669,17280529 -g1,16375:11056815,17280529 -g1,16375:11372961,17280529 -g1,16375:11689107,17280529 -g1,16375:13269836,17280529 -h1,16375:14218273,17280529:0,0,0 -k1,16375:32583029,17280529:18364756 -g1,16375:32583029,17280529 -) -(1,16375:6630773,17946707:25952256,0,0 -h1,16375:6630773,17946707:0,0,0 -h1,16375:6630773,17946707:0,0,0 -k1,16375:32583029,17946707:25952256 -g1,16375:32583029,17946707 -) -] -) -g1,16376:32583029,17946707 -g1,16376:6630773,17946707 -g1,16376:6630773,17946707 -g1,16376:32583029,17946707 -g1,16376:32583029,17946707 -) -h1,16376:6630773,18143315:0,0,0 -v1,16380:6630773,20033379:0,393216,0 -(1,16381:6630773,21736791:25952256,2096628,616038 -g1,16381:6630773,21736791 -(1,16381:6630773,21736791:25952256,2096628,616038 -(1,16381:6630773,22352829:25952256,2712666,0 -[1,16381:6630773,22352829:25952256,2712666,0 -(1,16381:6630773,22326615:25952256,2660238,0 -r1,16381:6656987,22326615:26214,2660238,0 -[1,16381:6656987,22326615:25899828,2660238,0 -(1,16381:6656987,21736791:25899828,1480590,0 -[1,16381:7246811,21736791:24720180,1480590,0 -(1,16381:7246811,21540183:24720180,1283982,196608 -(1,16380:7246811,21540183:0,1283982,196608 -r1,16381:9812056,21540183:2565245,1480590,196608 -k1,16380:7246811,21540183:-2565245 -) -(1,16380:7246811,21540183:2565245,1283982,196608 -) -g1,16380:10011285,21540183 -g1,16380:11359360,21540183 -(1,16380:11359360,21540183:0,459977,115847 -r1,16381:15586456,21540183:4227096,575824,115847 -k1,16380:11359360,21540183:-4227096 -) -(1,16380:11359360,21540183:4227096,459977,115847 -k1,16380:11359360,21540183:3277 -h1,16380:15583179,21540183:0,411205,112570 -) -g1,16380:15785685,21540183 -g1,16380:16636342,21540183 -g1,16380:18450378,21540183 -g1,16380:19005467,21540183 -g1,16380:20187736,21540183 -g1,16380:21671471,21540183 -g1,16380:22974982,21540183 -g1,16380:23921977,21540183 -g1,16380:25533507,21540183 -g1,16380:27126687,21540183 -(1,16380:27126687,21540183:0,452978,115847 -r1,16381:30650359,21540183:3523672,568825,115847 -k1,16380:27126687,21540183:-3523672 -) -(1,16380:27126687,21540183:3523672,452978,115847 -k1,16380:27126687,21540183:3277 -h1,16380:30647082,21540183:0,411205,112570 -) -k1,16381:31966991,21540183:1142962 -g1,16381:31966991,21540183 -) -] -) -] -r1,16381:32583029,22326615:26214,2660238,0 -) -] -) -) -g1,16381:32583029,21736791 -) -h1,16381:6630773,22352829:0,0,0 -(1,16384:6630773,25684685:25952256,32768,229376 -(1,16384:6630773,25684685:0,32768,229376 -(1,16384:6630773,25684685:5505024,32768,229376 -r1,16384:12135797,25684685:5505024,262144,229376 -) -k1,16384:6630773,25684685:-5505024 -) -(1,16384:6630773,25684685:25952256,32768,0 -r1,16384:32583029,25684685:25952256,32768,0 -) -) -(1,16384:6630773,27289013:25952256,615776,14155 -(1,16384:6630773,27289013:1974731,582746,14155 -g1,16384:6630773,27289013 -g1,16384:8605504,27289013 -) -g1,16384:10573157,27289013 -g1,16384:12282860,27289013 -g1,16384:14887523,27289013 -k1,16384:32583029,27289013:16057368 -g1,16384:32583029,27289013 -) -(1,16388:6630773,28523717:25952256,513147,134348 -k1,16387:8279219,28523717:289229 -k1,16387:9881881,28523717:289320 -k1,16387:12542948,28523717:289319 -k1,16387:14058447,28523717:289320 -k1,16387:15741718,28523717:289320 -k1,16387:18225182,28523717:289319 -k1,16387:21180507,28523717:289320 -k1,16387:23726231,28523717:289319 -k1,16387:26501332,28523717:289320 -k1,16387:28180014,28523717:289319 -k1,16387:31422386,28523717:289320 -k1,16388:32583029,28523717:0 -) -(1,16388:6630773,29365205:25952256,505283,134349 -k1,16387:8410223,29365205:216416 -k1,16387:9618200,29365205:216417 -k1,16387:11689285,29365205:216416 -k1,16387:12715071,29365205:216416 -k1,16387:13950573,29365205:216417 -k1,16387:15490799,29365205:216399 -k1,16387:18550822,29365205:216416 -k1,16387:19999316,29365205:216417 -$1,16387:19999316,29365205 -k1,16387:21975226,29365205:0 -k1,16387:22370408,29365205:0 -k1,16387:22765590,29365205:0 -k1,16387:23160772,29365205:0 -k1,16387:24346318,29365205:0 -k1,16387:24741500,29365205:0 -k1,16387:25531864,29365205:0 -k1,16387:25927046,29365205:0 -k1,16387:27112592,29365205:0 -k1,16387:27507774,29365205:0 -k1,16387:28298138,29365205:0 -k1,16387:28693320,29365205:0 -$1,16387:30274048,29365205 -k1,16387:30697558,29365205:216416 -k1,16387:32583029,29365205:0 -) -(1,16388:6630773,30206693:25952256,513147,134348 -k1,16387:8270418,30206693:216858 -k1,16387:11219473,30206693:216859 -k1,16387:12383982,30206693:216858 -k1,16387:15748535,30206693:216859 -k1,16387:18722493,30206693:216858 -k1,16387:20900188,30206693:216858 -k1,16387:23514354,30206693:216859 -k1,16387:26415567,30206693:216858 -k1,16387:29304329,30206693:216859 -k1,16387:31923737,30206693:216858 -k1,16387:32583029,30206693:0 -) -(1,16388:6630773,31048181:25952256,513147,134348 -k1,16387:9359102,31048181:217645 -k1,16387:10643018,31048181:217645 -k1,16387:14385189,31048181:217645 -k1,16387:17250489,31048181:217645 -k1,16387:19582325,31048181:217645 -k1,16387:23932014,31048181:217644 -k1,16387:24808951,31048181:217645 -k1,16387:26045681,31048181:217645 -k1,16387:27675627,31048181:217645 -k1,16387:31092740,31048181:217645 -k1,16387:32583029,31048181:0 -) -(1,16388:6630773,31889669:25952256,513147,134348 -k1,16387:7845357,31889669:195499 -k1,16387:10526637,31889669:195499 -k1,16387:12941837,31889669:195496 -k1,16387:15980943,31889669:195499 -k1,16387:17689668,31889669:195499 -k1,16387:18832818,31889669:195499 -k1,16387:20297094,31889669:195499 -k1,16387:22321047,31889669:195499 -k1,16387:23048043,31889669:195499 -k1,16387:25098212,31889669:195500 -k1,16387:26103081,31889669:195499 -k1,16387:27792146,31889669:195499 -k1,16387:30893511,31889669:195499 -k1,16388:32583029,31889669:0 -) -(1,16388:6630773,32731157:25952256,513147,134348 -g1,16387:8639451,32731157 -g1,16387:10214281,32731157 -g1,16387:12487069,32731157 -g1,16387:15035108,32731157 -g1,16387:15850375,32731157 -g1,16387:16838002,32731157 -k1,16388:32583029,32731157:13487312 -g1,16388:32583029,32731157 -) -(1,16389:6630773,34822417:25952256,555811,12975 -(1,16389:6630773,34822417:2450326,534184,12975 -g1,16389:6630773,34822417 -g1,16389:9081099,34822417 -) -k1,16389:32583029,34822417:21299594 -g1,16389:32583029,34822417 -) -(1,16394:6630773,36057121:25952256,513147,134348 -k1,16393:9394134,36057121:228428 -k1,16393:11587986,36057121:228428 -k1,16393:14576790,36057121:228428 -k1,16393:17831015,36057121:228428 -k1,16393:19007093,36057121:228427 -k1,16393:21638071,36057121:228428 -k1,16393:23057944,36057121:228428 -k1,16393:25671883,36057121:228428 -k1,16393:27638297,36057121:228399 -k1,16393:29058169,36057121:228427 -k1,16393:31096017,36057121:228399 -k1,16393:32583029,36057121:0 -) -(1,16394:6630773,36898609:25952256,513147,134348 -g1,16393:8210846,36898609 -g1,16393:8941572,36898609 -g1,16393:9496661,36898609 -g1,16393:10996124,36898609 -g1,16393:13679168,36898609 -g1,16393:14537689,36898609 -g1,16393:16622389,36898609 -g1,16393:17034610,36898609 -g1,16393:18366301,36898609 -g1,16393:19941131,36898609 -g1,16393:21420278,36898609 -g1,16393:21975367,36898609 -g1,16393:23676681,36898609 -k1,16394:32583029,36898609:6071261 -g1,16394:32583029,36898609 -) -(1,16396:6630773,37740097:25952256,513147,134348 -h1,16395:6630773,37740097:983040,0,0 -g1,16395:8766591,37740097 -g1,16395:10271953,37740097 -g1,16395:11883483,37740097 -g1,16395:12438572,37740097 -g1,16395:13906578,37740097 -g1,16395:15603960,37740097 -g1,16395:17197140,37740097 -g1,16395:20091865,37740097 -(1,16395:20091865,37740097:0,452978,115847 -r1,16395:23967249,37740097:3875384,568825,115847 -k1,16395:20091865,37740097:-3875384 -) -(1,16395:20091865,37740097:3875384,452978,115847 -k1,16395:20091865,37740097:3277 -h1,16395:23963972,37740097:0,411205,112570 -) -g1,16395:24340148,37740097 -g1,16395:25730822,37740097 -g1,16395:28298522,37740097 -g1,16395:29286149,37740097 -k1,16396:32583029,37740097:191784 -g1,16396:32583029,37740097 -) -v1,16398:6630773,38930563:0,393216,0 -(1,16434:6630773,45306798:25952256,6769451,196608 -g1,16434:6630773,45306798 -g1,16434:6630773,45306798 -g1,16434:6434165,45306798 -(1,16434:6434165,45306798:0,6769451,196608 -r1,16434:32779637,45306798:26345472,6966059,196608 -k1,16434:6434165,45306798:-26345472 -) -(1,16434:6434165,45306798:26345472,6769451,196608 -[1,16434:6630773,45306798:25952256,6572843,0 -(1,16400:6630773,39144473:25952256,410518,107478 -(1,16399:6630773,39144473:0,0,0 -g1,16399:6630773,39144473 -g1,16399:6630773,39144473 -g1,16399:6303093,39144473 -(1,16399:6303093,39144473:0,0,0 -) -g1,16399:6630773,39144473 -) -g1,16400:9476084,39144473 -g1,16400:10424522,39144473 -k1,16400:10424522,39144473:0 -h1,16400:26864097,39144473:0,0,0 -k1,16400:32583029,39144473:5718932 -g1,16400:32583029,39144473 -) -(1,16401:6630773,39810651:25952256,404226,107478 -h1,16401:6630773,39810651:0,0,0 -k1,16401:6630773,39810651:0 -h1,16401:14218270,39810651:0,0,0 -k1,16401:32583030,39810651:18364760 -g1,16401:32583030,39810651 -) -(1,16433:6630773,40542365:25952256,404226,6290 -(1,16403:6630773,40542365:0,0,0 -g1,16403:6630773,40542365 -g1,16403:6630773,40542365 -g1,16403:6303093,40542365 -(1,16403:6303093,40542365:0,0,0 -) -g1,16403:6630773,40542365 -) -g1,16433:7579210,40542365 -k1,16433:7579210,40542365:0 -h1,16433:9476084,40542365:0,0,0 -k1,16433:32583028,40542365:23106944 -g1,16433:32583028,40542365 -) -(1,16433:6630773,41208543:25952256,404226,6290 -h1,16433:6630773,41208543:0,0,0 -g1,16433:7579210,41208543 -g1,16433:7895356,41208543 -g1,16433:8211502,41208543 -k1,16433:8211502,41208543:0 -h1,16433:10108376,41208543:0,0,0 -k1,16433:32583028,41208543:22474652 -g1,16433:32583028,41208543 -) -(1,16433:6630773,41874721:25952256,404226,6290 -h1,16433:6630773,41874721:0,0,0 -g1,16433:7579210,41874721 -g1,16433:7895356,41874721 -g1,16433:8211502,41874721 -g1,16433:8527648,41874721 -g1,16433:8843794,41874721 -k1,16433:8843794,41874721:0 -h1,16433:11056814,41874721:0,0,0 -k1,16433:32583030,41874721:21526216 -g1,16433:32583030,41874721 -) -(1,16433:6630773,42540899:25952256,404226,76021 -h1,16433:6630773,42540899:0,0,0 -g1,16433:7579210,42540899 -g1,16433:7895356,42540899 -g1,16433:8211502,42540899 -g1,16433:8527648,42540899 -g1,16433:8843794,42540899 -g1,16433:9159940,42540899 -g1,16433:9476086,42540899 -h1,16433:11372960,42540899:0,0,0 -k1,16433:32583028,42540899:21210068 -g1,16433:32583028,42540899 -) -(1,16433:6630773,43207077:25952256,404226,82312 -h1,16433:6630773,43207077:0,0,0 -g1,16433:7579210,43207077 -g1,16433:7895356,43207077 -g1,16433:8211502,43207077 -g1,16433:8527648,43207077 -g1,16433:8843794,43207077 -g1,16433:10740668,43207077 -g1,16433:12953688,43207077 -k1,16433:12953688,43207077:0 -h1,16433:15798999,43207077:0,0,0 -k1,16433:32583029,43207077:16784030 -g1,16433:32583029,43207077 -) -(1,16433:6630773,43873255:25952256,404226,82312 -h1,16433:6630773,43873255:0,0,0 -g1,16433:7579210,43873255 -g1,16433:7895356,43873255 -g1,16433:8211502,43873255 -g1,16433:8527648,43873255 -g1,16433:8843794,43873255 -g1,16433:10740668,43873255 -g1,16433:12953688,43873255 -k1,16433:12953688,43873255:0 -h1,16433:15798999,43873255:0,0,0 -k1,16433:32583029,43873255:16784030 -g1,16433:32583029,43873255 -) -(1,16433:6630773,44539433:25952256,404226,82312 -h1,16433:6630773,44539433:0,0,0 -g1,16433:7579210,44539433 -g1,16433:7895356,44539433 -g1,16433:8211502,44539433 -g1,16433:8527648,44539433 -g1,16433:8843794,44539433 -g1,16433:10740668,44539433 -g1,16433:12953688,44539433 -k1,16433:12953688,44539433:0 -h1,16433:15798999,44539433:0,0,0 -k1,16433:32583029,44539433:16784030 -g1,16433:32583029,44539433 -) -(1,16433:6630773,45205611:25952256,404226,101187 -h1,16433:6630773,45205611:0,0,0 -g1,16433:7579210,45205611 -g1,16433:7895356,45205611 -g1,16433:8211502,45205611 -k1,16433:8211502,45205611:0 -h1,16433:10108376,45205611:0,0,0 -k1,16433:32583028,45205611:22474652 -g1,16433:32583028,45205611 -) -] -) -g1,16434:32583029,45306798 -g1,16434:6630773,45306798 -g1,16434:6630773,45306798 -g1,16434:32583029,45306798 -g1,16434:32583029,45306798 -) -] -(1,16434:32583029,45706769:0,0,0 -g1,16434:32583029,45706769 -) -) -] -(1,16434:6630773,47279633:25952256,0,0 -h1,16434:6630773,47279633:25952256,0,0 -) -] -h1,16434:4262630,4025873:0,0,0 +[1,16465:6630773,45706769:25952256,40108032,0 +(1,16382:6630773,6254097:25952256,505283,126483 +k1,16381:8264090,6254097:239366 +k1,16381:9522541,6254097:239366 +k1,16381:13086548,6254097:239366 +k1,16381:14609108,6254097:239365 +k1,16381:16016981,6254097:239366 +k1,16381:19052768,6254097:239366 +k1,16381:20245683,6254097:239366 +k1,16381:21577534,6254097:239366 +(1,16381:21577534,6254097:0,452978,115847 +r1,16381:23342647,6254097:1765113,568825,115847 +k1,16381:21577534,6254097:-1765113 +) +(1,16381:21577534,6254097:1765113,452978,115847 +k1,16381:21577534,6254097:3277 +h1,16381:23339370,6254097:0,411205,112570 +) +k1,16381:23582013,6254097:239366 +k1,16381:24472807,6254097:239366 +k1,16381:26294212,6254097:239366 +k1,16381:26991674,6254097:239365 +k1,16381:27955868,6254097:239366 +k1,16381:29891961,6254097:239366 +k1,16381:31414522,6254097:239366 +k1,16381:32583029,6254097:0 +) +(1,16382:6630773,7095585:25952256,513147,126483 +g1,16381:10134983,7095585 +g1,16381:11962782,7095585 +g1,16381:13181096,7095585 +g1,16381:14868648,7095585 +g1,16381:15727169,7095585 +g1,16381:16282258,7095585 +g1,16381:17764682,7095585 +g1,16381:20825213,7095585 +k1,16382:32583029,7095585:10415639 +g1,16382:32583029,7095585 +) +v1,16384:6630773,8286051:0,393216,0 +(1,16407:6630773,17946707:25952256,10053872,196608 +g1,16407:6630773,17946707 +g1,16407:6630773,17946707 +g1,16407:6434165,17946707 +(1,16407:6434165,17946707:0,10053872,196608 +r1,16407:32779637,17946707:26345472,10250480,196608 +k1,16407:6434165,17946707:-26345472 +) +(1,16407:6434165,17946707:26345472,10053872,196608 +[1,16407:6630773,17946707:25952256,9857264,0 +(1,16386:6630773,8499961:25952256,410518,107478 +(1,16385:6630773,8499961:0,0,0 +g1,16385:6630773,8499961 +g1,16385:6630773,8499961 +g1,16385:6303093,8499961 +(1,16385:6303093,8499961:0,0,0 +) +g1,16385:6630773,8499961 +) +g1,16386:9159939,8499961 +g1,16386:10108377,8499961 +g1,16386:14850563,8499961 +g1,16386:15482855,8499961 +k1,16386:15482855,8499961:0 +h1,16386:25915662,8499961:0,0,0 +k1,16386:32583029,8499961:6667367 +g1,16386:32583029,8499961 +) +(1,16387:6630773,9166139:25952256,404226,107478 +h1,16387:6630773,9166139:0,0,0 +k1,16387:6630773,9166139:0 +h1,16387:11372958,9166139:0,0,0 +k1,16387:32583030,9166139:21210072 +g1,16387:32583030,9166139 +) +(1,16391:6630773,9897853:25952256,404226,76021 +(1,16389:6630773,9897853:0,0,0 +g1,16389:6630773,9897853 +g1,16389:6630773,9897853 +g1,16389:6303093,9897853 +(1,16389:6303093,9897853:0,0,0 +) +g1,16389:6630773,9897853 +) +g1,16391:7579210,9897853 +g1,16391:8843793,9897853 +h1,16391:9159939,9897853:0,0,0 +k1,16391:32583029,9897853:23423090 +g1,16391:32583029,9897853 +) +(1,16393:6630773,11219391:25952256,404226,76021 +(1,16392:6630773,11219391:0,0,0 +g1,16392:6630773,11219391 +g1,16392:6630773,11219391 +g1,16392:6303093,11219391 +(1,16392:6303093,11219391:0,0,0 +) +g1,16392:6630773,11219391 +) +k1,16393:6630773,11219391:0 +h1,16393:10424521,11219391:0,0,0 +k1,16393:32583029,11219391:22158508 +g1,16393:32583029,11219391 +) +(1,16406:6630773,11951105:25952256,404226,9436 +(1,16395:6630773,11951105:0,0,0 +g1,16395:6630773,11951105 +g1,16395:6630773,11951105 +g1,16395:6303093,11951105 +(1,16395:6303093,11951105:0,0,0 +) +g1,16395:6630773,11951105 +) +g1,16406:7579210,11951105 +g1,16406:9159939,11951105 +g1,16406:9476085,11951105 +g1,16406:11056814,11951105 +g1,16406:12637543,11951105 +h1,16406:13902126,11951105:0,0,0 +k1,16406:32583030,11951105:18680904 +g1,16406:32583030,11951105 +) +(1,16406:6630773,12617283:25952256,0,0 +h1,16406:6630773,12617283:0,0,0 +h1,16406:6630773,12617283:0,0,0 +k1,16406:32583029,12617283:25952256 +g1,16406:32583029,12617283 +) +(1,16406:6630773,13283461:25952256,388497,9436 +h1,16406:6630773,13283461:0,0,0 +g1,16406:7579210,13283461 +g1,16406:8843793,13283461 +g1,16406:9159939,13283461 +g1,16406:9476085,13283461 +g1,16406:11056814,13283461 +g1,16406:11372960,13283461 +g1,16406:12637543,13283461 +h1,16406:13585980,13283461:0,0,0 +k1,16406:32583028,13283461:18997048 +g1,16406:32583028,13283461 +) +(1,16406:6630773,13949639:25952256,0,0 +h1,16406:6630773,13949639:0,0,0 +h1,16406:6630773,13949639:0,0,0 +k1,16406:32583029,13949639:25952256 +g1,16406:32583029,13949639 +) +(1,16406:6630773,14615817:25952256,388497,9436 +h1,16406:6630773,14615817:0,0,0 +g1,16406:7579210,14615817 +g1,16406:8843793,14615817 +g1,16406:9159939,14615817 +g1,16406:9476085,14615817 +g1,16406:11056814,14615817 +g1,16406:11372960,14615817 +g1,16406:11689106,14615817 +g1,16406:12637543,14615817 +h1,16406:13585980,14615817:0,0,0 +k1,16406:32583028,14615817:18997048 +g1,16406:32583028,14615817 +) +(1,16406:6630773,15281995:25952256,0,0 +h1,16406:6630773,15281995:0,0,0 +h1,16406:6630773,15281995:0,0,0 +k1,16406:32583029,15281995:25952256 +g1,16406:32583029,15281995 +) +(1,16406:6630773,15948173:25952256,388497,9436 +h1,16406:6630773,15948173:0,0,0 +g1,16406:7579210,15948173 +g1,16406:9159939,15948173 +g1,16406:9476085,15948173 +g1,16406:9792231,15948173 +g1,16406:11372960,15948173 +g1,16406:11689106,15948173 +g1,16406:12005252,15948173 +g1,16406:12953689,15948173 +h1,16406:13902126,15948173:0,0,0 +k1,16406:32583030,15948173:18680904 +g1,16406:32583030,15948173 +) +(1,16406:6630773,16614351:25952256,0,0 +h1,16406:6630773,16614351:0,0,0 +h1,16406:6630773,16614351:0,0,0 +k1,16406:32583029,16614351:25952256 +g1,16406:32583029,16614351 +) +(1,16406:6630773,17280529:25952256,404226,9436 +h1,16406:6630773,17280529:0,0,0 +g1,16406:7579210,17280529 +g1,16406:7895356,17280529 +g1,16406:8527648,17280529 +g1,16406:8843794,17280529 +g1,16406:9159940,17280529 +g1,16406:9476086,17280529 +g1,16406:10424523,17280529 +g1,16406:10740669,17280529 +g1,16406:11056815,17280529 +g1,16406:11372961,17280529 +g1,16406:11689107,17280529 +g1,16406:13269836,17280529 +h1,16406:14218273,17280529:0,0,0 +k1,16406:32583029,17280529:18364756 +g1,16406:32583029,17280529 +) +(1,16406:6630773,17946707:25952256,0,0 +h1,16406:6630773,17946707:0,0,0 +h1,16406:6630773,17946707:0,0,0 +k1,16406:32583029,17946707:25952256 +g1,16406:32583029,17946707 +) +] +) +g1,16407:32583029,17946707 +g1,16407:6630773,17946707 +g1,16407:6630773,17946707 +g1,16407:32583029,17946707 +g1,16407:32583029,17946707 +) +h1,16407:6630773,18143315:0,0,0 +v1,16411:6630773,20033379:0,393216,0 +(1,16412:6630773,21736791:25952256,2096628,616038 +g1,16412:6630773,21736791 +(1,16412:6630773,21736791:25952256,2096628,616038 +(1,16412:6630773,22352829:25952256,2712666,0 +[1,16412:6630773,22352829:25952256,2712666,0 +(1,16412:6630773,22326615:25952256,2660238,0 +r1,16412:6656987,22326615:26214,2660238,0 +[1,16412:6656987,22326615:25899828,2660238,0 +(1,16412:6656987,21736791:25899828,1480590,0 +[1,16412:7246811,21736791:24720180,1480590,0 +(1,16412:7246811,21540183:24720180,1283982,196608 +(1,16411:7246811,21540183:0,1283982,196608 +r1,16412:9812056,21540183:2565245,1480590,196608 +k1,16411:7246811,21540183:-2565245 +) +(1,16411:7246811,21540183:2565245,1283982,196608 +) +g1,16411:10011285,21540183 +g1,16411:11359360,21540183 +(1,16411:11359360,21540183:0,459977,115847 +r1,16412:15586456,21540183:4227096,575824,115847 +k1,16411:11359360,21540183:-4227096 +) +(1,16411:11359360,21540183:4227096,459977,115847 +k1,16411:11359360,21540183:3277 +h1,16411:15583179,21540183:0,411205,112570 +) +g1,16411:15785685,21540183 +g1,16411:16636342,21540183 +g1,16411:18450378,21540183 +g1,16411:19005467,21540183 +g1,16411:20187736,21540183 +g1,16411:21671471,21540183 +g1,16411:22974982,21540183 +g1,16411:23921977,21540183 +g1,16411:25533507,21540183 +g1,16411:27126687,21540183 +(1,16411:27126687,21540183:0,452978,115847 +r1,16412:30650359,21540183:3523672,568825,115847 +k1,16411:27126687,21540183:-3523672 +) +(1,16411:27126687,21540183:3523672,452978,115847 +k1,16411:27126687,21540183:3277 +h1,16411:30647082,21540183:0,411205,112570 +) +k1,16412:31966991,21540183:1142962 +g1,16412:31966991,21540183 +) +] +) +] +r1,16412:32583029,22326615:26214,2660238,0 +) +] +) +) +g1,16412:32583029,21736791 +) +h1,16412:6630773,22352829:0,0,0 +(1,16415:6630773,25684685:25952256,32768,229376 +(1,16415:6630773,25684685:0,32768,229376 +(1,16415:6630773,25684685:5505024,32768,229376 +r1,16415:12135797,25684685:5505024,262144,229376 +) +k1,16415:6630773,25684685:-5505024 +) +(1,16415:6630773,25684685:25952256,32768,0 +r1,16415:32583029,25684685:25952256,32768,0 +) +) +(1,16415:6630773,27289013:25952256,615776,14155 +(1,16415:6630773,27289013:1974731,582746,14155 +g1,16415:6630773,27289013 +g1,16415:8605504,27289013 +) +g1,16415:10573157,27289013 +g1,16415:12282860,27289013 +g1,16415:14887523,27289013 +k1,16415:32583029,27289013:16057368 +g1,16415:32583029,27289013 +) +(1,16419:6630773,28523717:25952256,513147,134348 +k1,16418:8279219,28523717:289229 +k1,16418:9881881,28523717:289320 +k1,16418:12542948,28523717:289319 +k1,16418:14058447,28523717:289320 +k1,16418:15741718,28523717:289320 +k1,16418:18225182,28523717:289319 +k1,16418:21180507,28523717:289320 +k1,16418:23726231,28523717:289319 +k1,16418:26501332,28523717:289320 +k1,16418:28180014,28523717:289319 +k1,16418:31422386,28523717:289320 +k1,16419:32583029,28523717:0 +) +(1,16419:6630773,29365205:25952256,505283,134349 +k1,16418:8410223,29365205:216416 +k1,16418:9618200,29365205:216417 +k1,16418:11689285,29365205:216416 +k1,16418:12715071,29365205:216416 +k1,16418:13950573,29365205:216417 +k1,16418:15490799,29365205:216399 +k1,16418:18550822,29365205:216416 +k1,16418:19999316,29365205:216417 +$1,16418:19999316,29365205 +k1,16418:21975226,29365205:0 +k1,16418:22370408,29365205:0 +k1,16418:22765590,29365205:0 +k1,16418:23160772,29365205:0 +k1,16418:24346318,29365205:0 +k1,16418:24741500,29365205:0 +k1,16418:25531864,29365205:0 +k1,16418:25927046,29365205:0 +k1,16418:27112592,29365205:0 +k1,16418:27507774,29365205:0 +k1,16418:28298138,29365205:0 +k1,16418:28693320,29365205:0 +$1,16418:30274048,29365205 +k1,16418:30697558,29365205:216416 +k1,16418:32583029,29365205:0 +) +(1,16419:6630773,30206693:25952256,513147,134348 +k1,16418:8270418,30206693:216858 +k1,16418:11219473,30206693:216859 +k1,16418:12383982,30206693:216858 +k1,16418:15748535,30206693:216859 +k1,16418:18722493,30206693:216858 +k1,16418:20900188,30206693:216858 +k1,16418:23514354,30206693:216859 +k1,16418:26415567,30206693:216858 +k1,16418:29304329,30206693:216859 +k1,16418:31923737,30206693:216858 +k1,16418:32583029,30206693:0 +) +(1,16419:6630773,31048181:25952256,513147,134348 +k1,16418:9359102,31048181:217645 +k1,16418:10643018,31048181:217645 +k1,16418:14385189,31048181:217645 +k1,16418:17250489,31048181:217645 +k1,16418:19582325,31048181:217645 +k1,16418:23932014,31048181:217644 +k1,16418:24808951,31048181:217645 +k1,16418:26045681,31048181:217645 +k1,16418:27675627,31048181:217645 +k1,16418:31092740,31048181:217645 +k1,16418:32583029,31048181:0 +) +(1,16419:6630773,31889669:25952256,513147,134348 +k1,16418:7845357,31889669:195499 +k1,16418:10526637,31889669:195499 +k1,16418:12941837,31889669:195496 +k1,16418:15980943,31889669:195499 +k1,16418:17689668,31889669:195499 +k1,16418:18832818,31889669:195499 +k1,16418:20297094,31889669:195499 +k1,16418:22321047,31889669:195499 +k1,16418:23048043,31889669:195499 +k1,16418:25098212,31889669:195500 +k1,16418:26103081,31889669:195499 +k1,16418:27792146,31889669:195499 +k1,16418:30893511,31889669:195499 +k1,16419:32583029,31889669:0 +) +(1,16419:6630773,32731157:25952256,513147,134348 +g1,16418:8639451,32731157 +g1,16418:10214281,32731157 +g1,16418:12487069,32731157 +g1,16418:15035108,32731157 +g1,16418:15850375,32731157 +g1,16418:16838002,32731157 +k1,16419:32583029,32731157:13487312 +g1,16419:32583029,32731157 +) +(1,16420:6630773,34822417:25952256,555811,12975 +(1,16420:6630773,34822417:2450326,534184,12975 +g1,16420:6630773,34822417 +g1,16420:9081099,34822417 +) +k1,16420:32583029,34822417:21299594 +g1,16420:32583029,34822417 +) +(1,16425:6630773,36057121:25952256,513147,134348 +k1,16424:9394134,36057121:228428 +k1,16424:11587986,36057121:228428 +k1,16424:14576790,36057121:228428 +k1,16424:17831015,36057121:228428 +k1,16424:19007093,36057121:228427 +k1,16424:21638071,36057121:228428 +k1,16424:23057944,36057121:228428 +k1,16424:25671883,36057121:228428 +k1,16424:27638297,36057121:228399 +k1,16424:29058169,36057121:228427 +k1,16424:31096017,36057121:228399 +k1,16424:32583029,36057121:0 +) +(1,16425:6630773,36898609:25952256,513147,134348 +g1,16424:8210846,36898609 +g1,16424:8941572,36898609 +g1,16424:9496661,36898609 +g1,16424:10996124,36898609 +g1,16424:13679168,36898609 +g1,16424:14537689,36898609 +g1,16424:16622389,36898609 +g1,16424:17034610,36898609 +g1,16424:18366301,36898609 +g1,16424:19941131,36898609 +g1,16424:21420278,36898609 +g1,16424:21975367,36898609 +g1,16424:23676681,36898609 +k1,16425:32583029,36898609:6071261 +g1,16425:32583029,36898609 +) +(1,16427:6630773,37740097:25952256,513147,134348 +h1,16426:6630773,37740097:983040,0,0 +g1,16426:8766591,37740097 +g1,16426:10271953,37740097 +g1,16426:11883483,37740097 +g1,16426:12438572,37740097 +g1,16426:13906578,37740097 +g1,16426:15603960,37740097 +g1,16426:17197140,37740097 +g1,16426:20091865,37740097 +(1,16426:20091865,37740097:0,452978,115847 +r1,16426:23967249,37740097:3875384,568825,115847 +k1,16426:20091865,37740097:-3875384 +) +(1,16426:20091865,37740097:3875384,452978,115847 +k1,16426:20091865,37740097:3277 +h1,16426:23963972,37740097:0,411205,112570 +) +g1,16426:24340148,37740097 +g1,16426:25730822,37740097 +g1,16426:28298522,37740097 +g1,16426:29286149,37740097 +k1,16427:32583029,37740097:191784 +g1,16427:32583029,37740097 +) +v1,16429:6630773,38930563:0,393216,0 +(1,16465:6630773,45306798:25952256,6769451,196608 +g1,16465:6630773,45306798 +g1,16465:6630773,45306798 +g1,16465:6434165,45306798 +(1,16465:6434165,45306798:0,6769451,196608 +r1,16465:32779637,45306798:26345472,6966059,196608 +k1,16465:6434165,45306798:-26345472 +) +(1,16465:6434165,45306798:26345472,6769451,196608 +[1,16465:6630773,45306798:25952256,6572843,0 +(1,16431:6630773,39144473:25952256,410518,107478 +(1,16430:6630773,39144473:0,0,0 +g1,16430:6630773,39144473 +g1,16430:6630773,39144473 +g1,16430:6303093,39144473 +(1,16430:6303093,39144473:0,0,0 +) +g1,16430:6630773,39144473 +) +g1,16431:9476084,39144473 +g1,16431:10424522,39144473 +k1,16431:10424522,39144473:0 +h1,16431:26864097,39144473:0,0,0 +k1,16431:32583029,39144473:5718932 +g1,16431:32583029,39144473 +) +(1,16432:6630773,39810651:25952256,404226,107478 +h1,16432:6630773,39810651:0,0,0 +k1,16432:6630773,39810651:0 +h1,16432:14218270,39810651:0,0,0 +k1,16432:32583030,39810651:18364760 +g1,16432:32583030,39810651 +) +(1,16464:6630773,40542365:25952256,404226,6290 +(1,16434:6630773,40542365:0,0,0 +g1,16434:6630773,40542365 +g1,16434:6630773,40542365 +g1,16434:6303093,40542365 +(1,16434:6303093,40542365:0,0,0 +) +g1,16434:6630773,40542365 +) +g1,16464:7579210,40542365 +k1,16464:7579210,40542365:0 +h1,16464:9476084,40542365:0,0,0 +k1,16464:32583028,40542365:23106944 +g1,16464:32583028,40542365 +) +(1,16464:6630773,41208543:25952256,404226,6290 +h1,16464:6630773,41208543:0,0,0 +g1,16464:7579210,41208543 +g1,16464:7895356,41208543 +g1,16464:8211502,41208543 +k1,16464:8211502,41208543:0 +h1,16464:10108376,41208543:0,0,0 +k1,16464:32583028,41208543:22474652 +g1,16464:32583028,41208543 +) +(1,16464:6630773,41874721:25952256,404226,6290 +h1,16464:6630773,41874721:0,0,0 +g1,16464:7579210,41874721 +g1,16464:7895356,41874721 +g1,16464:8211502,41874721 +g1,16464:8527648,41874721 +g1,16464:8843794,41874721 +k1,16464:8843794,41874721:0 +h1,16464:11056814,41874721:0,0,0 +k1,16464:32583030,41874721:21526216 +g1,16464:32583030,41874721 +) +(1,16464:6630773,42540899:25952256,404226,76021 +h1,16464:6630773,42540899:0,0,0 +g1,16464:7579210,42540899 +g1,16464:7895356,42540899 +g1,16464:8211502,42540899 +g1,16464:8527648,42540899 +g1,16464:8843794,42540899 +g1,16464:9159940,42540899 +g1,16464:9476086,42540899 +h1,16464:11372960,42540899:0,0,0 +k1,16464:32583028,42540899:21210068 +g1,16464:32583028,42540899 +) +(1,16464:6630773,43207077:25952256,404226,82312 +h1,16464:6630773,43207077:0,0,0 +g1,16464:7579210,43207077 +g1,16464:7895356,43207077 +g1,16464:8211502,43207077 +g1,16464:8527648,43207077 +g1,16464:8843794,43207077 +g1,16464:10740668,43207077 +g1,16464:12953688,43207077 +k1,16464:12953688,43207077:0 +h1,16464:15798999,43207077:0,0,0 +k1,16464:32583029,43207077:16784030 +g1,16464:32583029,43207077 +) +(1,16464:6630773,43873255:25952256,404226,82312 +h1,16464:6630773,43873255:0,0,0 +g1,16464:7579210,43873255 +g1,16464:7895356,43873255 +g1,16464:8211502,43873255 +g1,16464:8527648,43873255 +g1,16464:8843794,43873255 +g1,16464:10740668,43873255 +g1,16464:12953688,43873255 +k1,16464:12953688,43873255:0 +h1,16464:15798999,43873255:0,0,0 +k1,16464:32583029,43873255:16784030 +g1,16464:32583029,43873255 +) +(1,16464:6630773,44539433:25952256,404226,82312 +h1,16464:6630773,44539433:0,0,0 +g1,16464:7579210,44539433 +g1,16464:7895356,44539433 +g1,16464:8211502,44539433 +g1,16464:8527648,44539433 +g1,16464:8843794,44539433 +g1,16464:10740668,44539433 +g1,16464:12953688,44539433 +k1,16464:12953688,44539433:0 +h1,16464:15798999,44539433:0,0,0 +k1,16464:32583029,44539433:16784030 +g1,16464:32583029,44539433 +) +(1,16464:6630773,45205611:25952256,404226,101187 +h1,16464:6630773,45205611:0,0,0 +g1,16464:7579210,45205611 +g1,16464:7895356,45205611 +g1,16464:8211502,45205611 +k1,16464:8211502,45205611:0 +h1,16464:10108376,45205611:0,0,0 +k1,16464:32583028,45205611:22474652 +g1,16464:32583028,45205611 +) +] +) +g1,16465:32583029,45306798 +g1,16465:6630773,45306798 +g1,16465:6630773,45306798 +g1,16465:32583029,45306798 +g1,16465:32583029,45306798 +) +] +(1,16465:32583029,45706769:0,0,0 +g1,16465:32583029,45706769 +) +) +] +(1,16465:6630773,47279633:25952256,0,0 +h1,16465:6630773,47279633:25952256,0,0 +) +] +h1,16465:4262630,4025873:0,0,0 ] !20524 }319 -Input:2484:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2485:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2486:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2487:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2488:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2489:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:2481:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2482:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2483:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2484:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2485:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2486:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {320 -[1,16475:4262630,47279633:28320399,43253760,0 -(1,16475:4262630,4025873:0,0,0 -[1,16475:-473657,4025873:25952256,0,0 -(1,16475:-473657,-710414:25952256,0,0 -h1,16475:-473657,-710414:0,0,0 -(1,16475:-473657,-710414:0,0,0 -(1,16475:-473657,-710414:0,0,0 -g1,16475:-473657,-710414 -(1,16475:-473657,-710414:65781,0,65781 -g1,16475:-407876,-710414 -[1,16475:-407876,-644633:0,0,0 +[1,16506:4262630,47279633:28320399,43253760,0 +(1,16506:4262630,4025873:0,0,0 +[1,16506:-473657,4025873:25952256,0,0 +(1,16506:-473657,-710414:25952256,0,0 +h1,16506:-473657,-710414:0,0,0 +(1,16506:-473657,-710414:0,0,0 +(1,16506:-473657,-710414:0,0,0 +g1,16506:-473657,-710414 +(1,16506:-473657,-710414:65781,0,65781 +g1,16506:-407876,-710414 +[1,16506:-407876,-644633:0,0,0 ] ) -k1,16475:-473657,-710414:-65781 +k1,16506:-473657,-710414:-65781 ) ) -k1,16475:25478599,-710414:25952256 -g1,16475:25478599,-710414 +k1,16506:25478599,-710414:25952256 +g1,16506:25478599,-710414 ) ] ) -[1,16475:6630773,47279633:25952256,43253760,0 -[1,16475:6630773,4812305:25952256,786432,0 -(1,16475:6630773,4812305:25952256,513147,126483 -(1,16475:6630773,4812305:25952256,513147,126483 -g1,16475:3078558,4812305 -[1,16475:3078558,4812305:0,0,0 -(1,16475:3078558,2439708:0,1703936,0 -k1,16475:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16475:2537886,2439708:1179648,16384,0 +[1,16506:6630773,47279633:25952256,43253760,0 +[1,16506:6630773,4812305:25952256,786432,0 +(1,16506:6630773,4812305:25952256,513147,126483 +(1,16506:6630773,4812305:25952256,513147,126483 +g1,16506:3078558,4812305 +[1,16506:3078558,4812305:0,0,0 +(1,16506:3078558,2439708:0,1703936,0 +k1,16506:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16506:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16475:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16506:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16475:3078558,4812305:0,0,0 -(1,16475:3078558,2439708:0,1703936,0 -g1,16475:29030814,2439708 -g1,16475:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16475:36151628,1915420:16384,1179648,0 +[1,16506:3078558,4812305:0,0,0 +(1,16506:3078558,2439708:0,1703936,0 +g1,16506:29030814,2439708 +g1,16506:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16506:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16475:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16506:37855564,2439708:1179648,16384,0 ) ) -k1,16475:3078556,2439708:-34777008 +k1,16506:3078556,2439708:-34777008 ) ] -[1,16475:3078558,4812305:0,0,0 -(1,16475:3078558,49800853:0,16384,2228224 -k1,16475:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16475:2537886,49800853:1179648,16384,0 +[1,16506:3078558,4812305:0,0,0 +(1,16506:3078558,49800853:0,16384,2228224 +k1,16506:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16506:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16475:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16506:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16475:3078558,4812305:0,0,0 -(1,16475:3078558,49800853:0,16384,2228224 -g1,16475:29030814,49800853 -g1,16475:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16475:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16475:37855564,49800853:1179648,16384,0 -) -) -k1,16475:3078556,49800853:-34777008 -) -] -g1,16475:6630773,4812305 -g1,16475:6630773,4812305 -g1,16475:8113852,4812305 -g1,16475:9545158,4812305 -k1,16475:31387652,4812305:21842494 -) -) -] -[1,16475:6630773,45706769:25952256,40108032,0 -(1,16475:6630773,45706769:25952256,40108032,0 -(1,16475:6630773,45706769:0,0,0 -g1,16475:6630773,45706769 -) -[1,16475:6630773,45706769:25952256,40108032,0 -v1,16434:6630773,6254097:0,393216,0 -(1,16434:6630773,19861296:25952256,14000415,196608 -g1,16434:6630773,19861296 -g1,16434:6630773,19861296 -g1,16434:6434165,19861296 -(1,16434:6434165,19861296:0,14000415,196608 -r1,16434:32779637,19861296:26345472,14197023,196608 -k1,16434:6434165,19861296:-26345472 -) -(1,16434:6434165,19861296:26345472,14000415,196608 -[1,16434:6630773,19861296:25952256,13803807,0 -(1,16433:6630773,6461715:25952256,404226,76021 -h1,16433:6630773,6461715:0,0,0 -g1,16433:7579210,6461715 -g1,16433:7895356,6461715 -g1,16433:8211502,6461715 -g1,16433:8527648,6461715 -g1,16433:8843794,6461715 -h1,16433:10740668,6461715:0,0,0 -k1,16433:32583028,6461715:21842360 -g1,16433:32583028,6461715 -) -(1,16433:6630773,7127893:25952256,404226,0 -h1,16433:6630773,7127893:0,0,0 -g1,16433:7579210,7127893 -g1,16433:7895356,7127893 -g1,16433:8211502,7127893 -g1,16433:8527648,7127893 -g1,16433:8843794,7127893 -k1,16433:8843794,7127893:0 -h1,16433:10108377,7127893:0,0,0 -k1,16433:32583029,7127893:22474652 -g1,16433:32583029,7127893 -) -(1,16433:6630773,7794071:25952256,404226,0 -h1,16433:6630773,7794071:0,0,0 -g1,16433:7579210,7794071 -g1,16433:7895356,7794071 -g1,16433:8211502,7794071 -g1,16433:8527648,7794071 -g1,16433:8843794,7794071 -k1,16433:8843794,7794071:0 -h1,16433:10108377,7794071:0,0,0 -k1,16433:32583029,7794071:22474652 -g1,16433:32583029,7794071 -) -(1,16433:6630773,8460249:25952256,404226,76021 -h1,16433:6630773,8460249:0,0,0 -g1,16433:7579210,8460249 -g1,16433:7895356,8460249 -g1,16433:8211502,8460249 -g1,16433:8527648,8460249 -g1,16433:8843794,8460249 -g1,16433:9159940,8460249 -g1,16433:9476086,8460249 -h1,16433:11372960,8460249:0,0,0 -k1,16433:32583028,8460249:21210068 -g1,16433:32583028,8460249 -) -(1,16433:6630773,9126427:25952256,404226,76021 -h1,16433:6630773,9126427:0,0,0 -g1,16433:7579210,9126427 -g1,16433:7895356,9126427 -g1,16433:8211502,9126427 -g1,16433:8527648,9126427 -g1,16433:8843794,9126427 -h1,16433:10740668,9126427:0,0,0 -k1,16433:32583028,9126427:21842360 -g1,16433:32583028,9126427 -) -(1,16433:6630773,9792605:25952256,404226,0 -h1,16433:6630773,9792605:0,0,0 -g1,16433:7579210,9792605 -g1,16433:7895356,9792605 -g1,16433:8211502,9792605 -g1,16433:8527648,9792605 -g1,16433:8843794,9792605 -k1,16433:8843794,9792605:0 -h1,16433:10108377,9792605:0,0,0 -k1,16433:32583029,9792605:22474652 -g1,16433:32583029,9792605 -) -(1,16433:6630773,10458783:25952256,379060,101187 -h1,16433:6630773,10458783:0,0,0 -g1,16433:7579210,10458783 -g1,16433:7895356,10458783 -g1,16433:8211502,10458783 -g1,16433:8527648,10458783 -g1,16433:8843794,10458783 -k1,16433:8843794,10458783:0 -h1,16433:9792231,10458783:0,0,0 -k1,16433:32583029,10458783:22790798 -g1,16433:32583029,10458783 -) -(1,16433:6630773,11124961:25952256,404226,76021 -h1,16433:6630773,11124961:0,0,0 -g1,16433:7579210,11124961 -g1,16433:7895356,11124961 -g1,16433:8211502,11124961 -g1,16433:8527648,11124961 -g1,16433:8843794,11124961 -g1,16433:9159940,11124961 -g1,16433:9476086,11124961 -h1,16433:11372960,11124961:0,0,0 -k1,16433:32583028,11124961:21210068 -g1,16433:32583028,11124961 -) -(1,16433:6630773,11791139:25952256,410518,76021 -h1,16433:6630773,11791139:0,0,0 -g1,16433:7579210,11791139 -g1,16433:7895356,11791139 -g1,16433:8211502,11791139 -g1,16433:8527648,11791139 -g1,16433:8843794,11791139 -g1,16433:9159940,11791139 -g1,16433:9476086,11791139 -g1,16433:10424523,11791139 -k1,16433:10424523,11791139:0 -h1,16433:12637543,11791139:0,0,0 -k1,16433:32583029,11791139:19945486 -g1,16433:32583029,11791139 -) -(1,16433:6630773,12457317:25952256,404226,76021 -h1,16433:6630773,12457317:0,0,0 -g1,16433:7579210,12457317 -g1,16433:7895356,12457317 -g1,16433:8211502,12457317 -g1,16433:8527648,12457317 -g1,16433:8843794,12457317 -g1,16433:9159940,12457317 -g1,16433:9476086,12457317 -g1,16433:9792232,12457317 -g1,16433:10108378,12457317 -h1,16433:12005252,12457317:0,0,0 -k1,16433:32583028,12457317:20577776 -g1,16433:32583028,12457317 -) -(1,16433:6630773,13123495:25952256,404226,76021 -h1,16433:6630773,13123495:0,0,0 -g1,16433:7579210,13123495 -g1,16433:7895356,13123495 -g1,16433:8211502,13123495 -g1,16433:8527648,13123495 -g1,16433:8843794,13123495 -g1,16433:9159940,13123495 -g1,16433:9476086,13123495 -h1,16433:11372960,13123495:0,0,0 -k1,16433:32583028,13123495:21210068 -g1,16433:32583028,13123495 -) -(1,16433:6630773,13789673:25952256,404226,76021 -h1,16433:6630773,13789673:0,0,0 -g1,16433:7579210,13789673 -g1,16433:7895356,13789673 -g1,16433:8211502,13789673 -g1,16433:8527648,13789673 -g1,16433:8843794,13789673 -h1,16433:10740668,13789673:0,0,0 -k1,16433:32583028,13789673:21842360 -g1,16433:32583028,13789673 -) -(1,16433:6630773,14455851:25952256,379060,101187 -h1,16433:6630773,14455851:0,0,0 -g1,16433:7579210,14455851 -g1,16433:7895356,14455851 -g1,16433:8211502,14455851 -g1,16433:8527648,14455851 -g1,16433:8843794,14455851 -k1,16433:8843794,14455851:0 -h1,16433:9792231,14455851:0,0,0 -k1,16433:32583029,14455851:22790798 -g1,16433:32583029,14455851 -) -(1,16433:6630773,15122029:25952256,404226,76021 -h1,16433:6630773,15122029:0,0,0 -g1,16433:7579210,15122029 -g1,16433:7895356,15122029 -g1,16433:8211502,15122029 -g1,16433:8527648,15122029 -g1,16433:8843794,15122029 -g1,16433:9159940,15122029 -g1,16433:9476086,15122029 -h1,16433:11372960,15122029:0,0,0 -k1,16433:32583028,15122029:21210068 -g1,16433:32583028,15122029 -) -(1,16433:6630773,15788207:25952256,410518,76021 -h1,16433:6630773,15788207:0,0,0 -g1,16433:7579210,15788207 -g1,16433:7895356,15788207 -g1,16433:8211502,15788207 -g1,16433:8527648,15788207 -g1,16433:8843794,15788207 -g1,16433:9159940,15788207 -g1,16433:9476086,15788207 -g1,16433:10424523,15788207 -k1,16433:10424523,15788207:0 -h1,16433:12637543,15788207:0,0,0 -k1,16433:32583029,15788207:19945486 -g1,16433:32583029,15788207 -) -(1,16433:6630773,16454385:25952256,404226,76021 -h1,16433:6630773,16454385:0,0,0 -g1,16433:7579210,16454385 -g1,16433:7895356,16454385 -g1,16433:8211502,16454385 -g1,16433:8527648,16454385 -g1,16433:8843794,16454385 -g1,16433:9159940,16454385 -g1,16433:9476086,16454385 -g1,16433:9792232,16454385 -g1,16433:10108378,16454385 -h1,16433:12005252,16454385:0,0,0 -k1,16433:32583028,16454385:20577776 -g1,16433:32583028,16454385 -) -(1,16433:6630773,17120563:25952256,404226,76021 -h1,16433:6630773,17120563:0,0,0 -g1,16433:7579210,17120563 -g1,16433:7895356,17120563 -g1,16433:8211502,17120563 -g1,16433:8527648,17120563 -g1,16433:8843794,17120563 -g1,16433:9159940,17120563 -g1,16433:9476086,17120563 -h1,16433:11372960,17120563:0,0,0 -k1,16433:32583028,17120563:21210068 -g1,16433:32583028,17120563 -) -(1,16433:6630773,17786741:25952256,404226,76021 -h1,16433:6630773,17786741:0,0,0 -g1,16433:7579210,17786741 -g1,16433:7895356,17786741 -g1,16433:8211502,17786741 -g1,16433:8527648,17786741 -g1,16433:8843794,17786741 -h1,16433:10740668,17786741:0,0,0 -k1,16433:32583028,17786741:21842360 -g1,16433:32583028,17786741 -) -(1,16433:6630773,18452919:25952256,404226,6290 -h1,16433:6630773,18452919:0,0,0 -g1,16433:7579210,18452919 -g1,16433:7895356,18452919 -g1,16433:8211502,18452919 -g1,16433:8527648,18452919 -g1,16433:8843794,18452919 -k1,16433:8843794,18452919:0 -h1,16433:11689105,18452919:0,0,0 -k1,16433:32583029,18452919:20893924 -g1,16433:32583029,18452919 -) -(1,16433:6630773,19119097:25952256,404226,76021 -h1,16433:6630773,19119097:0,0,0 -g1,16433:7579210,19119097 -g1,16433:7895356,19119097 -g1,16433:8211502,19119097 -g1,16433:8527648,19119097 -g1,16433:8843794,19119097 -g1,16433:9159940,19119097 -g1,16433:9476086,19119097 -h1,16433:11372960,19119097:0,0,0 -k1,16433:32583028,19119097:21210068 -g1,16433:32583028,19119097 -) -(1,16433:6630773,19785275:25952256,404226,76021 -h1,16433:6630773,19785275:0,0,0 -g1,16433:7579210,19785275 -g1,16433:7895356,19785275 -g1,16433:8211502,19785275 -g1,16433:8527648,19785275 -g1,16433:8843794,19785275 -h1,16433:10740668,19785275:0,0,0 -k1,16433:32583028,19785275:21842360 -g1,16433:32583028,19785275 -) -] -) -g1,16434:32583029,19861296 -g1,16434:6630773,19861296 -g1,16434:6630773,19861296 -g1,16434:32583029,19861296 -g1,16434:32583029,19861296 -) -h1,16434:6630773,20057904:0,0,0 -(1,16438:6630773,21376028:25952256,513147,134348 -h1,16437:6630773,21376028:983040,0,0 -k1,16437:9710811,21376028:635545 -k1,16437:11214708,21376028:635545 -k1,16437:14054230,21376028:635546 -k1,16437:15708860,21376028:635545 -k1,16437:17570584,21376028:635545 -k1,16437:19773750,21376028:635545 -k1,16437:21197694,21376028:635546 -(1,16437:21197694,21376028:0,452978,115847 -r1,16437:22962807,21376028:1765113,568825,115847 -k1,16437:21197694,21376028:-1765113 -) -(1,16437:21197694,21376028:1765113,452978,115847 -k1,16437:21197694,21376028:3277 -h1,16437:22959530,21376028:0,411205,112570 -) -k1,16437:23598352,21376028:635545 -k1,16437:27186294,21376028:635545 -k1,16437:29557232,21376028:635545 -k1,16438:32583029,21376028:0 -) -(1,16438:6630773,22217516:25952256,505283,115847 -(1,16437:6630773,22217516:0,459977,115847 -r1,16437:11561293,22217516:4930520,575824,115847 -k1,16437:6630773,22217516:-4930520 -) -(1,16437:6630773,22217516:4930520,459977,115847 -k1,16437:6630773,22217516:3277 -h1,16437:11558016,22217516:0,411205,112570 -) -g1,16437:11760522,22217516 -g1,16437:13151196,22217516 -(1,16437:13151196,22217516:0,452978,115847 -r1,16437:16674868,22217516:3523672,568825,115847 -k1,16437:13151196,22217516:-3523672 -) -(1,16437:13151196,22217516:3523672,452978,115847 -k1,16437:13151196,22217516:3277 -h1,16437:16671591,22217516:0,411205,112570 -) -k1,16438:32583029,22217516:15734491 -g1,16438:32583029,22217516 -) -v1,16440:6630773,23360331:0,393216,0 -(1,16447:6630773,24413433:25952256,1446318,196608 -g1,16447:6630773,24413433 -g1,16447:6630773,24413433 -g1,16447:6434165,24413433 -(1,16447:6434165,24413433:0,1446318,196608 -r1,16447:32779637,24413433:26345472,1642926,196608 -k1,16447:6434165,24413433:-26345472 -) -(1,16447:6434165,24413433:26345472,1446318,196608 -[1,16447:6630773,24413433:25952256,1249710,0 -(1,16442:6630773,23574241:25952256,410518,107478 -(1,16441:6630773,23574241:0,0,0 -g1,16441:6630773,23574241 -g1,16441:6630773,23574241 -g1,16441:6303093,23574241 -(1,16441:6303093,23574241:0,0,0 -) -g1,16441:6630773,23574241 -) -k1,16442:6630773,23574241:0 -g1,16442:16747435,23574241 -h1,16442:20541183,23574241:0,0,0 -k1,16442:32583029,23574241:12041846 -g1,16442:32583029,23574241 -) -(1,16446:6630773,24305955:25952256,410518,107478 -(1,16444:6630773,24305955:0,0,0 -g1,16444:6630773,24305955 -g1,16444:6630773,24305955 -g1,16444:6303093,24305955 -(1,16444:6303093,24305955:0,0,0 -) -g1,16444:6630773,24305955 -) -g1,16446:7579210,24305955 -g1,16446:8843793,24305955 -g1,16446:11056813,24305955 -g1,16446:12005250,24305955 -g1,16446:12637542,24305955 -g1,16446:15482853,24305955 -g1,16446:16747436,24305955 -h1,16446:20857330,24305955:0,0,0 -k1,16446:32583029,24305955:11725699 -g1,16446:32583029,24305955 -) -] -) -g1,16447:32583029,24413433 -g1,16447:6630773,24413433 -g1,16447:6630773,24413433 -g1,16447:32583029,24413433 -g1,16447:32583029,24413433 -) -h1,16447:6630773,24610041:0,0,0 -(1,16452:6630773,25928165:25952256,513147,134348 -h1,16450:6630773,25928165:983040,0,0 -k1,16450:9023744,25928165:213244 -k1,16450:12262785,25928165:213244 -k1,16450:14857607,25928165:213244 -k1,16450:15686890,25928165:213245 -k1,16450:17103375,25928165:213244 -k1,16450:19896771,25928165:213244 -k1,16450:21214297,25928165:213244 -k1,16450:22175307,25928165:213244 -k1,16450:23901777,25928165:213244 -k1,16450:24766450,25928165:213245 -k1,16450:27930780,25928165:213244 -k1,16450:29533387,25928165:213244 -k1,16450:31314252,25928165:213244 -k1,16450:32583029,25928165:0 -) -(1,16452:6630773,26769653:25952256,513147,134348 -k1,16450:8809471,26769653:176573 -k1,16450:10058212,26769653:176572 -k1,16450:11520601,26769653:176573 -k1,16450:12348602,26769653:176573 -k1,16450:13937475,26769653:176572 -k1,16450:15503411,26769653:176573 -k1,16450:17247604,26769653:176572 -k1,16450:18737519,26769653:176573 -k1,16450:20649485,26769653:176573 -k1,16450:23336741,26769653:176572 -k1,16450:24797820,26769653:176573 -k1,16450:25965953,26769653:176573 -k1,16450:28524103,26769653:176572 -k1,16450:31259202,26769653:176573 -k1,16450:32583029,26769653:0 -) -(1,16452:6630773,27611141:25952256,505283,7863 -g1,16450:9735868,27611141 -k1,16452:32583028,27611141:22847160 -g1,16452:32583028,27611141 -) -(1,16453:6630773,30418709:25952256,32768,229376 -(1,16453:6630773,30418709:0,32768,229376 -(1,16453:6630773,30418709:5505024,32768,229376 -r1,16453:12135797,30418709:5505024,262144,229376 -) -k1,16453:6630773,30418709:-5505024 -) -(1,16453:6630773,30418709:25952256,32768,0 -r1,16453:32583029,30418709:25952256,32768,0 -) -) -(1,16453:6630773,32023037:25952256,615776,14155 -(1,16453:6630773,32023037:1974731,582746,14155 -g1,16453:6630773,32023037 -g1,16453:8605504,32023037 -) -g1,16453:10477999,32023037 -k1,16453:32583029,32023037:20466892 -g1,16453:32583029,32023037 -) -(1,16456:6630773,33257741:25952256,513147,134348 -k1,16455:8140149,33257741:223560 -k1,16455:9781252,33257741:223559 -k1,16455:12981482,33257741:223585 -k1,16455:15686914,33257741:223584 -k1,16455:17223840,33257741:223584 -k1,16455:18539909,33257741:223584 -k1,16455:19534196,33257741:223584 -k1,16455:21116973,33257741:223560 -k1,16455:23733932,33257741:223584 -k1,16455:26814230,33257741:223584 -k1,16455:27985466,33257741:223585 -k1,16455:30242632,33257741:223584 -k1,16455:31657661,33257741:223584 -k1,16456:32583029,33257741:0 -) -(1,16456:6630773,34099229:25952256,513147,134348 -k1,16455:9688945,34099229:174588 -k1,16455:11252896,34099229:174588 -k1,16455:12995105,34099229:174588 -k1,16455:16674558,34099229:174588 -k1,16455:20453626,34099229:174588 -k1,16455:23204433,34099229:174587 -k1,16455:25177329,34099229:174588 -k1,16455:27184304,34099229:174588 -k1,16455:27890389,34099229:174588 -k1,16455:29757117,34099229:174588 -k1,16455:32583029,34099229:0 -) -(1,16456:6630773,34940717:25952256,513147,134348 -k1,16455:7619915,34940717:179772 -k1,16455:8818771,34940717:179771 -k1,16455:11840184,34940717:179772 -k1,16455:13831371,34940717:179772 -k1,16455:17373139,34940717:179771 -k1,16455:18362281,34940717:179772 -k1,16455:19561137,34940717:179771 -k1,16455:22252904,34940717:179772 -k1,16455:23091968,34940717:179772 -k1,16455:24290824,34940717:179771 -k1,16455:25681027,34940717:179753 -k1,16455:28545153,34940717:179771 -k1,16455:29921612,34940717:179772 -k1,16455:32583029,34940717:0 -) -(1,16456:6630773,35782205:25952256,513147,134348 -k1,16455:8245279,35782205:225143 -k1,16455:9983649,35782205:225144 -k1,16455:11606675,35782205:225143 -k1,16455:12363316,35782205:225144 -k1,16455:14156080,35782205:225143 -k1,16455:14737084,35782205:225144 -k1,16455:18366167,35782205:225143 -k1,16455:20620306,35782205:225144 -k1,16455:22055873,35782205:225117 -k1,16455:24438462,35782205:225144 -k1,16455:25860292,35782205:225143 -k1,16455:28746853,35782205:225144 -k1,16455:30840427,35782205:225143 -k1,16455:32583029,35782205:0 -) -(1,16456:6630773,36623693:25952256,505283,134348 -k1,16455:7813193,36623693:163335 -k1,16455:9365891,36623693:163335 -k1,16455:10796692,36623693:163335 -k1,16455:11315887,36623693:163335 -(1,16455:11315887,36623693:0,452978,115847 -r1,16455:13432712,36623693:2116825,568825,115847 -k1,16455:11315887,36623693:-2116825 -) -(1,16455:11315887,36623693:2116825,452978,115847 -k1,16455:11315887,36623693:3277 -h1,16455:13429435,36623693:0,411205,112570 -) -k1,16455:13596047,36623693:163335 -k1,16455:14445544,36623693:163335 -k1,16455:17583557,36623693:163334 -k1,16455:20116674,36623693:163335 -k1,16455:21322031,36623693:163335 -k1,16455:24183483,36623693:163335 -k1,16455:25365903,36623693:163335 -k1,16455:28503917,36623693:163335 -k1,16455:30677897,36623693:163335 -k1,16456:32583029,36623693:0 -) -(1,16456:6630773,37465181:25952256,505283,134348 -k1,16455:9185257,37465181:214849 -k1,16455:12216187,37465181:214848 -k1,16455:13622481,37465181:214849 -k1,16455:15548475,37465181:214849 -k1,16455:17719573,37465181:214848 -k1,16455:19464688,37465181:214849 -k1,16455:20330965,37465181:214849 -k1,16455:21293579,37465181:214848 -k1,16455:24669229,37465181:214849 -k1,16455:25535506,37465181:214849 -k1,16455:28370483,37465181:214848 -k1,16455:29776777,37465181:214849 -k1,16455:32583029,37465181:0 -) -(1,16456:6630773,38306669:25952256,513147,134348 -(1,16455:6837867,38306669:0,414482,115847 -r1,16455:9306404,38306669:2468537,530329,115847 -k1,16455:6837867,38306669:-2468537 -) -(1,16455:6837867,38306669:2468537,414482,115847 -k1,16455:6837867,38306669:3277 -h1,16455:9303127,38306669:0,411205,112570 -) -k1,16455:9692707,38306669:179209 -k1,16455:12056230,38306669:179208 -k1,16455:16205610,38306669:179209 -k1,16455:17012653,38306669:179208 -k1,16455:18210947,38306669:179209 -k1,16455:19757236,38306669:179208 -k1,16455:20595737,38306669:179209 -k1,16455:23299393,38306669:179209 -k1,16455:25436161,38306669:179208 -k1,16455:26424740,38306669:179209 -k1,16455:26959808,38306669:179208 -k1,16455:28709260,38306669:179209 -k1,16455:29346565,38306669:179208 -k1,16455:30057271,38306669:179209 -k1,16456:32583029,38306669:0 -) -(1,16456:6630773,39148157:25952256,513147,134348 -k1,16455:7792780,39148157:209114 -k1,16455:8653322,39148157:209114 -k1,16455:9954921,39148157:209114 -k1,16455:12744187,39148157:209114 -k1,16455:13894397,39148157:209114 -k1,16455:14754939,39148157:209114 -k1,16455:17145747,39148157:209114 -k1,16455:18373947,39148157:209115 -k1,16455:20540621,39148157:209114 -k1,16455:23164081,39148157:209114 -k1,16455:24940816,39148157:209114 -k1,16455:26169015,39148157:209114 -(1,16455:26169015,39148157:0,414482,122846 -r1,16455:27582416,39148157:1413401,537328,122846 -k1,16455:26169015,39148157:-1413401 -) -(1,16455:26169015,39148157:1413401,414482,122846 -k1,16455:26169015,39148157:3277 -h1,16455:27579139,39148157:0,411205,112570 -) -k1,16455:27791530,39148157:209114 -k1,16455:28983684,39148157:209114 -k1,16455:30460264,39148157:209114 -k1,16455:31025238,39148157:209114 -k1,16455:32583029,39148157:0 -) -(1,16456:6630773,39989645:25952256,513147,134348 -g1,16455:8129581,39989645 -g1,16455:8988102,39989645 -g1,16455:10206416,39989645 -g1,16455:11477814,39989645 -g1,16455:13067062,39989645 -g1,16455:16012905,39989645 -g1,16455:16743631,39989645 -g1,16455:20032883,39989645 -g1,16455:20848150,39989645 -g1,16455:23326066,39989645 -h1,16455:24296654,39989645:0,0,0 -g1,16455:24495883,39989645 -g1,16455:25504482,39989645 -g1,16455:27201864,39989645 -h1,16455:28397241,39989645:0,0,0 -k1,16456:32583029,39989645:3805024 -g1,16456:32583029,39989645 -) -v1,16458:6630773,41132460:0,393216,0 -(1,16475:6630773,45510161:25952256,4770917,196608 -g1,16475:6630773,45510161 -g1,16475:6630773,45510161 -g1,16475:6434165,45510161 -(1,16475:6434165,45510161:0,4770917,196608 -r1,16475:32779637,45510161:26345472,4967525,196608 -k1,16475:6434165,45510161:-26345472 -) -(1,16475:6434165,45510161:26345472,4770917,196608 -[1,16475:6630773,45510161:25952256,4574309,0 -(1,16460:6630773,41346370:25952256,410518,107478 -(1,16459:6630773,41346370:0,0,0 -g1,16459:6630773,41346370 -g1,16459:6630773,41346370 -g1,16459:6303093,41346370 -(1,16459:6303093,41346370:0,0,0 -) -g1,16459:6630773,41346370 -) -k1,16460:6630773,41346370:0 -g1,16460:12321396,41346370 -g1,16460:12953688,41346370 -g1,16460:20225039,41346370 -g1,16460:25599516,41346370 -g1,16460:26231808,41346370 -g1,16460:28128683,41346370 -k1,16460:28128683,41346370:0 -h1,16460:29393265,41346370:0,0,0 -k1,16460:32583029,41346370:3189764 -g1,16460:32583029,41346370 -) -(1,16461:6630773,42012548:25952256,404226,76021 -h1,16461:6630773,42012548:0,0,0 -g1,16461:9792231,42012548 -g1,16461:10424523,42012548 -g1,16461:11372960,42012548 -k1,16461:11372960,42012548:0 -h1,16461:12637542,42012548:0,0,0 -k1,16461:32583030,42012548:19945488 -g1,16461:32583030,42012548 -) -(1,16462:6630773,42678726:25952256,404226,76021 -h1,16462:6630773,42678726:0,0,0 -g1,16462:11372959,42678726 -g1,16462:12005251,42678726 -g1,16462:15798999,42678726 -k1,16462:15798999,42678726:0 -h1,16462:17063581,42678726:0,0,0 -k1,16462:32583029,42678726:15519448 -g1,16462:32583029,42678726 -) -(1,16463:6630773,43344904:25952256,404226,107478 -h1,16463:6630773,43344904:0,0,0 -g1,16463:9476085,43344904 -g1,16463:10108377,43344904 -g1,16463:13585979,43344904 -g1,16463:14534416,43344904 -g1,16463:18012019,43344904 -g1,16463:21173476,43344904 -g1,16463:21805768,43344904 -g1,16463:24018788,43344904 -k1,16463:24018788,43344904:0 -h1,16463:25283370,43344904:0,0,0 -k1,16463:32583029,43344904:7299659 -g1,16463:32583029,43344904 -) -(1,16464:6630773,44011082:25952256,410518,101187 -h1,16464:6630773,44011082:0,0,0 -g1,16464:9792230,44011082 -g1,16464:10424522,44011082 -g1,16464:11372960,44011082 -g1,16464:12321397,44011082 -g1,16464:12953689,44011082 -g1,16464:16747438,44011082 -g1,16464:20541187,44011082 -g1,16464:21173479,44011082 -g1,16464:22438063,44011082 -g1,16464:23070355,44011082 -g1,16464:25915667,44011082 -g1,16464:26547959,44011082 -h1,16464:28128687,44011082:0,0,0 -k1,16464:32583029,44011082:4454342 -g1,16464:32583029,44011082 -) -(1,16474:6630773,44742796:25952256,404226,9436 -(1,16466:6630773,44742796:0,0,0 -g1,16466:6630773,44742796 -g1,16466:6630773,44742796 -g1,16466:6303093,44742796 -(1,16466:6303093,44742796:0,0,0 -) -g1,16466:6630773,44742796 -) -g1,16474:7579210,44742796 -g1,16474:8211502,44742796 -g1,16474:8843794,44742796 -g1,16474:11372960,44742796 -g1,16474:12637543,44742796 -g1,16474:13269835,44742796 -h1,16474:13585981,44742796:0,0,0 -k1,16474:32583029,44742796:18997048 -g1,16474:32583029,44742796 -) -(1,16474:6630773,45408974:25952256,410518,101187 -h1,16474:6630773,45408974:0,0,0 -k1,16474:7572189,45408974:309125 -k1,16474:7881315,45408974:309126 -k1,16474:8190440,45408974:309125 -k1,16474:9764148,45408974:309125 -k1,16474:10073273,45408974:309125 -k1,16474:10382399,45408974:309126 -k1,16474:10691524,45408974:309125 -k1,16474:11000649,45408974:309125 -k1,16474:11309775,45408974:309126 -k1,16474:11618900,45408974:309125 -k1,16474:11928025,45408974:309125 -k1,16474:12237151,45408974:309126 -k1,16474:12546276,45408974:309125 -k1,16474:12855401,45408974:309125 -k1,16474:13164526,45408974:309125 -k1,16474:13473652,45408974:309126 -k1,16474:13782777,45408974:309125 -k1,16474:15672630,45408974:309125 -k1,16474:17246339,45408974:309126 -k1,16474:17555464,45408974:309125 -k1,16474:17864589,45408974:309125 -k1,16474:18173714,45408974:309125 -k1,16474:18482840,45408974:309126 -k1,16474:18791965,45408974:309125 -k1,16474:19101090,45408974:309125 -k1,16474:19410216,45408974:309126 -k1,16474:19719341,45408974:309125 -k1,16474:20028466,45408974:309125 -k1,16474:20337591,45408974:309125 -k1,16474:20646717,45408974:309126 -k1,16474:20955842,45408974:309125 -k1,16474:21264967,45408974:309125 -k1,16474:21574093,45408974:309126 -k1,16474:21883218,45408974:309125 -k1,16474:22192343,45408974:309125 -k1,16474:23766052,45408974:309126 -k1,16474:24075177,45408974:309125 -k1,16474:25332739,45408974:309125 -k1,16474:25641864,45408974:309125 -k1,16474:25950990,45408974:309126 -k1,16474:29421572,45408974:309125 -h1,16474:32583029,45408974:0,0,0 -k1,16474:32583029,45408974:0 -k1,16474:32583029,45408974:0 -) -] -) -g1,16475:32583029,45510161 -g1,16475:6630773,45510161 -g1,16475:6630773,45510161 -g1,16475:32583029,45510161 -g1,16475:32583029,45510161 -) -] -(1,16475:32583029,45706769:0,0,0 -g1,16475:32583029,45706769 -) -) -] -(1,16475:6630773,47279633:25952256,0,0 -h1,16475:6630773,47279633:25952256,0,0 -) -] -h1,16475:4262630,4025873:0,0,0 -] -!26102 +[1,16506:3078558,4812305:0,0,0 +(1,16506:3078558,49800853:0,16384,2228224 +g1,16506:29030814,49800853 +g1,16506:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16506:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16506:37855564,49800853:1179648,16384,0 +) +) +k1,16506:3078556,49800853:-34777008 +) +] +g1,16506:6630773,4812305 +g1,16506:6630773,4812305 +g1,16506:8113852,4812305 +g1,16506:9545158,4812305 +k1,16506:31387652,4812305:21842494 +) +) +] +[1,16506:6630773,45706769:25952256,40108032,0 +(1,16506:6630773,45706769:25952256,40108032,0 +(1,16506:6630773,45706769:0,0,0 +g1,16506:6630773,45706769 +) +[1,16506:6630773,45706769:25952256,40108032,0 +v1,16465:6630773,6254097:0,393216,0 +(1,16465:6630773,19861296:25952256,14000415,196608 +g1,16465:6630773,19861296 +g1,16465:6630773,19861296 +g1,16465:6434165,19861296 +(1,16465:6434165,19861296:0,14000415,196608 +r1,16465:32779637,19861296:26345472,14197023,196608 +k1,16465:6434165,19861296:-26345472 +) +(1,16465:6434165,19861296:26345472,14000415,196608 +[1,16465:6630773,19861296:25952256,13803807,0 +(1,16464:6630773,6461715:25952256,404226,76021 +h1,16464:6630773,6461715:0,0,0 +g1,16464:7579210,6461715 +g1,16464:7895356,6461715 +g1,16464:8211502,6461715 +g1,16464:8527648,6461715 +g1,16464:8843794,6461715 +h1,16464:10740668,6461715:0,0,0 +k1,16464:32583028,6461715:21842360 +g1,16464:32583028,6461715 +) +(1,16464:6630773,7127893:25952256,404226,0 +h1,16464:6630773,7127893:0,0,0 +g1,16464:7579210,7127893 +g1,16464:7895356,7127893 +g1,16464:8211502,7127893 +g1,16464:8527648,7127893 +g1,16464:8843794,7127893 +k1,16464:8843794,7127893:0 +h1,16464:10108377,7127893:0,0,0 +k1,16464:32583029,7127893:22474652 +g1,16464:32583029,7127893 +) +(1,16464:6630773,7794071:25952256,404226,0 +h1,16464:6630773,7794071:0,0,0 +g1,16464:7579210,7794071 +g1,16464:7895356,7794071 +g1,16464:8211502,7794071 +g1,16464:8527648,7794071 +g1,16464:8843794,7794071 +k1,16464:8843794,7794071:0 +h1,16464:10108377,7794071:0,0,0 +k1,16464:32583029,7794071:22474652 +g1,16464:32583029,7794071 +) +(1,16464:6630773,8460249:25952256,404226,76021 +h1,16464:6630773,8460249:0,0,0 +g1,16464:7579210,8460249 +g1,16464:7895356,8460249 +g1,16464:8211502,8460249 +g1,16464:8527648,8460249 +g1,16464:8843794,8460249 +g1,16464:9159940,8460249 +g1,16464:9476086,8460249 +h1,16464:11372960,8460249:0,0,0 +k1,16464:32583028,8460249:21210068 +g1,16464:32583028,8460249 +) +(1,16464:6630773,9126427:25952256,404226,76021 +h1,16464:6630773,9126427:0,0,0 +g1,16464:7579210,9126427 +g1,16464:7895356,9126427 +g1,16464:8211502,9126427 +g1,16464:8527648,9126427 +g1,16464:8843794,9126427 +h1,16464:10740668,9126427:0,0,0 +k1,16464:32583028,9126427:21842360 +g1,16464:32583028,9126427 +) +(1,16464:6630773,9792605:25952256,404226,0 +h1,16464:6630773,9792605:0,0,0 +g1,16464:7579210,9792605 +g1,16464:7895356,9792605 +g1,16464:8211502,9792605 +g1,16464:8527648,9792605 +g1,16464:8843794,9792605 +k1,16464:8843794,9792605:0 +h1,16464:10108377,9792605:0,0,0 +k1,16464:32583029,9792605:22474652 +g1,16464:32583029,9792605 +) +(1,16464:6630773,10458783:25952256,379060,101187 +h1,16464:6630773,10458783:0,0,0 +g1,16464:7579210,10458783 +g1,16464:7895356,10458783 +g1,16464:8211502,10458783 +g1,16464:8527648,10458783 +g1,16464:8843794,10458783 +k1,16464:8843794,10458783:0 +h1,16464:9792231,10458783:0,0,0 +k1,16464:32583029,10458783:22790798 +g1,16464:32583029,10458783 +) +(1,16464:6630773,11124961:25952256,404226,76021 +h1,16464:6630773,11124961:0,0,0 +g1,16464:7579210,11124961 +g1,16464:7895356,11124961 +g1,16464:8211502,11124961 +g1,16464:8527648,11124961 +g1,16464:8843794,11124961 +g1,16464:9159940,11124961 +g1,16464:9476086,11124961 +h1,16464:11372960,11124961:0,0,0 +k1,16464:32583028,11124961:21210068 +g1,16464:32583028,11124961 +) +(1,16464:6630773,11791139:25952256,410518,76021 +h1,16464:6630773,11791139:0,0,0 +g1,16464:7579210,11791139 +g1,16464:7895356,11791139 +g1,16464:8211502,11791139 +g1,16464:8527648,11791139 +g1,16464:8843794,11791139 +g1,16464:9159940,11791139 +g1,16464:9476086,11791139 +g1,16464:10424523,11791139 +k1,16464:10424523,11791139:0 +h1,16464:12637543,11791139:0,0,0 +k1,16464:32583029,11791139:19945486 +g1,16464:32583029,11791139 +) +(1,16464:6630773,12457317:25952256,404226,76021 +h1,16464:6630773,12457317:0,0,0 +g1,16464:7579210,12457317 +g1,16464:7895356,12457317 +g1,16464:8211502,12457317 +g1,16464:8527648,12457317 +g1,16464:8843794,12457317 +g1,16464:9159940,12457317 +g1,16464:9476086,12457317 +g1,16464:9792232,12457317 +g1,16464:10108378,12457317 +h1,16464:12005252,12457317:0,0,0 +k1,16464:32583028,12457317:20577776 +g1,16464:32583028,12457317 +) +(1,16464:6630773,13123495:25952256,404226,76021 +h1,16464:6630773,13123495:0,0,0 +g1,16464:7579210,13123495 +g1,16464:7895356,13123495 +g1,16464:8211502,13123495 +g1,16464:8527648,13123495 +g1,16464:8843794,13123495 +g1,16464:9159940,13123495 +g1,16464:9476086,13123495 +h1,16464:11372960,13123495:0,0,0 +k1,16464:32583028,13123495:21210068 +g1,16464:32583028,13123495 +) +(1,16464:6630773,13789673:25952256,404226,76021 +h1,16464:6630773,13789673:0,0,0 +g1,16464:7579210,13789673 +g1,16464:7895356,13789673 +g1,16464:8211502,13789673 +g1,16464:8527648,13789673 +g1,16464:8843794,13789673 +h1,16464:10740668,13789673:0,0,0 +k1,16464:32583028,13789673:21842360 +g1,16464:32583028,13789673 +) +(1,16464:6630773,14455851:25952256,379060,101187 +h1,16464:6630773,14455851:0,0,0 +g1,16464:7579210,14455851 +g1,16464:7895356,14455851 +g1,16464:8211502,14455851 +g1,16464:8527648,14455851 +g1,16464:8843794,14455851 +k1,16464:8843794,14455851:0 +h1,16464:9792231,14455851:0,0,0 +k1,16464:32583029,14455851:22790798 +g1,16464:32583029,14455851 +) +(1,16464:6630773,15122029:25952256,404226,76021 +h1,16464:6630773,15122029:0,0,0 +g1,16464:7579210,15122029 +g1,16464:7895356,15122029 +g1,16464:8211502,15122029 +g1,16464:8527648,15122029 +g1,16464:8843794,15122029 +g1,16464:9159940,15122029 +g1,16464:9476086,15122029 +h1,16464:11372960,15122029:0,0,0 +k1,16464:32583028,15122029:21210068 +g1,16464:32583028,15122029 +) +(1,16464:6630773,15788207:25952256,410518,76021 +h1,16464:6630773,15788207:0,0,0 +g1,16464:7579210,15788207 +g1,16464:7895356,15788207 +g1,16464:8211502,15788207 +g1,16464:8527648,15788207 +g1,16464:8843794,15788207 +g1,16464:9159940,15788207 +g1,16464:9476086,15788207 +g1,16464:10424523,15788207 +k1,16464:10424523,15788207:0 +h1,16464:12637543,15788207:0,0,0 +k1,16464:32583029,15788207:19945486 +g1,16464:32583029,15788207 +) +(1,16464:6630773,16454385:25952256,404226,76021 +h1,16464:6630773,16454385:0,0,0 +g1,16464:7579210,16454385 +g1,16464:7895356,16454385 +g1,16464:8211502,16454385 +g1,16464:8527648,16454385 +g1,16464:8843794,16454385 +g1,16464:9159940,16454385 +g1,16464:9476086,16454385 +g1,16464:9792232,16454385 +g1,16464:10108378,16454385 +h1,16464:12005252,16454385:0,0,0 +k1,16464:32583028,16454385:20577776 +g1,16464:32583028,16454385 +) +(1,16464:6630773,17120563:25952256,404226,76021 +h1,16464:6630773,17120563:0,0,0 +g1,16464:7579210,17120563 +g1,16464:7895356,17120563 +g1,16464:8211502,17120563 +g1,16464:8527648,17120563 +g1,16464:8843794,17120563 +g1,16464:9159940,17120563 +g1,16464:9476086,17120563 +h1,16464:11372960,17120563:0,0,0 +k1,16464:32583028,17120563:21210068 +g1,16464:32583028,17120563 +) +(1,16464:6630773,17786741:25952256,404226,76021 +h1,16464:6630773,17786741:0,0,0 +g1,16464:7579210,17786741 +g1,16464:7895356,17786741 +g1,16464:8211502,17786741 +g1,16464:8527648,17786741 +g1,16464:8843794,17786741 +h1,16464:10740668,17786741:0,0,0 +k1,16464:32583028,17786741:21842360 +g1,16464:32583028,17786741 +) +(1,16464:6630773,18452919:25952256,404226,6290 +h1,16464:6630773,18452919:0,0,0 +g1,16464:7579210,18452919 +g1,16464:7895356,18452919 +g1,16464:8211502,18452919 +g1,16464:8527648,18452919 +g1,16464:8843794,18452919 +k1,16464:8843794,18452919:0 +h1,16464:11689105,18452919:0,0,0 +k1,16464:32583029,18452919:20893924 +g1,16464:32583029,18452919 +) +(1,16464:6630773,19119097:25952256,404226,76021 +h1,16464:6630773,19119097:0,0,0 +g1,16464:7579210,19119097 +g1,16464:7895356,19119097 +g1,16464:8211502,19119097 +g1,16464:8527648,19119097 +g1,16464:8843794,19119097 +g1,16464:9159940,19119097 +g1,16464:9476086,19119097 +h1,16464:11372960,19119097:0,0,0 +k1,16464:32583028,19119097:21210068 +g1,16464:32583028,19119097 +) +(1,16464:6630773,19785275:25952256,404226,76021 +h1,16464:6630773,19785275:0,0,0 +g1,16464:7579210,19785275 +g1,16464:7895356,19785275 +g1,16464:8211502,19785275 +g1,16464:8527648,19785275 +g1,16464:8843794,19785275 +h1,16464:10740668,19785275:0,0,0 +k1,16464:32583028,19785275:21842360 +g1,16464:32583028,19785275 +) +] +) +g1,16465:32583029,19861296 +g1,16465:6630773,19861296 +g1,16465:6630773,19861296 +g1,16465:32583029,19861296 +g1,16465:32583029,19861296 +) +h1,16465:6630773,20057904:0,0,0 +(1,16469:6630773,21376028:25952256,513147,134348 +h1,16468:6630773,21376028:983040,0,0 +k1,16468:9710811,21376028:635545 +k1,16468:11214708,21376028:635545 +k1,16468:14054230,21376028:635546 +k1,16468:15708860,21376028:635545 +k1,16468:17570584,21376028:635545 +k1,16468:19773750,21376028:635545 +k1,16468:21197694,21376028:635546 +(1,16468:21197694,21376028:0,452978,115847 +r1,16468:22962807,21376028:1765113,568825,115847 +k1,16468:21197694,21376028:-1765113 +) +(1,16468:21197694,21376028:1765113,452978,115847 +k1,16468:21197694,21376028:3277 +h1,16468:22959530,21376028:0,411205,112570 +) +k1,16468:23598352,21376028:635545 +k1,16468:27186294,21376028:635545 +k1,16468:29557232,21376028:635545 +k1,16469:32583029,21376028:0 +) +(1,16469:6630773,22217516:25952256,505283,115847 +(1,16468:6630773,22217516:0,459977,115847 +r1,16468:11561293,22217516:4930520,575824,115847 +k1,16468:6630773,22217516:-4930520 +) +(1,16468:6630773,22217516:4930520,459977,115847 +k1,16468:6630773,22217516:3277 +h1,16468:11558016,22217516:0,411205,112570 +) +g1,16468:11760522,22217516 +g1,16468:13151196,22217516 +(1,16468:13151196,22217516:0,452978,115847 +r1,16468:16674868,22217516:3523672,568825,115847 +k1,16468:13151196,22217516:-3523672 +) +(1,16468:13151196,22217516:3523672,452978,115847 +k1,16468:13151196,22217516:3277 +h1,16468:16671591,22217516:0,411205,112570 +) +k1,16469:32583029,22217516:15734491 +g1,16469:32583029,22217516 +) +v1,16471:6630773,23360331:0,393216,0 +(1,16478:6630773,24413433:25952256,1446318,196608 +g1,16478:6630773,24413433 +g1,16478:6630773,24413433 +g1,16478:6434165,24413433 +(1,16478:6434165,24413433:0,1446318,196608 +r1,16478:32779637,24413433:26345472,1642926,196608 +k1,16478:6434165,24413433:-26345472 +) +(1,16478:6434165,24413433:26345472,1446318,196608 +[1,16478:6630773,24413433:25952256,1249710,0 +(1,16473:6630773,23574241:25952256,410518,107478 +(1,16472:6630773,23574241:0,0,0 +g1,16472:6630773,23574241 +g1,16472:6630773,23574241 +g1,16472:6303093,23574241 +(1,16472:6303093,23574241:0,0,0 +) +g1,16472:6630773,23574241 +) +k1,16473:6630773,23574241:0 +g1,16473:16747435,23574241 +h1,16473:20541183,23574241:0,0,0 +k1,16473:32583029,23574241:12041846 +g1,16473:32583029,23574241 +) +(1,16477:6630773,24305955:25952256,410518,107478 +(1,16475:6630773,24305955:0,0,0 +g1,16475:6630773,24305955 +g1,16475:6630773,24305955 +g1,16475:6303093,24305955 +(1,16475:6303093,24305955:0,0,0 +) +g1,16475:6630773,24305955 +) +g1,16477:7579210,24305955 +g1,16477:8843793,24305955 +g1,16477:11056813,24305955 +g1,16477:12005250,24305955 +g1,16477:12637542,24305955 +g1,16477:15482853,24305955 +g1,16477:16747436,24305955 +h1,16477:20857330,24305955:0,0,0 +k1,16477:32583029,24305955:11725699 +g1,16477:32583029,24305955 +) +] +) +g1,16478:32583029,24413433 +g1,16478:6630773,24413433 +g1,16478:6630773,24413433 +g1,16478:32583029,24413433 +g1,16478:32583029,24413433 +) +h1,16478:6630773,24610041:0,0,0 +(1,16483:6630773,25928165:25952256,513147,134348 +h1,16481:6630773,25928165:983040,0,0 +k1,16481:9023744,25928165:213244 +k1,16481:12262785,25928165:213244 +k1,16481:14857607,25928165:213244 +k1,16481:15686890,25928165:213245 +k1,16481:17103375,25928165:213244 +k1,16481:19896771,25928165:213244 +k1,16481:21214297,25928165:213244 +k1,16481:22175307,25928165:213244 +k1,16481:23901777,25928165:213244 +k1,16481:24766450,25928165:213245 +k1,16481:27930780,25928165:213244 +k1,16481:29533387,25928165:213244 +k1,16481:31314252,25928165:213244 +k1,16481:32583029,25928165:0 +) +(1,16483:6630773,26769653:25952256,513147,134348 +k1,16481:8809471,26769653:176573 +k1,16481:10058212,26769653:176572 +k1,16481:11520601,26769653:176573 +k1,16481:12348602,26769653:176573 +k1,16481:13937475,26769653:176572 +k1,16481:15503411,26769653:176573 +k1,16481:17247604,26769653:176572 +k1,16481:18737519,26769653:176573 +k1,16481:20649485,26769653:176573 +k1,16481:23336741,26769653:176572 +k1,16481:24797820,26769653:176573 +k1,16481:25965953,26769653:176573 +k1,16481:28524103,26769653:176572 +k1,16481:31259202,26769653:176573 +k1,16481:32583029,26769653:0 +) +(1,16483:6630773,27611141:25952256,505283,7863 +g1,16481:9735868,27611141 +k1,16483:32583028,27611141:22847160 +g1,16483:32583028,27611141 +) +(1,16484:6630773,30418709:25952256,32768,229376 +(1,16484:6630773,30418709:0,32768,229376 +(1,16484:6630773,30418709:5505024,32768,229376 +r1,16484:12135797,30418709:5505024,262144,229376 +) +k1,16484:6630773,30418709:-5505024 +) +(1,16484:6630773,30418709:25952256,32768,0 +r1,16484:32583029,30418709:25952256,32768,0 +) +) +(1,16484:6630773,32023037:25952256,615776,14155 +(1,16484:6630773,32023037:1974731,582746,14155 +g1,16484:6630773,32023037 +g1,16484:8605504,32023037 +) +g1,16484:10477999,32023037 +k1,16484:32583029,32023037:20466892 +g1,16484:32583029,32023037 +) +(1,16487:6630773,33257741:25952256,513147,134348 +k1,16486:8140149,33257741:223560 +k1,16486:9781252,33257741:223559 +k1,16486:12981482,33257741:223585 +k1,16486:15686914,33257741:223584 +k1,16486:17223840,33257741:223584 +k1,16486:18539909,33257741:223584 +k1,16486:19534196,33257741:223584 +k1,16486:21116973,33257741:223560 +k1,16486:23733932,33257741:223584 +k1,16486:26814230,33257741:223584 +k1,16486:27985466,33257741:223585 +k1,16486:30242632,33257741:223584 +k1,16486:31657661,33257741:223584 +k1,16487:32583029,33257741:0 +) +(1,16487:6630773,34099229:25952256,513147,134348 +k1,16486:9688945,34099229:174588 +k1,16486:11252896,34099229:174588 +k1,16486:12995105,34099229:174588 +k1,16486:16674558,34099229:174588 +k1,16486:20453626,34099229:174588 +k1,16486:23204433,34099229:174587 +k1,16486:25177329,34099229:174588 +k1,16486:27184304,34099229:174588 +k1,16486:27890389,34099229:174588 +k1,16486:29757117,34099229:174588 +k1,16486:32583029,34099229:0 +) +(1,16487:6630773,34940717:25952256,513147,134348 +k1,16486:7619915,34940717:179772 +k1,16486:8818771,34940717:179771 +k1,16486:11840184,34940717:179772 +k1,16486:13831371,34940717:179772 +k1,16486:17373139,34940717:179771 +k1,16486:18362281,34940717:179772 +k1,16486:19561137,34940717:179771 +k1,16486:22252904,34940717:179772 +k1,16486:23091968,34940717:179772 +k1,16486:24290824,34940717:179771 +k1,16486:25681027,34940717:179753 +k1,16486:28545153,34940717:179771 +k1,16486:29921612,34940717:179772 +k1,16486:32583029,34940717:0 +) +(1,16487:6630773,35782205:25952256,513147,134348 +k1,16486:8245279,35782205:225143 +k1,16486:9983649,35782205:225144 +k1,16486:11606675,35782205:225143 +k1,16486:12363316,35782205:225144 +k1,16486:14156080,35782205:225143 +k1,16486:14737084,35782205:225144 +k1,16486:18366167,35782205:225143 +k1,16486:20620306,35782205:225144 +k1,16486:22055873,35782205:225117 +k1,16486:24438462,35782205:225144 +k1,16486:25860292,35782205:225143 +k1,16486:28746853,35782205:225144 +k1,16486:30840427,35782205:225143 +k1,16486:32583029,35782205:0 +) +(1,16487:6630773,36623693:25952256,505283,134348 +k1,16486:7813193,36623693:163335 +k1,16486:9365891,36623693:163335 +k1,16486:10796692,36623693:163335 +k1,16486:11315887,36623693:163335 +(1,16486:11315887,36623693:0,452978,115847 +r1,16486:13432712,36623693:2116825,568825,115847 +k1,16486:11315887,36623693:-2116825 +) +(1,16486:11315887,36623693:2116825,452978,115847 +k1,16486:11315887,36623693:3277 +h1,16486:13429435,36623693:0,411205,112570 +) +k1,16486:13596047,36623693:163335 +k1,16486:14445544,36623693:163335 +k1,16486:17583557,36623693:163334 +k1,16486:20116674,36623693:163335 +k1,16486:21322031,36623693:163335 +k1,16486:24183483,36623693:163335 +k1,16486:25365903,36623693:163335 +k1,16486:28503917,36623693:163335 +k1,16486:30677897,36623693:163335 +k1,16487:32583029,36623693:0 +) +(1,16487:6630773,37465181:25952256,505283,134348 +k1,16486:9185257,37465181:214849 +k1,16486:12216187,37465181:214848 +k1,16486:13622481,37465181:214849 +k1,16486:15548475,37465181:214849 +k1,16486:17719573,37465181:214848 +k1,16486:19464688,37465181:214849 +k1,16486:20330965,37465181:214849 +k1,16486:21293579,37465181:214848 +k1,16486:24669229,37465181:214849 +k1,16486:25535506,37465181:214849 +k1,16486:28370483,37465181:214848 +k1,16486:29776777,37465181:214849 +k1,16486:32583029,37465181:0 +) +(1,16487:6630773,38306669:25952256,513147,134348 +(1,16486:6837867,38306669:0,414482,115847 +r1,16486:9306404,38306669:2468537,530329,115847 +k1,16486:6837867,38306669:-2468537 +) +(1,16486:6837867,38306669:2468537,414482,115847 +k1,16486:6837867,38306669:3277 +h1,16486:9303127,38306669:0,411205,112570 +) +k1,16486:9718125,38306669:204627 +k1,16486:12107067,38306669:204627 +k1,16486:16281866,38306669:204628 +k1,16486:17114328,38306669:204627 +k1,16486:18338040,38306669:204627 +k1,16486:19909748,38306669:204627 +k1,16486:20773668,38306669:204628 +k1,16486:23502742,38306669:204627 +k1,16486:25664929,38306669:204627 +k1,16486:26678926,38306669:204627 +k1,16486:27239413,38306669:204627 +k1,16486:29014284,38306669:204628 +k1,16486:29677008,38306669:204627 +k1,16486:30413132,38306669:204627 +k1,16487:32583029,38306669:0 +) +(1,16487:6630773,39148157:25952256,513147,134348 +k1,16486:8126400,39148157:186873 +k1,16486:8964700,39148157:186872 +k1,16486:10244058,39148157:186873 +k1,16486:13011083,39148157:186873 +k1,16486:14139052,39148157:186873 +k1,16486:14977352,39148157:186872 +k1,16486:17345919,39148157:186873 +k1,16486:18551877,39148157:186873 +k1,16486:20696310,39148157:186873 +k1,16486:23297528,39148157:186872 +k1,16486:25052022,39148157:186873 +k1,16486:26257980,39148157:186873 +(1,16486:26257980,39148157:0,414482,122846 +r1,16486:27671381,39148157:1413401,537328,122846 +k1,16486:26257980,39148157:-1413401 +) +(1,16486:26257980,39148157:1413401,414482,122846 +k1,16486:26257980,39148157:3277 +h1,16486:27668104,39148157:0,411205,112570 +) +k1,16486:27858254,39148157:186873 +k1,16486:29028166,39148157:186872 +k1,16486:30482505,39148157:186873 +k1,16486:31025238,39148157:186873 +k1,16486:32583029,39148157:0 +) +(1,16487:6630773,39989645:25952256,513147,134348 +g1,16486:8129581,39989645 +g1,16486:8988102,39989645 +g1,16486:10206416,39989645 +g1,16486:11477814,39989645 +g1,16486:13067062,39989645 +g1,16486:16012905,39989645 +g1,16486:16743631,39989645 +g1,16486:20032883,39989645 +g1,16486:20848150,39989645 +g1,16486:23326066,39989645 +h1,16486:24296654,39989645:0,0,0 +g1,16486:24495883,39989645 +g1,16486:25504482,39989645 +g1,16486:27201864,39989645 +h1,16486:28397241,39989645:0,0,0 +k1,16487:32583029,39989645:3805024 +g1,16487:32583029,39989645 +) +v1,16489:6630773,41132460:0,393216,0 +(1,16506:6630773,45510161:25952256,4770917,196608 +g1,16506:6630773,45510161 +g1,16506:6630773,45510161 +g1,16506:6434165,45510161 +(1,16506:6434165,45510161:0,4770917,196608 +r1,16506:32779637,45510161:26345472,4967525,196608 +k1,16506:6434165,45510161:-26345472 +) +(1,16506:6434165,45510161:26345472,4770917,196608 +[1,16506:6630773,45510161:25952256,4574309,0 +(1,16491:6630773,41346370:25952256,410518,107478 +(1,16490:6630773,41346370:0,0,0 +g1,16490:6630773,41346370 +g1,16490:6630773,41346370 +g1,16490:6303093,41346370 +(1,16490:6303093,41346370:0,0,0 +) +g1,16490:6630773,41346370 +) +k1,16491:6630773,41346370:0 +g1,16491:12321396,41346370 +g1,16491:12953688,41346370 +g1,16491:20225039,41346370 +g1,16491:25599516,41346370 +g1,16491:26231808,41346370 +g1,16491:28128683,41346370 +k1,16491:28128683,41346370:0 +h1,16491:29393265,41346370:0,0,0 +k1,16491:32583029,41346370:3189764 +g1,16491:32583029,41346370 +) +(1,16492:6630773,42012548:25952256,404226,76021 +h1,16492:6630773,42012548:0,0,0 +g1,16492:9792231,42012548 +g1,16492:10424523,42012548 +g1,16492:11372960,42012548 +k1,16492:11372960,42012548:0 +h1,16492:12637542,42012548:0,0,0 +k1,16492:32583030,42012548:19945488 +g1,16492:32583030,42012548 +) +(1,16493:6630773,42678726:25952256,404226,76021 +h1,16493:6630773,42678726:0,0,0 +g1,16493:11372959,42678726 +g1,16493:12005251,42678726 +g1,16493:15798999,42678726 +k1,16493:15798999,42678726:0 +h1,16493:17063581,42678726:0,0,0 +k1,16493:32583029,42678726:15519448 +g1,16493:32583029,42678726 +) +(1,16494:6630773,43344904:25952256,404226,107478 +h1,16494:6630773,43344904:0,0,0 +g1,16494:9476085,43344904 +g1,16494:10108377,43344904 +g1,16494:13585979,43344904 +g1,16494:14534416,43344904 +g1,16494:18012019,43344904 +g1,16494:21173476,43344904 +g1,16494:21805768,43344904 +g1,16494:24018788,43344904 +k1,16494:24018788,43344904:0 +h1,16494:25283370,43344904:0,0,0 +k1,16494:32583029,43344904:7299659 +g1,16494:32583029,43344904 +) +(1,16495:6630773,44011082:25952256,410518,101187 +h1,16495:6630773,44011082:0,0,0 +g1,16495:9792230,44011082 +g1,16495:10424522,44011082 +g1,16495:11372960,44011082 +g1,16495:12321397,44011082 +g1,16495:12953689,44011082 +g1,16495:16747438,44011082 +g1,16495:20541187,44011082 +g1,16495:21173479,44011082 +g1,16495:22438063,44011082 +g1,16495:23070355,44011082 +g1,16495:25915667,44011082 +g1,16495:26547959,44011082 +h1,16495:28128687,44011082:0,0,0 +k1,16495:32583029,44011082:4454342 +g1,16495:32583029,44011082 +) +(1,16505:6630773,44742796:25952256,404226,9436 +(1,16497:6630773,44742796:0,0,0 +g1,16497:6630773,44742796 +g1,16497:6630773,44742796 +g1,16497:6303093,44742796 +(1,16497:6303093,44742796:0,0,0 +) +g1,16497:6630773,44742796 +) +g1,16505:7579210,44742796 +g1,16505:8211502,44742796 +g1,16505:8843794,44742796 +g1,16505:11372960,44742796 +g1,16505:12637543,44742796 +g1,16505:13269835,44742796 +h1,16505:13585981,44742796:0,0,0 +k1,16505:32583029,44742796:18997048 +g1,16505:32583029,44742796 +) +(1,16505:6630773,45408974:25952256,410518,101187 +h1,16505:6630773,45408974:0,0,0 +k1,16505:7572189,45408974:309125 +k1,16505:7881315,45408974:309126 +k1,16505:8190440,45408974:309125 +k1,16505:9764148,45408974:309125 +k1,16505:10073273,45408974:309125 +k1,16505:10382399,45408974:309126 +k1,16505:10691524,45408974:309125 +k1,16505:11000649,45408974:309125 +k1,16505:11309775,45408974:309126 +k1,16505:11618900,45408974:309125 +k1,16505:11928025,45408974:309125 +k1,16505:12237151,45408974:309126 +k1,16505:12546276,45408974:309125 +k1,16505:12855401,45408974:309125 +k1,16505:13164526,45408974:309125 +k1,16505:13473652,45408974:309126 +k1,16505:13782777,45408974:309125 +k1,16505:15672630,45408974:309125 +k1,16505:17246339,45408974:309126 +k1,16505:17555464,45408974:309125 +k1,16505:17864589,45408974:309125 +k1,16505:18173714,45408974:309125 +k1,16505:18482840,45408974:309126 +k1,16505:18791965,45408974:309125 +k1,16505:19101090,45408974:309125 +k1,16505:19410216,45408974:309126 +k1,16505:19719341,45408974:309125 +k1,16505:20028466,45408974:309125 +k1,16505:20337591,45408974:309125 +k1,16505:20646717,45408974:309126 +k1,16505:20955842,45408974:309125 +k1,16505:21264967,45408974:309125 +k1,16505:21574093,45408974:309126 +k1,16505:21883218,45408974:309125 +k1,16505:22192343,45408974:309125 +k1,16505:23766052,45408974:309126 +k1,16505:24075177,45408974:309125 +k1,16505:25332739,45408974:309125 +k1,16505:25641864,45408974:309125 +k1,16505:25950990,45408974:309126 +k1,16505:29421572,45408974:309125 +h1,16505:32583029,45408974:0,0,0 +k1,16505:32583029,45408974:0 +k1,16505:32583029,45408974:0 +) +] +) +g1,16506:32583029,45510161 +g1,16506:6630773,45510161 +g1,16506:6630773,45510161 +g1,16506:32583029,45510161 +g1,16506:32583029,45510161 +) +] +(1,16506:32583029,45706769:0,0,0 +g1,16506:32583029,45706769 +) +) +] +(1,16506:6630773,47279633:25952256,0,0 +h1,16506:6630773,47279633:25952256,0,0 +) +] +h1,16506:4262630,4025873:0,0,0 +] +!26103 }320 !12 {321 -[1,16502:4262630,47279633:28320399,43253760,0 -(1,16502:4262630,4025873:0,0,0 -[1,16502:-473657,4025873:25952256,0,0 -(1,16502:-473657,-710414:25952256,0,0 -h1,16502:-473657,-710414:0,0,0 -(1,16502:-473657,-710414:0,0,0 -(1,16502:-473657,-710414:0,0,0 -g1,16502:-473657,-710414 -(1,16502:-473657,-710414:65781,0,65781 -g1,16502:-407876,-710414 -[1,16502:-407876,-644633:0,0,0 +[1,16533:4262630,47279633:28320399,43253760,0 +(1,16533:4262630,4025873:0,0,0 +[1,16533:-473657,4025873:25952256,0,0 +(1,16533:-473657,-710414:25952256,0,0 +h1,16533:-473657,-710414:0,0,0 +(1,16533:-473657,-710414:0,0,0 +(1,16533:-473657,-710414:0,0,0 +g1,16533:-473657,-710414 +(1,16533:-473657,-710414:65781,0,65781 +g1,16533:-407876,-710414 +[1,16533:-407876,-644633:0,0,0 ] ) -k1,16502:-473657,-710414:-65781 +k1,16533:-473657,-710414:-65781 ) ) -k1,16502:25478599,-710414:25952256 -g1,16502:25478599,-710414 +k1,16533:25478599,-710414:25952256 +g1,16533:25478599,-710414 ) ] ) -[1,16502:6630773,47279633:25952256,43253760,0 -[1,16502:6630773,4812305:25952256,786432,0 -(1,16502:6630773,4812305:25952256,505283,126483 -(1,16502:6630773,4812305:25952256,505283,126483 -g1,16502:3078558,4812305 -[1,16502:3078558,4812305:0,0,0 -(1,16502:3078558,2439708:0,1703936,0 -k1,16502:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16502:2537886,2439708:1179648,16384,0 +[1,16533:6630773,47279633:25952256,43253760,0 +[1,16533:6630773,4812305:25952256,786432,0 +(1,16533:6630773,4812305:25952256,505283,126483 +(1,16533:6630773,4812305:25952256,505283,126483 +g1,16533:3078558,4812305 +[1,16533:3078558,4812305:0,0,0 +(1,16533:3078558,2439708:0,1703936,0 +k1,16533:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16533:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16502:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16533:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16502:3078558,4812305:0,0,0 -(1,16502:3078558,2439708:0,1703936,0 -g1,16502:29030814,2439708 -g1,16502:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16502:36151628,1915420:16384,1179648,0 +[1,16533:3078558,4812305:0,0,0 +(1,16533:3078558,2439708:0,1703936,0 +g1,16533:29030814,2439708 +g1,16533:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16533:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16502:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16533:37855564,2439708:1179648,16384,0 ) ) -k1,16502:3078556,2439708:-34777008 +k1,16533:3078556,2439708:-34777008 ) ] -[1,16502:3078558,4812305:0,0,0 -(1,16502:3078558,49800853:0,16384,2228224 -k1,16502:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16502:2537886,49800853:1179648,16384,0 +[1,16533:3078558,4812305:0,0,0 +(1,16533:3078558,49800853:0,16384,2228224 +k1,16533:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16533:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16502:3078558,51504789:16384,1179648,0 -) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 -) -] -) -) -) -] -[1,16502:3078558,4812305:0,0,0 -(1,16502:3078558,49800853:0,16384,2228224 -g1,16502:29030814,49800853 -g1,16502:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16502:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16502:37855564,49800853:1179648,16384,0 -) -) -k1,16502:3078556,49800853:-34777008 -) -] -g1,16502:6630773,4812305 -k1,16502:25146660,4812305:17320510 -g1,16502:26880087,4812305 -g1,16502:29193507,4812305 -g1,16502:30603186,4812305 -) -) -] -[1,16502:6630773,45706769:25952256,40108032,0 -(1,16502:6630773,45706769:25952256,40108032,0 -(1,16502:6630773,45706769:0,0,0 -g1,16502:6630773,45706769 -) -[1,16502:6630773,45706769:25952256,40108032,0 -v1,16475:6630773,6254097:0,393216,0 -(1,16475:6630773,9135863:25952256,3274982,196608 -g1,16475:6630773,9135863 -g1,16475:6630773,9135863 -g1,16475:6434165,9135863 -(1,16475:6434165,9135863:0,3274982,196608 -r1,16475:32779637,9135863:26345472,3471590,196608 -k1,16475:6434165,9135863:-26345472 -) -(1,16475:6434165,9135863:26345472,3274982,196608 -[1,16475:6630773,9135863:25952256,3078374,0 -(1,16474:6630773,6461715:25952256,404226,6290 -h1,16474:6630773,6461715:0,0,0 -g1,16474:7579210,6461715 -g1,16474:7895356,6461715 -g1,16474:8211502,6461715 -g1,16474:10108377,6461715 -g1,16474:10424523,6461715 -g1,16474:10740669,6461715 -g1,16474:11056815,6461715 -g1,16474:11372961,6461715 -g1,16474:11689107,6461715 -g1,16474:12005253,6461715 -g1,16474:12321399,6461715 -g1,16474:12637545,6461715 -g1,16474:12953691,6461715 -g1,16474:13269837,6461715 -g1,16474:13585983,6461715 -g1,16474:13902129,6461715 -g1,16474:15799004,6461715 -g1,16474:17695879,6461715 -g1,16474:18012025,6461715 -g1,16474:18328171,6461715 -g1,16474:18644317,6461715 -g1,16474:18960463,6461715 -g1,16474:19276609,6461715 -g1,16474:19592755,6461715 -g1,16474:19908901,6461715 -g1,16474:20225047,6461715 -g1,16474:20541193,6461715 -g1,16474:20857339,6461715 -g1,16474:21173485,6461715 -g1,16474:21489631,6461715 -g1,16474:21805777,6461715 -g1,16474:22121923,6461715 -g1,16474:22438069,6461715 -g1,16474:24334944,6461715 -g1,16474:26231819,6461715 -g1,16474:28128694,6461715 -g1,16474:28444840,6461715 -g1,16474:28760986,6461715 -g1,16474:29077132,6461715 -g1,16474:29393278,6461715 -g1,16474:29709424,6461715 -k1,16474:29709424,6461715:0 -h1,16474:31290153,6461715:0,0,0 -k1,16474:32583029,6461715:1292876 -g1,16474:32583029,6461715 -) -(1,16474:6630773,7127893:25952256,404226,101187 -h1,16474:6630773,7127893:0,0,0 -k1,16474:7560021,7127893:296957 -k1,16474:8173123,7127893:296956 -k1,16474:13844557,7127893:296957 -k1,16474:15722242,7127893:296957 -k1,16474:22342111,7127893:296956 -k1,16474:22955214,7127893:296957 -k1,16474:23252171,7127893:296957 -k1,16474:23549127,7127893:296956 -k1,16474:23846084,7127893:296957 -k1,16474:24143041,7127893:296957 -k1,16474:25072288,7127893:296956 -k1,16474:25369245,7127893:296957 -k1,16474:25666202,7127893:296957 -k1,16474:25963158,7127893:296956 -k1,16474:29421572,7127893:296957 -h1,16474:32583029,7127893:0,0,0 -k1,16474:32583029,7127893:0 -k1,16474:32583029,7127893:0 -) -(1,16474:6630773,7794071:25952256,404226,101187 -h1,16474:6630773,7794071:0,0,0 -k1,16474:7560021,7794071:296957 -k1,16474:8173123,7794071:296956 -k1,16474:13844557,7794071:296957 -k1,16474:15722242,7794071:296957 -k1,16474:22342111,7794071:296956 -k1,16474:22955214,7794071:296957 -k1,16474:23252171,7794071:296957 -k1,16474:23549127,7794071:296956 -k1,16474:23846084,7794071:296957 -k1,16474:24143041,7794071:296957 -k1,16474:25072288,7794071:296956 -k1,16474:25369245,7794071:296957 -k1,16474:25666202,7794071:296957 -k1,16474:25963158,7794071:296956 -k1,16474:29421572,7794071:296957 -h1,16474:32583029,7794071:0,0,0 -k1,16474:32583029,7794071:0 -k1,16474:32583029,7794071:0 -) -(1,16474:6630773,8460249:25952256,404226,101187 -h1,16474:6630773,8460249:0,0,0 -k1,16474:7560021,8460249:296957 -k1,16474:8173123,8460249:296956 -k1,16474:13844557,8460249:296957 -k1,16474:15722242,8460249:296957 -k1,16474:22342111,8460249:296956 -k1,16474:22955214,8460249:296957 -k1,16474:23252171,8460249:296957 -k1,16474:23549127,8460249:296956 -k1,16474:23846084,8460249:296957 -k1,16474:24143041,8460249:296957 -k1,16474:25072288,8460249:296956 -k1,16474:25369245,8460249:296957 -k1,16474:25666202,8460249:296957 -k1,16474:25963158,8460249:296956 -k1,16474:29421572,8460249:296957 -h1,16474:32583029,8460249:0,0,0 -k1,16474:32583029,8460249:0 -k1,16474:32583029,8460249:0 -) -(1,16474:6630773,9126427:25952256,404226,9436 -h1,16474:6630773,9126427:0,0,0 -g1,16474:7579210,9126427 -g1,16474:8211502,9126427 -g1,16474:9476085,9126427 -g1,16474:11056814,9126427 -g1,16474:12321397,9126427 -g1,16474:13902126,9126427 -h1,16474:15166709,9126427:0,0,0 -k1,16474:32583029,9126427:17416320 -g1,16474:32583029,9126427 -) -] -) -g1,16475:32583029,9135863 -g1,16475:6630773,9135863 -g1,16475:6630773,9135863 -g1,16475:32583029,9135863 -g1,16475:32583029,9135863 -) -h1,16475:6630773,9332471:0,0,0 -(1,16479:6630773,10499955:25952256,505283,134348 -h1,16478:6630773,10499955:983040,0,0 -k1,16478:8015023,10499955:188218 -k1,16478:9678468,10499955:188230 -k1,16478:12071984,10499955:188229 -k1,16478:13026329,10499955:188229 -k1,16478:16617188,10499955:188230 -k1,16478:17566945,10499955:188229 -k1,16478:19493190,10499955:188230 -k1,16478:20332847,10499955:188229 -k1,16478:22236809,10499955:188229 -k1,16478:24756155,10499955:188230 -k1,16478:26274765,10499955:188229 -k1,16478:27666235,10499955:188229 -k1,16478:29244484,10499955:188230 -k1,16478:31533142,10499955:188229 -k1,16478:32583029,10499955:0 -) -(1,16479:6630773,11341443:25952256,513147,134348 -g1,16478:9108689,11341443 -h1,16478:10079277,11341443:0,0,0 -g1,16478:10278506,11341443 -g1,16478:11287105,11341443 -g1,16478:12984487,11341443 -h1,16478:14179864,11341443:0,0,0 -g1,16478:14379093,11341443 -g1,16478:15525973,11341443 -g1,16478:17842670,11341443 -g1,16478:18851269,11341443 -g1,16478:20069583,11341443 -g1,16478:21361297,11341443 -g1,16478:22219818,11341443 -g1,16478:23438132,11341443 -g1,16478:25027380,11341443 -g1,16478:26418054,11341443 -g1,16478:29292463,11341443 -k1,16479:32583029,11341443:39980 -g1,16479:32583029,11341443 -) -v1,16481:6630773,12508927:0,393216,0 -(1,16482:6630773,16477935:25952256,4362224,616038 -g1,16482:6630773,16477935 -(1,16482:6630773,16477935:25952256,4362224,616038 -(1,16482:6630773,17093973:25952256,4978262,0 -[1,16482:6630773,17093973:25952256,4978262,0 -(1,16482:6630773,17067759:25952256,4925834,0 -r1,16482:6656987,17067759:26214,4925834,0 -[1,16482:6656987,17067759:25899828,4925834,0 -(1,16482:6656987,16477935:25899828,3746186,0 -[1,16482:7246811,16477935:24720180,3746186,0 -(1,16482:7246811,13819123:24720180,1087374,126483 -k1,16481:8636747,13819123:180233 -k1,16481:9646009,13819123:180232 -k1,16481:13491015,13819123:180233 -k1,16481:15219863,13819123:180232 -k1,16481:16789459,13819123:180233 -k1,16481:21806903,13819123:180232 -k1,16481:23670101,13819123:180233 -k1,16481:25512981,13819123:180232 -k1,16481:26309252,13819123:180233 -k1,16481:27941106,13819123:180232 -k1,16481:31307699,13819123:180233 -k1,16481:31966991,13819123:0 -) -(1,16482:7246811,14660611:24720180,513147,134348 -k1,16481:8602096,14660611:152044 -k1,16481:10317828,14660611:152043 -k1,16481:11958195,14660611:152044 -k1,16481:12871766,14660611:152043 -k1,16481:16079098,14660611:152044 -k1,16481:17250226,14660611:152043 -k1,16481:18708403,14660611:152044 -k1,16481:22046807,14660611:152044 -k1,16481:22960378,14660611:152043 -k1,16481:24891724,14660611:152044 -k1,16481:28120682,14660611:152043 -k1,16481:29291811,14660611:152044 -k1,16481:31966991,14660611:0 -) -(1,16482:7246811,15502099:24720180,505283,134348 -k1,16481:10343941,15502099:176846 -k1,16481:11712233,15502099:176847 -k1,16481:14667150,15502099:176846 -k1,16481:17031589,15502099:176847 -k1,16481:18365145,15502099:176846 -k1,16481:21728351,15502099:176846 -k1,16481:22517960,15502099:176847 -k1,16481:23050666,15502099:176846 -k1,16481:24826590,15502099:176846 -k1,16481:26194882,15502099:176847 -k1,16481:26984490,15502099:176846 -k1,16481:28612959,15502099:176847 -k1,16481:30145090,15502099:176846 -k1,16481:31966991,15502099:0 -) -(1,16482:7246811,16343587:24720180,513147,134348 -k1,16481:8455799,16343587:189903 -k1,16481:11424429,16343587:189903 -k1,16481:13294675,16343587:189903 -k1,16481:14676023,16343587:189903 -k1,16481:16252668,16343587:189903 -k1,16481:17508842,16343587:189903 -k1,16481:18646396,16343587:189903 -k1,16481:20384915,16343587:189903 -k1,16481:21675823,16343587:189903 -k1,16481:24527143,16343587:189903 -k1,16481:26284667,16343587:189903 -k1,16481:27493655,16343587:189903 -k1,16481:30438036,16343587:189903 -k1,16482:31966991,16343587:0 -k1,16482:31966991,16343587:0 -) -] -) -] -r1,16482:32583029,17067759:26214,4925834,0 -) -] -) -) -g1,16482:32583029,16477935 -) -h1,16482:6630773,17093973:0,0,0 -(1,16486:6630773,20227537:25952256,32768,229376 -(1,16486:6630773,20227537:0,32768,229376 -(1,16486:6630773,20227537:5505024,32768,229376 -r1,16486:12135797,20227537:5505024,262144,229376 -) -k1,16486:6630773,20227537:-5505024 -) -(1,16486:6630773,20227537:25952256,32768,0 -r1,16486:32583029,20227537:25952256,32768,0 -) -) -(1,16486:6630773,21831865:25952256,606339,14155 -(1,16486:6630773,21831865:1974731,582746,14155 -g1,16486:6630773,21831865 -g1,16486:8605504,21831865 -) -k1,16486:32583028,21831865:19335216 -g1,16486:32583028,21831865 -) -(1,16490:6630773,23066569:25952256,513147,126483 -k1,16489:9860933,23066569:202397 -k1,16489:12078562,23066569:202397 -k1,16489:13973099,23066569:202397 -k1,16489:16017057,23066569:202396 -k1,16489:17410899,23066569:202397 -k1,16489:19215651,23066569:202397 -k1,16489:21259610,23066569:202397 -k1,16489:22453567,23066569:202397 -k1,16489:23675049,23066569:202397 -k1,16489:25479145,23066569:202396 -k1,16489:28986523,23066569:202397 -k1,16489:30702146,23066569:202397 -k1,16489:32583029,23066569:0 -) -(1,16490:6630773,23908057:25952256,505283,134348 -k1,16489:10197898,23908057:205128 -k1,16489:13475353,23908057:205127 -k1,16489:15535150,23908057:205128 -k1,16489:16549647,23908057:205127 -k1,16489:17773860,23908057:205128 -k1,16489:21272171,23908057:205127 -k1,16489:24687908,23908057:205128 -k1,16489:26725422,23908057:205127 -k1,16489:27462047,23908057:205128 -k1,16489:30451143,23908057:205127 -k1,16489:31012131,23908057:205128 -k1,16490:32583029,23908057:0 -) -(1,16490:6630773,24749545:25952256,513147,134348 -k1,16489:9717670,24749545:241979 -k1,16489:10942689,24749545:241979 -k1,16489:13365051,24749545:241979 -k1,16489:14554681,24749545:241979 -k1,16489:17749712,24749545:241979 -k1,16489:18650983,24749545:241979 -k1,16489:22186145,24749545:241978 -k1,16489:23991158,24749545:241979 -k1,16489:25305306,24749545:241979 -k1,16489:26005382,24749545:241979 -k1,16489:27740271,24749545:241979 -k1,16489:29048521,24749545:241979 -k1,16489:31816913,24749545:241979 -k1,16489:32583029,24749545:0 -) -(1,16490:6630773,25591033:25952256,513147,134348 -k1,16489:7874592,25591033:224734 -k1,16489:10705037,25591033:224734 -k1,16489:13335598,25591033:224734 -k1,16489:14176369,25591033:224733 -k1,16489:16334415,25591033:224734 -k1,16489:17542189,25591033:224734 -k1,16489:20451278,25591033:224734 -k1,16489:21629561,25591033:224734 -k1,16489:22986757,25591033:224734 -k1,16489:24699813,25591033:224733 -k1,16489:25686075,25591033:224734 -k1,16489:29631943,25591033:224734 -k1,16489:32583029,25591033:0 -) -(1,16490:6630773,26432521:25952256,513147,134348 -k1,16489:8013834,26432521:186374 -k1,16489:9183248,26432521:186374 -k1,16489:11550006,26432521:186375 -k1,16489:13249606,26432521:186374 -k1,16489:14197508,26432521:186374 -k1,16489:17161298,26432521:186374 -k1,16489:18448678,26432521:186375 -k1,16489:21296469,26432521:186374 -k1,16489:25362574,26432521:186374 -k1,16489:26936345,26432521:186374 -k1,16489:28141805,26432521:186375 -k1,16489:30184814,26432521:186374 -k1,16489:31562633,26432521:186374 -k1,16489:32583029,26432521:0 -) -(1,16490:6630773,27274009:25952256,513147,134348 -k1,16489:9291912,27274009:150455 -k1,16489:10882194,27274009:150456 -k1,16489:11684077,27274009:150455 -k1,16489:12582299,27274009:150456 -k1,16489:13945825,27274009:150455 -k1,16489:15374887,27274009:150455 -k1,16489:18819838,27274009:150456 -k1,16489:19731821,27274009:150455 -k1,16489:22666245,27274009:150455 -k1,16489:23231495,27274009:150407 -k1,16489:26292405,27274009:150456 -k1,16489:27634305,27274009:150455 -k1,16489:29121695,27274009:150456 -k1,16489:31563944,27274009:150455 -k1,16489:32583029,27274009:0 -) -(1,16490:6630773,28115497:25952256,513147,126483 -k1,16489:7780976,28115497:167163 -k1,16489:8599568,28115497:167164 -k1,16489:9514497,28115497:167163 -k1,16489:12318830,28115497:167164 -k1,16489:13137421,28115497:167163 -k1,16489:13660445,28115497:167164 -k1,16489:15477805,28115497:167163 -k1,16489:18130749,28115497:167163 -k1,16489:20478296,28115497:167164 -k1,16489:22039410,28115497:167163 -k1,16489:24983990,28115497:167164 -k1,16489:26756785,28115497:167163 -k1,16489:28966706,28115497:167164 -k1,16489:31315563,28115497:167163 -k1,16490:32583029,28115497:0 -) -(1,16490:6630773,28956985:25952256,513147,126483 -k1,16489:7461722,28956985:242436 -k1,16489:8900845,28956985:242436 -k1,16489:11487504,28956985:242436 -k1,16489:13910323,28956985:242436 -k1,16489:14684256,28956985:242436 -k1,16489:16781361,28956985:242436 -k1,16489:17833167,28956985:242436 -k1,16489:19434777,28956985:242393 -k1,16489:20868658,28956985:242436 -k1,16489:24036621,28956985:242436 -k1,16489:26403734,28956985:242436 -k1,16489:27297598,28956985:242436 -k1,16489:29977973,28956985:242436 -k1,16489:32583029,28956985:0 -) -(1,16490:6630773,29798473:25952256,513147,126483 -k1,16489:8511001,29798473:224133 -k1,16489:10756920,29798473:224133 -k1,16489:13491737,29798473:224133 -k1,16489:14707430,29798473:224133 -k1,16489:16581760,29798473:224133 -k1,16489:19463378,29798473:224133 -k1,16489:23396193,29798473:224133 -k1,16489:25992074,29798473:224133 -k1,16489:27712394,29798473:224133 -k1,16489:28622689,29798473:224133 -k1,16489:31966991,29798473:224133 -k1,16489:32583029,29798473:0 -) -(1,16490:6630773,30639961:25952256,505283,126483 -k1,16489:9489366,30639961:192588 -k1,16489:10333382,30639961:192588 -k1,16489:11545056,30639961:192589 -k1,16489:13659815,30639961:192588 -k1,16489:15415437,30639961:192588 -k1,16489:16235860,30639961:192588 -k1,16489:17194564,30639961:192588 -k1,16489:19258206,30639961:192589 -k1,16489:20826395,30639961:192588 -k1,16489:23029628,30639961:192588 -k1,16489:25645082,30639961:192588 -k1,16489:26523832,30639961:192588 -k1,16489:28209987,30639961:192589 -k1,16489:29085460,30639961:192588 -k1,16489:31021961,30639961:192588 -k1,16490:32583029,30639961:0 -) -(1,16490:6630773,31481449:25952256,513147,126483 -k1,16489:8742145,31481449:250805 -k1,16489:9754479,31481449:250806 -k1,16489:12073600,31481449:250805 -k1,16489:12983697,31481449:250805 -k1,16489:14253587,31481449:250805 -k1,16489:17829034,31481449:250806 -k1,16489:21200008,31481449:250805 -k1,16489:22555095,31481449:250805 -k1,16489:23553667,31481449:250806 -k1,16489:26754247,31481449:250805 -k1,16489:28272518,31481449:250805 -k1,16489:28938115,31481449:250754 -k1,16489:31140582,31481449:250805 -k1,16489:32583029,31481449:0 -) -(1,16490:6630773,32322937:25952256,505283,126483 -g1,16489:7849087,32322937 -g1,16489:11168485,32322937 -k1,16490:32583030,32322937:17684236 -g1,16490:32583030,32322937 -) -(1,16491:6630773,34414197:25952256,564462,12975 -(1,16491:6630773,34414197:2450326,534184,12975 -g1,16491:6630773,34414197 -g1,16491:9081099,34414197 -) -g1,16491:10762229,34414197 -g1,16491:12488775,34414197 -g1,16491:13492263,34414197 -k1,16491:32583029,34414197:15006169 -g1,16491:32583029,34414197 -) -(1,16494:6630773,35648901:25952256,513147,134348 -k1,16493:7327139,35648901:218609 -k1,16493:8414101,35648901:218610 -k1,16493:10107925,35648901:218609 -k1,16493:12357495,35648901:218609 -k1,16493:13227533,35648901:218610 -k1,16493:14465227,35648901:218609 -k1,16493:17119155,35648901:218610 -k1,16493:20096830,35648901:218609 -k1,16493:21828665,35648901:218609 -k1,16493:22994926,35648901:218610 -k1,16493:25785823,35648901:218609 -k1,16493:26360292,35648901:218609 -k1,16493:29872086,35648901:218610 -k1,16493:30773580,35648901:218609 -k1,16494:32583029,35648901:0 -) -(1,16494:6630773,36490389:25952256,513147,134348 -k1,16493:8621268,36490389:234785 -k1,16493:10289982,36490389:234786 -k1,16493:13587920,36490389:234785 -k1,16493:17446192,36490389:234786 -k1,16493:18332405,36490389:234785 -k1,16493:19793369,36490389:234785 -k1,16493:21341497,36490389:234786 -k1,16493:22192320,36490389:234785 -k1,16493:23695847,36490389:234750 -k1,16493:26111015,36490389:234785 -k1,16493:27537246,36490389:234786 -k1,16493:30943974,36490389:234785 -k1,16493:32583029,36490389:0 -) -(1,16494:6630773,37331877:25952256,513147,134348 -k1,16493:8052392,37331877:154153 -k1,16493:8621343,37331877:154108 -k1,16493:10510890,37331877:154154 -k1,16493:11684128,37331877:154153 -k1,16493:14864078,37331877:154153 -k1,16493:18108254,37331877:154153 -k1,16493:18878445,37331877:154153 -k1,16493:21641586,37331877:154153 -h1,16493:22612174,37331877:0,0,0 -k1,16493:22766327,37331877:154153 -k1,16493:24111925,37331877:154153 -h1,16493:25654643,37331877:0,0,0 -k1,16493:25808797,37331877:154154 -k1,16493:28441522,37331877:154153 -k1,16493:29405045,37331877:154153 -k1,16493:31387652,37331877:154153 -h1,16493:32583029,37331877:0,0,0 -k1,16493:32583029,37331877:0 -) -(1,16494:6630773,38173365:25952256,513147,134348 -k1,16493:8022341,38173365:200123 -h1,16493:9217718,38173365:0,0,0 -k1,16493:9417841,38173365:200123 -k1,16493:12378340,38173365:200123 -k1,16493:12934323,38173365:200123 -k1,16493:15560589,38173365:200123 -k1,16493:19296379,38173365:200123 -k1,16493:21198472,38173365:200123 -k1,16493:22346246,38173365:200123 -k1,16493:25718312,38173365:200123 -k1,16493:29357109,38173365:200123 -k1,16493:30576317,38173365:200123 -k1,16493:32583029,38173365:0 -) -(1,16494:6630773,39014853:25952256,505283,126483 -k1,16493:8061206,39014853:145927 -k1,16493:9075484,39014853:145926 -k1,16493:11401794,39014853:145927 -k1,16493:12900383,39014853:145926 -k1,16493:14371448,39014853:145927 -k1,16493:15801880,39014853:145926 -k1,16493:19166280,39014853:145927 -k1,16493:20503652,39014853:145927 -k1,16493:23133393,39014853:145926 -k1,16493:25266372,39014853:145927 -k1,16493:27393451,39014853:145926 -k1,16493:28558463,39014853:145927 -k1,16493:32583029,39014853:0 -) -(1,16494:6630773,39856341:25952256,513147,134348 -k1,16493:7461582,39856341:171517 -k1,16493:8652184,39856341:171517 -k1,16493:11849498,39856341:171517 -k1,16493:13707911,39856341:171516 -k1,16493:15260272,39856341:171517 -k1,16493:18416299,39856341:171517 -k1,16493:19119313,39856341:171517 -k1,16493:20357101,39856341:171517 -k1,16493:22058884,39856341:171517 -k1,16493:23798022,39856341:171517 -k1,16493:24988623,39856341:171516 -k1,16493:28811151,39856341:171517 -k1,16493:29641960,39856341:171517 -k1,16493:31931601,39856341:171517 -k1,16493:32583029,39856341:0 -) -(1,16494:6630773,40697829:25952256,513147,126483 -k1,16493:9379354,40697829:183502 -k1,16493:13620845,40697829:183502 -k1,16493:15291359,40697829:183502 -k1,16493:15962433,40697829:183486 -k1,16493:18043202,40697829:183502 -k1,16493:21211214,40697829:183502 -k1,16493:22099883,40697829:183502 -k1,16493:23981423,40697829:183502 -k1,16493:26790953,40697829:183502 -k1,16493:27625883,40697829:183502 -k1,16493:29991079,40697829:183502 -k1,16493:31193666,40697829:183502 -k1,16493:32583029,40697829:0 -) -(1,16494:6630773,41539317:25952256,513147,126483 -g1,16493:9244348,41539317 -g1,16493:11011198,41539317 -g1,16493:12229512,41539317 -g1,16493:15607237,41539317 -g1,16493:16489351,41539317 -g1,16493:20312066,41539317 -g1,16493:21778761,41539317 -k1,16494:32583029,41539317:10215755 -g1,16494:32583029,41539317 -) -(1,16495:6630773,43630577:25952256,555811,12975 -(1,16495:6630773,43630577:2450326,534184,12975 -g1,16495:6630773,43630577 -g1,16495:9081099,43630577 -) -k1,16495:32583029,43630577:20807942 -g1,16495:32583029,43630577 -) -(1,16501:6630773,44865281:25952256,513147,134348 -k1,16500:9448239,44865281:282533 -k1,16500:12076960,44865281:282533 -k1,16500:15216207,44865281:282533 -k1,16500:17901290,44865281:282533 -k1,16500:18850978,44865281:282532 -k1,16500:21910927,44865281:282533 -k1,16500:25875928,44865281:282533 -k1,16500:27349906,44865281:282533 -k1,16500:30443278,44865281:282533 -k1,16501:32583029,44865281:0 -) -(1,16501:6630773,45706769:25952256,513147,134348 -k1,16500:8593467,45706769:265967 -k1,16500:10050879,45706769:265967 -k1,16500:12667622,45706769:265967 -k1,16500:14943577,45706769:265966 -k1,16500:18833030,45706769:265967 -k1,16500:21930808,45706769:265967 -k1,16500:22812813,45706769:265967 -k1,16500:24647057,45706769:265967 -k1,16500:27115034,45706769:265967 -k1,16500:28032428,45706769:265966 -k1,16500:30042308,45706769:265967 -k1,16500:31821501,45706769:265967 -k1,16501:32583029,45706769:0 -) -] -(1,16502:32583029,45706769:0,0,0 -g1,16502:32583029,45706769 -) -) -] -(1,16502:6630773,47279633:25952256,0,0 -h1,16502:6630773,47279633:25952256,0,0 -) -] -h1,16502:4262630,4025873:0,0,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16533:3078558,51504789:16384,1179648,0 +) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 +) +] +) +) +) +] +[1,16533:3078558,4812305:0,0,0 +(1,16533:3078558,49800853:0,16384,2228224 +g1,16533:29030814,49800853 +g1,16533:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16533:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16533:37855564,49800853:1179648,16384,0 +) +) +k1,16533:3078556,49800853:-34777008 +) +] +g1,16533:6630773,4812305 +k1,16533:25146660,4812305:17320510 +g1,16533:26880087,4812305 +g1,16533:29193507,4812305 +g1,16533:30603186,4812305 +) +) +] +[1,16533:6630773,45706769:25952256,40108032,0 +(1,16533:6630773,45706769:25952256,40108032,0 +(1,16533:6630773,45706769:0,0,0 +g1,16533:6630773,45706769 +) +[1,16533:6630773,45706769:25952256,40108032,0 +v1,16506:6630773,6254097:0,393216,0 +(1,16506:6630773,9135863:25952256,3274982,196608 +g1,16506:6630773,9135863 +g1,16506:6630773,9135863 +g1,16506:6434165,9135863 +(1,16506:6434165,9135863:0,3274982,196608 +r1,16506:32779637,9135863:26345472,3471590,196608 +k1,16506:6434165,9135863:-26345472 +) +(1,16506:6434165,9135863:26345472,3274982,196608 +[1,16506:6630773,9135863:25952256,3078374,0 +(1,16505:6630773,6461715:25952256,404226,6290 +h1,16505:6630773,6461715:0,0,0 +g1,16505:7579210,6461715 +g1,16505:7895356,6461715 +g1,16505:8211502,6461715 +g1,16505:10108377,6461715 +g1,16505:10424523,6461715 +g1,16505:10740669,6461715 +g1,16505:11056815,6461715 +g1,16505:11372961,6461715 +g1,16505:11689107,6461715 +g1,16505:12005253,6461715 +g1,16505:12321399,6461715 +g1,16505:12637545,6461715 +g1,16505:12953691,6461715 +g1,16505:13269837,6461715 +g1,16505:13585983,6461715 +g1,16505:13902129,6461715 +g1,16505:15799004,6461715 +g1,16505:17695879,6461715 +g1,16505:18012025,6461715 +g1,16505:18328171,6461715 +g1,16505:18644317,6461715 +g1,16505:18960463,6461715 +g1,16505:19276609,6461715 +g1,16505:19592755,6461715 +g1,16505:19908901,6461715 +g1,16505:20225047,6461715 +g1,16505:20541193,6461715 +g1,16505:20857339,6461715 +g1,16505:21173485,6461715 +g1,16505:21489631,6461715 +g1,16505:21805777,6461715 +g1,16505:22121923,6461715 +g1,16505:22438069,6461715 +g1,16505:24334944,6461715 +g1,16505:26231819,6461715 +g1,16505:28128694,6461715 +g1,16505:28444840,6461715 +g1,16505:28760986,6461715 +g1,16505:29077132,6461715 +g1,16505:29393278,6461715 +g1,16505:29709424,6461715 +k1,16505:29709424,6461715:0 +h1,16505:31290153,6461715:0,0,0 +k1,16505:32583029,6461715:1292876 +g1,16505:32583029,6461715 +) +(1,16505:6630773,7127893:25952256,404226,101187 +h1,16505:6630773,7127893:0,0,0 +k1,16505:7560021,7127893:296957 +k1,16505:8173123,7127893:296956 +k1,16505:13844557,7127893:296957 +k1,16505:15722242,7127893:296957 +k1,16505:22342111,7127893:296956 +k1,16505:22955214,7127893:296957 +k1,16505:23252171,7127893:296957 +k1,16505:23549127,7127893:296956 +k1,16505:23846084,7127893:296957 +k1,16505:24143041,7127893:296957 +k1,16505:25072288,7127893:296956 +k1,16505:25369245,7127893:296957 +k1,16505:25666202,7127893:296957 +k1,16505:25963158,7127893:296956 +k1,16505:29421572,7127893:296957 +h1,16505:32583029,7127893:0,0,0 +k1,16505:32583029,7127893:0 +k1,16505:32583029,7127893:0 +) +(1,16505:6630773,7794071:25952256,404226,101187 +h1,16505:6630773,7794071:0,0,0 +k1,16505:7560021,7794071:296957 +k1,16505:8173123,7794071:296956 +k1,16505:13844557,7794071:296957 +k1,16505:15722242,7794071:296957 +k1,16505:22342111,7794071:296956 +k1,16505:22955214,7794071:296957 +k1,16505:23252171,7794071:296957 +k1,16505:23549127,7794071:296956 +k1,16505:23846084,7794071:296957 +k1,16505:24143041,7794071:296957 +k1,16505:25072288,7794071:296956 +k1,16505:25369245,7794071:296957 +k1,16505:25666202,7794071:296957 +k1,16505:25963158,7794071:296956 +k1,16505:29421572,7794071:296957 +h1,16505:32583029,7794071:0,0,0 +k1,16505:32583029,7794071:0 +k1,16505:32583029,7794071:0 +) +(1,16505:6630773,8460249:25952256,404226,101187 +h1,16505:6630773,8460249:0,0,0 +k1,16505:7560021,8460249:296957 +k1,16505:8173123,8460249:296956 +k1,16505:13844557,8460249:296957 +k1,16505:15722242,8460249:296957 +k1,16505:22342111,8460249:296956 +k1,16505:22955214,8460249:296957 +k1,16505:23252171,8460249:296957 +k1,16505:23549127,8460249:296956 +k1,16505:23846084,8460249:296957 +k1,16505:24143041,8460249:296957 +k1,16505:25072288,8460249:296956 +k1,16505:25369245,8460249:296957 +k1,16505:25666202,8460249:296957 +k1,16505:25963158,8460249:296956 +k1,16505:29421572,8460249:296957 +h1,16505:32583029,8460249:0,0,0 +k1,16505:32583029,8460249:0 +k1,16505:32583029,8460249:0 +) +(1,16505:6630773,9126427:25952256,404226,9436 +h1,16505:6630773,9126427:0,0,0 +g1,16505:7579210,9126427 +g1,16505:8211502,9126427 +g1,16505:9476085,9126427 +g1,16505:11056814,9126427 +g1,16505:12321397,9126427 +g1,16505:13902126,9126427 +h1,16505:15166709,9126427:0,0,0 +k1,16505:32583029,9126427:17416320 +g1,16505:32583029,9126427 +) +] +) +g1,16506:32583029,9135863 +g1,16506:6630773,9135863 +g1,16506:6630773,9135863 +g1,16506:32583029,9135863 +g1,16506:32583029,9135863 +) +h1,16506:6630773,9332471:0,0,0 +(1,16510:6630773,10499955:25952256,505283,134348 +h1,16509:6630773,10499955:983040,0,0 +k1,16509:8015023,10499955:188218 +k1,16509:9678468,10499955:188230 +k1,16509:12071984,10499955:188229 +k1,16509:13026329,10499955:188229 +k1,16509:16617188,10499955:188230 +k1,16509:17566945,10499955:188229 +k1,16509:19493190,10499955:188230 +k1,16509:20332847,10499955:188229 +k1,16509:22236809,10499955:188229 +k1,16509:24756155,10499955:188230 +k1,16509:26274765,10499955:188229 +k1,16509:27666235,10499955:188229 +k1,16509:29244484,10499955:188230 +k1,16509:31533142,10499955:188229 +k1,16509:32583029,10499955:0 +) +(1,16510:6630773,11341443:25952256,513147,134348 +g1,16509:9108689,11341443 +h1,16509:10079277,11341443:0,0,0 +g1,16509:10278506,11341443 +g1,16509:11287105,11341443 +g1,16509:12984487,11341443 +h1,16509:14179864,11341443:0,0,0 +g1,16509:14379093,11341443 +g1,16509:15525973,11341443 +g1,16509:17842670,11341443 +g1,16509:18851269,11341443 +g1,16509:20069583,11341443 +g1,16509:21361297,11341443 +g1,16509:22219818,11341443 +g1,16509:23438132,11341443 +g1,16509:25027380,11341443 +g1,16509:26418054,11341443 +g1,16509:29292463,11341443 +k1,16510:32583029,11341443:39980 +g1,16510:32583029,11341443 +) +v1,16512:6630773,12508927:0,393216,0 +(1,16513:6630773,16477935:25952256,4362224,616038 +g1,16513:6630773,16477935 +(1,16513:6630773,16477935:25952256,4362224,616038 +(1,16513:6630773,17093973:25952256,4978262,0 +[1,16513:6630773,17093973:25952256,4978262,0 +(1,16513:6630773,17067759:25952256,4925834,0 +r1,16513:6656987,17067759:26214,4925834,0 +[1,16513:6656987,17067759:25899828,4925834,0 +(1,16513:6656987,16477935:25899828,3746186,0 +[1,16513:7246811,16477935:24720180,3746186,0 +(1,16513:7246811,13819123:24720180,1087374,126483 +k1,16512:8636747,13819123:180233 +k1,16512:9646009,13819123:180232 +k1,16512:13491015,13819123:180233 +k1,16512:15219863,13819123:180232 +k1,16512:16789459,13819123:180233 +k1,16512:21806903,13819123:180232 +k1,16512:23670101,13819123:180233 +k1,16512:25512981,13819123:180232 +k1,16512:26309252,13819123:180233 +k1,16512:27941106,13819123:180232 +k1,16512:31307699,13819123:180233 +k1,16512:31966991,13819123:0 +) +(1,16513:7246811,14660611:24720180,513147,134348 +k1,16512:8602096,14660611:152044 +k1,16512:10317828,14660611:152043 +k1,16512:11958195,14660611:152044 +k1,16512:12871766,14660611:152043 +k1,16512:16079098,14660611:152044 +k1,16512:17250226,14660611:152043 +k1,16512:18708403,14660611:152044 +k1,16512:22046807,14660611:152044 +k1,16512:22960378,14660611:152043 +k1,16512:24891724,14660611:152044 +k1,16512:28120682,14660611:152043 +k1,16512:29291811,14660611:152044 +k1,16512:31966991,14660611:0 +) +(1,16513:7246811,15502099:24720180,505283,134348 +k1,16512:10343941,15502099:176846 +k1,16512:11712233,15502099:176847 +k1,16512:14667150,15502099:176846 +k1,16512:17031589,15502099:176847 +k1,16512:18365145,15502099:176846 +k1,16512:21728351,15502099:176846 +k1,16512:22517960,15502099:176847 +k1,16512:23050666,15502099:176846 +k1,16512:24826590,15502099:176846 +k1,16512:26194882,15502099:176847 +k1,16512:26984490,15502099:176846 +k1,16512:28612959,15502099:176847 +k1,16512:30145090,15502099:176846 +k1,16512:31966991,15502099:0 +) +(1,16513:7246811,16343587:24720180,513147,134348 +k1,16512:8455799,16343587:189903 +k1,16512:11424429,16343587:189903 +k1,16512:13294675,16343587:189903 +k1,16512:14676023,16343587:189903 +k1,16512:16252668,16343587:189903 +k1,16512:17508842,16343587:189903 +k1,16512:18646396,16343587:189903 +k1,16512:20384915,16343587:189903 +k1,16512:21675823,16343587:189903 +k1,16512:24527143,16343587:189903 +k1,16512:26284667,16343587:189903 +k1,16512:27493655,16343587:189903 +k1,16512:30438036,16343587:189903 +k1,16513:31966991,16343587:0 +k1,16513:31966991,16343587:0 +) +] +) +] +r1,16513:32583029,17067759:26214,4925834,0 +) +] +) +) +g1,16513:32583029,16477935 +) +h1,16513:6630773,17093973:0,0,0 +(1,16517:6630773,20227537:25952256,32768,229376 +(1,16517:6630773,20227537:0,32768,229376 +(1,16517:6630773,20227537:5505024,32768,229376 +r1,16517:12135797,20227537:5505024,262144,229376 +) +k1,16517:6630773,20227537:-5505024 +) +(1,16517:6630773,20227537:25952256,32768,0 +r1,16517:32583029,20227537:25952256,32768,0 +) +) +(1,16517:6630773,21831865:25952256,606339,14155 +(1,16517:6630773,21831865:1974731,582746,14155 +g1,16517:6630773,21831865 +g1,16517:8605504,21831865 +) +k1,16517:32583028,21831865:19335216 +g1,16517:32583028,21831865 +) +(1,16521:6630773,23066569:25952256,513147,126483 +k1,16520:9860933,23066569:202397 +k1,16520:12078562,23066569:202397 +k1,16520:13973099,23066569:202397 +k1,16520:16017057,23066569:202396 +k1,16520:17410899,23066569:202397 +k1,16520:19215651,23066569:202397 +k1,16520:21259610,23066569:202397 +k1,16520:22453567,23066569:202397 +k1,16520:23675049,23066569:202397 +k1,16520:25479145,23066569:202396 +k1,16520:28986523,23066569:202397 +k1,16520:30702146,23066569:202397 +k1,16520:32583029,23066569:0 +) +(1,16521:6630773,23908057:25952256,505283,134348 +k1,16520:10197898,23908057:205128 +k1,16520:13475353,23908057:205127 +k1,16520:15535150,23908057:205128 +k1,16520:16549647,23908057:205127 +k1,16520:17773860,23908057:205128 +k1,16520:21272171,23908057:205127 +k1,16520:24687908,23908057:205128 +k1,16520:26725422,23908057:205127 +k1,16520:27462047,23908057:205128 +k1,16520:30451143,23908057:205127 +k1,16520:31012131,23908057:205128 +k1,16521:32583029,23908057:0 +) +(1,16521:6630773,24749545:25952256,513147,134348 +k1,16520:9717670,24749545:241979 +k1,16520:10942689,24749545:241979 +k1,16520:13365051,24749545:241979 +k1,16520:14554681,24749545:241979 +k1,16520:17749712,24749545:241979 +k1,16520:18650983,24749545:241979 +k1,16520:22186145,24749545:241978 +k1,16520:23991158,24749545:241979 +k1,16520:25305306,24749545:241979 +k1,16520:26005382,24749545:241979 +k1,16520:27740271,24749545:241979 +k1,16520:29048521,24749545:241979 +k1,16520:31816913,24749545:241979 +k1,16520:32583029,24749545:0 +) +(1,16521:6630773,25591033:25952256,513147,134348 +k1,16520:7874592,25591033:224734 +k1,16520:10705037,25591033:224734 +k1,16520:13335598,25591033:224734 +k1,16520:14176369,25591033:224733 +k1,16520:16334415,25591033:224734 +k1,16520:17542189,25591033:224734 +k1,16520:20451278,25591033:224734 +k1,16520:21629561,25591033:224734 +k1,16520:22986757,25591033:224734 +k1,16520:24699813,25591033:224733 +k1,16520:25686075,25591033:224734 +k1,16520:29631943,25591033:224734 +k1,16520:32583029,25591033:0 +) +(1,16521:6630773,26432521:25952256,513147,134348 +k1,16520:8013834,26432521:186374 +k1,16520:9183248,26432521:186374 +k1,16520:11550006,26432521:186375 +k1,16520:13249606,26432521:186374 +k1,16520:14197508,26432521:186374 +k1,16520:17161298,26432521:186374 +k1,16520:18448678,26432521:186375 +k1,16520:21296469,26432521:186374 +k1,16520:25362574,26432521:186374 +k1,16520:26936345,26432521:186374 +k1,16520:28141805,26432521:186375 +k1,16520:30184814,26432521:186374 +k1,16520:31562633,26432521:186374 +k1,16520:32583029,26432521:0 +) +(1,16521:6630773,27274009:25952256,513147,134348 +k1,16520:9291912,27274009:150455 +k1,16520:10882194,27274009:150456 +k1,16520:11684077,27274009:150455 +k1,16520:12582299,27274009:150456 +k1,16520:13945825,27274009:150455 +k1,16520:15374887,27274009:150455 +k1,16520:18819838,27274009:150456 +k1,16520:19731821,27274009:150455 +k1,16520:22666245,27274009:150455 +k1,16520:23231495,27274009:150407 +k1,16520:26292405,27274009:150456 +k1,16520:27634305,27274009:150455 +k1,16520:29121695,27274009:150456 +k1,16520:31563944,27274009:150455 +k1,16520:32583029,27274009:0 +) +(1,16521:6630773,28115497:25952256,513147,126483 +k1,16520:7780976,28115497:167163 +k1,16520:8599568,28115497:167164 +k1,16520:9514497,28115497:167163 +k1,16520:12318830,28115497:167164 +k1,16520:13137421,28115497:167163 +k1,16520:13660445,28115497:167164 +k1,16520:15477805,28115497:167163 +k1,16520:18130749,28115497:167163 +k1,16520:20478296,28115497:167164 +k1,16520:22039410,28115497:167163 +k1,16520:24983990,28115497:167164 +k1,16520:26756785,28115497:167163 +k1,16520:28966706,28115497:167164 +k1,16520:31315563,28115497:167163 +k1,16521:32583029,28115497:0 +) +(1,16521:6630773,28956985:25952256,513147,126483 +k1,16520:7461722,28956985:242436 +k1,16520:8900845,28956985:242436 +k1,16520:11487504,28956985:242436 +k1,16520:13910323,28956985:242436 +k1,16520:14684256,28956985:242436 +k1,16520:16781361,28956985:242436 +k1,16520:17833167,28956985:242436 +k1,16520:19434777,28956985:242393 +k1,16520:20868658,28956985:242436 +k1,16520:24036621,28956985:242436 +k1,16520:26403734,28956985:242436 +k1,16520:27297598,28956985:242436 +k1,16520:29977973,28956985:242436 +k1,16520:32583029,28956985:0 +) +(1,16521:6630773,29798473:25952256,513147,126483 +k1,16520:8511001,29798473:224133 +k1,16520:10756920,29798473:224133 +k1,16520:13491737,29798473:224133 +k1,16520:14707430,29798473:224133 +k1,16520:16581760,29798473:224133 +k1,16520:19463378,29798473:224133 +k1,16520:23396193,29798473:224133 +k1,16520:25992074,29798473:224133 +k1,16520:27712394,29798473:224133 +k1,16520:28622689,29798473:224133 +k1,16520:31966991,29798473:224133 +k1,16520:32583029,29798473:0 +) +(1,16521:6630773,30639961:25952256,505283,126483 +k1,16520:9489366,30639961:192588 +k1,16520:10333382,30639961:192588 +k1,16520:11545056,30639961:192589 +k1,16520:13659815,30639961:192588 +k1,16520:15415437,30639961:192588 +k1,16520:16235860,30639961:192588 +k1,16520:17194564,30639961:192588 +k1,16520:19258206,30639961:192589 +k1,16520:20826395,30639961:192588 +k1,16520:23029628,30639961:192588 +k1,16520:25645082,30639961:192588 +k1,16520:26523832,30639961:192588 +k1,16520:28209987,30639961:192589 +k1,16520:29085460,30639961:192588 +k1,16520:31021961,30639961:192588 +k1,16521:32583029,30639961:0 +) +(1,16521:6630773,31481449:25952256,513147,126483 +k1,16520:8742145,31481449:250805 +k1,16520:9754479,31481449:250806 +k1,16520:12073600,31481449:250805 +k1,16520:12983697,31481449:250805 +k1,16520:14253587,31481449:250805 +k1,16520:17829034,31481449:250806 +k1,16520:21200008,31481449:250805 +k1,16520:22555095,31481449:250805 +k1,16520:23553667,31481449:250806 +k1,16520:26754247,31481449:250805 +k1,16520:28272518,31481449:250805 +k1,16520:28938115,31481449:250754 +k1,16520:31140582,31481449:250805 +k1,16520:32583029,31481449:0 +) +(1,16521:6630773,32322937:25952256,505283,126483 +g1,16520:7849087,32322937 +g1,16520:11168485,32322937 +k1,16521:32583030,32322937:17684236 +g1,16521:32583030,32322937 +) +(1,16522:6630773,34414197:25952256,564462,12975 +(1,16522:6630773,34414197:2450326,534184,12975 +g1,16522:6630773,34414197 +g1,16522:9081099,34414197 +) +g1,16522:10762229,34414197 +g1,16522:12488775,34414197 +g1,16522:13492263,34414197 +k1,16522:32583029,34414197:15006169 +g1,16522:32583029,34414197 +) +(1,16525:6630773,35648901:25952256,513147,134348 +k1,16524:7327139,35648901:218609 +k1,16524:8414101,35648901:218610 +k1,16524:10107925,35648901:218609 +k1,16524:12357495,35648901:218609 +k1,16524:13227533,35648901:218610 +k1,16524:14465227,35648901:218609 +k1,16524:17119155,35648901:218610 +k1,16524:20096830,35648901:218609 +k1,16524:21828665,35648901:218609 +k1,16524:22994926,35648901:218610 +k1,16524:25785823,35648901:218609 +k1,16524:26360292,35648901:218609 +k1,16524:29872086,35648901:218610 +k1,16524:30773580,35648901:218609 +k1,16525:32583029,35648901:0 +) +(1,16525:6630773,36490389:25952256,513147,134348 +k1,16524:8621268,36490389:234785 +k1,16524:10289982,36490389:234786 +k1,16524:13587920,36490389:234785 +k1,16524:17446192,36490389:234786 +k1,16524:18332405,36490389:234785 +k1,16524:19793369,36490389:234785 +k1,16524:21341497,36490389:234786 +k1,16524:22192320,36490389:234785 +k1,16524:23695847,36490389:234750 +k1,16524:26111015,36490389:234785 +k1,16524:27537246,36490389:234786 +k1,16524:30943974,36490389:234785 +k1,16524:32583029,36490389:0 +) +(1,16525:6630773,37331877:25952256,513147,134348 +k1,16524:8052392,37331877:154153 +k1,16524:8621343,37331877:154108 +k1,16524:10510890,37331877:154154 +k1,16524:11684128,37331877:154153 +k1,16524:14864078,37331877:154153 +k1,16524:18108254,37331877:154153 +k1,16524:18878445,37331877:154153 +k1,16524:21641586,37331877:154153 +h1,16524:22612174,37331877:0,0,0 +k1,16524:22766327,37331877:154153 +k1,16524:24111925,37331877:154153 +h1,16524:25654643,37331877:0,0,0 +k1,16524:25808797,37331877:154154 +k1,16524:28441522,37331877:154153 +k1,16524:29405045,37331877:154153 +k1,16524:31387652,37331877:154153 +h1,16524:32583029,37331877:0,0,0 +k1,16524:32583029,37331877:0 +) +(1,16525:6630773,38173365:25952256,513147,134348 +k1,16524:8022341,38173365:200123 +h1,16524:9217718,38173365:0,0,0 +k1,16524:9417841,38173365:200123 +k1,16524:12378340,38173365:200123 +k1,16524:12934323,38173365:200123 +k1,16524:15560589,38173365:200123 +k1,16524:19296379,38173365:200123 +k1,16524:21198472,38173365:200123 +k1,16524:22346246,38173365:200123 +k1,16524:25718312,38173365:200123 +k1,16524:29357109,38173365:200123 +k1,16524:30576317,38173365:200123 +k1,16524:32583029,38173365:0 +) +(1,16525:6630773,39014853:25952256,505283,126483 +k1,16524:8061206,39014853:145927 +k1,16524:9075484,39014853:145926 +k1,16524:11401794,39014853:145927 +k1,16524:12900383,39014853:145926 +k1,16524:14371448,39014853:145927 +k1,16524:15801880,39014853:145926 +k1,16524:19166280,39014853:145927 +k1,16524:20503652,39014853:145927 +k1,16524:23133393,39014853:145926 +k1,16524:25266372,39014853:145927 +k1,16524:27393451,39014853:145926 +k1,16524:28558463,39014853:145927 +k1,16524:32583029,39014853:0 +) +(1,16525:6630773,39856341:25952256,513147,134348 +k1,16524:7461582,39856341:171517 +k1,16524:8652184,39856341:171517 +k1,16524:11849498,39856341:171517 +k1,16524:13707911,39856341:171516 +k1,16524:15260272,39856341:171517 +k1,16524:18416299,39856341:171517 +k1,16524:19119313,39856341:171517 +k1,16524:20357101,39856341:171517 +k1,16524:22058884,39856341:171517 +k1,16524:23798022,39856341:171517 +k1,16524:24988623,39856341:171516 +k1,16524:28811151,39856341:171517 +k1,16524:29641960,39856341:171517 +k1,16524:31931601,39856341:171517 +k1,16524:32583029,39856341:0 +) +(1,16525:6630773,40697829:25952256,513147,126483 +k1,16524:9379354,40697829:183502 +k1,16524:13620845,40697829:183502 +k1,16524:15291359,40697829:183502 +k1,16524:15962433,40697829:183486 +k1,16524:18043202,40697829:183502 +k1,16524:21211214,40697829:183502 +k1,16524:22099883,40697829:183502 +k1,16524:23981423,40697829:183502 +k1,16524:26790953,40697829:183502 +k1,16524:27625883,40697829:183502 +k1,16524:29991079,40697829:183502 +k1,16524:31193666,40697829:183502 +k1,16524:32583029,40697829:0 +) +(1,16525:6630773,41539317:25952256,513147,126483 +g1,16524:9244348,41539317 +g1,16524:11011198,41539317 +g1,16524:12229512,41539317 +g1,16524:15607237,41539317 +g1,16524:16489351,41539317 +g1,16524:20312066,41539317 +g1,16524:21778761,41539317 +k1,16525:32583029,41539317:10215755 +g1,16525:32583029,41539317 +) +(1,16526:6630773,43630577:25952256,555811,12975 +(1,16526:6630773,43630577:2450326,534184,12975 +g1,16526:6630773,43630577 +g1,16526:9081099,43630577 +) +k1,16526:32583029,43630577:20807942 +g1,16526:32583029,43630577 +) +(1,16532:6630773,44865281:25952256,513147,134348 +k1,16531:9484939,44865281:319233 +k1,16531:12150360,44865281:319233 +k1,16531:15326307,44865281:319233 +k1,16531:18048090,44865281:319233 +k1,16531:19034480,44865281:319234 +k1,16531:22131129,44865281:319233 +k1,16531:26132830,44865281:319233 +k1,16531:27643508,44865281:319233 +k1,16531:30773580,44865281:319233 +k1,16532:32583029,44865281:0 +) +(1,16532:6630773,45706769:25952256,513147,134348 +k1,16531:8896244,45706769:238442 +k1,16531:10326130,45706769:238441 +k1,16531:12915348,45706769:238442 +k1,16531:15163779,45706769:238442 +k1,16531:19025706,45706769:238441 +k1,16531:22095959,45706769:238442 +k1,16531:22950439,45706769:238442 +k1,16531:24757157,45706769:238441 +k1,16531:27197609,45706769:238442 +k1,16531:28087479,45706769:238442 +k1,16531:30069833,45706769:238441 +k1,16531:31821501,45706769:238442 +k1,16532:32583029,45706769:0 +) +] +(1,16533:32583029,45706769:0,0,0 +g1,16533:32583029,45706769 +) +) +] +(1,16533:6630773,47279633:25952256,0,0 +h1,16533:6630773,47279633:25952256,0,0 +) +] +h1,16533:4262630,4025873:0,0,0 ] !23185 }321 -Input:2490:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2491:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2492:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2493:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2494:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!442 +Input:2487:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2488:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2489:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2490:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2491:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!472 {322 -[1,16557:4262630,47279633:28320399,43253760,0 -(1,16557:4262630,4025873:0,0,0 -[1,16557:-473657,4025873:25952256,0,0 -(1,16557:-473657,-710414:25952256,0,0 -h1,16557:-473657,-710414:0,0,0 -(1,16557:-473657,-710414:0,0,0 -(1,16557:-473657,-710414:0,0,0 -g1,16557:-473657,-710414 -(1,16557:-473657,-710414:65781,0,65781 -g1,16557:-407876,-710414 -[1,16557:-407876,-644633:0,0,0 +[1,16588:4262630,47279633:28320399,43253760,0 +(1,16588:4262630,4025873:0,0,0 +[1,16588:-473657,4025873:25952256,0,0 +(1,16588:-473657,-710414:25952256,0,0 +h1,16588:-473657,-710414:0,0,0 +(1,16588:-473657,-710414:0,0,0 +(1,16588:-473657,-710414:0,0,0 +g1,16588:-473657,-710414 +(1,16588:-473657,-710414:65781,0,65781 +g1,16588:-407876,-710414 +[1,16588:-407876,-644633:0,0,0 ] ) -k1,16557:-473657,-710414:-65781 +k1,16588:-473657,-710414:-65781 ) ) -k1,16557:25478599,-710414:25952256 -g1,16557:25478599,-710414 +k1,16588:25478599,-710414:25952256 +g1,16588:25478599,-710414 ) ] ) -[1,16557:6630773,47279633:25952256,43253760,0 -[1,16557:6630773,4812305:25952256,786432,0 -(1,16557:6630773,4812305:25952256,505283,11795 -(1,16557:6630773,4812305:25952256,505283,11795 -g1,16557:3078558,4812305 -[1,16557:3078558,4812305:0,0,0 -(1,16557:3078558,2439708:0,1703936,0 -k1,16557:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16557:2537886,2439708:1179648,16384,0 +[1,16588:6630773,47279633:25952256,43253760,0 +[1,16588:6630773,4812305:25952256,786432,0 +(1,16588:6630773,4812305:25952256,505283,11795 +(1,16588:6630773,4812305:25952256,505283,11795 +g1,16588:3078558,4812305 +[1,16588:3078558,4812305:0,0,0 +(1,16588:3078558,2439708:0,1703936,0 +k1,16588:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16588:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16557:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16588:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16557:3078558,4812305:0,0,0 -(1,16557:3078558,2439708:0,1703936,0 -g1,16557:29030814,2439708 -g1,16557:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16557:36151628,1915420:16384,1179648,0 +[1,16588:3078558,4812305:0,0,0 +(1,16588:3078558,2439708:0,1703936,0 +g1,16588:29030814,2439708 +g1,16588:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16588:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16557:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16588:37855564,2439708:1179648,16384,0 ) ) -k1,16557:3078556,2439708:-34777008 +k1,16588:3078556,2439708:-34777008 ) ] -[1,16557:3078558,4812305:0,0,0 -(1,16557:3078558,49800853:0,16384,2228224 -k1,16557:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16557:2537886,49800853:1179648,16384,0 +[1,16588:3078558,4812305:0,0,0 +(1,16588:3078558,49800853:0,16384,2228224 +k1,16588:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16588:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16557:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16588:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16557:3078558,4812305:0,0,0 -(1,16557:3078558,49800853:0,16384,2228224 -g1,16557:29030814,49800853 -g1,16557:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16557:36151628,51504789:16384,1179648,0 +[1,16588:3078558,4812305:0,0,0 +(1,16588:3078558,49800853:0,16384,2228224 +g1,16588:29030814,49800853 +g1,16588:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16588:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16557:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16588:37855564,49800853:1179648,16384,0 ) ) -k1,16557:3078556,49800853:-34777008 -) -] -g1,16557:6630773,4812305 -g1,16557:6630773,4812305 -g1,16557:10349285,4812305 -k1,16557:31387653,4812305:21038368 -) -) -] -[1,16557:6630773,45706769:25952256,40108032,0 -(1,16557:6630773,45706769:25952256,40108032,0 -(1,16557:6630773,45706769:0,0,0 -g1,16557:6630773,45706769 -) -[1,16557:6630773,45706769:25952256,40108032,0 -(1,16501:6630773,6254097:25952256,513147,134348 -k1,16500:9676887,6254097:268698 -k1,16500:11724886,6254097:268697 -k1,16500:13190271,6254097:268698 -k1,16500:16269152,6254097:268697 -k1,16500:17069347,6254097:268698 -k1,16500:19636392,6254097:268697 -k1,16500:21096535,6254097:268698 -k1,16500:22384317,6254097:268697 -k1,16500:25233167,6254097:268698 -k1,16500:26896470,6254097:268697 -k1,16500:27816596,6254097:268698 -k1,16500:30228320,6254097:268697 -k1,16500:31450567,6254097:268698 -k1,16500:32583029,6254097:0 -) -(1,16501:6630773,7095585:25952256,513147,126483 -g1,16500:9011696,7095585 -g1,16500:9566785,7095585 -g1,16500:10749054,7095585 -g1,16500:12232789,7095585 -g1,16500:13048056,7095585 -g1,16500:16024701,7095585 -g1,16500:17940973,7095585 -g1,16500:19286427,7095585 -g1,16500:20504741,7095585 -g1,16500:22765733,7095585 -g1,16500:25382585,7095585 -k1,16501:32583029,7095585:5158342 -g1,16501:32583029,7095585 -) -(1,16504:6630773,23297757:25952256,15411488,0 -k1,16504:9874805,23297757:3244032 -(1,16502:9874805,23297757:0,0,0 -g1,16502:9874805,23297757 -g1,16502:9874805,23297757 -g1,16502:9547125,23297757 -(1,16502:9547125,23297757:0,0,0 -) -g1,16502:9874805,23297757 -) -(1,16503:9874805,23297757:19464192,15411488,0 -) -g1,16504:29338997,23297757 -k1,16504:32583029,23297757:3244032 -) -(1,16507:6630773,24737911:25952256,513147,115847 -h1,16506:6630773,24737911:983040,0,0 -g1,16506:8766591,24737911 -g1,16506:10271953,24737911 -g1,16506:11464708,24737911 -g1,16506:12683022,24737911 -g1,16506:14909280,24737911 -g1,16506:18248339,24737911 -g1,16506:19063606,24737911 -g1,16506:20281920,24737911 -g1,16506:23659645,24737911 -g1,16506:24841914,24737911 -g1,16506:26435094,24737911 -(1,16506:26435094,24737911:0,452978,115847 -r1,16506:31365614,24737911:4930520,568825,115847 -k1,16506:26435094,24737911:-4930520 -) -(1,16506:26435094,24737911:4930520,452978,115847 -k1,16506:26435094,24737911:3277 -h1,16506:31362337,24737911:0,411205,112570 -) -k1,16507:32583029,24737911:1043745 -g1,16507:32583029,24737911 -) -v1,16509:6630773,25883021:0,393216,0 -(1,16517:6630773,27589718:25952256,2099913,196608 -g1,16517:6630773,27589718 -g1,16517:6630773,27589718 -g1,16517:6434165,27589718 -(1,16517:6434165,27589718:0,2099913,196608 -r1,16517:32779637,27589718:26345472,2296521,196608 -k1,16517:6434165,27589718:-26345472 -) -(1,16517:6434165,27589718:26345472,2099913,196608 -[1,16517:6630773,27589718:25952256,1903305,0 -(1,16511:6630773,26090639:25952256,404226,76021 -(1,16510:6630773,26090639:0,0,0 -g1,16510:6630773,26090639 -g1,16510:6630773,26090639 -g1,16510:6303093,26090639 -(1,16510:6303093,26090639:0,0,0 -) -g1,16510:6630773,26090639 -) -g1,16511:8843793,26090639 -g1,16511:9792231,26090639 -k1,16511:9792231,26090639:0 -h1,16511:20541185,26090639:0,0,0 -k1,16511:32583029,26090639:12041844 -g1,16511:32583029,26090639 -) -(1,16512:6630773,26756817:25952256,404226,6290 -h1,16512:6630773,26756817:0,0,0 -h1,16512:8527647,26756817:0,0,0 -k1,16512:32583029,26756817:24055382 -g1,16512:32583029,26756817 -) -(1,16516:6630773,27488531:25952256,404226,101187 -(1,16514:6630773,27488531:0,0,0 -g1,16514:6630773,27488531 -g1,16514:6630773,27488531 -g1,16514:6303093,27488531 -(1,16514:6303093,27488531:0,0,0 -) -g1,16514:6630773,27488531 -) -g1,16516:7579210,27488531 -g1,16516:8843793,27488531 -g1,16516:10108376,27488531 -h1,16516:11689104,27488531:0,0,0 -k1,16516:32583028,27488531:20893924 -g1,16516:32583028,27488531 -) -] -) -g1,16517:32583029,27589718 -g1,16517:6630773,27589718 -g1,16517:6630773,27589718 -g1,16517:32583029,27589718 -g1,16517:32583029,27589718 -) -h1,16517:6630773,27786326:0,0,0 -(1,16521:6630773,29106746:25952256,505283,134348 -h1,16520:6630773,29106746:983040,0,0 -k1,16520:8411065,29106746:169417 -k1,16520:9783723,29106746:169417 -k1,16520:11320221,29106746:169417 -k1,16520:12508723,29106746:169417 -k1,16520:15750468,29106746:169417 -k1,16520:18125172,29106746:169417 -k1,16520:18946017,29106746:169417 -(1,16520:18946017,29106746:0,452978,115847 -r1,16520:20711130,29106746:1765113,568825,115847 -k1,16520:18946017,29106746:-1765113 -) -(1,16520:18946017,29106746:1765113,452978,115847 -k1,16520:18946017,29106746:3277 -h1,16520:20707853,29106746:0,411205,112570 -) -k1,16520:20880548,29106746:169418 -k1,16520:21581462,29106746:169417 -k1,16520:25259021,29106746:169417 -k1,16520:26114600,29106746:169417 -k1,16520:27938801,29106746:169417 -k1,16520:28639715,29106746:169417 -k1,16520:30184733,29106746:169417 -k1,16520:30710010,29106746:169417 -k1,16520:32583029,29106746:0 -) -(1,16521:6630773,29948234:25952256,513147,126483 -k1,16520:10184944,29948234:260987 -k1,16520:11061970,29948234:260988 -k1,16520:12342042,29948234:260987 -k1,16520:13759740,29948234:260988 -k1,16520:14490620,29948234:260987 -k1,16520:15283105,29948234:260988 -k1,16520:18174052,29948234:260987 -k1,16520:19086468,29948234:260988 -k1,16520:20439940,29948234:260987 -k1,16520:22556908,29948234:260988 -k1,16520:23836980,29948234:260987 -k1,16520:25835983,29948234:260988 -k1,16520:26756262,29948234:260987 -k1,16520:28036335,29948234:260988 -k1,16520:29994049,29948234:260987 -k1,16520:30937922,29948234:260988 -k1,16520:31554769,29948234:260987 -k1,16521:32583029,29948234:0 -) -(1,16521:6630773,30789722:25952256,513147,126483 -k1,16520:9232012,30789722:241288 -k1,16520:11222457,30789722:241289 -k1,16520:12286877,30789722:241288 -k1,16520:13731407,30789722:241289 -k1,16520:15339776,30789722:241288 -(1,16520:15339776,30789722:0,435480,115847 -r1,16520:15698042,30789722:358266,551327,115847 -k1,16520:15339776,30789722:-358266 -) -(1,16520:15339776,30789722:358266,435480,115847 -k1,16520:15339776,30789722:3277 -h1,16520:15694765,30789722:0,411205,112570 -) -k1,16520:15939331,30789722:241289 -k1,16520:18136869,30789722:241288 -k1,16520:19125924,30789722:241289 -k1,16520:22672193,30789722:241288 -k1,16520:23564910,30789722:241289 -(1,16520:23564910,30789722:0,452978,115847 -r1,16520:26736870,30789722:3171960,568825,115847 -k1,16520:23564910,30789722:-3171960 -) -(1,16520:23564910,30789722:3171960,452978,115847 -g1,16520:24975034,30789722 -h1,16520:26733593,30789722:0,411205,112570 -) -k1,16520:27358922,30789722:241288 -k1,16520:28553760,30789722:241289 -k1,16520:29887533,30789722:241288 -k1,16521:32583029,30789722:0 -) -(1,16521:6630773,31631210:25952256,513147,134348 -(1,16520:6630773,31631210:0,452978,115847 -r1,16520:10857869,31631210:4227096,568825,115847 -k1,16520:6630773,31631210:-4227096 -) -(1,16520:6630773,31631210:4227096,452978,115847 -k1,16520:6630773,31631210:3277 -h1,16520:10854592,31631210:0,411205,112570 -) -k1,16520:11099992,31631210:242123 -k1,16520:11993544,31631210:242124 -k1,16520:14417361,31631210:242123 -k1,16520:15678569,31631210:242123 -k1,16520:19387548,31631210:242124 -k1,16520:21366375,31631210:242123 -k1,16520:22930360,31631210:242124 -k1,16520:23831775,31631210:242123 -k1,16520:25092983,31631210:242123 -k1,16520:28543094,31631210:242124 -k1,16520:29804302,31631210:242123 -k1,16520:32583029,31631210:0 -) -(1,16521:6630773,32472698:25952256,505283,7863 -g1,16520:8510345,32472698 -g1,16520:9241071,32472698 -g1,16520:9796160,32472698 -g1,16520:11806804,32472698 -g1,16520:13197478,32472698 -g1,16520:16371386,32472698 -g1,16520:19283806,32472698 -g1,16520:20474595,32472698 -g1,16520:23452551,32472698 -g1,16520:24337942,32472698 -k1,16521:32583029,32472698:7539920 -g1,16521:32583029,32472698 -) -v1,16523:6630773,33617808:0,393216,0 -(1,16537:6630773,39232968:25952256,6008376,196608 -g1,16537:6630773,39232968 -g1,16537:6630773,39232968 -g1,16537:6434165,39232968 -(1,16537:6434165,39232968:0,6008376,196608 -r1,16537:32779637,39232968:26345472,6204984,196608 -k1,16537:6434165,39232968:-26345472 -) -(1,16537:6434165,39232968:26345472,6008376,196608 -[1,16537:6630773,39232968:25952256,5811768,0 -(1,16525:6630773,33831718:25952256,410518,101187 -(1,16524:6630773,33831718:0,0,0 -g1,16524:6630773,33831718 -g1,16524:6630773,33831718 -g1,16524:6303093,33831718 -(1,16524:6303093,33831718:0,0,0 -) -g1,16524:6630773,33831718 -) -g1,16525:9476084,33831718 -g1,16525:10424522,33831718 -g1,16525:20857331,33831718 -g1,16525:22754205,33831718 -g1,16525:23386497,33831718 -g1,16525:24651080,33831718 -h1,16525:26547954,33831718:0,0,0 -k1,16525:32583029,33831718:6035075 -g1,16525:32583029,33831718 -) -(1,16526:6630773,34497896:25952256,410518,6290 -h1,16526:6630773,34497896:0,0,0 -h1,16526:9159938,34497896:0,0,0 -k1,16526:32583030,34497896:23423092 -g1,16526:32583030,34497896 -) -(1,16536:6630773,35229610:25952256,404226,9436 -(1,16528:6630773,35229610:0,0,0 -g1,16528:6630773,35229610 -g1,16528:6630773,35229610 -g1,16528:6303093,35229610 -(1,16528:6303093,35229610:0,0,0 -) -g1,16528:6630773,35229610 -) -g1,16536:7579210,35229610 -g1,16536:8211502,35229610 -g1,16536:8843794,35229610 -g1,16536:11372960,35229610 -g1,16536:12321397,35229610 -g1,16536:12953689,35229610 -h1,16536:13269835,35229610:0,0,0 -k1,16536:32583029,35229610:19313194 -g1,16536:32583029,35229610 -) -(1,16536:6630773,35895788:25952256,404226,107478 -h1,16536:6630773,35895788:0,0,0 -g1,16536:7579210,35895788 -g1,16536:7895356,35895788 -g1,16536:8211502,35895788 -g1,16536:10424522,35895788 -g1,16536:12321396,35895788 -h1,16536:15798998,35895788:0,0,0 -k1,16536:32583030,35895788:16784032 -g1,16536:32583030,35895788 -) -(1,16536:6630773,36561966:25952256,404226,6290 -h1,16536:6630773,36561966:0,0,0 -g1,16536:7579210,36561966 -g1,16536:7895356,36561966 -g1,16536:8211502,36561966 -g1,16536:8527648,36561966 -g1,16536:10424523,36561966 -g1,16536:12321398,36561966 -g1,16536:12637544,36561966 -g1,16536:12953690,36561966 -g1,16536:13269836,36561966 -g1,16536:13585982,36561966 -g1,16536:13902128,36561966 -g1,16536:14218274,36561966 -k1,16536:14218274,36561966:0 -h1,16536:15799003,36561966:0,0,0 -k1,16536:32583029,36561966:16784026 -g1,16536:32583029,36561966 -) -(1,16536:6630773,37228144:25952256,388497,4718 -h1,16536:6630773,37228144:0,0,0 -g1,16536:7579210,37228144 -g1,16536:8211502,37228144 -g1,16536:8527648,37228144 -g1,16536:8843794,37228144 -g1,16536:9159940,37228144 -g1,16536:9476086,37228144 -g1,16536:9792232,37228144 -g1,16536:10424524,37228144 -g1,16536:11056816,37228144 -g1,16536:11372962,37228144 -g1,16536:11689108,37228144 -g1,16536:12005254,37228144 -g1,16536:12321400,37228144 -g1,16536:12637546,37228144 -g1,16536:12953692,37228144 -g1,16536:13269838,37228144 -g1,16536:13585984,37228144 -g1,16536:13902130,37228144 -g1,16536:14218276,37228144 -g1,16536:14534422,37228144 -g1,16536:14850568,37228144 -g1,16536:15166714,37228144 -g1,16536:15482860,37228144 -h1,16536:15799006,37228144:0,0,0 -k1,16536:32583030,37228144:16784024 -g1,16536:32583030,37228144 -) -(1,16536:6630773,37894322:25952256,388497,9436 -h1,16536:6630773,37894322:0,0,0 -g1,16536:7579210,37894322 -g1,16536:8211502,37894322 -g1,16536:8527648,37894322 -g1,16536:8843794,37894322 -g1,16536:9159940,37894322 -g1,16536:9476086,37894322 -g1,16536:9792232,37894322 -g1,16536:10424524,37894322 -g1,16536:11056816,37894322 -g1,16536:11372962,37894322 -g1,16536:11689108,37894322 -g1,16536:12005254,37894322 -g1,16536:12321400,37894322 -g1,16536:12637546,37894322 -g1,16536:12953692,37894322 -g1,16536:13269838,37894322 -g1,16536:13585984,37894322 -g1,16536:13902130,37894322 -g1,16536:14218276,37894322 -g1,16536:14534422,37894322 -g1,16536:14850568,37894322 -g1,16536:15166714,37894322 -g1,16536:15482860,37894322 -h1,16536:15799006,37894322:0,0,0 -k1,16536:32583030,37894322:16784024 -g1,16536:32583030,37894322 -) -(1,16536:6630773,38560500:25952256,388497,9436 -h1,16536:6630773,38560500:0,0,0 -g1,16536:7579210,38560500 -g1,16536:8211502,38560500 -g1,16536:8527648,38560500 -g1,16536:8843794,38560500 -g1,16536:9159940,38560500 -g1,16536:9476086,38560500 -g1,16536:9792232,38560500 -g1,16536:10424524,38560500 -g1,16536:11056816,38560500 -g1,16536:11372962,38560500 -g1,16536:11689108,38560500 -g1,16536:12005254,38560500 -g1,16536:12321400,38560500 -g1,16536:12637546,38560500 -g1,16536:12953692,38560500 -g1,16536:13269838,38560500 -g1,16536:13585984,38560500 -g1,16536:13902130,38560500 -g1,16536:14218276,38560500 -g1,16536:14534422,38560500 -g1,16536:14850568,38560500 -g1,16536:15166714,38560500 -g1,16536:15482860,38560500 -h1,16536:15799006,38560500:0,0,0 -k1,16536:32583030,38560500:16784024 -g1,16536:32583030,38560500 -) -(1,16536:6630773,39226678:25952256,404226,6290 -h1,16536:6630773,39226678:0,0,0 -g1,16536:7579210,39226678 -g1,16536:8211502,39226678 -g1,16536:9476085,39226678 -g1,16536:11056814,39226678 -g1,16536:11689106,39226678 -g1,16536:13269835,39226678 -h1,16536:14534418,39226678:0,0,0 -k1,16536:32583030,39226678:18048612 -g1,16536:32583030,39226678 -) -] -) -g1,16537:32583029,39232968 -g1,16537:6630773,39232968 -g1,16537:6630773,39232968 -g1,16537:32583029,39232968 -g1,16537:32583029,39232968 -) -h1,16537:6630773,39429576:0,0,0 -(1,16541:6630773,40749997:25952256,513147,134348 -h1,16540:6630773,40749997:983040,0,0 -g1,16540:8766591,40749997 -g1,16540:10070102,40749997 -g1,16540:11555147,40749997 -g1,16540:13166677,40749997 -g1,16540:13721766,40749997 -g1,16540:15941470,40749997 -g1,16540:18467882,40749997 -g1,16540:19326403,40749997 -g1,16540:20544717,40749997 -g1,16540:22626795,40749997 -k1,16541:32583029,40749997:6489379 -g1,16541:32583029,40749997 -) -v1,16543:6630773,41895107:0,393216,0 -(1,16557:6630773,45510161:25952256,4008270,196608 -g1,16557:6630773,45510161 -g1,16557:6630773,45510161 -g1,16557:6434165,45510161 -(1,16557:6434165,45510161:0,4008270,196608 -r1,16557:32779637,45510161:26345472,4204878,196608 -k1,16557:6434165,45510161:-26345472 -) -(1,16557:6434165,45510161:26345472,4008270,196608 -[1,16557:6630773,45510161:25952256,3811662,0 -(1,16545:6630773,42109017:25952256,410518,107478 -(1,16544:6630773,42109017:0,0,0 -g1,16544:6630773,42109017 -g1,16544:6630773,42109017 -g1,16544:6303093,42109017 -(1,16544:6303093,42109017:0,0,0 -) -g1,16544:6630773,42109017 -) -k1,16545:11583722,42109017:210764 -k1,16545:12426778,42109017:210764 -k1,16545:22754205,42109017:210764 -k1,16545:24545697,42109017:210764 -k1,16545:25072607,42109017:210764 -k1,16545:26231808,42109017:210764 -k1,16545:28339446,42109017:210764 -k1,16545:30130938,42109017:210764 -k1,16545:30657848,42109017:210764 -h1,16545:33187014,42109017:0,0,0 -k1,16545:33187014,42109017:0 -k1,16545:33187014,42109017:0 -) -(1,16546:6630773,42775195:25952256,410518,107478 -h1,16546:6630773,42775195:0,0,0 -h1,16546:11372958,42775195:0,0,0 -k1,16546:32583030,42775195:21210072 -g1,16546:32583030,42775195 -) -(1,16556:6630773,43506909:25952256,404226,6290 -(1,16548:6630773,43506909:0,0,0 -g1,16548:6630773,43506909 -g1,16548:6630773,43506909 -g1,16548:6303093,43506909 -(1,16548:6303093,43506909:0,0,0 -) -g1,16548:6630773,43506909 -) -g1,16556:7579210,43506909 -g1,16556:8211502,43506909 -g1,16556:8843794,43506909 -g1,16556:11372960,43506909 -g1,16556:12005252,43506909 -g1,16556:12637544,43506909 -h1,16556:12953690,43506909:0,0,0 -k1,16556:32583030,43506909:19629340 -g1,16556:32583030,43506909 -) -(1,16556:6630773,44173087:25952256,404226,107478 -h1,16556:6630773,44173087:0,0,0 -g1,16556:7579210,44173087 -g1,16556:7895356,44173087 -g1,16556:8211502,44173087 -g1,16556:10424522,44173087 -h1,16556:12005250,44173087:0,0,0 -k1,16556:32583030,44173087:20577780 -g1,16556:32583030,44173087 -) -(1,16556:6630773,44839265:25952256,404226,6290 -h1,16556:6630773,44839265:0,0,0 -g1,16556:7579210,44839265 -g1,16556:7895356,44839265 -g1,16556:8211502,44839265 -g1,16556:8527648,44839265 -g1,16556:10424523,44839265 -k1,16556:10424523,44839265:0 -h1,16556:12005252,44839265:0,0,0 -k1,16556:32583028,44839265:20577776 -g1,16556:32583028,44839265 -) -(1,16556:6630773,45505443:25952256,388497,4718 -h1,16556:6630773,45505443:0,0,0 -g1,16556:7579210,45505443 -g1,16556:8211502,45505443 -g1,16556:8527648,45505443 -g1,16556:8843794,45505443 -g1,16556:9159940,45505443 -g1,16556:9476086,45505443 -g1,16556:9792232,45505443 -g1,16556:10424524,45505443 -h1,16556:10740670,45505443:0,0,0 -k1,16556:32583030,45505443:21842360 -g1,16556:32583030,45505443 -) -] -) -g1,16557:32583029,45510161 -g1,16557:6630773,45510161 -g1,16557:6630773,45510161 -g1,16557:32583029,45510161 -g1,16557:32583029,45510161 -) -] -(1,16557:32583029,45706769:0,0,0 -g1,16557:32583029,45706769 -) -) -] -(1,16557:6630773,47279633:25952256,0,0 -h1,16557:6630773,47279633:25952256,0,0 -) -] -h1,16557:4262630,4025873:0,0,0 -] -!19138 +k1,16588:3078556,49800853:-34777008 +) +] +g1,16588:6630773,4812305 +g1,16588:6630773,4812305 +g1,16588:10349285,4812305 +k1,16588:31387653,4812305:21038368 +) +) +] +[1,16588:6630773,45706769:25952256,40108032,0 +(1,16588:6630773,45706769:25952256,40108032,0 +(1,16588:6630773,45706769:0,0,0 +g1,16588:6630773,45706769 +) +[1,16588:6630773,45706769:25952256,40108032,0 +(1,16532:6630773,6254097:25952256,513147,134348 +k1,16531:9676887,6254097:268698 +k1,16531:11724886,6254097:268697 +k1,16531:13190271,6254097:268698 +k1,16531:16269152,6254097:268697 +k1,16531:17069347,6254097:268698 +k1,16531:19636392,6254097:268697 +k1,16531:21096535,6254097:268698 +k1,16531:22384317,6254097:268697 +k1,16531:25233167,6254097:268698 +k1,16531:26896470,6254097:268697 +k1,16531:27816596,6254097:268698 +k1,16531:30228320,6254097:268697 +k1,16531:31450567,6254097:268698 +k1,16531:32583029,6254097:0 +) +(1,16532:6630773,7095585:25952256,513147,126483 +g1,16531:9011696,7095585 +g1,16531:9566785,7095585 +g1,16531:10749054,7095585 +g1,16531:12232789,7095585 +g1,16531:13048056,7095585 +g1,16531:16024701,7095585 +g1,16531:17940973,7095585 +g1,16531:19286427,7095585 +g1,16531:20504741,7095585 +g1,16531:22765733,7095585 +g1,16531:25382585,7095585 +k1,16532:32583029,7095585:5158342 +g1,16532:32583029,7095585 +) +(1,16535:6630773,23297757:25952256,15411488,0 +k1,16535:9874805,23297757:3244032 +(1,16533:9874805,23297757:0,0,0 +g1,16533:9874805,23297757 +g1,16533:9874805,23297757 +g1,16533:9547125,23297757 +(1,16533:9547125,23297757:0,0,0 +) +g1,16533:9874805,23297757 +) +(1,16534:9874805,23297757:19464192,15411488,0 +) +g1,16535:29338997,23297757 +k1,16535:32583029,23297757:3244032 +) +(1,16538:6630773,24737911:25952256,513147,115847 +h1,16537:6630773,24737911:983040,0,0 +g1,16537:8766591,24737911 +g1,16537:10271953,24737911 +g1,16537:11464708,24737911 +g1,16537:12683022,24737911 +g1,16537:14909280,24737911 +g1,16537:18248339,24737911 +g1,16537:19063606,24737911 +g1,16537:20281920,24737911 +g1,16537:23659645,24737911 +g1,16537:24841914,24737911 +g1,16537:26435094,24737911 +(1,16537:26435094,24737911:0,452978,115847 +r1,16537:31365614,24737911:4930520,568825,115847 +k1,16537:26435094,24737911:-4930520 +) +(1,16537:26435094,24737911:4930520,452978,115847 +k1,16537:26435094,24737911:3277 +h1,16537:31362337,24737911:0,411205,112570 +) +k1,16538:32583029,24737911:1043745 +g1,16538:32583029,24737911 +) +v1,16540:6630773,25883021:0,393216,0 +(1,16548:6630773,27589718:25952256,2099913,196608 +g1,16548:6630773,27589718 +g1,16548:6630773,27589718 +g1,16548:6434165,27589718 +(1,16548:6434165,27589718:0,2099913,196608 +r1,16548:32779637,27589718:26345472,2296521,196608 +k1,16548:6434165,27589718:-26345472 +) +(1,16548:6434165,27589718:26345472,2099913,196608 +[1,16548:6630773,27589718:25952256,1903305,0 +(1,16542:6630773,26090639:25952256,404226,76021 +(1,16541:6630773,26090639:0,0,0 +g1,16541:6630773,26090639 +g1,16541:6630773,26090639 +g1,16541:6303093,26090639 +(1,16541:6303093,26090639:0,0,0 +) +g1,16541:6630773,26090639 +) +g1,16542:8843793,26090639 +g1,16542:9792231,26090639 +k1,16542:9792231,26090639:0 +h1,16542:20541185,26090639:0,0,0 +k1,16542:32583029,26090639:12041844 +g1,16542:32583029,26090639 +) +(1,16543:6630773,26756817:25952256,404226,6290 +h1,16543:6630773,26756817:0,0,0 +h1,16543:8527647,26756817:0,0,0 +k1,16543:32583029,26756817:24055382 +g1,16543:32583029,26756817 +) +(1,16547:6630773,27488531:25952256,404226,101187 +(1,16545:6630773,27488531:0,0,0 +g1,16545:6630773,27488531 +g1,16545:6630773,27488531 +g1,16545:6303093,27488531 +(1,16545:6303093,27488531:0,0,0 +) +g1,16545:6630773,27488531 +) +g1,16547:7579210,27488531 +g1,16547:8843793,27488531 +g1,16547:10108376,27488531 +h1,16547:11689104,27488531:0,0,0 +k1,16547:32583028,27488531:20893924 +g1,16547:32583028,27488531 +) +] +) +g1,16548:32583029,27589718 +g1,16548:6630773,27589718 +g1,16548:6630773,27589718 +g1,16548:32583029,27589718 +g1,16548:32583029,27589718 +) +h1,16548:6630773,27786326:0,0,0 +(1,16552:6630773,29106746:25952256,505283,134348 +h1,16551:6630773,29106746:983040,0,0 +k1,16551:8447066,29106746:205418 +k1,16551:9855725,29106746:205418 +k1,16551:11601895,29106746:205419 +k1,16551:12826398,29106746:205418 +k1,16551:16104144,29106746:205418 +k1,16551:18514849,29106746:205418 +k1,16551:19371695,29106746:205418 +(1,16551:19371695,29106746:0,452978,115847 +r1,16551:21136808,29106746:1765113,568825,115847 +k1,16551:19371695,29106746:-1765113 +) +(1,16551:19371695,29106746:1765113,452978,115847 +k1,16551:19371695,29106746:3277 +h1,16551:21133531,29106746:0,411205,112570 +) +k1,16551:21342227,29106746:205419 +k1,16551:22079142,29106746:205418 +k1,16551:25792702,29106746:205418 +k1,16551:26684282,29106746:205418 +k1,16551:28544484,29106746:205418 +k1,16551:29281400,29106746:205419 +k1,16551:30862419,29106746:205418 +k1,16551:31423697,29106746:205418 +k1,16552:32583029,29106746:0 +) +(1,16552:6630773,29948234:25952256,513147,134348 +k1,16551:7824415,29948234:266963 +k1,16551:11384562,29948234:266963 +k1,16551:12267562,29948234:266962 +k1,16551:13553610,29948234:266963 +k1,16551:14977283,29948234:266963 +k1,16551:15714139,29948234:266963 +k1,16551:16512599,29948234:266963 +k1,16551:19409522,29948234:266963 +k1,16551:20327912,29948234:266962 +k1,16551:21687360,29948234:266963 +k1,16551:23810303,29948234:266963 +k1,16551:25096351,29948234:266963 +k1,16551:27101329,29948234:266963 +k1,16551:28027584,29948234:266963 +k1,16551:29313631,29948234:266962 +k1,16551:31277321,29948234:266963 +k1,16551:32227169,29948234:266963 +k1,16551:32583029,29948234:0 +) +(1,16552:6630773,30789722:25952256,513147,126483 +k1,16551:9984568,30789722:178576 +k1,16551:11912299,30789722:178575 +k1,16551:12914007,30789722:178576 +k1,16551:14295823,30789722:178575 +k1,16551:15841480,30789722:178576 +(1,16551:15841480,30789722:0,435480,115847 +r1,16551:16199746,30789722:358266,551327,115847 +k1,16551:15841480,30789722:-358266 +) +(1,16551:15841480,30789722:358266,435480,115847 +k1,16551:15841480,30789722:3277 +h1,16551:16196469,30789722:0,411205,112570 +) +k1,16551:16378321,30789722:178575 +k1,16551:18513147,30789722:178576 +k1,16551:19439488,30789722:178575 +k1,16551:22923045,30789722:178576 +k1,16551:23753048,30789722:178575 +(1,16551:23753048,30789722:0,452978,115847 +r1,16551:26925008,30789722:3171960,568825,115847 +k1,16551:23753048,30789722:-3171960 +) +(1,16551:23753048,30789722:3171960,452978,115847 +g1,16551:25163172,30789722 +h1,16551:26921731,30789722:0,411205,112570 +) +k1,16551:27484348,30789722:178576 +k1,16551:28616472,30789722:178575 +k1,16551:29887533,30789722:178576 +k1,16552:32583029,30789722:0 +) +(1,16552:6630773,31631210:25952256,513147,134348 +(1,16551:6630773,31631210:0,452978,115847 +r1,16551:10857869,31631210:4227096,568825,115847 +k1,16551:6630773,31631210:-4227096 +) +(1,16551:6630773,31631210:4227096,452978,115847 +k1,16551:6630773,31631210:3277 +h1,16551:10854592,31631210:0,411205,112570 +) +k1,16551:11099992,31631210:242123 +k1,16551:11993544,31631210:242124 +k1,16551:14417361,31631210:242123 +k1,16551:15678569,31631210:242123 +k1,16551:19387548,31631210:242124 +k1,16551:21366375,31631210:242123 +k1,16551:22930360,31631210:242124 +k1,16551:23831775,31631210:242123 +k1,16551:25092983,31631210:242123 +k1,16551:28543094,31631210:242124 +k1,16551:29804302,31631210:242123 +k1,16551:32583029,31631210:0 +) +(1,16552:6630773,32472698:25952256,505283,7863 +g1,16551:8510345,32472698 +g1,16551:9241071,32472698 +g1,16551:9796160,32472698 +g1,16551:11806804,32472698 +g1,16551:13197478,32472698 +g1,16551:16371386,32472698 +g1,16551:19283806,32472698 +g1,16551:20474595,32472698 +g1,16551:23452551,32472698 +g1,16551:24337942,32472698 +k1,16552:32583029,32472698:7539920 +g1,16552:32583029,32472698 +) +v1,16554:6630773,33617808:0,393216,0 +(1,16568:6630773,39232968:25952256,6008376,196608 +g1,16568:6630773,39232968 +g1,16568:6630773,39232968 +g1,16568:6434165,39232968 +(1,16568:6434165,39232968:0,6008376,196608 +r1,16568:32779637,39232968:26345472,6204984,196608 +k1,16568:6434165,39232968:-26345472 +) +(1,16568:6434165,39232968:26345472,6008376,196608 +[1,16568:6630773,39232968:25952256,5811768,0 +(1,16556:6630773,33831718:25952256,410518,101187 +(1,16555:6630773,33831718:0,0,0 +g1,16555:6630773,33831718 +g1,16555:6630773,33831718 +g1,16555:6303093,33831718 +(1,16555:6303093,33831718:0,0,0 +) +g1,16555:6630773,33831718 +) +g1,16556:9476084,33831718 +g1,16556:10424522,33831718 +g1,16556:20857331,33831718 +g1,16556:22754205,33831718 +g1,16556:23386497,33831718 +g1,16556:24651080,33831718 +h1,16556:26547954,33831718:0,0,0 +k1,16556:32583029,33831718:6035075 +g1,16556:32583029,33831718 +) +(1,16557:6630773,34497896:25952256,410518,6290 +h1,16557:6630773,34497896:0,0,0 +h1,16557:9159938,34497896:0,0,0 +k1,16557:32583030,34497896:23423092 +g1,16557:32583030,34497896 +) +(1,16567:6630773,35229610:25952256,404226,9436 +(1,16559:6630773,35229610:0,0,0 +g1,16559:6630773,35229610 +g1,16559:6630773,35229610 +g1,16559:6303093,35229610 +(1,16559:6303093,35229610:0,0,0 +) +g1,16559:6630773,35229610 +) +g1,16567:7579210,35229610 +g1,16567:8211502,35229610 +g1,16567:8843794,35229610 +g1,16567:11372960,35229610 +g1,16567:12321397,35229610 +g1,16567:12953689,35229610 +h1,16567:13269835,35229610:0,0,0 +k1,16567:32583029,35229610:19313194 +g1,16567:32583029,35229610 +) +(1,16567:6630773,35895788:25952256,404226,107478 +h1,16567:6630773,35895788:0,0,0 +g1,16567:7579210,35895788 +g1,16567:7895356,35895788 +g1,16567:8211502,35895788 +g1,16567:10424522,35895788 +g1,16567:12321396,35895788 +h1,16567:15798998,35895788:0,0,0 +k1,16567:32583030,35895788:16784032 +g1,16567:32583030,35895788 +) +(1,16567:6630773,36561966:25952256,404226,6290 +h1,16567:6630773,36561966:0,0,0 +g1,16567:7579210,36561966 +g1,16567:7895356,36561966 +g1,16567:8211502,36561966 +g1,16567:8527648,36561966 +g1,16567:10424523,36561966 +g1,16567:12321398,36561966 +g1,16567:12637544,36561966 +g1,16567:12953690,36561966 +g1,16567:13269836,36561966 +g1,16567:13585982,36561966 +g1,16567:13902128,36561966 +g1,16567:14218274,36561966 +k1,16567:14218274,36561966:0 +h1,16567:15799003,36561966:0,0,0 +k1,16567:32583029,36561966:16784026 +g1,16567:32583029,36561966 +) +(1,16567:6630773,37228144:25952256,388497,4718 +h1,16567:6630773,37228144:0,0,0 +g1,16567:7579210,37228144 +g1,16567:8211502,37228144 +g1,16567:8527648,37228144 +g1,16567:8843794,37228144 +g1,16567:9159940,37228144 +g1,16567:9476086,37228144 +g1,16567:9792232,37228144 +g1,16567:10424524,37228144 +g1,16567:11056816,37228144 +g1,16567:11372962,37228144 +g1,16567:11689108,37228144 +g1,16567:12005254,37228144 +g1,16567:12321400,37228144 +g1,16567:12637546,37228144 +g1,16567:12953692,37228144 +g1,16567:13269838,37228144 +g1,16567:13585984,37228144 +g1,16567:13902130,37228144 +g1,16567:14218276,37228144 +g1,16567:14534422,37228144 +g1,16567:14850568,37228144 +g1,16567:15166714,37228144 +g1,16567:15482860,37228144 +h1,16567:15799006,37228144:0,0,0 +k1,16567:32583030,37228144:16784024 +g1,16567:32583030,37228144 +) +(1,16567:6630773,37894322:25952256,388497,9436 +h1,16567:6630773,37894322:0,0,0 +g1,16567:7579210,37894322 +g1,16567:8211502,37894322 +g1,16567:8527648,37894322 +g1,16567:8843794,37894322 +g1,16567:9159940,37894322 +g1,16567:9476086,37894322 +g1,16567:9792232,37894322 +g1,16567:10424524,37894322 +g1,16567:11056816,37894322 +g1,16567:11372962,37894322 +g1,16567:11689108,37894322 +g1,16567:12005254,37894322 +g1,16567:12321400,37894322 +g1,16567:12637546,37894322 +g1,16567:12953692,37894322 +g1,16567:13269838,37894322 +g1,16567:13585984,37894322 +g1,16567:13902130,37894322 +g1,16567:14218276,37894322 +g1,16567:14534422,37894322 +g1,16567:14850568,37894322 +g1,16567:15166714,37894322 +g1,16567:15482860,37894322 +h1,16567:15799006,37894322:0,0,0 +k1,16567:32583030,37894322:16784024 +g1,16567:32583030,37894322 +) +(1,16567:6630773,38560500:25952256,388497,9436 +h1,16567:6630773,38560500:0,0,0 +g1,16567:7579210,38560500 +g1,16567:8211502,38560500 +g1,16567:8527648,38560500 +g1,16567:8843794,38560500 +g1,16567:9159940,38560500 +g1,16567:9476086,38560500 +g1,16567:9792232,38560500 +g1,16567:10424524,38560500 +g1,16567:11056816,38560500 +g1,16567:11372962,38560500 +g1,16567:11689108,38560500 +g1,16567:12005254,38560500 +g1,16567:12321400,38560500 +g1,16567:12637546,38560500 +g1,16567:12953692,38560500 +g1,16567:13269838,38560500 +g1,16567:13585984,38560500 +g1,16567:13902130,38560500 +g1,16567:14218276,38560500 +g1,16567:14534422,38560500 +g1,16567:14850568,38560500 +g1,16567:15166714,38560500 +g1,16567:15482860,38560500 +h1,16567:15799006,38560500:0,0,0 +k1,16567:32583030,38560500:16784024 +g1,16567:32583030,38560500 +) +(1,16567:6630773,39226678:25952256,404226,6290 +h1,16567:6630773,39226678:0,0,0 +g1,16567:7579210,39226678 +g1,16567:8211502,39226678 +g1,16567:9476085,39226678 +g1,16567:11056814,39226678 +g1,16567:11689106,39226678 +g1,16567:13269835,39226678 +h1,16567:14534418,39226678:0,0,0 +k1,16567:32583030,39226678:18048612 +g1,16567:32583030,39226678 +) +] +) +g1,16568:32583029,39232968 +g1,16568:6630773,39232968 +g1,16568:6630773,39232968 +g1,16568:32583029,39232968 +g1,16568:32583029,39232968 +) +h1,16568:6630773,39429576:0,0,0 +(1,16572:6630773,40749997:25952256,513147,134348 +h1,16571:6630773,40749997:983040,0,0 +g1,16571:8766591,40749997 +g1,16571:10070102,40749997 +g1,16571:11555147,40749997 +g1,16571:13166677,40749997 +g1,16571:13721766,40749997 +g1,16571:15941470,40749997 +g1,16571:18467882,40749997 +g1,16571:19326403,40749997 +g1,16571:20544717,40749997 +g1,16571:22626795,40749997 +k1,16572:32583029,40749997:6489379 +g1,16572:32583029,40749997 +) +v1,16574:6630773,41895107:0,393216,0 +(1,16588:6630773,45510161:25952256,4008270,196608 +g1,16588:6630773,45510161 +g1,16588:6630773,45510161 +g1,16588:6434165,45510161 +(1,16588:6434165,45510161:0,4008270,196608 +r1,16588:32779637,45510161:26345472,4204878,196608 +k1,16588:6434165,45510161:-26345472 +) +(1,16588:6434165,45510161:26345472,4008270,196608 +[1,16588:6630773,45510161:25952256,3811662,0 +(1,16576:6630773,42109017:25952256,410518,107478 +(1,16575:6630773,42109017:0,0,0 +g1,16575:6630773,42109017 +g1,16575:6630773,42109017 +g1,16575:6303093,42109017 +(1,16575:6303093,42109017:0,0,0 +) +g1,16575:6630773,42109017 +) +k1,16576:11583722,42109017:210764 +k1,16576:12426778,42109017:210764 +k1,16576:22754205,42109017:210764 +k1,16576:24545697,42109017:210764 +k1,16576:25072607,42109017:210764 +k1,16576:26231808,42109017:210764 +k1,16576:28339446,42109017:210764 +k1,16576:30130938,42109017:210764 +k1,16576:30657848,42109017:210764 +h1,16576:33187014,42109017:0,0,0 +k1,16576:33187014,42109017:0 +k1,16576:33187014,42109017:0 +) +(1,16577:6630773,42775195:25952256,410518,107478 +h1,16577:6630773,42775195:0,0,0 +h1,16577:11372958,42775195:0,0,0 +k1,16577:32583030,42775195:21210072 +g1,16577:32583030,42775195 +) +(1,16587:6630773,43506909:25952256,404226,6290 +(1,16579:6630773,43506909:0,0,0 +g1,16579:6630773,43506909 +g1,16579:6630773,43506909 +g1,16579:6303093,43506909 +(1,16579:6303093,43506909:0,0,0 +) +g1,16579:6630773,43506909 +) +g1,16587:7579210,43506909 +g1,16587:8211502,43506909 +g1,16587:8843794,43506909 +g1,16587:11372960,43506909 +g1,16587:12005252,43506909 +g1,16587:12637544,43506909 +h1,16587:12953690,43506909:0,0,0 +k1,16587:32583030,43506909:19629340 +g1,16587:32583030,43506909 +) +(1,16587:6630773,44173087:25952256,404226,107478 +h1,16587:6630773,44173087:0,0,0 +g1,16587:7579210,44173087 +g1,16587:7895356,44173087 +g1,16587:8211502,44173087 +g1,16587:10424522,44173087 +h1,16587:12005250,44173087:0,0,0 +k1,16587:32583030,44173087:20577780 +g1,16587:32583030,44173087 +) +(1,16587:6630773,44839265:25952256,404226,6290 +h1,16587:6630773,44839265:0,0,0 +g1,16587:7579210,44839265 +g1,16587:7895356,44839265 +g1,16587:8211502,44839265 +g1,16587:8527648,44839265 +g1,16587:10424523,44839265 +k1,16587:10424523,44839265:0 +h1,16587:12005252,44839265:0,0,0 +k1,16587:32583028,44839265:20577776 +g1,16587:32583028,44839265 +) +(1,16587:6630773,45505443:25952256,388497,4718 +h1,16587:6630773,45505443:0,0,0 +g1,16587:7579210,45505443 +g1,16587:8211502,45505443 +g1,16587:8527648,45505443 +g1,16587:8843794,45505443 +g1,16587:9159940,45505443 +g1,16587:9476086,45505443 +g1,16587:9792232,45505443 +g1,16587:10424524,45505443 +h1,16587:10740670,45505443:0,0,0 +k1,16587:32583030,45505443:21842360 +g1,16587:32583030,45505443 +) +] +) +g1,16588:32583029,45510161 +g1,16588:6630773,45510161 +g1,16588:6630773,45510161 +g1,16588:32583029,45510161 +g1,16588:32583029,45510161 +) +] +(1,16588:32583029,45706769:0,0,0 +g1,16588:32583029,45706769 +) +) +] +(1,16588:6630773,47279633:25952256,0,0 +h1,16588:6630773,47279633:25952256,0,0 +) +] +h1,16588:4262630,4025873:0,0,0 +] +!19137 }322 -Input:2495:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2496:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2497:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!270 +Input:2492:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2493:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2494:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!288 {323 -[1,16609:4262630,47279633:28320399,43253760,0 -(1,16609:4262630,4025873:0,0,0 -[1,16609:-473657,4025873:25952256,0,0 -(1,16609:-473657,-710414:25952256,0,0 -h1,16609:-473657,-710414:0,0,0 -(1,16609:-473657,-710414:0,0,0 -(1,16609:-473657,-710414:0,0,0 -g1,16609:-473657,-710414 -(1,16609:-473657,-710414:65781,0,65781 -g1,16609:-407876,-710414 -[1,16609:-407876,-644633:0,0,0 +[1,16640:4262630,47279633:28320399,43253760,0 +(1,16640:4262630,4025873:0,0,0 +[1,16640:-473657,4025873:25952256,0,0 +(1,16640:-473657,-710414:25952256,0,0 +h1,16640:-473657,-710414:0,0,0 +(1,16640:-473657,-710414:0,0,0 +(1,16640:-473657,-710414:0,0,0 +g1,16640:-473657,-710414 +(1,16640:-473657,-710414:65781,0,65781 +g1,16640:-407876,-710414 +[1,16640:-407876,-644633:0,0,0 ] ) -k1,16609:-473657,-710414:-65781 +k1,16640:-473657,-710414:-65781 ) ) -k1,16609:25478599,-710414:25952256 -g1,16609:25478599,-710414 +k1,16640:25478599,-710414:25952256 +g1,16640:25478599,-710414 ) ] ) -[1,16609:6630773,47279633:25952256,43253760,0 -[1,16609:6630773,4812305:25952256,786432,0 -(1,16609:6630773,4812305:25952256,505283,126483 -(1,16609:6630773,4812305:25952256,505283,126483 -g1,16609:3078558,4812305 -[1,16609:3078558,4812305:0,0,0 -(1,16609:3078558,2439708:0,1703936,0 -k1,16609:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16609:2537886,2439708:1179648,16384,0 +[1,16640:6630773,47279633:25952256,43253760,0 +[1,16640:6630773,4812305:25952256,786432,0 +(1,16640:6630773,4812305:25952256,505283,126483 +(1,16640:6630773,4812305:25952256,505283,126483 +g1,16640:3078558,4812305 +[1,16640:3078558,4812305:0,0,0 +(1,16640:3078558,2439708:0,1703936,0 +k1,16640:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16640:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16609:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16640:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16609:3078558,4812305:0,0,0 -(1,16609:3078558,2439708:0,1703936,0 -g1,16609:29030814,2439708 -g1,16609:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16609:36151628,1915420:16384,1179648,0 +[1,16640:3078558,4812305:0,0,0 +(1,16640:3078558,2439708:0,1703936,0 +g1,16640:29030814,2439708 +g1,16640:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16640:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16609:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16640:37855564,2439708:1179648,16384,0 ) ) -k1,16609:3078556,2439708:-34777008 +k1,16640:3078556,2439708:-34777008 ) ] -[1,16609:3078558,4812305:0,0,0 -(1,16609:3078558,49800853:0,16384,2228224 -k1,16609:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16609:2537886,49800853:1179648,16384,0 +[1,16640:3078558,4812305:0,0,0 +(1,16640:3078558,49800853:0,16384,2228224 +k1,16640:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16640:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16609:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16640:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16609:3078558,4812305:0,0,0 -(1,16609:3078558,49800853:0,16384,2228224 -g1,16609:29030814,49800853 -g1,16609:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16609:36151628,51504789:16384,1179648,0 +[1,16640:3078558,4812305:0,0,0 +(1,16640:3078558,49800853:0,16384,2228224 +g1,16640:29030814,49800853 +g1,16640:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16640:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16609:37855564,49800853:1179648,16384,0 -) -) -k1,16609:3078556,49800853:-34777008 -) -] -g1,16609:6630773,4812305 -k1,16609:25146660,4812305:17320510 -g1,16609:26880087,4812305 -g1,16609:29193507,4812305 -g1,16609:30603186,4812305 -) -) -] -[1,16609:6630773,45706769:25952256,40108032,0 -(1,16609:6630773,45706769:25952256,40108032,0 -(1,16609:6630773,45706769:0,0,0 -g1,16609:6630773,45706769 -) -[1,16609:6630773,45706769:25952256,40108032,0 -v1,16557:6630773,6254097:0,393216,0 -(1,16557:6630773,7784632:25952256,1923751,196608 -g1,16557:6630773,7784632 -g1,16557:6630773,7784632 -g1,16557:6434165,7784632 -(1,16557:6434165,7784632:0,1923751,196608 -r1,16557:32779637,7784632:26345472,2120359,196608 -k1,16557:6434165,7784632:-26345472 -) -(1,16557:6434165,7784632:26345472,1923751,196608 -[1,16557:6630773,7784632:25952256,1727143,0 -(1,16556:6630773,6445986:25952256,388497,4718 -h1,16556:6630773,6445986:0,0,0 -g1,16556:7579210,6445986 -g1,16556:8211502,6445986 -g1,16556:8527648,6445986 -g1,16556:8843794,6445986 -g1,16556:9159940,6445986 -g1,16556:9476086,6445986 -g1,16556:9792232,6445986 -g1,16556:10424524,6445986 -h1,16556:10740670,6445986:0,0,0 -k1,16556:32583030,6445986:21842360 -g1,16556:32583030,6445986 -) -(1,16556:6630773,7112164:25952256,388497,9436 -h1,16556:6630773,7112164:0,0,0 -g1,16556:7579210,7112164 -g1,16556:8211502,7112164 -g1,16556:8527648,7112164 -g1,16556:8843794,7112164 -g1,16556:9159940,7112164 -g1,16556:9476086,7112164 -g1,16556:9792232,7112164 -g1,16556:10424524,7112164 -h1,16556:10740670,7112164:0,0,0 -k1,16556:32583030,7112164:21842360 -g1,16556:32583030,7112164 -) -(1,16556:6630773,7778342:25952256,404226,6290 -h1,16556:6630773,7778342:0,0,0 -g1,16556:7579210,7778342 -g1,16556:8211502,7778342 -g1,16556:9476085,7778342 -g1,16556:11056814,7778342 -g1,16556:11689106,7778342 -g1,16556:13269835,7778342 -h1,16556:14534418,7778342:0,0,0 -k1,16556:32583030,7778342:18048612 -g1,16556:32583030,7778342 -) -] -) -g1,16557:32583029,7784632 -g1,16557:6630773,7784632 -g1,16557:6630773,7784632 -g1,16557:32583029,7784632 -g1,16557:32583029,7784632 -) -h1,16557:6630773,7981240:0,0,0 -(1,16561:6630773,9347016:25952256,513147,134348 -h1,16560:6630773,9347016:983040,0,0 -k1,16560:8628583,9347016:240790 -k1,16560:9888458,9347016:240790 -k1,16560:13347066,9347016:240790 -k1,16560:17164156,9347016:240790 -k1,16560:18424031,9347016:240790 -k1,16560:20266522,9347016:240791 -k1,16560:22484533,9347016:240790 -k1,16560:24212335,9347016:240790 -k1,16560:25928340,9347016:240790 -k1,16560:27188215,9347016:240790 -k1,16560:29082478,9347016:240790 -k1,16560:31391584,9347016:240790 -k1,16560:32583029,9347016:0 -) -(1,16561:6630773,10188504:25952256,505283,134348 -g1,16560:8172835,10188504 -g1,16560:10574074,10188504 -g1,16560:12338958,10188504 -g1,16560:13224349,10188504 -g1,16560:14039616,10188504 -g1,16560:16261941,10188504 -g1,16560:17693247,10188504 -g1,16560:20171163,10188504 -h1,16560:21713881,10188504:0,0,0 -g1,16560:21913110,10188504 -g1,16560:22921709,10188504 -g1,16560:24619091,10188504 -h1,16560:25814468,10188504:0,0,0 -k1,16561:32583029,10188504:6387797 -g1,16561:32583029,10188504 -) -(1,16562:6630773,12279764:25952256,555811,12975 -(1,16562:6630773,12279764:2450326,534184,12975 -g1,16562:6630773,12279764 -g1,16562:9081099,12279764 -) -k1,16562:32583030,12279764:21625440 -g1,16562:32583030,12279764 -) -(1,16567:6630773,13514468:25952256,513147,134348 -k1,16566:9413213,13514468:247507 -k1,16566:11334510,13514468:247508 -k1,16566:12686299,13514468:247507 -k1,16566:13681573,13514468:247508 -k1,16566:15579277,13514468:247507 -k1,16566:18310599,13514468:247507 -k1,16566:19209535,13514468:247508 -k1,16566:21426399,13514468:247507 -k1,16566:22360069,13514468:247508 -k1,16566:23065673,13514468:247507 -k1,16566:24735967,13514468:247507 -k1,16566:26328929,13514468:247508 -k1,16566:29602233,13514468:247507 -k1,16566:30501169,13514468:247508 -k1,16566:31563944,13514468:247507 -k1,16566:32583029,13514468:0 -) -(1,16567:6630773,14355956:25952256,513147,134348 -k1,16566:8776362,14355956:223418 -k1,16566:10769907,14355956:223418 -k1,16566:13928027,14355956:223418 -k1,16566:14609542,14355956:223418 -k1,16566:15364457,14355956:223418 -k1,16566:17238072,14355956:223418 -k1,16566:22452712,14355956:223418 -k1,16566:24070081,14355956:223418 -k1,16566:27319296,14355956:223418 -k1,16566:29009410,14355956:223418 -k1,16566:30180479,14355956:223418 -k1,16566:32583029,14355956:0 -) -(1,16567:6630773,15197444:25952256,513147,134348 -k1,16566:8084289,15197444:262071 -k1,16566:10604075,15197444:262071 -k1,16566:13643562,15197444:262071 -k1,16566:17529119,15197444:262071 -k1,16566:18982635,15197444:262071 -k1,16566:22927174,15197444:262071 -k1,16566:23805283,15197444:262071 -k1,16566:26829697,15197444:262071 -k1,16566:29602452,15197444:262071 -k1,16566:32583029,15197444:0 -) -(1,16567:6630773,16038932:25952256,513147,134348 -k1,16566:7878730,16038932:228872 -k1,16566:9763697,16038932:228872 -k1,16566:12014355,16038932:228872 -k1,16566:13903909,16038932:228872 -k1,16566:16359694,16038932:228872 -k1,16566:17239994,16038932:228872 -k1,16566:19491961,16038932:228871 -k1,16566:20178930,16038932:228872 -k1,16566:22419757,16038932:228872 -k1,16566:25237301,16038932:228872 -k1,16566:27816949,16038932:228872 -k1,16566:28705113,16038932:228872 -k1,16566:29289845,16038932:228872 -k1,16566:32583029,16038932:0 -) -(1,16567:6630773,16880420:25952256,505283,126483 -g1,16566:7481430,16880420 -g1,16566:8428425,16880420 -k1,16567:32583029,16880420:21031158 -g1,16567:32583029,16880420 -) -(1,16569:6630773,17721908:25952256,513147,134348 -h1,16568:6630773,17721908:983040,0,0 -k1,16568:9375340,17721908:273204 -k1,16568:10516895,17721908:273203 -k1,16568:11882584,17721908:273204 -k1,16568:14851284,17721908:273204 -(1,16568:14851284,17721908:0,452978,115847 -r1,16568:18726668,17721908:3875384,568825,115847 -k1,16568:14851284,17721908:-3875384 -) -(1,16568:14851284,17721908:3875384,452978,115847 -k1,16568:14851284,17721908:3277 -h1,16568:18723391,17721908:0,411205,112570 -) -k1,16568:19173542,17721908:273204 -k1,16568:22186150,17721908:273203 -k1,16568:23478439,17721908:273204 -k1,16568:27044827,17721908:273204 -k1,16568:28079559,17721908:273204 -k1,16568:30264447,17721908:273203 -k1,16568:31734338,17721908:273204 -k1,16569:32583029,17721908:0 -) -(1,16569:6630773,18563396:25952256,513147,134348 -k1,16568:9008018,18563396:234218 -k1,16568:10922580,18563396:234219 -k1,16568:11688295,18563396:234218 -k1,16568:12278373,18563396:234218 -k1,16568:13901955,18563396:234219 -k1,16568:16186139,18563396:234218 -k1,16568:17611802,18563396:234218 -k1,16568:20821356,18563396:234219 -k1,16568:22074659,18563396:234218 -k1,16568:26333443,18563396:234218 -k1,16568:27234817,18563396:234218 -k1,16568:27883844,18563396:234184 -k1,16568:30698214,18563396:234218 -k1,16568:32583029,18563396:0 -) -(1,16569:6630773,19404884:25952256,513147,126483 -g1,16568:9804681,19404884 -g1,16568:12717101,19404884 -g1,16568:13907890,19404884 -g1,16568:17267920,19404884 -g1,16568:18734615,19404884 -g1,16568:21158136,19404884 -g1,16568:22118893,19404884 -k1,16569:32583029,19404884:8024886 -g1,16569:32583029,19404884 -) -v1,16571:6630773,20595350:0,393216,0 -(1,16589:6630773,28878368:25952256,8676234,196608 -g1,16589:6630773,28878368 -g1,16589:6630773,28878368 -g1,16589:6434165,28878368 -(1,16589:6434165,28878368:0,8676234,196608 -r1,16589:32779637,28878368:26345472,8872842,196608 -k1,16589:6434165,28878368:-26345472 -) -(1,16589:6434165,28878368:26345472,8676234,196608 -[1,16589:6630773,28878368:25952256,8479626,0 -(1,16573:6630773,20809260:25952256,410518,101187 -(1,16572:6630773,20809260:0,0,0 -g1,16572:6630773,20809260 -g1,16572:6630773,20809260 -g1,16572:6303093,20809260 -(1,16572:6303093,20809260:0,0,0 -) -g1,16572:6630773,20809260 -) -g1,16573:11056813,20809260 -g1,16573:12005251,20809260 -g1,16573:22121914,20809260 -g1,16573:25283371,20809260 -g1,16573:25915663,20809260 -g1,16573:27180246,20809260 -h1,16573:29077120,20809260:0,0,0 -k1,16573:32583029,20809260:3505909 -g1,16573:32583029,20809260 -) -(1,16574:6630773,21475438:25952256,410518,50331 -h1,16574:6630773,21475438:0,0,0 -h1,16574:10740667,21475438:0,0,0 -k1,16574:32583029,21475438:21842362 -g1,16574:32583029,21475438 -) -(1,16588:6630773,22207152:25952256,404226,107478 -(1,16576:6630773,22207152:0,0,0 -g1,16576:6630773,22207152 -g1,16576:6630773,22207152 -g1,16576:6303093,22207152 -(1,16576:6303093,22207152:0,0,0 -) -g1,16576:6630773,22207152 -) -g1,16588:7579210,22207152 -g1,16588:7895356,22207152 -g1,16588:8211502,22207152 -g1,16588:8527648,22207152 -g1,16588:10740668,22207152 -g1,16588:12637542,22207152 -h1,16588:16115144,22207152:0,0,0 -k1,16588:32583029,22207152:16467885 -g1,16588:32583029,22207152 -) -(1,16588:6630773,22873330:25952256,388497,9436 -h1,16588:6630773,22873330:0,0,0 -g1,16588:7579210,22873330 -g1,16588:8211502,22873330 -g1,16588:8527648,22873330 -g1,16588:8843794,22873330 -g1,16588:9159940,22873330 -g1,16588:9476086,22873330 -g1,16588:9792232,22873330 -g1,16588:10108378,22873330 -g1,16588:10740670,22873330 -g1,16588:11056816,22873330 -g1,16588:11372962,22873330 -g1,16588:11689108,22873330 -g1,16588:12005254,22873330 -g1,16588:12637546,22873330 -g1,16588:12953692,22873330 -g1,16588:13269838,22873330 -g1,16588:13585984,22873330 -g1,16588:13902130,22873330 -g1,16588:14218276,22873330 -g1,16588:14534422,22873330 -g1,16588:14850568,22873330 -g1,16588:15166714,22873330 -h1,16588:16115151,22873330:0,0,0 -k1,16588:32583029,22873330:16467878 -g1,16588:32583029,22873330 -) -(1,16588:6630773,23539508:25952256,388497,9436 -h1,16588:6630773,23539508:0,0,0 -g1,16588:7579210,23539508 -g1,16588:8211502,23539508 -g1,16588:8527648,23539508 -g1,16588:8843794,23539508 -g1,16588:9159940,23539508 -g1,16588:9476086,23539508 -g1,16588:9792232,23539508 -g1,16588:10108378,23539508 -g1,16588:10740670,23539508 -g1,16588:11056816,23539508 -g1,16588:11372962,23539508 -g1,16588:11689108,23539508 -g1,16588:12005254,23539508 -g1,16588:12637546,23539508 -g1,16588:12953692,23539508 -g1,16588:13269838,23539508 -g1,16588:13585984,23539508 -g1,16588:13902130,23539508 -g1,16588:14218276,23539508 -g1,16588:14534422,23539508 -g1,16588:14850568,23539508 -g1,16588:15166714,23539508 -h1,16588:16115151,23539508:0,0,0 -k1,16588:32583029,23539508:16467878 -g1,16588:32583029,23539508 -) -(1,16588:6630773,24205686:25952256,388497,9436 -h1,16588:6630773,24205686:0,0,0 -g1,16588:7579210,24205686 -g1,16588:8211502,24205686 -g1,16588:8527648,24205686 -g1,16588:8843794,24205686 -g1,16588:9159940,24205686 -g1,16588:9476086,24205686 -g1,16588:9792232,24205686 -g1,16588:10108378,24205686 -g1,16588:10740670,24205686 -g1,16588:11056816,24205686 -g1,16588:11372962,24205686 -g1,16588:11689108,24205686 -g1,16588:12005254,24205686 -g1,16588:12637546,24205686 -g1,16588:12953692,24205686 -g1,16588:13269838,24205686 -g1,16588:13585984,24205686 -g1,16588:13902130,24205686 -g1,16588:14218276,24205686 -g1,16588:14534422,24205686 -g1,16588:14850568,24205686 -g1,16588:15166714,24205686 -h1,16588:16115151,24205686:0,0,0 -k1,16588:32583029,24205686:16467878 -g1,16588:32583029,24205686 -) -(1,16588:6630773,24871864:25952256,388497,9436 -h1,16588:6630773,24871864:0,0,0 -g1,16588:7579210,24871864 -g1,16588:8211502,24871864 -g1,16588:8527648,24871864 -g1,16588:8843794,24871864 -g1,16588:9159940,24871864 -g1,16588:9476086,24871864 -g1,16588:9792232,24871864 -g1,16588:10108378,24871864 -g1,16588:10740670,24871864 -g1,16588:11056816,24871864 -g1,16588:11372962,24871864 -g1,16588:11689108,24871864 -g1,16588:12005254,24871864 -g1,16588:12637546,24871864 -g1,16588:12953692,24871864 -g1,16588:13269838,24871864 -g1,16588:13585984,24871864 -g1,16588:13902130,24871864 -g1,16588:14218276,24871864 -g1,16588:14534422,24871864 -g1,16588:14850568,24871864 -g1,16588:15166714,24871864 -h1,16588:16115151,24871864:0,0,0 -k1,16588:32583029,24871864:16467878 -g1,16588:32583029,24871864 -) -(1,16588:6630773,25538042:25952256,388497,9436 -h1,16588:6630773,25538042:0,0,0 -g1,16588:7579210,25538042 -g1,16588:8211502,25538042 -g1,16588:8527648,25538042 -g1,16588:8843794,25538042 -g1,16588:9159940,25538042 -g1,16588:9476086,25538042 -g1,16588:9792232,25538042 -g1,16588:10108378,25538042 -g1,16588:10740670,25538042 -g1,16588:11056816,25538042 -g1,16588:11372962,25538042 -g1,16588:11689108,25538042 -g1,16588:12005254,25538042 -g1,16588:12637546,25538042 -g1,16588:12953692,25538042 -g1,16588:13269838,25538042 -g1,16588:13585984,25538042 -g1,16588:13902130,25538042 -g1,16588:14218276,25538042 -g1,16588:14534422,25538042 -g1,16588:14850568,25538042 -g1,16588:15166714,25538042 -h1,16588:16115151,25538042:0,0,0 -k1,16588:32583029,25538042:16467878 -g1,16588:32583029,25538042 -) -(1,16588:6630773,26204220:25952256,404226,9436 -h1,16588:6630773,26204220:0,0,0 -g1,16588:7579210,26204220 -g1,16588:8211502,26204220 -g1,16588:8527648,26204220 -g1,16588:8843794,26204220 -g1,16588:9159940,26204220 -g1,16588:9476086,26204220 -g1,16588:9792232,26204220 -g1,16588:10108378,26204220 -g1,16588:10740670,26204220 -g1,16588:11056816,26204220 -g1,16588:11372962,26204220 -g1,16588:11689108,26204220 -g1,16588:12005254,26204220 -g1,16588:12637546,26204220 -g1,16588:12953692,26204220 -g1,16588:13269838,26204220 -g1,16588:13585984,26204220 -g1,16588:13902130,26204220 -g1,16588:14218276,26204220 -g1,16588:14534422,26204220 -g1,16588:14850568,26204220 -g1,16588:15166714,26204220 -h1,16588:16115151,26204220:0,0,0 -k1,16588:32583029,26204220:16467878 -g1,16588:32583029,26204220 -) -(1,16588:6630773,26870398:25952256,404226,9436 -h1,16588:6630773,26870398:0,0,0 -g1,16588:7579210,26870398 -g1,16588:8211502,26870398 -g1,16588:8527648,26870398 -g1,16588:8843794,26870398 -g1,16588:9159940,26870398 -g1,16588:9476086,26870398 -g1,16588:9792232,26870398 -g1,16588:10108378,26870398 -g1,16588:10740670,26870398 -g1,16588:11056816,26870398 -g1,16588:11372962,26870398 -g1,16588:11689108,26870398 -g1,16588:12005254,26870398 -g1,16588:12637546,26870398 -g1,16588:12953692,26870398 -g1,16588:13269838,26870398 -g1,16588:13585984,26870398 -g1,16588:13902130,26870398 -g1,16588:14218276,26870398 -g1,16588:14534422,26870398 -g1,16588:14850568,26870398 -g1,16588:15166714,26870398 -h1,16588:16115151,26870398:0,0,0 -k1,16588:32583029,26870398:16467878 -g1,16588:32583029,26870398 -) -(1,16588:6630773,27536576:25952256,404226,9436 -h1,16588:6630773,27536576:0,0,0 -g1,16588:7579210,27536576 -g1,16588:8211502,27536576 -g1,16588:8527648,27536576 -g1,16588:8843794,27536576 -g1,16588:9159940,27536576 -g1,16588:9476086,27536576 -g1,16588:9792232,27536576 -g1,16588:10108378,27536576 -g1,16588:10740670,27536576 -g1,16588:11056816,27536576 -g1,16588:11372962,27536576 -g1,16588:11689108,27536576 -g1,16588:12005254,27536576 -g1,16588:12637546,27536576 -g1,16588:12953692,27536576 -g1,16588:13269838,27536576 -g1,16588:13585984,27536576 -g1,16588:13902130,27536576 -g1,16588:14218276,27536576 -g1,16588:14534422,27536576 -g1,16588:14850568,27536576 -g1,16588:15166714,27536576 -h1,16588:16115151,27536576:0,0,0 -k1,16588:32583029,27536576:16467878 -g1,16588:32583029,27536576 -) -(1,16588:6630773,28202754:25952256,404226,9436 -h1,16588:6630773,28202754:0,0,0 -g1,16588:7579210,28202754 -g1,16588:8211502,28202754 -g1,16588:8527648,28202754 -g1,16588:8843794,28202754 -g1,16588:9159940,28202754 -g1,16588:9476086,28202754 -g1,16588:9792232,28202754 -g1,16588:10108378,28202754 -g1,16588:10740670,28202754 -g1,16588:11056816,28202754 -g1,16588:11372962,28202754 -g1,16588:11689108,28202754 -g1,16588:12005254,28202754 -g1,16588:12637546,28202754 -g1,16588:12953692,28202754 -g1,16588:13269838,28202754 -g1,16588:13585984,28202754 -g1,16588:13902130,28202754 -g1,16588:14218276,28202754 -g1,16588:14534422,28202754 -g1,16588:14850568,28202754 -g1,16588:15166714,28202754 -h1,16588:16115151,28202754:0,0,0 -k1,16588:32583029,28202754:16467878 -g1,16588:32583029,28202754 -) -(1,16588:6630773,28868932:25952256,404226,9436 -h1,16588:6630773,28868932:0,0,0 -g1,16588:7579210,28868932 -g1,16588:8527647,28868932 -g1,16588:8843793,28868932 -g1,16588:9159939,28868932 -g1,16588:9476085,28868932 -g1,16588:9792231,28868932 -g1,16588:10740668,28868932 -g1,16588:11056814,28868932 -g1,16588:11372960,28868932 -g1,16588:11689106,28868932 -g1,16588:12005252,28868932 -g1,16588:12637544,28868932 -g1,16588:12953690,28868932 -g1,16588:13269836,28868932 -g1,16588:13585982,28868932 -g1,16588:13902128,28868932 -g1,16588:14218274,28868932 -g1,16588:14534420,28868932 -g1,16588:14850566,28868932 -g1,16588:15166712,28868932 -h1,16588:16115149,28868932:0,0,0 -k1,16588:32583029,28868932:16467880 -g1,16588:32583029,28868932 -) -] -) -g1,16589:32583029,28878368 -g1,16589:6630773,28878368 -g1,16589:6630773,28878368 -g1,16589:32583029,28878368 -g1,16589:32583029,28878368 -) -h1,16589:6630773,29074976:0,0,0 -(1,16593:6630773,30440752:25952256,513147,115847 -h1,16592:6630773,30440752:983040,0,0 -k1,16592:9313040,30440752:220079 -k1,16592:12228616,30440752:220080 -(1,16592:12228616,30440752:0,452978,115847 -r1,16592:16455712,30440752:4227096,568825,115847 -k1,16592:12228616,30440752:-4227096 -) -(1,16592:12228616,30440752:4227096,452978,115847 -k1,16592:12228616,30440752:3277 -h1,16592:16452435,30440752:0,411205,112570 -) -k1,16592:16675791,30440752:220079 -k1,16592:17764223,30440752:220080 -k1,16592:19088584,30440752:220079 -k1,16592:20923471,30440752:220080 -k1,16592:22532913,30440752:220079 -k1,16592:24959590,30440752:220080 -k1,16592:26245940,30440752:220079 -k1,16592:27117448,30440752:220080 -k1,16592:28959543,30440752:220079 -k1,16592:32583029,30440752:0 -) -(1,16593:6630773,31282240:25952256,505283,134348 -g1,16592:8021447,31282240 -g1,16592:9687372,31282240 -g1,16592:12266869,31282240 -g1,16592:13749293,31282240 -g1,16592:17572008,31282240 -g1,16592:18422665,31282240 -g1,16592:19392597,31282240 -g1,16592:22082849,31282240 -k1,16593:32583029,31282240:7148013 -g1,16593:32583029,31282240 -) -v1,16595:6630773,32472706:0,393216,0 -(1,16602:6630773,35446223:25952256,3366733,196608 -g1,16602:6630773,35446223 -g1,16602:6630773,35446223 -g1,16602:6434165,35446223 -(1,16602:6434165,35446223:0,3366733,196608 -r1,16602:32779637,35446223:26345472,3563341,196608 -k1,16602:6434165,35446223:-26345472 -) -(1,16602:6434165,35446223:26345472,3366733,196608 -[1,16602:6630773,35446223:25952256,3170125,0 -(1,16597:6630773,32680324:25952256,404226,76021 -(1,16596:6630773,32680324:0,0,0 -g1,16596:6630773,32680324 -g1,16596:6630773,32680324 -g1,16596:6303093,32680324 -(1,16596:6303093,32680324:0,0,0 -) -g1,16596:6630773,32680324 -) -k1,16597:6630773,32680324:0 -h1,16597:11689104,32680324:0,0,0 -k1,16597:32583028,32680324:20893924 -g1,16597:32583028,32680324 -) -(1,16598:6630773,33346502:25952256,410518,101187 -h1,16598:6630773,33346502:0,0,0 -g1,16598:9159939,33346502 -g1,16598:10108377,33346502 -g1,16598:14218272,33346502 -g1,16598:14850564,33346502 -g1,16598:16747439,33346502 -g1,16598:17379731,33346502 -g1,16598:18012023,33346502 -h1,16598:22438062,33346502:0,0,0 -k1,16598:32583029,33346502:10144967 -g1,16598:32583029,33346502 -) -(1,16599:6630773,34012680:25952256,410518,101187 -h1,16599:6630773,34012680:0,0,0 -g1,16599:12953687,34012680 -g1,16599:14534416,34012680 -g1,16599:15166708,34012680 -g1,16599:22754204,34012680 -g1,16599:25915661,34012680 -g1,16599:26547953,34012680 -g1,16599:28760973,34012680 -h1,16599:30657847,34012680:0,0,0 -k1,16599:32583029,34012680:1925182 -g1,16599:32583029,34012680 -) -(1,16600:6630773,34678858:25952256,410518,101187 -h1,16600:6630773,34678858:0,0,0 -k1,16600:12996744,34678858:359203 -k1,16600:14620529,34678858:359202 -k1,16600:15295878,34678858:359203 -k1,16600:22926431,34678858:359203 -k1,16600:26130944,34678858:359202 -k1,16600:26806293,34678858:359203 -k1,16600:29378515,34678858:359202 -k1,16600:31634592,34678858:359203 -k1,16600:32583029,34678858:0 -) -(1,16600:6630773,35345036:25952256,404226,101187 -g1,16600:8211502,35345036 -g1,16600:8843794,35345036 -h1,16600:10424523,35345036:0,0,0 -k1,16600:32583029,35345036:22158506 -g1,16600:32583029,35345036 -) -] -) -g1,16602:32583029,35446223 -g1,16602:6630773,35446223 -g1,16602:6630773,35446223 -g1,16602:32583029,35446223 -g1,16602:32583029,35446223 -) -h1,16602:6630773,35642831:0,0,0 -(1,16607:6630773,37008607:25952256,505283,134348 -h1,16605:6630773,37008607:983040,0,0 -k1,16605:9629522,37008607:232474 -k1,16605:12207530,37008607:232474 -k1,16605:13056042,37008607:232474 -k1,16605:15084202,37008607:232474 -k1,16605:16185028,37008607:232474 -k1,16605:17395955,37008607:232474 -k1,16605:17984289,37008607:232474 -k1,16605:21395259,37008607:232474 -k1,16605:24989730,37008607:232474 -k1,16605:26394643,37008607:232474 -k1,16605:30424273,37008607:232474 -k1,16605:32583029,37008607:0 -) -(1,16607:6630773,37850095:25952256,505283,134348 -g1,16605:8565395,37850095 -g1,16605:9783709,37850095 -g1,16605:13385567,37850095 -g1,16605:14453148,37850095 -g1,16605:16857664,37850095 -g1,16605:19615419,37850095 -(1,16605:19615419,37850095:0,452978,115847 -r1,16605:22787379,37850095:3171960,568825,115847 -k1,16605:19615419,37850095:-3171960 -) -(1,16605:19615419,37850095:3171960,452978,115847 -k1,16605:19615419,37850095:3277 -h1,16605:22784102,37850095:0,411205,112570 -) -g1,16605:22986608,37850095 -g1,16605:23801875,37850095 -g1,16605:25020189,37850095 -g1,16605:26715605,37850095 -g1,16605:28885502,37850095 -k1,16607:32583029,37850095:1668532 -g1,16607:32583029,37850095 -) -] -(1,16609:32583029,45706769:0,0,0 -g1,16609:32583029,45706769 -) -) -] -(1,16609:6630773,47279633:25952256,0,0 -h1,16609:6630773,47279633:25952256,0,0 -) -] -h1,16609:4262630,4025873:0,0,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16640:37855564,49800853:1179648,16384,0 +) +) +k1,16640:3078556,49800853:-34777008 +) +] +g1,16640:6630773,4812305 +k1,16640:25146660,4812305:17320510 +g1,16640:26880087,4812305 +g1,16640:29193507,4812305 +g1,16640:30603186,4812305 +) +) +] +[1,16640:6630773,45706769:25952256,40108032,0 +(1,16640:6630773,45706769:25952256,40108032,0 +(1,16640:6630773,45706769:0,0,0 +g1,16640:6630773,45706769 +) +[1,16640:6630773,45706769:25952256,40108032,0 +v1,16588:6630773,6254097:0,393216,0 +(1,16588:6630773,7784632:25952256,1923751,196608 +g1,16588:6630773,7784632 +g1,16588:6630773,7784632 +g1,16588:6434165,7784632 +(1,16588:6434165,7784632:0,1923751,196608 +r1,16588:32779637,7784632:26345472,2120359,196608 +k1,16588:6434165,7784632:-26345472 +) +(1,16588:6434165,7784632:26345472,1923751,196608 +[1,16588:6630773,7784632:25952256,1727143,0 +(1,16587:6630773,6445986:25952256,388497,4718 +h1,16587:6630773,6445986:0,0,0 +g1,16587:7579210,6445986 +g1,16587:8211502,6445986 +g1,16587:8527648,6445986 +g1,16587:8843794,6445986 +g1,16587:9159940,6445986 +g1,16587:9476086,6445986 +g1,16587:9792232,6445986 +g1,16587:10424524,6445986 +h1,16587:10740670,6445986:0,0,0 +k1,16587:32583030,6445986:21842360 +g1,16587:32583030,6445986 +) +(1,16587:6630773,7112164:25952256,388497,9436 +h1,16587:6630773,7112164:0,0,0 +g1,16587:7579210,7112164 +g1,16587:8211502,7112164 +g1,16587:8527648,7112164 +g1,16587:8843794,7112164 +g1,16587:9159940,7112164 +g1,16587:9476086,7112164 +g1,16587:9792232,7112164 +g1,16587:10424524,7112164 +h1,16587:10740670,7112164:0,0,0 +k1,16587:32583030,7112164:21842360 +g1,16587:32583030,7112164 +) +(1,16587:6630773,7778342:25952256,404226,6290 +h1,16587:6630773,7778342:0,0,0 +g1,16587:7579210,7778342 +g1,16587:8211502,7778342 +g1,16587:9476085,7778342 +g1,16587:11056814,7778342 +g1,16587:11689106,7778342 +g1,16587:13269835,7778342 +h1,16587:14534418,7778342:0,0,0 +k1,16587:32583030,7778342:18048612 +g1,16587:32583030,7778342 +) +] +) +g1,16588:32583029,7784632 +g1,16588:6630773,7784632 +g1,16588:6630773,7784632 +g1,16588:32583029,7784632 +g1,16588:32583029,7784632 +) +h1,16588:6630773,7981240:0,0,0 +(1,16592:6630773,9347016:25952256,513147,134348 +h1,16591:6630773,9347016:983040,0,0 +k1,16591:8628583,9347016:240790 +k1,16591:9888458,9347016:240790 +k1,16591:13347066,9347016:240790 +k1,16591:17164156,9347016:240790 +k1,16591:18424031,9347016:240790 +k1,16591:20266522,9347016:240791 +k1,16591:22484533,9347016:240790 +k1,16591:24212335,9347016:240790 +k1,16591:25928340,9347016:240790 +k1,16591:27188215,9347016:240790 +k1,16591:29082478,9347016:240790 +k1,16591:31391584,9347016:240790 +k1,16591:32583029,9347016:0 +) +(1,16592:6630773,10188504:25952256,505283,134348 +g1,16591:8172835,10188504 +g1,16591:10574074,10188504 +g1,16591:12338958,10188504 +g1,16591:13224349,10188504 +g1,16591:14039616,10188504 +g1,16591:16261941,10188504 +g1,16591:17693247,10188504 +g1,16591:20171163,10188504 +h1,16591:21713881,10188504:0,0,0 +g1,16591:21913110,10188504 +g1,16591:22921709,10188504 +g1,16591:24619091,10188504 +h1,16591:25814468,10188504:0,0,0 +k1,16592:32583029,10188504:6387797 +g1,16592:32583029,10188504 +) +(1,16593:6630773,12279764:25952256,555811,12975 +(1,16593:6630773,12279764:2450326,534184,12975 +g1,16593:6630773,12279764 +g1,16593:9081099,12279764 +) +k1,16593:32583030,12279764:21625440 +g1,16593:32583030,12279764 +) +(1,16598:6630773,13514468:25952256,513147,134348 +k1,16597:9413213,13514468:247507 +k1,16597:11334510,13514468:247508 +k1,16597:12686299,13514468:247507 +k1,16597:13681573,13514468:247508 +k1,16597:15579277,13514468:247507 +k1,16597:18310599,13514468:247507 +k1,16597:19209535,13514468:247508 +k1,16597:21426399,13514468:247507 +k1,16597:22360069,13514468:247508 +k1,16597:23065673,13514468:247507 +k1,16597:24735967,13514468:247507 +k1,16597:26328929,13514468:247508 +k1,16597:29602233,13514468:247507 +k1,16597:30501169,13514468:247508 +k1,16597:31563944,13514468:247507 +k1,16597:32583029,13514468:0 +) +(1,16598:6630773,14355956:25952256,513147,134348 +k1,16597:8776362,14355956:223418 +k1,16597:10769907,14355956:223418 +k1,16597:13928027,14355956:223418 +k1,16597:14609542,14355956:223418 +k1,16597:15364457,14355956:223418 +k1,16597:17238072,14355956:223418 +k1,16597:22452712,14355956:223418 +k1,16597:24070081,14355956:223418 +k1,16597:27319296,14355956:223418 +k1,16597:29009410,14355956:223418 +k1,16597:30180479,14355956:223418 +k1,16597:32583029,14355956:0 +) +(1,16598:6630773,15197444:25952256,513147,134348 +k1,16597:8084289,15197444:262071 +k1,16597:10604075,15197444:262071 +k1,16597:13643562,15197444:262071 +k1,16597:17529119,15197444:262071 +k1,16597:18982635,15197444:262071 +k1,16597:22927174,15197444:262071 +k1,16597:23805283,15197444:262071 +k1,16597:26829697,15197444:262071 +k1,16597:29602452,15197444:262071 +k1,16597:32583029,15197444:0 +) +(1,16598:6630773,16038932:25952256,513147,134348 +k1,16597:7878730,16038932:228872 +k1,16597:9763697,16038932:228872 +k1,16597:12014355,16038932:228872 +k1,16597:13903909,16038932:228872 +k1,16597:16359694,16038932:228872 +k1,16597:17239994,16038932:228872 +k1,16597:19491961,16038932:228871 +k1,16597:20178930,16038932:228872 +k1,16597:22419757,16038932:228872 +k1,16597:25237301,16038932:228872 +k1,16597:27816949,16038932:228872 +k1,16597:28705113,16038932:228872 +k1,16597:29289845,16038932:228872 +k1,16597:32583029,16038932:0 +) +(1,16598:6630773,16880420:25952256,505283,126483 +g1,16597:7481430,16880420 +g1,16597:8428425,16880420 +k1,16598:32583029,16880420:21031158 +g1,16598:32583029,16880420 +) +(1,16600:6630773,17721908:25952256,513147,134348 +h1,16599:6630773,17721908:983040,0,0 +k1,16599:9375340,17721908:273204 +k1,16599:10516895,17721908:273203 +k1,16599:11882584,17721908:273204 +k1,16599:14851284,17721908:273204 +(1,16599:14851284,17721908:0,452978,115847 +r1,16599:18726668,17721908:3875384,568825,115847 +k1,16599:14851284,17721908:-3875384 +) +(1,16599:14851284,17721908:3875384,452978,115847 +k1,16599:14851284,17721908:3277 +h1,16599:18723391,17721908:0,411205,112570 +) +k1,16599:19173542,17721908:273204 +k1,16599:22186150,17721908:273203 +k1,16599:23478439,17721908:273204 +k1,16599:27044827,17721908:273204 +k1,16599:28079559,17721908:273204 +k1,16599:30264447,17721908:273203 +k1,16599:31734338,17721908:273204 +k1,16600:32583029,17721908:0 +) +(1,16600:6630773,18563396:25952256,513147,134348 +k1,16599:9008018,18563396:234218 +k1,16599:10922580,18563396:234219 +k1,16599:11688295,18563396:234218 +k1,16599:12278373,18563396:234218 +k1,16599:13901955,18563396:234219 +k1,16599:16186139,18563396:234218 +k1,16599:17611802,18563396:234218 +k1,16599:20821356,18563396:234219 +k1,16599:22074659,18563396:234218 +k1,16599:26333443,18563396:234218 +k1,16599:27234817,18563396:234218 +k1,16599:27883844,18563396:234184 +k1,16599:30698214,18563396:234218 +k1,16599:32583029,18563396:0 +) +(1,16600:6630773,19404884:25952256,513147,126483 +g1,16599:9804681,19404884 +g1,16599:12717101,19404884 +g1,16599:13907890,19404884 +g1,16599:17267920,19404884 +g1,16599:18734615,19404884 +g1,16599:21158136,19404884 +g1,16599:22118893,19404884 +k1,16600:32583029,19404884:8024886 +g1,16600:32583029,19404884 +) +v1,16602:6630773,20595350:0,393216,0 +(1,16620:6630773,28878368:25952256,8676234,196608 +g1,16620:6630773,28878368 +g1,16620:6630773,28878368 +g1,16620:6434165,28878368 +(1,16620:6434165,28878368:0,8676234,196608 +r1,16620:32779637,28878368:26345472,8872842,196608 +k1,16620:6434165,28878368:-26345472 +) +(1,16620:6434165,28878368:26345472,8676234,196608 +[1,16620:6630773,28878368:25952256,8479626,0 +(1,16604:6630773,20809260:25952256,410518,101187 +(1,16603:6630773,20809260:0,0,0 +g1,16603:6630773,20809260 +g1,16603:6630773,20809260 +g1,16603:6303093,20809260 +(1,16603:6303093,20809260:0,0,0 +) +g1,16603:6630773,20809260 +) +g1,16604:11056813,20809260 +g1,16604:12005251,20809260 +g1,16604:22121914,20809260 +g1,16604:25283371,20809260 +g1,16604:25915663,20809260 +g1,16604:27180246,20809260 +h1,16604:29077120,20809260:0,0,0 +k1,16604:32583029,20809260:3505909 +g1,16604:32583029,20809260 +) +(1,16605:6630773,21475438:25952256,410518,50331 +h1,16605:6630773,21475438:0,0,0 +h1,16605:10740667,21475438:0,0,0 +k1,16605:32583029,21475438:21842362 +g1,16605:32583029,21475438 +) +(1,16619:6630773,22207152:25952256,404226,107478 +(1,16607:6630773,22207152:0,0,0 +g1,16607:6630773,22207152 +g1,16607:6630773,22207152 +g1,16607:6303093,22207152 +(1,16607:6303093,22207152:0,0,0 +) +g1,16607:6630773,22207152 +) +g1,16619:7579210,22207152 +g1,16619:7895356,22207152 +g1,16619:8211502,22207152 +g1,16619:8527648,22207152 +g1,16619:10740668,22207152 +g1,16619:12637542,22207152 +h1,16619:16115144,22207152:0,0,0 +k1,16619:32583029,22207152:16467885 +g1,16619:32583029,22207152 +) +(1,16619:6630773,22873330:25952256,388497,9436 +h1,16619:6630773,22873330:0,0,0 +g1,16619:7579210,22873330 +g1,16619:8211502,22873330 +g1,16619:8527648,22873330 +g1,16619:8843794,22873330 +g1,16619:9159940,22873330 +g1,16619:9476086,22873330 +g1,16619:9792232,22873330 +g1,16619:10108378,22873330 +g1,16619:10740670,22873330 +g1,16619:11056816,22873330 +g1,16619:11372962,22873330 +g1,16619:11689108,22873330 +g1,16619:12005254,22873330 +g1,16619:12637546,22873330 +g1,16619:12953692,22873330 +g1,16619:13269838,22873330 +g1,16619:13585984,22873330 +g1,16619:13902130,22873330 +g1,16619:14218276,22873330 +g1,16619:14534422,22873330 +g1,16619:14850568,22873330 +g1,16619:15166714,22873330 +h1,16619:16115151,22873330:0,0,0 +k1,16619:32583029,22873330:16467878 +g1,16619:32583029,22873330 +) +(1,16619:6630773,23539508:25952256,388497,9436 +h1,16619:6630773,23539508:0,0,0 +g1,16619:7579210,23539508 +g1,16619:8211502,23539508 +g1,16619:8527648,23539508 +g1,16619:8843794,23539508 +g1,16619:9159940,23539508 +g1,16619:9476086,23539508 +g1,16619:9792232,23539508 +g1,16619:10108378,23539508 +g1,16619:10740670,23539508 +g1,16619:11056816,23539508 +g1,16619:11372962,23539508 +g1,16619:11689108,23539508 +g1,16619:12005254,23539508 +g1,16619:12637546,23539508 +g1,16619:12953692,23539508 +g1,16619:13269838,23539508 +g1,16619:13585984,23539508 +g1,16619:13902130,23539508 +g1,16619:14218276,23539508 +g1,16619:14534422,23539508 +g1,16619:14850568,23539508 +g1,16619:15166714,23539508 +h1,16619:16115151,23539508:0,0,0 +k1,16619:32583029,23539508:16467878 +g1,16619:32583029,23539508 +) +(1,16619:6630773,24205686:25952256,388497,9436 +h1,16619:6630773,24205686:0,0,0 +g1,16619:7579210,24205686 +g1,16619:8211502,24205686 +g1,16619:8527648,24205686 +g1,16619:8843794,24205686 +g1,16619:9159940,24205686 +g1,16619:9476086,24205686 +g1,16619:9792232,24205686 +g1,16619:10108378,24205686 +g1,16619:10740670,24205686 +g1,16619:11056816,24205686 +g1,16619:11372962,24205686 +g1,16619:11689108,24205686 +g1,16619:12005254,24205686 +g1,16619:12637546,24205686 +g1,16619:12953692,24205686 +g1,16619:13269838,24205686 +g1,16619:13585984,24205686 +g1,16619:13902130,24205686 +g1,16619:14218276,24205686 +g1,16619:14534422,24205686 +g1,16619:14850568,24205686 +g1,16619:15166714,24205686 +h1,16619:16115151,24205686:0,0,0 +k1,16619:32583029,24205686:16467878 +g1,16619:32583029,24205686 +) +(1,16619:6630773,24871864:25952256,388497,9436 +h1,16619:6630773,24871864:0,0,0 +g1,16619:7579210,24871864 +g1,16619:8211502,24871864 +g1,16619:8527648,24871864 +g1,16619:8843794,24871864 +g1,16619:9159940,24871864 +g1,16619:9476086,24871864 +g1,16619:9792232,24871864 +g1,16619:10108378,24871864 +g1,16619:10740670,24871864 +g1,16619:11056816,24871864 +g1,16619:11372962,24871864 +g1,16619:11689108,24871864 +g1,16619:12005254,24871864 +g1,16619:12637546,24871864 +g1,16619:12953692,24871864 +g1,16619:13269838,24871864 +g1,16619:13585984,24871864 +g1,16619:13902130,24871864 +g1,16619:14218276,24871864 +g1,16619:14534422,24871864 +g1,16619:14850568,24871864 +g1,16619:15166714,24871864 +h1,16619:16115151,24871864:0,0,0 +k1,16619:32583029,24871864:16467878 +g1,16619:32583029,24871864 +) +(1,16619:6630773,25538042:25952256,388497,9436 +h1,16619:6630773,25538042:0,0,0 +g1,16619:7579210,25538042 +g1,16619:8211502,25538042 +g1,16619:8527648,25538042 +g1,16619:8843794,25538042 +g1,16619:9159940,25538042 +g1,16619:9476086,25538042 +g1,16619:9792232,25538042 +g1,16619:10108378,25538042 +g1,16619:10740670,25538042 +g1,16619:11056816,25538042 +g1,16619:11372962,25538042 +g1,16619:11689108,25538042 +g1,16619:12005254,25538042 +g1,16619:12637546,25538042 +g1,16619:12953692,25538042 +g1,16619:13269838,25538042 +g1,16619:13585984,25538042 +g1,16619:13902130,25538042 +g1,16619:14218276,25538042 +g1,16619:14534422,25538042 +g1,16619:14850568,25538042 +g1,16619:15166714,25538042 +h1,16619:16115151,25538042:0,0,0 +k1,16619:32583029,25538042:16467878 +g1,16619:32583029,25538042 +) +(1,16619:6630773,26204220:25952256,404226,9436 +h1,16619:6630773,26204220:0,0,0 +g1,16619:7579210,26204220 +g1,16619:8211502,26204220 +g1,16619:8527648,26204220 +g1,16619:8843794,26204220 +g1,16619:9159940,26204220 +g1,16619:9476086,26204220 +g1,16619:9792232,26204220 +g1,16619:10108378,26204220 +g1,16619:10740670,26204220 +g1,16619:11056816,26204220 +g1,16619:11372962,26204220 +g1,16619:11689108,26204220 +g1,16619:12005254,26204220 +g1,16619:12637546,26204220 +g1,16619:12953692,26204220 +g1,16619:13269838,26204220 +g1,16619:13585984,26204220 +g1,16619:13902130,26204220 +g1,16619:14218276,26204220 +g1,16619:14534422,26204220 +g1,16619:14850568,26204220 +g1,16619:15166714,26204220 +h1,16619:16115151,26204220:0,0,0 +k1,16619:32583029,26204220:16467878 +g1,16619:32583029,26204220 +) +(1,16619:6630773,26870398:25952256,404226,9436 +h1,16619:6630773,26870398:0,0,0 +g1,16619:7579210,26870398 +g1,16619:8211502,26870398 +g1,16619:8527648,26870398 +g1,16619:8843794,26870398 +g1,16619:9159940,26870398 +g1,16619:9476086,26870398 +g1,16619:9792232,26870398 +g1,16619:10108378,26870398 +g1,16619:10740670,26870398 +g1,16619:11056816,26870398 +g1,16619:11372962,26870398 +g1,16619:11689108,26870398 +g1,16619:12005254,26870398 +g1,16619:12637546,26870398 +g1,16619:12953692,26870398 +g1,16619:13269838,26870398 +g1,16619:13585984,26870398 +g1,16619:13902130,26870398 +g1,16619:14218276,26870398 +g1,16619:14534422,26870398 +g1,16619:14850568,26870398 +g1,16619:15166714,26870398 +h1,16619:16115151,26870398:0,0,0 +k1,16619:32583029,26870398:16467878 +g1,16619:32583029,26870398 +) +(1,16619:6630773,27536576:25952256,404226,9436 +h1,16619:6630773,27536576:0,0,0 +g1,16619:7579210,27536576 +g1,16619:8211502,27536576 +g1,16619:8527648,27536576 +g1,16619:8843794,27536576 +g1,16619:9159940,27536576 +g1,16619:9476086,27536576 +g1,16619:9792232,27536576 +g1,16619:10108378,27536576 +g1,16619:10740670,27536576 +g1,16619:11056816,27536576 +g1,16619:11372962,27536576 +g1,16619:11689108,27536576 +g1,16619:12005254,27536576 +g1,16619:12637546,27536576 +g1,16619:12953692,27536576 +g1,16619:13269838,27536576 +g1,16619:13585984,27536576 +g1,16619:13902130,27536576 +g1,16619:14218276,27536576 +g1,16619:14534422,27536576 +g1,16619:14850568,27536576 +g1,16619:15166714,27536576 +h1,16619:16115151,27536576:0,0,0 +k1,16619:32583029,27536576:16467878 +g1,16619:32583029,27536576 +) +(1,16619:6630773,28202754:25952256,404226,9436 +h1,16619:6630773,28202754:0,0,0 +g1,16619:7579210,28202754 +g1,16619:8211502,28202754 +g1,16619:8527648,28202754 +g1,16619:8843794,28202754 +g1,16619:9159940,28202754 +g1,16619:9476086,28202754 +g1,16619:9792232,28202754 +g1,16619:10108378,28202754 +g1,16619:10740670,28202754 +g1,16619:11056816,28202754 +g1,16619:11372962,28202754 +g1,16619:11689108,28202754 +g1,16619:12005254,28202754 +g1,16619:12637546,28202754 +g1,16619:12953692,28202754 +g1,16619:13269838,28202754 +g1,16619:13585984,28202754 +g1,16619:13902130,28202754 +g1,16619:14218276,28202754 +g1,16619:14534422,28202754 +g1,16619:14850568,28202754 +g1,16619:15166714,28202754 +h1,16619:16115151,28202754:0,0,0 +k1,16619:32583029,28202754:16467878 +g1,16619:32583029,28202754 +) +(1,16619:6630773,28868932:25952256,404226,9436 +h1,16619:6630773,28868932:0,0,0 +g1,16619:7579210,28868932 +g1,16619:8527647,28868932 +g1,16619:8843793,28868932 +g1,16619:9159939,28868932 +g1,16619:9476085,28868932 +g1,16619:9792231,28868932 +g1,16619:10740668,28868932 +g1,16619:11056814,28868932 +g1,16619:11372960,28868932 +g1,16619:11689106,28868932 +g1,16619:12005252,28868932 +g1,16619:12637544,28868932 +g1,16619:12953690,28868932 +g1,16619:13269836,28868932 +g1,16619:13585982,28868932 +g1,16619:13902128,28868932 +g1,16619:14218274,28868932 +g1,16619:14534420,28868932 +g1,16619:14850566,28868932 +g1,16619:15166712,28868932 +h1,16619:16115149,28868932:0,0,0 +k1,16619:32583029,28868932:16467880 +g1,16619:32583029,28868932 +) +] +) +g1,16620:32583029,28878368 +g1,16620:6630773,28878368 +g1,16620:6630773,28878368 +g1,16620:32583029,28878368 +g1,16620:32583029,28878368 +) +h1,16620:6630773,29074976:0,0,0 +(1,16624:6630773,30440752:25952256,513147,115847 +h1,16623:6630773,30440752:983040,0,0 +k1,16623:9313040,30440752:220079 +k1,16623:12228616,30440752:220080 +(1,16623:12228616,30440752:0,452978,115847 +r1,16623:16455712,30440752:4227096,568825,115847 +k1,16623:12228616,30440752:-4227096 +) +(1,16623:12228616,30440752:4227096,452978,115847 +k1,16623:12228616,30440752:3277 +h1,16623:16452435,30440752:0,411205,112570 +) +k1,16623:16675791,30440752:220079 +k1,16623:17764223,30440752:220080 +k1,16623:19088584,30440752:220079 +k1,16623:20923471,30440752:220080 +k1,16623:22532913,30440752:220079 +k1,16623:24959590,30440752:220080 +k1,16623:26245940,30440752:220079 +k1,16623:27117448,30440752:220080 +k1,16623:28959543,30440752:220079 +k1,16623:32583029,30440752:0 +) +(1,16624:6630773,31282240:25952256,505283,134348 +g1,16623:8021447,31282240 +g1,16623:9687372,31282240 +g1,16623:12266869,31282240 +g1,16623:13749293,31282240 +g1,16623:17572008,31282240 +g1,16623:18422665,31282240 +g1,16623:19392597,31282240 +g1,16623:22082849,31282240 +k1,16624:32583029,31282240:7148013 +g1,16624:32583029,31282240 +) +v1,16626:6630773,32472706:0,393216,0 +(1,16633:6630773,35446223:25952256,3366733,196608 +g1,16633:6630773,35446223 +g1,16633:6630773,35446223 +g1,16633:6434165,35446223 +(1,16633:6434165,35446223:0,3366733,196608 +r1,16633:32779637,35446223:26345472,3563341,196608 +k1,16633:6434165,35446223:-26345472 +) +(1,16633:6434165,35446223:26345472,3366733,196608 +[1,16633:6630773,35446223:25952256,3170125,0 +(1,16628:6630773,32680324:25952256,404226,76021 +(1,16627:6630773,32680324:0,0,0 +g1,16627:6630773,32680324 +g1,16627:6630773,32680324 +g1,16627:6303093,32680324 +(1,16627:6303093,32680324:0,0,0 +) +g1,16627:6630773,32680324 +) +k1,16628:6630773,32680324:0 +h1,16628:11689104,32680324:0,0,0 +k1,16628:32583028,32680324:20893924 +g1,16628:32583028,32680324 +) +(1,16629:6630773,33346502:25952256,410518,101187 +h1,16629:6630773,33346502:0,0,0 +g1,16629:9159939,33346502 +g1,16629:10108377,33346502 +g1,16629:14218272,33346502 +g1,16629:14850564,33346502 +g1,16629:16747439,33346502 +g1,16629:17379731,33346502 +g1,16629:18012023,33346502 +h1,16629:22438062,33346502:0,0,0 +k1,16629:32583029,33346502:10144967 +g1,16629:32583029,33346502 +) +(1,16630:6630773,34012680:25952256,410518,101187 +h1,16630:6630773,34012680:0,0,0 +g1,16630:12953687,34012680 +g1,16630:14534416,34012680 +g1,16630:15166708,34012680 +g1,16630:22754204,34012680 +g1,16630:25915661,34012680 +g1,16630:26547953,34012680 +g1,16630:28760973,34012680 +h1,16630:30657847,34012680:0,0,0 +k1,16630:32583029,34012680:1925182 +g1,16630:32583029,34012680 +) +(1,16631:6630773,34678858:25952256,410518,101187 +h1,16631:6630773,34678858:0,0,0 +k1,16631:12996744,34678858:359203 +k1,16631:14620529,34678858:359202 +k1,16631:15295878,34678858:359203 +k1,16631:22926431,34678858:359203 +k1,16631:26130944,34678858:359202 +k1,16631:26806293,34678858:359203 +k1,16631:29378515,34678858:359202 +k1,16631:31634592,34678858:359203 +k1,16631:32583029,34678858:0 +) +(1,16631:6630773,35345036:25952256,404226,101187 +g1,16631:8211502,35345036 +g1,16631:8843794,35345036 +h1,16631:10424523,35345036:0,0,0 +k1,16631:32583029,35345036:22158506 +g1,16631:32583029,35345036 +) +] +) +g1,16633:32583029,35446223 +g1,16633:6630773,35446223 +g1,16633:6630773,35446223 +g1,16633:32583029,35446223 +g1,16633:32583029,35446223 +) +h1,16633:6630773,35642831:0,0,0 +(1,16638:6630773,37008607:25952256,505283,134348 +h1,16636:6630773,37008607:983040,0,0 +k1,16636:9629522,37008607:232474 +k1,16636:12207530,37008607:232474 +k1,16636:13056042,37008607:232474 +k1,16636:15084202,37008607:232474 +k1,16636:16185028,37008607:232474 +k1,16636:17395955,37008607:232474 +k1,16636:17984289,37008607:232474 +k1,16636:21395259,37008607:232474 +k1,16636:24989730,37008607:232474 +k1,16636:26394643,37008607:232474 +k1,16636:30424273,37008607:232474 +k1,16636:32583029,37008607:0 +) +(1,16638:6630773,37850095:25952256,505283,134348 +g1,16636:8565395,37850095 +g1,16636:9783709,37850095 +g1,16636:13385567,37850095 +g1,16636:14453148,37850095 +g1,16636:16857664,37850095 +g1,16636:19615419,37850095 +(1,16636:19615419,37850095:0,452978,115847 +r1,16636:22787379,37850095:3171960,568825,115847 +k1,16636:19615419,37850095:-3171960 +) +(1,16636:19615419,37850095:3171960,452978,115847 +k1,16636:19615419,37850095:3277 +h1,16636:22784102,37850095:0,411205,112570 +) +g1,16636:22986608,37850095 +g1,16636:23801875,37850095 +g1,16636:25020189,37850095 +g1,16636:26715605,37850095 +g1,16636:28885502,37850095 +k1,16638:32583029,37850095:1668532 +g1,16638:32583029,37850095 +) +] +(1,16640:32583029,45706769:0,0,0 +g1,16640:32583029,45706769 +) +) +] +(1,16640:6630773,47279633:25952256,0,0 +h1,16640:6630773,47279633:25952256,0,0 +) +] +h1,16640:4262630,4025873:0,0,0 ] !23780 }323 -Input:2498:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2499:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:2495:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2496:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {324 -[1,16649:4262630,47279633:28320399,43253760,0 -(1,16649:4262630,4025873:0,0,0 -[1,16649:-473657,4025873:25952256,0,0 -(1,16649:-473657,-710414:25952256,0,0 -h1,16649:-473657,-710414:0,0,0 -(1,16649:-473657,-710414:0,0,0 -(1,16649:-473657,-710414:0,0,0 -g1,16649:-473657,-710414 -(1,16649:-473657,-710414:65781,0,65781 -g1,16649:-407876,-710414 -[1,16649:-407876,-644633:0,0,0 +[1,16680:4262630,47279633:28320399,43253760,0 +(1,16680:4262630,4025873:0,0,0 +[1,16680:-473657,4025873:25952256,0,0 +(1,16680:-473657,-710414:25952256,0,0 +h1,16680:-473657,-710414:0,0,0 +(1,16680:-473657,-710414:0,0,0 +(1,16680:-473657,-710414:0,0,0 +g1,16680:-473657,-710414 +(1,16680:-473657,-710414:65781,0,65781 +g1,16680:-407876,-710414 +[1,16680:-407876,-644633:0,0,0 ] ) -k1,16649:-473657,-710414:-65781 +k1,16680:-473657,-710414:-65781 ) ) -k1,16649:25478599,-710414:25952256 -g1,16649:25478599,-710414 +k1,16680:25478599,-710414:25952256 +g1,16680:25478599,-710414 ) ] ) -[1,16649:6630773,47279633:25952256,43253760,0 -[1,16649:6630773,4812305:25952256,786432,0 -(1,16649:6630773,4812305:25952256,505283,11795 -(1,16649:6630773,4812305:25952256,505283,11795 -g1,16649:3078558,4812305 -[1,16649:3078558,4812305:0,0,0 -(1,16649:3078558,2439708:0,1703936,0 -k1,16649:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16649:2537886,2439708:1179648,16384,0 +[1,16680:6630773,47279633:25952256,43253760,0 +[1,16680:6630773,4812305:25952256,786432,0 +(1,16680:6630773,4812305:25952256,505283,11795 +(1,16680:6630773,4812305:25952256,505283,11795 +g1,16680:3078558,4812305 +[1,16680:3078558,4812305:0,0,0 +(1,16680:3078558,2439708:0,1703936,0 +k1,16680:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16680:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16649:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16680:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16649:3078558,4812305:0,0,0 -(1,16649:3078558,2439708:0,1703936,0 -g1,16649:29030814,2439708 -g1,16649:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16649:36151628,1915420:16384,1179648,0 +[1,16680:3078558,4812305:0,0,0 +(1,16680:3078558,2439708:0,1703936,0 +g1,16680:29030814,2439708 +g1,16680:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16680:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16649:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16680:37855564,2439708:1179648,16384,0 ) ) -k1,16649:3078556,2439708:-34777008 +k1,16680:3078556,2439708:-34777008 ) ] -[1,16649:3078558,4812305:0,0,0 -(1,16649:3078558,49800853:0,16384,2228224 -k1,16649:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16649:2537886,49800853:1179648,16384,0 +[1,16680:3078558,4812305:0,0,0 +(1,16680:3078558,49800853:0,16384,2228224 +k1,16680:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16680:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16649:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16680:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16649:3078558,4812305:0,0,0 -(1,16649:3078558,49800853:0,16384,2228224 -g1,16649:29030814,49800853 -g1,16649:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16649:36151628,51504789:16384,1179648,0 +[1,16680:3078558,4812305:0,0,0 +(1,16680:3078558,49800853:0,16384,2228224 +g1,16680:29030814,49800853 +g1,16680:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16680:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16649:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16680:37855564,49800853:1179648,16384,0 ) ) -k1,16649:3078556,49800853:-34777008 +k1,16680:3078556,49800853:-34777008 ) ] -g1,16649:6630773,4812305 -g1,16649:6630773,4812305 -g1,16649:10349285,4812305 -k1,16649:31387653,4812305:21038368 +g1,16680:6630773,4812305 +g1,16680:6630773,4812305 +g1,16680:10349285,4812305 +k1,16680:31387653,4812305:21038368 ) ) ] -[1,16649:6630773,45706769:25952256,40108032,0 -(1,16649:6630773,45706769:25952256,40108032,0 -(1,16649:6630773,45706769:0,0,0 -g1,16649:6630773,45706769 +[1,16680:6630773,45706769:25952256,40108032,0 +(1,16680:6630773,45706769:25952256,40108032,0 +(1,16680:6630773,45706769:0,0,0 +g1,16680:6630773,45706769 ) -[1,16649:6630773,45706769:25952256,40108032,0 -(1,16609:6630773,21040450:25952256,15441713,0 -k1,16609:9874805,21040450:3244032 -(1,16607:9874805,21040450:0,0,0 -g1,16607:9874805,21040450 -g1,16607:9874805,21040450 -g1,16607:9547125,21040450 -(1,16607:9547125,21040450:0,0,0 +[1,16680:6630773,45706769:25952256,40108032,0 +(1,16640:6630773,21040450:25952256,15441713,0 +k1,16640:9874805,21040450:3244032 +(1,16638:9874805,21040450:0,0,0 +g1,16638:9874805,21040450 +g1,16638:9874805,21040450 +g1,16638:9547125,21040450 +(1,16638:9547125,21040450:0,0,0 ) -g1,16607:9874805,21040450 +g1,16638:9874805,21040450 ) -(1,16608:9874805,21040450:19464192,15441713,0 +(1,16639:9874805,21040450:19464192,15441713,0 ) -g1,16609:29338997,21040450 -k1,16609:32583029,21040450:3244032 -) -v1,16612:6630773,22405668:0,393216,0 -(1,16613:6630773,25525323:25952256,3512871,616038 -g1,16613:6630773,25525323 -(1,16613:6630773,25525323:25952256,3512871,616038 -(1,16613:6630773,26141361:25952256,4128909,0 -[1,16613:6630773,26141361:25952256,4128909,0 -(1,16613:6630773,26115147:25952256,4076481,0 -r1,16613:6656987,26115147:26214,4076481,0 -[1,16613:6656987,26115147:25899828,4076481,0 -(1,16613:6656987,25525323:25899828,2896833,0 -[1,16613:7246811,25525323:24720180,2896833,0 -(1,16613:7246811,23715864:24720180,1087374,134348 -k1,16612:8621673,23715864:165159 -k1,16612:9264589,23715864:165159 -k1,16612:10600221,23715864:165159 -k1,16612:12240595,23715864:165159 -k1,16612:14097894,23715864:165159 -k1,16612:17556237,23715864:165159 -k1,16612:19034738,23715864:165159 -k1,16612:22157537,23715864:165159 -k1,16612:24504390,23715864:165159 -k1,16612:26308605,23715864:165160 -k1,16612:27741230,23715864:165159 -k1,16612:28321198,23715864:165125 -k1,16612:29137785,23715864:165159 -k1,16612:30281397,23715864:165159 -k1,16612:30802416,23715864:165159 -k1,16612:31966991,23715864:0 -) -(1,16613:7246811,24557352:24720180,513147,134348 -k1,16612:8371784,24557352:177322 -k1,16612:9879486,24557352:177321 -k1,16612:11075893,24557352:177322 -k1,16612:12491190,24557352:177322 -k1,16612:13284549,24557352:177321 -k1,16612:15347342,24557352:177322 -k1,16612:16914026,24557352:177321 -k1,16612:17622845,24557352:177322 -k1,16612:20987183,24557352:177322 -k1,16612:21780542,24557352:177321 -k1,16612:22976949,24557352:177322 -k1,16612:26777757,24557352:177322 -k1,16612:29064682,24557352:177321 -k1,16612:30572385,24557352:177322 -k1,16612:31966991,24557352:0 -) -(1,16613:7246811,25398840:24720180,513147,126483 -g1,16612:8128925,25398840 -g1,16612:10811969,25398840 -g1,16612:11469295,25398840 -g1,16612:12200021,25398840 -g1,16612:13050678,25398840 -g1,16612:15431601,25398840 -g1,16612:17269885,25398840 -g1,16612:18736580,25398840 -k1,16613:31966991,25398840:12641898 -g1,16613:31966991,25398840 -) -] -) -] -r1,16613:32583029,26115147:26214,4076481,0 -) -] -) -) -g1,16613:32583029,25525323 -) -h1,16613:6630773,26141361:0,0,0 -(1,16616:6630773,28756351:25952256,555811,12975 -(1,16616:6630773,28756351:2450326,534184,12975 -g1,16616:6630773,28756351 -g1,16616:9081099,28756351 -) -k1,16616:32583029,28756351:19891684 -g1,16616:32583029,28756351 -) -(1,16620:6630773,29991055:25952256,513147,134348 -k1,16619:9417786,29991055:252080 -k1,16619:12778185,29991055:252027 -k1,16619:15790641,29991055:252080 -k1,16619:19068518,29991055:252080 -k1,16619:20268249,29991055:252080 -k1,16619:22922879,29991055:252080 -k1,16619:24564322,29991055:252080 -k1,16619:26627817,29991055:252080 -k1,16619:27495935,29991055:252080 -k1,16619:29061357,29991055:252080 -k1,16619:30597943,29991055:252080 -k1,16619:32583029,29991055:0 -) -(1,16620:6630773,30832543:25952256,505283,126483 -k1,16619:7818244,30832543:168386 -k1,16619:9651244,30832543:168386 -k1,16619:13315976,30832543:168386 -k1,16619:16565864,30832543:168386 -k1,16619:19524118,30832543:168386 -(1,16619:19524118,30832543:0,452978,115847 -r1,16619:23047790,30832543:3523672,568825,115847 -k1,16619:19524118,30832543:-3523672 -) -(1,16619:19524118,30832543:3523672,452978,115847 -k1,16619:19524118,30832543:3277 -h1,16619:23044513,30832543:0,411205,112570 -) -k1,16619:23216175,30832543:168385 -k1,16619:24485566,30832543:168386 -k1,16619:25009812,30832543:168386 -k1,16619:27380208,30832543:168386 -k1,16619:28620763,30832543:168386 -k1,16619:31202185,30832543:168386 -k1,16619:32583029,30832543:0 -) -(1,16620:6630773,31674031:25952256,513147,126483 -k1,16619:9628640,31674031:187683 -k1,16619:10467751,31674031:187683 -k1,16619:11939940,31674031:187683 -k1,16619:12794780,31674031:187684 -(1,16619:12794780,31674031:0,452978,115847 -r1,16619:17021876,31674031:4227096,568825,115847 -k1,16619:12794780,31674031:-4227096 -) -(1,16619:12794780,31674031:4227096,452978,115847 -k1,16619:12794780,31674031:3277 -h1,16619:17018599,31674031:0,411205,112570 -) -k1,16619:17209559,31674031:187683 -k1,16619:18588687,31674031:187683 -k1,16619:20518972,31674031:187683 -k1,16619:21863365,31674031:187683 -k1,16619:25344232,31674031:187683 -k1,16619:26144678,31674031:187684 -k1,16619:26688221,31674031:187683 -k1,16619:28474982,31674031:187683 -k1,16619:30056616,31674031:187683 -k1,16619:32583029,31674031:0 -) -(1,16620:6630773,32515519:25952256,513147,134348 -g1,16619:8205603,32515519 -g1,16619:9352483,32515519 -g1,16619:12307501,32515519 -g1,16619:13578899,32515519 -g1,16619:15485996,32515519 -g1,16619:16881912,32515519 -g1,16619:18761484,32515519 -g1,16619:21739440,32515519 -g1,16619:22470166,32515519 -g1,16619:23025255,32515519 -g1,16619:24613847,32515519 -k1,16620:32583029,32515519:5919216 -g1,16620:32583029,32515519 -) -v1,16622:6630773,33705428:0,393216,0 -(1,16628:6630773,38647787:25952256,5335575,196608 -g1,16628:6630773,38647787 -g1,16628:6630773,38647787 -g1,16628:6434165,38647787 -(1,16628:6434165,38647787:0,5335575,196608 -r1,16628:32779637,38647787:26345472,5532183,196608 -k1,16628:6434165,38647787:-26345472 -) -(1,16628:6434165,38647787:26345472,5335575,196608 -[1,16628:6630773,38647787:25952256,5138967,0 -(1,16624:6630773,33919338:25952256,410518,82312 -(1,16623:6630773,33919338:0,0,0 -g1,16623:6630773,33919338 -g1,16623:6630773,33919338 -g1,16623:6303093,33919338 -(1,16623:6303093,33919338:0,0,0 -) -g1,16623:6630773,33919338 -) -g1,16624:8843793,33919338 -g1,16624:9792231,33919338 -g1,16624:19276602,33919338 -g1,16624:21173476,33919338 -g1,16624:21805768,33919338 -h1,16624:22438060,33919338:0,0,0 -k1,16624:32583029,33919338:10144969 -g1,16624:32583029,33919338 -) -(1,16628:6630773,35240876:25952256,410518,101187 -g1,16628:7579210,35240876 -g1,16628:9792230,35240876 -g1,16628:11372959,35240876 -g1,16628:13585979,35240876 -k1,16628:32583029,35240876:14571010 -g1,16628:32583029,35240876 -) -(1,16628:6630773,35907054:25952256,404226,76021 -g1,16628:7579210,35907054 -k1,16628:32583030,35907054:23423092 -g1,16628:32583030,35907054 -) -(1,16628:6630773,36573232:25952256,404226,101187 -g1,16628:7579210,36573232 -g1,16628:7895356,36573232 -g1,16628:10108376,36573232 -g1,16628:10740668,36573232 -k1,16628:32583030,36573232:17732468 -g1,16628:32583030,36573232 -) -(1,16628:6630773,37239410:25952256,404226,107478 -g1,16628:7579210,37239410 -g1,16628:7895356,37239410 -g1,16628:9792230,37239410 -g1,16628:10424522,37239410 -k1,16628:32583029,37239410:17100176 -g1,16628:32583029,37239410 -) -(1,16628:6630773,37905588:25952256,404226,76021 -g1,16628:7579210,37905588 -g1,16628:7895356,37905588 -g1,16628:11689104,37905588 -g1,16628:12321396,37905588 -k1,16628:32583029,37905588:16467885 -g1,16628:32583029,37905588 -) -(1,16628:6630773,38571766:25952256,404226,76021 -g1,16628:7579210,38571766 -k1,16628:32583028,38571766:24687672 -g1,16628:32583028,38571766 -) -] -) -g1,16628:32583029,38647787 -g1,16628:6630773,38647787 -g1,16628:6630773,38647787 -g1,16628:32583029,38647787 -g1,16628:32583029,38647787 -) -h1,16628:6630773,38844395:0,0,0 -v1,16632:6630773,40558033:0,393216,0 -(1,16649:6630773,45510161:25952256,5345344,196608 -g1,16649:6630773,45510161 -g1,16649:6630773,45510161 -g1,16649:6434165,45510161 -(1,16649:6434165,45510161:0,5345344,196608 -r1,16649:32779637,45510161:26345472,5541952,196608 -k1,16649:6434165,45510161:-26345472 -) -(1,16649:6434165,45510161:26345472,5345344,196608 -[1,16649:6630773,45510161:25952256,5148736,0 -(1,16634:6630773,40771943:25952256,410518,6290 -(1,16633:6630773,40771943:0,0,0 -g1,16633:6630773,40771943 -g1,16633:6630773,40771943 -g1,16633:6303093,40771943 -(1,16633:6303093,40771943:0,0,0 -) -g1,16633:6630773,40771943 -) -h1,16634:8527647,40771943:0,0,0 -k1,16634:32583029,40771943:24055382 -g1,16634:32583029,40771943 -) -(1,16648:6630773,41503657:25952256,404226,107478 -(1,16636:6630773,41503657:0,0,0 -g1,16636:6630773,41503657 -g1,16636:6630773,41503657 -g1,16636:6303093,41503657 -(1,16636:6303093,41503657:0,0,0 -) -g1,16636:6630773,41503657 -) -g1,16648:7579210,41503657 -g1,16648:7895356,41503657 -g1,16648:8211502,41503657 -g1,16648:8527648,41503657 -g1,16648:10740668,41503657 -g1,16648:12637542,41503657 -h1,16648:16115144,41503657:0,0,0 -k1,16648:32583029,41503657:16467885 -g1,16648:32583029,41503657 -) -(1,16648:6630773,42169835:25952256,388497,9436 -h1,16648:6630773,42169835:0,0,0 -g1,16648:7579210,42169835 -g1,16648:8211502,42169835 -g1,16648:8527648,42169835 -g1,16648:8843794,42169835 -g1,16648:9159940,42169835 -g1,16648:9476086,42169835 -g1,16648:9792232,42169835 -g1,16648:10108378,42169835 -g1,16648:10740670,42169835 -g1,16648:11056816,42169835 -g1,16648:11372962,42169835 -g1,16648:11689108,42169835 -g1,16648:12005254,42169835 -g1,16648:12637546,42169835 -g1,16648:12953692,42169835 -g1,16648:13269838,42169835 -g1,16648:13585984,42169835 -g1,16648:13902130,42169835 -g1,16648:14218276,42169835 -g1,16648:14534422,42169835 -g1,16648:14850568,42169835 -g1,16648:15166714,42169835 -h1,16648:16115151,42169835:0,0,0 -k1,16648:32583029,42169835:16467878 -g1,16648:32583029,42169835 -) -(1,16648:6630773,42836013:25952256,388497,9436 -h1,16648:6630773,42836013:0,0,0 -g1,16648:7579210,42836013 -g1,16648:8211502,42836013 -g1,16648:8527648,42836013 -g1,16648:8843794,42836013 -g1,16648:9159940,42836013 -g1,16648:9476086,42836013 -g1,16648:9792232,42836013 -g1,16648:10108378,42836013 -g1,16648:10740670,42836013 -g1,16648:11056816,42836013 -g1,16648:11372962,42836013 -g1,16648:11689108,42836013 -g1,16648:12005254,42836013 -g1,16648:12637546,42836013 -g1,16648:12953692,42836013 -g1,16648:13269838,42836013 -g1,16648:13585984,42836013 -g1,16648:13902130,42836013 -g1,16648:14218276,42836013 -g1,16648:14534422,42836013 -g1,16648:14850568,42836013 -g1,16648:15166714,42836013 -h1,16648:16115151,42836013:0,0,0 -k1,16648:32583029,42836013:16467878 -g1,16648:32583029,42836013 -) -(1,16648:6630773,43502191:25952256,388497,9436 -h1,16648:6630773,43502191:0,0,0 -g1,16648:7579210,43502191 -g1,16648:8211502,43502191 -g1,16648:8527648,43502191 -g1,16648:8843794,43502191 -g1,16648:9159940,43502191 -g1,16648:9476086,43502191 -g1,16648:9792232,43502191 -g1,16648:10108378,43502191 -g1,16648:10740670,43502191 -g1,16648:11056816,43502191 -g1,16648:11372962,43502191 -g1,16648:11689108,43502191 -g1,16648:12005254,43502191 -g1,16648:12637546,43502191 -g1,16648:12953692,43502191 -g1,16648:13269838,43502191 -g1,16648:13585984,43502191 -g1,16648:13902130,43502191 -g1,16648:14218276,43502191 -g1,16648:14534422,43502191 -g1,16648:14850568,43502191 -g1,16648:15166714,43502191 -h1,16648:16115151,43502191:0,0,0 -k1,16648:32583029,43502191:16467878 -g1,16648:32583029,43502191 -) -(1,16648:6630773,44168369:25952256,388497,9436 -h1,16648:6630773,44168369:0,0,0 -g1,16648:7579210,44168369 -g1,16648:8211502,44168369 -g1,16648:8527648,44168369 -g1,16648:8843794,44168369 -g1,16648:9159940,44168369 -g1,16648:9476086,44168369 -g1,16648:9792232,44168369 -g1,16648:10108378,44168369 -g1,16648:10740670,44168369 -g1,16648:11056816,44168369 -g1,16648:11372962,44168369 -g1,16648:11689108,44168369 -g1,16648:12005254,44168369 -g1,16648:12637546,44168369 -g1,16648:12953692,44168369 -g1,16648:13269838,44168369 -g1,16648:13585984,44168369 -g1,16648:13902130,44168369 -g1,16648:14218276,44168369 -g1,16648:14534422,44168369 -g1,16648:14850568,44168369 -g1,16648:15166714,44168369 -h1,16648:16115151,44168369:0,0,0 -k1,16648:32583029,44168369:16467878 -g1,16648:32583029,44168369 -) -(1,16648:6630773,44834547:25952256,388497,9436 -h1,16648:6630773,44834547:0,0,0 -g1,16648:7579210,44834547 -g1,16648:8211502,44834547 -g1,16648:8527648,44834547 -g1,16648:8843794,44834547 -g1,16648:9159940,44834547 -g1,16648:9476086,44834547 -g1,16648:9792232,44834547 -g1,16648:10108378,44834547 -g1,16648:10740670,44834547 -g1,16648:11056816,44834547 -g1,16648:11372962,44834547 -g1,16648:11689108,44834547 -g1,16648:12005254,44834547 -g1,16648:12637546,44834547 -g1,16648:12953692,44834547 -g1,16648:13269838,44834547 -g1,16648:13585984,44834547 -g1,16648:13902130,44834547 -g1,16648:14218276,44834547 -g1,16648:14534422,44834547 -g1,16648:14850568,44834547 -g1,16648:15166714,44834547 -h1,16648:16115151,44834547:0,0,0 -k1,16648:32583029,44834547:16467878 -g1,16648:32583029,44834547 -) -(1,16648:6630773,45500725:25952256,404226,9436 -h1,16648:6630773,45500725:0,0,0 -g1,16648:7579210,45500725 -g1,16648:8211502,45500725 -g1,16648:8527648,45500725 -g1,16648:8843794,45500725 -g1,16648:9159940,45500725 -g1,16648:9476086,45500725 -g1,16648:9792232,45500725 -g1,16648:10108378,45500725 -g1,16648:10740670,45500725 -g1,16648:11056816,45500725 -g1,16648:11372962,45500725 -g1,16648:11689108,45500725 -g1,16648:12005254,45500725 -g1,16648:12637546,45500725 -g1,16648:12953692,45500725 -g1,16648:13269838,45500725 -g1,16648:13585984,45500725 -g1,16648:13902130,45500725 -g1,16648:14218276,45500725 -g1,16648:14534422,45500725 -g1,16648:14850568,45500725 -g1,16648:15166714,45500725 -h1,16648:16115151,45500725:0,0,0 -k1,16648:32583029,45500725:16467878 -g1,16648:32583029,45500725 -) -] -) -g1,16649:32583029,45510161 -g1,16649:6630773,45510161 -g1,16649:6630773,45510161 -g1,16649:32583029,45510161 -g1,16649:32583029,45510161 -) -] -(1,16649:32583029,45706769:0,0,0 -g1,16649:32583029,45706769 -) -) -] -(1,16649:6630773,47279633:25952256,0,0 -h1,16649:6630773,47279633:25952256,0,0 -) -] -h1,16649:4262630,4025873:0,0,0 +g1,16640:29338997,21040450 +k1,16640:32583029,21040450:3244032 +) +v1,16643:6630773,22405668:0,393216,0 +(1,16644:6630773,25525323:25952256,3512871,616038 +g1,16644:6630773,25525323 +(1,16644:6630773,25525323:25952256,3512871,616038 +(1,16644:6630773,26141361:25952256,4128909,0 +[1,16644:6630773,26141361:25952256,4128909,0 +(1,16644:6630773,26115147:25952256,4076481,0 +r1,16644:6656987,26115147:26214,4076481,0 +[1,16644:6656987,26115147:25899828,4076481,0 +(1,16644:6656987,25525323:25899828,2896833,0 +[1,16644:7246811,25525323:24720180,2896833,0 +(1,16644:7246811,23715864:24720180,1087374,134348 +k1,16643:8621673,23715864:165159 +k1,16643:9264589,23715864:165159 +k1,16643:10600221,23715864:165159 +k1,16643:12240595,23715864:165159 +k1,16643:14097894,23715864:165159 +k1,16643:17556237,23715864:165159 +k1,16643:19034738,23715864:165159 +k1,16643:22157537,23715864:165159 +k1,16643:24504390,23715864:165159 +k1,16643:26308605,23715864:165160 +k1,16643:27741230,23715864:165159 +k1,16643:28321198,23715864:165125 +k1,16643:29137785,23715864:165159 +k1,16643:30281397,23715864:165159 +k1,16643:30802416,23715864:165159 +k1,16643:31966991,23715864:0 +) +(1,16644:7246811,24557352:24720180,513147,134348 +k1,16643:8371784,24557352:177322 +k1,16643:9879486,24557352:177321 +k1,16643:11075893,24557352:177322 +k1,16643:12491190,24557352:177322 +k1,16643:13284549,24557352:177321 +k1,16643:15347342,24557352:177322 +k1,16643:16914026,24557352:177321 +k1,16643:17622845,24557352:177322 +k1,16643:20987183,24557352:177322 +k1,16643:21780542,24557352:177321 +k1,16643:22976949,24557352:177322 +k1,16643:26777757,24557352:177322 +k1,16643:29064682,24557352:177321 +k1,16643:30572385,24557352:177322 +k1,16643:31966991,24557352:0 +) +(1,16644:7246811,25398840:24720180,513147,126483 +g1,16643:8128925,25398840 +g1,16643:10811969,25398840 +g1,16643:11469295,25398840 +g1,16643:12200021,25398840 +g1,16643:13050678,25398840 +g1,16643:15431601,25398840 +g1,16643:17269885,25398840 +g1,16643:18736580,25398840 +k1,16644:31966991,25398840:12641898 +g1,16644:31966991,25398840 +) +] +) +] +r1,16644:32583029,26115147:26214,4076481,0 +) +] +) +) +g1,16644:32583029,25525323 +) +h1,16644:6630773,26141361:0,0,0 +(1,16647:6630773,28756351:25952256,555811,12975 +(1,16647:6630773,28756351:2450326,534184,12975 +g1,16647:6630773,28756351 +g1,16647:9081099,28756351 +) +k1,16647:32583029,28756351:19891684 +g1,16647:32583029,28756351 +) +(1,16651:6630773,29991055:25952256,513147,134348 +k1,16650:9417786,29991055:252080 +k1,16650:12778185,29991055:252027 +k1,16650:15790641,29991055:252080 +k1,16650:19068518,29991055:252080 +k1,16650:20268249,29991055:252080 +k1,16650:22922879,29991055:252080 +k1,16650:24564322,29991055:252080 +k1,16650:26627817,29991055:252080 +k1,16650:27495935,29991055:252080 +k1,16650:29061357,29991055:252080 +k1,16650:30597943,29991055:252080 +k1,16650:32583029,29991055:0 +) +(1,16651:6630773,30832543:25952256,505283,126483 +k1,16650:7818244,30832543:168386 +k1,16650:9651244,30832543:168386 +k1,16650:13315976,30832543:168386 +k1,16650:16565864,30832543:168386 +k1,16650:19524118,30832543:168386 +(1,16650:19524118,30832543:0,452978,115847 +r1,16650:23047790,30832543:3523672,568825,115847 +k1,16650:19524118,30832543:-3523672 +) +(1,16650:19524118,30832543:3523672,452978,115847 +k1,16650:19524118,30832543:3277 +h1,16650:23044513,30832543:0,411205,112570 +) +k1,16650:23216175,30832543:168385 +k1,16650:24485566,30832543:168386 +k1,16650:25009812,30832543:168386 +k1,16650:27380208,30832543:168386 +k1,16650:28620763,30832543:168386 +k1,16650:31202185,30832543:168386 +k1,16650:32583029,30832543:0 +) +(1,16651:6630773,31674031:25952256,513147,126483 +k1,16650:9628640,31674031:187683 +k1,16650:10467751,31674031:187683 +k1,16650:11939940,31674031:187683 +k1,16650:12794780,31674031:187684 +(1,16650:12794780,31674031:0,452978,115847 +r1,16650:17021876,31674031:4227096,568825,115847 +k1,16650:12794780,31674031:-4227096 +) +(1,16650:12794780,31674031:4227096,452978,115847 +k1,16650:12794780,31674031:3277 +h1,16650:17018599,31674031:0,411205,112570 +) +k1,16650:17209559,31674031:187683 +k1,16650:18588687,31674031:187683 +k1,16650:20518972,31674031:187683 +k1,16650:21863365,31674031:187683 +k1,16650:25344232,31674031:187683 +k1,16650:26144678,31674031:187684 +k1,16650:26688221,31674031:187683 +k1,16650:28474982,31674031:187683 +k1,16650:30056616,31674031:187683 +k1,16650:32583029,31674031:0 +) +(1,16651:6630773,32515519:25952256,513147,134348 +g1,16650:8205603,32515519 +g1,16650:9352483,32515519 +g1,16650:12307501,32515519 +g1,16650:13578899,32515519 +g1,16650:15485996,32515519 +g1,16650:16881912,32515519 +g1,16650:18761484,32515519 +g1,16650:21739440,32515519 +g1,16650:22470166,32515519 +g1,16650:23025255,32515519 +g1,16650:24613847,32515519 +k1,16651:32583029,32515519:5919216 +g1,16651:32583029,32515519 +) +v1,16653:6630773,33705428:0,393216,0 +(1,16659:6630773,38647787:25952256,5335575,196608 +g1,16659:6630773,38647787 +g1,16659:6630773,38647787 +g1,16659:6434165,38647787 +(1,16659:6434165,38647787:0,5335575,196608 +r1,16659:32779637,38647787:26345472,5532183,196608 +k1,16659:6434165,38647787:-26345472 +) +(1,16659:6434165,38647787:26345472,5335575,196608 +[1,16659:6630773,38647787:25952256,5138967,0 +(1,16655:6630773,33919338:25952256,410518,82312 +(1,16654:6630773,33919338:0,0,0 +g1,16654:6630773,33919338 +g1,16654:6630773,33919338 +g1,16654:6303093,33919338 +(1,16654:6303093,33919338:0,0,0 +) +g1,16654:6630773,33919338 +) +g1,16655:8843793,33919338 +g1,16655:9792231,33919338 +g1,16655:19276602,33919338 +g1,16655:21173476,33919338 +g1,16655:21805768,33919338 +h1,16655:22438060,33919338:0,0,0 +k1,16655:32583029,33919338:10144969 +g1,16655:32583029,33919338 +) +(1,16659:6630773,35240876:25952256,410518,101187 +g1,16659:7579210,35240876 +g1,16659:9792230,35240876 +g1,16659:11372959,35240876 +g1,16659:13585979,35240876 +k1,16659:32583029,35240876:14571010 +g1,16659:32583029,35240876 +) +(1,16659:6630773,35907054:25952256,404226,76021 +g1,16659:7579210,35907054 +k1,16659:32583030,35907054:23423092 +g1,16659:32583030,35907054 +) +(1,16659:6630773,36573232:25952256,404226,101187 +g1,16659:7579210,36573232 +g1,16659:7895356,36573232 +g1,16659:10108376,36573232 +g1,16659:10740668,36573232 +k1,16659:32583030,36573232:17732468 +g1,16659:32583030,36573232 +) +(1,16659:6630773,37239410:25952256,404226,107478 +g1,16659:7579210,37239410 +g1,16659:7895356,37239410 +g1,16659:9792230,37239410 +g1,16659:10424522,37239410 +k1,16659:32583029,37239410:17100176 +g1,16659:32583029,37239410 +) +(1,16659:6630773,37905588:25952256,404226,76021 +g1,16659:7579210,37905588 +g1,16659:7895356,37905588 +g1,16659:11689104,37905588 +g1,16659:12321396,37905588 +k1,16659:32583029,37905588:16467885 +g1,16659:32583029,37905588 +) +(1,16659:6630773,38571766:25952256,404226,76021 +g1,16659:7579210,38571766 +k1,16659:32583028,38571766:24687672 +g1,16659:32583028,38571766 +) +] +) +g1,16659:32583029,38647787 +g1,16659:6630773,38647787 +g1,16659:6630773,38647787 +g1,16659:32583029,38647787 +g1,16659:32583029,38647787 +) +h1,16659:6630773,38844395:0,0,0 +v1,16663:6630773,40558033:0,393216,0 +(1,16680:6630773,45510161:25952256,5345344,196608 +g1,16680:6630773,45510161 +g1,16680:6630773,45510161 +g1,16680:6434165,45510161 +(1,16680:6434165,45510161:0,5345344,196608 +r1,16680:32779637,45510161:26345472,5541952,196608 +k1,16680:6434165,45510161:-26345472 +) +(1,16680:6434165,45510161:26345472,5345344,196608 +[1,16680:6630773,45510161:25952256,5148736,0 +(1,16665:6630773,40771943:25952256,410518,6290 +(1,16664:6630773,40771943:0,0,0 +g1,16664:6630773,40771943 +g1,16664:6630773,40771943 +g1,16664:6303093,40771943 +(1,16664:6303093,40771943:0,0,0 +) +g1,16664:6630773,40771943 +) +h1,16665:8527647,40771943:0,0,0 +k1,16665:32583029,40771943:24055382 +g1,16665:32583029,40771943 +) +(1,16679:6630773,41503657:25952256,404226,107478 +(1,16667:6630773,41503657:0,0,0 +g1,16667:6630773,41503657 +g1,16667:6630773,41503657 +g1,16667:6303093,41503657 +(1,16667:6303093,41503657:0,0,0 +) +g1,16667:6630773,41503657 +) +g1,16679:7579210,41503657 +g1,16679:7895356,41503657 +g1,16679:8211502,41503657 +g1,16679:8527648,41503657 +g1,16679:10740668,41503657 +g1,16679:12637542,41503657 +h1,16679:16115144,41503657:0,0,0 +k1,16679:32583029,41503657:16467885 +g1,16679:32583029,41503657 +) +(1,16679:6630773,42169835:25952256,388497,9436 +h1,16679:6630773,42169835:0,0,0 +g1,16679:7579210,42169835 +g1,16679:8211502,42169835 +g1,16679:8527648,42169835 +g1,16679:8843794,42169835 +g1,16679:9159940,42169835 +g1,16679:9476086,42169835 +g1,16679:9792232,42169835 +g1,16679:10108378,42169835 +g1,16679:10740670,42169835 +g1,16679:11056816,42169835 +g1,16679:11372962,42169835 +g1,16679:11689108,42169835 +g1,16679:12005254,42169835 +g1,16679:12637546,42169835 +g1,16679:12953692,42169835 +g1,16679:13269838,42169835 +g1,16679:13585984,42169835 +g1,16679:13902130,42169835 +g1,16679:14218276,42169835 +g1,16679:14534422,42169835 +g1,16679:14850568,42169835 +g1,16679:15166714,42169835 +h1,16679:16115151,42169835:0,0,0 +k1,16679:32583029,42169835:16467878 +g1,16679:32583029,42169835 +) +(1,16679:6630773,42836013:25952256,388497,9436 +h1,16679:6630773,42836013:0,0,0 +g1,16679:7579210,42836013 +g1,16679:8211502,42836013 +g1,16679:8527648,42836013 +g1,16679:8843794,42836013 +g1,16679:9159940,42836013 +g1,16679:9476086,42836013 +g1,16679:9792232,42836013 +g1,16679:10108378,42836013 +g1,16679:10740670,42836013 +g1,16679:11056816,42836013 +g1,16679:11372962,42836013 +g1,16679:11689108,42836013 +g1,16679:12005254,42836013 +g1,16679:12637546,42836013 +g1,16679:12953692,42836013 +g1,16679:13269838,42836013 +g1,16679:13585984,42836013 +g1,16679:13902130,42836013 +g1,16679:14218276,42836013 +g1,16679:14534422,42836013 +g1,16679:14850568,42836013 +g1,16679:15166714,42836013 +h1,16679:16115151,42836013:0,0,0 +k1,16679:32583029,42836013:16467878 +g1,16679:32583029,42836013 +) +(1,16679:6630773,43502191:25952256,388497,9436 +h1,16679:6630773,43502191:0,0,0 +g1,16679:7579210,43502191 +g1,16679:8211502,43502191 +g1,16679:8527648,43502191 +g1,16679:8843794,43502191 +g1,16679:9159940,43502191 +g1,16679:9476086,43502191 +g1,16679:9792232,43502191 +g1,16679:10108378,43502191 +g1,16679:10740670,43502191 +g1,16679:11056816,43502191 +g1,16679:11372962,43502191 +g1,16679:11689108,43502191 +g1,16679:12005254,43502191 +g1,16679:12637546,43502191 +g1,16679:12953692,43502191 +g1,16679:13269838,43502191 +g1,16679:13585984,43502191 +g1,16679:13902130,43502191 +g1,16679:14218276,43502191 +g1,16679:14534422,43502191 +g1,16679:14850568,43502191 +g1,16679:15166714,43502191 +h1,16679:16115151,43502191:0,0,0 +k1,16679:32583029,43502191:16467878 +g1,16679:32583029,43502191 +) +(1,16679:6630773,44168369:25952256,388497,9436 +h1,16679:6630773,44168369:0,0,0 +g1,16679:7579210,44168369 +g1,16679:8211502,44168369 +g1,16679:8527648,44168369 +g1,16679:8843794,44168369 +g1,16679:9159940,44168369 +g1,16679:9476086,44168369 +g1,16679:9792232,44168369 +g1,16679:10108378,44168369 +g1,16679:10740670,44168369 +g1,16679:11056816,44168369 +g1,16679:11372962,44168369 +g1,16679:11689108,44168369 +g1,16679:12005254,44168369 +g1,16679:12637546,44168369 +g1,16679:12953692,44168369 +g1,16679:13269838,44168369 +g1,16679:13585984,44168369 +g1,16679:13902130,44168369 +g1,16679:14218276,44168369 +g1,16679:14534422,44168369 +g1,16679:14850568,44168369 +g1,16679:15166714,44168369 +h1,16679:16115151,44168369:0,0,0 +k1,16679:32583029,44168369:16467878 +g1,16679:32583029,44168369 +) +(1,16679:6630773,44834547:25952256,388497,9436 +h1,16679:6630773,44834547:0,0,0 +g1,16679:7579210,44834547 +g1,16679:8211502,44834547 +g1,16679:8527648,44834547 +g1,16679:8843794,44834547 +g1,16679:9159940,44834547 +g1,16679:9476086,44834547 +g1,16679:9792232,44834547 +g1,16679:10108378,44834547 +g1,16679:10740670,44834547 +g1,16679:11056816,44834547 +g1,16679:11372962,44834547 +g1,16679:11689108,44834547 +g1,16679:12005254,44834547 +g1,16679:12637546,44834547 +g1,16679:12953692,44834547 +g1,16679:13269838,44834547 +g1,16679:13585984,44834547 +g1,16679:13902130,44834547 +g1,16679:14218276,44834547 +g1,16679:14534422,44834547 +g1,16679:14850568,44834547 +g1,16679:15166714,44834547 +h1,16679:16115151,44834547:0,0,0 +k1,16679:32583029,44834547:16467878 +g1,16679:32583029,44834547 +) +(1,16679:6630773,45500725:25952256,404226,9436 +h1,16679:6630773,45500725:0,0,0 +g1,16679:7579210,45500725 +g1,16679:8211502,45500725 +g1,16679:8527648,45500725 +g1,16679:8843794,45500725 +g1,16679:9159940,45500725 +g1,16679:9476086,45500725 +g1,16679:9792232,45500725 +g1,16679:10108378,45500725 +g1,16679:10740670,45500725 +g1,16679:11056816,45500725 +g1,16679:11372962,45500725 +g1,16679:11689108,45500725 +g1,16679:12005254,45500725 +g1,16679:12637546,45500725 +g1,16679:12953692,45500725 +g1,16679:13269838,45500725 +g1,16679:13585984,45500725 +g1,16679:13902130,45500725 +g1,16679:14218276,45500725 +g1,16679:14534422,45500725 +g1,16679:14850568,45500725 +g1,16679:15166714,45500725 +h1,16679:16115151,45500725:0,0,0 +k1,16679:32583029,45500725:16467878 +g1,16679:32583029,45500725 +) +] +) +g1,16680:32583029,45510161 +g1,16680:6630773,45510161 +g1,16680:6630773,45510161 +g1,16680:32583029,45510161 +g1,16680:32583029,45510161 +) +] +(1,16680:32583029,45706769:0,0,0 +g1,16680:32583029,45706769 +) +) +] +(1,16680:6630773,47279633:25952256,0,0 +h1,16680:6630773,47279633:25952256,0,0 +) +] +h1,16680:4262630,4025873:0,0,0 ] !16584 }324 -Input:2500:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2501:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2502:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2503:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 +Input:2497:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2498:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2499:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2500:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {325 -[1,16712:4262630,47279633:28320399,43253760,0 -(1,16712:4262630,4025873:0,0,0 -[1,16712:-473657,4025873:25952256,0,0 -(1,16712:-473657,-710414:25952256,0,0 -h1,16712:-473657,-710414:0,0,0 -(1,16712:-473657,-710414:0,0,0 -(1,16712:-473657,-710414:0,0,0 -g1,16712:-473657,-710414 -(1,16712:-473657,-710414:65781,0,65781 -g1,16712:-407876,-710414 -[1,16712:-407876,-644633:0,0,0 +[1,16743:4262630,47279633:28320399,43253760,0 +(1,16743:4262630,4025873:0,0,0 +[1,16743:-473657,4025873:25952256,0,0 +(1,16743:-473657,-710414:25952256,0,0 +h1,16743:-473657,-710414:0,0,0 +(1,16743:-473657,-710414:0,0,0 +(1,16743:-473657,-710414:0,0,0 +g1,16743:-473657,-710414 +(1,16743:-473657,-710414:65781,0,65781 +g1,16743:-407876,-710414 +[1,16743:-407876,-644633:0,0,0 ] ) -k1,16712:-473657,-710414:-65781 +k1,16743:-473657,-710414:-65781 ) ) -k1,16712:25478599,-710414:25952256 -g1,16712:25478599,-710414 +k1,16743:25478599,-710414:25952256 +g1,16743:25478599,-710414 ) ] ) -[1,16712:6630773,47279633:25952256,43253760,0 -[1,16712:6630773,4812305:25952256,786432,0 -(1,16712:6630773,4812305:25952256,505283,126483 -(1,16712:6630773,4812305:25952256,505283,126483 -g1,16712:3078558,4812305 -[1,16712:3078558,4812305:0,0,0 -(1,16712:3078558,2439708:0,1703936,0 -k1,16712:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16712: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,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16743:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16712:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16743:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16712:3078558,4812305:0,0,0 -(1,16712:3078558,2439708:0,1703936,0 -g1,16712:29030814,2439708 -g1,16712:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16712: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,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16743:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16712:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16743:37855564,2439708:1179648,16384,0 ) ) -k1,16712:3078556,2439708:-34777008 +k1,16743:3078556,2439708:-34777008 ) ] -[1,16712:3078558,4812305:0,0,0 -(1,16712:3078558,49800853:0,16384,2228224 -k1,16712:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16712: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,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16743:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16712:3078558,51504789:16384,1179648,0 -) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 -) -] -) -) -) -] -[1,16712:3078558,4812305:0,0,0 -(1,16712:3078558,49800853:0,16384,2228224 -g1,16712:29030814,49800853 -g1,16712:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16712:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16712:37855564,49800853:1179648,16384,0 -) -) -k1,16712:3078556,49800853:-34777008 -) -] -g1,16712:6630773,4812305 -k1,16712:25146660,4812305:17320510 -g1,16712:26880087,4812305 -g1,16712:29193507,4812305 -g1,16712:30603186,4812305 -) -) -] -[1,16712:6630773,45706769:25952256,40108032,0 -(1,16712:6630773,45706769:25952256,40108032,0 -(1,16712:6630773,45706769:0,0,0 -g1,16712:6630773,45706769 -) -[1,16712:6630773,45706769:25952256,40108032,0 -v1,16649:6630773,6254097:0,393216,0 -(1,16649:6630773,8469685:25952256,2608804,196608 -g1,16649:6630773,8469685 -g1,16649:6630773,8469685 -g1,16649:6434165,8469685 -(1,16649:6434165,8469685:0,2608804,196608 -r1,16649:32779637,8469685:26345472,2805412,196608 -k1,16649:6434165,8469685:-26345472 -) -(1,16649:6434165,8469685:26345472,2608804,196608 -[1,16649:6630773,8469685:25952256,2412196,0 -(1,16648:6630773,6461715:25952256,404226,9436 -h1,16648:6630773,6461715:0,0,0 -g1,16648:7579210,6461715 -g1,16648:8211502,6461715 -g1,16648:8527648,6461715 -g1,16648:8843794,6461715 -g1,16648:9159940,6461715 -g1,16648:9476086,6461715 -g1,16648:9792232,6461715 -g1,16648:10108378,6461715 -g1,16648:10740670,6461715 -g1,16648:11056816,6461715 -g1,16648:11372962,6461715 -g1,16648:11689108,6461715 -g1,16648:12005254,6461715 -g1,16648:12637546,6461715 -g1,16648:12953692,6461715 -g1,16648:13269838,6461715 -g1,16648:13585984,6461715 -g1,16648:13902130,6461715 -g1,16648:14218276,6461715 -g1,16648:14534422,6461715 -g1,16648:14850568,6461715 -g1,16648:15166714,6461715 -h1,16648:16115151,6461715:0,0,0 -k1,16648:32583029,6461715:16467878 -g1,16648:32583029,6461715 -) -(1,16648:6630773,7127893:25952256,404226,9436 -h1,16648:6630773,7127893:0,0,0 -g1,16648:7579210,7127893 -g1,16648:8211502,7127893 -g1,16648:8527648,7127893 -g1,16648:8843794,7127893 -g1,16648:9159940,7127893 -g1,16648:9476086,7127893 -g1,16648:9792232,7127893 -g1,16648:10108378,7127893 -g1,16648:10740670,7127893 -g1,16648:11056816,7127893 -g1,16648:11372962,7127893 -g1,16648:11689108,7127893 -g1,16648:12005254,7127893 -g1,16648:12637546,7127893 -g1,16648:12953692,7127893 -g1,16648:13269838,7127893 -g1,16648:13585984,7127893 -g1,16648:13902130,7127893 -g1,16648:14218276,7127893 -g1,16648:14534422,7127893 -g1,16648:14850568,7127893 -g1,16648:15166714,7127893 -h1,16648:16115151,7127893:0,0,0 -k1,16648:32583029,7127893:16467878 -g1,16648:32583029,7127893 -) -(1,16648:6630773,7794071:25952256,404226,9436 -h1,16648:6630773,7794071:0,0,0 -g1,16648:7579210,7794071 -g1,16648:8211502,7794071 -g1,16648:8527648,7794071 -g1,16648:8843794,7794071 -g1,16648:9159940,7794071 -g1,16648:9476086,7794071 -g1,16648:9792232,7794071 -g1,16648:10108378,7794071 -g1,16648:10740670,7794071 -g1,16648:11056816,7794071 -g1,16648:11372962,7794071 -g1,16648:11689108,7794071 -g1,16648:12005254,7794071 -g1,16648:12637546,7794071 -g1,16648:12953692,7794071 -g1,16648:13269838,7794071 -g1,16648:13585984,7794071 -g1,16648:13902130,7794071 -g1,16648:14218276,7794071 -g1,16648:14534422,7794071 -g1,16648:14850568,7794071 -g1,16648:15166714,7794071 -h1,16648:16115151,7794071:0,0,0 -k1,16648:32583029,7794071:16467878 -g1,16648:32583029,7794071 -) -(1,16648:6630773,8460249:25952256,404226,9436 -h1,16648:6630773,8460249:0,0,0 -g1,16648:7579210,8460249 -g1,16648:8527647,8460249 -g1,16648:8843793,8460249 -g1,16648:9159939,8460249 -g1,16648:9476085,8460249 -g1,16648:9792231,8460249 -g1,16648:10740668,8460249 -g1,16648:11056814,8460249 -g1,16648:11372960,8460249 -g1,16648:11689106,8460249 -g1,16648:12005252,8460249 -g1,16648:12637544,8460249 -g1,16648:12953690,8460249 -g1,16648:13269836,8460249 -g1,16648:13585982,8460249 -g1,16648:13902128,8460249 -g1,16648:14218274,8460249 -g1,16648:14534420,8460249 -g1,16648:14850566,8460249 -g1,16648:15166712,8460249 -h1,16648:16115149,8460249:0,0,0 -k1,16648:32583029,8460249:16467880 -g1,16648:32583029,8460249 -) -] -) -g1,16649:32583029,8469685 -g1,16649:6630773,8469685 -g1,16649:6630773,8469685 -g1,16649:32583029,8469685 -g1,16649:32583029,8469685 -) -h1,16649:6630773,8666293:0,0,0 -(1,16655:6630773,10032069:25952256,513147,115847 -h1,16652:6630773,10032069:983040,0,0 -g1,16652:10602910,10032069 -(1,16652:10602910,10032069:0,452978,115847 -r1,16652:14478294,10032069:3875384,568825,115847 -k1,16652:10602910,10032069:-3875384 -) -(1,16652:10602910,10032069:3875384,452978,115847 -k1,16652:10602910,10032069:3277 -h1,16652:14475017,10032069:0,411205,112570 -) -g1,16652:14677523,10032069 -g1,16652:16821861,10032069 -g1,16652:17376950,10032069 -g1,16652:18965542,10032069 -g1,16652:21041067,10032069 -g1,16652:22507762,10032069 -g1,16652:23477694,10032069 -g1,16652:25044659,10032069 -g1,16652:26400598,10032069 -g1,16653:26400598,10032069 -k1,16655:32583029,10032069:6182431 -g1,16655:32583029,10032069 -) -(1,16656:6630773,12839637:25952256,32768,229376 -(1,16656:6630773,12839637:0,32768,229376 -(1,16656:6630773,12839637:5505024,32768,229376 -r1,16656:12135797,12839637:5505024,262144,229376 -) -k1,16656:6630773,12839637:-5505024 -) -(1,16656:6630773,12839637:25952256,32768,0 -r1,16656:32583029,12839637:25952256,32768,0 -) -) -(1,16656:6630773,14443965:25952256,615776,14155 -(1,16656:6630773,14443965:2464678,582746,14155 -g1,16656:6630773,14443965 -g1,16656:9095451,14443965 -) -g1,16656:13174674,14443965 -k1,16656:32583029,14443965:15943335 -g1,16656:32583029,14443965 -) -(1,16660:6630773,15678669:25952256,513147,134348 -k1,16659:8618897,15678669:155737 -k1,16659:9766194,15678669:155737 -k1,16659:11094370,15678669:155737 -k1,16659:14012450,15678669:155737 -k1,16659:18985739,15678669:155737 -k1,16659:22051931,15678669:155738 -k1,16659:23155319,15678669:155737 -k1,16659:26482999,15678669:155737 -k1,16659:28028099,15678669:155737 -k1,16659:29995251,15678669:155737 -k1,16659:31718609,15678669:155737 -k1,16660:32583029,15678669:0 -) -(1,16660:6630773,16520157:25952256,505283,134348 -k1,16659:7857249,16520157:175934 -k1,16659:11117307,16520157:175934 -k1,16659:14365570,16520157:175935 -k1,16659:16035070,16520157:175934 -k1,16659:16897166,16520157:175934 -k1,16659:18444769,16520157:175934 -k1,16659:21698274,16520157:175934 -k1,16659:23489015,16520157:175934 -k1,16659:24776441,16520157:175935 -k1,16659:26149062,16520157:175934 -k1,16659:29139112,16520157:175934 -k1,16659:32583029,16520157:0 -) -(1,16660:6630773,17361645:25952256,513147,134348 -k1,16659:7400317,17361645:238047 -k1,16659:10218516,17361645:238047 -k1,16659:13083901,17361645:238047 -k1,16659:16080358,17361645:238047 -k1,16659:16934443,17361645:238047 -k1,16659:18606418,17361645:238047 -k1,16659:19432979,17361645:238048 -k1,16659:20862471,17361645:238047 -k1,16659:23680670,17361645:238047 -k1,16659:26144974,17361645:238047 -k1,16659:26914518,17361645:238047 -k1,16659:27508425,17361645:238047 -k1,16659:29665366,17361645:238047 -k1,16660:32583029,17361645:0 -) -(1,16660:6630773,18203133:25952256,513147,134348 -k1,16659:7872327,18203133:216571 -k1,16659:11334896,18203133:216571 -k1,16659:12179302,18203133:216571 -k1,16659:13414959,18203133:216572 -k1,16659:14998611,18203133:216571 -k1,16659:15874474,18203133:216571 -k1,16659:17404387,18203133:216571 -k1,16659:19432373,18203133:216571 -k1,16659:21042895,18203133:216571 -k1,16659:22279863,18203133:216572 -k1,16659:25160473,18203133:216571 -k1,16659:26036336,18203133:216571 -k1,16659:29337031,18203133:216571 -k1,16659:32583029,18203133:0 -) -(1,16660:6630773,19044621:25952256,513147,134348 -g1,16659:9855799,19044621 -g1,16659:11622649,19044621 -g1,16659:14449216,19044621 -g1,16659:16088271,19044621 -g1,16659:16938928,19044621 -g1,16659:17885923,19044621 -g1,16659:19735349,19044621 -g1,16659:22019934,19044621 -g1,16659:23661610,19044621 -g1,16659:25604752,19044621 -g1,16659:27371602,19044621 -k1,16660:32583029,19044621:2811500 -g1,16660:32583029,19044621 -) -(1,16661:6630773,21135881:25952256,564462,147783 -(1,16661:6630773,21135881:2899444,534184,12975 -g1,16661:6630773,21135881 -g1,16661:9530217,21135881 -) -k1,16661:32583030,21135881:19978192 -g1,16661:32583030,21135881 -) -(1,16666:6630773,22370585:25952256,513147,134348 -k1,16665:9956624,22370585:205682 -k1,16665:10778344,22370585:205682 -k1,16665:13564179,22370585:205683 -k1,16665:16397199,22370585:205682 -k1,16665:18284535,22370585:205682 -k1,16665:19235361,22370585:205682 -k1,16665:20092472,22370585:205683 -k1,16665:22479848,22370585:205682 -k1,16665:24074893,22370585:205682 -k1,16665:25848196,22370585:205682 -k1,16665:27367221,22370585:205683 -k1,16665:29384318,22370585:205682 -k1,16665:30351528,22370585:205682 -k1,16665:32583029,22370585:0 -) -(1,16666:6630773,23212073:25952256,505283,134348 -k1,16665:9932346,23212073:217449 -k1,16665:12704387,23212073:217448 -k1,16665:16167834,23212073:217449 -k1,16665:19365859,23212073:217448 -k1,16665:20915655,23212073:217449 -k1,16665:22873740,23212073:217449 -k1,16665:24696164,23212073:217448 -k1,16665:26968166,23212073:217449 -k1,16665:29341749,23212073:217448 -k1,16665:31718609,23212073:217449 -k1,16666:32583029,23212073:0 -) -(1,16666:6630773,24053561:25952256,513147,134348 -k1,16665:8333660,24053561:148373 -k1,16665:9673479,24053561:148374 -k1,16665:10177712,24053561:148373 -k1,16665:13021582,24053561:148374 -k1,16665:14117606,24053561:148373 -k1,16665:16523694,24053561:148373 -k1,16665:18061431,24053561:148374 -k1,16665:19477270,24053561:148373 -k1,16665:20938986,24053561:148374 -k1,16665:22481310,24053561:148373 -k1,16665:25140367,24053561:148373 -k1,16665:27222053,24053561:148374 -k1,16665:28021854,24053561:148373 -k1,16665:29502575,24053561:148374 -k1,16665:31391584,24053561:148373 -k1,16666:32583029,24053561:0 -) -(1,16666:6630773,24895049:25952256,513147,126483 -k1,16665:8409517,24895049:173768 -k1,16665:8998102,24895049:173742 -k1,16665:12704916,24895049:173768 -k1,16665:13897768,24895049:173767 -k1,16665:15164021,24895049:173768 -k1,16665:15997081,24895049:173768 -k1,16665:17867575,24895049:173767 -k1,16665:21067140,24895049:173768 -k1,16665:21856946,24895049:173768 -k1,16665:23817881,24895049:173768 -k1,16665:24607686,24895049:173767 -k1,16665:25800539,24895049:173768 -k1,16665:26423858,24895049:173742 -k1,16665:28131824,24895049:173768 -k1,16666:32583029,24895049:0 -) -(1,16666:6630773,25736537:25952256,513147,126483 -k1,16665:9447088,25736537:276140 -k1,16665:10541118,25736537:276141 -k1,16665:11173118,25736537:276140 -k1,16665:13573935,25736537:276140 -k1,16665:16685163,25736537:276141 -k1,16665:17829655,25736537:276140 -k1,16665:19198280,25736537:276140 -k1,16665:22169916,25736537:276140 -(1,16665:22169916,25736537:0,452978,115847 -r1,16665:26045300,25736537:3875384,568825,115847 -k1,16665:22169916,25736537:-3875384 -) -(1,16665:22169916,25736537:3875384,452978,115847 -k1,16665:22169916,25736537:3277 -h1,16665:26042023,25736537:0,411205,112570 -) -k1,16665:26321441,25736537:276141 -k1,16665:27249009,25736537:276140 -k1,16665:28937450,25736537:276140 -k1,16665:29569451,25736537:276141 -k1,16665:31426319,25736537:276140 -k1,16665:32583029,25736537:0 -) -(1,16666:6630773,26578025:25952256,513147,134348 -k1,16665:8669729,26578025:227541 -k1,16665:9253130,26578025:227541 -k1,16665:10613789,26578025:227541 -k1,16665:12524294,26578025:227540 -k1,16665:13876433,26578025:227541 -k1,16665:15497925,26578025:227541 -k1,16665:16744551,26578025:227541 -k1,16665:18406020,26578025:227541 -k1,16665:20977784,26578025:227541 -k1,16665:23539062,26578025:227541 -k1,16665:24433759,26578025:227541 -k1,16665:26257100,26578025:227540 -k1,16665:27438190,26578025:227541 -k1,16665:29960802,26578025:227541 -k1,16665:31563944,26578025:227541 -k1,16665:32583029,26578025:0 -) -(1,16666:6630773,27419513:25952256,513147,134348 -k1,16665:8108189,27419513:171283 -k1,16665:9176005,27419513:171283 -k1,16665:10881486,27419513:171283 -k1,16665:12244214,27419513:171283 -k1,16665:14212494,27419513:171283 -k1,16665:17096968,27419513:171283 -k1,16665:17927542,27419513:171282 -k1,16665:19117910,27419513:171283 -k1,16665:20678556,27419513:171283 -k1,16665:22899805,27419513:171283 -k1,16665:26051665,27419513:171283 -k1,16665:26578808,27419513:171283 -k1,16665:29132980,27419513:171283 -k1,16665:30698214,27419513:171283 -k1,16665:32583029,27419513:0 -) -(1,16666:6630773,28261001:25952256,505283,126483 -g1,16665:8715473,28261001 -g1,16665:11433906,28261001 -g1,16665:12319297,28261001 -k1,16666:32583029,28261001:17469932 -g1,16666:32583029,28261001 -) -v1,16668:6630773,29451467:0,393216,0 -(1,16686:6630773,36922939:25952256,7864688,196608 -g1,16686:6630773,36922939 -g1,16686:6630773,36922939 -g1,16686:6434165,36922939 -(1,16686:6434165,36922939:0,7864688,196608 -r1,16686:32779637,36922939:26345472,8061296,196608 -k1,16686:6434165,36922939:-26345472 -) -(1,16686:6434165,36922939:26345472,7864688,196608 -[1,16686:6630773,36922939:25952256,7668080,0 -(1,16670:6630773,29665377:25952256,410518,101187 -(1,16669:6630773,29665377:0,0,0 -g1,16669:6630773,29665377 -g1,16669:6630773,29665377 -g1,16669:6303093,29665377 -(1,16669:6303093,29665377:0,0,0 -) -g1,16669:6630773,29665377 -) -g1,16670:10108376,29665377 -g1,16670:11056814,29665377 -g1,16670:15799000,29665377 -g1,16670:16431292,29665377 -g1,16670:23702643,29665377 -g1,16670:28128683,29665377 -g1,16670:28760975,29665377 -h1,16670:30341704,29665377:0,0,0 -k1,16670:32583029,29665377:2241325 -g1,16670:32583029,29665377 -) -(1,16674:6630773,30986915:25952256,410518,107478 -g1,16674:7579210,30986915 -g1,16674:11372958,30986915 -g1,16674:12953687,30986915 -k1,16674:32583029,30986915:18048614 -g1,16674:32583029,30986915 -) -(1,16675:6630773,32177381:25952256,410518,101187 -(1,16674:6630773,32177381:0,0,0 -g1,16674:6630773,32177381 -g1,16674:6630773,32177381 -g1,16674:6303093,32177381 -(1,16674:6303093,32177381:0,0,0 -) -g1,16674:6630773,32177381 -) -k1,16675:6630773,32177381:0 -g1,16675:11689105,32177381 -g1,16675:13902127,32177381 -h1,16675:15166709,32177381:0,0,0 -k1,16675:32583029,32177381:17416320 -g1,16675:32583029,32177381 -) -(1,16685:6630773,32843559:25952256,404226,101187 -(1,16677:6630773,32843559:0,0,0 -g1,16677:6630773,32843559 -g1,16677:6630773,32843559 -g1,16677:6303093,32843559 -(1,16677:6303093,32843559:0,0,0 -) -g1,16677:6630773,32843559 -) -g1,16685:7579210,32843559 -g1,16685:7895356,32843559 -g1,16685:8211502,32843559 -g1,16685:10108376,32843559 -g1,16685:10424522,32843559 -g1,16685:10740668,32843559 -g1,16685:11056814,32843559 -g1,16685:11372960,32843559 -g1,16685:11689106,32843559 -g1,16685:12005252,32843559 -g1,16685:13902126,32843559 -g1,16685:17063583,32843559 -g1,16685:19276603,32843559 -g1,16685:20541186,32843559 -g1,16685:23070352,32843559 -h1,16685:26864100,32843559:0,0,0 -k1,16685:32583029,32843559:5718929 -g1,16685:32583029,32843559 -) -(1,16685:6630773,33509737:25952256,404226,82312 -h1,16685:6630773,33509737:0,0,0 -g1,16685:7579210,33509737 -g1,16685:8211502,33509737 -g1,16685:8527648,33509737 -g1,16685:8843794,33509737 -g1,16685:9159940,33509737 -g1,16685:9476086,33509737 -g1,16685:10108378,33509737 -g1,16685:12953690,33509737 -g1,16685:13902127,33509737 -g1,16685:14218273,33509737 -g1,16685:14534419,33509737 -g1,16685:14850565,33509737 -g1,16685:15166711,33509737 -g1,16685:15482857,33509737 -g1,16685:15799003,33509737 -g1,16685:16115149,33509737 -g1,16685:16431295,33509737 -g1,16685:17063587,33509737 -g1,16685:17379733,33509737 -g1,16685:17695879,33509737 -g1,16685:18012025,33509737 -g1,16685:18328171,33509737 -g1,16685:18644317,33509737 -g1,16685:19276609,33509737 -g1,16685:19592755,33509737 -g1,16685:20541192,33509737 -g1,16685:20857338,33509737 -g1,16685:21173484,33509737 -g1,16685:21489630,33509737 -g1,16685:21805776,33509737 -g1,16685:22121922,33509737 -g1,16685:22438068,33509737 -g1,16685:23070360,33509737 -g1,16685:23386506,33509737 -h1,16685:26864108,33509737:0,0,0 -k1,16685:32583029,33509737:5718921 -g1,16685:32583029,33509737 -) -(1,16685:6630773,34175915:25952256,404226,82312 -h1,16685:6630773,34175915:0,0,0 -g1,16685:7579210,34175915 -g1,16685:8211502,34175915 -g1,16685:8527648,34175915 -g1,16685:8843794,34175915 -g1,16685:9159940,34175915 -g1,16685:9476086,34175915 -g1,16685:10108378,34175915 -g1,16685:12953690,34175915 -g1,16685:13902127,34175915 -g1,16685:14218273,34175915 -g1,16685:14534419,34175915 -g1,16685:14850565,34175915 -g1,16685:15166711,34175915 -g1,16685:15482857,34175915 -g1,16685:15799003,34175915 -g1,16685:16115149,34175915 -g1,16685:16431295,34175915 -g1,16685:17063587,34175915 -g1,16685:17379733,34175915 -g1,16685:17695879,34175915 -g1,16685:18012025,34175915 -g1,16685:18328171,34175915 -g1,16685:18644317,34175915 -g1,16685:19276609,34175915 -g1,16685:19592755,34175915 -g1,16685:20541192,34175915 -g1,16685:20857338,34175915 -g1,16685:21173484,34175915 -g1,16685:21489630,34175915 -g1,16685:21805776,34175915 -g1,16685:22121922,34175915 -g1,16685:22438068,34175915 -g1,16685:23070360,34175915 -g1,16685:23386506,34175915 -h1,16685:26864108,34175915:0,0,0 -k1,16685:32583029,34175915:5718921 -g1,16685:32583029,34175915 -) -(1,16685:6630773,34842093:25952256,404226,82312 -h1,16685:6630773,34842093:0,0,0 -g1,16685:7579210,34842093 -g1,16685:8211502,34842093 -g1,16685:8527648,34842093 -g1,16685:8843794,34842093 -g1,16685:9159940,34842093 -g1,16685:9476086,34842093 -g1,16685:10108378,34842093 -g1,16685:12953690,34842093 -g1,16685:13902127,34842093 -g1,16685:14218273,34842093 -g1,16685:14534419,34842093 -g1,16685:14850565,34842093 -g1,16685:15166711,34842093 -g1,16685:15482857,34842093 -g1,16685:15799003,34842093 -g1,16685:16115149,34842093 -g1,16685:16431295,34842093 -g1,16685:17063587,34842093 -g1,16685:17379733,34842093 -g1,16685:17695879,34842093 -g1,16685:18012025,34842093 -g1,16685:18328171,34842093 -g1,16685:18644317,34842093 -g1,16685:19276609,34842093 -g1,16685:20541192,34842093 -g1,16685:20857338,34842093 -g1,16685:21173484,34842093 -g1,16685:21489630,34842093 -g1,16685:21805776,34842093 -g1,16685:22121922,34842093 -g1,16685:22438068,34842093 -g1,16685:23070360,34842093 -g1,16685:23386506,34842093 -h1,16685:26864108,34842093:0,0,0 -k1,16685:32583029,34842093:5718921 -g1,16685:32583029,34842093 -) -(1,16685:6630773,35508271:25952256,404226,82312 -h1,16685:6630773,35508271:0,0,0 -g1,16685:7579210,35508271 -g1,16685:8211502,35508271 -g1,16685:8527648,35508271 -g1,16685:8843794,35508271 -g1,16685:9159940,35508271 -g1,16685:9476086,35508271 -g1,16685:10108378,35508271 -g1,16685:12953690,35508271 -g1,16685:13902127,35508271 -g1,16685:14218273,35508271 -g1,16685:14534419,35508271 -g1,16685:14850565,35508271 -g1,16685:15166711,35508271 -g1,16685:15482857,35508271 -g1,16685:15799003,35508271 -g1,16685:16115149,35508271 -g1,16685:16431295,35508271 -g1,16685:17063587,35508271 -g1,16685:17379733,35508271 -g1,16685:17695879,35508271 -g1,16685:18012025,35508271 -g1,16685:18328171,35508271 -g1,16685:18644317,35508271 -g1,16685:19276609,35508271 -g1,16685:20541192,35508271 -g1,16685:20857338,35508271 -g1,16685:21173484,35508271 -g1,16685:21489630,35508271 -g1,16685:21805776,35508271 -g1,16685:22121922,35508271 -g1,16685:22438068,35508271 -g1,16685:23070360,35508271 -g1,16685:23386506,35508271 -h1,16685:26864108,35508271:0,0,0 -k1,16685:32583029,35508271:5718921 -g1,16685:32583029,35508271 -) -(1,16685:6630773,36174449:25952256,404226,82312 -h1,16685:6630773,36174449:0,0,0 -g1,16685:7579210,36174449 -g1,16685:8211502,36174449 -g1,16685:8527648,36174449 -g1,16685:8843794,36174449 -g1,16685:9159940,36174449 -g1,16685:9476086,36174449 -g1,16685:10108378,36174449 -g1,16685:12953690,36174449 -g1,16685:13902127,36174449 -g1,16685:14218273,36174449 -g1,16685:14534419,36174449 -g1,16685:14850565,36174449 -g1,16685:15166711,36174449 -g1,16685:15482857,36174449 -g1,16685:15799003,36174449 -g1,16685:16115149,36174449 -g1,16685:16431295,36174449 -g1,16685:17063587,36174449 -g1,16685:17379733,36174449 -g1,16685:17695879,36174449 -g1,16685:18012025,36174449 -g1,16685:18328171,36174449 -g1,16685:18644317,36174449 -g1,16685:19276609,36174449 -g1,16685:20541192,36174449 -g1,16685:20857338,36174449 -g1,16685:21173484,36174449 -g1,16685:21489630,36174449 -g1,16685:21805776,36174449 -g1,16685:22121922,36174449 -g1,16685:22438068,36174449 -g1,16685:23070360,36174449 -g1,16685:23386506,36174449 -h1,16685:26864108,36174449:0,0,0 -k1,16685:32583029,36174449:5718921 -g1,16685:32583029,36174449 -) -(1,16685:6630773,36840627:25952256,404226,82312 -h1,16685:6630773,36840627:0,0,0 -g1,16685:7579210,36840627 -g1,16685:8211502,36840627 -g1,16685:8527648,36840627 -g1,16685:8843794,36840627 -g1,16685:9159940,36840627 -g1,16685:9476086,36840627 -g1,16685:10108378,36840627 -g1,16685:12953690,36840627 -g1,16685:13902127,36840627 -g1,16685:14218273,36840627 -g1,16685:14534419,36840627 -g1,16685:14850565,36840627 -g1,16685:15166711,36840627 -g1,16685:15482857,36840627 -g1,16685:15799003,36840627 -g1,16685:16115149,36840627 -g1,16685:16431295,36840627 -g1,16685:17063587,36840627 -g1,16685:17379733,36840627 -g1,16685:17695879,36840627 -g1,16685:18012025,36840627 -g1,16685:18328171,36840627 -g1,16685:18644317,36840627 -g1,16685:19276609,36840627 -g1,16685:20541192,36840627 -g1,16685:20857338,36840627 -g1,16685:21173484,36840627 -g1,16685:21489630,36840627 -g1,16685:21805776,36840627 -g1,16685:22121922,36840627 -g1,16685:22438068,36840627 -g1,16685:23070360,36840627 -g1,16685:23386506,36840627 -h1,16685:26864108,36840627:0,0,0 -k1,16685:32583029,36840627:5718921 -g1,16685:32583029,36840627 -) -] -) -g1,16686:32583029,36922939 -g1,16686:6630773,36922939 -g1,16686:6630773,36922939 -g1,16686:32583029,36922939 -g1,16686:32583029,36922939 -) -h1,16686:6630773,37119547:0,0,0 -(1,16690:6630773,38485323:25952256,513147,134348 -h1,16689:6630773,38485323:983040,0,0 -g1,16689:8300630,38485323 -g1,16689:10741190,38485323 -g1,16689:13775506,38485323 -g1,16689:15177976,38485323 -g1,16689:16802613,38485323 -g1,16689:18395793,38485323 -g1,16689:18950882,38485323 -g1,16689:21274788,38485323 -(1,16689:21274788,38485323:0,414482,115847 -r1,16689:22688189,38485323:1413401,530329,115847 -k1,16689:21274788,38485323:-1413401 -) -(1,16689:21274788,38485323:1413401,414482,115847 -k1,16689:21274788,38485323:3277 -h1,16689:22684912,38485323:0,411205,112570 -) -g1,16689:22887418,38485323 -g1,16689:24069687,38485323 -g1,16689:26080331,38485323 -g1,16689:27076478,38485323 -g1,16689:28958672,38485323 -k1,16690:32583029,38485323:2326089 -g1,16690:32583029,38485323 -) -v1,16692:6630773,39675789:0,393216,0 -(1,16706:6630773,45294095:25952256,6011522,196608 -g1,16706:6630773,45294095 -g1,16706:6630773,45294095 -g1,16706:6434165,45294095 -(1,16706:6434165,45294095:0,6011522,196608 -r1,16706:32779637,45294095:26345472,6208130,196608 -k1,16706:6434165,45294095:-26345472 -) -(1,16706:6434165,45294095:26345472,6011522,196608 -[1,16706:6630773,45294095:25952256,5814914,0 -(1,16694:6630773,39889699:25952256,410518,101187 -(1,16693:6630773,39889699:0,0,0 -g1,16693:6630773,39889699 -g1,16693:6630773,39889699 -g1,16693:6303093,39889699 -(1,16693:6303093,39889699:0,0,0 -) -g1,16693:6630773,39889699 -) -g1,16694:10108376,39889699 -g1,16694:11056814,39889699 -g1,16694:15799000,39889699 -g1,16694:16431292,39889699 -g1,16694:23702643,39889699 -g1,16694:28128683,39889699 -g1,16694:28760975,39889699 -h1,16694:30341704,39889699:0,0,0 -k1,16694:32583029,39889699:2241325 -g1,16694:32583029,39889699 -) -(1,16695:6630773,40555877:25952256,410518,76021 -h1,16695:6630773,40555877:0,0,0 -k1,16695:6630773,40555877:0 -h1,16695:11689104,40555877:0,0,0 -k1,16695:32583028,40555877:20893924 -g1,16695:32583028,40555877 -) -(1,16705:6630773,41287591:25952256,379060,7863 -(1,16697:6630773,41287591:0,0,0 -g1,16697:6630773,41287591 -g1,16697:6630773,41287591 -g1,16697:6303093,41287591 -(1,16697:6303093,41287591:0,0,0 -) -g1,16697:6630773,41287591 -) -g1,16705:7579210,41287591 -g1,16705:7895356,41287591 -g1,16705:8211502,41287591 -g1,16705:10740668,41287591 -h1,16705:12637542,41287591:0,0,0 -k1,16705:32583030,41287591:19945488 -g1,16705:32583030,41287591 -) -(1,16705:6630773,41953769:25952256,404226,9436 -h1,16705:6630773,41953769:0,0,0 -g1,16705:7579210,41953769 -g1,16705:8211502,41953769 -g1,16705:8527648,41953769 -g1,16705:8843794,41953769 -g1,16705:9159940,41953769 -g1,16705:9476086,41953769 -g1,16705:10740669,41953769 -g1,16705:11056815,41953769 -h1,16705:12637543,41953769:0,0,0 -k1,16705:32583029,41953769:19945486 -g1,16705:32583029,41953769 -) -(1,16705:6630773,42619947:25952256,404226,9436 -h1,16705:6630773,42619947:0,0,0 -g1,16705:7579210,42619947 -g1,16705:8211502,42619947 -g1,16705:8527648,42619947 -g1,16705:8843794,42619947 -g1,16705:9159940,42619947 -g1,16705:9476086,42619947 -g1,16705:10740669,42619947 -g1,16705:11056815,42619947 -h1,16705:12637543,42619947:0,0,0 -k1,16705:32583029,42619947:19945486 -g1,16705:32583029,42619947 -) -(1,16705:6630773,43286125:25952256,404226,9436 -h1,16705:6630773,43286125:0,0,0 -g1,16705:7579210,43286125 -g1,16705:8211502,43286125 -g1,16705:8527648,43286125 -g1,16705:8843794,43286125 -g1,16705:9159940,43286125 -g1,16705:9476086,43286125 -g1,16705:10740669,43286125 -g1,16705:11056815,43286125 -h1,16705:12637543,43286125:0,0,0 -k1,16705:32583029,43286125:19945486 -g1,16705:32583029,43286125 -) -(1,16705:6630773,43952303:25952256,404226,9436 -h1,16705:6630773,43952303:0,0,0 -g1,16705:7579210,43952303 -g1,16705:8211502,43952303 -g1,16705:8527648,43952303 -g1,16705:8843794,43952303 -g1,16705:9159940,43952303 -g1,16705:9476086,43952303 -g1,16705:10740669,43952303 -g1,16705:11056815,43952303 -h1,16705:12637543,43952303:0,0,0 -k1,16705:32583029,43952303:19945486 -g1,16705:32583029,43952303 -) -(1,16705:6630773,44618481:25952256,404226,9436 -h1,16705:6630773,44618481:0,0,0 -g1,16705:7579210,44618481 -g1,16705:8211502,44618481 -g1,16705:8527648,44618481 -g1,16705:8843794,44618481 -g1,16705:9159940,44618481 -g1,16705:9476086,44618481 -g1,16705:10740669,44618481 -g1,16705:11056815,44618481 -h1,16705:12637543,44618481:0,0,0 -k1,16705:32583029,44618481:19945486 -g1,16705:32583029,44618481 -) -(1,16705:6630773,45284659:25952256,404226,9436 -h1,16705:6630773,45284659:0,0,0 -g1,16705:7579210,45284659 -g1,16705:8211502,45284659 -g1,16705:8527648,45284659 -g1,16705:8843794,45284659 -g1,16705:9159940,45284659 -g1,16705:9476086,45284659 -g1,16705:10740669,45284659 -g1,16705:11056815,45284659 -h1,16705:12637543,45284659:0,0,0 -k1,16705:32583029,45284659:19945486 -g1,16705:32583029,45284659 -) -] -) -g1,16706:32583029,45294095 -g1,16706:6630773,45294095 -g1,16706:6630773,45294095 -g1,16706:32583029,45294095 -g1,16706:32583029,45294095 -) -h1,16706:6630773,45490703:0,0,0 -] -(1,16712:32583029,45706769:0,0,0 -g1,16712:32583029,45706769 -) -) -] -(1,16712:6630773,47279633:25952256,0,0 -h1,16712:6630773,47279633:25952256,0,0 -) -] -h1,16712:4262630,4025873:0,0,0 -] -!28602 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16743:3078558,51504789:16384,1179648,0 +) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 +) +] +) +) +) +] +[1,16743:3078558,4812305:0,0,0 +(1,16743:3078558,49800853:0,16384,2228224 +g1,16743:29030814,49800853 +g1,16743:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16743:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16743:37855564,49800853:1179648,16384,0 +) +) +k1,16743:3078556,49800853:-34777008 +) +] +g1,16743:6630773,4812305 +k1,16743:25146660,4812305:17320510 +g1,16743:26880087,4812305 +g1,16743:29193507,4812305 +g1,16743:30603186,4812305 +) +) +] +[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,16743:6630773,45706769:25952256,40108032,0 +v1,16680:6630773,6254097:0,393216,0 +(1,16680:6630773,8469685:25952256,2608804,196608 +g1,16680:6630773,8469685 +g1,16680:6630773,8469685 +g1,16680:6434165,8469685 +(1,16680:6434165,8469685:0,2608804,196608 +r1,16680:32779637,8469685:26345472,2805412,196608 +k1,16680:6434165,8469685:-26345472 +) +(1,16680:6434165,8469685:26345472,2608804,196608 +[1,16680:6630773,8469685:25952256,2412196,0 +(1,16679:6630773,6461715:25952256,404226,9436 +h1,16679:6630773,6461715:0,0,0 +g1,16679:7579210,6461715 +g1,16679:8211502,6461715 +g1,16679:8527648,6461715 +g1,16679:8843794,6461715 +g1,16679:9159940,6461715 +g1,16679:9476086,6461715 +g1,16679:9792232,6461715 +g1,16679:10108378,6461715 +g1,16679:10740670,6461715 +g1,16679:11056816,6461715 +g1,16679:11372962,6461715 +g1,16679:11689108,6461715 +g1,16679:12005254,6461715 +g1,16679:12637546,6461715 +g1,16679:12953692,6461715 +g1,16679:13269838,6461715 +g1,16679:13585984,6461715 +g1,16679:13902130,6461715 +g1,16679:14218276,6461715 +g1,16679:14534422,6461715 +g1,16679:14850568,6461715 +g1,16679:15166714,6461715 +h1,16679:16115151,6461715:0,0,0 +k1,16679:32583029,6461715:16467878 +g1,16679:32583029,6461715 +) +(1,16679:6630773,7127893:25952256,404226,9436 +h1,16679:6630773,7127893:0,0,0 +g1,16679:7579210,7127893 +g1,16679:8211502,7127893 +g1,16679:8527648,7127893 +g1,16679:8843794,7127893 +g1,16679:9159940,7127893 +g1,16679:9476086,7127893 +g1,16679:9792232,7127893 +g1,16679:10108378,7127893 +g1,16679:10740670,7127893 +g1,16679:11056816,7127893 +g1,16679:11372962,7127893 +g1,16679:11689108,7127893 +g1,16679:12005254,7127893 +g1,16679:12637546,7127893 +g1,16679:12953692,7127893 +g1,16679:13269838,7127893 +g1,16679:13585984,7127893 +g1,16679:13902130,7127893 +g1,16679:14218276,7127893 +g1,16679:14534422,7127893 +g1,16679:14850568,7127893 +g1,16679:15166714,7127893 +h1,16679:16115151,7127893:0,0,0 +k1,16679:32583029,7127893:16467878 +g1,16679:32583029,7127893 +) +(1,16679:6630773,7794071:25952256,404226,9436 +h1,16679:6630773,7794071:0,0,0 +g1,16679:7579210,7794071 +g1,16679:8211502,7794071 +g1,16679:8527648,7794071 +g1,16679:8843794,7794071 +g1,16679:9159940,7794071 +g1,16679:9476086,7794071 +g1,16679:9792232,7794071 +g1,16679:10108378,7794071 +g1,16679:10740670,7794071 +g1,16679:11056816,7794071 +g1,16679:11372962,7794071 +g1,16679:11689108,7794071 +g1,16679:12005254,7794071 +g1,16679:12637546,7794071 +g1,16679:12953692,7794071 +g1,16679:13269838,7794071 +g1,16679:13585984,7794071 +g1,16679:13902130,7794071 +g1,16679:14218276,7794071 +g1,16679:14534422,7794071 +g1,16679:14850568,7794071 +g1,16679:15166714,7794071 +h1,16679:16115151,7794071:0,0,0 +k1,16679:32583029,7794071:16467878 +g1,16679:32583029,7794071 +) +(1,16679:6630773,8460249:25952256,404226,9436 +h1,16679:6630773,8460249:0,0,0 +g1,16679:7579210,8460249 +g1,16679:8527647,8460249 +g1,16679:8843793,8460249 +g1,16679:9159939,8460249 +g1,16679:9476085,8460249 +g1,16679:9792231,8460249 +g1,16679:10740668,8460249 +g1,16679:11056814,8460249 +g1,16679:11372960,8460249 +g1,16679:11689106,8460249 +g1,16679:12005252,8460249 +g1,16679:12637544,8460249 +g1,16679:12953690,8460249 +g1,16679:13269836,8460249 +g1,16679:13585982,8460249 +g1,16679:13902128,8460249 +g1,16679:14218274,8460249 +g1,16679:14534420,8460249 +g1,16679:14850566,8460249 +g1,16679:15166712,8460249 +h1,16679:16115149,8460249:0,0,0 +k1,16679:32583029,8460249:16467880 +g1,16679:32583029,8460249 +) +] +) +g1,16680:32583029,8469685 +g1,16680:6630773,8469685 +g1,16680:6630773,8469685 +g1,16680:32583029,8469685 +g1,16680:32583029,8469685 +) +h1,16680:6630773,8666293:0,0,0 +(1,16686:6630773,10032069:25952256,513147,115847 +h1,16683:6630773,10032069:983040,0,0 +g1,16683:10602910,10032069 +(1,16683:10602910,10032069:0,452978,115847 +r1,16683:14478294,10032069:3875384,568825,115847 +k1,16683:10602910,10032069:-3875384 +) +(1,16683:10602910,10032069:3875384,452978,115847 +k1,16683:10602910,10032069:3277 +h1,16683:14475017,10032069:0,411205,112570 +) +g1,16683:14677523,10032069 +g1,16683:16821861,10032069 +g1,16683:17376950,10032069 +g1,16683:18965542,10032069 +g1,16683:21041067,10032069 +g1,16683:22507762,10032069 +g1,16683:23477694,10032069 +g1,16683:25044659,10032069 +g1,16683:26400598,10032069 +g1,16684:26400598,10032069 +k1,16686:32583029,10032069:6182431 +g1,16686:32583029,10032069 +) +(1,16687:6630773,12839637:25952256,32768,229376 +(1,16687:6630773,12839637:0,32768,229376 +(1,16687:6630773,12839637:5505024,32768,229376 +r1,16687:12135797,12839637:5505024,262144,229376 +) +k1,16687:6630773,12839637:-5505024 +) +(1,16687:6630773,12839637:25952256,32768,0 +r1,16687:32583029,12839637:25952256,32768,0 +) +) +(1,16687:6630773,14443965:25952256,615776,14155 +(1,16687:6630773,14443965:2464678,582746,14155 +g1,16687:6630773,14443965 +g1,16687:9095451,14443965 +) +g1,16687:13174674,14443965 +k1,16687:32583029,14443965:15943335 +g1,16687:32583029,14443965 +) +(1,16691:6630773,15678669:25952256,513147,134348 +k1,16690:8720913,15678669:257753 +k1,16690:9970226,15678669:257753 +k1,16690:11400417,15678669:257752 +k1,16690:14420513,15678669:257753 +k1,16690:19495818,15678669:257753 +k1,16690:22664025,15678669:257753 +k1,16690:23869429,15678669:257753 +k1,16690:27299124,15678669:257752 +k1,16690:28946240,15678669:257753 +k1,16690:31015408,15678669:257753 +k1,16690:32583029,15678669:0 +) +(1,16691:6630773,16520157:25952256,505283,134348 +k1,16690:8592444,16520157:259701 +k1,16690:11936269,16520157:259701 +k1,16690:15268298,16520157:259701 +k1,16690:17021565,16520157:259701 +k1,16690:17967428,16520157:259701 +k1,16690:19598799,16520157:259702 +k1,16690:22936071,16520157:259701 +k1,16690:24810579,16520157:259701 +k1,16690:26181771,16520157:259701 +k1,16690:27638159,16520157:259701 +k1,16690:30711976,16520157:259701 +k1,16691:32583029,16520157:0 +) +(1,16691:6630773,17361645:25952256,513147,134348 +k1,16690:8621663,17361645:205034 +k1,16690:9358194,17361645:205034 +k1,16690:12143381,17361645:205035 +k1,16690:14975753,17361645:205034 +k1,16690:17939197,17361645:205034 +k1,16690:18760269,17361645:205034 +k1,16690:20399232,17361645:205035 +k1,16690:21192779,17361645:205034 +k1,16690:22589258,17361645:205034 +k1,16690:25374444,17361645:205034 +k1,16690:27805735,17361645:205034 +k1,16690:28542267,17361645:205035 +k1,16690:29103161,17361645:205034 +k1,16690:31227089,17361645:205034 +k1,16691:32583029,17361645:0 +) +(1,16691:6630773,18203133:25952256,513147,126483 +k1,16690:9462331,18203133:244852 +k1,16690:12953182,18203133:244853 +k1,16690:13825869,18203133:244852 +k1,16690:15089807,18203133:244853 +k1,16690:16701740,18203133:244852 +k1,16690:17605885,18203133:244853 +k1,16690:19164079,18203133:244852 +k1,16690:21220347,18203133:244853 +k1,16690:22859150,18203133:244852 +k1,16690:24124399,18203133:244853 +k1,16690:27033290,18203133:244852 +k1,16690:27937435,18203133:244853 +k1,16690:31266411,18203133:244852 +k1,16691:32583029,18203133:0 +) +(1,16691:6630773,19044621:25952256,513147,134348 +g1,16690:8972374,19044621 +g1,16690:12197400,19044621 +g1,16690:13964250,19044621 +g1,16690:16790817,19044621 +g1,16690:18429872,19044621 +g1,16690:19280529,19044621 +g1,16690:20227524,19044621 +g1,16690:22076950,19044621 +g1,16690:24361535,19044621 +g1,16690:26003211,19044621 +g1,16690:27946353,19044621 +g1,16690:29713203,19044621 +k1,16691:32583029,19044621:469899 +g1,16691:32583029,19044621 +) +(1,16692:6630773,21135881:25952256,564462,147783 +(1,16692:6630773,21135881:2899444,534184,12975 +g1,16692:6630773,21135881 +g1,16692:9530217,21135881 +) +k1,16692:32583030,21135881:19978192 +g1,16692:32583030,21135881 +) +(1,16697:6630773,22370585:25952256,513147,134348 +k1,16696:9956624,22370585:205682 +k1,16696:10778344,22370585:205682 +k1,16696:13564179,22370585:205683 +k1,16696:16397199,22370585:205682 +k1,16696:18284535,22370585:205682 +k1,16696:19235361,22370585:205682 +k1,16696:20092472,22370585:205683 +k1,16696:22479848,22370585:205682 +k1,16696:24074893,22370585:205682 +k1,16696:25848196,22370585:205682 +k1,16696:27367221,22370585:205683 +k1,16696:29384318,22370585:205682 +k1,16696:30351528,22370585:205682 +k1,16696:32583029,22370585:0 +) +(1,16697:6630773,23212073:25952256,505283,134348 +k1,16696:9890861,23212073:175964 +k1,16696:12621419,23212073:175965 +k1,16696:16043381,23212073:175964 +k1,16696:19199922,23212073:175964 +k1,16696:20708233,23212073:175964 +k1,16696:22624834,23212073:175965 +k1,16696:24405774,23212073:175964 +k1,16696:26636291,23212073:175964 +k1,16696:28968391,23212073:175965 +k1,16696:31303766,23212073:175964 +k1,16697:32583029,23212073:0 +) +(1,16697:6630773,24053561:25952256,513147,134348 +k1,16696:7946474,24053561:176030 +k1,16696:9313948,24053561:176029 +k1,16696:9845838,24053561:176030 +k1,16696:12717363,24053561:176029 +k1,16696:13841044,24053561:176030 +k1,16696:16274789,24053561:176030 +k1,16696:17840181,24053561:176029 +k1,16696:19283677,24053561:176030 +k1,16696:20773048,24053561:176029 +k1,16696:22343029,24053561:176030 +k1,16696:25029743,24053561:176030 +k1,16696:27139084,24053561:176029 +k1,16696:27966542,24053561:176030 +k1,16696:29474918,24053561:176029 +k1,16696:31391584,24053561:176030 +k1,16697:32583029,24053561:0 +) +(1,16697:6630773,24895049:25952256,513147,126483 +k1,16696:8409517,24895049:173768 +k1,16696:8998102,24895049:173742 +k1,16696:12704916,24895049:173768 +k1,16696:13897768,24895049:173767 +k1,16696:15164021,24895049:173768 +k1,16696:15997081,24895049:173768 +k1,16696:17867575,24895049:173767 +k1,16696:21067140,24895049:173768 +k1,16696:21856946,24895049:173768 +k1,16696:23817881,24895049:173768 +k1,16696:24607686,24895049:173767 +k1,16696:25800539,24895049:173768 +k1,16696:26423858,24895049:173742 +k1,16696:28131824,24895049:173768 +k1,16697:32583029,24895049:0 +) +(1,16697:6630773,25736537:25952256,513147,126483 +k1,16696:9447088,25736537:276140 +k1,16696:10541118,25736537:276141 +k1,16696:11173118,25736537:276140 +k1,16696:13573935,25736537:276140 +k1,16696:16685163,25736537:276141 +k1,16696:17829655,25736537:276140 +k1,16696:19198280,25736537:276140 +k1,16696:22169916,25736537:276140 +(1,16696:22169916,25736537:0,452978,115847 +r1,16696:26045300,25736537:3875384,568825,115847 +k1,16696:22169916,25736537:-3875384 +) +(1,16696:22169916,25736537:3875384,452978,115847 +k1,16696:22169916,25736537:3277 +h1,16696:26042023,25736537:0,411205,112570 +) +k1,16696:26321441,25736537:276141 +k1,16696:27249009,25736537:276140 +k1,16696:28937450,25736537:276140 +k1,16696:29569451,25736537:276141 +k1,16696:31426319,25736537:276140 +k1,16696:32583029,25736537:0 +) +(1,16697:6630773,26578025:25952256,513147,134348 +k1,16696:8669729,26578025:227541 +k1,16696:9253130,26578025:227541 +k1,16696:10613789,26578025:227541 +k1,16696:12524294,26578025:227540 +k1,16696:13876433,26578025:227541 +k1,16696:15497925,26578025:227541 +k1,16696:16744551,26578025:227541 +k1,16696:18406020,26578025:227541 +k1,16696:20977784,26578025:227541 +k1,16696:23539062,26578025:227541 +k1,16696:24433759,26578025:227541 +k1,16696:26257100,26578025:227540 +k1,16696:27438190,26578025:227541 +k1,16696:29960802,26578025:227541 +k1,16696:31563944,26578025:227541 +k1,16696:32583029,26578025:0 +) +(1,16697:6630773,27419513:25952256,513147,134348 +k1,16696:8108189,27419513:171283 +k1,16696:9176005,27419513:171283 +k1,16696:10881486,27419513:171283 +k1,16696:12244214,27419513:171283 +k1,16696:14212494,27419513:171283 +k1,16696:17096968,27419513:171283 +k1,16696:17927542,27419513:171282 +k1,16696:19117910,27419513:171283 +k1,16696:20678556,27419513:171283 +k1,16696:22899805,27419513:171283 +k1,16696:26051665,27419513:171283 +k1,16696:26578808,27419513:171283 +k1,16696:29132980,27419513:171283 +k1,16696:30698214,27419513:171283 +k1,16696:32583029,27419513:0 +) +(1,16697:6630773,28261001:25952256,505283,126483 +g1,16696:8715473,28261001 +g1,16696:11433906,28261001 +g1,16696:12319297,28261001 +k1,16697:32583029,28261001:17469932 +g1,16697:32583029,28261001 +) +v1,16699:6630773,29451467:0,393216,0 +(1,16717:6630773,36922939:25952256,7864688,196608 +g1,16717:6630773,36922939 +g1,16717:6630773,36922939 +g1,16717:6434165,36922939 +(1,16717:6434165,36922939:0,7864688,196608 +r1,16717:32779637,36922939:26345472,8061296,196608 +k1,16717:6434165,36922939:-26345472 +) +(1,16717:6434165,36922939:26345472,7864688,196608 +[1,16717:6630773,36922939:25952256,7668080,0 +(1,16701:6630773,29665377:25952256,410518,101187 +(1,16700:6630773,29665377:0,0,0 +g1,16700:6630773,29665377 +g1,16700:6630773,29665377 +g1,16700:6303093,29665377 +(1,16700:6303093,29665377:0,0,0 +) +g1,16700:6630773,29665377 +) +g1,16701:10108376,29665377 +g1,16701:11056814,29665377 +g1,16701:15799000,29665377 +g1,16701:16431292,29665377 +g1,16701:23702643,29665377 +g1,16701:28128683,29665377 +g1,16701:28760975,29665377 +h1,16701:30341704,29665377:0,0,0 +k1,16701:32583029,29665377:2241325 +g1,16701:32583029,29665377 +) +(1,16705:6630773,30986915:25952256,410518,107478 +g1,16705:7579210,30986915 +g1,16705:11372958,30986915 +g1,16705:12953687,30986915 +k1,16705:32583029,30986915:18048614 +g1,16705:32583029,30986915 +) +(1,16706:6630773,32177381:25952256,410518,101187 +(1,16705:6630773,32177381:0,0,0 +g1,16705:6630773,32177381 +g1,16705:6630773,32177381 +g1,16705:6303093,32177381 +(1,16705:6303093,32177381:0,0,0 +) +g1,16705:6630773,32177381 +) +k1,16706:6630773,32177381:0 +g1,16706:11689105,32177381 +g1,16706:13902127,32177381 +h1,16706:15166709,32177381:0,0,0 +k1,16706:32583029,32177381:17416320 +g1,16706:32583029,32177381 +) +(1,16716:6630773,32843559:25952256,404226,101187 +(1,16708:6630773,32843559:0,0,0 +g1,16708:6630773,32843559 +g1,16708:6630773,32843559 +g1,16708:6303093,32843559 +(1,16708:6303093,32843559:0,0,0 +) +g1,16708:6630773,32843559 +) +g1,16716:7579210,32843559 +g1,16716:7895356,32843559 +g1,16716:8211502,32843559 +g1,16716:10108376,32843559 +g1,16716:10424522,32843559 +g1,16716:10740668,32843559 +g1,16716:11056814,32843559 +g1,16716:11372960,32843559 +g1,16716:11689106,32843559 +g1,16716:12005252,32843559 +g1,16716:13902126,32843559 +g1,16716:17063583,32843559 +g1,16716:19276603,32843559 +g1,16716:20541186,32843559 +g1,16716:23070352,32843559 +h1,16716:26864100,32843559:0,0,0 +k1,16716:32583029,32843559:5718929 +g1,16716:32583029,32843559 +) +(1,16716:6630773,33509737:25952256,404226,82312 +h1,16716:6630773,33509737:0,0,0 +g1,16716:7579210,33509737 +g1,16716:8211502,33509737 +g1,16716:8527648,33509737 +g1,16716:8843794,33509737 +g1,16716:9159940,33509737 +g1,16716:9476086,33509737 +g1,16716:10108378,33509737 +g1,16716:12953690,33509737 +g1,16716:13902127,33509737 +g1,16716:14218273,33509737 +g1,16716:14534419,33509737 +g1,16716:14850565,33509737 +g1,16716:15166711,33509737 +g1,16716:15482857,33509737 +g1,16716:15799003,33509737 +g1,16716:16115149,33509737 +g1,16716:16431295,33509737 +g1,16716:17063587,33509737 +g1,16716:17379733,33509737 +g1,16716:17695879,33509737 +g1,16716:18012025,33509737 +g1,16716:18328171,33509737 +g1,16716:18644317,33509737 +g1,16716:19276609,33509737 +g1,16716:19592755,33509737 +g1,16716:20541192,33509737 +g1,16716:20857338,33509737 +g1,16716:21173484,33509737 +g1,16716:21489630,33509737 +g1,16716:21805776,33509737 +g1,16716:22121922,33509737 +g1,16716:22438068,33509737 +g1,16716:23070360,33509737 +g1,16716:23386506,33509737 +h1,16716:26864108,33509737:0,0,0 +k1,16716:32583029,33509737:5718921 +g1,16716:32583029,33509737 +) +(1,16716:6630773,34175915:25952256,404226,82312 +h1,16716:6630773,34175915:0,0,0 +g1,16716:7579210,34175915 +g1,16716:8211502,34175915 +g1,16716:8527648,34175915 +g1,16716:8843794,34175915 +g1,16716:9159940,34175915 +g1,16716:9476086,34175915 +g1,16716:10108378,34175915 +g1,16716:12953690,34175915 +g1,16716:13902127,34175915 +g1,16716:14218273,34175915 +g1,16716:14534419,34175915 +g1,16716:14850565,34175915 +g1,16716:15166711,34175915 +g1,16716:15482857,34175915 +g1,16716:15799003,34175915 +g1,16716:16115149,34175915 +g1,16716:16431295,34175915 +g1,16716:17063587,34175915 +g1,16716:17379733,34175915 +g1,16716:17695879,34175915 +g1,16716:18012025,34175915 +g1,16716:18328171,34175915 +g1,16716:18644317,34175915 +g1,16716:19276609,34175915 +g1,16716:19592755,34175915 +g1,16716:20541192,34175915 +g1,16716:20857338,34175915 +g1,16716:21173484,34175915 +g1,16716:21489630,34175915 +g1,16716:21805776,34175915 +g1,16716:22121922,34175915 +g1,16716:22438068,34175915 +g1,16716:23070360,34175915 +g1,16716:23386506,34175915 +h1,16716:26864108,34175915:0,0,0 +k1,16716:32583029,34175915:5718921 +g1,16716:32583029,34175915 +) +(1,16716:6630773,34842093:25952256,404226,82312 +h1,16716:6630773,34842093:0,0,0 +g1,16716:7579210,34842093 +g1,16716:8211502,34842093 +g1,16716:8527648,34842093 +g1,16716:8843794,34842093 +g1,16716:9159940,34842093 +g1,16716:9476086,34842093 +g1,16716:10108378,34842093 +g1,16716:12953690,34842093 +g1,16716:13902127,34842093 +g1,16716:14218273,34842093 +g1,16716:14534419,34842093 +g1,16716:14850565,34842093 +g1,16716:15166711,34842093 +g1,16716:15482857,34842093 +g1,16716:15799003,34842093 +g1,16716:16115149,34842093 +g1,16716:16431295,34842093 +g1,16716:17063587,34842093 +g1,16716:17379733,34842093 +g1,16716:17695879,34842093 +g1,16716:18012025,34842093 +g1,16716:18328171,34842093 +g1,16716:18644317,34842093 +g1,16716:19276609,34842093 +g1,16716:20541192,34842093 +g1,16716:20857338,34842093 +g1,16716:21173484,34842093 +g1,16716:21489630,34842093 +g1,16716:21805776,34842093 +g1,16716:22121922,34842093 +g1,16716:22438068,34842093 +g1,16716:23070360,34842093 +g1,16716:23386506,34842093 +h1,16716:26864108,34842093:0,0,0 +k1,16716:32583029,34842093:5718921 +g1,16716:32583029,34842093 +) +(1,16716:6630773,35508271:25952256,404226,82312 +h1,16716:6630773,35508271:0,0,0 +g1,16716:7579210,35508271 +g1,16716:8211502,35508271 +g1,16716:8527648,35508271 +g1,16716:8843794,35508271 +g1,16716:9159940,35508271 +g1,16716:9476086,35508271 +g1,16716:10108378,35508271 +g1,16716:12953690,35508271 +g1,16716:13902127,35508271 +g1,16716:14218273,35508271 +g1,16716:14534419,35508271 +g1,16716:14850565,35508271 +g1,16716:15166711,35508271 +g1,16716:15482857,35508271 +g1,16716:15799003,35508271 +g1,16716:16115149,35508271 +g1,16716:16431295,35508271 +g1,16716:17063587,35508271 +g1,16716:17379733,35508271 +g1,16716:17695879,35508271 +g1,16716:18012025,35508271 +g1,16716:18328171,35508271 +g1,16716:18644317,35508271 +g1,16716:19276609,35508271 +g1,16716:20541192,35508271 +g1,16716:20857338,35508271 +g1,16716:21173484,35508271 +g1,16716:21489630,35508271 +g1,16716:21805776,35508271 +g1,16716:22121922,35508271 +g1,16716:22438068,35508271 +g1,16716:23070360,35508271 +g1,16716:23386506,35508271 +h1,16716:26864108,35508271:0,0,0 +k1,16716:32583029,35508271:5718921 +g1,16716:32583029,35508271 +) +(1,16716:6630773,36174449:25952256,404226,82312 +h1,16716:6630773,36174449:0,0,0 +g1,16716:7579210,36174449 +g1,16716:8211502,36174449 +g1,16716:8527648,36174449 +g1,16716:8843794,36174449 +g1,16716:9159940,36174449 +g1,16716:9476086,36174449 +g1,16716:10108378,36174449 +g1,16716:12953690,36174449 +g1,16716:13902127,36174449 +g1,16716:14218273,36174449 +g1,16716:14534419,36174449 +g1,16716:14850565,36174449 +g1,16716:15166711,36174449 +g1,16716:15482857,36174449 +g1,16716:15799003,36174449 +g1,16716:16115149,36174449 +g1,16716:16431295,36174449 +g1,16716:17063587,36174449 +g1,16716:17379733,36174449 +g1,16716:17695879,36174449 +g1,16716:18012025,36174449 +g1,16716:18328171,36174449 +g1,16716:18644317,36174449 +g1,16716:19276609,36174449 +g1,16716:20541192,36174449 +g1,16716:20857338,36174449 +g1,16716:21173484,36174449 +g1,16716:21489630,36174449 +g1,16716:21805776,36174449 +g1,16716:22121922,36174449 +g1,16716:22438068,36174449 +g1,16716:23070360,36174449 +g1,16716:23386506,36174449 +h1,16716:26864108,36174449:0,0,0 +k1,16716:32583029,36174449:5718921 +g1,16716:32583029,36174449 +) +(1,16716:6630773,36840627:25952256,404226,82312 +h1,16716:6630773,36840627:0,0,0 +g1,16716:7579210,36840627 +g1,16716:8211502,36840627 +g1,16716:8527648,36840627 +g1,16716:8843794,36840627 +g1,16716:9159940,36840627 +g1,16716:9476086,36840627 +g1,16716:10108378,36840627 +g1,16716:12953690,36840627 +g1,16716:13902127,36840627 +g1,16716:14218273,36840627 +g1,16716:14534419,36840627 +g1,16716:14850565,36840627 +g1,16716:15166711,36840627 +g1,16716:15482857,36840627 +g1,16716:15799003,36840627 +g1,16716:16115149,36840627 +g1,16716:16431295,36840627 +g1,16716:17063587,36840627 +g1,16716:17379733,36840627 +g1,16716:17695879,36840627 +g1,16716:18012025,36840627 +g1,16716:18328171,36840627 +g1,16716:18644317,36840627 +g1,16716:19276609,36840627 +g1,16716:20541192,36840627 +g1,16716:20857338,36840627 +g1,16716:21173484,36840627 +g1,16716:21489630,36840627 +g1,16716:21805776,36840627 +g1,16716:22121922,36840627 +g1,16716:22438068,36840627 +g1,16716:23070360,36840627 +g1,16716:23386506,36840627 +h1,16716:26864108,36840627:0,0,0 +k1,16716:32583029,36840627:5718921 +g1,16716:32583029,36840627 +) +] +) +g1,16717:32583029,36922939 +g1,16717:6630773,36922939 +g1,16717:6630773,36922939 +g1,16717:32583029,36922939 +g1,16717:32583029,36922939 +) +h1,16717:6630773,37119547:0,0,0 +(1,16721:6630773,38485323:25952256,513147,134348 +h1,16720:6630773,38485323:983040,0,0 +g1,16720:8300630,38485323 +g1,16720:10741190,38485323 +g1,16720:13775506,38485323 +g1,16720:15177976,38485323 +g1,16720:16802613,38485323 +g1,16720:18395793,38485323 +g1,16720:18950882,38485323 +g1,16720:21274788,38485323 +(1,16720:21274788,38485323:0,414482,115847 +r1,16720:22688189,38485323:1413401,530329,115847 +k1,16720:21274788,38485323:-1413401 +) +(1,16720:21274788,38485323:1413401,414482,115847 +k1,16720:21274788,38485323:3277 +h1,16720:22684912,38485323:0,411205,112570 +) +g1,16720:22887418,38485323 +g1,16720:24069687,38485323 +g1,16720:26080331,38485323 +g1,16720:27076478,38485323 +g1,16720:28958672,38485323 +k1,16721:32583029,38485323:2326089 +g1,16721:32583029,38485323 +) +v1,16723:6630773,39675789:0,393216,0 +(1,16737:6630773,45294095:25952256,6011522,196608 +g1,16737:6630773,45294095 +g1,16737:6630773,45294095 +g1,16737:6434165,45294095 +(1,16737:6434165,45294095:0,6011522,196608 +r1,16737:32779637,45294095:26345472,6208130,196608 +k1,16737:6434165,45294095:-26345472 +) +(1,16737:6434165,45294095:26345472,6011522,196608 +[1,16737:6630773,45294095:25952256,5814914,0 +(1,16725:6630773,39889699:25952256,410518,101187 +(1,16724:6630773,39889699:0,0,0 +g1,16724:6630773,39889699 +g1,16724:6630773,39889699 +g1,16724:6303093,39889699 +(1,16724:6303093,39889699:0,0,0 +) +g1,16724:6630773,39889699 +) +g1,16725:10108376,39889699 +g1,16725:11056814,39889699 +g1,16725:15799000,39889699 +g1,16725:16431292,39889699 +g1,16725:23702643,39889699 +g1,16725:28128683,39889699 +g1,16725:28760975,39889699 +h1,16725:30341704,39889699:0,0,0 +k1,16725:32583029,39889699:2241325 +g1,16725:32583029,39889699 +) +(1,16726:6630773,40555877:25952256,410518,76021 +h1,16726:6630773,40555877:0,0,0 +k1,16726:6630773,40555877:0 +h1,16726:11689104,40555877:0,0,0 +k1,16726:32583028,40555877:20893924 +g1,16726:32583028,40555877 +) +(1,16736:6630773,41287591:25952256,379060,7863 +(1,16728:6630773,41287591:0,0,0 +g1,16728:6630773,41287591 +g1,16728:6630773,41287591 +g1,16728:6303093,41287591 +(1,16728:6303093,41287591:0,0,0 +) +g1,16728:6630773,41287591 +) +g1,16736:7579210,41287591 +g1,16736:7895356,41287591 +g1,16736:8211502,41287591 +g1,16736:10740668,41287591 +h1,16736:12637542,41287591:0,0,0 +k1,16736:32583030,41287591:19945488 +g1,16736:32583030,41287591 +) +(1,16736:6630773,41953769:25952256,404226,9436 +h1,16736:6630773,41953769:0,0,0 +g1,16736:7579210,41953769 +g1,16736:8211502,41953769 +g1,16736:8527648,41953769 +g1,16736:8843794,41953769 +g1,16736:9159940,41953769 +g1,16736:9476086,41953769 +g1,16736:10740669,41953769 +g1,16736:11056815,41953769 +h1,16736:12637543,41953769:0,0,0 +k1,16736:32583029,41953769:19945486 +g1,16736:32583029,41953769 +) +(1,16736:6630773,42619947:25952256,404226,9436 +h1,16736:6630773,42619947:0,0,0 +g1,16736:7579210,42619947 +g1,16736:8211502,42619947 +g1,16736:8527648,42619947 +g1,16736:8843794,42619947 +g1,16736:9159940,42619947 +g1,16736:9476086,42619947 +g1,16736:10740669,42619947 +g1,16736:11056815,42619947 +h1,16736:12637543,42619947:0,0,0 +k1,16736:32583029,42619947:19945486 +g1,16736:32583029,42619947 +) +(1,16736:6630773,43286125:25952256,404226,9436 +h1,16736:6630773,43286125:0,0,0 +g1,16736:7579210,43286125 +g1,16736:8211502,43286125 +g1,16736:8527648,43286125 +g1,16736:8843794,43286125 +g1,16736:9159940,43286125 +g1,16736:9476086,43286125 +g1,16736:10740669,43286125 +g1,16736:11056815,43286125 +h1,16736:12637543,43286125:0,0,0 +k1,16736:32583029,43286125:19945486 +g1,16736:32583029,43286125 +) +(1,16736:6630773,43952303:25952256,404226,9436 +h1,16736:6630773,43952303:0,0,0 +g1,16736:7579210,43952303 +g1,16736:8211502,43952303 +g1,16736:8527648,43952303 +g1,16736:8843794,43952303 +g1,16736:9159940,43952303 +g1,16736:9476086,43952303 +g1,16736:10740669,43952303 +g1,16736:11056815,43952303 +h1,16736:12637543,43952303:0,0,0 +k1,16736:32583029,43952303:19945486 +g1,16736:32583029,43952303 +) +(1,16736:6630773,44618481:25952256,404226,9436 +h1,16736:6630773,44618481:0,0,0 +g1,16736:7579210,44618481 +g1,16736:8211502,44618481 +g1,16736:8527648,44618481 +g1,16736:8843794,44618481 +g1,16736:9159940,44618481 +g1,16736:9476086,44618481 +g1,16736:10740669,44618481 +g1,16736:11056815,44618481 +h1,16736:12637543,44618481:0,0,0 +k1,16736:32583029,44618481:19945486 +g1,16736:32583029,44618481 +) +(1,16736:6630773,45284659:25952256,404226,9436 +h1,16736:6630773,45284659:0,0,0 +g1,16736:7579210,45284659 +g1,16736:8211502,45284659 +g1,16736:8527648,45284659 +g1,16736:8843794,45284659 +g1,16736:9159940,45284659 +g1,16736:9476086,45284659 +g1,16736:10740669,45284659 +g1,16736:11056815,45284659 +h1,16736:12637543,45284659:0,0,0 +k1,16736:32583029,45284659:19945486 +g1,16736:32583029,45284659 +) +] +) +g1,16737:32583029,45294095 +g1,16737:6630773,45294095 +g1,16737:6630773,45294095 +g1,16737:32583029,45294095 +g1,16737:32583029,45294095 +) +h1,16737:6630773,45490703:0,0,0 +] +(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 +) +] +h1,16743:4262630,4025873:0,0,0 +] +!28626 }325 -Input:2504:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2505:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2506:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2507:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2508:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2509:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!528 +Input:2501:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2502:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2503:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2504:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2505:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2506:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!564 {326 -[1,16789:4262630,47279633:28320399,43253760,0 -(1,16789:4262630,4025873:0,0,0 -[1,16789:-473657,4025873:25952256,0,0 -(1,16789:-473657,-710414:25952256,0,0 -h1,16789:-473657,-710414:0,0,0 -(1,16789:-473657,-710414:0,0,0 -(1,16789:-473657,-710414:0,0,0 -g1,16789:-473657,-710414 -(1,16789:-473657,-710414:65781,0,65781 -g1,16789:-407876,-710414 -[1,16789:-407876,-644633:0,0,0 +[1,16820:4262630,47279633:28320399,43253760,0 +(1,16820:4262630,4025873:0,0,0 +[1,16820:-473657,4025873:25952256,0,0 +(1,16820:-473657,-710414:25952256,0,0 +h1,16820:-473657,-710414:0,0,0 +(1,16820:-473657,-710414:0,0,0 +(1,16820:-473657,-710414:0,0,0 +g1,16820:-473657,-710414 +(1,16820:-473657,-710414:65781,0,65781 +g1,16820:-407876,-710414 +[1,16820:-407876,-644633:0,0,0 ] ) -k1,16789:-473657,-710414:-65781 +k1,16820:-473657,-710414:-65781 ) ) -k1,16789:25478599,-710414:25952256 -g1,16789:25478599,-710414 +k1,16820:25478599,-710414:25952256 +g1,16820:25478599,-710414 ) ] ) -[1,16789:6630773,47279633:25952256,43253760,0 -[1,16789:6630773,4812305:25952256,786432,0 -(1,16789:6630773,4812305:25952256,513147,126483 -(1,16789:6630773,4812305:25952256,513147,126483 -g1,16789:3078558,4812305 -[1,16789:3078558,4812305:0,0,0 -(1,16789:3078558,2439708:0,1703936,0 -k1,16789:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16789:2537886,2439708:1179648,16384,0 +[1,16820:6630773,47279633:25952256,43253760,0 +[1,16820:6630773,4812305:25952256,786432,0 +(1,16820:6630773,4812305:25952256,513147,126483 +(1,16820:6630773,4812305:25952256,513147,126483 +g1,16820:3078558,4812305 +[1,16820:3078558,4812305:0,0,0 +(1,16820:3078558,2439708:0,1703936,0 +k1,16820:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16820:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16789:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16820:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16789:3078558,4812305:0,0,0 -(1,16789:3078558,2439708:0,1703936,0 -g1,16789:29030814,2439708 -g1,16789:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16789:36151628,1915420:16384,1179648,0 +[1,16820:3078558,4812305:0,0,0 +(1,16820:3078558,2439708:0,1703936,0 +g1,16820:29030814,2439708 +g1,16820:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16820:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16789:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16820:37855564,2439708:1179648,16384,0 ) ) -k1,16789:3078556,2439708:-34777008 +k1,16820:3078556,2439708:-34777008 ) ] -[1,16789:3078558,4812305:0,0,0 -(1,16789:3078558,49800853:0,16384,2228224 -k1,16789:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16789:2537886,49800853:1179648,16384,0 +[1,16820:3078558,4812305:0,0,0 +(1,16820:3078558,49800853:0,16384,2228224 +k1,16820:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16820:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16789:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16820:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16789:3078558,4812305:0,0,0 -(1,16789:3078558,49800853:0,16384,2228224 -g1,16789:29030814,49800853 -g1,16789:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16789:36151628,51504789:16384,1179648,0 +[1,16820:3078558,4812305:0,0,0 +(1,16820:3078558,49800853:0,16384,2228224 +g1,16820:29030814,49800853 +g1,16820:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16820:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16789:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16820:37855564,49800853:1179648,16384,0 ) ) -k1,16789:3078556,49800853:-34777008 +k1,16820:3078556,49800853:-34777008 ) ] -g1,16789:6630773,4812305 -g1,16789:6630773,4812305 -g1,16789:9860387,4812305 -g1,16789:12770185,4812305 -k1,16789:31387653,4812305:18617468 -) -) -] -[1,16789:6630773,45706769:25952256,40108032,0 -(1,16789:6630773,45706769:25952256,40108032,0 -(1,16789:6630773,45706769:0,0,0 -g1,16789:6630773,45706769 -) -[1,16789:6630773,45706769:25952256,40108032,0 -(1,16710:6630773,6254097:25952256,513147,134348 -h1,16709:6630773,6254097:983040,0,0 -k1,16709:10423386,6254097:205172 -k1,16709:13463644,6254097:205171 -k1,16709:14616467,6254097:205172 -k1,16709:15177499,6254097:205172 -k1,16709:17263553,6254097:205171 -k1,16709:18451765,6254097:205172 -k1,16709:20468352,6254097:205172 -k1,16709:21482893,6254097:205171 -k1,16709:22458768,6254097:205172 -k1,16709:23494931,6254097:205166 -k1,16709:25350299,6254097:205171 -k1,16709:26997918,6254097:205172 -k1,16709:28000008,6254097:205172 -k1,16709:29888144,6254097:205171 -k1,16709:31391584,6254097:205172 -k1,16709:32583029,6254097:0 -) -(1,16710:6630773,7095585:25952256,505283,115847 -g1,16709:8242303,7095585 -g1,16709:9835483,7095585 -(1,16709:9835483,7095585:0,452978,115847 -r1,16709:14414291,7095585:4578808,568825,115847 -k1,16709:9835483,7095585:-4578808 -) -(1,16709:9835483,7095585:4578808,452978,115847 -k1,16709:9835483,7095585:3277 -h1,16709:14411014,7095585:0,411205,112570 -) -k1,16710:32583029,7095585:17995068 -g1,16710:32583029,7095585 -) -v1,16712:6630773,8076335:0,393216,0 -(1,16726:6630773,13694641:25952256,6011522,196608 -g1,16726:6630773,13694641 -g1,16726:6630773,13694641 -g1,16726:6434165,13694641 -(1,16726:6434165,13694641:0,6011522,196608 -r1,16726:32779637,13694641:26345472,6208130,196608 -k1,16726:6434165,13694641:-26345472 -) -(1,16726:6434165,13694641:26345472,6011522,196608 -[1,16726:6630773,13694641:25952256,5814914,0 -(1,16714:6630773,8290245:25952256,410518,101187 -(1,16713:6630773,8290245:0,0,0 -g1,16713:6630773,8290245 -g1,16713:6630773,8290245 -g1,16713:6303093,8290245 -(1,16713:6303093,8290245:0,0,0 -) -g1,16713:6630773,8290245 -) -g1,16714:10740667,8290245 -g1,16714:11689105,8290245 -g1,16714:17063582,8290245 -g1,16714:17695874,8290245 -h1,16714:24334934,8290245:0,0,0 -k1,16714:32583029,8290245:8248095 -g1,16714:32583029,8290245 -) -(1,16715:6630773,8956423:25952256,410518,101187 -h1,16715:6630773,8956423:0,0,0 -k1,16715:6630773,8956423:0 -h1,16715:12321396,8956423:0,0,0 -k1,16715:32583028,8956423:20261632 -g1,16715:32583028,8956423 -) -(1,16725:6630773,9688137:25952256,379060,7863 -(1,16717:6630773,9688137:0,0,0 -g1,16717:6630773,9688137 -g1,16717:6630773,9688137 -g1,16717:6303093,9688137 -(1,16717:6303093,9688137:0,0,0 -) -g1,16717:6630773,9688137 -) -g1,16725:7579210,9688137 -g1,16725:7895356,9688137 -g1,16725:8211502,9688137 -g1,16725:9792231,9688137 -g1,16725:11372960,9688137 -g1,16725:13269834,9688137 -g1,16725:15166708,9688137 -g1,16725:17063582,9688137 -g1,16725:18644311,9688137 -g1,16725:20541185,9688137 -g1,16725:22754205,9688137 -h1,16725:24018788,9688137:0,0,0 -k1,16725:32583029,9688137:8564241 -g1,16725:32583029,9688137 -) -(1,16725:6630773,10354315:25952256,388497,9436 -h1,16725:6630773,10354315:0,0,0 -g1,16725:7579210,10354315 -g1,16725:8211502,10354315 -g1,16725:8527648,10354315 -g1,16725:8843794,10354315 -g1,16725:9159940,10354315 -g1,16725:9792232,10354315 -g1,16725:10108378,10354315 -g1,16725:10424524,10354315 -g1,16725:10740670,10354315 -g1,16725:11372962,10354315 -g1,16725:11689108,10354315 -g1,16725:12005254,10354315 -g1,16725:12321400,10354315 -g1,16725:12637546,10354315 -g1,16725:13269838,10354315 -g1,16725:13585984,10354315 -g1,16725:13902130,10354315 -g1,16725:14218276,10354315 -g1,16725:14534422,10354315 -g1,16725:15166714,10354315 -g1,16725:15482860,10354315 -g1,16725:15799006,10354315 -g1,16725:16115152,10354315 -g1,16725:17063589,10354315 -g1,16725:17379735,10354315 -g1,16725:17695881,10354315 -g1,16725:18012027,10354315 -g1,16725:18644319,10354315 -g1,16725:18960465,10354315 -g1,16725:19276611,10354315 -g1,16725:19592757,10354315 -g1,16725:19908903,10354315 -g1,16725:20541195,10354315 -g1,16725:20857341,10354315 -g1,16725:21173487,10354315 -g1,16725:21489633,10354315 -g1,16725:21805779,10354315 -g1,16725:22121925,10354315 -g1,16725:22754217,10354315 -g1,16725:23070363,10354315 -g1,16725:23386509,10354315 -h1,16725:24018800,10354315:0,0,0 -k1,16725:32583029,10354315:8564229 -g1,16725:32583029,10354315 -) -(1,16725:6630773,11020493:25952256,388497,9436 -h1,16725:6630773,11020493:0,0,0 -g1,16725:7579210,11020493 -g1,16725:8211502,11020493 -g1,16725:8527648,11020493 -g1,16725:8843794,11020493 -g1,16725:9159940,11020493 -g1,16725:9792232,11020493 -g1,16725:10108378,11020493 -g1,16725:10424524,11020493 -g1,16725:10740670,11020493 -g1,16725:11372962,11020493 -g1,16725:11689108,11020493 -g1,16725:12005254,11020493 -g1,16725:12321400,11020493 -g1,16725:12637546,11020493 -g1,16725:13269838,11020493 -g1,16725:13585984,11020493 -g1,16725:13902130,11020493 -g1,16725:14218276,11020493 -g1,16725:14534422,11020493 -g1,16725:15166714,11020493 -g1,16725:15482860,11020493 -g1,16725:15799006,11020493 -g1,16725:16115152,11020493 -g1,16725:17063589,11020493 -g1,16725:17379735,11020493 -g1,16725:17695881,11020493 -g1,16725:18012027,11020493 -g1,16725:18644319,11020493 -g1,16725:18960465,11020493 -g1,16725:19276611,11020493 -g1,16725:19592757,11020493 -g1,16725:19908903,11020493 -g1,16725:20541195,11020493 -g1,16725:20857341,11020493 -g1,16725:21173487,11020493 -g1,16725:21489633,11020493 -g1,16725:21805779,11020493 -g1,16725:22121925,11020493 -g1,16725:22754217,11020493 -g1,16725:23070363,11020493 -g1,16725:23386509,11020493 -h1,16725:24018800,11020493:0,0,0 -k1,16725:32583029,11020493:8564229 -g1,16725:32583029,11020493 -) -(1,16725:6630773,11686671:25952256,388497,9436 -h1,16725:6630773,11686671:0,0,0 -g1,16725:7579210,11686671 -g1,16725:8211502,11686671 -g1,16725:8527648,11686671 -g1,16725:8843794,11686671 -g1,16725:9159940,11686671 -g1,16725:9792232,11686671 -g1,16725:10108378,11686671 -g1,16725:10424524,11686671 -g1,16725:10740670,11686671 -g1,16725:11372962,11686671 -g1,16725:11689108,11686671 -g1,16725:12005254,11686671 -g1,16725:12321400,11686671 -g1,16725:12637546,11686671 -g1,16725:13269838,11686671 -g1,16725:13585984,11686671 -g1,16725:13902130,11686671 -g1,16725:14218276,11686671 -g1,16725:14534422,11686671 -g1,16725:15166714,11686671 -g1,16725:15482860,11686671 -g1,16725:15799006,11686671 -g1,16725:16115152,11686671 -g1,16725:17063589,11686671 -g1,16725:17379735,11686671 -g1,16725:17695881,11686671 -g1,16725:18012027,11686671 -g1,16725:18644319,11686671 -g1,16725:18960465,11686671 -g1,16725:19276611,11686671 -g1,16725:19592757,11686671 -g1,16725:19908903,11686671 -g1,16725:20541195,11686671 -g1,16725:20857341,11686671 -g1,16725:21173487,11686671 -g1,16725:21489633,11686671 -g1,16725:21805779,11686671 -g1,16725:22121925,11686671 -g1,16725:22754217,11686671 -g1,16725:23070363,11686671 -g1,16725:23386509,11686671 -h1,16725:24018800,11686671:0,0,0 -k1,16725:32583029,11686671:8564229 -g1,16725:32583029,11686671 -) -(1,16725:6630773,12352849:25952256,388497,9436 -h1,16725:6630773,12352849:0,0,0 -g1,16725:7579210,12352849 -g1,16725:8211502,12352849 -g1,16725:8527648,12352849 -g1,16725:8843794,12352849 -g1,16725:9159940,12352849 -g1,16725:9792232,12352849 -g1,16725:10108378,12352849 -g1,16725:10424524,12352849 -g1,16725:10740670,12352849 -g1,16725:11372962,12352849 -g1,16725:11689108,12352849 -g1,16725:12005254,12352849 -g1,16725:12321400,12352849 -g1,16725:12637546,12352849 -g1,16725:13269838,12352849 -g1,16725:13585984,12352849 -g1,16725:13902130,12352849 -g1,16725:14218276,12352849 -g1,16725:14534422,12352849 -g1,16725:15166714,12352849 -g1,16725:15482860,12352849 -g1,16725:15799006,12352849 -g1,16725:16115152,12352849 -g1,16725:17063589,12352849 -g1,16725:17379735,12352849 -g1,16725:17695881,12352849 -g1,16725:18012027,12352849 -g1,16725:18644319,12352849 -g1,16725:18960465,12352849 -g1,16725:19276611,12352849 -g1,16725:19592757,12352849 -g1,16725:19908903,12352849 -g1,16725:20541195,12352849 -g1,16725:20857341,12352849 -g1,16725:21173487,12352849 -g1,16725:21489633,12352849 -g1,16725:21805779,12352849 -g1,16725:22121925,12352849 -g1,16725:22754217,12352849 -g1,16725:23070363,12352849 -g1,16725:23386509,12352849 -h1,16725:24018800,12352849:0,0,0 -k1,16725:32583029,12352849:8564229 -g1,16725:32583029,12352849 -) -(1,16725:6630773,13019027:25952256,388497,9436 -h1,16725:6630773,13019027:0,0,0 -g1,16725:7579210,13019027 -g1,16725:8211502,13019027 -g1,16725:8527648,13019027 -g1,16725:8843794,13019027 -g1,16725:9159940,13019027 -g1,16725:9792232,13019027 -g1,16725:10108378,13019027 -g1,16725:10424524,13019027 -g1,16725:10740670,13019027 -g1,16725:11372962,13019027 -g1,16725:11689108,13019027 -g1,16725:12005254,13019027 -g1,16725:12321400,13019027 -g1,16725:12637546,13019027 -g1,16725:13269838,13019027 -g1,16725:13585984,13019027 -g1,16725:13902130,13019027 -g1,16725:14218276,13019027 -g1,16725:14534422,13019027 -g1,16725:15166714,13019027 -g1,16725:15482860,13019027 -g1,16725:15799006,13019027 -g1,16725:16115152,13019027 -g1,16725:17063589,13019027 -g1,16725:17379735,13019027 -g1,16725:17695881,13019027 -g1,16725:18012027,13019027 -g1,16725:18644319,13019027 -g1,16725:18960465,13019027 -g1,16725:19276611,13019027 -g1,16725:19592757,13019027 -g1,16725:19908903,13019027 -g1,16725:20541195,13019027 -g1,16725:20857341,13019027 -g1,16725:21173487,13019027 -g1,16725:21489633,13019027 -g1,16725:21805779,13019027 -g1,16725:22121925,13019027 -g1,16725:22754217,13019027 -g1,16725:23070363,13019027 -g1,16725:23386509,13019027 -h1,16725:24018800,13019027:0,0,0 -k1,16725:32583029,13019027:8564229 -g1,16725:32583029,13019027 -) -(1,16725:6630773,13685205:25952256,388497,9436 -h1,16725:6630773,13685205:0,0,0 -g1,16725:7579210,13685205 -g1,16725:8211502,13685205 -g1,16725:8527648,13685205 -g1,16725:8843794,13685205 -g1,16725:9159940,13685205 -g1,16725:9792232,13685205 -g1,16725:10108378,13685205 -g1,16725:10424524,13685205 -g1,16725:10740670,13685205 -g1,16725:11372962,13685205 -g1,16725:11689108,13685205 -g1,16725:12005254,13685205 -g1,16725:12321400,13685205 -g1,16725:12637546,13685205 -g1,16725:13269838,13685205 -g1,16725:13585984,13685205 -g1,16725:13902130,13685205 -g1,16725:14218276,13685205 -g1,16725:14534422,13685205 -g1,16725:15166714,13685205 -g1,16725:15482860,13685205 -g1,16725:15799006,13685205 -g1,16725:16115152,13685205 -g1,16725:17063589,13685205 -g1,16725:17379735,13685205 -g1,16725:17695881,13685205 -g1,16725:18012027,13685205 -g1,16725:18644319,13685205 -g1,16725:18960465,13685205 -g1,16725:19276611,13685205 -g1,16725:19592757,13685205 -g1,16725:19908903,13685205 -g1,16725:20541195,13685205 -g1,16725:20857341,13685205 -g1,16725:21173487,13685205 -g1,16725:21489633,13685205 -g1,16725:21805779,13685205 -g1,16725:22121925,13685205 -g1,16725:22754217,13685205 -g1,16725:23070363,13685205 -g1,16725:23386509,13685205 -h1,16725:24018800,13685205:0,0,0 -k1,16725:32583029,13685205:8564229 -g1,16725:32583029,13685205 -) -] -) -g1,16726:32583029,13694641 -g1,16726:6630773,13694641 -g1,16726:6630773,13694641 -g1,16726:32583029,13694641 -g1,16726:32583029,13694641 -) -h1,16726:6630773,13891249:0,0,0 -(1,16730:6630773,15047309:25952256,513147,134348 -h1,16729:6630773,15047309:983040,0,0 -k1,16729:8953275,15047309:195859 -k1,16729:9915250,15047309:195859 -k1,16729:13136906,15047309:195859 -k1,16729:13948803,15047309:195859 -k1,16729:16772000,15047309:195859 -k1,16729:18978504,15047309:195859 -k1,16729:20563726,15047309:195859 -k1,16729:22966183,15047309:195860 -k1,16729:23923570,15047309:195859 -k1,16729:26558679,15047309:195859 -k1,16729:27826707,15047309:195859 -k1,16729:28788682,15047309:195859 -k1,16729:29643833,15047309:195859 -k1,16729:31478747,15047309:195859 -k1,16729:32583029,15047309:0 -) -(1,16730:6630773,15888797:25952256,505283,7863 -g1,16729:7577768,15888797 -g1,16729:10242461,15888797 -g1,16729:11093118,15888797 -g1,16729:12107615,15888797 -k1,16730:32583030,15888797:19576916 -g1,16730:32583030,15888797 -) -(1,16731:6630773,17980057:25952256,555811,12975 -(1,16731:6630773,17980057:2899444,534184,12975 -g1,16731:6630773,17980057 -g1,16731:9530217,17980057 -) -k1,16731:32583028,17980057:20449656 -g1,16731:32583028,17980057 -) -(1,16736:6630773,19214761:25952256,513147,134348 -k1,16735:9312234,19214761:146528 -k1,16735:11685018,19214761:146527 -k1,16735:12363043,19214761:146528 -k1,16735:13722641,19214761:146527 -k1,16735:17044388,19214761:146528 -k1,16735:18584866,19214761:146527 -k1,16735:21055956,19214761:146528 -k1,16735:21853912,19214761:146528 -k1,16735:23019524,19214761:146527 -k1,16735:25651833,19214761:146528 -k1,16735:26457652,19214761:146527 -k1,16735:29114864,19214761:146528 -k1,16735:32583029,19214761:0 -) -(1,16736:6630773,20056249:25952256,513147,134348 -k1,16735:7562531,20056249:248873 -k1,16735:9320043,20056249:248873 -k1,16735:12380410,20056249:248872 -k1,16735:15702266,20056249:248873 -k1,16735:17363440,20056249:248873 -k1,16735:18803758,20056249:248873 -k1,16735:20667437,20056249:248872 -k1,16735:23942107,20056249:248873 -k1,16735:25138631,20056249:248873 -k1,16735:26763105,20056249:248873 -k1,16735:28666761,20056249:248872 -k1,16735:29898674,20056249:248873 -k1,16736:32583029,20056249:0 -) -(1,16736:6630773,20897737:25952256,513147,126483 -k1,16735:8189320,20897737:226200 -k1,16735:9982486,20897737:226200 -k1,16735:11400131,20897737:226200 -k1,16735:13222132,20897737:226200 -k1,16735:14372390,20897737:226200 -k1,16735:15617675,20897737:226200 -k1,16735:17545845,20897737:226200 -k1,16735:19552003,20897737:226200 -k1,16735:22004460,20897737:226200 -k1,16735:24991036,20897737:226200 -k1,16735:27518205,20897737:226200 -k1,16735:29312682,20897737:226200 -k1,16735:30190310,20897737:226200 -k1,16735:32583029,20897737:0 -) -(1,16736:6630773,21739225:25952256,513147,126483 -k1,16735:7840568,21739225:190710 -k1,16735:10793622,21739225:190711 -k1,16735:13266296,21739225:190710 -k1,16735:15467651,21739225:190710 -k1,16735:16942867,21739225:190710 -k1,16735:19304130,21739225:190711 -k1,16735:20242606,21739225:190710 -k1,16735:22847662,21739225:190710 -k1,16735:25623767,21739225:190710 -k1,16735:26465906,21739225:190711 -k1,16735:27071450,21739225:190701 -k1,16735:29548712,21739225:190711 -k1,16735:31297213,21739225:190710 -k1,16735:32583029,21739225:0 -) -(1,16736:6630773,22580713:25952256,513147,134348 -k1,16735:9135105,22580713:240063 -k1,16735:11086314,22580713:240064 -k1,16735:12517822,22580713:240063 -k1,16735:14513595,22580713:240063 -k1,16735:17870551,22580713:240064 -k1,16735:18762042,22580713:240063 -k1,16735:20021190,22580713:240063 -k1,16735:24772096,22580713:240063 -k1,16735:25671452,22580713:240064 -k1,16735:27363137,22580713:240063 -k1,16735:28262492,22580713:240063 -k1,16735:30199283,22580713:240064 -k1,16735:31422386,22580713:240063 -k1,16736:32583029,22580713:0 -) -(1,16736:6630773,23422201:25952256,513147,126483 -k1,16735:8561735,23422201:194258 -k1,16735:9383829,23422201:194259 -k1,16735:11275469,23422201:194258 -k1,16735:13167766,23422201:194259 -k1,16735:14381109,23422201:194258 -k1,16735:17525143,23422201:194259 -k1,16735:18702441,23422201:194258 -k1,16735:21598749,23422201:194259 -k1,16735:24074971,23422201:194258 -k1,16735:26279875,23422201:194259 -k1,16735:27493218,23422201:194258 -k1,16735:30466204,23422201:194259 -(1,16735:30466204,23422201:0,452978,115847 -r1,16735:32583029,23422201:2116825,568825,115847 -k1,16735:30466204,23422201:-2116825 -) -(1,16735:30466204,23422201:2116825,452978,115847 -k1,16735:30466204,23422201:3277 -h1,16735:32579752,23422201:0,411205,112570 -) -k1,16735:32583029,23422201:0 -) -(1,16736:6630773,24263689:25952256,513147,134348 -k1,16735:8752232,24263689:161933 -k1,16735:10774733,24263689:161934 -k1,16735:12628806,24263689:161933 -k1,16735:16017733,24263689:161934 -k1,16735:19078979,24263689:161933 -k1,16735:20808534,24263689:161934 -k1,16735:21989552,24263689:161933 -k1,16735:23706000,24263689:161934 -k1,16735:26309804,24263689:161933 -k1,16735:29091867,24263689:161934 -k1,16735:31966991,24263689:161933 -k1,16736:32583029,24263689:0 -) -(1,16736:6630773,25105177:25952256,513147,134348 -k1,16735:8262014,25105177:209110 -k1,16735:9462695,25105177:209121 -k1,16735:10738086,25105177:209120 -k1,16735:14462557,25105177:209120 -k1,16735:17976658,25105177:209120 -k1,16735:18837207,25105177:209121 -k1,16735:21444289,25105177:209120 -k1,16735:24484564,25105177:209120 -k1,16735:26073872,25105177:209120 -k1,16735:29730842,25105177:209121 -k1,16735:31105192,25105177:209120 -k1,16736:32583029,25105177:0 -) -(1,16736:6630773,25946665:25952256,513147,126483 -k1,16735:10062179,25946665:175577 -k1,16735:13714440,25946665:175576 -k1,16735:14541445,25946665:175577 -k1,16735:16941314,25946665:175577 -k1,16735:19287443,25946665:175577 -k1,16735:20210785,25946665:175576 -k1,16735:23809307,25946665:175577 -k1,16735:25176329,25946665:175577 -k1,16735:26973922,25946665:175577 -k1,16735:27897264,25946665:175576 -k1,16735:29650293,25946665:175577 -k1,16735:32583029,25946665:0 -) -(1,16736:6630773,26788153:25952256,473825,126483 -g1,16735:7446040,26788153 -g1,16735:8001129,26788153 -g1,16735:10903063,26788153 -k1,16736:32583030,26788153:20151012 -g1,16736:32583030,26788153 -) -(1,16738:6630773,27629641:25952256,513147,126483 -h1,16737:6630773,27629641:983040,0,0 -k1,16737:8764748,27629641:197386 -k1,16737:10066416,27629641:197386 -k1,16737:11356288,27629641:197387 -k1,16737:14249170,27629641:197386 -(1,16737:14249170,27629641:0,452978,115847 -r1,16737:17772842,27629641:3523672,568825,115847 -k1,16737:14249170,27629641:-3523672 -) -(1,16737:14249170,27629641:3523672,452978,115847 -k1,16737:14249170,27629641:3277 -h1,16737:17769565,27629641:0,411205,112570 -) -k1,16737:17970228,27629641:197386 -k1,16737:18819042,27629641:197386 -k1,16737:21198122,27629641:197386 -k1,16737:21751369,27629641:197387 -(1,16737:21751369,27629641:0,414482,115847 -r1,16737:23164770,27629641:1413401,530329,115847 -k1,16737:21751369,27629641:-1413401 -) -(1,16737:21751369,27629641:1413401,414482,115847 -k1,16737:21751369,27629641:3277 -h1,16737:23161493,27629641:0,411205,112570 -) -k1,16737:23362156,27629641:197386 -k1,16737:24542582,27629641:197386 -k1,16737:26551383,27629641:197386 -k1,16737:27510298,27629641:197387 -k1,16737:28063544,27629641:197386 -k1,16737:30249292,27629641:197386 -k1,16737:32583029,27629641:0 -) -(1,16738:6630773,28471129:25952256,513147,126483 -k1,16737:7547665,28471129:249736 -k1,16737:9393202,28471129:249736 -k1,16737:10460826,28471129:249735 -k1,16737:11326600,28471129:249736 -k1,16737:12595421,28471129:249736 -k1,16737:15599635,28471129:249736 -k1,16737:18301728,28471129:249736 -k1,16737:19419815,28471129:249735 -k1,16737:21964622,28471129:249736 -k1,16737:23589959,28471129:249736 -k1,16737:24858780,28471129:249736 -k1,16737:26414649,28471129:249736 -k1,16737:27560917,28471129:249735 -k1,16737:29344851,28471129:249736 -k1,16737:30786032,28471129:249736 -k1,16737:32583029,28471129:0 -) -(1,16738:6630773,29312617:25952256,513147,134348 -k1,16737:9512045,29312617:168081 -k1,16737:10339418,29312617:168081 -k1,16737:11526583,29312617:168080 -k1,16737:13084027,29312617:168081 -k1,16737:15302074,29312617:168081 -k1,16737:18450732,29312617:168081 -k1,16737:18974673,29312617:168081 -k1,16737:21525643,29312617:168081 -(1,16737:21525643,29312617:0,414482,115847 -r1,16737:23290756,29312617:1765113,530329,115847 -k1,16737:21525643,29312617:-1765113 -) -(1,16737:21525643,29312617:1765113,414482,115847 -k1,16737:21525643,29312617:3277 -h1,16737:23287479,29312617:0,411205,112570 -) -k1,16737:23458836,29312617:168080 -k1,16737:26988914,29312617:168081 -k1,16737:27512855,29312617:168081 -k1,16737:29962900,29312617:168081 -k1,16737:32583029,29312617:0 -) -(1,16738:6630773,30154105:25952256,505283,115847 -g1,16737:8807879,30154105 -g1,16737:10198553,30154105 -(1,16737:10198553,30154105:0,452978,115847 -r1,16737:14425649,30154105:4227096,568825,115847 -k1,16737:10198553,30154105:-4227096 -) -(1,16737:10198553,30154105:4227096,452978,115847 -k1,16737:10198553,30154105:3277 -h1,16737:14422372,30154105:0,411205,112570 -) -g1,16737:14624878,30154105 -g1,16737:16218058,30154105 -g1,16737:18128432,30154105 -g1,16737:21006773,30154105 -g1,16737:21892164,30154105 -g1,16737:22506236,30154105 -g1,16737:24086309,30154105 -k1,16738:32583029,30154105:6312405 -g1,16738:32583029,30154105 -) -v1,16740:6630773,31134855:0,393216,0 -(1,16754:6630773,36753161:25952256,6011522,196608 -g1,16754:6630773,36753161 -g1,16754:6630773,36753161 -g1,16754:6434165,36753161 -(1,16754:6434165,36753161:0,6011522,196608 -r1,16754:32779637,36753161:26345472,6208130,196608 -k1,16754:6434165,36753161:-26345472 -) -(1,16754:6434165,36753161:26345472,6011522,196608 -[1,16754:6630773,36753161:25952256,5814914,0 -(1,16742:6630773,31348765:25952256,410518,101187 -(1,16741:6630773,31348765:0,0,0 -g1,16741:6630773,31348765 -g1,16741:6630773,31348765 -g1,16741:6303093,31348765 -(1,16741:6303093,31348765:0,0,0 -) -g1,16741:6630773,31348765 -) -g1,16742:10108376,31348765 -g1,16742:11056814,31348765 -g1,16742:15482854,31348765 -g1,16742:16115146,31348765 -k1,16742:16115146,31348765:0 -h1,16742:23070351,31348765:0,0,0 -k1,16742:32583029,31348765:9512678 -g1,16742:32583029,31348765 -) -(1,16743:6630773,32014943:25952256,404226,101187 -h1,16743:6630773,32014943:0,0,0 -g1,16743:11689105,32014943 -g1,16743:13902127,32014943 -h1,16743:15166709,32014943:0,0,0 -k1,16743:32583029,32014943:17416320 -g1,16743:32583029,32014943 -) -(1,16753:6630773,32746657:25952256,404226,9436 -(1,16745:6630773,32746657:0,0,0 -g1,16745:6630773,32746657 -g1,16745:6630773,32746657 -g1,16745:6303093,32746657 -(1,16745:6303093,32746657:0,0,0 -) -g1,16745:6630773,32746657 -) -g1,16753:7579210,32746657 -g1,16753:8211502,32746657 -g1,16753:8843794,32746657 -g1,16753:11372960,32746657 -g1,16753:12005252,32746657 -g1,16753:12637544,32746657 -h1,16753:12953690,32746657:0,0,0 -k1,16753:32583030,32746657:19629340 -g1,16753:32583030,32746657 -) -(1,16753:6630773,33412835:25952256,404226,101187 -h1,16753:6630773,33412835:0,0,0 -g1,16753:7579210,33412835 -g1,16753:7895356,33412835 -g1,16753:8211502,33412835 -g1,16753:10108376,33412835 -g1,16753:10424522,33412835 -g1,16753:10740668,33412835 -g1,16753:11056814,33412835 -g1,16753:11372960,33412835 -g1,16753:11689106,33412835 -g1,16753:12005252,33412835 -g1,16753:12321398,33412835 -g1,16753:12637544,33412835 -g1,16753:12953690,33412835 -g1,16753:13269836,33412835 -g1,16753:15166710,33412835 -g1,16753:18328167,33412835 -g1,16753:20541187,33412835 -g1,16753:20857333,33412835 -g1,16753:21173479,33412835 -g1,16753:22438062,33412835 -g1,16753:24967228,33412835 -h1,16753:28760976,33412835:0,0,0 -k1,16753:32583029,33412835:3822053 -g1,16753:32583029,33412835 -) -(1,16753:6630773,34079013:25952256,404226,6290 -h1,16753:6630773,34079013:0,0,0 -g1,16753:7579210,34079013 -g1,16753:7895356,34079013 -g1,16753:8211502,34079013 -g1,16753:10108377,34079013 -g1,16753:10424523,34079013 -g1,16753:10740669,34079013 -g1,16753:11056815,34079013 -g1,16753:11372961,34079013 -g1,16753:11689107,34079013 -g1,16753:12005253,34079013 -g1,16753:15166710,34079013 -g1,16753:15482856,34079013 -g1,16753:15799002,34079013 -g1,16753:16115148,34079013 -g1,16753:16431294,34079013 -g1,16753:18328169,34079013 -g1,16753:18644315,34079013 -g1,16753:20541190,34079013 -g1,16753:22438065,34079013 -g1,16753:22754211,34079013 -g1,16753:23070357,34079013 -g1,16753:24967232,34079013 -k1,16753:24967232,34079013:0 -h1,16753:26864106,34079013:0,0,0 -k1,16753:32583029,34079013:5718923 -g1,16753:32583029,34079013 -) -(1,16753:6630773,34745191:25952256,404226,82312 -h1,16753:6630773,34745191:0,0,0 -g1,16753:7579210,34745191 -g1,16753:8211502,34745191 -g1,16753:8527648,34745191 -g1,16753:8843794,34745191 -g1,16753:9159940,34745191 -g1,16753:9476086,34745191 -g1,16753:10108378,34745191 -g1,16753:10740670,34745191 -g1,16753:13902127,34745191 -g1,16753:15166710,34745191 -g1,16753:15482856,34745191 -g1,16753:15799002,34745191 -g1,16753:16115148,34745191 -g1,16753:16431294,34745191 -g1,16753:16747440,34745191 -g1,16753:17063586,34745191 -g1,16753:17379732,34745191 -g1,16753:17695878,34745191 -g1,16753:18328170,34745191 -g1,16753:18644316,34745191 -g1,16753:18960462,34745191 -g1,16753:19276608,34745191 -g1,16753:19592754,34745191 -g1,16753:19908900,34745191 -g1,16753:20541192,34745191 -g1,16753:20857338,34745191 -g1,16753:21173484,34745191 -g1,16753:21489630,34745191 -g1,16753:22438067,34745191 -g1,16753:22754213,34745191 -g1,16753:23070359,34745191 -g1,16753:23386505,34745191 -g1,16753:23702651,34745191 -g1,16753:24018797,34745191 -g1,16753:24334943,34745191 -g1,16753:24967235,34745191 -k1,16753:24967235,34745191:0 -h1,16753:28128692,34745191:0,0,0 -k1,16753:32583029,34745191:4454337 -g1,16753:32583029,34745191 -) -(1,16753:6630773,35411369:25952256,404226,82312 -h1,16753:6630773,35411369:0,0,0 -g1,16753:7579210,35411369 -g1,16753:8211502,35411369 -g1,16753:8527648,35411369 -g1,16753:8843794,35411369 -g1,16753:9159940,35411369 -g1,16753:9476086,35411369 -g1,16753:10108378,35411369 -g1,16753:10740670,35411369 -g1,16753:13902127,35411369 -g1,16753:15166710,35411369 -g1,16753:15482856,35411369 -g1,16753:15799002,35411369 -g1,16753:16115148,35411369 -g1,16753:16431294,35411369 -g1,16753:16747440,35411369 -g1,16753:17063586,35411369 -g1,16753:17379732,35411369 -g1,16753:17695878,35411369 -g1,16753:18328170,35411369 -g1,16753:18644316,35411369 -g1,16753:18960462,35411369 -g1,16753:19276608,35411369 -g1,16753:19592754,35411369 -g1,16753:19908900,35411369 -g1,16753:20541192,35411369 -g1,16753:20857338,35411369 -g1,16753:21173484,35411369 -g1,16753:21489630,35411369 -g1,16753:22438067,35411369 -g1,16753:22754213,35411369 -g1,16753:23070359,35411369 -g1,16753:23386505,35411369 -g1,16753:23702651,35411369 -g1,16753:24018797,35411369 -g1,16753:24334943,35411369 -g1,16753:24967235,35411369 -k1,16753:24967235,35411369:0 -h1,16753:28128692,35411369:0,0,0 -k1,16753:32583029,35411369:4454337 -g1,16753:32583029,35411369 -) -(1,16753:6630773,36077547:25952256,404226,82312 -h1,16753:6630773,36077547:0,0,0 -g1,16753:7579210,36077547 -g1,16753:8211502,36077547 -g1,16753:8527648,36077547 -g1,16753:8843794,36077547 -g1,16753:9159940,36077547 -g1,16753:9476086,36077547 -g1,16753:10108378,36077547 -g1,16753:10740670,36077547 -g1,16753:13902127,36077547 -g1,16753:15166710,36077547 -g1,16753:15482856,36077547 -g1,16753:15799002,36077547 -g1,16753:16115148,36077547 -g1,16753:16431294,36077547 -g1,16753:16747440,36077547 -g1,16753:17063586,36077547 -g1,16753:17379732,36077547 -g1,16753:17695878,36077547 -g1,16753:18328170,36077547 -g1,16753:18644316,36077547 -g1,16753:18960462,36077547 -g1,16753:19276608,36077547 -g1,16753:19592754,36077547 -g1,16753:19908900,36077547 -g1,16753:20541192,36077547 -g1,16753:20857338,36077547 -g1,16753:21173484,36077547 -g1,16753:22438067,36077547 -g1,16753:22754213,36077547 -g1,16753:23070359,36077547 -g1,16753:23386505,36077547 -g1,16753:23702651,36077547 -g1,16753:24018797,36077547 -g1,16753:24334943,36077547 -g1,16753:24967235,36077547 -k1,16753:24967235,36077547:0 -h1,16753:28128692,36077547:0,0,0 -k1,16753:32583029,36077547:4454337 -g1,16753:32583029,36077547 -) -(1,16753:6630773,36743725:25952256,404226,9436 -h1,16753:6630773,36743725:0,0,0 -g1,16753:7579210,36743725 -g1,16753:8211502,36743725 -g1,16753:9476085,36743725 -g1,16753:11056814,36743725 -g1,16753:11689106,36743725 -g1,16753:13269835,36743725 -h1,16753:14534418,36743725:0,0,0 -k1,16753:32583030,36743725:18048612 -g1,16753:32583030,36743725 -) -] -) -g1,16754:32583029,36753161 -g1,16754:6630773,36753161 -g1,16754:6630773,36753161 -g1,16754:32583029,36753161 -g1,16754:32583029,36753161 -) -h1,16754:6630773,36949769:0,0,0 -(1,16758:6630773,38105829:25952256,505283,126483 -h1,16757:6630773,38105829:983040,0,0 -g1,16757:8440877,38105829 -g1,16757:9843347,38105829 -g1,16757:11409657,38105829 -g1,16757:12627971,38105829 -g1,16757:14538345,38105829 -g1,16757:15729134,38105829 -g1,16757:18737236,38105829 -k1,16758:32583029,38105829:10987113 -g1,16758:32583029,38105829 -) -(1,16760:6630773,38947317:25952256,513147,134348 -h1,16759:6630773,38947317:983040,0,0 -g1,16759:9448165,38947317 -g1,16759:10515746,38947317 -g1,16759:12896669,38947317 -g1,16759:13866601,38947317 -g1,16759:15991933,38947317 -(1,16759:15991933,38947317:0,414482,115847 -r1,16759:17405334,38947317:1413401,530329,115847 -k1,16759:15991933,38947317:-1413401 -) -(1,16759:15991933,38947317:1413401,414482,115847 -k1,16759:15991933,38947317:3277 -h1,16759:17402057,38947317:0,411205,112570 -) -g1,16759:17604563,38947317 -g1,16759:18786832,38947317 -g1,16759:20797476,38947317 -g1,16759:21793623,38947317 -g1,16759:23675817,38947317 -k1,16760:32583029,38947317:7608944 -g1,16760:32583029,38947317 -) -v1,16762:6630773,39928067:0,393216,0 -(1,16789:6630773,45510161:25952256,5975310,196608 -g1,16789:6630773,45510161 -g1,16789:6630773,45510161 -g1,16789:6434165,45510161 -(1,16789:6434165,45510161:0,5975310,196608 -r1,16789:32779637,45510161:26345472,6171918,196608 -k1,16789:6434165,45510161:-26345472 -) -(1,16789:6434165,45510161:26345472,5975310,196608 -[1,16789:6630773,45510161:25952256,5778702,0 -(1,16764:6630773,40141977:25952256,410518,76021 -(1,16763:6630773,40141977:0,0,0 -g1,16763:6630773,40141977 -g1,16763:6630773,40141977 -g1,16763:6303093,40141977 -(1,16763:6303093,40141977:0,0,0 -) -g1,16763:6630773,40141977 -) -g1,16764:10108376,40141977 -g1,16764:11056814,40141977 -g1,16764:15482854,40141977 -g1,16764:16115146,40141977 -h1,16764:23070351,40141977:0,0,0 -k1,16764:32583029,40141977:9512678 -g1,16764:32583029,40141977 -) -(1,16765:6630773,40808155:25952256,404226,6290 -h1,16765:6630773,40808155:0,0,0 -h1,16765:9792230,40808155:0,0,0 -k1,16765:32583030,40808155:22790800 -g1,16765:32583030,40808155 -) -(1,16775:6630773,41513093:25952256,404226,6290 -(1,16767:6630773,41513093:0,0,0 -g1,16767:6630773,41513093 -g1,16767:6630773,41513093 -g1,16767:6303093,41513093 -(1,16767:6303093,41513093:0,0,0 -) -g1,16767:6630773,41513093 -) -g1,16775:7579210,41513093 -g1,16775:8211502,41513093 -g1,16775:8843794,41513093 -g1,16775:11372960,41513093 -g1,16775:12321397,41513093 -g1,16775:12953689,41513093 -h1,16775:13269835,41513093:0,0,0 -k1,16775:32583029,41513093:19313194 -g1,16775:32583029,41513093 -) -(1,16775:6630773,42179271:25952256,379060,7863 -h1,16775:6630773,42179271:0,0,0 -g1,16775:7579210,42179271 -g1,16775:7895356,42179271 -g1,16775:8211502,42179271 -g1,16775:10740668,42179271 -g1,16775:11056814,42179271 -g1,16775:11372960,42179271 -g1,16775:11689106,42179271 -h1,16775:13585980,42179271:0,0,0 -k1,16775:32583028,42179271:18997048 -g1,16775:32583028,42179271 -) -(1,16775:6630773,42845449:25952256,404226,6290 -h1,16775:6630773,42845449:0,0,0 -g1,16775:7579210,42845449 -g1,16775:7895356,42845449 -g1,16775:8211502,42845449 -g1,16775:8527648,42845449 -g1,16775:8843794,42845449 -g1,16775:10740669,42845449 -k1,16775:10740669,42845449:0 -h1,16775:13585980,42845449:0,0,0 -k1,16775:32583028,42845449:18997048 -g1,16775:32583028,42845449 -) -(1,16775:6630773,43511627:25952256,404226,76021 -h1,16775:6630773,43511627:0,0,0 -g1,16775:7579210,43511627 -g1,16775:8211502,43511627 -g1,16775:8527648,43511627 -g1,16775:8843794,43511627 -g1,16775:9159940,43511627 -g1,16775:9476086,43511627 -g1,16775:10740669,43511627 -g1,16775:11372961,43511627 -h1,16775:13585981,43511627:0,0,0 -k1,16775:32583029,43511627:18997048 -g1,16775:32583029,43511627 -) -(1,16775:6630773,44177805:25952256,404226,76021 -h1,16775:6630773,44177805:0,0,0 -g1,16775:7579210,44177805 -g1,16775:8211502,44177805 -g1,16775:8527648,44177805 -g1,16775:8843794,44177805 -g1,16775:9159940,44177805 -g1,16775:9476086,44177805 -g1,16775:10740669,44177805 -g1,16775:11372961,44177805 -h1,16775:13585981,44177805:0,0,0 -k1,16775:32583029,44177805:18997048 -g1,16775:32583029,44177805 -) -(1,16775:6630773,44843983:25952256,404226,76021 -h1,16775:6630773,44843983:0,0,0 -g1,16775:7579210,44843983 -g1,16775:8211502,44843983 -g1,16775:8527648,44843983 -g1,16775:8843794,44843983 -g1,16775:9159940,44843983 -g1,16775:9476086,44843983 -g1,16775:10108378,44843983 -g1,16775:10424524,44843983 -g1,16775:10740670,44843983 -g1,16775:11372962,44843983 -h1,16775:13585982,44843983:0,0,0 -k1,16775:32583030,44843983:18997048 -g1,16775:32583030,44843983 -) -(1,16775:6630773,45510161:25952256,404226,6290 -h1,16775:6630773,45510161:0,0,0 -g1,16775:7579210,45510161 -g1,16775:8211502,45510161 -g1,16775:9476085,45510161 -g1,16775:11056814,45510161 -g1,16775:12005251,45510161 -g1,16775:13585980,45510161 -h1,16775:14850563,45510161:0,0,0 -k1,16775:32583029,45510161:17732466 -g1,16775:32583029,45510161 -) -] -) -g1,16789:32583029,45510161 -g1,16789:6630773,45510161 -g1,16789:6630773,45510161 -g1,16789:32583029,45510161 -g1,16789:32583029,45510161 -) -] -(1,16789:32583029,45706769:0,0,0 -g1,16789:32583029,45706769 -) -) -] -(1,16789:6630773,47279633:25952256,0,0 -h1,16789:6630773,47279633:25952256,0,0 -) -] -h1,16789:4262630,4025873:0,0,0 +g1,16820:6630773,4812305 +g1,16820:6630773,4812305 +g1,16820:9860387,4812305 +g1,16820:12770185,4812305 +k1,16820:31387653,4812305:18617468 +) +) +] +[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,16741:6630773,6254097:25952256,513147,134348 +h1,16740:6630773,6254097:983040,0,0 +k1,16740:10423386,6254097:205172 +k1,16740:13463644,6254097:205171 +k1,16740:14616467,6254097:205172 +k1,16740:15177499,6254097:205172 +k1,16740:17263553,6254097:205171 +k1,16740:18451765,6254097:205172 +k1,16740:20468352,6254097:205172 +k1,16740:21482893,6254097:205171 +k1,16740:22458768,6254097:205172 +k1,16740:23494931,6254097:205166 +k1,16740:25350299,6254097:205171 +k1,16740:26997918,6254097:205172 +k1,16740:28000008,6254097:205172 +k1,16740:29888144,6254097:205171 +k1,16740:31391584,6254097:205172 +k1,16740:32583029,6254097:0 +) +(1,16741:6630773,7095585:25952256,505283,115847 +g1,16740:8242303,7095585 +g1,16740:9835483,7095585 +(1,16740:9835483,7095585:0,452978,115847 +r1,16740:14414291,7095585:4578808,568825,115847 +k1,16740:9835483,7095585:-4578808 +) +(1,16740:9835483,7095585:4578808,452978,115847 +k1,16740:9835483,7095585:3277 +h1,16740:14411014,7095585:0,411205,112570 +) +k1,16741:32583029,7095585:17995068 +g1,16741:32583029,7095585 +) +v1,16743:6630773,8076335:0,393216,0 +(1,16757:6630773,13694641:25952256,6011522,196608 +g1,16757:6630773,13694641 +g1,16757:6630773,13694641 +g1,16757:6434165,13694641 +(1,16757:6434165,13694641:0,6011522,196608 +r1,16757:32779637,13694641:26345472,6208130,196608 +k1,16757:6434165,13694641:-26345472 +) +(1,16757:6434165,13694641:26345472,6011522,196608 +[1,16757:6630773,13694641:25952256,5814914,0 +(1,16745:6630773,8290245:25952256,410518,101187 +(1,16744:6630773,8290245:0,0,0 +g1,16744:6630773,8290245 +g1,16744:6630773,8290245 +g1,16744:6303093,8290245 +(1,16744:6303093,8290245:0,0,0 +) +g1,16744:6630773,8290245 +) +g1,16745:10740667,8290245 +g1,16745:11689105,8290245 +g1,16745:17063582,8290245 +g1,16745:17695874,8290245 +h1,16745:24334934,8290245:0,0,0 +k1,16745:32583029,8290245:8248095 +g1,16745:32583029,8290245 +) +(1,16746:6630773,8956423:25952256,410518,101187 +h1,16746:6630773,8956423:0,0,0 +k1,16746:6630773,8956423:0 +h1,16746:12321396,8956423:0,0,0 +k1,16746:32583028,8956423:20261632 +g1,16746:32583028,8956423 +) +(1,16756:6630773,9688137:25952256,379060,7863 +(1,16748:6630773,9688137:0,0,0 +g1,16748:6630773,9688137 +g1,16748:6630773,9688137 +g1,16748:6303093,9688137 +(1,16748:6303093,9688137:0,0,0 +) +g1,16748:6630773,9688137 +) +g1,16756:7579210,9688137 +g1,16756:7895356,9688137 +g1,16756:8211502,9688137 +g1,16756:9792231,9688137 +g1,16756:11372960,9688137 +g1,16756:13269834,9688137 +g1,16756:15166708,9688137 +g1,16756:17063582,9688137 +g1,16756:18644311,9688137 +g1,16756:20541185,9688137 +g1,16756:22754205,9688137 +h1,16756:24018788,9688137:0,0,0 +k1,16756:32583029,9688137:8564241 +g1,16756:32583029,9688137 +) +(1,16756:6630773,10354315:25952256,388497,9436 +h1,16756:6630773,10354315:0,0,0 +g1,16756:7579210,10354315 +g1,16756:8211502,10354315 +g1,16756:8527648,10354315 +g1,16756:8843794,10354315 +g1,16756:9159940,10354315 +g1,16756:9792232,10354315 +g1,16756:10108378,10354315 +g1,16756:10424524,10354315 +g1,16756:10740670,10354315 +g1,16756:11372962,10354315 +g1,16756:11689108,10354315 +g1,16756:12005254,10354315 +g1,16756:12321400,10354315 +g1,16756:12637546,10354315 +g1,16756:13269838,10354315 +g1,16756:13585984,10354315 +g1,16756:13902130,10354315 +g1,16756:14218276,10354315 +g1,16756:14534422,10354315 +g1,16756:15166714,10354315 +g1,16756:15482860,10354315 +g1,16756:15799006,10354315 +g1,16756:16115152,10354315 +g1,16756:17063589,10354315 +g1,16756:17379735,10354315 +g1,16756:17695881,10354315 +g1,16756:18012027,10354315 +g1,16756:18644319,10354315 +g1,16756:18960465,10354315 +g1,16756:19276611,10354315 +g1,16756:19592757,10354315 +g1,16756:19908903,10354315 +g1,16756:20541195,10354315 +g1,16756:20857341,10354315 +g1,16756:21173487,10354315 +g1,16756:21489633,10354315 +g1,16756:21805779,10354315 +g1,16756:22121925,10354315 +g1,16756:22754217,10354315 +g1,16756:23070363,10354315 +g1,16756:23386509,10354315 +h1,16756:24018800,10354315:0,0,0 +k1,16756:32583029,10354315:8564229 +g1,16756:32583029,10354315 +) +(1,16756:6630773,11020493:25952256,388497,9436 +h1,16756:6630773,11020493:0,0,0 +g1,16756:7579210,11020493 +g1,16756:8211502,11020493 +g1,16756:8527648,11020493 +g1,16756:8843794,11020493 +g1,16756:9159940,11020493 +g1,16756:9792232,11020493 +g1,16756:10108378,11020493 +g1,16756:10424524,11020493 +g1,16756:10740670,11020493 +g1,16756:11372962,11020493 +g1,16756:11689108,11020493 +g1,16756:12005254,11020493 +g1,16756:12321400,11020493 +g1,16756:12637546,11020493 +g1,16756:13269838,11020493 +g1,16756:13585984,11020493 +g1,16756:13902130,11020493 +g1,16756:14218276,11020493 +g1,16756:14534422,11020493 +g1,16756:15166714,11020493 +g1,16756:15482860,11020493 +g1,16756:15799006,11020493 +g1,16756:16115152,11020493 +g1,16756:17063589,11020493 +g1,16756:17379735,11020493 +g1,16756:17695881,11020493 +g1,16756:18012027,11020493 +g1,16756:18644319,11020493 +g1,16756:18960465,11020493 +g1,16756:19276611,11020493 +g1,16756:19592757,11020493 +g1,16756:19908903,11020493 +g1,16756:20541195,11020493 +g1,16756:20857341,11020493 +g1,16756:21173487,11020493 +g1,16756:21489633,11020493 +g1,16756:21805779,11020493 +g1,16756:22121925,11020493 +g1,16756:22754217,11020493 +g1,16756:23070363,11020493 +g1,16756:23386509,11020493 +h1,16756:24018800,11020493:0,0,0 +k1,16756:32583029,11020493:8564229 +g1,16756:32583029,11020493 +) +(1,16756:6630773,11686671:25952256,388497,9436 +h1,16756:6630773,11686671:0,0,0 +g1,16756:7579210,11686671 +g1,16756:8211502,11686671 +g1,16756:8527648,11686671 +g1,16756:8843794,11686671 +g1,16756:9159940,11686671 +g1,16756:9792232,11686671 +g1,16756:10108378,11686671 +g1,16756:10424524,11686671 +g1,16756:10740670,11686671 +g1,16756:11372962,11686671 +g1,16756:11689108,11686671 +g1,16756:12005254,11686671 +g1,16756:12321400,11686671 +g1,16756:12637546,11686671 +g1,16756:13269838,11686671 +g1,16756:13585984,11686671 +g1,16756:13902130,11686671 +g1,16756:14218276,11686671 +g1,16756:14534422,11686671 +g1,16756:15166714,11686671 +g1,16756:15482860,11686671 +g1,16756:15799006,11686671 +g1,16756:16115152,11686671 +g1,16756:17063589,11686671 +g1,16756:17379735,11686671 +g1,16756:17695881,11686671 +g1,16756:18012027,11686671 +g1,16756:18644319,11686671 +g1,16756:18960465,11686671 +g1,16756:19276611,11686671 +g1,16756:19592757,11686671 +g1,16756:19908903,11686671 +g1,16756:20541195,11686671 +g1,16756:20857341,11686671 +g1,16756:21173487,11686671 +g1,16756:21489633,11686671 +g1,16756:21805779,11686671 +g1,16756:22121925,11686671 +g1,16756:22754217,11686671 +g1,16756:23070363,11686671 +g1,16756:23386509,11686671 +h1,16756:24018800,11686671:0,0,0 +k1,16756:32583029,11686671:8564229 +g1,16756:32583029,11686671 +) +(1,16756:6630773,12352849:25952256,388497,9436 +h1,16756:6630773,12352849:0,0,0 +g1,16756:7579210,12352849 +g1,16756:8211502,12352849 +g1,16756:8527648,12352849 +g1,16756:8843794,12352849 +g1,16756:9159940,12352849 +g1,16756:9792232,12352849 +g1,16756:10108378,12352849 +g1,16756:10424524,12352849 +g1,16756:10740670,12352849 +g1,16756:11372962,12352849 +g1,16756:11689108,12352849 +g1,16756:12005254,12352849 +g1,16756:12321400,12352849 +g1,16756:12637546,12352849 +g1,16756:13269838,12352849 +g1,16756:13585984,12352849 +g1,16756:13902130,12352849 +g1,16756:14218276,12352849 +g1,16756:14534422,12352849 +g1,16756:15166714,12352849 +g1,16756:15482860,12352849 +g1,16756:15799006,12352849 +g1,16756:16115152,12352849 +g1,16756:17063589,12352849 +g1,16756:17379735,12352849 +g1,16756:17695881,12352849 +g1,16756:18012027,12352849 +g1,16756:18644319,12352849 +g1,16756:18960465,12352849 +g1,16756:19276611,12352849 +g1,16756:19592757,12352849 +g1,16756:19908903,12352849 +g1,16756:20541195,12352849 +g1,16756:20857341,12352849 +g1,16756:21173487,12352849 +g1,16756:21489633,12352849 +g1,16756:21805779,12352849 +g1,16756:22121925,12352849 +g1,16756:22754217,12352849 +g1,16756:23070363,12352849 +g1,16756:23386509,12352849 +h1,16756:24018800,12352849:0,0,0 +k1,16756:32583029,12352849:8564229 +g1,16756:32583029,12352849 +) +(1,16756:6630773,13019027:25952256,388497,9436 +h1,16756:6630773,13019027:0,0,0 +g1,16756:7579210,13019027 +g1,16756:8211502,13019027 +g1,16756:8527648,13019027 +g1,16756:8843794,13019027 +g1,16756:9159940,13019027 +g1,16756:9792232,13019027 +g1,16756:10108378,13019027 +g1,16756:10424524,13019027 +g1,16756:10740670,13019027 +g1,16756:11372962,13019027 +g1,16756:11689108,13019027 +g1,16756:12005254,13019027 +g1,16756:12321400,13019027 +g1,16756:12637546,13019027 +g1,16756:13269838,13019027 +g1,16756:13585984,13019027 +g1,16756:13902130,13019027 +g1,16756:14218276,13019027 +g1,16756:14534422,13019027 +g1,16756:15166714,13019027 +g1,16756:15482860,13019027 +g1,16756:15799006,13019027 +g1,16756:16115152,13019027 +g1,16756:17063589,13019027 +g1,16756:17379735,13019027 +g1,16756:17695881,13019027 +g1,16756:18012027,13019027 +g1,16756:18644319,13019027 +g1,16756:18960465,13019027 +g1,16756:19276611,13019027 +g1,16756:19592757,13019027 +g1,16756:19908903,13019027 +g1,16756:20541195,13019027 +g1,16756:20857341,13019027 +g1,16756:21173487,13019027 +g1,16756:21489633,13019027 +g1,16756:21805779,13019027 +g1,16756:22121925,13019027 +g1,16756:22754217,13019027 +g1,16756:23070363,13019027 +g1,16756:23386509,13019027 +h1,16756:24018800,13019027:0,0,0 +k1,16756:32583029,13019027:8564229 +g1,16756:32583029,13019027 +) +(1,16756:6630773,13685205:25952256,388497,9436 +h1,16756:6630773,13685205:0,0,0 +g1,16756:7579210,13685205 +g1,16756:8211502,13685205 +g1,16756:8527648,13685205 +g1,16756:8843794,13685205 +g1,16756:9159940,13685205 +g1,16756:9792232,13685205 +g1,16756:10108378,13685205 +g1,16756:10424524,13685205 +g1,16756:10740670,13685205 +g1,16756:11372962,13685205 +g1,16756:11689108,13685205 +g1,16756:12005254,13685205 +g1,16756:12321400,13685205 +g1,16756:12637546,13685205 +g1,16756:13269838,13685205 +g1,16756:13585984,13685205 +g1,16756:13902130,13685205 +g1,16756:14218276,13685205 +g1,16756:14534422,13685205 +g1,16756:15166714,13685205 +g1,16756:15482860,13685205 +g1,16756:15799006,13685205 +g1,16756:16115152,13685205 +g1,16756:17063589,13685205 +g1,16756:17379735,13685205 +g1,16756:17695881,13685205 +g1,16756:18012027,13685205 +g1,16756:18644319,13685205 +g1,16756:18960465,13685205 +g1,16756:19276611,13685205 +g1,16756:19592757,13685205 +g1,16756:19908903,13685205 +g1,16756:20541195,13685205 +g1,16756:20857341,13685205 +g1,16756:21173487,13685205 +g1,16756:21489633,13685205 +g1,16756:21805779,13685205 +g1,16756:22121925,13685205 +g1,16756:22754217,13685205 +g1,16756:23070363,13685205 +g1,16756:23386509,13685205 +h1,16756:24018800,13685205:0,0,0 +k1,16756:32583029,13685205:8564229 +g1,16756:32583029,13685205 +) +] +) +g1,16757:32583029,13694641 +g1,16757:6630773,13694641 +g1,16757:6630773,13694641 +g1,16757:32583029,13694641 +g1,16757:32583029,13694641 +) +h1,16757:6630773,13891249:0,0,0 +(1,16761:6630773,15047309:25952256,513147,134348 +h1,16760:6630773,15047309:983040,0,0 +k1,16760:8953275,15047309:195859 +k1,16760:9915250,15047309:195859 +k1,16760:13136906,15047309:195859 +k1,16760:13948803,15047309:195859 +k1,16760:16772000,15047309:195859 +k1,16760:18978504,15047309:195859 +k1,16760:20563726,15047309:195859 +k1,16760:22966183,15047309:195860 +k1,16760:23923570,15047309:195859 +k1,16760:26558679,15047309:195859 +k1,16760:27826707,15047309:195859 +k1,16760:28788682,15047309:195859 +k1,16760:29643833,15047309:195859 +k1,16760:31478747,15047309:195859 +k1,16760:32583029,15047309:0 +) +(1,16761:6630773,15888797:25952256,505283,7863 +g1,16760:7577768,15888797 +g1,16760:10242461,15888797 +g1,16760:11093118,15888797 +g1,16760:12107615,15888797 +k1,16761:32583030,15888797:19576916 +g1,16761:32583030,15888797 +) +(1,16762:6630773,17980057:25952256,555811,12975 +(1,16762:6630773,17980057:2899444,534184,12975 +g1,16762:6630773,17980057 +g1,16762:9530217,17980057 +) +k1,16762:32583028,17980057:20449656 +g1,16762:32583028,17980057 +) +(1,16767:6630773,19214761:25952256,513147,134348 +k1,16766:9312234,19214761:146528 +k1,16766:11685018,19214761:146527 +k1,16766:12363043,19214761:146528 +k1,16766:13722641,19214761:146527 +k1,16766:17044388,19214761:146528 +k1,16766:18584866,19214761:146527 +k1,16766:21055956,19214761:146528 +k1,16766:21853912,19214761:146528 +k1,16766:23019524,19214761:146527 +k1,16766:25651833,19214761:146528 +k1,16766:26457652,19214761:146527 +k1,16766:29114864,19214761:146528 +k1,16766:32583029,19214761:0 +) +(1,16767:6630773,20056249:25952256,513147,134348 +k1,16766:7562531,20056249:248873 +k1,16766:9320043,20056249:248873 +k1,16766:12380410,20056249:248872 +k1,16766:15702266,20056249:248873 +k1,16766:17363440,20056249:248873 +k1,16766:18803758,20056249:248873 +k1,16766:20667437,20056249:248872 +k1,16766:23942107,20056249:248873 +k1,16766:25138631,20056249:248873 +k1,16766:26763105,20056249:248873 +k1,16766:28666761,20056249:248872 +k1,16766:29898674,20056249:248873 +k1,16767:32583029,20056249:0 +) +(1,16767:6630773,20897737:25952256,513147,126483 +k1,16766:8189320,20897737:226200 +k1,16766:9982486,20897737:226200 +k1,16766:11400131,20897737:226200 +k1,16766:13222132,20897737:226200 +k1,16766:14372390,20897737:226200 +k1,16766:15617675,20897737:226200 +k1,16766:17545845,20897737:226200 +k1,16766:19552003,20897737:226200 +k1,16766:22004460,20897737:226200 +k1,16766:24991036,20897737:226200 +k1,16766:27518205,20897737:226200 +k1,16766:29312682,20897737:226200 +k1,16766:30190310,20897737:226200 +k1,16766:32583029,20897737:0 +) +(1,16767:6630773,21739225:25952256,513147,126483 +k1,16766:7840568,21739225:190710 +k1,16766:10793622,21739225:190711 +k1,16766:13266296,21739225:190710 +k1,16766:15467651,21739225:190710 +k1,16766:16942867,21739225:190710 +k1,16766:19304130,21739225:190711 +k1,16766:20242606,21739225:190710 +k1,16766:22847662,21739225:190710 +k1,16766:25623767,21739225:190710 +k1,16766:26465906,21739225:190711 +k1,16766:27071450,21739225:190701 +k1,16766:29548712,21739225:190711 +k1,16766:31297213,21739225:190710 +k1,16766:32583029,21739225:0 +) +(1,16767:6630773,22580713:25952256,513147,134348 +k1,16766:9135105,22580713:240063 +k1,16766:11086314,22580713:240064 +k1,16766:12517822,22580713:240063 +k1,16766:14513595,22580713:240063 +k1,16766:17870551,22580713:240064 +k1,16766:18762042,22580713:240063 +k1,16766:20021190,22580713:240063 +k1,16766:24772096,22580713:240063 +k1,16766:25671452,22580713:240064 +k1,16766:27363137,22580713:240063 +k1,16766:28262492,22580713:240063 +k1,16766:30199283,22580713:240064 +k1,16766:31422386,22580713:240063 +k1,16767:32583029,22580713:0 +) +(1,16767:6630773,23422201:25952256,513147,126483 +k1,16766:8561735,23422201:194258 +k1,16766:9383829,23422201:194259 +k1,16766:11275469,23422201:194258 +k1,16766:13167766,23422201:194259 +k1,16766:14381109,23422201:194258 +k1,16766:17525143,23422201:194259 +k1,16766:18702441,23422201:194258 +k1,16766:21598749,23422201:194259 +k1,16766:24074971,23422201:194258 +k1,16766:26279875,23422201:194259 +k1,16766:27493218,23422201:194258 +k1,16766:30466204,23422201:194259 +(1,16766:30466204,23422201:0,452978,115847 +r1,16766:32583029,23422201:2116825,568825,115847 +k1,16766:30466204,23422201:-2116825 +) +(1,16766:30466204,23422201:2116825,452978,115847 +k1,16766:30466204,23422201:3277 +h1,16766:32579752,23422201:0,411205,112570 +) +k1,16766:32583029,23422201:0 +) +(1,16767:6630773,24263689:25952256,513147,134348 +k1,16766:8752232,24263689:161933 +k1,16766:10774733,24263689:161934 +k1,16766:12628806,24263689:161933 +k1,16766:16017733,24263689:161934 +k1,16766:19078979,24263689:161933 +k1,16766:20808534,24263689:161934 +k1,16766:21989552,24263689:161933 +k1,16766:23706000,24263689:161934 +k1,16766:26309804,24263689:161933 +k1,16766:29091867,24263689:161934 +k1,16766:31966991,24263689:161933 +k1,16767:32583029,24263689:0 +) +(1,16767:6630773,25105177:25952256,513147,134348 +k1,16766:8262014,25105177:209110 +k1,16766:9462695,25105177:209121 +k1,16766:10738086,25105177:209120 +k1,16766:14462557,25105177:209120 +k1,16766:17976658,25105177:209120 +k1,16766:18837207,25105177:209121 +k1,16766:21444289,25105177:209120 +k1,16766:24484564,25105177:209120 +k1,16766:26073872,25105177:209120 +k1,16766:29730842,25105177:209121 +k1,16766:31105192,25105177:209120 +k1,16767:32583029,25105177:0 +) +(1,16767:6630773,25946665:25952256,513147,126483 +k1,16766:10062179,25946665:175577 +k1,16766:13714440,25946665:175576 +k1,16766:14541445,25946665:175577 +k1,16766:16941314,25946665:175577 +k1,16766:19287443,25946665:175577 +k1,16766:20210785,25946665:175576 +k1,16766:23809307,25946665:175577 +k1,16766:25176329,25946665:175577 +k1,16766:26973922,25946665:175577 +k1,16766:27897264,25946665:175576 +k1,16766:29650293,25946665:175577 +k1,16766:32583029,25946665:0 +) +(1,16767:6630773,26788153:25952256,473825,126483 +g1,16766:7446040,26788153 +g1,16766:8001129,26788153 +g1,16766:10903063,26788153 +k1,16767:32583030,26788153:20151012 +g1,16767:32583030,26788153 +) +(1,16769:6630773,27629641:25952256,513147,126483 +h1,16768:6630773,27629641:983040,0,0 +k1,16768:8764748,27629641:197386 +k1,16768:10066416,27629641:197386 +k1,16768:11356288,27629641:197387 +k1,16768:14249170,27629641:197386 +(1,16768:14249170,27629641:0,452978,115847 +r1,16768:17772842,27629641:3523672,568825,115847 +k1,16768:14249170,27629641:-3523672 +) +(1,16768:14249170,27629641:3523672,452978,115847 +k1,16768:14249170,27629641:3277 +h1,16768:17769565,27629641:0,411205,112570 +) +k1,16768:17970228,27629641:197386 +k1,16768:18819042,27629641:197386 +k1,16768:21198122,27629641:197386 +k1,16768:21751369,27629641:197387 +(1,16768:21751369,27629641:0,414482,115847 +r1,16768:23164770,27629641:1413401,530329,115847 +k1,16768:21751369,27629641:-1413401 +) +(1,16768:21751369,27629641:1413401,414482,115847 +k1,16768:21751369,27629641:3277 +h1,16768:23161493,27629641:0,411205,112570 +) +k1,16768:23362156,27629641:197386 +k1,16768:24542582,27629641:197386 +k1,16768:26551383,27629641:197386 +k1,16768:27510298,27629641:197387 +k1,16768:28063544,27629641:197386 +k1,16768:30249292,27629641:197386 +k1,16768:32583029,27629641:0 +) +(1,16769:6630773,28471129:25952256,513147,126483 +k1,16768:7547665,28471129:249736 +k1,16768:9393202,28471129:249736 +k1,16768:10460826,28471129:249735 +k1,16768:11326600,28471129:249736 +k1,16768:12595421,28471129:249736 +k1,16768:15599635,28471129:249736 +k1,16768:18301728,28471129:249736 +k1,16768:19419815,28471129:249735 +k1,16768:21964622,28471129:249736 +k1,16768:23589959,28471129:249736 +k1,16768:24858780,28471129:249736 +k1,16768:26414649,28471129:249736 +k1,16768:27560917,28471129:249735 +k1,16768:29344851,28471129:249736 +k1,16768:30786032,28471129:249736 +k1,16768:32583029,28471129:0 +) +(1,16769:6630773,29312617:25952256,513147,134348 +k1,16768:9512045,29312617:168081 +k1,16768:10339418,29312617:168081 +k1,16768:11526583,29312617:168080 +k1,16768:13084027,29312617:168081 +k1,16768:15302074,29312617:168081 +k1,16768:18450732,29312617:168081 +k1,16768:18974673,29312617:168081 +k1,16768:21525643,29312617:168081 +(1,16768:21525643,29312617:0,414482,115847 +r1,16768:23290756,29312617:1765113,530329,115847 +k1,16768:21525643,29312617:-1765113 +) +(1,16768:21525643,29312617:1765113,414482,115847 +k1,16768:21525643,29312617:3277 +h1,16768:23287479,29312617:0,411205,112570 +) +k1,16768:23458836,29312617:168080 +k1,16768:26988914,29312617:168081 +k1,16768:27512855,29312617:168081 +k1,16768:29962900,29312617:168081 +k1,16768:32583029,29312617:0 +) +(1,16769:6630773,30154105:25952256,505283,115847 +g1,16768:8807879,30154105 +g1,16768:10198553,30154105 +(1,16768:10198553,30154105:0,452978,115847 +r1,16768:14425649,30154105:4227096,568825,115847 +k1,16768:10198553,30154105:-4227096 +) +(1,16768:10198553,30154105:4227096,452978,115847 +k1,16768:10198553,30154105:3277 +h1,16768:14422372,30154105:0,411205,112570 +) +g1,16768:14624878,30154105 +g1,16768:16218058,30154105 +g1,16768:18128432,30154105 +g1,16768:21006773,30154105 +g1,16768:21892164,30154105 +g1,16768:22506236,30154105 +g1,16768:24086309,30154105 +k1,16769:32583029,30154105:6312405 +g1,16769:32583029,30154105 +) +v1,16771:6630773,31134855:0,393216,0 +(1,16785:6630773,36753161:25952256,6011522,196608 +g1,16785:6630773,36753161 +g1,16785:6630773,36753161 +g1,16785:6434165,36753161 +(1,16785:6434165,36753161:0,6011522,196608 +r1,16785:32779637,36753161:26345472,6208130,196608 +k1,16785:6434165,36753161:-26345472 +) +(1,16785:6434165,36753161:26345472,6011522,196608 +[1,16785:6630773,36753161:25952256,5814914,0 +(1,16773:6630773,31348765:25952256,410518,101187 +(1,16772:6630773,31348765:0,0,0 +g1,16772:6630773,31348765 +g1,16772:6630773,31348765 +g1,16772:6303093,31348765 +(1,16772:6303093,31348765:0,0,0 +) +g1,16772:6630773,31348765 +) +g1,16773:10108376,31348765 +g1,16773:11056814,31348765 +g1,16773:15482854,31348765 +g1,16773:16115146,31348765 +k1,16773:16115146,31348765:0 +h1,16773:23070351,31348765:0,0,0 +k1,16773:32583029,31348765:9512678 +g1,16773:32583029,31348765 +) +(1,16774:6630773,32014943:25952256,404226,101187 +h1,16774:6630773,32014943:0,0,0 +g1,16774:11689105,32014943 +g1,16774:13902127,32014943 +h1,16774:15166709,32014943:0,0,0 +k1,16774:32583029,32014943:17416320 +g1,16774:32583029,32014943 +) +(1,16784:6630773,32746657:25952256,404226,9436 +(1,16776:6630773,32746657:0,0,0 +g1,16776:6630773,32746657 +g1,16776:6630773,32746657 +g1,16776:6303093,32746657 +(1,16776:6303093,32746657:0,0,0 +) +g1,16776:6630773,32746657 +) +g1,16784:7579210,32746657 +g1,16784:8211502,32746657 +g1,16784:8843794,32746657 +g1,16784:11372960,32746657 +g1,16784:12005252,32746657 +g1,16784:12637544,32746657 +h1,16784:12953690,32746657:0,0,0 +k1,16784:32583030,32746657:19629340 +g1,16784:32583030,32746657 +) +(1,16784:6630773,33412835:25952256,404226,101187 +h1,16784:6630773,33412835:0,0,0 +g1,16784:7579210,33412835 +g1,16784:7895356,33412835 +g1,16784:8211502,33412835 +g1,16784:10108376,33412835 +g1,16784:10424522,33412835 +g1,16784:10740668,33412835 +g1,16784:11056814,33412835 +g1,16784:11372960,33412835 +g1,16784:11689106,33412835 +g1,16784:12005252,33412835 +g1,16784:12321398,33412835 +g1,16784:12637544,33412835 +g1,16784:12953690,33412835 +g1,16784:13269836,33412835 +g1,16784:15166710,33412835 +g1,16784:18328167,33412835 +g1,16784:20541187,33412835 +g1,16784:20857333,33412835 +g1,16784:21173479,33412835 +g1,16784:22438062,33412835 +g1,16784:24967228,33412835 +h1,16784:28760976,33412835:0,0,0 +k1,16784:32583029,33412835:3822053 +g1,16784:32583029,33412835 +) +(1,16784:6630773,34079013:25952256,404226,6290 +h1,16784:6630773,34079013:0,0,0 +g1,16784:7579210,34079013 +g1,16784:7895356,34079013 +g1,16784:8211502,34079013 +g1,16784:10108377,34079013 +g1,16784:10424523,34079013 +g1,16784:10740669,34079013 +g1,16784:11056815,34079013 +g1,16784:11372961,34079013 +g1,16784:11689107,34079013 +g1,16784:12005253,34079013 +g1,16784:15166710,34079013 +g1,16784:15482856,34079013 +g1,16784:15799002,34079013 +g1,16784:16115148,34079013 +g1,16784:16431294,34079013 +g1,16784:18328169,34079013 +g1,16784:18644315,34079013 +g1,16784:20541190,34079013 +g1,16784:22438065,34079013 +g1,16784:22754211,34079013 +g1,16784:23070357,34079013 +g1,16784:24967232,34079013 +k1,16784:24967232,34079013:0 +h1,16784:26864106,34079013:0,0,0 +k1,16784:32583029,34079013:5718923 +g1,16784:32583029,34079013 +) +(1,16784:6630773,34745191:25952256,404226,82312 +h1,16784:6630773,34745191:0,0,0 +g1,16784:7579210,34745191 +g1,16784:8211502,34745191 +g1,16784:8527648,34745191 +g1,16784:8843794,34745191 +g1,16784:9159940,34745191 +g1,16784:9476086,34745191 +g1,16784:10108378,34745191 +g1,16784:10740670,34745191 +g1,16784:13902127,34745191 +g1,16784:15166710,34745191 +g1,16784:15482856,34745191 +g1,16784:15799002,34745191 +g1,16784:16115148,34745191 +g1,16784:16431294,34745191 +g1,16784:16747440,34745191 +g1,16784:17063586,34745191 +g1,16784:17379732,34745191 +g1,16784:17695878,34745191 +g1,16784:18328170,34745191 +g1,16784:18644316,34745191 +g1,16784:18960462,34745191 +g1,16784:19276608,34745191 +g1,16784:19592754,34745191 +g1,16784:19908900,34745191 +g1,16784:20541192,34745191 +g1,16784:20857338,34745191 +g1,16784:21173484,34745191 +g1,16784:21489630,34745191 +g1,16784:22438067,34745191 +g1,16784:22754213,34745191 +g1,16784:23070359,34745191 +g1,16784:23386505,34745191 +g1,16784:23702651,34745191 +g1,16784:24018797,34745191 +g1,16784:24334943,34745191 +g1,16784:24967235,34745191 +k1,16784:24967235,34745191:0 +h1,16784:28128692,34745191:0,0,0 +k1,16784:32583029,34745191:4454337 +g1,16784:32583029,34745191 +) +(1,16784:6630773,35411369:25952256,404226,82312 +h1,16784:6630773,35411369:0,0,0 +g1,16784:7579210,35411369 +g1,16784:8211502,35411369 +g1,16784:8527648,35411369 +g1,16784:8843794,35411369 +g1,16784:9159940,35411369 +g1,16784:9476086,35411369 +g1,16784:10108378,35411369 +g1,16784:10740670,35411369 +g1,16784:13902127,35411369 +g1,16784:15166710,35411369 +g1,16784:15482856,35411369 +g1,16784:15799002,35411369 +g1,16784:16115148,35411369 +g1,16784:16431294,35411369 +g1,16784:16747440,35411369 +g1,16784:17063586,35411369 +g1,16784:17379732,35411369 +g1,16784:17695878,35411369 +g1,16784:18328170,35411369 +g1,16784:18644316,35411369 +g1,16784:18960462,35411369 +g1,16784:19276608,35411369 +g1,16784:19592754,35411369 +g1,16784:19908900,35411369 +g1,16784:20541192,35411369 +g1,16784:20857338,35411369 +g1,16784:21173484,35411369 +g1,16784:21489630,35411369 +g1,16784:22438067,35411369 +g1,16784:22754213,35411369 +g1,16784:23070359,35411369 +g1,16784:23386505,35411369 +g1,16784:23702651,35411369 +g1,16784:24018797,35411369 +g1,16784:24334943,35411369 +g1,16784:24967235,35411369 +k1,16784:24967235,35411369:0 +h1,16784:28128692,35411369:0,0,0 +k1,16784:32583029,35411369:4454337 +g1,16784:32583029,35411369 +) +(1,16784:6630773,36077547:25952256,404226,82312 +h1,16784:6630773,36077547:0,0,0 +g1,16784:7579210,36077547 +g1,16784:8211502,36077547 +g1,16784:8527648,36077547 +g1,16784:8843794,36077547 +g1,16784:9159940,36077547 +g1,16784:9476086,36077547 +g1,16784:10108378,36077547 +g1,16784:10740670,36077547 +g1,16784:13902127,36077547 +g1,16784:15166710,36077547 +g1,16784:15482856,36077547 +g1,16784:15799002,36077547 +g1,16784:16115148,36077547 +g1,16784:16431294,36077547 +g1,16784:16747440,36077547 +g1,16784:17063586,36077547 +g1,16784:17379732,36077547 +g1,16784:17695878,36077547 +g1,16784:18328170,36077547 +g1,16784:18644316,36077547 +g1,16784:18960462,36077547 +g1,16784:19276608,36077547 +g1,16784:19592754,36077547 +g1,16784:19908900,36077547 +g1,16784:20541192,36077547 +g1,16784:20857338,36077547 +g1,16784:21173484,36077547 +g1,16784:22438067,36077547 +g1,16784:22754213,36077547 +g1,16784:23070359,36077547 +g1,16784:23386505,36077547 +g1,16784:23702651,36077547 +g1,16784:24018797,36077547 +g1,16784:24334943,36077547 +g1,16784:24967235,36077547 +k1,16784:24967235,36077547:0 +h1,16784:28128692,36077547:0,0,0 +k1,16784:32583029,36077547:4454337 +g1,16784:32583029,36077547 +) +(1,16784:6630773,36743725:25952256,404226,9436 +h1,16784:6630773,36743725:0,0,0 +g1,16784:7579210,36743725 +g1,16784:8211502,36743725 +g1,16784:9476085,36743725 +g1,16784:11056814,36743725 +g1,16784:11689106,36743725 +g1,16784:13269835,36743725 +h1,16784:14534418,36743725:0,0,0 +k1,16784:32583030,36743725:18048612 +g1,16784:32583030,36743725 +) +] +) +g1,16785:32583029,36753161 +g1,16785:6630773,36753161 +g1,16785:6630773,36753161 +g1,16785:32583029,36753161 +g1,16785:32583029,36753161 +) +h1,16785:6630773,36949769:0,0,0 +(1,16789:6630773,38105829:25952256,505283,126483 +h1,16788:6630773,38105829:983040,0,0 +g1,16788:8440877,38105829 +g1,16788:9843347,38105829 +g1,16788:11583327,38105829 +g1,16788:12801641,38105829 +g1,16788:14712015,38105829 +g1,16788:15902804,38105829 +g1,16788:18910906,38105829 +k1,16789:32583029,38105829:10813443 +g1,16789:32583029,38105829 +) +(1,16791:6630773,38947317:25952256,513147,134348 +h1,16790:6630773,38947317:983040,0,0 +g1,16790:9448165,38947317 +g1,16790:10515746,38947317 +g1,16790:12896669,38947317 +g1,16790:13866601,38947317 +g1,16790:15991933,38947317 +(1,16790:15991933,38947317:0,414482,115847 +r1,16790:17405334,38947317:1413401,530329,115847 +k1,16790:15991933,38947317:-1413401 +) +(1,16790:15991933,38947317:1413401,414482,115847 +k1,16790:15991933,38947317:3277 +h1,16790:17402057,38947317:0,411205,112570 +) +g1,16790:17604563,38947317 +g1,16790:18786832,38947317 +g1,16790:20797476,38947317 +g1,16790:21793623,38947317 +g1,16790:23675817,38947317 +k1,16791:32583029,38947317:7608944 +g1,16791:32583029,38947317 +) +v1,16793:6630773,39928067:0,393216,0 +(1,16820:6630773,45510161:25952256,5975310,196608 +g1,16820:6630773,45510161 +g1,16820:6630773,45510161 +g1,16820:6434165,45510161 +(1,16820:6434165,45510161:0,5975310,196608 +r1,16820:32779637,45510161:26345472,6171918,196608 +k1,16820:6434165,45510161:-26345472 +) +(1,16820:6434165,45510161:26345472,5975310,196608 +[1,16820:6630773,45510161:25952256,5778702,0 +(1,16795:6630773,40141977:25952256,410518,76021 +(1,16794:6630773,40141977:0,0,0 +g1,16794:6630773,40141977 +g1,16794:6630773,40141977 +g1,16794:6303093,40141977 +(1,16794:6303093,40141977:0,0,0 +) +g1,16794:6630773,40141977 +) +g1,16795:10108376,40141977 +g1,16795:11056814,40141977 +g1,16795:15482854,40141977 +g1,16795:16115146,40141977 +h1,16795:23070351,40141977:0,0,0 +k1,16795:32583029,40141977:9512678 +g1,16795:32583029,40141977 +) +(1,16796:6630773,40808155:25952256,404226,6290 +h1,16796:6630773,40808155:0,0,0 +h1,16796:9792230,40808155:0,0,0 +k1,16796:32583030,40808155:22790800 +g1,16796:32583030,40808155 +) +(1,16806:6630773,41513093:25952256,404226,6290 +(1,16798:6630773,41513093:0,0,0 +g1,16798:6630773,41513093 +g1,16798:6630773,41513093 +g1,16798:6303093,41513093 +(1,16798:6303093,41513093:0,0,0 +) +g1,16798:6630773,41513093 +) +g1,16806:7579210,41513093 +g1,16806:8211502,41513093 +g1,16806:8843794,41513093 +g1,16806:11372960,41513093 +g1,16806:12321397,41513093 +g1,16806:12953689,41513093 +h1,16806:13269835,41513093:0,0,0 +k1,16806:32583029,41513093:19313194 +g1,16806:32583029,41513093 +) +(1,16806:6630773,42179271:25952256,379060,7863 +h1,16806:6630773,42179271:0,0,0 +g1,16806:7579210,42179271 +g1,16806:7895356,42179271 +g1,16806:8211502,42179271 +g1,16806:10740668,42179271 +g1,16806:11056814,42179271 +g1,16806:11372960,42179271 +g1,16806:11689106,42179271 +h1,16806:13585980,42179271:0,0,0 +k1,16806:32583028,42179271:18997048 +g1,16806:32583028,42179271 +) +(1,16806:6630773,42845449:25952256,404226,6290 +h1,16806:6630773,42845449:0,0,0 +g1,16806:7579210,42845449 +g1,16806:7895356,42845449 +g1,16806:8211502,42845449 +g1,16806:8527648,42845449 +g1,16806:8843794,42845449 +g1,16806:10740669,42845449 +k1,16806:10740669,42845449:0 +h1,16806:13585980,42845449:0,0,0 +k1,16806:32583028,42845449:18997048 +g1,16806:32583028,42845449 +) +(1,16806:6630773,43511627:25952256,404226,76021 +h1,16806:6630773,43511627:0,0,0 +g1,16806:7579210,43511627 +g1,16806:8211502,43511627 +g1,16806:8527648,43511627 +g1,16806:8843794,43511627 +g1,16806:9159940,43511627 +g1,16806:9476086,43511627 +g1,16806:10740669,43511627 +g1,16806:11372961,43511627 +h1,16806:13585981,43511627:0,0,0 +k1,16806:32583029,43511627:18997048 +g1,16806:32583029,43511627 +) +(1,16806:6630773,44177805:25952256,404226,76021 +h1,16806:6630773,44177805:0,0,0 +g1,16806:7579210,44177805 +g1,16806:8211502,44177805 +g1,16806:8527648,44177805 +g1,16806:8843794,44177805 +g1,16806:9159940,44177805 +g1,16806:9476086,44177805 +g1,16806:10740669,44177805 +g1,16806:11372961,44177805 +h1,16806:13585981,44177805:0,0,0 +k1,16806:32583029,44177805:18997048 +g1,16806:32583029,44177805 +) +(1,16806:6630773,44843983:25952256,404226,76021 +h1,16806:6630773,44843983:0,0,0 +g1,16806:7579210,44843983 +g1,16806:8211502,44843983 +g1,16806:8527648,44843983 +g1,16806:8843794,44843983 +g1,16806:9159940,44843983 +g1,16806:9476086,44843983 +g1,16806:10108378,44843983 +g1,16806:10424524,44843983 +g1,16806:10740670,44843983 +g1,16806:11372962,44843983 +h1,16806:13585982,44843983:0,0,0 +k1,16806:32583030,44843983:18997048 +g1,16806:32583030,44843983 +) +(1,16806:6630773,45510161:25952256,404226,6290 +h1,16806:6630773,45510161:0,0,0 +g1,16806:7579210,45510161 +g1,16806:8211502,45510161 +g1,16806:9476085,45510161 +g1,16806:11056814,45510161 +g1,16806:12005251,45510161 +g1,16806:13585980,45510161 +h1,16806:14850563,45510161:0,0,0 +k1,16806:32583029,45510161:17732466 +g1,16806:32583029,45510161 +) +] +) +g1,16820:32583029,45510161 +g1,16820:6630773,45510161 +g1,16820:6630773,45510161 +g1,16820:32583029,45510161 +g1,16820:32583029,45510161 +) +] +(1,16820:32583029,45706769:0,0,0 +g1,16820:32583029,45706769 +) +) +] +(1,16820:6630773,47279633:25952256,0,0 +h1,16820:6630773,47279633:25952256,0,0 +) +] +h1,16820:4262630,4025873:0,0,0 ] !34875 }326 -Input:2510:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2511:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2512:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2513:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2514:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2515:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2516:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2517:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2518:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2519:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!872 +Input:2507:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2508:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2509:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2510:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2511:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2512:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2513:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2514:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2515:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2516:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!932 {327 -[1,16819:4262630,47279633:28320399,43253760,0 -(1,16819:4262630,4025873:0,0,0 -[1,16819:-473657,4025873:25952256,0,0 -(1,16819:-473657,-710414:25952256,0,0 -h1,16819:-473657,-710414:0,0,0 -(1,16819:-473657,-710414:0,0,0 -(1,16819:-473657,-710414:0,0,0 -g1,16819:-473657,-710414 -(1,16819:-473657,-710414:65781,0,65781 -g1,16819:-407876,-710414 -[1,16819:-407876,-644633:0,0,0 +[1,16850:4262630,47279633:28320399,43253760,0 +(1,16850:4262630,4025873:0,0,0 +[1,16850:-473657,4025873:25952256,0,0 +(1,16850:-473657,-710414:25952256,0,0 +h1,16850:-473657,-710414:0,0,0 +(1,16850:-473657,-710414:0,0,0 +(1,16850:-473657,-710414:0,0,0 +g1,16850:-473657,-710414 +(1,16850:-473657,-710414:65781,0,65781 +g1,16850:-407876,-710414 +[1,16850:-407876,-644633:0,0,0 ] ) -k1,16819:-473657,-710414:-65781 +k1,16850:-473657,-710414:-65781 ) ) -k1,16819:25478599,-710414:25952256 -g1,16819:25478599,-710414 +k1,16850:25478599,-710414:25952256 +g1,16850:25478599,-710414 ) ] ) -[1,16819:6630773,47279633:25952256,43253760,0 -[1,16819:6630773,4812305:25952256,786432,0 -(1,16819:6630773,4812305:25952256,505283,126483 -(1,16819:6630773,4812305:25952256,505283,126483 -g1,16819:3078558,4812305 -[1,16819:3078558,4812305:0,0,0 -(1,16819:3078558,2439708:0,1703936,0 -k1,16819:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16819:2537886,2439708:1179648,16384,0 +[1,16850:6630773,47279633:25952256,43253760,0 +[1,16850:6630773,4812305:25952256,786432,0 +(1,16850:6630773,4812305:25952256,505283,126483 +(1,16850:6630773,4812305:25952256,505283,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,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16850:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16819:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16850:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16819:3078558,4812305:0,0,0 -(1,16819:3078558,2439708:0,1703936,0 -g1,16819:29030814,2439708 -g1,16819:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16819:36151628,1915420:16384,1179648,0 +[1,16850:3078558,4812305:0,0,0 +(1,16850:3078558,2439708:0,1703936,0 +g1,16850:29030814,2439708 +g1,16850:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16850:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16819:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16850:37855564,2439708:1179648,16384,0 ) ) -k1,16819:3078556,2439708:-34777008 +k1,16850:3078556,2439708:-34777008 ) ] -[1,16819:3078558,4812305:0,0,0 -(1,16819:3078558,49800853:0,16384,2228224 -k1,16819:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16819:2537886,49800853:1179648,16384,0 +[1,16850:3078558,4812305:0,0,0 +(1,16850:3078558,49800853:0,16384,2228224 +k1,16850:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16850:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16819:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16850:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16819:3078558,4812305:0,0,0 -(1,16819:3078558,49800853:0,16384,2228224 -g1,16819:29030814,49800853 -g1,16819:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16819:36151628,51504789:16384,1179648,0 +[1,16850:3078558,4812305:0,0,0 +(1,16850:3078558,49800853:0,16384,2228224 +g1,16850:29030814,49800853 +g1,16850:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16850:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16819:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16850:37855564,49800853:1179648,16384,0 ) ) -k1,16819:3078556,49800853:-34777008 -) -] -g1,16819:6630773,4812305 -k1,16819:25146660,4812305:17320510 -g1,16819:26880087,4812305 -g1,16819:29193507,4812305 -g1,16819:30603186,4812305 -) -) -] -[1,16819:6630773,45706769:25952256,40108032,0 -(1,16819:6630773,45706769:25952256,40108032,0 -(1,16819:6630773,45706769:0,0,0 -g1,16819:6630773,45706769 -) -[1,16819:6630773,45706769:25952256,40108032,0 -v1,16789:6630773,6254097:0,393216,0 -(1,16789:6630773,11869257:25952256,6008376,196608 -g1,16789:6630773,11869257 -g1,16789:6630773,11869257 -g1,16789:6434165,11869257 -(1,16789:6434165,11869257:0,6008376,196608 -r1,16789:32779637,11869257:26345472,6204984,196608 -k1,16789:6434165,11869257:-26345472 -) -(1,16789:6434165,11869257:26345472,6008376,196608 -[1,16789:6630773,11869257:25952256,5811768,0 -(1,16777:6630773,6468007:25952256,410518,76021 -(1,16776:6630773,6468007:0,0,0 -g1,16776:6630773,6468007 -g1,16776:6630773,6468007 -g1,16776:6303093,6468007 -(1,16776:6303093,6468007:0,0,0 -) -g1,16776:6630773,6468007 -) -g1,16777:10108376,6468007 -g1,16777:11056814,6468007 -k1,16777:11056814,6468007:0 -h1,16777:17695873,6468007:0,0,0 -k1,16777:32583029,6468007:14887156 -g1,16777:32583029,6468007 -) -(1,16778:6630773,7134185:25952256,404226,6290 -h1,16778:6630773,7134185:0,0,0 -h1,16778:9792230,7134185:0,0,0 -k1,16778:32583030,7134185:22790800 -g1,16778:32583030,7134185 -) -(1,16788:6630773,7865899:25952256,404226,6290 -(1,16780:6630773,7865899:0,0,0 -g1,16780:6630773,7865899 -g1,16780:6630773,7865899 -g1,16780:6303093,7865899 -(1,16780:6303093,7865899:0,0,0 -) -g1,16780:6630773,7865899 -) -g1,16788:7579210,7865899 -g1,16788:8211502,7865899 -g1,16788:8843794,7865899 -g1,16788:11372960,7865899 -g1,16788:12321397,7865899 -g1,16788:12953689,7865899 -h1,16788:13269835,7865899:0,0,0 -k1,16788:32583029,7865899:19313194 -g1,16788:32583029,7865899 -) -(1,16788:6630773,8532077:25952256,379060,7863 -h1,16788:6630773,8532077:0,0,0 -g1,16788:7579210,8532077 -g1,16788:7895356,8532077 -g1,16788:8211502,8532077 -g1,16788:10740668,8532077 -h1,16788:12637542,8532077:0,0,0 -k1,16788:32583030,8532077:19945488 -g1,16788:32583030,8532077 -) -(1,16788:6630773,9198255:25952256,410518,6290 -h1,16788:6630773,9198255:0,0,0 -g1,16788:7579210,9198255 -g1,16788:7895356,9198255 -g1,16788:8211502,9198255 -g1,16788:8527648,9198255 -g1,16788:8843794,9198255 -g1,16788:10740669,9198255 -k1,16788:10740669,9198255:0 -h1,16788:12321398,9198255:0,0,0 -k1,16788:32583030,9198255:20261632 -g1,16788:32583030,9198255 -) -(1,16788:6630773,9864433:25952256,404226,9436 -h1,16788:6630773,9864433:0,0,0 -g1,16788:7579210,9864433 -g1,16788:8211502,9864433 -g1,16788:8527648,9864433 -g1,16788:8843794,9864433 -g1,16788:9159940,9864433 -g1,16788:9476086,9864433 -g1,16788:10740669,9864433 -h1,16788:12321397,9864433:0,0,0 -k1,16788:32583029,9864433:20261632 -g1,16788:32583029,9864433 -) -(1,16788:6630773,10530611:25952256,404226,9436 -h1,16788:6630773,10530611:0,0,0 -g1,16788:7579210,10530611 -g1,16788:8211502,10530611 -g1,16788:8527648,10530611 -g1,16788:8843794,10530611 -g1,16788:9159940,10530611 -g1,16788:9476086,10530611 -g1,16788:10740669,10530611 -h1,16788:12321397,10530611:0,0,0 -k1,16788:32583029,10530611:20261632 -g1,16788:32583029,10530611 -) -(1,16788:6630773,11196789:25952256,404226,9436 -h1,16788:6630773,11196789:0,0,0 -g1,16788:7579210,11196789 -g1,16788:8211502,11196789 -g1,16788:8527648,11196789 -g1,16788:8843794,11196789 -g1,16788:9159940,11196789 -g1,16788:9476086,11196789 -g1,16788:10108378,11196789 -g1,16788:10424524,11196789 -g1,16788:10740670,11196789 -h1,16788:12321398,11196789:0,0,0 -k1,16788:32583030,11196789:20261632 -g1,16788:32583030,11196789 -) -(1,16788:6630773,11862967:25952256,404226,6290 -h1,16788:6630773,11862967:0,0,0 -g1,16788:7579210,11862967 -g1,16788:8211502,11862967 -g1,16788:9476085,11862967 -g1,16788:11056814,11862967 -g1,16788:12005251,11862967 -g1,16788:13585980,11862967 -h1,16788:14850563,11862967:0,0,0 -k1,16788:32583029,11862967:17732466 -g1,16788:32583029,11862967 -) -] -) -g1,16789:32583029,11869257 -g1,16789:6630773,11869257 -g1,16789:6630773,11869257 -g1,16789:32583029,11869257 -g1,16789:32583029,11869257 -) -h1,16789:6630773,12065865:0,0,0 -v1,16793:6630773,13955929:0,393216,0 -(1,16794:6630773,17906436:25952256,4343723,616038 -g1,16794:6630773,17906436 -(1,16794:6630773,17906436:25952256,4343723,616038 -(1,16794:6630773,18522474:25952256,4959761,0 -[1,16794:6630773,18522474:25952256,4959761,0 -(1,16794:6630773,18496260:25952256,4907333,0 -r1,16794:6656987,18496260:26214,4907333,0 -[1,16794:6656987,18496260:25899828,4907333,0 -(1,16794:6656987,17906436:25899828,3727685,0 -[1,16794:7246811,17906436:24720180,3727685,0 -(1,16794:7246811,15266125:24720180,1087374,126483 -k1,16793:8650647,15266125:194133 -k1,16793:11727053,15266125:194133 -k1,16793:12940271,15266125:194133 -k1,16793:15145049,15266125:194133 -k1,16793:18117909,15266125:194133 -k1,16793:19073571,15266125:194134 -k1,16793:22030047,15266125:194133 -(1,16793:22030047,15266125:0,452978,115847 -r1,16794:23443448,15266125:1413401,568825,115847 -k1,16793:22030047,15266125:-1413401 -) -(1,16793:22030047,15266125:1413401,452978,115847 -k1,16793:22030047,15266125:3277 -h1,16793:23440171,15266125:0,411205,112570 -) -k1,16793:23637581,15266125:194133 -k1,16793:26857511,15266125:194133 -k1,16793:28749682,15266125:194133 -k1,16793:31315563,15266125:194133 -k1,16793:31966991,15266125:0 -) -(1,16794:7246811,16107613:24720180,513147,126483 -k1,16793:8450767,16107613:184871 -k1,16793:10289111,16107613:184871 -k1,16793:11457023,16107613:184872 -k1,16793:12451264,16107613:184871 -k1,16793:14154604,16107613:184871 -k1,16793:15488321,16107613:184871 -(1,16793:15488321,16107613:0,452978,115847 -r1,16794:17956858,16107613:2468537,568825,115847 -k1,16793:15488321,16107613:-2468537 -) -(1,16793:15488321,16107613:2468537,452978,115847 -k1,16793:15488321,16107613:3277 -h1,16793:17953581,16107613:0,411205,112570 -) -k1,16793:18315399,16107613:184871 -(1,16793:18315399,16107613:0,452978,115847 -r1,16794:20080512,16107613:1765113,568825,115847 -k1,16793:18315399,16107613:-1765113 -) -(1,16793:18315399,16107613:1765113,452978,115847 -k1,16793:18315399,16107613:3277 -h1,16793:20077235,16107613:0,411205,112570 -) -k1,16793:20265384,16107613:184872 -k1,16793:21641700,16107613:184871 -(1,16793:21641700,16107613:0,452978,115847 -r1,16794:24110237,16107613:2468537,568825,115847 -k1,16793:21641700,16107613:-2468537 -) -(1,16793:21641700,16107613:2468537,452978,115847 -k1,16793:21641700,16107613:3277 -h1,16793:24106960,16107613:0,411205,112570 -) -k1,16793:24295108,16107613:184871 -k1,16793:25166141,16107613:184871 -k1,16793:26932397,16107613:184872 -k1,16793:27733306,16107613:184871 -k1,16793:29377008,16107613:184871 -k1,16794:31966991,16107613:0 -) -(1,16794:7246811,16949101:24720180,513147,126483 -k1,16793:8860122,16949101:172174 -k1,16793:9510053,16949101:172174 -k1,16793:10852700,16949101:172174 -k1,16793:12016434,16949101:172174 -k1,16793:14111434,16949101:172174 -k1,16793:15569425,16949101:172175 -k1,16793:16834084,16949101:172174 -(1,16793:16834084,16949101:0,452978,115847 -r1,16794:21061180,16949101:4227096,568825,115847 -k1,16793:16834084,16949101:-4227096 -) -(1,16793:16834084,16949101:4227096,452978,115847 -k1,16793:16834084,16949101:3277 -h1,16793:21057903,16949101:0,411205,112570 -) -k1,16793:21407024,16949101:172174 -(1,16793:21407024,16949101:0,452978,115847 -r1,16794:23523849,16949101:2116825,568825,115847 -k1,16793:21407024,16949101:-2116825 -) -(1,16793:21407024,16949101:2116825,452978,115847 -k1,16793:21407024,16949101:3277 -h1,16793:23520572,16949101:0,411205,112570 -) -k1,16793:23869693,16949101:172174 -(1,16793:23869693,16949101:0,452978,115847 -r1,16794:25634806,16949101:1765113,568825,115847 -k1,16793:23869693,16949101:-1765113 -) -(1,16793:23869693,16949101:1765113,452978,115847 -k1,16793:23869693,16949101:3277 -h1,16793:25631529,16949101:0,411205,112570 -) -k1,16793:25980650,16949101:172174 -(1,16793:25980650,16949101:0,452978,115847 -r1,16794:29504322,16949101:3523672,568825,115847 -k1,16793:25980650,16949101:-3523672 -) -(1,16793:25980650,16949101:3523672,452978,115847 -k1,16793:25980650,16949101:3277 -h1,16793:29501045,16949101:0,411205,112570 -) -k1,16793:29850166,16949101:172174 -(1,16793:29850166,16949101:0,452978,115847 -r1,16794:31966991,16949101:2116825,568825,115847 -k1,16793:29850166,16949101:-2116825 -) -(1,16793:29850166,16949101:2116825,452978,115847 -k1,16793:29850166,16949101:3277 -h1,16793:31963714,16949101:0,411205,112570 -) -k1,16793:31966991,16949101:0 -) -(1,16794:7246811,17790589:24720180,505283,115847 -g1,16793:8637485,17790589 -(1,16793:8637485,17790589:0,452978,115847 -r1,16794:10754310,17790589:2116825,568825,115847 -k1,16793:8637485,17790589:-2116825 -) -(1,16793:8637485,17790589:2116825,452978,115847 -k1,16793:8637485,17790589:3277 -h1,16793:10751033,17790589:0,411205,112570 -) -k1,16794:31966992,17790589:21039012 -g1,16794:31966992,17790589 -) -] -) -] -r1,16794:32583029,18496260:26214,4907333,0 -) -] -) -) -g1,16794:32583029,17906436 -) -h1,16794:6630773,18522474:0,0,0 -v1,16797:6630773,19888250:0,393216,0 -(1,16798:6630773,22881422:25952256,3386388,616038 -g1,16798:6630773,22881422 -(1,16798:6630773,22881422:25952256,3386388,616038 -(1,16798:6630773,23497460:25952256,4002426,0 -[1,16798:6630773,23497460:25952256,4002426,0 -(1,16798:6630773,23471246:25952256,3949998,0 -r1,16798:6656987,23471246:26214,3949998,0 -[1,16798:6656987,23471246:25899828,3949998,0 -(1,16798:6656987,22881422:25899828,2770350,0 -[1,16798:7246811,22881422:24720180,2770350,0 -(1,16798:7246811,21198446:24720180,1087374,134348 -k1,16797:8654483,21198446:197969 -k1,16797:9330208,21198446:197968 -k1,16797:10698650,21198446:197969 -k1,16797:11989104,21198446:197969 -k1,16797:12869957,21198446:197968 -k1,16797:14543141,21198446:197969 -k1,16797:15357148,21198446:197969 -k1,16797:16574201,21198446:197968 -k1,16797:18135974,21198446:197969 -k1,16797:19847169,21198446:197969 -k1,16797:21747107,21198446:197968 -k1,16797:25029200,21198446:197969 -k1,16797:27986235,21198446:197969 -k1,16797:28867088,21198446:197968 -k1,16797:29420917,21198446:197969 -k1,16798:31966991,21198446:0 -) -(1,16798:7246811,22039934:24720180,513147,134348 -k1,16797:10125043,22039934:261379 -k1,16797:13228719,22039934:261380 -k1,16797:14636323,22039934:261379 -k1,16797:17236026,22039934:261379 -k1,16797:18884147,22039934:261379 -k1,16797:20093178,22039934:261380 -k1,16797:22046697,22039934:261379 -k1,16797:23328472,22039934:261379 -k1,16797:24903193,22039934:261379 -k1,16797:26356018,22039934:261380 -k1,16797:28799091,22039934:261379 -k1,16797:30699525,22039934:261379 -k1,16798:31966991,22039934:0 -) -(1,16798:7246811,22881422:24720180,473825,0 -k1,16798:31966992,22881422:24131668 -g1,16798:31966992,22881422 -) -] -) -] -r1,16798:32583029,23471246:26214,3949998,0 -) -] -) -) -g1,16798:32583029,22881422 -) -h1,16798:6630773,23497460:0,0,0 -(1,16801:6630773,26829316:25952256,32768,229376 -(1,16801:6630773,26829316:0,32768,229376 -(1,16801:6630773,26829316:5505024,32768,229376 -r1,16801:12135797,26829316:5505024,262144,229376 -) -k1,16801:6630773,26829316:-5505024 -) -(1,16801:6630773,26829316:25952256,32768,0 -r1,16801:32583029,26829316:25952256,32768,0 -) -) -(1,16801:6630773,28433644:25952256,615776,14155 -(1,16801:6630773,28433644:2464678,582746,14155 -g1,16801:6630773,28433644 -g1,16801:9095451,28433644 -) -g1,16801:12351280,28433644 -k1,16801:32583030,28433644:18593612 -g1,16801:32583030,28433644 -) -(1,16805:6630773,29668348:25952256,513147,134348 -k1,16804:7483875,29668348:225267 -k1,16804:9401283,29668348:225268 -k1,16804:11534303,29668348:225267 -k1,16804:14740148,29668348:225268 -k1,16804:18473557,29668348:225267 -k1,16804:19890269,29668348:225267 -k1,16804:24273141,29668348:225268 -k1,16804:26888480,29668348:225241 -k1,16804:27645244,29668348:225267 -k1,16804:28226372,29668348:225268 -k1,16804:29805613,29668348:225267 -k1,16804:32583029,29668348:0 -) -(1,16805:6630773,30509836:25952256,513147,134348 -k1,16804:9023001,30509836:211845 -k1,16804:10182497,30509836:211845 -k1,16804:11413427,30509836:211845 -k1,16804:14578325,30509836:211846 -k1,16804:15449462,30509836:211845 -k1,16804:17224341,30509836:211845 -k1,16804:17906079,30509836:211845 -k1,16804:18649421,30509836:211845 -k1,16804:20147082,30509836:211845 -k1,16804:21872153,30509836:211845 -k1,16804:22700036,30509836:211845 -k1,16804:24613852,30509836:211846 -k1,16804:27525125,30509836:211845 -k1,16804:28353008,30509836:211845 -k1,16804:30450324,30509836:211845 -k1,16804:32051532,30509836:211845 -k1,16804:32583029,30509836:0 -) -(1,16805:6630773,31351324:25952256,513147,134348 -k1,16804:10230830,31351324:200049 -k1,16804:11082306,31351324:200048 -k1,16804:11638215,31351324:200049 -k1,16804:13122769,31351324:200048 -k1,16804:13982110,31351324:200049 -k1,16804:17242689,31351324:200048 -k1,16804:18588963,31351324:200049 -k1,16804:20182963,31351324:200049 -k1,16804:21772374,31351324:200048 -k1,16804:23384724,31351324:200049 -k1,16804:25152393,31351324:200048 -k1,16804:28765557,31351324:200049 -k1,16804:32583029,31351324:0 -) -(1,16805:6630773,32192812:25952256,513147,134348 -k1,16804:8300586,32192812:156587 -k1,16804:9108601,32192812:156587 -k1,16804:11049079,32192812:156588 -k1,16804:12689401,32192812:156587 -k1,16804:16459643,32192812:156587 -k1,16804:19006286,32192812:156545 -k1,16804:20476215,32192812:156587 -k1,16804:21624362,32192812:156587 -k1,16804:23802735,32192812:156587 -k1,16804:25031491,32192812:156587 -k1,16804:26280563,32192812:156587 -k1,16804:26793011,32192812:156588 -k1,16804:29129981,32192812:156587 -k1,16804:30571074,32192812:156587 -k1,16804:32583029,32192812:0 -) -(1,16805:6630773,33034300:25952256,513147,134348 -k1,16804:7851507,33034300:201649 -k1,16804:10400656,33034300:201649 -k1,16804:11261597,33034300:201649 -k1,16804:14432683,33034300:201650 -k1,16804:17946522,33034300:201649 -k1,16804:19599793,33034300:201649 -k1,16804:22312782,33034300:201649 -k1,16804:25194854,33034300:201649 -k1,16804:26790454,33034300:201649 -k1,16804:28011189,33034300:201650 -k1,16804:29602201,33034300:201649 -k1,16804:31409482,33034300:201649 -k1,16804:32227169,33034300:201649 -k1,16804:32583029,33034300:0 -) -(1,16805:6630773,33875788:25952256,513147,134348 -k1,16804:11451470,33875788:142082 -k1,16804:12784997,33875788:142082 -k1,16804:17129903,33875788:142082 -k1,16804:19626038,33875788:142082 -k1,16804:21653590,33875788:142081 -k1,16804:22327169,33875788:142082 -k1,16804:23999517,33875788:142082 -k1,16804:25089250,33875788:142082 -k1,16804:28184384,33875788:142082 -k1,16804:28985758,33875788:142082 -k1,16804:32583029,33875788:0 -) -(1,16805:6630773,34717276:25952256,505283,134348 -g1,16804:8400900,34717276 -g1,16804:9989492,34717276 -g1,16804:11453566,34717276 -g1,16804:14777552,34717276 -g1,16804:15786151,34717276 -g1,16804:16341240,34717276 -g1,16804:18666457,34717276 -g1,16804:19548571,34717276 -g1,16804:24809146,34717276 -k1,16805:32583029,34717276:6315707 -g1,16805:32583029,34717276 -) -(1,16807:6630773,35558764:25952256,513147,126483 -h1,16806:6630773,35558764:983040,0,0 -g1,16806:10635678,35558764 -g1,16806:13924930,35558764 -g1,16806:14810321,35558764 -k1,16807:32583029,35558764:15283651 -g1,16807:32583029,35558764 -) -(1,16809:7202902,36924540:24807998,513147,134348 -(1,16807:7202902,36924540:0,0,0 -g1,16807:7202902,36924540 -g1,16807:5892182,36924540 -g1,16807:5564502,36924540 -(1,16807:5564502,36924540:1310720,0,0 -k1,16807:6875222,36924540:1310720 -) -g1,16807:7202902,36924540 -) -k1,16808:7202902,36924540:0 -k1,16808:9999136,36924540:406136 -k1,16808:10936977,36924540:406344 -k1,16808:11699181,36924540:406344 -k1,16808:13040068,36924540:406344 -k1,16808:14105705,36924540:406345 -k1,16808:17271115,36924540:406344 -k1,16808:20295622,36924540:406344 -k1,16808:22476681,36924540:406344 -k1,16808:25566724,36924540:406344 -k1,16808:27164513,36924540:406344 -k1,16808:32010900,36924540:0 -) -(1,16809:7202902,37766028:24807998,513147,126483 -k1,16808:14486410,37766028:376013 -k1,16808:16251785,37766028:376012 -k1,16808:19138482,37766028:376013 -k1,16808:20799001,37766028:376013 -k1,16808:23701426,37766028:376012 -k1,16808:25096524,37766028:376013 -k1,16808:28238811,37766028:376012 -k1,16808:30819455,37766028:376013 -k1,16808:32010900,37766028:0 -) -(1,16809:7202902,38607516:24807998,513147,134348 -g1,16808:9781743,38607516 -g1,16808:10640264,38607516 -g1,16808:15373274,38607516 -g1,16808:18422008,38607516 -k1,16809:32010900,38607516:12025858 -g1,16809:32010900,38607516 -) -(1,16812:6630773,39973292:25952256,513147,134348 -h1,16811:6630773,39973292:983040,0,0 -k1,16811:8710282,39973292:278580 -k1,16811:12436712,39973292:278581 -k1,16811:15105310,39973292:278500 -k1,16811:16697233,39973292:278581 -k1,16811:17967373,39973292:278580 -k1,16811:19990521,39973292:278580 -k1,16811:20727199,39973292:278581 -k1,16811:21537276,39973292:278580 -k1,16811:23399861,39973292:278580 -k1,16811:24962948,39973292:278581 -k1,16811:25699625,39973292:278580 -k1,16811:26509702,39973292:278580 -k1,16811:29418243,39973292:278581 -k1,16811:30348251,39973292:278580 -k1,16812:32583029,39973292:0 -) -(1,16812:6630773,40814780:25952256,513147,134348 -k1,16811:8107518,40814780:206002 -k1,16811:9725820,40814780:206001 -k1,16811:10950907,40814780:206002 -k1,16811:12546271,40814780:206001 -k1,16811:14319894,40814780:206002 -k1,16811:17718810,40814780:206002 -k1,16811:20766452,40814780:206001 -k1,16811:22366405,40814780:206002 -k1,16811:25598203,40814780:206001 -k1,16811:26420243,40814780:206002 -k1,16811:29536698,40814780:206001 -k1,16811:31900144,40814780:206002 -k1,16811:32583029,40814780:0 -) -(1,16812:6630773,41656268:25952256,513147,134348 -k1,16811:10154088,41656268:197364 -k1,16811:11275510,41656268:197364 -k1,16811:12491959,41656268:197364 -k1,16811:14391293,41656268:197364 -k1,16811:16368615,41656268:197364 -k1,16811:17769220,41656268:197364 -k1,16811:20292458,41656268:197365 -k1,16811:21774328,41656268:197364 -k1,16811:24665222,41656268:197364 -k1,16811:25514014,41656268:197364 -k1,16811:27413348,41656268:197364 -k1,16811:29000075,41656268:197364 -k1,16811:30180479,41656268:197364 -k1,16811:32583029,41656268:0 -) -(1,16812:6630773,42497756:25952256,513147,134348 -k1,16811:10440938,42497756:231899 -k1,16811:13075387,42497756:231899 -k1,16811:13663146,42497756:231899 -k1,16811:16285110,42497756:231866 -k1,16811:17500049,42497756:231899 -k1,16811:18263445,42497756:231899 -k1,16811:20072796,42497756:231899 -k1,16811:20920733,42497756:231899 -k1,16811:22325071,42497756:231899 -k1,16811:23239855,42497756:231899 -k1,16811:25121951,42497756:231899 -k1,16811:28764344,42497756:231899 -k1,16811:31563944,42497756:231899 -k1,16811:32583029,42497756:0 -) -(1,16812:6630773,43339244:25952256,513147,134348 -k1,16811:7960974,43339244:173491 -k1,16811:10537016,43339244:173492 -k1,16811:13679943,43339244:173491 -k1,16811:17165625,43339244:173492 -k1,16811:18358201,43339244:173491 -k1,16811:21373334,43339244:173492 -k1,16811:22738270,43339244:173491 -k1,16811:25037750,43339244:173492 -k1,16811:26669417,43339244:173491 -k1,16811:28034354,43339244:173492 -k1,16811:30180479,43339244:173491 -k1,16811:32583029,43339244:0 -) -(1,16812:6630773,44180732:25952256,513147,7863 -g1,16811:7849087,44180732 -g1,16811:9437679,44180732 -g1,16811:10296200,44180732 -k1,16812:32583029,44180732:19669976 -g1,16812:32583029,44180732 -) -] -(1,16819:32583029,45706769:0,0,0 -g1,16819:32583029,45706769 -) -) -] -(1,16819:6630773,47279633:25952256,0,0 -h1,16819:6630773,47279633:25952256,0,0 -) -] -h1,16819:4262630,4025873:0,0,0 -] -!21936 +k1,16850:3078556,49800853:-34777008 +) +] +g1,16850:6630773,4812305 +k1,16850:25146660,4812305:17320510 +g1,16850:26880087,4812305 +g1,16850:29193507,4812305 +g1,16850:30603186,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 +v1,16820:6630773,6254097:0,393216,0 +(1,16820:6630773,11869257:25952256,6008376,196608 +g1,16820:6630773,11869257 +g1,16820:6630773,11869257 +g1,16820:6434165,11869257 +(1,16820:6434165,11869257:0,6008376,196608 +r1,16820:32779637,11869257:26345472,6204984,196608 +k1,16820:6434165,11869257:-26345472 +) +(1,16820:6434165,11869257:26345472,6008376,196608 +[1,16820:6630773,11869257:25952256,5811768,0 +(1,16808:6630773,6468007:25952256,410518,76021 +(1,16807:6630773,6468007:0,0,0 +g1,16807:6630773,6468007 +g1,16807:6630773,6468007 +g1,16807:6303093,6468007 +(1,16807:6303093,6468007:0,0,0 +) +g1,16807:6630773,6468007 +) +g1,16808:10108376,6468007 +g1,16808:11056814,6468007 +k1,16808:11056814,6468007:0 +h1,16808:17695873,6468007:0,0,0 +k1,16808:32583029,6468007:14887156 +g1,16808:32583029,6468007 +) +(1,16809:6630773,7134185:25952256,404226,6290 +h1,16809:6630773,7134185:0,0,0 +h1,16809:9792230,7134185:0,0,0 +k1,16809:32583030,7134185:22790800 +g1,16809:32583030,7134185 +) +(1,16819:6630773,7865899:25952256,404226,6290 +(1,16811:6630773,7865899:0,0,0 +g1,16811:6630773,7865899 +g1,16811:6630773,7865899 +g1,16811:6303093,7865899 +(1,16811:6303093,7865899:0,0,0 +) +g1,16811:6630773,7865899 +) +g1,16819:7579210,7865899 +g1,16819:8211502,7865899 +g1,16819:8843794,7865899 +g1,16819:11372960,7865899 +g1,16819:12321397,7865899 +g1,16819:12953689,7865899 +h1,16819:13269835,7865899:0,0,0 +k1,16819:32583029,7865899:19313194 +g1,16819:32583029,7865899 +) +(1,16819:6630773,8532077:25952256,379060,7863 +h1,16819:6630773,8532077:0,0,0 +g1,16819:7579210,8532077 +g1,16819:7895356,8532077 +g1,16819:8211502,8532077 +g1,16819:10740668,8532077 +h1,16819:12637542,8532077:0,0,0 +k1,16819:32583030,8532077:19945488 +g1,16819:32583030,8532077 +) +(1,16819:6630773,9198255:25952256,410518,6290 +h1,16819:6630773,9198255:0,0,0 +g1,16819:7579210,9198255 +g1,16819:7895356,9198255 +g1,16819:8211502,9198255 +g1,16819:8527648,9198255 +g1,16819:8843794,9198255 +g1,16819:10740669,9198255 +k1,16819:10740669,9198255:0 +h1,16819:12321398,9198255:0,0,0 +k1,16819:32583030,9198255:20261632 +g1,16819:32583030,9198255 +) +(1,16819:6630773,9864433:25952256,404226,9436 +h1,16819:6630773,9864433:0,0,0 +g1,16819:7579210,9864433 +g1,16819:8211502,9864433 +g1,16819:8527648,9864433 +g1,16819:8843794,9864433 +g1,16819:9159940,9864433 +g1,16819:9476086,9864433 +g1,16819:10740669,9864433 +h1,16819:12321397,9864433:0,0,0 +k1,16819:32583029,9864433:20261632 +g1,16819:32583029,9864433 +) +(1,16819:6630773,10530611:25952256,404226,9436 +h1,16819:6630773,10530611:0,0,0 +g1,16819:7579210,10530611 +g1,16819:8211502,10530611 +g1,16819:8527648,10530611 +g1,16819:8843794,10530611 +g1,16819:9159940,10530611 +g1,16819:9476086,10530611 +g1,16819:10740669,10530611 +h1,16819:12321397,10530611:0,0,0 +k1,16819:32583029,10530611:20261632 +g1,16819:32583029,10530611 +) +(1,16819:6630773,11196789:25952256,404226,9436 +h1,16819:6630773,11196789:0,0,0 +g1,16819:7579210,11196789 +g1,16819:8211502,11196789 +g1,16819:8527648,11196789 +g1,16819:8843794,11196789 +g1,16819:9159940,11196789 +g1,16819:9476086,11196789 +g1,16819:10108378,11196789 +g1,16819:10424524,11196789 +g1,16819:10740670,11196789 +h1,16819:12321398,11196789:0,0,0 +k1,16819:32583030,11196789:20261632 +g1,16819:32583030,11196789 +) +(1,16819:6630773,11862967:25952256,404226,6290 +h1,16819:6630773,11862967:0,0,0 +g1,16819:7579210,11862967 +g1,16819:8211502,11862967 +g1,16819:9476085,11862967 +g1,16819:11056814,11862967 +g1,16819:12005251,11862967 +g1,16819:13585980,11862967 +h1,16819:14850563,11862967:0,0,0 +k1,16819:32583029,11862967:17732466 +g1,16819:32583029,11862967 +) +] +) +g1,16820:32583029,11869257 +g1,16820:6630773,11869257 +g1,16820:6630773,11869257 +g1,16820:32583029,11869257 +g1,16820:32583029,11869257 +) +h1,16820:6630773,12065865:0,0,0 +v1,16824:6630773,13955929:0,393216,0 +(1,16825:6630773,17906436:25952256,4343723,616038 +g1,16825:6630773,17906436 +(1,16825:6630773,17906436:25952256,4343723,616038 +(1,16825:6630773,18522474:25952256,4959761,0 +[1,16825:6630773,18522474:25952256,4959761,0 +(1,16825:6630773,18496260:25952256,4907333,0 +r1,16825:6656987,18496260:26214,4907333,0 +[1,16825:6656987,18496260:25899828,4907333,0 +(1,16825:6656987,17906436:25899828,3727685,0 +[1,16825:7246811,17906436:24720180,3727685,0 +(1,16825:7246811,15266125:24720180,1087374,126483 +k1,16824:8735203,15266125:278689 +k1,16824:11896165,15266125:278689 +k1,16824:13193940,15266125:278690 +k1,16824:15483274,15266125:278689 +k1,16824:18540690,15266125:278689 +k1,16824:19580907,15266125:278689 +k1,16824:22621939,15266125:278689 +(1,16824:22621939,15266125:0,452978,115847 +r1,16825:24035340,15266125:1413401,568825,115847 +k1,16824:22621939,15266125:-1413401 +) +(1,16824:22621939,15266125:1413401,452978,115847 +k1,16824:22621939,15266125:3277 +h1,16824:24032063,15266125:0,411205,112570 +) +k1,16824:24314030,15266125:278690 +k1,16824:27618516,15266125:278689 +k1,16824:29595243,15266125:278689 +k1,16824:31966991,15266125:0 +) +(1,16825:7246811,16107613:24720180,513147,126483 +k1,16824:8138331,16107613:240092 +k1,16824:9397509,16107613:240093 +k1,16824:11291074,16107613:240092 +k1,16824:12514206,16107613:240092 +k1,16824:13563668,16107613:240092 +k1,16824:15322230,16107613:240093 +k1,16824:16711168,16107613:240092 +(1,16824:16711168,16107613:0,452978,115847 +r1,16825:19179705,16107613:2468537,568825,115847 +k1,16824:16711168,16107613:-2468537 +) +(1,16824:16711168,16107613:2468537,452978,115847 +k1,16824:16711168,16107613:3277 +h1,16824:19176428,16107613:0,411205,112570 +) +k1,16824:19593467,16107613:240092 +(1,16824:19593467,16107613:0,452978,115847 +r1,16825:21358580,16107613:1765113,568825,115847 +k1,16824:19593467,16107613:-1765113 +) +(1,16824:19593467,16107613:1765113,452978,115847 +k1,16824:19593467,16107613:3277 +h1,16824:21355303,16107613:0,411205,112570 +) +k1,16824:21598672,16107613:240092 +k1,16824:23030210,16107613:240093 +(1,16824:23030210,16107613:0,452978,115847 +r1,16825:25498747,16107613:2468537,568825,115847 +k1,16824:23030210,16107613:-2468537 +) +(1,16824:23030210,16107613:2468537,452978,115847 +k1,16824:23030210,16107613:3277 +h1,16824:25495470,16107613:0,411205,112570 +) +k1,16824:25738839,16107613:240092 +k1,16824:26665093,16107613:240092 +k1,16824:28486569,16107613:240092 +k1,16824:29342700,16107613:240093 +k1,16824:31041623,16107613:240092 +k1,16825:31966991,16107613:0 +) +(1,16825:7246811,16949101:24720180,513147,126483 +k1,16824:10587175,16949101:234613 +k1,16824:11299544,16949101:234612 +k1,16824:12704630,16949101:234613 +k1,16824:13930802,16949101:234612 +k1,16824:16088241,16949101:234613 +k1,16824:17608670,16949101:234613 +k1,16824:18935767,16949101:234612 +(1,16824:18935767,16949101:0,452978,115847 +r1,16825:23162863,16949101:4227096,568825,115847 +k1,16824:18935767,16949101:-4227096 +) +(1,16824:18935767,16949101:4227096,452978,115847 +k1,16824:18935767,16949101:3277 +h1,16824:23159586,16949101:0,411205,112570 +) +k1,16824:23571146,16949101:234613 +(1,16824:23571146,16949101:0,452978,115847 +r1,16825:25687971,16949101:2116825,568825,115847 +k1,16824:23571146,16949101:-2116825 +) +(1,16824:23571146,16949101:2116825,452978,115847 +k1,16824:23571146,16949101:3277 +h1,16824:25684694,16949101:0,411205,112570 +) +k1,16824:26096253,16949101:234612 +(1,16824:26096253,16949101:0,452978,115847 +r1,16825:27861366,16949101:1765113,568825,115847 +k1,16824:26096253,16949101:-1765113 +) +(1,16824:26096253,16949101:1765113,452978,115847 +k1,16824:26096253,16949101:3277 +h1,16824:27858089,16949101:0,411205,112570 +) +k1,16824:28269649,16949101:234613 +(1,16824:28269649,16949101:0,452978,115847 +r1,16825:31793321,16949101:3523672,568825,115847 +k1,16824:28269649,16949101:-3523672 +) +(1,16824:28269649,16949101:3523672,452978,115847 +k1,16824:28269649,16949101:3277 +h1,16824:31790044,16949101:0,411205,112570 +) +k1,16825:31966991,16949101:0 +) +(1,16825:7246811,17790589:24720180,505283,115847 +(1,16824:7246811,17790589:0,452978,115847 +r1,16825:9363636,17790589:2116825,568825,115847 +k1,16824:7246811,17790589:-2116825 +) +(1,16824:7246811,17790589:2116825,452978,115847 +k1,16824:7246811,17790589:3277 +h1,16824:9360359,17790589:0,411205,112570 +) +g1,16824:9562865,17790589 +g1,16824:10953539,17790589 +(1,16824:10953539,17790589:0,452978,115847 +r1,16825:13070364,17790589:2116825,568825,115847 +k1,16824:10953539,17790589:-2116825 +) +(1,16824:10953539,17790589:2116825,452978,115847 +k1,16824:10953539,17790589:3277 +h1,16824:13067087,17790589:0,411205,112570 +) +k1,16825:31966990,17790589:18722956 +g1,16825:31966990,17790589 +) +] +) +] +r1,16825:32583029,18496260:26214,4907333,0 +) +] +) +) +g1,16825:32583029,17906436 +) +h1,16825:6630773,18522474:0,0,0 +v1,16828:6630773,19888250:0,393216,0 +(1,16829:6630773,22881422:25952256,3386388,616038 +g1,16829:6630773,22881422 +(1,16829:6630773,22881422:25952256,3386388,616038 +(1,16829:6630773,23497460:25952256,4002426,0 +[1,16829:6630773,23497460:25952256,4002426,0 +(1,16829:6630773,23471246:25952256,3949998,0 +r1,16829:6656987,23471246:26214,3949998,0 +[1,16829:6656987,23471246:25899828,3949998,0 +(1,16829:6656987,22881422:25899828,2770350,0 +[1,16829:7246811,22881422:24720180,2770350,0 +(1,16829:7246811,21198446:24720180,1087374,134348 +k1,16828:8654483,21198446:197969 +k1,16828:9330208,21198446:197968 +k1,16828:10698650,21198446:197969 +k1,16828:11989104,21198446:197969 +k1,16828:12869957,21198446:197968 +k1,16828:14543141,21198446:197969 +k1,16828:15357148,21198446:197969 +k1,16828:16574201,21198446:197968 +k1,16828:18135974,21198446:197969 +k1,16828:19847169,21198446:197969 +k1,16828:21747107,21198446:197968 +k1,16828:25029200,21198446:197969 +k1,16828:27986235,21198446:197969 +k1,16828:28867088,21198446:197968 +k1,16828:29420917,21198446:197969 +k1,16829:31966991,21198446:0 +) +(1,16829:7246811,22039934:24720180,513147,134348 +k1,16828:10125043,22039934:261379 +k1,16828:13228719,22039934:261380 +k1,16828:14636323,22039934:261379 +k1,16828:17236026,22039934:261379 +k1,16828:18884147,22039934:261379 +k1,16828:20093178,22039934:261380 +k1,16828:22046697,22039934:261379 +k1,16828:23328472,22039934:261379 +k1,16828:24903193,22039934:261379 +k1,16828:26356018,22039934:261380 +k1,16828:28799091,22039934:261379 +k1,16828:30699525,22039934:261379 +k1,16829:31966991,22039934:0 +) +(1,16829:7246811,22881422:24720180,473825,0 +k1,16829:31966992,22881422:24131668 +g1,16829:31966992,22881422 +) +] +) +] +r1,16829:32583029,23471246:26214,3949998,0 +) +] +) +) +g1,16829:32583029,22881422 +) +h1,16829:6630773,23497460:0,0,0 +(1,16832:6630773,26829316:25952256,32768,229376 +(1,16832:6630773,26829316:0,32768,229376 +(1,16832:6630773,26829316:5505024,32768,229376 +r1,16832:12135797,26829316:5505024,262144,229376 +) +k1,16832:6630773,26829316:-5505024 +) +(1,16832:6630773,26829316:25952256,32768,0 +r1,16832:32583029,26829316:25952256,32768,0 +) +) +(1,16832:6630773,28433644:25952256,615776,14155 +(1,16832:6630773,28433644:2464678,582746,14155 +g1,16832:6630773,28433644 +g1,16832:9095451,28433644 +) +g1,16832:12351280,28433644 +k1,16832:32583030,28433644:18593612 +g1,16832:32583030,28433644 +) +(1,16836:6630773,29668348:25952256,513147,134348 +k1,16835:7483875,29668348:225267 +k1,16835:9401283,29668348:225268 +k1,16835:11534303,29668348:225267 +k1,16835:14740148,29668348:225268 +k1,16835:18473557,29668348:225267 +k1,16835:19890269,29668348:225267 +k1,16835:24273141,29668348:225268 +k1,16835:26888480,29668348:225241 +k1,16835:27645244,29668348:225267 +k1,16835:28226372,29668348:225268 +k1,16835:29805613,29668348:225267 +k1,16835:32583029,29668348:0 +) +(1,16836:6630773,30509836:25952256,513147,134348 +k1,16835:9023001,30509836:211845 +k1,16835:10182497,30509836:211845 +k1,16835:11413427,30509836:211845 +k1,16835:14578325,30509836:211846 +k1,16835:15449462,30509836:211845 +k1,16835:17224341,30509836:211845 +k1,16835:17906079,30509836:211845 +k1,16835:18649421,30509836:211845 +k1,16835:20147082,30509836:211845 +k1,16835:21872153,30509836:211845 +k1,16835:22700036,30509836:211845 +k1,16835:24613852,30509836:211846 +k1,16835:27525125,30509836:211845 +k1,16835:28353008,30509836:211845 +k1,16835:30450324,30509836:211845 +k1,16835:32051532,30509836:211845 +k1,16835:32583029,30509836:0 +) +(1,16836:6630773,31351324:25952256,513147,134348 +k1,16835:10230830,31351324:200049 +k1,16835:11082306,31351324:200048 +k1,16835:11638215,31351324:200049 +k1,16835:13122769,31351324:200048 +k1,16835:13982110,31351324:200049 +k1,16835:17242689,31351324:200048 +k1,16835:18588963,31351324:200049 +k1,16835:20182963,31351324:200049 +k1,16835:21772374,31351324:200048 +k1,16835:23384724,31351324:200049 +k1,16835:25152393,31351324:200048 +k1,16835:28765557,31351324:200049 +k1,16835:32583029,31351324:0 +) +(1,16836:6630773,32192812:25952256,513147,134348 +k1,16835:8300586,32192812:156587 +k1,16835:9108601,32192812:156587 +k1,16835:11049079,32192812:156588 +k1,16835:12689401,32192812:156587 +k1,16835:16459643,32192812:156587 +k1,16835:19006286,32192812:156545 +k1,16835:20476215,32192812:156587 +k1,16835:21624362,32192812:156587 +k1,16835:23802735,32192812:156587 +k1,16835:25031491,32192812:156587 +k1,16835:26280563,32192812:156587 +k1,16835:26793011,32192812:156588 +k1,16835:29129981,32192812:156587 +k1,16835:30571074,32192812:156587 +k1,16835:32583029,32192812:0 +) +(1,16836:6630773,33034300:25952256,513147,134348 +k1,16835:7851507,33034300:201649 +k1,16835:10400656,33034300:201649 +k1,16835:11261597,33034300:201649 +k1,16835:14432683,33034300:201650 +k1,16835:17946522,33034300:201649 +k1,16835:19599793,33034300:201649 +k1,16835:22312782,33034300:201649 +k1,16835:25194854,33034300:201649 +k1,16835:26790454,33034300:201649 +k1,16835:28011189,33034300:201650 +k1,16835:29602201,33034300:201649 +k1,16835:31409482,33034300:201649 +k1,16835:32227169,33034300:201649 +k1,16835:32583029,33034300:0 +) +(1,16836:6630773,33875788:25952256,513147,134348 +k1,16835:11451470,33875788:142082 +k1,16835:12784997,33875788:142082 +k1,16835:17129903,33875788:142082 +k1,16835:19626038,33875788:142082 +k1,16835:21653590,33875788:142081 +k1,16835:22327169,33875788:142082 +k1,16835:23999517,33875788:142082 +k1,16835:25089250,33875788:142082 +k1,16835:28184384,33875788:142082 +k1,16835:28985758,33875788:142082 +k1,16835:32583029,33875788:0 +) +(1,16836:6630773,34717276:25952256,505283,134348 +g1,16835:8400900,34717276 +g1,16835:9989492,34717276 +g1,16835:11453566,34717276 +g1,16835:14777552,34717276 +g1,16835:15786151,34717276 +g1,16835:16341240,34717276 +g1,16835:18666457,34717276 +g1,16835:19548571,34717276 +g1,16835:24809146,34717276 +k1,16836:32583029,34717276:6315707 +g1,16836:32583029,34717276 +) +(1,16838:6630773,35558764:25952256,513147,126483 +h1,16837:6630773,35558764:983040,0,0 +g1,16837:10635678,35558764 +g1,16837:13924930,35558764 +g1,16837:14810321,35558764 +k1,16838:32583029,35558764:15283651 +g1,16838:32583029,35558764 +) +(1,16840:7202902,36924540:24807998,513147,134348 +(1,16838:7202902,36924540:0,0,0 +g1,16838:7202902,36924540 +g1,16838:5892182,36924540 +g1,16838:5564502,36924540 +(1,16838:5564502,36924540:1310720,0,0 +k1,16838:6875222,36924540:1310720 +) +g1,16838:7202902,36924540 +) +k1,16839:7202902,36924540:0 +k1,16839:9999136,36924540:406136 +k1,16839:10936977,36924540:406344 +k1,16839:11699181,36924540:406344 +k1,16839:13040068,36924540:406344 +k1,16839:14105705,36924540:406345 +k1,16839:17271115,36924540:406344 +k1,16839:20295622,36924540:406344 +k1,16839:22476681,36924540:406344 +k1,16839:25566724,36924540:406344 +k1,16839:27164513,36924540:406344 +k1,16839:32010900,36924540:0 +) +(1,16840:7202902,37766028:24807998,513147,126483 +k1,16839:14266591,37766028:156194 +k1,16839:15812148,37766028:156194 +k1,16839:18479026,37766028:156194 +k1,16839:19919726,37766028:156194 +k1,16839:22602333,37766028:156194 +k1,16839:23777612,37766028:156194 +k1,16839:26700081,37766028:156194 +k1,16839:29060906,37766028:156194 +k1,16839:30408545,37766028:156194 +k1,16840:32010900,37766028:0 +) +(1,16840:7202902,38607516:24807998,513147,134348 +g1,16839:8392380,38607516 +g1,16839:9250901,38607516 +g1,16839:13983911,38607516 +g1,16839:17032645,38607516 +k1,16840:32010900,38607516:13415221 +g1,16840:32010900,38607516 +) +(1,16843:6630773,39973292:25952256,513147,134348 +h1,16842:6630773,39973292:983040,0,0 +k1,16842:8743006,39973292:311304 +k1,16842:12502159,39973292:311304 +k1,16842:15203448,39973292:311191 +k1,16842:16828094,39973292:311304 +k1,16842:18130958,39973292:311304 +k1,16842:20186830,39973292:311304 +k1,16842:20956231,39973292:311304 +k1,16842:21799032,39973292:311304 +k1,16842:23694341,39973292:311304 +k1,16842:25290150,39973292:311303 +k1,16842:26059551,39973292:311304 +k1,16842:26902352,39973292:311304 +k1,16842:29843616,39973292:311304 +k1,16842:30806348,39973292:311304 +k1,16843:32583029,39973292:0 +) +(1,16843:6630773,40814780:25952256,513147,134348 +k1,16842:8527440,40814780:167827 +k1,16842:10107568,40814780:167827 +k1,16842:11294479,40814780:167826 +k1,16842:12851669,40814780:167827 +k1,16842:14587117,40814780:167827 +k1,16842:17947858,40814780:167827 +k1,16842:20957326,40814780:167827 +k1,16842:22519104,40814780:167827 +k1,16842:25712727,40814780:167826 +k1,16842:26496592,40814780:167827 +k1,16842:29574873,40814780:167827 +k1,16842:31900144,40814780:167827 +k1,16842:32583029,40814780:0 +) +(1,16843:6630773,41656268:25952256,513147,134348 +k1,16842:10154088,41656268:197364 +k1,16842:11275510,41656268:197364 +k1,16842:12491959,41656268:197364 +k1,16842:14391293,41656268:197364 +k1,16842:16368615,41656268:197364 +k1,16842:17769220,41656268:197364 +k1,16842:20292458,41656268:197365 +k1,16842:21774328,41656268:197364 +k1,16842:24665222,41656268:197364 +k1,16842:25514014,41656268:197364 +k1,16842:27413348,41656268:197364 +k1,16842:29000075,41656268:197364 +k1,16842:30180479,41656268:197364 +k1,16842:32583029,41656268:0 +) +(1,16843:6630773,42497756:25952256,513147,134348 +k1,16842:10440938,42497756:231899 +k1,16842:13075387,42497756:231899 +k1,16842:13663146,42497756:231899 +k1,16842:16285110,42497756:231866 +k1,16842:17500049,42497756:231899 +k1,16842:18263445,42497756:231899 +k1,16842:20072796,42497756:231899 +k1,16842:20920733,42497756:231899 +k1,16842:22325071,42497756:231899 +k1,16842:23239855,42497756:231899 +k1,16842:25121951,42497756:231899 +k1,16842:28764344,42497756:231899 +k1,16842:31563944,42497756:231899 +k1,16842:32583029,42497756:0 +) +(1,16843:6630773,43339244:25952256,513147,134348 +k1,16842:7960974,43339244:173491 +k1,16842:10537016,43339244:173492 +k1,16842:13679943,43339244:173491 +k1,16842:17165625,43339244:173492 +k1,16842:18358201,43339244:173491 +k1,16842:21373334,43339244:173492 +k1,16842:22738270,43339244:173491 +k1,16842:25037750,43339244:173492 +k1,16842:26669417,43339244:173491 +k1,16842:28034354,43339244:173492 +k1,16842:30180479,43339244:173491 +k1,16842:32583029,43339244:0 +) +(1,16843:6630773,44180732:25952256,513147,7863 +g1,16842:7849087,44180732 +g1,16842:9437679,44180732 +g1,16842:10296200,44180732 +k1,16843:32583029,44180732:19669976 +g1,16843:32583029,44180732 +) +] +(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 +) +] +h1,16850:4262630,4025873:0,0,0 +] +!21962 }327 -Input:2520:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2521:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2522:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2523:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2524:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2525:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2526:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!614 +Input:2517:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2518:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2519:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2520:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2521:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2522:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2523:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!656 {328 -[1,16883:4262630,47279633:28320399,43253760,0 -(1,16883:4262630,4025873:0,0,0 -[1,16883:-473657,4025873:25952256,0,0 -(1,16883:-473657,-710414:25952256,0,0 -h1,16883:-473657,-710414:0,0,0 -(1,16883:-473657,-710414:0,0,0 -(1,16883:-473657,-710414:0,0,0 -g1,16883:-473657,-710414 -(1,16883:-473657,-710414:65781,0,65781 -g1,16883:-407876,-710414 -[1,16883:-407876,-644633:0,0,0 +[1,16914:4262630,47279633:28320399,43253760,0 +(1,16914:4262630,4025873:0,0,0 +[1,16914:-473657,4025873:25952256,0,0 +(1,16914:-473657,-710414:25952256,0,0 +h1,16914:-473657,-710414:0,0,0 +(1,16914:-473657,-710414:0,0,0 +(1,16914:-473657,-710414:0,0,0 +g1,16914:-473657,-710414 +(1,16914:-473657,-710414:65781,0,65781 +g1,16914:-407876,-710414 +[1,16914:-407876,-644633:0,0,0 ] ) -k1,16883:-473657,-710414:-65781 +k1,16914:-473657,-710414:-65781 ) ) -k1,16883:25478599,-710414:25952256 -g1,16883:25478599,-710414 +k1,16914:25478599,-710414:25952256 +g1,16914:25478599,-710414 ) ] ) -[1,16883:6630773,47279633:25952256,43253760,0 -[1,16883:6630773,4812305:25952256,786432,0 -(1,16883:6630773,4812305:25952256,513147,126483 -(1,16883:6630773,4812305:25952256,513147,126483 -g1,16883:3078558,4812305 -[1,16883:3078558,4812305:0,0,0 -(1,16883:3078558,2439708:0,1703936,0 -k1,16883:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16883:2537886,2439708:1179648,16384,0 +[1,16914:6630773,47279633:25952256,43253760,0 +[1,16914:6630773,4812305:25952256,786432,0 +(1,16914:6630773,4812305:25952256,513147,126483 +(1,16914:6630773,4812305:25952256,513147,126483 +g1,16914:3078558,4812305 +[1,16914:3078558,4812305:0,0,0 +(1,16914:3078558,2439708:0,1703936,0 +k1,16914:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16914:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16883:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16914:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16883:3078558,4812305:0,0,0 -(1,16883:3078558,2439708:0,1703936,0 -g1,16883:29030814,2439708 -g1,16883:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16883:36151628,1915420:16384,1179648,0 +[1,16914:3078558,4812305:0,0,0 +(1,16914:3078558,2439708:0,1703936,0 +g1,16914:29030814,2439708 +g1,16914:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16914:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16883:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16914:37855564,2439708:1179648,16384,0 ) ) -k1,16883:3078556,2439708:-34777008 +k1,16914:3078556,2439708:-34777008 ) ] -[1,16883:3078558,4812305:0,0,0 -(1,16883:3078558,49800853:0,16384,2228224 -k1,16883:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16883:2537886,49800853:1179648,16384,0 +[1,16914:3078558,4812305:0,0,0 +(1,16914:3078558,49800853:0,16384,2228224 +k1,16914:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16914:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16883:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16914:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16883:3078558,4812305:0,0,0 -(1,16883:3078558,49800853:0,16384,2228224 -g1,16883:29030814,49800853 -g1,16883:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16883:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +[1,16914:3078558,4812305:0,0,0 +(1,16914:3078558,49800853:0,16384,2228224 +g1,16914:29030814,49800853 +g1,16914:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16914:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16883:37855564,49800853:1179648,16384,0 -) -) -k1,16883:3078556,49800853:-34777008 -) -] -g1,16883:6630773,4812305 -g1,16883:6630773,4812305 -g1,16883:9235173,4812305 -g1,16883:10666479,4812305 -k1,16883:31387651,4812305:20721172 -) -) -] -[1,16883:6630773,45706769:25952256,40108032,0 -(1,16883:6630773,45706769:25952256,40108032,0 -(1,16883:6630773,45706769:0,0,0 -g1,16883:6630773,45706769 -) -[1,16883:6630773,45706769:25952256,40108032,0 -(1,16813:6630773,6254097:25952256,564462,12975 -(1,16813:6630773,6254097:2899444,534184,12975 -g1,16813:6630773,6254097 -g1,16813:9530217,6254097 -) -k1,16813:32583030,6254097:20576536 -g1,16813:32583030,6254097 -) -(1,16818:6630773,7488801:25952256,513147,134348 -k1,16817:9319665,7488801:153959 -k1,16817:11631067,7488801:153958 -k1,16817:14641740,7488801:153959 -k1,16817:17198249,7488801:153959 -k1,16817:18011500,7488801:153959 -k1,16817:19478800,7488801:153958 -k1,16817:21368152,7488801:153959 -k1,16817:23834176,7488801:153914 -k1,16817:26321872,7488801:153959 -k1,16817:26874289,7488801:153958 -k1,16817:27711133,7488801:153959 -k1,16817:29898674,7488801:153959 -k1,16817:32583029,7488801:0 -) -(1,16818:6630773,8330289:25952256,513147,134348 -k1,16817:9920493,8330289:169551 -k1,16817:10706082,8330289:169551 -k1,16817:13033077,8330289:169551 -k1,16817:14268899,8330289:169551 -k1,16817:15814051,8330289:169551 -k1,16817:17665256,8330289:169551 -k1,16817:20237357,8330289:169551 -k1,16817:21598353,8330289:169551 -k1,16817:24025619,8330289:169551 -k1,16817:24854462,8330289:169551 -k1,16817:26720740,8330289:169551 -k1,16817:28377303,8330289:169551 -k1,16817:29619023,8330289:169551 -k1,16817:31074390,8330289:169551 -k1,16817:32583029,8330289:0 -) -(1,16818:6630773,9171777:25952256,513147,7863 -k1,16818:32583030,9171777:21754676 -g1,16818:32583030,9171777 -) -(1,16820:6630773,10013265:25952256,513147,102891 -h1,16819:6630773,10013265:983040,0,0 -k1,16819:8746930,10013265:179568 -k1,16819:10232632,10013265:179569 -k1,16819:11824501,10013265:179568 -k1,16819:14973506,10013265:179569 -k1,16819:15804502,10013265:179568 -k1,16819:18007823,10013265:179569 -k1,16819:18958094,10013265:179568 -k1,16819:20886819,10013265:179569 -k1,16819:21725679,10013265:179568 -k1,16819:22924333,10013265:179569 -k1,16819:24086941,10013265:179568 -k1,16819:27189416,10013265:179569 -k1,16819:28560429,10013265:179568 -k1,16819:29356036,10013265:179569 -k1,16819:32583029,10013265:0 -) -(1,16820:6630773,10854753:25952256,513147,126483 -k1,16819:8788144,10854753:298115 -k1,16819:10498560,10854753:298115 -k1,16819:11152535,10854753:298115 -k1,16819:13530762,10854753:298114 -k1,16819:14488169,10854753:298115 -k1,16819:15805369,10854753:298115 -k1,16819:17666518,10854753:298115 -k1,16819:19443781,10854753:298115 -(1,16819:19443781,10854753:0,452978,115847 -r1,16819:21912318,10854753:2468537,568825,115847 -k1,16819:19443781,10854753:-2468537 -) -(1,16819:19443781,10854753:2468537,452978,115847 -k1,16819:19443781,10854753:3277 -h1,16819:21909041,10854753:0,411205,112570 -) -k1,16819:22210433,10854753:298115 -k1,16819:23376900,10854753:298115 -k1,16819:24779297,10854753:298115 -k1,16819:26343567,10854753:298114 -k1,16819:27707953,10854753:298115 -k1,16819:29025153,10854753:298115 -k1,16819:31391584,10854753:298115 -k1,16819:32583029,10854753:0 -) -(1,16820:6630773,11696241:25952256,513147,134348 -k1,16819:11465186,11696241:206260 -k1,16819:12330737,11696241:206259 -k1,16819:13556082,11696241:206260 -k1,16819:16603982,11696241:206259 -k1,16819:18001687,11696241:206260 -k1,16819:21490644,11696241:206259 -k1,16819:22324739,11696241:206260 -k1,16819:23734239,11696241:206259 -k1,16819:26775586,11696241:206260 -k1,16819:27850197,11696241:206259 -k1,16819:29468758,11696241:206260 -k1,16819:32583029,11696241:0 -) -(1,16820:6630773,12537729:25952256,513147,134348 -g1,16819:9586446,12537729 -g1,16819:10733326,12537729 -g1,16819:13785993,12537729 -g1,16819:20040749,12537729 -k1,16820:32583029,12537729:10773463 -g1,16820:32583029,12537729 -) -(1,16822:6630773,13379217:25952256,513147,126483 -h1,16821:6630773,13379217:983040,0,0 -g1,16821:8766591,13379217 -g1,16821:10271953,13379217 -g1,16821:12048634,13379217 -g1,16821:12603723,13379217 -g1,16821:16309128,13379217 -g1,16821:17159785,13379217 -g1,16821:18378099,13379217 -g1,16821:19560368,13379217 -g1,16821:21153548,13379217 -g1,16821:24048273,13379217 -(1,16821:24048273,13379217:0,452978,115847 -r1,16821:27220233,13379217:3171960,568825,115847 -k1,16821:24048273,13379217:-3171960 -) -(1,16821:24048273,13379217:3171960,452978,115847 -k1,16821:24048273,13379217:3277 -h1,16821:27216956,13379217:0,411205,112570 -) -k1,16822:32583029,13379217:5189126 -g1,16822:32583029,13379217 -) -v1,16824:6630773,14569683:0,393216,0 -(1,16847:6630773,26256467:25952256,12080000,196608 -g1,16847:6630773,26256467 -g1,16847:6630773,26256467 -g1,16847:6434165,26256467 -(1,16847:6434165,26256467:0,12080000,196608 -r1,16847:32779637,26256467:26345472,12276608,196608 -k1,16847:6434165,26256467:-26345472 -) -(1,16847:6434165,26256467:26345472,12080000,196608 -[1,16847:6630773,26256467:25952256,11883392,0 -(1,16826:6630773,14783593:25952256,410518,101187 -(1,16825:6630773,14783593:0,0,0 -g1,16825:6630773,14783593 -g1,16825:6630773,14783593 -g1,16825:6303093,14783593 -(1,16825:6303093,14783593:0,0,0 -) -g1,16825:6630773,14783593 -) -g1,16826:11056813,14783593 -g1,16826:12005251,14783593 -k1,16826:12005251,14783593:0 -h1,16826:24334933,14783593:0,0,0 -k1,16826:32583029,14783593:8248096 -g1,16826:32583029,14783593 -) -(1,16827:6630773,15449771:25952256,404226,82312 -h1,16827:6630773,15449771:0,0,0 -g1,16827:12637542,15449771 -g1,16827:15798999,15449771 -g1,16827:16431291,15449771 -h1,16827:17063583,15449771:0,0,0 -k1,16827:32583029,15449771:15519446 -g1,16827:32583029,15449771 -) -(1,16846:6630773,16181485:25952256,410518,6290 -(1,16829:6630773,16181485:0,0,0 -g1,16829:6630773,16181485 -g1,16829:6630773,16181485 -g1,16829:6303093,16181485 -(1,16829:6303093,16181485:0,0,0 -) -g1,16829:6630773,16181485 -) -g1,16846:7579210,16181485 -g1,16846:9159939,16181485 -g1,16846:10108376,16181485 -h1,16846:10740667,16181485:0,0,0 -k1,16846:32583029,16181485:21842362 -g1,16846:32583029,16181485 -) -(1,16846:6630773,16847663:25952256,410518,101187 -h1,16846:6630773,16847663:0,0,0 -g1,16846:7579210,16847663 -g1,16846:7895356,16847663 -g1,16846:8527648,16847663 -g1,16846:11372959,16847663 -g1,16846:11689105,16847663 -g1,16846:12005251,16847663 -g1,16846:12637543,16847663 -g1,16846:13902126,16847663 -h1,16846:23386496,16847663:0,0,0 -k1,16846:32583029,16847663:9196533 -g1,16846:32583029,16847663 -) -(1,16846:6630773,17513841:25952256,410518,107478 -h1,16846:6630773,17513841:0,0,0 -g1,16846:7579210,17513841 -g1,16846:7895356,17513841 -g1,16846:8527648,17513841 -g1,16846:11372959,17513841 -g1,16846:11689105,17513841 -g1,16846:12005251,17513841 -g1,16846:12637543,17513841 -g1,16846:14218272,17513841 -h1,16846:15799000,17513841:0,0,0 -k1,16846:32583028,17513841:16784028 -g1,16846:32583028,17513841 -) -(1,16846:6630773,18180019:25952256,410518,31456 -h1,16846:6630773,18180019:0,0,0 -g1,16846:7579210,18180019 -g1,16846:7895356,18180019 -g1,16846:8527648,18180019 -g1,16846:9476085,18180019 -g1,16846:9792231,18180019 -g1,16846:10108377,18180019 -g1,16846:10424523,18180019 -g1,16846:10740669,18180019 -g1,16846:11056815,18180019 -g1,16846:11372961,18180019 -g1,16846:11689107,18180019 -g1,16846:12005253,18180019 -g1,16846:12637545,18180019 -g1,16846:13902128,18180019 -h1,16846:15482856,18180019:0,0,0 -k1,16846:32583028,18180019:17100172 -g1,16846:32583028,18180019 -) -(1,16846:6630773,18846197:25952256,410518,107478 -h1,16846:6630773,18846197:0,0,0 -g1,16846:7579210,18846197 -g1,16846:7895356,18846197 -g1,16846:8527648,18846197 -g1,16846:11372959,18846197 -g1,16846:11689105,18846197 -g1,16846:12005251,18846197 -g1,16846:12637543,18846197 -g1,16846:14218272,18846197 -h1,16846:15799000,18846197:0,0,0 -k1,16846:32583028,18846197:16784028 -g1,16846:32583028,18846197 -) -(1,16846:6630773,19512375:25952256,410518,50331 -h1,16846:6630773,19512375:0,0,0 -g1,16846:7579210,19512375 -g1,16846:7895356,19512375 -g1,16846:8527648,19512375 -g1,16846:10740668,19512375 -g1,16846:11056814,19512375 -g1,16846:11372960,19512375 -g1,16846:11689106,19512375 -g1,16846:12005252,19512375 -g1,16846:12637544,19512375 -g1,16846:13902127,19512375 -h1,16846:22438060,19512375:0,0,0 -k1,16846:32583029,19512375:10144969 -g1,16846:32583029,19512375 -) -(1,16846:6630773,20178553:25952256,410518,107478 -h1,16846:6630773,20178553:0,0,0 -g1,16846:7579210,20178553 -g1,16846:7895356,20178553 -g1,16846:8527648,20178553 -g1,16846:10740668,20178553 -g1,16846:11056814,20178553 -g1,16846:11372960,20178553 -g1,16846:11689106,20178553 -g1,16846:12005252,20178553 -g1,16846:12637544,20178553 -g1,16846:14218273,20178553 -h1,16846:15799001,20178553:0,0,0 -k1,16846:32583029,20178553:16784028 -g1,16846:32583029,20178553 -) -(1,16846:6630773,20844731:25952256,410518,107478 -h1,16846:6630773,20844731:0,0,0 -g1,16846:7579210,20844731 -g1,16846:7895356,20844731 -g1,16846:8527648,20844731 -g1,16846:10740668,20844731 -g1,16846:11056814,20844731 -g1,16846:11372960,20844731 -g1,16846:11689106,20844731 -g1,16846:12005252,20844731 -g1,16846:13902126,20844731 -g1,16846:14850563,20844731 -h1,16846:15166709,20844731:0,0,0 -k1,16846:32583029,20844731:17416320 -g1,16846:32583029,20844731 -) -(1,16846:6630773,21510909:25952256,410518,107478 -h1,16846:6630773,21510909:0,0,0 -g1,16846:7579210,21510909 -g1,16846:7895356,21510909 -g1,16846:8527648,21510909 -g1,16846:13902125,21510909 -g1,16846:14850562,21510909 -h1,16846:15166708,21510909:0,0,0 -k1,16846:32583028,21510909:17416320 -g1,16846:32583028,21510909 -) -(1,16846:6630773,22177087:25952256,410518,31456 -h1,16846:6630773,22177087:0,0,0 -g1,16846:7579210,22177087 -g1,16846:7895356,22177087 -g1,16846:8527648,22177087 -g1,16846:10424522,22177087 -g1,16846:10740668,22177087 -g1,16846:11056814,22177087 -g1,16846:11372960,22177087 -g1,16846:11689106,22177087 -g1,16846:12005252,22177087 -g1,16846:12637544,22177087 -g1,16846:13902127,22177087 -h1,16846:14218273,22177087:0,0,0 -k1,16846:32583029,22177087:18364756 -g1,16846:32583029,22177087 -) -(1,16846:6630773,22843265:25952256,410518,31456 -h1,16846:6630773,22843265:0,0,0 -g1,16846:7579210,22843265 -g1,16846:7895356,22843265 -g1,16846:8527648,22843265 -g1,16846:10424522,22843265 -g1,16846:10740668,22843265 -g1,16846:11056814,22843265 -g1,16846:11372960,22843265 -g1,16846:11689106,22843265 -g1,16846:12005252,22843265 -g1,16846:12637544,22843265 -g1,16846:13902127,22843265 -h1,16846:14218273,22843265:0,0,0 -k1,16846:32583029,22843265:18364756 -g1,16846:32583029,22843265 -) -(1,16846:6630773,23509443:25952256,410518,31456 -h1,16846:6630773,23509443:0,0,0 -g1,16846:7579210,23509443 -g1,16846:7895356,23509443 -g1,16846:8527648,23509443 -g1,16846:9792231,23509443 -g1,16846:10108377,23509443 -g1,16846:10424523,23509443 -g1,16846:10740669,23509443 -g1,16846:11056815,23509443 -g1,16846:11372961,23509443 -g1,16846:11689107,23509443 -g1,16846:12005253,23509443 -g1,16846:13902127,23509443 -g1,16846:14850564,23509443 -h1,16846:15166710,23509443:0,0,0 -k1,16846:32583030,23509443:17416320 -g1,16846:32583030,23509443 -) -(1,16846:6630773,24175621:25952256,410518,31456 -h1,16846:6630773,24175621:0,0,0 -g1,16846:7579210,24175621 -g1,16846:7895356,24175621 -g1,16846:8527648,24175621 -g1,16846:12005251,24175621 -g1,16846:12637543,24175621 -g1,16846:13902126,24175621 -k1,16846:13902126,24175621:0 -h1,16846:14534417,24175621:0,0,0 -k1,16846:32583029,24175621:18048612 -g1,16846:32583029,24175621 -) -(1,16846:6630773,24841799:25952256,410518,31456 -h1,16846:6630773,24841799:0,0,0 -g1,16846:7579210,24841799 -g1,16846:7895356,24841799 -g1,16846:8527648,24841799 -g1,16846:10424522,24841799 -g1,16846:10740668,24841799 -g1,16846:11056814,24841799 -g1,16846:11372960,24841799 -g1,16846:11689106,24841799 -g1,16846:12005252,24841799 -g1,16846:12637544,24841799 -g1,16846:13902127,24841799 -h1,16846:14218273,24841799:0,0,0 -k1,16846:32583029,24841799:18364756 -g1,16846:32583029,24841799 -) -(1,16846:6630773,25507977:25952256,410518,31456 -h1,16846:6630773,25507977:0,0,0 -g1,16846:7579210,25507977 -g1,16846:7895356,25507977 -g1,16846:8527648,25507977 -g1,16846:9792231,25507977 -g1,16846:10108377,25507977 -g1,16846:10424523,25507977 -g1,16846:10740669,25507977 -g1,16846:11056815,25507977 -g1,16846:11372961,25507977 -g1,16846:11689107,25507977 -g1,16846:12005253,25507977 -g1,16846:13902127,25507977 -g1,16846:14850564,25507977 -h1,16846:15166710,25507977:0,0,0 -k1,16846:32583030,25507977:17416320 -g1,16846:32583030,25507977 -) -(1,16846:6630773,26174155:25952256,410518,82312 -h1,16846:6630773,26174155:0,0,0 -g1,16846:7579210,26174155 -g1,16846:7895356,26174155 -g1,16846:8527648,26174155 -g1,16846:11056814,26174155 -g1,16846:14218271,26174155 -g1,16846:15482854,26174155 -h1,16846:17695874,26174155:0,0,0 -k1,16846:32583029,26174155:14887155 -g1,16846:32583029,26174155 -) -] -) -g1,16847:32583029,26256467 -g1,16847:6630773,26256467 -g1,16847:6630773,26256467 -g1,16847:32583029,26256467 -g1,16847:32583029,26256467 -) -h1,16847:6630773,26453075:0,0,0 -v1,16851:6630773,28343139:0,393216,0 -(1,16852:6630773,32508755:25952256,4558832,616038 -g1,16852:6630773,32508755 -(1,16852:6630773,32508755:25952256,4558832,616038 -(1,16852:6630773,33124793:25952256,5174870,0 -[1,16852:6630773,33124793:25952256,5174870,0 -(1,16852:6630773,33098579:25952256,5122442,0 -r1,16852:6656987,33098579:26214,5122442,0 -[1,16852:6656987,33098579:25899828,5122442,0 -(1,16852:6656987,32508755:25899828,3942794,0 -[1,16852:7246811,32508755:24720180,3942794,0 -(1,16852:7246811,29849943:24720180,1283982,196608 -(1,16851:7246811,29849943:0,1283982,196608 -r1,16852:9812056,29849943:2565245,1480590,196608 -k1,16851:7246811,29849943:-2565245 -) -(1,16851:7246811,29849943:2565245,1283982,196608 -) -k1,16851:9965813,29849943:153757 -k1,16851:12750185,29849943:153757 -(1,16851:12750185,29849943:0,452978,115847 -r1,16852:15922145,29849943:3171960,568825,115847 -k1,16851:12750185,29849943:-3171960 -) -(1,16851:12750185,29849943:3171960,452978,115847 -k1,16851:12750185,29849943:3277 -h1,16851:15918868,29849943:0,411205,112570 -) -k1,16851:16075901,29849943:153756 -k1,16851:16845696,29849943:153757 -k1,16851:18018538,29849943:153757 -k1,16851:19271989,29849943:153757 -k1,16851:20077174,29849943:153757 -(1,16851:20077174,29849943:0,452978,115847 -r1,16852:21842287,29849943:1765113,568825,115847 -k1,16851:20077174,29849943:-1765113 -) -(1,16851:20077174,29849943:1765113,452978,115847 -k1,16851:20077174,29849943:3277 -h1,16851:21839010,29849943:0,411205,112570 -) -k1,16851:21996044,29849943:153757 -k1,16851:24005124,29849943:153756 -k1,16851:25350326,29849943:153757 -k1,16851:27287973,29849943:153757 -k1,16851:28460815,29849943:153757 -k1,16851:31966991,29849943:0 -) -(1,16852:7246811,30691431:24720180,513147,134348 -k1,16851:9441194,30691431:234857 -k1,16851:11623781,30691431:234857 -k1,16851:15665625,30691431:234858 -k1,16851:16709852,30691431:234857 -k1,16851:17963794,30691431:234857 -k1,16851:21873910,30691431:234857 -k1,16851:23300212,30691431:234857 -k1,16851:24482720,30691431:234857 -k1,16851:26169200,30691431:234858 -k1,16851:27793420,30691431:234857 -k1,16851:30713287,30691431:234857 -k1,16851:31966991,30691431:0 -) -(1,16852:7246811,31532919:24720180,513147,126483 -k1,16851:8613670,31532919:262577 -k1,16851:10162063,31532919:262577 -(1,16851:10162063,31532919:0,452978,115847 -r1,16852:17202854,31532919:7040791,568825,115847 -k1,16851:10162063,31532919:-7040791 -) -(1,16851:10162063,31532919:7040791,452978,115847 -k1,16851:10162063,31532919:3277 -h1,16851:17199577,31532919:0,411205,112570 -) -k1,16851:17465431,31532919:262577 -k1,16851:18675659,31532919:262577 -k1,16851:19294096,31532919:262577 -k1,16851:21206869,31532919:262576 -k1,16851:24394973,31532919:262577 -k1,16851:27305860,31532919:262577 -k1,16851:29058726,31532919:262577 -k1,16851:30491776,31532919:262577 -k1,16851:31966991,31532919:0 -) -(1,16852:7246811,32374407:24720180,513147,134348 -g1,16851:11129163,32374407 -g1,16851:12347477,32374407 -g1,16851:15478131,32374407 -g1,16851:16336652,32374407 -g1,16851:17554966,32374407 -k1,16852:31966991,32374407:12278828 -g1,16852:31966991,32374407 -) -] -) -] -r1,16852:32583029,33098579:26214,5122442,0 -) -] -) -) -g1,16852:32583029,32508755 -) -h1,16852:6630773,33124793:0,0,0 -(1,16854:6630773,34490569:25952256,513147,126483 -h1,16853:6630773,34490569:983040,0,0 -k1,16853:8981822,34490569:171322 -k1,16853:12828403,34490569:171322 -k1,16853:13659017,34490569:171322 -k1,16853:14849424,34490569:171322 -k1,16853:16670287,34490569:171322 -k1,16853:18230971,34490569:171321 -k1,16853:19393853,34490569:171322 -k1,16853:22655198,34490569:171322 -k1,16853:24220471,34490569:171322 -k1,16853:27534900,34490569:171322 -k1,16853:28322260,34490569:171322 -k1,16853:29591310,34490569:171322 -k1,16853:32583029,34490569:0 -) -(1,16854:6630773,35332057:25952256,513147,134348 -k1,16853:9689900,35332057:251565 -k1,16853:12368262,35332057:251564 -k1,16853:13271255,35332057:251565 -k1,16853:13878679,35332057:251564 -k1,16853:15414750,35332057:251565 -k1,16853:16325606,35332057:251564 -k1,16853:19366383,35332057:251565 -k1,16853:20809393,35332057:251565 -k1,16853:24420988,35332057:251564 -k1,16853:25863998,35332057:251565 -k1,16853:27383028,35332057:251564 -k1,16853:27990453,35332057:251565 -k1,16853:29667425,35332057:251564 -k1,16853:31896867,35332057:251565 -k1,16853:32583029,35332057:0 -) -(1,16854:6630773,36173545:25952256,505283,134348 -k1,16853:7251096,36173545:264463 -k1,16853:9097598,36173545:264463 -k1,16853:12880689,36173545:264463 -k1,16853:14341838,36173545:264462 -k1,16853:16317446,36173545:264463 -k1,16853:17573469,36173545:264463 -k1,16853:20616659,36173545:264463 -k1,16853:21567284,36173545:264463 -k1,16853:24806426,36173545:264463 -k1,16853:27440670,36173545:264462 -k1,16853:28658682,36173545:264463 -k1,16853:29901598,36173545:264463 -k1,16853:31563944,36173545:264463 -k1,16853:32583029,36173545:0 -) -(1,16854:6630773,37015033:25952256,513147,122846 -g1,16853:9671643,37015033 -g1,16853:11027582,37015033 -g1,16853:11839573,37015033 -g1,16853:12394662,37015033 -g1,16853:14019299,37015033 -g1,16853:15612479,37015033 -g1,16853:18507204,37015033 -(1,16853:18507204,37015033:0,452978,122846 -r1,16853:22382588,37015033:3875384,575824,122846 -k1,16853:18507204,37015033:-3875384 -) -(1,16853:18507204,37015033:3875384,452978,122846 -k1,16853:18507204,37015033:3277 -h1,16853:22379311,37015033:0,411205,112570 -) -k1,16854:32583029,37015033:10026771 -g1,16854:32583029,37015033 -) -v1,16856:6630773,38205499:0,393216,0 -(1,16878:6630773,45325890:25952256,7513607,196608 -g1,16878:6630773,45325890 -g1,16878:6630773,45325890 -g1,16878:6434165,45325890 -(1,16878:6434165,45325890:0,7513607,196608 -r1,16878:32779637,45325890:26345472,7710215,196608 -k1,16878:6434165,45325890:-26345472 -) -(1,16878:6434165,45325890:26345472,7513607,196608 -[1,16878:6630773,45325890:25952256,7316999,0 -(1,16858:6630773,38413117:25952256,404226,107478 -(1,16857:6630773,38413117:0,0,0 -g1,16857:6630773,38413117 -g1,16857:6630773,38413117 -g1,16857:6303093,38413117 -(1,16857:6303093,38413117:0,0,0 -) -g1,16857:6630773,38413117 -) -g1,16858:9476084,38413117 -g1,16858:10424522,38413117 -g1,16858:18328165,38413117 -h1,16858:20541185,38413117:0,0,0 -k1,16858:32583029,38413117:12041844 -g1,16858:32583029,38413117 -) -(1,16859:6630773,39079295:25952256,404226,76021 -h1,16859:6630773,39079295:0,0,0 -k1,16859:6630773,39079295:0 -h1,16859:11056813,39079295:0,0,0 -k1,16859:32583029,39079295:21526216 -g1,16859:32583029,39079295 -) -(1,16863:6630773,39811009:25952256,404226,76021 -(1,16861:6630773,39811009:0,0,0 -g1,16861:6630773,39811009 -g1,16861:6630773,39811009 -g1,16861:6303093,39811009 -(1,16861:6303093,39811009:0,0,0 -) -g1,16861:6630773,39811009 -) -g1,16863:7579210,39811009 -g1,16863:8843793,39811009 -g1,16863:11372959,39811009 -g1,16863:13902125,39811009 -g1,16863:16431291,39811009 -g1,16863:18960457,39811009 -g1,16863:21489623,39811009 -k1,16863:21489623,39811009:0 -h1,16863:23702643,39811009:0,0,0 -k1,16863:32583029,39811009:8880386 -g1,16863:32583029,39811009 -) -(1,16865:6630773,41132547:25952256,404226,107478 -(1,16864:6630773,41132547:0,0,0 -g1,16864:6630773,41132547 -g1,16864:6630773,41132547 -g1,16864:6303093,41132547 -(1,16864:6303093,41132547:0,0,0 -) -g1,16864:6630773,41132547 -) -g1,16865:9792230,41132547 -g1,16865:10740668,41132547 -g1,16865:11056814,41132547 -g1,16865:18960457,41132547 -h1,16865:20857331,41132547:0,0,0 -k1,16865:32583029,41132547:11725698 -g1,16865:32583029,41132547 -) -(1,16866:6630773,41798725:25952256,404226,107478 -h1,16866:6630773,41798725:0,0,0 -k1,16866:6630773,41798725:0 -h1,16866:11372958,41798725:0,0,0 -k1,16866:32583030,41798725:21210072 -g1,16866:32583030,41798725 -) -(1,16870:6630773,42530439:25952256,404226,76021 -(1,16868:6630773,42530439:0,0,0 -g1,16868:6630773,42530439 -g1,16868:6630773,42530439 -g1,16868:6303093,42530439 -(1,16868:6303093,42530439:0,0,0 -) -g1,16868:6630773,42530439 -) -g1,16870:7579210,42530439 -g1,16870:8843793,42530439 -g1,16870:10740667,42530439 -g1,16870:12637541,42530439 -g1,16870:14534415,42530439 -g1,16870:16431289,42530439 -g1,16870:18328163,42530439 -h1,16870:19908891,42530439:0,0,0 -k1,16870:32583029,42530439:12674138 -g1,16870:32583029,42530439 -) -(1,16872:6630773,43851977:25952256,404226,107478 -(1,16871:6630773,43851977:0,0,0 -g1,16871:6630773,43851977 -g1,16871:6630773,43851977 -g1,16871:6303093,43851977 -(1,16871:6303093,43851977:0,0,0 -) -g1,16871:6630773,43851977 -) -g1,16872:9476084,43851977 -g1,16872:10424522,43851977 -g1,16872:18328165,43851977 -h1,16872:20225039,43851977:0,0,0 -k1,16872:32583029,43851977:12357990 -g1,16872:32583029,43851977 -) -(1,16873:6630773,44518155:25952256,404226,76021 -h1,16873:6630773,44518155:0,0,0 -k1,16873:6630773,44518155:0 -h1,16873:11056813,44518155:0,0,0 -k1,16873:32583029,44518155:21526216 -g1,16873:32583029,44518155 -) -(1,16877:6630773,45249869:25952256,404226,76021 -(1,16875:6630773,45249869:0,0,0 -g1,16875:6630773,45249869 -g1,16875:6630773,45249869 -g1,16875:6303093,45249869 -(1,16875:6303093,45249869:0,0,0 -) -g1,16875:6630773,45249869 -) -g1,16877:7579210,45249869 -g1,16877:8843793,45249869 -g1,16877:11372959,45249869 -g1,16877:13902125,45249869 -g1,16877:16431291,45249869 -g1,16877:18960457,45249869 -g1,16877:21489623,45249869 -h1,16877:23702643,45249869:0,0,0 -k1,16877:32583029,45249869:8880386 -g1,16877:32583029,45249869 -) -] -) -g1,16878:32583029,45325890 -g1,16878:6630773,45325890 -g1,16878:6630773,45325890 -g1,16878:32583029,45325890 -g1,16878:32583029,45325890 -) -h1,16878:6630773,45522498:0,0,0 -] -(1,16883:32583029,45706769:0,0,0 -g1,16883:32583029,45706769 -) -) -] -(1,16883:6630773,47279633:25952256,0,0 -h1,16883:6630773,47279633:25952256,0,0 -) -] -h1,16883:4262630,4025873:0,0,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16914:37855564,49800853:1179648,16384,0 +) +) +k1,16914:3078556,49800853:-34777008 +) +] +g1,16914:6630773,4812305 +g1,16914:6630773,4812305 +g1,16914:9235173,4812305 +g1,16914:10666479,4812305 +k1,16914:31387651,4812305:20721172 +) +) +] +[1,16914:6630773,45706769:25952256,40108032,0 +(1,16914:6630773,45706769:25952256,40108032,0 +(1,16914:6630773,45706769:0,0,0 +g1,16914:6630773,45706769 +) +[1,16914:6630773,45706769:25952256,40108032,0 +(1,16844:6630773,6254097:25952256,564462,12975 +(1,16844:6630773,6254097:2899444,534184,12975 +g1,16844:6630773,6254097 +g1,16844:9530217,6254097 +) +k1,16844:32583030,6254097:20576536 +g1,16844:32583030,6254097 +) +(1,16849:6630773,7488801:25952256,513147,134348 +k1,16848:9319665,7488801:153959 +k1,16848:11631067,7488801:153958 +k1,16848:14641740,7488801:153959 +k1,16848:17198249,7488801:153959 +k1,16848:18011500,7488801:153959 +k1,16848:19478800,7488801:153958 +k1,16848:21368152,7488801:153959 +k1,16848:23834176,7488801:153914 +k1,16848:26321872,7488801:153959 +k1,16848:26874289,7488801:153958 +k1,16848:27711133,7488801:153959 +k1,16848:29898674,7488801:153959 +k1,16848:32583029,7488801:0 +) +(1,16849:6630773,8330289:25952256,513147,134348 +k1,16848:9920493,8330289:169551 +k1,16848:10706082,8330289:169551 +k1,16848:13033077,8330289:169551 +k1,16848:14268899,8330289:169551 +k1,16848:15814051,8330289:169551 +k1,16848:17665256,8330289:169551 +k1,16848:20237357,8330289:169551 +k1,16848:21598353,8330289:169551 +k1,16848:24025619,8330289:169551 +k1,16848:24854462,8330289:169551 +k1,16848:26720740,8330289:169551 +k1,16848:28377303,8330289:169551 +k1,16848:29619023,8330289:169551 +k1,16848:31074390,8330289:169551 +k1,16848:32583029,8330289:0 +) +(1,16849:6630773,9171777:25952256,513147,7863 +k1,16849:32583030,9171777:21754676 +g1,16849:32583030,9171777 +) +(1,16851:6630773,10013265:25952256,513147,102891 +h1,16850:6630773,10013265:983040,0,0 +k1,16850:8746930,10013265:179568 +k1,16850:10232632,10013265:179569 +k1,16850:11824501,10013265:179568 +k1,16850:14973506,10013265:179569 +k1,16850:15804502,10013265:179568 +k1,16850:18007823,10013265:179569 +k1,16850:18958094,10013265:179568 +k1,16850:20886819,10013265:179569 +k1,16850:21725679,10013265:179568 +k1,16850:22924333,10013265:179569 +k1,16850:24086941,10013265:179568 +k1,16850:27189416,10013265:179569 +k1,16850:28560429,10013265:179568 +k1,16850:29356036,10013265:179569 +k1,16850:32583029,10013265:0 +) +(1,16851:6630773,10854753:25952256,513147,126483 +k1,16850:8788144,10854753:298115 +k1,16850:10498560,10854753:298115 +k1,16850:11152535,10854753:298115 +k1,16850:13530762,10854753:298114 +k1,16850:14488169,10854753:298115 +k1,16850:15805369,10854753:298115 +k1,16850:17666518,10854753:298115 +k1,16850:19443781,10854753:298115 +(1,16850:19443781,10854753:0,452978,115847 +r1,16850:21912318,10854753:2468537,568825,115847 +k1,16850:19443781,10854753:-2468537 +) +(1,16850:19443781,10854753:2468537,452978,115847 +k1,16850:19443781,10854753:3277 +h1,16850:21909041,10854753:0,411205,112570 +) +k1,16850:22210433,10854753:298115 +k1,16850:23376900,10854753:298115 +k1,16850:24779297,10854753:298115 +k1,16850:26343567,10854753:298114 +k1,16850:27707953,10854753:298115 +k1,16850:29025153,10854753:298115 +k1,16850:31391584,10854753:298115 +k1,16850:32583029,10854753:0 +) +(1,16851:6630773,11696241:25952256,513147,134348 +k1,16850:11465186,11696241:206260 +k1,16850:12330737,11696241:206259 +k1,16850:13556082,11696241:206260 +k1,16850:16603982,11696241:206259 +k1,16850:18001687,11696241:206260 +k1,16850:21490644,11696241:206259 +k1,16850:22324739,11696241:206260 +k1,16850:23734239,11696241:206259 +k1,16850:26775586,11696241:206260 +k1,16850:27850197,11696241:206259 +k1,16850:29468758,11696241:206260 +k1,16850:32583029,11696241:0 +) +(1,16851:6630773,12537729:25952256,513147,134348 +g1,16850:9586446,12537729 +g1,16850:10733326,12537729 +g1,16850:13785993,12537729 +g1,16850:20040749,12537729 +k1,16851:32583029,12537729:10773463 +g1,16851:32583029,12537729 +) +(1,16853:6630773,13379217:25952256,513147,126483 +h1,16852:6630773,13379217:983040,0,0 +g1,16852:8766591,13379217 +g1,16852:10271953,13379217 +g1,16852:12048634,13379217 +g1,16852:12603723,13379217 +g1,16852:16309128,13379217 +g1,16852:17159785,13379217 +g1,16852:18378099,13379217 +g1,16852:19560368,13379217 +g1,16852:21153548,13379217 +g1,16852:24048273,13379217 +(1,16852:24048273,13379217:0,452978,115847 +r1,16852:27220233,13379217:3171960,568825,115847 +k1,16852:24048273,13379217:-3171960 +) +(1,16852:24048273,13379217:3171960,452978,115847 +k1,16852:24048273,13379217:3277 +h1,16852:27216956,13379217:0,411205,112570 +) +k1,16853:32583029,13379217:5189126 +g1,16853:32583029,13379217 +) +v1,16855:6630773,14569683:0,393216,0 +(1,16878:6630773,26256467:25952256,12080000,196608 +g1,16878:6630773,26256467 +g1,16878:6630773,26256467 +g1,16878:6434165,26256467 +(1,16878:6434165,26256467:0,12080000,196608 +r1,16878:32779637,26256467:26345472,12276608,196608 +k1,16878:6434165,26256467:-26345472 +) +(1,16878:6434165,26256467:26345472,12080000,196608 +[1,16878:6630773,26256467:25952256,11883392,0 +(1,16857:6630773,14783593:25952256,410518,101187 +(1,16856:6630773,14783593:0,0,0 +g1,16856:6630773,14783593 +g1,16856:6630773,14783593 +g1,16856:6303093,14783593 +(1,16856:6303093,14783593:0,0,0 +) +g1,16856:6630773,14783593 +) +g1,16857:11056813,14783593 +g1,16857:12005251,14783593 +k1,16857:12005251,14783593:0 +h1,16857:24334933,14783593:0,0,0 +k1,16857:32583029,14783593:8248096 +g1,16857:32583029,14783593 +) +(1,16858:6630773,15449771:25952256,404226,82312 +h1,16858:6630773,15449771:0,0,0 +g1,16858:12637542,15449771 +g1,16858:15798999,15449771 +g1,16858:16431291,15449771 +h1,16858:17063583,15449771:0,0,0 +k1,16858:32583029,15449771:15519446 +g1,16858:32583029,15449771 +) +(1,16877:6630773,16181485:25952256,410518,6290 +(1,16860:6630773,16181485:0,0,0 +g1,16860:6630773,16181485 +g1,16860:6630773,16181485 +g1,16860:6303093,16181485 +(1,16860:6303093,16181485:0,0,0 +) +g1,16860:6630773,16181485 +) +g1,16877:7579210,16181485 +g1,16877:9159939,16181485 +g1,16877:10108376,16181485 +h1,16877:10740667,16181485:0,0,0 +k1,16877:32583029,16181485:21842362 +g1,16877:32583029,16181485 +) +(1,16877:6630773,16847663:25952256,410518,101187 +h1,16877:6630773,16847663:0,0,0 +g1,16877:7579210,16847663 +g1,16877:7895356,16847663 +g1,16877:8527648,16847663 +g1,16877:11372959,16847663 +g1,16877:11689105,16847663 +g1,16877:12005251,16847663 +g1,16877:12637543,16847663 +g1,16877:13902126,16847663 +h1,16877:23386496,16847663:0,0,0 +k1,16877:32583029,16847663:9196533 +g1,16877:32583029,16847663 +) +(1,16877:6630773,17513841:25952256,410518,107478 +h1,16877:6630773,17513841:0,0,0 +g1,16877:7579210,17513841 +g1,16877:7895356,17513841 +g1,16877:8527648,17513841 +g1,16877:11372959,17513841 +g1,16877:11689105,17513841 +g1,16877:12005251,17513841 +g1,16877:12637543,17513841 +g1,16877:14218272,17513841 +h1,16877:15799000,17513841:0,0,0 +k1,16877:32583028,17513841:16784028 +g1,16877:32583028,17513841 +) +(1,16877:6630773,18180019:25952256,410518,31456 +h1,16877:6630773,18180019:0,0,0 +g1,16877:7579210,18180019 +g1,16877:7895356,18180019 +g1,16877:8527648,18180019 +g1,16877:9476085,18180019 +g1,16877:9792231,18180019 +g1,16877:10108377,18180019 +g1,16877:10424523,18180019 +g1,16877:10740669,18180019 +g1,16877:11056815,18180019 +g1,16877:11372961,18180019 +g1,16877:11689107,18180019 +g1,16877:12005253,18180019 +g1,16877:12637545,18180019 +g1,16877:13902128,18180019 +h1,16877:15482856,18180019:0,0,0 +k1,16877:32583028,18180019:17100172 +g1,16877:32583028,18180019 +) +(1,16877:6630773,18846197:25952256,410518,107478 +h1,16877:6630773,18846197:0,0,0 +g1,16877:7579210,18846197 +g1,16877:7895356,18846197 +g1,16877:8527648,18846197 +g1,16877:11372959,18846197 +g1,16877:11689105,18846197 +g1,16877:12005251,18846197 +g1,16877:12637543,18846197 +g1,16877:14218272,18846197 +h1,16877:15799000,18846197:0,0,0 +k1,16877:32583028,18846197:16784028 +g1,16877:32583028,18846197 +) +(1,16877:6630773,19512375:25952256,410518,50331 +h1,16877:6630773,19512375:0,0,0 +g1,16877:7579210,19512375 +g1,16877:7895356,19512375 +g1,16877:8527648,19512375 +g1,16877:10740668,19512375 +g1,16877:11056814,19512375 +g1,16877:11372960,19512375 +g1,16877:11689106,19512375 +g1,16877:12005252,19512375 +g1,16877:12637544,19512375 +g1,16877:13902127,19512375 +h1,16877:22438060,19512375:0,0,0 +k1,16877:32583029,19512375:10144969 +g1,16877:32583029,19512375 +) +(1,16877:6630773,20178553:25952256,410518,107478 +h1,16877:6630773,20178553:0,0,0 +g1,16877:7579210,20178553 +g1,16877:7895356,20178553 +g1,16877:8527648,20178553 +g1,16877:10740668,20178553 +g1,16877:11056814,20178553 +g1,16877:11372960,20178553 +g1,16877:11689106,20178553 +g1,16877:12005252,20178553 +g1,16877:12637544,20178553 +g1,16877:14218273,20178553 +h1,16877:15799001,20178553:0,0,0 +k1,16877:32583029,20178553:16784028 +g1,16877:32583029,20178553 +) +(1,16877:6630773,20844731:25952256,410518,107478 +h1,16877:6630773,20844731:0,0,0 +g1,16877:7579210,20844731 +g1,16877:7895356,20844731 +g1,16877:8527648,20844731 +g1,16877:10740668,20844731 +g1,16877:11056814,20844731 +g1,16877:11372960,20844731 +g1,16877:11689106,20844731 +g1,16877:12005252,20844731 +g1,16877:13902126,20844731 +g1,16877:14850563,20844731 +h1,16877:15166709,20844731:0,0,0 +k1,16877:32583029,20844731:17416320 +g1,16877:32583029,20844731 +) +(1,16877:6630773,21510909:25952256,410518,107478 +h1,16877:6630773,21510909:0,0,0 +g1,16877:7579210,21510909 +g1,16877:7895356,21510909 +g1,16877:8527648,21510909 +g1,16877:13902125,21510909 +g1,16877:14850562,21510909 +h1,16877:15166708,21510909:0,0,0 +k1,16877:32583028,21510909:17416320 +g1,16877:32583028,21510909 +) +(1,16877:6630773,22177087:25952256,410518,31456 +h1,16877:6630773,22177087:0,0,0 +g1,16877:7579210,22177087 +g1,16877:7895356,22177087 +g1,16877:8527648,22177087 +g1,16877:10424522,22177087 +g1,16877:10740668,22177087 +g1,16877:11056814,22177087 +g1,16877:11372960,22177087 +g1,16877:11689106,22177087 +g1,16877:12005252,22177087 +g1,16877:12637544,22177087 +g1,16877:13902127,22177087 +h1,16877:14218273,22177087:0,0,0 +k1,16877:32583029,22177087:18364756 +g1,16877:32583029,22177087 +) +(1,16877:6630773,22843265:25952256,410518,31456 +h1,16877:6630773,22843265:0,0,0 +g1,16877:7579210,22843265 +g1,16877:7895356,22843265 +g1,16877:8527648,22843265 +g1,16877:10424522,22843265 +g1,16877:10740668,22843265 +g1,16877:11056814,22843265 +g1,16877:11372960,22843265 +g1,16877:11689106,22843265 +g1,16877:12005252,22843265 +g1,16877:12637544,22843265 +g1,16877:13902127,22843265 +h1,16877:14218273,22843265:0,0,0 +k1,16877:32583029,22843265:18364756 +g1,16877:32583029,22843265 +) +(1,16877:6630773,23509443:25952256,410518,31456 +h1,16877:6630773,23509443:0,0,0 +g1,16877:7579210,23509443 +g1,16877:7895356,23509443 +g1,16877:8527648,23509443 +g1,16877:9792231,23509443 +g1,16877:10108377,23509443 +g1,16877:10424523,23509443 +g1,16877:10740669,23509443 +g1,16877:11056815,23509443 +g1,16877:11372961,23509443 +g1,16877:11689107,23509443 +g1,16877:12005253,23509443 +g1,16877:13902127,23509443 +g1,16877:14850564,23509443 +h1,16877:15166710,23509443:0,0,0 +k1,16877:32583030,23509443:17416320 +g1,16877:32583030,23509443 +) +(1,16877:6630773,24175621:25952256,410518,31456 +h1,16877:6630773,24175621:0,0,0 +g1,16877:7579210,24175621 +g1,16877:7895356,24175621 +g1,16877:8527648,24175621 +g1,16877:12005251,24175621 +g1,16877:12637543,24175621 +g1,16877:13902126,24175621 +k1,16877:13902126,24175621:0 +h1,16877:14534417,24175621:0,0,0 +k1,16877:32583029,24175621:18048612 +g1,16877:32583029,24175621 +) +(1,16877:6630773,24841799:25952256,410518,31456 +h1,16877:6630773,24841799:0,0,0 +g1,16877:7579210,24841799 +g1,16877:7895356,24841799 +g1,16877:8527648,24841799 +g1,16877:10424522,24841799 +g1,16877:10740668,24841799 +g1,16877:11056814,24841799 +g1,16877:11372960,24841799 +g1,16877:11689106,24841799 +g1,16877:12005252,24841799 +g1,16877:12637544,24841799 +g1,16877:13902127,24841799 +h1,16877:14218273,24841799:0,0,0 +k1,16877:32583029,24841799:18364756 +g1,16877:32583029,24841799 +) +(1,16877:6630773,25507977:25952256,410518,31456 +h1,16877:6630773,25507977:0,0,0 +g1,16877:7579210,25507977 +g1,16877:7895356,25507977 +g1,16877:8527648,25507977 +g1,16877:9792231,25507977 +g1,16877:10108377,25507977 +g1,16877:10424523,25507977 +g1,16877:10740669,25507977 +g1,16877:11056815,25507977 +g1,16877:11372961,25507977 +g1,16877:11689107,25507977 +g1,16877:12005253,25507977 +g1,16877:13902127,25507977 +g1,16877:14850564,25507977 +h1,16877:15166710,25507977:0,0,0 +k1,16877:32583030,25507977:17416320 +g1,16877:32583030,25507977 +) +(1,16877:6630773,26174155:25952256,410518,82312 +h1,16877:6630773,26174155:0,0,0 +g1,16877:7579210,26174155 +g1,16877:7895356,26174155 +g1,16877:8527648,26174155 +g1,16877:11056814,26174155 +g1,16877:14218271,26174155 +g1,16877:15482854,26174155 +h1,16877:17695874,26174155:0,0,0 +k1,16877:32583029,26174155:14887155 +g1,16877:32583029,26174155 +) +] +) +g1,16878:32583029,26256467 +g1,16878:6630773,26256467 +g1,16878:6630773,26256467 +g1,16878:32583029,26256467 +g1,16878:32583029,26256467 +) +h1,16878:6630773,26453075:0,0,0 +v1,16882:6630773,28343139:0,393216,0 +(1,16883:6630773,32508755:25952256,4558832,616038 +g1,16883:6630773,32508755 +(1,16883:6630773,32508755:25952256,4558832,616038 +(1,16883:6630773,33124793:25952256,5174870,0 +[1,16883:6630773,33124793:25952256,5174870,0 +(1,16883:6630773,33098579:25952256,5122442,0 +r1,16883:6656987,33098579:26214,5122442,0 +[1,16883:6656987,33098579:25899828,5122442,0 +(1,16883:6656987,32508755:25899828,3942794,0 +[1,16883:7246811,32508755:24720180,3942794,0 +(1,16883:7246811,29849943:24720180,1283982,196608 +(1,16882:7246811,29849943:0,1283982,196608 +r1,16883:9812056,29849943:2565245,1480590,196608 +k1,16882:7246811,29849943:-2565245 +) +(1,16882:7246811,29849943:2565245,1283982,196608 +) +k1,16882:9965813,29849943:153757 +k1,16882:12750185,29849943:153757 +(1,16882:12750185,29849943:0,452978,115847 +r1,16883:15922145,29849943:3171960,568825,115847 +k1,16882:12750185,29849943:-3171960 +) +(1,16882:12750185,29849943:3171960,452978,115847 +k1,16882:12750185,29849943:3277 +h1,16882:15918868,29849943:0,411205,112570 +) +k1,16882:16075901,29849943:153756 +k1,16882:16845696,29849943:153757 +k1,16882:18018538,29849943:153757 +k1,16882:19271989,29849943:153757 +k1,16882:20077174,29849943:153757 +(1,16882:20077174,29849943:0,452978,115847 +r1,16883:21842287,29849943:1765113,568825,115847 +k1,16882:20077174,29849943:-1765113 +) +(1,16882:20077174,29849943:1765113,452978,115847 +k1,16882:20077174,29849943:3277 +h1,16882:21839010,29849943:0,411205,112570 +) +k1,16882:21996044,29849943:153757 +k1,16882:24005124,29849943:153756 +k1,16882:25350326,29849943:153757 +k1,16882:27287973,29849943:153757 +k1,16882:28460815,29849943:153757 +k1,16882:31966991,29849943:0 +) +(1,16883:7246811,30691431:24720180,513147,134348 +k1,16882:9441194,30691431:234857 +k1,16882:11623781,30691431:234857 +k1,16882:15665625,30691431:234858 +k1,16882:16709852,30691431:234857 +k1,16882:17963794,30691431:234857 +k1,16882:21873910,30691431:234857 +k1,16882:23300212,30691431:234857 +k1,16882:24482720,30691431:234857 +k1,16882:26169200,30691431:234858 +k1,16882:27793420,30691431:234857 +k1,16882:30713287,30691431:234857 +k1,16882:31966991,30691431:0 +) +(1,16883:7246811,31532919:24720180,513147,126483 +k1,16882:8613670,31532919:262577 +k1,16882:10162063,31532919:262577 +(1,16882:10162063,31532919:0,452978,115847 +r1,16883:17202854,31532919:7040791,568825,115847 +k1,16882:10162063,31532919:-7040791 +) +(1,16882:10162063,31532919:7040791,452978,115847 +k1,16882:10162063,31532919:3277 +h1,16882:17199577,31532919:0,411205,112570 +) +k1,16882:17465431,31532919:262577 +k1,16882:18675659,31532919:262577 +k1,16882:19294096,31532919:262577 +k1,16882:21206869,31532919:262576 +k1,16882:24394973,31532919:262577 +k1,16882:27305860,31532919:262577 +k1,16882:29058726,31532919:262577 +k1,16882:30491776,31532919:262577 +k1,16882:31966991,31532919:0 +) +(1,16883:7246811,32374407:24720180,513147,134348 +g1,16882:11129163,32374407 +g1,16882:12347477,32374407 +g1,16882:15478131,32374407 +g1,16882:16336652,32374407 +g1,16882:17554966,32374407 +k1,16883:31966991,32374407:12278828 +g1,16883:31966991,32374407 +) +] +) +] +r1,16883:32583029,33098579:26214,5122442,0 +) +] +) +) +g1,16883:32583029,32508755 +) +h1,16883:6630773,33124793:0,0,0 +(1,16885:6630773,34490569:25952256,513147,126483 +h1,16884:6630773,34490569:983040,0,0 +k1,16884:8981822,34490569:171322 +k1,16884:12828403,34490569:171322 +k1,16884:13659017,34490569:171322 +k1,16884:14849424,34490569:171322 +k1,16884:16670287,34490569:171322 +k1,16884:18230971,34490569:171321 +k1,16884:19393853,34490569:171322 +k1,16884:22655198,34490569:171322 +k1,16884:24220471,34490569:171322 +k1,16884:27534900,34490569:171322 +k1,16884:28322260,34490569:171322 +k1,16884:29591310,34490569:171322 +k1,16884:32583029,34490569:0 +) +(1,16885:6630773,35332057:25952256,513147,134348 +k1,16884:9689900,35332057:251565 +k1,16884:12368262,35332057:251564 +k1,16884:13271255,35332057:251565 +k1,16884:13878679,35332057:251564 +k1,16884:15414750,35332057:251565 +k1,16884:16325606,35332057:251564 +k1,16884:19366383,35332057:251565 +k1,16884:20809393,35332057:251565 +k1,16884:24420988,35332057:251564 +k1,16884:25863998,35332057:251565 +k1,16884:27383028,35332057:251564 +k1,16884:27990453,35332057:251565 +k1,16884:29667425,35332057:251564 +k1,16884:31896867,35332057:251565 +k1,16884:32583029,35332057:0 +) +(1,16885:6630773,36173545:25952256,505283,134348 +k1,16884:7251096,36173545:264463 +k1,16884:9097598,36173545:264463 +k1,16884:12880689,36173545:264463 +k1,16884:14341838,36173545:264462 +k1,16884:16317446,36173545:264463 +k1,16884:17573469,36173545:264463 +k1,16884:20616659,36173545:264463 +k1,16884:21567284,36173545:264463 +k1,16884:24806426,36173545:264463 +k1,16884:27440670,36173545:264462 +k1,16884:28658682,36173545:264463 +k1,16884:29901598,36173545:264463 +k1,16884:31563944,36173545:264463 +k1,16884:32583029,36173545:0 +) +(1,16885:6630773,37015033:25952256,513147,122846 +g1,16884:9671643,37015033 +g1,16884:11027582,37015033 +g1,16884:11839573,37015033 +g1,16884:12394662,37015033 +g1,16884:14019299,37015033 +g1,16884:15612479,37015033 +g1,16884:18507204,37015033 +(1,16884:18507204,37015033:0,452978,122846 +r1,16884:22382588,37015033:3875384,575824,122846 +k1,16884:18507204,37015033:-3875384 +) +(1,16884:18507204,37015033:3875384,452978,122846 +k1,16884:18507204,37015033:3277 +h1,16884:22379311,37015033:0,411205,112570 +) +k1,16885:32583029,37015033:10026771 +g1,16885:32583029,37015033 +) +v1,16887:6630773,38205499:0,393216,0 +(1,16909:6630773,45325890:25952256,7513607,196608 +g1,16909:6630773,45325890 +g1,16909:6630773,45325890 +g1,16909:6434165,45325890 +(1,16909:6434165,45325890:0,7513607,196608 +r1,16909:32779637,45325890:26345472,7710215,196608 +k1,16909:6434165,45325890:-26345472 +) +(1,16909:6434165,45325890:26345472,7513607,196608 +[1,16909:6630773,45325890:25952256,7316999,0 +(1,16889:6630773,38413117:25952256,404226,107478 +(1,16888:6630773,38413117:0,0,0 +g1,16888:6630773,38413117 +g1,16888:6630773,38413117 +g1,16888:6303093,38413117 +(1,16888:6303093,38413117:0,0,0 +) +g1,16888:6630773,38413117 +) +g1,16889:9476084,38413117 +g1,16889:10424522,38413117 +g1,16889:18328165,38413117 +h1,16889:20541185,38413117:0,0,0 +k1,16889:32583029,38413117:12041844 +g1,16889:32583029,38413117 +) +(1,16890:6630773,39079295:25952256,404226,76021 +h1,16890:6630773,39079295:0,0,0 +k1,16890:6630773,39079295:0 +h1,16890:11056813,39079295:0,0,0 +k1,16890:32583029,39079295:21526216 +g1,16890:32583029,39079295 +) +(1,16894:6630773,39811009:25952256,404226,76021 +(1,16892:6630773,39811009:0,0,0 +g1,16892:6630773,39811009 +g1,16892:6630773,39811009 +g1,16892:6303093,39811009 +(1,16892:6303093,39811009:0,0,0 +) +g1,16892:6630773,39811009 +) +g1,16894:7579210,39811009 +g1,16894:8843793,39811009 +g1,16894:11372959,39811009 +g1,16894:13902125,39811009 +g1,16894:16431291,39811009 +g1,16894:18960457,39811009 +g1,16894:21489623,39811009 +k1,16894:21489623,39811009:0 +h1,16894:23702643,39811009:0,0,0 +k1,16894:32583029,39811009:8880386 +g1,16894:32583029,39811009 +) +(1,16896:6630773,41132547:25952256,404226,107478 +(1,16895:6630773,41132547:0,0,0 +g1,16895:6630773,41132547 +g1,16895:6630773,41132547 +g1,16895:6303093,41132547 +(1,16895:6303093,41132547:0,0,0 +) +g1,16895:6630773,41132547 +) +g1,16896:9792230,41132547 +g1,16896:10740668,41132547 +g1,16896:11056814,41132547 +g1,16896:18960457,41132547 +h1,16896:20857331,41132547:0,0,0 +k1,16896:32583029,41132547:11725698 +g1,16896:32583029,41132547 +) +(1,16897:6630773,41798725:25952256,404226,107478 +h1,16897:6630773,41798725:0,0,0 +k1,16897:6630773,41798725:0 +h1,16897:11372958,41798725:0,0,0 +k1,16897:32583030,41798725:21210072 +g1,16897:32583030,41798725 +) +(1,16901:6630773,42530439:25952256,404226,76021 +(1,16899:6630773,42530439:0,0,0 +g1,16899:6630773,42530439 +g1,16899:6630773,42530439 +g1,16899:6303093,42530439 +(1,16899:6303093,42530439:0,0,0 +) +g1,16899:6630773,42530439 +) +g1,16901:7579210,42530439 +g1,16901:8843793,42530439 +g1,16901:10740667,42530439 +g1,16901:12637541,42530439 +g1,16901:14534415,42530439 +g1,16901:16431289,42530439 +g1,16901:18328163,42530439 +h1,16901:19908891,42530439:0,0,0 +k1,16901:32583029,42530439:12674138 +g1,16901:32583029,42530439 +) +(1,16903:6630773,43851977:25952256,404226,107478 +(1,16902:6630773,43851977:0,0,0 +g1,16902:6630773,43851977 +g1,16902:6630773,43851977 +g1,16902:6303093,43851977 +(1,16902:6303093,43851977:0,0,0 +) +g1,16902:6630773,43851977 +) +g1,16903:9476084,43851977 +g1,16903:10424522,43851977 +g1,16903:18328165,43851977 +h1,16903:20225039,43851977:0,0,0 +k1,16903:32583029,43851977:12357990 +g1,16903:32583029,43851977 +) +(1,16904:6630773,44518155:25952256,404226,76021 +h1,16904:6630773,44518155:0,0,0 +k1,16904:6630773,44518155:0 +h1,16904:11056813,44518155:0,0,0 +k1,16904:32583029,44518155:21526216 +g1,16904:32583029,44518155 +) +(1,16908:6630773,45249869:25952256,404226,76021 +(1,16906:6630773,45249869:0,0,0 +g1,16906:6630773,45249869 +g1,16906:6630773,45249869 +g1,16906:6303093,45249869 +(1,16906:6303093,45249869:0,0,0 +) +g1,16906:6630773,45249869 +) +g1,16908:7579210,45249869 +g1,16908:8843793,45249869 +g1,16908:11372959,45249869 +g1,16908:13902125,45249869 +g1,16908:16431291,45249869 +g1,16908:18960457,45249869 +g1,16908:21489623,45249869 +h1,16908:23702643,45249869:0,0,0 +k1,16908:32583029,45249869:8880386 +g1,16908:32583029,45249869 +) +] +) +g1,16909:32583029,45325890 +g1,16909:6630773,45325890 +g1,16909:6630773,45325890 +g1,16909:32583029,45325890 +g1,16909:32583029,45325890 +) +h1,16909:6630773,45522498:0,0,0 +] +(1,16914:32583029,45706769:0,0,0 +g1,16914:32583029,45706769 +) +) +] +(1,16914:6630773,47279633:25952256,0,0 +h1,16914:6630773,47279633:25952256,0,0 +) +] +h1,16914:4262630,4025873:0,0,0 ] !25082 }328 -Input:2527:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:2524:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {329 -[1,16951:4262630,47279633:28320399,43253760,0 -(1,16951:4262630,4025873:0,0,0 -[1,16951:-473657,4025873:25952256,0,0 -(1,16951:-473657,-710414:25952256,0,0 -h1,16951:-473657,-710414:0,0,0 -(1,16951:-473657,-710414:0,0,0 -(1,16951:-473657,-710414:0,0,0 -g1,16951:-473657,-710414 -(1,16951:-473657,-710414:65781,0,65781 -g1,16951:-407876,-710414 -[1,16951:-407876,-644633:0,0,0 +[1,16982:4262630,47279633:28320399,43253760,0 +(1,16982:4262630,4025873:0,0,0 +[1,16982:-473657,4025873:25952256,0,0 +(1,16982:-473657,-710414:25952256,0,0 +h1,16982:-473657,-710414:0,0,0 +(1,16982:-473657,-710414:0,0,0 +(1,16982:-473657,-710414:0,0,0 +g1,16982:-473657,-710414 +(1,16982:-473657,-710414:65781,0,65781 +g1,16982:-407876,-710414 +[1,16982:-407876,-644633:0,0,0 ] ) -k1,16951:-473657,-710414:-65781 +k1,16982:-473657,-710414:-65781 ) ) -k1,16951:25478599,-710414:25952256 -g1,16951:25478599,-710414 +k1,16982:25478599,-710414:25952256 +g1,16982:25478599,-710414 ) ] ) -[1,16951:6630773,47279633:25952256,43253760,0 -[1,16951:6630773,4812305:25952256,786432,0 -(1,16951:6630773,4812305:25952256,505283,126483 -(1,16951:6630773,4812305:25952256,505283,126483 -g1,16951:3078558,4812305 -[1,16951:3078558,4812305:0,0,0 -(1,16951:3078558,2439708:0,1703936,0 -k1,16951:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,16951:2537886,2439708:1179648,16384,0 +[1,16982:6630773,47279633:25952256,43253760,0 +[1,16982:6630773,4812305:25952256,786432,0 +(1,16982:6630773,4812305:25952256,505283,126483 +(1,16982:6630773,4812305:25952256,505283,126483 +g1,16982:3078558,4812305 +[1,16982:3078558,4812305:0,0,0 +(1,16982:3078558,2439708:0,1703936,0 +k1,16982:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,16982:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,16951:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,16982:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,16951:3078558,4812305:0,0,0 -(1,16951:3078558,2439708:0,1703936,0 -g1,16951:29030814,2439708 -g1,16951:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,16951:36151628,1915420:16384,1179648,0 +[1,16982:3078558,4812305:0,0,0 +(1,16982:3078558,2439708:0,1703936,0 +g1,16982:29030814,2439708 +g1,16982:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,16982:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,16951:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,16982:37855564,2439708:1179648,16384,0 ) ) -k1,16951:3078556,2439708:-34777008 +k1,16982:3078556,2439708:-34777008 ) ] -[1,16951:3078558,4812305:0,0,0 -(1,16951:3078558,49800853:0,16384,2228224 -k1,16951:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,16951:2537886,49800853:1179648,16384,0 +[1,16982:3078558,4812305:0,0,0 +(1,16982:3078558,49800853:0,16384,2228224 +k1,16982:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,16982:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,16951:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,16982:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,16951:3078558,4812305:0,0,0 -(1,16951:3078558,49800853:0,16384,2228224 -g1,16951:29030814,49800853 -g1,16951:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,16951:36151628,51504789:16384,1179648,0 +[1,16982:3078558,4812305:0,0,0 +(1,16982:3078558,49800853:0,16384,2228224 +g1,16982:29030814,49800853 +g1,16982:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,16982:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,16951:37855564,49800853:1179648,16384,0 -) -) -k1,16951:3078556,49800853:-34777008 -) -] -g1,16951:6630773,4812305 -k1,16951:25146660,4812305:17320510 -g1,16951:26880087,4812305 -g1,16951:29193507,4812305 -g1,16951:30603186,4812305 -) -) -] -[1,16951:6630773,45706769:25952256,40108032,0 -(1,16951:6630773,45706769:25952256,40108032,0 -(1,16951:6630773,45706769:0,0,0 -g1,16951:6630773,45706769 -) -[1,16951:6630773,45706769:25952256,40108032,0 -(1,16882:6630773,6254097:25952256,505283,126483 -h1,16881:6630773,6254097:983040,0,0 -k1,16881:9084456,6254097:273956 -(1,16881:9084456,6254097:0,452978,115847 -r1,16881:10497857,6254097:1413401,568825,115847 -k1,16881:9084456,6254097:-1413401 -) -(1,16881:9084456,6254097:1413401,452978,115847 -k1,16881:9084456,6254097:3277 -h1,16881:10494580,6254097:0,411205,112570 -) -k1,16881:10771812,6254097:273955 -k1,16881:13023645,6254097:273956 -k1,16881:13829097,6254097:273955 -k1,16881:16054715,6254097:273956 -k1,16881:17738349,6254097:273955 -k1,16881:18698467,6254097:273956 -k1,16881:19430519,6254097:273955 -k1,16881:22406524,6254097:273956 -k1,16881:24056080,6254097:273955 -k1,16881:26997351,6254097:273956 -k1,16881:28660669,6254097:273955 -k1,16881:29620787,6254097:273956 -k1,16881:31591469,6254097:273955 -k1,16881:32583029,6254097:0 -) -(1,16882:6630773,7095585:25952256,513147,134348 -k1,16881:9945912,7095585:200868 -k1,16881:13076894,7095585:200867 -k1,16881:14349931,7095585:200868 -k1,16881:17748301,7095585:200868 -k1,16881:18635331,7095585:200868 -k1,16881:20304204,7095585:200867 -k1,16881:22072693,7095585:200868 -k1,16881:25887216,7095585:200868 -k1,16881:30711648,7095585:200867 -k1,16881:31563944,7095585:200868 -k1,16881:32583029,7095585:0 -) -(1,16882:6630773,7937073:25952256,513147,134348 -g1,16881:8136135,7937073 -g1,16881:9473069,7937073 -g1,16881:10331590,7937073 -g1,16881:11982441,7937073 -g1,16881:14282754,7937073 -g1,16881:15141275,7937073 -g1,16881:16693167,7937073 -g1,16881:17464525,7937073 -g1,16881:18617303,7937073 -g1,16881:19909017,7937073 -g1,16881:22688398,7937073 -g1,16881:26085783,7937073 -g1,16881:27232663,7937073 -g1,16881:28450977,7937073 -k1,16882:32583029,7937073:481697 -g1,16882:32583029,7937073 -) -(1,16884:6630773,8778561:25952256,513147,134348 -h1,16883:6630773,8778561:983040,0,0 -k1,16883:8768153,8778561:200791 -k1,16883:11992776,8778561:200792 -k1,16883:12549427,8778561:200791 -(1,16883:12549427,8778561:0,452978,115847 -r1,16883:14666252,8778561:2116825,568825,115847 -k1,16883:12549427,8778561:-2116825 -) -(1,16883:12549427,8778561:2116825,452978,115847 -k1,16883:12549427,8778561:3277 -h1,16883:14662975,8778561:0,411205,112570 -) -k1,16883:14867043,8778561:200791 -k1,16883:17027361,8778561:200792 -k1,16883:18622103,8778561:200791 -k1,16883:20003852,8778561:200790 -k1,16883:22215288,8778561:200791 -k1,16883:23363731,8778561:200792 -k1,16883:24721232,8778561:200791 -k1,16883:26206529,8778561:200791 -k1,16883:28269199,8778561:200792 -k1,16883:30465561,8778561:200791 -k1,16884:32583029,8778561:0 -) -(1,16884:6630773,9620049:25952256,513147,134348 -g1,16883:8164315,9620049 -g1,16883:9022836,9620049 -g1,16883:10241150,9620049 -g1,16883:13288573,9620049 -g1,16883:14147094,9620049 -g1,16883:16031254,9620049 -k1,16884:32583029,9620049:14069927 -g1,16884:32583029,9620049 -) -v1,16886:6630773,10766831:0,393216,0 -(1,16906:6630773,20375913:25952256,10002298,196608 -g1,16906:6630773,20375913 -g1,16906:6630773,20375913 -g1,16906:6434165,20375913 -(1,16906:6434165,20375913:0,10002298,196608 -r1,16906:32779637,20375913:26345472,10198906,196608 -k1,16906:6434165,20375913:-26345472 -) -(1,16906:6434165,20375913:26345472,10002298,196608 -[1,16906:6630773,20375913:25952256,9805690,0 -(1,16888:6630773,10974449:25952256,404226,101187 -(1,16887:6630773,10974449:0,0,0 -g1,16887:6630773,10974449 -g1,16887:6630773,10974449 -g1,16887:6303093,10974449 -(1,16887:6303093,10974449:0,0,0 -) -g1,16887:6630773,10974449 -) -g1,16888:8843793,10974449 -k1,16888:8843793,10974449:0 -h1,16888:9476085,10974449:0,0,0 -k1,16888:32583029,10974449:23106944 -g1,16888:32583029,10974449 -) -(1,16889:6630773,11640627:25952256,404226,107478 -h1,16889:6630773,11640627:0,0,0 -g1,16889:6946919,11640627 -g1,16889:7263065,11640627 -g1,16889:7579211,11640627 -g1,16889:7895357,11640627 -g1,16889:11689106,11640627 -g1,16889:12321398,11640627 -g1,16889:20225041,11640627 -k1,16889:20225041,11640627:0 -h1,16889:22754207,11640627:0,0,0 -k1,16889:32583029,11640627:9828822 -g1,16889:32583029,11640627 -) -(1,16890:6630773,12306805:25952256,404226,101187 -h1,16890:6630773,12306805:0,0,0 -g1,16890:6946919,12306805 -g1,16890:7263065,12306805 -g1,16890:7579211,12306805 -g1,16890:7895357,12306805 -g1,16890:8211503,12306805 -g1,16890:8527649,12306805 -g1,16890:8843795,12306805 -g1,16890:9159941,12306805 -g1,16890:9476087,12306805 -g1,16890:9792233,12306805 -g1,16890:10108379,12306805 -g1,16890:12005253,12306805 -g1,16890:12637545,12306805 -g1,16890:20225042,12306805 -g1,16890:20857334,12306805 -k1,16890:20857334,12306805:0 -h1,16890:24651083,12306805:0,0,0 -k1,16890:32583029,12306805:7931946 -g1,16890:32583029,12306805 -) -(1,16891:6630773,12972983:25952256,404226,107478 -h1,16891:6630773,12972983:0,0,0 -g1,16891:6946919,12972983 -g1,16891:7263065,12972983 -g1,16891:7579211,12972983 -g1,16891:7895357,12972983 -g1,16891:8211503,12972983 -g1,16891:8527649,12972983 -g1,16891:8843795,12972983 -g1,16891:9159941,12972983 -g1,16891:9476087,12972983 -g1,16891:9792233,12972983 -g1,16891:10108379,12972983 -g1,16891:11372962,12972983 -g1,16891:12005254,12972983 -k1,16891:12005254,12972983:0 -h1,16891:16115149,12972983:0,0,0 -k1,16891:32583029,12972983:16467880 -g1,16891:32583029,12972983 -) -(1,16892:6630773,13639161:25952256,404226,82312 -h1,16892:6630773,13639161:0,0,0 -g1,16892:6946919,13639161 -g1,16892:7263065,13639161 -g1,16892:7579211,13639161 -g1,16892:7895357,13639161 -g1,16892:8211503,13639161 -g1,16892:8527649,13639161 -g1,16892:8843795,13639161 -g1,16892:9159941,13639161 -g1,16892:9476087,13639161 -g1,16892:9792233,13639161 -g1,16892:10108379,13639161 -g1,16892:11372962,13639161 -g1,16892:12005254,13639161 -k1,16892:12005254,13639161:0 -h1,16892:15799003,13639161:0,0,0 -k1,16892:32583029,13639161:16784026 -g1,16892:32583029,13639161 -) -(1,16893:6630773,14305339:25952256,404226,107478 -h1,16893:6630773,14305339:0,0,0 -g1,16893:6946919,14305339 -g1,16893:7263065,14305339 -g1,16893:7579211,14305339 -g1,16893:7895357,14305339 -g1,16893:8211503,14305339 -g1,16893:8527649,14305339 -g1,16893:8843795,14305339 -g1,16893:9159941,14305339 -g1,16893:9476087,14305339 -g1,16893:9792233,14305339 -g1,16893:10108379,14305339 -g1,16893:11372962,14305339 -g1,16893:12005254,14305339 -g1,16893:19908897,14305339 -g1,16893:23702646,14305339 -g1,16893:24651084,14305339 -h1,16893:24967230,14305339:0,0,0 -k1,16893:32583029,14305339:7615799 -g1,16893:32583029,14305339 -) -(1,16894:6630773,14971517:25952256,404226,76021 -h1,16894:6630773,14971517:0,0,0 -g1,16894:6946919,14971517 -g1,16894:7263065,14971517 -g1,16894:7579211,14971517 -g1,16894:7895357,14971517 -g1,16894:8211503,14971517 -g1,16894:8527649,14971517 -g1,16894:8843795,14971517 -g1,16894:9159941,14971517 -g1,16894:9476087,14971517 -g1,16894:9792233,14971517 -g1,16894:10108379,14971517 -h1,16894:10424525,14971517:0,0,0 -k1,16894:32583029,14971517:22158504 -g1,16894:32583029,14971517 -) -(1,16895:6630773,15637695:25952256,404226,101187 -h1,16895:6630773,15637695:0,0,0 -h1,16895:8527647,15637695:0,0,0 -k1,16895:32583029,15637695:24055382 -g1,16895:32583029,15637695 -) -(1,16905:6630773,16369409:25952256,404226,9436 -(1,16897:6630773,16369409:0,0,0 -g1,16897:6630773,16369409 -g1,16897:6630773,16369409 -g1,16897:6303093,16369409 -(1,16897:6303093,16369409:0,0,0 -) -g1,16897:6630773,16369409 -) -g1,16905:7579210,16369409 -g1,16905:8211502,16369409 -g1,16905:8843794,16369409 -g1,16905:11372960,16369409 -g1,16905:12321397,16369409 -g1,16905:12953689,16369409 -h1,16905:13269835,16369409:0,0,0 -k1,16905:32583029,16369409:19313194 -g1,16905:32583029,16369409 -) -(1,16905:6630773,17035587:25952256,404226,101187 -h1,16905:6630773,17035587:0,0,0 -g1,16905:7579210,17035587 -g1,16905:7895356,17035587 -g1,16905:8211502,17035587 -g1,16905:8527648,17035587 -g1,16905:8843794,17035587 -g1,16905:9159940,17035587 -g1,16905:10740669,17035587 -g1,16905:12637543,17035587 -g1,16905:12953689,17035587 -g1,16905:13269835,17035587 -g1,16905:14534418,17035587 -g1,16905:14850564,17035587 -g1,16905:15166710,17035587 -g1,16905:16431293,17035587 -g1,16905:16747439,17035587 -g1,16905:17063585,17035587 -h1,16905:18012022,17035587:0,0,0 -k1,16905:32583029,17035587:14571007 -g1,16905:32583029,17035587 -) -(1,16905:6630773,17701765:25952256,404226,6290 -h1,16905:6630773,17701765:0,0,0 -g1,16905:7579210,17701765 -g1,16905:7895356,17701765 -g1,16905:8211502,17701765 -g1,16905:8527648,17701765 -g1,16905:8843794,17701765 -g1,16905:10740669,17701765 -g1,16905:12637544,17701765 -g1,16905:14534419,17701765 -g1,16905:16431294,17701765 -k1,16905:16431294,17701765:0 -h1,16905:18012023,17701765:0,0,0 -k1,16905:32583029,17701765:14571006 -g1,16905:32583029,17701765 -) -(1,16905:6630773,18367943:25952256,388497,9436 -h1,16905:6630773,18367943:0,0,0 -g1,16905:7579210,18367943 -g1,16905:8211502,18367943 -g1,16905:10740668,18367943 -g1,16905:11056814,18367943 -g1,16905:11372960,18367943 -g1,16905:11689106,18367943 -g1,16905:12637543,18367943 -g1,16905:12953689,18367943 -g1,16905:14534418,18367943 -g1,16905:14850564,18367943 -g1,16905:16431293,18367943 -g1,16905:16747439,18367943 -h1,16905:18012022,18367943:0,0,0 -k1,16905:32583029,18367943:14571007 -g1,16905:32583029,18367943 -) -(1,16905:6630773,19034121:25952256,388497,9436 -h1,16905:6630773,19034121:0,0,0 -g1,16905:7579210,19034121 -g1,16905:8211502,19034121 -g1,16905:10740668,19034121 -g1,16905:11056814,19034121 -g1,16905:11372960,19034121 -g1,16905:11689106,19034121 -g1,16905:12005252,19034121 -g1,16905:12637544,19034121 -g1,16905:12953690,19034121 -g1,16905:14534419,19034121 -g1,16905:14850565,19034121 -g1,16905:16431294,19034121 -g1,16905:16747440,19034121 -h1,16905:18012023,19034121:0,0,0 -k1,16905:32583029,19034121:14571006 -g1,16905:32583029,19034121 -) -(1,16905:6630773,19700299:25952256,388497,9436 -h1,16905:6630773,19700299:0,0,0 -g1,16905:7579210,19700299 -g1,16905:8211502,19700299 -g1,16905:10740668,19700299 -g1,16905:11056814,19700299 -g1,16905:11372960,19700299 -g1,16905:11689106,19700299 -g1,16905:12005252,19700299 -g1,16905:12637544,19700299 -g1,16905:12953690,19700299 -g1,16905:14534419,19700299 -g1,16905:14850565,19700299 -g1,16905:16431294,19700299 -g1,16905:16747440,19700299 -h1,16905:18012023,19700299:0,0,0 -k1,16905:32583029,19700299:14571006 -g1,16905:32583029,19700299 -) -(1,16905:6630773,20366477:25952256,404226,9436 -h1,16905:6630773,20366477:0,0,0 -g1,16905:7579210,20366477 -g1,16905:8211502,20366477 -g1,16905:9476085,20366477 -g1,16905:11056814,20366477 -g1,16905:11689106,20366477 -g1,16905:13269835,20366477 -h1,16905:14534418,20366477:0,0,0 -k1,16905:32583030,20366477:18048612 -g1,16905:32583030,20366477 -) -] -) -g1,16906:32583029,20375913 -g1,16906:6630773,20375913 -g1,16906:6630773,20375913 -g1,16906:32583029,20375913 -g1,16906:32583029,20375913 -) -h1,16906:6630773,20572521:0,0,0 -(1,16910:6630773,21894613:25952256,513147,134348 -h1,16909:6630773,21894613:983040,0,0 -k1,16909:8318605,21894613:227035 -k1,16909:9413993,21894613:227036 -k1,16909:11189644,21894613:227035 -k1,16909:12068107,21894613:227035 -k1,16909:13707444,21894613:227036 -k1,16909:14550517,21894613:227035 -k1,16909:17009054,21894613:227036 -k1,16909:18520595,21894613:227035 -k1,16909:20939809,21894613:227035 -k1,16909:22035197,21894613:227036 -k1,16909:23366514,21894613:227035 -k1,16909:24686034,21894613:227035 -k1,16909:27144571,21894613:227036 -k1,16909:30133949,21894613:227035 -k1,16910:32583029,21894613:0 -) -(1,16910:6630773,22736101:25952256,513147,134348 -k1,16909:8365839,22736101:135332 -k1,16909:11435872,22736101:135331 -k1,16909:12590289,22736101:135332 -k1,16909:14464947,22736101:135332 -k1,16909:15259570,22736101:135331 -k1,16909:17734537,22736101:135332 -k1,16909:18529161,22736101:135332 -k1,16909:22339751,22736101:135331 -k1,16909:23579365,22736101:135332 -k1,16909:25430430,22736101:135332 -k1,16909:27753353,22736101:135331 -k1,16909:28907770,22736101:135332 -k1,16909:32583029,22736101:0 -) -(1,16910:6630773,23577589:25952256,505283,134348 -k1,16909:7506031,23577589:189096 -k1,16909:10408319,23577589:189097 -k1,16909:12204358,23577589:189096 -k1,16909:14432935,23577589:189097 -k1,16909:15091924,23577589:189096 -k1,16909:15812518,23577589:189097 -k1,16909:17784849,23577589:189096 -k1,16909:20386982,23577589:189097 -k1,16909:21227506,23577589:189096 -k1,16909:22509088,23577589:189097 -k1,16909:25278336,23577589:189096 -k1,16909:27746119,23577589:189097 -k1,16909:31025238,23577589:189096 -k1,16910:32583029,23577589:0 -k1,16910:32583029,23577589:0 -) -(1,16911:6630773,25668849:25952256,555811,139132 -(1,16911:6630773,25668849:2899444,534184,12975 -g1,16911:6630773,25668849 -g1,16911:9530217,25668849 -) -k1,16911:32583029,25668849:20389102 -g1,16911:32583029,25668849 -) -(1,16916:6630773,26903553:25952256,513147,134348 -k1,16915:9422334,26903553:256628 -k1,16915:11957648,26903553:256628 -k1,16915:14974652,26903553:256628 -k1,16915:18257077,26903553:256628 -k1,16915:19798211,26903553:256628 -k1,16915:21770572,26903553:256628 -k1,16915:22485296,26903553:256627 -k1,16915:24612322,26903553:256628 -k1,16915:25520378,26903553:256628 -k1,16915:27980982,26903553:256628 -k1,16915:30648024,26903553:256628 -k1,16915:31563944,26903553:256628 -k1,16915:32583029,26903553:0 -) -(1,16916:6630773,27745041:25952256,513147,134348 -k1,16915:8172052,27745041:151916 -k1,16915:9891588,27745041:151915 -k1,16915:10814207,27745041:151916 -k1,16915:13356173,27745041:151868 -k1,16915:14664799,27745041:151916 -k1,16915:15770264,27745041:151916 -k1,16915:17410502,27745041:151915 -k1,16915:18323946,27745041:151916 -k1,16915:20281378,27745041:151915 -k1,16915:21452379,27745041:151916 -k1,16915:23257768,27745041:151916 -k1,16915:26814278,27745041:151915 -k1,16915:27652356,27745041:151916 -k1,16915:28420309,27745041:151915 -k1,16915:29591310,27745041:151916 -k1,16915:32583029,27745041:0 -) -(1,16916:6630773,28586529:25952256,513147,7863 -g1,16915:7777653,28586529 -k1,16916:32583028,28586529:22474260 -g1,16916:32583028,28586529 -) -(1,16918:6630773,29428017:25952256,513147,134348 -h1,16917:6630773,29428017:983040,0,0 -k1,16917:8750590,29428017:183228 -k1,16917:10511269,29428017:183227 -k1,16917:11713582,29428017:183228 -k1,16917:12879849,29428017:183227 -k1,16917:15635365,29428017:183228 -k1,16917:16589295,29428017:183227 -k1,16917:18732049,29428017:183228 -k1,16917:20106722,29428017:183228 -k1,16917:25142235,29428017:183227 -k1,16917:28433180,29428017:183228 -k1,16917:29635492,29428017:183227 -k1,16917:31124853,29428017:183228 -k1,16918:32583029,29428017:0 -k1,16918:32583029,29428017:0 -) -v1,16920:6630773,30574799:0,393216,0 -(1,16951:6630773,45510161:25952256,15328578,196608 -g1,16951:6630773,45510161 -g1,16951:6630773,45510161 -g1,16951:6434165,45510161 -(1,16951:6434165,45510161:0,15328578,196608 -r1,16951:32779637,45510161:26345472,15525186,196608 -k1,16951:6434165,45510161:-26345472 -) -(1,16951:6434165,45510161:26345472,15328578,196608 -[1,16951:6630773,45510161:25952256,15131970,0 -(1,16922:6630773,30788709:25952256,410518,101187 -(1,16921:6630773,30788709:0,0,0 -g1,16921:6630773,30788709 -g1,16921:6630773,30788709 -g1,16921:6303093,30788709 -(1,16921:6303093,30788709:0,0,0 -) -g1,16921:6630773,30788709 -) -g1,16922:11372959,30788709 -g1,16922:12321397,30788709 -k1,16922:12321397,30788709:0 -h1,16922:24334933,30788709:0,0,0 -k1,16922:32583029,30788709:8248096 -g1,16922:32583029,30788709 -) -(1,16923:6630773,31454887:25952256,404226,50331 -h1,16923:6630773,31454887:0,0,0 -h1,16923:11056813,31454887:0,0,0 -k1,16923:32583029,31454887:21526216 -g1,16923:32583029,31454887 -) -(1,16950:6630773,32186601:25952256,379060,0 -(1,16925:6630773,32186601:0,0,0 -g1,16925:6630773,32186601 -g1,16925:6630773,32186601 -g1,16925:6303093,32186601 -(1,16925:6303093,32186601:0,0,0 -) -g1,16925:6630773,32186601 -) -h1,16950:7263064,32186601:0,0,0 -k1,16950:32583028,32186601:25319964 -g1,16950:32583028,32186601 -) -(1,16950:6630773,32852779:25952256,410518,101187 -h1,16950:6630773,32852779:0,0,0 -g1,16950:7579210,32852779 -g1,16950:9159939,32852779 -g1,16950:11372959,32852779 -g1,16950:12953688,32852779 -g1,16950:19592748,32852779 -h1,16950:20541185,32852779:0,0,0 -k1,16950:32583029,32852779:12041844 -g1,16950:32583029,32852779 -) -(1,16950:6630773,33518957:25952256,379060,0 -h1,16950:6630773,33518957:0,0,0 -h1,16950:7263064,33518957:0,0,0 -k1,16950:32583028,33518957:25319964 -g1,16950:32583028,33518957 -) -(1,16950:6630773,34185135:25952256,410518,101187 -h1,16950:6630773,34185135:0,0,0 -g1,16950:7579210,34185135 -g1,16950:9476084,34185135 -g1,16950:10740667,34185135 -g1,16950:14218270,34185135 -g1,16950:16747436,34185135 -g1,16950:17379728,34185135 -g1,16950:21173476,34185135 -k1,16950:21173476,34185135:0 -h1,16950:24334933,34185135:0,0,0 -k1,16950:32583029,34185135:8248096 -g1,16950:32583029,34185135 -) -(1,16950:6630773,34851313:25952256,379060,0 -h1,16950:6630773,34851313:0,0,0 -h1,16950:7263064,34851313:0,0,0 -k1,16950:32583028,34851313:25319964 -g1,16950:32583028,34851313 -) -(1,16950:6630773,35517491:25952256,404226,101187 -h1,16950:6630773,35517491:0,0,0 -k1,16950:7473828,35517491:210764 -k1,16950:8633029,35517491:210764 -k1,16950:8843793,35517491:210764 -k1,16950:9054557,35517491:210764 -k1,16950:11794486,35517491:210764 -k1,16950:12321396,35517491:210764 -k1,16950:14429034,35517491:210764 -k1,16950:19065838,35517491:210764 -k1,16950:19276602,35517491:210764 -k1,16950:19487366,35517491:210764 -k1,16950:19698130,35517491:210764 -k1,16950:22438059,35517491:210764 -k1,16950:24545697,35517491:210764 -k1,16950:25072607,35517491:210764 -k1,16950:27180245,35517491:210764 -k1,16950:27391009,35517491:210764 -k1,16950:29498647,35517491:210764 -k1,16950:30657848,35517491:210764 -h1,16950:33503159,35517491:0,0,0 -k1,16950:33503159,35517491:0 -k1,16950:33503159,35517491:0 -) -(1,16950:6630773,36183669:25952256,404226,107478 -h1,16950:6630773,36183669:0,0,0 -g1,16950:7579210,36183669 -g1,16950:8843793,36183669 -g1,16950:9159939,36183669 -g1,16950:9476085,36183669 -g1,16950:11372959,36183669 -g1,16950:11689105,36183669 -g1,16950:12005251,36183669 -g1,16950:12321397,36183669 -g1,16950:12953689,36183669 -h1,16950:18644311,36183669:0,0,0 -k1,16950:32583029,36183669:13938718 -g1,16950:32583029,36183669 -) -(1,16950:6630773,36849847:25952256,404226,76021 -h1,16950:6630773,36849847:0,0,0 -g1,16950:7579210,36849847 -g1,16950:8843793,36849847 -g1,16950:9159939,36849847 -g1,16950:9476085,36849847 -g1,16950:10424522,36849847 -g1,16950:10740668,36849847 -g1,16950:11056814,36849847 -g1,16950:11372960,36849847 -g1,16950:11689106,36849847 -g1,16950:12005252,36849847 -g1,16950:12321398,36849847 -g1,16950:12953690,36849847 -h1,16950:13902127,36849847:0,0,0 -k1,16950:32583029,36849847:18680902 -g1,16950:32583029,36849847 -) -(1,16950:6630773,37516025:25952256,404226,76021 -h1,16950:6630773,37516025:0,0,0 -g1,16950:7579210,37516025 -g1,16950:8843793,37516025 -g1,16950:9159939,37516025 -g1,16950:9476085,37516025 -g1,16950:10424522,37516025 -g1,16950:10740668,37516025 -g1,16950:11056814,37516025 -g1,16950:11372960,37516025 -g1,16950:11689106,37516025 -g1,16950:12005252,37516025 -g1,16950:12321398,37516025 -g1,16950:12953690,37516025 -h1,16950:13902127,37516025:0,0,0 -k1,16950:32583029,37516025:18680902 -g1,16950:32583029,37516025 -) -(1,16950:6630773,38182203:25952256,404226,76021 -h1,16950:6630773,38182203:0,0,0 -g1,16950:7579210,38182203 -g1,16950:8843793,38182203 -g1,16950:9159939,38182203 -g1,16950:9476085,38182203 -g1,16950:10424522,38182203 -g1,16950:10740668,38182203 -g1,16950:11056814,38182203 -g1,16950:11372960,38182203 -g1,16950:11689106,38182203 -g1,16950:12005252,38182203 -g1,16950:12321398,38182203 -g1,16950:12953690,38182203 -h1,16950:14218273,38182203:0,0,0 -k1,16950:32583029,38182203:18364756 -g1,16950:32583029,38182203 -) -(1,16950:6630773,38848381:25952256,379060,0 -h1,16950:6630773,38848381:0,0,0 -h1,16950:7263064,38848381:0,0,0 -k1,16950:32583028,38848381:25319964 -g1,16950:32583028,38848381 -) -(1,16950:6630773,39514559:25952256,404226,76021 -h1,16950:6630773,39514559:0,0,0 -g1,16950:7579210,39514559 -g1,16950:11056813,39514559 -g1,16950:11689105,39514559 -g1,16950:12637542,39514559 -h1,16950:15166707,39514559:0,0,0 -k1,16950:32583029,39514559:17416322 -g1,16950:32583029,39514559 -) -(1,16950:6630773,40180737:25952256,379060,0 -h1,16950:6630773,40180737:0,0,0 -h1,16950:7263064,40180737:0,0,0 -k1,16950:32583028,40180737:25319964 -g1,16950:32583028,40180737 -) -(1,16950:6630773,40846915:25952256,404226,107478 -h1,16950:6630773,40846915:0,0,0 -k1,16950:7569615,40846915:306551 -k1,16950:7876166,40846915:306551 -k1,16950:8182718,40846915:306552 -k1,16950:9437706,40846915:306551 -k1,16950:9744257,40846915:306551 -k1,16950:10050808,40846915:306551 -k1,16950:11621942,40846915:306551 -k1,16950:11928494,40846915:306552 -k1,16950:14131919,40846915:306551 -k1,16950:14438470,40846915:306551 -k1,16950:14745021,40846915:306551 -k1,16950:15051572,40846915:306551 -k1,16950:15358124,40846915:306552 -k1,16950:16613112,40846915:306551 -k1,16950:16919663,40846915:306551 -k1,16950:17226214,40846915:306551 -k1,16950:17532765,40846915:306551 -k1,16950:17839317,40846915:306552 -k1,16950:19094305,40846915:306551 -k1,16950:20981584,40846915:306551 -k1,16950:22868863,40846915:306551 -k1,16950:23175414,40846915:306551 -k1,16950:23481966,40846915:306552 -k1,16950:23788517,40846915:306551 -k1,16950:25359651,40846915:306551 -k1,16950:25666202,40846915:306551 -k1,16950:25972753,40846915:306551 -k1,16950:26279305,40846915:306552 -k1,16950:27850439,40846915:306551 -k1,16950:29737718,40846915:306551 -h1,16950:32583029,40846915:0,0,0 -k1,16950:32583029,40846915:0 -k1,16950:32583029,40846915:0 -) -(1,16950:6630773,41513093:25952256,404226,107478 -h1,16950:6630773,41513093:0,0,0 -g1,16950:7579210,41513093 -g1,16950:7895356,41513093 -g1,16950:8211502,41513093 -g1,16950:10108377,41513093 -g1,16950:12005252,41513093 -g1,16950:12321398,41513093 -g1,16950:14218273,41513093 -g1,16950:14534419,41513093 -g1,16950:14850565,41513093 -g1,16950:16747440,41513093 -g1,16950:17063586,41513093 -g1,16950:17379732,41513093 -g1,16950:19276607,41513093 -g1,16950:21173482,41513093 -g1,16950:23070357,41513093 -g1,16950:23386503,41513093 -g1,16950:23702649,41513093 -g1,16950:25599524,41513093 -g1,16950:25915670,41513093 -g1,16950:26231816,41513093 -g1,16950:28128691,41513093 -g1,16950:30025566,41513093 -k1,16950:30025566,41513093:0 -h1,16950:31606295,41513093:0,0,0 -k1,16950:32583029,41513093:976734 -g1,16950:32583029,41513093 -) -(1,16950:6630773,42179271:25952256,404226,9436 -h1,16950:6630773,42179271:0,0,0 -g1,16950:7579210,42179271 -g1,16950:8211502,42179271 -g1,16950:9159939,42179271 -g1,16950:9476085,42179271 -g1,16950:9792231,42179271 -g1,16950:10108377,42179271 -g1,16950:11372960,42179271 -g1,16950:11689106,42179271 -g1,16950:12005252,42179271 -g1,16950:12321398,42179271 -g1,16950:12637544,42179271 -g1,16950:12953690,42179271 -g1,16950:14218273,42179271 -g1,16950:14534419,42179271 -g1,16950:15482856,42179271 -g1,16950:15799002,42179271 -g1,16950:16115148,42179271 -g1,16950:16431294,42179271 -g1,16950:16747440,42179271 -g1,16950:17063586,42179271 -g1,16950:19276606,42179271 -g1,16950:19592752,42179271 -g1,16950:19908898,42179271 -g1,16950:20225044,42179271 -g1,16950:20541190,42179271 -g1,16950:21173482,42179271 -g1,16950:21489628,42179271 -g1,16950:21805774,42179271 -g1,16950:23070357,42179271 -g1,16950:23386503,42179271 -g1,16950:24334940,42179271 -g1,16950:24651086,42179271 -g1,16950:24967232,42179271 -g1,16950:25283378,42179271 -g1,16950:25599524,42179271 -g1,16950:25915670,42179271 -g1,16950:28128690,42179271 -g1,16950:30025564,42179271 -h1,16950:31290147,42179271:0,0,0 -k1,16950:32583029,42179271:1292882 -g1,16950:32583029,42179271 -) -(1,16950:6630773,42845449:25952256,404226,9436 -h1,16950:6630773,42845449:0,0,0 -g1,16950:7579210,42845449 -g1,16950:8211502,42845449 -g1,16950:9159939,42845449 -g1,16950:9476085,42845449 -g1,16950:9792231,42845449 -g1,16950:10108377,42845449 -g1,16950:11372960,42845449 -g1,16950:11689106,42845449 -g1,16950:12005252,42845449 -g1,16950:12321398,42845449 -g1,16950:12637544,42845449 -g1,16950:12953690,42845449 -g1,16950:13269836,42845449 -g1,16950:14218273,42845449 -g1,16950:16747439,42845449 -g1,16950:17063585,42845449 -g1,16950:19276605,42845449 -g1,16950:19592751,42845449 -g1,16950:19908897,42845449 -g1,16950:20225043,42845449 -g1,16950:20541189,42845449 -g1,16950:21173481,42845449 -g1,16950:21489627,42845449 -g1,16950:21805773,42845449 -g1,16950:22121919,42845449 -g1,16950:23070356,42845449 -g1,16950:25599522,42845449 -g1,16950:25915668,42845449 -g1,16950:28128688,42845449 -g1,16950:30025562,42845449 -h1,16950:31290145,42845449:0,0,0 -k1,16950:32583029,42845449:1292884 -g1,16950:32583029,42845449 -) -(1,16950:6630773,43511627:25952256,404226,9436 -h1,16950:6630773,43511627:0,0,0 -g1,16950:7579210,43511627 -g1,16950:8211502,43511627 -g1,16950:9159939,43511627 -g1,16950:9476085,43511627 -g1,16950:9792231,43511627 -g1,16950:10108377,43511627 -g1,16950:11689106,43511627 -g1,16950:12005252,43511627 -g1,16950:12321398,43511627 -g1,16950:12637544,43511627 -g1,16950:12953690,43511627 -g1,16950:13269836,43511627 -g1,16950:14218273,43511627 -g1,16950:16747439,43511627 -g1,16950:19276605,43511627 -g1,16950:19592751,43511627 -g1,16950:19908897,43511627 -g1,16950:20225043,43511627 -g1,16950:20541189,43511627 -g1,16950:21173481,43511627 -g1,16950:21489627,43511627 -g1,16950:21805773,43511627 -g1,16950:22121919,43511627 -g1,16950:23070356,43511627 -g1,16950:25599522,43511627 -g1,16950:28128688,43511627 -g1,16950:30025562,43511627 -h1,16950:31290145,43511627:0,0,0 -k1,16950:32583029,43511627:1292884 -g1,16950:32583029,43511627 -) -(1,16950:6630773,44177805:25952256,379060,0 -h1,16950:6630773,44177805:0,0,0 -h1,16950:7263064,44177805:0,0,0 -k1,16950:32583028,44177805:25319964 -g1,16950:32583028,44177805 -) -(1,16950:6630773,44843983:25952256,404226,6290 -h1,16950:6630773,44843983:0,0,0 -g1,16950:7579210,44843983 -g1,16950:10424521,44843983 -h1,16950:13902123,44843983:0,0,0 -k1,16950:32583029,44843983:18680906 -g1,16950:32583029,44843983 -) -(1,16950:6630773,45510161:25952256,379060,0 -h1,16950:6630773,45510161:0,0,0 -h1,16950:7263064,45510161:0,0,0 -k1,16950:32583028,45510161:25319964 -g1,16950:32583028,45510161 -) -] -) -g1,16951:32583029,45510161 -g1,16951:6630773,45510161 -g1,16951:6630773,45510161 -g1,16951:32583029,45510161 -g1,16951:32583029,45510161 -) -] -(1,16951:32583029,45706769:0,0,0 -g1,16951:32583029,45706769 -) -) -] -(1,16951:6630773,47279633:25952256,0,0 -h1,16951:6630773,47279633:25952256,0,0 -) -] -h1,16951:4262630,4025873:0,0,0 -] -!29040 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,16982:37855564,49800853:1179648,16384,0 +) +) +k1,16982:3078556,49800853:-34777008 +) +] +g1,16982:6630773,4812305 +k1,16982:25146660,4812305:17320510 +g1,16982:26880087,4812305 +g1,16982:29193507,4812305 +g1,16982:30603186,4812305 +) +) +] +[1,16982:6630773,45706769:25952256,40108032,0 +(1,16982:6630773,45706769:25952256,40108032,0 +(1,16982:6630773,45706769:0,0,0 +g1,16982:6630773,45706769 +) +[1,16982:6630773,45706769:25952256,40108032,0 +(1,16913:6630773,6254097:25952256,505283,126483 +h1,16912:6630773,6254097:983040,0,0 +k1,16912:9084456,6254097:273956 +(1,16912:9084456,6254097:0,452978,115847 +r1,16912:10497857,6254097:1413401,568825,115847 +k1,16912:9084456,6254097:-1413401 +) +(1,16912:9084456,6254097:1413401,452978,115847 +k1,16912:9084456,6254097:3277 +h1,16912:10494580,6254097:0,411205,112570 +) +k1,16912:10771812,6254097:273955 +k1,16912:13023645,6254097:273956 +k1,16912:13829097,6254097:273955 +k1,16912:16054715,6254097:273956 +k1,16912:17738349,6254097:273955 +k1,16912:18698467,6254097:273956 +k1,16912:19430519,6254097:273955 +k1,16912:22406524,6254097:273956 +k1,16912:24056080,6254097:273955 +k1,16912:26997351,6254097:273956 +k1,16912:28660669,6254097:273955 +k1,16912:29620787,6254097:273956 +k1,16912:31591469,6254097:273955 +k1,16912:32583029,6254097:0 +) +(1,16913:6630773,7095585:25952256,513147,134348 +k1,16912:9945912,7095585:200868 +k1,16912:13076894,7095585:200867 +k1,16912:14349931,7095585:200868 +k1,16912:17748301,7095585:200868 +k1,16912:18635331,7095585:200868 +k1,16912:20304204,7095585:200867 +k1,16912:22072693,7095585:200868 +k1,16912:25887216,7095585:200868 +k1,16912:30711648,7095585:200867 +k1,16912:31563944,7095585:200868 +k1,16912:32583029,7095585:0 +) +(1,16913:6630773,7937073:25952256,513147,134348 +g1,16912:8136135,7937073 +g1,16912:9473069,7937073 +g1,16912:10331590,7937073 +g1,16912:11982441,7937073 +g1,16912:14282754,7937073 +g1,16912:15141275,7937073 +g1,16912:16693167,7937073 +g1,16912:17464525,7937073 +g1,16912:18617303,7937073 +g1,16912:19909017,7937073 +g1,16912:22688398,7937073 +g1,16912:26085783,7937073 +g1,16912:27232663,7937073 +g1,16912:28450977,7937073 +k1,16913:32583029,7937073:481697 +g1,16913:32583029,7937073 +) +(1,16915:6630773,8778561:25952256,513147,134348 +h1,16914:6630773,8778561:983040,0,0 +k1,16914:8768153,8778561:200791 +k1,16914:11992776,8778561:200792 +k1,16914:12549427,8778561:200791 +(1,16914:12549427,8778561:0,452978,115847 +r1,16914:14666252,8778561:2116825,568825,115847 +k1,16914:12549427,8778561:-2116825 +) +(1,16914:12549427,8778561:2116825,452978,115847 +k1,16914:12549427,8778561:3277 +h1,16914:14662975,8778561:0,411205,112570 +) +k1,16914:14867043,8778561:200791 +k1,16914:17027361,8778561:200792 +k1,16914:18622103,8778561:200791 +k1,16914:20003852,8778561:200790 +k1,16914:22215288,8778561:200791 +k1,16914:23363731,8778561:200792 +k1,16914:24721232,8778561:200791 +k1,16914:26206529,8778561:200791 +k1,16914:28269199,8778561:200792 +k1,16914:30465561,8778561:200791 +k1,16915:32583029,8778561:0 +) +(1,16915:6630773,9620049:25952256,513147,134348 +g1,16914:8164315,9620049 +g1,16914:9022836,9620049 +g1,16914:10241150,9620049 +g1,16914:13288573,9620049 +g1,16914:14147094,9620049 +g1,16914:16031254,9620049 +k1,16915:32583029,9620049:14069927 +g1,16915:32583029,9620049 +) +v1,16917:6630773,10706298:0,393216,0 +(1,16937:6630773,20315380:25952256,10002298,196608 +g1,16937:6630773,20315380 +g1,16937:6630773,20315380 +g1,16937:6434165,20315380 +(1,16937:6434165,20315380:0,10002298,196608 +r1,16937:32779637,20315380:26345472,10198906,196608 +k1,16937:6434165,20315380:-26345472 +) +(1,16937:6434165,20315380:26345472,10002298,196608 +[1,16937:6630773,20315380:25952256,9805690,0 +(1,16919:6630773,10913916:25952256,404226,101187 +(1,16918:6630773,10913916:0,0,0 +g1,16918:6630773,10913916 +g1,16918:6630773,10913916 +g1,16918:6303093,10913916 +(1,16918:6303093,10913916:0,0,0 +) +g1,16918:6630773,10913916 +) +g1,16919:8843793,10913916 +k1,16919:8843793,10913916:0 +h1,16919:9476085,10913916:0,0,0 +k1,16919:32583029,10913916:23106944 +g1,16919:32583029,10913916 +) +(1,16920:6630773,11580094:25952256,404226,107478 +h1,16920:6630773,11580094:0,0,0 +g1,16920:6946919,11580094 +g1,16920:7263065,11580094 +g1,16920:7579211,11580094 +g1,16920:7895357,11580094 +g1,16920:11689106,11580094 +g1,16920:12321398,11580094 +g1,16920:20225041,11580094 +k1,16920:20225041,11580094:0 +h1,16920:22754207,11580094:0,0,0 +k1,16920:32583029,11580094:9828822 +g1,16920:32583029,11580094 +) +(1,16921:6630773,12246272:25952256,404226,101187 +h1,16921:6630773,12246272:0,0,0 +g1,16921:6946919,12246272 +g1,16921:7263065,12246272 +g1,16921:7579211,12246272 +g1,16921:7895357,12246272 +g1,16921:8211503,12246272 +g1,16921:8527649,12246272 +g1,16921:8843795,12246272 +g1,16921:9159941,12246272 +g1,16921:9476087,12246272 +g1,16921:9792233,12246272 +g1,16921:10108379,12246272 +g1,16921:12005253,12246272 +g1,16921:12637545,12246272 +g1,16921:20225042,12246272 +g1,16921:20857334,12246272 +k1,16921:20857334,12246272:0 +h1,16921:24651083,12246272:0,0,0 +k1,16921:32583029,12246272:7931946 +g1,16921:32583029,12246272 +) +(1,16922:6630773,12912450:25952256,404226,107478 +h1,16922:6630773,12912450:0,0,0 +g1,16922:6946919,12912450 +g1,16922:7263065,12912450 +g1,16922:7579211,12912450 +g1,16922:7895357,12912450 +g1,16922:8211503,12912450 +g1,16922:8527649,12912450 +g1,16922:8843795,12912450 +g1,16922:9159941,12912450 +g1,16922:9476087,12912450 +g1,16922:9792233,12912450 +g1,16922:10108379,12912450 +g1,16922:11372962,12912450 +g1,16922:12005254,12912450 +k1,16922:12005254,12912450:0 +h1,16922:16115149,12912450:0,0,0 +k1,16922:32583029,12912450:16467880 +g1,16922:32583029,12912450 +) +(1,16923:6630773,13578628:25952256,404226,82312 +h1,16923:6630773,13578628:0,0,0 +g1,16923:6946919,13578628 +g1,16923:7263065,13578628 +g1,16923:7579211,13578628 +g1,16923:7895357,13578628 +g1,16923:8211503,13578628 +g1,16923:8527649,13578628 +g1,16923:8843795,13578628 +g1,16923:9159941,13578628 +g1,16923:9476087,13578628 +g1,16923:9792233,13578628 +g1,16923:10108379,13578628 +g1,16923:11372962,13578628 +g1,16923:12005254,13578628 +k1,16923:12005254,13578628:0 +h1,16923:15799003,13578628:0,0,0 +k1,16923:32583029,13578628:16784026 +g1,16923:32583029,13578628 +) +(1,16924:6630773,14244806:25952256,404226,107478 +h1,16924:6630773,14244806:0,0,0 +g1,16924:6946919,14244806 +g1,16924:7263065,14244806 +g1,16924:7579211,14244806 +g1,16924:7895357,14244806 +g1,16924:8211503,14244806 +g1,16924:8527649,14244806 +g1,16924:8843795,14244806 +g1,16924:9159941,14244806 +g1,16924:9476087,14244806 +g1,16924:9792233,14244806 +g1,16924:10108379,14244806 +g1,16924:11372962,14244806 +g1,16924:12005254,14244806 +g1,16924:19908897,14244806 +g1,16924:23702646,14244806 +g1,16924:24651084,14244806 +h1,16924:24967230,14244806:0,0,0 +k1,16924:32583029,14244806:7615799 +g1,16924:32583029,14244806 +) +(1,16925:6630773,14910984:25952256,404226,76021 +h1,16925:6630773,14910984:0,0,0 +g1,16925:6946919,14910984 +g1,16925:7263065,14910984 +g1,16925:7579211,14910984 +g1,16925:7895357,14910984 +g1,16925:8211503,14910984 +g1,16925:8527649,14910984 +g1,16925:8843795,14910984 +g1,16925:9159941,14910984 +g1,16925:9476087,14910984 +g1,16925:9792233,14910984 +g1,16925:10108379,14910984 +h1,16925:10424525,14910984:0,0,0 +k1,16925:32583029,14910984:22158504 +g1,16925:32583029,14910984 +) +(1,16926:6630773,15577162:25952256,404226,101187 +h1,16926:6630773,15577162:0,0,0 +h1,16926:8527647,15577162:0,0,0 +k1,16926:32583029,15577162:24055382 +g1,16926:32583029,15577162 +) +(1,16936:6630773,16308876:25952256,404226,9436 +(1,16928:6630773,16308876:0,0,0 +g1,16928:6630773,16308876 +g1,16928:6630773,16308876 +g1,16928:6303093,16308876 +(1,16928:6303093,16308876:0,0,0 +) +g1,16928:6630773,16308876 +) +g1,16936:7579210,16308876 +g1,16936:8211502,16308876 +g1,16936:8843794,16308876 +g1,16936:11372960,16308876 +g1,16936:12321397,16308876 +g1,16936:12953689,16308876 +h1,16936:13269835,16308876:0,0,0 +k1,16936:32583029,16308876:19313194 +g1,16936:32583029,16308876 +) +(1,16936:6630773,16975054:25952256,404226,101187 +h1,16936:6630773,16975054:0,0,0 +g1,16936:7579210,16975054 +g1,16936:7895356,16975054 +g1,16936:8211502,16975054 +g1,16936:8527648,16975054 +g1,16936:8843794,16975054 +g1,16936:9159940,16975054 +g1,16936:10740669,16975054 +g1,16936:12637543,16975054 +g1,16936:12953689,16975054 +g1,16936:13269835,16975054 +g1,16936:14534418,16975054 +g1,16936:14850564,16975054 +g1,16936:15166710,16975054 +g1,16936:16431293,16975054 +g1,16936:16747439,16975054 +g1,16936:17063585,16975054 +h1,16936:18012022,16975054:0,0,0 +k1,16936:32583029,16975054:14571007 +g1,16936:32583029,16975054 +) +(1,16936:6630773,17641232:25952256,404226,6290 +h1,16936:6630773,17641232:0,0,0 +g1,16936:7579210,17641232 +g1,16936:7895356,17641232 +g1,16936:8211502,17641232 +g1,16936:8527648,17641232 +g1,16936:8843794,17641232 +g1,16936:10740669,17641232 +g1,16936:12637544,17641232 +g1,16936:14534419,17641232 +g1,16936:16431294,17641232 +k1,16936:16431294,17641232:0 +h1,16936:18012023,17641232:0,0,0 +k1,16936:32583029,17641232:14571006 +g1,16936:32583029,17641232 +) +(1,16936:6630773,18307410:25952256,388497,9436 +h1,16936:6630773,18307410:0,0,0 +g1,16936:7579210,18307410 +g1,16936:8211502,18307410 +g1,16936:10740668,18307410 +g1,16936:11056814,18307410 +g1,16936:11372960,18307410 +g1,16936:11689106,18307410 +g1,16936:12637543,18307410 +g1,16936:12953689,18307410 +g1,16936:14534418,18307410 +g1,16936:14850564,18307410 +g1,16936:16431293,18307410 +g1,16936:16747439,18307410 +h1,16936:18012022,18307410:0,0,0 +k1,16936:32583029,18307410:14571007 +g1,16936:32583029,18307410 +) +(1,16936:6630773,18973588:25952256,388497,9436 +h1,16936:6630773,18973588:0,0,0 +g1,16936:7579210,18973588 +g1,16936:8211502,18973588 +g1,16936:10740668,18973588 +g1,16936:11056814,18973588 +g1,16936:11372960,18973588 +g1,16936:11689106,18973588 +g1,16936:12005252,18973588 +g1,16936:12637544,18973588 +g1,16936:12953690,18973588 +g1,16936:14534419,18973588 +g1,16936:14850565,18973588 +g1,16936:16431294,18973588 +g1,16936:16747440,18973588 +h1,16936:18012023,18973588:0,0,0 +k1,16936:32583029,18973588:14571006 +g1,16936:32583029,18973588 +) +(1,16936:6630773,19639766:25952256,388497,9436 +h1,16936:6630773,19639766:0,0,0 +g1,16936:7579210,19639766 +g1,16936:8211502,19639766 +g1,16936:10740668,19639766 +g1,16936:11056814,19639766 +g1,16936:11372960,19639766 +g1,16936:11689106,19639766 +g1,16936:12005252,19639766 +g1,16936:12637544,19639766 +g1,16936:12953690,19639766 +g1,16936:14534419,19639766 +g1,16936:14850565,19639766 +g1,16936:16431294,19639766 +g1,16936:16747440,19639766 +h1,16936:18012023,19639766:0,0,0 +k1,16936:32583029,19639766:14571006 +g1,16936:32583029,19639766 +) +(1,16936:6630773,20305944:25952256,404226,9436 +h1,16936:6630773,20305944:0,0,0 +g1,16936:7579210,20305944 +g1,16936:8211502,20305944 +g1,16936:9476085,20305944 +g1,16936:11056814,20305944 +g1,16936:11689106,20305944 +g1,16936:13269835,20305944 +h1,16936:14534418,20305944:0,0,0 +k1,16936:32583030,20305944:18048612 +g1,16936:32583030,20305944 +) +] +) +g1,16937:32583029,20315380 +g1,16937:6630773,20315380 +g1,16937:6630773,20315380 +g1,16937:32583029,20315380 +g1,16937:32583029,20315380 +) +h1,16937:6630773,20511988:0,0,0 +(1,16941:6630773,21773546:25952256,513147,134348 +h1,16940:6630773,21773546:983040,0,0 +k1,16940:8422854,21773546:331284 +k1,16940:9622491,21773546:331285 +k1,16940:11502391,21773546:331284 +k1,16940:12485103,21773546:331284 +k1,16940:14228689,21773546:331285 +k1,16940:15176011,21773546:331284 +k1,16940:17738797,21773546:331285 +k1,16940:19354587,21773546:331284 +k1,16940:21878050,21773546:331284 +k1,16940:23077687,21773546:331285 +k1,16940:24513253,21773546:331284 +k1,16940:25937022,21773546:331284 +k1,16940:28499808,21773546:331285 +k1,16940:31593435,21773546:331284 +k1,16941:32583029,21773546:0 +) +(1,16941:6630773,22615034:25952256,513147,134348 +k1,16940:9940396,22615034:250402 +k1,16940:13125500,22615034:250402 +k1,16940:14394987,22615034:250402 +k1,16940:16384715,22615034:250402 +k1,16940:17294409,22615034:250402 +k1,16940:19884446,22615034:250402 +k1,16940:20794139,22615034:250401 +k1,16940:24719800,22615034:250402 +k1,16940:26074484,22615034:250402 +k1,16940:28040619,22615034:250402 +k1,16940:30478613,22615034:250402 +k1,16940:31748100,22615034:250402 +k1,16941:32583029,22615034:0 +) +(1,16941:6630773,23456522:25952256,505283,134348 +k1,16940:9920377,23456522:236282 +k1,16940:10842822,23456522:236283 +k1,16940:13792295,23456522:236282 +k1,16940:15635521,23456522:236283 +k1,16940:17911283,23456522:236282 +k1,16940:18617459,23456522:236283 +k1,16940:19385238,23456522:236282 +k1,16940:21404756,23456522:236283 +k1,16940:24054074,23456522:236282 +k1,16940:24941785,23456522:236283 +k1,16940:26270552,23456522:236282 +k1,16940:29086987,23456522:236283 +k1,16940:31601955,23456522:236282 +k1,16941:32583029,23456522:0 +) +(1,16941:6630773,24298010:25952256,505283,7863 +g1,16940:9151943,24298010 +k1,16941:32583030,24298010:21873296 +g1,16941:32583030,24298010 +) +(1,16942:6630773,26389270:25952256,555811,139132 +(1,16942:6630773,26389270:2899444,534184,12975 +g1,16942:6630773,26389270 +g1,16942:9530217,26389270 +) +k1,16942:32583029,26389270:20389102 +g1,16942:32583029,26389270 +) +(1,16947:6630773,27623974:25952256,513147,134348 +k1,16946:9422334,27623974:256628 +k1,16946:11957648,27623974:256628 +k1,16946:14974652,27623974:256628 +k1,16946:18257077,27623974:256628 +k1,16946:19798211,27623974:256628 +k1,16946:21770572,27623974:256628 +k1,16946:22485296,27623974:256627 +k1,16946:24612322,27623974:256628 +k1,16946:25520378,27623974:256628 +k1,16946:27980982,27623974:256628 +k1,16946:30648024,27623974:256628 +k1,16946:31563944,27623974:256628 +k1,16946:32583029,27623974:0 +) +(1,16947:6630773,28465462:25952256,513147,134348 +k1,16946:8172052,28465462:151916 +k1,16946:9891588,28465462:151915 +k1,16946:10814207,28465462:151916 +k1,16946:13356173,28465462:151868 +k1,16946:14664799,28465462:151916 +k1,16946:15770264,28465462:151916 +k1,16946:17410502,28465462:151915 +k1,16946:18323946,28465462:151916 +k1,16946:20281378,28465462:151915 +k1,16946:21452379,28465462:151916 +k1,16946:23257768,28465462:151916 +k1,16946:26814278,28465462:151915 +k1,16946:27652356,28465462:151916 +k1,16946:28420309,28465462:151915 +k1,16946:29591310,28465462:151916 +k1,16946:32583029,28465462:0 +) +(1,16947:6630773,29306950:25952256,513147,7863 +g1,16946:7777653,29306950 +k1,16947:32583028,29306950:22474260 +g1,16947:32583028,29306950 +) +(1,16949:6630773,30148438:25952256,513147,134348 +h1,16948:6630773,30148438:983040,0,0 +k1,16948:8750590,30148438:183228 +k1,16948:10511269,30148438:183227 +k1,16948:11713582,30148438:183228 +k1,16948:12879849,30148438:183227 +k1,16948:15635365,30148438:183228 +k1,16948:16589295,30148438:183227 +k1,16948:18732049,30148438:183228 +k1,16948:20106722,30148438:183228 +k1,16948:25142235,30148438:183227 +k1,16948:28433180,30148438:183228 +k1,16948:29635492,30148438:183227 +k1,16948:31124853,30148438:183228 +k1,16949:32583029,30148438:0 +k1,16949:32583029,30148438:0 +) +v1,16951:6630773,31234687:0,393216,0 +(1,16982:6630773,45510161:25952256,14668690,196608 +g1,16982:6630773,45510161 +g1,16982:6630773,45510161 +g1,16982:6434165,45510161 +(1,16982:6434165,45510161:0,14668690,196608 +r1,16982:32779637,45510161:26345472,14865298,196608 +k1,16982:6434165,45510161:-26345472 +) +(1,16982:6434165,45510161:26345472,14668690,196608 +[1,16982:6630773,45510161:25952256,14472082,0 +(1,16953:6630773,31448597:25952256,410518,101187 +(1,16952:6630773,31448597:0,0,0 +g1,16952:6630773,31448597 +g1,16952:6630773,31448597 +g1,16952:6303093,31448597 +(1,16952:6303093,31448597:0,0,0 +) +g1,16952:6630773,31448597 +) +g1,16953:11372959,31448597 +g1,16953:12321397,31448597 +k1,16953:12321397,31448597:0 +h1,16953:24334933,31448597:0,0,0 +k1,16953:32583029,31448597:8248096 +g1,16953:32583029,31448597 +) +(1,16954:6630773,32114775:25952256,404226,50331 +h1,16954:6630773,32114775:0,0,0 +h1,16954:11056813,32114775:0,0,0 +k1,16954:32583029,32114775:21526216 +g1,16954:32583029,32114775 +) +(1,16981:6630773,32846489:25952256,379060,0 +(1,16956:6630773,32846489:0,0,0 +g1,16956:6630773,32846489 +g1,16956:6630773,32846489 +g1,16956:6303093,32846489 +(1,16956:6303093,32846489:0,0,0 +) +g1,16956:6630773,32846489 +) +h1,16981:7263064,32846489:0,0,0 +k1,16981:32583028,32846489:25319964 +g1,16981:32583028,32846489 +) +(1,16981:6630773,33512667:25952256,410518,101187 +h1,16981:6630773,33512667:0,0,0 +g1,16981:7579210,33512667 +g1,16981:9159939,33512667 +g1,16981:11372959,33512667 +g1,16981:12953688,33512667 +g1,16981:19592748,33512667 +h1,16981:20541185,33512667:0,0,0 +k1,16981:32583029,33512667:12041844 +g1,16981:32583029,33512667 +) +(1,16981:6630773,34178845:25952256,379060,0 +h1,16981:6630773,34178845:0,0,0 +h1,16981:7263064,34178845:0,0,0 +k1,16981:32583028,34178845:25319964 +g1,16981:32583028,34178845 +) +(1,16981:6630773,34845023:25952256,410518,101187 +h1,16981:6630773,34845023:0,0,0 +g1,16981:7579210,34845023 +g1,16981:9476084,34845023 +g1,16981:10740667,34845023 +g1,16981:14218270,34845023 +g1,16981:16747436,34845023 +g1,16981:17379728,34845023 +g1,16981:21173476,34845023 +k1,16981:21173476,34845023:0 +h1,16981:24334933,34845023:0,0,0 +k1,16981:32583029,34845023:8248096 +g1,16981:32583029,34845023 +) +(1,16981:6630773,35511201:25952256,379060,0 +h1,16981:6630773,35511201:0,0,0 +h1,16981:7263064,35511201:0,0,0 +k1,16981:32583028,35511201:25319964 +g1,16981:32583028,35511201 +) +(1,16981:6630773,36177379:25952256,404226,101187 +h1,16981:6630773,36177379:0,0,0 +k1,16981:7473828,36177379:210764 +k1,16981:8633029,36177379:210764 +k1,16981:8843793,36177379:210764 +k1,16981:9054557,36177379:210764 +k1,16981:11794486,36177379:210764 +k1,16981:12321396,36177379:210764 +k1,16981:14429034,36177379:210764 +k1,16981:19065838,36177379:210764 +k1,16981:19276602,36177379:210764 +k1,16981:19487366,36177379:210764 +k1,16981:19698130,36177379:210764 +k1,16981:22438059,36177379:210764 +k1,16981:24545697,36177379:210764 +k1,16981:25072607,36177379:210764 +k1,16981:27180245,36177379:210764 +k1,16981:27391009,36177379:210764 +k1,16981:29498647,36177379:210764 +k1,16981:30657848,36177379:210764 +h1,16981:33503159,36177379:0,0,0 +k1,16981:33503159,36177379:0 +k1,16981:33503159,36177379:0 +) +(1,16981:6630773,36843557:25952256,404226,107478 +h1,16981:6630773,36843557:0,0,0 +g1,16981:7579210,36843557 +g1,16981:8843793,36843557 +g1,16981:9159939,36843557 +g1,16981:9476085,36843557 +g1,16981:11372959,36843557 +g1,16981:11689105,36843557 +g1,16981:12005251,36843557 +g1,16981:12321397,36843557 +g1,16981:12953689,36843557 +h1,16981:18644311,36843557:0,0,0 +k1,16981:32583029,36843557:13938718 +g1,16981:32583029,36843557 +) +(1,16981:6630773,37509735:25952256,404226,76021 +h1,16981:6630773,37509735:0,0,0 +g1,16981:7579210,37509735 +g1,16981:8843793,37509735 +g1,16981:9159939,37509735 +g1,16981:9476085,37509735 +g1,16981:10424522,37509735 +g1,16981:10740668,37509735 +g1,16981:11056814,37509735 +g1,16981:11372960,37509735 +g1,16981:11689106,37509735 +g1,16981:12005252,37509735 +g1,16981:12321398,37509735 +g1,16981:12953690,37509735 +h1,16981:13902127,37509735:0,0,0 +k1,16981:32583029,37509735:18680902 +g1,16981:32583029,37509735 +) +(1,16981:6630773,38175913:25952256,404226,76021 +h1,16981:6630773,38175913:0,0,0 +g1,16981:7579210,38175913 +g1,16981:8843793,38175913 +g1,16981:9159939,38175913 +g1,16981:9476085,38175913 +g1,16981:10424522,38175913 +g1,16981:10740668,38175913 +g1,16981:11056814,38175913 +g1,16981:11372960,38175913 +g1,16981:11689106,38175913 +g1,16981:12005252,38175913 +g1,16981:12321398,38175913 +g1,16981:12953690,38175913 +h1,16981:13902127,38175913:0,0,0 +k1,16981:32583029,38175913:18680902 +g1,16981:32583029,38175913 +) +(1,16981:6630773,38842091:25952256,404226,76021 +h1,16981:6630773,38842091:0,0,0 +g1,16981:7579210,38842091 +g1,16981:8843793,38842091 +g1,16981:9159939,38842091 +g1,16981:9476085,38842091 +g1,16981:10424522,38842091 +g1,16981:10740668,38842091 +g1,16981:11056814,38842091 +g1,16981:11372960,38842091 +g1,16981:11689106,38842091 +g1,16981:12005252,38842091 +g1,16981:12321398,38842091 +g1,16981:12953690,38842091 +h1,16981:14218273,38842091:0,0,0 +k1,16981:32583029,38842091:18364756 +g1,16981:32583029,38842091 +) +(1,16981:6630773,39508269:25952256,379060,0 +h1,16981:6630773,39508269:0,0,0 +h1,16981:7263064,39508269:0,0,0 +k1,16981:32583028,39508269:25319964 +g1,16981:32583028,39508269 +) +(1,16981:6630773,40174447:25952256,404226,76021 +h1,16981:6630773,40174447:0,0,0 +g1,16981:7579210,40174447 +g1,16981:11056813,40174447 +g1,16981:11689105,40174447 +g1,16981:12637542,40174447 +h1,16981:15166707,40174447:0,0,0 +k1,16981:32583029,40174447:17416322 +g1,16981:32583029,40174447 +) +(1,16981:6630773,40840625:25952256,379060,0 +h1,16981:6630773,40840625:0,0,0 +h1,16981:7263064,40840625:0,0,0 +k1,16981:32583028,40840625:25319964 +g1,16981:32583028,40840625 +) +(1,16981:6630773,41506803:25952256,404226,107478 +h1,16981:6630773,41506803:0,0,0 +k1,16981:7569615,41506803:306551 +k1,16981:7876166,41506803:306551 +k1,16981:8182718,41506803:306552 +k1,16981:9437706,41506803:306551 +k1,16981:9744257,41506803:306551 +k1,16981:10050808,41506803:306551 +k1,16981:11621942,41506803:306551 +k1,16981:11928494,41506803:306552 +k1,16981:14131919,41506803:306551 +k1,16981:14438470,41506803:306551 +k1,16981:14745021,41506803:306551 +k1,16981:15051572,41506803:306551 +k1,16981:15358124,41506803:306552 +k1,16981:16613112,41506803:306551 +k1,16981:16919663,41506803:306551 +k1,16981:17226214,41506803:306551 +k1,16981:17532765,41506803:306551 +k1,16981:17839317,41506803:306552 +k1,16981:19094305,41506803:306551 +k1,16981:20981584,41506803:306551 +k1,16981:22868863,41506803:306551 +k1,16981:23175414,41506803:306551 +k1,16981:23481966,41506803:306552 +k1,16981:23788517,41506803:306551 +k1,16981:25359651,41506803:306551 +k1,16981:25666202,41506803:306551 +k1,16981:25972753,41506803:306551 +k1,16981:26279305,41506803:306552 +k1,16981:27850439,41506803:306551 +k1,16981:29737718,41506803:306551 +h1,16981:32583029,41506803:0,0,0 +k1,16981:32583029,41506803:0 +k1,16981:32583029,41506803:0 +) +(1,16981:6630773,42172981:25952256,404226,107478 +h1,16981:6630773,42172981:0,0,0 +g1,16981:7579210,42172981 +g1,16981:7895356,42172981 +g1,16981:8211502,42172981 +g1,16981:10108377,42172981 +g1,16981:12005252,42172981 +g1,16981:12321398,42172981 +g1,16981:14218273,42172981 +g1,16981:14534419,42172981 +g1,16981:14850565,42172981 +g1,16981:16747440,42172981 +g1,16981:17063586,42172981 +g1,16981:17379732,42172981 +g1,16981:19276607,42172981 +g1,16981:21173482,42172981 +g1,16981:23070357,42172981 +g1,16981:23386503,42172981 +g1,16981:23702649,42172981 +g1,16981:25599524,42172981 +g1,16981:25915670,42172981 +g1,16981:26231816,42172981 +g1,16981:28128691,42172981 +g1,16981:30025566,42172981 +k1,16981:30025566,42172981:0 +h1,16981:31606295,42172981:0,0,0 +k1,16981:32583029,42172981:976734 +g1,16981:32583029,42172981 +) +(1,16981:6630773,42839159:25952256,404226,9436 +h1,16981:6630773,42839159:0,0,0 +g1,16981:7579210,42839159 +g1,16981:8211502,42839159 +g1,16981:9159939,42839159 +g1,16981:9476085,42839159 +g1,16981:9792231,42839159 +g1,16981:10108377,42839159 +g1,16981:11372960,42839159 +g1,16981:11689106,42839159 +g1,16981:12005252,42839159 +g1,16981:12321398,42839159 +g1,16981:12637544,42839159 +g1,16981:12953690,42839159 +g1,16981:14218273,42839159 +g1,16981:14534419,42839159 +g1,16981:15482856,42839159 +g1,16981:15799002,42839159 +g1,16981:16115148,42839159 +g1,16981:16431294,42839159 +g1,16981:16747440,42839159 +g1,16981:17063586,42839159 +g1,16981:19276606,42839159 +g1,16981:19592752,42839159 +g1,16981:19908898,42839159 +g1,16981:20225044,42839159 +g1,16981:20541190,42839159 +g1,16981:21173482,42839159 +g1,16981:21489628,42839159 +g1,16981:21805774,42839159 +g1,16981:23070357,42839159 +g1,16981:23386503,42839159 +g1,16981:24334940,42839159 +g1,16981:24651086,42839159 +g1,16981:24967232,42839159 +g1,16981:25283378,42839159 +g1,16981:25599524,42839159 +g1,16981:25915670,42839159 +g1,16981:28128690,42839159 +g1,16981:30025564,42839159 +h1,16981:31290147,42839159:0,0,0 +k1,16981:32583029,42839159:1292882 +g1,16981:32583029,42839159 +) +(1,16981:6630773,43505337:25952256,404226,9436 +h1,16981:6630773,43505337:0,0,0 +g1,16981:7579210,43505337 +g1,16981:8211502,43505337 +g1,16981:9159939,43505337 +g1,16981:9476085,43505337 +g1,16981:9792231,43505337 +g1,16981:10108377,43505337 +g1,16981:11372960,43505337 +g1,16981:11689106,43505337 +g1,16981:12005252,43505337 +g1,16981:12321398,43505337 +g1,16981:12637544,43505337 +g1,16981:12953690,43505337 +g1,16981:13269836,43505337 +g1,16981:14218273,43505337 +g1,16981:16747439,43505337 +g1,16981:17063585,43505337 +g1,16981:19276605,43505337 +g1,16981:19592751,43505337 +g1,16981:19908897,43505337 +g1,16981:20225043,43505337 +g1,16981:20541189,43505337 +g1,16981:21173481,43505337 +g1,16981:21489627,43505337 +g1,16981:21805773,43505337 +g1,16981:22121919,43505337 +g1,16981:23070356,43505337 +g1,16981:25599522,43505337 +g1,16981:25915668,43505337 +g1,16981:28128688,43505337 +g1,16981:30025562,43505337 +h1,16981:31290145,43505337:0,0,0 +k1,16981:32583029,43505337:1292884 +g1,16981:32583029,43505337 +) +(1,16981:6630773,44171515:25952256,404226,9436 +h1,16981:6630773,44171515:0,0,0 +g1,16981:7579210,44171515 +g1,16981:8211502,44171515 +g1,16981:9159939,44171515 +g1,16981:9476085,44171515 +g1,16981:9792231,44171515 +g1,16981:10108377,44171515 +g1,16981:11689106,44171515 +g1,16981:12005252,44171515 +g1,16981:12321398,44171515 +g1,16981:12637544,44171515 +g1,16981:12953690,44171515 +g1,16981:13269836,44171515 +g1,16981:14218273,44171515 +g1,16981:16747439,44171515 +g1,16981:19276605,44171515 +g1,16981:19592751,44171515 +g1,16981:19908897,44171515 +g1,16981:20225043,44171515 +g1,16981:20541189,44171515 +g1,16981:21173481,44171515 +g1,16981:21489627,44171515 +g1,16981:21805773,44171515 +g1,16981:22121919,44171515 +g1,16981:23070356,44171515 +g1,16981:25599522,44171515 +g1,16981:28128688,44171515 +g1,16981:30025562,44171515 +h1,16981:31290145,44171515:0,0,0 +k1,16981:32583029,44171515:1292884 +g1,16981:32583029,44171515 +) +(1,16981:6630773,44837693:25952256,379060,0 +h1,16981:6630773,44837693:0,0,0 +h1,16981:7263064,44837693:0,0,0 +k1,16981:32583028,44837693:25319964 +g1,16981:32583028,44837693 +) +(1,16981:6630773,45503871:25952256,404226,6290 +h1,16981:6630773,45503871:0,0,0 +g1,16981:7579210,45503871 +g1,16981:10424521,45503871 +h1,16981:13902123,45503871:0,0,0 +k1,16981:32583029,45503871:18680906 +g1,16981:32583029,45503871 +) +] +) +g1,16982:32583029,45510161 +g1,16982:6630773,45510161 +g1,16982:6630773,45510161 +g1,16982:32583029,45510161 +g1,16982:32583029,45510161 +) +] +(1,16982:32583029,45706769:0,0,0 +g1,16982:32583029,45706769 +) +) +] +(1,16982:6630773,47279633:25952256,0,0 +h1,16982:6630773,47279633:25952256,0,0 +) +] +h1,16982:4262630,4025873:0,0,0 +] +!28977 }329 -Input:2528:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:2525:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {330 -[1,17033:4262630,47279633:28320399,43253760,0 -(1,17033:4262630,4025873:0,0,0 -[1,17033:-473657,4025873:25952256,0,0 -(1,17033:-473657,-710414:25952256,0,0 -h1,17033:-473657,-710414:0,0,0 -(1,17033:-473657,-710414:0,0,0 -(1,17033:-473657,-710414:0,0,0 -g1,17033:-473657,-710414 -(1,17033:-473657,-710414:65781,0,65781 -g1,17033:-407876,-710414 -[1,17033:-407876,-644633:0,0,0 +[1,17065:4262630,47279633:28320399,43253760,0 +(1,17065:4262630,4025873:0,0,0 +[1,17065:-473657,4025873:25952256,0,0 +(1,17065:-473657,-710414:25952256,0,0 +h1,17065:-473657,-710414:0,0,0 +(1,17065:-473657,-710414:0,0,0 +(1,17065:-473657,-710414:0,0,0 +g1,17065:-473657,-710414 +(1,17065:-473657,-710414:65781,0,65781 +g1,17065:-407876,-710414 +[1,17065:-407876,-644633:0,0,0 ] ) -k1,17033:-473657,-710414:-65781 +k1,17065:-473657,-710414:-65781 ) ) -k1,17033:25478599,-710414:25952256 -g1,17033:25478599,-710414 +k1,17065:25478599,-710414:25952256 +g1,17065:25478599,-710414 ) ] ) -[1,17033:6630773,47279633:25952256,43253760,0 -[1,17033:6630773,4812305:25952256,786432,0 -(1,17033:6630773,4812305:25952256,513147,126483 -(1,17033:6630773,4812305:25952256,513147,126483 -g1,17033:3078558,4812305 -[1,17033:3078558,4812305:0,0,0 -(1,17033:3078558,2439708:0,1703936,0 -k1,17033:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17033:2537886,2439708:1179648,16384,0 +[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,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17065:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17033:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17065:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17033:3078558,4812305:0,0,0 -(1,17033:3078558,2439708:0,1703936,0 -g1,17033:29030814,2439708 -g1,17033:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17033:36151628,1915420:16384,1179648,0 +[1,17065:3078558,4812305:0,0,0 +(1,17065:3078558,2439708:0,1703936,0 +g1,17065:29030814,2439708 +g1,17065:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17065:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17033:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17065:37855564,2439708:1179648,16384,0 ) ) -k1,17033:3078556,2439708:-34777008 +k1,17065:3078556,2439708:-34777008 ) ] -[1,17033:3078558,4812305:0,0,0 -(1,17033:3078558,49800853:0,16384,2228224 -k1,17033:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17033:2537886,49800853:1179648,16384,0 +[1,17065:3078558,4812305:0,0,0 +(1,17065:3078558,49800853:0,16384,2228224 +k1,17065:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17065:2537886,49800853:1179648,16384,0 +) +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17065:3078558,51504789:16384,1179648,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17033:3078558,51504789:16384,1179648,0 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 +) +] ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 -) -] -) -) -) -] -[1,17033:3078558,4812305:0,0,0 -(1,17033:3078558,49800853:0,16384,2228224 -g1,17033:29030814,49800853 -g1,17033:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17033:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17033:37855564,49800853:1179648,16384,0 -) -) -k1,17033:3078556,49800853:-34777008 -) -] -g1,17033:6630773,4812305 -g1,17033:6630773,4812305 -g1,17033:9235173,4812305 -g1,17033:10666479,4812305 -k1,17033:31387651,4812305:20721172 -) -) -] -[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 -v1,16951:6630773,6254097:0,393216,0 -(1,16951:6630773,7803507:25952256,1942626,196608 -g1,16951:6630773,7803507 -g1,16951:6630773,7803507 -g1,16951:6434165,7803507 -(1,16951:6434165,7803507:0,1942626,196608 -r1,16951:32779637,7803507:26345472,2139234,196608 -k1,16951:6434165,7803507:-26345472 -) -(1,16951:6434165,7803507:26345472,1942626,196608 -[1,16951:6630773,7803507:25952256,1746018,0 -(1,16950:6630773,6461715:25952256,404226,107478 -h1,16950:6630773,6461715:0,0,0 -g1,16950:7579210,6461715 -g1,16950:7895356,6461715 -g1,16950:8211502,6461715 -g1,16950:9476085,6461715 -g1,16950:9792231,6461715 -g1,16950:10108377,6461715 -g1,16950:11689106,6461715 -g1,16950:12005252,6461715 -g1,16950:14218272,6461715 -g1,16950:14534418,6461715 -g1,16950:14850564,6461715 -g1,16950:16115147,6461715 -g1,16950:16431293,6461715 -g1,16950:16747439,6461715 -g1,16950:18012022,6461715 -g1,16950:19908896,6461715 -h1,16950:22754207,6461715:0,0,0 -k1,16950:32583029,6461715:9828822 -g1,16950:32583029,6461715 -) -(1,16950:6630773,7127893:25952256,404226,107478 -h1,16950:6630773,7127893:0,0,0 -g1,16950:7579210,7127893 -g1,16950:7895356,7127893 -g1,16950:8211502,7127893 -g1,16950:10108377,7127893 -g1,16950:12005252,7127893 -g1,16950:12321398,7127893 -g1,16950:14218273,7127893 -g1,16950:16115148,7127893 -g1,16950:18012023,7127893 -g1,16950:19908898,7127893 -k1,16950:19908898,7127893:0 -h1,16950:21489627,7127893:0,0,0 -k1,16950:32583029,7127893:11093402 -g1,16950:32583029,7127893 -) -(1,16950:6630773,7794071:25952256,404226,9436 -h1,16950:6630773,7794071:0,0,0 -g1,16950:7579210,7794071 -g1,16950:8211502,7794071 -g1,16950:9159939,7794071 -g1,16950:9476085,7794071 -g1,16950:9792231,7794071 -g1,16950:10108377,7794071 -g1,16950:12005251,7794071 -g1,16950:12321397,7794071 -g1,16950:12637543,7794071 -g1,16950:12953689,7794071 -g1,16950:13269835,7794071 -g1,16950:13585981,7794071 -g1,16950:14218273,7794071 -g1,16950:14534419,7794071 -g1,16950:14850565,7794071 -g1,16950:15166711,7794071 -g1,16950:15482857,7794071 -g1,16950:16115149,7794071 -g1,16950:16431295,7794071 -g1,16950:16747441,7794071 -g1,16950:17063587,7794071 -g1,16950:17379733,7794071 -g1,16950:18012025,7794071 -g1,16950:19908899,7794071 -h1,16950:21489627,7794071:0,0,0 -k1,16950:32583029,7794071:11093402 -g1,16950:32583029,7794071 -) -] -) -g1,16951:32583029,7803507 -g1,16951:6630773,7803507 -g1,16951:6630773,7803507 -g1,16951:32583029,7803507 -g1,16951:32583029,7803507 -) -h1,16951:6630773,8000115:0,0,0 -v1,16955:6630773,9714869:0,393216,0 -(1,16967:6630773,13994527:25952256,4672874,196608 -g1,16967:6630773,13994527 -g1,16967:6630773,13994527 -g1,16967:6434165,13994527 -(1,16967:6434165,13994527:0,4672874,196608 -r1,16967:32779637,13994527:26345472,4869482,196608 -k1,16967:6434165,13994527:-26345472 -) -(1,16967:6434165,13994527:26345472,4672874,196608 -[1,16967:6630773,13994527:25952256,4476266,0 -(1,16957:6630773,9922487:25952256,404226,101187 -(1,16956:6630773,9922487:0,0,0 -g1,16956:6630773,9922487 -g1,16956:6630773,9922487 -g1,16956:6303093,9922487 -(1,16956:6303093,9922487:0,0,0 -) -g1,16956:6630773,9922487 -) -k1,16957:6630773,9922487:0 -h1,16957:14850561,9922487:0,0,0 -k1,16957:32583029,9922487:17732468 -g1,16957:32583029,9922487 -) -(1,16966:6630773,10654201:25952256,404226,9436 -(1,16959:6630773,10654201:0,0,0 -g1,16959:6630773,10654201 -g1,16959:6630773,10654201 -g1,16959:6303093,10654201 -(1,16959:6303093,10654201:0,0,0 -) -g1,16959:6630773,10654201 -) -g1,16966:7579210,10654201 -g1,16966:8211502,10654201 -g1,16966:8843794,10654201 -g1,16966:11372960,10654201 -g1,16966:12005252,10654201 -g1,16966:12637544,10654201 -h1,16966:12953690,10654201:0,0,0 -k1,16966:32583030,10654201:19629340 -g1,16966:32583030,10654201 -) -(1,16966:6630773,11320379:25952256,404226,107478 -h1,16966:6630773,11320379:0,0,0 -g1,16966:7579210,11320379 -g1,16966:7895356,11320379 -g1,16966:8211502,11320379 -g1,16966:9792231,11320379 -g1,16966:10108377,11320379 -g1,16966:12321397,11320379 -g1,16966:14218271,11320379 -g1,16966:16115145,11320379 -g1,16966:16431291,11320379 -g1,16966:16747437,11320379 -g1,16966:17063583,11320379 -g1,16966:18012020,11320379 -g1,16966:19908894,11320379 -h1,16966:22754205,11320379:0,0,0 -k1,16966:32583029,11320379:9828824 -g1,16966:32583029,11320379 -) -(1,16966:6630773,11986557:25952256,404226,107478 -h1,16966:6630773,11986557:0,0,0 -g1,16966:7579210,11986557 -g1,16966:7895356,11986557 -g1,16966:8211502,11986557 -g1,16966:10108377,11986557 -g1,16966:10424523,11986557 -g1,16966:12321398,11986557 -g1,16966:14218273,11986557 -g1,16966:16115148,11986557 -g1,16966:18012023,11986557 -g1,16966:19908898,11986557 -k1,16966:19908898,11986557:0 -h1,16966:21489627,11986557:0,0,0 -k1,16966:32583029,11986557:11093402 -g1,16966:32583029,11986557 -) -(1,16966:6630773,12652735:25952256,404226,9436 -h1,16966:6630773,12652735:0,0,0 -g1,16966:7579210,12652735 -g1,16966:8211502,12652735 -g1,16966:9476085,12652735 -g1,16966:9792231,12652735 -g1,16966:10108377,12652735 -g1,16966:10424523,12652735 -g1,16966:10740669,12652735 -g1,16966:11056815,12652735 -g1,16966:12321398,12652735 -g1,16966:12637544,12652735 -g1,16966:12953690,12652735 -g1,16966:13269836,12652735 -g1,16966:13585982,12652735 -g1,16966:14218274,12652735 -g1,16966:14534420,12652735 -g1,16966:14850566,12652735 -g1,16966:16115149,12652735 -g1,16966:16431295,12652735 -g1,16966:16747441,12652735 -g1,16966:17063587,12652735 -g1,16966:17379733,12652735 -g1,16966:18012025,12652735 -g1,16966:19908899,12652735 -h1,16966:21173482,12652735:0,0,0 -k1,16966:32583029,12652735:11409547 -g1,16966:32583029,12652735 -) -(1,16966:6630773,13318913:25952256,404226,9436 -h1,16966:6630773,13318913:0,0,0 -g1,16966:7579210,13318913 -g1,16966:8211502,13318913 -g1,16966:9476085,13318913 -g1,16966:9792231,13318913 -g1,16966:10108377,13318913 -g1,16966:10424523,13318913 -g1,16966:10740669,13318913 -g1,16966:11056815,13318913 -g1,16966:11372961,13318913 -g1,16966:12321398,13318913 -g1,16966:12637544,13318913 -g1,16966:12953690,13318913 -g1,16966:13269836,13318913 -g1,16966:13585982,13318913 -g1,16966:14218274,13318913 -g1,16966:14534420,13318913 -g1,16966:14850566,13318913 -g1,16966:15166712,13318913 -g1,16966:16115149,13318913 -g1,16966:16431295,13318913 -g1,16966:16747441,13318913 -g1,16966:17063587,13318913 -g1,16966:17379733,13318913 -g1,16966:18012025,13318913 -g1,16966:19908899,13318913 -h1,16966:21173482,13318913:0,0,0 -k1,16966:32583029,13318913:11409547 -g1,16966:32583029,13318913 -) -(1,16966:6630773,13985091:25952256,404226,9436 -h1,16966:6630773,13985091:0,0,0 -g1,16966:7579210,13985091 -g1,16966:8211502,13985091 -g1,16966:9792231,13985091 -g1,16966:10108377,13985091 -g1,16966:10424523,13985091 -g1,16966:10740669,13985091 -g1,16966:11056815,13985091 -g1,16966:11372961,13985091 -g1,16966:12321398,13985091 -g1,16966:12637544,13985091 -g1,16966:12953690,13985091 -g1,16966:13269836,13985091 -g1,16966:13585982,13985091 -g1,16966:14218274,13985091 -g1,16966:14534420,13985091 -g1,16966:14850566,13985091 -g1,16966:15166712,13985091 -g1,16966:16115149,13985091 -g1,16966:16431295,13985091 -g1,16966:16747441,13985091 -g1,16966:17063587,13985091 -g1,16966:17379733,13985091 -g1,16966:18012025,13985091 -g1,16966:19908899,13985091 -h1,16966:21173482,13985091:0,0,0 -k1,16966:32583029,13985091:11409547 -g1,16966:32583029,13985091 -) -] -) -g1,16967:32583029,13994527 -g1,16967:6630773,13994527 -g1,16967:6630773,13994527 -g1,16967:32583029,13994527 -g1,16967:32583029,13994527 -) -h1,16967:6630773,14191135:0,0,0 -v1,16971:6630773,15905889:0,393216,0 -(1,16982:6630773,19611120:25952256,4098447,196608 -g1,16982:6630773,19611120 -g1,16982:6630773,19611120 -g1,16982:6434165,19611120 -(1,16982:6434165,19611120:0,4098447,196608 -r1,16982:32779637,19611120:26345472,4295055,196608 -k1,16982:6434165,19611120:-26345472 -) -(1,16982:6434165,19611120:26345472,4098447,196608 -[1,16982:6630773,19611120:25952256,3901839,0 -(1,16973:6630773,16113507:25952256,404226,101187 -(1,16972:6630773,16113507:0,0,0 -g1,16972:6630773,16113507 -g1,16972:6630773,16113507 -g1,16972:6303093,16113507 -(1,16972:6303093,16113507:0,0,0 -) -g1,16972:6630773,16113507 -) -k1,16973:6630773,16113507:0 -h1,16973:14850561,16113507:0,0,0 -k1,16973:32583029,16113507:17732468 -g1,16973:32583029,16113507 -) -(1,16981:6630773,16845221:25952256,404226,9436 -(1,16975:6630773,16845221:0,0,0 -g1,16975:6630773,16845221 -g1,16975:6630773,16845221 -g1,16975:6303093,16845221 -(1,16975:6303093,16845221:0,0,0 -) -g1,16975:6630773,16845221 -) -g1,16981:7579210,16845221 -g1,16981:8211502,16845221 -g1,16981:8843794,16845221 -g1,16981:11372960,16845221 -g1,16981:12005252,16845221 -g1,16981:12637544,16845221 -h1,16981:12953690,16845221:0,0,0 -k1,16981:32583030,16845221:19629340 -g1,16981:32583030,16845221 -) -(1,16981:6630773,17511399:25952256,404226,101187 -h1,16981:6630773,17511399:0,0,0 -g1,16981:7579210,17511399 -g1,16981:7895356,17511399 -g1,16981:8211502,17511399 -g1,16981:8527648,17511399 -g1,16981:8843794,17511399 -g1,16981:9159940,17511399 -g1,16981:10108377,17511399 -g1,16981:11689106,17511399 -g1,16981:12005252,17511399 -g1,16981:12321398,17511399 -g1,16981:12637544,17511399 -g1,16981:12953690,17511399 -g1,16981:13269836,17511399 -g1,16981:13585982,17511399 -g1,16981:13902128,17511399 -g1,16981:14218274,17511399 -g1,16981:14534420,17511399 -g1,16981:14850566,17511399 -g1,16981:16431295,17511399 -g1,16981:16747441,17511399 -g1,16981:17063587,17511399 -g1,16981:17379733,17511399 -g1,16981:17695879,17511399 -g1,16981:19592753,17511399 -g1,16981:21489627,17511399 -h1,16981:24334938,17511399:0,0,0 -k1,16981:32583029,17511399:8248091 -g1,16981:32583029,17511399 -) -(1,16981:6630773,18177577:25952256,404226,107478 -h1,16981:6630773,18177577:0,0,0 -g1,16981:7579210,18177577 -g1,16981:7895356,18177577 -g1,16981:8211502,18177577 -g1,16981:10108377,18177577 -g1,16981:12005252,18177577 -g1,16981:12321398,18177577 -g1,16981:12637544,18177577 -g1,16981:12953690,18177577 -g1,16981:13269836,18177577 -g1,16981:13585982,18177577 -g1,16981:13902128,18177577 -g1,16981:14218274,18177577 -g1,16981:14534420,18177577 -g1,16981:14850566,18177577 -g1,16981:16747441,18177577 -g1,16981:17063587,18177577 -g1,16981:17379733,18177577 -g1,16981:17695879,18177577 -g1,16981:19592754,18177577 -g1,16981:21489629,18177577 -k1,16981:21489629,18177577:0 -h1,16981:23070358,18177577:0,0,0 -k1,16981:32583029,18177577:9512671 -g1,16981:32583029,18177577 -) -(1,16981:6630773,18843755:25952256,388497,101187 -h1,16981:6630773,18843755:0,0,0 -g1,16981:7579210,18843755 -g1,16981:8211502,18843755 -g1,16981:8527648,18843755 -g1,16981:8843794,18843755 -g1,16981:9159940,18843755 -g1,16981:9476086,18843755 -g1,16981:10108378,18843755 -g1,16981:12005252,18843755 -g1,16981:12321398,18843755 -g1,16981:12637544,18843755 -g1,16981:12953690,18843755 -g1,16981:13269836,18843755 -g1,16981:13585982,18843755 -g1,16981:13902128,18843755 -g1,16981:14218274,18843755 -g1,16981:14534420,18843755 -g1,16981:14850566,18843755 -g1,16981:17695877,18843755 -g1,16981:18012023,18843755 -g1,16981:18328169,18843755 -g1,16981:18644315,18843755 -g1,16981:18960461,18843755 -g1,16981:19592753,18843755 -g1,16981:19908899,18843755 -g1,16981:20225045,18843755 -g1,16981:20541191,18843755 -g1,16981:21489628,18843755 -h1,16981:23070356,18843755:0,0,0 -k1,16981:32583029,18843755:9512673 -g1,16981:32583029,18843755 -) -(1,16981:6630773,19509933:25952256,404226,101187 -h1,16981:6630773,19509933:0,0,0 -g1,16981:7579210,19509933 -g1,16981:8211502,19509933 -g1,16981:8527648,19509933 -g1,16981:8843794,19509933 -g1,16981:9159940,19509933 -g1,16981:9476086,19509933 -g1,16981:10108378,19509933 -g1,16981:14850564,19509933 -g1,16981:17695875,19509933 -g1,16981:18012021,19509933 -g1,16981:18328167,19509933 -g1,16981:18644313,19509933 -g1,16981:18960459,19509933 -g1,16981:19592751,19509933 -g1,16981:19908897,19509933 -g1,16981:20225043,19509933 -g1,16981:20541189,19509933 -g1,16981:20857335,19509933 -g1,16981:21489627,19509933 -h1,16981:23070355,19509933:0,0,0 -k1,16981:32583029,19509933:9512674 -g1,16981:32583029,19509933 -) -] -) -g1,16982:32583029,19611120 -g1,16982:6630773,19611120 -g1,16982:6630773,19611120 -g1,16982:32583029,19611120 -g1,16982:32583029,19611120 -) -h1,16982:6630773,19807728:0,0,0 -(1,16987:6630773,21173504:25952256,513147,134348 -h1,16985:6630773,21173504:983040,0,0 -k1,16985:8804152,21173504:236790 -k1,16985:11244918,21173504:236790 -k1,16985:11837567,21173504:236789 -k1,16985:14154470,21173504:236790 -k1,16985:15050552,21173504:236790 -k1,16985:16306427,21173504:236790 -k1,16985:17932579,21173504:236789 -k1,16985:19436835,21173504:236790 -k1,16985:20029485,21173504:236790 -k1,16985:22077690,21173504:236790 -k1,16985:22930517,21173504:236789 -k1,16985:24556015,21173504:236790 -k1,16985:25682784,21173504:236790 -k1,16985:27366609,21173504:236790 -k1,16985:29957451,21173504:236789 -k1,16985:31385686,21173504:236790 -k1,16985:32583029,21173504:0 -) -(1,16987:6630773,22014992:25952256,513147,134348 -g1,16986:7849087,22014992 -g1,16986:10479702,22014992 -g1,16986:12414324,22014992 -g1,16986:12969413,22014992 -g1,16986:14558661,22014992 -g1,16986:17504504,22014992 -g1,16986:19271354,22014992 -g1,16986:21633270,22014992 -g1,16986:23023944,22014992 -g1,16986:26007798,22014992 -g1,16986:27774648,22014992 -k1,16987:32583029,22014992:2662078 -g1,16987:32583029,22014992 -) -v1,16989:6630773,23205458:0,393216,0 -(1,17006:6630773,30816006:25952256,8003764,196608 -g1,17006:6630773,30816006 -g1,17006:6630773,30816006 -g1,17006:6434165,30816006 -(1,17006:6434165,30816006:0,8003764,196608 -r1,17006:32779637,30816006:26345472,8200372,196608 -k1,17006:6434165,30816006:-26345472 -) -(1,17006:6434165,30816006:26345472,8003764,196608 -[1,17006:6630773,30816006:25952256,7807156,0 -(1,16991:6630773,23413076:25952256,404226,101187 -(1,16990:6630773,23413076:0,0,0 -g1,16990:6630773,23413076 -g1,16990:6630773,23413076 -g1,16990:6303093,23413076 -(1,16990:6303093,23413076:0,0,0 -) -g1,16990:6630773,23413076 -) -k1,16991:6630773,23413076:0 -k1,16991:6630773,23413076:0 -h1,16991:15482852,23413076:0,0,0 -k1,16991:32583028,23413076:17100176 -g1,16991:32583028,23413076 -) -(1,16992:6630773,24079254:25952256,410518,107478 -h1,16992:6630773,24079254:0,0,0 -g1,16992:6946919,24079254 -g1,16992:7263065,24079254 -g1,16992:7579211,24079254 -g1,16992:7895357,24079254 -g1,16992:8211503,24079254 -g1,16992:8527649,24079254 -g1,16992:8843795,24079254 -g1,16992:9159941,24079254 -g1,16992:9476087,24079254 -g1,16992:9792233,24079254 -g1,16992:10108379,24079254 -g1,16992:10424525,24079254 -g1,16992:10740671,24079254 -g1,16992:12005254,24079254 -g1,16992:12637546,24079254 -g1,16992:16431295,24079254 -g1,16992:17379733,24079254 -g1,16992:18328170,24079254 -k1,16992:18328170,24079254:0 -h1,16992:18960462,24079254:0,0,0 -k1,16992:32583029,24079254:13622567 -g1,16992:32583029,24079254 -) -(1,16993:6630773,24745432:25952256,410518,107478 -h1,16993:6630773,24745432:0,0,0 -g1,16993:6946919,24745432 -g1,16993:7263065,24745432 -g1,16993:7579211,24745432 -g1,16993:7895357,24745432 -g1,16993:8211503,24745432 -g1,16993:8527649,24745432 -g1,16993:8843795,24745432 -g1,16993:9159941,24745432 -g1,16993:9476087,24745432 -g1,16993:9792233,24745432 -g1,16993:10108379,24745432 -g1,16993:10424525,24745432 -g1,16993:10740671,24745432 -g1,16993:12005254,24745432 -g1,16993:12637546,24745432 -g1,16993:16431295,24745432 -g1,16993:17379733,24745432 -g1,16993:18328170,24745432 -g1,16993:19592753,24745432 -k1,16993:19592753,24745432:0 -h1,16993:20857335,24745432:0,0,0 -k1,16993:32583029,24745432:11725694 -g1,16993:32583029,24745432 -) -(1,16994:6630773,25411610:25952256,404226,101187 -h1,16994:6630773,25411610:0,0,0 -g1,16994:6946919,25411610 -g1,16994:7263065,25411610 -g1,16994:11372959,25411610 -g1,16994:12005251,25411610 -g1,16994:12953689,25411610 -g1,16994:14850563,25411610 -g1,16994:15482855,25411610 -g1,16994:23070352,25411610 -g1,16994:23702644,25411610 -g1,16994:27812538,25411610 -k1,16994:27812538,25411610:0 -h1,16994:29077120,25411610:0,0,0 -k1,16994:32583029,25411610:3505909 -g1,16994:32583029,25411610 -) -(1,16995:6630773,26077788:25952256,404226,82312 -h1,16995:6630773,26077788:0,0,0 -g1,16995:6946919,26077788 -g1,16995:7263065,26077788 -g1,16995:11372959,26077788 -g1,16995:12005251,26077788 -g1,16995:12953689,26077788 -k1,16995:12953689,26077788:0 -h1,16995:14850563,26077788:0,0,0 -k1,16995:32583029,26077788:17732466 -g1,16995:32583029,26077788 -) -(1,17005:6630773,26809502:25952256,404226,9436 -(1,16997:6630773,26809502:0,0,0 -g1,16997:6630773,26809502 -g1,16997:6630773,26809502 -g1,16997:6303093,26809502 -(1,16997:6303093,26809502:0,0,0 -) -g1,16997:6630773,26809502 -) -g1,17005:7579210,26809502 -g1,17005:8211502,26809502 -g1,17005:8843794,26809502 -g1,17005:11372960,26809502 -g1,17005:12321397,26809502 -g1,17005:12953689,26809502 -h1,17005:13269835,26809502:0,0,0 -k1,17005:32583029,26809502:19313194 -g1,17005:32583029,26809502 -) -(1,17005:6630773,27475680:25952256,404226,101187 -h1,17005:6630773,27475680:0,0,0 -g1,17005:7579210,27475680 -g1,17005:7895356,27475680 -g1,17005:8211502,27475680 -g1,17005:10108376,27475680 -g1,17005:14850562,27475680 -g1,17005:15166708,27475680 -g1,17005:15482854,27475680 -g1,17005:16747437,27475680 -g1,17005:17063583,27475680 -g1,17005:17379729,27475680 -g1,17005:18644312,27475680 -h1,17005:20225040,27475680:0,0,0 -k1,17005:32583029,27475680:12357989 -g1,17005:32583029,27475680 -) -(1,17005:6630773,28141858:25952256,404226,6290 -h1,17005:6630773,28141858:0,0,0 -g1,17005:7579210,28141858 -g1,17005:7895356,28141858 -g1,17005:8211502,28141858 -g1,17005:10108377,28141858 -g1,17005:10424523,28141858 -g1,17005:10740669,28141858 -g1,17005:11056815,28141858 -g1,17005:11372961,28141858 -g1,17005:11689107,28141858 -g1,17005:12005253,28141858 -g1,17005:12321399,28141858 -g1,17005:12637545,28141858 -g1,17005:12953691,28141858 -g1,17005:14850566,28141858 -g1,17005:16747441,28141858 -g1,17005:18644316,28141858 -k1,17005:18644316,28141858:0 -h1,17005:20225045,28141858:0,0,0 -k1,17005:32583029,28141858:12357984 -g1,17005:32583029,28141858 -) -(1,17005:6630773,28808036:25952256,388497,9436 -h1,17005:6630773,28808036:0,0,0 -g1,17005:7579210,28808036 -g1,17005:8211502,28808036 -g1,17005:8527648,28808036 -g1,17005:10108377,28808036 -g1,17005:10424523,28808036 -g1,17005:10740669,28808036 -g1,17005:11056815,28808036 -g1,17005:11372961,28808036 -g1,17005:11689107,28808036 -g1,17005:12005253,28808036 -g1,17005:14850564,28808036 -g1,17005:15166710,28808036 -g1,17005:16747439,28808036 -g1,17005:17063585,28808036 -g1,17005:18644314,28808036 -g1,17005:18960460,28808036 -g1,17005:19276606,28808036 -g1,17005:19592752,28808036 -h1,17005:20225043,28808036:0,0,0 -k1,17005:32583029,28808036:12357986 -g1,17005:32583029,28808036 -) -(1,17005:6630773,29474214:25952256,388497,9436 -h1,17005:6630773,29474214:0,0,0 -g1,17005:7579210,29474214 -g1,17005:8211502,29474214 -g1,17005:8527648,29474214 -g1,17005:10108377,29474214 -g1,17005:10424523,29474214 -g1,17005:10740669,29474214 -g1,17005:11056815,29474214 -g1,17005:11372961,29474214 -g1,17005:11689107,29474214 -g1,17005:12005253,29474214 -g1,17005:14850564,29474214 -g1,17005:15166710,29474214 -g1,17005:16747439,29474214 -g1,17005:17063585,29474214 -g1,17005:18644314,29474214 -g1,17005:18960460,29474214 -g1,17005:19276606,29474214 -g1,17005:19592752,29474214 -g1,17005:19908898,29474214 -h1,17005:20225044,29474214:0,0,0 -k1,17005:32583029,29474214:12357985 -g1,17005:32583029,29474214 -) -(1,17005:6630773,30140392:25952256,388497,9436 -h1,17005:6630773,30140392:0,0,0 -g1,17005:7579210,30140392 -g1,17005:8211502,30140392 -g1,17005:8527648,30140392 -g1,17005:10108377,30140392 -g1,17005:10424523,30140392 -g1,17005:10740669,30140392 -g1,17005:11056815,30140392 -g1,17005:11372961,30140392 -g1,17005:11689107,30140392 -g1,17005:12005253,30140392 -g1,17005:14850564,30140392 -g1,17005:15166710,30140392 -g1,17005:16747439,30140392 -g1,17005:17063585,30140392 -g1,17005:18644314,30140392 -g1,17005:18960460,30140392 -g1,17005:19276606,30140392 -g1,17005:19592752,30140392 -g1,17005:19908898,30140392 -h1,17005:20225044,30140392:0,0,0 -k1,17005:32583029,30140392:12357985 -g1,17005:32583029,30140392 -) -(1,17005:6630773,30806570:25952256,404226,9436 -h1,17005:6630773,30806570:0,0,0 -g1,17005:7579210,30806570 -g1,17005:8211502,30806570 -g1,17005:9476085,30806570 -g1,17005:11056814,30806570 -g1,17005:11689106,30806570 -g1,17005:13269835,30806570 -h1,17005:14534418,30806570:0,0,0 -k1,17005:32583030,30806570:18048612 -g1,17005:32583030,30806570 -) -] -) -g1,17006:32583029,30816006 -g1,17006:6630773,30816006 -g1,17006:6630773,30816006 -g1,17006:32583029,30816006 -g1,17006:32583029,30816006 -) -h1,17006:6630773,31012614:0,0,0 -(1,17010:6630773,32378390:25952256,513147,134348 -h1,17009:6630773,32378390:983040,0,0 -k1,17009:8476015,32378390:234367 -k1,17009:9913623,32378390:234367 -k1,17009:12389320,32378390:234366 -k1,17009:15458774,32378390:234367 -k1,17009:16561493,32378390:234367 -k1,17009:18999836,32378390:234367 -k1,17009:20623565,32378390:234366 -k1,17009:21805583,32378390:234367 -k1,17009:22806066,32378390:234367 -k1,17009:24324939,32378390:234367 -k1,17009:26577814,32378390:234366 -k1,17009:28556749,32378390:234367 -k1,17009:31753999,32378390:234367 -k1,17009:32583029,32378390:0 -) -(1,17010:6630773,33219878:25952256,513147,126483 -k1,17009:9206870,33219878:218767 -k1,17009:10628878,33219878:218767 -k1,17009:11715996,33219878:218766 -k1,17009:13465029,33219878:218767 -k1,17009:15059397,33219878:218767 -k1,17009:15929592,33219878:218767 -k1,17009:17620953,33219878:218767 -k1,17009:18858805,33219878:218767 -k1,17009:20269016,33219878:218766 -k1,17009:21435434,33219878:218767 -(1,17009:21435434,33219878:0,452978,115847 -r1,17009:22497123,33219878:1061689,568825,115847 -k1,17009:21435434,33219878:-1061689 -) -(1,17009:21435434,33219878:1061689,452978,115847 -k1,17009:21435434,33219878:3277 -h1,17009:22493846,33219878:0,411205,112570 -) -k1,17009:22715890,33219878:218767 -k1,17009:24502278,33219878:218767 -k1,17009:25740130,33219878:218767 -k1,17009:27848299,33219878:218766 -k1,17009:30096061,33219878:218767 -k1,17009:31511515,33219878:218767 -k1,17010:32583029,33219878:0 -) -(1,17010:6630773,34061366:25952256,513147,126483 -k1,17009:7770861,34061366:187195 -k1,17009:8489552,34061366:187194 -k1,17009:12034156,34061366:187195 -k1,17009:16538207,34061366:187194 -k1,17009:17916847,34061366:187195 -k1,17009:20817232,34061366:187194 -k1,17009:21952078,34061366:187195 -k1,17009:23158357,34061366:187194 -k1,17009:25197599,34061366:187195 -k1,17009:29060052,34061366:187194 -k1,17009:31386342,34061366:187195 -k1,17009:32583029,34061366:0 -) -(1,17010:6630773,34902854:25952256,513147,134348 -g1,17009:9737179,34902854 -g1,17009:10595700,34902854 -g1,17009:11814014,34902854 -g1,17009:14444629,34902854 -g1,17009:17201728,34902854 -k1,17010:32583029,34902854:11716528 -g1,17010:32583029,34902854 -) -v1,17012:6630773,36093320:0,393216,0 -(1,17028:6630773,43110566:25952256,7410462,196608 -g1,17028:6630773,43110566 -g1,17028:6630773,43110566 -g1,17028:6434165,43110566 -(1,17028:6434165,43110566:0,7410462,196608 -r1,17028:32779637,43110566:26345472,7607070,196608 -k1,17028:6434165,43110566:-26345472 -) -(1,17028:6434165,43110566:26345472,7410462,196608 -[1,17028:6630773,43110566:25952256,7213854,0 -(1,17014:6630773,36300938:25952256,404226,101187 -(1,17013:6630773,36300938:0,0,0 -g1,17013:6630773,36300938 -g1,17013:6630773,36300938 -g1,17013:6303093,36300938 -(1,17013:6303093,36300938:0,0,0 -) -g1,17013:6630773,36300938 -) -k1,17014:6630773,36300938:0 -k1,17014:6630773,36300938:0 -h1,17014:15482852,36300938:0,0,0 -k1,17014:32583028,36300938:17100176 -g1,17014:32583028,36300938 -) -(1,17015:6630773,36967116:25952256,410518,107478 -h1,17015:6630773,36967116:0,0,0 -g1,17015:6946919,36967116 -g1,17015:7263065,36967116 -g1,17015:7579211,36967116 -g1,17015:7895357,36967116 -g1,17015:8211503,36967116 -g1,17015:8527649,36967116 -g1,17015:8843795,36967116 -g1,17015:9159941,36967116 -g1,17015:9476087,36967116 -g1,17015:9792233,36967116 -g1,17015:10108379,36967116 -g1,17015:10424525,36967116 -g1,17015:10740671,36967116 -g1,17015:12005254,36967116 -g1,17015:12637546,36967116 -g1,17015:16431295,36967116 -g1,17015:17379733,36967116 -g1,17015:18328170,36967116 -g1,17015:19276608,36967116 -k1,17015:19276608,36967116:0 -h1,17015:20541190,36967116:0,0,0 -k1,17015:32583029,36967116:12041839 -g1,17015:32583029,36967116 -) -(1,17016:6630773,37633294:25952256,404226,101187 -h1,17016:6630773,37633294:0,0,0 -g1,17016:6946919,37633294 -g1,17016:7263065,37633294 -g1,17016:11372959,37633294 -g1,17016:12005251,37633294 -g1,17016:12953689,37633294 -g1,17016:14850563,37633294 -g1,17016:15482855,37633294 -g1,17016:23070352,37633294 -g1,17016:23702644,37633294 -g1,17016:27812538,37633294 -k1,17016:27812538,37633294:0 -h1,17016:29077120,37633294:0,0,0 -k1,17016:32583029,37633294:3505909 -g1,17016:32583029,37633294 -) -(1,17017:6630773,38299472:25952256,404226,82312 -h1,17017:6630773,38299472:0,0,0 -g1,17017:6946919,38299472 -g1,17017:7263065,38299472 -g1,17017:11372959,38299472 -g1,17017:12005251,38299472 -g1,17017:12953689,38299472 -k1,17017:12953689,38299472:0 -h1,17017:14850563,38299472:0,0,0 -k1,17017:32583029,38299472:17732466 -g1,17017:32583029,38299472 -) -(1,17027:6630773,39031186:25952256,404226,82312 -(1,17019:6630773,39031186:0,0,0 -g1,17019:6630773,39031186 -g1,17019:6630773,39031186 -g1,17019:6303093,39031186 -(1,17019:6303093,39031186:0,0,0 -) -g1,17019:6630773,39031186 -) -g1,17027:7579210,39031186 -g1,17027:8211502,39031186 -g1,17027:8843794,39031186 -g1,17027:11372960,39031186 -g1,17027:13269835,39031186 -g1,17027:13902127,39031186 -h1,17027:14218273,39031186:0,0,0 -k1,17027:32583029,39031186:18364756 -g1,17027:32583029,39031186 -) -(1,17027:6630773,39697364:25952256,404226,101187 -h1,17027:6630773,39697364:0,0,0 -g1,17027:7579210,39697364 -g1,17027:7895356,39697364 -g1,17027:8211502,39697364 -g1,17027:10108376,39697364 -g1,17027:14850562,39697364 -g1,17027:15166708,39697364 -g1,17027:15482854,39697364 -g1,17027:16747437,39697364 -g1,17027:17063583,39697364 -g1,17027:17379729,39697364 -g1,17027:18644312,39697364 -h1,17027:20225040,39697364:0,0,0 -k1,17027:32583029,39697364:12357989 -g1,17027:32583029,39697364 -) -(1,17027:6630773,40363542:25952256,404226,6290 -h1,17027:6630773,40363542:0,0,0 -g1,17027:7579210,40363542 -g1,17027:7895356,40363542 -g1,17027:8211502,40363542 -g1,17027:10108377,40363542 -g1,17027:10424523,40363542 -g1,17027:10740669,40363542 -g1,17027:11056815,40363542 -g1,17027:11372961,40363542 -g1,17027:11689107,40363542 -g1,17027:12005253,40363542 -g1,17027:12321399,40363542 -g1,17027:12637545,40363542 -g1,17027:12953691,40363542 -g1,17027:14850566,40363542 -g1,17027:16747441,40363542 -g1,17027:18644316,40363542 -k1,17027:18644316,40363542:0 -h1,17027:20225045,40363542:0,0,0 -k1,17027:32583029,40363542:12357984 -g1,17027:32583029,40363542 -) -(1,17027:6630773,41029720:25952256,388497,9436 -h1,17027:6630773,41029720:0,0,0 -g1,17027:7579210,41029720 -g1,17027:8211502,41029720 -g1,17027:8527648,41029720 -g1,17027:10108377,41029720 -g1,17027:10424523,41029720 -g1,17027:10740669,41029720 -g1,17027:11056815,41029720 -g1,17027:11372961,41029720 -g1,17027:11689107,41029720 -g1,17027:12005253,41029720 -g1,17027:14850564,41029720 -g1,17027:15166710,41029720 -g1,17027:16747439,41029720 -g1,17027:17063585,41029720 -g1,17027:18644314,41029720 -g1,17027:18960460,41029720 -g1,17027:19276606,41029720 -g1,17027:19592752,41029720 -h1,17027:20225043,41029720:0,0,0 -k1,17027:32583029,41029720:12357986 -g1,17027:32583029,41029720 -) -(1,17027:6630773,41695898:25952256,388497,9436 -h1,17027:6630773,41695898:0,0,0 -g1,17027:7579210,41695898 -g1,17027:8211502,41695898 -g1,17027:8527648,41695898 -g1,17027:10108377,41695898 -g1,17027:10424523,41695898 -g1,17027:10740669,41695898 -g1,17027:11056815,41695898 -g1,17027:11372961,41695898 -g1,17027:11689107,41695898 -g1,17027:12005253,41695898 -g1,17027:14850564,41695898 -g1,17027:15166710,41695898 -g1,17027:16747439,41695898 -g1,17027:17063585,41695898 -g1,17027:18644314,41695898 -g1,17027:18960460,41695898 -g1,17027:19276606,41695898 -g1,17027:19592752,41695898 -h1,17027:20225043,41695898:0,0,0 -k1,17027:32583029,41695898:12357986 -g1,17027:32583029,41695898 -) -(1,17027:6630773,42362076:25952256,388497,9436 -h1,17027:6630773,42362076:0,0,0 -g1,17027:7579210,42362076 -g1,17027:8211502,42362076 -g1,17027:8527648,42362076 -g1,17027:10108377,42362076 -g1,17027:10424523,42362076 -g1,17027:10740669,42362076 -g1,17027:11056815,42362076 -g1,17027:11372961,42362076 -g1,17027:11689107,42362076 -g1,17027:12005253,42362076 -g1,17027:14850564,42362076 -g1,17027:15166710,42362076 -g1,17027:16747439,42362076 -g1,17027:17063585,42362076 -g1,17027:18644314,42362076 -g1,17027:18960460,42362076 -g1,17027:19276606,42362076 -g1,17027:19592752,42362076 -h1,17027:20225043,42362076:0,0,0 -k1,17027:32583029,42362076:12357986 -g1,17027:32583029,42362076 -) -(1,17027:6630773,43028254:25952256,404226,82312 -h1,17027:6630773,43028254:0,0,0 -g1,17027:7579210,43028254 -g1,17027:8211502,43028254 -g1,17027:9476085,43028254 -g1,17027:11056814,43028254 -g1,17027:12953689,43028254 -g1,17027:14534418,43028254 -h1,17027:15799001,43028254:0,0,0 -k1,17027:32583029,43028254:16784028 -g1,17027:32583029,43028254 -) -] -) -g1,17028:32583029,43110566 -g1,17028:6630773,43110566 -g1,17028:6630773,43110566 -g1,17028:32583029,43110566 -g1,17028:32583029,43110566 -) -h1,17028:6630773,43307174:0,0,0 -v1,17032:6630773,45197238:0,393216,0 -] -(1,17033:32583029,45706769:0,0,0 -g1,17033:32583029,45706769 -) -) -] -(1,17033:6630773,47279633:25952256,0,0 -h1,17033:6630773,47279633:25952256,0,0 -) -] -h1,17033:4262630,4025873:0,0,0 -] -!32035 +) +) +] +[1,17065:3078558,4812305:0,0,0 +(1,17065:3078558,49800853:0,16384,2228224 +g1,17065:29030814,49800853 +g1,17065:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17065:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17065:37855564,49800853:1179648,16384,0 +) +) +k1,17065:3078556,49800853:-34777008 +) +] +g1,17065:6630773,4812305 +g1,17065:6630773,4812305 +g1,17065:9235173,4812305 +g1,17065:10666479,4812305 +k1,17065:31387651,4812305:20721172 +) +) +] +[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 +v1,16982:6630773,6254097:0,393216,0 +(1,16982:6630773,8444519:25952256,2583638,196608 +g1,16982:6630773,8444519 +g1,16982:6630773,8444519 +g1,16982:6434165,8444519 +(1,16982:6434165,8444519:0,2583638,196608 +r1,16982:32779637,8444519:26345472,2780246,196608 +k1,16982:6434165,8444519:-26345472 +) +(1,16982:6434165,8444519:26345472,2583638,196608 +[1,16982:6630773,8444519:25952256,2387030,0 +(1,16981:6630773,6436549:25952256,379060,0 +h1,16981:6630773,6436549:0,0,0 +h1,16981:7263064,6436549:0,0,0 +k1,16981:32583028,6436549:25319964 +g1,16981:32583028,6436549 +) +(1,16981:6630773,7102727:25952256,404226,107478 +h1,16981:6630773,7102727:0,0,0 +g1,16981:7579210,7102727 +g1,16981:7895356,7102727 +g1,16981:8211502,7102727 +g1,16981:9476085,7102727 +g1,16981:9792231,7102727 +g1,16981:10108377,7102727 +g1,16981:11689106,7102727 +g1,16981:12005252,7102727 +g1,16981:14218272,7102727 +g1,16981:14534418,7102727 +g1,16981:14850564,7102727 +g1,16981:16115147,7102727 +g1,16981:16431293,7102727 +g1,16981:16747439,7102727 +g1,16981:18012022,7102727 +g1,16981:19908896,7102727 +h1,16981:22754207,7102727:0,0,0 +k1,16981:32583029,7102727:9828822 +g1,16981:32583029,7102727 +) +(1,16981:6630773,7768905:25952256,404226,107478 +h1,16981:6630773,7768905:0,0,0 +g1,16981:7579210,7768905 +g1,16981:7895356,7768905 +g1,16981:8211502,7768905 +g1,16981:10108377,7768905 +g1,16981:12005252,7768905 +g1,16981:12321398,7768905 +g1,16981:14218273,7768905 +g1,16981:16115148,7768905 +g1,16981:18012023,7768905 +g1,16981:19908898,7768905 +k1,16981:19908898,7768905:0 +h1,16981:21489627,7768905:0,0,0 +k1,16981:32583029,7768905:11093402 +g1,16981:32583029,7768905 +) +(1,16981:6630773,8435083:25952256,404226,9436 +h1,16981:6630773,8435083:0,0,0 +g1,16981:7579210,8435083 +g1,16981:8211502,8435083 +g1,16981:9159939,8435083 +g1,16981:9476085,8435083 +g1,16981:9792231,8435083 +g1,16981:10108377,8435083 +g1,16981:12005251,8435083 +g1,16981:12321397,8435083 +g1,16981:12637543,8435083 +g1,16981:12953689,8435083 +g1,16981:13269835,8435083 +g1,16981:13585981,8435083 +g1,16981:14218273,8435083 +g1,16981:14534419,8435083 +g1,16981:14850565,8435083 +g1,16981:15166711,8435083 +g1,16981:15482857,8435083 +g1,16981:16115149,8435083 +g1,16981:16431295,8435083 +g1,16981:16747441,8435083 +g1,16981:17063587,8435083 +g1,16981:17379733,8435083 +g1,16981:18012025,8435083 +g1,16981:19908899,8435083 +h1,16981:21489627,8435083:0,0,0 +k1,16981:32583029,8435083:11093402 +g1,16981:32583029,8435083 +) +] +) +g1,16982:32583029,8444519 +g1,16982:6630773,8444519 +g1,16982:6630773,8444519 +g1,16982:32583029,8444519 +g1,16982:32583029,8444519 +) +h1,16982:6630773,8641127:0,0,0 +v1,16986:6630773,10351057:0,393216,0 +(1,17000:6630773,15886717:25952256,5928876,196608 +g1,17000:6630773,15886717 +g1,17000:6630773,15886717 +g1,17000:6434165,15886717 +(1,17000:6434165,15886717:0,5928876,196608 +r1,17000:32779637,15886717:26345472,6125484,196608 +k1,17000:6434165,15886717:-26345472 +) +(1,17000:6434165,15886717:26345472,5928876,196608 +[1,17000:6630773,15886717:25952256,5732268,0 +(1,16988:6630773,10558675:25952256,404226,101187 +(1,16987:6630773,10558675:0,0,0 +g1,16987:6630773,10558675 +g1,16987:6630773,10558675 +g1,16987:6303093,10558675 +(1,16987:6303093,10558675:0,0,0 +) +g1,16987:6630773,10558675 +) +k1,16988:6630773,10558675:0 +h1,16988:14850561,10558675:0,0,0 +k1,16988:32583029,10558675:17732468 +g1,16988:32583029,10558675 +) +(1,16992:6630773,11880213:25952256,410518,107478 +g1,16992:7579210,11880213 +g1,16992:10424521,11880213 +g1,16992:12637541,11880213 +g1,16992:15482852,11880213 +g1,16992:16747435,11880213 +g1,16992:19908892,11880213 +g1,16992:23386495,11880213 +g1,16992:24334932,11880213 +g1,16992:25599515,11880213 +g1,16992:26864098,11880213 +g1,16992:28128681,11880213 +g1,16992:29077118,11880213 +k1,16992:32583029,11880213:2241328 +g1,16992:32583029,11880213 +) +(1,16999:6630773,12546391:25952256,404226,9436 +(1,16992:6630773,12546391:0,0,0 +g1,16992:6630773,12546391 +g1,16992:6630773,12546391 +g1,16992:6303093,12546391 +(1,16992:6303093,12546391:0,0,0 +) +g1,16992:6630773,12546391 +) +g1,16999:7579210,12546391 +g1,16999:8211502,12546391 +g1,16999:8843794,12546391 +g1,16999:11372960,12546391 +g1,16999:12005252,12546391 +g1,16999:12637544,12546391 +h1,16999:12953690,12546391:0,0,0 +k1,16999:32583030,12546391:19629340 +g1,16999:32583030,12546391 +) +(1,16999:6630773,13212569:25952256,404226,107478 +h1,16999:6630773,13212569:0,0,0 +g1,16999:7579210,13212569 +g1,16999:7895356,13212569 +g1,16999:8211502,13212569 +g1,16999:9792231,13212569 +g1,16999:10108377,13212569 +g1,16999:12321397,13212569 +g1,16999:14218271,13212569 +g1,16999:16115145,13212569 +g1,16999:16431291,13212569 +g1,16999:16747437,13212569 +g1,16999:17063583,13212569 +g1,16999:18012020,13212569 +g1,16999:19908894,13212569 +h1,16999:22754205,13212569:0,0,0 +k1,16999:32583029,13212569:9828824 +g1,16999:32583029,13212569 +) +(1,16999:6630773,13878747:25952256,404226,107478 +h1,16999:6630773,13878747:0,0,0 +g1,16999:7579210,13878747 +g1,16999:7895356,13878747 +g1,16999:8211502,13878747 +g1,16999:10108377,13878747 +g1,16999:10424523,13878747 +g1,16999:12321398,13878747 +g1,16999:14218273,13878747 +g1,16999:16115148,13878747 +g1,16999:18012023,13878747 +g1,16999:19908898,13878747 +k1,16999:19908898,13878747:0 +h1,16999:21489627,13878747:0,0,0 +k1,16999:32583029,13878747:11093402 +g1,16999:32583029,13878747 +) +(1,16999:6630773,14544925:25952256,404226,9436 +h1,16999:6630773,14544925:0,0,0 +g1,16999:7579210,14544925 +g1,16999:8211502,14544925 +g1,16999:9476085,14544925 +g1,16999:9792231,14544925 +g1,16999:10108377,14544925 +g1,16999:10424523,14544925 +g1,16999:10740669,14544925 +g1,16999:11056815,14544925 +g1,16999:12321398,14544925 +g1,16999:12637544,14544925 +g1,16999:12953690,14544925 +g1,16999:13269836,14544925 +g1,16999:13585982,14544925 +g1,16999:14218274,14544925 +g1,16999:14534420,14544925 +g1,16999:14850566,14544925 +g1,16999:16115149,14544925 +g1,16999:16431295,14544925 +g1,16999:16747441,14544925 +g1,16999:17063587,14544925 +g1,16999:17379733,14544925 +g1,16999:18012025,14544925 +g1,16999:19908899,14544925 +h1,16999:21173482,14544925:0,0,0 +k1,16999:32583029,14544925:11409547 +g1,16999:32583029,14544925 +) +(1,16999:6630773,15211103:25952256,404226,9436 +h1,16999:6630773,15211103:0,0,0 +g1,16999:7579210,15211103 +g1,16999:8211502,15211103 +g1,16999:9476085,15211103 +g1,16999:9792231,15211103 +g1,16999:10108377,15211103 +g1,16999:10424523,15211103 +g1,16999:10740669,15211103 +g1,16999:11056815,15211103 +g1,16999:11372961,15211103 +g1,16999:12321398,15211103 +g1,16999:12637544,15211103 +g1,16999:12953690,15211103 +g1,16999:13269836,15211103 +g1,16999:13585982,15211103 +g1,16999:14218274,15211103 +g1,16999:14534420,15211103 +g1,16999:14850566,15211103 +g1,16999:15166712,15211103 +g1,16999:16115149,15211103 +g1,16999:16431295,15211103 +g1,16999:16747441,15211103 +g1,16999:17063587,15211103 +g1,16999:17379733,15211103 +g1,16999:18012025,15211103 +g1,16999:19908899,15211103 +h1,16999:21173482,15211103:0,0,0 +k1,16999:32583029,15211103:11409547 +g1,16999:32583029,15211103 +) +(1,16999:6630773,15877281:25952256,404226,9436 +h1,16999:6630773,15877281:0,0,0 +g1,16999:7579210,15877281 +g1,16999:8211502,15877281 +g1,16999:9792231,15877281 +g1,16999:10108377,15877281 +g1,16999:10424523,15877281 +g1,16999:10740669,15877281 +g1,16999:11056815,15877281 +g1,16999:11372961,15877281 +g1,16999:12321398,15877281 +g1,16999:12637544,15877281 +g1,16999:12953690,15877281 +g1,16999:13269836,15877281 +g1,16999:13585982,15877281 +g1,16999:14218274,15877281 +g1,16999:14534420,15877281 +g1,16999:14850566,15877281 +g1,16999:15166712,15877281 +g1,16999:16115149,15877281 +g1,16999:16431295,15877281 +g1,16999:16747441,15877281 +g1,16999:17063587,15877281 +g1,16999:17379733,15877281 +g1,16999:18012025,15877281 +g1,16999:19908899,15877281 +h1,16999:21173482,15877281:0,0,0 +k1,16999:32583029,15877281:11409547 +g1,16999:32583029,15877281 +) +] +) +g1,17000:32583029,15886717 +g1,17000:6630773,15886717 +g1,17000:6630773,15886717 +g1,17000:32583029,15886717 +g1,17000:32583029,15886717 +) +h1,17000:6630773,16083325:0,0,0 +v1,17004:6630773,17793255:0,393216,0 +(1,17015:6630773,21498486:25952256,4098447,196608 +g1,17015:6630773,21498486 +g1,17015:6630773,21498486 +g1,17015:6434165,21498486 +(1,17015:6434165,21498486:0,4098447,196608 +r1,17015:32779637,21498486:26345472,4295055,196608 +k1,17015:6434165,21498486:-26345472 +) +(1,17015:6434165,21498486:26345472,4098447,196608 +[1,17015:6630773,21498486:25952256,3901839,0 +(1,17006:6630773,18000873:25952256,404226,101187 +(1,17005:6630773,18000873:0,0,0 +g1,17005:6630773,18000873 +g1,17005:6630773,18000873 +g1,17005:6303093,18000873 +(1,17005:6303093,18000873:0,0,0 +) +g1,17005:6630773,18000873 +) +k1,17006:6630773,18000873:0 +h1,17006:14850561,18000873:0,0,0 +k1,17006:32583029,18000873:17732468 +g1,17006:32583029,18000873 +) +(1,17014:6630773,18732587:25952256,404226,9436 +(1,17008:6630773,18732587:0,0,0 +g1,17008:6630773,18732587 +g1,17008:6630773,18732587 +g1,17008:6303093,18732587 +(1,17008:6303093,18732587:0,0,0 +) +g1,17008:6630773,18732587 +) +g1,17014:7579210,18732587 +g1,17014:8211502,18732587 +g1,17014:8843794,18732587 +g1,17014:11372960,18732587 +g1,17014:12005252,18732587 +g1,17014:12637544,18732587 +h1,17014:12953690,18732587:0,0,0 +k1,17014:32583030,18732587:19629340 +g1,17014:32583030,18732587 +) +(1,17014:6630773,19398765:25952256,404226,101187 +h1,17014:6630773,19398765:0,0,0 +g1,17014:7579210,19398765 +g1,17014:7895356,19398765 +g1,17014:8211502,19398765 +g1,17014:8527648,19398765 +g1,17014:8843794,19398765 +g1,17014:9159940,19398765 +g1,17014:10108377,19398765 +g1,17014:11689106,19398765 +g1,17014:12005252,19398765 +g1,17014:12321398,19398765 +g1,17014:12637544,19398765 +g1,17014:12953690,19398765 +g1,17014:13269836,19398765 +g1,17014:13585982,19398765 +g1,17014:13902128,19398765 +g1,17014:14218274,19398765 +g1,17014:14534420,19398765 +g1,17014:14850566,19398765 +g1,17014:16431295,19398765 +g1,17014:16747441,19398765 +g1,17014:17063587,19398765 +g1,17014:17379733,19398765 +g1,17014:17695879,19398765 +g1,17014:19592753,19398765 +g1,17014:21489627,19398765 +h1,17014:24334938,19398765:0,0,0 +k1,17014:32583029,19398765:8248091 +g1,17014:32583029,19398765 +) +(1,17014:6630773,20064943:25952256,404226,107478 +h1,17014:6630773,20064943:0,0,0 +g1,17014:7579210,20064943 +g1,17014:7895356,20064943 +g1,17014:8211502,20064943 +g1,17014:10108377,20064943 +g1,17014:12005252,20064943 +g1,17014:12321398,20064943 +g1,17014:12637544,20064943 +g1,17014:12953690,20064943 +g1,17014:13269836,20064943 +g1,17014:13585982,20064943 +g1,17014:13902128,20064943 +g1,17014:14218274,20064943 +g1,17014:14534420,20064943 +g1,17014:14850566,20064943 +g1,17014:16747441,20064943 +g1,17014:17063587,20064943 +g1,17014:17379733,20064943 +g1,17014:17695879,20064943 +g1,17014:19592754,20064943 +g1,17014:21489629,20064943 +k1,17014:21489629,20064943:0 +h1,17014:23070358,20064943:0,0,0 +k1,17014:32583029,20064943:9512671 +g1,17014:32583029,20064943 +) +(1,17014:6630773,20731121:25952256,388497,101187 +h1,17014:6630773,20731121:0,0,0 +g1,17014:7579210,20731121 +g1,17014:8211502,20731121 +g1,17014:8527648,20731121 +g1,17014:8843794,20731121 +g1,17014:9159940,20731121 +g1,17014:9476086,20731121 +g1,17014:10108378,20731121 +g1,17014:12005252,20731121 +g1,17014:12321398,20731121 +g1,17014:12637544,20731121 +g1,17014:12953690,20731121 +g1,17014:13269836,20731121 +g1,17014:13585982,20731121 +g1,17014:13902128,20731121 +g1,17014:14218274,20731121 +g1,17014:14534420,20731121 +g1,17014:14850566,20731121 +g1,17014:17695877,20731121 +g1,17014:18012023,20731121 +g1,17014:18328169,20731121 +g1,17014:18644315,20731121 +g1,17014:18960461,20731121 +g1,17014:19592753,20731121 +g1,17014:19908899,20731121 +g1,17014:20225045,20731121 +g1,17014:20541191,20731121 +g1,17014:21489628,20731121 +h1,17014:23070356,20731121:0,0,0 +k1,17014:32583029,20731121:9512673 +g1,17014:32583029,20731121 +) +(1,17014:6630773,21397299:25952256,404226,101187 +h1,17014:6630773,21397299:0,0,0 +g1,17014:7579210,21397299 +g1,17014:8211502,21397299 +g1,17014:8527648,21397299 +g1,17014:8843794,21397299 +g1,17014:9159940,21397299 +g1,17014:9476086,21397299 +g1,17014:10108378,21397299 +g1,17014:14850564,21397299 +g1,17014:17695875,21397299 +g1,17014:18012021,21397299 +g1,17014:18328167,21397299 +g1,17014:18644313,21397299 +g1,17014:18960459,21397299 +g1,17014:19592751,21397299 +g1,17014:19908897,21397299 +g1,17014:20225043,21397299 +g1,17014:20541189,21397299 +g1,17014:20857335,21397299 +g1,17014:21489627,21397299 +h1,17014:23070355,21397299:0,0,0 +k1,17014:32583029,21397299:9512674 +g1,17014:32583029,21397299 +) +] +) +g1,17015:32583029,21498486 +g1,17015:6630773,21498486 +g1,17015:6630773,21498486 +g1,17015:32583029,21498486 +g1,17015:32583029,21498486 +) +h1,17015:6630773,21695094:0,0,0 +(1,17020:6630773,23058459:25952256,513147,134348 +h1,17018:6630773,23058459:983040,0,0 +k1,17018:8804152,23058459:236790 +k1,17018:11244918,23058459:236790 +k1,17018:11837567,23058459:236789 +k1,17018:14154470,23058459:236790 +k1,17018:15050552,23058459:236790 +k1,17018:16306427,23058459:236790 +k1,17018:17932579,23058459:236789 +k1,17018:19436835,23058459:236790 +k1,17018:20029485,23058459:236790 +k1,17018:22077690,23058459:236790 +k1,17018:22930517,23058459:236789 +k1,17018:24556015,23058459:236790 +k1,17018:25682784,23058459:236790 +k1,17018:27366609,23058459:236790 +k1,17018:29957451,23058459:236789 +k1,17018:31385686,23058459:236790 +k1,17018:32583029,23058459:0 +) +(1,17020:6630773,23899947:25952256,513147,134348 +g1,17019:7849087,23899947 +g1,17019:10479702,23899947 +g1,17019:12414324,23899947 +g1,17019:12969413,23899947 +g1,17019:14558661,23899947 +g1,17019:17504504,23899947 +g1,17019:19271354,23899947 +g1,17019:21633270,23899947 +g1,17019:23023944,23899947 +g1,17019:26007798,23899947 +g1,17019:27774648,23899947 +k1,17020:32583029,23899947:2662078 +g1,17020:32583029,23899947 +) +v1,17022:6630773,25088001:0,393216,0 +(1,17039:6630773,32698549:25952256,8003764,196608 +g1,17039:6630773,32698549 +g1,17039:6630773,32698549 +g1,17039:6434165,32698549 +(1,17039:6434165,32698549:0,8003764,196608 +r1,17039:32779637,32698549:26345472,8200372,196608 +k1,17039:6434165,32698549:-26345472 +) +(1,17039:6434165,32698549:26345472,8003764,196608 +[1,17039:6630773,32698549:25952256,7807156,0 +(1,17024:6630773,25295619:25952256,404226,101187 +(1,17023:6630773,25295619:0,0,0 +g1,17023:6630773,25295619 +g1,17023:6630773,25295619 +g1,17023:6303093,25295619 +(1,17023:6303093,25295619:0,0,0 +) +g1,17023:6630773,25295619 +) +k1,17024:6630773,25295619:0 +k1,17024:6630773,25295619:0 +h1,17024:15482852,25295619:0,0,0 +k1,17024:32583028,25295619:17100176 +g1,17024:32583028,25295619 +) +(1,17025:6630773,25961797:25952256,410518,107478 +h1,17025:6630773,25961797:0,0,0 +g1,17025:6946919,25961797 +g1,17025:7263065,25961797 +g1,17025:7579211,25961797 +g1,17025:7895357,25961797 +g1,17025:8211503,25961797 +g1,17025:8527649,25961797 +g1,17025:8843795,25961797 +g1,17025:9159941,25961797 +g1,17025:9476087,25961797 +g1,17025:9792233,25961797 +g1,17025:10108379,25961797 +g1,17025:10424525,25961797 +g1,17025:10740671,25961797 +g1,17025:12005254,25961797 +g1,17025:12637546,25961797 +g1,17025:16431295,25961797 +g1,17025:17379733,25961797 +g1,17025:18328170,25961797 +k1,17025:18328170,25961797:0 +h1,17025:18960462,25961797:0,0,0 +k1,17025:32583029,25961797:13622567 +g1,17025:32583029,25961797 +) +(1,17026:6630773,26627975:25952256,410518,107478 +h1,17026:6630773,26627975:0,0,0 +g1,17026:6946919,26627975 +g1,17026:7263065,26627975 +g1,17026:7579211,26627975 +g1,17026:7895357,26627975 +g1,17026:8211503,26627975 +g1,17026:8527649,26627975 +g1,17026:8843795,26627975 +g1,17026:9159941,26627975 +g1,17026:9476087,26627975 +g1,17026:9792233,26627975 +g1,17026:10108379,26627975 +g1,17026:10424525,26627975 +g1,17026:10740671,26627975 +g1,17026:12005254,26627975 +g1,17026:12637546,26627975 +g1,17026:16431295,26627975 +g1,17026:17379733,26627975 +g1,17026:18328170,26627975 +g1,17026:19592753,26627975 +k1,17026:19592753,26627975:0 +h1,17026:20857335,26627975:0,0,0 +k1,17026:32583029,26627975:11725694 +g1,17026:32583029,26627975 +) +(1,17027:6630773,27294153:25952256,404226,101187 +h1,17027:6630773,27294153:0,0,0 +g1,17027:6946919,27294153 +g1,17027:7263065,27294153 +g1,17027:11372959,27294153 +g1,17027:12005251,27294153 +g1,17027:12953689,27294153 +g1,17027:14850563,27294153 +g1,17027:15482855,27294153 +g1,17027:23070352,27294153 +g1,17027:23702644,27294153 +g1,17027:27812538,27294153 +k1,17027:27812538,27294153:0 +h1,17027:29077120,27294153:0,0,0 +k1,17027:32583029,27294153:3505909 +g1,17027:32583029,27294153 +) +(1,17028:6630773,27960331:25952256,404226,82312 +h1,17028:6630773,27960331:0,0,0 +g1,17028:6946919,27960331 +g1,17028:7263065,27960331 +g1,17028:11372959,27960331 +g1,17028:12005251,27960331 +g1,17028:12953689,27960331 +k1,17028:12953689,27960331:0 +h1,17028:14850563,27960331:0,0,0 +k1,17028:32583029,27960331:17732466 +g1,17028:32583029,27960331 +) +(1,17038:6630773,28692045:25952256,404226,9436 +(1,17030:6630773,28692045:0,0,0 +g1,17030:6630773,28692045 +g1,17030:6630773,28692045 +g1,17030:6303093,28692045 +(1,17030:6303093,28692045:0,0,0 +) +g1,17030:6630773,28692045 +) +g1,17038:7579210,28692045 +g1,17038:8211502,28692045 +g1,17038:8843794,28692045 +g1,17038:11372960,28692045 +g1,17038:12321397,28692045 +g1,17038:12953689,28692045 +h1,17038:13269835,28692045:0,0,0 +k1,17038:32583029,28692045:19313194 +g1,17038:32583029,28692045 +) +(1,17038:6630773,29358223:25952256,404226,101187 +h1,17038:6630773,29358223:0,0,0 +g1,17038:7579210,29358223 +g1,17038:7895356,29358223 +g1,17038:8211502,29358223 +g1,17038:10108376,29358223 +g1,17038:14850562,29358223 +g1,17038:15166708,29358223 +g1,17038:15482854,29358223 +g1,17038:16747437,29358223 +g1,17038:17063583,29358223 +g1,17038:17379729,29358223 +g1,17038:18644312,29358223 +h1,17038:20225040,29358223:0,0,0 +k1,17038:32583029,29358223:12357989 +g1,17038:32583029,29358223 +) +(1,17038:6630773,30024401:25952256,404226,6290 +h1,17038:6630773,30024401:0,0,0 +g1,17038:7579210,30024401 +g1,17038:7895356,30024401 +g1,17038:8211502,30024401 +g1,17038:10108377,30024401 +g1,17038:10424523,30024401 +g1,17038:10740669,30024401 +g1,17038:11056815,30024401 +g1,17038:11372961,30024401 +g1,17038:11689107,30024401 +g1,17038:12005253,30024401 +g1,17038:12321399,30024401 +g1,17038:12637545,30024401 +g1,17038:12953691,30024401 +g1,17038:14850566,30024401 +g1,17038:16747441,30024401 +g1,17038:18644316,30024401 +k1,17038:18644316,30024401:0 +h1,17038:20225045,30024401:0,0,0 +k1,17038:32583029,30024401:12357984 +g1,17038:32583029,30024401 +) +(1,17038:6630773,30690579:25952256,388497,9436 +h1,17038:6630773,30690579:0,0,0 +g1,17038:7579210,30690579 +g1,17038:8211502,30690579 +g1,17038:8527648,30690579 +g1,17038:10108377,30690579 +g1,17038:10424523,30690579 +g1,17038:10740669,30690579 +g1,17038:11056815,30690579 +g1,17038:11372961,30690579 +g1,17038:11689107,30690579 +g1,17038:12005253,30690579 +g1,17038:14850564,30690579 +g1,17038:15166710,30690579 +g1,17038:16747439,30690579 +g1,17038:17063585,30690579 +g1,17038:18644314,30690579 +g1,17038:18960460,30690579 +g1,17038:19276606,30690579 +g1,17038:19592752,30690579 +h1,17038:20225043,30690579:0,0,0 +k1,17038:32583029,30690579:12357986 +g1,17038:32583029,30690579 +) +(1,17038:6630773,31356757:25952256,388497,9436 +h1,17038:6630773,31356757:0,0,0 +g1,17038:7579210,31356757 +g1,17038:8211502,31356757 +g1,17038:8527648,31356757 +g1,17038:10108377,31356757 +g1,17038:10424523,31356757 +g1,17038:10740669,31356757 +g1,17038:11056815,31356757 +g1,17038:11372961,31356757 +g1,17038:11689107,31356757 +g1,17038:12005253,31356757 +g1,17038:14850564,31356757 +g1,17038:15166710,31356757 +g1,17038:16747439,31356757 +g1,17038:17063585,31356757 +g1,17038:18644314,31356757 +g1,17038:18960460,31356757 +g1,17038:19276606,31356757 +g1,17038:19592752,31356757 +g1,17038:19908898,31356757 +h1,17038:20225044,31356757:0,0,0 +k1,17038:32583029,31356757:12357985 +g1,17038:32583029,31356757 +) +(1,17038:6630773,32022935:25952256,388497,9436 +h1,17038:6630773,32022935:0,0,0 +g1,17038:7579210,32022935 +g1,17038:8211502,32022935 +g1,17038:8527648,32022935 +g1,17038:10108377,32022935 +g1,17038:10424523,32022935 +g1,17038:10740669,32022935 +g1,17038:11056815,32022935 +g1,17038:11372961,32022935 +g1,17038:11689107,32022935 +g1,17038:12005253,32022935 +g1,17038:14850564,32022935 +g1,17038:15166710,32022935 +g1,17038:16747439,32022935 +g1,17038:17063585,32022935 +g1,17038:18644314,32022935 +g1,17038:18960460,32022935 +g1,17038:19276606,32022935 +g1,17038:19592752,32022935 +g1,17038:19908898,32022935 +h1,17038:20225044,32022935:0,0,0 +k1,17038:32583029,32022935:12357985 +g1,17038:32583029,32022935 +) +(1,17038:6630773,32689113:25952256,404226,9436 +h1,17038:6630773,32689113:0,0,0 +g1,17038:7579210,32689113 +g1,17038:8211502,32689113 +g1,17038:9476085,32689113 +g1,17038:11056814,32689113 +g1,17038:11689106,32689113 +g1,17038:13269835,32689113 +h1,17038:14534418,32689113:0,0,0 +k1,17038:32583030,32689113:18048612 +g1,17038:32583030,32689113 +) +] +) +g1,17039:32583029,32698549 +g1,17039:6630773,32698549 +g1,17039:6630773,32698549 +g1,17039:32583029,32698549 +g1,17039:32583029,32698549 +) +h1,17039:6630773,32895157:0,0,0 +(1,17043:6630773,34258521:25952256,513147,134348 +h1,17042:6630773,34258521:983040,0,0 +k1,17042:8476015,34258521:234367 +k1,17042:9913623,34258521:234367 +k1,17042:12389320,34258521:234366 +k1,17042:15458774,34258521:234367 +k1,17042:16561493,34258521:234367 +k1,17042:18999836,34258521:234367 +k1,17042:20623565,34258521:234366 +k1,17042:21805583,34258521:234367 +k1,17042:22806066,34258521:234367 +k1,17042:24324939,34258521:234367 +k1,17042:26577814,34258521:234366 +k1,17042:28556749,34258521:234367 +k1,17042:31753999,34258521:234367 +k1,17042:32583029,34258521:0 +) +(1,17043:6630773,35100009:25952256,513147,126483 +k1,17042:9206870,35100009:218767 +k1,17042:10628878,35100009:218767 +k1,17042:11715996,35100009:218766 +k1,17042:13465029,35100009:218767 +k1,17042:15059397,35100009:218767 +k1,17042:15929592,35100009:218767 +k1,17042:17620953,35100009:218767 +k1,17042:18858805,35100009:218767 +k1,17042:20269016,35100009:218766 +k1,17042:21435434,35100009:218767 +(1,17042:21435434,35100009:0,452978,115847 +r1,17042:22497123,35100009:1061689,568825,115847 +k1,17042:21435434,35100009:-1061689 +) +(1,17042:21435434,35100009:1061689,452978,115847 +k1,17042:21435434,35100009:3277 +h1,17042:22493846,35100009:0,411205,112570 +) +k1,17042:22715890,35100009:218767 +k1,17042:24502278,35100009:218767 +k1,17042:25740130,35100009:218767 +k1,17042:27848299,35100009:218766 +k1,17042:30096061,35100009:218767 +k1,17042:31511515,35100009:218767 +k1,17043:32583029,35100009:0 +) +(1,17043:6630773,35941497:25952256,513147,126483 +k1,17042:7770861,35941497:187195 +k1,17042:8489552,35941497:187194 +k1,17042:12034156,35941497:187195 +k1,17042:16538207,35941497:187194 +k1,17042:17916847,35941497:187195 +k1,17042:20817232,35941497:187194 +k1,17042:21952078,35941497:187195 +k1,17042:23158357,35941497:187194 +k1,17042:25197599,35941497:187195 +k1,17042:29060052,35941497:187194 +k1,17042:31386342,35941497:187195 +k1,17042:32583029,35941497:0 +) +(1,17043:6630773,36782985:25952256,513147,134348 +g1,17042:9737179,36782985 +g1,17042:10595700,36782985 +g1,17042:11814014,36782985 +g1,17042:14444629,36782985 +g1,17042:17201728,36782985 +k1,17043:32583029,36782985:11716528 +g1,17043:32583029,36782985 +) +v1,17045:6630773,37971039:0,393216,0 +(1,17061:6630773,44988285:25952256,7410462,196608 +g1,17061:6630773,44988285 +g1,17061:6630773,44988285 +g1,17061:6434165,44988285 +(1,17061:6434165,44988285:0,7410462,196608 +r1,17061:32779637,44988285:26345472,7607070,196608 +k1,17061:6434165,44988285:-26345472 +) +(1,17061:6434165,44988285:26345472,7410462,196608 +[1,17061:6630773,44988285:25952256,7213854,0 +(1,17047:6630773,38178657:25952256,404226,101187 +(1,17046:6630773,38178657:0,0,0 +g1,17046:6630773,38178657 +g1,17046:6630773,38178657 +g1,17046:6303093,38178657 +(1,17046:6303093,38178657:0,0,0 +) +g1,17046:6630773,38178657 +) +k1,17047:6630773,38178657:0 +k1,17047:6630773,38178657:0 +h1,17047:15482852,38178657:0,0,0 +k1,17047:32583028,38178657:17100176 +g1,17047:32583028,38178657 +) +(1,17048:6630773,38844835:25952256,410518,107478 +h1,17048:6630773,38844835:0,0,0 +g1,17048:6946919,38844835 +g1,17048:7263065,38844835 +g1,17048:7579211,38844835 +g1,17048:7895357,38844835 +g1,17048:8211503,38844835 +g1,17048:8527649,38844835 +g1,17048:8843795,38844835 +g1,17048:9159941,38844835 +g1,17048:9476087,38844835 +g1,17048:9792233,38844835 +g1,17048:10108379,38844835 +g1,17048:10424525,38844835 +g1,17048:10740671,38844835 +g1,17048:12005254,38844835 +g1,17048:12637546,38844835 +g1,17048:16431295,38844835 +g1,17048:17379733,38844835 +g1,17048:18328170,38844835 +g1,17048:19276608,38844835 +k1,17048:19276608,38844835:0 +h1,17048:20541190,38844835:0,0,0 +k1,17048:32583029,38844835:12041839 +g1,17048:32583029,38844835 +) +(1,17049:6630773,39511013:25952256,404226,101187 +h1,17049:6630773,39511013:0,0,0 +g1,17049:6946919,39511013 +g1,17049:7263065,39511013 +g1,17049:11372959,39511013 +g1,17049:12005251,39511013 +g1,17049:12953689,39511013 +g1,17049:14850563,39511013 +g1,17049:15482855,39511013 +g1,17049:23070352,39511013 +g1,17049:23702644,39511013 +g1,17049:27812538,39511013 +k1,17049:27812538,39511013:0 +h1,17049:29077120,39511013:0,0,0 +k1,17049:32583029,39511013:3505909 +g1,17049:32583029,39511013 +) +(1,17050:6630773,40177191:25952256,404226,82312 +h1,17050:6630773,40177191:0,0,0 +g1,17050:6946919,40177191 +g1,17050:7263065,40177191 +g1,17050:11372959,40177191 +g1,17050:12005251,40177191 +g1,17050:12953689,40177191 +k1,17050:12953689,40177191:0 +h1,17050:14850563,40177191:0,0,0 +k1,17050:32583029,40177191:17732466 +g1,17050:32583029,40177191 +) +(1,17060:6630773,40908905:25952256,404226,82312 +(1,17052:6630773,40908905:0,0,0 +g1,17052:6630773,40908905 +g1,17052:6630773,40908905 +g1,17052:6303093,40908905 +(1,17052:6303093,40908905:0,0,0 +) +g1,17052:6630773,40908905 +) +g1,17060:7579210,40908905 +g1,17060:8211502,40908905 +g1,17060:8843794,40908905 +g1,17060:11372960,40908905 +g1,17060:13269835,40908905 +g1,17060:13902127,40908905 +h1,17060:14218273,40908905:0,0,0 +k1,17060:32583029,40908905:18364756 +g1,17060:32583029,40908905 +) +(1,17060:6630773,41575083:25952256,404226,101187 +h1,17060:6630773,41575083:0,0,0 +g1,17060:7579210,41575083 +g1,17060:7895356,41575083 +g1,17060:8211502,41575083 +g1,17060:10108376,41575083 +g1,17060:14850562,41575083 +g1,17060:15166708,41575083 +g1,17060:15482854,41575083 +g1,17060:16747437,41575083 +g1,17060:17063583,41575083 +g1,17060:17379729,41575083 +g1,17060:18644312,41575083 +h1,17060:20225040,41575083:0,0,0 +k1,17060:32583029,41575083:12357989 +g1,17060:32583029,41575083 +) +(1,17060:6630773,42241261:25952256,404226,6290 +h1,17060:6630773,42241261:0,0,0 +g1,17060:7579210,42241261 +g1,17060:7895356,42241261 +g1,17060:8211502,42241261 +g1,17060:10108377,42241261 +g1,17060:10424523,42241261 +g1,17060:10740669,42241261 +g1,17060:11056815,42241261 +g1,17060:11372961,42241261 +g1,17060:11689107,42241261 +g1,17060:12005253,42241261 +g1,17060:12321399,42241261 +g1,17060:12637545,42241261 +g1,17060:12953691,42241261 +g1,17060:14850566,42241261 +g1,17060:16747441,42241261 +g1,17060:18644316,42241261 +k1,17060:18644316,42241261:0 +h1,17060:20225045,42241261:0,0,0 +k1,17060:32583029,42241261:12357984 +g1,17060:32583029,42241261 +) +(1,17060:6630773,42907439:25952256,388497,9436 +h1,17060:6630773,42907439:0,0,0 +g1,17060:7579210,42907439 +g1,17060:8211502,42907439 +g1,17060:8527648,42907439 +g1,17060:10108377,42907439 +g1,17060:10424523,42907439 +g1,17060:10740669,42907439 +g1,17060:11056815,42907439 +g1,17060:11372961,42907439 +g1,17060:11689107,42907439 +g1,17060:12005253,42907439 +g1,17060:14850564,42907439 +g1,17060:15166710,42907439 +g1,17060:16747439,42907439 +g1,17060:17063585,42907439 +g1,17060:18644314,42907439 +g1,17060:18960460,42907439 +g1,17060:19276606,42907439 +g1,17060:19592752,42907439 +h1,17060:20225043,42907439:0,0,0 +k1,17060:32583029,42907439:12357986 +g1,17060:32583029,42907439 +) +(1,17060:6630773,43573617:25952256,388497,9436 +h1,17060:6630773,43573617:0,0,0 +g1,17060:7579210,43573617 +g1,17060:8211502,43573617 +g1,17060:8527648,43573617 +g1,17060:10108377,43573617 +g1,17060:10424523,43573617 +g1,17060:10740669,43573617 +g1,17060:11056815,43573617 +g1,17060:11372961,43573617 +g1,17060:11689107,43573617 +g1,17060:12005253,43573617 +g1,17060:14850564,43573617 +g1,17060:15166710,43573617 +g1,17060:16747439,43573617 +g1,17060:17063585,43573617 +g1,17060:18644314,43573617 +g1,17060:18960460,43573617 +g1,17060:19276606,43573617 +g1,17060:19592752,43573617 +h1,17060:20225043,43573617:0,0,0 +k1,17060:32583029,43573617:12357986 +g1,17060:32583029,43573617 +) +(1,17060:6630773,44239795:25952256,388497,9436 +h1,17060:6630773,44239795:0,0,0 +g1,17060:7579210,44239795 +g1,17060:8211502,44239795 +g1,17060:8527648,44239795 +g1,17060:10108377,44239795 +g1,17060:10424523,44239795 +g1,17060:10740669,44239795 +g1,17060:11056815,44239795 +g1,17060:11372961,44239795 +g1,17060:11689107,44239795 +g1,17060:12005253,44239795 +g1,17060:14850564,44239795 +g1,17060:15166710,44239795 +g1,17060:16747439,44239795 +g1,17060:17063585,44239795 +g1,17060:18644314,44239795 +g1,17060:18960460,44239795 +g1,17060:19276606,44239795 +g1,17060:19592752,44239795 +h1,17060:20225043,44239795:0,0,0 +k1,17060:32583029,44239795:12357986 +g1,17060:32583029,44239795 +) +(1,17060:6630773,44905973:25952256,404226,82312 +h1,17060:6630773,44905973:0,0,0 +g1,17060:7579210,44905973 +g1,17060:8211502,44905973 +g1,17060:9476085,44905973 +g1,17060:11056814,44905973 +g1,17060:12953689,44905973 +g1,17060:14534418,44905973 +h1,17060:15799001,44905973:0,0,0 +k1,17060:32583029,44905973:16784028 +g1,17060:32583029,44905973 +) +] +) +g1,17061:32583029,44988285 +g1,17061:6630773,44988285 +g1,17061:6630773,44988285 +g1,17061:32583029,44988285 +g1,17061:32583029,44988285 +) +h1,17061:6630773,45184893: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 +) +] +h1,17065:4262630,4025873:0,0,0 +] +!32615 }330 -Input:2529:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2530:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2531:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2532:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!356 +Input:2526:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2527:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2528:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2529:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!380 {331 -[1,17093:4262630,47279633:28320399,43253760,0 -(1,17093:4262630,4025873:0,0,0 -[1,17093:-473657,4025873:25952256,0,0 -(1,17093:-473657,-710414:25952256,0,0 -h1,17093:-473657,-710414:0,0,0 -(1,17093:-473657,-710414:0,0,0 -(1,17093:-473657,-710414:0,0,0 -g1,17093:-473657,-710414 -(1,17093:-473657,-710414:65781,0,65781 -g1,17093:-407876,-710414 -[1,17093:-407876,-644633:0,0,0 +[1,17126:4262630,47279633:28320399,43253760,0 +(1,17126:4262630,4025873:0,0,0 +[1,17126:-473657,4025873:25952256,0,0 +(1,17126:-473657,-710414:25952256,0,0 +h1,17126:-473657,-710414:0,0,0 +(1,17126:-473657,-710414:0,0,0 +(1,17126:-473657,-710414:0,0,0 +g1,17126:-473657,-710414 +(1,17126:-473657,-710414:65781,0,65781 +g1,17126:-407876,-710414 +[1,17126:-407876,-644633:0,0,0 ] ) -k1,17093:-473657,-710414:-65781 +k1,17126:-473657,-710414:-65781 ) ) -k1,17093:25478599,-710414:25952256 -g1,17093:25478599,-710414 +k1,17126:25478599,-710414:25952256 +g1,17126:25478599,-710414 ) ] ) -[1,17093:6630773,47279633:25952256,43253760,0 -[1,17093:6630773,4812305:25952256,786432,0 -(1,17093:6630773,4812305:25952256,505283,126483 -(1,17093:6630773,4812305:25952256,505283,126483 -g1,17093:3078558,4812305 -[1,17093:3078558,4812305:0,0,0 -(1,17093:3078558,2439708:0,1703936,0 -k1,17093:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17093:2537886,2439708:1179648,16384,0 +[1,17126:6630773,47279633:25952256,43253760,0 +[1,17126:6630773,4812305:25952256,786432,0 +(1,17126:6630773,4812305:25952256,505283,126483 +(1,17126:6630773,4812305:25952256,505283,126483 +g1,17126:3078558,4812305 +[1,17126:3078558,4812305:0,0,0 +(1,17126:3078558,2439708:0,1703936,0 +k1,17126:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17126:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17093:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17126:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17093:3078558,4812305:0,0,0 -(1,17093:3078558,2439708:0,1703936,0 -g1,17093:29030814,2439708 -g1,17093:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17093:36151628,1915420:16384,1179648,0 +[1,17126:3078558,4812305:0,0,0 +(1,17126:3078558,2439708:0,1703936,0 +g1,17126:29030814,2439708 +g1,17126:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17126:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17093:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17126:37855564,2439708:1179648,16384,0 ) ) -k1,17093:3078556,2439708:-34777008 +k1,17126:3078556,2439708:-34777008 ) ] -[1,17093:3078558,4812305:0,0,0 -(1,17093:3078558,49800853:0,16384,2228224 -k1,17093:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17093:2537886,49800853:1179648,16384,0 +[1,17126:3078558,4812305:0,0,0 +(1,17126:3078558,49800853:0,16384,2228224 +k1,17126:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17126:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17093:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17126:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,17093:3078558,4812305:0,0,0 -(1,17093:3078558,49800853:0,16384,2228224 -g1,17093:29030814,49800853 -g1,17093:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17093:36151628,51504789:16384,1179648,0 +[1,17126:3078558,4812305:0,0,0 +(1,17126:3078558,49800853:0,16384,2228224 +g1,17126:29030814,49800853 +g1,17126:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17126:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17093:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17126:37855564,49800853:1179648,16384,0 ) ) -k1,17093:3078556,49800853:-34777008 +k1,17126:3078556,49800853:-34777008 ) ] -g1,17093:6630773,4812305 -k1,17093:25146660,4812305:17320510 -g1,17093:26880087,4812305 -g1,17093:29193507,4812305 -g1,17093:30603186,4812305 +g1,17126:6630773,4812305 +k1,17126:25146660,4812305:17320510 +g1,17126:26880087,4812305 +g1,17126:29193507,4812305 +g1,17126:30603186,4812305 ) ) ] -[1,17093:6630773,45706769:25952256,40108032,0 -(1,17093:6630773,45706769:25952256,40108032,0 -(1,17093:6630773,45706769:0,0,0 -g1,17093:6630773,45706769 +[1,17126:6630773,45706769:25952256,40108032,0 +(1,17126:6630773,45706769:25952256,40108032,0 +(1,17126:6630773,45706769:0,0,0 +g1,17126:6630773,45706769 ) -[1,17093:6630773,45706769:25952256,40108032,0 -v1,17033:6630773,6254097:0,393216,0 -(1,17033:6630773,8540129:25952256,2679248,616038 -g1,17033:6630773,8540129 -(1,17033:6630773,8540129:25952256,2679248,616038 -(1,17033:6630773,9156167:25952256,3295286,0 -[1,17033:6630773,9156167:25952256,3295286,0 -(1,17033:6630773,9129953:25952256,3242858,0 -r1,17033:6656987,9129953:26214,3242858,0 -[1,17033:6656987,9129953:25899828,3242858,0 -(1,17033:6656987,8540129:25899828,2063210,0 -[1,17033:7246811,8540129:24720180,2063210,0 -(1,17033:7246811,7564293:24720180,1087374,134348 -k1,17032:8657003,7564293:200489 -k1,17032:11196472,7564293:200489 -k1,17032:12056253,7564293:200489 -k1,17032:15450967,7564293:200489 -k1,17032:17040819,7564293:200489 -k1,17032:18188958,7564293:200488 -k1,17032:19546157,7564293:200489 -k1,17032:22776375,7564293:200489 -k1,17032:25009791,7564293:200489 -k1,17032:28173163,7564293:200489 -k1,17032:30577628,7564293:200489 -k1,17032:31966991,7564293:0 -) -(1,17033:7246811,8405781:24720180,513147,134348 -g1,17032:9478967,8405781 -g1,17032:13038227,8405781 -g1,17032:14185107,8405781 -g1,17032:15541046,8405781 -g1,17032:18199186,8405781 -g1,17032:19804818,8405781 -g1,17032:21023132,8405781 -k1,17033:31966991,8405781:8284408 -g1,17033:31966991,8405781 -) -] -) -] -r1,17033:32583029,9129953:26214,3242858,0 -) -] -) -) -g1,17033:32583029,8540129 -) -h1,17033:6630773,9156167:0,0,0 -(1,17036:6630773,12427809:25952256,32768,229376 -(1,17036:6630773,12427809:0,32768,229376 -(1,17036:6630773,12427809:5505024,32768,229376 -r1,17036:12135797,12427809:5505024,262144,229376 -) -k1,17036:6630773,12427809:-5505024 -) -(1,17036:6630773,12427809:25952256,32768,0 -r1,17036:32583029,12427809:25952256,32768,0 -) -) -(1,17036:6630773,14032137:25952256,606339,151780 -(1,17036:6630773,14032137:2464678,582746,14155 -g1,17036:6630773,14032137 -g1,17036:9095451,14032137 -) -g1,17036:13112546,14032137 -g1,17036:16222098,14032137 -k1,17036:32583029,14032137:14667743 -g1,17036:32583029,14032137 -) -(1,17040:6630773,15266841:25952256,513147,126483 -k1,17039:8593113,15266841:266924 -k1,17039:9519328,15266841:266923 -k1,17039:10805337,15266841:266924 -k1,17039:14098058,15266841:266924 -k1,17039:17455005,15266841:266924 -k1,17039:19577252,15266841:266923 -k1,17039:21892176,15266841:266924 -k1,17039:22929803,15266841:266924 -k1,17039:24477887,15266841:266855 -k1,17039:27238456,15266841:266924 -k1,17039:28121418,15266841:266924 -k1,17039:30050990,15266841:266924 -k1,17039:30977205,15266841:266923 -k1,17039:31599989,15266841:266924 -k1,17039:32583029,15266841:0 -) -(1,17040:6630773,16108329:25952256,513147,134348 -k1,17039:8781724,16108329:239266 -k1,17039:13367992,16108329:239265 -k1,17039:14920600,16108329:239266 -k1,17039:16264148,16108329:239266 -k1,17039:17251179,16108329:239265 -k1,17039:18902746,16108329:239266 -k1,17039:21962681,16108329:239265 -k1,17039:24662169,16108329:239266 -k1,17039:27019559,16108329:239266 -k1,17039:27910252,16108329:239265 -k1,17039:29455651,16108329:239266 -k1,17039:32583029,16108329:0 -) -(1,17040:6630773,16949817:25952256,513147,126483 -k1,17039:8075536,16949817:253318 -k1,17039:9719529,16949817:253319 -k1,17039:10328707,16949817:253318 -k1,17039:12091975,16949817:253318 -k1,17039:12961332,16949817:253319 -k1,17039:14233735,16949817:253318 -k1,17039:15981274,16949817:253318 -k1,17039:17217633,16949817:253319 -k1,17039:19890540,16949817:253318 -k1,17039:21524702,16949817:253318 -k1,17039:22882303,16949817:253319 -k1,17039:23883387,16949817:253318 -k1,17039:26287597,16949817:253318 -k1,17039:29648633,16949817:253319 -k1,17039:31599989,16949817:253318 -k1,17039:32583029,16949817:0 -) -(1,17040:6630773,17791305:25952256,505283,134348 -k1,17039:8903343,17791305:204254 -k1,17039:10099157,17791305:204254 -k1,17039:13456348,17791305:204254 -k1,17039:15670591,17791305:204254 -k1,17039:16230705,17791305:204254 -k1,17039:18439705,17791305:204254 -k1,17039:21578660,17791305:204253 -k1,17039:22939624,17791305:204254 -k1,17039:25324261,17791305:204254 -k1,17039:27431681,17791305:204254 -k1,17039:30743652,17791305:204254 -k1,17039:31563944,17791305:204254 -k1,17039:32583029,17791305:0 -) -(1,17040:6630773,18632793:25952256,513147,134348 -k1,17039:8282608,18632793:284754 -k1,17039:9226654,18632793:284754 -k1,17039:11800581,18632793:284754 -k1,17039:13662786,18632793:284753 -k1,17039:14598968,18632793:284754 -k1,17039:16859632,18632793:284754 -k1,17039:19349017,18632793:284754 -k1,17039:22984627,18632793:284754 -k1,17039:27387008,18632793:284754 -k1,17039:28690846,18632793:284753 -k1,17039:30629073,18632793:284754 -k1,17039:31896867,18632793:284754 -k1,17039:32583029,18632793:0 -) -(1,17040:6630773,19474281:25952256,513147,126483 -k1,17039:8091374,19474281:257360 -k1,17039:12693770,19474281:257359 -k1,17039:15900250,19474281:257360 -k1,17039:18773151,19474281:257359 -k1,17039:20916637,19474281:257360 -k1,17039:22365442,19474281:257360 -k1,17039:25595514,19474281:257359 -k1,17039:26662244,19474281:257360 -k1,17039:27938688,19474281:257359 -k1,17039:30450487,19474281:257360 -k1,17039:32583029,19474281:0 -) -(1,17040:6630773,20315769:25952256,513147,126483 -k1,17039:9426976,20315769:267824 -k1,17039:10354092,20315769:267824 -k1,17039:11998826,20315769:267823 -k1,17039:13364378,20315769:267824 -k1,17039:14938335,20315769:267824 -k1,17039:17867576,20315769:267824 -k1,17039:19878002,20315769:267824 -k1,17039:20501685,20315769:267823 -k1,17039:22485897,20315769:267824 -k1,17039:23736761,20315769:267824 -k1,17039:25572206,20315769:267824 -k1,17039:26821104,20315769:267824 -k1,17039:28419308,20315769:267823 -k1,17039:29955909,20315769:267824 -k1,17039:31533142,20315769:267824 -k1,17039:32583029,20315769:0 -) -(1,17040:6630773,21157257:25952256,513147,134348 -k1,17039:9175536,21157257:266076 -h1,17039:10146124,21157257:0,0,0 -k1,17039:10412200,21157257:266076 -k1,17039:11487646,21157257:266076 -k1,17039:13251875,21157257:266076 -h1,17039:14447252,21157257:0,0,0 -k1,17039:14713328,21157257:266076 -k1,17039:15927055,21157257:266076 -k1,17039:18310599,21157257:266076 -k1,17039:19386045,21157257:266076 -k1,17039:20671206,21157257:266076 -k1,17039:22029767,21157257:266076 -k1,17039:22955135,21157257:266076 -k1,17039:24917938,21157257:266076 -k1,17039:26375459,21157257:266076 -k1,17039:28343505,21157257:266076 -k1,17039:31635378,21157257:266076 -k1,17039:32583029,21157257:0 -) -(1,17040:6630773,21998745:25952256,513147,134348 -g1,17039:9232552,21998745 -g1,17039:10657960,21998745 -k1,17040:32583028,21998745:20438056 -g1,17040:32583028,21998745 -) -v1,17042:6630773,23128998:0,393216,0 -(1,17061:6630773,30131232:25952256,7395450,196608 -g1,17061:6630773,30131232 -g1,17061:6630773,30131232 -g1,17061:6434165,30131232 -(1,17061:6434165,30131232:0,7395450,196608 -r1,17061:32779637,30131232:26345472,7592058,196608 -k1,17061:6434165,30131232:-26345472 -) -(1,17061:6434165,30131232:26345472,7395450,196608 -[1,17061:6630773,30131232:25952256,7198842,0 -(1,17044:6630773,23342908:25952256,410518,107478 -(1,17043:6630773,23342908:0,0,0 -g1,17043:6630773,23342908 -g1,17043:6630773,23342908 -g1,17043:6303093,23342908 -(1,17043:6303093,23342908:0,0,0 -) -g1,17043:6630773,23342908 -) -g1,17044:9792230,23342908 -k1,17044:9792230,23342908:0 -h1,17044:10424522,23342908:0,0,0 -k1,17044:32583030,23342908:22158508 -g1,17044:32583030,23342908 -) -(1,17045:6630773,24009086:25952256,410518,107478 -h1,17045:6630773,24009086:0,0,0 -g1,17045:6946919,24009086 -g1,17045:7263065,24009086 -g1,17045:7579211,24009086 -g1,17045:7895357,24009086 -g1,17045:8211503,24009086 -g1,17045:8527649,24009086 -g1,17045:13269835,24009086 -g1,17045:13902127,24009086 -k1,17045:13902127,24009086:0 -h1,17045:29393265,24009086:0,0,0 -k1,17045:32583029,24009086:3189764 -g1,17045:32583029,24009086 -) -(1,17046:6630773,24675264:25952256,404226,82312 -h1,17046:6630773,24675264:0,0,0 -g1,17046:6946919,24675264 -g1,17046:7263065,24675264 -g1,17046:7579211,24675264 -g1,17046:7895357,24675264 -g1,17046:8211503,24675264 -g1,17046:8527649,24675264 -g1,17046:8843795,24675264 -g1,17046:9159941,24675264 -g1,17046:9476087,24675264 -g1,17046:9792233,24675264 -g1,17046:10108379,24675264 -g1,17046:10424525,24675264 -g1,17046:10740671,24675264 -g1,17046:11056817,24675264 -g1,17046:11372963,24675264 -g1,17046:11689109,24675264 -g1,17046:13902129,24675264 -g1,17046:14534421,24675264 -k1,17046:14534421,24675264:0 -h1,17046:16431295,24675264:0,0,0 -k1,17046:32583029,24675264:16151734 -g1,17046:32583029,24675264 -) -(1,17047:6630773,25341442:25952256,404226,101187 -h1,17047:6630773,25341442:0,0,0 -g1,17047:6946919,25341442 -g1,17047:7263065,25341442 -g1,17047:7579211,25341442 -g1,17047:7895357,25341442 -g1,17047:8211503,25341442 -g1,17047:8527649,25341442 -g1,17047:8843795,25341442 -g1,17047:9159941,25341442 -g1,17047:9476087,25341442 -g1,17047:9792233,25341442 -g1,17047:10108379,25341442 -g1,17047:10424525,25341442 -g1,17047:10740671,25341442 -g1,17047:11056817,25341442 -g1,17047:11372963,25341442 -g1,17047:11689109,25341442 -g1,17047:14850566,25341442 -g1,17047:15482858,25341442 -g1,17047:18644316,25341442 -h1,17047:23386501,25341442:0,0,0 -k1,17047:32583029,25341442:9196528 -g1,17047:32583029,25341442 -) -(1,17048:6630773,26007620:25952256,410518,107478 -h1,17048:6630773,26007620:0,0,0 -g1,17048:12321396,26007620 -h1,17048:14218270,26007620:0,0,0 -k1,17048:32583030,26007620:18364760 -g1,17048:32583030,26007620 -) -(1,17053:6630773,26739334:25952256,404226,101187 -(1,17050:6630773,26739334:0,0,0 -g1,17050:6630773,26739334 -g1,17050:6630773,26739334 -g1,17050:6303093,26739334 -(1,17050:6303093,26739334:0,0,0 -) -g1,17050:6630773,26739334 -) -g1,17053:7579210,26739334 -g1,17053:7895356,26739334 -g1,17053:8211502,26739334 -g1,17053:8527648,26739334 -g1,17053:8843794,26739334 -g1,17053:9159940,26739334 -g1,17053:9476086,26739334 -g1,17053:9792232,26739334 -g1,17053:11372961,26739334 -h1,17053:14850563,26739334:0,0,0 -k1,17053:32583029,26739334:17732466 -g1,17053:32583029,26739334 -) -(1,17053:6630773,27405512:25952256,410518,6290 -h1,17053:6630773,27405512:0,0,0 -g1,17053:7579210,27405512 -g1,17053:7895356,27405512 -g1,17053:8211502,27405512 -g1,17053:8527648,27405512 -g1,17053:11372959,27405512 -g1,17053:11689105,27405512 -g1,17053:12005251,27405512 -h1,17053:14850562,27405512:0,0,0 -k1,17053:32583030,27405512:17732468 -g1,17053:32583030,27405512 -) -(1,17055:6630773,28727050:25952256,410518,107478 -(1,17054:6630773,28727050:0,0,0 -g1,17054:6630773,28727050 -g1,17054:6630773,28727050 -g1,17054:6303093,28727050 -(1,17054:6303093,28727050:0,0,0 -) -g1,17054:6630773,28727050 -) -k1,17055:6630773,28727050:0 -g1,17055:12321396,28727050 -h1,17055:13902124,28727050:0,0,0 -k1,17055:32583028,28727050:18680904 -g1,17055:32583028,28727050 -) -(1,17060:6630773,29458764:25952256,404226,101187 -(1,17057:6630773,29458764:0,0,0 -g1,17057:6630773,29458764 -g1,17057:6630773,29458764 -g1,17057:6303093,29458764 -(1,17057:6303093,29458764:0,0,0 -) -g1,17057:6630773,29458764 -) -g1,17060:7579210,29458764 -g1,17060:7895356,29458764 -g1,17060:8211502,29458764 -g1,17060:8527648,29458764 -g1,17060:8843794,29458764 -g1,17060:9159940,29458764 -g1,17060:9476086,29458764 -g1,17060:9792232,29458764 -g1,17060:11372961,29458764 -h1,17060:14850563,29458764:0,0,0 -k1,17060:32583029,29458764:17732466 -g1,17060:32583029,29458764 -) -(1,17060:6630773,30124942:25952256,404226,6290 -h1,17060:6630773,30124942:0,0,0 -g1,17060:7579210,30124942 -g1,17060:7895356,30124942 -g1,17060:8211502,30124942 -g1,17060:11372959,30124942 -g1,17060:11689105,30124942 -g1,17060:12005251,30124942 -h1,17060:14850562,30124942:0,0,0 -k1,17060:32583030,30124942:17732468 -g1,17060:32583030,30124942 -) -] -) -g1,17061:32583029,30131232 -g1,17061:6630773,30131232 -g1,17061:6630773,30131232 -g1,17061:32583029,30131232 -g1,17061:32583029,30131232 -) -h1,17061:6630773,30327840:0,0,0 -v1,17065:6630773,31922167:0,393216,0 -(1,17089:6630773,43363111:25952256,11834160,196608 -g1,17089:6630773,43363111 -g1,17089:6630773,43363111 -g1,17089:6434165,43363111 -(1,17089:6434165,43363111:0,11834160,196608 -r1,17089:32779637,43363111:26345472,12030768,196608 -k1,17089:6434165,43363111:-26345472 -) -(1,17089:6434165,43363111:26345472,11834160,196608 -[1,17089:6630773,43363111:25952256,11637552,0 -(1,17067:6630773,32129785:25952256,404226,107478 -(1,17066:6630773,32129785:0,0,0 -g1,17066:6630773,32129785 -g1,17066:6630773,32129785 -g1,17066:6303093,32129785 -(1,17066:6303093,32129785:0,0,0 -) -g1,17066:6630773,32129785 -) -g1,17067:9792230,32129785 -k1,17067:9792230,32129785:0 -h1,17067:10424522,32129785:0,0,0 -k1,17067:32583030,32129785:22158508 -g1,17067:32583030,32129785 -) -(1,17068:6630773,32795963:25952256,410518,107478 -h1,17068:6630773,32795963:0,0,0 -g1,17068:6946919,32795963 -g1,17068:7263065,32795963 -g1,17068:7579211,32795963 -g1,17068:7895357,32795963 -g1,17068:12637543,32795963 -g1,17068:13269835,32795963 -k1,17068:13269835,32795963:0 -h1,17068:28760973,32795963:0,0,0 -k1,17068:32583029,32795963:3822056 -g1,17068:32583029,32795963 -) -(1,17069:6630773,33462141:25952256,404226,101187 -h1,17069:6630773,33462141:0,0,0 -g1,17069:6946919,33462141 -g1,17069:7263065,33462141 -g1,17069:7579211,33462141 -g1,17069:7895357,33462141 -g1,17069:8211503,33462141 -g1,17069:8527649,33462141 -g1,17069:8843795,33462141 -g1,17069:9159941,33462141 -g1,17069:9476087,33462141 -g1,17069:9792233,33462141 -g1,17069:10108379,33462141 -g1,17069:10424525,33462141 -g1,17069:10740671,33462141 -g1,17069:11056817,33462141 -g1,17069:14218274,33462141 -g1,17069:14850566,33462141 -g1,17069:18012024,33462141 -h1,17069:22754209,33462141:0,0,0 -k1,17069:32583029,33462141:9828820 -g1,17069:32583029,33462141 -) -(1,17074:6630773,34783679:25952256,410518,107478 -k1,17073:7536068,34783679:273004 -k1,17073:9389801,34783679:273005 -k1,17073:10611242,34783679:273004 -k1,17073:11516537,34783679:273004 -k1,17073:14002562,34783679:273005 -k1,17073:15224003,34783679:273004 -k1,17073:16445444,34783679:273004 -k1,17073:17350740,34783679:273005 -k1,17073:20152909,34783679:273004 -k1,17073:22006642,34783679:273005 -k1,17073:23228083,34783679:273004 -k1,17073:27294835,34783679:273004 -k1,17073:28516277,34783679:273005 -k1,17073:30053864,34783679:273004 -k1,17074:32583029,34783679:0 -k1,17074:32583029,34783679:0 -) -(1,17075:6630773,35449857:25952256,410518,101187 -g1,17075:7579210,35449857 -g1,17075:9792230,35449857 -g1,17075:11372959,35449857 -g1,17075:13585979,35449857 -k1,17075:32583029,35449857:14571010 -g1,17075:32583029,35449857 -) -(1,17075:6630773,36116035:25952256,404226,76021 -g1,17075:7579210,36116035 -k1,17075:32583030,36116035:23423092 -g1,17075:32583030,36116035 -) -(1,17075:6630773,36782213:25952256,404226,82312 -g1,17075:7579210,36782213 -g1,17075:7895356,36782213 -g1,17075:9476085,36782213 -g1,17075:10108377,36782213 -k1,17075:32583028,36782213:17416320 -g1,17075:32583028,36782213 -) -(1,17075:6630773,37448391:25952256,404226,101187 -g1,17075:7579210,37448391 -g1,17075:7895356,37448391 -g1,17075:11689104,37448391 -g1,17075:12321396,37448391 -k1,17075:32583029,37448391:16467885 -g1,17075:32583029,37448391 -) -(1,17075:6630773,38114569:25952256,404226,76021 -g1,17075:7579210,38114569 -k1,17075:32583028,38114569:24687672 -g1,17075:32583028,38114569 -) -(1,17076:6630773,39305035:25952256,404226,107478 -(1,17075:6630773,39305035:0,0,0 -g1,17075:6630773,39305035 -g1,17075:6630773,39305035 -g1,17075:6303093,39305035 -(1,17075:6303093,39305035:0,0,0 -) -g1,17075:6630773,39305035 -) -k1,17076:6630773,39305035:0 -g1,17076:12321396,39305035 -h1,17076:14218270,39305035:0,0,0 -k1,17076:32583030,39305035:18364760 -g1,17076:32583030,39305035 -) -(1,17081:6630773,39971213:25952256,404226,101187 -(1,17078:6630773,39971213:0,0,0 -g1,17078:6630773,39971213 -g1,17078:6630773,39971213 -g1,17078:6303093,39971213 -(1,17078:6303093,39971213:0,0,0 -) -g1,17078:6630773,39971213 -) -g1,17081:7579210,39971213 -g1,17081:7895356,39971213 -g1,17081:8211502,39971213 -g1,17081:8527648,39971213 -g1,17081:8843794,39971213 -g1,17081:9159940,39971213 -g1,17081:9476086,39971213 -g1,17081:9792232,39971213 -g1,17081:11372961,39971213 -h1,17081:14850563,39971213:0,0,0 -k1,17081:32583029,39971213:17732466 -g1,17081:32583029,39971213 -) -(1,17081:6630773,40637391:25952256,404226,6290 -h1,17081:6630773,40637391:0,0,0 -g1,17081:7579210,40637391 -g1,17081:11372958,40637391 -g1,17081:11689104,40637391 -g1,17081:12005250,40637391 -h1,17081:14850561,40637391:0,0,0 -k1,17081:32583029,40637391:17732468 -g1,17081:32583029,40637391 -) -(1,17083:6630773,41958929:25952256,404226,107478 -(1,17082:6630773,41958929:0,0,0 -g1,17082:6630773,41958929 -g1,17082:6630773,41958929 -g1,17082:6303093,41958929 -(1,17082:6303093,41958929:0,0,0 -) -g1,17082:6630773,41958929 -) -k1,17083:6630773,41958929:0 -g1,17083:12321396,41958929 -h1,17083:13902124,41958929:0,0,0 -k1,17083:32583028,41958929:18680904 -g1,17083:32583028,41958929 -) -(1,17088:6630773,42690643:25952256,404226,101187 -(1,17085:6630773,42690643:0,0,0 -g1,17085:6630773,42690643 -g1,17085:6630773,42690643 -g1,17085:6303093,42690643 -(1,17085:6303093,42690643:0,0,0 -) -g1,17085:6630773,42690643 -) -g1,17088:7579210,42690643 -g1,17088:7895356,42690643 -g1,17088:8211502,42690643 -g1,17088:8527648,42690643 -g1,17088:8843794,42690643 -g1,17088:9159940,42690643 -g1,17088:9476086,42690643 -g1,17088:9792232,42690643 -g1,17088:11372961,42690643 -h1,17088:14850563,42690643:0,0,0 -k1,17088:32583029,42690643:17732466 -g1,17088:32583029,42690643 -) -(1,17088:6630773,43356821:25952256,404226,6290 -h1,17088:6630773,43356821:0,0,0 -g1,17088:7579210,43356821 -g1,17088:11372958,43356821 -g1,17088:11689104,43356821 -g1,17088:12005250,43356821 -h1,17088:14850561,43356821:0,0,0 -k1,17088:32583029,43356821:17732468 -g1,17088:32583029,43356821 -) -] -) -g1,17089:32583029,43363111 -g1,17089:6630773,43363111 -g1,17089:6630773,43363111 -g1,17089:32583029,43363111 -g1,17089:32583029,43363111 -) -h1,17089:6630773,43559719:0,0,0 -(1,17093:6630773,44865281:25952256,513147,134348 -h1,17092:6630773,44865281:983040,0,0 -k1,17092:9604906,44865281:216378 -k1,17092:12847081,44865281:216378 -k1,17092:13679497,44865281:216378 -k1,17092:16476027,44865281:216378 -k1,17092:18715501,44865281:216378 -k1,17092:21458293,44865281:216379 -k1,17092:22693756,44865281:216378 -k1,17092:24002619,44865281:216378 -k1,17092:24878289,44865281:216378 -k1,17092:26879868,44865281:216378 -k1,17092:28840159,44865281:216378 -k1,17092:29672575,44865281:216378 -k1,17092:32583029,44865281:0 -) -(1,17093:6630773,45706769:25952256,513147,126483 -k1,17092:9126757,45706769:149796 -k1,17092:10467999,45706769:149797 -k1,17092:12291584,45706769:149796 -k1,17092:13256649,45706769:149797 -k1,17092:14646386,45706769:149796 -k1,17092:19316857,45706769:149797 -k1,17092:20335005,45706769:149796 -k1,17092:22015067,45706769:149796 -k1,17092:22816292,45706769:149797 -k1,17092:24272221,45706769:149796 -k1,17092:27549396,45706769:149797 -k1,17092:28718277,45706769:149796 -k1,17092:29851114,45706769:149797 -k1,17092:31192355,45706769:149796 -k1,17092:32583029,45706769:0 -) -] -(1,17093:32583029,45706769:0,0,0 -g1,17093:32583029,45706769 -) -) -] -(1,17093:6630773,47279633:25952256,0,0 -h1,17093:6630773,47279633:25952256,0,0 -) -] -h1,17093:4262630,4025873:0,0,0 +[1,17126:6630773,45706769:25952256,40108032,0 +v1,17065:6630773,6254097:0,393216,0 +(1,17066:6630773,8540129:25952256,2679248,616038 +g1,17066:6630773,8540129 +(1,17066:6630773,8540129:25952256,2679248,616038 +(1,17066:6630773,9156167:25952256,3295286,0 +[1,17066:6630773,9156167:25952256,3295286,0 +(1,17066:6630773,9129953:25952256,3242858,0 +r1,17066:6656987,9129953:26214,3242858,0 +[1,17066:6656987,9129953:25899828,3242858,0 +(1,17066:6656987,8540129:25899828,2063210,0 +[1,17066:7246811,8540129:24720180,2063210,0 +(1,17066:7246811,7564293:24720180,1087374,134348 +k1,17065:8657003,7564293:200489 +k1,17065:11196472,7564293:200489 +k1,17065:12056253,7564293:200489 +k1,17065:15450967,7564293:200489 +k1,17065:17040819,7564293:200489 +k1,17065:18188958,7564293:200488 +k1,17065:19546157,7564293:200489 +k1,17065:22776375,7564293:200489 +k1,17065:25009791,7564293:200489 +k1,17065:28173163,7564293:200489 +k1,17065:30577628,7564293:200489 +k1,17065:31966991,7564293:0 +) +(1,17066:7246811,8405781:24720180,513147,134348 +g1,17065:9478967,8405781 +g1,17065:13038227,8405781 +g1,17065:14185107,8405781 +g1,17065:15541046,8405781 +g1,17065:18199186,8405781 +g1,17065:19804818,8405781 +g1,17065:21023132,8405781 +k1,17066:31966991,8405781:8284408 +g1,17066:31966991,8405781 +) +] +) +] +r1,17066:32583029,9129953:26214,3242858,0 +) +] +) +) +g1,17066:32583029,8540129 +) +h1,17066:6630773,9156167:0,0,0 +(1,17069:6630773,12427809:25952256,32768,229376 +(1,17069:6630773,12427809:0,32768,229376 +(1,17069:6630773,12427809:5505024,32768,229376 +r1,17069:12135797,12427809:5505024,262144,229376 +) +k1,17069:6630773,12427809:-5505024 +) +(1,17069:6630773,12427809:25952256,32768,0 +r1,17069:32583029,12427809:25952256,32768,0 +) +) +(1,17069:6630773,14032137:25952256,606339,151780 +(1,17069:6630773,14032137:2464678,582746,14155 +g1,17069:6630773,14032137 +g1,17069:9095451,14032137 +) +g1,17069:13112546,14032137 +g1,17069:16222098,14032137 +k1,17069:32583029,14032137:14667743 +g1,17069:32583029,14032137 +) +(1,17073:6630773,15266841:25952256,513147,126483 +k1,17072:8593113,15266841:266924 +k1,17072:9519328,15266841:266923 +k1,17072:10805337,15266841:266924 +k1,17072:14098058,15266841:266924 +k1,17072:17455005,15266841:266924 +k1,17072:19577252,15266841:266923 +k1,17072:21892176,15266841:266924 +k1,17072:22929803,15266841:266924 +k1,17072:24477887,15266841:266855 +k1,17072:27238456,15266841:266924 +k1,17072:28121418,15266841:266924 +k1,17072:30050990,15266841:266924 +k1,17072:30977205,15266841:266923 +k1,17072:31599989,15266841:266924 +k1,17072:32583029,15266841:0 +) +(1,17073:6630773,16108329:25952256,513147,134348 +k1,17072:8781724,16108329:239266 +k1,17072:13367992,16108329:239265 +k1,17072:14920600,16108329:239266 +k1,17072:16264148,16108329:239266 +k1,17072:17251179,16108329:239265 +k1,17072:18902746,16108329:239266 +k1,17072:21962681,16108329:239265 +k1,17072:24662169,16108329:239266 +k1,17072:27019559,16108329:239266 +k1,17072:27910252,16108329:239265 +k1,17072:29455651,16108329:239266 +k1,17072:32583029,16108329:0 +) +(1,17073:6630773,16949817:25952256,513147,126483 +k1,17072:8075536,16949817:253318 +k1,17072:9719529,16949817:253319 +k1,17072:10328707,16949817:253318 +k1,17072:12091975,16949817:253318 +k1,17072:12961332,16949817:253319 +k1,17072:14233735,16949817:253318 +k1,17072:15981274,16949817:253318 +k1,17072:17217633,16949817:253319 +k1,17072:19890540,16949817:253318 +k1,17072:21524702,16949817:253318 +k1,17072:22882303,16949817:253319 +k1,17072:23883387,16949817:253318 +k1,17072:26287597,16949817:253318 +k1,17072:29648633,16949817:253319 +k1,17072:31599989,16949817:253318 +k1,17072:32583029,16949817:0 +) +(1,17073:6630773,17791305:25952256,505283,134348 +k1,17072:8903343,17791305:204254 +k1,17072:10099157,17791305:204254 +k1,17072:13456348,17791305:204254 +k1,17072:15670591,17791305:204254 +k1,17072:16230705,17791305:204254 +k1,17072:18439705,17791305:204254 +k1,17072:21578660,17791305:204253 +k1,17072:22939624,17791305:204254 +k1,17072:25324261,17791305:204254 +k1,17072:27431681,17791305:204254 +k1,17072:30743652,17791305:204254 +k1,17072:31563944,17791305:204254 +k1,17072:32583029,17791305:0 +) +(1,17073:6630773,18632793:25952256,513147,134348 +k1,17072:8282608,18632793:284754 +k1,17072:9226654,18632793:284754 +k1,17072:11800581,18632793:284754 +k1,17072:13662786,18632793:284753 +k1,17072:14598968,18632793:284754 +k1,17072:16859632,18632793:284754 +k1,17072:19349017,18632793:284754 +k1,17072:22984627,18632793:284754 +k1,17072:27387008,18632793:284754 +k1,17072:28690846,18632793:284753 +k1,17072:30629073,18632793:284754 +k1,17072:31896867,18632793:284754 +k1,17072:32583029,18632793:0 +) +(1,17073:6630773,19474281:25952256,513147,126483 +k1,17072:8091374,19474281:257360 +k1,17072:12693770,19474281:257359 +k1,17072:15900250,19474281:257360 +k1,17072:18773151,19474281:257359 +k1,17072:20916637,19474281:257360 +k1,17072:22365442,19474281:257360 +k1,17072:25595514,19474281:257359 +k1,17072:26662244,19474281:257360 +k1,17072:27938688,19474281:257359 +k1,17072:30450487,19474281:257360 +k1,17072:32583029,19474281:0 +) +(1,17073:6630773,20315769:25952256,513147,126483 +k1,17072:9426976,20315769:267824 +k1,17072:10354092,20315769:267824 +k1,17072:11998826,20315769:267823 +k1,17072:13364378,20315769:267824 +k1,17072:14938335,20315769:267824 +k1,17072:17867576,20315769:267824 +k1,17072:19878002,20315769:267824 +k1,17072:20501685,20315769:267823 +k1,17072:22485897,20315769:267824 +k1,17072:23736761,20315769:267824 +k1,17072:25572206,20315769:267824 +k1,17072:26821104,20315769:267824 +k1,17072:28419308,20315769:267823 +k1,17072:29955909,20315769:267824 +k1,17072:31533142,20315769:267824 +k1,17072:32583029,20315769:0 +) +(1,17073:6630773,21157257:25952256,513147,134348 +k1,17072:9175536,21157257:266076 +h1,17072:10146124,21157257:0,0,0 +k1,17072:10412200,21157257:266076 +k1,17072:11487646,21157257:266076 +k1,17072:13251875,21157257:266076 +h1,17072:14447252,21157257:0,0,0 +k1,17072:14713328,21157257:266076 +k1,17072:15927055,21157257:266076 +k1,17072:18310599,21157257:266076 +k1,17072:19386045,21157257:266076 +k1,17072:20671206,21157257:266076 +k1,17072:22029767,21157257:266076 +k1,17072:22955135,21157257:266076 +k1,17072:24917938,21157257:266076 +k1,17072:26375459,21157257:266076 +k1,17072:28343505,21157257:266076 +k1,17072:31635378,21157257:266076 +k1,17072:32583029,21157257:0 +) +(1,17073:6630773,21998745:25952256,513147,134348 +g1,17072:9232552,21998745 +g1,17072:10657960,21998745 +k1,17073:32583028,21998745:20438056 +g1,17073:32583028,21998745 +) +v1,17075:6630773,23128998:0,393216,0 +(1,17094:6630773,30131232:25952256,7395450,196608 +g1,17094:6630773,30131232 +g1,17094:6630773,30131232 +g1,17094:6434165,30131232 +(1,17094:6434165,30131232:0,7395450,196608 +r1,17094:32779637,30131232:26345472,7592058,196608 +k1,17094:6434165,30131232:-26345472 +) +(1,17094:6434165,30131232:26345472,7395450,196608 +[1,17094:6630773,30131232:25952256,7198842,0 +(1,17077:6630773,23342908:25952256,410518,107478 +(1,17076:6630773,23342908:0,0,0 +g1,17076:6630773,23342908 +g1,17076:6630773,23342908 +g1,17076:6303093,23342908 +(1,17076:6303093,23342908:0,0,0 +) +g1,17076:6630773,23342908 +) +g1,17077:9792230,23342908 +k1,17077:9792230,23342908:0 +h1,17077:10424522,23342908:0,0,0 +k1,17077:32583030,23342908:22158508 +g1,17077:32583030,23342908 +) +(1,17078:6630773,24009086:25952256,410518,107478 +h1,17078:6630773,24009086:0,0,0 +g1,17078:6946919,24009086 +g1,17078:7263065,24009086 +g1,17078:7579211,24009086 +g1,17078:7895357,24009086 +g1,17078:8211503,24009086 +g1,17078:8527649,24009086 +g1,17078:13269835,24009086 +g1,17078:13902127,24009086 +k1,17078:13902127,24009086:0 +h1,17078:29393265,24009086:0,0,0 +k1,17078:32583029,24009086:3189764 +g1,17078:32583029,24009086 +) +(1,17079:6630773,24675264:25952256,404226,82312 +h1,17079:6630773,24675264:0,0,0 +g1,17079:6946919,24675264 +g1,17079:7263065,24675264 +g1,17079:7579211,24675264 +g1,17079:7895357,24675264 +g1,17079:8211503,24675264 +g1,17079:8527649,24675264 +g1,17079:8843795,24675264 +g1,17079:9159941,24675264 +g1,17079:9476087,24675264 +g1,17079:9792233,24675264 +g1,17079:10108379,24675264 +g1,17079:10424525,24675264 +g1,17079:10740671,24675264 +g1,17079:11056817,24675264 +g1,17079:11372963,24675264 +g1,17079:11689109,24675264 +g1,17079:13902129,24675264 +g1,17079:14534421,24675264 +k1,17079:14534421,24675264:0 +h1,17079:16431295,24675264:0,0,0 +k1,17079:32583029,24675264:16151734 +g1,17079:32583029,24675264 +) +(1,17080:6630773,25341442:25952256,404226,101187 +h1,17080:6630773,25341442:0,0,0 +g1,17080:6946919,25341442 +g1,17080:7263065,25341442 +g1,17080:7579211,25341442 +g1,17080:7895357,25341442 +g1,17080:8211503,25341442 +g1,17080:8527649,25341442 +g1,17080:8843795,25341442 +g1,17080:9159941,25341442 +g1,17080:9476087,25341442 +g1,17080:9792233,25341442 +g1,17080:10108379,25341442 +g1,17080:10424525,25341442 +g1,17080:10740671,25341442 +g1,17080:11056817,25341442 +g1,17080:11372963,25341442 +g1,17080:11689109,25341442 +g1,17080:14850566,25341442 +g1,17080:15482858,25341442 +g1,17080:18644316,25341442 +h1,17080:23386501,25341442:0,0,0 +k1,17080:32583029,25341442:9196528 +g1,17080:32583029,25341442 +) +(1,17081:6630773,26007620:25952256,410518,107478 +h1,17081:6630773,26007620:0,0,0 +g1,17081:12321396,26007620 +h1,17081:14218270,26007620:0,0,0 +k1,17081:32583030,26007620:18364760 +g1,17081:32583030,26007620 +) +(1,17086:6630773,26739334:25952256,404226,101187 +(1,17083:6630773,26739334:0,0,0 +g1,17083:6630773,26739334 +g1,17083:6630773,26739334 +g1,17083:6303093,26739334 +(1,17083:6303093,26739334:0,0,0 +) +g1,17083:6630773,26739334 +) +g1,17086:7579210,26739334 +g1,17086:7895356,26739334 +g1,17086:8211502,26739334 +g1,17086:8527648,26739334 +g1,17086:8843794,26739334 +g1,17086:9159940,26739334 +g1,17086:9476086,26739334 +g1,17086:9792232,26739334 +g1,17086:11372961,26739334 +h1,17086:14850563,26739334:0,0,0 +k1,17086:32583029,26739334:17732466 +g1,17086:32583029,26739334 +) +(1,17086:6630773,27405512:25952256,410518,6290 +h1,17086:6630773,27405512:0,0,0 +g1,17086:7579210,27405512 +g1,17086:7895356,27405512 +g1,17086:8211502,27405512 +g1,17086:8527648,27405512 +g1,17086:11372959,27405512 +g1,17086:11689105,27405512 +g1,17086:12005251,27405512 +h1,17086:14850562,27405512:0,0,0 +k1,17086:32583030,27405512:17732468 +g1,17086:32583030,27405512 +) +(1,17088:6630773,28727050:25952256,410518,107478 +(1,17087:6630773,28727050:0,0,0 +g1,17087:6630773,28727050 +g1,17087:6630773,28727050 +g1,17087:6303093,28727050 +(1,17087:6303093,28727050:0,0,0 +) +g1,17087:6630773,28727050 +) +k1,17088:6630773,28727050:0 +g1,17088:12321396,28727050 +h1,17088:13902124,28727050:0,0,0 +k1,17088:32583028,28727050:18680904 +g1,17088:32583028,28727050 +) +(1,17093:6630773,29458764:25952256,404226,101187 +(1,17090:6630773,29458764:0,0,0 +g1,17090:6630773,29458764 +g1,17090:6630773,29458764 +g1,17090:6303093,29458764 +(1,17090:6303093,29458764:0,0,0 +) +g1,17090:6630773,29458764 +) +g1,17093:7579210,29458764 +g1,17093:7895356,29458764 +g1,17093:8211502,29458764 +g1,17093:8527648,29458764 +g1,17093:8843794,29458764 +g1,17093:9159940,29458764 +g1,17093:9476086,29458764 +g1,17093:9792232,29458764 +g1,17093:11372961,29458764 +h1,17093:14850563,29458764:0,0,0 +k1,17093:32583029,29458764:17732466 +g1,17093:32583029,29458764 +) +(1,17093:6630773,30124942:25952256,404226,6290 +h1,17093:6630773,30124942:0,0,0 +g1,17093:7579210,30124942 +g1,17093:7895356,30124942 +g1,17093:8211502,30124942 +g1,17093:11372959,30124942 +g1,17093:11689105,30124942 +g1,17093:12005251,30124942 +h1,17093:14850562,30124942:0,0,0 +k1,17093:32583030,30124942:17732468 +g1,17093:32583030,30124942 +) +] +) +g1,17094:32583029,30131232 +g1,17094:6630773,30131232 +g1,17094:6630773,30131232 +g1,17094:32583029,30131232 +g1,17094:32583029,30131232 +) +h1,17094:6630773,30327840:0,0,0 +v1,17098:6630773,31922167:0,393216,0 +(1,17122:6630773,43363111:25952256,11834160,196608 +g1,17122:6630773,43363111 +g1,17122:6630773,43363111 +g1,17122:6434165,43363111 +(1,17122:6434165,43363111:0,11834160,196608 +r1,17122:32779637,43363111:26345472,12030768,196608 +k1,17122:6434165,43363111:-26345472 +) +(1,17122:6434165,43363111:26345472,11834160,196608 +[1,17122:6630773,43363111:25952256,11637552,0 +(1,17100:6630773,32129785:25952256,404226,107478 +(1,17099:6630773,32129785:0,0,0 +g1,17099:6630773,32129785 +g1,17099:6630773,32129785 +g1,17099:6303093,32129785 +(1,17099:6303093,32129785:0,0,0 +) +g1,17099:6630773,32129785 +) +g1,17100:9792230,32129785 +k1,17100:9792230,32129785:0 +h1,17100:10424522,32129785:0,0,0 +k1,17100:32583030,32129785:22158508 +g1,17100:32583030,32129785 +) +(1,17101:6630773,32795963:25952256,410518,107478 +h1,17101:6630773,32795963:0,0,0 +g1,17101:6946919,32795963 +g1,17101:7263065,32795963 +g1,17101:7579211,32795963 +g1,17101:7895357,32795963 +g1,17101:12637543,32795963 +g1,17101:13269835,32795963 +k1,17101:13269835,32795963:0 +h1,17101:28760973,32795963:0,0,0 +k1,17101:32583029,32795963:3822056 +g1,17101:32583029,32795963 +) +(1,17102:6630773,33462141:25952256,404226,101187 +h1,17102:6630773,33462141:0,0,0 +g1,17102:6946919,33462141 +g1,17102:7263065,33462141 +g1,17102:7579211,33462141 +g1,17102:7895357,33462141 +g1,17102:8211503,33462141 +g1,17102:8527649,33462141 +g1,17102:8843795,33462141 +g1,17102:9159941,33462141 +g1,17102:9476087,33462141 +g1,17102:9792233,33462141 +g1,17102:10108379,33462141 +g1,17102:10424525,33462141 +g1,17102:10740671,33462141 +g1,17102:11056817,33462141 +g1,17102:14218274,33462141 +g1,17102:14850566,33462141 +g1,17102:18012024,33462141 +h1,17102:22754209,33462141:0,0,0 +k1,17102:32583029,33462141:9828820 +g1,17102:32583029,33462141 +) +(1,17107:6630773,34783679:25952256,410518,107478 +k1,17106:7536068,34783679:273004 +k1,17106:9389801,34783679:273005 +k1,17106:10611242,34783679:273004 +k1,17106:11516537,34783679:273004 +k1,17106:14002562,34783679:273005 +k1,17106:15224003,34783679:273004 +k1,17106:16445444,34783679:273004 +k1,17106:17350740,34783679:273005 +k1,17106:20152909,34783679:273004 +k1,17106:22006642,34783679:273005 +k1,17106:23228083,34783679:273004 +k1,17106:27294835,34783679:273004 +k1,17106:28516277,34783679:273005 +k1,17106:30053864,34783679:273004 +k1,17107:32583029,34783679:0 +k1,17107:32583029,34783679:0 +) +(1,17108:6630773,35449857:25952256,410518,101187 +g1,17108:7579210,35449857 +g1,17108:9792230,35449857 +g1,17108:11372959,35449857 +g1,17108:13585979,35449857 +k1,17108:32583029,35449857:14571010 +g1,17108:32583029,35449857 +) +(1,17108:6630773,36116035:25952256,404226,76021 +g1,17108:7579210,36116035 +k1,17108:32583030,36116035:23423092 +g1,17108:32583030,36116035 +) +(1,17108:6630773,36782213:25952256,404226,82312 +g1,17108:7579210,36782213 +g1,17108:7895356,36782213 +g1,17108:9476085,36782213 +g1,17108:10108377,36782213 +k1,17108:32583028,36782213:17416320 +g1,17108:32583028,36782213 +) +(1,17108:6630773,37448391:25952256,404226,101187 +g1,17108:7579210,37448391 +g1,17108:7895356,37448391 +g1,17108:11689104,37448391 +g1,17108:12321396,37448391 +k1,17108:32583029,37448391:16467885 +g1,17108:32583029,37448391 +) +(1,17108:6630773,38114569:25952256,404226,76021 +g1,17108:7579210,38114569 +k1,17108:32583028,38114569:24687672 +g1,17108:32583028,38114569 +) +(1,17109:6630773,39305035:25952256,404226,107478 +(1,17108:6630773,39305035:0,0,0 +g1,17108:6630773,39305035 +g1,17108:6630773,39305035 +g1,17108:6303093,39305035 +(1,17108:6303093,39305035:0,0,0 +) +g1,17108:6630773,39305035 +) +k1,17109:6630773,39305035:0 +g1,17109:12321396,39305035 +h1,17109:14218270,39305035:0,0,0 +k1,17109:32583030,39305035:18364760 +g1,17109:32583030,39305035 +) +(1,17114:6630773,39971213:25952256,404226,101187 +(1,17111:6630773,39971213:0,0,0 +g1,17111:6630773,39971213 +g1,17111:6630773,39971213 +g1,17111:6303093,39971213 +(1,17111:6303093,39971213:0,0,0 +) +g1,17111:6630773,39971213 +) +g1,17114:7579210,39971213 +g1,17114:7895356,39971213 +g1,17114:8211502,39971213 +g1,17114:8527648,39971213 +g1,17114:8843794,39971213 +g1,17114:9159940,39971213 +g1,17114:9476086,39971213 +g1,17114:9792232,39971213 +g1,17114:11372961,39971213 +h1,17114:14850563,39971213:0,0,0 +k1,17114:32583029,39971213:17732466 +g1,17114:32583029,39971213 +) +(1,17114:6630773,40637391:25952256,404226,6290 +h1,17114:6630773,40637391:0,0,0 +g1,17114:7579210,40637391 +g1,17114:11372958,40637391 +g1,17114:11689104,40637391 +g1,17114:12005250,40637391 +h1,17114:14850561,40637391:0,0,0 +k1,17114:32583029,40637391:17732468 +g1,17114:32583029,40637391 +) +(1,17116:6630773,41958929:25952256,404226,107478 +(1,17115:6630773,41958929:0,0,0 +g1,17115:6630773,41958929 +g1,17115:6630773,41958929 +g1,17115:6303093,41958929 +(1,17115:6303093,41958929:0,0,0 +) +g1,17115:6630773,41958929 +) +k1,17116:6630773,41958929:0 +g1,17116:12321396,41958929 +h1,17116:13902124,41958929:0,0,0 +k1,17116:32583028,41958929:18680904 +g1,17116:32583028,41958929 +) +(1,17121:6630773,42690643:25952256,404226,101187 +(1,17118:6630773,42690643:0,0,0 +g1,17118:6630773,42690643 +g1,17118:6630773,42690643 +g1,17118:6303093,42690643 +(1,17118:6303093,42690643:0,0,0 +) +g1,17118:6630773,42690643 +) +g1,17121:7579210,42690643 +g1,17121:7895356,42690643 +g1,17121:8211502,42690643 +g1,17121:8527648,42690643 +g1,17121:8843794,42690643 +g1,17121:9159940,42690643 +g1,17121:9476086,42690643 +g1,17121:9792232,42690643 +g1,17121:11372961,42690643 +h1,17121:14850563,42690643:0,0,0 +k1,17121:32583029,42690643:17732466 +g1,17121:32583029,42690643 +) +(1,17121:6630773,43356821:25952256,404226,6290 +h1,17121:6630773,43356821:0,0,0 +g1,17121:7579210,43356821 +g1,17121:11372958,43356821 +g1,17121:11689104,43356821 +g1,17121:12005250,43356821 +h1,17121:14850561,43356821:0,0,0 +k1,17121:32583029,43356821:17732468 +g1,17121:32583029,43356821 +) +] +) +g1,17122:32583029,43363111 +g1,17122:6630773,43363111 +g1,17122:6630773,43363111 +g1,17122:32583029,43363111 +g1,17122:32583029,43363111 +) +h1,17122:6630773,43559719:0,0,0 +(1,17126:6630773,44865281:25952256,513147,134348 +h1,17125:6630773,44865281:983040,0,0 +k1,17125:9604906,44865281:216378 +k1,17125:12847081,44865281:216378 +k1,17125:13679497,44865281:216378 +k1,17125:16476027,44865281:216378 +k1,17125:18715501,44865281:216378 +k1,17125:21458293,44865281:216379 +k1,17125:22693756,44865281:216378 +k1,17125:24002619,44865281:216378 +k1,17125:24878289,44865281:216378 +k1,17125:26879868,44865281:216378 +k1,17125:28840159,44865281:216378 +k1,17125:29672575,44865281:216378 +k1,17125:32583029,44865281:0 +) +(1,17126:6630773,45706769:25952256,513147,126483 +k1,17125:9126757,45706769:149796 +k1,17125:10467999,45706769:149797 +k1,17125:12291584,45706769:149796 +k1,17125:13256649,45706769:149797 +k1,17125:14646386,45706769:149796 +k1,17125:19316857,45706769:149797 +k1,17125:20335005,45706769:149796 +k1,17125:22015067,45706769:149796 +k1,17125:22816292,45706769:149797 +k1,17125:24272221,45706769:149796 +k1,17125:27549396,45706769:149797 +k1,17125:28718277,45706769:149796 +k1,17125:29851114,45706769:149797 +k1,17125:31192355,45706769:149796 +k1,17125:32583029,45706769:0 +) +] +(1,17126:32583029,45706769:0,0,0 +g1,17126:32583029,45706769 +) +) +] +(1,17126:6630773,47279633:25952256,0,0 +h1,17126:6630773,47279633:25952256,0,0 +) +] +h1,17126:4262630,4025873:0,0,0 ] !21897 }331 -Input:2533:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:2530:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {332 -[1,17167:4262630,47279633:28320399,43253760,0 -(1,17167:4262630,4025873:0,0,0 -[1,17167:-473657,4025873:25952256,0,0 -(1,17167:-473657,-710414:25952256,0,0 -h1,17167:-473657,-710414:0,0,0 -(1,17167:-473657,-710414:0,0,0 -(1,17167:-473657,-710414:0,0,0 -g1,17167:-473657,-710414 -(1,17167:-473657,-710414:65781,0,65781 -g1,17167:-407876,-710414 -[1,17167:-407876,-644633:0,0,0 +[1,17200:4262630,47279633:28320399,43253760,0 +(1,17200:4262630,4025873:0,0,0 +[1,17200:-473657,4025873:25952256,0,0 +(1,17200:-473657,-710414:25952256,0,0 +h1,17200:-473657,-710414:0,0,0 +(1,17200:-473657,-710414:0,0,0 +(1,17200:-473657,-710414:0,0,0 +g1,17200:-473657,-710414 +(1,17200:-473657,-710414:65781,0,65781 +g1,17200:-407876,-710414 +[1,17200:-407876,-644633:0,0,0 ] ) -k1,17167:-473657,-710414:-65781 +k1,17200:-473657,-710414:-65781 ) ) -k1,17167:25478599,-710414:25952256 -g1,17167:25478599,-710414 +k1,17200:25478599,-710414:25952256 +g1,17200:25478599,-710414 ) ] ) -[1,17167:6630773,47279633:25952256,43253760,0 -[1,17167:6630773,4812305:25952256,786432,0 -(1,17167:6630773,4812305:25952256,505283,126483 -(1,17167:6630773,4812305:25952256,505283,126483 -g1,17167:3078558,4812305 -[1,17167:3078558,4812305:0,0,0 -(1,17167:3078558,2439708:0,1703936,0 -k1,17167:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17167:2537886,2439708:1179648,16384,0 +[1,17200:6630773,47279633:25952256,43253760,0 +[1,17200:6630773,4812305:25952256,786432,0 +(1,17200:6630773,4812305:25952256,505283,126483 +(1,17200:6630773,4812305:25952256,505283,126483 +g1,17200:3078558,4812305 +[1,17200:3078558,4812305:0,0,0 +(1,17200:3078558,2439708:0,1703936,0 +k1,17200:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17200:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17167:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17200:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17167:3078558,4812305:0,0,0 -(1,17167:3078558,2439708:0,1703936,0 -g1,17167:29030814,2439708 -g1,17167:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17167:36151628,1915420:16384,1179648,0 +[1,17200:3078558,4812305:0,0,0 +(1,17200:3078558,2439708:0,1703936,0 +g1,17200:29030814,2439708 +g1,17200:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17200:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17167:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17200:37855564,2439708:1179648,16384,0 ) ) -k1,17167:3078556,2439708:-34777008 +k1,17200:3078556,2439708:-34777008 ) ] -[1,17167:3078558,4812305:0,0,0 -(1,17167:3078558,49800853:0,16384,2228224 -k1,17167:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17167:2537886,49800853:1179648,16384,0 +[1,17200:3078558,4812305:0,0,0 +(1,17200:3078558,49800853:0,16384,2228224 +k1,17200:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17200:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17167:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17200:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) -) -) +) +) ] -[1,17167:3078558,4812305:0,0,0 -(1,17167:3078558,49800853:0,16384,2228224 -g1,17167:29030814,49800853 -g1,17167:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17167:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +[1,17200:3078558,4812305:0,0,0 +(1,17200:3078558,49800853:0,16384,2228224 +g1,17200:29030814,49800853 +g1,17200:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17200:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17167:37855564,49800853:1179648,16384,0 -) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17200:37855564,49800853:1179648,16384,0 +) ) -k1,17167:3078556,49800853:-34777008 -) -] -g1,17167:6630773,4812305 -g1,17167:6630773,4812305 -g1,17167:9731936,4812305 -g1,17167:12175773,4812305 -g1,17167:13803032,4812305 -k1,17167:31387652,4812305:17584620 -) -) -] -[1,17167:6630773,45706769:25952256,40108032,0 -(1,17167:6630773,45706769:25952256,40108032,0 -(1,17167:6630773,45706769:0,0,0 -g1,17167:6630773,45706769 -) -[1,17167:6630773,45706769:25952256,40108032,0 -(1,17093:6630773,6254097:25952256,505283,134348 -k1,17092:7153487,6254097:166854 -k1,17092:8830292,6254097:166855 -k1,17092:11231268,6254097:166854 -k1,17092:12682629,6254097:166855 -k1,17092:13717835,6254097:166854 -k1,17092:14988972,6254097:166855 -k1,17092:16568127,6254097:166854 -k1,17092:17421144,6254097:166855 -k1,17092:20678021,6254097:166854 -k1,17092:21460914,6254097:166855 -k1,17092:23906455,6254097:166854 -h1,17092:25449173,6254097:0,0,0 -k1,17092:25616028,6254097:166855 -k1,17092:26592252,6254097:166854 -k1,17092:28257260,6254097:166855 -h1,17092:29452637,6254097:0,0,0 -k1,17092:29793161,6254097:166854 -k1,17093:32583029,6254097:0 -) -(1,17093:6630773,7095585:25952256,513147,134348 -(1,17092:6630773,7095585:0,459977,115847 -r1,17092:11913004,7095585:5282231,575824,115847 -k1,17092:6630773,7095585:-5282231 -) -(1,17092:6630773,7095585:5282231,459977,115847 -k1,17092:6630773,7095585:3277 -h1,17092:11909727,7095585:0,411205,112570 -) -k1,17092:12047355,7095585:134351 -k1,17092:12797745,7095585:134352 -k1,17092:13951181,7095585:134351 -k1,17092:14500311,7095585:134287 -k1,17092:16345806,7095585:134351 -k1,17092:19060309,7095585:134351 -k1,17092:20298943,7095585:134352 -k1,17092:21181060,7095585:134351 -k1,17092:22828637,7095585:134351 -k1,17092:23614417,7095585:134352 -k1,17092:26876146,7095585:134351 -k1,17092:28323839,7095585:134351 -k1,17092:30193584,7095585:134352 -k1,17092:32113136,7095585:134351 -k1,17092:32583029,7095585:0 -) -(1,17093:6630773,7937073:25952256,513147,126483 -k1,17092:9636657,7937073:149170 -k1,17092:12548170,7937073:149170 -k1,17092:14810220,7937073:149169 -k1,17092:16452956,7937073:149170 -k1,17092:17288288,7937073:149170 -k1,17092:19459244,7937073:149170 -k1,17092:20291298,7937073:149169 -k1,17092:21840317,7937073:149170 -k1,17092:23180932,7937073:149170 -k1,17092:24944909,7937073:149170 -k1,17092:25776963,7937073:149169 -k1,17092:28480071,7937073:149170 -k1,17092:29820686,7937073:149170 -k1,17092:32583029,7937073:0 -) -(1,17093:6630773,8778561:25952256,505283,122846 -g1,17092:9614627,8778561 -g1,17092:11307422,8778561 -g1,17092:12192813,8778561 -(1,17092:12192813,8778561:0,452978,115847 -r1,17092:15716485,8778561:3523672,568825,115847 -k1,17092:12192813,8778561:-3523672 -) -(1,17092:12192813,8778561:3523672,452978,115847 -k1,17092:12192813,8778561:3277 -h1,17092:15713208,8778561:0,411205,112570 -) -g1,17092:16089384,8778561 -(1,17092:16089384,8778561:0,452978,122846 -r1,17092:18206209,8778561:2116825,575824,122846 -k1,17092:16089384,8778561:-2116825 -) -(1,17092:16089384,8778561:2116825,452978,122846 -k1,17092:16089384,8778561:3277 -h1,17092:18202932,8778561:0,411205,112570 -) -g1,17092:18405438,8778561 -g1,17092:19796112,8778561 -(1,17092:19796112,8778561:0,452978,115847 -r1,17092:23319784,8778561:3523672,568825,115847 -k1,17092:19796112,8778561:-3523672 -) -(1,17092:19796112,8778561:3523672,452978,115847 -g1,17092:23316507,8778561 -h1,17092:23316507,8778561:0,411205,112570 -) -k1,17093:32583029,8778561:9089575 -g1,17093:32583029,8778561 -) -v1,17095:6630773,10047080:0,393216,0 -(1,17096:6630773,12331274:25952256,2677410,616038 -g1,17096:6630773,12331274 -(1,17096:6630773,12331274:25952256,2677410,616038 -(1,17096:6630773,12947312:25952256,3293448,0 -[1,17096:6630773,12947312:25952256,3293448,0 -(1,17096:6630773,12921098:25952256,3241020,0 -r1,17096:6656987,12921098:26214,3241020,0 -[1,17096:6656987,12921098:25899828,3241020,0 -(1,17096:6656987,12331274:25899828,2061372,0 -[1,17096:7246811,12331274:24720180,2061372,0 -(1,17096:7246811,11355438:24720180,1085536,298548 -(1,17095:7246811,11355438:0,1085536,298548 -r1,17096:8753226,11355438:1506415,1384084,298548 -k1,17095:7246811,11355438:-1506415 -) -(1,17095:7246811,11355438:1506415,1085536,298548 -) -k1,17095:8935022,11355438:181796 -k1,17095:10158841,11355438:181797 -k1,17095:13856644,11355438:181796 -k1,17095:16815856,11355438:181796 -k1,17095:18310995,11355438:181797 -k1,17095:20673174,11355438:181796 -k1,17095:21602737,11355438:181797 -k1,17095:25679993,11355438:181796 -k1,17095:26477827,11355438:181796 -k1,17095:28681410,11355438:181797 -k1,17095:30819456,11355438:181796 -k1,17096:31966991,11355438:0 -) -(1,17096:7246811,12196926:24720180,505283,134348 -g1,17095:8693190,12196926 -(1,17095:8693190,12196926:0,452978,115847 -r1,17096:12568574,12196926:3875384,568825,115847 -k1,17095:8693190,12196926:-3875384 -) -(1,17095:8693190,12196926:3875384,452978,115847 -g1,17095:10455026,12196926 -g1,17095:11158450,12196926 -h1,17095:12565297,12196926:0,411205,112570 -) -g1,17095:12941473,12196926 -g1,17095:15026173,12196926 -g1,17095:15756899,12196926 -g1,17095:18668663,12196926 -g1,17095:20754018,12196926 -k1,17096:31966991,12196926:7099279 -g1,17096:31966991,12196926 -) -] -) -] -r1,17096:32583029,12921098:26214,3241020,0 -) -] -) -) -g1,17096:32583029,12331274 -) -h1,17096:6630773,12947312:0,0,0 -v1,17100:6630773,14467552:0,393216,0 -(1,17106:6630773,16089839:25952256,2015503,196608 -g1,17106:6630773,16089839 -g1,17106:6630773,16089839 -g1,17106:6434165,16089839 -(1,17106:6434165,16089839:0,2015503,196608 -r1,17106:32779637,16089839:26345472,2212111,196608 -k1,17106:6434165,16089839:-26345472 -) -(1,17106:6434165,16089839:26345472,2015503,196608 -[1,17106:6630773,16089839:25952256,1818895,0 -(1,17102:6630773,14681462:25952256,410518,107478 -(1,17101:6630773,14681462:0,0,0 -g1,17101:6630773,14681462 -g1,17101:6630773,14681462 -g1,17101:6303093,14681462 -(1,17101:6303093,14681462:0,0,0 -) -g1,17101:6630773,14681462 -) -k1,17102:6630773,14681462:0 -k1,17102:6630773,14681462:0 -h1,17102:26547951,14681462:0,0,0 -k1,17102:32583029,14681462:6035078 -g1,17102:32583029,14681462 -) -(1,17103:6630773,15347640:25952256,404226,101187 -h1,17103:6630773,15347640:0,0,0 -g1,17103:6946919,15347640 -g1,17103:7263065,15347640 -g1,17103:7579211,15347640 -g1,17103:7895357,15347640 -g1,17103:8211503,15347640 -g1,17103:8527649,15347640 -g1,17103:8843795,15347640 -g1,17103:9159941,15347640 -g1,17103:9476087,15347640 -g1,17103:9792233,15347640 -g1,17103:10108379,15347640 -g1,17103:10424525,15347640 -g1,17103:10740671,15347640 -g1,17103:11056817,15347640 -k1,17103:11056817,15347640:0 -h1,17103:18644313,15347640:0,0,0 -k1,17103:32583029,15347640:13938716 -g1,17103:32583029,15347640 -) -(1,17104:6630773,16013818:25952256,404226,76021 -h1,17104:6630773,16013818:0,0,0 -g1,17104:6946919,16013818 -g1,17104:7263065,16013818 -g1,17104:7579211,16013818 -g1,17104:7895357,16013818 -g1,17104:8211503,16013818 -g1,17104:8527649,16013818 -g1,17104:8843795,16013818 -g1,17104:9159941,16013818 -g1,17104:9476087,16013818 -g1,17104:9792233,16013818 -g1,17104:10108379,16013818 -g1,17104:10424525,16013818 -g1,17104:10740671,16013818 -g1,17104:11056817,16013818 -g1,17104:12637546,16013818 -g1,17104:13269838,16013818 -h1,17104:14850567,16013818:0,0,0 -k1,17104:32583029,16013818:17732462 -g1,17104:32583029,16013818 -) -] -) -g1,17106:32583029,16089839 -g1,17106:6630773,16089839 -g1,17106:6630773,16089839 -g1,17106:32583029,16089839 -g1,17106:32583029,16089839 -) -h1,17106:6630773,16286447:0,0,0 -(1,17110:6630773,17554966:25952256,513147,134348 -h1,17109:6630773,17554966:983040,0,0 -k1,17109:11037116,17554966:303134 -k1,17109:11956288,17554966:303134 -k1,17109:14839574,17554966:303134 -k1,17109:17943716,17554966:303134 -k1,17109:18933012,17554966:303134 -k1,17109:20514754,17554966:303135 -k1,17109:21504050,17554966:303134 -k1,17109:23551097,17554966:303134 -k1,17109:24470269,17554966:303134 -k1,17109:27353555,17554966:303134 -k1,17109:30056616,17554966:303134 -k1,17109:32583029,17554966:0 -) -(1,17110:6630773,18396454:25952256,513147,134348 -k1,17109:8696304,18396454:280330 -k1,17109:10026521,18396454:280330 -k1,17109:12585538,18396454:280330 -h1,17109:13954585,18396454:0,0,0 -k1,17109:14234915,18396454:280330 -k1,17109:15324615,18396454:280330 -k1,17109:17103098,18396454:280330 -h1,17109:18298475,18396454:0,0,0 -k1,17109:18578805,18396454:280330 -k1,17109:19806786,18396454:280330 -k1,17109:21737313,18396454:280330 -k1,17109:25824629,18396454:280330 -k1,17109:27927515,18396454:280330 -k1,17109:31379788,18396454:280330 -k1,17109:32583029,18396454:0 -) -(1,17110:6630773,19237942:25952256,513147,7863 -g1,17109:8259342,19237942 -g1,17109:9117863,19237942 -g1,17109:10706455,19237942 -g1,17109:12173150,19237942 -k1,17110:32583029,19237942:19821366 -g1,17110:32583029,19237942 -) -v1,17112:6630773,20331152:0,393216,0 -(1,17128:6630773,27281814:25952256,7343878,196608 -g1,17128:6630773,27281814 -g1,17128:6630773,27281814 -g1,17128:6434165,27281814 -(1,17128:6434165,27281814:0,7343878,196608 -r1,17128:32779637,27281814:26345472,7540486,196608 -k1,17128:6434165,27281814:-26345472 -) -(1,17128:6434165,27281814:26345472,7343878,196608 -[1,17128:6630773,27281814:25952256,7147270,0 -(1,17114:6630773,20545062:25952256,410518,50331 -(1,17113:6630773,20545062:0,0,0 -g1,17113:6630773,20545062 -g1,17113:6630773,20545062 -g1,17113:6303093,20545062 -(1,17113:6303093,20545062:0,0,0 -) -g1,17113:6630773,20545062 -) -g1,17114:12321396,20545062 -k1,17114:12321396,20545062:0 -h1,17114:12953688,20545062:0,0,0 -k1,17114:32583028,20545062:19629340 -g1,17114:32583028,20545062 -) -(1,17115:6630773,21211240:25952256,410518,107478 -h1,17115:6630773,21211240:0,0,0 -g1,17115:6946919,21211240 -g1,17115:7263065,21211240 -g1,17115:12005251,21211240 -g1,17115:12637543,21211240 -k1,17115:12637543,21211240:0 -h1,17115:27812535,21211240:0,0,0 -k1,17115:32583029,21211240:4770494 -g1,17115:32583029,21211240 -) -(1,17116:6630773,21877418:25952256,410518,76021 -h1,17116:6630773,21877418:0,0,0 -g1,17116:6946919,21877418 -g1,17116:7263065,21877418 -g1,17116:7579211,21877418 -g1,17116:7895357,21877418 -g1,17116:8211503,21877418 -g1,17116:8527649,21877418 -g1,17116:8843795,21877418 -g1,17116:9159941,21877418 -g1,17116:9476087,21877418 -g1,17116:9792233,21877418 -g1,17116:10108379,21877418 -g1,17116:10424525,21877418 -g1,17116:14850565,21877418 -g1,17116:15482857,21877418 -h1,17116:17063586,21877418:0,0,0 -k1,17116:32583029,21877418:15519443 -g1,17116:32583029,21877418 -) -(1,17117:6630773,22543596:25952256,410518,76021 -h1,17117:6630773,22543596:0,0,0 -k1,17117:6630773,22543596:0 -h1,17117:13902124,22543596:0,0,0 -k1,17117:32583028,22543596:18680904 -g1,17117:32583028,22543596 -) -(1,17127:6630773,23275310:25952256,379060,7863 -(1,17119:6630773,23275310:0,0,0 -g1,17119:6630773,23275310 -g1,17119:6630773,23275310 -g1,17119:6303093,23275310 -(1,17119:6303093,23275310:0,0,0 -) -g1,17119:6630773,23275310 -) -g1,17127:7579210,23275310 -g1,17127:7895356,23275310 -g1,17127:8211502,23275310 -g1,17127:10740668,23275310 -h1,17127:12637542,23275310:0,0,0 -k1,17127:32583030,23275310:19945488 -g1,17127:32583030,23275310 -) -(1,17127:6630773,23941488:25952256,404226,9436 -h1,17127:6630773,23941488:0,0,0 -g1,17127:7579210,23941488 -g1,17127:8211502,23941488 -g1,17127:8527648,23941488 -g1,17127:8843794,23941488 -g1,17127:9159940,23941488 -g1,17127:9476086,23941488 -g1,17127:10740669,23941488 -g1,17127:11056815,23941488 -h1,17127:12637543,23941488:0,0,0 -k1,17127:32583029,23941488:19945486 -g1,17127:32583029,23941488 -) -(1,17127:6630773,24607666:25952256,404226,9436 -h1,17127:6630773,24607666:0,0,0 -g1,17127:7579210,24607666 -g1,17127:8211502,24607666 -g1,17127:8527648,24607666 -g1,17127:8843794,24607666 -g1,17127:9159940,24607666 -g1,17127:9476086,24607666 -g1,17127:10740669,24607666 -g1,17127:11056815,24607666 -h1,17127:12637543,24607666:0,0,0 -k1,17127:32583029,24607666:19945486 -g1,17127:32583029,24607666 -) -(1,17127:6630773,25273844:25952256,404226,9436 -h1,17127:6630773,25273844:0,0,0 -g1,17127:7579210,25273844 -g1,17127:8211502,25273844 -g1,17127:8527648,25273844 -g1,17127:8843794,25273844 -g1,17127:9159940,25273844 -g1,17127:9476086,25273844 -g1,17127:10740669,25273844 -g1,17127:11056815,25273844 -h1,17127:12637543,25273844:0,0,0 -k1,17127:32583029,25273844:19945486 -g1,17127:32583029,25273844 -) -(1,17127:6630773,25940022:25952256,404226,9436 -h1,17127:6630773,25940022:0,0,0 -g1,17127:7579210,25940022 -g1,17127:8211502,25940022 -g1,17127:8527648,25940022 -g1,17127:8843794,25940022 -g1,17127:9159940,25940022 -g1,17127:9476086,25940022 -g1,17127:10740669,25940022 -g1,17127:11056815,25940022 -h1,17127:12637543,25940022:0,0,0 -k1,17127:32583029,25940022:19945486 -g1,17127:32583029,25940022 -) -(1,17127:6630773,26606200:25952256,404226,9436 -h1,17127:6630773,26606200:0,0,0 -g1,17127:7579210,26606200 -g1,17127:8211502,26606200 -g1,17127:8527648,26606200 -g1,17127:8843794,26606200 -g1,17127:9159940,26606200 -g1,17127:9476086,26606200 -g1,17127:10740669,26606200 -g1,17127:11056815,26606200 -h1,17127:12637543,26606200:0,0,0 -k1,17127:32583029,26606200:19945486 -g1,17127:32583029,26606200 -) -(1,17127:6630773,27272378:25952256,404226,9436 -h1,17127:6630773,27272378:0,0,0 -g1,17127:7579210,27272378 -g1,17127:8211502,27272378 -g1,17127:8527648,27272378 -g1,17127:8843794,27272378 -g1,17127:9159940,27272378 -g1,17127:9476086,27272378 -g1,17127:10740669,27272378 -g1,17127:11056815,27272378 -h1,17127:12637543,27272378:0,0,0 -k1,17127:32583029,27272378:19945486 -g1,17127:32583029,27272378 -) -] -) -g1,17128:32583029,27281814 -g1,17128:6630773,27281814 -g1,17128:6630773,27281814 -g1,17128:32583029,27281814 -g1,17128:32583029,27281814 -) -h1,17128:6630773,27478422:0,0,0 -v1,17132:6630773,28998662:0,393216,0 -(1,17147:6630773,35273708:25952256,6668262,196608 -g1,17147:6630773,35273708 -g1,17147:6630773,35273708 -g1,17147:6434165,35273708 -(1,17147:6434165,35273708:0,6668262,196608 -r1,17147:32779637,35273708:26345472,6864870,196608 -k1,17147:6434165,35273708:-26345472 -) -(1,17147:6434165,35273708:26345472,6668262,196608 -[1,17147:6630773,35273708:25952256,6471654,0 -(1,17134:6630773,29206280:25952256,404226,101187 -(1,17133:6630773,29206280:0,0,0 -g1,17133:6630773,29206280 -g1,17133:6630773,29206280 -g1,17133:6303093,29206280 -(1,17133:6303093,29206280:0,0,0 -) -g1,17133:6630773,29206280 -) -g1,17134:12321396,29206280 -k1,17134:12321396,29206280:0 -h1,17134:12953688,29206280:0,0,0 -k1,17134:32583028,29206280:19629340 -g1,17134:32583028,29206280 -) -(1,17135:6630773,29872458:25952256,410518,107478 -h1,17135:6630773,29872458:0,0,0 -g1,17135:6946919,29872458 -g1,17135:7263065,29872458 -g1,17135:7579211,29872458 -g1,17135:7895357,29872458 -g1,17135:12321397,29872458 -g1,17135:12953689,29872458 -h1,17135:28128681,29872458:0,0,0 -k1,17135:32583029,29872458:4454348 -g1,17135:32583029,29872458 -) -(1,17136:6630773,30538636:25952256,404226,101187 -h1,17136:6630773,30538636:0,0,0 -h1,17136:12005250,30538636:0,0,0 -k1,17136:32583030,30538636:20577780 -g1,17136:32583030,30538636 -) -(1,17146:6630773,31270350:25952256,404226,6290 -(1,17138:6630773,31270350:0,0,0 -g1,17138:6630773,31270350 -g1,17138:6630773,31270350 -g1,17138:6303093,31270350 -(1,17138:6303093,31270350:0,0,0 -) -g1,17138:6630773,31270350 -) -g1,17146:7579210,31270350 -g1,17146:8211502,31270350 -g1,17146:8843794,31270350 -g1,17146:11372960,31270350 -g1,17146:12321397,31270350 -g1,17146:12953689,31270350 -h1,17146:13269835,31270350:0,0,0 -k1,17146:32583029,31270350:19313194 -g1,17146:32583029,31270350 -) -(1,17146:6630773,31936528:25952256,379060,7863 -h1,17146:6630773,31936528:0,0,0 -g1,17146:7579210,31936528 -g1,17146:7895356,31936528 -g1,17146:8211502,31936528 -g1,17146:10740668,31936528 -g1,17146:11056814,31936528 -g1,17146:11372960,31936528 -g1,17146:11689106,31936528 -h1,17146:13585980,31936528:0,0,0 -k1,17146:32583028,31936528:18997048 -g1,17146:32583028,31936528 -) -(1,17146:6630773,32602706:25952256,404226,6290 -h1,17146:6630773,32602706:0,0,0 -g1,17146:7579210,32602706 -g1,17146:7895356,32602706 -g1,17146:8211502,32602706 -g1,17146:8527648,32602706 -g1,17146:8843794,32602706 -g1,17146:10740669,32602706 -k1,17146:10740669,32602706:0 -h1,17146:13585980,32602706:0,0,0 -k1,17146:32583028,32602706:18997048 -g1,17146:32583028,32602706 -) -(1,17146:6630773,33268884:25952256,404226,76021 -h1,17146:6630773,33268884:0,0,0 -g1,17146:7579210,33268884 -g1,17146:8211502,33268884 -g1,17146:8527648,33268884 -g1,17146:8843794,33268884 -g1,17146:9159940,33268884 -g1,17146:9476086,33268884 -g1,17146:10740669,33268884 -g1,17146:11372961,33268884 -h1,17146:13585981,33268884:0,0,0 -k1,17146:32583029,33268884:18997048 -g1,17146:32583029,33268884 -) -(1,17146:6630773,33935062:25952256,404226,76021 -h1,17146:6630773,33935062:0,0,0 -g1,17146:7579210,33935062 -g1,17146:8211502,33935062 -g1,17146:8527648,33935062 -g1,17146:8843794,33935062 -g1,17146:9159940,33935062 -g1,17146:9476086,33935062 -g1,17146:10740669,33935062 -g1,17146:11372961,33935062 -h1,17146:13585981,33935062:0,0,0 -k1,17146:32583029,33935062:18997048 -g1,17146:32583029,33935062 -) -(1,17146:6630773,34601240:25952256,404226,76021 -h1,17146:6630773,34601240:0,0,0 -g1,17146:7579210,34601240 -g1,17146:8211502,34601240 -g1,17146:8527648,34601240 -g1,17146:8843794,34601240 -g1,17146:9159940,34601240 -g1,17146:9476086,34601240 -g1,17146:10108378,34601240 -g1,17146:10424524,34601240 -g1,17146:10740670,34601240 -g1,17146:11372962,34601240 -h1,17146:13585982,34601240:0,0,0 -k1,17146:32583030,34601240:18997048 -g1,17146:32583030,34601240 -) -(1,17146:6630773,35267418:25952256,404226,6290 -h1,17146:6630773,35267418:0,0,0 -g1,17146:7579210,35267418 -g1,17146:8211502,35267418 -g1,17146:9476085,35267418 -g1,17146:11056814,35267418 -g1,17146:12005251,35267418 -g1,17146:13585980,35267418 -h1,17146:14850563,35267418:0,0,0 -k1,17146:32583029,35267418:17732466 -g1,17146:32583029,35267418 -) -] -) -g1,17147:32583029,35273708 -g1,17147:6630773,35273708 -g1,17147:6630773,35273708 -g1,17147:32583029,35273708 -g1,17147:32583029,35273708 -) -h1,17147:6630773,35470316:0,0,0 -(1,17151:6630773,36738835:25952256,513147,134348 -h1,17150:6630773,36738835:983040,0,0 -k1,17150:8397829,36738835:156181 -k1,17150:9757250,36738835:156180 -k1,17150:12574848,36738835:156181 -k1,17150:13599380,36738835:156180 -k1,17150:14848046,36738835:156181 -k1,17150:15360087,36738835:156181 -k1,17150:19411727,36738835:156180 -k1,17150:21982211,36738835:156138 -k1,17150:23121432,36738835:156181 -k1,17150:23936904,36738835:156180 -k1,17150:27207356,36738835:156181 -k1,17150:29431852,36738835:156180 -k1,17150:30535684,36738835:156181 -k1,17151:32583029,36738835:0 -) -(1,17151:6630773,37580323:25952256,513147,126483 -k1,17150:7874349,37580323:224491 -k1,17150:14154366,37580323:224490 -k1,17150:15946478,37580323:224491 -k1,17150:18342832,37580323:224491 -k1,17150:19586408,37580323:224491 -k1,17150:21464371,37580323:224490 -k1,17150:23202088,37580323:224491 -k1,17150:25281903,37580323:224491 -k1,17150:26122432,37580323:224491 -k1,17150:27366007,37580323:224490 -k1,17150:29747942,37580323:224491 -k1,17150:32583029,37580323:0 -) -(1,17151:6630773,38421811:25952256,513147,134348 -k1,17150:8226616,38421811:214999 -k1,17150:8973112,38421811:214999 -k1,17150:9543971,38421811:214999 -k1,17150:13356241,38421811:214999 -k1,17150:15142138,38421811:214999 -k1,17150:16340177,38421811:214999 -k1,17150:17167938,38421811:214999 -k1,17150:18578314,38421811:214999 -k1,17150:19830092,38421811:214998 -k1,17150:20672926,38421811:214999 -k1,17150:22091166,38421811:214999 -k1,17150:23673246,38421811:214999 -k1,17150:24756597,38421811:214999 -k1,17150:27142148,38421811:214999 -k1,17150:29771493,38421811:214999 -k1,17150:31563944,38421811:214999 -k1,17150:32583029,38421811:0 -) -(1,17151:6630773,39263299:25952256,513147,102891 -k1,17150:10357605,39263299:220656 -k1,17150:11229689,39263299:220656 -k1,17150:12469431,39263299:220657 -k1,17150:15104411,39263299:220634 -k1,17150:16481777,39263299:220656 -k1,17150:17893879,39263299:220657 -k1,17150:18982887,39263299:220656 -k1,17150:20509676,39263299:220656 -k1,17150:23857710,39263299:220656 -k1,17150:24536463,39263299:220656 -k1,17150:28719427,39263299:220657 -k1,17150:30006354,39263299:220656 -k1,17150:31896867,39263299:220656 -k1,17150:32583029,39263299:0 -) -(1,17151:6630773,40104787:25952256,513147,126483 -g1,17150:7698354,40104787 -g1,17150:9372798,40104787 -g1,17150:9927887,40104787 -g1,17150:11621337,40104787 -g1,17150:13711280,40104787 -g1,17150:15101954,40104787 -g1,17150:16735111,40104787 -g1,17150:17802692,40104787 -g1,17150:19579373,40104787 -g1,17150:20797687,40104787 -g1,17150:22491137,40104787 -k1,17151:32583029,40104787:8935182 -g1,17151:32583029,40104787 -) -v1,17153:6630773,41197996:0,393216,0 -(1,17163:6630773,45510161:25952256,4705381,196608 -g1,17163:6630773,45510161 -g1,17163:6630773,45510161 -g1,17163:6434165,45510161 -(1,17163:6434165,45510161:0,4705381,196608 -r1,17163:32779637,45510161:26345472,4901989,196608 -k1,17163:6434165,45510161:-26345472 -) -(1,17163:6434165,45510161:26345472,4705381,196608 -[1,17163:6630773,45510161:25952256,4508773,0 -(1,17155:6630773,41411906:25952256,410518,107478 -(1,17154:6630773,41411906:0,0,0 -g1,17154:6630773,41411906 -g1,17154:6630773,41411906 -g1,17154:6303093,41411906 -(1,17154:6303093,41411906:0,0,0 -) -g1,17154:6630773,41411906 -) -g1,17155:8843793,41411906 -g1,17155:9792231,41411906 -k1,17155:9792231,41411906:0 -h1,17155:30341699,41411906:0,0,0 -k1,17155:32583029,41411906:2241330 -g1,17155:32583029,41411906 -) -(1,17156:6630773,42078084:25952256,410518,107478 -h1,17156:6630773,42078084:0,0,0 -g1,17156:6946919,42078084 -g1,17156:7263065,42078084 -g1,17156:7579211,42078084 -g1,17156:7895357,42078084 -g1,17156:8211503,42078084 -g1,17156:8527649,42078084 -g1,17156:8843795,42078084 -g1,17156:9159941,42078084 -g1,17156:9476087,42078084 -g1,17156:9792233,42078084 -g1,17156:10108379,42078084 -g1,17156:10424525,42078084 -g1,17156:10740671,42078084 -g1,17156:11056817,42078084 -g1,17156:11372963,42078084 -g1,17156:11689109,42078084 -k1,17156:11689109,42078084:0 -h1,17156:23386499,42078084:0,0,0 -k1,17156:32583029,42078084:9196530 -g1,17156:32583029,42078084 -) -(1,17157:6630773,42744262:25952256,404226,101187 -h1,17157:6630773,42744262:0,0,0 -g1,17157:6946919,42744262 -g1,17157:7263065,42744262 -g1,17157:7579211,42744262 -g1,17157:7895357,42744262 -g1,17157:8211503,42744262 -g1,17157:8527649,42744262 -g1,17157:8843795,42744262 -g1,17157:9159941,42744262 -g1,17157:9476087,42744262 -g1,17157:9792233,42744262 -g1,17157:10108379,42744262 -g1,17157:10424525,42744262 -g1,17157:10740671,42744262 -g1,17157:11056817,42744262 -g1,17157:11372963,42744262 -g1,17157:11689109,42744262 -g1,17157:12953692,42744262 -g1,17157:13585984,42744262 -h1,17157:14534421,42744262:0,0,0 -k1,17157:32583029,42744262:18048608 -g1,17157:32583029,42744262 -) -(1,17158:6630773,43410440:25952256,410518,101187 -h1,17158:6630773,43410440:0,0,0 -k1,17158:6630773,43410440:0 -h1,17158:13585978,43410440:0,0,0 -k1,17158:32583030,43410440:18997052 -g1,17158:32583030,43410440 -) -(1,17159:6630773,44076618:25952256,404226,82312 -h1,17159:6630773,44076618:0,0,0 -g1,17159:7263065,44076618 -g1,17159:7579211,44076618 -g1,17159:7895357,44076618 -g1,17159:8211503,44076618 -g1,17159:8527649,44076618 -g1,17159:8843795,44076618 -g1,17159:9159941,44076618 -g1,17159:9476087,44076618 -g1,17159:9792233,44076618 -g1,17159:10108379,44076618 -g1,17159:10424525,44076618 -g1,17159:10740671,44076618 -g1,17159:11056817,44076618 -g1,17159:11372963,44076618 -g1,17159:12953692,44076618 -g1,17159:13585984,44076618 -k1,17159:13585984,44076618:0 -h1,17159:15166713,44076618:0,0,0 -k1,17159:32583029,44076618:17416316 -g1,17159:32583029,44076618 -) -(1,17160:6630773,44742796:25952256,410518,101187 -h1,17160:6630773,44742796:0,0,0 -g1,17160:7263065,44742796 -g1,17160:7579211,44742796 -g1,17160:7895357,44742796 -g1,17160:8211503,44742796 -g1,17160:8527649,44742796 -g1,17160:8843795,44742796 -g1,17160:9159941,44742796 -g1,17160:9476087,44742796 -g1,17160:9792233,44742796 -g1,17160:10108379,44742796 -g1,17160:10424525,44742796 -g1,17160:10740671,44742796 -g1,17160:11056817,44742796 -g1,17160:11372963,44742796 -g1,17160:14218274,44742796 -g1,17160:14850566,44742796 -k1,17160:14850566,44742796:0 -h1,17160:24651082,44742796:0,0,0 -k1,17160:32583029,44742796:7931947 -g1,17160:32583029,44742796 -) -(1,17161:6630773,45408974:25952256,410518,101187 -h1,17161:6630773,45408974:0,0,0 -g1,17161:10108376,45408974 -g1,17161:11056814,45408974 -k1,17161:11056814,45408974:0 -h1,17161:23386496,45408974:0,0,0 -k1,17161:32583029,45408974:9196533 -g1,17161:32583029,45408974 -) -] -) -g1,17163:32583029,45510161 -g1,17163:6630773,45510161 -g1,17163:6630773,45510161 -g1,17163:32583029,45510161 -g1,17163:32583029,45510161 -) -h1,17163:6630773,45706769:0,0,0 -] -(1,17167:32583029,45706769:0,0,0 -g1,17167:32583029,45706769 -) -) -] -(1,17167:6630773,47279633:25952256,0,0 -h1,17167:6630773,47279633:25952256,0,0 -) -] -h1,17167:4262630,4025873:0,0,0 -] -!27145 +k1,17200:3078556,49800853:-34777008 +) +] +g1,17200:6630773,4812305 +g1,17200:6630773,4812305 +g1,17200:9731936,4812305 +g1,17200:12175773,4812305 +g1,17200:13803032,4812305 +k1,17200:31387652,4812305:17584620 +) +) +] +[1,17200:6630773,45706769:25952256,40108032,0 +(1,17200:6630773,45706769:25952256,40108032,0 +(1,17200:6630773,45706769:0,0,0 +g1,17200:6630773,45706769 +) +[1,17200:6630773,45706769:25952256,40108032,0 +(1,17126:6630773,6254097:25952256,505283,134348 +k1,17125:7153487,6254097:166854 +k1,17125:8830292,6254097:166855 +k1,17125:11231268,6254097:166854 +k1,17125:12682629,6254097:166855 +k1,17125:13717835,6254097:166854 +k1,17125:14988972,6254097:166855 +k1,17125:16568127,6254097:166854 +k1,17125:17421144,6254097:166855 +k1,17125:20678021,6254097:166854 +k1,17125:21460914,6254097:166855 +k1,17125:23906455,6254097:166854 +h1,17125:25449173,6254097:0,0,0 +k1,17125:25616028,6254097:166855 +k1,17125:26592252,6254097:166854 +k1,17125:28257260,6254097:166855 +h1,17125:29452637,6254097:0,0,0 +k1,17125:29793161,6254097:166854 +k1,17126:32583029,6254097:0 +) +(1,17126:6630773,7095585:25952256,513147,134348 +(1,17125:6630773,7095585:0,459977,115847 +r1,17125:11913004,7095585:5282231,575824,115847 +k1,17125:6630773,7095585:-5282231 +) +(1,17125:6630773,7095585:5282231,459977,115847 +k1,17125:6630773,7095585:3277 +h1,17125:11909727,7095585:0,411205,112570 +) +k1,17125:12047355,7095585:134351 +k1,17125:12797745,7095585:134352 +k1,17125:13951181,7095585:134351 +k1,17125:14500311,7095585:134287 +k1,17125:16345806,7095585:134351 +k1,17125:19060309,7095585:134351 +k1,17125:20298943,7095585:134352 +k1,17125:21181060,7095585:134351 +k1,17125:22828637,7095585:134351 +k1,17125:23614417,7095585:134352 +k1,17125:26876146,7095585:134351 +k1,17125:28323839,7095585:134351 +k1,17125:30193584,7095585:134352 +k1,17125:32113136,7095585:134351 +k1,17125:32583029,7095585:0 +) +(1,17126:6630773,7937073:25952256,513147,126483 +k1,17125:9636657,7937073:149170 +k1,17125:12548170,7937073:149170 +k1,17125:14810220,7937073:149169 +k1,17125:16452956,7937073:149170 +k1,17125:17288288,7937073:149170 +k1,17125:19459244,7937073:149170 +k1,17125:20291298,7937073:149169 +k1,17125:21840317,7937073:149170 +k1,17125:23180932,7937073:149170 +k1,17125:24944909,7937073:149170 +k1,17125:25776963,7937073:149169 +k1,17125:28480071,7937073:149170 +k1,17125:29820686,7937073:149170 +k1,17125:32583029,7937073:0 +) +(1,17126:6630773,8778561:25952256,505283,122846 +g1,17125:9614627,8778561 +g1,17125:11307422,8778561 +g1,17125:12192813,8778561 +(1,17125:12192813,8778561:0,452978,115847 +r1,17125:15716485,8778561:3523672,568825,115847 +k1,17125:12192813,8778561:-3523672 +) +(1,17125:12192813,8778561:3523672,452978,115847 +k1,17125:12192813,8778561:3277 +h1,17125:15713208,8778561:0,411205,112570 +) +g1,17125:16089384,8778561 +(1,17125:16089384,8778561:0,452978,122846 +r1,17125:18206209,8778561:2116825,575824,122846 +k1,17125:16089384,8778561:-2116825 +) +(1,17125:16089384,8778561:2116825,452978,122846 +k1,17125:16089384,8778561:3277 +h1,17125:18202932,8778561:0,411205,112570 +) +g1,17125:18405438,8778561 +g1,17125:19796112,8778561 +(1,17125:19796112,8778561:0,452978,115847 +r1,17125:23319784,8778561:3523672,568825,115847 +k1,17125:19796112,8778561:-3523672 +) +(1,17125:19796112,8778561:3523672,452978,115847 +g1,17125:23316507,8778561 +h1,17125:23316507,8778561:0,411205,112570 +) +k1,17126:32583029,8778561:9089575 +g1,17126:32583029,8778561 +) +v1,17128:6630773,10047080:0,393216,0 +(1,17129:6630773,12331274:25952256,2677410,616038 +g1,17129:6630773,12331274 +(1,17129:6630773,12331274:25952256,2677410,616038 +(1,17129:6630773,12947312:25952256,3293448,0 +[1,17129:6630773,12947312:25952256,3293448,0 +(1,17129:6630773,12921098:25952256,3241020,0 +r1,17129:6656987,12921098:26214,3241020,0 +[1,17129:6656987,12921098:25899828,3241020,0 +(1,17129:6656987,12331274:25899828,2061372,0 +[1,17129:7246811,12331274:24720180,2061372,0 +(1,17129:7246811,11355438:24720180,1085536,298548 +(1,17128:7246811,11355438:0,1085536,298548 +r1,17129:8753226,11355438:1506415,1384084,298548 +k1,17128:7246811,11355438:-1506415 +) +(1,17128:7246811,11355438:1506415,1085536,298548 +) +k1,17128:8935022,11355438:181796 +k1,17128:10158841,11355438:181797 +k1,17128:13856644,11355438:181796 +k1,17128:16815856,11355438:181796 +k1,17128:18310995,11355438:181797 +k1,17128:20673174,11355438:181796 +k1,17128:21602737,11355438:181797 +k1,17128:25679993,11355438:181796 +k1,17128:26477827,11355438:181796 +k1,17128:28681410,11355438:181797 +k1,17128:30819456,11355438:181796 +k1,17129:31966991,11355438:0 +) +(1,17129:7246811,12196926:24720180,505283,134348 +g1,17128:8693190,12196926 +(1,17128:8693190,12196926:0,452978,115847 +r1,17129:12568574,12196926:3875384,568825,115847 +k1,17128:8693190,12196926:-3875384 +) +(1,17128:8693190,12196926:3875384,452978,115847 +g1,17128:10455026,12196926 +g1,17128:11158450,12196926 +h1,17128:12565297,12196926:0,411205,112570 +) +g1,17128:12941473,12196926 +g1,17128:15026173,12196926 +g1,17128:15756899,12196926 +g1,17128:18668663,12196926 +g1,17128:20754018,12196926 +k1,17129:31966991,12196926:7099279 +g1,17129:31966991,12196926 +) +] +) +] +r1,17129:32583029,12921098:26214,3241020,0 +) +] +) +) +g1,17129:32583029,12331274 +) +h1,17129:6630773,12947312:0,0,0 +v1,17133:6630773,14467552:0,393216,0 +(1,17139:6630773,16089839:25952256,2015503,196608 +g1,17139:6630773,16089839 +g1,17139:6630773,16089839 +g1,17139:6434165,16089839 +(1,17139:6434165,16089839:0,2015503,196608 +r1,17139:32779637,16089839:26345472,2212111,196608 +k1,17139:6434165,16089839:-26345472 +) +(1,17139:6434165,16089839:26345472,2015503,196608 +[1,17139:6630773,16089839:25952256,1818895,0 +(1,17135:6630773,14681462:25952256,410518,107478 +(1,17134:6630773,14681462:0,0,0 +g1,17134:6630773,14681462 +g1,17134:6630773,14681462 +g1,17134:6303093,14681462 +(1,17134:6303093,14681462:0,0,0 +) +g1,17134:6630773,14681462 +) +k1,17135:6630773,14681462:0 +k1,17135:6630773,14681462:0 +h1,17135:26547951,14681462:0,0,0 +k1,17135:32583029,14681462:6035078 +g1,17135:32583029,14681462 +) +(1,17136:6630773,15347640:25952256,404226,101187 +h1,17136:6630773,15347640:0,0,0 +g1,17136:6946919,15347640 +g1,17136:7263065,15347640 +g1,17136:7579211,15347640 +g1,17136:7895357,15347640 +g1,17136:8211503,15347640 +g1,17136:8527649,15347640 +g1,17136:8843795,15347640 +g1,17136:9159941,15347640 +g1,17136:9476087,15347640 +g1,17136:9792233,15347640 +g1,17136:10108379,15347640 +g1,17136:10424525,15347640 +g1,17136:10740671,15347640 +g1,17136:11056817,15347640 +k1,17136:11056817,15347640:0 +h1,17136:18644313,15347640:0,0,0 +k1,17136:32583029,15347640:13938716 +g1,17136:32583029,15347640 +) +(1,17137:6630773,16013818:25952256,404226,76021 +h1,17137:6630773,16013818:0,0,0 +g1,17137:6946919,16013818 +g1,17137:7263065,16013818 +g1,17137:7579211,16013818 +g1,17137:7895357,16013818 +g1,17137:8211503,16013818 +g1,17137:8527649,16013818 +g1,17137:8843795,16013818 +g1,17137:9159941,16013818 +g1,17137:9476087,16013818 +g1,17137:9792233,16013818 +g1,17137:10108379,16013818 +g1,17137:10424525,16013818 +g1,17137:10740671,16013818 +g1,17137:11056817,16013818 +g1,17137:12637546,16013818 +g1,17137:13269838,16013818 +h1,17137:14850567,16013818:0,0,0 +k1,17137:32583029,16013818:17732462 +g1,17137:32583029,16013818 +) +] +) +g1,17139:32583029,16089839 +g1,17139:6630773,16089839 +g1,17139:6630773,16089839 +g1,17139:32583029,16089839 +g1,17139:32583029,16089839 +) +h1,17139:6630773,16286447:0,0,0 +(1,17143:6630773,17554966:25952256,513147,134348 +h1,17142:6630773,17554966:983040,0,0 +k1,17142:11037116,17554966:303134 +k1,17142:11956288,17554966:303134 +k1,17142:14839574,17554966:303134 +k1,17142:17943716,17554966:303134 +k1,17142:18933012,17554966:303134 +k1,17142:20514754,17554966:303135 +k1,17142:21504050,17554966:303134 +k1,17142:23551097,17554966:303134 +k1,17142:24470269,17554966:303134 +k1,17142:27353555,17554966:303134 +k1,17142:30056616,17554966:303134 +k1,17142:32583029,17554966:0 +) +(1,17143:6630773,18396454:25952256,513147,134348 +k1,17142:8696304,18396454:280330 +k1,17142:10026521,18396454:280330 +k1,17142:12585538,18396454:280330 +h1,17142:13954585,18396454:0,0,0 +k1,17142:14234915,18396454:280330 +k1,17142:15324615,18396454:280330 +k1,17142:17103098,18396454:280330 +h1,17142:18298475,18396454:0,0,0 +k1,17142:18578805,18396454:280330 +k1,17142:19806786,18396454:280330 +k1,17142:21737313,18396454:280330 +k1,17142:25824629,18396454:280330 +k1,17142:27927515,18396454:280330 +k1,17142:31379788,18396454:280330 +k1,17142:32583029,18396454:0 +) +(1,17143:6630773,19237942:25952256,513147,7863 +g1,17142:8259342,19237942 +g1,17142:9117863,19237942 +g1,17142:10706455,19237942 +g1,17142:12173150,19237942 +k1,17143:32583029,19237942:19821366 +g1,17143:32583029,19237942 +) +v1,17145:6630773,20331152:0,393216,0 +(1,17161:6630773,27281814:25952256,7343878,196608 +g1,17161:6630773,27281814 +g1,17161:6630773,27281814 +g1,17161:6434165,27281814 +(1,17161:6434165,27281814:0,7343878,196608 +r1,17161:32779637,27281814:26345472,7540486,196608 +k1,17161:6434165,27281814:-26345472 +) +(1,17161:6434165,27281814:26345472,7343878,196608 +[1,17161:6630773,27281814:25952256,7147270,0 +(1,17147:6630773,20545062:25952256,410518,50331 +(1,17146:6630773,20545062:0,0,0 +g1,17146:6630773,20545062 +g1,17146:6630773,20545062 +g1,17146:6303093,20545062 +(1,17146:6303093,20545062:0,0,0 +) +g1,17146:6630773,20545062 +) +g1,17147:12321396,20545062 +k1,17147:12321396,20545062:0 +h1,17147:12953688,20545062:0,0,0 +k1,17147:32583028,20545062:19629340 +g1,17147:32583028,20545062 +) +(1,17148:6630773,21211240:25952256,410518,107478 +h1,17148:6630773,21211240:0,0,0 +g1,17148:6946919,21211240 +g1,17148:7263065,21211240 +g1,17148:12005251,21211240 +g1,17148:12637543,21211240 +k1,17148:12637543,21211240:0 +h1,17148:27812535,21211240:0,0,0 +k1,17148:32583029,21211240:4770494 +g1,17148:32583029,21211240 +) +(1,17149:6630773,21877418:25952256,410518,76021 +h1,17149:6630773,21877418:0,0,0 +g1,17149:6946919,21877418 +g1,17149:7263065,21877418 +g1,17149:7579211,21877418 +g1,17149:7895357,21877418 +g1,17149:8211503,21877418 +g1,17149:8527649,21877418 +g1,17149:8843795,21877418 +g1,17149:9159941,21877418 +g1,17149:9476087,21877418 +g1,17149:9792233,21877418 +g1,17149:10108379,21877418 +g1,17149:10424525,21877418 +g1,17149:14850565,21877418 +g1,17149:15482857,21877418 +h1,17149:17063586,21877418:0,0,0 +k1,17149:32583029,21877418:15519443 +g1,17149:32583029,21877418 +) +(1,17150:6630773,22543596:25952256,410518,76021 +h1,17150:6630773,22543596:0,0,0 +k1,17150:6630773,22543596:0 +h1,17150:13902124,22543596:0,0,0 +k1,17150:32583028,22543596:18680904 +g1,17150:32583028,22543596 +) +(1,17160:6630773,23275310:25952256,379060,7863 +(1,17152:6630773,23275310:0,0,0 +g1,17152:6630773,23275310 +g1,17152:6630773,23275310 +g1,17152:6303093,23275310 +(1,17152:6303093,23275310:0,0,0 +) +g1,17152:6630773,23275310 +) +g1,17160:7579210,23275310 +g1,17160:7895356,23275310 +g1,17160:8211502,23275310 +g1,17160:10740668,23275310 +h1,17160:12637542,23275310:0,0,0 +k1,17160:32583030,23275310:19945488 +g1,17160:32583030,23275310 +) +(1,17160:6630773,23941488:25952256,404226,9436 +h1,17160:6630773,23941488:0,0,0 +g1,17160:7579210,23941488 +g1,17160:8211502,23941488 +g1,17160:8527648,23941488 +g1,17160:8843794,23941488 +g1,17160:9159940,23941488 +g1,17160:9476086,23941488 +g1,17160:10740669,23941488 +g1,17160:11056815,23941488 +h1,17160:12637543,23941488:0,0,0 +k1,17160:32583029,23941488:19945486 +g1,17160:32583029,23941488 +) +(1,17160:6630773,24607666:25952256,404226,9436 +h1,17160:6630773,24607666:0,0,0 +g1,17160:7579210,24607666 +g1,17160:8211502,24607666 +g1,17160:8527648,24607666 +g1,17160:8843794,24607666 +g1,17160:9159940,24607666 +g1,17160:9476086,24607666 +g1,17160:10740669,24607666 +g1,17160:11056815,24607666 +h1,17160:12637543,24607666:0,0,0 +k1,17160:32583029,24607666:19945486 +g1,17160:32583029,24607666 +) +(1,17160:6630773,25273844:25952256,404226,9436 +h1,17160:6630773,25273844:0,0,0 +g1,17160:7579210,25273844 +g1,17160:8211502,25273844 +g1,17160:8527648,25273844 +g1,17160:8843794,25273844 +g1,17160:9159940,25273844 +g1,17160:9476086,25273844 +g1,17160:10740669,25273844 +g1,17160:11056815,25273844 +h1,17160:12637543,25273844:0,0,0 +k1,17160:32583029,25273844:19945486 +g1,17160:32583029,25273844 +) +(1,17160:6630773,25940022:25952256,404226,9436 +h1,17160:6630773,25940022:0,0,0 +g1,17160:7579210,25940022 +g1,17160:8211502,25940022 +g1,17160:8527648,25940022 +g1,17160:8843794,25940022 +g1,17160:9159940,25940022 +g1,17160:9476086,25940022 +g1,17160:10740669,25940022 +g1,17160:11056815,25940022 +h1,17160:12637543,25940022:0,0,0 +k1,17160:32583029,25940022:19945486 +g1,17160:32583029,25940022 +) +(1,17160:6630773,26606200:25952256,404226,9436 +h1,17160:6630773,26606200:0,0,0 +g1,17160:7579210,26606200 +g1,17160:8211502,26606200 +g1,17160:8527648,26606200 +g1,17160:8843794,26606200 +g1,17160:9159940,26606200 +g1,17160:9476086,26606200 +g1,17160:10740669,26606200 +g1,17160:11056815,26606200 +h1,17160:12637543,26606200:0,0,0 +k1,17160:32583029,26606200:19945486 +g1,17160:32583029,26606200 +) +(1,17160:6630773,27272378:25952256,404226,9436 +h1,17160:6630773,27272378:0,0,0 +g1,17160:7579210,27272378 +g1,17160:8211502,27272378 +g1,17160:8527648,27272378 +g1,17160:8843794,27272378 +g1,17160:9159940,27272378 +g1,17160:9476086,27272378 +g1,17160:10740669,27272378 +g1,17160:11056815,27272378 +h1,17160:12637543,27272378:0,0,0 +k1,17160:32583029,27272378:19945486 +g1,17160:32583029,27272378 +) +] +) +g1,17161:32583029,27281814 +g1,17161:6630773,27281814 +g1,17161:6630773,27281814 +g1,17161:32583029,27281814 +g1,17161:32583029,27281814 +) +h1,17161:6630773,27478422:0,0,0 +v1,17165:6630773,28998662:0,393216,0 +(1,17180:6630773,35273708:25952256,6668262,196608 +g1,17180:6630773,35273708 +g1,17180:6630773,35273708 +g1,17180:6434165,35273708 +(1,17180:6434165,35273708:0,6668262,196608 +r1,17180:32779637,35273708:26345472,6864870,196608 +k1,17180:6434165,35273708:-26345472 +) +(1,17180:6434165,35273708:26345472,6668262,196608 +[1,17180:6630773,35273708:25952256,6471654,0 +(1,17167:6630773,29206280:25952256,404226,101187 +(1,17166:6630773,29206280:0,0,0 +g1,17166:6630773,29206280 +g1,17166:6630773,29206280 +g1,17166:6303093,29206280 +(1,17166:6303093,29206280:0,0,0 +) +g1,17166:6630773,29206280 +) +g1,17167:12321396,29206280 +k1,17167:12321396,29206280:0 +h1,17167:12953688,29206280:0,0,0 +k1,17167:32583028,29206280:19629340 +g1,17167:32583028,29206280 +) +(1,17168:6630773,29872458:25952256,410518,107478 +h1,17168:6630773,29872458:0,0,0 +g1,17168:6946919,29872458 +g1,17168:7263065,29872458 +g1,17168:7579211,29872458 +g1,17168:7895357,29872458 +g1,17168:12321397,29872458 +g1,17168:12953689,29872458 +h1,17168:28128681,29872458:0,0,0 +k1,17168:32583029,29872458:4454348 +g1,17168:32583029,29872458 +) +(1,17169:6630773,30538636:25952256,404226,101187 +h1,17169:6630773,30538636:0,0,0 +h1,17169:12005250,30538636:0,0,0 +k1,17169:32583030,30538636:20577780 +g1,17169:32583030,30538636 +) +(1,17179:6630773,31270350:25952256,404226,6290 +(1,17171:6630773,31270350:0,0,0 +g1,17171:6630773,31270350 +g1,17171:6630773,31270350 +g1,17171:6303093,31270350 +(1,17171:6303093,31270350:0,0,0 +) +g1,17171:6630773,31270350 +) +g1,17179:7579210,31270350 +g1,17179:8211502,31270350 +g1,17179:8843794,31270350 +g1,17179:11372960,31270350 +g1,17179:12321397,31270350 +g1,17179:12953689,31270350 +h1,17179:13269835,31270350:0,0,0 +k1,17179:32583029,31270350:19313194 +g1,17179:32583029,31270350 +) +(1,17179:6630773,31936528:25952256,379060,7863 +h1,17179:6630773,31936528:0,0,0 +g1,17179:7579210,31936528 +g1,17179:7895356,31936528 +g1,17179:8211502,31936528 +g1,17179:10740668,31936528 +g1,17179:11056814,31936528 +g1,17179:11372960,31936528 +g1,17179:11689106,31936528 +h1,17179:13585980,31936528:0,0,0 +k1,17179:32583028,31936528:18997048 +g1,17179:32583028,31936528 +) +(1,17179:6630773,32602706:25952256,404226,6290 +h1,17179:6630773,32602706:0,0,0 +g1,17179:7579210,32602706 +g1,17179:7895356,32602706 +g1,17179:8211502,32602706 +g1,17179:8527648,32602706 +g1,17179:8843794,32602706 +g1,17179:10740669,32602706 +k1,17179:10740669,32602706:0 +h1,17179:13585980,32602706:0,0,0 +k1,17179:32583028,32602706:18997048 +g1,17179:32583028,32602706 +) +(1,17179:6630773,33268884:25952256,404226,76021 +h1,17179:6630773,33268884:0,0,0 +g1,17179:7579210,33268884 +g1,17179:8211502,33268884 +g1,17179:8527648,33268884 +g1,17179:8843794,33268884 +g1,17179:9159940,33268884 +g1,17179:9476086,33268884 +g1,17179:10740669,33268884 +g1,17179:11372961,33268884 +h1,17179:13585981,33268884:0,0,0 +k1,17179:32583029,33268884:18997048 +g1,17179:32583029,33268884 +) +(1,17179:6630773,33935062:25952256,404226,76021 +h1,17179:6630773,33935062:0,0,0 +g1,17179:7579210,33935062 +g1,17179:8211502,33935062 +g1,17179:8527648,33935062 +g1,17179:8843794,33935062 +g1,17179:9159940,33935062 +g1,17179:9476086,33935062 +g1,17179:10740669,33935062 +g1,17179:11372961,33935062 +h1,17179:13585981,33935062:0,0,0 +k1,17179:32583029,33935062:18997048 +g1,17179:32583029,33935062 +) +(1,17179:6630773,34601240:25952256,404226,76021 +h1,17179:6630773,34601240:0,0,0 +g1,17179:7579210,34601240 +g1,17179:8211502,34601240 +g1,17179:8527648,34601240 +g1,17179:8843794,34601240 +g1,17179:9159940,34601240 +g1,17179:9476086,34601240 +g1,17179:10108378,34601240 +g1,17179:10424524,34601240 +g1,17179:10740670,34601240 +g1,17179:11372962,34601240 +h1,17179:13585982,34601240:0,0,0 +k1,17179:32583030,34601240:18997048 +g1,17179:32583030,34601240 +) +(1,17179:6630773,35267418:25952256,404226,6290 +h1,17179:6630773,35267418:0,0,0 +g1,17179:7579210,35267418 +g1,17179:8211502,35267418 +g1,17179:9476085,35267418 +g1,17179:11056814,35267418 +g1,17179:12005251,35267418 +g1,17179:13585980,35267418 +h1,17179:14850563,35267418:0,0,0 +k1,17179:32583029,35267418:17732466 +g1,17179:32583029,35267418 +) +] +) +g1,17180:32583029,35273708 +g1,17180:6630773,35273708 +g1,17180:6630773,35273708 +g1,17180:32583029,35273708 +g1,17180:32583029,35273708 +) +h1,17180:6630773,35470316:0,0,0 +(1,17184:6630773,36738835:25952256,513147,134348 +h1,17183:6630773,36738835:983040,0,0 +k1,17183:8397829,36738835:156181 +k1,17183:9757250,36738835:156180 +k1,17183:12574848,36738835:156181 +k1,17183:13599380,36738835:156180 +k1,17183:14848046,36738835:156181 +k1,17183:15360087,36738835:156181 +k1,17183:19411727,36738835:156180 +k1,17183:21982211,36738835:156138 +k1,17183:23121432,36738835:156181 +k1,17183:23936904,36738835:156180 +k1,17183:27207356,36738835:156181 +k1,17183:29431852,36738835:156180 +k1,17183:30535684,36738835:156181 +k1,17184:32583029,36738835:0 +) +(1,17184:6630773,37580323:25952256,513147,126483 +k1,17183:7874349,37580323:224491 +k1,17183:14154366,37580323:224490 +k1,17183:15946478,37580323:224491 +k1,17183:18342832,37580323:224491 +k1,17183:19586408,37580323:224491 +k1,17183:21464371,37580323:224490 +k1,17183:23202088,37580323:224491 +k1,17183:25281903,37580323:224491 +k1,17183:26122432,37580323:224491 +k1,17183:27366007,37580323:224490 +k1,17183:29747942,37580323:224491 +k1,17183:32583029,37580323:0 +) +(1,17184:6630773,38421811:25952256,513147,134348 +k1,17183:8215762,38421811:204145 +k1,17183:8951403,38421811:204144 +k1,17183:9511408,38421811:204145 +k1,17183:13312823,38421811:204144 +k1,17183:15087866,38421811:204145 +k1,17183:16275050,38421811:204144 +k1,17183:17091957,38421811:204145 +k1,17183:18491479,38421811:204145 +k1,17183:19732403,38421811:204144 +k1,17183:20564383,38421811:204145 +k1,17183:21971768,38421811:204144 +k1,17183:23716664,38421811:204145 +k1,17183:24789160,38421811:204144 +k1,17183:27163857,38421811:204145 +k1,17183:29782347,38421811:204144 +k1,17183:31563944,38421811:204145 +k1,17183:32583029,38421811:0 +) +(1,17184:6630773,39263299:25952256,513147,102891 +k1,17183:10357605,39263299:220656 +k1,17183:11229689,39263299:220656 +k1,17183:12469431,39263299:220657 +k1,17183:15104411,39263299:220634 +k1,17183:16481777,39263299:220656 +k1,17183:17893879,39263299:220657 +k1,17183:18982887,39263299:220656 +k1,17183:20509676,39263299:220656 +k1,17183:23857710,39263299:220656 +k1,17183:24536463,39263299:220656 +k1,17183:28719427,39263299:220657 +k1,17183:30006354,39263299:220656 +k1,17183:31896867,39263299:220656 +k1,17183:32583029,39263299:0 +) +(1,17184:6630773,40104787:25952256,513147,126483 +g1,17183:7698354,40104787 +g1,17183:9372798,40104787 +g1,17183:9927887,40104787 +g1,17183:11621337,40104787 +g1,17183:13711280,40104787 +g1,17183:15101954,40104787 +g1,17183:16735111,40104787 +g1,17183:17802692,40104787 +g1,17183:19579373,40104787 +g1,17183:20797687,40104787 +g1,17183:22491137,40104787 +k1,17184:32583029,40104787:8935182 +g1,17184:32583029,40104787 +) +v1,17186:6630773,41197996:0,393216,0 +(1,17196:6630773,45510161:25952256,4705381,196608 +g1,17196:6630773,45510161 +g1,17196:6630773,45510161 +g1,17196:6434165,45510161 +(1,17196:6434165,45510161:0,4705381,196608 +r1,17196:32779637,45510161:26345472,4901989,196608 +k1,17196:6434165,45510161:-26345472 +) +(1,17196:6434165,45510161:26345472,4705381,196608 +[1,17196:6630773,45510161:25952256,4508773,0 +(1,17188:6630773,41411906:25952256,410518,107478 +(1,17187:6630773,41411906:0,0,0 +g1,17187:6630773,41411906 +g1,17187:6630773,41411906 +g1,17187:6303093,41411906 +(1,17187:6303093,41411906:0,0,0 +) +g1,17187:6630773,41411906 +) +g1,17188:8843793,41411906 +g1,17188:9792231,41411906 +k1,17188:9792231,41411906:0 +h1,17188:30341699,41411906:0,0,0 +k1,17188:32583029,41411906:2241330 +g1,17188:32583029,41411906 +) +(1,17189:6630773,42078084:25952256,410518,107478 +h1,17189:6630773,42078084:0,0,0 +g1,17189:6946919,42078084 +g1,17189:7263065,42078084 +g1,17189:7579211,42078084 +g1,17189:7895357,42078084 +g1,17189:8211503,42078084 +g1,17189:8527649,42078084 +g1,17189:8843795,42078084 +g1,17189:9159941,42078084 +g1,17189:9476087,42078084 +g1,17189:9792233,42078084 +g1,17189:10108379,42078084 +g1,17189:10424525,42078084 +g1,17189:10740671,42078084 +g1,17189:11056817,42078084 +g1,17189:11372963,42078084 +g1,17189:11689109,42078084 +k1,17189:11689109,42078084:0 +h1,17189:23386499,42078084:0,0,0 +k1,17189:32583029,42078084:9196530 +g1,17189:32583029,42078084 +) +(1,17190:6630773,42744262:25952256,404226,101187 +h1,17190:6630773,42744262:0,0,0 +g1,17190:6946919,42744262 +g1,17190:7263065,42744262 +g1,17190:7579211,42744262 +g1,17190:7895357,42744262 +g1,17190:8211503,42744262 +g1,17190:8527649,42744262 +g1,17190:8843795,42744262 +g1,17190:9159941,42744262 +g1,17190:9476087,42744262 +g1,17190:9792233,42744262 +g1,17190:10108379,42744262 +g1,17190:10424525,42744262 +g1,17190:10740671,42744262 +g1,17190:11056817,42744262 +g1,17190:11372963,42744262 +g1,17190:11689109,42744262 +g1,17190:12953692,42744262 +g1,17190:13585984,42744262 +h1,17190:14534421,42744262:0,0,0 +k1,17190:32583029,42744262:18048608 +g1,17190:32583029,42744262 +) +(1,17191:6630773,43410440:25952256,410518,101187 +h1,17191:6630773,43410440:0,0,0 +k1,17191:6630773,43410440:0 +h1,17191:13585978,43410440:0,0,0 +k1,17191:32583030,43410440:18997052 +g1,17191:32583030,43410440 +) +(1,17192:6630773,44076618:25952256,404226,82312 +h1,17192:6630773,44076618:0,0,0 +g1,17192:7263065,44076618 +g1,17192:7579211,44076618 +g1,17192:7895357,44076618 +g1,17192:8211503,44076618 +g1,17192:8527649,44076618 +g1,17192:8843795,44076618 +g1,17192:9159941,44076618 +g1,17192:9476087,44076618 +g1,17192:9792233,44076618 +g1,17192:10108379,44076618 +g1,17192:10424525,44076618 +g1,17192:10740671,44076618 +g1,17192:11056817,44076618 +g1,17192:11372963,44076618 +g1,17192:12953692,44076618 +g1,17192:13585984,44076618 +k1,17192:13585984,44076618:0 +h1,17192:15166713,44076618:0,0,0 +k1,17192:32583029,44076618:17416316 +g1,17192:32583029,44076618 +) +(1,17193:6630773,44742796:25952256,410518,101187 +h1,17193:6630773,44742796:0,0,0 +g1,17193:7263065,44742796 +g1,17193:7579211,44742796 +g1,17193:7895357,44742796 +g1,17193:8211503,44742796 +g1,17193:8527649,44742796 +g1,17193:8843795,44742796 +g1,17193:9159941,44742796 +g1,17193:9476087,44742796 +g1,17193:9792233,44742796 +g1,17193:10108379,44742796 +g1,17193:10424525,44742796 +g1,17193:10740671,44742796 +g1,17193:11056817,44742796 +g1,17193:11372963,44742796 +g1,17193:14218274,44742796 +g1,17193:14850566,44742796 +k1,17193:14850566,44742796:0 +h1,17193:24651082,44742796:0,0,0 +k1,17193:32583029,44742796:7931947 +g1,17193:32583029,44742796 +) +(1,17194:6630773,45408974:25952256,410518,101187 +h1,17194:6630773,45408974:0,0,0 +g1,17194:10108376,45408974 +g1,17194:11056814,45408974 +k1,17194:11056814,45408974:0 +h1,17194:23386496,45408974:0,0,0 +k1,17194:32583029,45408974:9196533 +g1,17194:32583029,45408974 +) +] +) +g1,17196:32583029,45510161 +g1,17196:6630773,45510161 +g1,17196:6630773,45510161 +g1,17196:32583029,45510161 +g1,17196:32583029,45510161 +) +h1,17196:6630773,45706769:0,0,0 +] +(1,17200:32583029,45706769:0,0,0 +g1,17200:32583029,45706769 +) +) +] +(1,17200:6630773,47279633:25952256,0,0 +h1,17200:6630773,47279633:25952256,0,0 +) +] +h1,17200:4262630,4025873:0,0,0 +] +!27146 }332 -Input:2534:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -Input:2535:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!184 +Input:2531:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +Input:2532:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!196 {333 -[1,17225:4262630,47279633:28320399,43253760,0 -(1,17225:4262630,4025873:0,0,0 -[1,17225:-473657,4025873:25952256,0,0 -(1,17225:-473657,-710414:25952256,0,0 -h1,17225:-473657,-710414:0,0,0 -(1,17225:-473657,-710414:0,0,0 -(1,17225:-473657,-710414:0,0,0 -g1,17225:-473657,-710414 -(1,17225:-473657,-710414:65781,0,65781 -g1,17225:-407876,-710414 -[1,17225:-407876,-644633:0,0,0 +[1,17258:4262630,47279633:28320399,43253760,0 +(1,17258:4262630,4025873:0,0,0 +[1,17258:-473657,4025873:25952256,0,0 +(1,17258:-473657,-710414:25952256,0,0 +h1,17258:-473657,-710414:0,0,0 +(1,17258:-473657,-710414:0,0,0 +(1,17258:-473657,-710414:0,0,0 +g1,17258:-473657,-710414 +(1,17258:-473657,-710414:65781,0,65781 +g1,17258:-407876,-710414 +[1,17258:-407876,-644633:0,0,0 ] ) -k1,17225:-473657,-710414:-65781 +k1,17258:-473657,-710414:-65781 ) ) -k1,17225:25478599,-710414:25952256 -g1,17225:25478599,-710414 +k1,17258:25478599,-710414:25952256 +g1,17258:25478599,-710414 ) ] ) -[1,17225:6630773,47279633:25952256,43253760,0 -[1,17225:6630773,4812305:25952256,786432,0 -(1,17225:6630773,4812305:25952256,505283,126483 -(1,17225:6630773,4812305:25952256,505283,126483 -g1,17225:3078558,4812305 -[1,17225:3078558,4812305:0,0,0 -(1,17225:3078558,2439708:0,1703936,0 -k1,17225:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17225:2537886,2439708:1179648,16384,0 +[1,17258:6630773,47279633:25952256,43253760,0 +[1,17258:6630773,4812305:25952256,786432,0 +(1,17258:6630773,4812305:25952256,505283,126483 +(1,17258:6630773,4812305:25952256,505283,126483 +g1,17258:3078558,4812305 +[1,17258:3078558,4812305:0,0,0 +(1,17258:3078558,2439708:0,1703936,0 +k1,17258:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17258:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17225:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17258:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17225:3078558,4812305:0,0,0 -(1,17225:3078558,2439708:0,1703936,0 -g1,17225:29030814,2439708 -g1,17225:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17225:36151628,1915420:16384,1179648,0 +[1,17258:3078558,4812305:0,0,0 +(1,17258:3078558,2439708:0,1703936,0 +g1,17258:29030814,2439708 +g1,17258:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17258:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17225:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17258:37855564,2439708:1179648,16384,0 ) ) -k1,17225:3078556,2439708:-34777008 +k1,17258:3078556,2439708:-34777008 ) ] -[1,17225:3078558,4812305:0,0,0 -(1,17225:3078558,49800853:0,16384,2228224 -k1,17225:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17225:2537886,49800853:1179648,16384,0 +[1,17258:3078558,4812305:0,0,0 +(1,17258:3078558,49800853:0,16384,2228224 +k1,17258:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17258:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17225:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17258:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,17225:3078558,4812305:0,0,0 -(1,17225:3078558,49800853:0,16384,2228224 -g1,17225:29030814,49800853 -g1,17225:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17225:36151628,51504789:16384,1179648,0 +[1,17258:3078558,4812305:0,0,0 +(1,17258:3078558,49800853:0,16384,2228224 +g1,17258:29030814,49800853 +g1,17258:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17258:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17225:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17258:37855564,49800853:1179648,16384,0 ) ) -k1,17225:3078556,49800853:-34777008 +k1,17258:3078556,49800853:-34777008 ) ] -g1,17225:6630773,4812305 -k1,17225:25146660,4812305:17320510 -g1,17225:26880087,4812305 -g1,17225:29193507,4812305 -g1,17225:30603186,4812305 +g1,17258:6630773,4812305 +k1,17258:25146660,4812305:17320510 +g1,17258:26880087,4812305 +g1,17258:29193507,4812305 +g1,17258:30603186,4812305 ) ) ] -[1,17225:6630773,45706769:25952256,40108032,0 -(1,17225:6630773,45706769:25952256,40108032,0 -(1,17225:6630773,45706769:0,0,0 -g1,17225:6630773,45706769 +[1,17258:6630773,45706769:25952256,40108032,0 +(1,17258:6630773,45706769:25952256,40108032,0 +(1,17258:6630773,45706769:0,0,0 +g1,17258:6630773,45706769 ) -[1,17225:6630773,45706769:25952256,40108032,0 -v1,17167:6630773,6254097:0,393216,0 -(1,17169:6630773,8538291:25952256,2677410,616038 -g1,17169:6630773,8538291 -(1,17169:6630773,8538291:25952256,2677410,616038 -(1,17169:6630773,9154329:25952256,3293448,0 -[1,17169:6630773,9154329:25952256,3293448,0 -(1,17169:6630773,9128115:25952256,3241020,0 -r1,17169:6656987,9128115:26214,3241020,0 -[1,17169:6656987,9128115:25899828,3241020,0 -(1,17169:6656987,8538291:25899828,2061372,0 -[1,17169:7246811,8538291:24720180,2061372,0 -(1,17169:7246811,7562455:24720180,1085536,298548 -(1,17167:7246811,7562455:0,1085536,298548 -r1,17169:8753226,7562455:1506415,1384084,298548 -k1,17167:7246811,7562455:-1506415 +[1,17258:6630773,45706769:25952256,40108032,0 +v1,17200:6630773,6254097:0,393216,0 +(1,17202:6630773,8538291:25952256,2677410,616038 +g1,17202:6630773,8538291 +(1,17202:6630773,8538291:25952256,2677410,616038 +(1,17202:6630773,9154329:25952256,3293448,0 +[1,17202:6630773,9154329:25952256,3293448,0 +(1,17202:6630773,9128115:25952256,3241020,0 +r1,17202:6656987,9128115:26214,3241020,0 +[1,17202:6656987,9128115:25899828,3241020,0 +(1,17202:6656987,8538291:25899828,2061372,0 +[1,17202:7246811,8538291:24720180,2061372,0 +(1,17202:7246811,7562455:24720180,1085536,298548 +(1,17200:7246811,7562455:0,1085536,298548 +r1,17202:8753226,7562455:1506415,1384084,298548 +k1,17200:7246811,7562455:-1506415 ) -(1,17167:7246811,7562455:1506415,1085536,298548 +(1,17200:7246811,7562455:1506415,1085536,298548 ) -k1,17167:8970235,7562455:217009 -k1,17167:10229265,7562455:217008 -k1,17167:13962281,7562455:217009 -k1,17167:16569370,7562455:216991 -k1,17167:18099721,7562455:217009 -k1,17167:20497112,7562455:217008 -k1,17167:21461887,7562455:217009 -k1,17167:25574356,7562455:217009 -k1,17167:26407403,7562455:217009 -k1,17167:28646197,7562455:217008 -k1,17167:30819456,7562455:217009 -k1,17169:31966991,7562455:0 -) -(1,17169:7246811,8403943:24720180,505283,134348 -g1,17167:8693190,8403943 -(1,17167:8693190,8403943:0,452978,115847 -r1,17169:12568574,8403943:3875384,568825,115847 -k1,17167:8693190,8403943:-3875384 -) -(1,17167:8693190,8403943:3875384,452978,115847 -g1,17167:10455026,8403943 -g1,17167:11158450,8403943 -h1,17167:12565297,8403943:0,411205,112570 -) -g1,17167:12941473,8403943 -g1,17167:15026173,8403943 -g1,17167:15756899,8403943 -g1,17167:18668663,8403943 -g1,17167:20754018,8403943 -g1,17167:25066941,8403943 -k1,17169:31966991,8403943:6726380 -g1,17169:31966991,8403943 -) -] -) -] -r1,17169:32583029,9128115:26214,3241020,0 -) -] -) -) -g1,17169:32583029,8538291 -) -h1,17169:6630773,9154329:0,0,0 -(1,17172:6630773,12436165:25952256,32768,229376 -(1,17172:6630773,12436165:0,32768,229376 -(1,17172:6630773,12436165:5505024,32768,229376 -r1,17172:12135797,12436165:5505024,262144,229376 -) -k1,17172:6630773,12436165:-5505024 -) -(1,17172:6630773,12436165:25952256,32768,0 -r1,17172:32583029,12436165:25952256,32768,0 -) -) -(1,17172:6630773,14040493:25952256,615776,151780 -(1,17172:6630773,14040493:2464678,582746,14155 -g1,17172:6630773,14040493 -g1,17172:9095451,14040493 -) -g1,17172:11145680,14040493 -g1,17172:15755745,14040493 -g1,17172:17937308,14040493 -g1,17172:21510069,14040493 -k1,17172:32583029,14040493:8066430 -g1,17172:32583029,14040493 -) -(1,17176:6630773,15275197:25952256,505283,134348 -k1,17175:10159805,15275197:226673 -k1,17175:12872258,15275197:226672 -k1,17175:14488294,15275197:226673 -k1,17175:18223764,15275197:226672 -k1,17175:20788106,15275197:226673 -k1,17175:22869447,15275197:226672 -k1,17175:23905490,15275197:226673 -k1,17175:29602452,15275197:226672 -k1,17175:32583029,15275197:0 -) -(1,17176:6630773,16116685:25952256,513147,134348 -k1,17175:12389366,16116685:153299 -k1,17175:13998829,16116685:153253 -k1,17175:16663467,16116685:153298 -k1,17175:18291981,16116685:153299 -k1,17175:20734452,16116685:153298 -k1,17175:21777730,16116685:153299 -k1,17175:25021707,16116685:153299 -k1,17175:26459511,16116685:153298 -k1,17175:27717092,16116685:153299 -k1,17175:28618156,16116685:153298 -k1,17175:31195632,16116685:153299 -k1,17175:32583029,16116685:0 -) -(1,17176:6630773,16958173:25952256,505283,134348 -k1,17175:7158883,16958173:172250 -k1,17175:9946676,16958173:172251 -k1,17175:13625102,16958173:172250 -k1,17175:14448780,16958173:172250 -k1,17175:17055038,16958173:172251 -k1,17175:19083268,16958173:172250 -k1,17175:22090605,16958173:172250 -k1,17175:22945741,16958173:172251 -k1,17175:25234149,16958173:172250 -k1,17175:26969433,16958173:172250 -k1,17175:29746740,16958173:172251 -k1,17175:31773659,16958173:172250 -k1,17175:32583029,16958173:0 -) -(1,17176:6630773,17799661:25952256,513147,126483 -g1,17175:8189219,17799661 -g1,17175:11120644,17799661 -g1,17175:12002758,17799661 -g1,17175:12818025,17799661 -g1,17175:14650411,17799661 -g1,17175:17030023,17799661 -g1,17175:18220812,17799661 -g1,17175:21763688,17799661 -k1,17176:32583029,17799661:9132444 -g1,17176:32583029,17799661 -) -(1,17177:6630773,19890921:25952256,555811,147783 -(1,17177:6630773,19890921:2899444,534184,12975 -g1,17177:6630773,19890921 -g1,17177:9530217,19890921 -) -k1,17177:32583028,19890921:19905380 -g1,17177:32583028,19890921 -) -(1,17183:6630773,21125625:25952256,513147,134348 -k1,17182:7782077,21125625:197755 -k1,17182:9259750,21125625:197755 -k1,17182:10855388,21125625:197755 -k1,17182:11409003,21125625:197755 -k1,17182:13731435,21125625:197755 -k1,17182:16590607,21125625:197755 -k1,17182:18523755,21125625:197755 -k1,17182:19077370,21125625:197755 -k1,17182:21677675,21125625:197755 -k1,17182:23443051,21125625:197755 -k1,17182:24659891,21125625:197755 -k1,17182:28028933,21125625:197755 -$1,17182:28236027,21125625 -k1,17182:29816755,21125625:0 -k1,17182:30211937,21125625:0 -k1,17182:30607119,21125625:0 -k1,17182:31002301,21125625:0 -k1,17182:32187847,21125625:0 -k1,17183:32583029,21125625:0 -) -(1,17183:6630773,21967113:25952256,513147,134348 -k1,17182:10187411,21967113:0 -k1,17182:10582593,21967113:0 -$1,17182:12163321,21967113 -k1,17182:12556734,21967113:186319 -k1,17182:14751076,21967113:186319 -k1,17182:16672788,21967113:186319 -k1,17182:17214967,21967113:186319 -k1,17182:20160351,21967113:186318 -k1,17182:21576781,21967113:186319 -k1,17182:24286236,21967113:186319 -k1,17182:26706677,21967113:186319 -k1,17182:27846545,21967113:186319 -k1,17182:30466871,21967113:186319 -k1,17182:32583029,21967113:0 -) -(1,17183:6630773,22808601:25952256,513147,7863 -g1,17182:8219365,22808601 -g1,17182:9986215,22808601 -g1,17182:10541304,22808601 -g1,17182:14474119,22808601 -k1,17183:32583029,22808601:15532690 -g1,17183:32583029,22808601 -) -v1,17185:6630773,24124357:0,393216,0 -(1,17186:6630773,27178984:25952256,3447843,616038 -g1,17186:6630773,27178984 -(1,17186:6630773,27178984:25952256,3447843,616038 -(1,17186:6630773,27795022:25952256,4063881,0 -[1,17186:6630773,27795022:25952256,4063881,0 -(1,17186:6630773,27768808:25952256,4011453,0 -r1,17186:6656987,27768808:26214,4011453,0 -[1,17186:6656987,27768808:25899828,4011453,0 -(1,17186:6656987,27178984:25899828,2831805,0 -[1,17186:7246811,27178984:24720180,2831805,0 -(1,17186:7246811,25369525:24720180,1022346,134348 -k1,17185:8773397,25369525:271073 -k1,17185:10425313,25369525:271072 -k1,17185:13357803,25369525:271073 -k1,17185:15489442,25369525:271072 -k1,17185:17942209,25369525:271073 -k1,17185:19232366,25369525:271072 -k1,17185:23777697,25369525:271073 -k1,17185:24708061,25369525:271072 -k1,17185:25998219,25369525:271073 -k1,17185:29564441,25369525:271072 -k1,17185:31966991,25369525:0 -) -(1,17186:7246811,26211013:24720180,513147,134348 -k1,17185:11212504,26211013:142978 -k1,17185:12900820,26211013:142977 -k1,17185:17106375,26211013:142978 -k1,17185:20414742,26211013:142978 -k1,17185:23538296,26211013:142977 -k1,17185:27955532,26211013:142978 -k1,17185:31966991,26211013:0 -) -(1,17186:7246811,27052501:24720180,505283,126483 -g1,17185:8578502,27052501 -g1,17185:9525497,27052501 -g1,17185:12575542,27052501 -k1,17186:31966991,27052501:17239902 -g1,17186:31966991,27052501 -) -] -) -] -r1,17186:32583029,27768808:26214,4011453,0 -) -] -) -) -g1,17186:32583029,27178984 -) -h1,17186:6630773,27795022:0,0,0 -(1,17189:6630773,29110778:25952256,513147,134348 -h1,17188:6630773,29110778:983040,0,0 -k1,17188:9273441,29110778:171305 -k1,17188:10313099,29110778:171306 -k1,17188:11576889,29110778:171305 -k1,17188:14443690,29110778:171305 -(1,17188:14443690,29110778:0,459977,115847 -r1,17188:17967362,29110778:3523672,575824,115847 -k1,17188:14443690,29110778:-3523672 -) -(1,17188:14443690,29110778:3523672,459977,115847 -k1,17188:14443690,29110778:3277 -h1,17188:17964085,29110778:0,411205,112570 -) -k1,17188:18138668,29110778:171306 -k1,17188:19877594,29110778:171305 -k1,17188:22629052,29110778:171306 -k1,17188:25478157,29110778:171305 -k1,17188:26300890,29110778:171305 -k1,17188:28906203,29110778:171306 -k1,17188:31193666,29110778:171305 -k1,17188:32583029,29110778:0 -) -(1,17189:6630773,29952266:25952256,513147,7863 -g1,17188:8397623,29952266 -g1,17188:9753562,29952266 -k1,17189:32583028,29952266:20550124 -g1,17189:32583028,29952266 -) -v1,17191:6630773,31092712:0,393216,0 -(1,17199:6630773,34047354:25952256,3347858,196608 -g1,17199:6630773,34047354 -g1,17199:6630773,34047354 -g1,17199:6434165,34047354 -(1,17199:6434165,34047354:0,3347858,196608 -r1,17199:32779637,34047354:26345472,3544466,196608 -k1,17199:6434165,34047354:-26345472 -) -(1,17199:6434165,34047354:26345472,3347858,196608 -[1,17199:6630773,34047354:25952256,3151250,0 -(1,17193:6630773,31300330:25952256,404226,101187 -(1,17192:6630773,31300330:0,0,0 -g1,17192:6630773,31300330 -g1,17192:6630773,31300330 -g1,17192:6303093,31300330 -(1,17192:6303093,31300330:0,0,0 -) -g1,17192:6630773,31300330 -) -g1,17193:9159939,31300330 -g1,17193:10108377,31300330 -h1,17193:17695873,31300330:0,0,0 -k1,17193:32583029,31300330:14887156 -g1,17193:32583029,31300330 -) -(1,17194:6630773,31966508:25952256,410518,9436 -h1,17194:6630773,31966508:0,0,0 -g1,17194:10108376,31966508 -k1,17194:10108376,31966508:0 -h1,17194:10740668,31966508:0,0,0 -k1,17194:32583028,31966508:21842360 -g1,17194:32583028,31966508 -) -(1,17195:6630773,32632686:25952256,410518,107478 -h1,17195:6630773,32632686:0,0,0 -g1,17195:6946919,32632686 -g1,17195:7263065,32632686 -g1,17195:7579211,32632686 -g1,17195:7895357,32632686 -g1,17195:15482853,32632686 -k1,17195:15482853,32632686:0 -h1,17195:25915660,32632686:0,0,0 -k1,17195:32583029,32632686:6667369 -g1,17195:32583029,32632686 -) -(1,17196:6630773,33298864:25952256,410518,101187 -h1,17196:6630773,33298864:0,0,0 -g1,17196:6946919,33298864 -g1,17196:7263065,33298864 -g1,17196:7579211,33298864 -g1,17196:7895357,33298864 -g1,17196:8211503,33298864 -g1,17196:8527649,33298864 -g1,17196:8843795,33298864 -g1,17196:9159941,33298864 -g1,17196:9476087,33298864 -g1,17196:9792233,33298864 -g1,17196:10108379,33298864 -g1,17196:10424525,33298864 -g1,17196:10740671,33298864 -g1,17196:11056817,33298864 -g1,17196:11372963,33298864 -g1,17196:11689109,33298864 -g1,17196:12005255,33298864 -g1,17196:12321401,33298864 -g1,17196:12637547,33298864 -g1,17196:13902130,33298864 -g1,17196:14534422,33298864 -g1,17196:16115151,33298864 -g1,17196:18644317,33298864 -g1,17196:19276609,33298864 -h1,17196:20857338,33298864:0,0,0 -k1,17196:32583029,33298864:11725691 -g1,17196:32583029,33298864 -) -(1,17197:6630773,33965042:25952256,410518,82312 -h1,17197:6630773,33965042:0,0,0 -g1,17197:11689104,33965042 -g1,17197:14850561,33965042 -g1,17197:15482853,33965042 -h1,17197:16115145,33965042:0,0,0 -k1,17197:32583029,33965042:16467884 -g1,17197:32583029,33965042 -) -] -) -g1,17199:32583029,34047354 -g1,17199:6630773,34047354 -g1,17199:6630773,34047354 -g1,17199:32583029,34047354 -g1,17199:32583029,34047354 -) -h1,17199:6630773,34243962:0,0,0 -(1,17203:6630773,35559718:25952256,513147,134348 -h1,17202:6630773,35559718:983040,0,0 -k1,17202:8985699,35559718:175199 -k1,17202:12426558,35559718:175200 -k1,17202:14513442,35559718:175199 -k1,17202:15880087,35559718:175200 -k1,17202:19252132,35559718:175199 -k1,17202:21437976,35559718:175199 -k1,17202:22560827,35559718:175200 -k1,17202:24187648,35559718:175199 -k1,17202:26701173,35559718:175200 -k1,17202:29303170,35559718:175199 -k1,17202:31008636,35559718:175200 -k1,17202:31835263,35559718:175199 -k1,17202:32583029,35559718:0 -) -(1,17203:6630773,36401206:25952256,513147,134348 -k1,17202:8266084,36401206:221044 -k1,17202:10054748,36401206:221043 -k1,17202:10631652,36401206:221044 -k1,17202:12725714,36401206:221043 -k1,17202:15098305,36401206:221044 -k1,17202:16272897,36401206:221043 -k1,17202:17309209,36401206:221044 -k1,17202:18733493,36401206:221043 -k1,17202:19716065,36401206:221044 -k1,17202:22676513,36401206:221043 -k1,17202:24291508,36401206:221044 -k1,17202:24868411,36401206:221043 -k1,17202:27159082,36401206:221044 -k1,17202:29358002,36401206:221043 -k1,17202:32583029,36401206:0 -) -(1,17203:6630773,37242694:25952256,513147,134348 -k1,17202:8009322,37242694:181862 -k1,17202:9580548,37242694:181863 -k1,17202:12541137,37242694:181862 -k1,17202:13254496,37242694:181862 -k1,17202:14052396,37242694:181862 -k1,17202:15622967,37242694:181863 -k1,17202:17546121,37242694:181862 -k1,17202:19121934,37242694:181862 -k1,17202:21969802,37242694:181863 -k1,17202:24219980,37242694:181862 -k1,17202:25593287,37242694:181862 -k1,17202:27393233,37242694:181862 -k1,17202:28860912,37242694:181863 -k1,17202:31821501,37242694:181862 -k1,17202:32583029,37242694:0 -) -(1,17203:6630773,38084182:25952256,505283,102891 -g1,17202:7849087,38084182 -g1,17202:10624536,38084182 -g1,17202:11509927,38084182 -g1,17202:12987763,38084182 -g1,17202:13873154,38084182 -g1,17202:15091468,38084182 -k1,17203:32583029,38084182:15892483 -g1,17203:32583029,38084182 -) -v1,17205:6630773,39224628:0,393216,0 -(1,17225:6630773,45510161:25952256,6678749,196608 -g1,17225:6630773,45510161 -g1,17225:6630773,45510161 -g1,17225:6434165,45510161 -(1,17225:6434165,45510161:0,6678749,196608 -r1,17225:32779637,45510161:26345472,6875357,196608 -k1,17225:6434165,45510161:-26345472 -) -(1,17225:6434165,45510161:26345472,6678749,196608 -[1,17225:6630773,45510161:25952256,6482141,0 -(1,17207:6630773,39438538:25952256,410518,101187 -(1,17206:6630773,39438538:0,0,0 -g1,17206:6630773,39438538 -g1,17206:6630773,39438538 -g1,17206:6303093,39438538 -(1,17206:6303093,39438538:0,0,0 -) -g1,17206:6630773,39438538 -) -k1,17207:6630773,39438538:0 -g1,17207:20857328,39438538 -g1,17207:21805765,39438538 -g1,17207:27180242,39438538 -k1,17207:27180242,39438538:0 -h1,17207:28444824,39438538:0,0,0 -k1,17207:32583029,39438538:4138205 -g1,17207:32583029,39438538 -) -(1,17208:6630773,40104716:25952256,404226,76021 -h1,17208:6630773,40104716:0,0,0 -g1,17208:6946919,40104716 -g1,17208:7263065,40104716 -g1,17208:11056814,40104716 -g1,17208:11689106,40104716 -g1,17208:12637543,40104716 -k1,17208:12637543,40104716:0 -h1,17208:13902125,40104716:0,0,0 -k1,17208:32583029,40104716:18680904 -g1,17208:32583029,40104716 -) -(1,17209:6630773,40770894:25952256,404226,101187 -h1,17209:6630773,40770894:0,0,0 -g1,17209:6946919,40770894 -g1,17209:7263065,40770894 -g1,17209:14534415,40770894 -g1,17209:15166707,40770894 -k1,17209:15166707,40770894:0 -h1,17209:15798999,40770894:0,0,0 -k1,17209:32583029,40770894:16784030 -g1,17209:32583029,40770894 -) -(1,17210:6630773,41437072:25952256,404226,107478 -h1,17210:6630773,41437072:0,0,0 -g1,17210:6946919,41437072 -g1,17210:7263065,41437072 -g1,17210:7579211,41437072 -g1,17210:7895357,41437072 -g1,17210:8211503,41437072 -g1,17210:8527649,41437072 -g1,17210:8843795,41437072 -g1,17210:9159941,41437072 -g1,17210:9476087,41437072 -g1,17210:9792233,41437072 -g1,17210:10108379,41437072 -g1,17210:10424525,41437072 -g1,17210:10740671,41437072 -g1,17210:11056817,41437072 -g1,17210:11372963,41437072 -g1,17210:11689109,41437072 -g1,17210:12005255,41437072 -g1,17210:12321401,41437072 -g1,17210:12637547,41437072 -g1,17210:15482858,41437072 -g1,17210:16115150,41437072 -g1,17210:21173482,41437072 -g1,17210:23386502,41437072 -g1,17210:24018794,41437072 -g1,17210:28444834,41437072 -g1,17210:29393271,41437072 -g1,17210:30025563,41437072 -k1,17210:30025563,41437072:0 -h1,17210:32238583,41437072:0,0,0 -k1,17210:32583029,41437072:344446 -g1,17210:32583029,41437072 -) -(1,17211:6630773,42103250:25952256,404226,82312 -h1,17211:6630773,42103250:0,0,0 -g1,17211:6946919,42103250 -g1,17211:7263065,42103250 -g1,17211:7579211,42103250 -g1,17211:7895357,42103250 -g1,17211:8211503,42103250 -g1,17211:8527649,42103250 -g1,17211:8843795,42103250 -g1,17211:9159941,42103250 -g1,17211:9476087,42103250 -g1,17211:9792233,42103250 -g1,17211:10108379,42103250 -g1,17211:10424525,42103250 -g1,17211:10740671,42103250 -g1,17211:11056817,42103250 -g1,17211:11372963,42103250 -g1,17211:11689109,42103250 -g1,17211:12005255,42103250 -g1,17211:12321401,42103250 -g1,17211:12637547,42103250 -g1,17211:14534421,42103250 -g1,17211:15166713,42103250 -g1,17211:21489628,42103250 -g1,17211:23702648,42103250 -k1,17211:23702648,42103250:0 -h1,17211:26231813,42103250:0,0,0 -k1,17211:32583029,42103250:6351216 -g1,17211:32583029,42103250 -) -(1,17212:6630773,42769428:25952256,404226,82312 -h1,17212:6630773,42769428:0,0,0 -g1,17212:6946919,42769428 -g1,17212:7263065,42769428 -g1,17212:7579211,42769428 -g1,17212:7895357,42769428 -g1,17212:8211503,42769428 -g1,17212:8527649,42769428 -g1,17212:8843795,42769428 -g1,17212:9159941,42769428 -g1,17212:9476087,42769428 -g1,17212:9792233,42769428 -g1,17212:10108379,42769428 -g1,17212:10424525,42769428 -g1,17212:10740671,42769428 -g1,17212:11056817,42769428 -g1,17212:11372963,42769428 -g1,17212:11689109,42769428 -g1,17212:12005255,42769428 -g1,17212:12321401,42769428 -g1,17212:12637547,42769428 -g1,17212:14850567,42769428 -g1,17212:15482859,42769428 -g1,17212:22121919,42769428 -g1,17212:24018794,42769428 -k1,17212:24018794,42769428:0 -h1,17212:26547959,42769428:0,0,0 -k1,17212:32583029,42769428:6035070 -g1,17212:32583029,42769428 -) -(1,17213:6630773,43435606:25952256,410518,101187 -h1,17213:6630773,43435606:0,0,0 -g1,17213:6946919,43435606 -g1,17213:7263065,43435606 -g1,17213:7579211,43435606 -g1,17213:7895357,43435606 -g1,17213:8211503,43435606 -g1,17213:8527649,43435606 -g1,17213:8843795,43435606 -g1,17213:9159941,43435606 -g1,17213:9476087,43435606 -g1,17213:9792233,43435606 -g1,17213:10108379,43435606 -g1,17213:10424525,43435606 -g1,17213:10740671,43435606 -g1,17213:11056817,43435606 -g1,17213:11372963,43435606 -g1,17213:11689109,43435606 -g1,17213:12005255,43435606 -g1,17213:12321401,43435606 -g1,17213:12637547,43435606 -g1,17213:14534421,43435606 -g1,17213:15166713,43435606 -g1,17213:21805773,43435606 -g1,17213:24018793,43435606 -g1,17213:26547959,43435606 -g1,17213:27496397,43435606 -h1,17213:31922437,43435606:0,0,0 -k1,17213:32583029,43435606:660592 -g1,17213:32583029,43435606 -) -(1,17214:6630773,44101784:25952256,0,0 -h1,17214:6630773,44101784:0,0,0 -h1,17214:6630773,44101784:0,0,0 -k1,17214:32583029,44101784:25952256 -g1,17214:32583029,44101784 -) -(1,17215:6630773,44767962:25952256,410518,101187 -h1,17215:6630773,44767962:0,0,0 -g1,17215:20857328,44767962 -g1,17215:21805765,44767962 -g1,17215:26231805,44767962 -k1,17215:26231805,44767962:0 -h1,17215:27496387,44767962:0,0,0 -k1,17215:32583029,44767962:5086642 -g1,17215:32583029,44767962 -) -(1,17216:6630773,45434140:25952256,404226,76021 -h1,17216:6630773,45434140:0,0,0 -g1,17216:6946919,45434140 -g1,17216:7263065,45434140 -g1,17216:11056814,45434140 -g1,17216:11689106,45434140 -g1,17216:12637543,45434140 -k1,17216:12637543,45434140:0 -h1,17216:13902125,45434140:0,0,0 -k1,17216:32583029,45434140:18680904 -g1,17216:32583029,45434140 -) -] -) -g1,17225:32583029,45510161 -g1,17225:6630773,45510161 -g1,17225:6630773,45510161 -g1,17225:32583029,45510161 -g1,17225:32583029,45510161 -) -] -(1,17225:32583029,45706769:0,0,0 -g1,17225:32583029,45706769 -) -) -] -(1,17225:6630773,47279633:25952256,0,0 -h1,17225:6630773,47279633:25952256,0,0 -) -] -h1,17225:4262630,4025873:0,0,0 +k1,17200:8970235,7562455:217009 +k1,17200:10229265,7562455:217008 +k1,17200:13962281,7562455:217009 +k1,17200:16569370,7562455:216991 +k1,17200:18099721,7562455:217009 +k1,17200:20497112,7562455:217008 +k1,17200:21461887,7562455:217009 +k1,17200:25574356,7562455:217009 +k1,17200:26407403,7562455:217009 +k1,17200:28646197,7562455:217008 +k1,17200:30819456,7562455:217009 +k1,17202:31966991,7562455:0 +) +(1,17202:7246811,8403943:24720180,505283,134348 +g1,17200:8693190,8403943 +(1,17200:8693190,8403943:0,452978,115847 +r1,17202:12568574,8403943:3875384,568825,115847 +k1,17200:8693190,8403943:-3875384 +) +(1,17200:8693190,8403943:3875384,452978,115847 +g1,17200:10455026,8403943 +g1,17200:11158450,8403943 +h1,17200:12565297,8403943:0,411205,112570 +) +g1,17200:12941473,8403943 +g1,17200:15026173,8403943 +g1,17200:15756899,8403943 +g1,17200:18668663,8403943 +g1,17200:20754018,8403943 +g1,17200:25066941,8403943 +k1,17202:31966991,8403943:6726380 +g1,17202:31966991,8403943 +) +] +) +] +r1,17202:32583029,9128115:26214,3241020,0 +) +] +) +) +g1,17202:32583029,8538291 +) +h1,17202:6630773,9154329:0,0,0 +(1,17205:6630773,12436165:25952256,32768,229376 +(1,17205:6630773,12436165:0,32768,229376 +(1,17205:6630773,12436165:5505024,32768,229376 +r1,17205:12135797,12436165:5505024,262144,229376 +) +k1,17205:6630773,12436165:-5505024 +) +(1,17205:6630773,12436165:25952256,32768,0 +r1,17205:32583029,12436165:25952256,32768,0 +) +) +(1,17205:6630773,14040493:25952256,615776,151780 +(1,17205:6630773,14040493:2464678,582746,14155 +g1,17205:6630773,14040493 +g1,17205:9095451,14040493 +) +g1,17205:11145680,14040493 +g1,17205:15755745,14040493 +g1,17205:17937308,14040493 +g1,17205:21510069,14040493 +k1,17205:32583029,14040493:8066430 +g1,17205:32583029,14040493 +) +(1,17209:6630773,15275197:25952256,505283,134348 +k1,17208:10159805,15275197:226673 +k1,17208:12872258,15275197:226672 +k1,17208:14488294,15275197:226673 +k1,17208:18223764,15275197:226672 +k1,17208:20788106,15275197:226673 +k1,17208:22869447,15275197:226672 +k1,17208:23905490,15275197:226673 +k1,17208:29602452,15275197:226672 +k1,17208:32583029,15275197:0 +) +(1,17209:6630773,16116685:25952256,513147,134348 +k1,17208:12389366,16116685:153299 +k1,17208:13998829,16116685:153253 +k1,17208:16663467,16116685:153298 +k1,17208:18291981,16116685:153299 +k1,17208:20734452,16116685:153298 +k1,17208:21777730,16116685:153299 +k1,17208:25021707,16116685:153299 +k1,17208:26459511,16116685:153298 +k1,17208:27717092,16116685:153299 +k1,17208:28618156,16116685:153298 +k1,17208:31195632,16116685:153299 +k1,17208:32583029,16116685:0 +) +(1,17209:6630773,16958173:25952256,505283,134348 +k1,17208:7158883,16958173:172250 +k1,17208:9946676,16958173:172251 +k1,17208:13625102,16958173:172250 +k1,17208:14448780,16958173:172250 +k1,17208:17055038,16958173:172251 +k1,17208:19083268,16958173:172250 +k1,17208:22090605,16958173:172250 +k1,17208:22945741,16958173:172251 +k1,17208:25234149,16958173:172250 +k1,17208:26969433,16958173:172250 +k1,17208:29746740,16958173:172251 +k1,17208:31773659,16958173:172250 +k1,17208:32583029,16958173:0 +) +(1,17209:6630773,17799661:25952256,513147,126483 +g1,17208:8189219,17799661 +g1,17208:11120644,17799661 +g1,17208:12002758,17799661 +g1,17208:12818025,17799661 +g1,17208:14650411,17799661 +g1,17208:17030023,17799661 +g1,17208:18220812,17799661 +g1,17208:21763688,17799661 +k1,17209:32583029,17799661:9132444 +g1,17209:32583029,17799661 +) +(1,17210:6630773,19890921:25952256,555811,147783 +(1,17210:6630773,19890921:2899444,534184,12975 +g1,17210:6630773,19890921 +g1,17210:9530217,19890921 +) +k1,17210:32583028,19890921:19905380 +g1,17210:32583028,19890921 +) +(1,17216:6630773,21125625:25952256,513147,134348 +k1,17215:7782077,21125625:197755 +k1,17215:9259750,21125625:197755 +k1,17215:10855388,21125625:197755 +k1,17215:11409003,21125625:197755 +k1,17215:13731435,21125625:197755 +k1,17215:16590607,21125625:197755 +k1,17215:18523755,21125625:197755 +k1,17215:19077370,21125625:197755 +k1,17215:21677675,21125625:197755 +k1,17215:23443051,21125625:197755 +k1,17215:24659891,21125625:197755 +k1,17215:28028933,21125625:197755 +$1,17215:28236027,21125625 +k1,17215:29816755,21125625:0 +k1,17215:30211937,21125625:0 +k1,17215:30607119,21125625:0 +k1,17215:31002301,21125625:0 +k1,17215:32187847,21125625:0 +k1,17216:32583029,21125625:0 +) +(1,17216:6630773,21967113:25952256,513147,134348 +k1,17215:10187411,21967113:0 +k1,17215:10582593,21967113:0 +$1,17215:12163321,21967113 +k1,17215:12556734,21967113:186319 +k1,17215:14751076,21967113:186319 +k1,17215:16672788,21967113:186319 +k1,17215:17214967,21967113:186319 +k1,17215:20160351,21967113:186318 +k1,17215:21576781,21967113:186319 +k1,17215:24286236,21967113:186319 +k1,17215:26706677,21967113:186319 +k1,17215:27846545,21967113:186319 +k1,17215:30466871,21967113:186319 +k1,17215:32583029,21967113:0 +) +(1,17216:6630773,22808601:25952256,513147,7863 +g1,17215:8219365,22808601 +g1,17215:9986215,22808601 +g1,17215:10541304,22808601 +g1,17215:14474119,22808601 +k1,17216:32583029,22808601:15532690 +g1,17216:32583029,22808601 +) +v1,17218:6630773,24124357:0,393216,0 +(1,17219:6630773,27178984:25952256,3447843,616038 +g1,17219:6630773,27178984 +(1,17219:6630773,27178984:25952256,3447843,616038 +(1,17219:6630773,27795022:25952256,4063881,0 +[1,17219:6630773,27795022:25952256,4063881,0 +(1,17219:6630773,27768808:25952256,4011453,0 +r1,17219:6656987,27768808:26214,4011453,0 +[1,17219:6656987,27768808:25899828,4011453,0 +(1,17219:6656987,27178984:25899828,2831805,0 +[1,17219:7246811,27178984:24720180,2831805,0 +(1,17219:7246811,25369525:24720180,1022346,134348 +k1,17218:8773397,25369525:271073 +k1,17218:10425313,25369525:271072 +k1,17218:13357803,25369525:271073 +k1,17218:15489442,25369525:271072 +k1,17218:17942209,25369525:271073 +k1,17218:19232366,25369525:271072 +k1,17218:23777697,25369525:271073 +k1,17218:24708061,25369525:271072 +k1,17218:25998219,25369525:271073 +k1,17218:29564441,25369525:271072 +k1,17218:31966991,25369525:0 +) +(1,17219:7246811,26211013:24720180,513147,134348 +k1,17218:11212504,26211013:142978 +k1,17218:12900820,26211013:142977 +k1,17218:17106375,26211013:142978 +k1,17218:20414742,26211013:142978 +k1,17218:23538296,26211013:142977 +k1,17218:27955532,26211013:142978 +k1,17218:31966991,26211013:0 +) +(1,17219:7246811,27052501:24720180,505283,126483 +g1,17218:8578502,27052501 +g1,17218:9525497,27052501 +g1,17218:12575542,27052501 +k1,17219:31966991,27052501:17239902 +g1,17219:31966991,27052501 +) +] +) +] +r1,17219:32583029,27768808:26214,4011453,0 +) +] +) +) +g1,17219:32583029,27178984 +) +h1,17219:6630773,27795022:0,0,0 +(1,17222:6630773,29110778:25952256,513147,134348 +h1,17221:6630773,29110778:983040,0,0 +k1,17221:9273441,29110778:171305 +k1,17221:10313099,29110778:171306 +k1,17221:11576889,29110778:171305 +k1,17221:14443690,29110778:171305 +(1,17221:14443690,29110778:0,459977,115847 +r1,17221:17967362,29110778:3523672,575824,115847 +k1,17221:14443690,29110778:-3523672 +) +(1,17221:14443690,29110778:3523672,459977,115847 +k1,17221:14443690,29110778:3277 +h1,17221:17964085,29110778:0,411205,112570 +) +k1,17221:18138668,29110778:171306 +k1,17221:19877594,29110778:171305 +k1,17221:22629052,29110778:171306 +k1,17221:25478157,29110778:171305 +k1,17221:26300890,29110778:171305 +k1,17221:28906203,29110778:171306 +k1,17221:31193666,29110778:171305 +k1,17221:32583029,29110778:0 +) +(1,17222:6630773,29952266:25952256,513147,7863 +g1,17221:8397623,29952266 +g1,17221:9753562,29952266 +k1,17222:32583028,29952266:20550124 +g1,17222:32583028,29952266 +) +v1,17224:6630773,31092712:0,393216,0 +(1,17232:6630773,34047354:25952256,3347858,196608 +g1,17232:6630773,34047354 +g1,17232:6630773,34047354 +g1,17232:6434165,34047354 +(1,17232:6434165,34047354:0,3347858,196608 +r1,17232:32779637,34047354:26345472,3544466,196608 +k1,17232:6434165,34047354:-26345472 +) +(1,17232:6434165,34047354:26345472,3347858,196608 +[1,17232:6630773,34047354:25952256,3151250,0 +(1,17226:6630773,31300330:25952256,404226,101187 +(1,17225:6630773,31300330:0,0,0 +g1,17225:6630773,31300330 +g1,17225:6630773,31300330 +g1,17225:6303093,31300330 +(1,17225:6303093,31300330:0,0,0 +) +g1,17225:6630773,31300330 +) +g1,17226:9159939,31300330 +g1,17226:10108377,31300330 +h1,17226:17695873,31300330:0,0,0 +k1,17226:32583029,31300330:14887156 +g1,17226:32583029,31300330 +) +(1,17227:6630773,31966508:25952256,410518,9436 +h1,17227:6630773,31966508:0,0,0 +g1,17227:10108376,31966508 +k1,17227:10108376,31966508:0 +h1,17227:10740668,31966508:0,0,0 +k1,17227:32583028,31966508:21842360 +g1,17227:32583028,31966508 +) +(1,17228:6630773,32632686:25952256,410518,107478 +h1,17228:6630773,32632686:0,0,0 +g1,17228:6946919,32632686 +g1,17228:7263065,32632686 +g1,17228:7579211,32632686 +g1,17228:7895357,32632686 +g1,17228:15482853,32632686 +k1,17228:15482853,32632686:0 +h1,17228:25915660,32632686:0,0,0 +k1,17228:32583029,32632686:6667369 +g1,17228:32583029,32632686 +) +(1,17229:6630773,33298864:25952256,410518,101187 +h1,17229:6630773,33298864:0,0,0 +g1,17229:6946919,33298864 +g1,17229:7263065,33298864 +g1,17229:7579211,33298864 +g1,17229:7895357,33298864 +g1,17229:8211503,33298864 +g1,17229:8527649,33298864 +g1,17229:8843795,33298864 +g1,17229:9159941,33298864 +g1,17229:9476087,33298864 +g1,17229:9792233,33298864 +g1,17229:10108379,33298864 +g1,17229:10424525,33298864 +g1,17229:10740671,33298864 +g1,17229:11056817,33298864 +g1,17229:11372963,33298864 +g1,17229:11689109,33298864 +g1,17229:12005255,33298864 +g1,17229:12321401,33298864 +g1,17229:12637547,33298864 +g1,17229:13902130,33298864 +g1,17229:14534422,33298864 +g1,17229:16115151,33298864 +g1,17229:18644317,33298864 +g1,17229:19276609,33298864 +h1,17229:20857338,33298864:0,0,0 +k1,17229:32583029,33298864:11725691 +g1,17229:32583029,33298864 +) +(1,17230:6630773,33965042:25952256,410518,82312 +h1,17230:6630773,33965042:0,0,0 +g1,17230:11689104,33965042 +g1,17230:14850561,33965042 +g1,17230:15482853,33965042 +h1,17230:16115145,33965042:0,0,0 +k1,17230:32583029,33965042:16467884 +g1,17230:32583029,33965042 +) +] +) +g1,17232:32583029,34047354 +g1,17232:6630773,34047354 +g1,17232:6630773,34047354 +g1,17232:32583029,34047354 +g1,17232:32583029,34047354 +) +h1,17232:6630773,34243962:0,0,0 +(1,17236:6630773,35559718:25952256,513147,134348 +h1,17235:6630773,35559718:983040,0,0 +k1,17235:8985699,35559718:175199 +k1,17235:12426558,35559718:175200 +k1,17235:14513442,35559718:175199 +k1,17235:15880087,35559718:175200 +k1,17235:19252132,35559718:175199 +k1,17235:21437976,35559718:175199 +k1,17235:22560827,35559718:175200 +k1,17235:24187648,35559718:175199 +k1,17235:26701173,35559718:175200 +k1,17235:29303170,35559718:175199 +k1,17235:31008636,35559718:175200 +k1,17235:31835263,35559718:175199 +k1,17235:32583029,35559718:0 +) +(1,17236:6630773,36401206:25952256,513147,134348 +k1,17235:8266084,36401206:221044 +k1,17235:10054748,36401206:221043 +k1,17235:10631652,36401206:221044 +k1,17235:12725714,36401206:221043 +k1,17235:15098305,36401206:221044 +k1,17235:16272897,36401206:221043 +k1,17235:17309209,36401206:221044 +k1,17235:18733493,36401206:221043 +k1,17235:19716065,36401206:221044 +k1,17235:22676513,36401206:221043 +k1,17235:24291508,36401206:221044 +k1,17235:24868411,36401206:221043 +k1,17235:27159082,36401206:221044 +k1,17235:29358002,36401206:221043 +k1,17235:32583029,36401206:0 +) +(1,17236:6630773,37242694:25952256,513147,134348 +k1,17235:8009322,37242694:181862 +k1,17235:9580548,37242694:181863 +k1,17235:12541137,37242694:181862 +k1,17235:13254496,37242694:181862 +k1,17235:14052396,37242694:181862 +k1,17235:15622967,37242694:181863 +k1,17235:17546121,37242694:181862 +k1,17235:19121934,37242694:181862 +k1,17235:21969802,37242694:181863 +k1,17235:24219980,37242694:181862 +k1,17235:25593287,37242694:181862 +k1,17235:27393233,37242694:181862 +k1,17235:28860912,37242694:181863 +k1,17235:31821501,37242694:181862 +k1,17235:32583029,37242694:0 +) +(1,17236:6630773,38084182:25952256,505283,102891 +g1,17235:7849087,38084182 +g1,17235:10624536,38084182 +g1,17235:11509927,38084182 +g1,17235:12987763,38084182 +g1,17235:13873154,38084182 +g1,17235:15091468,38084182 +k1,17236:32583029,38084182:15892483 +g1,17236:32583029,38084182 +) +v1,17238:6630773,39224628:0,393216,0 +(1,17258:6630773,45510161:25952256,6678749,196608 +g1,17258:6630773,45510161 +g1,17258:6630773,45510161 +g1,17258:6434165,45510161 +(1,17258:6434165,45510161:0,6678749,196608 +r1,17258:32779637,45510161:26345472,6875357,196608 +k1,17258:6434165,45510161:-26345472 +) +(1,17258:6434165,45510161:26345472,6678749,196608 +[1,17258:6630773,45510161:25952256,6482141,0 +(1,17240:6630773,39438538:25952256,410518,101187 +(1,17239:6630773,39438538:0,0,0 +g1,17239:6630773,39438538 +g1,17239:6630773,39438538 +g1,17239:6303093,39438538 +(1,17239:6303093,39438538:0,0,0 +) +g1,17239:6630773,39438538 +) +k1,17240:6630773,39438538:0 +g1,17240:20857328,39438538 +g1,17240:21805765,39438538 +g1,17240:27180242,39438538 +k1,17240:27180242,39438538:0 +h1,17240:28444824,39438538:0,0,0 +k1,17240:32583029,39438538:4138205 +g1,17240:32583029,39438538 +) +(1,17241:6630773,40104716:25952256,404226,76021 +h1,17241:6630773,40104716:0,0,0 +g1,17241:6946919,40104716 +g1,17241:7263065,40104716 +g1,17241:11056814,40104716 +g1,17241:11689106,40104716 +g1,17241:12637543,40104716 +k1,17241:12637543,40104716:0 +h1,17241:13902125,40104716:0,0,0 +k1,17241:32583029,40104716:18680904 +g1,17241:32583029,40104716 +) +(1,17242:6630773,40770894:25952256,404226,101187 +h1,17242:6630773,40770894:0,0,0 +g1,17242:6946919,40770894 +g1,17242:7263065,40770894 +g1,17242:14534415,40770894 +g1,17242:15166707,40770894 +k1,17242:15166707,40770894:0 +h1,17242:15798999,40770894:0,0,0 +k1,17242:32583029,40770894:16784030 +g1,17242:32583029,40770894 +) +(1,17243:6630773,41437072:25952256,404226,107478 +h1,17243:6630773,41437072:0,0,0 +g1,17243:6946919,41437072 +g1,17243:7263065,41437072 +g1,17243:7579211,41437072 +g1,17243:7895357,41437072 +g1,17243:8211503,41437072 +g1,17243:8527649,41437072 +g1,17243:8843795,41437072 +g1,17243:9159941,41437072 +g1,17243:9476087,41437072 +g1,17243:9792233,41437072 +g1,17243:10108379,41437072 +g1,17243:10424525,41437072 +g1,17243:10740671,41437072 +g1,17243:11056817,41437072 +g1,17243:11372963,41437072 +g1,17243:11689109,41437072 +g1,17243:12005255,41437072 +g1,17243:12321401,41437072 +g1,17243:12637547,41437072 +g1,17243:15482858,41437072 +g1,17243:16115150,41437072 +g1,17243:21173482,41437072 +g1,17243:23386502,41437072 +g1,17243:24018794,41437072 +g1,17243:28444834,41437072 +g1,17243:29393271,41437072 +g1,17243:30025563,41437072 +k1,17243:30025563,41437072:0 +h1,17243:32238583,41437072:0,0,0 +k1,17243:32583029,41437072:344446 +g1,17243:32583029,41437072 +) +(1,17244:6630773,42103250:25952256,404226,82312 +h1,17244:6630773,42103250:0,0,0 +g1,17244:6946919,42103250 +g1,17244:7263065,42103250 +g1,17244:7579211,42103250 +g1,17244:7895357,42103250 +g1,17244:8211503,42103250 +g1,17244:8527649,42103250 +g1,17244:8843795,42103250 +g1,17244:9159941,42103250 +g1,17244:9476087,42103250 +g1,17244:9792233,42103250 +g1,17244:10108379,42103250 +g1,17244:10424525,42103250 +g1,17244:10740671,42103250 +g1,17244:11056817,42103250 +g1,17244:11372963,42103250 +g1,17244:11689109,42103250 +g1,17244:12005255,42103250 +g1,17244:12321401,42103250 +g1,17244:12637547,42103250 +g1,17244:14534421,42103250 +g1,17244:15166713,42103250 +g1,17244:21489628,42103250 +g1,17244:23702648,42103250 +k1,17244:23702648,42103250:0 +h1,17244:26231813,42103250:0,0,0 +k1,17244:32583029,42103250:6351216 +g1,17244:32583029,42103250 +) +(1,17245:6630773,42769428:25952256,404226,82312 +h1,17245:6630773,42769428:0,0,0 +g1,17245:6946919,42769428 +g1,17245:7263065,42769428 +g1,17245:7579211,42769428 +g1,17245:7895357,42769428 +g1,17245:8211503,42769428 +g1,17245:8527649,42769428 +g1,17245:8843795,42769428 +g1,17245:9159941,42769428 +g1,17245:9476087,42769428 +g1,17245:9792233,42769428 +g1,17245:10108379,42769428 +g1,17245:10424525,42769428 +g1,17245:10740671,42769428 +g1,17245:11056817,42769428 +g1,17245:11372963,42769428 +g1,17245:11689109,42769428 +g1,17245:12005255,42769428 +g1,17245:12321401,42769428 +g1,17245:12637547,42769428 +g1,17245:14850567,42769428 +g1,17245:15482859,42769428 +g1,17245:22121919,42769428 +g1,17245:24018794,42769428 +k1,17245:24018794,42769428:0 +h1,17245:26547959,42769428:0,0,0 +k1,17245:32583029,42769428:6035070 +g1,17245:32583029,42769428 +) +(1,17246:6630773,43435606:25952256,410518,101187 +h1,17246:6630773,43435606:0,0,0 +g1,17246:6946919,43435606 +g1,17246:7263065,43435606 +g1,17246:7579211,43435606 +g1,17246:7895357,43435606 +g1,17246:8211503,43435606 +g1,17246:8527649,43435606 +g1,17246:8843795,43435606 +g1,17246:9159941,43435606 +g1,17246:9476087,43435606 +g1,17246:9792233,43435606 +g1,17246:10108379,43435606 +g1,17246:10424525,43435606 +g1,17246:10740671,43435606 +g1,17246:11056817,43435606 +g1,17246:11372963,43435606 +g1,17246:11689109,43435606 +g1,17246:12005255,43435606 +g1,17246:12321401,43435606 +g1,17246:12637547,43435606 +g1,17246:14534421,43435606 +g1,17246:15166713,43435606 +g1,17246:21805773,43435606 +g1,17246:24018793,43435606 +g1,17246:26547959,43435606 +g1,17246:27496397,43435606 +h1,17246:31922437,43435606:0,0,0 +k1,17246:32583029,43435606:660592 +g1,17246:32583029,43435606 +) +(1,17247:6630773,44101784:25952256,0,0 +h1,17247:6630773,44101784:0,0,0 +h1,17247:6630773,44101784:0,0,0 +k1,17247:32583029,44101784:25952256 +g1,17247:32583029,44101784 +) +(1,17248:6630773,44767962:25952256,410518,101187 +h1,17248:6630773,44767962:0,0,0 +g1,17248:20857328,44767962 +g1,17248:21805765,44767962 +g1,17248:26231805,44767962 +k1,17248:26231805,44767962:0 +h1,17248:27496387,44767962:0,0,0 +k1,17248:32583029,44767962:5086642 +g1,17248:32583029,44767962 +) +(1,17249:6630773,45434140:25952256,404226,76021 +h1,17249:6630773,45434140:0,0,0 +g1,17249:6946919,45434140 +g1,17249:7263065,45434140 +g1,17249:11056814,45434140 +g1,17249:11689106,45434140 +g1,17249:12637543,45434140 +k1,17249:12637543,45434140:0 +h1,17249:13902125,45434140:0,0,0 +k1,17249:32583029,45434140:18680904 +g1,17249:32583029,45434140 +) +] +) +g1,17258:32583029,45510161 +g1,17258:6630773,45510161 +g1,17258:6630773,45510161 +g1,17258:32583029,45510161 +g1,17258:32583029,45510161 +) +] +(1,17258:32583029,45706769:0,0,0 +g1,17258:32583029,45706769 +) +) +] +(1,17258:6630773,47279633:25952256,0,0 +h1,17258:6630773,47279633:25952256,0,0 +) +] +h1,17258:4262630,4025873:0,0,0 ] !21882 }333 -Input:2536:D:\aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec -!98 +Input:2533:C:/Users\Aphalo\Documents\texmf.user\tex\latex\lucidaot\LucidaConsoleDK.fontspec +!104 {334 -[1,17286:4262630,47279633:28320399,43253760,0 -(1,17286:4262630,4025873:0,0,0 -[1,17286:-473657,4025873:25952256,0,0 -(1,17286:-473657,-710414:25952256,0,0 -h1,17286:-473657,-710414:0,0,0 -(1,17286:-473657,-710414:0,0,0 -(1,17286:-473657,-710414:0,0,0 -g1,17286:-473657,-710414 -(1,17286:-473657,-710414:65781,0,65781 -g1,17286:-407876,-710414 -[1,17286:-407876,-644633:0,0,0 +[1,17319:4262630,47279633:28320399,43253760,0 +(1,17319:4262630,4025873:0,0,0 +[1,17319:-473657,4025873:25952256,0,0 +(1,17319:-473657,-710414:25952256,0,0 +h1,17319:-473657,-710414:0,0,0 +(1,17319:-473657,-710414:0,0,0 +(1,17319:-473657,-710414:0,0,0 +g1,17319:-473657,-710414 +(1,17319:-473657,-710414:65781,0,65781 +g1,17319:-407876,-710414 +[1,17319:-407876,-644633:0,0,0 ] ) -k1,17286:-473657,-710414:-65781 +k1,17319:-473657,-710414:-65781 ) ) -k1,17286:25478599,-710414:25952256 -g1,17286:25478599,-710414 +k1,17319:25478599,-710414:25952256 +g1,17319:25478599,-710414 ) ] ) -[1,17286:6630773,47279633:25952256,43253760,0 -[1,17286:6630773,4812305:25952256,786432,0 -(1,17286:6630773,4812305:25952256,505283,11795 -(1,17286:6630773,4812305:25952256,505283,11795 -g1,17286:3078558,4812305 -[1,17286:3078558,4812305:0,0,0 -(1,17286:3078558,2439708:0,1703936,0 -k1,17286:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17286:2537886,2439708:1179648,16384,0 +[1,17319:6630773,47279633:25952256,43253760,0 +[1,17319:6630773,4812305:25952256,786432,0 +(1,17319:6630773,4812305:25952256,505283,11795 +(1,17319:6630773,4812305:25952256,505283,11795 +g1,17319:3078558,4812305 +[1,17319:3078558,4812305:0,0,0 +(1,17319:3078558,2439708:0,1703936,0 +k1,17319:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17319:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17286:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17319:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17286:3078558,4812305:0,0,0 -(1,17286:3078558,2439708:0,1703936,0 -g1,17286:29030814,2439708 -g1,17286:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17286:36151628,1915420:16384,1179648,0 +[1,17319:3078558,4812305:0,0,0 +(1,17319:3078558,2439708:0,1703936,0 +g1,17319:29030814,2439708 +g1,17319:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17319:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17286:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17319:37855564,2439708:1179648,16384,0 ) ) -k1,17286:3078556,2439708:-34777008 +k1,17319:3078556,2439708:-34777008 ) ] -[1,17286:3078558,4812305:0,0,0 -(1,17286:3078558,49800853:0,16384,2228224 -k1,17286:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17286:2537886,49800853:1179648,16384,0 +[1,17319:3078558,4812305:0,0,0 +(1,17319:3078558,49800853:0,16384,2228224 +k1,17319:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17319:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17286:3078558,51504789:16384,1179648,0 -) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 -) -] -) -) -) -] -[1,17286:3078558,4812305:0,0,0 -(1,17286:3078558,49800853:0,16384,2228224 -g1,17286:29030814,49800853 -g1,17286:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17286:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17286:37855564,49800853:1179648,16384,0 -) -) -k1,17286:3078556,49800853:-34777008 -) -] -g1,17286:6630773,4812305 -g1,17286:6630773,4812305 -g1,17286:10069447,4812305 -k1,17286:31387651,4812305:21318204 -) -) -] -[1,17286:6630773,45706769:25952256,40108032,0 -(1,17286:6630773,45706769:25952256,40108032,0 -(1,17286:6630773,45706769:0,0,0 -g1,17286:6630773,45706769 -) -[1,17286:6630773,45706769:25952256,40108032,0 -v1,17225:6630773,6254097:0,393216,0 -(1,17225:6630773,10566261:25952256,4705380,196608 -g1,17225:6630773,10566261 -g1,17225:6630773,10566261 -g1,17225:6434165,10566261 -(1,17225:6434165,10566261:0,4705380,196608 -r1,17225:32779637,10566261:26345472,4901988,196608 -k1,17225:6434165,10566261:-26345472 -) -(1,17225:6434165,10566261:26345472,4705380,196608 -[1,17225:6630773,10566261:25952256,4508772,0 -(1,17217:6630773,6461715:25952256,404226,101187 -h1,17217:6630773,6461715:0,0,0 -g1,17217:6946919,6461715 -g1,17217:7263065,6461715 -g1,17217:14534415,6461715 -g1,17217:15166707,6461715 -k1,17217:15166707,6461715:0 -h1,17217:15798999,6461715:0,0,0 -k1,17217:32583029,6461715:16784030 -g1,17217:32583029,6461715 -) -(1,17218:6630773,7127893:25952256,404226,107478 -h1,17218:6630773,7127893:0,0,0 -g1,17218:6946919,7127893 -g1,17218:7263065,7127893 -g1,17218:7579211,7127893 -g1,17218:7895357,7127893 -g1,17218:8211503,7127893 -g1,17218:8527649,7127893 -g1,17218:8843795,7127893 -g1,17218:9159941,7127893 -g1,17218:9476087,7127893 -g1,17218:9792233,7127893 -g1,17218:10108379,7127893 -g1,17218:10424525,7127893 -g1,17218:10740671,7127893 -g1,17218:11056817,7127893 -g1,17218:11372963,7127893 -g1,17218:11689109,7127893 -g1,17218:12005255,7127893 -g1,17218:12321401,7127893 -g1,17218:12637547,7127893 -g1,17218:15482858,7127893 -g1,17218:16115150,7127893 -g1,17218:21173482,7127893 -g1,17218:23386502,7127893 -g1,17218:24018794,7127893 -g1,17218:28444834,7127893 -g1,17218:29393271,7127893 -g1,17218:30025563,7127893 -k1,17218:30025563,7127893:0 -h1,17218:32238583,7127893:0,0,0 -k1,17218:32583029,7127893:344446 -g1,17218:32583029,7127893 -) -(1,17219:6630773,7794071:25952256,404226,82312 -h1,17219:6630773,7794071:0,0,0 -g1,17219:6946919,7794071 -g1,17219:7263065,7794071 -g1,17219:7579211,7794071 -g1,17219:7895357,7794071 -g1,17219:8211503,7794071 -g1,17219:8527649,7794071 -g1,17219:8843795,7794071 -g1,17219:9159941,7794071 -g1,17219:9476087,7794071 -g1,17219:9792233,7794071 -g1,17219:10108379,7794071 -g1,17219:10424525,7794071 -g1,17219:10740671,7794071 -g1,17219:11056817,7794071 -g1,17219:11372963,7794071 -g1,17219:11689109,7794071 -g1,17219:12005255,7794071 -g1,17219:12321401,7794071 -g1,17219:12637547,7794071 -g1,17219:14850567,7794071 -g1,17219:15482859,7794071 -g1,17219:21805774,7794071 -g1,17219:24018794,7794071 -k1,17219:24018794,7794071:0 -h1,17219:26547959,7794071:0,0,0 -k1,17219:32583029,7794071:6035070 -g1,17219:32583029,7794071 -) -(1,17220:6630773,8460249:25952256,404226,82312 -h1,17220:6630773,8460249:0,0,0 -g1,17220:6946919,8460249 -g1,17220:7263065,8460249 -g1,17220:7579211,8460249 -g1,17220:7895357,8460249 -g1,17220:8211503,8460249 -g1,17220:8527649,8460249 -g1,17220:8843795,8460249 -g1,17220:9159941,8460249 -g1,17220:9476087,8460249 -g1,17220:9792233,8460249 -g1,17220:10108379,8460249 -g1,17220:10424525,8460249 -g1,17220:10740671,8460249 -g1,17220:11056817,8460249 -g1,17220:11372963,8460249 -g1,17220:11689109,8460249 -g1,17220:12005255,8460249 -g1,17220:12321401,8460249 -g1,17220:12637547,8460249 -g1,17220:15166713,8460249 -g1,17220:15799005,8460249 -g1,17220:22438065,8460249 -g1,17220:24334940,8460249 -k1,17220:24334940,8460249:0 -h1,17220:26864105,8460249:0,0,0 -k1,17220:32583029,8460249:5718924 -g1,17220:32583029,8460249 -) -(1,17221:6630773,9126427:25952256,410518,101187 -h1,17221:6630773,9126427:0,0,0 -g1,17221:6946919,9126427 -g1,17221:7263065,9126427 -g1,17221:7579211,9126427 -g1,17221:7895357,9126427 -g1,17221:8211503,9126427 -g1,17221:8527649,9126427 -g1,17221:8843795,9126427 -g1,17221:9159941,9126427 -g1,17221:9476087,9126427 -g1,17221:9792233,9126427 -g1,17221:10108379,9126427 -g1,17221:10424525,9126427 -g1,17221:10740671,9126427 -g1,17221:11056817,9126427 -g1,17221:11372963,9126427 -g1,17221:11689109,9126427 -g1,17221:12005255,9126427 -g1,17221:12321401,9126427 -g1,17221:12637547,9126427 -g1,17221:14850567,9126427 -g1,17221:15482859,9126427 -g1,17221:22121919,9126427 -g1,17221:24334939,9126427 -g1,17221:26864105,9126427 -g1,17221:27812543,9126427 -h1,17221:31290145,9126427:0,0,0 -k1,17221:32583029,9126427:1292884 -g1,17221:32583029,9126427 -) -(1,17222:6630773,9792605:25952256,0,0 -h1,17222:6630773,9792605:0,0,0 -h1,17222:6630773,9792605:0,0,0 -k1,17222:32583029,9792605:25952256 -g1,17222:32583029,9792605 -) -(1,17223:6630773,10458783:25952256,410518,107478 -h1,17223:6630773,10458783:0,0,0 -g1,17223:14850561,10458783 -h1,17223:18644309,10458783:0,0,0 -k1,17223:32583029,10458783:13938720 -g1,17223:32583029,10458783 -) -] -) -g1,17225:32583029,10566261 -g1,17225:6630773,10566261 -g1,17225:6630773,10566261 -g1,17225:32583029,10566261 -g1,17225:32583029,10566261 -) -h1,17225:6630773,10762869:0,0,0 -v1,17229:6630773,12596631:0,393216,0 -(1,17230:6630773,18196641:25952256,5993226,616038 -g1,17230:6630773,18196641 -(1,17230:6630773,18196641:25952256,5993226,616038 -(1,17230:6630773,18812679:25952256,6609264,0 -[1,17230:6630773,18812679:25952256,6609264,0 -(1,17230:6630773,18786465:25952256,6556836,0 -r1,17230:6656987,18786465:26214,6556836,0 -[1,17230:6656987,18786465:25899828,6556836,0 -(1,17230:6656987,18196641:25899828,5377188,0 -[1,17230:7246811,18196641:24720180,5377188,0 -(1,17230:7246811,13981338:24720180,1161885,196608 -(1,17229:7246811,13981338:0,1161885,196608 -r1,17230:8794447,13981338:1547636,1358493,196608 -k1,17229:7246811,13981338:-1547636 -) -(1,17229:7246811,13981338:1547636,1161885,196608 -) -k1,17229:8972317,13981338:177870 -k1,17229:10695527,13981338:177871 -k1,17229:14168547,13981338:177870 -k1,17229:16054941,13981338:177870 -k1,17229:18965663,13981338:177871 -k1,17229:20618748,13981338:177870 -k1,17229:21152479,13981338:177871 -k1,17229:23637872,13981338:177870 -k1,17229:27362550,13981338:177870 -k1,17229:28731866,13981338:177871 -k1,17229:29928821,13981338:177870 -k1,17229:31966991,13981338:0 -) -(1,17230:7246811,14822826:24720180,513147,134348 -k1,17229:8886708,14822826:250534 -k1,17229:10241525,14822826:250535 -k1,17229:11777875,14822826:250534 -k1,17229:12776176,14822826:250535 -k1,17229:16922170,14822826:250534 -k1,17229:17858867,14822826:250535 -k1,17229:18465261,14822826:250534 -(1,17229:18465261,14822826:0,414482,115847 -r1,17230:19526950,14822826:1061689,530329,115847 -k1,17229:18465261,14822826:-1061689 -) -(1,17229:18465261,14822826:1061689,414482,115847 -k1,17229:18465261,14822826:3277 -h1,17229:19523673,14822826:0,411205,112570 -) -k1,17229:19777484,14822826:250534 -k1,17229:21011059,14822826:250535 -k1,17229:23820119,14822826:250534 -k1,17229:24426514,14822826:250535 -k1,17229:27299799,14822826:250534 -k1,17229:28233219,14822826:250535 -k1,17229:30563210,14822826:250534 -k1,17229:31966991,14822826:0 -) -(1,17230:7246811,15664314:24720180,505283,134348 -k1,17229:8247547,15664314:182847 -k1,17229:10505918,15664314:182846 -k1,17229:12717760,15664314:182847 -k1,17229:13358703,15664314:182846 -k1,17229:14073047,15664314:182847 -k1,17229:16885854,15664314:182847 -k1,17229:17720128,15664314:182846 -k1,17229:20190837,15664314:182847 -k1,17229:22012738,15664314:182846 -k1,17229:24754111,15664314:182847 -k1,17229:25956042,15664314:182846 -k1,17229:28007304,15664314:182831 -k1,17229:30149021,15664314:182846 -k1,17229:30947906,15664314:182847 -k1,17229:31966991,15664314:0 -) -(1,17230:7246811,16505802:24720180,505283,134348 -k1,17229:10125813,16505802:256251 -k1,17229:11064949,16505802:256251 -k1,17229:13400657,16505802:256251 -k1,17229:15390991,16505802:256251 -k1,17229:19732101,16505802:256251 -k1,17229:21007437,16505802:256251 -k1,17229:21678474,16505802:256194 -k1,17229:24514877,16505802:256251 -k1,17229:28089215,16505802:256251 -k1,17229:29449748,16505802:256251 -k1,17229:30453765,16505802:256251 -k1,17229:31966991,16505802:0 -) -(1,17230:7246811,17347290:24720180,513147,134348 -k1,17229:8096103,17347290:197864 -k1,17229:10581829,17347290:197864 -k1,17229:14074843,17347290:197864 -k1,17229:17005559,17347290:197865 -k1,17229:17964951,17347290:197864 -k1,17229:20231131,17347290:197864 -k1,17229:21088287,17347290:197864 -k1,17229:22305236,17347290:197864 -k1,17229:24667754,17347290:197864 -k1,17229:26966048,17347290:197865 -k1,17229:29086738,17347290:197864 -k1,17229:31315563,17347290:197864 -k1,17229:31966991,17347290:0 -) -(1,17230:7246811,18188778:24720180,505283,7863 -g1,17229:8954679,18188778 -k1,17230:31966991,18188778:21762540 -g1,17230:31966991,18188778 -) -] -) -] -r1,17230:32583029,18786465:26214,6556836,0 -) -] -) -) -g1,17230:32583029,18196641 -) -h1,17230:6630773,18812679:0,0,0 -(1,17233:6630773,22116385:25952256,32768,229376 -(1,17233:6630773,22116385:0,32768,229376 -(1,17233:6630773,22116385:5505024,32768,229376 -r1,17233:12135797,22116385:5505024,262144,229376 -) -k1,17233:6630773,22116385:-5505024 -) -(1,17233:6630773,22116385:25952256,32768,0 -r1,17233:32583029,22116385:25952256,32768,0 -) -) -(1,17233:6630773,23720713:25952256,606339,14155 -(1,17233:6630773,23720713:2464678,582746,14155 -g1,17233:6630773,23720713 -g1,17233:9095451,23720713 -) -k1,17233:32583029,23720713:19475988 -g1,17233:32583029,23720713 -) -(1,17240:6630773,24955417:25952256,513147,134348 -k1,17239:8153628,24955417:251457 -k1,17239:9064376,24955417:251456 -k1,17239:10334918,24955417:251457 -k1,17239:14155465,24955417:251456 -k1,17239:15066214,24955417:251457 -k1,17239:17053064,24955417:251457 -k1,17239:20458112,24955417:251456 -k1,17239:21241066,24955417:251457 -k1,17239:22777029,24955417:251457 -k1,17239:25438899,24955417:251456 -k1,17239:26349648,24955417:251457 -k1,17239:28298486,24955417:251456 -k1,17239:29741388,24955417:251457 -k1,17239:32583029,24955417:0 -) -(1,17240:6630773,25796905:25952256,505283,134348 -k1,17239:7961250,25796905:226195 -k1,17239:8935210,25796905:226194 -k1,17239:12189824,25796905:226195 -k1,17239:13882714,25796905:226194 -k1,17239:17103249,25796905:226195 -k1,17239:19688084,25796905:226194 -k1,17239:20372376,25796905:226195 -k1,17239:23228530,25796905:226194 -k1,17239:24106153,25796905:226195 -k1,17239:25928804,25796905:226194 -k1,17239:26771037,25796905:226195 -k1,17239:27412047,25796905:226167 -k1,17239:29104938,25796905:226195 -k1,17239:31391584,25796905:226194 -k1,17239:32583029,25796905:0 -) -(1,17240:6630773,26638393:25952256,505283,134348 -k1,17239:9678746,26638393:227303 -k1,17239:11300000,26638393:227303 -k1,17239:13078540,26638393:227303 -k1,17239:14695206,26638393:227303 -k1,17239:16361024,26638393:227303 -k1,17239:17859725,26638393:227303 -k1,17239:20267411,26638393:227303 -k1,17239:23753819,26638393:227303 -k1,17239:25265628,26638393:227303 -k1,17239:25907746,26638393:227275 -k1,17239:28634592,26638393:227303 -k1,17239:30700180,26638393:227303 -k1,17239:32583029,26638393:0 -) -(1,17240:6630773,27479881:25952256,513147,134348 -k1,17239:9186200,27479881:265599 -k1,17239:10067838,27479881:265600 -k1,17239:12003294,27479881:265599 -k1,17239:13460339,27479881:265600 -k1,17239:18124715,27479881:265599 -k1,17239:21174284,27479881:265600 -k1,17239:24127514,27479881:265599 -k1,17239:27024385,27479881:265600 -k1,17239:29104676,27479881:265599 -k1,17239:30389361,27479881:265600 -k1,17239:31923737,27479881:265599 -k1,17239:32583029,27479881:0 -) -(1,17240:6630773,28321369:25952256,505283,134348 -k1,17239:8237622,28321369:217486 -k1,17239:9719953,28321369:217486 -k1,17239:11331389,28321369:217485 -k1,17239:13434346,28321369:217486 -k1,17239:14109929,28321369:217486 -k1,17239:14858912,28321369:217486 -k1,17239:17706358,28321369:217486 -k1,17239:18575271,28321369:217485 -k1,17239:20562884,28321369:217486 -k1,17239:23315303,28321369:217486 -k1,17239:25918299,28321369:217486 -k1,17239:28896160,28321369:217485 -k1,17239:30132731,28321369:217486 -k1,17239:31931601,28321369:217486 -k1,17239:32583029,28321369:0 -) -(1,17240:6630773,29162857:25952256,505283,134348 -k1,17239:8426928,29162857:199698 -k1,17239:10020576,29162857:199697 -k1,17239:11609637,29162857:199698 -k1,17239:12425373,29162857:199698 -k1,17239:15778662,29162857:199697 -k1,17239:17713753,29162857:199698 -k1,17239:18932535,29162857:199697 -k1,17239:20785706,29162857:199698 -k1,17239:22709001,29162857:199698 -k1,17239:23594860,29162857:199697 -k1,17239:25492596,29162857:199698 -k1,17239:27427687,29162857:199698 -k1,17239:29600017,29162857:199697 -k1,17239:31193666,29162857:199698 -k1,17239:32583029,29162857:0 -) -(1,17240:6630773,30004345:25952256,505283,134348 -k1,17239:8816000,30004345:147057 -k1,17239:9579094,30004345:147056 -k1,17239:12357422,30004345:147057 -k1,17239:14414801,30004345:147005 -k1,17239:15793934,30004345:147056 -k1,17239:18358614,30004345:147057 -h1,17239:18757073,30004345:0,0,0 -k1,17239:19284893,30004345:147056 -k1,17239:20812794,30004345:147057 -k1,17239:21491348,30004345:147057 -k1,17239:22409107,30004345:147056 -k1,17239:25765462,30004345:147057 -k1,17239:28396333,30004345:147056 -k1,17239:29615559,30004345:147057 -k1,17239:32583029,30004345:0 -) -(1,17240:6630773,30845833:25952256,513147,134348 -k1,17239:9232365,30845833:240985 -k1,17239:10124778,30845833:240985 -k1,17239:11113529,30845833:240985 -k1,17239:13720364,30845833:240985 -k1,17239:14980434,30845833:240985 -k1,17239:17047907,30845833:240985 -k1,17239:17948185,30845833:240986 -k1,17239:19392411,30845833:240985 -k1,17239:21389106,30845833:240985 -k1,17239:22583640,30845833:240985 -k1,17239:25254700,30845833:240985 -k1,17239:25851545,30845833:240985 -k1,17239:27225648,30845833:240985 -k1,17239:29591310,30845833:240985 -k1,17239:32583029,30845833:0 -) -(1,17240:6630773,31687321:25952256,513147,126483 -k1,17239:7507998,31687321:225797 -k1,17239:9394476,31687321:225796 -k1,17239:10639358,31687321:225797 -k1,17239:12219128,31687321:225796 -k1,17239:14396587,31687321:225797 -k1,17239:15694552,31687321:225796 -k1,17239:19131613,31687321:225797 -k1,17239:21735711,31687321:225796 -k1,17239:24141891,31687321:225797 -k1,17239:26717808,31687321:225796 -k1,17239:27393182,31687321:225797 -k1,17239:28543036,31687321:225796 -k1,17239:30303031,31687321:225797 -k1,17240:32583029,31687321:0 -) -(1,17240:6630773,32528809:25952256,505283,95026 -g1,17239:9961312,32528809 -g1,17239:11351986,32528809 -g1,17239:15136690,32528809 -k1,17240:32583029,32528809:15471739 -g1,17240:32583029,32528809 -) -(1,17242:6630773,33370297:25952256,505283,134348 -h1,17241:6630773,33370297:983040,0,0 -k1,17241:8967282,33370297:156782 -k1,17241:12351057,33370297:156782 -k1,17241:14193426,33370297:156783 -k1,17241:17531326,33370297:156782 -k1,17241:18339536,33370297:156782 -k1,17241:20231711,33370297:156782 -k1,17241:22361127,33370297:156783 -k1,17241:24006232,33370297:156782 -k1,17241:25556965,33370297:156782 -k1,17241:26732832,33370297:156782 -k1,17241:28419881,33370297:156783 -k1,17241:29228091,33370297:156782 -k1,17241:32227169,33370297:156782 -k1,17241:32583029,33370297:0 -) -(1,17242:6630773,34211785:25952256,505283,134348 -k1,17241:10314272,34211785:177323 -k1,17241:11143024,34211785:177324 -k1,17241:11676207,34211785:177323 -k1,17241:13347751,34211785:177323 -k1,17241:14207959,34211785:177323 -k1,17241:16639722,34211785:177324 -k1,17241:19814006,34211785:177323 -k1,17241:20944878,34211785:177323 -k1,17241:22254663,34211785:177323 -k1,17241:23524472,34211785:177324 -k1,17241:24116616,34211785:177301 -k1,17241:26874091,34211785:177323 -k1,17241:29824898,34211785:177324 -k1,17241:30653649,34211785:177323 -k1,17241:32583029,34211785:0 -) -(1,17242:6630773,35053273:25952256,505283,134348 -k1,17241:7246374,35053273:259741 -k1,17241:9000336,35053273:259741 -k1,17241:12593238,35053273:259741 -k1,17241:14864279,35053273:259741 -k1,17241:18120981,35053273:259741 -k1,17241:20766232,35053273:259741 -k1,17241:24021624,35053273:259741 -k1,17241:27798027,35053273:259741 -k1,17241:29759738,35053273:259741 -k1,17241:32583029,35053273:0 -) -(1,17242:6630773,35894761:25952256,513147,134348 -k1,17241:9437263,35894761:230270 -k1,17241:10659092,35894761:230269 -k1,17241:12175178,35894761:230270 -k1,17241:15363088,35894761:230270 -k1,17241:16546907,35894761:230270 -k1,17241:17909638,35894761:230269 -k1,17241:19232393,35894761:230270 -k1,17241:24181255,35894761:230270 -k1,17241:25800888,35894761:230270 -k1,17241:27598778,35894761:230269 -k1,17241:31635378,35894761:230270 -k1,17241:32583029,35894761:0 -) -(1,17242:6630773,36736249:25952256,505283,126483 -g1,17241:8033243,36736249 -k1,17242:32583030,36736249:21714700 -g1,17242:32583030,36736249 -) -v1,17244:6630773,37898564:0,393216,0 -(1,17286:6630773,45510161:25952256,8004813,196608 -g1,17286:6630773,45510161 -g1,17286:6630773,45510161 -g1,17286:6434165,45510161 -(1,17286:6434165,45510161:0,8004813,196608 -r1,17286:32779637,45510161:26345472,8201421,196608 -k1,17286:6434165,45510161:-26345472 -) -(1,17286:6434165,45510161:26345472,8004813,196608 -[1,17286:6630773,45510161:25952256,7808205,0 -(1,17246:6630773,38106182:25952256,404226,101187 -(1,17245:6630773,38106182:0,0,0 -g1,17245:6630773,38106182 -g1,17245:6630773,38106182 -g1,17245:6303093,38106182 -(1,17245:6303093,38106182:0,0,0 -) -g1,17245:6630773,38106182 -) -k1,17246:6630773,38106182:0 -h1,17246:11056813,38106182:0,0,0 -k1,17246:32583029,38106182:21526216 -g1,17246:32583029,38106182 -) -(1,17247:6630773,38772360:25952256,404226,101187 -h1,17247:6630773,38772360:0,0,0 -g1,17247:7895356,38772360 -g1,17247:8843794,38772360 -g1,17247:19592746,38772360 -g1,17247:21805766,38772360 -g1,17247:22438058,38772360 -h1,17247:25915661,38772360:0,0,0 -k1,17247:32583029,38772360:6667368 -g1,17247:32583029,38772360 -) -(1,17248:6630773,39438538:25952256,404226,101187 -h1,17248:6630773,39438538:0,0,0 -g1,17248:10740668,39438538 -g1,17248:18012019,39438538 -k1,17248:18012019,39438538:0 -h1,17248:21173476,39438538:0,0,0 -k1,17248:32583029,39438538:11409553 -g1,17248:32583029,39438538 -) -(1,17249:6630773,40104716:25952256,369623,101187 -h1,17249:6630773,40104716:0,0,0 -g1,17249:6946919,40104716 -g1,17249:7263065,40104716 -g1,17249:7579211,40104716 -g1,17249:7895357,40104716 -g1,17249:8211503,40104716 -g1,17249:8527649,40104716 -g1,17249:8843795,40104716 -g1,17249:9159941,40104716 -g1,17249:12321398,40104716 -g1,17249:12953690,40104716 -k1,17249:12953690,40104716:0 -h1,17249:14850564,40104716:0,0,0 -k1,17249:32583028,40104716:17732464 -g1,17249:32583028,40104716 -) -(1,17250:6630773,40770894:25952256,404226,76021 -h1,17250:6630773,40770894:0,0,0 -g1,17250:6946919,40770894 -g1,17250:7263065,40770894 -g1,17250:7579211,40770894 -g1,17250:7895357,40770894 -g1,17250:8211503,40770894 -g1,17250:8527649,40770894 -g1,17250:8843795,40770894 -g1,17250:9159941,40770894 -g1,17250:11689107,40770894 -g1,17250:12321399,40770894 -k1,17250:12321399,40770894:0 -h1,17250:13902128,40770894:0,0,0 -k1,17250:32583028,40770894:18680900 -g1,17250:32583028,40770894 -) -(1,17251:6630773,41437072:25952256,404226,101187 -h1,17251:6630773,41437072:0,0,0 -g1,17251:6946919,41437072 -g1,17251:7263065,41437072 -g1,17251:7579211,41437072 -g1,17251:7895357,41437072 -g1,17251:8211503,41437072 -g1,17251:8527649,41437072 -g1,17251:8843795,41437072 -g1,17251:9159941,41437072 -g1,17251:9476087,41437072 -g1,17251:9792233,41437072 -g1,17251:14850565,41437072 -g1,17251:20225042,41437072 -k1,17251:20225042,41437072:0 -h1,17251:24651082,41437072:0,0,0 -k1,17251:32583029,41437072:7931947 -g1,17251:32583029,41437072 -) -(1,17252:6630773,42103250:25952256,404226,82312 -h1,17252:6630773,42103250:0,0,0 -g1,17252:6946919,42103250 -g1,17252:7263065,42103250 -g1,17252:7579211,42103250 -g1,17252:7895357,42103250 -g1,17252:8211503,42103250 -g1,17252:8527649,42103250 -g1,17252:8843795,42103250 -g1,17252:9159941,42103250 -g1,17252:9476087,42103250 -g1,17252:9792233,42103250 -k1,17252:9792233,42103250:0 -h1,17252:12005253,42103250:0,0,0 -k1,17252:32583029,42103250:20577776 -g1,17252:32583029,42103250 -) -(1,17253:6630773,42769428:25952256,404226,82312 -h1,17253:6630773,42769428:0,0,0 -g1,17253:6946919,42769428 -g1,17253:7263065,42769428 -g1,17253:7579211,42769428 -g1,17253:7895357,42769428 -g1,17253:8211503,42769428 -g1,17253:8527649,42769428 -g1,17253:8843795,42769428 -g1,17253:9159941,42769428 -g1,17253:9476087,42769428 -g1,17253:9792233,42769428 -k1,17253:9792233,42769428:0 -h1,17253:14850564,42769428:0,0,0 -k1,17253:32583028,42769428:17732464 -g1,17253:32583028,42769428 -) -(1,17254:6630773,43435606:25952256,404226,101187 -h1,17254:6630773,43435606:0,0,0 -g1,17254:6946919,43435606 -g1,17254:7263065,43435606 -g1,17254:7579211,43435606 -g1,17254:7895357,43435606 -g1,17254:8211503,43435606 -g1,17254:8527649,43435606 -g1,17254:8843795,43435606 -g1,17254:9159941,43435606 -g1,17254:9476087,43435606 -g1,17254:9792233,43435606 -k1,17254:9792233,43435606:0 -h1,17254:13585981,43435606:0,0,0 -k1,17254:32583029,43435606:18997048 -g1,17254:32583029,43435606 -) -(1,17255:6630773,44101784:25952256,410518,101187 -h1,17255:6630773,44101784:0,0,0 -g1,17255:6946919,44101784 -g1,17255:7263065,44101784 -g1,17255:7579211,44101784 -g1,17255:7895357,44101784 -g1,17255:8211503,44101784 -g1,17255:8527649,44101784 -g1,17255:8843795,44101784 -g1,17255:9159941,44101784 -g1,17255:9476087,44101784 -g1,17255:9792233,44101784 -k1,17255:9792233,44101784:0 -h1,17255:14218273,44101784:0,0,0 -k1,17255:32583029,44101784:18364756 -g1,17255:32583029,44101784 -) -(1,17256:6630773,44767962:25952256,410518,101187 -h1,17256:6630773,44767962:0,0,0 -g1,17256:6946919,44767962 -g1,17256:7263065,44767962 -g1,17256:7579211,44767962 -g1,17256:7895357,44767962 -g1,17256:8211503,44767962 -g1,17256:8527649,44767962 -g1,17256:8843795,44767962 -g1,17256:9159941,44767962 -g1,17256:9476087,44767962 -g1,17256:9792233,44767962 -h1,17256:14534418,44767962:0,0,0 -k1,17256:32583030,44767962:18048612 -g1,17256:32583030,44767962 -) -(1,17257:6630773,45434140:25952256,404226,76021 -h1,17257:6630773,45434140:0,0,0 -g1,17257:6946919,45434140 -g1,17257:7263065,45434140 -g1,17257:7579211,45434140 -g1,17257:7895357,45434140 -g1,17257:8211503,45434140 -g1,17257:8527649,45434140 -g1,17257:8843795,45434140 -g1,17257:9159941,45434140 -h1,17257:9476087,45434140:0,0,0 -k1,17257:32583029,45434140:23106942 -g1,17257:32583029,45434140 -) -] -) -g1,17286:32583029,45510161 -g1,17286:6630773,45510161 -g1,17286:6630773,45510161 -g1,17286:32583029,45510161 -g1,17286:32583029,45510161 -) -] -(1,17286:32583029,45706769:0,0,0 -g1,17286:32583029,45706769 -) -) -] -(1,17286:6630773,47279633:25952256,0,0 -h1,17286:6630773,47279633:25952256,0,0 -) -] -h1,17286:4262630,4025873:0,0,0 -] -!24869 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17319:3078558,51504789:16384,1179648,0 +) +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 +) +] +) +) +) +] +[1,17319:3078558,4812305:0,0,0 +(1,17319:3078558,49800853:0,16384,2228224 +g1,17319:29030814,49800853 +g1,17319:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17319:36151628,51504789:16384,1179648,0 +) +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 +) +] +) +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17319:37855564,49800853:1179648,16384,0 +) +) +k1,17319:3078556,49800853:-34777008 +) +] +g1,17319:6630773,4812305 +g1,17319:6630773,4812305 +g1,17319:10069447,4812305 +k1,17319:31387651,4812305:21318204 +) +) +] +[1,17319:6630773,45706769:25952256,40108032,0 +(1,17319:6630773,45706769:25952256,40108032,0 +(1,17319:6630773,45706769:0,0,0 +g1,17319:6630773,45706769 +) +[1,17319:6630773,45706769:25952256,40108032,0 +v1,17258:6630773,6254097:0,393216,0 +(1,17258:6630773,10566261:25952256,4705380,196608 +g1,17258:6630773,10566261 +g1,17258:6630773,10566261 +g1,17258:6434165,10566261 +(1,17258:6434165,10566261:0,4705380,196608 +r1,17258:32779637,10566261:26345472,4901988,196608 +k1,17258:6434165,10566261:-26345472 +) +(1,17258:6434165,10566261:26345472,4705380,196608 +[1,17258:6630773,10566261:25952256,4508772,0 +(1,17250:6630773,6461715:25952256,404226,101187 +h1,17250:6630773,6461715:0,0,0 +g1,17250:6946919,6461715 +g1,17250:7263065,6461715 +g1,17250:14534415,6461715 +g1,17250:15166707,6461715 +k1,17250:15166707,6461715:0 +h1,17250:15798999,6461715:0,0,0 +k1,17250:32583029,6461715:16784030 +g1,17250:32583029,6461715 +) +(1,17251:6630773,7127893:25952256,404226,107478 +h1,17251:6630773,7127893:0,0,0 +g1,17251:6946919,7127893 +g1,17251:7263065,7127893 +g1,17251:7579211,7127893 +g1,17251:7895357,7127893 +g1,17251:8211503,7127893 +g1,17251:8527649,7127893 +g1,17251:8843795,7127893 +g1,17251:9159941,7127893 +g1,17251:9476087,7127893 +g1,17251:9792233,7127893 +g1,17251:10108379,7127893 +g1,17251:10424525,7127893 +g1,17251:10740671,7127893 +g1,17251:11056817,7127893 +g1,17251:11372963,7127893 +g1,17251:11689109,7127893 +g1,17251:12005255,7127893 +g1,17251:12321401,7127893 +g1,17251:12637547,7127893 +g1,17251:15482858,7127893 +g1,17251:16115150,7127893 +g1,17251:21173482,7127893 +g1,17251:23386502,7127893 +g1,17251:24018794,7127893 +g1,17251:28444834,7127893 +g1,17251:29393271,7127893 +g1,17251:30025563,7127893 +k1,17251:30025563,7127893:0 +h1,17251:32238583,7127893:0,0,0 +k1,17251:32583029,7127893:344446 +g1,17251:32583029,7127893 +) +(1,17252:6630773,7794071:25952256,404226,82312 +h1,17252:6630773,7794071:0,0,0 +g1,17252:6946919,7794071 +g1,17252:7263065,7794071 +g1,17252:7579211,7794071 +g1,17252:7895357,7794071 +g1,17252:8211503,7794071 +g1,17252:8527649,7794071 +g1,17252:8843795,7794071 +g1,17252:9159941,7794071 +g1,17252:9476087,7794071 +g1,17252:9792233,7794071 +g1,17252:10108379,7794071 +g1,17252:10424525,7794071 +g1,17252:10740671,7794071 +g1,17252:11056817,7794071 +g1,17252:11372963,7794071 +g1,17252:11689109,7794071 +g1,17252:12005255,7794071 +g1,17252:12321401,7794071 +g1,17252:12637547,7794071 +g1,17252:14850567,7794071 +g1,17252:15482859,7794071 +g1,17252:21805774,7794071 +g1,17252:24018794,7794071 +k1,17252:24018794,7794071:0 +h1,17252:26547959,7794071:0,0,0 +k1,17252:32583029,7794071:6035070 +g1,17252:32583029,7794071 +) +(1,17253:6630773,8460249:25952256,404226,82312 +h1,17253:6630773,8460249:0,0,0 +g1,17253:6946919,8460249 +g1,17253:7263065,8460249 +g1,17253:7579211,8460249 +g1,17253:7895357,8460249 +g1,17253:8211503,8460249 +g1,17253:8527649,8460249 +g1,17253:8843795,8460249 +g1,17253:9159941,8460249 +g1,17253:9476087,8460249 +g1,17253:9792233,8460249 +g1,17253:10108379,8460249 +g1,17253:10424525,8460249 +g1,17253:10740671,8460249 +g1,17253:11056817,8460249 +g1,17253:11372963,8460249 +g1,17253:11689109,8460249 +g1,17253:12005255,8460249 +g1,17253:12321401,8460249 +g1,17253:12637547,8460249 +g1,17253:15166713,8460249 +g1,17253:15799005,8460249 +g1,17253:22438065,8460249 +g1,17253:24334940,8460249 +k1,17253:24334940,8460249:0 +h1,17253:26864105,8460249:0,0,0 +k1,17253:32583029,8460249:5718924 +g1,17253:32583029,8460249 +) +(1,17254:6630773,9126427:25952256,410518,101187 +h1,17254:6630773,9126427:0,0,0 +g1,17254:6946919,9126427 +g1,17254:7263065,9126427 +g1,17254:7579211,9126427 +g1,17254:7895357,9126427 +g1,17254:8211503,9126427 +g1,17254:8527649,9126427 +g1,17254:8843795,9126427 +g1,17254:9159941,9126427 +g1,17254:9476087,9126427 +g1,17254:9792233,9126427 +g1,17254:10108379,9126427 +g1,17254:10424525,9126427 +g1,17254:10740671,9126427 +g1,17254:11056817,9126427 +g1,17254:11372963,9126427 +g1,17254:11689109,9126427 +g1,17254:12005255,9126427 +g1,17254:12321401,9126427 +g1,17254:12637547,9126427 +g1,17254:14850567,9126427 +g1,17254:15482859,9126427 +g1,17254:22121919,9126427 +g1,17254:24334939,9126427 +g1,17254:26864105,9126427 +g1,17254:27812543,9126427 +h1,17254:31290145,9126427:0,0,0 +k1,17254:32583029,9126427:1292884 +g1,17254:32583029,9126427 +) +(1,17255:6630773,9792605:25952256,0,0 +h1,17255:6630773,9792605:0,0,0 +h1,17255:6630773,9792605:0,0,0 +k1,17255:32583029,9792605:25952256 +g1,17255:32583029,9792605 +) +(1,17256:6630773,10458783:25952256,410518,107478 +h1,17256:6630773,10458783:0,0,0 +g1,17256:14850561,10458783 +h1,17256:18644309,10458783:0,0,0 +k1,17256:32583029,10458783:13938720 +g1,17256:32583029,10458783 +) +] +) +g1,17258:32583029,10566261 +g1,17258:6630773,10566261 +g1,17258:6630773,10566261 +g1,17258:32583029,10566261 +g1,17258:32583029,10566261 +) +h1,17258:6630773,10762869:0,0,0 +v1,17262:6630773,12596631:0,393216,0 +(1,17263:6630773,18196641:25952256,5993226,616038 +g1,17263:6630773,18196641 +(1,17263:6630773,18196641:25952256,5993226,616038 +(1,17263:6630773,18812679:25952256,6609264,0 +[1,17263:6630773,18812679:25952256,6609264,0 +(1,17263:6630773,18786465:25952256,6556836,0 +r1,17263:6656987,18786465:26214,6556836,0 +[1,17263:6656987,18786465:25899828,6556836,0 +(1,17263:6656987,18196641:25899828,5377188,0 +[1,17263:7246811,18196641:24720180,5377188,0 +(1,17263:7246811,13981338:24720180,1161885,196608 +(1,17262:7246811,13981338:0,1161885,196608 +r1,17263:8794447,13981338:1547636,1358493,196608 +k1,17262:7246811,13981338:-1547636 +) +(1,17262:7246811,13981338:1547636,1161885,196608 +) +k1,17262:8972317,13981338:177870 +k1,17262:10695527,13981338:177871 +k1,17262:14168547,13981338:177870 +k1,17262:16054941,13981338:177870 +k1,17262:18965663,13981338:177871 +k1,17262:20618748,13981338:177870 +k1,17262:21152479,13981338:177871 +k1,17262:23637872,13981338:177870 +k1,17262:27362550,13981338:177870 +k1,17262:28731866,13981338:177871 +k1,17262:29928821,13981338:177870 +k1,17262:31966991,13981338:0 +) +(1,17263:7246811,14822826:24720180,513147,134348 +k1,17262:8886708,14822826:250534 +k1,17262:10241525,14822826:250535 +k1,17262:11777875,14822826:250534 +k1,17262:12776176,14822826:250535 +k1,17262:16922170,14822826:250534 +k1,17262:17858867,14822826:250535 +k1,17262:18465261,14822826:250534 +(1,17262:18465261,14822826:0,414482,115847 +r1,17263:19526950,14822826:1061689,530329,115847 +k1,17262:18465261,14822826:-1061689 +) +(1,17262:18465261,14822826:1061689,414482,115847 +k1,17262:18465261,14822826:3277 +h1,17262:19523673,14822826:0,411205,112570 +) +k1,17262:19777484,14822826:250534 +k1,17262:21011059,14822826:250535 +k1,17262:23820119,14822826:250534 +k1,17262:24426514,14822826:250535 +k1,17262:27299799,14822826:250534 +k1,17262:28233219,14822826:250535 +k1,17262:30563210,14822826:250534 +k1,17262:31966991,14822826:0 +) +(1,17263:7246811,15664314:24720180,505283,134348 +k1,17262:8247547,15664314:182847 +k1,17262:10505918,15664314:182846 +k1,17262:12717760,15664314:182847 +k1,17262:13358703,15664314:182846 +k1,17262:14073047,15664314:182847 +k1,17262:16885854,15664314:182847 +k1,17262:17720128,15664314:182846 +k1,17262:20190837,15664314:182847 +k1,17262:22012738,15664314:182846 +k1,17262:24754111,15664314:182847 +k1,17262:25956042,15664314:182846 +k1,17262:28007304,15664314:182831 +k1,17262:30149021,15664314:182846 +k1,17262:30947906,15664314:182847 +k1,17262:31966991,15664314:0 +) +(1,17263:7246811,16505802:24720180,505283,134348 +k1,17262:10125813,16505802:256251 +k1,17262:11064949,16505802:256251 +k1,17262:13400657,16505802:256251 +k1,17262:15390991,16505802:256251 +k1,17262:19732101,16505802:256251 +k1,17262:21007437,16505802:256251 +k1,17262:21678474,16505802:256194 +k1,17262:24514877,16505802:256251 +k1,17262:28089215,16505802:256251 +k1,17262:29449748,16505802:256251 +k1,17262:30453765,16505802:256251 +k1,17262:31966991,16505802:0 +) +(1,17263:7246811,17347290:24720180,513147,134348 +k1,17262:8096103,17347290:197864 +k1,17262:10581829,17347290:197864 +k1,17262:14074843,17347290:197864 +k1,17262:17005559,17347290:197865 +k1,17262:17964951,17347290:197864 +k1,17262:20231131,17347290:197864 +k1,17262:21088287,17347290:197864 +k1,17262:22305236,17347290:197864 +k1,17262:24667754,17347290:197864 +k1,17262:26966048,17347290:197865 +k1,17262:29086738,17347290:197864 +k1,17262:31315563,17347290:197864 +k1,17262:31966991,17347290:0 +) +(1,17263:7246811,18188778:24720180,505283,7863 +g1,17262:8954679,18188778 +k1,17263:31966991,18188778:21762540 +g1,17263:31966991,18188778 +) +] +) +] +r1,17263:32583029,18786465:26214,6556836,0 +) +] +) +) +g1,17263:32583029,18196641 +) +h1,17263:6630773,18812679:0,0,0 +(1,17266:6630773,22116385:25952256,32768,229376 +(1,17266:6630773,22116385:0,32768,229376 +(1,17266:6630773,22116385:5505024,32768,229376 +r1,17266:12135797,22116385:5505024,262144,229376 +) +k1,17266:6630773,22116385:-5505024 +) +(1,17266:6630773,22116385:25952256,32768,0 +r1,17266:32583029,22116385:25952256,32768,0 +) +) +(1,17266:6630773,23720713:25952256,606339,14155 +(1,17266:6630773,23720713:2464678,582746,14155 +g1,17266:6630773,23720713 +g1,17266:9095451,23720713 +) +k1,17266:32583029,23720713:19475988 +g1,17266:32583029,23720713 +) +(1,17273:6630773,24955417:25952256,513147,134348 +k1,17272:8153628,24955417:251457 +k1,17272:9064376,24955417:251456 +k1,17272:10334918,24955417:251457 +k1,17272:14155465,24955417:251456 +k1,17272:15066214,24955417:251457 +k1,17272:17053064,24955417:251457 +k1,17272:20458112,24955417:251456 +k1,17272:21241066,24955417:251457 +k1,17272:22777029,24955417:251457 +k1,17272:25438899,24955417:251456 +k1,17272:26349648,24955417:251457 +k1,17272:28298486,24955417:251456 +k1,17272:29741388,24955417:251457 +k1,17272:32583029,24955417:0 +) +(1,17273:6630773,25796905:25952256,505283,134348 +k1,17272:7961250,25796905:226195 +k1,17272:8935210,25796905:226194 +k1,17272:12189824,25796905:226195 +k1,17272:13882714,25796905:226194 +k1,17272:17103249,25796905:226195 +k1,17272:19688084,25796905:226194 +k1,17272:20372376,25796905:226195 +k1,17272:23228530,25796905:226194 +k1,17272:24106153,25796905:226195 +k1,17272:25928804,25796905:226194 +k1,17272:26771037,25796905:226195 +k1,17272:27412047,25796905:226167 +k1,17272:29104938,25796905:226195 +k1,17272:31391584,25796905:226194 +k1,17272:32583029,25796905:0 +) +(1,17273:6630773,26638393:25952256,505283,134348 +k1,17272:9678746,26638393:227303 +k1,17272:11300000,26638393:227303 +k1,17272:13078540,26638393:227303 +k1,17272:14695206,26638393:227303 +k1,17272:16361024,26638393:227303 +k1,17272:17859725,26638393:227303 +k1,17272:20267411,26638393:227303 +k1,17272:23753819,26638393:227303 +k1,17272:25265628,26638393:227303 +k1,17272:25907746,26638393:227275 +k1,17272:28634592,26638393:227303 +k1,17272:30700180,26638393:227303 +k1,17272:32583029,26638393:0 +) +(1,17273:6630773,27479881:25952256,513147,134348 +k1,17272:9186200,27479881:265599 +k1,17272:10067838,27479881:265600 +k1,17272:12003294,27479881:265599 +k1,17272:13460339,27479881:265600 +k1,17272:18124715,27479881:265599 +k1,17272:21174284,27479881:265600 +k1,17272:24127514,27479881:265599 +k1,17272:27024385,27479881:265600 +k1,17272:29104676,27479881:265599 +k1,17272:30389361,27479881:265600 +k1,17272:31923737,27479881:265599 +k1,17272:32583029,27479881:0 +) +(1,17273:6630773,28321369:25952256,505283,134348 +k1,17272:8237622,28321369:217486 +k1,17272:9719953,28321369:217486 +k1,17272:11331389,28321369:217485 +k1,17272:13434346,28321369:217486 +k1,17272:14109929,28321369:217486 +k1,17272:14858912,28321369:217486 +k1,17272:17706358,28321369:217486 +k1,17272:18575271,28321369:217485 +k1,17272:20562884,28321369:217486 +k1,17272:23315303,28321369:217486 +k1,17272:25918299,28321369:217486 +k1,17272:28896160,28321369:217485 +k1,17272:30132731,28321369:217486 +k1,17272:31931601,28321369:217486 +k1,17272:32583029,28321369:0 +) +(1,17273:6630773,29162857:25952256,505283,134348 +k1,17272:8426928,29162857:199698 +k1,17272:10020576,29162857:199697 +k1,17272:11609637,29162857:199698 +k1,17272:12425373,29162857:199698 +k1,17272:15778662,29162857:199697 +k1,17272:17713753,29162857:199698 +k1,17272:18932535,29162857:199697 +k1,17272:20785706,29162857:199698 +k1,17272:22709001,29162857:199698 +k1,17272:23594860,29162857:199697 +k1,17272:25492596,29162857:199698 +k1,17272:27427687,29162857:199698 +k1,17272:29600017,29162857:199697 +k1,17272:31193666,29162857:199698 +k1,17272:32583029,29162857:0 +) +(1,17273:6630773,30004345:25952256,505283,134348 +k1,17272:8894691,30004345:225748 +k1,17272:9736478,30004345:225749 +k1,17272:12593497,30004345:225748 +k1,17272:14729592,30004345:225721 +k1,17272:16187418,30004345:225749 +k1,17272:18830789,30004345:225748 +h1,17272:19229248,30004345:0,0,0 +k1,17272:19835760,30004345:225748 +k1,17272:21442353,30004345:225749 +k1,17272:22199598,30004345:225748 +k1,17272:23196049,30004345:225748 +k1,17272:26631095,30004345:225748 +k1,17272:29340659,30004345:225749 +k1,17272:30638576,30004345:225748 +k1,17273:32583029,30004345:0 +) +(1,17273:6630773,30845833:25952256,513147,134348 +k1,17272:8082002,30845833:215220 +k1,17272:10657829,30845833:215220 +k1,17272:11524477,30845833:215220 +k1,17272:12487464,30845833:215221 +k1,17272:15068534,30845833:215220 +k1,17272:16302839,30845833:215220 +k1,17272:18344547,30845833:215220 +k1,17272:19219059,30845833:215220 +k1,17272:20637520,30845833:215220 +k1,17272:22608450,30845833:215220 +k1,17272:23777219,30845833:215220 +k1,17272:26422515,30845833:215221 +k1,17272:26993595,30845833:215220 +k1,17272:28341933,30845833:215220 +k1,17272:30681830,30845833:215220 +k1,17273:32583029,30845833:0 +) +(1,17273:6630773,31687321:25952256,505283,126483 +k1,17272:8128628,31687321:194344 +k1,17272:8974400,31687321:194344 +k1,17272:10829426,31687321:194344 +k1,17272:12042855,31687321:194344 +k1,17272:13591173,31687321:194344 +k1,17272:15737178,31687321:194343 +k1,17272:17003691,31687321:194344 +k1,17272:20409299,31687321:194344 +k1,17272:22981945,31687321:194344 +k1,17272:25356672,31687321:194344 +k1,17272:27901137,31687321:194344 +(1,17272:27901137,31687321:4681892,505283,11795 +) +k1,17272:32583029,31687321:0 +) +(1,17273:6630773,32528809:25952256,505283,95026 +(1,17272:6837867,32528809:4681892,505283,11795 +) +k1,17273:32583029,32528809:20682506 +g1,17273:32583029,32528809 +) +(1,17275:6630773,33370297:25952256,505283,134348 +h1,17274:6630773,33370297:983040,0,0 +k1,17274:8967282,33370297:156782 +k1,17274:12351057,33370297:156782 +k1,17274:14193426,33370297:156783 +k1,17274:17531326,33370297:156782 +k1,17274:18339536,33370297:156782 +k1,17274:20231711,33370297:156782 +k1,17274:22361127,33370297:156783 +k1,17274:24006232,33370297:156782 +k1,17274:25556965,33370297:156782 +k1,17274:26732832,33370297:156782 +k1,17274:28419881,33370297:156783 +k1,17274:29228091,33370297:156782 +k1,17274:32227169,33370297:156782 +k1,17274:32583029,33370297:0 +) +(1,17275:6630773,34211785:25952256,505283,134348 +k1,17274:10314272,34211785:177323 +k1,17274:11143024,34211785:177324 +k1,17274:11676207,34211785:177323 +k1,17274:13347751,34211785:177323 +k1,17274:14207959,34211785:177323 +k1,17274:16639722,34211785:177324 +k1,17274:19814006,34211785:177323 +k1,17274:20944878,34211785:177323 +k1,17274:22254663,34211785:177323 +k1,17274:23524472,34211785:177324 +k1,17274:24116616,34211785:177301 +k1,17274:26874091,34211785:177323 +k1,17274:29824898,34211785:177324 +k1,17274:30653649,34211785:177323 +k1,17274:32583029,34211785:0 +) +(1,17275:6630773,35053273:25952256,505283,134348 +k1,17274:7246374,35053273:259741 +k1,17274:9000336,35053273:259741 +k1,17274:12593238,35053273:259741 +k1,17274:14864279,35053273:259741 +k1,17274:18120981,35053273:259741 +k1,17274:20766232,35053273:259741 +k1,17274:24021624,35053273:259741 +k1,17274:27798027,35053273:259741 +k1,17274:29759738,35053273:259741 +k1,17274:32583029,35053273:0 +) +(1,17275:6630773,35894761:25952256,513147,134348 +k1,17274:9437263,35894761:230270 +k1,17274:10659092,35894761:230269 +k1,17274:12175178,35894761:230270 +k1,17274:15363088,35894761:230270 +k1,17274:16546907,35894761:230270 +k1,17274:17909638,35894761:230269 +k1,17274:19232393,35894761:230270 +k1,17274:24181255,35894761:230270 +k1,17274:25800888,35894761:230270 +k1,17274:27598778,35894761:230269 +k1,17274:31635378,35894761:230270 +k1,17274:32583029,35894761:0 +) +(1,17275:6630773,36736249:25952256,505283,126483 +g1,17274:8033243,36736249 +k1,17275:32583030,36736249:21714700 +g1,17275:32583030,36736249 +) +v1,17277:6630773,37898564:0,393216,0 +(1,17319:6630773,45510161:25952256,8004813,196608 +g1,17319:6630773,45510161 +g1,17319:6630773,45510161 +g1,17319:6434165,45510161 +(1,17319:6434165,45510161:0,8004813,196608 +r1,17319:32779637,45510161:26345472,8201421,196608 +k1,17319:6434165,45510161:-26345472 +) +(1,17319:6434165,45510161:26345472,8004813,196608 +[1,17319:6630773,45510161:25952256,7808205,0 +(1,17279:6630773,38106182:25952256,404226,101187 +(1,17278:6630773,38106182:0,0,0 +g1,17278:6630773,38106182 +g1,17278:6630773,38106182 +g1,17278:6303093,38106182 +(1,17278:6303093,38106182:0,0,0 +) +g1,17278:6630773,38106182 +) +k1,17279:6630773,38106182:0 +h1,17279:11056813,38106182:0,0,0 +k1,17279:32583029,38106182:21526216 +g1,17279:32583029,38106182 +) +(1,17280:6630773,38772360:25952256,404226,101187 +h1,17280:6630773,38772360:0,0,0 +g1,17280:7895356,38772360 +g1,17280:8843794,38772360 +g1,17280:19592746,38772360 +g1,17280:21805766,38772360 +g1,17280:22438058,38772360 +h1,17280:25915661,38772360:0,0,0 +k1,17280:32583029,38772360:6667368 +g1,17280:32583029,38772360 +) +(1,17281:6630773,39438538:25952256,404226,101187 +h1,17281:6630773,39438538:0,0,0 +g1,17281:10740668,39438538 +g1,17281:18012019,39438538 +k1,17281:18012019,39438538:0 +h1,17281:21173476,39438538:0,0,0 +k1,17281:32583029,39438538:11409553 +g1,17281:32583029,39438538 +) +(1,17282:6630773,40104716:25952256,369623,101187 +h1,17282:6630773,40104716:0,0,0 +g1,17282:6946919,40104716 +g1,17282:7263065,40104716 +g1,17282:7579211,40104716 +g1,17282:7895357,40104716 +g1,17282:8211503,40104716 +g1,17282:8527649,40104716 +g1,17282:8843795,40104716 +g1,17282:9159941,40104716 +g1,17282:12321398,40104716 +g1,17282:12953690,40104716 +k1,17282:12953690,40104716:0 +h1,17282:14850564,40104716:0,0,0 +k1,17282:32583028,40104716:17732464 +g1,17282:32583028,40104716 +) +(1,17283:6630773,40770894:25952256,404226,76021 +h1,17283:6630773,40770894:0,0,0 +g1,17283:6946919,40770894 +g1,17283:7263065,40770894 +g1,17283:7579211,40770894 +g1,17283:7895357,40770894 +g1,17283:8211503,40770894 +g1,17283:8527649,40770894 +g1,17283:8843795,40770894 +g1,17283:9159941,40770894 +g1,17283:11689107,40770894 +g1,17283:12321399,40770894 +k1,17283:12321399,40770894:0 +h1,17283:13902128,40770894:0,0,0 +k1,17283:32583028,40770894:18680900 +g1,17283:32583028,40770894 +) +(1,17284:6630773,41437072:25952256,404226,101187 +h1,17284:6630773,41437072:0,0,0 +g1,17284:6946919,41437072 +g1,17284:7263065,41437072 +g1,17284:7579211,41437072 +g1,17284:7895357,41437072 +g1,17284:8211503,41437072 +g1,17284:8527649,41437072 +g1,17284:8843795,41437072 +g1,17284:9159941,41437072 +g1,17284:9476087,41437072 +g1,17284:9792233,41437072 +g1,17284:14850565,41437072 +g1,17284:20225042,41437072 +k1,17284:20225042,41437072:0 +h1,17284:24651082,41437072:0,0,0 +k1,17284:32583029,41437072:7931947 +g1,17284:32583029,41437072 +) +(1,17285:6630773,42103250:25952256,404226,82312 +h1,17285:6630773,42103250:0,0,0 +g1,17285:6946919,42103250 +g1,17285:7263065,42103250 +g1,17285:7579211,42103250 +g1,17285:7895357,42103250 +g1,17285:8211503,42103250 +g1,17285:8527649,42103250 +g1,17285:8843795,42103250 +g1,17285:9159941,42103250 +g1,17285:9476087,42103250 +g1,17285:9792233,42103250 +k1,17285:9792233,42103250:0 +h1,17285:12005253,42103250:0,0,0 +k1,17285:32583029,42103250:20577776 +g1,17285:32583029,42103250 +) +(1,17286:6630773,42769428:25952256,404226,82312 +h1,17286:6630773,42769428:0,0,0 +g1,17286:6946919,42769428 +g1,17286:7263065,42769428 +g1,17286:7579211,42769428 +g1,17286:7895357,42769428 +g1,17286:8211503,42769428 +g1,17286:8527649,42769428 +g1,17286:8843795,42769428 +g1,17286:9159941,42769428 +g1,17286:9476087,42769428 +g1,17286:9792233,42769428 +k1,17286:9792233,42769428:0 +h1,17286:14850564,42769428:0,0,0 +k1,17286:32583028,42769428:17732464 +g1,17286:32583028,42769428 +) +(1,17287:6630773,43435606:25952256,404226,101187 +h1,17287:6630773,43435606:0,0,0 +g1,17287:6946919,43435606 +g1,17287:7263065,43435606 +g1,17287:7579211,43435606 +g1,17287:7895357,43435606 +g1,17287:8211503,43435606 +g1,17287:8527649,43435606 +g1,17287:8843795,43435606 +g1,17287:9159941,43435606 +g1,17287:9476087,43435606 +g1,17287:9792233,43435606 +k1,17287:9792233,43435606:0 +h1,17287:13585981,43435606:0,0,0 +k1,17287:32583029,43435606:18997048 +g1,17287:32583029,43435606 +) +(1,17288:6630773,44101784:25952256,410518,101187 +h1,17288:6630773,44101784:0,0,0 +g1,17288:6946919,44101784 +g1,17288:7263065,44101784 +g1,17288:7579211,44101784 +g1,17288:7895357,44101784 +g1,17288:8211503,44101784 +g1,17288:8527649,44101784 +g1,17288:8843795,44101784 +g1,17288:9159941,44101784 +g1,17288:9476087,44101784 +g1,17288:9792233,44101784 +k1,17288:9792233,44101784:0 +h1,17288:14218273,44101784:0,0,0 +k1,17288:32583029,44101784:18364756 +g1,17288:32583029,44101784 +) +(1,17289:6630773,44767962:25952256,410518,101187 +h1,17289:6630773,44767962:0,0,0 +g1,17289:6946919,44767962 +g1,17289:7263065,44767962 +g1,17289:7579211,44767962 +g1,17289:7895357,44767962 +g1,17289:8211503,44767962 +g1,17289:8527649,44767962 +g1,17289:8843795,44767962 +g1,17289:9159941,44767962 +g1,17289:9476087,44767962 +g1,17289:9792233,44767962 +h1,17289:14534418,44767962:0,0,0 +k1,17289:32583030,44767962:18048612 +g1,17289:32583030,44767962 +) +(1,17290:6630773,45434140:25952256,404226,76021 +h1,17290:6630773,45434140:0,0,0 +g1,17290:6946919,45434140 +g1,17290:7263065,45434140 +g1,17290:7579211,45434140 +g1,17290:7895357,45434140 +g1,17290:8211503,45434140 +g1,17290:8527649,45434140 +g1,17290:8843795,45434140 +g1,17290:9159941,45434140 +h1,17290:9476087,45434140:0,0,0 +k1,17290:32583029,45434140:23106942 +g1,17290:32583029,45434140 +) +] +) +g1,17319:32583029,45510161 +g1,17319:6630773,45510161 +g1,17319:6630773,45510161 +g1,17319:32583029,45510161 +g1,17319:32583029,45510161 +) +] +(1,17319:32583029,45706769:0,0,0 +g1,17319:32583029,45706769 +) +) +] +(1,17319:6630773,47279633:25952256,0,0 +h1,17319:6630773,47279633:25952256,0,0 +) +] +h1,17319:4262630,4025873:0,0,0 +] +!24855 }334 !12 {335 -[1,17315:4262630,47279633:28320399,43253760,0 -(1,17315:4262630,4025873:0,0,0 -[1,17315:-473657,4025873:25952256,0,0 -(1,17315:-473657,-710414:25952256,0,0 -h1,17315:-473657,-710414:0,0,0 -(1,17315:-473657,-710414:0,0,0 -(1,17315:-473657,-710414:0,0,0 -g1,17315:-473657,-710414 -(1,17315:-473657,-710414:65781,0,65781 -g1,17315:-407876,-710414 -[1,17315:-407876,-644633:0,0,0 +[1,17348:4262630,47279633:28320399,43253760,0 +(1,17348:4262630,4025873:0,0,0 +[1,17348:-473657,4025873:25952256,0,0 +(1,17348:-473657,-710414:25952256,0,0 +h1,17348:-473657,-710414:0,0,0 +(1,17348:-473657,-710414:0,0,0 +(1,17348:-473657,-710414:0,0,0 +g1,17348:-473657,-710414 +(1,17348:-473657,-710414:65781,0,65781 +g1,17348:-407876,-710414 +[1,17348:-407876,-644633:0,0,0 ] ) -k1,17315:-473657,-710414:-65781 +k1,17348:-473657,-710414:-65781 ) ) -k1,17315:25478599,-710414:25952256 -g1,17315:25478599,-710414 +k1,17348:25478599,-710414:25952256 +g1,17348:25478599,-710414 ) ] ) -[1,17315:6630773,47279633:25952256,43253760,0 -[1,17315:6630773,4812305:25952256,786432,0 -(1,17315:6630773,4812305:25952256,505283,126483 -(1,17315:6630773,4812305:25952256,505283,126483 -g1,17315:3078558,4812305 -[1,17315:3078558,4812305:0,0,0 -(1,17315:3078558,2439708:0,1703936,0 -k1,17315:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17315:2537886,2439708:1179648,16384,0 +[1,17348:6630773,47279633:25952256,43253760,0 +[1,17348:6630773,4812305:25952256,786432,0 +(1,17348:6630773,4812305:25952256,505283,126483 +(1,17348:6630773,4812305:25952256,505283,126483 +g1,17348:3078558,4812305 +[1,17348:3078558,4812305:0,0,0 +(1,17348:3078558,2439708:0,1703936,0 +k1,17348:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17348:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17315:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17348:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17315:3078558,4812305:0,0,0 -(1,17315:3078558,2439708:0,1703936,0 -g1,17315:29030814,2439708 -g1,17315:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17315:36151628,1915420:16384,1179648,0 +[1,17348:3078558,4812305:0,0,0 +(1,17348:3078558,2439708:0,1703936,0 +g1,17348:29030814,2439708 +g1,17348:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17348:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17315:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17348:37855564,2439708:1179648,16384,0 ) ) -k1,17315:3078556,2439708:-34777008 +k1,17348:3078556,2439708:-34777008 ) ] -[1,17315:3078558,4812305:0,0,0 -(1,17315:3078558,49800853:0,16384,2228224 -k1,17315:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17315:2537886,49800853:1179648,16384,0 +[1,17348:3078558,4812305:0,0,0 +(1,17348:3078558,49800853:0,16384,2228224 +k1,17348:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17348:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17315:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17348:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,17315:3078558,4812305:0,0,0 -(1,17315:3078558,49800853:0,16384,2228224 -g1,17315:29030814,49800853 -g1,17315:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17315:36151628,51504789:16384,1179648,0 +[1,17348:3078558,4812305:0,0,0 +(1,17348:3078558,49800853:0,16384,2228224 +g1,17348:29030814,49800853 +g1,17348:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17348:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17315:37855564,49800853:1179648,16384,0 -) -) -k1,17315:3078556,49800853:-34777008 -) -] -g1,17315:6630773,4812305 -k1,17315:25146660,4812305:17320510 -g1,17315:26880087,4812305 -g1,17315:29193507,4812305 -g1,17315:30603186,4812305 -) -) -] -[1,17315:6630773,45706769:25952256,40108032,0 -(1,17315:6630773,45706769:25952256,40108032,0 -(1,17315:6630773,45706769:0,0,0 -g1,17315:6630773,45706769 -) -[1,17315:6630773,45706769:25952256,40108032,0 -v1,17286:6630773,6254097:0,393216,0 -(1,17286:6630773,20577997:25952256,14717116,196608 -g1,17286:6630773,20577997 -g1,17286:6630773,20577997 -g1,17286:6434165,20577997 -(1,17286:6434165,20577997:0,14717116,196608 -r1,17286:32779637,20577997:26345472,14913724,196608 -k1,17286:6434165,20577997:-26345472 -) -(1,17286:6434165,20577997:26345472,14717116,196608 -[1,17286:6630773,20577997:25952256,14520508,0 -(1,17258:6630773,6461715:25952256,404226,76021 -h1,17258:6630773,6461715:0,0,0 -h1,17258:6946919,6461715:0,0,0 -k1,17258:32583029,6461715:25636110 -g1,17258:32583029,6461715 -) -(1,17259:6630773,7127893:25952256,404226,82312 -h1,17259:6630773,7127893:0,0,0 -g1,17259:10108376,7127893 -g1,17259:11056814,7127893 -g1,17259:13902126,7127893 -h1,17259:17063583,7127893:0,0,0 -k1,17259:32583029,7127893:15519446 -g1,17259:32583029,7127893 -) -(1,17260:6630773,7794071:25952256,404226,76021 -h1,17260:6630773,7794071:0,0,0 -k1,17260:6630773,7794071:0 -h1,17260:12953686,7794071:0,0,0 -k1,17260:32583030,7794071:19629344 -g1,17260:32583030,7794071 -) -(1,17269:6630773,8525785:25952256,410518,107478 -(1,17262:6630773,8525785:0,0,0 -g1,17262:6630773,8525785 -g1,17262:6630773,8525785 -g1,17262:6303093,8525785 -(1,17262:6303093,8525785:0,0,0 -) -g1,17262:6630773,8525785 -) -g1,17269:7579210,8525785 -g1,17269:7895356,8525785 -g1,17269:9159939,8525785 -g1,17269:11372959,8525785 -g1,17269:11689105,8525785 -g1,17269:12005251,8525785 -g1,17269:12321397,8525785 -g1,17269:12637543,8525785 -g1,17269:12953689,8525785 -g1,17269:13269835,8525785 -g1,17269:13585981,8525785 -g1,17269:13902127,8525785 -g1,17269:14218273,8525785 -g1,17269:14534419,8525785 -g1,17269:18012022,8525785 -g1,17269:18328168,8525785 -g1,17269:18644314,8525785 -g1,17269:18960460,8525785 -g1,17269:19276606,8525785 -g1,17269:19592752,8525785 -g1,17269:19908898,8525785 -g1,17269:24334938,8525785 -g1,17269:24651084,8525785 -g1,17269:24967230,8525785 -g1,17269:25283376,8525785 -h1,17269:29393270,8525785:0,0,0 -k1,17269:32583029,8525785:3189759 -g1,17269:32583029,8525785 -) -(1,17269:6630773,9191963:25952256,410518,101187 -h1,17269:6630773,9191963:0,0,0 -g1,17269:7579210,9191963 -g1,17269:7895356,9191963 -g1,17269:9159939,9191963 -g1,17269:13585979,9191963 -g1,17269:13902125,9191963 -g1,17269:14218271,9191963 -g1,17269:14534417,9191963 -g1,17269:19592748,9191963 -g1,17269:19908894,9191963 -g1,17269:24018788,9191963 -g1,17269:24334934,9191963 -g1,17269:24651080,9191963 -g1,17269:24967226,9191963 -g1,17269:25283372,9191963 -h1,17269:30025557,9191963:0,0,0 -k1,17269:32583029,9191963:2557472 -g1,17269:32583029,9191963 -) -(1,17269:6630773,9858141:25952256,404226,101187 -h1,17269:6630773,9858141:0,0,0 -g1,17269:7579210,9858141 -g1,17269:7895356,9858141 -g1,17269:9159939,9858141 -g1,17269:13269833,9858141 -g1,17269:13585979,9858141 -g1,17269:13902125,9858141 -g1,17269:14218271,9858141 -g1,17269:14534417,9858141 -g1,17269:19592748,9858141 -g1,17269:19908894,9858141 -g1,17269:24334934,9858141 -g1,17269:24651080,9858141 -g1,17269:24967226,9858141 -g1,17269:25283372,9858141 -h1,17269:28760974,9858141:0,0,0 -k1,17269:32583029,9858141:3822055 -g1,17269:32583029,9858141 -) -(1,17269:6630773,10524319:25952256,404226,101187 -h1,17269:6630773,10524319:0,0,0 -g1,17269:7579210,10524319 -g1,17269:9159939,10524319 -g1,17269:13269833,10524319 -g1,17269:13585979,10524319 -g1,17269:13902125,10524319 -g1,17269:14218271,10524319 -g1,17269:14534417,10524319 -g1,17269:19908894,10524319 -g1,17269:24018788,10524319 -g1,17269:24334934,10524319 -g1,17269:24651080,10524319 -g1,17269:24967226,10524319 -g1,17269:25283372,10524319 -h1,17269:27812537,10524319:0,0,0 -k1,17269:32583029,10524319:4770492 -g1,17269:32583029,10524319 -) -(1,17269:6630773,11190497:25952256,410518,101187 -h1,17269:6630773,11190497:0,0,0 -g1,17269:7579210,11190497 -g1,17269:9159939,11190497 -g1,17269:12005250,11190497 -g1,17269:12321396,11190497 -g1,17269:12637542,11190497 -g1,17269:12953688,11190497 -g1,17269:13269834,11190497 -g1,17269:13585980,11190497 -g1,17269:13902126,11190497 -g1,17269:14218272,11190497 -g1,17269:14534418,11190497 -g1,17269:19276604,11190497 -g1,17269:19592750,11190497 -g1,17269:19908896,11190497 -g1,17269:23386499,11190497 -g1,17269:23702645,11190497 -g1,17269:24018791,11190497 -g1,17269:24334937,11190497 -g1,17269:24651083,11190497 -g1,17269:24967229,11190497 -g1,17269:25283375,11190497 -h1,17269:29709415,11190497:0,0,0 -k1,17269:32583029,11190497:2873614 -g1,17269:32583029,11190497 -) -(1,17269:6630773,11856675:25952256,410518,76021 -h1,17269:6630773,11856675:0,0,0 -g1,17269:7579210,11856675 -g1,17269:9159939,11856675 -h1,17269:13269833,11856675:0,0,0 -k1,17269:32583029,11856675:19313196 -g1,17269:32583029,11856675 -) -(1,17271:6630773,13178213:25952256,404226,9436 -(1,17270:6630773,13178213:0,0,0 -g1,17270:6630773,13178213 -g1,17270:6630773,13178213 -g1,17270:6303093,13178213 -(1,17270:6303093,13178213:0,0,0 -) -g1,17270:6630773,13178213 -) -g1,17271:10108376,13178213 -k1,17271:10108376,13178213:0 -h1,17271:11372958,13178213:0,0,0 -k1,17271:32583030,13178213:21210072 -g1,17271:32583030,13178213 -) -(1,17272:6630773,13844391:25952256,410518,82312 -h1,17272:6630773,13844391:0,0,0 -g1,17272:6946919,13844391 -g1,17272:7263065,13844391 -g1,17272:10424522,13844391 -g1,17272:14850562,13844391 -g1,17272:15482854,13844391 -g1,17272:16431292,13844391 -k1,17272:16431292,13844391:0 -h1,17272:17695874,13844391:0,0,0 -k1,17272:32583029,13844391:14887155 -g1,17272:32583029,13844391 -) -(1,17273:6630773,14510569:25952256,410518,107478 -h1,17273:6630773,14510569:0,0,0 -g1,17273:6946919,14510569 -g1,17273:7263065,14510569 -g1,17273:11056813,14510569 -g1,17273:15166707,14510569 -k1,17273:15166707,14510569:0 -h1,17273:16431289,14510569:0,0,0 -k1,17273:32583029,14510569:16151740 -g1,17273:32583029,14510569 -) -(1,17274:6630773,15176747:25952256,404226,107478 -h1,17274:6630773,15176747:0,0,0 -g1,17274:6946919,15176747 -g1,17274:7263065,15176747 -g1,17274:11372959,15176747 -g1,17274:14534416,15176747 -g1,17274:15166708,15176747 -g1,17274:20541185,15176747 -g1,17274:22438059,15176747 -g1,17274:23070351,15176747 -g1,17274:24967226,15176747 -g1,17274:25599518,15176747 -g1,17274:26547955,15176747 -g1,17274:27180247,15176747 -h1,17274:28760976,15176747:0,0,0 -k1,17274:32583029,15176747:3822053 -g1,17274:32583029,15176747 -) -(1,17285:6630773,15908461:25952256,404226,101187 -(1,17276:6630773,15908461:0,0,0 -g1,17276:6630773,15908461 -g1,17276:6630773,15908461 -g1,17276:6303093,15908461 -(1,17276:6303093,15908461:0,0,0 -) -g1,17276:6630773,15908461 -) -g1,17285:7579210,15908461 -g1,17285:8211502,15908461 -g1,17285:10740668,15908461 -g1,17285:11056814,15908461 -g1,17285:11372960,15908461 -g1,17285:12953689,15908461 -g1,17285:14850563,15908461 -g1,17285:16115146,15908461 -g1,17285:16747438,15908461 -h1,17285:17379729,15908461:0,0,0 -k1,17285:32583029,15908461:15203300 -g1,17285:32583029,15908461 -) -(1,17285:6630773,16574639:25952256,404226,101187 -h1,17285:6630773,16574639:0,0,0 -g1,17285:7579210,16574639 -g1,17285:8211502,16574639 -g1,17285:11372959,16574639 -g1,17285:13585979,16574639 -g1,17285:15798999,16574639 -h1,17285:18960456,16574639:0,0,0 -k1,17285:32583029,16574639:13622573 -g1,17285:32583029,16574639 -) -(1,17285:6630773,17240817:25952256,410518,107478 -h1,17285:6630773,17240817:0,0,0 -g1,17285:7579210,17240817 -g1,17285:7895356,17240817 -g1,17285:8211502,17240817 -g1,17285:12005250,17240817 -h1,17285:14850561,17240817:0,0,0 -k1,17285:32583029,17240817:17732468 -g1,17285:32583029,17240817 -) -(1,17285:6630773,17906995:25952256,404226,6290 -h1,17285:6630773,17906995:0,0,0 -g1,17285:7579210,17906995 -g1,17285:7895356,17906995 -g1,17285:8211502,17906995 -g1,17285:8527648,17906995 -g1,17285:8843794,17906995 -g1,17285:9159940,17906995 -g1,17285:9476086,17906995 -g1,17285:9792232,17906995 -g1,17285:10108378,17906995 -g1,17285:12005253,17906995 -g1,17285:12321399,17906995 -g1,17285:12637545,17906995 -g1,17285:12953691,17906995 -g1,17285:13269837,17906995 -k1,17285:13269837,17906995:0 -h1,17285:14850566,17906995:0,0,0 -k1,17285:32583030,17906995:17732464 -g1,17285:32583030,17906995 -) -(1,17285:6630773,18573173:25952256,388497,9436 -h1,17285:6630773,18573173:0,0,0 -g1,17285:7579210,18573173 -g1,17285:8211502,18573173 -g1,17285:8527648,18573173 -g1,17285:8843794,18573173 -g1,17285:9159940,18573173 -g1,17285:9476086,18573173 -g1,17285:9792232,18573173 -g1,17285:10108378,18573173 -g1,17285:10424524,18573173 -g1,17285:10740670,18573173 -g1,17285:12005253,18573173 -g1,17285:12321399,18573173 -g1,17285:12637545,18573173 -g1,17285:12953691,18573173 -g1,17285:13269837,18573173 -h1,17285:14850565,18573173:0,0,0 -k1,17285:32583029,18573173:17732464 -g1,17285:32583029,18573173 -) -(1,17285:6630773,19239351:25952256,388497,9436 -h1,17285:6630773,19239351:0,0,0 -g1,17285:7579210,19239351 -g1,17285:8211502,19239351 -g1,17285:8527648,19239351 -g1,17285:8843794,19239351 -g1,17285:9159940,19239351 -g1,17285:9476086,19239351 -g1,17285:9792232,19239351 -g1,17285:10108378,19239351 -g1,17285:10424524,19239351 -g1,17285:10740670,19239351 -g1,17285:12005253,19239351 -g1,17285:12321399,19239351 -g1,17285:12637545,19239351 -g1,17285:12953691,19239351 -g1,17285:13269837,19239351 -h1,17285:14850565,19239351:0,0,0 -k1,17285:32583029,19239351:17732464 -g1,17285:32583029,19239351 -) -(1,17285:6630773,19905529:25952256,388497,9436 -h1,17285:6630773,19905529:0,0,0 -g1,17285:7579210,19905529 -g1,17285:8211502,19905529 -g1,17285:8527648,19905529 -g1,17285:8843794,19905529 -g1,17285:9159940,19905529 -g1,17285:9476086,19905529 -g1,17285:9792232,19905529 -g1,17285:10108378,19905529 -g1,17285:10424524,19905529 -g1,17285:10740670,19905529 -g1,17285:12005253,19905529 -g1,17285:12321399,19905529 -g1,17285:12637545,19905529 -g1,17285:12953691,19905529 -g1,17285:13269837,19905529 -h1,17285:14850565,19905529:0,0,0 -k1,17285:32583029,19905529:17732464 -g1,17285:32583029,19905529 -) -(1,17285:6630773,20571707:25952256,404226,6290 -h1,17285:6630773,20571707:0,0,0 -g1,17285:7579210,20571707 -g1,17285:8211502,20571707 -g1,17285:9476085,20571707 -g1,17285:11056814,20571707 -g1,17285:12637543,20571707 -h1,17285:13902126,20571707:0,0,0 -k1,17285:32583030,20571707:18680904 -g1,17285:32583030,20571707 -) -] -) -g1,17286:32583029,20577997 -g1,17286:6630773,20577997 -g1,17286:6630773,20577997 -g1,17286:32583029,20577997 -g1,17286:32583029,20577997 -) -h1,17286:6630773,20774605:0,0,0 -v1,17290:6630773,22664669:0,393216,0 -(1,17291:6630773,25858835:25952256,3587382,616038 -g1,17291:6630773,25858835 -(1,17291:6630773,25858835:25952256,3587382,616038 -(1,17291:6630773,26474873:25952256,4203420,0 -[1,17291:6630773,26474873:25952256,4203420,0 -(1,17291:6630773,26448659:25952256,4150992,0 -r1,17291:6656987,26448659:26214,4150992,0 -[1,17291:6656987,26448659:25899828,4150992,0 -(1,17291:6656987,25858835:25899828,2971344,0 -[1,17291:7246811,25858835:24720180,2971344,0 -(1,17291:7246811,24049376:24720180,1161885,196608 -(1,17290:7246811,24049376:0,1161885,196608 -r1,17291:8794447,24049376:1547636,1358493,196608 -k1,17290:7246811,24049376:-1547636 -) -(1,17290:7246811,24049376:1547636,1161885,196608 -) -k1,17290:9073481,24049376:279034 -k1,17290:11887448,24049376:279034 -k1,17290:14551993,24049376:279035 -k1,17290:17972823,24049376:279034 -k1,17290:19641220,24049376:279034 -k1,17290:21640574,24049376:279034 -k1,17290:23204114,24049376:279034 -k1,17290:24575633,24049376:279034 -k1,17290:26827301,24049376:279035 -k1,17290:29190380,24049376:279034 -k1,17290:30736880,24049376:279034 -k1,17290:31966991,24049376:0 -) -(1,17291:7246811,24890864:24720180,505283,134348 -k1,17290:9779878,24890864:199330 -k1,17290:10630636,24890864:199330 -k1,17290:14157229,24890864:199330 -k1,17290:16212540,24890864:199331 -k1,17290:17906091,24890864:199330 -k1,17290:18788306,24890864:199330 -k1,17290:21415745,24890864:199330 -k1,17290:22432964,24890864:199330 -k1,17290:24021002,24890864:199330 -k1,17290:24906495,24890864:199331 -k1,17290:26760609,24890864:199330 -k1,17290:27951499,24890864:199330 -k1,17290:28960199,24890864:199330 -k1,17290:31966991,24890864:0 -) -(1,17291:7246811,25732352:24720180,513147,126483 -g1,17290:8839991,25732352 -g1,17290:10058305,25732352 -g1,17290:13096554,25732352 -g1,17290:14314868,25732352 -g1,17290:15606582,25732352 -g1,17290:16465103,25732352 -g1,17290:17020192,25732352 -g1,17290:20042712,25732352 -g1,17290:20773438,25732352 -g1,17290:23135355,25732352 -g1,17290:27064893,25732352 -g1,17290:27915550,25732352 -g1,17290:29133864,25732352 -g1,17290:29747936,25732352 -k1,17291:31966991,25732352:664541 -g1,17291:31966991,25732352 -) -] -) -] -r1,17291:32583029,26448659:26214,4150992,0 -) -] -) -) -g1,17291:32583029,25858835 -) -h1,17291:6630773,26474873:0,0,0 -v1,17295:6630773,28364937:0,393216,0 -(1,17306:6630773,33319063:25952256,5347342,616038 -g1,17306:6630773,33319063 -(1,17306:6630773,33319063:25952256,5347342,616038 -(1,17306:6630773,33935101:25952256,5963380,0 -[1,17306:6630773,33935101:25952256,5963380,0 -(1,17306:6630773,33908887:25952256,5910952,0 -r1,17306:6656987,33908887:26214,5910952,0 -[1,17306:6656987,33908887:25899828,5910952,0 -(1,17306:6656987,33319063:25899828,4731304,0 -[1,17306:7246811,33319063:24720180,4731304,0 -(1,17297:7246811,29610105:24720180,1022346,134348 -k1,17295:8700179,29610105:197855 -k1,17295:9367926,29610105:197854 -k1,17295:10097278,29610105:197855 -k1,17295:12424397,29610105:197854 -k1,17295:14206257,29610105:197855 -k1,17295:15055540,29610105:197855 -k1,17295:16910144,29610105:197854 -k1,17295:18117253,29610105:197855 -k1,17295:19506552,29610105:197854 -k1,17295:20320445,29610105:197855 -k1,17295:21537385,29610105:197855 -k1,17295:23102320,29610105:197854 -k1,17295:23959467,29610105:197855 -k1,17295:25176407,29610105:197855 -k1,17295:27129971,29610105:197854 -k1,17295:28346911,29610105:197855 -k1,17295:29879733,29610105:197854 -k1,17295:31315563,29610105:197855 -k1,17295:31966991,29610105:0 -) -(1,17297:7246811,30451593:24720180,505283,126483 -g1,17295:8637485,30451593 -g1,17295:10121220,30451593 -g1,17295:11339534,30451593 -g1,17295:14530482,30451593 -g1,17296:15833993,30451593 -g1,17296:16780988,30451593 -g1,17296:18098261,30451593 -g1,17296:18913528,30451593 -g1,17296:19468617,30451593 -g1,17296:21924906,30451593 -k1,17297:31966991,30451593:7622496 -g1,17297:31966991,30451593 -) -v1,17299:7246811,31642059:0,393216,0 -(1,17304:7246811,32598167:24720180,1349324,196608 -g1,17304:7246811,32598167 -g1,17304:7246811,32598167 -g1,17304:7050203,32598167 -(1,17304:7050203,32598167:0,1349324,196608 -r1,17306:32163599,32598167:25113396,1545932,196608 -k1,17304:7050203,32598167:-25113396 -) -(1,17304:7050203,32598167:25113396,1349324,196608 -[1,17304:7246811,32598167:24720180,1152716,0 -(1,17301:7246811,31849677:24720180,404226,82312 -(1,17300:7246811,31849677:0,0,0 -g1,17300:7246811,31849677 -g1,17300:7246811,31849677 -g1,17300:6919131,31849677 -(1,17300:6919131,31849677:0,0,0 -) -g1,17300:7246811,31849677 -) -k1,17301:7246811,31849677:0 -g1,17301:12621288,31849677 -g1,17301:15782745,31849677 -g1,17301:16415037,31849677 -h1,17301:17995766,31849677:0,0,0 -k1,17301:31966991,31849677:13971225 -g1,17301:31966991,31849677 -) -(1,17302:7246811,32515855:24720180,404226,82312 -h1,17302:7246811,32515855:0,0,0 -g1,17302:13569725,32515855 -g1,17302:16731182,32515855 -g1,17302:17363474,32515855 -h1,17302:18944203,32515855:0,0,0 -k1,17302:31966991,32515855:13022788 -g1,17302:31966991,32515855 -) -] -) -g1,17304:31966991,32598167 -g1,17304:7246811,32598167 -g1,17304:7246811,32598167 -g1,17304:31966991,32598167 -g1,17304:31966991,32598167 -) -h1,17304:7246811,32794775:0,0,0 -] -) -] -r1,17306:32583029,33908887:26214,5910952,0 -) -] -) -) -g1,17306:32583029,33319063 -) -h1,17306:6630773,33935101:0,0,0 -(1,17308:6630773,36742669:25952256,32768,229376 -(1,17308:6630773,36742669:0,32768,229376 -(1,17308:6630773,36742669:5505024,32768,229376 -r1,17308:12135797,36742669:5505024,262144,229376 -) -k1,17308:6630773,36742669:-5505024 -) -(1,17308:6630773,36742669:25952256,32768,0 -r1,17308:32583029,36742669:25952256,32768,0 -) -) -(1,17308:6630773,38346997:25952256,606339,161218 -(1,17308:6630773,38346997:2464678,582746,14155 -g1,17308:6630773,38346997 -g1,17308:9095451,38346997 -) -g1,17308:12303307,38346997 -k1,17308:32583029,38346997:17283416 -g1,17308:32583029,38346997 -) -(1,17310:6630773,39581701:25952256,513147,134348 -k1,17309:8502876,39581701:219940 -k1,17309:9926057,39581701:219940 -k1,17309:10677494,39581701:219940 -k1,17309:11916519,39581701:219940 -k1,17309:13319384,39581701:219940 -k1,17309:14198616,39581701:219940 -k1,17309:15437641,39581701:219940 -k1,17309:17413291,39581701:219940 -k1,17309:17846203,39581701:219920 -k1,17309:21852813,39581701:219940 -k1,17309:22758915,39581701:219940 -k1,17309:25254265,39581701:219940 -k1,17309:27876755,39581701:219940 -k1,17309:29115780,39581701:219940 -k1,17309:31923737,39581701:219940 -k1,17309:32583029,39581701:0 -) -(1,17310:6630773,40423189:25952256,513147,134348 -k1,17309:8722562,40423189:244329 -k1,17309:9653053,40423189:244329 -k1,17309:11277570,40423189:244329 -k1,17309:12513460,40423189:244330 -k1,17309:13847653,40423189:244329 -k1,17309:14751274,40423189:244329 -k1,17309:17362763,40423189:244329 -k1,17309:19815655,40423189:244329 -k1,17309:22319010,40423189:244329 -k1,17309:23176101,40423189:244329 -k1,17309:24439516,40423189:244330 -k1,17309:25866770,40423189:244329 -k1,17309:26770391,40423189:244329 -k1,17309:28849073,40423189:244329 -k1,17309:29542934,40423189:244284 -k1,17309:31129440,40423189:244329 -k1,17309:32583029,40423189:0 -) -(1,17310:6630773,41264677:25952256,505283,134348 -k1,17309:9155493,41264677:245378 -k1,17309:11560937,41264677:245377 -k1,17309:12976788,41264677:245378 -k1,17309:15402548,41264677:245377 -k1,17309:17060227,41264677:245378 -k1,17309:17665398,41264677:245378 -k1,17309:19945012,41264677:245377 -k1,17309:22244944,41264677:245378 -k1,17309:24291250,41264677:245377 -k1,17309:25728073,41264677:245378 -k1,17309:27173414,41264677:245377 -k1,17309:28192772,41264677:245378 -k1,17310:32583029,41264677:0 -) -(1,17310:6630773,42106165:25952256,513147,134348 -k1,17309:8894231,42106165:208904 -k1,17309:11077793,42106165:208962 -k1,17309:11764454,42106165:208904 -k1,17309:13143831,42106165:208904 -k1,17309:14901351,42106165:208904 -k1,17309:15761683,42106165:208904 -k1,17309:17725641,42106165:208904 -k1,17309:18912998,42106165:208904 -k1,17309:21272138,42106165:208904 -k1,17309:24179159,42106165:208904 -k1,17309:25149591,42106165:208904 -k1,17309:26277310,42106165:208904 -k1,17309:31170728,42106165:208904 -k1,17309:32583029,42106165:0 -) -(1,17310:6630773,42947653:25952256,513147,126483 -g1,17309:8115818,42947653 -g1,17309:9502559,42947653 -g1,17309:10151365,42947653 -g1,17309:12668603,42947653 -g1,17309:14922386,42947653 -k1,17310:32583029,42947653:15686043 -g1,17310:32583029,42947653 -) -] -(1,17315:32583029,45706769:0,0,0 -g1,17315:32583029,45706769 -) -) -] -(1,17315:6630773,47279633:25952256,0,0 -h1,17315:6630773,47279633:25952256,0,0 -) -] -h1,17315:4262630,4025873:0,0,0 -] -!21752 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17348:37855564,49800853:1179648,16384,0 +) +) +k1,17348:3078556,49800853:-34777008 +) +] +g1,17348:6630773,4812305 +k1,17348:25146660,4812305:17320510 +g1,17348:26880087,4812305 +g1,17348:29193507,4812305 +g1,17348:30603186,4812305 +) +) +] +[1,17348:6630773,45706769:25952256,40108032,0 +(1,17348:6630773,45706769:25952256,40108032,0 +(1,17348:6630773,45706769:0,0,0 +g1,17348:6630773,45706769 +) +[1,17348:6630773,45706769:25952256,40108032,0 +v1,17319:6630773,6254097:0,393216,0 +(1,17319:6630773,20577997:25952256,14717116,196608 +g1,17319:6630773,20577997 +g1,17319:6630773,20577997 +g1,17319:6434165,20577997 +(1,17319:6434165,20577997:0,14717116,196608 +r1,17319:32779637,20577997:26345472,14913724,196608 +k1,17319:6434165,20577997:-26345472 +) +(1,17319:6434165,20577997:26345472,14717116,196608 +[1,17319:6630773,20577997:25952256,14520508,0 +(1,17291:6630773,6461715:25952256,404226,76021 +h1,17291:6630773,6461715:0,0,0 +h1,17291:6946919,6461715:0,0,0 +k1,17291:32583029,6461715:25636110 +g1,17291:32583029,6461715 +) +(1,17292:6630773,7127893:25952256,404226,82312 +h1,17292:6630773,7127893:0,0,0 +g1,17292:10108376,7127893 +g1,17292:11056814,7127893 +g1,17292:13902126,7127893 +h1,17292:17063583,7127893:0,0,0 +k1,17292:32583029,7127893:15519446 +g1,17292:32583029,7127893 +) +(1,17293:6630773,7794071:25952256,404226,76021 +h1,17293:6630773,7794071:0,0,0 +k1,17293:6630773,7794071:0 +h1,17293:12953686,7794071:0,0,0 +k1,17293:32583030,7794071:19629344 +g1,17293:32583030,7794071 +) +(1,17302:6630773,8525785:25952256,410518,107478 +(1,17295:6630773,8525785:0,0,0 +g1,17295:6630773,8525785 +g1,17295:6630773,8525785 +g1,17295:6303093,8525785 +(1,17295:6303093,8525785:0,0,0 +) +g1,17295:6630773,8525785 +) +g1,17302:7579210,8525785 +g1,17302:7895356,8525785 +g1,17302:9159939,8525785 +g1,17302:11372959,8525785 +g1,17302:11689105,8525785 +g1,17302:12005251,8525785 +g1,17302:12321397,8525785 +g1,17302:12637543,8525785 +g1,17302:12953689,8525785 +g1,17302:13269835,8525785 +g1,17302:13585981,8525785 +g1,17302:13902127,8525785 +g1,17302:14218273,8525785 +g1,17302:14534419,8525785 +g1,17302:18012022,8525785 +g1,17302:18328168,8525785 +g1,17302:18644314,8525785 +g1,17302:18960460,8525785 +g1,17302:19276606,8525785 +g1,17302:19592752,8525785 +g1,17302:19908898,8525785 +g1,17302:24334938,8525785 +g1,17302:24651084,8525785 +g1,17302:24967230,8525785 +g1,17302:25283376,8525785 +h1,17302:29393270,8525785:0,0,0 +k1,17302:32583029,8525785:3189759 +g1,17302:32583029,8525785 +) +(1,17302:6630773,9191963:25952256,410518,101187 +h1,17302:6630773,9191963:0,0,0 +g1,17302:7579210,9191963 +g1,17302:7895356,9191963 +g1,17302:9159939,9191963 +g1,17302:13585979,9191963 +g1,17302:13902125,9191963 +g1,17302:14218271,9191963 +g1,17302:14534417,9191963 +g1,17302:19592748,9191963 +g1,17302:19908894,9191963 +g1,17302:24018788,9191963 +g1,17302:24334934,9191963 +g1,17302:24651080,9191963 +g1,17302:24967226,9191963 +g1,17302:25283372,9191963 +h1,17302:30025557,9191963:0,0,0 +k1,17302:32583029,9191963:2557472 +g1,17302:32583029,9191963 +) +(1,17302:6630773,9858141:25952256,404226,101187 +h1,17302:6630773,9858141:0,0,0 +g1,17302:7579210,9858141 +g1,17302:7895356,9858141 +g1,17302:9159939,9858141 +g1,17302:13269833,9858141 +g1,17302:13585979,9858141 +g1,17302:13902125,9858141 +g1,17302:14218271,9858141 +g1,17302:14534417,9858141 +g1,17302:19592748,9858141 +g1,17302:19908894,9858141 +g1,17302:24334934,9858141 +g1,17302:24651080,9858141 +g1,17302:24967226,9858141 +g1,17302:25283372,9858141 +h1,17302:28760974,9858141:0,0,0 +k1,17302:32583029,9858141:3822055 +g1,17302:32583029,9858141 +) +(1,17302:6630773,10524319:25952256,404226,101187 +h1,17302:6630773,10524319:0,0,0 +g1,17302:7579210,10524319 +g1,17302:9159939,10524319 +g1,17302:13269833,10524319 +g1,17302:13585979,10524319 +g1,17302:13902125,10524319 +g1,17302:14218271,10524319 +g1,17302:14534417,10524319 +g1,17302:19908894,10524319 +g1,17302:24018788,10524319 +g1,17302:24334934,10524319 +g1,17302:24651080,10524319 +g1,17302:24967226,10524319 +g1,17302:25283372,10524319 +h1,17302:27812537,10524319:0,0,0 +k1,17302:32583029,10524319:4770492 +g1,17302:32583029,10524319 +) +(1,17302:6630773,11190497:25952256,410518,101187 +h1,17302:6630773,11190497:0,0,0 +g1,17302:7579210,11190497 +g1,17302:9159939,11190497 +g1,17302:12005250,11190497 +g1,17302:12321396,11190497 +g1,17302:12637542,11190497 +g1,17302:12953688,11190497 +g1,17302:13269834,11190497 +g1,17302:13585980,11190497 +g1,17302:13902126,11190497 +g1,17302:14218272,11190497 +g1,17302:14534418,11190497 +g1,17302:19276604,11190497 +g1,17302:19592750,11190497 +g1,17302:19908896,11190497 +g1,17302:23386499,11190497 +g1,17302:23702645,11190497 +g1,17302:24018791,11190497 +g1,17302:24334937,11190497 +g1,17302:24651083,11190497 +g1,17302:24967229,11190497 +g1,17302:25283375,11190497 +h1,17302:29709415,11190497:0,0,0 +k1,17302:32583029,11190497:2873614 +g1,17302:32583029,11190497 +) +(1,17302:6630773,11856675:25952256,410518,76021 +h1,17302:6630773,11856675:0,0,0 +g1,17302:7579210,11856675 +g1,17302:9159939,11856675 +h1,17302:13269833,11856675:0,0,0 +k1,17302:32583029,11856675:19313196 +g1,17302:32583029,11856675 +) +(1,17304:6630773,13178213:25952256,404226,9436 +(1,17303:6630773,13178213:0,0,0 +g1,17303:6630773,13178213 +g1,17303:6630773,13178213 +g1,17303:6303093,13178213 +(1,17303:6303093,13178213:0,0,0 +) +g1,17303:6630773,13178213 +) +g1,17304:10108376,13178213 +k1,17304:10108376,13178213:0 +h1,17304:11372958,13178213:0,0,0 +k1,17304:32583030,13178213:21210072 +g1,17304:32583030,13178213 +) +(1,17305:6630773,13844391:25952256,410518,82312 +h1,17305:6630773,13844391:0,0,0 +g1,17305:6946919,13844391 +g1,17305:7263065,13844391 +g1,17305:10424522,13844391 +g1,17305:14850562,13844391 +g1,17305:15482854,13844391 +g1,17305:16431292,13844391 +k1,17305:16431292,13844391:0 +h1,17305:17695874,13844391:0,0,0 +k1,17305:32583029,13844391:14887155 +g1,17305:32583029,13844391 +) +(1,17306:6630773,14510569:25952256,410518,107478 +h1,17306:6630773,14510569:0,0,0 +g1,17306:6946919,14510569 +g1,17306:7263065,14510569 +g1,17306:11056813,14510569 +g1,17306:15166707,14510569 +k1,17306:15166707,14510569:0 +h1,17306:16431289,14510569:0,0,0 +k1,17306:32583029,14510569:16151740 +g1,17306:32583029,14510569 +) +(1,17307:6630773,15176747:25952256,404226,107478 +h1,17307:6630773,15176747:0,0,0 +g1,17307:6946919,15176747 +g1,17307:7263065,15176747 +g1,17307:11372959,15176747 +g1,17307:14534416,15176747 +g1,17307:15166708,15176747 +g1,17307:20541185,15176747 +g1,17307:22438059,15176747 +g1,17307:23070351,15176747 +g1,17307:24967226,15176747 +g1,17307:25599518,15176747 +g1,17307:26547955,15176747 +g1,17307:27180247,15176747 +h1,17307:28760976,15176747:0,0,0 +k1,17307:32583029,15176747:3822053 +g1,17307:32583029,15176747 +) +(1,17318:6630773,15908461:25952256,404226,101187 +(1,17309:6630773,15908461:0,0,0 +g1,17309:6630773,15908461 +g1,17309:6630773,15908461 +g1,17309:6303093,15908461 +(1,17309:6303093,15908461:0,0,0 +) +g1,17309:6630773,15908461 +) +g1,17318:7579210,15908461 +g1,17318:8211502,15908461 +g1,17318:10740668,15908461 +g1,17318:11056814,15908461 +g1,17318:11372960,15908461 +g1,17318:12953689,15908461 +g1,17318:14850563,15908461 +g1,17318:16115146,15908461 +g1,17318:16747438,15908461 +h1,17318:17379729,15908461:0,0,0 +k1,17318:32583029,15908461:15203300 +g1,17318:32583029,15908461 +) +(1,17318:6630773,16574639:25952256,404226,101187 +h1,17318:6630773,16574639:0,0,0 +g1,17318:7579210,16574639 +g1,17318:8211502,16574639 +g1,17318:11372959,16574639 +g1,17318:13585979,16574639 +g1,17318:15798999,16574639 +h1,17318:18960456,16574639:0,0,0 +k1,17318:32583029,16574639:13622573 +g1,17318:32583029,16574639 +) +(1,17318:6630773,17240817:25952256,410518,107478 +h1,17318:6630773,17240817:0,0,0 +g1,17318:7579210,17240817 +g1,17318:7895356,17240817 +g1,17318:8211502,17240817 +g1,17318:12005250,17240817 +h1,17318:14850561,17240817:0,0,0 +k1,17318:32583029,17240817:17732468 +g1,17318:32583029,17240817 +) +(1,17318:6630773,17906995:25952256,404226,6290 +h1,17318:6630773,17906995:0,0,0 +g1,17318:7579210,17906995 +g1,17318:7895356,17906995 +g1,17318:8211502,17906995 +g1,17318:8527648,17906995 +g1,17318:8843794,17906995 +g1,17318:9159940,17906995 +g1,17318:9476086,17906995 +g1,17318:9792232,17906995 +g1,17318:10108378,17906995 +g1,17318:12005253,17906995 +g1,17318:12321399,17906995 +g1,17318:12637545,17906995 +g1,17318:12953691,17906995 +g1,17318:13269837,17906995 +k1,17318:13269837,17906995:0 +h1,17318:14850566,17906995:0,0,0 +k1,17318:32583030,17906995:17732464 +g1,17318:32583030,17906995 +) +(1,17318:6630773,18573173:25952256,388497,9436 +h1,17318:6630773,18573173:0,0,0 +g1,17318:7579210,18573173 +g1,17318:8211502,18573173 +g1,17318:8527648,18573173 +g1,17318:8843794,18573173 +g1,17318:9159940,18573173 +g1,17318:9476086,18573173 +g1,17318:9792232,18573173 +g1,17318:10108378,18573173 +g1,17318:10424524,18573173 +g1,17318:10740670,18573173 +g1,17318:12005253,18573173 +g1,17318:12321399,18573173 +g1,17318:12637545,18573173 +g1,17318:12953691,18573173 +g1,17318:13269837,18573173 +h1,17318:14850565,18573173:0,0,0 +k1,17318:32583029,18573173:17732464 +g1,17318:32583029,18573173 +) +(1,17318:6630773,19239351:25952256,388497,9436 +h1,17318:6630773,19239351:0,0,0 +g1,17318:7579210,19239351 +g1,17318:8211502,19239351 +g1,17318:8527648,19239351 +g1,17318:8843794,19239351 +g1,17318:9159940,19239351 +g1,17318:9476086,19239351 +g1,17318:9792232,19239351 +g1,17318:10108378,19239351 +g1,17318:10424524,19239351 +g1,17318:10740670,19239351 +g1,17318:12005253,19239351 +g1,17318:12321399,19239351 +g1,17318:12637545,19239351 +g1,17318:12953691,19239351 +g1,17318:13269837,19239351 +h1,17318:14850565,19239351:0,0,0 +k1,17318:32583029,19239351:17732464 +g1,17318:32583029,19239351 +) +(1,17318:6630773,19905529:25952256,388497,9436 +h1,17318:6630773,19905529:0,0,0 +g1,17318:7579210,19905529 +g1,17318:8211502,19905529 +g1,17318:8527648,19905529 +g1,17318:8843794,19905529 +g1,17318:9159940,19905529 +g1,17318:9476086,19905529 +g1,17318:9792232,19905529 +g1,17318:10108378,19905529 +g1,17318:10424524,19905529 +g1,17318:10740670,19905529 +g1,17318:12005253,19905529 +g1,17318:12321399,19905529 +g1,17318:12637545,19905529 +g1,17318:12953691,19905529 +g1,17318:13269837,19905529 +h1,17318:14850565,19905529:0,0,0 +k1,17318:32583029,19905529:17732464 +g1,17318:32583029,19905529 +) +(1,17318:6630773,20571707:25952256,404226,6290 +h1,17318:6630773,20571707:0,0,0 +g1,17318:7579210,20571707 +g1,17318:8211502,20571707 +g1,17318:9476085,20571707 +g1,17318:11056814,20571707 +g1,17318:12637543,20571707 +h1,17318:13902126,20571707:0,0,0 +k1,17318:32583030,20571707:18680904 +g1,17318:32583030,20571707 +) +] +) +g1,17319:32583029,20577997 +g1,17319:6630773,20577997 +g1,17319:6630773,20577997 +g1,17319:32583029,20577997 +g1,17319:32583029,20577997 +) +h1,17319:6630773,20774605:0,0,0 +v1,17323:6630773,22664669:0,393216,0 +(1,17324:6630773,25858835:25952256,3587382,616038 +g1,17324:6630773,25858835 +(1,17324:6630773,25858835:25952256,3587382,616038 +(1,17324:6630773,26474873:25952256,4203420,0 +[1,17324:6630773,26474873:25952256,4203420,0 +(1,17324:6630773,26448659:25952256,4150992,0 +r1,17324:6656987,26448659:26214,4150992,0 +[1,17324:6656987,26448659:25899828,4150992,0 +(1,17324:6656987,25858835:25899828,2971344,0 +[1,17324:7246811,25858835:24720180,2971344,0 +(1,17324:7246811,24049376:24720180,1161885,196608 +(1,17323:7246811,24049376:0,1161885,196608 +r1,17324:8794447,24049376:1547636,1358493,196608 +k1,17323:7246811,24049376:-1547636 +) +(1,17323:7246811,24049376:1547636,1161885,196608 +) +k1,17323:9073481,24049376:279034 +k1,17323:11887448,24049376:279034 +k1,17323:14551993,24049376:279035 +k1,17323:17972823,24049376:279034 +k1,17323:19641220,24049376:279034 +k1,17323:21640574,24049376:279034 +k1,17323:23204114,24049376:279034 +k1,17323:24575633,24049376:279034 +k1,17323:26827301,24049376:279035 +k1,17323:29190380,24049376:279034 +k1,17323:30736880,24049376:279034 +k1,17323:31966991,24049376:0 +) +(1,17324:7246811,24890864:24720180,505283,134348 +k1,17323:9779878,24890864:199330 +k1,17323:10630636,24890864:199330 +k1,17323:14157229,24890864:199330 +k1,17323:16212540,24890864:199331 +k1,17323:17906091,24890864:199330 +k1,17323:18788306,24890864:199330 +k1,17323:21415745,24890864:199330 +k1,17323:22432964,24890864:199330 +k1,17323:24021002,24890864:199330 +k1,17323:24906495,24890864:199331 +k1,17323:26760609,24890864:199330 +k1,17323:27951499,24890864:199330 +k1,17323:28960199,24890864:199330 +k1,17323:31966991,24890864:0 +) +(1,17324:7246811,25732352:24720180,513147,126483 +g1,17323:8839991,25732352 +g1,17323:10058305,25732352 +g1,17323:13096554,25732352 +g1,17323:14314868,25732352 +g1,17323:15606582,25732352 +g1,17323:16465103,25732352 +g1,17323:17020192,25732352 +g1,17323:20042712,25732352 +g1,17323:20773438,25732352 +g1,17323:23135355,25732352 +g1,17323:27064893,25732352 +g1,17323:27915550,25732352 +g1,17323:29133864,25732352 +g1,17323:29747936,25732352 +k1,17324:31966991,25732352:664541 +g1,17324:31966991,25732352 +) +] +) +] +r1,17324:32583029,26448659:26214,4150992,0 +) +] +) +) +g1,17324:32583029,25858835 +) +h1,17324:6630773,26474873:0,0,0 +v1,17328:6630773,28364937:0,393216,0 +(1,17339:6630773,33319063:25952256,5347342,616038 +g1,17339:6630773,33319063 +(1,17339:6630773,33319063:25952256,5347342,616038 +(1,17339:6630773,33935101:25952256,5963380,0 +[1,17339:6630773,33935101:25952256,5963380,0 +(1,17339:6630773,33908887:25952256,5910952,0 +r1,17339:6656987,33908887:26214,5910952,0 +[1,17339:6656987,33908887:25899828,5910952,0 +(1,17339:6656987,33319063:25899828,4731304,0 +[1,17339:7246811,33319063:24720180,4731304,0 +(1,17330:7246811,29610105:24720180,1022346,134348 +k1,17328:8700179,29610105:197855 +k1,17328:9367926,29610105:197854 +k1,17328:10097278,29610105:197855 +k1,17328:12424397,29610105:197854 +k1,17328:14206257,29610105:197855 +k1,17328:15055540,29610105:197855 +k1,17328:16910144,29610105:197854 +k1,17328:18117253,29610105:197855 +k1,17328:19506552,29610105:197854 +k1,17328:20320445,29610105:197855 +k1,17328:21537385,29610105:197855 +k1,17328:23102320,29610105:197854 +k1,17328:23959467,29610105:197855 +k1,17328:25176407,29610105:197855 +k1,17328:27129971,29610105:197854 +k1,17328:28346911,29610105:197855 +k1,17328:29879733,29610105:197854 +k1,17328:31315563,29610105:197855 +k1,17328:31966991,29610105:0 +) +(1,17330:7246811,30451593:24720180,505283,126483 +g1,17328:8637485,30451593 +g1,17328:10121220,30451593 +g1,17328:11339534,30451593 +g1,17328:14530482,30451593 +g1,17329:15833993,30451593 +g1,17329:16780988,30451593 +g1,17329:18098261,30451593 +g1,17329:18913528,30451593 +g1,17329:19468617,30451593 +g1,17329:21924906,30451593 +k1,17330:31966991,30451593:7622496 +g1,17330:31966991,30451593 +) +v1,17332:7246811,31642059:0,393216,0 +(1,17337:7246811,32598167:24720180,1349324,196608 +g1,17337:7246811,32598167 +g1,17337:7246811,32598167 +g1,17337:7050203,32598167 +(1,17337:7050203,32598167:0,1349324,196608 +r1,17339:32163599,32598167:25113396,1545932,196608 +k1,17337:7050203,32598167:-25113396 +) +(1,17337:7050203,32598167:25113396,1349324,196608 +[1,17337:7246811,32598167:24720180,1152716,0 +(1,17334:7246811,31849677:24720180,404226,82312 +(1,17333:7246811,31849677:0,0,0 +g1,17333:7246811,31849677 +g1,17333:7246811,31849677 +g1,17333:6919131,31849677 +(1,17333:6919131,31849677:0,0,0 +) +g1,17333:7246811,31849677 +) +k1,17334:7246811,31849677:0 +g1,17334:12621288,31849677 +g1,17334:15782745,31849677 +g1,17334:16415037,31849677 +h1,17334:17995766,31849677:0,0,0 +k1,17334:31966991,31849677:13971225 +g1,17334:31966991,31849677 +) +(1,17335:7246811,32515855:24720180,404226,82312 +h1,17335:7246811,32515855:0,0,0 +g1,17335:13569725,32515855 +g1,17335:16731182,32515855 +g1,17335:17363474,32515855 +h1,17335:18944203,32515855:0,0,0 +k1,17335:31966991,32515855:13022788 +g1,17335:31966991,32515855 +) +] +) +g1,17337:31966991,32598167 +g1,17337:7246811,32598167 +g1,17337:7246811,32598167 +g1,17337:31966991,32598167 +g1,17337:31966991,32598167 +) +h1,17337:7246811,32794775:0,0,0 +] +) +] +r1,17339:32583029,33908887:26214,5910952,0 +) +] +) +) +g1,17339:32583029,33319063 +) +h1,17339:6630773,33935101:0,0,0 +(1,17341:6630773,36742669:25952256,32768,229376 +(1,17341:6630773,36742669:0,32768,229376 +(1,17341:6630773,36742669:5505024,32768,229376 +r1,17341:12135797,36742669:5505024,262144,229376 +) +k1,17341:6630773,36742669:-5505024 +) +(1,17341:6630773,36742669:25952256,32768,0 +r1,17341:32583029,36742669:25952256,32768,0 +) +) +(1,17341:6630773,38346997:25952256,606339,161218 +(1,17341:6630773,38346997:2464678,582746,14155 +g1,17341:6630773,38346997 +g1,17341:9095451,38346997 +) +g1,17341:12303307,38346997 +k1,17341:32583029,38346997:17283416 +g1,17341:32583029,38346997 +) +(1,17343:6630773,39581701:25952256,513147,134348 +k1,17342:8565683,39581701:282747 +k1,17342:10051671,39581701:282747 +k1,17342:10865915,39581701:282747 +k1,17342:12167746,39581701:282746 +k1,17342:13633418,39581701:282747 +k1,17342:14575457,39581701:282747 +k1,17342:15877289,39581701:282747 +k1,17342:17915746,39581701:282747 +k1,17342:18411401,39581701:282663 +k1,17342:22480818,39581701:282747 +k1,17342:23449726,39581701:282746 +k1,17342:26007883,39581701:282747 +k1,17342:28693180,39581701:282747 +k1,17342:29995012,39581701:282747 +k1,17342:32583029,39581701:0 +) +(1,17343:6630773,40423189:25952256,513147,134348 +k1,17342:7579253,40423189:289188 +(1,17342:7579253,40423189:3555328,485622,11795 +) +k1,17342:11423770,40423189:289189 +k1,17342:12399120,40423189:289188 +k1,17342:14068497,40423189:289189 +k1,17342:15349245,40423189:289188 +k1,17342:16728298,40423189:289189 +k1,17342:17676778,40423189:289188 +k1,17342:20333127,40423189:289189 +k1,17342:22830878,40423189:289188 +k1,17342:25379093,40423189:289189 +k1,17342:26281043,40423189:289188 +k1,17342:27589317,40423189:289189 +k1,17342:29061430,40423189:289188 +k1,17342:30009911,40423189:289189 +k1,17342:32133452,40423189:289188 +k1,17342:32583029,40423189:0 +) +(1,17343:6630773,41264677:25952256,505283,134348 +k1,17342:8141181,41264677:168231 +k1,17342:9763000,41264677:168230 +k1,17342:12210573,41264677:168231 +k1,17342:14538871,41264677:168231 +k1,17342:15877574,41264677:168230 +k1,17342:18226188,41264677:168231 +k1,17342:19806720,41264677:168231 +(1,17342:19806720,41264677:3555328,485622,11795 +) +k1,17342:23530279,41264677:168231 +(1,17342:23737373,41264677:3555328,485622,11795 +) +k1,17342:27668025,41264677:168230 +k1,17342:29027701,41264677:168231 +(1,17342:29027701,41264677:3555328,485622,11795 +) +k1,17342:32583029,41264677:0 +) +(1,17343:6630773,42106165:25952256,513147,134348 +(1,17342:6837867,42106165:3555328,485622,11795 +) +k1,17342:10990870,42106165:216911 +k1,17342:11685433,42106165:216806 +k1,17342:13072713,42106165:216807 +k1,17342:14838135,42106165:216806 +k1,17342:15706369,42106165:216806 +k1,17342:17678229,42106165:216806 +k1,17342:18873488,42106165:216806 +k1,17342:21240530,42106165:216806 +k1,17342:24155453,42106165:216806 +k1,17342:25133787,42106165:216806 +k1,17342:26269408,42106165:216806 +k1,17342:31170728,42106165:216806 +k1,17342:32583029,42106165:0 +) +(1,17343:6630773,42947653:25952256,505283,95026 +g1,17342:8115818,42947653 +(1,17342:8115818,42947653:3555328,485622,11795 +) +g1,17342:11870375,42947653 +(1,17342:12077469,42947653:3555328,485622,11795 +) +k1,17343:32583029,42947653:16569468 +g1,17343:32583029,42947653 +) +] +(1,17348:32583029,45706769:0,0,0 +g1,17348:32583029,45706769 +) +) +] +(1,17348:6630773,47279633:25952256,0,0 +h1,17348:6630773,47279633:25952256,0,0 +) +] +h1,17348:4262630,4025873:0,0,0 +] +!21850 }335 -!12 +Input:2534:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.ind +!100 {336 -[1,17318:4262630,47279633:28320399,43253760,11795 -(1,17318:4262630,4025873:0,0,0 -[1,17318:-473657,4025873:25952256,0,0 -(1,17318:-473657,-710414:25952256,0,0 -h1,17318:-473657,-710414:0,0,0 -(1,17318:-473657,-710414:0,0,0 -(1,17318:-473657,-710414:0,0,0 -g1,17318:-473657,-710414 -(1,17318:-473657,-710414:65781,0,65781 -g1,17318:-407876,-710414 -[1,17318:-407876,-644633:0,0,0 +[2534,86:4262630,47279633:28320399,43253760,11795 +(2534,86:4262630,4025873:0,0,0 +[2534,86:-473657,4025873:11829248,0,0 +(2534,86:-473657,-710414:11829248,0,0 +h2534,86:-473657,-710414:0,0,0 +(2534,86:-473657,-710414:0,0,0 +(2534,86:-473657,-710414:0,0,0 +g2534,86:-473657,-710414 +(2534,86:-473657,-710414:65781,0,65781 +g2534,86:-407876,-710414 +[2534,86:-407876,-644633:0,0,0 ] ) -k1,17318:-473657,-710414:-65781 +k2534,86:-473657,-710414:-65781 ) ) -k1,17318:25478599,-710414:25952256 -g1,17318:25478599,-710414 +k2534,86:11355591,-710414:11829248 +g2534,86:11355591,-710414 ) ] ) -[1,17318:6630773,47279633:25952256,43253760,11795 -[1,17318:6630773,4812305:25952256,786432,0 -(1,17318:6630773,4812305:25952256,0,0 -(1,17318:6630773,4812305:25952256,0,0 -g1,17318:3078558,4812305 -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,2439708:0,1703936,0 -k1,17318:1358238,2439708:-1720320 -(1,17318:1358238,2439708:1720320,1703936,0 -(1,17318:1358238,2439708:1179648,16384,0 -r1,17318:2537886,2439708:1179648,16384,0 +[2534,86:6630773,47279633:25952256,43253760,11795 +[2534,86:6630773,4812305:25952256,786432,0 +(2534,86:6630773,4812305:25952256,0,0 +(2534,86:6630773,4812305:25952256,0,0 +g2534,86:3078558,4812305 +[2534,86:3078558,4812305:0,0,0 +(2534,86:3078558,2439708:0,1703936,0 +k2534,86:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,86:2537886,2439708:1179648,16384,0 ) -g1,17318:3062174,2439708 -(1,17318:3062174,2439708:16384,1703936,0 -[1,17318:3062174,2439708:25952256,1703936,0 -(1,17318:3062174,1915420:25952256,1179648,0 -(1,17318:3062174,1915420:16384,1179648,0 -r1,17318:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,86:3078558,1915420:16384,1179648,0 ) -k1,17318:29014430,1915420:25935872 -g1,17318:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,2439708:0,1703936,0 -g1,17318:29030814,2439708 -g1,17318:36135244,2439708 -(1,17318:36135244,2439708:1720320,1703936,0 -(1,17318:36135244,2439708:16384,1703936,0 -[1,17318:36135244,2439708:25952256,1703936,0 -(1,17318:36135244,1915420:25952256,1179648,0 -(1,17318:36135244,1915420:16384,1179648,0 -r1,17318:36151628,1915420:16384,1179648,0 +[2534,86:3078558,4812305:0,0,0 +(2534,86:3078558,2439708:0,1703936,0 +g2534,86:29030814,2439708 +g2534,86:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,86:36151628,1915420:16384,1179648,0 ) -k1,17318:62087500,1915420:25935872 -g1,17318:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g1,17318:36675916,2439708 -(1,17318:36675916,2439708:1179648,16384,0 -r1,17318:37855564,2439708:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,86:37855564,2439708:1179648,16384,0 ) ) -k1,17318:3078556,2439708:-34777008 +k2534,86:3078556,2439708:-34777008 ) ] -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,49800853:0,16384,2228224 -k1,17318:1358238,49800853:-1720320 -(1,17318:1358238,49800853:1720320,16384,2228224 -(1,17318:1358238,49800853:1179648,16384,0 -r1,17318:2537886,49800853:1179648,16384,0 +[2534,86:3078558,4812305:0,0,0 +(2534,86:3078558,49800853:0,16384,2228224 +k2534,86:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,86:2537886,49800853:1179648,16384,0 ) -g1,17318:3062174,49800853 -(1,17318:3062174,52029077:16384,1703936,0 -[1,17318:3062174,52029077:25952256,1703936,0 -(1,17318:3062174,51504789:25952256,1179648,0 -(1,17318:3062174,51504789:16384,1179648,0 -r1,17318:3078558,51504789:16384,1179648,0 +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,86:3078558,51504789:16384,1179648,0 ) -k1,17318:29014430,51504789:25935872 -g1,17318:29014430,51504789 +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] ) ) ) ] -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,49800853:0,16384,2228224 -g1,17318:29030814,49800853 -g1,17318:36135244,49800853 -(1,17318:36135244,49800853:1720320,16384,2228224 -(1,17318:36135244,52029077:16384,1703936,0 -[1,17318:36135244,52029077:25952256,1703936,0 -(1,17318:36135244,51504789:25952256,1179648,0 -(1,17318:36135244,51504789:16384,1179648,0 -r1,17318:36151628,51504789:16384,1179648,0 +[2534,86:3078558,4812305:0,0,0 +(2534,86:3078558,49800853:0,16384,2228224 +g2534,86:29030814,49800853 +g2534,86:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,86:36151628,51504789:16384,1179648,0 ) -k1,17318:62087500,51504789:25935872 -g1,17318:62087500,51504789 +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] ) -g1,17318:36675916,49800853 -(1,17318:36675916,49800853:1179648,16384,0 -r1,17318:37855564,49800853:1179648,16384,0 +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,86:37855564,49800853:1179648,16384,0 ) ) -k1,17318:3078556,49800853:-34777008 +k2534,86:3078556,49800853:-34777008 ) ] -g1,17318:6630773,4812305 +g2534,86:6630773,4812305 ) ) ] -[1,17318:6630773,45706769:25952256,40108032,0 -(1,17318:6630773,45706769:25952256,40108032,0 -(1,17318:6630773,45706769:0,0,0 -g1,17318:6630773,45706769 +[2534,86:6630773,45706769:25952256,40108032,0 +(2534,86:6630773,45706769:25952256,40108032,0 +(2534,86:6630773,45706769:0,0,0 +g2534,86:6630773,45706769 ) -[1,17318:6630773,45706769:25952256,40108032,0 -[1,17318:6630773,12106481:25952256,6507744,0 -(1,17318:6630773,7073297:25952256,32768,229376 -(1,17318:6630773,7073297:0,32768,229376 -(1,17318:6630773,7073297:5505024,32768,229376 -r1,17318:12135797,7073297:5505024,262144,229376 +[2534,86:6630773,45706769:25952256,40108032,0 +[2534,1:6630773,12106481:25952256,6507744,0 +(2534,1:6630773,7073297:25952256,32768,229376 +(2534,1:6630773,7073297:0,32768,229376 +(2534,1:6630773,7073297:5505024,32768,229376 +r2534,1:12135797,7073297:5505024,262144,229376 ) -k1,17318:6630773,7073297:-5505024 +k2534,1:6630773,7073297:-5505024 ) ) -(1,17318:6630773,8803457:25952256,909509,241827 -h1,17318:6630773,8803457:0,0,0 -k1,17318:23428371,8803457:9154658 -k1,17318:32583029,8803457:9154658 +(2534,1:6630773,8803457:25952256,909509,22412 +h2534,1:6630773,8803457:0,0,0 +g2534,1:11695002,8803457 +k2534,1:23726232,8803457:8856797 +k2534,1:32583029,8803457:8856797 ) -(1,17318:6630773,9419505:25952256,32768,0 -(1,17318:6630773,9419505:5505024,32768,0 -r1,17318:12135797,9419505:5505024,32768,0 -) -k1,17318:22359413,9419505:10223616 -k1,17318:32583029,9419505:10223616 -) -] -(1,17318:7613813,12947969:24969216,513147,126483 -(1,17318:7613813,12947969:-983040,0,0 -g1,17318:6630773,12947969 -g1,17318:5320053,12947969 -g1,17318:4992373,12947969 -(1,17318:4992373,12947969:1310720,0,0 -k1,17318:6303093,12947969:1310720 -) -g1,17318:6630773,12947969 -) -k1,17318:8383240,12947969:281839 -k1,17318:9326255,12947969:281757 -k1,17318:10239779,12947969:281757 -k1,17318:11712817,12947969:281593 -k1,17318:12444806,12947969:281757 -k1,17318:13403550,12947969:281757 -k1,17318:15957275,12947969:281592 -k1,17318:18421055,12947969:282086 -k1,17318:22545024,12947969:281593 -k1,17318:23442654,12947969:281592 -k1,17318:26720553,12947969:281593 -k1,17318:29384872,12947969:282086 -k1,17318:32583029,12947969:0 -) -(1,17318:7613813,13789457:24969216,485622,11795 -g1,17318:10146124,13789457 -g1,17318:12190847,13789457 -g1,17318:13981945,13789457 -k1,17318:32583029,13789457:14442825 -g1,17318:32583029,13789457 -) -(1,17318:7613813,14630945:24969216,505283,134348 -(1,17318:7613813,14630945:-983040,0,0 -g1,17318:6630773,14630945 -g1,17318:5320053,14630945 -g1,17318:4992373,14630945 -(1,17318:4992373,14630945:1310720,0,0 -k1,17318:6303093,14630945:1310720 -) -g1,17318:6630773,14630945 -) -k1,17318:8819101,14630945:171130 -k1,17318:9842853,14630945:171129 -k1,17318:10675213,14630945:171102 -k1,17318:11499708,14630945:171101 -k1,17318:14840814,14630945:171130 -k1,17318:16203304,14630945:171045 -k1,17318:16982579,14630945:171101 -k1,17318:17782827,14630945:171102 -k1,17318:19948788,14630945:171045 -k1,17318:21777295,14630945:171101 -k1,17318:23923109,14630945:171214 -k1,17318:24223251,14630945:-13 -k1,17318:24223264,14630945:13 -k1,17318:27366367,14630945:171045 -k1,17318:30727049,14630945:171045 -k1,17318:32583029,14630945:0 -) -(1,17318:7613813,15472433:24969216,505283,134348 -k1,17318:9619282,15472433:197331 -k1,17318:12978080,15472433:197341 -k1,17318:13976925,15472433:197340 -k1,17318:15505948,15472433:197331 -k1,17318:18693687,15472433:197331 -k1,17318:20035282,15472433:197336 -k1,17318:21247769,15472433:197334 -k1,17318:23540297,15472433:197342 -k1,17318:25074571,15472433:197340 -$1,17318:25074571,15472433 -k1,17318:25864935,15472433:0 -k1,17318:26260117,15472433:0 -k1,17318:27840845,15472433:0 -k1,17318:28236027,15472433:0 -k1,17318:30211937,15472433:0 -k1,17318:30607119,15472433:0 -k1,17318:32187847,15472433:0 -k1,17318:32583029,15472433:0 -) -(1,17318:7613813,16313921:24969216,485622,11796 -$1,17318:10380087,16313921 -k1,17318:32583029,16313921:22029272 -g1,17318:32583029,16313921 -) -(1,17318:7613813,17155409:24969216,513147,126483 -(1,17318:7613813,17155409:-983040,0,0 -g1,17318:6630773,17155409 -g1,17318:5320053,17155409 -g1,17318:4992373,17155409 -(1,17318:4992373,17155409:1310720,0,0 -k1,17318:6303093,17155409:1310720 -) -g1,17318:6630773,17155409 -) -k1,17318:9169461,17155409:256724 -k1,17318:10044787,17155409:256666 -k1,17318:10962712,17155409:256667 -k1,17318:12410709,17155409:256552 -k1,17318:13117607,17155409:256666 -k1,17318:14111554,17155409:256667 -k1,17318:17580681,17155409:256552 -k1,17318:20019270,17155409:256895 -k1,17318:20809572,17155409:256839 -k1,17318:21969210,17155409:256552 -k1,17318:25577273,17155409:256552 -k1,17318:29868221,17155409:256552 -k1,17318:31048831,17155409:256552 -k1,17318:32583029,17155409:0 -) -(1,17318:7613813,17996897:24969216,505283,126483 -k1,17318:10520447,17996897:283883 -k1,17318:12014781,17996897:283884 -k1,17318:15283681,17996897:284391 -k1,17318:18605158,17996897:283883 -k1,17318:20080487,17996897:283884 -k1,17318:23501430,17996897:284390 -k1,17318:25377606,17996897:284307 -k1,17318:30317167,17996897:283883 -k1,17318:31773659,17996897:284053 -k1,17318:32583029,17996897:0 -) -(1,17318:7613813,18838385:24969216,505283,126483 -g1,17318:8407454,18838385 -k1,17318:32583029,18838385:23396352 -g1,17318:32583029,18838385 -) -(1,17318:7613813,19679873:24969216,505283,134348 -(1,17318:7613813,19679873:-983040,0,0 -g1,17318:6630773,19679873 -g1,17318:5320053,19679873 -g1,17318:4992373,19679873 -(1,17318:4992373,19679873:1310720,0,0 -k1,17318:6303093,19679873:1310720 -) -g1,17318:6630773,19679873 -) -k1,17318:9118445,19679873:205708 -k1,17318:9942807,19679873:205702 -k1,17318:10983444,19679873:205708 -k1,17318:11639378,19679873:205702 -k1,17318:12582360,19679873:205702 -k1,17318:16174313,19679873:205708 -k1,17318:17571447,19679873:205689 -k1,17318:18438407,19679873:205702 -k1,17318:19262769,19679873:205702 -k1,17318:21203851,19679873:205689 -k1,17318:23591272,19679873:205727 -k1,17318:24984473,19679873:205689 -k1,17318:26556588,19679873:205689 -k1,17318:27122070,19679873:205689 -k1,17318:30628184,19679873:205721 -k1,17318:31323427,19679873:205689 -k1,17318:32583029,19679873:0 -) -(1,17318:7613813,20521361:24969216,513147,134348 -k1,17318:11129207,20521361:179611 -k1,17318:15343213,20521361:179610 -k1,17318:16446882,20521361:179611 -k1,17318:18160691,20521361:179611 -k1,17318:20963052,20521361:179610 -k1,17318:22353113,20521361:179611 -k1,17318:25517350,20521361:179728 -k1,17318:28734554,20521361:179610 -k1,17318:29366363,20521361:179611 -k1,17318:30991160,20521361:179728 -k1,17318:32583029,20521361:0 -) -(1,17318:7613813,21362849:24969216,505283,126483 -g1,17318:12468720,21362849 -g1,17318:13840388,21362849 -g1,17318:14848987,21362849 -g1,17318:16063369,21362849 -g1,17318:16834727,21362849 -k1,17318:32583029,21362849:14969079 -g1,17318:32583029,21362849 -) -(1,17318:7613813,22204337:24969216,505283,134348 -(1,17318:7613813,22204337:-983040,0,0 -g1,17318:6630773,22204337 -g1,17318:5320053,22204337 -g1,17318:4992373,22204337 -(1,17318:4992373,22204337:1310720,0,0 -k1,17318:6303093,22204337:1310720 -) -g1,17318:6630773,22204337 -) -k1,17318:8475127,22204337:190881 -k1,17318:9284659,22204337:190872 -k1,17318:10024723,22204337:190872 -k1,17318:12397322,22204337:190905 -k1,17318:12697464,22204337:-13 -k1,17318:12697477,22204337:13 -k1,17318:14114512,22204337:190856 -k1,17318:15173719,22204337:190855 -k1,17318:17080308,22204337:190856 -k1,17318:21363886,22204337:190855 -k1,17318:25542018,22204337:190922 -k1,17318:26534420,22204337:190897 -k1,17318:27912788,22204337:190856 -k1,17318:31179903,22204337:190855 -k1,17318:32583029,22204337:0 -) -(1,17318:7613813,23045825:24969216,505283,126483 -g1,17318:10912240,23045825 -g1,17318:13702107,23045825 -g1,17318:15842512,23045825 -g1,17318:17056894,23045825 -k1,17318:32583029,23045825:12634031 -g1,17318:32583029,23045825 -) -(1,17318:7613813,23887313:24969216,505283,126483 -(1,17318:7613813,23887313:-983040,0,0 -g1,17318:6630773,23887313 -g1,17318:5320053,23887313 -g1,17318:4992373,23887313 -(1,17318:4992373,23887313:1310720,0,0 -k1,17318:6303093,23887313:1310720 -) -g1,17318:6630773,23887313 -) -g1,17318:8851132,23887313 -g1,17318:9599553,23887313 -g1,17318:11980476,23887313 -g1,17318:12539498,23887313 -g1,17318:14772964,23887313 -g1,17318:16144632,23887313 -g1,17318:17153231,23887313 -g1,17318:18367613,23887313 -g1,17318:19935889,23887313 -k1,17318:32583029,23887313:11070999 -g1,17318:32583029,23887313 -) -(1,17318:7613813,24728801:24969216,513147,134349 -(1,17318:7613813,24728801:-983040,0,0 -g1,17318:6630773,24728801 -g1,17318:5320053,24728801 -g1,17318:4992373,24728801 -(1,17318:4992373,24728801:1310720,0,0 -k1,17318:6303093,24728801:1310720 -) -g1,17318:6630773,24728801 -) -(1,17318:6630773,24728801:983040,211026,0 -k1,17318:7613813,24728801:327680 -) -k1,17318:10014577,24728801:219070 -k1,17318:11421041,24728801:218952 -k1,17318:12089569,24728801:218951 -k1,17318:14785900,24728801:219070 -k1,17318:16375308,24728801:219051 -$1,17318:16375308,24728801 -k1,17318:17977664,24728801:21628 -k1,17318:18394473,24728801:21627 -k1,17318:18811283,24728801:21628 -k1,17318:19228093,24728801:21628 -k1,17318:20435267,24728801:21628 -k1,17318:20852077,24728801:21628 -k1,17318:22849615,24728801:21628 -(1,17318:23244797,24827115:32768,0,0 -) -k1,17318:23299192,24728801:21627 -k1,17318:24901548,24728801:21628 -k1,17318:25318358,24728801:21628 -k1,17318:26525532,24728801:21628 -k1,17318:26942342,24728801:21628 -k1,17318:28939880,24728801:21628 -k1,17318:29356690,24728801:21628 -k1,17318:31354227,24728801:21627 -k1,17318:31771037,24728801:21628 -k1,17318:32187847,24728801:21628 -k1,17318:32583029,24728801:0 -) -(1,17318:7613813,25570289:24969216,513147,126484 -g1,17318:10380087,25570289 -g1,17318:10775269,25570289 -$1,17318:11960815,25570289 -g1,17318:12160044,25570289 -g1,17318:14681214,25570289 -g1,17318:15689813,25570289 -g1,17318:19954896,25570289 -g1,17318:21326564,25570289 -g1,17318:22335163,25570289 -g1,17318:23128804,25570289 -k1,17318:32583029,25570289:7878084 -g1,17318:32583029,25570289 -) -(1,17318:7613813,26411777:24969216,505283,134348 -(1,17318:7613813,26411777:-983040,0,0 -g1,17318:6630773,26411777 -g1,17318:5320053,26411777 -g1,17318:4992373,26411777 -(1,17318:4992373,26411777:1310720,0,0 -k1,17318:6303093,26411777:1310720 -) -g1,17318:6630773,26411777 -) -(1,17318:6630773,26411777:983040,211026,0 -k1,17318:7613813,26411777:327680 -) -g1,17318:9994736,26411777 -g1,17318:11393929,26411777 -g1,17318:12367138,26411777 -g1,17318:17130294,26411777 -g1,17318:18903042,26411777 -g1,17318:20694140,26411777 -g1,17318:26073335,26411777 -g1,17318:27445003,26411777 -g1,17318:28453602,26411777 -g1,17318:29247243,26411777 -k1,17318:32583029,26411777:1759645 -g1,17318:32583029,26411777 -) -(1,17318:7613813,27253265:24969216,505283,134348 -(1,17318:7613813,27253265:-983040,0,0 -g1,17318:6630773,27253265 -g1,17318:5320053,27253265 -g1,17318:4992373,27253265 -(1,17318:4992373,27253265:1310720,0,0 -k1,17318:6303093,27253265:1310720 -) -g1,17318:6630773,27253265 -) -k1,17318:10253891,27253265:236873 -k1,17318:10940960,27253265:236837 -k1,17318:11915076,27253265:236836 -k1,17318:14333756,27253265:236986 -k1,17318:17659229,27253265:236761 -k1,17318:18519462,27253265:236986 -k1,17318:19952910,27253265:236761 -k1,17318:20634660,27253265:236761 -k1,17318:22915060,27253265:236987 -k1,17318:26189415,27253265:236761 -k1,17318:27617621,27253265:236761 -k1,17318:30991160,27253265:236986 -k1,17318:32583029,27253265:0 -) -(1,17318:7613813,28094753:24969216,505283,126483 -g1,17318:11797631,28094753 -g1,17318:13169299,28094753 -g1,17318:14177898,28094753 -g1,17318:15392280,28094753 -g1,17318:16163638,28094753 -k1,17318:32583029,28094753:14843250 -g1,17318:32583029,28094753 -) -(1,17318:7613813,28936241:24969216,505283,134348 -(1,17318:7613813,28936241:-983040,0,0 -g1,17318:6630773,28936241 -g1,17318:5320053,28936241 -g1,17318:4992373,28936241 -(1,17318:4992373,28936241:1310720,0,0 -k1,17318:6303093,28936241:1310720 -) -g1,17318:6630773,28936241 -) -k1,17318:8982648,28936241:162972 -k1,17318:9925463,28936241:162937 -k1,17318:12270238,28936241:163081 -k1,17318:12882678,28936241:162863 -k1,17318:15856380,28936241:162863 -k1,17318:19253662,28936241:163081 -k1,17318:20650569,28936241:162864 -k1,17318:21755402,28936241:163081 -k1,17318:24366035,28936241:162863 -k1,17318:25464097,28936241:162863 -k1,17318:26843526,28936241:163081 -k1,17318:28598440,28936241:163045 -k1,17318:32583029,28936241:0 -) -(1,17318:7613813,29777729:24969216,505283,126483 -g1,17318:8985481,29777729 -g1,17318:9994080,29777729 -g1,17318:11208462,29777729 -g1,17318:12776738,29777729 -k1,17318:32583029,29777729:18230150 -g1,17318:32583029,29777729 -) -(1,17318:7613813,30619217:24969216,513147,134348 -(1,17318:7613813,30619217:-983040,0,0 -g1,17318:6630773,30619217 -g1,17318:5320053,30619217 -g1,17318:4992373,30619217 -(1,17318:4992373,30619217:1310720,0,0 -k1,17318:6303093,30619217:1310720 -) -g1,17318:6630773,30619217 -) -k1,17318:10077156,30619217:163685 -k1,17318:11020684,30619217:163650 -k1,17318:11713210,30619217:163650 -k1,17318:14058695,30619217:163791 -k1,17318:15409786,30619217:163579 -k1,17318:18367819,30619217:163578 -k1,17318:19147435,30619217:163578 -k1,17318:22322393,30619217:163579 -k1,17318:24194052,30619217:163791 -k1,17318:28120159,30619217:163685 -k1,17318:29419035,30619217:163792 -k1,17318:31174660,30619217:163756 -k1,17318:32583029,30619217:0 -) -(1,17318:7613813,31460705:24969216,505283,126483 -g1,17318:11797631,31460705 -g1,17318:13169299,31460705 -g1,17318:14177898,31460705 -g1,17318:14971539,31460705 -k1,17318:32583029,31460705:16035349 -g1,17318:32583029,31460705 -) -(1,17318:7613813,32302193:24969216,505283,126483 -(1,17318:7613813,32302193:-983040,0,0 -g1,17318:6630773,32302193 -g1,17318:5320053,32302193 -g1,17318:4992373,32302193 -(1,17318:4992373,32302193:1310720,0,0 -k1,17318:6303093,32302193:1310720 -) -g1,17318:6630773,32302193 -) -k1,17318:9510786,32302193:172065 -k1,17318:10420103,32302193:172037 -k1,17318:11042373,32302193:172038 -k1,17318:13396213,32302193:172146 -k1,17318:14755708,32302193:171983 -k1,17318:15377268,32302193:171983 -k1,17318:17221237,32302193:172146 -k1,17318:19287947,32302193:172064 -k1,17318:20054397,32302193:172038 -k1,17318:21994049,32302193:172146 -k1,17318:23758037,32302193:172119 -k1,17318:27914609,32302193:171983 -k1,17318:29259085,32302193:172037 -k1,17318:30240438,32302193:171983 -k1,17318:31006888,32302193:172038 -k1,17318:32583029,32302193:0 -k1,17318:32583029,32302193:0 -) -(1,17318:7613813,33143681:24969216,505283,134348 -(1,17318:7613813,33143681:-983040,0,0 -g1,17318:6630773,33143681 -g1,17318:5320053,33143681 -g1,17318:4992373,33143681 -(1,17318:4992373,33143681:1310720,0,0 -k1,17318:6303093,33143681:1310720 -) -g1,17318:6630773,33143681 -) -k1,17318:10175217,33143681:511438 -k1,17318:11235538,33143681:511129 -k1,17318:13929605,33143681:512373 -k1,17318:18378170,33143681:510507 -k1,17318:21619562,33143681:510507 -k1,17318:23493218,33143681:510507 -k1,17318:24628838,33143681:512373 -k1,17318:28004199,33143681:511438 -k1,17318:29109740,33143681:511129 -k1,17318:30991160,33143681:512373 -k1,17318:32583029,33143681:0 -) -(1,17318:7613813,33985169:24969216,505283,126483 -g1,17318:11797631,33985169 -g1,17318:13169299,33985169 -g1,17318:14177898,33985169 -g1,17318:14971539,33985169 -k1,17318:32583029,33985169:16035349 -g1,17318:32583029,33985169 -) -(1,17318:7613813,34826657:24969216,505283,126483 -(1,17318:7613813,34826657:-983040,0,0 -g1,17318:6630773,34826657 -g1,17318:5320053,34826657 -g1,17318:4992373,34826657 -(1,17318:4992373,34826657:1310720,0,0 -k1,17318:6303093,34826657:1310720 -) -g1,17318:6630773,34826657 -) -k1,17318:8483504,34826657:237269 -k1,17318:9571429,34826657:237268 -k1,17318:10545940,34826657:237231 -k1,17318:16558896,34826657:237268 -k1,17318:17987496,34826657:237155 -k1,17318:18853873,34826657:237231 -k1,17318:19768091,34826657:237231 -k1,17318:21336938,34826657:237155 -k1,17318:23756015,34826657:237383 -k1,17318:27191982,34826657:237155 -k1,17318:30333919,34826657:237382 -k1,17318:31641277,34826657:237155 -k1,17318:32583029,34826657:0 -) -(1,17318:7613813,35668145:24969216,505283,134349 -k1,17318:9118615,35668145:309425 -k1,17318:10443854,35668145:310086 -k1,17318:12124187,35668145:309976 -$1,17318:12124187,35668145 -k1,17318:14220937,35668145:120840 -k1,17318:14736960,35668145:120841 -k1,17318:15252982,35668145:120840 -k1,17318:15769004,35668145:120840 -k1,17318:17075391,35668145:120841 -k1,17318:17591413,35668145:120840 -k1,17318:21268891,35668145:120840 -k1,17318:21784914,35668145:120841 -k1,17318:23091300,35668145:120840 -k1,17318:23607322,35668145:120840 -k1,17318:25308891,35668145:120841 -k1,17318:25824913,35668145:120840 -k1,17318:27131299,35668145:120840 -k1,17318:27647322,35668145:120841 -$1,17318:28832868,35668145 -k1,17318:29142293,35668145:309425 -k1,17318:31773659,35668145:309425 -k1,17318:32583029,35668145:0 -) -(1,17318:7613813,36509633:24969216,505283,126483 -g1,17318:11878896,36509633 -g1,17318:13250564,36509633 -g1,17318:14259163,36509633 -g1,17318:15052804,36509633 -k1,17318:32583029,36509633:15954084 -g1,17318:32583029,36509633 -) -(1,17318:7613813,37351121:24969216,505283,134348 -(1,17318:7613813,37351121:-983040,0,0 -g1,17318:6630773,37351121 -g1,17318:5320053,37351121 -g1,17318:4992373,37351121 -(1,17318:4992373,37351121:1310720,0,0 -k1,17318:6303093,37351121:1310720 -) -g1,17318:6630773,37351121 -) -k1,17318:11135502,37351121:337295 -k1,17318:12149648,37351121:337159 -k1,17318:14669050,37351121:337708 -k1,17318:17827914,37351121:336884 -k1,17318:18614374,37351121:336883 -k1,17318:20161708,37351121:336884 -k1,17318:22102913,37351121:336884 -k1,17318:25942040,37351121:336883 -k1,17318:27642073,37351121:336884 -k1,17318:29719106,37351121:337708 -k1,17318:32583029,37351121:0 -) -(1,17318:7613813,38192609:24969216,505283,126483 -g1,17318:8407454,38192609 -g1,17318:9975730,38192609 -g1,17318:11766828,38192609 -g1,17318:15950646,38192609 -g1,17318:17322314,38192609 -g1,17318:18330913,38192609 -g1,17318:19124554,38192609 -k1,17318:32583029,38192609:11882334 -g1,17318:32583029,38192609 -) -(1,17318:7613813,39034097:24969216,505283,126483 -(1,17318:7613813,39034097:-983040,0,0 -g1,17318:6630773,39034097 -g1,17318:5320053,39034097 -g1,17318:4992373,39034097 -(1,17318:4992373,39034097:1310720,0,0 -k1,17318:6303093,39034097:1310720 -) -g1,17318:6630773,39034097 -) -k1,17318:9088443,39034097:205198 -k1,17318:9866420,39034097:205192 -k1,17318:11263045,39034097:205180 -k1,17318:12076412,39034097:205193 -k1,17318:14950873,39034097:205180 -k1,17318:17337783,39034097:205216 -k1,17318:18446049,39034097:205180 -k1,17318:22518508,39034097:205180 -k1,17318:23323343,39034097:205181 -k1,17318:25931728,39034097:205180 -k1,17318:29960278,39034097:205180 -k1,17318:32583029,39034097:0 -) -(1,17318:7613813,39875585:24969216,505283,134348 -g1,17318:9176191,39875585 -g1,17318:9998667,39875585 -g1,17318:13061819,39875585 -g1,17318:13855460,39875585 -g1,17318:15423736,39875585 -g1,17318:17214834,39875585 -g1,17318:21398652,39875585 -g1,17318:22770320,39875585 -g1,17318:23778919,39875585 -g1,17318:24572560,39875585 -k1,17318:32583029,39875585:6434328 -g1,17318:32583029,39875585 -) -(1,17318:7613813,40717073:24969216,513147,134348 -(1,17318:7613813,40717073:-983040,0,0 -g1,17318:6630773,40717073 -g1,17318:5320053,40717073 -g1,17318:4992373,40717073 -(1,17318:4992373,40717073:1310720,0,0 -k1,17318:6303093,40717073:1310720 -) -g1,17318:6630773,40717073 -) -k1,17318:9148181,40717073:264936 -k1,17318:9985837,40717073:264871 -k1,17318:10779585,40717073:264872 -k1,17318:12235770,40717073:264740 -k1,17318:13108815,40717073:264871 -k1,17318:16042836,40717073:264740 -k1,17318:18489663,40717073:265133 -k1,17318:19243958,40717073:264741 -k1,17318:22719307,40717073:264740 -k1,17318:23600085,40717073:264740 -k1,17318:26895210,40717073:264740 -k1,17318:29932779,40717073:264741 -k1,17318:31959782,40717073:264740 -k1,17318:32583029,40717073:0 -) -(1,17318:7613813,41558561:24969216,505283,126483 -g1,17318:9047085,41558561 -g1,17318:10188066,41558561 -g1,17318:13424889,41558561 -g1,17318:14076316,41558561 -g1,17318:15720614,41558561 -g1,17318:16514255,41558561 -g1,17318:18082531,41558561 -g1,17318:19873629,41558561 -g1,17318:24057447,41558561 -g1,17318:25429115,41558561 -g1,17318:26437714,41558561 -g1,17318:27231355,41558561 -k1,17318:32583029,41558561:3775533 -g1,17318:32583029,41558561 -) -(1,17318:7613813,42400049:24969216,505283,126483 -(1,17318:7613813,42400049:-983040,0,0 -g1,17318:6630773,42400049 -g1,17318:5320053,42400049 -g1,17318:4992373,42400049 -(1,17318:4992373,42400049:1310720,0,0 -k1,17318:6303093,42400049:1310720 -) -g1,17318:6630773,42400049 -) -k1,17318:9624075,42400049:222440 -k1,17318:10296725,42400049:222418 -k1,17318:10969374,42400049:222417 -k1,17318:13373578,42400049:222510 -k1,17318:15619701,42400049:222371 -k1,17318:17991653,42400049:222371 -k1,17318:19577173,42400049:222371 -k1,17318:20422930,42400049:222510 -k1,17318:22128381,42400049:222371 -k1,17318:24391612,42400049:222440 -k1,17318:25511942,42400049:222487 -k1,17318:28771907,42400049:222371 -k1,17318:29446476,42400049:222371 -k1,17318:32583029,42400049:0 -) -(1,17318:7613813,43241537:24969216,505283,126483 -g1,17318:8407454,43241537 -g1,17318:9802060,43241537 -g1,17318:11173728,43241537 -g1,17318:12182327,43241537 -g1,17318:12975968,43241537 -k1,17318:32583029,43241537:18030920 -g1,17318:32583029,43241537 -) -] -(1,17318:32583029,45706769:0,0,0 -g1,17318:32583029,45706769 -) -) -] -(1,17318:6630773,47279633:25952256,485622,11795 -(1,17318:6630773,47279633:25952256,485622,11795 -(1,17318:6630773,47279633:0,0,0 -v1,17318:6630773,47279633:0,0,0 -) -g1,17318:6830002,47279633 -k1,17318:31387652,47279633:24557650 -) -) -] -h1,17318:4262630,4025873:0,0,0 -] -!23560 +(2534,1:6630773,9419505:25952256,32768,0 +(2534,1:6630773,9419505:5505024,32768,0 +r2534,1:12135797,9419505:5505024,32768,0 +) +k2534,1:22359413,9419505:10223616 +k2534,1:32583029,9419505:10223616 +) +] +(2534,86:6630773,45706769:25952256,32627728,134348 +[2534,86:6630773,45706769:11829248,32627728,134348 +(2534,5:6630773,13734401:11829248,513147,134348 +h2534,3:6630773,13734401:0,0,0 +k2534,3:9996866,13734401:191529 +k2534,3:13547770,13734401:191529 +k2534,4:13547770,13734401:0 +k2534,4:14706610,13734401:191529 +k2534,4:17800729,13734401:191529 +k2534,4:18460021,13734401:0 +) +(2534,5:9252213,14575889:9207808,505283,134348 +g2534,4:12344201,14575889 +k2534,5:16989393,14575889:1470628 +k2534,5:18460021,14575889:1470628 +) +(2534,6:6630773,15423098:11829248,513147,134348 +h2534,5:6630773,15423098:0,0,0 +g2534,5:9157185,15423098 +g2534,5:10015706,15423098 +g2534,5:11653450,15423098 +k2534,6:15455195,15423098:3004827 +k2534,6:18460021,15423098:3004826 +) +(2534,7:6630773,16270308:11829248,513147,126483 +h2534,6:6630773,16270308:0,0,0 +g2534,6:9384595,16270308 +g2534,6:10243116,16270308 +k2534,7:15678673,16270308:2781349 +k2534,7:18460021,16270308:2781348 +) +(2534,8:6630773,17117517:11829248,513147,102891 +h2534,7:6630773,17117517:0,0,0 +r2534,7:6630773,17117517:0,616038,102891 +g2534,7:7941493,17117517 +g2534,7:7941493,17117517 +g2534,7:10128429,17117517 +g2534,7:13044781,17117517 +k2534,8:16350090,17117517:2109932 +k2534,8:18460021,17117517:2109931 +) +(2534,9:6630773,17964727:11829248,513147,126483 +h2534,8:6630773,17964727:0,0,0 +g2534,8:9893810,17964727 +g2534,8:11060350,17964727 +g2534,8:13814172,17964727 +g2534,8:14672693,17964727 +k2534,9:18257514,17964727:202508 +k2534,9:18460021,17964727:202507 +) +(2534,11:6630773,18811936:11829248,505283,134348 +h2534,9:6630773,18811936:0,0,0 +g2534,9:10620604,18811936 +g2534,9:14179208,18811936 +k2534,10:14179208,18811936:0 +g2534,10:15345748,18811936 +k2534,10:18460021,18811936:211683 +) +(2534,11:9252213,19653424:9207808,513147,134348 +g2534,10:10110734,19653424 +g2534,10:13202722,19653424 +k2534,11:17726673,19653424:733349 +k2534,11:18460021,19653424:733348 +) +(2534,12:6630773,20500634:11829248,513147,126483 +h2534,11:6630773,20500634:0,0,0 +g2534,11:9438335,20500634 +g2534,11:10604875,20500634 +g2534,11:13358697,20500634 +g2534,11:14217218,20500634 +k2534,12:17665724,20500634:794298 +k2534,12:18460021,20500634:794297 +) +(2534,13:6630773,21347843:11829248,505283,126483 +h2534,12:6630773,21347843:0,0,0 +g2534,12:9939685,21347843 +k2534,13:14797542,21347843:3662480 +k2534,13:18460021,21347843:3662479 +) +(2534,14:6630773,22195053:11829248,513147,126483 +h2534,13:6630773,22195053:0,0,0 +g2534,13:8593576,22195053 +g2534,13:11992273,22195053 +k2534,14:15823836,22195053:2636186 +k2534,14:18460021,22195053:2636185 +) +(2534,15:6630773,23042262:11829248,513147,102891 +h2534,14:6630773,23042262:0,0,0 +g2534,14:10106147,23042262 +g2534,14:13216485,23042262 +k2534,15:16236712,23042262:2223309 +k2534,15:18460021,23042262:2223309 +) +(2534,16:6630773,23889472:11829248,485622,126483 +h2534,15:6630773,23889472:0,0,0 +r2534,15:6630773,23889472:0,612105,126483 +g2534,15:7941493,23889472 +g2534,15:7941493,23889472 +g2534,15:9526808,23889472 +g2534,15:13285297,23889472 +k2534,16:16271118,23889472:2188903 +k2534,16:18460021,23889472:2188903 +) +(2534,17:6630773,24736681:11829248,485622,126483 +h2534,16:6630773,24736681:0,0,0 +g2534,16:8983515,24736681 +k2534,17:14682526,24736681:3777495 +k2534,17:18460021,24736681:3777495 +) +(2534,18:6630773,25583891:11829248,505283,102891 +h2534,17:6630773,25583891:0,0,0 +r2534,17:6630773,25583891:0,608174,102891 +g2534,17:7941493,25583891 +g2534,17:7941493,25583891 +g2534,17:11989651,25583891 +k2534,18:15623295,25583891:2836726 +k2534,18:18460021,25583891:2836726 +) +(2534,19:6630773,26431100:11829248,485622,134348 +h2534,18:6630773,26431100:0,0,0 +g2534,18:10649440,26431100 +k2534,19:14953190,26431100:3506832 +k2534,19:18460021,26431100:3506831 +) +(2534,20:6630773,27278310:11829248,505283,134348 +h2534,19:6630773,27278310:0,0,0 +r2534,19:6630773,27278310:0,639631,134348 +g2534,19:7941493,27278310 +g2534,19:7941493,27278310 +g2534,19:11024961,27278310 +k2534,20:15140950,27278310:3319071 +k2534,20:18460021,27278310:3319071 +) +(2534,21:6630773,28125519:11829248,513147,102891 +h2534,20:6630773,28125519:0,0,0 +r2534,20:6630773,28125519:0,616038,102891 +g2534,20:7941493,28125519 +g2534,20:7941493,28125519 +g2534,20:10788377,28125519 +k2534,21:15022658,28125519:3437363 +k2534,21:18460021,28125519:3437363 +) +(2534,22:6630773,28972729:11829248,505283,102891 +h2534,21:6630773,28972729:0,0,0 +g2534,21:10112700,28972729 +k2534,22:15247119,28972729:3212903 +k2534,22:18460021,28972729:3212902 +) +(2534,26:6630773,30570655:11829248,505283,102891 +h2534,25:6630773,30570655:0,0,0 +g2534,25:8263930,30570655 +g2534,25:9051672,30570655 +k2534,26:13955076,30570655:4504945 +k2534,26:18460021,30570655:4504945 +) +(2534,27:6630773,31417865:11829248,505283,102891 +h2534,26:6630773,31417865:0,0,0 +g2534,26:8518209,31417865 +k2534,27:13887574,31417865:4572447 +k2534,27:18460021,31417865:4572447 +) +(2534,28:6630773,32265074:11829248,505283,134348 +h2534,27:6630773,32265074:0,0,0 +g2534,27:8591610,32265074 +g2534,27:9986216,32265074 +k2534,28:14422348,32265074:4037673 +k2534,28:18460021,32265074:4037673 +) +(2534,29:6630773,33112284:11829248,481690,102891 +h2534,28:6630773,33112284:0,0,0 +g2534,28:8387137,33112284 +k2534,29:13822038,33112284:4637983 +k2534,29:18460021,33112284:4637983 +) +(2534,30:6630773,33959493:11829248,505283,102891 +h2534,29:6630773,33959493:0,0,0 +g2534,29:11250405,33959493 +k2534,30:15452902,33959493:3007120 +k2534,30:18460021,33959493:3007119 +) +(2534,31:6630773,34806703:11829248,505283,134348 +h2534,30:6630773,34806703:0,0,0 +g2534,30:10557034,34806703 +k2534,31:14906987,34806703:3553035 +k2534,31:18460021,34806703:3553034 +) +(2534,32:6630773,35653912:11829248,505283,102891 +h2534,31:6630773,35653912:0,0,0 +g2534,31:10744467,35653912 +k2534,32:15000703,35653912:3459318 +k2534,32:18460021,35653912:3459318 +) +(2534,33:6630773,36501122:11829248,505283,102891 +h2534,32:6630773,36501122:0,0,0 +g2534,32:9341342,36501122 +g2534,32:12990386,36501122 +k2534,33:16123663,36501122:2336359 +k2534,33:18460021,36501122:2336358 +) +(2534,34:6630773,37348331:11829248,505283,126483 +h2534,33:6630773,37348331:0,0,0 +g2534,33:7989989,37348331 +g2534,33:9970487,37348331 +g2534,33:11137027,37348331 +g2534,33:13117525,37348331 +g2534,33:14476741,37348331 +k2534,33:18460021,37348331:2791835 +) +(2534,34:9252213,38189819:9207808,505283,126483 +g2534,33:12277354,38189819 +k2534,34:16007336,38189819:2452685 +k2534,34:18460021,38189819:2452685 +) +(2534,38:6630773,39787746:11829248,485622,102891 +h2534,37:6630773,39787746:0,0,0 +g2534,37:7457181,39787746 +g2534,37:8626998,39787746 +g2534,37:9796815,39787746 +g2534,37:10966632,39787746 +g2534,37:12136449,39787746 +g2534,37:13306266,39787746 +g2534,37:14476083,39787746 +g2534,37:16044359,39787746 +k2534,37:18460021,39787746:1046615 +) +(2534,38:9252213,40629234:9207808,485622,11795 +k2534,38:14453806,40629234:4006216 +k2534,38:18460021,40629234:4006215 +) +(2534,39:6630773,41476443:11829248,485622,102891 +h2534,38:6630773,41476443:0,0,0 +g2534,38:8286867,41476443 +g2534,38:9058225,41476443 +g2534,38:10228042,41476443 +g2534,38:11397859,41476443 +g2534,38:12567676,41476443 +g2534,38:14135952,41476443 +k2534,39:16895675,41476443:1564346 +k2534,39:18460021,41476443:1564346 +) +(2534,40:6630773,42323653:11829248,513147,134348 +h2534,39:6630773,42323653:0,0,0 +g2534,39:10276540,42323653 +g2534,39:13491080,42323653 +g2534,39:14657620,42323653 +k2534,40:17670967,42323653:789055 +k2534,40:18460021,42323653:789054 +) +(2534,41:6630773,43170862:11829248,505283,134348 +h2534,40:6630773,43170862:0,0,0 +g2534,40:9540571,43170862 +g2534,40:13256462,43170862 +g2534,40:14849642,43170862 +k2534,40:18460021,43170862:1822557 +) +(2534,41:9252213,44012350:9207808,485622,11795 +k2534,41:15215334,44012350:3244688 +k2534,41:18460021,44012350:3244687 +) +(2534,42:6630773,44859560:11829248,505283,126483 +h2534,41:6630773,44859560:0,0,0 +g2534,41:9804681,44859560 +g2534,41:12139073,44859560 +g2534,41:14338461,44859560 +k2534,42:16797700,44859560:1662321 +k2534,42:18460021,44859560:1662321 +) +(2534,43:6630773,45706769:11829248,505283,134348 +h2534,42:6630773,45706769:0,0,0 +g2534,42:9804681,45706769 +g2534,42:11869720,45706769 +g2534,42:15461092,45706769 +k2534,43:17359016,45706769:1101006 +k2534,43:18460021,45706769:1101005 +) +] +k2534,86:19606901,45706769:1146880 +r2534,86:19606901,45706769:0,32762076,134348 +k2534,86:20753781,45706769:1146880 +[2534,86:20753781,45706769:11829248,32627728,134348 +(2534,44:20753781,13734401:11829248,505283,134348 +h2534,43:20753781,13734401:0,0,0 +g2534,43:23927689,13734401 +g2534,43:26496700,13734401 +k2534,44:29938324,13734401:2644706 +k2534,44:32583029,13734401:2644705 +) +(2534,45:20753781,14579480:11829248,505283,102891 +h2534,44:20753781,14579480:0,0,0 +g2534,44:23764505,14579480 +g2534,44:26556338,14579480 +g2534,44:29407154,14579480 +k2534,45:31592780,14579480:990249 +k2534,45:32583029,14579480:990249 +) +(2534,46:20753781,15424559:11829248,505283,102891 +h2534,45:20753781,15424559:0,0,0 +g2534,45:23359492,15424559 +k2534,46:28568949,15424559:4014080 +k2534,46:32583029,15424559:4014080 +) +(2534,47:20753781,16269639:11829248,505283,126483 +h2534,46:20753781,16269639:0,0,0 +r2534,46:20753781,16269639:0,631766,126483 +g2534,46:22064501,16269639 +g2534,46:22064501,16269639 +g2534,46:23017394,16269639 +g2534,46:24771792,16269639 +g2534,46:27390610,16269639 +k2534,47:30584508,16269639:1998521 +k2534,47:32583029,16269639:1998521 +) +(2534,48:20753781,17114718:11829248,505283,7863 +h2534,47:20753781,17114718:0,0,0 +g2534,47:23185822,17114718 +g2534,47:24576496,17114718 +k2534,48:29636203,17114718:2946826 +k2534,48:32583029,17114718:2946826 +) +(2534,49:20753781,17959797:11829248,505283,102891 +h2534,48:20753781,17959797:0,0,0 +r2534,48:20753781,17959797:0,608174,102891 +g2534,48:22064501,17959797 +g2534,48:22064501,17959797 +g2534,48:25412080,17959797 +k2534,49:29958313,17959797:2624717 +k2534,49:32583029,17959797:2624716 +) +(2534,50:20753781,18804876:11829248,505283,134348 +h2534,49:20753781,18804876:0,0,0 +r2534,49:20753781,18804876:0,639631,134348 +g2534,49:22064501,18804876 +g2534,49:22064501,18804876 +g2534,49:24507027,18804876 +k2534,50:29505786,18804876:3077243 +k2534,50:32583029,18804876:3077243 +) +(2534,51:20753781,19649955:11829248,505283,134348 +h2534,50:20753781,19649955:0,0,0 +r2534,50:20753781,19649955:0,639631,134348 +g2534,50:22064501,19649955 +g2534,50:22064501,19649955 +g2534,50:25057530,19649955 +g2534,50:27660620,19649955 +g2534,50:30216524,19649955 +k2534,51:32360535,19649955:222495 +k2534,51:32583029,19649955:222494 +) +(2534,52:20753781,20495034:11829248,505283,126483 +h2534,51:20753781,20495034:0,0,0 +g2534,51:23129461,20495034 +g2534,51:26056954,20495034 +k2534,52:30679208,20495034:1903821 +k2534,52:32583029,20495034:1903821 +) +(2534,53:20753781,21340114:11829248,485622,102891 +h2534,52:20753781,21340114:0,0,0 +g2534,52:23324758,21340114 +k2534,53:28551582,21340114:4031447 +k2534,53:32583029,21340114:4031447 +) +(2534,54:20753781,22185193:11829248,505283,7863 +h2534,53:20753781,22185193:0,0,0 +k2534,54:27476464,22185193:5106565 +k2534,54:32583029,22185193:5106565 +) +(2534,55:20753781,23030272:11829248,513147,102891 +h2534,54:20753781,23030272:0,0,0 +r2534,54:20753781,23030272:0,616038,102891 +g2534,54:22064501,23030272 +g2534,54:22064501,23030272 +g2534,54:25849860,23030272 +k2534,55:30575661,23030272:2007368 +k2534,55:32583029,23030272:2007368 +) +(2534,56:20753781,23875351:11829248,485622,102891 +h2534,55:20753781,23875351:0,0,0 +r2534,55:20753781,23875351:0,588513,102891 +g2534,55:22064501,23875351 +g2534,55:22064501,23875351 +g2534,55:24505717,23875351 +k2534,56:29142062,23875351:3440968 +k2534,56:32583029,23875351:3440967 +) +(2534,57:20753781,24720430:11829248,513147,134348 +h2534,56:20753781,24720430:0,0,0 +g2534,56:24706912,24720430 +g2534,56:25565433,24720430 +g2534,56:28196703,24720430 +k2534,56:32583029,24720430:2698119 +) +(2534,57:23375221,25561918:9207808,505283,102891 +g2534,56:26564202,25561918 +k2534,57:30534374,25561918:2048656 +k2534,57:32583029,25561918:2048655 +) +(2534,58:20753781,26406997:11829248,485622,126483 +h2534,57:20753781,26406997:0,0,0 +g2534,57:24706912,26406997 +g2534,57:28156727,26406997 +k2534,58:31330636,26406997:1252393 +k2534,58:32583029,26406997:1252393 +) +(2534,59:20753781,27252077:11829248,505283,126483 +h2534,58:20753781,27252077:0,0,0 +g2534,58:24366780,27252077 +g2534,58:26062196,27252077 +g2534,58:29951757,27252077 +k2534,59:31665852,27252077:917177 +k2534,59:32583029,27252077:917177 +) +(2534,60:20753781,28097156:11829248,505283,102891 +h2534,59:20753781,28097156:0,0,0 +g2534,59:24546349,28097156 +g2534,59:27994853,28097156 +k2534,60:30687400,28097156:1895629 +k2534,60:32583029,28097156:1895629 +) +(2534,61:20753781,28942235:11829248,505283,102891 +h2534,60:20753781,28942235:0,0,0 +g2534,60:24546349,28942235 +g2534,60:28435910,28942235 +k2534,61:30907929,28942235:1675101 +k2534,61:32583029,28942235:1675100 +) +(2534,62:20753781,29787314:11829248,505283,102891 +h2534,61:20753781,29787314:0,0,0 +g2534,61:23546925,29787314 +k2534,62:28264207,29787314:4318823 +k2534,62:32583029,29787314:4318822 +) +(2534,63:20753781,30632393:11829248,513147,102891 +h2534,62:20753781,30632393:0,0,0 +g2534,62:23240872,30632393 +g2534,62:24099393,30632393 +g2534,62:27374227,30632393 +g2534,62:29097168,30632393 +k2534,63:31238558,30632393:1344472 +k2534,63:32583029,30632393:1344471 +) +(2534,65:20753781,31477472:11829248,505283,134348 +h2534,63:20753781,31477472:0,0,0 +g2534,63:24691184,31477472 +g2534,63:28249788,31477472 +k2534,64:28249788,31477472:0 +g2534,64:29416328,31477472 +k2534,64:32583029,31477472:264111 +) +(2534,65:23375221,32318960:9207808,513147,134348 +g2534,64:24233742,32318960 +g2534,64:27325730,32318960 +k2534,65:31823467,32318960:759563 +k2534,65:32583029,32318960:759562 +) +(2534,66:20753781,33164040:11829248,505283,102891 +h2534,65:20753781,33164040:0,0,0 +g2534,65:24607297,33164040 +k2534,66:29954380,33164040:2628650 +k2534,66:32583029,33164040:2628649 +) +(2534,67:20753781,34009119:11829248,505283,102891 +h2534,66:20753781,34009119:0,0,0 +r2534,66:20753781,34009119:0,608174,102891 +g2534,66:22064501,34009119 +g2534,66:22064501,34009119 +g2534,66:24850436,34009119 +k2534,67:29314421,34009119:3268608 +k2534,67:32583029,34009119:3268608 +) +(2534,68:20753781,34854198:11829248,485622,126483 +h2534,67:20753781,34854198:0,0,0 +r2534,67:20753781,34854198:0,612105,126483 +g2534,67:22064501,34854198 +g2534,67:22064501,34854198 +g2534,67:27342770,34854198 +k2534,68:30560588,34854198:2022441 +k2534,68:32583029,34854198:2022441 +) +(2534,69:20753781,35699277:11829248,485622,126483 +h2534,68:20753781,35699277:0,0,0 +r2534,68:20753781,35699277:0,612105,126483 +g2534,68:22064501,35699277 +g2534,68:22064501,35699277 +g2534,68:25905566,35699277 +k2534,69:29841986,35699277:2741043 +k2534,69:32583029,35699277:2741043 +) +(2534,70:20753781,36544356:11829248,485622,102891 +h2534,69:20753781,36544356:0,0,0 +r2534,69:20753781,36544356:0,588513,102891 +g2534,69:22064501,36544356 +g2534,69:22064501,36544356 +g2534,69:24944153,36544356 +k2534,70:29361280,36544356:3221750 +k2534,70:32583029,36544356:3221749 +) +(2534,71:20753781,37389435:11829248,485622,126483 +h2534,70:20753781,37389435:0,0,0 +r2534,70:20753781,37389435:0,612105,126483 +g2534,70:22064501,37389435 +g2534,70:22064501,37389435 +g2534,70:25595580,37389435 +k2534,71:29686993,37389435:2896036 +k2534,71:32583029,37389435:2896036 +) +(2534,72:20753781,38234515:11829248,485622,102891 +h2534,71:20753781,38234515:0,0,0 +g2534,71:23006908,38234515 +k2534,72:28392657,38234515:4190372 +k2534,72:32583029,38234515:4190372 +) +(2534,76:20753781,39794806:11829248,505283,7863 +h2534,75:20753781,39794806:0,0,0 +k2534,76:27363087,39794806:5219943 +k2534,76:32583029,39794806:5219942 +) +(2534,77:20753781,40639885:11829248,505283,126483 +h2534,76:20753781,40639885:0,0,0 +r2534,76:20753781,40639885:0,631766,126483 +g2534,76:22064501,40639885 +g2534,76:22064501,40639885 +g2534,76:25908187,40639885 +g2534,76:26720178,40639885 +g2534,76:27938492,40639885 +g2534,76:28582710,40639885 +k2534,76:32583029,40639885:1406404 +) +(2534,77:23375221,41481373:9207808,485622,11795 +k2534,77:28939883,41481373:3643146 +k2534,77:32583029,41481373:3643146 +) +(2534,78:20753781,42326452:11829248,505283,134348 +h2534,77:20753781,42326452:0,0,0 +r2534,77:20753781,42326452:0,639631,134348 +g2534,77:22064501,42326452 +g2534,77:22064501,42326452 +g2534,77:24630235,42326452 +g2534,77:26218827,42326452 +g2534,77:27856571,42326452 +k2534,78:31180558,42326452:1402471 +k2534,78:32583029,42326452:1402471 +) +(2534,79:20753781,43171531:11829248,513147,7863 +h2534,78:20753781,43171531:0,0,0 +g2534,78:22342373,43171531 +k2534,79:28400849,43171531:4182180 +k2534,79:32583029,43171531:4182180 +) +(2534,80:20753781,44016611:11829248,505283,126483 +h2534,79:20753781,44016611:0,0,0 +r2534,79:20753781,44016611:0,631766,126483 +g2534,79:22064501,44016611 +g2534,79:22064501,44016611 +g2534,79:26705105,44016611 +k2534,80:31003284,44016611:1579746 +k2534,80:32583029,44016611:1579745 +) +(2534,81:20753781,44861690:11829248,513147,102891 +h2534,80:20753781,44861690:0,0,0 +g2534,80:22342373,44861690 +g2534,80:24921870,44861690 +k2534,81:29713208,44861690:2869822 +k2534,81:32583029,44861690:2869821 +) +(2534,82:20753781,45706769:11829248,513147,134348 +h2534,81:20753781,45706769:0,0,0 +r2534,81:20753781,45706769:0,647495,134348 +g2534,81:22064501,45706769 +g2534,81:22064501,45706769 +g2534,81:25082433,45706769 +g2534,81:27289685,45706769 +k2534,82:30334816,45706769:2248213 +k2534,82:32583029,45706769:2248213 +) +] +(2534,86:32583029,45706769:0,355205,126483 +h2534,86:32583029,45706769:420741,355205,126483 +k2534,86:32583029,45706769:-420741 +) +) +] +(2534,86:32583029,45706769:0,0,0 +g2534,86:32583029,45706769 +) +) +] +(2534,86:6630773,47279633:25952256,485622,11795 +(2534,86:6630773,47279633:25952256,485622,11795 +k2534,86:19009213,47279633:12378440 +k2534,86:32583030,47279633:12378440 +) +) +] +h2534,86:4262630,4025873:0,0,0 +] +!21358 }336 !12 {337 -[1,17318:4262630,47279633:28320399,43253760,0 -(1,17318:4262630,4025873:0,0,0 -[1,17318:-473657,4025873:25952256,0,0 -(1,17318:-473657,-710414:25952256,0,0 -h1,17318:-473657,-710414:0,0,0 -(1,17318:-473657,-710414:0,0,0 -(1,17318:-473657,-710414:0,0,0 -g1,17318:-473657,-710414 -(1,17318:-473657,-710414:65781,0,65781 -g1,17318:-407876,-710414 -[1,17318:-407876,-644633:0,0,0 +[2534,177:4262630,47279633:28320399,43253760,0 +(2534,177:4262630,4025873:0,0,0 +[2534,177:-473657,4025873:11829248,0,0 +(2534,177:-473657,-710414:11829248,0,0 +h2534,177:-473657,-710414:0,0,0 +(2534,177:-473657,-710414:0,0,0 +(2534,177:-473657,-710414:0,0,0 +g2534,177:-473657,-710414 +(2534,177:-473657,-710414:65781,0,65781 +g2534,177:-407876,-710414 +[2534,177:-407876,-644633:0,0,0 ] ) -k1,17318:-473657,-710414:-65781 +k2534,177:-473657,-710414:-65781 ) ) -k1,17318:25478599,-710414:25952256 -g1,17318:25478599,-710414 +k2534,177:11355591,-710414:11829248 +g2534,177:11355591,-710414 ) ] ) -[1,17318:6630773,47279633:25952256,43253760,0 -[1,17318:6630773,4812305:25952256,786432,0 -(1,17318:6630773,4812305:25952256,505283,134348 -(1,17318:6630773,4812305:25952256,505283,134348 -g1,17318:3078558,4812305 -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,2439708:0,1703936,0 -k1,17318:1358238,2439708:-1720320 -(1,17318:1358238,2439708:1720320,1703936,0 -(1,17318:1358238,2439708:1179648,16384,0 -r1,17318:2537886,2439708:1179648,16384,0 +[2534,177:6630773,47279633:25952256,43253760,0 +[2534,177:6630773,4812305:25952256,786432,0 +(2534,177:6630773,4812305:25952256,505283,11795 +(2534,177:6630773,4812305:25952256,505283,11795 +g2534,177:3078558,4812305 +[2534,177:3078558,4812305:0,0,0 +(2534,177:3078558,2439708:0,1703936,0 +k2534,177:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,177:2537886,2439708:1179648,16384,0 ) -g1,17318:3062174,2439708 -(1,17318:3062174,2439708:16384,1703936,0 -[1,17318:3062174,2439708:25952256,1703936,0 -(1,17318:3062174,1915420:25952256,1179648,0 -(1,17318:3062174,1915420:16384,1179648,0 -r1,17318:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,177:3078558,1915420:16384,1179648,0 ) -k1,17318:29014430,1915420:25935872 -g1,17318:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,2439708:0,1703936,0 -g1,17318:29030814,2439708 -g1,17318:36135244,2439708 -(1,17318:36135244,2439708:1720320,1703936,0 -(1,17318:36135244,2439708:16384,1703936,0 -[1,17318:36135244,2439708:25952256,1703936,0 -(1,17318:36135244,1915420:25952256,1179648,0 -(1,17318:36135244,1915420:16384,1179648,0 -r1,17318:36151628,1915420:16384,1179648,0 +[2534,177:3078558,4812305:0,0,0 +(2534,177:3078558,2439708:0,1703936,0 +g2534,177:29030814,2439708 +g2534,177:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,177:36151628,1915420:16384,1179648,0 ) -k1,17318:62087500,1915420:25935872 -g1,17318:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g1,17318:36675916,2439708 -(1,17318:36675916,2439708:1179648,16384,0 -r1,17318:37855564,2439708:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,177:37855564,2439708:1179648,16384,0 ) ) -k1,17318:3078556,2439708:-34777008 +k2534,177:3078556,2439708:-34777008 ) ] -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,49800853:0,16384,2228224 -k1,17318:1358238,49800853:-1720320 -(1,17318:1358238,49800853:1720320,16384,2228224 -(1,17318:1358238,49800853:1179648,16384,0 -r1,17318:2537886,49800853:1179648,16384,0 +[2534,177:3078558,4812305:0,0,0 +(2534,177:3078558,49800853:0,16384,2228224 +k2534,177:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,177:2537886,49800853:1179648,16384,0 ) -g1,17318:3062174,49800853 -(1,17318:3062174,52029077:16384,1703936,0 -[1,17318:3062174,52029077:25952256,1703936,0 -(1,17318:3062174,51504789:25952256,1179648,0 -(1,17318:3062174,51504789:16384,1179648,0 -r1,17318:3078558,51504789:16384,1179648,0 +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,177:3078558,51504789:16384,1179648,0 ) -k1,17318:29014430,51504789:25935872 -g1,17318:29014430,51504789 +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] ) ) ) ] -[1,17318:3078558,4812305:0,0,0 -(1,17318:3078558,49800853:0,16384,2228224 -g1,17318:29030814,49800853 -g1,17318:36135244,49800853 -(1,17318:36135244,49800853:1720320,16384,2228224 -(1,17318:36135244,52029077:16384,1703936,0 -[1,17318:36135244,52029077:25952256,1703936,0 -(1,17318:36135244,51504789:25952256,1179648,0 -(1,17318:36135244,51504789:16384,1179648,0 -r1,17318:36151628,51504789:16384,1179648,0 +[2534,177:3078558,4812305:0,0,0 +(2534,177:3078558,49800853:0,16384,2228224 +g2534,177:29030814,49800853 +g2534,177:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,177:36151628,51504789:16384,1179648,0 ) -k1,17318:62087500,51504789:25935872 -g1,17318:62087500,51504789 +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] ) -g1,17318:36675916,49800853 -(1,17318:36675916,49800853:1179648,16384,0 -r1,17318:37855564,49800853:1179648,16384,0 -) -) -k1,17318:3078556,49800853:-34777008 -) -] -g1,17318:6630773,4812305 -k1,17318:28581402,4812305:20755252 -) -) -] -[1,17318:6630773,45706769:25952256,40108032,0 -(1,17318:6630773,45706769:25952256,40108032,0 -(1,17318:6630773,45706769:0,0,0 -g1,17318:6630773,45706769 -) -[1,17318:6630773,45706769:25952256,40108032,0 -(1,17318:7613813,6254097:24969216,505283,134348 -(1,17318:7613813,6254097:-983040,0,0 -g1,17318:6630773,6254097 -g1,17318:5320053,6254097 -g1,17318:4992373,6254097 -(1,17318:4992373,6254097:1310720,0,0 -k1,17318:6303093,6254097:1310720 -) -g1,17318:6630773,6254097 -) -k1,17318:9629463,6254097:227828 -k1,17318:10307494,6254097:227799 -k1,17318:10985525,6254097:227799 -k1,17318:13395133,6254097:227914 -k1,17318:16711587,6254097:227742 -k1,17318:17924991,6254097:227743 -k1,17318:19991018,6254097:227742 -k1,17318:22131756,6254097:227742 -k1,17318:23722648,6254097:227743 -k1,17318:24573780,6254097:227885 -k1,17318:28463018,6254097:227742 -k1,17318:30702801,6254097:227828 -k1,17318:32583029,6254097:0 -) -(1,17318:7613813,7095585:24969216,513147,134348 -k1,17318:9881597,7095585:278766 -k1,17318:11370814,7095585:278767 -k1,17318:16354410,7095585:278766 -k1,17318:19869344,7095585:278766 -k1,17318:22523611,7095585:279243 -k1,17318:25839971,7095585:278766 -k1,17318:26570936,7095585:278767 -k1,17318:29812585,7095585:278766 -k1,17318:32130831,7095585:278766 -k1,17318:32583029,7095585:0 -) -(1,17318:7613813,7937073:24969216,505283,126483 -g1,17318:10096316,7937073 -g1,17318:12467408,7937073 -g1,17318:13261049,7937073 -g1,17318:14829325,7937073 -g1,17318:16620423,7937073 -g1,17318:20836354,7937073 -g1,17318:22208022,7937073 -g1,17318:23216621,7937073 -g1,17318:24010262,7937073 -k1,17318:32583029,7937073:6996626 -g1,17318:32583029,7937073 -) -(1,17318:7613813,8778561:24969216,505283,126483 -(1,17318:7613813,8778561:-983040,0,0 -g1,17318:6630773,8778561 -g1,17318:5320053,8778561 -g1,17318:4992373,8778561 -(1,17318:4992373,8778561:1310720,0,0 -k1,17318:6303093,8778561:1310720 -) -g1,17318:6630773,8778561 -) -k1,17318:9799111,8778561:199557 -k1,17318:10627814,8778561:199557 -k1,17318:13009067,8778561:199559 -k1,17318:17310521,8778561:199556 -k1,17318:20366136,8778561:199556 -k1,17318:21928842,8778561:199557 -k1,17318:22577975,8778561:199556 -k1,17318:23987982,8778561:199557 -k1,17318:24637115,8778561:199556 -k1,17318:26970525,8778561:199558 -k1,17318:28404125,8778561:199557 -k1,17318:29545435,8778561:199558 -k1,17318:32583029,8778561:0 -) -(1,17318:7613813,9620049:24969216,505283,126483 -k1,17318:8294076,9620049:228065 -k1,17318:11485023,9620049:228064 -k1,17318:12909775,9620049:228065 -k1,17318:13582828,9620049:228064 -k1,17318:16061572,9620049:228238 -k1,17318:19327230,9620049:228064 -k1,17318:20746740,9620049:228065 -k1,17318:24111530,9620049:228237 -k1,17318:25534972,9620049:228065 -k1,17318:26778362,9620049:228237 -k1,17318:28598440,9620049:228209 -k1,17318:32583029,9620049:0 -) -(1,17318:7613813,10461537:24969216,505283,126483 -g1,17318:8985481,10461537 -g1,17318:9994080,10461537 -g1,17318:11208462,10461537 -g1,17318:11979820,10461537 -k1,17318:32583030,10461537:19425528 -g1,17318:32583030,10461537 -) -(1,17318:7613813,11303025:24969216,513147,134348 -(1,17318:7613813,11303025:-983040,0,0 -g1,17318:6630773,11303025 -g1,17318:5320053,11303025 -g1,17318:4992373,11303025 -(1,17318:4992373,11303025:1310720,0,0 -k1,17318:6303093,11303025:1310720 -) -g1,17318:6630773,11303025 -) -k1,17318:10173353,11303025:277576 -k1,17318:11069511,11303025:277498 -k1,17318:12126887,11303025:277498 -k1,17318:13992822,11303025:277342 -k1,17318:14842527,11303025:277576 -k1,17318:17094937,11303025:277810 -k1,17318:20647113,11303025:277342 -k1,17318:23530822,11303025:277342 -k1,17318:24732222,11303025:277342 -k1,17318:27862346,11303025:277342 -k1,17318:29350138,11303025:277342 -k1,17318:32583029,11303025:0 -) -(1,17318:7613813,12144513:24969216,505283,126483 -g1,17318:9703756,12144513 -g1,17318:13787304,12144513 -g1,17318:15121617,12144513 -g1,17318:16516223,12144513 -g1,17318:17730605,12144513 -g1,17318:19521703,12144513 -k1,17318:32583029,12144513:8903067 -g1,17318:32583029,12144513 -) -(1,17318:7613813,12986001:24969216,513147,134348 -(1,17318:7613813,12986001:-983040,0,0 -g1,17318:6630773,12986001 -g1,17318:5320053,12986001 -g1,17318:4992373,12986001 -(1,17318:4992373,12986001:1310720,0,0 -k1,17318:6303093,12986001:1310720 -) -g1,17318:6630773,12986001 -) -k1,17318:10311432,12986001:162686 -k1,17318:10924313,12986001:162649 -k1,17318:12278334,12986001:162576 -k1,17318:13178264,12986001:162650 -k1,17318:14019866,12986001:162649 -k1,17318:16806504,12986001:162576 -k1,17318:19150993,12986001:162795 -k1,17318:22444879,12986001:162576 -k1,17318:25191067,12986001:162759 -k1,17318:28031554,12986001:162686 -k1,17318:32583029,12986001:0 -) -(1,17318:7613813,13827489:24969216,505283,134348 -k1,17318:9000503,13827489:176240 -k1,17318:12825131,13827489:176239 -k1,17318:14364520,13827489:176240 -k1,17318:15164144,13827489:176377 -k1,17318:17054806,13827489:176240 -k1,17318:20737359,13827489:176377 -k1,17318:22108975,13827489:176239 -k1,17318:23300505,13827489:176377 -k1,17318:25068729,13827489:176355 -k1,17318:30424934,13827489:176239 -k1,17318:31773659,13827489:176286 -k1,17318:32583029,13827489:0 -) -(1,17318:7613813,14668977:24969216,505283,126483 -g1,17318:8407454,14668977 -k1,17318:32583029,14668977:23396352 -g1,17318:32583029,14668977 -) -(1,17318:7613813,15510465:24969216,513147,134348 -(1,17318:7613813,15510465:-983040,0,0 -g1,17318:6630773,15510465 -g1,17318:5320053,15510465 -g1,17318:4992373,15510465 -(1,17318:4992373,15510465:1310720,0,0 -k1,17318:6303093,15510465:1310720 -) -g1,17318:6630773,15510465 -) -k1,17318:9380445,15510465:173452 -k1,17318:10082747,15510465:173426 -k1,17318:11447567,15510465:173375 -k1,17318:12400871,15510465:173426 -k1,17318:14530496,15510465:173375 -k1,17318:16292463,15510465:173374 -k1,17318:17038044,15510465:173452 -k1,17318:19186174,15510465:173530 -k1,17318:21752923,15510465:173374 -k1,17318:24657183,15510465:173375 -k1,17318:25754615,15510465:173374 -k1,17318:28321365,15510465:173375 -k1,17318:30938731,15510465:173529 -k1,17318:32583029,15510465:0 -) -(1,17318:7613813,16351953:24969216,505283,134348 -g1,17318:9845313,16351953 -g1,17318:13274156,16351953 -g1,17318:15318879,16351953 -g1,17318:16713485,16351953 -g1,17318:17927867,16351953 -g1,17318:19718965,16351953 -g1,17318:23902783,16351953 -g1,17318:25274451,16351953 -g1,17318:26283050,16351953 -g1,17318:27076691,16351953 -k1,17318:32583029,16351953:3930197 -g1,17318:32583029,16351953 -) -(1,17318:7613813,17193441:24969216,513147,134348 -(1,17318:7613813,17193441:-983040,0,0 -g1,17318:6630773,17193441 -g1,17318:5320053,17193441 -g1,17318:4992373,17193441 -(1,17318:4992373,17193441:1310720,0,0 -k1,17318:6303093,17193441:1310720 -) -g1,17318:6630773,17193441 -) -k1,17318:9422745,17193441:231480 -k1,17318:10262368,17193441:231449 -k1,17318:11043008,17193441:231448 -k1,17318:13456279,17193441:231577 -k1,17318:16763924,17193441:231385 -k1,17318:19523224,17193441:231577 -k1,17318:20951295,17193441:231384 -k1,17318:24412293,17193441:231384 -k1,17318:25302970,17193441:231385 -k1,17318:28064044,17193441:231384 -k1,17318:30141115,17193441:231577 -k1,17318:31567876,17193441:231384 -k1,17318:32583029,17193441:0 -) -(1,17318:7613813,18034929:24969216,505283,126483 -g1,17318:9404911,18034929 -g1,17318:13588729,18034929 -g1,17318:14960397,18034929 -g1,17318:15968996,18034929 -g1,17318:16762637,18034929 -k1,17318:32583029,18034929:14642710 -g1,17318:32583029,18034929 -) -(1,17318:7613813,18876417:24969216,505283,134348 -(1,17318:7613813,18876417:-983040,0,0 -g1,17318:6630773,18876417 -g1,17318:5320053,18876417 -g1,17318:4992373,18876417 -(1,17318:4992373,18876417:1310720,0,0 -k1,17318:6303093,18876417:1310720 -) -g1,17318:6630773,18876417 -) -k1,17318:9662982,18876417:218093 -k1,17318:10518721,18876417:218074 -k1,17318:11398053,18876417:218074 -k1,17318:12807534,18876417:218036 -k1,17318:13644268,18876417:218074 -k1,17318:14391218,18876417:218074 -k1,17318:16659877,18876417:218037 -k1,17318:19059720,18876417:218149 -k1,17318:19359862,18876417:-13 -k1,17318:19359875,18876417:13 -k1,17318:20774599,18876417:218037 -k1,17318:23542641,18876417:218036 -k1,17318:26713730,18876417:218037 -k1,17318:29985182,18876417:218130 -k1,17318:32583029,18876417:0 -) -(1,17318:7613813,19717905:24969216,513147,126483 -k1,17318:9080836,19717905:199557 -k1,17318:9939684,19717905:199556 -k1,17318:11158326,19717905:199557 -k1,17318:12951718,19717905:199556 -k1,17318:18776885,19717905:199557 -k1,17318:21238090,19717905:199558 -k1,17318:22239154,19717905:199559 -k1,17318:26509151,19717905:199556 -k1,17318:27679297,19717905:199558 -k1,17318:28894007,19717905:199557 -k1,17318:32583029,19717905:0 -) -(1,17318:7613813,20559393:24969216,505283,126483 -g1,17318:9149976,20559393 -$1,17318:9149976,20559393 -g1,17318:9940340,20559393 -g1,17318:10335522,20559393 -g1,17318:11916250,20559393 -g1,17318:12311432,20559393 -$1,17318:15868070,20559393 -g1,17318:16067299,20559393 -g1,17318:17438967,20559393 -g1,17318:18447566,20559393 -g1,17318:19241207,20559393 -k1,17318:32583029,20559393:11765681 -g1,17318:32583029,20559393 -) -(1,17318:7613813,21400881:24969216,513147,134348 -(1,17318:7613813,21400881:-983040,0,0 -g1,17318:6630773,21400881 -g1,17318:5320053,21400881 -g1,17318:4992373,21400881 -(1,17318:4992373,21400881:1310720,0,0 -k1,17318:6303093,21400881:1310720 -) -g1,17318:6630773,21400881 -) -k1,17318:10503364,21400881:218304 -k1,17318:11294435,21400881:218286 -k1,17318:12292598,21400881:218285 -k1,17318:13702290,21400881:218247 -k1,17318:14469768,21400881:218286 -k1,17318:15138285,21400881:218285 -k1,17318:17717794,21400881:218247 -k1,17318:20117849,21400881:218361 -k1,17318:23118100,21400881:218248 -k1,17318:24982611,21400881:218247 -k1,17318:25803789,21400881:218247 -k1,17318:28169110,21400881:218362 -k1,17318:31120265,21400881:218304 -k1,17318:32583029,21400881:0 -) -(1,17318:7613813,22242369:24969216,505283,134348 -k1,17318:11325018,22242369:166363 -k1,17318:16571568,22242369:166199 -k1,17318:20070273,22242369:166199 -k1,17318:23432860,22242369:166396 -k1,17318:24794435,22242369:166198 -k1,17318:25975853,22242369:166265 -k1,17318:27314557,22242369:166265 -k1,17318:28290126,22242369:166199 -k1,17318:29471543,22242369:166264 -k1,17318:31006888,22242369:166298 -k1,17318:32583029,22242369:0 -k1,17318:32583029,22242369:0 -) -(1,17318:7613813,23083857:24969216,513147,134348 -(1,17318:7613813,23083857:-983040,0,0 -g1,17318:6630773,23083857 -g1,17318:5320053,23083857 -g1,17318:4992373,23083857 -(1,17318:4992373,23083857:1310720,0,0 -k1,17318:6303093,23083857:1310720 -) -g1,17318:6630773,23083857 -) -k1,17318:10242290,23083857:162357 -k1,17318:10977395,23083857:162320 -k1,17318:11919593,23083857:162320 -k1,17318:13273284,23083857:162246 -k1,17318:14054264,23083857:162320 -k1,17318:15533128,23083857:162246 -k1,17318:17877290,23083857:162468 -k1,17318:19227048,23083857:162246 -k1,17318:21875075,23083857:162246 -k1,17318:22653359,23083857:162246 -k1,17318:27379753,23083857:162467 -k1,17318:30211936,23083857:162246 -k1,17318:32583029,23083857:0 -) -(1,17318:7613813,23925345:24969216,505283,126483 -g1,17318:9008419,23925345 -g1,17318:10222801,23925345 -g1,17318:12013899,23925345 -g1,17318:16229830,23925345 -g1,17318:17601498,23925345 -g1,17318:18610097,23925345 -g1,17318:19403738,23925345 -k1,17318:32583029,23925345:12001609 -g1,17318:32583029,23925345 -) -(1,17318:7613813,24766833:24969216,505283,134348 -(1,17318:7613813,24766833:-983040,0,0 -g1,17318:6630773,24766833 -g1,17318:5320053,24766833 -g1,17318:4992373,24766833 -(1,17318:4992373,24766833:1310720,0,0 -k1,17318:6303093,24766833:1310720 -) -g1,17318:6630773,24766833 -) -k1,17318:8907311,24766833:137443 -k1,17318:9721680,24766833:137382 -k1,17318:10403666,24766833:137382 -k1,17318:12722988,24766833:137628 -k1,17318:13023130,24766833:-13 -k1,17318:13023143,24766833:13 -k1,17318:15579334,24766833:137257 -k1,17318:20543033,24766833:137628 -k1,17318:21482104,24766833:137566 -k1,17318:22806874,24766833:137258 -k1,17318:26089205,24766833:137258 -k1,17318:28625735,24766833:137257 -k1,17318:30305896,24766833:137443 -k1,17318:31458431,24766833:137382 -k1,17318:32583029,24766833:0 -) -(1,17318:7613813,25608321:24969216,505283,126483 -g1,17318:9008419,25608321 -g1,17318:10380087,25608321 -g1,17318:11388686,25608321 -g1,17318:12603068,25608321 -g1,17318:13374426,25608321 -k1,17318:32583028,25608321:18030920 -g1,17318:32583028,25608321 -) -(1,17318:7613813,26449809:24969216,505283,173670 -(1,17318:7613813,26449809:-983040,0,0 -g1,17318:6630773,26449809 -g1,17318:5320053,26449809 -g1,17318:4992373,26449809 -(1,17318:4992373,26449809:1310720,0,0 -k1,17318:6303093,26449809:1310720 -) -g1,17318:6630773,26449809 -) -k1,17318:9671449,26449809:165612 -k1,17318:10375734,26449809:165579 -k1,17318:12723141,26449809:165713 -[1,17318:12862077,26449809:342688,473825,0 -(1,17318:12862077,26313167:342688,337183,0 -) -] -(1,17318:13431719,26623479:372900,473825,0 -) -k1,17318:14470993,26449809:165679 -k1,17318:15034964,26449809:165512 -k1,17318:18302294,26449809:165511 -k1,17318:22219741,26449809:165511 -k1,17318:24692321,26449809:165713 -k1,17318:27343159,26449809:165713 -k1,17318:28742713,26449809:165511 -k1,17318:29850178,26449809:165713 -k1,17318:32583029,26449809:0 -) -(1,17318:7613813,27291297:24969216,505283,126483 -g1,17318:13067063,27291297 -g1,17318:13860704,27291297 -g1,17318:15428980,27291297 -g1,17318:17220078,27291297 -g1,17318:22042872,27291297 -g1,17318:23414540,27291297 -g1,17318:24423139,27291297 -g1,17318:25216780,27291297 -k1,17318:32583029,27291297:6188567 -g1,17318:32583029,27291297 -) -(1,17318:7613813,28132785:24969216,513147,134348 -(1,17318:7613813,28132785:-983040,0,0 -g1,17318:6630773,28132785 -g1,17318:5320053,28132785 -g1,17318:4992373,28132785 -(1,17318:4992373,28132785:1310720,0,0 -k1,17318:6303093,28132785:1310720 -) -g1,17318:6630773,28132785 -) -k1,17318:8959816,28132785:163078 -k1,17318:9655667,28132785:163043 -k1,17318:12000547,28132785:163186 -k1,17318:12300689,28132785:-13 -k1,17318:12300702,28132785:13 -k1,17318:15253540,28132785:162970 -k1,17318:18811929,28132785:162969 -k1,17318:19634191,28132785:162970 -k1,17318:22881284,28132785:162969 -k1,17318:25370782,28132785:162970 -k1,17318:27269145,28132785:162970 -k1,17318:29691140,28132785:162969 -k1,17318:31243473,28132785:162970 -k1,17318:32583029,28132785:0 -) -(1,17318:7613813,28974273:24969216,505283,134348 -k1,17318:9813018,28974273:297350 -k1,17318:10911776,28974273:297253 -k1,17318:14945405,28974273:296766 -k1,17318:15845102,28974273:296766 -k1,17318:20828347,28974273:296765 -k1,17318:24030252,28974273:297350 -k1,17318:27417696,28974273:296766 -k1,17318:29482552,28974273:297350 -k1,17318:30744857,28974273:296960 -k1,17318:31803151,28974273:296766 -k1,17318:32583029,28974273:0 -) -(1,17318:7613813,29815761:24969216,505283,134348 -k1,17318:9984315,29815761:247791 -k1,17318:11423552,29815761:247792 -k1,17318:12244225,29815761:247888 -k1,17318:14310277,29815761:248083 -k1,17318:18169248,29815761:247937 -k1,17318:21458153,29815761:248034 -k1,17318:24137330,29815761:247791 -k1,17318:26587932,29815761:247937 -k1,17318:27850974,29815761:247889 -k1,17318:30991160,29815761:248082 -k1,17318:32583029,29815761:0 -) -(1,17318:7613813,30657249:24969216,505283,126483 -g1,17318:12436607,30657249 -g1,17318:13808275,30657249 -g1,17318:14816874,30657249 -g1,17318:15610515,30657249 -k1,17318:32583029,30657249:16193291 -g1,17318:32583029,30657249 -) -(1,17318:7613813,31498737:24969216,505283,134349 -(1,17318:7613813,31498737:-983040,0,0 -g1,17318:6630773,31498737 -g1,17318:5320053,31498737 -g1,17318:4992373,31498737 -(1,17318:4992373,31498737:1310720,0,0 -k1,17318:6303093,31498737:1310720 -) -g1,17318:6630773,31498737 -) -k1,17318:9231551,31498737:285391 -k1,17318:9967088,31498737:285305 -k1,17318:12434431,31498737:285649 -k1,17318:16510167,31498737:285134 -k1,17318:17419063,31498737:285649 -k1,17318:19074983,31498737:285563 -$1,17318:19074983,31498737 -k1,17318:21145096,31498737:94203 -k1,17318:21634481,31498737:94203 -k1,17318:22123866,31498737:94203 -k1,17318:22613250,31498737:94202 -k1,17318:24288181,31498737:94203 -k1,17318:24777566,31498737:94203 -k1,17318:25266951,31498737:94203 -(1,17318:25662133,31597051:32768,0,0 -) -k1,17318:25789103,31498737:94202 -k1,17318:28649580,31498737:94203 -k1,17318:29138965,31498737:94203 -k1,17318:30418714,31498737:94203 -k1,17318:30908098,31498737:94202 -k1,17318:32187847,31498737:94203 -k1,17318:32583029,31498737:0 -) -(1,17318:7613813,32340225:24969216,505283,98314 -g1,17318:10380087,32340225 -g1,17318:10775269,32340225 -g1,17318:12751179,32340225 -(1,17318:13146361,32438539:32768,0,0 -) -g1,17318:13179129,32340225 -g1,17318:16735767,32340225 -g1,17318:17130949,32340225 -g1,17318:17921313,32340225 -g1,17318:18316495,32340225 -g1,17318:20292405,32340225 -g1,17318:20687587,32340225 -$1,17318:22268315,32340225 -g1,17318:22467544,32340225 -g1,17318:24988714,32340225 -g1,17318:25997313,32340225 -k1,17318:32583029,32340225:2346192 -g1,17318:32583029,32340225 -) -(1,17318:7613813,33181713:24969216,513147,134348 -(1,17318:7613813,33181713:-983040,0,0 -g1,17318:6630773,33181713 -g1,17318:5320053,33181713 -g1,17318:4992373,33181713 -(1,17318:4992373,33181713:1310720,0,0 -k1,17318:6303093,33181713:1310720 -) -g1,17318:6630773,33181713 -) -k1,17318:8128242,33181713:169710 -k1,17318:9035202,33181713:169680 -k1,17318:9754075,33181713:169681 -k1,17318:11051571,33181713:169621 -k1,17318:12277632,33181713:169621 -k1,17318:13638698,33181713:169621 -k1,17318:14352982,33181713:169680 -k1,17318:15290685,33181713:169621 -k1,17318:17267789,33181713:169621 -k1,17318:19619282,33181713:169799 -k1,17318:22620714,33181713:169621 -k1,17318:25200094,33181713:169621 -k1,17318:26293773,33181713:169621 -k1,17318:26912971,33181713:169621 -k1,17318:30112977,33181713:169621 -k1,17318:32583029,33181713:0 -) -(1,17318:7613813,34023201:24969216,505283,134348 -k1,17318:9262362,34023201:244768 -k1,17318:10492520,34023201:244497 -k1,17318:11679040,34023201:244768 -k1,17318:15986995,34023201:244723 -k1,17318:17945913,34023201:244496 -k1,17318:21696721,34023201:244632 -k1,17318:22535720,34023201:244587 -k1,17318:24149535,34023201:244768 -k1,17318:25986127,34023201:244723 -k1,17318:31410590,34023201:244497 -k1,17318:32583029,34023201:0 -) -(1,17318:7613813,34864689:24969216,505283,126483 -g1,17318:8622412,34864689 -g1,17318:9416053,34864689 -k1,17318:32583028,34864689:22387752 -g1,17318:32583028,34864689 -) -(1,17318:7613813,35706177:24969216,513147,134348 -(1,17318:7613813,35706177:-983040,0,0 -g1,17318:6630773,35706177 -g1,17318:5320053,35706177 -g1,17318:4992373,35706177 -(1,17318:4992373,35706177:1310720,0,0 -k1,17318:6303093,35706177:1310720 -) -g1,17318:6630773,35706177 -) -k1,17318:9226018,35706177:159927 -k1,17318:10051752,35706177:159888 -k1,17318:12393491,35706177:160045 -k1,17318:13740812,35706177:159809 -k1,17318:14930847,35706177:159809 -k1,17318:15706694,35706177:159809 -k1,17318:16316080,35706177:159809 -k1,17318:21040013,35706177:160006 -k1,17318:21689376,35706177:159809 -k1,17318:23371586,35706177:159809 -k1,17318:24147433,35706177:159809 -k1,17318:27337627,35706177:159809 -k1,17318:30279439,35706177:159809 -k1,17318:32583029,35706177:0 -) -(1,17318:7613813,36547665:24969216,505283,126483 -g1,17318:8699744,36547665 -g1,17318:10903719,36547665 -g1,17318:12948442,36547665 -g1,17318:13742083,36547665 -g1,17318:15310359,36547665 -g1,17318:17101457,36547665 -g1,17318:21285275,36547665 -g1,17318:22656943,36547665 -g1,17318:23665542,36547665 -g1,17318:24879924,36547665 -g1,17318:26049741,36547665 -g1,17318:27618017,36547665 -k1,17318:32583029,36547665:3388871 -g1,17318:32583029,36547665 -) -(1,17318:7613813,37389153:24969216,505283,126483 -(1,17318:7613813,37389153:-983040,0,0 -g1,17318:6630773,37389153 -g1,17318:5320053,37389153 -g1,17318:4992373,37389153 -(1,17318:4992373,37389153:1310720,0,0 -k1,17318:6303093,37389153:1310720 -) -g1,17318:6630773,37389153 -) -k1,17318:9288775,37389153:171566 -k1,17318:10009505,37389153:171538 -k1,17318:12362848,37389153:171649 -k1,17318:12983908,37389153:171483 -k1,17318:16140065,37389153:171648 -k1,17318:17545591,37389153:171483 -k1,17318:18658991,37389153:171648 -k1,17318:20186414,37389153:171483 -k1,17318:22203474,37389153:171566 -k1,17318:22969424,37389153:171538 -k1,17318:24510120,37389153:171649 -k1,17318:26273610,37389153:171621 -k1,17318:30429682,37389153:171483 -k1,17318:31773659,37389153:171538 -k1,17318:32583029,37389153:0 -) -(1,17318:7613813,38230641:24969216,505283,126483 -g1,17318:8407454,38230641 -k1,17318:32583029,38230641:22599434 -g1,17318:32583029,38230641 -) -(1,17318:7613813,39072129:24969216,505283,126483 -(1,17318:7613813,39072129:-983040,0,0 -g1,17318:6630773,39072129 -g1,17318:5320053,39072129 -g1,17318:4992373,39072129 -(1,17318:4992373,39072129:1310720,0,0 -k1,17318:6303093,39072129:1310720 -) -g1,17318:6630773,39072129 -) -(1,17318:6630773,39072129:983040,211026,0 -k1,17318:7613813,39072129:327680 -) -k1,17318:9987550,39072129:192043 -k1,17318:10629126,39072129:191999 -k1,17318:13805678,39072129:192043 -k1,17318:15105235,39072129:191999 -k1,17318:16239030,39072129:192043 -k1,17318:19316616,39072129:192036 -k1,17318:20864555,39072129:191999 -k1,17318:25103403,39072129:192000 -k1,17318:25747600,39072129:191999 -k1,17318:28396588,39072129:192043 -k1,17318:29783964,39072129:191999 -k1,17318:30991160,39072129:192043 -k1,17318:32583029,39072129:0 -) -(1,17318:7613813,39913617:24969216,505283,126483 -g1,17318:11797631,39913617 -g1,17318:13169299,39913617 -g1,17318:14177898,39913617 -g1,17318:15392280,39913617 -g1,17318:16562097,39913617 -k1,17318:32583029,39913617:14444791 -g1,17318:32583029,39913617 -) -(1,17318:7613813,40755105:24969216,505283,134348 -(1,17318:7613813,40755105:-983040,0,0 -g1,17318:6630773,40755105 -g1,17318:5320053,40755105 -g1,17318:4992373,40755105 -(1,17318:4992373,40755105:1310720,0,0 -k1,17318:6303093,40755105:1310720 -) -g1,17318:6630773,40755105 -) -k1,17318:9760477,40755105:204832 -k1,17318:10594450,40755105:204827 -k1,17318:11990711,40755105:204816 -k1,17318:12768323,40755105:204827 -k1,17318:16380355,40755105:204815 -k1,17318:18245853,40755105:204816 -k1,17318:19022814,40755105:204832 -k1,17318:21202263,40755105:204849 -k1,17318:24238890,40755105:204816 -k1,17318:25429367,40755105:204816 -k1,17318:27125126,40755105:204815 -k1,17318:28995244,40755105:204849 -k1,17318:31647830,40755105:204816 -k1,17318:32583029,40755105:0 -) -(1,17318:7613813,41596593:24969216,505283,126483 -g1,17318:9029390,41596593 -g1,17318:10423996,41596593 -g1,17318:11638378,41596593 -g1,17318:13429476,41596593 -g1,17318:17613294,41596593 -g1,17318:18984962,41596593 -g1,17318:19993561,41596593 -g1,17318:20787202,41596593 -k1,17318:32583029,41596593:10618145 -g1,17318:32583029,41596593 -) -(1,17318:7613813,42438081:24969216,513147,134348 -(1,17318:7613813,42438081:-983040,0,0 -g1,17318:6630773,42438081 -g1,17318:5320053,42438081 -g1,17318:4992373,42438081 -(1,17318:4992373,42438081:1310720,0,0 -k1,17318:6303093,42438081:1310720 -) -g1,17318:6630773,42438081 -) -k1,17318:8485046,42438081:168687 -k1,17318:9272362,42438081:168656 -k1,17318:10118005,42438081:168656 -k1,17318:12468477,42438081:168778 -k1,17318:13086649,42438081:168595 -k1,17318:17645501,42438081:168595 -k1,17318:18738154,42438081:168595 -k1,17318:20440947,42438081:168595 -k1,17318:23063393,42438081:168778 -k1,17318:26124930,42438081:168778 -k1,17318:27488901,42438081:168594 -k1,17318:28672832,42438081:168778 -k1,17318:30211937,42438081:168748 -$1,17318:30211937,42438081 -k1,17318:32187847,42438081:0 -k1,17318:32583029,42438081:0 -) -(1,17318:7613813,43279569:24969216,505283,134349 -g1,17318:8008995,43279569 -g1,17318:8404177,43279569 -g1,17318:11170451,43279569 -g1,17318:11565633,43279569 -g1,17318:12751179,43279569 -g1,17318:13146361,43279569 -$1,17318:17888545,43279569 -g1,17318:18087774,43279569 -g1,17318:20608944,43279569 -g1,17318:21617543,43279569 -g1,17318:25882626,43279569 -g1,17318:27254294,43279569 -g1,17318:28262893,43279569 -g1,17318:29477275,43279569 -g1,17318:30647092,43279569 -k1,17318:32583029,43279569:359796 -g1,17318:32583029,43279569 -) -(1,17318:7613813,44121057:24969216,513147,126483 -(1,17318:7613813,44121057:-983040,0,0 -g1,17318:6630773,44121057 -g1,17318:5320053,44121057 -g1,17318:4992373,44121057 -(1,17318:4992373,44121057:1310720,0,0 -k1,17318:6303093,44121057:1310720 -) -g1,17318:6630773,44121057 -) -k1,17318:9716403,44121057:274135 -k1,17318:10440696,44121057:274061 -k1,17318:11343902,44121057:274060 -k1,17318:12809259,44121057:273912 -k1,17318:13760306,44121057:274060 -k1,17318:14771647,44121057:274061 -k1,17318:16735077,44121057:273912 -k1,17318:19191130,44121057:274359 -k1,17318:23521064,44121057:273911 -k1,17318:25944557,44121057:273912 -k1,17318:26821399,44121057:273911 -k1,17318:27455104,44121057:273912 -k1,17318:28939465,44121057:273911 -k1,17318:31222502,44121057:274359 -k1,17318:32583029,44121057:0 -) -(1,17318:7613813,44962545:24969216,505283,134348 -g1,17318:9506492,44962545 -g1,17318:12395974,44962545 -g1,17318:13767642,44962545 -g1,17318:14776241,44962545 -g1,17318:15990623,44962545 -g1,17318:17558899,44962545 -k1,17318:32583029,44962545:13447989 -g1,17318:32583029,44962545 -) -] -(1,17318:32583029,45706769:0,0,0 -g1,17318:32583029,45706769 -) -) -] -(1,17318:6630773,47279633:25952256,0,0 -h1,17318:6630773,47279633:25952256,0,0 -) -] -h1,17318:4262630,4025873:0,0,0 -] -!27650 +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,177:37855564,49800853:1179648,16384,0 +) +) +k2534,177:3078556,49800853:-34777008 +) +] +g2534,177:6630773,4812305 +k2534,177:28224886,4812305:20398736 +g2534,177:30907930,4812305 +) +) +] +[2534,177:6630773,45706769:25952256,40108032,0 +(2534,177:6630773,45706769:25952256,40108032,0 +(2534,177:6630773,45706769:0,0,0 +g2534,177:6630773,45706769 +) +[2534,177:6630773,45706769:25952256,40108032,0 +(2534,177:6630773,45706769:25952256,40108032,126483 +[2534,177:6630773,45706769:11829248,40108032,102891 +(2534,83:6630773,6254097:11829248,505283,134348 +h2534,82:6630773,6254097:0,0,0 +r2534,82:6630773,6254097:0,639631,134348 +g2534,82:7941493,6254097 +g2534,82:7941493,6254097 +g2534,82:11278586,6254097 +k2534,83:15267763,6254097:3192259 +k2534,83:18460021,6254097:3192258 +) +(2534,84:6630773,7099387:11829248,505283,134348 +h2534,83:6630773,7099387:0,0,0 +r2534,83:6630773,7099387:0,639631,134348 +g2534,83:7941493,7099387 +g2534,83:7941493,7099387 +g2534,83:11194700,7099387 +g2534,83:13577589,7099387 +k2534,84:16417264,7099387:2042757 +k2534,84:18460021,7099387:2042757 +) +(2534,85:6630773,7944677:11829248,505283,134348 +h2534,84:6630773,7944677:0,0,0 +r2534,84:6630773,7944677:0,639631,134348 +g2534,84:7941493,7944677 +g2534,84:7941493,7944677 +g2534,84:10870297,7944677 +g2534,84:13956387,7944677 +k2534,85:16606663,7944677:1853358 +k2534,85:18460021,7944677:1853358 +) +(2534,86:6630773,8789966:11829248,505283,134348 +h2534,85:6630773,8789966:0,0,0 +r2534,85:6630773,8789966:0,639631,134348 +g2534,85:7941493,8789966 +g2534,85:7941493,8789966 +g2534,85:10870297,8789966 +g2534,85:12777394,8789966 +g2534,85:13947211,8789966 +k2534,86:16602075,8789966:1857946 +k2534,86:18460021,8789966:1857946 +) +(2534,87:6630773,9635256:11829248,505283,134348 +h2534,86:6630773,9635256:0,0,0 +r2534,86:6630773,9635256:0,639631,134348 +g2534,86:7941493,9635256 +g2534,86:7941493,9635256 +g2534,86:11641655,9635256 +k2534,87:15449297,9635256:3010724 +k2534,87:18460021,9635256:3010724 +) +(2534,88:6630773,10480546:11829248,505283,126483 +h2534,87:6630773,10480546:0,0,0 +g2534,87:8219365,10480546 +g2534,87:12674502,10480546 +g2534,87:13489769,10480546 +g2534,87:14708083,10480546 +k2534,87:18460021,10480546:667814 +) +(2534,88:9252213,11322034:9207808,485622,11795 +k2534,88:15215334,11322034:3244688 +k2534,88:18460021,11322034:3244687 +) +(2534,89:6630773,12167324:11829248,505283,102891 +h2534,88:6630773,12167324:0,0,0 +g2534,88:10580627,12167324 +g2534,88:12148903,12167324 +k2534,89:16663679,12167324:1796343 +k2534,89:18460021,12167324:1796342 +) +(2534,90:6630773,13012613:11829248,505283,126483 +h2534,89:6630773,13012613:0,0,0 +g2534,89:9456029,13012613 +g2534,89:11024305,13012613 +g2534,89:12592581,13012613 +k2534,90:16123990,13012613:2336032 +k2534,90:18460021,13012613:2336031 +) +(2534,91:6630773,13857903:11829248,505283,134348 +h2534,90:6630773,13857903:0,0,0 +g2534,90:9397703,13857903 +g2534,90:12060430,13857903 +g2534,90:13226970,13857903 +k2534,90:18460021,13857903:2235434 +) +(2534,91:9252213,14699391:9207808,505283,134348 +k2534,91:15001031,14699391:3458990 +k2534,91:18460021,14699391:3458990 +) +(2534,92:6630773,15544681:11829248,505283,7863 +h2534,91:6630773,15544681:0,0,0 +k2534,92:13714232,15544681:4745790 +k2534,92:18460021,15544681:4745789 +) +(2534,93:6630773,16389971:11829248,505283,134348 +h2534,92:6630773,16389971:0,0,0 +r2534,92:6630773,16389971:0,639631,134348 +g2534,92:7941493,16389971 +g2534,92:7941493,16389971 +g2534,92:10473148,16389971 +g2534,92:11639688,16389971 +g2534,92:14227704,16389971 +k2534,92:18460021,16389971:2073561 +) +(2534,93:9252213,17231459:9207808,505283,7863 +k2534,93:15024952,17231459:3435070 +k2534,93:18460021,17231459:3435069 +) +(2534,94:6630773,18076748:11829248,505283,102891 +h2534,93:6630773,18076748:0,0,0 +g2534,93:10108112,18076748 +k2534,94:14881755,18076748:3578266 +k2534,94:18460021,18076748:3578266 +) +(2534,95:6630773,18922038:11829248,505283,102891 +h2534,94:6630773,18922038:0,0,0 +g2534,94:11115401,18922038 +k2534,95:16146928,18922038:2313094 +k2534,95:18460021,18922038:2313093 +) +(2534,96:6630773,19767328:11829248,513147,126483 +h2534,95:6630773,19767328:0,0,0 +r2534,95:6630773,19767328:0,639630,126483 +g2534,95:7941493,19767328 +g2534,95:7941493,19767328 +g2534,95:10473148,19767328 +g2534,95:12239998,19767328 +g2534,95:16223931,19767328 +k2534,96:17939665,19767328:520357 +k2534,96:18460021,19767328:520356 +) +(2534,97:6630773,20612618:11829248,513147,126483 +h2534,96:6630773,20612618:0,0,0 +r2534,96:6630773,20612618:0,639630,126483 +g2534,96:7941493,20612618 +g2534,96:7941493,20612618 +g2534,96:12144316,20612618 +g2534,96:13911166,20612618 +g2534,96:17214835,20612618 +k2534,97:18435117,20612618:24905 +k2534,97:18460021,20612618:24904 +) +(2534,98:6630773,21457907:11829248,505283,126483 +h2534,97:6630773,21457907:0,0,0 +r2534,97:6630773,21457907:0,631766,126483 +g2534,97:7941493,21457907 +g2534,97:7941493,21457907 +g2534,97:13176508,21457907 +g2534,97:15465680,21457907 +k2534,98:17560539,21457907:899482 +k2534,98:18460021,21457907:899482 +) +(2534,99:6630773,22303197:11829248,513147,126483 +h2534,98:6630773,22303197:0,0,0 +r2534,98:6630773,22303197:0,639630,126483 +g2534,98:7941493,22303197 +g2534,98:7941493,22303197 +g2534,98:11071492,22303197 +g2534,98:12838342,22303197 +g2534,98:17214836,22303197 +k2534,99:18435117,22303197:24904 +k2534,99:18460021,22303197:24904 +) +(2534,100:6630773,23148487:11829248,505283,126483 +h2534,99:6630773,23148487:0,0,0 +g2534,99:9505182,23148487 +g2534,99:12624695,23148487 +k2534,100:16140047,23148487:2319975 +k2534,100:18460021,23148487:2319974 +) +(2534,102:6630773,23993777:11829248,505283,126483 +h2534,100:6630773,23993777:0,0,0 +g2534,100:9043152,23993777 +g2534,100:10611428,23993777 +g2534,100:12179704,23993777 +g2534,100:13747980,23993777 +g2534,100:16839313,23993777 +k2534,100:18460021,23993777:251661 +) +(2534,102:9252213,24835265:9207808,485622,102891 +g2534,100:10820489,24835265 +g2534,100:12388765,24835265 +g2534,101:13957041,24835265 +k2534,102:16806220,24835265:1653802 +k2534,102:18460021,24835265:1653801 +) +(2534,103:6630773,25680554:11829248,505283,126483 +h2534,102:6630773,25680554:0,0,0 +g2534,102:9288257,25680554 +k2534,103:14471828,25680554:3988194 +k2534,103:18460021,25680554:3988193 +) +(2534,107:6630773,27244566:11829248,505283,126483 +h2534,106:6630773,27244566:0,0,0 +g2534,106:9184710,27244566 +k2534,107:14220825,27244566:4239197 +k2534,107:18460021,27244566:4239196 +) +(2534,108:6630773,28089856:11829248,513147,126483 +h2534,107:6630773,28089856:0,0,0 +g2534,107:8739066,28089856 +g2534,107:9885946,28089856 +g2534,107:10530164,28089856 +g2534,107:13064441,28089856 +k2534,108:16160690,28089856:2299331 +k2534,108:18460021,28089856:2299331 +) +(2534,109:6630773,28935145:11829248,481690,102891 +h2534,108:6630773,28935145:0,0,0 +g2534,108:9001865,28935145 +g2534,108:9773223,28935145 +k2534,109:14515081,28935145:3944940 +k2534,109:18460021,28935145:3944940 +) +(2534,110:6630773,29780435:11829248,505283,102891 +h2534,109:6630773,29780435:0,0,0 +g2534,109:7931662,29780435 +$2534,109:8138756,29780435 +$2534,109:8500515,29780435 +g2534,109:9080508,29780435 +g2534,109:10247048,29780435 +g2534,109:13133908,29780435 +k2534,109:18460021,29780435:2049968 +) +(2534,110:9252213,30621923:9207808,473825,126483 +k2534,110:15322158,30621923:3137864 +k2534,110:18460021,30621923:3137863 +) +(2534,111:6630773,31467213:11829248,505283,134348 +h2534,110:6630773,31467213:0,0,0 +g2534,110:9893155,31467213 +k2534,111:14871270,31467213:3588752 +k2534,111:18460021,31467213:3588751 +) +(2534,112:6630773,32312503:11829248,513147,102891 +h2534,111:6630773,32312503:0,0,0 +r2534,111:6630773,32312503:0,616038,102891 +g2534,111:7941493,32312503 +g2534,111:7941493,32312503 +g2534,111:9366901,32312503 +g2534,111:11053142,32312503 +g2534,111:14144475,32312503 +k2534,112:17661465,32312503:798557 +k2534,112:18460021,32312503:798556 +) +(2534,113:6630773,33157792:11829248,485622,102891 +h2534,112:6630773,33157792:0,0,0 +g2534,112:10232631,33157792 +g2534,112:11083288,33157792 +g2534,112:11901177,33157792 +k2534,113:15778288,33157792:2681734 +k2534,113:18460021,33157792:2681733 +) +(2534,114:6630773,34003082:11829248,513147,102891 +h2534,113:6630773,34003082:0,0,0 +g2534,113:10353872,34003082 +k2534,114:15004635,34003082:3455386 +k2534,114:18460021,34003082:3455386 +) +(2534,118:6630773,35567094:11829248,513147,134348 +h2534,117:6630773,35567094:0,0,0 +g2534,117:8718750,35567094 +g2534,117:12277354,35567094 +g2534,117:13443894,35567094 +g2534,117:16545713,35567094 +k2534,117:18460021,35567094:1255016 +) +(2534,118:9252213,36408582:9207808,513147,134348 +g2534,117:12344201,36408582 +k2534,118:16346485,36408582:2113536 +k2534,118:18460021,36408582:2113536 +) +(2534,119:6630773,37253872:11829248,513147,102891 +h2534,118:6630773,37253872:0,0,0 +g2534,118:9227964,37253872 +k2534,119:14804751,37253872:3655271 +k2534,119:18460021,37253872:3655270 +) +(2534,120:6630773,38099161:11829248,505283,134348 +h2534,119:6630773,38099161:0,0,0 +r2534,119:6630773,38099161:0,639631,134348 +g2534,119:7941493,38099161 +g2534,119:7941493,38099161 +g2534,119:10565554,38099161 +g2534,119:12949098,38099161 +k2534,120:16103019,38099161:2357003 +k2534,120:18460021,38099161:2357002 +) +(2534,121:6630773,38944451:11829248,485622,102891 +h2534,120:6630773,38944451:0,0,0 +r2534,120:6630773,38944451:0,588513,102891 +g2534,120:7941493,38944451 +g2534,120:7941493,38944451 +g2534,120:10533441,38944451 +g2534,120:11384098,38944451 +g2534,120:14377127,38944451 +k2534,121:16817033,38944451:1642988 +k2534,121:18460021,38944451:1642988 +) +(2534,122:6630773,39789741:11829248,505283,126483 +h2534,121:6630773,39789741:0,0,0 +r2534,121:6630773,39789741:0,631766,126483 +g2534,121:7941493,39789741 +g2534,121:7941493,39789741 +g2534,121:9665089,39789741 +g2534,121:12207230,39789741 +g2534,121:14372539,39789741 +k2534,122:16814739,39789741:1645282 +k2534,122:18460021,39789741:1645282 +) +(2534,123:6630773,40635031:11829248,505283,102891 +h2534,122:6630773,40635031:0,0,0 +r2534,122:6630773,40635031:0,608174,102891 +g2534,122:7941493,40635031 +g2534,122:7941493,40635031 +g2534,122:10158576,40635031 +k2534,123:14707758,40635031:3752264 +k2534,123:18460021,40635031:3752263 +) +(2534,124:6630773,41480320:11829248,505283,102891 +h2534,123:6630773,41480320:0,0,0 +r2534,123:6630773,41480320:0,608174,102891 +g2534,123:7941493,41480320 +g2534,123:7941493,41480320 +g2534,123:10106802,41480320 +k2534,124:14681871,41480320:3778151 +k2534,124:18460021,41480320:3778150 +) +(2534,125:6630773,42325610:11829248,505283,134348 +h2534,124:6630773,42325610:0,0,0 +r2534,124:6630773,42325610:0,639631,134348 +g2534,124:7941493,42325610 +g2534,124:7941493,42325610 +g2534,124:10117943,42325610 +g2534,124:12283252,42325610 +k2534,125:15770096,42325610:2689926 +k2534,125:18460021,42325610:2689925 +) +(2534,126:6630773,43170900:11829248,505283,102891 +h2534,125:6630773,43170900:0,0,0 +r2534,125:6630773,43170900:0,608174,102891 +g2534,125:7941493,43170900 +g2534,125:7941493,43170900 +g2534,125:10821800,43170900 +k2534,126:15039370,43170900:3420652 +k2534,126:18460021,43170900:3420651 +) +(2534,127:6630773,44016190:11829248,505283,102891 +h2534,126:6630773,44016190:0,0,0 +r2534,126:6630773,44016190:0,608174,102891 +g2534,126:7941493,44016190 +g2534,126:7941493,44016190 +g2534,126:10514436,44016190 +g2534,126:12679745,44016190 +k2534,127:15968342,44016190:2491679 +k2534,127:18460021,44016190:2491679 +) +(2534,128:6630773,44861479:11829248,505283,102891 +h2534,127:6630773,44861479:0,0,0 +r2534,127:6630773,44861479:0,608174,102891 +g2534,127:7941493,44861479 +g2534,127:7941493,44861479 +g2534,127:10515747,44861479 +g2534,127:12681056,44861479 +k2534,128:15968998,44861479:2491024 +k2534,128:18460021,44861479:2491023 +) +(2534,129:6630773,45706769:11829248,505283,102891 +h2534,128:6630773,45706769:0,0,0 +r2534,128:6630773,45706769:0,608174,102891 +g2534,128:7941493,45706769 +g2534,128:7941493,45706769 +g2534,128:10515747,45706769 +g2534,128:12899291,45706769 +k2534,129:16078115,45706769:2381906 +k2534,129:18460021,45706769:2381906 +) +] +k2534,177:19606901,45706769:1146880 +r2534,177:19606901,45706769:0,40234515,126483 +k2534,177:20753781,45706769:1146880 +[2534,177:20753781,45706769:11829248,40108032,102891 +(2534,130:20753781,6254097:11829248,513147,7863 +h2534,129:20753781,6254097:0,0,0 +g2534,129:21936050,6254097 +k2534,130:28293698,6254097:4289332 +k2534,130:32583029,6254097:4289331 +) +(2534,131:20753781,7097181:11829248,505283,126483 +h2534,130:20753781,7097181:0,0,0 +r2534,130:20753781,7097181:0,631766,126483 +g2534,130:22064501,7097181 +g2534,130:22064501,7097181 +g2534,130:25106682,7097181 +k2534,131:29442544,7097181:3140485 +k2534,131:32583029,7097181:3140485 +) +(2534,132:20753781,7940266:11829248,505283,126483 +h2534,131:20753781,7940266:0,0,0 +r2534,131:20753781,7940266:0,631766,126483 +g2534,131:22064501,7940266 +g2534,131:22064501,7940266 +g2534,131:24094806,7940266 +g2534,131:27810042,7940266 +k2534,132:30794224,7940266:1788805 +k2534,132:32583029,7940266:1788805 +) +(2534,133:20753781,8783350:11829248,513147,126483 +h2534,132:20753781,8783350:0,0,0 +g2534,132:21936050,8783350 +g2534,132:25713545,8783350 +k2534,133:30507504,8783350:2075526 +k2534,133:32583029,8783350:2075525 +) +(2534,134:20753781,9626434:11829248,513147,126483 +h2534,133:20753781,9626434:0,0,0 +g2534,133:21936050,9626434 +k2534,134:28148863,9626434:4434166 +k2534,134:32583029,9626434:4434166 +) +(2534,135:20753781,10469519:11829248,485622,134348 +h2534,134:20753781,10469519:0,0,0 +r2534,134:20753781,10469519:0,619970,134348 +g2534,134:22064501,10469519 +g2534,134:22064501,10469519 +g2534,134:24822911,10469519 +k2534,135:29300659,10469519:3282371 +k2534,135:32583029,10469519:3282370 +) +(2534,136:20753781,11312603:11829248,505283,126483 +h2534,135:20753781,11312603:0,0,0 +r2534,135:20753781,11312603:0,631766,126483 +g2534,135:22064501,11312603 +g2534,135:22064501,11312603 +g2534,135:24094806,11312603 +g2534,135:27810042,11312603 +k2534,136:30794224,11312603:1788805 +k2534,136:32583029,11312603:1788805 +) +(2534,137:20753781,12155688:11829248,513147,134348 +h2534,136:20753781,12155688:0,0,0 +g2534,136:23385051,12155688 +g2534,136:25272487,12155688 +k2534,137:30335799,12155688:2247230 +k2534,137:32583029,12155688:2247230 +) +(2534,138:20753781,12998772:11829248,505283,102891 +h2534,137:20753781,12998772:0,0,0 +r2534,137:20753781,12998772:0,608174,102891 +g2534,137:22064501,12998772 +g2534,137:22064501,12998772 +g2534,137:25713545,12998772 +k2534,138:30109045,12998772:2473984 +k2534,138:32583029,12998772:2473984 +) +(2534,139:20753781,13841856:11829248,513147,134348 +h2534,138:20753781,13841856:0,0,0 +g2534,138:22898774,13841856 +g2534,138:24065314,13841856 +g2534,138:26696584,13841856 +g2534,138:28584020,13841856 +k2534,139:31991566,13841856:591464 +k2534,139:32583029,13841856:591463 +) +(2534,140:20753781,14684941:11829248,513147,126483 +h2534,139:20753781,14684941:0,0,0 +g2534,139:23377842,14684941 +g2534,139:24544382,14684941 +g2534,139:25726651,14684941 +k2534,140:30044164,14684941:2538866 +k2534,140:32583029,14684941:2538865 +) +(2534,141:20753781,15528025:11829248,513147,126483 +h2534,140:20753781,15528025:0,0,0 +g2534,140:21900661,15528025 +g2534,140:23688483,15528025 +k2534,141:28733445,15528025:3849585 +k2534,141:32583029,15528025:3849584 +) +(2534,142:20753781,16371109:11829248,513147,134348 +h2534,141:20753781,16371109:0,0,0 +g2534,141:23820865,16371109 +g2534,141:24990682,16371109 +g2534,141:26558958,16371109 +g2534,141:28127234,16371109 +g2534,141:29695510,16371109 +k2534,142:31736958,16371109:846071 +k2534,142:32583029,16371109:846071 +) +(2534,143:20753781,17214194:11829248,513147,134348 +h2534,142:20753781,17214194:0,0,0 +g2534,142:24158376,17214194 +g2534,142:27332284,17214194 +g2534,142:29727624,17214194 +k2534,142:32583029,17214194:1287784 +) +(2534,143:23375221,18055682:9207808,505283,102891 +g2534,142:26564202,18055682 +k2534,143:29972075,18055682:2610955 +k2534,143:32583029,18055682:2610954 +) +(2534,144:20753781,18898766:11829248,485622,102891 +h2534,143:20753781,18898766:0,0,0 +g2534,143:24167551,18898766 +g2534,143:25735827,18898766 +g2534,143:27304103,18898766 +k2534,144:30541255,18898766:2041775 +k2534,144:32583029,18898766:2041774 +) +(2534,145:20753781,19741850:11829248,513147,134348 +h2534,144:20753781,19741850:0,0,0 +g2534,144:23648506,19741850 +g2534,144:27250364,19741850 +g2534,144:28065631,19741850 +g2534,144:29283945,19741850 +k2534,144:32583029,19741850:214960 +) +(2534,145:23375221,20583338:9207808,485622,11795 +k2534,145:28576814,20583338:4006216 +k2534,145:32583029,20583338:4006215 +) +(2534,146:20753781,21426423:11829248,513147,7863 +h2534,145:20753781,21426423:0,0,0 +k2534,146:28181304,21426423:4401726 +k2534,146:32583029,21426423:4401725 +) +(2534,147:20753781,22269507:11829248,485622,134348 +h2534,146:20753781,22269507:0,0,0 +r2534,146:20753781,22269507:0,619970,134348 +g2534,146:22064501,22269507 +g2534,146:22064501,22269507 +g2534,146:25840030,22269507 +k2534,147:29809218,22269507:2773811 +k2534,147:32583029,22269507:2773811 +) +(2534,148:20753781,23112592:11829248,505283,102891 +h2534,147:20753781,23112592:0,0,0 +r2534,147:20753781,23112592:0,608174,102891 +g2534,147:22064501,23112592 +g2534,147:22064501,23112592 +g2534,147:23697658,23112592 +g2534,147:24515547,23112592 +k2534,148:29146977,23112592:3436053 +k2534,148:32583029,23112592:3436052 +) +(2534,149:20753781,23955676:11829248,513147,134348 +h2534,148:20753781,23955676:0,0,0 +r2534,148:20753781,23955676:0,647495,134348 +g2534,148:22064501,23955676 +g2534,148:22064501,23955676 +g2534,148:24867475,23955676 +g2534,148:26523569,23955676 +g2534,148:28091845,23955676 +k2534,149:30935126,23955676:1647904 +k2534,149:32583029,23955676:1647903 +) +(2534,150:20753781,24798760:11829248,513147,134348 +h2534,149:20753781,24798760:0,0,0 +g2534,149:23228420,24798760 +k2534,150:29107000,24798760:3476030 +k2534,150:32583029,24798760:3476029 +) +(2534,151:20753781,25641845:11829248,505283,134348 +h2534,150:20753781,25641845:0,0,0 +r2534,150:20753781,25641845:0,639631,134348 +g2534,150:22064501,25641845 +g2534,150:22064501,25641845 +g2534,150:24565354,25641845 +g2534,150:25209572,25641845 +g2534,150:27078658,25641845 +k2534,151:30428532,25641845:2154497 +k2534,151:32583029,25641845:2154497 +) +(2534,152:20753781,26484929:11829248,513147,134348 +h2534,151:20753781,26484929:0,0,0 +r2534,151:20753781,26484929:0,647495,134348 +g2534,151:22064501,26484929 +g2534,151:22064501,26484929 +g2534,151:25166320,26484929 +g2534,151:26024841,26484929 +g2534,151:29116829,26484929 +k2534,152:31447618,26484929:1135412 +k2534,152:32583029,26484929:1135411 +) +(2534,153:20753781,27328013:11829248,505283,126483 +h2534,152:20753781,27328013:0,0,0 +r2534,152:20753781,27328013:0,631766,126483 +g2534,152:22064501,27328013 +g2534,152:22064501,27328013 +g2534,152:26777850,27328013 +g2534,152:27659964,27328013 +g2534,152:28477853,27328013 +k2534,153:31128130,27328013:1454900 +k2534,153:32583029,27328013:1454899 +) +(2534,154:20753781,28171098:11829248,513147,134348 +h2534,153:20753781,28171098:0,0,0 +r2534,153:20753781,28171098:0,647495,134348 +g2534,153:22064501,28171098 +g2534,153:22064501,28171098 +g2534,153:23546925,28171098 +g2534,153:26979045,28171098 +g2534,153:27837566,28171098 +g2534,153:29599829,28171098 +k2534,154:31689118,28171098:893912 +k2534,154:32583029,28171098:893911 +) +(2534,155:20753781,29014182:11829248,505283,134348 +h2534,154:20753781,29014182:0,0,0 +r2534,154:20753781,29014182:0,639631,134348 +g2534,154:22064501,29014182 +g2534,154:22064501,29014182 +g2534,154:24223256,29014182 +g2534,154:27093732,29014182 +g2534,154:31645207,29014182 +k2534,154:32583029,29014182:321784 +) +(2534,155:23375221,29855670:9207808,477757,102891 +g2534,154:24193110,29855670 +k2534,155:28985758,29855670:3597271 +k2534,155:32583029,29855670:3597271 +) +(2534,156:20753781,30698754:11829248,505283,134348 +h2534,155:20753781,30698754:0,0,0 +r2534,155:20753781,30698754:0,639631,134348 +g2534,155:22064501,30698754 +g2534,155:22064501,30698754 +g2534,155:24843882,30698754 +g2534,155:29348826,30698754 +k2534,156:31563616,30698754:1019413 +k2534,156:32583029,30698754:1019413 +) +(2534,157:20753781,31541839:11829248,505283,134348 +h2534,156:20753781,31541839:0,0,0 +r2534,156:20753781,31541839:0,639631,134348 +g2534,156:22064501,31541839 +g2534,156:22064501,31541839 +g2534,156:24961847,31541839 +k2534,157:29370127,31541839:3212903 +k2534,157:32583029,31541839:3212902 +) +(2534,158:20753781,32384923:11829248,505283,126483 +h2534,157:20753781,32384923:0,0,0 +r2534,157:20753781,32384923:0,631766,126483 +g2534,157:22064501,32384923 +g2534,157:22064501,32384923 +g2534,157:23766471,32384923 +g2534,157:26127077,32384923 +g2534,157:26942344,32384923 +g2534,157:28593851,32384923 +g2534,157:29984525,32384923 +k2534,157:32583029,32384923:663881 +) +(2534,158:23375221,33226411:9207808,477757,11795 +k2534,158:28377584,33226411:4205445 +k2534,158:32583029,33226411:4205445 +) +(2534,159:20753781,34069496:11829248,485622,102891 +h2534,158:20753781,34069496:0,0,0 +r2534,158:20753781,34069496:0,588513,102891 +g2534,158:22064501,34069496 +g2534,158:22064501,34069496 +g2534,158:25117168,34069496 +g2534,158:25932435,34069496 +g2534,158:26750324,34069496 +k2534,159:30264365,34069496:2318664 +k2534,159:32583029,34069496:2318664 +) +(2534,160:20753781,34912580:11829248,505283,134348 +h2534,159:20753781,34912580:0,0,0 +r2534,159:20753781,34912580:0,639631,134348 +g2534,159:22064501,34912580 +g2534,159:22064501,34912580 +g2534,159:23282815,34912580 +g2534,159:23927033,34912580 +g2534,159:27142229,34912580 +k2534,160:30460318,34912580:2122712 +k2534,160:32583029,34912580:2122711 +) +(2534,161:20753781,35755664:11829248,505283,134348 +h2534,160:20753781,35755664:0,0,0 +r2534,160:20753781,35755664:0,639631,134348 +g2534,160:22064501,35755664 +g2534,160:22064501,35755664 +g2534,160:23999123,35755664 +g2534,160:25217437,35755664 +g2534,160:25861655,35755664 +g2534,160:29076851,35755664 +k2534,161:31228399,35755664:1354630 +k2534,161:32583029,35755664:1354630 +) +(2534,165:20753781,37280714:11829248,505283,134348 +h2534,164:20753781,37280714:0,0,0 +g2534,164:24645308,37280714 +g2534,164:26657263,37280714 +g2534,164:29348171,37280714 +k2534,165:32324817,37280714:258213 +k2534,165:32583029,37280714:258212 +) +(2534,166:20753781,38123799:11829248,505283,134348 +h2534,165:20753781,38123799:0,0,0 +g2534,165:23259877,38123799 +k2534,166:29148615,38123799:3434415 +k2534,166:32583029,38123799:3434414 +) +(2534,167:20753781,38966883:11829248,505283,126483 +h2534,166:20753781,38966883:0,0,0 +r2534,166:20753781,38966883:0,631766,126483 +g2534,166:22064501,38966883 +g2534,166:22064501,38966883 +g2534,166:23017394,38966883 +g2534,166:24771792,38966883 +g2534,166:27390610,38966883 +k2534,167:30584508,38966883:1998521 +k2534,167:32583029,38966883:1998521 +) +(2534,169:20753781,39809968:11829248,505283,134348 +h2534,167:20753781,39809968:0,0,0 +g2534,167:24460497,39809968 +g2534,167:28019101,39809968 +k2534,168:28019101,39809968:0 +g2534,168:29185641,39809968 +k2534,168:32583029,39809968:494798 +) +(2534,169:23375221,40651456:9207808,513147,134348 +g2534,168:24233742,40651456 +g2534,168:27325730,40651456 +k2534,169:31708123,40651456:874906 +k2534,169:32583029,40651456:874906 +) +(2534,170:20753781,41494540:11829248,505283,134348 +h2534,169:20753781,41494540:0,0,0 +g2534,169:25580507,41494540 +k2534,170:29679457,41494540:2903573 +k2534,170:32583029,41494540:2903572 +) +(2534,171:20753781,42337624:11829248,513147,134348 +h2534,170:20753781,42337624:0,0,0 +g2534,170:23968976,42337624 +k2534,171:28873691,42337624:3709338 +k2534,171:32583029,42337624:3709338 +) +(2534,172:20753781,43180709:11829248,505283,134348 +h2534,171:20753781,43180709:0,0,0 +g2534,171:24735748,43180709 +k2534,172:29257077,43180709:3325952 +k2534,172:32583029,43180709:3325952 +) +(2534,175:20753781,44023793:11829248,505283,134348 +h2534,172:20753781,44023793:0,0,0 +g2534,172:24022061,44023793 +g2534,172:25191878,44023793 +g2534,172:28283211,44023793 +g2534,172:29851487,44023793 +k2534,172:32583029,44023793:1362495 +) +(2534,175:23375221,44865281:9207808,485622,102891 +g2534,172:24943497,44865281 +g2534,172:26511773,44865281 +g2534,172:28080049,44865281 +g2534,173:29648325,44865281 +k2534,173:32583029,44865281:42600 +) +(2534,175:23375221,45706769:9207808,485622,102891 +k2534,173:24942973,45706769:198705 +k2534,173:26510725,45706769:198705 +k2534,173:28078478,45706769:198706 +k2534,173:29646230,45706769:198705 +k2534,173:31213982,45706769:198705 +k2534,173:32583029,45706769:0 +) +] +(2534,177:32583029,45706769:0,355205,126483 +h2534,177:32583029,45706769:420741,355205,126483 +k2534,177:32583029,45706769:-420741 +) +) +] +(2534,177:32583029,45706769:0,0,0 +g2534,177:32583029,45706769 +) +) +] +(2534,177:6630773,47279633:25952256,0,0 +h2534,177:6630773,47279633:25952256,0,0 +) +] +h2534,177:4262630,4025873:0,0,0 +] +!27133 }337 !12 {338 -[1,17320:4262630,47279633:28320399,43253760,0 -(1,17320:4262630,4025873:0,0,0 -[1,17320:-473657,4025873:25952256,0,0 -(1,17320:-473657,-710414:25952256,0,0 -h1,17320:-473657,-710414:0,0,0 -(1,17320:-473657,-710414:0,0,0 -(1,17320:-473657,-710414:0,0,0 -g1,17320:-473657,-710414 -(1,17320:-473657,-710414:65781,0,65781 -g1,17320:-407876,-710414 -[1,17320:-407876,-644633:0,0,0 +[2534,274:4262630,47279633:28320399,43253760,0 +(2534,274:4262630,4025873:0,0,0 +[2534,274:-473657,4025873:11829248,0,0 +(2534,274:-473657,-710414:11829248,0,0 +h2534,274:-473657,-710414:0,0,0 +(2534,274:-473657,-710414:0,0,0 +(2534,274:-473657,-710414:0,0,0 +g2534,274:-473657,-710414 +(2534,274:-473657,-710414:65781,0,65781 +g2534,274:-407876,-710414 +[2534,274:-407876,-644633:0,0,0 ] ) -k1,17320:-473657,-710414:-65781 +k2534,274:-473657,-710414:-65781 ) ) -k1,17320:25478599,-710414:25952256 -g1,17320:25478599,-710414 +k2534,274:11355591,-710414:11829248 +g2534,274:11355591,-710414 ) ] ) -[1,17320:6630773,47279633:25952256,43253760,0 -[1,17320:6630773,4812305:25952256,786432,0 -(1,17320:6630773,4812305:25952256,505283,134348 -(1,17320:6630773,4812305:25952256,505283,134348 -g1,17320:3078558,4812305 -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,2439708:0,1703936,0 -k1,17320:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17320:2537886,2439708:1179648,16384,0 +[2534,274:6630773,47279633:25952256,43253760,0 +[2534,274:6630773,4812305:25952256,786432,0 +(2534,274:6630773,4812305:25952256,505283,11795 +(2534,274:6630773,4812305:25952256,505283,11795 +g2534,274:3078558,4812305 +[2534,274:3078558,4812305:0,0,0 +(2534,274:3078558,2439708:0,1703936,0 +k2534,274:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,274:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17320:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,274:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,2439708:0,1703936,0 -g1,17320:29030814,2439708 -g1,17320:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17320:36151628,1915420:16384,1179648,0 +[2534,274:3078558,4812305:0,0,0 +(2534,274:3078558,2439708:0,1703936,0 +g2534,274:29030814,2439708 +g2534,274:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,274:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17320:37855564,2439708:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,274:37855564,2439708:1179648,16384,0 ) ) -k1,17320:3078556,2439708:-34777008 +k2534,274:3078556,2439708:-34777008 ) ] -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,49800853:0,16384,2228224 -k1,17320:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17320:2537886,49800853:1179648,16384,0 +[2534,274:3078558,4812305:0,0,0 +(2534,274:3078558,49800853:0,16384,2228224 +k2534,274:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,274:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17320:3078558,51504789:16384,1179648,0 +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,274:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] ) ) ) ] -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,49800853:0,16384,2228224 -g1,17320:29030814,49800853 -g1,17320:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17320:36151628,51504789:16384,1179648,0 +[2534,274:3078558,4812305:0,0,0 +(2534,274:3078558,49800853:0,16384,2228224 +g2534,274:29030814,49800853 +g2534,274:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,274:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17320:37855564,49800853:1179648,16384,0 +) +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,274:37855564,49800853:1179648,16384,0 ) ) -k1,17320:3078556,49800853:-34777008 -) -] -g1,17320:6630773,4812305 -g1,17320:6630773,4812305 -g1,17320:10831630,4812305 -k1,17320:31387652,4812305:20556022 -) -) -] -[1,17320:6630773,45706769:25952256,40108032,0 -(1,17320:6630773,45706769:25952256,40108032,0 -(1,17320:6630773,45706769:0,0,0 -g1,17320:6630773,45706769 -) -[1,17320:6630773,45706769:25952256,40108032,0 -(1,17318:7613813,6254097:24969216,505283,134348 -(1,17318:7613813,6254097:-983040,0,0 -g1,17318:6630773,6254097 -g1,17318:5320053,6254097 -g1,17318:4992373,6254097 -(1,17318:4992373,6254097:1310720,0,0 -k1,17318:6303093,6254097:1310720 -) -g1,17318:6630773,6254097 -) -k1,17318:9062288,6254097:221641 -k1,17318:9960893,6254097:221618 -k1,17318:12364295,6254097:221708 -k1,17318:14846318,6254097:221686 -k1,17318:18891262,6254097:221574 -k1,17318:20647034,6254097:221574 -k1,17318:24918733,6254097:221574 -k1,17318:26503456,6254097:221574 -k1,17318:27348411,6254097:221708 -k1,17318:28555646,6254097:221574 -k1,17318:29719106,6254097:221708 -k1,17318:32583029,6254097:0 -) -(1,17318:7613813,7095585:24969216,505283,126483 -g1,17318:8407454,7095585 -g1,17318:9975730,7095585 -g1,17318:11766828,7095585 -g1,17318:15950646,7095585 -g1,17318:17322314,7095585 -g1,17318:18330913,7095585 -g1,17318:19545295,7095585 -g1,17318:20715112,7095585 -g1,17318:22283388,7095585 -k1,17318:32583029,7095585:8723500 -g1,17318:32583029,7095585 -) -(1,17318:7613813,7937073:24969216,513147,134348 -(1,17318:7613813,7937073:-983040,0,0 -g1,17318:6630773,7937073 -g1,17318:5320053,7937073 -g1,17318:4992373,7937073 -(1,17318:4992373,7937073:1310720,0,0 -k1,17318:6303093,7937073:1310720 -) -g1,17318:6630773,7937073 -) -k1,17318:8882183,7937073:229624 -k1,17318:9790729,7937073:229593 -k1,17318:10553131,7937073:229594 -k1,17318:12964539,7937073:229714 -k1,17318:13264681,7937073:-13 -k1,17318:13264694,7937073:13 -k1,17318:17951331,7937073:229533 -k1,17318:18840156,7937073:229533 -k1,17318:21843173,7937073:229533 -k1,17318:25217123,7937073:229533 -k1,17318:27514972,7937073:229533 -k1,17318:28935950,7937073:229533 -k1,17318:32583029,7937073:0 -) -(1,17318:7613813,8778561:24969216,513147,126483 -g1,17318:8429080,8778561 -g1,17318:11182902,8778561 -g1,17318:12041423,8778561 -g1,17318:16096790,8778561 -g1,17318:17097524,8778561 -g1,17318:20568966,8778561 -g1,17318:21738783,8778561 -g1,17318:22953165,8778561 -g1,17318:25870828,8778561 -g1,17318:27242496,8778561 -g1,17318:28251095,8778561 -g1,17318:29044736,8778561 -k1,17318:32583029,8778561:1962152 -g1,17318:32583029,8778561 -) -(1,17318:7613813,9620049:24969216,513147,126483 -(1,17318:7613813,9620049:-983040,0,0 -g1,17318:6630773,9620049 -g1,17318:5320053,9620049 -g1,17318:4992373,9620049 -(1,17318:4992373,9620049:1310720,0,0 -k1,17318:6303093,9620049:1310720 -) -g1,17318:6630773,9620049 -) -k1,17318:8774329,9620049:251532 -k1,17318:9570412,9620049:251479 -k1,17318:10440552,9620049:251480 -k1,17318:12873934,9620049:251688 -k1,17318:14312822,9620049:251376 -k1,17318:16472605,9620049:251375 -k1,17318:19058373,9620049:251376 -k1,17318:19925787,9620049:251376 -k1,17318:24098836,9620049:251375 -k1,17318:28294480,9620049:251688 -k1,17318:31519380,9620049:251532 -k1,17318:32583029,9620049:0 -) -(1,17318:7613813,10461537:24969216,505283,126483 -g1,17318:10637644,10461537 -g1,17318:12682367,10461537 -g1,17318:14076973,10461537 -g1,17318:15291355,10461537 -g1,17318:17082453,10461537 -g1,17318:21937360,10461537 -g1,17318:23309028,10461537 -g1,17318:24317627,10461537 -g1,17318:25111268,10461537 -k1,17318:32583029,10461537:5895620 -g1,17318:32583029,10461537 -) -(1,17318:7613813,11303025:24969216,505283,126483 -(1,17318:7613813,11303025:-983040,0,0 -g1,17318:6630773,11303025 -g1,17318:5320053,11303025 -g1,17318:4992373,11303025 -(1,17318:4992373,11303025:1310720,0,0 -k1,17318:6303093,11303025:1310720 -) -g1,17318:6630773,11303025 -) -k1,17318:9866757,11303025:202978 -k1,17318:10849609,11303025:202974 -k1,17318:11718429,11303025:202974 -k1,17318:13112840,11303025:202966 -k1,17318:13888599,11303025:202974 -k1,17318:14768560,11303025:202974 -k1,17318:16952025,11303025:202967 -k1,17318:19336708,11303025:202989 -k1,17318:21933049,11303025:202966 -k1,17318:24539221,11303025:202967 -k1,17318:27473073,11303025:202967 -k1,17318:29039188,11303025:202966 -k1,17318:29775640,11303025:202989 -k1,17318:31222502,11303025:202989 -k1,17318:32583029,11303025:0 -) -(1,17318:7613813,12144513:24969216,505283,134348 -g1,17318:9506492,12144513 -g1,17318:12569644,12144513 -g1,17318:14360742,12144513 -g1,17318:19183536,12144513 -g1,17318:20555204,12144513 -g1,17318:21563803,12144513 -g1,17318:22357444,12144513 -k1,17318:32583029,12144513:8649444 -g1,17318:32583029,12144513 -) -(1,17318:7613813,12986001:24969216,505283,134348 -(1,17318:7613813,12986001:-983040,0,0 -g1,17318:6630773,12986001 -g1,17318:5320053,12986001 -g1,17318:4992373,12986001 -(1,17318:4992373,12986001:1310720,0,0 -k1,17318:6303093,12986001:1310720 -) -g1,17318:6630773,12986001 -) -k1,17318:10050834,12986001:322174 -k1,17318:11051840,12986001:322053 -k1,17318:13556076,12986001:322542 -k1,17318:14327460,12986001:321807 -k1,17318:17708567,12986001:322542 -k1,17318:20478145,12986001:321808 -k1,17318:22863105,12986001:322542 -k1,17318:24777394,12986001:322420 -k1,17318:30279168,12986001:321808 -k1,17318:31773659,12986001:322052 -k1,17318:32583029,12986001:0 -) -(1,17318:7613813,13827489:24969216,505283,126483 -g1,17318:8828195,13827489 -g1,17318:10396471,13827489 -k1,17318:32583028,13827489:20610416 -g1,17318:32583028,13827489 -) -(1,17318:7613813,14668977:24969216,505283,126483 -(1,17318:7613813,14668977:-983040,0,0 -g1,17318:6630773,14668977 -g1,17318:5320053,14668977 -g1,17318:4992373,14668977 -(1,17318:4992373,14668977:1310720,0,0 -k1,17318:6303093,14668977:1310720 -) -g1,17318:6630773,14668977 -) -k1,17318:10064044,14668977:335384 -k1,17318:11078246,14668977:335249 -k1,17318:13595731,14668977:335791 -k1,17318:17053499,14668977:334977 -k1,17318:18012537,14668977:335791 -k1,17318:19581558,14668977:334978 -k1,17318:20859101,14668977:335791 -k1,17318:23233559,14668977:334978 -k1,17318:24020734,14668977:334977 -k1,17318:26638986,14668977:334978 -k1,17318:28109861,14668977:335791 -k1,17318:29640216,14668977:334978 -k1,17318:30991160,14668977:335791 -k1,17318:32583029,14668977:0 -) -(1,17318:7613813,15510465:24969216,505283,126483 -g1,17318:11797631,15510465 -g1,17318:13169299,15510465 -g1,17318:14177898,15510465 -g1,17318:15392280,15510465 -g1,17318:16960556,15510465 -k1,17318:32583029,15510465:14046332 -g1,17318:32583029,15510465 -) -(1,17318:7613813,16351953:24969216,513147,126483 -(1,17318:7613813,16351953:-983040,0,0 -g1,17318:6630773,16351953 -g1,17318:5320053,16351953 -g1,17318:4992373,16351953 -(1,17318:4992373,16351953:1310720,0,0 -k1,17318:6303093,16351953:1310720 -) -g1,17318:6630773,16351953 -) -k1,17318:9960289,16351953:231629 -k1,17318:10870838,16351953:231596 -k1,17318:12293815,16351953:231532 -k1,17318:13178805,16351953:231596 -k1,17318:16995812,16351953:231532 -k1,17318:19409232,16351953:231726 -k1,17318:20090341,16351953:231532 -k1,17318:21245930,16351953:231531 -k1,17318:23011660,16351953:231532 -k1,17318:25697054,16351953:231726 -k1,17318:28376356,16351953:231532 -k1,17318:29543087,16351953:231532 -k1,17318:30991160,16351953:231725 -k1,17318:32583029,16351953:0 -) -(1,17318:7613813,17193441:24969216,505283,126483 -g1,17318:11797631,17193441 -g1,17318:13169299,17193441 -g1,17318:14177898,17193441 -g1,17318:15392280,17193441 -g1,17318:16960556,17193441 -g1,17318:18528832,17193441 -k1,17318:32583029,17193441:12478056 -g1,17318:32583029,17193441 -) -(1,17318:7613813,18034929:24969216,513147,134348 -(1,17318:7613813,18034929:-983040,0,0 -g1,17318:6630773,18034929 -g1,17318:5320053,18034929 -g1,17318:4992373,18034929 -(1,17318:4992373,18034929:1310720,0,0 -k1,17318:6303093,18034929:1310720 -) -g1,17318:6630773,18034929 -) -k1,17318:10007355,18034929:278695 -k1,17318:10964924,18034929:278616 -k1,17318:12434827,18034929:278458 -k1,17318:13342589,18034929:278616 -k1,17318:15774560,18034929:278458 -k1,17318:18235187,18034929:278933 -k1,17318:21062736,18034929:278854 -k1,17318:23682139,18034929:278457 -k1,17318:26771436,18034929:278458 -k1,17318:27973952,18034929:278458 -k1,17318:29786608,18034929:278458 -k1,17318:32583029,18034929:0 -) -(1,17318:7613813,18876417:24969216,505283,134348 -k1,17318:9014133,18876417:166277 -k1,17318:10122359,18876417:166474 -k1,17318:13152757,18876417:166475 -k1,17318:14420694,18876417:166277 -k1,17318:15155168,18876417:166277 -k1,17318:16690689,18876417:166474 -k1,17318:18448999,18876417:166441 -k1,17318:24647211,18876417:166278 -k1,17318:25985993,18876417:166343 -k1,17318:26961640,18876417:166277 -k1,17318:28143136,18876417:166343 -k1,17318:29678559,18876417:166376 -k1,17318:31213982,18876417:166376 -k1,17318:32583029,18876417:0 -) -(1,17318:7613813,19717905:24969216,505283,95026 -k1,17318:32583030,19717905:23393076 -g1,17318:32583030,19717905 -) -(1,17318:7613813,20559393:24969216,505283,126483 -(1,17318:7613813,20559393:-983040,0,0 -g1,17318:6630773,20559393 -g1,17318:5320053,20559393 -g1,17318:4992373,20559393 -(1,17318:4992373,20559393:1310720,0,0 -k1,17318:6303093,20559393:1310720 -) -g1,17318:6630773,20559393 -) -k1,17318:8788540,20559393:168094 -k1,17318:9485479,20559393:168063 -k1,17318:10319387,20559393:168062 -k1,17318:12669268,20559393:168187 -k1,17318:16599691,20559393:168001 -k1,17318:19370781,20559393:168000 -k1,17318:21862219,20559393:168187 -k1,17318:24069699,20559393:168000 -k1,17318:24689898,20559393:168001 -k1,17318:27141172,20559393:168000 -k1,17318:28444443,20559393:168187 -k1,17318:29807820,20559393:168000 -k1,17318:30991160,20559393:168187 -k1,17318:32583029,20559393:0 -) -(1,17318:7613813,21400881:24969216,505283,126483 -g1,17318:11797631,21400881 -g1,17318:13169299,21400881 -g1,17318:14177898,21400881 -g1,17318:14971539,21400881 -k1,17318:32583029,21400881:16035349 -g1,17318:32583029,21400881 -) -(1,17318:7613813,22242369:24969216,505283,126483 -(1,17318:7613813,22242369:-983040,0,0 -g1,17318:6630773,22242369 -g1,17318:5320053,22242369 -g1,17318:4992373,22242369 -(1,17318:4992373,22242369:1310720,0,0 -k1,17318:6303093,22242369:1310720 -) -g1,17318:6630773,22242369 -) -k1,17318:8019929,22242369:236378 -k1,17318:8874275,22242369:236341 -k1,17318:11292459,22242369:236490 -k1,17318:14338254,22242369:236267 -k1,17318:18070867,22242369:236267 -k1,17318:19670284,22242369:236268 -k1,17318:20356128,22242369:236267 -k1,17318:21802845,22242369:236267 -k1,17318:23723610,22242369:236490 -k1,17318:25156564,22242369:236267 -k1,17318:25837820,22242369:236267 -k1,17318:28117723,22242369:236490 -k1,17318:31391584,22242369:236267 -k1,17318:32583029,22242369:0 -) -(1,17318:7613813,23083857:24969216,505283,126483 -g1,17318:10949595,23083857 -g1,17318:11743236,23083857 -g1,17318:13311512,23083857 -g1,17318:15102610,23083857 -g1,17318:19286428,23083857 -g1,17318:20658096,23083857 -g1,17318:21666695,23083857 -g1,17318:22881077,23083857 -g1,17318:23652435,23083857 -g1,17318:24822252,23083857 -k1,17318:32583029,23083857:6583095 -g1,17318:32583029,23083857 -) -(1,17318:7613813,23925345:24969216,505283,134348 -(1,17318:7613813,23925345:-983040,0,0 -g1,17318:6630773,23925345 -g1,17318:5320053,23925345 -g1,17318:4992373,23925345 -(1,17318:4992373,23925345:1310720,0,0 -k1,17318:6303093,23925345:1310720 -) -g1,17318:6630773,23925345 -) -(1,17318:6630773,23925345:983040,211026,0 -k1,17318:7613813,23925345:327680 -) -k1,17318:9945891,23925345:150384 -k1,17318:13468053,23925345:150335 -k1,17318:16839238,23925345:150090 -k1,17318:18775840,23925345:150091 -k1,17318:20136380,23925345:150090 -k1,17318:23303092,23925345:150090 -k1,17318:26949528,23925345:150090 -k1,17318:28462768,23925345:150091 -k1,17318:29062435,23925345:150090 -k1,17318:32583029,23925345:0 -) -(1,17318:7613813,24766833:24969216,505283,126483 -g1,17318:10850636,24766833 -g1,17318:12241310,24766833 -g1,17318:15577092,24766833 -g1,17318:17368190,24766833 -g1,17318:22747385,24766833 -g1,17318:24119053,24766833 -g1,17318:25127652,24766833 -g1,17318:25921293,24766833 -k1,17318:32583029,24766833:5484054 -g1,17318:32583029,24766833 -) -(1,17318:7613813,25608321:24969216,505283,126483 -(1,17318:7613813,25608321:-983040,0,0 -g1,17318:6630773,25608321 -g1,17318:5320053,25608321 -g1,17318:4992373,25608321 -(1,17318:4992373,25608321:1310720,0,0 -k1,17318:6303093,25608321:1310720 -) -g1,17318:6630773,25608321 -) -k1,17318:7929393,25608321:145842 -k1,17318:8866909,25608321:145841 -k1,17318:9462930,25608321:145789 -k1,17318:10058950,25608321:145788 -k1,17318:12469061,25608321:145842 -k1,17318:13806187,25608321:145681 -k1,17318:14605370,25608321:145789 -k1,17318:18336526,25608321:145681 -k1,17318:20664221,25608321:146001 -k1,17318:21259479,25608321:145681 -k1,17318:24926075,25608321:146002 -k1,17318:28109350,25608321:145681 -k1,17318:29446476,25608321:145681 -k1,17318:32583029,25608321:0 -) -(1,17318:7613813,26449809:24969216,505283,126483 -g1,17318:9008419,26449809 -g1,17318:10222801,26449809 -g1,17318:12013899,26449809 -g1,17318:16197717,26449809 -g1,17318:17569385,26449809 -g1,17318:18577984,26449809 -g1,17318:19371625,26449809 -k1,17318:32583029,26449809:12033722 -g1,17318:32583029,26449809 -) -(1,17318:7613813,27291297:24969216,513147,126483 -(1,17318:7613813,27291297:-983040,0,0 -g1,17318:6630773,27291297 -g1,17318:5320053,27291297 -g1,17318:4992373,27291297 -(1,17318:4992373,27291297:1310720,0,0 -k1,17318:6303093,27291297:1310720 -) -g1,17318:6630773,27291297 -) -k1,17318:9359159,27291297:386129 -k1,17318:10482384,27291297:385945 -k1,17318:12059401,27291297:385572 -k1,17318:13074491,27291297:385944 -k1,17318:15694185,27291297:385572 -k1,17318:17560587,27291297:385944 -k1,17318:19921876,27291297:386689 -k1,17318:20222018,27291297:-13 -k1,17318:20222031,27291297:13 -k1,17318:21510034,27291297:385572 -k1,17318:24842760,27291297:385572 -k1,17318:26622283,27291297:385572 -k1,17318:29385501,27291297:385572 -k1,17318:30390850,27291297:386689 -k1,17318:32583029,27291297:0 -) -(1,17318:7613813,28132785:24969216,505283,126483 -k1,17318:8746732,28132785:331414 -k1,17318:12094110,28132785:330756 -k1,17318:17433127,28132785:330756 -k1,17318:20876843,28132785:330756 -k1,17318:22750710,28132785:331149 -k1,17318:24096882,28132785:331019 -k1,17318:27320530,28132785:331544 -k1,17318:28988878,28132785:331414 -$1,17318:28988878,28132785 -k1,17318:29923474,28132785:144232 -k1,17318:30462887,28132785:144231 -k1,17318:32187847,28132785:144232 -k1,17318:32583029,28132785:0 -) -(1,17318:7613813,28974273:24969216,485622,126484 -g1,17318:13936725,28974273 -g1,17318:14331907,28974273 -$1,17318:14727089,28974273 -k1,17318:32583029,28974273:17682270 -g1,17318:32583029,28974273 -) -(1,17318:7613813,29815761:24969216,505283,134348 -(1,17318:7613813,29815761:-983040,0,0 -g1,17318:6630773,29815761 -g1,17318:5320053,29815761 -g1,17318:4992373,29815761 -(1,17318:4992373,29815761:1310720,0,0 -k1,17318:6303093,29815761:1310720 -) -g1,17318:6630773,29815761 -) -k1,17318:8628829,29815761:291498 -k1,17318:9581494,29815761:291407 -k1,17318:10579470,29815761:291498 -k1,17318:11415481,29815761:291407 -k1,17318:12372734,29815761:291407 -k1,17318:14207605,29815761:291498 -k1,17318:15690273,29815761:291223 -k1,17318:16526284,29815761:291407 -k1,17318:19629002,29815761:291223 -k1,17318:22102470,29815761:291774 -k1,17318:22883247,29815761:291223 -k1,17318:26431609,29815761:291223 -k1,17318:28558495,29815761:291223 -k1,17318:29449372,29815761:291223 -k1,17318:30364393,29815761:291774 -k1,17318:31641277,29815761:291223 -k1,17318:32583029,29815761:0 -) -(1,17318:7613813,30657249:24969216,505283,134348 -g1,17318:10676965,30657249 -g1,17318:11470606,30657249 -g1,17318:13038882,30657249 -g1,17318:14829980,30657249 -g1,17318:19013798,30657249 -g1,17318:20385466,30657249 -g1,17318:21394065,30657249 -g1,17318:22187706,30657249 -k1,17318:32583029,30657249:8819182 -g1,17318:32583029,30657249 -) -] -(1,17320:32583029,45706769:0,0,0 -g1,17320:32583029,45706769 -) -) -] -(1,17320:6630773,47279633:25952256,0,0 -h1,17320:6630773,47279633:25952256,0,0 -) -] -h1,17320:4262630,4025873:0,0,0 -] -!18541 +k2534,274:3078556,49800853:-34777008 +) +] +g2534,274:6630773,4812305 +g2534,274:6630773,4812305 +g2534,274:9313817,4812305 +g2534,274:11188146,4812305 +k2534,274:31387652,4812305:20199506 +) +) +] +[2534,274:6630773,45706769:25952256,40108032,0 +(2534,274:6630773,45706769:25952256,40108032,0 +(2534,274:6630773,45706769:0,0,0 +g2534,274:6630773,45706769 +) +[2534,274:6630773,45706769:25952256,40108032,0 +(2534,274:6630773,45706769:25952256,40108032,134348 +[2534,274:6630773,45706769:11829248,40108032,102891 +(2534,175:9252213,6254097:9207808,485622,102891 +k2534,173:10819965,6254097:198705 +k2534,173:12387717,6254097:198705 +k2534,174:13955470,6254097:198706 +k2534,174:15523222,6254097:198705 +k2534,174:17090974,6254097:198705 +k2534,174:18460021,6254097:0 +) +(2534,175:9252213,7095585:9207808,485622,102891 +g2534,174:10820489,7095585 +k2534,175:15237944,7095585:3222078 +k2534,175:18460021,7095585:3222077 +) +(2534,176:6630773,7954793:11829248,505283,134348 +h2534,175:6630773,7954793:0,0,0 +g2534,175:10117943,7954793 +g2534,175:11686219,7954793 +g2534,175:13254495,7954793 +g2534,175:14822771,7954793 +k2534,176:17239085,7954793:1220937 +k2534,176:18460021,7954793:1220936 +) +(2534,177:6630773,8814000:11829248,505283,134348 +h2534,176:6630773,8814000:0,0,0 +g2534,176:9834827,8814000 +k2534,177:14745113,8814000:3714909 +k2534,177:18460021,8814000:3714908 +) +(2534,178:6630773,9673208:11829248,505283,134348 +h2534,177:6630773,9673208:0,0,0 +g2534,177:9518944,9673208 +k2534,178:14587171,9673208:3872850 +k2534,178:18460021,9673208:3872850 +) +(2534,179:6630773,10532415:11829248,505283,134348 +h2534,178:6630773,10532415:0,0,0 +g2534,178:9491419,10532415 +k2534,179:14573409,10532415:3886613 +k2534,179:18460021,10532415:3886612 +) +(2534,180:6630773,11391623:11829248,485622,102891 +h2534,179:6630773,11391623:0,0,0 +g2534,179:7912001,11391623 +g2534,179:9081818,11391623 +k2534,180:14368608,11391623:4091413 +k2534,180:18460021,11391623:4091413 +) +(2534,181:6630773,12250831:11829248,505283,102891 +h2534,180:6630773,12250831:0,0,0 +g2534,180:9262043,12250831 +k2534,181:14458721,12250831:4001301 +k2534,181:18460021,12250831:4001300 +) +(2534,182:6630773,13110038:11829248,505283,134348 +h2534,181:6630773,13110038:0,0,0 +g2534,181:8412041,13110038 +g2534,181:9578581,13110038 +g2534,181:13470108,13110038 +g2534,181:15482063,13110038 +k2534,182:18130046,13110038:329975 +k2534,182:18460021,13110038:329975 +) +(2534,183:6630773,13969246:11829248,485622,102891 +h2534,182:6630773,13969246:0,0,0 +g2534,182:8124339,13969246 +g2534,182:8850477,13969246 +k2534,183:13854479,13969246:4605543 +k2534,183:18460021,13969246:4605542 +) +(2534,184:6630773,14828454:11829248,513147,134348 +h2534,183:6630773,14828454:0,0,0 +g2534,183:9732592,14828454 +g2534,183:10591113,14828454 +g2534,183:13683101,14828454 +g2534,183:15251377,14828454 +k2534,184:17453388,14828454:1006634 +k2534,184:18460021,14828454:1006633 +) +(2534,185:6630773,15687661:11829248,485622,102891 +h2534,184:6630773,15687661:0,0,0 +r2534,184:6630773,15687661:0,588513,102891 +g2534,184:7941493,15687661 +g2534,184:7941493,15687661 +g2534,184:12104995,15687661 +k2534,185:16641725,15687661:1818297 +k2534,185:18460021,15687661:1818296 +) +(2534,186:6630773,16546869:11829248,505283,102891 +h2534,185:6630773,16546869:0,0,0 +r2534,185:6630773,16546869:0,608174,102891 +g2534,185:7941493,16546869 +g2534,185:7941493,16546869 +g2534,185:11024961,16546869 +g2534,185:15136034,16546869 +g2534,185:16704310,16546869 +k2534,186:18179854,16546869:280167 +k2534,186:18460021,16546869:280167 +) +(2534,187:6630773,17406076:11829248,513147,102891 +h2534,186:6630773,17406076:0,0,0 +r2534,186:6630773,17406076:0,616038,102891 +g2534,186:7941493,17406076 +g2534,186:7941493,17406076 +g2534,186:9756840,17406076 +g2534,186:11147514,17406076 +g2534,186:12187570,17406076 +g2534,186:14462980,17406076 +k2534,187:17820717,17406076:639304 +k2534,187:18460021,17406076:639304 +) +(2534,188:6630773,18265284:11829248,505283,134348 +h2534,187:6630773,18265284:0,0,0 +r2534,187:6630773,18265284:0,639631,134348 +g2534,187:7941493,18265284 +g2534,187:7941493,18265284 +g2534,187:10523611,18265284 +g2534,187:13886263,18265284 +k2534,188:17532359,18265284:927663 +k2534,188:18460021,18265284:927662 +) +(2534,189:6630773,19124492:11829248,505283,126483 +h2534,188:6630773,19124492:0,0,0 +r2534,188:6630773,19124492:0,631766,126483 +g2534,188:7941493,19124492 +g2534,188:7941493,19124492 +g2534,188:11066249,19124492 +g2534,188:13755846,19124492 +k2534,189:17467150,19124492:992871 +k2534,189:18460021,19124492:992871 +) +(2534,190:6630773,19983699:11829248,505283,102891 +h2534,189:6630773,19983699:0,0,0 +r2534,189:6630773,19983699:0,608174,102891 +g2534,189:7941493,19983699 +g2534,189:7941493,19983699 +g2534,189:11711123,19983699 +g2534,189:13986533,19983699 +k2534,190:17582494,19983699:877528 +k2534,190:18460021,19983699:877527 +) +(2534,191:6630773,20842907:11829248,505283,102891 +h2534,190:6630773,20842907:0,0,0 +r2534,190:6630773,20842907:0,608174,102891 +g2534,190:7941493,20842907 +g2534,190:7941493,20842907 +g2534,190:12052566,20842907 +k2534,191:15853982,20842907:2606039 +k2534,191:18460021,20842907:2606039 +) +(2534,192:6630773,21702115:11829248,505283,134348 +h2534,191:6630773,21702115:0,0,0 +r2534,191:6630773,21702115:0,639631,134348 +g2534,191:7941493,21702115 +g2534,191:7941493,21702115 +g2534,191:10713010,21702115 +g2534,191:11268099,21702115 +g2534,191:13627395,21702115 +k2534,192:17402925,21702115:1057097 +k2534,192:18460021,21702115:1057096 +) +(2534,193:6630773,22561322:11829248,505283,102891 +h2534,192:6630773,22561322:0,0,0 +r2534,192:6630773,22561322:0,608174,102891 +g2534,192:7941493,22561322 +g2534,192:7941493,22561322 +g2534,192:9703756,22561322 +k2534,193:14679577,22561322:3780444 +k2534,193:18460021,22561322:3780444 +) +(2534,194:6630773,23420530:11829248,505283,102891 +h2534,193:6630773,23420530:0,0,0 +r2534,193:6630773,23420530:0,608174,102891 +g2534,193:7941493,23420530 +g2534,193:7941493,23420530 +g2534,193:10666480,23420530 +g2534,193:12941890,23420530 +k2534,194:17060172,23420530:1399849 +k2534,194:18460021,23420530:1399849 +) +(2534,195:6630773,24279737:11829248,505283,102891 +h2534,194:6630773,24279737:0,0,0 +r2534,194:6630773,24279737:0,608174,102891 +g2534,194:7941493,24279737 +g2534,194:7941493,24279737 +g2534,194:11183559,24279737 +k2534,195:16181007,24279737:2279015 +k2534,195:18460021,24279737:2279014 +) +(2534,196:6630773,25138945:11829248,513147,102891 +h2534,195:6630773,25138945:0,0,0 +r2534,195:6630773,25138945:0,616038,102891 +g2534,195:7941493,25138945 +g2534,195:7941493,25138945 +g2534,195:10203140,25138945 +k2534,196:15690797,25138945:2769224 +k2534,196:18460021,25138945:2769224 +) +(2534,197:6630773,25998153:11829248,513147,102891 +h2534,196:6630773,25998153:0,0,0 +r2534,196:6630773,25998153:0,616038,102891 +g2534,196:7941493,25998153 +g2534,196:7941493,25998153 +g2534,196:10836218,25998153 +g2534,196:13732254,25998153 +k2534,197:17455354,25998153:1004667 +k2534,197:18460021,25998153:1004667 +) +(2534,198:6630773,26857360:11829248,485622,134348 +h2534,197:6630773,26857360:0,0,0 +r2534,197:6630773,26857360:0,619970,134348 +g2534,197:7941493,26857360 +g2534,197:7941493,26857360 +g2534,197:11821879,26857360 +g2534,197:13390155,26857360 +k2534,198:17284305,26857360:1175717 +k2534,198:18460021,26857360:1175716 +) +(2534,199:6630773,27716568:11829248,505283,126483 +h2534,198:6630773,27716568:0,0,0 +r2534,198:6630773,27716568:0,631766,126483 +g2534,198:7941493,27716568 +g2534,198:7941493,27716568 +g2534,198:10600944,27716568 +g2534,198:12416291,27716568 +g2534,198:14691701,27716568 +k2534,199:17173550,27716568:1286472 +k2534,199:18460021,27716568:1286471 +) +(2534,200:6630773,28575775:11829248,505283,126483 +h2534,199:6630773,28575775:0,0,0 +r2534,199:6630773,28575775:0,631766,126483 +g2534,199:7941493,28575775 +g2534,199:7941493,28575775 +g2534,199:11682288,28575775 +g2534,199:14371885,28575775 +k2534,200:17775170,28575775:684852 +k2534,200:18460021,28575775:684851 +) +(2534,201:6630773,29434983:11829248,505283,134348 +h2534,200:6630773,29434983:0,0,0 +r2534,200:6630773,29434983:0,639631,134348 +g2534,200:7941493,29434983 +g2534,200:7941493,29434983 +g2534,200:12125966,29434983 +k2534,200:18460021,29434983:2652898 +) +(2534,201:9252213,30276471:9207808,485622,11795 +k2534,201:15215334,30276471:3244688 +k2534,201:18460021,30276471:3244687 +) +(2534,202:6630773,31135679:11829248,513147,134348 +h2534,201:6630773,31135679:0,0,0 +r2534,201:6630773,31135679:0,647495,134348 +g2534,201:7941493,31135679 +g2534,201:7941493,31135679 +g2534,201:10948284,31135679 +g2534,201:11806805,31135679 +g2534,201:13569068,31135679 +g2534,201:15137344,31135679 +k2534,202:18157899,31135679:302122 +k2534,202:18460021,31135679:302122 +) +(2534,203:6630773,31994886:11829248,505283,126483 +h2534,202:6630773,31994886:0,0,0 +r2534,202:6630773,31994886:0,631766,126483 +g2534,202:7941493,31994886 +g2534,202:7941493,31994886 +g2534,202:9418019,31994886 +g2534,202:13825315,31994886 +k2534,203:17501885,31994886:958137 +k2534,203:18460021,31994886:958136 +) +(2534,204:6630773,32854094:11829248,505283,134348 +h2534,203:6630773,32854094:0,0,0 +r2534,203:6630773,32854094:0,639631,134348 +g2534,203:7941493,32854094 +g2534,203:7941493,32854094 +g2534,203:9748320,32854094 +g2534,203:10633711,32854094 +g2534,203:11277929,32854094 +g2534,203:13940656,32854094 +k2534,204:17559555,32854094:900466 +k2534,204:18460021,32854094:900466 +) +(2534,205:6630773,33713302:11829248,485622,134348 +h2534,204:6630773,33713302:0,0,0 +r2534,204:6630773,33713302:0,619970,134348 +g2534,204:7941493,33713302 +g2534,204:7941493,33713302 +g2534,204:9828929,33713302 +g2534,204:13191581,33713302 +k2534,205:17185018,33713302:1275004 +k2534,205:18460021,33713302:1275003 +) +(2534,206:6630773,34572509:11829248,505283,126483 +h2534,205:6630773,34572509:0,0,0 +r2534,205:6630773,34572509:0,631766,126483 +g2534,205:7941493,34572509 +g2534,205:7941493,34572509 +g2534,205:9805336,34572509 +g2534,205:13916409,34572509 +k2534,206:17547432,34572509:912590 +k2534,206:18460021,34572509:912589 +) +(2534,207:6630773,35431717:11829248,505283,102891 +h2534,206:6630773,35431717:0,0,0 +r2534,206:6630773,35431717:0,608174,102891 +g2534,206:7941493,35431717 +g2534,206:7941493,35431717 +g2534,206:10216903,35431717 +g2534,206:11785179,35431717 +k2534,207:16481817,35431717:1978205 +k2534,207:18460021,35431717:1978204 +) +(2534,208:6630773,36290924:11829248,513147,134348 +h2534,207:6630773,36290924:0,0,0 +r2534,207:6630773,36290924:0,647495,134348 +g2534,207:7941493,36290924 +g2534,207:7941493,36290924 +g2534,207:8735789,36290924 +g2534,207:12616175,36290924 +k2534,208:16135787,36290924:2324235 +k2534,208:18460021,36290924:2324234 +) +(2534,209:6630773,37150132:11829248,505283,102891 +h2534,208:6630773,37150132:0,0,0 +r2534,208:6630773,37150132:0,608174,102891 +g2534,208:7941493,37150132 +g2534,208:7941493,37150132 +g2534,208:9409499,37150132 +g2534,208:11684909,37150132 +k2534,209:15670154,37150132:2789868 +k2534,209:18460021,37150132:2789867 +) +(2534,210:6630773,38009340:11829248,485622,102891 +h2534,209:6630773,38009340:0,0,0 +r2534,209:6630773,38009340:0,588513,102891 +g2534,209:7941493,38009340 +g2534,209:7941493,38009340 +g2534,209:11167830,38009340 +g2534,209:12736106,38009340 +k2534,210:16957280,38009340:1502741 +k2534,210:18460021,38009340:1502741 +) +(2534,211:6630773,38868547:11829248,513147,134348 +h2534,210:6630773,38868547:0,0,0 +r2534,210:6630773,38868547:0,647495,134348 +g2534,210:7941493,38868547 +g2534,210:7941493,38868547 +g2534,210:11072147,38868547 +g2534,210:11930668,38868547 +g2534,210:13407194,38868547 +k2534,210:18460021,38868547:2589329 +) +(2534,211:9252213,39710035:9207808,485622,11795 +k2534,211:15215334,39710035:3244688 +k2534,211:18460021,39710035:3244687 +) +(2534,212:6630773,40569243:11829248,485622,126483 +h2534,211:6630773,40569243:0,0,0 +r2534,211:6630773,40569243:0,612105,126483 +g2534,211:7941493,40569243 +g2534,211:7941493,40569243 +g2534,211:11131130,40569243 +g2534,211:14027166,40569243 +k2534,212:17602810,40569243:857211 +k2534,212:18460021,40569243:857211 +) +(2534,213:6630773,41428451:11829248,505283,134348 +h2534,212:6630773,41428451:0,0,0 +r2534,212:6630773,41428451:0,639631,134348 +g2534,212:7941493,41428451 +g2534,212:7941493,41428451 +g2534,212:9366901,41428451 +g2534,212:10757575,41428451 +g2534,212:12470686,41428451 +k2534,212:18460021,41428451:2308178 +) +(2534,213:9252213,42269939:9207808,485622,11795 +k2534,213:15215334,42269939:3244688 +k2534,213:18460021,42269939:3244687 +) +(2534,214:6630773,43129146:11829248,505283,126483 +h2534,213:6630773,43129146:0,0,0 +r2534,213:6630773,43129146:0,631766,126483 +g2534,213:8596853,43129146 +g2534,213:8596853,43129146 +g2534,213:11882172,43129146 +k2534,214:15768785,43129146:2691236 +k2534,214:18460021,43129146:2691236 +) +(2534,215:6630773,43988354:11829248,505283,102891 +h2534,214:6630773,43988354:0,0,0 +r2534,214:6630773,43988354:0,608174,102891 +g2534,214:7941493,43988354 +g2534,214:7941493,43988354 +g2534,214:10631090,43988354 +g2534,214:12199366,43988354 +k2534,215:16688910,43988354:1771111 +k2534,215:18460021,43988354:1771111 +) +(2534,216:6630773,44847561:11829248,505283,134348 +h2534,215:6630773,44847561:0,0,0 +r2534,215:6630773,44847561:0,639631,134348 +g2534,215:7941493,44847561 +g2534,215:7941493,44847561 +g2534,215:9151287,44847561 +g2534,215:12513939,44847561 +k2534,216:16846197,44847561:1613825 +k2534,216:18460021,44847561:1613824 +) +(2534,217:6630773,45706769:11829248,505283,102891 +h2534,216:6630773,45706769:0,0,0 +r2534,216:6630773,45706769:0,608174,102891 +g2534,216:7941493,45706769 +g2534,216:7941493,45706769 +g2534,216:9566130,45706769 +g2534,216:10956804,45706769 +g2534,216:12536877,45706769 +g2534,216:14812287,45706769 +k2534,217:17995371,45706769:464651 +k2534,217:18460021,45706769:464650 +) +] +k2534,274:19606901,45706769:1146880 +r2534,274:19606901,45706769:0,40242380,134348 +k2534,274:20753781,45706769:1146880 +[2534,274:20753781,45706769:11829248,40108032,134348 +(2534,218:20753781,6254097:11829248,505283,126483 +h2534,217:20753781,6254097:0,0,0 +r2534,217:20753781,6254097:0,631766,126483 +g2534,217:22064501,6254097 +g2534,217:22064501,6254097 +g2534,217:24605987,6254097 +g2534,217:25973723,6254097 +g2534,217:27364397,6254097 +k2534,217:32583029,6254097:3770286 +) +(2534,218:23375221,7095585:9207808,485622,134348 +g2534,217:27255607,7095585 +k2534,218:31278535,7095585:1304495 +k2534,218:32583029,7095585:1304494 +) +(2534,219:20753781,7942373:11829248,505283,134348 +h2534,218:20753781,7942373:0,0,0 +g2534,218:23341797,7942373 +g2534,218:25699782,7942373 +g2534,218:28410351,7942373 +k2534,219:31094379,7942373:1488651 +k2534,219:32583029,7942373:1488650 +) +(2534,220:20753781,8789162:11829248,505283,134348 +h2534,219:20753781,8789162:0,0,0 +g2534,219:22819475,8789162 +g2534,219:24387751,8789162 +g2534,219:25956027,8789162 +k2534,220:29867217,8789162:2715813 +k2534,220:32583029,8789162:2715812 +) +(2534,221:20753781,9635950:11829248,505283,134348 +h2534,220:20753781,9635950:0,0,0 +g2534,220:22237516,9635950 +g2534,220:25155834,9635950 +g2534,220:28762935,9635950 +k2534,220:32583029,9635950:1070203 +) +(2534,221:23375221,10477438:9207808,485622,11795 +k2534,221:28576814,10477438:4006216 +k2534,221:32583029,10477438:4006215 +) +(2534,222:20753781,11324226:11829248,505283,134348 +h2534,221:20753781,11324226:0,0,0 +g2534,221:24451321,11324226 +k2534,222:29114864,11324226:3468166 +k2534,222:32583029,11324226:3468165 +) +(2534,223:20753781,12171014:11829248,505283,134348 +h2534,222:20753781,12171014:0,0,0 +g2534,222:24458531,12171014 +g2534,222:28062355,12171014 +g2534,222:29070954,12171014 +k2534,222:32583029,12171014:1949041 +) +(2534,223:23375221,13012502:9207808,485622,11795 +k2534,223:29338342,13012502:3244688 +k2534,223:32583029,13012502:3244687 +) +(2534,224:20753781,13859291:11829248,473825,134348 +h2534,223:20753781,13859291:0,0,0 +k2534,224:28109870,13859291:4473160 +k2534,224:32583029,13859291:4473159 +) +(2534,225:20753781,14706079:11829248,505283,126483 +h2534,224:20753781,14706079:0,0,0 +r2534,224:20753781,14706079:0,631766,126483 +k2534,224:22064501,14706079:1310720 +k2534,224:22064501,14706079:0 +k2534,224:27310003,14706079:188744 +k2534,224:28114784,14706079:188743 +k2534,224:31387652,14706079:188744 +k2534,225:32583029,14706079:0 +k2534,225:32583029,14706079:0 +) +(2534,229:20753781,16296564:11829248,505283,102891 +h2534,228:20753781,16296564:0,0,0 +g2534,228:23419785,16296564 +g2534,228:24988061,16296564 +g2534,228:26556337,16296564 +k2534,229:30167372,16296564:2415658 +k2534,229:32583029,16296564:2415657 +) +(2534,230:20753781,17143352:11829248,505283,102891 +h2534,229:20753781,17143352:0,0,0 +g2534,229:23493185,17143352 +k2534,230:28635796,17143352:3947234 +k2534,230:32583029,17143352:3947233 +) +(2534,231:20753781,17990140:11829248,485622,102891 +h2534,230:20753781,17990140:0,0,0 +g2534,230:22936129,17990140 +g2534,230:24504405,17990140 +k2534,231:29141406,17990140:3441624 +k2534,231:32583029,17990140:3441623 +) +(2534,235:20753781,19580625:11829248,505283,134348 +h2534,234:20753781,19580625:0,0,0 +g2534,234:22213923,19580625 +g2534,234:23380463,19580625 +g2534,234:26843385,19580625 +k2534,234:32583029,19580625:1607599 +) +(2534,235:23375221,20422113:9207808,473825,7863 +k2534,235:30007792,20422113:2575237 +k2534,235:32583029,20422113:2575237 +) +(2534,236:20753781,21268902:11829248,513147,102891 +h2534,235:20753781,21268902:0,0,0 +g2534,235:22040252,21268902 +g2534,235:23187132,21268902 +g2534,235:24005021,21268902 +k2534,236:28692484,21268902:3890545 +k2534,236:32583029,21268902:3890545 +) +(2534,237:20753781,22115690:11829248,481690,134348 +h2534,236:20753781,22115690:0,0,0 +g2534,236:23373910,22115690 +k2534,237:28376929,22115690:4206101 +k2534,237:32583029,22115690:4206100 +) +(2534,238:20753781,22962478:11829248,505283,134348 +h2534,237:20753781,22962478:0,0,0 +g2534,237:24124953,22962478 +k2534,238:29048673,22962478:3534357 +k2534,238:32583029,22962478:3534356 +) +(2534,239:20753781,23809266:11829248,513147,102891 +h2534,238:20753781,23809266:0,0,0 +r2534,238:20753781,23809266:0,616038,102891 +g2534,238:22064501,23809266 +g2534,238:22064501,23809266 +g2534,238:23582970,23809266 +g2534,238:25269211,23809266 +k2534,239:30285337,23809266:2297693 +k2534,239:32583029,23809266:2297692 +) +(2534,240:20753781,24656055:11829248,513147,102891 +h2534,239:20753781,24656055:0,0,0 +r2534,239:20753781,24656055:0,616038,102891 +g2534,239:22064501,24656055 +g2534,239:22064501,24656055 +g2534,239:23702901,24656055 +g2534,239:25389142,24656055 +k2534,240:30345302,24656055:2237727 +k2534,240:32583029,24656055:2237727 +) +(2534,241:20753781,25502843:11829248,505283,102891 +h2534,240:20753781,25502843:0,0,0 +r2534,240:20753781,25502843:0,608174,102891 +g2534,240:22064501,25502843 +g2534,240:22064501,25502843 +g2534,240:25590993,25502843 +k2534,241:30446228,25502843:2136802 +k2534,241:32583029,25502843:2136801 +) +(2534,242:20753781,26349631:11829248,513147,102891 +h2534,241:20753781,26349631:0,0,0 +r2534,241:20753781,26349631:0,616038,102891 +g2534,241:22064501,26349631 +g2534,241:22064501,26349631 +g2534,241:23549546,26349631 +g2534,241:25235787,26349631 +k2534,242:30268625,26349631:2314405 +k2534,242:32583029,26349631:2314404 +) +(2534,243:20753781,27196420:11829248,505283,134348 +h2534,242:20753781,27196420:0,0,0 +r2534,242:20753781,27196420:0,639631,134348 +g2534,242:22064501,27196420 +g2534,242:22064501,27196420 +g2534,242:24814391,27196420 +k2534,243:29296399,27196420:3286631 +k2534,243:32583029,27196420:3286630 +) +(2534,244:20753781,28043208:11829248,513147,102891 +h2534,243:20753781,28043208:0,0,0 +r2534,243:20753781,28043208:0,616038,102891 +g2534,243:22064501,28043208 +g2534,243:22064501,28043208 +g2534,243:24421175,28043208 +g2534,243:26107416,28043208 +k2534,244:30704439,28043208:1878590 +k2534,244:32583029,28043208:1878590 +) +(2534,245:20753781,28889996:11829248,513147,102891 +h2534,244:20753781,28889996:0,0,0 +r2534,244:20753781,28889996:0,616038,102891 +g2534,244:22064501,28889996 +g2534,244:22064501,28889996 +g2534,244:23965700,28889996 +g2534,244:27249053,28889996 +k2534,244:32583029,28889996:2401240 +) +(2534,245:23375221,29731484:9207808,485622,11795 +k2534,245:29338342,29731484:3244688 +k2534,245:32583029,29731484:3244687 +) +(2534,246:20753781,30578272:11829248,505283,126483 +h2534,245:20753781,30578272:0,0,0 +r2534,245:20753781,30578272:0,631766,126483 +g2534,245:22064501,30578272 +g2534,245:22064501,30578272 +g2534,245:24886481,30578272 +g2534,245:27597050,30578272 +k2534,246:31449256,30578272:1133773 +k2534,246:32583029,30578272:1133773 +) +(2534,247:20753781,31425061:11829248,485622,102891 +h2534,246:20753781,31425061:0,0,0 +r2534,246:20753781,31425061:0,588513,102891 +g2534,246:22064501,31425061 +g2534,246:22064501,31425061 +g2534,246:24518169,31425061 +g2534,246:28727546,31425061 +k2534,247:32014504,31425061:568525 +k2534,247:32583029,31425061:568525 +) +(2534,248:20753781,32271849:11829248,513147,102891 +h2534,247:20753781,32271849:0,0,0 +r2534,247:20753781,32271849:0,616038,102891 +g2534,247:22064501,32271849 +g2534,247:22064501,32271849 +g2534,247:23489909,32271849 +g2534,247:25176150,32271849 +k2534,248:30238806,32271849:2344223 +k2534,248:32583029,32271849:2344223 +) +(2534,249:20753781,33118637:11829248,505283,102891 +h2534,248:20753781,33118637:0,0,0 +r2534,248:20753781,33118637:0,608174,102891 +g2534,248:22064501,33118637 +g2534,248:22064501,33118637 +g2534,248:25887216,33118637 +g2534,248:27277890,33118637 +k2534,248:32583029,33118637:1622671 +) +(2534,249:23375221,33960125:9207808,485622,11795 +k2534,249:29338342,33960125:3244688 +k2534,249:32583029,33960125:3244687 +) +(2534,250:20753781,34806913:11829248,513147,102891 +h2534,249:20753781,34806913:0,0,0 +r2534,249:20753781,34806913:0,616038,102891 +g2534,249:22064501,34806913 +g2534,249:22064501,34806913 +g2534,249:23622947,34806913 +g2534,249:25013621,34806913 +g2534,249:27081281,34806913 +g2534,249:28767522,34806913 +k2534,250:32034492,34806913:548537 +k2534,250:32583029,34806913:548537 +) +(2534,251:20753781,35653702:11829248,505283,126483 +h2534,250:20753781,35653702:0,0,0 +g2534,250:24115777,35653702 +g2534,250:25506451,35653702 +g2534,250:28252409,35653702 +g2534,250:30147054,35653702 +k2534,251:32325800,35653702:257230 +k2534,251:32583029,35653702:257229 +) +(2534,252:20753781,36500490:11829248,505283,134348 +h2534,251:20753781,36500490:0,0,0 +g2534,251:24216703,36500490 +k2534,251:32583029,36500490:4234281 +) +(2534,252:23375221,37341978:9207808,473825,102891 +g2534,251:27805454,37341978 +k2534,252:30393471,37341978:2189558 +k2534,252:32583029,37341978:2189558 +) +(2534,253:20753781,38188766:11829248,513147,134348 +h2534,252:20753781,38188766:0,0,0 +g2534,252:26731975,38188766 +k2534,253:30255191,38188766:2327839 +k2534,253:32583029,38188766:2327838 +) +(2534,254:20753781,39035554:11829248,485622,102891 +h2534,253:20753781,39035554:0,0,0 +g2534,253:23843803,39035554 +k2534,254:28811105,39035554:3771925 +k2534,254:32583029,39035554:3771924 +) +(2534,255:20753781,39882343:11829248,513147,126483 +h2534,254:20753781,39882343:0,0,0 +r2534,254:20753781,39882343:0,639630,126483 +g2534,254:22064501,39882343 +g2534,254:22064501,39882343 +g2534,254:23211381,39882343 +g2534,254:24999203,39882343 +k2534,255:29388805,39882343:3194225 +k2534,255:32583029,39882343:3194224 +) +(2534,256:20753781,40729131:11829248,513147,134348 +h2534,255:20753781,40729131:0,0,0 +r2534,255:20753781,40729131:0,647495,134348 +g2534,255:22064501,40729131 +g2534,255:22064501,40729131 +g2534,255:24603365,40729131 +g2534,255:25461886,40729131 +g2534,255:27580009,40729131 +k2534,256:30679208,40729131:1903822 +k2534,256:32583029,40729131:1903821 +) +(2534,257:20753781,41575919:11829248,505283,126483 +h2534,256:20753781,41575919:0,0,0 +r2534,256:20753781,41575919:0,631766,126483 +g2534,256:22064501,41575919 +g2534,256:22064501,41575919 +g2534,256:24280273,41575919 +g2534,256:26068095,41575919 +k2534,257:29923251,41575919:2659779 +k2534,257:32583029,41575919:2659778 +) +(2534,258:20753781,42422707:11829248,505283,126483 +h2534,257:20753781,42422707:0,0,0 +r2534,257:20753781,42422707:0,631766,126483 +g2534,257:22064501,42422707 +g2534,257:22064501,42422707 +g2534,257:23953248,42422707 +g2534,257:25741070,42422707 +k2534,258:29759738,42422707:2823291 +k2534,258:32583029,42422707:2823291 +) +(2534,262:20753781,44013193:11829248,485622,102891 +h2534,261:20753781,44013193:0,0,0 +g2534,261:22393491,44013193 +g2534,261:23563308,44013193 +k2534,262:28670857,44013193:3912172 +k2534,262:32583029,44013193:3912172 +) +(2534,263:20753781,44859981:11829248,505283,134348 +h2534,262:20753781,44859981:0,0,0 +g2534,262:22520631,44859981 +g2534,262:25355063,44859981 +g2534,262:26943655,44859981 +g2534,262:29755804,44859981 +k2534,263:32528633,44859981:54396 +k2534,263:32583029,44859981:54396 +) +(2534,264:20753781,45706769:11829248,513147,134348 +h2534,263:20753781,45706769:0,0,0 +r2534,263:20753781,45706769:0,647495,134348 +g2534,263:22064501,45706769 +g2534,263:22064501,45706769 +g2534,263:24955949,45706769 +k2534,264:29367178,45706769:3215852 +k2534,264:32583029,45706769:3215851 +) +] +(2534,274:32583029,45706769:0,355205,126483 +h2534,274:32583029,45706769:420741,355205,126483 +k2534,274:32583029,45706769:-420741 +) +) +] +(2534,274:32583029,45706769:0,0,0 +g2534,274:32583029,45706769 +) +) +] +(2534,274:6630773,47279633:25952256,0,0 +h2534,274:6630773,47279633:25952256,0,0 +) +] +h2534,274:4262630,4025873:0,0,0 +] +!27758 }338 !12 {339 -[1,17320:4262630,47279633:28320399,43253760,0 -(1,17320:4262630,4025873:0,0,0 -[1,17320:-473657,4025873:25952256,0,0 -(1,17320:-473657,-710414:25952256,0,0 -h1,17320:-473657,-710414:0,0,0 -(1,17320:-473657,-710414:0,0,0 -(1,17320:-473657,-710414:0,0,0 -g1,17320:-473657,-710414 -(1,17320:-473657,-710414:65781,0,65781 -g1,17320:-407876,-710414 -[1,17320:-407876,-644633:0,0,0 +[2534,364:4262630,47279633:28320399,43253760,0 +(2534,364:4262630,4025873:0,0,0 +[2534,364:-473657,4025873:11829248,0,0 +(2534,364:-473657,-710414:11829248,0,0 +h2534,364:-473657,-710414:0,0,0 +(2534,364:-473657,-710414:0,0,0 +(2534,364:-473657,-710414:0,0,0 +g2534,364:-473657,-710414 +(2534,364:-473657,-710414:65781,0,65781 +g2534,364:-407876,-710414 +[2534,364:-407876,-644633:0,0,0 ] ) -k1,17320:-473657,-710414:-65781 +k2534,364:-473657,-710414:-65781 ) ) -k1,17320:25478599,-710414:25952256 -g1,17320:25478599,-710414 +k2534,364:11355591,-710414:11829248 +g2534,364:11355591,-710414 ) ] ) -[1,17320:6630773,47279633:25952256,43253760,0 -[1,17320:6630773,4812305:25952256,786432,0 -(1,17320:6630773,4812305:25952256,0,0 -(1,17320:6630773,4812305:25952256,0,0 -g1,17320:3078558,4812305 -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,2439708:0,1703936,0 -k1,17320:1358238,2439708:-1720320 -(1,17320:1358238,2439708:1720320,1703936,0 -(1,17320:1358238,2439708:1179648,16384,0 -r1,17320:2537886,2439708:1179648,16384,0 +[2534,364:6630773,47279633:25952256,43253760,0 +[2534,364:6630773,4812305:25952256,786432,0 +(2534,364:6630773,4812305:25952256,505283,11795 +(2534,364:6630773,4812305:25952256,505283,11795 +g2534,364:3078558,4812305 +[2534,364:3078558,4812305:0,0,0 +(2534,364:3078558,2439708:0,1703936,0 +k2534,364:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,364:2537886,2439708:1179648,16384,0 ) -g1,17320:3062174,2439708 -(1,17320:3062174,2439708:16384,1703936,0 -[1,17320:3062174,2439708:25952256,1703936,0 -(1,17320:3062174,1915420:25952256,1179648,0 -(1,17320:3062174,1915420:16384,1179648,0 -r1,17320:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,364:3078558,1915420:16384,1179648,0 ) -k1,17320:29014430,1915420:25935872 -g1,17320:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,2439708:0,1703936,0 -g1,17320:29030814,2439708 -g1,17320:36135244,2439708 -(1,17320:36135244,2439708:1720320,1703936,0 -(1,17320:36135244,2439708:16384,1703936,0 -[1,17320:36135244,2439708:25952256,1703936,0 -(1,17320:36135244,1915420:25952256,1179648,0 -(1,17320:36135244,1915420:16384,1179648,0 -r1,17320:36151628,1915420:16384,1179648,0 +[2534,364:3078558,4812305:0,0,0 +(2534,364:3078558,2439708:0,1703936,0 +g2534,364:29030814,2439708 +g2534,364:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,364:36151628,1915420:16384,1179648,0 ) -k1,17320:62087500,1915420:25935872 -g1,17320:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g1,17320:36675916,2439708 -(1,17320:36675916,2439708:1179648,16384,0 -r1,17320:37855564,2439708:1179648,16384,0 -) -) -k1,17320:3078556,2439708:-34777008 -) -] -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,49800853:0,16384,2228224 -k1,17320:1358238,49800853:-1720320 -(1,17320:1358238,49800853:1720320,16384,2228224 -(1,17320:1358238,49800853:1179648,16384,0 -r1,17320:2537886,49800853:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,364:37855564,2439708:1179648,16384,0 ) -g1,17320:3062174,49800853 -(1,17320:3062174,52029077:16384,1703936,0 -[1,17320:3062174,52029077:25952256,1703936,0 -(1,17320:3062174,51504789:25952256,1179648,0 -(1,17320:3062174,51504789:16384,1179648,0 -r1,17320:3078558,51504789:16384,1179648,0 ) -k1,17320:29014430,51504789:25935872 -g1,17320:29014430,51504789 +k2534,364:3078556,2439708:-34777008 ) ] +[2534,364:3078558,4812305:0,0,0 +(2534,364:3078558,49800853:0,16384,2228224 +k2534,364:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,364:2537886,49800853:1179648,16384,0 ) +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,364:3078558,51504789:16384,1179648,0 ) +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] -[1,17320:3078558,4812305:0,0,0 -(1,17320:3078558,49800853:0,16384,2228224 -g1,17320:29030814,49800853 -g1,17320:36135244,49800853 -(1,17320:36135244,49800853:1720320,16384,2228224 -(1,17320:36135244,52029077:16384,1703936,0 -[1,17320:36135244,52029077:25952256,1703936,0 -(1,17320:36135244,51504789:25952256,1179648,0 -(1,17320:36135244,51504789:16384,1179648,0 -r1,17320:36151628,51504789:16384,1179648,0 ) -k1,17320:62087500,51504789:25935872 -g1,17320:62087500,51504789 ) -] -) -g1,17320:36675916,49800853 -(1,17320:36675916,49800853:1179648,16384,0 -r1,17320:37855564,49800853:1179648,16384,0 -) -) -k1,17320:3078556,49800853:-34777008 ) ] -g1,17320:6630773,4812305 +[2534,364:3078558,4812305:0,0,0 +(2534,364:3078558,49800853:0,16384,2228224 +g2534,364:29030814,49800853 +g2534,364:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,364:36151628,51504789:16384,1179648,0 ) +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] -[1,17320:6630773,45706769:0,40108032,0 -(1,17320:6630773,45706769:0,40108032,0 -(1,17320:6630773,45706769:0,0,0 -g1,17320:6630773,45706769 -) -[1,17320:6630773,45706769:0,40108032,0 -h1,17320:6630773,6254097:0,0,0 -] -(1,17320:6630773,45706769:0,0,0 -g1,17320:6630773,45706769 ) +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,364:37855564,49800853:1179648,16384,0 ) -] -(1,17320:6630773,47279633:25952256,0,0 -h1,17320:6630773,47279633:25952256,0,0 ) +k2534,364:3078556,49800853:-34777008 +) +] +g2534,364:6630773,4812305 +k2534,364:28224886,4812305:20398736 +g2534,364:30907930,4812305 +) +) +] +[2534,364:6630773,45706769:25952256,40108032,0 +(2534,364:6630773,45706769:25952256,40108032,0 +(2534,364:6630773,45706769:0,0,0 +g2534,364:6630773,45706769 +) +[2534,364:6630773,45706769:25952256,40108032,0 +(2534,364:6630773,45706769:25952256,40108032,126483 +[2534,364:6630773,45706769:11829248,40108032,102891 +(2534,265:6630773,6254097:11829248,485622,134348 +h2534,264:6630773,6254097:0,0,0 +r2534,264:6630773,6254097:0,619970,134348 +g2534,264:7941493,6254097 +g2534,264:7941493,6254097 +g2534,264:11209118,6254097 +k2534,265:15432258,6254097:3027763 +k2534,265:18460021,6254097:3027763 +) +(2534,266:6630773,7099141:11829248,505283,134348 +h2534,265:6630773,7099141:0,0,0 +g2534,265:9748320,7099141 +k2534,266:14701859,7099141:3758162 +k2534,266:18460021,7099141:3758162 +) +(2534,270:6630773,8658810:11829248,505283,102891 +h2534,269:6630773,8658810:0,0,0 +g2534,269:8909459,8658810 +g2534,269:9680817,8658810 +g2534,269:10850634,8658810 +k2534,270:15053787,8658810:3406235 +k2534,270:18460021,8658810:3406234 +) +(2534,274:6630773,10218479:11829248,505283,134348 +h2534,273:6630773,10218479:0,0,0 +k2534,274:14131696,10218479:4328325 +k2534,274:18460021,10218479:4328325 +) +(2534,275:6630773,11063523:11829248,485622,102891 +h2534,274:6630773,11063523:0,0,0 +r2534,274:6630773,11063523:0,588513,102891 +g2534,274:7941493,11063523 +g2534,274:7941493,11063523 +g2534,274:8767901,11063523 +g2534,274:9937718,11063523 +g2534,274:11107535,11063523 +g2534,274:12277352,11063523 +g2534,274:13447169,11063523 +g2534,274:14616986,11063523 +g2534,274:15786803,11063523 +k2534,274:18460021,11063523:1304171 +) +(2534,275:9252213,11905011:9207808,485622,102891 +g2534,274:10820489,11905011 +k2534,275:15237944,11905011:3222078 +k2534,275:18460021,11905011:3222077 +) +(2534,276:6630773,12750055:11829248,485622,102891 +h2534,275:6630773,12750055:0,0,0 +r2534,275:6630773,12750055:0,588513,102891 +g2534,275:7941493,12750055 +g2534,275:7941493,12750055 +g2534,275:9597587,12750055 +g2534,275:10368945,12750055 +g2534,275:11538762,12750055 +g2534,275:12708579,12750055 +g2534,275:13878396,12750055 +g2534,275:15446672,12750055 +k2534,276:17551035,12750055:908986 +k2534,276:18460021,12750055:908986 +) +(2534,277:6630773,13595099:11829248,485622,102891 +h2534,276:6630773,13595099:0,0,0 +r2534,276:6630773,13595099:0,588513,102891 +g2534,276:7941493,13595099 +g2534,276:7941493,13595099 +g2534,276:10512470,13595099 +k2534,277:15083934,13595099:3376087 +k2534,277:18460021,13595099:3376087 +) +(2534,278:6630773,14440143:11829248,485622,102891 +h2534,277:6630773,14440143:0,0,0 +r2534,277:6630773,14440143:0,588513,102891 +g2534,277:7941493,14440143 +g2534,277:7941493,14440143 +g2534,277:11355263,14440143 +g2534,277:12923539,14440143 +g2534,277:14491815,14440143 +k2534,278:17073607,14440143:1386415 +k2534,278:18460021,14440143:1386414 +) +(2534,279:6630773,15285187:11829248,485622,102891 +h2534,278:6630773,15285187:0,0,0 +r2534,278:6630773,15285187:0,588513,102891 +g2534,278:7941493,15285187 +g2534,278:7941493,15285187 +g2534,278:10123841,15285187 +g2534,278:11692117,15285187 +k2534,279:15673758,15285187:2786264 +k2534,279:18460021,15285187:2786263 +) +(2534,280:6630773,16130231:11829248,485622,102891 +h2534,279:6630773,16130231:0,0,0 +r2534,279:6630773,16130231:0,588513,102891 +g2534,279:7941493,16130231 +g2534,279:7941493,16130231 +g2534,279:9581203,16130231 +g2534,279:10751020,16130231 +k2534,280:15203209,16130231:3256812 +k2534,280:18460021,16130231:3256812 +) +(2534,281:6630773,16975275:11829248,485622,173670 +h2534,280:6630773,16975275:0,0,0 +r2534,280:6630773,16975275:0,659292,173670 +g2534,280:7941493,16975275 +g2534,280:7941493,16975275 +[2534,280:8070599,16975275:341312,473825,0 +(2534,280:8070599,16837256:341312,335806,0 +) +] +(2534,280:8638865,17148945:370934,473825,0 +) +g2534,280:9731350,16975275 +k2534,281:14494145,16975275:3965877 +k2534,281:18460021,16975275:3965876 +) +(2534,282:6630773,17820319:11829248,505283,102891 +h2534,281:6630773,17820319:0,0,0 +r2534,281:6630773,17820319:0,608174,102891 +g2534,281:7941493,17820319 +g2534,281:7941493,17820319 +g2534,281:11617407,17820319 +g2534,281:12787224,17820319 +k2534,282:16221311,17820319:2238710 +k2534,282:18460021,17820319:2238710 +) +(2534,283:6630773,18665363:11829248,505283,126483 +h2534,282:6630773,18665363:0,0,0 +r2534,282:6630773,18665363:0,631766,126483 +g2534,282:7941493,18665363 +g2534,282:7941493,18665363 +g2534,282:10432516,18665363 +g2534,282:11823190,18665363 +g2534,282:15272349,18665363 +k2534,283:17264644,18665363:1195377 +k2534,283:18460021,18665363:1195377 +) +(2534,284:6630773,19510407:11829248,505283,102891 +h2534,283:6630773,19510407:0,0,0 +r2534,283:6630773,19510407:0,608174,102891 +g2534,283:7941493,19510407 +g2534,283:7941493,19510407 +g2534,283:10258845,19510407 +k2534,284:14558663,19510407:3901359 +k2534,284:18460021,19510407:3901358 +) +(2534,285:6630773,20355451:11829248,505283,126483 +h2534,284:6630773,20355451:0,0,0 +r2534,284:6630773,20355451:0,631766,126483 +g2534,284:7941493,20355451 +g2534,284:7941493,20355451 +g2534,284:10479046,20355451 +g2534,284:12047322,20355451 +g2534,284:13615598,20355451 +k2534,285:16635498,20355451:1824523 +k2534,285:18460021,20355451:1824523 +) +(2534,286:6630773,21200495:11829248,505283,102891 +h2534,285:6630773,21200495:0,0,0 +r2534,285:6630773,21200495:0,608174,102891 +g2534,285:7941493,21200495 +g2534,285:7941493,21200495 +g2534,285:12080091,21200495 +k2534,286:15668515,21200495:2791506 +k2534,286:18460021,21200495:2791506 +) +(2534,287:6630773,22045539:11829248,485622,102891 +h2534,286:6630773,22045539:0,0,0 +r2534,286:6630773,22045539:0,588513,102891 +g2534,286:7941493,22045539 +g2534,286:7941493,22045539 +g2534,286:8667631,22045539 +g2534,286:9438989,22045539 +g2534,286:10210347,22045539 +g2534,286:11778623,22045539 +k2534,287:15717011,22045539:2743011 +k2534,287:18460021,22045539:2743010 +) +(2534,288:6630773,22890582:11829248,505283,102891 +h2534,287:6630773,22890582:0,0,0 +r2534,287:6630773,22890582:0,608174,102891 +g2534,287:7941493,22890582 +g2534,287:7941493,22890582 +g2534,287:10172338,22890582 +k2534,288:14515409,22890582:3944612 +k2534,288:18460021,22890582:3944612 +) +(2534,289:6630773,23735626:11829248,485622,102891 +h2534,288:6630773,23735626:0,0,0 +r2534,288:6630773,23735626:0,588513,102891 +g2534,288:7941493,23735626 +g2534,288:7941493,23735626 +g2534,288:10534096,23735626 +k2534,289:15094747,23735626:3365274 +k2534,289:18460021,23735626:3365274 +) +(2534,290:6630773,24580670:11829248,485622,102891 +h2534,289:6630773,24580670:0,0,0 +r2534,289:6630773,24580670:0,588513,102891 +g2534,289:7941493,24580670 +g2534,289:7941493,24580670 +g2534,289:9638219,24580670 +g2534,289:11206495,24580670 +k2534,290:15430947,24580670:3029075 +k2534,290:18460021,24580670:3029074 +) +(2534,291:6630773,25425714:11829248,485622,102891 +h2534,290:6630773,25425714:0,0,0 +r2534,290:6630773,25425714:0,588513,102891 +g2534,290:7941493,25425714 +g2534,290:7941493,25425714 +g2534,290:10052407,25425714 +k2534,291:14853903,25425714:3606119 +k2534,291:18460021,25425714:3606118 +) +(2534,292:6630773,26270758:11829248,485622,173670 +h2534,291:6630773,26270758:0,0,0 +[2534,291:6759879,26270758:341312,473825,0 +(2534,291:6759879,26132739:341312,335806,0 +) +] +(2534,291:7328145,26444428:370934,473825,0 +) +g2534,291:8420630,26270758 +g2534,291:9590447,26270758 +k2534,292:14423693,26270758:4036328 +k2534,292:18460021,26270758:4036328 +) +(2534,293:6630773,27115802:11829248,485622,173670 +h2534,292:6630773,27115802:0,0,0 +[2534,292:6759879,27115802:341312,473825,0 +(2534,292:6759879,26977783:341312,335806,0 +) +] +(2534,292:7328145,27289472:370934,473825,0 +) +g2534,292:8420630,27115802 +k2534,293:13838785,27115802:4621237 +k2534,293:18460021,27115802:4621236 +) +(2534,294:6630773,27960846:11829248,505283,102891 +h2534,293:6630773,27960846:0,0,0 +g2534,293:9349206,27960846 +g2534,293:10917482,27960846 +g2534,293:12485758,27960846 +k2534,294:16070578,27960846:2389443 +k2534,294:18460021,27960846:2389443 +) +(2534,295:6630773,28805890:11829248,505283,102891 +h2534,294:6630773,28805890:0,0,0 +g2534,294:10876850,28805890 +g2534,294:12046667,28805890 +g2534,294:13614943,28805890 +g2534,294:15183219,28805890 +g2534,294:16751495,28805890 +k2534,295:18203447,28805890:256575 +k2534,295:18460021,28805890:256574 +) +(2534,296:6630773,29650934:11829248,505283,102891 +h2534,295:6630773,29650934:0,0,0 +g2534,295:8642728,29650934 +g2534,295:11333636,29650934 +k2534,296:16256045,29650934:2203976 +k2534,296:18460021,29650934:2203976 +) +(2534,297:6630773,30495978:11829248,513147,126483 +h2534,296:6630773,30495978:0,0,0 +r2534,296:6630773,30495978:0,639630,126483 +g2534,296:7941493,30495978 +g2534,296:7941493,30495978 +g2534,296:10695315,30495978 +g2534,296:11553836,30495978 +g2534,296:15309048,30495978 +k2534,297:17482223,30495978:977798 +k2534,297:18460021,30495978:977798 +) +(2534,298:6630773,31341022:11829248,513147,126483 +h2534,297:6630773,31341022:0,0,0 +r2534,297:6630773,31341022:0,639630,126483 +g2534,297:7941493,31341022 +g2534,297:7941493,31341022 +g2534,297:10695315,31341022 +g2534,297:11553836,31341022 +g2534,297:14580944,31341022 +k2534,298:17118171,31341022:1341850 +k2534,298:18460021,31341022:1341850 +) +(2534,299:6630773,32186066:11829248,505283,102891 +h2534,298:6630773,32186066:0,0,0 +r2534,298:6630773,32186066:0,608174,102891 +g2534,298:7941493,32186066 +g2534,298:7941493,32186066 +g2534,298:10575385,32186066 +g2534,298:12513940,32186066 +k2534,299:16084669,32186066:2375352 +k2534,299:18460021,32186066:2375352 +) +(2534,300:6630773,33031110:11829248,505283,134348 +h2534,299:6630773,33031110:0,0,0 +r2534,299:6630773,33031110:0,639631,134348 +g2534,299:7941493,33031110 +g2534,299:7941493,33031110 +g2534,299:9953448,33031110 +g2534,299:13643124,33031110 +k2534,300:16649261,33031110:1810760 +k2534,300:18460021,33031110:1810760 +) +(2534,301:6630773,33876154:11829248,505283,134348 +h2534,300:6630773,33876154:0,0,0 +r2534,300:6630773,33876154:0,639631,134348 +g2534,300:7941493,33876154 +g2534,300:7941493,33876154 +g2534,300:11713745,33876154 +g2534,300:15403421,33876154 +k2534,301:17529410,33876154:930612 +k2534,301:18460021,33876154:930611 +) +(2534,302:6630773,34721198:11829248,505283,126483 +h2534,301:6630773,34721198:0,0,0 +r2534,301:6630773,34721198:0,631766,126483 +g2534,301:7941493,34721198 +g2534,301:7941493,34721198 +g2534,301:11131130,34721198 +g2534,301:13069685,34721198 +k2534,302:16362542,34721198:2097480 +k2534,302:18460021,34721198:2097479 +) +(2534,303:6630773,35566242:11829248,485622,102891 +h2534,302:6630773,35566242:0,0,0 +g2534,302:8756760,35566242 +g2534,302:9528118,35566242 +g2534,302:10299476,35566242 +g2534,302:11070834,35566242 +g2534,302:12240651,35566242 +g2534,302:13410468,35566242 +g2534,302:14580285,35566242 +k2534,303:17117842,35566242:1342180 +k2534,303:18460021,35566242:1342179 +) +(2534,304:6630773,36411286:11829248,513147,134348 +h2534,303:6630773,36411286:0,0,0 +g2534,303:8813777,36411286 +g2534,303:10326348,36411286 +g2534,303:11208462,36411286 +g2534,303:14991200,36411286 +k2534,304:17323299,36411286:1136722 +k2534,304:18460021,36411286:1136722 +) +(2534,305:6630773,37256330:11829248,505283,102891 +h2534,304:6630773,37256330:0,0,0 +g2534,304:8327500,37256330 +k2534,305:14354519,37256330:4105503 +k2534,305:18460021,37256330:4105502 +) +(2534,306:6630773,38101373:11829248,505283,126483 +h2534,305:6630773,38101373:0,0,0 +r2534,305:6630773,38101373:0,631766,126483 +g2534,305:7941493,38101373 +g2534,305:7941493,38101373 +g2534,305:10520990,38101373 +g2534,305:11545317,38101373 +k2534,306:15401128,38101373:3058893 +k2534,306:18460021,38101373:3058893 +) +(2534,307:6630773,38946417:11829248,485622,102891 +h2534,306:6630773,38946417:0,0,0 +r2534,306:6630773,38946417:0,588513,102891 +g2534,306:7941493,38946417 +g2534,306:7941493,38946417 +g2534,306:10533441,38946417 +g2534,306:12000136,38946417 +g2534,306:14350912,38946417 +k2534,307:16803926,38946417:1656096 +k2534,307:18460021,38946417:1656095 +) +(2534,308:6630773,39791461:11829248,513147,134348 +h2534,307:6630773,39791461:0,0,0 +r2534,307:6630773,39791461:0,647495,134348 +g2534,307:7941493,39791461 +g2534,307:7941493,39791461 +g2534,307:11370992,39791461 +k2534,308:15313966,39791461:3146056 +k2534,308:18460021,39791461:3146055 +) +(2534,309:6630773,40636505:11829248,485622,102891 +h2534,308:6630773,40636505:0,0,0 +r2534,308:6630773,40636505:0,588513,102891 +g2534,308:7941493,40636505 +g2534,308:7941493,40636505 +g2534,308:9979662,40636505 +g2534,308:11620028,40636505 +k2534,309:15438484,40636505:3021538 +k2534,309:18460021,40636505:3021537 +) +(2534,310:6630773,41481549:11829248,505283,102891 +h2534,309:6630773,41481549:0,0,0 +r2534,309:6630773,41481549:0,608174,102891 +g2534,309:7941493,41481549 +g2534,309:7941493,41481549 +g2534,309:10764128,41481549 +g2534,309:14351568,41481549 +k2534,310:17366553,41481549:1093469 +k2534,310:18460021,41481549:1093468 +) +(2534,311:6630773,42326593:11829248,505283,102891 +h2534,310:6630773,42326593:0,0,0 +r2534,310:6630773,42326593:0,608174,102891 +g2534,310:7941493,42326593 +g2534,310:7941493,42326593 +g2534,310:10431861,42326593 +k2534,311:15406699,42326593:3053322 +k2534,311:18460021,42326593:3053322 +) +(2534,312:6630773,43171637:11829248,485622,102891 +h2534,311:6630773,43171637:0,0,0 +r2534,311:6630773,43171637:0,588513,102891 +g2534,311:7941493,43171637 +g2534,311:7941493,43171637 +g2534,311:11245818,43171637 +k2534,312:15251379,43171637:3208643 +k2534,312:18460021,43171637:3208642 +) +(2534,313:6630773,44016681:11829248,505283,134348 +h2534,312:6630773,44016681:0,0,0 +g2534,312:9089028,44016681 +g2534,312:13814173,44016681 +k2534,313:16535556,44016681:1924465 +k2534,313:18460021,44016681:1924465 +) +(2534,314:6630773,44861725:11829248,505283,102891 +h2534,313:6630773,44861725:0,0,0 +g2534,313:7932318,44861725 +g2534,313:9098858,44861725 +g2534,313:11110813,44861725 +k2534,314:15944421,44861725:2515600 +k2534,314:18460021,44861725:2515600 +) +(2534,315:6630773,45706769:11829248,505283,102891 +h2534,314:6630773,45706769:0,0,0 +g2534,314:8999243,45706769 +k2534,315:14327321,45706769:4132701 +k2534,315:18460021,45706769:4132700 +) +] +k2534,364:19606901,45706769:1146880 +r2534,364:19606901,45706769:0,40234515,126483 +k2534,364:20753781,45706769:1146880 +[2534,364:20753781,45706769:11829248,40108032,11795 +(2534,316:20753781,6254097:11829248,505283,134348 +h2534,315:20753781,6254097:0,0,0 +g2534,315:23022637,6254097 +g2534,315:26472452,6254097 +k2534,316:29926200,6254097:2656830 +k2534,316:32583029,6254097:2656829 +) +(2534,317:20753781,7097181:11829248,505283,134348 +h2534,316:20753781,7097181:0,0,0 +g2534,316:23022637,7097181 +g2534,316:25232511,7097181 +g2534,316:26623185,7097181 +g2534,316:28331053,7097181 +k2534,316:32583029,7097181:1751122 +) +(2534,317:23375221,7938669:9207808,485622,11795 +k2534,317:28939883,7938669:3643146 +k2534,317:32583029,7938669:3643146 +) +(2534,318:20753781,8781754:11829248,513147,134348 +h2534,317:20753781,8781754:0,0,0 +g2534,317:24335323,8781754 +g2534,317:25725997,8781754 +g2534,317:29196128,8781754 +k2534,317:32583029,8781754:1109525 +) +(2534,318:23375221,9623242:9207808,505283,102891 +g2534,317:25137484,9623242 +k2534,318:29457945,9623242:3125084 +k2534,318:32583029,9623242:3125084 +) +(2534,319:20753781,10466326:11829248,505283,126483 +h2534,318:20753781,10466326:0,0,0 +g2534,318:22871904,10466326 +g2534,318:24038444,10466326 +g2534,318:25495309,10466326 +k2534,319:30397731,10466326:2185299 +k2534,319:32583029,10466326:2185298 +) +(2534,320:20753781,11309410:11829248,513147,102891 +h2534,319:20753781,11309410:0,0,0 +r2534,319:20753781,11309410:0,616038,102891 +g2534,319:22064501,11309410 +g2534,319:22064501,11309410 +g2534,319:24107258,11309410 +g2534,319:28197359,11309410 +g2534,319:31288692,11309410 +k2534,320:32533549,11309410:49480 +k2534,320:32583029,11309410:49480 +) +(2534,321:20753781,12152495:11829248,505283,102891 +h2534,320:20753781,12152495:0,0,0 +r2534,320:20753781,12152495:0,608174,102891 +g2534,320:22064501,12152495 +g2534,320:22064501,12152495 +g2534,320:24554869,12152495 +k2534,321:29166638,12152495:3416392 +k2534,321:32583029,12152495:3416391 +) +(2534,322:20753781,12995579:11829248,513147,126483 +h2534,321:20753781,12995579:0,0,0 +g2534,321:22213267,12995579 +g2534,321:23071788,12995579 +g2534,321:25891146,12995579 +g2534,321:29196126,12995579 +k2534,322:31288037,12995579:1294993 +k2534,322:32583029,12995579:1294992 +) +(2534,323:20753781,13838664:11829248,505283,102891 +h2534,322:20753781,13838664:0,0,0 +g2534,322:24391684,13838664 +g2534,322:25959960,13838664 +k2534,323:29869183,13838664:2713846 +k2534,323:32583029,13838664:2713846 +) +(2534,327:20753781,15363714:11829248,505283,7863 +h2534,326:20753781,15363714:0,0,0 +g2534,326:23640641,15363714 +k2534,327:29749908,15363714:2833122 +k2534,327:32583029,15363714:2833121 +) +(2534,328:20753781,16206798:11829248,485622,126483 +h2534,327:20753781,16206798:0,0,0 +r2534,327:20753781,16206798:0,612105,126483 +g2534,327:22064501,16206798 +g2534,327:22064501,16206798 +g2534,327:25369481,16206798 +k2534,328:29937013,16206798:2646016 +k2534,328:32583029,16206798:2646016 +) +(2534,329:20753781,17049882:11829248,505283,134348 +h2534,328:20753781,17049882:0,0,0 +r2534,328:20753781,17049882:0,639631,134348 +g2534,328:22064501,17049882 +g2534,328:22064501,17049882 +g2534,328:25187291,17049882 +g2534,328:27497435,17049882 +k2534,329:30438691,17049882:2144338 +k2534,329:32583029,17049882:2144338 +) +(2534,330:20753781,17892967:11829248,505283,134348 +h2534,329:20753781,17892967:0,0,0 +g2534,329:24161652,17892967 +k2534,330:28970029,17892967:3613000 +k2534,330:32583029,17892967:3613000 +) +(2534,331:20753781,18736051:11829248,505283,134348 +h2534,330:20753781,18736051:0,0,0 +g2534,330:24138715,18736051 +g2534,330:25706991,18736051 +g2534,330:27275267,18736051 +k2534,331:30526837,18736051:2056193 +k2534,331:32583029,18736051:2056192 +) +(2534,332:20753781,19579136:11829248,505283,126483 +h2534,331:20753781,19579136:0,0,0 +g2534,331:24124953,19579136 +g2534,331:25291493,19579136 +g2534,331:29351448,19579136 +k2534,331:32583029,19579136:676988 +) +(2534,332:23375221,20420624:9207808,513147,7863 +g2534,331:24233742,20420624 +k2534,332:29735490,20420624:2847540 +k2534,332:32583029,20420624:2847539 +) +(2534,333:20753781,21263708:11829248,505283,102891 +h2534,332:20753781,21263708:0,0,0 +g2534,332:24429695,21263708 +g2534,332:25599512,21263708 +k2534,333:29688959,21263708:2894070 +k2534,333:32583029,21263708:2894070 +) +(2534,334:20753781,22106792:11829248,513147,102891 +h2534,333:20753781,22106792:0,0,0 +g2534,333:22600585,22106792 +g2534,333:25999282,22106792 +k2534,334:29689615,22106792:2893415 +k2534,334:32583029,22106792:2893414 +) +(2534,335:20753781,22949877:11829248,505283,126483 +h2534,334:20753781,22949877:0,0,0 +g2534,334:22600585,22949877 +g2534,334:26050400,22949877 +k2534,335:29715174,22949877:2867856 +k2534,335:32583029,22949877:2867855 +) +(2534,336:20753781,23792961:11829248,485622,102891 +h2534,335:20753781,23792961:0,0,0 +g2534,335:23860187,23792961 +k2534,336:29182366,23792961:3400663 +k2534,336:32583029,23792961:3400663 +) +(2534,337:20753781,24636045:11829248,473825,7863 +h2534,336:20753781,24636045:0,0,0 +k2534,337:27712066,24636045:4870963 +k2534,337:32583029,24636045:4870963 +) +(2534,338:20753781,25479130:11829248,505283,102891 +h2534,337:20753781,25479130:0,0,0 +r2534,337:20753781,25479130:0,608174,102891 +g2534,337:22064501,25479130 +g2534,337:22064501,25479130 +g2534,337:26112659,25479130 +k2534,338:29746303,25479130:2836726 +k2534,338:32583029,25479130:2836726 +) +(2534,339:20753781,26322214:11829248,505283,102891 +h2534,338:20753781,26322214:0,0,0 +g2534,338:25157799,26322214 +k2534,339:29268873,26322214:3314156 +k2534,339:32583029,26322214:3314156 +) +(2534,340:20753781,27165298:11829248,505283,134348 +h2534,339:20753781,27165298:0,0,0 +g2534,339:22548812,27165298 +g2534,339:23715352,27165298 +g2534,339:29518565,27165298 +k2534,340:32158356,27165298:424674 +k2534,340:32583029,27165298:424673 +) +(2534,341:20753781,28008383:11829248,513147,134348 +h2534,340:20753781,28008383:0,0,0 +g2534,340:23573139,28008383 +g2534,340:25161731,28008383 +g2534,340:26928581,28008383 +g2534,340:28300249,28008383 +k2534,340:32583029,28008383:1967393 +) +(2534,341:23375221,28849871:9207808,485622,11795 +k2534,341:29338342,28849871:3244688 +k2534,341:32583029,28849871:3244687 +) +(2534,342:20753781,29692955:11829248,505283,102891 +h2534,341:20753781,29692955:0,0,0 +g2534,341:23911305,29692955 +k2534,342:28844856,29692955:3738174 +k2534,342:32583029,29692955:3738173 +) +(2534,343:20753781,30536040:11829248,505283,126483 +h2534,342:20753781,30536040:0,0,0 +r2534,342:20753781,30536040:0,631766,126483 +g2534,342:22064501,30536040 +g2534,342:22064501,30536040 +g2534,342:23017394,30536040 +g2534,342:24771792,30536040 +g2534,342:27390610,30536040 +k2534,343:30584508,30536040:1998521 +k2534,343:32583029,30536040:1998521 +) +(2534,344:20753781,31379124:11829248,505283,126483 +h2534,343:20753781,31379124:0,0,0 +g2534,343:26463932,31379124 +g2534,343:29626699,31379124 +k2534,344:31702553,31379124:880477 +k2534,344:32583029,31379124:880476 +) +(2534,345:20753781,32222208:11829248,505283,102891 +h2534,344:20753781,32222208:0,0,0 +g2534,344:26899091,32222208 +k2534,345:30338749,32222208:2244281 +k2534,345:32583029,32222208:2244280 +) +(2534,346:20753781,33065293:11829248,513147,126483 +h2534,345:20753781,33065293:0,0,0 +g2534,345:23942108,33065293 +g2534,345:24564045,33065293 +g2534,345:26630394,33065293 +k2534,346:29805941,33065293:2777088 +k2534,346:32583029,33065293:2777088 +) +(2534,347:20753781,33908377:11829248,485622,173670 +h2534,346:20753781,33908377:0,0,0 +(2534,346:20753781,33908377:1181614,473825,0 +) +(2534,346:22240333,34082047:355205,473825,0 +) +g2534,346:23296772,33908377 +k2534,347:28537589,33908377:4045440 +k2534,347:32583029,33908377:4045440 +) +(2534,348:20753781,34751461:11829248,513147,102891 +h2534,347:20753781,34751461:0,0,0 +g2534,347:22940717,34751461 +g2534,347:26187370,34751461 +k2534,348:30744416,34751461:1838613 +k2534,348:32583029,34751461:1838613 +) +(2534,349:20753781,35594546:11829248,505283,126483 +h2534,348:20753781,35594546:0,0,0 +r2534,348:20753781,35594546:0,631766,126483 +g2534,348:22064501,35594546 +g2534,348:22064501,35594546 +g2534,348:26693308,35594546 +k2534,349:30235857,35594546:2347172 +k2534,349:32583029,35594546:2347172 +) +(2534,350:20753781,36437630:11829248,505283,7863 +h2534,349:20753781,36437630:0,0,0 +k2534,350:27827409,36437630:4755620 +k2534,350:32583029,36437630:4755620 +) +(2534,351:20753781,37280714:11829248,505283,134348 +h2534,350:20753781,37280714:0,0,0 +r2534,350:20753781,37280714:0,639631,134348 +g2534,350:22064501,37280714 +g2534,350:22064501,37280714 +g2534,350:25956028,37280714 +g2534,350:28141653,37280714 +k2534,351:32583029,37280714:3474065 +) +(2534,351:23375221,38122202:9207808,505283,134348 +g2534,350:27266748,38122202 +g2534,350:29278703,38122202 +k2534,351:32089870,38122202:493159 +k2534,351:32583029,38122202:493159 +) +(2534,352:20753781,38965287:11829248,505283,102891 +h2534,351:20753781,38965287:0,0,0 +r2534,351:20753781,38965287:0,608174,102891 +g2534,351:22064501,38965287 +g2534,351:22064501,38965287 +g2534,351:24250126,38965287 +g2534,351:25416666,38965287 +g2534,351:27428621,38965287 +k2534,352:31164829,38965287:1418200 +k2534,352:32583029,38965287:1418200 +) +(2534,353:20753781,39808371:11829248,505283,102891 +h2534,352:20753781,39808371:0,0,0 +r2534,352:20753781,39808371:0,608174,102891 +k2534,352:22064501,39808371:1310720 +k2534,352:22064501,39808371:0 +k2534,352:25674661,39808371:186559 +k2534,352:26828532,39808371:186560 +k2534,352:30265021,39808371:186559 +k2534,353:32583029,39808371:0 +k2534,353:32583029,39808371:0 +) +(2534,354:20753781,40651456:11829248,513147,102891 +h2534,353:20753781,40651456:0,0,0 +r2534,353:20753781,40651456:0,616038,102891 +g2534,353:22064501,40651456 +g2534,353:22064501,40651456 +g2534,353:25994039,40651456 +k2534,354:29886223,40651456:2696807 +k2534,354:32583029,40651456:2696806 +) +(2534,355:20753781,41494540:11829248,505283,102891 +h2534,354:20753781,41494540:0,0,0 +g2534,354:23904096,41494540 +g2534,354:25472372,41494540 +g2534,354:27040648,41494540 +g2534,354:30131981,41494540 +k2534,355:31955194,41494540:627836 +k2534,355:32583029,41494540:627835 +) +(2534,356:20753781,42337624:11829248,505283,102891 +h2534,355:20753781,42337624:0,0,0 +k2534,355:25061789,42337624:194314 +k2534,355:25828233,42337624:194315 +k2534,355:27320815,42337624:194314 +k2534,355:28485718,42337624:194315 +k2534,355:29650620,42337624:194314 +k2534,355:31213982,42337624:194315 +k2534,355:32583029,42337624:0 +) +(2534,356:23375221,43179112:9207808,485622,102891 +g2534,355:24943497,43179112 +k2534,356:29360952,43179112:3222078 +k2534,356:32583029,43179112:3222077 +) +(2534,357:20753781,44022197:11829248,505283,134348 +h2534,356:20753781,44022197:0,0,0 +g2534,356:26556994,44022197 +g2534,356:29145010,44022197 +k2534,357:32223236,44022197:359793 +k2534,357:32583029,44022197:359793 +) +(2534,358:20753781,44865281:11829248,513147,126483 +h2534,357:20753781,44865281:0,0,0 +g2534,357:24813736,44865281 +g2534,357:27567558,44865281 +g2534,357:28426079,44865281 +k2534,357:32583029,44865281:1329071 +) +(2534,358:23375221,45706769:9207808,485622,11795 +k2534,358:29338342,45706769:3244688 +k2534,358:32583029,45706769:3244687 +) +] +(2534,364:32583029,45706769:0,355205,126483 +h2534,364:32583029,45706769:420741,355205,126483 +k2534,364:32583029,45706769:-420741 +) +) +] +(2534,364:32583029,45706769:0,0,0 +g2534,364:32583029,45706769 +) +) +] +(2534,364:6630773,47279633:25952256,0,0 +h2534,364:6630773,47279633:25952256,0,0 +) +] +h2534,364:4262630,4025873:0,0,0 ] -h1,17320:4262630,4025873:0,0,0 -] -!3420 +!28092 }339 -Input:2537:D:\aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.ind -!93 +!12 {340 -[2537,84:4262630,47279633:28320399,43253760,11795 -(2537,84:4262630,4025873:0,0,0 -[2537,84:-473657,4025873:11829248,0,0 -(2537,84:-473657,-710414:11829248,0,0 -h2537,84:-473657,-710414:0,0,0 -(2537,84:-473657,-710414:0,0,0 -(2537,84:-473657,-710414:0,0,0 -g2537,84:-473657,-710414 -(2537,84:-473657,-710414:65781,0,65781 -g2537,84:-407876,-710414 -[2537,84:-407876,-644633:0,0,0 +[2534,458:4262630,47279633:28320399,43253760,0 +(2534,458:4262630,4025873:0,0,0 +[2534,458:-473657,4025873:11829248,0,0 +(2534,458:-473657,-710414:11829248,0,0 +h2534,458:-473657,-710414:0,0,0 +(2534,458:-473657,-710414:0,0,0 +(2534,458:-473657,-710414:0,0,0 +g2534,458:-473657,-710414 +(2534,458:-473657,-710414:65781,0,65781 +g2534,458:-407876,-710414 +[2534,458:-407876,-644633:0,0,0 ] ) -k2537,84:-473657,-710414:-65781 +k2534,458:-473657,-710414:-65781 ) ) -k2537,84:11355591,-710414:11829248 -g2537,84:11355591,-710414 +k2534,458:11355591,-710414:11829248 +g2534,458:11355591,-710414 ) ] ) -[2537,84:6630773,47279633:25952256,43253760,11795 -[2537,84:6630773,4812305:25952256,786432,0 -(2537,84:6630773,4812305:25952256,0,0 -(2537,84:6630773,4812305:25952256,0,0 -g2537,84:3078558,4812305 -[2537,84:3078558,4812305:0,0,0 -(2537,84:3078558,2439708:0,1703936,0 -k2537,84:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,84:2537886,2439708:1179648,16384,0 +[2534,458:6630773,47279633:25952256,43253760,0 +[2534,458:6630773,4812305:25952256,786432,0 +(2534,458:6630773,4812305:25952256,505283,11795 +(2534,458:6630773,4812305:25952256,505283,11795 +g2534,458:3078558,4812305 +[2534,458:3078558,4812305:0,0,0 +(2534,458:3078558,2439708:0,1703936,0 +k2534,458:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,458:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,84:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,458:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[2537,84:3078558,4812305:0,0,0 -(2537,84:3078558,2439708:0,1703936,0 -g2537,84:29030814,2439708 -g2537,84:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,84:36151628,1915420:16384,1179648,0 +[2534,458:3078558,4812305:0,0,0 +(2534,458:3078558,2439708:0,1703936,0 +g2534,458:29030814,2439708 +g2534,458:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,458:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,84:37855564,2439708:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,458:37855564,2439708:1179648,16384,0 ) ) -k2537,84:3078556,2439708:-34777008 +k2534,458:3078556,2439708:-34777008 ) ] -[2537,84:3078558,4812305:0,0,0 -(2537,84:3078558,49800853:0,16384,2228224 -k2537,84:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,84:2537886,49800853:1179648,16384,0 +[2534,458:3078558,4812305:0,0,0 +(2534,458:3078558,49800853:0,16384,2228224 +k2534,458:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,458:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,84:3078558,51504789:16384,1179648,0 +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,458:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] ) ) ) ] -[2537,84:3078558,4812305:0,0,0 -(2537,84:3078558,49800853:0,16384,2228224 -g2537,84:29030814,49800853 -g2537,84:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,84:36151628,51504789:16384,1179648,0 +[2534,458:3078558,4812305:0,0,0 +(2534,458:3078558,49800853:0,16384,2228224 +g2534,458:29030814,49800853 +g2534,458:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,458:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,84:37855564,49800853:1179648,16384,0 -) +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,458:37855564,49800853:1179648,16384,0 ) -k2537,84:3078556,49800853:-34777008 -) -] -g2537,84:6630773,4812305 ) +k2534,458:3078556,49800853:-34777008 ) ] -[2537,84:6630773,45706769:25952256,40108032,0 -(2537,84:6630773,45706769:25952256,40108032,0 -(2537,84:6630773,45706769:0,0,0 -g2537,84:6630773,45706769 -) -[2537,84:6630773,45706769:25952256,40108032,0 -[2537,1:6630773,12106481:25952256,6507744,0 -(2537,1:6630773,7073297:25952256,32768,229376 -(2537,1:6630773,7073297:0,32768,229376 -(2537,1:6630773,7073297:5505024,32768,229376 -r2537,1:12135797,7073297:5505024,262144,229376 -) -k2537,1:6630773,7073297:-5505024 +g2534,458:6630773,4812305 +g2534,458:6630773,4812305 +g2534,458:9313817,4812305 +g2534,458:11188146,4812305 +k2534,458:31387652,4812305:20199506 +) +) +] +[2534,458:6630773,45706769:25952256,40108032,0 +(2534,458:6630773,45706769:25952256,40108032,0 +(2534,458:6630773,45706769:0,0,0 +g2534,458:6630773,45706769 ) -) -(2537,1:6630773,8803457:25952256,909509,22412 -h2537,1:6630773,8803457:0,0,0 -g2537,1:11695002,8803457 -k2537,1:23726232,8803457:8856797 -k2537,1:32583029,8803457:8856797 -) -(2537,1:6630773,9419505:25952256,32768,0 -(2537,1:6630773,9419505:5505024,32768,0 -r2537,1:12135797,9419505:5505024,32768,0 -) -k2537,1:22359413,9419505:10223616 -k2537,1:32583029,9419505:10223616 -) -] -(2537,84:6630773,45706769:25952256,32627728,134348 -[2537,84:6630773,45706769:11829248,32627728,134348 -(2537,5:6630773,13734401:11829248,513147,134348 -h2537,3:6630773,13734401:0,0,0 -k2537,3:9996866,13734401:191529 -k2537,3:13547770,13734401:191529 -k2537,4:13547770,13734401:0 -k2537,4:14706610,13734401:191529 -k2537,4:17800729,13734401:191529 -k2537,4:18460021,13734401:0 -) -(2537,5:9252213,14575889:9207808,505283,134348 -g2537,4:12344201,14575889 -k2537,5:16989393,14575889:1470628 -k2537,5:18460021,14575889:1470628 -) -(2537,6:6630773,15436782:11829248,513147,134348 -h2537,5:6630773,15436782:0,0,0 -g2537,5:9157185,15436782 -g2537,5:10015706,15436782 -g2537,5:11653450,15436782 -k2537,6:15455195,15436782:3004827 -k2537,6:18460021,15436782:3004826 -) -(2537,7:6630773,16297675:11829248,513147,126483 -h2537,6:6630773,16297675:0,0,0 -g2537,6:9384595,16297675 -g2537,6:10243116,16297675 -g2537,6:13998328,16297675 -g2537,6:15566604,16297675 -g2537,6:16733144,16297675 -k2537,7:18460021,16297675:483659 -) -(2537,7:9252213,17139163:9207808,505283,7863 -g2537,6:11264168,17139163 -k2537,7:16021099,17139163:2438923 -k2537,7:18460021,17139163:2438922 -) -(2537,8:6630773,18000056:11829248,513147,126483 -h2537,7:6630773,18000056:0,0,0 -g2537,7:9384595,18000056 -g2537,7:10243116,18000056 -g2537,7:13270224,18000056 -g2537,7:14838500,18000056 -g2537,7:16005040,18000056 -k2537,8:18460021,18000056:1211763 -) -(2537,8:9252213,18841544:9207808,505283,7863 -g2537,7:11264168,18841544 -k2537,8:16021099,18841544:2438923 -k2537,8:18460021,18841544:2438922 -) -(2537,9:6630773,19702437:11829248,513147,102891 -h2537,8:6630773,19702437:0,0,0 -r2537,8:6630773,19702437:0,616038,102891 -g2537,8:7941493,19702437 -g2537,8:7941493,19702437 -g2537,8:10128429,19702437 -g2537,8:13044781,19702437 -k2537,9:16350090,19702437:2109932 -k2537,9:18460021,19702437:2109931 -) -(2537,10:6630773,20563330:11829248,513147,126483 -h2537,9:6630773,20563330:0,0,0 -g2537,9:9893810,20563330 -g2537,9:11060350,20563330 -g2537,9:13814172,20563330 -g2537,9:14672693,20563330 -k2537,10:18257514,20563330:202508 -k2537,10:18460021,20563330:202507 -) -(2537,12:6630773,21424223:11829248,505283,134348 -h2537,10:6630773,21424223:0,0,0 -g2537,10:10620604,21424223 -g2537,10:14179208,21424223 -k2537,11:14179208,21424223:0 -g2537,11:15345748,21424223 -k2537,11:18460021,21424223:211683 -) -(2537,12:9252213,22265711:9207808,513147,134348 -g2537,11:10110734,22265711 -g2537,11:13202722,22265711 -k2537,12:17726673,22265711:733349 -k2537,12:18460021,22265711:733348 -) -(2537,13:6630773,23126604:11829248,513147,126483 -h2537,12:6630773,23126604:0,0,0 -g2537,12:9438335,23126604 -g2537,12:10604875,23126604 -g2537,12:13358697,23126604 -g2537,12:14217218,23126604 -k2537,13:17665724,23126604:794298 -k2537,13:18460021,23126604:794297 -) -(2537,14:6630773,23987497:11829248,505283,126483 -h2537,13:6630773,23987497:0,0,0 -g2537,13:9939685,23987497 -k2537,14:14797542,23987497:3662480 -k2537,14:18460021,23987497:3662479 -) -(2537,15:6630773,24848389:11829248,513147,126483 -h2537,14:6630773,24848389:0,0,0 -g2537,14:8593576,24848389 -g2537,14:11992273,24848389 -k2537,15:15823836,24848389:2636186 -k2537,15:18460021,24848389:2636185 -) -(2537,16:6630773,25709282:11829248,513147,102891 -h2537,15:6630773,25709282:0,0,0 -g2537,15:10106147,25709282 -g2537,15:13216485,25709282 -k2537,16:16236712,25709282:2223309 -k2537,16:18460021,25709282:2223309 -) -(2537,17:6630773,26570175:11829248,485622,126483 -h2537,16:6630773,26570175:0,0,0 -r2537,16:6630773,26570175:0,612105,126483 -g2537,16:7941493,26570175 -g2537,16:7941493,26570175 -g2537,16:9526808,26570175 -g2537,16:13285297,26570175 -k2537,17:16271118,26570175:2188903 -k2537,17:18460021,26570175:2188903 -) -(2537,18:6630773,27431068:11829248,485622,126483 -h2537,17:6630773,27431068:0,0,0 -g2537,17:8983515,27431068 -k2537,18:14682526,27431068:3777495 -k2537,18:18460021,27431068:3777495 -) -(2537,19:6630773,28291961:11829248,505283,102891 -h2537,18:6630773,28291961:0,0,0 -r2537,18:6630773,28291961:0,608174,102891 -g2537,18:7941493,28291961 -g2537,18:7941493,28291961 -g2537,18:11989651,28291961 -k2537,19:15623295,28291961:2836726 -k2537,19:18460021,28291961:2836726 -) -(2537,20:6630773,29152854:11829248,485622,134348 -h2537,19:6630773,29152854:0,0,0 -g2537,19:10649440,29152854 -k2537,20:14953190,29152854:3506832 -k2537,20:18460021,29152854:3506831 -) -(2537,21:6630773,30013747:11829248,505283,134348 -h2537,20:6630773,30013747:0,0,0 -r2537,20:6630773,30013747:0,639631,134348 -g2537,20:7941493,30013747 -g2537,20:7941493,30013747 -g2537,20:11024961,30013747 -k2537,21:15140950,30013747:3319071 -k2537,21:18460021,30013747:3319071 -) -(2537,22:6630773,30874640:11829248,513147,102891 -h2537,21:6630773,30874640:0,0,0 -r2537,21:6630773,30874640:0,616038,102891 -g2537,21:7941493,30874640 -g2537,21:7941493,30874640 -g2537,21:10788377,30874640 -k2537,22:15022658,30874640:3437363 -k2537,22:18460021,30874640:3437363 -) -(2537,23:6630773,31735533:11829248,505283,102891 -h2537,22:6630773,31735533:0,0,0 -g2537,22:10112700,31735533 -k2537,23:15247119,31735533:3212903 -k2537,23:18460021,31735533:3212902 -) -(2537,27:6630773,33575198:11829248,505283,102891 -h2537,26:6630773,33575198:0,0,0 -g2537,26:8263930,33575198 -g2537,26:9051672,33575198 -k2537,27:13955076,33575198:4504945 -k2537,27:18460021,33575198:4504945 -) -(2537,28:6630773,34436091:11829248,505283,102891 -h2537,27:6630773,34436091:0,0,0 -g2537,27:8518209,34436091 -k2537,28:13887574,34436091:4572447 -k2537,28:18460021,34436091:4572447 -) -(2537,29:6630773,35296984:11829248,505283,134348 -h2537,28:6630773,35296984:0,0,0 -g2537,28:8591610,35296984 -g2537,28:9986216,35296984 -k2537,29:14422348,35296984:4037673 -k2537,29:18460021,35296984:4037673 -) -(2537,30:6630773,36157877:11829248,481690,102891 -h2537,29:6630773,36157877:0,0,0 -g2537,29:8387137,36157877 -k2537,30:13822038,36157877:4637983 -k2537,30:18460021,36157877:4637983 -) -(2537,31:6630773,37018770:11829248,505283,102891 -h2537,30:6630773,37018770:0,0,0 -g2537,30:11250405,37018770 -k2537,31:15452902,37018770:3007120 -k2537,31:18460021,37018770:3007119 -) -(2537,32:6630773,37879663:11829248,505283,134348 -h2537,31:6630773,37879663:0,0,0 -g2537,31:10557034,37879663 -k2537,32:14906987,37879663:3553035 -k2537,32:18460021,37879663:3553034 -) -(2537,33:6630773,38740556:11829248,505283,102891 -h2537,32:6630773,38740556:0,0,0 -g2537,32:10744467,38740556 -k2537,33:15000703,38740556:3459318 -k2537,33:18460021,38740556:3459318 -) -(2537,34:6630773,39601449:11829248,505283,102891 -h2537,33:6630773,39601449:0,0,0 -g2537,33:9341342,39601449 -g2537,33:12990386,39601449 -k2537,34:16123663,39601449:2336359 -k2537,34:18460021,39601449:2336358 -) -(2537,35:6630773,40462342:11829248,505283,126483 -h2537,34:6630773,40462342:0,0,0 -g2537,34:7989989,40462342 -g2537,34:9970487,40462342 -g2537,34:11137027,40462342 -g2537,34:13117525,40462342 -g2537,34:14476741,40462342 -k2537,34:18460021,40462342:2791835 -) -(2537,35:9252213,41303830:9207808,505283,126483 -g2537,34:12277354,41303830 -k2537,35:16007336,41303830:2452685 -k2537,35:18460021,41303830:2452685 -) -(2537,39:6630773,43143495:11829248,485622,102891 -h2537,38:6630773,43143495:0,0,0 -g2537,38:7457181,43143495 -g2537,38:8626998,43143495 -g2537,38:9796815,43143495 -g2537,38:10966632,43143495 -g2537,38:12136449,43143495 -g2537,38:13306266,43143495 -g2537,38:14476083,43143495 -g2537,38:16044359,43143495 -k2537,38:18460021,43143495:1046615 -) -(2537,39:9252213,43984983:9207808,485622,11795 -k2537,39:14453806,43984983:4006216 -k2537,39:18460021,43984983:4006215 -) -(2537,40:6630773,44845876:11829248,485622,102891 -h2537,39:6630773,44845876:0,0,0 -g2537,39:8286867,44845876 -g2537,39:9058225,44845876 -g2537,39:10228042,44845876 -g2537,39:11397859,44845876 -g2537,39:12567676,44845876 -g2537,39:14135952,44845876 -k2537,40:16895675,44845876:1564346 -k2537,40:18460021,44845876:1564346 -) -(2537,41:6630773,45706769:11829248,513147,134348 -h2537,40:6630773,45706769:0,0,0 -g2537,40:10276540,45706769 -g2537,40:13491080,45706769 -g2537,40:14657620,45706769 -k2537,41:17670967,45706769:789055 -k2537,41:18460021,45706769:789054 -) -] -k2537,84:19606901,45706769:1146880 -r2537,84:19606901,45706769:0,32762076,134348 -k2537,84:20753781,45706769:1146880 -[2537,84:20753781,45706769:11829248,32627728,134348 -(2537,42:20753781,13734401:11829248,505283,134348 -h2537,41:20753781,13734401:0,0,0 -g2537,41:23663579,13734401 -g2537,41:27379470,13734401 -g2537,41:28972650,13734401 -k2537,41:32583029,13734401:1822557 -) -(2537,42:23375221,14575889:9207808,485622,11795 -k2537,42:29338342,14575889:3244688 -k2537,42:32583029,14575889:3244687 -) -(2537,43:20753781,15421040:11829248,505283,126483 -h2537,42:20753781,15421040:0,0,0 -g2537,42:23927689,15421040 -g2537,42:26262081,15421040 -g2537,42:28461469,15421040 -k2537,43:30920708,15421040:1662321 -k2537,43:32583029,15421040:1662321 -) -(2537,44:20753781,16266192:11829248,505283,134348 -h2537,43:20753781,16266192:0,0,0 -g2537,43:23927689,16266192 -g2537,43:25992728,16266192 -g2537,43:29584100,16266192 -k2537,44:31482024,16266192:1101006 -k2537,44:32583029,16266192:1101005 -) -(2537,45:20753781,17111343:11829248,505283,134348 -h2537,44:20753781,17111343:0,0,0 -g2537,44:23927689,17111343 -g2537,44:26496700,17111343 -k2537,45:29938324,17111343:2644706 -k2537,45:32583029,17111343:2644705 -) -(2537,46:20753781,17956495:11829248,505283,102891 -h2537,45:20753781,17956495:0,0,0 -g2537,45:23764505,17956495 -g2537,45:26556338,17956495 -g2537,45:29407154,17956495 -k2537,46:31592780,17956495:990249 -k2537,46:32583029,17956495:990249 -) -(2537,47:20753781,18801646:11829248,505283,102891 -h2537,46:20753781,18801646:0,0,0 -g2537,46:23359492,18801646 -k2537,47:28568949,18801646:4014080 -k2537,47:32583029,18801646:4014080 -) -(2537,48:20753781,19646798:11829248,505283,126483 -h2537,47:20753781,19646798:0,0,0 -r2537,47:20753781,19646798:0,631766,126483 -g2537,47:22064501,19646798 -g2537,47:22064501,19646798 -g2537,47:23017394,19646798 -g2537,47:24771792,19646798 -g2537,47:27390610,19646798 -k2537,48:30584508,19646798:1998521 -k2537,48:32583029,19646798:1998521 -) -(2537,49:20753781,20491949:11829248,505283,7863 -h2537,48:20753781,20491949:0,0,0 -g2537,48:23185822,20491949 -g2537,48:24576496,20491949 -k2537,49:29636203,20491949:2946826 -k2537,49:32583029,20491949:2946826 -) -(2537,50:20753781,21337101:11829248,505283,102891 -h2537,49:20753781,21337101:0,0,0 -r2537,49:20753781,21337101:0,608174,102891 -g2537,49:22064501,21337101 -g2537,49:22064501,21337101 -g2537,49:25412080,21337101 -k2537,50:29958313,21337101:2624717 -k2537,50:32583029,21337101:2624716 -) -(2537,51:20753781,22182252:11829248,505283,134348 -h2537,50:20753781,22182252:0,0,0 -r2537,50:20753781,22182252:0,639631,134348 -g2537,50:22064501,22182252 -g2537,50:22064501,22182252 -g2537,50:24507027,22182252 -k2537,51:29505786,22182252:3077243 -k2537,51:32583029,22182252:3077243 -) -(2537,52:20753781,23027404:11829248,505283,134348 -h2537,51:20753781,23027404:0,0,0 -r2537,51:20753781,23027404:0,639631,134348 -g2537,51:22064501,23027404 -g2537,51:22064501,23027404 -g2537,51:25057530,23027404 -g2537,51:27660620,23027404 -g2537,51:30216524,23027404 -k2537,52:32360535,23027404:222495 -k2537,52:32583029,23027404:222494 -) -(2537,53:20753781,23872555:11829248,505283,126483 -h2537,52:20753781,23872555:0,0,0 -g2537,52:23129461,23872555 -g2537,52:26056954,23872555 -k2537,53:30679208,23872555:1903821 -k2537,53:32583029,23872555:1903821 -) -(2537,54:20753781,24717707:11829248,485622,102891 -h2537,53:20753781,24717707:0,0,0 -g2537,53:23324758,24717707 -k2537,54:28551582,24717707:4031447 -k2537,54:32583029,24717707:4031447 -) -(2537,55:20753781,25562858:11829248,505283,7863 -h2537,54:20753781,25562858:0,0,0 -k2537,55:27476464,25562858:5106565 -k2537,55:32583029,25562858:5106565 -) -(2537,56:20753781,26408010:11829248,513147,102891 -h2537,55:20753781,26408010:0,0,0 -r2537,55:20753781,26408010:0,616038,102891 -g2537,55:22064501,26408010 -g2537,55:22064501,26408010 -g2537,55:25849860,26408010 -k2537,56:30575661,26408010:2007368 -k2537,56:32583029,26408010:2007368 -) -(2537,57:20753781,27253161:11829248,485622,102891 -h2537,56:20753781,27253161:0,0,0 -r2537,56:20753781,27253161:0,588513,102891 -g2537,56:22064501,27253161 -g2537,56:22064501,27253161 -g2537,56:24505717,27253161 -k2537,57:29142062,27253161:3440968 -k2537,57:32583029,27253161:3440967 -) -(2537,58:20753781,28098313:11829248,513147,134348 -h2537,57:20753781,28098313:0,0,0 -g2537,57:24706912,28098313 -g2537,57:25565433,28098313 -g2537,57:28196703,28098313 -k2537,57:32583029,28098313:2698119 -) -(2537,58:23375221,28939801:9207808,505283,102891 -g2537,57:26564202,28939801 -k2537,58:30534374,28939801:2048656 -k2537,58:32583029,28939801:2048655 -) -(2537,59:20753781,29784952:11829248,485622,126483 -h2537,58:20753781,29784952:0,0,0 -g2537,58:24706912,29784952 -g2537,58:28156727,29784952 -k2537,59:31330636,29784952:1252393 -k2537,59:32583029,29784952:1252393 -) -(2537,60:20753781,30630104:11829248,505283,126483 -h2537,59:20753781,30630104:0,0,0 -g2537,59:24366780,30630104 -g2537,59:26062196,30630104 -g2537,59:29951757,30630104 -k2537,60:31665852,30630104:917177 -k2537,60:32583029,30630104:917177 -) -(2537,61:20753781,31475255:11829248,505283,102891 -h2537,60:20753781,31475255:0,0,0 -g2537,60:24546349,31475255 -g2537,60:27994853,31475255 -k2537,61:30687400,31475255:1895629 -k2537,61:32583029,31475255:1895629 -) -(2537,62:20753781,32320407:11829248,505283,102891 -h2537,61:20753781,32320407:0,0,0 -g2537,61:24546349,32320407 -g2537,61:28435910,32320407 -k2537,62:30907929,32320407:1675101 -k2537,62:32583029,32320407:1675100 -) -(2537,63:20753781,33165558:11829248,505283,102891 -h2537,62:20753781,33165558:0,0,0 -g2537,62:23546925,33165558 -k2537,63:28264207,33165558:4318823 -k2537,63:32583029,33165558:4318822 -) -(2537,64:20753781,34010709:11829248,513147,102891 -h2537,63:20753781,34010709:0,0,0 -g2537,63:23240872,34010709 -g2537,63:24099393,34010709 -g2537,63:27374227,34010709 -g2537,63:29097168,34010709 -k2537,64:31238558,34010709:1344472 -k2537,64:32583029,34010709:1344471 -) -(2537,66:20753781,34855861:11829248,505283,134348 -h2537,64:20753781,34855861:0,0,0 -g2537,64:24691184,34855861 -g2537,64:28249788,34855861 -k2537,65:28249788,34855861:0 -g2537,65:29416328,34855861 -k2537,65:32583029,34855861:264111 -) -(2537,66:23375221,35697349:9207808,513147,134348 -g2537,65:24233742,35697349 -g2537,65:27325730,35697349 -k2537,66:31823467,35697349:759563 -k2537,66:32583029,35697349:759562 -) -(2537,67:20753781,36542500:11829248,505283,102891 -h2537,66:20753781,36542500:0,0,0 -g2537,66:24607297,36542500 -k2537,67:29954380,36542500:2628650 -k2537,67:32583029,36542500:2628649 -) -(2537,68:20753781,37387652:11829248,505283,102891 -h2537,67:20753781,37387652:0,0,0 -r2537,67:20753781,37387652:0,608174,102891 -g2537,67:22064501,37387652 -g2537,67:22064501,37387652 -g2537,67:24850436,37387652 -k2537,68:29314421,37387652:3268608 -k2537,68:32583029,37387652:3268608 -) -(2537,69:20753781,38232803:11829248,485622,126483 -h2537,68:20753781,38232803:0,0,0 -r2537,68:20753781,38232803:0,612105,126483 -g2537,68:22064501,38232803 -g2537,68:22064501,38232803 -g2537,68:27342770,38232803 -k2537,69:30560588,38232803:2022441 -k2537,69:32583029,38232803:2022441 -) -(2537,70:20753781,39077955:11829248,485622,126483 -h2537,69:20753781,39077955:0,0,0 -r2537,69:20753781,39077955:0,612105,126483 -g2537,69:22064501,39077955 -g2537,69:22064501,39077955 -g2537,69:25905566,39077955 -k2537,70:29841986,39077955:2741043 -k2537,70:32583029,39077955:2741043 -) -(2537,71:20753781,39923106:11829248,485622,102891 -h2537,70:20753781,39923106:0,0,0 -r2537,70:20753781,39923106:0,588513,102891 -g2537,70:22064501,39923106 -g2537,70:22064501,39923106 -g2537,70:24944153,39923106 -k2537,71:29361280,39923106:3221750 -k2537,71:32583029,39923106:3221749 -) -(2537,72:20753781,40768258:11829248,485622,126483 -h2537,71:20753781,40768258:0,0,0 -r2537,71:20753781,40768258:0,612105,126483 -g2537,71:22064501,40768258 -g2537,71:22064501,40768258 -g2537,71:25595580,40768258 -k2537,72:29686993,40768258:2896036 -k2537,72:32583029,40768258:2896036 -) -(2537,73:20753781,41613409:11829248,485622,102891 -h2537,72:20753781,41613409:0,0,0 -g2537,72:23006908,41613409 -k2537,73:28392657,41613409:4190372 -k2537,73:32583029,41613409:4190372 -) -(2537,77:20753781,43174978:11829248,505283,7863 -h2537,76:20753781,43174978:0,0,0 -k2537,77:27363087,43174978:5219943 -k2537,77:32583029,43174978:5219942 -) -(2537,78:20753781,44020130:11829248,505283,126483 -h2537,77:20753781,44020130:0,0,0 -r2537,77:20753781,44020130:0,631766,126483 -g2537,77:22064501,44020130 -g2537,77:22064501,44020130 -g2537,77:25908187,44020130 -g2537,77:26720178,44020130 -g2537,77:27938492,44020130 -g2537,77:28582710,44020130 -k2537,77:32583029,44020130:1406404 -) -(2537,78:23375221,44861618:9207808,485622,11795 -k2537,78:28939883,44861618:3643146 -k2537,78:32583029,44861618:3643146 -) -(2537,79:20753781,45706769:11829248,505283,134348 -h2537,78:20753781,45706769:0,0,0 -r2537,78:20753781,45706769:0,639631,134348 -g2537,78:22064501,45706769 -g2537,78:22064501,45706769 -g2537,78:24630235,45706769 -g2537,78:26218827,45706769 -g2537,78:27856571,45706769 -k2537,79:31180558,45706769:1402471 -k2537,79:32583029,45706769:1402471 -) -] -(2537,84:32583029,45706769:0,355205,126483 -h2537,84:32583029,45706769:420741,355205,126483 -k2537,84:32583029,45706769:-420741 -) -) -] -(2537,84:32583029,45706769:0,0,0 -g2537,84:32583029,45706769 -) -) -] -(2537,84:6630773,47279633:25952256,485622,11795 -(2537,84:6630773,47279633:25952256,485622,11795 -k2537,84:19009213,47279633:12378440 -k2537,84:32583030,47279633:12378440 -) -) -] -h2537,84:4262630,4025873:0,0,0 -] -!20968 +[2534,458:6630773,45706769:25952256,40108032,0 +(2534,458:6630773,45706769:25952256,40108032,126483 +[2534,458:6630773,45706769:11829248,40108032,102891 +(2534,359:6630773,6254097:11829248,505283,102891 +h2534,358:6630773,6254097:0,0,0 +g2534,358:10690728,6254097 +g2534,358:13848252,6254097 +k2534,359:17513353,6254097:946668 +k2534,359:18460021,6254097:946668 +) +(2534,363:6630773,7839493:11829248,505283,134348 +h2534,362:6630773,7839493:0,0,0 +g2534,362:8898318,7839493 +g2534,362:10288992,7839493 +g2534,362:13131288,7839493 +k2534,363:16393343,7839493:2066678 +k2534,363:18460021,7839493:2066678 +) +(2534,364:6630773,8685993:11829248,481690,126483 +h2534,363:6630773,8685993:0,0,0 +g2534,363:10859811,8685993 +k2534,364:15257605,8685993:3202417 +k2534,364:18460021,8685993:3202416 +) +(2534,365:6630773,9532493:11829248,513147,102891 +h2534,364:6630773,9532493:0,0,0 +g2534,364:9227964,9532493 +g2534,364:10796240,9532493 +g2534,364:12364516,9532493 +k2534,365:16009957,9532493:2450064 +k2534,365:18460021,9532493:2450064 +) +(2534,366:6630773,10378994:11829248,505283,126483 +h2534,365:6630773,10378994:0,0,0 +g2534,365:8947470,10378994 +g2534,365:11863822,10378994 +g2534,365:13981945,10378994 +k2534,366:16818672,10378994:1641350 +k2534,366:18460021,10378994:1641349 +) +(2534,367:6630773,11225494:11829248,485622,102891 +h2534,366:6630773,11225494:0,0,0 +g2534,366:9393770,11225494 +g2534,366:10962046,11225494 +g2534,366:12530322,11225494 +k2534,367:16092860,11225494:2367161 +k2534,367:18460021,11225494:2367161 +) +(2534,368:6630773,12071994:11829248,485622,102891 +h2534,367:6630773,12071994:0,0,0 +g2534,367:9315782,12071994 +k2534,368:14485590,12071994:3974431 +k2534,368:18460021,12071994:3974431 +) +(2534,369:6630773,12918494:11829248,485622,126483 +h2534,368:6630773,12918494:0,0,0 +g2534,368:10251637,12918494 +k2534,369:14754288,12918494:3705733 +k2534,369:18460021,12918494:3705733 +) +(2534,370:6630773,13764994:11829248,505283,126483 +h2534,369:6630773,13764994:0,0,0 +g2534,369:9445544,13764994 +g2534,369:12651565,13764994 +k2534,370:15954252,13764994:2505769 +k2534,370:18460021,13764994:2505769 +) +(2534,371:6630773,14611495:11829248,505283,102891 +h2534,370:6630773,14611495:0,0,0 +g2534,370:8990724,14611495 +k2534,371:14323061,14611495:4136960 +k2534,371:18460021,14611495:4136960 +) +(2534,372:6630773,15457995:11829248,505283,102891 +h2534,371:6630773,15457995:0,0,0 +g2534,371:8216088,15457995 +g2534,371:9382628,15457995 +g2534,371:12831787,15457995 +k2534,372:16804908,15457995:1655113 +k2534,372:18460021,15457995:1655113 +) +(2534,373:6630773,16304495:11829248,505283,102891 +h2534,372:6630773,16304495:0,0,0 +g2534,372:10079932,16304495 +g2534,372:12770840,16304495 +k2534,373:16974647,16304495:1485374 +k2534,373:18460021,16304495:1485374 +) +(2534,374:6630773,17150995:11829248,505283,102891 +h2534,373:6630773,17150995:0,0,0 +g2534,373:9186021,17150995 +g2534,373:13340348,17150995 +k2534,374:16497873,17150995:1962148 +k2534,374:18460021,17150995:1962148 +) +(2534,375:6630773,17997495:11829248,505283,7863 +h2534,374:6630773,17997495:0,0,0 +k2534,375:13953438,17997495:4506583 +k2534,375:18460021,17997495:4506583 +) +(2534,376:6630773,18843996:11829248,505283,102891 +h2534,375:6630773,18843996:0,0,0 +r2534,375:6630773,18843996:0,608174,102891 +g2534,375:7941493,18843996 +g2534,375:7941493,18843996 +g2534,375:10497397,18843996 +k2534,376:14877168,18843996:3582853 +k2534,376:18460021,18843996:3582853 +) +(2534,377:6630773,19690496:11829248,513147,134348 +h2534,376:6630773,19690496:0,0,0 +r2534,376:6630773,19690496:0,647495,134348 +g2534,376:7941493,19690496 +g2534,376:7941493,19690496 +g2534,376:10572763,19690496 +g2534,376:12633870,19690496 +k2534,377:15945405,19690496:2514617 +k2534,377:18460021,19690496:2514616 +) +(2534,378:6630773,20536996:11829248,485622,134348 +h2534,377:6630773,20536996:0,0,0 +r2534,377:6630773,20536996:0,619970,134348 +g2534,377:7941493,20536996 +g2534,377:7941493,20536996 +g2534,377:10544583,20536996 +g2534,377:11714400,20536996 +k2534,378:15485670,20536996:2974352 +k2534,378:18460021,20536996:2974351 +) +(2534,379:6630773,21383496:11829248,505283,102891 +h2534,378:6630773,21383496:0,0,0 +r2534,378:6630773,21383496:0,608174,102891 +g2534,378:7941493,21383496 +g2534,378:7941493,21383496 +g2534,378:10197242,21383496 +k2534,379:14727091,21383496:3732931 +k2534,379:18460021,21383496:3732930 +) +(2534,380:6630773,22229996:11829248,505283,102891 +h2534,379:6630773,22229996:0,0,0 +g2534,379:9646084,22229996 +g2534,379:11036758,22229996 +g2534,379:12744626,22229996 +g2534,379:16393670,22229996 +k2534,380:18387604,22229996:72418 +k2534,380:18460021,22229996:72417 +) +(2534,381:6630773,23076497:11829248,505283,102891 +h2534,380:6630773,23076497:0,0,0 +g2534,380:9450131,23076497 +g2534,380:11833675,23076497 +k2534,381:15545307,23076497:2914714 +k2534,381:18460021,23076497:2914714 +) +(2534,382:6630773,23922997:11829248,505283,134348 +h2534,381:6630773,23922997:0,0,0 +g2534,381:9623802,23922997 +g2534,381:12053221,23922997 +g2534,381:13443895,23922997 +g2534,381:15826128,23922997 +k2534,381:18460021,23922997:449578 +) +(2534,382:9252213,24764485:9207808,485622,0 +k2534,382:14254576,24764485:4205445 +k2534,382:18460021,24764485:4205445 +) +(2534,386:6630773,26349881:11829248,505283,134348 +h2534,385:6630773,26349881:0,0,0 +g2534,385:8789528,26349881 +g2534,385:11230744,26349881 +k2534,386:15443071,26349881:3016950 +k2534,386:18460021,26349881:3016950 +) +(2534,387:6630773,27196381:11829248,505283,134348 +h2534,386:6630773,27196381:0,0,0 +r2534,386:6630773,27196381:0,639631,134348 +g2534,386:7941493,27196381 +g2534,386:7941493,27196381 +g2534,386:8826884,27196381 +g2534,386:12000792,27196381 +g2534,386:14569803,27196381 +k2534,387:17112601,27196381:1347421 +k2534,387:18460021,27196381:1347420 +) +(2534,388:6630773,28042881:11829248,505283,134348 +h2534,387:6630773,28042881:0,0,0 +g2534,387:11673768,28042881 +g2534,387:16398913,28042881 +k2534,388:18027156,28042881:432866 +k2534,388:18460021,28042881:432865 +) +(2534,389:6630773,28889382:11829248,505283,134348 +h2534,388:6630773,28889382:0,0,0 +g2534,388:9293500,28889382 +k2534,389:14474449,28889382:3985572 +k2534,389:18460021,28889382:3985572 +) +(2534,390:6630773,29735882:11829248,505283,102891 +h2534,389:6630773,29735882:0,0,0 +r2534,389:6630773,29735882:0,608174,102891 +g2534,389:7941493,29735882 +g2534,389:7941493,29735882 +g2534,389:10096972,29735882 +k2534,390:14676956,29735882:3783066 +k2534,390:18460021,29735882:3783065 +) +(2534,391:6630773,30582382:11829248,485622,102891 +h2534,390:6630773,30582382:0,0,0 +g2534,390:9159807,30582382 +k2534,391:14407603,30582382:4052419 +k2534,391:18460021,30582382:4052418 +) +(2534,392:6630773,31428882:11829248,473825,134348 +h2534,391:6630773,31428882:0,0,0 +g2534,391:9883980,31428882 +k2534,392:15460111,31428882:2999911 +k2534,392:18460021,31428882:2999910 +) +(2534,393:6630773,32275382:11829248,485622,102891 +h2534,392:6630773,32275382:0,0,0 +r2534,392:6630773,32275382:0,588513,102891 +g2534,392:7941493,32275382 +g2534,392:7941493,32275382 +g2534,392:10067480,32275382 +g2534,392:10838838,32275382 +g2534,392:11610196,32275382 +g2534,392:12381554,32275382 +g2534,392:13551371,32275382 +k2534,393:16404155,32275382:2055866 +k2534,393:18460021,32275382:2055866 +) +(2534,394:6630773,33121883:11829248,505283,102891 +h2534,393:6630773,33121883:0,0,0 +r2534,393:6630773,33121883:0,608174,102891 +g2534,393:7941493,33121883 +g2534,393:7941493,33121883 +g2534,393:12254416,33121883 +g2534,393:13025774,33121883 +g2534,393:14523271,33121883 +g2534,393:15693088,33121883 +g2534,393:16862905,33121883 +k2534,393:18460021,33121883:228069 +) +(2534,394:9252213,33963371:9207808,485622,11795 +k2534,394:14453806,33963371:4006216 +k2534,394:18460021,33963371:4006215 +) +(2534,395:6630773,34809871:11829248,485622,102891 +h2534,394:6630773,34809871:0,0,0 +r2534,394:6630773,34809871:0,588513,102891 +g2534,394:7941493,34809871 +g2534,394:7941493,34809871 +g2534,394:9011041,34809871 +g2534,394:9794195,34809871 +g2534,394:10565553,34809871 +g2534,394:11336911,34809871 +g2534,394:12108269,34809871 +k2534,395:15682604,34809871:2777417 +k2534,395:18460021,34809871:2777417 +) +(2534,396:6630773,35656371:11829248,485622,102891 +h2534,395:6630773,35656371:0,0,0 +r2534,395:6630773,35656371:0,588513,102891 +g2534,395:7941493,35656371 +g2534,395:7941493,35656371 +g2534,395:9766014,35656371 +g2534,395:10537372,35656371 +g2534,395:11308730,35656371 +g2534,395:12080088,35656371 +g2534,395:13249905,35656371 +k2534,396:16452652,35656371:2007370 +k2534,396:18460021,35656371:2007369 +) +(2534,397:6630773,36502871:11829248,426639,126483 +h2534,396:6630773,36502871:0,0,0 +k2534,397:14083855,36502871:4376167 +k2534,397:18460021,36502871:4376166 +) +(2534,398:6630773,37349371:11829248,485622,126483 +h2534,397:6630773,37349371:0,0,0 +r2534,397:6630773,37349371:0,612105,126483 +g2534,397:7941493,37349371 +g2534,397:7941493,37349371 +g2534,397:12068295,37349371 +k2534,398:16224916,37349371:2235105 +k2534,398:18460021,37349371:2235105 +) +(2534,399:6630773,38195872:11829248,513147,134348 +h2534,398:6630773,38195872:0,0,0 +r2534,398:6630773,38195872:0,647495,134348 +g2534,398:7941493,38195872 +g2534,398:7941493,38195872 +g2534,398:10744467,38195872 +g2534,398:12400561,38195872 +g2534,398:13968837,38195872 +k2534,399:16812118,38195872:1647904 +k2534,399:18460021,38195872:1647903 +) +(2534,400:6630773,39042372:11829248,485622,102891 +h2534,399:6630773,39042372:0,0,0 +r2534,399:6630773,39042372:0,588513,102891 +g2534,399:7941493,39042372 +g2534,399:7941493,39042372 +g2534,399:9248936,39042372 +k2534,400:14815237,39042372:3644785 +k2534,400:18460021,39042372:3644784 +) +(2534,401:6630773,39888872:11829248,485622,102891 +h2534,400:6630773,39888872:0,0,0 +g2534,400:7700321,39888872 +g2534,400:8483475,39888872 +g2534,400:9254833,39888872 +g2534,400:10026191,39888872 +g2534,400:10797549,39888872 +g2534,400:11967366,39888872 +k2534,401:15811382,39888872:2648639 +k2534,401:18460021,39888872:2648639 +) +(2534,402:6630773,40735372:11829248,513147,102891 +h2534,401:6630773,40735372:0,0,0 +g2534,401:9741111,40735372 +g2534,401:10907651,40735372 +g2534,401:14383025,40735372 +k2534,402:17790243,40735372:669779 +k2534,402:18460021,40735372:669778 +) +(2534,406:6630773,42320768:11829248,505283,134348 +h2534,405:6630773,42320768:0,0,0 +k2534,406:14000624,42320768:4459397 +k2534,406:18460021,42320768:4459397 +) +(2534,407:6630773,43167268:11829248,505283,126483 +h2534,406:6630773,43167268:0,0,0 +r2534,406:6630773,43167268:0,631766,126483 +g2534,406:7941493,43167268 +g2534,406:7941493,43167268 +g2534,406:11250405,43167268 +k2534,407:15452902,43167268:3007120 +k2534,407:18460021,43167268:3007119 +) +(2534,408:6630773,44013769:11829248,505283,134348 +h2534,407:6630773,44013769:0,0,0 +r2534,407:6630773,44013769:0,639631,134348 +g2534,407:7941493,44013769 +g2534,407:7941493,44013769 +g2534,407:11867754,44013769 +k2534,408:15562347,44013769:2897675 +k2534,408:18460021,44013769:2897674 +) +(2534,409:6630773,44860269:11829248,505283,102891 +h2534,408:6630773,44860269:0,0,0 +r2534,408:6630773,44860269:0,608174,102891 +g2534,408:7941493,44860269 +g2534,408:7941493,44860269 +g2534,408:12055187,44860269 +k2534,409:15656063,44860269:2803958 +k2534,409:18460021,44860269:2803958 +) +(2534,410:6630773,45706769:11829248,505283,102891 +h2534,409:6630773,45706769:0,0,0 +r2534,409:6630773,45706769:0,608174,102891 +g2534,409:7941493,45706769 +g2534,409:7941493,45706769 +g2534,409:11891347,45706769 +g2534,409:13459623,45706769 +k2534,410:17319039,45706769:1140983 +k2534,410:18460021,45706769:1140982 +) +] +k2534,458:19606901,45706769:1146880 +r2534,458:19606901,45706769:0,40234515,126483 +k2534,458:20753781,45706769:1146880 +[2534,458:20753781,45706769:11829248,40108032,102891 +(2534,411:20753781,6254097:11829248,505283,126483 +h2534,410:20753781,6254097:0,0,0 +r2534,410:20753781,6254097:0,631766,126483 +g2534,410:22064501,6254097 +g2534,410:22064501,6254097 +g2534,410:24889757,6254097 +g2534,410:26458033,6254097 +g2534,410:28026309,6254097 +k2534,411:30902358,6254097:1680672 +k2534,411:32583029,6254097:1680671 +) +(2534,412:20753781,7114668:11829248,505283,102891 +h2534,411:20753781,7114668:0,0,0 +r2534,411:20753781,7114668:0,608174,102891 +g2534,411:22064501,7114668 +g2534,411:22064501,7114668 +g2534,411:25541840,7114668 +k2534,412:29660123,7114668:2922906 +k2534,412:32583029,7114668:2922906 +) +(2534,414:20753781,7975238:11829248,505283,126483 +h2534,412:20753781,7975238:0,0,0 +r2534,412:20753781,7975238:0,631766,126483 +g2534,412:22064501,7975238 +g2534,412:22064501,7975238 +g2534,412:24476880,7975238 +g2534,412:26045156,7975238 +g2534,412:27613432,7975238 +g2534,412:29181708,7975238 +k2534,412:32583029,7975238:509217 +) +(2534,414:23375221,8816726:9207808,485622,102891 +g2534,412:24943497,8816726 +g2534,412:26511773,8816726 +g2534,412:28080049,8816726 +g2534,413:29648325,8816726 +k2534,414:31713366,8816726:869664 +k2534,414:32583029,8816726:869663 +) +(2534,415:20753781,9677297:11829248,505283,126483 +h2534,414:20753781,9677297:0,0,0 +r2534,414:20753781,9677297:0,631766,126483 +g2534,414:22064501,9677297 +g2534,414:22064501,9677297 +g2534,414:24721985,9677297 +k2534,415:29250196,9677297:3332834 +k2534,415:32583029,9677297:3332833 +) +(2534,416:20753781,10537868:11829248,513147,102891 +h2534,415:20753781,10537868:0,0,0 +r2534,415:20753781,10537868:0,616038,102891 +g2534,415:22064501,10537868 +g2534,415:22064501,10537868 +g2534,415:25787600,10537868 +k2534,416:29783003,10537868:2800026 +k2534,416:32583029,10537868:2800026 +) +(2534,417:20753781,11398438:11829248,513147,134348 +h2534,416:20753781,11398438:0,0,0 +r2534,416:20753781,11398438:0,647495,134348 +g2534,416:22064501,11398438 +g2534,416:22064501,11398438 +g2534,416:25131585,11398438 +g2534,416:26301402,11398438 +g2534,416:27869678,11398438 +g2534,416:29437954,11398438 +g2534,416:31006230,11398438 +k2534,417:32392318,11398438:190711 +k2534,417:32583029,11398438:190711 +) +(2534,418:20753781,12259009:11829248,505283,134348 +h2534,417:20753781,12259009:0,0,0 +r2534,417:20753781,12259009:0,639631,134348 +g2534,417:22064501,12259009 +g2534,417:22064501,12259009 +g2534,417:26891227,12259009 +k2534,418:30334817,12259009:2248213 +k2534,418:32583029,12259009:2248212 +) +(2534,419:20753781,13119580:11829248,513147,134348 +h2534,418:20753781,13119580:0,0,0 +r2534,418:20753781,13119580:0,647495,134348 +g2534,418:22064501,13119580 +g2534,418:22064501,13119580 +g2534,418:25279696,13119580 +k2534,419:29529051,13119580:3053978 +k2534,419:32583029,13119580:3053978 +) +(2534,420:20753781,13980150:11829248,505283,134348 +h2534,419:20753781,13980150:0,0,0 +r2534,419:20753781,13980150:0,639631,134348 +g2534,419:22064501,13980150 +g2534,419:22064501,13980150 +g2534,419:26046468,13980150 +k2534,420:29912437,13980150:2670592 +k2534,420:32583029,13980150:2670592 +) +(2534,423:20753781,14840721:11829248,505283,134348 +h2534,420:20753781,14840721:0,0,0 +r2534,420:20753781,14840721:0,639631,134348 +g2534,420:22064501,14840721 +g2534,420:22064501,14840721 +g2534,420:25332781,14840721 +g2534,420:26502598,14840721 +g2534,420:29593931,14840721 +g2534,420:31162207,14840721 +k2534,420:32583029,14840721:51775 +) +(2534,423:23375221,15682209:9207808,485622,102891 +g2534,420:24943497,15682209 +g2534,421:26511773,15682209 +g2534,421:28080049,15682209 +g2534,421:29648325,15682209 +k2534,421:32583029,15682209:42600 +) +(2534,423:23375221,16523697:9207808,485622,102891 +k2534,421:24942973,16523697:198705 +k2534,421:26510725,16523697:198705 +k2534,421:28078478,16523697:198706 +k2534,421:29646230,16523697:198705 +k2534,421:31213982,16523697:198705 +k2534,421:32583029,16523697:0 +) +(2534,423:23375221,17365185:9207808,485622,102891 +k2534,422:24942973,17365185:198705 +k2534,422:26510725,17365185:198705 +k2534,422:28078478,17365185:198706 +k2534,422:29646230,17365185:198705 +k2534,422:31213982,17365185:198705 +k2534,422:32583029,17365185:0 +) +(2534,423:23375221,18206673:9207808,485622,102891 +g2534,422:24943497,18206673 +k2534,423:29360952,18206673:3222078 +k2534,423:32583029,18206673:3222077 +) +(2534,424:20753781,19067244:11829248,505283,134348 +h2534,423:20753781,19067244:0,0,0 +r2534,423:20753781,19067244:0,639631,134348 +g2534,423:22064501,19067244 +g2534,423:22064501,19067244 +g2534,423:25551671,19067244 +g2534,423:27119947,19067244 +g2534,423:28688223,19067244 +g2534,423:30256499,19067244 +k2534,424:32017453,19067244:565577 +k2534,424:32583029,19067244:565576 +) +(2534,425:20753781,19927814:11829248,505283,134348 +h2534,424:20753781,19927814:0,0,0 +r2534,424:20753781,19927814:0,639631,134348 +g2534,424:22064501,19927814 +g2534,424:22064501,19927814 +g2534,424:25268555,19927814 +k2534,425:29523481,19927814:3059549 +k2534,425:32583029,19927814:3059548 +) +(2534,426:20753781,20788385:11829248,505283,134348 +h2534,425:20753781,20788385:0,0,0 +r2534,425:20753781,20788385:0,639631,134348 +g2534,425:22064501,20788385 +g2534,425:22064501,20788385 +g2534,425:24952672,20788385 +k2534,426:29365539,20788385:3217490 +k2534,426:32583029,20788385:3217490 +) +(2534,427:20753781,21648956:11829248,505283,134348 +h2534,426:20753781,21648956:0,0,0 +r2534,426:20753781,21648956:0,639631,134348 +g2534,426:22064501,21648956 +g2534,426:22064501,21648956 +g2534,426:24925147,21648956 +k2534,427:29351777,21648956:3231253 +k2534,427:32583029,21648956:3231252 +) +(2534,428:20753781,22509526:11829248,505283,134348 +h2534,427:20753781,22509526:0,0,0 +r2534,427:20753781,22509526:0,639631,134348 +g2534,427:22064501,22509526 +g2534,427:22064501,22509526 +g2534,427:24130195,22509526 +g2534,427:25698471,22509526 +g2534,427:27266747,22509526 +k2534,428:30522577,22509526:2060453 +k2534,428:32583029,22509526:2060452 +) +(2534,429:20753781,23370097:11829248,505283,134348 +h2534,428:20753781,23370097:0,0,0 +r2534,428:20753781,23370097:0,639631,134348 +g2534,428:22064501,23370097 +g2534,428:22064501,23370097 +g2534,428:25762041,23370097 +k2534,429:29770224,23370097:2812806 +k2534,429:32583029,23370097:2812805 +) +(2534,430:20753781,24230668:11829248,505283,102891 +h2534,429:20753781,24230668:0,0,0 +r2534,429:20753781,24230668:0,608174,102891 +g2534,429:22064501,24230668 +g2534,429:22064501,24230668 +g2534,429:24730505,24230668 +g2534,429:26298781,24230668 +g2534,429:27867057,24230668 +k2534,430:30822732,24230668:1760298 +k2534,430:32583029,24230668:1760297 +) +(2534,431:20753781,25091238:11829248,505283,102891 +h2534,430:20753781,25091238:0,0,0 +r2534,430:20753781,25091238:0,608174,102891 +g2534,430:22064501,25091238 +g2534,430:22064501,25091238 +g2534,430:24803905,25091238 +k2534,431:29291156,25091238:3291874 +k2534,431:32583029,25091238:3291873 +) +(2534,432:20753781,25951809:11829248,505283,134348 +h2534,431:20753781,25951809:0,0,0 +r2534,431:20753781,25951809:0,639631,134348 +g2534,431:22064501,25951809 +g2534,431:22064501,25951809 +g2534,431:25182048,25951809 +k2534,432:29480227,25951809:3102802 +k2534,432:32583029,25951809:3102802 +) +(2534,433:20753781,26812380:11829248,505283,102891 +h2534,432:20753781,26812380:0,0,0 +r2534,432:20753781,26812380:0,608174,102891 +g2534,432:22064501,26812380 +g2534,432:22064501,26812380 +g2534,432:24343187,26812380 +g2534,432:25114545,26812380 +g2534,432:26284362,26812380 +k2534,433:29832155,26812380:2750875 +k2534,433:32583029,26812380:2750874 +) +(2534,434:20753781,27672950:11829248,505283,102891 +h2534,433:20753781,27672950:0,0,0 +r2534,433:20753781,27672950:0,608174,102891 +g2534,433:22064501,27672950 +g2534,433:22064501,27672950 +g2534,433:24782934,27672950 +g2534,433:26351210,27672950 +g2534,433:27919486,27672950 +k2534,434:30848946,27672950:1734083 +k2534,434:32583029,27672950:1734083 +) +(2534,435:20753781,28533521:11829248,505283,102891 +h2534,434:20753781,28533521:0,0,0 +r2534,434:20753781,28533521:0,608174,102891 +g2534,434:22064501,28533521 +g2534,434:22064501,28533521 +g2534,434:26310578,28533521 +g2534,434:27480395,28533521 +g2534,434:29048671,28533521 +g2534,434:30616947,28533521 +k2534,434:32583029,28533521:597035 +) +(2534,435:23375221,29375009:9207808,485622,11795 +k2534,435:28576814,29375009:4006216 +k2534,435:32583029,29375009:4006215 +) +(2534,436:20753781,30235580:11829248,505283,102891 +h2534,435:20753781,30235580:0,0,0 +r2534,435:20753781,30235580:0,608174,102891 +g2534,435:22064501,30235580 +g2534,435:22064501,30235580 +g2534,435:24432971,30235580 +k2534,436:29105689,30235580:3477341 +k2534,436:32583029,30235580:3477340 +) +(2534,437:20753781,31096150:11829248,505283,102891 +h2534,436:20753781,31096150:0,0,0 +r2534,436:20753781,31096150:0,608174,102891 +g2534,436:22064501,31096150 +g2534,436:22064501,31096150 +g2534,436:25702404,31096150 +g2534,436:27270680,31096150 +k2534,437:30524543,31096150:2058486 +k2534,437:32583029,31096150:2058486 +) +(2534,438:20753781,31956721:11829248,505283,134348 +h2534,437:20753781,31956721:0,0,0 +r2534,437:20753781,31956721:0,639631,134348 +g2534,437:22064501,31956721 +g2534,437:22064501,31956721 +g2534,437:25472372,31956721 +k2534,438:29625389,31956721:2957640 +k2534,438:32583029,31956721:2957640 +) +(2534,439:20753781,32817292:11829248,505283,134348 +h2534,438:20753781,32817292:0,0,0 +r2534,438:20753781,32817292:0,639631,134348 +g2534,438:22064501,32817292 +g2534,438:22064501,32817292 +g2534,438:25449435,32817292 +g2534,438:27017711,32817292 +g2534,438:28585987,32817292 +k2534,439:31182197,32817292:1400833 +k2534,439:32583029,32817292:1400832 +) +(2534,440:20753781,33677862:11829248,505283,102891 +h2534,439:20753781,33677862:0,0,0 +r2534,439:20753781,33677862:0,608174,102891 +g2534,439:22064501,33677862 +g2534,439:22064501,33677862 +g2534,439:26468519,33677862 +k2534,440:29924233,33677862:2658796 +k2534,440:32583029,33677862:2658796 +) +(2534,441:20753781,34538433:11829248,505283,102891 +h2534,440:20753781,34538433:0,0,0 +r2534,440:20753781,34538433:0,608174,102891 +g2534,440:22064501,34538433 +g2534,440:22064501,34538433 +g2534,440:28209811,34538433 +k2534,441:30994109,34538433:1588921 +k2534,441:32583029,34538433:1588920 +) +(2534,442:20753781,35399004:11829248,513147,102891 +h2534,441:20753781,35399004:0,0,0 +r2534,441:20753781,35399004:0,616038,102891 +g2534,441:22064501,35399004 +g2534,441:22064501,35399004 +g2534,441:24661692,35399004 +g2534,441:26229968,35399004 +g2534,441:27798244,35399004 +k2534,442:30788325,35399004:1794704 +k2534,442:32583029,35399004:1794704 +) +(2534,443:20753781,36259574:11829248,505283,102891 +h2534,442:20753781,36259574:0,0,0 +r2534,442:20753781,36259574:0,608174,102891 +g2534,442:22064501,36259574 +g2534,442:22064501,36259574 +g2534,442:24424452,36259574 +k2534,443:29101429,36259574:3481600 +k2534,443:32583029,36259574:3481600 +) +(2534,444:20753781,37120145:11829248,505283,126483 +h2534,443:20753781,37120145:0,0,0 +r2534,443:20753781,37120145:0,631766,126483 +g2534,443:22064501,37120145 +g2534,443:22064501,37120145 +g2534,443:26170986,37120145 +k2534,444:29974696,37120145:2608333 +k2534,444:32583029,37120145:2608333 +) +(2534,445:20753781,37980716:11829248,505283,134348 +h2534,444:20753781,37980716:0,0,0 +r2534,444:20753781,37980716:0,639631,134348 +g2534,444:22064501,37980716 +g2534,444:22064501,37980716 +g2534,444:25781702,37980716 +k2534,445:29580825,37980716:3002205 +k2534,445:32583029,37980716:3002204 +) +(2534,446:20753781,38841286:11829248,505283,126483 +h2534,445:20753781,38841286:0,0,0 +r2534,445:20753781,38841286:0,631766,126483 +g2534,445:22064501,38841286 +g2534,445:22064501,38841286 +g2534,445:24427728,38841286 +k2534,446:29103067,38841286:3479962 +k2534,446:32583029,38841286:3479962 +) +(2534,447:20753781,39701857:11829248,505283,102891 +h2534,446:20753781,39701857:0,0,0 +r2534,446:20753781,39701857:0,608174,102891 +g2534,446:22064501,39701857 +g2534,446:22064501,39701857 +g2534,446:25612619,39701857 +k2534,447:29695513,39701857:2887517 +k2534,447:32583029,39701857:2887516 +) +(2534,448:20753781,40562428:11829248,505283,102891 +h2534,447:20753781,40562428:0,0,0 +r2534,447:20753781,40562428:0,608174,102891 +g2534,447:22064501,40562428 +g2534,447:22064501,40562428 +g2534,447:24527343,40562428 +g2534,447:26095619,40562428 +g2534,447:27663895,40562428 +g2534,447:29232171,40562428 +g2534,447:30800447,40562428 +k2534,447:32583029,40562428:413535 +) +(2534,448:23375221,41403916:9207808,485622,102891 +g2534,447:24943497,41403916 +k2534,448:29360952,41403916:3222078 +k2534,448:32583029,41403916:3222077 +) +(2534,449:20753781,42264486:11829248,505283,102891 +h2534,448:20753781,42264486:0,0,0 +r2534,448:20753781,42264486:0,608174,102891 +g2534,448:22064501,42264486 +g2534,448:22064501,42264486 +g2534,448:24850436,42264486 +g2534,448:26418712,42264486 +k2534,449:30098559,42264486:2484470 +k2534,449:32583029,42264486:2484470 +) +(2534,450:20753781,43125057:11829248,505283,126483 +h2534,449:20753781,43125057:0,0,0 +r2534,449:20753781,43125057:0,631766,126483 +g2534,449:22064501,43125057 +g2534,449:22064501,43125057 +g2534,449:25364238,43125057 +k2534,450:29571322,43125057:3011707 +k2534,450:32583029,43125057:3011707 +) +(2534,451:20753781,43985628:11829248,505283,126483 +h2534,450:20753781,43985628:0,0,0 +r2534,450:20753781,43985628:0,631766,126483 +g2534,450:22064501,43985628 +g2534,450:22064501,43985628 +g2534,450:25779081,43985628 +k2534,451:29778744,43985628:2804286 +k2534,451:32583029,43985628:2804285 +) +(2534,452:20753781,44846198:11829248,505283,102891 +h2534,451:20753781,44846198:0,0,0 +r2534,451:20753781,44846198:0,608174,102891 +g2534,451:22064501,44846198 +g2534,451:22064501,44846198 +g2534,451:25822335,44846198 +g2534,451:27390611,44846198 +k2534,452:30584509,44846198:1998521 +k2534,452:32583029,44846198:1998520 +) +(2534,453:20753781,45706769:11829248,505283,102891 +h2534,452:20753781,45706769:0,0,0 +r2534,452:20753781,45706769:0,608174,102891 +g2534,452:22064501,45706769 +g2534,452:22064501,45706769 +g2534,452:24533241,45706769 +k2534,453:29155824,45706769:3427206 +k2534,453:32583029,45706769:3427205 +) +] +(2534,458:32583029,45706769:0,355205,126483 +h2534,458:32583029,45706769:420741,355205,126483 +k2534,458:32583029,45706769:-420741 +) +) +] +(2534,458:32583029,45706769:0,0,0 +g2534,458:32583029,45706769 +) +) +] +(2534,458:6630773,47279633:25952256,0,0 +h2534,458:6630773,47279633:25952256,0,0 +) +] +h2534,458:4262630,4025873:0,0,0 +] +!28775 }340 !12 {341 -[2537,178:4262630,47279633:28320399,43253760,0 -(2537,178:4262630,4025873:0,0,0 -[2537,178:-473657,4025873:11829248,0,0 -(2537,178:-473657,-710414:11829248,0,0 -h2537,178:-473657,-710414:0,0,0 -(2537,178:-473657,-710414:0,0,0 -(2537,178:-473657,-710414:0,0,0 -g2537,178:-473657,-710414 -(2537,178:-473657,-710414:65781,0,65781 -g2537,178:-407876,-710414 -[2537,178:-407876,-644633:0,0,0 +[2534,548:4262630,47279633:28320399,43253760,0 +(2534,548:4262630,4025873:0,0,0 +[2534,548:-473657,4025873:11829248,0,0 +(2534,548:-473657,-710414:11829248,0,0 +h2534,548:-473657,-710414:0,0,0 +(2534,548:-473657,-710414:0,0,0 +(2534,548:-473657,-710414:0,0,0 +g2534,548:-473657,-710414 +(2534,548:-473657,-710414:65781,0,65781 +g2534,548:-407876,-710414 +[2534,548:-407876,-644633:0,0,0 ] ) -k2537,178:-473657,-710414:-65781 +k2534,548:-473657,-710414:-65781 ) ) -k2537,178:11355591,-710414:11829248 -g2537,178:11355591,-710414 +k2534,548:11355591,-710414:11829248 +g2534,548:11355591,-710414 ) ] ) -[2537,178:6630773,47279633:25952256,43253760,0 -[2537,178:6630773,4812305:25952256,786432,0 -(2537,178:6630773,4812305:25952256,505283,11795 -(2537,178:6630773,4812305:25952256,505283,11795 -g2537,178:3078558,4812305 -[2537,178:3078558,4812305:0,0,0 -(2537,178:3078558,2439708:0,1703936,0 -k2537,178:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,178:2537886,2439708:1179648,16384,0 +[2534,548:6630773,47279633:25952256,43253760,0 +[2534,548:6630773,4812305:25952256,786432,0 +(2534,548:6630773,4812305:25952256,505283,11795 +(2534,548:6630773,4812305:25952256,505283,11795 +g2534,548:3078558,4812305 +[2534,548:3078558,4812305:0,0,0 +(2534,548:3078558,2439708:0,1703936,0 +k2534,548:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,548:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,178:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,548:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[2537,178:3078558,4812305:0,0,0 -(2537,178:3078558,2439708:0,1703936,0 -g2537,178:29030814,2439708 -g2537,178:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,178:36151628,1915420:16384,1179648,0 +[2534,548:3078558,4812305:0,0,0 +(2534,548:3078558,2439708:0,1703936,0 +g2534,548:29030814,2439708 +g2534,548:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,548:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,178:37855564,2439708:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,548:37855564,2439708:1179648,16384,0 ) ) -k2537,178:3078556,2439708:-34777008 +k2534,548:3078556,2439708:-34777008 ) ] -[2537,178:3078558,4812305:0,0,0 -(2537,178:3078558,49800853:0,16384,2228224 -k2537,178:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,178:2537886,49800853:1179648,16384,0 +[2534,548:3078558,4812305:0,0,0 +(2534,548:3078558,49800853:0,16384,2228224 +k2534,548:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,548:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,178:3078558,51504789:16384,1179648,0 +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,548:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] ) ) ) ] -[2537,178:3078558,4812305:0,0,0 -(2537,178:3078558,49800853:0,16384,2228224 -g2537,178:29030814,49800853 -g2537,178:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,178:36151628,51504789:16384,1179648,0 +[2534,548:3078558,4812305:0,0,0 +(2534,548:3078558,49800853:0,16384,2228224 +g2534,548:29030814,49800853 +g2534,548:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,548:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,178:37855564,49800853:1179648,16384,0 -) -) -k2537,178:3078556,49800853:-34777008 -) -] -g2537,178:6630773,4812305 -k2537,178:28224886,4812305:20398736 -g2537,178:30907930,4812305 -) -) -] -[2537,178:6630773,45706769:25952256,40108032,0 -(2537,178:6630773,45706769:25952256,40108032,0 -(2537,178:6630773,45706769:0,0,0 -g2537,178:6630773,45706769 -) -[2537,178:6630773,45706769:25952256,40108032,0 -(2537,178:6630773,45706769:25952256,40108032,134348 -[2537,178:6630773,45706769:11829248,40108032,102891 -(2537,80:6630773,6254097:11829248,513147,7863 -h2537,79:6630773,6254097:0,0,0 -g2537,79:8219365,6254097 -k2537,80:14277841,6254097:4182180 -k2537,80:18460021,6254097:4182180 -) -(2537,81:6630773,7099387:11829248,505283,126483 -h2537,80:6630773,7099387:0,0,0 -r2537,80:6630773,7099387:0,631766,126483 -g2537,80:7941493,7099387 -g2537,80:7941493,7099387 -g2537,80:12582097,7099387 -k2537,81:16880276,7099387:1579746 -k2537,81:18460021,7099387:1579745 -) -(2537,82:6630773,7944677:11829248,513147,102891 -h2537,81:6630773,7944677:0,0,0 -g2537,81:8219365,7944677 -g2537,81:10798862,7944677 -k2537,82:15590200,7944677:2869822 -k2537,82:18460021,7944677:2869821 -) -(2537,83:6630773,8789966:11829248,513147,134348 -h2537,82:6630773,8789966:0,0,0 -r2537,82:6630773,8789966:0,647495,134348 -g2537,82:7941493,8789966 -g2537,82:7941493,8789966 -g2537,82:10959425,8789966 -g2537,82:13166677,8789966 -k2537,83:16211808,8789966:2248213 -k2537,83:18460021,8789966:2248213 -) -(2537,84:6630773,9635256:11829248,505283,134348 -h2537,83:6630773,9635256:0,0,0 -r2537,83:6630773,9635256:0,639631,134348 -g2537,83:7941493,9635256 -g2537,83:7941493,9635256 -g2537,83:11278586,9635256 -k2537,84:15267763,9635256:3192259 -k2537,84:18460021,9635256:3192258 -) -(2537,85:6630773,10480546:11829248,505283,134348 -h2537,84:6630773,10480546:0,0,0 -r2537,84:6630773,10480546:0,639631,134348 -g2537,84:7941493,10480546 -g2537,84:7941493,10480546 -g2537,84:11194700,10480546 -g2537,84:13577589,10480546 -k2537,85:16417264,10480546:2042757 -k2537,85:18460021,10480546:2042757 -) -(2537,86:6630773,11325836:11829248,505283,134348 -h2537,85:6630773,11325836:0,0,0 -r2537,85:6630773,11325836:0,639631,134348 -g2537,85:7941493,11325836 -g2537,85:7941493,11325836 -g2537,85:10870297,11325836 -g2537,85:13956387,11325836 -k2537,86:16606663,11325836:1853358 -k2537,86:18460021,11325836:1853358 -) -(2537,87:6630773,12171125:11829248,505283,134348 -h2537,86:6630773,12171125:0,0,0 -r2537,86:6630773,12171125:0,639631,134348 -g2537,86:7941493,12171125 -g2537,86:7941493,12171125 -g2537,86:10870297,12171125 -g2537,86:12777394,12171125 -g2537,86:13947211,12171125 -k2537,87:16602075,12171125:1857946 -k2537,87:18460021,12171125:1857946 -) -(2537,88:6630773,13016415:11829248,505283,134348 -h2537,87:6630773,13016415:0,0,0 -r2537,87:6630773,13016415:0,639631,134348 -g2537,87:7941493,13016415 -g2537,87:7941493,13016415 -g2537,87:11641655,13016415 -k2537,88:15449297,13016415:3010724 -k2537,88:18460021,13016415:3010724 -) -(2537,89:6630773,13861705:11829248,505283,126483 -h2537,88:6630773,13861705:0,0,0 -g2537,88:8219365,13861705 -g2537,88:12674502,13861705 -g2537,88:13489769,13861705 -g2537,88:14708083,13861705 -k2537,88:18460021,13861705:667814 -) -(2537,89:9252213,14703193:9207808,485622,11795 -k2537,89:15215334,14703193:3244688 -k2537,89:18460021,14703193:3244687 -) -(2537,90:6630773,15548483:11829248,505283,102891 -h2537,89:6630773,15548483:0,0,0 -g2537,89:10580627,15548483 -g2537,89:12148903,15548483 -k2537,90:16663679,15548483:1796343 -k2537,90:18460021,15548483:1796342 -) -(2537,91:6630773,16393772:11829248,505283,126483 -h2537,90:6630773,16393772:0,0,0 -g2537,90:9456029,16393772 -g2537,90:11024305,16393772 -g2537,90:12592581,16393772 -k2537,91:16123990,16393772:2336032 -k2537,91:18460021,16393772:2336031 -) -(2537,92:6630773,17239062:11829248,505283,134348 -h2537,91:6630773,17239062:0,0,0 -g2537,91:9397703,17239062 -g2537,91:12060430,17239062 -g2537,91:13226970,17239062 -k2537,91:18460021,17239062:2235434 -) -(2537,92:9252213,18080550:9207808,505283,134348 -k2537,92:15001031,18080550:3458990 -k2537,92:18460021,18080550:3458990 -) -(2537,93:6630773,18925840:11829248,505283,7863 -h2537,92:6630773,18925840:0,0,0 -k2537,93:13714232,18925840:4745790 -k2537,93:18460021,18925840:4745789 -) -(2537,94:6630773,19771130:11829248,505283,134348 -h2537,93:6630773,19771130:0,0,0 -r2537,93:6630773,19771130:0,639631,134348 -g2537,93:7941493,19771130 -g2537,93:7941493,19771130 -g2537,93:10473148,19771130 -g2537,93:11639688,19771130 -g2537,93:14227704,19771130 -k2537,93:18460021,19771130:2073561 -) -(2537,94:9252213,20612618:9207808,505283,7863 -k2537,94:15024952,20612618:3435070 -k2537,94:18460021,20612618:3435069 -) -(2537,95:6630773,21457907:11829248,505283,102891 -h2537,94:6630773,21457907:0,0,0 -g2537,94:10108112,21457907 -k2537,95:14881755,21457907:3578266 -k2537,95:18460021,21457907:3578266 -) -(2537,96:6630773,22303197:11829248,505283,102891 -h2537,95:6630773,22303197:0,0,0 -g2537,95:11115401,22303197 -k2537,96:16146928,22303197:2313094 -k2537,96:18460021,22303197:2313093 -) -(2537,97:6630773,23148487:11829248,513147,126483 -h2537,96:6630773,23148487:0,0,0 -r2537,96:6630773,23148487:0,639630,126483 -g2537,96:7941493,23148487 -g2537,96:7941493,23148487 -g2537,96:10473148,23148487 -g2537,96:12239998,23148487 -g2537,96:16223931,23148487 -k2537,97:17939665,23148487:520357 -k2537,97:18460021,23148487:520356 -) -(2537,98:6630773,23993777:11829248,513147,126483 -h2537,97:6630773,23993777:0,0,0 -r2537,97:6630773,23993777:0,639630,126483 -g2537,97:7941493,23993777 -g2537,97:7941493,23993777 -g2537,97:12144316,23993777 -g2537,97:13911166,23993777 -g2537,97:17214835,23993777 -k2537,98:18435117,23993777:24905 -k2537,98:18460021,23993777:24904 -) -(2537,99:6630773,24839066:11829248,505283,126483 -h2537,98:6630773,24839066:0,0,0 -r2537,98:6630773,24839066:0,631766,126483 -g2537,98:7941493,24839066 -g2537,98:7941493,24839066 -g2537,98:13176508,24839066 -g2537,98:15465680,24839066 -k2537,99:17560539,24839066:899482 -k2537,99:18460021,24839066:899482 -) -(2537,100:6630773,25684356:11829248,505283,134348 -h2537,99:6630773,25684356:0,0,0 -r2537,99:6630773,25684356:0,639631,134348 -g2537,99:7941493,25684356 -g2537,99:7941493,25684356 -g2537,99:13176508,25684356 -g2537,99:16471658,25684356 -k2537,100:18063528,25684356:396493 -k2537,100:18460021,25684356:396493 -) -(2537,101:6630773,26529646:11829248,513147,126483 -h2537,100:6630773,26529646:0,0,0 -r2537,100:6630773,26529646:0,639630,126483 -g2537,100:7941493,26529646 -g2537,100:7941493,26529646 -g2537,100:11071492,26529646 -g2537,100:12838342,26529646 -g2537,100:17214836,26529646 -k2537,101:18435117,26529646:24904 -k2537,101:18460021,26529646:24904 -) -(2537,102:6630773,27374936:11829248,505283,126483 -h2537,101:6630773,27374936:0,0,0 -g2537,101:9505182,27374936 -g2537,101:12624695,27374936 -k2537,102:16140047,27374936:2319975 -k2537,102:18460021,27374936:2319974 -) -(2537,104:6630773,28220225:11829248,505283,126483 -h2537,102:6630773,28220225:0,0,0 -g2537,102:9043152,28220225 -g2537,102:10611428,28220225 -g2537,102:12179704,28220225 -g2537,102:13747980,28220225 -g2537,102:16839313,28220225 -k2537,102:18460021,28220225:251661 -) -(2537,104:9252213,29061713:9207808,485622,102891 -g2537,102:10820489,29061713 -g2537,102:12388765,29061713 -g2537,103:13957041,29061713 -k2537,104:16806220,29061713:1653802 -k2537,104:18460021,29061713:1653801 -) -(2537,105:6630773,29907003:11829248,505283,126483 -h2537,104:6630773,29907003:0,0,0 -g2537,104:9288257,29907003 -k2537,105:14471828,29907003:3988194 -k2537,105:18460021,29907003:3988193 -) -(2537,109:6630773,31471015:11829248,505283,126483 -h2537,108:6630773,31471015:0,0,0 -g2537,108:9184710,31471015 -k2537,109:14220825,31471015:4239197 -k2537,109:18460021,31471015:4239196 -) -(2537,110:6630773,32316304:11829248,513147,126483 -h2537,109:6630773,32316304:0,0,0 -g2537,109:8739066,32316304 -g2537,109:9885946,32316304 -g2537,109:10530164,32316304 -g2537,109:13064441,32316304 -k2537,110:16160690,32316304:2299331 -k2537,110:18460021,32316304:2299331 -) -(2537,111:6630773,33161594:11829248,481690,102891 -h2537,110:6630773,33161594:0,0,0 -g2537,110:9001865,33161594 -g2537,110:9773223,33161594 -k2537,111:14515081,33161594:3944940 -k2537,111:18460021,33161594:3944940 -) -(2537,112:6630773,34006884:11829248,505283,102891 -h2537,111:6630773,34006884:0,0,0 -g2537,111:7931662,34006884 -$2537,111:8138756,34006884 -$2537,111:8500515,34006884 -g2537,111:9080508,34006884 -g2537,111:10247048,34006884 -g2537,111:13133908,34006884 -k2537,111:18460021,34006884:2049968 -) -(2537,112:9252213,34848372:9207808,473825,126483 -k2537,112:15322158,34848372:3137864 -k2537,112:18460021,34848372:3137863 -) -(2537,113:6630773,35693662:11829248,505283,134348 -h2537,112:6630773,35693662:0,0,0 -g2537,112:9893155,35693662 -k2537,113:14871270,35693662:3588752 -k2537,113:18460021,35693662:3588751 -) -(2537,114:6630773,36538951:11829248,513147,102891 -h2537,113:6630773,36538951:0,0,0 -r2537,113:6630773,36538951:0,616038,102891 -g2537,113:7941493,36538951 -g2537,113:7941493,36538951 -g2537,113:9366901,36538951 -g2537,113:11053142,36538951 -g2537,113:14144475,36538951 -k2537,114:17661465,36538951:798557 -k2537,114:18460021,36538951:798556 -) -(2537,115:6630773,37384241:11829248,485622,102891 -h2537,114:6630773,37384241:0,0,0 -g2537,114:10232631,37384241 -g2537,114:11083288,37384241 -g2537,114:11901177,37384241 -k2537,115:15778288,37384241:2681734 -k2537,115:18460021,37384241:2681733 -) -(2537,116:6630773,38229531:11829248,513147,102891 -h2537,115:6630773,38229531:0,0,0 -g2537,115:10353872,38229531 -k2537,116:15004635,38229531:3455386 -k2537,116:18460021,38229531:3455386 -) -(2537,120:6630773,39793543:11829248,513147,134348 -h2537,119:6630773,39793543:0,0,0 -g2537,119:8718750,39793543 -g2537,119:12277354,39793543 -g2537,119:13443894,39793543 -g2537,119:16545713,39793543 -k2537,119:18460021,39793543:1255016 -) -(2537,120:9252213,40635031:9207808,513147,134348 -g2537,119:12344201,40635031 -k2537,120:16346485,40635031:2113536 -k2537,120:18460021,40635031:2113536 -) -(2537,121:6630773,41480320:11829248,513147,102891 -h2537,120:6630773,41480320:0,0,0 -g2537,120:9227964,41480320 -k2537,121:14804751,41480320:3655271 -k2537,121:18460021,41480320:3655270 -) -(2537,122:6630773,42325610:11829248,505283,134348 -h2537,121:6630773,42325610:0,0,0 -r2537,121:6630773,42325610:0,639631,134348 -g2537,121:7941493,42325610 -g2537,121:7941493,42325610 -g2537,121:10565554,42325610 -g2537,121:12949098,42325610 -k2537,122:16103019,42325610:2357003 -k2537,122:18460021,42325610:2357002 -) -(2537,123:6630773,43170900:11829248,485622,102891 -h2537,122:6630773,43170900:0,0,0 -r2537,122:6630773,43170900:0,588513,102891 -g2537,122:7941493,43170900 -g2537,122:7941493,43170900 -g2537,122:10533441,43170900 -g2537,122:11384098,43170900 -g2537,122:14377127,43170900 -k2537,123:16817033,43170900:1642988 -k2537,123:18460021,43170900:1642988 -) -(2537,124:6630773,44016190:11829248,505283,126483 -h2537,123:6630773,44016190:0,0,0 -r2537,123:6630773,44016190:0,631766,126483 -g2537,123:7941493,44016190 -g2537,123:7941493,44016190 -g2537,123:9665089,44016190 -g2537,123:12207230,44016190 -g2537,123:14372539,44016190 -k2537,124:16814739,44016190:1645282 -k2537,124:18460021,44016190:1645282 -) -(2537,125:6630773,44861479:11829248,505283,102891 -h2537,124:6630773,44861479:0,0,0 -r2537,124:6630773,44861479:0,608174,102891 -g2537,124:7941493,44861479 -g2537,124:7941493,44861479 -g2537,124:10158576,44861479 -k2537,125:14707758,44861479:3752264 -k2537,125:18460021,44861479:3752263 -) -(2537,126:6630773,45706769:11829248,505283,102891 -h2537,125:6630773,45706769:0,0,0 -r2537,125:6630773,45706769:0,608174,102891 -g2537,125:7941493,45706769 -g2537,125:7941493,45706769 -g2537,125:10106802,45706769 -k2537,126:14681871,45706769:3778151 -k2537,126:18460021,45706769:3778150 -) -] -k2537,178:19606901,45706769:1146880 -r2537,178:19606901,45706769:0,40242380,134348 -k2537,178:20753781,45706769:1146880 -[2537,178:20753781,45706769:11829248,40108032,134348 -(2537,127:20753781,6254097:11829248,505283,134348 -h2537,126:20753781,6254097:0,0,0 -r2537,126:20753781,6254097:0,639631,134348 -g2537,126:22064501,6254097 -g2537,126:22064501,6254097 -g2537,126:24240951,6254097 -g2537,126:26406260,6254097 -k2537,127:29893104,6254097:2689926 -k2537,127:32583029,6254097:2689925 -) -(2537,128:20753781,7097126:11829248,505283,102891 -h2537,127:20753781,7097126:0,0,0 -r2537,127:20753781,7097126:0,608174,102891 -g2537,127:22064501,7097126 -g2537,127:22064501,7097126 -g2537,127:24944808,7097126 -k2537,128:29162378,7097126:3420652 -k2537,128:32583029,7097126:3420651 -) -(2537,129:20753781,7940155:11829248,505283,102891 -h2537,128:20753781,7940155:0,0,0 -r2537,128:20753781,7940155:0,608174,102891 -g2537,128:22064501,7940155 -g2537,128:22064501,7940155 -g2537,128:24637444,7940155 -g2537,128:26802753,7940155 -k2537,129:30091350,7940155:2491679 -k2537,129:32583029,7940155:2491679 -) -(2537,130:20753781,8783184:11829248,505283,102891 -h2537,129:20753781,8783184:0,0,0 -r2537,129:20753781,8783184:0,608174,102891 -g2537,129:22064501,8783184 -g2537,129:22064501,8783184 -g2537,129:24638755,8783184 -g2537,129:26804064,8783184 -k2537,130:30092006,8783184:2491024 -k2537,130:32583029,8783184:2491023 -) -(2537,131:20753781,9626213:11829248,505283,102891 -h2537,130:20753781,9626213:0,0,0 -r2537,130:20753781,9626213:0,608174,102891 -g2537,130:22064501,9626213 -g2537,130:22064501,9626213 -g2537,130:24638755,9626213 -g2537,130:27022299,9626213 -k2537,131:30201123,9626213:2381906 -k2537,131:32583029,9626213:2381906 -) -(2537,132:20753781,10469242:11829248,513147,7863 -h2537,131:20753781,10469242:0,0,0 -g2537,131:21936050,10469242 -k2537,132:28293698,10469242:4289332 -k2537,132:32583029,10469242:4289331 -) -(2537,133:20753781,11312271:11829248,505283,126483 -h2537,132:20753781,11312271:0,0,0 -r2537,132:20753781,11312271:0,631766,126483 -g2537,132:22064501,11312271 -g2537,132:22064501,11312271 -g2537,132:25106682,11312271 -k2537,133:29442544,11312271:3140485 -k2537,133:32583029,11312271:3140485 -) -(2537,134:20753781,12155300:11829248,505283,126483 -h2537,133:20753781,12155300:0,0,0 -r2537,133:20753781,12155300:0,631766,126483 -g2537,133:22064501,12155300 -g2537,133:22064501,12155300 -g2537,133:24094806,12155300 -g2537,133:27810042,12155300 -k2537,134:30794224,12155300:1788805 -k2537,134:32583029,12155300:1788805 -) -(2537,135:20753781,12998329:11829248,513147,126483 -h2537,134:20753781,12998329:0,0,0 -g2537,134:21936050,12998329 -g2537,134:25713545,12998329 -k2537,135:30507504,12998329:2075526 -k2537,135:32583029,12998329:2075525 -) -(2537,136:20753781,13841358:11829248,513147,126483 -h2537,135:20753781,13841358:0,0,0 -g2537,135:21936050,13841358 -k2537,136:28148863,13841358:4434166 -k2537,136:32583029,13841358:4434166 -) -(2537,137:20753781,14684387:11829248,485622,134348 -h2537,136:20753781,14684387:0,0,0 -r2537,136:20753781,14684387:0,619970,134348 -g2537,136:22064501,14684387 -g2537,136:22064501,14684387 -g2537,136:24822911,14684387 -k2537,137:29300659,14684387:3282371 -k2537,137:32583029,14684387:3282370 -) -(2537,138:20753781,15527416:11829248,505283,126483 -h2537,137:20753781,15527416:0,0,0 -r2537,137:20753781,15527416:0,631766,126483 -g2537,137:22064501,15527416 -g2537,137:22064501,15527416 -g2537,137:24094806,15527416 -g2537,137:27810042,15527416 -k2537,138:30794224,15527416:1788805 -k2537,138:32583029,15527416:1788805 -) -(2537,139:20753781,16370445:11829248,513147,134348 -h2537,138:20753781,16370445:0,0,0 -g2537,138:23385051,16370445 -g2537,138:25272487,16370445 -k2537,139:30335799,16370445:2247230 -k2537,139:32583029,16370445:2247230 -) -(2537,140:20753781,17213474:11829248,505283,102891 -h2537,139:20753781,17213474:0,0,0 -r2537,139:20753781,17213474:0,608174,102891 -g2537,139:22064501,17213474 -g2537,139:22064501,17213474 -g2537,139:25713545,17213474 -k2537,140:30109045,17213474:2473984 -k2537,140:32583029,17213474:2473984 -) -(2537,141:20753781,18056503:11829248,513147,134348 -h2537,140:20753781,18056503:0,0,0 -g2537,140:22898774,18056503 -g2537,140:24065314,18056503 -g2537,140:26696584,18056503 -g2537,140:28584020,18056503 -k2537,141:31991566,18056503:591464 -k2537,141:32583029,18056503:591463 -) -(2537,142:20753781,18899532:11829248,513147,126483 -h2537,141:20753781,18899532:0,0,0 -g2537,141:23377842,18899532 -g2537,141:24544382,18899532 -g2537,141:25726651,18899532 -k2537,142:30044164,18899532:2538866 -k2537,142:32583029,18899532:2538865 -) -(2537,143:20753781,19742561:11829248,513147,126483 -h2537,142:20753781,19742561:0,0,0 -g2537,142:21900661,19742561 -g2537,142:23688483,19742561 -k2537,143:28733445,19742561:3849585 -k2537,143:32583029,19742561:3849584 -) -(2537,144:20753781,20585590:11829248,513147,134348 -h2537,143:20753781,20585590:0,0,0 -g2537,143:23820865,20585590 -g2537,143:24990682,20585590 -g2537,143:26558958,20585590 -g2537,143:28127234,20585590 -g2537,143:29695510,20585590 -k2537,144:31736958,20585590:846071 -k2537,144:32583029,20585590:846071 -) -(2537,145:20753781,21428619:11829248,513147,134348 -h2537,144:20753781,21428619:0,0,0 -g2537,144:24158376,21428619 -g2537,144:27332284,21428619 -g2537,144:29727624,21428619 -k2537,144:32583029,21428619:1287784 -) -(2537,145:23375221,22270107:9207808,505283,102891 -g2537,144:26564202,22270107 -k2537,145:29972075,22270107:2610955 -k2537,145:32583029,22270107:2610954 -) -(2537,146:20753781,23113136:11829248,485622,102891 -h2537,145:20753781,23113136:0,0,0 -g2537,145:24167551,23113136 -g2537,145:25735827,23113136 -g2537,145:27304103,23113136 -k2537,146:30541255,23113136:2041775 -k2537,146:32583029,23113136:2041774 -) -(2537,147:20753781,23956165:11829248,513147,134348 -h2537,146:20753781,23956165:0,0,0 -g2537,146:23648506,23956165 -g2537,146:27250364,23956165 -g2537,146:28065631,23956165 -g2537,146:29283945,23956165 -k2537,146:32583029,23956165:214960 -) -(2537,147:23375221,24797653:9207808,485622,11795 -k2537,147:28576814,24797653:4006216 -k2537,147:32583029,24797653:4006215 -) -(2537,148:20753781,25640682:11829248,513147,7863 -h2537,147:20753781,25640682:0,0,0 -k2537,148:28181304,25640682:4401726 -k2537,148:32583029,25640682:4401725 -) -(2537,149:20753781,26483711:11829248,485622,134348 -h2537,148:20753781,26483711:0,0,0 -r2537,148:20753781,26483711:0,619970,134348 -g2537,148:22064501,26483711 -g2537,148:22064501,26483711 -g2537,148:25840030,26483711 -k2537,149:29809218,26483711:2773811 -k2537,149:32583029,26483711:2773811 -) -(2537,150:20753781,27326740:11829248,505283,102891 -h2537,149:20753781,27326740:0,0,0 -r2537,149:20753781,27326740:0,608174,102891 -g2537,149:22064501,27326740 -g2537,149:22064501,27326740 -g2537,149:23697658,27326740 -g2537,149:24515547,27326740 -k2537,150:29146977,27326740:3436053 -k2537,150:32583029,27326740:3436052 -) -(2537,151:20753781,28169769:11829248,513147,102891 -h2537,150:20753781,28169769:0,0,0 -r2537,150:20753781,28169769:0,616038,102891 -g2537,150:22064501,28169769 -g2537,150:22064501,28169769 -g2537,150:24744923,28169769 -g2537,150:25911463,28169769 -g2537,150:29310160,28169769 -k2537,151:31992549,28169769:590480 -k2537,151:32583029,28169769:590480 -) -(2537,152:20753781,29012798:11829248,513147,134348 -h2537,151:20753781,29012798:0,0,0 -r2537,151:20753781,29012798:0,647495,134348 -g2537,151:22064501,29012798 -g2537,151:22064501,29012798 -g2537,151:24867475,29012798 -g2537,151:26523569,29012798 -g2537,151:28091845,29012798 -k2537,152:30935126,29012798:1647904 -k2537,152:32583029,29012798:1647903 -) -(2537,153:20753781,29855827:11829248,513147,134348 -h2537,152:20753781,29855827:0,0,0 -g2537,152:23228420,29855827 -k2537,153:29107000,29855827:3476030 -k2537,153:32583029,29855827:3476029 -) -(2537,154:20753781,30698856:11829248,505283,134348 -h2537,153:20753781,30698856:0,0,0 -r2537,153:20753781,30698856:0,639631,134348 -g2537,153:22064501,30698856 -g2537,153:22064501,30698856 -g2537,153:24565354,30698856 -g2537,153:25209572,30698856 -g2537,153:27078658,30698856 -k2537,154:30428532,30698856:2154497 -k2537,154:32583029,30698856:2154497 -) -(2537,155:20753781,31541885:11829248,513147,134348 -h2537,154:20753781,31541885:0,0,0 -r2537,154:20753781,31541885:0,647495,134348 -g2537,154:22064501,31541885 -g2537,154:22064501,31541885 -g2537,154:25166320,31541885 -g2537,154:26024841,31541885 -g2537,154:29116829,31541885 -k2537,155:31447618,31541885:1135412 -k2537,155:32583029,31541885:1135411 -) -(2537,156:20753781,32384914:11829248,505283,126483 -h2537,155:20753781,32384914:0,0,0 -r2537,155:20753781,32384914:0,631766,126483 -g2537,155:22064501,32384914 -g2537,155:22064501,32384914 -g2537,155:26777850,32384914 -g2537,155:27659964,32384914 -g2537,155:28477853,32384914 -k2537,156:31128130,32384914:1454900 -k2537,156:32583029,32384914:1454899 -) -(2537,157:20753781,33227943:11829248,513147,134348 -h2537,156:20753781,33227943:0,0,0 -r2537,156:20753781,33227943:0,647495,134348 -g2537,156:22064501,33227943 -g2537,156:22064501,33227943 -g2537,156:23546925,33227943 -g2537,156:26979045,33227943 -g2537,156:27837566,33227943 -g2537,156:29599829,33227943 -k2537,157:31689118,33227943:893912 -k2537,157:32583029,33227943:893911 -) -(2537,158:20753781,34070972:11829248,505283,134348 -h2537,157:20753781,34070972:0,0,0 -r2537,157:20753781,34070972:0,639631,134348 -g2537,157:22064501,34070972 -g2537,157:22064501,34070972 -g2537,157:24223256,34070972 -g2537,157:27093732,34070972 -g2537,157:31645207,34070972 -k2537,157:32583029,34070972:321784 -) -(2537,158:23375221,34912460:9207808,477757,102891 -g2537,157:24193110,34912460 -k2537,158:28985758,34912460:3597271 -k2537,158:32583029,34912460:3597271 -) -(2537,159:20753781,35755489:11829248,505283,134348 -h2537,158:20753781,35755489:0,0,0 -r2537,158:20753781,35755489:0,639631,134348 -g2537,158:22064501,35755489 -g2537,158:22064501,35755489 -g2537,158:24843882,35755489 -g2537,158:29348826,35755489 -k2537,159:31563616,35755489:1019413 -k2537,159:32583029,35755489:1019413 -) -(2537,160:20753781,36598518:11829248,505283,134348 -h2537,159:20753781,36598518:0,0,0 -r2537,159:20753781,36598518:0,639631,134348 -g2537,159:22064501,36598518 -g2537,159:22064501,36598518 -g2537,159:24961847,36598518 -k2537,160:29370127,36598518:3212903 -k2537,160:32583029,36598518:3212902 -) -(2537,161:20753781,37441547:11829248,505283,126483 -h2537,160:20753781,37441547:0,0,0 -r2537,160:20753781,37441547:0,631766,126483 -g2537,160:22064501,37441547 -g2537,160:22064501,37441547 -g2537,160:23766471,37441547 -g2537,160:26127077,37441547 -g2537,160:26942344,37441547 -g2537,160:28593851,37441547 -g2537,160:29984525,37441547 -k2537,160:32583029,37441547:663881 -) -(2537,161:23375221,38283035:9207808,477757,11795 -k2537,161:28377584,38283035:4205445 -k2537,161:32583029,38283035:4205445 -) -(2537,162:20753781,39126064:11829248,485622,102891 -h2537,161:20753781,39126064:0,0,0 -r2537,161:20753781,39126064:0,588513,102891 -g2537,161:22064501,39126064 -g2537,161:22064501,39126064 -g2537,161:25117168,39126064 -g2537,161:25932435,39126064 -g2537,161:26750324,39126064 -k2537,162:30264365,39126064:2318664 -k2537,162:32583029,39126064:2318664 -) -(2537,163:20753781,39969093:11829248,505283,134348 -h2537,162:20753781,39969093:0,0,0 -r2537,162:20753781,39969093:0,639631,134348 -g2537,162:22064501,39969093 -g2537,162:22064501,39969093 -g2537,162:23282815,39969093 -g2537,162:23927033,39969093 -g2537,162:27142229,39969093 -k2537,163:30460318,39969093:2122712 -k2537,163:32583029,39969093:2122711 -) -(2537,164:20753781,40812122:11829248,505283,134348 -h2537,163:20753781,40812122:0,0,0 -r2537,163:20753781,40812122:0,639631,134348 -g2537,163:22064501,40812122 -g2537,163:22064501,40812122 -g2537,163:23999123,40812122 -g2537,163:25217437,40812122 -g2537,163:25861655,40812122 -g2537,163:29076851,40812122 -k2537,164:31228399,40812122:1354630 -k2537,164:32583029,40812122:1354630 -) -(2537,168:20753781,42336194:11829248,505283,134348 -h2537,167:20753781,42336194:0,0,0 -g2537,167:24645308,42336194 -g2537,167:26657263,42336194 -g2537,167:29348171,42336194 -k2537,168:32324817,42336194:258213 -k2537,168:32583029,42336194:258212 -) -(2537,169:20753781,43179223:11829248,505283,134348 -h2537,168:20753781,43179223:0,0,0 -g2537,168:23259877,43179223 -k2537,169:29148615,43179223:3434415 -k2537,169:32583029,43179223:3434414 -) -(2537,170:20753781,44022252:11829248,505283,126483 -h2537,169:20753781,44022252:0,0,0 -r2537,169:20753781,44022252:0,631766,126483 -g2537,169:22064501,44022252 -g2537,169:22064501,44022252 -g2537,169:23017394,44022252 -g2537,169:24771792,44022252 -g2537,169:27390610,44022252 -k2537,170:30584508,44022252:1998521 -k2537,170:32583029,44022252:1998521 -) -(2537,172:20753781,44865281:11829248,505283,134348 -h2537,170:20753781,44865281:0,0,0 -g2537,170:24460497,44865281 -g2537,170:28019101,44865281 -k2537,171:28019101,44865281:0 -g2537,171:29185641,44865281 -k2537,171:32583029,44865281:494798 -) -(2537,172:23375221,45706769:9207808,513147,134348 -g2537,171:24233742,45706769 -g2537,171:27325730,45706769 -k2537,172:31708123,45706769:874906 -k2537,172:32583029,45706769:874906 -) -] -(2537,178:32583029,45706769:0,355205,126483 -h2537,178:32583029,45706769:420741,355205,126483 -k2537,178:32583029,45706769:-420741 -) -) -] -(2537,178:32583029,45706769:0,0,0 -g2537,178:32583029,45706769 -) -) -] -(2537,178:6630773,47279633:25952256,0,0 -h2537,178:6630773,47279633:25952256,0,0 -) -] -h2537,178:4262630,4025873:0,0,0 -] -!27518 +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,548:37855564,49800853:1179648,16384,0 +) +) +k2534,548:3078556,49800853:-34777008 +) +] +g2534,548:6630773,4812305 +k2534,548:28224886,4812305:20398736 +g2534,548:30907930,4812305 +) +) +] +[2534,548:6630773,45706769:25952256,40108032,0 +(2534,548:6630773,45706769:25952256,40108032,0 +(2534,548:6630773,45706769:0,0,0 +g2534,548:6630773,45706769 +) +[2534,548:6630773,45706769:25952256,40108032,0 +(2534,548:6630773,45706769:25952256,40108032,126483 +[2534,548:6630773,45706769:11829248,40108032,102891 +(2534,454:6630773,6254097:11829248,505283,102891 +h2534,453:6630773,6254097:0,0,0 +r2534,453:6630773,6254097:0,608174,102891 +g2534,453:7941493,6254097 +g2534,453:7941493,6254097 +g2534,453:11533520,6254097 +k2534,454:15594459,6254097:2865562 +k2534,454:18460021,6254097:2865562 +) +(2534,455:6630773,7112499:11829248,505283,102891 +h2534,454:6630773,7112499:0,0,0 +r2534,454:6630773,7112499:0,608174,102891 +g2534,454:7941493,7112499 +g2534,454:7941493,7112499 +g2534,454:11154722,7112499 +k2534,455:15405060,7112499:3054961 +k2534,455:18460021,7112499:3054961 +) +(2534,456:6630773,7970901:11829248,505283,102891 +h2534,455:6630773,7970901:0,0,0 +r2534,455:6630773,7970901:0,608174,102891 +g2534,455:7941493,7970901 +g2534,455:7941493,7970901 +g2534,455:10647474,7970901 +g2534,455:12215750,7970901 +g2534,455:13784026,7970901 +k2534,456:16719712,7970901:1740309 +k2534,456:18460021,7970901:1740309 +) +(2534,457:6630773,8829304:11829248,505283,126483 +h2534,456:6630773,8829304:0,0,0 +r2534,456:6630773,8829304:0,631766,126483 +g2534,456:7941493,8829304 +g2534,456:7941493,8829304 +g2534,456:10639609,8829304 +g2534,456:12207885,8829304 +k2534,457:15931642,8829304:2528380 +k2534,457:18460021,8829304:2528379 +) +(2534,458:6630773,9687706:11829248,513147,102891 +h2534,457:6630773,9687706:0,0,0 +r2534,457:6630773,9687706:0,616038,102891 +g2534,457:7941493,9687706 +g2534,457:7941493,9687706 +g2534,457:9302675,9687706 +g2534,457:10870951,9687706 +k2534,458:15263175,9687706:3196847 +k2534,458:18460021,9687706:3196846 +) +(2534,459:6630773,10546108:11829248,505283,102891 +h2534,458:6630773,10546108:0,0,0 +r2534,458:6630773,10546108:0,608174,102891 +g2534,458:7941493,10546108 +g2534,458:7941493,10546108 +g2534,458:11632480,10546108 +k2534,459:15643939,10546108:2816082 +k2534,459:18460021,10546108:2816082 +) +(2534,460:6630773,11404510:11829248,505283,102891 +h2534,459:6630773,11404510:0,0,0 +r2534,459:6630773,11404510:0,608174,102891 +g2534,459:7941493,11404510 +g2534,459:7941493,11404510 +g2534,459:10247704,11404510 +k2534,460:14951551,11404510:3508470 +k2534,460:18460021,11404510:3508470 +) +(2534,461:6630773,12262912:11829248,505283,134348 +h2534,460:6630773,12262912:0,0,0 +r2534,460:6630773,12262912:0,639631,134348 +g2534,460:7941493,12262912 +g2534,460:7941493,12262912 +g2534,460:10847359,12262912 +k2534,461:15251379,12262912:3208643 +k2534,461:18460021,12262912:3208642 +) +(2534,462:6630773,13121314:11829248,505283,102891 +h2534,461:6630773,13121314:0,0,0 +r2534,461:6630773,13121314:0,608174,102891 +g2534,461:7941493,13121314 +g2534,461:7941493,13121314 +g2534,461:11017752,13121314 +g2534,461:11789110,13121314 +k2534,462:15523025,13121314:2936997 +k2534,462:18460021,13121314:2936996 +) +(2534,463:6630773,13979717:11829248,505283,102891 +h2534,462:6630773,13979717:0,0,0 +r2534,462:6630773,13979717:0,608174,102891 +g2534,462:7941493,13979717 +g2534,462:7941493,13979717 +g2534,462:10543271,13979717 +g2534,462:11713088,13979717 +g2534,462:12882905,13979717 +g2534,462:14451181,13979717 +g2534,462:16019457,13979717 +k2534,463:17837428,13979717:622594 +k2534,463:18460021,13979717:622593 +) +(2534,464:6630773,14838119:11829248,505283,126483 +h2534,463:6630773,14838119:0,0,0 +r2534,463:6630773,14838119:0,631766,126483 +g2534,463:7941493,14838119 +g2534,463:7941493,14838119 +g2534,463:10659926,14838119 +k2534,464:15157662,14838119:3302359 +k2534,464:18460021,14838119:3302359 +) +(2534,465:6630773,15696521:11829248,505283,126483 +h2534,464:6630773,15696521:0,0,0 +r2534,464:6630773,15696521:0,631766,126483 +g2534,464:7941493,15696521 +g2534,464:7941493,15696521 +g2534,464:10186100,15696521 +g2534,464:11754376,15696521 +g2534,464:13322652,15696521 +k2534,465:16489025,15696521:1970996 +k2534,465:18460021,15696521:1970996 +) +(2534,467:6630773,16554923:11829248,505283,126483 +h2534,465:6630773,16554923:0,0,0 +r2534,465:6630773,16554923:0,631766,126483 +g2534,465:7941493,16554923 +g2534,465:7941493,16554923 +g2534,465:11589226,16554923 +g2534,465:13157502,16554923 +g2534,465:14725778,16554923 +g2534,465:16294054,16554923 +k2534,465:18460021,16554923:796920 +) +(2534,467:9252213,17396411:9207808,485622,102891 +g2534,465:10820489,17396411 +g2534,465:12388765,17396411 +g2534,465:13957041,17396411 +g2534,466:15525317,17396411 +k2534,467:17590358,17396411:869664 +k2534,467:18460021,17396411:869663 +) +(2534,468:6630773,18254813:11829248,505283,102891 +h2534,467:6630773,18254813:0,0,0 +r2534,467:6630773,18254813:0,608174,102891 +g2534,467:7941493,18254813 +g2534,467:7941493,18254813 +g2534,467:10301444,18254813 +k2534,468:14978421,18254813:3481600 +k2534,468:18460021,18254813:3481600 +) +(2534,469:6630773,19113216:11829248,485622,134348 +h2534,468:6630773,19113216:0,0,0 +r2534,468:6630773,19113216:0,619970,134348 +g2534,468:7941493,19113216 +g2534,468:7941493,19113216 +g2534,468:10049786,19113216 +k2534,469:14852592,19113216:3607429 +k2534,469:18460021,19113216:3607429 +) +(2534,470:6630773,19971618:11829248,505283,102891 +h2534,469:6630773,19971618:0,0,0 +r2534,469:6630773,19971618:0,608174,102891 +g2534,469:7941493,19971618 +g2534,469:7941493,19971618 +g2534,469:10092384,19971618 +g2534,469:11660660,19971618 +g2534,469:13228936,19971618 +g2534,469:14797212,19971618 +g2534,469:16365488,19971618 +k2534,470:18010443,19971618:449578 +k2534,470:18460021,19971618:449578 +) +(2534,471:6630773,20830020:11829248,505283,126483 +h2534,470:6630773,20830020:0,0,0 +r2534,470:6630773,20830020:0,631766,126483 +g2534,470:7941493,20830020 +g2534,470:7941493,20830020 +g2534,470:10543927,20830020 +g2534,470:12112203,20830020 +g2534,470:13680479,20830020 +g2534,470:15248755,20830020 +k2534,471:17452077,20830020:1007945 +k2534,471:18460021,20830020:1007944 +) +(2534,472:6630773,21688422:11829248,505283,102891 +h2534,471:6630773,21688422:0,0,0 +r2534,471:6630773,21688422:0,608174,102891 +g2534,471:7941493,21688422 +g2534,471:7941493,21688422 +g2534,471:10055028,21688422 +g2534,471:11623304,21688422 +k2534,472:15639351,21688422:2820670 +k2534,472:18460021,21688422:2820670 +) +(2534,473:6630773,22546824:11829248,505283,102891 +h2534,472:6630773,22546824:0,0,0 +r2534,472:6630773,22546824:0,608174,102891 +g2534,472:7941493,22546824 +g2534,472:7941493,22546824 +g2534,472:10346663,22546824 +k2534,473:15001031,22546824:3458991 +k2534,473:18460021,22546824:3458990 +) +(2534,474:6630773,23405226:11829248,505283,102891 +h2534,473:6630773,23405226:0,0,0 +g2534,473:8948125,23405226 +k2534,474:13903303,23405226:4556719 +k2534,474:18460021,23405226:4556718 +) +(2534,475:6630773,24263629:11829248,505283,126483 +h2534,474:6630773,24263629:0,0,0 +g2534,474:10737258,24263629 +k2534,475:15196328,24263629:3263693 +k2534,475:18460021,24263629:3263693 +) +(2534,476:6630773,25122031:11829248,505283,126483 +h2534,475:6630773,25122031:0,0,0 +g2534,475:8322257,25122031 +g2534,475:9488797,25122031 +g2534,475:12529667,25122031 +k2534,475:18460021,25122031:2002781 +) +(2534,476:9252213,25963519:9207808,505283,126483 +k2534,476:15133414,25963519:3326608 +k2534,476:18460021,25963519:3326607 +) +(2534,477:6630773,26821921:11829248,485622,126483 +h2534,476:6630773,26821921:0,0,0 +g2534,476:8220021,26821921 +g2534,476:11339534,26821921 +k2534,477:15497466,26821921:2962555 +k2534,477:18460021,26821921:2962555 +) +(2534,478:6630773,27680323:11829248,473825,126483 +h2534,477:6630773,27680323:0,0,0 +k2534,478:13405557,27680323:5054464 +k2534,478:18460021,27680323:5054464 +) +(2534,479:6630773,28538725:11829248,505283,126483 +h2534,478:6630773,28538725:0,0,0 +r2534,478:6630773,28538725:0,631766,126483 +g2534,478:7941493,28538725 +g2534,478:7941493,28538725 +g2534,478:11224846,28538725 +k2534,479:16201650,28538725:2258371 +k2534,479:18460021,28538725:2258371 +) +(2534,480:6630773,29397128:11829248,485622,126483 +h2534,479:6630773,29397128:0,0,0 +r2534,479:6630773,29397128:0,612105,126483 +g2534,479:7941493,29397128 +g2534,479:7941493,29397128 +g2534,479:10188722,29397128 +k2534,480:15683588,29397128:2776433 +k2534,480:18460021,29397128:2776433 +) +(2534,481:6630773,30255530:11829248,505283,134348 +h2534,480:6630773,30255530:0,0,0 +g2534,480:10347974,30255530 +k2534,481:14802457,30255530:3657565 +k2534,481:18460021,30255530:3657564 +) +(2534,482:6630773,31113932:11829248,505283,126483 +h2534,481:6630773,31113932:0,0,0 +g2534,481:9928544,31113932 +k2534,482:14791971,31113932:3668050 +k2534,482:18460021,31113932:3668050 +) +(2534,483:6630773,31972334:11829248,505283,126483 +h2534,482:6630773,31972334:0,0,0 +k2534,483:13349196,31972334:5110825 +k2534,483:18460021,31972334:5110825 +) +(2534,484:6630773,32830736:11829248,505283,102891 +h2534,483:6630773,32830736:0,0,0 +r2534,483:6630773,32830736:0,608174,102891 +g2534,483:7941493,32830736 +g2534,483:7941493,32830736 +g2534,483:11488956,32830736 +k2534,484:15572177,32830736:2887844 +k2534,484:18460021,32830736:2887844 +) +(2534,485:6630773,33689138:11829248,485622,126483 +h2534,484:6630773,33689138:0,0,0 +r2534,484:6630773,33689138:0,612105,126483 +g2534,484:7941493,33689138 +g2534,484:7941493,33689138 +g2534,484:9393115,33689138 +g2534,484:12380246,33689138 +k2534,485:16017822,33689138:2442199 +k2534,485:18460021,33689138:2442199 +) +(2534,486:6630773,34547541:11829248,505283,134348 +h2534,485:6630773,34547541:0,0,0 +r2534,485:6630773,34547541:0,639631,134348 +g2534,485:7941493,34547541 +g2534,485:7941493,34547541 +g2534,485:9574650,34547541 +g2534,485:10218868,34547541 +g2534,485:13310856,34547541 +k2534,486:16283898,34547541:2176124 +k2534,486:18460021,34547541:2176123 +) +(2534,487:6630773,35405943:11829248,505283,126483 +h2534,486:6630773,35405943:0,0,0 +r2534,486:6630773,35405943:0,631766,126483 +g2534,486:7941493,35405943 +g2534,486:7941493,35405943 +g2534,486:10395816,35405943 +g2534,486:12927471,35405943 +k2534,487:16291435,35405943:2168587 +k2534,487:18460021,35405943:2168586 +) +(2534,488:6630773,36264345:11829248,505283,126483 +h2534,487:6630773,36264345:0,0,0 +r2534,487:6630773,36264345:0,631766,126483 +g2534,487:7941493,36264345 +g2534,487:7941493,36264345 +g2534,487:9300709,36264345 +g2534,487:10691383,36264345 +g2534,487:13716524,36264345 +g2534,487:15366720,36264345 +k2534,488:18272587,36264345:187434 +k2534,488:18460021,36264345:187434 +) +(2534,489:6630773,37122747:11829248,505283,126483 +h2534,488:6630773,37122747:0,0,0 +r2534,488:6630773,37122747:0,631766,126483 +g2534,488:7941493,37122747 +g2534,488:7941493,37122747 +g2534,488:10309308,37122747 +g2534,488:11959504,37122747 +k2534,489:16568979,37122747:1891042 +k2534,489:18460021,37122747:1891042 +) +(2534,490:6630773,37981149:11829248,485622,126483 +h2534,489:6630773,37981149:0,0,0 +r2534,489:6630773,37981149:0,612105,126483 +g2534,489:7941493,37981149 +g2534,489:7941493,37981149 +g2534,489:10692039,37981149 +k2534,490:15935247,37981149:2524775 +k2534,490:18460021,37981149:2524774 +) +(2534,491:6630773,38839552:11829248,505283,102891 +h2534,490:6630773,38839552:0,0,0 +r2534,490:6630773,38839552:0,608174,102891 +g2534,490:7941493,38839552 +g2534,490:7941493,38839552 +g2534,490:10735292,38839552 +k2534,491:15956873,38839552:2503148 +k2534,491:18460021,38839552:2503148 +) +(2534,492:6630773,39697954:11829248,505283,126483 +h2534,491:6630773,39697954:0,0,0 +r2534,491:6630773,39697954:0,631766,126483 +g2534,491:7941493,39697954 +g2534,491:7941493,39697954 +g2534,491:10523611,39697954 +g2534,491:12173807,39697954 +k2534,492:16676131,39697954:1783891 +k2534,492:18460021,39697954:1783890 +) +(2534,493:6630773,40556356:11829248,485622,134348 +h2534,492:6630773,40556356:0,0,0 +r2534,492:6630773,40556356:0,619970,134348 +g2534,492:7941493,40556356 +g2534,492:7941493,40556356 +g2534,492:11798286,40556356 +k2534,493:16488370,40556356:1971651 +k2534,493:18460021,40556356:1971651 +) +(2534,494:6630773,41414758:11829248,505283,134348 +h2534,493:6630773,41414758:0,0,0 +r2534,493:6630773,41414758:0,639631,134348 +g2534,493:7941493,41414758 +g2534,493:7941493,41414758 +g2534,493:11421454,41414758 +g2534,493:13938036,41414758 +k2534,494:16796717,41414758:1663304 +k2534,494:18460021,41414758:1663304 +) +(2534,495:6630773,42273160:11829248,505283,126483 +h2534,494:6630773,42273160:0,0,0 +r2534,494:6630773,42273160:0,631766,126483 +g2534,494:7941493,42273160 +g2534,494:7941493,42273160 +g2534,494:11969335,42273160 +g2534,494:14416449,42273160 +k2534,495:17035924,42273160:1424098 +k2534,495:18460021,42273160:1424097 +) +(2534,496:6630773,43131562:11829248,505283,102891 +h2534,495:6630773,43131562:0,0,0 +r2534,495:6630773,43131562:0,608174,102891 +g2534,495:7941493,43131562 +g2534,495:7941493,43131562 +g2534,495:9530085,43131562 +g2534,495:13411127,43131562 +k2534,496:17294791,43131562:1165231 +k2534,496:18460021,43131562:1165230 +) +(2534,497:6630773,43989965:11829248,505283,126483 +h2534,496:6630773,43989965:0,0,0 +r2534,496:6630773,43989965:0,631766,126483 +g2534,496:7941493,43989965 +g2534,496:7941493,43989965 +g2534,496:10473148,43989965 +k2534,497:15105233,43989965:3354788 +k2534,497:18460021,43989965:3354788 +) +(2534,498:6630773,44848367:11829248,505283,102891 +h2534,497:6630773,44848367:0,0,0 +r2534,497:6630773,44848367:0,608174,102891 +g2534,497:8596853,44848367 +g2534,497:8596853,44848367 +g2534,497:9194541,44848367 +g2534,497:12912398,44848367 +k2534,498:17045426,44848367:1414595 +k2534,498:18460021,44848367:1414595 +) +(2534,499:6630773,45706769:11829248,505283,102891 +h2534,498:6630773,45706769:0,0,0 +r2534,498:6630773,45706769:0,608174,102891 +g2534,498:8596853,45706769 +g2534,498:8596853,45706769 +g2534,498:9194541,45706769 +g2534,498:13242699,45706769 +k2534,499:17210577,45706769:1249445 +k2534,499:18460021,45706769:1249444 +) +] +k2534,548:19606901,45706769:1146880 +r2534,548:19606901,45706769:0,40234515,126483 +k2534,548:20753781,45706769:1146880 +[2534,548:20753781,45706769:11829248,40108032,126483 +(2534,500:20753781,6254097:11829248,505283,126483 +h2534,499:20753781,6254097:0,0,0 +r2534,499:20753781,6254097:0,631766,126483 +g2534,499:22064501,6254097 +g2534,499:22064501,6254097 +g2534,499:23335899,6254097 +g2534,499:24986095,6254097 +k2534,500:29382251,6254097:3200779 +k2534,500:32583029,6254097:3200778 +) +(2534,501:20753781,7112499:11829248,505283,102891 +h2534,500:20753781,7112499:0,0,0 +r2534,500:20753781,7112499:0,608174,102891 +g2534,500:22064501,7112499 +g2534,500:22064501,7112499 +g2534,500:23870673,7112499 +g2534,500:25618518,7112499 +k2534,501:29698462,7112499:2884567 +k2534,501:32583029,7112499:2884567 +) +(2534,502:20753781,7970901:11829248,513147,126483 +h2534,501:20753781,7970901:0,0,0 +r2534,501:20753781,7970901:0,639630,126483 +g2534,501:22064501,7970901 +g2534,501:22064501,7970901 +g2534,501:25433051,7970901 +g2534,501:27083247,7970901 +k2534,502:30430827,7970901:2152203 +k2534,502:32583029,7970901:2152202 +) +(2534,503:20753781,8829304:11829248,513147,102891 +h2534,502:20753781,8829304:0,0,0 +r2534,502:20753781,8829304:0,616038,102891 +g2534,502:22064501,8829304 +g2534,502:22064501,8829304 +g2534,502:23976186,8829304 +g2534,502:26420678,8829304 +k2534,503:30861070,8829304:1721959 +k2534,503:32583029,8829304:1721959 +) +(2534,504:20753781,9687706:11829248,513147,102891 +h2534,503:20753781,9687706:0,0,0 +r2534,503:20753781,9687706:0,616038,102891 +g2534,503:22064501,9687706 +g2534,503:22064501,9687706 +g2534,503:24098738,9687706 +k2534,504:28938572,9687706:3644457 +k2534,504:32583029,9687706:3644457 +) +(2534,505:20753781,10546108:11829248,505283,134348 +h2534,504:20753781,10546108:0,0,0 +r2534,504:20753781,10546108:0,639631,134348 +g2534,504:22064501,10546108 +g2534,504:22064501,10546108 +g2534,504:26003870,10546108 +k2534,505:30652666,10546108:1930363 +k2534,505:32583029,10546108:1930363 +) +(2534,506:20753781,11404510:11829248,505283,134348 +h2534,505:20753781,11404510:0,0,0 +r2534,505:20753781,11404510:0,639631,134348 +g2534,505:22064501,11404510 +g2534,505:22064501,11404510 +g2534,505:23814312,11404510 +g2534,505:26963316,11404510 +g2534,505:29626043,11404510 +k2534,506:32463753,11404510:119277 +k2534,506:32583029,11404510:119276 +) +(2534,507:20753781,12262912:11829248,505283,126483 +h2534,506:20753781,12262912:0,0,0 +r2534,506:20753781,12262912:0,631766,126483 +g2534,506:22064501,12262912 +g2534,506:22064501,12262912 +g2534,506:23814312,12262912 +g2534,506:25794810,12262912 +k2534,507:30548136,12262912:2034893 +k2534,507:32583029,12262912:2034893 +) +(2534,508:20753781,13121314:11829248,505283,102891 +h2534,507:20753781,13121314:0,0,0 +r2534,507:20753781,13121314:0,608174,102891 +g2534,507:22064501,13121314 +g2534,507:22064501,13121314 +g2534,507:23814312,13121314 +g2534,507:26083168,13121314 +k2534,508:30692315,13121314:1890714 +k2534,508:32583029,13121314:1890714 +) +(2534,509:20753781,13979717:11829248,485622,102891 +h2534,508:20753781,13979717:0,0,0 +r2534,508:20753781,13979717:0,588513,102891 +g2534,508:22064501,13979717 +g2534,508:22064501,13979717 +g2534,508:24318284,13979717 +k2534,509:29809873,13979717:2773156 +k2534,509:32583029,13979717:2773156 +) +(2534,510:20753781,14838119:11829248,485622,102891 +h2534,509:20753781,14838119:0,0,0 +r2534,509:20753781,14838119:0,588513,102891 +g2534,509:22064501,14838119 +g2534,509:22064501,14838119 +g2534,509:24144613,14838119 +g2534,509:25030004,14838119 +g2534,509:29193506,14838119 +k2534,510:31485956,14838119:1097073 +k2534,510:32583029,14838119:1097073 +) +(2534,511:20753781,15696521:11829248,505283,102891 +h2534,510:20753781,15696521:0,0,0 +r2534,510:20753781,15696521:0,608174,102891 +g2534,510:22064501,15696521 +g2534,510:22064501,15696521 +g2534,510:24281584,15696521 +k2534,511:29791523,15696521:2791506 +k2534,511:32583029,15696521:2791506 +) +(2534,512:20753781,16554923:11829248,505283,126483 +h2534,511:20753781,16554923:0,0,0 +r2534,511:20753781,16554923:0,631766,126483 +g2534,511:22064501,16554923 +g2534,511:22064501,16554923 +g2534,511:24325493,16554923 +k2534,512:29051950,16554923:3531080 +k2534,512:32583029,16554923:3531079 +) +(2534,513:20753781,17413325:11829248,505283,126483 +h2534,512:20753781,17413325:0,0,0 +r2534,512:20753781,17413325:0,631766,126483 +g2534,512:22064501,17413325 +g2534,512:22064501,17413325 +g2534,512:23432237,17413325 +g2534,512:25082433,17413325 +k2534,513:29430420,17413325:3152610 +k2534,513:32583029,17413325:3152609 +) +(2534,514:20753781,18271728:11829248,505283,126483 +h2534,513:20753781,18271728:0,0,0 +r2534,513:20753781,18271728:0,631766,126483 +g2534,513:22064501,18271728 +g2534,513:22064501,18271728 +g2534,513:23990604,18271728 +g2534,513:25381278,18271728 +g2534,513:27706495,18271728 +g2534,513:29686993,18271728 +k2534,514:31732700,18271728:850330 +k2534,514:32583029,18271728:850329 +) +(2534,515:20753781,19130130:11829248,505283,126483 +h2534,514:20753781,19130130:0,0,0 +r2534,514:20753781,19130130:0,631766,126483 +g2534,514:22064501,19130130 +g2534,514:22064501,19130130 +g2534,514:23911305,19130130 +g2534,514:28054491,19130130 +k2534,515:31677977,19130130:905053 +k2534,515:32583029,19130130:905052 +) +(2534,516:20753781,19988532:11829248,505283,102891 +h2534,515:20753781,19988532:0,0,0 +r2534,515:20753781,19988532:0,608174,102891 +g2534,515:22064501,19988532 +g2534,515:22064501,19988532 +g2534,515:24241607,19988532 +g2534,515:25230545,19988532 +k2534,516:30266004,19988532:2317026 +k2534,516:32583029,19988532:2317025 +) +(2534,517:20753781,20846934:11829248,485622,102891 +h2534,516:20753781,20846934:0,0,0 +r2534,516:20753781,20846934:0,588513,102891 +g2534,516:22064501,20846934 +g2534,516:22064501,20846934 +g2534,516:24505717,20846934 +k2534,517:29142062,20846934:3440968 +k2534,517:32583029,20846934:3440967 +) +(2534,518:20753781,21705336:11829248,505283,102891 +h2534,517:20753781,21705336:0,0,0 +r2534,517:20753781,21705336:0,608174,102891 +g2534,517:22064501,21705336 +g2534,517:22064501,21705336 +g2534,517:25127653,21705336 +k2534,518:29453030,21705336:3130000 +k2534,518:32583029,21705336:3129999 +) +(2534,519:20753781,22563738:11829248,505283,102891 +h2534,518:20753781,22563738:0,0,0 +r2534,518:20753781,22563738:0,608174,102891 +g2534,518:22064501,22563738 +g2534,518:22064501,22563738 +g2534,518:24963158,22563738 +g2534,518:29370454,22563738 +k2534,519:32335958,22563738:247071 +k2534,519:32583029,22563738:247071 +) +(2534,520:20753781,23422141:11829248,513147,126483 +h2534,519:20753781,23422141:0,0,0 +r2534,519:20753781,23422141:0,639630,126483 +g2534,519:22064501,23422141 +g2534,519:22064501,23422141 +g2534,519:24422486,23422141 +g2534,519:25273143,23422141 +g2534,519:26959384,23422141 +k2534,520:30368895,23422141:2214134 +k2534,520:32583029,23422141:2214134 +) +(2534,521:20753781,24280543:11829248,485622,126483 +h2534,520:20753781,24280543:0,0,0 +r2534,520:20753781,24280543:0,612105,126483 +g2534,520:22064501,24280543 +g2534,520:22064501,24280543 +g2534,520:23501705,24280543 +g2534,520:26033360,24280543 +k2534,521:29905883,24280543:2677146 +k2534,521:32583029,24280543:2677146 +) +(2534,522:20753781,25138945:11829248,505283,126483 +h2534,521:20753781,25138945:0,0,0 +r2534,521:20753781,25138945:0,631766,126483 +g2534,521:22064501,25138945 +g2534,521:22064501,25138945 +g2534,521:23233007,25138945 +g2534,521:25585749,25138945 +k2534,522:30443606,25138945:2139424 +k2534,522:32583029,25138945:2139423 +) +(2534,523:20753781,25997347:11829248,513147,126483 +h2534,522:20753781,25997347:0,0,0 +r2534,522:20753781,25997347:0,639630,126483 +g2534,522:22064501,25997347 +g2534,522:22064501,25997347 +g2534,522:23871328,25997347 +g2534,522:24729849,25997347 +g2534,522:28128546,25997347 +k2534,523:31715004,25997347:868025 +k2534,523:32583029,25997347:868025 +) +(2534,524:20753781,26855749:11829248,485622,126483 +h2534,523:20753781,26855749:0,0,0 +r2534,523:20753781,26855749:0,612105,126483 +g2534,523:22064501,26855749 +g2534,523:22064501,26855749 +g2534,523:25452057,26855749 +g2534,523:27983712,26855749 +k2534,524:30881059,26855749:1701970 +k2534,524:32583029,26855749:1701970 +) +(2534,525:20753781,27714152:11829248,485622,134348 +h2534,524:20753781,27714152:0,0,0 +r2534,524:20753781,27714152:0,619970,134348 +g2534,524:22064501,27714152 +g2534,524:22064501,27714152 +g2534,524:25009689,27714152 +k2534,525:29394048,27714152:3188982 +k2534,525:32583029,27714152:3188981 +) +(2534,526:20753781,28572554:11829248,473825,134348 +h2534,525:20753781,28572554:0,0,0 +r2534,525:20753781,28572554:0,608173,134348 +g2534,525:22064501,28572554 +g2534,525:22064501,28572554 +g2534,525:26153292,28572554 +k2534,525:32583029,28572554:2221670 +) +(2534,526:23375221,29414042:9207808,485622,11795 +k2534,526:29338342,29414042:3244688 +k2534,526:32583029,29414042:3244687 +) +(2534,527:20753781,30272444:11829248,513147,102891 +h2534,526:20753781,30272444:0,0,0 +r2534,526:20753781,30272444:0,616038,102891 +g2534,526:22064501,30272444 +g2534,526:22064501,30272444 +g2534,526:25242997,30272444 +g2534,526:27114705,30272444 +k2534,527:31208084,30272444:1374946 +k2534,527:32583029,30272444:1374945 +) +(2534,528:20753781,31130846:11829248,505283,134348 +h2534,527:20753781,31130846:0,0,0 +r2534,527:20753781,31130846:0,639631,134348 +g2534,527:22064501,31130846 +g2534,527:22064501,31130846 +g2534,527:25534632,31130846 +k2534,528:29656519,31130846:2926510 +k2534,528:32583029,31130846:2926510 +) +(2534,529:20753781,31989248:11829248,513147,134348 +h2534,528:20753781,31989248:0,0,0 +r2534,528:20753781,31989248:0,647495,134348 +g2534,528:22064501,31989248 +g2534,528:22064501,31989248 +g2534,528:24634823,31989248 +g2534,528:26486215,31989248 +g2534,528:27518407,31989248 +k2534,529:30648407,31989248:1934623 +k2534,529:32583029,31989248:1934622 +) +(2534,530:20753781,32847650:11829248,485622,134348 +h2534,529:20753781,32847650:0,0,0 +r2534,529:20753781,32847650:0,619970,134348 +g2534,529:22064501,32847650 +g2534,529:22064501,32847650 +g2534,529:23341142,32847650 +g2534,529:26342690,32847650 +k2534,530:30060548,32847650:2522481 +k2534,530:32583029,32847650:2522481 +) +(2534,531:20753781,33706053:11829248,485622,134348 +h2534,530:20753781,33706053:0,0,0 +r2534,530:20753781,33706053:0,619970,134348 +g2534,530:22064501,33706053 +g2534,530:22064501,33706053 +g2534,530:24470983,33706053 +k2534,531:29124695,33706053:3458335 +k2534,531:32583029,33706053:3458334 +) +(2534,532:20753781,34564455:11829248,513147,134348 +h2534,531:20753781,34564455:0,0,0 +r2534,531:20753781,34564455:0,647495,134348 +g2534,531:22064501,34564455 +g2534,531:22064501,34564455 +g2534,531:24297312,34564455 +g2534,531:25147969,34564455 +g2534,531:26503908,34564455 +g2534,531:27670448,34564455 +k2534,531:32583029,34564455:3131312 +) +(2534,532:23375221,35405943:9207808,505283,134348 +k2534,532:29527741,35405943:3055289 +k2534,532:32583029,35405943:3055288 +) +(2534,533:20753781,36264345:11829248,505283,7863 +h2534,532:20753781,36264345:0,0,0 +r2534,532:20753781,36264345:0,513146,7863 +g2534,532:22064501,36264345 +g2534,532:22064501,36264345 +k2534,533:28275020,36264345:4308009 +k2534,533:32583029,36264345:4308009 +) +(2534,534:20753781,37122747:11829248,505283,102891 +h2534,533:20753781,37122747:0,0,0 +r2534,533:20753781,37122747:0,608174,102891 +g2534,533:22719861,37122747 +g2534,533:22719861,37122747 +g2534,533:24171483,37122747 +g2534,533:26388566,37122747 +k2534,534:30083486,37122747:2499543 +k2534,534:32583029,37122747:2499543 +) +(2534,535:20753781,37981149:11829248,505283,102891 +h2534,534:20753781,37981149:0,0,0 +r2534,534:20753781,37981149:0,608174,102891 +g2534,534:22719861,37981149 +g2534,534:22719861,37981149 +g2534,534:24907452,37981149 +k2534,535:29342929,37981149:3240100 +k2534,535:32583029,37981149:3240100 +) +(2534,536:20753781,38839552:11829248,505283,102891 +h2534,535:20753781,38839552:0,0,0 +r2534,535:20753781,38839552:0,608174,102891 +g2534,535:22719861,38839552 +g2534,535:22719861,38839552 +g2534,535:24103326,38839552 +g2534,535:26591072,38839552 +k2534,536:30184739,38839552:2398290 +k2534,536:32583029,38839552:2398290 +) +(2534,537:20753781,39697954:11829248,505283,102891 +h2534,536:20753781,39697954:0,0,0 +r2534,536:20753781,39697954:0,608174,102891 +g2534,536:22719861,39697954 +g2534,536:22719861,39697954 +g2534,536:24103326,39697954 +g2534,536:26320409,39697954 +k2534,537:30049408,39697954:2533622 +k2534,537:32583029,39697954:2533621 +) +(2534,538:20753781,40556356:11829248,513147,102891 +h2534,537:20753781,40556356:0,0,0 +r2534,537:20753781,40556356:0,616038,102891 +g2534,537:22719861,40556356 +g2534,537:22719861,40556356 +g2534,537:28260274,40556356 +k2534,538:31019340,40556356:1563689 +k2534,538:32583029,40556356:1563689 +) +(2534,539:20753781,41414758:11829248,505283,126483 +h2534,538:20753781,41414758:0,0,0 +r2534,538:20753781,41414758:0,631766,126483 +g2534,538:22064501,41414758 +g2534,538:22064501,41414758 +g2534,538:24432972,41414758 +g2534,538:26083168,41414758 +k2534,539:30692315,41414758:1890714 +k2534,539:32583029,41414758:1890714 +) +(2534,540:20753781,42273160:11829248,505283,126483 +h2534,539:20753781,42273160:0,0,0 +r2534,539:20753781,42273160:0,631766,126483 +g2534,539:22064501,42273160 +g2534,539:22064501,42273160 +g2534,539:25510384,42273160 +g2534,539:27281822,42273160 +k2534,540:30530114,42273160:2052915 +k2534,540:32583029,42273160:2052915 +) +(2534,541:20753781,43131562:11829248,505283,102891 +h2534,540:20753781,43131562:0,0,0 +r2534,540:20753781,43131562:0,608174,102891 +g2534,540:22064501,43131562 +g2534,540:22064501,43131562 +g2534,540:24674800,43131562 +g2534,540:27119292,43131562 +k2534,541:31210377,43131562:1372652 +k2534,541:32583029,43131562:1372652 +) +(2534,542:20753781,43989965:11829248,473825,7863 +h2534,541:20753781,43989965:0,0,0 +r2534,541:20753781,43989965:0,481688,7863 +g2534,541:22064501,43989965 +g2534,541:22064501,43989965 +k2534,542:28750484,43989965:3832545 +k2534,542:32583029,43989965:3832545 +) +(2534,543:20753781,44848367:11829248,505283,126483 +h2534,542:20753781,44848367:0,0,0 +r2534,542:20753781,44848367:0,631766,126483 +g2534,542:22719861,44848367 +g2534,542:22719861,44848367 +g2534,542:25425187,44848367 +k2534,543:29601797,44848367:2981233 +k2534,543:32583029,44848367:2981232 +) +(2534,544:20753781,45706769:11829248,505283,126483 +h2534,543:20753781,45706769:0,0,0 +r2534,543:20753781,45706769:0,631766,126483 +g2534,543:22719861,45706769 +g2534,543:22719861,45706769 +g2534,543:25251516,45706769 +g2534,543:26443615,45706769 +k2534,544:30111011,45706769:2472019 +k2534,544:32583029,45706769:2472018 +) +] +(2534,548:32583029,45706769:0,355205,126483 +h2534,548:32583029,45706769:420741,355205,126483 +k2534,548:32583029,45706769:-420741 +) +) +] +(2534,548:32583029,45706769:0,0,0 +g2534,548:32583029,45706769 +) +) +] +(2534,548:6630773,47279633:25952256,0,0 +h2534,548:6630773,47279633:25952256,0,0 +) +] +h2534,548:4262630,4025873:0,0,0 +] +!31130 }341 !12 {342 -[2537,266:4262630,47279633:28320399,43253760,0 -(2537,266:4262630,4025873:0,0,0 -[2537,266:-473657,4025873:11829248,0,0 -(2537,266:-473657,-710414:11829248,0,0 -h2537,266:-473657,-710414:0,0,0 -(2537,266:-473657,-710414:0,0,0 -(2537,266:-473657,-710414:0,0,0 -g2537,266:-473657,-710414 -(2537,266:-473657,-710414:65781,0,65781 -g2537,266:-407876,-710414 -[2537,266:-407876,-644633:0,0,0 +[2534,641:4262630,47279633:28320399,43253760,0 +(2534,641:4262630,4025873:0,0,0 +[2534,641:-473657,4025873:11829248,0,0 +(2534,641:-473657,-710414:11829248,0,0 +h2534,641:-473657,-710414:0,0,0 +(2534,641:-473657,-710414:0,0,0 +(2534,641:-473657,-710414:0,0,0 +g2534,641:-473657,-710414 +(2534,641:-473657,-710414:65781,0,65781 +g2534,641:-407876,-710414 +[2534,641:-407876,-644633:0,0,0 ] ) -k2537,266:-473657,-710414:-65781 +k2534,641:-473657,-710414:-65781 ) ) -k2537,266:11355591,-710414:11829248 -g2537,266:11355591,-710414 +k2534,641:11355591,-710414:11829248 +g2534,641:11355591,-710414 ) ] ) -[2537,266:6630773,47279633:25952256,43253760,0 -[2537,266:6630773,4812305:25952256,786432,0 -(2537,266:6630773,4812305:25952256,505283,11795 -(2537,266:6630773,4812305:25952256,505283,11795 -g2537,266:3078558,4812305 -[2537,266:3078558,4812305:0,0,0 -(2537,266:3078558,2439708:0,1703936,0 -k2537,266:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,266:2537886,2439708:1179648,16384,0 +[2534,641:6630773,47279633:25952256,43253760,0 +[2534,641:6630773,4812305:25952256,786432,0 +(2534,641:6630773,4812305:25952256,505283,11795 +(2534,641:6630773,4812305:25952256,505283,11795 +g2534,641:3078558,4812305 +[2534,641:3078558,4812305:0,0,0 +(2534,641:3078558,2439708:0,1703936,0 +k2534,641:1358238,2439708:-1720320 +(2534,1:1358238,2439708:1720320,1703936,0 +(2534,1:1358238,2439708:1179648,16384,0 +r2534,641:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,266:3078558,1915420:16384,1179648,0 +g2534,1:3062174,2439708 +(2534,1:3062174,2439708:16384,1703936,0 +[2534,1:3062174,2439708:25952256,1703936,0 +(2534,1:3062174,1915420:25952256,1179648,0 +(2534,1:3062174,1915420:16384,1179648,0 +r2534,641:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2534,1:29014430,1915420:25935872 +g2534,1:29014430,1915420 ) ] ) ) ) ] -[2537,266:3078558,4812305:0,0,0 -(2537,266:3078558,2439708:0,1703936,0 -g2537,266:29030814,2439708 -g2537,266:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,266:36151628,1915420:16384,1179648,0 +[2534,641:3078558,4812305:0,0,0 +(2534,641:3078558,2439708:0,1703936,0 +g2534,641:29030814,2439708 +g2534,641:36135244,2439708 +(2534,1:36135244,2439708:1720320,1703936,0 +(2534,1:36135244,2439708:16384,1703936,0 +[2534,1:36135244,2439708:25952256,1703936,0 +(2534,1:36135244,1915420:25952256,1179648,0 +(2534,1:36135244,1915420:16384,1179648,0 +r2534,641:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2534,1:62087500,1915420:25935872 +g2534,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,266:37855564,2439708:1179648,16384,0 +g2534,1:36675916,2439708 +(2534,1:36675916,2439708:1179648,16384,0 +r2534,641:37855564,2439708:1179648,16384,0 ) ) -k2537,266:3078556,2439708:-34777008 +k2534,641:3078556,2439708:-34777008 ) ] -[2537,266:3078558,4812305:0,0,0 -(2537,266:3078558,49800853:0,16384,2228224 -k2537,266:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,266:2537886,49800853:1179648,16384,0 +[2534,641:3078558,4812305:0,0,0 +(2534,641:3078558,49800853:0,16384,2228224 +k2534,641:1358238,49800853:-1720320 +(2534,1:1358238,49800853:1720320,16384,2228224 +(2534,1:1358238,49800853:1179648,16384,0 +r2534,641:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,266:3078558,51504789:16384,1179648,0 +g2534,1:3062174,49800853 +(2534,1:3062174,52029077:16384,1703936,0 +[2534,1:3062174,52029077:25952256,1703936,0 +(2534,1:3062174,51504789:25952256,1179648,0 +(2534,1:3062174,51504789:16384,1179648,0 +r2534,641:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2534,1:29014430,51504789:25935872 +g2534,1:29014430,51504789 ) ] ) ) ) ] -[2537,266:3078558,4812305:0,0,0 -(2537,266:3078558,49800853:0,16384,2228224 -g2537,266:29030814,49800853 -g2537,266:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,266:36151628,51504789:16384,1179648,0 -) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 -) -] -) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,266:37855564,49800853:1179648,16384,0 +[2534,641:3078558,4812305:0,0,0 +(2534,641:3078558,49800853:0,16384,2228224 +g2534,641:29030814,49800853 +g2534,641:36135244,49800853 +(2534,1:36135244,49800853:1720320,16384,2228224 +(2534,1:36135244,52029077:16384,1703936,0 +[2534,1:36135244,52029077:25952256,1703936,0 +(2534,1:36135244,51504789:25952256,1179648,0 +(2534,1:36135244,51504789:16384,1179648,0 +r2534,641:36151628,51504789:16384,1179648,0 ) -) -k2537,266:3078556,49800853:-34777008 +k2534,1:62087500,51504789:25935872 +g2534,1:62087500,51504789 ) ] -g2537,266:6630773,4812305 -g2537,266:6630773,4812305 -g2537,266:9313817,4812305 -g2537,266:11188146,4812305 -k2537,266:31387652,4812305:20199506 -) -) -] -[2537,266:6630773,45706769:25952256,40108032,0 -(2537,266:6630773,45706769:25952256,40108032,0 -(2537,266:6630773,45706769:0,0,0 -g2537,266:6630773,45706769 -) -[2537,266:6630773,45706769:25952256,40108032,0 -(2537,266:6630773,45706769:25952256,40108032,134348 -[2537,266:6630773,45706769:11829248,40108032,126483 -(2537,173:6630773,6254097:11829248,505283,134348 -h2537,172:6630773,6254097:0,0,0 -g2537,172:11457499,6254097 -k2537,173:15556449,6254097:2903573 -k2537,173:18460021,6254097:2903572 ) -(2537,174:6630773,7114191:11829248,513147,134348 -h2537,173:6630773,7114191:0,0,0 -g2537,173:9845968,7114191 -k2537,174:14750683,7114191:3709338 -k2537,174:18460021,7114191:3709338 -) -(2537,175:6630773,7974284:11829248,505283,134348 -h2537,174:6630773,7974284:0,0,0 -g2537,174:10612740,7974284 -k2537,175:15134069,7974284:3325952 -k2537,175:18460021,7974284:3325952 -) -(2537,178:6630773,8834378:11829248,505283,134348 -h2537,175:6630773,8834378:0,0,0 -g2537,175:9899053,8834378 -g2537,175:11068870,8834378 -g2537,175:14160203,8834378 -g2537,175:15728479,8834378 -k2537,175:18460021,8834378:1362495 -) -(2537,178:9252213,9675866:9207808,485622,102891 -g2537,175:10820489,9675866 -g2537,175:12388765,9675866 -g2537,175:13957041,9675866 -g2537,176:15525317,9675866 -k2537,176:18460021,9675866:42600 -) -(2537,178:9252213,10517354:9207808,485622,102891 -k2537,176:10819965,10517354:198705 -k2537,176:12387717,10517354:198705 -k2537,176:13955470,10517354:198706 -k2537,176:15523222,10517354:198705 -k2537,176:17090974,10517354:198705 -k2537,176:18460021,10517354:0 -) -(2537,178:9252213,11358842:9207808,485622,102891 -k2537,176:10819965,11358842:198705 -k2537,176:12387717,11358842:198705 -k2537,177:13955470,11358842:198706 -k2537,177:15523222,11358842:198705 -k2537,177:17090974,11358842:198705 -k2537,177:18460021,11358842:0 -) -(2537,178:9252213,12200330:9207808,485622,102891 -g2537,177:10820489,12200330 -k2537,178:15237944,12200330:3222078 -k2537,178:18460021,12200330:3222077 -) -(2537,179:6630773,13060423:11829248,505283,134348 -h2537,178:6630773,13060423:0,0,0 -g2537,178:10117943,13060423 -g2537,178:11686219,13060423 -g2537,178:13254495,13060423 -g2537,178:14822771,13060423 -k2537,179:17239085,13060423:1220937 -k2537,179:18460021,13060423:1220936 -) -(2537,180:6630773,13920517:11829248,505283,134348 -h2537,179:6630773,13920517:0,0,0 -g2537,179:9834827,13920517 -k2537,180:14745113,13920517:3714909 -k2537,180:18460021,13920517:3714908 -) -(2537,181:6630773,14780611:11829248,505283,134348 -h2537,180:6630773,14780611:0,0,0 -g2537,180:9518944,14780611 -k2537,181:14587171,14780611:3872850 -k2537,181:18460021,14780611:3872850 -) -(2537,182:6630773,15640704:11829248,505283,134348 -h2537,181:6630773,15640704:0,0,0 -g2537,181:9491419,15640704 -k2537,182:14573409,15640704:3886613 -k2537,182:18460021,15640704:3886612 -) -(2537,183:6630773,16500798:11829248,485622,102891 -h2537,182:6630773,16500798:0,0,0 -g2537,182:7912001,16500798 -g2537,182:9081818,16500798 -k2537,183:14368608,16500798:4091413 -k2537,183:18460021,16500798:4091413 -) -(2537,184:6630773,17360891:11829248,505283,102891 -h2537,183:6630773,17360891:0,0,0 -g2537,183:9262043,17360891 -k2537,184:14458721,17360891:4001301 -k2537,184:18460021,17360891:4001300 -) -(2537,185:6630773,18220985:11829248,505283,134348 -h2537,184:6630773,18220985:0,0,0 -g2537,184:8412041,18220985 -g2537,184:9578581,18220985 -g2537,184:13470108,18220985 -g2537,184:15482063,18220985 -k2537,185:18130046,18220985:329975 -k2537,185:18460021,18220985:329975 -) -(2537,186:6630773,19081079:11829248,485622,102891 -h2537,185:6630773,19081079:0,0,0 -g2537,185:8124339,19081079 -g2537,185:8850477,19081079 -k2537,186:13854479,19081079:4605543 -k2537,186:18460021,19081079:4605542 -) -(2537,187:6630773,19941172:11829248,513147,134348 -h2537,186:6630773,19941172:0,0,0 -g2537,186:9732592,19941172 -g2537,186:10591113,19941172 -g2537,186:13683101,19941172 -g2537,186:15251377,19941172 -k2537,187:17453388,19941172:1006634 -k2537,187:18460021,19941172:1006633 -) -(2537,188:6630773,20801266:11829248,485622,102891 -h2537,187:6630773,20801266:0,0,0 -r2537,187:6630773,20801266:0,588513,102891 -g2537,187:7941493,20801266 -g2537,187:7941493,20801266 -g2537,187:12104995,20801266 -k2537,188:16641725,20801266:1818297 -k2537,188:18460021,20801266:1818296 -) -(2537,189:6630773,21661359:11829248,505283,102891 -h2537,188:6630773,21661359:0,0,0 -r2537,188:6630773,21661359:0,608174,102891 -g2537,188:7941493,21661359 -g2537,188:7941493,21661359 -g2537,188:11024961,21661359 -g2537,188:15136034,21661359 -g2537,188:16704310,21661359 -k2537,189:18179854,21661359:280167 -k2537,189:18460021,21661359:280167 -) -(2537,190:6630773,22521453:11829248,513147,102891 -h2537,189:6630773,22521453:0,0,0 -r2537,189:6630773,22521453:0,616038,102891 -g2537,189:7941493,22521453 -g2537,189:7941493,22521453 -g2537,189:9756840,22521453 -g2537,189:11147514,22521453 -g2537,189:12187570,22521453 -g2537,189:14462980,22521453 -k2537,190:17820717,22521453:639304 -k2537,190:18460021,22521453:639304 -) -(2537,191:6630773,23381547:11829248,505283,134348 -h2537,190:6630773,23381547:0,0,0 -r2537,190:6630773,23381547:0,639631,134348 -g2537,190:7941493,23381547 -g2537,190:7941493,23381547 -g2537,190:10523611,23381547 -g2537,190:13886263,23381547 -k2537,191:17532359,23381547:927663 -k2537,191:18460021,23381547:927662 -) -(2537,192:6630773,24241640:11829248,505283,126483 -h2537,191:6630773,24241640:0,0,0 -r2537,191:6630773,24241640:0,631766,126483 -g2537,191:7941493,24241640 -g2537,191:7941493,24241640 -g2537,191:11066249,24241640 -g2537,191:13755846,24241640 -k2537,192:17467150,24241640:992871 -k2537,192:18460021,24241640:992871 -) -(2537,193:6630773,25101734:11829248,505283,102891 -h2537,192:6630773,25101734:0,0,0 -r2537,192:6630773,25101734:0,608174,102891 -g2537,192:7941493,25101734 -g2537,192:7941493,25101734 -g2537,192:11711123,25101734 -g2537,192:13986533,25101734 -k2537,193:17582494,25101734:877528 -k2537,193:18460021,25101734:877527 -) -(2537,194:6630773,25961827:11829248,505283,102891 -h2537,193:6630773,25961827:0,0,0 -r2537,193:6630773,25961827:0,608174,102891 -g2537,193:7941493,25961827 -g2537,193:7941493,25961827 -g2537,193:12052566,25961827 -k2537,194:15853982,25961827:2606039 -k2537,194:18460021,25961827:2606039 -) -(2537,195:6630773,26821921:11829248,505283,134348 -h2537,194:6630773,26821921:0,0,0 -r2537,194:6630773,26821921:0,639631,134348 -g2537,194:7941493,26821921 -g2537,194:7941493,26821921 -g2537,194:10713010,26821921 -g2537,194:11268099,26821921 -g2537,194:13627395,26821921 -k2537,195:17402925,26821921:1057097 -k2537,195:18460021,26821921:1057096 -) -(2537,196:6630773,27682015:11829248,505283,102891 -h2537,195:6630773,27682015:0,0,0 -r2537,195:6630773,27682015:0,608174,102891 -g2537,195:7941493,27682015 -g2537,195:7941493,27682015 -g2537,195:9703756,27682015 -k2537,196:14679577,27682015:3780444 -k2537,196:18460021,27682015:3780444 -) -(2537,197:6630773,28542108:11829248,505283,102891 -h2537,196:6630773,28542108:0,0,0 -r2537,196:6630773,28542108:0,608174,102891 -g2537,196:7941493,28542108 -g2537,196:7941493,28542108 -g2537,196:10666480,28542108 -g2537,196:12941890,28542108 -k2537,197:17060172,28542108:1399849 -k2537,197:18460021,28542108:1399849 -) -(2537,198:6630773,29402202:11829248,505283,102891 -h2537,197:6630773,29402202:0,0,0 -r2537,197:6630773,29402202:0,608174,102891 -g2537,197:7941493,29402202 -g2537,197:7941493,29402202 -g2537,197:11183559,29402202 -k2537,198:16181007,29402202:2279015 -k2537,198:18460021,29402202:2279014 -) -(2537,199:6630773,30262295:11829248,513147,102891 -h2537,198:6630773,30262295:0,0,0 -r2537,198:6630773,30262295:0,616038,102891 -g2537,198:7941493,30262295 -g2537,198:7941493,30262295 -g2537,198:10203140,30262295 -k2537,199:15690797,30262295:2769224 -k2537,199:18460021,30262295:2769224 -) -(2537,200:6630773,31122389:11829248,513147,102891 -h2537,199:6630773,31122389:0,0,0 -r2537,199:6630773,31122389:0,616038,102891 -g2537,199:7941493,31122389 -g2537,199:7941493,31122389 -g2537,199:10836218,31122389 -g2537,199:13732254,31122389 -k2537,200:17455354,31122389:1004667 -k2537,200:18460021,31122389:1004667 -) -(2537,201:6630773,31982483:11829248,485622,134348 -h2537,200:6630773,31982483:0,0,0 -r2537,200:6630773,31982483:0,619970,134348 -g2537,200:7941493,31982483 -g2537,200:7941493,31982483 -g2537,200:11821879,31982483 -g2537,200:13390155,31982483 -k2537,201:17284305,31982483:1175717 -k2537,201:18460021,31982483:1175716 -) -(2537,202:6630773,32842576:11829248,505283,126483 -h2537,201:6630773,32842576:0,0,0 -r2537,201:6630773,32842576:0,631766,126483 -g2537,201:7941493,32842576 -g2537,201:7941493,32842576 -g2537,201:10600944,32842576 -g2537,201:12416291,32842576 -g2537,201:14691701,32842576 -k2537,202:17173550,32842576:1286472 -k2537,202:18460021,32842576:1286471 -) -(2537,203:6630773,33702670:11829248,505283,126483 -h2537,202:6630773,33702670:0,0,0 -r2537,202:6630773,33702670:0,631766,126483 -g2537,202:7941493,33702670 -g2537,202:7941493,33702670 -g2537,202:11682288,33702670 -g2537,202:14371885,33702670 -k2537,203:17775170,33702670:684852 -k2537,203:18460021,33702670:684851 -) -(2537,204:6630773,34562763:11829248,505283,134348 -h2537,203:6630773,34562763:0,0,0 -r2537,203:6630773,34562763:0,639631,134348 -g2537,203:7941493,34562763 -g2537,203:7941493,34562763 -g2537,203:12125966,34562763 -k2537,203:18460021,34562763:2652898 -) -(2537,204:9252213,35404251:9207808,485622,11795 -k2537,204:15215334,35404251:3244688 -k2537,204:18460021,35404251:3244687 -) -(2537,205:6630773,36264345:11829248,513147,134348 -h2537,204:6630773,36264345:0,0,0 -r2537,204:6630773,36264345:0,647495,134348 -g2537,204:7941493,36264345 -g2537,204:7941493,36264345 -g2537,204:10948284,36264345 -g2537,204:11806805,36264345 -g2537,204:13569068,36264345 -g2537,204:15137344,36264345 -k2537,205:18157899,36264345:302122 -k2537,205:18460021,36264345:302122 -) -(2537,206:6630773,37124439:11829248,505283,126483 -h2537,205:6630773,37124439:0,0,0 -r2537,205:6630773,37124439:0,631766,126483 -g2537,205:7941493,37124439 -g2537,205:7941493,37124439 -g2537,205:9418019,37124439 -g2537,205:13825315,37124439 -k2537,206:17501885,37124439:958137 -k2537,206:18460021,37124439:958136 -) -(2537,207:6630773,37984532:11829248,505283,134348 -h2537,206:6630773,37984532:0,0,0 -r2537,206:6630773,37984532:0,639631,134348 -g2537,206:7941493,37984532 -g2537,206:7941493,37984532 -g2537,206:9748320,37984532 -g2537,206:10633711,37984532 -g2537,206:11277929,37984532 -g2537,206:13940656,37984532 -k2537,207:17559555,37984532:900466 -k2537,207:18460021,37984532:900466 -) -(2537,208:6630773,38844626:11829248,485622,134348 -h2537,207:6630773,38844626:0,0,0 -r2537,207:6630773,38844626:0,619970,134348 -g2537,207:7941493,38844626 -g2537,207:7941493,38844626 -g2537,207:9828929,38844626 -g2537,207:13191581,38844626 -k2537,208:17185018,38844626:1275004 -k2537,208:18460021,38844626:1275003 -) -(2537,209:6630773,39704719:11829248,505283,126483 -h2537,208:6630773,39704719:0,0,0 -r2537,208:6630773,39704719:0,631766,126483 -g2537,208:7941493,39704719 -g2537,208:7941493,39704719 -g2537,208:9805336,39704719 -g2537,208:13916409,39704719 -k2537,209:17547432,39704719:912590 -k2537,209:18460021,39704719:912589 -) -(2537,210:6630773,40564813:11829248,505283,102891 -h2537,209:6630773,40564813:0,0,0 -r2537,209:6630773,40564813:0,608174,102891 -g2537,209:7941493,40564813 -g2537,209:7941493,40564813 -g2537,209:10216903,40564813 -g2537,209:11785179,40564813 -k2537,210:16481817,40564813:1978205 -k2537,210:18460021,40564813:1978204 -) -(2537,211:6630773,41424907:11829248,513147,134348 -h2537,210:6630773,41424907:0,0,0 -r2537,210:6630773,41424907:0,647495,134348 -g2537,210:7941493,41424907 -g2537,210:7941493,41424907 -g2537,210:8735789,41424907 -g2537,210:12616175,41424907 -k2537,211:16135787,41424907:2324235 -k2537,211:18460021,41424907:2324234 -) -(2537,212:6630773,42285000:11829248,505283,102891 -h2537,211:6630773,42285000:0,0,0 -r2537,211:6630773,42285000:0,608174,102891 -g2537,211:7941493,42285000 -g2537,211:7941493,42285000 -g2537,211:9409499,42285000 -g2537,211:11684909,42285000 -k2537,212:15670154,42285000:2789868 -k2537,212:18460021,42285000:2789867 -) -(2537,213:6630773,43145094:11829248,485622,102891 -h2537,212:6630773,43145094:0,0,0 -r2537,212:6630773,43145094:0,588513,102891 -g2537,212:7941493,43145094 -g2537,212:7941493,43145094 -g2537,212:11167830,43145094 -g2537,212:12736106,43145094 -k2537,213:16957280,43145094:1502741 -k2537,213:18460021,43145094:1502741 -) -(2537,214:6630773,44005187:11829248,513147,134348 -h2537,213:6630773,44005187:0,0,0 -r2537,213:6630773,44005187:0,647495,134348 -g2537,213:7941493,44005187 -g2537,213:7941493,44005187 -g2537,213:11072147,44005187 -g2537,213:11930668,44005187 -g2537,213:13407194,44005187 -k2537,213:18460021,44005187:2589329 -) -(2537,214:9252213,44846675:9207808,485622,0 -k2537,214:15215334,44846675:3244688 -k2537,214:18460021,44846675:3244687 -) -(2537,215:6630773,45706769:11829248,485622,126483 -h2537,214:6630773,45706769:0,0,0 -r2537,214:6630773,45706769:0,612105,126483 -g2537,214:7941493,45706769 -g2537,214:7941493,45706769 -g2537,214:11131130,45706769 -g2537,214:14027166,45706769 -k2537,215:17602810,45706769:857211 -k2537,215:18460021,45706769:857211 -) -] -k2537,266:19606901,45706769:1146880 -r2537,266:19606901,45706769:0,40242380,134348 -k2537,266:20753781,45706769:1146880 -[2537,266:20753781,45706769:11829248,40108032,134348 -(2537,216:20753781,6254097:11829248,505283,134348 -h2537,215:20753781,6254097:0,0,0 -r2537,215:20753781,6254097:0,639631,134348 -g2537,215:22064501,6254097 -g2537,215:22064501,6254097 -g2537,215:23489909,6254097 -g2537,215:24880583,6254097 -g2537,215:26593694,6254097 -k2537,215:32583029,6254097:2308178 -) -(2537,216:23375221,7095585:9207808,485622,11795 -k2537,216:29338342,7095585:3244688 -k2537,216:32583029,7095585:3244687 -) -(2537,217:20753781,7940983:11829248,505283,126483 -h2537,216:20753781,7940983:0,0,0 -r2537,216:20753781,7940983:0,631766,126483 -g2537,216:22719861,7940983 -g2537,216:22719861,7940983 -g2537,216:26005180,7940983 -k2537,217:29891793,7940983:2691236 -k2537,217:32583029,7940983:2691236 -) -(2537,218:20753781,8786381:11829248,505283,102891 -h2537,217:20753781,8786381:0,0,0 -r2537,217:20753781,8786381:0,608174,102891 -g2537,217:22064501,8786381 -g2537,217:22064501,8786381 -g2537,217:24754098,8786381 -g2537,217:26322374,8786381 -k2537,218:30811918,8786381:1771111 -k2537,218:32583029,8786381:1771111 -) -(2537,219:20753781,9631779:11829248,505283,134348 -h2537,218:20753781,9631779:0,0,0 -r2537,218:20753781,9631779:0,639631,134348 -g2537,218:22064501,9631779 -g2537,218:22064501,9631779 -g2537,218:23274295,9631779 -g2537,218:26636947,9631779 -k2537,219:30969205,9631779:1613825 -k2537,219:32583029,9631779:1613824 -) -(2537,220:20753781,10477176:11829248,505283,102891 -h2537,219:20753781,10477176:0,0,0 -r2537,219:20753781,10477176:0,608174,102891 -g2537,219:22064501,10477176 -g2537,219:22064501,10477176 -g2537,219:23689138,10477176 -g2537,219:25079812,10477176 -g2537,219:26659885,10477176 -g2537,219:28935295,10477176 -k2537,220:32118379,10477176:464651 -k2537,220:32583029,10477176:464650 -) -(2537,221:20753781,11322574:11829248,505283,126483 -h2537,220:20753781,11322574:0,0,0 -r2537,220:20753781,11322574:0,631766,126483 -g2537,220:22064501,11322574 -g2537,220:22064501,11322574 -g2537,220:24605987,11322574 -g2537,220:25973723,11322574 -g2537,220:27364397,11322574 -k2537,220:32583029,11322574:3770286 -) -(2537,221:23375221,12164062:9207808,485622,134348 -g2537,220:27255607,12164062 -k2537,221:31278535,12164062:1304495 -k2537,221:32583029,12164062:1304494 -) -(2537,222:20753781,13009460:11829248,505283,134348 -h2537,221:20753781,13009460:0,0,0 -g2537,221:23341797,13009460 -g2537,221:25699782,13009460 -g2537,221:28410351,13009460 -k2537,222:31094379,13009460:1488651 -k2537,222:32583029,13009460:1488650 -) -(2537,223:20753781,13854858:11829248,505283,134348 -h2537,222:20753781,13854858:0,0,0 -g2537,222:22819475,13854858 -g2537,222:24387751,13854858 -g2537,222:25956027,13854858 -k2537,223:29867217,13854858:2715813 -k2537,223:32583029,13854858:2715812 -) -(2537,224:20753781,14700256:11829248,505283,134348 -h2537,223:20753781,14700256:0,0,0 -g2537,223:22237516,14700256 -g2537,223:25155834,14700256 -g2537,223:28762935,14700256 -k2537,223:32583029,14700256:1070203 -) -(2537,224:23375221,15541744:9207808,485622,11795 -k2537,224:28576814,15541744:4006216 -k2537,224:32583029,15541744:4006215 -) -(2537,225:20753781,16387142:11829248,505283,134348 -h2537,224:20753781,16387142:0,0,0 -g2537,224:24451321,16387142 -k2537,225:29114864,16387142:3468166 -k2537,225:32583029,16387142:3468165 -) -(2537,226:20753781,17232540:11829248,505283,134348 -h2537,225:20753781,17232540:0,0,0 -g2537,225:24458531,17232540 -g2537,225:28062355,17232540 -g2537,225:29070954,17232540 -k2537,225:32583029,17232540:1949041 -) -(2537,226:23375221,18074028:9207808,485622,11795 -k2537,226:29338342,18074028:3244688 -k2537,226:32583029,18074028:3244687 -) -(2537,227:20753781,18919425:11829248,473825,134348 -h2537,226:20753781,18919425:0,0,0 -k2537,227:28109870,18919425:4473160 -k2537,227:32583029,18919425:4473159 -) -(2537,228:20753781,19764823:11829248,505283,126483 -h2537,227:20753781,19764823:0,0,0 -r2537,227:20753781,19764823:0,631766,126483 -k2537,227:22064501,19764823:1310720 -k2537,227:22064501,19764823:0 -k2537,227:27310003,19764823:188744 -k2537,227:28114784,19764823:188743 -k2537,227:31387652,19764823:188744 -k2537,228:32583029,19764823:0 -k2537,228:32583029,19764823:0 -) -(2537,232:20753781,21330745:11829248,505283,102891 -h2537,231:20753781,21330745:0,0,0 -g2537,231:23419785,21330745 -g2537,231:24988061,21330745 -g2537,231:26556337,21330745 -k2537,232:30167372,21330745:2415658 -k2537,232:32583029,21330745:2415657 -) -(2537,233:20753781,22176143:11829248,505283,102891 -h2537,232:20753781,22176143:0,0,0 -g2537,232:23493185,22176143 -k2537,233:28635796,22176143:3947234 -k2537,233:32583029,22176143:3947233 -) -(2537,234:20753781,23021541:11829248,485622,102891 -h2537,233:20753781,23021541:0,0,0 -g2537,233:22936129,23021541 -g2537,233:24504405,23021541 -k2537,234:29141406,23021541:3441624 -k2537,234:32583029,23021541:3441623 -) -(2537,238:20753781,24587462:11829248,505283,134348 -h2537,237:20753781,24587462:0,0,0 -g2537,237:22213923,24587462 -g2537,237:23380463,24587462 -g2537,237:26642189,24587462 -k2537,237:32583029,24587462:1808795 -) -(2537,238:23375221,25428950:9207808,473825,7863 -k2537,238:30007792,25428950:2575237 -k2537,238:32583029,25428950:2575237 -) -(2537,239:20753781,26274348:11829248,513147,102891 -h2537,238:20753781,26274348:0,0,0 -g2537,238:22040252,26274348 -g2537,238:23187132,26274348 -g2537,238:24005021,26274348 -k2537,239:28692484,26274348:3890545 -k2537,239:32583029,26274348:3890545 -) -(2537,240:20753781,27119746:11829248,481690,134348 -h2537,239:20753781,27119746:0,0,0 -g2537,239:23373910,27119746 -k2537,240:28376929,27119746:4206101 -k2537,240:32583029,27119746:4206100 -) -(2537,241:20753781,27965144:11829248,505283,134348 -h2537,240:20753781,27965144:0,0,0 -g2537,240:24124953,27965144 -k2537,241:29048673,27965144:3534357 -k2537,241:32583029,27965144:3534356 -) -(2537,242:20753781,28810541:11829248,513147,102891 -h2537,241:20753781,28810541:0,0,0 -r2537,241:20753781,28810541:0,616038,102891 -g2537,241:22064501,28810541 -g2537,241:22064501,28810541 -g2537,241:23582970,28810541 -g2537,241:25269211,28810541 -k2537,242:30285337,28810541:2297693 -k2537,242:32583029,28810541:2297692 -) -(2537,243:20753781,29655939:11829248,513147,102891 -h2537,242:20753781,29655939:0,0,0 -r2537,242:20753781,29655939:0,616038,102891 -g2537,242:22064501,29655939 -g2537,242:22064501,29655939 -g2537,242:23702901,29655939 -g2537,242:25389142,29655939 -k2537,243:30345302,29655939:2237727 -k2537,243:32583029,29655939:2237727 -) -(2537,244:20753781,30501337:11829248,505283,102891 -h2537,243:20753781,30501337:0,0,0 -r2537,243:20753781,30501337:0,608174,102891 -g2537,243:22064501,30501337 -g2537,243:22064501,30501337 -g2537,243:25590993,30501337 -k2537,244:30446228,30501337:2136802 -k2537,244:32583029,30501337:2136801 -) -(2537,245:20753781,31346735:11829248,513147,102891 -h2537,244:20753781,31346735:0,0,0 -r2537,244:20753781,31346735:0,616038,102891 -g2537,244:22064501,31346735 -g2537,244:22064501,31346735 -g2537,244:23549546,31346735 -g2537,244:25235787,31346735 -k2537,245:30268625,31346735:2314405 -k2537,245:32583029,31346735:2314404 -) -(2537,246:20753781,32192133:11829248,505283,134348 -h2537,245:20753781,32192133:0,0,0 -r2537,245:20753781,32192133:0,639631,134348 -g2537,245:22064501,32192133 -g2537,245:22064501,32192133 -g2537,245:24814391,32192133 -k2537,246:29296399,32192133:3286631 -k2537,246:32583029,32192133:3286630 -) -(2537,247:20753781,33037531:11829248,513147,102891 -h2537,246:20753781,33037531:0,0,0 -r2537,246:20753781,33037531:0,616038,102891 -g2537,246:22064501,33037531 -g2537,246:22064501,33037531 -g2537,246:24421175,33037531 -g2537,246:26107416,33037531 -k2537,247:30704439,33037531:1878590 -k2537,247:32583029,33037531:1878590 -) -(2537,248:20753781,33882929:11829248,513147,102891 -h2537,247:20753781,33882929:0,0,0 -r2537,247:20753781,33882929:0,616038,102891 -g2537,247:22064501,33882929 -g2537,247:22064501,33882929 -g2537,247:23965700,33882929 -g2537,247:27249053,33882929 -k2537,247:32583029,33882929:2401240 -) -(2537,248:23375221,34724417:9207808,485622,11795 -k2537,248:29338342,34724417:3244688 -k2537,248:32583029,34724417:3244687 -) -(2537,249:20753781,35569814:11829248,505283,126483 -h2537,248:20753781,35569814:0,0,0 -r2537,248:20753781,35569814:0,631766,126483 -g2537,248:22064501,35569814 -g2537,248:22064501,35569814 -g2537,248:24886481,35569814 -g2537,248:27597050,35569814 -k2537,249:31449256,35569814:1133773 -k2537,249:32583029,35569814:1133773 -) -(2537,250:20753781,36415212:11829248,485622,102891 -h2537,249:20753781,36415212:0,0,0 -r2537,249:20753781,36415212:0,588513,102891 -g2537,249:22064501,36415212 -g2537,249:22064501,36415212 -g2537,249:24518169,36415212 -g2537,249:28727546,36415212 -k2537,250:32014504,36415212:568525 -k2537,250:32583029,36415212:568525 -) -(2537,251:20753781,37260610:11829248,513147,102891 -h2537,250:20753781,37260610:0,0,0 -r2537,250:20753781,37260610:0,616038,102891 -g2537,250:22064501,37260610 -g2537,250:22064501,37260610 -g2537,250:23489909,37260610 -g2537,250:25176150,37260610 -k2537,251:30238806,37260610:2344223 -k2537,251:32583029,37260610:2344223 -) -(2537,252:20753781,38106008:11829248,505283,102891 -h2537,251:20753781,38106008:0,0,0 -r2537,251:20753781,38106008:0,608174,102891 -g2537,251:22064501,38106008 -g2537,251:22064501,38106008 -g2537,251:25887216,38106008 -g2537,251:27277890,38106008 -k2537,251:32583029,38106008:1622671 -) -(2537,252:23375221,38947496:9207808,485622,11795 -k2537,252:29338342,38947496:3244688 -k2537,252:32583029,38947496:3244687 -) -(2537,253:20753781,39792894:11829248,513147,102891 -h2537,252:20753781,39792894:0,0,0 -r2537,252:20753781,39792894:0,616038,102891 -g2537,252:22064501,39792894 -g2537,252:22064501,39792894 -g2537,252:23622947,39792894 -g2537,252:25013621,39792894 -g2537,252:27081281,39792894 -g2537,252:28767522,39792894 -k2537,253:32034492,39792894:548537 -k2537,253:32583029,39792894:548537 -) -(2537,254:20753781,40638292:11829248,505283,126483 -h2537,253:20753781,40638292:0,0,0 -g2537,253:24115777,40638292 -g2537,253:25506451,40638292 -g2537,253:28252409,40638292 -g2537,253:30147054,40638292 -k2537,254:32325800,40638292:257230 -k2537,254:32583029,40638292:257229 -) -(2537,255:20753781,41483690:11829248,505283,134348 -h2537,254:20753781,41483690:0,0,0 -g2537,254:24216703,41483690 -k2537,254:32583029,41483690:4234281 -) -(2537,255:23375221,42325178:9207808,473825,102891 -g2537,254:27805454,42325178 -k2537,255:30393471,42325178:2189558 -k2537,255:32583029,42325178:2189558 -) -(2537,256:20753781,43170575:11829248,513147,134348 -h2537,255:20753781,43170575:0,0,0 -g2537,255:26731975,43170575 -k2537,256:30255191,43170575:2327839 -k2537,256:32583029,43170575:2327838 -) -(2537,257:20753781,44015973:11829248,485622,102891 -h2537,256:20753781,44015973:0,0,0 -g2537,256:23843803,44015973 -k2537,257:28811105,44015973:3771925 -k2537,257:32583029,44015973:3771924 -) -(2537,258:20753781,44861371:11829248,513147,126483 -h2537,257:20753781,44861371:0,0,0 -r2537,257:20753781,44861371:0,639630,126483 -g2537,257:22064501,44861371 -g2537,257:22064501,44861371 -g2537,257:23211381,44861371 -g2537,257:24999203,44861371 -k2537,258:29388805,44861371:3194225 -k2537,258:32583029,44861371:3194224 -) -(2537,259:20753781,45706769:11829248,513147,134348 -h2537,258:20753781,45706769:0,0,0 -r2537,258:20753781,45706769:0,647495,134348 -g2537,258:22064501,45706769 -g2537,258:22064501,45706769 -g2537,258:24603365,45706769 -g2537,258:25461886,45706769 -g2537,258:27580009,45706769 -k2537,259:30679208,45706769:1903822 -k2537,259:32583029,45706769:1903821 -) -] -(2537,266:32583029,45706769:0,355205,126483 -h2537,266:32583029,45706769:420741,355205,126483 -k2537,266:32583029,45706769:-420741 -) -) -] -(2537,266:32583029,45706769:0,0,0 -g2537,266:32583029,45706769 -) -) -] -(2537,266:6630773,47279633:25952256,0,0 -h2537,266:6630773,47279633:25952256,0,0 -) -] -h2537,266:4262630,4025873:0,0,0 -] -!27619 +g2534,1:36675916,49800853 +(2534,1:36675916,49800853:1179648,16384,0 +r2534,641:37855564,49800853:1179648,16384,0 +) +) +k2534,641:3078556,49800853:-34777008 +) +] +g2534,641:6630773,4812305 +g2534,641:6630773,4812305 +g2534,641:9313817,4812305 +g2534,641:11188146,4812305 +k2534,641:31387652,4812305:20199506 +) +) +] +[2534,641:6630773,45706769:25952256,40108032,0 +(2534,641:6630773,45706769:25952256,40108032,0 +(2534,641:6630773,45706769:0,0,0 +g2534,641:6630773,45706769 +) +[2534,641:6630773,45706769:25952256,40108032,0 +(2534,641:6630773,45706769:25952256,40108032,126483 +[2534,641:6630773,45706769:11829248,40108032,102891 +(2534,545:6630773,6254097:11829248,505283,102891 +h2534,544:6630773,6254097:0,0,0 +r2534,544:6630773,6254097:0,608174,102891 +g2534,544:8596853,6254097 +g2534,544:8596853,6254097 +g2534,544:11380822,6254097 +k2534,545:15518110,6254097:2941911 +k2534,545:18460021,6254097:2941911 +) +(2534,546:6630773,7112499:11829248,505283,126483 +h2534,545:6630773,7112499:0,0,0 +r2534,545:6630773,7112499:0,631766,126483 +g2534,545:7941493,7112499 +g2534,545:7941493,7112499 +g2534,545:9496007,7112499 +g2534,545:11146203,7112499 +k2534,546:15400801,7112499:3059221 +k2534,546:18460021,7112499:3059220 +) +(2534,547:6630773,7970901:11829248,505283,134348 +h2534,546:6630773,7970901:0,0,0 +r2534,546:6630773,7970901:0,639631,134348 +g2534,546:7941493,7970901 +g2534,546:7941493,7970901 +g2534,546:10458075,7970901 +k2534,547:15818265,7970901:2641757 +k2534,547:18460021,7970901:2641756 +) +(2534,548:6630773,8829304:11829248,505283,102891 +h2534,547:6630773,8829304:0,0,0 +r2534,547:6630773,8829304:0,608174,102891 +g2534,547:7941493,8829304 +g2534,547:7941493,8829304 +g2534,547:10727428,8829304 +k2534,548:15952941,8829304:2507080 +k2534,548:18460021,8829304:2507080 +) +(2534,549:6630773,9687706:11829248,485622,126483 +h2534,548:6630773,9687706:0,0,0 +r2534,548:6630773,9687706:0,612105,126483 +g2534,548:7941493,9687706 +g2534,548:7941493,9687706 +g2534,548:9433747,9687706 +g2534,548:11965402,9687706 +k2534,549:15810400,9687706:2649621 +k2534,549:18460021,9687706:2649621 +) +(2534,550:6630773,10546108:11829248,485622,134348 +h2534,549:6630773,10546108:0,0,0 +r2534,549:6630773,10546108:0,619970,134348 +g2534,549:7941493,10546108 +g2534,549:7941493,10546108 +g2534,549:9301365,10546108 +k2534,550:15239910,10546108:3220112 +k2534,550:18460021,10546108:3220111 +) +(2534,551:6630773,11404510:11829248,485622,102891 +h2534,550:6630773,11404510:0,0,0 +r2534,550:6630773,11404510:0,588513,102891 +g2534,550:7941493,11404510 +g2534,550:7941493,11404510 +g2534,550:9366901,11404510 +g2534,550:10355839,11404510 +k2534,551:15767147,11404510:2692875 +k2534,551:18460021,11404510:2692874 +) +(2534,552:6630773,12262912:11829248,505283,126483 +h2534,551:6630773,12262912:0,0,0 +r2534,551:6630773,12262912:0,631766,126483 +g2534,551:7941493,12262912 +g2534,551:7941493,12262912 +g2534,551:9151287,12262912 +g2534,551:10801483,12262912 +k2534,552:15989969,12262912:2470053 +k2534,552:18460021,12262912:2470052 +) +(2534,553:6630773,13121314:11829248,505283,102891 +h2534,552:6630773,13121314:0,0,0 +r2534,552:6630773,13121314:0,608174,102891 +g2534,552:7941493,13121314 +g2534,552:7941493,13121314 +g2534,552:9581859,13121314 +k2534,553:15380157,13121314:3079865 +k2534,553:18460021,13121314:3079864 +) +(2534,554:6630773,13979717:11829248,505283,102891 +h2534,553:6630773,13979717:0,0,0 +r2534,553:6630773,13979717:0,608174,102891 +g2534,553:7941493,13979717 +g2534,553:7941493,13979717 +g2534,553:11507962,13979717 +k2534,554:15581680,13979717:2878341 +k2534,554:18460021,13979717:2878341 +) +(2534,555:6630773,14838119:11829248,505283,126483 +h2534,554:6630773,14838119:0,0,0 +r2534,554:6630773,14838119:0,631766,126483 +g2534,554:7941493,14838119 +g2534,554:7941493,14838119 +g2534,554:9914782,14838119 +g2534,554:11564978,14838119 +k2534,555:16371716,14838119:2088305 +k2534,555:18460021,14838119:2088305 +) +(2534,556:6630773,15696521:11829248,505283,102891 +h2534,555:6630773,15696521:0,0,0 +r2534,555:6630773,15696521:0,608174,102891 +g2534,555:7941493,15696521 +g2534,555:7941493,15696521 +g2534,555:9698513,15696521 +g2534,555:11431940,15696521 +k2534,556:16305197,15696521:2154824 +k2534,556:18460021,15696521:2154824 +) +(2534,557:6630773,16554923:11829248,505283,102891 +h2534,556:6630773,16554923:0,0,0 +r2534,556:6630773,16554923:0,608174,102891 +g2534,556:7941493,16554923 +g2534,556:7941493,16554923 +g2534,556:9534673,16554923 +g2534,556:11853992,16554923 +k2534,557:16516223,16554923:1943798 +k2534,557:18460021,16554923:1943798 +) +(2534,558:6630773,17413325:11829248,505283,134348 +h2534,557:6630773,17413325:0,0,0 +g2534,557:10403025,17413325 +g2534,557:14092701,17413325 +k2534,558:16874050,17413325:1585972 +k2534,558:18460021,17413325:1585971 +) +(2534,559:6630773,18271728:11829248,505283,126483 +h2534,558:6630773,18271728:0,0,0 +g2534,558:10346009,18271728 +k2534,559:15000704,18271728:3459318 +k2534,559:18460021,18271728:3459317 +) +(2534,560:6630773,19130130:11829248,473825,126483 +h2534,559:6630773,19130130:0,0,0 +k2534,560:14011438,19130130:4448584 +k2534,560:18460021,19130130:4448583 +) +(2534,561:6630773,19988532:11829248,505283,126483 +h2534,560:6630773,19988532:0,0,0 +r2534,560:6630773,19988532:0,631766,126483 +g2534,560:7941493,19988532 +g2534,560:7941493,19988532 +g2534,560:9788297,19988532 +g2534,560:13565792,19988532 +k2534,561:16411366,19988532:2048656 +k2534,561:18460021,19988532:2048655 +) +(2534,562:6630773,20846934:11829248,505283,126483 +h2534,561:6630773,20846934:0,0,0 +g2534,561:9671643,20846934 +g2534,561:13798445,20846934 +k2534,561:18460021,20846934:1933312 +) +(2534,562:9252213,21688422:9207808,485622,11795 +k2534,562:15215334,21688422:3244688 +k2534,562:18460021,21688422:3244687 +) +(2534,563:6630773,22546824:11829248,355205,134348 +h2534,562:6630773,22546824:0,0,0 +k2534,563:14565217,22546824:3894805 +k2534,563:18460021,22546824:3894804 +) +(2534,564:6630773,23405226:11829248,505283,102891 +h2534,563:6630773,23405226:0,0,0 +r2534,563:6630773,23405226:0,608174,102891 +g2534,563:7941493,23405226 +g2534,563:7941493,23405226 +g2534,563:9828929,23405226 +k2534,564:14542934,23405226:3917087 +k2534,564:18460021,23405226:3917087 +) +(2534,565:6630773,24263629:11829248,481690,102891 +h2534,564:6630773,24263629:0,0,0 +r2534,564:6630773,24263629:0,584581,102891 +g2534,564:7941493,24263629 +g2534,564:7941493,24263629 +g2534,564:9697857,24263629 +k2534,565:14477398,24263629:3982623 +k2534,565:18460021,24263629:3982623 +) +(2534,566:6630773,25122031:11829248,505283,126483 +h2534,565:6630773,25122031:0,0,0 +r2534,565:6630773,25122031:0,631766,126483 +g2534,565:7941493,25122031 +g2534,565:7941493,25122031 +g2534,565:10495430,25122031 +k2534,566:14876185,25122031:3583837 +k2534,566:18460021,25122031:3583836 +) +(2534,567:6630773,25980433:11829248,481690,102891 +h2534,566:6630773,25980433:0,0,0 +r2534,566:6630773,25980433:0,584581,102891 +g2534,566:7941493,25980433 +g2534,566:7941493,25980433 +g2534,566:10312585,25980433 +g2534,566:11083943,25980433 +k2534,567:15170441,25980433:3289580 +k2534,567:18460021,25980433:3289580 +) +(2534,568:6630773,26838835:11829248,485622,102891 +h2534,567:6630773,26838835:0,0,0 +r2534,567:6630773,26838835:0,588513,102891 +g2534,567:7941493,26838835 +g2534,567:7941493,26838835 +g2534,567:9222721,26838835 +g2534,567:10392538,26838835 +k2534,568:15023968,26838835:3436053 +k2534,568:18460021,26838835:3436053 +) +(2534,569:6630773,27697237:11829248,485622,102891 +h2534,568:6630773,27697237:0,0,0 +r2534,568:6630773,27697237:0,588513,102891 +g2534,568:7941493,27697237 +g2534,568:7941493,27697237 +g2534,568:9435059,27697237 +g2534,568:10161197,27697237 +k2534,569:14509839,27697237:3950183 +k2534,569:18460021,27697237:3950182 +) +(2534,570:6630773,28555640:11829248,481690,134348 +h2534,569:6630773,28555640:0,0,0 +r2534,569:6630773,28555640:0,616038,134348 +g2534,569:7941493,28555640 +g2534,569:7941493,28555640 +g2534,569:10561622,28555640 +k2534,570:14909281,28555640:3550741 +k2534,570:18460021,28555640:3550740 +) +(2534,571:6630773,29414042:11829248,485622,102891 +h2534,570:6630773,29414042:0,0,0 +r2534,570:6630773,29414042:0,588513,102891 +g2534,570:7941493,29414042 +g2534,570:7941493,29414042 +g2534,570:10067480,29414042 +g2534,570:11237297,29414042 +k2534,571:15446348,29414042:3013674 +k2534,571:18460021,29414042:3013673 +) +(2534,572:6630773,30272444:11829248,513147,126483 +h2534,571:6630773,30272444:0,0,0 +r2534,571:6630773,30272444:0,639630,126483 +g2534,571:7941493,30272444 +g2534,571:7941493,30272444 +g2534,571:11129820,30272444 +g2534,571:11751757,30272444 +g2534,571:13818106,30272444 +k2534,572:16338293,30272444:2121728 +k2534,572:18460021,30272444:2121728 +) +(2534,573:6630773,31130846:11829248,485622,173670 +h2534,572:6630773,31130846:0,0,0 +r2534,572:6630773,31130846:0,659292,173670 +g2534,572:7941493,31130846 +g2534,572:7941493,31130846 +(2534,572:7941493,31130846:1181614,473825,0 +) +(2534,572:9428045,31304516:355205,473825,0 +) +g2534,572:10484484,31130846 +k2534,573:15069941,31130846:3390080 +k2534,573:18460021,31130846:3390080 +) +(2534,574:6630773,31989248:11829248,505283,102891 +h2534,573:6630773,31989248:0,0,0 +r2534,573:6630773,31989248:0,608174,102891 +k2534,573:7941493,31989248:1310720 +k2534,573:7941493,31989248:0 +k2534,573:11078046,31989248:185467 +k2534,573:12632559,31989248:185466 +k2534,573:14187073,31989248:185467 +k2534,573:17264644,31989248:185467 +k2534,574:18460021,31989248:0 +k2534,574:18460021,31989248:0 +) +(2534,575:6630773,32847650:11829248,505283,102891 +h2534,574:6630773,32847650:0,0,0 +r2534,574:6630773,32847650:0,608174,102891 +g2534,574:7941493,32847650 +g2534,574:7941493,32847650 +g2534,574:12254416,32847650 +g2534,574:13822692,32847650 +k2534,575:16739045,32847650:1720976 +k2534,575:18460021,32847650:1720976 +) +(2534,576:6630773,33706053:11829248,485622,102891 +h2534,575:6630773,33706053:0,0,0 +r2534,575:6630773,33706053:0,588513,102891 +g2534,575:7941493,33706053 +g2534,575:7941493,33706053 +g2534,575:10704490,33706053 +g2534,575:12272766,33706053 +g2534,575:13841042,33706053 +k2534,576:16748220,33706053:1711801 +k2534,576:18460021,33706053:1711801 +) +(2534,577:6630773,34564455:11829248,485622,102891 +h2534,576:6630773,34564455:0,0,0 +r2534,576:6630773,34564455:0,588513,102891 +g2534,576:7941493,34564455 +g2534,576:7941493,34564455 +g2534,576:10626502,34564455 +k2534,577:15140950,34564455:3319071 +k2534,577:18460021,34564455:3319071 +) +(2534,578:6630773,35422857:11829248,485622,102891 +h2534,577:6630773,35422857:0,0,0 +r2534,577:6630773,35422857:0,588513,102891 +g2534,577:7941493,35422857 +g2534,577:7941493,35422857 +g2534,577:10470527,35422857 +k2534,578:15062963,35422857:3397059 +k2534,578:18460021,35422857:3397058 +) +(2534,579:6630773,36281259:11829248,485622,102891 +h2534,578:6630773,36281259:0,0,0 +r2534,578:6630773,36281259:0,588513,102891 +g2534,578:7941493,36281259 +g2534,578:7941493,36281259 +g2534,578:9011041,36281259 +g2534,578:9794195,36281259 +k2534,579:14724797,36281259:3735225 +k2534,579:18460021,36281259:3735224 +) +(2534,580:6630773,37139661:11829248,485622,102891 +h2534,579:6630773,37139661:0,0,0 +r2534,579:6630773,37139661:0,588513,102891 +g2534,579:7941493,37139661 +g2534,579:7941493,37139661 +g2534,579:9953447,37139661 +k2534,580:14605193,37139661:3854828 +k2534,580:18460021,37139661:3854828 +) +(2534,582:6630773,37998064:11829248,505283,102891 +h2534,580:6630773,37998064:0,0,0 +r2534,580:6630773,37998064:0,608174,102891 +g2534,580:7941493,37998064 +g2534,580:7941493,37998064 +g2534,580:10738569,37998064 +g2534,580:11509927,37998064 +g2534,580:12281285,37998064 +g2534,580:13778782,37998064 +g2534,580:14948599,37998064 +g2534,580:16118416,37998064 +g2534,580:17288233,37998064 +k2534,580:18460021,37998064:201200 +) +(2534,582:9252213,38839552:9207808,485622,102891 +g2534,580:10422030,38839552 +g2534,580:12716445,38839552 +g2534,581:13886262,38839552 +g2534,581:15454538,38839552 +g2534,581:17022814,38839552 +k2534,582:18339106,38839552:120915 +k2534,582:18460021,38839552:120915 +) +(2534,583:6630773,39697954:11829248,505283,102891 +h2534,582:6630773,39697954:0,0,0 +r2534,582:6630773,39697954:0,608174,102891 +g2534,582:7941493,39697954 +g2534,582:7941493,39697954 +g2534,582:10471182,39697954 +k2534,583:15063290,39697954:3396731 +k2534,583:18460021,39697954:3396731 +) +(2534,584:6630773,40556356:11829248,485622,102891 +h2534,583:6630773,40556356:0,0,0 +r2534,583:6630773,40556356:0,588513,102891 +g2534,583:7941493,40556356 +g2534,583:7941493,40556356 +g2534,583:9473069,40556356 +g2534,583:10244427,40556356 +g2534,583:11812703,40556356 +g2534,583:13380979,40556356 +k2534,584:16518189,40556356:1941833 +k2534,584:18460021,40556356:1941832 +) +(2534,585:6630773,41414758:11829248,485622,102891 +h2534,584:6630773,41414758:0,0,0 +r2534,584:6630773,41414758:0,588513,102891 +g2534,584:7941493,41414758 +g2534,584:7941493,41414758 +g2534,584:9745698,41414758 +k2534,585:14700548,41414758:3759473 +k2534,585:18460021,41414758:3759473 +) +(2534,586:6630773,42273160:11829248,485622,102891 +h2534,585:6630773,42273160:0,0,0 +r2534,585:6630773,42273160:0,588513,102891 +g2534,585:7941493,42273160 +g2534,585:7941493,42273160 +g2534,585:9736523,42273160 +g2534,585:10507881,42273160 +g2534,585:12076157,42273160 +g2534,585:13644433,42273160 +k2534,586:16649916,42273160:1810106 +k2534,586:18460021,42273160:1810105 +) +(2534,587:6630773,43131562:11829248,485622,102891 +h2534,586:6630773,43131562:0,0,0 +r2534,586:6630773,43131562:0,588513,102891 +g2534,586:7941493,43131562 +g2534,586:7941493,43131562 +g2534,586:10325692,43131562 +k2534,587:14990545,43131562:3469476 +k2534,587:18460021,43131562:3469476 +) +(2534,588:6630773,43989965:11829248,485622,102891 +h2534,587:6630773,43989965:0,0,0 +r2534,587:6630773,43989965:0,588513,102891 +g2534,587:7941493,43989965 +g2534,587:7941493,43989965 +g2534,587:9881358,43989965 +g2534,587:11449634,43989965 +k2534,588:15552516,43989965:2907505 +k2534,588:18460021,43989965:2907505 +) +(2534,589:6630773,44848367:11829248,485622,126483 +h2534,588:6630773,44848367:0,0,0 +r2534,588:6630773,44848367:0,612105,126483 +g2534,588:7941493,44848367 +g2534,588:7941493,44848367 +g2534,588:10195275,44848367 +g2534,588:11763551,44848367 +k2534,589:15709475,44848367:2750547 +k2534,589:18460021,44848367:2750546 +) +(2534,590:6630773,45706769:11829248,485622,102891 +h2534,589:6630773,45706769:0,0,0 +r2534,589:6630773,45706769:0,588513,102891 +g2534,589:7941493,45706769 +g2534,589:7941493,45706769 +g2534,589:9766014,45706769 +g2534,589:10935831,45706769 +k2534,590:15295615,45706769:3164407 +k2534,590:18460021,45706769:3164406 +) +] +k2534,641:19606901,45706769:1146880 +r2534,641:19606901,45706769:0,40234515,126483 +k2534,641:20753781,45706769:1146880 +[2534,641:20753781,45706769:11829248,40108032,102891 +(2534,591:20753781,6254097:11829248,485622,102891 +h2534,590:20753781,6254097:0,0,0 +r2534,590:20753781,6254097:0,588513,102891 +g2534,590:22064501,6254097 +g2534,590:22064501,6254097 +g2534,590:23729770,6254097 +k2534,591:28554859,6254097:4028171 +k2534,591:32583029,6254097:4028170 +) +(2534,592:20753781,7099335:11829248,505283,102891 +h2534,591:20753781,7099335:0,0,0 +r2534,591:20753781,7099335:0,608174,102891 +g2534,591:22064501,7099335 +g2534,591:22064501,7099335 +g2534,591:24606642,7099335 +k2534,592:28993295,7099335:3589735 +k2534,592:32583029,7099335:3589734 +) +(2534,593:20753781,7944573:11829248,505283,126483 +h2534,592:20753781,7944573:0,0,0 +g2534,592:25988796,7944573 +g2534,592:29177777,7944573 +k2534,593:31478092,7944573:1104938 +k2534,593:32583029,7944573:1104937 +) +(2534,594:20753781,8789811:11829248,505283,134348 +h2534,593:20753781,8789811:0,0,0 +g2534,593:25988796,8789811 +g2534,593:29283946,8789811 +k2534,594:31531176,8789811:1051853 +k2534,594:32583029,8789811:1051853 +) +(2534,595:20753781,9635049:11829248,505283,126483 +h2534,594:20753781,9635049:0,0,0 +g2534,594:23291334,9635049 +g2534,594:24859610,9635049 +g2534,594:26427886,9635049 +k2534,595:30103146,9635049:2479883 +k2534,595:32583029,9635049:2479883 +) +(2534,599:20753781,11198144:11829248,473825,0 +h2534,598:20753781,11198144:0,0,0 +k2534,599:26875827,11198144:5707203 +k2534,599:32583029,11198144:5707202 +) +(2534,600:20753781,12043382:11829248,505283,126483 +h2534,599:20753781,12043382:0,0,0 +r2534,599:20753781,12043382:0,631766,126483 +g2534,599:22064501,12043382 +g2534,599:22064501,12043382 +g2534,599:23825453,12043382 +k2534,600:28602700,12043382:3980329 +k2534,600:32583029,12043382:3980329 +) +(2534,601:20753781,12888620:11829248,505283,134348 +h2534,600:20753781,12888620:0,0,0 +g2534,600:21367853,12888620 +g2534,600:22253244,12888620 +g2534,600:22808333,12888620 +g2534,600:26023529,12888620 +g2534,600:26794887,12888620 +k2534,601:29888188,12888620:2694842 +k2534,601:32583029,12888620:2694841 +) +(2534,602:20753781,13733858:11829248,477757,134348 +h2534,601:20753781,13733858:0,0,0 +g2534,601:21367853,13733858 +g2534,601:22253244,13733858 +g2534,601:22808333,13733858 +g2534,601:25923259,13733858 +k2534,602:29452374,13733858:3130656 +k2534,602:32583029,13733858:3130655 +) +(2534,603:20753781,14579096:11829248,485622,134348 +h2534,602:20753781,14579096:0,0,0 +g2534,602:21367853,14579096 +g2534,602:22253244,14579096 +g2534,602:22808333,14579096 +g2534,602:25923259,14579096 +k2534,603:29452374,14579096:3130656 +k2534,603:32583029,14579096:3130655 +) +(2534,604:20753781,15424334:11829248,505283,102891 +h2534,603:20753781,15424334:0,0,0 +g2534,603:23447310,15424334 +g2534,603:26636291,15424334 +k2534,604:32583029,15424334:4979427 +) +(2534,604:23375221,16265822:9207808,505283,126483 +g2534,603:28610236,16265822 +k2534,604:32004674,16265822:578356 +k2534,604:32583029,16265822:578355 +) +(2534,605:20753781,17111060:11829248,505283,134348 +h2534,604:20753781,17111060:0,0,0 +g2534,604:23447310,17111060 +g2534,604:26742460,17111060 +k2534,605:32583029,17111060:4873258 +) +(2534,605:23375221,17952548:9207808,505283,134348 +g2534,604:28610236,17952548 +k2534,605:32057758,17952548:525272 +k2534,605:32583029,17952548:525271 +) +(2534,606:20753781,18797786:11829248,505283,126483 +h2534,605:20753781,18797786:0,0,0 +g2534,605:24190489,18797786 +g2534,605:25140105,18797786 +k2534,606:29060797,18797786:3522233 +k2534,606:32583029,18797786:3522232 +) +(2534,607:20753781,19643024:11829248,505283,126483 +h2534,606:20753781,19643024:0,0,0 +g2534,606:23117008,19643024 +k2534,607:28447707,19643024:4135322 +k2534,607:32583029,19643024:4135322 +) +(2534,608:20753781,20488262:11829248,505283,102891 +h2534,607:20753781,20488262:0,0,0 +g2534,607:24301899,20488262 +k2534,608:29040153,20488262:3542877 +k2534,608:32583029,20488262:3542876 +) +(2534,609:20753781,21333499:11829248,505283,102891 +h2534,608:20753781,21333499:0,0,0 +g2534,608:23216623,21333499 +g2534,608:24784899,21333499 +g2534,608:26353175,21333499 +g2534,608:27921451,21333499 +g2534,608:29489727,21333499 +g2534,608:31058003,21333499 +k2534,608:32583029,21333499:155979 +) +(2534,609:23375221,22174987:9207808,485622,11795 +k2534,609:28576814,22174987:4006216 +k2534,609:32583029,22174987:4006215 +) +(2534,610:20753781,23020225:11829248,505283,102891 +h2534,609:20753781,23020225:0,0,0 +g2534,609:23539716,23020225 +g2534,609:25107992,23020225 +k2534,610:29443199,23020225:3139830 +k2534,610:32583029,23020225:3139830 +) +(2534,611:20753781,23865463:11829248,505283,126483 +h2534,610:20753781,23865463:0,0,0 +g2534,610:22306328,23865463 +g2534,610:25321639,23865463 +g2534,610:26712313,23865463 +g2534,610:30491774,23865463 +k2534,611:31935861,23865463:647169 +k2534,611:32583029,23865463:647168 +) +(2534,612:20753781,24710701:11829248,513147,134348 +h2534,611:20753781,24710701:0,0,0 +g2534,611:23812346,24710701 +g2534,611:24670867,24710701 +g2534,611:28446396,24710701 +g2534,611:29616213,24710701 +k2534,612:31697310,24710701:885720 +k2534,612:32583029,24710701:885719 +) +(2534,613:20753781,25555939:11829248,505283,134348 +h2534,612:20753781,25555939:0,0,0 +g2534,612:23950627,25555939 +g2534,612:26613354,25555939 +k2534,613:29996651,25555939:2586379 +k2534,613:32583029,25555939:2586378 +) +(2534,614:20753781,26401177:11829248,505283,126483 +h2534,613:20753781,26401177:0,0,0 +g2534,613:23183856,26401177 +g2534,613:24350396,26401177 +g2534,613:28612202,26401177 +k2534,614:31928324,26401177:654705 +k2534,614:32583029,26401177:654705 +) +(2534,615:20753781,27246415:11829248,505283,126483 +h2534,614:20753781,27246415:0,0,0 +g2534,614:25015587,27246415 +g2534,614:26604179,27246415 +g2534,614:29531672,27246415 +k2534,615:31818879,27246415:764150 +k2534,615:32583029,27246415:764150 +) +(2534,616:20753781,28091653:11829248,505283,126483 +h2534,615:20753781,28091653:0,0,0 +g2534,615:25015587,28091653 +g2534,615:28049903,28091653 +k2534,616:30714925,28091653:1868104 +k2534,616:32583029,28091653:1868104 +) +(2534,617:20753781,28936891:11829248,505283,126483 +h2534,616:20753781,28936891:0,0,0 +g2534,616:24053518,28936891 +k2534,617:28915962,28936891:3667067 +k2534,617:32583029,28936891:3667067 +) +(2534,618:20753781,29782129:11829248,505283,126483 +h2534,617:20753781,29782129:0,0,0 +g2534,617:24468361,29782129 +k2534,618:29123384,29782129:3459646 +k2534,618:32583029,29782129:3459645 +) +(2534,619:20753781,30627367:11829248,505283,134348 +h2534,618:20753781,30627367:0,0,0 +g2534,618:24100704,30627367 +g2534,618:26615320,30627367 +k2534,619:30958391,30627367:1624638 +k2534,619:32583029,30627367:1624638 +) +(2534,620:20753781,31472604:11829248,505283,102891 +h2534,619:20753781,31472604:0,0,0 +g2534,619:24511615,31472604 +g2534,619:26079891,31472604 +k2534,620:29929149,31472604:2653881 +k2534,620:32583029,31472604:2653880 +) +(2534,621:20753781,32317842:11829248,485622,102891 +h2534,620:20753781,32317842:0,0,0 +g2534,620:22765735,32317842 +k2534,621:28072841,32317842:4510188 +k2534,621:32583029,32317842:4510188 +) +(2534,622:20753781,33163080:11829248,505283,102891 +h2534,621:20753781,33163080:0,0,0 +g2534,621:23222521,33163080 +k2534,622:28500464,33163080:4082566 +k2534,622:32583029,33163080:4082565 +) +(2534,623:20753781,34008318:11829248,505283,102891 +h2534,622:20753781,34008318:0,0,0 +g2534,622:24892379,34008318 +k2534,623:29136163,34008318:3446866 +k2534,623:32583029,34008318:3446866 +) +(2534,624:20753781,34853556:11829248,505283,102891 +h2534,623:20753781,34853556:0,0,0 +g2534,623:24345808,34853556 +k2534,624:29062107,34853556:3520922 +k2534,624:32583029,34853556:3520922 +) +(2534,625:20753781,35698794:11829248,485622,126483 +h2534,624:20753781,35698794:0,0,0 +g2534,624:25596891,35698794 +k2534,625:29687649,35698794:2895381 +k2534,625:32583029,35698794:2895380 +) +(2534,626:20753781,36544032:11829248,505283,126483 +h2534,625:20753781,36544032:0,0,0 +g2534,625:23769747,36544032 +g2534,625:27373571,36544032 +g2534,625:28382170,36544032 +k2534,625:32583029,36544032:2637825 +) +(2534,626:23375221,37385520:9207808,485622,11795 +k2534,626:29338342,37385520:3244688 +k2534,626:32583029,37385520:3244687 +) +(2534,627:20753781,38230758:11829248,505283,102891 +h2534,626:20753781,38230758:0,0,0 +g2534,626:23967010,38230758 +k2534,627:28872708,38230758:3710321 +k2534,627:32583029,38230758:3710321 +) +(2534,629:20753781,39075996:11829248,505283,102891 +h2534,627:20753781,39075996:0,0,0 +g2534,627:23550857,39075996 +g2534,627:24322215,39075996 +g2534,627:25093573,39075996 +g2534,627:26591070,39075996 +g2534,627:27760887,39075996 +g2534,627:28930704,39075996 +g2534,627:30100521,39075996 +g2534,627:31270338,39075996 +k2534,627:32583029,39075996:342103 +) +(2534,629:23375221,39917484:9207808,485622,102891 +g2534,627:25669636,39917484 +g2534,627:26839453,39917484 +g2534,628:28407729,39917484 +g2534,628:29976005,39917484 +k2534,629:31877206,39917484:705824 +k2534,629:32583029,39917484:705823 +) +(2534,630:20753781,40762722:11829248,505283,102891 +h2534,629:20753781,40762722:0,0,0 +g2534,629:23283470,40762722 +k2534,630:28530938,40762722:4052091 +k2534,630:32583029,40762722:4052091 +) +(2534,634:20753781,42325817:11829248,485622,102891 +h2534,633:20753781,42325817:0,0,0 +g2534,633:21479919,42325817 +g2534,633:22251277,42325817 +g2534,633:23022635,42325817 +g2534,633:24590911,42325817 +k2534,634:29184659,42325817:3398371 +k2534,634:32583029,42325817:3398370 +) +(2534,635:20753781,43171055:11829248,505283,102891 +h2534,634:20753781,43171055:0,0,0 +g2534,634:22984626,43171055 +k2534,635:27983057,43171055:4599972 +k2534,635:32583029,43171055:4599972 +) +(2534,636:20753781,44016293:11829248,505283,126483 +h2534,635:20753781,44016293:0,0,0 +g2534,635:21706674,44016293 +g2534,635:23461072,44016293 +g2534,635:26079890,44016293 +k2534,636:29929148,44016293:2653881 +k2534,636:32583029,44016293:2653881 +) +(2534,637:20753781,44861531:11829248,485622,102891 +h2534,636:20753781,44861531:0,0,0 +g2534,636:22285357,44861531 +g2534,636:23056715,44861531 +g2534,636:24624991,44861531 +g2534,636:26193267,44861531 +k2534,637:29985837,44861531:2597193 +k2534,637:32583029,44861531:2597192 +) +(2534,638:20753781,45706769:11829248,505283,102891 +h2534,637:20753781,45706769:0,0,0 +g2534,637:23459762,45706769 +g2534,637:25028038,45706769 +g2534,637:26596314,45706769 +k2534,638:30187360,45706769:2395669 +k2534,638:32583029,45706769:2395669 +) +] +(2534,641:32583029,45706769:0,355205,126483 +h2534,641:32583029,45706769:420741,355205,126483 +k2534,641:32583029,45706769:-420741 +) +) +] +(2534,641:32583029,45706769:0,0,0 +g2534,641:32583029,45706769 +) +) +] +(2534,641:6630773,47279633:25952256,0,0 +h2534,641:6630773,47279633:25952256,0,0 +) +] +h2534,641:4262630,4025873:0,0,0 +] +!27607 }342 !12 {343 -[2537,359:4262630,47279633:28320399,43253760,0 -(2537,359:4262630,4025873:0,0,0 -[2537,359:-473657,4025873:11829248,0,0 -(2537,359:-473657,-710414:11829248,0,0 -h2537,359:-473657,-710414:0,0,0 -(2537,359:-473657,-710414:0,0,0 -(2537,359:-473657,-710414:0,0,0 -g2537,359:-473657,-710414 -(2537,359:-473657,-710414:65781,0,65781 -g2537,359:-407876,-710414 -[2537,359:-407876,-644633:0,0,0 +[1,17354:4262630,47279633:28320399,43253760,0 +(1,17354:4262630,4025873:0,0,0 +[1,17354:-473657,4025873:25952256,0,0 +(1,17354:-473657,-710414:25952256,0,0 +h1,17354:-473657,-710414:0,0,0 +(1,17354:-473657,-710414:0,0,0 +(1,17354:-473657,-710414:0,0,0 +g1,17354:-473657,-710414 +(1,17354:-473657,-710414:65781,0,65781 +g1,17354:-407876,-710414 +[1,17354:-407876,-644633:0,0,0 ] ) -k2537,359:-473657,-710414:-65781 +k1,17354:-473657,-710414:-65781 ) ) -k2537,359:11355591,-710414:11829248 -g2537,359:11355591,-710414 +k1,17354:25478599,-710414:25952256 +g1,17354:25478599,-710414 ) ] ) -[2537,359:6630773,47279633:25952256,43253760,0 -[2537,359:6630773,4812305:25952256,786432,0 -(2537,359:6630773,4812305:25952256,505283,11795 -(2537,359:6630773,4812305:25952256,505283,11795 -g2537,359:3078558,4812305 -[2537,359:3078558,4812305:0,0,0 -(2537,359:3078558,2439708:0,1703936,0 -k2537,359:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,359:2537886,2439708:1179648,16384,0 +[1,17354:6630773,47279633:25952256,43253760,0 +[1,17354:6630773,4812305:25952256,786432,0 +(1,17354:6630773,4812305:25952256,505283,11795 +(1,17354:6630773,4812305:25952256,505283,11795 +g1,17354:3078558,4812305 +[1,17354:3078558,4812305:0,0,0 +(1,17354:3078558,2439708:0,1703936,0 +k1,17354:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17354:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,359:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17354:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[2537,359:3078558,4812305:0,0,0 -(2537,359:3078558,2439708:0,1703936,0 -g2537,359:29030814,2439708 -g2537,359:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,359:36151628,1915420:16384,1179648,0 +[1,17354:3078558,4812305:0,0,0 +(1,17354:3078558,2439708:0,1703936,0 +g1,17354:29030814,2439708 +g1,17354:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17354:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,359:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17354:37855564,2439708:1179648,16384,0 ) ) -k2537,359:3078556,2439708:-34777008 +k1,17354:3078556,2439708:-34777008 ) ] -[2537,359:3078558,4812305:0,0,0 -(2537,359:3078558,49800853:0,16384,2228224 -k2537,359:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,359:2537886,49800853:1179648,16384,0 +[1,17354:3078558,4812305:0,0,0 +(1,17354:3078558,49800853:0,16384,2228224 +k1,17354:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17354:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,359:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17354:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[2537,359:3078558,4812305:0,0,0 -(2537,359:3078558,49800853:0,16384,2228224 -g2537,359:29030814,49800853 -g2537,359:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,359:36151628,51504789:16384,1179648,0 +[1,17354:3078558,4812305:0,0,0 +(1,17354:3078558,49800853:0,16384,2228224 +g1,17354:29030814,49800853 +g1,17354:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17354:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,359:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17354:37855564,49800853:1179648,16384,0 ) ) -k2537,359:3078556,49800853:-34777008 -) -] -g2537,359:6630773,4812305 -k2537,359:28224886,4812305:20398736 -g2537,359:30907930,4812305 -) -) -] -[2537,359:6630773,45706769:25952256,40108032,0 -(2537,359:6630773,45706769:25952256,40108032,0 -(2537,359:6630773,45706769:0,0,0 -g2537,359:6630773,45706769 -) -[2537,359:6630773,45706769:25952256,40108032,0 -(2537,359:6630773,45706769:25952256,40108032,126483 -[2537,359:6630773,45706769:11829248,40108032,102891 -(2537,260:6630773,6254097:11829248,505283,126483 -h2537,259:6630773,6254097:0,0,0 -r2537,259:6630773,6254097:0,631766,126483 -g2537,259:7941493,6254097 -g2537,259:7941493,6254097 -g2537,259:10157265,6254097 -g2537,259:11945087,6254097 -k2537,260:15800243,6254097:2659779 -k2537,260:18460021,6254097:2659778 -) -(2537,261:6630773,7100597:11829248,505283,126483 -h2537,260:6630773,7100597:0,0,0 -r2537,260:6630773,7100597:0,631766,126483 -g2537,260:7941493,7100597 -g2537,260:7941493,7100597 -g2537,260:9830240,7100597 -g2537,260:11618062,7100597 -k2537,261:15636730,7100597:2823291 -k2537,261:18460021,7100597:2823291 -) -(2537,265:6630773,8685993:11829248,485622,102891 -h2537,264:6630773,8685993:0,0,0 -g2537,264:8270483,8685993 -g2537,264:9440300,8685993 -k2537,265:14547849,8685993:3912172 -k2537,265:18460021,8685993:3912172 -) -(2537,266:6630773,9532493:11829248,505283,134348 -h2537,265:6630773,9532493:0,0,0 -g2537,265:8397623,9532493 -g2537,265:11232055,9532493 -g2537,265:12820647,9532493 -g2537,265:15632796,9532493 -k2537,266:18405625,9532493:54396 -k2537,266:18460021,9532493:54396 -) -(2537,267:6630773,10378994:11829248,513147,134348 -h2537,266:6630773,10378994:0,0,0 -r2537,266:6630773,10378994:0,647495,134348 -g2537,266:7941493,10378994 -g2537,266:7941493,10378994 -g2537,266:10832941,10378994 -k2537,267:15244170,10378994:3215852 -k2537,267:18460021,10378994:3215851 -) -(2537,268:6630773,11225494:11829248,485622,134348 -h2537,267:6630773,11225494:0,0,0 -r2537,267:6630773,11225494:0,619970,134348 -g2537,267:7941493,11225494 -g2537,267:7941493,11225494 -g2537,267:11209118,11225494 -k2537,268:15432258,11225494:3027763 -k2537,268:18460021,11225494:3027763 -) -(2537,269:6630773,12071994:11829248,505283,134348 -h2537,268:6630773,12071994:0,0,0 -g2537,268:9748320,12071994 -k2537,269:14701859,12071994:3758162 -k2537,269:18460021,12071994:3758162 -) -(2537,273:6630773,13657390:11829248,505283,102891 -h2537,272:6630773,13657390:0,0,0 -g2537,272:8909459,13657390 -g2537,272:9680817,13657390 -k2537,273:14468878,13657390:3991143 -k2537,273:18460021,13657390:3991143 -) -(2537,277:6630773,15242786:11829248,505283,134348 -h2537,276:6630773,15242786:0,0,0 -k2537,277:14131696,15242786:4328325 -k2537,277:18460021,15242786:4328325 -) -(2537,278:6630773,16089286:11829248,485622,102891 -h2537,277:6630773,16089286:0,0,0 -r2537,277:6630773,16089286:0,588513,102891 -g2537,277:7941493,16089286 -g2537,277:7941493,16089286 -g2537,277:8767901,16089286 -g2537,277:9937718,16089286 -g2537,277:11107535,16089286 -g2537,277:12277352,16089286 -g2537,277:13447169,16089286 -g2537,277:14616986,16089286 -g2537,277:15786803,16089286 -k2537,277:18460021,16089286:1304171 -) -(2537,278:9252213,16930774:9207808,485622,102891 -g2537,277:10820489,16930774 -k2537,278:15237944,16930774:3222078 -k2537,278:18460021,16930774:3222077 -) -(2537,279:6630773,17777275:11829248,485622,102891 -h2537,278:6630773,17777275:0,0,0 -r2537,278:6630773,17777275:0,588513,102891 -g2537,278:7941493,17777275 -g2537,278:7941493,17777275 -g2537,278:9597587,17777275 -g2537,278:10368945,17777275 -g2537,278:11538762,17777275 -g2537,278:12708579,17777275 -g2537,278:13878396,17777275 -g2537,278:15446672,17777275 -k2537,279:17551035,17777275:908986 -k2537,279:18460021,17777275:908986 -) -(2537,280:6630773,18623775:11829248,485622,102891 -h2537,279:6630773,18623775:0,0,0 -r2537,279:6630773,18623775:0,588513,102891 -g2537,279:7941493,18623775 -g2537,279:7941493,18623775 -g2537,279:10512470,18623775 -k2537,280:15083934,18623775:3376087 -k2537,280:18460021,18623775:3376087 -) -(2537,281:6630773,19470275:11829248,485622,102891 -h2537,280:6630773,19470275:0,0,0 -r2537,280:6630773,19470275:0,588513,102891 -g2537,280:7941493,19470275 -g2537,280:7941493,19470275 -g2537,280:11355263,19470275 -g2537,280:12923539,19470275 -g2537,280:14491815,19470275 -k2537,281:17073607,19470275:1386415 -k2537,281:18460021,19470275:1386414 -) -(2537,282:6630773,20316775:11829248,485622,102891 -h2537,281:6630773,20316775:0,0,0 -r2537,281:6630773,20316775:0,588513,102891 -g2537,281:7941493,20316775 -g2537,281:7941493,20316775 -g2537,281:10123841,20316775 -g2537,281:11692117,20316775 -k2537,282:15673758,20316775:2786264 -k2537,282:18460021,20316775:2786263 -) -(2537,283:6630773,21163275:11829248,485622,102891 -h2537,282:6630773,21163275:0,0,0 -r2537,282:6630773,21163275:0,588513,102891 -g2537,282:7941493,21163275 -g2537,282:7941493,21163275 -g2537,282:9581203,21163275 -g2537,282:10751020,21163275 -k2537,283:15203209,21163275:3256812 -k2537,283:18460021,21163275:3256812 -) -(2537,284:6630773,22009776:11829248,485622,173670 -h2537,283:6630773,22009776:0,0,0 -r2537,283:6630773,22009776:0,659292,173670 -g2537,283:7941493,22009776 -g2537,283:7941493,22009776 -[2537,283:8070599,22009776:341312,473825,0 -(2537,283:8070599,21871757:341312,335806,0 -) -] -(2537,283:8638865,22183446:370934,473825,0 -) -g2537,283:9731350,22009776 -k2537,284:14294915,22009776:4165106 -k2537,284:18460021,22009776:4165106 -) -(2537,285:6630773,22856276:11829248,505283,102891 -h2537,284:6630773,22856276:0,0,0 -r2537,284:6630773,22856276:0,608174,102891 -g2537,284:7941493,22856276 -g2537,284:7941493,22856276 -g2537,284:11617407,22856276 -g2537,284:12787224,22856276 -k2537,285:16221311,22856276:2238710 -k2537,285:18460021,22856276:2238710 -) -(2537,286:6630773,23702776:11829248,505283,126483 -h2537,285:6630773,23702776:0,0,0 -r2537,285:6630773,23702776:0,631766,126483 -g2537,285:7941493,23702776 -g2537,285:7941493,23702776 -g2537,285:10432516,23702776 -g2537,285:11823190,23702776 -g2537,285:15272349,23702776 -k2537,286:17264644,23702776:1195377 -k2537,286:18460021,23702776:1195377 -) -(2537,287:6630773,24549276:11829248,505283,102891 -h2537,286:6630773,24549276:0,0,0 -r2537,286:6630773,24549276:0,608174,102891 -g2537,286:7941493,24549276 -g2537,286:7941493,24549276 -g2537,286:10258845,24549276 -k2537,287:14558663,24549276:3901359 -k2537,287:18460021,24549276:3901358 -) -(2537,288:6630773,25395776:11829248,505283,126483 -h2537,287:6630773,25395776:0,0,0 -r2537,287:6630773,25395776:0,631766,126483 -g2537,287:7941493,25395776 -g2537,287:7941493,25395776 -g2537,287:10479046,25395776 -g2537,287:12047322,25395776 -g2537,287:13615598,25395776 -k2537,288:16635498,25395776:1824523 -k2537,288:18460021,25395776:1824523 -) -(2537,289:6630773,26242277:11829248,505283,102891 -h2537,288:6630773,26242277:0,0,0 -r2537,288:6630773,26242277:0,608174,102891 -g2537,288:7941493,26242277 -g2537,288:7941493,26242277 -g2537,288:12080091,26242277 -k2537,289:15668515,26242277:2791506 -k2537,289:18460021,26242277:2791506 -) -(2537,290:6630773,27088777:11829248,485622,102891 -h2537,289:6630773,27088777:0,0,0 -r2537,289:6630773,27088777:0,588513,102891 -g2537,289:7941493,27088777 -g2537,289:7941493,27088777 -g2537,289:8667631,27088777 -g2537,289:9438989,27088777 -g2537,289:10210347,27088777 -g2537,289:11778623,27088777 -k2537,290:15717011,27088777:2743011 -k2537,290:18460021,27088777:2743010 -) -(2537,291:6630773,27935277:11829248,505283,102891 -h2537,290:6630773,27935277:0,0,0 -r2537,290:6630773,27935277:0,608174,102891 -g2537,290:7941493,27935277 -g2537,290:7941493,27935277 -g2537,290:10172338,27935277 -k2537,291:14515409,27935277:3944612 -k2537,291:18460021,27935277:3944612 -) -(2537,292:6630773,28781777:11829248,485622,102891 -h2537,291:6630773,28781777:0,0,0 -r2537,291:6630773,28781777:0,588513,102891 -g2537,291:7941493,28781777 -g2537,291:7941493,28781777 -g2537,291:10534096,28781777 -k2537,292:15094747,28781777:3365274 -k2537,292:18460021,28781777:3365274 -) -(2537,293:6630773,29628277:11829248,485622,102891 -h2537,292:6630773,29628277:0,0,0 -r2537,292:6630773,29628277:0,588513,102891 -g2537,292:7941493,29628277 -g2537,292:7941493,29628277 -g2537,292:9638219,29628277 -g2537,292:11206495,29628277 -k2537,293:15430947,29628277:3029075 -k2537,293:18460021,29628277:3029074 -) -(2537,294:6630773,30474778:11829248,485622,102891 -h2537,293:6630773,30474778:0,0,0 -r2537,293:6630773,30474778:0,588513,102891 -g2537,293:7941493,30474778 -g2537,293:7941493,30474778 -g2537,293:10052407,30474778 -k2537,294:14853903,30474778:3606119 -k2537,294:18460021,30474778:3606118 -) -(2537,295:6630773,31321278:11829248,485622,173670 -h2537,294:6630773,31321278:0,0,0 -[2537,294:6759879,31321278:341312,473825,0 -(2537,294:6759879,31183259:341312,335806,0 -) -] -(2537,294:7328145,31494948:370934,473825,0 -) -g2537,294:8420630,31321278 -g2537,294:9590447,31321278 -k2537,295:14423693,31321278:4036328 -k2537,295:18460021,31321278:4036328 -) -(2537,296:6630773,32167778:11829248,485622,173670 -h2537,295:6630773,32167778:0,0,0 -[2537,295:6759879,32167778:341312,473825,0 -(2537,295:6759879,32029759:341312,335806,0 -) -] -(2537,295:7328145,32341448:370934,473825,0 -) -g2537,295:8420630,32167778 -k2537,296:13639555,32167778:4820466 -k2537,296:18460021,32167778:4820466 -) -(2537,297:6630773,33014278:11829248,505283,102891 -h2537,296:6630773,33014278:0,0,0 -g2537,296:9349206,33014278 -g2537,296:10917482,33014278 -g2537,296:12485758,33014278 -k2537,297:16070578,33014278:2389443 -k2537,297:18460021,33014278:2389443 -) -(2537,298:6630773,33860778:11829248,505283,102891 -h2537,297:6630773,33860778:0,0,0 -g2537,297:10876850,33860778 -g2537,297:12046667,33860778 -g2537,297:13614943,33860778 -g2537,297:15183219,33860778 -g2537,297:16751495,33860778 -k2537,298:18203447,33860778:256575 -k2537,298:18460021,33860778:256574 -) -(2537,299:6630773,34707279:11829248,505283,102891 -h2537,298:6630773,34707279:0,0,0 -g2537,298:8642728,34707279 -g2537,298:11333636,34707279 -k2537,299:16256045,34707279:2203976 -k2537,299:18460021,34707279:2203976 -) -(2537,300:6630773,35553779:11829248,513147,126483 -h2537,299:6630773,35553779:0,0,0 -r2537,299:6630773,35553779:0,639630,126483 -g2537,299:7941493,35553779 -g2537,299:7941493,35553779 -g2537,299:10695315,35553779 -g2537,299:11553836,35553779 -g2537,299:15309048,35553779 -k2537,300:17482223,35553779:977798 -k2537,300:18460021,35553779:977798 -) -(2537,301:6630773,36400279:11829248,513147,126483 -h2537,300:6630773,36400279:0,0,0 -r2537,300:6630773,36400279:0,639630,126483 -g2537,300:7941493,36400279 -g2537,300:7941493,36400279 -g2537,300:10695315,36400279 -g2537,300:11553836,36400279 -g2537,300:14580944,36400279 -k2537,301:17118171,36400279:1341850 -k2537,301:18460021,36400279:1341850 -) -(2537,302:6630773,37246779:11829248,505283,102891 -h2537,301:6630773,37246779:0,0,0 -r2537,301:6630773,37246779:0,608174,102891 -g2537,301:7941493,37246779 -g2537,301:7941493,37246779 -g2537,301:10575385,37246779 -g2537,301:12513940,37246779 -k2537,302:16084669,37246779:2375352 -k2537,302:18460021,37246779:2375352 -) -(2537,303:6630773,38093279:11829248,505283,134348 -h2537,302:6630773,38093279:0,0,0 -r2537,302:6630773,38093279:0,639631,134348 -g2537,302:7941493,38093279 -g2537,302:7941493,38093279 -g2537,302:9953448,38093279 -g2537,302:13643124,38093279 -k2537,303:16649261,38093279:1810760 -k2537,303:18460021,38093279:1810760 -) -(2537,304:6630773,38939780:11829248,505283,134348 -h2537,303:6630773,38939780:0,0,0 -r2537,303:6630773,38939780:0,639631,134348 -g2537,303:7941493,38939780 -g2537,303:7941493,38939780 -g2537,303:11713745,38939780 -g2537,303:15403421,38939780 -k2537,304:17529410,38939780:930612 -k2537,304:18460021,38939780:930611 -) -(2537,305:6630773,39786280:11829248,505283,126483 -h2537,304:6630773,39786280:0,0,0 -r2537,304:6630773,39786280:0,631766,126483 -g2537,304:7941493,39786280 -g2537,304:7941493,39786280 -g2537,304:11131130,39786280 -g2537,304:13069685,39786280 -k2537,305:16362542,39786280:2097480 -k2537,305:18460021,39786280:2097479 -) -(2537,306:6630773,40632780:11829248,505283,134348 -h2537,305:6630773,40632780:0,0,0 -g2537,305:8642728,40632780 -g2537,305:12332404,40632780 -g2537,305:13900680,40632780 -g2537,305:15067220,40632780 -g2537,305:16524085,40632780 -k2537,305:18460021,40632780:123210 -) -(2537,306:9252213,41474268:9207808,505283,7863 -k2537,306:15015121,41474268:3444900 -k2537,306:18460021,41474268:3444900 -) -(2537,307:6630773,42320768:11829248,485622,102891 -h2537,306:6630773,42320768:0,0,0 -g2537,306:8756760,42320768 -g2537,306:9528118,42320768 -g2537,306:10299476,42320768 -g2537,306:11070834,42320768 -g2537,306:12240651,42320768 -g2537,306:13410468,42320768 -g2537,306:14580285,42320768 -k2537,307:17117842,42320768:1342180 -k2537,307:18460021,42320768:1342179 -) -(2537,308:6630773,43167268:11829248,513147,134348 -h2537,307:6630773,43167268:0,0,0 -g2537,307:8813777,43167268 -g2537,307:10326348,43167268 -g2537,307:11208462,43167268 -g2537,307:14991200,43167268 -k2537,308:17323299,43167268:1136722 -k2537,308:18460021,43167268:1136722 -) -(2537,309:6630773,44013769:11829248,505283,102891 -h2537,308:6630773,44013769:0,0,0 -g2537,308:8327500,44013769 -k2537,309:14354519,44013769:4105503 -k2537,309:18460021,44013769:4105502 -) -(2537,310:6630773,44860269:11829248,505283,126483 -h2537,309:6630773,44860269:0,0,0 -r2537,309:6630773,44860269:0,631766,126483 -g2537,309:7941493,44860269 -g2537,309:7941493,44860269 -g2537,309:10520990,44860269 -g2537,309:11545317,44860269 -k2537,310:15401128,44860269:3058893 -k2537,310:18460021,44860269:3058893 -) -(2537,311:6630773,45706769:11829248,485622,102891 -h2537,310:6630773,45706769:0,0,0 -r2537,310:6630773,45706769:0,588513,102891 -g2537,310:7941493,45706769 -g2537,310:7941493,45706769 -g2537,310:10533441,45706769 -g2537,310:12000136,45706769 -g2537,310:14350912,45706769 -k2537,311:16803926,45706769:1656096 -k2537,311:18460021,45706769:1656095 -) -] -k2537,359:19606901,45706769:1146880 -r2537,359:19606901,45706769:0,40234515,126483 -k2537,359:20753781,45706769:1146880 -[2537,359:20753781,45706769:11829248,40108032,7863 -(2537,312:20753781,6254097:11829248,513147,134348 -h2537,311:20753781,6254097:0,0,0 -r2537,311:20753781,6254097:0,647495,134348 -g2537,311:22064501,6254097 -g2537,311:22064501,6254097 -g2537,311:25494000,6254097 -k2537,312:29436974,6254097:3146056 -k2537,312:32583029,6254097:3146055 -) -(2537,313:20753781,7097126:11829248,505283,102891 -h2537,312:20753781,7097126:0,0,0 -r2537,312:20753781,7097126:0,608174,102891 -g2537,312:22064501,7097126 -g2537,312:22064501,7097126 -g2537,312:24864199,7097126 -g2537,312:26030739,7097126 -g2537,312:28853374,7097126 -k2537,313:32325472,7097126:257557 -k2537,313:32583029,7097126:257557 -) -(2537,314:20753781,7940155:11829248,485622,102891 -h2537,313:20753781,7940155:0,0,0 -r2537,313:20753781,7940155:0,588513,102891 -g2537,313:22064501,7940155 -g2537,313:22064501,7940155 -g2537,313:24102670,7940155 -g2537,313:25743036,7940155 -k2537,314:29561492,7940155:3021538 -k2537,314:32583029,7940155:3021537 -) -(2537,315:20753781,8783184:11829248,505283,102891 -h2537,314:20753781,8783184:0,0,0 -r2537,314:20753781,8783184:0,608174,102891 -g2537,314:22064501,8783184 -g2537,314:22064501,8783184 -g2537,314:24887136,8783184 -g2537,314:28474576,8783184 -k2537,315:31489561,8783184:1093469 -k2537,315:32583029,8783184:1093468 -) -(2537,316:20753781,9626213:11829248,505283,134348 -h2537,315:20753781,9626213:0,0,0 -r2537,315:20753781,9626213:0,639631,134348 -g2537,315:22064501,9626213 -g2537,315:22064501,9626213 -g2537,315:24887136,9626213 -g2537,315:27999440,9626213 -g2537,315:29165980,9626213 -k2537,315:32583029,9626213:793643 -) -(2537,316:23375221,10467701:9207808,473825,7863 -k2537,316:29586396,10467701:2996634 -k2537,316:32583029,10467701:2996633 -) -(2537,317:20753781,11310730:11829248,505283,102891 -h2537,316:20753781,11310730:0,0,0 -r2537,316:20753781,11310730:0,608174,102891 -g2537,316:22064501,11310730 -g2537,316:22064501,11310730 -g2537,316:24554869,11310730 -k2537,317:29529707,11310730:3053322 -k2537,317:32583029,11310730:3053322 -) -(2537,318:20753781,12153759:11829248,485622,102891 -h2537,317:20753781,12153759:0,0,0 -r2537,317:20753781,12153759:0,588513,102891 -g2537,317:22064501,12153759 -g2537,317:22064501,12153759 -g2537,317:25368826,12153759 -k2537,318:29374387,12153759:3208643 -k2537,318:32583029,12153759:3208642 -) -(2537,319:20753781,12996788:11829248,505283,134348 -h2537,318:20753781,12996788:0,0,0 -g2537,318:23212036,12996788 -g2537,318:27937181,12996788 -k2537,319:30658564,12996788:1924465 -k2537,319:32583029,12996788:1924465 -) -(2537,320:20753781,13839817:11829248,505283,102891 -h2537,319:20753781,13839817:0,0,0 -g2537,319:22055326,13839817 -g2537,319:23221866,13839817 -g2537,319:25233821,13839817 -k2537,320:30067429,13839817:2515600 -k2537,320:32583029,13839817:2515600 -) -(2537,321:20753781,14682846:11829248,505283,102891 -h2537,320:20753781,14682846:0,0,0 -g2537,320:23122251,14682846 -k2537,321:28450329,14682846:4132701 -k2537,321:32583029,14682846:4132700 -) -(2537,322:20753781,15525875:11829248,505283,134348 -h2537,321:20753781,15525875:0,0,0 -g2537,321:23022637,15525875 -g2537,321:26472452,15525875 -k2537,322:29926200,15525875:2656830 -k2537,322:32583029,15525875:2656829 -) -(2537,323:20753781,16368904:11829248,505283,134348 -h2537,322:20753781,16368904:0,0,0 -g2537,322:23022637,16368904 -g2537,322:25232511,16368904 -g2537,322:26623185,16368904 -g2537,322:28331053,16368904 -k2537,322:32583029,16368904:1751122 -) -(2537,323:23375221,17210392:9207808,485622,11795 -k2537,323:28939883,17210392:3643146 -k2537,323:32583029,17210392:3643146 -) -(2537,324:20753781,18053421:11829248,513147,134348 -h2537,323:20753781,18053421:0,0,0 -g2537,323:24335323,18053421 -g2537,323:25725997,18053421 -g2537,323:29196128,18053421 -k2537,323:32583029,18053421:1109525 -) -(2537,324:23375221,18894909:9207808,505283,102891 -g2537,323:25137484,18894909 -k2537,324:29457945,18894909:3125084 -k2537,324:32583029,18894909:3125084 -) -(2537,325:20753781,19737938:11829248,505283,126483 -h2537,324:20753781,19737938:0,0,0 -g2537,324:22871904,19737938 -g2537,324:24038444,19737938 -g2537,324:25495309,19737938 -k2537,325:30397731,19737938:2185299 -k2537,325:32583029,19737938:2185298 -) -(2537,326:20753781,20580967:11829248,513147,102891 -h2537,325:20753781,20580967:0,0,0 -r2537,325:20753781,20580967:0,616038,102891 -g2537,325:22064501,20580967 -g2537,325:22064501,20580967 -g2537,325:24107258,20580967 -g2537,325:28197359,20580967 -g2537,325:31288692,20580967 -k2537,326:32533549,20580967:49480 -k2537,326:32583029,20580967:49480 -) -(2537,327:20753781,21423996:11829248,505283,102891 -h2537,326:20753781,21423996:0,0,0 -r2537,326:20753781,21423996:0,608174,102891 -g2537,326:22064501,21423996 -g2537,326:22064501,21423996 -g2537,326:24554869,21423996 -k2537,327:29166638,21423996:3416392 -k2537,327:32583029,21423996:3416391 -) -(2537,328:20753781,22267025:11829248,513147,126483 -h2537,327:20753781,22267025:0,0,0 -g2537,327:22213267,22267025 -g2537,327:23071788,22267025 -g2537,327:25891146,22267025 -g2537,327:29196126,22267025 -k2537,328:31288037,22267025:1294993 -k2537,328:32583029,22267025:1294992 -) -(2537,329:20753781,23110054:11829248,505283,102891 -h2537,328:20753781,23110054:0,0,0 -g2537,328:24391684,23110054 -g2537,328:25959960,23110054 -k2537,329:29869183,23110054:2713846 -k2537,329:32583029,23110054:2713846 -) -(2537,333:20753781,24634126:11829248,505283,7863 -h2537,332:20753781,24634126:0,0,0 -g2537,332:23640641,24634126 -k2537,333:29749908,24634126:2833122 -k2537,333:32583029,24634126:2833121 -) -(2537,334:20753781,25477155:11829248,485622,126483 -h2537,333:20753781,25477155:0,0,0 -r2537,333:20753781,25477155:0,612105,126483 -g2537,333:22064501,25477155 -g2537,333:22064501,25477155 -g2537,333:25369481,25477155 -k2537,334:29937013,25477155:2646016 -k2537,334:32583029,25477155:2646016 -) -(2537,335:20753781,26320184:11829248,505283,134348 -h2537,334:20753781,26320184:0,0,0 -r2537,334:20753781,26320184:0,639631,134348 -g2537,334:22064501,26320184 -g2537,334:22064501,26320184 -g2537,334:25187291,26320184 -g2537,334:27497435,26320184 -k2537,335:30438691,26320184:2144338 -k2537,335:32583029,26320184:2144338 -) -(2537,336:20753781,27163213:11829248,505283,134348 -h2537,335:20753781,27163213:0,0,0 -g2537,335:24161652,27163213 -k2537,336:28970029,27163213:3613000 -k2537,336:32583029,27163213:3613000 -) -(2537,337:20753781,28006242:11829248,505283,134348 -h2537,336:20753781,28006242:0,0,0 -g2537,336:24138715,28006242 -g2537,336:25706991,28006242 -g2537,336:27275267,28006242 -k2537,337:30526837,28006242:2056193 -k2537,337:32583029,28006242:2056192 -) -(2537,338:20753781,28849271:11829248,505283,126483 -h2537,337:20753781,28849271:0,0,0 -g2537,337:24124953,28849271 -g2537,337:25291493,28849271 -g2537,337:29351448,28849271 -k2537,337:32583029,28849271:676988 -) -(2537,338:23375221,29690759:9207808,513147,7863 -g2537,337:24233742,29690759 -k2537,338:29735490,29690759:2847540 -k2537,338:32583029,29690759:2847539 -) -(2537,339:20753781,30533788:11829248,505283,102891 -h2537,338:20753781,30533788:0,0,0 -g2537,338:24429695,30533788 -g2537,338:25599512,30533788 -k2537,339:29688959,30533788:2894070 -k2537,339:32583029,30533788:2894070 -) -(2537,340:20753781,31376817:11829248,513147,102891 -h2537,339:20753781,31376817:0,0,0 -g2537,339:22600585,31376817 -g2537,339:25999282,31376817 -k2537,340:29689615,31376817:2893415 -k2537,340:32583029,31376817:2893414 -) -(2537,341:20753781,32219846:11829248,505283,126483 -h2537,340:20753781,32219846:0,0,0 -g2537,340:22600585,32219846 -g2537,340:26050400,32219846 -k2537,341:29715174,32219846:2867856 -k2537,341:32583029,32219846:2867855 -) -(2537,342:20753781,33062875:11829248,485622,102891 -h2537,341:20753781,33062875:0,0,0 -g2537,341:23860187,33062875 -k2537,342:29182366,33062875:3400663 -k2537,342:32583029,33062875:3400663 -) -(2537,343:20753781,33905904:11829248,473825,7863 -h2537,342:20753781,33905904:0,0,0 -k2537,343:27712066,33905904:4870963 -k2537,343:32583029,33905904:4870963 -) -(2537,344:20753781,34748933:11829248,505283,102891 -h2537,343:20753781,34748933:0,0,0 -r2537,343:20753781,34748933:0,608174,102891 -g2537,343:22064501,34748933 -g2537,343:22064501,34748933 -g2537,343:26112659,34748933 -k2537,344:29746303,34748933:2836726 -k2537,344:32583029,34748933:2836726 -) -(2537,345:20753781,35591962:11829248,505283,102891 -h2537,344:20753781,35591962:0,0,0 -g2537,344:25157799,35591962 -k2537,345:29268873,35591962:3314156 -k2537,345:32583029,35591962:3314156 -) -(2537,346:20753781,36434991:11829248,505283,134348 -h2537,345:20753781,36434991:0,0,0 -g2537,345:22548812,36434991 -g2537,345:23715352,36434991 -g2537,345:29518565,36434991 -k2537,346:32158356,36434991:424674 -k2537,346:32583029,36434991:424673 -) -(2537,347:20753781,37278020:11829248,513147,134348 -h2537,346:20753781,37278020:0,0,0 -g2537,346:23573139,37278020 -g2537,346:25161731,37278020 -g2537,346:26928581,37278020 -g2537,346:28300249,37278020 -k2537,346:32583029,37278020:1967393 -) -(2537,347:23375221,38119508:9207808,485622,11795 -k2537,347:29338342,38119508:3244688 -k2537,347:32583029,38119508:3244687 -) -(2537,348:20753781,38962537:11829248,505283,102891 -h2537,347:20753781,38962537:0,0,0 -g2537,347:23911305,38962537 -k2537,348:28844856,38962537:3738174 -k2537,348:32583029,38962537:3738173 -) -(2537,349:20753781,39805566:11829248,505283,126483 -h2537,348:20753781,39805566:0,0,0 -r2537,348:20753781,39805566:0,631766,126483 -g2537,348:22064501,39805566 -g2537,348:22064501,39805566 -g2537,348:23017394,39805566 -g2537,348:24771792,39805566 -g2537,348:27390610,39805566 -k2537,349:30584508,39805566:1998521 -k2537,349:32583029,39805566:1998521 -) -(2537,350:20753781,40648595:11829248,505283,126483 -h2537,349:20753781,40648595:0,0,0 -g2537,349:26463932,40648595 -g2537,349:29626699,40648595 -k2537,350:31702553,40648595:880477 -k2537,350:32583029,40648595:880476 -) -(2537,351:20753781,41491624:11829248,505283,102891 -h2537,350:20753781,41491624:0,0,0 -g2537,350:26899091,41491624 -k2537,351:30338749,41491624:2244281 -k2537,351:32583029,41491624:2244280 -) -(2537,352:20753781,42334653:11829248,513147,126483 -h2537,351:20753781,42334653:0,0,0 -g2537,351:23942108,42334653 -g2537,351:24564045,42334653 -g2537,351:26630394,42334653 -k2537,352:29805941,42334653:2777088 -k2537,352:32583029,42334653:2777088 -) -(2537,353:20753781,43177682:11829248,485622,173670 -h2537,352:20753781,43177682:0,0,0 -(2537,352:20753781,43177682:1181614,473825,0 -) -(2537,352:22240333,43351352:355205,473825,0 -) -g2537,352:23296772,43177682 -k2537,353:28537589,43177682:4045440 -k2537,353:32583029,43177682:4045440 -) -(2537,354:20753781,44020711:11829248,513147,102891 -h2537,353:20753781,44020711:0,0,0 -g2537,353:22940717,44020711 -g2537,353:26187370,44020711 -k2537,354:30744416,44020711:1838613 -k2537,354:32583029,44020711:1838613 -) -(2537,355:20753781,44863740:11829248,505283,126483 -h2537,354:20753781,44863740:0,0,0 -r2537,354:20753781,44863740:0,631766,126483 -g2537,354:22064501,44863740 -g2537,354:22064501,44863740 -g2537,354:26693308,44863740 -k2537,355:30235857,44863740:2347172 -k2537,355:32583029,44863740:2347172 -) -(2537,356:20753781,45706769:11829248,505283,7863 -h2537,355:20753781,45706769:0,0,0 -k2537,356:27827409,45706769:4755620 -k2537,356:32583029,45706769:4755620 -) -] -(2537,359:32583029,45706769:0,355205,126483 -h2537,359:32583029,45706769:420741,355205,126483 -k2537,359:32583029,45706769:-420741 -) -) -] -(2537,359:32583029,45706769:0,0,0 -g2537,359:32583029,45706769 -) -) -] -(2537,359:6630773,47279633:25952256,0,0 -h2537,359:6630773,47279633:25952256,0,0 -) -] -h2537,359:4262630,4025873:0,0,0 -] -!27853 +k1,17354:3078556,49800853:-34777008 +) +] +g1,17354:6630773,4812305 +k1,17354:28224886,4812305:20398736 +g1,17354:30907930,4812305 +) +) +] +[1,17354:6630773,45706769:25952256,40108032,0 +(1,17354:6630773,45706769:25952256,40108032,0 +(1,17354:6630773,45706769:0,0,0 +g1,17354:6630773,45706769 +) +[1,17354:6630773,45706769:25952256,40108032,0 +(2534,735:6630773,40524401:25952256,34925664,134348 +[2534,735:6630773,40524401:11829248,34925664,11795 +(2534,639:6630773,6254097:11829248,513147,134348 +h2534,638:6630773,6254097:0,0,0 +g2534,638:8732512,6254097 +g2534,638:12291116,6254097 +g2534,638:13457656,6254097 +g2534,638:16559475,6254097 +k2534,638:18460021,6254097:1241254 +) +(2534,639:9252213,7095585:9207808,505283,134348 +g2534,638:12344201,7095585 +k2534,639:16353366,7095585:2106655 +k2534,639:18460021,7095585:2106655 +) +(2534,640:6630773,7937073:11829248,505283,134348 +h2534,639:6630773,7937073:0,0,0 +g2534,639:9299399,7937073 +g2534,639:11258270,7937073 +k2534,640:15456834,7937073:3003187 +k2534,640:18460021,7937073:3003187 +) +(2534,641:6630773,8778561:11829248,485622,126483 +h2534,640:6630773,8778561:0,0,0 +g2534,640:8834748,8778561 +k2534,641:13846614,8778561:4613407 +k2534,641:18460021,8778561:4613407 +) +(2534,642:6630773,9620049:11829248,485622,126483 +h2534,641:6630773,9620049:0,0,0 +g2534,641:9165050,9620049 +k2534,642:14210995,9620049:4249027 +k2534,642:18460021,9620049:4249026 +) +(2534,643:6630773,10461537:11829248,505283,134348 +h2534,642:6630773,10461537:0,0,0 +r2534,735:6630773,10461537:0,639631,134348 +g2534,642:7941493,10461537 +g2534,642:7941493,10461537 +g2534,642:11636412,10461537 +k2534,643:15446676,10461537:3013346 +k2534,643:18460021,10461537:3013345 +) +(2534,644:6630773,11303025:11829248,513147,102891 +h2534,643:6630773,11303025:0,0,0 +r2534,735:6630773,11303025:0,616038,102891 +g2534,643:7941493,11303025 +g2534,643:7941493,11303025 +g2534,643:11396551,11303025 +k2534,644:15326745,11303025:3133276 +k2534,644:18460021,11303025:3133276 +) +(2534,645:6630773,12144513:11829248,505283,126483 +h2534,644:6630773,12144513:0,0,0 +r2534,735:6630773,12144513:0,631766,126483 +g2534,644:7941493,12144513 +g2534,644:7941493,12144513 +g2534,644:11708502,12144513 +k2534,645:15482721,12144513:2977301 +k2534,645:18460021,12144513:2977300 +) +(2534,646:6630773,12986001:11829248,485622,134348 +h2534,645:6630773,12986001:0,0,0 +r2534,735:6630773,12986001:0,619970,134348 +g2534,645:7941493,12986001 +g2534,645:7941493,12986001 +g2534,645:11066249,12986001 +k2534,646:15161594,12986001:3298427 +k2534,646:18460021,12986001:3298427 +) +(2534,647:6630773,13827489:11829248,485622,134348 +h2534,646:6630773,13827489:0,0,0 +r2534,735:6630773,13827489:0,619970,134348 +g2534,646:7941493,13827489 +g2534,646:7941493,13827489 +g2534,646:10572108,13827489 +k2534,647:14914524,13827489:3545498 +k2534,647:18460021,13827489:3545497 +) +(2534,648:6630773,14668977:11829248,513147,134348 +h2534,647:6630773,14668977:0,0,0 +g2534,647:10669101,14668977 +g2534,647:14067798,14668977 +g2534,647:15636074,14668977 +k2534,648:17645736,14668977:814285 +k2534,648:18460021,14668977:814285 +) +(2534,649:6630773,15510465:11829248,505283,126483 +h2534,648:6630773,15510465:0,0,0 +g2534,648:9328889,15510465 +g2534,648:10897165,15510465 +k2534,649:15276282,15510465:3183740 +k2534,649:18460021,15510465:3183739 +) +(2534,650:6630773,16351953:11829248,485622,126483 +h2534,649:6630773,16351953:0,0,0 +g2534,649:9943617,16351953 +k2534,650:14600278,16351953:3859743 +k2534,650:18460021,16351953:3859743 +) +(2534,651:6630773,17193441:11829248,485622,102891 +h2534,650:6630773,17193441:0,0,0 +g2534,650:8268517,17193441 +k2534,651:14325027,17193441:4134994 +k2534,651:18460021,17193441:4134994 +) +(2534,652:6630773,18034929:11829248,513147,102891 +h2534,651:6630773,18034929:0,0,0 +g2534,651:7991955,18034929 +g2534,651:9560231,18034929 +k2534,652:14607815,18034929:3852207 +k2534,652:18460021,18034929:3852206 +) +(2534,653:6630773,18876417:11829248,505283,102891 +h2534,652:6630773,18876417:0,0,0 +g2534,652:10321760,18876417 +k2534,653:14988579,18876417:3471442 +k2534,653:18460021,18876417:3471442 +) +(2534,654:6630773,19717905:11829248,505283,126483 +h2534,653:6630773,19717905:0,0,0 +g2534,653:8954679,19717905 +g2534,653:10650095,19717905 +g2534,653:14539656,19717905 +k2534,654:16898298,19717905:1561724 +k2534,654:18460021,19717905:1561723 +) +(2534,655:6630773,20559393:11829248,505283,126483 +h2534,654:6630773,20559393:0,0,0 +g2534,654:9024147,20559393 +k2534,655:14747407,20559393:3712615 +k2534,655:18460021,20559393:3712614 +) +(2534,656:6630773,21400881:11829248,485622,102891 +h2534,655:6630773,21400881:0,0,0 +r2534,735:6630773,21400881:0,588513,102891 +g2534,655:7941493,21400881 +g2534,655:7941493,21400881 +g2534,655:9294156,21400881 +k2534,656:14275548,21400881:4184474 +k2534,656:18460021,21400881:4184473 +) +(2534,657:6630773,22242369:11829248,485622,102891 +h2534,656:6630773,22242369:0,0,0 +r2534,735:6630773,22242369:0,588513,102891 +g2534,656:7941493,22242369 +g2534,656:7941493,22242369 +g2534,656:9654604,22242369 +k2534,657:14455772,22242369:4004250 +k2534,657:18460021,22242369:4004249 +) +(2534,658:6630773,23083857:11829248,485622,102891 +h2534,657:6630773,23083857:0,0,0 +g2534,657:8434978,23083857 +k2534,658:14045188,23083857:4414833 +k2534,658:18460021,23083857:4414833 +) +(2534,659:6630773,23925345:11829248,485622,102891 +h2534,658:6630773,23925345:0,0,0 +g2534,658:8425803,23925345 +g2534,658:9197161,23925345 +g2534,658:10765437,23925345 +g2534,658:12333713,23925345 +k2534,659:15994556,23925345:2465466 +k2534,659:18460021,23925345:2465465 +) +(2534,660:6630773,24766833:11829248,485622,102891 +h2534,659:6630773,24766833:0,0,0 +g2534,659:9014972,24766833 +k2534,660:14335185,24766833:4124836 +k2534,660:18460021,24766833:4124836 +) +(2534,661:6630773,25608321:11829248,513147,102891 +h2534,660:6630773,25608321:0,0,0 +g2534,660:11549905,25608321 +k2534,661:15403422,25608321:3056599 +k2534,661:18460021,25608321:3056599 +) +(2534,662:6630773,26449809:11829248,485622,102891 +h2534,661:6630773,26449809:0,0,0 +g2534,661:8570638,26449809 +g2534,661:10138914,26449809 +k2534,662:14897156,26449809:3562865 +k2534,662:18460021,26449809:3562865 +) +(2534,664:6630773,27291297:11829248,513147,134348 +h2534,662:6630773,27291297:0,0,0 +g2534,662:9683440,27291297 +g2534,662:13242044,27291297 +k2534,663:13242044,27291297:0 +g2534,663:14408584,27291297 +g2534,663:17510403,27291297 +k2534,663:18460021,27291297:290326 +) +(2534,664:9252213,28132785:9207808,505283,134348 +g2534,663:12344201,28132785 +k2534,664:16828830,28132785:1631191 +k2534,664:18460021,28132785:1631191 +) +(2534,665:6630773,28974273:11829248,505283,102891 +h2534,664:6630773,28974273:0,0,0 +g2534,664:8936984,28974273 +k2534,665:14296191,28974273:4163830 +k2534,665:18460021,28974273:4163830 +) +(2534,666:6630773,29815761:11829248,505283,134348 +h2534,665:6630773,29815761:0,0,0 +g2534,665:9536639,29815761 +k2534,666:14596019,29815761:3864003 +k2534,666:18460021,29815761:3864002 +) +(2534,667:6630773,30657249:11829248,473825,7863 +h2534,666:6630773,30657249:0,0,0 +k2534,667:14299468,30657249:4160553 +k2534,667:18460021,30657249:4160553 +) +(2534,668:6630773,31498737:11829248,505283,102891 +h2534,667:6630773,31498737:0,0,0 +r2534,735:6630773,31498737:0,608174,102891 +g2534,667:7941493,31498737 +g2534,667:7941493,31498737 +g2534,667:11398517,31498737 +k2534,668:15526958,31498737:2933064 +k2534,668:18460021,31498737:2933063 +) +(2534,669:6630773,32340225:11829248,505283,102891 +h2534,668:6630773,32340225:0,0,0 +g2534,668:9707032,32340225 +g2534,668:10478390,32340225 +k2534,669:14867665,32340225:3592357 +k2534,669:18460021,32340225:3592356 +) +(2534,670:6630773,33181713:11829248,485622,126483 +h2534,669:6630773,33181713:0,0,0 +g2534,669:8884555,33181713 +g2534,669:10452831,33181713 +k2534,670:15054115,33181713:3405907 +k2534,670:18460021,33181713:3405906 +) +(2534,674:6630773,34633985:11829248,513147,7863 +h2534,673:6630773,34633985:0,0,0 +g2534,673:8056181,34633985 +k2534,674:13914772,34633985:4545249 +k2534,674:18460021,34633985:4545249 +) +(2534,675:6630773,35475473:11829248,513147,102891 +h2534,674:6630773,35475473:0,0,0 +r2534,735:6630773,35475473:0,616038,102891 +g2534,674:7941493,35475473 +g2534,674:7941493,35475473 +g2534,674:9704411,35475473 +g2534,674:11718332,35475473 +g2534,674:13825314,35475473 +k2534,675:16740356,35475473:1719665 +k2534,675:18460021,35475473:1719665 +) +(2534,676:6630773,36316961:11829248,513147,102891 +h2534,675:6630773,36316961:0,0,0 +r2534,735:6630773,36316961:0,616038,102891 +g2534,675:7941493,36316961 +g2534,675:7941493,36316961 +g2534,675:9534673,36316961 +g2534,675:11137683,36316961 +g2534,675:14133333,36316961 +k2534,676:16894366,36316961:1565656 +k2534,676:18460021,36316961:1565655 +) +(2534,677:6630773,37158449:11829248,513147,134348 +h2534,676:6630773,37158449:0,0,0 +g2534,676:9146700,37158449 +g2534,676:12705304,37158449 +g2534,676:13871844,37158449 +g2534,676:16973663,37158449 +k2534,676:18460021,37158449:827066 +) +(2534,677:9252213,37999937:9207808,505283,134348 +g2534,676:12344201,37999937 +k2534,677:16560460,37999937:1899561 +k2534,677:18460021,37999937:1899561 +) +(2534,678:6630773,38841425:11829248,505283,7863 +h2534,677:6630773,38841425:0,0,0 +k2534,678:13451105,38841425:5008917 +k2534,678:18460021,38841425:5008916 +) +(2534,679:6630773,39682913:11829248,513147,102891 +h2534,678:6630773,39682913:0,0,0 +r2534,735:6630773,39682913:0,616038,102891 +g2534,678:7941493,39682913 +g2534,678:7941493,39682913 +g2534,678:11657384,39682913 +g2534,678:13250564,39682913 +g2534,678:14839156,39682913 +k2534,678:18460021,39682913:1240597 +) +(2534,679:9252213,40524401:9207808,485622,11795 +k2534,679:15215334,40524401:3244688 +k2534,679:18460021,40524401:3244687 +) +] +k2534,735:19606901,40524401:1146880 +r2534,735:19606901,40524401:0,35060012,134348 +k2534,735:20753781,40524401:1146880 +[2534,735:20753781,40524401:11829248,34925664,134348 +(2534,680:20753781,6254097:11829248,505283,102891 +h2534,679:20753781,6254097:0,0,0 +g2534,679:23355559,6254097 +g2534,679:24525376,6254097 +g2534,679:25695193,6254097 +g2534,679:27263469,6254097 +g2534,679:28831745,6254097 +k2534,680:31305076,6254097:1277954 +k2534,680:32583029,6254097:1277953 +) +(2534,681:20753781,7095915:11829248,505283,126483 +h2534,680:20753781,7095915:0,0,0 +g2534,680:23472214,7095915 +k2534,681:28625310,7095915:3957719 +k2534,681:32583029,7095915:3957719 +) +(2534,682:20753781,7937733:11829248,505283,126483 +h2534,681:20753781,7937733:0,0,0 +g2534,681:22998388,7937733 +g2534,681:24566664,7937733 +g2534,681:26134940,7937733 +k2534,682:29956673,7937733:2626356 +k2534,682:32583029,7937733:2626356 +) +(2534,684:20753781,8779552:11829248,505283,126483 +h2534,682:20753781,8779552:0,0,0 +g2534,682:24401514,8779552 +g2534,682:25969790,8779552 +g2534,682:27538066,8779552 +g2534,682:29106342,8779552 +g2534,682:30674618,8779552 +k2534,682:32583029,8779552:539364 +) +(2534,684:23375221,9621040:9207808,485622,102891 +g2534,682:24943497,9621040 +g2534,682:26511773,9621040 +g2534,682:28080049,9621040 +k2534,684:30929228,9621040:1653802 +k2534,684:32583029,9621040:1653801 +) +(2534,685:20753781,10462858:11829248,485622,102891 +h2534,684:20753781,10462858:0,0,0 +g2534,684:22378418,10462858 +g2534,684:24596156,10462858 +k2534,685:29948809,10462858:2634220 +k2534,685:32583029,10462858:2634220 +) +(2534,686:20753781,11304676:11829248,505283,126483 +h2534,685:20753781,11304676:0,0,0 +r2534,735:20753781,11304676:0,631766,126483 +g2534,685:22064501,11304676 +g2534,685:22064501,11304676 +g2534,685:27167789,11304676 +k2534,686:30473098,11304676:2109932 +k2534,686:32583029,11304676:2109931 +) +(2534,687:20753781,12146494:11829248,505283,102891 +h2534,686:20753781,12146494:0,0,0 +g2534,686:23113732,12146494 +k2534,687:28446069,12146494:4136960 +k2534,687:32583029,12146494:4136960 +) +(2534,688:20753781,12988312:11829248,485622,126483 +h2534,687:20753781,12988312:0,0,0 +g2534,687:22339096,12988312 +g2534,687:26188680,12988312 +k2534,688:30346613,12988312:2236417 +k2534,688:32583029,12988312:2236416 +) +(2534,689:20753781,13830131:11829248,485622,126483 +h2534,688:20753781,13830131:0,0,0 +g2534,688:22339096,13830131 +g2534,688:26097585,13830131 +k2534,689:29738766,13830131:2844263 +k2534,689:32583029,13830131:2844263 +) +(2534,693:20753781,15332812:11829248,485622,102891 +h2534,692:20753781,15332812:0,0,0 +g2534,692:24141992,15332812 +k2534,693:28960199,15332812:3622830 +k2534,693:32583029,15332812:3622830 +) +(2534,694:20753781,16174630:11829248,485622,102891 +h2534,693:20753781,16174630:0,0,0 +g2534,693:22578302,16174630 +g2534,693:23349660,16174630 +g2534,693:24121018,16174630 +g2534,693:24892376,16174630 +g2534,693:26062193,16174630 +g2534,693:27232010,16174630 +g2534,693:28800286,16174630 +k2534,694:31289346,16174630:1293683 +k2534,694:32583029,16174630:1293683 +) +(2534,695:20753781,17016448:11829248,485622,102891 +h2534,694:20753781,17016448:0,0,0 +g2534,694:22789984,17016448 +k2534,695:28284195,17016448:4298834 +k2534,695:32583029,17016448:4298834 +) +(2534,696:20753781,17858267:11829248,505283,102891 +h2534,695:20753781,17858267:0,0,0 +g2534,695:22904672,17858267 +g2534,695:24472948,17858267 +g2534,695:26041224,17858267 +g2534,695:27609500,17858267 +g2534,695:29177776,17858267 +k2534,696:31478091,17858267:1104938 +k2534,696:32583029,17858267:1104938 +) +(2534,700:20753781,19360948:11829248,505283,102891 +h2534,699:20753781,19360948:0,0,0 +g2534,699:23968321,19360948 +k2534,700:28674134,19360948:3908895 +k2534,700:32583029,19360948:3908895 +) +(2534,701:20753781,20202766:11829248,426639,7863 +h2534,700:20753781,20202766:0,0,0 +k2534,701:27657344,20202766:4925686 +k2534,701:32583029,20202766:4925685 +) +(2534,702:20753781,21044584:11829248,505283,134348 +h2534,701:20753781,21044584:0,0,0 +r2534,735:20753781,21044584:0,639631,134348 +g2534,701:22064501,21044584 +g2534,701:22064501,21044584 +g2534,701:23381774,21044584 +g2534,701:25594269,21044584 +g2534,701:28868447,21044584 +k2534,702:31124197,21044584:1458832 +k2534,702:32583029,21044584:1458832 +) +(2534,703:20753781,21886403:11829248,485622,102891 +h2534,702:20753781,21886403:0,0,0 +g2534,702:25319019,21886403 +k2534,703:29548713,21886403:3034317 +k2534,703:32583029,21886403:3034316 +) +(2534,704:20753781,22728221:11829248,505283,102891 +h2534,703:20753781,22728221:0,0,0 +g2534,703:24290103,22728221 +g2534,703:27939147,22728221 +k2534,704:30659547,22728221:1923482 +k2534,704:32583029,22728221:1923482 +) +(2534,705:20753781,23570039:11829248,513147,102891 +h2534,704:20753781,23570039:0,0,0 +g2534,704:24290103,23570039 +g2534,704:26359074,23570039 +k2534,705:29869511,23570039:2713519 +k2534,705:32583029,23570039:2713518 +) +(2534,706:20753781,24411857:11829248,426639,7863 +h2534,705:20753781,24411857:0,0,0 +k2534,706:27822494,24411857:4760535 +k2534,706:32583029,24411857:4760535 +) +(2534,707:20753781,25253675:11829248,505283,134348 +h2534,706:20753781,25253675:0,0,0 +r2534,735:20753781,25253675:0,639631,134348 +g2534,706:22064501,25253675 +g2534,706:22064501,25253675 +g2534,706:25176805,25253675 +k2534,707:29840675,25253675:2742354 +k2534,707:32583029,25253675:2742354 +) +(2534,708:20753781,26095493:11829248,505283,102891 +h2534,707:20753781,26095493:0,0,0 +r2534,735:20753781,26095493:0,608174,102891 +g2534,707:22064501,26095493 +g2534,707:22064501,26095493 +g2534,707:24887136,26095493 +g2534,707:28474576,26095493 +k2534,708:30927262,26095493:1655768 +k2534,708:32583029,26095493:1655767 +) +(2534,709:20753781,26937312:11829248,485622,134348 +h2534,708:20753781,26937312:0,0,0 +r2534,735:20753781,26937312:0,619970,134348 +g2534,708:22064501,26937312 +g2534,708:22064501,26937312 +g2534,708:24697737,26937312 +k2534,709:29038842,26937312:3544187 +k2534,709:32583029,26937312:3544187 +) +(2534,710:20753781,27779130:11829248,505283,134348 +h2534,709:20753781,27779130:0,0,0 +r2534,735:20753781,27779130:0,639631,134348 +g2534,709:22064501,27779130 +g2534,709:22064501,27779130 +g2534,709:23683895,27779130 +g2534,709:26070060,27779130 +k2534,710:29725004,27779130:2858026 +k2534,710:32583029,27779130:2858025 +) +(2534,714:20753781,29281811:11829248,485622,102891 +h2534,713:20753781,29281811:0,0,0 +g2534,713:22419050,29281811 +k2534,714:27899499,29281811:4683531 +k2534,714:32583029,29281811:4683530 +) +(2534,715:20753781,30123629:11829248,505283,102891 +h2534,714:20753781,30123629:0,0,0 +g2534,714:23295922,30123629 +k2534,715:28337935,30123629:4245095 +k2534,715:32583029,30123629:4245094 +) +(2534,716:20753781,30965448:11829248,505283,134348 +h2534,715:20753781,30965448:0,0,0 +g2534,715:23539716,30965448 +g2534,715:26804719,30965448 +k2534,716:31053091,30965448:1529939 +k2534,716:32583029,30965448:1529938 +) +(2534,717:20753781,31807266:11829248,513147,102891 +h2534,716:20753781,31807266:0,0,0 +g2534,716:24767205,31807266 +g2534,716:25933745,31807266 +g2534,716:27522337,31807266 +k2534,717:30990831,31807266:1592198 +k2534,717:32583029,31807266:1592198 +) +(2534,718:20753781,32649084:11829248,505283,126483 +h2534,717:20753781,32649084:0,0,0 +g2534,717:23356215,32649084 +g2534,717:24924491,32649084 +g2534,717:26492767,32649084 +g2534,717:28061043,32649084 +k2534,718:30919725,32649084:1663305 +k2534,718:32583029,32649084:1663304 +) +(2534,722:20753781,34151765:11829248,485622,102891 +h2534,721:20753781,34151765:0,0,0 +g2534,721:23346384,34151765 +k2534,722:28562395,34151765:4020634 +k2534,722:32583029,34151765:4020634 +) +(2534,723:20753781,34993584:11829248,505283,102891 +h2534,722:20753781,34993584:0,0,0 +g2534,722:22867316,34993584 +g2534,722:24435592,34993584 +k2534,723:29106999,34993584:3476030 +k2534,723:32583029,34993584:3476030 +) +(2534,724:20753781,35835402:11829248,485622,102891 +h2534,723:20753781,35835402:0,0,0 +g2534,723:22450507,35835402 +g2534,723:24018783,35835402 +k2534,724:28898595,35835402:3684435 +k2534,724:32583029,35835402:3684434 +) +(2534,725:20753781,36677220:11829248,505283,102891 +h2534,724:20753781,36677220:0,0,0 +g2534,724:23158951,36677220 +k2534,725:28468679,36677220:4114351 +k2534,725:32583029,36677220:4114350 +) +(2534,726:20753781,37519038:11829248,485622,102891 +h2534,725:20753781,37519038:0,0,0 +g2534,725:22864695,37519038 +k2534,726:28321551,37519038:4261479 +k2534,726:32583029,37519038:4261478 +) +(2534,730:20753781,39021720:11829248,505283,102891 +h2534,729:20753781,39021720:0,0,0 +g2534,729:24248160,39021720 +g2534,729:27353911,39021720 +k2534,730:30566159,39021720:2016871 +k2534,730:32583029,39021720:2016870 +) +(2534,734:20753781,40524401:11829248,505283,134348 +h2534,733:20753781,40524401:0,0,0 +g2534,733:22373175,40524401 +g2534,733:24585670,40524401 +g2534,733:27248397,40524401 +k2534,734:30314172,40524401:2268857 +k2534,734:32583029,40524401:2268857 +) +] +(2534,735:32583029,40524401:0,355205,126483 +h2534,735:32583029,40524401:420741,355205,126483 +k2534,735:32583029,40524401:-420741 +) +) +] +(1,17354:32583029,45706769:0,0,0 +g1,17354:32583029,45706769 +) +) +] +(1,17354:6630773,47279633:25952256,0,0 +h1,17354:6630773,47279633:25952256,0,0 +) +] +h1,17354:4262630,4025873:0,0,0 +] +!21467 }343 -!12 +Input:2535:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\rcatsidx.ind +!92 {344 -[2537,454:4262630,47279633:28320399,43253760,0 -(2537,454:4262630,4025873:0,0,0 -[2537,454:-473657,4025873:11829248,0,0 -(2537,454:-473657,-710414:11829248,0,0 -h2537,454:-473657,-710414:0,0,0 -(2537,454:-473657,-710414:0,0,0 -(2537,454:-473657,-710414:0,0,0 -g2537,454:-473657,-710414 -(2537,454:-473657,-710414:65781,0,65781 -g2537,454:-407876,-710414 -[2537,454:-407876,-644633:0,0,0 +[2535,85:4262630,47279633:28320399,43253760,11795 +(2535,85:4262630,4025873:0,0,0 +[2535,85:-473657,4025873:11829248,0,0 +(2535,85:-473657,-710414:11829248,0,0 +h2535,85:-473657,-710414:0,0,0 +(2535,85:-473657,-710414:0,0,0 +(2535,85:-473657,-710414:0,0,0 +g2535,85:-473657,-710414 +(2535,85:-473657,-710414:65781,0,65781 +g2535,85:-407876,-710414 +[2535,85:-407876,-644633:0,0,0 ] ) -k2537,454:-473657,-710414:-65781 +k2535,85:-473657,-710414:-65781 ) ) -k2537,454:11355591,-710414:11829248 -g2537,454:11355591,-710414 +k2535,85:11355591,-710414:11829248 +g2535,85:11355591,-710414 ) ] ) -[2537,454:6630773,47279633:25952256,43253760,0 -[2537,454:6630773,4812305:25952256,786432,0 -(2537,454:6630773,4812305:25952256,505283,11795 -(2537,454:6630773,4812305:25952256,505283,11795 -g2537,454:3078558,4812305 -[2537,454:3078558,4812305:0,0,0 -(2537,454:3078558,2439708:0,1703936,0 -k2537,454:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,454:2537886,2439708:1179648,16384,0 +[2535,85:6630773,47279633:25952256,43253760,11795 +[2535,85:6630773,4812305:25952256,786432,0 +(2535,85:6630773,4812305:25952256,0,0 +(2535,85:6630773,4812305:25952256,0,0 +g2535,85:3078558,4812305 +[2535,85:3078558,4812305:0,0,0 +(2535,85:3078558,2439708:0,1703936,0 +k2535,85:1358238,2439708:-1720320 +(2535,1:1358238,2439708:1720320,1703936,0 +(2535,1:1358238,2439708:1179648,16384,0 +r2535,85:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,454:3078558,1915420:16384,1179648,0 +g2535,1:3062174,2439708 +(2535,1:3062174,2439708:16384,1703936,0 +[2535,1:3062174,2439708:25952256,1703936,0 +(2535,1:3062174,1915420:25952256,1179648,0 +(2535,1:3062174,1915420:16384,1179648,0 +r2535,85:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2535,1:29014430,1915420:25935872 +g2535,1:29014430,1915420 ) ] ) ) ) ] -[2537,454:3078558,4812305:0,0,0 -(2537,454:3078558,2439708:0,1703936,0 -g2537,454:29030814,2439708 -g2537,454:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,454:36151628,1915420:16384,1179648,0 +[2535,85:3078558,4812305:0,0,0 +(2535,85:3078558,2439708:0,1703936,0 +g2535,85:29030814,2439708 +g2535,85:36135244,2439708 +(2535,1:36135244,2439708:1720320,1703936,0 +(2535,1:36135244,2439708:16384,1703936,0 +[2535,1:36135244,2439708:25952256,1703936,0 +(2535,1:36135244,1915420:25952256,1179648,0 +(2535,1:36135244,1915420:16384,1179648,0 +r2535,85:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2535,1:62087500,1915420:25935872 +g2535,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,454:37855564,2439708:1179648,16384,0 +g2535,1:36675916,2439708 +(2535,1:36675916,2439708:1179648,16384,0 +r2535,85:37855564,2439708:1179648,16384,0 ) ) -k2537,454:3078556,2439708:-34777008 +k2535,85:3078556,2439708:-34777008 ) ] -[2537,454:3078558,4812305:0,0,0 -(2537,454:3078558,49800853:0,16384,2228224 -k2537,454:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,454:2537886,49800853:1179648,16384,0 +[2535,85:3078558,4812305:0,0,0 +(2535,85:3078558,49800853:0,16384,2228224 +k2535,85:1358238,49800853:-1720320 +(2535,1:1358238,49800853:1720320,16384,2228224 +(2535,1:1358238,49800853:1179648,16384,0 +r2535,85:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,454:3078558,51504789:16384,1179648,0 +g2535,1:3062174,49800853 +(2535,1:3062174,52029077:16384,1703936,0 +[2535,1:3062174,52029077:25952256,1703936,0 +(2535,1:3062174,51504789:25952256,1179648,0 +(2535,1:3062174,51504789:16384,1179648,0 +r2535,85:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2535,1:29014430,51504789:25935872 +g2535,1:29014430,51504789 ) ] ) ) ) ] -[2537,454:3078558,4812305:0,0,0 -(2537,454:3078558,49800853:0,16384,2228224 -g2537,454:29030814,49800853 -g2537,454:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,454:36151628,51504789:16384,1179648,0 +[2535,85:3078558,4812305:0,0,0 +(2535,85:3078558,49800853:0,16384,2228224 +g2535,85:29030814,49800853 +g2535,85:36135244,49800853 +(2535,1:36135244,49800853:1720320,16384,2228224 +(2535,1:36135244,52029077:16384,1703936,0 +[2535,1:36135244,52029077:25952256,1703936,0 +(2535,1:36135244,51504789:25952256,1179648,0 +(2535,1:36135244,51504789:16384,1179648,0 +r2535,85:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k2535,1:62087500,51504789:25935872 +g2535,1:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,454:37855564,49800853:1179648,16384,0 +g2535,1:36675916,49800853 +(2535,1:36675916,49800853:1179648,16384,0 +r2535,85:37855564,49800853:1179648,16384,0 +) +) +k2535,85:3078556,49800853:-34777008 +) +] +g2535,85:6630773,4812305 ) ) -k2537,454:3078556,49800853:-34777008 -) -] -g2537,454:6630773,4812305 -g2537,454:6630773,4812305 -g2537,454:9313817,4812305 -g2537,454:11188146,4812305 -k2537,454:31387652,4812305:20199506 -) -) -] -[2537,454:6630773,45706769:25952256,40108032,0 -(2537,454:6630773,45706769:25952256,40108032,0 -(2537,454:6630773,45706769:0,0,0 -g2537,454:6630773,45706769 -) -[2537,454:6630773,45706769:25952256,40108032,0 -(2537,454:6630773,45706769:25952256,40108032,126483 -[2537,454:6630773,45706769:11829248,40108032,126483 -(2537,357:6630773,6254097:11829248,505283,134348 -h2537,356:6630773,6254097:0,0,0 -r2537,356:6630773,6254097:0,639631,134348 -g2537,356:7941493,6254097 -g2537,356:7941493,6254097 -g2537,356:11833020,6254097 -g2537,356:14018645,6254097 -k2537,357:18460021,6254097:3474065 -) -(2537,357:9252213,7095585:9207808,505283,134348 -g2537,356:13143740,7095585 -g2537,356:15155695,7095585 -k2537,357:17966862,7095585:493159 -k2537,357:18460021,7095585:493159 -) -(2537,358:6630773,7940823:11829248,505283,102891 -h2537,357:6630773,7940823:0,0,0 -r2537,357:6630773,7940823:0,608174,102891 -g2537,357:7941493,7940823 -g2537,357:7941493,7940823 -g2537,357:10127118,7940823 -g2537,357:11293658,7940823 -g2537,357:13305613,7940823 -k2537,358:17041821,7940823:1418200 -k2537,358:18460021,7940823:1418200 -) -(2537,359:6630773,8786061:11829248,505283,102891 -h2537,358:6630773,8786061:0,0,0 -r2537,358:6630773,8786061:0,608174,102891 -k2537,358:7941493,8786061:1310720 -k2537,358:7941493,8786061:0 -k2537,358:11551653,8786061:186559 -k2537,358:12705524,8786061:186560 -k2537,358:16142013,8786061:186559 -k2537,359:18460021,8786061:0 -k2537,359:18460021,8786061:0 -) -(2537,360:6630773,9631299:11829248,513147,102891 -h2537,359:6630773,9631299:0,0,0 -r2537,359:6630773,9631299:0,616038,102891 -g2537,359:7941493,9631299 -g2537,359:7941493,9631299 -g2537,359:11871031,9631299 -k2537,360:15763215,9631299:2696807 -k2537,360:18460021,9631299:2696806 -) -(2537,361:6630773,10476537:11829248,505283,102891 -h2537,360:6630773,10476537:0,0,0 -g2537,360:9781088,10476537 -g2537,360:11349364,10476537 -g2537,360:12917640,10476537 -g2537,360:16008973,10476537 -k2537,361:17832186,10476537:627836 -k2537,361:18460021,10476537:627835 -) -(2537,362:6630773,11321775:11829248,505283,102891 -h2537,361:6630773,11321775:0,0,0 -k2537,361:10938781,11321775:194314 -k2537,361:11705225,11321775:194315 -k2537,361:13197807,11321775:194314 -k2537,361:14362710,11321775:194315 -k2537,361:15527612,11321775:194314 -k2537,361:17090974,11321775:194315 -k2537,361:18460021,11321775:0 -) -(2537,362:9252213,12163263:9207808,485622,102891 -g2537,361:10820489,12163263 -k2537,362:15237944,12163263:3222078 -k2537,362:18460021,12163263:3222077 -) -(2537,363:6630773,13008500:11829248,505283,134348 -h2537,362:6630773,13008500:0,0,0 -g2537,362:12433986,13008500 -g2537,362:15022002,13008500 -k2537,363:18100228,13008500:359793 -k2537,363:18460021,13008500:359793 -) -(2537,364:6630773,13853738:11829248,513147,126483 -h2537,363:6630773,13853738:0,0,0 -g2537,363:10690728,13853738 -g2537,363:13444550,13853738 -g2537,363:14303071,13853738 -k2537,363:18460021,13853738:1329071 -) -(2537,364:9252213,14695226:9207808,485622,11795 -k2537,364:15215334,14695226:3244688 -k2537,364:18460021,14695226:3244687 -) -(2537,365:6630773,15540464:11829248,505283,102891 -h2537,364:6630773,15540464:0,0,0 -g2537,364:10690728,15540464 -g2537,364:13848252,15540464 -k2537,365:17513353,15540464:946668 -k2537,365:18460021,15540464:946668 -) -(2537,369:6630773,17103560:11829248,505283,134348 -h2537,368:6630773,17103560:0,0,0 -g2537,368:8898318,17103560 -g2537,368:10288992,17103560 -g2537,368:13131288,17103560 -k2537,369:16393343,17103560:2066678 -k2537,369:18460021,17103560:2066678 -) -(2537,370:6630773,17948798:11829248,481690,126483 -h2537,369:6630773,17948798:0,0,0 -g2537,369:10859811,17948798 -k2537,370:15257605,17948798:3202417 -k2537,370:18460021,17948798:3202416 -) -(2537,371:6630773,18794036:11829248,513147,102891 -h2537,370:6630773,18794036:0,0,0 -g2537,370:9227964,18794036 -g2537,370:10796240,18794036 -g2537,370:12364516,18794036 -k2537,371:16009957,18794036:2450064 -k2537,371:18460021,18794036:2450064 -) -(2537,372:6630773,19639274:11829248,505283,126483 -h2537,371:6630773,19639274:0,0,0 -g2537,371:8947470,19639274 -g2537,371:11863822,19639274 -g2537,371:13981945,19639274 -k2537,372:16818672,19639274:1641350 -k2537,372:18460021,19639274:1641349 -) -(2537,373:6630773,20484512:11829248,485622,102891 -h2537,372:6630773,20484512:0,0,0 -g2537,372:9393770,20484512 -g2537,372:10962046,20484512 -g2537,372:12530322,20484512 -k2537,373:16092860,20484512:2367161 -k2537,373:18460021,20484512:2367161 -) -(2537,374:6630773,21329750:11829248,485622,102891 -h2537,373:6630773,21329750:0,0,0 -g2537,373:9315782,21329750 -k2537,374:14485590,21329750:3974431 -k2537,374:18460021,21329750:3974431 -) -(2537,375:6630773,22174987:11829248,485622,126483 -h2537,374:6630773,22174987:0,0,0 -g2537,374:10251637,22174987 -k2537,375:14754288,22174987:3705733 -k2537,375:18460021,22174987:3705733 -) -(2537,376:6630773,23020225:11829248,505283,126483 -h2537,375:6630773,23020225:0,0,0 -g2537,375:9445544,23020225 -g2537,375:12651565,23020225 -k2537,376:15954252,23020225:2505769 -k2537,376:18460021,23020225:2505769 -) -(2537,377:6630773,23865463:11829248,505283,102891 -h2537,376:6630773,23865463:0,0,0 -g2537,376:8990724,23865463 -k2537,377:14323061,23865463:4136960 -k2537,377:18460021,23865463:4136960 -) -(2537,378:6630773,24710701:11829248,505283,102891 -h2537,377:6630773,24710701:0,0,0 -g2537,377:8216088,24710701 -g2537,377:9382628,24710701 -g2537,377:12831787,24710701 -k2537,378:16804908,24710701:1655113 -k2537,378:18460021,24710701:1655113 -) -(2537,379:6630773,25555939:11829248,505283,102891 -h2537,378:6630773,25555939:0,0,0 -g2537,378:10079932,25555939 -g2537,378:12770840,25555939 -k2537,379:16974647,25555939:1485374 -k2537,379:18460021,25555939:1485374 -) -(2537,380:6630773,26401177:11829248,505283,102891 -h2537,379:6630773,26401177:0,0,0 -g2537,379:9186021,26401177 -g2537,379:13340348,26401177 -k2537,380:16497873,26401177:1962148 -k2537,380:18460021,26401177:1962148 -) -(2537,381:6630773,27246415:11829248,505283,7863 -h2537,380:6630773,27246415:0,0,0 -k2537,381:13953438,27246415:4506583 -k2537,381:18460021,27246415:4506583 -) -(2537,382:6630773,28091653:11829248,505283,102891 -h2537,381:6630773,28091653:0,0,0 -r2537,381:6630773,28091653:0,608174,102891 -g2537,381:7941493,28091653 -g2537,381:7941493,28091653 -g2537,381:10497397,28091653 -k2537,382:14877168,28091653:3582853 -k2537,382:18460021,28091653:3582853 -) -(2537,383:6630773,28936891:11829248,513147,134348 -h2537,382:6630773,28936891:0,0,0 -r2537,382:6630773,28936891:0,647495,134348 -g2537,382:7941493,28936891 -g2537,382:7941493,28936891 -g2537,382:10572763,28936891 -g2537,382:12633870,28936891 -k2537,383:15945405,28936891:2514617 -k2537,383:18460021,28936891:2514616 -) -(2537,384:6630773,29782129:11829248,485622,134348 -h2537,383:6630773,29782129:0,0,0 -r2537,383:6630773,29782129:0,619970,134348 -g2537,383:7941493,29782129 -g2537,383:7941493,29782129 -g2537,383:10544583,29782129 -g2537,383:11714400,29782129 -k2537,384:15485670,29782129:2974352 -k2537,384:18460021,29782129:2974351 -) -(2537,385:6630773,30627367:11829248,505283,102891 -h2537,384:6630773,30627367:0,0,0 -r2537,384:6630773,30627367:0,608174,102891 -g2537,384:7941493,30627367 -g2537,384:7941493,30627367 -g2537,384:10197242,30627367 -k2537,385:14727091,30627367:3732931 -k2537,385:18460021,30627367:3732930 -) -(2537,386:6630773,31472604:11829248,505283,102891 -h2537,385:6630773,31472604:0,0,0 -g2537,385:9646084,31472604 -g2537,385:11036758,31472604 -g2537,385:12744626,31472604 -g2537,385:16393670,31472604 -k2537,386:18387604,31472604:72418 -k2537,386:18460021,31472604:72417 -) -(2537,387:6630773,32317842:11829248,505283,102891 -h2537,386:6630773,32317842:0,0,0 -g2537,386:9450131,32317842 -g2537,386:11833675,32317842 -k2537,387:15545307,32317842:2914714 -k2537,387:18460021,32317842:2914714 -) -(2537,388:6630773,33163080:11829248,505283,134348 -h2537,387:6630773,33163080:0,0,0 -g2537,387:9623802,33163080 -g2537,387:12053221,33163080 -g2537,387:13443895,33163080 -g2537,387:15826128,33163080 -k2537,387:18460021,33163080:449578 -) -(2537,388:9252213,34004568:9207808,485622,0 -k2537,388:14254576,34004568:4205445 -k2537,388:18460021,34004568:4205445 -) -(2537,392:6630773,35567664:11829248,505283,134348 -h2537,391:6630773,35567664:0,0,0 -g2537,391:8789528,35567664 -g2537,391:11230744,35567664 -k2537,392:15443071,35567664:3016950 -k2537,392:18460021,35567664:3016950 -) -(2537,393:6630773,36412902:11829248,505283,134348 -h2537,392:6630773,36412902:0,0,0 -r2537,392:6630773,36412902:0,639631,134348 -g2537,392:7941493,36412902 -g2537,392:7941493,36412902 -g2537,392:8826884,36412902 -g2537,392:12000792,36412902 -g2537,392:14569803,36412902 -k2537,393:17112601,36412902:1347421 -k2537,393:18460021,36412902:1347420 -) -(2537,394:6630773,37258140:11829248,505283,134348 -h2537,393:6630773,37258140:0,0,0 -g2537,393:11673768,37258140 -g2537,393:16398913,37258140 -k2537,394:18027156,37258140:432866 -k2537,394:18460021,37258140:432865 -) -(2537,395:6630773,38103378:11829248,505283,134348 -h2537,394:6630773,38103378:0,0,0 -g2537,394:9293500,38103378 -k2537,395:14474449,38103378:3985572 -k2537,395:18460021,38103378:3985572 -) -(2537,396:6630773,38948616:11829248,505283,102891 -h2537,395:6630773,38948616:0,0,0 -r2537,395:6630773,38948616:0,608174,102891 -g2537,395:7941493,38948616 -g2537,395:7941493,38948616 -g2537,395:10096972,38948616 -k2537,396:14676956,38948616:3783066 -k2537,396:18460021,38948616:3783065 -) -(2537,397:6630773,39793854:11829248,485622,102891 -h2537,396:6630773,39793854:0,0,0 -g2537,396:9159807,39793854 -k2537,397:14407603,39793854:4052419 -k2537,397:18460021,39793854:4052418 -) -(2537,398:6630773,40639091:11829248,473825,134348 -h2537,397:6630773,40639091:0,0,0 -g2537,397:9883980,40639091 -k2537,398:15460111,40639091:2999911 -k2537,398:18460021,40639091:2999910 -) -(2537,399:6630773,41484329:11829248,485622,102891 -h2537,398:6630773,41484329:0,0,0 -r2537,398:6630773,41484329:0,588513,102891 -g2537,398:7941493,41484329 -g2537,398:7941493,41484329 -g2537,398:10067480,41484329 -g2537,398:10838838,41484329 -g2537,398:11610196,41484329 -g2537,398:12381554,41484329 -g2537,398:13551371,41484329 -k2537,399:16404155,41484329:2055866 -k2537,399:18460021,41484329:2055866 -) -(2537,400:6630773,42329567:11829248,505283,102891 -h2537,399:6630773,42329567:0,0,0 -r2537,399:6630773,42329567:0,608174,102891 -g2537,399:7941493,42329567 -g2537,399:7941493,42329567 -g2537,399:12254416,42329567 -g2537,399:13025774,42329567 -g2537,399:14523271,42329567 -g2537,399:15693088,42329567 -g2537,399:16862905,42329567 -k2537,399:18460021,42329567:228069 -) -(2537,400:9252213,43171055:9207808,485622,11795 -k2537,400:14453806,43171055:4006216 -k2537,400:18460021,43171055:4006215 -) -(2537,401:6630773,44016293:11829248,485622,102891 -h2537,400:6630773,44016293:0,0,0 -r2537,400:6630773,44016293:0,588513,102891 -g2537,400:7941493,44016293 -g2537,400:7941493,44016293 -g2537,400:9011041,44016293 -g2537,400:9794195,44016293 -g2537,400:10565553,44016293 -g2537,400:11336911,44016293 -g2537,400:12108269,44016293 -k2537,401:15682604,44016293:2777417 -k2537,401:18460021,44016293:2777417 -) -(2537,402:6630773,44861531:11829248,485622,102891 -h2537,401:6630773,44861531:0,0,0 -r2537,401:6630773,44861531:0,588513,102891 -g2537,401:7941493,44861531 -g2537,401:7941493,44861531 -g2537,401:9766014,44861531 -g2537,401:10537372,44861531 -g2537,401:11308730,44861531 -g2537,401:12080088,44861531 -g2537,401:13249905,44861531 -k2537,402:16452652,44861531:2007370 -k2537,402:18460021,44861531:2007369 -) -(2537,403:6630773,45706769:11829248,426639,126483 -h2537,402:6630773,45706769:0,0,0 -k2537,403:14083855,45706769:4376167 -k2537,403:18460021,45706769:4376166 -) -] -k2537,454:19606901,45706769:1146880 -r2537,454:19606901,45706769:0,40234515,126483 -k2537,454:20753781,45706769:1146880 -[2537,454:20753781,45706769:11829248,40108032,126483 -(2537,404:20753781,6254097:11829248,485622,126483 -h2537,403:20753781,6254097:0,0,0 -r2537,403:20753781,6254097:0,612105,126483 -g2537,403:22064501,6254097 -g2537,403:22064501,6254097 -g2537,403:26191303,6254097 -k2537,404:30347924,6254097:2235105 -k2537,404:32583029,6254097:2235105 -) -(2537,405:20753781,7097153:11829248,513147,134348 -h2537,404:20753781,7097153:0,0,0 -r2537,404:20753781,7097153:0,647495,134348 -g2537,404:22064501,7097153 -g2537,404:22064501,7097153 -g2537,404:24867475,7097153 -g2537,404:26523569,7097153 -g2537,404:28091845,7097153 -k2537,405:30935126,7097153:1647904 -k2537,405:32583029,7097153:1647903 -) -(2537,406:20753781,7940209:11829248,485622,102891 -h2537,405:20753781,7940209:0,0,0 -r2537,405:20753781,7940209:0,588513,102891 -g2537,405:22064501,7940209 -g2537,405:22064501,7940209 -g2537,405:23371944,7940209 -k2537,406:28938245,7940209:3644785 -k2537,406:32583029,7940209:3644784 -) -(2537,407:20753781,8783266:11829248,485622,102891 -h2537,406:20753781,8783266:0,0,0 -g2537,406:21823329,8783266 -g2537,406:22606483,8783266 -g2537,406:23377841,8783266 -g2537,406:24149199,8783266 -g2537,406:24920557,8783266 -g2537,406:26090374,8783266 -k2537,407:29934390,8783266:2648639 -k2537,407:32583029,8783266:2648639 -) -(2537,408:20753781,9626322:11829248,513147,102891 -h2537,407:20753781,9626322:0,0,0 -g2537,407:23864119,9626322 -g2537,407:25030659,9626322 -g2537,407:28506033,9626322 -k2537,408:31913251,9626322:669779 -k2537,408:32583029,9626322:669778 -) -(2537,412:20753781,11150874:11829248,505283,134348 -h2537,411:20753781,11150874:0,0,0 -k2537,412:28123632,11150874:4459397 -k2537,412:32583029,11150874:4459397 -) -(2537,413:20753781,11993930:11829248,505283,126483 -h2537,412:20753781,11993930:0,0,0 -r2537,412:20753781,11993930:0,631766,126483 -g2537,412:22064501,11993930 -g2537,412:22064501,11993930 -g2537,412:25373413,11993930 -k2537,413:29575910,11993930:3007120 -k2537,413:32583029,11993930:3007119 -) -(2537,414:20753781,12836987:11829248,505283,134348 -h2537,413:20753781,12836987:0,0,0 -r2537,413:20753781,12836987:0,639631,134348 -g2537,413:22064501,12836987 -g2537,413:22064501,12836987 -g2537,413:25990762,12836987 -k2537,414:29685355,12836987:2897675 -k2537,414:32583029,12836987:2897674 -) -(2537,415:20753781,13680043:11829248,505283,102891 -h2537,414:20753781,13680043:0,0,0 -r2537,414:20753781,13680043:0,608174,102891 -g2537,414:22064501,13680043 -g2537,414:22064501,13680043 -g2537,414:26178195,13680043 -k2537,415:29779071,13680043:2803958 -k2537,415:32583029,13680043:2803958 -) -(2537,416:20753781,14523099:11829248,505283,102891 -h2537,415:20753781,14523099:0,0,0 -r2537,415:20753781,14523099:0,608174,102891 -g2537,415:22064501,14523099 -g2537,415:22064501,14523099 -g2537,415:26014355,14523099 -g2537,415:27582631,14523099 -k2537,416:31442047,14523099:1140983 -k2537,416:32583029,14523099:1140982 -) -(2537,417:20753781,15366155:11829248,505283,126483 -h2537,416:20753781,15366155:0,0,0 -r2537,416:20753781,15366155:0,631766,126483 -g2537,416:22064501,15366155 -g2537,416:22064501,15366155 -g2537,416:24889757,15366155 -g2537,416:26458033,15366155 -g2537,416:28026309,15366155 -k2537,417:30902358,15366155:1680672 -k2537,417:32583029,15366155:1680671 -) -(2537,418:20753781,16209211:11829248,505283,102891 -h2537,417:20753781,16209211:0,0,0 -r2537,417:20753781,16209211:0,608174,102891 -g2537,417:22064501,16209211 -g2537,417:22064501,16209211 -g2537,417:25541840,16209211 -k2537,418:29660123,16209211:2922906 -k2537,418:32583029,16209211:2922906 -) -(2537,420:20753781,17052268:11829248,505283,126483 -h2537,418:20753781,17052268:0,0,0 -r2537,418:20753781,17052268:0,631766,126483 -g2537,418:22064501,17052268 -g2537,418:22064501,17052268 -g2537,418:24476880,17052268 -g2537,418:26045156,17052268 -g2537,418:27613432,17052268 -g2537,418:29181708,17052268 -k2537,418:32583029,17052268:509217 -) -(2537,420:23375221,17893756:9207808,485622,102891 -g2537,418:24943497,17893756 -g2537,418:26511773,17893756 -g2537,418:28080049,17893756 -g2537,419:29648325,17893756 -k2537,420:31713366,17893756:869664 -k2537,420:32583029,17893756:869663 -) -(2537,421:20753781,18736812:11829248,505283,126483 -h2537,420:20753781,18736812:0,0,0 -r2537,420:20753781,18736812:0,631766,126483 -g2537,420:22064501,18736812 -g2537,420:22064501,18736812 -g2537,420:24721985,18736812 -k2537,421:29250196,18736812:3332834 -k2537,421:32583029,18736812:3332833 -) -(2537,422:20753781,19579868:11829248,513147,102891 -h2537,421:20753781,19579868:0,0,0 -r2537,421:20753781,19579868:0,616038,102891 -g2537,421:22064501,19579868 -g2537,421:22064501,19579868 -g2537,421:25787600,19579868 -k2537,422:29783003,19579868:2800026 -k2537,422:32583029,19579868:2800026 -) -(2537,423:20753781,20422924:11829248,513147,134348 -h2537,422:20753781,20422924:0,0,0 -r2537,422:20753781,20422924:0,647495,134348 -g2537,422:22064501,20422924 -g2537,422:22064501,20422924 -g2537,422:25131585,20422924 -g2537,422:26301402,20422924 -g2537,422:27869678,20422924 -g2537,422:29437954,20422924 -g2537,422:31006230,20422924 -k2537,423:32392318,20422924:190711 -k2537,423:32583029,20422924:190711 -) -(2537,424:20753781,21265980:11829248,505283,134348 -h2537,423:20753781,21265980:0,0,0 -r2537,423:20753781,21265980:0,639631,134348 -g2537,423:22064501,21265980 -g2537,423:22064501,21265980 -g2537,423:26891227,21265980 -k2537,424:30334817,21265980:2248213 -k2537,424:32583029,21265980:2248212 -) -(2537,425:20753781,22109037:11829248,513147,134348 -h2537,424:20753781,22109037:0,0,0 -r2537,424:20753781,22109037:0,647495,134348 -g2537,424:22064501,22109037 -g2537,424:22064501,22109037 -g2537,424:25279696,22109037 -k2537,425:29529051,22109037:3053978 -k2537,425:32583029,22109037:3053978 -) -(2537,426:20753781,22952093:11829248,505283,134348 -h2537,425:20753781,22952093:0,0,0 -r2537,425:20753781,22952093:0,639631,134348 -g2537,425:22064501,22952093 -g2537,425:22064501,22952093 -g2537,425:26046468,22952093 -k2537,426:29912437,22952093:2670592 -k2537,426:32583029,22952093:2670592 -) -(2537,429:20753781,23795149:11829248,505283,134348 -h2537,426:20753781,23795149:0,0,0 -r2537,426:20753781,23795149:0,639631,134348 -g2537,426:22064501,23795149 -g2537,426:22064501,23795149 -g2537,426:25332781,23795149 -g2537,426:26502598,23795149 -g2537,426:29593931,23795149 -g2537,426:31162207,23795149 -k2537,426:32583029,23795149:51775 -) -(2537,429:23375221,24636637:9207808,485622,102891 -g2537,426:24943497,24636637 -g2537,427:26511773,24636637 -g2537,427:28080049,24636637 -g2537,427:29648325,24636637 -k2537,427:32583029,24636637:42600 -) -(2537,429:23375221,25478125:9207808,485622,102891 -k2537,427:24942973,25478125:198705 -k2537,427:26510725,25478125:198705 -k2537,427:28078478,25478125:198706 -k2537,427:29646230,25478125:198705 -k2537,427:31213982,25478125:198705 -k2537,427:32583029,25478125:0 -) -(2537,429:23375221,26319613:9207808,485622,102891 -k2537,428:24942973,26319613:198705 -k2537,428:26510725,26319613:198705 -k2537,428:28078478,26319613:198706 -k2537,428:29646230,26319613:198705 -k2537,428:31213982,26319613:198705 -k2537,428:32583029,26319613:0 -) -(2537,429:23375221,27161101:9207808,485622,102891 -g2537,428:24943497,27161101 -k2537,429:29360952,27161101:3222078 -k2537,429:32583029,27161101:3222077 -) -(2537,430:20753781,28004157:11829248,505283,134348 -h2537,429:20753781,28004157:0,0,0 -r2537,429:20753781,28004157:0,639631,134348 -g2537,429:22064501,28004157 -g2537,429:22064501,28004157 -g2537,429:25551671,28004157 -g2537,429:27119947,28004157 -g2537,429:28688223,28004157 -g2537,429:30256499,28004157 -k2537,430:32017453,28004157:565577 -k2537,430:32583029,28004157:565576 -) -(2537,431:20753781,28847213:11829248,505283,134348 -h2537,430:20753781,28847213:0,0,0 -r2537,430:20753781,28847213:0,639631,134348 -g2537,430:22064501,28847213 -g2537,430:22064501,28847213 -g2537,430:25268555,28847213 -k2537,431:29523481,28847213:3059549 -k2537,431:32583029,28847213:3059548 -) -(2537,432:20753781,29690270:11829248,505283,134348 -h2537,431:20753781,29690270:0,0,0 -r2537,431:20753781,29690270:0,639631,134348 -g2537,431:22064501,29690270 -g2537,431:22064501,29690270 -g2537,431:24952672,29690270 -k2537,432:29365539,29690270:3217490 -k2537,432:32583029,29690270:3217490 -) -(2537,433:20753781,30533326:11829248,505283,134348 -h2537,432:20753781,30533326:0,0,0 -r2537,432:20753781,30533326:0,639631,134348 -g2537,432:22064501,30533326 -g2537,432:22064501,30533326 -g2537,432:24925147,30533326 -k2537,433:29351777,30533326:3231253 -k2537,433:32583029,30533326:3231252 -) -(2537,434:20753781,31376382:11829248,505283,134348 -h2537,433:20753781,31376382:0,0,0 -r2537,433:20753781,31376382:0,639631,134348 -g2537,433:22064501,31376382 -g2537,433:22064501,31376382 -g2537,433:24130195,31376382 -g2537,433:25698471,31376382 -g2537,433:27266747,31376382 -k2537,434:30522577,31376382:2060453 -k2537,434:32583029,31376382:2060452 -) -(2537,435:20753781,32219438:11829248,505283,134348 -h2537,434:20753781,32219438:0,0,0 -r2537,434:20753781,32219438:0,639631,134348 -g2537,434:22064501,32219438 -g2537,434:22064501,32219438 -g2537,434:25762041,32219438 -k2537,435:29770224,32219438:2812806 -k2537,435:32583029,32219438:2812805 -) -(2537,436:20753781,33062494:11829248,505283,102891 -h2537,435:20753781,33062494:0,0,0 -r2537,435:20753781,33062494:0,608174,102891 -g2537,435:22064501,33062494 -g2537,435:22064501,33062494 -g2537,435:24730505,33062494 -g2537,435:26298781,33062494 -g2537,435:27867057,33062494 -k2537,436:30822732,33062494:1760298 -k2537,436:32583029,33062494:1760297 -) -(2537,437:20753781,33905550:11829248,505283,102891 -h2537,436:20753781,33905550:0,0,0 -r2537,436:20753781,33905550:0,608174,102891 -g2537,436:22064501,33905550 -g2537,436:22064501,33905550 -g2537,436:24803905,33905550 -k2537,437:29291156,33905550:3291874 -k2537,437:32583029,33905550:3291873 -) -(2537,438:20753781,34748607:11829248,505283,134348 -h2537,437:20753781,34748607:0,0,0 -r2537,437:20753781,34748607:0,639631,134348 -g2537,437:22064501,34748607 -g2537,437:22064501,34748607 -g2537,437:25182048,34748607 -k2537,438:29480227,34748607:3102802 -k2537,438:32583029,34748607:3102802 -) -(2537,439:20753781,35591663:11829248,505283,102891 -h2537,438:20753781,35591663:0,0,0 -r2537,438:20753781,35591663:0,608174,102891 -g2537,438:22064501,35591663 -g2537,438:22064501,35591663 -g2537,438:24343187,35591663 -g2537,438:25114545,35591663 -k2537,439:29247246,35591663:3335783 -k2537,439:32583029,35591663:3335783 -) -(2537,440:20753781,36434719:11829248,505283,102891 -h2537,439:20753781,36434719:0,0,0 -r2537,439:20753781,36434719:0,608174,102891 -g2537,439:22064501,36434719 -g2537,439:22064501,36434719 -g2537,439:24782934,36434719 -g2537,439:26351210,36434719 -g2537,439:27919486,36434719 -k2537,440:30848946,36434719:1734083 -k2537,440:32583029,36434719:1734083 -) -(2537,441:20753781,37277775:11829248,505283,102891 -h2537,440:20753781,37277775:0,0,0 -r2537,440:20753781,37277775:0,608174,102891 -g2537,440:22064501,37277775 -g2537,440:22064501,37277775 -g2537,440:26310578,37277775 -g2537,440:27480395,37277775 -g2537,440:29048671,37277775 -g2537,440:30616947,37277775 -k2537,440:32583029,37277775:597035 -) -(2537,441:23375221,38119263:9207808,485622,11795 -k2537,441:28576814,38119263:4006216 -k2537,441:32583029,38119263:4006215 -) -(2537,442:20753781,38962319:11829248,505283,102891 -h2537,441:20753781,38962319:0,0,0 -r2537,441:20753781,38962319:0,608174,102891 -g2537,441:22064501,38962319 -g2537,441:22064501,38962319 -g2537,441:24432971,38962319 -k2537,442:29105689,38962319:3477341 -k2537,442:32583029,38962319:3477340 -) -(2537,443:20753781,39805376:11829248,505283,102891 -h2537,442:20753781,39805376:0,0,0 -r2537,442:20753781,39805376:0,608174,102891 -g2537,442:22064501,39805376 -g2537,442:22064501,39805376 -g2537,442:25702404,39805376 -g2537,442:27270680,39805376 -k2537,443:30524543,39805376:2058486 -k2537,443:32583029,39805376:2058486 -) -(2537,444:20753781,40648432:11829248,505283,134348 -h2537,443:20753781,40648432:0,0,0 -r2537,443:20753781,40648432:0,639631,134348 -g2537,443:22064501,40648432 -g2537,443:22064501,40648432 -g2537,443:25472372,40648432 -k2537,444:29625389,40648432:2957640 -k2537,444:32583029,40648432:2957640 -) -(2537,445:20753781,41491488:11829248,505283,134348 -h2537,444:20753781,41491488:0,0,0 -r2537,444:20753781,41491488:0,639631,134348 -g2537,444:22064501,41491488 -g2537,444:22064501,41491488 -g2537,444:25449435,41491488 -g2537,444:27017711,41491488 -g2537,444:28585987,41491488 -k2537,445:31182197,41491488:1400833 -k2537,445:32583029,41491488:1400832 -) -(2537,446:20753781,42334544:11829248,505283,102891 -h2537,445:20753781,42334544:0,0,0 -r2537,445:20753781,42334544:0,608174,102891 -g2537,445:22064501,42334544 -g2537,445:22064501,42334544 -g2537,445:26468519,42334544 -k2537,446:29924233,42334544:2658796 -k2537,446:32583029,42334544:2658796 -) -(2537,447:20753781,43177600:11829248,505283,102891 -h2537,446:20753781,43177600:0,0,0 -r2537,446:20753781,43177600:0,608174,102891 -g2537,446:22064501,43177600 -g2537,446:22064501,43177600 -g2537,446:28209811,43177600 -k2537,447:30994109,43177600:1588921 -k2537,447:32583029,43177600:1588920 -) -(2537,448:20753781,44020657:11829248,513147,102891 -h2537,447:20753781,44020657:0,0,0 -r2537,447:20753781,44020657:0,616038,102891 -g2537,447:22064501,44020657 -g2537,447:22064501,44020657 -g2537,447:24661692,44020657 -g2537,447:26229968,44020657 -g2537,447:27798244,44020657 -k2537,448:30788325,44020657:1794704 -k2537,448:32583029,44020657:1794704 -) -(2537,449:20753781,44863713:11829248,505283,102891 -h2537,448:20753781,44863713:0,0,0 -r2537,448:20753781,44863713:0,608174,102891 -g2537,448:22064501,44863713 -g2537,448:22064501,44863713 -g2537,448:24424452,44863713 -k2537,449:29101429,44863713:3481600 -k2537,449:32583029,44863713:3481600 -) -(2537,450:20753781,45706769:11829248,505283,126483 -h2537,449:20753781,45706769:0,0,0 -r2537,449:20753781,45706769:0,631766,126483 -g2537,449:22064501,45706769 -g2537,449:22064501,45706769 -g2537,449:26170986,45706769 -k2537,450:29974696,45706769:2608333 -k2537,450:32583029,45706769:2608333 -) -] -(2537,454:32583029,45706769:0,355205,126483 -h2537,454:32583029,45706769:420741,355205,126483 -k2537,454:32583029,45706769:-420741 -) -) -] -(2537,454:32583029,45706769:0,0,0 -g2537,454:32583029,45706769 -) -) -] -(2537,454:6630773,47279633:25952256,0,0 -h2537,454:6630773,47279633:25952256,0,0 -) -] -h2537,454:4262630,4025873:0,0,0 -] -!28619 +] +[2535,85:6630773,45706769:25952256,40108032,0 +(2535,85:6630773,45706769:25952256,40108032,0 +(2535,85:6630773,45706769:0,0,0 +g2535,85:6630773,45706769 +) +[2535,85:6630773,45706769:25952256,40108032,0 +[2535,1:6630773,12106481:25952256,6507744,0 +(2535,1:6630773,7073297:25952256,32768,229376 +(2535,1:6630773,7073297:0,32768,229376 +(2535,1:6630773,7073297:5505024,32768,229376 +r2535,1:12135797,7073297:5505024,262144,229376 +) +k2535,1:6630773,7073297:-5505024 +) +) +(2535,1:6630773,8803457:25952256,923664,241827 +h2535,1:6630773,8803457:0,0,0 +g2535,1:10235777,8803457 +g2535,1:11799990,8803457 +g2535,1:12964302,8803457 +g2535,1:17208675,8803457 +g2535,1:19014716,8803457 +k2535,1:28388200,8803457:4194829 +k2535,1:32583029,8803457:4194829 +) +(2535,1:6630773,9419505:25952256,32768,0 +(2535,1:6630773,9419505:5505024,32768,0 +r2535,1:12135797,9419505:5505024,32768,0 +) +k2535,1:22359413,9419505:10223616 +k2535,1:32583029,9419505:10223616 +) +] +(2535,85:6630773,45706769:25952256,32627728,134348 +[2535,85:6630773,45706769:11829248,32627728,102891 +(2535,4:6630773,13734401:11829248,505283,7863 +h2535,3:6630773,13734401:0,0,0 +g2535,3:9062814,13734401 +g2535,3:10453488,13734401 +k2535,4:15513195,13734401:2946826 +k2535,4:18460021,13734401:2946826 +) +(2535,5:6630773,14599148:11829248,477757,126483 +h2535,4:6630773,14599148:0,0,0 +r2535,4:6630773,14599148:0,604240,126483 +g2535,4:7941493,14599148 +g2535,4:7941493,14599148 +g2535,4:10290302,14599148 +k2535,5:14773621,14599148:3686401 +k2535,5:18460021,14599148:3686400 +) +(2535,6:6630773,15463894:11829248,505283,102891 +h2535,5:6630773,15463894:0,0,0 +r2535,5:6630773,15463894:0,608174,102891 +g2535,5:7941493,15463894 +g2535,5:7941493,15463894 +g2535,5:11871031,15463894 +g2535,5:13040848,15463894 +k2535,6:16148894,15463894:2311128 +k2535,6:18460021,15463894:2311127 +) +(2535,7:6630773,16328641:11829248,513147,102891 +h2535,6:6630773,16328641:0,0,0 +r2535,6:6630773,16328641:0,616038,102891 +g2535,6:7941493,16328641 +g2535,6:7941493,16328641 +g2535,6:12266213,16328641 +g2535,6:13436030,16328641 +g2535,6:14605847,16328641 +g2535,6:16174123,16328641 +k2535,7:17914761,16328641:545261 +k2535,7:18460021,16328641:545260 +) +(2535,8:6630773,17193388:11829248,505283,102891 +h2535,7:6630773,17193388:0,0,0 +r2535,7:6630773,17193388:0,608174,102891 +g2535,7:7941493,17193388 +g2535,7:7941493,17193388 +g2535,7:10685485,17193388 +g2535,7:11855302,17193388 +g2535,7:13025119,17193388 +g2535,7:14194936,17193388 +k2535,8:16725938,17193388:1734084 +k2535,8:18460021,17193388:1734083 +) +(2535,9:6630773,18058134:11829248,513147,102891 +h2535,8:6630773,18058134:0,0,0 +r2535,8:6630773,18058134:0,616038,102891 +g2535,8:7941493,18058134 +g2535,8:7941493,18058134 +g2535,8:10685485,18058134 +k2535,9:14971212,18058134:3488809 +k2535,9:18460021,18058134:3488809 +) +(2535,10:6630773,18922881:11829248,505283,134348 +h2535,9:6630773,18922881:0,0,0 +r2535,9:6630773,18922881:0,639631,134348 +g2535,9:7941493,18922881 +g2535,9:7941493,18922881 +g2535,9:11080667,18922881 +g2535,9:12250484,18922881 +g2535,9:13420301,18922881 +g2535,9:14590118,18922881 +k2535,10:16923529,18922881:1536493 +k2535,10:18460021,18922881:1536492 +) +(2535,11:6630773,19787628:11829248,505283,102891 +h2535,10:6630773,19787628:0,0,0 +r2535,10:6630773,19787628:0,608174,102891 +g2535,10:7941493,19787628 +g2535,10:7941493,19787628 +g2535,10:9895120,19787628 +g2535,10:11064937,19787628 +g2535,10:12234754,19787628 +k2535,11:15945076,19787628:2514945 +k2535,11:18460021,19787628:2514945 +) +(2535,12:6630773,20652374:11829248,505283,134348 +h2535,11:6630773,20652374:0,0,0 +r2535,11:6630773,20652374:0,639631,134348 +g2535,11:7941493,20652374 +g2535,11:7941493,20652374 +g2535,11:11080667,20652374 +g2535,11:12250484,20652374 +g2535,11:13420301,20652374 +g2535,11:14590118,20652374 +k2535,12:16923529,20652374:1536493 +k2535,12:18460021,20652374:1536492 +) +(2535,13:6630773,21517121:11829248,505283,102891 +h2535,12:6630773,21517121:0,0,0 +r2535,12:6630773,21517121:0,608174,102891 +g2535,12:7941493,21517121 +g2535,12:7941493,21517121 +g2535,12:10685485,21517121 +g2535,12:11855302,21517121 +g2535,12:13025119,21517121 +k2535,13:16340259,21517121:2119763 +k2535,13:18460021,21517121:2119762 +) +(2535,14:6630773,22381868:11829248,505283,102891 +h2535,13:6630773,22381868:0,0,0 +r2535,13:6630773,22381868:0,608174,102891 +g2535,13:7941493,22381868 +g2535,13:7941493,22381868 +g2535,13:11080667,22381868 +g2535,13:12250484,22381868 +g2535,13:13420301,22381868 +g2535,13:14590118,22381868 +g2535,13:15759935,22381868 +k2535,14:17508437,22381868:951584 +k2535,14:18460021,22381868:951584 +) +(2535,15:6630773,23246614:11829248,505283,102891 +h2535,14:6630773,23246614:0,0,0 +r2535,14:6630773,23246614:0,608174,102891 +g2535,14:7941493,23246614 +g2535,14:7941493,23246614 +g2535,14:9499938,23246614 +k2535,15:14577668,23246614:3882353 +k2535,15:18460021,23246614:3882353 +) +(2535,16:6630773,24111361:11829248,513147,102891 +h2535,15:6630773,24111361:0,0,0 +r2535,15:6630773,24111361:0,616038,102891 +g2535,15:7941493,24111361 +g2535,15:7941493,24111361 +g2535,15:10685485,24111361 +k2535,16:15170442,24111361:3289580 +k2535,16:18460021,24111361:3289579 +) +(2535,17:6630773,24976108:11829248,505283,102891 +h2535,16:6630773,24976108:0,0,0 +r2535,16:6630773,24976108:0,608174,102891 +g2535,16:7941493,24976108 +g2535,16:7941493,24976108 +g2535,16:10685485,24976108 +g2535,16:12253761,24976108 +g2535,16:13822037,24976108 +g2535,16:15390313,24976108 +g2535,16:16958589,24976108 +k2535,16:18460021,24976108:132385 +) +(2535,17:9252213,25817596:9207808,485622,11795 +k2535,17:14453806,25817596:4006216 +k2535,17:18460021,25817596:4006215 +) +(2535,18:6630773,26682342:11829248,485622,102891 +h2535,17:6630773,26682342:0,0,0 +r2535,17:6630773,26682342:0,588513,102891 +g2535,17:7941493,26682342 +g2535,17:7941493,26682342 +g2535,17:10685485,26682342 +k2535,18:14971212,26682342:3488809 +k2535,18:18460021,26682342:3488809 +) +(2535,19:6630773,27547089:11829248,505283,126483 +h2535,18:6630773,27547089:0,0,0 +g2535,18:9587757,27547089 +g2535,18:10978431,27547089 +g2535,18:13371805,27547089 +k2535,19:16921236,27547089:1538786 +k2535,19:18460021,27547089:1538785 +) +(2535,20:6630773,28411836:11829248,513147,102891 +h2535,19:6630773,28411836:0,0,0 +r2535,19:6630773,28411836:0,616038,102891 +g2535,19:7941493,28411836 +g2535,19:7941493,28411836 +g2535,19:9895120,28411836 +g2535,19:11064937,28411836 +k2535,20:15160938,28411836:3299083 +k2535,20:18460021,28411836:3299083 +) +(2535,21:6630773,29276582:11829248,513147,126483 +h2535,20:6630773,29276582:0,0,0 +r2535,20:6630773,29276582:0,639630,126483 +g2535,20:7941493,29276582 +g2535,20:7941493,29276582 +g2535,20:15822852,29276582 +k2535,21:17539896,29276582:920126 +k2535,21:18460021,29276582:920125 +) +(2535,22:6630773,30141329:11829248,513147,102891 +h2535,21:6630773,30141329:0,0,0 +r2535,21:6630773,30141329:0,616038,102891 +g2535,21:7941493,30141329 +g2535,21:7941493,30141329 +g2535,21:15822852,30141329 +k2535,22:17539896,30141329:920126 +k2535,22:18460021,30141329:920125 +) +(2535,23:6630773,31006076:11829248,513147,102891 +h2535,22:6630773,31006076:0,0,0 +r2535,22:6630773,31006076:0,616038,102891 +g2535,22:7941493,31006076 +g2535,22:7941493,31006076 +g2535,22:15822852,31006076 +k2535,23:17539896,31006076:920126 +k2535,23:18460021,31006076:920125 +) +(2535,24:6630773,31870822:11829248,513147,134348 +h2535,23:6630773,31870822:0,0,0 +r2535,23:6630773,31870822:0,647495,134348 +g2535,23:7941493,31870822 +g2535,23:7941493,31870822 +g2535,23:17403580,31870822 +k2535,24:18330260,31870822:129762 +k2535,24:18460021,31870822:129761 +) +(2535,25:6630773,32735569:11829248,513147,134348 +h2535,24:6630773,32735569:0,0,0 +r2535,24:6630773,32735569:0,647495,134348 +g2535,24:7941493,32735569 +g2535,24:7941493,32735569 +g2535,24:16218034,32735569 +k2535,25:17737487,32735569:722535 +k2535,25:18460021,32735569:722534 +) +(2535,26:6630773,33600316:11829248,485622,102891 +h2535,25:6630773,33600316:0,0,0 +r2535,25:6630773,33600316:0,588513,102891 +g2535,25:7941493,33600316 +g2535,25:7941493,33600316 +g2535,25:10290302,33600316 +k2535,26:14773621,33600316:3686401 +k2535,26:18460021,33600316:3686400 +) +(2535,27:6630773,34465062:11829248,513147,102891 +h2535,26:6630773,34465062:0,0,0 +r2535,26:6630773,34465062:0,616038,102891 +g2535,26:7941493,34465062 +g2535,26:7941493,34465062 +g2535,26:9499938,34465062 +g2535,26:10669755,34465062 +k2535,27:14963347,34465062:3496674 +k2535,27:18460021,34465062:3496674 +) +(2535,28:6630773,35329809:11829248,485622,102891 +h2535,27:6630773,35329809:0,0,0 +r2535,27:6630773,35329809:0,588513,102891 +g2535,27:7941493,35329809 +g2535,27:7941493,35329809 +g2535,27:11080667,35329809 +k2535,28:15168803,35329809:3291218 +k2535,28:18460021,35329809:3291218 +) +(2535,29:6630773,36194556:11829248,505283,102891 +h2535,28:6630773,36194556:0,0,0 +r2535,28:6630773,36194556:0,608174,102891 +g2535,28:7941493,36194556 +g2535,28:7941493,36194556 +g2535,28:11080667,36194556 +k2535,29:15168803,36194556:3291218 +k2535,29:18460021,36194556:3291218 +) +(2535,30:6630773,37059302:11829248,505283,102891 +h2535,29:6630773,37059302:0,0,0 +r2535,29:6630773,37059302:0,608174,102891 +g2535,29:7941493,37059302 +g2535,29:7941493,37059302 +g2535,29:11871031,37059302 +k2535,30:15563985,37059302:2896036 +k2535,30:18460021,37059302:2896036 +) +(2535,31:6630773,37924049:11829248,505283,102891 +h2535,30:6630773,37924049:0,0,0 +r2535,30:6630773,37924049:0,608174,102891 +g2535,30:7941493,37924049 +g2535,30:7941493,37924049 +g2535,30:12266213,37924049 +k2535,31:15761576,37924049:2698445 +k2535,31:18460021,37924049:2698445 +) +(2535,32:6630773,38788796:11829248,485622,102891 +h2535,31:6630773,38788796:0,0,0 +r2535,31:6630773,38788796:0,588513,102891 +g2535,31:7941493,38788796 +g2535,31:7941493,38788796 +g2535,31:9104756,38788796 +g2535,31:10274573,38788796 +g2535,31:11444390,38788796 +k2535,32:15350665,38788796:3109357 +k2535,32:18460021,38788796:3109356 +) +(2535,33:6630773,39653542:11829248,505283,102891 +h2535,32:6630773,39653542:0,0,0 +r2535,32:6630773,39653542:0,608174,102891 +g2535,32:7941493,39653542 +g2535,32:7941493,39653542 +g2535,32:13451759,39653542 +k2535,33:16354349,39653542:2105672 +k2535,33:18460021,39653542:2105672 +) +(2535,34:6630773,40518289:11829248,505283,102891 +h2535,33:6630773,40518289:0,0,0 +r2535,33:6630773,40518289:0,608174,102891 +g2535,33:7941493,40518289 +g2535,33:7941493,40518289 +g2535,33:11475849,40518289 +k2535,34:15366394,40518289:3093627 +k2535,34:18460021,40518289:3093627 +) +(2535,35:6630773,41383036:11829248,485622,102891 +h2535,34:6630773,41383036:0,0,0 +r2535,34:6630773,41383036:0,588513,102891 +g2535,34:7941493,41383036 +g2535,34:7941493,41383036 +g2535,34:9499938,41383036 +k2535,35:14378439,41383036:4081583 +k2535,35:18460021,41383036:4081582 +) +(2535,36:6630773,42247782:11829248,505283,126483 +h2535,35:6630773,42247782:0,0,0 +r2535,35:6630773,42247782:0,631766,126483 +g2535,35:7941493,42247782 +g2535,35:7941493,42247782 +g2535,35:9104756,42247782 +k2535,36:14180848,42247782:4279174 +k2535,36:18460021,42247782:4279173 +) +(2535,37:6630773,43112529:11829248,485622,102891 +h2535,36:6630773,43112529:0,0,0 +r2535,36:6630773,43112529:0,588513,102891 +g2535,36:7941493,43112529 +g2535,36:7941493,43112529 +g2535,36:9895120,43112529 +k2535,37:14576030,43112529:3883992 +k2535,37:18460021,43112529:3883991 +) +(2535,38:6630773,43977276:11829248,513147,7863 +h2535,37:6630773,43977276:0,0,0 +g2535,37:9117864,43977276 +g2535,37:9976385,43977276 +k2535,38:15756006,43977276:2704016 +k2535,38:18460021,43977276:2704015 +) +(2535,39:6630773,44842022:11829248,505283,126483 +h2535,38:6630773,44842022:0,0,0 +r2535,38:6630773,44842022:0,631766,126483 +g2535,38:7941493,44842022 +g2535,38:7941493,44842022 +g2535,38:11080667,44842022 +g2535,38:12648943,44842022 +g2535,38:14217219,44842022 +k2535,39:17697837,44842022:762185 +k2535,39:18460021,44842022:762184 +) +(2535,40:6630773,45706769:11829248,505283,102891 +h2535,39:6630773,45706769:0,0,0 +r2535,39:6630773,45706769:0,608174,102891 +g2535,39:7941493,45706769 +g2535,39:7941493,45706769 +g2535,39:11080667,45706769 +k2535,40:16129561,45706769:2330461 +k2535,40:18460021,45706769:2330460 +) +] +k2535,85:19606901,45706769:1146880 +r2535,85:19606901,45706769:0,32762076,134348 +k2535,85:20753781,45706769:1146880 +[2535,85:20753781,45706769:11829248,32627728,134348 +(2535,41:20753781,13734401:11829248,513147,102891 +h2535,40:20753781,13734401:0,0,0 +r2535,40:20753781,13734401:0,616038,102891 +g2535,40:22064501,13734401 +g2535,40:22064501,13734401 +g2535,40:23622946,13734401 +g2535,40:25191222,13734401 +g2535,40:26759498,13734401 +k2535,41:30268952,13734401:2314077 +k2535,41:32583029,13734401:2314077 +) +(2535,42:20753781,14581356:11829248,513147,102891 +h2535,41:20753781,14581356:0,0,0 +r2535,41:20753781,14581356:0,616038,102891 +g2535,41:22064501,14581356 +g2535,41:22064501,14581356 +g2535,41:24018128,14581356 +g2535,41:25187945,14581356 +k2535,42:29283946,14581356:3299083 +k2535,42:32583029,14581356:3299083 +) +(2535,43:20753781,15428310:11829248,513147,102891 +h2535,42:20753781,15428310:0,0,0 +r2535,42:20753781,15428310:0,616038,102891 +g2535,42:22064501,15428310 +g2535,42:22064501,15428310 +g2535,42:25994039,15428310 +k2535,43:29686993,15428310:2896036 +k2535,43:32583029,15428310:2896036 +) +(2535,44:20753781,16275265:11829248,513147,102891 +h2535,43:20753781,16275265:0,0,0 +r2535,43:20753781,16275265:0,616038,102891 +g2535,43:22064501,16275265 +g2535,43:22064501,16275265 +g2535,43:25598857,16275265 +g2535,43:26768674,16275265 +k2535,44:30074311,16275265:2508719 +k2535,44:32583029,16275265:2508718 +) +(2535,45:20753781,17122219:11829248,505283,126483 +h2535,44:20753781,17122219:0,0,0 +r2535,44:20753781,17122219:0,631766,126483 +g2535,44:22064501,17122219 +g2535,44:22064501,17122219 +g2535,44:25598857,17122219 +g2535,44:26768674,17122219 +g2535,44:28336950,17122219 +k2535,45:31057678,17122219:1525351 +k2535,45:32583029,17122219:1525351 +) +(2535,46:20753781,17969174:11829248,505283,102891 +h2535,45:20753781,17969174:0,0,0 +r2535,45:20753781,17969174:0,608174,102891 +g2535,45:22064501,17969174 +g2535,45:22064501,17969174 +g2535,45:24808493,17969174 +k2535,46:29293450,17969174:3289580 +k2535,46:32583029,17969174:3289579 +) +(2535,47:20753781,18816128:11829248,485622,126483 +h2535,46:20753781,18816128:0,0,0 +r2535,46:20753781,18816128:0,612105,126483 +g2535,46:22064501,18816128 +g2535,46:22064501,18816128 +g2535,46:24808493,18816128 +g2535,46:26376769,18816128 +g2535,46:27945045,18816128 +k2535,47:30861726,18816128:1721304 +k2535,47:32583029,18816128:1721303 +) +(2535,48:20753781,19663083:11829248,505283,102891 +h2535,47:20753781,19663083:0,0,0 +r2535,47:20753781,19663083:0,608174,102891 +g2535,47:22064501,19663083 +g2535,47:22064501,19663083 +g2535,47:25598857,19663083 +k2535,48:29688632,19663083:2894398 +k2535,48:32583029,19663083:2894397 +) +(2535,49:20753781,20510038:11829248,505283,126483 +h2535,48:20753781,20510038:0,0,0 +r2535,48:20753781,20510038:0,631766,126483 +g2535,48:22064501,20510038 +g2535,48:22064501,20510038 +g2535,48:24808493,20510038 +k2535,49:29094220,20510038:3488809 +k2535,49:32583029,20510038:3488809 +) +(2535,50:20753781,21356992:11829248,505283,126483 +h2535,49:20753781,21356992:0,0,0 +r2535,49:20753781,21356992:0,631766,126483 +g2535,49:22064501,21356992 +g2535,49:22064501,21356992 +g2535,49:25598857,21356992 +g2535,49:26768674,21356992 +g2535,49:28336950,21356992 +k2535,50:31057678,21356992:1525351 +k2535,50:32583029,21356992:1525351 +) +(2535,51:20753781,22203947:11829248,505283,102891 +h2535,50:20753781,22203947:0,0,0 +r2535,50:20753781,22203947:0,608174,102891 +g2535,50:22064501,22203947 +g2535,50:22064501,22203947 +g2535,50:25598857,22203947 +g2535,50:26768674,22203947 +k2535,51:30074311,22203947:2508719 +k2535,51:32583029,22203947:2508718 +) +(2535,52:20753781,23050901:11829248,505283,126483 +h2535,51:20753781,23050901:0,0,0 +r2535,51:20753781,23050901:0,631766,126483 +g2535,51:22064501,23050901 +g2535,51:22064501,23050901 +g2535,51:25598857,23050901 +g2535,51:26768674,23050901 +k2535,52:31035068,23050901:1547961 +k2535,52:32583029,23050901:1547961 +) +(2535,53:20753781,23897856:11829248,505283,102891 +h2535,52:20753781,23897856:0,0,0 +r2535,52:20753781,23897856:0,608174,102891 +g2535,52:22064501,23897856 +g2535,52:22064501,23897856 +g2535,52:24413310,23897856 +g2535,52:25981586,23897856 +k2535,53:30641524,23897856:1941505 +k2535,53:32583029,23897856:1941505 +) +(2535,57:20753781,25491279:11829248,505283,134348 +h2535,56:20753781,25491279:0,0,0 +g2535,56:22342373,25491279 +k2535,57:28607615,25491279:3975414 +k2535,57:32583029,25491279:3975414 +) +(2535,58:20753781,26338233:11829248,485622,102891 +h2535,57:20753781,26338233:0,0,0 +r2535,57:20753781,26338233:0,588513,102891 +g2535,57:22064501,26338233 +g2535,57:22064501,26338233 +g2535,57:25203675,26338233 +k2535,58:29491041,26338233:3091989 +k2535,58:32583029,26338233:3091988 +) +(2535,59:20753781,27185188:11829248,485622,102891 +h2535,58:20753781,27185188:0,0,0 +r2535,58:20753781,27185188:0,588513,102891 +g2535,58:22064501,27185188 +g2535,58:22064501,27185188 +g2535,58:24018128,27185188 +g2535,58:25586404,27185188 +k2535,59:29682405,27185188:2900624 +k2535,59:32583029,27185188:2900624 +) +(2535,60:20753781,28032142:11829248,505283,102891 +h2535,59:20753781,28032142:0,0,0 +r2535,59:20753781,28032142:0,608174,102891 +g2535,59:22064501,28032142 +g2535,59:22064501,28032142 +g2535,59:25598857,28032142 +g2535,59:27167133,28032142 +k2535,60:30472770,28032142:2110260 +k2535,60:32583029,28032142:2110259 +) +(2535,61:20753781,28879097:11829248,485622,126483 +h2535,60:20753781,28879097:0,0,0 +r2535,60:20753781,28879097:0,612105,126483 +g2535,60:22064501,28879097 +g2535,60:22064501,28879097 +g2535,60:26784403,28879097 +k2535,61:30281405,28879097:2301625 +k2535,61:32583029,28879097:2301624 +) +(2535,62:20753781,29726052:11829248,485622,126483 +h2535,61:20753781,29726052:0,0,0 +r2535,61:20753781,29726052:0,612105,126483 +g2535,61:22064501,29726052 +g2535,61:22064501,29726052 +g2535,61:27179585,29726052 +k2535,62:30478996,29726052:2104034 +k2535,62:32583029,29726052:2104033 +) +(2535,63:20753781,30573006:11829248,505283,102891 +h2535,62:20753781,30573006:0,0,0 +r2535,62:20753781,30573006:0,608174,102891 +g2535,62:22064501,30573006 +g2535,62:22064501,30573006 +g2535,62:24018128,30573006 +g2535,62:25586404,30573006 +k2535,63:29682405,30573006:2900624 +k2535,63:32583029,30573006:2900624 +) +(2535,64:20753781,31419961:11829248,485622,102891 +h2535,63:20753781,31419961:0,0,0 +r2535,63:20753781,31419961:0,588513,102891 +g2535,63:22064501,31419961 +g2535,63:22064501,31419961 +g2535,63:24808493,31419961 +k2535,64:29293450,31419961:3289580 +k2535,64:32583029,31419961:3289579 +) +(2535,65:20753781,32266915:11829248,485622,102891 +h2535,64:20753781,32266915:0,0,0 +r2535,64:20753781,32266915:0,588513,102891 +g2535,64:22064501,32266915 +g2535,64:22064501,32266915 +g2535,64:24808493,32266915 +k2535,65:29293450,32266915:3289580 +k2535,65:32583029,32266915:3289579 +) +(2535,66:20753781,33113870:11829248,505283,126483 +h2535,65:20753781,33113870:0,0,0 +r2535,65:20753781,33113870:0,631766,126483 +g2535,65:22064501,33113870 +g2535,65:22064501,33113870 +g2535,65:23622946,33113870 +k2535,66:28700676,33113870:3882353 +k2535,66:32583029,33113870:3882353 +) +(2535,67:20753781,33960824:11829248,485622,134348 +h2535,66:20753781,33960824:0,0,0 +r2535,66:20753781,33960824:0,619970,134348 +g2535,66:22064501,33960824 +g2535,66:22064501,33960824 +g2535,66:24808493,33960824 +k2535,67:29293450,33960824:3289580 +k2535,67:32583029,33960824:3289579 +) +(2535,68:20753781,34807779:11829248,505283,126483 +h2535,67:20753781,34807779:0,0,0 +r2535,67:20753781,34807779:0,631766,126483 +g2535,67:22064501,34807779 +g2535,67:22064501,34807779 +g2535,67:25994039,34807779 +g2535,67:27562315,34807779 +k2535,68:30670361,34807779:1912669 +k2535,68:32583029,34807779:1912668 +) +(2535,72:20753781,36401202:11829248,513147,7863 +h2535,71:20753781,36401202:0,0,0 +g2535,71:23978807,36401202 +g2535,71:25369481,36401202 +k2535,72:30368568,36401202:2214462 +k2535,72:32583029,36401202:2214461 +) +(2535,73:20753781,37248157:11829248,505283,102891 +h2535,72:20753781,37248157:0,0,0 +r2535,72:20753781,37248157:0,608174,102891 +g2535,72:22064501,37248157 +g2535,72:22064501,37248157 +g2535,72:24413310,37248157 +g2535,72:25583127,37248157 +k2535,73:29481537,37248157:3101492 +k2535,73:32583029,37248157:3101492 +) +(2535,74:20753781,38095111:11829248,505283,102891 +h2535,73:20753781,38095111:0,0,0 +r2535,73:20753781,38095111:0,608174,102891 +g2535,73:22064501,38095111 +g2535,73:22064501,38095111 +g2535,73:24413310,38095111 +g2535,73:25981586,38095111 +k2535,74:29879996,38095111:2703033 +k2535,74:32583029,38095111:2703033 +) +(2535,75:20753781,38942066:11829248,505283,134348 +h2535,74:20753781,38942066:0,0,0 +r2535,74:20753781,38942066:0,639631,134348 +g2535,74:22064501,38942066 +g2535,74:22064501,38942066 +g2535,74:26784403,38942066 +k2535,75:30281405,38942066:2301625 +k2535,75:32583029,38942066:2301624 +) +(2535,76:20753781,39789020:11829248,505283,102891 +h2535,75:20753781,39789020:0,0,0 +r2535,75:20753781,39789020:0,608174,102891 +g2535,75:22064501,39789020 +g2535,75:22064501,39789020 +g2535,75:24413310,39789020 +k2535,76:29095858,39789020:3487171 +k2535,76:32583029,39789020:3487171 +) +(2535,77:20753781,40635975:11829248,505283,102891 +h2535,76:20753781,40635975:0,0,0 +r2535,76:20753781,40635975:0,608174,102891 +g2535,76:22064501,40635975 +g2535,76:22064501,40635975 +g2535,76:24413310,40635975 +k2535,77:28896629,40635975:3686401 +k2535,77:32583029,40635975:3686400 +) +(2535,78:20753781,41482929:11829248,505283,102891 +h2535,77:20753781,41482929:0,0,0 +r2535,77:20753781,41482929:0,608174,102891 +g2535,77:22064501,41482929 +g2535,77:22064501,41482929 +g2535,77:26389221,41482929 +g2535,77:27957497,41482929 +g2535,77:29525773,41482929 +k2535,78:31652090,41482929:930940 +k2535,78:32583029,41482929:930939 +) +(2535,79:20753781,42329884:11829248,505283,102891 +h2535,78:20753781,42329884:0,0,0 +r2535,78:20753781,42329884:0,608174,102891 +g2535,78:22064501,42329884 +g2535,78:22064501,42329884 +g2535,78:29945860,42329884 +k2535,78:32583029,42329884:1268122 +) +(2535,79:23375221,43171372:9207808,485622,11795 +k2535,79:28576814,43171372:4006216 +k2535,79:32583029,43171372:4006215 +) +(2535,80:20753781,44018326:11829248,505283,102891 +h2535,79:20753781,44018326:0,0,0 +r2535,79:20753781,44018326:0,608174,102891 +g2535,79:22064501,44018326 +g2535,79:22064501,44018326 +g2535,79:25203675,44018326 +g2535,79:26771951,44018326 +g2535,79:28340227,44018326 +g2535,79:29908503,44018326 +k2535,79:32583029,44018326:1305479 +) +(2535,80:23375221,44859814:9207808,485622,102891 +g2535,79:24943497,44859814 +k2535,80:29360952,44859814:3222078 +k2535,80:32583029,44859814:3222077 +) +(2535,81:20753781,45706769:11829248,505283,134348 +h2535,80:20753781,45706769:0,0,0 +r2535,80:20753781,45706769:0,639631,134348 +g2535,80:22064501,45706769 +g2535,80:22064501,45706769 +g2535,80:26784403,45706769 +k2535,81:30281405,45706769:2301625 +k2535,81:32583029,45706769:2301624 +) +] +(2535,85:32583029,45706769:0,355205,126483 +h2535,85:32583029,45706769:420741,355205,126483 +k2535,85:32583029,45706769:-420741 +) +) +] +(2535,85:32583029,45706769:0,0,0 +g2535,85:32583029,45706769 +) +) +] +(2535,85:6630773,47279633:25952256,485622,11795 +(2535,85:6630773,47279633:25952256,485622,11795 +k2535,85:19009213,47279633:12378440 +k2535,85:32583030,47279633:12378440 +) +) +] +h2535,85:4262630,4025873:0,0,0 +] +!25836 }344 !12 {345 -[2537,544:4262630,47279633:28320399,43253760,0 -(2537,544:4262630,4025873:0,0,0 -[2537,544:-473657,4025873:11829248,0,0 -(2537,544:-473657,-710414:11829248,0,0 -h2537,544:-473657,-710414:0,0,0 -(2537,544:-473657,-710414:0,0,0 -(2537,544:-473657,-710414:0,0,0 -g2537,544:-473657,-710414 -(2537,544:-473657,-710414:65781,0,65781 -g2537,544:-407876,-710414 -[2537,544:-407876,-644633:0,0,0 +[2535,179:4262630,47279633:28320399,43253760,0 +(2535,179:4262630,4025873:0,0,0 +[2535,179:-473657,4025873:11829248,0,0 +(2535,179:-473657,-710414:11829248,0,0 +h2535,179:-473657,-710414:0,0,0 +(2535,179:-473657,-710414:0,0,0 +(2535,179:-473657,-710414:0,0,0 +g2535,179:-473657,-710414 +(2535,179:-473657,-710414:65781,0,65781 +g2535,179:-407876,-710414 +[2535,179:-407876,-644633:0,0,0 ] ) -k2537,544:-473657,-710414:-65781 +k2535,179:-473657,-710414:-65781 ) ) -k2537,544:11355591,-710414:11829248 -g2537,544:11355591,-710414 +k2535,179:11355591,-710414:11829248 +g2535,179:11355591,-710414 ) ] ) -[2537,544:6630773,47279633:25952256,43253760,0 -[2537,544:6630773,4812305:25952256,786432,0 -(2537,544:6630773,4812305:25952256,505283,11795 -(2537,544:6630773,4812305:25952256,505283,11795 -g2537,544:3078558,4812305 -[2537,544:3078558,4812305:0,0,0 -(2537,544:3078558,2439708:0,1703936,0 -k2537,544:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,544:2537886,2439708:1179648,16384,0 +[2535,179:6630773,47279633:25952256,43253760,0 +[2535,179:6630773,4812305:25952256,786432,0 +(2535,179:6630773,4812305:25952256,513147,134348 +(2535,179:6630773,4812305:25952256,513147,134348 +g2535,179:3078558,4812305 +[2535,179:3078558,4812305:0,0,0 +(2535,179:3078558,2439708:0,1703936,0 +k2535,179:1358238,2439708:-1720320 +(2535,1:1358238,2439708:1720320,1703936,0 +(2535,1:1358238,2439708:1179648,16384,0 +r2535,179:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,544:3078558,1915420:16384,1179648,0 +g2535,1:3062174,2439708 +(2535,1:3062174,2439708:16384,1703936,0 +[2535,1:3062174,2439708:25952256,1703936,0 +(2535,1:3062174,1915420:25952256,1179648,0 +(2535,1:3062174,1915420:16384,1179648,0 +r2535,179:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2535,1:29014430,1915420:25935872 +g2535,1:29014430,1915420 ) ] ) ) ) ] -[2537,544:3078558,4812305:0,0,0 -(2537,544:3078558,2439708:0,1703936,0 -g2537,544:29030814,2439708 -g2537,544:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,544:36151628,1915420:16384,1179648,0 +[2535,179:3078558,4812305:0,0,0 +(2535,179:3078558,2439708:0,1703936,0 +g2535,179:29030814,2439708 +g2535,179:36135244,2439708 +(2535,1:36135244,2439708:1720320,1703936,0 +(2535,1:36135244,2439708:16384,1703936,0 +[2535,1:36135244,2439708:25952256,1703936,0 +(2535,1:36135244,1915420:25952256,1179648,0 +(2535,1:36135244,1915420:16384,1179648,0 +r2535,179:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2535,1:62087500,1915420:25935872 +g2535,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,544:37855564,2439708:1179648,16384,0 +g2535,1:36675916,2439708 +(2535,1:36675916,2439708:1179648,16384,0 +r2535,179:37855564,2439708:1179648,16384,0 ) ) -k2537,544:3078556,2439708:-34777008 +k2535,179:3078556,2439708:-34777008 ) ] -[2537,544:3078558,4812305:0,0,0 -(2537,544:3078558,49800853:0,16384,2228224 -k2537,544:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,544:2537886,49800853:1179648,16384,0 +[2535,179:3078558,4812305:0,0,0 +(2535,179:3078558,49800853:0,16384,2228224 +k2535,179:1358238,49800853:-1720320 +(2535,1:1358238,49800853:1720320,16384,2228224 +(2535,1:1358238,49800853:1179648,16384,0 +r2535,179:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,544:3078558,51504789:16384,1179648,0 +g2535,1:3062174,49800853 +(2535,1:3062174,52029077:16384,1703936,0 +[2535,1:3062174,52029077:25952256,1703936,0 +(2535,1:3062174,51504789:25952256,1179648,0 +(2535,1:3062174,51504789:16384,1179648,0 +r2535,179:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2535,1:29014430,51504789:25935872 +g2535,1:29014430,51504789 ) ] ) ) ) ] -[2537,544:3078558,4812305:0,0,0 -(2537,544:3078558,49800853:0,16384,2228224 -g2537,544:29030814,49800853 -g2537,544:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,544:36151628,51504789:16384,1179648,0 +[2535,179:3078558,4812305:0,0,0 +(2535,179:3078558,49800853:0,16384,2228224 +g2535,179:29030814,49800853 +g2535,179:36135244,49800853 +(2535,1:36135244,49800853:1720320,16384,2228224 +(2535,1:36135244,52029077:16384,1703936,0 +[2535,1:36135244,52029077:25952256,1703936,0 +(2535,1:36135244,51504789:25952256,1179648,0 +(2535,1:36135244,51504789:16384,1179648,0 +r2535,179:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k2535,1:62087500,51504789:25935872 +g2535,1:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,544:37855564,49800853:1179648,16384,0 -) -) -k2537,544:3078556,49800853:-34777008 -) -] -g2537,544:6630773,4812305 -k2537,544:28224886,4812305:20398736 -g2537,544:30907930,4812305 -) -) -] -[2537,544:6630773,45706769:25952256,40108032,0 -(2537,544:6630773,45706769:25952256,40108032,0 -(2537,544:6630773,45706769:0,0,0 -g2537,544:6630773,45706769 -) -[2537,544:6630773,45706769:25952256,40108032,0 -(2537,544:6630773,45706769:25952256,40108032,126483 -[2537,544:6630773,45706769:11829248,40108032,126483 -(2537,451:6630773,6254097:11829248,505283,134348 -h2537,450:6630773,6254097:0,0,0 -r2537,450:6630773,6254097:0,639631,134348 -g2537,450:7941493,6254097 -g2537,450:7941493,6254097 -g2537,450:11658694,6254097 -k2537,451:15457817,6254097:3002205 -k2537,451:18460021,6254097:3002204 -) -(2537,452:6630773,7112893:11829248,505283,126483 -h2537,451:6630773,7112893:0,0,0 -r2537,451:6630773,7112893:0,631766,126483 -g2537,451:7941493,7112893 -g2537,451:7941493,7112893 -g2537,451:10304720,7112893 -k2537,452:14980059,7112893:3479962 -k2537,452:18460021,7112893:3479962 -) -(2537,453:6630773,7971688:11829248,505283,102891 -h2537,452:6630773,7971688:0,0,0 -r2537,452:6630773,7971688:0,608174,102891 -g2537,452:7941493,7971688 -g2537,452:7941493,7971688 -g2537,452:11489611,7971688 -k2537,453:15572505,7971688:2887517 -k2537,453:18460021,7971688:2887516 -) -(2537,454:6630773,8830484:11829248,505283,102891 -h2537,453:6630773,8830484:0,0,0 -r2537,453:6630773,8830484:0,608174,102891 -g2537,453:7941493,8830484 -g2537,453:7941493,8830484 -g2537,453:10404335,8830484 -g2537,453:11972611,8830484 -g2537,453:13540887,8830484 -g2537,453:15109163,8830484 -g2537,453:16677439,8830484 -k2537,453:18460021,8830484:413535 -) -(2537,454:9252213,9671972:9207808,485622,102891 -g2537,453:10820489,9671972 -k2537,454:15237944,9671972:3222078 -k2537,454:18460021,9671972:3222077 -) -(2537,455:6630773,10530767:11829248,505283,102891 -h2537,454:6630773,10530767:0,0,0 -r2537,454:6630773,10530767:0,608174,102891 -g2537,454:7941493,10530767 -g2537,454:7941493,10530767 -g2537,454:10727428,10530767 -g2537,454:12295704,10530767 -k2537,455:15975551,10530767:2484470 -k2537,455:18460021,10530767:2484470 -) -(2537,456:6630773,11389563:11829248,505283,126483 -h2537,455:6630773,11389563:0,0,0 -r2537,455:6630773,11389563:0,631766,126483 -g2537,455:7941493,11389563 -g2537,455:7941493,11389563 -g2537,455:11241230,11389563 -k2537,456:15448314,11389563:3011707 -k2537,456:18460021,11389563:3011707 -) -(2537,457:6630773,12248358:11829248,505283,126483 -h2537,456:6630773,12248358:0,0,0 -r2537,456:6630773,12248358:0,631766,126483 -g2537,456:7941493,12248358 -g2537,456:7941493,12248358 -g2537,456:11656073,12248358 -k2537,457:15655736,12248358:2804286 -k2537,457:18460021,12248358:2804285 -) -(2537,458:6630773,13107154:11829248,505283,102891 -h2537,457:6630773,13107154:0,0,0 -r2537,457:6630773,13107154:0,608174,102891 -g2537,457:7941493,13107154 -g2537,457:7941493,13107154 -g2537,457:11699327,13107154 -g2537,457:13267603,13107154 -k2537,458:16461501,13107154:1998521 -k2537,458:18460021,13107154:1998520 -) -(2537,459:6630773,13965949:11829248,505283,102891 -h2537,458:6630773,13965949:0,0,0 -r2537,458:6630773,13965949:0,608174,102891 -g2537,458:7941493,13965949 -g2537,458:7941493,13965949 -g2537,458:10410233,13965949 -k2537,459:15032816,13965949:3427206 -k2537,459:18460021,13965949:3427205 -) -(2537,460:6630773,14824745:11829248,505283,102891 -h2537,459:6630773,14824745:0,0,0 -r2537,459:6630773,14824745:0,608174,102891 -g2537,459:7941493,14824745 -g2537,459:7941493,14824745 -g2537,459:11533520,14824745 -k2537,460:15594459,14824745:2865562 -k2537,460:18460021,14824745:2865562 -) -(2537,461:6630773,15683540:11829248,505283,102891 -h2537,460:6630773,15683540:0,0,0 -r2537,460:6630773,15683540:0,608174,102891 -g2537,460:7941493,15683540 -g2537,460:7941493,15683540 -g2537,460:11154722,15683540 -k2537,461:15405060,15683540:3054961 -k2537,461:18460021,15683540:3054961 -) -(2537,462:6630773,16542336:11829248,505283,102891 -h2537,461:6630773,16542336:0,0,0 -r2537,461:6630773,16542336:0,608174,102891 -g2537,461:7941493,16542336 -g2537,461:7941493,16542336 -g2537,461:10647474,16542336 -g2537,461:12215750,16542336 -g2537,461:13784026,16542336 -k2537,462:16719712,16542336:1740309 -k2537,462:18460021,16542336:1740309 -) -(2537,463:6630773,17401131:11829248,505283,126483 -h2537,462:6630773,17401131:0,0,0 -r2537,462:6630773,17401131:0,631766,126483 -g2537,462:7941493,17401131 -g2537,462:7941493,17401131 -g2537,462:10639609,17401131 -g2537,462:12207885,17401131 -k2537,463:15931642,17401131:2528380 -k2537,463:18460021,17401131:2528379 -) -(2537,464:6630773,18259927:11829248,513147,102891 -h2537,463:6630773,18259927:0,0,0 -r2537,463:6630773,18259927:0,616038,102891 -g2537,463:7941493,18259927 -g2537,463:7941493,18259927 -g2537,463:9302675,18259927 -g2537,463:10870951,18259927 -k2537,464:15263175,18259927:3196847 -k2537,464:18460021,18259927:3196846 -) -(2537,465:6630773,19118722:11829248,505283,102891 -h2537,464:6630773,19118722:0,0,0 -r2537,464:6630773,19118722:0,608174,102891 -g2537,464:7941493,19118722 -g2537,464:7941493,19118722 -g2537,464:11632480,19118722 -k2537,465:15643939,19118722:2816082 -k2537,465:18460021,19118722:2816082 -) -(2537,466:6630773,19977518:11829248,505283,102891 -h2537,465:6630773,19977518:0,0,0 -r2537,465:6630773,19977518:0,608174,102891 -g2537,465:7941493,19977518 -g2537,465:7941493,19977518 -g2537,465:10247704,19977518 -k2537,466:14951551,19977518:3508470 -k2537,466:18460021,19977518:3508470 -) -(2537,467:6630773,20836314:11829248,505283,134348 -h2537,466:6630773,20836314:0,0,0 -r2537,466:6630773,20836314:0,639631,134348 -g2537,466:7941493,20836314 -g2537,466:7941493,20836314 -g2537,466:10847359,20836314 -k2537,467:15251379,20836314:3208643 -k2537,467:18460021,20836314:3208642 -) -(2537,468:6630773,21695109:11829248,505283,102891 -h2537,467:6630773,21695109:0,0,0 -r2537,467:6630773,21695109:0,608174,102891 -g2537,467:7941493,21695109 -g2537,467:7941493,21695109 -g2537,467:11017752,21695109 -g2537,467:11789110,21695109 -k2537,468:15523025,21695109:2936997 -k2537,468:18460021,21695109:2936996 -) -(2537,469:6630773,22553905:11829248,505283,102891 -h2537,468:6630773,22553905:0,0,0 -r2537,468:6630773,22553905:0,608174,102891 -g2537,468:7941493,22553905 -g2537,468:7941493,22553905 -g2537,468:10543271,22553905 -g2537,468:11713088,22553905 -g2537,468:12882905,22553905 -g2537,468:14451181,22553905 -g2537,468:16019457,22553905 -k2537,469:17837428,22553905:622594 -k2537,469:18460021,22553905:622593 -) -(2537,470:6630773,23412700:11829248,505283,126483 -h2537,469:6630773,23412700:0,0,0 -r2537,469:6630773,23412700:0,631766,126483 -g2537,469:7941493,23412700 -g2537,469:7941493,23412700 -g2537,469:10659926,23412700 -k2537,470:15157662,23412700:3302359 -k2537,470:18460021,23412700:3302359 -) -(2537,471:6630773,24271496:11829248,505283,126483 -h2537,470:6630773,24271496:0,0,0 -r2537,470:6630773,24271496:0,631766,126483 -g2537,470:7941493,24271496 -g2537,470:7941493,24271496 -g2537,470:10186100,24271496 -g2537,470:11754376,24271496 -g2537,470:13322652,24271496 -k2537,471:16489025,24271496:1970996 -k2537,471:18460021,24271496:1970996 -) -(2537,473:6630773,25130291:11829248,505283,126483 -h2537,471:6630773,25130291:0,0,0 -r2537,471:6630773,25130291:0,631766,126483 -g2537,471:7941493,25130291 -g2537,471:7941493,25130291 -g2537,471:11589226,25130291 -g2537,471:13157502,25130291 -g2537,471:14725778,25130291 -g2537,471:16294054,25130291 -k2537,471:18460021,25130291:796920 -) -(2537,473:9252213,25971779:9207808,485622,102891 -g2537,471:10820489,25971779 -g2537,471:12388765,25971779 -g2537,471:13957041,25971779 -g2537,472:15525317,25971779 -k2537,473:17590358,25971779:869664 -k2537,473:18460021,25971779:869663 -) -(2537,474:6630773,26830575:11829248,505283,102891 -h2537,473:6630773,26830575:0,0,0 -r2537,473:6630773,26830575:0,608174,102891 -g2537,473:7941493,26830575 -g2537,473:7941493,26830575 -g2537,473:10301444,26830575 -k2537,474:14978421,26830575:3481600 -k2537,474:18460021,26830575:3481600 -) -(2537,475:6630773,27689370:11829248,485622,134348 -h2537,474:6630773,27689370:0,0,0 -r2537,474:6630773,27689370:0,619970,134348 -g2537,474:7941493,27689370 -g2537,474:7941493,27689370 -g2537,474:10049786,27689370 -k2537,475:14852592,27689370:3607429 -k2537,475:18460021,27689370:3607429 -) -(2537,476:6630773,28548166:11829248,505283,102891 -h2537,475:6630773,28548166:0,0,0 -r2537,475:6630773,28548166:0,608174,102891 -g2537,475:7941493,28548166 -g2537,475:7941493,28548166 -g2537,475:10092384,28548166 -g2537,475:11660660,28548166 -g2537,475:13228936,28548166 -g2537,475:14797212,28548166 -g2537,475:16365488,28548166 -k2537,476:18010443,28548166:449578 -k2537,476:18460021,28548166:449578 -) -(2537,477:6630773,29406961:11829248,505283,126483 -h2537,476:6630773,29406961:0,0,0 -r2537,476:6630773,29406961:0,631766,126483 -g2537,476:7941493,29406961 -g2537,476:7941493,29406961 -g2537,476:10543927,29406961 -g2537,476:12112203,29406961 -g2537,476:13680479,29406961 -g2537,476:15248755,29406961 -k2537,477:17452077,29406961:1007945 -k2537,477:18460021,29406961:1007944 -) -(2537,478:6630773,30265757:11829248,505283,102891 -h2537,477:6630773,30265757:0,0,0 -r2537,477:6630773,30265757:0,608174,102891 -g2537,477:7941493,30265757 -g2537,477:7941493,30265757 -g2537,477:10055028,30265757 -g2537,477:11623304,30265757 -k2537,478:15639351,30265757:2820670 -k2537,478:18460021,30265757:2820670 -) -(2537,479:6630773,31124552:11829248,505283,102891 -h2537,478:6630773,31124552:0,0,0 -r2537,478:6630773,31124552:0,608174,102891 -g2537,478:7941493,31124552 -g2537,478:7941493,31124552 -g2537,478:10346663,31124552 -k2537,479:15001031,31124552:3458991 -k2537,479:18460021,31124552:3458990 -) -(2537,480:6630773,31983348:11829248,505283,102891 -h2537,479:6630773,31983348:0,0,0 -g2537,479:8948125,31983348 -k2537,480:13903303,31983348:4556719 -k2537,480:18460021,31983348:4556718 -) -(2537,481:6630773,32842144:11829248,505283,126483 -h2537,480:6630773,32842144:0,0,0 -g2537,480:10737258,32842144 -k2537,481:15196328,32842144:3263693 -k2537,481:18460021,32842144:3263693 -) -(2537,482:6630773,33700939:11829248,505283,126483 -h2537,481:6630773,33700939:0,0,0 -g2537,481:8322257,33700939 -g2537,481:9488797,33700939 -g2537,481:12529667,33700939 -k2537,481:18460021,33700939:2002781 -) -(2537,482:9252213,34542427:9207808,505283,126483 -k2537,482:15133414,34542427:3326608 -k2537,482:18460021,34542427:3326607 -) -(2537,483:6630773,35401223:11829248,485622,126483 -h2537,482:6630773,35401223:0,0,0 -g2537,482:8220021,35401223 -g2537,482:11339534,35401223 -k2537,483:15497466,35401223:2962555 -k2537,483:18460021,35401223:2962555 -) -(2537,484:6630773,36260018:11829248,473825,126483 -h2537,483:6630773,36260018:0,0,0 -k2537,484:13405557,36260018:5054464 -k2537,484:18460021,36260018:5054464 -) -(2537,485:6630773,37118814:11829248,505283,126483 -h2537,484:6630773,37118814:0,0,0 -r2537,484:6630773,37118814:0,631766,126483 -g2537,484:7941493,37118814 -g2537,484:7941493,37118814 -g2537,484:11224846,37118814 -k2537,485:16201650,37118814:2258371 -k2537,485:18460021,37118814:2258371 -) -(2537,486:6630773,37977609:11829248,485622,126483 -h2537,485:6630773,37977609:0,0,0 -r2537,485:6630773,37977609:0,612105,126483 -g2537,485:7941493,37977609 -g2537,485:7941493,37977609 -g2537,485:10188722,37977609 -k2537,486:15683588,37977609:2776433 -k2537,486:18460021,37977609:2776433 -) -(2537,487:6630773,38836405:11829248,505283,134348 -h2537,486:6630773,38836405:0,0,0 -g2537,486:10347974,38836405 -k2537,487:14802457,38836405:3657565 -k2537,487:18460021,38836405:3657564 -) -(2537,488:6630773,39695200:11829248,505283,126483 -h2537,487:6630773,39695200:0,0,0 -g2537,487:9928544,39695200 -k2537,488:14791971,39695200:3668050 -k2537,488:18460021,39695200:3668050 -) -(2537,489:6630773,40553996:11829248,505283,126483 -h2537,488:6630773,40553996:0,0,0 -k2537,489:13349196,40553996:5110825 -k2537,489:18460021,40553996:5110825 -) -(2537,490:6630773,41412791:11829248,505283,102891 -h2537,489:6630773,41412791:0,0,0 -r2537,489:6630773,41412791:0,608174,102891 -g2537,489:7941493,41412791 -g2537,489:7941493,41412791 -g2537,489:11488956,41412791 -k2537,490:15572177,41412791:2887844 -k2537,490:18460021,41412791:2887844 -) -(2537,491:6630773,42271587:11829248,485622,126483 -h2537,490:6630773,42271587:0,0,0 -r2537,490:6630773,42271587:0,612105,126483 -g2537,490:7941493,42271587 -g2537,490:7941493,42271587 -g2537,490:9393115,42271587 -g2537,490:12380246,42271587 -k2537,491:16017822,42271587:2442199 -k2537,491:18460021,42271587:2442199 -) -(2537,492:6630773,43130382:11829248,505283,134348 -h2537,491:6630773,43130382:0,0,0 -r2537,491:6630773,43130382:0,639631,134348 -g2537,491:7941493,43130382 -g2537,491:7941493,43130382 -g2537,491:9574650,43130382 -g2537,491:10218868,43130382 -g2537,491:13310856,43130382 -k2537,492:16283898,43130382:2176124 -k2537,492:18460021,43130382:2176123 -) -(2537,493:6630773,43989178:11829248,505283,126483 -h2537,492:6630773,43989178:0,0,0 -r2537,492:6630773,43989178:0,631766,126483 -g2537,492:7941493,43989178 -g2537,492:7941493,43989178 -g2537,492:10395816,43989178 -g2537,492:12927471,43989178 -k2537,493:16291435,43989178:2168587 -k2537,493:18460021,43989178:2168586 -) -(2537,494:6630773,44847973:11829248,505283,126483 -h2537,493:6630773,44847973:0,0,0 -r2537,493:6630773,44847973:0,631766,126483 -g2537,493:7941493,44847973 -g2537,493:7941493,44847973 -g2537,493:9300709,44847973 -g2537,493:10691383,44847973 -g2537,493:13716524,44847973 -g2537,493:15366720,44847973 -k2537,494:18272587,44847973:187434 -k2537,494:18460021,44847973:187434 -) -(2537,495:6630773,45706769:11829248,505283,126483 -h2537,494:6630773,45706769:0,0,0 -r2537,494:6630773,45706769:0,631766,126483 -g2537,494:7941493,45706769 -g2537,494:7941493,45706769 -g2537,494:10309308,45706769 -g2537,494:11959504,45706769 -k2537,495:15807451,45706769:2652570 -k2537,495:18460021,45706769:2652570 -) -] -k2537,544:19606901,45706769:1146880 -r2537,544:19606901,45706769:0,40234515,126483 -k2537,544:20753781,45706769:1146880 -[2537,544:20753781,45706769:11829248,40108032,102891 -(2537,496:20753781,6254097:11829248,485622,126483 -h2537,495:20753781,6254097:0,0,0 -r2537,495:20753781,6254097:0,612105,126483 -g2537,495:22064501,6254097 -g2537,495:22064501,6254097 -g2537,495:24815047,6254097 -k2537,496:30058255,6254097:2524775 -k2537,496:32583029,6254097:2524774 -) -(2537,497:20753781,7112499:11829248,505283,102891 -h2537,496:20753781,7112499:0,0,0 -r2537,496:20753781,7112499:0,608174,102891 -g2537,496:22064501,7112499 -g2537,496:22064501,7112499 -g2537,496:24858300,7112499 -k2537,497:30079881,7112499:2503148 -k2537,497:32583029,7112499:2503148 -) -(2537,498:20753781,7970901:11829248,505283,126483 -h2537,497:20753781,7970901:0,0,0 -r2537,497:20753781,7970901:0,631766,126483 -g2537,497:22064501,7970901 -g2537,497:22064501,7970901 -g2537,497:24646619,7970901 -g2537,497:26296815,7970901 -k2537,498:30799139,7970901:1783891 -k2537,498:32583029,7970901:1783890 -) -(2537,499:20753781,8829304:11829248,485622,134348 -h2537,498:20753781,8829304:0,0,0 -r2537,498:20753781,8829304:0,619970,134348 -g2537,498:22064501,8829304 -g2537,498:22064501,8829304 -g2537,498:25921294,8829304 -k2537,499:30611378,8829304:1971651 -k2537,499:32583029,8829304:1971651 -) -(2537,500:20753781,9687706:11829248,505283,134348 -h2537,499:20753781,9687706:0,0,0 -r2537,499:20753781,9687706:0,639631,134348 -g2537,499:22064501,9687706 -g2537,499:22064501,9687706 -g2537,499:25544462,9687706 -g2537,499:28061044,9687706 -k2537,500:30919725,9687706:1663304 -k2537,500:32583029,9687706:1663304 -) -(2537,501:20753781,10546108:11829248,505283,126483 -h2537,500:20753781,10546108:0,0,0 -r2537,500:20753781,10546108:0,631766,126483 -g2537,500:22064501,10546108 -g2537,500:22064501,10546108 -g2537,500:26092343,10546108 -g2537,500:28539457,10546108 -k2537,501:31158932,10546108:1424098 -k2537,501:32583029,10546108:1424097 -) -(2537,502:20753781,11404510:11829248,505283,102891 -h2537,501:20753781,11404510:0,0,0 -r2537,501:20753781,11404510:0,608174,102891 -g2537,501:22064501,11404510 -g2537,501:22064501,11404510 -g2537,501:23653093,11404510 -g2537,501:27534135,11404510 -k2537,502:31417799,11404510:1165231 -k2537,502:32583029,11404510:1165230 -) -(2537,503:20753781,12262912:11829248,505283,126483 -h2537,502:20753781,12262912:0,0,0 -r2537,502:20753781,12262912:0,631766,126483 -g2537,502:22064501,12262912 -g2537,502:22064501,12262912 -g2537,502:24596156,12262912 -k2537,503:29228241,12262912:3354788 -k2537,503:32583029,12262912:3354788 -) -(2537,504:20753781,13121314:11829248,505283,102891 -h2537,503:20753781,13121314:0,0,0 -r2537,503:20753781,13121314:0,608174,102891 -g2537,503:22719861,13121314 -g2537,503:22719861,13121314 -g2537,503:23317549,13121314 -g2537,503:27035406,13121314 -k2537,504:31168434,13121314:1414595 -k2537,504:32583029,13121314:1414595 -) -(2537,505:20753781,13979717:11829248,505283,102891 -h2537,504:20753781,13979717:0,0,0 -r2537,504:20753781,13979717:0,608174,102891 -g2537,504:22719861,13979717 -g2537,504:22719861,13979717 -g2537,504:23317549,13979717 -g2537,504:27365707,13979717 -k2537,505:31333585,13979717:1249445 -k2537,505:32583029,13979717:1249444 -) -(2537,506:20753781,14838119:11829248,505283,126483 -h2537,505:20753781,14838119:0,0,0 -r2537,505:20753781,14838119:0,631766,126483 -g2537,505:22064501,14838119 -g2537,505:22064501,14838119 -g2537,505:23335899,14838119 -g2537,505:24986095,14838119 -k2537,506:30143779,14838119:2439251 -k2537,506:32583029,14838119:2439250 -) -(2537,507:20753781,15696521:11829248,505283,102891 -h2537,506:20753781,15696521:0,0,0 -r2537,506:20753781,15696521:0,608174,102891 -g2537,506:22064501,15696521 -g2537,506:22064501,15696521 -g2537,506:23870673,15696521 -g2537,506:25618518,15696521 -k2537,507:29698462,15696521:2884567 -k2537,507:32583029,15696521:2884567 -) -(2537,508:20753781,16554923:11829248,513147,126483 -h2537,507:20753781,16554923:0,0,0 -r2537,507:20753781,16554923:0,639630,126483 -g2537,507:22064501,16554923 -g2537,507:22064501,16554923 -g2537,507:25433051,16554923 -g2537,507:27083247,16554923 -k2537,508:31192355,16554923:1390675 -k2537,508:32583029,16554923:1390674 -) -(2537,509:20753781,17413325:11829248,513147,102891 -h2537,508:20753781,17413325:0,0,0 -r2537,508:20753781,17413325:0,616038,102891 -g2537,508:22064501,17413325 -g2537,508:22064501,17413325 -g2537,508:23976186,17413325 -g2537,508:26420678,17413325 -k2537,509:30861070,17413325:1721959 -k2537,509:32583029,17413325:1721959 -) -(2537,510:20753781,18271728:11829248,513147,102891 -h2537,509:20753781,18271728:0,0,0 -r2537,509:20753781,18271728:0,616038,102891 -g2537,509:22064501,18271728 -g2537,509:22064501,18271728 -g2537,509:24098738,18271728 -k2537,510:28938572,18271728:3644457 -k2537,510:32583029,18271728:3644457 -) -(2537,511:20753781,19130130:11829248,505283,134348 -h2537,510:20753781,19130130:0,0,0 -r2537,510:20753781,19130130:0,639631,134348 -g2537,510:22064501,19130130 -g2537,510:22064501,19130130 -g2537,510:26003870,19130130 -k2537,511:30652666,19130130:1930363 -k2537,511:32583029,19130130:1930363 -) -(2537,512:20753781,19988532:11829248,505283,134348 -h2537,511:20753781,19988532:0,0,0 -r2537,511:20753781,19988532:0,639631,134348 -g2537,511:22064501,19988532 -g2537,511:22064501,19988532 -g2537,511:23814312,19988532 -g2537,511:26963316,19988532 -g2537,511:29626043,19988532 -k2537,512:32463753,19988532:119277 -k2537,512:32583029,19988532:119276 -) -(2537,513:20753781,20846934:11829248,505283,126483 -h2537,512:20753781,20846934:0,0,0 -r2537,512:20753781,20846934:0,631766,126483 -g2537,512:22064501,20846934 -g2537,512:22064501,20846934 -g2537,512:23814312,20846934 -g2537,512:25794810,20846934 -k2537,513:30548136,20846934:2034893 -k2537,513:32583029,20846934:2034893 -) -(2537,514:20753781,21705336:11829248,505283,102891 -h2537,513:20753781,21705336:0,0,0 -r2537,513:20753781,21705336:0,608174,102891 -g2537,513:22064501,21705336 -g2537,513:22064501,21705336 -g2537,513:23814312,21705336 -g2537,513:26083168,21705336 -k2537,514:30692315,21705336:1890714 -k2537,514:32583029,21705336:1890714 -) -(2537,515:20753781,22563738:11829248,485622,102891 -h2537,514:20753781,22563738:0,0,0 -r2537,514:20753781,22563738:0,588513,102891 -g2537,514:22064501,22563738 -g2537,514:22064501,22563738 -g2537,514:24318284,22563738 -k2537,515:29809873,22563738:2773156 -k2537,515:32583029,22563738:2773156 -) -(2537,516:20753781,23422141:11829248,485622,102891 -h2537,515:20753781,23422141:0,0,0 -r2537,515:20753781,23422141:0,588513,102891 -g2537,515:22064501,23422141 -g2537,515:22064501,23422141 -g2537,515:24144613,23422141 -g2537,515:25030004,23422141 -g2537,515:29193506,23422141 -k2537,516:32247484,23422141:335545 -k2537,516:32583029,23422141:335545 -) -(2537,517:20753781,24280543:11829248,505283,102891 -h2537,516:20753781,24280543:0,0,0 -r2537,516:20753781,24280543:0,608174,102891 -g2537,516:22064501,24280543 -g2537,516:22064501,24280543 -g2537,516:24281584,24280543 -k2537,517:29791523,24280543:2791506 -k2537,517:32583029,24280543:2791506 -) -(2537,518:20753781,25138945:11829248,505283,126483 -h2537,517:20753781,25138945:0,0,0 -r2537,517:20753781,25138945:0,631766,126483 -g2537,517:22064501,25138945 -g2537,517:22064501,25138945 -g2537,517:24325493,25138945 -k2537,518:29051950,25138945:3531080 -k2537,518:32583029,25138945:3531079 -) -(2537,519:20753781,25997347:11829248,505283,126483 -h2537,518:20753781,25997347:0,0,0 -r2537,518:20753781,25997347:0,631766,126483 -g2537,518:22064501,25997347 -g2537,518:22064501,25997347 -g2537,518:23432237,25997347 -g2537,518:25082433,25997347 -k2537,519:29430420,25997347:3152610 -k2537,519:32583029,25997347:3152609 -) -(2537,520:20753781,26855749:11829248,505283,126483 -h2537,519:20753781,26855749:0,0,0 -r2537,519:20753781,26855749:0,631766,126483 -g2537,519:22064501,26855749 -g2537,519:22064501,26855749 -g2537,519:23990604,26855749 -g2537,519:25381278,26855749 -g2537,519:27706495,26855749 -g2537,519:29686993,26855749 -k2537,520:31732700,26855749:850330 -k2537,520:32583029,26855749:850329 -) -(2537,521:20753781,27714152:11829248,505283,126483 -h2537,520:20753781,27714152:0,0,0 -r2537,520:20753781,27714152:0,631766,126483 -g2537,520:22064501,27714152 -g2537,520:22064501,27714152 -g2537,520:23911305,27714152 -g2537,520:28054491,27714152 -k2537,521:31677977,27714152:905053 -k2537,521:32583029,27714152:905052 -) -(2537,522:20753781,28572554:11829248,505283,102891 -h2537,521:20753781,28572554:0,0,0 -r2537,521:20753781,28572554:0,608174,102891 -g2537,521:22064501,28572554 -g2537,521:22064501,28572554 -g2537,521:24241607,28572554 -g2537,521:25230545,28572554 -k2537,522:30266004,28572554:2317026 -k2537,522:32583029,28572554:2317025 -) -(2537,523:20753781,29430956:11829248,485622,102891 -h2537,522:20753781,29430956:0,0,0 -r2537,522:20753781,29430956:0,588513,102891 -g2537,522:22064501,29430956 -g2537,522:22064501,29430956 -g2537,522:24505717,29430956 -k2537,523:29142062,29430956:3440968 -k2537,523:32583029,29430956:3440967 -) -(2537,524:20753781,30289358:11829248,505283,102891 -h2537,523:20753781,30289358:0,0,0 -r2537,523:20753781,30289358:0,608174,102891 -g2537,523:22064501,30289358 -g2537,523:22064501,30289358 -g2537,523:25127653,30289358 -k2537,524:29453030,30289358:3130000 -k2537,524:32583029,30289358:3129999 -) -(2537,525:20753781,31147760:11829248,505283,102891 -h2537,524:20753781,31147760:0,0,0 -r2537,524:20753781,31147760:0,608174,102891 -g2537,524:22064501,31147760 -g2537,524:22064501,31147760 -g2537,524:24963158,31147760 -g2537,524:29370454,31147760 -k2537,525:32335958,31147760:247071 -k2537,525:32583029,31147760:247071 -) -(2537,526:20753781,32006162:11829248,513147,126483 -h2537,525:20753781,32006162:0,0,0 -r2537,525:20753781,32006162:0,639630,126483 -g2537,525:22064501,32006162 -g2537,525:22064501,32006162 -g2537,525:24422486,32006162 -g2537,525:25273143,32006162 -g2537,525:26959384,32006162 -k2537,526:30368895,32006162:2214134 -k2537,526:32583029,32006162:2214134 -) -(2537,527:20753781,32864565:11829248,485622,126483 -h2537,526:20753781,32864565:0,0,0 -r2537,526:20753781,32864565:0,612105,126483 -g2537,526:22064501,32864565 -g2537,526:22064501,32864565 -g2537,526:23501705,32864565 -g2537,526:26033360,32864565 -k2537,527:29905883,32864565:2677146 -k2537,527:32583029,32864565:2677146 -) -(2537,528:20753781,33722967:11829248,505283,126483 -h2537,527:20753781,33722967:0,0,0 -r2537,527:20753781,33722967:0,631766,126483 -g2537,527:22064501,33722967 -g2537,527:22064501,33722967 -g2537,527:23233007,33722967 -g2537,527:25585749,33722967 -k2537,528:30443606,33722967:2139424 -k2537,528:32583029,33722967:2139423 -) -(2537,529:20753781,34581369:11829248,513147,126483 -h2537,528:20753781,34581369:0,0,0 -r2537,528:20753781,34581369:0,639630,126483 -g2537,528:22064501,34581369 -g2537,528:22064501,34581369 -g2537,528:23871328,34581369 -g2537,528:24729849,34581369 -g2537,528:28128546,34581369 -k2537,529:31715004,34581369:868025 -k2537,529:32583029,34581369:868025 -) -(2537,530:20753781,35439771:11829248,485622,126483 -h2537,529:20753781,35439771:0,0,0 -r2537,529:20753781,35439771:0,612105,126483 -g2537,529:22064501,35439771 -g2537,529:22064501,35439771 -g2537,529:25452057,35439771 -g2537,529:27983712,35439771 -k2537,530:30881059,35439771:1701970 -k2537,530:32583029,35439771:1701970 -) -(2537,531:20753781,36298173:11829248,485622,134348 -h2537,530:20753781,36298173:0,0,0 -r2537,530:20753781,36298173:0,619970,134348 -g2537,530:22064501,36298173 -g2537,530:22064501,36298173 -g2537,530:25009689,36298173 -k2537,531:29394048,36298173:3188982 -k2537,531:32583029,36298173:3188981 -) -(2537,532:20753781,37156576:11829248,473825,134348 -h2537,531:20753781,37156576:0,0,0 -r2537,531:20753781,37156576:0,608173,134348 -g2537,531:22064501,37156576 -g2537,531:22064501,37156576 -g2537,531:26153292,37156576 -k2537,531:32583029,37156576:2221670 -) -(2537,532:23375221,37998064:9207808,485622,11795 -k2537,532:29338342,37998064:3244688 -k2537,532:32583029,37998064:3244687 -) -(2537,533:20753781,38856466:11829248,513147,102891 -h2537,532:20753781,38856466:0,0,0 -r2537,532:20753781,38856466:0,616038,102891 -g2537,532:22064501,38856466 -g2537,532:22064501,38856466 -g2537,532:25242997,38856466 -g2537,532:27114705,38856466 -k2537,533:30446556,38856466:2136474 -k2537,533:32583029,38856466:2136473 -) -(2537,534:20753781,39714868:11829248,505283,134348 -h2537,533:20753781,39714868:0,0,0 -r2537,533:20753781,39714868:0,639631,134348 -g2537,533:22064501,39714868 -g2537,533:22064501,39714868 -g2537,533:25534632,39714868 -k2537,534:29656519,39714868:2926510 -k2537,534:32583029,39714868:2926510 -) -(2537,535:20753781,40573270:11829248,513147,134348 -h2537,534:20753781,40573270:0,0,0 -r2537,534:20753781,40573270:0,647495,134348 -g2537,534:22064501,40573270 -g2537,534:22064501,40573270 -g2537,534:24634823,40573270 -g2537,534:26486215,40573270 -g2537,534:27518407,40573270 -k2537,535:30648407,40573270:1934623 -k2537,535:32583029,40573270:1934622 -) -(2537,536:20753781,41431672:11829248,485622,134348 -h2537,535:20753781,41431672:0,0,0 -r2537,535:20753781,41431672:0,619970,134348 -g2537,535:22064501,41431672 -g2537,535:22064501,41431672 -g2537,535:23341142,41431672 -g2537,535:26342690,41431672 -k2537,536:30822076,41431672:1760953 -k2537,536:32583029,41431672:1760953 -) -(2537,537:20753781,42290074:11829248,485622,134348 -h2537,536:20753781,42290074:0,0,0 -r2537,536:20753781,42290074:0,619970,134348 -g2537,536:22064501,42290074 -g2537,536:22064501,42290074 -g2537,536:24470983,42290074 -k2537,537:29124695,42290074:3458335 -k2537,537:32583029,42290074:3458334 -) -(2537,538:20753781,43148477:11829248,513147,134348 -h2537,537:20753781,43148477:0,0,0 -r2537,537:20753781,43148477:0,647495,134348 -g2537,537:22064501,43148477 -g2537,537:22064501,43148477 -g2537,537:24297312,43148477 -g2537,537:25147969,43148477 -g2537,537:26503908,43148477 -g2537,537:27670448,43148477 -k2537,537:32583029,43148477:3131312 -) -(2537,538:23375221,43989965:9207808,505283,134348 -k2537,538:29527741,43989965:3055289 -k2537,538:32583029,43989965:3055288 -) -(2537,539:20753781,44848367:11829248,505283,7863 -h2537,538:20753781,44848367:0,0,0 -r2537,538:20753781,44848367:0,513146,7863 -g2537,538:22064501,44848367 -g2537,538:22064501,44848367 -k2537,539:28275020,44848367:4308009 -k2537,539:32583029,44848367:4308009 -) -(2537,540:20753781,45706769:11829248,505283,102891 -h2537,539:20753781,45706769:0,0,0 -r2537,539:20753781,45706769:0,608174,102891 -g2537,539:22719861,45706769 -g2537,539:22719861,45706769 -g2537,539:24171483,45706769 -g2537,539:26388566,45706769 -k2537,540:30083486,45706769:2499543 -k2537,540:32583029,45706769:2499543 -) -] -(2537,544:32583029,45706769:0,355205,126483 -h2537,544:32583029,45706769:420741,355205,126483 -k2537,544:32583029,45706769:-420741 -) -) -] -(2537,544:32583029,45706769:0,0,0 -g2537,544:32583029,45706769 -) -) -] -(2537,544:6630773,47279633:25952256,0,0 -h2537,544:6630773,47279633:25952256,0,0 -) -] -h2537,544:4262630,4025873:0,0,0 -] -!31002 +g2535,1:36675916,49800853 +(2535,1:36675916,49800853:1179648,16384,0 +r2535,179:37855564,49800853:1179648,16384,0 +) +) +k2535,179:3078556,49800853:-34777008 +) +] +g2535,179:6630773,4812305 +k2535,179:23318207,4812305:15492057 +g2535,179:25216129,4812305 +g2535,179:26031396,4812305 +g2535,179:26644813,4812305 +g2535,179:28902528,4812305 +g2535,179:29858042,4812305 +) +) +] +[2535,179:6630773,45706769:25952256,40108032,0 +(2535,179:6630773,45706769:25952256,40108032,0 +(2535,179:6630773,45706769:0,0,0 +g2535,179:6630773,45706769 +) +[2535,179:6630773,45706769:25952256,40108032,0 +(2535,179:6630773,45706769:25952256,40108032,134348 +[2535,179:6630773,45706769:11829248,40108032,126483 +(2535,82:6630773,6254097:11829248,505283,126483 +h2535,81:6630773,6254097:0,0,0 +r2535,81:6630773,6254097:0,631766,126483 +g2535,81:7941493,6254097 +g2535,81:7941493,6254097 +g2535,81:10290302,6254097 +k2535,82:14773621,6254097:3686401 +k2535,82:18460021,6254097:3686400 +) +(2535,83:6630773,7111764:11829248,505283,102891 +h2535,82:6630773,7111764:0,0,0 +r2535,82:6630773,7111764:0,608174,102891 +g2535,82:7941493,7111764 +g2535,82:7941493,7111764 +g2535,82:10290302,7111764 +g2535,82:11858578,7111764 +k2535,83:15756988,7111764:2703033 +k2535,83:18460021,7111764:2703033 +) +(2535,84:6630773,7969431:11829248,505283,126483 +h2535,83:6630773,7969431:0,0,0 +r2535,83:6630773,7969431:0,631766,126483 +g2535,83:7941493,7969431 +g2535,83:7941493,7969431 +g2535,83:11475849,7969431 +g2535,83:12645666,7969431 +k2535,84:15951303,7969431:2508719 +k2535,84:18460021,7969431:2508718 +) +(2535,85:6630773,8827097:11829248,505283,134348 +h2535,84:6630773,8827097:0,0,0 +r2535,84:6630773,8827097:0,639631,134348 +g2535,84:7941493,8827097 +g2535,84:7941493,8827097 +g2535,84:11871031,8827097 +k2535,85:15763215,8827097:2696807 +k2535,85:18460021,8827097:2696806 +) +(2535,86:6630773,9684764:11829248,505283,126483 +h2535,85:6630773,9684764:0,0,0 +r2535,85:6630773,9684764:0,631766,126483 +g2535,85:7941493,9684764 +g2535,85:7941493,9684764 +g2535,85:11080667,9684764 +k2535,86:15168803,9684764:3291218 +k2535,86:18460021,9684764:3291218 +) +(2535,87:6630773,10542431:11829248,505283,102891 +h2535,86:6630773,10542431:0,0,0 +r2535,86:6630773,10542431:0,608174,102891 +g2535,86:7941493,10542431 +g2535,86:7941493,10542431 +g2535,86:13846941,10542431 +g2535,86:15016758,10542431 +k2535,87:17136849,10542431:1323173 +k2535,87:18460021,10542431:1323172 +) +(2535,88:6630773,11400098:11829248,513147,102891 +h2535,87:6630773,11400098:0,0,0 +r2535,87:6630773,11400098:0,616038,102891 +g2535,87:7941493,11400098 +g2535,87:7941493,11400098 +g2535,87:14242123,11400098 +k2535,88:16948761,11400098:1511261 +k2535,88:18460021,11400098:1511260 +) +(2535,89:6630773,12257764:11829248,513147,102891 +h2535,88:6630773,12257764:0,0,0 +r2535,88:6630773,12257764:0,616038,102891 +g2535,88:7941493,12257764 +g2535,88:7941493,12257764 +g2535,88:13056577,12257764 +k2535,89:16355988,12257764:2104034 +k2535,89:18460021,12257764:2104033 +) +(2535,90:6630773,13115431:11829248,505283,134348 +h2535,89:6630773,13115431:0,0,0 +r2535,89:6630773,13115431:0,639631,134348 +g2535,89:7941493,13115431 +g2535,89:7941493,13115431 +g2535,89:13056577,13115431 +k2535,90:16156758,13115431:2303263 +k2535,90:18460021,13115431:2303263 +) +(2535,91:6630773,13973098:11829248,505283,134348 +h2535,90:6630773,13973098:0,0,0 +r2535,90:6630773,13973098:0,639631,134348 +g2535,90:7941493,13973098 +g2535,90:7941493,13973098 +g2535,90:13056577,13973098 +k2535,91:16156758,13973098:2303263 +k2535,91:18460021,13973098:2303263 +) +(2535,92:6630773,14830765:11829248,505283,102891 +h2535,91:6630773,14830765:0,0,0 +r2535,91:6630773,14830765:0,608174,102891 +g2535,91:7941493,14830765 +g2535,91:7941493,14830765 +g2535,91:12661395,14830765 +k2535,92:15959167,14830765:2500854 +k2535,92:18460021,14830765:2500854 +) +(2535,93:6630773,15688432:11829248,505283,102891 +h2535,92:6630773,15688432:0,0,0 +r2535,92:6630773,15688432:0,608174,102891 +g2535,92:7941493,15688432 +g2535,92:7941493,15688432 +g2535,92:13056577,15688432 +g2535,92:14226394,15688432 +g2535,92:15396211,15688432 +k2535,93:17326575,15688432:1133446 +k2535,93:18460021,15688432:1133446 +) +(2535,94:6630773,16546098:11829248,505283,102891 +h2535,93:6630773,16546098:0,0,0 +r2535,93:6630773,16546098:0,608174,102891 +g2535,93:7941493,16546098 +g2535,93:7941493,16546098 +g2535,93:11080667,16546098 +k2535,94:15368033,16546098:3091989 +k2535,94:18460021,16546098:3091988 +) +(2535,95:6630773,17403765:11829248,505283,102891 +h2535,94:6630773,17403765:0,0,0 +r2535,94:6630773,17403765:0,608174,102891 +g2535,94:7941493,17403765 +g2535,94:7941493,17403765 +g2535,94:12661395,17403765 +k2535,95:15959167,17403765:2500854 +k2535,95:18460021,17403765:2500854 +) +(2535,96:6630773,18261432:11829248,505283,102891 +h2535,95:6630773,18261432:0,0,0 +r2535,95:6630773,18261432:0,608174,102891 +g2535,95:7941493,18261432 +g2535,95:7941493,18261432 +g2535,95:12661395,18261432 +k2535,96:16158397,18261432:2301625 +k2535,96:18460021,18261432:2301624 +) +(2535,97:6630773,19119099:11829248,505283,134348 +h2535,96:6630773,19119099:0,0,0 +r2535,96:6630773,19119099:0,639631,134348 +g2535,96:7941493,19119099 +g2535,96:7941493,19119099 +g2535,96:11475849,19119099 +g2535,96:13044125,19119099 +g2535,96:14612401,19119099 +k2535,97:17133900,19119099:1326122 +k2535,97:18460021,19119099:1326121 +) +(2535,98:6630773,19976766:11829248,505283,102891 +h2535,97:6630773,19976766:0,0,0 +r2535,97:6630773,19976766:0,608174,102891 +g2535,97:7941493,19976766 +g2535,97:7941493,19976766 +g2535,97:11475849,19976766 +k2535,98:15366394,19976766:3093627 +k2535,98:18460021,19976766:3093627 +) +(2535,99:6630773,20834432:11829248,505283,102891 +h2535,98:6630773,20834432:0,0,0 +r2535,98:6630773,20834432:0,608174,102891 +g2535,98:7941493,20834432 +g2535,98:7941493,20834432 +g2535,98:10685485,20834432 +k2535,99:14971212,20834432:3488809 +k2535,99:18460021,20834432:3488809 +) +(2535,100:6630773,21692099:11829248,505283,102891 +h2535,99:6630773,21692099:0,0,0 +r2535,99:6630773,21692099:0,608174,102891 +g2535,99:7941493,21692099 +g2535,99:7941493,21692099 +g2535,99:11475849,21692099 +k2535,100:15366394,21692099:3093627 +k2535,100:18460021,21692099:3093627 +) +(2535,101:6630773,22549766:11829248,505283,102891 +h2535,100:6630773,22549766:0,0,0 +r2535,100:6630773,22549766:0,608174,102891 +g2535,100:7941493,22549766 +g2535,100:7941493,22549766 +g2535,100:13056577,22549766 +g2535,100:14226394,22549766 +g2535,100:15794670,22549766 +k2535,101:17725034,22549766:734987 +k2535,101:18460021,22549766:734987 +) +(2535,102:6630773,23407433:11829248,505283,102891 +h2535,101:6630773,23407433:0,0,0 +r2535,101:6630773,23407433:0,608174,102891 +g2535,101:7941493,23407433 +g2535,101:7941493,23407433 +g2535,101:12266213,23407433 +k2535,102:15960806,23407433:2499216 +k2535,102:18460021,23407433:2499215 +) +(2535,103:6630773,24265099:11829248,505283,102891 +h2535,102:6630773,24265099:0,0,0 +r2535,102:6630773,24265099:0,608174,102891 +g2535,102:7941493,24265099 +g2535,102:7941493,24265099 +g2535,102:10290302,24265099 +k2535,103:14972850,24265099:3487171 +k2535,103:18460021,24265099:3487171 +) +(2535,104:6630773,25122766:11829248,505283,126483 +h2535,103:6630773,25122766:0,0,0 +r2535,103:6630773,25122766:0,631766,126483 +g2535,103:7941493,25122766 +g2535,103:7941493,25122766 +g2535,103:11475849,25122766 +k2535,104:15565624,25122766:2894398 +k2535,104:18460021,25122766:2894397 +) +(2535,105:6630773,25980433:11829248,505283,102891 +h2535,104:6630773,25980433:0,0,0 +r2535,104:6630773,25980433:0,608174,102891 +g2535,104:7941493,25980433 +g2535,104:7941493,25980433 +g2535,104:10685485,25980433 +k2535,105:15170442,25980433:3289580 +k2535,105:18460021,25980433:3289579 +) +(2535,106:6630773,26838100:11829248,505283,102891 +h2535,105:6630773,26838100:0,0,0 +r2535,105:6630773,26838100:0,608174,102891 +g2535,105:7941493,26838100 +g2535,105:7941493,26838100 +g2535,105:13056577,26838100 +k2535,106:16355988,26838100:2104034 +k2535,106:18460021,26838100:2104033 +) +(2535,107:6630773,27695767:11829248,505283,126483 +h2535,106:6630773,27695767:0,0,0 +r2535,106:6630773,27695767:0,631766,126483 +g2535,106:7941493,27695767 +g2535,106:7941493,27695767 +g2535,106:11475849,27695767 +k2535,107:15565624,27695767:2894398 +k2535,107:18460021,27695767:2894397 +) +(2535,108:6630773,28553433:11829248,505283,102891 +h2535,107:6630773,28553433:0,0,0 +r2535,107:6630773,28553433:0,608174,102891 +g2535,107:7941493,28553433 +g2535,107:7941493,28553433 +g2535,107:9499938,28553433 +k2535,108:14378439,28553433:4081583 +k2535,108:18460021,28553433:4081582 +) +(2535,109:6630773,29411100:11829248,505283,102891 +h2535,108:6630773,29411100:0,0,0 +r2535,108:6630773,29411100:0,608174,102891 +g2535,108:7941493,29411100 +g2535,108:7941493,29411100 +g2535,108:10290302,29411100 +g2535,108:11460119,29411100 +g2535,108:12629936,29411100 +k2535,109:16142667,29411100:2317354 +k2535,109:18460021,29411100:2317354 +) +(2535,110:6630773,30268767:11829248,505283,134348 +h2535,109:6630773,30268767:0,0,0 +r2535,109:6630773,30268767:0,639631,134348 +g2535,109:7941493,30268767 +g2535,109:7941493,30268767 +g2535,109:11871031,30268767 +k2535,110:15563985,30268767:2896036 +k2535,110:18460021,30268767:2896036 +) +(2535,111:6630773,31126434:11829248,505283,102891 +h2535,110:6630773,31126434:0,0,0 +r2535,110:6630773,31126434:0,608174,102891 +g2535,110:7941493,31126434 +g2535,110:7941493,31126434 +g2535,110:12266213,31126434 +k2535,111:15761576,31126434:2698445 +k2535,111:18460021,31126434:2698445 +) +(2535,112:6630773,31984100:11829248,505283,102891 +h2535,111:6630773,31984100:0,0,0 +r2535,111:6630773,31984100:0,608174,102891 +g2535,111:7941493,31984100 +g2535,111:7941493,31984100 +g2535,111:11080667,31984100 +g2535,111:12250484,31984100 +g2535,111:13420301,31984100 +g2535,111:14988577,31984100 +g2535,111:16556853,31984100 +k2535,112:18106126,31984100:353896 +k2535,112:18460021,31984100:353895 +) +(2535,113:6630773,32841767:11829248,513147,102891 +h2535,112:6630773,32841767:0,0,0 +r2535,112:6630773,32841767:0,616038,102891 +g2535,112:7941493,32841767 +g2535,112:7941493,32841767 +g2535,112:10685485,32841767 +g2535,112:12253761,32841767 +k2535,113:15954580,32841767:2505442 +k2535,113:18460021,32841767:2505441 +) +(2535,114:6630773,33699434:11829248,513147,102891 +h2535,113:6630773,33699434:0,0,0 +r2535,113:6630773,33699434:0,616038,102891 +g2535,113:7941493,33699434 +g2535,113:7941493,33699434 +g2535,113:13846941,33699434 +k2535,114:16751170,33699434:1708852 +k2535,114:18460021,33699434:1708851 +) +(2535,115:6630773,34557101:11829248,505283,102891 +h2535,114:6630773,34557101:0,0,0 +r2535,114:6630773,34557101:0,608174,102891 +g2535,114:7941493,34557101 +g2535,114:7941493,34557101 +g2535,114:12266213,34557101 +k2535,115:15761576,34557101:2698445 +k2535,115:18460021,34557101:2698445 +) +(2535,116:6630773,35414768:11829248,505283,102891 +h2535,115:6630773,35414768:0,0,0 +r2535,115:6630773,35414768:0,608174,102891 +g2535,115:7941493,35414768 +g2535,115:7941493,35414768 +g2535,115:11871031,35414768 +k2535,116:15563985,35414768:2896036 +k2535,116:18460021,35414768:2896036 +) +(2535,117:6630773,36272434:11829248,505283,102891 +h2535,116:6630773,36272434:0,0,0 +r2535,116:6630773,36272434:0,608174,102891 +g2535,116:7941493,36272434 +g2535,116:7941493,36272434 +g2535,116:12661395,36272434 +k2535,117:15959167,36272434:2500854 +k2535,117:18460021,36272434:2500854 +) +(2535,118:6630773,37130101:11829248,505283,102891 +h2535,117:6630773,37130101:0,0,0 +r2535,117:6630773,37130101:0,608174,102891 +g2535,117:7941493,37130101 +g2535,117:7941493,37130101 +g2535,117:12266213,37130101 +k2535,118:15960806,37130101:2499216 +k2535,118:18460021,37130101:2499215 +) +(2535,119:6630773,37987768:11829248,505283,102891 +h2535,118:6630773,37987768:0,0,0 +r2535,118:6630773,37987768:0,608174,102891 +g2535,118:7941493,37987768 +g2535,118:7941493,37987768 +g2535,118:15032488,37987768 +k2535,119:17343943,37987768:1116078 +k2535,119:18460021,37987768:1116078 +) +(2535,120:6630773,38845435:11829248,513147,102891 +h2535,119:6630773,38845435:0,0,0 +r2535,119:6630773,38845435:0,616038,102891 +g2535,119:7941493,38845435 +g2535,119:7941493,38845435 +g2535,119:13451759,38845435 +k2535,120:16553579,38845435:1906443 +k2535,120:18460021,38845435:1906442 +) +(2535,121:6630773,39703102:11829248,505283,126483 +h2535,120:6630773,39703102:0,0,0 +r2535,120:6630773,39703102:0,631766,126483 +g2535,120:7941493,39703102 +g2535,120:7941493,39703102 +g2535,120:13451759,39703102 +k2535,121:16553579,39703102:1906443 +k2535,121:18460021,39703102:1906442 +) +(2535,122:6630773,40560768:11829248,505283,102891 +h2535,121:6630773,40560768:0,0,0 +r2535,121:6630773,40560768:0,608174,102891 +g2535,121:7941493,40560768 +g2535,121:7941493,40560768 +g2535,121:10290302,40560768 +k2535,122:15734378,40560768:2725643 +k2535,122:18460021,40560768:2725643 +) +(2535,123:6630773,41418435:11829248,505283,102891 +h2535,122:6630773,41418435:0,0,0 +r2535,122:6630773,41418435:0,608174,102891 +g2535,122:7941493,41418435 +g2535,122:7941493,41418435 +g2535,122:12266213,41418435 +g2535,122:13834489,41418435 +k2535,123:16744944,41418435:1715078 +k2535,123:18460021,41418435:1715077 +) +(2535,124:6630773,42276102:11829248,505283,126483 +h2535,123:6630773,42276102:0,0,0 +r2535,123:6630773,42276102:0,631766,126483 +g2535,123:7941493,42276102 +g2535,123:7941493,42276102 +g2535,123:12661395,42276102 +k2535,124:15959167,42276102:2500854 +k2535,124:18460021,42276102:2500854 +) +(2535,125:6630773,43133769:11829248,505283,102891 +h2535,124:6630773,43133769:0,0,0 +r2535,124:6630773,43133769:0,608174,102891 +g2535,124:7941493,43133769 +g2535,124:7941493,43133769 +g2535,124:11475849,43133769 +k2535,125:15565624,43133769:2894398 +k2535,125:18460021,43133769:2894397 +) +(2535,126:6630773,43991435:11829248,505283,102891 +h2535,125:6630773,43991435:0,0,0 +r2535,125:6630773,43991435:0,608174,102891 +g2535,125:7941493,43991435 +g2535,125:7941493,43991435 +g2535,125:10685485,43991435 +g2535,125:11855302,43991435 +k2535,126:15556121,43991435:2903901 +k2535,126:18460021,43991435:2903900 +) +(2535,127:6630773,44849102:11829248,513147,102891 +h2535,126:6630773,44849102:0,0,0 +r2535,126:6630773,44849102:0,616038,102891 +g2535,126:7941493,44849102 +g2535,126:7941493,44849102 +g2535,126:13056577,44849102 +g2535,126:14226394,44849102 +g2535,126:15794670,44849102 +k2535,127:17725034,44849102:734987 +k2535,127:18460021,44849102:734987 +) +(2535,128:6630773,45706769:11829248,505283,126483 +h2535,127:6630773,45706769:0,0,0 +r2535,127:6630773,45706769:0,631766,126483 +g2535,127:7941493,45706769 +g2535,127:7941493,45706769 +g2535,127:12661395,45706769 +k2535,128:16158397,45706769:2301625 +k2535,128:18460021,45706769:2301624 +) +] +k2535,179:19606901,45706769:1146880 +r2535,179:19606901,45706769:0,40242380,134348 +k2535,179:20753781,45706769:1146880 +[2535,179:20753781,45706769:11829248,40108032,134348 +(2535,129:20753781,6254097:11829248,505283,134348 +h2535,128:20753781,6254097:0,0,0 +r2535,128:20753781,6254097:0,639631,134348 +g2535,128:22064501,6254097 +g2535,128:22064501,6254097 +g2535,128:24808493,6254097 +k2535,129:29094220,6254097:3488809 +k2535,129:32583029,6254097:3488809 +) +(2535,130:20753781,7111764:11829248,505283,102891 +h2535,129:20753781,7111764:0,0,0 +r2535,129:20753781,7111764:0,608174,102891 +g2535,129:22064501,7111764 +g2535,129:22064501,7111764 +g2535,129:24413310,7111764 +g2535,129:25583127,7111764 +g2535,129:26752944,7111764 +k2535,130:30265675,7111764:2317354 +k2535,130:32583029,7111764:2317354 +) +(2535,131:20753781,7969431:11829248,505283,102891 +h2535,130:20753781,7969431:0,0,0 +r2535,130:20753781,7969431:0,608174,102891 +g2535,130:22064501,7969431 +g2535,130:22064501,7969431 +g2535,130:25203675,7969431 +k2535,131:29291811,7969431:3291218 +k2535,131:32583029,7969431:3291218 +) +(2535,132:20753781,8827097:11829248,505283,102891 +h2535,131:20753781,8827097:0,0,0 +r2535,131:20753781,8827097:0,608174,102891 +g2535,131:22064501,8827097 +g2535,131:22064501,8827097 +g2535,131:26389221,8827097 +k2535,132:30083814,8827097:2499216 +k2535,132:32583029,8827097:2499215 +) +(2535,133:20753781,9684764:11829248,505283,102891 +h2535,132:20753781,9684764:0,0,0 +r2535,132:20753781,9684764:0,608174,102891 +g2535,132:22064501,9684764 +g2535,132:22064501,9684764 +g2535,132:24413310,9684764 +k2535,133:29095858,9684764:3487171 +k2535,133:32583029,9684764:3487171 +) +(2535,134:20753781,10542431:11829248,505283,102891 +h2535,133:20753781,10542431:0,0,0 +r2535,133:20753781,10542431:0,608174,102891 +g2535,133:22064501,10542431 +g2535,133:22064501,10542431 +g2535,133:25994039,10542431 +k2535,134:29886223,10542431:2696807 +k2535,134:32583029,10542431:2696806 +) +(2535,135:20753781,11400098:11829248,505283,102891 +h2535,134:20753781,11400098:0,0,0 +r2535,134:20753781,11400098:0,608174,102891 +g2535,134:22064501,11400098 +g2535,134:22064501,11400098 +g2535,134:24018128,11400098 +k2535,135:28898267,11400098:3684762 +k2535,135:32583029,11400098:3684762 +) +(2535,136:20753781,12257764:11829248,505283,102891 +h2535,135:20753781,12257764:0,0,0 +r2535,135:20753781,12257764:0,608174,102891 +g2535,135:22064501,12257764 +g2535,135:22064501,12257764 +g2535,135:25994039,12257764 +g2535,135:27562315,12257764 +k2535,136:30670361,12257764:1912669 +k2535,136:32583029,12257764:1912668 +) +(2535,137:20753781,13115431:11829248,505283,102891 +h2535,136:20753781,13115431:0,0,0 +r2535,136:20753781,13115431:0,608174,102891 +g2535,136:22064501,13115431 +g2535,136:22064501,13115431 +g2535,136:25598857,13115431 +k2535,137:29489402,13115431:3093627 +k2535,137:32583029,13115431:3093627 +) +(2535,138:20753781,13973098:11829248,513147,102891 +h2535,137:20753781,13973098:0,0,0 +r2535,137:20753781,13973098:0,616038,102891 +g2535,137:22064501,13973098 +g2535,137:22064501,13973098 +g2535,137:28365131,13973098 +k2535,138:31071769,13973098:1511261 +k2535,138:32583029,13973098:1511260 +) +(2535,139:20753781,14830765:11829248,505283,102891 +h2535,138:20753781,14830765:0,0,0 +r2535,138:20753781,14830765:0,608174,102891 +g2535,138:22064501,14830765 +g2535,138:22064501,14830765 +g2535,138:26784403,14830765 +k2535,139:30281405,14830765:2301625 +k2535,139:32583029,14830765:2301624 +) +(2535,140:20753781,15688432:11829248,505283,102891 +h2535,139:20753781,15688432:0,0,0 +r2535,139:20753781,15688432:0,608174,102891 +g2535,139:22064501,15688432 +g2535,139:22064501,15688432 +g2535,139:27969949,15688432 +k2535,140:30874178,15688432:1708852 +k2535,140:32583029,15688432:1708851 +) +(2535,141:20753781,16546098:11829248,505283,126483 +h2535,140:20753781,16546098:0,0,0 +r2535,140:20753781,16546098:0,631766,126483 +g2535,140:22064501,16546098 +g2535,140:22064501,16546098 +g2535,140:24413310,16546098 +g2535,140:25583127,16546098 +k2535,141:29481537,16546098:3101492 +k2535,141:32583029,16546098:3101492 +) +(2535,142:20753781,17403765:11829248,505283,126483 +h2535,141:20753781,17403765:0,0,0 +r2535,141:20753781,17403765:0,631766,126483 +g2535,141:22064501,17403765 +g2535,141:22064501,17403765 +g2535,141:28365131,17403765 +g2535,141:29933407,17403765 +k2535,142:31855907,17403765:727123 +k2535,142:32583029,17403765:727122 +) +(2535,143:20753781,18261432:11829248,505283,126483 +h2535,142:20753781,18261432:0,0,0 +r2535,142:20753781,18261432:0,631766,126483 +g2535,142:22064501,18261432 +g2535,142:22064501,18261432 +g2535,142:27179585,18261432 +k2535,143:31240524,18261432:1342506 +k2535,143:32583029,18261432:1342505 +) +(2535,144:20753781,19119099:11829248,513147,134348 +h2535,143:20753781,19119099:0,0,0 +r2535,143:20753781,19119099:0,647495,134348 +g2535,143:22064501,19119099 +g2535,143:22064501,19119099 +g2535,143:27179585,19119099 +k2535,144:30478996,19119099:2104034 +k2535,144:32583029,19119099:2104033 +) +(2535,145:20753781,19976766:11829248,513147,126483 +h2535,144:20753781,19976766:0,0,0 +r2535,144:20753781,19976766:0,639630,126483 +g2535,144:22064501,19976766 +g2535,144:22064501,19976766 +g2535,144:27179585,19976766 +g2535,144:28747861,19976766 +g2535,144:30316137,19976766 +k2535,145:32047272,19976766:535758 +k2535,145:32583029,19976766:535757 +) +(2535,146:20753781,20834432:11829248,513147,102891 +h2535,145:20753781,20834432:0,0,0 +r2535,145:20753781,20834432:0,616038,102891 +g2535,145:22064501,20834432 +g2535,145:22064501,20834432 +g2535,145:25598857,20834432 +g2535,145:26768674,20834432 +g2535,145:27938491,20834432 +g2535,145:29108308,20834432 +k2535,146:31244128,20834432:1338902 +k2535,146:32583029,20834432:1338901 +) +(2535,147:20753781,21692099:11829248,513147,126483 +h2535,146:20753781,21692099:0,0,0 +r2535,146:20753781,21692099:0,639630,126483 +g2535,146:22064501,21692099 +g2535,146:22064501,21692099 +g2535,146:26784403,21692099 +k2535,147:30281405,21692099:2301625 +k2535,147:32583029,21692099:2301624 +) +(2535,148:20753781,22549766:11829248,513147,102891 +h2535,147:20753781,22549766:0,0,0 +r2535,147:20753781,22549766:0,616038,102891 +g2535,147:22064501,22549766 +g2535,147:22064501,22549766 +g2535,147:25598857,22549766 +k2535,148:29688632,22549766:2894398 +k2535,148:32583029,22549766:2894397 +) +(2535,149:20753781,23407433:11829248,513147,102891 +h2535,148:20753781,23407433:0,0,0 +r2535,148:20753781,23407433:0,616038,102891 +g2535,148:22064501,23407433 +g2535,148:22064501,23407433 +g2535,148:25598857,23407433 +k2535,149:29688632,23407433:2894398 +k2535,149:32583029,23407433:2894397 +) +(2535,150:20753781,24265099:11829248,513147,102891 +h2535,149:20753781,24265099:0,0,0 +r2535,149:20753781,24265099:0,616038,102891 +g2535,149:22064501,24265099 +g2535,149:22064501,24265099 +g2535,149:28365131,24265099 +k2535,150:31071769,24265099:1511261 +k2535,150:32583029,24265099:1511260 +) +(2535,151:20753781,25122766:11829248,513147,102891 +h2535,150:20753781,25122766:0,0,0 +r2535,150:20753781,25122766:0,616038,102891 +g2535,150:22064501,25122766 +g2535,150:22064501,25122766 +g2535,150:25598857,25122766 +g2535,150:26768674,25122766 +g2535,150:27938491,25122766 +k2535,151:30858449,25122766:1724581 +k2535,151:32583029,25122766:1724580 +) +(2535,152:20753781,25980433:11829248,513147,102891 +h2535,151:20753781,25980433:0,0,0 +r2535,151:20753781,25980433:0,616038,102891 +g2535,151:22064501,25980433 +g2535,151:22064501,25980433 +g2535,151:26389221,25980433 +k2535,152:30083814,25980433:2499216 +k2535,152:32583029,25980433:2499215 +) +(2535,153:20753781,26838100:11829248,513147,134348 +h2535,152:20753781,26838100:0,0,0 +r2535,152:20753781,26838100:0,647495,134348 +g2535,152:22064501,26838100 +g2535,152:22064501,26838100 +g2535,152:26784403,26838100 +k2535,153:30281405,26838100:2301625 +k2535,153:32583029,26838100:2301624 +) +(2535,154:20753781,27695767:11829248,513147,102891 +h2535,153:20753781,27695767:0,0,0 +r2535,153:20753781,27695767:0,616038,102891 +g2535,153:22064501,27695767 +g2535,153:22064501,27695767 +g2535,153:26389221,27695767 +k2535,154:30083814,27695767:2499216 +k2535,154:32583029,27695767:2499215 +) +(2535,155:20753781,28553433:11829248,505283,134348 +h2535,154:20753781,28553433:0,0,0 +r2535,154:20753781,28553433:0,639631,134348 +g2535,154:22064501,28553433 +g2535,154:22064501,28553433 +g2535,154:25598857,28553433 +g2535,154:27167133,28553433 +k2535,155:30472770,28553433:2110260 +k2535,155:32583029,28553433:2110259 +) +(2535,156:20753781,29411100:11829248,505283,134348 +h2535,155:20753781,29411100:0,0,0 +r2535,155:20753781,29411100:0,639631,134348 +g2535,155:22064501,29411100 +g2535,155:22064501,29411100 +g2535,155:26784403,29411100 +k2535,156:30281405,29411100:2301625 +k2535,156:32583029,29411100:2301624 +) +(2535,157:20753781,30268767:11829248,485622,134348 +h2535,156:20753781,30268767:0,0,0 +r2535,156:20753781,30268767:0,619970,134348 +g2535,156:22064501,30268767 +g2535,156:22064501,30268767 +g2535,156:25994039,30268767 +k2535,157:29886223,30268767:2696807 +k2535,157:32583029,30268767:2696806 +) +(2535,158:20753781,31126434:11829248,505283,134348 +h2535,157:20753781,31126434:0,0,0 +r2535,157:20753781,31126434:0,639631,134348 +g2535,157:22064501,31126434 +g2535,157:22064501,31126434 +g2535,157:26784403,31126434 +g2535,157:28352679,31126434 +k2535,158:31065543,31126434:1517487 +k2535,158:32583029,31126434:1517486 +) +(2535,159:20753781,31984100:11829248,505283,134348 +h2535,158:20753781,31984100:0,0,0 +r2535,158:20753781,31984100:0,639631,134348 +g2535,158:22064501,31984100 +g2535,158:22064501,31984100 +g2535,158:26389221,31984100 +g2535,158:27957497,31984100 +g2535,158:29525773,31984100 +g2535,158:31094049,31984100 +k2535,159:32436228,31984100:146802 +k2535,159:32583029,31984100:146801 +) +(2535,160:20753781,32841767:11829248,505283,134348 +h2535,159:20753781,32841767:0,0,0 +r2535,159:20753781,32841767:0,639631,134348 +g2535,159:22064501,32841767 +g2535,159:22064501,32841767 +g2535,159:27179585,32841767 +k2535,160:30478996,32841767:2104034 +k2535,160:32583029,32841767:2104033 +) +(2535,161:20753781,33699434:11829248,505283,134348 +h2535,160:20753781,33699434:0,0,0 +r2535,160:20753781,33699434:0,639631,134348 +g2535,160:22064501,33699434 +g2535,160:22064501,33699434 +g2535,160:27969949,33699434 +k2535,161:30874178,33699434:1708852 +k2535,161:32583029,33699434:1708851 +) +(2535,162:20753781,34557101:11829248,505283,134348 +h2535,161:20753781,34557101:0,0,0 +r2535,161:20753781,34557101:0,639631,134348 +g2535,161:22064501,34557101 +g2535,161:22064501,34557101 +g2535,161:26389221,34557101 +g2535,161:27957497,34557101 +g2535,161:29525773,34557101 +k2535,162:31652090,34557101:930940 +k2535,162:32583029,34557101:930939 +) +(2535,163:20753781,35414768:11829248,505283,134348 +h2535,162:20753781,35414768:0,0,0 +r2535,162:20753781,35414768:0,639631,134348 +g2535,162:22064501,35414768 +g2535,162:22064501,35414768 +g2535,162:27179585,35414768 +k2535,163:30478996,35414768:2104034 +k2535,163:32583029,35414768:2104033 +) +(2535,164:20753781,36272434:11829248,505283,134348 +h2535,163:20753781,36272434:0,0,0 +r2535,163:20753781,36272434:0,639631,134348 +g2535,163:22064501,36272434 +g2535,163:22064501,36272434 +g2535,163:27969949,36272434 +k2535,164:30874178,36272434:1708852 +k2535,164:32583029,36272434:1708851 +) +(2535,165:20753781,37130101:11829248,505283,134348 +h2535,164:20753781,37130101:0,0,0 +r2535,164:20753781,37130101:0,639631,134348 +g2535,164:22064501,37130101 +g2535,164:22064501,37130101 +g2535,164:29155496,37130101 +k2535,165:31466951,37130101:1116078 +k2535,165:32583029,37130101:1116078 +) +(2535,166:20753781,37987768:11829248,505283,134348 +h2535,165:20753781,37987768:0,0,0 +r2535,165:20753781,37987768:0,639631,134348 +g2535,165:22064501,37987768 +g2535,165:22064501,37987768 +g2535,165:27574767,37987768 +k2535,166:30676587,37987768:1906443 +k2535,166:32583029,37987768:1906442 +) +(2535,167:20753781,38845435:11829248,505283,134348 +h2535,166:20753781,38845435:0,0,0 +r2535,166:20753781,38845435:0,639631,134348 +g2535,166:22064501,38845435 +g2535,166:22064501,38845435 +g2535,166:28365131,38845435 +k2535,167:31071769,38845435:1511261 +k2535,167:32583029,38845435:1511260 +) +(2535,168:20753781,39703102:11829248,505283,134348 +h2535,167:20753781,39703102:0,0,0 +r2535,167:20753781,39703102:0,639631,134348 +g2535,167:22064501,39703102 +g2535,167:22064501,39703102 +g2535,167:26784403,39703102 +g2535,167:28352679,39703102 +k2535,168:31065543,39703102:1517487 +k2535,168:32583029,39703102:1517486 +) +(2535,169:20753781,40560768:11829248,505283,134348 +h2535,168:20753781,40560768:0,0,0 +r2535,168:20753781,40560768:0,639631,134348 +g2535,168:22064501,40560768 +g2535,168:22064501,40560768 +g2535,168:28365131,40560768 +k2535,169:31071769,40560768:1511261 +k2535,169:32583029,40560768:1511260 +) +(2535,170:20753781,41418435:11829248,505283,134348 +h2535,169:20753781,41418435:0,0,0 +r2535,169:20753781,41418435:0,639631,134348 +g2535,169:22064501,41418435 +g2535,169:22064501,41418435 +g2535,169:26389221,41418435 +k2535,170:30083814,41418435:2499216 +k2535,170:32583029,41418435:2499215 +) +(2535,171:20753781,42276102:11829248,505283,134348 +h2535,170:20753781,42276102:0,0,0 +r2535,170:20753781,42276102:0,639631,134348 +g2535,170:22064501,42276102 +g2535,170:22064501,42276102 +g2535,170:28760314,42276102 +g2535,170:30328590,42276102 +k2535,171:32053498,42276102:529531 +k2535,171:32583029,42276102:529531 +) +(2535,172:20753781,43133769:11829248,505283,134348 +h2535,171:20753781,43133769:0,0,0 +r2535,171:20753781,43133769:0,639631,134348 +g2535,171:22064501,43133769 +g2535,171:22064501,43133769 +g2535,171:26389221,43133769 +k2535,172:30083814,43133769:2499216 +k2535,172:32583029,43133769:2499215 +) +(2535,173:20753781,43991435:11829248,505283,134348 +h2535,172:20753781,43991435:0,0,0 +r2535,172:20753781,43991435:0,639631,134348 +g2535,172:22064501,43991435 +g2535,172:22064501,43991435 +g2535,172:27179585,43991435 +g2535,172:28747861,43991435 +k2535,173:31263134,43991435:1319896 +k2535,173:32583029,43991435:1319895 +) +(2535,174:20753781,44849102:11829248,505283,134348 +h2535,173:20753781,44849102:0,0,0 +r2535,173:20753781,44849102:0,639631,134348 +g2535,173:22064501,44849102 +g2535,173:22064501,44849102 +g2535,173:26389221,44849102 +g2535,173:27957497,44849102 +k2535,174:30867952,44849102:1715078 +k2535,174:32583029,44849102:1715077 +) +(2535,175:20753781,45706769:11829248,505283,134348 +h2535,174:20753781,45706769:0,0,0 +r2535,174:20753781,45706769:0,639631,134348 +g2535,174:22064501,45706769 +g2535,174:22064501,45706769 +g2535,174:27179585,45706769 +g2535,174:30270918,45706769 +k2535,175:32024662,45706769:558367 +k2535,175:32583029,45706769:558367 +) +] +(2535,179:32583029,45706769:0,355205,126483 +h2535,179:32583029,45706769:420741,355205,126483 +k2535,179:32583029,45706769:-420741 +) +) +] +(2535,179:32583029,45706769:0,0,0 +g2535,179:32583029,45706769 +) +) +] +(2535,179:6630773,47279633:25952256,0,0 +h2535,179:6630773,47279633:25952256,0,0 +) +] +h2535,179:4262630,4025873:0,0,0 +] +!31749 }345 !12 {346 -[2537,639:4262630,47279633:28320399,43253760,0 -(2537,639:4262630,4025873:0,0,0 -[2537,639:-473657,4025873:11829248,0,0 -(2537,639:-473657,-710414:11829248,0,0 -h2537,639:-473657,-710414:0,0,0 -(2537,639:-473657,-710414:0,0,0 -(2537,639:-473657,-710414:0,0,0 -g2537,639:-473657,-710414 -(2537,639:-473657,-710414:65781,0,65781 -g2537,639:-407876,-710414 -[2537,639:-407876,-644633:0,0,0 +[2535,269:4262630,47279633:28320399,43253760,0 +(2535,269:4262630,4025873:0,0,0 +[2535,269:-473657,4025873:11829248,0,0 +(2535,269:-473657,-710414:11829248,0,0 +h2535,269:-473657,-710414:0,0,0 +(2535,269:-473657,-710414:0,0,0 +(2535,269:-473657,-710414:0,0,0 +g2535,269:-473657,-710414 +(2535,269:-473657,-710414:65781,0,65781 +g2535,269:-407876,-710414 +[2535,269:-407876,-644633:0,0,0 ] ) -k2537,639:-473657,-710414:-65781 +k2535,269:-473657,-710414:-65781 ) ) -k2537,639:11355591,-710414:11829248 -g2537,639:11355591,-710414 +k2535,269:11355591,-710414:11829248 +g2535,269:11355591,-710414 ) ] ) -[2537,639:6630773,47279633:25952256,43253760,0 -[2537,639:6630773,4812305:25952256,786432,0 -(2537,639:6630773,4812305:25952256,505283,11795 -(2537,639:6630773,4812305:25952256,505283,11795 -g2537,639:3078558,4812305 -[2537,639:3078558,4812305:0,0,0 -(2537,639:3078558,2439708:0,1703936,0 -k2537,639:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,639:2537886,2439708:1179648,16384,0 +[2535,269:6630773,47279633:25952256,43253760,0 +[2535,269:6630773,4812305:25952256,786432,0 +(2535,269:6630773,4812305:25952256,513147,134348 +(2535,269:6630773,4812305:25952256,513147,134348 +g2535,269:3078558,4812305 +[2535,269:3078558,4812305:0,0,0 +(2535,269:3078558,2439708:0,1703936,0 +k2535,269:1358238,2439708:-1720320 +(2535,1:1358238,2439708:1720320,1703936,0 +(2535,1:1358238,2439708:1179648,16384,0 +r2535,269:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,639:3078558,1915420:16384,1179648,0 +g2535,1:3062174,2439708 +(2535,1:3062174,2439708:16384,1703936,0 +[2535,1:3062174,2439708:25952256,1703936,0 +(2535,1:3062174,1915420:25952256,1179648,0 +(2535,1:3062174,1915420:16384,1179648,0 +r2535,269:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2535,1:29014430,1915420:25935872 +g2535,1:29014430,1915420 ) ] ) ) ) ] -[2537,639:3078558,4812305:0,0,0 -(2537,639:3078558,2439708:0,1703936,0 -g2537,639:29030814,2439708 -g2537,639:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,639:36151628,1915420:16384,1179648,0 +[2535,269:3078558,4812305:0,0,0 +(2535,269:3078558,2439708:0,1703936,0 +g2535,269:29030814,2439708 +g2535,269:36135244,2439708 +(2535,1:36135244,2439708:1720320,1703936,0 +(2535,1:36135244,2439708:16384,1703936,0 +[2535,1:36135244,2439708:25952256,1703936,0 +(2535,1:36135244,1915420:25952256,1179648,0 +(2535,1:36135244,1915420:16384,1179648,0 +r2535,269:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2535,1:62087500,1915420:25935872 +g2535,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,639:37855564,2439708:1179648,16384,0 +g2535,1:36675916,2439708 +(2535,1:36675916,2439708:1179648,16384,0 +r2535,269:37855564,2439708:1179648,16384,0 ) ) -k2537,639:3078556,2439708:-34777008 +k2535,269:3078556,2439708:-34777008 ) ] -[2537,639:3078558,4812305:0,0,0 -(2537,639:3078558,49800853:0,16384,2228224 -k2537,639:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,639:2537886,49800853:1179648,16384,0 +[2535,269:3078558,4812305:0,0,0 +(2535,269:3078558,49800853:0,16384,2228224 +k2535,269:1358238,49800853:-1720320 +(2535,1:1358238,49800853:1720320,16384,2228224 +(2535,1:1358238,49800853:1179648,16384,0 +r2535,269:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,639:3078558,51504789:16384,1179648,0 +g2535,1:3062174,49800853 +(2535,1:3062174,52029077:16384,1703936,0 +[2535,1:3062174,52029077:25952256,1703936,0 +(2535,1:3062174,51504789:25952256,1179648,0 +(2535,1:3062174,51504789:16384,1179648,0 +r2535,269:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2535,1:29014430,51504789:25935872 +g2535,1:29014430,51504789 ) ] ) ) ) ] -[2537,639:3078558,4812305:0,0,0 -(2537,639:3078558,49800853:0,16384,2228224 -g2537,639:29030814,49800853 -g2537,639:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,639:36151628,51504789:16384,1179648,0 +[2535,269:3078558,4812305:0,0,0 +(2535,269:3078558,49800853:0,16384,2228224 +g2535,269:29030814,49800853 +g2535,269:36135244,49800853 +(2535,1:36135244,49800853:1720320,16384,2228224 +(2535,1:36135244,52029077:16384,1703936,0 +[2535,1:36135244,52029077:25952256,1703936,0 +(2535,1:36135244,51504789:25952256,1179648,0 +(2535,1:36135244,51504789:16384,1179648,0 +r2535,269:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k2535,1:62087500,51504789:25935872 +g2535,1:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,639:37855564,49800853:1179648,16384,0 -) -) -k2537,639:3078556,49800853:-34777008 -) -] -g2537,639:6630773,4812305 -g2537,639:6630773,4812305 -g2537,639:9313817,4812305 -g2537,639:11188146,4812305 -k2537,639:31387652,4812305:20199506 -) -) -] -[2537,639:6630773,45706769:25952256,40108032,0 -(2537,639:6630773,45706769:25952256,40108032,0 -(2537,639:6630773,45706769:0,0,0 -g2537,639:6630773,45706769 -) -[2537,639:6630773,45706769:25952256,40108032,0 -(2537,639:6630773,45706769:25952256,40108032,126483 -[2537,639:6630773,45706769:11829248,40108032,102891 -(2537,541:6630773,6254097:11829248,505283,102891 -h2537,540:6630773,6254097:0,0,0 -r2537,540:6630773,6254097:0,608174,102891 -g2537,540:8596853,6254097 -g2537,540:8596853,6254097 -g2537,540:10784444,6254097 -k2537,541:15219921,6254097:3240100 -k2537,541:18460021,6254097:3240100 -) -(2537,542:6630773,7112123:11829248,505283,102891 -h2537,541:6630773,7112123:0,0,0 -r2537,541:6630773,7112123:0,608174,102891 -g2537,541:8596853,7112123 -g2537,541:8596853,7112123 -g2537,541:9980318,7112123 -g2537,541:12468064,7112123 -k2537,542:16061731,7112123:2398290 -k2537,542:18460021,7112123:2398290 -) -(2537,543:6630773,7970150:11829248,505283,102891 -h2537,542:6630773,7970150:0,0,0 -r2537,542:6630773,7970150:0,608174,102891 -g2537,542:8596853,7970150 -g2537,542:8596853,7970150 -g2537,542:9980318,7970150 -g2537,542:12197401,7970150 -k2537,543:15926400,7970150:2533622 -k2537,543:18460021,7970150:2533621 -) -(2537,544:6630773,8828176:11829248,513147,102891 -h2537,543:6630773,8828176:0,0,0 -r2537,543:6630773,8828176:0,616038,102891 -g2537,543:8596853,8828176 -g2537,543:8596853,8828176 -g2537,543:14137266,8828176 -k2537,544:16896332,8828176:1563689 -k2537,544:18460021,8828176:1563689 -) -(2537,545:6630773,9686202:11829248,505283,126483 -h2537,544:6630773,9686202:0,0,0 -r2537,544:6630773,9686202:0,631766,126483 -g2537,544:7941493,9686202 -g2537,544:7941493,9686202 -g2537,544:10309964,9686202 -g2537,544:11960160,9686202 -k2537,545:16569307,9686202:1890714 -k2537,545:18460021,9686202:1890714 -) -(2537,546:6630773,10544229:11829248,505283,126483 -h2537,545:6630773,10544229:0,0,0 -r2537,545:6630773,10544229:0,631766,126483 -g2537,545:7941493,10544229 -g2537,545:7941493,10544229 -g2537,545:11387376,10544229 -g2537,545:13158814,10544229 -k2537,546:16407106,10544229:2052915 -k2537,546:18460021,10544229:2052915 -) -(2537,547:6630773,11402255:11829248,505283,102891 -h2537,546:6630773,11402255:0,0,0 -r2537,546:6630773,11402255:0,608174,102891 -g2537,546:7941493,11402255 -g2537,546:7941493,11402255 -g2537,546:10551792,11402255 -g2537,546:12996284,11402255 -k2537,547:17087369,11402255:1372652 -k2537,547:18460021,11402255:1372652 -) -(2537,548:6630773,12260281:11829248,473825,7863 -h2537,547:6630773,12260281:0,0,0 -r2537,547:6630773,12260281:0,481688,7863 -g2537,547:7941493,12260281 -g2537,547:7941493,12260281 -k2537,548:14627476,12260281:3832545 -k2537,548:18460021,12260281:3832545 -) -(2537,549:6630773,13118308:11829248,505283,126483 -h2537,548:6630773,13118308:0,0,0 -r2537,548:6630773,13118308:0,631766,126483 -g2537,548:8596853,13118308 -g2537,548:8596853,13118308 -g2537,548:11302179,13118308 -k2537,549:15478789,13118308:2981233 -k2537,549:18460021,13118308:2981232 -) -(2537,550:6630773,13976334:11829248,505283,126483 -h2537,549:6630773,13976334:0,0,0 -r2537,549:6630773,13976334:0,631766,126483 -g2537,549:8596853,13976334 -g2537,549:8596853,13976334 -g2537,549:11128508,13976334 -g2537,549:12320607,13976334 -k2537,550:15988003,13976334:2472019 -k2537,550:18460021,13976334:2472018 -) -(2537,551:6630773,14834360:11829248,505283,102891 -h2537,550:6630773,14834360:0,0,0 -r2537,550:6630773,14834360:0,608174,102891 -g2537,550:8596853,14834360 -g2537,550:8596853,14834360 -g2537,550:11380822,14834360 -k2537,551:15518110,14834360:2941911 -k2537,551:18460021,14834360:2941911 -) -(2537,552:6630773,15692386:11829248,505283,126483 -h2537,551:6630773,15692386:0,0,0 -r2537,551:6630773,15692386:0,631766,126483 -g2537,551:7941493,15692386 -g2537,551:7941493,15692386 -g2537,551:9496007,15692386 -g2537,551:11146203,15692386 -k2537,552:16162329,15692386:2297693 -k2537,552:18460021,15692386:2297692 -) -(2537,553:6630773,16550413:11829248,505283,134348 -h2537,552:6630773,16550413:0,0,0 -r2537,552:6630773,16550413:0,639631,134348 -g2537,552:7941493,16550413 -g2537,552:7941493,16550413 -g2537,552:10458075,16550413 -k2537,553:15818265,16550413:2641757 -k2537,553:18460021,16550413:2641756 -) -(2537,554:6630773,17408439:11829248,505283,102891 -h2537,553:6630773,17408439:0,0,0 -r2537,553:6630773,17408439:0,608174,102891 -g2537,553:7941493,17408439 -g2537,553:7941493,17408439 -g2537,553:10727428,17408439 -k2537,554:15952941,17408439:2507080 -k2537,554:18460021,17408439:2507080 -) -(2537,555:6630773,18266465:11829248,485622,126483 -h2537,554:6630773,18266465:0,0,0 -r2537,554:6630773,18266465:0,612105,126483 -g2537,554:7941493,18266465 -g2537,554:7941493,18266465 -g2537,554:9433747,18266465 -g2537,554:11965402,18266465 -k2537,555:15810400,18266465:2649621 -k2537,555:18460021,18266465:2649621 -) -(2537,556:6630773,19124492:11829248,485622,134348 -h2537,555:6630773,19124492:0,0,0 -r2537,555:6630773,19124492:0,619970,134348 -g2537,555:7941493,19124492 -g2537,555:7941493,19124492 -g2537,555:9301365,19124492 -k2537,556:15239910,19124492:3220112 -k2537,556:18460021,19124492:3220111 -) -(2537,557:6630773,19982518:11829248,485622,102891 -h2537,556:6630773,19982518:0,0,0 -r2537,556:6630773,19982518:0,588513,102891 -g2537,556:7941493,19982518 -g2537,556:7941493,19982518 -g2537,556:9366901,19982518 -g2537,556:10355839,19982518 -k2537,557:15767147,19982518:2692875 -k2537,557:18460021,19982518:2692874 -) -(2537,558:6630773,20840544:11829248,505283,126483 -h2537,557:6630773,20840544:0,0,0 -r2537,557:6630773,20840544:0,631766,126483 -g2537,557:7941493,20840544 -g2537,557:7941493,20840544 -g2537,557:9151287,20840544 -g2537,557:10801483,20840544 -k2537,558:15989969,20840544:2470053 -k2537,558:18460021,20840544:2470052 -) -(2537,559:6630773,21698571:11829248,505283,102891 -h2537,558:6630773,21698571:0,0,0 -r2537,558:6630773,21698571:0,608174,102891 -g2537,558:7941493,21698571 -g2537,558:7941493,21698571 -g2537,558:9581859,21698571 -k2537,559:15380157,21698571:3079865 -k2537,559:18460021,21698571:3079864 -) -(2537,560:6630773,22556597:11829248,505283,102891 -h2537,559:6630773,22556597:0,0,0 -r2537,559:6630773,22556597:0,608174,102891 -g2537,559:7941493,22556597 -g2537,559:7941493,22556597 -g2537,559:11507962,22556597 -k2537,560:15581680,22556597:2878341 -k2537,560:18460021,22556597:2878341 -) -(2537,561:6630773,23414623:11829248,505283,126483 -h2537,560:6630773,23414623:0,0,0 -r2537,560:6630773,23414623:0,631766,126483 -g2537,560:7941493,23414623 -g2537,560:7941493,23414623 -g2537,560:9914782,23414623 -g2537,560:11564978,23414623 -k2537,561:16371716,23414623:2088305 -k2537,561:18460021,23414623:2088305 -) -(2537,562:6630773,24272650:11829248,505283,102891 -h2537,561:6630773,24272650:0,0,0 -r2537,561:6630773,24272650:0,608174,102891 -g2537,561:7941493,24272650 -g2537,561:7941493,24272650 -g2537,561:9698513,24272650 -g2537,561:11431940,24272650 -k2537,562:16305197,24272650:2154824 -k2537,562:18460021,24272650:2154824 -) -(2537,563:6630773,25130676:11829248,505283,102891 -h2537,562:6630773,25130676:0,0,0 -r2537,562:6630773,25130676:0,608174,102891 -g2537,562:7941493,25130676 -g2537,562:7941493,25130676 -g2537,562:9534673,25130676 -g2537,562:11853992,25130676 -k2537,563:16516223,25130676:1943798 -k2537,563:18460021,25130676:1943798 -) -(2537,564:6630773,25988702:11829248,505283,134348 -h2537,563:6630773,25988702:0,0,0 -g2537,563:10403025,25988702 -g2537,563:14092701,25988702 -k2537,564:16874050,25988702:1585972 -k2537,564:18460021,25988702:1585971 -) -(2537,565:6630773,26846728:11829248,505283,126483 -h2537,564:6630773,26846728:0,0,0 -g2537,564:10346009,26846728 -k2537,565:15000704,26846728:3459318 -k2537,565:18460021,26846728:3459317 -) -(2537,566:6630773,27704755:11829248,473825,126483 -h2537,565:6630773,27704755:0,0,0 -k2537,566:14011438,27704755:4448584 -k2537,566:18460021,27704755:4448583 -) -(2537,567:6630773,28562781:11829248,505283,126483 -h2537,566:6630773,28562781:0,0,0 -r2537,566:6630773,28562781:0,631766,126483 -g2537,566:7941493,28562781 -g2537,566:7941493,28562781 -g2537,566:9788297,28562781 -g2537,566:13565792,28562781 -k2537,567:16411366,28562781:2048656 -k2537,567:18460021,28562781:2048655 -) -(2537,568:6630773,29420807:11829248,505283,126483 -h2537,567:6630773,29420807:0,0,0 -g2537,567:9671643,29420807 -g2537,567:13798445,29420807 -k2537,567:18460021,29420807:1933312 -) -(2537,568:9252213,30262295:9207808,485622,11795 -k2537,568:15215334,30262295:3244688 -k2537,568:18460021,30262295:3244687 -) -(2537,569:6630773,31120322:11829248,355205,134348 -h2537,568:6630773,31120322:0,0,0 -k2537,569:14565217,31120322:3894805 -k2537,569:18460021,31120322:3894804 -) -(2537,570:6630773,31978348:11829248,505283,102891 -h2537,569:6630773,31978348:0,0,0 -r2537,569:6630773,31978348:0,608174,102891 -g2537,569:7941493,31978348 -g2537,569:7941493,31978348 -g2537,569:9828929,31978348 -k2537,570:14542934,31978348:3917087 -k2537,570:18460021,31978348:3917087 -) -(2537,571:6630773,32836374:11829248,481690,102891 -h2537,570:6630773,32836374:0,0,0 -r2537,570:6630773,32836374:0,584581,102891 -g2537,570:7941493,32836374 -g2537,570:7941493,32836374 -g2537,570:9697857,32836374 -k2537,571:14477398,32836374:3982623 -k2537,571:18460021,32836374:3982623 -) -(2537,572:6630773,33694401:11829248,505283,126483 -h2537,571:6630773,33694401:0,0,0 -r2537,571:6630773,33694401:0,631766,126483 -g2537,571:7941493,33694401 -g2537,571:7941493,33694401 -g2537,571:10495430,33694401 -k2537,572:14876185,33694401:3583837 -k2537,572:18460021,33694401:3583836 -) -(2537,573:6630773,34552427:11829248,481690,102891 -h2537,572:6630773,34552427:0,0,0 -r2537,572:6630773,34552427:0,584581,102891 -g2537,572:7941493,34552427 -g2537,572:7941493,34552427 -g2537,572:10312585,34552427 -g2537,572:11083943,34552427 -k2537,573:15170441,34552427:3289580 -k2537,573:18460021,34552427:3289580 -) -(2537,574:6630773,35410453:11829248,485622,102891 -h2537,573:6630773,35410453:0,0,0 -r2537,573:6630773,35410453:0,588513,102891 -g2537,573:7941493,35410453 -g2537,573:7941493,35410453 -g2537,573:9222721,35410453 -g2537,573:10392538,35410453 -k2537,574:15023968,35410453:3436053 -k2537,574:18460021,35410453:3436053 -) -(2537,575:6630773,36268480:11829248,485622,102891 -h2537,574:6630773,36268480:0,0,0 -r2537,574:6630773,36268480:0,588513,102891 -g2537,574:7941493,36268480 -g2537,574:7941493,36268480 -g2537,574:9435059,36268480 -g2537,574:10161197,36268480 -k2537,575:14509839,36268480:3950183 -k2537,575:18460021,36268480:3950182 -) -(2537,576:6630773,37126506:11829248,481690,134348 -h2537,575:6630773,37126506:0,0,0 -r2537,575:6630773,37126506:0,616038,134348 -g2537,575:7941493,37126506 -g2537,575:7941493,37126506 -g2537,575:10561622,37126506 -k2537,576:14909281,37126506:3550741 -k2537,576:18460021,37126506:3550740 -) -(2537,577:6630773,37984532:11829248,485622,102891 -h2537,576:6630773,37984532:0,0,0 -r2537,576:6630773,37984532:0,588513,102891 -g2537,576:7941493,37984532 -g2537,576:7941493,37984532 -g2537,576:10067480,37984532 -g2537,576:11237297,37984532 -k2537,577:15446348,37984532:3013674 -k2537,577:18460021,37984532:3013673 -) -(2537,578:6630773,38842559:11829248,513147,126483 -h2537,577:6630773,38842559:0,0,0 -r2537,577:6630773,38842559:0,639630,126483 -g2537,577:7941493,38842559 -g2537,577:7941493,38842559 -g2537,577:11129820,38842559 -g2537,577:11751757,38842559 -g2537,577:13818106,38842559 -k2537,578:16338293,38842559:2121728 -k2537,578:18460021,38842559:2121728 -) -(2537,579:6630773,39700585:11829248,485622,173670 -h2537,578:6630773,39700585:0,0,0 -r2537,578:6630773,39700585:0,659292,173670 -g2537,578:7941493,39700585 -g2537,578:7941493,39700585 -(2537,578:7941493,39700585:1181614,473825,0 -) -(2537,578:9428045,39874255:355205,473825,0 -) -g2537,578:10484484,39700585 -k2537,579:15069941,39700585:3390080 -k2537,579:18460021,39700585:3390080 -) -(2537,580:6630773,40558611:11829248,505283,102891 -h2537,579:6630773,40558611:0,0,0 -r2537,579:6630773,40558611:0,608174,102891 -k2537,579:7941493,40558611:1310720 -k2537,579:7941493,40558611:0 -k2537,579:11078046,40558611:185467 -k2537,579:12632559,40558611:185466 -k2537,579:14187073,40558611:185467 -k2537,579:17264644,40558611:185467 -k2537,580:18460021,40558611:0 -k2537,580:18460021,40558611:0 -) -(2537,581:6630773,41416637:11829248,505283,102891 -h2537,580:6630773,41416637:0,0,0 -r2537,580:6630773,41416637:0,608174,102891 -g2537,580:7941493,41416637 -g2537,580:7941493,41416637 -g2537,580:12254416,41416637 -g2537,580:13822692,41416637 -k2537,581:16739045,41416637:1720976 -k2537,581:18460021,41416637:1720976 -) -(2537,582:6630773,42274664:11829248,485622,102891 -h2537,581:6630773,42274664:0,0,0 -r2537,581:6630773,42274664:0,588513,102891 -g2537,581:7941493,42274664 -g2537,581:7941493,42274664 -g2537,581:10704490,42274664 -g2537,581:12272766,42274664 -g2537,581:13841042,42274664 -k2537,582:16748220,42274664:1711801 -k2537,582:18460021,42274664:1711801 -) -(2537,583:6630773,43132690:11829248,485622,102891 -h2537,582:6630773,43132690:0,0,0 -r2537,582:6630773,43132690:0,588513,102891 -g2537,582:7941493,43132690 -g2537,582:7941493,43132690 -g2537,582:10626502,43132690 -k2537,583:15140950,43132690:3319071 -k2537,583:18460021,43132690:3319071 -) -(2537,584:6630773,43990716:11829248,485622,102891 -h2537,583:6630773,43990716:0,0,0 -r2537,583:6630773,43990716:0,588513,102891 -g2537,583:7941493,43990716 -g2537,583:7941493,43990716 -g2537,583:10470527,43990716 -k2537,584:15062963,43990716:3397059 -k2537,584:18460021,43990716:3397058 -) -(2537,585:6630773,44848743:11829248,485622,102891 -h2537,584:6630773,44848743:0,0,0 -r2537,584:6630773,44848743:0,588513,102891 -g2537,584:7941493,44848743 -g2537,584:7941493,44848743 -g2537,584:9011041,44848743 -g2537,584:9794195,44848743 -k2537,585:14724797,44848743:3735225 -k2537,585:18460021,44848743:3735224 -) -(2537,586:6630773,45706769:11829248,485622,102891 -h2537,585:6630773,45706769:0,0,0 -r2537,585:6630773,45706769:0,588513,102891 -g2537,585:7941493,45706769 -g2537,585:7941493,45706769 -g2537,585:9953447,45706769 -k2537,586:14605193,45706769:3854828 -k2537,586:18460021,45706769:3854828 -) -] -k2537,639:19606901,45706769:1146880 -r2537,639:19606901,45706769:0,40234515,126483 -k2537,639:20753781,45706769:1146880 -[2537,639:20753781,45706769:11829248,40108032,102891 -(2537,588:20753781,6254097:11829248,505283,102891 -h2537,586:20753781,6254097:0,0,0 -r2537,586:20753781,6254097:0,608174,102891 -g2537,586:22064501,6254097 -g2537,586:22064501,6254097 -g2537,586:24861577,6254097 -g2537,586:25632935,6254097 -g2537,586:26404293,6254097 -g2537,586:27901790,6254097 -g2537,586:29071607,6254097 -g2537,586:30241424,6254097 -g2537,586:31411241,6254097 -k2537,586:32583029,6254097:201200 -) -(2537,588:23375221,7095585:9207808,485622,102891 -g2537,586:25669636,7095585 -g2537,586:26839453,7095585 -g2537,587:28407729,7095585 -g2537,587:29976005,7095585 -k2537,588:31877206,7095585:705824 -k2537,588:32583029,7095585:705823 -) -(2537,589:20753781,7938614:11829248,505283,102891 -h2537,588:20753781,7938614:0,0,0 -r2537,588:20753781,7938614:0,608174,102891 -g2537,588:22064501,7938614 -g2537,588:22064501,7938614 -g2537,588:24594190,7938614 -k2537,589:29186298,7938614:3396731 -k2537,589:32583029,7938614:3396731 -) -(2537,590:20753781,8781643:11829248,485622,102891 -h2537,589:20753781,8781643:0,0,0 -r2537,589:20753781,8781643:0,588513,102891 -g2537,589:22064501,8781643 -g2537,589:22064501,8781643 -g2537,589:23596077,8781643 -g2537,589:24367435,8781643 -g2537,589:25935711,8781643 -g2537,589:27503987,8781643 -g2537,589:29072263,8781643 -k2537,590:31425335,8781643:1157695 -k2537,590:32583029,8781643:1157694 -) -(2537,591:20753781,9624672:11829248,485622,102891 -h2537,590:20753781,9624672:0,0,0 -r2537,590:20753781,9624672:0,588513,102891 -g2537,590:22064501,9624672 -g2537,590:22064501,9624672 -g2537,590:23868706,9624672 -k2537,591:28823556,9624672:3759473 -k2537,591:32583029,9624672:3759473 -) -(2537,592:20753781,10467701:11829248,485622,102891 -h2537,591:20753781,10467701:0,0,0 -r2537,591:20753781,10467701:0,588513,102891 -g2537,591:22064501,10467701 -g2537,591:22064501,10467701 -g2537,591:23859531,10467701 -g2537,591:24630889,10467701 -g2537,591:26199165,10467701 -g2537,591:27767441,10467701 -g2537,591:29335717,10467701 -k2537,592:31557062,10467701:1025968 -k2537,592:32583029,10467701:1025967 -) -(2537,593:20753781,11310730:11829248,485622,102891 -h2537,592:20753781,11310730:0,0,0 -r2537,592:20753781,11310730:0,588513,102891 -g2537,592:22064501,11310730 -g2537,592:22064501,11310730 -g2537,592:24448700,11310730 -k2537,593:29113553,11310730:3469476 -k2537,593:32583029,11310730:3469476 -) -(2537,594:20753781,12153759:11829248,485622,102891 -h2537,593:20753781,12153759:0,0,0 -r2537,593:20753781,12153759:0,588513,102891 -g2537,593:22064501,12153759 -g2537,593:22064501,12153759 -g2537,593:24004366,12153759 -g2537,593:25572642,12153759 -k2537,594:29675524,12153759:2907505 -k2537,594:32583029,12153759:2907505 -) -(2537,595:20753781,12996788:11829248,485622,126483 -h2537,594:20753781,12996788:0,0,0 -r2537,594:20753781,12996788:0,612105,126483 -g2537,594:22064501,12996788 -g2537,594:22064501,12996788 -g2537,594:24318283,12996788 -g2537,594:25886559,12996788 -k2537,595:29832483,12996788:2750547 -k2537,595:32583029,12996788:2750546 -) -(2537,596:20753781,13839817:11829248,485622,102891 -h2537,595:20753781,13839817:0,0,0 -r2537,595:20753781,13839817:0,588513,102891 -g2537,595:22064501,13839817 -g2537,595:22064501,13839817 -g2537,595:23889022,13839817 -g2537,595:25058839,13839817 -k2537,596:29418623,13839817:3164407 -k2537,596:32583029,13839817:3164406 -) -(2537,597:20753781,14682846:11829248,485622,102891 -h2537,596:20753781,14682846:0,0,0 -r2537,596:20753781,14682846:0,588513,102891 -g2537,596:22064501,14682846 -g2537,596:22064501,14682846 -g2537,596:23729770,14682846 -k2537,597:28554859,14682846:4028171 -k2537,597:32583029,14682846:4028170 -) -(2537,598:20753781,15525875:11829248,505283,102891 -h2537,597:20753781,15525875:0,0,0 -r2537,597:20753781,15525875:0,608174,102891 -g2537,597:22064501,15525875 -g2537,597:22064501,15525875 -g2537,597:24606642,15525875 -k2537,598:28993295,15525875:3589735 -k2537,598:32583029,15525875:3589734 -) -(2537,599:20753781,16368904:11829248,505283,126483 -h2537,598:20753781,16368904:0,0,0 -g2537,598:23291334,16368904 -g2537,598:24859610,16368904 -g2537,598:26427886,16368904 -k2537,599:30103146,16368904:2479883 -k2537,599:32583029,16368904:2479883 -) -(2537,603:20753781,17892976:11829248,475791,0 -h2537,602:20753781,17892976:0,0,0 -k2537,603:26890900,17892976:5692130 -k2537,603:32583029,17892976:5692129 -) -(2537,604:20753781,18736005:11829248,473825,0 -h2537,603:20753781,18736005:0,0,0 -r2537,603:20753781,18736005:0,473825,0 -g2537,603:22064501,18736005 -g2537,603:22064501,18736005 -k2537,604:27531187,18736005:5051843 -k2537,604:32583029,18736005:5051842 -) -(2537,605:20753781,19579034:11829248,505283,126483 -h2537,604:20753781,19579034:0,0,0 -r2537,604:20753781,19579034:0,631766,126483 -g2537,604:22719861,19579034 -g2537,604:22719861,19579034 -g2537,604:24480813,19579034 -k2537,605:28930380,19579034:3652649 -k2537,605:32583029,19579034:3652649 -) -(2537,606:20753781,20422063:11829248,485622,134348 -h2537,605:20753781,20422063:0,0,0 -g2537,605:21367853,20422063 -g2537,605:22253244,20422063 -g2537,605:22808333,20422063 -g2537,605:26083822,20422063 -g2537,605:29198748,20422063 -k2537,606:31090118,20422063:1492911 -k2537,606:32583029,20422063:1492911 -) -(2537,607:20753781,21265092:11829248,505283,134348 -h2537,606:20753781,21265092:0,0,0 -g2537,606:21367853,21265092 -g2537,606:22253244,21265092 -g2537,606:22808333,21265092 -g2537,606:26023529,21265092 -g2537,606:26794887,21265092 -k2537,607:29888188,21265092:2694842 -k2537,607:32583029,21265092:2694841 -) -(2537,608:20753781,22108121:11829248,477757,134348 -h2537,607:20753781,22108121:0,0,0 -g2537,607:21367853,22108121 -g2537,607:22253244,22108121 -g2537,607:22808333,22108121 -g2537,607:25923259,22108121 -k2537,608:29452374,22108121:3130656 -k2537,608:32583029,22108121:3130655 -) -(2537,609:20753781,22951150:11829248,505283,102891 -h2537,608:20753781,22951150:0,0,0 -g2537,608:23447310,22951150 -g2537,608:26636291,22951150 -k2537,609:32583029,22951150:4979427 -) -(2537,609:23375221,23792638:9207808,505283,126483 -g2537,608:28610236,23792638 -k2537,609:32004674,23792638:578356 -k2537,609:32583029,23792638:578355 -) -(2537,610:20753781,24635667:11829248,505283,134348 -h2537,609:20753781,24635667:0,0,0 -g2537,609:23447310,24635667 -g2537,609:26742460,24635667 -k2537,610:32583029,24635667:4873258 -) -(2537,610:23375221,25477155:9207808,505283,134348 -g2537,609:28610236,25477155 -k2537,610:32057758,25477155:525272 -k2537,610:32583029,25477155:525271 -) -(2537,611:20753781,26320184:11829248,505283,126483 -h2537,610:20753781,26320184:0,0,0 -g2537,610:24190489,26320184 -g2537,610:25140105,26320184 -k2537,611:29060797,26320184:3522233 -k2537,611:32583029,26320184:3522232 -) -(2537,612:20753781,27163213:11829248,505283,126483 -h2537,611:20753781,27163213:0,0,0 -g2537,611:23117008,27163213 -k2537,612:28447707,27163213:4135322 -k2537,612:32583029,27163213:4135322 -) -(2537,613:20753781,28006242:11829248,505283,102891 -h2537,612:20753781,28006242:0,0,0 -g2537,612:24301899,28006242 -k2537,613:29040153,28006242:3542877 -k2537,613:32583029,28006242:3542876 -) -(2537,614:20753781,28849271:11829248,505283,102891 -h2537,613:20753781,28849271:0,0,0 -g2537,613:23216623,28849271 -g2537,613:24784899,28849271 -g2537,613:26353175,28849271 -g2537,613:27921451,28849271 -g2537,613:29489727,28849271 -g2537,613:31058003,28849271 -k2537,613:32583029,28849271:155979 -) -(2537,614:23375221,29690759:9207808,485622,11795 -k2537,614:28576814,29690759:4006216 -k2537,614:32583029,29690759:4006215 -) -(2537,615:20753781,30533788:11829248,505283,102891 -h2537,614:20753781,30533788:0,0,0 -g2537,614:23539716,30533788 -g2537,614:25107992,30533788 -k2537,615:29443199,30533788:3139830 -k2537,615:32583029,30533788:3139830 -) -(2537,616:20753781,31376817:11829248,505283,126483 -h2537,615:20753781,31376817:0,0,0 -g2537,615:22306328,31376817 -g2537,615:25321639,31376817 -g2537,615:26712313,31376817 -g2537,615:30491774,31376817 -k2537,616:31935861,31376817:647169 -k2537,616:32583029,31376817:647168 -) -(2537,617:20753781,32219846:11829248,513147,134348 -h2537,616:20753781,32219846:0,0,0 -g2537,616:23812346,32219846 -g2537,616:24670867,32219846 -g2537,616:28446396,32219846 -g2537,616:29616213,32219846 -k2537,617:31697310,32219846:885720 -k2537,617:32583029,32219846:885719 -) -(2537,618:20753781,33062875:11829248,505283,134348 -h2537,617:20753781,33062875:0,0,0 -g2537,617:23950627,33062875 -g2537,617:26613354,33062875 -k2537,618:29996651,33062875:2586379 -k2537,618:32583029,33062875:2586378 -) -(2537,619:20753781,33905904:11829248,505283,126483 -h2537,618:20753781,33905904:0,0,0 -g2537,618:23183856,33905904 -g2537,618:24350396,33905904 -g2537,618:28612202,33905904 -k2537,619:31928324,33905904:654705 -k2537,619:32583029,33905904:654705 -) -(2537,620:20753781,34748933:11829248,505283,126483 -h2537,619:20753781,34748933:0,0,0 -g2537,619:25015587,34748933 -g2537,619:26604179,34748933 -g2537,619:29531672,34748933 -k2537,620:31818879,34748933:764150 -k2537,620:32583029,34748933:764150 -) -(2537,621:20753781,35591962:11829248,505283,126483 -h2537,620:20753781,35591962:0,0,0 -g2537,620:25015587,35591962 -g2537,620:28049903,35591962 -k2537,621:30714925,35591962:1868104 -k2537,621:32583029,35591962:1868104 -) -(2537,622:20753781,36434991:11829248,505283,126483 -h2537,621:20753781,36434991:0,0,0 -g2537,621:24053518,36434991 -k2537,622:28915962,36434991:3667067 -k2537,622:32583029,36434991:3667067 -) -(2537,623:20753781,37278020:11829248,505283,126483 -h2537,622:20753781,37278020:0,0,0 -g2537,622:24468361,37278020 -k2537,623:29123384,37278020:3459646 -k2537,623:32583029,37278020:3459645 -) -(2537,624:20753781,38121049:11829248,505283,134348 -h2537,623:20753781,38121049:0,0,0 -g2537,623:24100704,38121049 -g2537,623:26615320,38121049 -k2537,624:30958391,38121049:1624638 -k2537,624:32583029,38121049:1624638 -) -(2537,625:20753781,38964078:11829248,505283,102891 -h2537,624:20753781,38964078:0,0,0 -g2537,624:24511615,38964078 -g2537,624:26079891,38964078 -k2537,625:29929149,38964078:2653881 -k2537,625:32583029,38964078:2653880 -) -(2537,626:20753781,39807107:11829248,485622,102891 -h2537,625:20753781,39807107:0,0,0 -g2537,625:22765735,39807107 -k2537,626:28072841,39807107:4510188 -k2537,626:32583029,39807107:4510188 -) -(2537,627:20753781,40650136:11829248,505283,102891 -h2537,626:20753781,40650136:0,0,0 -g2537,626:23222521,40650136 -k2537,627:28500464,40650136:4082566 -k2537,627:32583029,40650136:4082565 -) -(2537,628:20753781,41493165:11829248,505283,102891 -h2537,627:20753781,41493165:0,0,0 -g2537,627:24892379,41493165 -k2537,628:29136163,41493165:3446866 -k2537,628:32583029,41493165:3446866 -) -(2537,629:20753781,42336194:11829248,505283,102891 -h2537,628:20753781,42336194:0,0,0 -g2537,628:24345808,42336194 -k2537,629:29062107,42336194:3520922 -k2537,629:32583029,42336194:3520922 -) -(2537,630:20753781,43179223:11829248,485622,126483 -h2537,629:20753781,43179223:0,0,0 -g2537,629:25596891,43179223 -k2537,630:29687649,43179223:2895381 -k2537,630:32583029,43179223:2895380 -) -(2537,631:20753781,44022252:11829248,505283,126483 -h2537,630:20753781,44022252:0,0,0 -g2537,630:23769747,44022252 -g2537,630:27373571,44022252 -g2537,630:28382170,44022252 -k2537,630:32583029,44022252:2637825 -) -(2537,631:23375221,44863740:9207808,485622,11795 -k2537,631:29338342,44863740:3244688 -k2537,631:32583029,44863740:3244687 -) -(2537,632:20753781,45706769:11829248,505283,102891 -h2537,631:20753781,45706769:0,0,0 -g2537,631:23967010,45706769 -k2537,632:28872708,45706769:3710321 -k2537,632:32583029,45706769:3710321 -) -] -(2537,639:32583029,45706769:0,355205,126483 -h2537,639:32583029,45706769:420741,355205,126483 -k2537,639:32583029,45706769:-420741 -) -) -] -(2537,639:32583029,45706769:0,0,0 -g2537,639:32583029,45706769 -) -) -] -(2537,639:6630773,47279633:25952256,0,0 -h2537,639:6630773,47279633:25952256,0,0 -) -] -h2537,639:4262630,4025873:0,0,0 -] -!28491 +g2535,1:36675916,49800853 +(2535,1:36675916,49800853:1179648,16384,0 +r2535,269:37855564,49800853:1179648,16384,0 +) +) +k2535,269:3078556,49800853:-34777008 +) +] +g2535,269:6630773,4812305 +g2535,269:6630773,4812305 +g2535,269:8528695,4812305 +g2535,269:9343962,4812305 +g2535,269:9957379,4812305 +g2535,269:12215094,4812305 +g2535,269:13170608,4812305 +g2535,269:16094824,4812305 +k2535,269:31387652,4812305:15292828 +) +) +] +[2535,269:6630773,45706769:25952256,40108032,0 +(2535,269:6630773,45706769:25952256,40108032,0 +(2535,269:6630773,45706769:0,0,0 +g2535,269:6630773,45706769 +) +[2535,269:6630773,45706769:25952256,40108032,0 +(2535,269:6630773,45706769:25952256,40108032,126483 +[2535,269:6630773,45706769:11829248,40108032,102891 +(2535,176:6630773,6254097:11829248,505283,134348 +h2535,175:6630773,6254097:0,0,0 +r2535,175:6630773,6254097:0,639631,134348 +g2535,175:7941493,6254097 +g2535,175:7941493,6254097 +g2535,175:14637306,6254097 +k2535,176:17146352,6254097:1313669 +k2535,176:18460021,6254097:1313669 +) +(2535,177:6630773,7113305:11829248,505283,134348 +h2535,176:6630773,7113305:0,0,0 +r2535,176:6630773,7113305:0,639631,134348 +g2535,176:7941493,7113305 +g2535,176:7941493,7113305 +g2535,176:15427670,7113305 +k2535,177:17541534,7113305:918487 +k2535,177:18460021,7113305:918487 +) +(2535,178:6630773,7972512:11829248,505283,134348 +h2535,177:6630773,7972512:0,0,0 +r2535,177:6630773,7972512:0,639631,134348 +g2535,177:7941493,7972512 +g2535,177:7941493,7972512 +g2535,177:11871031,7972512 +k2535,178:15763215,7972512:2696807 +k2535,178:18460021,7972512:2696806 +) +(2535,179:6630773,8831720:11829248,505283,134348 +h2535,178:6630773,8831720:0,0,0 +r2535,178:6630773,8831720:0,639631,134348 +g2535,178:7941493,8831720 +g2535,178:7941493,8831720 +g2535,178:12661395,8831720 +g2535,178:14229671,8831720 +g2535,178:15797947,8831720 +k2535,178:18460021,8831720:1293027 +) +(2535,179:9252213,9673208:9207808,485622,102891 +g2535,178:10820489,9673208 +g2535,178:12388765,9673208 +k2535,179:16022082,9673208:2437940 +k2535,179:18460021,9673208:2437939 +) +(2535,180:6630773,10532415:11829248,505283,134348 +h2535,179:6630773,10532415:0,0,0 +r2535,179:6630773,10532415:0,639631,134348 +g2535,179:7941493,10532415 +g2535,179:7941493,10532415 +g2535,179:14637306,10532415 +k2535,180:17146352,10532415:1313669 +k2535,180:18460021,10532415:1313669 +) +(2535,181:6630773,11391623:11829248,505283,134348 +h2535,180:6630773,11391623:0,0,0 +r2535,180:6630773,11391623:0,639631,134348 +g2535,180:7941493,11391623 +g2535,180:7941493,11391623 +g2535,180:12661395,11391623 +g2535,180:14229671,11391623 +k2535,181:16942535,11391623:1517487 +k2535,181:18460021,11391623:1517486 +) +(2535,182:6630773,12250831:11829248,505283,134348 +h2535,181:6630773,12250831:0,0,0 +r2535,181:6630773,12250831:0,639631,134348 +g2535,181:7941493,12250831 +g2535,181:7941493,12250831 +g2535,181:12661395,12250831 +g2535,181:14229671,12250831 +k2535,182:16942535,12250831:1517487 +k2535,182:18460021,12250831:1517486 +) +(2535,183:6630773,13110038:11829248,505283,134348 +h2535,182:6630773,13110038:0,0,0 +r2535,182:6630773,13110038:0,639631,134348 +g2535,182:7941493,13110038 +g2535,182:7941493,13110038 +g2535,182:14242123,13110038 +k2535,183:16948761,13110038:1511261 +k2535,183:18460021,13110038:1511260 +) +(2535,184:6630773,13969246:11829248,505283,134348 +h2535,183:6630773,13969246:0,0,0 +r2535,183:6630773,13969246:0,639631,134348 +g2535,183:7941493,13969246 +g2535,183:7941493,13969246 +g2535,183:12266213,13969246 +g2535,183:13834489,13969246 +k2535,184:16744944,13969246:1715078 +k2535,184:18460021,13969246:1715077 +) +(2535,185:6630773,14828454:11829248,505283,134348 +h2535,184:6630773,14828454:0,0,0 +r2535,184:6630773,14828454:0,639631,134348 +g2535,184:7941493,14828454 +g2535,184:7941493,14828454 +g2535,184:13056577,14828454 +g2535,184:14624853,14828454 +g2535,184:16193129,14828454 +k2535,184:18460021,14828454:897845 +) +(2535,185:9252213,15669942:9207808,485622,102891 +g2535,184:10820489,15669942 +g2535,184:12388765,15669942 +k2535,185:16022082,15669942:2437940 +k2535,185:18460021,15669942:2437939 +) +(2535,186:6630773,16529149:11829248,505283,134348 +h2535,185:6630773,16529149:0,0,0 +r2535,185:6630773,16529149:0,639631,134348 +g2535,185:7941493,16529149 +g2535,185:7941493,16529149 +g2535,185:15032488,16529149 +g2535,185:16600764,16529149 +k2535,185:18460021,16529149:490210 +) +(2535,186:9252213,17370637:9207808,485622,0 +k2535,186:14453806,17370637:4006216 +k2535,186:18460021,17370637:4006215 +) +(2535,187:6630773,18229845:11829248,505283,134348 +h2535,186:6630773,18229845:0,0,0 +r2535,186:6630773,18229845:0,639631,134348 +g2535,186:7941493,18229845 +g2535,186:7941493,18229845 +g2535,186:13056577,18229845 +k2535,187:16355988,18229845:2104034 +k2535,187:18460021,18229845:2104033 +) +(2535,188:6630773,19089052:11829248,505283,134348 +h2535,187:6630773,19089052:0,0,0 +r2535,187:6630773,19089052:0,639631,134348 +g2535,187:7941493,19089052 +g2535,187:7941493,19089052 +g2535,187:13056577,19089052 +k2535,188:16355988,19089052:2104034 +k2535,188:18460021,19089052:2104033 +) +(2535,189:6630773,19948260:11829248,505283,134348 +h2535,188:6630773,19948260:0,0,0 +r2535,188:6630773,19948260:0,639631,134348 +g2535,188:7941493,19948260 +g2535,188:7941493,19948260 +g2535,188:12661395,19948260 +k2535,189:16158397,19948260:2301625 +k2535,189:18460021,19948260:2301624 +) +(2535,190:6630773,20807468:11829248,505283,134348 +h2535,189:6630773,20807468:0,0,0 +r2535,189:6630773,20807468:0,639631,134348 +g2535,189:7941493,20807468 +g2535,189:7941493,20807468 +g2535,189:12661395,20807468 +k2535,190:16158397,20807468:2301625 +k2535,190:18460021,20807468:2301624 +) +(2535,191:6630773,21666675:11829248,505283,134348 +h2535,190:6630773,21666675:0,0,0 +r2535,190:6630773,21666675:0,639631,134348 +g2535,190:7941493,21666675 +g2535,190:7941493,21666675 +g2535,190:12266213,21666675 +k2535,191:15960806,21666675:2499216 +k2535,191:18460021,21666675:2499215 +) +(2535,192:6630773,22525883:11829248,505283,134348 +h2535,191:6630773,22525883:0,0,0 +r2535,191:6630773,22525883:0,639631,134348 +g2535,191:7941493,22525883 +g2535,191:7941493,22525883 +g2535,191:13846941,22525883 +k2535,192:16751170,22525883:1708852 +k2535,192:18460021,22525883:1708851 +) +(2535,193:6630773,23385091:11829248,513147,134348 +h2535,192:6630773,23385091:0,0,0 +r2535,192:6630773,23385091:0,647495,134348 +g2535,192:7941493,23385091 +g2535,192:7941493,23385091 +g2535,192:11871031,23385091 +k2535,193:15763215,23385091:2696807 +k2535,193:18460021,23385091:2696806 +) +(2535,194:6630773,24244298:11829248,513147,134348 +h2535,193:6630773,24244298:0,0,0 +r2535,193:6630773,24244298:0,647495,134348 +g2535,193:7941493,24244298 +g2535,193:7941493,24244298 +g2535,193:14242123,24244298 +k2535,194:16948761,24244298:1511261 +k2535,194:18460021,24244298:1511260 +) +(2535,195:6630773,25103506:11829248,513147,134348 +h2535,194:6630773,25103506:0,0,0 +r2535,194:6630773,25103506:0,647495,134348 +g2535,194:7941493,25103506 +g2535,194:7941493,25103506 +g2535,194:13846941,25103506 +k2535,195:16751170,25103506:1708852 +k2535,195:18460021,25103506:1708851 +) +(2535,196:6630773,25962713:11829248,505283,134348 +h2535,195:6630773,25962713:0,0,0 +r2535,195:6630773,25962713:0,639631,134348 +g2535,195:7941493,25962713 +g2535,195:7941493,25962713 +g2535,195:13451759,25962713 +k2535,196:16553579,25962713:1906443 +k2535,196:18460021,25962713:1906442 +) +(2535,197:6630773,26821921:11829248,505283,134348 +h2535,196:6630773,26821921:0,0,0 +r2535,196:6630773,26821921:0,639631,134348 +g2535,196:7941493,26821921 +g2535,196:7941493,26821921 +g2535,196:13056577,26821921 +k2535,197:16355988,26821921:2104034 +k2535,197:18460021,26821921:2104033 +) +(2535,198:6630773,27681129:11829248,505283,134348 +h2535,197:6630773,27681129:0,0,0 +r2535,197:6630773,27681129:0,639631,134348 +g2535,197:7941493,27681129 +g2535,197:7941493,27681129 +g2535,197:12661395,27681129 +k2535,198:16158397,27681129:2301625 +k2535,198:18460021,27681129:2301624 +) +(2535,199:6630773,28540336:11829248,505283,134348 +h2535,198:6630773,28540336:0,0,0 +r2535,198:6630773,28540336:0,639631,134348 +g2535,198:7941493,28540336 +g2535,198:7941493,28540336 +g2535,198:12266213,28540336 +k2535,199:15960806,28540336:2499216 +k2535,199:18460021,28540336:2499215 +) +(2535,200:6630773,29399544:11829248,505283,134348 +h2535,199:6630773,29399544:0,0,0 +r2535,199:6630773,29399544:0,639631,134348 +g2535,199:7941493,29399544 +g2535,199:7941493,29399544 +g2535,199:13056577,29399544 +g2535,199:14624853,29399544 +k2535,200:17140126,29399544:1319896 +k2535,200:18460021,29399544:1319895 +) +(2535,201:6630773,30258751:11829248,505283,134348 +h2535,200:6630773,30258751:0,0,0 +r2535,200:6630773,30258751:0,639631,134348 +g2535,200:7941493,30258751 +g2535,200:7941493,30258751 +g2535,200:14637306,30258751 +k2535,201:17146352,30258751:1313669 +k2535,201:18460021,30258751:1313669 +) +(2535,202:6630773,31117959:11829248,485622,134348 +h2535,201:6630773,31117959:0,0,0 +r2535,201:6630773,31117959:0,619970,134348 +g2535,201:7941493,31117959 +g2535,201:7941493,31117959 +g2535,201:11871031,31117959 +g2535,201:13439307,31117959 +g2535,201:15007583,31117959 +k2535,202:17331491,31117959:1128531 +k2535,202:18460021,31117959:1128530 +) +(2535,203:6630773,31977167:11829248,505283,134348 +h2535,202:6630773,31977167:0,0,0 +r2535,202:6630773,31977167:0,639631,134348 +g2535,202:7941493,31977167 +g2535,202:7941493,31977167 +g2535,202:12661395,31977167 +g2535,202:14229671,31977167 +k2535,202:18460021,31977167:1338246 +) +(2535,203:9252213,32818655:9207808,485622,102891 +g2535,202:10820489,32818655 +k2535,203:15237944,32818655:3222078 +k2535,203:18460021,32818655:3222077 +) +(2535,204:6630773,33677862:11829248,505283,134348 +h2535,203:6630773,33677862:0,0,0 +r2535,203:6630773,33677862:0,639631,134348 +g2535,203:7941493,33677862 +g2535,203:7941493,33677862 +g2535,203:14242123,33677862 +k2535,204:16948761,33677862:1511261 +k2535,204:18460021,33677862:1511260 +) +(2535,205:6630773,34537070:11829248,505283,134348 +h2535,204:6630773,34537070:0,0,0 +r2535,204:6630773,34537070:0,639631,134348 +g2535,204:7941493,34537070 +g2535,204:7941493,34537070 +g2535,204:15032488,34537070 +k2535,205:17343943,34537070:1116078 +k2535,205:18460021,34537070:1116078 +) +(2535,206:6630773,35396278:11829248,505283,134348 +h2535,205:6630773,35396278:0,0,0 +r2535,205:6630773,35396278:0,639631,134348 +g2535,205:7941493,35396278 +g2535,205:7941493,35396278 +g2535,205:12661395,35396278 +g2535,205:14229671,35396278 +k2535,206:16942535,35396278:1517487 +k2535,206:18460021,35396278:1517486 +) +(2535,207:6630773,36255485:11829248,505283,134348 +h2535,206:6630773,36255485:0,0,0 +r2535,206:6630773,36255485:0,639631,134348 +g2535,206:7941493,36255485 +g2535,206:7941493,36255485 +g2535,206:13451759,36255485 +k2535,207:16553579,36255485:1906443 +k2535,207:18460021,36255485:1906442 +) +(2535,208:6630773,37114693:11829248,505283,134348 +h2535,207:6630773,37114693:0,0,0 +r2535,207:6630773,37114693:0,639631,134348 +g2535,207:7941493,37114693 +g2535,207:7941493,37114693 +g2535,207:12266213,37114693 +k2535,208:15960806,37114693:2499216 +k2535,208:18460021,37114693:2499215 +) +(2535,209:6630773,37973900:11829248,505283,134348 +h2535,208:6630773,37973900:0,0,0 +r2535,208:6630773,37973900:0,639631,134348 +g2535,208:7941493,37973900 +g2535,208:7941493,37973900 +g2535,208:13056577,37973900 +g2535,208:14624853,37973900 +k2535,209:17140126,37973900:1319896 +k2535,209:18460021,37973900:1319895 +) +(2535,210:6630773,38833108:11829248,505283,134348 +h2535,209:6630773,38833108:0,0,0 +r2535,209:6630773,38833108:0,639631,134348 +g2535,209:7941493,38833108 +g2535,209:7941493,38833108 +g2535,209:10290302,38833108 +k2535,210:14972850,38833108:3487171 +k2535,210:18460021,38833108:3487171 +) +(2535,211:6630773,39692316:11829248,505283,134348 +h2535,210:6630773,39692316:0,0,0 +r2535,210:6630773,39692316:0,639631,134348 +g2535,210:7941493,39692316 +g2535,210:7941493,39692316 +g2535,210:11080667,39692316 +k2535,211:15368033,39692316:3091989 +k2535,211:18460021,39692316:3091988 +) +(2535,212:6630773,40551523:11829248,505283,134348 +h2535,211:6630773,40551523:0,0,0 +r2535,211:6630773,40551523:0,639631,134348 +g2535,211:7941493,40551523 +g2535,211:7941493,40551523 +g2535,211:11475849,40551523 +g2535,211:12645666,40551523 +g2535,211:14213942,40551523 +k2535,212:16934670,40551523:1525351 +k2535,212:18460021,40551523:1525351 +) +(2535,213:6630773,41410731:11829248,505283,134348 +h2535,212:6630773,41410731:0,0,0 +r2535,212:6630773,41410731:0,639631,134348 +g2535,212:7941493,41410731 +g2535,212:7941493,41410731 +g2535,212:13056577,41410731 +k2535,213:16355988,41410731:2104034 +k2535,213:18460021,41410731:2104033 +) +(2535,214:6630773,42269939:11829248,505283,134348 +h2535,213:6630773,42269939:0,0,0 +r2535,213:6630773,42269939:0,639631,134348 +g2535,213:7941493,42269939 +g2535,213:7941493,42269939 +g2535,213:11871031,42269939 +k2535,214:15763215,42269939:2696807 +k2535,214:18460021,42269939:2696806 +) +(2535,215:6630773,43129146:11829248,505283,134348 +h2535,214:6630773,43129146:0,0,0 +r2535,214:6630773,43129146:0,639631,134348 +g2535,214:7941493,43129146 +g2535,214:7941493,43129146 +g2535,214:9895120,43129146 +k2535,215:14576030,43129146:3883992 +k2535,215:18460021,43129146:3883991 +) +(2535,216:6630773,43988354:11829248,505283,134348 +h2535,215:6630773,43988354:0,0,0 +r2535,215:6630773,43988354:0,639631,134348 +g2535,215:7941493,43988354 +g2535,215:7941493,43988354 +g2535,215:10290302,43988354 +k2535,216:14972850,43988354:3487171 +k2535,216:18460021,43988354:3487171 +) +(2535,217:6630773,44847561:11829248,505283,134348 +h2535,216:6630773,44847561:0,0,0 +r2535,216:6630773,44847561:0,639631,134348 +g2535,216:7941493,44847561 +g2535,216:7941493,44847561 +g2535,216:12266213,44847561 +g2535,216:13834489,44847561 +k2535,217:16744944,44847561:1715078 +k2535,217:18460021,44847561:1715077 +) +(2535,218:6630773,45706769:11829248,505283,102891 +h2535,217:6630773,45706769:0,0,0 +r2535,217:6630773,45706769:0,608174,102891 +g2535,217:7941493,45706769 +g2535,217:7941493,45706769 +g2535,217:10290302,45706769 +k2535,218:14972850,45706769:3487171 +k2535,218:18460021,45706769:3487171 +) +] +k2535,269:19606901,45706769:1146880 +r2535,269:19606901,45706769:0,40234515,126483 +k2535,269:20753781,45706769:1146880 +[2535,269:20753781,45706769:11829248,40108032,102891 +(2535,219:20753781,6254097:11829248,505283,102891 +h2535,218:20753781,6254097:0,0,0 +r2535,218:20753781,6254097:0,608174,102891 +g2535,218:22064501,6254097 +g2535,218:22064501,6254097 +g2535,218:25598857,6254097 +g2535,218:27167133,6254097 +k2535,219:30472770,6254097:2110260 +k2535,219:32583029,6254097:2110259 +) +(2535,220:20753781,7111764:11829248,505283,102891 +h2535,219:20753781,7111764:0,0,0 +r2535,219:20753781,7111764:0,608174,102891 +g2535,219:22064501,7111764 +g2535,219:22064501,7111764 +g2535,219:24808493,7111764 +g2535,219:25978310,7111764 +k2535,220:29679129,7111764:2903901 +k2535,220:32583029,7111764:2903900 +) +(2535,221:20753781,7969431:11829248,505283,126483 +h2535,220:20753781,7969431:0,0,0 +r2535,220:20753781,7969431:0,631766,126483 +g2535,220:22064501,7969431 +g2535,220:22064501,7969431 +g2535,220:24808493,7969431 +k2535,221:29094220,7969431:3488809 +k2535,221:32583029,7969431:3488809 +) +(2535,222:20753781,8827097:11829248,505283,102891 +h2535,221:20753781,8827097:0,0,0 +r2535,221:20753781,8827097:0,608174,102891 +g2535,221:22064501,8827097 +g2535,221:22064501,8827097 +g2535,221:23622946,8827097 +g2535,221:25191222,8827097 +k2535,222:29484814,8827097:3098215 +k2535,222:32583029,8827097:3098215 +) +(2535,223:20753781,9684764:11829248,505283,102891 +h2535,222:20753781,9684764:0,0,0 +r2535,222:20753781,9684764:0,608174,102891 +g2535,222:22064501,9684764 +g2535,222:22064501,9684764 +g2535,222:26784403,9684764 +k2535,223:30281405,9684764:2301625 +k2535,223:32583029,9684764:2301624 +) +(2535,224:20753781,10542431:11829248,505283,102891 +h2535,223:20753781,10542431:0,0,0 +r2535,223:20753781,10542431:0,608174,102891 +g2535,223:22064501,10542431 +g2535,223:22064501,10542431 +g2535,223:26389221,10542431 +g2535,223:27559038,10542431 +k2535,224:30668722,10542431:1914307 +k2535,224:32583029,10542431:1914307 +) +(2535,225:20753781,11400098:11829248,505283,134348 +h2535,224:20753781,11400098:0,0,0 +r2535,224:20753781,11400098:0,639631,134348 +g2535,224:22064501,11400098 +g2535,224:22064501,11400098 +g2535,224:27179585,11400098 +k2535,225:30478996,11400098:2104034 +k2535,225:32583029,11400098:2104033 +) +(2535,226:20753781,12257764:11829248,505283,134348 +h2535,225:20753781,12257764:0,0,0 +r2535,225:20753781,12257764:0,639631,134348 +g2535,225:22064501,12257764 +g2535,225:22064501,12257764 +g2535,225:29550678,12257764 +k2535,226:31664542,12257764:918487 +k2535,226:32583029,12257764:918487 +) +(2535,227:20753781,13115431:11829248,505283,126483 +h2535,226:20753781,13115431:0,0,0 +r2535,226:20753781,13115431:0,631766,126483 +g2535,226:22064501,13115431 +g2535,226:22064501,13115431 +g2535,226:26389221,13115431 +k2535,227:29884584,13115431:2698445 +k2535,227:32583029,13115431:2698445 +) +(2535,228:20753781,13973098:11829248,505283,102891 +h2535,227:20753781,13973098:0,0,0 +r2535,227:20753781,13973098:0,608174,102891 +g2535,227:22064501,13973098 +g2535,227:22064501,13973098 +g2535,227:27969949,13973098 +k2535,228:30674948,13973098:1908081 +k2535,228:32583029,13973098:1908081 +) +(2535,229:20753781,14830765:11829248,505283,134348 +h2535,228:20753781,14830765:0,0,0 +r2535,228:20753781,14830765:0,639631,134348 +g2535,228:22064501,14830765 +g2535,228:22064501,14830765 +g2535,228:27179585,14830765 +k2535,229:30279766,14830765:2303263 +k2535,229:32583029,14830765:2303263 +) +(2535,230:20753781,15688432:11829248,505283,102891 +h2535,229:20753781,15688432:0,0,0 +r2535,229:20753781,15688432:0,608174,102891 +g2535,229:22064501,15688432 +g2535,229:22064501,15688432 +g2535,229:26784403,15688432 +k2535,230:30082175,15688432:2500854 +k2535,230:32583029,15688432:2500854 +) +(2535,231:20753781,16546098:11829248,505283,102891 +h2535,230:20753781,16546098:0,0,0 +r2535,230:20753781,16546098:0,608174,102891 +g2535,230:22064501,16546098 +g2535,230:22064501,16546098 +g2535,230:25203675,16546098 +k2535,231:29291811,16546098:3291218 +k2535,231:32583029,16546098:3291218 +) +(2535,232:20753781,17403765:11829248,505283,102891 +h2535,231:20753781,17403765:0,0,0 +r2535,231:20753781,17403765:0,608174,102891 +g2535,231:22064501,17403765 +g2535,231:22064501,17403765 +g2535,231:27179585,17403765 +g2535,231:28349402,17403765 +k2535,232:30864675,17403765:1718355 +k2535,232:32583029,17403765:1718354 +) +(2535,233:20753781,18261432:11829248,505283,102891 +h2535,232:20753781,18261432:0,0,0 +r2535,232:20753781,18261432:0,608174,102891 +g2535,232:22064501,18261432 +g2535,232:22064501,18261432 +g2535,232:26784403,18261432 +k2535,233:30082175,18261432:2500854 +k2535,233:32583029,18261432:2500854 +) +(2535,234:20753781,19119099:11829248,505283,102891 +h2535,233:20753781,19119099:0,0,0 +r2535,233:20753781,19119099:0,608174,102891 +g2535,233:22064501,19119099 +g2535,233:22064501,19119099 +g2535,233:26784403,19119099 +k2535,234:30281405,19119099:2301625 +k2535,234:32583029,19119099:2301624 +) +(2535,235:20753781,19976766:11829248,505283,102891 +h2535,234:20753781,19976766:0,0,0 +r2535,234:20753781,19976766:0,608174,102891 +g2535,234:22064501,19976766 +g2535,234:22064501,19976766 +g2535,234:25598857,19976766 +k2535,235:29688632,19976766:2894398 +k2535,235:32583029,19976766:2894397 +) +(2535,236:20753781,20834432:11829248,505283,126483 +h2535,235:20753781,20834432:0,0,0 +r2535,235:20753781,20834432:0,631766,126483 +g2535,235:22064501,20834432 +g2535,235:22064501,20834432 +g2535,235:27969949,20834432 +k2535,236:30874178,20834432:1708852 +k2535,236:32583029,20834432:1708851 +) +(2535,237:20753781,21692099:11829248,505283,102891 +h2535,236:20753781,21692099:0,0,0 +r2535,236:20753781,21692099:0,608174,102891 +g2535,236:22064501,21692099 +g2535,236:22064501,21692099 +g2535,236:24808493,21692099 +g2535,236:26376769,21692099 +k2535,237:30077588,21692099:2505442 +k2535,237:32583029,21692099:2505441 +) +(2535,238:20753781,22549766:11829248,513147,134348 +h2535,237:20753781,22549766:0,0,0 +r2535,237:20753781,22549766:0,647495,134348 +g2535,237:22064501,22549766 +g2535,237:22064501,22549766 +g2535,237:26784403,22549766 +k2535,238:30281405,22549766:2301625 +k2535,238:32583029,22549766:2301624 +) +(2535,239:20753781,23407433:11829248,505283,134348 +h2535,238:20753781,23407433:0,0,0 +r2535,238:20753781,23407433:0,639631,134348 +g2535,238:22064501,23407433 +g2535,238:22064501,23407433 +g2535,238:25598857,23407433 +g2535,238:26768674,23407433 +g2535,238:27938491,23407433 +g2535,238:29108308,23407433 +g2535,238:30278125,23407433 +k2535,239:32028266,23407433:554764 +k2535,239:32583029,23407433:554763 +) +(2535,240:20753781,24265099:11829248,505283,102891 +h2535,239:20753781,24265099:0,0,0 +r2535,239:20753781,24265099:0,608174,102891 +g2535,239:22064501,24265099 +g2535,239:22064501,24265099 +g2535,239:25598857,24265099 +g2535,239:26768674,24265099 +g2535,239:27938491,24265099 +k2535,240:30659219,24265099:1923810 +k2535,240:32583029,24265099:1923810 +) +(2535,241:20753781,25122766:11829248,505283,102891 +h2535,240:20753781,25122766:0,0,0 +r2535,240:20753781,25122766:0,608174,102891 +g2535,240:22064501,25122766 +g2535,240:22064501,25122766 +g2535,240:26389221,25122766 +g2535,240:27559038,25122766 +k2535,241:30469493,25122766:2113537 +k2535,241:32583029,25122766:2113536 +) +(2535,242:20753781,25980433:11829248,505283,126483 +h2535,241:20753781,25980433:0,0,0 +r2535,241:20753781,25980433:0,631766,126483 +g2535,241:22064501,25980433 +g2535,241:22064501,25980433 +g2535,241:25994039,25980433 +k2535,242:29886223,25980433:2696807 +k2535,242:32583029,25980433:2696806 +) +(2535,243:20753781,26838100:11829248,505283,102891 +h2535,242:20753781,26838100:0,0,0 +r2535,242:20753781,26838100:0,608174,102891 +g2535,242:22064501,26838100 +g2535,242:22064501,26838100 +g2535,242:24808493,26838100 +k2535,243:29094220,26838100:3488809 +k2535,243:32583029,26838100:3488809 +) +(2535,244:20753781,27695767:11829248,505283,102891 +h2535,243:20753781,27695767:0,0,0 +r2535,243:20753781,27695767:0,608174,102891 +g2535,243:22064501,27695767 +g2535,243:22064501,27695767 +g2535,243:26784403,27695767 +k2535,244:30281405,27695767:2301625 +k2535,244:32583029,27695767:2301624 +) +(2535,245:20753781,28553433:11829248,513147,102891 +h2535,244:20753781,28553433:0,0,0 +r2535,244:20753781,28553433:0,616038,102891 +g2535,244:22064501,28553433 +g2535,244:22064501,28553433 +g2535,244:27179585,28553433 +k2535,245:30478996,28553433:2104034 +k2535,245:32583029,28553433:2104033 +) +(2535,246:20753781,29411100:11829248,505283,102891 +h2535,245:20753781,29411100:0,0,0 +r2535,245:20753781,29411100:0,608174,102891 +k2535,245:22064501,29411100:1310720 +k2535,245:22064501,29411100:0 +k2535,245:24005895,29411100:186996 +k2535,245:25163479,29411100:186996 +k2535,245:26719522,29411100:186996 +k2535,245:28275566,29411100:186997 +k2535,245:29831609,29411100:186996 +k2535,245:31387652,29411100:186996 +k2535,246:32583029,29411100:0 +k2535,246:32583029,29411100:0 +) +(2535,247:20753781,30268767:11829248,505283,102891 +h2535,246:20753781,30268767:0,0,0 +r2535,246:20753781,30268767:0,608174,102891 +g2535,246:22064501,30268767 +g2535,246:22064501,30268767 +g2535,246:24808493,30268767 +k2535,247:29094220,30268767:3488809 +k2535,247:32583029,30268767:3488809 +) +(2535,248:20753781,31126434:11829248,505283,134348 +h2535,247:20753781,31126434:0,0,0 +r2535,247:20753781,31126434:0,639631,134348 +g2535,247:22064501,31126434 +g2535,247:22064501,31126434 +g2535,247:24413310,31126434 +k2535,248:29095858,31126434:3487171 +k2535,248:32583029,31126434:3487171 +) +(2535,249:20753781,31984100:11829248,505283,134348 +h2535,248:20753781,31984100:0,0,0 +r2535,248:20753781,31984100:0,639631,134348 +g2535,248:22064501,31984100 +g2535,248:22064501,31984100 +g2535,248:24830776,31984100 +g2535,248:28387415,31984100 +g2535,248:31131407,31984100 +k2535,249:32255677,31984100:327352 +k2535,249:32583029,31984100:327352 +) +(2535,250:20753781,32841767:11829248,505283,102891 +h2535,249:20753781,32841767:0,0,0 +r2535,249:20753781,32841767:0,608174,102891 +g2535,249:22064501,32841767 +g2535,249:22064501,32841767 +g2535,249:24018128,32841767 +g2535,249:25187945,32841767 +k2535,250:29283946,32841767:3299083 +k2535,250:32583029,32841767:3299083 +) +(2535,251:20753781,33699434:11829248,505283,102891 +h2535,250:20753781,33699434:0,0,0 +r2535,250:20753781,33699434:0,608174,102891 +g2535,250:22064501,33699434 +g2535,250:22064501,33699434 +g2535,250:24413310,33699434 +k2535,251:29095858,33699434:3487171 +k2535,251:32583029,33699434:3487171 +) +(2535,252:20753781,34557101:11829248,505283,102891 +h2535,251:20753781,34557101:0,0,0 +r2535,251:20753781,34557101:0,608174,102891 +g2535,251:22064501,34557101 +g2535,251:22064501,34557101 +g2535,251:25598857,34557101 +k2535,252:29688632,34557101:2894398 +k2535,252:32583029,34557101:2894397 +) +(2535,253:20753781,35414768:11829248,505283,102891 +h2535,252:20753781,35414768:0,0,0 +r2535,252:20753781,35414768:0,608174,102891 +g2535,252:22064501,35414768 +g2535,252:22064501,35414768 +g2535,252:25994039,35414768 +k2535,253:29886223,35414768:2696807 +k2535,253:32583029,35414768:2696806 +) +(2535,254:20753781,36272434:11829248,505283,102891 +h2535,253:20753781,36272434:0,0,0 +r2535,253:20753781,36272434:0,608174,102891 +g2535,253:22064501,36272434 +g2535,253:22064501,36272434 +g2535,253:25598857,36272434 +g2535,253:26768674,36272434 +g2535,253:27938491,36272434 +k2535,254:30858449,36272434:1724581 +k2535,254:32583029,36272434:1724580 +) +(2535,255:20753781,37130101:11829248,505283,102891 +h2535,254:20753781,37130101:0,0,0 +r2535,254:20753781,37130101:0,608174,102891 +g2535,254:22064501,37130101 +g2535,254:22064501,37130101 +g2535,254:24413310,37130101 +k2535,255:29095858,37130101:3487171 +k2535,255:32583029,37130101:3487171 +) +(2535,256:20753781,37987768:11829248,505283,102891 +h2535,255:20753781,37987768:0,0,0 +r2535,255:20753781,37987768:0,608174,102891 +g2535,255:22064501,37987768 +g2535,255:22064501,37987768 +g2535,255:24808493,37987768 +g2535,255:26376769,37987768 +k2535,256:30077588,37987768:2505442 +k2535,256:32583029,37987768:2505441 +) +(2535,257:20753781,38845435:11829248,505283,102891 +h2535,256:20753781,38845435:0,0,0 +r2535,256:20753781,38845435:0,608174,102891 +g2535,256:22064501,38845435 +g2535,256:22064501,38845435 +g2535,256:25598857,38845435 +k2535,257:29688632,38845435:2894398 +k2535,257:32583029,38845435:2894397 +) +(2535,258:20753781,39703102:11829248,505283,102891 +h2535,257:20753781,39703102:0,0,0 +r2535,257:20753781,39703102:0,608174,102891 +g2535,257:22064501,39703102 +g2535,257:22064501,39703102 +g2535,257:25994039,39703102 +k2535,258:29886223,39703102:2696807 +k2535,258:32583029,39703102:2696806 +) +(2535,259:20753781,40560768:11829248,505283,134348 +h2535,258:20753781,40560768:0,0,0 +r2535,258:20753781,40560768:0,639631,134348 +g2535,258:22064501,40560768 +g2535,258:22064501,40560768 +g2535,258:24808493,40560768 +k2535,259:29293450,40560768:3289580 +k2535,259:32583029,40560768:3289579 +) +(2535,260:20753781,41418435:11829248,505283,102891 +h2535,259:20753781,41418435:0,0,0 +r2535,259:20753781,41418435:0,608174,102891 +g2535,259:22064501,41418435 +g2535,259:22064501,41418435 +g2535,259:24413310,41418435 +k2535,260:29095858,41418435:3487171 +k2535,260:32583029,41418435:3487171 +) +(2535,261:20753781,42276102:11829248,505283,102891 +h2535,260:20753781,42276102:0,0,0 +r2535,260:20753781,42276102:0,608174,102891 +g2535,260:22064501,42276102 +g2535,260:22064501,42276102 +g2535,260:24808493,42276102 +g2535,260:25978310,42276102 +g2535,260:27546586,42276102 +k2535,261:30662496,42276102:1920533 +k2535,261:32583029,42276102:1920533 +) +(2535,262:20753781,43133769:11829248,505283,102891 +h2535,261:20753781,43133769:0,0,0 +r2535,261:20753781,43133769:0,608174,102891 +g2535,261:22064501,43133769 +g2535,261:22064501,43133769 +g2535,261:25598857,43133769 +g2535,261:27167133,43133769 +k2535,262:30472770,43133769:2110260 +k2535,262:32583029,43133769:2110259 +) +(2535,263:20753781,43991435:11829248,505283,126483 +h2535,262:20753781,43991435:0,0,0 +r2535,262:20753781,43991435:0,631766,126483 +g2535,262:22064501,43991435 +g2535,262:22064501,43991435 +g2535,262:26389221,43991435 +k2535,263:30083814,43991435:2499216 +k2535,263:32583029,43991435:2499215 +) +(2535,264:20753781,44849102:11829248,505283,102891 +h2535,263:20753781,44849102:0,0,0 +r2535,263:20753781,44849102:0,608174,102891 +g2535,263:22064501,44849102 +g2535,263:22064501,44849102 +g2535,263:25203675,44849102 +g2535,263:26373492,44849102 +g2535,263:27543309,44849102 +g2535,263:29111585,44849102 +k2535,264:31444996,44849102:1138034 +k2535,264:32583029,44849102:1138033 +) +(2535,265:20753781,45706769:11829248,505283,102891 +h2535,264:20753781,45706769:0,0,0 +r2535,264:20753781,45706769:0,608174,102891 +g2535,264:22064501,45706769 +g2535,264:22064501,45706769 +g2535,264:25994039,45706769 +k2535,265:29686993,45706769:2896036 +k2535,265:32583029,45706769:2896036 +) +] +(2535,269:32583029,45706769:0,355205,126483 +h2535,269:32583029,45706769:420741,355205,126483 +k2535,269:32583029,45706769:-420741 +) +) +] +(2535,269:32583029,45706769:0,0,0 +g2535,269:32583029,45706769 +) +) +] +(2535,269:6630773,47279633:25952256,0,0 +h2535,269:6630773,47279633:25952256,0,0 +) +] +h2535,269:4262630,4025873:0,0,0 +] +!31445 }346 !12 {347 -[2537,740:4262630,47279633:28320399,43253760,0 -(2537,740:4262630,4025873:0,0,0 -[2537,740:-473657,4025873:25952256,0,0 -(2537,740:-473657,-710414:25952256,0,0 -h2537,740:-473657,-710414:0,0,0 -(2537,740:-473657,-710414:0,0,0 -(2537,740:-473657,-710414:0,0,0 -g2537,740:-473657,-710414 -(2537,740:-473657,-710414:65781,0,65781 -g2537,740:-407876,-710414 -[2537,740:-407876,-644633:0,0,0 +[2535,354:4262630,47279633:28320399,43253760,0 +(2535,354:4262630,4025873:0,0,0 +[2535,354:-473657,4025873:11829248,0,0 +(2535,354:-473657,-710414:11829248,0,0 +h2535,354:-473657,-710414:0,0,0 +(2535,354:-473657,-710414:0,0,0 +(2535,354:-473657,-710414:0,0,0 +g2535,354:-473657,-710414 +(2535,354:-473657,-710414:65781,0,65781 +g2535,354:-407876,-710414 +[2535,354:-407876,-644633:0,0,0 ] ) -k2537,740:-473657,-710414:-65781 +k2535,354:-473657,-710414:-65781 ) ) -k2537,740:25478599,-710414:25952256 -g2537,740:25478599,-710414 +k2535,354:11355591,-710414:11829248 +g2535,354:11355591,-710414 ) ] ) -[2537,740:6630773,47279633:25952256,43253760,0 -[2537,740:6630773,4812305:25952256,786432,0 -(2537,740:6630773,4812305:25952256,505283,11795 -(2537,740:6630773,4812305:25952256,505283,11795 -g2537,740:3078558,4812305 -[2537,740:3078558,4812305:0,0,0 -(2537,740:3078558,2439708:0,1703936,0 -k2537,740:1358238,2439708:-1720320 -(2537,1:1358238,2439708:1720320,1703936,0 -(2537,1:1358238,2439708:1179648,16384,0 -r2537,740:2537886,2439708:1179648,16384,0 +[2535,354:6630773,47279633:25952256,43253760,0 +[2535,354:6630773,4812305:25952256,786432,0 +(2535,354:6630773,4812305:25952256,513147,134348 +(2535,354:6630773,4812305:25952256,513147,134348 +g2535,354:3078558,4812305 +[2535,354:3078558,4812305:0,0,0 +(2535,354:3078558,2439708:0,1703936,0 +k2535,354:1358238,2439708:-1720320 +(2535,1:1358238,2439708:1720320,1703936,0 +(2535,1:1358238,2439708:1179648,16384,0 +r2535,354:2537886,2439708:1179648,16384,0 ) -g2537,1:3062174,2439708 -(2537,1:3062174,2439708:16384,1703936,0 -[2537,1:3062174,2439708:25952256,1703936,0 -(2537,1:3062174,1915420:25952256,1179648,0 -(2537,1:3062174,1915420:16384,1179648,0 -r2537,740:3078558,1915420:16384,1179648,0 +g2535,1:3062174,2439708 +(2535,1:3062174,2439708:16384,1703936,0 +[2535,1:3062174,2439708:25952256,1703936,0 +(2535,1:3062174,1915420:25952256,1179648,0 +(2535,1:3062174,1915420:16384,1179648,0 +r2535,354:3078558,1915420:16384,1179648,0 ) -k2537,1:29014430,1915420:25935872 -g2537,1:29014430,1915420 +k2535,1:29014430,1915420:25935872 +g2535,1:29014430,1915420 ) ] ) ) ) ] -[2537,740:3078558,4812305:0,0,0 -(2537,740:3078558,2439708:0,1703936,0 -g2537,740:29030814,2439708 -g2537,740:36135244,2439708 -(2537,1:36135244,2439708:1720320,1703936,0 -(2537,1:36135244,2439708:16384,1703936,0 -[2537,1:36135244,2439708:25952256,1703936,0 -(2537,1:36135244,1915420:25952256,1179648,0 -(2537,1:36135244,1915420:16384,1179648,0 -r2537,740:36151628,1915420:16384,1179648,0 +[2535,354:3078558,4812305:0,0,0 +(2535,354:3078558,2439708:0,1703936,0 +g2535,354:29030814,2439708 +g2535,354:36135244,2439708 +(2535,1:36135244,2439708:1720320,1703936,0 +(2535,1:36135244,2439708:16384,1703936,0 +[2535,1:36135244,2439708:25952256,1703936,0 +(2535,1:36135244,1915420:25952256,1179648,0 +(2535,1:36135244,1915420:16384,1179648,0 +r2535,354:36151628,1915420:16384,1179648,0 ) -k2537,1:62087500,1915420:25935872 -g2537,1:62087500,1915420 +k2535,1:62087500,1915420:25935872 +g2535,1:62087500,1915420 ) ] ) -g2537,1:36675916,2439708 -(2537,1:36675916,2439708:1179648,16384,0 -r2537,740:37855564,2439708:1179648,16384,0 +g2535,1:36675916,2439708 +(2535,1:36675916,2439708:1179648,16384,0 +r2535,354:37855564,2439708:1179648,16384,0 ) ) -k2537,740:3078556,2439708:-34777008 +k2535,354:3078556,2439708:-34777008 ) ] -[2537,740:3078558,4812305:0,0,0 -(2537,740:3078558,49800853:0,16384,2228224 -k2537,740:1358238,49800853:-1720320 -(2537,1:1358238,49800853:1720320,16384,2228224 -(2537,1:1358238,49800853:1179648,16384,0 -r2537,740:2537886,49800853:1179648,16384,0 +[2535,354:3078558,4812305:0,0,0 +(2535,354:3078558,49800853:0,16384,2228224 +k2535,354:1358238,49800853:-1720320 +(2535,1:1358238,49800853:1720320,16384,2228224 +(2535,1:1358238,49800853:1179648,16384,0 +r2535,354:2537886,49800853:1179648,16384,0 ) -g2537,1:3062174,49800853 -(2537,1:3062174,52029077:16384,1703936,0 -[2537,1:3062174,52029077:25952256,1703936,0 -(2537,1:3062174,51504789:25952256,1179648,0 -(2537,1:3062174,51504789:16384,1179648,0 -r2537,740:3078558,51504789:16384,1179648,0 +g2535,1:3062174,49800853 +(2535,1:3062174,52029077:16384,1703936,0 +[2535,1:3062174,52029077:25952256,1703936,0 +(2535,1:3062174,51504789:25952256,1179648,0 +(2535,1:3062174,51504789:16384,1179648,0 +r2535,354:3078558,51504789:16384,1179648,0 ) -k2537,1:29014430,51504789:25935872 -g2537,1:29014430,51504789 +k2535,1:29014430,51504789:25935872 +g2535,1:29014430,51504789 ) ] ) ) ) ] -[2537,740:3078558,4812305:0,0,0 -(2537,740:3078558,49800853:0,16384,2228224 -g2537,740:29030814,49800853 -g2537,740:36135244,49800853 -(2537,1:36135244,49800853:1720320,16384,2228224 -(2537,1:36135244,52029077:16384,1703936,0 -[2537,1:36135244,52029077:25952256,1703936,0 -(2537,1:36135244,51504789:25952256,1179648,0 -(2537,1:36135244,51504789:16384,1179648,0 -r2537,740:36151628,51504789:16384,1179648,0 +[2535,354:3078558,4812305:0,0,0 +(2535,354:3078558,49800853:0,16384,2228224 +g2535,354:29030814,49800853 +g2535,354:36135244,49800853 +(2535,1:36135244,49800853:1720320,16384,2228224 +(2535,1:36135244,52029077:16384,1703936,0 +[2535,1:36135244,52029077:25952256,1703936,0 +(2535,1:36135244,51504789:25952256,1179648,0 +(2535,1:36135244,51504789:16384,1179648,0 +r2535,354:36151628,51504789:16384,1179648,0 ) -k2537,1:62087500,51504789:25935872 -g2537,1:62087500,51504789 +k2535,1:62087500,51504789:25935872 +g2535,1:62087500,51504789 ) ] ) -g2537,1:36675916,49800853 -(2537,1:36675916,49800853:1179648,16384,0 -r2537,740:37855564,49800853:1179648,16384,0 -) -) -k2537,740:3078556,49800853:-34777008 -) -] -g2537,740:6630773,4812305 -k2537,740:28224886,4812305:20398736 -g2537,740:30907930,4812305 -) -) -] -[2537,740:6630773,45706769:25952256,40108032,0 -(2537,740:6630773,45706769:25952256,40108032,0 -(2537,740:6630773,45706769:0,0,0 -g2537,740:6630773,45706769 -) -[2537,740:6630773,45706769:25952256,40108032,0 -(2537,740:6630773,44731841:25952256,39133104,134348 -[2537,740:6630773,44731841:11829248,39133104,102891 -(2537,634:6630773,6254097:11829248,505283,102891 -h2537,632:6630773,6254097:0,0,0 -g2537,632:9427849,6254097 -g2537,632:10199207,6254097 -g2537,632:10970565,6254097 -g2537,632:12468062,6254097 -g2537,632:13637879,6254097 -g2537,632:14807696,6254097 -g2537,632:15977513,6254097 -k2537,632:18460021,6254097:1511920 -) -(2537,634:9252213,7095585:9207808,485622,102891 -g2537,632:11546628,7095585 -g2537,632:12716445,7095585 -g2537,633:14284721,7095585 -g2537,633:15852997,7095585 -k2537,634:17754198,7095585:705824 -k2537,634:18460021,7095585:705823 -) -(2537,635:6630773,7950478:11829248,505283,102891 -h2537,634:6630773,7950478:0,0,0 -g2537,634:9160462,7950478 -k2537,635:14407930,7950478:4052091 -k2537,635:18460021,7950478:4052091 -) -(2537,639:6630773,9684148:11829248,485622,102891 -h2537,638:6630773,9684148:0,0,0 -g2537,638:7356911,9684148 -g2537,638:8128269,9684148 -g2537,638:8899627,9684148 -g2537,638:10467903,9684148 -k2537,639:15061651,9684148:3398371 -k2537,639:18460021,9684148:3398370 -) -(2537,640:6630773,10539041:11829248,505283,102891 -h2537,639:6630773,10539041:0,0,0 -g2537,639:8861618,10539041 -k2537,640:13860049,10539041:4599972 -k2537,640:18460021,10539041:4599972 -) -(2537,641:6630773,11393935:11829248,505283,126483 -h2537,640:6630773,11393935:0,0,0 -g2537,640:7583666,11393935 -g2537,640:9338064,11393935 -g2537,640:11956882,11393935 -k2537,641:15806140,11393935:2653881 -k2537,641:18460021,11393935:2653881 -) -(2537,642:6630773,12248828:11829248,485622,102891 -h2537,641:6630773,12248828:0,0,0 -g2537,641:8162349,12248828 -g2537,641:8933707,12248828 -g2537,641:10501983,12248828 -g2537,641:12070259,12248828 -g2537,641:13638535,12248828 -k2537,642:16646967,12248828:1813055 -k2537,642:18460021,12248828:1813054 -) -(2537,643:6630773,13103721:11829248,505283,102891 -h2537,642:6630773,13103721:0,0,0 -g2537,642:9336754,13103721 -g2537,642:10905030,13103721 -g2537,642:12473306,13103721 -k2537,643:16064352,13103721:2395669 -k2537,643:18460021,13103721:2395669 -) -(2537,644:6630773,13958614:11829248,513147,134348 -h2537,643:6630773,13958614:0,0,0 -g2537,643:8732512,13958614 -g2537,643:12291116,13958614 -g2537,643:13457656,13958614 -g2537,643:16559475,13958614 -k2537,643:18460021,13958614:1241254 -) -(2537,644:9252213,14800102:9207808,505283,134348 -g2537,643:12344201,14800102 -k2537,644:16353366,14800102:2106655 -k2537,644:18460021,14800102:2106655 -) -(2537,645:6630773,15654995:11829248,505283,134348 -h2537,644:6630773,15654995:0,0,0 -g2537,644:9299399,15654995 -g2537,644:11258270,15654995 -k2537,645:15456834,15654995:3003187 -k2537,645:18460021,15654995:3003187 -) -(2537,646:6630773,16509888:11829248,485622,126483 -h2537,645:6630773,16509888:0,0,0 -g2537,645:8834748,16509888 -k2537,646:13846614,16509888:4613407 -k2537,646:18460021,16509888:4613407 -) -(2537,647:6630773,17364781:11829248,485622,126483 -h2537,646:6630773,17364781:0,0,0 -g2537,646:9165050,17364781 -k2537,647:14210995,17364781:4249027 -k2537,647:18460021,17364781:4249026 -) -(2537,648:6630773,18219675:11829248,505283,134348 -h2537,647:6630773,18219675:0,0,0 -r2537,740:6630773,18219675:0,639631,134348 -g2537,647:7941493,18219675 -g2537,647:7941493,18219675 -g2537,647:11636412,18219675 -k2537,648:15446676,18219675:3013346 -k2537,648:18460021,18219675:3013345 -) -(2537,649:6630773,19074568:11829248,513147,102891 -h2537,648:6630773,19074568:0,0,0 -r2537,740:6630773,19074568:0,616038,102891 -g2537,648:7941493,19074568 -g2537,648:7941493,19074568 -g2537,648:11396551,19074568 -k2537,649:15326745,19074568:3133276 -k2537,649:18460021,19074568:3133276 -) -(2537,650:6630773,19929461:11829248,505283,126483 -h2537,649:6630773,19929461:0,0,0 -r2537,740:6630773,19929461:0,631766,126483 -g2537,649:7941493,19929461 -g2537,649:7941493,19929461 -g2537,649:11708502,19929461 -k2537,650:15482721,19929461:2977301 -k2537,650:18460021,19929461:2977300 -) -(2537,651:6630773,20784354:11829248,485622,134348 -h2537,650:6630773,20784354:0,0,0 -r2537,740:6630773,20784354:0,619970,134348 -g2537,650:7941493,20784354 -g2537,650:7941493,20784354 -g2537,650:11066249,20784354 -k2537,651:15161594,20784354:3298427 -k2537,651:18460021,20784354:3298427 -) -(2537,652:6630773,21639247:11829248,485622,134348 -h2537,651:6630773,21639247:0,0,0 -r2537,740:6630773,21639247:0,619970,134348 -g2537,651:7941493,21639247 -g2537,651:7941493,21639247 -g2537,651:10572108,21639247 -k2537,652:14914524,21639247:3545498 -k2537,652:18460021,21639247:3545497 -) -(2537,653:6630773,22494140:11829248,513147,134348 -h2537,652:6630773,22494140:0,0,0 -g2537,652:10669101,22494140 -g2537,652:14067798,22494140 -g2537,652:15636074,22494140 -k2537,653:17645736,22494140:814285 -k2537,653:18460021,22494140:814285 -) -(2537,654:6630773,23349034:11829248,505283,126483 -h2537,653:6630773,23349034:0,0,0 -g2537,653:9328889,23349034 -g2537,653:10897165,23349034 -k2537,654:15276282,23349034:3183740 -k2537,654:18460021,23349034:3183739 -) -(2537,655:6630773,24203927:11829248,485622,126483 -h2537,654:6630773,24203927:0,0,0 -g2537,654:9943617,24203927 -k2537,655:14600278,24203927:3859743 -k2537,655:18460021,24203927:3859743 -) -(2537,656:6630773,25058820:11829248,485622,102891 -h2537,655:6630773,25058820:0,0,0 -g2537,655:8268517,25058820 -k2537,656:14325027,25058820:4134994 -k2537,656:18460021,25058820:4134994 -) -(2537,657:6630773,25913713:11829248,513147,102891 -h2537,656:6630773,25913713:0,0,0 -g2537,656:7991955,25913713 -g2537,656:9560231,25913713 -k2537,657:14607815,25913713:3852207 -k2537,657:18460021,25913713:3852206 -) -(2537,658:6630773,26768606:11829248,505283,102891 -h2537,657:6630773,26768606:0,0,0 -g2537,657:10321760,26768606 -k2537,658:14988579,26768606:3471442 -k2537,658:18460021,26768606:3471442 -) -(2537,659:6630773,27623499:11829248,505283,126483 -h2537,658:6630773,27623499:0,0,0 -g2537,658:8954679,27623499 -g2537,658:10650095,27623499 -g2537,658:14539656,27623499 -k2537,659:16898298,27623499:1561724 -k2537,659:18460021,27623499:1561723 -) -(2537,660:6630773,28478392:11829248,505283,126483 -h2537,659:6630773,28478392:0,0,0 -g2537,659:9024147,28478392 -k2537,660:14747407,28478392:3712615 -k2537,660:18460021,28478392:3712614 -) -(2537,661:6630773,29333286:11829248,485622,102891 -h2537,660:6630773,29333286:0,0,0 -r2537,740:6630773,29333286:0,588513,102891 -g2537,660:7941493,29333286 -g2537,660:7941493,29333286 -g2537,660:9294156,29333286 -k2537,661:14275548,29333286:4184474 -k2537,661:18460021,29333286:4184473 -) -(2537,662:6630773,30188179:11829248,485622,102891 -h2537,661:6630773,30188179:0,0,0 -r2537,740:6630773,30188179:0,588513,102891 -g2537,661:7941493,30188179 -g2537,661:7941493,30188179 -g2537,661:9654604,30188179 -k2537,662:14455772,30188179:4004250 -k2537,662:18460021,30188179:4004249 -) -(2537,663:6630773,31043072:11829248,485622,102891 -h2537,662:6630773,31043072:0,0,0 -g2537,662:8434978,31043072 -k2537,663:14045188,31043072:4414833 -k2537,663:18460021,31043072:4414833 -) -(2537,664:6630773,31897965:11829248,485622,102891 -h2537,663:6630773,31897965:0,0,0 -g2537,663:8425803,31897965 -g2537,663:9197161,31897965 -g2537,663:10765437,31897965 -g2537,663:12333713,31897965 -g2537,663:13901989,31897965 -k2537,664:16778694,31897965:1681328 -k2537,664:18460021,31897965:1681327 -) -(2537,665:6630773,32752858:11829248,485622,102891 -h2537,664:6630773,32752858:0,0,0 -g2537,664:9014972,32752858 -k2537,665:14335185,32752858:4124836 -k2537,665:18460021,32752858:4124836 -) -(2537,666:6630773,33607751:11829248,513147,102891 -h2537,665:6630773,33607751:0,0,0 -g2537,665:11549905,33607751 -k2537,666:15403422,33607751:3056599 -k2537,666:18460021,33607751:3056599 -) -(2537,667:6630773,34462645:11829248,485622,102891 -h2537,666:6630773,34462645:0,0,0 -g2537,666:8570638,34462645 -g2537,666:10138914,34462645 -k2537,667:14897156,34462645:3562865 -k2537,667:18460021,34462645:3562865 -) -(2537,669:6630773,35317538:11829248,513147,134348 -h2537,667:6630773,35317538:0,0,0 -g2537,667:9683440,35317538 -g2537,667:13242044,35317538 -k2537,668:13242044,35317538:0 -g2537,668:14408584,35317538 -g2537,668:17510403,35317538 -k2537,668:18460021,35317538:290326 -) -(2537,669:9252213,36159026:9207808,505283,134348 -g2537,668:12344201,36159026 -k2537,669:16828830,36159026:1631191 -k2537,669:18460021,36159026:1631191 -) -(2537,670:6630773,37013919:11829248,505283,102891 -h2537,669:6630773,37013919:0,0,0 -g2537,669:8936984,37013919 -k2537,670:14296191,37013919:4163830 -k2537,670:18460021,37013919:4163830 -) -(2537,671:6630773,37868812:11829248,505283,134348 -h2537,670:6630773,37868812:0,0,0 -g2537,670:9536639,37868812 -k2537,671:14596019,37868812:3864003 -k2537,671:18460021,37868812:3864002 -) -(2537,672:6630773,38723705:11829248,473825,7863 -h2537,671:6630773,38723705:0,0,0 -k2537,672:14299468,38723705:4160553 -k2537,672:18460021,38723705:4160553 -) -(2537,673:6630773,39578598:11829248,505283,102891 -h2537,672:6630773,39578598:0,0,0 -r2537,740:6630773,39578598:0,608174,102891 -g2537,672:7941493,39578598 -g2537,672:7941493,39578598 -g2537,672:11398517,39578598 -k2537,673:15526958,39578598:2933064 -k2537,673:18460021,39578598:2933063 -) -(2537,674:6630773,40433491:11829248,505283,102891 -h2537,673:6630773,40433491:0,0,0 -g2537,673:9707032,40433491 -g2537,673:10478390,40433491 -k2537,674:14867665,40433491:3592357 -k2537,674:18460021,40433491:3592356 -) -(2537,675:6630773,41288385:11829248,485622,126483 -h2537,674:6630773,41288385:0,0,0 -g2537,674:8884555,41288385 -g2537,674:10452831,41288385 -k2537,675:15054115,41288385:3405907 -k2537,675:18460021,41288385:3405906 -) -(2537,679:6630773,43022055:11829248,513147,7863 -h2537,678:6630773,43022055:0,0,0 -g2537,678:8056181,43022055 -k2537,679:13914772,43022055:4545249 -k2537,679:18460021,43022055:4545249 -) -(2537,680:6630773,43876948:11829248,513147,102891 -h2537,679:6630773,43876948:0,0,0 -r2537,740:6630773,43876948:0,616038,102891 -g2537,679:7941493,43876948 -g2537,679:7941493,43876948 -g2537,679:9704411,43876948 -g2537,679:11718332,43876948 -g2537,679:13825314,43876948 -k2537,680:16740356,43876948:1719665 -k2537,680:18460021,43876948:1719665 -) -(2537,681:6630773,44731841:11829248,513147,102891 -h2537,680:6630773,44731841:0,0,0 -r2537,740:6630773,44731841:0,616038,102891 -g2537,680:7941493,44731841 -g2537,680:7941493,44731841 -g2537,680:9534673,44731841 -g2537,680:11137683,44731841 -g2537,680:14133333,44731841 -k2537,681:16894366,44731841:1565656 -k2537,681:18460021,44731841:1565655 -) -] -k2537,740:19606901,44731841:1146880 -r2537,740:19606901,44731841:0,39267452,134348 -k2537,740:20753781,44731841:1146880 -[2537,740:20753781,44731841:11829248,39133104,134348 -(2537,682:20753781,6254097:11829248,513147,134348 -h2537,681:20753781,6254097:0,0,0 -g2537,681:23269708,6254097 -g2537,681:26828312,6254097 -g2537,681:27994852,6254097 -g2537,681:31096671,6254097 -k2537,681:32583029,6254097:827066 -) -(2537,682:23375221,7095585:9207808,505283,134348 -g2537,681:26467209,7095585 -k2537,682:30683468,7095585:1899561 -k2537,682:32583029,7095585:1899561 -) -(2537,683:20753781,7937396:11829248,505283,7863 -h2537,682:20753781,7937396:0,0,0 -k2537,683:27574113,7937396:5008917 -k2537,683:32583029,7937396:5008916 -) -(2537,684:20753781,8779207:11829248,513147,102891 -h2537,683:20753781,8779207:0,0,0 -r2537,740:20753781,8779207:0,616038,102891 -g2537,683:22064501,8779207 -g2537,683:22064501,8779207 -g2537,683:25780392,8779207 -g2537,683:27373572,8779207 -g2537,683:28962164,8779207 -k2537,683:32583029,8779207:1240597 -) -(2537,684:23375221,9620695:9207808,485622,11795 -k2537,684:29338342,9620695:3244688 -k2537,684:32583029,9620695:3244687 -) -(2537,685:20753781,10462506:11829248,505283,102891 -h2537,684:20753781,10462506:0,0,0 -g2537,684:23355559,10462506 -g2537,684:24525376,10462506 -g2537,684:25695193,10462506 -g2537,684:27263469,10462506 -g2537,684:28831745,10462506 -k2537,685:31305076,10462506:1277954 -k2537,685:32583029,10462506:1277953 -) -(2537,686:20753781,11304317:11829248,505283,126483 -h2537,685:20753781,11304317:0,0,0 -g2537,685:23472214,11304317 -k2537,686:28625310,11304317:3957719 -k2537,686:32583029,11304317:3957719 -) -(2537,687:20753781,12146128:11829248,505283,126483 -h2537,686:20753781,12146128:0,0,0 -g2537,686:22998388,12146128 -g2537,686:24566664,12146128 -g2537,686:26134940,12146128 -k2537,687:29956673,12146128:2626356 -k2537,687:32583029,12146128:2626356 -) -(2537,689:20753781,12987939:11829248,505283,126483 -h2537,687:20753781,12987939:0,0,0 -g2537,687:24401514,12987939 -g2537,687:25969790,12987939 -g2537,687:27538066,12987939 -g2537,687:29106342,12987939 -g2537,687:30674618,12987939 -k2537,687:32583029,12987939:539364 -) -(2537,689:23375221,13829427:9207808,485622,102891 -g2537,687:24943497,13829427 -g2537,687:26511773,13829427 -g2537,687:28080049,13829427 -k2537,689:30929228,13829427:1653802 -k2537,689:32583029,13829427:1653801 -) -(2537,690:20753781,14671238:11829248,485622,102891 -h2537,689:20753781,14671238:0,0,0 -g2537,689:22378418,14671238 -g2537,689:24596156,14671238 -k2537,690:29948809,14671238:2634220 -k2537,690:32583029,14671238:2634220 -) -(2537,691:20753781,15513049:11829248,505283,126483 -h2537,690:20753781,15513049:0,0,0 -r2537,740:20753781,15513049:0,631766,126483 -g2537,690:22064501,15513049 -g2537,690:22064501,15513049 -g2537,690:27167789,15513049 -k2537,691:30473098,15513049:2109932 -k2537,691:32583029,15513049:2109931 -) -(2537,692:20753781,16354860:11829248,505283,102891 -h2537,691:20753781,16354860:0,0,0 -g2537,691:23113732,16354860 -k2537,692:28446069,16354860:4136960 -k2537,692:32583029,16354860:4136960 -) -(2537,693:20753781,17196671:11829248,485622,126483 -h2537,692:20753781,17196671:0,0,0 -g2537,692:22339096,17196671 -g2537,692:26188680,17196671 -k2537,693:30346613,17196671:2236417 -k2537,693:32583029,17196671:2236416 -) -(2537,694:20753781,18038482:11829248,485622,126483 -h2537,693:20753781,18038482:0,0,0 -g2537,693:22339096,18038482 -g2537,693:26097585,18038482 -k2537,694:29738766,18038482:2844263 -k2537,694:32583029,18038482:2844263 -) -(2537,698:20753781,19541037:11829248,485622,102891 -h2537,697:20753781,19541037:0,0,0 -g2537,697:24141992,19541037 -k2537,698:28960199,19541037:3622830 -k2537,698:32583029,19541037:3622830 -) -(2537,699:20753781,20382848:11829248,485622,102891 -h2537,698:20753781,20382848:0,0,0 -g2537,698:22578302,20382848 -g2537,698:23349660,20382848 -g2537,698:24121018,20382848 -g2537,698:24892376,20382848 -g2537,698:26062193,20382848 -g2537,698:27232010,20382848 -g2537,698:28800286,20382848 -k2537,699:31289346,20382848:1293683 -k2537,699:32583029,20382848:1293683 -) -(2537,700:20753781,21224659:11829248,485622,102891 -h2537,699:20753781,21224659:0,0,0 -g2537,699:22789984,21224659 -k2537,700:28284195,21224659:4298834 -k2537,700:32583029,21224659:4298834 -) -(2537,701:20753781,22066470:11829248,505283,102891 -h2537,700:20753781,22066470:0,0,0 -g2537,700:22904672,22066470 -g2537,700:24472948,22066470 -g2537,700:26041224,22066470 -g2537,700:27609500,22066470 -g2537,700:29177776,22066470 -k2537,701:31478091,22066470:1104938 -k2537,701:32583029,22066470:1104938 -) -(2537,705:20753781,23569024:11829248,505283,102891 -h2537,704:20753781,23569024:0,0,0 -g2537,704:23968321,23569024 -k2537,705:28674134,23569024:3908895 -k2537,705:32583029,23569024:3908895 -) -(2537,706:20753781,24410835:11829248,426639,7863 -h2537,705:20753781,24410835:0,0,0 -k2537,706:27657344,24410835:4925686 -k2537,706:32583029,24410835:4925685 -) -(2537,707:20753781,25252646:11829248,505283,134348 -h2537,706:20753781,25252646:0,0,0 -r2537,740:20753781,25252646:0,639631,134348 -g2537,706:22064501,25252646 -g2537,706:22064501,25252646 -g2537,706:23381774,25252646 -g2537,706:25594269,25252646 -g2537,706:28868447,25252646 -k2537,707:31124197,25252646:1458832 -k2537,707:32583029,25252646:1458832 -) -(2537,708:20753781,26094457:11829248,485622,102891 -h2537,707:20753781,26094457:0,0,0 -g2537,707:25319019,26094457 -k2537,708:29548713,26094457:3034317 -k2537,708:32583029,26094457:3034316 -) -(2537,709:20753781,26936268:11829248,505283,102891 -h2537,708:20753781,26936268:0,0,0 -g2537,708:24290103,26936268 -g2537,708:27939147,26936268 -k2537,709:30659547,26936268:1923482 -k2537,709:32583029,26936268:1923482 -) -(2537,710:20753781,27778079:11829248,513147,102891 -h2537,709:20753781,27778079:0,0,0 -g2537,709:24290103,27778079 -g2537,709:26359074,27778079 -k2537,710:29869511,27778079:2713519 -k2537,710:32583029,27778079:2713518 -) -(2537,711:20753781,28619890:11829248,426639,7863 -h2537,710:20753781,28619890:0,0,0 -k2537,711:27822494,28619890:4760535 -k2537,711:32583029,28619890:4760535 -) -(2537,712:20753781,29461702:11829248,505283,134348 -h2537,711:20753781,29461702:0,0,0 -r2537,740:20753781,29461702:0,639631,134348 -g2537,711:22064501,29461702 -g2537,711:22064501,29461702 -g2537,711:25176805,29461702 -k2537,712:29840675,29461702:2742354 -k2537,712:32583029,29461702:2742354 -) -(2537,713:20753781,30303513:11829248,505283,102891 -h2537,712:20753781,30303513:0,0,0 -r2537,740:20753781,30303513:0,608174,102891 -g2537,712:22064501,30303513 -g2537,712:22064501,30303513 -g2537,712:24887136,30303513 -g2537,712:28474576,30303513 -k2537,713:30927262,30303513:1655768 -k2537,713:32583029,30303513:1655767 -) -(2537,714:20753781,31145324:11829248,485622,134348 -h2537,713:20753781,31145324:0,0,0 -r2537,740:20753781,31145324:0,619970,134348 -g2537,713:22064501,31145324 -g2537,713:22064501,31145324 -g2537,713:24697737,31145324 -k2537,714:29038842,31145324:3544187 -k2537,714:32583029,31145324:3544187 -) -(2537,715:20753781,31987135:11829248,505283,134348 -h2537,714:20753781,31987135:0,0,0 -r2537,740:20753781,31987135:0,639631,134348 -g2537,714:22064501,31987135 -g2537,714:22064501,31987135 -g2537,714:23683895,31987135 -g2537,714:26070060,31987135 -k2537,715:29725004,31987135:2858026 -k2537,715:32583029,31987135:2858025 -) -(2537,719:20753781,33489689:11829248,485622,102891 -h2537,718:20753781,33489689:0,0,0 -g2537,718:22419050,33489689 -k2537,719:27899499,33489689:4683531 -k2537,719:32583029,33489689:4683530 -) -(2537,720:20753781,34331500:11829248,505283,102891 -h2537,719:20753781,34331500:0,0,0 -g2537,719:23295922,34331500 -k2537,720:28337935,34331500:4245095 -k2537,720:32583029,34331500:4245094 -) -(2537,721:20753781,35173311:11829248,505283,134348 -h2537,720:20753781,35173311:0,0,0 -g2537,720:23539716,35173311 -g2537,720:26804719,35173311 -k2537,721:31053091,35173311:1529939 -k2537,721:32583029,35173311:1529938 -) -(2537,722:20753781,36015122:11829248,513147,102891 -h2537,721:20753781,36015122:0,0,0 -g2537,721:24767205,36015122 -g2537,721:25933745,36015122 -g2537,721:27522337,36015122 -k2537,722:30990831,36015122:1592198 -k2537,722:32583029,36015122:1592198 -) -(2537,723:20753781,36856933:11829248,505283,126483 -h2537,722:20753781,36856933:0,0,0 -g2537,722:23356215,36856933 -g2537,722:24924491,36856933 -g2537,722:26492767,36856933 -g2537,722:28061043,36856933 -k2537,723:30919725,36856933:1663305 -k2537,723:32583029,36856933:1663304 -) -(2537,727:20753781,38359488:11829248,485622,102891 -h2537,726:20753781,38359488:0,0,0 -g2537,726:23346384,38359488 -k2537,727:28562395,38359488:4020634 -k2537,727:32583029,38359488:4020634 -) -(2537,728:20753781,39201299:11829248,505283,102891 -h2537,727:20753781,39201299:0,0,0 -g2537,727:22867316,39201299 -g2537,727:24435592,39201299 -k2537,728:29106999,39201299:3476030 -k2537,728:32583029,39201299:3476030 -) -(2537,729:20753781,40043110:11829248,485622,102891 -h2537,728:20753781,40043110:0,0,0 -g2537,728:22450507,40043110 -g2537,728:24018783,40043110 -k2537,729:28898595,40043110:3684435 -k2537,729:32583029,40043110:3684434 -) -(2537,730:20753781,40884921:11829248,505283,102891 -h2537,729:20753781,40884921:0,0,0 -g2537,729:23158951,40884921 -k2537,730:28468679,40884921:4114351 -k2537,730:32583029,40884921:4114350 -) -(2537,731:20753781,41726732:11829248,485622,102891 -h2537,730:20753781,41726732:0,0,0 -g2537,730:22864695,41726732 -k2537,731:28321551,41726732:4261479 -k2537,731:32583029,41726732:4261478 -) -(2537,735:20753781,43229286:11829248,505283,102891 -h2537,734:20753781,43229286:0,0,0 -g2537,734:24248160,43229286 -g2537,734:27353911,43229286 -k2537,735:30566159,43229286:2016871 -k2537,735:32583029,43229286:2016870 -) -(2537,739:20753781,44731841:11829248,505283,134348 -h2537,738:20753781,44731841:0,0,0 -g2537,738:22373175,44731841 -g2537,738:24585670,44731841 -g2537,738:27248397,44731841 -k2537,739:30314172,44731841:2268857 -k2537,739:32583029,44731841:2268857 -) -] -(2537,740:32583029,44731841:0,355205,126483 -h2537,740:32583029,44731841:420741,355205,126483 -k2537,740:32583029,44731841:-420741 -) -) -] -(2537,740:32583029,45706769:0,0,0 -g2537,740:32583029,45706769 -) -) -] -(2537,740:6630773,47279633:25952256,0,0 -h2537,740:6630773,47279633:25952256,0,0 -) -] -h2537,740:4262630,4025873:0,0,0 -] -!23490 +g2535,1:36675916,49800853 +(2535,1:36675916,49800853:1179648,16384,0 +r2535,354:37855564,49800853:1179648,16384,0 +) +) +k2535,354:3078556,49800853:-34777008 +) +] +g2535,354:6630773,4812305 +k2535,354:23318207,4812305:15492057 +g2535,354:25216129,4812305 +g2535,354:26031396,4812305 +g2535,354:26644813,4812305 +g2535,354:28902528,4812305 +g2535,354:29858042,4812305 +) +) +] +[2535,354:6630773,45706769:25952256,40108032,0 +(2535,354:6630773,45706769:25952256,40108032,0 +(2535,354:6630773,45706769:0,0,0 +g2535,354:6630773,45706769 +) +[2535,354:6630773,45706769:25952256,40108032,0 +(2535,354:6630773,45706769:25952256,40108032,126483 +[2535,354:6630773,45706769:11829248,40108032,102891 +(2535,266:6630773,6254097:11829248,505283,102891 +h2535,265:6630773,6254097:0,0,0 +r2535,265:6630773,6254097:0,608174,102891 +g2535,265:7941493,6254097 +g2535,265:7941493,6254097 +g2535,265:11871031,6254097 +k2535,266:15763215,6254097:2696807 +k2535,266:18460021,6254097:2696806 +) +(2535,267:6630773,7112499:11829248,505283,126483 +h2535,266:6630773,7112499:0,0,0 +r2535,266:6630773,7112499:0,631766,126483 +g2535,266:7941493,7112499 +g2535,266:7941493,7112499 +g2535,266:11871031,7112499 +k2535,267:15763215,7112499:2696807 +k2535,267:18460021,7112499:2696806 +) +(2535,268:6630773,7970901:11829248,505283,102891 +h2535,267:6630773,7970901:0,0,0 +r2535,267:6630773,7970901:0,608174,102891 +g2535,267:7941493,7970901 +g2535,267:7941493,7970901 +g2535,267:10685485,7970901 +g2535,267:11855302,7970901 +g2535,267:13025119,7970901 +k2535,268:16340259,7970901:2119763 +k2535,268:18460021,7970901:2119762 +) +(2535,269:6630773,8829304:11829248,505283,134348 +h2535,268:6630773,8829304:0,0,0 +r2535,268:6630773,8829304:0,639631,134348 +g2535,268:7941493,8829304 +g2535,268:7941493,8829304 +g2535,268:12661395,8829304 +k2535,269:16158397,8829304:2301625 +k2535,269:18460021,8829304:2301624 +) +(2535,270:6630773,9687706:11829248,505283,102891 +h2535,269:6630773,9687706:0,0,0 +r2535,269:6630773,9687706:0,608174,102891 +g2535,269:7941493,9687706 +g2535,269:7941493,9687706 +g2535,269:9895120,9687706 +k2535,270:14775259,9687706:3684762 +k2535,270:18460021,9687706:3684762 +) +(2535,271:6630773,10546108:11829248,505283,102891 +h2535,270:6630773,10546108:0,0,0 +r2535,270:6630773,10546108:0,608174,102891 +g2535,270:7941493,10546108 +g2535,270:7941493,10546108 +g2535,270:9499938,10546108 +k2535,271:14577668,10546108:3882353 +k2535,271:18460021,10546108:3882353 +) +(2535,272:6630773,11404510:11829248,505283,102891 +h2535,271:6630773,11404510:0,0,0 +r2535,271:6630773,11404510:0,608174,102891 +g2535,271:7941493,11404510 +g2535,271:7941493,11404510 +g2535,271:10290302,11404510 +g2535,271:11858578,11404510 +k2535,272:15756988,11404510:2703033 +k2535,272:18460021,11404510:2703033 +) +(2535,273:6630773,12262912:11829248,505283,102891 +h2535,272:6630773,12262912:0,0,0 +r2535,272:6630773,12262912:0,608174,102891 +g2535,272:7941493,12262912 +g2535,272:7941493,12262912 +g2535,272:10685485,12262912 +g2535,272:11855302,12262912 +g2535,272:13025119,12262912 +k2535,273:16340259,12262912:2119763 +k2535,273:18460021,12262912:2119762 +) +(2535,274:6630773,13121314:11829248,505283,102891 +h2535,273:6630773,13121314:0,0,0 +r2535,273:6630773,13121314:0,608174,102891 +g2535,273:7941493,13121314 +g2535,273:7941493,13121314 +g2535,273:11871031,13121314 +k2535,274:15563985,13121314:2896036 +k2535,274:18460021,13121314:2896036 +) +(2535,275:6630773,13979717:11829248,505283,102891 +h2535,274:6630773,13979717:0,0,0 +r2535,274:6630773,13979717:0,608174,102891 +g2535,274:7941493,13979717 +g2535,274:7941493,13979717 +g2535,274:11080667,13979717 +g2535,274:12250484,13979717 +g2535,274:13420301,13979717 +g2535,274:14590118,13979717 +g2535,274:15759935,13979717 +k2535,275:17707667,13979717:752355 +k2535,275:18460021,13979717:752354 +) +(2535,276:6630773,14838119:11829248,505283,102891 +h2535,275:6630773,14838119:0,0,0 +r2535,275:6630773,14838119:0,608174,102891 +g2535,275:7941493,14838119 +g2535,275:7941493,14838119 +g2535,275:11871031,14838119 +k2535,276:15563985,14838119:2896036 +k2535,276:18460021,14838119:2896036 +) +(2535,277:6630773,15696521:11829248,505283,126483 +h2535,276:6630773,15696521:0,0,0 +r2535,276:6630773,15696521:0,631766,126483 +g2535,276:7941493,15696521 +g2535,276:7941493,15696521 +g2535,276:11080667,15696521 +g2535,276:12648943,15696521 +k2535,277:16152171,15696521:2307851 +k2535,277:18460021,15696521:2307850 +) +(2535,278:6630773,16554923:11829248,505283,126483 +h2535,277:6630773,16554923:0,0,0 +r2535,277:6630773,16554923:0,631766,126483 +g2535,277:7941493,16554923 +g2535,277:7941493,16554923 +g2535,277:11080667,16554923 +g2535,277:12648943,16554923 +g2535,277:14217219,16554923 +k2535,278:16936309,16554923:1523713 +k2535,278:18460021,16554923:1523712 +) +(2535,279:6630773,17413325:11829248,505283,134348 +h2535,278:6630773,17413325:0,0,0 +r2535,278:6630773,17413325:0,639631,134348 +g2535,278:7941493,17413325 +g2535,278:7941493,17413325 +g2535,278:13846941,17413325 +k2535,279:16751170,17413325:1708852 +k2535,279:18460021,17413325:1708851 +) +(2535,280:6630773,18271728:11829248,505283,126483 +h2535,279:6630773,18271728:0,0,0 +r2535,279:6630773,18271728:0,631766,126483 +g2535,279:7941493,18271728 +g2535,279:7941493,18271728 +g2535,279:13451759,18271728 +k2535,280:16553579,18271728:1906443 +k2535,280:18460021,18271728:1906442 +) +(2535,281:6630773,19130130:11829248,505283,126483 +h2535,280:6630773,19130130:0,0,0 +r2535,280:6630773,19130130:0,631766,126483 +g2535,280:7941493,19130130 +g2535,280:7941493,19130130 +g2535,280:11080667,19130130 +k2535,281:15368033,19130130:3091989 +k2535,281:18460021,19130130:3091988 +) +(2535,282:6630773,19988532:11829248,505283,126483 +h2535,281:6630773,19988532:0,0,0 +r2535,281:6630773,19988532:0,631766,126483 +g2535,281:7941493,19988532 +g2535,281:7941493,19988532 +g2535,281:10685485,19988532 +g2535,281:12979900,19988532 +g2535,281:14548176,19988532 +g2535,281:16116452,19988532 +k2535,282:17885925,19988532:574096 +k2535,282:18460021,19988532:574096 +) +(2535,283:6630773,20846934:11829248,505283,126483 +h2535,282:6630773,20846934:0,0,0 +r2535,282:6630773,20846934:0,631766,126483 +g2535,282:7941493,20846934 +g2535,282:7941493,20846934 +g2535,282:11080667,20846934 +g2535,282:12648943,20846934 +k2535,283:16152171,20846934:2307851 +k2535,283:18460021,20846934:2307850 +) +(2535,284:6630773,21705336:11829248,505283,126483 +h2535,283:6630773,21705336:0,0,0 +r2535,283:6630773,21705336:0,631766,126483 +g2535,283:7941493,21705336 +g2535,283:7941493,21705336 +g2535,283:10685485,21705336 +k2535,284:15170442,21705336:3289580 +k2535,284:18460021,21705336:3289579 +) +(2535,285:6630773,22563738:11829248,505283,126483 +h2535,284:6630773,22563738:0,0,0 +r2535,284:6630773,22563738:0,631766,126483 +g2535,284:7941493,22563738 +g2535,284:7941493,22563738 +g2535,284:11475849,22563738 +g2535,284:13044125,22563738 +k2535,285:16349762,22563738:2110260 +k2535,285:18460021,22563738:2110259 +) +(2535,286:6630773,23422141:11829248,505283,126483 +h2535,285:6630773,23422141:0,0,0 +r2535,285:6630773,23422141:0,631766,126483 +g2535,285:7941493,23422141 +g2535,285:7941493,23422141 +g2535,285:11871031,23422141 +k2535,286:15763215,23422141:2696807 +k2535,286:18460021,23422141:2696806 +) +(2535,287:6630773,24280543:11829248,505283,126483 +h2535,286:6630773,24280543:0,0,0 +r2535,286:6630773,24280543:0,631766,126483 +g2535,286:7941493,24280543 +g2535,286:7941493,24280543 +g2535,286:14242123,24280543 +k2535,287:16948761,24280543:1511261 +k2535,287:18460021,24280543:1511260 +) +(2535,289:6630773,25138945:11829248,505283,126483 +h2535,287:6630773,25138945:0,0,0 +r2535,287:6630773,25138945:0,631766,126483 +g2535,287:7941493,25138945 +g2535,287:7941493,25138945 +g2535,287:11080667,25138945 +g2535,287:11852025,25138945 +g2535,287:13021842,25138945 +g2535,287:14191659,25138945 +g2535,287:15361476,25138945 +g2535,287:16531293,25138945 +k2535,287:18460021,25138945:958140 +) +(2535,289:9252213,25980433:9207808,485622,102891 +g2535,287:10820489,25980433 +g2535,287:12388765,25980433 +g2535,287:13957041,25980433 +g2535,288:15525317,25980433 +k2535,289:17590358,25980433:869664 +k2535,289:18460021,25980433:869663 +) +(2535,290:6630773,26838835:11829248,505283,126483 +h2535,289:6630773,26838835:0,0,0 +r2535,289:6630773,26838835:0,631766,126483 +g2535,289:7941493,26838835 +g2535,289:7941493,26838835 +g2535,289:9895120,26838835 +k2535,290:14775259,26838835:3684762 +k2535,290:18460021,26838835:3684762 +) +(2535,291:6630773,27697237:11829248,505283,126483 +h2535,290:6630773,27697237:0,0,0 +r2535,290:6630773,27697237:0,631766,126483 +g2535,290:7941493,27697237 +g2535,290:7941493,27697237 +g2535,290:11080667,27697237 +k2535,291:15368033,27697237:3091989 +k2535,291:18460021,27697237:3091988 +) +(2535,292:6630773,28555640:11829248,505283,126483 +h2535,291:6630773,28555640:0,0,0 +r2535,291:6630773,28555640:0,631766,126483 +g2535,291:7941493,28555640 +g2535,291:7941493,28555640 +g2535,291:12266213,28555640 +k2535,292:15960806,28555640:2499216 +k2535,292:18460021,28555640:2499215 +) +(2535,293:6630773,29414042:11829248,505283,134348 +h2535,292:6630773,29414042:0,0,0 +r2535,292:6630773,29414042:0,639631,134348 +g2535,292:7941493,29414042 +g2535,292:7941493,29414042 +g2535,292:11080667,29414042 +k2535,293:15368033,29414042:3091989 +k2535,293:18460021,29414042:3091988 +) +(2535,294:6630773,30272444:11829248,505283,102891 +h2535,293:6630773,30272444:0,0,0 +r2535,293:6630773,30272444:0,608174,102891 +g2535,293:7941493,30272444 +g2535,293:7941493,30272444 +g2535,293:12266213,30272444 +g2535,293:13834489,30272444 +k2535,294:17506472,30272444:953550 +k2535,294:18460021,30272444:953549 +) +(2535,295:6630773,31130846:11829248,505283,102891 +h2535,294:6630773,31130846:0,0,0 +r2535,294:6630773,31130846:0,608174,102891 +g2535,294:7941493,31130846 +g2535,294:7941493,31130846 +g2535,294:12661395,31130846 +g2535,294:14229671,31130846 +g2535,294:15797947,31130846 +k2535,295:17726673,31130846:733349 +k2535,295:18460021,31130846:733348 +) +(2535,296:6630773,31989248:11829248,513147,102891 +h2535,295:6630773,31989248:0,0,0 +r2535,295:6630773,31989248:0,616038,102891 +g2535,295:7941493,31989248 +g2535,295:7941493,31989248 +g2535,295:13846941,31989248 +g2535,295:15415217,31989248 +k2535,296:17535308,31989248:924714 +k2535,296:18460021,31989248:924713 +) +(2535,297:6630773,32847650:11829248,513147,102891 +h2535,296:6630773,32847650:0,0,0 +r2535,296:6630773,32847650:0,616038,102891 +g2535,296:7941493,32847650 +g2535,296:7941493,32847650 +g2535,296:12266213,32847650 +k2535,297:15960806,32847650:2499216 +k2535,297:18460021,32847650:2499215 +) +(2535,298:6630773,33706053:11829248,505283,126483 +h2535,297:6630773,33706053:0,0,0 +r2535,297:6630773,33706053:0,631766,126483 +g2535,297:7941493,33706053 +g2535,297:7941493,33706053 +g2535,297:12661395,33706053 +k2535,298:16158397,33706053:2301625 +k2535,298:18460021,33706053:2301624 +) +(2535,299:6630773,34564455:11829248,505283,126483 +h2535,298:6630773,34564455:0,0,0 +r2535,298:6630773,34564455:0,631766,126483 +g2535,298:7941493,34564455 +g2535,298:7941493,34564455 +g2535,298:13451759,34564455 +k2535,299:16553579,34564455:1906443 +k2535,299:18460021,34564455:1906442 +) +(2535,300:6630773,35422857:11829248,505283,102891 +h2535,299:6630773,35422857:0,0,0 +r2535,299:6630773,35422857:0,608174,102891 +g2535,299:7941493,35422857 +g2535,299:7941493,35422857 +g2535,299:13056577,35422857 +g2535,299:16147910,35422857 +k2535,299:18460021,35422857:943064 +) +(2535,300:9252213,36264345:9207808,485622,11795 +k2535,300:14453806,36264345:4006216 +k2535,300:18460021,36264345:4006215 +) +(2535,301:6630773,37122747:11829248,505283,102891 +h2535,300:6630773,37122747:0,0,0 +r2535,300:6630773,37122747:0,608174,102891 +g2535,300:7941493,37122747 +g2535,300:7941493,37122747 +g2535,300:12661395,37122747 +k2535,301:16158397,37122747:2301625 +k2535,301:18460021,37122747:2301624 +) +(2535,302:6630773,37981149:11829248,505283,102891 +h2535,301:6630773,37981149:0,0,0 +r2535,301:6630773,37981149:0,608174,102891 +g2535,301:7941493,37981149 +g2535,301:7941493,37981149 +g2535,301:12266213,37981149 +g2535,301:13834489,37981149 +k2535,302:16744944,37981149:1715078 +k2535,302:18460021,37981149:1715077 +) +(2535,303:6630773,38839552:11829248,505283,102891 +h2535,302:6630773,38839552:0,0,0 +r2535,302:6630773,38839552:0,608174,102891 +g2535,302:7941493,38839552 +g2535,302:7941493,38839552 +g2535,302:13056577,38839552 +k2535,303:16355988,38839552:2104034 +k2535,303:18460021,38839552:2104033 +) +(2535,304:6630773,39697954:11829248,505283,102891 +h2535,303:6630773,39697954:0,0,0 +r2535,303:6630773,39697954:0,608174,102891 +g2535,303:7941493,39697954 +g2535,303:7941493,39697954 +g2535,303:13056577,39697954 +k2535,304:16355988,39697954:2104034 +k2535,304:18460021,39697954:2104033 +) +(2535,305:6630773,40556356:11829248,513147,102891 +h2535,304:6630773,40556356:0,0,0 +r2535,304:6630773,40556356:0,616038,102891 +g2535,304:7941493,40556356 +g2535,304:7941493,40556356 +g2535,304:12661395,40556356 +k2535,305:16158397,40556356:2301625 +k2535,305:18460021,40556356:2301624 +) +(2535,306:6630773,41414758:11829248,513147,102891 +h2535,305:6630773,41414758:0,0,0 +r2535,305:6630773,41414758:0,616038,102891 +g2535,305:7941493,41414758 +g2535,305:7941493,41414758 +g2535,305:12266213,41414758 +k2535,306:15960806,41414758:2499216 +k2535,306:18460021,41414758:2499215 +) +(2535,307:6630773,42273160:11829248,505283,102891 +h2535,306:6630773,42273160:0,0,0 +r2535,306:6630773,42273160:0,608174,102891 +g2535,306:7941493,42273160 +g2535,306:7941493,42273160 +g2535,306:12661395,42273160 +k2535,307:16158397,42273160:2301625 +k2535,307:18460021,42273160:2301624 +) +(2535,308:6630773,43131562:11829248,505283,102891 +h2535,307:6630773,43131562:0,0,0 +r2535,307:6630773,43131562:0,608174,102891 +g2535,307:7941493,43131562 +g2535,307:7941493,43131562 +g2535,307:13056577,43131562 +k2535,308:16355988,43131562:2104034 +k2535,308:18460021,43131562:2104033 +) +(2535,309:6630773,43989965:11829248,505283,102891 +h2535,308:6630773,43989965:0,0,0 +r2535,308:6630773,43989965:0,608174,102891 +g2535,308:7941493,43989965 +g2535,308:7941493,43989965 +g2535,308:12266213,43989965 +k2535,309:15960806,43989965:2499216 +k2535,309:18460021,43989965:2499215 +) +(2535,310:6630773,44848367:11829248,505283,102891 +h2535,309:6630773,44848367:0,0,0 +r2535,309:6630773,44848367:0,608174,102891 +g2535,309:7941493,44848367 +g2535,309:7941493,44848367 +g2535,309:12266213,44848367 +k2535,310:15960806,44848367:2499216 +k2535,310:18460021,44848367:2499215 +) +(2535,311:6630773,45706769:11829248,505283,102891 +h2535,310:6630773,45706769:0,0,0 +r2535,310:6630773,45706769:0,608174,102891 +g2535,310:7941493,45706769 +g2535,310:7941493,45706769 +g2535,310:13056577,45706769 +g2535,310:14624853,45706769 +k2535,311:17140126,45706769:1319896 +k2535,311:18460021,45706769:1319895 +) +] +k2535,354:19606901,45706769:1146880 +r2535,354:19606901,45706769:0,40234515,126483 +k2535,354:20753781,45706769:1146880 +[2535,354:20753781,45706769:11829248,40108032,102891 +(2535,312:20753781,6254097:11829248,505283,102891 +h2535,311:20753781,6254097:0,0,0 +r2535,311:20753781,6254097:0,608174,102891 +g2535,311:22064501,6254097 +g2535,311:22064501,6254097 +g2535,311:27574767,6254097 +k2535,312:30676587,6254097:1906443 +k2535,312:32583029,6254097:1906442 +) +(2535,313:20753781,7115170:11829248,505283,102891 +h2535,312:20753781,7115170:0,0,0 +r2535,312:20753781,7115170:0,608174,102891 +g2535,312:22064501,7115170 +g2535,312:22064501,7115170 +g2535,312:26389221,7115170 +k2535,313:30083814,7115170:2499216 +k2535,313:32583029,7115170:2499215 +) +(2535,314:20753781,7976243:11829248,505283,102891 +h2535,313:20753781,7976243:0,0,0 +r2535,313:20753781,7976243:0,608174,102891 +g2535,313:22064501,7976243 +g2535,313:22064501,7976243 +g2535,313:26784403,7976243 +k2535,314:30281405,7976243:2301625 +k2535,314:32583029,7976243:2301624 +) +(2535,315:20753781,8837316:11829248,505283,102891 +h2535,314:20753781,8837316:0,0,0 +r2535,314:20753781,8837316:0,608174,102891 +g2535,314:22064501,8837316 +g2535,314:22064501,8837316 +g2535,314:25994039,8837316 +k2535,315:29686993,8837316:2896036 +k2535,315:32583029,8837316:2896036 +) +(2535,316:20753781,9698388:11829248,505283,102891 +h2535,315:20753781,9698388:0,0,0 +r2535,315:20753781,9698388:0,608174,102891 +g2535,315:22064501,9698388 +g2535,315:22064501,9698388 +g2535,315:24413310,9698388 +k2535,316:29095858,9698388:3487171 +k2535,316:32583029,9698388:3487171 +) +(2535,317:20753781,10559461:11829248,505283,102891 +h2535,316:20753781,10559461:0,0,0 +r2535,316:20753781,10559461:0,608174,102891 +g2535,316:22064501,10559461 +g2535,316:22064501,10559461 +g2535,316:25598857,10559461 +k2535,317:29688632,10559461:2894398 +k2535,317:32583029,10559461:2894397 +) +(2535,318:20753781,11420534:11829248,505283,102891 +h2535,317:20753781,11420534:0,0,0 +r2535,317:20753781,11420534:0,608174,102891 +g2535,317:22064501,11420534 +g2535,317:22064501,11420534 +g2535,317:25994039,11420534 +k2535,318:29686993,11420534:2896036 +k2535,318:32583029,11420534:2896036 +) +(2535,319:20753781,12281607:11829248,505283,126483 +h2535,318:20753781,12281607:0,0,0 +r2535,318:20753781,12281607:0,631766,126483 +g2535,318:22064501,12281607 +g2535,318:22064501,12281607 +g2535,318:24413310,12281607 +k2535,319:28896629,12281607:3686401 +k2535,319:32583029,12281607:3686400 +) +(2535,320:20753781,13142680:11829248,505283,102891 +h2535,319:20753781,13142680:0,0,0 +r2535,319:20753781,13142680:0,608174,102891 +g2535,319:22064501,13142680 +g2535,319:22064501,13142680 +g2535,319:25203675,13142680 +k2535,320:29491041,13142680:3091989 +k2535,320:32583029,13142680:3091988 +) +(2535,321:20753781,14003753:11829248,505283,102891 +h2535,320:20753781,14003753:0,0,0 +r2535,320:20753781,14003753:0,608174,102891 +g2535,320:22064501,14003753 +g2535,320:22064501,14003753 +g2535,320:26784403,14003753 +k2535,321:30281405,14003753:2301625 +k2535,321:32583029,14003753:2301624 +) +(2535,322:20753781,14864825:11829248,505283,134348 +h2535,321:20753781,14864825:0,0,0 +r2535,321:20753781,14864825:0,639631,134348 +g2535,321:22064501,14864825 +g2535,321:22064501,14864825 +g2535,321:24413310,14864825 +k2535,322:29095858,14864825:3487171 +k2535,322:32583029,14864825:3487171 +) +(2535,323:20753781,15725898:11829248,505283,134348 +h2535,322:20753781,15725898:0,0,0 +r2535,322:20753781,15725898:0,639631,134348 +g2535,322:22064501,15725898 +g2535,322:22064501,15725898 +g2535,322:27179585,15725898 +k2535,323:30478996,15725898:2104034 +k2535,323:32583029,15725898:2104033 +) +(2535,324:20753781,16586971:11829248,505283,102891 +h2535,323:20753781,16586971:0,0,0 +r2535,323:20753781,16586971:0,608174,102891 +g2535,323:22064501,16586971 +g2535,323:22064501,16586971 +g2535,323:24413310,16586971 +k2535,324:28896629,16586971:3686401 +k2535,324:32583029,16586971:3686400 +) +(2535,325:20753781,17448044:11829248,505283,102891 +h2535,324:20753781,17448044:0,0,0 +r2535,324:20753781,17448044:0,608174,102891 +g2535,324:22064501,17448044 +g2535,324:22064501,17448044 +g2535,324:24018128,17448044 +k2535,325:28699038,17448044:3883992 +k2535,325:32583029,17448044:3883991 +) +(2535,326:20753781,18309117:11829248,505283,102891 +h2535,325:20753781,18309117:0,0,0 +r2535,325:20753781,18309117:0,608174,102891 +g2535,325:22064501,18309117 +g2535,325:22064501,18309117 +g2535,325:25203675,18309117 +g2535,325:26771951,18309117 +g2535,325:28340227,18309117 +k2535,326:31059317,18309117:1523713 +k2535,326:32583029,18309117:1523712 +) +(2535,327:20753781,19170190:11829248,505283,102891 +h2535,326:20753781,19170190:0,0,0 +r2535,326:20753781,19170190:0,608174,102891 +g2535,326:22064501,19170190 +g2535,326:22064501,19170190 +g2535,326:25203675,19170190 +k2535,327:29291811,19170190:3291218 +k2535,327:32583029,19170190:3291218 +) +(2535,328:20753781,20031262:11829248,505283,102891 +h2535,327:20753781,20031262:0,0,0 +r2535,327:20753781,20031262:0,608174,102891 +g2535,327:22064501,20031262 +g2535,327:22064501,20031262 +g2535,327:26389221,20031262 +k2535,328:29884584,20031262:2698445 +k2535,328:32583029,20031262:2698445 +) +(2535,329:20753781,20892335:11829248,513147,102891 +h2535,328:20753781,20892335:0,0,0 +r2535,328:20753781,20892335:0,616038,102891 +g2535,328:22064501,20892335 +g2535,328:22064501,20892335 +g2535,328:25203675,20892335 +k2535,329:29491041,20892335:3091989 +k2535,329:32583029,20892335:3091988 +) +(2535,330:20753781,21753408:11829248,505283,102891 +h2535,329:20753781,21753408:0,0,0 +r2535,329:20753781,21753408:0,608174,102891 +g2535,329:22064501,21753408 +g2535,329:22064501,21753408 +g2535,329:24808493,21753408 +k2535,330:29094220,21753408:3488809 +k2535,330:32583029,21753408:3488809 +) +(2535,331:20753781,22614481:11829248,505283,102891 +h2535,330:20753781,22614481:0,0,0 +r2535,330:20753781,22614481:0,608174,102891 +g2535,330:22064501,22614481 +g2535,330:22064501,22614481 +g2535,330:25994039,22614481 +k2535,331:29686993,22614481:2896036 +k2535,331:32583029,22614481:2896036 +) +(2535,332:20753781,23475554:11829248,505283,102891 +h2535,331:20753781,23475554:0,0,0 +r2535,331:20753781,23475554:0,608174,102891 +g2535,331:22064501,23475554 +g2535,331:22064501,23475554 +g2535,331:30341042,23475554 +k2535,332:32059724,23475554:523305 +k2535,332:32583029,23475554:523305 +) +(2535,333:20753781,24336627:11829248,505283,102891 +h2535,332:20753781,24336627:0,0,0 +r2535,332:20753781,24336627:0,608174,102891 +g2535,332:22064501,24336627 +g2535,332:22064501,24336627 +k2535,332:32583029,24336627:860488 +) +(2535,333:23375221,25178115:9207808,485622,102891 +g2535,332:24943497,25178115 +k2535,333:29360952,25178115:3222078 +k2535,333:32583029,25178115:3222077 +) +(2535,334:20753781,26039188:11829248,505283,102891 +h2535,333:20753781,26039188:0,0,0 +r2535,333:20753781,26039188:0,608174,102891 +g2535,333:22064501,26039188 +g2535,333:22064501,26039188 +g2535,333:29550678,26039188 +k2535,334:31664542,26039188:918487 +k2535,334:32583029,26039188:918487 +) +(2535,335:20753781,26900260:11829248,505283,102891 +h2535,334:20753781,26900260:0,0,0 +r2535,334:20753781,26900260:0,608174,102891 +g2535,334:22064501,26900260 +g2535,334:22064501,26900260 +g2535,334:31131406,26900260 +k2535,335:32454906,26900260:128123 +k2535,335:32583029,26900260:128123 +) +(2535,336:20753781,27761333:11829248,505283,102891 +h2535,335:20753781,27761333:0,0,0 +r2535,335:20753781,27761333:0,608174,102891 +g2535,335:22064501,27761333 +g2535,335:22064501,27761333 +g2535,335:31131406,27761333 +k2535,335:32583029,27761333:82576 +) +(2535,336:23375221,28602821:9207808,485622,11795 +k2535,336:28576814,28602821:4006216 +k2535,336:32583029,28602821:4006215 +) +(2535,337:20753781,29463894:11829248,505283,102891 +h2535,336:20753781,29463894:0,0,0 +r2535,336:20753781,29463894:0,608174,102891 +g2535,336:22064501,29463894 +g2535,336:22064501,29463894 +k2535,336:32583029,29463894:1255670 +) +(2535,337:23375221,30305382:9207808,485622,11795 +k2535,337:28576814,30305382:4006216 +k2535,337:32583029,30305382:4006215 +) +(2535,338:20753781,31166455:11829248,505283,134348 +h2535,337:20753781,31166455:0,0,0 +r2535,337:20753781,31166455:0,639631,134348 +g2535,337:22064501,31166455 +g2535,337:22064501,31166455 +g2535,337:31131406,31166455 +k2535,338:32454906,31166455:128123 +k2535,338:32583029,31166455:128123 +) +(2535,339:20753781,32027528:11829248,505283,134348 +h2535,338:20753781,32027528:0,0,0 +r2535,338:20753781,32027528:0,639631,134348 +g2535,338:22064501,32027528 +g2535,338:22064501,32027528 +k2535,338:32583029,32027528:1255670 +) +(2535,339:23375221,32869016:9207808,485622,11795 +k2535,339:28576814,32869016:4006216 +k2535,339:32583029,32869016:4006215 +) +(2535,340:20753781,33730089:11829248,505283,134348 +h2535,339:20753781,33730089:0,0,0 +r2535,339:20753781,33730089:0,639631,134348 +g2535,339:22064501,33730089 +g2535,339:22064501,33730089 +k2535,339:32583029,33730089:1255670 +) +(2535,340:23375221,34571577:9207808,485622,11795 +k2535,340:28576814,34571577:4006216 +k2535,340:32583029,34571577:4006215 +) +(2535,341:20753781,35432649:11829248,505283,134348 +h2535,340:20753781,35432649:0,0,0 +r2535,340:20753781,35432649:0,639631,134348 +g2535,340:22064501,35432649 +g2535,340:22064501,35432649 +g2535,340:29550678,35432649 +k2535,341:31664542,35432649:918487 +k2535,341:32583029,35432649:918487 +) +(2535,342:20753781,36293722:11829248,505283,102891 +h2535,341:20753781,36293722:0,0,0 +r2535,341:20753781,36293722:0,608174,102891 +g2535,341:22064501,36293722 +g2535,341:22064501,36293722 +g2535,341:29155496,36293722 +k2535,342:31466951,36293722:1116078 +k2535,342:32583029,36293722:1116078 +) +(2535,343:20753781,37154795:11829248,505283,126483 +h2535,342:20753781,37154795:0,0,0 +r2535,342:20753781,37154795:0,631766,126483 +g2535,342:22064501,37154795 +g2535,342:22064501,37154795 +g2535,342:31131406,37154795 +k2535,342:32583029,37154795:82576 +) +(2535,343:23375221,37996283:9207808,485622,11795 +k2535,343:28576814,37996283:4006216 +k2535,343:32583029,37996283:4006215 +) +(2535,344:20753781,38857356:11829248,505283,102891 +h2535,343:20753781,38857356:0,0,0 +r2535,343:20753781,38857356:0,608174,102891 +g2535,343:22064501,38857356 +g2535,343:22064501,38857356 +k2535,343:32583029,38857356:1255670 +) +(2535,344:23375221,39698844:9207808,485622,11795 +k2535,344:28576814,39698844:4006216 +k2535,344:32583029,39698844:4006215 +) +(2535,345:20753781,40559917:11829248,505283,102891 +h2535,344:20753781,40559917:0,0,0 +r2535,344:20753781,40559917:0,608174,102891 +g2535,344:22064501,40559917 +g2535,344:22064501,40559917 +k2535,344:32583029,40559917:1255670 +) +(2535,345:23375221,41401405:9207808,485622,11795 +k2535,345:28576814,41401405:4006216 +k2535,345:32583029,41401405:4006215 +) +(2535,346:20753781,42262478:11829248,513147,126483 +h2535,345:20753781,42262478:0,0,0 +r2535,345:20753781,42262478:0,639630,126483 +g2535,345:22064501,42262478 +g2535,345:22064501,42262478 +g2535,345:30736224,42262478 +k2535,346:32257315,42262478:325714 +k2535,346:32583029,42262478:325714 +) +(2535,347:20753781,43123551:11829248,505283,102891 +h2535,346:20753781,43123551:0,0,0 +r2535,346:20753781,43123551:0,608174,102891 +g2535,346:22064501,43123551 +g2535,346:22064501,43123551 +g2535,346:30341042,43123551 +k2535,347:32059724,43123551:523305 +k2535,347:32583029,43123551:523305 +) +(2535,348:20753781,43984623:11829248,505283,102891 +h2535,347:20753781,43984623:0,0,0 +r2535,347:20753781,43984623:0,608174,102891 +g2535,347:22064501,43984623 +g2535,347:22064501,43984623 +g2535,347:29550678,43984623 +k2535,348:31664542,43984623:918487 +k2535,348:32583029,43984623:918487 +) +(2535,349:20753781,44845696:11829248,505283,134348 +h2535,348:20753781,44845696:0,0,0 +r2535,348:20753781,44845696:0,639631,134348 +g2535,348:22064501,44845696 +g2535,348:22064501,44845696 +g2535,348:28365131,44845696 +k2535,349:31071769,44845696:1511261 +k2535,349:32583029,44845696:1511260 +) +(2535,350:20753781,45706769:11829248,505283,102891 +h2535,349:20753781,45706769:0,0,0 +r2535,349:20753781,45706769:0,608174,102891 +g2535,349:22064501,45706769 +g2535,349:22064501,45706769 +g2535,349:29155496,45706769 +k2535,350:31466951,45706769:1116078 +k2535,350:32583029,45706769:1116078 +) +] +(2535,354:32583029,45706769:0,355205,126483 +h2535,354:32583029,45706769:420741,355205,126483 +k2535,354:32583029,45706769:-420741 +) +) +] +(2535,354:32583029,45706769:0,0,0 +g2535,354:32583029,45706769 +) +) +] +(2535,354:6630773,47279633:25952256,0,0 +h2535,354:6630773,47279633:25952256,0,0 +) +] +h2535,354:4262630,4025873:0,0,0 +] +!29506 }347 -Input:2538:D:\aphalo\Documents\Own_manuscripts\Books\using-r\rcatsidx.ind -!86 +!12 {348 -[2538,86:4262630,47279633:28320399,43253760,11795 -(2538,86:4262630,4025873:0,0,0 -[2538,86:-473657,4025873:11829248,0,0 -(2538,86:-473657,-710414:11829248,0,0 -h2538,86:-473657,-710414:0,0,0 -(2538,86:-473657,-710414:0,0,0 -(2538,86:-473657,-710414:0,0,0 -g2538,86:-473657,-710414 -(2538,86:-473657,-710414:65781,0,65781 -g2538,86:-407876,-710414 -[2538,86:-407876,-644633:0,0,0 +[2535,445:4262630,47279633:28320399,43253760,0 +(2535,445:4262630,4025873:0,0,0 +[2535,445:-473657,4025873:11829248,0,0 +(2535,445:-473657,-710414:11829248,0,0 +h2535,445:-473657,-710414:0,0,0 +(2535,445:-473657,-710414:0,0,0 +(2535,445:-473657,-710414:0,0,0 +g2535,445:-473657,-710414 +(2535,445:-473657,-710414:65781,0,65781 +g2535,445:-407876,-710414 +[2535,445:-407876,-644633:0,0,0 ] ) -k2538,86:-473657,-710414:-65781 +k2535,445:-473657,-710414:-65781 ) ) -k2538,86:11355591,-710414:11829248 -g2538,86:11355591,-710414 +k2535,445:11355591,-710414:11829248 +g2535,445:11355591,-710414 ) ] ) -[2538,86:6630773,47279633:25952256,43253760,11795 -[2538,86:6630773,4812305:25952256,786432,0 -(2538,86:6630773,4812305:25952256,0,0 -(2538,86:6630773,4812305:25952256,0,0 -g2538,86:3078558,4812305 -[2538,86:3078558,4812305:0,0,0 -(2538,86:3078558,2439708:0,1703936,0 -k2538,86:1358238,2439708:-1720320 -(2538,1:1358238,2439708:1720320,1703936,0 -(2538,1:1358238,2439708:1179648,16384,0 -r2538,86:2537886,2439708:1179648,16384,0 +[2535,445:6630773,47279633:25952256,43253760,0 +[2535,445:6630773,4812305:25952256,786432,0 +(2535,445:6630773,4812305:25952256,513147,134348 +(2535,445:6630773,4812305:25952256,513147,134348 +g2535,445:3078558,4812305 +[2535,445:3078558,4812305:0,0,0 +(2535,445:3078558,2439708:0,1703936,0 +k2535,445:1358238,2439708:-1720320 +(2535,1:1358238,2439708:1720320,1703936,0 +(2535,1:1358238,2439708:1179648,16384,0 +r2535,445:2537886,2439708:1179648,16384,0 ) -g2538,1:3062174,2439708 -(2538,1:3062174,2439708:16384,1703936,0 -[2538,1:3062174,2439708:25952256,1703936,0 -(2538,1:3062174,1915420:25952256,1179648,0 -(2538,1:3062174,1915420:16384,1179648,0 -r2538,86:3078558,1915420:16384,1179648,0 +g2535,1:3062174,2439708 +(2535,1:3062174,2439708:16384,1703936,0 +[2535,1:3062174,2439708:25952256,1703936,0 +(2535,1:3062174,1915420:25952256,1179648,0 +(2535,1:3062174,1915420:16384,1179648,0 +r2535,445:3078558,1915420:16384,1179648,0 ) -k2538,1:29014430,1915420:25935872 -g2538,1:29014430,1915420 +k2535,1:29014430,1915420:25935872 +g2535,1:29014430,1915420 ) ] ) ) ) ] -[2538,86:3078558,4812305:0,0,0 -(2538,86:3078558,2439708:0,1703936,0 -g2538,86:29030814,2439708 -g2538,86:36135244,2439708 -(2538,1:36135244,2439708:1720320,1703936,0 -(2538,1:36135244,2439708:16384,1703936,0 -[2538,1:36135244,2439708:25952256,1703936,0 -(2538,1:36135244,1915420:25952256,1179648,0 -(2538,1:36135244,1915420:16384,1179648,0 -r2538,86:36151628,1915420:16384,1179648,0 +[2535,445:3078558,4812305:0,0,0 +(2535,445:3078558,2439708:0,1703936,0 +g2535,445:29030814,2439708 +g2535,445:36135244,2439708 +(2535,1:36135244,2439708:1720320,1703936,0 +(2535,1:36135244,2439708:16384,1703936,0 +[2535,1:36135244,2439708:25952256,1703936,0 +(2535,1:36135244,1915420:25952256,1179648,0 +(2535,1:36135244,1915420:16384,1179648,0 +r2535,445:36151628,1915420:16384,1179648,0 ) -k2538,1:62087500,1915420:25935872 -g2538,1:62087500,1915420 +k2535,1:62087500,1915420:25935872 +g2535,1:62087500,1915420 ) ] ) -g2538,1:36675916,2439708 -(2538,1:36675916,2439708:1179648,16384,0 -r2538,86:37855564,2439708:1179648,16384,0 +g2535,1:36675916,2439708 +(2535,1:36675916,2439708:1179648,16384,0 +r2535,445:37855564,2439708:1179648,16384,0 ) ) -k2538,86:3078556,2439708:-34777008 +k2535,445:3078556,2439708:-34777008 ) ] -[2538,86:3078558,4812305:0,0,0 -(2538,86:3078558,49800853:0,16384,2228224 -k2538,86:1358238,49800853:-1720320 -(2538,1:1358238,49800853:1720320,16384,2228224 -(2538,1:1358238,49800853:1179648,16384,0 -r2538,86:2537886,49800853:1179648,16384,0 +[2535,445:3078558,4812305:0,0,0 +(2535,445:3078558,49800853:0,16384,2228224 +k2535,445:1358238,49800853:-1720320 +(2535,1:1358238,49800853:1720320,16384,2228224 +(2535,1:1358238,49800853:1179648,16384,0 +r2535,445:2537886,49800853:1179648,16384,0 ) -g2538,1:3062174,49800853 -(2538,1:3062174,52029077:16384,1703936,0 -[2538,1:3062174,52029077:25952256,1703936,0 -(2538,1:3062174,51504789:25952256,1179648,0 -(2538,1:3062174,51504789:16384,1179648,0 -r2538,86:3078558,51504789:16384,1179648,0 +g2535,1:3062174,49800853 +(2535,1:3062174,52029077:16384,1703936,0 +[2535,1:3062174,52029077:25952256,1703936,0 +(2535,1:3062174,51504789:25952256,1179648,0 +(2535,1:3062174,51504789:16384,1179648,0 +r2535,445:3078558,51504789:16384,1179648,0 ) -k2538,1:29014430,51504789:25935872 -g2538,1:29014430,51504789 +k2535,1:29014430,51504789:25935872 +g2535,1:29014430,51504789 ) ] ) ) ) ] -[2538,86:3078558,4812305:0,0,0 -(2538,86:3078558,49800853:0,16384,2228224 -g2538,86:29030814,49800853 -g2538,86:36135244,49800853 -(2538,1:36135244,49800853:1720320,16384,2228224 -(2538,1:36135244,52029077:16384,1703936,0 -[2538,1:36135244,52029077:25952256,1703936,0 -(2538,1:36135244,51504789:25952256,1179648,0 -(2538,1:36135244,51504789:16384,1179648,0 -r2538,86:36151628,51504789:16384,1179648,0 -) -k2538,1:62087500,51504789:25935872 -g2538,1:62087500,51504789 -) -] +[2535,445:3078558,4812305:0,0,0 +(2535,445:3078558,49800853:0,16384,2228224 +g2535,445:29030814,49800853 +g2535,445:36135244,49800853 +(2535,1:36135244,49800853:1720320,16384,2228224 +(2535,1:36135244,52029077:16384,1703936,0 +[2535,1:36135244,52029077:25952256,1703936,0 +(2535,1:36135244,51504789:25952256,1179648,0 +(2535,1:36135244,51504789:16384,1179648,0 +r2535,445:36151628,51504789:16384,1179648,0 ) -g2538,1:36675916,49800853 -(2538,1:36675916,49800853:1179648,16384,0 -r2538,86:37855564,49800853:1179648,16384,0 -) -) -k2538,86:3078556,49800853:-34777008 +k2535,1:62087500,51504789:25935872 +g2535,1:62087500,51504789 ) ] -g2538,86:6630773,4812305 ) -) -] -[2538,86:6630773,45706769:25952256,40108032,0 -(2538,86:6630773,45706769:25952256,40108032,0 -(2538,86:6630773,45706769:0,0,0 -g2538,86:6630773,45706769 -) -[2538,86:6630773,45706769:25952256,40108032,0 -[2538,1:6630773,12106481:25952256,6507744,0 -(2538,1:6630773,7073297:25952256,32768,229376 -(2538,1:6630773,7073297:0,32768,229376 -(2538,1:6630773,7073297:5505024,32768,229376 -r2538,1:12135797,7073297:5505024,262144,229376 -) -k2538,1:6630773,7073297:-5505024 -) -) -(2538,1:6630773,8803457:25952256,923664,241827 -h2538,1:6630773,8803457:0,0,0 -g2538,1:10235777,8803457 -g2538,1:11799990,8803457 -g2538,1:12964302,8803457 -g2538,1:17208675,8803457 -g2538,1:19014716,8803457 -k2538,1:28388200,8803457:4194829 -k2538,1:32583029,8803457:4194829 -) -(2538,1:6630773,9419505:25952256,32768,0 -(2538,1:6630773,9419505:5505024,32768,0 -r2538,1:12135797,9419505:5505024,32768,0 -) -k2538,1:22359413,9419505:10223616 -k2538,1:32583029,9419505:10223616 -) -] -(2538,86:6630773,45706769:25952256,32627728,126483 -[2538,86:6630773,45706769:11829248,32627728,102891 -(2538,4:6630773,13734401:11829248,505283,7863 -h2538,3:6630773,13734401:0,0,0 -g2538,3:9062814,13734401 -g2538,3:10453488,13734401 -k2538,4:15513195,13734401:2946826 -k2538,4:18460021,13734401:2946826 -) -(2538,5:6630773,14599148:11829248,477757,126483 -h2538,4:6630773,14599148:0,0,0 -r2538,4:6630773,14599148:0,604240,126483 -g2538,4:7941493,14599148 -g2538,4:7941493,14599148 -g2538,4:10290302,14599148 -k2538,5:14773621,14599148:3686401 -k2538,5:18460021,14599148:3686400 -) -(2538,6:6630773,15463894:11829248,505283,102891 -h2538,5:6630773,15463894:0,0,0 -r2538,5:6630773,15463894:0,608174,102891 -g2538,5:7941493,15463894 -g2538,5:7941493,15463894 -g2538,5:11871031,15463894 -g2538,5:13040848,15463894 -k2538,6:16148894,15463894:2311128 -k2538,6:18460021,15463894:2311127 -) -(2538,7:6630773,16328641:11829248,513147,102891 -h2538,6:6630773,16328641:0,0,0 -r2538,6:6630773,16328641:0,616038,102891 -g2538,6:7941493,16328641 -g2538,6:7941493,16328641 -g2538,6:12266213,16328641 -g2538,6:13436030,16328641 -g2538,6:14605847,16328641 -g2538,6:16174123,16328641 -k2538,7:17914761,16328641:545261 -k2538,7:18460021,16328641:545260 -) -(2538,8:6630773,17193388:11829248,505283,102891 -h2538,7:6630773,17193388:0,0,0 -r2538,7:6630773,17193388:0,608174,102891 -g2538,7:7941493,17193388 -g2538,7:7941493,17193388 -g2538,7:10685485,17193388 -g2538,7:11855302,17193388 -g2538,7:13025119,17193388 -g2538,7:14194936,17193388 -k2538,8:16725938,17193388:1734084 -k2538,8:18460021,17193388:1734083 -) -(2538,9:6630773,18058134:11829248,513147,102891 -h2538,8:6630773,18058134:0,0,0 -r2538,8:6630773,18058134:0,616038,102891 -g2538,8:7941493,18058134 -g2538,8:7941493,18058134 -g2538,8:10685485,18058134 -k2538,9:14971212,18058134:3488809 -k2538,9:18460021,18058134:3488809 -) -(2538,10:6630773,18922881:11829248,505283,134348 -h2538,9:6630773,18922881:0,0,0 -r2538,9:6630773,18922881:0,639631,134348 -g2538,9:7941493,18922881 -g2538,9:7941493,18922881 -g2538,9:11080667,18922881 -g2538,9:12250484,18922881 -g2538,9:13420301,18922881 -g2538,9:14590118,18922881 -k2538,10:16923529,18922881:1536493 -k2538,10:18460021,18922881:1536492 -) -(2538,11:6630773,19787628:11829248,505283,102891 -h2538,10:6630773,19787628:0,0,0 -r2538,10:6630773,19787628:0,608174,102891 -g2538,10:7941493,19787628 -g2538,10:7941493,19787628 -g2538,10:9895120,19787628 -g2538,10:11064937,19787628 -g2538,10:12234754,19787628 -k2538,11:15945076,19787628:2514945 -k2538,11:18460021,19787628:2514945 -) -(2538,12:6630773,20652374:11829248,505283,134348 -h2538,11:6630773,20652374:0,0,0 -r2538,11:6630773,20652374:0,639631,134348 -g2538,11:7941493,20652374 -g2538,11:7941493,20652374 -g2538,11:11080667,20652374 -g2538,11:12250484,20652374 -g2538,11:13420301,20652374 -g2538,11:14590118,20652374 -k2538,12:16923529,20652374:1536493 -k2538,12:18460021,20652374:1536492 -) -(2538,13:6630773,21517121:11829248,505283,102891 -h2538,12:6630773,21517121:0,0,0 -r2538,12:6630773,21517121:0,608174,102891 -g2538,12:7941493,21517121 -g2538,12:7941493,21517121 -g2538,12:10685485,21517121 -g2538,12:11855302,21517121 -g2538,12:13025119,21517121 -k2538,13:16340259,21517121:2119763 -k2538,13:18460021,21517121:2119762 -) -(2538,14:6630773,22381868:11829248,505283,102891 -h2538,13:6630773,22381868:0,0,0 -r2538,13:6630773,22381868:0,608174,102891 -g2538,13:7941493,22381868 -g2538,13:7941493,22381868 -g2538,13:11080667,22381868 -g2538,13:12250484,22381868 -g2538,13:13420301,22381868 -g2538,13:14590118,22381868 -g2538,13:15759935,22381868 -k2538,14:17508437,22381868:951584 -k2538,14:18460021,22381868:951584 -) -(2538,15:6630773,23246614:11829248,505283,102891 -h2538,14:6630773,23246614:0,0,0 -r2538,14:6630773,23246614:0,608174,102891 -g2538,14:7941493,23246614 -g2538,14:7941493,23246614 -g2538,14:9499938,23246614 -k2538,15:14577668,23246614:3882353 -k2538,15:18460021,23246614:3882353 -) -(2538,16:6630773,24111361:11829248,513147,102891 -h2538,15:6630773,24111361:0,0,0 -r2538,15:6630773,24111361:0,616038,102891 -g2538,15:7941493,24111361 -g2538,15:7941493,24111361 -g2538,15:10685485,24111361 -k2538,16:15170442,24111361:3289580 -k2538,16:18460021,24111361:3289579 -) -(2538,17:6630773,24976108:11829248,505283,102891 -h2538,16:6630773,24976108:0,0,0 -r2538,16:6630773,24976108:0,608174,102891 -g2538,16:7941493,24976108 -g2538,16:7941493,24976108 -g2538,16:10685485,24976108 -g2538,16:12253761,24976108 -g2538,16:13822037,24976108 -g2538,16:15390313,24976108 -g2538,16:16958589,24976108 -k2538,16:18460021,24976108:132385 -) -(2538,17:9252213,25817596:9207808,485622,11795 -k2538,17:14453806,25817596:4006216 -k2538,17:18460021,25817596:4006215 -) -(2538,18:6630773,26682342:11829248,485622,102891 -h2538,17:6630773,26682342:0,0,0 -r2538,17:6630773,26682342:0,588513,102891 -g2538,17:7941493,26682342 -g2538,17:7941493,26682342 -g2538,17:10685485,26682342 -k2538,18:14971212,26682342:3488809 -k2538,18:18460021,26682342:3488809 -) -(2538,19:6630773,27547089:11829248,505283,126483 -h2538,18:6630773,27547089:0,0,0 -g2538,18:9587757,27547089 -g2538,18:10978431,27547089 -g2538,18:13371805,27547089 -k2538,19:16921236,27547089:1538786 -k2538,19:18460021,27547089:1538785 -) -(2538,20:6630773,28411836:11829248,513147,102891 -h2538,19:6630773,28411836:0,0,0 -r2538,19:6630773,28411836:0,616038,102891 -g2538,19:7941493,28411836 -g2538,19:7941493,28411836 -g2538,19:9895120,28411836 -g2538,19:11064937,28411836 -k2538,20:15160938,28411836:3299083 -k2538,20:18460021,28411836:3299083 -) -(2538,21:6630773,29276582:11829248,513147,126483 -h2538,20:6630773,29276582:0,0,0 -r2538,20:6630773,29276582:0,639630,126483 -g2538,20:7941493,29276582 -g2538,20:7941493,29276582 -g2538,20:15822852,29276582 -k2538,21:17539896,29276582:920126 -k2538,21:18460021,29276582:920125 -) -(2538,22:6630773,30141329:11829248,513147,102891 -h2538,21:6630773,30141329:0,0,0 -r2538,21:6630773,30141329:0,616038,102891 -g2538,21:7941493,30141329 -g2538,21:7941493,30141329 -g2538,21:15822852,30141329 -k2538,22:17539896,30141329:920126 -k2538,22:18460021,30141329:920125 -) -(2538,23:6630773,31006076:11829248,513147,102891 -h2538,22:6630773,31006076:0,0,0 -r2538,22:6630773,31006076:0,616038,102891 -g2538,22:7941493,31006076 -g2538,22:7941493,31006076 -g2538,22:15822852,31006076 -k2538,23:17539896,31006076:920126 -k2538,23:18460021,31006076:920125 -) -(2538,24:6630773,31870822:11829248,513147,134348 -h2538,23:6630773,31870822:0,0,0 -r2538,23:6630773,31870822:0,647495,134348 -g2538,23:7941493,31870822 -g2538,23:7941493,31870822 -g2538,23:17403580,31870822 -k2538,24:18330260,31870822:129762 -k2538,24:18460021,31870822:129761 -) -(2538,25:6630773,32735569:11829248,513147,134348 -h2538,24:6630773,32735569:0,0,0 -r2538,24:6630773,32735569:0,647495,134348 -g2538,24:7941493,32735569 -g2538,24:7941493,32735569 -g2538,24:16218034,32735569 -k2538,25:17737487,32735569:722535 -k2538,25:18460021,32735569:722534 -) -(2538,26:6630773,33600316:11829248,485622,102891 -h2538,25:6630773,33600316:0,0,0 -r2538,25:6630773,33600316:0,588513,102891 -g2538,25:7941493,33600316 -g2538,25:7941493,33600316 -g2538,25:10290302,33600316 -k2538,26:14773621,33600316:3686401 -k2538,26:18460021,33600316:3686400 -) -(2538,27:6630773,34465062:11829248,513147,102891 -h2538,26:6630773,34465062:0,0,0 -r2538,26:6630773,34465062:0,616038,102891 -g2538,26:7941493,34465062 -g2538,26:7941493,34465062 -g2538,26:9499938,34465062 -g2538,26:10669755,34465062 -k2538,27:14963347,34465062:3496674 -k2538,27:18460021,34465062:3496674 -) -(2538,28:6630773,35329809:11829248,485622,102891 -h2538,27:6630773,35329809:0,0,0 -r2538,27:6630773,35329809:0,588513,102891 -g2538,27:7941493,35329809 -g2538,27:7941493,35329809 -g2538,27:11080667,35329809 -k2538,28:15168803,35329809:3291218 -k2538,28:18460021,35329809:3291218 -) -(2538,29:6630773,36194556:11829248,505283,102891 -h2538,28:6630773,36194556:0,0,0 -r2538,28:6630773,36194556:0,608174,102891 -g2538,28:7941493,36194556 -g2538,28:7941493,36194556 -g2538,28:11080667,36194556 -k2538,29:15168803,36194556:3291218 -k2538,29:18460021,36194556:3291218 -) -(2538,30:6630773,37059302:11829248,505283,102891 -h2538,29:6630773,37059302:0,0,0 -r2538,29:6630773,37059302:0,608174,102891 -g2538,29:7941493,37059302 -g2538,29:7941493,37059302 -g2538,29:11871031,37059302 -k2538,30:15563985,37059302:2896036 -k2538,30:18460021,37059302:2896036 -) -(2538,31:6630773,37924049:11829248,505283,102891 -h2538,30:6630773,37924049:0,0,0 -r2538,30:6630773,37924049:0,608174,102891 -g2538,30:7941493,37924049 -g2538,30:7941493,37924049 -g2538,30:12266213,37924049 -k2538,31:15761576,37924049:2698445 -k2538,31:18460021,37924049:2698445 -) -(2538,32:6630773,38788796:11829248,485622,102891 -h2538,31:6630773,38788796:0,0,0 -r2538,31:6630773,38788796:0,588513,102891 -g2538,31:7941493,38788796 -g2538,31:7941493,38788796 -g2538,31:9104756,38788796 -g2538,31:10274573,38788796 -g2538,31:11444390,38788796 -k2538,32:15350665,38788796:3109357 -k2538,32:18460021,38788796:3109356 -) -(2538,33:6630773,39653542:11829248,505283,102891 -h2538,32:6630773,39653542:0,0,0 -r2538,32:6630773,39653542:0,608174,102891 -g2538,32:7941493,39653542 -g2538,32:7941493,39653542 -g2538,32:13451759,39653542 -k2538,33:16354349,39653542:2105672 -k2538,33:18460021,39653542:2105672 -) -(2538,34:6630773,40518289:11829248,505283,102891 -h2538,33:6630773,40518289:0,0,0 -r2538,33:6630773,40518289:0,608174,102891 -g2538,33:7941493,40518289 -g2538,33:7941493,40518289 -g2538,33:11475849,40518289 -k2538,34:15366394,40518289:3093627 -k2538,34:18460021,40518289:3093627 -) -(2538,35:6630773,41383036:11829248,485622,102891 -h2538,34:6630773,41383036:0,0,0 -r2538,34:6630773,41383036:0,588513,102891 -g2538,34:7941493,41383036 -g2538,34:7941493,41383036 -g2538,34:9499938,41383036 -k2538,35:14378439,41383036:4081583 -k2538,35:18460021,41383036:4081582 -) -(2538,36:6630773,42247782:11829248,505283,126483 -h2538,35:6630773,42247782:0,0,0 -r2538,35:6630773,42247782:0,631766,126483 -g2538,35:7941493,42247782 -g2538,35:7941493,42247782 -g2538,35:9104756,42247782 -k2538,36:14180848,42247782:4279174 -k2538,36:18460021,42247782:4279173 -) -(2538,37:6630773,43112529:11829248,485622,102891 -h2538,36:6630773,43112529:0,0,0 -r2538,36:6630773,43112529:0,588513,102891 -g2538,36:7941493,43112529 -g2538,36:7941493,43112529 -g2538,36:9895120,43112529 -k2538,37:14576030,43112529:3883992 -k2538,37:18460021,43112529:3883991 -) -(2538,38:6630773,43977276:11829248,513147,7863 -h2538,37:6630773,43977276:0,0,0 -g2538,37:9117864,43977276 -g2538,37:9976385,43977276 -k2538,38:15756006,43977276:2704016 -k2538,38:18460021,43977276:2704015 -) -(2538,39:6630773,44842022:11829248,505283,126483 -h2538,38:6630773,44842022:0,0,0 -r2538,38:6630773,44842022:0,631766,126483 -g2538,38:7941493,44842022 -g2538,38:7941493,44842022 -g2538,38:11080667,44842022 -g2538,38:12648943,44842022 -g2538,38:14217219,44842022 -k2538,39:17697837,44842022:762185 -k2538,39:18460021,44842022:762184 -) -(2538,40:6630773,45706769:11829248,505283,102891 -h2538,39:6630773,45706769:0,0,0 -r2538,39:6630773,45706769:0,608174,102891 -g2538,39:7941493,45706769 -g2538,39:7941493,45706769 -g2538,39:11080667,45706769 -k2538,40:16129561,45706769:2330461 -k2538,40:18460021,45706769:2330460 -) -] -k2538,86:19606901,45706769:1146880 -r2538,86:19606901,45706769:0,32754211,126483 -k2538,86:20753781,45706769:1146880 -[2538,86:20753781,45706769:11829248,32627728,126483 -(2538,41:20753781,13734401:11829248,513147,102891 -h2538,40:20753781,13734401:0,0,0 -r2538,40:20753781,13734401:0,616038,102891 -g2538,40:22064501,13734401 -g2538,40:22064501,13734401 -g2538,40:23622946,13734401 -g2538,40:25191222,13734401 -g2538,40:26759498,13734401 -k2538,41:30268952,13734401:2314077 -k2538,41:32583029,13734401:2314077 -) -(2538,42:20753781,14581276:11829248,513147,102891 -h2538,41:20753781,14581276:0,0,0 -r2538,41:20753781,14581276:0,616038,102891 -g2538,41:22064501,14581276 -g2538,41:22064501,14581276 -g2538,41:24018128,14581276 -g2538,41:25187945,14581276 -k2538,42:29283946,14581276:3299083 -k2538,42:32583029,14581276:3299083 -) -(2538,43:20753781,15428150:11829248,513147,102891 -h2538,42:20753781,15428150:0,0,0 -r2538,42:20753781,15428150:0,616038,102891 -g2538,42:22064501,15428150 -g2538,42:22064501,15428150 -g2538,42:25994039,15428150 -k2538,43:29686993,15428150:2896036 -k2538,43:32583029,15428150:2896036 -) -(2538,44:20753781,16275025:11829248,513147,102891 -h2538,43:20753781,16275025:0,0,0 -r2538,43:20753781,16275025:0,616038,102891 -g2538,43:22064501,16275025 -g2538,43:22064501,16275025 -g2538,43:25598857,16275025 -g2538,43:26768674,16275025 -k2538,44:30074311,16275025:2508719 -k2538,44:32583029,16275025:2508718 -) -(2538,45:20753781,17121899:11829248,505283,126483 -h2538,44:20753781,17121899:0,0,0 -r2538,44:20753781,17121899:0,631766,126483 -g2538,44:22064501,17121899 -g2538,44:22064501,17121899 -g2538,44:25598857,17121899 -g2538,44:26768674,17121899 -g2538,44:28336950,17121899 -k2538,45:31057678,17121899:1525351 -k2538,45:32583029,17121899:1525351 -) -(2538,46:20753781,17968774:11829248,505283,102891 -h2538,45:20753781,17968774:0,0,0 -r2538,45:20753781,17968774:0,608174,102891 -g2538,45:22064501,17968774 -g2538,45:22064501,17968774 -g2538,45:24808493,17968774 -k2538,46:29293450,17968774:3289580 -k2538,46:32583029,17968774:3289579 -) -(2538,47:20753781,18815648:11829248,485622,126483 -h2538,46:20753781,18815648:0,0,0 -r2538,46:20753781,18815648:0,612105,126483 -g2538,46:22064501,18815648 -g2538,46:22064501,18815648 -g2538,46:24808493,18815648 -g2538,46:26376769,18815648 -g2538,46:27945045,18815648 -k2538,47:30861726,18815648:1721304 -k2538,47:32583029,18815648:1721303 -) -(2538,48:20753781,19662523:11829248,505283,102891 -h2538,47:20753781,19662523:0,0,0 -r2538,47:20753781,19662523:0,608174,102891 -g2538,47:22064501,19662523 -g2538,47:22064501,19662523 -g2538,47:25598857,19662523 -k2538,48:29688632,19662523:2894398 -k2538,48:32583029,19662523:2894397 -) -(2538,49:20753781,20509398:11829248,505283,126483 -h2538,48:20753781,20509398:0,0,0 -r2538,48:20753781,20509398:0,631766,126483 -g2538,48:22064501,20509398 -g2538,48:22064501,20509398 -g2538,48:24808493,20509398 -k2538,49:29094220,20509398:3488809 -k2538,49:32583029,20509398:3488809 -) -(2538,50:20753781,21356272:11829248,505283,126483 -h2538,49:20753781,21356272:0,0,0 -r2538,49:20753781,21356272:0,631766,126483 -g2538,49:22064501,21356272 -g2538,49:22064501,21356272 -g2538,49:25598857,21356272 -g2538,49:26768674,21356272 -g2538,49:28336950,21356272 -k2538,50:31057678,21356272:1525351 -k2538,50:32583029,21356272:1525351 -) -(2538,51:20753781,22203147:11829248,505283,102891 -h2538,50:20753781,22203147:0,0,0 -r2538,50:20753781,22203147:0,608174,102891 -g2538,50:22064501,22203147 -g2538,50:22064501,22203147 -g2538,50:25598857,22203147 -g2538,50:26768674,22203147 -k2538,51:30074311,22203147:2508719 -k2538,51:32583029,22203147:2508718 -) -(2538,52:20753781,23050021:11829248,505283,126483 -h2538,51:20753781,23050021:0,0,0 -r2538,51:20753781,23050021:0,631766,126483 -g2538,51:22064501,23050021 -g2538,51:22064501,23050021 -g2538,51:25598857,23050021 -g2538,51:26768674,23050021 -k2538,52:31035068,23050021:1547961 -k2538,52:32583029,23050021:1547961 -) -(2538,53:20753781,23896896:11829248,505283,102891 -h2538,52:20753781,23896896:0,0,0 -r2538,52:20753781,23896896:0,608174,102891 -g2538,52:22064501,23896896 -g2538,52:22064501,23896896 -g2538,52:24413310,23896896 -g2538,52:25981586,23896896 -k2538,53:30641524,23896896:1941505 -k2538,53:32583029,23896896:1941505 -) -(2538,57:20753781,25488905:11829248,505283,134348 -h2538,56:20753781,25488905:0,0,0 -g2538,56:22342373,25488905 -k2538,57:28607615,25488905:3975414 -k2538,57:32583029,25488905:3975414 -) -(2538,58:20753781,26335780:11829248,485622,102891 -h2538,57:20753781,26335780:0,0,0 -r2538,57:20753781,26335780:0,588513,102891 -g2538,57:22064501,26335780 -g2538,57:22064501,26335780 -g2538,57:25203675,26335780 -k2538,58:29491041,26335780:3091989 -k2538,58:32583029,26335780:3091988 -) -(2538,59:20753781,27182655:11829248,485622,102891 -h2538,58:20753781,27182655:0,0,0 -r2538,58:20753781,27182655:0,588513,102891 -g2538,58:22064501,27182655 -g2538,58:22064501,27182655 -g2538,58:24018128,27182655 -g2538,58:25586404,27182655 -k2538,59:29682405,27182655:2900624 -k2538,59:32583029,27182655:2900624 -) -(2538,60:20753781,28029529:11829248,505283,102891 -h2538,59:20753781,28029529:0,0,0 -r2538,59:20753781,28029529:0,608174,102891 -g2538,59:22064501,28029529 -g2538,59:22064501,28029529 -g2538,59:25598857,28029529 -g2538,59:27167133,28029529 -k2538,60:30472770,28029529:2110260 -k2538,60:32583029,28029529:2110259 -) -(2538,61:20753781,28876404:11829248,485622,126483 -h2538,60:20753781,28876404:0,0,0 -r2538,60:20753781,28876404:0,612105,126483 -g2538,60:22064501,28876404 -g2538,60:22064501,28876404 -g2538,60:26784403,28876404 -k2538,61:30281405,28876404:2301625 -k2538,61:32583029,28876404:2301624 -) -(2538,62:20753781,29723278:11829248,485622,126483 -h2538,61:20753781,29723278:0,0,0 -r2538,61:20753781,29723278:0,612105,126483 -g2538,61:22064501,29723278 -g2538,61:22064501,29723278 -g2538,61:27179585,29723278 -k2538,62:30478996,29723278:2104034 -k2538,62:32583029,29723278:2104033 -) -(2538,63:20753781,30570153:11829248,505283,102891 -h2538,62:20753781,30570153:0,0,0 -r2538,62:20753781,30570153:0,608174,102891 -g2538,62:22064501,30570153 -g2538,62:22064501,30570153 -g2538,62:24018128,30570153 -g2538,62:25586404,30570153 -k2538,63:29682405,30570153:2900624 -k2538,63:32583029,30570153:2900624 -) -(2538,64:20753781,31417027:11829248,485622,102891 -h2538,63:20753781,31417027:0,0,0 -r2538,63:20753781,31417027:0,588513,102891 -g2538,63:22064501,31417027 -g2538,63:22064501,31417027 -g2538,63:24808493,31417027 -k2538,64:29293450,31417027:3289580 -k2538,64:32583029,31417027:3289579 -) -(2538,65:20753781,32263902:11829248,485622,102891 -h2538,64:20753781,32263902:0,0,0 -r2538,64:20753781,32263902:0,588513,102891 -g2538,64:22064501,32263902 -g2538,64:22064501,32263902 -g2538,64:24808493,32263902 -k2538,65:29293450,32263902:3289580 -k2538,65:32583029,32263902:3289579 -) -(2538,66:20753781,33110777:11829248,505283,126483 -h2538,65:20753781,33110777:0,0,0 -r2538,65:20753781,33110777:0,631766,126483 -g2538,65:22064501,33110777 -g2538,65:22064501,33110777 -g2538,65:23622946,33110777 -k2538,66:28700676,33110777:3882353 -k2538,66:32583029,33110777:3882353 -) -(2538,67:20753781,33957651:11829248,485622,134348 -h2538,66:20753781,33957651:0,0,0 -r2538,66:20753781,33957651:0,619970,134348 -g2538,66:22064501,33957651 -g2538,66:22064501,33957651 -g2538,66:24808493,33957651 -k2538,67:29293450,33957651:3289580 -k2538,67:32583029,33957651:3289579 -) -(2538,68:20753781,34804526:11829248,505283,126483 -h2538,67:20753781,34804526:0,0,0 -r2538,67:20753781,34804526:0,631766,126483 -g2538,67:22064501,34804526 -g2538,67:22064501,34804526 -g2538,67:25994039,34804526 -g2538,67:27562315,34804526 -k2538,68:30670361,34804526:1912669 -k2538,68:32583029,34804526:1912668 -) -(2538,72:20753781,36396535:11829248,513147,7863 -h2538,71:20753781,36396535:0,0,0 -g2538,71:23978807,36396535 -g2538,71:25369481,36396535 -k2538,72:30368568,36396535:2214462 -k2538,72:32583029,36396535:2214461 -) -(2538,73:20753781,37243410:11829248,505283,102891 -h2538,72:20753781,37243410:0,0,0 -r2538,72:20753781,37243410:0,608174,102891 -g2538,72:22064501,37243410 -g2538,72:22064501,37243410 -g2538,72:24413310,37243410 -g2538,72:25583127,37243410 -k2538,73:29481537,37243410:3101492 -k2538,73:32583029,37243410:3101492 -) -(2538,74:20753781,38090285:11829248,505283,102891 -h2538,73:20753781,38090285:0,0,0 -r2538,73:20753781,38090285:0,608174,102891 -g2538,73:22064501,38090285 -g2538,73:22064501,38090285 -g2538,73:24413310,38090285 -g2538,73:25981586,38090285 -k2538,74:29879996,38090285:2703033 -k2538,74:32583029,38090285:2703033 -) -(2538,75:20753781,38937159:11829248,505283,134348 -h2538,74:20753781,38937159:0,0,0 -r2538,74:20753781,38937159:0,639631,134348 -g2538,74:22064501,38937159 -g2538,74:22064501,38937159 -g2538,74:26784403,38937159 -k2538,75:30281405,38937159:2301625 -k2538,75:32583029,38937159:2301624 -) -(2538,76:20753781,39784034:11829248,505283,102891 -h2538,75:20753781,39784034:0,0,0 -r2538,75:20753781,39784034:0,608174,102891 -g2538,75:22064501,39784034 -g2538,75:22064501,39784034 -g2538,75:24413310,39784034 -k2538,76:29095858,39784034:3487171 -k2538,76:32583029,39784034:3487171 -) -(2538,77:20753781,40630908:11829248,505283,102891 -h2538,76:20753781,40630908:0,0,0 -r2538,76:20753781,40630908:0,608174,102891 -g2538,76:22064501,40630908 -g2538,76:22064501,40630908 -g2538,76:24413310,40630908 -k2538,77:28896629,40630908:3686401 -k2538,77:32583029,40630908:3686400 -) -(2538,78:20753781,41477783:11829248,505283,102891 -h2538,77:20753781,41477783:0,0,0 -r2538,77:20753781,41477783:0,608174,102891 -g2538,77:22064501,41477783 -g2538,77:22064501,41477783 -g2538,77:26389221,41477783 -g2538,77:27957497,41477783 -g2538,77:29525773,41477783 -k2538,78:31652090,41477783:930940 -k2538,78:32583029,41477783:930939 -) -(2538,79:20753781,42324657:11829248,505283,102891 -h2538,78:20753781,42324657:0,0,0 -r2538,78:20753781,42324657:0,608174,102891 -g2538,78:22064501,42324657 -g2538,78:22064501,42324657 -g2538,78:29945860,42324657 -k2538,78:32583029,42324657:1268122 -) -(2538,79:23375221,43166145:9207808,485622,11795 -k2538,79:28576814,43166145:4006216 -k2538,79:32583029,43166145:4006215 -) -(2538,80:20753781,44013020:11829248,505283,102891 -h2538,79:20753781,44013020:0,0,0 -r2538,79:20753781,44013020:0,608174,102891 -k2538,79:22064501,44013020:1310720 -k2538,79:22064501,44013020:0 -k2538,79:25185850,44013020:181404 -k2538,79:26736300,44013020:181403 -k2538,79:28286751,44013020:181404 -k2538,79:29837201,44013020:181403 -k2538,79:31387652,44013020:181404 -k2538,80:32583029,44013020:0 -k2538,80:32583029,44013020:0 -) -(2538,81:20753781,44859894:11829248,505283,134348 -h2538,80:20753781,44859894:0,0,0 -r2538,80:20753781,44859894:0,639631,134348 -g2538,80:22064501,44859894 -g2538,80:22064501,44859894 -g2538,80:26784403,44859894 -k2538,81:30281405,44859894:2301625 -k2538,81:32583029,44859894:2301624 -) -(2538,82:20753781,45706769:11829248,505283,126483 -h2538,81:20753781,45706769:0,0,0 -r2538,81:20753781,45706769:0,631766,126483 -g2538,81:22064501,45706769 -g2538,81:22064501,45706769 -g2538,81:24413310,45706769 -k2538,82:28896629,45706769:3686401 -k2538,82:32583029,45706769:3686400 -) -] -(2538,86:32583029,45706769:0,355205,126483 -h2538,86:32583029,45706769:420741,355205,126483 -k2538,86:32583029,45706769:-420741 -) -) -] -(2538,86:32583029,45706769:0,0,0 -g2538,86:32583029,45706769 -) -) -] -(2538,86:6630773,47279633:25952256,485622,11795 -(2538,86:6630773,47279633:25952256,485622,11795 -k2538,86:19009213,47279633:12378440 -k2538,86:32583030,47279633:12378440 -) -) -] -h2538,86:4262630,4025873:0,0,0 -] -!26062 +g2535,1:36675916,49800853 +(2535,1:36675916,49800853:1179648,16384,0 +r2535,445:37855564,49800853:1179648,16384,0 +) +) +k2535,445:3078556,49800853:-34777008 +) +] +g2535,445:6630773,4812305 +g2535,445:6630773,4812305 +g2535,445:8528695,4812305 +g2535,445:9343962,4812305 +g2535,445:9957379,4812305 +g2535,445:12215094,4812305 +g2535,445:13170608,4812305 +g2535,445:16094824,4812305 +k2535,445:31387652,4812305:15292828 +) +) +] +[2535,445:6630773,45706769:25952256,40108032,0 +(2535,445:6630773,45706769:25952256,40108032,0 +(2535,445:6630773,45706769:0,0,0 +g2535,445:6630773,45706769 +) +[2535,445:6630773,45706769:25952256,40108032,0 +(2535,445:6630773,45706769:25952256,40108032,126483 +[2535,445:6630773,45706769:11829248,40108032,102891 +(2535,351:6630773,6254097:11829248,505283,126483 +h2535,350:6630773,6254097:0,0,0 +r2535,350:6630773,6254097:0,631766,126483 +g2535,350:7941493,6254097 +g2535,350:7941493,6254097 +g2535,350:16218034,6254097 +k2535,351:17936716,6254097:523305 +k2535,351:18460021,6254097:523305 +) +(2535,352:6630773,7112499:11829248,505283,134348 +h2535,351:6630773,7112499:0,0,0 +r2535,351:6630773,7112499:0,639631,134348 +g2535,351:7941493,7112499 +g2535,351:7941493,7112499 +g2535,351:13451759,7112499 +k2535,352:16553579,7112499:1906443 +k2535,352:18460021,7112499:1906442 +) +(2535,353:6630773,7970901:11829248,505283,134348 +h2535,352:6630773,7970901:0,0,0 +r2535,352:6630773,7970901:0,639631,134348 +g2535,352:7941493,7970901 +g2535,352:7941493,7970901 +g2535,352:14242123,7970901 +k2535,353:16948761,7970901:1511261 +k2535,353:18460021,7970901:1511260 +) +(2535,354:6630773,8829304:11829248,505283,102891 +h2535,353:6630773,8829304:0,0,0 +r2535,353:6630773,8829304:0,608174,102891 +g2535,353:7941493,8829304 +g2535,353:7941493,8829304 +g2535,353:9895120,8829304 +k2535,354:14775259,8829304:3684762 +k2535,354:18460021,8829304:3684762 +) +(2535,355:6630773,9687706:11829248,505283,102891 +h2535,354:6630773,9687706:0,0,0 +r2535,354:6630773,9687706:0,608174,102891 +g2535,354:7941493,9687706 +g2535,354:7941493,9687706 +g2535,354:11475849,9687706 +k2535,355:15565624,9687706:2894398 +k2535,355:18460021,9687706:2894397 +) +(2535,356:6630773,10546108:11829248,505283,102891 +h2535,355:6630773,10546108:0,0,0 +r2535,355:6630773,10546108:0,608174,102891 +g2535,355:7941493,10546108 +g2535,355:7941493,10546108 +g2535,355:10290302,10546108 +k2535,356:14972850,10546108:3487171 +k2535,356:18460021,10546108:3487171 +) +(2535,357:6630773,11404510:11829248,505283,134348 +h2535,356:6630773,11404510:0,0,0 +r2535,356:6630773,11404510:0,639631,134348 +g2535,356:7941493,11404510 +g2535,356:7941493,11404510 +g2535,356:12661395,11404510 +k2535,357:16158397,11404510:2301625 +k2535,357:18460021,11404510:2301624 +) +(2535,358:6630773,12262912:11829248,505283,126483 +h2535,357:6630773,12262912:0,0,0 +r2535,357:6630773,12262912:0,631766,126483 +g2535,357:7941493,12262912 +g2535,357:7941493,12262912 +g2535,357:10290302,12262912 +k2535,358:14773621,12262912:3686401 +k2535,358:18460021,12262912:3686400 +) +(2535,359:6630773,13121314:11829248,505283,102891 +h2535,358:6630773,13121314:0,0,0 +r2535,358:6630773,13121314:0,608174,102891 +g2535,358:7941493,13121314 +g2535,358:7941493,13121314 +g2535,358:12266213,13121314 +k2535,359:15960806,13121314:2499216 +k2535,359:18460021,13121314:2499215 +) +(2535,360:6630773,13979717:11829248,505283,102891 +h2535,359:6630773,13979717:0,0,0 +r2535,359:6630773,13979717:0,608174,102891 +g2535,359:7941493,13979717 +g2535,359:7941493,13979717 +g2535,359:11871031,13979717 +k2535,360:15763215,13979717:2696807 +k2535,360:18460021,13979717:2696806 +) +(2535,361:6630773,14838119:11829248,505283,102891 +h2535,360:6630773,14838119:0,0,0 +r2535,360:6630773,14838119:0,608174,102891 +g2535,360:7941493,14838119 +g2535,360:7941493,14838119 +g2535,360:11080667,14838119 +k2535,361:15368033,14838119:3091989 +k2535,361:18460021,14838119:3091988 +) +(2535,362:6630773,15696521:11829248,505283,102891 +h2535,361:6630773,15696521:0,0,0 +r2535,361:6630773,15696521:0,608174,102891 +g2535,361:7941493,15696521 +g2535,361:7941493,15696521 +g2535,361:11080667,15696521 +k2535,362:15368033,15696521:3091989 +k2535,362:18460021,15696521:3091988 +) +(2535,363:6630773,16554923:11829248,513147,134348 +h2535,362:6630773,16554923:0,0,0 +r2535,362:6630773,16554923:0,647495,134348 +g2535,362:7941493,16554923 +g2535,362:7941493,16554923 +g2535,362:11475849,16554923 +k2535,363:15366394,16554923:3093627 +k2535,363:18460021,16554923:3093627 +) +(2535,364:6630773,17413325:11829248,505283,102891 +h2535,363:6630773,17413325:0,0,0 +r2535,363:6630773,17413325:0,608174,102891 +g2535,363:7941493,17413325 +g2535,363:7941493,17413325 +g2535,363:10290302,17413325 +g2535,363:11460119,17413325 +k2535,364:15358529,17413325:3101492 +k2535,364:18460021,17413325:3101492 +) +(2535,365:6630773,18271728:11829248,505283,102891 +h2535,364:6630773,18271728:0,0,0 +r2535,364:6630773,18271728:0,608174,102891 +g2535,364:7941493,18271728 +g2535,364:7941493,18271728 +g2535,364:11080667,18271728 +k2535,365:15368033,18271728:3091989 +k2535,365:18460021,18271728:3091988 +) +(2535,366:6630773,19130130:11829248,505283,102891 +h2535,365:6630773,19130130:0,0,0 +r2535,365:6630773,19130130:0,608174,102891 +g2535,365:7941493,19130130 +g2535,365:7941493,19130130 +g2535,365:10685485,19130130 +g2535,365:11855302,19130130 +g2535,365:13025119,19130130 +g2535,365:14194936,19130130 +k2535,366:16925167,19130130:1534854 +k2535,366:18460021,19130130:1534854 +) +(2535,367:6630773,19988532:11829248,505283,102891 +h2535,366:6630773,19988532:0,0,0 +r2535,366:6630773,19988532:0,608174,102891 +g2535,366:7941493,19988532 +g2535,366:7941493,19988532 +g2535,366:11475849,19988532 +k2535,367:15366394,19988532:3093627 +k2535,367:18460021,19988532:3093627 +) +(2535,368:6630773,20846934:11829248,505283,126483 +h2535,367:6630773,20846934:0,0,0 +r2535,367:6630773,20846934:0,631766,126483 +g2535,367:7941493,20846934 +g2535,367:7941493,20846934 +g2535,367:11475849,20846934 +k2535,368:15565624,20846934:2894398 +k2535,368:18460021,20846934:2894397 +) +(2535,369:6630773,21705336:11829248,513147,126483 +h2535,368:6630773,21705336:0,0,0 +r2535,368:6630773,21705336:0,639630,126483 +g2535,368:7941493,21705336 +g2535,368:7941493,21705336 +g2535,368:11871031,21705336 +g2535,368:13040848,21705336 +g2535,368:14210665,21705336 +g2535,368:15778941,21705336 +k2535,369:17717170,21705336:742852 +k2535,369:18460021,21705336:742851 +) +(2535,370:6630773,22563738:11829248,505283,126483 +h2535,369:6630773,22563738:0,0,0 +r2535,369:6630773,22563738:0,631766,126483 +g2535,369:7941493,22563738 +g2535,369:7941493,22563738 +g2535,369:10685485,22563738 +k2535,370:14971212,22563738:3488809 +k2535,370:18460021,22563738:3488809 +) +(2535,371:6630773,23422141:11829248,505283,102891 +h2535,370:6630773,23422141:0,0,0 +r2535,370:6630773,23422141:0,608174,102891 +g2535,370:7941493,23422141 +g2535,370:7941493,23422141 +g2535,370:12266213,23422141 +g2535,370:13834489,23422141 +k2535,371:16744944,23422141:1715078 +k2535,371:18460021,23422141:1715077 +) +(2535,372:6630773,24280543:11829248,505283,102891 +h2535,371:6630773,24280543:0,0,0 +r2535,371:6630773,24280543:0,608174,102891 +g2535,371:7941493,24280543 +g2535,371:7941493,24280543 +g2535,371:13451759,24280543 +k2535,372:16553579,24280543:1906443 +k2535,372:18460021,24280543:1906442 +) +(2535,373:6630773,25138945:11829248,505283,102891 +h2535,372:6630773,25138945:0,0,0 +r2535,372:6630773,25138945:0,608174,102891 +g2535,372:7941493,25138945 +g2535,372:7941493,25138945 +g2535,372:12266213,25138945 +g2535,372:13834489,25138945 +g2535,372:15402765,25138945 +k2535,373:17529082,25138945:930940 +k2535,373:18460021,25138945:930939 +) +(2535,374:6630773,25997347:11829248,505283,102891 +h2535,373:6630773,25997347:0,0,0 +r2535,373:6630773,25997347:0,608174,102891 +g2535,373:7941493,25997347 +g2535,373:7941493,25997347 +g2535,373:12266213,25997347 +k2535,374:15960806,25997347:2499216 +k2535,374:18460021,25997347:2499215 +) +(2535,375:6630773,26855749:11829248,505283,102891 +h2535,374:6630773,26855749:0,0,0 +r2535,374:6630773,26855749:0,608174,102891 +g2535,374:7941493,26855749 +g2535,374:7941493,26855749 +g2535,374:13056577,26855749 +k2535,375:16355988,26855749:2104034 +k2535,375:18460021,26855749:2104033 +) +(2535,376:6630773,27714152:11829248,505283,102891 +h2535,375:6630773,27714152:0,0,0 +r2535,375:6630773,27714152:0,608174,102891 +g2535,375:7941493,27714152 +g2535,375:7941493,27714152 +g2535,375:13846941,27714152 +k2535,376:16751170,27714152:1708852 +k2535,376:18460021,27714152:1708851 +) +(2535,377:6630773,28572554:11829248,505283,126483 +h2535,376:6630773,28572554:0,0,0 +r2535,376:6630773,28572554:0,631766,126483 +g2535,376:7941493,28572554 +g2535,376:7941493,28572554 +g2535,376:13846941,28572554 +k2535,377:16751170,28572554:1708852 +k2535,377:18460021,28572554:1708851 +) +(2535,378:6630773,29430956:11829248,505283,102891 +h2535,377:6630773,29430956:0,0,0 +r2535,377:6630773,29430956:0,608174,102891 +g2535,377:7941493,29430956 +g2535,377:7941493,29430956 +g2535,377:13056577,29430956 +g2535,377:14624853,29430956 +g2535,377:16193129,29430956 +k2535,378:17924264,29430956:535758 +k2535,378:18460021,29430956:535757 +) +(2535,379:6630773,30289358:11829248,505283,126483 +h2535,378:6630773,30289358:0,0,0 +r2535,378:6630773,30289358:0,631766,126483 +g2535,378:7941493,30289358 +g2535,378:7941493,30289358 +g2535,378:13846941,30289358 +k2535,379:16751170,30289358:1708852 +k2535,379:18460021,30289358:1708851 +) +(2535,380:6630773,31147760:11829248,505283,126483 +h2535,379:6630773,31147760:0,0,0 +r2535,379:6630773,31147760:0,631766,126483 +g2535,379:7941493,31147760 +g2535,379:7941493,31147760 +g2535,379:15032488,31147760 +k2535,380:17343943,31147760:1116078 +k2535,380:18460021,31147760:1116078 +) +(2535,381:6630773,32006162:11829248,513147,102891 +h2535,380:6630773,32006162:0,0,0 +r2535,380:6630773,32006162:0,616038,102891 +g2535,380:7941493,32006162 +g2535,380:7941493,32006162 +g2535,380:14242123,32006162 +k2535,381:16948761,32006162:1511261 +k2535,381:18460021,32006162:1511260 +) +(2535,382:6630773,32864565:11829248,513147,102891 +h2535,381:6630773,32864565:0,0,0 +r2535,381:6630773,32864565:0,616038,102891 +g2535,381:7941493,32864565 +g2535,381:7941493,32864565 +g2535,381:11871031,32864565 +k2535,382:15763215,32864565:2696807 +k2535,382:18460021,32864565:2696806 +) +(2535,383:6630773,33722967:11829248,505283,102891 +h2535,382:6630773,33722967:0,0,0 +r2535,382:6630773,33722967:0,608174,102891 +g2535,382:7941493,33722967 +g2535,382:7941493,33722967 +g2535,382:12661395,33722967 +k2535,383:16158397,33722967:2301625 +k2535,383:18460021,33722967:2301624 +) +(2535,384:6630773,34581369:11829248,505283,102891 +h2535,383:6630773,34581369:0,0,0 +r2535,383:6630773,34581369:0,608174,102891 +g2535,383:7941493,34581369 +g2535,383:7941493,34581369 +g2535,383:13451759,34581369 +g2535,383:15020035,34581369 +k2535,384:17337717,34581369:1122305 +k2535,384:18460021,34581369:1122304 +) +(2535,385:6630773,35439771:11829248,505283,126483 +h2535,384:6630773,35439771:0,0,0 +r2535,384:6630773,35439771:0,631766,126483 +g2535,384:7941493,35439771 +g2535,384:7941493,35439771 +g2535,384:13846941,35439771 +g2535,384:15415217,35439771 +k2535,385:18296836,35439771:163186 +k2535,385:18460021,35439771:163185 +) +(2535,386:6630773,36298173:11829248,505283,102891 +h2535,385:6630773,36298173:0,0,0 +r2535,385:6630773,36298173:0,608174,102891 +g2535,385:7941493,36298173 +g2535,385:7941493,36298173 +g2535,385:10290302,36298173 +g2535,385:11858578,36298173 +k2535,386:15756988,36298173:2703033 +k2535,386:18460021,36298173:2703033 +) +(2535,387:6630773,37156576:11829248,505283,102891 +h2535,386:6630773,37156576:0,0,0 +r2535,386:6630773,37156576:0,608174,102891 +g2535,386:7941493,37156576 +g2535,386:7941493,37156576 +g2535,386:10290302,37156576 +g2535,386:12584717,37156576 +g2535,386:13754534,37156576 +g2535,386:14924351,37156576 +g2535,386:16492627,37156576 +k2535,386:18460021,37156576:598347 +) +(2535,387:9252213,37998064:9207808,485622,102891 +g2535,386:10820489,37998064 +k2535,387:15237944,37998064:3222078 +k2535,387:18460021,37998064:3222077 +) +(2535,388:6630773,38856466:11829248,505283,102891 +h2535,387:6630773,38856466:0,0,0 +r2535,387:6630773,38856466:0,608174,102891 +g2535,387:7941493,38856466 +g2535,387:7941493,38856466 +g2535,387:13451759,38856466 +k2535,388:16553579,38856466:1906443 +k2535,388:18460021,38856466:1906442 +) +(2535,389:6630773,39714868:11829248,513147,102891 +h2535,388:6630773,39714868:0,0,0 +r2535,388:6630773,39714868:0,616038,102891 +g2535,388:7941493,39714868 +g2535,388:7941493,39714868 +g2535,388:12266213,39714868 +k2535,389:15960806,39714868:2499216 +k2535,389:18460021,39714868:2499215 +) +(2535,390:6630773,40573270:11829248,505283,126483 +h2535,389:6630773,40573270:0,0,0 +r2535,389:6630773,40573270:0,631766,126483 +g2535,389:7941493,40573270 +g2535,389:7941493,40573270 +g2535,389:12266213,40573270 +k2535,390:15960806,40573270:2499216 +k2535,390:18460021,40573270:2499215 +) +(2535,391:6630773,41431672:11829248,505283,102891 +h2535,390:6630773,41431672:0,0,0 +r2535,390:6630773,41431672:0,608174,102891 +g2535,390:7941493,41431672 +g2535,390:7941493,41431672 +g2535,390:11475849,41431672 +g2535,390:12645666,41431672 +g2535,390:13815483,41431672 +g2535,390:15383759,41431672 +k2535,391:17519579,41431672:940443 +k2535,391:18460021,41431672:940442 +) +(2535,392:6630773,42290074:11829248,505283,102891 +h2535,391:6630773,42290074:0,0,0 +r2535,391:6630773,42290074:0,608174,102891 +g2535,391:7941493,42290074 +g2535,391:7941493,42290074 +g2535,391:13056577,42290074 +k2535,392:16355988,42290074:2104034 +k2535,392:18460021,42290074:2104033 +) +(2535,393:6630773,43148477:11829248,505283,102891 +h2535,392:6630773,43148477:0,0,0 +r2535,392:6630773,43148477:0,608174,102891 +g2535,392:7941493,43148477 +g2535,392:7941493,43148477 +g2535,392:10290302,43148477 +k2535,393:14972850,43148477:3487171 +k2535,393:18460021,43148477:3487171 +) +(2535,394:6630773,44006879:11829248,505283,102891 +h2535,393:6630773,44006879:0,0,0 +r2535,393:6630773,44006879:0,608174,102891 +g2535,393:7941493,44006879 +g2535,393:7941493,44006879 +g2535,393:12661395,44006879 +k2535,394:16158397,44006879:2301625 +k2535,394:18460021,44006879:2301624 +) +(2535,395:6630773,44865281:11829248,505283,126483 +h2535,394:6630773,44865281:0,0,0 +r2535,394:6630773,44865281:0,631766,126483 +g2535,394:7941493,44865281 +g2535,394:7941493,44865281 +g2535,394:11871031,44865281 +g2535,394:13040848,44865281 +g2535,394:14210665,44865281 +g2535,394:15778941,44865281 +k2535,394:18460021,44865281:1312033 +) +(2535,395:9252213,45706769:9207808,485622,102891 +g2535,394:10820489,45706769 +g2535,394:12388765,45706769 +k2535,395:16022082,45706769:2437940 +k2535,395:18460021,45706769:2437939 +) +] +k2535,445:19606901,45706769:1146880 +r2535,445:19606901,45706769:0,40234515,126483 +k2535,445:20753781,45706769:1146880 +[2535,445:20753781,45706769:11829248,40108032,102891 +(2535,396:20753781,6254097:11829248,505283,126483 +h2535,395:20753781,6254097:0,0,0 +r2535,395:20753781,6254097:0,631766,126483 +g2535,395:22064501,6254097 +g2535,395:22064501,6254097 +g2535,395:25598857,6254097 +k2535,396:29688632,6254097:2894398 +k2535,396:32583029,6254097:2894397 +) +(2535,397:20753781,7112123:11829248,505283,126483 +h2535,396:20753781,7112123:0,0,0 +r2535,396:20753781,7112123:0,631766,126483 +g2535,396:22064501,7112123 +g2535,396:22064501,7112123 +g2535,396:27574767,7112123 +g2535,396:29143043,7112123 +k2535,397:31460725,7112123:1122305 +k2535,397:32583029,7112123:1122304 +) +(2535,398:20753781,7970150:11829248,505283,102891 +h2535,397:20753781,7970150:0,0,0 +r2535,397:20753781,7970150:0,608174,102891 +g2535,397:22064501,7970150 +g2535,397:22064501,7970150 +g2535,397:23622946,7970150 +g2535,397:24792763,7970150 +k2535,398:29285585,7970150:3297445 +k2535,398:32583029,7970150:3297444 +) +(2535,399:20753781,8828176:11829248,505283,102891 +h2535,398:20753781,8828176:0,0,0 +r2535,398:20753781,8828176:0,608174,102891 +g2535,398:22064501,8828176 +g2535,398:22064501,8828176 +g2535,398:24808493,8828176 +g2535,398:25978310,8828176 +k2535,399:29679129,8828176:2903901 +k2535,399:32583029,8828176:2903900 +) +(2535,400:20753781,9686202:11829248,505283,102891 +h2535,399:20753781,9686202:0,0,0 +r2535,399:20753781,9686202:0,608174,102891 +g2535,399:22064501,9686202 +g2535,399:22064501,9686202 +g2535,399:25203675,9686202 +g2535,399:26771951,9686202 +k2535,400:30275179,9686202:2307851 +k2535,400:32583029,9686202:2307850 +) +(2535,401:20753781,10544229:11829248,505283,102891 +h2535,400:20753781,10544229:0,0,0 +r2535,400:20753781,10544229:0,608174,102891 +g2535,400:22064501,10544229 +g2535,400:22064501,10544229 +g2535,400:26389221,10544229 +k2535,401:30083814,10544229:2499216 +k2535,401:32583029,10544229:2499215 +) +(2535,402:20753781,11402255:11829248,505283,102891 +h2535,401:20753781,11402255:0,0,0 +r2535,401:20753781,11402255:0,608174,102891 +g2535,401:22064501,11402255 +g2535,401:22064501,11402255 +g2535,401:28365131,11402255 +k2535,402:31071769,11402255:1511261 +k2535,402:32583029,11402255:1511260 +) +(2535,403:20753781,12260281:11829248,505283,102891 +h2535,402:20753781,12260281:0,0,0 +r2535,402:20753781,12260281:0,608174,102891 +g2535,402:22064501,12260281 +g2535,402:22064501,12260281 +g2535,402:27179585,12260281 +k2535,403:30478996,12260281:2104034 +k2535,403:32583029,12260281:2104033 +) +(2535,404:20753781,13118308:11829248,505283,134348 +h2535,403:20753781,13118308:0,0,0 +r2535,403:20753781,13118308:0,639631,134348 +g2535,403:22064501,13118308 +g2535,403:22064501,13118308 +g2535,403:27179585,13118308 +g2535,403:28747861,13118308 +g2535,403:30316137,13118308 +k2535,404:32047272,13118308:535758 +k2535,404:32583029,13118308:535757 +) +(2535,405:20753781,13976334:11829248,505283,134348 +h2535,404:20753781,13976334:0,0,0 +r2535,404:20753781,13976334:0,639631,134348 +g2535,404:22064501,13976334 +g2535,404:22064501,13976334 +g2535,404:27574767,13976334 +k2535,405:30676587,13976334:1906443 +k2535,405:32583029,13976334:1906442 +) +(2535,406:20753781,14834360:11829248,505283,102891 +h2535,405:20753781,14834360:0,0,0 +r2535,405:20753781,14834360:0,608174,102891 +g2535,405:22064501,14834360 +g2535,405:22064501,14834360 +g2535,405:28760314,14834360 +k2535,406:31269360,14834360:1313669 +k2535,406:32583029,14834360:1313669 +) +(2535,407:20753781,15692386:11829248,505283,102891 +h2535,406:20753781,15692386:0,0,0 +r2535,406:20753781,15692386:0,608174,102891 +g2535,406:22064501,15692386 +g2535,406:22064501,15692386 +g2535,406:28365131,15692386 +k2535,407:31071769,15692386:1511261 +k2535,407:32583029,15692386:1511260 +) +(2535,408:20753781,16550413:11829248,505283,102891 +h2535,407:20753781,16550413:0,0,0 +r2535,407:20753781,16550413:0,608174,102891 +g2535,407:22064501,16550413 +g2535,407:22064501,16550413 +g2535,407:26784403,16550413 +k2535,408:30281405,16550413:2301625 +k2535,408:32583029,16550413:2301624 +) +(2535,409:20753781,17408439:11829248,505283,102891 +h2535,408:20753781,17408439:0,0,0 +r2535,408:20753781,17408439:0,608174,102891 +g2535,408:22064501,17408439 +g2535,408:22064501,17408439 +g2535,408:27179585,17408439 +k2535,409:30478996,17408439:2104034 +k2535,409:32583029,17408439:2104033 +) +(2535,410:20753781,18266465:11829248,505283,102891 +h2535,409:20753781,18266465:0,0,0 +r2535,409:20753781,18266465:0,608174,102891 +g2535,409:22064501,18266465 +g2535,409:22064501,18266465 +g2535,409:25598857,18266465 +g2535,409:27167133,18266465 +g2535,409:28735409,18266465 +g2535,409:30303685,18266465 +k2535,410:32041046,18266465:541984 +k2535,410:32583029,18266465:541983 +) +(2535,411:20753781,19124492:11829248,505283,102891 +h2535,410:20753781,19124492:0,0,0 +r2535,410:20753781,19124492:0,608174,102891 +g2535,410:22064501,19124492 +g2535,410:22064501,19124492 +g2535,410:25994039,19124492 +k2535,411:29886223,19124492:2696807 +k2535,411:32583029,19124492:2696806 +) +(2535,412:20753781,19982518:11829248,513147,102891 +h2535,411:20753781,19982518:0,0,0 +r2535,411:20753781,19982518:0,616038,102891 +g2535,411:22064501,19982518 +g2535,411:22064501,19982518 +k2535,411:32583029,19982518:70124 +) +(2535,412:23375221,20824006:9207808,485622,11795 +k2535,412:28576814,20824006:4006216 +k2535,412:32583029,20824006:4006215 +) +(2535,413:20753781,21682032:11829248,505283,126483 +h2535,412:20753781,21682032:0,0,0 +r2535,412:20753781,21682032:0,631766,126483 +g2535,412:22064501,21682032 +g2535,412:22064501,21682032 +g2535,412:25994039,21682032 +k2535,413:29886223,21682032:2696807 +k2535,413:32583029,21682032:2696806 +) +(2535,414:20753781,22540059:11829248,505283,102891 +h2535,413:20753781,22540059:0,0,0 +r2535,413:20753781,22540059:0,608174,102891 +g2535,413:22064501,22540059 +g2535,413:22064501,22540059 +g2535,413:26784403,22540059 +g2535,413:28352679,22540059 +k2535,414:31065543,22540059:1517487 +k2535,414:32583029,22540059:1517486 +) +(2535,415:20753781,23398085:11829248,505283,102891 +h2535,414:20753781,23398085:0,0,0 +r2535,414:20753781,23398085:0,608174,102891 +g2535,414:22064501,23398085 +g2535,414:22064501,23398085 +g2535,414:25203675,23398085 +k2535,415:29491041,23398085:3091989 +k2535,415:32583029,23398085:3091988 +) +(2535,416:20753781,24256111:11829248,505283,102891 +h2535,415:20753781,24256111:0,0,0 +r2535,415:20753781,24256111:0,608174,102891 +g2535,415:22064501,24256111 +g2535,415:22064501,24256111 +g2535,415:25203675,24256111 +g2535,415:26373492,24256111 +k2535,416:29876720,24256111:2706310 +k2535,416:32583029,24256111:2706309 +) +(2535,417:20753781,25114138:11829248,505283,102891 +h2535,416:20753781,25114138:0,0,0 +r2535,416:20753781,25114138:0,608174,102891 +g2535,416:22064501,25114138 +g2535,416:22064501,25114138 +g2535,416:24018128,25114138 +k2535,417:28898267,25114138:3684762 +k2535,417:32583029,25114138:3684762 +) +(2535,418:20753781,25972164:11829248,513147,126483 +h2535,417:20753781,25972164:0,0,0 +r2535,417:20753781,25972164:0,639630,126483 +g2535,417:22064501,25972164 +g2535,417:22064501,25972164 +g2535,417:25598857,25972164 +k2535,418:29489402,25972164:3093627 +k2535,418:32583029,25972164:3093627 +) +(2535,419:20753781,26830190:11829248,505283,134348 +h2535,418:20753781,26830190:0,0,0 +r2535,418:20753781,26830190:0,639631,134348 +g2535,418:22064501,26830190 +g2535,418:22064501,26830190 +g2535,418:25994039,26830190 +g2535,418:27562315,26830190 +k2535,419:30670361,26830190:1912669 +k2535,419:32583029,26830190:1912668 +) +(2535,420:20753781,27688216:11829248,505283,126483 +h2535,419:20753781,27688216:0,0,0 +r2535,419:20753781,27688216:0,631766,126483 +g2535,419:22064501,27688216 +g2535,419:22064501,27688216 +g2535,419:25598857,27688216 +k2535,420:29489402,27688216:3093627 +k2535,420:32583029,27688216:3093627 +) +(2535,421:20753781,28546243:11829248,505283,102891 +h2535,420:20753781,28546243:0,0,0 +r2535,420:20753781,28546243:0,608174,102891 +g2535,420:22064501,28546243 +g2535,420:22064501,28546243 +g2535,420:25598857,28546243 +k2535,421:29489402,28546243:3093627 +k2535,421:32583029,28546243:3093627 +) +(2535,422:20753781,29404269:11829248,505283,102891 +h2535,421:20753781,29404269:0,0,0 +r2535,421:20753781,29404269:0,608174,102891 +g2535,421:22064501,29404269 +g2535,421:22064501,29404269 +g2535,421:25598857,29404269 +g2535,421:26768674,29404269 +g2535,421:27938491,29404269 +k2535,422:30659219,29404269:1923810 +k2535,422:32583029,29404269:1923810 +) +(2535,423:20753781,30262295:11829248,505283,102891 +h2535,422:20753781,30262295:0,0,0 +r2535,422:20753781,30262295:0,608174,102891 +g2535,422:22064501,30262295 +g2535,422:22064501,30262295 +g2535,422:25598857,30262295 +k2535,423:29489402,30262295:3093627 +k2535,423:32583029,30262295:3093627 +) +(2535,424:20753781,31120322:11829248,505283,126483 +h2535,423:20753781,31120322:0,0,0 +r2535,423:20753781,31120322:0,631766,126483 +g2535,423:22064501,31120322 +g2535,423:22064501,31120322 +g2535,423:25598857,31120322 +k2535,424:29688632,31120322:2894398 +k2535,424:32583029,31120322:2894397 +) +(2535,425:20753781,31978348:11829248,505283,134348 +h2535,424:20753781,31978348:0,0,0 +r2535,424:20753781,31978348:0,639631,134348 +g2535,424:22064501,31978348 +g2535,424:22064501,31978348 +g2535,424:29155496,31978348 +k2535,425:31466951,31978348:1116078 +k2535,425:32583029,31978348:1116078 +) +(2535,426:20753781,32836374:11829248,505283,102891 +h2535,425:20753781,32836374:0,0,0 +r2535,425:20753781,32836374:0,608174,102891 +g2535,425:22064501,32836374 +g2535,425:22064501,32836374 +g2535,425:24413310,32836374 +g2535,425:25981586,32836374 +k2535,426:29879996,32836374:2703033 +k2535,426:32583029,32836374:2703033 +) +(2535,427:20753781,33694401:11829248,505283,102891 +h2535,426:20753781,33694401:0,0,0 +r2535,426:20753781,33694401:0,608174,102891 +g2535,426:22064501,33694401 +g2535,426:22064501,33694401 +g2535,426:24808493,33694401 +k2535,427:29293450,33694401:3289580 +k2535,427:32583029,33694401:3289579 +) +(2535,428:20753781,34552427:11829248,505283,102891 +h2535,427:20753781,34552427:0,0,0 +r2535,427:20753781,34552427:0,608174,102891 +g2535,427:22064501,34552427 +g2535,427:22064501,34552427 +g2535,427:24808493,34552427 +k2535,428:29094220,34552427:3488809 +k2535,428:32583029,34552427:3488809 +) +(2535,429:20753781,35410453:11829248,505283,102891 +h2535,428:20753781,35410453:0,0,0 +r2535,428:20753781,35410453:0,608174,102891 +g2535,428:22064501,35410453 +g2535,428:22064501,35410453 +g2535,428:26784403,35410453 +g2535,428:28352679,35410453 +k2535,429:31065543,35410453:1517487 +k2535,429:32583029,35410453:1517486 +) +(2535,430:20753781,36268480:11829248,505283,102891 +h2535,429:20753781,36268480:0,0,0 +r2535,429:20753781,36268480:0,608174,102891 +g2535,429:22064501,36268480 +g2535,429:22064501,36268480 +g2535,429:26389221,36268480 +k2535,430:30083814,36268480:2499216 +k2535,430:32583029,36268480:2499215 +) +(2535,431:20753781,37126506:11829248,505283,102891 +h2535,430:20753781,37126506:0,0,0 +r2535,430:20753781,37126506:0,608174,102891 +g2535,430:22064501,37126506 +g2535,430:22064501,37126506 +g2535,430:27179585,37126506 +k2535,431:30478996,37126506:2104034 +k2535,431:32583029,37126506:2104033 +) +(2535,432:20753781,37984532:11829248,505283,102891 +h2535,431:20753781,37984532:0,0,0 +r2535,431:20753781,37984532:0,608174,102891 +g2535,431:22064501,37984532 +g2535,431:22064501,37984532 +g2535,431:27574767,37984532 +k2535,432:30676587,37984532:1906443 +k2535,432:32583029,37984532:1906442 +) +(2535,433:20753781,38842559:11829248,505283,102891 +h2535,432:20753781,38842559:0,0,0 +r2535,432:20753781,38842559:0,608174,102891 +g2535,432:22064501,38842559 +g2535,432:22064501,38842559 +g2535,432:27179585,38842559 +k2535,433:30478996,38842559:2104034 +k2535,433:32583029,38842559:2104033 +) +(2535,434:20753781,39700585:11829248,505283,102891 +h2535,433:20753781,39700585:0,0,0 +r2535,433:20753781,39700585:0,608174,102891 +g2535,433:22064501,39700585 +g2535,433:22064501,39700585 +g2535,433:26784403,39700585 +k2535,434:30281405,39700585:2301625 +k2535,434:32583029,39700585:2301624 +) +(2535,435:20753781,40558611:11829248,505283,102891 +h2535,434:20753781,40558611:0,0,0 +r2535,434:20753781,40558611:0,608174,102891 +g2535,434:22064501,40558611 +g2535,434:22064501,40558611 +g2535,434:27179585,40558611 +k2535,435:30478996,40558611:2104034 +k2535,435:32583029,40558611:2104033 +) +(2535,436:20753781,41416637:11829248,505283,102891 +h2535,435:20753781,41416637:0,0,0 +r2535,435:20753781,41416637:0,608174,102891 +g2535,435:22064501,41416637 +g2535,435:22064501,41416637 +g2535,435:27574767,41416637 +k2535,436:30676587,41416637:1906443 +k2535,436:32583029,41416637:1906442 +) +(2535,437:20753781,42274664:11829248,505283,102891 +h2535,436:20753781,42274664:0,0,0 +r2535,436:20753781,42274664:0,608174,102891 +g2535,436:22064501,42274664 +g2535,436:22064501,42274664 +g2535,436:29155496,42274664 +k2535,437:31466951,42274664:1116078 +k2535,437:32583029,42274664:1116078 +) +(2535,438:20753781,43132690:11829248,513147,102891 +h2535,437:20753781,43132690:0,0,0 +r2535,437:20753781,43132690:0,616038,102891 +g2535,437:22064501,43132690 +g2535,437:22064501,43132690 +g2535,437:27179585,43132690 +g2535,437:28747861,43132690 +k2535,438:31263134,43132690:1319896 +k2535,438:32583029,43132690:1319895 +) +(2535,439:20753781,43990716:11829248,505283,102891 +h2535,438:20753781,43990716:0,0,0 +r2535,438:20753781,43990716:0,608174,102891 +g2535,438:22064501,43990716 +g2535,438:22064501,43990716 +g2535,438:27574767,43990716 +k2535,439:30676587,43990716:1906443 +k2535,439:32583029,43990716:1906442 +) +(2535,440:20753781,44848743:11829248,505283,102891 +h2535,439:20753781,44848743:0,0,0 +r2535,439:20753781,44848743:0,608174,102891 +g2535,439:22064501,44848743 +g2535,439:22064501,44848743 +g2535,439:26784403,44848743 +k2535,440:30281405,44848743:2301625 +k2535,440:32583029,44848743:2301624 +) +(2535,441:20753781,45706769:11829248,505283,102891 +h2535,440:20753781,45706769:0,0,0 +r2535,440:20753781,45706769:0,608174,102891 +g2535,440:22064501,45706769 +g2535,440:22064501,45706769 +g2535,440:26784403,45706769 +k2535,441:30281405,45706769:2301625 +k2535,441:32583029,45706769:2301624 +) +] +(2535,445:32583029,45706769:0,355205,126483 +h2535,445:32583029,45706769:420741,355205,126483 +k2535,445:32583029,45706769:-420741 +) +) +] +(2535,445:32583029,45706769:0,0,0 +g2535,445:32583029,45706769 +) +) +] +(2535,445:6630773,47279633:25952256,0,0 +h2535,445:6630773,47279633:25952256,0,0 +) +] +h2535,445:4262630,4025873:0,0,0 +] +!31364 }348 !12 {349 -[2538,179:4262630,47279633:28320399,43253760,0 -(2538,179:4262630,4025873:0,0,0 -[2538,179:-473657,4025873:11829248,0,0 -(2538,179:-473657,-710414:11829248,0,0 -h2538,179:-473657,-710414:0,0,0 -(2538,179:-473657,-710414:0,0,0 -(2538,179:-473657,-710414:0,0,0 -g2538,179:-473657,-710414 -(2538,179:-473657,-710414:65781,0,65781 -g2538,179:-407876,-710414 -[2538,179:-407876,-644633:0,0,0 +[1,17356:4262630,47279633:28320399,43253760,0 +(1,17356:4262630,4025873:0,0,0 +[1,17356:-473657,4025873:25952256,0,0 +(1,17356:-473657,-710414:25952256,0,0 +h1,17356:-473657,-710414:0,0,0 +(1,17356:-473657,-710414:0,0,0 +(1,17356:-473657,-710414:0,0,0 +g1,17356:-473657,-710414 +(1,17356:-473657,-710414:65781,0,65781 +g1,17356:-407876,-710414 +[1,17356:-407876,-644633:0,0,0 ] ) -k2538,179:-473657,-710414:-65781 +k1,17356:-473657,-710414:-65781 ) ) -k2538,179:11355591,-710414:11829248 -g2538,179:11355591,-710414 +k1,17356:25478599,-710414:25952256 +g1,17356:25478599,-710414 ) ] ) -[2538,179:6630773,47279633:25952256,43253760,0 -[2538,179:6630773,4812305:25952256,786432,0 -(2538,179:6630773,4812305:25952256,513147,134348 -(2538,179:6630773,4812305:25952256,513147,134348 -g2538,179:3078558,4812305 -[2538,179:3078558,4812305:0,0,0 -(2538,179:3078558,2439708:0,1703936,0 -k2538,179:1358238,2439708:-1720320 -(2538,1:1358238,2439708:1720320,1703936,0 -(2538,1:1358238,2439708:1179648,16384,0 -r2538,179:2537886,2439708:1179648,16384,0 +[1,17356:6630773,47279633:25952256,43253760,0 +[1,17356:6630773,4812305:25952256,786432,0 +(1,17356:6630773,4812305:25952256,513147,134348 +(1,17356:6630773,4812305:25952256,513147,134348 +g1,17356:3078558,4812305 +[1,17356:3078558,4812305:0,0,0 +(1,17356:3078558,2439708:0,1703936,0 +k1,17356:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17356:2537886,2439708:1179648,16384,0 ) -g2538,1:3062174,2439708 -(2538,1:3062174,2439708:16384,1703936,0 -[2538,1:3062174,2439708:25952256,1703936,0 -(2538,1:3062174,1915420:25952256,1179648,0 -(2538,1:3062174,1915420:16384,1179648,0 -r2538,179:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17356:3078558,1915420:16384,1179648,0 ) -k2538,1:29014430,1915420:25935872 -g2538,1:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[2538,179:3078558,4812305:0,0,0 -(2538,179:3078558,2439708:0,1703936,0 -g2538,179:29030814,2439708 -g2538,179:36135244,2439708 -(2538,1:36135244,2439708:1720320,1703936,0 -(2538,1:36135244,2439708:16384,1703936,0 -[2538,1:36135244,2439708:25952256,1703936,0 -(2538,1:36135244,1915420:25952256,1179648,0 -(2538,1:36135244,1915420:16384,1179648,0 -r2538,179:36151628,1915420:16384,1179648,0 +[1,17356:3078558,4812305:0,0,0 +(1,17356:3078558,2439708:0,1703936,0 +g1,17356:29030814,2439708 +g1,17356:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17356:36151628,1915420:16384,1179648,0 ) -k2538,1:62087500,1915420:25935872 -g2538,1:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g2538,1:36675916,2439708 -(2538,1:36675916,2439708:1179648,16384,0 -r2538,179:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17356:37855564,2439708:1179648,16384,0 ) ) -k2538,179:3078556,2439708:-34777008 +k1,17356:3078556,2439708:-34777008 ) ] -[2538,179:3078558,4812305:0,0,0 -(2538,179:3078558,49800853:0,16384,2228224 -k2538,179:1358238,49800853:-1720320 -(2538,1:1358238,49800853:1720320,16384,2228224 -(2538,1:1358238,49800853:1179648,16384,0 -r2538,179:2537886,49800853:1179648,16384,0 +[1,17356:3078558,4812305:0,0,0 +(1,17356:3078558,49800853:0,16384,2228224 +k1,17356:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17356:2537886,49800853:1179648,16384,0 ) -g2538,1:3062174,49800853 -(2538,1:3062174,52029077:16384,1703936,0 -[2538,1:3062174,52029077:25952256,1703936,0 -(2538,1:3062174,51504789:25952256,1179648,0 -(2538,1:3062174,51504789:16384,1179648,0 -r2538,179:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17356:3078558,51504789:16384,1179648,0 ) -k2538,1:29014430,51504789:25935872 -g2538,1:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[2538,179:3078558,4812305:0,0,0 -(2538,179:3078558,49800853:0,16384,2228224 -g2538,179:29030814,49800853 -g2538,179:36135244,49800853 -(2538,1:36135244,49800853:1720320,16384,2228224 -(2538,1:36135244,52029077:16384,1703936,0 -[2538,1:36135244,52029077:25952256,1703936,0 -(2538,1:36135244,51504789:25952256,1179648,0 -(2538,1:36135244,51504789:16384,1179648,0 -r2538,179:36151628,51504789:16384,1179648,0 +[1,17356:3078558,4812305:0,0,0 +(1,17356:3078558,49800853:0,16384,2228224 +g1,17356:29030814,49800853 +g1,17356:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17356:36151628,51504789:16384,1179648,0 ) -k2538,1:62087500,51504789:25935872 -g2538,1:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g2538,1:36675916,49800853 -(2538,1:36675916,49800853:1179648,16384,0 -r2538,179:37855564,49800853:1179648,16384,0 -) -) -k2538,179:3078556,49800853:-34777008 -) -] -g2538,179:6630773,4812305 -k2538,179:23318207,4812305:15492057 -g2538,179:25216129,4812305 -g2538,179:26031396,4812305 -g2538,179:26644813,4812305 -g2538,179:28902528,4812305 -g2538,179:29858042,4812305 -) -) -] -[2538,179:6630773,45706769:25952256,40108032,0 -(2538,179:6630773,45706769:25952256,40108032,0 -(2538,179:6630773,45706769:0,0,0 -g2538,179:6630773,45706769 -) -[2538,179:6630773,45706769:25952256,40108032,0 -(2538,179:6630773,45706769:25952256,40108032,134348 -[2538,179:6630773,45706769:11829248,40108032,102891 -(2538,83:6630773,6254097:11829248,505283,102891 -h2538,82:6630773,6254097:0,0,0 -r2538,82:6630773,6254097:0,608174,102891 -g2538,82:7941493,6254097 -g2538,82:7941493,6254097 -g2538,82:10290302,6254097 -g2538,82:11858578,6254097 -k2538,83:15756988,6254097:2703033 -k2538,83:18460021,6254097:2703033 -) -(2538,84:6630773,7111764:11829248,505283,126483 -h2538,83:6630773,7111764:0,0,0 -r2538,83:6630773,7111764:0,631766,126483 -g2538,83:7941493,7111764 -g2538,83:7941493,7111764 -g2538,83:11475849,7111764 -g2538,83:12645666,7111764 -k2538,84:15951303,7111764:2508719 -k2538,84:18460021,7111764:2508718 -) -(2538,85:6630773,7969431:11829248,505283,134348 -h2538,84:6630773,7969431:0,0,0 -r2538,84:6630773,7969431:0,639631,134348 -g2538,84:7941493,7969431 -g2538,84:7941493,7969431 -g2538,84:11871031,7969431 -k2538,85:15763215,7969431:2696807 -k2538,85:18460021,7969431:2696806 -) -(2538,86:6630773,8827097:11829248,505283,126483 -h2538,85:6630773,8827097:0,0,0 -r2538,85:6630773,8827097:0,631766,126483 -g2538,85:7941493,8827097 -g2538,85:7941493,8827097 -g2538,85:11080667,8827097 -k2538,86:15168803,8827097:3291218 -k2538,86:18460021,8827097:3291218 -) -(2538,87:6630773,9684764:11829248,505283,102891 -h2538,86:6630773,9684764:0,0,0 -r2538,86:6630773,9684764:0,608174,102891 -g2538,86:7941493,9684764 -g2538,86:7941493,9684764 -g2538,86:13846941,9684764 -g2538,86:15016758,9684764 -k2538,87:17136849,9684764:1323173 -k2538,87:18460021,9684764:1323172 -) -(2538,88:6630773,10542431:11829248,513147,102891 -h2538,87:6630773,10542431:0,0,0 -r2538,87:6630773,10542431:0,616038,102891 -g2538,87:7941493,10542431 -g2538,87:7941493,10542431 -g2538,87:14242123,10542431 -k2538,88:16948761,10542431:1511261 -k2538,88:18460021,10542431:1511260 -) -(2538,89:6630773,11400098:11829248,513147,102891 -h2538,88:6630773,11400098:0,0,0 -r2538,88:6630773,11400098:0,616038,102891 -g2538,88:7941493,11400098 -g2538,88:7941493,11400098 -g2538,88:13056577,11400098 -k2538,89:16355988,11400098:2104034 -k2538,89:18460021,11400098:2104033 -) -(2538,90:6630773,12257764:11829248,505283,134348 -h2538,89:6630773,12257764:0,0,0 -r2538,89:6630773,12257764:0,639631,134348 -g2538,89:7941493,12257764 -g2538,89:7941493,12257764 -g2538,89:13056577,12257764 -k2538,90:16156758,12257764:2303263 -k2538,90:18460021,12257764:2303263 -) -(2538,91:6630773,13115431:11829248,505283,134348 -h2538,90:6630773,13115431:0,0,0 -r2538,90:6630773,13115431:0,639631,134348 -g2538,90:7941493,13115431 -g2538,90:7941493,13115431 -g2538,90:13056577,13115431 -k2538,91:16156758,13115431:2303263 -k2538,91:18460021,13115431:2303263 -) -(2538,92:6630773,13973098:11829248,505283,102891 -h2538,91:6630773,13973098:0,0,0 -r2538,91:6630773,13973098:0,608174,102891 -g2538,91:7941493,13973098 -g2538,91:7941493,13973098 -g2538,91:12661395,13973098 -k2538,92:15959167,13973098:2500854 -k2538,92:18460021,13973098:2500854 -) -(2538,93:6630773,14830765:11829248,505283,102891 -h2538,92:6630773,14830765:0,0,0 -r2538,92:6630773,14830765:0,608174,102891 -g2538,92:7941493,14830765 -g2538,92:7941493,14830765 -g2538,92:13056577,14830765 -g2538,92:14226394,14830765 -g2538,92:15396211,14830765 -k2538,93:17326575,14830765:1133446 -k2538,93:18460021,14830765:1133446 -) -(2538,94:6630773,15688432:11829248,505283,102891 -h2538,93:6630773,15688432:0,0,0 -r2538,93:6630773,15688432:0,608174,102891 -g2538,93:7941493,15688432 -g2538,93:7941493,15688432 -g2538,93:11080667,15688432 -k2538,94:15368033,15688432:3091989 -k2538,94:18460021,15688432:3091988 -) -(2538,95:6630773,16546098:11829248,505283,102891 -h2538,94:6630773,16546098:0,0,0 -r2538,94:6630773,16546098:0,608174,102891 -g2538,94:7941493,16546098 -g2538,94:7941493,16546098 -g2538,94:12661395,16546098 -k2538,95:15959167,16546098:2500854 -k2538,95:18460021,16546098:2500854 -) -(2538,96:6630773,17403765:11829248,505283,102891 -h2538,95:6630773,17403765:0,0,0 -r2538,95:6630773,17403765:0,608174,102891 -g2538,95:7941493,17403765 -g2538,95:7941493,17403765 -g2538,95:12661395,17403765 -k2538,96:16158397,17403765:2301625 -k2538,96:18460021,17403765:2301624 -) -(2538,97:6630773,18261432:11829248,505283,134348 -h2538,96:6630773,18261432:0,0,0 -r2538,96:6630773,18261432:0,639631,134348 -g2538,96:7941493,18261432 -g2538,96:7941493,18261432 -g2538,96:11475849,18261432 -g2538,96:13044125,18261432 -g2538,96:14612401,18261432 -k2538,97:17133900,18261432:1326122 -k2538,97:18460021,18261432:1326121 -) -(2538,98:6630773,19119099:11829248,505283,102891 -h2538,97:6630773,19119099:0,0,0 -r2538,97:6630773,19119099:0,608174,102891 -g2538,97:7941493,19119099 -g2538,97:7941493,19119099 -g2538,97:11475849,19119099 -k2538,98:15366394,19119099:3093627 -k2538,98:18460021,19119099:3093627 -) -(2538,99:6630773,19976766:11829248,505283,102891 -h2538,98:6630773,19976766:0,0,0 -r2538,98:6630773,19976766:0,608174,102891 -g2538,98:7941493,19976766 -g2538,98:7941493,19976766 -g2538,98:10685485,19976766 -k2538,99:14971212,19976766:3488809 -k2538,99:18460021,19976766:3488809 -) -(2538,100:6630773,20834432:11829248,505283,102891 -h2538,99:6630773,20834432:0,0,0 -r2538,99:6630773,20834432:0,608174,102891 -g2538,99:7941493,20834432 -g2538,99:7941493,20834432 -g2538,99:11475849,20834432 -k2538,100:15366394,20834432:3093627 -k2538,100:18460021,20834432:3093627 -) -(2538,101:6630773,21692099:11829248,505283,102891 -h2538,100:6630773,21692099:0,0,0 -r2538,100:6630773,21692099:0,608174,102891 -g2538,100:7941493,21692099 -g2538,100:7941493,21692099 -g2538,100:13056577,21692099 -g2538,100:14226394,21692099 -g2538,100:15794670,21692099 -k2538,101:17725034,21692099:734987 -k2538,101:18460021,21692099:734987 -) -(2538,102:6630773,22549766:11829248,505283,102891 -h2538,101:6630773,22549766:0,0,0 -r2538,101:6630773,22549766:0,608174,102891 -g2538,101:7941493,22549766 -g2538,101:7941493,22549766 -g2538,101:12266213,22549766 -k2538,102:15960806,22549766:2499216 -k2538,102:18460021,22549766:2499215 -) -(2538,103:6630773,23407433:11829248,505283,102891 -h2538,102:6630773,23407433:0,0,0 -r2538,102:6630773,23407433:0,608174,102891 -g2538,102:7941493,23407433 -g2538,102:7941493,23407433 -g2538,102:10290302,23407433 -k2538,103:14972850,23407433:3487171 -k2538,103:18460021,23407433:3487171 -) -(2538,104:6630773,24265099:11829248,505283,126483 -h2538,103:6630773,24265099:0,0,0 -r2538,103:6630773,24265099:0,631766,126483 -g2538,103:7941493,24265099 -g2538,103:7941493,24265099 -g2538,103:11475849,24265099 -k2538,104:15565624,24265099:2894398 -k2538,104:18460021,24265099:2894397 -) -(2538,105:6630773,25122766:11829248,505283,102891 -h2538,104:6630773,25122766:0,0,0 -r2538,104:6630773,25122766:0,608174,102891 -g2538,104:7941493,25122766 -g2538,104:7941493,25122766 -g2538,104:10685485,25122766 -k2538,105:15170442,25122766:3289580 -k2538,105:18460021,25122766:3289579 -) -(2538,106:6630773,25980433:11829248,505283,102891 -h2538,105:6630773,25980433:0,0,0 -r2538,105:6630773,25980433:0,608174,102891 -g2538,105:7941493,25980433 -g2538,105:7941493,25980433 -g2538,105:13056577,25980433 -k2538,106:16355988,25980433:2104034 -k2538,106:18460021,25980433:2104033 -) -(2538,107:6630773,26838100:11829248,505283,126483 -h2538,106:6630773,26838100:0,0,0 -r2538,106:6630773,26838100:0,631766,126483 -g2538,106:7941493,26838100 -g2538,106:7941493,26838100 -g2538,106:11475849,26838100 -k2538,107:15565624,26838100:2894398 -k2538,107:18460021,26838100:2894397 -) -(2538,108:6630773,27695767:11829248,505283,102891 -h2538,107:6630773,27695767:0,0,0 -r2538,107:6630773,27695767:0,608174,102891 -g2538,107:7941493,27695767 -g2538,107:7941493,27695767 -g2538,107:9499938,27695767 -k2538,108:14378439,27695767:4081583 -k2538,108:18460021,27695767:4081582 -) -(2538,109:6630773,28553433:11829248,505283,102891 -h2538,108:6630773,28553433:0,0,0 -r2538,108:6630773,28553433:0,608174,102891 -g2538,108:7941493,28553433 -g2538,108:7941493,28553433 -g2538,108:10290302,28553433 -g2538,108:11460119,28553433 -g2538,108:12629936,28553433 -k2538,109:16142667,28553433:2317354 -k2538,109:18460021,28553433:2317354 -) -(2538,110:6630773,29411100:11829248,505283,134348 -h2538,109:6630773,29411100:0,0,0 -r2538,109:6630773,29411100:0,639631,134348 -g2538,109:7941493,29411100 -g2538,109:7941493,29411100 -g2538,109:11871031,29411100 -k2538,110:15563985,29411100:2896036 -k2538,110:18460021,29411100:2896036 -) -(2538,111:6630773,30268767:11829248,505283,102891 -h2538,110:6630773,30268767:0,0,0 -r2538,110:6630773,30268767:0,608174,102891 -g2538,110:7941493,30268767 -g2538,110:7941493,30268767 -g2538,110:12266213,30268767 -k2538,111:15761576,30268767:2698445 -k2538,111:18460021,30268767:2698445 -) -(2538,112:6630773,31126434:11829248,505283,102891 -h2538,111:6630773,31126434:0,0,0 -r2538,111:6630773,31126434:0,608174,102891 -g2538,111:7941493,31126434 -g2538,111:7941493,31126434 -g2538,111:11080667,31126434 -g2538,111:12250484,31126434 -g2538,111:13420301,31126434 -g2538,111:14988577,31126434 -g2538,111:16556853,31126434 -k2538,112:18106126,31126434:353896 -k2538,112:18460021,31126434:353895 -) -(2538,113:6630773,31984100:11829248,513147,102891 -h2538,112:6630773,31984100:0,0,0 -r2538,112:6630773,31984100:0,616038,102891 -g2538,112:7941493,31984100 -g2538,112:7941493,31984100 -g2538,112:10685485,31984100 -g2538,112:12253761,31984100 -k2538,113:15954580,31984100:2505442 -k2538,113:18460021,31984100:2505441 -) -(2538,114:6630773,32841767:11829248,513147,102891 -h2538,113:6630773,32841767:0,0,0 -r2538,113:6630773,32841767:0,616038,102891 -g2538,113:7941493,32841767 -g2538,113:7941493,32841767 -g2538,113:13846941,32841767 -k2538,114:16751170,32841767:1708852 -k2538,114:18460021,32841767:1708851 -) -(2538,115:6630773,33699434:11829248,505283,102891 -h2538,114:6630773,33699434:0,0,0 -r2538,114:6630773,33699434:0,608174,102891 -g2538,114:7941493,33699434 -g2538,114:7941493,33699434 -g2538,114:12266213,33699434 -k2538,115:15761576,33699434:2698445 -k2538,115:18460021,33699434:2698445 -) -(2538,116:6630773,34557101:11829248,505283,102891 -h2538,115:6630773,34557101:0,0,0 -r2538,115:6630773,34557101:0,608174,102891 -g2538,115:7941493,34557101 -g2538,115:7941493,34557101 -g2538,115:11871031,34557101 -k2538,116:15563985,34557101:2896036 -k2538,116:18460021,34557101:2896036 -) -(2538,117:6630773,35414768:11829248,505283,102891 -h2538,116:6630773,35414768:0,0,0 -r2538,116:6630773,35414768:0,608174,102891 -g2538,116:7941493,35414768 -g2538,116:7941493,35414768 -g2538,116:12661395,35414768 -k2538,117:15959167,35414768:2500854 -k2538,117:18460021,35414768:2500854 -) -(2538,118:6630773,36272434:11829248,505283,102891 -h2538,117:6630773,36272434:0,0,0 -r2538,117:6630773,36272434:0,608174,102891 -g2538,117:7941493,36272434 -g2538,117:7941493,36272434 -g2538,117:12266213,36272434 -k2538,118:15960806,36272434:2499216 -k2538,118:18460021,36272434:2499215 -) -(2538,119:6630773,37130101:11829248,505283,126483 -h2538,118:6630773,37130101:0,0,0 -r2538,118:6630773,37130101:0,631766,126483 -g2538,118:7941493,37130101 -g2538,118:7941493,37130101 -g2538,118:13451759,37130101 -k2538,119:16553579,37130101:1906443 -k2538,119:18460021,37130101:1906442 -) -(2538,120:6630773,37987768:11829248,505283,102891 -h2538,119:6630773,37987768:0,0,0 -r2538,119:6630773,37987768:0,608174,102891 -g2538,119:7941493,37987768 -g2538,119:7941493,37987768 -g2538,119:10290302,37987768 -k2538,120:15734378,37987768:2725643 -k2538,120:18460021,37987768:2725643 -) -(2538,121:6630773,38845435:11829248,505283,102891 -h2538,120:6630773,38845435:0,0,0 -r2538,120:6630773,38845435:0,608174,102891 -g2538,120:7941493,38845435 -g2538,120:7941493,38845435 -g2538,120:12266213,38845435 -g2538,120:13834489,38845435 -k2538,121:16744944,38845435:1715078 -k2538,121:18460021,38845435:1715077 -) -(2538,122:6630773,39703102:11829248,505283,126483 -h2538,121:6630773,39703102:0,0,0 -r2538,121:6630773,39703102:0,631766,126483 -g2538,121:7941493,39703102 -g2538,121:7941493,39703102 -g2538,121:12661395,39703102 -k2538,122:15959167,39703102:2500854 -k2538,122:18460021,39703102:2500854 -) -(2538,123:6630773,40560768:11829248,505283,102891 -h2538,122:6630773,40560768:0,0,0 -r2538,122:6630773,40560768:0,608174,102891 -g2538,122:7941493,40560768 -g2538,122:7941493,40560768 -g2538,122:11475849,40560768 -k2538,123:15565624,40560768:2894398 -k2538,123:18460021,40560768:2894397 -) -(2538,124:6630773,41418435:11829248,505283,102891 -h2538,123:6630773,41418435:0,0,0 -r2538,123:6630773,41418435:0,608174,102891 -g2538,123:7941493,41418435 -g2538,123:7941493,41418435 -g2538,123:10685485,41418435 -g2538,123:11855302,41418435 -k2538,124:15556121,41418435:2903901 -k2538,124:18460021,41418435:2903900 -) -(2538,125:6630773,42276102:11829248,513147,102891 -h2538,124:6630773,42276102:0,0,0 -r2538,124:6630773,42276102:0,616038,102891 -g2538,124:7941493,42276102 -g2538,124:7941493,42276102 -g2538,124:13056577,42276102 -g2538,124:14226394,42276102 -g2538,124:15794670,42276102 -k2538,125:17725034,42276102:734987 -k2538,125:18460021,42276102:734987 -) -(2538,126:6630773,43133769:11829248,505283,126483 -h2538,125:6630773,43133769:0,0,0 -r2538,125:6630773,43133769:0,631766,126483 -g2538,125:7941493,43133769 -g2538,125:7941493,43133769 -g2538,125:12661395,43133769 -k2538,126:16158397,43133769:2301625 -k2538,126:18460021,43133769:2301624 -) -(2538,127:6630773,43991435:11829248,505283,134348 -h2538,126:6630773,43991435:0,0,0 -r2538,126:6630773,43991435:0,639631,134348 -g2538,126:7941493,43991435 -g2538,126:7941493,43991435 -g2538,126:10685485,43991435 -k2538,127:14971212,43991435:3488809 -k2538,127:18460021,43991435:3488809 -) -(2538,128:6630773,44849102:11829248,505283,102891 -h2538,127:6630773,44849102:0,0,0 -r2538,127:6630773,44849102:0,608174,102891 -g2538,127:7941493,44849102 -g2538,127:7941493,44849102 -g2538,127:10290302,44849102 -g2538,127:11460119,44849102 -g2538,127:12629936,44849102 -k2538,128:16142667,44849102:2317354 -k2538,128:18460021,44849102:2317354 -) -(2538,129:6630773,45706769:11829248,505283,102891 -h2538,128:6630773,45706769:0,0,0 -r2538,128:6630773,45706769:0,608174,102891 -g2538,128:7941493,45706769 -g2538,128:7941493,45706769 -g2538,128:11080667,45706769 -k2538,129:15168803,45706769:3291218 -k2538,129:18460021,45706769:3291218 -) -] -k2538,179:19606901,45706769:1146880 -r2538,179:19606901,45706769:0,40242380,134348 -k2538,179:20753781,45706769:1146880 -[2538,179:20753781,45706769:11829248,40108032,134348 -(2538,130:20753781,6254097:11829248,505283,102891 -h2538,129:20753781,6254097:0,0,0 -r2538,129:20753781,6254097:0,608174,102891 -g2538,129:22064501,6254097 -g2538,129:22064501,6254097 -g2538,129:26389221,6254097 -k2538,130:30083814,6254097:2499216 -k2538,130:32583029,6254097:2499215 -) -(2538,131:20753781,7111764:11829248,505283,102891 -h2538,130:20753781,7111764:0,0,0 -r2538,130:20753781,7111764:0,608174,102891 -g2538,130:22064501,7111764 -g2538,130:22064501,7111764 -g2538,130:24413310,7111764 -k2538,131:29095858,7111764:3487171 -k2538,131:32583029,7111764:3487171 -) -(2538,132:20753781,7969431:11829248,505283,102891 -h2538,131:20753781,7969431:0,0,0 -r2538,131:20753781,7969431:0,608174,102891 -g2538,131:22064501,7969431 -g2538,131:22064501,7969431 -g2538,131:25994039,7969431 -k2538,132:29886223,7969431:2696807 -k2538,132:32583029,7969431:2696806 -) -(2538,133:20753781,8827097:11829248,505283,102891 -h2538,132:20753781,8827097:0,0,0 -r2538,132:20753781,8827097:0,608174,102891 -g2538,132:22064501,8827097 -g2538,132:22064501,8827097 -g2538,132:24018128,8827097 -k2538,133:28898267,8827097:3684762 -k2538,133:32583029,8827097:3684762 -) -(2538,134:20753781,9684764:11829248,505283,102891 -h2538,133:20753781,9684764:0,0,0 -r2538,133:20753781,9684764:0,608174,102891 -g2538,133:22064501,9684764 -g2538,133:22064501,9684764 -g2538,133:25994039,9684764 -g2538,133:27562315,9684764 -k2538,134:30670361,9684764:1912669 -k2538,134:32583029,9684764:1912668 -) -(2538,135:20753781,10542431:11829248,505283,102891 -h2538,134:20753781,10542431:0,0,0 -r2538,134:20753781,10542431:0,608174,102891 -g2538,134:22064501,10542431 -g2538,134:22064501,10542431 -g2538,134:25598857,10542431 -k2538,135:29489402,10542431:3093627 -k2538,135:32583029,10542431:3093627 -) -(2538,136:20753781,11400098:11829248,513147,102891 -h2538,135:20753781,11400098:0,0,0 -r2538,135:20753781,11400098:0,616038,102891 -g2538,135:22064501,11400098 -g2538,135:22064501,11400098 -g2538,135:28365131,11400098 -k2538,136:31071769,11400098:1511261 -k2538,136:32583029,11400098:1511260 -) -(2538,137:20753781,12257764:11829248,505283,102891 -h2538,136:20753781,12257764:0,0,0 -r2538,136:20753781,12257764:0,608174,102891 -g2538,136:22064501,12257764 -g2538,136:22064501,12257764 -g2538,136:26784403,12257764 -k2538,137:30281405,12257764:2301625 -k2538,137:32583029,12257764:2301624 -) -(2538,138:20753781,13115431:11829248,505283,102891 -h2538,137:20753781,13115431:0,0,0 -r2538,137:20753781,13115431:0,608174,102891 -g2538,137:22064501,13115431 -g2538,137:22064501,13115431 -g2538,137:27969949,13115431 -k2538,138:30874178,13115431:1708852 -k2538,138:32583029,13115431:1708851 -) -(2538,139:20753781,13973098:11829248,505283,126483 -h2538,138:20753781,13973098:0,0,0 -r2538,138:20753781,13973098:0,631766,126483 -g2538,138:22064501,13973098 -g2538,138:22064501,13973098 -g2538,138:24413310,13973098 -g2538,138:25583127,13973098 -k2538,139:29481537,13973098:3101492 -k2538,139:32583029,13973098:3101492 -) -(2538,140:20753781,14830765:11829248,505283,126483 -h2538,139:20753781,14830765:0,0,0 -r2538,139:20753781,14830765:0,631766,126483 -g2538,139:22064501,14830765 -g2538,139:22064501,14830765 -g2538,139:28365131,14830765 -g2538,139:29933407,14830765 -k2538,140:31855907,14830765:727123 -k2538,140:32583029,14830765:727122 -) -(2538,141:20753781,15688432:11829248,505283,126483 -h2538,140:20753781,15688432:0,0,0 -r2538,140:20753781,15688432:0,631766,126483 -g2538,140:22064501,15688432 -g2538,140:22064501,15688432 -g2538,140:27179585,15688432 -k2538,141:31240524,15688432:1342506 -k2538,141:32583029,15688432:1342505 -) -(2538,142:20753781,16546098:11829248,513147,134348 -h2538,141:20753781,16546098:0,0,0 -r2538,141:20753781,16546098:0,647495,134348 -g2538,141:22064501,16546098 -g2538,141:22064501,16546098 -g2538,141:27179585,16546098 -k2538,142:30478996,16546098:2104034 -k2538,142:32583029,16546098:2104033 -) -(2538,143:20753781,17403765:11829248,513147,126483 -h2538,142:20753781,17403765:0,0,0 -r2538,142:20753781,17403765:0,639630,126483 -g2538,142:22064501,17403765 -g2538,142:22064501,17403765 -g2538,142:27179585,17403765 -g2538,142:28747861,17403765 -g2538,142:30316137,17403765 -k2538,143:32047272,17403765:535758 -k2538,143:32583029,17403765:535757 -) -(2538,144:20753781,18261432:11829248,513147,102891 -h2538,143:20753781,18261432:0,0,0 -r2538,143:20753781,18261432:0,616038,102891 -g2538,143:22064501,18261432 -g2538,143:22064501,18261432 -g2538,143:25598857,18261432 -g2538,143:26768674,18261432 -g2538,143:27938491,18261432 -g2538,143:29108308,18261432 -k2538,144:31244128,18261432:1338902 -k2538,144:32583029,18261432:1338901 -) -(2538,145:20753781,19119099:11829248,513147,126483 -h2538,144:20753781,19119099:0,0,0 -r2538,144:20753781,19119099:0,639630,126483 -g2538,144:22064501,19119099 -g2538,144:22064501,19119099 -g2538,144:26784403,19119099 -k2538,145:30281405,19119099:2301625 -k2538,145:32583029,19119099:2301624 -) -(2538,146:20753781,19976766:11829248,513147,102891 -h2538,145:20753781,19976766:0,0,0 -r2538,145:20753781,19976766:0,616038,102891 -g2538,145:22064501,19976766 -g2538,145:22064501,19976766 -g2538,145:25598857,19976766 -k2538,146:29688632,19976766:2894398 -k2538,146:32583029,19976766:2894397 -) -(2538,147:20753781,20834432:11829248,513147,102891 -h2538,146:20753781,20834432:0,0,0 -r2538,146:20753781,20834432:0,616038,102891 -g2538,146:22064501,20834432 -g2538,146:22064501,20834432 -g2538,146:25598857,20834432 -k2538,147:29688632,20834432:2894398 -k2538,147:32583029,20834432:2894397 -) -(2538,148:20753781,21692099:11829248,513147,102891 -h2538,147:20753781,21692099:0,0,0 -r2538,147:20753781,21692099:0,616038,102891 -g2538,147:22064501,21692099 -g2538,147:22064501,21692099 -g2538,147:28365131,21692099 -k2538,148:31071769,21692099:1511261 -k2538,148:32583029,21692099:1511260 -) -(2538,149:20753781,22549766:11829248,513147,102891 -h2538,148:20753781,22549766:0,0,0 -r2538,148:20753781,22549766:0,616038,102891 -g2538,148:22064501,22549766 -g2538,148:22064501,22549766 -g2538,148:25598857,22549766 -g2538,148:26768674,22549766 -g2538,148:27938491,22549766 -k2538,149:30858449,22549766:1724581 -k2538,149:32583029,22549766:1724580 -) -(2538,150:20753781,23407433:11829248,513147,102891 -h2538,149:20753781,23407433:0,0,0 -r2538,149:20753781,23407433:0,616038,102891 -g2538,149:22064501,23407433 -g2538,149:22064501,23407433 -g2538,149:26389221,23407433 -k2538,150:30083814,23407433:2499216 -k2538,150:32583029,23407433:2499215 -) -(2538,151:20753781,24265099:11829248,513147,134348 -h2538,150:20753781,24265099:0,0,0 -r2538,150:20753781,24265099:0,647495,134348 -g2538,150:22064501,24265099 -g2538,150:22064501,24265099 -g2538,150:26784403,24265099 -k2538,151:30281405,24265099:2301625 -k2538,151:32583029,24265099:2301624 -) -(2538,152:20753781,25122766:11829248,513147,102891 -h2538,151:20753781,25122766:0,0,0 -r2538,151:20753781,25122766:0,616038,102891 -g2538,151:22064501,25122766 -g2538,151:22064501,25122766 -g2538,151:26389221,25122766 -k2538,152:30083814,25122766:2499216 -k2538,152:32583029,25122766:2499215 -) -(2538,153:20753781,25980433:11829248,505283,134348 -h2538,152:20753781,25980433:0,0,0 -r2538,152:20753781,25980433:0,639631,134348 -g2538,152:22064501,25980433 -g2538,152:22064501,25980433 -g2538,152:25598857,25980433 -g2538,152:27167133,25980433 -k2538,153:30472770,25980433:2110260 -k2538,153:32583029,25980433:2110259 -) -(2538,154:20753781,26838100:11829248,505283,134348 -h2538,153:20753781,26838100:0,0,0 -r2538,153:20753781,26838100:0,639631,134348 -g2538,153:22064501,26838100 -g2538,153:22064501,26838100 -g2538,153:26784403,26838100 -k2538,154:30281405,26838100:2301625 -k2538,154:32583029,26838100:2301624 -) -(2538,155:20753781,27695767:11829248,485622,134348 -h2538,154:20753781,27695767:0,0,0 -r2538,154:20753781,27695767:0,619970,134348 -g2538,154:22064501,27695767 -g2538,154:22064501,27695767 -g2538,154:25994039,27695767 -k2538,155:29886223,27695767:2696807 -k2538,155:32583029,27695767:2696806 -) -(2538,156:20753781,28553433:11829248,505283,134348 -h2538,155:20753781,28553433:0,0,0 -r2538,155:20753781,28553433:0,639631,134348 -g2538,155:22064501,28553433 -g2538,155:22064501,28553433 -g2538,155:26784403,28553433 -g2538,155:28352679,28553433 -k2538,156:31065543,28553433:1517487 -k2538,156:32583029,28553433:1517486 -) -(2538,157:20753781,29411100:11829248,505283,134348 -h2538,156:20753781,29411100:0,0,0 -r2538,156:20753781,29411100:0,639631,134348 -g2538,156:22064501,29411100 -g2538,156:22064501,29411100 -g2538,156:26389221,29411100 -g2538,156:27957497,29411100 -g2538,156:29525773,29411100 -g2538,156:31094049,29411100 -k2538,157:32436228,29411100:146802 -k2538,157:32583029,29411100:146801 -) -(2538,158:20753781,30268767:11829248,505283,134348 -h2538,157:20753781,30268767:0,0,0 -r2538,157:20753781,30268767:0,639631,134348 -g2538,157:22064501,30268767 -g2538,157:22064501,30268767 -g2538,157:27179585,30268767 -k2538,158:30478996,30268767:2104034 -k2538,158:32583029,30268767:2104033 -) -(2538,159:20753781,31126434:11829248,505283,134348 -h2538,158:20753781,31126434:0,0,0 -r2538,158:20753781,31126434:0,639631,134348 -g2538,158:22064501,31126434 -g2538,158:22064501,31126434 -g2538,158:27969949,31126434 -k2538,159:30874178,31126434:1708852 -k2538,159:32583029,31126434:1708851 -) -(2538,160:20753781,31984100:11829248,505283,134348 -h2538,159:20753781,31984100:0,0,0 -r2538,159:20753781,31984100:0,639631,134348 -g2538,159:22064501,31984100 -g2538,159:22064501,31984100 -g2538,159:26389221,31984100 -g2538,159:27957497,31984100 -g2538,159:29525773,31984100 -k2538,160:31652090,31984100:930940 -k2538,160:32583029,31984100:930939 -) -(2538,161:20753781,32841767:11829248,505283,134348 -h2538,160:20753781,32841767:0,0,0 -r2538,160:20753781,32841767:0,639631,134348 -g2538,160:22064501,32841767 -g2538,160:22064501,32841767 -g2538,160:27179585,32841767 -k2538,161:30478996,32841767:2104034 -k2538,161:32583029,32841767:2104033 -) -(2538,162:20753781,33699434:11829248,505283,134348 -h2538,161:20753781,33699434:0,0,0 -r2538,161:20753781,33699434:0,639631,134348 -g2538,161:22064501,33699434 -g2538,161:22064501,33699434 -g2538,161:27969949,33699434 -k2538,162:30874178,33699434:1708852 -k2538,162:32583029,33699434:1708851 -) -(2538,163:20753781,34557101:11829248,505283,134348 -h2538,162:20753781,34557101:0,0,0 -r2538,162:20753781,34557101:0,639631,134348 -g2538,162:22064501,34557101 -g2538,162:22064501,34557101 -g2538,162:29155496,34557101 -k2538,163:31466951,34557101:1116078 -k2538,163:32583029,34557101:1116078 -) -(2538,164:20753781,35414768:11829248,505283,134348 -h2538,163:20753781,35414768:0,0,0 -r2538,163:20753781,35414768:0,639631,134348 -g2538,163:22064501,35414768 -g2538,163:22064501,35414768 -g2538,163:27574767,35414768 -k2538,164:30676587,35414768:1906443 -k2538,164:32583029,35414768:1906442 -) -(2538,165:20753781,36272434:11829248,505283,134348 -h2538,164:20753781,36272434:0,0,0 -r2538,164:20753781,36272434:0,639631,134348 -g2538,164:22064501,36272434 -g2538,164:22064501,36272434 -g2538,164:28365131,36272434 -k2538,165:31071769,36272434:1511261 -k2538,165:32583029,36272434:1511260 -) -(2538,166:20753781,37130101:11829248,505283,134348 -h2538,165:20753781,37130101:0,0,0 -r2538,165:20753781,37130101:0,639631,134348 -g2538,165:22064501,37130101 -g2538,165:22064501,37130101 -g2538,165:26784403,37130101 -g2538,165:28352679,37130101 -k2538,166:31065543,37130101:1517487 -k2538,166:32583029,37130101:1517486 -) -(2538,167:20753781,37987768:11829248,505283,134348 -h2538,166:20753781,37987768:0,0,0 -r2538,166:20753781,37987768:0,639631,134348 -g2538,166:22064501,37987768 -g2538,166:22064501,37987768 -g2538,166:28365131,37987768 -k2538,167:31071769,37987768:1511261 -k2538,167:32583029,37987768:1511260 -) -(2538,168:20753781,38845435:11829248,505283,134348 -h2538,167:20753781,38845435:0,0,0 -r2538,167:20753781,38845435:0,639631,134348 -g2538,167:22064501,38845435 -g2538,167:22064501,38845435 -g2538,167:26389221,38845435 -k2538,168:30083814,38845435:2499216 -k2538,168:32583029,38845435:2499215 -) -(2538,169:20753781,39703102:11829248,505283,134348 -h2538,168:20753781,39703102:0,0,0 -r2538,168:20753781,39703102:0,639631,134348 -g2538,168:22064501,39703102 -g2538,168:22064501,39703102 -g2538,168:28760314,39703102 -g2538,168:30328590,39703102 -k2538,169:32053498,39703102:529531 -k2538,169:32583029,39703102:529531 -) -(2538,170:20753781,40560768:11829248,505283,134348 -h2538,169:20753781,40560768:0,0,0 -r2538,169:20753781,40560768:0,639631,134348 -g2538,169:22064501,40560768 -g2538,169:22064501,40560768 -g2538,169:26389221,40560768 -k2538,170:30083814,40560768:2499216 -k2538,170:32583029,40560768:2499215 -) -(2538,171:20753781,41418435:11829248,505283,134348 -h2538,170:20753781,41418435:0,0,0 -r2538,170:20753781,41418435:0,639631,134348 -g2538,170:22064501,41418435 -g2538,170:22064501,41418435 -g2538,170:27179585,41418435 -g2538,170:28747861,41418435 -k2538,171:31263134,41418435:1319896 -k2538,171:32583029,41418435:1319895 -) -(2538,172:20753781,42276102:11829248,505283,134348 -h2538,171:20753781,42276102:0,0,0 -r2538,171:20753781,42276102:0,639631,134348 -g2538,171:22064501,42276102 -g2538,171:22064501,42276102 -g2538,171:26389221,42276102 -g2538,171:27957497,42276102 -k2538,172:30867952,42276102:1715078 -k2538,172:32583029,42276102:1715077 -) -(2538,173:20753781,43133769:11829248,505283,134348 -h2538,172:20753781,43133769:0,0,0 -r2538,172:20753781,43133769:0,639631,134348 -g2538,172:22064501,43133769 -g2538,172:22064501,43133769 -g2538,172:27179585,43133769 -g2538,172:30270918,43133769 -k2538,173:32024662,43133769:558367 -k2538,173:32583029,43133769:558367 -) -(2538,174:20753781,43991435:11829248,505283,134348 -h2538,173:20753781,43991435:0,0,0 -r2538,173:20753781,43991435:0,639631,134348 -g2538,173:22064501,43991435 -g2538,173:22064501,43991435 -g2538,173:28760314,43991435 -k2538,174:31269360,43991435:1313669 -k2538,174:32583029,43991435:1313669 -) -(2538,175:20753781,44849102:11829248,505283,134348 -h2538,174:20753781,44849102:0,0,0 -r2538,174:20753781,44849102:0,639631,134348 -g2538,174:22064501,44849102 -g2538,174:22064501,44849102 -g2538,174:29550678,44849102 -k2538,175:31664542,44849102:918487 -k2538,175:32583029,44849102:918487 -) -(2538,176:20753781,45706769:11829248,505283,134348 -h2538,175:20753781,45706769:0,0,0 -r2538,175:20753781,45706769:0,639631,134348 -g2538,175:22064501,45706769 -g2538,175:22064501,45706769 -g2538,175:25994039,45706769 -k2538,176:29886223,45706769:2696807 -k2538,176:32583029,45706769:2696806 -) -] -(2538,179:32583029,45706769:0,355205,126483 -h2538,179:32583029,45706769:420741,355205,126483 -k2538,179:32583029,45706769:-420741 -) -) -] -(2538,179:32583029,45706769:0,0,0 -g2538,179:32583029,45706769 -) -) -] -(2538,179:6630773,47279633:25952256,0,0 -h2538,179:6630773,47279633:25952256,0,0 -) -] -h2538,179:4262630,4025873:0,0,0 -] -!31755 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17356:37855564,49800853:1179648,16384,0 +) +) +k1,17356:3078556,49800853:-34777008 +) +] +g1,17356:6630773,4812305 +k1,17356:23318207,4812305:15492057 +g1,17356:25216129,4812305 +g1,17356:26031396,4812305 +g1,17356:26644813,4812305 +g1,17356:28902528,4812305 +g1,17356:29858042,4812305 +) +) +] +[1,17356:6630773,45706769:25952256,40108032,0 +(1,17356:6630773,45706769:25952256,40108032,0 +(1,17356:6630773,45706769:0,0,0 +g1,17356:6630773,45706769 +) +[1,17356:6630773,45706769:25952256,40108032,0 +(2535,494:6630773,25629281:25952256,20030544,126483 +[2535,494:6630773,25629281:11829248,20030544,102891 +(2535,442:6630773,6254097:11829248,505283,102891 +h2535,441:6630773,6254097:0,0,0 +r2535,494:6630773,6254097:0,608174,102891 +g2535,441:7941493,6254097 +g2535,441:7941493,6254097 +g2535,441:10685485,6254097 +k2535,442:15170442,6254097:3289580 +k2535,442:18460021,6254097:3289579 +) +(2535,443:6630773,7102822:11829248,505283,102891 +h2535,442:6630773,7102822:0,0,0 +r2535,494:6630773,7102822:0,608174,102891 +g2535,442:7941493,7102822 +g2535,442:7941493,7102822 +g2535,442:10685485,7102822 +g2535,442:12253761,7102822 +g2535,442:13822037,7102822 +k2535,443:16738718,7102822:1721304 +k2535,443:18460021,7102822:1721303 +) +(2535,444:6630773,7951547:11829248,513147,102891 +h2535,443:6630773,7951547:0,0,0 +r2535,494:6630773,7951547:0,616038,102891 +g2535,443:7941493,7951547 +g2535,443:7941493,7951547 +g2535,443:13846941,7951547 +k2535,444:16751170,7951547:1708852 +k2535,444:18460021,7951547:1708851 +) +(2535,445:6630773,8800272:11829248,505283,102891 +h2535,444:6630773,8800272:0,0,0 +r2535,494:6630773,8800272:0,608174,102891 +g2535,444:7941493,8800272 +g2535,444:7941493,8800272 +g2535,444:12266213,8800272 +k2535,445:15960806,8800272:2499216 +k2535,445:18460021,8800272:2499215 +) +(2535,446:6630773,9648998:11829248,505283,126483 +h2535,445:6630773,9648998:0,0,0 +r2535,494:6630773,9648998:0,631766,126483 +g2535,445:7941493,9648998 +g2535,445:7941493,9648998 +g2535,445:10685485,9648998 +k2535,446:15170442,9648998:3289580 +k2535,446:18460021,9648998:3289579 +) +(2535,447:6630773,10497723:11829248,505283,126483 +h2535,446:6630773,10497723:0,0,0 +r2535,494:6630773,10497723:0,631766,126483 +g2535,446:7941493,10497723 +g2535,446:7941493,10497723 +g2535,446:10685485,10497723 +g2535,446:12253761,10497723 +g2535,446:13822037,10497723 +k2535,447:16738718,10497723:1721304 +k2535,447:18460021,10497723:1721303 +) +(2535,451:6630773,12122426:11829248,505283,126483 +h2535,450:6630773,12122426:0,0,0 +g2535,450:8898318,12122426 +g2535,450:10288992,12122426 +g2535,450:11996860,12122426 +k2535,451:16141685,12122426:2318337 +k2535,451:18460021,12122426:2318336 +) +(2535,452:6630773,12971151:11829248,505283,102891 +h2535,451:6630773,12971151:0,0,0 +r2535,494:6630773,12971151:0,608174,102891 +g2535,451:7941493,12971151 +g2535,451:7941493,12971151 +g2535,451:11475849,12971151 +k2535,452:15928693,12971151:2531328 +k2535,452:18460021,12971151:2531328 +) +(2535,453:6630773,13819876:11829248,505283,102891 +h2535,452:6630773,13819876:0,0,0 +r2535,494:6630773,13819876:0,608174,102891 +g2535,452:7941493,13819876 +g2535,452:7941493,13819876 +g2535,452:11475849,13819876 +g2535,452:13770264,13819876 +k2535,453:16712831,13819876:1747190 +k2535,453:18460021,13819876:1747190 +) +(2535,454:6630773,14668601:11829248,505283,102891 +h2535,453:6630773,14668601:0,0,0 +r2535,494:6630773,14668601:0,608174,102891 +g2535,453:7941493,14668601 +g2535,453:7941493,14668601 +g2535,453:11475849,14668601 +k2535,454:15565624,14668601:2894398 +k2535,454:18460021,14668601:2894397 +) +(2535,455:6630773,15517326:11829248,505283,102891 +h2535,454:6630773,15517326:0,0,0 +r2535,494:6630773,15517326:0,608174,102891 +g2535,454:7941493,15517326 +g2535,454:7941493,15517326 +g2535,454:10685485,15517326 +k2535,455:15533511,15517326:2926510 +k2535,455:18460021,15517326:2926510 +) +(2535,456:6630773,16366052:11829248,505283,102891 +h2535,455:6630773,16366052:0,0,0 +r2535,494:6630773,16366052:0,608174,102891 +g2535,455:7941493,16366052 +g2535,455:7941493,16366052 +g2535,455:11475849,16366052 +g2535,455:12645666,16366052 +k2535,456:15951303,16366052:2508719 +k2535,456:18460021,16366052:2508718 +) +(2535,460:6630773,17990755:11829248,426639,126483 +h2535,459:6630773,17990755:0,0,0 +k2535,460:14083855,17990755:4376167 +k2535,460:18460021,17990755:4376166 +) +(2535,461:6630773,18839480:11829248,485622,102891 +h2535,460:6630773,18839480:0,0,0 +r2535,494:6630773,18839480:0,588513,102891 +g2535,460:7941493,18839480 +g2535,460:7941493,18839480 +g2535,460:8709574,18839480 +g2535,460:9879391,18839480 +k2535,461:14568165,18839480:3891856 +k2535,461:18460021,18839480:3891856 +) +(2535,462:6630773,19688205:11829248,485622,102891 +h2535,461:6630773,19688205:0,0,0 +r2535,494:6630773,19688205:0,588513,102891 +g2535,461:7941493,19688205 +g2535,461:7941493,19688205 +g2535,461:8709574,19688205 +g2535,461:9879391,19688205 +g2535,461:11049208,19688205 +k2535,462:15352303,19688205:3107718 +k2535,462:18460021,19688205:3107718 +) +(2535,463:6630773,20536930:11829248,485622,102891 +h2535,462:6630773,20536930:0,0,0 +r2535,494:6630773,20536930:0,588513,102891 +g2535,462:7941493,20536930 +g2535,462:7941493,20536930 +g2535,462:8709574,20536930 +g2535,462:9879391,20536930 +k2535,463:14568165,20536930:3891856 +k2535,463:18460021,20536930:3891856 +) +(2535,464:6630773,21385655:11829248,485622,102891 +h2535,463:6630773,21385655:0,0,0 +r2535,494:6630773,21385655:0,588513,102891 +g2535,463:7941493,21385655 +g2535,463:7941493,21385655 +g2535,463:9104756,21385655 +k2535,464:14180848,21385655:4279174 +k2535,464:18460021,21385655:4279173 +) +(2535,465:6630773,22234380:11829248,505283,102891 +h2535,464:6630773,22234380:0,0,0 +r2535,494:6630773,22234380:0,608174,102891 +g2535,464:7941493,22234380 +g2535,464:7941493,22234380 +g2535,464:8709574,22234380 +g2535,464:9879391,22234380 +k2535,465:14767395,22234380:3692627 +k2535,465:18460021,22234380:3692626 +) +(2535,466:6630773,23083106:11829248,485622,102891 +h2535,465:6630773,23083106:0,0,0 +r2535,494:6630773,23083106:0,588513,102891 +g2535,465:7941493,23083106 +g2535,465:7941493,23083106 +g2535,465:8709574,23083106 +k2535,466:13983257,23083106:4476765 +k2535,466:18460021,23083106:4476764 +) +(2535,467:6630773,23931831:11829248,485622,102891 +h2535,466:6630773,23931831:0,0,0 +r2535,494:6630773,23931831:0,588513,102891 +g2535,466:7941493,23931831 +g2535,466:7941493,23931831 +g2535,466:8709574,23931831 +k2535,467:13983257,23931831:4476765 +k2535,467:18460021,23931831:4476764 +) +(2535,468:6630773,24780556:11829248,485622,102891 +h2535,467:6630773,24780556:0,0,0 +r2535,494:6630773,24780556:0,588513,102891 +g2535,467:7941493,24780556 +g2535,467:7941493,24780556 +g2535,467:9104756,24780556 +g2535,467:10274573,24780556 +g2535,467:11444390,24780556 +g2535,467:12614207,24780556 +k2535,468:15935573,24780556:2524448 +k2535,468:18460021,24780556:2524448 +) +(2535,469:6630773,25629281:11829248,485622,102891 +h2535,468:6630773,25629281:0,0,0 +r2535,494:6630773,25629281:0,588513,102891 +g2535,468:7941493,25629281 +g2535,468:7941493,25629281 +g2535,468:9499938,25629281 +k2535,469:14577668,25629281:3882353 +k2535,469:18460021,25629281:3882353 +) +] +k2535,494:19606901,25629281:1146880 +r2535,494:19606901,25629281:0,20157027,126483 +k2535,494:20753781,25629281:1146880 +[2535,494:20753781,25629281:11829248,20030544,102891 +(2535,470:20753781,6254097:11829248,485622,102891 +h2535,469:20753781,6254097:0,0,0 +r2535,494:20753781,6254097:0,588513,102891 +g2535,469:22064501,6254097 +g2535,469:22064501,6254097 +g2535,469:23227764,6254097 +k2535,470:28303856,6254097:4279174 +k2535,470:32583029,6254097:4279173 +) +(2535,471:20753781,7096496:11829248,485622,102891 +h2535,470:20753781,7096496:0,0,0 +r2535,494:20753781,7096496:0,588513,102891 +g2535,470:22064501,7096496 +g2535,470:22064501,7096496 +g2535,470:22832582,7096496 +k2535,471:28106265,7096496:4476765 +k2535,471:32583029,7096496:4476764 +) +(2535,472:20753781,7938896:11829248,485622,102891 +h2535,471:20753781,7938896:0,0,0 +r2535,494:20753781,7938896:0,588513,102891 +g2535,471:22064501,7938896 +g2535,471:22064501,7938896 +g2535,471:23227764,7938896 +g2535,471:24397581,7938896 +k2535,472:29087994,7938896:3495036 +k2535,472:32583029,7938896:3495035 +) +(2535,473:20753781,8781295:11829248,485622,102891 +h2535,472:20753781,8781295:0,0,0 +r2535,494:20753781,8781295:0,588513,102891 +g2535,472:22064501,8781295 +g2535,472:22064501,8781295 +g2535,472:22832582,8781295 +k2535,473:28106265,8781295:4476765 +k2535,473:32583029,8781295:4476764 +) +(2535,474:20753781,9623694:11829248,485622,102891 +h2535,473:20753781,9623694:0,0,0 +r2535,494:20753781,9623694:0,588513,102891 +g2535,473:22064501,9623694 +g2535,473:22064501,9623694 +g2535,473:23227764,9623694 +k2535,474:28303856,9623694:4279174 +k2535,474:32583029,9623694:4279173 +) +(2535,475:20753781,10466094:11829248,505283,102891 +h2535,474:20753781,10466094:0,0,0 +r2535,494:20753781,10466094:0,608174,102891 +g2535,474:22064501,10466094 +g2535,474:22064501,10466094 +g2535,474:22854865,10466094 +g2535,474:23645229,10466094 +g2535,474:24413310,10466094 +k2535,475:29095858,10466094:3487171 +k2535,475:32583029,10466094:3487171 +) +(2535,476:20753781,11308493:11829248,505283,102891 +h2535,475:20753781,11308493:0,0,0 +r2535,494:20753781,11308493:0,608174,102891 +g2535,475:22064501,11308493 +g2535,475:22064501,11308493 +g2535,475:22854865,11308493 +g2535,475:23622946,11308493 +g2535,475:24792763,11308493 +k2535,476:29086355,11308493:3496674 +k2535,476:32583029,11308493:3496674 +) +(2535,477:20753781,12150892:11829248,505283,102891 +h2535,476:20753781,12150892:0,0,0 +r2535,494:20753781,12150892:0,608174,102891 +g2535,476:22064501,12150892 +g2535,476:22064501,12150892 +g2535,476:23250047,12150892 +g2535,476:24413310,12150892 +k2535,477:28896629,12150892:3686401 +k2535,477:32583029,12150892:3686400 +) +(2535,478:20753781,12993291:11829248,505283,102891 +h2535,477:20753781,12993291:0,0,0 +r2535,494:20753781,12993291:0,608174,102891 +g2535,477:22064501,12993291 +g2535,477:22064501,12993291 +g2535,477:24018128,12993291 +g2535,477:25187945,12993291 +g2535,477:26357762,12993291 +g2535,477:27527579,12993291 +k2535,478:30453763,12993291:2129266 +k2535,478:32583029,12993291:2129266 +) +(2535,479:20753781,13835691:11829248,505283,102891 +h2535,478:20753781,13835691:0,0,0 +r2535,494:20753781,13835691:0,608174,102891 +g2535,478:22064501,13835691 +g2535,478:22064501,13835691 +g2535,478:23227764,13835691 +g2535,478:24397581,13835691 +k2535,479:28888764,13835691:3694265 +k2535,479:32583029,13835691:3694265 +) +(2535,480:20753781,14678090:11829248,513147,102891 +h2535,479:20753781,14678090:0,0,0 +r2535,494:20753781,14678090:0,616038,102891 +g2535,479:22064501,14678090 +g2535,479:22064501,14678090 +g2535,479:22832582,14678090 +g2535,479:24002399,14678090 +g2535,479:25172216,14678090 +k2535,480:29276082,14678090:3306948 +k2535,480:32583029,14678090:3306947 +) +(2535,481:20753781,15520489:11829248,485622,102891 +h2535,480:20753781,15520489:0,0,0 +r2535,494:20753781,15520489:0,588513,102891 +g2535,480:22064501,15520489 +g2535,480:22064501,15520489 +g2535,480:23622946,15520489 +k2535,481:28501447,15520489:4081583 +k2535,481:32583029,15520489:4081582 +) +(2535,482:20753781,16362889:11829248,485622,102891 +h2535,481:20753781,16362889:0,0,0 +r2535,494:20753781,16362889:0,588513,102891 +g2535,481:22064501,16362889 +g2535,481:22064501,16362889 +g2535,481:24018128,16362889 +g2535,481:25586404,16362889 +k2535,482:29682405,16362889:2900624 +k2535,482:32583029,16362889:2900624 +) +(2535,483:20753781,17205288:11829248,505283,102891 +h2535,482:20753781,17205288:0,0,0 +r2535,494:20753781,17205288:0,608174,102891 +g2535,482:22064501,17205288 +g2535,482:22064501,17205288 +g2535,482:23622946,17205288 +k2535,483:28501447,17205288:4081583 +k2535,483:32583029,17205288:4081582 +) +(2535,484:20753781,18047687:11829248,485622,102891 +h2535,483:20753781,18047687:0,0,0 +r2535,494:20753781,18047687:0,588513,102891 +g2535,483:22064501,18047687 +g2535,483:22064501,18047687 +g2535,483:24018128,18047687 +k2535,484:28898267,18047687:3684762 +k2535,484:32583029,18047687:3684762 +) +(2535,485:20753781,18890087:11829248,485622,102891 +h2535,484:20753781,18890087:0,0,0 +r2535,494:20753781,18890087:0,588513,102891 +g2535,484:22064501,18890087 +g2535,484:22064501,18890087 +g2535,484:23622946,18890087 +g2535,484:25191222,18890087 +k2535,485:29484814,18890087:3098215 +k2535,485:32583029,18890087:3098215 +) +(2535,486:20753781,19732486:11829248,485622,102891 +h2535,485:20753781,19732486:0,0,0 +r2535,494:20753781,19732486:0,588513,102891 +g2535,485:22064501,19732486 +g2535,485:22064501,19732486 +g2535,485:24018128,19732486 +k2535,486:28898267,19732486:3684762 +k2535,486:32583029,19732486:3684762 +) +(2535,487:20753781,20574885:11829248,485622,102891 +h2535,486:20753781,20574885:0,0,0 +r2535,494:20753781,20574885:0,588513,102891 +g2535,486:22064501,20574885 +g2535,486:22064501,20574885 +g2535,486:23227764,20574885 +k2535,487:28303856,20574885:4279174 +k2535,487:32583029,20574885:4279173 +) +(2535,488:20753781,21417284:11829248,505283,102891 +h2535,487:20753781,21417284:0,0,0 +r2535,494:20753781,21417284:0,608174,102891 +g2535,487:22064501,21417284 +g2535,487:22064501,21417284 +g2535,487:24018128,21417284 +g2535,487:25187945,21417284 +k2535,488:29283946,21417284:3299083 +k2535,488:32583029,21417284:3299083 +) +(2535,489:20753781,22259684:11829248,485622,102891 +h2535,488:20753781,22259684:0,0,0 +r2535,494:20753781,22259684:0,588513,102891 +g2535,488:22064501,22259684 +g2535,488:22064501,22259684 +g2535,488:22832582,22259684 +k2535,489:28106265,22259684:4476765 +k2535,489:32583029,22259684:4476764 +) +(2535,490:20753781,23102083:11829248,485622,102891 +h2535,489:20753781,23102083:0,0,0 +r2535,494:20753781,23102083:0,588513,102891 +g2535,489:22064501,23102083 +g2535,489:22064501,23102083 +g2535,489:23227764,23102083 +k2535,490:28303856,23102083:4279174 +k2535,490:32583029,23102083:4279173 +) +(2535,491:20753781,23944482:11829248,485622,102891 +h2535,490:20753781,23944482:0,0,0 +r2535,494:20753781,23944482:0,588513,102891 +g2535,490:22064501,23944482 +g2535,490:22064501,23944482 +g2535,490:22832582,23944482 +k2535,491:28106265,23944482:4476765 +k2535,491:32583029,23944482:4476764 +) +(2535,492:20753781,24786882:11829248,505283,102891 +h2535,491:20753781,24786882:0,0,0 +r2535,494:20753781,24786882:0,608174,102891 +g2535,491:22064501,24786882 +g2535,491:22064501,24786882 +g2535,491:22832582,24786882 +k2535,492:28106265,24786882:4476765 +k2535,492:32583029,24786882:4476764 +) +(2535,493:20753781,25629281:11829248,505283,102891 +h2535,492:20753781,25629281:0,0,0 +r2535,494:20753781,25629281:0,608174,102891 +g2535,492:22064501,25629281 +g2535,492:22064501,25629281 +g2535,492:23227764,25629281 +k2535,493:28303856,25629281:4279174 +k2535,493:32583029,25629281:4279173 +) +] +(2535,494:32583029,25629281:0,355205,126483 +h2535,494:32583029,25629281:420741,355205,126483 +k2535,494:32583029,25629281:-420741 +) +) +] +(1,17356:32583029,45706769:0,0,0 +g1,17356:32583029,45706769 +) +) +] +(1,17356:6630773,47279633:25952256,0,0 +h1,17356:6630773,47279633:25952256,0,0 +) +] +h1,17356:4262630,4025873:0,0,0 +] +!17650 }349 -!12 +Input:2536:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\rindex.ind +!90 {350 -[2538,271:4262630,47279633:28320399,43253760,0 -(2538,271:4262630,4025873:0,0,0 -[2538,271:-473657,4025873:11829248,0,0 -(2538,271:-473657,-710414:11829248,0,0 -h2538,271:-473657,-710414:0,0,0 -(2538,271:-473657,-710414:0,0,0 -(2538,271:-473657,-710414:0,0,0 -g2538,271:-473657,-710414 -(2538,271:-473657,-710414:65781,0,65781 -g2538,271:-407876,-710414 -[2538,271:-407876,-644633:0,0,0 -] -) -k2538,271:-473657,-710414:-65781 -) -) -k2538,271:11355591,-710414:11829248 -g2538,271:11355591,-710414 -) -] -) -[2538,271:6630773,47279633:25952256,43253760,0 -[2538,271:6630773,4812305:25952256,786432,0 -(2538,271:6630773,4812305:25952256,513147,134348 -(2538,271:6630773,4812305:25952256,513147,134348 -g2538,271:3078558,4812305 -[2538,271:3078558,4812305:0,0,0 -(2538,271:3078558,2439708:0,1703936,0 -k2538,271:1358238,2439708:-1720320 -(2538,1:1358238,2439708:1720320,1703936,0 -(2538,1:1358238,2439708:1179648,16384,0 -r2538,271:2537886,2439708:1179648,16384,0 -) -g2538,1:3062174,2439708 -(2538,1:3062174,2439708:16384,1703936,0 -[2538,1:3062174,2439708:25952256,1703936,0 -(2538,1:3062174,1915420:25952256,1179648,0 -(2538,1:3062174,1915420:16384,1179648,0 -r2538,271:3078558,1915420:16384,1179648,0 -) -k2538,1:29014430,1915420:25935872 -g2538,1:29014430,1915420 -) -] -) -) -) -] -[2538,271:3078558,4812305:0,0,0 -(2538,271:3078558,2439708:0,1703936,0 -g2538,271:29030814,2439708 -g2538,271:36135244,2439708 -(2538,1:36135244,2439708:1720320,1703936,0 -(2538,1:36135244,2439708:16384,1703936,0 -[2538,1:36135244,2439708:25952256,1703936,0 -(2538,1:36135244,1915420:25952256,1179648,0 -(2538,1:36135244,1915420:16384,1179648,0 -r2538,271:36151628,1915420:16384,1179648,0 -) -k2538,1:62087500,1915420:25935872 -g2538,1:62087500,1915420 -) -] -) -g2538,1:36675916,2439708 -(2538,1:36675916,2439708:1179648,16384,0 -r2538,271:37855564,2439708:1179648,16384,0 -) -) -k2538,271:3078556,2439708:-34777008 -) -] -[2538,271:3078558,4812305:0,0,0 -(2538,271:3078558,49800853:0,16384,2228224 -k2538,271:1358238,49800853:-1720320 -(2538,1:1358238,49800853:1720320,16384,2228224 -(2538,1:1358238,49800853:1179648,16384,0 -r2538,271:2537886,49800853:1179648,16384,0 -) -g2538,1:3062174,49800853 -(2538,1:3062174,52029077:16384,1703936,0 -[2538,1:3062174,52029077:25952256,1703936,0 -(2538,1:3062174,51504789:25952256,1179648,0 -(2538,1:3062174,51504789:16384,1179648,0 -r2538,271:3078558,51504789:16384,1179648,0 -) -k2538,1:29014430,51504789:25935872 -g2538,1:29014430,51504789 -) -] -) -) -) -] -[2538,271:3078558,4812305:0,0,0 -(2538,271:3078558,49800853:0,16384,2228224 -g2538,271:29030814,49800853 -g2538,271:36135244,49800853 -(2538,1:36135244,49800853:1720320,16384,2228224 -(2538,1:36135244,52029077:16384,1703936,0 -[2538,1:36135244,52029077:25952256,1703936,0 -(2538,1:36135244,51504789:25952256,1179648,0 -(2538,1:36135244,51504789:16384,1179648,0 -r2538,271:36151628,51504789:16384,1179648,0 -) -k2538,1:62087500,51504789:25935872 -g2538,1:62087500,51504789 -) -] -) -g2538,1:36675916,49800853 -(2538,1:36675916,49800853:1179648,16384,0 -r2538,271:37855564,49800853:1179648,16384,0 -) -) -k2538,271:3078556,49800853:-34777008 -) -] -g2538,271:6630773,4812305 -g2538,271:6630773,4812305 -g2538,271:8528695,4812305 -g2538,271:9343962,4812305 -g2538,271:9957379,4812305 -g2538,271:12215094,4812305 -g2538,271:13170608,4812305 -g2538,271:16094824,4812305 -k2538,271:31387652,4812305:15292828 -) -) -] -[2538,271:6630773,45706769:25952256,40108032,0 -(2538,271:6630773,45706769:25952256,40108032,0 -(2538,271:6630773,45706769:0,0,0 -g2538,271:6630773,45706769 -) -[2538,271:6630773,45706769:25952256,40108032,0 -(2538,271:6630773,45706769:25952256,40108032,126483 -[2538,271:6630773,45706769:11829248,40108032,126483 -(2538,177:6630773,6254097:11829248,505283,134348 -h2538,176:6630773,6254097:0,0,0 -r2538,176:6630773,6254097:0,639631,134348 -g2538,176:7941493,6254097 -g2538,176:7941493,6254097 -g2538,176:12661395,6254097 -g2538,176:14229671,6254097 -g2538,176:15797947,6254097 -k2538,176:18460021,6254097:1293027 -) -(2538,177:9252213,7095585:9207808,485622,102891 -g2538,176:10820489,7095585 -g2538,176:12388765,7095585 -k2538,177:16022082,7095585:2437940 -k2538,177:18460021,7095585:2437939 -) -(2538,178:6630773,7954793:11829248,505283,134348 -h2538,177:6630773,7954793:0,0,0 -r2538,177:6630773,7954793:0,639631,134348 -g2538,177:7941493,7954793 -g2538,177:7941493,7954793 -g2538,177:14637306,7954793 -k2538,178:17146352,7954793:1313669 -k2538,178:18460021,7954793:1313669 -) -(2538,179:6630773,8814000:11829248,505283,134348 -h2538,178:6630773,8814000:0,0,0 -r2538,178:6630773,8814000:0,639631,134348 -g2538,178:7941493,8814000 -g2538,178:7941493,8814000 -g2538,178:12661395,8814000 -k2538,179:16158397,8814000:2301625 -k2538,179:18460021,8814000:2301624 -) -(2538,180:6630773,9673208:11829248,505283,134348 -h2538,179:6630773,9673208:0,0,0 -r2538,179:6630773,9673208:0,639631,134348 -g2538,179:7941493,9673208 -g2538,179:7941493,9673208 -g2538,179:12661395,9673208 -g2538,179:14229671,9673208 -k2538,180:16942535,9673208:1517487 -k2538,180:18460021,9673208:1517486 -) -(2538,181:6630773,10532415:11829248,505283,134348 -h2538,180:6630773,10532415:0,0,0 -r2538,180:6630773,10532415:0,639631,134348 -g2538,180:7941493,10532415 -g2538,180:7941493,10532415 -g2538,180:14242123,10532415 -k2538,181:16948761,10532415:1511261 -k2538,181:18460021,10532415:1511260 -) -(2538,182:6630773,11391623:11829248,505283,134348 -h2538,181:6630773,11391623:0,0,0 -r2538,181:6630773,11391623:0,639631,134348 -g2538,181:7941493,11391623 -g2538,181:7941493,11391623 -g2538,181:12266213,11391623 -g2538,181:13834489,11391623 -k2538,182:16744944,11391623:1715078 -k2538,182:18460021,11391623:1715077 -) -(2538,184:6630773,12250831:11829248,505283,134348 -h2538,182:6630773,12250831:0,0,0 -r2538,182:6630773,12250831:0,639631,134348 -g2538,182:7941493,12250831 -g2538,182:7941493,12250831 -g2538,182:13056577,12250831 -g2538,182:14624853,12250831 -g2538,182:16193129,12250831 -k2538,182:18460021,12250831:897845 -) -(2538,184:9252213,13092319:9207808,485622,102891 -g2538,182:10820489,13092319 -g2538,182:12388765,13092319 -g2538,182:13957041,13092319 -k2538,184:16806220,13092319:1653802 -k2538,184:18460021,13092319:1653801 -) -(2538,185:6630773,13951526:11829248,505283,134348 -h2538,184:6630773,13951526:0,0,0 -r2538,184:6630773,13951526:0,639631,134348 -g2538,184:7941493,13951526 -g2538,184:7941493,13951526 -g2538,184:15032488,13951526 -g2538,184:16600764,13951526 -k2538,184:18460021,13951526:490210 -) -(2538,185:9252213,14793014:9207808,485622,11795 -k2538,185:14453806,14793014:4006216 -k2538,185:18460021,14793014:4006215 -) -(2538,186:6630773,15652222:11829248,505283,134348 -h2538,185:6630773,15652222:0,0,0 -r2538,185:6630773,15652222:0,639631,134348 -g2538,185:7941493,15652222 -g2538,185:7941493,15652222 -g2538,185:13056577,15652222 -k2538,186:16355988,15652222:2104034 -k2538,186:18460021,15652222:2104033 -) -(2538,187:6630773,16511430:11829248,505283,134348 -h2538,186:6630773,16511430:0,0,0 -r2538,186:6630773,16511430:0,639631,134348 -g2538,186:7941493,16511430 -g2538,186:7941493,16511430 -g2538,186:13056577,16511430 -k2538,187:16355988,16511430:2104034 -k2538,187:18460021,16511430:2104033 -) -(2538,188:6630773,17370637:11829248,505283,134348 -h2538,187:6630773,17370637:0,0,0 -r2538,187:6630773,17370637:0,639631,134348 -g2538,187:7941493,17370637 -g2538,187:7941493,17370637 -g2538,187:12661395,17370637 -k2538,188:16158397,17370637:2301625 -k2538,188:18460021,17370637:2301624 -) -(2538,189:6630773,18229845:11829248,505283,134348 -h2538,188:6630773,18229845:0,0,0 -r2538,188:6630773,18229845:0,639631,134348 -g2538,188:7941493,18229845 -g2538,188:7941493,18229845 -g2538,188:12661395,18229845 -k2538,189:16158397,18229845:2301625 -k2538,189:18460021,18229845:2301624 -) -(2538,190:6630773,19089052:11829248,505283,134348 -h2538,189:6630773,19089052:0,0,0 -r2538,189:6630773,19089052:0,639631,134348 -g2538,189:7941493,19089052 -g2538,189:7941493,19089052 -g2538,189:12266213,19089052 -k2538,190:15960806,19089052:2499216 -k2538,190:18460021,19089052:2499215 -) -(2538,191:6630773,19948260:11829248,505283,134348 -h2538,190:6630773,19948260:0,0,0 -r2538,190:6630773,19948260:0,639631,134348 -g2538,190:7941493,19948260 -g2538,190:7941493,19948260 -g2538,190:13846941,19948260 -g2538,190:15415217,19948260 -k2538,191:17535308,19948260:924714 -k2538,191:18460021,19948260:924713 -) -(2538,192:6630773,20807468:11829248,513147,134348 -h2538,191:6630773,20807468:0,0,0 -r2538,191:6630773,20807468:0,647495,134348 -g2538,191:7941493,20807468 -g2538,191:7941493,20807468 -g2538,191:11871031,20807468 -k2538,192:15763215,20807468:2696807 -k2538,192:18460021,20807468:2696806 -) -(2538,193:6630773,21666675:11829248,513147,134348 -h2538,192:6630773,21666675:0,0,0 -r2538,192:6630773,21666675:0,647495,134348 -g2538,192:7941493,21666675 -g2538,192:7941493,21666675 -g2538,192:14242123,21666675 -k2538,193:16948761,21666675:1511261 -k2538,193:18460021,21666675:1511260 -) -(2538,194:6630773,22525883:11829248,513147,134348 -h2538,193:6630773,22525883:0,0,0 -r2538,193:6630773,22525883:0,647495,134348 -g2538,193:7941493,22525883 -g2538,193:7941493,22525883 -g2538,193:13846941,22525883 -k2538,194:16751170,22525883:1708852 -k2538,194:18460021,22525883:1708851 -) -(2538,195:6630773,23385091:11829248,505283,134348 -h2538,194:6630773,23385091:0,0,0 -r2538,194:6630773,23385091:0,639631,134348 -g2538,194:7941493,23385091 -g2538,194:7941493,23385091 -g2538,194:13451759,23385091 -k2538,195:16553579,23385091:1906443 -k2538,195:18460021,23385091:1906442 -) -(2538,196:6630773,24244298:11829248,505283,134348 -h2538,195:6630773,24244298:0,0,0 -r2538,195:6630773,24244298:0,639631,134348 -g2538,195:7941493,24244298 -g2538,195:7941493,24244298 -g2538,195:13056577,24244298 -k2538,196:16355988,24244298:2104034 -k2538,196:18460021,24244298:2104033 -) -(2538,197:6630773,25103506:11829248,505283,134348 -h2538,196:6630773,25103506:0,0,0 -r2538,196:6630773,25103506:0,639631,134348 -g2538,196:7941493,25103506 -g2538,196:7941493,25103506 -g2538,196:12661395,25103506 -k2538,197:16158397,25103506:2301625 -k2538,197:18460021,25103506:2301624 -) -(2538,198:6630773,25962713:11829248,505283,134348 -h2538,197:6630773,25962713:0,0,0 -r2538,197:6630773,25962713:0,639631,134348 -g2538,197:7941493,25962713 -g2538,197:7941493,25962713 -g2538,197:12266213,25962713 -k2538,198:15960806,25962713:2499216 -k2538,198:18460021,25962713:2499215 -) -(2538,199:6630773,26821921:11829248,505283,134348 -h2538,198:6630773,26821921:0,0,0 -r2538,198:6630773,26821921:0,639631,134348 -g2538,198:7941493,26821921 -g2538,198:7941493,26821921 -g2538,198:13056577,26821921 -g2538,198:14624853,26821921 -k2538,199:17140126,26821921:1319896 -k2538,199:18460021,26821921:1319895 -) -(2538,200:6630773,27681129:11829248,505283,134348 -h2538,199:6630773,27681129:0,0,0 -r2538,199:6630773,27681129:0,639631,134348 -g2538,199:7941493,27681129 -g2538,199:7941493,27681129 -g2538,199:14637306,27681129 -k2538,200:17146352,27681129:1313669 -k2538,200:18460021,27681129:1313669 -) -(2538,201:6630773,28540336:11829248,485622,134348 -h2538,200:6630773,28540336:0,0,0 -r2538,200:6630773,28540336:0,619970,134348 -g2538,200:7941493,28540336 -g2538,200:7941493,28540336 -g2538,200:11871031,28540336 -g2538,200:13439307,28540336 -g2538,200:15007583,28540336 -k2538,201:17331491,28540336:1128531 -k2538,201:18460021,28540336:1128530 -) -(2538,202:6630773,29399544:11829248,505283,134348 -h2538,201:6630773,29399544:0,0,0 -r2538,201:6630773,29399544:0,639631,134348 -g2538,201:7941493,29399544 -g2538,201:7941493,29399544 -g2538,201:12661395,29399544 -g2538,201:14229671,29399544 -k2538,201:18460021,29399544:1338246 -) -(2538,202:9252213,30241032:9207808,485622,102891 -g2538,201:10820489,30241032 -k2538,202:15237944,30241032:3222078 -k2538,202:18460021,30241032:3222077 -) -(2538,203:6630773,31100239:11829248,505283,134348 -h2538,202:6630773,31100239:0,0,0 -r2538,202:6630773,31100239:0,639631,134348 -g2538,202:7941493,31100239 -g2538,202:7941493,31100239 -g2538,202:14242123,31100239 -k2538,203:16948761,31100239:1511261 -k2538,203:18460021,31100239:1511260 -) -(2538,204:6630773,31959447:11829248,505283,134348 -h2538,203:6630773,31959447:0,0,0 -r2538,203:6630773,31959447:0,639631,134348 -g2538,203:7941493,31959447 -g2538,203:7941493,31959447 -g2538,203:15032488,31959447 -k2538,204:17343943,31959447:1116078 -k2538,204:18460021,31959447:1116078 -) -(2538,205:6630773,32818655:11829248,505283,134348 -h2538,204:6630773,32818655:0,0,0 -r2538,204:6630773,32818655:0,639631,134348 -g2538,204:7941493,32818655 -g2538,204:7941493,32818655 -g2538,204:12661395,32818655 -k2538,205:16919925,32818655:1540097 -k2538,205:18460021,32818655:1540096 -) -(2538,206:6630773,33677862:11829248,505283,134348 -h2538,205:6630773,33677862:0,0,0 -r2538,205:6630773,33677862:0,639631,134348 -g2538,205:7941493,33677862 -g2538,205:7941493,33677862 -g2538,205:13451759,33677862 -k2538,206:16553579,33677862:1906443 -k2538,206:18460021,33677862:1906442 -) -(2538,207:6630773,34537070:11829248,505283,134348 -h2538,206:6630773,34537070:0,0,0 -r2538,206:6630773,34537070:0,639631,134348 -g2538,206:7941493,34537070 -g2538,206:7941493,34537070 -g2538,206:12266213,34537070 -k2538,207:15960806,34537070:2499216 -k2538,207:18460021,34537070:2499215 -) -(2538,208:6630773,35396278:11829248,505283,134348 -h2538,207:6630773,35396278:0,0,0 -r2538,207:6630773,35396278:0,639631,134348 -g2538,207:7941493,35396278 -g2538,207:7941493,35396278 -g2538,207:13056577,35396278 -g2538,207:14624853,35396278 -k2538,208:17140126,35396278:1319896 -k2538,208:18460021,35396278:1319895 -) -(2538,209:6630773,36255485:11829248,505283,134348 -h2538,208:6630773,36255485:0,0,0 -r2538,208:6630773,36255485:0,639631,134348 -g2538,208:7941493,36255485 -g2538,208:7941493,36255485 -g2538,208:10290302,36255485 -g2538,208:11858578,36255485 -k2538,209:15756988,36255485:2703033 -k2538,209:18460021,36255485:2703033 -) -(2538,210:6630773,37114693:11829248,505283,134348 -h2538,209:6630773,37114693:0,0,0 -r2538,209:6630773,37114693:0,639631,134348 -g2538,209:7941493,37114693 -g2538,209:7941493,37114693 -g2538,209:11080667,37114693 -k2538,210:15368033,37114693:3091989 -k2538,210:18460021,37114693:3091988 -) -(2538,211:6630773,37973900:11829248,505283,134348 -h2538,210:6630773,37973900:0,0,0 -r2538,210:6630773,37973900:0,639631,134348 -g2538,210:7941493,37973900 -g2538,210:7941493,37973900 -g2538,210:11475849,37973900 -g2538,210:12645666,37973900 -g2538,210:14213942,37973900 -k2538,211:16934670,37973900:1525351 -k2538,211:18460021,37973900:1525351 -) -(2538,212:6630773,38833108:11829248,505283,134348 -h2538,211:6630773,38833108:0,0,0 -r2538,211:6630773,38833108:0,639631,134348 -g2538,211:7941493,38833108 -g2538,211:7941493,38833108 -g2538,211:13056577,38833108 -k2538,212:16355988,38833108:2104034 -k2538,212:18460021,38833108:2104033 -) -(2538,213:6630773,39692316:11829248,505283,134348 -h2538,212:6630773,39692316:0,0,0 -r2538,212:6630773,39692316:0,639631,134348 -g2538,212:7941493,39692316 -g2538,212:7941493,39692316 -g2538,212:11871031,39692316 -k2538,213:15763215,39692316:2696807 -k2538,213:18460021,39692316:2696806 -) -(2538,214:6630773,40551523:11829248,505283,134348 -h2538,213:6630773,40551523:0,0,0 -r2538,213:6630773,40551523:0,639631,134348 -g2538,213:7941493,40551523 -g2538,213:7941493,40551523 -g2538,213:9895120,40551523 -k2538,214:14576030,40551523:3883992 -k2538,214:18460021,40551523:3883991 -) -(2538,215:6630773,41410731:11829248,505283,134348 -h2538,214:6630773,41410731:0,0,0 -r2538,214:6630773,41410731:0,639631,134348 -g2538,214:7941493,41410731 -g2538,214:7941493,41410731 -g2538,214:10290302,41410731 -k2538,215:14972850,41410731:3487171 -k2538,215:18460021,41410731:3487171 -) -(2538,216:6630773,42269939:11829248,505283,134348 -h2538,215:6630773,42269939:0,0,0 -r2538,215:6630773,42269939:0,639631,134348 -g2538,215:7941493,42269939 -g2538,215:7941493,42269939 -g2538,215:12266213,42269939 -g2538,215:13834489,42269939 -k2538,216:16744944,42269939:1715078 -k2538,216:18460021,42269939:1715077 -) -(2538,217:6630773,43129146:11829248,505283,102891 -h2538,216:6630773,43129146:0,0,0 -r2538,216:6630773,43129146:0,608174,102891 -g2538,216:7941493,43129146 -g2538,216:7941493,43129146 -g2538,216:10290302,43129146 -k2538,217:14972850,43129146:3487171 -k2538,217:18460021,43129146:3487171 -) -(2538,218:6630773,43988354:11829248,505283,102891 -h2538,217:6630773,43988354:0,0,0 -r2538,217:6630773,43988354:0,608174,102891 -g2538,217:7941493,43988354 -g2538,217:7941493,43988354 -g2538,217:11475849,43988354 -g2538,217:13044125,43988354 -k2538,218:16349762,43988354:2110260 -k2538,218:18460021,43988354:2110259 -) -(2538,219:6630773,44847561:11829248,505283,102891 -h2538,218:6630773,44847561:0,0,0 -r2538,218:6630773,44847561:0,608174,102891 -g2538,218:7941493,44847561 -g2538,218:7941493,44847561 -g2538,218:10685485,44847561 -g2538,218:11855302,44847561 -k2538,219:15556121,44847561:2903901 -k2538,219:18460021,44847561:2903900 -) -(2538,220:6630773,45706769:11829248,505283,126483 -h2538,219:6630773,45706769:0,0,0 -r2538,219:6630773,45706769:0,631766,126483 -g2538,219:7941493,45706769 -g2538,219:7941493,45706769 -g2538,219:10685485,45706769 -k2538,220:14971212,45706769:3488809 -k2538,220:18460021,45706769:3488809 -) -] -k2538,271:19606901,45706769:1146880 -r2538,271:19606901,45706769:0,40234515,126483 -k2538,271:20753781,45706769:1146880 -[2538,271:20753781,45706769:11829248,40108032,102891 -(2538,221:20753781,6254097:11829248,505283,102891 -h2538,220:20753781,6254097:0,0,0 -r2538,220:20753781,6254097:0,608174,102891 -g2538,220:22064501,6254097 -g2538,220:22064501,6254097 -g2538,220:23622946,6254097 -g2538,220:25191222,6254097 -k2538,221:29484814,6254097:3098215 -k2538,221:32583029,6254097:3098215 -) -(2538,222:20753781,7111764:11829248,505283,102891 -h2538,221:20753781,7111764:0,0,0 -r2538,221:20753781,7111764:0,608174,102891 -g2538,221:22064501,7111764 -g2538,221:22064501,7111764 -g2538,221:26784403,7111764 -k2538,222:30281405,7111764:2301625 -k2538,222:32583029,7111764:2301624 -) -(2538,223:20753781,7969431:11829248,505283,102891 -h2538,222:20753781,7969431:0,0,0 -r2538,222:20753781,7969431:0,608174,102891 -g2538,222:22064501,7969431 -g2538,222:22064501,7969431 -g2538,222:26389221,7969431 -g2538,222:27559038,7969431 -k2538,223:30668722,7969431:1914307 -k2538,223:32583029,7969431:1914307 -) -(2538,224:20753781,8827097:11829248,505283,134348 -h2538,223:20753781,8827097:0,0,0 -r2538,223:20753781,8827097:0,639631,134348 -g2538,223:22064501,8827097 -g2538,223:22064501,8827097 -g2538,223:27179585,8827097 -k2538,224:30478996,8827097:2104034 -k2538,224:32583029,8827097:2104033 -) -(2538,225:20753781,9684764:11829248,505283,134348 -h2538,224:20753781,9684764:0,0,0 -r2538,224:20753781,9684764:0,639631,134348 -g2538,224:22064501,9684764 -g2538,224:22064501,9684764 -g2538,224:29550678,9684764 -k2538,225:31664542,9684764:918487 -k2538,225:32583029,9684764:918487 -) -(2538,226:20753781,10542431:11829248,505283,126483 -h2538,225:20753781,10542431:0,0,0 -r2538,225:20753781,10542431:0,631766,126483 -g2538,225:22064501,10542431 -g2538,225:22064501,10542431 -g2538,225:26389221,10542431 -k2538,226:29884584,10542431:2698445 -k2538,226:32583029,10542431:2698445 -) -(2538,227:20753781,11400098:11829248,505283,102891 -h2538,226:20753781,11400098:0,0,0 -r2538,226:20753781,11400098:0,608174,102891 -g2538,226:22064501,11400098 -g2538,226:22064501,11400098 -g2538,226:27969949,11400098 -k2538,227:30674948,11400098:1908081 -k2538,227:32583029,11400098:1908081 -) -(2538,228:20753781,12257764:11829248,505283,134348 -h2538,227:20753781,12257764:0,0,0 -r2538,227:20753781,12257764:0,639631,134348 -g2538,227:22064501,12257764 -g2538,227:22064501,12257764 -g2538,227:27179585,12257764 -k2538,228:30279766,12257764:2303263 -k2538,228:32583029,12257764:2303263 -) -(2538,229:20753781,13115431:11829248,505283,102891 -h2538,228:20753781,13115431:0,0,0 -r2538,228:20753781,13115431:0,608174,102891 -g2538,228:22064501,13115431 -g2538,228:22064501,13115431 -g2538,228:26784403,13115431 -k2538,229:30082175,13115431:2500854 -k2538,229:32583029,13115431:2500854 -) -(2538,230:20753781,13973098:11829248,505283,102891 -h2538,229:20753781,13973098:0,0,0 -r2538,229:20753781,13973098:0,608174,102891 -g2538,229:22064501,13973098 -g2538,229:22064501,13973098 -g2538,229:25203675,13973098 -k2538,230:29291811,13973098:3291218 -k2538,230:32583029,13973098:3291218 -) -(2538,231:20753781,14830765:11829248,505283,102891 -h2538,230:20753781,14830765:0,0,0 -r2538,230:20753781,14830765:0,608174,102891 -g2538,230:22064501,14830765 -g2538,230:22064501,14830765 -g2538,230:27179585,14830765 -g2538,230:28349402,14830765 -k2538,231:30864675,14830765:1718355 -k2538,231:32583029,14830765:1718354 -) -(2538,232:20753781,15688432:11829248,505283,102891 -h2538,231:20753781,15688432:0,0,0 -r2538,231:20753781,15688432:0,608174,102891 -g2538,231:22064501,15688432 -g2538,231:22064501,15688432 -g2538,231:26784403,15688432 -k2538,232:30082175,15688432:2500854 -k2538,232:32583029,15688432:2500854 -) -(2538,233:20753781,16546098:11829248,505283,102891 -h2538,232:20753781,16546098:0,0,0 -r2538,232:20753781,16546098:0,608174,102891 -g2538,232:22064501,16546098 -g2538,232:22064501,16546098 -g2538,232:26784403,16546098 -k2538,233:30281405,16546098:2301625 -k2538,233:32583029,16546098:2301624 -) -(2538,234:20753781,17403765:11829248,505283,102891 -h2538,233:20753781,17403765:0,0,0 -r2538,233:20753781,17403765:0,608174,102891 -g2538,233:22064501,17403765 -g2538,233:22064501,17403765 -g2538,233:25598857,17403765 -k2538,234:29688632,17403765:2894398 -k2538,234:32583029,17403765:2894397 -) -(2538,235:20753781,18261432:11829248,505283,126483 -h2538,234:20753781,18261432:0,0,0 -r2538,234:20753781,18261432:0,631766,126483 -g2538,234:22064501,18261432 -g2538,234:22064501,18261432 -g2538,234:27969949,18261432 -k2538,235:30874178,18261432:1708852 -k2538,235:32583029,18261432:1708851 -) -(2538,236:20753781,19119099:11829248,505283,102891 -h2538,235:20753781,19119099:0,0,0 -r2538,235:20753781,19119099:0,608174,102891 -g2538,235:22064501,19119099 -g2538,235:22064501,19119099 -g2538,235:24808493,19119099 -g2538,235:26376769,19119099 -k2538,236:30077588,19119099:2505442 -k2538,236:32583029,19119099:2505441 -) -(2538,237:20753781,19976766:11829248,513147,134348 -h2538,236:20753781,19976766:0,0,0 -r2538,236:20753781,19976766:0,647495,134348 -g2538,236:22064501,19976766 -g2538,236:22064501,19976766 -g2538,236:26784403,19976766 -k2538,237:30281405,19976766:2301625 -k2538,237:32583029,19976766:2301624 -) -(2538,238:20753781,20834432:11829248,505283,134348 -h2538,237:20753781,20834432:0,0,0 -r2538,237:20753781,20834432:0,639631,134348 -g2538,237:22064501,20834432 -g2538,237:22064501,20834432 -g2538,237:25598857,20834432 -g2538,237:26768674,20834432 -g2538,237:27938491,20834432 -g2538,237:29108308,20834432 -g2538,237:30278125,20834432 -k2538,238:32028266,20834432:554764 -k2538,238:32583029,20834432:554763 -) -(2538,239:20753781,21692099:11829248,505283,102891 -h2538,238:20753781,21692099:0,0,0 -r2538,238:20753781,21692099:0,608174,102891 -g2538,238:22064501,21692099 -g2538,238:22064501,21692099 -g2538,238:25598857,21692099 -g2538,238:26768674,21692099 -g2538,238:27938491,21692099 -k2538,239:30659219,21692099:1923810 -k2538,239:32583029,21692099:1923810 -) -(2538,240:20753781,22549766:11829248,505283,102891 -h2538,239:20753781,22549766:0,0,0 -r2538,239:20753781,22549766:0,608174,102891 -g2538,239:22064501,22549766 -g2538,239:22064501,22549766 -g2538,239:26389221,22549766 -g2538,239:27559038,22549766 -k2538,240:30469493,22549766:2113537 -k2538,240:32583029,22549766:2113536 -) -(2538,241:20753781,23407433:11829248,505283,126483 -h2538,240:20753781,23407433:0,0,0 -r2538,240:20753781,23407433:0,631766,126483 -g2538,240:22064501,23407433 -g2538,240:22064501,23407433 -g2538,240:25994039,23407433 -k2538,241:29886223,23407433:2696807 -k2538,241:32583029,23407433:2696806 -) -(2538,242:20753781,24265099:11829248,505283,102891 -h2538,241:20753781,24265099:0,0,0 -r2538,241:20753781,24265099:0,608174,102891 -g2538,241:22064501,24265099 -g2538,241:22064501,24265099 -g2538,241:24808493,24265099 -k2538,242:29094220,24265099:3488809 -k2538,242:32583029,24265099:3488809 -) -(2538,243:20753781,25122766:11829248,505283,102891 -h2538,242:20753781,25122766:0,0,0 -r2538,242:20753781,25122766:0,608174,102891 -g2538,242:22064501,25122766 -g2538,242:22064501,25122766 -g2538,242:26784403,25122766 -k2538,243:30281405,25122766:2301625 -k2538,243:32583029,25122766:2301624 -) -(2538,244:20753781,25980433:11829248,513147,102891 -h2538,243:20753781,25980433:0,0,0 -r2538,243:20753781,25980433:0,616038,102891 -g2538,243:22064501,25980433 -g2538,243:22064501,25980433 -g2538,243:27179585,25980433 -k2538,244:30478996,25980433:2104034 -k2538,244:32583029,25980433:2104033 -) -(2538,245:20753781,26838100:11829248,505283,102891 -h2538,244:20753781,26838100:0,0,0 -r2538,244:20753781,26838100:0,608174,102891 -k2538,244:22064501,26838100:1310720 -k2538,244:22064501,26838100:0 -k2538,244:24005895,26838100:186996 -k2538,244:25163479,26838100:186996 -k2538,244:26719522,26838100:186996 -k2538,244:28275566,26838100:186997 -k2538,244:29831609,26838100:186996 -k2538,244:31387652,26838100:186996 -k2538,245:32583029,26838100:0 -k2538,245:32583029,26838100:0 -) -(2538,246:20753781,27695767:11829248,505283,102891 -h2538,245:20753781,27695767:0,0,0 -r2538,245:20753781,27695767:0,608174,102891 -g2538,245:22064501,27695767 -g2538,245:22064501,27695767 -g2538,245:24808493,27695767 -k2538,246:29094220,27695767:3488809 -k2538,246:32583029,27695767:3488809 -) -(2538,247:20753781,28553433:11829248,505283,134348 -h2538,246:20753781,28553433:0,0,0 -r2538,246:20753781,28553433:0,639631,134348 -g2538,246:22064501,28553433 -g2538,246:22064501,28553433 -g2538,246:24413310,28553433 -k2538,247:29095858,28553433:3487171 -k2538,247:32583029,28553433:3487171 -) -(2538,248:20753781,29411100:11829248,505283,134348 -h2538,247:20753781,29411100:0,0,0 -r2538,247:20753781,29411100:0,639631,134348 -g2538,247:22064501,29411100 -g2538,247:22064501,29411100 -g2538,247:24830776,29411100 -g2538,247:28387415,29411100 -g2538,247:31131407,29411100 -k2538,248:32255677,29411100:327352 -k2538,248:32583029,29411100:327352 -) -(2538,249:20753781,30268767:11829248,505283,102891 -h2538,248:20753781,30268767:0,0,0 -r2538,248:20753781,30268767:0,608174,102891 -g2538,248:22064501,30268767 -g2538,248:22064501,30268767 -g2538,248:24018128,30268767 -g2538,248:25187945,30268767 -k2538,249:29283946,30268767:3299083 -k2538,249:32583029,30268767:3299083 -) -(2538,250:20753781,31126434:11829248,505283,102891 -h2538,249:20753781,31126434:0,0,0 -r2538,249:20753781,31126434:0,608174,102891 -g2538,249:22064501,31126434 -g2538,249:22064501,31126434 -g2538,249:24413310,31126434 -k2538,250:29095858,31126434:3487171 -k2538,250:32583029,31126434:3487171 -) -(2538,251:20753781,31984100:11829248,505283,102891 -h2538,250:20753781,31984100:0,0,0 -r2538,250:20753781,31984100:0,608174,102891 -g2538,250:22064501,31984100 -g2538,250:22064501,31984100 -g2538,250:25598857,31984100 -k2538,251:29688632,31984100:2894398 -k2538,251:32583029,31984100:2894397 -) -(2538,252:20753781,32841767:11829248,505283,102891 -h2538,251:20753781,32841767:0,0,0 -r2538,251:20753781,32841767:0,608174,102891 -g2538,251:22064501,32841767 -g2538,251:22064501,32841767 -g2538,251:25994039,32841767 -k2538,252:29886223,32841767:2696807 -k2538,252:32583029,32841767:2696806 -) -(2538,253:20753781,33699434:11829248,505283,102891 -h2538,252:20753781,33699434:0,0,0 -r2538,252:20753781,33699434:0,608174,102891 -g2538,252:22064501,33699434 -g2538,252:22064501,33699434 -g2538,252:25598857,33699434 -g2538,252:26768674,33699434 -g2538,252:27938491,33699434 -k2538,253:30858449,33699434:1724581 -k2538,253:32583029,33699434:1724580 -) -(2538,254:20753781,34557101:11829248,505283,102891 -h2538,253:20753781,34557101:0,0,0 -r2538,253:20753781,34557101:0,608174,102891 -g2538,253:22064501,34557101 -g2538,253:22064501,34557101 -g2538,253:24413310,34557101 -k2538,254:29095858,34557101:3487171 -k2538,254:32583029,34557101:3487171 -) -(2538,255:20753781,35414768:11829248,505283,102891 -h2538,254:20753781,35414768:0,0,0 -r2538,254:20753781,35414768:0,608174,102891 -g2538,254:22064501,35414768 -g2538,254:22064501,35414768 -g2538,254:24808493,35414768 -g2538,254:26376769,35414768 -k2538,255:30077588,35414768:2505442 -k2538,255:32583029,35414768:2505441 -) -(2538,256:20753781,36272434:11829248,505283,102891 -h2538,255:20753781,36272434:0,0,0 -r2538,255:20753781,36272434:0,608174,102891 -g2538,255:22064501,36272434 -g2538,255:22064501,36272434 -g2538,255:25598857,36272434 -k2538,256:29688632,36272434:2894398 -k2538,256:32583029,36272434:2894397 -) -(2538,257:20753781,37130101:11829248,505283,102891 -h2538,256:20753781,37130101:0,0,0 -r2538,256:20753781,37130101:0,608174,102891 -g2538,256:22064501,37130101 -g2538,256:22064501,37130101 -g2538,256:25994039,37130101 -k2538,257:29886223,37130101:2696807 -k2538,257:32583029,37130101:2696806 -) -(2538,258:20753781,37987768:11829248,505283,134348 -h2538,257:20753781,37987768:0,0,0 -r2538,257:20753781,37987768:0,639631,134348 -g2538,257:22064501,37987768 -g2538,257:22064501,37987768 -g2538,257:24808493,37987768 -k2538,258:29293450,37987768:3289580 -k2538,258:32583029,37987768:3289579 -) -(2538,259:20753781,38845435:11829248,505283,102891 -h2538,258:20753781,38845435:0,0,0 -r2538,258:20753781,38845435:0,608174,102891 -g2538,258:22064501,38845435 -g2538,258:22064501,38845435 -g2538,258:24413310,38845435 -k2538,259:29095858,38845435:3487171 -k2538,259:32583029,38845435:3487171 -) -(2538,260:20753781,39703102:11829248,505283,102891 -h2538,259:20753781,39703102:0,0,0 -r2538,259:20753781,39703102:0,608174,102891 -g2538,259:22064501,39703102 -g2538,259:22064501,39703102 -g2538,259:24808493,39703102 -g2538,259:25978310,39703102 -g2538,259:27546586,39703102 -k2538,260:30662496,39703102:1920533 -k2538,260:32583029,39703102:1920533 -) -(2538,261:20753781,40560768:11829248,505283,102891 -h2538,260:20753781,40560768:0,0,0 -r2538,260:20753781,40560768:0,608174,102891 -g2538,260:22064501,40560768 -g2538,260:22064501,40560768 -g2538,260:25598857,40560768 -g2538,260:27167133,40560768 -k2538,261:30472770,40560768:2110260 -k2538,261:32583029,40560768:2110259 -) -(2538,262:20753781,41418435:11829248,505283,126483 -h2538,261:20753781,41418435:0,0,0 -r2538,261:20753781,41418435:0,631766,126483 -g2538,261:22064501,41418435 -g2538,261:22064501,41418435 -g2538,261:26389221,41418435 -k2538,262:30083814,41418435:2499216 -k2538,262:32583029,41418435:2499215 -) -(2538,263:20753781,42276102:11829248,505283,102891 -h2538,262:20753781,42276102:0,0,0 -r2538,262:20753781,42276102:0,608174,102891 -g2538,262:22064501,42276102 -g2538,262:22064501,42276102 -g2538,262:25203675,42276102 -g2538,262:26373492,42276102 -g2538,262:27543309,42276102 -g2538,262:29111585,42276102 -k2538,263:31444996,42276102:1138034 -k2538,263:32583029,42276102:1138033 -) -(2538,264:20753781,43133769:11829248,505283,102891 -h2538,263:20753781,43133769:0,0,0 -r2538,263:20753781,43133769:0,608174,102891 -g2538,263:22064501,43133769 -g2538,263:22064501,43133769 -g2538,263:25994039,43133769 -k2538,264:29686993,43133769:2896036 -k2538,264:32583029,43133769:2896036 -) -(2538,265:20753781,43991435:11829248,505283,102891 -h2538,264:20753781,43991435:0,0,0 -r2538,264:20753781,43991435:0,608174,102891 -g2538,264:22064501,43991435 -g2538,264:22064501,43991435 -g2538,264:25994039,43991435 -k2538,265:29886223,43991435:2696807 -k2538,265:32583029,43991435:2696806 -) -(2538,266:20753781,44849102:11829248,505283,126483 -h2538,265:20753781,44849102:0,0,0 -r2538,265:20753781,44849102:0,631766,126483 -g2538,265:22064501,44849102 -g2538,265:22064501,44849102 -g2538,265:25994039,44849102 -k2538,266:29886223,44849102:2696807 -k2538,266:32583029,44849102:2696806 -) -(2538,267:20753781,45706769:11829248,505283,102891 -h2538,266:20753781,45706769:0,0,0 -r2538,266:20753781,45706769:0,608174,102891 -g2538,266:22064501,45706769 -g2538,266:22064501,45706769 -g2538,266:24808493,45706769 -g2538,266:25978310,45706769 -g2538,266:27148127,45706769 -k2538,267:30463267,45706769:2119763 -k2538,267:32583029,45706769:2119762 -) -] -(2538,271:32583029,45706769:0,355205,126483 -h2538,271:32583029,45706769:420741,355205,126483 -k2538,271:32583029,45706769:-420741 -) -) -] -(2538,271:32583029,45706769:0,0,0 -g2538,271:32583029,45706769 -) -) -] -(2538,271:6630773,47279633:25952256,0,0 -h2538,271:6630773,47279633:25952256,0,0 -) -] -h2538,271:4262630,4025873:0,0,0 -] -!31533 -}350 -!12 -{351 -[2538,356:4262630,47279633:28320399,43253760,0 -(2538,356:4262630,4025873:0,0,0 -[2538,356:-473657,4025873:11829248,0,0 -(2538,356:-473657,-710414:11829248,0,0 -h2538,356:-473657,-710414:0,0,0 -(2538,356:-473657,-710414:0,0,0 -(2538,356:-473657,-710414:0,0,0 -g2538,356:-473657,-710414 -(2538,356:-473657,-710414:65781,0,65781 -g2538,356:-407876,-710414 -[2538,356:-407876,-644633:0,0,0 -] -) -k2538,356:-473657,-710414:-65781 -) -) -k2538,356:11355591,-710414:11829248 -g2538,356:11355591,-710414 -) -] -) -[2538,356:6630773,47279633:25952256,43253760,0 -[2538,356:6630773,4812305:25952256,786432,0 -(2538,356:6630773,4812305:25952256,513147,134348 -(2538,356:6630773,4812305:25952256,513147,134348 -g2538,356:3078558,4812305 -[2538,356:3078558,4812305:0,0,0 -(2538,356:3078558,2439708:0,1703936,0 -k2538,356:1358238,2439708:-1720320 -(2538,1:1358238,2439708:1720320,1703936,0 -(2538,1:1358238,2439708:1179648,16384,0 -r2538,356:2537886,2439708:1179648,16384,0 -) -g2538,1:3062174,2439708 -(2538,1:3062174,2439708:16384,1703936,0 -[2538,1:3062174,2439708:25952256,1703936,0 -(2538,1:3062174,1915420:25952256,1179648,0 -(2538,1:3062174,1915420:16384,1179648,0 -r2538,356:3078558,1915420:16384,1179648,0 -) -k2538,1:29014430,1915420:25935872 -g2538,1:29014430,1915420 -) -] -) -) -) -] -[2538,356:3078558,4812305:0,0,0 -(2538,356:3078558,2439708:0,1703936,0 -g2538,356:29030814,2439708 -g2538,356:36135244,2439708 -(2538,1:36135244,2439708:1720320,1703936,0 -(2538,1:36135244,2439708:16384,1703936,0 -[2538,1:36135244,2439708:25952256,1703936,0 -(2538,1:36135244,1915420:25952256,1179648,0 -(2538,1:36135244,1915420:16384,1179648,0 -r2538,356:36151628,1915420:16384,1179648,0 -) -k2538,1:62087500,1915420:25935872 -g2538,1:62087500,1915420 -) -] -) -g2538,1:36675916,2439708 -(2538,1:36675916,2439708:1179648,16384,0 -r2538,356:37855564,2439708:1179648,16384,0 -) -) -k2538,356:3078556,2439708:-34777008 -) -] -[2538,356:3078558,4812305:0,0,0 -(2538,356:3078558,49800853:0,16384,2228224 -k2538,356:1358238,49800853:-1720320 -(2538,1:1358238,49800853:1720320,16384,2228224 -(2538,1:1358238,49800853:1179648,16384,0 -r2538,356:2537886,49800853:1179648,16384,0 -) -g2538,1:3062174,49800853 -(2538,1:3062174,52029077:16384,1703936,0 -[2538,1:3062174,52029077:25952256,1703936,0 -(2538,1:3062174,51504789:25952256,1179648,0 -(2538,1:3062174,51504789:16384,1179648,0 -r2538,356:3078558,51504789:16384,1179648,0 -) -k2538,1:29014430,51504789:25935872 -g2538,1:29014430,51504789 -) -] -) -) -) -] -[2538,356:3078558,4812305:0,0,0 -(2538,356:3078558,49800853:0,16384,2228224 -g2538,356:29030814,49800853 -g2538,356:36135244,49800853 -(2538,1:36135244,49800853:1720320,16384,2228224 -(2538,1:36135244,52029077:16384,1703936,0 -[2538,1:36135244,52029077:25952256,1703936,0 -(2538,1:36135244,51504789:25952256,1179648,0 -(2538,1:36135244,51504789:16384,1179648,0 -r2538,356:36151628,51504789:16384,1179648,0 -) -k2538,1:62087500,51504789:25935872 -g2538,1:62087500,51504789 -) -] -) -g2538,1:36675916,49800853 -(2538,1:36675916,49800853:1179648,16384,0 -r2538,356:37855564,49800853:1179648,16384,0 -) -) -k2538,356:3078556,49800853:-34777008 -) -] -g2538,356:6630773,4812305 -k2538,356:23318207,4812305:15492057 -g2538,356:25216129,4812305 -g2538,356:26031396,4812305 -g2538,356:26644813,4812305 -g2538,356:28902528,4812305 -g2538,356:29858042,4812305 -) -) -] -[2538,356:6630773,45706769:25952256,40108032,0 -(2538,356:6630773,45706769:25952256,40108032,0 -(2538,356:6630773,45706769:0,0,0 -g2538,356:6630773,45706769 -) -[2538,356:6630773,45706769:25952256,40108032,0 -(2538,356:6630773,45706769:25952256,40108032,134348 -[2538,356:6630773,45706769:11829248,40108032,102891 -(2538,268:6630773,6254097:11829248,505283,134348 -h2538,267:6630773,6254097:0,0,0 -r2538,267:6630773,6254097:0,639631,134348 -g2538,267:7941493,6254097 -g2538,267:7941493,6254097 -g2538,267:12661395,6254097 -k2538,268:16158397,6254097:2301625 -k2538,268:18460021,6254097:2301624 -) -(2538,269:6630773,7112499:11829248,505283,102891 -h2538,268:6630773,7112499:0,0,0 -r2538,268:6630773,7112499:0,608174,102891 -g2538,268:7941493,7112499 -g2538,268:7941493,7112499 -g2538,268:9895120,7112499 -k2538,269:14775259,7112499:3684762 -k2538,269:18460021,7112499:3684762 -) -(2538,270:6630773,7970901:11829248,505283,102891 -h2538,269:6630773,7970901:0,0,0 -r2538,269:6630773,7970901:0,608174,102891 -g2538,269:7941493,7970901 -g2538,269:7941493,7970901 -g2538,269:9499938,7970901 -k2538,270:14577668,7970901:3882353 -k2538,270:18460021,7970901:3882353 -) -(2538,271:6630773,8829304:11829248,505283,102891 -h2538,270:6630773,8829304:0,0,0 -r2538,270:6630773,8829304:0,608174,102891 -g2538,270:7941493,8829304 -g2538,270:7941493,8829304 -g2538,270:10290302,8829304 -k2538,271:14972850,8829304:3487171 -k2538,271:18460021,8829304:3487171 -) -(2538,272:6630773,9687706:11829248,505283,102891 -h2538,271:6630773,9687706:0,0,0 -r2538,271:6630773,9687706:0,608174,102891 -g2538,271:7941493,9687706 -g2538,271:7941493,9687706 -g2538,271:10685485,9687706 -g2538,271:11855302,9687706 -g2538,271:13025119,9687706 -k2538,272:16340259,9687706:2119763 -k2538,272:18460021,9687706:2119762 -) -(2538,273:6630773,10546108:11829248,505283,102891 -h2538,272:6630773,10546108:0,0,0 -r2538,272:6630773,10546108:0,608174,102891 -g2538,272:7941493,10546108 -g2538,272:7941493,10546108 -g2538,272:11871031,10546108 -k2538,273:15563985,10546108:2896036 -k2538,273:18460021,10546108:2896036 -) -(2538,274:6630773,11404510:11829248,505283,102891 -h2538,273:6630773,11404510:0,0,0 -r2538,273:6630773,11404510:0,608174,102891 -g2538,273:7941493,11404510 -g2538,273:7941493,11404510 -g2538,273:11080667,11404510 -g2538,273:12250484,11404510 -g2538,273:13420301,11404510 -g2538,273:14590118,11404510 -g2538,273:15759935,11404510 -k2538,274:17707667,11404510:752355 -k2538,274:18460021,11404510:752354 -) -(2538,275:6630773,12262912:11829248,505283,102891 -h2538,274:6630773,12262912:0,0,0 -r2538,274:6630773,12262912:0,608174,102891 -g2538,274:7941493,12262912 -g2538,274:7941493,12262912 -g2538,274:11871031,12262912 -k2538,275:15563985,12262912:2896036 -k2538,275:18460021,12262912:2896036 -) -(2538,276:6630773,13121314:11829248,505283,126483 -h2538,275:6630773,13121314:0,0,0 -r2538,275:6630773,13121314:0,631766,126483 -g2538,275:7941493,13121314 -g2538,275:7941493,13121314 -g2538,275:11080667,13121314 -g2538,275:12648943,13121314 -k2538,276:16152171,13121314:2307851 -k2538,276:18460021,13121314:2307850 -) -(2538,277:6630773,13979717:11829248,505283,126483 -h2538,276:6630773,13979717:0,0,0 -r2538,276:6630773,13979717:0,631766,126483 -g2538,276:7941493,13979717 -g2538,276:7941493,13979717 -g2538,276:11080667,13979717 -g2538,276:12648943,13979717 -g2538,276:14217219,13979717 -k2538,277:16936309,13979717:1523713 -k2538,277:18460021,13979717:1523712 -) -(2538,278:6630773,14838119:11829248,505283,134348 -h2538,277:6630773,14838119:0,0,0 -r2538,277:6630773,14838119:0,639631,134348 -g2538,277:7941493,14838119 -g2538,277:7941493,14838119 -g2538,277:13846941,14838119 -k2538,278:16751170,14838119:1708852 -k2538,278:18460021,14838119:1708851 -) -(2538,279:6630773,15696521:11829248,505283,126483 -h2538,278:6630773,15696521:0,0,0 -r2538,278:6630773,15696521:0,631766,126483 -g2538,278:7941493,15696521 -g2538,278:7941493,15696521 -g2538,278:13451759,15696521 -k2538,279:16553579,15696521:1906443 -k2538,279:18460021,15696521:1906442 -) -(2538,280:6630773,16554923:11829248,505283,126483 -h2538,279:6630773,16554923:0,0,0 -r2538,279:6630773,16554923:0,631766,126483 -g2538,279:7941493,16554923 -g2538,279:7941493,16554923 -g2538,279:11080667,16554923 -k2538,280:15368033,16554923:3091989 -k2538,280:18460021,16554923:3091988 -) -(2538,281:6630773,17413325:11829248,505283,126483 -h2538,280:6630773,17413325:0,0,0 -r2538,280:6630773,17413325:0,631766,126483 -g2538,280:7941493,17413325 -g2538,280:7941493,17413325 -g2538,280:10685485,17413325 -g2538,280:12979900,17413325 -g2538,280:14548176,17413325 -g2538,280:16116452,17413325 -k2538,281:17885925,17413325:574096 -k2538,281:18460021,17413325:574096 -) -(2538,282:6630773,18271728:11829248,505283,126483 -h2538,281:6630773,18271728:0,0,0 -r2538,281:6630773,18271728:0,631766,126483 -g2538,281:7941493,18271728 -g2538,281:7941493,18271728 -g2538,281:11080667,18271728 -g2538,281:12648943,18271728 -k2538,282:16152171,18271728:2307851 -k2538,282:18460021,18271728:2307850 -) -(2538,283:6630773,19130130:11829248,505283,126483 -h2538,282:6630773,19130130:0,0,0 -r2538,282:6630773,19130130:0,631766,126483 -g2538,282:7941493,19130130 -g2538,282:7941493,19130130 -g2538,282:10685485,19130130 -k2538,283:15170442,19130130:3289580 -k2538,283:18460021,19130130:3289579 -) -(2538,284:6630773,19988532:11829248,505283,126483 -h2538,283:6630773,19988532:0,0,0 -r2538,283:6630773,19988532:0,631766,126483 -g2538,283:7941493,19988532 -g2538,283:7941493,19988532 -g2538,283:11475849,19988532 -g2538,283:13044125,19988532 -k2538,284:16349762,19988532:2110260 -k2538,284:18460021,19988532:2110259 -) -(2538,285:6630773,20846934:11829248,505283,126483 -h2538,284:6630773,20846934:0,0,0 -r2538,284:6630773,20846934:0,631766,126483 -g2538,284:7941493,20846934 -g2538,284:7941493,20846934 -g2538,284:11871031,20846934 -k2538,285:15763215,20846934:2696807 -k2538,285:18460021,20846934:2696806 -) -(2538,286:6630773,21705336:11829248,505283,126483 -h2538,285:6630773,21705336:0,0,0 -r2538,285:6630773,21705336:0,631766,126483 -g2538,285:7941493,21705336 -g2538,285:7941493,21705336 -g2538,285:14242123,21705336 -k2538,286:16948761,21705336:1511261 -k2538,286:18460021,21705336:1511260 -) -(2538,288:6630773,22563738:11829248,505283,126483 -h2538,286:6630773,22563738:0,0,0 -r2538,286:6630773,22563738:0,631766,126483 -g2538,286:7941493,22563738 -g2538,286:7941493,22563738 -g2538,286:11080667,22563738 -g2538,286:11852025,22563738 -g2538,286:13021842,22563738 -g2538,286:14191659,22563738 -g2538,286:15361476,22563738 -g2538,286:16531293,22563738 -k2538,286:18460021,22563738:958140 -) -(2538,288:9252213,23405226:9207808,485622,102891 -g2538,286:10820489,23405226 -g2538,286:12388765,23405226 -g2538,286:13957041,23405226 -g2538,287:15525317,23405226 -k2538,288:17590358,23405226:869664 -k2538,288:18460021,23405226:869663 -) -(2538,289:6630773,24263629:11829248,505283,126483 -h2538,288:6630773,24263629:0,0,0 -r2538,288:6630773,24263629:0,631766,126483 -g2538,288:7941493,24263629 -g2538,288:7941493,24263629 -g2538,288:9895120,24263629 -k2538,289:14775259,24263629:3684762 -k2538,289:18460021,24263629:3684762 -) -(2538,290:6630773,25122031:11829248,505283,126483 -h2538,289:6630773,25122031:0,0,0 -r2538,289:6630773,25122031:0,631766,126483 -g2538,289:7941493,25122031 -g2538,289:7941493,25122031 -g2538,289:11080667,25122031 -k2538,290:15368033,25122031:3091989 -k2538,290:18460021,25122031:3091988 -) -(2538,291:6630773,25980433:11829248,505283,126483 -h2538,290:6630773,25980433:0,0,0 -r2538,290:6630773,25980433:0,631766,126483 -g2538,290:7941493,25980433 -g2538,290:7941493,25980433 -g2538,290:12266213,25980433 -k2538,291:15960806,25980433:2499216 -k2538,291:18460021,25980433:2499215 -) -(2538,292:6630773,26838835:11829248,505283,134348 -h2538,291:6630773,26838835:0,0,0 -r2538,291:6630773,26838835:0,639631,134348 -g2538,291:7941493,26838835 -g2538,291:7941493,26838835 -g2538,291:11080667,26838835 -k2538,292:15368033,26838835:3091989 -k2538,292:18460021,26838835:3091988 -) -(2538,293:6630773,27697237:11829248,505283,102891 -h2538,292:6630773,27697237:0,0,0 -r2538,292:6630773,27697237:0,608174,102891 -g2538,292:7941493,27697237 -g2538,292:7941493,27697237 -g2538,292:12266213,27697237 -g2538,292:13834489,27697237 -g2538,292:15402765,27697237 -k2538,293:18290610,27697237:169412 -k2538,293:18460021,27697237:169411 -) -(2538,294:6630773,28555640:11829248,505283,102891 -h2538,293:6630773,28555640:0,0,0 -r2538,293:6630773,28555640:0,608174,102891 -g2538,293:7941493,28555640 -g2538,293:7941493,28555640 -g2538,293:12661395,28555640 -g2538,293:14229671,28555640 -g2538,293:15797947,28555640 -k2538,294:17726673,28555640:733349 -k2538,294:18460021,28555640:733348 -) -(2538,295:6630773,29414042:11829248,513147,102891 -h2538,294:6630773,29414042:0,0,0 -r2538,294:6630773,29414042:0,616038,102891 -g2538,294:7941493,29414042 -g2538,294:7941493,29414042 -g2538,294:13846941,29414042 -g2538,294:15415217,29414042 -k2538,295:17535308,29414042:924714 -k2538,295:18460021,29414042:924713 -) -(2538,296:6630773,30272444:11829248,513147,102891 -h2538,295:6630773,30272444:0,0,0 -r2538,295:6630773,30272444:0,616038,102891 -g2538,295:7941493,30272444 -g2538,295:7941493,30272444 -g2538,295:12266213,30272444 -k2538,296:15960806,30272444:2499216 -k2538,296:18460021,30272444:2499215 -) -(2538,297:6630773,31130846:11829248,505283,126483 -h2538,296:6630773,31130846:0,0,0 -r2538,296:6630773,31130846:0,631766,126483 -g2538,296:7941493,31130846 -g2538,296:7941493,31130846 -g2538,296:12661395,31130846 -k2538,297:16158397,31130846:2301625 -k2538,297:18460021,31130846:2301624 -) -(2538,298:6630773,31989248:11829248,505283,126483 -h2538,297:6630773,31989248:0,0,0 -r2538,297:6630773,31989248:0,631766,126483 -g2538,297:7941493,31989248 -g2538,297:7941493,31989248 -g2538,297:13451759,31989248 -k2538,298:16553579,31989248:1906443 -k2538,298:18460021,31989248:1906442 -) -(2538,299:6630773,32847650:11829248,505283,102891 -h2538,298:6630773,32847650:0,0,0 -r2538,298:6630773,32847650:0,608174,102891 -g2538,298:7941493,32847650 -g2538,298:7941493,32847650 -g2538,298:13056577,32847650 -g2538,298:16147910,32847650 -k2538,298:18460021,32847650:943064 -) -(2538,299:9252213,33689138:9207808,485622,11795 -k2538,299:14453806,33689138:4006216 -k2538,299:18460021,33689138:4006215 -) -(2538,300:6630773,34547541:11829248,505283,102891 -h2538,299:6630773,34547541:0,0,0 -r2538,299:6630773,34547541:0,608174,102891 -g2538,299:7941493,34547541 -g2538,299:7941493,34547541 -g2538,299:12661395,34547541 -k2538,300:16158397,34547541:2301625 -k2538,300:18460021,34547541:2301624 -) -(2538,301:6630773,35405943:11829248,505283,102891 -h2538,300:6630773,35405943:0,0,0 -r2538,300:6630773,35405943:0,608174,102891 -g2538,300:7941493,35405943 -g2538,300:7941493,35405943 -g2538,300:12266213,35405943 -g2538,300:13834489,35405943 -k2538,301:16744944,35405943:1715078 -k2538,301:18460021,35405943:1715077 -) -(2538,302:6630773,36264345:11829248,505283,102891 -h2538,301:6630773,36264345:0,0,0 -r2538,301:6630773,36264345:0,608174,102891 -g2538,301:7941493,36264345 -g2538,301:7941493,36264345 -g2538,301:13056577,36264345 -k2538,302:16355988,36264345:2104034 -k2538,302:18460021,36264345:2104033 -) -(2538,303:6630773,37122747:11829248,505283,102891 -h2538,302:6630773,37122747:0,0,0 -r2538,302:6630773,37122747:0,608174,102891 -g2538,302:7941493,37122747 -g2538,302:7941493,37122747 -g2538,302:13056577,37122747 -k2538,303:16355988,37122747:2104034 -k2538,303:18460021,37122747:2104033 -) -(2538,304:6630773,37981149:11829248,513147,102891 -h2538,303:6630773,37981149:0,0,0 -r2538,303:6630773,37981149:0,616038,102891 -g2538,303:7941493,37981149 -g2538,303:7941493,37981149 -g2538,303:12661395,37981149 -k2538,304:16158397,37981149:2301625 -k2538,304:18460021,37981149:2301624 -) -(2538,305:6630773,38839552:11829248,513147,102891 -h2538,304:6630773,38839552:0,0,0 -r2538,304:6630773,38839552:0,616038,102891 -g2538,304:7941493,38839552 -g2538,304:7941493,38839552 -g2538,304:12266213,38839552 -k2538,305:15960806,38839552:2499216 -k2538,305:18460021,38839552:2499215 -) -(2538,306:6630773,39697954:11829248,505283,102891 -h2538,305:6630773,39697954:0,0,0 -r2538,305:6630773,39697954:0,608174,102891 -g2538,305:7941493,39697954 -g2538,305:7941493,39697954 -g2538,305:12661395,39697954 -k2538,306:16158397,39697954:2301625 -k2538,306:18460021,39697954:2301624 -) -(2538,307:6630773,40556356:11829248,505283,102891 -h2538,306:6630773,40556356:0,0,0 -r2538,306:6630773,40556356:0,608174,102891 -g2538,306:7941493,40556356 -g2538,306:7941493,40556356 -g2538,306:13056577,40556356 -k2538,307:16355988,40556356:2104034 -k2538,307:18460021,40556356:2104033 -) -(2538,308:6630773,41414758:11829248,505283,102891 -h2538,307:6630773,41414758:0,0,0 -r2538,307:6630773,41414758:0,608174,102891 -g2538,307:7941493,41414758 -g2538,307:7941493,41414758 -g2538,307:12266213,41414758 -k2538,308:15960806,41414758:2499216 -k2538,308:18460021,41414758:2499215 -) -(2538,309:6630773,42273160:11829248,505283,102891 -h2538,308:6630773,42273160:0,0,0 -r2538,308:6630773,42273160:0,608174,102891 -g2538,308:7941493,42273160 -g2538,308:7941493,42273160 -g2538,308:12266213,42273160 -k2538,309:15960806,42273160:2499216 -k2538,309:18460021,42273160:2499215 -) -(2538,310:6630773,43131562:11829248,505283,102891 -h2538,309:6630773,43131562:0,0,0 -r2538,309:6630773,43131562:0,608174,102891 -g2538,309:7941493,43131562 -g2538,309:7941493,43131562 -g2538,309:13056577,43131562 -g2538,309:14624853,43131562 -k2538,310:17140126,43131562:1319896 -k2538,310:18460021,43131562:1319895 -) -(2538,311:6630773,43989965:11829248,505283,102891 -h2538,310:6630773,43989965:0,0,0 -r2538,310:6630773,43989965:0,608174,102891 -g2538,310:7941493,43989965 -g2538,310:7941493,43989965 -g2538,310:13451759,43989965 -k2538,311:16553579,43989965:1906443 -k2538,311:18460021,43989965:1906442 -) -(2538,312:6630773,44848367:11829248,505283,102891 -h2538,311:6630773,44848367:0,0,0 -r2538,311:6630773,44848367:0,608174,102891 -g2538,311:7941493,44848367 -g2538,311:7941493,44848367 -g2538,311:12266213,44848367 -k2538,312:15960806,44848367:2499216 -k2538,312:18460021,44848367:2499215 -) -(2538,313:6630773,45706769:11829248,505283,102891 -h2538,312:6630773,45706769:0,0,0 -r2538,312:6630773,45706769:0,608174,102891 -g2538,312:7941493,45706769 -g2538,312:7941493,45706769 -g2538,312:12661395,45706769 -k2538,313:16158397,45706769:2301625 -k2538,313:18460021,45706769:2301624 -) -] -k2538,356:19606901,45706769:1146880 -r2538,356:19606901,45706769:0,40242380,134348 -k2538,356:20753781,45706769:1146880 -[2538,356:20753781,45706769:11829248,40108032,134348 -(2538,314:20753781,6254097:11829248,505283,102891 -h2538,313:20753781,6254097:0,0,0 -r2538,313:20753781,6254097:0,608174,102891 -g2538,313:22064501,6254097 -g2538,313:22064501,6254097 -g2538,313:25994039,6254097 -k2538,314:29686993,6254097:2896036 -k2538,314:32583029,6254097:2896036 -) -(2538,315:20753781,7115170:11829248,505283,102891 -h2538,314:20753781,7115170:0,0,0 -r2538,314:20753781,7115170:0,608174,102891 -g2538,314:22064501,7115170 -g2538,314:22064501,7115170 -g2538,314:24413310,7115170 -k2538,315:29095858,7115170:3487171 -k2538,315:32583029,7115170:3487171 -) -(2538,316:20753781,7976243:11829248,505283,102891 -h2538,315:20753781,7976243:0,0,0 -r2538,315:20753781,7976243:0,608174,102891 -g2538,315:22064501,7976243 -g2538,315:22064501,7976243 -g2538,315:25598857,7976243 -k2538,316:29688632,7976243:2894398 -k2538,316:32583029,7976243:2894397 -) -(2538,317:20753781,8837316:11829248,505283,102891 -h2538,316:20753781,8837316:0,0,0 -r2538,316:20753781,8837316:0,608174,102891 -g2538,316:22064501,8837316 -g2538,316:22064501,8837316 -g2538,316:25994039,8837316 -k2538,317:29686993,8837316:2896036 -k2538,317:32583029,8837316:2896036 -) -(2538,318:20753781,9698388:11829248,505283,126483 -h2538,317:20753781,9698388:0,0,0 -r2538,317:20753781,9698388:0,631766,126483 -g2538,317:22064501,9698388 -g2538,317:22064501,9698388 -g2538,317:24413310,9698388 -k2538,318:28896629,9698388:3686401 -k2538,318:32583029,9698388:3686400 -) -(2538,319:20753781,10559461:11829248,505283,102891 -h2538,318:20753781,10559461:0,0,0 -r2538,318:20753781,10559461:0,608174,102891 -g2538,318:22064501,10559461 -g2538,318:22064501,10559461 -g2538,318:25203675,10559461 -k2538,319:29491041,10559461:3091989 -k2538,319:32583029,10559461:3091988 -) -(2538,320:20753781,11420534:11829248,505283,102891 -h2538,319:20753781,11420534:0,0,0 -r2538,319:20753781,11420534:0,608174,102891 -g2538,319:22064501,11420534 -g2538,319:22064501,11420534 -g2538,319:26784403,11420534 -k2538,320:30281405,11420534:2301625 -k2538,320:32583029,11420534:2301624 -) -(2538,321:20753781,12281607:11829248,505283,134348 -h2538,320:20753781,12281607:0,0,0 -r2538,320:20753781,12281607:0,639631,134348 -g2538,320:22064501,12281607 -g2538,320:22064501,12281607 -g2538,320:24413310,12281607 -k2538,321:29095858,12281607:3487171 -k2538,321:32583029,12281607:3487171 -) -(2538,322:20753781,13142680:11829248,505283,134348 -h2538,321:20753781,13142680:0,0,0 -r2538,321:20753781,13142680:0,639631,134348 -g2538,321:22064501,13142680 -g2538,321:22064501,13142680 -g2538,321:27179585,13142680 -k2538,322:30478996,13142680:2104034 -k2538,322:32583029,13142680:2104033 -) -(2538,323:20753781,14003753:11829248,505283,102891 -h2538,322:20753781,14003753:0,0,0 -r2538,322:20753781,14003753:0,608174,102891 -g2538,322:22064501,14003753 -g2538,322:22064501,14003753 -g2538,322:24413310,14003753 -k2538,323:28896629,14003753:3686401 -k2538,323:32583029,14003753:3686400 -) -(2538,324:20753781,14864825:11829248,505283,102891 -h2538,323:20753781,14864825:0,0,0 -r2538,323:20753781,14864825:0,608174,102891 -g2538,323:22064501,14864825 -g2538,323:22064501,14864825 -g2538,323:24018128,14864825 -k2538,324:28699038,14864825:3883992 -k2538,324:32583029,14864825:3883991 -) -(2538,325:20753781,15725898:11829248,505283,102891 -h2538,324:20753781,15725898:0,0,0 -r2538,324:20753781,15725898:0,608174,102891 -g2538,324:22064501,15725898 -g2538,324:22064501,15725898 -g2538,324:25203675,15725898 -g2538,324:26771951,15725898 -g2538,324:28340227,15725898 -k2538,325:31059317,15725898:1523713 -k2538,325:32583029,15725898:1523712 -) -(2538,326:20753781,16586971:11829248,505283,102891 -h2538,325:20753781,16586971:0,0,0 -r2538,325:20753781,16586971:0,608174,102891 -g2538,325:22064501,16586971 -g2538,325:22064501,16586971 -g2538,325:25203675,16586971 -k2538,326:29291811,16586971:3291218 -k2538,326:32583029,16586971:3291218 -) -(2538,327:20753781,17448044:11829248,505283,102891 -h2538,326:20753781,17448044:0,0,0 -r2538,326:20753781,17448044:0,608174,102891 -g2538,326:22064501,17448044 -g2538,326:22064501,17448044 -g2538,326:26389221,17448044 -k2538,327:29884584,17448044:2698445 -k2538,327:32583029,17448044:2698445 -) -(2538,328:20753781,18309117:11829248,513147,102891 -h2538,327:20753781,18309117:0,0,0 -r2538,327:20753781,18309117:0,616038,102891 -g2538,327:22064501,18309117 -g2538,327:22064501,18309117 -g2538,327:25203675,18309117 -k2538,328:29491041,18309117:3091989 -k2538,328:32583029,18309117:3091988 -) -(2538,329:20753781,19170190:11829248,505283,102891 -h2538,328:20753781,19170190:0,0,0 -r2538,328:20753781,19170190:0,608174,102891 -g2538,328:22064501,19170190 -g2538,328:22064501,19170190 -g2538,328:24808493,19170190 -k2538,329:29094220,19170190:3488809 -k2538,329:32583029,19170190:3488809 -) -(2538,330:20753781,20031262:11829248,505283,102891 -h2538,329:20753781,20031262:0,0,0 -r2538,329:20753781,20031262:0,608174,102891 -g2538,329:22064501,20031262 -g2538,329:22064501,20031262 -g2538,329:25994039,20031262 -k2538,330:29686993,20031262:2896036 -k2538,330:32583029,20031262:2896036 -) -(2538,331:20753781,20892335:11829248,505283,102891 -h2538,330:20753781,20892335:0,0,0 -r2538,330:20753781,20892335:0,608174,102891 -g2538,330:22064501,20892335 -g2538,330:22064501,20892335 -g2538,330:30341042,20892335 -k2538,331:32059724,20892335:523305 -k2538,331:32583029,20892335:523305 -) -(2538,332:20753781,21753408:11829248,505283,102891 -h2538,331:20753781,21753408:0,0,0 -r2538,331:20753781,21753408:0,608174,102891 -g2538,331:22064501,21753408 -g2538,331:22064501,21753408 -k2538,331:32583029,21753408:860488 -) -(2538,332:23375221,22594896:9207808,485622,102891 -g2538,331:24943497,22594896 -k2538,332:29360952,22594896:3222078 -k2538,332:32583029,22594896:3222077 -) -(2538,333:20753781,23455969:11829248,505283,102891 -h2538,332:20753781,23455969:0,0,0 -r2538,332:20753781,23455969:0,608174,102891 -g2538,332:22064501,23455969 -g2538,332:22064501,23455969 -g2538,332:29550678,23455969 -k2538,333:31664542,23455969:918487 -k2538,333:32583029,23455969:918487 -) -(2538,334:20753781,24317042:11829248,505283,102891 -h2538,333:20753781,24317042:0,0,0 -r2538,333:20753781,24317042:0,608174,102891 -g2538,333:22064501,24317042 -g2538,333:22064501,24317042 -g2538,333:31131406,24317042 -k2538,334:32454906,24317042:128123 -k2538,334:32583029,24317042:128123 -) -(2538,335:20753781,25178115:11829248,505283,102891 -h2538,334:20753781,25178115:0,0,0 -r2538,334:20753781,25178115:0,608174,102891 -g2538,334:22064501,25178115 -g2538,334:22064501,25178115 -g2538,334:31131406,25178115 -k2538,334:32583029,25178115:82576 -) -(2538,335:23375221,26019603:9207808,485622,11795 -k2538,335:28576814,26019603:4006216 -k2538,335:32583029,26019603:4006215 -) -(2538,336:20753781,26880676:11829248,505283,102891 -h2538,335:20753781,26880676:0,0,0 -r2538,335:20753781,26880676:0,608174,102891 -g2538,335:22064501,26880676 -g2538,335:22064501,26880676 -k2538,335:32583029,26880676:1255670 -) -(2538,336:23375221,27722164:9207808,485622,11795 -k2538,336:28576814,27722164:4006216 -k2538,336:32583029,27722164:4006215 -) -(2538,337:20753781,28583236:11829248,505283,134348 -h2538,336:20753781,28583236:0,0,0 -r2538,336:20753781,28583236:0,639631,134348 -g2538,336:22064501,28583236 -g2538,336:22064501,28583236 -g2538,336:31131406,28583236 -k2538,337:32454906,28583236:128123 -k2538,337:32583029,28583236:128123 -) -(2538,338:20753781,29444309:11829248,505283,134348 -h2538,337:20753781,29444309:0,0,0 -r2538,337:20753781,29444309:0,639631,134348 -g2538,337:22064501,29444309 -g2538,337:22064501,29444309 -k2538,337:32583029,29444309:1255670 -) -(2538,338:23375221,30285797:9207808,485622,11795 -k2538,338:28576814,30285797:4006216 -k2538,338:32583029,30285797:4006215 -) -(2538,339:20753781,31146870:11829248,505283,134348 -h2538,338:20753781,31146870:0,0,0 -r2538,338:20753781,31146870:0,639631,134348 -g2538,338:22064501,31146870 -g2538,338:22064501,31146870 -k2538,338:32583029,31146870:1255670 -) -(2538,339:23375221,31988358:9207808,485622,11795 -k2538,339:28576814,31988358:4006216 -k2538,339:32583029,31988358:4006215 -) -(2538,340:20753781,32849431:11829248,505283,134348 -h2538,339:20753781,32849431:0,0,0 -r2538,339:20753781,32849431:0,639631,134348 -g2538,339:22064501,32849431 -g2538,339:22064501,32849431 -g2538,339:29550678,32849431 -k2538,340:31664542,32849431:918487 -k2538,340:32583029,32849431:918487 -) -(2538,341:20753781,33710504:11829248,505283,102891 -h2538,340:20753781,33710504:0,0,0 -r2538,340:20753781,33710504:0,608174,102891 -g2538,340:22064501,33710504 -g2538,340:22064501,33710504 -g2538,340:29155496,33710504 -k2538,341:31466951,33710504:1116078 -k2538,341:32583029,33710504:1116078 -) -(2538,342:20753781,34571577:11829248,505283,126483 -h2538,341:20753781,34571577:0,0,0 -r2538,341:20753781,34571577:0,631766,126483 -g2538,341:22064501,34571577 -g2538,341:22064501,34571577 -g2538,341:31131406,34571577 -k2538,341:32583029,34571577:82576 -) -(2538,342:23375221,35413065:9207808,485622,11795 -k2538,342:28576814,35413065:4006216 -k2538,342:32583029,35413065:4006215 -) -(2538,343:20753781,36274137:11829248,505283,102891 -h2538,342:20753781,36274137:0,0,0 -r2538,342:20753781,36274137:0,608174,102891 -g2538,342:22064501,36274137 -g2538,342:22064501,36274137 -k2538,342:32583029,36274137:1255670 -) -(2538,343:23375221,37115625:9207808,485622,11795 -k2538,343:28576814,37115625:4006216 -k2538,343:32583029,37115625:4006215 -) -(2538,344:20753781,37976698:11829248,505283,102891 -h2538,343:20753781,37976698:0,0,0 -r2538,343:20753781,37976698:0,608174,102891 -g2538,343:22064501,37976698 -g2538,343:22064501,37976698 -k2538,343:32583029,37976698:1255670 -) -(2538,344:23375221,38818186:9207808,485622,11795 -k2538,344:28576814,38818186:4006216 -k2538,344:32583029,38818186:4006215 -) -(2538,345:20753781,39679259:11829248,513147,126483 -h2538,344:20753781,39679259:0,0,0 -r2538,344:20753781,39679259:0,639630,126483 -g2538,344:22064501,39679259 -g2538,344:22064501,39679259 -g2538,344:30736224,39679259 -k2538,345:32257315,39679259:325714 -k2538,345:32583029,39679259:325714 -) -(2538,346:20753781,40540332:11829248,505283,102891 -h2538,345:20753781,40540332:0,0,0 -r2538,345:20753781,40540332:0,608174,102891 -g2538,345:22064501,40540332 -g2538,345:22064501,40540332 -g2538,345:30341042,40540332 -k2538,346:32059724,40540332:523305 -k2538,346:32583029,40540332:523305 -) -(2538,347:20753781,41401405:11829248,505283,102891 -h2538,346:20753781,41401405:0,0,0 -r2538,346:20753781,41401405:0,608174,102891 -g2538,346:22064501,41401405 -g2538,346:22064501,41401405 -g2538,346:29550678,41401405 -k2538,347:31664542,41401405:918487 -k2538,347:32583029,41401405:918487 -) -(2538,348:20753781,42262478:11829248,505283,134348 -h2538,347:20753781,42262478:0,0,0 -r2538,347:20753781,42262478:0,639631,134348 -g2538,347:22064501,42262478 -g2538,347:22064501,42262478 -g2538,347:28365131,42262478 -k2538,348:31071769,42262478:1511261 -k2538,348:32583029,42262478:1511260 -) -(2538,349:20753781,43123551:11829248,505283,102891 -h2538,348:20753781,43123551:0,0,0 -r2538,348:20753781,43123551:0,608174,102891 -g2538,348:22064501,43123551 -g2538,348:22064501,43123551 -g2538,348:29155496,43123551 -k2538,349:31466951,43123551:1116078 -k2538,349:32583029,43123551:1116078 -) -(2538,350:20753781,43984623:11829248,505283,126483 -h2538,349:20753781,43984623:0,0,0 -r2538,349:20753781,43984623:0,631766,126483 -g2538,349:22064501,43984623 -g2538,349:22064501,43984623 -g2538,349:30341042,43984623 -k2538,350:32059724,43984623:523305 -k2538,350:32583029,43984623:523305 -) -(2538,351:20753781,44845696:11829248,505283,134348 -h2538,350:20753781,44845696:0,0,0 -r2538,350:20753781,44845696:0,639631,134348 -g2538,350:22064501,44845696 -g2538,350:22064501,44845696 -g2538,350:27574767,44845696 -k2538,351:30676587,44845696:1906443 -k2538,351:32583029,44845696:1906442 -) -(2538,352:20753781,45706769:11829248,505283,134348 -h2538,351:20753781,45706769:0,0,0 -r2538,351:20753781,45706769:0,639631,134348 -g2538,351:22064501,45706769 -g2538,351:22064501,45706769 -g2538,351:28365131,45706769 -k2538,352:31071769,45706769:1511261 -k2538,352:32583029,45706769:1511260 -) -] -(2538,356:32583029,45706769:0,355205,126483 -h2538,356:32583029,45706769:420741,355205,126483 -k2538,356:32583029,45706769:-420741 -) -) -] -(2538,356:32583029,45706769:0,0,0 -g2538,356:32583029,45706769 -) -) -] -(2538,356:6630773,47279633:25952256,0,0 -h2538,356:6630773,47279633:25952256,0,0 -) -] -h2538,356:4262630,4025873:0,0,0 -] -!29448 -}351 -!12 -{352 -[2538,450:4262630,47279633:28320399,43253760,0 -(2538,450:4262630,4025873:0,0,0 -[2538,450:-473657,4025873:11829248,0,0 -(2538,450:-473657,-710414:11829248,0,0 -h2538,450:-473657,-710414:0,0,0 -(2538,450:-473657,-710414:0,0,0 -(2538,450:-473657,-710414:0,0,0 -g2538,450:-473657,-710414 -(2538,450:-473657,-710414:65781,0,65781 -g2538,450:-407876,-710414 -[2538,450:-407876,-644633:0,0,0 -] -) -k2538,450:-473657,-710414:-65781 -) -) -k2538,450:11355591,-710414:11829248 -g2538,450:11355591,-710414 -) -] -) -[2538,450:6630773,47279633:25952256,43253760,0 -[2538,450:6630773,4812305:25952256,786432,0 -(2538,450:6630773,4812305:25952256,513147,134348 -(2538,450:6630773,4812305:25952256,513147,134348 -g2538,450:3078558,4812305 -[2538,450:3078558,4812305:0,0,0 -(2538,450:3078558,2439708:0,1703936,0 -k2538,450:1358238,2439708:-1720320 -(2538,1:1358238,2439708:1720320,1703936,0 -(2538,1:1358238,2439708:1179648,16384,0 -r2538,450:2537886,2439708:1179648,16384,0 -) -g2538,1:3062174,2439708 -(2538,1:3062174,2439708:16384,1703936,0 -[2538,1:3062174,2439708:25952256,1703936,0 -(2538,1:3062174,1915420:25952256,1179648,0 -(2538,1:3062174,1915420:16384,1179648,0 -r2538,450:3078558,1915420:16384,1179648,0 -) -k2538,1:29014430,1915420:25935872 -g2538,1:29014430,1915420 -) -] -) -) -) -] -[2538,450:3078558,4812305:0,0,0 -(2538,450:3078558,2439708:0,1703936,0 -g2538,450:29030814,2439708 -g2538,450:36135244,2439708 -(2538,1:36135244,2439708:1720320,1703936,0 -(2538,1:36135244,2439708:16384,1703936,0 -[2538,1:36135244,2439708:25952256,1703936,0 -(2538,1:36135244,1915420:25952256,1179648,0 -(2538,1:36135244,1915420:16384,1179648,0 -r2538,450:36151628,1915420:16384,1179648,0 -) -k2538,1:62087500,1915420:25935872 -g2538,1:62087500,1915420 -) -] -) -g2538,1:36675916,2439708 -(2538,1:36675916,2439708:1179648,16384,0 -r2538,450:37855564,2439708:1179648,16384,0 -) -) -k2538,450:3078556,2439708:-34777008 -) -] -[2538,450:3078558,4812305:0,0,0 -(2538,450:3078558,49800853:0,16384,2228224 -k2538,450:1358238,49800853:-1720320 -(2538,1:1358238,49800853:1720320,16384,2228224 -(2538,1:1358238,49800853:1179648,16384,0 -r2538,450:2537886,49800853:1179648,16384,0 -) -g2538,1:3062174,49800853 -(2538,1:3062174,52029077:16384,1703936,0 -[2538,1:3062174,52029077:25952256,1703936,0 -(2538,1:3062174,51504789:25952256,1179648,0 -(2538,1:3062174,51504789:16384,1179648,0 -r2538,450:3078558,51504789:16384,1179648,0 -) -k2538,1:29014430,51504789:25935872 -g2538,1:29014430,51504789 -) -] -) -) -) -] -[2538,450:3078558,4812305:0,0,0 -(2538,450:3078558,49800853:0,16384,2228224 -g2538,450:29030814,49800853 -g2538,450:36135244,49800853 -(2538,1:36135244,49800853:1720320,16384,2228224 -(2538,1:36135244,52029077:16384,1703936,0 -[2538,1:36135244,52029077:25952256,1703936,0 -(2538,1:36135244,51504789:25952256,1179648,0 -(2538,1:36135244,51504789:16384,1179648,0 -r2538,450:36151628,51504789:16384,1179648,0 -) -k2538,1:62087500,51504789:25935872 -g2538,1:62087500,51504789 -) -] -) -g2538,1:36675916,49800853 -(2538,1:36675916,49800853:1179648,16384,0 -r2538,450:37855564,49800853:1179648,16384,0 -) -) -k2538,450:3078556,49800853:-34777008 -) -] -g2538,450:6630773,4812305 -g2538,450:6630773,4812305 -g2538,450:8528695,4812305 -g2538,450:9343962,4812305 -g2538,450:9957379,4812305 -g2538,450:12215094,4812305 -g2538,450:13170608,4812305 -g2538,450:16094824,4812305 -k2538,450:31387652,4812305:15292828 -) -) -] -[2538,450:6630773,45706769:25952256,40108032,0 -(2538,450:6630773,45706769:25952256,40108032,0 -(2538,450:6630773,45706769:0,0,0 -g2538,450:6630773,45706769 -) -[2538,450:6630773,45706769:25952256,40108032,0 -(2538,450:6630773,45706769:25952256,40108032,126483 -[2538,450:6630773,45706769:11829248,40108032,102891 -(2538,353:6630773,6254097:11829248,505283,102891 -h2538,352:6630773,6254097:0,0,0 -r2538,352:6630773,6254097:0,608174,102891 -g2538,352:7941493,6254097 -g2538,352:7941493,6254097 -g2538,352:9895120,6254097 -k2538,353:14775259,6254097:3684762 -k2538,353:18460021,6254097:3684762 -) -(2538,354:6630773,7112499:11829248,505283,102891 -h2538,353:6630773,7112499:0,0,0 -r2538,353:6630773,7112499:0,608174,102891 -g2538,353:7941493,7112499 -g2538,353:7941493,7112499 -g2538,353:11475849,7112499 -k2538,354:15565624,7112499:2894398 -k2538,354:18460021,7112499:2894397 -) -(2538,355:6630773,7970901:11829248,505283,102891 -h2538,354:6630773,7970901:0,0,0 -r2538,354:6630773,7970901:0,608174,102891 -g2538,354:7941493,7970901 -g2538,354:7941493,7970901 -g2538,354:10290302,7970901 -k2538,355:14972850,7970901:3487171 -k2538,355:18460021,7970901:3487171 -) -(2538,356:6630773,8829304:11829248,505283,134348 -h2538,355:6630773,8829304:0,0,0 -r2538,355:6630773,8829304:0,639631,134348 -g2538,355:7941493,8829304 -g2538,355:7941493,8829304 -g2538,355:12661395,8829304 -k2538,356:16158397,8829304:2301625 -k2538,356:18460021,8829304:2301624 -) -(2538,357:6630773,9687706:11829248,505283,126483 -h2538,356:6630773,9687706:0,0,0 -r2538,356:6630773,9687706:0,631766,126483 -g2538,356:7941493,9687706 -g2538,356:7941493,9687706 -g2538,356:10290302,9687706 -k2538,357:14773621,9687706:3686401 -k2538,357:18460021,9687706:3686400 -) -(2538,358:6630773,10546108:11829248,505283,102891 -h2538,357:6630773,10546108:0,0,0 -r2538,357:6630773,10546108:0,608174,102891 -g2538,357:7941493,10546108 -g2538,357:7941493,10546108 -g2538,357:12266213,10546108 -k2538,358:15960806,10546108:2499216 -k2538,358:18460021,10546108:2499215 -) -(2538,359:6630773,11404510:11829248,505283,102891 -h2538,358:6630773,11404510:0,0,0 -r2538,358:6630773,11404510:0,608174,102891 -g2538,358:7941493,11404510 -g2538,358:7941493,11404510 -g2538,358:11871031,11404510 -k2538,359:15763215,11404510:2696807 -k2538,359:18460021,11404510:2696806 -) -(2538,360:6630773,12262912:11829248,505283,102891 -h2538,359:6630773,12262912:0,0,0 -r2538,359:6630773,12262912:0,608174,102891 -g2538,359:7941493,12262912 -g2538,359:7941493,12262912 -g2538,359:11080667,12262912 -k2538,360:15368033,12262912:3091989 -k2538,360:18460021,12262912:3091988 -) -(2538,361:6630773,13121314:11829248,505283,102891 -h2538,360:6630773,13121314:0,0,0 -r2538,360:6630773,13121314:0,608174,102891 -g2538,360:7941493,13121314 -g2538,360:7941493,13121314 -g2538,360:11080667,13121314 -k2538,361:15368033,13121314:3091989 -k2538,361:18460021,13121314:3091988 -) -(2538,362:6630773,13979717:11829248,513147,134348 -h2538,361:6630773,13979717:0,0,0 -r2538,361:6630773,13979717:0,647495,134348 -g2538,361:7941493,13979717 -g2538,361:7941493,13979717 -g2538,361:11475849,13979717 -k2538,362:15366394,13979717:3093627 -k2538,362:18460021,13979717:3093627 -) -(2538,363:6630773,14838119:11829248,505283,102891 -h2538,362:6630773,14838119:0,0,0 -r2538,362:6630773,14838119:0,608174,102891 -g2538,362:7941493,14838119 -g2538,362:7941493,14838119 -g2538,362:10290302,14838119 -g2538,362:11460119,14838119 -k2538,363:15358529,14838119:3101492 -k2538,363:18460021,14838119:3101492 -) -(2538,364:6630773,15696521:11829248,505283,102891 -h2538,363:6630773,15696521:0,0,0 -r2538,363:6630773,15696521:0,608174,102891 -g2538,363:7941493,15696521 -g2538,363:7941493,15696521 -g2538,363:11080667,15696521 -k2538,364:15368033,15696521:3091989 -k2538,364:18460021,15696521:3091988 -) -(2538,365:6630773,16554923:11829248,505283,102891 -h2538,364:6630773,16554923:0,0,0 -r2538,364:6630773,16554923:0,608174,102891 -g2538,364:7941493,16554923 -g2538,364:7941493,16554923 -g2538,364:10685485,16554923 -g2538,364:11855302,16554923 -g2538,364:13025119,16554923 -g2538,364:14194936,16554923 -k2538,365:16925167,16554923:1534854 -k2538,365:18460021,16554923:1534854 -) -(2538,366:6630773,17413325:11829248,505283,102891 -h2538,365:6630773,17413325:0,0,0 -r2538,365:6630773,17413325:0,608174,102891 -g2538,365:7941493,17413325 -g2538,365:7941493,17413325 -g2538,365:11475849,17413325 -k2538,366:15366394,17413325:3093627 -k2538,366:18460021,17413325:3093627 -) -(2538,367:6630773,18271728:11829248,505283,126483 -h2538,366:6630773,18271728:0,0,0 -r2538,366:6630773,18271728:0,631766,126483 -g2538,366:7941493,18271728 -g2538,366:7941493,18271728 -g2538,366:11475849,18271728 -k2538,367:15565624,18271728:2894398 -k2538,367:18460021,18271728:2894397 -) -(2538,368:6630773,19130130:11829248,513147,126483 -h2538,367:6630773,19130130:0,0,0 -r2538,367:6630773,19130130:0,639630,126483 -g2538,367:7941493,19130130 -g2538,367:7941493,19130130 -g2538,367:11871031,19130130 -g2538,367:13040848,19130130 -g2538,367:14210665,19130130 -g2538,367:15778941,19130130 -k2538,368:17717170,19130130:742852 -k2538,368:18460021,19130130:742851 -) -(2538,369:6630773,19988532:11829248,505283,126483 -h2538,368:6630773,19988532:0,0,0 -r2538,368:6630773,19988532:0,631766,126483 -g2538,368:7941493,19988532 -g2538,368:7941493,19988532 -g2538,368:10685485,19988532 -k2538,369:14971212,19988532:3488809 -k2538,369:18460021,19988532:3488809 -) -(2538,370:6630773,20846934:11829248,505283,102891 -h2538,369:6630773,20846934:0,0,0 -r2538,369:6630773,20846934:0,608174,102891 -g2538,369:7941493,20846934 -g2538,369:7941493,20846934 -g2538,369:12266213,20846934 -g2538,369:13834489,20846934 -k2538,370:16744944,20846934:1715078 -k2538,370:18460021,20846934:1715077 -) -(2538,371:6630773,21705336:11829248,505283,102891 -h2538,370:6630773,21705336:0,0,0 -r2538,370:6630773,21705336:0,608174,102891 -g2538,370:7941493,21705336 -g2538,370:7941493,21705336 -g2538,370:13451759,21705336 -k2538,371:16553579,21705336:1906443 -k2538,371:18460021,21705336:1906442 -) -(2538,372:6630773,22563738:11829248,505283,102891 -h2538,371:6630773,22563738:0,0,0 -r2538,371:6630773,22563738:0,608174,102891 -g2538,371:7941493,22563738 -g2538,371:7941493,22563738 -g2538,371:12266213,22563738 -g2538,371:13834489,22563738 -g2538,371:15402765,22563738 -k2538,372:17529082,22563738:930940 -k2538,372:18460021,22563738:930939 -) -(2538,373:6630773,23422141:11829248,505283,102891 -h2538,372:6630773,23422141:0,0,0 -r2538,372:6630773,23422141:0,608174,102891 -g2538,372:7941493,23422141 -g2538,372:7941493,23422141 -g2538,372:12266213,23422141 -k2538,373:15960806,23422141:2499216 -k2538,373:18460021,23422141:2499215 -) -(2538,374:6630773,24280543:11829248,505283,102891 -h2538,373:6630773,24280543:0,0,0 -r2538,373:6630773,24280543:0,608174,102891 -g2538,373:7941493,24280543 -g2538,373:7941493,24280543 -g2538,373:13056577,24280543 -k2538,374:16355988,24280543:2104034 -k2538,374:18460021,24280543:2104033 -) -(2538,375:6630773,25138945:11829248,505283,102891 -h2538,374:6630773,25138945:0,0,0 -r2538,374:6630773,25138945:0,608174,102891 -g2538,374:7941493,25138945 -g2538,374:7941493,25138945 -g2538,374:13846941,25138945 -k2538,375:16751170,25138945:1708852 -k2538,375:18460021,25138945:1708851 -) -(2538,376:6630773,25997347:11829248,505283,126483 -h2538,375:6630773,25997347:0,0,0 -r2538,375:6630773,25997347:0,631766,126483 -g2538,375:7941493,25997347 -g2538,375:7941493,25997347 -g2538,375:13846941,25997347 -k2538,376:16751170,25997347:1708852 -k2538,376:18460021,25997347:1708851 -) -(2538,377:6630773,26855749:11829248,505283,102891 -h2538,376:6630773,26855749:0,0,0 -r2538,376:6630773,26855749:0,608174,102891 -g2538,376:7941493,26855749 -g2538,376:7941493,26855749 -g2538,376:13056577,26855749 -g2538,376:14624853,26855749 -g2538,376:16193129,26855749 -k2538,377:17924264,26855749:535758 -k2538,377:18460021,26855749:535757 -) -(2538,378:6630773,27714152:11829248,505283,126483 -h2538,377:6630773,27714152:0,0,0 -r2538,377:6630773,27714152:0,631766,126483 -g2538,377:7941493,27714152 -g2538,377:7941493,27714152 -g2538,377:13846941,27714152 -k2538,378:16751170,27714152:1708852 -k2538,378:18460021,27714152:1708851 -) -(2538,379:6630773,28572554:11829248,505283,126483 -h2538,378:6630773,28572554:0,0,0 -r2538,378:6630773,28572554:0,631766,126483 -g2538,378:7941493,28572554 -g2538,378:7941493,28572554 -g2538,378:15032488,28572554 -k2538,379:17343943,28572554:1116078 -k2538,379:18460021,28572554:1116078 -) -(2538,380:6630773,29430956:11829248,513147,102891 -h2538,379:6630773,29430956:0,0,0 -r2538,379:6630773,29430956:0,616038,102891 -g2538,379:7941493,29430956 -g2538,379:7941493,29430956 -g2538,379:14242123,29430956 -k2538,380:16948761,29430956:1511261 -k2538,380:18460021,29430956:1511260 -) -(2538,381:6630773,30289358:11829248,513147,102891 -h2538,380:6630773,30289358:0,0,0 -r2538,380:6630773,30289358:0,616038,102891 -g2538,380:7941493,30289358 -g2538,380:7941493,30289358 -g2538,380:11871031,30289358 -k2538,381:15763215,30289358:2696807 -k2538,381:18460021,30289358:2696806 -) -(2538,382:6630773,31147760:11829248,505283,102891 -h2538,381:6630773,31147760:0,0,0 -r2538,381:6630773,31147760:0,608174,102891 -g2538,381:7941493,31147760 -g2538,381:7941493,31147760 -g2538,381:12661395,31147760 -k2538,382:16158397,31147760:2301625 -k2538,382:18460021,31147760:2301624 -) -(2538,383:6630773,32006162:11829248,505283,102891 -h2538,382:6630773,32006162:0,0,0 -r2538,382:6630773,32006162:0,608174,102891 -g2538,382:7941493,32006162 -g2538,382:7941493,32006162 -g2538,382:13451759,32006162 -g2538,382:15020035,32006162 -k2538,383:17337717,32006162:1122305 -k2538,383:18460021,32006162:1122304 -) -(2538,384:6630773,32864565:11829248,505283,126483 -h2538,383:6630773,32864565:0,0,0 -r2538,383:6630773,32864565:0,631766,126483 -g2538,383:7941493,32864565 -g2538,383:7941493,32864565 -g2538,383:13846941,32864565 -g2538,383:15415217,32864565 -g2538,383:16983493,32864565 -k2538,384:18319446,32864565:140576 -k2538,384:18460021,32864565:140575 -) -(2538,385:6630773,33722967:11829248,505283,102891 -h2538,384:6630773,33722967:0,0,0 -r2538,384:6630773,33722967:0,608174,102891 -g2538,384:7941493,33722967 -g2538,384:7941493,33722967 -g2538,384:10290302,33722967 -g2538,384:11858578,33722967 -k2538,385:15756988,33722967:2703033 -k2538,385:18460021,33722967:2703033 -) -(2538,386:6630773,34581369:11829248,505283,102891 -h2538,385:6630773,34581369:0,0,0 -r2538,385:6630773,34581369:0,608174,102891 -g2538,385:7941493,34581369 -g2538,385:7941493,34581369 -g2538,385:10290302,34581369 -g2538,385:12584717,34581369 -g2538,385:13754534,34581369 -g2538,385:14924351,34581369 -g2538,385:16492627,34581369 -k2538,385:18460021,34581369:598347 -) -(2538,386:9252213,35422857:9207808,485622,102891 -g2538,385:10820489,35422857 -k2538,386:15237944,35422857:3222078 -k2538,386:18460021,35422857:3222077 -) -(2538,387:6630773,36281259:11829248,505283,102891 -h2538,386:6630773,36281259:0,0,0 -r2538,386:6630773,36281259:0,608174,102891 -g2538,386:7941493,36281259 -g2538,386:7941493,36281259 -g2538,386:13451759,36281259 -k2538,387:16553579,36281259:1906443 -k2538,387:18460021,36281259:1906442 -) -(2538,388:6630773,37139661:11829248,513147,102891 -h2538,387:6630773,37139661:0,0,0 -r2538,387:6630773,37139661:0,616038,102891 -g2538,387:7941493,37139661 -g2538,387:7941493,37139661 -g2538,387:12266213,37139661 -k2538,388:15960806,37139661:2499216 -k2538,388:18460021,37139661:2499215 -) -(2538,389:6630773,37998064:11829248,505283,126483 -h2538,388:6630773,37998064:0,0,0 -r2538,388:6630773,37998064:0,631766,126483 -g2538,388:7941493,37998064 -g2538,388:7941493,37998064 -g2538,388:12266213,37998064 -k2538,389:15960806,37998064:2499216 -k2538,389:18460021,37998064:2499215 -) -(2538,390:6630773,38856466:11829248,505283,102891 -h2538,389:6630773,38856466:0,0,0 -r2538,389:6630773,38856466:0,608174,102891 -g2538,389:7941493,38856466 -g2538,389:7941493,38856466 -g2538,389:11475849,38856466 -g2538,389:12645666,38856466 -g2538,389:13815483,38856466 -g2538,389:15383759,38856466 -k2538,390:17519579,38856466:940443 -k2538,390:18460021,38856466:940442 -) -(2538,391:6630773,39714868:11829248,505283,102891 -h2538,390:6630773,39714868:0,0,0 -r2538,390:6630773,39714868:0,608174,102891 -g2538,390:7941493,39714868 -g2538,390:7941493,39714868 -g2538,390:13056577,39714868 -k2538,391:16355988,39714868:2104034 -k2538,391:18460021,39714868:2104033 -) -(2538,392:6630773,40573270:11829248,505283,102891 -h2538,391:6630773,40573270:0,0,0 -r2538,391:6630773,40573270:0,608174,102891 -g2538,391:7941493,40573270 -g2538,391:7941493,40573270 -g2538,391:10290302,40573270 -k2538,392:14972850,40573270:3487171 -k2538,392:18460021,40573270:3487171 -) -(2538,393:6630773,41431672:11829248,505283,102891 -h2538,392:6630773,41431672:0,0,0 -r2538,392:6630773,41431672:0,608174,102891 -g2538,392:7941493,41431672 -g2538,392:7941493,41431672 -g2538,392:12661395,41431672 -k2538,393:16158397,41431672:2301625 -k2538,393:18460021,41431672:2301624 -) -(2538,394:6630773,42290074:11829248,505283,126483 -h2538,393:6630773,42290074:0,0,0 -r2538,393:6630773,42290074:0,631766,126483 -g2538,393:7941493,42290074 -g2538,393:7941493,42290074 -g2538,393:11871031,42290074 -g2538,393:13040848,42290074 -g2538,393:14210665,42290074 -g2538,393:15778941,42290074 -k2538,393:18460021,42290074:1312033 -) -(2538,394:9252213,43131562:9207808,485622,102891 -g2538,393:10820489,43131562 -g2538,393:12388765,43131562 -k2538,394:16022082,43131562:2437940 -k2538,394:18460021,43131562:2437939 -) -(2538,395:6630773,43989965:11829248,505283,126483 -h2538,394:6630773,43989965:0,0,0 -r2538,394:6630773,43989965:0,631766,126483 -g2538,394:7941493,43989965 -g2538,394:7941493,43989965 -g2538,394:11475849,43989965 -k2538,395:15565624,43989965:2894398 -k2538,395:18460021,43989965:2894397 -) -(2538,396:6630773,44848367:11829248,505283,126483 -h2538,395:6630773,44848367:0,0,0 -r2538,395:6630773,44848367:0,631766,126483 -g2538,395:7941493,44848367 -g2538,395:7941493,44848367 -g2538,395:13451759,44848367 -g2538,395:15020035,44848367 -k2538,396:17337717,44848367:1122305 -k2538,396:18460021,44848367:1122304 -) -(2538,397:6630773,45706769:11829248,505283,102891 -h2538,396:6630773,45706769:0,0,0 -r2538,396:6630773,45706769:0,608174,102891 -g2538,396:7941493,45706769 -g2538,396:7941493,45706769 -g2538,396:9499938,45706769 -g2538,396:10669755,45706769 -k2538,397:15162577,45706769:3297445 -k2538,397:18460021,45706769:3297444 -) -] -k2538,450:19606901,45706769:1146880 -r2538,450:19606901,45706769:0,40234515,126483 -k2538,450:20753781,45706769:1146880 -[2538,450:20753781,45706769:11829248,40108032,102891 -(2538,398:20753781,6254097:11829248,505283,102891 -h2538,397:20753781,6254097:0,0,0 -r2538,397:20753781,6254097:0,608174,102891 -g2538,397:22064501,6254097 -g2538,397:22064501,6254097 -g2538,397:24808493,6254097 -g2538,397:25978310,6254097 -k2538,398:29679129,6254097:2903901 -k2538,398:32583029,6254097:2903900 -) -(2538,399:20753781,7112123:11829248,505283,102891 -h2538,398:20753781,7112123:0,0,0 -r2538,398:20753781,7112123:0,608174,102891 -g2538,398:22064501,7112123 -g2538,398:22064501,7112123 -g2538,398:25203675,7112123 -g2538,398:26771951,7112123 -k2538,399:30275179,7112123:2307851 -k2538,399:32583029,7112123:2307850 -) -(2538,400:20753781,7970150:11829248,505283,102891 -h2538,399:20753781,7970150:0,0,0 -r2538,399:20753781,7970150:0,608174,102891 -g2538,399:22064501,7970150 -g2538,399:22064501,7970150 -g2538,399:26389221,7970150 -k2538,400:30083814,7970150:2499216 -k2538,400:32583029,7970150:2499215 -) -(2538,401:20753781,8828176:11829248,505283,102891 -h2538,400:20753781,8828176:0,0,0 -r2538,400:20753781,8828176:0,608174,102891 -g2538,400:22064501,8828176 -g2538,400:22064501,8828176 -g2538,400:28365131,8828176 -k2538,401:31071769,8828176:1511261 -k2538,401:32583029,8828176:1511260 -) -(2538,402:20753781,9686202:11829248,505283,102891 -h2538,401:20753781,9686202:0,0,0 -r2538,401:20753781,9686202:0,608174,102891 -g2538,401:22064501,9686202 -g2538,401:22064501,9686202 -g2538,401:27179585,9686202 -k2538,402:30478996,9686202:2104034 -k2538,402:32583029,9686202:2104033 -) -(2538,403:20753781,10544229:11829248,505283,134348 -h2538,402:20753781,10544229:0,0,0 -r2538,402:20753781,10544229:0,639631,134348 -g2538,402:22064501,10544229 -g2538,402:22064501,10544229 -g2538,402:27179585,10544229 -g2538,402:28747861,10544229 -g2538,402:30316137,10544229 -k2538,403:32047272,10544229:535758 -k2538,403:32583029,10544229:535757 -) -(2538,404:20753781,11402255:11829248,505283,134348 -h2538,403:20753781,11402255:0,0,0 -r2538,403:20753781,11402255:0,639631,134348 -g2538,403:22064501,11402255 -g2538,403:22064501,11402255 -g2538,403:27574767,11402255 -k2538,404:30676587,11402255:1906443 -k2538,404:32583029,11402255:1906442 -) -(2538,405:20753781,12260281:11829248,505283,102891 -h2538,404:20753781,12260281:0,0,0 -r2538,404:20753781,12260281:0,608174,102891 -g2538,404:22064501,12260281 -g2538,404:22064501,12260281 -g2538,404:28760314,12260281 -k2538,405:31269360,12260281:1313669 -k2538,405:32583029,12260281:1313669 -) -(2538,406:20753781,13118308:11829248,505283,102891 -h2538,405:20753781,13118308:0,0,0 -r2538,405:20753781,13118308:0,608174,102891 -g2538,405:22064501,13118308 -g2538,405:22064501,13118308 -g2538,405:28365131,13118308 -k2538,406:31071769,13118308:1511261 -k2538,406:32583029,13118308:1511260 -) -(2538,407:20753781,13976334:11829248,505283,102891 -h2538,406:20753781,13976334:0,0,0 -r2538,406:20753781,13976334:0,608174,102891 -g2538,406:22064501,13976334 -g2538,406:22064501,13976334 -g2538,406:26784403,13976334 -k2538,407:30281405,13976334:2301625 -k2538,407:32583029,13976334:2301624 -) -(2538,408:20753781,14834360:11829248,505283,102891 -h2538,407:20753781,14834360:0,0,0 -r2538,407:20753781,14834360:0,608174,102891 -g2538,407:22064501,14834360 -g2538,407:22064501,14834360 -g2538,407:27179585,14834360 -k2538,408:30478996,14834360:2104034 -k2538,408:32583029,14834360:2104033 -) -(2538,409:20753781,15692386:11829248,505283,102891 -h2538,408:20753781,15692386:0,0,0 -r2538,408:20753781,15692386:0,608174,102891 -g2538,408:22064501,15692386 -g2538,408:22064501,15692386 -g2538,408:25598857,15692386 -g2538,408:27167133,15692386 -g2538,408:28735409,15692386 -g2538,408:30303685,15692386 -k2538,409:32041046,15692386:541984 -k2538,409:32583029,15692386:541983 -) -(2538,410:20753781,16550413:11829248,505283,102891 -h2538,409:20753781,16550413:0,0,0 -r2538,409:20753781,16550413:0,608174,102891 -g2538,409:22064501,16550413 -g2538,409:22064501,16550413 -g2538,409:25994039,16550413 -k2538,410:29886223,16550413:2696807 -k2538,410:32583029,16550413:2696806 -) -(2538,411:20753781,17408439:11829248,513147,102891 -h2538,410:20753781,17408439:0,0,0 -r2538,410:20753781,17408439:0,616038,102891 -g2538,410:22064501,17408439 -g2538,410:22064501,17408439 -k2538,410:32583029,17408439:70124 -) -(2538,411:23375221,18249927:9207808,485622,11795 -k2538,411:28576814,18249927:4006216 -k2538,411:32583029,18249927:4006215 -) -(2538,412:20753781,19107953:11829248,505283,126483 -h2538,411:20753781,19107953:0,0,0 -r2538,411:20753781,19107953:0,631766,126483 -g2538,411:22064501,19107953 -g2538,411:22064501,19107953 -g2538,411:25994039,19107953 -k2538,412:29886223,19107953:2696807 -k2538,412:32583029,19107953:2696806 -) -(2538,413:20753781,19965980:11829248,505283,102891 -h2538,412:20753781,19965980:0,0,0 -r2538,412:20753781,19965980:0,608174,102891 -g2538,412:22064501,19965980 -g2538,412:22064501,19965980 -g2538,412:26784403,19965980 -g2538,412:28352679,19965980 -k2538,413:31065543,19965980:1517487 -k2538,413:32583029,19965980:1517486 -) -(2538,414:20753781,20824006:11829248,505283,102891 -h2538,413:20753781,20824006:0,0,0 -r2538,413:20753781,20824006:0,608174,102891 -g2538,413:22064501,20824006 -g2538,413:22064501,20824006 -g2538,413:25203675,20824006 -k2538,414:29491041,20824006:3091989 -k2538,414:32583029,20824006:3091988 -) -(2538,415:20753781,21682032:11829248,505283,102891 -h2538,414:20753781,21682032:0,0,0 -r2538,414:20753781,21682032:0,608174,102891 -g2538,414:22064501,21682032 -g2538,414:22064501,21682032 -g2538,414:25203675,21682032 -g2538,414:26373492,21682032 -k2538,415:29876720,21682032:2706310 -k2538,415:32583029,21682032:2706309 -) -(2538,416:20753781,22540059:11829248,505283,102891 -h2538,415:20753781,22540059:0,0,0 -r2538,415:20753781,22540059:0,608174,102891 -g2538,415:22064501,22540059 -g2538,415:22064501,22540059 -g2538,415:24018128,22540059 -k2538,416:28898267,22540059:3684762 -k2538,416:32583029,22540059:3684762 -) -(2538,417:20753781,23398085:11829248,513147,126483 -h2538,416:20753781,23398085:0,0,0 -r2538,416:20753781,23398085:0,639630,126483 -g2538,416:22064501,23398085 -g2538,416:22064501,23398085 -g2538,416:25598857,23398085 -k2538,417:29489402,23398085:3093627 -k2538,417:32583029,23398085:3093627 -) -(2538,418:20753781,24256111:11829248,505283,134348 -h2538,417:20753781,24256111:0,0,0 -r2538,417:20753781,24256111:0,639631,134348 -g2538,417:22064501,24256111 -g2538,417:22064501,24256111 -g2538,417:25994039,24256111 -g2538,417:27562315,24256111 -k2538,418:30670361,24256111:1912669 -k2538,418:32583029,24256111:1912668 -) -(2538,419:20753781,25114138:11829248,505283,126483 -h2538,418:20753781,25114138:0,0,0 -r2538,418:20753781,25114138:0,631766,126483 -g2538,418:22064501,25114138 -g2538,418:22064501,25114138 -g2538,418:25598857,25114138 -k2538,419:29489402,25114138:3093627 -k2538,419:32583029,25114138:3093627 -) -(2538,420:20753781,25972164:11829248,505283,102891 -h2538,419:20753781,25972164:0,0,0 -r2538,419:20753781,25972164:0,608174,102891 -g2538,419:22064501,25972164 -g2538,419:22064501,25972164 -g2538,419:25598857,25972164 -k2538,420:29489402,25972164:3093627 -k2538,420:32583029,25972164:3093627 -) -(2538,421:20753781,26830190:11829248,505283,102891 -h2538,420:20753781,26830190:0,0,0 -r2538,420:20753781,26830190:0,608174,102891 -g2538,420:22064501,26830190 -g2538,420:22064501,26830190 -g2538,420:25598857,26830190 -g2538,420:26768674,26830190 -g2538,420:27938491,26830190 -k2538,421:30659219,26830190:1923810 -k2538,421:32583029,26830190:1923810 -) -(2538,422:20753781,27688216:11829248,505283,102891 -h2538,421:20753781,27688216:0,0,0 -r2538,421:20753781,27688216:0,608174,102891 -g2538,421:22064501,27688216 -g2538,421:22064501,27688216 -g2538,421:25598857,27688216 -k2538,422:29489402,27688216:3093627 -k2538,422:32583029,27688216:3093627 -) -(2538,423:20753781,28546243:11829248,505283,126483 -h2538,422:20753781,28546243:0,0,0 -r2538,422:20753781,28546243:0,631766,126483 -g2538,422:22064501,28546243 -g2538,422:22064501,28546243 -g2538,422:25598857,28546243 -k2538,423:29688632,28546243:2894398 -k2538,423:32583029,28546243:2894397 -) -(2538,424:20753781,29404269:11829248,505283,134348 -h2538,423:20753781,29404269:0,0,0 -r2538,423:20753781,29404269:0,639631,134348 -g2538,423:22064501,29404269 -g2538,423:22064501,29404269 -g2538,423:29155496,29404269 -k2538,424:31466951,29404269:1116078 -k2538,424:32583029,29404269:1116078 -) -(2538,425:20753781,30262295:11829248,505283,102891 -h2538,424:20753781,30262295:0,0,0 -r2538,424:20753781,30262295:0,608174,102891 -g2538,424:22064501,30262295 -g2538,424:22064501,30262295 -g2538,424:24413310,30262295 -g2538,424:25981586,30262295 -k2538,425:29879996,30262295:2703033 -k2538,425:32583029,30262295:2703033 -) -(2538,426:20753781,31120322:11829248,505283,102891 -h2538,425:20753781,31120322:0,0,0 -r2538,425:20753781,31120322:0,608174,102891 -g2538,425:22064501,31120322 -g2538,425:22064501,31120322 -g2538,425:24808493,31120322 -k2538,426:29293450,31120322:3289580 -k2538,426:32583029,31120322:3289579 -) -(2538,427:20753781,31978348:11829248,505283,102891 -h2538,426:20753781,31978348:0,0,0 -r2538,426:20753781,31978348:0,608174,102891 -g2538,426:22064501,31978348 -g2538,426:22064501,31978348 -g2538,426:24808493,31978348 -k2538,427:29094220,31978348:3488809 -k2538,427:32583029,31978348:3488809 -) -(2538,428:20753781,32836374:11829248,505283,102891 -h2538,427:20753781,32836374:0,0,0 -r2538,427:20753781,32836374:0,608174,102891 -g2538,427:22064501,32836374 -g2538,427:22064501,32836374 -g2538,427:26784403,32836374 -g2538,427:28352679,32836374 -k2538,428:31065543,32836374:1517487 -k2538,428:32583029,32836374:1517486 -) -(2538,429:20753781,33694401:11829248,505283,102891 -h2538,428:20753781,33694401:0,0,0 -r2538,428:20753781,33694401:0,608174,102891 -g2538,428:22064501,33694401 -g2538,428:22064501,33694401 -g2538,428:26389221,33694401 -k2538,429:30083814,33694401:2499216 -k2538,429:32583029,33694401:2499215 -) -(2538,430:20753781,34552427:11829248,505283,102891 -h2538,429:20753781,34552427:0,0,0 -r2538,429:20753781,34552427:0,608174,102891 -g2538,429:22064501,34552427 -g2538,429:22064501,34552427 -g2538,429:27179585,34552427 -k2538,430:30478996,34552427:2104034 -k2538,430:32583029,34552427:2104033 -) -(2538,431:20753781,35410453:11829248,505283,102891 -h2538,430:20753781,35410453:0,0,0 -r2538,430:20753781,35410453:0,608174,102891 -g2538,430:22064501,35410453 -g2538,430:22064501,35410453 -g2538,430:27574767,35410453 -k2538,431:30676587,35410453:1906443 -k2538,431:32583029,35410453:1906442 -) -(2538,432:20753781,36268480:11829248,505283,102891 -h2538,431:20753781,36268480:0,0,0 -r2538,431:20753781,36268480:0,608174,102891 -g2538,431:22064501,36268480 -g2538,431:22064501,36268480 -g2538,431:27179585,36268480 -k2538,432:30478996,36268480:2104034 -k2538,432:32583029,36268480:2104033 -) -(2538,433:20753781,37126506:11829248,505283,102891 -h2538,432:20753781,37126506:0,0,0 -r2538,432:20753781,37126506:0,608174,102891 -g2538,432:22064501,37126506 -g2538,432:22064501,37126506 -g2538,432:26784403,37126506 -k2538,433:30281405,37126506:2301625 -k2538,433:32583029,37126506:2301624 -) -(2538,434:20753781,37984532:11829248,505283,102891 -h2538,433:20753781,37984532:0,0,0 -r2538,433:20753781,37984532:0,608174,102891 -g2538,433:22064501,37984532 -g2538,433:22064501,37984532 -g2538,433:27179585,37984532 -k2538,434:30478996,37984532:2104034 -k2538,434:32583029,37984532:2104033 -) -(2538,435:20753781,38842559:11829248,505283,102891 -h2538,434:20753781,38842559:0,0,0 -r2538,434:20753781,38842559:0,608174,102891 -g2538,434:22064501,38842559 -g2538,434:22064501,38842559 -g2538,434:27574767,38842559 -k2538,435:30676587,38842559:1906443 -k2538,435:32583029,38842559:1906442 -) -(2538,436:20753781,39700585:11829248,505283,102891 -h2538,435:20753781,39700585:0,0,0 -r2538,435:20753781,39700585:0,608174,102891 -g2538,435:22064501,39700585 -g2538,435:22064501,39700585 -g2538,435:29155496,39700585 -k2538,436:31466951,39700585:1116078 -k2538,436:32583029,39700585:1116078 -) -(2538,437:20753781,40558611:11829248,513147,102891 -h2538,436:20753781,40558611:0,0,0 -r2538,436:20753781,40558611:0,616038,102891 -g2538,436:22064501,40558611 -g2538,436:22064501,40558611 -g2538,436:27179585,40558611 -g2538,436:28747861,40558611 -k2538,437:31263134,40558611:1319896 -k2538,437:32583029,40558611:1319895 -) -(2538,438:20753781,41416637:11829248,505283,102891 -h2538,437:20753781,41416637:0,0,0 -r2538,437:20753781,41416637:0,608174,102891 -g2538,437:22064501,41416637 -g2538,437:22064501,41416637 -g2538,437:27574767,41416637 -k2538,438:30676587,41416637:1906443 -k2538,438:32583029,41416637:1906442 -) -(2538,439:20753781,42274664:11829248,505283,102891 -h2538,438:20753781,42274664:0,0,0 -r2538,438:20753781,42274664:0,608174,102891 -g2538,438:22064501,42274664 -g2538,438:22064501,42274664 -g2538,438:26784403,42274664 -k2538,439:30281405,42274664:2301625 -k2538,439:32583029,42274664:2301624 -) -(2538,440:20753781,43132690:11829248,505283,102891 -h2538,439:20753781,43132690:0,0,0 -r2538,439:20753781,43132690:0,608174,102891 -g2538,439:22064501,43132690 -g2538,439:22064501,43132690 -g2538,439:26784403,43132690 -k2538,440:30281405,43132690:2301625 -k2538,440:32583029,43132690:2301624 -) -(2538,441:20753781,43990716:11829248,505283,102891 -h2538,440:20753781,43990716:0,0,0 -r2538,440:20753781,43990716:0,608174,102891 -g2538,440:22064501,43990716 -g2538,440:22064501,43990716 -g2538,440:24808493,43990716 -k2538,441:29293450,43990716:3289580 -k2538,441:32583029,43990716:3289579 -) -(2538,442:20753781,44848743:11829248,505283,102891 -h2538,441:20753781,44848743:0,0,0 -r2538,441:20753781,44848743:0,608174,102891 -g2538,441:22064501,44848743 -g2538,441:22064501,44848743 -g2538,441:24808493,44848743 -g2538,441:26376769,44848743 -g2538,441:27945045,44848743 -k2538,442:30861726,44848743:1721304 -k2538,442:32583029,44848743:1721303 -) -(2538,443:20753781,45706769:11829248,513147,102891 -h2538,442:20753781,45706769:0,0,0 -r2538,442:20753781,45706769:0,616038,102891 -g2538,442:22064501,45706769 -g2538,442:22064501,45706769 -g2538,442:27969949,45706769 -k2538,443:30874178,45706769:1708852 -k2538,443:32583029,45706769:1708851 -) -] -(2538,450:32583029,45706769:0,355205,126483 -h2538,450:32583029,45706769:420741,355205,126483 -k2538,450:32583029,45706769:-420741 -) -) -] -(2538,450:32583029,45706769:0,0,0 -g2538,450:32583029,45706769 -) -) -] -(2538,450:6630773,47279633:25952256,0,0 -h2538,450:6630773,47279633:25952256,0,0 -) -] -h2538,450:4262630,4025873:0,0,0 -] -!31451 -}352 -!12 -{353 -[1,17323:4262630,47279633:28320399,43253760,0 -(1,17323:4262630,4025873:0,0,0 -[1,17323:-473657,4025873:25952256,0,0 -(1,17323:-473657,-710414:25952256,0,0 -h1,17323:-473657,-710414:0,0,0 -(1,17323:-473657,-710414:0,0,0 -(1,17323:-473657,-710414:0,0,0 -g1,17323:-473657,-710414 -(1,17323:-473657,-710414:65781,0,65781 -g1,17323:-407876,-710414 -[1,17323:-407876,-644633:0,0,0 -] -) -k1,17323:-473657,-710414:-65781 -) -) -k1,17323:25478599,-710414:25952256 -g1,17323:25478599,-710414 -) -] -) -[1,17323:6630773,47279633:25952256,43253760,0 -[1,17323:6630773,4812305:25952256,786432,0 -(1,17323:6630773,4812305:25952256,513147,134348 -(1,17323:6630773,4812305:25952256,513147,134348 -g1,17323:3078558,4812305 -[1,17323:3078558,4812305:0,0,0 -(1,17323:3078558,2439708:0,1703936,0 -k1,17323:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17323:2537886,2439708:1179648,16384,0 -) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17323:3078558,1915420:16384,1179648,0 -) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 -) -] -) -) -) -] -[1,17323:3078558,4812305:0,0,0 -(1,17323:3078558,2439708:0,1703936,0 -g1,17323:29030814,2439708 -g1,17323:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17323:36151628,1915420:16384,1179648,0 -) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 -) -] -) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17323:37855564,2439708:1179648,16384,0 -) -) -k1,17323:3078556,2439708:-34777008 -) -] -[1,17323:3078558,4812305:0,0,0 -(1,17323:3078558,49800853:0,16384,2228224 -k1,17323:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17323:2537886,49800853:1179648,16384,0 -) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17323:3078558,51504789:16384,1179648,0 -) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 -) -] -) -) -) -] -[1,17323:3078558,4812305:0,0,0 -(1,17323:3078558,49800853:0,16384,2228224 -g1,17323:29030814,49800853 -g1,17323:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17323:36151628,51504789:16384,1179648,0 -) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 -) -] -) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17323:37855564,49800853:1179648,16384,0 -) -) -k1,17323:3078556,49800853:-34777008 -) -] -g1,17323:6630773,4812305 -k1,17323:23318207,4812305:15492057 -g1,17323:25216129,4812305 -g1,17323:26031396,4812305 -g1,17323:26644813,4812305 -g1,17323:28902528,4812305 -g1,17323:29858042,4812305 -) -) -] -[1,17323:6630773,45706769:25952256,40108032,0 -(1,17323:6630773,45706769:25952256,40108032,0 -(1,17323:6630773,45706769:0,0,0 -g1,17323:6630773,45706769 -) -[1,17323:6630773,45706769:25952256,40108032,0 -(2538,493:6630773,24208449:25952256,18609712,126483 -[2538,493:6630773,24208449:11829248,18609712,102891 -(2538,444:6630773,6254097:11829248,505283,102891 -h2538,443:6630773,6254097:0,0,0 -r2538,493:6630773,6254097:0,608174,102891 -g2538,443:7941493,6254097 -g2538,443:7941493,6254097 -g2538,443:12266213,6254097 -k2538,444:15960806,6254097:2499216 -k2538,444:18460021,6254097:2499215 -) -(2538,445:6630773,7095585:11829248,505283,126483 -h2538,444:6630773,7095585:0,0,0 -r2538,493:6630773,7095585:0,631766,126483 -g2538,444:7941493,7095585 -g2538,444:7941493,7095585 -g2538,444:10685485,7095585 -k2538,445:15170442,7095585:3289580 -k2538,445:18460021,7095585:3289579 -) -(2538,446:6630773,7937073:11829248,505283,126483 -h2538,445:6630773,7937073:0,0,0 -r2538,493:6630773,7937073:0,631766,126483 -g2538,445:7941493,7937073 -g2538,445:7941493,7937073 -g2538,445:10685485,7937073 -g2538,445:12253761,7937073 -g2538,445:13822037,7937073 -k2538,446:16738718,7937073:1721304 -k2538,446:18460021,7937073:1721303 -) -(2538,450:6630773,9340857:11829248,505283,126483 -h2538,449:6630773,9340857:0,0,0 -g2538,449:8898318,9340857 -g2538,449:10288992,9340857 -g2538,449:11996860,9340857 -k2538,450:16141685,9340857:2318337 -k2538,450:18460021,9340857:2318336 -) -(2538,451:6630773,10182345:11829248,505283,102891 -h2538,450:6630773,10182345:0,0,0 -r2538,493:6630773,10182345:0,608174,102891 -g2538,450:7941493,10182345 -g2538,450:7941493,10182345 -g2538,450:11475849,10182345 -k2538,451:15928693,10182345:2531328 -k2538,451:18460021,10182345:2531328 -) -(2538,452:6630773,11023833:11829248,505283,102891 -h2538,451:6630773,11023833:0,0,0 -r2538,493:6630773,11023833:0,608174,102891 -g2538,451:7941493,11023833 -g2538,451:7941493,11023833 -g2538,451:11475849,11023833 -g2538,451:13770264,11023833 -k2538,452:16712831,11023833:1747190 -k2538,452:18460021,11023833:1747190 -) -(2538,453:6630773,11865321:11829248,505283,102891 -h2538,452:6630773,11865321:0,0,0 -r2538,493:6630773,11865321:0,608174,102891 -g2538,452:7941493,11865321 -g2538,452:7941493,11865321 -g2538,452:11475849,11865321 -k2538,453:15565624,11865321:2894398 -k2538,453:18460021,11865321:2894397 -) -(2538,454:6630773,12706809:11829248,505283,102891 -h2538,453:6630773,12706809:0,0,0 -r2538,493:6630773,12706809:0,608174,102891 -g2538,453:7941493,12706809 -g2538,453:7941493,12706809 -g2538,453:10685485,12706809 -k2538,454:15533511,12706809:2926510 -k2538,454:18460021,12706809:2926510 -) -(2538,455:6630773,13548297:11829248,505283,102891 -h2538,454:6630773,13548297:0,0,0 -r2538,493:6630773,13548297:0,608174,102891 -g2538,454:7941493,13548297 -g2538,454:7941493,13548297 -g2538,454:11475849,13548297 -g2538,454:12645666,13548297 -k2538,455:15951303,13548297:2508719 -k2538,455:18460021,13548297:2508718 -) -(2538,459:6630773,14952081:11829248,426639,126483 -h2538,458:6630773,14952081:0,0,0 -k2538,459:14083855,14952081:4376167 -k2538,459:18460021,14952081:4376166 -) -(2538,460:6630773,15793569:11829248,485622,102891 -h2538,459:6630773,15793569:0,0,0 -r2538,493:6630773,15793569:0,588513,102891 -g2538,459:7941493,15793569 -g2538,459:7941493,15793569 -g2538,459:8709574,15793569 -g2538,459:9879391,15793569 -k2538,460:14568165,15793569:3891856 -k2538,460:18460021,15793569:3891856 -) -(2538,461:6630773,16635057:11829248,485622,102891 -h2538,460:6630773,16635057:0,0,0 -r2538,493:6630773,16635057:0,588513,102891 -g2538,460:7941493,16635057 -g2538,460:7941493,16635057 -g2538,460:8709574,16635057 -g2538,460:9879391,16635057 -g2538,460:11049208,16635057 -k2538,461:15352303,16635057:3107718 -k2538,461:18460021,16635057:3107718 -) -(2538,462:6630773,17476545:11829248,485622,102891 -h2538,461:6630773,17476545:0,0,0 -r2538,493:6630773,17476545:0,588513,102891 -g2538,461:7941493,17476545 -g2538,461:7941493,17476545 -g2538,461:8709574,17476545 -g2538,461:9879391,17476545 -k2538,462:14568165,17476545:3891856 -k2538,462:18460021,17476545:3891856 -) -(2538,463:6630773,18318033:11829248,485622,102891 -h2538,462:6630773,18318033:0,0,0 -r2538,493:6630773,18318033:0,588513,102891 -g2538,462:7941493,18318033 -g2538,462:7941493,18318033 -g2538,462:9104756,18318033 -k2538,463:14180848,18318033:4279174 -k2538,463:18460021,18318033:4279173 -) -(2538,464:6630773,19159521:11829248,505283,102891 -h2538,463:6630773,19159521:0,0,0 -r2538,493:6630773,19159521:0,608174,102891 -g2538,463:7941493,19159521 -g2538,463:7941493,19159521 -g2538,463:8709574,19159521 -g2538,463:9879391,19159521 -k2538,464:14767395,19159521:3692627 -k2538,464:18460021,19159521:3692626 -) -(2538,465:6630773,20001009:11829248,485622,102891 -h2538,464:6630773,20001009:0,0,0 -r2538,493:6630773,20001009:0,588513,102891 -g2538,464:7941493,20001009 -g2538,464:7941493,20001009 -g2538,464:8709574,20001009 -k2538,465:13983257,20001009:4476765 -k2538,465:18460021,20001009:4476764 -) -(2538,466:6630773,20842497:11829248,485622,102891 -h2538,465:6630773,20842497:0,0,0 -r2538,493:6630773,20842497:0,588513,102891 -g2538,465:7941493,20842497 -g2538,465:7941493,20842497 -g2538,465:8709574,20842497 -k2538,466:13983257,20842497:4476765 -k2538,466:18460021,20842497:4476764 -) -(2538,467:6630773,21683985:11829248,485622,102891 -h2538,466:6630773,21683985:0,0,0 -r2538,493:6630773,21683985:0,588513,102891 -g2538,466:7941493,21683985 -g2538,466:7941493,21683985 -g2538,466:9104756,21683985 -g2538,466:10274573,21683985 -g2538,466:11444390,21683985 -g2538,466:12614207,21683985 -k2538,467:15935573,21683985:2524448 -k2538,467:18460021,21683985:2524448 -) -(2538,468:6630773,22525473:11829248,485622,102891 -h2538,467:6630773,22525473:0,0,0 -r2538,493:6630773,22525473:0,588513,102891 -g2538,467:7941493,22525473 -g2538,467:7941493,22525473 -g2538,467:9499938,22525473 -k2538,468:14577668,22525473:3882353 -k2538,468:18460021,22525473:3882353 -) -(2538,469:6630773,23366961:11829248,485622,102891 -h2538,468:6630773,23366961:0,0,0 -r2538,493:6630773,23366961:0,588513,102891 -g2538,468:7941493,23366961 -g2538,468:7941493,23366961 -g2538,468:9104756,23366961 -k2538,469:14180848,23366961:4279174 -k2538,469:18460021,23366961:4279173 -) -(2538,470:6630773,24208449:11829248,485622,102891 -h2538,469:6630773,24208449:0,0,0 -r2538,493:6630773,24208449:0,588513,102891 -g2538,469:7941493,24208449 -g2538,469:7941493,24208449 -g2538,469:8709574,24208449 -k2538,470:13983257,24208449:4476765 -k2538,470:18460021,24208449:4476764 -) -] -k2538,493:19606901,24208449:1146880 -r2538,493:19606901,24208449:0,18736195,126483 -k2538,493:20753781,24208449:1146880 -[2538,493:20753781,24208449:11829248,18609712,102891 -(2538,471:20753781,6254097:11829248,485622,102891 -h2538,470:20753781,6254097:0,0,0 -r2538,493:20753781,6254097:0,588513,102891 -g2538,470:22064501,6254097 -g2538,470:22064501,6254097 -g2538,470:23227764,6254097 -g2538,470:24397581,6254097 -k2538,471:29087994,6254097:3495036 -k2538,471:32583029,6254097:3495035 -) -(2538,472:20753781,7109066:11829248,485622,102891 -h2538,471:20753781,7109066:0,0,0 -r2538,493:20753781,7109066:0,588513,102891 -g2538,471:22064501,7109066 -g2538,471:22064501,7109066 -g2538,471:22832582,7109066 -k2538,472:28106265,7109066:4476765 -k2538,472:32583029,7109066:4476764 -) -(2538,473:20753781,7964035:11829248,485622,102891 -h2538,472:20753781,7964035:0,0,0 -r2538,493:20753781,7964035:0,588513,102891 -g2538,472:22064501,7964035 -g2538,472:22064501,7964035 -g2538,472:23227764,7964035 -k2538,473:28303856,7964035:4279174 -k2538,473:32583029,7964035:4279173 -) -(2538,474:20753781,8819004:11829248,505283,102891 -h2538,473:20753781,8819004:0,0,0 -r2538,493:20753781,8819004:0,608174,102891 -g2538,473:22064501,8819004 -g2538,473:22064501,8819004 -g2538,473:22854865,8819004 -g2538,473:23645229,8819004 -g2538,473:24413310,8819004 -k2538,474:29095858,8819004:3487171 -k2538,474:32583029,8819004:3487171 -) -(2538,475:20753781,9673974:11829248,505283,102891 -h2538,474:20753781,9673974:0,0,0 -r2538,493:20753781,9673974:0,608174,102891 -g2538,474:22064501,9673974 -g2538,474:22064501,9673974 -g2538,474:22854865,9673974 -g2538,474:23622946,9673974 -g2538,474:24792763,9673974 -k2538,475:29086355,9673974:3496674 -k2538,475:32583029,9673974:3496674 -) -(2538,476:20753781,10528943:11829248,505283,102891 -h2538,475:20753781,10528943:0,0,0 -r2538,493:20753781,10528943:0,608174,102891 -g2538,475:22064501,10528943 -g2538,475:22064501,10528943 -g2538,475:23250047,10528943 -g2538,475:24413310,10528943 -k2538,476:28896629,10528943:3686401 -k2538,476:32583029,10528943:3686400 -) -(2538,477:20753781,11383912:11829248,505283,102891 -h2538,476:20753781,11383912:0,0,0 -r2538,493:20753781,11383912:0,608174,102891 -g2538,476:22064501,11383912 -g2538,476:22064501,11383912 -g2538,476:24018128,11383912 -g2538,476:25187945,11383912 -g2538,476:26357762,11383912 -g2538,476:27527579,11383912 -k2538,477:30453763,11383912:2129266 -k2538,477:32583029,11383912:2129266 -) -(2538,478:20753781,12238881:11829248,505283,102891 -h2538,477:20753781,12238881:0,0,0 -r2538,493:20753781,12238881:0,608174,102891 -g2538,477:22064501,12238881 -g2538,477:22064501,12238881 -g2538,477:23227764,12238881 -g2538,477:24397581,12238881 -k2538,478:28888764,12238881:3694265 -k2538,478:32583029,12238881:3694265 -) -(2538,479:20753781,13093850:11829248,513147,102891 -h2538,478:20753781,13093850:0,0,0 -r2538,493:20753781,13093850:0,616038,102891 -g2538,478:22064501,13093850 -g2538,478:22064501,13093850 -g2538,478:22832582,13093850 -g2538,478:24002399,13093850 -g2538,478:25172216,13093850 -k2538,479:29276082,13093850:3306948 -k2538,479:32583029,13093850:3306947 -) -(2538,480:20753781,13948819:11829248,485622,102891 -h2538,479:20753781,13948819:0,0,0 -r2538,493:20753781,13948819:0,588513,102891 -g2538,479:22064501,13948819 -g2538,479:22064501,13948819 -g2538,479:23622946,13948819 -k2538,480:28501447,13948819:4081583 -k2538,480:32583029,13948819:4081582 -) -(2538,481:20753781,14803788:11829248,485622,102891 -h2538,480:20753781,14803788:0,0,0 -r2538,493:20753781,14803788:0,588513,102891 -g2538,480:22064501,14803788 -g2538,480:22064501,14803788 -g2538,480:24018128,14803788 -g2538,480:25586404,14803788 -k2538,481:29682405,14803788:2900624 -k2538,481:32583029,14803788:2900624 -) -(2538,482:20753781,15658758:11829248,505283,102891 -h2538,481:20753781,15658758:0,0,0 -r2538,493:20753781,15658758:0,608174,102891 -g2538,481:22064501,15658758 -g2538,481:22064501,15658758 -g2538,481:23622946,15658758 -k2538,482:28501447,15658758:4081583 -k2538,482:32583029,15658758:4081582 -) -(2538,483:20753781,16513727:11829248,485622,102891 -h2538,482:20753781,16513727:0,0,0 -r2538,493:20753781,16513727:0,588513,102891 -g2538,482:22064501,16513727 -g2538,482:22064501,16513727 -g2538,482:24018128,16513727 -k2538,483:28898267,16513727:3684762 -k2538,483:32583029,16513727:3684762 -) -(2538,484:20753781,17368696:11829248,485622,102891 -h2538,483:20753781,17368696:0,0,0 -r2538,493:20753781,17368696:0,588513,102891 -g2538,483:22064501,17368696 -g2538,483:22064501,17368696 -g2538,483:23622946,17368696 -g2538,483:25191222,17368696 -k2538,484:29484814,17368696:3098215 -k2538,484:32583029,17368696:3098215 -) -(2538,485:20753781,18223665:11829248,485622,102891 -h2538,484:20753781,18223665:0,0,0 -r2538,493:20753781,18223665:0,588513,102891 -g2538,484:22064501,18223665 -g2538,484:22064501,18223665 -g2538,484:24018128,18223665 -k2538,485:28898267,18223665:3684762 -k2538,485:32583029,18223665:3684762 -) -(2538,486:20753781,19078634:11829248,485622,102891 -h2538,485:20753781,19078634:0,0,0 -r2538,493:20753781,19078634:0,588513,102891 -g2538,485:22064501,19078634 -g2538,485:22064501,19078634 -g2538,485:23227764,19078634 -k2538,486:28303856,19078634:4279174 -k2538,486:32583029,19078634:4279173 -) -(2538,487:20753781,19933603:11829248,505283,102891 -h2538,486:20753781,19933603:0,0,0 -r2538,493:20753781,19933603:0,608174,102891 -g2538,486:22064501,19933603 -g2538,486:22064501,19933603 -g2538,486:24018128,19933603 -g2538,486:25187945,19933603 -k2538,487:29283946,19933603:3299083 -k2538,487:32583029,19933603:3299083 -) -(2538,488:20753781,20788572:11829248,485622,102891 -h2538,487:20753781,20788572:0,0,0 -r2538,493:20753781,20788572:0,588513,102891 -g2538,487:22064501,20788572 -g2538,487:22064501,20788572 -g2538,487:22832582,20788572 -k2538,488:28106265,20788572:4476765 -k2538,488:32583029,20788572:4476764 -) -(2538,489:20753781,21643542:11829248,485622,102891 -h2538,488:20753781,21643542:0,0,0 -r2538,493:20753781,21643542:0,588513,102891 -g2538,488:22064501,21643542 -g2538,488:22064501,21643542 -g2538,488:23227764,21643542 -k2538,489:28303856,21643542:4279174 -k2538,489:32583029,21643542:4279173 -) -(2538,490:20753781,22498511:11829248,485622,102891 -h2538,489:20753781,22498511:0,0,0 -r2538,493:20753781,22498511:0,588513,102891 -g2538,489:22064501,22498511 -g2538,489:22064501,22498511 -g2538,489:22832582,22498511 -k2538,490:28106265,22498511:4476765 -k2538,490:32583029,22498511:4476764 -) -(2538,491:20753781,23353480:11829248,505283,102891 -h2538,490:20753781,23353480:0,0,0 -r2538,493:20753781,23353480:0,608174,102891 -g2538,490:22064501,23353480 -g2538,490:22064501,23353480 -g2538,490:22832582,23353480 -k2538,491:28106265,23353480:4476765 -k2538,491:32583029,23353480:4476764 -) -(2538,492:20753781,24208449:11829248,505283,102891 -h2538,491:20753781,24208449:0,0,0 -r2538,493:20753781,24208449:0,608174,102891 -g2538,491:22064501,24208449 -g2538,491:22064501,24208449 -g2538,491:23227764,24208449 -k2538,492:28303856,24208449:4279174 -k2538,492:32583029,24208449:4279173 -) -] -(2538,493:32583029,24208449:0,355205,126483 -h2538,493:32583029,24208449:420741,355205,126483 -k2538,493:32583029,24208449:-420741 -) -) -] -(1,17323:32583029,45706769:0,0,0 -g1,17323:32583029,45706769 -) -) -] -(1,17323:6630773,47279633:25952256,0,0 -h1,17323:6630773,47279633:25952256,0,0 -) -] -h1,17323:4262630,4025873:0,0,0 -] -!16741 -}353 -Input:2539:D:\aphalo\Documents\Own_manuscripts\Books\using-r\rindex.ind -!84 -{354 -[2539,91:4262630,47279633:28320399,43253760,11795 -(2539,91:4262630,4025873:0,0,0 -[2539,91:-473657,4025873:11829248,0,0 -(2539,91:-473657,-710414:11829248,0,0 -h2539,91:-473657,-710414:0,0,0 -(2539,91:-473657,-710414:0,0,0 -(2539,91:-473657,-710414:0,0,0 -g2539,91:-473657,-710414 -(2539,91:-473657,-710414:65781,0,65781 -g2539,91:-407876,-710414 -[2539,91:-407876,-644633:0,0,0 +[2536,89:4262630,47279633:28320399,43253760,11795 +(2536,89:4262630,4025873:0,0,0 +[2536,89:-473657,4025873:11829248,0,0 +(2536,89:-473657,-710414:11829248,0,0 +h2536,89:-473657,-710414:0,0,0 +(2536,89:-473657,-710414:0,0,0 +(2536,89:-473657,-710414:0,0,0 +g2536,89:-473657,-710414 +(2536,89:-473657,-710414:65781,0,65781 +g2536,89:-407876,-710414 +[2536,89:-407876,-644633:0,0,0 ] ) -k2539,91:-473657,-710414:-65781 +k2536,89:-473657,-710414:-65781 ) ) -k2539,91:11355591,-710414:11829248 -g2539,91:11355591,-710414 +k2536,89:11355591,-710414:11829248 +g2536,89:11355591,-710414 ) ] ) -[2539,91:6630773,47279633:25952256,43253760,11795 -[2539,91:6630773,4812305:25952256,786432,0 -(2539,91:6630773,4812305:25952256,0,0 -(2539,91:6630773,4812305:25952256,0,0 -g2539,91:3078558,4812305 -[2539,91:3078558,4812305:0,0,0 -(2539,91:3078558,2439708:0,1703936,0 -k2539,91:1358238,2439708:-1720320 -(2539,1:1358238,2439708:1720320,1703936,0 -(2539,1:1358238,2439708:1179648,16384,0 -r2539,91:2537886,2439708:1179648,16384,0 +[2536,89:6630773,47279633:25952256,43253760,11795 +[2536,89:6630773,4812305:25952256,786432,0 +(2536,89:6630773,4812305:25952256,0,0 +(2536,89:6630773,4812305:25952256,0,0 +g2536,89:3078558,4812305 +[2536,89:3078558,4812305:0,0,0 +(2536,89:3078558,2439708:0,1703936,0 +k2536,89:1358238,2439708:-1720320 +(2536,1:1358238,2439708:1720320,1703936,0 +(2536,1:1358238,2439708:1179648,16384,0 +r2536,89:2537886,2439708:1179648,16384,0 ) -g2539,1:3062174,2439708 -(2539,1:3062174,2439708:16384,1703936,0 -[2539,1:3062174,2439708:25952256,1703936,0 -(2539,1:3062174,1915420:25952256,1179648,0 -(2539,1:3062174,1915420:16384,1179648,0 -r2539,91:3078558,1915420:16384,1179648,0 +g2536,1:3062174,2439708 +(2536,1:3062174,2439708:16384,1703936,0 +[2536,1:3062174,2439708:25952256,1703936,0 +(2536,1:3062174,1915420:25952256,1179648,0 +(2536,1:3062174,1915420:16384,1179648,0 +r2536,89:3078558,1915420:16384,1179648,0 ) -k2539,1:29014430,1915420:25935872 -g2539,1:29014430,1915420 +k2536,1:29014430,1915420:25935872 +g2536,1:29014430,1915420 ) ] ) ) ) ] -[2539,91:3078558,4812305:0,0,0 -(2539,91:3078558,2439708:0,1703936,0 -g2539,91:29030814,2439708 -g2539,91:36135244,2439708 -(2539,1:36135244,2439708:1720320,1703936,0 -(2539,1:36135244,2439708:16384,1703936,0 -[2539,1:36135244,2439708:25952256,1703936,0 -(2539,1:36135244,1915420:25952256,1179648,0 -(2539,1:36135244,1915420:16384,1179648,0 -r2539,91:36151628,1915420:16384,1179648,0 +[2536,89:3078558,4812305:0,0,0 +(2536,89:3078558,2439708:0,1703936,0 +g2536,89:29030814,2439708 +g2536,89:36135244,2439708 +(2536,1:36135244,2439708:1720320,1703936,0 +(2536,1:36135244,2439708:16384,1703936,0 +[2536,1:36135244,2439708:25952256,1703936,0 +(2536,1:36135244,1915420:25952256,1179648,0 +(2536,1:36135244,1915420:16384,1179648,0 +r2536,89:36151628,1915420:16384,1179648,0 ) -k2539,1:62087500,1915420:25935872 -g2539,1:62087500,1915420 +k2536,1:62087500,1915420:25935872 +g2536,1:62087500,1915420 ) ] ) -g2539,1:36675916,2439708 -(2539,1:36675916,2439708:1179648,16384,0 -r2539,91:37855564,2439708:1179648,16384,0 +g2536,1:36675916,2439708 +(2536,1:36675916,2439708:1179648,16384,0 +r2536,89:37855564,2439708:1179648,16384,0 ) ) -k2539,91:3078556,2439708:-34777008 +k2536,89:3078556,2439708:-34777008 ) ] -[2539,91:3078558,4812305:0,0,0 -(2539,91:3078558,49800853:0,16384,2228224 -k2539,91:1358238,49800853:-1720320 -(2539,1:1358238,49800853:1720320,16384,2228224 -(2539,1:1358238,49800853:1179648,16384,0 -r2539,91:2537886,49800853:1179648,16384,0 +[2536,89:3078558,4812305:0,0,0 +(2536,89:3078558,49800853:0,16384,2228224 +k2536,89:1358238,49800853:-1720320 +(2536,1:1358238,49800853:1720320,16384,2228224 +(2536,1:1358238,49800853:1179648,16384,0 +r2536,89:2537886,49800853:1179648,16384,0 ) -g2539,1:3062174,49800853 -(2539,1:3062174,52029077:16384,1703936,0 -[2539,1:3062174,52029077:25952256,1703936,0 -(2539,1:3062174,51504789:25952256,1179648,0 -(2539,1:3062174,51504789:16384,1179648,0 -r2539,91:3078558,51504789:16384,1179648,0 +g2536,1:3062174,49800853 +(2536,1:3062174,52029077:16384,1703936,0 +[2536,1:3062174,52029077:25952256,1703936,0 +(2536,1:3062174,51504789:25952256,1179648,0 +(2536,1:3062174,51504789:16384,1179648,0 +r2536,89:3078558,51504789:16384,1179648,0 ) -k2539,1:29014430,51504789:25935872 -g2539,1:29014430,51504789 +k2536,1:29014430,51504789:25935872 +g2536,1:29014430,51504789 ) ] ) ) ) ] -[2539,91:3078558,4812305:0,0,0 -(2539,91:3078558,49800853:0,16384,2228224 -g2539,91:29030814,49800853 -g2539,91:36135244,49800853 -(2539,1:36135244,49800853:1720320,16384,2228224 -(2539,1:36135244,52029077:16384,1703936,0 -[2539,1:36135244,52029077:25952256,1703936,0 -(2539,1:36135244,51504789:25952256,1179648,0 -(2539,1:36135244,51504789:16384,1179648,0 -r2539,91:36151628,51504789:16384,1179648,0 +[2536,89:3078558,4812305:0,0,0 +(2536,89:3078558,49800853:0,16384,2228224 +g2536,89:29030814,49800853 +g2536,89:36135244,49800853 +(2536,1:36135244,49800853:1720320,16384,2228224 +(2536,1:36135244,52029077:16384,1703936,0 +[2536,1:36135244,52029077:25952256,1703936,0 +(2536,1:36135244,51504789:25952256,1179648,0 +(2536,1:36135244,51504789:16384,1179648,0 +r2536,89:36151628,51504789:16384,1179648,0 ) -k2539,1:62087500,51504789:25935872 -g2539,1:62087500,51504789 +k2536,1:62087500,51504789:25935872 +g2536,1:62087500,51504789 ) ] ) -g2539,1:36675916,49800853 -(2539,1:36675916,49800853:1179648,16384,0 -r2539,91:37855564,49800853:1179648,16384,0 +g2536,1:36675916,49800853 +(2536,1:36675916,49800853:1179648,16384,0 +r2536,89:37855564,49800853:1179648,16384,0 ) ) -k2539,91:3078556,49800853:-34777008 +k2536,89:3078556,49800853:-34777008 ) ] -g2539,91:6630773,4812305 +g2536,89:6630773,4812305 ) ) ] -[2539,91:6630773,45706769:25952256,40108032,0 -(2539,91:6630773,45706769:25952256,40108032,0 -(2539,91:6630773,45706769:0,0,0 -g2539,91:6630773,45706769 +[2536,89:6630773,45706769:25952256,40108032,0 +(2536,89:6630773,45706769:25952256,40108032,0 +(2536,89:6630773,45706769:0,0,0 +g2536,89:6630773,45706769 ) -[2539,91:6630773,45706769:25952256,40108032,0 -[2539,1:6630773,12106481:25952256,6507744,0 -(2539,1:6630773,7073297:25952256,32768,229376 -(2539,1:6630773,7073297:0,32768,229376 -(2539,1:6630773,7073297:5505024,32768,229376 -r2539,1:12135797,7073297:5505024,262144,229376 +[2536,89:6630773,45706769:25952256,40108032,0 +[2536,1:6630773,12106481:25952256,6507744,0 +(2536,1:6630773,7073297:25952256,32768,229376 +(2536,1:6630773,7073297:0,32768,229376 +(2536,1:6630773,7073297:5505024,32768,229376 +r2536,1:12135797,7073297:5505024,262144,229376 ) -k2539,1:6630773,7073297:-5505024 +k2536,1:6630773,7073297:-5505024 ) ) -(2539,1:6630773,8803457:25952256,923664,227671 -h2539,1:6630773,8803457:0,0,0 -g2539,1:13383078,8803457 -g2539,1:16925561,8803457 -g2539,1:18489774,8803457 -g2539,1:19654086,8803457 -k2539,1:28056719,8803457:4526310 -k2539,1:32583029,8803457:4526310 +(2536,1:6630773,8803457:25952256,923664,227671 +h2536,1:6630773,8803457:0,0,0 +g2536,1:13383078,8803457 +g2536,1:16925561,8803457 +g2536,1:18489774,8803457 +g2536,1:19654086,8803457 +k2536,1:28056719,8803457:4526310 +k2536,1:32583029,8803457:4526310 ) -(2539,1:6630773,9419505:25952256,32768,0 -(2539,1:6630773,9419505:5505024,32768,0 -r2539,1:12135797,9419505:5505024,32768,0 -) -k2539,1:22359413,9419505:10223616 -k2539,1:32583029,9419505:10223616 -) -] -(2539,91:6630773,45706769:25952256,32627728,126483 -[2539,91:6630773,45706769:11829248,32627728,102891 -(2539,4:6630773,13734401:11829248,485622,102891 -h2539,3:6630773,13734401:0,0,0 -g2539,3:7398854,13734401 -g2539,3:8568671,13734401 -k2539,4:13912805,13734401:4547216 -k2539,4:18460021,13734401:4547216 -) -(2539,5:6630773,14598519:11829248,485622,102891 -h2539,4:6630773,14598519:0,0,0 -g2539,4:7398854,14598519 -g2539,4:8568671,14598519 -g2539,4:9738488,14598519 -k2539,5:14696943,14598519:3763078 -k2539,5:18460021,14598519:3763078 -) -(2539,6:6630773,15462637:11829248,485622,102891 -h2539,5:6630773,15462637:0,0,0 -g2539,5:7398854,15462637 -g2539,5:8568671,15462637 -k2539,6:13912805,15462637:4547216 -k2539,6:18460021,15462637:4547216 -) -(2539,7:6630773,16326755:11829248,485622,102891 -h2539,6:6630773,16326755:0,0,0 -g2539,6:7794036,16326755 -k2539,7:13525488,16326755:4934534 -k2539,7:18460021,16326755:4934533 -) -(2539,8:6630773,17190873:11829248,513147,102891 -h2539,7:6630773,17190873:0,0,0 -g2539,7:8584400,17190873 -g2539,7:9754217,17190873 -k2539,8:14505578,17190873:3954443 -k2539,8:18460021,17190873:3954443 -) -(2539,9:6630773,18054991:11829248,513147,126483 -h2539,8:6630773,18054991:0,0,0 -g2539,8:14512132,18054991 -k2539,9:16884536,18054991:1575486 -k2539,9:18460021,18054991:1575485 -) -(2539,10:6630773,18919109:11829248,513147,102891 -h2539,9:6630773,18919109:0,0,0 -g2539,9:14512132,18919109 -k2539,10:16884536,18919109:1575486 -k2539,10:18460021,18919109:1575485 -) -(2539,11:6630773,19783227:11829248,513147,102891 -h2539,10:6630773,19783227:0,0,0 -g2539,10:14512132,19783227 -k2539,11:16884536,19783227:1575486 -k2539,11:18460021,19783227:1575485 -) -(2539,12:6630773,20647345:11829248,513147,134348 -h2539,11:6630773,20647345:0,0,0 -g2539,11:16092860,20647345 -k2539,12:17674900,20647345:785122 -k2539,12:18460021,20647345:785121 -) -(2539,13:6630773,21511464:11829248,513147,134348 -h2539,12:6630773,21511464:0,0,0 -g2539,12:14907314,21511464 -k2539,13:17082127,21511464:1377895 -k2539,13:18460021,21511464:1377894 -) -(2539,14:6630773,22375582:11829248,505283,102891 -h2539,13:6630773,22375582:0,0,0 -g2539,13:7398854,22375582 -g2539,13:8568671,22375582 -k2539,14:14112035,22375582:4347987 -k2539,14:18460021,22375582:4347986 -) -(2539,15:6630773,23239700:11829248,485622,102891 -h2539,14:6630773,23239700:0,0,0 -g2539,14:7398854,23239700 -k2539,15:13327897,23239700:5132125 -k2539,15:18460021,23239700:5132124 -) -(2539,16:6630773,24103818:11829248,485622,102891 -h2539,15:6630773,24103818:0,0,0 -g2539,15:7398854,24103818 -k2539,16:13327897,24103818:5132125 -k2539,16:18460021,24103818:5132124 -) -(2539,17:6630773,24967936:11829248,485622,102891 -h2539,16:6630773,24967936:0,0,0 -g2539,16:7794036,24967936 -g2539,16:8963853,24967936 -g2539,16:10133670,24967936 -g2539,16:11303487,24967936 -k2539,17:15280213,24967936:3179808 -k2539,17:18460021,24967936:3179808 -) -(2539,18:6630773,25832054:11829248,485622,102891 -h2539,17:6630773,25832054:0,0,0 -g2539,17:8189218,25832054 -k2539,18:13922308,25832054:4537713 -k2539,18:18460021,25832054:4537713 -) -(2539,19:6630773,26696172:11829248,485622,102891 -h2539,18:6630773,26696172:0,0,0 -g2539,18:7794036,26696172 -k2539,19:13525488,26696172:4934534 -k2539,19:18460021,26696172:4934533 -) -(2539,20:6630773,27560290:11829248,485622,102891 -h2539,19:6630773,27560290:0,0,0 -g2539,19:7398854,27560290 -k2539,20:13327897,27560290:5132125 -k2539,20:18460021,27560290:5132124 -) -(2539,21:6630773,28424408:11829248,485622,102891 -h2539,20:6630773,28424408:0,0,0 -g2539,20:7794036,28424408 -g2539,20:8963853,28424408 -k2539,21:14309626,28424408:4150396 -k2539,21:18460021,28424408:4150395 -) -(2539,22:6630773,29288526:11829248,485622,102891 -h2539,21:6630773,29288526:0,0,0 -g2539,21:7398854,29288526 -k2539,22:13327897,29288526:5132125 -k2539,22:18460021,29288526:5132124 -) -(2539,23:6630773,30152644:11829248,485622,102891 -h2539,22:6630773,30152644:0,0,0 -g2539,22:7794036,30152644 -k2539,23:13525488,30152644:4934534 -k2539,23:18460021,30152644:4934533 -) -(2539,24:6630773,31016762:11829248,505283,102891 -h2539,23:6630773,31016762:0,0,0 -g2539,23:7421137,31016762 -g2539,23:8211501,31016762 -g2539,23:8979582,31016762 -k2539,24:14317490,31016762:4142531 -k2539,24:18460021,31016762:4142531 -) -(2539,25:6630773,31880880:11829248,505283,102891 -h2539,24:6630773,31880880:0,0,0 -g2539,24:7421137,31880880 -g2539,24:8189218,31880880 -g2539,24:9359035,31880880 -k2539,25:14307987,31880880:4152034 -k2539,25:18460021,31880880:4152034 -) -(2539,26:6630773,32744998:11829248,505283,102891 -h2539,25:6630773,32744998:0,0,0 -g2539,25:7816319,32744998 -g2539,25:8979582,32744998 -k2539,26:14118261,32744998:4341761 -k2539,26:18460021,32744998:4341760 -) -(2539,27:6630773,33609116:11829248,505283,102891 -h2539,26:6630773,33609116:0,0,0 -g2539,26:8584400,33609116 -g2539,26:9754217,33609116 -g2539,26:10924034,33609116 -g2539,26:12093851,33609116 -k2539,27:15675395,33609116:2784626 -k2539,27:18460021,33609116:2784626 -) -(2539,28:6630773,34473234:11829248,505283,102891 -h2539,27:6630773,34473234:0,0,0 -g2539,27:7794036,34473234 -g2539,27:8963853,34473234 -k2539,28:14110396,34473234:4349625 -k2539,28:18460021,34473234:4349625 -) -(2539,29:6630773,35337352:11829248,513147,102891 -h2539,28:6630773,35337352:0,0,0 -g2539,28:7398854,35337352 -g2539,28:8568671,35337352 -g2539,28:9738488,35337352 -k2539,29:14497714,35337352:3962308 -k2539,29:18460021,35337352:3962307 -) -(2539,30:6630773,36201470:11829248,485622,102891 -h2539,29:6630773,36201470:0,0,0 -g2539,29:8189218,36201470 -k2539,30:13723079,36201470:4736943 -k2539,30:18460021,36201470:4736942 -) -(2539,31:6630773,37065589:11829248,485622,102891 -h2539,30:6630773,37065589:0,0,0 -g2539,30:8584400,37065589 -g2539,30:10152676,37065589 -k2539,31:14904037,37065589:3555984 -k2539,31:18460021,37065589:3555984 -) -(2539,32:6630773,37929707:11829248,505283,102891 -h2539,31:6630773,37929707:0,0,0 -g2539,31:8189218,37929707 -k2539,32:13723079,37929707:4736943 -k2539,32:18460021,37929707:4736942 -) -(2539,33:6630773,38793825:11829248,485622,102891 -h2539,32:6630773,38793825:0,0,0 -g2539,32:8584400,38793825 -k2539,33:14119899,38793825:4340122 -k2539,33:18460021,38793825:4340122 -) -(2539,34:6630773,39657943:11829248,485622,102891 -h2539,33:6630773,39657943:0,0,0 -g2539,33:8189218,39657943 -g2539,33:9757494,39657943 -k2539,34:14706446,39657943:3753575 -k2539,34:18460021,39657943:3753575 -) -(2539,35:6630773,40522061:11829248,485622,102891 -h2539,34:6630773,40522061:0,0,0 -g2539,34:8584400,40522061 -k2539,35:14119899,40522061:4340122 -k2539,35:18460021,40522061:4340122 -) -(2539,36:6630773,41386179:11829248,485622,102891 -h2539,35:6630773,41386179:0,0,0 -g2539,35:7794036,41386179 -k2539,36:13525488,41386179:4934534 -k2539,36:18460021,41386179:4934533 -) -(2539,37:6630773,42250297:11829248,505283,102891 -h2539,36:6630773,42250297:0,0,0 -g2539,36:8584400,42250297 -g2539,36:9754217,42250297 -k2539,37:14505578,42250297:3954443 -k2539,37:18460021,42250297:3954443 -) -(2539,38:6630773,43114415:11829248,485622,102891 -h2539,37:6630773,43114415:0,0,0 -g2539,37:7398854,43114415 -k2539,38:13327897,43114415:5132125 -k2539,38:18460021,43114415:5132124 -) -(2539,39:6630773,43978533:11829248,485622,102891 -h2539,38:6630773,43978533:0,0,0 -g2539,38:7794036,43978533 -k2539,39:13525488,43978533:4934534 -k2539,39:18460021,43978533:4934533 -) -(2539,40:6630773,44842651:11829248,485622,102891 -h2539,39:6630773,44842651:0,0,0 -g2539,39:7398854,44842651 -k2539,40:13327897,44842651:5132125 -k2539,40:18460021,44842651:5132124 -) -(2539,41:6630773,45706769:11829248,505283,102891 -h2539,40:6630773,45706769:0,0,0 -g2539,40:7398854,45706769 -k2539,41:13327897,45706769:5132125 -k2539,41:18460021,45706769:5132124 -) -] -k2539,91:19606901,45706769:1146880 -r2539,91:19606901,45706769:0,32754211,126483 -k2539,91:20753781,45706769:1146880 -[2539,91:20753781,45706769:11829248,32627728,102891 -(2539,42:20753781,13734401:11829248,505283,102891 -h2539,41:20753781,13734401:0,0,0 -g2539,41:21917044,13734401 -k2539,42:27648496,13734401:4934534 -k2539,42:32583029,13734401:4934533 -) -(2539,46:20753781,15325038:11829248,505283,102891 -h2539,45:20753781,15325038:0,0,0 -g2539,45:23102590,15325038 -g2539,45:24272407,15325038 -k2539,46:28826177,15325038:3756852 -k2539,46:32583029,15325038:3756852 -) -(2539,47:20753781,16171835:11829248,505283,102891 -h2539,46:20753781,16171835:0,0,0 -g2539,46:23102590,16171835 -g2539,46:24670866,16171835 -k2539,47:29224636,16171835:3358393 -k2539,47:32583029,16171835:3358393 -) -(2539,48:20753781,17018632:11829248,505283,134348 -h2539,47:20753781,17018632:0,0,0 -g2539,47:25473683,17018632 -k2539,48:29626045,17018632:2956985 -k2539,48:32583029,17018632:2956984 -) -(2539,49:20753781,17865429:11829248,505283,102891 -h2539,48:20753781,17865429:0,0,0 -g2539,48:23102590,17865429 -k2539,49:28440498,17865429:4142531 -k2539,49:32583029,17865429:4142531 -) -(2539,50:20753781,18712226:11829248,505283,102891 -h2539,49:20753781,18712226:0,0,0 -g2539,49:23102590,18712226 -k2539,50:28241269,18712226:4341761 -k2539,50:32583029,18712226:4341760 -) -(2539,51:20753781,19559023:11829248,505283,102891 -h2539,50:20753781,19559023:0,0,0 -g2539,50:25078501,19559023 -g2539,50:26646777,19559023 -g2539,50:28215053,19559023 -k2539,51:30996730,19559023:1586300 -k2539,51:32583029,19559023:1586299 -) -(2539,52:20753781,20405819:11829248,505283,102891 -h2539,51:20753781,20405819:0,0,0 -g2539,51:28635140,20405819 -g2539,51:30203416,20405819 -k2539,52:31990911,20405819:592118 -k2539,52:32583029,20405819:592118 -) -(2539,53:20753781,21252616:11829248,505283,102891 -h2539,52:20753781,21252616:0,0,0 -g2539,52:23892955,21252616 -g2539,52:25461231,21252616 -g2539,52:27029507,21252616 -g2539,52:28597783,21252616 -g2539,52:30166059,21252616 -k2539,53:31972233,21252616:610797 -k2539,53:32583029,21252616:610796 -) -(2539,54:20753781,22099413:11829248,505283,134348 -h2539,53:20753781,22099413:0,0,0 -g2539,53:25473683,22099413 -k2539,54:29626045,22099413:2956985 -k2539,54:32583029,22099413:2956984 -) -(2539,55:20753781,22946210:11829248,505283,126483 -h2539,54:20753781,22946210:0,0,0 -g2539,54:23102590,22946210 -k2539,55:28241269,22946210:4341761 -k2539,55:32583029,22946210:4341760 -) -(2539,56:20753781,23793007:11829248,505283,102891 -h2539,55:20753781,23793007:0,0,0 -g2539,55:23102590,23793007 -g2539,55:24670866,23793007 -k2539,56:29224636,23793007:3358393 -k2539,56:32583029,23793007:3358393 -) -(2539,57:20753781,24639804:11829248,505283,126483 -h2539,56:20753781,24639804:0,0,0 -g2539,56:24288137,24639804 -g2539,56:25457954,24639804 -k2539,57:29418951,24639804:3164079 -k2539,57:32583029,24639804:3164078 -) -(2539,58:20753781,25486601:11829248,505283,126483 -h2539,57:20753781,25486601:0,0,0 -g2539,57:23892955,25486601 -g2539,57:25461231,25486601 -g2539,57:27029507,25486601 -k2539,58:31165485,25486601:1417545 -k2539,58:32583029,25486601:1417544 -) -(2539,59:20753781,26333398:11829248,505283,134348 -h2539,58:20753781,26333398:0,0,0 -g2539,58:24683319,26333398 -k2539,59:29230863,26333398:3352167 -k2539,59:32583029,26333398:3352166 -) -(2539,60:20753781,27180194:11829248,477757,126483 -h2539,59:20753781,27180194:0,0,0 -g2539,59:23102590,27180194 -k2539,60:28241269,27180194:4341761 -k2539,60:32583029,27180194:4341760 -) -(2539,61:20753781,28026991:11829248,505283,126483 -h2539,60:20753781,28026991:0,0,0 -g2539,60:23892955,28026991 -k2539,61:28636451,28026991:3946578 -k2539,61:32583029,28026991:3946578 -) -(2539,62:20753781,28873788:11829248,505283,102891 -h2539,61:20753781,28873788:0,0,0 -g2539,61:26659229,28873788 -g2539,61:27829046,28873788 -k2539,62:30604497,28873788:1978533 -k2539,62:32583029,28873788:1978532 -) -(2539,63:20753781,29720585:11829248,513147,102891 -h2539,62:20753781,29720585:0,0,0 -g2539,62:27054411,29720585 -k2539,63:30416409,29720585:2166621 -k2539,63:32583029,29720585:2166620 -) -(2539,64:20753781,30567382:11829248,513147,102891 -h2539,63:20753781,30567382:0,0,0 -g2539,63:25868865,30567382 -k2539,64:29823636,30567382:2759394 -k2539,64:32583029,30567382:2759393 -) -(2539,65:20753781,31414179:11829248,505283,134348 -h2539,64:20753781,31414179:0,0,0 -g2539,64:25868865,31414179 -k2539,65:29624406,31414179:2958623 -k2539,65:32583029,31414179:2958623 -) -(2539,66:20753781,32260976:11829248,505283,134348 -h2539,65:20753781,32260976:0,0,0 -g2539,65:25868865,32260976 -k2539,66:29624406,32260976:2958623 -k2539,66:32583029,32260976:2958623 -) -(2539,67:20753781,33107772:11829248,505283,102891 -h2539,66:20753781,33107772:0,0,0 -g2539,66:25473683,33107772 -k2539,67:29426815,33107772:3156214 -k2539,67:32583029,33107772:3156214 -) -(2539,68:20753781,33954569:11829248,505283,102891 -h2539,67:20753781,33954569:0,0,0 -g2539,67:25868865,33954569 -g2539,67:27038682,33954569 -g2539,67:28208499,33954569 -k2539,68:30794223,33954569:1788806 -k2539,68:32583029,33954569:1788806 -) -(2539,69:20753781,34801366:11829248,505283,102891 -h2539,68:20753781,34801366:0,0,0 -g2539,68:23892955,34801366 -k2539,69:28835681,34801366:3747349 -k2539,69:32583029,34801366:3747348 -) -(2539,70:20753781,35648163:11829248,505283,102891 -h2539,69:20753781,35648163:0,0,0 -g2539,69:25473683,35648163 -k2539,70:29426815,35648163:3156214 -k2539,70:32583029,35648163:3156214 -) -(2539,71:20753781,36494960:11829248,505283,102891 -h2539,70:20753781,36494960:0,0,0 -g2539,70:25473683,36494960 -k2539,71:29626045,36494960:2956985 -k2539,71:32583029,36494960:2956984 -) -(2539,72:20753781,37341757:11829248,505283,134348 -h2539,71:20753781,37341757:0,0,0 -g2539,71:24288137,37341757 -g2539,71:25856413,37341757 -g2539,71:27424689,37341757 -k2539,72:30601548,37341757:1981482 -k2539,72:32583029,37341757:1981481 -) -(2539,73:20753781,38188554:11829248,505283,102891 -h2539,72:20753781,38188554:0,0,0 -g2539,72:24288137,38188554 -k2539,73:29396341,38188554:3186688 -k2539,73:32583029,38188554:3186688 -) -(2539,74:20753781,39035351:11829248,505283,102891 -h2539,73:20753781,39035351:0,0,0 -g2539,73:23497773,39035351 -k2539,74:28438860,39035351:4144169 -k2539,74:32583029,39035351:4144169 -) -(2539,75:20753781,39882147:11829248,505283,102891 -h2539,74:20753781,39882147:0,0,0 -g2539,74:24288137,39882147 -k2539,75:28834042,39882147:3748987 -k2539,75:32583029,39882147:3748987 -) -(2539,76:20753781,40728944:11829248,505283,102891 -h2539,75:20753781,40728944:0,0,0 -g2539,75:25868865,40728944 -g2539,75:27038682,40728944 -g2539,75:28606958,40728944 -k2539,76:31192682,40728944:1390347 -k2539,76:32583029,40728944:1390347 -) -(2539,77:20753781,41575741:11829248,485622,102891 -h2539,76:20753781,41575741:0,0,0 -g2539,76:23892955,41575741 -k2539,77:28835681,41575741:3747349 -k2539,77:32583029,41575741:3747348 -) -(2539,81:20753781,43166378:11829248,505283,102891 -h2539,80:20753781,43166378:0,0,0 -g2539,80:25078501,43166378 -k2539,81:29428454,43166378:3154576 -k2539,81:32583029,43166378:3154575 -) -(2539,82:20753781,44013175:11829248,505283,102891 -h2539,81:20753781,44013175:0,0,0 -g2539,81:23102590,44013175 -k2539,82:28440498,44013175:4142531 -k2539,82:32583029,44013175:4142531 -) -(2539,83:20753781,44859972:11829248,505283,126483 -h2539,82:20753781,44859972:0,0,0 -g2539,82:24288137,44859972 -k2539,83:29033272,44859972:3549758 -k2539,83:32583029,44859972:3549757 -) -(2539,84:20753781,45706769:11829248,505283,102891 -h2539,83:20753781,45706769:0,0,0 -g2539,83:23497773,45706769 -k2539,84:28638090,45706769:3944940 -k2539,84:32583029,45706769:3944939 -) -] -(2539,91:32583029,45706769:0,355205,126483 -h2539,91:32583029,45706769:420741,355205,126483 -k2539,91:32583029,45706769:-420741 -) -) -] -(2539,91:32583029,45706769:0,0,0 -g2539,91:32583029,45706769 -) -) -] -(2539,91:6630773,47279633:25952256,485622,11795 -(2539,91:6630773,47279633:25952256,485622,11795 -k2539,91:19009213,47279633:12378440 -k2539,91:32583030,47279633:12378440 -) -) -] -h2539,91:4262630,4025873:0,0,0 -] -!19247 -}354 +(2536,1:6630773,9419505:25952256,32768,0 +(2536,1:6630773,9419505:5505024,32768,0 +r2536,1:12135797,9419505:5505024,32768,0 +) +k2536,1:22359413,9419505:10223616 +k2536,1:32583029,9419505:10223616 +) +] +(2536,89:6630773,45706769:25952256,32627728,126483 +[2536,89:6630773,45706769:11829248,32627728,102891 +(2536,4:6630773,13734401:11829248,485622,102891 +h2536,3:6630773,13734401:0,0,0 +g2536,3:7398854,13734401 +g2536,3:8568671,13734401 +k2536,4:13912805,13734401:4547216 +k2536,4:18460021,13734401:4547216 +) +(2536,5:6630773,14598519:11829248,485622,102891 +h2536,4:6630773,14598519:0,0,0 +g2536,4:7398854,14598519 +g2536,4:8568671,14598519 +g2536,4:9738488,14598519 +k2536,5:14696943,14598519:3763078 +k2536,5:18460021,14598519:3763078 +) +(2536,6:6630773,15462637:11829248,485622,102891 +h2536,5:6630773,15462637:0,0,0 +g2536,5:7398854,15462637 +g2536,5:8568671,15462637 +k2536,6:13912805,15462637:4547216 +k2536,6:18460021,15462637:4547216 +) +(2536,7:6630773,16326755:11829248,485622,102891 +h2536,6:6630773,16326755:0,0,0 +g2536,6:7794036,16326755 +k2536,7:13525488,16326755:4934534 +k2536,7:18460021,16326755:4934533 +) +(2536,8:6630773,17190873:11829248,513147,102891 +h2536,7:6630773,17190873:0,0,0 +g2536,7:8584400,17190873 +g2536,7:9754217,17190873 +k2536,8:14505578,17190873:3954443 +k2536,8:18460021,17190873:3954443 +) +(2536,9:6630773,18054991:11829248,513147,126483 +h2536,8:6630773,18054991:0,0,0 +g2536,8:14512132,18054991 +k2536,9:16884536,18054991:1575486 +k2536,9:18460021,18054991:1575485 +) +(2536,10:6630773,18919109:11829248,513147,102891 +h2536,9:6630773,18919109:0,0,0 +g2536,9:14512132,18919109 +k2536,10:16884536,18919109:1575486 +k2536,10:18460021,18919109:1575485 +) +(2536,11:6630773,19783227:11829248,513147,102891 +h2536,10:6630773,19783227:0,0,0 +g2536,10:14512132,19783227 +k2536,11:16884536,19783227:1575486 +k2536,11:18460021,19783227:1575485 +) +(2536,12:6630773,20647345:11829248,513147,134348 +h2536,11:6630773,20647345:0,0,0 +g2536,11:16092860,20647345 +k2536,12:17674900,20647345:785122 +k2536,12:18460021,20647345:785121 +) +(2536,13:6630773,21511464:11829248,513147,134348 +h2536,12:6630773,21511464:0,0,0 +g2536,12:14907314,21511464 +k2536,13:17082127,21511464:1377895 +k2536,13:18460021,21511464:1377894 +) +(2536,14:6630773,22375582:11829248,505283,102891 +h2536,13:6630773,22375582:0,0,0 +g2536,13:7398854,22375582 +g2536,13:8568671,22375582 +k2536,14:14112035,22375582:4347987 +k2536,14:18460021,22375582:4347986 +) +(2536,15:6630773,23239700:11829248,485622,102891 +h2536,14:6630773,23239700:0,0,0 +g2536,14:7398854,23239700 +k2536,15:13327897,23239700:5132125 +k2536,15:18460021,23239700:5132124 +) +(2536,16:6630773,24103818:11829248,485622,102891 +h2536,15:6630773,24103818:0,0,0 +g2536,15:7398854,24103818 +k2536,16:13327897,24103818:5132125 +k2536,16:18460021,24103818:5132124 +) +(2536,17:6630773,24967936:11829248,485622,102891 +h2536,16:6630773,24967936:0,0,0 +g2536,16:7794036,24967936 +g2536,16:8963853,24967936 +g2536,16:10133670,24967936 +g2536,16:11303487,24967936 +k2536,17:15280213,24967936:3179808 +k2536,17:18460021,24967936:3179808 +) +(2536,18:6630773,25832054:11829248,485622,102891 +h2536,17:6630773,25832054:0,0,0 +g2536,17:8189218,25832054 +k2536,18:13922308,25832054:4537713 +k2536,18:18460021,25832054:4537713 +) +(2536,19:6630773,26696172:11829248,485622,102891 +h2536,18:6630773,26696172:0,0,0 +g2536,18:7794036,26696172 +k2536,19:13525488,26696172:4934534 +k2536,19:18460021,26696172:4934533 +) +(2536,20:6630773,27560290:11829248,485622,102891 +h2536,19:6630773,27560290:0,0,0 +g2536,19:7398854,27560290 +k2536,20:13327897,27560290:5132125 +k2536,20:18460021,27560290:5132124 +) +(2536,21:6630773,28424408:11829248,485622,102891 +h2536,20:6630773,28424408:0,0,0 +g2536,20:7794036,28424408 +g2536,20:8963853,28424408 +k2536,21:14309626,28424408:4150396 +k2536,21:18460021,28424408:4150395 +) +(2536,22:6630773,29288526:11829248,485622,102891 +h2536,21:6630773,29288526:0,0,0 +g2536,21:7398854,29288526 +k2536,22:13327897,29288526:5132125 +k2536,22:18460021,29288526:5132124 +) +(2536,23:6630773,30152644:11829248,485622,102891 +h2536,22:6630773,30152644:0,0,0 +g2536,22:7794036,30152644 +k2536,23:13525488,30152644:4934534 +k2536,23:18460021,30152644:4934533 +) +(2536,24:6630773,31016762:11829248,505283,102891 +h2536,23:6630773,31016762:0,0,0 +g2536,23:7421137,31016762 +g2536,23:8211501,31016762 +g2536,23:8979582,31016762 +k2536,24:14317490,31016762:4142531 +k2536,24:18460021,31016762:4142531 +) +(2536,25:6630773,31880880:11829248,505283,102891 +h2536,24:6630773,31880880:0,0,0 +g2536,24:7421137,31880880 +g2536,24:8189218,31880880 +g2536,24:9359035,31880880 +k2536,25:14307987,31880880:4152034 +k2536,25:18460021,31880880:4152034 +) +(2536,26:6630773,32744998:11829248,505283,102891 +h2536,25:6630773,32744998:0,0,0 +g2536,25:7816319,32744998 +g2536,25:8979582,32744998 +k2536,26:14118261,32744998:4341761 +k2536,26:18460021,32744998:4341760 +) +(2536,27:6630773,33609116:11829248,505283,102891 +h2536,26:6630773,33609116:0,0,0 +g2536,26:8584400,33609116 +g2536,26:9754217,33609116 +g2536,26:10924034,33609116 +g2536,26:12093851,33609116 +k2536,27:15675395,33609116:2784626 +k2536,27:18460021,33609116:2784626 +) +(2536,28:6630773,34473234:11829248,505283,102891 +h2536,27:6630773,34473234:0,0,0 +g2536,27:7794036,34473234 +g2536,27:8963853,34473234 +k2536,28:14110396,34473234:4349625 +k2536,28:18460021,34473234:4349625 +) +(2536,29:6630773,35337352:11829248,513147,102891 +h2536,28:6630773,35337352:0,0,0 +g2536,28:7398854,35337352 +g2536,28:8568671,35337352 +g2536,28:9738488,35337352 +k2536,29:14497714,35337352:3962308 +k2536,29:18460021,35337352:3962307 +) +(2536,30:6630773,36201470:11829248,485622,102891 +h2536,29:6630773,36201470:0,0,0 +g2536,29:8189218,36201470 +k2536,30:13723079,36201470:4736943 +k2536,30:18460021,36201470:4736942 +) +(2536,31:6630773,37065589:11829248,485622,102891 +h2536,30:6630773,37065589:0,0,0 +g2536,30:8584400,37065589 +g2536,30:10152676,37065589 +k2536,31:14904037,37065589:3555984 +k2536,31:18460021,37065589:3555984 +) +(2536,32:6630773,37929707:11829248,505283,102891 +h2536,31:6630773,37929707:0,0,0 +g2536,31:8189218,37929707 +k2536,32:13723079,37929707:4736943 +k2536,32:18460021,37929707:4736942 +) +(2536,33:6630773,38793825:11829248,485622,102891 +h2536,32:6630773,38793825:0,0,0 +g2536,32:8584400,38793825 +k2536,33:14119899,38793825:4340122 +k2536,33:18460021,38793825:4340122 +) +(2536,34:6630773,39657943:11829248,485622,102891 +h2536,33:6630773,39657943:0,0,0 +g2536,33:8189218,39657943 +g2536,33:9757494,39657943 +k2536,34:14706446,39657943:3753575 +k2536,34:18460021,39657943:3753575 +) +(2536,35:6630773,40522061:11829248,485622,102891 +h2536,34:6630773,40522061:0,0,0 +g2536,34:8584400,40522061 +k2536,35:14119899,40522061:4340122 +k2536,35:18460021,40522061:4340122 +) +(2536,36:6630773,41386179:11829248,485622,102891 +h2536,35:6630773,41386179:0,0,0 +g2536,35:7794036,41386179 +k2536,36:13525488,41386179:4934534 +k2536,36:18460021,41386179:4934533 +) +(2536,37:6630773,42250297:11829248,505283,102891 +h2536,36:6630773,42250297:0,0,0 +g2536,36:8584400,42250297 +g2536,36:9754217,42250297 +k2536,37:14505578,42250297:3954443 +k2536,37:18460021,42250297:3954443 +) +(2536,38:6630773,43114415:11829248,485622,102891 +h2536,37:6630773,43114415:0,0,0 +g2536,37:7398854,43114415 +k2536,38:13327897,43114415:5132125 +k2536,38:18460021,43114415:5132124 +) +(2536,39:6630773,43978533:11829248,485622,102891 +h2536,38:6630773,43978533:0,0,0 +g2536,38:7794036,43978533 +k2536,39:13525488,43978533:4934534 +k2536,39:18460021,43978533:4934533 +) +(2536,40:6630773,44842651:11829248,485622,102891 +h2536,39:6630773,44842651:0,0,0 +g2536,39:7398854,44842651 +k2536,40:13327897,44842651:5132125 +k2536,40:18460021,44842651:5132124 +) +(2536,41:6630773,45706769:11829248,505283,102891 +h2536,40:6630773,45706769:0,0,0 +g2536,40:7398854,45706769 +k2536,41:13327897,45706769:5132125 +k2536,41:18460021,45706769:5132124 +) +] +k2536,89:19606901,45706769:1146880 +r2536,89:19606901,45706769:0,32754211,126483 +k2536,89:20753781,45706769:1146880 +[2536,89:20753781,45706769:11829248,32627728,126483 +(2536,42:20753781,13734401:11829248,505283,102891 +h2536,41:20753781,13734401:0,0,0 +g2536,41:21917044,13734401 +k2536,42:27648496,13734401:4934534 +k2536,42:32583029,13734401:4934533 +) +(2536,46:20753781,15326411:11829248,505283,102891 +h2536,45:20753781,15326411:0,0,0 +g2536,45:23102590,15326411 +g2536,45:24272407,15326411 +k2536,46:28826177,15326411:3756852 +k2536,46:32583029,15326411:3756852 +) +(2536,47:20753781,16173285:11829248,505283,102891 +h2536,46:20753781,16173285:0,0,0 +g2536,46:23102590,16173285 +g2536,46:24670866,16173285 +k2536,47:29224636,16173285:3358393 +k2536,47:32583029,16173285:3358393 +) +(2536,48:20753781,17020160:11829248,505283,134348 +h2536,47:20753781,17020160:0,0,0 +g2536,47:25473683,17020160 +k2536,48:29626045,17020160:2956985 +k2536,48:32583029,17020160:2956984 +) +(2536,49:20753781,17867034:11829248,505283,102891 +h2536,48:20753781,17867034:0,0,0 +g2536,48:23102590,17867034 +k2536,49:28440498,17867034:4142531 +k2536,49:32583029,17867034:4142531 +) +(2536,50:20753781,18713909:11829248,505283,102891 +h2536,49:20753781,18713909:0,0,0 +g2536,49:23102590,18713909 +k2536,50:28241269,18713909:4341761 +k2536,50:32583029,18713909:4341760 +) +(2536,51:20753781,19560784:11829248,505283,102891 +h2536,50:20753781,19560784:0,0,0 +g2536,50:25078501,19560784 +g2536,50:26646777,19560784 +g2536,50:28215053,19560784 +k2536,51:30996730,19560784:1586300 +k2536,51:32583029,19560784:1586299 +) +(2536,52:20753781,20407658:11829248,505283,102891 +h2536,51:20753781,20407658:0,0,0 +g2536,51:28635140,20407658 +g2536,51:30203416,20407658 +k2536,52:31990911,20407658:592118 +k2536,52:32583029,20407658:592118 +) +(2536,53:20753781,21254533:11829248,505283,102891 +h2536,52:20753781,21254533:0,0,0 +g2536,52:23892955,21254533 +g2536,52:25461231,21254533 +g2536,52:27029507,21254533 +g2536,52:28597783,21254533 +g2536,52:30166059,21254533 +k2536,52:32583029,21254533:1047923 +) +(2536,53:23375221,22096021:9207808,485622,11795 +k2536,53:28576814,22096021:4006216 +k2536,53:32583029,22096021:4006215 +) +(2536,54:20753781,22942895:11829248,505283,134348 +h2536,53:20753781,22942895:0,0,0 +g2536,53:25473683,22942895 +k2536,54:29626045,22942895:2956985 +k2536,54:32583029,22942895:2956984 +) +(2536,55:20753781,23789770:11829248,505283,126483 +h2536,54:20753781,23789770:0,0,0 +g2536,54:23102590,23789770 +k2536,55:28241269,23789770:4341761 +k2536,55:32583029,23789770:4341760 +) +(2536,56:20753781,24636644:11829248,505283,102891 +h2536,55:20753781,24636644:0,0,0 +g2536,55:23102590,24636644 +g2536,55:24670866,24636644 +k2536,56:29224636,24636644:3358393 +k2536,56:32583029,24636644:3358393 +) +(2536,57:20753781,25483519:11829248,505283,126483 +h2536,56:20753781,25483519:0,0,0 +g2536,56:24288137,25483519 +g2536,56:25457954,25483519 +k2536,57:29418951,25483519:3164079 +k2536,57:32583029,25483519:3164078 +) +(2536,58:20753781,26330393:11829248,505283,126483 +h2536,57:20753781,26330393:0,0,0 +g2536,57:23892955,26330393 +g2536,57:25461231,26330393 +g2536,57:27029507,26330393 +k2536,58:31165485,26330393:1417545 +k2536,58:32583029,26330393:1417544 +) +(2536,59:20753781,27177268:11829248,505283,134348 +h2536,58:20753781,27177268:0,0,0 +g2536,58:24683319,27177268 +k2536,59:29230863,27177268:3352167 +k2536,59:32583029,27177268:3352166 +) +(2536,60:20753781,28024143:11829248,477757,126483 +h2536,59:20753781,28024143:0,0,0 +g2536,59:23102590,28024143 +k2536,60:28241269,28024143:4341761 +k2536,60:32583029,28024143:4341760 +) +(2536,61:20753781,28871017:11829248,505283,126483 +h2536,60:20753781,28871017:0,0,0 +g2536,60:23892955,28871017 +k2536,61:28636451,28871017:3946578 +k2536,61:32583029,28871017:3946578 +) +(2536,62:20753781,29717892:11829248,505283,102891 +h2536,61:20753781,29717892:0,0,0 +g2536,61:26659229,29717892 +g2536,61:27829046,29717892 +k2536,62:30604497,29717892:1978533 +k2536,62:32583029,29717892:1978532 +) +(2536,63:20753781,30564766:11829248,513147,102891 +h2536,62:20753781,30564766:0,0,0 +g2536,62:27054411,30564766 +k2536,63:30416409,30564766:2166621 +k2536,63:32583029,30564766:2166620 +) +(2536,64:20753781,31411641:11829248,513147,102891 +h2536,63:20753781,31411641:0,0,0 +g2536,63:25868865,31411641 +k2536,64:29823636,31411641:2759394 +k2536,64:32583029,31411641:2759393 +) +(2536,65:20753781,32258515:11829248,505283,134348 +h2536,64:20753781,32258515:0,0,0 +g2536,64:25868865,32258515 +k2536,65:29624406,32258515:2958623 +k2536,65:32583029,32258515:2958623 +) +(2536,66:20753781,33105390:11829248,505283,134348 +h2536,65:20753781,33105390:0,0,0 +g2536,65:25868865,33105390 +k2536,66:29624406,33105390:2958623 +k2536,66:32583029,33105390:2958623 +) +(2536,67:20753781,33952265:11829248,505283,102891 +h2536,66:20753781,33952265:0,0,0 +g2536,66:25473683,33952265 +k2536,67:29426815,33952265:3156214 +k2536,67:32583029,33952265:3156214 +) +(2536,68:20753781,34799139:11829248,505283,102891 +h2536,67:20753781,34799139:0,0,0 +g2536,67:25868865,34799139 +g2536,67:27038682,34799139 +g2536,67:28208499,34799139 +k2536,68:30794223,34799139:1788806 +k2536,68:32583029,34799139:1788806 +) +(2536,69:20753781,35646014:11829248,505283,102891 +h2536,68:20753781,35646014:0,0,0 +g2536,68:23892955,35646014 +k2536,69:28835681,35646014:3747349 +k2536,69:32583029,35646014:3747348 +) +(2536,70:20753781,36492888:11829248,505283,102891 +h2536,69:20753781,36492888:0,0,0 +g2536,69:25473683,36492888 +k2536,70:29426815,36492888:3156214 +k2536,70:32583029,36492888:3156214 +) +(2536,71:20753781,37339763:11829248,505283,102891 +h2536,70:20753781,37339763:0,0,0 +g2536,70:25473683,37339763 +k2536,71:29626045,37339763:2956985 +k2536,71:32583029,37339763:2956984 +) +(2536,72:20753781,38186637:11829248,505283,134348 +h2536,71:20753781,38186637:0,0,0 +g2536,71:24288137,38186637 +g2536,71:25856413,38186637 +g2536,71:27424689,38186637 +k2536,72:30601548,38186637:1981482 +k2536,72:32583029,38186637:1981481 +) +(2536,73:20753781,39033512:11829248,505283,102891 +h2536,72:20753781,39033512:0,0,0 +g2536,72:24288137,39033512 +k2536,73:29396341,39033512:3186688 +k2536,73:32583029,39033512:3186688 +) +(2536,74:20753781,39880386:11829248,505283,102891 +h2536,73:20753781,39880386:0,0,0 +g2536,73:23497773,39880386 +k2536,74:28438860,39880386:4144169 +k2536,74:32583029,39880386:4144169 +) +(2536,75:20753781,40727261:11829248,505283,102891 +h2536,74:20753781,40727261:0,0,0 +g2536,74:24288137,40727261 +k2536,75:28834042,40727261:3748987 +k2536,75:32583029,40727261:3748987 +) +(2536,76:20753781,41574136:11829248,505283,102891 +h2536,75:20753781,41574136:0,0,0 +g2536,75:25868865,41574136 +g2536,75:27038682,41574136 +g2536,75:28606958,41574136 +k2536,76:31192682,41574136:1390347 +k2536,76:32583029,41574136:1390347 +) +(2536,77:20753781,42421010:11829248,485622,102891 +h2536,76:20753781,42421010:0,0,0 +g2536,76:23892955,42421010 +k2536,77:28835681,42421010:3747349 +k2536,77:32583029,42421010:3747348 +) +(2536,81:20753781,44013020:11829248,505283,102891 +h2536,80:20753781,44013020:0,0,0 +g2536,80:25078501,44013020 +k2536,81:29428454,44013020:3154576 +k2536,81:32583029,44013020:3154575 +) +(2536,82:20753781,44859894:11829248,505283,102891 +h2536,81:20753781,44859894:0,0,0 +g2536,81:23102590,44859894 +k2536,82:28440498,44859894:4142531 +k2536,82:32583029,44859894:4142531 +) +(2536,83:20753781,45706769:11829248,505283,126483 +h2536,82:20753781,45706769:0,0,0 +g2536,82:24288137,45706769 +k2536,83:29033272,45706769:3549758 +k2536,83:32583029,45706769:3549757 +) +] +(2536,89:32583029,45706769:0,355205,126483 +h2536,89:32583029,45706769:420741,355205,126483 +k2536,89:32583029,45706769:-420741 +) +) +] +(2536,89:32583029,45706769:0,0,0 +g2536,89:32583029,45706769 +) +) +] +(2536,89:6630773,47279633:25952256,485622,11795 +(2536,89:6630773,47279633:25952256,485622,11795 +k2536,89:19009213,47279633:12378440 +k2536,89:32583030,47279633:12378440 +) +) +] +h2536,89:4262630,4025873:0,0,0 +] +!19152 +}350 !12 -{355 -[2539,193:4262630,47279633:28320399,43253760,0 -(2539,193:4262630,4025873:0,0,0 -[2539,193:-473657,4025873:11829248,0,0 -(2539,193:-473657,-710414:11829248,0,0 -h2539,193:-473657,-710414:0,0,0 -(2539,193:-473657,-710414:0,0,0 -(2539,193:-473657,-710414:0,0,0 -g2539,193:-473657,-710414 -(2539,193:-473657,-710414:65781,0,65781 -g2539,193:-407876,-710414 -[2539,193:-407876,-644633:0,0,0 +{351 +[2536,192:4262630,47279633:28320399,43253760,0 +(2536,192:4262630,4025873:0,0,0 +[2536,192:-473657,4025873:11829248,0,0 +(2536,192:-473657,-710414:11829248,0,0 +h2536,192:-473657,-710414:0,0,0 +(2536,192:-473657,-710414:0,0,0 +(2536,192:-473657,-710414:0,0,0 +g2536,192:-473657,-710414 +(2536,192:-473657,-710414:65781,0,65781 +g2536,192:-407876,-710414 +[2536,192:-407876,-644633:0,0,0 ] ) -k2539,193:-473657,-710414:-65781 +k2536,192:-473657,-710414:-65781 ) ) -k2539,193:11355591,-710414:11829248 -g2539,193:11355591,-710414 +k2536,192:11355591,-710414:11829248 +g2536,192:11355591,-710414 ) ] ) -[2539,193:6630773,47279633:25952256,43253760,0 -[2539,193:6630773,4812305:25952256,786432,0 -(2539,193:6630773,4812305:25952256,513147,126483 -(2539,193:6630773,4812305:25952256,513147,126483 -g2539,193:3078558,4812305 -[2539,193:3078558,4812305:0,0,0 -(2539,193:3078558,2439708:0,1703936,0 -k2539,193:1358238,2439708:-1720320 -(2539,1:1358238,2439708:1720320,1703936,0 -(2539,1:1358238,2439708:1179648,16384,0 -r2539,193:2537886,2439708:1179648,16384,0 +[2536,192:6630773,47279633:25952256,43253760,0 +[2536,192:6630773,4812305:25952256,786432,0 +(2536,192:6630773,4812305:25952256,513147,126483 +(2536,192:6630773,4812305:25952256,513147,126483 +g2536,192:3078558,4812305 +[2536,192:3078558,4812305:0,0,0 +(2536,192:3078558,2439708:0,1703936,0 +k2536,192:1358238,2439708:-1720320 +(2536,1:1358238,2439708:1720320,1703936,0 +(2536,1:1358238,2439708:1179648,16384,0 +r2536,192:2537886,2439708:1179648,16384,0 ) -g2539,1:3062174,2439708 -(2539,1:3062174,2439708:16384,1703936,0 -[2539,1:3062174,2439708:25952256,1703936,0 -(2539,1:3062174,1915420:25952256,1179648,0 -(2539,1:3062174,1915420:16384,1179648,0 -r2539,193:3078558,1915420:16384,1179648,0 +g2536,1:3062174,2439708 +(2536,1:3062174,2439708:16384,1703936,0 +[2536,1:3062174,2439708:25952256,1703936,0 +(2536,1:3062174,1915420:25952256,1179648,0 +(2536,1:3062174,1915420:16384,1179648,0 +r2536,192:3078558,1915420:16384,1179648,0 ) -k2539,1:29014430,1915420:25935872 -g2539,1:29014430,1915420 +k2536,1:29014430,1915420:25935872 +g2536,1:29014430,1915420 ) ] ) ) ) ] -[2539,193:3078558,4812305:0,0,0 -(2539,193:3078558,2439708:0,1703936,0 -g2539,193:29030814,2439708 -g2539,193:36135244,2439708 -(2539,1:36135244,2439708:1720320,1703936,0 -(2539,1:36135244,2439708:16384,1703936,0 -[2539,1:36135244,2439708:25952256,1703936,0 -(2539,1:36135244,1915420:25952256,1179648,0 -(2539,1:36135244,1915420:16384,1179648,0 -r2539,193:36151628,1915420:16384,1179648,0 +[2536,192:3078558,4812305:0,0,0 +(2536,192:3078558,2439708:0,1703936,0 +g2536,192:29030814,2439708 +g2536,192:36135244,2439708 +(2536,1:36135244,2439708:1720320,1703936,0 +(2536,1:36135244,2439708:16384,1703936,0 +[2536,1:36135244,2439708:25952256,1703936,0 +(2536,1:36135244,1915420:25952256,1179648,0 +(2536,1:36135244,1915420:16384,1179648,0 +r2536,192:36151628,1915420:16384,1179648,0 ) -k2539,1:62087500,1915420:25935872 -g2539,1:62087500,1915420 +k2536,1:62087500,1915420:25935872 +g2536,1:62087500,1915420 ) ] ) -g2539,1:36675916,2439708 -(2539,1:36675916,2439708:1179648,16384,0 -r2539,193:37855564,2439708:1179648,16384,0 +g2536,1:36675916,2439708 +(2536,1:36675916,2439708:1179648,16384,0 +r2536,192:37855564,2439708:1179648,16384,0 ) ) -k2539,193:3078556,2439708:-34777008 +k2536,192:3078556,2439708:-34777008 ) ] -[2539,193:3078558,4812305:0,0,0 -(2539,193:3078558,49800853:0,16384,2228224 -k2539,193:1358238,49800853:-1720320 -(2539,1:1358238,49800853:1720320,16384,2228224 -(2539,1:1358238,49800853:1179648,16384,0 -r2539,193:2537886,49800853:1179648,16384,0 +[2536,192:3078558,4812305:0,0,0 +(2536,192:3078558,49800853:0,16384,2228224 +k2536,192:1358238,49800853:-1720320 +(2536,1:1358238,49800853:1720320,16384,2228224 +(2536,1:1358238,49800853:1179648,16384,0 +r2536,192:2537886,49800853:1179648,16384,0 ) -g2539,1:3062174,49800853 -(2539,1:3062174,52029077:16384,1703936,0 -[2539,1:3062174,52029077:25952256,1703936,0 -(2539,1:3062174,51504789:25952256,1179648,0 -(2539,1:3062174,51504789:16384,1179648,0 -r2539,193:3078558,51504789:16384,1179648,0 +g2536,1:3062174,49800853 +(2536,1:3062174,52029077:16384,1703936,0 +[2536,1:3062174,52029077:25952256,1703936,0 +(2536,1:3062174,51504789:25952256,1179648,0 +(2536,1:3062174,51504789:16384,1179648,0 +r2536,192:3078558,51504789:16384,1179648,0 ) -k2539,1:29014430,51504789:25935872 -g2539,1:29014430,51504789 +k2536,1:29014430,51504789:25935872 +g2536,1:29014430,51504789 ) ] ) ) ) ] -[2539,193:3078558,4812305:0,0,0 -(2539,193:3078558,49800853:0,16384,2228224 -g2539,193:29030814,49800853 -g2539,193:36135244,49800853 -(2539,1:36135244,49800853:1720320,16384,2228224 -(2539,1:36135244,52029077:16384,1703936,0 -[2539,1:36135244,52029077:25952256,1703936,0 -(2539,1:36135244,51504789:25952256,1179648,0 -(2539,1:36135244,51504789:16384,1179648,0 -r2539,193:36151628,51504789:16384,1179648,0 +[2536,192:3078558,4812305:0,0,0 +(2536,192:3078558,49800853:0,16384,2228224 +g2536,192:29030814,49800853 +g2536,192:36135244,49800853 +(2536,1:36135244,49800853:1720320,16384,2228224 +(2536,1:36135244,52029077:16384,1703936,0 +[2536,1:36135244,52029077:25952256,1703936,0 +(2536,1:36135244,51504789:25952256,1179648,0 +(2536,1:36135244,51504789:16384,1179648,0 +r2536,192:36151628,51504789:16384,1179648,0 ) -k2539,1:62087500,51504789:25935872 -g2539,1:62087500,51504789 +k2536,1:62087500,51504789:25935872 +g2536,1:62087500,51504789 ) ] ) -g2539,1:36675916,49800853 -(2539,1:36675916,49800853:1179648,16384,0 -r2539,193:37855564,49800853:1179648,16384,0 +g2536,1:36675916,49800853 +(2536,1:36675916,49800853:1179648,16384,0 +r2536,192:37855564,49800853:1179648,16384,0 ) ) -k2539,193:3078556,49800853:-34777008 +k2536,192:3078556,49800853:-34777008 ) ] -g2539,193:6630773,4812305 -k2539,193:23661615,4812305:15835465 -g2539,193:27221530,4812305 -g2539,193:29095859,4812305 -g2539,193:29911126,4812305 -g2539,193:30524543,4812305 -) -) -] -[2539,193:6630773,45706769:25952256,40108032,0 -(2539,193:6630773,45706769:25952256,40108032,0 -(2539,193:6630773,45706769:0,0,0 -g2539,193:6630773,45706769 +g2536,192:6630773,4812305 +k2536,192:23661615,4812305:15835465 +g2536,192:27221530,4812305 +g2536,192:29095859,4812305 +g2536,192:29911126,4812305 +g2536,192:30524543,4812305 +) +) +] +[2536,192:6630773,45706769:25952256,40108032,0 +(2536,192:6630773,45706769:25952256,40108032,0 +(2536,192:6630773,45706769:0,0,0 +g2536,192:6630773,45706769 ) -[2539,193:6630773,45706769:25952256,40108032,0 -(2539,193:6630773,45706769:25952256,40108032,134348 -[2539,193:6630773,45706769:11829248,40108032,134348 -(2539,85:6630773,6254097:11829248,505283,102891 -h2539,84:6630773,6254097:0,0,0 -g2539,84:11745857,6254097 -k2539,85:15700628,6254097:2759394 -k2539,85:18460021,6254097:2759393 +[2536,192:6630773,45706769:25952256,40108032,0 +(2536,192:6630773,45706769:25952256,40108032,134348 +[2536,192:6630773,45706769:11829248,40108032,126483 +(2536,84:6630773,6254097:11829248,505283,102891 +h2536,83:6630773,6254097:0,0,0 +g2536,83:9374765,6254097 +k2536,84:14515082,6254097:3944940 +k2536,84:18460021,6254097:3944939 ) -(2539,86:6630773,7095585:11829248,505283,126483 -h2539,85:6630773,7095585:0,0,0 -g2539,85:10165129,7095585 -k2539,86:14910264,7095585:3549758 -k2539,86:18460021,7095585:3549757 -) -(2539,87:6630773,7937073:11829248,505283,102891 -h2539,86:6630773,7937073:0,0,0 -g2539,86:9769947,7937073 -k2539,87:15474201,7937073:2985821 -k2539,87:18460021,7937073:2985820 -) -(2539,91:6630773,9385361:11829248,505283,102891 -h2539,90:6630773,9385361:0,0,0 -g2539,90:8189218,9385361 -k2539,91:13723079,9385361:4736943 -k2539,91:18460021,9385361:4736942 -) -(2539,92:6630773,10226849:11829248,485622,102891 -h2539,91:6630773,10226849:0,0,0 -g2539,91:8584400,10226849 -g2539,91:10152676,10226849 -k2539,92:14904037,10226849:3555984 -k2539,92:18460021,10226849:3555984 -) -(2539,93:6630773,11068337:11829248,505283,102891 -h2539,92:6630773,11068337:0,0,0 -g2539,92:8979582,11068337 -g2539,92:10149399,11068337 -g2539,92:11319216,11068337 -k2539,93:15487307,11068337:2972714 -k2539,93:18460021,11068337:2972714 -) -(2539,94:6630773,11909825:11829248,505283,134348 -h2539,93:6630773,11909825:0,0,0 -g2539,93:10560311,11909825 -k2539,94:14908625,11909825:3551396 -k2539,94:18460021,11909825:3551396 -) -(2539,95:6630773,12751313:11829248,505283,102891 -h2539,94:6630773,12751313:0,0,0 -g2539,94:10560311,12751313 -g2539,94:11730128,12751313 -k2539,95:15493534,12751313:2966488 -k2539,95:18460021,12751313:2966487 -) -(2539,96:6630773,13592801:11829248,505283,102891 -h2539,95:6630773,13592801:0,0,0 -g2539,95:10955493,13592801 -k2539,96:15106216,13592801:3353805 -k2539,96:18460021,13592801:3353805 -) -(2539,97:6630773,14434289:11829248,505283,102891 -h2539,96:6630773,14434289:0,0,0 -g2539,96:9769947,14434289 -g2539,96:10939764,14434289 -g2539,96:12109581,14434289 -g2539,96:13677857,14434289 -g2539,96:15246133,14434289 -k2539,97:17450766,14434289:1009256 -k2539,97:18460021,14434289:1009255 -) -(2539,98:6630773,15275777:11829248,513147,102891 -h2539,97:6630773,15275777:0,0,0 -g2539,97:9374765,15275777 -g2539,97:10943041,15275777 -k2539,98:15299220,15275777:3160802 -k2539,98:18460021,15275777:3160801 -) -(2539,99:6630773,16117265:11829248,513147,102891 -h2539,98:6630773,16117265:0,0,0 -g2539,98:12536221,16117265 -k2539,99:16095810,16117265:2364212 -k2539,99:18460021,16117265:2364211 -) -(2539,100:6630773,16958753:11829248,505283,102891 -h2539,99:6630773,16958753:0,0,0 -g2539,99:10955493,16958753 -k2539,100:15106216,16958753:3353805 -k2539,100:18460021,16958753:3353805 -) -(2539,101:6630773,17800241:11829248,505283,102891 -h2539,100:6630773,17800241:0,0,0 -g2539,100:10560311,17800241 -k2539,101:14908625,17800241:3551396 -k2539,101:18460021,17800241:3551396 -) -(2539,102:6630773,18641729:11829248,505283,102891 -h2539,101:6630773,18641729:0,0,0 -g2539,101:11350675,18641729 -k2539,102:15303807,18641729:3156214 -k2539,102:18460021,18641729:3156214 -) -(2539,103:6630773,19483217:11829248,505283,102891 -h2539,102:6630773,19483217:0,0,0 -g2539,102:10955493,19483217 -k2539,103:15305446,19483217:3154576 -k2539,103:18460021,19483217:3154575 -) -(2539,104:6630773,20324705:11829248,505283,126483 -h2539,103:6630773,20324705:0,0,0 -g2539,103:12141039,20324705 -k2539,104:15898219,20324705:2561803 -k2539,104:18460021,20324705:2561802 -) -(2539,105:6630773,21166193:11829248,505283,102891 -h2539,104:6630773,21166193:0,0,0 -g2539,104:8979582,21166193 -k2539,105:15079018,21166193:3381003 -k2539,105:18460021,21166193:3381003 -) -(2539,106:6630773,22007681:11829248,505283,102891 -h2539,105:6630773,22007681:0,0,0 -g2539,105:10955493,22007681 -g2539,105:12523769,22007681 -k2539,106:16089584,22007681:2370438 -k2539,106:18460021,22007681:2370437 -) -(2539,107:6630773,22849169:11829248,505283,126483 -h2539,106:6630773,22849169:0,0,0 -g2539,106:11350675,22849169 -k2539,107:15303807,22849169:3156214 -k2539,107:18460021,22849169:3156214 -) -(2539,108:6630773,23690657:11829248,505283,102891 -h2539,107:6630773,23690657:0,0,0 -g2539,107:10165129,23690657 -k2539,108:14910264,23690657:3549758 -k2539,108:18460021,23690657:3549757 -) -(2539,112:6630773,25138945:11829248,505283,102891 -h2539,111:6630773,25138945:0,0,0 -g2539,111:9374765,25138945 -g2539,111:10544582,25138945 -k2539,112:14900761,25138945:3559261 -k2539,112:18460021,25138945:3559260 -) -(2539,113:6630773,25980433:11829248,513147,102891 -h2539,112:6630773,25980433:0,0,0 -g2539,112:10955493,25980433 -g2539,112:12125310,25980433 -g2539,112:13295127,25980433 -g2539,112:14863403,25980433 -k2539,113:17259401,25980433:1200621 -k2539,113:18460021,25980433:1200620 -) -(2539,114:6630773,26821921:11829248,513147,102891 -h2539,113:6630773,26821921:0,0,0 -g2539,113:11745857,26821921 -g2539,113:12915674,26821921 -g2539,113:14483950,26821921 -k2539,114:17069674,26821921:1390347 -k2539,114:18460021,26821921:1390347 -) -(2539,115:6630773,27663409:11829248,505283,126483 -h2539,114:6630773,27663409:0,0,0 -g2539,114:11350675,27663409 -k2539,115:15503037,27663409:2956985 -k2539,115:18460021,27663409:2956984 -) -(2539,116:6630773,28504897:11829248,505283,102891 -h2539,115:6630773,28504897:0,0,0 -g2539,115:10165129,28504897 -g2539,115:12459544,28504897 -k2539,116:16057471,28504897:2402550 -k2539,116:18460021,28504897:2402550 -) -(2539,117:6630773,29346385:11829248,505283,134348 -h2539,116:6630773,29346385:0,0,0 -g2539,116:9374765,29346385 -k2539,117:14315852,29346385:4144169 -k2539,117:18460021,29346385:4144169 -) -(2539,118:6630773,30187873:11829248,505283,102891 -h2539,117:6630773,30187873:0,0,0 -g2539,117:8979582,30187873 -g2539,117:10149399,30187873 -g2539,117:11319216,30187873 -k2539,118:15487307,30187873:2972714 -k2539,118:18460021,30187873:2972714 -) -(2539,119:6630773,31029361:11829248,505283,102891 -h2539,118:6630773,31029361:0,0,0 -g2539,118:9769947,31029361 -k2539,119:14513443,31029361:3946578 -k2539,119:18460021,31029361:3946578 -) -(2539,120:6630773,31870849:11829248,505283,102891 -h2539,119:6630773,31870849:0,0,0 -g2539,119:10955493,31870849 -k2539,120:15305446,31870849:3154576 -k2539,120:18460021,31870849:3154575 -) -(2539,121:6630773,32712337:11829248,505283,102891 -h2539,120:6630773,32712337:0,0,0 -g2539,120:8979582,32712337 -k2539,121:14317490,32712337:4142531 -k2539,121:18460021,32712337:4142531 -) -(2539,122:6630773,33553825:11829248,505283,102891 -h2539,121:6630773,33553825:0,0,0 -g2539,121:10560311,33553825 -k2539,122:15107855,33553825:3352167 -k2539,122:18460021,33553825:3352166 -) -(2539,123:6630773,34395313:11829248,505283,102891 -h2539,122:6630773,34395313:0,0,0 -g2539,122:8584400,34395313 -k2539,123:14119899,34395313:4340122 -k2539,123:18460021,34395313:4340122 -) -(2539,124:6630773,35236801:11829248,505283,102891 -h2539,123:6630773,35236801:0,0,0 -g2539,123:10560311,35236801 -g2539,123:12128587,35236801 -k2539,124:15891993,35236801:2568029 -k2539,124:18460021,35236801:2568028 -) -(2539,125:6630773,36078289:11829248,505283,102891 -h2539,124:6630773,36078289:0,0,0 -g2539,124:9374765,36078289 -g2539,124:10544582,36078289 -g2539,124:11714399,36078289 -g2539,124:12884216,36078289 -k2539,125:16070578,36078289:2389444 -k2539,125:18460021,36078289:2389443 -) -(2539,126:6630773,36919777:11829248,505283,102891 -h2539,125:6630773,36919777:0,0,0 -g2539,125:10165129,36919777 -k2539,126:14711034,36919777:3748987 -k2539,126:18460021,36919777:3748987 -) -(2539,127:6630773,37761265:11829248,513147,102891 -h2539,126:6630773,37761265:0,0,0 -g2539,126:12931403,37761265 -k2539,127:16293401,37761265:2166621 -k2539,127:18460021,37761265:2166620 -) -(2539,131:6630773,39209553:11829248,505283,102891 -h2539,130:6630773,39209553:0,0,0 -g2539,130:11350675,39209553 -k2539,131:15503037,39209553:2956985 -k2539,131:18460021,39209553:2956984 -) -(2539,132:6630773,40051041:11829248,505283,102891 -h2539,131:6630773,40051041:0,0,0 -g2539,131:10165129,40051041 -g2539,131:11733405,40051041 -k2539,132:15694402,40051041:2765620 -k2539,132:18460021,40051041:2765619 -) -(2539,133:6630773,40892529:11829248,505283,102891 -h2539,132:6630773,40892529:0,0,0 -g2539,132:12536221,40892529 -k2539,133:16095810,40892529:2364212 -k2539,133:18460021,40892529:2364211 -) -(2539,134:6630773,41734017:11829248,505283,102891 -h2539,133:6630773,41734017:0,0,0 -g2539,133:10165129,41734017 -k2539,134:14910264,41734017:3549758 -k2539,134:18460021,41734017:3549757 -) -(2539,135:6630773,42575505:11829248,505283,126483 -h2539,134:6630773,42575505:0,0,0 -g2539,134:8979582,42575505 -g2539,134:10149399,42575505 -k2539,135:14703169,42575505:3756852 -k2539,135:18460021,42575505:3756852 -) -(2539,136:6630773,43416993:11829248,505283,126483 -h2539,135:6630773,43416993:0,0,0 -g2539,135:12931403,43416993 -g2539,135:14499679,43416993 -k2539,136:17077539,43416993:1382483 -k2539,136:18460021,43416993:1382482 -) -(2539,137:6630773,44258481:11829248,505283,126483 -h2539,136:6630773,44258481:0,0,0 -g2539,136:11745857,44258481 -k2539,137:16462156,44258481:1997866 -k2539,137:18460021,44258481:1997865 -) -(2539,141:6630773,45706769:11829248,513147,134348 -h2539,140:6630773,45706769:0,0,0 -g2539,140:11745857,45706769 -k2539,141:15700628,45706769:2759394 -k2539,141:18460021,45706769:2759393 -) -] -k2539,193:19606901,45706769:1146880 -r2539,193:19606901,45706769:0,40242380,134348 -k2539,193:20753781,45706769:1146880 -[2539,193:20753781,45706769:11829248,40108032,134348 -(2539,142:20753781,6254097:11829248,513147,126483 -h2539,141:20753781,6254097:0,0,0 -g2539,141:25868865,6254097 -g2539,141:27437141,6254097 -g2539,141:29005417,6254097 -k2539,142:31391912,6254097:1191118 -k2539,142:32583029,6254097:1191117 -) -(2539,143:20753781,7097050:11829248,513147,102891 -h2539,142:20753781,7097050:0,0,0 -g2539,142:23497773,7097050 -k2539,143:28438860,7097050:4144169 -k2539,143:32583029,7097050:4144169 -) -(2539,144:20753781,7940003:11829248,513147,102891 -h2539,143:20753781,7940003:0,0,0 -g2539,143:24288137,7940003 -g2539,143:25457954,7940003 -g2539,143:26627771,7940003 -g2539,143:27797588,7940003 -k2539,144:30588768,7940003:1994262 -k2539,144:32583029,7940003:1994261 -) -(2539,145:20753781,8782955:11829248,485622,102891 -h2539,144:20753781,8782955:0,0,0 -g2539,144:23102590,8782955 -k2539,145:28241269,8782955:4341761 -k2539,145:32583029,8782955:4341760 -) -(2539,146:20753781,9625908:11829248,513147,126483 -h2539,145:20753781,9625908:0,0,0 -g2539,145:25473683,9625908 -k2539,146:29626045,9625908:2956985 -k2539,146:32583029,9625908:2956984 -) -(2539,147:20753781,10468861:11829248,513147,102891 -h2539,146:20753781,10468861:0,0,0 -g2539,146:24288137,10468861 -k2539,147:29033272,10468861:3549758 -k2539,147:32583029,10468861:3549757 -) -(2539,148:20753781,11311814:11829248,513147,102891 -h2539,147:20753781,11311814:0,0,0 -g2539,147:24288137,11311814 -k2539,148:29033272,11311814:3549758 -k2539,148:32583029,11311814:3549757 -) -(2539,149:20753781,12154767:11829248,513147,102891 -h2539,148:20753781,12154767:0,0,0 -g2539,148:27054411,12154767 -k2539,149:30416409,12154767:2166621 -k2539,149:32583029,12154767:2166620 -) -(2539,150:20753781,12997719:11829248,513147,102891 -h2539,149:20753781,12997719:0,0,0 -g2539,149:22312226,12997719 -g2539,149:23880502,12997719 -g2539,149:25448778,12997719 -k2539,150:29613592,12997719:2969437 -k2539,150:32583029,12997719:2969437 -) -(2539,151:20753781,13840672:11829248,513147,102891 -h2539,150:20753781,13840672:0,0,0 -g2539,150:24288137,13840672 -g2539,150:25457954,13840672 -g2539,150:26627771,13840672 -k2539,151:30203089,13840672:2379941 -k2539,151:32583029,13840672:2379940 -) -(2539,152:20753781,14683625:11829248,513147,102891 -h2539,151:20753781,14683625:0,0,0 -g2539,151:25078501,14683625 -k2539,152:29428454,14683625:3154576 -k2539,152:32583029,14683625:3154575 -) -(2539,153:20753781,15526578:11829248,513147,134348 -h2539,152:20753781,15526578:0,0,0 -g2539,152:25473683,15526578 -k2539,153:29626045,15526578:2956985 -k2539,153:32583029,15526578:2956984 -) -(2539,154:20753781,16369531:11829248,513147,102891 -h2539,153:20753781,16369531:0,0,0 -g2539,153:25078501,16369531 -k2539,154:29428454,16369531:3154576 -k2539,154:32583029,16369531:3154575 -) -(2539,158:20753781,17892256:11829248,505283,134348 -h2539,157:20753781,17892256:0,0,0 -g2539,157:24288137,17892256 -g2539,157:25856413,17892256 -k2539,158:29817410,17892256:2765620 -k2539,158:32583029,17892256:2765619 -) -(2539,159:20753781,18735209:11829248,505283,134348 -h2539,158:20753781,18735209:0,0,0 -g2539,158:25473683,18735209 -k2539,159:29626045,18735209:2956985 -k2539,159:32583029,18735209:2956984 -) -(2539,160:20753781,19578162:11829248,485622,134348 -h2539,159:20753781,19578162:0,0,0 -g2539,159:24683319,19578162 -k2539,160:29230863,19578162:3352167 -k2539,160:32583029,19578162:3352166 -) -(2539,161:20753781,20421115:11829248,505283,134348 -h2539,160:20753781,20421115:0,0,0 -g2539,160:25473683,20421115 -g2539,160:27041959,20421115 -k2539,161:30410183,20421115:2172847 -k2539,161:32583029,20421115:2172846 -) -(2539,162:20753781,21264068:11829248,505283,134348 -h2539,161:20753781,21264068:0,0,0 -g2539,161:25078501,21264068 -g2539,161:26646777,21264068 -g2539,161:28215053,21264068 -g2539,161:29783329,21264068 -k2539,162:31780868,21264068:802162 -k2539,162:32583029,21264068:802161 -) -(2539,163:20753781,22107020:11829248,505283,134348 -h2539,162:20753781,22107020:0,0,0 -g2539,162:25868865,22107020 -k2539,163:29823636,22107020:2759394 -k2539,163:32583029,22107020:2759393 -) -(2539,164:20753781,22949973:11829248,505283,134348 -h2539,163:20753781,22949973:0,0,0 -g2539,163:26659229,22949973 -k2539,164:30218818,22949973:2364212 -k2539,164:32583029,22949973:2364211 -) -(2539,165:20753781,23792926:11829248,505283,134348 -h2539,164:20753781,23792926:0,0,0 -g2539,164:25078501,23792926 -g2539,164:26646777,23792926 -g2539,164:28215053,23792926 -k2539,165:30996730,23792926:1586300 -k2539,165:32583029,23792926:1586299 -) -(2539,166:20753781,24635879:11829248,505283,134348 -h2539,165:20753781,24635879:0,0,0 -g2539,165:25868865,24635879 -k2539,166:29823636,24635879:2759394 -k2539,166:32583029,24635879:2759393 -) -(2539,167:20753781,25478832:11829248,505283,134348 -h2539,166:20753781,25478832:0,0,0 -g2539,166:26659229,25478832 -k2539,167:30218818,25478832:2364212 -k2539,167:32583029,25478832:2364211 -) -(2539,168:20753781,26321784:11829248,505283,134348 -h2539,167:20753781,26321784:0,0,0 -g2539,167:27844776,26321784 -k2539,168:30811591,26321784:1771438 -k2539,168:32583029,26321784:1771438 -) -(2539,169:20753781,27164737:11829248,505283,134348 -h2539,168:20753781,27164737:0,0,0 -g2539,168:26264047,27164737 -k2539,169:30021227,27164737:2561803 -k2539,169:32583029,27164737:2561802 -) -(2539,170:20753781,28007690:11829248,505283,134348 -h2539,169:20753781,28007690:0,0,0 -g2539,169:27054411,28007690 -k2539,170:30416409,28007690:2166621 -k2539,170:32583029,28007690:2166620 -) -(2539,171:20753781,28850643:11829248,505283,134348 -h2539,170:20753781,28850643:0,0,0 -g2539,170:25473683,28850643 -g2539,170:27041959,28850643 -k2539,171:30410183,28850643:2172847 -k2539,171:32583029,28850643:2172846 -) -(2539,172:20753781,29693595:11829248,505283,134348 -h2539,171:20753781,29693595:0,0,0 -g2539,171:27054411,29693595 -k2539,172:30416409,29693595:2166621 -k2539,172:32583029,29693595:2166620 -) -(2539,173:20753781,30536548:11829248,505283,134348 -h2539,172:20753781,30536548:0,0,0 -g2539,172:25078501,30536548 -k2539,173:29428454,30536548:3154576 -k2539,173:32583029,30536548:3154575 -) -(2539,174:20753781,31379501:11829248,505283,134348 -h2539,173:20753781,31379501:0,0,0 -g2539,173:27449594,31379501 -g2539,173:29017870,31379501 -k2539,174:31398138,31379501:1184891 -k2539,174:32583029,31379501:1184891 -) -(2539,175:20753781,32222454:11829248,505283,134348 -h2539,174:20753781,32222454:0,0,0 -g2539,174:25078501,32222454 -k2539,175:29428454,32222454:3154576 -k2539,175:32583029,32222454:3154575 -) -(2539,176:20753781,33065407:11829248,505283,134348 -h2539,175:20753781,33065407:0,0,0 -g2539,175:25868865,33065407 -g2539,175:27437141,33065407 -k2539,176:30607774,33065407:1975256 -k2539,176:32583029,33065407:1975255 -) -(2539,177:20753781,33908359:11829248,505283,134348 -h2539,176:20753781,33908359:0,0,0 -g2539,176:25078501,33908359 -g2539,176:26646777,33908359 -k2539,177:30212592,33908359:2370438 -k2539,177:32583029,33908359:2370437 -) -(2539,178:20753781,34751312:11829248,505283,134348 -h2539,177:20753781,34751312:0,0,0 -g2539,177:25868865,34751312 -g2539,177:28960198,34751312 -k2539,178:31369302,34751312:1213727 -k2539,178:32583029,34751312:1213727 -) -(2539,179:20753781,35594265:11829248,505283,134348 -h2539,178:20753781,35594265:0,0,0 -g2539,178:27449594,35594265 -k2539,179:30614000,35594265:1969029 -k2539,179:32583029,35594265:1969029 -) -(2539,180:20753781,36437218:11829248,505283,134348 -h2539,179:20753781,36437218:0,0,0 -g2539,179:28239958,36437218 -k2539,180:31009182,36437218:1573847 -k2539,180:32583029,36437218:1573847 -) -(2539,181:20753781,37280171:11829248,505283,134348 -h2539,180:20753781,37280171:0,0,0 -g2539,180:24683319,37280171 -k2539,181:29230863,37280171:3352167 -k2539,181:32583029,37280171:3352166 -) -(2539,182:20753781,38123123:11829248,505283,134348 -h2539,181:20753781,38123123:0,0,0 -g2539,181:25473683,38123123 -g2539,181:27041959,38123123 -g2539,181:28610235,38123123 -g2539,181:30178511,38123123 -k2539,181:32583029,38123123:1035471 -) -(2539,182:23375221,38964611:9207808,485622,102891 -g2539,181:24943497,38964611 -k2539,182:29360952,38964611:3222078 -k2539,182:32583029,38964611:3222077 -) -(2539,183:20753781,39807564:11829248,505283,134348 -h2539,182:20753781,39807564:0,0,0 -g2539,182:27449594,39807564 -k2539,183:30614000,39807564:1969029 -k2539,183:32583029,39807564:1969029 -) -(2539,184:20753781,40650517:11829248,505283,134348 -h2539,183:20753781,40650517:0,0,0 -g2539,183:25473683,40650517 -k2539,184:29626045,40650517:2956985 -k2539,184:32583029,40650517:2956984 -) -(2539,185:20753781,41493470:11829248,505283,134348 -h2539,184:20753781,41493470:0,0,0 -g2539,184:25473683,41493470 -g2539,184:27041959,41493470 -k2539,185:30410183,41493470:2172847 -k2539,185:32583029,41493470:2172846 -) -(2539,186:20753781,42336423:11829248,505283,134348 -h2539,185:20753781,42336423:0,0,0 -g2539,185:27054411,42336423 -k2539,186:30416409,42336423:2166621 -k2539,186:32583029,42336423:2166620 -) -(2539,187:20753781,43179375:11829248,505283,134348 -h2539,186:20753781,43179375:0,0,0 -g2539,186:25078501,43179375 -g2539,186:26646777,43179375 -k2539,187:30212592,43179375:2370438 -k2539,187:32583029,43179375:2370437 -) -(2539,188:20753781,44022328:11829248,505283,134348 -h2539,187:20753781,44022328:0,0,0 -g2539,187:25868865,44022328 -g2539,187:27437141,44022328 -g2539,187:29005417,44022328 -g2539,187:30573693,44022328 -k2539,187:32583029,44022328:640289 -) -(2539,188:23375221,44863816:9207808,485622,102891 -g2539,187:24943497,44863816 -g2539,187:26511773,44863816 -k2539,188:30145090,44863816:2437940 -k2539,188:32583029,44863816:2437939 -) -(2539,189:20753781,45706769:11829248,505283,134348 -h2539,188:20753781,45706769:0,0,0 -g2539,188:27844776,45706769 -g2539,188:29413052,45706769 -g2539,188:30981328,45706769 -k2539,189:32379867,45706769:203162 -k2539,189:32583029,45706769:203162 -) -] -(2539,193:32583029,45706769:0,355205,126483 -h2539,193:32583029,45706769:420741,355205,126483 -k2539,193:32583029,45706769:-420741 -) -) -] -(2539,193:32583029,45706769:0,0,0 -g2539,193:32583029,45706769 -) -) -] -(2539,193:6630773,47279633:25952256,0,0 -h2539,193:6630773,47279633:25952256,0,0 -) -] -h2539,193:4262630,4025873:0,0,0 -] -!22461 -}355 +(2536,85:6630773,7100491:11829248,505283,102891 +h2536,84:6630773,7100491:0,0,0 +g2536,84:11745857,7100491 +k2536,85:15700628,7100491:2759394 +k2536,85:18460021,7100491:2759393 +) +(2536,86:6630773,7946884:11829248,505283,126483 +h2536,85:6630773,7946884:0,0,0 +g2536,85:10165129,7946884 +k2536,86:14910264,7946884:3549758 +k2536,86:18460021,7946884:3549757 +) +(2536,87:6630773,8793278:11829248,505283,102891 +h2536,86:6630773,8793278:0,0,0 +g2536,86:9769947,8793278 +k2536,87:15474201,8793278:2985821 +k2536,87:18460021,8793278:2985820 +) +(2536,91:6630773,10376790:11829248,505283,102891 +h2536,90:6630773,10376790:0,0,0 +g2536,90:8189218,10376790 +k2536,91:13723079,10376790:4736943 +k2536,91:18460021,10376790:4736942 +) +(2536,92:6630773,11223183:11829248,485622,102891 +h2536,91:6630773,11223183:0,0,0 +g2536,91:8584400,11223183 +g2536,91:10152676,11223183 +k2536,92:14904037,11223183:3555984 +k2536,92:18460021,11223183:3555984 +) +(2536,93:6630773,12069577:11829248,505283,102891 +h2536,92:6630773,12069577:0,0,0 +g2536,92:8979582,12069577 +g2536,92:10149399,12069577 +g2536,92:11319216,12069577 +k2536,93:15487307,12069577:2972714 +k2536,93:18460021,12069577:2972714 +) +(2536,94:6630773,12915970:11829248,505283,134348 +h2536,93:6630773,12915970:0,0,0 +g2536,93:10560311,12915970 +k2536,94:14908625,12915970:3551396 +k2536,94:18460021,12915970:3551396 +) +(2536,95:6630773,13762364:11829248,505283,102891 +h2536,94:6630773,13762364:0,0,0 +g2536,94:10560311,13762364 +g2536,94:11730128,13762364 +k2536,95:15493534,13762364:2966488 +k2536,95:18460021,13762364:2966487 +) +(2536,96:6630773,14608758:11829248,505283,102891 +h2536,95:6630773,14608758:0,0,0 +g2536,95:10955493,14608758 +k2536,96:15106216,14608758:3353805 +k2536,96:18460021,14608758:3353805 +) +(2536,97:6630773,15455151:11829248,505283,102891 +h2536,96:6630773,15455151:0,0,0 +g2536,96:9769947,15455151 +g2536,96:10939764,15455151 +g2536,96:12109581,15455151 +g2536,96:13677857,15455151 +g2536,96:15246133,15455151 +k2536,97:17450766,15455151:1009256 +k2536,97:18460021,15455151:1009255 +) +(2536,98:6630773,16301545:11829248,513147,102891 +h2536,97:6630773,16301545:0,0,0 +g2536,97:9374765,16301545 +g2536,97:10943041,16301545 +k2536,98:15299220,16301545:3160802 +k2536,98:18460021,16301545:3160801 +) +(2536,99:6630773,17147938:11829248,513147,102891 +h2536,98:6630773,17147938:0,0,0 +g2536,98:12536221,17147938 +k2536,99:16095810,17147938:2364212 +k2536,99:18460021,17147938:2364211 +) +(2536,100:6630773,17994332:11829248,505283,102891 +h2536,99:6630773,17994332:0,0,0 +g2536,99:10955493,17994332 +k2536,100:15106216,17994332:3353805 +k2536,100:18460021,17994332:3353805 +) +(2536,101:6630773,18840725:11829248,505283,102891 +h2536,100:6630773,18840725:0,0,0 +g2536,100:10560311,18840725 +k2536,101:14908625,18840725:3551396 +k2536,101:18460021,18840725:3551396 +) +(2536,102:6630773,19687119:11829248,505283,102891 +h2536,101:6630773,19687119:0,0,0 +g2536,101:11350675,19687119 +k2536,102:15303807,19687119:3156214 +k2536,102:18460021,19687119:3156214 +) +(2536,103:6630773,20533512:11829248,505283,102891 +h2536,102:6630773,20533512:0,0,0 +g2536,102:10955493,20533512 +k2536,103:15305446,20533512:3154576 +k2536,103:18460021,20533512:3154575 +) +(2536,104:6630773,21379906:11829248,505283,102891 +h2536,103:6630773,21379906:0,0,0 +g2536,103:13721768,21379906 +k2536,104:16688583,21379906:1771438 +k2536,104:18460021,21379906:1771438 +) +(2536,105:6630773,22226300:11829248,513147,102891 +h2536,104:6630773,22226300:0,0,0 +g2536,104:12141039,22226300 +k2536,105:15898219,22226300:2561803 +k2536,105:18460021,22226300:2561802 +) +(2536,106:6630773,23072693:11829248,505283,126483 +h2536,105:6630773,23072693:0,0,0 +g2536,105:12141039,23072693 +k2536,106:15898219,23072693:2561803 +k2536,106:18460021,23072693:2561802 +) +(2536,107:6630773,23919087:11829248,505283,102891 +h2536,106:6630773,23919087:0,0,0 +g2536,106:8979582,23919087 +k2536,107:15079018,23919087:3381003 +k2536,107:18460021,23919087:3381003 +) +(2536,108:6630773,24765480:11829248,505283,102891 +h2536,107:6630773,24765480:0,0,0 +g2536,107:10955493,24765480 +g2536,107:12523769,24765480 +k2536,108:16089584,24765480:2370438 +k2536,108:18460021,24765480:2370437 +) +(2536,109:6630773,25611874:11829248,505283,126483 +h2536,108:6630773,25611874:0,0,0 +g2536,108:11350675,25611874 +k2536,109:15303807,25611874:3156214 +k2536,109:18460021,25611874:3156214 +) +(2536,110:6630773,26458267:11829248,505283,102891 +h2536,109:6630773,26458267:0,0,0 +g2536,109:10165129,26458267 +k2536,110:14910264,26458267:3549758 +k2536,110:18460021,26458267:3549757 +) +(2536,114:6630773,28041779:11829248,505283,102891 +h2536,113:6630773,28041779:0,0,0 +g2536,113:9374765,28041779 +g2536,113:10544582,28041779 +k2536,114:14900761,28041779:3559261 +k2536,114:18460021,28041779:3559260 +) +(2536,115:6630773,28888173:11829248,513147,102891 +h2536,114:6630773,28888173:0,0,0 +g2536,114:10955493,28888173 +g2536,114:12125310,28888173 +g2536,114:13295127,28888173 +g2536,114:14863403,28888173 +k2536,115:17259401,28888173:1200621 +k2536,115:18460021,28888173:1200620 +) +(2536,116:6630773,29734566:11829248,513147,102891 +h2536,115:6630773,29734566:0,0,0 +g2536,115:11745857,29734566 +g2536,115:12915674,29734566 +g2536,115:14483950,29734566 +k2536,116:17069674,29734566:1390347 +k2536,116:18460021,29734566:1390347 +) +(2536,117:6630773,30580960:11829248,505283,126483 +h2536,116:6630773,30580960:0,0,0 +g2536,116:11350675,30580960 +k2536,117:15503037,30580960:2956985 +k2536,117:18460021,30580960:2956984 +) +(2536,118:6630773,31427354:11829248,505283,102891 +h2536,117:6630773,31427354:0,0,0 +g2536,117:10165129,31427354 +g2536,117:12459544,31427354 +k2536,118:16057471,31427354:2402550 +k2536,118:18460021,31427354:2402550 +) +(2536,119:6630773,32273747:11829248,505283,134348 +h2536,118:6630773,32273747:0,0,0 +g2536,118:9374765,32273747 +k2536,119:14315852,32273747:4144169 +k2536,119:18460021,32273747:4144169 +) +(2536,120:6630773,33120141:11829248,505283,102891 +h2536,119:6630773,33120141:0,0,0 +g2536,119:8979582,33120141 +g2536,119:10149399,33120141 +g2536,119:11319216,33120141 +k2536,120:15487307,33120141:2972714 +k2536,120:18460021,33120141:2972714 +) +(2536,121:6630773,33966534:11829248,505283,102891 +h2536,120:6630773,33966534:0,0,0 +g2536,120:9769947,33966534 +k2536,121:14513443,33966534:3946578 +k2536,121:18460021,33966534:3946578 +) +(2536,122:6630773,34812928:11829248,505283,102891 +h2536,121:6630773,34812928:0,0,0 +g2536,121:10955493,34812928 +k2536,122:15305446,34812928:3154576 +k2536,122:18460021,34812928:3154575 +) +(2536,123:6630773,35659321:11829248,505283,102891 +h2536,122:6630773,35659321:0,0,0 +g2536,122:8979582,35659321 +k2536,123:14317490,35659321:4142531 +k2536,123:18460021,35659321:4142531 +) +(2536,124:6630773,36505715:11829248,505283,102891 +h2536,123:6630773,36505715:0,0,0 +g2536,123:10560311,36505715 +k2536,124:15107855,36505715:3352167 +k2536,124:18460021,36505715:3352166 +) +(2536,125:6630773,37352109:11829248,505283,102891 +h2536,124:6630773,37352109:0,0,0 +g2536,124:8584400,37352109 +k2536,125:14119899,37352109:4340122 +k2536,125:18460021,37352109:4340122 +) +(2536,126:6630773,38198502:11829248,505283,102891 +h2536,125:6630773,38198502:0,0,0 +g2536,125:10560311,38198502 +g2536,125:12128587,38198502 +k2536,126:15891993,38198502:2568029 +k2536,126:18460021,38198502:2568028 +) +(2536,127:6630773,39044896:11829248,505283,102891 +h2536,126:6630773,39044896:0,0,0 +g2536,126:9374765,39044896 +g2536,126:10544582,39044896 +g2536,126:11714399,39044896 +g2536,126:12884216,39044896 +k2536,127:16070578,39044896:2389444 +k2536,127:18460021,39044896:2389443 +) +(2536,128:6630773,39891289:11829248,505283,102891 +h2536,127:6630773,39891289:0,0,0 +g2536,127:10165129,39891289 +k2536,128:14711034,39891289:3748987 +k2536,128:18460021,39891289:3748987 +) +(2536,129:6630773,40737683:11829248,513147,102891 +h2536,128:6630773,40737683:0,0,0 +g2536,128:12931403,40737683 +k2536,129:16293401,40737683:2166621 +k2536,129:18460021,40737683:2166620 +) +(2536,133:6630773,42321195:11829248,505283,102891 +h2536,132:6630773,42321195:0,0,0 +g2536,132:11350675,42321195 +k2536,133:15503037,42321195:2956985 +k2536,133:18460021,42321195:2956984 +) +(2536,134:6630773,43167588:11829248,505283,102891 +h2536,133:6630773,43167588:0,0,0 +g2536,133:10165129,43167588 +g2536,133:11733405,43167588 +k2536,134:15694402,43167588:2765620 +k2536,134:18460021,43167588:2765619 +) +(2536,135:6630773,44013982:11829248,505283,102891 +h2536,134:6630773,44013982:0,0,0 +g2536,134:12536221,44013982 +k2536,135:16095810,44013982:2364212 +k2536,135:18460021,44013982:2364211 +) +(2536,136:6630773,44860375:11829248,505283,102891 +h2536,135:6630773,44860375:0,0,0 +g2536,135:10165129,44860375 +k2536,136:14910264,44860375:3549758 +k2536,136:18460021,44860375:3549757 +) +(2536,137:6630773,45706769:11829248,505283,126483 +h2536,136:6630773,45706769:0,0,0 +g2536,136:8979582,45706769 +g2536,136:10149399,45706769 +k2536,137:14703169,45706769:3756852 +k2536,137:18460021,45706769:3756852 +) +] +k2536,192:19606901,45706769:1146880 +r2536,192:19606901,45706769:0,40242380,134348 +k2536,192:20753781,45706769:1146880 +[2536,192:20753781,45706769:11829248,40108032,134348 +(2536,138:20753781,6254097:11829248,505283,126483 +h2536,137:20753781,6254097:0,0,0 +g2536,137:27054411,6254097 +g2536,137:28622687,6254097 +k2536,138:31200547,6254097:1382483 +k2536,138:32583029,6254097:1382482 +) +(2536,139:20753781,7099141:11829248,505283,126483 +h2536,138:20753781,7099141:0,0,0 +g2536,138:25868865,7099141 +k2536,139:30585164,7099141:1997866 +k2536,139:32583029,7099141:1997865 +) +(2536,143:20753781,8658810:11829248,513147,134348 +h2536,142:20753781,8658810:0,0,0 +g2536,142:25868865,8658810 +k2536,143:29823636,8658810:2759394 +k2536,143:32583029,8658810:2759393 +) +(2536,144:20753781,9503854:11829248,513147,126483 +h2536,143:20753781,9503854:0,0,0 +g2536,143:25868865,9503854 +g2536,143:27437141,9503854 +g2536,143:29005417,9503854 +k2536,144:31391912,9503854:1191118 +k2536,144:32583029,9503854:1191117 +) +(2536,145:20753781,10348898:11829248,513147,102891 +h2536,144:20753781,10348898:0,0,0 +g2536,144:23497773,10348898 +k2536,145:28438860,10348898:4144169 +k2536,145:32583029,10348898:4144169 +) +(2536,146:20753781,11193942:11829248,513147,102891 +h2536,145:20753781,11193942:0,0,0 +g2536,145:24288137,11193942 +g2536,145:25457954,11193942 +g2536,145:26627771,11193942 +g2536,145:27797588,11193942 +k2536,146:30588768,11193942:1994262 +k2536,146:32583029,11193942:1994261 +) +(2536,147:20753781,12038986:11829248,485622,102891 +h2536,146:20753781,12038986:0,0,0 +g2536,146:23102590,12038986 +k2536,147:28241269,12038986:4341761 +k2536,147:32583029,12038986:4341760 +) +(2536,148:20753781,12884030:11829248,513147,126483 +h2536,147:20753781,12884030:0,0,0 +g2536,147:25473683,12884030 +k2536,148:29626045,12884030:2956985 +k2536,148:32583029,12884030:2956984 +) +(2536,149:20753781,13729074:11829248,513147,102891 +h2536,148:20753781,13729074:0,0,0 +g2536,148:24288137,13729074 +k2536,149:29033272,13729074:3549758 +k2536,149:32583029,13729074:3549757 +) +(2536,150:20753781,14574118:11829248,513147,102891 +h2536,149:20753781,14574118:0,0,0 +g2536,149:24288137,14574118 +k2536,150:29033272,14574118:3549758 +k2536,150:32583029,14574118:3549757 +) +(2536,151:20753781,15419162:11829248,513147,102891 +h2536,150:20753781,15419162:0,0,0 +g2536,150:27054411,15419162 +k2536,151:30416409,15419162:2166621 +k2536,151:32583029,15419162:2166620 +) +(2536,152:20753781,16264206:11829248,513147,102891 +h2536,151:20753781,16264206:0,0,0 +g2536,151:22312226,16264206 +g2536,151:23880502,16264206 +g2536,151:25448778,16264206 +k2536,152:29613592,16264206:2969437 +k2536,152:32583029,16264206:2969437 +) +(2536,153:20753781,17109250:11829248,513147,102891 +h2536,152:20753781,17109250:0,0,0 +g2536,152:24288137,17109250 +g2536,152:25457954,17109250 +g2536,152:26627771,17109250 +k2536,153:30203089,17109250:2379941 +k2536,153:32583029,17109250:2379940 +) +(2536,154:20753781,17954293:11829248,513147,102891 +h2536,153:20753781,17954293:0,0,0 +g2536,153:25078501,17954293 +k2536,154:29428454,17954293:3154576 +k2536,154:32583029,17954293:3154575 +) +(2536,155:20753781,18799337:11829248,513147,134348 +h2536,154:20753781,18799337:0,0,0 +g2536,154:25473683,18799337 +k2536,155:29626045,18799337:2956985 +k2536,155:32583029,18799337:2956984 +) +(2536,156:20753781,19644381:11829248,513147,102891 +h2536,155:20753781,19644381:0,0,0 +g2536,155:25078501,19644381 +k2536,156:29428454,19644381:3154576 +k2536,156:32583029,19644381:3154575 +) +(2536,160:20753781,21204051:11829248,505283,134348 +h2536,159:20753781,21204051:0,0,0 +g2536,159:24288137,21204051 +g2536,159:25856413,21204051 +k2536,160:29817410,21204051:2765620 +k2536,160:32583029,21204051:2765619 +) +(2536,161:20753781,22049094:11829248,505283,134348 +h2536,160:20753781,22049094:0,0,0 +g2536,160:25473683,22049094 +k2536,161:29626045,22049094:2956985 +k2536,161:32583029,22049094:2956984 +) +(2536,162:20753781,22894138:11829248,485622,134348 +h2536,161:20753781,22894138:0,0,0 +g2536,161:24683319,22894138 +k2536,162:29230863,22894138:3352167 +k2536,162:32583029,22894138:3352166 +) +(2536,163:20753781,23739182:11829248,505283,134348 +h2536,162:20753781,23739182:0,0,0 +g2536,162:25473683,23739182 +g2536,162:27041959,23739182 +k2536,163:30410183,23739182:2172847 +k2536,163:32583029,23739182:2172846 +) +(2536,164:20753781,24584226:11829248,505283,134348 +h2536,163:20753781,24584226:0,0,0 +g2536,163:25078501,24584226 +g2536,163:26646777,24584226 +g2536,163:28215053,24584226 +g2536,163:29783329,24584226 +k2536,164:31780868,24584226:802162 +k2536,164:32583029,24584226:802161 +) +(2536,165:20753781,25429270:11829248,505283,134348 +h2536,164:20753781,25429270:0,0,0 +g2536,164:25868865,25429270 +k2536,165:29823636,25429270:2759394 +k2536,165:32583029,25429270:2759393 +) +(2536,166:20753781,26274314:11829248,505283,134348 +h2536,165:20753781,26274314:0,0,0 +g2536,165:26659229,26274314 +k2536,166:30218818,26274314:2364212 +k2536,166:32583029,26274314:2364211 +) +(2536,167:20753781,27119358:11829248,505283,134348 +h2536,166:20753781,27119358:0,0,0 +g2536,166:25078501,27119358 +g2536,166:26646777,27119358 +g2536,166:28215053,27119358 +k2536,167:30996730,27119358:1586300 +k2536,167:32583029,27119358:1586299 +) +(2536,168:20753781,27964402:11829248,505283,134348 +h2536,167:20753781,27964402:0,0,0 +g2536,167:25868865,27964402 +k2536,168:29823636,27964402:2759394 +k2536,168:32583029,27964402:2759393 +) +(2536,169:20753781,28809446:11829248,505283,134348 +h2536,168:20753781,28809446:0,0,0 +g2536,168:26659229,28809446 +k2536,169:30218818,28809446:2364212 +k2536,169:32583029,28809446:2364211 +) +(2536,170:20753781,29654490:11829248,505283,134348 +h2536,169:20753781,29654490:0,0,0 +g2536,169:27844776,29654490 +k2536,170:30811591,29654490:1771438 +k2536,170:32583029,29654490:1771438 +) +(2536,171:20753781,30499534:11829248,505283,134348 +h2536,170:20753781,30499534:0,0,0 +g2536,170:26264047,30499534 +k2536,171:30021227,30499534:2561803 +k2536,171:32583029,30499534:2561802 +) +(2536,172:20753781,31344578:11829248,505283,134348 +h2536,171:20753781,31344578:0,0,0 +g2536,171:27054411,31344578 +k2536,172:30416409,31344578:2166621 +k2536,172:32583029,31344578:2166620 +) +(2536,173:20753781,32189622:11829248,505283,134348 +h2536,172:20753781,32189622:0,0,0 +g2536,172:25473683,32189622 +g2536,172:27041959,32189622 +k2536,173:30410183,32189622:2172847 +k2536,173:32583029,32189622:2172846 +) +(2536,174:20753781,33034666:11829248,505283,134348 +h2536,173:20753781,33034666:0,0,0 +g2536,173:27054411,33034666 +k2536,174:30416409,33034666:2166621 +k2536,174:32583029,33034666:2166620 +) +(2536,175:20753781,33879710:11829248,505283,134348 +h2536,174:20753781,33879710:0,0,0 +g2536,174:25078501,33879710 +k2536,175:29428454,33879710:3154576 +k2536,175:32583029,33879710:3154575 +) +(2536,176:20753781,34724754:11829248,505283,134348 +h2536,175:20753781,34724754:0,0,0 +g2536,175:27449594,34724754 +g2536,175:29017870,34724754 +k2536,176:31398138,34724754:1184891 +k2536,176:32583029,34724754:1184891 +) +(2536,177:20753781,35569798:11829248,505283,134348 +h2536,176:20753781,35569798:0,0,0 +g2536,176:25078501,35569798 +k2536,177:29428454,35569798:3154576 +k2536,177:32583029,35569798:3154575 +) +(2536,178:20753781,36414842:11829248,505283,134348 +h2536,177:20753781,36414842:0,0,0 +g2536,177:25868865,36414842 +g2536,177:27437141,36414842 +k2536,178:30607774,36414842:1975256 +k2536,178:32583029,36414842:1975255 +) +(2536,179:20753781,37259885:11829248,505283,134348 +h2536,178:20753781,37259885:0,0,0 +g2536,178:25078501,37259885 +g2536,178:26646777,37259885 +k2536,179:30212592,37259885:2370438 +k2536,179:32583029,37259885:2370437 +) +(2536,180:20753781,38104929:11829248,505283,134348 +h2536,179:20753781,38104929:0,0,0 +g2536,179:25868865,38104929 +g2536,179:28960198,38104929 +k2536,180:31369302,38104929:1213727 +k2536,180:32583029,38104929:1213727 +) +(2536,181:20753781,38949973:11829248,505283,134348 +h2536,180:20753781,38949973:0,0,0 +g2536,180:27449594,38949973 +k2536,181:30614000,38949973:1969029 +k2536,181:32583029,38949973:1969029 +) +(2536,182:20753781,39795017:11829248,505283,134348 +h2536,181:20753781,39795017:0,0,0 +g2536,181:28239958,39795017 +k2536,182:31009182,39795017:1573847 +k2536,182:32583029,39795017:1573847 +) +(2536,183:20753781,40640061:11829248,505283,134348 +h2536,182:20753781,40640061:0,0,0 +g2536,182:24683319,40640061 +k2536,183:29230863,40640061:3352167 +k2536,183:32583029,40640061:3352166 +) +(2536,184:20753781,41485105:11829248,505283,134348 +h2536,183:20753781,41485105:0,0,0 +g2536,183:25473683,41485105 +g2536,183:27041959,41485105 +g2536,183:28610235,41485105 +g2536,183:30178511,41485105 +k2536,183:32583029,41485105:1035471 +) +(2536,184:23375221,42326593:9207808,485622,102891 +g2536,183:24943497,42326593 +k2536,184:29360952,42326593:3222078 +k2536,184:32583029,42326593:3222077 +) +(2536,185:20753781,43171637:11829248,505283,134348 +h2536,184:20753781,43171637:0,0,0 +g2536,184:27449594,43171637 +k2536,185:30614000,43171637:1969029 +k2536,185:32583029,43171637:1969029 +) +(2536,186:20753781,44016681:11829248,505283,134348 +h2536,185:20753781,44016681:0,0,0 +g2536,185:25473683,44016681 +g2536,185:27041959,44016681 +k2536,186:30410183,44016681:2172847 +k2536,186:32583029,44016681:2172846 +) +(2536,187:20753781,44861725:11829248,505283,134348 +h2536,186:20753781,44861725:0,0,0 +g2536,186:25473683,44861725 +g2536,186:27041959,44861725 +k2536,187:30410183,44861725:2172847 +k2536,187:32583029,44861725:2172846 +) +(2536,188:20753781,45706769:11829248,505283,134348 +h2536,187:20753781,45706769:0,0,0 +g2536,187:27054411,45706769 +k2536,188:30416409,45706769:2166621 +k2536,188:32583029,45706769:2166620 +) +] +(2536,192:32583029,45706769:0,355205,126483 +h2536,192:32583029,45706769:420741,355205,126483 +k2536,192:32583029,45706769:-420741 +) +) +] +(2536,192:32583029,45706769:0,0,0 +g2536,192:32583029,45706769 +) +) +] +(2536,192:6630773,47279633:25952256,0,0 +h2536,192:6630773,47279633:25952256,0,0 +) +] +h2536,192:4262630,4025873:0,0,0 +] +!22181 +}351 !12 -{356 -[2539,299:4262630,47279633:28320399,43253760,0 -(2539,299:4262630,4025873:0,0,0 -[2539,299:-473657,4025873:11829248,0,0 -(2539,299:-473657,-710414:11829248,0,0 -h2539,299:-473657,-710414:0,0,0 -(2539,299:-473657,-710414:0,0,0 -(2539,299:-473657,-710414:0,0,0 -g2539,299:-473657,-710414 -(2539,299:-473657,-710414:65781,0,65781 -g2539,299:-407876,-710414 -[2539,299:-407876,-644633:0,0,0 +{352 +[2536,294:4262630,47279633:28320399,43253760,0 +(2536,294:4262630,4025873:0,0,0 +[2536,294:-473657,4025873:11829248,0,0 +(2536,294:-473657,-710414:11829248,0,0 +h2536,294:-473657,-710414:0,0,0 +(2536,294:-473657,-710414:0,0,0 +(2536,294:-473657,-710414:0,0,0 +g2536,294:-473657,-710414 +(2536,294:-473657,-710414:65781,0,65781 +g2536,294:-407876,-710414 +[2536,294:-407876,-644633:0,0,0 ] ) -k2539,299:-473657,-710414:-65781 +k2536,294:-473657,-710414:-65781 ) ) -k2539,299:11355591,-710414:11829248 -g2539,299:11355591,-710414 +k2536,294:11355591,-710414:11829248 +g2536,294:11355591,-710414 ) ] ) -[2539,299:6630773,47279633:25952256,43253760,0 -[2539,299:6630773,4812305:25952256,786432,0 -(2539,299:6630773,4812305:25952256,513147,126483 -(2539,299:6630773,4812305:25952256,513147,126483 -g2539,299:3078558,4812305 -[2539,299:3078558,4812305:0,0,0 -(2539,299:3078558,2439708:0,1703936,0 -k2539,299:1358238,2439708:-1720320 -(2539,1:1358238,2439708:1720320,1703936,0 -(2539,1:1358238,2439708:1179648,16384,0 -r2539,299:2537886,2439708:1179648,16384,0 +[2536,294:6630773,47279633:25952256,43253760,0 +[2536,294:6630773,4812305:25952256,786432,0 +(2536,294:6630773,4812305:25952256,513147,126483 +(2536,294:6630773,4812305:25952256,513147,126483 +g2536,294:3078558,4812305 +[2536,294:3078558,4812305:0,0,0 +(2536,294:3078558,2439708:0,1703936,0 +k2536,294:1358238,2439708:-1720320 +(2536,1:1358238,2439708:1720320,1703936,0 +(2536,1:1358238,2439708:1179648,16384,0 +r2536,294:2537886,2439708:1179648,16384,0 ) -g2539,1:3062174,2439708 -(2539,1:3062174,2439708:16384,1703936,0 -[2539,1:3062174,2439708:25952256,1703936,0 -(2539,1:3062174,1915420:25952256,1179648,0 -(2539,1:3062174,1915420:16384,1179648,0 -r2539,299:3078558,1915420:16384,1179648,0 +g2536,1:3062174,2439708 +(2536,1:3062174,2439708:16384,1703936,0 +[2536,1:3062174,2439708:25952256,1703936,0 +(2536,1:3062174,1915420:25952256,1179648,0 +(2536,1:3062174,1915420:16384,1179648,0 +r2536,294:3078558,1915420:16384,1179648,0 ) -k2539,1:29014430,1915420:25935872 -g2539,1:29014430,1915420 +k2536,1:29014430,1915420:25935872 +g2536,1:29014430,1915420 ) ] ) ) ) ] -[2539,299:3078558,4812305:0,0,0 -(2539,299:3078558,2439708:0,1703936,0 -g2539,299:29030814,2439708 -g2539,299:36135244,2439708 -(2539,1:36135244,2439708:1720320,1703936,0 -(2539,1:36135244,2439708:16384,1703936,0 -[2539,1:36135244,2439708:25952256,1703936,0 -(2539,1:36135244,1915420:25952256,1179648,0 -(2539,1:36135244,1915420:16384,1179648,0 -r2539,299:36151628,1915420:16384,1179648,0 +[2536,294:3078558,4812305:0,0,0 +(2536,294:3078558,2439708:0,1703936,0 +g2536,294:29030814,2439708 +g2536,294:36135244,2439708 +(2536,1:36135244,2439708:1720320,1703936,0 +(2536,1:36135244,2439708:16384,1703936,0 +[2536,1:36135244,2439708:25952256,1703936,0 +(2536,1:36135244,1915420:25952256,1179648,0 +(2536,1:36135244,1915420:16384,1179648,0 +r2536,294:36151628,1915420:16384,1179648,0 ) -k2539,1:62087500,1915420:25935872 -g2539,1:62087500,1915420 +k2536,1:62087500,1915420:25935872 +g2536,1:62087500,1915420 ) ] ) -g2539,1:36675916,2439708 -(2539,1:36675916,2439708:1179648,16384,0 -r2539,299:37855564,2439708:1179648,16384,0 +g2536,1:36675916,2439708 +(2536,1:36675916,2439708:1179648,16384,0 +r2536,294:37855564,2439708:1179648,16384,0 ) ) -k2539,299:3078556,2439708:-34777008 +k2536,294:3078556,2439708:-34777008 ) ] -[2539,299:3078558,4812305:0,0,0 -(2539,299:3078558,49800853:0,16384,2228224 -k2539,299:1358238,49800853:-1720320 -(2539,1:1358238,49800853:1720320,16384,2228224 -(2539,1:1358238,49800853:1179648,16384,0 -r2539,299:2537886,49800853:1179648,16384,0 +[2536,294:3078558,4812305:0,0,0 +(2536,294:3078558,49800853:0,16384,2228224 +k2536,294:1358238,49800853:-1720320 +(2536,1:1358238,49800853:1720320,16384,2228224 +(2536,1:1358238,49800853:1179648,16384,0 +r2536,294:2537886,49800853:1179648,16384,0 ) -g2539,1:3062174,49800853 -(2539,1:3062174,52029077:16384,1703936,0 -[2539,1:3062174,52029077:25952256,1703936,0 -(2539,1:3062174,51504789:25952256,1179648,0 -(2539,1:3062174,51504789:16384,1179648,0 -r2539,299:3078558,51504789:16384,1179648,0 +g2536,1:3062174,49800853 +(2536,1:3062174,52029077:16384,1703936,0 +[2536,1:3062174,52029077:25952256,1703936,0 +(2536,1:3062174,51504789:25952256,1179648,0 +(2536,1:3062174,51504789:16384,1179648,0 +r2536,294:3078558,51504789:16384,1179648,0 ) -k2539,1:29014430,51504789:25935872 -g2539,1:29014430,51504789 +k2536,1:29014430,51504789:25935872 +g2536,1:29014430,51504789 ) ] ) ) ) ] -[2539,299:3078558,4812305:0,0,0 -(2539,299:3078558,49800853:0,16384,2228224 -g2539,299:29030814,49800853 -g2539,299:36135244,49800853 -(2539,1:36135244,49800853:1720320,16384,2228224 -(2539,1:36135244,52029077:16384,1703936,0 -[2539,1:36135244,52029077:25952256,1703936,0 -(2539,1:36135244,51504789:25952256,1179648,0 -(2539,1:36135244,51504789:16384,1179648,0 -r2539,299:36151628,51504789:16384,1179648,0 +[2536,294:3078558,4812305:0,0,0 +(2536,294:3078558,49800853:0,16384,2228224 +g2536,294:29030814,49800853 +g2536,294:36135244,49800853 +(2536,1:36135244,49800853:1720320,16384,2228224 +(2536,1:36135244,52029077:16384,1703936,0 +[2536,1:36135244,52029077:25952256,1703936,0 +(2536,1:36135244,51504789:25952256,1179648,0 +(2536,1:36135244,51504789:16384,1179648,0 +r2536,294:36151628,51504789:16384,1179648,0 ) -k2539,1:62087500,51504789:25935872 -g2539,1:62087500,51504789 +k2536,1:62087500,51504789:25935872 +g2536,1:62087500,51504789 ) ] ) -g2539,1:36675916,49800853 -(2539,1:36675916,49800853:1179648,16384,0 -r2539,299:37855564,49800853:1179648,16384,0 +g2536,1:36675916,49800853 +(2536,1:36675916,49800853:1179648,16384,0 +r2536,294:37855564,49800853:1179648,16384,0 ) ) -k2539,299:3078556,49800853:-34777008 +k2536,294:3078556,49800853:-34777008 ) ] -g2539,299:6630773,4812305 -g2539,299:6630773,4812305 -g2539,299:10190688,4812305 -g2539,299:12065017,4812305 -g2539,299:12880284,4812305 -g2539,299:13493701,4812305 -g2539,299:15751416,4812305 -k2539,299:31387652,4812305:15636236 +g2536,294:6630773,4812305 +g2536,294:6630773,4812305 +g2536,294:10190688,4812305 +g2536,294:12065017,4812305 +g2536,294:12880284,4812305 +g2536,294:13493701,4812305 +g2536,294:15751416,4812305 +k2536,294:31387652,4812305:15636236 ) ) ] -[2539,299:6630773,45706769:25952256,40108032,0 -(2539,299:6630773,45706769:25952256,40108032,0 -(2539,299:6630773,45706769:0,0,0 -g2539,299:6630773,45706769 +[2536,294:6630773,45706769:25952256,40108032,0 +(2536,294:6630773,45706769:25952256,40108032,0 +(2536,294:6630773,45706769:0,0,0 +g2536,294:6630773,45706769 ) -[2539,299:6630773,45706769:25952256,40108032,0 -(2539,299:6630773,45706769:25952256,40108032,126483 -[2539,299:6630773,45706769:11829248,40108032,126483 -(2539,190:6630773,6254097:11829248,505283,134348 -h2539,189:6630773,6254097:0,0,0 -g2539,189:11745857,6254097 -k2539,190:15700628,6254097:2759394 -k2539,190:18460021,6254097:2759393 +[2536,294:6630773,45706769:25952256,40108032,0 +(2536,294:6630773,45706769:25952256,40108032,134348 +[2536,294:6630773,45706769:11829248,40108032,102891 +(2536,189:6630773,6254097:11829248,505283,134348 +h2536,188:6630773,6254097:0,0,0 +g2536,188:10955493,6254097 +g2536,188:12523769,6254097 +k2536,189:16089584,6254097:2370438 +k2536,189:18460021,6254097:2370437 ) -(2539,191:6630773,7099141:11829248,505283,134348 -h2539,190:6630773,7099141:0,0,0 -g2539,190:11745857,7099141 -k2539,191:15700628,7099141:2759394 -k2539,191:18460021,7099141:2759393 -) -(2539,192:6630773,7944185:11829248,505283,134348 -h2539,191:6630773,7944185:0,0,0 -g2539,191:11350675,7944185 -k2539,192:15503037,7944185:2956985 -k2539,192:18460021,7944185:2956984 -) -(2539,193:6630773,8789229:11829248,505283,134348 -h2539,192:6630773,8789229:0,0,0 -g2539,192:11350675,8789229 -k2539,193:15503037,8789229:2956985 -k2539,193:18460021,8789229:2956984 -) -(2539,194:6630773,9634273:11829248,505283,134348 -h2539,193:6630773,9634273:0,0,0 -g2539,193:10955493,9634273 -k2539,194:15305446,9634273:3154576 -k2539,194:18460021,9634273:3154575 -) -(2539,195:6630773,10479317:11829248,505283,134348 -h2539,194:6630773,10479317:0,0,0 -g2539,194:12536221,10479317 -g2539,194:14104497,10479317 -k2539,195:16879948,10479317:1580074 -k2539,195:18460021,10479317:1580073 -) -(2539,196:6630773,11324361:11829248,513147,134348 -h2539,195:6630773,11324361:0,0,0 -g2539,195:10560311,11324361 -k2539,196:15107855,11324361:3352167 -k2539,196:18460021,11324361:3352166 -) -(2539,197:6630773,12169405:11829248,513147,134348 -h2539,196:6630773,12169405:0,0,0 -g2539,196:12931403,12169405 -k2539,197:16293401,12169405:2166621 -k2539,197:18460021,12169405:2166620 -) -(2539,198:6630773,13014449:11829248,513147,134348 -h2539,197:6630773,13014449:0,0,0 -g2539,197:12536221,13014449 -k2539,198:16095810,13014449:2364212 -k2539,198:18460021,13014449:2364211 -) -(2539,199:6630773,13859493:11829248,505283,134348 -h2539,198:6630773,13859493:0,0,0 -g2539,198:12141039,13859493 -k2539,199:15898219,13859493:2561803 -k2539,199:18460021,13859493:2561802 -) -(2539,200:6630773,14704536:11829248,505283,134348 -h2539,199:6630773,14704536:0,0,0 -g2539,199:11745857,14704536 -k2539,200:15700628,14704536:2759394 -k2539,200:18460021,14704536:2759393 -) -(2539,201:6630773,15549580:11829248,505283,134348 -h2539,200:6630773,15549580:0,0,0 -g2539,200:11350675,15549580 -k2539,201:15503037,15549580:2956985 -k2539,201:18460021,15549580:2956984 -) -(2539,202:6630773,16394624:11829248,505283,134348 -h2539,201:6630773,16394624:0,0,0 -g2539,201:10955493,16394624 -k2539,202:15305446,16394624:3154576 -k2539,202:18460021,16394624:3154575 -) -(2539,203:6630773,17239668:11829248,505283,134348 -h2539,202:6630773,17239668:0,0,0 -g2539,202:11745857,17239668 -g2539,202:13314133,17239668 -k2539,203:16484766,17239668:1975256 -k2539,203:18460021,17239668:1975255 -) -(2539,204:6630773,18084712:11829248,505283,134348 -h2539,203:6630773,18084712:0,0,0 -g2539,203:13326586,18084712 -k2539,204:16490992,18084712:1969029 -k2539,204:18460021,18084712:1969029 -) -(2539,205:6630773,18929756:11829248,485622,134348 -h2539,204:6630773,18929756:0,0,0 -g2539,204:10560311,18929756 -g2539,204:12128587,18929756 -g2539,204:13696863,18929756 -k2539,205:16676131,18929756:1783891 -k2539,205:18460021,18929756:1783890 -) -(2539,206:6630773,19774800:11829248,505283,134348 -h2539,205:6630773,19774800:0,0,0 -g2539,205:11350675,19774800 -g2539,205:12918951,19774800 -g2539,205:16010284,19774800 -k2539,205:18460021,19774800:1080690 -) -(2539,206:9252213,20616288:9207808,485622,11795 -k2539,206:14453806,20616288:4006216 -k2539,206:18460021,20616288:4006215 -) -(2539,207:6630773,21461332:11829248,505283,134348 -h2539,206:6630773,21461332:0,0,0 -g2539,206:12931403,21461332 -k2539,207:16293401,21461332:2166621 -k2539,207:18460021,21461332:2166620 -) -(2539,208:6630773,22306376:11829248,505283,134348 -h2539,207:6630773,22306376:0,0,0 -g2539,207:13721768,22306376 -k2539,208:16688583,22306376:1771438 -k2539,208:18460021,22306376:1771438 -) -(2539,209:6630773,23151420:11829248,505283,134348 -h2539,208:6630773,23151420:0,0,0 -g2539,208:11350675,23151420 -k2539,209:16264565,23151420:2195457 -k2539,209:18460021,23151420:2195456 -) -(2539,210:6630773,23996464:11829248,505283,134348 -h2539,209:6630773,23996464:0,0,0 -g2539,209:12141039,23996464 -k2539,210:15898219,23996464:2561803 -k2539,210:18460021,23996464:2561802 -) -(2539,211:6630773,24841508:11829248,505283,134348 -h2539,210:6630773,24841508:0,0,0 -g2539,210:10955493,24841508 -k2539,211:15305446,24841508:3154576 -k2539,211:18460021,24841508:3154575 -) -(2539,212:6630773,25686552:11829248,505283,134348 -h2539,211:6630773,25686552:0,0,0 -g2539,211:11745857,25686552 -g2539,211:13314133,25686552 -k2539,212:16484766,25686552:1975256 -k2539,212:18460021,25686552:1975255 -) -(2539,213:6630773,26531596:11829248,505283,134348 -h2539,212:6630773,26531596:0,0,0 -g2539,212:8979582,26531596 -g2539,212:10547858,26531596 -k2539,213:15101628,26531596:3358393 -k2539,213:18460021,26531596:3358393 -) -(2539,214:6630773,27376640:11829248,505283,134348 -h2539,213:6630773,27376640:0,0,0 -g2539,213:9769947,27376640 -k2539,214:14712673,27376640:3747349 -k2539,214:18460021,27376640:3747348 -) -(2539,215:6630773,28221684:11829248,505283,134348 -h2539,214:6630773,28221684:0,0,0 -g2539,214:10165129,28221684 -g2539,214:11334946,28221684 -g2539,214:12903222,28221684 -k2539,215:16279310,28221684:2180711 -k2539,215:18460021,28221684:2180711 -) -(2539,216:6630773,29066728:11829248,505283,134348 -h2539,215:6630773,29066728:0,0,0 -g2539,215:11745857,29066728 -k2539,216:15700628,29066728:2759394 -k2539,216:18460021,29066728:2759393 -) -(2539,217:6630773,29911772:11829248,505283,134348 -h2539,216:6630773,29911772:0,0,0 -g2539,216:10560311,29911772 -k2539,217:15107855,29911772:3352167 -k2539,217:18460021,29911772:3352166 -) -(2539,218:6630773,30756816:11829248,505283,134348 -h2539,217:6630773,30756816:0,0,0 -g2539,217:8584400,30756816 -k2539,218:13920670,30756816:4539352 -k2539,218:18460021,30756816:4539351 -) -(2539,219:6630773,31601859:11829248,505283,134348 -h2539,218:6630773,31601859:0,0,0 -g2539,218:8979582,31601859 -k2539,219:14317490,31601859:4142531 -k2539,219:18460021,31601859:4142531 -) -(2539,220:6630773,32446903:11829248,505283,134348 -h2539,219:6630773,32446903:0,0,0 -g2539,219:10955493,32446903 -g2539,219:12523769,32446903 -k2539,220:16089584,32446903:2370438 -k2539,220:18460021,32446903:2370437 -) -(2539,224:6630773,34006573:11829248,505283,102891 -h2539,223:6630773,34006573:0,0,0 -g2539,223:8979582,34006573 -k2539,224:14317490,34006573:4142531 -k2539,224:18460021,34006573:4142531 -) -(2539,225:6630773,34851616:11829248,505283,102891 -h2539,224:6630773,34851616:0,0,0 -g2539,224:10165129,34851616 -g2539,224:11733405,34851616 -k2539,225:15694402,34851616:2765620 -k2539,225:18460021,34851616:2765619 -) -(2539,226:6630773,35696660:11829248,505283,102891 -h2539,225:6630773,35696660:0,0,0 -g2539,225:9374765,35696660 -g2539,225:10544582,35696660 -k2539,226:14900761,35696660:3559261 -k2539,226:18460021,35696660:3559260 -) -(2539,227:6630773,36541704:11829248,505283,126483 -h2539,226:6630773,36541704:0,0,0 -g2539,226:9374765,36541704 -k2539,227:14315852,36541704:4144169 -k2539,227:18460021,36541704:4144169 -) -(2539,231:6630773,38101373:11829248,505283,102891 -h2539,230:6630773,38101373:0,0,0 -g2539,230:8189218,38101373 -g2539,230:9757494,38101373 -k2539,231:14706446,38101373:3753575 -k2539,231:18460021,38101373:3753575 -) -(2539,232:6630773,38946417:11829248,505283,102891 -h2539,231:6630773,38946417:0,0,0 -g2539,231:11350675,38946417 -k2539,232:15503037,38946417:2956985 -k2539,232:18460021,38946417:2956984 -) -(2539,233:6630773,39791461:11829248,513147,102891 -h2539,232:6630773,39791461:0,0,0 -g2539,232:8584400,39791461 -g2539,232:9754217,39791461 -k2539,233:14505578,39791461:3954443 -k2539,233:18460021,39791461:3954443 -) -(2539,234:6630773,40636505:11829248,513147,102891 -h2539,233:6630773,40636505:0,0,0 -g2539,233:10560311,40636505 -k2539,234:14908625,40636505:3551396 -k2539,234:18460021,40636505:3551396 -) -(2539,235:6630773,41481549:11829248,513147,102891 -h2539,234:6630773,41481549:0,0,0 -g2539,234:10165129,41481549 -g2539,234:11334946,41481549 -k2539,235:15295943,41481549:3164079 -k2539,235:18460021,41481549:3164078 -) -(2539,236:6630773,42326593:11829248,513147,102891 -h2539,235:6630773,42326593:0,0,0 -g2539,235:8189218,42326593 -g2539,235:9359035,42326593 -k2539,236:14307987,42326593:4152034 -k2539,236:18460021,42326593:4152034 -) -(2539,237:6630773,43171637:11829248,505283,102891 -h2539,236:6630773,43171637:0,0,0 -g2539,236:10955493,43171637 -g2539,236:12125310,43171637 -k2539,237:15890354,43171637:2569667 -k2539,237:18460021,43171637:2569667 -) -(2539,238:6630773,44016681:11829248,505283,134348 -h2539,237:6630773,44016681:0,0,0 -g2539,237:11745857,44016681 -k2539,238:15700628,44016681:2759394 -k2539,238:18460021,44016681:2759393 -) -(2539,239:6630773,44861725:11829248,485622,126483 -h2539,238:6630773,44861725:0,0,0 -g2539,238:11350675,44861725 -k2539,239:15503037,44861725:2956985 -k2539,239:18460021,44861725:2956984 -) -(2539,240:6630773,45706769:11829248,485622,126483 -h2539,239:6630773,45706769:0,0,0 -g2539,239:11745857,45706769 -k2539,240:15700628,45706769:2759394 -k2539,240:18460021,45706769:2759393 -) -] -k2539,299:19606901,45706769:1146880 -r2539,299:19606901,45706769:0,40234515,126483 -k2539,299:20753781,45706769:1146880 -[2539,299:20753781,45706769:11829248,40108032,102891 -(2539,241:20753781,6254097:11829248,505283,134348 -h2539,240:20753781,6254097:0,0,0 -g2539,240:28239958,6254097 -k2539,241:31009182,6254097:1573847 -k2539,241:32583029,6254097:1573847 -) -(2539,242:20753781,7099096:11829248,505283,134348 -h2539,241:20753781,7099096:0,0,0 -g2539,241:23892955,7099096 -g2539,241:25062772,7099096 -g2539,241:26232589,7099096 -g2539,241:27402406,7099096 -k2539,242:30391177,7099096:2191853 -k2539,242:32583029,7099096:2191852 -) -(2539,243:20753781,7944094:11829248,505283,102891 -h2539,242:20753781,7944094:0,0,0 -g2539,242:22707408,7944094 -g2539,242:24275684,7944094 -k2539,243:29027045,7944094:3555984 -k2539,243:32583029,7944094:3555984 -) -(2539,244:20753781,8789093:11829248,505283,126483 -h2539,243:20753781,8789093:0,0,0 -g2539,243:25078501,8789093 -k2539,244:29229224,8789093:3353805 -k2539,244:32583029,8789093:3353805 -) -(2539,245:20753781,9634091:11829248,505283,102891 -h2539,244:20753781,9634091:0,0,0 -g2539,244:26659229,9634091 -k2539,245:30019588,9634091:2563441 -k2539,245:32583029,9634091:2563441 -) -(2539,246:20753781,10479090:11829248,505283,134348 -h2539,245:20753781,10479090:0,0,0 -g2539,245:25868865,10479090 -k2539,246:29624406,10479090:2958623 -k2539,246:32583029,10479090:2958623 -) -(2539,247:20753781,11324088:11829248,505283,102891 -h2539,246:20753781,11324088:0,0,0 -g2539,246:25473683,11324088 -k2539,247:29426815,11324088:3156214 -k2539,247:32583029,11324088:3156214 -) -(2539,248:20753781,12169087:11829248,505283,102891 -h2539,247:20753781,12169087:0,0,0 -g2539,247:23892955,12169087 -k2539,248:28636451,12169087:3946578 -k2539,248:32583029,12169087:3946578 -) -(2539,249:20753781,13014085:11829248,505283,102891 -h2539,248:20753781,13014085:0,0,0 -g2539,248:25868865,13014085 -g2539,248:27038682,13014085 -k2539,249:30209315,13014085:2373715 -k2539,249:32583029,13014085:2373714 -) -(2539,250:20753781,13859084:11829248,505283,102891 -h2539,249:20753781,13859084:0,0,0 -g2539,249:25473683,13859084 -k2539,250:29426815,13859084:3156214 -k2539,250:32583029,13859084:3156214 -) -(2539,251:20753781,14704083:11829248,505283,102891 -h2539,250:20753781,14704083:0,0,0 -g2539,250:25473683,14704083 -k2539,251:29626045,14704083:2956985 -k2539,251:32583029,14704083:2956984 -) -(2539,252:20753781,15549081:11829248,505283,102891 -h2539,251:20753781,15549081:0,0,0 -g2539,251:24288137,15549081 -k2539,252:29033272,15549081:3549758 -k2539,252:32583029,15549081:3549757 -) -(2539,256:20753781,17107948:11829248,505283,126483 -h2539,255:20753781,17107948:0,0,0 -g2539,255:26659229,17107948 -k2539,256:30218818,17107948:2364212 -k2539,256:32583029,17107948:2364211 -) -(2539,257:20753781,17952947:11829248,505283,102891 -h2539,256:20753781,17952947:0,0,0 -g2539,256:23497773,17952947 -g2539,256:25066049,17952947 -k2539,257:29422228,17952947:3160802 -k2539,257:32583029,17952947:3160801 -) -(2539,258:20753781,18797945:11829248,505283,126483 -h2539,257:20753781,18797945:0,0,0 -g2539,257:24288137,18797945 -g2539,257:25457954,18797945 -g2539,257:27026230,18797945 -k2539,258:30402318,18797945:2180711 -k2539,258:32583029,18797945:2180711 -) -(2539,259:20753781,19642944:11829248,513147,134348 -h2539,258:20753781,19642944:0,0,0 -g2539,258:25473683,19642944 -k2539,259:29626045,19642944:2956985 -k2539,259:32583029,19642944:2956984 -) -(2539,260:20753781,20487942:11829248,505283,134348 -h2539,259:20753781,20487942:0,0,0 -g2539,259:24288137,20487942 -g2539,259:25457954,20487942 -g2539,259:26627771,20487942 -g2539,259:27797588,20487942 -g2539,259:28967405,20487942 -k2539,260:31372906,20487942:1210124 -k2539,260:32583029,20487942:1210123 -) -(2539,261:20753781,21332941:11829248,485622,102891 -h2539,260:20753781,21332941:0,0,0 -g2539,260:23892955,21332941 -k2539,261:28636451,21332941:3946578 -k2539,261:32583029,21332941:3946578 -) -(2539,262:20753781,22177940:11829248,505283,102891 -h2539,261:20753781,22177940:0,0,0 -g2539,261:23892955,22177940 -k2539,262:28636451,22177940:3946578 -k2539,262:32583029,22177940:3946578 -) -(2539,263:20753781,23022938:11829248,505283,102891 -h2539,262:20753781,23022938:0,0,0 -g2539,262:24288137,23022938 -g2539,262:25457954,23022938 -g2539,262:26627771,23022938 -k2539,263:30003859,23022938:2579170 -k2539,263:32583029,23022938:2579170 -) -(2539,264:20753781,23867937:11829248,505283,102891 -h2539,263:20753781,23867937:0,0,0 -g2539,263:25078501,23867937 -g2539,263:26248318,23867937 -k2539,264:29814133,23867937:2768897 -k2539,264:32583029,23867937:2768896 -) -(2539,265:20753781,24712935:11829248,505283,126483 -h2539,264:20753781,24712935:0,0,0 -g2539,264:24683319,24712935 -k2539,265:29230863,24712935:3352167 -k2539,265:32583029,24712935:3352166 -) -(2539,266:20753781,25557934:11829248,505283,102891 -h2539,265:20753781,25557934:0,0,0 -g2539,265:22707408,25557934 -g2539,265:23877225,25557934 -g2539,265:25047042,25557934 -k2539,266:29412724,25557934:3170305 -k2539,266:32583029,25557934:3170305 -) -(2539,267:20753781,26402932:11829248,505283,102891 -h2539,266:20753781,26402932:0,0,0 -g2539,266:23497773,26402932 -k2539,267:28438860,26402932:4144169 -k2539,267:32583029,26402932:4144169 -) -(2539,268:20753781,27247931:11829248,505283,102891 -h2539,267:20753781,27247931:0,0,0 -g2539,267:25473683,27247931 -k2539,268:29626045,27247931:2956985 -k2539,268:32583029,27247931:2956984 -) -(2539,269:20753781,28092929:11829248,513147,102891 -h2539,268:20753781,28092929:0,0,0 -g2539,268:25868865,28092929 -k2539,269:29823636,28092929:2759394 -k2539,269:32583029,28092929:2759393 -) -(2539,270:20753781,28937928:11829248,505283,102891 -h2539,269:20753781,28937928:0,0,0 -g2539,269:22707408,28937928 -g2539,269:23877225,28937928 -g2539,269:25445501,28937928 -g2539,269:27013777,28937928 -g2539,269:28582053,28937928 -g2539,269:30150329,28937928 -k2539,270:31964368,28937928:618662 -k2539,270:32583029,28937928:618661 -) -(2539,271:20753781,29782926:11829248,505283,102891 -h2539,270:20753781,29782926:0,0,0 -g2539,270:23497773,29782926 -k2539,271:28438860,29782926:4144169 -k2539,271:32583029,29782926:4144169 -) -(2539,272:20753781,30627925:11829248,505283,134348 -h2539,271:20753781,30627925:0,0,0 -g2539,271:23102590,30627925 -k2539,272:28440498,30627925:4142531 -k2539,272:32583029,30627925:4142531 -) -(2539,273:20753781,31472924:11829248,505283,134348 -h2539,272:20753781,31472924:0,0,0 -g2539,272:23520056,31472924 -g2539,272:27076695,31472924 -g2539,272:29820687,31472924 -k2539,273:31600317,31472924:982712 -k2539,273:32583029,31472924:982712 -) -(2539,274:20753781,32317922:11829248,505283,134348 -h2539,273:20753781,32317922:0,0,0 -g2539,273:23892955,32317922 -g2539,273:25062772,32317922 -g2539,273:26232589,32317922 -g2539,273:27402406,32317922 -k2539,274:30391177,32317922:2191853 -k2539,274:32583029,32317922:2191852 -) -(2539,275:20753781,33162921:11829248,505283,102891 -h2539,274:20753781,33162921:0,0,0 -g2539,274:22707408,33162921 -g2539,274:23877225,33162921 -k2539,275:28628586,33162921:3954443 -k2539,275:32583029,33162921:3954443 -) -(2539,279:20753781,34721788:11829248,505283,102891 -h2539,278:20753781,34721788:0,0,0 -g2539,278:23102590,34721788 -k2539,279:28440498,34721788:4142531 -k2539,279:32583029,34721788:4142531 -) -(2539,280:20753781,35566786:11829248,505283,102891 -h2539,279:20753781,35566786:0,0,0 -g2539,279:24288137,35566786 -k2539,280:29033272,35566786:3549758 -k2539,280:32583029,35566786:3549757 -) -(2539,281:20753781,36411785:11829248,505283,102891 -h2539,280:20753781,36411785:0,0,0 -g2539,280:24683319,36411785 -k2539,281:29230863,36411785:3352167 -k2539,281:32583029,36411785:3352166 -) -(2539,282:20753781,37256783:11829248,505283,102891 -h2539,281:20753781,37256783:0,0,0 -g2539,281:23497773,37256783 -g2539,281:24667590,37256783 -g2539,281:25837407,37256783 -k2539,282:29807907,37256783:2775123 -k2539,282:32583029,37256783:2775122 -) -(2539,283:20753781,38101782:11829248,505283,102891 -h2539,282:20753781,38101782:0,0,0 -g2539,282:24288137,38101782 -g2539,282:25457954,38101782 -g2539,282:26627771,38101782 -k2539,283:30203089,38101782:2379941 -k2539,283:32583029,38101782:2379940 -) -(2539,284:20753781,38946781:11829248,505283,102891 -h2539,283:20753781,38946781:0,0,0 -g2539,283:23102590,38946781 -k2539,284:28440498,38946781:4142531 -k2539,284:32583029,38946781:4142531 -) -(2539,285:20753781,39791779:11829248,505283,102891 -h2539,284:20753781,39791779:0,0,0 -g2539,284:23497773,39791779 -g2539,284:25066049,39791779 -k2539,285:29422228,39791779:3160802 -k2539,285:32583029,39791779:3160801 -) -(2539,286:20753781,40636778:11829248,505283,102891 -h2539,285:20753781,40636778:0,0,0 -g2539,285:24288137,40636778 -k2539,286:29033272,40636778:3549758 -k2539,286:32583029,40636778:3549757 -) -(2539,287:20753781,41481776:11829248,505283,102891 -h2539,286:20753781,41481776:0,0,0 -g2539,286:24683319,41481776 -k2539,287:29230863,41481776:3352167 -k2539,287:32583029,41481776:3352166 -) -(2539,288:20753781,42326775:11829248,505283,134348 -h2539,287:20753781,42326775:0,0,0 -g2539,287:23497773,42326775 -k2539,288:28638090,42326775:3944940 -k2539,288:32583029,42326775:3944939 -) -(2539,289:20753781,43171773:11829248,505283,102891 -h2539,288:20753781,43171773:0,0,0 -g2539,288:23102590,43171773 -k2539,289:28440498,43171773:4142531 -k2539,289:32583029,43171773:4142531 -) -(2539,290:20753781,44016772:11829248,505283,102891 -h2539,289:20753781,44016772:0,0,0 -g2539,289:23497773,44016772 -g2539,289:24667590,44016772 -g2539,289:26235866,44016772 -k2539,290:30007136,44016772:2575893 -k2539,290:32583029,44016772:2575893 -) -(2539,291:20753781,44861770:11829248,505283,102891 -h2539,290:20753781,44861770:0,0,0 -g2539,290:24683319,44861770 -k2539,291:29031633,44861770:3551396 -k2539,291:32583029,44861770:3551396 -) -(2539,292:20753781,45706769:11829248,505283,102891 -h2539,291:20753781,45706769:0,0,0 -g2539,291:25078501,45706769 -k2539,292:29229224,45706769:3353805 -k2539,292:32583029,45706769:3353805 -) -] -(2539,299:32583029,45706769:0,355205,126483 -h2539,299:32583029,45706769:420741,355205,126483 -k2539,299:32583029,45706769:-420741 -) -) -] -(2539,299:32583029,45706769:0,0,0 -g2539,299:32583029,45706769 -) -) -] -(2539,299:6630773,47279633:25952256,0,0 -h2539,299:6630773,47279633:25952256,0,0 -) -] -h2539,299:4262630,4025873:0,0,0 -] -!22485 -}356 +(2536,190:6630773,7099188:11829248,505283,134348 +h2536,189:6630773,7099188:0,0,0 +g2536,189:11745857,7099188 +g2536,189:13314133,7099188 +g2536,189:14882409,7099188 +g2536,189:16450685,7099188 +k2536,189:18460021,7099188:640289 +) +(2536,190:9252213,7940676:9207808,485622,102891 +g2536,189:10820489,7940676 +k2536,190:15237944,7940676:3222078 +k2536,190:18460021,7940676:3222077 +) +(2536,191:6630773,8785766:11829248,505283,134348 +h2536,190:6630773,8785766:0,0,0 +g2536,190:13721768,8785766 +g2536,190:15290044,8785766 +g2536,190:16858320,8785766 +k2536,191:18256859,8785766:203162 +k2536,191:18460021,8785766:203162 +) +(2536,192:6630773,9630857:11829248,505283,134348 +h2536,191:6630773,9630857:0,0,0 +g2536,191:11745857,9630857 +k2536,192:15700628,9630857:2759394 +k2536,192:18460021,9630857:2759393 +) +(2536,193:6630773,10475947:11829248,505283,134348 +h2536,192:6630773,10475947:0,0,0 +g2536,192:11745857,10475947 +k2536,193:15700628,10475947:2759394 +k2536,193:18460021,10475947:2759393 +) +(2536,194:6630773,11321038:11829248,505283,134348 +h2536,193:6630773,11321038:0,0,0 +g2536,193:11350675,11321038 +k2536,194:15503037,11321038:2956985 +k2536,194:18460021,11321038:2956984 +) +(2536,195:6630773,12166128:11829248,505283,134348 +h2536,194:6630773,12166128:0,0,0 +g2536,194:11350675,12166128 +k2536,195:15503037,12166128:2956985 +k2536,195:18460021,12166128:2956984 +) +(2536,196:6630773,13011219:11829248,505283,134348 +h2536,195:6630773,13011219:0,0,0 +g2536,195:10955493,13011219 +k2536,196:15305446,13011219:3154576 +k2536,196:18460021,13011219:3154575 +) +(2536,197:6630773,13856309:11829248,505283,134348 +h2536,196:6630773,13856309:0,0,0 +g2536,196:12536221,13856309 +k2536,197:16095810,13856309:2364212 +k2536,197:18460021,13856309:2364211 +) +(2536,198:6630773,14701400:11829248,513147,134348 +h2536,197:6630773,14701400:0,0,0 +g2536,197:10560311,14701400 +k2536,198:15107855,14701400:3352167 +k2536,198:18460021,14701400:3352166 +) +(2536,199:6630773,15546490:11829248,513147,134348 +h2536,198:6630773,15546490:0,0,0 +g2536,198:12931403,15546490 +k2536,199:16293401,15546490:2166621 +k2536,199:18460021,15546490:2166620 +) +(2536,200:6630773,16391581:11829248,513147,134348 +h2536,199:6630773,16391581:0,0,0 +g2536,199:12536221,16391581 +k2536,200:16095810,16391581:2364212 +k2536,200:18460021,16391581:2364211 +) +(2536,201:6630773,17236671:11829248,505283,134348 +h2536,200:6630773,17236671:0,0,0 +g2536,200:12141039,17236671 +k2536,201:15898219,17236671:2561803 +k2536,201:18460021,17236671:2561802 +) +(2536,202:6630773,18081762:11829248,505283,134348 +h2536,201:6630773,18081762:0,0,0 +g2536,201:11745857,18081762 +k2536,202:15700628,18081762:2759394 +k2536,202:18460021,18081762:2759393 +) +(2536,203:6630773,18926852:11829248,505283,134348 +h2536,202:6630773,18926852:0,0,0 +g2536,202:11350675,18926852 +k2536,203:15503037,18926852:2956985 +k2536,203:18460021,18926852:2956984 +) +(2536,204:6630773,19771943:11829248,505283,134348 +h2536,203:6630773,19771943:0,0,0 +g2536,203:10955493,19771943 +k2536,204:15305446,19771943:3154576 +k2536,204:18460021,19771943:3154575 +) +(2536,205:6630773,20617034:11829248,505283,134348 +h2536,204:6630773,20617034:0,0,0 +g2536,204:11745857,20617034 +g2536,204:13314133,20617034 +k2536,205:16484766,20617034:1975256 +k2536,205:18460021,20617034:1975255 +) +(2536,206:6630773,21462124:11829248,505283,134348 +h2536,205:6630773,21462124:0,0,0 +g2536,205:13326586,21462124 +k2536,206:16490992,21462124:1969029 +k2536,206:18460021,21462124:1969029 +) +(2536,207:6630773,22307215:11829248,485622,134348 +h2536,206:6630773,22307215:0,0,0 +g2536,206:10560311,22307215 +g2536,206:12128587,22307215 +g2536,206:13696863,22307215 +k2536,207:16676131,22307215:1783891 +k2536,207:18460021,22307215:1783890 +) +(2536,208:6630773,23152305:11829248,505283,134348 +h2536,207:6630773,23152305:0,0,0 +g2536,207:11350675,23152305 +g2536,207:12918951,23152305 +g2536,207:16010284,23152305 +k2536,207:18460021,23152305:1080690 +) +(2536,208:9252213,23993793:9207808,485622,11795 +k2536,208:14453806,23993793:4006216 +k2536,208:18460021,23993793:4006215 +) +(2536,209:6630773,24838884:11829248,505283,134348 +h2536,208:6630773,24838884:0,0,0 +g2536,208:12931403,24838884 +k2536,209:16293401,24838884:2166621 +k2536,209:18460021,24838884:2166620 +) +(2536,210:6630773,25683974:11829248,505283,134348 +h2536,209:6630773,25683974:0,0,0 +g2536,209:13721768,25683974 +k2536,210:16688583,25683974:1771438 +k2536,210:18460021,25683974:1771438 +) +(2536,211:6630773,26529065:11829248,505283,134348 +h2536,210:6630773,26529065:0,0,0 +g2536,210:11350675,26529065 +g2536,210:12918951,26529065 +k2536,211:16287175,26529065:2172847 +k2536,211:18460021,26529065:2172846 +) +(2536,212:6630773,27374155:11829248,505283,134348 +h2536,211:6630773,27374155:0,0,0 +g2536,211:12141039,27374155 +k2536,212:15898219,27374155:2561803 +k2536,212:18460021,27374155:2561802 +) +(2536,213:6630773,28219246:11829248,505283,134348 +h2536,212:6630773,28219246:0,0,0 +g2536,212:10955493,28219246 +k2536,213:15305446,28219246:3154576 +k2536,213:18460021,28219246:3154575 +) +(2536,214:6630773,29064336:11829248,505283,134348 +h2536,213:6630773,29064336:0,0,0 +g2536,213:11745857,29064336 +g2536,213:13314133,29064336 +k2536,214:16484766,29064336:1975256 +k2536,214:18460021,29064336:1975255 +) +(2536,215:6630773,29909427:11829248,505283,134348 +h2536,214:6630773,29909427:0,0,0 +g2536,214:8979582,29909427 +k2536,215:14317490,29909427:4142531 +k2536,215:18460021,29909427:4142531 +) +(2536,216:6630773,30754517:11829248,505283,134348 +h2536,215:6630773,30754517:0,0,0 +g2536,215:9769947,30754517 +k2536,216:14712673,30754517:3747349 +k2536,216:18460021,30754517:3747348 +) +(2536,217:6630773,31599608:11829248,505283,134348 +h2536,216:6630773,31599608:0,0,0 +g2536,216:10165129,31599608 +g2536,216:11334946,31599608 +g2536,216:12903222,31599608 +k2536,217:16279310,31599608:2180711 +k2536,217:18460021,31599608:2180711 +) +(2536,218:6630773,32444698:11829248,505283,134348 +h2536,217:6630773,32444698:0,0,0 +g2536,217:11745857,32444698 +k2536,218:15700628,32444698:2759394 +k2536,218:18460021,32444698:2759393 +) +(2536,219:6630773,33289789:11829248,505283,134348 +h2536,218:6630773,33289789:0,0,0 +g2536,218:10560311,33289789 +k2536,219:15107855,33289789:3352167 +k2536,219:18460021,33289789:3352166 +) +(2536,220:6630773,34134879:11829248,505283,134348 +h2536,219:6630773,34134879:0,0,0 +g2536,219:8584400,34134879 +k2536,220:13920670,34134879:4539352 +k2536,220:18460021,34134879:4539351 +) +(2536,221:6630773,34979970:11829248,505283,134348 +h2536,220:6630773,34979970:0,0,0 +g2536,220:8979582,34979970 +k2536,221:14317490,34979970:4142531 +k2536,221:18460021,34979970:4142531 +) +(2536,222:6630773,35825061:11829248,505283,134348 +h2536,221:6630773,35825061:0,0,0 +g2536,221:10955493,35825061 +g2536,221:12523769,35825061 +k2536,222:16089584,35825061:2370438 +k2536,222:18460021,35825061:2370437 +) +(2536,226:6630773,37385553:11829248,505283,102891 +h2536,225:6630773,37385553:0,0,0 +g2536,225:8979582,37385553 +k2536,226:14317490,37385553:4142531 +k2536,226:18460021,37385553:4142531 +) +(2536,227:6630773,38230643:11829248,505283,102891 +h2536,226:6630773,38230643:0,0,0 +g2536,226:10165129,38230643 +g2536,226:11733405,38230643 +k2536,227:15694402,38230643:2765620 +k2536,227:18460021,38230643:2765619 +) +(2536,228:6630773,39075734:11829248,505283,102891 +h2536,227:6630773,39075734:0,0,0 +g2536,227:9374765,39075734 +g2536,227:10544582,39075734 +k2536,228:14900761,39075734:3559261 +k2536,228:18460021,39075734:3559260 +) +(2536,229:6630773,39920824:11829248,505283,126483 +h2536,228:6630773,39920824:0,0,0 +g2536,228:9374765,39920824 +k2536,229:14315852,39920824:4144169 +k2536,229:18460021,39920824:4144169 +) +(2536,233:6630773,41481316:11829248,505283,102891 +h2536,232:6630773,41481316:0,0,0 +g2536,232:8189218,41481316 +g2536,232:9757494,41481316 +k2536,233:14706446,41481316:3753575 +k2536,233:18460021,41481316:3753575 +) +(2536,234:6630773,42326407:11829248,505283,102891 +h2536,233:6630773,42326407:0,0,0 +g2536,233:11350675,42326407 +k2536,234:15503037,42326407:2956985 +k2536,234:18460021,42326407:2956984 +) +(2536,235:6630773,43171497:11829248,513147,102891 +h2536,234:6630773,43171497:0,0,0 +g2536,234:8584400,43171497 +g2536,234:9754217,43171497 +k2536,235:14505578,43171497:3954443 +k2536,235:18460021,43171497:3954443 +) +(2536,236:6630773,44016588:11829248,513147,102891 +h2536,235:6630773,44016588:0,0,0 +g2536,235:10560311,44016588 +k2536,236:14908625,44016588:3551396 +k2536,236:18460021,44016588:3551396 +) +(2536,237:6630773,44861678:11829248,513147,102891 +h2536,236:6630773,44861678:0,0,0 +g2536,236:10165129,44861678 +g2536,236:11334946,44861678 +k2536,237:15295943,44861678:3164079 +k2536,237:18460021,44861678:3164078 +) +(2536,238:6630773,45706769:11829248,513147,102891 +h2536,237:6630773,45706769:0,0,0 +g2536,237:8189218,45706769 +g2536,237:9359035,45706769 +k2536,238:14307987,45706769:4152034 +k2536,238:18460021,45706769:4152034 +) +] +k2536,294:19606901,45706769:1146880 +r2536,294:19606901,45706769:0,40242380,134348 +k2536,294:20753781,45706769:1146880 +[2536,294:20753781,45706769:11829248,40108032,134348 +(2536,239:20753781,6254097:11829248,505283,102891 +h2536,238:20753781,6254097:0,0,0 +g2536,238:25078501,6254097 +g2536,238:26248318,6254097 +k2536,239:30013362,6254097:2569667 +k2536,239:32583029,6254097:2569667 +) +(2536,240:20753781,7099096:11829248,505283,134348 +h2536,239:20753781,7099096:0,0,0 +g2536,239:25868865,7099096 +k2536,240:29823636,7099096:2759394 +k2536,240:32583029,7099096:2759393 +) +(2536,241:20753781,7944094:11829248,485622,126483 +h2536,240:20753781,7944094:0,0,0 +g2536,240:25473683,7944094 +k2536,241:29626045,7944094:2956985 +k2536,241:32583029,7944094:2956984 +) +(2536,242:20753781,8789093:11829248,485622,126483 +h2536,241:20753781,8789093:0,0,0 +g2536,241:25868865,8789093 +k2536,242:29823636,8789093:2759394 +k2536,242:32583029,8789093:2759393 +) +(2536,243:20753781,9634091:11829248,505283,134348 +h2536,242:20753781,9634091:0,0,0 +g2536,242:28239958,9634091 +k2536,243:31009182,9634091:1573847 +k2536,243:32583029,9634091:1573847 +) +(2536,244:20753781,10479090:11829248,505283,134348 +h2536,243:20753781,10479090:0,0,0 +g2536,243:23892955,10479090 +g2536,243:25062772,10479090 +g2536,243:26232589,10479090 +g2536,243:27402406,10479090 +k2536,244:30391177,10479090:2191853 +k2536,244:32583029,10479090:2191852 +) +(2536,245:20753781,11324088:11829248,505283,102891 +h2536,244:20753781,11324088:0,0,0 +g2536,244:22707408,11324088 +g2536,244:24275684,11324088 +k2536,245:29027045,11324088:3555984 +k2536,245:32583029,11324088:3555984 +) +(2536,246:20753781,12169087:11829248,505283,126483 +h2536,245:20753781,12169087:0,0,0 +g2536,245:25078501,12169087 +k2536,246:29229224,12169087:3353805 +k2536,246:32583029,12169087:3353805 +) +(2536,247:20753781,13014085:11829248,505283,102891 +h2536,246:20753781,13014085:0,0,0 +g2536,246:26659229,13014085 +k2536,247:30019588,13014085:2563441 +k2536,247:32583029,13014085:2563441 +) +(2536,248:20753781,13859084:11829248,505283,134348 +h2536,247:20753781,13859084:0,0,0 +g2536,247:25868865,13859084 +k2536,248:29624406,13859084:2958623 +k2536,248:32583029,13859084:2958623 +) +(2536,249:20753781,14704083:11829248,505283,102891 +h2536,248:20753781,14704083:0,0,0 +g2536,248:25473683,14704083 +k2536,249:29426815,14704083:3156214 +k2536,249:32583029,14704083:3156214 +) +(2536,250:20753781,15549081:11829248,505283,102891 +h2536,249:20753781,15549081:0,0,0 +g2536,249:23892955,15549081 +k2536,250:28636451,15549081:3946578 +k2536,250:32583029,15549081:3946578 +) +(2536,251:20753781,16394080:11829248,505283,102891 +h2536,250:20753781,16394080:0,0,0 +g2536,250:25868865,16394080 +g2536,250:27038682,16394080 +k2536,251:30209315,16394080:2373715 +k2536,251:32583029,16394080:2373714 +) +(2536,252:20753781,17239078:11829248,505283,102891 +h2536,251:20753781,17239078:0,0,0 +g2536,251:25473683,17239078 +k2536,252:29426815,17239078:3156214 +k2536,252:32583029,17239078:3156214 +) +(2536,253:20753781,18084077:11829248,505283,102891 +h2536,252:20753781,18084077:0,0,0 +g2536,252:25473683,18084077 +k2536,253:29626045,18084077:2956985 +k2536,253:32583029,18084077:2956984 +) +(2536,254:20753781,18929075:11829248,505283,102891 +h2536,253:20753781,18929075:0,0,0 +g2536,253:24288137,18929075 +k2536,254:29033272,18929075:3549758 +k2536,254:32583029,18929075:3549757 +) +(2536,258:20753781,20487942:11829248,505283,126483 +h2536,257:20753781,20487942:0,0,0 +g2536,257:26659229,20487942 +k2536,258:30218818,20487942:2364212 +k2536,258:32583029,20487942:2364211 +) +(2536,259:20753781,21332941:11829248,505283,102891 +h2536,258:20753781,21332941:0,0,0 +g2536,258:23497773,21332941 +g2536,258:25066049,21332941 +k2536,259:29422228,21332941:3160802 +k2536,259:32583029,21332941:3160801 +) +(2536,260:20753781,22177940:11829248,505283,126483 +h2536,259:20753781,22177940:0,0,0 +g2536,259:24288137,22177940 +g2536,259:25457954,22177940 +g2536,259:27026230,22177940 +k2536,260:30402318,22177940:2180711 +k2536,260:32583029,22177940:2180711 +) +(2536,261:20753781,23022938:11829248,513147,134348 +h2536,260:20753781,23022938:0,0,0 +g2536,260:25473683,23022938 +k2536,261:29626045,23022938:2956985 +k2536,261:32583029,23022938:2956984 +) +(2536,262:20753781,23867937:11829248,505283,134348 +h2536,261:20753781,23867937:0,0,0 +g2536,261:24288137,23867937 +g2536,261:25457954,23867937 +g2536,261:26627771,23867937 +g2536,261:27797588,23867937 +g2536,261:28967405,23867937 +k2536,262:31372906,23867937:1210124 +k2536,262:32583029,23867937:1210123 +) +(2536,263:20753781,24712935:11829248,485622,102891 +h2536,262:20753781,24712935:0,0,0 +g2536,262:23892955,24712935 +k2536,263:28636451,24712935:3946578 +k2536,263:32583029,24712935:3946578 +) +(2536,264:20753781,25557934:11829248,505283,102891 +h2536,263:20753781,25557934:0,0,0 +g2536,263:23892955,25557934 +k2536,264:28636451,25557934:3946578 +k2536,264:32583029,25557934:3946578 +) +(2536,265:20753781,26402932:11829248,505283,102891 +h2536,264:20753781,26402932:0,0,0 +g2536,264:24288137,26402932 +g2536,264:25457954,26402932 +g2536,264:26627771,26402932 +k2536,265:30003859,26402932:2579170 +k2536,265:32583029,26402932:2579170 +) +(2536,266:20753781,27247931:11829248,505283,102891 +h2536,265:20753781,27247931:0,0,0 +g2536,265:25078501,27247931 +g2536,265:26248318,27247931 +k2536,266:29814133,27247931:2768897 +k2536,266:32583029,27247931:2768896 +) +(2536,267:20753781,28092929:11829248,505283,126483 +h2536,266:20753781,28092929:0,0,0 +g2536,266:24683319,28092929 +k2536,267:29230863,28092929:3352167 +k2536,267:32583029,28092929:3352166 +) +(2536,268:20753781,28937928:11829248,505283,102891 +h2536,267:20753781,28937928:0,0,0 +g2536,267:22707408,28937928 +g2536,267:23877225,28937928 +g2536,267:25047042,28937928 +k2536,268:29412724,28937928:3170305 +k2536,268:32583029,28937928:3170305 +) +(2536,269:20753781,29782926:11829248,505283,102891 +h2536,268:20753781,29782926:0,0,0 +g2536,268:23497773,29782926 +k2536,269:28438860,29782926:4144169 +k2536,269:32583029,29782926:4144169 +) +(2536,270:20753781,30627925:11829248,505283,102891 +h2536,269:20753781,30627925:0,0,0 +g2536,269:25473683,30627925 +k2536,270:29626045,30627925:2956985 +k2536,270:32583029,30627925:2956984 +) +(2536,271:20753781,31472924:11829248,513147,102891 +h2536,270:20753781,31472924:0,0,0 +g2536,270:25868865,31472924 +k2536,271:29823636,31472924:2759394 +k2536,271:32583029,31472924:2759393 +) +(2536,272:20753781,32317922:11829248,505283,102891 +h2536,271:20753781,32317922:0,0,0 +g2536,271:22707408,32317922 +g2536,271:23877225,32317922 +g2536,271:25445501,32317922 +g2536,271:27013777,32317922 +g2536,271:28582053,32317922 +g2536,271:30150329,32317922 +k2536,272:31964368,32317922:618662 +k2536,272:32583029,32317922:618661 +) +(2536,273:20753781,33162921:11829248,505283,102891 +h2536,272:20753781,33162921:0,0,0 +g2536,272:23497773,33162921 +k2536,273:28438860,33162921:4144169 +k2536,273:32583029,33162921:4144169 +) +(2536,274:20753781,34007919:11829248,505283,134348 +h2536,273:20753781,34007919:0,0,0 +g2536,273:23102590,34007919 +k2536,274:28440498,34007919:4142531 +k2536,274:32583029,34007919:4142531 +) +(2536,275:20753781,34852918:11829248,505283,134348 +h2536,274:20753781,34852918:0,0,0 +g2536,274:23520056,34852918 +g2536,274:27076695,34852918 +g2536,274:29820687,34852918 +k2536,275:31600317,34852918:982712 +k2536,275:32583029,34852918:982712 +) +(2536,276:20753781,35697916:11829248,505283,134348 +h2536,275:20753781,35697916:0,0,0 +g2536,275:23892955,35697916 +g2536,275:25062772,35697916 +g2536,275:26232589,35697916 +g2536,275:27402406,35697916 +k2536,276:30391177,35697916:2191853 +k2536,276:32583029,35697916:2191852 +) +(2536,277:20753781,36542915:11829248,505283,102891 +h2536,276:20753781,36542915:0,0,0 +g2536,276:22707408,36542915 +g2536,276:23877225,36542915 +k2536,277:28628586,36542915:3954443 +k2536,277:32583029,36542915:3954443 +) +(2536,281:20753781,38101782:11829248,505283,102891 +h2536,280:20753781,38101782:0,0,0 +g2536,280:23102590,38101782 +k2536,281:28440498,38101782:4142531 +k2536,281:32583029,38101782:4142531 +) +(2536,282:20753781,38946781:11829248,505283,102891 +h2536,281:20753781,38946781:0,0,0 +g2536,281:24288137,38946781 +k2536,282:29033272,38946781:3549758 +k2536,282:32583029,38946781:3549757 +) +(2536,283:20753781,39791779:11829248,505283,102891 +h2536,282:20753781,39791779:0,0,0 +g2536,282:24683319,39791779 +k2536,283:29230863,39791779:3352167 +k2536,283:32583029,39791779:3352166 +) +(2536,284:20753781,40636778:11829248,505283,102891 +h2536,283:20753781,40636778:0,0,0 +g2536,283:23497773,40636778 +g2536,283:24667590,40636778 +g2536,283:25837407,40636778 +k2536,284:29807907,40636778:2775123 +k2536,284:32583029,40636778:2775122 +) +(2536,285:20753781,41481776:11829248,505283,102891 +h2536,284:20753781,41481776:0,0,0 +g2536,284:24288137,41481776 +g2536,284:25457954,41481776 +g2536,284:26627771,41481776 +k2536,285:30203089,41481776:2379941 +k2536,285:32583029,41481776:2379940 +) +(2536,286:20753781,42326775:11829248,505283,102891 +h2536,285:20753781,42326775:0,0,0 +g2536,285:23102590,42326775 +k2536,286:28440498,42326775:4142531 +k2536,286:32583029,42326775:4142531 +) +(2536,287:20753781,43171773:11829248,505283,102891 +h2536,286:20753781,43171773:0,0,0 +g2536,286:23497773,43171773 +g2536,286:25066049,43171773 +k2536,287:29422228,43171773:3160802 +k2536,287:32583029,43171773:3160801 +) +(2536,288:20753781,44016772:11829248,505283,102891 +h2536,287:20753781,44016772:0,0,0 +g2536,287:24288137,44016772 +k2536,288:29033272,44016772:3549758 +k2536,288:32583029,44016772:3549757 +) +(2536,289:20753781,44861770:11829248,505283,102891 +h2536,288:20753781,44861770:0,0,0 +g2536,288:24683319,44861770 +k2536,289:29230863,44861770:3352167 +k2536,289:32583029,44861770:3352166 +) +(2536,290:20753781,45706769:11829248,505283,134348 +h2536,289:20753781,45706769:0,0,0 +g2536,289:23497773,45706769 +k2536,290:28638090,45706769:3944940 +k2536,290:32583029,45706769:3944939 +) +] +(2536,294:32583029,45706769:0,355205,126483 +h2536,294:32583029,45706769:420741,355205,126483 +k2536,294:32583029,45706769:-420741 +) +) +] +(2536,294:32583029,45706769:0,0,0 +g2536,294:32583029,45706769 +) +) +] +(2536,294:6630773,47279633:25952256,0,0 +h2536,294:6630773,47279633:25952256,0,0 +) +] +h2536,294:4262630,4025873:0,0,0 +] +!22495 +}352 !12 -{357 -[2539,404:4262630,47279633:28320399,43253760,0 -(2539,404:4262630,4025873:0,0,0 -[2539,404:-473657,4025873:11829248,0,0 -(2539,404:-473657,-710414:11829248,0,0 -h2539,404:-473657,-710414:0,0,0 -(2539,404:-473657,-710414:0,0,0 -(2539,404:-473657,-710414:0,0,0 -g2539,404:-473657,-710414 -(2539,404:-473657,-710414:65781,0,65781 -g2539,404:-407876,-710414 -[2539,404:-407876,-644633:0,0,0 +{353 +[2536,402:4262630,47279633:28320399,43253760,0 +(2536,402:4262630,4025873:0,0,0 +[2536,402:-473657,4025873:11829248,0,0 +(2536,402:-473657,-710414:11829248,0,0 +h2536,402:-473657,-710414:0,0,0 +(2536,402:-473657,-710414:0,0,0 +(2536,402:-473657,-710414:0,0,0 +g2536,402:-473657,-710414 +(2536,402:-473657,-710414:65781,0,65781 +g2536,402:-407876,-710414 +[2536,402:-407876,-644633:0,0,0 ] ) -k2539,404:-473657,-710414:-65781 +k2536,402:-473657,-710414:-65781 ) ) -k2539,404:11355591,-710414:11829248 -g2539,404:11355591,-710414 +k2536,402:11355591,-710414:11829248 +g2536,402:11355591,-710414 ) ] ) -[2539,404:6630773,47279633:25952256,43253760,0 -[2539,404:6630773,4812305:25952256,786432,0 -(2539,404:6630773,4812305:25952256,513147,126483 -(2539,404:6630773,4812305:25952256,513147,126483 -g2539,404:3078558,4812305 -[2539,404:3078558,4812305:0,0,0 -(2539,404:3078558,2439708:0,1703936,0 -k2539,404:1358238,2439708:-1720320 -(2539,1:1358238,2439708:1720320,1703936,0 -(2539,1:1358238,2439708:1179648,16384,0 -r2539,404:2537886,2439708:1179648,16384,0 +[2536,402:6630773,47279633:25952256,43253760,0 +[2536,402:6630773,4812305:25952256,786432,0 +(2536,402:6630773,4812305:25952256,513147,126483 +(2536,402:6630773,4812305:25952256,513147,126483 +g2536,402:3078558,4812305 +[2536,402:3078558,4812305:0,0,0 +(2536,402:3078558,2439708:0,1703936,0 +k2536,402:1358238,2439708:-1720320 +(2536,1:1358238,2439708:1720320,1703936,0 +(2536,1:1358238,2439708:1179648,16384,0 +r2536,402:2537886,2439708:1179648,16384,0 ) -g2539,1:3062174,2439708 -(2539,1:3062174,2439708:16384,1703936,0 -[2539,1:3062174,2439708:25952256,1703936,0 -(2539,1:3062174,1915420:25952256,1179648,0 -(2539,1:3062174,1915420:16384,1179648,0 -r2539,404:3078558,1915420:16384,1179648,0 +g2536,1:3062174,2439708 +(2536,1:3062174,2439708:16384,1703936,0 +[2536,1:3062174,2439708:25952256,1703936,0 +(2536,1:3062174,1915420:25952256,1179648,0 +(2536,1:3062174,1915420:16384,1179648,0 +r2536,402:3078558,1915420:16384,1179648,0 ) -k2539,1:29014430,1915420:25935872 -g2539,1:29014430,1915420 +k2536,1:29014430,1915420:25935872 +g2536,1:29014430,1915420 ) ] ) ) ) ] -[2539,404:3078558,4812305:0,0,0 -(2539,404:3078558,2439708:0,1703936,0 -g2539,404:29030814,2439708 -g2539,404:36135244,2439708 -(2539,1:36135244,2439708:1720320,1703936,0 -(2539,1:36135244,2439708:16384,1703936,0 -[2539,1:36135244,2439708:25952256,1703936,0 -(2539,1:36135244,1915420:25952256,1179648,0 -(2539,1:36135244,1915420:16384,1179648,0 -r2539,404:36151628,1915420:16384,1179648,0 +[2536,402:3078558,4812305:0,0,0 +(2536,402:3078558,2439708:0,1703936,0 +g2536,402:29030814,2439708 +g2536,402:36135244,2439708 +(2536,1:36135244,2439708:1720320,1703936,0 +(2536,1:36135244,2439708:16384,1703936,0 +[2536,1:36135244,2439708:25952256,1703936,0 +(2536,1:36135244,1915420:25952256,1179648,0 +(2536,1:36135244,1915420:16384,1179648,0 +r2536,402:36151628,1915420:16384,1179648,0 ) -k2539,1:62087500,1915420:25935872 -g2539,1:62087500,1915420 +k2536,1:62087500,1915420:25935872 +g2536,1:62087500,1915420 ) ] ) -g2539,1:36675916,2439708 -(2539,1:36675916,2439708:1179648,16384,0 -r2539,404:37855564,2439708:1179648,16384,0 +g2536,1:36675916,2439708 +(2536,1:36675916,2439708:1179648,16384,0 +r2536,402:37855564,2439708:1179648,16384,0 ) ) -k2539,404:3078556,2439708:-34777008 +k2536,402:3078556,2439708:-34777008 ) ] -[2539,404:3078558,4812305:0,0,0 -(2539,404:3078558,49800853:0,16384,2228224 -k2539,404:1358238,49800853:-1720320 -(2539,1:1358238,49800853:1720320,16384,2228224 -(2539,1:1358238,49800853:1179648,16384,0 -r2539,404:2537886,49800853:1179648,16384,0 +[2536,402:3078558,4812305:0,0,0 +(2536,402:3078558,49800853:0,16384,2228224 +k2536,402:1358238,49800853:-1720320 +(2536,1:1358238,49800853:1720320,16384,2228224 +(2536,1:1358238,49800853:1179648,16384,0 +r2536,402:2537886,49800853:1179648,16384,0 ) -g2539,1:3062174,49800853 -(2539,1:3062174,52029077:16384,1703936,0 -[2539,1:3062174,52029077:25952256,1703936,0 -(2539,1:3062174,51504789:25952256,1179648,0 -(2539,1:3062174,51504789:16384,1179648,0 -r2539,404:3078558,51504789:16384,1179648,0 +g2536,1:3062174,49800853 +(2536,1:3062174,52029077:16384,1703936,0 +[2536,1:3062174,52029077:25952256,1703936,0 +(2536,1:3062174,51504789:25952256,1179648,0 +(2536,1:3062174,51504789:16384,1179648,0 +r2536,402:3078558,51504789:16384,1179648,0 ) -k2539,1:29014430,51504789:25935872 -g2539,1:29014430,51504789 +k2536,1:29014430,51504789:25935872 +g2536,1:29014430,51504789 ) ] ) ) ) ] -[2539,404:3078558,4812305:0,0,0 -(2539,404:3078558,49800853:0,16384,2228224 -g2539,404:29030814,49800853 -g2539,404:36135244,49800853 -(2539,1:36135244,49800853:1720320,16384,2228224 -(2539,1:36135244,52029077:16384,1703936,0 -[2539,1:36135244,52029077:25952256,1703936,0 -(2539,1:36135244,51504789:25952256,1179648,0 -(2539,1:36135244,51504789:16384,1179648,0 -r2539,404:36151628,51504789:16384,1179648,0 +[2536,402:3078558,4812305:0,0,0 +(2536,402:3078558,49800853:0,16384,2228224 +g2536,402:29030814,49800853 +g2536,402:36135244,49800853 +(2536,1:36135244,49800853:1720320,16384,2228224 +(2536,1:36135244,52029077:16384,1703936,0 +[2536,1:36135244,52029077:25952256,1703936,0 +(2536,1:36135244,51504789:25952256,1179648,0 +(2536,1:36135244,51504789:16384,1179648,0 +r2536,402:36151628,51504789:16384,1179648,0 ) -k2539,1:62087500,51504789:25935872 -g2539,1:62087500,51504789 +k2536,1:62087500,51504789:25935872 +g2536,1:62087500,51504789 ) ] ) -g2539,1:36675916,49800853 -(2539,1:36675916,49800853:1179648,16384,0 -r2539,404:37855564,49800853:1179648,16384,0 +g2536,1:36675916,49800853 +(2536,1:36675916,49800853:1179648,16384,0 +r2536,402:37855564,49800853:1179648,16384,0 ) ) -k2539,404:3078556,49800853:-34777008 +k2536,402:3078556,49800853:-34777008 ) ] -g2539,404:6630773,4812305 -k2539,404:23661615,4812305:15835465 -g2539,404:27221530,4812305 -g2539,404:29095859,4812305 -g2539,404:29911126,4812305 -g2539,404:30524543,4812305 -) -) +g2536,402:6630773,4812305 +k2536,402:23661615,4812305:15835465 +g2536,402:27221530,4812305 +g2536,402:29095859,4812305 +g2536,402:29911126,4812305 +g2536,402:30524543,4812305 +) +) ] -[2539,404:6630773,45706769:25952256,40108032,0 -(2539,404:6630773,45706769:25952256,40108032,0 -(2539,404:6630773,45706769:0,0,0 -g2539,404:6630773,45706769 +[2536,402:6630773,45706769:25952256,40108032,0 +(2536,402:6630773,45706769:25952256,40108032,0 +(2536,402:6630773,45706769:0,0,0 +g2536,402:6630773,45706769 ) -[2539,404:6630773,45706769:25952256,40108032,0 -(2539,404:6630773,45706769:25952256,40108032,134348 -[2539,404:6630773,45706769:11829248,40108032,134348 -(2539,293:6630773,6254097:11829248,485622,102891 -h2539,292:6630773,6254097:0,0,0 -g2539,292:9374765,6254097 -k2539,293:14515082,6254097:3944940 -k2539,293:18460021,6254097:3944939 +[2536,402:6630773,45706769:25952256,40108032,0 +(2536,402:6630773,45706769:25952256,40108032,126483 +[2536,402:6630773,45706769:11829248,40108032,126483 +(2536,291:6630773,6254097:11829248,505283,102891 +h2536,290:6630773,6254097:0,0,0 +g2536,290:8979582,6254097 +k2536,291:14317490,6254097:4142531 +k2536,291:18460021,6254097:4142531 ) -(2539,294:6630773,7095585:11829248,505283,102891 -h2539,293:6630773,7095585:0,0,0 -g2539,293:10165129,7095585 -g2539,293:11733405,7095585 -k2539,294:15694402,7095585:2765620 -k2539,294:18460021,7095585:2765619 -) -(2539,295:6630773,7937073:11829248,505283,126483 -h2539,294:6630773,7937073:0,0,0 -g2539,294:10955493,7937073 -k2539,295:15305446,7937073:3154576 -k2539,295:18460021,7937073:3154575 -) -(2539,299:6630773,9432299:11829248,485622,102891 -h2539,298:6630773,9432299:0,0,0 -g2539,298:7794036,9432299 -g2539,298:8963853,9432299 -g2539,298:10133670,9432299 -k2539,299:14695305,9432299:3764717 -k2539,299:18460021,9432299:3764716 -) -(2539,300:6630773,10273787:11829248,505283,102891 -h2539,299:6630773,10273787:0,0,0 -g2539,299:12141039,10273787 -k2539,300:15698989,10273787:2761032 -k2539,300:18460021,10273787:2761032 -) -(2539,301:6630773,11115275:11829248,505283,102891 -h2539,300:6630773,11115275:0,0,0 -g2539,300:10165129,11115275 -k2539,301:14711034,11115275:3748987 -k2539,301:18460021,11115275:3748987 -) -(2539,302:6630773,11956763:11829248,505283,102891 -h2539,301:6630773,11956763:0,0,0 -g2539,301:9769947,11956763 -g2539,301:10939764,11956763 -g2539,301:12109581,11956763 -g2539,301:13677857,11956763 -k2539,302:16666628,11956763:1793394 -k2539,302:18460021,11956763:1793393 -) -(2539,303:6630773,12798251:11829248,505283,102891 -h2539,302:6630773,12798251:0,0,0 -g2539,302:10560311,12798251 -k2539,303:14908625,12798251:3551396 -k2539,303:18460021,12798251:3551396 -) -(2539,304:6630773,13639739:11829248,505283,102891 -h2539,303:6630773,13639739:0,0,0 -g2539,303:10560311,13639739 -k2539,304:15107855,13639739:3352167 -k2539,304:18460021,13639739:3352166 -) -(2539,305:6630773,14481227:11829248,485622,102891 -h2539,304:6630773,14481227:0,0,0 -g2539,304:8189218,14481227 -k2539,305:13723079,14481227:4736943 -k2539,305:18460021,14481227:4736942 -) -(2539,306:6630773,15322715:11829248,505283,126483 -h2539,305:6630773,15322715:0,0,0 -g2539,305:10560311,15322715 -k2539,306:15107855,15322715:3352167 -k2539,306:18460021,15322715:3352166 -) -(2539,307:6630773,16164203:11829248,505283,102891 -h2539,306:6630773,16164203:0,0,0 -g2539,306:9374765,16164203 -g2539,306:10544582,16164203 -g2539,306:11714399,16164203 -k2539,307:15684899,16164203:2775123 -k2539,307:18460021,16164203:2775122 -) -(2539,308:6630773,17005691:11829248,505283,134348 -h2539,307:6630773,17005691:0,0,0 -g2539,307:11350675,17005691 -k2539,308:15503037,17005691:2956985 -k2539,308:18460021,17005691:2956984 -) -(2539,309:6630773,17847179:11829248,505283,102891 -h2539,308:6630773,17847179:0,0,0 -g2539,308:9374765,17847179 -k2539,309:14515082,17847179:3944940 -k2539,309:18460021,17847179:3944939 -) -(2539,310:6630773,18688667:11829248,505283,102891 -h2539,309:6630773,18688667:0,0,0 -g2539,309:8584400,18688667 -k2539,310:14119899,18688667:4340122 -k2539,310:18460021,18688667:4340122 -) -(2539,311:6630773,19530155:11829248,505283,102891 -h2539,310:6630773,19530155:0,0,0 -g2539,310:8189218,19530155 -k2539,311:13922308,19530155:4537713 -k2539,311:18460021,19530155:4537713 -) -(2539,312:6630773,20371643:11829248,505283,102891 -h2539,311:6630773,20371643:0,0,0 -g2539,311:8979582,20371643 -k2539,312:14317490,20371643:4142531 -k2539,312:18460021,20371643:4142531 -) -(2539,313:6630773,21213131:11829248,485622,102891 -h2539,312:6630773,21213131:0,0,0 -g2539,312:9374765,21213131 -k2539,313:14515082,21213131:3944940 -k2539,313:18460021,21213131:3944939 -) -(2539,314:6630773,22054619:11829248,505283,126483 -h2539,313:6630773,22054619:0,0,0 -g2539,313:8189218,22054619 -k2539,314:13922308,22054619:4537713 -k2539,314:18460021,22054619:4537713 -) -(2539,315:6630773,22896107:11829248,505283,102891 -h2539,314:6630773,22896107:0,0,0 -g2539,314:9374765,22896107 -g2539,314:10544582,22896107 -g2539,314:11714399,22896107 -k2539,315:15684899,22896107:2775123 -k2539,315:18460021,22896107:2775122 -) -(2539,316:6630773,23737595:11829248,505283,102891 -h2539,315:6630773,23737595:0,0,0 -g2539,315:9769947,23737595 -g2539,315:10939764,23737595 -g2539,315:12109581,23737595 -g2539,315:13279398,23737595 -g2539,315:14449215,23737595 -k2539,316:16853077,23737595:1606944 -k2539,316:18460021,23737595:1606944 -) -(2539,317:6630773,24579083:11829248,505283,102891 -h2539,316:6630773,24579083:0,0,0 -g2539,316:10560311,24579083 -k2539,317:14908625,24579083:3551396 -k2539,317:18460021,24579083:3551396 -) -(2539,321:6630773,26074308:11829248,485622,134348 -h2539,320:6630773,26074308:0,0,0 -g2539,320:9374765,26074308 -k2539,321:14515082,26074308:3944940 -k2539,321:18460021,26074308:3944939 -) -(2539,322:6630773,26915796:11829248,505283,102891 -h2539,321:6630773,26915796:0,0,0 -g2539,321:9769947,26915796 -g2539,321:10939764,26915796 -g2539,321:12109581,26915796 -g2539,321:13279398,26915796 -g2539,321:14449215,26915796 -k2539,322:17052307,26915796:1407715 -k2539,322:18460021,26915796:1407714 -) -(2539,323:6630773,27757284:11829248,505283,102891 -h2539,322:6630773,27757284:0,0,0 -g2539,322:10560311,27757284 -k2539,323:14908625,27757284:3551396 -k2539,323:18460021,27757284:3551396 -) -(2539,327:6630773,29252510:11829248,505283,126483 -h2539,326:6630773,29252510:0,0,0 -g2539,326:9769947,29252510 -g2539,326:11338223,29252510 -k2539,327:15496811,29252510:2963211 -k2539,327:18460021,29252510:2963210 -) -(2539,328:6630773,30093998:11829248,505283,126483 -h2539,327:6630773,30093998:0,0,0 -g2539,327:9769947,30093998 -g2539,327:11338223,30093998 -g2539,327:12906499,30093998 -k2539,328:16280949,30093998:2179073 -k2539,328:18460021,30093998:2179072 -) -(2539,329:6630773,30935486:11829248,505283,126483 -h2539,328:6630773,30935486:0,0,0 -g2539,328:7794036,30935486 -k2539,329:13525488,30935486:4934534 -k2539,329:18460021,30935486:4934533 -) -(2539,330:6630773,31776974:11829248,505283,134348 -h2539,329:6630773,31776974:0,0,0 -g2539,329:12536221,31776974 -k2539,330:16095810,31776974:2364212 -k2539,330:18460021,31776974:2364211 -) -(2539,331:6630773,32618462:11829248,505283,126483 -h2539,330:6630773,32618462:0,0,0 -g2539,330:12141039,32618462 -k2539,331:15898219,32618462:2561803 -k2539,331:18460021,32618462:2561802 -) -(2539,332:6630773,33459950:11829248,505283,126483 -h2539,331:6630773,33459950:0,0,0 -g2539,331:9769947,33459950 -k2539,332:14712673,33459950:3747349 -k2539,332:18460021,33459950:3747348 -) -(2539,333:6630773,34301438:11829248,505283,126483 -h2539,332:6630773,34301438:0,0,0 -g2539,332:9374765,34301438 -g2539,332:11669180,34301438 -g2539,332:13237456,34301438 -g2539,332:14805732,34301438 -k2539,333:17230565,34301438:1229456 -k2539,333:18460021,34301438:1229456 -) -(2539,334:6630773,35142926:11829248,505283,126483 -h2539,333:6630773,35142926:0,0,0 -g2539,333:9769947,35142926 -g2539,333:11338223,35142926 -k2539,334:15496811,35142926:2963211 -k2539,334:18460021,35142926:2963210 -) -(2539,335:6630773,35984414:11829248,505283,126483 -h2539,334:6630773,35984414:0,0,0 -g2539,334:9374765,35984414 -k2539,335:14515082,35984414:3944940 -k2539,335:18460021,35984414:3944939 -) -(2539,336:6630773,36825902:11829248,505283,126483 -h2539,335:6630773,36825902:0,0,0 -g2539,335:10165129,36825902 -g2539,335:11733405,36825902 -k2539,336:15694402,36825902:2765620 -k2539,336:18460021,36825902:2765619 -) -(2539,337:6630773,37667390:11829248,505283,126483 -h2539,336:6630773,37667390:0,0,0 -g2539,336:10560311,37667390 -k2539,337:15107855,37667390:3352167 -k2539,337:18460021,37667390:3352166 -) -(2539,338:6630773,38508878:11829248,505283,126483 -h2539,337:6630773,38508878:0,0,0 -g2539,337:12931403,38508878 -k2539,338:16293401,38508878:2166621 -k2539,338:18460021,38508878:2166620 -) -(2539,340:6630773,39350366:11829248,505283,126483 -h2539,338:6630773,39350366:0,0,0 -g2539,338:9769947,39350366 -g2539,338:10541305,39350366 -g2539,338:11711122,39350366 -g2539,338:12880939,39350366 -g2539,338:14050756,39350366 -g2539,338:15220573,39350366 -g2539,338:16390390,39350366 -k2539,338:18460021,39350366:700584 -) -(2539,340:9252213,40191854:9207808,485622,102891 -g2539,338:10820489,40191854 -g2539,338:12388765,40191854 -g2539,338:13957041,40191854 -k2539,340:16806220,40191854:1653802 -k2539,340:18460021,40191854:1653801 -) -(2539,341:6630773,41033342:11829248,505283,126483 -h2539,340:6630773,41033342:0,0,0 -g2539,340:8584400,41033342 -k2539,341:14119899,41033342:4340122 -k2539,341:18460021,41033342:4340122 -) -(2539,342:6630773,41874830:11829248,505283,126483 -h2539,341:6630773,41874830:0,0,0 -g2539,341:10560311,41874830 -g2539,341:12128587,41874830 -k2539,342:15891993,41874830:2568029 -k2539,342:18460021,41874830:2568028 -) -(2539,346:6630773,43370055:11829248,505283,126483 -h2539,345:6630773,43370055:0,0,0 -g2539,345:9769947,43370055 -k2539,346:14712673,43370055:3747349 -k2539,346:18460021,43370055:3747348 -) -(2539,347:6630773,44211543:11829248,505283,126483 -h2539,346:6630773,44211543:0,0,0 -g2539,346:10955493,44211543 -k2539,347:15305446,44211543:3154576 -k2539,347:18460021,44211543:3154575 -) -(2539,351:6630773,45706769:11829248,505283,134348 -h2539,350:6630773,45706769:0,0,0 -g2539,350:9769947,45706769 -k2539,351:14712673,45706769:3747349 -k2539,351:18460021,45706769:3747348 -) -] -k2539,404:19606901,45706769:1146880 -r2539,404:19606901,45706769:0,40242380,134348 -k2539,404:20753781,45706769:1146880 -[2539,404:20753781,45706769:11829248,40108032,102891 -(2539,352:20753781,6254097:11829248,505283,102891 -h2539,351:20753781,6254097:0,0,0 -g2539,351:25078501,6254097 -g2539,351:26646777,6254097 -g2539,351:28215053,6254097 -k2539,352:31758258,6254097:824772 -k2539,352:32583029,6254097:824771 -) -(2539,353:20753781,7097026:11829248,505283,102891 -h2539,352:20753781,7097026:0,0,0 -g2539,352:25473683,7097026 -g2539,352:27041959,7097026 -g2539,352:28610235,7097026 -k2539,353:31194321,7097026:1388709 -k2539,353:32583029,7097026:1388708 -) -(2539,354:20753781,7939955:11829248,513147,102891 -h2539,353:20753781,7939955:0,0,0 -g2539,353:26659229,7939955 -g2539,353:28227505,7939955 -k2539,354:31002956,7939955:1580074 -k2539,354:32583029,7939955:1580073 -) -(2539,355:20753781,8782884:11829248,513147,102891 -h2539,354:20753781,8782884:0,0,0 -g2539,354:25078501,8782884 -k2539,355:29428454,8782884:3154576 -k2539,355:32583029,8782884:3154575 -) -(2539,356:20753781,9625813:11829248,505283,126483 -h2539,355:20753781,9625813:0,0,0 -g2539,355:25473683,9625813 -k2539,356:29626045,9625813:2956985 -k2539,356:32583029,9625813:2956984 -) -(2539,357:20753781,10468742:11829248,505283,126483 -h2539,356:20753781,10468742:0,0,0 -g2539,356:26264047,10468742 -k2539,357:30021227,10468742:2561803 -k2539,357:32583029,10468742:2561802 -) -(2539,358:20753781,11311671:11829248,505283,102891 -h2539,357:20753781,11311671:0,0,0 -g2539,357:25868865,11311671 -g2539,357:28960198,11311671 -g2539,357:30528474,11311671 -k2539,358:32153440,11311671:429589 -k2539,358:32583029,11311671:429589 -) -(2539,359:20753781,12154600:11829248,505283,102891 -h2539,358:20753781,12154600:0,0,0 -g2539,358:25473683,12154600 -k2539,359:29626045,12154600:2956985 -k2539,359:32583029,12154600:2956984 -) -(2539,360:20753781,12997529:11829248,505283,102891 -h2539,359:20753781,12997529:0,0,0 -g2539,359:25078501,12997529 -g2539,359:26646777,12997529 -k2539,360:30212592,12997529:2370438 -k2539,360:32583029,12997529:2370437 -) -(2539,361:20753781,13840458:11829248,505283,102891 -h2539,360:20753781,13840458:0,0,0 -g2539,360:25868865,13840458 -k2539,361:29823636,13840458:2759394 -k2539,361:32583029,13840458:2759393 -) -(2539,362:20753781,14683387:11829248,505283,102891 -h2539,361:20753781,14683387:0,0,0 -g2539,361:25868865,14683387 -k2539,362:29823636,14683387:2759394 -k2539,362:32583029,14683387:2759393 -) -(2539,363:20753781,15526316:11829248,513147,102891 -h2539,362:20753781,15526316:0,0,0 -g2539,362:25473683,15526316 -k2539,363:29626045,15526316:2956985 -k2539,363:32583029,15526316:2956984 -) -(2539,364:20753781,16369246:11829248,513147,102891 -h2539,363:20753781,16369246:0,0,0 -g2539,363:25078501,16369246 -k2539,364:29428454,16369246:3154576 -k2539,364:32583029,16369246:3154575 -) -(2539,365:20753781,17212175:11829248,505283,102891 -h2539,364:20753781,17212175:0,0,0 -g2539,364:25473683,17212175 -k2539,365:29626045,17212175:2956985 -k2539,365:32583029,17212175:2956984 -) -(2539,366:20753781,18055104:11829248,505283,102891 -h2539,365:20753781,18055104:0,0,0 -g2539,365:25868865,18055104 -k2539,366:29823636,18055104:2759394 -k2539,366:32583029,18055104:2759393 -) -(2539,367:20753781,18898033:11829248,505283,102891 -h2539,366:20753781,18898033:0,0,0 -g2539,366:25078501,18898033 -k2539,367:29428454,18898033:3154576 -k2539,367:32583029,18898033:3154575 -) -(2539,368:20753781,19740962:11829248,505283,102891 -h2539,367:20753781,19740962:0,0,0 -g2539,367:25078501,19740962 -k2539,368:29428454,19740962:3154576 -k2539,368:32583029,19740962:3154575 -) -(2539,369:20753781,20583891:11829248,505283,102891 -h2539,368:20753781,20583891:0,0,0 -g2539,368:25868865,20583891 -g2539,368:27437141,20583891 -k2539,369:30607774,20583891:1975256 -k2539,369:32583029,20583891:1975255 -) -(2539,370:20753781,21426820:11829248,505283,102891 -h2539,369:20753781,21426820:0,0,0 -g2539,369:26264047,21426820 -k2539,370:30021227,21426820:2561803 -k2539,370:32583029,21426820:2561802 -) -(2539,371:20753781,22269749:11829248,505283,102891 -h2539,370:20753781,22269749:0,0,0 -g2539,370:25078501,22269749 -k2539,371:29428454,22269749:3154576 -k2539,371:32583029,22269749:3154575 -) -(2539,372:20753781,23112678:11829248,505283,102891 -h2539,371:20753781,23112678:0,0,0 -g2539,371:25473683,23112678 -k2539,372:29626045,23112678:2956985 -k2539,372:32583029,23112678:2956984 -) -(2539,373:20753781,23955607:11829248,505283,102891 -h2539,372:20753781,23955607:0,0,0 -g2539,372:24683319,23955607 -k2539,373:29031633,23955607:3551396 -k2539,373:32583029,23955607:3551396 -) -(2539,374:20753781,24798536:11829248,505283,102891 -h2539,373:20753781,24798536:0,0,0 -g2539,373:23102590,24798536 -k2539,374:28440498,24798536:4142531 -k2539,374:32583029,24798536:4142531 -) -(2539,375:20753781,25641465:11829248,505283,102891 -h2539,374:20753781,25641465:0,0,0 -g2539,374:24288137,25641465 -k2539,375:29033272,25641465:3549758 -k2539,375:32583029,25641465:3549757 -) -(2539,376:20753781,26484394:11829248,505283,102891 -h2539,375:20753781,26484394:0,0,0 -g2539,375:24683319,26484394 -k2539,376:29031633,26484394:3551396 -k2539,376:32583029,26484394:3551396 -) -(2539,377:20753781,27327323:11829248,505283,126483 -h2539,376:20753781,27327323:0,0,0 -g2539,376:23102590,27327323 -k2539,377:28241269,27327323:4341761 -k2539,377:32583029,27327323:4341760 -) -(2539,378:20753781,28170252:11829248,485622,126483 -h2539,377:20753781,28170252:0,0,0 -g2539,377:23497773,28170252 -g2539,377:25066049,28170252 -g2539,377:26634325,28170252 -k2539,378:30206366,28170252:2376664 -k2539,378:32583029,28170252:2376663 -) -(2539,379:20753781,29013181:11829248,505283,102891 -h2539,378:20753781,29013181:0,0,0 -g2539,378:23892955,29013181 -k2539,379:28835681,29013181:3747349 -k2539,379:32583029,29013181:3747348 -) -(2539,380:20753781,29856110:11829248,505283,102891 -h2539,379:20753781,29856110:0,0,0 -g2539,379:25473683,29856110 -k2539,380:29626045,29856110:2956985 -k2539,380:32583029,29856110:2956984 -) -(2539,381:20753781,30699039:11829248,505283,102891 -h2539,380:20753781,30699039:0,0,0 -g2539,380:24288137,30699039 -k2539,381:29033272,30699039:3549758 -k2539,381:32583029,30699039:3549757 -) -(2539,382:20753781,31541968:11829248,505283,134348 -h2539,381:20753781,31541968:0,0,0 -g2539,381:23102590,31541968 -k2539,382:28440498,31541968:4142531 -k2539,382:32583029,31541968:4142531 -) -(2539,383:20753781,32384897:11829248,505283,134348 -h2539,382:20753781,32384897:0,0,0 -g2539,382:25868865,32384897 -k2539,383:29823636,32384897:2759394 -k2539,383:32583029,32384897:2759393 -) -(2539,384:20753781,33227826:11829248,505283,102891 -h2539,383:20753781,33227826:0,0,0 -g2539,383:23102590,33227826 -k2539,384:28241269,33227826:4341761 -k2539,384:32583029,33227826:4341760 -) -(2539,385:20753781,34070755:11829248,505283,102891 -h2539,384:20753781,34070755:0,0,0 -g2539,384:22707408,34070755 -k2539,385:28043678,34070755:4539352 -k2539,385:32583029,34070755:4539351 -) -(2539,386:20753781,34913684:11829248,505283,102891 -h2539,385:20753781,34913684:0,0,0 -g2539,385:23892955,34913684 -g2539,385:25461231,34913684 -g2539,385:27029507,34913684 -k2539,386:30403957,34913684:2179073 -k2539,386:32583029,34913684:2179072 -) -(2539,387:20753781,35756613:11829248,505283,102891 -h2539,386:20753781,35756613:0,0,0 -g2539,386:23892955,35756613 -k2539,387:28636451,35756613:3946578 -k2539,387:32583029,35756613:3946578 -) -(2539,388:20753781,36599543:11829248,505283,102891 -h2539,387:20753781,36599543:0,0,0 -g2539,387:25078501,36599543 -k2539,388:29229224,36599543:3353805 -k2539,388:32583029,36599543:3353805 -) -(2539,389:20753781,37442472:11829248,513147,102891 -h2539,388:20753781,37442472:0,0,0 -g2539,388:23892955,37442472 -k2539,389:28835681,37442472:3747349 -k2539,389:32583029,37442472:3747348 -) -(2539,393:20753781,38964778:11829248,505283,126483 -h2539,392:20753781,38964778:0,0,0 -g2539,392:23497773,38964778 -k2539,393:28438860,38964778:4144169 -k2539,393:32583029,38964778:4144169 -) -(2539,394:20753781,39807707:11829248,505283,126483 -h2539,393:20753781,39807707:0,0,0 -g2539,393:24288137,39807707 -g2539,393:25457954,39807707 -g2539,393:27026230,39807707 -k2539,394:30402318,39807707:2180711 -k2539,394:32583029,39807707:2180711 -) -(2539,395:20753781,40650636:11829248,505283,102891 -h2539,394:20753781,40650636:0,0,0 -g2539,394:23497773,40650636 -k2539,395:28438860,40650636:4144169 -k2539,395:32583029,40650636:4144169 -) -(2539,396:20753781,41493565:11829248,505283,102891 -h2539,395:20753781,41493565:0,0,0 -g2539,395:24683319,41493565 -k2539,396:29031633,41493565:3551396 -k2539,396:32583029,41493565:3551396 -) -(2539,397:20753781,42336494:11829248,505283,102891 -h2539,396:20753781,42336494:0,0,0 -g2539,396:29030322,42336494 -k2539,397:31404364,42336494:1178665 -k2539,397:32583029,42336494:1178665 -) -(2539,398:20753781,43179423:11829248,505283,102891 -h2539,397:20753781,43179423:0,0,0 -g2539,397:30611050,43179423 -k2539,397:32583029,43179423:602932 -) -(2539,398:23375221,44020911:9207808,485622,11795 -k2539,398:28576814,44020911:4006216 -k2539,398:32583029,44020911:4006215 -) -(2539,399:20753781,44863840:11829248,505283,102891 -h2539,398:20753781,44863840:0,0,0 -g2539,398:28239958,44863840 -k2539,399:31009182,44863840:1573847 -k2539,399:32583029,44863840:1573847 -) -(2539,400:20753781,45706769:11829248,505283,102891 -h2539,399:20753781,45706769:0,0,0 -g2539,399:29820686,45706769 -k2539,400:31799546,45706769:783483 -k2539,400:32583029,45706769:783483 -) -] -(2539,404:32583029,45706769:0,355205,126483 -h2539,404:32583029,45706769:420741,355205,126483 -k2539,404:32583029,45706769:-420741 -) -) -] -(2539,404:32583029,45706769:0,0,0 -g2539,404:32583029,45706769 -) -) -] -(2539,404:6630773,47279633:25952256,0,0 -h2539,404:6630773,47279633:25952256,0,0 -) -] -h2539,404:4262630,4025873:0,0,0 -] -!22077 -}357 +(2536,292:6630773,7100543:11829248,505283,102891 +h2536,291:6630773,7100543:0,0,0 +g2536,291:9374765,7100543 +g2536,291:10544582,7100543 +g2536,291:12112858,7100543 +k2536,292:15884128,7100543:2575893 +k2536,292:18460021,7100543:2575893 +) +(2536,293:6630773,7946990:11829248,505283,102891 +h2536,292:6630773,7946990:0,0,0 +g2536,292:10560311,7946990 +k2536,293:14908625,7946990:3551396 +k2536,293:18460021,7946990:3551396 +) +(2536,294:6630773,8793436:11829248,505283,102891 +h2536,293:6630773,8793436:0,0,0 +g2536,293:10955493,8793436 +k2536,294:15106216,8793436:3353805 +k2536,294:18460021,8793436:3353805 +) +(2536,295:6630773,9639882:11829248,485622,102891 +h2536,294:6630773,9639882:0,0,0 +g2536,294:9374765,9639882 +k2536,295:14515082,9639882:3944940 +k2536,295:18460021,9639882:3944939 +) +(2536,296:6630773,10486329:11829248,505283,102891 +h2536,295:6630773,10486329:0,0,0 +g2536,295:10165129,10486329 +g2536,295:11733405,10486329 +k2536,296:15694402,10486329:2765620 +k2536,296:18460021,10486329:2765619 +) +(2536,297:6630773,11332775:11829248,505283,126483 +h2536,296:6630773,11332775:0,0,0 +g2536,296:10955493,11332775 +k2536,297:15305446,11332775:3154576 +k2536,297:18460021,11332775:3154575 +) +(2536,301:6630773,12917219:11829248,485622,102891 +h2536,300:6630773,12917219:0,0,0 +g2536,300:7794036,12917219 +g2536,300:8963853,12917219 +g2536,300:10133670,12917219 +k2536,301:14695305,12917219:3764717 +k2536,301:18460021,12917219:3764716 +) +(2536,302:6630773,13763665:11829248,505283,102891 +h2536,301:6630773,13763665:0,0,0 +g2536,301:12141039,13763665 +k2536,302:15698989,13763665:2761032 +k2536,302:18460021,13763665:2761032 +) +(2536,303:6630773,14610111:11829248,505283,102891 +h2536,302:6630773,14610111:0,0,0 +g2536,302:10165129,14610111 +k2536,303:14711034,14610111:3748987 +k2536,303:18460021,14610111:3748987 +) +(2536,304:6630773,15456558:11829248,505283,102891 +h2536,303:6630773,15456558:0,0,0 +g2536,303:9769947,15456558 +g2536,303:10939764,15456558 +g2536,303:12109581,15456558 +g2536,303:13677857,15456558 +k2536,304:16666628,15456558:1793394 +k2536,304:18460021,15456558:1793393 +) +(2536,305:6630773,16303004:11829248,505283,102891 +h2536,304:6630773,16303004:0,0,0 +g2536,304:10560311,16303004 +k2536,305:14908625,16303004:3551396 +k2536,305:18460021,16303004:3551396 +) +(2536,306:6630773,17149450:11829248,505283,102891 +h2536,305:6630773,17149450:0,0,0 +g2536,305:10560311,17149450 +k2536,306:15107855,17149450:3352167 +k2536,306:18460021,17149450:3352166 +) +(2536,307:6630773,17995897:11829248,485622,102891 +h2536,306:6630773,17995897:0,0,0 +g2536,306:8189218,17995897 +k2536,307:13723079,17995897:4736943 +k2536,307:18460021,17995897:4736942 +) +(2536,308:6630773,18842343:11829248,505283,126483 +h2536,307:6630773,18842343:0,0,0 +g2536,307:10560311,18842343 +k2536,308:15107855,18842343:3352167 +k2536,308:18460021,18842343:3352166 +) +(2536,309:6630773,19688789:11829248,505283,102891 +h2536,308:6630773,19688789:0,0,0 +g2536,308:9374765,19688789 +g2536,308:10544582,19688789 +g2536,308:11714399,19688789 +k2536,309:15684899,19688789:2775123 +k2536,309:18460021,19688789:2775122 +) +(2536,310:6630773,20535236:11829248,505283,134348 +h2536,309:6630773,20535236:0,0,0 +g2536,309:11350675,20535236 +k2536,310:15503037,20535236:2956985 +k2536,310:18460021,20535236:2956984 +) +(2536,311:6630773,21381682:11829248,505283,102891 +h2536,310:6630773,21381682:0,0,0 +g2536,310:9374765,21381682 +k2536,311:14515082,21381682:3944940 +k2536,311:18460021,21381682:3944939 +) +(2536,312:6630773,22228128:11829248,505283,102891 +h2536,311:6630773,22228128:0,0,0 +g2536,311:8584400,22228128 +k2536,312:14119899,22228128:4340122 +k2536,312:18460021,22228128:4340122 +) +(2536,313:6630773,23074574:11829248,505283,102891 +h2536,312:6630773,23074574:0,0,0 +g2536,312:8189218,23074574 +k2536,313:13922308,23074574:4537713 +k2536,313:18460021,23074574:4537713 +) +(2536,314:6630773,23921021:11829248,505283,102891 +h2536,313:6630773,23921021:0,0,0 +g2536,313:8979582,23921021 +g2536,313:10547858,23921021 +k2536,314:15101628,23921021:3358393 +k2536,314:18460021,23921021:3358393 +) +(2536,315:6630773,24767467:11829248,485622,102891 +h2536,314:6630773,24767467:0,0,0 +g2536,314:9374765,24767467 +k2536,315:14515082,24767467:3944940 +k2536,315:18460021,24767467:3944939 +) +(2536,316:6630773,25613913:11829248,505283,126483 +h2536,315:6630773,25613913:0,0,0 +g2536,315:8189218,25613913 +k2536,316:13922308,25613913:4537713 +k2536,316:18460021,25613913:4537713 +) +(2536,317:6630773,26460360:11829248,505283,102891 +h2536,316:6630773,26460360:0,0,0 +g2536,316:9374765,26460360 +g2536,316:10544582,26460360 +g2536,316:11714399,26460360 +k2536,317:15684899,26460360:2775123 +k2536,317:18460021,26460360:2775122 +) +(2536,318:6630773,27306806:11829248,505283,102891 +h2536,317:6630773,27306806:0,0,0 +g2536,317:9769947,27306806 +g2536,317:10939764,27306806 +g2536,317:12109581,27306806 +g2536,317:13279398,27306806 +g2536,317:14449215,27306806 +k2536,318:16853077,27306806:1606944 +k2536,318:18460021,27306806:1606944 +) +(2536,319:6630773,28153252:11829248,505283,102891 +h2536,318:6630773,28153252:0,0,0 +g2536,318:10560311,28153252 +k2536,319:14908625,28153252:3551396 +k2536,319:18460021,28153252:3551396 +) +(2536,323:6630773,29737696:11829248,485622,134348 +h2536,322:6630773,29737696:0,0,0 +g2536,322:9374765,29737696 +k2536,323:14515082,29737696:3944940 +k2536,323:18460021,29737696:3944939 +) +(2536,324:6630773,30584143:11829248,505283,102891 +h2536,323:6630773,30584143:0,0,0 +g2536,323:9769947,30584143 +g2536,323:10939764,30584143 +g2536,323:12109581,30584143 +g2536,323:13279398,30584143 +g2536,323:14449215,30584143 +k2536,324:17052307,30584143:1407715 +k2536,324:18460021,30584143:1407714 +) +(2536,325:6630773,31430589:11829248,505283,102891 +h2536,324:6630773,31430589:0,0,0 +g2536,324:10560311,31430589 +k2536,325:14908625,31430589:3551396 +k2536,325:18460021,31430589:3551396 +) +(2536,329:6630773,33015033:11829248,505283,126483 +h2536,328:6630773,33015033:0,0,0 +g2536,328:9769947,33015033 +g2536,328:11338223,33015033 +k2536,329:15496811,33015033:2963211 +k2536,329:18460021,33015033:2963210 +) +(2536,330:6630773,33861479:11829248,505283,126483 +h2536,329:6630773,33861479:0,0,0 +g2536,329:9769947,33861479 +g2536,329:11338223,33861479 +g2536,329:12906499,33861479 +k2536,330:16280949,33861479:2179073 +k2536,330:18460021,33861479:2179072 +) +(2536,331:6630773,34707925:11829248,505283,126483 +h2536,330:6630773,34707925:0,0,0 +g2536,330:7794036,34707925 +k2536,331:13525488,34707925:4934534 +k2536,331:18460021,34707925:4934533 +) +(2536,332:6630773,35554372:11829248,505283,134348 +h2536,331:6630773,35554372:0,0,0 +g2536,331:12536221,35554372 +k2536,332:16095810,35554372:2364212 +k2536,332:18460021,35554372:2364211 +) +(2536,333:6630773,36400818:11829248,505283,126483 +h2536,332:6630773,36400818:0,0,0 +g2536,332:12141039,36400818 +k2536,333:15898219,36400818:2561803 +k2536,333:18460021,36400818:2561802 +) +(2536,334:6630773,37247264:11829248,505283,126483 +h2536,333:6630773,37247264:0,0,0 +g2536,333:9769947,37247264 +k2536,334:14712673,37247264:3747349 +k2536,334:18460021,37247264:3747348 +) +(2536,335:6630773,38093711:11829248,505283,126483 +h2536,334:6630773,38093711:0,0,0 +g2536,334:9374765,38093711 +g2536,334:11669180,38093711 +g2536,334:13237456,38093711 +g2536,334:14805732,38093711 +k2536,335:17230565,38093711:1229456 +k2536,335:18460021,38093711:1229456 +) +(2536,336:6630773,38940157:11829248,505283,126483 +h2536,335:6630773,38940157:0,0,0 +g2536,335:9769947,38940157 +g2536,335:11338223,38940157 +k2536,336:15496811,38940157:2963211 +k2536,336:18460021,38940157:2963210 +) +(2536,337:6630773,39786603:11829248,505283,126483 +h2536,336:6630773,39786603:0,0,0 +g2536,336:9374765,39786603 +k2536,337:14515082,39786603:3944940 +k2536,337:18460021,39786603:3944939 +) +(2536,338:6630773,40633049:11829248,505283,126483 +h2536,337:6630773,40633049:0,0,0 +g2536,337:10165129,40633049 +g2536,337:11733405,40633049 +k2536,338:15694402,40633049:2765620 +k2536,338:18460021,40633049:2765619 +) +(2536,339:6630773,41479496:11829248,505283,126483 +h2536,338:6630773,41479496:0,0,0 +g2536,338:10560311,41479496 +k2536,339:15107855,41479496:3352167 +k2536,339:18460021,41479496:3352166 +) +(2536,340:6630773,42325942:11829248,505283,126483 +h2536,339:6630773,42325942:0,0,0 +g2536,339:12931403,42325942 +k2536,340:16293401,42325942:2166621 +k2536,340:18460021,42325942:2166620 +) +(2536,342:6630773,43172388:11829248,505283,126483 +h2536,340:6630773,43172388:0,0,0 +g2536,340:9769947,43172388 +g2536,340:10541305,43172388 +g2536,340:11711122,43172388 +g2536,340:12880939,43172388 +g2536,340:14050756,43172388 +g2536,340:15220573,43172388 +g2536,340:16390390,43172388 +k2536,340:18460021,43172388:700584 +) +(2536,342:9252213,44013876:9207808,485622,102891 +g2536,340:10820489,44013876 +g2536,340:12388765,44013876 +g2536,340:13957041,44013876 +k2536,342:16806220,44013876:1653802 +k2536,342:18460021,44013876:1653801 +) +(2536,343:6630773,44860323:11829248,505283,126483 +h2536,342:6630773,44860323:0,0,0 +g2536,342:8584400,44860323 +k2536,343:14119899,44860323:4340122 +k2536,343:18460021,44860323:4340122 +) +(2536,344:6630773,45706769:11829248,505283,126483 +h2536,343:6630773,45706769:0,0,0 +g2536,343:10560311,45706769 +g2536,343:12128587,45706769 +k2536,344:15891993,45706769:2568029 +k2536,344:18460021,45706769:2568028 +) +] +k2536,402:19606901,45706769:1146880 +r2536,402:19606901,45706769:0,40234515,126483 +k2536,402:20753781,45706769:1146880 +[2536,402:20753781,45706769:11829248,40108032,102891 +(2536,348:20753781,6254097:11829248,505283,126483 +h2536,347:20753781,6254097:0,0,0 +g2536,347:23892955,6254097 +k2536,348:28835681,6254097:3747349 +k2536,348:32583029,6254097:3747348 +) +(2536,349:20753781,7099096:11829248,505283,126483 +h2536,348:20753781,7099096:0,0,0 +g2536,348:25078501,7099096 +k2536,349:29428454,7099096:3154576 +k2536,349:32583029,7099096:3154575 +) +(2536,353:20753781,8657963:11829248,505283,134348 +h2536,352:20753781,8657963:0,0,0 +g2536,352:23892955,8657963 +k2536,353:28835681,8657963:3747349 +k2536,353:32583029,8657963:3747348 +) +(2536,354:20753781,9502961:11829248,505283,102891 +h2536,353:20753781,9502961:0,0,0 +g2536,353:25078501,9502961 +g2536,353:26646777,9502961 +k2536,354:30974120,9502961:1608910 +k2536,354:32583029,9502961:1608909 +) +(2536,355:20753781,10347960:11829248,505283,102891 +h2536,354:20753781,10347960:0,0,0 +g2536,354:25473683,10347960 +g2536,354:27041959,10347960 +g2536,354:28610235,10347960 +k2536,355:31194321,10347960:1388709 +k2536,355:32583029,10347960:1388708 +) +(2536,356:20753781,11192958:11829248,513147,102891 +h2536,355:20753781,11192958:0,0,0 +g2536,355:26659229,11192958 +g2536,355:28227505,11192958 +k2536,356:31002956,11192958:1580074 +k2536,356:32583029,11192958:1580073 +) +(2536,357:20753781,12037957:11829248,513147,102891 +h2536,356:20753781,12037957:0,0,0 +g2536,356:25078501,12037957 +k2536,357:29428454,12037957:3154576 +k2536,357:32583029,12037957:3154575 +) +(2536,358:20753781,12882955:11829248,505283,126483 +h2536,357:20753781,12882955:0,0,0 +g2536,357:25473683,12882955 +k2536,358:29626045,12882955:2956985 +k2536,358:32583029,12882955:2956984 +) +(2536,359:20753781,13727954:11829248,505283,126483 +h2536,358:20753781,13727954:0,0,0 +g2536,358:26264047,13727954 +k2536,359:30021227,13727954:2561803 +k2536,359:32583029,13727954:2561802 +) +(2536,360:20753781,14572953:11829248,505283,102891 +h2536,359:20753781,14572953:0,0,0 +g2536,359:25868865,14572953 +g2536,359:28960198,14572953 +g2536,359:30528474,14572953 +k2536,360:32153440,14572953:429589 +k2536,360:32583029,14572953:429589 +) +(2536,361:20753781,15417951:11829248,505283,102891 +h2536,360:20753781,15417951:0,0,0 +g2536,360:25473683,15417951 +k2536,361:29626045,15417951:2956985 +k2536,361:32583029,15417951:2956984 +) +(2536,362:20753781,16262950:11829248,505283,102891 +h2536,361:20753781,16262950:0,0,0 +g2536,361:25078501,16262950 +g2536,361:26646777,16262950 +k2536,362:30212592,16262950:2370438 +k2536,362:32583029,16262950:2370437 +) +(2536,363:20753781,17107948:11829248,505283,102891 +h2536,362:20753781,17107948:0,0,0 +g2536,362:25868865,17107948 +k2536,363:29823636,17107948:2759394 +k2536,363:32583029,17107948:2759393 +) +(2536,364:20753781,17952947:11829248,505283,102891 +h2536,363:20753781,17952947:0,0,0 +g2536,363:25868865,17952947 +k2536,364:29823636,17952947:2759394 +k2536,364:32583029,17952947:2759393 +) +(2536,365:20753781,18797945:11829248,513147,102891 +h2536,364:20753781,18797945:0,0,0 +g2536,364:25473683,18797945 +k2536,365:29626045,18797945:2956985 +k2536,365:32583029,18797945:2956984 +) +(2536,366:20753781,19642944:11829248,513147,102891 +h2536,365:20753781,19642944:0,0,0 +g2536,365:25078501,19642944 +k2536,366:29428454,19642944:3154576 +k2536,366:32583029,19642944:3154575 +) +(2536,367:20753781,20487942:11829248,505283,102891 +h2536,366:20753781,20487942:0,0,0 +g2536,366:25473683,20487942 +k2536,367:29626045,20487942:2956985 +k2536,367:32583029,20487942:2956984 +) +(2536,368:20753781,21332941:11829248,505283,102891 +h2536,367:20753781,21332941:0,0,0 +g2536,367:25868865,21332941 +k2536,368:29823636,21332941:2759394 +k2536,368:32583029,21332941:2759393 +) +(2536,369:20753781,22177940:11829248,505283,102891 +h2536,368:20753781,22177940:0,0,0 +g2536,368:25078501,22177940 +k2536,369:29428454,22177940:3154576 +k2536,369:32583029,22177940:3154575 +) +(2536,370:20753781,23022938:11829248,505283,102891 +h2536,369:20753781,23022938:0,0,0 +g2536,369:25078501,23022938 +k2536,370:29428454,23022938:3154576 +k2536,370:32583029,23022938:3154575 +) +(2536,371:20753781,23867937:11829248,505283,102891 +h2536,370:20753781,23867937:0,0,0 +g2536,370:25868865,23867937 +g2536,370:27437141,23867937 +k2536,371:30607774,23867937:1975256 +k2536,371:32583029,23867937:1975255 +) +(2536,372:20753781,24712935:11829248,505283,102891 +h2536,371:20753781,24712935:0,0,0 +g2536,371:26264047,24712935 +k2536,372:30021227,24712935:2561803 +k2536,372:32583029,24712935:2561802 +) +(2536,373:20753781,25557934:11829248,505283,102891 +h2536,372:20753781,25557934:0,0,0 +g2536,372:25078501,25557934 +k2536,373:29428454,25557934:3154576 +k2536,373:32583029,25557934:3154575 +) +(2536,374:20753781,26402932:11829248,505283,102891 +h2536,373:20753781,26402932:0,0,0 +g2536,373:25473683,26402932 +k2536,374:29626045,26402932:2956985 +k2536,374:32583029,26402932:2956984 +) +(2536,375:20753781,27247931:11829248,505283,102891 +h2536,374:20753781,27247931:0,0,0 +g2536,374:24683319,27247931 +k2536,375:29031633,27247931:3551396 +k2536,375:32583029,27247931:3551396 +) +(2536,376:20753781,28092929:11829248,505283,102891 +h2536,375:20753781,28092929:0,0,0 +g2536,375:23102590,28092929 +k2536,376:28440498,28092929:4142531 +k2536,376:32583029,28092929:4142531 +) +(2536,377:20753781,28937928:11829248,505283,102891 +h2536,376:20753781,28937928:0,0,0 +g2536,376:24288137,28937928 +k2536,377:29033272,28937928:3549758 +k2536,377:32583029,28937928:3549757 +) +(2536,378:20753781,29782926:11829248,505283,102891 +h2536,377:20753781,29782926:0,0,0 +g2536,377:24683319,29782926 +k2536,378:29031633,29782926:3551396 +k2536,378:32583029,29782926:3551396 +) +(2536,379:20753781,30627925:11829248,505283,126483 +h2536,378:20753781,30627925:0,0,0 +g2536,378:23102590,30627925 +k2536,379:28241269,30627925:4341761 +k2536,379:32583029,30627925:4341760 +) +(2536,380:20753781,31472924:11829248,485622,126483 +h2536,379:20753781,31472924:0,0,0 +g2536,379:23497773,31472924 +g2536,379:25066049,31472924 +g2536,379:26634325,31472924 +k2536,380:30206366,31472924:2376664 +k2536,380:32583029,31472924:2376663 +) +(2536,381:20753781,32317922:11829248,505283,102891 +h2536,380:20753781,32317922:0,0,0 +g2536,380:23892955,32317922 +k2536,381:28835681,32317922:3747349 +k2536,381:32583029,32317922:3747348 +) +(2536,382:20753781,33162921:11829248,505283,102891 +h2536,381:20753781,33162921:0,0,0 +g2536,381:25473683,33162921 +k2536,382:29626045,33162921:2956985 +k2536,382:32583029,33162921:2956984 +) +(2536,383:20753781,34007919:11829248,505283,102891 +h2536,382:20753781,34007919:0,0,0 +g2536,382:24288137,34007919 +k2536,383:29033272,34007919:3549758 +k2536,383:32583029,34007919:3549757 +) +(2536,384:20753781,34852918:11829248,505283,134348 +h2536,383:20753781,34852918:0,0,0 +g2536,383:23102590,34852918 +k2536,384:28440498,34852918:4142531 +k2536,384:32583029,34852918:4142531 +) +(2536,385:20753781,35697916:11829248,505283,134348 +h2536,384:20753781,35697916:0,0,0 +g2536,384:25868865,35697916 +k2536,385:29823636,35697916:2759394 +k2536,385:32583029,35697916:2759393 +) +(2536,386:20753781,36542915:11829248,505283,102891 +h2536,385:20753781,36542915:0,0,0 +g2536,385:23102590,36542915 +k2536,386:28241269,36542915:4341761 +k2536,386:32583029,36542915:4341760 +) +(2536,387:20753781,37387913:11829248,505283,102891 +h2536,386:20753781,37387913:0,0,0 +g2536,386:22707408,37387913 +k2536,387:28043678,37387913:4539352 +k2536,387:32583029,37387913:4539351 +) +(2536,388:20753781,38232912:11829248,505283,102891 +h2536,387:20753781,38232912:0,0,0 +g2536,387:23892955,38232912 +g2536,387:25461231,38232912 +g2536,387:27029507,38232912 +k2536,388:30403957,38232912:2179073 +k2536,388:32583029,38232912:2179072 +) +(2536,389:20753781,39077911:11829248,505283,102891 +h2536,388:20753781,39077911:0,0,0 +g2536,388:23892955,39077911 +k2536,389:28636451,39077911:3946578 +k2536,389:32583029,39077911:3946578 +) +(2536,390:20753781,39922909:11829248,505283,102891 +h2536,389:20753781,39922909:0,0,0 +g2536,389:25078501,39922909 +k2536,390:29229224,39922909:3353805 +k2536,390:32583029,39922909:3353805 +) +(2536,391:20753781,40767908:11829248,513147,102891 +h2536,390:20753781,40767908:0,0,0 +g2536,390:23892955,40767908 +k2536,391:28835681,40767908:3747349 +k2536,391:32583029,40767908:3747348 +) +(2536,395:20753781,42326775:11829248,505283,126483 +h2536,394:20753781,42326775:0,0,0 +g2536,394:23497773,42326775 +k2536,395:28438860,42326775:4144169 +k2536,395:32583029,42326775:4144169 +) +(2536,396:20753781,43171773:11829248,505283,126483 +h2536,395:20753781,43171773:0,0,0 +g2536,395:24288137,43171773 +g2536,395:25457954,43171773 +g2536,395:27026230,43171773 +k2536,396:30402318,43171773:2180711 +k2536,396:32583029,43171773:2180711 +) +(2536,397:20753781,44016772:11829248,505283,102891 +h2536,396:20753781,44016772:0,0,0 +g2536,396:23497773,44016772 +k2536,397:28438860,44016772:4144169 +k2536,397:32583029,44016772:4144169 +) +(2536,398:20753781,44861770:11829248,505283,102891 +h2536,397:20753781,44861770:0,0,0 +g2536,397:24683319,44861770 +k2536,398:29031633,44861770:3551396 +k2536,398:32583029,44861770:3551396 +) +(2536,399:20753781,45706769:11829248,505283,102891 +h2536,398:20753781,45706769:0,0,0 +g2536,398:29030322,45706769 +k2536,399:31404364,45706769:1178665 +k2536,399:32583029,45706769:1178665 +) +] +(2536,402:32583029,45706769:0,355205,126483 +h2536,402:32583029,45706769:420741,355205,126483 +k2536,402:32583029,45706769:-420741 +) +) +] +(2536,402:32583029,45706769:0,0,0 +g2536,402:32583029,45706769 +) +) +] +(2536,402:6630773,47279633:25952256,0,0 +h2536,402:6630773,47279633:25952256,0,0 +) +] +h2536,402:4262630,4025873:0,0,0 +] +!22241 +}353 !12 -{358 -[2539,503:4262630,47279633:28320399,43253760,0 -(2539,503:4262630,4025873:0,0,0 -[2539,503:-473657,4025873:11829248,0,0 -(2539,503:-473657,-710414:11829248,0,0 -h2539,503:-473657,-710414:0,0,0 -(2539,503:-473657,-710414:0,0,0 -(2539,503:-473657,-710414:0,0,0 -g2539,503:-473657,-710414 -(2539,503:-473657,-710414:65781,0,65781 -g2539,503:-407876,-710414 -[2539,503:-407876,-644633:0,0,0 +{354 +[2536,499:4262630,47279633:28320399,43253760,0 +(2536,499:4262630,4025873:0,0,0 +[2536,499:-473657,4025873:11829248,0,0 +(2536,499:-473657,-710414:11829248,0,0 +h2536,499:-473657,-710414:0,0,0 +(2536,499:-473657,-710414:0,0,0 +(2536,499:-473657,-710414:0,0,0 +g2536,499:-473657,-710414 +(2536,499:-473657,-710414:65781,0,65781 +g2536,499:-407876,-710414 +[2536,499:-407876,-644633:0,0,0 ] ) -k2539,503:-473657,-710414:-65781 +k2536,499:-473657,-710414:-65781 ) ) -k2539,503:11355591,-710414:11829248 -g2539,503:11355591,-710414 +k2536,499:11355591,-710414:11829248 +g2536,499:11355591,-710414 ) ] ) -[2539,503:6630773,47279633:25952256,43253760,0 -[2539,503:6630773,4812305:25952256,786432,0 -(2539,503:6630773,4812305:25952256,513147,126483 -(2539,503:6630773,4812305:25952256,513147,126483 -g2539,503:3078558,4812305 -[2539,503:3078558,4812305:0,0,0 -(2539,503:3078558,2439708:0,1703936,0 -k2539,503:1358238,2439708:-1720320 -(2539,1:1358238,2439708:1720320,1703936,0 -(2539,1:1358238,2439708:1179648,16384,0 -r2539,503:2537886,2439708:1179648,16384,0 +[2536,499:6630773,47279633:25952256,43253760,0 +[2536,499:6630773,4812305:25952256,786432,0 +(2536,499:6630773,4812305:25952256,513147,126483 +(2536,499:6630773,4812305:25952256,513147,126483 +g2536,499:3078558,4812305 +[2536,499:3078558,4812305:0,0,0 +(2536,499:3078558,2439708:0,1703936,0 +k2536,499:1358238,2439708:-1720320 +(2536,1:1358238,2439708:1720320,1703936,0 +(2536,1:1358238,2439708:1179648,16384,0 +r2536,499:2537886,2439708:1179648,16384,0 ) -g2539,1:3062174,2439708 -(2539,1:3062174,2439708:16384,1703936,0 -[2539,1:3062174,2439708:25952256,1703936,0 -(2539,1:3062174,1915420:25952256,1179648,0 -(2539,1:3062174,1915420:16384,1179648,0 -r2539,503:3078558,1915420:16384,1179648,0 +g2536,1:3062174,2439708 +(2536,1:3062174,2439708:16384,1703936,0 +[2536,1:3062174,2439708:25952256,1703936,0 +(2536,1:3062174,1915420:25952256,1179648,0 +(2536,1:3062174,1915420:16384,1179648,0 +r2536,499:3078558,1915420:16384,1179648,0 ) -k2539,1:29014430,1915420:25935872 -g2539,1:29014430,1915420 +k2536,1:29014430,1915420:25935872 +g2536,1:29014430,1915420 ) ] ) ) ) ] -[2539,503:3078558,4812305:0,0,0 -(2539,503:3078558,2439708:0,1703936,0 -g2539,503:29030814,2439708 -g2539,503:36135244,2439708 -(2539,1:36135244,2439708:1720320,1703936,0 -(2539,1:36135244,2439708:16384,1703936,0 -[2539,1:36135244,2439708:25952256,1703936,0 -(2539,1:36135244,1915420:25952256,1179648,0 -(2539,1:36135244,1915420:16384,1179648,0 -r2539,503:36151628,1915420:16384,1179648,0 +[2536,499:3078558,4812305:0,0,0 +(2536,499:3078558,2439708:0,1703936,0 +g2536,499:29030814,2439708 +g2536,499:36135244,2439708 +(2536,1:36135244,2439708:1720320,1703936,0 +(2536,1:36135244,2439708:16384,1703936,0 +[2536,1:36135244,2439708:25952256,1703936,0 +(2536,1:36135244,1915420:25952256,1179648,0 +(2536,1:36135244,1915420:16384,1179648,0 +r2536,499:36151628,1915420:16384,1179648,0 ) -k2539,1:62087500,1915420:25935872 -g2539,1:62087500,1915420 +k2536,1:62087500,1915420:25935872 +g2536,1:62087500,1915420 ) ] ) -g2539,1:36675916,2439708 -(2539,1:36675916,2439708:1179648,16384,0 -r2539,503:37855564,2439708:1179648,16384,0 +g2536,1:36675916,2439708 +(2536,1:36675916,2439708:1179648,16384,0 +r2536,499:37855564,2439708:1179648,16384,0 ) ) -k2539,503:3078556,2439708:-34777008 +k2536,499:3078556,2439708:-34777008 ) ] -[2539,503:3078558,4812305:0,0,0 -(2539,503:3078558,49800853:0,16384,2228224 -k2539,503:1358238,49800853:-1720320 -(2539,1:1358238,49800853:1720320,16384,2228224 -(2539,1:1358238,49800853:1179648,16384,0 -r2539,503:2537886,49800853:1179648,16384,0 +[2536,499:3078558,4812305:0,0,0 +(2536,499:3078558,49800853:0,16384,2228224 +k2536,499:1358238,49800853:-1720320 +(2536,1:1358238,49800853:1720320,16384,2228224 +(2536,1:1358238,49800853:1179648,16384,0 +r2536,499:2537886,49800853:1179648,16384,0 ) -g2539,1:3062174,49800853 -(2539,1:3062174,52029077:16384,1703936,0 -[2539,1:3062174,52029077:25952256,1703936,0 -(2539,1:3062174,51504789:25952256,1179648,0 -(2539,1:3062174,51504789:16384,1179648,0 -r2539,503:3078558,51504789:16384,1179648,0 +g2536,1:3062174,49800853 +(2536,1:3062174,52029077:16384,1703936,0 +[2536,1:3062174,52029077:25952256,1703936,0 +(2536,1:3062174,51504789:25952256,1179648,0 +(2536,1:3062174,51504789:16384,1179648,0 +r2536,499:3078558,51504789:16384,1179648,0 ) -k2539,1:29014430,51504789:25935872 -g2539,1:29014430,51504789 +k2536,1:29014430,51504789:25935872 +g2536,1:29014430,51504789 ) ] ) ) ) ] -[2539,503:3078558,4812305:0,0,0 -(2539,503:3078558,49800853:0,16384,2228224 -g2539,503:29030814,49800853 -g2539,503:36135244,49800853 -(2539,1:36135244,49800853:1720320,16384,2228224 -(2539,1:36135244,52029077:16384,1703936,0 -[2539,1:36135244,52029077:25952256,1703936,0 -(2539,1:36135244,51504789:25952256,1179648,0 -(2539,1:36135244,51504789:16384,1179648,0 -r2539,503:36151628,51504789:16384,1179648,0 +[2536,499:3078558,4812305:0,0,0 +(2536,499:3078558,49800853:0,16384,2228224 +g2536,499:29030814,49800853 +g2536,499:36135244,49800853 +(2536,1:36135244,49800853:1720320,16384,2228224 +(2536,1:36135244,52029077:16384,1703936,0 +[2536,1:36135244,52029077:25952256,1703936,0 +(2536,1:36135244,51504789:25952256,1179648,0 +(2536,1:36135244,51504789:16384,1179648,0 +r2536,499:36151628,51504789:16384,1179648,0 ) -k2539,1:62087500,51504789:25935872 -g2539,1:62087500,51504789 +k2536,1:62087500,51504789:25935872 +g2536,1:62087500,51504789 ) ] ) -g2539,1:36675916,49800853 -(2539,1:36675916,49800853:1179648,16384,0 -r2539,503:37855564,49800853:1179648,16384,0 +g2536,1:36675916,49800853 +(2536,1:36675916,49800853:1179648,16384,0 +r2536,499:37855564,49800853:1179648,16384,0 ) ) -k2539,503:3078556,49800853:-34777008 +k2536,499:3078556,49800853:-34777008 ) ] -g2539,503:6630773,4812305 -g2539,503:6630773,4812305 -g2539,503:10190688,4812305 -g2539,503:12065017,4812305 -g2539,503:12880284,4812305 -g2539,503:13493701,4812305 -g2539,503:15751416,4812305 -k2539,503:31387652,4812305:15636236 +g2536,499:6630773,4812305 +g2536,499:6630773,4812305 +g2536,499:10190688,4812305 +g2536,499:12065017,4812305 +g2536,499:12880284,4812305 +g2536,499:13493701,4812305 +g2536,499:15751416,4812305 +k2536,499:31387652,4812305:15636236 ) ) ] -[2539,503:6630773,45706769:25952256,40108032,0 -(2539,503:6630773,45706769:25952256,40108032,0 -(2539,503:6630773,45706769:0,0,0 -g2539,503:6630773,45706769 +[2536,499:6630773,45706769:25952256,40108032,0 +(2536,499:6630773,45706769:25952256,40108032,0 +(2536,499:6630773,45706769:0,0,0 +g2536,499:6630773,45706769 ) -[2539,503:6630773,45706769:25952256,40108032,0 -(2539,503:6630773,45706769:25952256,40108032,126483 -[2539,503:6630773,45706769:11829248,40108032,102891 -(2539,401:6630773,6254097:11829248,505283,102891 -h2539,400:6630773,6254097:0,0,0 -k2539,400:15697023,6254097:198574 -k2539,400:17264644,6254097:198574 -k2539,401:18460021,6254097:0 -k2539,401:18460021,6254097:0 +[2536,499:6630773,45706769:25952256,40108032,0 +(2536,499:6630773,45706769:25952256,40108032,126483 +[2536,499:6630773,45706769:11829248,40108032,102891 +(2536,400:6630773,6254097:11829248,505283,102891 +h2536,399:6630773,6254097:0,0,0 +g2536,399:16488042,6254097 +k2536,399:18460021,6254097:602932 ) -(2539,402:6630773,7111764:11829248,505283,102891 -h2539,401:6630773,7111764:0,0,0 -g2539,401:16092860,7111764 -k2539,402:17874129,7111764:585892 -k2539,402:18460021,7111764:585892 -) -(2539,403:6630773,7969431:11829248,505283,134348 -h2539,402:6630773,7969431:0,0,0 -g2539,402:15697678,7969431 -k2539,403:17676538,7969431:783483 -k2539,403:18460021,7969431:783483 -) -(2539,404:6630773,8827097:11829248,505283,134348 -h2539,403:6630773,8827097:0,0,0 -g2539,403:16092860,8827097 -k2539,404:17874129,8827097:585892 -k2539,404:18460021,8827097:585892 -) -(2539,405:6630773,9684764:11829248,505283,134348 -h2539,404:6630773,9684764:0,0,0 -g2539,404:16092860,9684764 -k2539,405:17874129,9684764:585892 -k2539,405:18460021,9684764:585892 -) -(2539,406:6630773,10542431:11829248,505283,134348 -h2539,405:6630773,10542431:0,0,0 -g2539,405:14116950,10542431 -k2539,406:16886174,10542431:1573847 -k2539,406:18460021,10542431:1573847 -) -(2539,407:6630773,11400098:11829248,505283,102891 -h2539,406:6630773,11400098:0,0,0 -g2539,406:13721768,11400098 -k2539,407:16688583,11400098:1771438 -k2539,407:18460021,11400098:1771438 -) -(2539,408:6630773,12257764:11829248,505283,126483 -h2539,407:6630773,12257764:0,0,0 -k2539,407:15697023,12257764:198574 -k2539,407:17264644,12257764:198574 -k2539,408:18460021,12257764:0 -k2539,408:18460021,12257764:0 -) -(2539,409:6630773,13115431:11829248,505283,102891 -h2539,408:6630773,13115431:0,0,0 -g2539,408:16092860,13115431 -k2539,409:17874129,13115431:585892 -k2539,409:18460021,13115431:585892 -) -(2539,410:6630773,13973098:11829248,505283,102891 -h2539,409:6630773,13973098:0,0,0 -g2539,409:16092860,13973098 -k2539,410:17874129,13973098:585892 -k2539,410:18460021,13973098:585892 -) -(2539,411:6630773,14830765:11829248,513147,126483 -h2539,410:6630773,14830765:0,0,0 -g2539,410:15302496,14830765 -k2539,411:17478947,14830765:981074 -k2539,411:18460021,14830765:981074 -) -(2539,412:6630773,15688432:11829248,505283,102891 -h2539,411:6630773,15688432:0,0,0 -g2539,411:14907314,15688432 -k2539,412:17281356,15688432:1178665 -k2539,412:18460021,15688432:1178665 -) -(2539,413:6630773,16546098:11829248,505283,102891 -h2539,412:6630773,16546098:0,0,0 -g2539,412:14116950,16546098 -k2539,413:16886174,16546098:1573847 -k2539,413:18460021,16546098:1573847 -) -(2539,414:6630773,17403765:11829248,505283,134348 -h2539,413:6630773,17403765:0,0,0 -g2539,413:12931403,17403765 -k2539,414:16293401,17403765:2166621 -k2539,414:18460021,17403765:2166620 -) -(2539,415:6630773,18261432:11829248,505283,102891 -h2539,414:6630773,18261432:0,0,0 -g2539,414:13721768,18261432 -k2539,415:16688583,18261432:1771438 -k2539,415:18460021,18261432:1771438 -) -(2539,416:6630773,19119099:11829248,505283,126483 -h2539,415:6630773,19119099:0,0,0 -g2539,415:14907314,19119099 -k2539,416:17281356,19119099:1178665 -k2539,416:18460021,19119099:1178665 -) -(2539,417:6630773,19976766:11829248,505283,134348 -h2539,416:6630773,19976766:0,0,0 -g2539,416:12141039,19976766 -k2539,417:15898219,19976766:2561803 -k2539,417:18460021,19976766:2561802 -) -(2539,418:6630773,20834432:11829248,505283,134348 -h2539,417:6630773,20834432:0,0,0 -g2539,417:12931403,20834432 -k2539,418:16293401,20834432:2166621 -k2539,418:18460021,20834432:2166620 -) -(2539,419:6630773,21692099:11829248,505283,102891 -h2539,418:6630773,21692099:0,0,0 -g2539,418:8584400,21692099 -k2539,419:14119899,21692099:4340122 -k2539,419:18460021,21692099:4340122 -) -(2539,420:6630773,22549766:11829248,505283,102891 -h2539,419:6630773,22549766:0,0,0 -g2539,419:10165129,22549766 -k2539,420:14910264,22549766:3549758 -k2539,420:18460021,22549766:3549757 -) -(2539,421:6630773,23407433:11829248,505283,102891 -h2539,420:6630773,23407433:0,0,0 -g2539,420:8979582,23407433 -k2539,421:14317490,23407433:4142531 -k2539,421:18460021,23407433:4142531 -) -(2539,422:6630773,24265099:11829248,505283,134348 -h2539,421:6630773,24265099:0,0,0 -g2539,421:11350675,24265099 -k2539,422:15503037,24265099:2956985 -k2539,422:18460021,24265099:2956984 -) -(2539,423:6630773,25122766:11829248,505283,126483 -h2539,422:6630773,25122766:0,0,0 -g2539,422:8979582,25122766 -k2539,423:14118261,25122766:4341761 -k2539,423:18460021,25122766:4341760 -) -(2539,424:6630773,25980433:11829248,505283,102891 -h2539,423:6630773,25980433:0,0,0 -g2539,423:10955493,25980433 -k2539,424:15305446,25980433:3154576 -k2539,424:18460021,25980433:3154575 -) -(2539,425:6630773,26838100:11829248,505283,102891 -h2539,424:6630773,26838100:0,0,0 -g2539,424:10560311,26838100 -k2539,425:15107855,26838100:3352167 -k2539,425:18460021,26838100:3352166 -) -(2539,426:6630773,27695767:11829248,505283,102891 -h2539,425:6630773,27695767:0,0,0 -g2539,425:9769947,27695767 -k2539,426:14712673,27695767:3747349 -k2539,426:18460021,27695767:3747348 -) -(2539,427:6630773,28553433:11829248,505283,102891 -h2539,426:6630773,28553433:0,0,0 -g2539,426:9769947,28553433 -k2539,427:14712673,28553433:3747349 -k2539,427:18460021,28553433:3747348 -) -(2539,428:6630773,29411100:11829248,513147,134348 -h2539,427:6630773,29411100:0,0,0 -g2539,427:10165129,29411100 -k2539,428:14711034,29411100:3748987 -k2539,428:18460021,29411100:3748987 -) -(2539,429:6630773,30268767:11829248,505283,102891 -h2539,428:6630773,30268767:0,0,0 -g2539,428:8979582,30268767 -g2539,428:10149399,30268767 -k2539,429:14703169,30268767:3756852 -k2539,429:18460021,30268767:3756852 -) -(2539,430:6630773,31126434:11829248,505283,102891 -h2539,429:6630773,31126434:0,0,0 -g2539,429:9769947,31126434 -k2539,430:14712673,31126434:3747349 -k2539,430:18460021,31126434:3747348 -) -(2539,431:6630773,31984100:11829248,505283,102891 -h2539,430:6630773,31984100:0,0,0 -g2539,430:9374765,31984100 -g2539,430:10544582,31984100 -g2539,430:11714399,31984100 -g2539,430:12884216,31984100 -k2539,431:16269807,31984100:2190214 -k2539,431:18460021,31984100:2190214 -) -(2539,432:6630773,32841767:11829248,505283,102891 -h2539,431:6630773,32841767:0,0,0 -g2539,431:10165129,32841767 -k2539,432:14711034,32841767:3748987 -k2539,432:18460021,32841767:3748987 -) -(2539,433:6630773,33699434:11829248,505283,126483 -h2539,432:6630773,33699434:0,0,0 -g2539,432:10165129,33699434 -k2539,433:14910264,33699434:3549758 -k2539,433:18460021,33699434:3549757 -) -(2539,434:6630773,34557101:11829248,513147,126483 -h2539,433:6630773,34557101:0,0,0 -g2539,433:10560311,34557101 -g2539,433:11730128,34557101 -g2539,433:12899945,34557101 -g2539,433:14468221,34557101 -k2539,434:17061810,34557101:1398212 -k2539,434:18460021,34557101:1398211 -) -(2539,435:6630773,35414768:11829248,505283,126483 -h2539,434:6630773,35414768:0,0,0 -g2539,434:9374765,35414768 -k2539,435:14315852,35414768:4144169 -k2539,435:18460021,35414768:4144169 -) -(2539,436:6630773,36272434:11829248,505283,102891 -h2539,435:6630773,36272434:0,0,0 -g2539,435:10955493,36272434 -g2539,435:12523769,36272434 -k2539,436:16089584,36272434:2370438 -k2539,436:18460021,36272434:2370437 -) -(2539,437:6630773,37130101:11829248,505283,102891 -h2539,436:6630773,37130101:0,0,0 -g2539,436:12141039,37130101 -k2539,437:15898219,37130101:2561803 -k2539,437:18460021,37130101:2561802 -) -(2539,438:6630773,37987768:11829248,505283,102891 -h2539,437:6630773,37987768:0,0,0 -g2539,437:10955493,37987768 -g2539,437:12523769,37987768 -g2539,437:14092045,37987768 -k2539,438:16873722,37987768:1586300 -k2539,438:18460021,37987768:1586299 -) -(2539,439:6630773,38845435:11829248,505283,102891 -h2539,438:6630773,38845435:0,0,0 -g2539,438:10955493,38845435 -k2539,439:15305446,38845435:3154576 -k2539,439:18460021,38845435:3154575 -) -(2539,440:6630773,39703102:11829248,505283,102891 -h2539,439:6630773,39703102:0,0,0 -g2539,439:11745857,39703102 -k2539,440:15700628,39703102:2759394 -k2539,440:18460021,39703102:2759393 -) -(2539,441:6630773,40560768:11829248,505283,102891 -h2539,440:6630773,40560768:0,0,0 -g2539,440:12536221,40560768 -k2539,441:16095810,40560768:2364212 -k2539,441:18460021,40560768:2364211 -) -(2539,442:6630773,41418435:11829248,505283,126483 -h2539,441:6630773,41418435:0,0,0 -g2539,441:12536221,41418435 -k2539,442:16095810,41418435:2364212 -k2539,442:18460021,41418435:2364211 -) -(2539,443:6630773,42276102:11829248,505283,102891 -h2539,442:6630773,42276102:0,0,0 -g2539,442:11745857,42276102 -g2539,442:13314133,42276102 -g2539,442:14882409,42276102 -k2539,443:17268904,42276102:1191118 -k2539,443:18460021,42276102:1191117 -) -(2539,444:6630773,43133769:11829248,505283,126483 -h2539,443:6630773,43133769:0,0,0 -g2539,443:12536221,43133769 -k2539,444:16095810,43133769:2364212 -k2539,444:18460021,43133769:2364211 -) -(2539,445:6630773,43991435:11829248,505283,126483 -h2539,444:6630773,43991435:0,0,0 -g2539,444:13721768,43991435 -k2539,445:16688583,43991435:1771438 -k2539,445:18460021,43991435:1771438 -) -(2539,446:6630773,44849102:11829248,513147,102891 -h2539,445:6630773,44849102:0,0,0 -g2539,445:12931403,44849102 -k2539,446:16293401,44849102:2166621 -k2539,446:18460021,44849102:2166620 -) -(2539,447:6630773,45706769:11829248,513147,102891 -h2539,446:6630773,45706769:0,0,0 -g2539,446:10560311,45706769 -k2539,447:15107855,45706769:3352167 -k2539,447:18460021,45706769:3352166 -) -] -k2539,503:19606901,45706769:1146880 -r2539,503:19606901,45706769:0,40234515,126483 -k2539,503:20753781,45706769:1146880 -[2539,503:20753781,45706769:11829248,40108032,102891 -(2539,448:20753781,6254097:11829248,505283,102891 -h2539,447:20753781,6254097:0,0,0 -g2539,447:25473683,6254097 -k2539,448:29626045,6254097:2956985 -k2539,448:32583029,6254097:2956984 -) -(2539,449:20753781,7099188:11829248,505283,102891 -h2539,448:20753781,7099188:0,0,0 -g2539,448:26264047,7099188 -g2539,448:27832323,7099188 -k2539,449:30805365,7099188:1777665 -k2539,449:32583029,7099188:1777664 -) -(2539,450:20753781,7944278:11829248,505283,126483 -h2539,449:20753781,7944278:0,0,0 -g2539,449:26659229,7944278 -g2539,449:28227505,7944278 -g2539,449:29795781,7944278 -k2539,450:31787094,7944278:795936 -k2539,450:32583029,7944278:795935 -) -(2539,451:20753781,8789369:11829248,505283,102891 -h2539,450:20753781,8789369:0,0,0 -g2539,450:23102590,8789369 -g2539,450:24670866,8789369 -k2539,451:29224636,8789369:3358393 -k2539,451:32583029,8789369:3358393 -) -(2539,452:20753781,9634459:11829248,505283,102891 -h2539,451:20753781,9634459:0,0,0 -g2539,451:23102590,9634459 -g2539,451:25397005,9634459 -g2539,451:26566822,9634459 -g2539,451:27736639,9634459 -g2539,451:29304915,9634459 -g2539,451:30873191,9634459 -k2539,451:32583029,9634459:340791 -) -(2539,452:23375221,10475947:9207808,485622,11795 -k2539,452:28576814,10475947:4006216 -k2539,452:32583029,10475947:4006215 -) -(2539,453:20753781,11321038:11829248,505283,102891 -h2539,452:20753781,11321038:0,0,0 -g2539,452:26264047,11321038 -k2539,453:30021227,11321038:2561803 -k2539,453:32583029,11321038:2561802 -) -(2539,454:20753781,12166128:11829248,513147,102891 -h2539,453:20753781,12166128:0,0,0 -g2539,453:25078501,12166128 -k2539,454:29428454,12166128:3154576 -k2539,454:32583029,12166128:3154575 -) -(2539,455:20753781,13011219:11829248,505283,126483 -h2539,454:20753781,13011219:0,0,0 -g2539,454:25078501,13011219 -k2539,455:29428454,13011219:3154576 -k2539,455:32583029,13011219:3154575 -) -(2539,456:20753781,13856309:11829248,505283,102891 -h2539,455:20753781,13856309:0,0,0 -g2539,455:24288137,13856309 -g2539,455:25457954,13856309 -g2539,455:26627771,13856309 -g2539,455:28196047,13856309 -k2539,456:30987227,13856309:1595803 -k2539,456:32583029,13856309:1595802 -) -(2539,457:20753781,14701400:11829248,505283,102891 -h2539,456:20753781,14701400:0,0,0 -g2539,456:25868865,14701400 -k2539,457:29823636,14701400:2759394 -k2539,457:32583029,14701400:2759393 -) -(2539,458:20753781,15546490:11829248,505283,102891 -h2539,457:20753781,15546490:0,0,0 -g2539,457:23102590,15546490 -k2539,458:28440498,15546490:4142531 -k2539,458:32583029,15546490:4142531 -) -(2539,459:20753781,16391581:11829248,505283,102891 -h2539,458:20753781,16391581:0,0,0 -g2539,458:25473683,16391581 -k2539,459:29626045,16391581:2956985 -k2539,459:32583029,16391581:2956984 -) -(2539,460:20753781,17236671:11829248,505283,126483 -h2539,459:20753781,17236671:0,0,0 -g2539,459:24683319,17236671 -g2539,459:25853136,17236671 -g2539,459:27022953,17236671 -g2539,459:28591229,17236671 -g2539,459:30159505,17236671 -k2539,459:32583029,17236671:1054477 -) -(2539,460:23375221,18078159:9207808,485622,102891 -g2539,459:24943497,18078159 -k2539,460:29360952,18078159:3222078 -k2539,460:32583029,18078159:3222077 -) -(2539,461:20753781,18923250:11829248,505283,102891 -h2539,460:20753781,18923250:0,0,0 -g2539,460:24288137,18923250 -g2539,460:25457954,18923250 -k2539,461:29418951,18923250:3164079 -k2539,461:32583029,18923250:3164078 -) -(2539,462:20753781,19768340:11829248,505283,126483 -h2539,461:20753781,19768340:0,0,0 -g2539,461:24288137,19768340 -k2539,462:29033272,19768340:3549758 -k2539,462:32583029,19768340:3549757 -) -(2539,463:20753781,20613431:11829248,505283,126483 -h2539,462:20753781,20613431:0,0,0 -g2539,462:26264047,20613431 -g2539,462:27832323,20613431 -k2539,463:30805365,20613431:1777665 -k2539,463:32583029,20613431:1777664 -) -(2539,467:20753781,22173923:11829248,505283,102891 -h2539,466:20753781,22173923:0,0,0 -g2539,466:22312226,22173923 -g2539,466:23482043,22173923 -k2539,467:28630225,22173923:3952805 -k2539,467:32583029,22173923:3952804 -) -(2539,468:20753781,23019014:11829248,505283,102891 -h2539,467:20753781,23019014:0,0,0 -g2539,467:23497773,23019014 -g2539,467:24667590,23019014 -k2539,468:29023769,23019014:3559261 -k2539,468:32583029,23019014:3559260 -) -(2539,469:20753781,23864104:11829248,505283,102891 -h2539,468:20753781,23864104:0,0,0 -g2539,468:22312226,23864104 -k2539,469:28045316,23864104:4537713 -k2539,469:32583029,23864104:4537713 -) -(2539,470:20753781,24709195:11829248,513147,102891 -h2539,469:20753781,24709195:0,0,0 -g2539,469:23497773,24709195 -k2539,470:28638090,24709195:3944940 -k2539,470:32583029,24709195:3944939 -) -(2539,471:20753781,25554285:11829248,505283,102891 -h2539,470:20753781,25554285:0,0,0 -g2539,470:23892955,25554285 -g2539,470:25461231,25554285 -k2539,471:29619819,25554285:2963211 -k2539,471:32583029,25554285:2963210 -) -(2539,472:20753781,26399376:11829248,505283,102891 -h2539,471:20753781,26399376:0,0,0 -g2539,471:25078501,26399376 -k2539,472:29428454,26399376:3154576 -k2539,472:32583029,26399376:3154575 -) -(2539,473:20753781,27244466:11829248,505283,102891 -h2539,472:20753781,27244466:0,0,0 -g2539,472:27054411,27244466 -k2539,473:30416409,27244466:2166621 -k2539,473:32583029,27244466:2166620 -) -(2539,474:20753781,28089557:11829248,505283,102891 -h2539,473:20753781,28089557:0,0,0 -g2539,473:25868865,28089557 -k2539,474:29823636,28089557:2759394 -k2539,474:32583029,28089557:2759393 -) -(2539,475:20753781,28934647:11829248,505283,134348 -h2539,474:20753781,28934647:0,0,0 -g2539,474:25868865,28934647 -g2539,474:27437141,28934647 -g2539,474:29005417,28934647 -k2539,475:31391912,28934647:1191118 -k2539,475:32583029,28934647:1191117 -) -(2539,476:20753781,29779738:11829248,505283,134348 -h2539,475:20753781,29779738:0,0,0 -g2539,475:26264047,29779738 -k2539,476:30021227,29779738:2561803 -k2539,476:32583029,29779738:2561802 -) -(2539,477:20753781,30624828:11829248,505283,102891 -h2539,476:20753781,30624828:0,0,0 -g2539,476:27449594,30624828 -k2539,477:30614000,30624828:1969029 -k2539,477:32583029,30624828:1969029 -) -(2539,478:20753781,31469919:11829248,505283,102891 -h2539,477:20753781,31469919:0,0,0 -g2539,477:27054411,31469919 -k2539,478:30416409,31469919:2166621 -k2539,478:32583029,31469919:2166620 -) -(2539,479:20753781,32315009:11829248,505283,102891 -h2539,478:20753781,32315009:0,0,0 -g2539,478:25473683,32315009 -k2539,479:29626045,32315009:2956985 -k2539,479:32583029,32315009:2956984 -) -(2539,480:20753781,33160100:11829248,505283,102891 -h2539,479:20753781,33160100:0,0,0 -g2539,479:25868865,33160100 -k2539,480:29823636,33160100:2759394 -k2539,480:32583029,33160100:2759393 -) -(2539,481:20753781,34005191:11829248,505283,102891 -h2539,480:20753781,34005191:0,0,0 -g2539,480:23497773,34005191 -g2539,480:25066049,34005191 -g2539,480:26634325,34005191 -g2539,480:28202601,34005191 -g2539,480:29770877,34005191 -g2539,480:31339153,34005191 -k2539,481:32558780,34005191:24250 -k2539,481:32583029,34005191:24249 -) -(2539,482:20753781,34850281:11829248,505283,102891 -h2539,481:20753781,34850281:0,0,0 -g2539,481:24288137,34850281 -g2539,481:25856413,34850281 -g2539,481:27424689,34850281 -g2539,481:28992965,34850281 -k2539,482:31385686,34850281:1197344 -k2539,482:32583029,34850281:1197343 -) -(2539,483:20753781,35695372:11829248,505283,102891 -h2539,482:20753781,35695372:0,0,0 -g2539,482:24683319,35695372 -k2539,483:29230863,35695372:3352167 -k2539,483:32583029,35695372:3352166 -) -(2539,484:20753781,36540462:11829248,513147,102891 -h2539,483:20753781,36540462:0,0,0 -k2539,483:31387652,36540462:185467 -k2539,484:32583029,36540462:0 -k2539,484:32583029,36540462:0 -) -(2539,485:20753781,37385553:11829248,505283,126483 -h2539,484:20753781,37385553:0,0,0 -g2539,484:24683319,37385553 -k2539,485:29230863,37385553:3352167 -k2539,485:32583029,37385553:3352166 -) -(2539,486:20753781,38230643:11829248,505283,102891 -h2539,485:20753781,38230643:0,0,0 -g2539,485:25473683,38230643 -g2539,485:27041959,38230643 -k2539,486:30410183,38230643:2172847 -k2539,486:32583029,38230643:2172846 -) -(2539,487:20753781,39075734:11829248,505283,102891 -h2539,486:20753781,39075734:0,0,0 -g2539,486:23892955,39075734 -k2539,487:28835681,39075734:3747349 -k2539,487:32583029,39075734:3747348 -) -(2539,488:20753781,39920824:11829248,485622,102891 -h2539,487:20753781,39920824:0,0,0 -g2539,487:22707408,39920824 -k2539,488:28043678,39920824:4539352 -k2539,488:32583029,39920824:4539351 -) -(2539,489:20753781,40765915:11829248,505283,102891 -h2539,488:20753781,40765915:0,0,0 -g2539,488:23892955,40765915 -g2539,488:25062772,40765915 -k2539,489:29221360,40765915:3361670 -k2539,489:32583029,40765915:3361669 -) -(2539,490:20753781,41611005:11829248,505283,102891 -h2539,489:20753781,41611005:0,0,0 -g2539,489:22707408,41611005 -k2539,490:28242907,41611005:4340122 -k2539,490:32583029,41611005:4340122 -) -(2539,491:20753781,42456096:11829248,513147,126483 -h2539,490:20753781,42456096:0,0,0 -g2539,490:24288137,42456096 -k2539,491:28834042,42456096:3748987 -k2539,491:32583029,42456096:3748987 -) -(2539,495:20753781,44016588:11829248,505283,134348 -h2539,494:20753781,44016588:0,0,0 -g2539,494:24683319,44016588 -g2539,494:26251595,44016588 -k2539,495:30015001,44016588:2568029 -k2539,495:32583029,44016588:2568028 -) -(2539,496:20753781,44861678:11829248,505283,126483 -h2539,495:20753781,44861678:0,0,0 -g2539,495:24288137,44861678 -k2539,496:28834042,44861678:3748987 -k2539,496:32583029,44861678:3748987 -) -(2539,497:20753781,45706769:11829248,505283,102891 -h2539,496:20753781,45706769:0,0,0 -g2539,496:24288137,45706769 -k2539,497:28834042,45706769:3748987 -k2539,497:32583029,45706769:3748987 -) -] -(2539,503:32583029,45706769:0,355205,126483 -h2539,503:32583029,45706769:420741,355205,126483 -k2539,503:32583029,45706769:-420741 -) -) -] -(2539,503:32583029,45706769:0,0,0 -g2539,503:32583029,45706769 -) -) -] -(2539,503:6630773,47279633:25952256,0,0 -h2539,503:6630773,47279633:25952256,0,0 -) -] -h2539,503:4262630,4025873:0,0,0 -] -!22439 -}358 +(2536,400:9252213,7095585:9207808,485622,11795 +k2536,400:14453806,7095585:4006216 +k2536,400:18460021,7095585:4006215 +) +(2536,401:6630773,7953611:11829248,505283,102891 +h2536,400:6630773,7953611:0,0,0 +g2536,400:14116950,7953611 +k2536,401:16886174,7953611:1573847 +k2536,401:18460021,7953611:1573847 +) +(2536,402:6630773,8811638:11829248,505283,102891 +h2536,401:6630773,8811638:0,0,0 +g2536,401:15697678,8811638 +k2536,402:17676538,8811638:783483 +k2536,402:18460021,8811638:783483 +) +(2536,403:6630773,9669664:11829248,505283,102891 +h2536,402:6630773,9669664:0,0,0 +k2536,402:15697023,9669664:198574 +k2536,402:17264644,9669664:198574 +k2536,403:18460021,9669664:0 +k2536,403:18460021,9669664:0 +) +(2536,404:6630773,10527690:11829248,505283,102891 +h2536,403:6630773,10527690:0,0,0 +g2536,403:16092860,10527690 +k2536,404:17874129,10527690:585892 +k2536,404:18460021,10527690:585892 +) +(2536,405:6630773,11385717:11829248,505283,134348 +h2536,404:6630773,11385717:0,0,0 +g2536,404:15697678,11385717 +k2536,405:17676538,11385717:783483 +k2536,405:18460021,11385717:783483 +) +(2536,406:6630773,12243743:11829248,505283,134348 +h2536,405:6630773,12243743:0,0,0 +g2536,405:16092860,12243743 +k2536,406:17874129,12243743:585892 +k2536,406:18460021,12243743:585892 +) +(2536,407:6630773,13101769:11829248,505283,134348 +h2536,406:6630773,13101769:0,0,0 +g2536,406:16092860,13101769 +k2536,407:17874129,13101769:585892 +k2536,407:18460021,13101769:585892 +) +(2536,408:6630773,13959796:11829248,505283,134348 +h2536,407:6630773,13959796:0,0,0 +g2536,407:14116950,13959796 +k2536,408:16886174,13959796:1573847 +k2536,408:18460021,13959796:1573847 +) +(2536,409:6630773,14817822:11829248,505283,102891 +h2536,408:6630773,14817822:0,0,0 +g2536,408:13721768,14817822 +k2536,409:16688583,14817822:1771438 +k2536,409:18460021,14817822:1771438 +) +(2536,410:6630773,15675848:11829248,505283,126483 +h2536,409:6630773,15675848:0,0,0 +k2536,409:15697023,15675848:198574 +k2536,409:17264644,15675848:198574 +k2536,410:18460021,15675848:0 +k2536,410:18460021,15675848:0 +) +(2536,411:6630773,16533874:11829248,505283,102891 +h2536,410:6630773,16533874:0,0,0 +g2536,410:16092860,16533874 +k2536,411:17874129,16533874:585892 +k2536,411:18460021,16533874:585892 +) +(2536,412:6630773,17391901:11829248,505283,102891 +h2536,411:6630773,17391901:0,0,0 +g2536,411:16092860,17391901 +k2536,412:17874129,17391901:585892 +k2536,412:18460021,17391901:585892 +) +(2536,413:6630773,18249927:11829248,513147,126483 +h2536,412:6630773,18249927:0,0,0 +g2536,412:15302496,18249927 +k2536,413:17478947,18249927:981074 +k2536,413:18460021,18249927:981074 +) +(2536,414:6630773,19107953:11829248,505283,102891 +h2536,413:6630773,19107953:0,0,0 +g2536,413:14907314,19107953 +k2536,414:17281356,19107953:1178665 +k2536,414:18460021,19107953:1178665 +) +(2536,415:6630773,19965980:11829248,505283,102891 +h2536,414:6630773,19965980:0,0,0 +g2536,414:14116950,19965980 +k2536,415:16886174,19965980:1573847 +k2536,415:18460021,19965980:1573847 +) +(2536,416:6630773,20824006:11829248,505283,134348 +h2536,415:6630773,20824006:0,0,0 +g2536,415:12931403,20824006 +k2536,416:16293401,20824006:2166621 +k2536,416:18460021,20824006:2166620 +) +(2536,417:6630773,21682032:11829248,505283,102891 +h2536,416:6630773,21682032:0,0,0 +g2536,416:13721768,21682032 +k2536,417:16688583,21682032:1771438 +k2536,417:18460021,21682032:1771438 +) +(2536,418:6630773,22540059:11829248,505283,126483 +h2536,417:6630773,22540059:0,0,0 +g2536,417:14907314,22540059 +k2536,418:17281356,22540059:1178665 +k2536,418:18460021,22540059:1178665 +) +(2536,419:6630773,23398085:11829248,505283,134348 +h2536,418:6630773,23398085:0,0,0 +g2536,418:12141039,23398085 +k2536,419:15898219,23398085:2561803 +k2536,419:18460021,23398085:2561802 +) +(2536,420:6630773,24256111:11829248,505283,134348 +h2536,419:6630773,24256111:0,0,0 +g2536,419:12931403,24256111 +k2536,420:16293401,24256111:2166621 +k2536,420:18460021,24256111:2166620 +) +(2536,421:6630773,25114138:11829248,505283,102891 +h2536,420:6630773,25114138:0,0,0 +g2536,420:8584400,25114138 +k2536,421:14119899,25114138:4340122 +k2536,421:18460021,25114138:4340122 +) +(2536,422:6630773,25972164:11829248,505283,102891 +h2536,421:6630773,25972164:0,0,0 +g2536,421:10165129,25972164 +k2536,422:14910264,25972164:3549758 +k2536,422:18460021,25972164:3549757 +) +(2536,423:6630773,26830190:11829248,505283,102891 +h2536,422:6630773,26830190:0,0,0 +g2536,422:8979582,26830190 +k2536,423:14317490,26830190:4142531 +k2536,423:18460021,26830190:4142531 +) +(2536,424:6630773,27688216:11829248,505283,134348 +h2536,423:6630773,27688216:0,0,0 +g2536,423:11350675,27688216 +k2536,424:15503037,27688216:2956985 +k2536,424:18460021,27688216:2956984 +) +(2536,425:6630773,28546243:11829248,505283,126483 +h2536,424:6630773,28546243:0,0,0 +g2536,424:8979582,28546243 +k2536,425:14118261,28546243:4341761 +k2536,425:18460021,28546243:4341760 +) +(2536,426:6630773,29404269:11829248,505283,102891 +h2536,425:6630773,29404269:0,0,0 +g2536,425:10955493,29404269 +k2536,426:15305446,29404269:3154576 +k2536,426:18460021,29404269:3154575 +) +(2536,427:6630773,30262295:11829248,505283,102891 +h2536,426:6630773,30262295:0,0,0 +g2536,426:10560311,30262295 +k2536,427:15107855,30262295:3352167 +k2536,427:18460021,30262295:3352166 +) +(2536,428:6630773,31120322:11829248,505283,102891 +h2536,427:6630773,31120322:0,0,0 +g2536,427:9769947,31120322 +k2536,428:14712673,31120322:3747349 +k2536,428:18460021,31120322:3747348 +) +(2536,429:6630773,31978348:11829248,505283,102891 +h2536,428:6630773,31978348:0,0,0 +g2536,428:9769947,31978348 +k2536,429:14712673,31978348:3747349 +k2536,429:18460021,31978348:3747348 +) +(2536,430:6630773,32836374:11829248,513147,134348 +h2536,429:6630773,32836374:0,0,0 +g2536,429:10165129,32836374 +k2536,430:14711034,32836374:3748987 +k2536,430:18460021,32836374:3748987 +) +(2536,431:6630773,33694401:11829248,505283,102891 +h2536,430:6630773,33694401:0,0,0 +g2536,430:8979582,33694401 +g2536,430:10149399,33694401 +k2536,431:14703169,33694401:3756852 +k2536,431:18460021,33694401:3756852 +) +(2536,432:6630773,34552427:11829248,505283,102891 +h2536,431:6630773,34552427:0,0,0 +g2536,431:9769947,34552427 +k2536,432:14712673,34552427:3747349 +k2536,432:18460021,34552427:3747348 +) +(2536,433:6630773,35410453:11829248,505283,102891 +h2536,432:6630773,35410453:0,0,0 +g2536,432:9374765,35410453 +g2536,432:10544582,35410453 +g2536,432:11714399,35410453 +g2536,432:12884216,35410453 +k2536,433:16269807,35410453:2190214 +k2536,433:18460021,35410453:2190214 +) +(2536,434:6630773,36268480:11829248,505283,102891 +h2536,433:6630773,36268480:0,0,0 +g2536,433:10165129,36268480 +k2536,434:14711034,36268480:3748987 +k2536,434:18460021,36268480:3748987 +) +(2536,435:6630773,37126506:11829248,505283,126483 +h2536,434:6630773,37126506:0,0,0 +g2536,434:10165129,37126506 +k2536,435:14910264,37126506:3549758 +k2536,435:18460021,37126506:3549757 +) +(2536,436:6630773,37984532:11829248,513147,126483 +h2536,435:6630773,37984532:0,0,0 +g2536,435:10560311,37984532 +g2536,435:11730128,37984532 +g2536,435:12899945,37984532 +g2536,435:14468221,37984532 +k2536,436:17061810,37984532:1398212 +k2536,436:18460021,37984532:1398211 +) +(2536,437:6630773,38842559:11829248,505283,126483 +h2536,436:6630773,38842559:0,0,0 +g2536,436:9374765,38842559 +k2536,437:14315852,38842559:4144169 +k2536,437:18460021,38842559:4144169 +) +(2536,438:6630773,39700585:11829248,505283,102891 +h2536,437:6630773,39700585:0,0,0 +g2536,437:10955493,39700585 +g2536,437:12523769,39700585 +k2536,438:16089584,39700585:2370438 +k2536,438:18460021,39700585:2370437 +) +(2536,439:6630773,40558611:11829248,505283,102891 +h2536,438:6630773,40558611:0,0,0 +g2536,438:12141039,40558611 +k2536,439:15898219,40558611:2561803 +k2536,439:18460021,40558611:2561802 +) +(2536,440:6630773,41416637:11829248,505283,102891 +h2536,439:6630773,41416637:0,0,0 +g2536,439:10955493,41416637 +g2536,439:12523769,41416637 +g2536,439:14092045,41416637 +k2536,440:16873722,41416637:1586300 +k2536,440:18460021,41416637:1586299 +) +(2536,441:6630773,42274664:11829248,505283,102891 +h2536,440:6630773,42274664:0,0,0 +g2536,440:10955493,42274664 +k2536,441:15305446,42274664:3154576 +k2536,441:18460021,42274664:3154575 +) +(2536,442:6630773,43132690:11829248,505283,102891 +h2536,441:6630773,43132690:0,0,0 +g2536,441:11745857,43132690 +k2536,442:15700628,43132690:2759394 +k2536,442:18460021,43132690:2759393 +) +(2536,443:6630773,43990716:11829248,505283,102891 +h2536,442:6630773,43990716:0,0,0 +g2536,442:12536221,43990716 +k2536,443:16095810,43990716:2364212 +k2536,443:18460021,43990716:2364211 +) +(2536,444:6630773,44848743:11829248,505283,126483 +h2536,443:6630773,44848743:0,0,0 +g2536,443:12536221,44848743 +k2536,444:16095810,44848743:2364212 +k2536,444:18460021,44848743:2364211 +) +(2536,445:6630773,45706769:11829248,505283,102891 +h2536,444:6630773,45706769:0,0,0 +g2536,444:11745857,45706769 +g2536,444:13314133,45706769 +g2536,444:14882409,45706769 +k2536,445:17268904,45706769:1191118 +k2536,445:18460021,45706769:1191117 +) +] +k2536,499:19606901,45706769:1146880 +r2536,499:19606901,45706769:0,40234515,126483 +k2536,499:20753781,45706769:1146880 +[2536,499:20753781,45706769:11829248,40108032,126483 +(2536,446:20753781,6254097:11829248,505283,126483 +h2536,445:20753781,6254097:0,0,0 +g2536,445:26659229,6254097 +k2536,446:30218818,6254097:2364212 +k2536,446:32583029,6254097:2364211 +) +(2536,447:20753781,7097050:11829248,505283,126483 +h2536,446:20753781,7097050:0,0,0 +g2536,446:27844776,7097050 +k2536,447:30811591,7097050:1771438 +k2536,447:32583029,7097050:1771438 +) +(2536,448:20753781,7940003:11829248,513147,102891 +h2536,447:20753781,7940003:0,0,0 +g2536,447:27054411,7940003 +k2536,448:30416409,7940003:2166621 +k2536,448:32583029,7940003:2166620 +) +(2536,449:20753781,8782955:11829248,513147,102891 +h2536,448:20753781,8782955:0,0,0 +g2536,448:24683319,8782955 +k2536,449:29230863,8782955:3352167 +k2536,449:32583029,8782955:3352166 +) +(2536,450:20753781,9625908:11829248,505283,102891 +h2536,449:20753781,9625908:0,0,0 +g2536,449:25473683,9625908 +k2536,450:29626045,9625908:2956985 +k2536,450:32583029,9625908:2956984 +) +(2536,451:20753781,10468861:11829248,505283,102891 +h2536,450:20753781,10468861:0,0,0 +g2536,450:26264047,10468861 +g2536,450:27832323,10468861 +k2536,451:30805365,10468861:1777665 +k2536,451:32583029,10468861:1777664 +) +(2536,452:20753781,11311814:11829248,505283,126483 +h2536,451:20753781,11311814:0,0,0 +g2536,451:26659229,11311814 +g2536,451:28227505,11311814 +k2536,452:31764484,11311814:818546 +k2536,452:32583029,11311814:818545 +) +(2536,453:20753781,12154767:11829248,505283,102891 +h2536,452:20753781,12154767:0,0,0 +g2536,452:23102590,12154767 +g2536,452:24670866,12154767 +k2536,453:29224636,12154767:3358393 +k2536,453:32583029,12154767:3358393 +) +(2536,454:20753781,12997719:11829248,505283,102891 +h2536,453:20753781,12997719:0,0,0 +g2536,453:23102590,12997719 +g2536,453:25397005,12997719 +g2536,453:26566822,12997719 +g2536,453:27736639,12997719 +g2536,453:29304915,12997719 +g2536,453:30873191,12997719 +k2536,453:32583029,12997719:340791 +) +(2536,454:23375221,13839207:9207808,485622,11795 +k2536,454:28576814,13839207:4006216 +k2536,454:32583029,13839207:4006215 +) +(2536,455:20753781,14682160:11829248,505283,102891 +h2536,454:20753781,14682160:0,0,0 +g2536,454:26264047,14682160 +k2536,455:30021227,14682160:2561803 +k2536,455:32583029,14682160:2561802 +) +(2536,456:20753781,15525113:11829248,513147,102891 +h2536,455:20753781,15525113:0,0,0 +g2536,455:25078501,15525113 +k2536,456:29428454,15525113:3154576 +k2536,456:32583029,15525113:3154575 +) +(2536,457:20753781,16368066:11829248,505283,126483 +h2536,456:20753781,16368066:0,0,0 +g2536,456:25078501,16368066 +k2536,457:29428454,16368066:3154576 +k2536,457:32583029,16368066:3154575 +) +(2536,458:20753781,17211019:11829248,505283,102891 +h2536,457:20753781,17211019:0,0,0 +g2536,457:24288137,17211019 +g2536,457:25457954,17211019 +g2536,457:26627771,17211019 +g2536,457:28196047,17211019 +k2536,458:30987227,17211019:1595803 +k2536,458:32583029,17211019:1595802 +) +(2536,459:20753781,18053971:11829248,505283,102891 +h2536,458:20753781,18053971:0,0,0 +g2536,458:25868865,18053971 +k2536,459:29823636,18053971:2759394 +k2536,459:32583029,18053971:2759393 +) +(2536,460:20753781,18896924:11829248,505283,102891 +h2536,459:20753781,18896924:0,0,0 +g2536,459:23102590,18896924 +k2536,460:28440498,18896924:4142531 +k2536,460:32583029,18896924:4142531 +) +(2536,461:20753781,19739877:11829248,505283,102891 +h2536,460:20753781,19739877:0,0,0 +g2536,460:25473683,19739877 +k2536,461:29626045,19739877:2956985 +k2536,461:32583029,19739877:2956984 +) +(2536,462:20753781,20582830:11829248,505283,126483 +h2536,461:20753781,20582830:0,0,0 +g2536,461:24683319,20582830 +g2536,461:25853136,20582830 +g2536,461:27022953,20582830 +g2536,461:28591229,20582830 +g2536,461:30159505,20582830 +k2536,461:32583029,20582830:1054477 +) +(2536,462:23375221,21424318:9207808,485622,102891 +g2536,461:24943497,21424318 +k2536,462:29360952,21424318:3222078 +k2536,462:32583029,21424318:3222077 +) +(2536,463:20753781,22267271:11829248,505283,102891 +h2536,462:20753781,22267271:0,0,0 +g2536,462:24288137,22267271 +g2536,462:25457954,22267271 +k2536,463:29418951,22267271:3164079 +k2536,463:32583029,22267271:3164078 +) +(2536,464:20753781,23110223:11829248,505283,126483 +h2536,463:20753781,23110223:0,0,0 +g2536,463:24288137,23110223 +k2536,464:29033272,23110223:3549758 +k2536,464:32583029,23110223:3549757 +) +(2536,465:20753781,23953176:11829248,505283,126483 +h2536,464:20753781,23953176:0,0,0 +g2536,464:26264047,23953176 +g2536,464:27832323,23953176 +k2536,465:30805365,23953176:1777665 +k2536,465:32583029,23953176:1777664 +) +(2536,469:20753781,25475902:11829248,505283,102891 +h2536,468:20753781,25475902:0,0,0 +g2536,468:22312226,25475902 +g2536,468:23482043,25475902 +k2536,469:28630225,25475902:3952805 +k2536,469:32583029,25475902:3952804 +) +(2536,470:20753781,26318855:11829248,505283,102891 +h2536,469:20753781,26318855:0,0,0 +g2536,469:23497773,26318855 +g2536,469:24667590,26318855 +k2536,470:29023769,26318855:3559261 +k2536,470:32583029,26318855:3559260 +) +(2536,471:20753781,27161808:11829248,505283,102891 +h2536,470:20753781,27161808:0,0,0 +g2536,470:22312226,27161808 +k2536,471:28045316,27161808:4537713 +k2536,471:32583029,27161808:4537713 +) +(2536,472:20753781,28004760:11829248,513147,102891 +h2536,471:20753781,28004760:0,0,0 +g2536,471:23497773,28004760 +k2536,472:28638090,28004760:3944940 +k2536,472:32583029,28004760:3944939 +) +(2536,473:20753781,28847713:11829248,505283,102891 +h2536,472:20753781,28847713:0,0,0 +g2536,472:23892955,28847713 +g2536,472:25461231,28847713 +k2536,473:29619819,28847713:2963211 +k2536,473:32583029,28847713:2963210 +) +(2536,474:20753781,29690666:11829248,505283,102891 +h2536,473:20753781,29690666:0,0,0 +g2536,473:25078501,29690666 +k2536,474:29428454,29690666:3154576 +k2536,474:32583029,29690666:3154575 +) +(2536,475:20753781,30533619:11829248,505283,102891 +h2536,474:20753781,30533619:0,0,0 +g2536,474:27054411,30533619 +k2536,475:30416409,30533619:2166621 +k2536,475:32583029,30533619:2166620 +) +(2536,476:20753781,31376571:11829248,505283,102891 +h2536,475:20753781,31376571:0,0,0 +g2536,475:25868865,31376571 +k2536,476:29823636,31376571:2759394 +k2536,476:32583029,31376571:2759393 +) +(2536,477:20753781,32219524:11829248,505283,134348 +h2536,476:20753781,32219524:0,0,0 +g2536,476:25868865,32219524 +g2536,476:27437141,32219524 +g2536,476:29005417,32219524 +k2536,477:31391912,32219524:1191118 +k2536,477:32583029,32219524:1191117 +) +(2536,478:20753781,33062477:11829248,505283,134348 +h2536,477:20753781,33062477:0,0,0 +g2536,477:26264047,33062477 +k2536,478:30021227,33062477:2561803 +k2536,478:32583029,33062477:2561802 +) +(2536,479:20753781,33905430:11829248,505283,102891 +h2536,478:20753781,33905430:0,0,0 +g2536,478:27449594,33905430 +k2536,479:30614000,33905430:1969029 +k2536,479:32583029,33905430:1969029 +) +(2536,480:20753781,34748383:11829248,505283,102891 +h2536,479:20753781,34748383:0,0,0 +g2536,479:27054411,34748383 +k2536,480:30416409,34748383:2166621 +k2536,480:32583029,34748383:2166620 +) +(2536,481:20753781,35591335:11829248,505283,102891 +h2536,480:20753781,35591335:0,0,0 +g2536,480:25473683,35591335 +k2536,481:29626045,35591335:2956985 +k2536,481:32583029,35591335:2956984 +) +(2536,482:20753781,36434288:11829248,505283,102891 +h2536,481:20753781,36434288:0,0,0 +g2536,481:25868865,36434288 +k2536,482:29823636,36434288:2759394 +k2536,482:32583029,36434288:2759393 +) +(2536,483:20753781,37277241:11829248,505283,102891 +h2536,482:20753781,37277241:0,0,0 +g2536,482:23497773,37277241 +g2536,482:25066049,37277241 +g2536,482:26634325,37277241 +g2536,482:28202601,37277241 +g2536,482:29770877,37277241 +g2536,482:31339153,37277241 +k2536,483:32558780,37277241:24250 +k2536,483:32583029,37277241:24249 +) +(2536,484:20753781,38120194:11829248,505283,102891 +h2536,483:20753781,38120194:0,0,0 +g2536,483:24288137,38120194 +g2536,483:25856413,38120194 +g2536,483:27424689,38120194 +g2536,483:28992965,38120194 +k2536,484:31385686,38120194:1197344 +k2536,484:32583029,38120194:1197343 +) +(2536,485:20753781,38963147:11829248,505283,102891 +h2536,484:20753781,38963147:0,0,0 +g2536,484:24683319,38963147 +k2536,485:29230863,38963147:3352167 +k2536,485:32583029,38963147:3352166 +) +(2536,486:20753781,39806099:11829248,513147,102891 +h2536,485:20753781,39806099:0,0,0 +k2536,485:31387652,39806099:185467 +k2536,486:32583029,39806099:0 +k2536,486:32583029,39806099:0 +) +(2536,487:20753781,40649052:11829248,505283,126483 +h2536,486:20753781,40649052:0,0,0 +g2536,486:24683319,40649052 +k2536,487:29230863,40649052:3352167 +k2536,487:32583029,40649052:3352166 +) +(2536,488:20753781,41492005:11829248,505283,102891 +h2536,487:20753781,41492005:0,0,0 +g2536,487:25473683,41492005 +g2536,487:27041959,41492005 +k2536,488:30410183,41492005:2172847 +k2536,488:32583029,41492005:2172846 +) +(2536,489:20753781,42334958:11829248,505283,102891 +h2536,488:20753781,42334958:0,0,0 +g2536,488:23892955,42334958 +k2536,489:28835681,42334958:3747349 +k2536,489:32583029,42334958:3747348 +) +(2536,490:20753781,43177911:11829248,485622,102891 +h2536,489:20753781,43177911:0,0,0 +g2536,489:22707408,43177911 +k2536,490:28043678,43177911:4539352 +k2536,490:32583029,43177911:4539351 +) +(2536,491:20753781,44020863:11829248,505283,102891 +h2536,490:20753781,44020863:0,0,0 +g2536,490:23892955,44020863 +g2536,490:25062772,44020863 +k2536,491:29221360,44020863:3361670 +k2536,491:32583029,44020863:3361669 +) +(2536,492:20753781,44863816:11829248,505283,102891 +h2536,491:20753781,44863816:0,0,0 +g2536,491:22707408,44863816 +k2536,492:28242907,44863816:4340122 +k2536,492:32583029,44863816:4340122 +) +(2536,493:20753781,45706769:11829248,513147,126483 +h2536,492:20753781,45706769:0,0,0 +g2536,492:24288137,45706769 +k2536,493:28834042,45706769:3748987 +k2536,493:32583029,45706769:3748987 +) +] +(2536,499:32583029,45706769:0,355205,126483 +h2536,499:32583029,45706769:420741,355205,126483 +k2536,499:32583029,45706769:-420741 +) +) +] +(2536,499:32583029,45706769:0,0,0 +g2536,499:32583029,45706769 +) +) +] +(2536,499:6630773,47279633:25952256,0,0 +h2536,499:6630773,47279633:25952256,0,0 +) +] +h2536,499:4262630,4025873:0,0,0 +] +!22479 +}354 !12 -{359 -[1,17325:4262630,47279633:28320399,43253760,0 -(1,17325:4262630,4025873:0,0,0 -[1,17325:-473657,4025873:25952256,0,0 -(1,17325:-473657,-710414:25952256,0,0 -h1,17325:-473657,-710414:0,0,0 -(1,17325:-473657,-710414:0,0,0 -(1,17325:-473657,-710414:0,0,0 -g1,17325:-473657,-710414 -(1,17325:-473657,-710414:65781,0,65781 -g1,17325:-407876,-710414 -[1,17325:-407876,-644633:0,0,0 +{355 +[1,17358:4262630,47279633:28320399,43253760,0 +(1,17358:4262630,4025873:0,0,0 +[1,17358:-473657,4025873:25952256,0,0 +(1,17358:-473657,-710414:25952256,0,0 +h1,17358:-473657,-710414:0,0,0 +(1,17358:-473657,-710414:0,0,0 +(1,17358:-473657,-710414:0,0,0 +g1,17358:-473657,-710414 +(1,17358:-473657,-710414:65781,0,65781 +g1,17358:-407876,-710414 +[1,17358:-407876,-644633:0,0,0 ] ) -k1,17325:-473657,-710414:-65781 +k1,17358:-473657,-710414:-65781 ) ) -k1,17325:25478599,-710414:25952256 -g1,17325:25478599,-710414 +k1,17358:25478599,-710414:25952256 +g1,17358:25478599,-710414 ) ] ) -[1,17325:6630773,47279633:25952256,43253760,0 -[1,17325:6630773,4812305:25952256,786432,0 -(1,17325:6630773,4812305:25952256,513147,126483 -(1,17325:6630773,4812305:25952256,513147,126483 -g1,17325:3078558,4812305 -[1,17325:3078558,4812305:0,0,0 -(1,17325:3078558,2439708:0,1703936,0 -k1,17325:1358238,2439708:-1720320 -(1,15445:1358238,2439708:1720320,1703936,0 -(1,15445:1358238,2439708:1179648,16384,0 -r1,17325:2537886,2439708:1179648,16384,0 +[1,17358:6630773,47279633:25952256,43253760,0 +[1,17358:6630773,4812305:25952256,786432,0 +(1,17358:6630773,4812305:25952256,513147,126483 +(1,17358:6630773,4812305:25952256,513147,126483 +g1,17358:3078558,4812305 +[1,17358:3078558,4812305:0,0,0 +(1,17358:3078558,2439708:0,1703936,0 +k1,17358:1358238,2439708:-1720320 +(1,15476:1358238,2439708:1720320,1703936,0 +(1,15476:1358238,2439708:1179648,16384,0 +r1,17358:2537886,2439708:1179648,16384,0 ) -g1,15445:3062174,2439708 -(1,15445:3062174,2439708:16384,1703936,0 -[1,15445:3062174,2439708:25952256,1703936,0 -(1,15445:3062174,1915420:25952256,1179648,0 -(1,15445:3062174,1915420:16384,1179648,0 -r1,17325:3078558,1915420:16384,1179648,0 +g1,15476:3062174,2439708 +(1,15476:3062174,2439708:16384,1703936,0 +[1,15476:3062174,2439708:25952256,1703936,0 +(1,15476:3062174,1915420:25952256,1179648,0 +(1,15476:3062174,1915420:16384,1179648,0 +r1,17358:3078558,1915420:16384,1179648,0 ) -k1,15445:29014430,1915420:25935872 -g1,15445:29014430,1915420 +k1,15476:29014430,1915420:25935872 +g1,15476:29014430,1915420 ) ] ) ) ) ] -[1,17325:3078558,4812305:0,0,0 -(1,17325:3078558,2439708:0,1703936,0 -g1,17325:29030814,2439708 -g1,17325:36135244,2439708 -(1,15445:36135244,2439708:1720320,1703936,0 -(1,15445:36135244,2439708:16384,1703936,0 -[1,15445:36135244,2439708:25952256,1703936,0 -(1,15445:36135244,1915420:25952256,1179648,0 -(1,15445:36135244,1915420:16384,1179648,0 -r1,17325:36151628,1915420:16384,1179648,0 +[1,17358:3078558,4812305:0,0,0 +(1,17358:3078558,2439708:0,1703936,0 +g1,17358:29030814,2439708 +g1,17358:36135244,2439708 +(1,15476:36135244,2439708:1720320,1703936,0 +(1,15476:36135244,2439708:16384,1703936,0 +[1,15476:36135244,2439708:25952256,1703936,0 +(1,15476:36135244,1915420:25952256,1179648,0 +(1,15476:36135244,1915420:16384,1179648,0 +r1,17358:36151628,1915420:16384,1179648,0 ) -k1,15445:62087500,1915420:25935872 -g1,15445:62087500,1915420 +k1,15476:62087500,1915420:25935872 +g1,15476:62087500,1915420 ) ] ) -g1,15445:36675916,2439708 -(1,15445:36675916,2439708:1179648,16384,0 -r1,17325:37855564,2439708:1179648,16384,0 +g1,15476:36675916,2439708 +(1,15476:36675916,2439708:1179648,16384,0 +r1,17358:37855564,2439708:1179648,16384,0 ) ) -k1,17325:3078556,2439708:-34777008 +k1,17358:3078556,2439708:-34777008 ) ] -[1,17325:3078558,4812305:0,0,0 -(1,17325:3078558,49800853:0,16384,2228224 -k1,17325:1358238,49800853:-1720320 -(1,15445:1358238,49800853:1720320,16384,2228224 -(1,15445:1358238,49800853:1179648,16384,0 -r1,17325:2537886,49800853:1179648,16384,0 +[1,17358:3078558,4812305:0,0,0 +(1,17358:3078558,49800853:0,16384,2228224 +k1,17358:1358238,49800853:-1720320 +(1,15476:1358238,49800853:1720320,16384,2228224 +(1,15476:1358238,49800853:1179648,16384,0 +r1,17358:2537886,49800853:1179648,16384,0 ) -g1,15445:3062174,49800853 -(1,15445:3062174,52029077:16384,1703936,0 -[1,15445:3062174,52029077:25952256,1703936,0 -(1,15445:3062174,51504789:25952256,1179648,0 -(1,15445:3062174,51504789:16384,1179648,0 -r1,17325:3078558,51504789:16384,1179648,0 +g1,15476:3062174,49800853 +(1,15476:3062174,52029077:16384,1703936,0 +[1,15476:3062174,52029077:25952256,1703936,0 +(1,15476:3062174,51504789:25952256,1179648,0 +(1,15476:3062174,51504789:16384,1179648,0 +r1,17358:3078558,51504789:16384,1179648,0 ) -k1,15445:29014430,51504789:25935872 -g1,15445:29014430,51504789 +k1,15476:29014430,51504789:25935872 +g1,15476:29014430,51504789 ) ] ) ) ) ] -[1,17325:3078558,4812305:0,0,0 -(1,17325:3078558,49800853:0,16384,2228224 -g1,17325:29030814,49800853 -g1,17325:36135244,49800853 -(1,15445:36135244,49800853:1720320,16384,2228224 -(1,15445:36135244,52029077:16384,1703936,0 -[1,15445:36135244,52029077:25952256,1703936,0 -(1,15445:36135244,51504789:25952256,1179648,0 -(1,15445:36135244,51504789:16384,1179648,0 -r1,17325:36151628,51504789:16384,1179648,0 +[1,17358:3078558,4812305:0,0,0 +(1,17358:3078558,49800853:0,16384,2228224 +g1,17358:29030814,49800853 +g1,17358:36135244,49800853 +(1,15476:36135244,49800853:1720320,16384,2228224 +(1,15476:36135244,52029077:16384,1703936,0 +[1,15476:36135244,52029077:25952256,1703936,0 +(1,15476:36135244,51504789:25952256,1179648,0 +(1,15476:36135244,51504789:16384,1179648,0 +r1,17358:36151628,51504789:16384,1179648,0 ) -k1,15445:62087500,51504789:25935872 -g1,15445:62087500,51504789 +k1,15476:62087500,51504789:25935872 +g1,15476:62087500,51504789 ) ] ) -g1,15445:36675916,49800853 -(1,15445:36675916,49800853:1179648,16384,0 -r1,17325:37855564,49800853:1179648,16384,0 +g1,15476:36675916,49800853 +(1,15476:36675916,49800853:1179648,16384,0 +r1,17358:37855564,49800853:1179648,16384,0 ) ) -k1,17325:3078556,49800853:-34777008 +k1,17358:3078556,49800853:-34777008 ) ] -g1,17325:6630773,4812305 -k1,17325:23661615,4812305:15835465 -g1,17325:27221530,4812305 -g1,17325:29095859,4812305 -g1,17325:29911126,4812305 -g1,17325:30524543,4812305 -) +g1,17358:6630773,4812305 +k1,17358:23661615,4812305:15835465 +g1,17358:27221530,4812305 +g1,17358:29095859,4812305 +g1,17358:29911126,4812305 +g1,17358:30524543,4812305 +) ) ] -[1,17325:6630773,45706769:25952256,40108032,0 -(1,17325:6630773,45706769:25952256,40108032,0 -(1,17325:6630773,45706769:0,0,0 -g1,17325:6630773,45706769 +[1,17358:6630773,45706769:25952256,40108032,0 +(1,17358:6630773,45706769:25952256,40108032,0 +(1,17358:6630773,45706769:0,0,0 +g1,17358:6630773,45706769 ) -[1,17325:6630773,45706769:25952256,40108032,0 -(2539,540:6630773,19345649:25952256,13746912,126483 -[2539,540:6630773,19345649:11829248,13746912,102891 -(2539,498:6630773,6254097:11829248,505283,102891 -h2539,497:6630773,6254097:0,0,0 -g2539,497:10165129,6254097 -g2539,497:11334946,6254097 -g2539,497:12504763,6254097 -k2539,498:15880851,6254097:2579170 -k2539,498:18460021,6254097:2579170 +[1,17358:6630773,45706769:25952256,40108032,0 +(2536,542:6630773,20842497:25952256,15243760,126483 +[2536,542:6630773,20842497:11829248,15243760,102891 +(2536,497:6630773,6254097:11829248,505283,134348 +h2536,496:6630773,6254097:0,0,0 +g2536,496:10560311,6254097 +g2536,496:12128587,6254097 +k2536,497:15891993,6254097:2568029 +k2536,497:18460021,6254097:2568028 ) -(2539,499:6630773,7095585:11829248,505283,102891 -h2539,498:6630773,7095585:0,0,0 -g2539,498:10165129,7095585 -k2539,499:14711034,7095585:3748987 -k2539,499:18460021,7095585:3748987 -) -(2539,500:6630773,7937073:11829248,505283,126483 -h2539,499:6630773,7937073:0,0,0 -g2539,499:10165129,7937073 -k2539,500:14910264,7937073:3549758 -k2539,500:18460021,7937073:3549757 -) -(2539,501:6630773,8778561:11829248,505283,134348 -h2539,500:6630773,8778561:0,0,0 -g2539,500:13721768,8778561 -k2539,501:16688583,8778561:1771438 -k2539,501:18460021,8778561:1771438 -) -(2539,505:6630773,10275409:11829248,505283,126483 -h2539,504:6630773,10275409:0,0,0 -g2539,504:10165129,10275409 -g2539,504:11334946,10275409 -k2539,505:16256700,10275409:2203321 -k2539,505:18460021,10275409:2203321 -) -(2539,506:6630773,11116897:11829248,505283,102891 -h2539,505:6630773,11116897:0,0,0 -g2539,505:8979582,11116897 -g2539,505:10547858,11116897 -k2539,506:15101628,11116897:3358393 -k2539,506:18460021,11116897:3358393 -) -(2539,507:6630773,11958385:11829248,505283,102891 -h2539,506:6630773,11958385:0,0,0 -g2539,506:9374765,11958385 -k2539,507:14515082,11958385:3944940 -k2539,507:18460021,11958385:3944939 -) -(2539,508:6630773,12799873:11829248,485622,102891 -h2539,507:6630773,12799873:0,0,0 -g2539,507:9374765,12799873 -k2539,508:14315852,12799873:4144169 -k2539,508:18460021,12799873:4144169 -) -(2539,512:6630773,14296721:11829248,505283,102891 -h2539,511:6630773,14296721:0,0,0 -g2539,511:8979582,14296721 -g2539,511:10547858,14296721 -k2539,512:15863156,14296721:2596865 -k2539,512:18460021,14296721:2596865 -) -(2539,513:6630773,15138209:11829248,505283,102891 -h2539,512:6630773,15138209:0,0,0 -g2539,512:9374765,15138209 -k2539,513:14878151,15138209:3581870 -k2539,513:18460021,15138209:3581870 -) -(2539,514:6630773,15979697:11829248,505283,102891 -h2539,513:6630773,15979697:0,0,0 -g2539,513:10165129,15979697 -g2539,513:11334946,15979697 -k2539,514:15295943,15979697:3164079 -k2539,514:18460021,15979697:3164078 -) -(2539,515:6630773,16821185:11829248,505283,102891 -h2539,514:6630773,16821185:0,0,0 -g2539,514:11350675,16821185 -g2539,514:12918951,16821185 -k2539,515:16287175,16821185:2172847 -k2539,515:18460021,16821185:2172846 -) -(2539,516:6630773,17662673:11829248,505283,102891 -h2539,515:6630773,17662673:0,0,0 -g2539,515:10955493,17662673 -k2539,516:15305446,17662673:3154576 -k2539,516:18460021,17662673:3154575 -) -(2539,517:6630773,18504161:11829248,505283,102891 -h2539,516:6630773,18504161:0,0,0 -g2539,516:11745857,18504161 -k2539,517:15700628,18504161:2759394 -k2539,517:18460021,18504161:2759393 -) -(2539,518:6630773,19345649:11829248,505283,102891 -h2539,517:6630773,19345649:0,0,0 -g2539,517:12141039,19345649 -k2539,518:15898219,19345649:2561803 -k2539,518:18460021,19345649:2561802 -) -] -k2539,540:19606901,19345649:1146880 -r2539,540:19606901,19345649:0,13873395,126483 -k2539,540:20753781,19345649:1146880 -[2539,540:20753781,19345649:11829248,13746912,126483 -(2539,519:20753781,6254097:11829248,505283,102891 -h2539,518:20753781,6254097:0,0,0 -g2539,518:25868865,6254097 -k2539,519:29823636,6254097:2759394 -k2539,519:32583029,6254097:2759393 -) -(2539,520:20753781,7095585:11829248,505283,102891 -h2539,519:20753781,7095585:0,0,0 -g2539,519:25473683,7095585 -k2539,520:29626045,7095585:2956985 -k2539,520:32583029,7095585:2956984 -) -(2539,521:20753781,7937073:11829248,505283,102891 -h2539,520:20753781,7937073:0,0,0 -g2539,520:25868865,7937073 -k2539,521:29823636,7937073:2759394 -k2539,521:32583029,7937073:2759393 -) -(2539,522:20753781,8778561:11829248,505283,102891 -h2539,521:20753781,8778561:0,0,0 -g2539,521:26264047,8778561 -k2539,522:30021227,8778561:2561803 -k2539,522:32583029,8778561:2561802 -) -(2539,523:20753781,9620049:11829248,505283,102891 -h2539,522:20753781,9620049:0,0,0 -g2539,522:27844776,9620049 -k2539,523:30811591,9620049:1771438 -k2539,523:32583029,9620049:1771438 -) -(2539,524:20753781,10461537:11829248,513147,102891 -h2539,523:20753781,10461537:0,0,0 -g2539,523:25868865,10461537 -g2539,523:27437141,10461537 -k2539,524:30607774,10461537:1975256 -k2539,524:32583029,10461537:1975255 -) -(2539,525:20753781,11303025:11829248,505283,102891 -h2539,524:20753781,11303025:0,0,0 -g2539,524:26264047,11303025 -k2539,525:30021227,11303025:2561803 -k2539,525:32583029,11303025:2561802 -) -(2539,526:20753781,12144513:11829248,505283,102891 -h2539,525:20753781,12144513:0,0,0 -g2539,525:25473683,12144513 -k2539,526:29626045,12144513:2956985 -k2539,526:32583029,12144513:2956984 -) -(2539,527:20753781,12986001:11829248,505283,102891 -h2539,526:20753781,12986001:0,0,0 -g2539,526:25473683,12986001 -k2539,527:29626045,12986001:2956985 -k2539,527:32583029,12986001:2956984 -) -(2539,531:20753781,14482849:11829248,505283,102891 -h2539,530:20753781,14482849:0,0,0 -g2539,530:23497773,14482849 -k2539,531:28638090,14482849:3944940 -k2539,531:32583029,14482849:3944939 -) -(2539,532:20753781,15324337:11829248,505283,102891 -h2539,531:20753781,15324337:0,0,0 -g2539,531:23497773,15324337 -g2539,531:25066049,15324337 -g2539,531:26634325,15324337 -k2539,532:30206366,15324337:2376664 -k2539,532:32583029,15324337:2376663 -) -(2539,533:20753781,16165825:11829248,513147,102891 -h2539,532:20753781,16165825:0,0,0 -g2539,532:26659229,16165825 -k2539,533:30218818,16165825:2364212 -k2539,533:32583029,16165825:2364211 -) -(2539,534:20753781,17007313:11829248,505283,102891 -h2539,533:20753781,17007313:0,0,0 -g2539,533:25078501,17007313 -k2539,534:29428454,17007313:3154576 -k2539,534:32583029,17007313:3154575 -) -(2539,538:20753781,18504161:11829248,505283,126483 -h2539,537:20753781,18504161:0,0,0 -g2539,537:23497773,18504161 -k2539,538:28638090,18504161:3944940 -k2539,538:32583029,18504161:3944939 -) -(2539,539:20753781,19345649:11829248,505283,126483 -h2539,538:20753781,19345649:0,0,0 -g2539,538:23497773,19345649 -g2539,538:25066049,19345649 -g2539,538:26634325,19345649 -k2539,539:30206366,19345649:2376664 -k2539,539:32583029,19345649:2376663 -) -] -(2539,540:32583029,19345649:0,355205,126483 -h2539,540:32583029,19345649:420741,355205,126483 -k2539,540:32583029,19345649:-420741 -) -) -] -(1,17325:32583029,45706769:0,0,0 -g1,17325:32583029,45706769 -) -) -] -(1,17325:6630773,47279633:25952256,0,0 -h1,17325:6630773,47279633:25952256,0,0 -) -] -h1,17325:4262630,4025873:0,0,0 -] -!9847 -}359 -Input:2540:D:\aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.aux -Input:2541:D:\aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.aux -!178 +(2536,498:6630773,7095585:11829248,505283,126483 +h2536,497:6630773,7095585:0,0,0 +g2536,497:10165129,7095585 +k2536,498:14711034,7095585:3748987 +k2536,498:18460021,7095585:3748987 +) +(2536,499:6630773,7937073:11829248,505283,102891 +h2536,498:6630773,7937073:0,0,0 +g2536,498:10165129,7937073 +k2536,499:14711034,7937073:3748987 +k2536,499:18460021,7937073:3748987 +) +(2536,500:6630773,8778561:11829248,505283,102891 +h2536,499:6630773,8778561:0,0,0 +g2536,499:10165129,8778561 +g2536,499:11334946,8778561 +g2536,499:12504763,8778561 +k2536,500:15880851,8778561:2579170 +k2536,500:18460021,8778561:2579170 +) +(2536,501:6630773,9620049:11829248,505283,102891 +h2536,500:6630773,9620049:0,0,0 +g2536,500:10165129,9620049 +k2536,501:14711034,9620049:3748987 +k2536,501:18460021,9620049:3748987 +) +(2536,502:6630773,10461537:11829248,505283,126483 +h2536,501:6630773,10461537:0,0,0 +g2536,501:10165129,10461537 +k2536,502:14910264,10461537:3549758 +k2536,502:18460021,10461537:3549757 +) +(2536,503:6630773,11303025:11829248,505283,134348 +h2536,502:6630773,11303025:0,0,0 +g2536,502:13721768,11303025 +k2536,503:16688583,11303025:1771438 +k2536,503:18460021,11303025:1771438 +) +(2536,507:6630773,12706809:11829248,505283,126483 +h2536,506:6630773,12706809:0,0,0 +g2536,506:10165129,12706809 +g2536,506:11334946,12706809 +k2536,507:16256700,12706809:2203321 +k2536,507:18460021,12706809:2203321 +) +(2536,508:6630773,13548297:11829248,505283,102891 +h2536,507:6630773,13548297:0,0,0 +g2536,507:8979582,13548297 +g2536,507:10547858,13548297 +k2536,508:15101628,13548297:3358393 +k2536,508:18460021,13548297:3358393 +) +(2536,509:6630773,14389785:11829248,505283,102891 +h2536,508:6630773,14389785:0,0,0 +g2536,508:9374765,14389785 +k2536,509:14515082,14389785:3944940 +k2536,509:18460021,14389785:3944939 +) +(2536,510:6630773,15231273:11829248,485622,102891 +h2536,509:6630773,15231273:0,0,0 +g2536,509:9374765,15231273 +k2536,510:14315852,15231273:4144169 +k2536,510:18460021,15231273:4144169 +) +(2536,514:6630773,16635057:11829248,505283,102891 +h2536,513:6630773,16635057:0,0,0 +g2536,513:8979582,16635057 +g2536,513:10547858,16635057 +k2536,514:15863156,16635057:2596865 +k2536,514:18460021,16635057:2596865 +) +(2536,515:6630773,17476545:11829248,505283,102891 +h2536,514:6630773,17476545:0,0,0 +g2536,514:9374765,17476545 +k2536,515:14878151,17476545:3581870 +k2536,515:18460021,17476545:3581870 +) +(2536,516:6630773,18318033:11829248,505283,102891 +h2536,515:6630773,18318033:0,0,0 +g2536,515:10165129,18318033 +g2536,515:11334946,18318033 +k2536,516:15295943,18318033:3164079 +k2536,516:18460021,18318033:3164078 +) +(2536,517:6630773,19159521:11829248,505283,102891 +h2536,516:6630773,19159521:0,0,0 +g2536,516:11350675,19159521 +g2536,516:12918951,19159521 +k2536,517:16287175,19159521:2172847 +k2536,517:18460021,19159521:2172846 +) +(2536,518:6630773,20001009:11829248,505283,102891 +h2536,517:6630773,20001009:0,0,0 +g2536,517:10955493,20001009 +k2536,518:15305446,20001009:3154576 +k2536,518:18460021,20001009:3154575 +) +(2536,519:6630773,20842497:11829248,505283,102891 +h2536,518:6630773,20842497:0,0,0 +g2536,518:11745857,20842497 +k2536,519:15700628,20842497:2759394 +k2536,519:18460021,20842497:2759393 +) +] +k2536,542:19606901,20842497:1146880 +r2536,542:19606901,20842497:0,15370243,126483 +k2536,542:20753781,20842497:1146880 +[2536,542:20753781,20842497:11829248,15243760,126483 +(2536,520:20753781,6254097:11829248,505283,102891 +h2536,519:20753781,6254097:0,0,0 +g2536,519:26264047,6254097 +k2536,520:30021227,6254097:2561803 +k2536,520:32583029,6254097:2561802 +) +(2536,521:20753781,7109144:11829248,505283,102891 +h2536,520:20753781,7109144:0,0,0 +g2536,520:25868865,7109144 +k2536,521:29823636,7109144:2759394 +k2536,521:32583029,7109144:2759393 +) +(2536,522:20753781,7964192:11829248,505283,102891 +h2536,521:20753781,7964192:0,0,0 +g2536,521:25473683,7964192 +k2536,522:29626045,7964192:2956985 +k2536,522:32583029,7964192:2956984 +) +(2536,523:20753781,8819239:11829248,505283,102891 +h2536,522:20753781,8819239:0,0,0 +g2536,522:25868865,8819239 +k2536,523:29823636,8819239:2759394 +k2536,523:32583029,8819239:2759393 +) +(2536,524:20753781,9674286:11829248,505283,102891 +h2536,523:20753781,9674286:0,0,0 +g2536,523:26264047,9674286 +k2536,524:30021227,9674286:2561803 +k2536,524:32583029,9674286:2561802 +) +(2536,525:20753781,10529333:11829248,505283,102891 +h2536,524:20753781,10529333:0,0,0 +g2536,524:27844776,10529333 +k2536,525:30811591,10529333:1771438 +k2536,525:32583029,10529333:1771438 +) +(2536,526:20753781,11384381:11829248,513147,102891 +h2536,525:20753781,11384381:0,0,0 +g2536,525:25868865,11384381 +g2536,525:27437141,11384381 +k2536,526:30607774,11384381:1975256 +k2536,526:32583029,11384381:1975255 +) +(2536,527:20753781,12239428:11829248,505283,102891 +h2536,526:20753781,12239428:0,0,0 +g2536,526:26264047,12239428 +k2536,527:30021227,12239428:2561803 +k2536,527:32583029,12239428:2561802 +) +(2536,528:20753781,13094475:11829248,505283,102891 +h2536,527:20753781,13094475:0,0,0 +g2536,527:25473683,13094475 +k2536,528:29626045,13094475:2956985 +k2536,528:32583029,13094475:2956984 +) +(2536,529:20753781,13949522:11829248,505283,102891 +h2536,528:20753781,13949522:0,0,0 +g2536,528:25473683,13949522 +k2536,529:29626045,13949522:2956985 +k2536,529:32583029,13949522:2956984 +) +(2536,533:20753781,15685915:11829248,505283,102891 +h2536,532:20753781,15685915:0,0,0 +g2536,532:23497773,15685915 +k2536,533:28638090,15685915:3944940 +k2536,533:32583029,15685915:3944939 +) +(2536,534:20753781,16540962:11829248,505283,102891 +h2536,533:20753781,16540962:0,0,0 +g2536,533:23497773,16540962 +g2536,533:25066049,16540962 +g2536,533:26634325,16540962 +k2536,534:30206366,16540962:2376664 +k2536,534:32583029,16540962:2376663 +) +(2536,535:20753781,17396010:11829248,513147,102891 +h2536,534:20753781,17396010:0,0,0 +g2536,534:26659229,17396010 +k2536,535:30218818,17396010:2364212 +k2536,535:32583029,17396010:2364211 +) +(2536,536:20753781,18251057:11829248,505283,102891 +h2536,535:20753781,18251057:0,0,0 +g2536,535:25078501,18251057 +k2536,536:29428454,18251057:3154576 +k2536,536:32583029,18251057:3154575 +) +(2536,540:20753781,19987450:11829248,505283,126483 +h2536,539:20753781,19987450:0,0,0 +g2536,539:23497773,19987450 +k2536,540:28638090,19987450:3944940 +k2536,540:32583029,19987450:3944939 +) +(2536,541:20753781,20842497:11829248,505283,126483 +h2536,540:20753781,20842497:0,0,0 +g2536,540:23497773,20842497 +g2536,540:25066049,20842497 +g2536,540:26634325,20842497 +k2536,541:30206366,20842497:2376664 +k2536,541:32583029,20842497:2376663 +) +] +(2536,542:32583029,20842497:0,355205,126483 +h2536,542:32583029,20842497:420741,355205,126483 +k2536,542:32583029,20842497:-420741 +) +) +] +(1,17358:32583029,45706769:0,0,0 +g1,17358:32583029,45706769 +) +) +] +(1,17358:6630773,47279633:25952256,0,0 +h1,17358:6630773,47279633:25952256,0,0 +) +] +h1,17358:4262630,4025873:0,0,0 +] +!10426 +}355 +Input:2537:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\using-r-main-crc.aux +Input:2538:C:\Users\Aphalo\Documents\Own_manuscripts\Books\using-r\frontmatter\preface.aux +!191 Postamble: -Count:312456 +Count:309957 !29 Post scriptum: diff --git a/using-r-main-crc.tex b/using-r-main-crc.tex index a8fddd56..32f247f6 100644 --- a/using-r-main-crc.tex +++ b/using-r-main-crc.tex @@ -43,6 +43,11 @@ \renewcommand{\dbltopfraction}{0.90} \renewcommand{\dblfloatpagefraction}{0.70} +% ensure page numbers are aligned in TOC +\makeatletter +\renewcommand{\@pnumwidth}{2.05em} +\makeatother + \addbibresource{rbooks.bib} \addbibresource{references.bib} @@ -51,6 +56,7 @@ \makeindex[name=rcatsidx,title=Index of \Rlang names by category] \IfFileExists{upquote.sty}{\usepackage{upquote}}{} \begin{document} +\hyphenation{pro-cess-ing paren-the-ses spe-cif-ic au-thors in-ter-act-ed lim-it} \title{\Huge{\fontseries{ub}\sffamily Learn R\\{\Large\ldots\ as You Learned Your Mother Tongue}}} @@ -96,7 +102,7 @@ -\chapter{R: the language and the program}\label{chap:R:introduction} +\chapter{R: The language and the program}\label{chap:R:introduction} \begin{VF} In a world of \ldots\ relentless pressure for more of everything, one can lose sight of the basic principles---simplicity, clarity, generality---that form the bedrock of good software. @@ -120,7 +126,7 @@ \subsection{What is R?} Most people think\index{R as a language@{\Rlang as a language}}\index{R as a program@{\Rlang as a program}} of \Rpgrm as a computer program. \Rpgrm is indeed a computer program---a piece of software--- but it is also a computer language, implemented in the \Rpgrm program. Does this make a difference? Yes. Until recently we had only one mainstream implementation of \Rlang, the program \Rpgrm. Recently another implementation has gained some popularity, \pgrmname{Microsoft R Open} (MRO), which is directly based on the \Rpgrm program from \textit{The R Project for Statistical Computing}. MRO is described as an enhanced distribution of \Rpgrm. These two very similar implementations are not the only ones available, but others are not in widespread use. In other words, the \Rlang language can be used not only in the \Rpgrm program, and it is feasible that other implementations will be developed in the future. -The name base \Rlang\index{base R@{base \Rlang}} is used to distinguish \Rlang itself, as in the \Rpgrm distribution, from \Rlang in a broader sense, which includes independently developed extensions that can be loaded from separately distributed extension packages. +The name ``base \Rlang\index{base R@{base \Rlang}}'' is used to distinguish \Rlang itself, as in the \Rpgrm distribution, from \Rlang in a broader sense, which includes independently developed extensions that can be loaded from separately distributed extension packages. Being that \Rpgrm is essentially a command-line application, it can be used on what nowadays are frugal computing resources, equivalent to a personal computer of three decades ago. \Rpgrm can run even on the Raspberry Pi\index{Raspberry Pi}, a micro-controller board with the processing power of a modest smart phone. At the other end of the spectrum, on really powerful servers, \Rpgrm can be used for the analysis of big data sets with millions of observations. How powerful a computer you will need will depend on the size of the data sets you want to analyze, on how patient you are, and on your ability to write ``good'' code. @@ -141,7 +147,7 @@ \subsection{R as a language} \end{explainbox} \subsection{R as a computer program} -\index{R as a computer program@{\Rpgrm as a computer program}} +\index{R as a program@{\Rpgrm as a program}} \index{Windows@{\textsf{Windows}}|see{MS-Windows@{\textsf{MS-Windows}}}} The \Rpgrm program itself is open-source, and the source code is available for anybody to inspect, modify and use. A small fraction of users will directly contribute improvements to the \Rpgrm program itself, but it is possible, and those contributions are important in making \Rpgrm reliable. The executable, the \Rpgrm program we actually use, can be built for different operating systems and computer hardware. The members of the \Rpgrm developing team make an important effort to keep the results obtained from calculations done on all the different builds and computer architectures as consistent as possible. The aim is to ensure that computations return consistent results not only across updates to \Rpgrm but also across different operating systems like \osname{Linux}, \osname{Unix} (including \osname{OS X}), and \osname{MS-Windows}, and computer hardware. @@ -201,17 +207,17 @@ \subsubsection{Using R in a ``batch job''} \begin{figure} \centering \includegraphics[width=\linewidth]{figures/windows-cmd-script} - \caption[Script at the Windows cmd promt]{Screen capture of the \osname{MS-Windows} command console just after running the same script. Here we use \code{Rscript} to run the script, the exact syntax will depend on the operating system in use. In this case \Rpgrm prints the results at the operating system console or shell, rather than in its own \Rpgrm console.}\label{fig:intro:shell} + \caption[Script at the Windows cmd promt]{Screen capture of the \osname{MS-Windows} command console just after running the same script. Here we use \code{Rscript} to run the script; the exact syntax will depend on the operating system in use. In this case, \Rpgrm prints the results at the operating system console or shell, rather than in its own \Rpgrm console.}\label{fig:intro:shell} \end{figure} \subsubsection{Editors and IDEs} -Integrated Development Environments (IDEs)\index{integrated development environment}\index{IDE|see{ntegrated development environment}} are used when developing computer programs. IDEs provide a centralized user interface from within which the different tools used to create and test a computer program can be accessed and used in coordination. Most IDEs include a dedicated editor capable of syntax highlighting, and even report some mistakes, related to the programming language in use. One could describe such an editor as the equivalent of a word processor with spelling and grammar checking, that can alert about spelling and syntax errors for a computer language like \Rlang instead of for a natural language like English. In the case of \RStudio, the main, but not only language supported is \Rlang. The main window of IDEs usually displays more than one pane simultaneously. From within the \RStudio IDE, one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown above at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). We can see by comparing these three figures how \RStudio is really a layer between the user and an unmodified \Rpgrm executable. The script was sourced by pressing the ``Source'' button at the top of the editor pane. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console, the same console, where we would type any \Rpgrm commands. +Integrated Development Environments (IDEs)\index{integrated development environment}\index{IDE|see{integrated development environment}} are used when developing computer programs. IDEs provide a centralized user interface from within which the different tools used to create and test a computer program can be accessed and used in coordination. Most IDEs include a dedicated editor capable of syntax highlighting, and even report some mistakes, related to the programming language in use. One could describe such an editor as the equivalent of a word processor with spelling and grammar checking, that can alert about spelling and syntax errors for a computer language like \Rlang instead of for a natural language like English. In the case of \RStudio, the main, but not only language supported is \Rlang. The main window of IDEs usually displays more than one pane simultaneously. From within the \RStudio IDE, one has access to the \Rpgrm console, a text editor, a file-system browser, a pane for graphical output, and access to several additional tools such as for installing and updating extension packages. Although \RStudio supports very well the development of large scripts and packages, it is currently, in my opinion, also the best possible way of using \Rpgrm at the console as it has the \Rpgrm help system very well integrated both in the editor and \Rlang console. Figure \ref{fig:intro:rstudio} shows the main window displayed by \RStudio after running the same script as shown above at the \Rpgrm console (Figure \ref{fig:intro:script}) and at the operating system command prompt (Figure \ref{fig:intro:shell}). We can see by comparing these three figures how \RStudio is really a layer between the user and an unmodified \Rpgrm executable. The script was sourced by pressing the ``Source'' button at the top of the editor pane. \RStudio, in response to this, generated the code needed to source the file and ``entered'' it at the console, the same console, where we would type any \Rpgrm commands. \begin{figure} \centering \includegraphics[width=\linewidth]{figures/Rstudio-script} - \caption[Script in Rstudio]{The \RStudio interface just after running the same script. Here we used the ``Source'' button to run the script. In this case \Rpgrm prints the results to the \Rpgrm console in the lower left pane.}\label{fig:intro:rstudio} + \caption[Script in Rstudio]{The \RStudio interface just after running the same script. Here we used the ``Source'' button to run the script. In this case, \Rpgrm prints the results to the \Rpgrm console in the lower left pane.}\label{fig:intro:rstudio} \end{figure} When a script is run, if an error is triggered, \RStudio automatically finds the location of the error. \RStudio supports the concept of projects allowing saving of settings per project. Some features are beyond what you need for everyday data analysis and aimed at package development, such as integration of debugging, traceback on errors, profiling and bench marking of code so as to analyze and improve performance. It integrates support for file version control, which is not only useful for package development, but also for keeping track of the progress or collaboration in the analysis of data. @@ -247,7 +253,7 @@ \section{Finding additional information} \subsection{R's built-in help} -To\index{R!help@{\Rlang!help}} access help pages through the command prompt we use function \Rfunction{help()} or a question mark. Every object exported by an \Rlang package (functions, methods, classes, data) is documented. Sometimes a single help page documents several \Rlang objects. Usually at the end of the help pages, some examples are given, which tend to help very much in learning how to use the functions described. For example, one can search for a help page at the \Rpgrm console. +To\index{R@{\Rlang}!help} access help pages through the command prompt we use function \Rfunction{help()} or a question mark. Every object exported by an \Rlang package (functions, methods, classes, data) is documented. Sometimes a single help page documents several \Rlang objects. Usually at the end of the help pages, some examples are given, which tend to help very much in learning how to use the functions described. For example, one can search for a help page at the \Rpgrm console. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} @@ -285,7 +291,7 @@ \subsection{R's built-in help} ## ## To cite R in publications use: ## -## R Core Team (2019). R: A language and environment for statistical +## R Core Team (2020). R: A language and environment for statistical ## computing. R Foundation for Statistical Computing, Vienna, Austria. ## URL https://www.R-project.org/. ## @@ -296,7 +302,7 @@ \subsection{R's built-in help} ## author = {{R Core Team}}, ## organization = {R Foundation for Statistical Computing}, ## address = {Vienna, Austria}, -## year = {2019}, +## year = {2020}, ## url = {https://www.R-project.org/}, ## } ## @@ -368,7 +374,7 @@ \section{Further reading} -\chapter{The R language: ``words'' and ``sentences''}\label{chap:R:as:calc} +\chapter{The R language: ``Words'' and ``sentences''}\label{chap:R:as:calc} \begin{VF} The desire to economize time and mental effort in arithmetical computations, and to eliminate human liability to error, is probably as old as the science of arithmetic itself. @@ -398,7 +404,7 @@ \section{Natural and computer languages} \section{Numeric values and arithmetic} \index{classes and modes!numeric, integer, double|(}\index{numbers and their arithmetic|(}\qRclass{numeric}\index{math operators}\index{math functions}\index{numeric values}\qRoperator{+}\qRoperator{-}\qRoperator{*}\qRoperator{/} -When working in \Rlang with arithmetic expressions, the normal mathematical precedence rules are respected, but parentheses can be used to alter this order. Parentheses can be nested, but in contrast to the usual practice in mathematics, the same parenthesis symbol is used at all nesting levels. +When working in \Rlang with arithmetic expressions, the normal mathematical precedence rules are respected, but parentheses can be used to alter this order. Parentheses can be nested, but in contrast to the usual practice in mathematics, the same parenthesis symbol is used at all nesting levels. \begin{explainbox} 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 $3 + 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, 9. In programming languages, similar rules apply to all operators, even those taking as operands non-numeric values. @@ -2755,7 +2761,7 @@ \section{Vector manipulation}\label{sec:vectors}\label{sec:calc:indexing} Make sure to understand the examples above. These constructs are very widely used in \Rlang because they allow for concise code that is easy to understand once you are familiar with the indexing rules. However, if you do not command these rules, many of these terse statements will be unintelligible to you. \end{playground} -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 to be 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. +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} @@ -3765,7 +3771,7 @@ \section{Lists}\label{sec:calc:lists} \end{knitrout} \subsection{Member extraction and subsetting} -Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{member extraction}}\index{lists!indexes|see{member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. +Using\qRoperator{[[]]}\index{lists!member extraction|(}\index{lists!member indexing|see{lists!member extraction}} double square brackets for indexing a list extracts the element stored in the list, in its original mode. In the example above, \code{a.list[["x"]]} returns a numeric vector, while \code{a.list[1]} returns a list containing the numeric vector \code{x}. \code{a.list\$x} returns the same value as \code{a.list[["x"]]}, a numeric vector. \code{a.list[c(1,3)]} returns a list of length two, while \code{a.list[[c(1,3)]]} is an error. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} @@ -4611,7 +4617,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} \end{kframe} \end{knitrout} -In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, in this case column \code{A} of \code{my\_data\_frame.df} takes precedence, and the returned value is the expected one. +In the case of \Rscoping{with()} only one, possibly compound code statement is affected and this statement is passed as an argument. As before, we need to fully specify the left-hand side of the assignment. The value returned is the one returned by the statement passed as an argument, in the case of compound statements, the value returned by the last contained simple code statement to be executed. Consequently, if the intent is to modify the container, assignment to an individual member variable (column in this case) is required. In contrast to the behavior of \code{attach()}, In this case, 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} @@ -4628,7 +4634,7 @@ \subsection{Operating within data frames}\label{sec:calc:df:with} \end{kframe} \end{knitrout} -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. +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} @@ -5215,8 +5221,8 @@ \section{Plotting} \hlkwd{dev.off}\hlstd{()} \end{alltt} \begin{verbatim} -## pdf -## 2 +## cairo_pdf +## 2 \end{verbatim} \end{kframe} \end{knitrout} @@ -5231,8 +5237,8 @@ \section{Plotting} \hlkwd{dev.off}\hlstd{()} \end{alltt} \begin{verbatim} -## pdf -## 2 +## cairo_pdf +## 2 \end{verbatim} \end{kframe} \end{knitrout} @@ -5251,8 +5257,8 @@ \section{Plotting} \hlkwd{dev.off}\hlstd{()} \end{alltt} \begin{verbatim} -## pdf -## 2 +## cairo_pdf +## 2 \end{verbatim} \end{kframe} \end{knitrout} @@ -5274,7 +5280,7 @@ \section{Further reading} -\chapter{The R language: ``paragraphs'' and ``essays''}\label{chap:R:scripts} +\chapter{The R language: ``Paragraphs'' and ``essays''}\label{chap:R:scripts} \index{scripts} \begin{VF} @@ -6069,15 +6075,7 @@ \subsection{Explicit loops can be slow in \Rlang}\label{sec:loops:slow} \end{alltt} \begin{verbatim} ## user system elapsed -<<<<<<< HEAD -<<<<<<< Updated upstream -## 0.23 0.02 0.25 -======= -## 0.20 0.04 0.25 ->>>>>>> Stashed changes -======= -## 0.24 0.03 0.26 ->>>>>>> master +## 0.22 0.00 0.22 \end{verbatim} \end{kframe} \end{knitrout} @@ -6710,7 +6708,7 @@ \section{The multiple faces of loops}\label{sec:R:faces:of:loops} \end{kframe} \end{knitrout} -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. +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} @@ -6835,7 +6833,7 @@ \subsection{Further reading} % !Rnw root = appendix.main.Rnw -\chapter{The R language: statistics}\label{chap:R:statistics} +\chapter{The R language: Statistics}\label{chap:R:statistics} \begin{VF} The purpose of computing is insight, not numbers. @@ -6850,7 +6848,6 @@ \section{Aims of this chapter} %\emph{At present I use several examples adapted from the help pages for the functions described. I may revise this before publication.} \section{Statistical summaries} -\index{functions!built-in|see {functions, base-R}}% \index{functions!base R}\index{summaries!statistical} 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.) @@ -7050,7 +7047,7 @@ \subsection{Quantiles from parameters and probabilities}\label{sec:quant:prob} \end{warningbox} \subsection{``Random'' draws from a distribution}\label{sec:stat:random} -\index{distributions!pseudo-random draws} +\index{random draws|see{distributions!pseudo-random draws}}\index{distributions!pseudo-random draws} True random sequences can only be generated by physical processes. All so-called ``random'' sequences of numbers generated by computation are really deterministic although they share some properties with true random sequences (e.g., in relation to autocorrelation). It is possible to compute not only pseudo-random draws from a uniform distribution but also from the Normal, $t$, $F$ and other distributions. Parameter \code{n} indicates the number of values to be drawn, or its equivalent, the length of the vector returned.\qRfunction{rnorm()}\qRfunction{runif()} @@ -7077,7 +7074,7 @@ \subsection{``Random'' draws from a distribution}\label{sec:stat:random} \end{playground} \begin{explainbox} -\index{random numbers|see{pseudo-random numbers}} +\index{random numbers|see{pseudo-random numbers}}\index{pseudo-random numbers} It is impossible to generate truly random sequences of numbers by means of a deterministic process such as a mathematical computation. ``Random numbers'' as generated by \Rpgrm and other computer programs are \emph{pseudo random numbers}, long deterministic series of numbers that resemble random draws. Random number generation uses a \emph{seed} value that determines where in the series we start. The usual way of automatically setting the value of the seed is to take the milliseconds or similar rapidly changing set of digits from the real time clock of the computer. However, in cases when we wish to repeat a calculation using the same series of pseudo-random values, we can use \Rfunction{set.seed()} with an arbitrary integer as an argument to reset the generator to the same point in the underlying (deterministic) sequence. \end{explainbox} @@ -7087,7 +7084,7 @@ \subsection{``Random'' draws from a distribution}\label{sec:stat:random} \section{``Random'' sampling} \index{random sampling|see{pseudo-random sampling}}% -\index{distributions!pseudo-random sampling}% +\index{pseudo-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. @@ -7284,8 +7281,8 @@ \section{Fitting linear models}\label{sec:stat:LM} \end{warningbox} \subsection{Regression} -\index{linear regression} -\index{linear regression|seealso{linear models}}\index{linear models!linear regression} +%\index{linear regression} +\index{linear regression|see{linear models!linear regression}}\index{linear models!linear regression} In \index{linear models!ANOVA table} the example immediately below, \code{speed} is a continuous numeric variable. In the ANOVA table calculated for the model fit, in this case a linear regression, we can see that the term for \code{speed} has only one degree of freedom (df). In the next example we continue using the stopping distance for \Rdata{cars} data set included in \Rpgrm. Please see the plot on page \pageref{chunk:plot:cars}. @@ -7436,7 +7433,7 @@ \subsection{Regression} \end{kframe} \end{knitrout} -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. +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} @@ -7633,8 +7630,8 @@ \subsection{Regression} \end{advplayground} \subsection{Analysis of variance, ANOVA}\label{sec:anova} -\index{analysis of variance} -\index{analysis of variance|seealso{linear models}}\index{linear models!analysis of variance} +%\index{analysis of variance} +\index{analysis of variance|see{linear models!analysis of variance}}\index{linear models!analysis of variance} \index{ANOVA|see{analysis of variance}} We use here the \Rdata{InsectSprays} data set, giving insect counts in plots sprayed with different insecticides. In these data, \code{spray} is a factor with six levels.% \label{xmpl:fun:lm:fm4} @@ -7743,6 +7740,8 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} \end{kframe} \end{knitrout} +Interpretation of any analysis has to take into account these differences and users should not be surprised if ANOVA yields different results in base \Rlang and \pgrmname{SPSS} or \pgrmname{SAS} given the different types of sums of squares used. The interpretation of ANOVA on designs that are not orthogonal will depend on which type is used, so the different results are not necessarily contradictory even when different. + \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} @@ -7807,14 +7806,12 @@ \subsection{Analysis of variance, ANOVA}\label{sec:anova} \end{kframe} \end{knitrout} -Interpretation of any analysis has to take into account these differences and users should not be surprised if ANOVA yields different results in base \Rlang and \pgrmname{SPSS} or \pgrmname{SAS} given the different types of sums of squares used. The interpretation of ANOVA on designs that are not orthogonal will depend on which type is used, so the different results are not necessarily contradictory even when different. - In the case of contrasts, they always affect the parameter estimates independently of whether the experiment design is orthogonal or not. A different set of contrasts simply tests a different set of possible treatment effects. Contrasts, on the other hand, do not affect the table returned by \Rfunction{anova()} as this table does not deal with the effects of individual factor levels. \end{warningbox} \subsection{Analysis of covariance, ANCOVA} -\index{analysis of covariance} -\index{analysis of covariance|seealso{linear models}} +%\index{analysis of covariance} +\index{analysis of covariance|see{linear models!analysis of covariance}} \index{linear models!analysis of covariance} \index{ANCOVA|see{analysis of covariance}} @@ -9206,7 +9203,7 @@ \section{Further reading}\label{sec:stat:further:reading} % !Rnw root = appendix.main.Rnw -\chapter{The R language: adding new ``words''}\label{chap:R:functions} +\chapter{The R language: Adding new ``words''}\label{chap:R:functions} \begin{VF} Computer Science is a science of abstraction---creating the right model for a problem and devising the appropriate mechanizable techniques to solve it. @@ -9472,15 +9469,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} ## } ## sqrt(var(x)/length(x)) ## } -<<<<<<< HEAD -<<<<<<< Updated upstream -## <bytecode: 0x0000000012378d88> -======= -## <bytecode: 0x0000000012a4c3b8> ->>>>>>> Stashed changes -======= -## <bytecode: 0x0000000019a6c8d0> ->>>>>>> master +## <bytecode: 0x0000000017c9b970> \end{verbatim} \end{kframe} \end{knitrout} @@ -9565,15 +9554,7 @@ \subsection{Ordinary functions}\label{sec:functions:sem} ## z$qr <- NULL ## z ## } -<<<<<<< HEAD -<<<<<<< Updated upstream -## <bytecode: 0x0000000019b68bb0> -======= -## <bytecode: 0x00000000123ccf08> ->>>>>>> Stashed changes -======= -## <bytecode: 0x0000000015e3a0d0> ->>>>>>> master +## <bytecode: 0x0000000018f391e8> ## <environment: namespace:stats> \end{verbatim} \end{kframe} @@ -9708,15 +9689,7 @@ \section{Objects, classes, and methods}\label{sec:script:objects:classes:methods \begin{verbatim} ## function (x, ...) ## UseMethod("mean") -<<<<<<< HEAD -<<<<<<< Updated upstream -## <bytecode: 0x0000000019f2b4d0> -======= -## <bytecode: 0x0000000019687f98> ->>>>>>> Stashed changes -======= -## <bytecode: 0x00000000158e3280> ->>>>>>> master +## <bytecode: 0x0000000019a8f678> ## <environment: namespace:base> \end{verbatim} \end{kframe} @@ -10780,7 +10753,7 @@ \subsection{Row-wise manipulations} \end{kframe} \end{knitrout} -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. +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} @@ -11596,7 +11569,9 @@ \subsection{Plot construction} \hlkwd{geom_point}\hlstd{()} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-05-1} @@ -11617,7 +11592,9 @@ \subsection{Plot construction} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} \hlkwd{scale_y_log10}\hlstd{()} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-06-1} @@ -11640,7 +11617,9 @@ \subsection{Plot construction} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} \hlkwd{coord_cartesian}\hlstd{(}\hlkwc{ylim} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{15}\hlstd{,} \hlnum{25}\hlstd{))} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-07-1} @@ -11661,7 +11640,9 @@ \subsection{Plot construction} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} \hlkwd{coord_trans}\hlstd{(}\hlkwc{y} \hlstd{=} \hlstr{"log10"}\hlstd{)} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-basics-08-1} @@ -11799,7 +11780,9 @@ \subsection{Plots as \Rlang objects} \hlstd{p} \hlopt{+} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"line"}\hlstd{,} \hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-objects-02-1} @@ -11831,7 +11814,9 @@ \subsection{Plots as \Rlang objects} \begin{alltt} \hlstd{p} \hlopt{+} \hlstd{my.layers} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-ggplot-objects-info-02-1} @@ -11858,7 +11843,7 @@ \subsection{Data and mappings} \end{kframe} \end{knitrout} -However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers. In this case those passed as arguments to \Rfunction{ggplot()}, if present, are overridden by arguments passed to individual layers, making it possible to code the same plot as follows. +However, the grammar of graphics contemplates the possibility of data and mappings restricted to individual layers. In this case, those passed as arguments 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} @@ -11897,7 +11882,7 @@ \subsection{Data and mappings} In these examples, the plot remains unchanged, but this flexibility in the grammar allows, in plots containing multiple layers, for each layer to use different data or a different mapping. \begin{explainbox} -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. +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. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} @@ -11905,7 +11890,8 @@ \subsection{Data and mappings} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{subset}\hlstd{(x, cyl} \hlopt{==} \hlnum{4}\hlstd{)\},} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} + \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)\{}\hlkwd{subset}\hlstd{(x, cyl} \hlopt{==} \hlnum{4}\hlstd{)\},} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} + \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} \end{alltt} \end{kframe} \end{knitrout} @@ -11917,7 +11903,8 @@ \subsection{Data and mappings} \hlkwd{ggplot}\hlstd{(}\hlkwc{data} \hlstd{= mtcars,} \hlkwc{mapping} \hlstd{=} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= disp,} \hlkwc{y} \hlstd{= mpg))} \hlopt{+} \hlkwd{geom_point}\hlstd{(}\hlkwc{size} \hlstd{=} \hlnum{4}\hlstd{)} \hlopt{+} - \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= .} \hlopt{%.>%} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= ., cyl} \hlopt{==} \hlnum{4}\hlstd{),} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} + \hlkwd{geom_point}\hlstd{(}\hlkwc{data} \hlstd{= .} \hlopt{%.>%} \hlkwd{subset}\hlstd{(}\hlkwc{x} \hlstd{= ., cyl} \hlopt{==} \hlnum{4}\hlstd{),} \hlkwc{color} \hlstd{=} \hlstr{"yellow"}\hlstd{,} + \hlkwc{size} \hlstd{=} \hlnum{1.5}\hlstd{)} \end{alltt} \end{kframe} \end{knitrout} @@ -12227,7 +12214,7 @@ \subsection{Line and area}\label{sec:plot:line} \index{plots!line plot|)} \index{plots!step plot|(} -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. +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} @@ -12488,21 +12475,17 @@ \subsection{Simple features (sf)}\label{sec:plot:sf} \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{)} -<<<<<<< Updated upstream \hlkwd{ggplot}\hlstd{(nc)} \hlopt{+} \hlkwd{geom_sf}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= AREA),} \hlkwc{color} \hlstd{=} \hlstr{"gray90"}\hlstd{)} -======= ->>>>>>> Stashed changes \end{alltt} +\end{kframe} +{\centering \includegraphics[width=.7\textwidth]{figure/pos-sf_plot-01-1} + +} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in loadNamespace(name): there is no package called 'sf'}}\begin{alltt} -\hlkwd{ggplot}\hlstd{(nc)} \hlopt{+} - \hlkwd{geom_sf}\hlstd{(}\hlkwd{aes}\hlstd{(}\hlkwc{fill} \hlstd{= AREA),} \hlkwc{color} \hlstd{=} \hlstr{"grey90"}\hlstd{)} -\end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in ggplot(nc): object 'nc' not found}}\end{kframe} \end{knitrout} \index{grammar of graphics!sf geometries|)} \index{plots!maps and spatial plots|)} @@ -12563,7 +12546,7 @@ \subsection{Text}\label{sec:plot:text} Modify the example above to use \gggeom{geom\_label()} instead of \gggeom{geom\_text()} using, in addition, the \code{fill} aesthetic. \end{playground} -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())}. +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} @@ -12858,32 +12841,26 @@ \subsection{Plot insets}\label{sec:plot:insets} \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{)} \hlstd{Isoquercitin} \hlkwb{<-} \hlstd{magick}\hlopt{::}\hlkwd{image_read}\hlstd{(file1.name)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in loadNamespace(name): there is no package called 'magick'}}\begin{alltt} \hlstd{file2.name} \hlkwb{<-} \hlkwd{system.file}\hlstd{(}\hlstr{"extdata"}\hlstd{,} \hlstr{"Robinin.png"}\hlstd{,} \hlkwc{package} \hlstd{=} \hlstr{"ggpmisc"}\hlstd{,} \hlkwc{mustWork} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlstd{Robinin} \hlkwb{<-} \hlstd{magick}\hlopt{::}\hlkwd{image_read}\hlstd{(file2.name)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in loadNamespace(name): there is no package called 'magick'}}\begin{alltt} -\hlstd{grob.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{100}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{20}\hlstd{),} \hlkwc{height} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{4}\hlstd{,} \hlkwc{width} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{/}\hlnum{2}\hlstd{),} +\hlstd{grob.tb} \hlkwb{<-} \hlkwd{tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{0}\hlstd{,} \hlnum{100}\hlstd{),} \hlkwc{y} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{10}\hlstd{,} \hlnum{20}\hlstd{),} \hlkwc{height} \hlstd{=} \hlnum{1}\hlopt{/}\hlnum{3}\hlstd{,} \hlkwc{width} \hlstd{=} \hlkwd{c}\hlstd{(}\hlnum{1}\hlopt{/}\hlnum{2}\hlstd{),} \hlkwc{grobs} \hlstd{=} \hlkwd{list}\hlstd{(grid}\hlopt{::}\hlkwd{rasterGrob}\hlstd{(}\hlkwc{image} \hlstd{= Isoquercitin),} \hlstd{grid}\hlopt{::}\hlkwd{rasterGrob}\hlstd{(}\hlkwc{image} \hlstd{= Robinin)))} -\end{alltt} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in grid::rasterGrob(image = Isoquercitin): object 'Isoquercitin' not found}}\begin{alltt} \hlkwd{ggplot}\hlstd{()} \hlopt{+} \hlkwd{geom_grob}\hlstd{(}\hlkwc{data} \hlstd{= grob.tb,} \hlkwd{aes}\hlstd{(}\hlkwc{x} \hlstd{= x,} \hlkwc{y} \hlstd{= y,} \hlkwc{label} \hlstd{= grobs,} \hlkwc{vp.height} \hlstd{= height,} \hlkwc{vp.width} \hlstd{= width),} \hlkwc{hjust} \hlstd{=} \hlstr{"inward"}\hlstd{,} \hlkwc{vjust} \hlstd{=} \hlstr{"inward"}\hlstd{)} \end{alltt} +\end{kframe} + +{\centering \includegraphics[width=.7\textwidth]{figure/pos-plot-grob-01-1} + +} + -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in fortify(data): object 'grob.tb' not found}}\end{kframe} \end{knitrout} \index{plots!inset graphical objects|)} @@ -12999,16 +12976,19 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} \end{kframe} \end{knitrout} -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.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.y}. +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.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.y}. \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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{+} - \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.y} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlstr{"-"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{10}\hlstd{)} + \hlkwd{stat_summary}\hlstd{(}\hlkwc{fun.y} \hlstd{=} \hlstr{"mean"}\hlstd{,} \hlkwc{geom} \hlstd{=} \hlstr{"point"}\hlstd{,} + \hlkwc{color} \hlstd{=} \hlstr{"red"}\hlstd{,} \hlkwc{shape} \hlstd{=} \hlstr{"-"}\hlstd{,} \hlkwc{size} \hlstd{=} \hlnum{10}\hlstd{)} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: `fun.y` is deprecated. Use `fun` instead.}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-summary-plot-02-1} @@ -13053,7 +13033,7 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} We do not give an example here, but it is possible to use user-defined functions instead of the functions exported by package \ggplot (based on those in package \Hmisc). Because arguments to the function used, except for the first one containing the variable in \code{data} mapped to the $y$ aesthetic, are supplied as a named list through parameter \code{fun.args}, the names used for parameters in the function definition need only match the names in this list. -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. +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} @@ -13077,7 +13057,9 @@ \subsection{Summaries}\label{sec:plot:stat:summaries} \hlkwd{ggplot}\hlstd{(mpg,} \hlkwd{aes}\hlstd{(class, hwy))} \hlopt{+} \hlkwd{stat_summary}\hlstd{(}\hlkwc{geom} \hlstd{=} \hlstr{"col"}\hlstd{,} \hlkwc{fun.y} \hlstd{= mean)} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: `fun.y` is deprecated. Use `fun` instead.}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-summary-plot-09a-1} @@ -13172,7 +13154,9 @@ \subsection{Smoothers and models} \hlkwd{stat_smooth}\hlstd{(}\hlkwc{method} \hlstd{=} \hlstr{"lm"}\hlstd{)} \hlopt{+} \hlkwd{geom_point}\hlstd{()} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# `geom\_smooth()` using formula 'y \textasciitilde{} x'}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-smooth-plot-04-1} @@ -13378,14 +13362,14 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra \end{kframe} \end{knitrout} -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, as the number of bins is the same in the two dimensions, a square plotting area is most suitable, which we achieve by adding \code{coord\_equal()} (see section \ref{sec:plot:coord} on page \pageref{sec:plot:coord} for details). +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} \begin{alltt} \hlkwd{ggplot}\hlstd{(my.data,} \hlkwd{aes}\hlstd{(x, y))} \hlopt{+} \hlkwd{stat_bin2d}\hlstd{(}\hlkwc{bins} \hlstd{=} \hlnum{8}\hlstd{)} \hlopt{+} - \hlkwd{coord_equal}\hlstd{()} + \hlkwd{coord_fixed}\hlstd{(}\hlkwc{ratio} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} \end{kframe} @@ -13404,7 +13388,7 @@ \subsection{Frequencies and counts}\label{sec:histogram}\label{sec:plot:histogra \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{+} - \hlkwd{coord_equal}\hlstd{()} + \hlkwd{coord_fixed}\hlstd{(}\hlkwc{ratio} \hlstd{=} \hlnum{1}\hlstd{)} \end{alltt} \end{kframe} @@ -13473,7 +13457,7 @@ \subsection{Density functions}\label{sec:plot:density} \end{knitrout} -In this case \gggeom{geom\_density\_2d()} is equivalent, and we can replace it in the last line in the chunk above. +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} @@ -14244,7 +14228,14 @@ \subsection{Time and date scales for $x$ and $y$}\label{sec:plot:scales:time:dat \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in ggplot(data = weather\_wk\_25\_2019.tb, aes(with\_tz(time, tzone = "{}EET"{}), : object 'weather\_wk\_25\_2019.tb' not found}}\end{kframe} +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Removed 7199 row(s) containing missing values (geom\_path).}}\end{kframe} + +{\centering \includegraphics[width=.9\textwidth]{figure/pos-scale-datetime-01-1} + +} + + + \end{knitrout} 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. @@ -14264,7 +14255,14 @@ \subsection{Time and date scales for $x$ and $y$}\label{sec:plot:scales:time:dat \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in ggplot(data = weather\_wk\_25\_2019.tb, aes(with\_tz(time, tzone = "{}EET"{}), : object 'weather\_wk\_25\_2019.tb' not found}}\end{kframe} +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Removed 9359 row(s) containing missing values (geom\_path).}}\end{kframe} + +{\centering \includegraphics[width=.9\textwidth]{figure/pos-scale-datetime-02-1} + +} + + + \end{knitrout} \begin{playground} @@ -14288,7 +14286,9 @@ \subsection{Discrete scales for $x$ and $y$} \hlkwd{scale_x_discrete}\hlstd{(}\hlkwc{limits} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"compact"}\hlstd{,} \hlstr{"subcompact"}\hlstd{,} \hlstr{"midsize"}\hlstd{),} \hlkwc{labels} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"COMPACT"}\hlstd{,} \hlstr{"SUBCOMPACT"}\hlstd{,} \hlstr{"MIDSIZE"}\hlstd{))} \end{alltt} -\end{kframe} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: `fun.y` is deprecated. Use `fun` instead.}}\end{kframe} {\centering \includegraphics[width=.54\textwidth]{figure/pos-scale-discrete-10-1} @@ -14654,7 +14654,10 @@ \subsection{Wind-rose plots} For an equivalent plot, using an empirical density, we have to use \ggstat{stat\_density()} instead of \ggstat{stat\_bin()} and change the \code{name} of the \code{y} scale. \begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor} +\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} + + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning in munched\_lines\$id + rep(c(0, max(ids, na.rm = TRUE)), each = length(ids)): longer object length is not a multiple of shorter object length}}\end{kframe} {\centering \includegraphics[width=.7\textwidth]{figure/pos-wind-06-1} @@ -14963,7 +14966,7 @@ \section{Composing plots} \index{plots!composing|(} In section \ref{sec:plot:facets} on page \pageref{sec:plot:facets}, we described how facets can be used to created coordinated sets of panels, based on a single data set. Rather frequently, we need to assemble a composite plot from individually created plots. If one wishes to have correctly aligned axis labels and plotting areas, similar to when using facets, then the task is not easy to achieve without the help of especial tools. -Package \pkgname{patchwork} defines a simple grammar for composing plots created with \ggplot. We briefly describe here the use of operators \Roperator{+}, \Roperator{|} and \Roperator{/}, although \pkgname{patchwork} provides additional tools for defining complex layouts of panels. While \Roperator{+} allows different layouts, \Roperator{|} composes panels side by side and \Roperator{/} composes panels on top of each other. The plots to be used as panels can be grouped using parentheses. +Package \pkgname{patchwork} defines a simple grammar for composing plots created with \ggplot. We briefly describe here the use of operators \Roperator{+}, \Roperator{|} and \Roperator{/}, although \pkgname{patchwork} provides additional tools for defining complex layouts of panels. While \Roperator{+} allows different layouts, \Roperator{|} composes panels side by side, and \Roperator{/} composes panels on top of each other. The plots to be used as panels can be grouped using parentheses. We start by creating and saving three plots. \begin{knitrout}\footnotesize @@ -15001,7 +15004,7 @@ \section{Composing plots} \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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 trafic"}\hlstd{,} \hlkwc{tag_levels} \hlstd{=} \hlstr{'a'}\hlstd{)} + \hlkwd{plot_annotation}\hlstd{(}\hlkwc{title} \hlstd{=} \hlstr{"Fuel use in city traffic:"}\hlstd{,} \hlkwc{tag_levels} \hlstd{=} \hlstr{'a'}\hlstd{)} \end{alltt} \end{kframe} @@ -15524,29 +15527,13 @@ \section{Packages used in this chapter} \hlkwd{library}\hlstd{(readxl)} \hlkwd{library}\hlstd{(xlsx)} \hlkwd{library}\hlstd{(readODS)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in library(readODS): there is no package called 'readODS'}}\begin{alltt} \hlkwd{library}\hlstd{(pdftools)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in library(pdftools): there is no package called 'pdftools'}}\begin{alltt} \hlkwd{library}\hlstd{(foreign)} \hlkwd{library}\hlstd{(haven)} \hlkwd{library}\hlstd{(xml2)} \hlkwd{library}\hlstd{(XML)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in library(XML): there is no package called 'XML'}}\begin{alltt} \hlkwd{library}\hlstd{(ncdf4)} \hlkwd{library}\hlstd{(tidync)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in library(tidync): there is no package called 'tidync'}}\begin{alltt} \hlkwd{library}\hlstd{(lubridate)} \hlkwd{library}\hlstd{(jsonlite)} \end{alltt} @@ -15748,21 +15735,9 @@ \section{File names and operations}\label{sec:files:filenames} \end{alltt} \begin{verbatim} ## size isdir mode mtime ctime -<<<<<<< HEAD -<<<<<<< Updated upstream -## xxx.txt 0 FALSE 666 2020-02-09 00:56:33 2020-02-09 00:56:33 -## atime exe -## xxx.txt 2020-02-09 00:56:33 no -======= -## xxx.txt 0 FALSE 666 2020-02-08 10:21:57 2020-02-08 10:21:57 -## atime exe -## xxx.txt 2020-02-08 10:21:57 no ->>>>>>> Stashed changes -======= -## xxx.txt 0 FALSE 666 2020-02-09 12:40:43 2020-02-09 12:40:43 +## xxx.txt 0 FALSE 666 2020-04-04 19:00:03 2020-04-04 19:00:03 ## atime exe -## xxx.txt 2020-02-09 12:40:43 no ->>>>>>> master +## xxx.txt 2020-04-04 19:00:03 no \end{verbatim} \begin{alltt} \hlkwd{file.rename}\hlstd{(}\hlstr{"xxx.txt"}\hlstd{,} \hlstr{"zzz.txt"}\hlstd{)} @@ -15804,17 +15779,12 @@ \section{Opening and closing file connections}\label{sec:io:connections} \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\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} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file("{}extdata/not-aligned-ASCII-UK.csv"{}, open = "{}r"{}): cannot open file 'extdata/not-aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file("{}extdata/not-aligned-ASCII-UK.csv"{}, open = "{}r"{}): cannot open the connection}}\begin{alltt} \hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{1L}\hlstd{)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in readLines(f1, n = 1L): object 'f1' not found}}\end{kframe} +\begin{verbatim} +## [1] "col1,col2,col3,col4" +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -15822,14 +15792,13 @@ \section{Opening and closing file connections}\label{sec:io:connections} \begin{alltt} \hlkwd{readLines}\hlstd{(f1,} \hlkwc{n} \hlstd{=} \hlnum{2L}\hlstd{)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in readLines(f1, n = 2L): object 'f1' not found}}\begin{alltt} +\begin{verbatim} +## [1] "1.0,24.5,346,ABC" "23.4,45.6,78,Z Y" +\end{verbatim} +\begin{alltt} \hlkwd{close}\hlstd{(f1)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in close(f1): object 'f1' not found}}\end{kframe} +\end{kframe} \end{knitrout} When \Rpgrm is used in batch mode, the ``files'' \code{stdin}, \code{stdout} and \code{stderror} can be opened, and data read from, or written to. These \emph{standard} sources and sinks, so familiar to \Clang programmers, allow the use of \Rlang scripts as tools in data pipes coded as shell scripts under Unix and other OSs. @@ -15895,15 +15864,16 @@ \section{Plain-text files}\label{sec:files:txt} In the first example we will read a file with fields solely delimited by ``,.'' This is what is called comma-separated-values (CSV) format which can be read and written with \Rfunction{read.csv()} and \Rfunction{write.csv()}, respectively. -Example file \code{not-aligned-ASCII-UK.csv} contains. +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} - - -{\ttfamily\noindent\color{warningcolor}{Warning in file(con, "{}r"{}): cannot open file 'extdata/not-aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{Error in file(con, "{}r"{}): cannot open the connection}}\end{kframe} +\begin{verbatim} +col1,col2,col3,col4 +1.0,24.5,346,ABC +23.4,45.6,78,Z Y +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -15911,11 +15881,7 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlstd{from_csv_a.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{)} \end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file(file, "{}rt"{}): cannot open file 'extdata/not-aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file(file, "{}rt"{}): cannot open the connection}}\end{kframe} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -15923,19 +15889,24 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_a.df, class)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in lapply(X = X, FUN = FUN, ...): object 'from\_csv\_a.df' not found}}\begin{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} \hlstd{from_csv_a.df[[}\hlstr{"col4"}\hlstd{]]} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'from\_csv\_a.df' not found}}\begin{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} \hlkwd{levels}\hlstd{(from_csv_a.df[[}\hlstr{"col4"}\hlstd{]])} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in levels(from\_csv\_a.df[["{}col4"{}]]): object 'from\_csv\_a.df' not found}}\end{kframe} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} \begin{playground} @@ -15946,11 +15917,12 @@ \section{Plain-text files}\label{sec:files:txt} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} - - -{\ttfamily\noindent\color{warningcolor}{Warning in file(con, "{}r"{}): cannot open file 'extdata/aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{Error in file(con, "{}r"{}): cannot open the connection}}\end{kframe} +\begin{verbatim} +col1, col2, col3, col4 + 1.0, 24.5, 346, ABC +23.4, 45.6, 78, Z Y +\end{verbatim} +\end{kframe} \end{knitrout} 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. @@ -15959,11 +15931,7 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlstd{from_csv_b.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{)} \end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file(file, "{}rt"{}): cannot open file 'extdata/aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file(file, "{}rt"{}): cannot open the connection}}\end{kframe} +\end{kframe} \end{knitrout} Using \code{levels()} we can more clearly see that the labels of the automatically created factor levels contain leading spaces. @@ -15972,19 +15940,24 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_b.df, class)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in lapply(X = X, FUN = FUN, ...): object 'from\_csv\_b.df' not found}}\begin{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} \hlstd{from_csv_b.df[[}\hlstr{"col4"}\hlstd{]]} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'from\_csv\_b.df' not found}}\begin{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} \hlkwd{levels}\hlstd{(from_csv_b.df[[}\hlstr{"col4"}\hlstd{]])} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in levels(from\_csv\_b.df[["{}col4"{}]]): object 'from\_csv\_b.df' not found}}\end{kframe} +\begin{verbatim} +## [1] " ABC" " Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} 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. @@ -15993,27 +15966,26 @@ \section{Plain-text files}\label{sec:files:txt} \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{from_csv_e.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{strip.white} \hlstd{=} \hlnum{TRUE}\hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file(file, "{}rt"{}): cannot open file 'extdata/aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file(file, "{}rt"{}): cannot open the connection}}\begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_e.df, class)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in lapply(X = X, FUN = FUN, ...): object 'from\_csv\_e.df' not found}}\begin{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} \hlstd{from_csv_e.df[[}\hlstr{"col4"}\hlstd{]]} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'from\_csv\_e.df' not found}}\begin{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} \hlkwd{levels}\hlstd{(from_csv_e.df[[}\hlstr{"col4"}\hlstd{]])} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in levels(from\_csv\_e.df[["{}col4"{}]]): object 'from\_csv\_e.df' not found}}\end{kframe} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} The functions from the \Rlang \pkgname{utils} package by default convert columns containing character strings into factors, as seen above. This default can be changed so that character strings remain as is. @@ -16024,11 +15996,7 @@ \section{Plain-text files}\label{sec:files:txt} \hlstd{from_csv_c.df} \hlkwb{<-} \hlkwd{read.csv}\hlstd{(}\hlstr{"extdata/not-aligned-ASCII-UK.csv"}\hlstd{,} \hlkwc{stringsAsFactors} \hlstd{=} \hlnum{FALSE}\hlstd{)} \end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file(file, "{}rt"{}): cannot open file 'extdata/not-aligned-ASCII-UK.csv': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file(file, "{}rt"{}): cannot open the connection}}\end{kframe} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16036,25 +16004,29 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlkwd{sapply}\hlstd{(from_csv_c.df, class)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in lapply(X = X, FUN = FUN, ...): object 'from\_csv\_c.df' not found}}\begin{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "character" +\end{verbatim} +\begin{alltt} \hlstd{from_csv_c.df[[}\hlstr{"col4"}\hlstd{]]} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'from\_csv\_c.df' not found}}\end{kframe} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} 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} - - -{\ttfamily\noindent\color{warningcolor}{Warning in file(con, "{}r"{}): cannot open file 'extdata/aligned-ASCII.txt': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{Error in file(con, "{}r"{}): cannot open the connection}}\end{kframe} +\begin{verbatim} +col1 col2 col3 col4 + 1.0 24.5 346 ABC +23.4 45.6 78 "Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16062,11 +16034,7 @@ \section{Plain-text files}\label{sec:files:txt} \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} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file(file, "{}rt"{}): cannot open file 'extdata/aligned-ASCII.txt': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file(file, "{}rt"{}): cannot open the connection}}\end{kframe} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16074,19 +16042,24 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlkwd{sapply}\hlstd{(from_txt_b.df, class)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in lapply(X = X, FUN = FUN, ...): object 'from\_txt\_b.df' not found}}\begin{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "integer" "factor" +\end{verbatim} +\begin{alltt} \hlstd{from_txt_b.df[[}\hlstr{"col4"}\hlstd{]]} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'from\_txt\_b.df' not found}}\begin{alltt} +\begin{verbatim} +## [1] ABC Z Y +## Levels: ABC Z Y +\end{verbatim} +\begin{alltt} \hlkwd{levels}\hlstd{(from_txt_b.df[[}\hlstr{"col4"}\hlstd{]])} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in levels(from\_txt\_b.df[["{}col4"{}]]): object 'from\_txt\_b.df' not found}}\end{kframe} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} \index{text files!fixed width fields} @@ -16096,11 +16069,11 @@ \section{Plain-text files}\label{sec:files:txt} \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} - - -{\ttfamily\noindent\color{warningcolor}{Warning in file(con, "{}r"{}): cannot open file 'extdata/aligned-ASCII.fwf': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{Error in file(con, "{}r"{}): cannot open the connection}}\end{kframe} +\begin{verbatim} + 10245346ABC +234456 78Z Y +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16110,11 +16083,7 @@ \section{Plain-text files}\label{sec:files:txt} \hlkwc{format} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"2F3.1"}\hlstd{,} \hlstr{"F3.0"}\hlstd{,} \hlstr{"A3"}\hlstd{),} \hlkwc{col.names} \hlstd{=} \hlkwd{c}\hlstd{(}\hlstr{"col1"}\hlstd{,} \hlstr{"col2"}\hlstd{,} \hlstr{"col3"}\hlstd{,} \hlstr{"col4"}\hlstd{))} \end{alltt} - - -{\ttfamily\noindent\color{warningcolor}{\#\# Warning in file(file, "{}rt"{}): cannot open file 'extdata/aligned-ASCII.fwf': No such file or directory}} - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in file(file, "{}rt"{}): cannot open the connection}}\end{kframe} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16122,14 +16091,17 @@ \section{Plain-text files}\label{sec:files:txt} \begin{alltt} \hlkwd{sapply}\hlstd{(from_fwf_a.df, class)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in lapply(X = X, FUN = FUN, ...): object 'from\_fwf\_a.df' not found}}\begin{alltt} +\begin{verbatim} +## col1 col2 col3 col4 +## "numeric" "numeric" "numeric" "character" +\end{verbatim} +\begin{alltt} \hlstd{from_fwf_a.df[[}\hlstr{"col4"}\hlstd{]]} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'from\_fwf\_a.df' not found}}\end{kframe} +\begin{verbatim} +## [1] "ABC" "Z Y" +\end{verbatim} +\end{kframe} \end{knitrout} \begin{explainbox} @@ -16233,7 +16205,14 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/aligned-ASCII-UK.csv' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## <dbl> <dbl> <dbl> <chr> +## 1 1 24.5 346 ABC +## 2 23.4 45.6 78 Z Y +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16243,7 +16222,14 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/not-aligned-ASCII-UK.csv' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## <dbl> <dbl> <dbl> <chr> +## 1 1 24.5 346 ABC +## 2 23.4 45.6 78 Z Y +\end{verbatim} +\end{kframe} \end{knitrout} Function \Rfunction{read\_table()}, differently to \Rfunction{read.table()}, retains quotes as part of read character strings. @@ -16255,7 +16241,14 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/aligned-ASCII.txt' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## <dbl> <dbl> <dbl> <chr> +## 1 1 24.5 346 "ABC" +## 2 23.4 45.6 78 "\"Z Y\"" +\end{verbatim} +\end{kframe} \end{knitrout} Because of the misaligned fields in file \code{"not-aligned-ASCII.txt"}, we need to use \Rfunction{read\_table2()}, which allows misalignment of fields, like \Rfunction{read.table()}, instead of \Rfunction{read\_table()}, which expects vertically aligned fields across rows. However, in this case the embedded space character in the quoted string is misinterpreted and part of the string dropped with a warning. @@ -16267,7 +16260,16 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/not-aligned-ASCII.txt' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}} + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row col\ \ expected\ \ \ \ actual\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\#\ \ 2\ \ -- 4 columns 5 columns 'extdata/not-aligned-ASCII.txt'}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## <dbl> <dbl> <dbl> <chr> +## 1 1 24.5 346 "ABC" +## 2 23.4 45.6 78 "\"Z" +\end{verbatim} +\end{kframe} \end{knitrout} Function \Rfunction{read\_delim()} with space as the delimiter needs to be used. @@ -16279,7 +16281,14 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/not-aligned-ASCII.txt' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 2 x 4 +## col1 col2 col3 col4 +## <dbl> <dbl> <dbl> <chr> +## 1 1 24.5 346 ABC +## 2 23.4 45.6 78 Z Y +\end{verbatim} +\end{kframe} \end{knitrout} Function \Rfunction{read\_tsv()} reads files encoded with the tab character as the delimiter, and \Rfunction{read\_fwf()} reads files with fixed width fields. There is, however, no equivalent to \Rfunction{read.fortran()}, supporting implicit decimal points. @@ -16300,7 +16309,16 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/miss-aligned-ASCII.txt' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_character(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}}\begin{verbatim} +## # A tibble: 4 x 4 +## col1 col2 col3 col4 +## <chr> <dbl> <dbl> <chr> +## 1 1.0 24.5 346 ABC +## 2 2.4 45.6 78 XYZ +## 3 20.4 45.6 78 XYZ +## 4 a 20 2500 abc +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16310,7 +16328,18 @@ \section{Plain-text files}\label{sec:files:txt} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/miss-aligned-ASCII.txt' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ col1 = col\_double(),\\\#\#\ \ col2 = col\_double(),\\\#\#\ \ col3 = col\_double(),\\\#\#\ \ col4 = col\_character()\\\#\# )}} + +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: 1 parsing failure.\\\#\# row\ \ col expected actual\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ file\\\#\#\ \ 4 col1 a double\ \ \ \ \ \ a 'extdata/miss-aligned-ASCII.txt'}}\begin{verbatim} +## # A tibble: 4 x 4 +## col1 col2 col3 col4 +## <dbl> <dbl> <dbl> <chr> +## 1 1 24.5 346 ABC +## 2 2.4 45.6 78 XYZ +## 3 20.4 45.6 78 XYZ +## 4 NA 20 2500 abc +\end{verbatim} +\end{kframe} \end{knitrout} \end{explainbox} \index{importing data!text files|)} @@ -16329,7 +16358,7 @@ \section{Plain-text files}\label{sec:files:txt} \end{kframe} \end{knitrout} -That saves a file containing the following text. +That saves a file containing the following text: \begin{knitrout}\footnotesize \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{verbatim} @@ -16355,20 +16384,22 @@ \section{Plain-text files}\label{sec:files:txt} \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{one.str} \hlkwb{<-} \hlkwd{read_file}\hlstd{(}\hlkwc{file} \hlstd{=} \hlstr{"extdata/miss-aligned-ASCII.txt"}\hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error: 'extdata/miss-aligned-ASCII.txt' does not exist in current working directory ('C:/Users/Aphalo/Documents/Own\_manuscripts/Books/learnr-book').}}\begin{alltt} \hlkwd{length}\hlstd{(one.str)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'one.str' not found}}\begin{alltt} +\begin{verbatim} +## [1] 1 +\end{verbatim} +\begin{alltt} \hlkwd{cat}\hlstd{(one.str)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in cat(one.str): object 'one.str' not found}}\end{kframe} +\begin{verbatim} +## col1 col2 col3 col4 +## 1.0 24.5 346 ABC +## 2.4 45.6 78 XYZ +## 20.4 45.6 78 XYZ +## a 20 2500 abc +\end{verbatim} +\end{kframe} \end{knitrout} \begin{advplayground} @@ -16458,9 +16489,16 @@ \section{GPX files} \hlkwd{unlist}\hlstd{(}\hlkwc{x} \hlstd{= .[}\hlkwd{names}\hlstd{(.)} \hlopt{==} \hlstr{"trkseg"}\hlstd{],} \hlkwc{recursive} \hlstd{=} \hlnum{FALSE}\hlstd{)} \hlopt{%.>%} \hlkwd{map_df}\hlstd{(}\hlkwc{.x} \hlstd{= .,} \hlkwc{.f} \hlstd{=} \hlkwa{function}\hlstd{(}\hlkwc{x}\hlstd{)} \hlkwd{as_tibble}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{t}\hlstd{(}\hlkwc{x} \hlstd{=} \hlkwd{unlist}\hlstd{(}\hlkwc{x} \hlstd{= x))))} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in xmlTreeParse(file = "{}extdata/GPSDATA.gpx"{}, useInternalNodes = TRUE): could not find function "{}xmlTreeParse"{}}}\end{kframe} +\begin{verbatim} +## # A tibble: 199 x 7 +## time speed name type fix .attrs.lat .attrs.lon +## <chr> <chr> <chr> <chr> <chr> <chr> <chr> +## 1 2018-12-08T23:09~ 0.03~ trkpt-2018-12-08T23~ T 3d -34.912071 138.660595 +## 2 2018-12-08T23:09~ 0.08~ trkpt-2018-12-08T23~ T 3d -34.912067 138.660543 +## 3 2018-12-08T23:09~ 0.01~ trkpt-2018-12-08T23~ T 3d -34.912102 138.660554 +## # ... with 196 more rows +\end{verbatim} +\end{kframe} \end{knitrout} I have passed all arguments by name to make explicit how this pipe works. See section \ref{sec:data:pipes} on page \pageref{sec:data:pipes} for details on the use of the pipe and dot-pipe operators. @@ -16505,7 +16543,7 @@ \subsection{CSV files as middlemen} \end{kframe} \end{knitrout} -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. +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} @@ -16613,7 +16651,7 @@ \subsection{CSV files as middlemen} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in read\_ods("{}extdata/Book1.ods"{}, sheet = 1): could not find function "{}read\_ods"{}}}\end{kframe} +{\ttfamily\noindent\itshape\color{messagecolor}{\#\# Parsed with column specification:\\\#\# cols(\\\#\#\ \ sample = col\_double(),\\\#\#\ \ group = col\_character(),\\\#\#\ \ observation = col\_double()\\\#\# )}}\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16621,9 +16659,20 @@ \subsection{CSV files as middlemen} \begin{alltt} \hlstd{ods.df} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'ods.df' not found}}\end{kframe} +\begin{verbatim} +## sample group observation +## 1 1 a 1.0 +## 2 2 a 5.0 +## 3 3 a 7.0 +## 4 4 a 2.0 +## 5 5 a 5.0 +## 6 6 b 0.0 +## 7 7 b 2.0 +## 8 8 b 3.0 +## 9 9 b 1.0 +## 10 10 b 1.5 +\end{verbatim} +\end{kframe} \end{knitrout} Function \Rfunction{write\_ods()} writes a data frame into an ODS file. @@ -16731,7 +16780,7 @@ \section{Statistical software}\label{sec:files:stat} \end{kframe} \end{knitrout} -In this case the dates are correctly decoded. +In this case, the dates are correctly decoded. Next, we import an \pgrmname{SPSS}'s \code{.sav} file saved 15 years ago. @@ -16897,15 +16946,35 @@ \section{NetCDF files} \definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} \begin{alltt} \hlstd{meteo_data.tnc} \hlkwb{<-} \hlkwd{tidync}\hlstd{(}\hlstr{"extdata/pevpr.sfc.mon.ltm.nc"}\hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in tidync("{}extdata/pevpr.sfc.mon.ltm.nc"{}): could not find function "{}tidync"{}}}\begin{alltt} \hlstd{meteo_data.tnc} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(expr, envir, enclos): object 'meteo\_data.tnc' not found}}\end{kframe} +\begin{verbatim} +## +## Data Source (1): pevpr.sfc.mon.ltm.nc ... +## +## Grids (5) <dimension family> : <associated variables> +## +## [1] D0,D1,D2 : pevpr, valid_yr_count **ACTIVE GRID** ( 216576 values per variable) +## [2] D3,D2 : climatology_bounds +## [3] D0 : lon +## [4] D1 : lat +## [5] D2 : time +## +## Dimensions 4 (3 active): +## +## dim name length min max start count dmin dmax unlim coord_dim +## <chr> <chr> <dbl> <dbl> <dbl> <int> <int> <dbl> <dbl> <lgl> <lgl> +## 1 D0 lon 192 0. 3.58e2 1 192 0. 3.58e2 FALSE TRUE +## 2 D1 lat 94 -8.85e1 8.85e1 1 94 -8.85e1 8.85e1 FALSE TRUE +## 3 D2 time 12 -6.57e5 -6.57e5 1 12 -6.57e5 -6.57e5 FALSE TRUE +## +## Inactive dimensions: +## +## dim name length min max unlim coord_dim +## <chr> <chr> <dbl> <dbl> <dbl> <lgl> <lgl> +## 1 D3 nbnds 2 1 2 FALSE FALSE +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16915,7 +16984,15 @@ \section{NetCDF files} \end{alltt} -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in hyper\_dims(meteo\_data.tnc): could not find function "{}hyper\_dims"{}}}\end{kframe} +{\ttfamily\noindent\color{warningcolor}{\#\# Warning: Column `length` has different attributes on LHS and RHS of join}}\begin{verbatim} +## # A tibble: 3 x 7 +## name length start count id unlim coord_dim +## <chr> <dbl> <int> <int> <int> <lgl> <lgl> +## 1 lon 192 1 192 0 FALSE TRUE +## 2 lat 94 1 94 1 FALSE TRUE +## 3 time 12 1 12 2 FALSE TRUE +\end{verbatim} +\end{kframe} \end{knitrout} \begin{knitrout}\footnotesize @@ -16923,9 +17000,14 @@ \section{NetCDF files} \begin{alltt} \hlkwd{hyper_vars}\hlstd{(meteo_data.tnc)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in hyper\_vars(meteo\_data.tnc): could not find function "{}hyper\_vars"{}}}\end{kframe} +\begin{verbatim} +## # A tibble: 2 x 6 +## id name type ndims natts dim_coord +## <int> <chr> <chr> <int> <int> <lgl> +## 1 4 pevpr NC_FLOAT 3 14 FALSE +## 2 5 valid_yr_count NC_FLOAT 3 4 FALSE +\end{verbatim} +\end{kframe} \end{knitrout} We extract a subset of the data into a tibble in long (or tidy) format, and add @@ -16940,9 +17022,16 @@ \section{NetCDF files} \hlkwd{mutate}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)))} \hlopt{%.>%} \hlkwd{select}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlopt{-}\hlstd{time)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in hyper\_tibble(meteo\_data.tnc, lon = signif(lon, 1) == 9, lat = signif(lat, : could not find function "{}hyper\_tibble"{}}}\end{kframe} +\begin{verbatim} +## # A tibble: 12 x 5 +## pevpr valid_yr_count lon lat month +## <dbl> <dbl> <dbl> <dbl> <dbl> +## 1 4.28 1.19e-39 9.38 86.7 12 +## 2 5.72 1.19e-39 9.38 86.7 1 +## 3 4.38 1.29e-39 9.38 86.7 2 +## # ... with 9 more rows +\end{verbatim} +\end{kframe} \end{knitrout} 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 chuck above. The tibble is assembled automatically and columns for the active dimensions added. The decoding of the months remains unchanged. @@ -16955,9 +17044,16 @@ \section{NetCDF files} \hlkwd{mutate}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlkwc{month} \hlstd{=} \hlkwd{month}\hlstd{(}\hlkwd{ymd}\hlstd{(}\hlstr{"1800-01-01"}\hlstd{)} \hlopt{+} \hlkwd{days}\hlstd{(time)))} \hlopt{%.>%} \hlkwd{select}\hlstd{(}\hlkwc{.data} \hlstd{= .,} \hlopt{-}\hlstd{time)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in hyper\_tibble(meteo\_data.tnc, lon = signif(lon, 1) == 9): could not find function "{}hyper\_tibble"{}}}\end{kframe} +\begin{verbatim} +## # A tibble: 1,128 x 5 +## pevpr valid_yr_count lon lat month +## <dbl> <dbl> <dbl> <dbl> <dbl> +## 1 1.02 1.19e-39 9.38 88.5 12 +## 2 4.28 1.19e-39 9.38 86.7 12 +## 3 3.03 9.18e-40 9.38 84.8 12 +## # ... with 1,125 more rows +\end{verbatim} +\end{kframe} \end{knitrout} \begin{playground} @@ -17079,7 +17175,7 @@ \section{Remotely located data}\label{sec:files:remote} \end{kframe} \end{knitrout} -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. +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} @@ -17177,10 +17273,6 @@ \section{Databases}\label{sec:data:db} \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{)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in loadNamespace(name): there is no package called 'RSQLite'}}\begin{alltt} \hlkwd{copy_to}\hlstd{(con, weather_wk_25_2019.tb,} \hlstr{"weather"}\hlstd{,} \hlkwc{temporary} \hlstd{=} \hlnum{FALSE}\hlstd{,} \hlkwc{indexes} \hlstd{=} \hlkwd{list}\hlstd{(} @@ -17192,28 +17284,34 @@ \section{Databases}\label{sec:data:db} \hlstr{"month_of_year"} \hlstd{)} \hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in copy\_to(con, weather\_wk\_25\_2019.tb, "{}weather"{}, temporary = FALSE, : object 'con' not found}}\begin{alltt} \hlstd{weather.db} \hlkwb{<-} \hlkwd{tbl}\hlstd{(con,} \hlstr{"weather"}\hlstd{)} -\end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in tbl(con, "{}weather"{}): object 'con' not found}}\begin{alltt} \hlkwd{colnames}\hlstd{(weather.db)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in is.data.frame(x): object 'weather.db' not found}}\begin{alltt} +\begin{verbatim} +## [1] "time" "PAR_umol" "PAR_diff_fr" "global_watt" +## [5] "day_of_year" "month_of_year" "month_name" "calendar_year" +## [9] "solar_time" "sun_elevation" "sun_azimuth" "was_sunny" +## [13] "wind_speed" "wind_direction" "air_temp_C" "air_RH" +## [17] "air_DP" "air_pressure" "red_umol" "far_red_umol" +## [21] "red_far_red" +\end{verbatim} +\begin{alltt} \hlstd{weather.db} \hlopt{%.>%} \hlkwd{filter}\hlstd{(., sun_elevation} \hlopt{>} \hlnum{5}\hlstd{)} \hlopt{%.>%} \hlkwd{group_by}\hlstd{(., day_of_year)} \hlopt{%.>%} \hlkwd{summarise}\hlstd{(.,} \hlkwc{energy_Wh} \hlstd{=} \hlkwd{sum}\hlstd{(global_watt,} \hlkwc{na.rm} \hlstd{=} \hlnum{TRUE}\hlstd{)} \hlopt{*} \hlnum{60} \hlopt{/} \hlnum{3600}\hlstd{)} \end{alltt} - - -{\ttfamily\noindent\bfseries\color{errorcolor}{\#\# Error in eval(pipe\_left\_arg, envir = pipe\_environment, enclos = pipe\_environment): object 'weather.db' not found}}\end{kframe} +\begin{verbatim} +## # Source: lazy query [?? x 2] +## # Database: sqlite 3.30.1 [:memory:] +## day_of_year energy_Wh +## <dbl> <dbl> +## 1 162 7500. +## 2 163 6660. +## 3 164 3958. +## # ... with more rows +\end{verbatim} +\end{kframe} \end{knitrout} \begin{explainbox} @@ -17238,13 +17336,7 @@ \section{Databases}\label{sec:data:db} \section{Further reading} Since\index{further reading!elegant R code}\index{further reading!idiosyncracies or R} this is the end of the book, I recommend as further reading the writings of \citeauthor{Burns1998} as they are full of insight. Having arrived at the end of \emph{Learn R \ldots as your mother tongue} you should read \citebooktitle{Burns1998} \autocite{Burns1998} and \citebooktitle{Burns2012} \autocite{Burns2012}. If you want to never get caught unaware by \Rlang's idiosyncrasies, read also \citebooktitle{Burns2011} \autocite{Burns2011}. -\begin{knitrout}\footnotesize -\definecolor{shadecolor}{rgb}{0.969, 0.969, 0.969}\color{fgcolor}\begin{kframe} -\begin{verbatim} -## Error in detach(package:tidync) : invalid 'name' argument -\end{verbatim} -\end{kframe} -\end{knitrout} + @@ -17286,7 +17378,7 @@ \chapter{Build information} \hlkwd{sessionInfo}\hlstd{()} \end{alltt} \begin{verbatim} -## R version 3.6.2 (2019-12-12) +## R version 3.6.3 (2020-02-29) ## Platform: x86_64-w64-mingw32/x64 (64-bit) ## Running under: Windows 10 x64 (build 18363) ## @@ -17302,73 +17394,46 @@ \chapter{Build information} ## [8] base ## ## other attached packages: -<<<<<<< Updated upstream ## [1] XML_3.99-0.3 pdftools_2.3 readODS_1.6.7 patchwork_1.0.0 -## [5] forcats_0.4.0 purrr_0.3.3 svglite_1.2.3 knitr_1.28 +## [5] forcats_0.5.0 purrr_0.3.3 svglite_1.2.3 knitr_1.28 ## ## loaded via a namespace (and not attached): ## [1] ggbeeswarm_0.6.0 colorspace_1.4-1 ellipsis_0.3.0 -## [4] class_7.3-15 fs_1.3.1 rstudioapi_0.11 +## [4] class_7.3-15 fs_1.3.2 rstudioapi_0.11 ## [7] farver_2.0.3 hexbin_1.28.1 bit64_0.9-7 -## [10] ggrepel_0.8.1 fansi_0.4.1 lubridate_1.7.4 -## [13] xml2_1.2.2 ncdf4_1.17 polyclip_1.10-0 -## [16] polynom_1.4-0 jsonlite_1.6 gginnards_0.0.3 -## [19] rematch_1.0.1 rJava_0.9-11 broom_0.5.4 -## [22] dbplyr_1.4.2 ggforce_0.3.1 readr_1.3.1 -## [25] compiler_3.6.2 httr_1.4.1 backports_1.1.5 -## [28] assertthat_0.2.1 lazyeval_0.2.2 cli_2.0.1 -## [31] tweenr_1.0.1 gtable_0.3.0 glue_1.3.1 -## [34] reshape2_1.4.3 dplyr_0.8.4 Rcpp_1.0.3 +## [10] ggrepel_0.8.2 fansi_0.4.1 lubridate_1.7.4 +## [13] xml2_1.2.5 splines_3.6.3 ncdf4_1.17 +## [16] polyclip_1.10-0 polynom_1.4-0 jsonlite_1.6.1 +## [19] gginnards_0.0.3 rematch_1.0.1 rJava_0.9-12 +## [22] broom_0.5.5 dbplyr_1.4.2 ggforce_0.3.1 +## [25] readr_1.3.1 compiler_3.6.3 httr_1.4.1 +## [28] backports_1.1.5 assertthat_0.2.1 Matrix_1.2-18 +## [31] cli_2.0.2 tweenr_1.0.1 gtable_0.3.0 +## [34] glue_1.3.2 dplyr_0.8.5 Rcpp_1.0.4 ## [37] tikzDevice_0.12.3 cellranger_1.1.0 RNetCDF_2.1-1 -## [40] vctrs_0.2.2 filehash_2.4-2 nlme_3.1-144 +## [40] vctrs_0.2.4 filehash_2.4-2 nlme_3.1-145 ## [43] xfun_0.12 stringr_1.4.0 xlsxjars_0.6.1 -## [46] rvest_0.3.5 lifecycle_0.1.0 ncmeta_0.2.0 -## [49] tidync_0.2.3 xlsx_0.6.1 MASS_7.3-51.5 +## [46] rvest_0.3.5 lifecycle_0.2.0 ncmeta_0.2.0 +## [49] tidync_0.2.3 xlsx_0.6.3 MASS_7.3-51.5 ## [52] scales_1.1.0 hms_0.5.3 tidyverse_1.3.0 ## [55] RColorBrewer_1.1-2 curl_4.3 memoise_1.1.0 -## [58] gridExtra_2.3 ggplot2_3.2.1 ggpmisc_0.3.3 -## [61] gdtools_0.2.1 RSQLite_2.2.0 stringi_1.4.5 -## [64] highr_0.8 e1071_1.7-3 learnrbook_0.0.2.9001 -## [67] rlang_0.4.4 pkgconfig_2.0.3 systemfonts_0.1.1 -## [70] evaluate_0.14 lattice_0.20-38 sf_0.8-1 -## [73] labeling_0.3 bit_1.1-15.1 tidyselect_1.0.0 -## [76] plyr_1.8.5 magrittr_1.5 wrapr_1.9.6 -## [79] R6_2.4.1 magick_2.3 generics_0.0.2 -## [82] DBI_1.1.0 pillar_1.4.3 haven_2.2.0 -## [85] foreign_0.8-75 withr_2.1.2 units_0.6-5 -## [88] tibble_2.1.3 modelr_0.1.5 crayon_1.3.4 -## [91] KernSmooth_2.23-16 utf8_1.1.4 grid_3.6.2 -## [94] readxl_1.3.1 blob_1.2.1 qpdf_1.1 -## [97] reprex_0.3.0 digest_0.6.23 classInt_0.4-2 -## [100] tidyr_1.0.2 munsell_0.5.0 beeswarm_0.2.3 -## [103] viridisLite_0.3.0 vipor_0.4.5 askpass_1.1 -======= -## [1] forcats_0.4.0 purrr_0.3.3 svglite_1.2.3 knitr_1.28 -## -## loaded via a namespace (and not attached): -## [1] nlme_3.1-142 fs_1.3.1 lubridate_1.7.4 RColorBrewer_1.1-2 -## [5] httr_1.4.1 gginnards_0.0.3 backports_1.1.5 utf8_1.1.4 -## [9] R6_2.4.1 vipor_0.4.5 DBI_1.1.0 lazyeval_0.2.2 -## [13] colorspace_1.4-1 withr_2.1.2 tidyselect_1.0.0 gridExtra_2.3 -## [17] rematch_1.0.1 curl_4.3 compiler_3.6.2 cli_2.0.1 -## [21] rvest_0.3.5 xml2_1.2.2 labeling_0.3 scales_1.1.0 -## [25] hexbin_1.28.1 readr_1.3.1 systemfonts_0.1.1 stringr_1.4.0 -## [29] digest_0.6.23 foreign_0.8-75 wrapr_1.9.6 pkgconfig_2.0.3 -## [33] dbplyr_1.4.2 highr_0.8 rlang_0.4.4 readxl_1.3.1 -## [37] rstudioapi_0.11 farver_2.0.3 generics_0.0.2 tikzDevice_0.12.3 -## [41] jsonlite_1.6.1 dplyr_0.8.4 xlsx_0.6.1 magrittr_1.5 -## [45] polynom_1.4-0 Rcpp_1.0.3 ggbeeswarm_0.6.0 munsell_0.5.0 -## [49] fansi_0.4.1 gdtools_0.2.1 lifecycle_0.1.0 stringi_1.4.5 -## [53] ggpmisc_0.3.3 MASS_7.3-51.5 plyr_1.8.5 grid_3.6.2 -## [57] ggrepel_0.8.1 crayon_1.3.4 lattice_0.20-38 haven_2.2.0 -## [61] xlsxjars_0.6.1 hms_0.5.3 pillar_1.4.3 reshape2_1.4.3 -## [65] reprex_0.3.0 glue_1.3.1 evaluate_0.14 modelr_0.1.5 -## [69] vctrs_0.2.2 tweenr_1.0.1 cellranger_1.1.0 gtable_0.3.0 -## [73] polyclip_1.10-0 tidyr_1.0.2 assertthat_0.2.1 ggplot2_3.2.1 -## [77] xfun_0.12 ggforce_0.3.1 broom_0.5.4 tidyverse_1.3.0 -## [81] filehash_2.4-2 ncdf4_1.17 viridisLite_0.3.0 tibble_2.1.3 -## [85] rJava_0.9-11 beeswarm_0.2.3 ellipsis_0.3.0 learnrbook_0.0.2 ->>>>>>> Stashed changes +## [58] gridExtra_2.3 ggplot2_3.3.0 ggpmisc_0.3.3 +## [61] gdtools_0.2.1 RSQLite_2.2.0 stringi_1.4.6 +## [64] highr_0.8 e1071_1.7-3 learnrbook_0.0.2.9002 +## [67] rlang_0.4.5 pkgconfig_2.0.3 systemfonts_0.1.1 +## [70] evaluate_0.14 lattice_0.20-38 sf_0.9-0 +## [73] labeling_0.3 bit_1.1-15.2 tidyselect_1.0.0 +## [76] magrittr_1.5 wrapr_2.0.0 R6_2.4.1 +## [79] magick_2.3 generics_0.0.2 DBI_1.1.0 +## [82] pillar_1.4.3 haven_2.2.0 foreign_0.8-76 +## [85] withr_2.1.2 mgcv_1.8-31 units_0.6-6 +## [88] tibble_3.0.0 modelr_0.1.6 crayon_1.3.4 +## [91] KernSmooth_2.23-16 utf8_1.1.4 grid_3.6.3 +## [94] readxl_1.3.1 isoband_0.2.0 blob_1.2.1 +## [97] qpdf_1.1 reprex_0.3.0 digest_0.6.25 +## [100] classInt_0.4-2 tidyr_1.0.2 munsell_0.5.0 +## [103] beeswarm_0.2.3 viridisLite_0.3.0 vipor_0.4.5 +## [106] askpass_1.1 \end{verbatim} \end{kframe} \end{knitrout} diff --git a/using-r-main-crc.toc b/using-r-main-crc.toc index 144cfea8..e5cd578b 100644 --- a/using-r-main-crc.toc +++ b/using-r-main-crc.toc @@ -2,7 +2,7 @@ \defcounter {refsection}{0}\relax \contentsline {fm}{Preface}{xiii}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {1}R: the language and the program}{1}% +\contentsline {chapter}{\numberline {1}R: The language and the program}{1}% \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {1.1}Aims of this chapter}{1}% \defcounter {refsection}{0}\relax @@ -38,7 +38,7 @@ \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {1.6}Further reading}{15}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {2}The R language: ``words'' and ``sentences''}{17}% +\contentsline {chapter}{\numberline {2}The R language: ``Words'' and ``sentences''}{17}% \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {2.1}Aims of this chapter}{17}% \defcounter {refsection}{0}\relax @@ -94,7 +94,7 @@ \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {2.19}Further reading}{86}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {3}The R language: ``paragraphs'' and ``essays''}{87}% +\contentsline {chapter}{\numberline {3}The R language: ``Paragraphs'' and ``essays''}{87}% \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {3.1}Aims of this chapter}{87}% \defcounter {refsection}{0}\relax @@ -144,7 +144,7 @@ \defcounter {refsection}{0}\relax \contentsline {subsection}{\numberline {3.6.1}Further reading}{116}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {4}The R language: statistics}{117}% +\contentsline {chapter}{\numberline {4}The R language: Statistics}{117}% \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {4.1}Aims of this chapter}{117}% \defcounter {refsection}{0}\relax @@ -178,7 +178,7 @@ \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {4.7}Generalized linear models}{136}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {4.8}Non-linear regression}{139}% +\contentsline {section}{\numberline {4.8}Non-linear regression}{138}% \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {4.9}Model formulas}{141}% \defcounter {refsection}{0}\relax @@ -196,7 +196,7 @@ \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {4.12}Further reading}{159}% \defcounter {refsection}{0}\relax -\contentsline {chapter}{\numberline {5}The R language: adding new ``words''}{161}% +\contentsline {chapter}{\numberline {5}The R language: Adding new ``words''}{161}% \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {5.1}Aims of this chapter}{161}% \defcounter {refsection}{0}\relax @@ -276,113 +276,113 @@ \defcounter {refsection}{0}\relax \contentsline {subsection}{\numberline {7.3.7}Themes}{204}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.3.8}Plot construction}{204}% +\contentsline {subsection}{\numberline {7.3.8}Plot construction}{205}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.3.9}Plots as \textsf {R}\xspace objects}{211}% +\contentsline {subsection}{\numberline {7.3.9}Plots as \textsf {R}\xspace objects}{212}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.3.10}Data and mappings}{213}% +\contentsline {subsection}{\numberline {7.3.10}Data and mappings}{214}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.4}Geometries}{214}% +\contentsline {section}{\numberline {7.4}Geometries}{215}% \defcounter {refsection}{0}\relax \contentsline {subsection}{\numberline {7.4.1}Point}{215}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.2}Rug}{219}% +\contentsline {subsection}{\numberline {7.4.2}Rug}{220}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.3}Line and area}{220}% +\contentsline {subsection}{\numberline {7.4.3}Line and area}{221}% \defcounter {refsection}{0}\relax \contentsline {subsection}{\numberline {7.4.4}Column}{223}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.5}Tiles}{224}% +\contentsline {subsection}{\numberline {7.4.5}Tiles}{225}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.6}Simple features (sf)}{226}% +\contentsline {subsection}{\numberline {7.4.6}Simple features (sf)}{227}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.7}Text}{226}% +\contentsline {subsection}{\numberline {7.4.7}Text}{227}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.4.8}Plot insets}{231}% +\contentsline {subsection}{\numberline {7.4.8}Plot insets}{232}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.5}Statistics}{236}% +\contentsline {section}{\numberline {7.5}Statistics}{237}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.1}Functions}{236}% +\contentsline {subsection}{\numberline {7.5.1}Functions}{237}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.2}Summaries}{237}% +\contentsline {subsection}{\numberline {7.5.2}Summaries}{238}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.3}Smoothers and models}{240}% +\contentsline {subsection}{\numberline {7.5.3}Smoothers and models}{241}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.4}Frequencies and counts}{243}% +\contentsline {subsection}{\numberline {7.5.4}Frequencies and counts}{245}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.5}Density functions}{246}% +\contentsline {subsection}{\numberline {7.5.5}Density functions}{247}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.6}Box and whiskers plots}{248}% +\contentsline {subsection}{\numberline {7.5.6}Box and whiskers plots}{249}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.5.7}Violin plots}{249}% +\contentsline {subsection}{\numberline {7.5.7}Violin plots}{250}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.6}Facets}{250}% +\contentsline {section}{\numberline {7.6}Facets}{251}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.7}Scales}{253}% +\contentsline {section}{\numberline {7.7}Scales}{254}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.1}Axis and key labels}{254}% +\contentsline {subsection}{\numberline {7.7.1}Axis and key labels}{255}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.2}Continuous scales}{256}% +\contentsline {subsection}{\numberline {7.7.2}Continuous scales}{257}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{\numberline {7.7.2.1}Limits}{257}% +\contentsline {subsubsection}{\numberline {7.7.2.1}Limits}{258}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{\numberline {7.7.2.2}Ticks and their labels}{258}% +\contentsline {subsubsection}{\numberline {7.7.2.2}Ticks and their labels}{259}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{\numberline {7.7.2.3}Transformed scales}{260}% +\contentsline {subsubsection}{\numberline {7.7.2.3}Transformed scales}{261}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{\numberline {7.7.2.4}Position of $x$ and $y$ axes}{261}% +\contentsline {subsubsection}{\numberline {7.7.2.4}Position of $x$ and $y$ axes}{262}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{\numberline {7.7.2.5}Secondary axes}{261}% +\contentsline {subsubsection}{\numberline {7.7.2.5}Secondary axes}{262}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.3}Time and date scales for $x$ and $y$}{262}% +\contentsline {subsection}{\numberline {7.7.3}Time and date scales for $x$ and $y$}{263}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.4}Discrete scales for $x$ and $y$}{263}% +\contentsline {subsection}{\numberline {7.7.4}Discrete scales for $x$ and $y$}{264}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.5}Size}{264}% +\contentsline {subsection}{\numberline {7.7.5}Size}{265}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.6}Color and fill}{264}% +\contentsline {subsection}{\numberline {7.7.6}Color and fill}{266}% \defcounter {refsection}{0}\relax -\contentsline {subsubsection}{\numberline {7.7.6.1}Color definitions in R}{265}% +\contentsline {subsubsection}{\numberline {7.7.6.1}Color definitions in R}{266}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.7}Continuous color-related scales}{266}% +\contentsline {subsection}{\numberline {7.7.7}Continuous color-related scales}{267}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.8}Discrete color-related scales}{266}% +\contentsline {subsection}{\numberline {7.7.8}Discrete color-related scales}{268}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.7.9}Identity scales}{267}% +\contentsline {subsection}{\numberline {7.7.9}Identity scales}{268}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.8}Adding annotations}{267}% +\contentsline {section}{\numberline {7.8}Adding annotations}{269}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.9}Coordinates and circular plots}{270}% +\contentsline {section}{\numberline {7.9}Coordinates and circular plots}{271}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.9.1}Wind-rose plots}{270}% +\contentsline {subsection}{\numberline {7.9.1}Wind-rose plots}{271}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.9.2}Pie charts}{272}% +\contentsline {subsection}{\numberline {7.9.2}Pie charts}{273}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.10}Themes}{273}% +\contentsline {section}{\numberline {7.10}Themes}{274}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.10.1}Complete themes}{273}% +\contentsline {subsection}{\numberline {7.10.1}Complete themes}{274}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.10.2}Incomplete themes}{275}% +\contentsline {subsection}{\numberline {7.10.2}Incomplete themes}{276}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.10.3}Defining a new theme}{277}% +\contentsline {subsection}{\numberline {7.10.3}Defining a new theme}{278}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.11}Composing plots}{279}% +\contentsline {section}{\numberline {7.11}Composing plots}{280}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.12}Using plotmath expressions}{280}% +\contentsline {section}{\numberline {7.12}Using plotmath expressions}{281}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.13}Creating complex data displays}{285}% +\contentsline {section}{\numberline {7.13}Creating complex data displays}{286}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.14}Creating sets of plots}{286}% +\contentsline {section}{\numberline {7.14}Creating sets of plots}{287}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.14.1}Saving plot layers and scales in variables}{286}% +\contentsline {subsection}{\numberline {7.14.1}Saving plot layers and scales in variables}{287}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.14.2}Saving plot layers and scales in lists}{287}% +\contentsline {subsection}{\numberline {7.14.2}Saving plot layers and scales in lists}{288}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {7.14.3}Using functions as building blocks}{287}% +\contentsline {subsection}{\numberline {7.14.3}Using functions as building blocks}{288}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.15}Generating output files}{288}% +\contentsline {section}{\numberline {7.15}Generating output files}{289}% \defcounter {refsection}{0}\relax -\contentsline {section}{\numberline {7.16}Further reading}{289}% +\contentsline {section}{\numberline {7.16}Further reading}{290}% \defcounter {refsection}{0}\relax \contentsline {chapter}{\numberline {8}Data import and export}{291}% \defcounter {refsection}{0}\relax @@ -398,7 +398,7 @@ \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {8.6}Plain-text files}{297}% \defcounter {refsection}{0}\relax -\contentsline {subsection}{\numberline {8.6.1}Base R and `utils'}{298}% +\contentsline {subsection}{\numberline {8.6.1}Base R and `utils'}{299}% \defcounter {refsection}{0}\relax \contentsline {subsection}{\numberline {8.6.2}readr}{303}% \defcounter {refsection}{0}\relax @@ -440,10 +440,8 @@ \defcounter {refsection}{0}\relax \contentsline {section}{\numberline {8.15}Further reading}{324}% \defcounter {refsection}{0}\relax -\contentsline {fm}{Bibliography}{325}% +\contentsline {fm}{General index}{325}% \defcounter {refsection}{0}\relax -\contentsline {fm}{General index}{329}% +\contentsline {fm}{Index of \textsf {R}\xspace names by category}{333}% \defcounter {refsection}{0}\relax -\contentsline {fm}{Index of \textsf {R}\xspace names by category}{337}% -\defcounter {refsection}{0}\relax -\contentsline {fm}{Alphabetic index of \textsf {R}\xspace names}{343}% +\contentsline {fm}{Alphabetic index of \textsf {R}\xspace names}{339}%